[
  {
    "path": ".formatter.exs",
    "content": "[\n  inputs: [\"mix.exs\", \"{config,lib,test}/**/*.{ex,exs}\"]\n]\n"
  },
  {
    "path": ".github/workflows/ci.yaml",
    "content": "name: CI\n\non: [push, pull_request]\n\njobs:\n  format:\n    name: Validation of source code\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v2.3.1\n\n      - name: Install OTP and Elixir\n        uses: erlef/setup-beam@v1\n        with:\n          otp-version: 26.0\n          elixir-version: 1.14.5\n\n      - name: Install dependencies\n        run: mix deps.get\n\n      - name: Run validations\n        run: mix validate\n\n  test:\n    name: Test (Elixir ${{matrix.elixir}} | Erlang/OTP ${{matrix.otp}})\n    runs-on: ubuntu-latest\n    strategy:\n      fail-fast: false\n      matrix:\n        include:\n          - elixir: 1.18.x\n            otp: 27\n          - elixir: 1.18.x\n            otp: 26\n          - elixir: 1.18.x\n            otp: 25\n          - elixir: 1.17.x\n            otp: 27\n          - elixir: 1.17.x\n            otp: 26\n          - elixir: 1.17.x\n            otp: 25\n          - elixir: 1.16.x\n            otp: 26\n          - elixir: 1.16.x\n            otp: 25\n          - elixir: 1.15.x\n            otp: 26\n          - elixir: 1.15.x\n            otp: 25\n          - elixir: 1.14.x\n            otp: 26\n          - elixir: 1.14.x\n            otp: 25\n          - elixir: 1.13.x\n            otp: 24\n          - elixir: 1.12.x\n            otp: 24\n\n    env:\n      MIX_ENV: test\n\n    steps:\n      - uses: actions/checkout@v1\n\n      - name: Install OTP and Elixir\n        uses: erlef/setup-beam@v1\n        with:\n          otp-version: ${{matrix.otp}}\n          elixir-version: ${{matrix.elixir}}\n\n      - name: Install dependencies\n        run: mix deps.get --only test\n\n      - name: Run tests\n        run: mix test --trace\n"
  },
  {
    "path": ".gitignore",
    "content": "/_build\n/cover\n/deps\n/docs\nerl_crash.dump\n*.ez\n.elixir_ls\n/.elixir-tools\n"
  },
  {
    "path": ".tool-versions",
    "content": "elixir 1.14.5-otp-26\nerlang 26.0\n"
  },
  {
    "path": ".travis.yml",
    "content": "language: elixir\nelixir:\n  - 1.6\n  - 1.7\n  - 1.8\notp_release:\n  - 19.3\n  - 20.3\n  - 21.0\nmatrix:\n  exclude:\n    - elixir: 1.7\n      otp_release: 19.3\n    - elixir: 1.7\n      otp_release: 20.3\n    - elixir: 1.8\n      otp_release: 19.3\n    - elixir: 1.8\n      otp_release: 20.3\nscript: \n  - elixir -e \"Version.match?(System.version, ~s(~> 1.6)) || System.halt(0)\" -S mix format --check-formatted\n  - mix test\n  - mix dialyzer --halt-exit-status\n"
  },
  {
    "path": "CHANGELOG.md",
    "content": "# Change Log\n\n## [1.0.2] - 2024-09-30\n\n### Changed\n\n- Fix warning about matching `0.0` vs `0`\n\n## [1.0.1] - 2024-09-27\n\n### Changed\n\n- Updated Geo dependency to allow for 4.0\n\n## [1.0.0] - 2023-05-31\n\n### Added\n\n- Config option `:epsilon` that provides tolerance for float precision errors.\n\n## [0.5.0] - 2022-02-26\n\n### Fixed\n\n- Fixes issue where linestrings that had a segment outside of a ring were incorrectly reported as contained.\n\n### Changed\n\n- Uses Github Actions instead of TravisCI\n\n## [0.4.0] - 2019-11-16\n\n### Fixed\n\n- Fixes bug where floating point coordinates were not evaluating as equivalent to themselves\n"
  },
  {
    "path": "LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2016 Powell Kinney\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  {
    "path": "README.md",
    "content": "# Geometry Library for Elixir\n\n![Build Status](https://github.com/pkinney/topo/actions/workflows/ci.yaml/badge.svg)\n[![Hex.pm](https://img.shields.io/hexpm/v/topo.svg)](https://hex.pm/packages/topo)\n\nA Geometry library for Elixir that calculates spatial relationships between two\ngeometries. Geometries can be of any of the following types:\n\n- Point\n- LineString\n- Polygon\n- MultiPoint\n- MultiLineString\n- MultiPolygon\n\n## Installation\n\n```elixir\ndefp deps do\n  [{:topo, \"~> 1.0\"}]\nend\n```\n\n## Usage\n\n**[Full Documentation](https://hexdocs.pm/topo/Topo.html)**\n\nThe `Topo` module provides functions for determining the relationship between\ntwo geometries. Each function returns a boolean and accepts any combination of\nPoint, LineString, Polygon, MultiPoint, MultiLineString, or MultiPolygon.\n\n- **`intersects?`** - Geometries **A** and **B** share at least one point in\n  common.\n- **`disjoint?`** - Disjoint geometries share no points in common. This is the\n  direct opposite of the `intersects?` result.\n- **`contains?`** - All points of geometry **B** lie within **A**. See section\n  below on [Contains].\n- **`within?`** - This is the direct inverse of `contains?`. All points of\n  geometry **A** lie within geometry **B**.\n- **`equals?`** - Geometries **A** and **B** are equivalent and cover the exact\n  same set of points. By definition, **A** and **B** are equal if **A** contains\n  **B** and **B** contains **A**. Equality does not necessarily mean that the\n  geometries are of the same type. A Point **A** is equal to a MultiPoint that\n  contains only the same Point **A**.\n\nEach of these functions can be passed any two Geometries in either a Map with a\n`:type` and `:coordinates` keys or as a struct generated via the [Geo library](https://github.com/bryanjos/geo). Coordinates are represented as atoms `{x, y}`\nand multiple coordinates as Lists.\n\n```elixir\na = %{type: \"Polygon\", coordinates: [[{2, 2}, {20, 2}, {11, 11}, {2, 2}]]}\nb = %Geo.Polygon{coordinates: [[{2, 2}, {20, 2}, {11, 11}, {2, 2}]]}\n\nTopo.equals? a, b # => true\n```\n\nInstead of a Point geometry, just a single coordinate can be used.\n\n```elixir\na = %{type: \"Polygon\", coordinates: [[{2, 2}, {20, 2}, {11, 11}, {2, 2}]]}\n\nTopo.intersects? a, {4, 6} # => true\n```\n\nThe `Topo` library's functions will automatically attempt to \"clean\" geometries\npassed to them:\n\n- Linear Rings (including Polygons) will be reordered to a counter-clockwise\n  direction.\n- Polygon's Linear Rings will automatically be closed if the first point is not\n  repeated as the last point.\n- Points that are equal or collinear with surrounding points are removed from\n  LineStrings or Polygons.\n\n## A note on `contains?`\n\nThere are a few non-obvious special cases that are worth mentioning:\n\n- A Polygon does not contain its own boundary. Specifically a LineString that\n  is the exact same as a Polygon's exterior Linear ring is not contained within a\n  that Polygon.\n\n```elixir\na = %Geo.Polygon{coordinates: [[{2, 2}, {20, 2}, {11, 11}, {2, 2}]]}\nb = %Geo.LineString{coordinates: [{2, 2}, {20, 2}, {11, 11}, {2, 2}]}\n\nTopo.contains? a, b # => false\nTopo.intersects? a, b  # => true\n```\n\n- A LineString does not contain it's own first and last point (unless those\n  points are the same, as in a LinearRing)\n\n```elixir\na = %Geo.LineString{coordinates: [{1, 3}, {2, -1}, {0, -1}]}\nb = %Geo.LineString{coordinates: [{1, 3}, {2, -1}, {0, -1}, {1, 3}]}\n\nTopo.contains? a, {1, 3} # => false\nTopo.intersects? a, {1, 3} # => true\nTopo.contains? b, {1, 3} # => true\n```\n\n## Float Precision Issues\n\nIt is possible that floating point math imprecision can cause incorrect results for certain inputs. This is often encountered during the line segment comparison (see [LineStringPolygonTest](https://github.com/pkinney/topo/blob/master/test/linestring_polygon_test.exs) for an example).  By default, `Topo` is strict on intersection math; however, if you with to allow a less strict requirement for line segment intersection, you can set an `:epsilon` value at compile time, which will be passed to the [SegSeg](https://github.com/pkinney/segseg_ex) library (see [here](https://github.com/pkinney/segseg_ex#float-precision-issues) for a more detailed explanation).\n\nIn your application's config file add\n\n```elixir\nconfig :topo, epsilon: true\n```\n\nTopo uses the `Application.config_env/3` function to avoid querying the value on each computation, so you may have to clean and recompile the dependencies of your application after changing.  The default value is `false` will will apply strict comparison to the resulting floating point numbers used in calculating line segment relationships.\n\n\n## Tests\n\n```bash\n> mix test\n```\n\n"
  },
  {
    "path": "bench/line_polygon_bench.exs",
    "content": "defmodule LinePolygonBench do\n  use Benchfella\n  import Topo\n\n  @states Path.join([ \"bench\", \"shapes\", \"states.json\" ])\n    |> File.read!\n    |> Poison.decode!\n    |> Map.fetch!(\"features\")\n    |> Enum.map(&(&1[\"geometry\"]))\n    |> Enum.map(&Geo.JSON.decode/1)\n\n  @interstates Path.join([ \"bench\", \"shapes\", \"interstates.json\" ])\n    |> File.read!\n    |> Poison.decode!\n    |> Map.fetch!(\"features\")\n    |> Enum.map(&(&1[\"geometry\"]))\n    |> Enum.map(&Geo.JSON.decode/1)\n\n  bench \"Interstates in States\" do\n    [state] = Enum.take_random(@states, 1)\n    [interstates] = Enum.take_random(@interstates, 1)\n    Topo.intersects?(state, interstates)\n    :ok\n  end\n\n  bench \"Interstates in States with Envelope check\" do\n    [state] = Enum.take_random(@states, 1)\n    [interstates] = Enum.take_random(@interstates, 1)\n    case Envelope.intersects?(Envelope.from_geo(state), Envelope.from_geo(interstates)) do\n      true -> Topo.intersects?(state, interstates)\n      false -> false\n    end\n    :ok\n  end\nend"
  },
  {
    "path": "bench/point_polygon_bench.exs",
    "content": "defmodule PointPolygonBench do\n  use Benchfella\n  import Topo\n\n  @values -1..13\n  @points (for x <- @values, y <- @values, do: %Geo.Point{coordinates: {x, y}})\n  @multipoint %Geo.MultiPoint{coordinates: (for x <- @values, y <- @values, do: {x, y})}\n  @polygon Path.join([ \"test\", \"fixtures\", \"poly.geo.json\" ])\n    |> File.read!\n    |> Poison.decode!\n    |> Geo.JSON.decode\n\n  bench \"Point / Polygon intersects\" do\n    Enum.each @points, fn point ->\n      intersects? point, @polygon\n    end\n  end\n\n  bench \"Point inside Polygon\" do\n    intersects? {6, 7}, @polygon\n  end\n\n  bench \"Point on vertex of Polygon\" do\n    intersects? {5, 7}, @polygon\n  end\n\n  bench \"Point on edge of Polygon\" do\n    intersects? {5.5, 6.5}, @polygon\n  end\n\n  bench \"Point outside of Polygon\" do\n    intersects? {5.5, 7}, @polygon\n  end\n\n  bench \"Point way outside of Polygon\" do\n    intersects? {25, 37}, @polygon\n  end\n\n  bench \"Point way outside of Polygon with envelope check\" do\n    case Envelope.contains?(Envelope.from_geo(@polygon), {25, 37}) do\n      true -> Topo.intersects?(@polygon, {25, 37})\n      false -> false\n    end\n  end\n\n  bench \"MultiPoint / Polygon intersects\" do\n    intersects? @multipoint, @polygon\n  end\n\n  bench \"Polygon / MultiPoint contains\" do\n    contains? @polygon, @multipoint\n  end\n\n  @states Path.join([ \"bench\", \"shapes\", \"states.json\" ])\n    |> File.read!\n    |> Poison.decode!\n    |> Map.fetch!(\"features\")\n    |> Enum.map(&(&1[\"geometry\"]))\n    |> Enum.map(&Geo.JSON.decode/1)\n\n  @cities Path.join([ \"bench\", \"shapes\", \"cities.json\" ])\n    |> File.read!\n    |> Poison.decode!\n    |> Map.fetch!(\"features\")\n    |> Enum.map(&(&1[\"geometry\"]))\n    |> Enum.map(&Geo.JSON.decode/1)\n\n  bench \"Cities in States\" do\n    [state] = Enum.take_random(@states, 1)\n    [city] = Enum.take_random(@cities, 1)\n    Topo.contains?(state, city)\n    :ok\n  end\n\n  bench \"Cities in States with Envelope check\" do\n    [state] = Enum.take_random(@states, 1)\n    [%{coordinates: {lon, lat}}] = Enum.take_random(@cities, 1)\n    case Envelope.contains?(Envelope.from_geo(state), {lon, lat}) do\n      true -> Topo.contains?(state, {lon, lat})\n      false -> false\n    end\n    :ok\n  end\nend\n"
  },
  {
    "path": "bench/polygon_polygon_bench.exs",
    "content": "defmodule PolygonPolygonBench do\n  use Benchfella\n  import Topo\n\n  @states Path.join([ \"bench\", \"shapes\", \"states.json\" ])\n    |> File.read!\n    |> Poison.decode!\n    |> Map.fetch!(\"features\")\n    |> Enum.map(&(&1[\"geometry\"]))\n    |> Enum.map(&Geo.JSON.decode/1)\n\n  @counties Path.join([ \"bench\", \"shapes\", \"counties.json\" ])\n    |> File.read!\n    |> Poison.decode!\n    |> Map.fetch!(\"features\")\n    |> Enum.map(&(&1[\"geometry\"]))\n    |> Enum.map(&Geo.JSON.decode/1)\n\n  bench \"Polygon / Polygon equal\" do\n    a = \"POLYGON((400 70,270 160,450 30,260 160,420 30,250 160,390 30,240 160,370 30,230 160,360 30,230 150,330 50,240 130,330 30,230 130,310 30,220 130,280 30,230 100,270 40,220 110,250 30,210 130,240 30,210 100,220 40,200 90,200 20,190 100,180 30,20 20,180 40,20 30,180 50,20 50,180 60,30 60,180 70,20 70,170 80,80 80,170 90,20 80,180 100,40 100,200 110,60 110,200 120,120 120,190 140,190 140,140 130,200 160,130 150,210 170,130 170,210 180,120 190,220 200,120 200,250 210,120 210,250 220,120 220,250 230,120 240,230 240,120 250,240 260,120 260,240 270,120 270,270 290,120 290,230 300,150 310,250 310,180 320,250 320,200 360,260 330,240 360,280 320,290 370,290 320,320 360,310 320,360 360,310 310,380 340,310 290,390 330,310 280,410 310,310 270,420 280,310 260,430 250,300 250,440 240,300 240,450 230,280 220,440 220,280 210,440 210,300 200,430 190,300 190,440 180,330 180,430 150,320 180,420 130,300 180,410 120,280 180,400 110,280 170,390 90,280 160,400 70))\" |> Geo.WKT.decode\n    b = \"POLYGON((280 170,390 90,280 160,400 70,270 160,450 30,260 160,420 30,250 160,390 30,240 160,370 30,230 160,360 30,230 150,330 50,240 130,330 30,230 130,310 30,220 130,280 30,230 100,270 40,220 110,250 30,210 130,240 30,210 100,220 40,200 90,200 20,190 100,180 30,20 20,180 40,20 30,180 50,20 50,180 60,30 60,180 70,20 70,170 80,80 80,170 90,20 80,180 100,40 100,200 110,60 110,200 120,120 120,190 140,190 140,140 130,200 160,130 150,210 170,130 170,210 180,120 190,220 200,120 200,250 210,120 210,250 220,120 220,250 230,120 240,230 240,120 250,240 260,120 260,240 270,120 270,270 290,120 290,230 300,150 310,250 310,180 320,250 320,200 360,260 330,240 360,280 320,290 370,290 320,320 360,310 320,360 360,310 310,380 340,310 290,390 330,310 280,410 310,310 270,420 280,310 260,430 250,300 250,440 240,300 240,450 230,280 220,440 220,280 210,440 210,300 200,430 190,300 190,440 180,330 180,430 150,320 180,420 130,300 180,410 120,280 180,400 110,280 170))\" |> Geo.WKT.decode\n\n    equals? a, b\n  end\n\n  bench \"Counties in States\" do\n    [state] = Enum.take_random(@states, 1)\n    [county] = Enum.take_random(@counties, 1)\n    Topo.intersects?(state, county)\n    :ok\n  end\n\n  bench \"Counties in States with Envelope check\" do\n    [state] = Enum.take_random(@states, 1)\n    [county] = Enum.take_random(@counties, 1)\n    case Envelope.intersects?(Envelope.from_geo(state), Envelope.from_geo(county)) do\n      true -> Topo.intersects?(state, county)\n      false -> false\n    end\n    :ok\n  end\nend"
  },
  {
    "path": "bench/shapes/cities.json",
    "content": "{\n\"type\": \"FeatureCollection\",\n\"crs\": { \"type\": \"name\", \"properties\": { \"name\": \"urn:ogc:def:crs:OGC:1.3:CRS84\" } },\n                                                                                \n\"features\": [\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ewa Beach\", \"CLASS\": \"CDP\", \"ST\": \"HI\", \"STFIPS\": \"15\", \"PLACEFIP\": \"07450\", \"CAPITAL\": \"N\", \"AREALAND\": 1.417000, \"AREAWATER\": 0.449000, \"POP_CL\": 6, \"POP2000\": 14650, \"WHITE\": 1633, \"BLACK\": 96, \"AMERI_ES\": 16, \"ASIAN\": 7199, \"HAWN_PI\": 1556, \"OTHER\": 151, \"MULT_RACE\": 3999, \"HISPANIC\": 1421, \"MALES\": 7358, \"FEMALES\": 7292, \"AGE_UNDER5\": 1052, \"AGE_5_17\": 3221, \"AGE_18_21\": 881, \"AGE_22_29\": 1620, \"AGE_30_39\": 2122, \"AGE_40_49\": 1920, \"AGE_50_64\": 2246, \"AGE_65_UP\": 1588, \"MED_AGE\": 32.700000, \"MED_AGE_M\": 31.600000, \"MED_AGE_F\": 33.800000, \"HOUSEHOLDS\": 3305, \"AVE_HH_SZ\": 4.390000, \"HSEHLD_1_M\": 124, \"HSEHLD_1_F\": 123, \"MARHH_CHD\": 941, \"MARHH_NO_C\": 1216, \"MHH_CHILD\": 83, \"FHH_CHILD\": 227, \"FAMILIES\": 2941, \"AVE_FAM_SZ\": 4.470000, \"HSE_UNITS\": 3515, \"VACANT\": 210, \"OWNER_OCC\": 2278, \"RENTER_OCC\": 1027 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -65.713972864386349, 59.480967182957691 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Halawa\", \"CLASS\": \"CDP\", \"ST\": \"HI\", \"STFIPS\": \"15\", \"PLACEFIP\": \"10000\", \"CAPITAL\": \"N\", \"AREALAND\": 2.325000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 13891, \"WHITE\": 2153, \"BLACK\": 254, \"AMERI_ES\": 28, \"ASIAN\": 7070, \"HAWN_PI\": 1449, \"OTHER\": 116, \"MULT_RACE\": 2821, \"HISPANIC\": 905, \"MALES\": 6905, \"FEMALES\": 6986, \"AGE_UNDER5\": 779, \"AGE_5_17\": 2470, \"AGE_18_21\": 780, \"AGE_22_29\": 1574, \"AGE_30_39\": 1908, \"AGE_40_49\": 2080, \"AGE_50_64\": 2108, \"AGE_65_UP\": 2192, \"MED_AGE\": 37.400000, \"MED_AGE_M\": 35.800000, \"MED_AGE_F\": 38.800000, \"HOUSEHOLDS\": 4142, \"AVE_HH_SZ\": 3.280000, \"HSEHLD_1_M\": 289, \"HSEHLD_1_F\": 354, \"MARHH_CHD\": 955, \"MARHH_NO_C\": 1533, \"MHH_CHILD\": 71, \"FHH_CHILD\": 231, \"FAMILIES\": 3277, \"AVE_FAM_SZ\": 3.640000, \"HSE_UNITS\": 4289, \"VACANT\": 147, \"OWNER_OCC\": 2657, \"RENTER_OCC\": 1485 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -67.619289865934391, 58.60629490103927 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hilo\", \"CLASS\": \"CDP\", \"ST\": \"HI\", \"STFIPS\": \"15\", \"PLACEFIP\": \"14650\", \"CAPITAL\": \"N\", \"AREALAND\": 54.289000, \"AREAWATER\": 4.147000, \"POP_CL\": 6, \"POP2000\": 40759, \"WHITE\": 6976, \"BLACK\": 183, \"AMERI_ES\": 137, \"ASIAN\": 15610, \"HAWN_PI\": 5348, \"OTHER\": 385, \"MULT_RACE\": 12120, \"HISPANIC\": 3579, \"MALES\": 19950, \"FEMALES\": 20809, \"AGE_UNDER5\": 2301, \"AGE_5_17\": 7764, \"AGE_18_21\": 2663, \"AGE_22_29\": 3722, \"AGE_30_39\": 4738, \"AGE_40_49\": 6176, \"AGE_50_64\": 6572, \"AGE_65_UP\": 6823, \"MED_AGE\": 38.600000, \"MED_AGE_M\": 37.200000, \"MED_AGE_F\": 39.800000, \"HOUSEHOLDS\": 14577, \"AVE_HH_SZ\": 2.700000, \"HSEHLD_1_M\": 1611, \"HSEHLD_1_F\": 1899, \"MARHH_CHD\": 2846, \"MARHH_NO_C\": 4227, \"MHH_CHILD\": 388, \"FHH_CHILD\": 1228, \"FAMILIES\": 10105, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 16026, \"VACANT\": 1449, \"OWNER_OCC\": 8873, \"RENTER_OCC\": 5704 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -125.256296544015441, 32.351217623927703 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Honolulu\", \"CLASS\": \"CDP\", \"ST\": \"HI\", \"STFIPS\": \"15\", \"PLACEFIP\": \"17000\", \"CAPITAL\": \"Y\", \"AREALAND\": 85.702000, \"AREAWATER\": 19.351000, \"POP_CL\": 8, \"POP2000\": 371657, \"WHITE\": 73093, \"BLACK\": 6038, \"AMERI_ES\": 689, \"ASIAN\": 207588, \"HAWN_PI\": 25457, \"OTHER\": 3318, \"MULT_RACE\": 55474, \"HISPANIC\": 16229, \"MALES\": 182628, \"FEMALES\": 189029, \"AGE_UNDER5\": 18896, \"AGE_5_17\": 52576, \"AGE_18_21\": 18274, \"AGE_22_29\": 41526, \"AGE_30_39\": 56230, \"AGE_40_49\": 55990, \"AGE_50_64\": 61908, \"AGE_65_UP\": 66257, \"MED_AGE\": 39.700000, \"MED_AGE_M\": 38.400000, \"MED_AGE_F\": 41.100000, \"HOUSEHOLDS\": 140337, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 19657, \"HSEHLD_1_F\": 22032, \"MARHH_CHD\": 24570, \"MARHH_NO_C\": 39239, \"MHH_CHILD\": 2030, \"FHH_CHILD\": 6592, \"FAMILIES\": 87374, \"AVE_FAM_SZ\": 3.230000, \"HSE_UNITS\": 158663, \"VACANT\": 18326, \"OWNER_OCC\": 65861, \"RENTER_OCC\": 74476 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.118803192858678, 57.104488740903392 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Kahului\", \"CLASS\": \"CDP\", \"ST\": \"HI\", \"STFIPS\": \"15\", \"PLACEFIP\": \"22700\", \"CAPITAL\": \"N\", \"AREALAND\": 15.162000, \"AREAWATER\": 1.175000, \"POP_CL\": 6, \"POP2000\": 20146, \"WHITE\": 2027, \"BLACK\": 49, \"AMERI_ES\": 55, \"ASIAN\": 10803, \"HAWN_PI\": 1997, \"OTHER\": 296, \"MULT_RACE\": 4919, \"HISPANIC\": 1763, \"MALES\": 9936, \"FEMALES\": 10210, \"AGE_UNDER5\": 1438, \"AGE_5_17\": 3751, \"AGE_18_21\": 1051, \"AGE_22_29\": 2223, \"AGE_30_39\": 2833, \"AGE_40_49\": 2535, \"AGE_50_64\": 2948, \"AGE_65_UP\": 3367, \"MED_AGE\": 35.900000, \"MED_AGE_M\": 34.100000, \"MED_AGE_F\": 37.500000, \"HOUSEHOLDS\": 5880, \"AVE_HH_SZ\": 3.290000, \"HSEHLD_1_M\": 464, \"HSEHLD_1_F\": 728, \"MARHH_CHD\": 1371, \"MARHH_NO_C\": 1682, \"MHH_CHILD\": 185, \"FHH_CHILD\": 495, \"FAMILIES\": 4424, \"AVE_FAM_SZ\": 3.760000, \"HSE_UNITS\": 6079, \"VACANT\": 199, \"OWNER_OCC\": 3190, \"RENTER_OCC\": 2690 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -103.477209060969784, 42.770460002607827 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Kailua\", \"CLASS\": \"CDP\", \"ST\": \"HI\", \"STFIPS\": \"15\", \"PLACEFIP\": \"23150\", \"CAPITAL\": \"N\", \"AREALAND\": 6.644000, \"AREAWATER\": 2.888000, \"POP_CL\": 6, \"POP2000\": 36513, \"WHITE\": 16008, \"BLACK\": 277, \"AMERI_ES\": 109, \"ASIAN\": 7709, \"HAWN_PI\": 2947, \"OTHER\": 338, \"MULT_RACE\": 9125, \"HISPANIC\": 2228, \"MALES\": 18067, \"FEMALES\": 18446, \"AGE_UNDER5\": 2090, \"AGE_5_17\": 6724, \"AGE_18_21\": 1524, \"AGE_22_29\": 3130, \"AGE_30_39\": 5322, \"AGE_40_49\": 6214, \"AGE_50_64\": 6499, \"AGE_65_UP\": 5010, \"MED_AGE\": 39.100000, \"MED_AGE_M\": 38.000000, \"MED_AGE_F\": 40.200000, \"HOUSEHOLDS\": 12229, \"AVE_HH_SZ\": 2.980000, \"HSEHLD_1_M\": 897, \"HSEHLD_1_F\": 1130, \"MARHH_CHD\": 3056, \"MARHH_NO_C\": 4188, \"MHH_CHILD\": 256, \"FHH_CHILD\": 613, \"FAMILIES\": 9324, \"AVE_FAM_SZ\": 3.330000, \"HSE_UNITS\": 12780, \"VACANT\": 551, \"OWNER_OCC\": 8521, \"RENTER_OCC\": 3708 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -72.51128766146374, 56.444538053021667 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Kaneohe\", \"CLASS\": \"CDP\", \"ST\": \"HI\", \"STFIPS\": \"15\", \"PLACEFIP\": \"28250\", \"CAPITAL\": \"N\", \"AREALAND\": 6.572000, \"AREAWATER\": 1.941000, \"POP_CL\": 6, \"POP2000\": 34970, \"WHITE\": 7166, \"BLACK\": 285, \"AMERI_ES\": 69, \"ASIAN\": 13456, \"HAWN_PI\": 3999, \"OTHER\": 237, \"MULT_RACE\": 9758, \"HISPANIC\": 2523, \"MALES\": 17141, \"FEMALES\": 17829, \"AGE_UNDER5\": 2015, \"AGE_5_17\": 6578, \"AGE_18_21\": 1638, \"AGE_22_29\": 3327, \"AGE_30_39\": 5044, \"AGE_40_49\": 5709, \"AGE_50_64\": 5504, \"AGE_65_UP\": 5155, \"MED_AGE\": 38.000000, \"MED_AGE_M\": 36.700000, \"MED_AGE_F\": 39.300000, \"HOUSEHOLDS\": 10976, \"AVE_HH_SZ\": 3.140000, \"HSEHLD_1_M\": 693, \"HSEHLD_1_F\": 1002, \"MARHH_CHD\": 2768, \"MARHH_NO_C\": 3859, \"MHH_CHILD\": 207, \"FHH_CHILD\": 619, \"FAMILIES\": 8680, \"AVE_FAM_SZ\": 3.480000, \"HSE_UNITS\": 11472, \"VACANT\": 496, \"OWNER_OCC\": 7473, \"RENTER_OCC\": 3503 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -70.753185304481008, 57.21102347823836 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Kaneohe Station\", \"CLASS\": \"CDP\", \"ST\": \"HI\", \"STFIPS\": \"15\", \"PLACEFIP\": \"28400\", \"CAPITAL\": \"N\", \"AREALAND\": 4.386000, \"AREAWATER\": 1.437000, \"POP_CL\": 6, \"POP2000\": 11827, \"WHITE\": 7877, \"BLACK\": 1428, \"AMERI_ES\": 129, \"ASIAN\": 631, \"HAWN_PI\": 141, \"OTHER\": 897, \"MULT_RACE\": 724, \"HISPANIC\": 1731, \"MALES\": 7918, \"FEMALES\": 3909, \"AGE_UNDER5\": 1267, \"AGE_5_17\": 1571, \"AGE_18_21\": 3124, \"AGE_22_29\": 3513, \"AGE_30_39\": 1811, \"AGE_40_49\": 465, \"AGE_50_64\": 68, \"AGE_65_UP\": 8, \"MED_AGE\": 22.000000, \"MED_AGE_M\": 21.800000, \"MED_AGE_F\": 22.700000, \"HOUSEHOLDS\": 2332, \"AVE_HH_SZ\": 3.210000, \"HSEHLD_1_M\": 21, \"HSEHLD_1_F\": 15, \"MARHH_CHD\": 1450, \"MARHH_NO_C\": 719, \"MHH_CHILD\": 23, \"FHH_CHILD\": 82, \"FAMILIES\": 2283, \"AVE_FAM_SZ\": 3.230000, \"HSE_UNITS\": 2388, \"VACANT\": 56, \"OWNER_OCC\": 29, \"RENTER_OCC\": 2303 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.753512172090481, 56.753576784543384 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Kihei\", \"CLASS\": \"CDP\", \"ST\": \"HI\", \"STFIPS\": \"15\", \"PLACEFIP\": \"36500\", \"CAPITAL\": \"N\", \"AREALAND\": 10.159000, \"AREAWATER\": 1.731000, \"POP_CL\": 6, \"POP2000\": 16749, \"WHITE\": 7999, \"BLACK\": 124, \"AMERI_ES\": 81, \"ASIAN\": 4140, \"HAWN_PI\": 1315, \"OTHER\": 265, \"MULT_RACE\": 2825, \"HISPANIC\": 1259, \"MALES\": 8502, \"FEMALES\": 8247, \"AGE_UNDER5\": 1145, \"AGE_5_17\": 3057, \"AGE_18_21\": 741, \"AGE_22_29\": 1845, \"AGE_30_39\": 3164, \"AGE_40_49\": 3121, \"AGE_50_64\": 2499, \"AGE_65_UP\": 1177, \"MED_AGE\": 35.300000, \"MED_AGE_M\": 35.300000, \"MED_AGE_F\": 35.300000, \"HOUSEHOLDS\": 6170, \"AVE_HH_SZ\": 2.700000, \"HSEHLD_1_M\": 845, \"HSEHLD_1_F\": 738, \"MARHH_CHD\": 1360, \"MARHH_NO_C\": 1457, \"MHH_CHILD\": 201, \"FHH_CHILD\": 413, \"FAMILIES\": 3811, \"AVE_FAM_SZ\": 3.310000, \"HSE_UNITS\": 9170, \"VACANT\": 3000, \"OWNER_OCC\": 3007, \"RENTER_OCC\": 3163 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -104.441743870829171, 42.334917447959569 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Makakilo City\", \"CLASS\": \"CDP\", \"ST\": \"HI\", \"STFIPS\": \"15\", \"PLACEFIP\": \"47750\", \"CAPITAL\": \"N\", \"AREALAND\": 3.141000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 13156, \"WHITE\": 3179, \"BLACK\": 333, \"AMERI_ES\": 26, \"ASIAN\": 4220, \"HAWN_PI\": 1342, \"OTHER\": 199, \"MULT_RACE\": 3857, \"HISPANIC\": 1327, \"MALES\": 6612, \"FEMALES\": 6544, \"AGE_UNDER5\": 1128, \"AGE_5_17\": 2885, \"AGE_18_21\": 622, \"AGE_22_29\": 1393, \"AGE_30_39\": 2414, \"AGE_40_49\": 1984, \"AGE_50_64\": 1930, \"AGE_65_UP\": 800, \"MED_AGE\": 32.400000, \"MED_AGE_M\": 32.100000, \"MED_AGE_F\": 32.600000, \"HOUSEHOLDS\": 3898, \"AVE_HH_SZ\": 3.370000, \"HSEHLD_1_M\": 248, \"HSEHLD_1_F\": 191, \"MARHH_CHD\": 1360, \"MARHH_NO_C\": 1209, \"MHH_CHILD\": 120, \"FHH_CHILD\": 241, \"FAMILIES\": 3225, \"AVE_FAM_SZ\": 3.640000, \"HSE_UNITS\": 4119, \"VACANT\": 221, \"OWNER_OCC\": 2749, \"RENTER_OCC\": 1149 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -62.930022010368852, 60.684057487271765 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mililani Town\", \"CLASS\": \"CDP\", \"ST\": \"HI\", \"STFIPS\": \"15\", \"PLACEFIP\": \"51050\", \"CAPITAL\": \"N\", \"AREALAND\": 3.909000, \"AREAWATER\": 0.021000, \"POP_CL\": 6, \"POP2000\": 28608, \"WHITE\": 5829, \"BLACK\": 879, \"AMERI_ES\": 54, \"ASIAN\": 13426, \"HAWN_PI\": 1303, \"OTHER\": 381, \"MULT_RACE\": 6736, \"HISPANIC\": 2222, \"MALES\": 14284, \"FEMALES\": 14324, \"AGE_UNDER5\": 1664, \"AGE_5_17\": 6114, \"AGE_18_21\": 1535, \"AGE_22_29\": 2821, \"AGE_30_39\": 3868, \"AGE_40_49\": 5012, \"AGE_50_64\": 5550, \"AGE_65_UP\": 2044, \"MED_AGE\": 36.200000, \"MED_AGE_M\": 35.400000, \"MED_AGE_F\": 37.000000, \"HOUSEHOLDS\": 9010, \"AVE_HH_SZ\": 3.170000, \"HSEHLD_1_M\": 500, \"HSEHLD_1_F\": 459, \"MARHH_CHD\": 3193, \"MARHH_NO_C\": 3149, \"MHH_CHILD\": 189, \"FHH_CHILD\": 498, \"FAMILIES\": 7694, \"AVE_FAM_SZ\": 3.410000, \"HSE_UNITS\": 9280, \"VACANT\": 270, \"OWNER_OCC\": 6840, \"RENTER_OCC\": 2170 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -64.014777594708875, 60.142818374912686 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Nanakuli\", \"CLASS\": \"CDP\", \"ST\": \"HI\", \"STFIPS\": \"15\", \"PLACEFIP\": \"53900\", \"CAPITAL\": \"N\", \"AREALAND\": 2.522000, \"AREAWATER\": 3.224000, \"POP_CL\": 6, \"POP2000\": 10814, \"WHITE\": 616, \"BLACK\": 85, \"AMERI_ES\": 31, \"ASIAN\": 1255, \"HAWN_PI\": 4348, \"OTHER\": 90, \"MULT_RACE\": 4389, \"HISPANIC\": 1202, \"MALES\": 5380, \"FEMALES\": 5434, \"AGE_UNDER5\": 950, \"AGE_5_17\": 2923, \"AGE_18_21\": 768, \"AGE_22_29\": 1127, \"AGE_30_39\": 1527, \"AGE_40_49\": 1396, \"AGE_50_64\": 1381, \"AGE_65_UP\": 742, \"MED_AGE\": 27.200000, \"MED_AGE_M\": 25.500000, \"MED_AGE_F\": 28.900000, \"HOUSEHOLDS\": 2324, \"AVE_HH_SZ\": 4.650000, \"HSEHLD_1_M\": 81, \"HSEHLD_1_F\": 74, \"MARHH_CHD\": 729, \"MARHH_NO_C\": 637, \"MHH_CHILD\": 100, \"FHH_CHILD\": 239, \"FAMILIES\": 2097, \"AVE_FAM_SZ\": 4.740000, \"HSE_UNITS\": 2504, \"VACANT\": 180, \"OWNER_OCC\": 1565, \"RENTER_OCC\": 759 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -60.500793839783157, 61.723277073672328 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pearl City\", \"CLASS\": \"CDP\", \"ST\": \"HI\", \"STFIPS\": \"15\", \"PLACEFIP\": \"62600\", \"CAPITAL\": \"N\", \"AREALAND\": 4.984000, \"AREAWATER\": 0.825000, \"POP_CL\": 6, \"POP2000\": 30976, \"WHITE\": 5340, \"BLACK\": 838, \"AMERI_ES\": 83, \"ASIAN\": 16547, \"HAWN_PI\": 1904, \"OTHER\": 437, \"MULT_RACE\": 5827, \"HISPANIC\": 2260, \"MALES\": 16582, \"FEMALES\": 14394, \"AGE_UNDER5\": 1574, \"AGE_5_17\": 4255, \"AGE_18_21\": 2302, \"AGE_22_29\": 4391, \"AGE_30_39\": 4164, \"AGE_40_49\": 3464, \"AGE_50_64\": 5518, \"AGE_65_UP\": 5308, \"MED_AGE\": 37.000000, \"MED_AGE_M\": 33.400000, \"MED_AGE_F\": 41.600000, \"HOUSEHOLDS\": 8921, \"AVE_HH_SZ\": 3.170000, \"HSEHLD_1_M\": 628, \"HSEHLD_1_F\": 702, \"MARHH_CHD\": 1793, \"MARHH_NO_C\": 3907, \"MHH_CHILD\": 137, \"FHH_CHILD\": 320, \"FAMILIES\": 7289, \"AVE_FAM_SZ\": 3.480000, \"HSE_UNITS\": 9181, \"VACANT\": 260, \"OWNER_OCC\": 6129, \"RENTER_OCC\": 2792 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -65.975143309645475, 59.310002337727383 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Schofield Barracks\", \"CLASS\": \"CDP\", \"ST\": \"HI\", \"STFIPS\": \"15\", \"PLACEFIP\": \"69050\", \"CAPITAL\": \"N\", \"AREALAND\": 2.747000, \"AREAWATER\": 0.001000, \"POP_CL\": 6, \"POP2000\": 14428, \"WHITE\": 8137, \"BLACK\": 3154, \"AMERI_ES\": 158, \"ASIAN\": 559, \"HAWN_PI\": 238, \"OTHER\": 1246, \"MULT_RACE\": 936, \"HISPANIC\": 2337, \"MALES\": 8710, \"FEMALES\": 5718, \"AGE_UNDER5\": 2022, \"AGE_5_17\": 2609, \"AGE_18_21\": 2510, \"AGE_22_29\": 4211, \"AGE_30_39\": 2465, \"AGE_40_49\": 517, \"AGE_50_64\": 79, \"AGE_65_UP\": 15, \"MED_AGE\": 22.100000, \"MED_AGE_M\": 22.200000, \"MED_AGE_F\": 21.800000, \"HOUSEHOLDS\": 2965, \"AVE_HH_SZ\": 3.550000, \"HSEHLD_1_M\": 46, \"HSEHLD_1_F\": 12, \"MARHH_CHD\": 2129, \"MARHH_NO_C\": 584, \"MHH_CHILD\": 44, \"FHH_CHILD\": 141, \"FAMILIES\": 2903, \"AVE_FAM_SZ\": 3.580000, \"HSE_UNITS\": 3733, \"VACANT\": 768, \"OWNER_OCC\": 33, \"RENTER_OCC\": 2932 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -61.993757062823313, 60.996877724910689 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wahiawa\", \"CLASS\": \"CDP\", \"ST\": \"HI\", \"STFIPS\": \"15\", \"PLACEFIP\": \"72650\", \"CAPITAL\": \"N\", \"AREALAND\": 2.113000, \"AREAWATER\": 0.266000, \"POP_CL\": 6, \"POP2000\": 16151, \"WHITE\": 1826, \"BLACK\": 326, \"AMERI_ES\": 52, \"ASIAN\": 7392, \"HAWN_PI\": 1554, \"OTHER\": 295, \"MULT_RACE\": 4706, \"HISPANIC\": 1777, \"MALES\": 7852, \"FEMALES\": 8299, \"AGE_UNDER5\": 1109, \"AGE_5_17\": 3109, \"AGE_18_21\": 822, \"AGE_22_29\": 1518, \"AGE_30_39\": 2100, \"AGE_40_49\": 2291, \"AGE_50_64\": 2170, \"AGE_65_UP\": 3032, \"MED_AGE\": 37.500000, \"MED_AGE_M\": 35.800000, \"MED_AGE_F\": 38.900000, \"HOUSEHOLDS\": 5376, \"AVE_HH_SZ\": 2.970000, \"HSEHLD_1_M\": 539, \"HSEHLD_1_F\": 641, \"MARHH_CHD\": 1050, \"MARHH_NO_C\": 1596, \"MHH_CHILD\": 138, \"FHH_CHILD\": 492, \"FAMILIES\": 3955, \"AVE_FAM_SZ\": 3.450000, \"HSE_UNITS\": 5900, \"VACANT\": 524, \"OWNER_OCC\": 2505, \"RENTER_OCC\": 2871 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -63.169872066765102, 60.47923916021545 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Waianae\", \"CLASS\": \"CDP\", \"ST\": \"HI\", \"STFIPS\": \"15\", \"PLACEFIP\": \"74450\", \"CAPITAL\": \"N\", \"AREALAND\": 3.404000, \"AREAWATER\": 1.692000, \"POP_CL\": 6, \"POP2000\": 10506, \"WHITE\": 982, \"BLACK\": 85, \"AMERI_ES\": 27, \"ASIAN\": 2042, \"HAWN_PI\": 2864, \"OTHER\": 102, \"MULT_RACE\": 4404, \"HISPANIC\": 1471, \"MALES\": 5223, \"FEMALES\": 5283, \"AGE_UNDER5\": 888, \"AGE_5_17\": 2770, \"AGE_18_21\": 669, \"AGE_22_29\": 1103, \"AGE_30_39\": 1454, \"AGE_40_49\": 1357, \"AGE_50_64\": 1406, \"AGE_65_UP\": 859, \"MED_AGE\": 28.800000, \"MED_AGE_M\": 27.300000, \"MED_AGE_F\": 30.100000, \"HOUSEHOLDS\": 2595, \"AVE_HH_SZ\": 4.040000, \"HSEHLD_1_M\": 126, \"HSEHLD_1_F\": 157, \"MARHH_CHD\": 789, \"MARHH_NO_C\": 715, \"MHH_CHILD\": 89, \"FHH_CHILD\": 261, \"FAMILIES\": 2221, \"AVE_FAM_SZ\": 4.300000, \"HSE_UNITS\": 2925, \"VACANT\": 330, \"OWNER_OCC\": 1702, \"RENTER_OCC\": 893 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -58.973710377182726, 62.353811370441782 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wailuku\", \"CLASS\": \"CDP\", \"ST\": \"HI\", \"STFIPS\": \"15\", \"PLACEFIP\": \"77450\", \"CAPITAL\": \"N\", \"AREALAND\": 5.066000, \"AREAWATER\": 0.374000, \"POP_CL\": 6, \"POP2000\": 12296, \"WHITE\": 2233, \"BLACK\": 29, \"AMERI_ES\": 44, \"ASIAN\": 5174, \"HAWN_PI\": 1439, \"OTHER\": 145, \"MULT_RACE\": 3232, \"HISPANIC\": 953, \"MALES\": 6131, \"FEMALES\": 6165, \"AGE_UNDER5\": 790, \"AGE_5_17\": 2123, \"AGE_18_21\": 506, \"AGE_22_29\": 1122, \"AGE_30_39\": 1930, \"AGE_40_49\": 2050, \"AGE_50_64\": 1923, \"AGE_65_UP\": 1852, \"MED_AGE\": 38.500000, \"MED_AGE_M\": 37.900000, \"MED_AGE_F\": 39.100000, \"HOUSEHOLDS\": 4535, \"AVE_HH_SZ\": 2.710000, \"HSEHLD_1_M\": 596, \"HSEHLD_1_F\": 571, \"MARHH_CHD\": 947, \"MARHH_NO_C\": 1246, \"MHH_CHILD\": 104, \"FHH_CHILD\": 268, \"FAMILIES\": 3016, \"AVE_FAM_SZ\": 3.280000, \"HSE_UNITS\": 4780, \"VACANT\": 245, \"OWNER_OCC\": 2675, \"RENTER_OCC\": 1860 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -102.857809023808414, 43.05127906420249 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Waimalu\", \"CLASS\": \"CDP\", \"ST\": \"HI\", \"STFIPS\": \"15\", \"PLACEFIP\": \"77750\", \"CAPITAL\": \"N\", \"AREALAND\": 5.907000, \"AREAWATER\": 0.203000, \"POP_CL\": 6, \"POP2000\": 29371, \"WHITE\": 5017, \"BLACK\": 684, \"AMERI_ES\": 76, \"ASIAN\": 16248, \"HAWN_PI\": 1655, \"OTHER\": 324, \"MULT_RACE\": 5367, \"HISPANIC\": 1753, \"MALES\": 14871, \"FEMALES\": 14500, \"AGE_UNDER5\": 1581, \"AGE_5_17\": 4706, \"AGE_18_21\": 1441, \"AGE_22_29\": 3606, \"AGE_30_39\": 4433, \"AGE_40_49\": 5099, \"AGE_50_64\": 5526, \"AGE_65_UP\": 2979, \"MED_AGE\": 37.800000, \"MED_AGE_M\": 36.800000, \"MED_AGE_F\": 38.800000, \"HOUSEHOLDS\": 10524, \"AVE_HH_SZ\": 2.780000, \"HSEHLD_1_M\": 1336, \"HSEHLD_1_F\": 877, \"MARHH_CHD\": 2365, \"MARHH_NO_C\": 3522, \"MHH_CHILD\": 182, \"FHH_CHILD\": 524, \"FAMILIES\": 7518, \"AVE_FAM_SZ\": 3.260000, \"HSE_UNITS\": 10999, \"VACANT\": 475, \"OWNER_OCC\": 6536, \"RENTER_OCC\": 3988 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -66.624271838668875, 59.030584833013464 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Waipahu\", \"CLASS\": \"CDP\", \"ST\": \"HI\", \"STFIPS\": \"15\", \"PLACEFIP\": \"79700\", \"CAPITAL\": \"N\", \"AREALAND\": 2.570000, \"AREAWATER\": 0.061000, \"POP_CL\": 6, \"POP2000\": 33108, \"WHITE\": 1566, \"BLACK\": 308, \"AMERI_ES\": 46, \"ASIAN\": 21774, \"HAWN_PI\": 4077, \"OTHER\": 285, \"MULT_RACE\": 5052, \"HISPANIC\": 2016, \"MALES\": 16352, \"FEMALES\": 16756, \"AGE_UNDER5\": 2271, \"AGE_5_17\": 6483, \"AGE_18_21\": 1776, \"AGE_22_29\": 3684, \"AGE_30_39\": 4357, \"AGE_40_49\": 4141, \"AGE_50_64\": 5153, \"AGE_65_UP\": 5243, \"MED_AGE\": 35.500000, \"MED_AGE_M\": 34.300000, \"MED_AGE_F\": 36.600000, \"HOUSEHOLDS\": 7566, \"AVE_HH_SZ\": 4.230000, \"HSEHLD_1_M\": 361, \"HSEHLD_1_F\": 480, \"MARHH_CHD\": 1967, \"MARHH_NO_C\": 2554, \"MHH_CHILD\": 172, \"FHH_CHILD\": 601, \"FAMILIES\": 6430, \"AVE_FAM_SZ\": 4.370000, \"HSE_UNITS\": 8033, \"VACANT\": 467, \"OWNER_OCC\": 4043, \"RENTER_OCC\": 3523 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -64.865376467463221, 59.807320688712132 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Waipio\", \"CLASS\": \"CDP\", \"ST\": \"HI\", \"STFIPS\": \"15\", \"PLACEFIP\": \"79860\", \"CAPITAL\": \"N\", \"AREALAND\": 1.203000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11672, \"WHITE\": 1683, \"BLACK\": 329, \"AMERI_ES\": 21, \"ASIAN\": 6380, \"HAWN_PI\": 636, \"OTHER\": 100, \"MULT_RACE\": 2523, \"HISPANIC\": 789, \"MALES\": 5868, \"FEMALES\": 5804, \"AGE_UNDER5\": 756, \"AGE_5_17\": 2302, \"AGE_18_21\": 570, \"AGE_22_29\": 1481, \"AGE_30_39\": 1850, \"AGE_40_49\": 2288, \"AGE_50_64\": 1663, \"AGE_65_UP\": 762, \"MED_AGE\": 33.900000, \"MED_AGE_M\": 33.200000, \"MED_AGE_F\": 34.600000, \"HOUSEHOLDS\": 3974, \"AVE_HH_SZ\": 2.920000, \"HSEHLD_1_M\": 499, \"HSEHLD_1_F\": 332, \"MARHH_CHD\": 1202, \"MARHH_NO_C\": 1069, \"MHH_CHILD\": 91, \"FHH_CHILD\": 242, \"FAMILIES\": 2873, \"AVE_FAM_SZ\": 3.410000, \"HSE_UNITS\": 4110, \"VACANT\": 136, \"OWNER_OCC\": 2555, \"RENTER_OCC\": 1419 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -64.939280446633305, 59.758585466307181 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Alabaster\", \"CLASS\": \"city\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"00820\", \"CAPITAL\": \"N\", \"AREALAND\": 20.472000, \"AREAWATER\": 0.055000, \"POP_CL\": 6, \"POP2000\": 22619, \"WHITE\": 19839, \"BLACK\": 2250, \"AMERI_ES\": 71, \"ASIAN\": 144, \"HAWN_PI\": 4, \"OTHER\": 156, \"MULT_RACE\": 155, \"HISPANIC\": 348, \"MALES\": 11004, \"FEMALES\": 11615, \"AGE_UNDER5\": 2101, \"AGE_5_17\": 4175, \"AGE_18_21\": 893, \"AGE_22_29\": 2456, \"AGE_30_39\": 4750, \"AGE_40_49\": 3567, \"AGE_50_64\": 2933, \"AGE_65_UP\": 1744, \"MED_AGE\": 33.300000, \"MED_AGE_M\": 32.900000, \"MED_AGE_F\": 33.800000, \"HOUSEHOLDS\": 8164, \"AVE_HH_SZ\": 2.730000, \"HSEHLD_1_M\": 599, \"HSEHLD_1_F\": 801, \"MARHH_CHD\": 2892, \"MARHH_NO_C\": 2658, \"MHH_CHILD\": 89, \"FHH_CHILD\": 436, \"FAMILIES\": 6482, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 8594, \"VACANT\": 430, \"OWNER_OCC\": 7038, \"RENTER_OCC\": 1126 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.823828998942034, 33.231161997809323 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Albertville\", \"CLASS\": \"city\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"00988\", \"CAPITAL\": \"N\", \"AREALAND\": 25.951000, \"AREAWATER\": 0.100000, \"POP_CL\": 6, \"POP2000\": 17247, \"WHITE\": 14859, \"BLACK\": 353, \"AMERI_ES\": 54, \"ASIAN\": 45, \"HAWN_PI\": 17, \"OTHER\": 1687, \"MULT_RACE\": 232, \"HISPANIC\": 2773, \"MALES\": 8316, \"FEMALES\": 8931, \"AGE_UNDER5\": 1345, \"AGE_5_17\": 3142, \"AGE_18_21\": 1002, \"AGE_22_29\": 2132, \"AGE_30_39\": 2463, \"AGE_40_49\": 2079, \"AGE_50_64\": 2584, \"AGE_65_UP\": 2500, \"MED_AGE\": 34.000000, \"MED_AGE_M\": 31.600000, \"MED_AGE_F\": 36.400000, \"HOUSEHOLDS\": 6566, \"AVE_HH_SZ\": 2.590000, \"HSEHLD_1_M\": 555, \"HSEHLD_1_F\": 1146, \"MARHH_CHD\": 1542, \"MARHH_NO_C\": 2003, \"MHH_CHILD\": 117, \"FHH_CHILD\": 491, \"FAMILIES\": 4617, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 7090, \"VACANT\": 524, \"OWNER_OCC\": 4381, \"RENTER_OCC\": 2185 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.211260999639961, 34.26536199581647 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Alexander City\", \"CLASS\": \"city\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"01132\", \"CAPITAL\": \"N\", \"AREALAND\": 38.816000, \"AREAWATER\": 0.167000, \"POP_CL\": 6, \"POP2000\": 15008, \"WHITE\": 10589, \"BLACK\": 4258, \"AMERI_ES\": 19, \"ASIAN\": 42, \"HAWN_PI\": 3, \"OTHER\": 23, \"MULT_RACE\": 74, \"HISPANIC\": 67, \"MALES\": 6877, \"FEMALES\": 8131, \"AGE_UNDER5\": 994, \"AGE_5_17\": 2642, \"AGE_18_21\": 703, \"AGE_22_29\": 1365, \"AGE_30_39\": 1946, \"AGE_40_49\": 2124, \"AGE_50_64\": 2395, \"AGE_65_UP\": 2839, \"MED_AGE\": 39.300000, \"MED_AGE_M\": 36.700000, \"MED_AGE_F\": 41.400000, \"HOUSEHOLDS\": 6152, \"AVE_HH_SZ\": 2.360000, \"HSEHLD_1_M\": 602, \"HSEHLD_1_F\": 1259, \"MARHH_CHD\": 1161, \"MARHH_NO_C\": 1784, \"MHH_CHILD\": 77, \"FHH_CHILD\": 590, \"FAMILIES\": 4136, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 6855, \"VACANT\": 703, \"OWNER_OCC\": 4003, \"RENTER_OCC\": 2149 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.93600799918714, 32.933156995306149 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Anniston\", \"CLASS\": \"city\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"01852\", \"CAPITAL\": \"N\", \"AREALAND\": 45.425000, \"AREAWATER\": 0.033000, \"POP_CL\": 6, \"POP2000\": 24276, \"WHITE\": 11825, \"BLACK\": 11821, \"AMERI_ES\": 66, \"ASIAN\": 189, \"HAWN_PI\": 18, \"OTHER\": 148, \"MULT_RACE\": 209, \"HISPANIC\": 409, \"MALES\": 11077, \"FEMALES\": 13199, \"AGE_UNDER5\": 1601, \"AGE_5_17\": 4129, \"AGE_18_21\": 1241, \"AGE_22_29\": 2313, \"AGE_30_39\": 3088, \"AGE_40_49\": 3476, \"AGE_50_64\": 3879, \"AGE_65_UP\": 4549, \"MED_AGE\": 39.300000, \"MED_AGE_M\": 36.800000, \"MED_AGE_F\": 41.600000, \"HOUSEHOLDS\": 10447, \"AVE_HH_SZ\": 2.260000, \"HSEHLD_1_M\": 1338, \"HSEHLD_1_F\": 2293, \"MARHH_CHD\": 1279, \"MARHH_NO_C\": 2689, \"MHH_CHILD\": 137, \"FHH_CHILD\": 1118, \"FAMILIES\": 6416, \"AVE_FAM_SZ\": 2.910000, \"HSE_UNITS\": 12787, \"VACANT\": 2340, \"OWNER_OCC\": 6215, \"RENTER_OCC\": 4232 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.826664000050329, 33.663002994525215 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Athens\", \"CLASS\": \"city\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"02956\", \"CAPITAL\": \"N\", \"AREALAND\": 39.327000, \"AREAWATER\": 0.093000, \"POP_CL\": 6, \"POP2000\": 18967, \"WHITE\": 14741, \"BLACK\": 3464, \"AMERI_ES\": 76, \"ASIAN\": 134, \"HAWN_PI\": 3, \"OTHER\": 365, \"MULT_RACE\": 184, \"HISPANIC\": 922, \"MALES\": 8972, \"FEMALES\": 9995, \"AGE_UNDER5\": 1215, \"AGE_5_17\": 3327, \"AGE_18_21\": 1013, \"AGE_22_29\": 1963, \"AGE_30_39\": 2708, \"AGE_40_49\": 2732, \"AGE_50_64\": 3004, \"AGE_65_UP\": 3005, \"MED_AGE\": 37.500000, \"MED_AGE_M\": 35.200000, \"MED_AGE_F\": 39.700000, \"HOUSEHOLDS\": 7742, \"AVE_HH_SZ\": 2.370000, \"HSEHLD_1_M\": 882, \"HSEHLD_1_F\": 1516, \"MARHH_CHD\": 1660, \"MARHH_NO_C\": 2209, \"MHH_CHILD\": 108, \"FHH_CHILD\": 594, \"FAMILIES\": 5137, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 8449, \"VACANT\": 707, \"OWNER_OCC\": 4884, \"RENTER_OCC\": 2858 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.969423999351704, 34.789601997820633 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Auburn\", \"CLASS\": \"city\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"03076\", \"CAPITAL\": \"N\", \"AREALAND\": 39.130000, \"AREAWATER\": 0.444000, \"POP_CL\": 6, \"POP2000\": 42987, \"WHITE\": 33553, \"BLACK\": 7217, \"AMERI_ES\": 82, \"ASIAN\": 1422, \"HAWN_PI\": 17, \"OTHER\": 244, \"MULT_RACE\": 452, \"HISPANIC\": 666, \"MALES\": 21431, \"FEMALES\": 21556, \"AGE_UNDER5\": 1774, \"AGE_5_17\": 4830, \"AGE_18_21\": 12954, \"AGE_22_29\": 9603, \"AGE_30_39\": 4039, \"AGE_40_49\": 3719, \"AGE_50_64\": 3302, \"AGE_65_UP\": 2766, \"MED_AGE\": 22.600000, \"MED_AGE_M\": 22.800000, \"MED_AGE_F\": 22.500000, \"HOUSEHOLDS\": 18421, \"AVE_HH_SZ\": 2.120000, \"HSEHLD_1_M\": 3643, \"HSEHLD_1_F\": 3135, \"MARHH_CHD\": 2471, \"MARHH_NO_C\": 2798, \"MHH_CHILD\": 151, \"FHH_CHILD\": 807, \"FAMILIES\": 7238, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 20043, \"VACANT\": 1622, \"OWNER_OCC\": 7531, \"RENTER_OCC\": 10890 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.480823000152029, 32.597683993461253 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bessemer\", \"CLASS\": \"city\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"05980\", \"CAPITAL\": \"N\", \"AREALAND\": 40.703000, \"AREAWATER\": 0.067000, \"POP_CL\": 6, \"POP2000\": 29672, \"WHITE\": 8584, \"BLACK\": 20638, \"AMERI_ES\": 82, \"ASIAN\": 52, \"HAWN_PI\": 5, \"OTHER\": 90, \"MULT_RACE\": 221, \"HISPANIC\": 338, \"MALES\": 13450, \"FEMALES\": 16222, \"AGE_UNDER5\": 2291, \"AGE_5_17\": 5657, \"AGE_18_21\": 1705, \"AGE_22_29\": 3032, \"AGE_30_39\": 3714, \"AGE_40_49\": 4195, \"AGE_50_64\": 4197, \"AGE_65_UP\": 4881, \"MED_AGE\": 35.900000, \"MED_AGE_M\": 32.900000, \"MED_AGE_F\": 38.400000, \"HOUSEHOLDS\": 11537, \"AVE_HH_SZ\": 2.520000, \"HSEHLD_1_M\": 1349, \"HSEHLD_1_F\": 1993, \"MARHH_CHD\": 1528, \"MARHH_NO_C\": 2467, \"MHH_CHILD\": 165, \"FHH_CHILD\": 1829, \"FAMILIES\": 7873, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 12790, \"VACANT\": 1253, \"OWNER_OCC\": 6833, \"RENTER_OCC\": 4704 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.956568999027155, 33.391342998045587 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Birmingham\", \"CLASS\": \"city\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"07000\", \"CAPITAL\": \"N\", \"AREALAND\": 149.917000, \"AREAWATER\": 2.035000, \"POP_CL\": 8, \"POP2000\": 242820, \"WHITE\": 58457, \"BLACK\": 178372, \"AMERI_ES\": 422, \"ASIAN\": 1942, \"HAWN_PI\": 87, \"OTHER\": 1513, \"MULT_RACE\": 2027, \"HISPANIC\": 3764, \"MALES\": 112046, \"FEMALES\": 130774, \"AGE_UNDER5\": 16564, \"AGE_5_17\": 44243, \"AGE_18_21\": 15244, \"AGE_22_29\": 30911, \"AGE_30_39\": 34898, \"AGE_40_49\": 36197, \"AGE_50_64\": 32081, \"AGE_65_UP\": 32682, \"MED_AGE\": 34.300000, \"MED_AGE_M\": 31.800000, \"MED_AGE_F\": 36.200000, \"HOUSEHOLDS\": 98782, \"AVE_HH_SZ\": 2.370000, \"HSEHLD_1_M\": 14954, \"HSEHLD_1_F\": 18996, \"MARHH_CHD\": 12395, \"MARHH_NO_C\": 18310, \"MHH_CHILD\": 1497, \"FHH_CHILD\": 13467, \"FAMILIES\": 59287, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 111927, \"VACANT\": 13145, \"OWNER_OCC\": 53036, \"RENTER_OCC\": 45746 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.812739999015037, 33.524754997726774 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Center Point\", \"CLASS\": \"CDP\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"13264\", \"CAPITAL\": \"N\", \"AREALAND\": 8.050000, \"AREAWATER\": 0.022000, \"POP_CL\": 6, \"POP2000\": 22784, \"WHITE\": 16610, \"BLACK\": 5521, \"AMERI_ES\": 63, \"ASIAN\": 126, \"HAWN_PI\": 7, \"OTHER\": 233, \"MULT_RACE\": 224, \"HISPANIC\": 507, \"MALES\": 10764, \"FEMALES\": 12020, \"AGE_UNDER5\": 1691, \"AGE_5_17\": 4367, \"AGE_18_21\": 1171, \"AGE_22_29\": 2502, \"AGE_30_39\": 3543, \"AGE_40_49\": 3178, \"AGE_50_64\": 3342, \"AGE_65_UP\": 2990, \"MED_AGE\": 34.700000, \"MED_AGE_M\": 32.900000, \"MED_AGE_F\": 36.300000, \"HOUSEHOLDS\": 8826, \"AVE_HH_SZ\": 2.560000, \"HSEHLD_1_M\": 801, \"HSEHLD_1_F\": 1291, \"MARHH_CHD\": 2073, \"MARHH_NO_C\": 2670, \"MHH_CHILD\": 183, \"FHH_CHILD\": 861, \"FAMILIES\": 6435, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 9292, \"VACANT\": 466, \"OWNER_OCC\": 6133, \"RENTER_OCC\": 2693 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.680436999033574, 33.639301997397986 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cullman\", \"CLASS\": \"city\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"18976\", \"CAPITAL\": \"N\", \"AREALAND\": 18.295000, \"AREAWATER\": 0.855000, \"POP_CL\": 6, \"POP2000\": 13995, \"WHITE\": 13496, \"BLACK\": 50, \"AMERI_ES\": 34, \"ASIAN\": 63, \"HAWN_PI\": 6, \"OTHER\": 148, \"MULT_RACE\": 198, \"HISPANIC\": 679, \"MALES\": 6532, \"FEMALES\": 7463, \"AGE_UNDER5\": 832, \"AGE_5_17\": 2216, \"AGE_18_21\": 675, \"AGE_22_29\": 1359, \"AGE_30_39\": 1696, \"AGE_40_49\": 1819, \"AGE_50_64\": 2299, \"AGE_65_UP\": 3099, \"MED_AGE\": 41.200000, \"MED_AGE_M\": 36.800000, \"MED_AGE_F\": 45.100000, \"HOUSEHOLDS\": 6059, \"AVE_HH_SZ\": 2.220000, \"HSEHLD_1_M\": 698, \"HSEHLD_1_F\": 1433, \"MARHH_CHD\": 1133, \"MARHH_NO_C\": 1792, \"MHH_CHILD\": 87, \"FHH_CHILD\": 366, \"FAMILIES\": 3764, \"AVE_FAM_SZ\": 2.850000, \"HSE_UNITS\": 6679, \"VACANT\": 620, \"OWNER_OCC\": 3596, \"RENTER_OCC\": 2463 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.844995999194467, 34.177507997665899 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Daphne\", \"CLASS\": \"city\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"19648\", \"CAPITAL\": \"N\", \"AREALAND\": 13.474000, \"AREAWATER\": 0.630000, \"POP_CL\": 6, \"POP2000\": 16581, \"WHITE\": 14148, \"BLACK\": 2048, \"AMERI_ES\": 50, \"ASIAN\": 101, \"HAWN_PI\": 1, \"OTHER\": 72, \"MULT_RACE\": 161, \"HISPANIC\": 254, \"MALES\": 8073, \"FEMALES\": 8508, \"AGE_UNDER5\": 1070, \"AGE_5_17\": 3169, \"AGE_18_21\": 664, \"AGE_22_29\": 1556, \"AGE_30_39\": 2599, \"AGE_40_49\": 2936, \"AGE_50_64\": 2880, \"AGE_65_UP\": 1707, \"MED_AGE\": 37.500000, \"MED_AGE_M\": 37.000000, \"MED_AGE_F\": 37.900000, \"HOUSEHOLDS\": 6563, \"AVE_HH_SZ\": 2.500000, \"HSEHLD_1_M\": 763, \"HSEHLD_1_F\": 849, \"MARHH_CHD\": 1805, \"MARHH_NO_C\": 2039, \"MHH_CHILD\": 88, \"FHH_CHILD\": 351, \"FAMILIES\": 4670, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 7222, \"VACANT\": 659, \"OWNER_OCC\": 4833, \"RENTER_OCC\": 1730 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.886439999372442, 30.631288999448596 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Decatur\", \"CLASS\": \"city\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"20104\", \"CAPITAL\": \"N\", \"AREALAND\": 53.408000, \"AREAWATER\": 6.487000, \"POP_CL\": 7, \"POP2000\": 53929, \"WHITE\": 40714, \"BLACK\": 10548, \"AMERI_ES\": 312, \"ASIAN\": 376, \"HAWN_PI\": 68, \"OTHER\": 1195, \"MULT_RACE\": 716, \"HISPANIC\": 3040, \"MALES\": 25894, \"FEMALES\": 28035, \"AGE_UNDER5\": 3649, \"AGE_5_17\": 10044, \"AGE_18_21\": 2712, \"AGE_22_29\": 5705, \"AGE_30_39\": 8090, \"AGE_40_49\": 8139, \"AGE_50_64\": 8530, \"AGE_65_UP\": 7060, \"MED_AGE\": 36.300000, \"MED_AGE_M\": 35.000000, \"MED_AGE_F\": 37.700000, \"HOUSEHOLDS\": 21824, \"AVE_HH_SZ\": 2.430000, \"HSEHLD_1_M\": 2532, \"HSEHLD_1_F\": 3770, \"MARHH_CHD\": 4742, \"MARHH_NO_C\": 6325, \"MHH_CHILD\": 386, \"FHH_CHILD\": 1806, \"FAMILIES\": 14752, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 23950, \"VACANT\": 2126, \"OWNER_OCC\": 13923, \"RENTER_OCC\": 7901 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.983391999301702, 34.58099199788775 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Dothan\", \"CLASS\": \"city\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"21184\", \"CAPITAL\": \"N\", \"AREALAND\": 86.616000, \"AREAWATER\": 0.200000, \"POP_CL\": 7, \"POP2000\": 57737, \"WHITE\": 38873, \"BLACK\": 17385, \"AMERI_ES\": 160, \"ASIAN\": 491, \"HAWN_PI\": 11, \"OTHER\": 265, \"MULT_RACE\": 552, \"HISPANIC\": 764, \"MALES\": 27093, \"FEMALES\": 30644, \"AGE_UNDER5\": 3960, \"AGE_5_17\": 10716, \"AGE_18_21\": 2787, \"AGE_22_29\": 5839, \"AGE_30_39\": 8060, \"AGE_40_49\": 8798, \"AGE_50_64\": 9161, \"AGE_65_UP\": 8416, \"MED_AGE\": 37.200000, \"MED_AGE_M\": 35.500000, \"MED_AGE_F\": 38.700000, \"HOUSEHOLDS\": 23685, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 2626, \"HSEHLD_1_F\": 4101, \"MARHH_CHD\": 4787, \"MARHH_NO_C\": 6802, \"MHH_CHILD\": 374, \"FHH_CHILD\": 2311, \"FAMILIES\": 16028, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 25920, \"VACANT\": 2235, \"OWNER_OCC\": 14889, \"RENTER_OCC\": 8796 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.40725799880984, 31.227224993905551 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Enterprise\", \"CLASS\": \"city\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"24184\", \"CAPITAL\": \"N\", \"AREALAND\": 30.954000, \"AREAWATER\": 0.067000, \"POP_CL\": 6, \"POP2000\": 21178, \"WHITE\": 15167, \"BLACK\": 4861, \"AMERI_ES\": 101, \"ASIAN\": 339, \"HAWN_PI\": 33, \"OTHER\": 270, \"MULT_RACE\": 407, \"HISPANIC\": 821, \"MALES\": 10108, \"FEMALES\": 11070, \"AGE_UNDER5\": 1368, \"AGE_5_17\": 4004, \"AGE_18_21\": 1032, \"AGE_22_29\": 2319, \"AGE_30_39\": 2771, \"AGE_40_49\": 3219, \"AGE_50_64\": 3489, \"AGE_65_UP\": 2976, \"MED_AGE\": 36.900000, \"MED_AGE_M\": 34.900000, \"MED_AGE_F\": 39.000000, \"HOUSEHOLDS\": 8533, \"AVE_HH_SZ\": 2.450000, \"HSEHLD_1_M\": 894, \"HSEHLD_1_F\": 1298, \"MARHH_CHD\": 1945, \"MARHH_NO_C\": 2628, \"MHH_CHILD\": 140, \"FHH_CHILD\": 739, \"FAMILIES\": 5974, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 9641, \"VACANT\": 1108, \"OWNER_OCC\": 5448, \"RENTER_OCC\": 3085 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.844483998151347, 31.327475995640324 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Eufaula\", \"CLASS\": \"city\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"24568\", \"CAPITAL\": \"N\", \"AREALAND\": 59.418000, \"AREAWATER\": 14.065000, \"POP_CL\": 6, \"POP2000\": 13908, \"WHITE\": 7967, \"BLACK\": 5621, \"AMERI_ES\": 40, \"ASIAN\": 65, \"HAWN_PI\": 5, \"OTHER\": 120, \"MULT_RACE\": 90, \"HISPANIC\": 213, \"MALES\": 6433, \"FEMALES\": 7475, \"AGE_UNDER5\": 964, \"AGE_5_17\": 3018, \"AGE_18_21\": 641, \"AGE_22_29\": 1235, \"AGE_30_39\": 1961, \"AGE_40_49\": 1947, \"AGE_50_64\": 2206, \"AGE_65_UP\": 1936, \"MED_AGE\": 36.000000, \"MED_AGE_M\": 33.300000, \"MED_AGE_F\": 38.000000, \"HOUSEHOLDS\": 5447, \"AVE_HH_SZ\": 2.510000, \"HSEHLD_1_M\": 543, \"HSEHLD_1_F\": 901, \"MARHH_CHD\": 1134, \"MARHH_NO_C\": 1448, \"MHH_CHILD\": 99, \"FHH_CHILD\": 672, \"FAMILIES\": 3880, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 6110, \"VACANT\": 663, \"OWNER_OCC\": 3542, \"RENTER_OCC\": 1905 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.153774000839832, 31.889369992174394 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fairfield\", \"CLASS\": \"city\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"25120\", \"CAPITAL\": \"N\", \"AREALAND\": 3.534000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12381, \"WHITE\": 1102, \"BLACK\": 11171, \"AMERI_ES\": 7, \"ASIAN\": 19, \"HAWN_PI\": 2, \"OTHER\": 21, \"MULT_RACE\": 59, \"HISPANIC\": 73, \"MALES\": 5472, \"FEMALES\": 6909, \"AGE_UNDER5\": 694, \"AGE_5_17\": 2617, \"AGE_18_21\": 957, \"AGE_22_29\": 1215, \"AGE_30_39\": 1423, \"AGE_40_49\": 2078, \"AGE_50_64\": 1691, \"AGE_65_UP\": 1706, \"MED_AGE\": 35.500000, \"MED_AGE_M\": 30.900000, \"MED_AGE_F\": 38.300000, \"HOUSEHOLDS\": 4600, \"AVE_HH_SZ\": 2.550000, \"HSEHLD_1_M\": 484, \"HSEHLD_1_F\": 861, \"MARHH_CHD\": 801, \"MARHH_NO_C\": 835, \"MHH_CHILD\": 71, \"FHH_CHILD\": 693, \"FAMILIES\": 3142, \"AVE_FAM_SZ\": 3.170000, \"HSE_UNITS\": 4960, \"VACANT\": 360, \"OWNER_OCC\": 2864, \"RENTER_OCC\": 1736 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.916841999031917, 33.476907997952615 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fairhope\", \"CLASS\": \"city\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"25240\", \"CAPITAL\": \"N\", \"AREALAND\": 10.995000, \"AREAWATER\": 0.015000, \"POP_CL\": 6, \"POP2000\": 12480, \"WHITE\": 11259, \"BLACK\": 972, \"AMERI_ES\": 25, \"ASIAN\": 77, \"HAWN_PI\": 5, \"OTHER\": 26, \"MULT_RACE\": 116, \"HISPANIC\": 130, \"MALES\": 5670, \"FEMALES\": 6810, \"AGE_UNDER5\": 656, \"AGE_5_17\": 2040, \"AGE_18_21\": 405, \"AGE_22_29\": 805, \"AGE_30_39\": 1504, \"AGE_40_49\": 1886, \"AGE_50_64\": 2230, \"AGE_65_UP\": 2954, \"MED_AGE\": 44.500000, \"MED_AGE_M\": 41.800000, \"MED_AGE_F\": 46.500000, \"HOUSEHOLDS\": 5345, \"AVE_HH_SZ\": 2.270000, \"HSEHLD_1_M\": 500, \"HSEHLD_1_F\": 1117, \"MARHH_CHD\": 1104, \"MARHH_NO_C\": 1825, \"MHH_CHILD\": 56, \"FHH_CHILD\": 285, \"FAMILIES\": 3575, \"AVE_FAM_SZ\": 2.830000, \"HSE_UNITS\": 6000, \"VACANT\": 655, \"OWNER_OCC\": 4084, \"RENTER_OCC\": 1261 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.895686999375158, 30.526393999460542 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Florence\", \"CLASS\": \"city\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"26896\", \"CAPITAL\": \"N\", \"AREALAND\": 24.931000, \"AREAWATER\": 0.095000, \"POP_CL\": 6, \"POP2000\": 36264, \"WHITE\": 28428, \"BLACK\": 6963, \"AMERI_ES\": 86, \"ASIAN\": 226, \"HAWN_PI\": 12, \"OTHER\": 197, \"MULT_RACE\": 352, \"HISPANIC\": 487, \"MALES\": 16557, \"FEMALES\": 19707, \"AGE_UNDER5\": 2090, \"AGE_5_17\": 5678, \"AGE_18_21\": 3063, \"AGE_22_29\": 4294, \"AGE_30_39\": 4458, \"AGE_40_49\": 4891, \"AGE_50_64\": 5446, \"AGE_65_UP\": 6344, \"MED_AGE\": 36.900000, \"MED_AGE_M\": 34.200000, \"MED_AGE_F\": 39.300000, \"HOUSEHOLDS\": 15820, \"AVE_HH_SZ\": 2.200000, \"HSEHLD_1_M\": 1961, \"HSEHLD_1_F\": 3385, \"MARHH_CHD\": 2590, \"MARHH_NO_C\": 4315, \"MHH_CHILD\": 174, \"FHH_CHILD\": 1341, \"FAMILIES\": 9560, \"AVE_FAM_SZ\": 2.820000, \"HSE_UNITS\": 17707, \"VACANT\": 1887, \"OWNER_OCC\": 9253, \"RENTER_OCC\": 6567 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.662859999507873, 34.820286998941341 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Forestdale\", \"CLASS\": \"CDP\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"27088\", \"CAPITAL\": \"N\", \"AREALAND\": 6.900000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10509, \"WHITE\": 5556, \"BLACK\": 4826, \"AMERI_ES\": 17, \"ASIAN\": 37, \"HAWN_PI\": 0, \"OTHER\": 18, \"MULT_RACE\": 55, \"HISPANIC\": 48, \"MALES\": 4933, \"FEMALES\": 5576, \"AGE_UNDER5\": 580, \"AGE_5_17\": 1813, \"AGE_18_21\": 450, \"AGE_22_29\": 904, \"AGE_30_39\": 1342, \"AGE_40_49\": 1668, \"AGE_50_64\": 1927, \"AGE_65_UP\": 1825, \"MED_AGE\": 40.900000, \"MED_AGE_M\": 39.400000, \"MED_AGE_F\": 42.300000, \"HOUSEHOLDS\": 4161, \"AVE_HH_SZ\": 2.530000, \"HSEHLD_1_M\": 350, \"HSEHLD_1_F\": 612, \"MARHH_CHD\": 970, \"MARHH_NO_C\": 1463, \"MHH_CHILD\": 40, \"FHH_CHILD\": 264, \"FAMILIES\": 3100, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 4357, \"VACANT\": 196, \"OWNER_OCC\": 3578, \"RENTER_OCC\": 583 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.902936999050283, 33.574304997906616 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fort Payne\", \"CLASS\": \"city\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"27616\", \"CAPITAL\": \"N\", \"AREALAND\": 55.876000, \"AREAWATER\": 0.082000, \"POP_CL\": 6, \"POP2000\": 12938, \"WHITE\": 10767, \"BLACK\": 586, \"AMERI_ES\": 103, \"ASIAN\": 71, \"HAWN_PI\": 21, \"OTHER\": 1088, \"MULT_RACE\": 302, \"HISPANIC\": 1574, \"MALES\": 6211, \"FEMALES\": 6727, \"AGE_UNDER5\": 846, \"AGE_5_17\": 2177, \"AGE_18_21\": 755, \"AGE_22_29\": 1517, \"AGE_30_39\": 1839, \"AGE_40_49\": 1869, \"AGE_50_64\": 1923, \"AGE_65_UP\": 2012, \"MED_AGE\": 36.300000, \"MED_AGE_M\": 33.400000, \"MED_AGE_F\": 39.400000, \"HOUSEHOLDS\": 5046, \"AVE_HH_SZ\": 2.490000, \"HSEHLD_1_M\": 487, \"HSEHLD_1_F\": 869, \"MARHH_CHD\": 1142, \"MARHH_NO_C\": 1579, \"MHH_CHILD\": 108, \"FHH_CHILD\": 324, \"FAMILIES\": 3508, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 5585, \"VACANT\": 539, \"OWNER_OCC\": 3483, \"RENTER_OCC\": 1563 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.706648001331203, 34.453828993552229 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Gadsden\", \"CLASS\": \"city\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"28696\", \"CAPITAL\": \"N\", \"AREALAND\": 35.970000, \"AREAWATER\": 1.210000, \"POP_CL\": 6, \"POP2000\": 38978, \"WHITE\": 24434, \"BLACK\": 13252, \"AMERI_ES\": 118, \"ASIAN\": 208, \"HAWN_PI\": 32, \"OTHER\": 477, \"MULT_RACE\": 457, \"HISPANIC\": 1039, \"MALES\": 17934, \"FEMALES\": 21044, \"AGE_UNDER5\": 2566, \"AGE_5_17\": 6418, \"AGE_18_21\": 2170, \"AGE_22_29\": 4110, \"AGE_30_39\": 4685, \"AGE_40_49\": 5193, \"AGE_50_64\": 6014, \"AGE_65_UP\": 7822, \"MED_AGE\": 39.000000, \"MED_AGE_M\": 35.500000, \"MED_AGE_F\": 42.000000, \"HOUSEHOLDS\": 16456, \"AVE_HH_SZ\": 2.280000, \"HSEHLD_1_M\": 1959, \"HSEHLD_1_F\": 3625, \"MARHH_CHD\": 2234, \"MARHH_NO_C\": 4430, \"MHH_CHILD\": 226, \"FHH_CHILD\": 1635, \"FAMILIES\": 10253, \"AVE_FAM_SZ\": 2.910000, \"HSE_UNITS\": 18797, \"VACANT\": 2341, \"OWNER_OCC\": 10464, \"RENTER_OCC\": 5992 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.010355999854852, 34.01014699514775 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Gardendale\", \"CLASS\": \"city\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"29056\", \"CAPITAL\": \"N\", \"AREALAND\": 17.945000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11626, \"WHITE\": 11299, \"BLACK\": 172, \"AMERI_ES\": 20, \"ASIAN\": 62, \"HAWN_PI\": 2, \"OTHER\": 16, \"MULT_RACE\": 55, \"HISPANIC\": 75, \"MALES\": 5437, \"FEMALES\": 6189, \"AGE_UNDER5\": 637, \"AGE_5_17\": 1867, \"AGE_18_21\": 515, \"AGE_22_29\": 1016, \"AGE_30_39\": 1482, \"AGE_40_49\": 1862, \"AGE_50_64\": 2090, \"AGE_65_UP\": 2157, \"MED_AGE\": 41.500000, \"MED_AGE_M\": 39.800000, \"MED_AGE_F\": 43.100000, \"HOUSEHOLDS\": 4733, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 375, \"HSEHLD_1_F\": 787, \"MARHH_CHD\": 1092, \"MARHH_NO_C\": 1809, \"MHH_CHILD\": 59, \"FHH_CHILD\": 212, \"FAMILIES\": 3472, \"AVE_FAM_SZ\": 2.880000, \"HSE_UNITS\": 4959, \"VACANT\": 226, \"OWNER_OCC\": 3932, \"RENTER_OCC\": 801 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.811647999051146, 33.660491997696781 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hartselle\", \"CLASS\": \"city\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"33448\", \"CAPITAL\": \"N\", \"AREALAND\": 14.856000, \"AREAWATER\": 0.007000, \"POP_CL\": 6, \"POP2000\": 12019, \"WHITE\": 11087, \"BLACK\": 620, \"AMERI_ES\": 76, \"ASIAN\": 37, \"HAWN_PI\": 2, \"OTHER\": 40, \"MULT_RACE\": 157, \"HISPANIC\": 155, \"MALES\": 5768, \"FEMALES\": 6251, \"AGE_UNDER5\": 720, \"AGE_5_17\": 2350, \"AGE_18_21\": 561, \"AGE_22_29\": 1091, \"AGE_30_39\": 1817, \"AGE_40_49\": 1840, \"AGE_50_64\": 1959, \"AGE_65_UP\": 1681, \"MED_AGE\": 37.400000, \"MED_AGE_M\": 36.000000, \"MED_AGE_F\": 38.700000, \"HOUSEHOLDS\": 4816, \"AVE_HH_SZ\": 2.490000, \"HSEHLD_1_M\": 410, \"HSEHLD_1_F\": 767, \"MARHH_CHD\": 1300, \"MARHH_NO_C\": 1546, \"MHH_CHILD\": 87, \"FHH_CHILD\": 318, \"FAMILIES\": 3534, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 5170, \"VACANT\": 354, \"OWNER_OCC\": 3550, \"RENTER_OCC\": 1266 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.940384999265817, 34.440382997823079 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Helena\", \"CLASS\": \"city\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"34024\", \"CAPITAL\": \"N\", \"AREALAND\": 17.075000, \"AREAWATER\": 0.020000, \"POP_CL\": 6, \"POP2000\": 10296, \"WHITE\": 9601, \"BLACK\": 515, \"AMERI_ES\": 21, \"ASIAN\": 67, \"HAWN_PI\": 2, \"OTHER\": 36, \"MULT_RACE\": 54, \"HISPANIC\": 103, \"MALES\": 4902, \"FEMALES\": 5394, \"AGE_UNDER5\": 1043, \"AGE_5_17\": 1913, \"AGE_18_21\": 305, \"AGE_22_29\": 1499, \"AGE_30_39\": 2319, \"AGE_40_49\": 1591, \"AGE_50_64\": 1096, \"AGE_65_UP\": 530, \"MED_AGE\": 31.400000, \"MED_AGE_M\": 31.300000, \"MED_AGE_F\": 31.500000, \"HOUSEHOLDS\": 3828, \"AVE_HH_SZ\": 2.690000, \"HSEHLD_1_M\": 243, \"HSEHLD_1_F\": 433, \"MARHH_CHD\": 1463, \"MARHH_NO_C\": 1224, \"MHH_CHILD\": 40, \"FHH_CHILD\": 159, \"FAMILIES\": 3045, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 3983, \"VACANT\": 155, \"OWNER_OCC\": 3617, \"RENTER_OCC\": 211 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.856059998964838, 33.279714997866741 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Homewood\", \"CLASS\": \"city\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"35800\", \"CAPITAL\": \"N\", \"AREALAND\": 8.307000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 25043, \"WHITE\": 19972, \"BLACK\": 3831, \"AMERI_ES\": 49, \"ASIAN\": 643, \"HAWN_PI\": 7, \"OTHER\": 250, \"MULT_RACE\": 291, \"HISPANIC\": 702, \"MALES\": 11576, \"FEMALES\": 13467, \"AGE_UNDER5\": 1571, \"AGE_5_17\": 3517, \"AGE_18_21\": 2734, \"AGE_22_29\": 4448, \"AGE_30_39\": 4117, \"AGE_40_49\": 3324, \"AGE_50_64\": 2682, \"AGE_65_UP\": 2650, \"MED_AGE\": 30.500000, \"MED_AGE_M\": 29.700000, \"MED_AGE_F\": 31.300000, \"HOUSEHOLDS\": 10688, \"AVE_HH_SZ\": 2.160000, \"HSEHLD_1_M\": 1501, \"HSEHLD_1_F\": 2367, \"MARHH_CHD\": 2093, \"MARHH_NO_C\": 2288, \"MHH_CHILD\": 132, \"FHH_CHILD\": 679, \"FAMILIES\": 5880, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 11494, \"VACANT\": 806, \"OWNER_OCC\": 5835, \"RENTER_OCC\": 4853 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.808145998999038, 33.468305997728272 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hoover\", \"CLASS\": \"city\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"35896\", \"CAPITAL\": \"N\", \"AREALAND\": 43.134000, \"AREAWATER\": 0.513000, \"POP_CL\": 7, \"POP2000\": 62742, \"WHITE\": 54997, \"BLACK\": 4248, \"AMERI_ES\": 99, \"ASIAN\": 1812, \"HAWN_PI\": 21, \"OTHER\": 881, \"MULT_RACE\": 684, \"HISPANIC\": 2380, \"MALES\": 30577, \"FEMALES\": 32165, \"AGE_UNDER5\": 4130, \"AGE_5_17\": 11412, \"AGE_18_21\": 2393, \"AGE_22_29\": 7563, \"AGE_30_39\": 9983, \"AGE_40_49\": 10653, \"AGE_50_64\": 9792, \"AGE_65_UP\": 6816, \"MED_AGE\": 36.200000, \"MED_AGE_M\": 34.900000, \"MED_AGE_F\": 37.400000, \"HOUSEHOLDS\": 25191, \"AVE_HH_SZ\": 2.470000, \"HSEHLD_1_M\": 2652, \"HSEHLD_1_F\": 3873, \"MARHH_CHD\": 7092, \"MARHH_NO_C\": 7868, \"MHH_CHILD\": 260, \"FHH_CHILD\": 1059, \"FAMILIES\": 17407, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 27150, \"VACANT\": 1959, \"OWNER_OCC\": 16621, \"RENTER_OCC\": 8570 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.804937998976598, 33.386434997737958 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hueytown\", \"CLASS\": \"city\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"36448\", \"CAPITAL\": \"N\", \"AREALAND\": 11.607000, \"AREAWATER\": 0.018000, \"POP_CL\": 6, \"POP2000\": 15364, \"WHITE\": 12877, \"BLACK\": 2380, \"AMERI_ES\": 22, \"ASIAN\": 20, \"HAWN_PI\": 0, \"OTHER\": 12, \"MULT_RACE\": 53, \"HISPANIC\": 72, \"MALES\": 7287, \"FEMALES\": 8077, \"AGE_UNDER5\": 843, \"AGE_5_17\": 2563, \"AGE_18_21\": 769, \"AGE_22_29\": 1594, \"AGE_30_39\": 2050, \"AGE_40_49\": 2294, \"AGE_50_64\": 2606, \"AGE_65_UP\": 2645, \"MED_AGE\": 39.400000, \"MED_AGE_M\": 37.100000, \"MED_AGE_F\": 41.600000, \"HOUSEHOLDS\": 6155, \"AVE_HH_SZ\": 2.470000, \"HSEHLD_1_M\": 573, \"HSEHLD_1_F\": 895, \"MARHH_CHD\": 1391, \"MARHH_NO_C\": 2166, \"MHH_CHILD\": 83, \"FHH_CHILD\": 344, \"FAMILIES\": 4518, \"AVE_FAM_SZ\": 2.920000, \"HSE_UNITS\": 6519, \"VACANT\": 364, \"OWNER_OCC\": 5171, \"RENTER_OCC\": 984 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.997578999053076, 33.437708998114985 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Huntsville\", \"CLASS\": \"city\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"37000\", \"CAPITAL\": \"N\", \"AREALAND\": 174.045000, \"AREAWATER\": 0.384000, \"POP_CL\": 8, \"POP2000\": 158216, \"WHITE\": 101998, \"BLACK\": 47792, \"AMERI_ES\": 857, \"ASIAN\": 3519, \"HAWN_PI\": 88, \"OTHER\": 1047, \"MULT_RACE\": 2915, \"HISPANIC\": 3225, \"MALES\": 76174, \"FEMALES\": 82042, \"AGE_UNDER5\": 9732, \"AGE_5_17\": 26883, \"AGE_18_21\": 10199, \"AGE_22_29\": 17483, \"AGE_30_39\": 23137, \"AGE_40_49\": 23438, \"AGE_50_64\": 26182, \"AGE_65_UP\": 21162, \"MED_AGE\": 36.700000, \"MED_AGE_M\": 35.200000, \"MED_AGE_F\": 38.100000, \"HOUSEHOLDS\": 66742, \"AVE_HH_SZ\": 2.290000, \"HSEHLD_1_M\": 9558, \"HSEHLD_1_F\": 12032, \"MARHH_CHD\": 11889, \"MARHH_NO_C\": 18461, \"MHH_CHILD\": 1031, \"FHH_CHILD\": 5520, \"FAMILIES\": 41742, \"AVE_FAM_SZ\": 2.910000, \"HSE_UNITS\": 73670, \"VACANT\": 6928, \"OWNER_OCC\": 41121, \"RENTER_OCC\": 25621 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.596295999443726, 34.712340996915025 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Jasper\", \"CLASS\": \"city\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"38416\", \"CAPITAL\": \"N\", \"AREALAND\": 26.870000, \"AREAWATER\": 0.012000, \"POP_CL\": 6, \"POP2000\": 14052, \"WHITE\": 11825, \"BLACK\": 1965, \"AMERI_ES\": 29, \"ASIAN\": 74, \"HAWN_PI\": 3, \"OTHER\": 75, \"MULT_RACE\": 81, \"HISPANIC\": 189, \"MALES\": 6520, \"FEMALES\": 7532, \"AGE_UNDER5\": 820, \"AGE_5_17\": 2259, \"AGE_18_21\": 754, \"AGE_22_29\": 1267, \"AGE_30_39\": 1739, \"AGE_40_49\": 2094, \"AGE_50_64\": 2354, \"AGE_65_UP\": 2765, \"MED_AGE\": 40.900000, \"MED_AGE_M\": 37.700000, \"MED_AGE_F\": 43.700000, \"HOUSEHOLDS\": 5728, \"AVE_HH_SZ\": 2.330000, \"HSEHLD_1_M\": 589, \"HSEHLD_1_F\": 1190, \"MARHH_CHD\": 1073, \"MARHH_NO_C\": 1747, \"MHH_CHILD\": 78, \"FHH_CHILD\": 413, \"FAMILIES\": 3807, \"AVE_FAM_SZ\": 2.910000, \"HSE_UNITS\": 6473, \"VACANT\": 745, \"OWNER_OCC\": 4001, \"RENTER_OCC\": 1727 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.277173999241882, 33.842346998527276 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Leeds\", \"CLASS\": \"city\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"41968\", \"CAPITAL\": \"N\", \"AREALAND\": 22.346000, \"AREAWATER\": 0.150000, \"POP_CL\": 6, \"POP2000\": 10455, \"WHITE\": 8571, \"BLACK\": 1663, \"AMERI_ES\": 36, \"ASIAN\": 50, \"HAWN_PI\": 8, \"OTHER\": 42, \"MULT_RACE\": 85, \"HISPANIC\": 140, \"MALES\": 5008, \"FEMALES\": 5447, \"AGE_UNDER5\": 670, \"AGE_5_17\": 1893, \"AGE_18_21\": 480, \"AGE_22_29\": 998, \"AGE_30_39\": 1611, \"AGE_40_49\": 1547, \"AGE_50_64\": 1851, \"AGE_65_UP\": 1405, \"MED_AGE\": 37.600000, \"MED_AGE_M\": 36.100000, \"MED_AGE_F\": 38.900000, \"HOUSEHOLDS\": 4301, \"AVE_HH_SZ\": 2.430000, \"HSEHLD_1_M\": 502, \"HSEHLD_1_F\": 658, \"MARHH_CHD\": 901, \"MARHH_NO_C\": 1320, \"MHH_CHILD\": 79, \"FHH_CHILD\": 342, \"FAMILIES\": 2989, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 4585, \"VACANT\": 284, \"OWNER_OCC\": 3026, \"RENTER_OCC\": 1275 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.557387999011326, 33.545591997108978 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Madison\", \"CLASS\": \"city\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"45784\", \"CAPITAL\": \"N\", \"AREALAND\": 23.158000, \"AREAWATER\": 0.072000, \"POP_CL\": 6, \"POP2000\": 29329, \"WHITE\": 23506, \"BLACK\": 3812, \"AMERI_ES\": 185, \"ASIAN\": 1029, \"HAWN_PI\": 18, \"OTHER\": 197, \"MULT_RACE\": 582, \"HISPANIC\": 675, \"MALES\": 14477, \"FEMALES\": 14852, \"AGE_UNDER5\": 2276, \"AGE_5_17\": 6608, \"AGE_18_21\": 1132, \"AGE_22_29\": 2676, \"AGE_30_39\": 5561, \"AGE_40_49\": 5528, \"AGE_50_64\": 3930, \"AGE_65_UP\": 1618, \"MED_AGE\": 34.500000, \"MED_AGE_M\": 34.200000, \"MED_AGE_F\": 34.700000, \"HOUSEHOLDS\": 11143, \"AVE_HH_SZ\": 2.610000, \"HSEHLD_1_M\": 1364, \"HSEHLD_1_F\": 1302, \"MARHH_CHD\": 3763, \"MARHH_NO_C\": 2931, \"MHH_CHILD\": 181, \"FHH_CHILD\": 793, \"FAMILIES\": 8066, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 12121, \"VACANT\": 978, \"OWNER_OCC\": 7829, \"RENTER_OCC\": 3314 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.739643999372717, 34.715064997299343 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Millbrook\", \"CLASS\": \"city\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"48712\", \"CAPITAL\": \"N\", \"AREALAND\": 9.517000, \"AREAWATER\": 0.174000, \"POP_CL\": 6, \"POP2000\": 10386, \"WHITE\": 8294, \"BLACK\": 1777, \"AMERI_ES\": 57, \"ASIAN\": 59, \"HAWN_PI\": 2, \"OTHER\": 58, \"MULT_RACE\": 139, \"HISPANIC\": 150, \"MALES\": 5060, \"FEMALES\": 5326, \"AGE_UNDER5\": 891, \"AGE_5_17\": 2398, \"AGE_18_21\": 450, \"AGE_22_29\": 1260, \"AGE_30_39\": 1817, \"AGE_40_49\": 1576, \"AGE_50_64\": 1268, \"AGE_65_UP\": 726, \"MED_AGE\": 31.000000, \"MED_AGE_M\": 30.500000, \"MED_AGE_F\": 31.700000, \"HOUSEHOLDS\": 3660, \"AVE_HH_SZ\": 2.840000, \"HSEHLD_1_M\": 257, \"HSEHLD_1_F\": 356, \"MARHH_CHD\": 1307, \"MARHH_NO_C\": 1055, \"MHH_CHILD\": 66, \"FHH_CHILD\": 299, \"FAMILIES\": 2931, \"AVE_FAM_SZ\": 3.210000, \"HSE_UNITS\": 3897, \"VACANT\": 237, \"OWNER_OCC\": 2856, \"RENTER_OCC\": 804 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.368544998615917, 32.497625996883919 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mobile\", \"CLASS\": \"city\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"50000\", \"CAPITAL\": \"N\", \"AREALAND\": 117.902000, \"AREAWATER\": 41.532000, \"POP_CL\": 8, \"POP2000\": 198915, \"WHITE\": 100251, \"BLACK\": 92068, \"AMERI_ES\": 487, \"ASIAN\": 3022, \"HAWN_PI\": 52, \"OTHER\": 1046, \"MULT_RACE\": 1989, \"HISPANIC\": 2828, \"MALES\": 93015, \"FEMALES\": 105900, \"AGE_UNDER5\": 14480, \"AGE_5_17\": 38291, \"AGE_18_21\": 12279, \"AGE_22_29\": 23338, \"AGE_30_39\": 26859, \"AGE_40_49\": 28044, \"AGE_50_64\": 28351, \"AGE_65_UP\": 27273, \"MED_AGE\": 34.300000, \"MED_AGE_M\": 32.300000, \"MED_AGE_F\": 36.100000, \"HOUSEHOLDS\": 78480, \"AVE_HH_SZ\": 2.460000, \"HSEHLD_1_M\": 9937, \"HSEHLD_1_F\": 13781, \"MARHH_CHD\": 13758, \"MARHH_NO_C\": 18495, \"MHH_CHILD\": 1166, \"FHH_CHILD\": 9323, \"FAMILIES\": 50764, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 86187, \"VACANT\": 7707, \"OWNER_OCC\": 46529, \"RENTER_OCC\": 31951 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.103279999510036, 30.679522999572779 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Montgomery\", \"CLASS\": \"city\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"51000\", \"CAPITAL\": \"Y\", \"AREALAND\": 155.380000, \"AREAWATER\": 0.809000, \"POP_CL\": 8, \"POP2000\": 201568, \"WHITE\": 96085, \"BLACK\": 100048, \"AMERI_ES\": 500, \"ASIAN\": 2146, \"HAWN_PI\": 71, \"OTHER\": 748, \"MULT_RACE\": 1970, \"HISPANIC\": 2484, \"MALES\": 94573, \"FEMALES\": 106995, \"AGE_UNDER5\": 14259, \"AGE_5_17\": 38033, \"AGE_18_21\": 14618, \"AGE_22_29\": 25479, \"AGE_30_39\": 29360, \"AGE_40_49\": 28643, \"AGE_50_64\": 27376, \"AGE_65_UP\": 23800, \"MED_AGE\": 32.900000, \"MED_AGE_M\": 30.800000, \"MED_AGE_F\": 34.900000, \"HOUSEHOLDS\": 78384, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 9464, \"HSEHLD_1_F\": 14126, \"MARHH_CHD\": 14704, \"MARHH_NO_C\": 18520, \"MHH_CHILD\": 1302, \"FHH_CHILD\": 9161, \"FAMILIES\": 51084, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 86787, \"VACANT\": 8403, \"OWNER_OCC\": 48484, \"RENTER_OCC\": 29900 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.279117998562597, 32.361537996670933 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mountain Brook\", \"CLASS\": \"city\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"51696\", \"CAPITAL\": \"N\", \"AREALAND\": 12.235000, \"AREAWATER\": 0.002000, \"POP_CL\": 6, \"POP2000\": 20604, \"WHITE\": 20324, \"BLACK\": 63, \"AMERI_ES\": 9, \"ASIAN\": 134, \"HAWN_PI\": 4, \"OTHER\": 25, \"MULT_RACE\": 45, \"HISPANIC\": 119, \"MALES\": 9740, \"FEMALES\": 10864, \"AGE_UNDER5\": 1450, \"AGE_5_17\": 4391, \"AGE_18_21\": 426, \"AGE_22_29\": 1205, \"AGE_30_39\": 2615, \"AGE_40_49\": 3547, \"AGE_50_64\": 3582, \"AGE_65_UP\": 3388, \"MED_AGE\": 40.600000, \"MED_AGE_M\": 40.200000, \"MED_AGE_F\": 41.000000, \"HOUSEHOLDS\": 7998, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 527, \"HSEHLD_1_F\": 1292, \"MARHH_CHD\": 2626, \"MARHH_NO_C\": 2813, \"MHH_CHILD\": 52, \"FHH_CHILD\": 259, \"FAMILIES\": 5978, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 8268, \"VACANT\": 270, \"OWNER_OCC\": 6974, \"RENTER_OCC\": 1024 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.740464998991499, 33.486971997573555 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Muscle Shoals\", \"CLASS\": \"city\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"53016\", \"CAPITAL\": \"N\", \"AREALAND\": 12.171000, \"AREAWATER\": 0.002000, \"POP_CL\": 6, \"POP2000\": 11924, \"WHITE\": 10002, \"BLACK\": 1689, \"AMERI_ES\": 45, \"ASIAN\": 67, \"HAWN_PI\": 0, \"OTHER\": 37, \"MULT_RACE\": 84, \"HISPANIC\": 138, \"MALES\": 5613, \"FEMALES\": 6311, \"AGE_UNDER5\": 753, \"AGE_5_17\": 2203, \"AGE_18_21\": 627, \"AGE_22_29\": 1157, \"AGE_30_39\": 1772, \"AGE_40_49\": 1842, \"AGE_50_64\": 2010, \"AGE_65_UP\": 1560, \"MED_AGE\": 37.200000, \"MED_AGE_M\": 36.300000, \"MED_AGE_F\": 38.000000, \"HOUSEHOLDS\": 4710, \"AVE_HH_SZ\": 2.480000, \"HSEHLD_1_M\": 444, \"HSEHLD_1_F\": 675, \"MARHH_CHD\": 1255, \"MARHH_NO_C\": 1545, \"MHH_CHILD\": 59, \"FHH_CHILD\": 320, \"FAMILIES\": 3452, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 5010, \"VACANT\": 300, \"OWNER_OCC\": 3488, \"RENTER_OCC\": 1222 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.650277999497007, 34.750787998932701 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Northport\", \"CLASS\": \"city\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"55200\", \"CAPITAL\": \"N\", \"AREALAND\": 14.631000, \"AREAWATER\": 0.216000, \"POP_CL\": 6, \"POP2000\": 19435, \"WHITE\": 13820, \"BLACK\": 5058, \"AMERI_ES\": 37, \"ASIAN\": 155, \"HAWN_PI\": 30, \"OTHER\": 199, \"MULT_RACE\": 136, \"HISPANIC\": 374, \"MALES\": 8867, \"FEMALES\": 10568, \"AGE_UNDER5\": 1384, \"AGE_5_17\": 3451, \"AGE_18_21\": 1110, \"AGE_22_29\": 2455, \"AGE_30_39\": 2789, \"AGE_40_49\": 2711, \"AGE_50_64\": 2790, \"AGE_65_UP\": 2745, \"MED_AGE\": 34.800000, \"MED_AGE_M\": 33.100000, \"MED_AGE_F\": 36.100000, \"HOUSEHOLDS\": 7844, \"AVE_HH_SZ\": 2.410000, \"HSEHLD_1_M\": 804, \"HSEHLD_1_F\": 1439, \"MARHH_CHD\": 1666, \"MARHH_NO_C\": 2122, \"MHH_CHILD\": 118, \"FHH_CHILD\": 785, \"FAMILIES\": 5255, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 8509, \"VACANT\": 665, \"OWNER_OCC\": 4858, \"RENTER_OCC\": 2986 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.592351999335747, 33.253916999002954 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Opelika\", \"CLASS\": \"city\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"57048\", \"CAPITAL\": \"N\", \"AREALAND\": 52.772000, \"AREAWATER\": 0.663000, \"POP_CL\": 6, \"POP2000\": 23498, \"WHITE\": 12932, \"BLACK\": 10079, \"AMERI_ES\": 45, \"ASIAN\": 218, \"HAWN_PI\": 2, \"OTHER\": 63, \"MULT_RACE\": 159, \"HISPANIC\": 252, \"MALES\": 10973, \"FEMALES\": 12525, \"AGE_UNDER5\": 1770, \"AGE_5_17\": 4720, \"AGE_18_21\": 1199, \"AGE_22_29\": 2684, \"AGE_30_39\": 3440, \"AGE_40_49\": 3464, \"AGE_50_64\": 3446, \"AGE_65_UP\": 2775, \"MED_AGE\": 34.100000, \"MED_AGE_M\": 32.000000, \"MED_AGE_F\": 35.700000, \"HOUSEHOLDS\": 9200, \"AVE_HH_SZ\": 2.490000, \"HSEHLD_1_M\": 926, \"HSEHLD_1_F\": 1515, \"MARHH_CHD\": 1841, \"MARHH_NO_C\": 2320, \"MHH_CHILD\": 153, \"FHH_CHILD\": 1173, \"FAMILIES\": 6356, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 10281, \"VACANT\": 1081, \"OWNER_OCC\": 5925, \"RENTER_OCC\": 3275 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.389404000640155, 32.647182992959429 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Oxford\", \"CLASS\": \"city\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"57576\", \"CAPITAL\": \"N\", \"AREALAND\": 18.237000, \"AREAWATER\": 0.071000, \"POP_CL\": 6, \"POP2000\": 14592, \"WHITE\": 12762, \"BLACK\": 1442, \"AMERI_ES\": 55, \"ASIAN\": 91, \"HAWN_PI\": 4, \"OTHER\": 114, \"MULT_RACE\": 124, \"HISPANIC\": 281, \"MALES\": 6955, \"FEMALES\": 7637, \"AGE_UNDER5\": 913, \"AGE_5_17\": 2701, \"AGE_18_21\": 691, \"AGE_22_29\": 1379, \"AGE_30_39\": 2210, \"AGE_40_49\": 2377, \"AGE_50_64\": 2279, \"AGE_65_UP\": 2042, \"MED_AGE\": 37.500000, \"MED_AGE_M\": 35.700000, \"MED_AGE_F\": 39.000000, \"HOUSEHOLDS\": 5734, \"AVE_HH_SZ\": 2.510000, \"HSEHLD_1_M\": 514, \"HSEHLD_1_F\": 825, \"MARHH_CHD\": 1511, \"MARHH_NO_C\": 1904, \"MHH_CHILD\": 73, \"FHH_CHILD\": 371, \"FAMILIES\": 4234, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 6210, \"VACANT\": 476, \"OWNER_OCC\": 4298, \"RENTER_OCC\": 1436 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.838880999954242, 33.597104994610142 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ozark\", \"CLASS\": \"city\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"57648\", \"CAPITAL\": \"N\", \"AREALAND\": 34.244000, \"AREAWATER\": 0.244000, \"POP_CL\": 6, \"POP2000\": 15119, \"WHITE\": 10323, \"BLACK\": 4279, \"AMERI_ES\": 102, \"ASIAN\": 106, \"HAWN_PI\": 8, \"OTHER\": 69, \"MULT_RACE\": 232, \"HISPANIC\": 314, \"MALES\": 7068, \"FEMALES\": 8051, \"AGE_UNDER5\": 967, \"AGE_5_17\": 2800, \"AGE_18_21\": 780, \"AGE_22_29\": 1368, \"AGE_30_39\": 1908, \"AGE_40_49\": 2245, \"AGE_50_64\": 2645, \"AGE_65_UP\": 2406, \"MED_AGE\": 38.700000, \"MED_AGE_M\": 36.800000, \"MED_AGE_F\": 40.500000, \"HOUSEHOLDS\": 6126, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 721, \"HSEHLD_1_F\": 975, \"MARHH_CHD\": 1158, \"MARHH_NO_C\": 1834, \"MHH_CHILD\": 109, \"FHH_CHILD\": 658, \"FAMILIES\": 4232, \"AVE_FAM_SZ\": 2.920000, \"HSE_UNITS\": 6955, \"VACANT\": 829, \"OWNER_OCC\": 3983, \"RENTER_OCC\": 2143 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.642008998486531, 31.448168994812029 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pelham\", \"CLASS\": \"city\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"58848\", \"CAPITAL\": \"N\", \"AREALAND\": 37.997000, \"AREAWATER\": 0.340000, \"POP_CL\": 6, \"POP2000\": 14369, \"WHITE\": 12935, \"BLACK\": 571, \"AMERI_ES\": 51, \"ASIAN\": 241, \"HAWN_PI\": 0, \"OTHER\": 405, \"MULT_RACE\": 166, \"HISPANIC\": 923, \"MALES\": 6992, \"FEMALES\": 7377, \"AGE_UNDER5\": 1141, \"AGE_5_17\": 2541, \"AGE_18_21\": 572, \"AGE_22_29\": 1703, \"AGE_30_39\": 2661, \"AGE_40_49\": 2334, \"AGE_50_64\": 2185, \"AGE_65_UP\": 1232, \"MED_AGE\": 34.800000, \"MED_AGE_M\": 33.300000, \"MED_AGE_F\": 36.100000, \"HOUSEHOLDS\": 5637, \"AVE_HH_SZ\": 2.540000, \"HSEHLD_1_M\": 548, \"HSEHLD_1_F\": 878, \"MARHH_CHD\": 1663, \"MARHH_NO_C\": 1681, \"MHH_CHILD\": 61, \"FHH_CHILD\": 276, \"FAMILIES\": 4002, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 5894, \"VACANT\": 257, \"OWNER_OCC\": 4959, \"RENTER_OCC\": 678 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.784619998949566, 33.304580997710687 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Phenix City\", \"CLASS\": \"city\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"59472\", \"CAPITAL\": \"N\", \"AREALAND\": 24.598000, \"AREAWATER\": 0.151000, \"POP_CL\": 6, \"POP2000\": 28265, \"WHITE\": 14964, \"BLACK\": 12710, \"AMERI_ES\": 65, \"ASIAN\": 149, \"HAWN_PI\": 6, \"OTHER\": 157, \"MULT_RACE\": 214, \"HISPANIC\": 421, \"MALES\": 13082, \"FEMALES\": 15183, \"AGE_UNDER5\": 2001, \"AGE_5_17\": 5427, \"AGE_18_21\": 1541, \"AGE_22_29\": 3216, \"AGE_30_39\": 3990, \"AGE_40_49\": 3901, \"AGE_50_64\": 4166, \"AGE_65_UP\": 4023, \"MED_AGE\": 35.100000, \"MED_AGE_M\": 32.600000, \"MED_AGE_F\": 37.100000, \"HOUSEHOLDS\": 11517, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 1427, \"HSEHLD_1_F\": 2070, \"MARHH_CHD\": 1878, \"MARHH_NO_C\": 2660, \"MHH_CHILD\": 218, \"FHH_CHILD\": 1550, \"FAMILIES\": 7569, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 13250, \"VACANT\": 1733, \"OWNER_OCC\": 6067, \"RENTER_OCC\": 5450 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.020121002913939, 32.472821990917147 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Prattville\", \"CLASS\": \"city\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"62328\", \"CAPITAL\": \"N\", \"AREALAND\": 23.168000, \"AREAWATER\": 0.738000, \"POP_CL\": 6, \"POP2000\": 24303, \"WHITE\": 20193, \"BLACK\": 3505, \"AMERI_ES\": 103, \"ASIAN\": 156, \"HAWN_PI\": 12, \"OTHER\": 129, \"MULT_RACE\": 205, \"HISPANIC\": 416, \"MALES\": 11601, \"FEMALES\": 12702, \"AGE_UNDER5\": 1660, \"AGE_5_17\": 5261, \"AGE_18_21\": 1093, \"AGE_22_29\": 2298, \"AGE_30_39\": 3932, \"AGE_40_49\": 3735, \"AGE_50_64\": 3747, \"AGE_65_UP\": 2577, \"MED_AGE\": 35.500000, \"MED_AGE_M\": 34.400000, \"MED_AGE_F\": 36.400000, \"HOUSEHOLDS\": 8939, \"AVE_HH_SZ\": 2.700000, \"HSEHLD_1_M\": 693, \"HSEHLD_1_F\": 1083, \"MARHH_CHD\": 2639, \"MARHH_NO_C\": 2775, \"MHH_CHILD\": 161, \"FHH_CHILD\": 679, \"FAMILIES\": 6917, \"AVE_FAM_SZ\": 3.100000, \"HSE_UNITS\": 9562, \"VACANT\": 623, \"OWNER_OCC\": 6731, \"RENTER_OCC\": 2208 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.451304998607128, 32.459134997116301 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Prichard\", \"CLASS\": \"city\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"62496\", \"CAPITAL\": \"N\", \"AREALAND\": 25.393000, \"AREAWATER\": 0.083000, \"POP_CL\": 6, \"POP2000\": 28633, \"WHITE\": 4059, \"BLACK\": 24203, \"AMERI_ES\": 87, \"ASIAN\": 33, \"HAWN_PI\": 6, \"OTHER\": 20, \"MULT_RACE\": 225, \"HISPANIC\": 162, \"MALES\": 13082, \"FEMALES\": 15551, \"AGE_UNDER5\": 2244, \"AGE_5_17\": 6761, \"AGE_18_21\": 2065, \"AGE_22_29\": 2733, \"AGE_30_39\": 3296, \"AGE_40_49\": 4236, \"AGE_50_64\": 3999, \"AGE_65_UP\": 3299, \"MED_AGE\": 31.800000, \"MED_AGE_M\": 28.200000, \"MED_AGE_F\": 34.800000, \"HOUSEHOLDS\": 9841, \"AVE_HH_SZ\": 2.840000, \"HSEHLD_1_M\": 1010, \"HSEHLD_1_F\": 1290, \"MARHH_CHD\": 1364, \"MARHH_NO_C\": 1861, \"MHH_CHILD\": 193, \"FHH_CHILD\": 2020, \"FAMILIES\": 7269, \"AVE_FAM_SZ\": 3.350000, \"HSE_UNITS\": 11336, \"VACANT\": 1495, \"OWNER_OCC\": 5747, \"RENTER_OCC\": 4094 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.100383999510129, 30.748037999568155 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Saks\", \"CLASS\": \"CDP\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"67608\", \"CAPITAL\": \"N\", \"AREALAND\": 12.065000, \"AREAWATER\": 0.011000, \"POP_CL\": 6, \"POP2000\": 10698, \"WHITE\": 9037, \"BLACK\": 1375, \"AMERI_ES\": 42, \"ASIAN\": 75, \"HAWN_PI\": 8, \"OTHER\": 56, \"MULT_RACE\": 105, \"HISPANIC\": 177, \"MALES\": 5124, \"FEMALES\": 5574, \"AGE_UNDER5\": 649, \"AGE_5_17\": 1896, \"AGE_18_21\": 540, \"AGE_22_29\": 1061, \"AGE_30_39\": 1458, \"AGE_40_49\": 1694, \"AGE_50_64\": 1947, \"AGE_65_UP\": 1453, \"MED_AGE\": 38.400000, \"MED_AGE_M\": 36.700000, \"MED_AGE_F\": 39.700000, \"HOUSEHOLDS\": 4286, \"AVE_HH_SZ\": 2.500000, \"HSEHLD_1_M\": 385, \"HSEHLD_1_F\": 605, \"MARHH_CHD\": 986, \"MARHH_NO_C\": 1510, \"MHH_CHILD\": 81, \"FHH_CHILD\": 270, \"FAMILIES\": 3143, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 4680, \"VACANT\": 394, \"OWNER_OCC\": 3420, \"RENTER_OCC\": 866 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.844326000038848, 33.708201994581685 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Saraland\", \"CLASS\": \"city\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"68160\", \"CAPITAL\": \"N\", \"AREALAND\": 21.906000, \"AREAWATER\": 0.105000, \"POP_CL\": 6, \"POP2000\": 12288, \"WHITE\": 10875, \"BLACK\": 1102, \"AMERI_ES\": 69, \"ASIAN\": 56, \"HAWN_PI\": 1, \"OTHER\": 46, \"MULT_RACE\": 139, \"HISPANIC\": 144, \"MALES\": 5998, \"FEMALES\": 6290, \"AGE_UNDER5\": 771, \"AGE_5_17\": 2099, \"AGE_18_21\": 678, \"AGE_22_29\": 1274, \"AGE_30_39\": 1833, \"AGE_40_49\": 1834, \"AGE_50_64\": 2136, \"AGE_65_UP\": 1663, \"MED_AGE\": 37.300000, \"MED_AGE_M\": 36.100000, \"MED_AGE_F\": 38.500000, \"HOUSEHOLDS\": 4810, \"AVE_HH_SZ\": 2.550000, \"HSEHLD_1_M\": 433, \"HSEHLD_1_F\": 587, \"MARHH_CHD\": 1204, \"MARHH_NO_C\": 1728, \"MHH_CHILD\": 70, \"FHH_CHILD\": 255, \"FAMILIES\": 3604, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 5138, \"VACANT\": 328, \"OWNER_OCC\": 3621, \"RENTER_OCC\": 1189 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.091931999507295, 30.825185999560123 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Scottsboro\", \"CLASS\": \"city\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"68736\", \"CAPITAL\": \"N\", \"AREALAND\": 47.349000, \"AREAWATER\": 4.385000, \"POP_CL\": 6, \"POP2000\": 14762, \"WHITE\": 13449, \"BLACK\": 788, \"AMERI_ES\": 150, \"ASIAN\": 79, \"HAWN_PI\": 4, \"OTHER\": 83, \"MULT_RACE\": 209, \"HISPANIC\": 221, \"MALES\": 6936, \"FEMALES\": 7826, \"AGE_UNDER5\": 848, \"AGE_5_17\": 2521, \"AGE_18_21\": 647, \"AGE_22_29\": 1456, \"AGE_30_39\": 2005, \"AGE_40_49\": 2206, \"AGE_50_64\": 2754, \"AGE_65_UP\": 2325, \"MED_AGE\": 39.600000, \"MED_AGE_M\": 37.700000, \"MED_AGE_F\": 41.400000, \"HOUSEHOLDS\": 6224, \"AVE_HH_SZ\": 2.320000, \"HSEHLD_1_M\": 673, \"HSEHLD_1_F\": 1171, \"MARHH_CHD\": 1240, \"MARHH_NO_C\": 2028, \"MHH_CHILD\": 104, \"FHH_CHILD\": 445, \"FAMILIES\": 4204, \"AVE_FAM_SZ\": 2.850000, \"HSE_UNITS\": 6848, \"VACANT\": 624, \"OWNER_OCC\": 4223, \"RENTER_OCC\": 2001 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.042570000270516, 34.651367995013047 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Selma\", \"CLASS\": \"city\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"69120\", \"CAPITAL\": \"N\", \"AREALAND\": 13.863000, \"AREAWATER\": 0.580000, \"POP_CL\": 6, \"POP2000\": 20512, \"WHITE\": 5901, \"BLACK\": 14293, \"AMERI_ES\": 21, \"ASIAN\": 114, \"HAWN_PI\": 2, \"OTHER\": 46, \"MULT_RACE\": 135, \"HISPANIC\": 138, \"MALES\": 8999, \"FEMALES\": 11513, \"AGE_UNDER5\": 1469, \"AGE_5_17\": 4128, \"AGE_18_21\": 1222, \"AGE_22_29\": 2005, \"AGE_30_39\": 2442, \"AGE_40_49\": 2798, \"AGE_50_64\": 3113, \"AGE_65_UP\": 3335, \"MED_AGE\": 36.200000, \"MED_AGE_M\": 33.100000, \"MED_AGE_F\": 38.500000, \"HOUSEHOLDS\": 8196, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 974, \"HSEHLD_1_F\": 1695, \"MARHH_CHD\": 1106, \"MARHH_NO_C\": 1694, \"MHH_CHILD\": 119, \"FHH_CHILD\": 1260, \"FAMILIES\": 5343, \"AVE_FAM_SZ\": 3.100000, \"HSE_UNITS\": 9264, \"VACANT\": 1068, \"OWNER_OCC\": 4306, \"RENTER_OCC\": 3890 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.02473299887491, 32.416415998329931 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Smiths\", \"CLASS\": \"CDP\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"71136\", \"CAPITAL\": \"N\", \"AREALAND\": 71.165000, \"AREAWATER\": 0.718000, \"POP_CL\": 6, \"POP2000\": 21756, \"WHITE\": 18448, \"BLACK\": 2756, \"AMERI_ES\": 82, \"ASIAN\": 84, \"HAWN_PI\": 2, \"OTHER\": 161, \"MULT_RACE\": 223, \"HISPANIC\": 453, \"MALES\": 10793, \"FEMALES\": 10963, \"AGE_UNDER5\": 1769, \"AGE_5_17\": 4854, \"AGE_18_21\": 993, \"AGE_22_29\": 2483, \"AGE_30_39\": 4059, \"AGE_40_49\": 3184, \"AGE_50_64\": 2844, \"AGE_65_UP\": 1570, \"MED_AGE\": 31.800000, \"MED_AGE_M\": 31.500000, \"MED_AGE_F\": 32.200000, \"HOUSEHOLDS\": 7806, \"AVE_HH_SZ\": 2.790000, \"HSEHLD_1_M\": 685, \"HSEHLD_1_F\": 602, \"MARHH_CHD\": 2674, \"MARHH_NO_C\": 2356, \"MHH_CHILD\": 207, \"FHH_CHILD\": 597, \"FAMILIES\": 6255, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 8437, \"VACANT\": 631, \"OWNER_OCC\": 6412, \"RENTER_OCC\": 1394 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.098703002365866, 32.539258991361976 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sylacauga\", \"CLASS\": \"city\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"74352\", \"CAPITAL\": \"N\", \"AREALAND\": 18.526000, \"AREAWATER\": 0.107000, \"POP_CL\": 6, \"POP2000\": 12616, \"WHITE\": 8727, \"BLACK\": 3647, \"AMERI_ES\": 33, \"ASIAN\": 37, \"HAWN_PI\": 7, \"OTHER\": 50, \"MULT_RACE\": 115, \"HISPANIC\": 123, \"MALES\": 5657, \"FEMALES\": 6959, \"AGE_UNDER5\": 817, \"AGE_5_17\": 2343, \"AGE_18_21\": 641, \"AGE_22_29\": 1127, \"AGE_30_39\": 1631, \"AGE_40_49\": 1819, \"AGE_50_64\": 1894, \"AGE_65_UP\": 2344, \"MED_AGE\": 38.800000, \"MED_AGE_M\": 36.900000, \"MED_AGE_F\": 40.400000, \"HOUSEHOLDS\": 5215, \"AVE_HH_SZ\": 2.370000, \"HSEHLD_1_M\": 549, \"HSEHLD_1_F\": 1105, \"MARHH_CHD\": 1025, \"MARHH_NO_C\": 1389, \"MHH_CHILD\": 75, \"FHH_CHILD\": 468, \"FAMILIES\": 3419, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 5748, \"VACANT\": 533, \"OWNER_OCC\": 3180, \"RENTER_OCC\": 2035 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.251067998974918, 33.178359996324417 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Talladega\", \"CLASS\": \"city\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"74592\", \"CAPITAL\": \"N\", \"AREALAND\": 23.869000, \"AREAWATER\": 0.073000, \"POP_CL\": 6, \"POP2000\": 15143, \"WHITE\": 8503, \"BLACK\": 6402, \"AMERI_ES\": 27, \"ASIAN\": 46, \"HAWN_PI\": 3, \"OTHER\": 56, \"MULT_RACE\": 106, \"HISPANIC\": 136, \"MALES\": 6967, \"FEMALES\": 8176, \"AGE_UNDER5\": 859, \"AGE_5_17\": 3017, \"AGE_18_21\": 1039, \"AGE_22_29\": 1449, \"AGE_30_39\": 1867, \"AGE_40_49\": 2167, \"AGE_50_64\": 2358, \"AGE_65_UP\": 2387, \"MED_AGE\": 36.700000, \"MED_AGE_M\": 34.300000, \"MED_AGE_F\": 38.700000, \"HOUSEHOLDS\": 5836, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 599, \"HSEHLD_1_F\": 1121, \"MARHH_CHD\": 981, \"MARHH_NO_C\": 1567, \"MHH_CHILD\": 110, \"FHH_CHILD\": 661, \"FAMILIES\": 3960, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 6457, \"VACANT\": 621, \"OWNER_OCC\": 3789, \"RENTER_OCC\": 2047 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.10129899928036, 33.434727995724373 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Tillmans Corner\", \"CLASS\": \"CDP\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"76320\", \"CAPITAL\": \"N\", \"AREALAND\": 17.489000, \"AREAWATER\": 0.014000, \"POP_CL\": 6, \"POP2000\": 15685, \"WHITE\": 14676, \"BLACK\": 495, \"AMERI_ES\": 95, \"ASIAN\": 148, \"HAWN_PI\": 1, \"OTHER\": 63, \"MULT_RACE\": 207, \"HISPANIC\": 192, \"MALES\": 7671, \"FEMALES\": 8014, \"AGE_UNDER5\": 1125, \"AGE_5_17\": 2943, \"AGE_18_21\": 958, \"AGE_22_29\": 1703, \"AGE_30_39\": 2299, \"AGE_40_49\": 2367, \"AGE_50_64\": 2741, \"AGE_65_UP\": 1549, \"MED_AGE\": 35.100000, \"MED_AGE_M\": 34.400000, \"MED_AGE_F\": 35.700000, \"HOUSEHOLDS\": 5904, \"AVE_HH_SZ\": 2.650000, \"HSEHLD_1_M\": 562, \"HSEHLD_1_F\": 631, \"MARHH_CHD\": 1490, \"MARHH_NO_C\": 1898, \"MHH_CHILD\": 132, \"FHH_CHILD\": 462, \"FAMILIES\": 4458, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 6347, \"VACANT\": 443, \"OWNER_OCC\": 4246, \"RENTER_OCC\": 1658 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.197875999560097, 30.583292999623861 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Troy\", \"CLASS\": \"city\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"76920\", \"CAPITAL\": \"N\", \"AREALAND\": 26.238000, \"AREAWATER\": 0.095000, \"POP_CL\": 6, \"POP2000\": 13935, \"WHITE\": 8207, \"BLACK\": 5373, \"AMERI_ES\": 36, \"ASIAN\": 96, \"HAWN_PI\": 2, \"OTHER\": 61, \"MULT_RACE\": 160, \"HISPANIC\": 181, \"MALES\": 6445, \"FEMALES\": 7490, \"AGE_UNDER5\": 906, \"AGE_5_17\": 2247, \"AGE_18_21\": 2282, \"AGE_22_29\": 2070, \"AGE_30_39\": 1589, \"AGE_40_49\": 1602, \"AGE_50_64\": 1694, \"AGE_65_UP\": 1545, \"MED_AGE\": 27.200000, \"MED_AGE_M\": 26.000000, \"MED_AGE_F\": 28.300000, \"HOUSEHOLDS\": 5583, \"AVE_HH_SZ\": 2.280000, \"HSEHLD_1_M\": 801, \"HSEHLD_1_F\": 1063, \"MARHH_CHD\": 892, \"MARHH_NO_C\": 1150, \"MHH_CHILD\": 81, \"FHH_CHILD\": 598, \"FAMILIES\": 3189, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 6436, \"VACANT\": 853, \"OWNER_OCC\": 3107, \"RENTER_OCC\": 2476 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.967316998375779, 31.801959995878786 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Trussville\", \"CLASS\": \"city\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"76944\", \"CAPITAL\": \"N\", \"AREALAND\": 22.181000, \"AREAWATER\": 0.059000, \"POP_CL\": 6, \"POP2000\": 12924, \"WHITE\": 12507, \"BLACK\": 191, \"AMERI_ES\": 42, \"ASIAN\": 55, \"HAWN_PI\": 1, \"OTHER\": 48, \"MULT_RACE\": 80, \"HISPANIC\": 109, \"MALES\": 6292, \"FEMALES\": 6632, \"AGE_UNDER5\": 775, \"AGE_5_17\": 2771, \"AGE_18_21\": 533, \"AGE_22_29\": 802, \"AGE_30_39\": 1904, \"AGE_40_49\": 2492, \"AGE_50_64\": 2132, \"AGE_65_UP\": 1515, \"MED_AGE\": 38.500000, \"MED_AGE_M\": 37.600000, \"MED_AGE_F\": 39.400000, \"HOUSEHOLDS\": 4588, \"AVE_HH_SZ\": 2.790000, \"HSEHLD_1_M\": 253, \"HSEHLD_1_F\": 449, \"MARHH_CHD\": 1700, \"MARHH_NO_C\": 1664, \"MHH_CHILD\": 46, \"FHH_CHILD\": 188, \"FAMILIES\": 3818, \"AVE_FAM_SZ\": 3.110000, \"HSE_UNITS\": 4726, \"VACANT\": 138, \"OWNER_OCC\": 4173, \"RENTER_OCC\": 415 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.596403999033086, 33.621622997191707 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Tuscaloosa\", \"CLASS\": \"city\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"77256\", \"CAPITAL\": \"N\", \"AREALAND\": 56.240000, \"AREAWATER\": 10.459000, \"POP_CL\": 7, \"POP2000\": 77906, \"WHITE\": 42143, \"BLACK\": 33287, \"AMERI_ES\": 127, \"ASIAN\": 1162, \"HAWN_PI\": 19, \"OTHER\": 490, \"MULT_RACE\": 678, \"HISPANIC\": 1092, \"MALES\": 37081, \"FEMALES\": 40825, \"AGE_UNDER5\": 4451, \"AGE_5_17\": 10989, \"AGE_18_21\": 12691, \"AGE_22_29\": 12661, \"AGE_30_39\": 8732, \"AGE_40_49\": 9740, \"AGE_50_64\": 9477, \"AGE_65_UP\": 9165, \"MED_AGE\": 28.400000, \"MED_AGE_M\": 27.500000, \"MED_AGE_F\": 29.300000, \"HOUSEHOLDS\": 31381, \"AVE_HH_SZ\": 2.220000, \"HSEHLD_1_M\": 5076, \"HSEHLD_1_F\": 5982, \"MARHH_CHD\": 4258, \"MARHH_NO_C\": 6737, \"MHH_CHILD\": 360, \"FHH_CHILD\": 2888, \"FAMILIES\": 16931, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 34857, \"VACANT\": 3476, \"OWNER_OCC\": 14973, \"RENTER_OCC\": 16408 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.534606999299086, 33.206539998942439 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Tuskegee\", \"CLASS\": \"city\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"77304\", \"CAPITAL\": \"N\", \"AREALAND\": 15.470000, \"AREAWATER\": 0.239000, \"POP_CL\": 6, \"POP2000\": 11846, \"WHITE\": 307, \"BLACK\": 11310, \"AMERI_ES\": 22, \"ASIAN\": 82, \"HAWN_PI\": 1, \"OTHER\": 20, \"MULT_RACE\": 104, \"HISPANIC\": 81, \"MALES\": 5290, \"FEMALES\": 6556, \"AGE_UNDER5\": 725, \"AGE_5_17\": 1957, \"AGE_18_21\": 2185, \"AGE_22_29\": 1545, \"AGE_30_39\": 994, \"AGE_40_49\": 1288, \"AGE_50_64\": 1392, \"AGE_65_UP\": 1760, \"MED_AGE\": 26.400000, \"MED_AGE_M\": 25.200000, \"MED_AGE_F\": 27.500000, \"HOUSEHOLDS\": 4169, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 598, \"HSEHLD_1_F\": 953, \"MARHH_CHD\": 346, \"MARHH_NO_C\": 597, \"MHH_CHILD\": 73, \"FHH_CHILD\": 724, \"FAMILIES\": 2326, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 5101, \"VACANT\": 932, \"OWNER_OCC\": 2147, \"RENTER_OCC\": 2022 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.706780999237367, 32.431505994600329 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Vestavia Hills\", \"CLASS\": \"city\", \"ST\": \"AL\", \"STFIPS\": \"01\", \"PLACEFIP\": \"78552\", \"CAPITAL\": \"N\", \"AREALAND\": 14.633000, \"AREAWATER\": 0.006000, \"POP_CL\": 6, \"POP2000\": 24476, \"WHITE\": 23119, \"BLACK\": 454, \"AMERI_ES\": 27, \"ASIAN\": 604, \"HAWN_PI\": 24, \"OTHER\": 85, \"MULT_RACE\": 163, \"HISPANIC\": 334, \"MALES\": 11497, \"FEMALES\": 12979, \"AGE_UNDER5\": 1487, \"AGE_5_17\": 4833, \"AGE_18_21\": 811, \"AGE_22_29\": 1733, \"AGE_30_39\": 3123, \"AGE_40_49\": 4423, \"AGE_50_64\": 4106, \"AGE_65_UP\": 3960, \"MED_AGE\": 40.600000, \"MED_AGE_M\": 38.900000, \"MED_AGE_F\": 42.000000, \"HOUSEHOLDS\": 9841, \"AVE_HH_SZ\": 2.480000, \"HSEHLD_1_M\": 758, \"HSEHLD_1_F\": 1857, \"MARHH_CHD\": 2915, \"MARHH_NO_C\": 3102, \"MHH_CHILD\": 73, \"FHH_CHILD\": 379, \"FAMILIES\": 6882, \"AVE_FAM_SZ\": 3.030000, \"HSE_UNITS\": 10523, \"VACANT\": 682, \"OWNER_OCC\": 7688, \"RENTER_OCC\": 2153 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.778893998983079, 33.433056997671464 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Arkadelphia\", \"CLASS\": \"city\", \"ST\": \"AR\", \"STFIPS\": \"05\", \"PLACEFIP\": \"01870\", \"CAPITAL\": \"N\", \"AREALAND\": 7.342000, \"AREAWATER\": 0.033000, \"POP_CL\": 6, \"POP2000\": 10912, \"WHITE\": 7527, \"BLACK\": 2893, \"AMERI_ES\": 58, \"ASIAN\": 141, \"HAWN_PI\": 6, \"OTHER\": 147, \"MULT_RACE\": 140, \"HISPANIC\": 283, \"MALES\": 5032, \"FEMALES\": 5880, \"AGE_UNDER5\": 565, \"AGE_5_17\": 1407, \"AGE_18_21\": 2627, \"AGE_22_29\": 1604, \"AGE_30_39\": 1011, \"AGE_40_49\": 1064, \"AGE_50_64\": 1095, \"AGE_65_UP\": 1539, \"MED_AGE\": 24.400000, \"MED_AGE_M\": 23.400000, \"MED_AGE_F\": 26.200000, \"HOUSEHOLDS\": 3865, \"AVE_HH_SZ\": 2.260000, \"HSEHLD_1_M\": 418, \"HSEHLD_1_F\": 808, \"MARHH_CHD\": 604, \"MARHH_NO_C\": 888, \"MHH_CHILD\": 48, \"FHH_CHILD\": 390, \"FAMILIES\": 2186, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 4216, \"VACANT\": 351, \"OWNER_OCC\": 1917, \"RENTER_OCC\": 1948 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.066178, 34.121919999998958 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bella Vista\", \"CLASS\": \"CDP\", \"ST\": \"AR\", \"STFIPS\": \"05\", \"PLACEFIP\": \"04840\", \"CAPITAL\": \"N\", \"AREALAND\": 65.582000, \"AREAWATER\": 0.792000, \"POP_CL\": 6, \"POP2000\": 16582, \"WHITE\": 16228, \"BLACK\": 30, \"AMERI_ES\": 115, \"ASIAN\": 45, \"HAWN_PI\": 1, \"OTHER\": 33, \"MULT_RACE\": 130, \"HISPANIC\": 168, \"MALES\": 7969, \"FEMALES\": 8613, \"AGE_UNDER5\": 591, \"AGE_5_17\": 1447, \"AGE_18_21\": 292, \"AGE_22_29\": 787, \"AGE_30_39\": 1424, \"AGE_40_49\": 1409, \"AGE_50_64\": 3678, \"AGE_65_UP\": 6954, \"MED_AGE\": 61.200000, \"MED_AGE_M\": 61.400000, \"MED_AGE_F\": 61.100000, \"HOUSEHOLDS\": 7818, \"AVE_HH_SZ\": 2.100000, \"HSEHLD_1_M\": 548, \"HSEHLD_1_F\": 1056, \"MARHH_CHD\": 892, \"MARHH_NO_C\": 4770, \"MHH_CHILD\": 43, \"FHH_CHILD\": 121, \"FAMILIES\": 6005, \"AVE_FAM_SZ\": 2.380000, \"HSE_UNITS\": 8854, \"VACANT\": 1036, \"OWNER_OCC\": 6859, \"RENTER_OCC\": 959 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.270974, 36.463849999998317 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Benton\", \"CLASS\": \"city\", \"ST\": \"AR\", \"STFIPS\": \"05\", \"PLACEFIP\": \"05290\", \"CAPITAL\": \"N\", \"AREALAND\": 17.938000, \"AREAWATER\": 0.504000, \"POP_CL\": 6, \"POP2000\": 21906, \"WHITE\": 20368, \"BLACK\": 894, \"AMERI_ES\": 86, \"ASIAN\": 123, \"HAWN_PI\": 10, \"OTHER\": 165, \"MULT_RACE\": 260, \"HISPANIC\": 417, \"MALES\": 10465, \"FEMALES\": 11441, \"AGE_UNDER5\": 1527, \"AGE_5_17\": 4013, \"AGE_18_21\": 1119, \"AGE_22_29\": 2410, \"AGE_30_39\": 3195, \"AGE_40_49\": 3233, \"AGE_50_64\": 3199, \"AGE_65_UP\": 3210, \"MED_AGE\": 35.900000, \"MED_AGE_M\": 34.200000, \"MED_AGE_F\": 37.700000, \"HOUSEHOLDS\": 8713, \"AVE_HH_SZ\": 2.460000, \"HSEHLD_1_M\": 845, \"HSEHLD_1_F\": 1360, \"MARHH_CHD\": 2149, \"MARHH_NO_C\": 2721, \"MHH_CHILD\": 172, \"FHH_CHILD\": 600, \"FAMILIES\": 6183, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 9315, \"VACANT\": 602, \"OWNER_OCC\": 5838, \"RENTER_OCC\": 2875 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -92.577025, 34.570772999998887 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bentonville\", \"CLASS\": \"city\", \"ST\": \"AR\", \"STFIPS\": \"05\", \"PLACEFIP\": \"05320\", \"CAPITAL\": \"N\", \"AREALAND\": 21.240000, \"AREAWATER\": 0.016000, \"POP_CL\": 6, \"POP2000\": 19730, \"WHITE\": 17939, \"BLACK\": 174, \"AMERI_ES\": 262, \"ASIAN\": 473, \"HAWN_PI\": 7, \"OTHER\": 528, \"MULT_RACE\": 347, \"HISPANIC\": 1198, \"MALES\": 9540, \"FEMALES\": 10190, \"AGE_UNDER5\": 1695, \"AGE_5_17\": 4125, \"AGE_18_21\": 1090, \"AGE_22_29\": 2651, \"AGE_30_39\": 3450, \"AGE_40_49\": 2769, \"AGE_50_64\": 2265, \"AGE_65_UP\": 1685, \"MED_AGE\": 30.800000, \"MED_AGE_M\": 29.900000, \"MED_AGE_F\": 31.700000, \"HOUSEHOLDS\": 7458, \"AVE_HH_SZ\": 2.590000, \"HSEHLD_1_M\": 747, \"HSEHLD_1_F\": 1074, \"MARHH_CHD\": 2219, \"MARHH_NO_C\": 1924, \"MHH_CHILD\": 135, \"FHH_CHILD\": 639, \"FAMILIES\": 5263, \"AVE_FAM_SZ\": 3.110000, \"HSE_UNITS\": 7924, \"VACANT\": 466, \"OWNER_OCC\": 4661, \"RENTER_OCC\": 2797 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.213355, 36.366708999998394 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Blytheville\", \"CLASS\": \"city\", \"ST\": \"AR\", \"STFIPS\": \"05\", \"PLACEFIP\": \"07330\", \"CAPITAL\": \"N\", \"AREALAND\": 20.588000, \"AREAWATER\": 0.059000, \"POP_CL\": 6, \"POP2000\": 18272, \"WHITE\": 8249, \"BLACK\": 9528, \"AMERI_ES\": 35, \"ASIAN\": 109, \"HAWN_PI\": 12, \"OTHER\": 87, \"MULT_RACE\": 252, \"HISPANIC\": 239, \"MALES\": 8474, \"FEMALES\": 9798, \"AGE_UNDER5\": 1597, \"AGE_5_17\": 3870, \"AGE_18_21\": 1114, \"AGE_22_29\": 1971, \"AGE_30_39\": 2320, \"AGE_40_49\": 2375, \"AGE_50_64\": 2453, \"AGE_65_UP\": 2572, \"MED_AGE\": 32.600000, \"MED_AGE_M\": 30.700000, \"MED_AGE_F\": 34.400000, \"HOUSEHOLDS\": 7001, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 827, \"HSEHLD_1_F\": 1139, \"MARHH_CHD\": 1234, \"MARHH_NO_C\": 1728, \"MHH_CHILD\": 175, \"FHH_CHILD\": 922, \"FAMILIES\": 4748, \"AVE_FAM_SZ\": 3.160000, \"HSE_UNITS\": 8533, \"VACANT\": 1532, \"OWNER_OCC\": 3817, \"RENTER_OCC\": 3184 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.91393999997905, 35.930734999955014 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cabot\", \"CLASS\": \"city\", \"ST\": \"AR\", \"STFIPS\": \"05\", \"PLACEFIP\": \"10300\", \"CAPITAL\": \"N\", \"AREALAND\": 19.119000, \"AREAWATER\": 0.085000, \"POP_CL\": 6, \"POP2000\": 15261, \"WHITE\": 14736, \"BLACK\": 50, \"AMERI_ES\": 61, \"ASIAN\": 135, \"HAWN_PI\": 6, \"OTHER\": 75, \"MULT_RACE\": 198, \"HISPANIC\": 286, \"MALES\": 7466, \"FEMALES\": 7795, \"AGE_UNDER5\": 1260, \"AGE_5_17\": 3549, \"AGE_18_21\": 682, \"AGE_22_29\": 1537, \"AGE_30_39\": 2799, \"AGE_40_49\": 2307, \"AGE_50_64\": 1929, \"AGE_65_UP\": 1198, \"MED_AGE\": 32.300000, \"MED_AGE_M\": 31.100000, \"MED_AGE_F\": 33.400000, \"HOUSEHOLDS\": 5432, \"AVE_HH_SZ\": 2.780000, \"HSEHLD_1_M\": 382, \"HSEHLD_1_F\": 553, \"MARHH_CHD\": 2019, \"MARHH_NO_C\": 1548, \"MHH_CHILD\": 117, \"FHH_CHILD\": 423, \"FAMILIES\": 4327, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 5712, \"VACANT\": 280, \"OWNER_OCC\": 3974, \"RENTER_OCC\": 1458 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -92.022329, 34.972646999998794 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Camden\", \"CLASS\": \"city\", \"ST\": \"AR\", \"STFIPS\": \"05\", \"PLACEFIP\": \"10720\", \"CAPITAL\": \"N\", \"AREALAND\": 16.454000, \"AREAWATER\": 0.062000, \"POP_CL\": 6, \"POP2000\": 13154, \"WHITE\": 6430, \"BLACK\": 6499, \"AMERI_ES\": 32, \"ASIAN\": 49, \"HAWN_PI\": 3, \"OTHER\": 26, \"MULT_RACE\": 115, \"HISPANIC\": 76, \"MALES\": 5927, \"FEMALES\": 7227, \"AGE_UNDER5\": 848, \"AGE_5_17\": 2598, \"AGE_18_21\": 624, \"AGE_22_29\": 1136, \"AGE_30_39\": 1608, \"AGE_40_49\": 1809, \"AGE_50_64\": 1981, \"AGE_65_UP\": 2550, \"MED_AGE\": 38.700000, \"MED_AGE_M\": 36.000000, \"MED_AGE_F\": 40.500000, \"HOUSEHOLDS\": 5421, \"AVE_HH_SZ\": 2.360000, \"HSEHLD_1_M\": 614, \"HSEHLD_1_F\": 1093, \"MARHH_CHD\": 901, \"MARHH_NO_C\": 1409, \"MHH_CHILD\": 92, \"FHH_CHILD\": 633, \"FAMILIES\": 3559, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 6259, \"VACANT\": 838, \"OWNER_OCC\": 3303, \"RENTER_OCC\": 2118 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -92.834924, 33.570940999999017 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Conway\", \"CLASS\": \"city\", \"ST\": \"AR\", \"STFIPS\": \"05\", \"PLACEFIP\": \"15190\", \"CAPITAL\": \"N\", \"AREALAND\": 35.047000, \"AREAWATER\": 0.212000, \"POP_CL\": 6, \"POP2000\": 43167, \"WHITE\": 36272, \"BLACK\": 5232, \"AMERI_ES\": 155, \"ASIAN\": 541, \"HAWN_PI\": 14, \"OTHER\": 421, \"MULT_RACE\": 532, \"HISPANIC\": 983, \"MALES\": 20515, \"FEMALES\": 22652, \"AGE_UNDER5\": 2967, \"AGE_5_17\": 7083, \"AGE_18_21\": 6364, \"AGE_22_29\": 7114, \"AGE_30_39\": 5957, \"AGE_40_49\": 5277, \"AGE_50_64\": 4516, \"AGE_65_UP\": 3889, \"MED_AGE\": 27.300000, \"MED_AGE_M\": 26.900000, \"MED_AGE_F\": 27.800000, \"HOUSEHOLDS\": 16039, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 1719, \"HSEHLD_1_F\": 2469, \"MARHH_CHD\": 3824, \"MARHH_NO_C\": 4034, \"MHH_CHILD\": 271, \"FHH_CHILD\": 1203, \"FAMILIES\": 10172, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 17289, \"VACANT\": 1250, \"OWNER_OCC\": 8833, \"RENTER_OCC\": 7206 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -92.453315, 35.087335999998807 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"El Dorado\", \"CLASS\": \"city\", \"ST\": \"AR\", \"STFIPS\": \"05\", \"PLACEFIP\": \"21070\", \"CAPITAL\": \"N\", \"AREALAND\": 16.270000, \"AREAWATER\": 0.052000, \"POP_CL\": 6, \"POP2000\": 21530, \"WHITE\": 11552, \"BLACK\": 9512, \"AMERI_ES\": 43, \"ASIAN\": 152, \"HAWN_PI\": 3, \"OTHER\": 83, \"MULT_RACE\": 185, \"HISPANIC\": 224, \"MALES\": 9937, \"FEMALES\": 11593, \"AGE_UNDER5\": 1520, \"AGE_5_17\": 4136, \"AGE_18_21\": 1084, \"AGE_22_29\": 2074, \"AGE_30_39\": 2666, \"AGE_40_49\": 3059, \"AGE_50_64\": 3054, \"AGE_65_UP\": 3937, \"MED_AGE\": 37.600000, \"MED_AGE_M\": 34.700000, \"MED_AGE_F\": 40.000000, \"HOUSEHOLDS\": 8686, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 1046, \"HSEHLD_1_F\": 1619, \"MARHH_CHD\": 1493, \"MARHH_NO_C\": 2235, \"MHH_CHILD\": 196, \"FHH_CHILD\": 981, \"FAMILIES\": 5734, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 9891, \"VACANT\": 1205, \"OWNER_OCC\": 5273, \"RENTER_OCC\": 3413 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -92.662553, 33.213520999999055 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fayetteville\", \"CLASS\": \"city\", \"ST\": \"AR\", \"STFIPS\": \"05\", \"PLACEFIP\": \"23290\", \"CAPITAL\": \"N\", \"AREALAND\": 43.428000, \"AREAWATER\": 1.066000, \"POP_CL\": 7, \"POP2000\": 58047, \"WHITE\": 50212, \"BLACK\": 2969, \"AMERI_ES\": 730, \"ASIAN\": 1484, \"HAWN_PI\": 90, \"OTHER\": 1158, \"MULT_RACE\": 1404, \"HISPANIC\": 2821, \"MALES\": 29458, \"FEMALES\": 28589, \"AGE_UNDER5\": 3792, \"AGE_5_17\": 7787, \"AGE_18_21\": 9041, \"AGE_22_29\": 11752, \"AGE_30_39\": 7954, \"AGE_40_49\": 6861, \"AGE_50_64\": 5822, \"AGE_65_UP\": 5038, \"MED_AGE\": 26.900000, \"MED_AGE_M\": 26.200000, \"MED_AGE_F\": 27.900000, \"HOUSEHOLDS\": 23798, \"AVE_HH_SZ\": 2.210000, \"HSEHLD_1_M\": 4024, \"HSEHLD_1_F\": 4057, \"MARHH_CHD\": 4121, \"MARHH_NO_C\": 4850, \"MHH_CHILD\": 413, \"FHH_CHILD\": 1535, \"FAMILIES\": 12126, \"AVE_FAM_SZ\": 2.910000, \"HSE_UNITS\": 25467, \"VACANT\": 1669, \"OWNER_OCC\": 10047, \"RENTER_OCC\": 13751 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.160912, 36.076378999998504 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Forrest City\", \"CLASS\": \"city\", \"ST\": \"AR\", \"STFIPS\": \"05\", \"PLACEFIP\": \"24430\", \"CAPITAL\": \"N\", \"AREALAND\": 16.258000, \"AREAWATER\": 0.056000, \"POP_CL\": 6, \"POP2000\": 14774, \"WHITE\": 5247, \"BLACK\": 9002, \"AMERI_ES\": 28, \"ASIAN\": 110, \"HAWN_PI\": 0, \"OTHER\": 45, \"MULT_RACE\": 342, \"HISPANIC\": 1221, \"MALES\": 7937, \"FEMALES\": 6837, \"AGE_UNDER5\": 1202, \"AGE_5_17\": 2867, \"AGE_18_21\": 821, \"AGE_22_29\": 1930, \"AGE_30_39\": 2398, \"AGE_40_49\": 2162, \"AGE_50_64\": 1750, \"AGE_65_UP\": 1644, \"MED_AGE\": 32.300000, \"MED_AGE_M\": 31.800000, \"MED_AGE_F\": 33.300000, \"HOUSEHOLDS\": 4581, \"AVE_HH_SZ\": 2.650000, \"HSEHLD_1_M\": 475, \"HSEHLD_1_F\": 805, \"MARHH_CHD\": 758, \"MARHH_NO_C\": 947, \"MHH_CHILD\": 91, \"FHH_CHILD\": 868, \"FAMILIES\": 3165, \"AVE_FAM_SZ\": 3.230000, \"HSE_UNITS\": 5164, \"VACANT\": 583, \"OWNER_OCC\": 2343, \"RENTER_OCC\": 2238 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.788715999997393, 35.010130999993358 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fort Smith\", \"CLASS\": \"city\", \"ST\": \"AR\", \"STFIPS\": \"05\", \"PLACEFIP\": \"24550\", \"CAPITAL\": \"N\", \"AREALAND\": 50.349000, \"AREAWATER\": 2.589000, \"POP_CL\": 7, \"POP2000\": 80268, \"WHITE\": 61798, \"BLACK\": 6943, \"AMERI_ES\": 1358, \"ASIAN\": 3682, \"HAWN_PI\": 43, \"OTHER\": 4040, \"MULT_RACE\": 2404, \"HISPANIC\": 7048, \"MALES\": 38918, \"FEMALES\": 41350, \"AGE_UNDER5\": 6083, \"AGE_5_17\": 14323, \"AGE_18_21\": 4471, \"AGE_22_29\": 9255, \"AGE_30_39\": 11656, \"AGE_40_49\": 11645, \"AGE_50_64\": 11834, \"AGE_65_UP\": 11001, \"MED_AGE\": 35.300000, \"MED_AGE_M\": 33.700000, \"MED_AGE_F\": 36.900000, \"HOUSEHOLDS\": 32398, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 4238, \"HSEHLD_1_F\": 5712, \"MARHH_CHD\": 6699, \"MARHH_NO_C\": 8575, \"MHH_CHILD\": 742, \"FHH_CHILD\": 2530, \"FAMILIES\": 20647, \"AVE_FAM_SZ\": 3.030000, \"HSE_UNITS\": 35341, \"VACANT\": 2943, \"OWNER_OCC\": 18253, \"RENTER_OCC\": 14145 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.398737, 35.3686909999984 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Harrison\", \"CLASS\": \"city\", \"ST\": \"AR\", \"STFIPS\": \"05\", \"PLACEFIP\": \"30460\", \"CAPITAL\": \"N\", \"AREALAND\": 10.233000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12152, \"WHITE\": 11816, \"BLACK\": 14, \"AMERI_ES\": 90, \"ASIAN\": 62, \"HAWN_PI\": 2, \"OTHER\": 75, \"MULT_RACE\": 93, \"HISPANIC\": 186, \"MALES\": 5598, \"FEMALES\": 6554, \"AGE_UNDER5\": 824, \"AGE_5_17\": 1919, \"AGE_18_21\": 775, \"AGE_22_29\": 1227, \"AGE_30_39\": 1553, \"AGE_40_49\": 1544, \"AGE_50_64\": 1821, \"AGE_65_UP\": 2489, \"MED_AGE\": 38.700000, \"MED_AGE_M\": 35.500000, \"MED_AGE_F\": 41.400000, \"HOUSEHOLDS\": 5259, \"AVE_HH_SZ\": 2.220000, \"HSEHLD_1_M\": 614, \"HSEHLD_1_F\": 1158, \"MARHH_CHD\": 1033, \"MARHH_NO_C\": 1509, \"MHH_CHILD\": 98, \"FHH_CHILD\": 377, \"FAMILIES\": 3262, \"AVE_FAM_SZ\": 2.840000, \"HSE_UNITS\": 5747, \"VACANT\": 488, \"OWNER_OCC\": 3103, \"RENTER_OCC\": 2156 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.113703, 36.237246999998597 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hope\", \"CLASS\": \"city\", \"ST\": \"AR\", \"STFIPS\": \"05\", \"PLACEFIP\": \"33190\", \"CAPITAL\": \"N\", \"AREALAND\": 9.997000, \"AREAWATER\": 0.058000, \"POP_CL\": 6, \"POP2000\": 10616, \"WHITE\": 5065, \"BLACK\": 4583, \"AMERI_ES\": 40, \"ASIAN\": 32, \"HAWN_PI\": 3, \"OTHER\": 704, \"MULT_RACE\": 189, \"HISPANIC\": 1431, \"MALES\": 4947, \"FEMALES\": 5669, \"AGE_UNDER5\": 909, \"AGE_5_17\": 2163, \"AGE_18_21\": 671, \"AGE_22_29\": 1240, \"AGE_30_39\": 1490, \"AGE_40_49\": 1272, \"AGE_50_64\": 1325, \"AGE_65_UP\": 1546, \"MED_AGE\": 32.300000, \"MED_AGE_M\": 29.700000, \"MED_AGE_F\": 35.100000, \"HOUSEHOLDS\": 3961, \"AVE_HH_SZ\": 2.610000, \"HSEHLD_1_M\": 401, \"HSEHLD_1_F\": 761, \"MARHH_CHD\": 737, \"MARHH_NO_C\": 881, \"MHH_CHILD\": 87, \"FHH_CHILD\": 536, \"FAMILIES\": 2638, \"AVE_FAM_SZ\": 3.200000, \"HSE_UNITS\": 4301, \"VACANT\": 340, \"OWNER_OCC\": 2195, \"RENTER_OCC\": 1766 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.589908, 33.667778999999001 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hot Springs\", \"CLASS\": \"city\", \"ST\": \"AR\", \"STFIPS\": \"05\", \"PLACEFIP\": \"33400\", \"CAPITAL\": \"N\", \"AREALAND\": 32.890000, \"AREAWATER\": 0.119000, \"POP_CL\": 6, \"POP2000\": 35750, \"WHITE\": 28194, \"BLACK\": 6030, \"AMERI_ES\": 196, \"ASIAN\": 284, \"HAWN_PI\": 17, \"OTHER\": 363, \"MULT_RACE\": 666, \"HISPANIC\": 1358, \"MALES\": 16778, \"FEMALES\": 18972, \"AGE_UNDER5\": 2115, \"AGE_5_17\": 5122, \"AGE_18_21\": 1734, \"AGE_22_29\": 3282, \"AGE_30_39\": 4344, \"AGE_40_49\": 5012, \"AGE_50_64\": 5845, \"AGE_65_UP\": 8296, \"MED_AGE\": 42.400000, \"MED_AGE_M\": 39.700000, \"MED_AGE_F\": 45.300000, \"HOUSEHOLDS\": 16096, \"AVE_HH_SZ\": 2.120000, \"HSEHLD_1_M\": 2378, \"HSEHLD_1_F\": 3804, \"MARHH_CHD\": 2128, \"MARHH_NO_C\": 4345, \"MHH_CHILD\": 257, \"FHH_CHILD\": 1154, \"FAMILIES\": 9066, \"AVE_FAM_SZ\": 2.800000, \"HSE_UNITS\": 18813, \"VACANT\": 2717, \"OWNER_OCC\": 9229, \"RENTER_OCC\": 6867 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.055393, 34.497137999998898 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Jacksonville\", \"CLASS\": \"city\", \"ST\": \"AR\", \"STFIPS\": \"05\", \"PLACEFIP\": \"34750\", \"CAPITAL\": \"N\", \"AREALAND\": 26.377000, \"AREAWATER\": 0.171000, \"POP_CL\": 6, \"POP2000\": 29916, \"WHITE\": 20617, \"BLACK\": 7406, \"AMERI_ES\": 151, \"ASIAN\": 592, \"HAWN_PI\": 38, \"OTHER\": 340, \"MULT_RACE\": 772, \"HISPANIC\": 1012, \"MALES\": 14991, \"FEMALES\": 14925, \"AGE_UNDER5\": 2851, \"AGE_5_17\": 5826, \"AGE_18_21\": 2115, \"AGE_22_29\": 4464, \"AGE_30_39\": 5062, \"AGE_40_49\": 3813, \"AGE_50_64\": 3587, \"AGE_65_UP\": 2198, \"MED_AGE\": 29.500000, \"MED_AGE_M\": 28.600000, \"MED_AGE_F\": 30.500000, \"HOUSEHOLDS\": 10890, \"AVE_HH_SZ\": 2.640000, \"HSEHLD_1_M\": 1127, \"HSEHLD_1_F\": 1271, \"MARHH_CHD\": 3014, \"MARHH_NO_C\": 2986, \"MHH_CHILD\": 264, \"FHH_CHILD\": 1095, \"FAMILIES\": 8006, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 11890, \"VACANT\": 1000, \"OWNER_OCC\": 5154, \"RENTER_OCC\": 5736 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -92.115164, 34.870344999998828 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Jonesboro\", \"CLASS\": \"city\", \"ST\": \"AR\", \"STFIPS\": \"05\", \"PLACEFIP\": \"35710\", \"CAPITAL\": \"N\", \"AREALAND\": 79.635000, \"AREAWATER\": 0.361000, \"POP_CL\": 7, \"POP2000\": 55515, \"WHITE\": 47394, \"BLACK\": 6259, \"AMERI_ES\": 175, \"ASIAN\": 462, \"HAWN_PI\": 16, \"OTHER\": 583, \"MULT_RACE\": 626, \"HISPANIC\": 1297, \"MALES\": 26610, \"FEMALES\": 28905, \"AGE_UNDER5\": 3707, \"AGE_5_17\": 9018, \"AGE_18_21\": 5749, \"AGE_22_29\": 7863, \"AGE_30_39\": 7457, \"AGE_40_49\": 7437, \"AGE_50_64\": 7727, \"AGE_65_UP\": 6557, \"MED_AGE\": 31.800000, \"MED_AGE_M\": 30.300000, \"MED_AGE_F\": 33.500000, \"HOUSEHOLDS\": 22219, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 2516, \"HSEHLD_1_F\": 3592, \"MARHH_CHD\": 4679, \"MARHH_NO_C\": 6177, \"MHH_CHILD\": 345, \"FHH_CHILD\": 1672, \"FAMILIES\": 14360, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 24263, \"VACANT\": 2044, \"OWNER_OCC\": 12810, \"RENTER_OCC\": 9409 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.694047999996783, 35.828066999991137 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Little Rock\", \"CLASS\": \"city\", \"ST\": \"AR\", \"STFIPS\": \"05\", \"PLACEFIP\": \"41000\", \"CAPITAL\": \"Y\", \"AREALAND\": 116.203000, \"AREAWATER\": 0.610000, \"POP_CL\": 8, \"POP2000\": 183133, \"WHITE\": 100848, \"BLACK\": 74003, \"AMERI_ES\": 500, \"ASIAN\": 3032, \"HAWN_PI\": 64, \"OTHER\": 2348, \"MULT_RACE\": 2338, \"HISPANIC\": 4889, \"MALES\": 86322, \"FEMALES\": 96811, \"AGE_UNDER5\": 12989, \"AGE_5_17\": 32246, \"AGE_18_21\": 9576, \"AGE_22_29\": 24366, \"AGE_30_39\": 27851, \"AGE_40_49\": 28402, \"AGE_50_64\": 26376, \"AGE_65_UP\": 21327, \"MED_AGE\": 34.500000, \"MED_AGE_M\": 32.700000, \"MED_AGE_F\": 36.100000, \"HOUSEHOLDS\": 77352, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 10883, \"HSEHLD_1_F\": 15276, \"MARHH_CHD\": 13131, \"MARHH_NO_C\": 18159, \"MHH_CHILD\": 1299, \"FHH_CHILD\": 7672, \"FAMILIES\": 46490, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 84793, \"VACANT\": 7441, \"OWNER_OCC\": 44372, \"RENTER_OCC\": 32980 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -92.331122, 34.736008999998852 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Magnolia\", \"CLASS\": \"city\", \"ST\": \"AR\", \"STFIPS\": \"05\", \"PLACEFIP\": \"43460\", \"CAPITAL\": \"N\", \"AREALAND\": 9.318000, \"AREAWATER\": 0.008000, \"POP_CL\": 6, \"POP2000\": 10858, \"WHITE\": 6324, \"BLACK\": 4276, \"AMERI_ES\": 24, \"ASIAN\": 71, \"HAWN_PI\": 2, \"OTHER\": 52, \"MULT_RACE\": 109, \"HISPANIC\": 116, \"MALES\": 4984, \"FEMALES\": 5874, \"AGE_UNDER5\": 672, \"AGE_5_17\": 1954, \"AGE_18_21\": 1274, \"AGE_22_29\": 1203, \"AGE_30_39\": 1220, \"AGE_40_49\": 1257, \"AGE_50_64\": 1379, \"AGE_65_UP\": 1899, \"MED_AGE\": 32.600000, \"MED_AGE_M\": 28.800000, \"MED_AGE_F\": 36.000000, \"HOUSEHOLDS\": 4204, \"AVE_HH_SZ\": 2.330000, \"HSEHLD_1_M\": 508, \"HSEHLD_1_F\": 946, \"MARHH_CHD\": 688, \"MARHH_NO_C\": 1001, \"MHH_CHILD\": 63, \"FHH_CHILD\": 453, \"FAMILIES\": 2578, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 4821, \"VACANT\": 617, \"OWNER_OCC\": 2424, \"RENTER_OCC\": 1780 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.233477, 33.274051999999038 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Maumelle\", \"CLASS\": \"city\", \"ST\": \"AR\", \"STFIPS\": \"05\", \"PLACEFIP\": \"44600\", \"CAPITAL\": \"N\", \"AREALAND\": 8.802000, \"AREAWATER\": 0.468000, \"POP_CL\": 6, \"POP2000\": 10557, \"WHITE\": 9760, \"BLACK\": 516, \"AMERI_ES\": 53, \"ASIAN\": 82, \"HAWN_PI\": 1, \"OTHER\": 43, \"MULT_RACE\": 102, \"HISPANIC\": 187, \"MALES\": 5094, \"FEMALES\": 5463, \"AGE_UNDER5\": 872, \"AGE_5_17\": 1984, \"AGE_18_21\": 345, \"AGE_22_29\": 982, \"AGE_30_39\": 2008, \"AGE_40_49\": 1931, \"AGE_50_64\": 1733, \"AGE_65_UP\": 702, \"MED_AGE\": 35.700000, \"MED_AGE_M\": 34.700000, \"MED_AGE_F\": 36.600000, \"HOUSEHOLDS\": 4128, \"AVE_HH_SZ\": 2.540000, \"HSEHLD_1_M\": 301, \"HSEHLD_1_F\": 517, \"MARHH_CHD\": 1332, \"MARHH_NO_C\": 1426, \"MHH_CHILD\": 56, \"FHH_CHILD\": 240, \"FAMILIES\": 3174, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 4294, \"VACANT\": 166, \"OWNER_OCC\": 3248, \"RENTER_OCC\": 880 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -92.406551, 34.853744999998852 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mountain Home\", \"CLASS\": \"city\", \"ST\": \"AR\", \"STFIPS\": \"05\", \"PLACEFIP\": \"47390\", \"CAPITAL\": \"N\", \"AREALAND\": 10.632000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11012, \"WHITE\": 10758, \"BLACK\": 20, \"AMERI_ES\": 52, \"ASIAN\": 41, \"HAWN_PI\": 3, \"OTHER\": 29, \"MULT_RACE\": 109, \"HISPANIC\": 132, \"MALES\": 4831, \"FEMALES\": 6181, \"AGE_UNDER5\": 526, \"AGE_5_17\": 1421, \"AGE_18_21\": 415, \"AGE_22_29\": 677, \"AGE_30_39\": 1093, \"AGE_40_49\": 1049, \"AGE_50_64\": 1851, \"AGE_65_UP\": 3980, \"MED_AGE\": 53.000000, \"MED_AGE_M\": 48.800000, \"MED_AGE_F\": 55.900000, \"HOUSEHOLDS\": 5175, \"AVE_HH_SZ\": 2.020000, \"HSEHLD_1_M\": 529, \"HSEHLD_1_F\": 1350, \"MARHH_CHD\": 649, \"MARHH_NO_C\": 1900, \"MHH_CHILD\": 62, \"FHH_CHILD\": 317, \"FAMILIES\": 3150, \"AVE_FAM_SZ\": 2.590000, \"HSE_UNITS\": 5612, \"VACANT\": 437, \"OWNER_OCC\": 3576, \"RENTER_OCC\": 1599 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -92.382279, 36.336247999998555 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"North Little Rock\", \"CLASS\": \"city\", \"ST\": \"AR\", \"STFIPS\": \"05\", \"PLACEFIP\": \"50450\", \"CAPITAL\": \"N\", \"AREALAND\": 44.811000, \"AREAWATER\": 2.150000, \"POP_CL\": 7, \"POP2000\": 60433, \"WHITE\": 37801, \"BLACK\": 20535, \"AMERI_ES\": 249, \"ASIAN\": 356, \"HAWN_PI\": 20, \"OTHER\": 712, \"MULT_RACE\": 760, \"HISPANIC\": 1463, \"MALES\": 28240, \"FEMALES\": 32193, \"AGE_UNDER5\": 4320, \"AGE_5_17\": 11088, \"AGE_18_21\": 3078, \"AGE_22_29\": 6645, \"AGE_30_39\": 8239, \"AGE_40_49\": 9083, \"AGE_50_64\": 9164, \"AGE_65_UP\": 8816, \"MED_AGE\": 36.500000, \"MED_AGE_M\": 34.600000, \"MED_AGE_F\": 38.000000, \"HOUSEHOLDS\": 25542, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 3227, \"HSEHLD_1_F\": 4956, \"MARHH_CHD\": 4076, \"MARHH_NO_C\": 6615, \"MHH_CHILD\": 439, \"FHH_CHILD\": 2875, \"FAMILIES\": 16128, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 27567, \"VACANT\": 2025, \"OWNER_OCC\": 14695, \"RENTER_OCC\": 10847 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -92.256881, 34.78079099999885 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Paragould\", \"CLASS\": \"city\", \"ST\": \"AR\", \"STFIPS\": \"05\", \"PLACEFIP\": \"53390\", \"CAPITAL\": \"N\", \"AREALAND\": 30.812000, \"AREAWATER\": 0.157000, \"POP_CL\": 6, \"POP2000\": 22017, \"WHITE\": 21527, \"BLACK\": 31, \"AMERI_ES\": 93, \"ASIAN\": 48, \"HAWN_PI\": 5, \"OTHER\": 123, \"MULT_RACE\": 190, \"HISPANIC\": 292, \"MALES\": 10473, \"FEMALES\": 11544, \"AGE_UNDER5\": 1517, \"AGE_5_17\": 3951, \"AGE_18_21\": 1238, \"AGE_22_29\": 2440, \"AGE_30_39\": 3084, \"AGE_40_49\": 3015, \"AGE_50_64\": 3285, \"AGE_65_UP\": 3487, \"MED_AGE\": 36.100000, \"MED_AGE_M\": 34.200000, \"MED_AGE_F\": 38.200000, \"HOUSEHOLDS\": 8941, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 897, \"HSEHLD_1_F\": 1565, \"MARHH_CHD\": 2066, \"MARHH_NO_C\": 2736, \"MHH_CHILD\": 184, \"FHH_CHILD\": 600, \"FAMILIES\": 6135, \"AVE_FAM_SZ\": 2.920000, \"HSE_UNITS\": 9789, \"VACANT\": 848, \"OWNER_OCC\": 5744, \"RENTER_OCC\": 3197 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.502937999994685, 36.057074999986249 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pine Bluff\", \"CLASS\": \"city\", \"ST\": \"AR\", \"STFIPS\": \"05\", \"PLACEFIP\": \"55310\", \"CAPITAL\": \"N\", \"AREALAND\": 45.614000, \"AREAWATER\": 1.238000, \"POP_CL\": 7, \"POP2000\": 55085, \"WHITE\": 17793, \"BLACK\": 36275, \"AMERI_ES\": 91, \"ASIAN\": 404, \"HAWN_PI\": 23, \"OTHER\": 104, \"MULT_RACE\": 395, \"HISPANIC\": 452, \"MALES\": 26054, \"FEMALES\": 29031, \"AGE_UNDER5\": 4061, \"AGE_5_17\": 11053, \"AGE_18_21\": 4298, \"AGE_22_29\": 6009, \"AGE_30_39\": 7278, \"AGE_40_49\": 7652, \"AGE_50_64\": 7187, \"AGE_65_UP\": 7547, \"MED_AGE\": 33.100000, \"MED_AGE_M\": 30.700000, \"MED_AGE_F\": 35.000000, \"HOUSEHOLDS\": 19956, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 2451, \"HSEHLD_1_F\": 3384, \"MARHH_CHD\": 3246, \"MARHH_NO_C\": 4486, \"MHH_CHILD\": 403, \"FHH_CHILD\": 2920, \"FAMILIES\": 13354, \"AVE_FAM_SZ\": 3.200000, \"HSE_UNITS\": 22484, \"VACANT\": 2528, \"OWNER_OCC\": 11727, \"RENTER_OCC\": 8229 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -92.023114, 34.216647999998898 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Rogers\", \"CLASS\": \"city\", \"ST\": \"AR\", \"STFIPS\": \"05\", \"PLACEFIP\": \"60410\", \"CAPITAL\": \"N\", \"AREALAND\": 33.532000, \"AREAWATER\": 0.048000, \"POP_CL\": 6, \"POP2000\": 38829, \"WHITE\": 33296, \"BLACK\": 184, \"AMERI_ES\": 407, \"ASIAN\": 556, \"HAWN_PI\": 29, \"OTHER\": 3660, \"MULT_RACE\": 697, \"HISPANIC\": 7490, \"MALES\": 18947, \"FEMALES\": 19882, \"AGE_UNDER5\": 3450, \"AGE_5_17\": 7981, \"AGE_18_21\": 1971, \"AGE_22_29\": 4462, \"AGE_30_39\": 6437, \"AGE_40_49\": 5155, \"AGE_50_64\": 4797, \"AGE_65_UP\": 4576, \"MED_AGE\": 32.300000, \"MED_AGE_M\": 31.100000, \"MED_AGE_F\": 33.700000, \"HOUSEHOLDS\": 14005, \"AVE_HH_SZ\": 2.740000, \"HSEHLD_1_M\": 1133, \"HSEHLD_1_F\": 1982, \"MARHH_CHD\": 4231, \"MARHH_NO_C\": 3944, \"MHH_CHILD\": 365, \"FHH_CHILD\": 927, \"FAMILIES\": 10210, \"AVE_FAM_SZ\": 3.210000, \"HSE_UNITS\": 14836, \"VACANT\": 831, \"OWNER_OCC\": 8855, \"RENTER_OCC\": 5150 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.141372, 36.32938799999846 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Russellville\", \"CLASS\": \"city\", \"ST\": \"AR\", \"STFIPS\": \"05\", \"PLACEFIP\": \"61670\", \"CAPITAL\": \"N\", \"AREALAND\": 25.934000, \"AREAWATER\": 0.023000, \"POP_CL\": 6, \"POP2000\": 23682, \"WHITE\": 21251, \"BLACK\": 1232, \"AMERI_ES\": 171, \"ASIAN\": 279, \"HAWN_PI\": 6, \"OTHER\": 403, \"MULT_RACE\": 340, \"HISPANIC\": 773, \"MALES\": 11347, \"FEMALES\": 12335, \"AGE_UNDER5\": 1610, \"AGE_5_17\": 3979, \"AGE_18_21\": 2526, \"AGE_22_29\": 3168, \"AGE_30_39\": 3055, \"AGE_40_49\": 2927, \"AGE_50_64\": 3096, \"AGE_65_UP\": 3321, \"MED_AGE\": 31.800000, \"MED_AGE_M\": 29.500000, \"MED_AGE_F\": 34.300000, \"HOUSEHOLDS\": 9241, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 1058, \"HSEHLD_1_F\": 1570, \"MARHH_CHD\": 2017, \"MARHH_NO_C\": 2574, \"MHH_CHILD\": 170, \"FHH_CHILD\": 714, \"FAMILIES\": 6005, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 10234, \"VACANT\": 993, \"OWNER_OCC\": 5238, \"RENTER_OCC\": 4003 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.13682, 35.278428999998781 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Searcy\", \"CLASS\": \"city\", \"ST\": \"AR\", \"STFIPS\": \"05\", \"PLACEFIP\": \"63020\", \"CAPITAL\": \"N\", \"AREALAND\": 14.703000, \"AREAWATER\": 0.075000, \"POP_CL\": 6, \"POP2000\": 18928, \"WHITE\": 17080, \"BLACK\": 1249, \"AMERI_ES\": 58, \"ASIAN\": 94, \"HAWN_PI\": 4, \"OTHER\": 206, \"MULT_RACE\": 237, \"HISPANIC\": 390, \"MALES\": 8918, \"FEMALES\": 10010, \"AGE_UNDER5\": 1022, \"AGE_5_17\": 2709, \"AGE_18_21\": 3158, \"AGE_22_29\": 2461, \"AGE_30_39\": 2186, \"AGE_40_49\": 2018, \"AGE_50_64\": 2362, \"AGE_65_UP\": 3012, \"MED_AGE\": 30.500000, \"MED_AGE_M\": 28.800000, \"MED_AGE_F\": 32.400000, \"HOUSEHOLDS\": 6822, \"AVE_HH_SZ\": 2.320000, \"HSEHLD_1_M\": 740, \"HSEHLD_1_F\": 1274, \"MARHH_CHD\": 1376, \"MARHH_NO_C\": 2156, \"MHH_CHILD\": 114, \"FHH_CHILD\": 456, \"FAMILIES\": 4493, \"AVE_FAM_SZ\": 2.860000, \"HSE_UNITS\": 7405, \"VACANT\": 583, \"OWNER_OCC\": 3924, \"RENTER_OCC\": 2898 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -91.733706, 35.247042999998584 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sherwood\", \"CLASS\": \"city\", \"ST\": \"AR\", \"STFIPS\": \"05\", \"PLACEFIP\": \"63800\", \"CAPITAL\": \"N\", \"AREALAND\": 13.808000, \"AREAWATER\": 0.223000, \"POP_CL\": 6, \"POP2000\": 21511, \"WHITE\": 18574, \"BLACK\": 2182, \"AMERI_ES\": 93, \"ASIAN\": 205, \"HAWN_PI\": 13, \"OTHER\": 178, \"MULT_RACE\": 266, \"HISPANIC\": 442, \"MALES\": 10449, \"FEMALES\": 11062, \"AGE_UNDER5\": 1526, \"AGE_5_17\": 3734, \"AGE_18_21\": 976, \"AGE_22_29\": 2563, \"AGE_30_39\": 3428, \"AGE_40_49\": 3381, \"AGE_50_64\": 3610, \"AGE_65_UP\": 2293, \"MED_AGE\": 35.900000, \"MED_AGE_M\": 34.500000, \"MED_AGE_F\": 37.100000, \"HOUSEHOLDS\": 8798, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 956, \"HSEHLD_1_F\": 1210, \"MARHH_CHD\": 2182, \"MARHH_NO_C\": 2865, \"MHH_CHILD\": 115, \"FHH_CHILD\": 569, \"FAMILIES\": 6209, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 9272, \"VACANT\": 474, \"OWNER_OCC\": 6029, \"RENTER_OCC\": 2769 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -92.211514, 34.830889999998831 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Siloam Springs\", \"CLASS\": \"city\", \"ST\": \"AR\", \"STFIPS\": \"05\", \"PLACEFIP\": \"64370\", \"CAPITAL\": \"N\", \"AREALAND\": 10.555000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10843, \"WHITE\": 9240, \"BLACK\": 53, \"AMERI_ES\": 465, \"ASIAN\": 90, \"HAWN_PI\": 9, \"OTHER\": 615, \"MULT_RACE\": 371, \"HISPANIC\": 1518, \"MALES\": 5300, \"FEMALES\": 5543, \"AGE_UNDER5\": 889, \"AGE_5_17\": 1927, \"AGE_18_21\": 1191, \"AGE_22_29\": 1453, \"AGE_30_39\": 1512, \"AGE_40_49\": 1219, \"AGE_50_64\": 1318, \"AGE_65_UP\": 1334, \"MED_AGE\": 29.800000, \"MED_AGE_M\": 28.100000, \"MED_AGE_F\": 31.500000, \"HOUSEHOLDS\": 3894, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 392, \"HSEHLD_1_F\": 655, \"MARHH_CHD\": 1008, \"MARHH_NO_C\": 1086, \"MHH_CHILD\": 79, \"FHH_CHILD\": 270, \"FAMILIES\": 2646, \"AVE_FAM_SZ\": 3.110000, \"HSE_UNITS\": 4223, \"VACANT\": 329, \"OWNER_OCC\": 2225, \"RENTER_OCC\": 1669 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.539315000000187, 36.183358999997921 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Springdale\", \"CLASS\": \"city\", \"ST\": \"AR\", \"STFIPS\": \"05\", \"PLACEFIP\": \"66080\", \"CAPITAL\": \"N\", \"AREALAND\": 31.303000, \"AREAWATER\": 0.011000, \"POP_CL\": 6, \"POP2000\": 45798, \"WHITE\": 37380, \"BLACK\": 377, \"AMERI_ES\": 431, \"ASIAN\": 772, \"HAWN_PI\": 712, \"OTHER\": 5079, \"MULT_RACE\": 1047, \"HISPANIC\": 9005, \"MALES\": 22730, \"FEMALES\": 23068, \"AGE_UNDER5\": 4256, \"AGE_5_17\": 9031, \"AGE_18_21\": 2692, \"AGE_22_29\": 6120, \"AGE_30_39\": 7171, \"AGE_40_49\": 5976, \"AGE_50_64\": 5860, \"AGE_65_UP\": 4692, \"MED_AGE\": 31.000000, \"MED_AGE_M\": 29.900000, \"MED_AGE_F\": 32.500000, \"HOUSEHOLDS\": 16149, \"AVE_HH_SZ\": 2.800000, \"HSEHLD_1_M\": 1355, \"HSEHLD_1_F\": 2190, \"MARHH_CHD\": 4800, \"MARHH_NO_C\": 4591, \"MHH_CHILD\": 403, \"FHH_CHILD\": 1065, \"FAMILIES\": 11852, \"AVE_FAM_SZ\": 3.260000, \"HSE_UNITS\": 16962, \"VACANT\": 813, \"OWNER_OCC\": 9748, \"RENTER_OCC\": 6401 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.14592, 36.181425999998488 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Texarkana\", \"CLASS\": \"city\", \"ST\": \"AR\", \"STFIPS\": \"05\", \"PLACEFIP\": \"68810\", \"CAPITAL\": \"N\", \"AREALAND\": 31.845000, \"AREAWATER\": 0.188000, \"POP_CL\": 6, \"POP2000\": 26448, \"WHITE\": 17437, \"BLACK\": 8199, \"AMERI_ES\": 126, \"ASIAN\": 131, \"HAWN_PI\": 8, \"OTHER\": 161, \"MULT_RACE\": 386, \"HISPANIC\": 472, \"MALES\": 12673, \"FEMALES\": 13775, \"AGE_UNDER5\": 2005, \"AGE_5_17\": 4840, \"AGE_18_21\": 1533, \"AGE_22_29\": 3053, \"AGE_30_39\": 3748, \"AGE_40_49\": 3671, \"AGE_50_64\": 3902, \"AGE_65_UP\": 3696, \"MED_AGE\": 34.800000, \"MED_AGE_M\": 32.600000, \"MED_AGE_F\": 37.000000, \"HOUSEHOLDS\": 10384, \"AVE_HH_SZ\": 2.450000, \"HSEHLD_1_M\": 1184, \"HSEHLD_1_F\": 1754, \"MARHH_CHD\": 1925, \"MARHH_NO_C\": 2780, \"MHH_CHILD\": 203, \"FHH_CHILD\": 1246, \"FAMILIES\": 7039, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 11721, \"VACANT\": 1337, \"OWNER_OCC\": 6319, \"RENTER_OCC\": 4065 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.020514, 33.433074999998993 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Van Buren\", \"CLASS\": \"city\", \"ST\": \"AR\", \"STFIPS\": \"05\", \"PLACEFIP\": \"71480\", \"CAPITAL\": \"N\", \"AREALAND\": 15.059000, \"AREAWATER\": 0.795000, \"POP_CL\": 6, \"POP2000\": 18986, \"WHITE\": 16589, \"BLACK\": 312, \"AMERI_ES\": 373, \"ASIAN\": 535, \"HAWN_PI\": 0, \"OTHER\": 602, \"MULT_RACE\": 575, \"HISPANIC\": 1147, \"MALES\": 9095, \"FEMALES\": 9891, \"AGE_UNDER5\": 1593, \"AGE_5_17\": 4035, \"AGE_18_21\": 954, \"AGE_22_29\": 2138, \"AGE_30_39\": 3062, \"AGE_40_49\": 2539, \"AGE_50_64\": 2659, \"AGE_65_UP\": 2006, \"MED_AGE\": 32.600000, \"MED_AGE_M\": 31.000000, \"MED_AGE_F\": 34.100000, \"HOUSEHOLDS\": 6947, \"AVE_HH_SZ\": 2.670000, \"HSEHLD_1_M\": 553, \"HSEHLD_1_F\": 956, \"MARHH_CHD\": 1962, \"MARHH_NO_C\": 1944, \"MHH_CHILD\": 156, \"FHH_CHILD\": 691, \"FAMILIES\": 5179, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 7427, \"VACANT\": 480, \"OWNER_OCC\": 4643, \"RENTER_OCC\": 2304 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.346737, 35.444338999998457 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"West Memphis\", \"CLASS\": \"city\", \"ST\": \"AR\", \"STFIPS\": \"05\", \"PLACEFIP\": \"74540\", \"CAPITAL\": \"N\", \"AREALAND\": 26.492000, \"AREAWATER\": 0.068000, \"POP_CL\": 6, \"POP2000\": 27666, \"WHITE\": 11663, \"BLACK\": 15473, \"AMERI_ES\": 59, \"ASIAN\": 148, \"HAWN_PI\": 5, \"OTHER\": 141, \"MULT_RACE\": 177, \"HISPANIC\": 279, \"MALES\": 12841, \"FEMALES\": 14825, \"AGE_UNDER5\": 2361, \"AGE_5_17\": 6367, \"AGE_18_21\": 1538, \"AGE_22_29\": 3061, \"AGE_30_39\": 3910, \"AGE_40_49\": 3767, \"AGE_50_64\": 3760, \"AGE_65_UP\": 2902, \"MED_AGE\": 31.300000, \"MED_AGE_M\": 29.300000, \"MED_AGE_F\": 33.200000, \"HOUSEHOLDS\": 10051, \"AVE_HH_SZ\": 2.700000, \"HSEHLD_1_M\": 1011, \"HSEHLD_1_F\": 1477, \"MARHH_CHD\": 1802, \"MARHH_NO_C\": 2255, \"MHH_CHILD\": 274, \"FHH_CHILD\": 1612, \"FAMILIES\": 7132, \"AVE_FAM_SZ\": 3.230000, \"HSE_UNITS\": 11022, \"VACANT\": 971, \"OWNER_OCC\": 5624, \"RENTER_OCC\": 4427 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.17883099998744, 35.150293999974934 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Apache Junction\", \"CLASS\": \"city\", \"ST\": \"AZ\", \"STFIPS\": \"04\", \"PLACEFIP\": \"02830\", \"CAPITAL\": \"N\", \"AREALAND\": 34.234000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 31814, \"WHITE\": 29478, \"BLACK\": 194, \"AMERI_ES\": 316, \"ASIAN\": 166, \"HAWN_PI\": 23, \"OTHER\": 991, \"MULT_RACE\": 646, \"HISPANIC\": 2801, \"MALES\": 15545, \"FEMALES\": 16269, \"AGE_UNDER5\": 2009, \"AGE_5_17\": 4506, \"AGE_18_21\": 1172, \"AGE_22_29\": 2955, \"AGE_30_39\": 3761, \"AGE_40_49\": 3597, \"AGE_50_64\": 5764, \"AGE_65_UP\": 8050, \"MED_AGE\": 44.100000, \"MED_AGE_M\": 42.100000, \"MED_AGE_F\": 46.000000, \"HOUSEHOLDS\": 13775, \"AVE_HH_SZ\": 2.290000, \"HSEHLD_1_M\": 1720, \"HSEHLD_1_F\": 2021, \"MARHH_CHD\": 2010, \"MARHH_NO_C\": 5271, \"MHH_CHILD\": 336, \"FHH_CHILD\": 690, \"FAMILIES\": 9006, \"AVE_FAM_SZ\": 2.750000, \"HSE_UNITS\": 22771, \"VACANT\": 8996, \"OWNER_OCC\": 11310, \"RENTER_OCC\": 2465 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.547955224049502, 33.410956094532153 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Avondale\", \"CLASS\": \"city\", \"ST\": \"AZ\", \"STFIPS\": \"04\", \"PLACEFIP\": \"04720\", \"CAPITAL\": \"N\", \"AREALAND\": 41.259000, \"AREAWATER\": 0.063000, \"POP_CL\": 6, \"POP2000\": 35883, \"WHITE\": 22704, \"BLACK\": 1866, \"AMERI_ES\": 459, \"ASIAN\": 678, \"HAWN_PI\": 52, \"OTHER\": 8727, \"MULT_RACE\": 1397, \"HISPANIC\": 16589, \"MALES\": 18155, \"FEMALES\": 17728, \"AGE_UNDER5\": 3500, \"AGE_5_17\": 8788, \"AGE_18_21\": 2076, \"AGE_22_29\": 4262, \"AGE_30_39\": 6328, \"AGE_40_49\": 4939, \"AGE_50_64\": 4092, \"AGE_65_UP\": 1898, \"MED_AGE\": 29.000000, \"MED_AGE_M\": 28.500000, \"MED_AGE_F\": 29.400000, \"HOUSEHOLDS\": 10640, \"AVE_HH_SZ\": 3.360000, \"HSEHLD_1_M\": 746, \"HSEHLD_1_F\": 623, \"MARHH_CHD\": 3879, \"MARHH_NO_C\": 2818, \"MHH_CHILD\": 391, \"FHH_CHILD\": 822, \"FAMILIES\": 8724, \"AVE_FAM_SZ\": 3.660000, \"HSE_UNITS\": 11419, \"VACANT\": 779, \"OWNER_OCC\": 8256, \"RENTER_OCC\": 2384 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -112.314959563229365, 33.454208766241322 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bullhead City\", \"CLASS\": \"city\", \"ST\": \"AZ\", \"STFIPS\": \"04\", \"PLACEFIP\": \"08220\", \"CAPITAL\": \"N\", \"AREALAND\": 45.230000, \"AREAWATER\": 0.729000, \"POP_CL\": 6, \"POP2000\": 33769, \"WHITE\": 28896, \"BLACK\": 340, \"AMERI_ES\": 452, \"ASIAN\": 339, \"HAWN_PI\": 25, \"OTHER\": 2787, \"MULT_RACE\": 930, \"HISPANIC\": 6807, \"MALES\": 16768, \"FEMALES\": 17001, \"AGE_UNDER5\": 2155, \"AGE_5_17\": 5439, \"AGE_18_21\": 1396, \"AGE_22_29\": 2895, \"AGE_30_39\": 4186, \"AGE_40_49\": 4421, \"AGE_50_64\": 6798, \"AGE_65_UP\": 6479, \"MED_AGE\": 41.800000, \"MED_AGE_M\": 41.100000, \"MED_AGE_F\": 42.500000, \"HOUSEHOLDS\": 13909, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 1662, \"HSEHLD_1_F\": 1859, \"MARHH_CHD\": 2034, \"MARHH_NO_C\": 4799, \"MHH_CHILD\": 429, \"FHH_CHILD\": 976, \"FAMILIES\": 9112, \"AVE_FAM_SZ\": 2.860000, \"HSE_UNITS\": 18430, \"VACANT\": 4521, \"OWNER_OCC\": 8383, \"RENTER_OCC\": 5526 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -114.588372437463448, 35.115670016793985 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Casa Grande\", \"CLASS\": \"city\", \"ST\": \"AZ\", \"STFIPS\": \"04\", \"PLACEFIP\": \"10530\", \"CAPITAL\": \"N\", \"AREALAND\": 48.167000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 25224, \"WHITE\": 16371, \"BLACK\": 1077, \"AMERI_ES\": 1238, \"ASIAN\": 294, \"HAWN_PI\": 25, \"OTHER\": 5321, \"MULT_RACE\": 898, \"HISPANIC\": 9871, \"MALES\": 12429, \"FEMALES\": 12795, \"AGE_UNDER5\": 2193, \"AGE_5_17\": 5604, \"AGE_18_21\": 1356, \"AGE_22_29\": 2653, \"AGE_30_39\": 3382, \"AGE_40_49\": 3070, \"AGE_50_64\": 3497, \"AGE_65_UP\": 3469, \"MED_AGE\": 32.300000, \"MED_AGE_M\": 30.600000, \"MED_AGE_F\": 34.000000, \"HOUSEHOLDS\": 8920, \"AVE_HH_SZ\": 2.800000, \"HSEHLD_1_M\": 876, \"HSEHLD_1_F\": 1060, \"MARHH_CHD\": 2020, \"MARHH_NO_C\": 2642, \"MHH_CHILD\": 364, \"FHH_CHILD\": 921, \"FAMILIES\": 6544, \"AVE_FAM_SZ\": 3.240000, \"HSE_UNITS\": 11041, \"VACANT\": 2121, \"OWNER_OCC\": 5713, \"RENTER_OCC\": 3207 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.743791613038482, 32.885956556167457 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Casas Adobes\", \"CLASS\": \"CDP\", \"ST\": \"AZ\", \"STFIPS\": \"04\", \"PLACEFIP\": \"10670\", \"CAPITAL\": \"N\", \"AREALAND\": 22.630000, \"AREAWATER\": 0.012000, \"POP_CL\": 7, \"POP2000\": 54011, \"WHITE\": 47889, \"BLACK\": 891, \"AMERI_ES\": 355, \"ASIAN\": 1180, \"HAWN_PI\": 33, \"OTHER\": 2414, \"MULT_RACE\": 1249, \"HISPANIC\": 7434, \"MALES\": 25610, \"FEMALES\": 28401, \"AGE_UNDER5\": 3121, \"AGE_5_17\": 9318, \"AGE_18_21\": 2490, \"AGE_22_29\": 5172, \"AGE_30_39\": 7462, \"AGE_40_49\": 8835, \"AGE_50_64\": 8892, \"AGE_65_UP\": 8721, \"MED_AGE\": 39.400000, \"MED_AGE_M\": 37.600000, \"MED_AGE_F\": 40.900000, \"HOUSEHOLDS\": 22066, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 2299, \"HSEHLD_1_F\": 3645, \"MARHH_CHD\": 4964, \"MARHH_NO_C\": 7020, \"MHH_CHILD\": 416, \"FHH_CHILD\": 1186, \"FAMILIES\": 14724, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 23655, \"VACANT\": 1589, \"OWNER_OCC\": 15029, \"RENTER_OCC\": 7037 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.009805656337207, 32.346370674081044 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Catalina Foothills\", \"CLASS\": \"CDP\", \"ST\": \"AZ\", \"STFIPS\": \"04\", \"PLACEFIP\": \"11230\", \"CAPITAL\": \"N\", \"AREALAND\": 44.474000, \"AREAWATER\": 0.118000, \"POP_CL\": 7, \"POP2000\": 53794, \"WHITE\": 49140, \"BLACK\": 653, \"AMERI_ES\": 265, \"ASIAN\": 1744, \"HAWN_PI\": 50, \"OTHER\": 931, \"MULT_RACE\": 1011, \"HISPANIC\": 4062, \"MALES\": 25984, \"FEMALES\": 27810, \"AGE_UNDER5\": 2098, \"AGE_5_17\": 8606, \"AGE_18_21\": 1917, \"AGE_22_29\": 3858, \"AGE_30_39\": 5505, \"AGE_40_49\": 9484, \"AGE_50_64\": 12113, \"AGE_65_UP\": 10213, \"MED_AGE\": 45.400000, \"MED_AGE_M\": 44.800000, \"MED_AGE_F\": 45.900000, \"HOUSEHOLDS\": 23948, \"AVE_HH_SZ\": 2.230000, \"HSEHLD_1_M\": 2848, \"HSEHLD_1_F\": 4058, \"MARHH_CHD\": 4767, \"MARHH_NO_C\": 8945, \"MHH_CHILD\": 304, \"FHH_CHILD\": 810, \"FAMILIES\": 15594, \"AVE_FAM_SZ\": 2.760000, \"HSE_UNITS\": 26372, \"VACANT\": 2424, \"OWNER_OCC\": 17018, \"RENTER_OCC\": 6930 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -110.883836379186661, 32.293992434579906 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Chandler\", \"CLASS\": \"city\", \"ST\": \"AZ\", \"STFIPS\": \"04\", \"PLACEFIP\": \"12000\", \"CAPITAL\": \"N\", \"AREALAND\": 57.886000, \"AREAWATER\": 0.096000, \"POP_CL\": 8, \"POP2000\": 176581, \"WHITE\": 136296, \"BLACK\": 6151, \"AMERI_ES\": 2121, \"ASIAN\": 7453, \"HAWN_PI\": 251, \"OTHER\": 18993, \"MULT_RACE\": 5316, \"HISPANIC\": 37059, \"MALES\": 88140, \"FEMALES\": 88441, \"AGE_UNDER5\": 16009, \"AGE_5_17\": 36616, \"AGE_18_21\": 8464, \"AGE_22_29\": 22683, \"AGE_30_39\": 35594, \"AGE_40_49\": 27208, \"AGE_50_64\": 19723, \"AGE_65_UP\": 10284, \"MED_AGE\": 31.200000, \"MED_AGE_M\": 30.600000, \"MED_AGE_F\": 31.800000, \"HOUSEHOLDS\": 62377, \"AVE_HH_SZ\": 2.820000, \"HSEHLD_1_M\": 5665, \"HSEHLD_1_F\": 6366, \"MARHH_CHD\": 19610, \"MARHH_NO_C\": 16247, \"MHH_CHILD\": 1687, \"FHH_CHILD\": 4360, \"FAMILIES\": 45382, \"AVE_FAM_SZ\": 3.260000, \"HSE_UNITS\": 66592, \"VACANT\": 4215, \"OWNER_OCC\": 45909, \"RENTER_OCC\": 16468 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.863456710156598, 33.297761026632024 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cottonwood-Verde Village\", \"CLASS\": \"CDP\", \"ST\": \"AZ\", \"STFIPS\": \"04\", \"PLACEFIP\": \"16485\", \"CAPITAL\": \"N\", \"AREALAND\": 8.765000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10610, \"WHITE\": 9663, \"BLACK\": 34, \"AMERI_ES\": 132, \"ASIAN\": 49, \"HAWN_PI\": 6, \"OTHER\": 471, \"MULT_RACE\": 255, \"HISPANIC\": 1186, \"MALES\": 5068, \"FEMALES\": 5542, \"AGE_UNDER5\": 608, \"AGE_5_17\": 2002, \"AGE_18_21\": 399, \"AGE_22_29\": 703, \"AGE_30_39\": 1284, \"AGE_40_49\": 1499, \"AGE_50_64\": 1791, \"AGE_65_UP\": 2324, \"MED_AGE\": 42.000000, \"MED_AGE_M\": 40.200000, \"MED_AGE_F\": 43.600000, \"HOUSEHOLDS\": 4071, \"AVE_HH_SZ\": 2.530000, \"HSEHLD_1_M\": 334, \"HSEHLD_1_F\": 525, \"MARHH_CHD\": 893, \"MARHH_NO_C\": 1558, \"MHH_CHILD\": 81, \"FHH_CHILD\": 232, \"FAMILIES\": 2989, \"AVE_FAM_SZ\": 2.920000, \"HSE_UNITS\": 4290, \"VACANT\": 219, \"OWNER_OCC\": 3330, \"RENTER_OCC\": 741 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.992420305214992, 34.708407800663707 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Douglas\", \"CLASS\": \"city\", \"ST\": \"AZ\", \"STFIPS\": \"04\", \"PLACEFIP\": \"20050\", \"CAPITAL\": \"N\", \"AREALAND\": 7.725000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14312, \"WHITE\": 9045, \"BLACK\": 70, \"AMERI_ES\": 155, \"ASIAN\": 63, \"HAWN_PI\": 12, \"OTHER\": 4552, \"MULT_RACE\": 415, \"HISPANIC\": 12306, \"MALES\": 6884, \"FEMALES\": 7428, \"AGE_UNDER5\": 1280, \"AGE_5_17\": 3518, \"AGE_18_21\": 893, \"AGE_22_29\": 1385, \"AGE_30_39\": 1725, \"AGE_40_49\": 1810, \"AGE_50_64\": 1828, \"AGE_65_UP\": 1873, \"MED_AGE\": 30.500000, \"MED_AGE_M\": 29.300000, \"MED_AGE_F\": 31.700000, \"HOUSEHOLDS\": 4526, \"AVE_HH_SZ\": 3.070000, \"HSEHLD_1_M\": 425, \"HSEHLD_1_F\": 534, \"MARHH_CHD\": 1201, \"MARHH_NO_C\": 1022, \"MHH_CHILD\": 117, \"FHH_CHILD\": 615, \"FAMILIES\": 3452, \"AVE_FAM_SZ\": 3.590000, \"HSE_UNITS\": 5186, \"VACANT\": 660, \"OWNER_OCC\": 2730, \"RENTER_OCC\": 1796 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -109.541360828401267, 31.344911783282683 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Drexel Heights\", \"CLASS\": \"CDP\", \"ST\": \"AZ\", \"STFIPS\": \"04\", \"PLACEFIP\": \"20540\", \"CAPITAL\": \"N\", \"AREALAND\": 19.676000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 23849, \"WHITE\": 13867, \"BLACK\": 625, \"AMERI_ES\": 815, \"ASIAN\": 195, \"HAWN_PI\": 23, \"OTHER\": 7460, \"MULT_RACE\": 864, \"HISPANIC\": 14327, \"MALES\": 11752, \"FEMALES\": 12097, \"AGE_UNDER5\": 1877, \"AGE_5_17\": 5734, \"AGE_18_21\": 1354, \"AGE_22_29\": 2393, \"AGE_30_39\": 3453, \"AGE_40_49\": 3627, \"AGE_50_64\": 3477, \"AGE_65_UP\": 1934, \"MED_AGE\": 31.800000, \"MED_AGE_M\": 30.500000, \"MED_AGE_F\": 32.900000, \"HOUSEHOLDS\": 7505, \"AVE_HH_SZ\": 3.170000, \"HSEHLD_1_M\": 583, \"HSEHLD_1_F\": 581, \"MARHH_CHD\": 2240, \"MARHH_NO_C\": 2245, \"MHH_CHILD\": 258, \"FHH_CHILD\": 651, \"FAMILIES\": 5987, \"AVE_FAM_SZ\": 3.530000, \"HSE_UNITS\": 7957, \"VACANT\": 452, \"OWNER_OCC\": 6260, \"RENTER_OCC\": 1245 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.043887579173202, 32.138991710632318 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Eloy\", \"CLASS\": \"city\", \"ST\": \"AZ\", \"STFIPS\": \"04\", \"PLACEFIP\": \"22360\", \"CAPITAL\": \"N\", \"AREALAND\": 71.670000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10375, \"WHITE\": 5468, \"BLACK\": 552, \"AMERI_ES\": 465, \"ASIAN\": 124, \"HAWN_PI\": 11, \"OTHER\": 3266, \"MULT_RACE\": 489, \"HISPANIC\": 7717, \"MALES\": 5999, \"FEMALES\": 4376, \"AGE_UNDER5\": 923, \"AGE_5_17\": 2578, \"AGE_18_21\": 722, \"AGE_22_29\": 1435, \"AGE_30_39\": 1728, \"AGE_40_49\": 1286, \"AGE_50_64\": 1042, \"AGE_65_UP\": 661, \"MED_AGE\": 27.500000, \"MED_AGE_M\": 28.300000, \"MED_AGE_F\": 25.900000, \"HOUSEHOLDS\": 2492, \"AVE_HH_SZ\": 3.570000, \"HSEHLD_1_M\": 198, \"HSEHLD_1_F\": 188, \"MARHH_CHD\": 753, \"MARHH_NO_C\": 478, \"MHH_CHILD\": 126, \"FHH_CHILD\": 369, \"FAMILIES\": 1989, \"AVE_FAM_SZ\": 3.940000, \"HSE_UNITS\": 2734, \"VACANT\": 242, \"OWNER_OCC\": 1548, \"RENTER_OCC\": 944 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.599917489549895, 32.763511114070461 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Flagstaff\", \"CLASS\": \"city\", \"ST\": \"AZ\", \"STFIPS\": \"04\", \"PLACEFIP\": \"23620\", \"CAPITAL\": \"N\", \"AREALAND\": 63.579000, \"AREAWATER\": 0.037000, \"POP_CL\": 7, \"POP2000\": 52894, \"WHITE\": 41214, \"BLACK\": 927, \"AMERI_ES\": 5284, \"ASIAN\": 660, \"HAWN_PI\": 65, \"OTHER\": 3201, \"MULT_RACE\": 1543, \"HISPANIC\": 8500, \"MALES\": 26226, \"FEMALES\": 26668, \"AGE_UNDER5\": 3546, \"AGE_5_17\": 9288, \"AGE_18_21\": 6611, \"AGE_22_29\": 9895, \"AGE_30_39\": 7249, \"AGE_40_49\": 7415, \"AGE_50_64\": 6064, \"AGE_65_UP\": 2826, \"MED_AGE\": 26.800000, \"MED_AGE_M\": 26.600000, \"MED_AGE_F\": 27.200000, \"HOUSEHOLDS\": 19306, \"AVE_HH_SZ\": 2.590000, \"HSEHLD_1_M\": 2168, \"HSEHLD_1_F\": 2310, \"MARHH_CHD\": 4229, \"MARHH_NO_C\": 4258, \"MHH_CHILD\": 529, \"FHH_CHILD\": 1574, \"FAMILIES\": 11604, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 21396, \"VACANT\": 2090, \"OWNER_OCC\": 9304, \"RENTER_OCC\": 10002 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.630924261493462, 35.199164649434344 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Florence\", \"CLASS\": \"town\", \"ST\": \"AZ\", \"STFIPS\": \"04\", \"PLACEFIP\": \"23760\", \"CAPITAL\": \"N\", \"AREALAND\": 8.294000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 17054, \"WHITE\": 9741, \"BLACK\": 1563, \"AMERI_ES\": 753, \"ASIAN\": 141, \"HAWN_PI\": 9, \"OTHER\": 4568, \"MULT_RACE\": 279, \"HISPANIC\": 6041, \"MALES\": 14128, \"FEMALES\": 2926, \"AGE_UNDER5\": 333, \"AGE_5_17\": 961, \"AGE_18_21\": 1256, \"AGE_22_29\": 3587, \"AGE_30_39\": 4432, \"AGE_40_49\": 2978, \"AGE_50_64\": 1881, \"AGE_65_UP\": 1626, \"MED_AGE\": 35.400000, \"MED_AGE_M\": 34.800000, \"MED_AGE_F\": 43.000000, \"HOUSEHOLDS\": 2226, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 233, \"HSEHLD_1_F\": 345, \"MARHH_CHD\": 324, \"MARHH_NO_C\": 868, \"MHH_CHILD\": 48, \"FHH_CHILD\": 161, \"FAMILIES\": 1540, \"AVE_FAM_SZ\": 2.800000, \"HSE_UNITS\": 3216, \"VACANT\": 990, \"OWNER_OCC\": 1579, \"RENTER_OCC\": 647 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.384471336174684, 33.042207600715386 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Flowing Wells\", \"CLASS\": \"CDP\", \"ST\": \"AZ\", \"STFIPS\": \"04\", \"PLACEFIP\": \"23960\", \"CAPITAL\": \"N\", \"AREALAND\": 3.410000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 15050, \"WHITE\": 12674, \"BLACK\": 134, \"AMERI_ES\": 219, \"ASIAN\": 99, \"HAWN_PI\": 8, \"OTHER\": 1372, \"MULT_RACE\": 544, \"HISPANIC\": 3290, \"MALES\": 7191, \"FEMALES\": 7859, \"AGE_UNDER5\": 995, \"AGE_5_17\": 2831, \"AGE_18_21\": 679, \"AGE_22_29\": 1471, \"AGE_30_39\": 2088, \"AGE_40_49\": 2024, \"AGE_50_64\": 2221, \"AGE_65_UP\": 2741, \"MED_AGE\": 37.600000, \"MED_AGE_M\": 35.500000, \"MED_AGE_F\": 39.700000, \"HOUSEHOLDS\": 6250, \"AVE_HH_SZ\": 2.410000, \"HSEHLD_1_M\": 800, \"HSEHLD_1_F\": 1178, \"MARHH_CHD\": 1042, \"MARHH_NO_C\": 1600, \"MHH_CHILD\": 211, \"FHH_CHILD\": 505, \"FAMILIES\": 3853, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 7210, \"VACANT\": 960, \"OWNER_OCC\": 4968, \"RENTER_OCC\": 1282 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.00882084647094, 32.291307664594768 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fortuna Foothills\", \"CLASS\": \"CDP\", \"ST\": \"AZ\", \"STFIPS\": \"04\", \"PLACEFIP\": \"25030\", \"CAPITAL\": \"N\", \"AREALAND\": 40.017000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 20478, \"WHITE\": 18443, \"BLACK\": 91, \"AMERI_ES\": 143, \"ASIAN\": 107, \"HAWN_PI\": 15, \"OTHER\": 1348, \"MULT_RACE\": 331, \"HISPANIC\": 2609, \"MALES\": 10111, \"FEMALES\": 10367, \"AGE_UNDER5\": 692, \"AGE_5_17\": 1718, \"AGE_18_21\": 318, \"AGE_22_29\": 865, \"AGE_30_39\": 1357, \"AGE_40_49\": 1423, \"AGE_50_64\": 5001, \"AGE_65_UP\": 9104, \"MED_AGE\": 62.900000, \"MED_AGE_M\": 63.800000, \"MED_AGE_F\": 62.000000, \"HOUSEHOLDS\": 9652, \"AVE_HH_SZ\": 2.110000, \"HSEHLD_1_M\": 818, \"HSEHLD_1_F\": 1036, \"MARHH_CHD\": 883, \"MARHH_NO_C\": 5979, \"MHH_CHILD\": 92, \"FHH_CHILD\": 174, \"FAMILIES\": 7363, \"AVE_FAM_SZ\": 2.370000, \"HSE_UNITS\": 14961, \"VACANT\": 5309, \"OWNER_OCC\": 8934, \"RENTER_OCC\": 718 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -114.411589971760804, 32.657735075908988 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fountain Hills\", \"CLASS\": \"town\", \"ST\": \"AZ\", \"STFIPS\": \"04\", \"PLACEFIP\": \"25300\", \"CAPITAL\": \"N\", \"AREALAND\": 18.167000, \"AREAWATER\": 0.055000, \"POP_CL\": 6, \"POP2000\": 20235, \"WHITE\": 19478, \"BLACK\": 119, \"AMERI_ES\": 99, \"ASIAN\": 180, \"HAWN_PI\": 12, \"OTHER\": 133, \"MULT_RACE\": 214, \"HISPANIC\": 618, \"MALES\": 9771, \"FEMALES\": 10464, \"AGE_UNDER5\": 928, \"AGE_5_17\": 2821, \"AGE_18_21\": 578, \"AGE_22_29\": 1083, \"AGE_30_39\": 2596, \"AGE_40_49\": 3375, \"AGE_50_64\": 4974, \"AGE_65_UP\": 3880, \"MED_AGE\": 46.400000, \"MED_AGE_M\": 46.100000, \"MED_AGE_F\": 46.600000, \"HOUSEHOLDS\": 8653, \"AVE_HH_SZ\": 2.340000, \"HSEHLD_1_M\": 641, \"HSEHLD_1_F\": 1080, \"MARHH_CHD\": 1630, \"MARHH_NO_C\": 4143, \"MHH_CHILD\": 92, \"FHH_CHILD\": 308, \"FAMILIES\": 6514, \"AVE_FAM_SZ\": 2.670000, \"HSE_UNITS\": 10491, \"VACANT\": 1838, \"OWNER_OCC\": 7243, \"RENTER_OCC\": 1410 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.728463715248424, 33.604815661563748 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Gilbert\", \"CLASS\": \"town\", \"ST\": \"AZ\", \"STFIPS\": \"04\", \"PLACEFIP\": \"27400\", \"CAPITAL\": \"N\", \"AREALAND\": 42.956000, \"AREAWATER\": 0.240000, \"POP_CL\": 8, \"POP2000\": 109697, \"WHITE\": 94043, \"BLACK\": 2639, \"AMERI_ES\": 676, \"ASIAN\": 3937, \"HAWN_PI\": 134, \"OTHER\": 5233, \"MULT_RACE\": 3035, \"HISPANIC\": 13026, \"MALES\": 54531, \"FEMALES\": 55166, \"AGE_UNDER5\": 11285, \"AGE_5_17\": 26197, \"AGE_18_21\": 4741, \"AGE_22_29\": 12343, \"AGE_30_39\": 22844, \"AGE_40_49\": 16752, \"AGE_50_64\": 11417, \"AGE_65_UP\": 4118, \"MED_AGE\": 30.100000, \"MED_AGE_M\": 30.000000, \"MED_AGE_F\": 30.300000, \"HOUSEHOLDS\": 35405, \"AVE_HH_SZ\": 3.100000, \"HSEHLD_1_M\": 2182, \"HSEHLD_1_F\": 2318, \"MARHH_CHD\": 15184, \"MARHH_NO_C\": 9429, \"MHH_CHILD\": 854, \"FHH_CHILD\": 1947, \"FAMILIES\": 28915, \"AVE_FAM_SZ\": 3.420000, \"HSE_UNITS\": 37007, \"VACANT\": 1602, \"OWNER_OCC\": 30067, \"RENTER_OCC\": 5338 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.762348855992371, 33.344443712537071 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Glendale\", \"CLASS\": \"city\", \"ST\": \"AZ\", \"STFIPS\": \"04\", \"PLACEFIP\": \"27820\", \"CAPITAL\": \"N\", \"AREALAND\": 55.684000, \"AREAWATER\": 0.067000, \"POP_CL\": 8, \"POP2000\": 218812, \"WHITE\": 165293, \"BLACK\": 10270, \"AMERI_ES\": 3181, \"ASIAN\": 6003, \"HAWN_PI\": 293, \"OTHER\": 26188, \"MULT_RACE\": 7584, \"HISPANIC\": 54343, \"MALES\": 109168, \"FEMALES\": 109644, \"AGE_UNDER5\": 18562, \"AGE_5_17\": 47300, \"AGE_18_21\": 13880, \"AGE_22_29\": 26575, \"AGE_30_39\": 35471, \"AGE_40_49\": 32289, \"AGE_50_64\": 28556, \"AGE_65_UP\": 16179, \"MED_AGE\": 30.800000, \"MED_AGE_M\": 29.800000, \"MED_AGE_F\": 32.000000, \"HOUSEHOLDS\": 75700, \"AVE_HH_SZ\": 2.850000, \"HSEHLD_1_M\": 7632, \"HSEHLD_1_F\": 8475, \"MARHH_CHD\": 21310, \"MARHH_NO_C\": 19167, \"MHH_CHILD\": 2516, \"FHH_CHILD\": 6345, \"FAMILIES\": 54384, \"AVE_FAM_SZ\": 3.330000, \"HSE_UNITS\": 79667, \"VACANT\": 3967, \"OWNER_OCC\": 49087, \"RENTER_OCC\": 26613 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -112.199229602868229, 33.580732324088835 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Goodyear\", \"CLASS\": \"city\", \"ST\": \"AZ\", \"STFIPS\": \"04\", \"PLACEFIP\": \"28380\", \"CAPITAL\": \"N\", \"AREALAND\": 116.460000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 18911, \"WHITE\": 14775, \"BLACK\": 983, \"AMERI_ES\": 200, \"ASIAN\": 323, \"HAWN_PI\": 16, \"OTHER\": 2056, \"MULT_RACE\": 558, \"HISPANIC\": 3933, \"MALES\": 9625, \"FEMALES\": 9286, \"AGE_UNDER5\": 1217, \"AGE_5_17\": 2981, \"AGE_18_21\": 819, \"AGE_22_29\": 2230, \"AGE_30_39\": 3464, \"AGE_40_49\": 2868, \"AGE_50_64\": 3452, \"AGE_65_UP\": 1880, \"MED_AGE\": 36.500000, \"MED_AGE_M\": 36.200000, \"MED_AGE_F\": 36.700000, \"HOUSEHOLDS\": 6179, \"AVE_HH_SZ\": 2.680000, \"HSEHLD_1_M\": 437, \"HSEHLD_1_F\": 433, \"MARHH_CHD\": 1637, \"MARHH_NO_C\": 2755, \"MHH_CHILD\": 122, \"FHH_CHILD\": 264, \"FAMILIES\": 4988, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 6771, \"VACANT\": 592, \"OWNER_OCC\": 5236, \"RENTER_OCC\": 943 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -112.398890343517436, 33.389662111222869 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Green Valley\", \"CLASS\": \"CDP\", \"ST\": \"AZ\", \"STFIPS\": \"04\", \"PLACEFIP\": \"29710\", \"CAPITAL\": \"N\", \"AREALAND\": 26.242000, \"AREAWATER\": 0.019000, \"POP_CL\": 6, \"POP2000\": 17283, \"WHITE\": 16997, \"BLACK\": 31, \"AMERI_ES\": 32, \"ASIAN\": 57, \"HAWN_PI\": 9, \"OTHER\": 63, \"MULT_RACE\": 94, \"HISPANIC\": 394, \"MALES\": 7665, \"FEMALES\": 9618, \"AGE_UNDER5\": 73, \"AGE_5_17\": 197, \"AGE_18_21\": 64, \"AGE_22_29\": 158, \"AGE_30_39\": 210, \"AGE_40_49\": 443, \"AGE_50_64\": 3476, \"AGE_65_UP\": 12662, \"MED_AGE\": 72.200000, \"MED_AGE_M\": 72.600000, \"MED_AGE_F\": 71.800000, \"HOUSEHOLDS\": 9995, \"AVE_HH_SZ\": 1.710000, \"HSEHLD_1_M\": 923, \"HSEHLD_1_F\": 2488, \"MARHH_CHD\": 99, \"MARHH_NO_C\": 5881, \"MHH_CHILD\": 10, \"FHH_CHILD\": 41, \"FAMILIES\": 6294, \"AVE_FAM_SZ\": 2.070000, \"HSE_UNITS\": 13263, \"VACANT\": 3268, \"OWNER_OCC\": 8808, \"RENTER_OCC\": 1187 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.000040343708235, 31.855619586771216 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Kingman\", \"CLASS\": \"city\", \"ST\": \"AZ\", \"STFIPS\": \"04\", \"PLACEFIP\": \"37620\", \"CAPITAL\": \"N\", \"AREALAND\": 29.968000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 20069, \"WHITE\": 18051, \"BLACK\": 111, \"AMERI_ES\": 398, \"ASIAN\": 288, \"HAWN_PI\": 28, \"OTHER\": 685, \"MULT_RACE\": 508, \"HISPANIC\": 1856, \"MALES\": 9909, \"FEMALES\": 10160, \"AGE_UNDER5\": 1309, \"AGE_5_17\": 3712, \"AGE_18_21\": 907, \"AGE_22_29\": 1691, \"AGE_30_39\": 2512, \"AGE_40_49\": 2865, \"AGE_50_64\": 3502, \"AGE_65_UP\": 3571, \"MED_AGE\": 39.600000, \"MED_AGE_M\": 38.400000, \"MED_AGE_F\": 40.700000, \"HOUSEHOLDS\": 7854, \"AVE_HH_SZ\": 2.470000, \"HSEHLD_1_M\": 908, \"HSEHLD_1_F\": 1093, \"MARHH_CHD\": 1642, \"MARHH_NO_C\": 2645, \"MHH_CHILD\": 220, \"FHH_CHILD\": 503, \"FAMILIES\": 5428, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 8604, \"VACANT\": 750, \"OWNER_OCC\": 5604, \"RENTER_OCC\": 2250 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -114.025510928558646, 35.208468946948258 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lake Havasu City\", \"CLASS\": \"city\", \"ST\": \"AZ\", \"STFIPS\": \"04\", \"PLACEFIP\": \"39370\", \"CAPITAL\": \"N\", \"AREALAND\": 43.040000, \"AREAWATER\": 0.026000, \"POP_CL\": 6, \"POP2000\": 41938, \"WHITE\": 39568, \"BLACK\": 129, \"AMERI_ES\": 291, \"ASIAN\": 245, \"HAWN_PI\": 41, \"OTHER\": 1051, \"MULT_RACE\": 613, \"HISPANIC\": 3298, \"MALES\": 20624, \"FEMALES\": 21314, \"AGE_UNDER5\": 1957, \"AGE_5_17\": 6194, \"AGE_18_21\": 1511, \"AGE_22_29\": 2554, \"AGE_30_39\": 4571, \"AGE_40_49\": 5440, \"AGE_50_64\": 9016, \"AGE_65_UP\": 10695, \"MED_AGE\": 47.500000, \"MED_AGE_M\": 46.200000, \"MED_AGE_F\": 48.800000, \"HOUSEHOLDS\": 17911, \"AVE_HH_SZ\": 2.320000, \"HSEHLD_1_M\": 1751, \"HSEHLD_1_F\": 2339, \"MARHH_CHD\": 2812, \"MARHH_NO_C\": 7824, \"MHH_CHILD\": 414, \"FHH_CHILD\": 805, \"FAMILIES\": 12722, \"AVE_FAM_SZ\": 2.690000, \"HSE_UNITS\": 23018, \"VACANT\": 5107, \"OWNER_OCC\": 13903, \"RENTER_OCC\": 4008 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -114.308781393413213, 34.48999166001699 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Marana\", \"CLASS\": \"town\", \"ST\": \"AZ\", \"STFIPS\": \"04\", \"PLACEFIP\": \"44270\", \"CAPITAL\": \"N\", \"AREALAND\": 72.655000, \"AREAWATER\": 0.905000, \"POP_CL\": 6, \"POP2000\": 13556, \"WHITE\": 11094, \"BLACK\": 392, \"AMERI_ES\": 286, \"ASIAN\": 334, \"HAWN_PI\": 20, \"OTHER\": 1014, \"MULT_RACE\": 416, \"HISPANIC\": 2663, \"MALES\": 6791, \"FEMALES\": 6765, \"AGE_UNDER5\": 1170, \"AGE_5_17\": 2456, \"AGE_18_21\": 531, \"AGE_22_29\": 1491, \"AGE_30_39\": 2581, \"AGE_40_49\": 1862, \"AGE_50_64\": 2171, \"AGE_65_UP\": 1294, \"MED_AGE\": 34.500000, \"MED_AGE_M\": 34.200000, \"MED_AGE_F\": 34.700000, \"HOUSEHOLDS\": 4944, \"AVE_HH_SZ\": 2.660000, \"HSEHLD_1_M\": 406, \"HSEHLD_1_F\": 444, \"MARHH_CHD\": 1436, \"MARHH_NO_C\": 1830, \"MHH_CHILD\": 100, \"FHH_CHILD\": 256, \"FAMILIES\": 3825, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 5702, \"VACANT\": 758, \"OWNER_OCC\": 4090, \"RENTER_OCC\": 854 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.125396019778819, 32.386541909818838 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mesa\", \"CLASS\": \"city\", \"ST\": \"AZ\", \"STFIPS\": \"04\", \"PLACEFIP\": \"46000\", \"CAPITAL\": \"N\", \"AREALAND\": 124.987000, \"AREAWATER\": 0.195000, \"POP_CL\": 8, \"POP2000\": 396375, \"WHITE\": 323655, \"BLACK\": 9977, \"AMERI_ES\": 6572, \"ASIAN\": 5917, \"HAWN_PI\": 932, \"OTHER\": 38271, \"MULT_RACE\": 11051, \"HISPANIC\": 78281, \"MALES\": 196378, \"FEMALES\": 199997, \"AGE_UNDER5\": 32592, \"AGE_5_17\": 75785, \"AGE_18_21\": 24746, \"AGE_22_29\": 52419, \"AGE_30_39\": 57871, \"AGE_40_49\": 50436, \"AGE_50_64\": 49650, \"AGE_65_UP\": 52876, \"MED_AGE\": 32.000000, \"MED_AGE_M\": 30.700000, \"MED_AGE_F\": 33.600000, \"HOUSEHOLDS\": 146643, \"AVE_HH_SZ\": 2.680000, \"HSEHLD_1_M\": 15205, \"HSEHLD_1_F\": 20314, \"MARHH_CHD\": 35199, \"MARHH_NO_C\": 42068, \"MHH_CHILD\": 3881, \"FHH_CHILD\": 9848, \"FAMILIES\": 99856, \"AVE_FAM_SZ\": 3.200000, \"HSE_UNITS\": 175701, \"VACANT\": 29058, \"OWNER_OCC\": 97308, \"RENTER_OCC\": 49335 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.746376056876215, 33.411203676979909 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mohave Valley\", \"CLASS\": \"CDP\", \"ST\": \"AZ\", \"STFIPS\": \"04\", \"PLACEFIP\": \"47400\", \"CAPITAL\": \"N\", \"AREALAND\": 45.256000, \"AREAWATER\": 0.156000, \"POP_CL\": 6, \"POP2000\": 13694, \"WHITE\": 12433, \"BLACK\": 62, \"AMERI_ES\": 320, \"ASIAN\": 129, \"HAWN_PI\": 16, \"OTHER\": 447, \"MULT_RACE\": 287, \"HISPANIC\": 1640, \"MALES\": 6912, \"FEMALES\": 6782, \"AGE_UNDER5\": 808, \"AGE_5_17\": 2558, \"AGE_18_21\": 484, \"AGE_22_29\": 936, \"AGE_30_39\": 1834, \"AGE_40_49\": 2016, \"AGE_50_64\": 2804, \"AGE_65_UP\": 2254, \"MED_AGE\": 41.100000, \"MED_AGE_M\": 41.100000, \"MED_AGE_F\": 41.100000, \"HOUSEHOLDS\": 5217, \"AVE_HH_SZ\": 2.610000, \"HSEHLD_1_M\": 545, \"HSEHLD_1_F\": 447, \"MARHH_CHD\": 1070, \"MARHH_NO_C\": 2029, \"MHH_CHILD\": 178, \"FHH_CHILD\": 295, \"FAMILIES\": 3851, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 6672, \"VACANT\": 1455, \"OWNER_OCC\": 4139, \"RENTER_OCC\": 1078 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -114.584334085609953, 34.956955793322201 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"New Kingman-Butler\", \"CLASS\": \"CDP\", \"ST\": \"AZ\", \"STFIPS\": \"04\", \"PLACEFIP\": \"49270\", \"CAPITAL\": \"N\", \"AREALAND\": 14.640000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14810, \"WHITE\": 13514, \"BLACK\": 65, \"AMERI_ES\": 250, \"ASIAN\": 63, \"HAWN_PI\": 17, \"OTHER\": 444, \"MULT_RACE\": 457, \"HISPANIC\": 1374, \"MALES\": 7231, \"FEMALES\": 7579, \"AGE_UNDER5\": 985, \"AGE_5_17\": 2821, \"AGE_18_21\": 692, \"AGE_22_29\": 1192, \"AGE_30_39\": 1786, \"AGE_40_49\": 1988, \"AGE_50_64\": 2500, \"AGE_65_UP\": 2846, \"MED_AGE\": 39.700000, \"MED_AGE_M\": 39.200000, \"MED_AGE_F\": 40.100000, \"HOUSEHOLDS\": 5895, \"AVE_HH_SZ\": 2.510000, \"HSEHLD_1_M\": 688, \"HSEHLD_1_F\": 797, \"MARHH_CHD\": 1021, \"MARHH_NO_C\": 1921, \"MHH_CHILD\": 194, \"FHH_CHILD\": 429, \"FAMILIES\": 3978, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 6630, \"VACANT\": 735, \"OWNER_OCC\": 4355, \"RENTER_OCC\": 1540 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -114.020250749754055, 35.25507392379464 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"New River\", \"CLASS\": \"CDP\", \"ST\": \"AZ\", \"STFIPS\": \"04\", \"PLACEFIP\": \"49360\", \"CAPITAL\": \"N\", \"AREALAND\": 70.826000, \"AREAWATER\": 0.005000, \"POP_CL\": 6, \"POP2000\": 10740, \"WHITE\": 10296, \"BLACK\": 45, \"AMERI_ES\": 64, \"ASIAN\": 49, \"HAWN_PI\": 5, \"OTHER\": 134, \"MULT_RACE\": 147, \"HISPANIC\": 521, \"MALES\": 5474, \"FEMALES\": 5266, \"AGE_UNDER5\": 685, \"AGE_5_17\": 2107, \"AGE_18_21\": 342, \"AGE_22_29\": 664, \"AGE_30_39\": 1906, \"AGE_40_49\": 2087, \"AGE_50_64\": 2145, \"AGE_65_UP\": 804, \"MED_AGE\": 38.500000, \"MED_AGE_M\": 38.600000, \"MED_AGE_F\": 38.300000, \"HOUSEHOLDS\": 3921, \"AVE_HH_SZ\": 2.730000, \"HSEHLD_1_M\": 334, \"HSEHLD_1_F\": 266, \"MARHH_CHD\": 1165, \"MARHH_NO_C\": 1536, \"MHH_CHILD\": 92, \"FHH_CHILD\": 126, \"FAMILIES\": 3066, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 4514, \"VACANT\": 593, \"OWNER_OCC\": 3627, \"RENTER_OCC\": 294 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -112.085682450908521, 33.869154955461752 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Nogales\", \"CLASS\": \"city\", \"ST\": \"AZ\", \"STFIPS\": \"04\", \"PLACEFIP\": \"49640\", \"CAPITAL\": \"N\", \"AREALAND\": 20.834000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 20878, \"WHITE\": 16249, \"BLACK\": 78, \"AMERI_ES\": 120, \"ASIAN\": 67, \"HAWN_PI\": 15, \"OTHER\": 3751, \"MULT_RACE\": 598, \"HISPANIC\": 19539, \"MALES\": 9779, \"FEMALES\": 11099, \"AGE_UNDER5\": 1830, \"AGE_5_17\": 5398, \"AGE_18_21\": 1223, \"AGE_22_29\": 2039, \"AGE_30_39\": 2638, \"AGE_40_49\": 2740, \"AGE_50_64\": 2750, \"AGE_65_UP\": 2260, \"MED_AGE\": 29.800000, \"MED_AGE_M\": 27.300000, \"MED_AGE_F\": 32.200000, \"HOUSEHOLDS\": 5985, \"AVE_HH_SZ\": 3.450000, \"HSEHLD_1_M\": 363, \"HSEHLD_1_F\": 538, \"MARHH_CHD\": 2014, \"MARHH_NO_C\": 1353, \"MHH_CHILD\": 126, \"FHH_CHILD\": 727, \"FAMILIES\": 4937, \"AVE_FAM_SZ\": 3.860000, \"HSE_UNITS\": 6501, \"VACANT\": 516, \"OWNER_OCC\": 3429, \"RENTER_OCC\": 2556 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -110.939187974017784, 31.354009405570196 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Oro Valley\", \"CLASS\": \"town\", \"ST\": \"AZ\", \"STFIPS\": \"04\", \"PLACEFIP\": \"51600\", \"CAPITAL\": \"N\", \"AREALAND\": 31.828000, \"AREAWATER\": 0.100000, \"POP_CL\": 6, \"POP2000\": 29700, \"WHITE\": 27652, \"BLACK\": 315, \"AMERI_ES\": 122, \"ASIAN\": 570, \"HAWN_PI\": 35, \"OTHER\": 543, \"MULT_RACE\": 463, \"HISPANIC\": 2218, \"MALES\": 14419, \"FEMALES\": 15281, \"AGE_UNDER5\": 1493, \"AGE_5_17\": 4899, \"AGE_18_21\": 844, \"AGE_22_29\": 1572, \"AGE_30_39\": 3464, \"AGE_40_49\": 4651, \"AGE_50_64\": 6037, \"AGE_65_UP\": 6740, \"MED_AGE\": 45.300000, \"MED_AGE_M\": 44.800000, \"MED_AGE_F\": 45.700000, \"HOUSEHOLDS\": 12249, \"AVE_HH_SZ\": 2.410000, \"HSEHLD_1_M\": 893, \"HSEHLD_1_F\": 1488, \"MARHH_CHD\": 2811, \"MARHH_NO_C\": 5738, \"MHH_CHILD\": 124, \"FHH_CHILD\": 376, \"FAMILIES\": 9380, \"AVE_FAM_SZ\": 2.760000, \"HSE_UNITS\": 13946, \"VACANT\": 1697, \"OWNER_OCC\": 10319, \"RENTER_OCC\": 1930 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -110.975955135912415, 32.421249619775168 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Paradise Valley\", \"CLASS\": \"town\", \"ST\": \"AZ\", \"STFIPS\": \"04\", \"PLACEFIP\": \"52930\", \"CAPITAL\": \"N\", \"AREALAND\": 15.497000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 13664, \"WHITE\": 13063, \"BLACK\": 100, \"AMERI_ES\": 27, \"ASIAN\": 276, \"HAWN_PI\": 5, \"OTHER\": 54, \"MULT_RACE\": 139, \"HISPANIC\": 364, \"MALES\": 6787, \"FEMALES\": 6877, \"AGE_UNDER5\": 615, \"AGE_5_17\": 2782, \"AGE_18_21\": 383, \"AGE_22_29\": 402, \"AGE_30_39\": 1138, \"AGE_40_49\": 2499, \"AGE_50_64\": 3602, \"AGE_65_UP\": 2243, \"MED_AGE\": 46.300000, \"MED_AGE_M\": 46.600000, \"MED_AGE_F\": 46.100000, \"HOUSEHOLDS\": 5034, \"AVE_HH_SZ\": 2.710000, \"HSEHLD_1_M\": 291, \"HSEHLD_1_F\": 394, \"MARHH_CHD\": 1525, \"MARHH_NO_C\": 2307, \"MHH_CHILD\": 55, \"FHH_CHILD\": 96, \"FAMILIES\": 4163, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 5499, \"VACANT\": 465, \"OWNER_OCC\": 4885, \"RENTER_OCC\": 149 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.956381156807254, 33.544601400914821 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Payson\", \"CLASS\": \"town\", \"ST\": \"AZ\", \"STFIPS\": \"04\", \"PLACEFIP\": \"53700\", \"CAPITAL\": \"N\", \"AREALAND\": 19.469000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 13620, \"WHITE\": 12905, \"BLACK\": 36, \"AMERI_ES\": 257, \"ASIAN\": 72, \"HAWN_PI\": 7, \"OTHER\": 183, \"MULT_RACE\": 160, \"HISPANIC\": 708, \"MALES\": 6532, \"FEMALES\": 7088, \"AGE_UNDER5\": 679, \"AGE_5_17\": 2060, \"AGE_18_21\": 500, \"AGE_22_29\": 703, \"AGE_30_39\": 1328, \"AGE_40_49\": 1702, \"AGE_50_64\": 2674, \"AGE_65_UP\": 3974, \"MED_AGE\": 48.900000, \"MED_AGE_M\": 47.100000, \"MED_AGE_F\": 50.700000, \"HOUSEHOLDS\": 5832, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 572, \"HSEHLD_1_F\": 944, \"MARHH_CHD\": 899, \"MARHH_NO_C\": 2519, \"MHH_CHILD\": 97, \"FHH_CHILD\": 268, \"FAMILIES\": 4068, \"AVE_FAM_SZ\": 2.710000, \"HSE_UNITS\": 7033, \"VACANT\": 1201, \"OWNER_OCC\": 4480, \"RENTER_OCC\": 1352 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.327403147079281, 34.239465644962863 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Peoria\", \"CLASS\": \"city\", \"ST\": \"AZ\", \"STFIPS\": \"04\", \"PLACEFIP\": \"54050\", \"CAPITAL\": \"N\", \"AREALAND\": 138.216000, \"AREAWATER\": 3.462000, \"POP_CL\": 8, \"POP2000\": 108364, \"WHITE\": 92050, \"BLACK\": 3012, \"AMERI_ES\": 734, \"ASIAN\": 2077, \"HAWN_PI\": 120, \"OTHER\": 7686, \"MULT_RACE\": 2685, \"HISPANIC\": 16699, \"MALES\": 52058, \"FEMALES\": 56306, \"AGE_UNDER5\": 8010, \"AGE_5_17\": 22731, \"AGE_18_21\": 4293, \"AGE_22_29\": 9872, \"AGE_30_39\": 17650, \"AGE_40_49\": 15566, \"AGE_50_64\": 14590, \"AGE_65_UP\": 15652, \"MED_AGE\": 35.600000, \"MED_AGE_M\": 34.200000, \"MED_AGE_F\": 36.800000, \"HOUSEHOLDS\": 39184, \"AVE_HH_SZ\": 2.730000, \"HSEHLD_1_M\": 2676, \"HSEHLD_1_F\": 5374, \"MARHH_CHD\": 11626, \"MARHH_NO_C\": 12656, \"MHH_CHILD\": 901, \"FHH_CHILD\": 2256, \"FAMILIES\": 29299, \"AVE_FAM_SZ\": 3.160000, \"HSE_UNITS\": 42573, \"VACANT\": 3389, \"OWNER_OCC\": 33022, \"RENTER_OCC\": 6162 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -112.251502017589871, 33.649744557387983 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Phoenix\", \"CLASS\": \"city\", \"ST\": \"AZ\", \"STFIPS\": \"04\", \"PLACEFIP\": \"55000\", \"CAPITAL\": \"Y\", \"AREALAND\": 474.862000, \"AREAWATER\": 0.227000, \"POP_CL\": 10, \"POP2000\": 1321045, \"WHITE\": 938853, \"BLACK\": 67416, \"AMERI_ES\": 26696, \"ASIAN\": 26449, \"HAWN_PI\": 1766, \"OTHER\": 216589, \"MULT_RACE\": 43276, \"HISPANIC\": 449972, \"MALES\": 671760, \"FEMALES\": 649285, \"AGE_UNDER5\": 114516, \"AGE_5_17\": 267919, \"AGE_18_21\": 80898, \"AGE_22_29\": 179201, \"AGE_30_39\": 222468, \"AGE_40_49\": 185726, \"AGE_50_64\": 163522, \"AGE_65_UP\": 106795, \"MED_AGE\": 30.700000, \"MED_AGE_M\": 30.100000, \"MED_AGE_F\": 31.500000, \"HOUSEHOLDS\": 465834, \"AVE_HH_SZ\": 2.790000, \"HSEHLD_1_M\": 58261, \"HSEHLD_1_F\": 60161, \"MARHH_CHD\": 113190, \"MARHH_NO_C\": 105326, \"MHH_CHILD\": 15511, \"FHH_CHILD\": 37656, \"FAMILIES\": 307243, \"AVE_FAM_SZ\": 3.390000, \"HSE_UNITS\": 495832, \"VACANT\": 29998, \"OWNER_OCC\": 282670, \"RENTER_OCC\": 183164 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -112.076225773630071, 33.528375831994872 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Prescott\", \"CLASS\": \"city\", \"ST\": \"AZ\", \"STFIPS\": \"04\", \"PLACEFIP\": \"57380\", \"CAPITAL\": \"N\", \"AREALAND\": 37.066000, \"AREAWATER\": 0.239000, \"POP_CL\": 6, \"POP2000\": 33938, \"WHITE\": 31538, \"BLACK\": 171, \"AMERI_ES\": 432, \"ASIAN\": 283, \"HAWN_PI\": 21, \"OTHER\": 941, \"MULT_RACE\": 552, \"HISPANIC\": 2773, \"MALES\": 16703, \"FEMALES\": 17235, \"AGE_UNDER5\": 1264, \"AGE_5_17\": 4123, \"AGE_18_21\": 2465, \"AGE_22_29\": 2764, \"AGE_30_39\": 2957, \"AGE_40_49\": 4458, \"AGE_50_64\": 6822, \"AGE_65_UP\": 9085, \"MED_AGE\": 47.800000, \"MED_AGE_M\": 45.000000, \"MED_AGE_F\": 50.300000, \"HOUSEHOLDS\": 15098, \"AVE_HH_SZ\": 2.110000, \"HSEHLD_1_M\": 1934, \"HSEHLD_1_F\": 2916, \"MARHH_CHD\": 1789, \"MARHH_NO_C\": 5562, \"MHH_CHILD\": 245, \"FHH_CHILD\": 695, \"FAMILIES\": 8968, \"AVE_FAM_SZ\": 2.620000, \"HSE_UNITS\": 17144, \"VACANT\": 2046, \"OWNER_OCC\": 9848, \"RENTER_OCC\": 5250 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -112.461384288946945, 34.568217773187804 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Prescott Valley\", \"CLASS\": \"town\", \"ST\": \"AZ\", \"STFIPS\": \"04\", \"PLACEFIP\": \"57450\", \"CAPITAL\": \"N\", \"AREALAND\": 31.719000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 23535, \"WHITE\": 21441, \"BLACK\": 114, \"AMERI_ES\": 227, \"ASIAN\": 129, \"HAWN_PI\": 34, \"OTHER\": 1081, \"MULT_RACE\": 509, \"HISPANIC\": 2617, \"MALES\": 11551, \"FEMALES\": 11984, \"AGE_UNDER5\": 1788, \"AGE_5_17\": 4511, \"AGE_18_21\": 961, \"AGE_22_29\": 2213, \"AGE_30_39\": 3255, \"AGE_40_49\": 3248, \"AGE_50_64\": 3514, \"AGE_65_UP\": 4045, \"MED_AGE\": 37.300000, \"MED_AGE_M\": 35.700000, \"MED_AGE_F\": 38.700000, \"HOUSEHOLDS\": 8964, \"AVE_HH_SZ\": 2.600000, \"HSEHLD_1_M\": 746, \"HSEHLD_1_F\": 1030, \"MARHH_CHD\": 2149, \"MARHH_NO_C\": 3185, \"MHH_CHILD\": 240, \"FHH_CHILD\": 596, \"FAMILIES\": 6631, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 9484, \"VACANT\": 520, \"OWNER_OCC\": 6335, \"RENTER_OCC\": 2629 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -112.321830732600176, 34.602236132068967 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"San Luis\", \"CLASS\": \"city\", \"ST\": \"AZ\", \"STFIPS\": \"04\", \"PLACEFIP\": \"63470\", \"CAPITAL\": \"N\", \"AREALAND\": 26.438000, \"AREAWATER\": 0.027000, \"POP_CL\": 6, \"POP2000\": 15322, \"WHITE\": 9007, \"BLACK\": 452, \"AMERI_ES\": 224, \"ASIAN\": 25, \"HAWN_PI\": 3, \"OTHER\": 5265, \"MULT_RACE\": 346, \"HISPANIC\": 13657, \"MALES\": 8556, \"FEMALES\": 6766, \"AGE_UNDER5\": 1384, \"AGE_5_17\": 4065, \"AGE_18_21\": 1155, \"AGE_22_29\": 2155, \"AGE_30_39\": 2760, \"AGE_40_49\": 2016, \"AGE_50_64\": 1181, \"AGE_65_UP\": 606, \"MED_AGE\": 25.800000, \"MED_AGE_M\": 26.800000, \"MED_AGE_F\": 24.100000, \"HOUSEHOLDS\": 3018, \"AVE_HH_SZ\": 4.310000, \"HSEHLD_1_M\": 73, \"HSEHLD_1_F\": 46, \"MARHH_CHD\": 1663, \"MARHH_NO_C\": 513, \"MHH_CHILD\": 62, \"FHH_CHILD\": 426, \"FAMILIES\": 2876, \"AVE_FAM_SZ\": 4.380000, \"HSE_UNITS\": 3325, \"VACANT\": 307, \"OWNER_OCC\": 2206, \"RENTER_OCC\": 812 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -114.768073081005667, 32.496142515553281 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Scottsdale\", \"CLASS\": \"city\", \"ST\": \"AZ\", \"STFIPS\": \"04\", \"PLACEFIP\": \"65000\", \"CAPITAL\": \"N\", \"AREALAND\": 184.202000, \"AREAWATER\": 0.228000, \"POP_CL\": 8, \"POP2000\": 202705, \"WHITE\": 186883, \"BLACK\": 2501, \"AMERI_ES\": 1240, \"ASIAN\": 3964, \"HAWN_PI\": 167, \"OTHER\": 4603, \"MULT_RACE\": 3347, \"HISPANIC\": 14111, \"MALES\": 97785, \"FEMALES\": 104920, \"AGE_UNDER5\": 10444, \"AGE_5_17\": 28721, \"AGE_18_21\": 7009, \"AGE_22_29\": 20528, \"AGE_30_39\": 31251, \"AGE_40_49\": 31371, \"AGE_50_64\": 39497, \"AGE_65_UP\": 33884, \"MED_AGE\": 41.000000, \"MED_AGE_M\": 39.500000, \"MED_AGE_F\": 42.400000, \"HOUSEHOLDS\": 90669, \"AVE_HH_SZ\": 2.220000, \"HSEHLD_1_M\": 10950, \"HSEHLD_1_F\": 16937, \"MARHH_CHD\": 15481, \"MARHH_NO_C\": 29491, \"MHH_CHILD\": 1266, \"FHH_CHILD\": 3759, \"FAMILIES\": 54458, \"AVE_FAM_SZ\": 2.790000, \"HSE_UNITS\": 104974, \"VACANT\": 14305, \"OWNER_OCC\": 63137, \"RENTER_OCC\": 27532 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.895917081459118, 33.59071420265176 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sedona\", \"CLASS\": \"city\", \"ST\": \"AZ\", \"STFIPS\": \"04\", \"PLACEFIP\": \"65350\", \"CAPITAL\": \"N\", \"AREALAND\": 18.600000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10192, \"WHITE\": 9394, \"BLACK\": 50, \"AMERI_ES\": 46, \"ASIAN\": 96, \"HAWN_PI\": 9, \"OTHER\": 437, \"MULT_RACE\": 160, \"HISPANIC\": 907, \"MALES\": 4775, \"FEMALES\": 5417, \"AGE_UNDER5\": 318, \"AGE_5_17\": 1083, \"AGE_18_21\": 294, \"AGE_22_29\": 546, \"AGE_30_39\": 978, \"AGE_40_49\": 1754, \"AGE_50_64\": 2614, \"AGE_65_UP\": 2605, \"MED_AGE\": 50.500000, \"MED_AGE_M\": 49.500000, \"MED_AGE_F\": 51.600000, \"HOUSEHOLDS\": 4928, \"AVE_HH_SZ\": 2.060000, \"HSEHLD_1_M\": 513, \"HSEHLD_1_F\": 1074, \"MARHH_CHD\": 520, \"MARHH_NO_C\": 1875, \"MHH_CHILD\": 86, \"FHH_CHILD\": 171, \"FAMILIES\": 2863, \"AVE_FAM_SZ\": 2.520000, \"HSE_UNITS\": 5684, \"VACANT\": 756, \"OWNER_OCC\": 3574, \"RENTER_OCC\": 1354 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.789128298096159, 34.859902105334811 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sierra Vista\", \"CLASS\": \"city\", \"ST\": \"AZ\", \"STFIPS\": \"04\", \"PLACEFIP\": \"66820\", \"CAPITAL\": \"N\", \"AREALAND\": 153.463000, \"AREAWATER\": 0.028000, \"POP_CL\": 6, \"POP2000\": 37775, \"WHITE\": 27706, \"BLACK\": 4115, \"AMERI_ES\": 313, \"ASIAN\": 1347, \"HAWN_PI\": 174, \"OTHER\": 2285, \"MULT_RACE\": 1835, \"HISPANIC\": 5971, \"MALES\": 18957, \"FEMALES\": 18818, \"AGE_UNDER5\": 2906, \"AGE_5_17\": 6849, \"AGE_18_21\": 2937, \"AGE_22_29\": 5126, \"AGE_30_39\": 5424, \"AGE_40_49\": 4590, \"AGE_50_64\": 5369, \"AGE_65_UP\": 4574, \"MED_AGE\": 32.000000, \"MED_AGE_M\": 30.200000, \"MED_AGE_F\": 34.000000, \"HOUSEHOLDS\": 14196, \"AVE_HH_SZ\": 2.480000, \"HSEHLD_1_M\": 1693, \"HSEHLD_1_F\": 1875, \"MARHH_CHD\": 3523, \"MARHH_NO_C\": 4503, \"MHH_CHILD\": 334, \"FHH_CHILD\": 1103, \"FAMILIES\": 9997, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 15685, \"VACANT\": 1489, \"OWNER_OCC\": 7417, \"RENTER_OCC\": 6779 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -110.276476216020427, 31.54549947370138 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sierra Vista Southeast\", \"CLASS\": \"CDP\", \"ST\": \"AZ\", \"STFIPS\": \"04\", \"PLACEFIP\": \"66845\", \"CAPITAL\": \"N\", \"AREALAND\": 112.259000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14348, \"WHITE\": 12121, \"BLACK\": 315, \"AMERI_ES\": 193, \"ASIAN\": 259, \"HAWN_PI\": 66, \"OTHER\": 806, \"MULT_RACE\": 588, \"HISPANIC\": 2308, \"MALES\": 7033, \"FEMALES\": 7315, \"AGE_UNDER5\": 849, \"AGE_5_17\": 3032, \"AGE_18_21\": 532, \"AGE_22_29\": 800, \"AGE_30_39\": 1794, \"AGE_40_49\": 2501, \"AGE_50_64\": 2964, \"AGE_65_UP\": 1876, \"MED_AGE\": 40.600000, \"MED_AGE_M\": 40.800000, \"MED_AGE_F\": 40.500000, \"HOUSEHOLDS\": 5392, \"AVE_HH_SZ\": 2.650000, \"HSEHLD_1_M\": 469, \"HSEHLD_1_F\": 520, \"MARHH_CHD\": 1386, \"MARHH_NO_C\": 2142, \"MHH_CHILD\": 125, \"FHH_CHILD\": 275, \"FAMILIES\": 4160, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 5857, \"VACANT\": 465, \"OWNER_OCC\": 4574, \"RENTER_OCC\": 818 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -110.232102926464165, 31.488262417886908 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sun City\", \"CLASS\": \"CDP\", \"ST\": \"AZ\", \"STFIPS\": \"04\", \"PLACEFIP\": \"70320\", \"CAPITAL\": \"N\", \"AREALAND\": 14.514000, \"AREAWATER\": 0.095000, \"POP_CL\": 6, \"POP2000\": 38309, \"WHITE\": 37710, \"BLACK\": 196, \"AMERI_ES\": 48, \"ASIAN\": 115, \"HAWN_PI\": 10, \"OTHER\": 63, \"MULT_RACE\": 167, \"HISPANIC\": 383, \"MALES\": 15762, \"FEMALES\": 22547, \"AGE_UNDER5\": 51, \"AGE_5_17\": 116, \"AGE_18_21\": 69, \"AGE_22_29\": 148, \"AGE_30_39\": 366, \"AGE_40_49\": 654, \"AGE_50_64\": 6329, \"AGE_65_UP\": 30576, \"MED_AGE\": 75.000000, \"MED_AGE_M\": 74.700000, \"MED_AGE_F\": 75.100000, \"HOUSEHOLDS\": 23490, \"AVE_HH_SZ\": 1.600000, \"HSEHLD_1_M\": 2338, \"HSEHLD_1_F\": 8030, \"MARHH_CHD\": 59, \"MARHH_NO_C\": 11579, \"MHH_CHILD\": 2, \"FHH_CHILD\": 14, \"FAMILIES\": 12523, \"AVE_FAM_SZ\": 2.070000, \"HSE_UNITS\": 27731, \"VACANT\": 4241, \"OWNER_OCC\": 20865, \"RENTER_OCC\": 2625 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -112.281841959216692, 33.614244673953706 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sun City West\", \"CLASS\": \"CDP\", \"ST\": \"AZ\", \"STFIPS\": \"04\", \"PLACEFIP\": \"70355\", \"CAPITAL\": \"N\", \"AREALAND\": 11.096000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 26344, \"WHITE\": 26005, \"BLACK\": 129, \"AMERI_ES\": 14, \"ASIAN\": 97, \"HAWN_PI\": 10, \"OTHER\": 18, \"MULT_RACE\": 71, \"HISPANIC\": 154, \"MALES\": 11893, \"FEMALES\": 14451, \"AGE_UNDER5\": 6, \"AGE_5_17\": 20, \"AGE_18_21\": 15, \"AGE_22_29\": 56, \"AGE_30_39\": 121, \"AGE_40_49\": 273, \"AGE_50_64\": 4155, \"AGE_65_UP\": 21698, \"MED_AGE\": 73.200000, \"MED_AGE_M\": 74.000000, \"MED_AGE_F\": 72.600000, \"HOUSEHOLDS\": 14997, \"AVE_HH_SZ\": 1.740000, \"HSEHLD_1_M\": 1101, \"HSEHLD_1_F\": 3259, \"MARHH_CHD\": 4, \"MARHH_NO_C\": 10056, \"MHH_CHILD\": 0, \"FHH_CHILD\": 1, \"FAMILIES\": 10357, \"AVE_FAM_SZ\": 2.040000, \"HSE_UNITS\": 17359, \"VACANT\": 2362, \"OWNER_OCC\": 14292, \"RENTER_OCC\": 705 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -112.35776031131023, 33.670419018002647 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sun Lakes\", \"CLASS\": \"CDP\", \"ST\": \"AZ\", \"STFIPS\": \"04\", \"PLACEFIP\": \"70530\", \"CAPITAL\": \"N\", \"AREALAND\": 5.238000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11936, \"WHITE\": 11741, \"BLACK\": 93, \"AMERI_ES\": 16, \"ASIAN\": 38, \"HAWN_PI\": 1, \"OTHER\": 12, \"MULT_RACE\": 35, \"HISPANIC\": 112, \"MALES\": 5400, \"FEMALES\": 6536, \"AGE_UNDER5\": 5, \"AGE_5_17\": 15, \"AGE_18_21\": 17, \"AGE_22_29\": 59, \"AGE_30_39\": 93, \"AGE_40_49\": 386, \"AGE_50_64\": 3465, \"AGE_65_UP\": 7896, \"MED_AGE\": 69.300000, \"MED_AGE_M\": 70.000000, \"MED_AGE_F\": 68.700000, \"HOUSEHOLDS\": 6683, \"AVE_HH_SZ\": 1.790000, \"HSEHLD_1_M\": 394, \"HSEHLD_1_F\": 1333, \"MARHH_CHD\": 6, \"MARHH_NO_C\": 4639, \"MHH_CHILD\": 1, \"FHH_CHILD\": 0, \"FAMILIES\": 4798, \"AVE_FAM_SZ\": 2.060000, \"HSE_UNITS\": 7746, \"VACANT\": 1063, \"OWNER_OCC\": 6420, \"RENTER_OCC\": 263 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.869900908838105, 33.214691028669712 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Surprise\", \"CLASS\": \"city\", \"ST\": \"AZ\", \"STFIPS\": \"04\", \"PLACEFIP\": \"71510\", \"CAPITAL\": \"N\", \"AREALAND\": 69.494000, \"AREAWATER\": 0.019000, \"POP_CL\": 6, \"POP2000\": 30848, \"WHITE\": 26521, \"BLACK\": 806, \"AMERI_ES\": 134, \"ASIAN\": 329, \"HAWN_PI\": 16, \"OTHER\": 2427, \"MULT_RACE\": 615, \"HISPANIC\": 7184, \"MALES\": 15158, \"FEMALES\": 15690, \"AGE_UNDER5\": 2247, \"AGE_5_17\": 3888, \"AGE_18_21\": 1006, \"AGE_22_29\": 3434, \"AGE_30_39\": 3460, \"AGE_40_49\": 2314, \"AGE_50_64\": 6656, \"AGE_65_UP\": 7843, \"MED_AGE\": 46.100000, \"MED_AGE_M\": 42.900000, \"MED_AGE_F\": 48.700000, \"HOUSEHOLDS\": 12484, \"AVE_HH_SZ\": 2.460000, \"HSEHLD_1_M\": 812, \"HSEHLD_1_F\": 1417, \"MARHH_CHD\": 2124, \"MARHH_NO_C\": 6555, \"MHH_CHILD\": 195, \"FHH_CHILD\": 363, \"FAMILIES\": 9723, \"AVE_FAM_SZ\": 2.750000, \"HSE_UNITS\": 16260, \"VACANT\": 3776, \"OWNER_OCC\": 11022, \"RENTER_OCC\": 1462 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -112.3971086830785, 33.651792187221233 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Tanque Verde\", \"CLASS\": \"CDP\", \"ST\": \"AZ\", \"STFIPS\": \"04\", \"PLACEFIP\": \"72000\", \"CAPITAL\": \"N\", \"AREALAND\": 32.867000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 16195, \"WHITE\": 15269, \"BLACK\": 113, \"AMERI_ES\": 90, \"ASIAN\": 211, \"HAWN_PI\": 18, \"OTHER\": 220, \"MULT_RACE\": 274, \"HISPANIC\": 1180, \"MALES\": 8138, \"FEMALES\": 8057, \"AGE_UNDER5\": 626, \"AGE_5_17\": 3472, \"AGE_18_21\": 574, \"AGE_22_29\": 506, \"AGE_30_39\": 1617, \"AGE_40_49\": 3584, \"AGE_50_64\": 3878, \"AGE_65_UP\": 1938, \"MED_AGE\": 43.700000, \"MED_AGE_M\": 43.800000, \"MED_AGE_F\": 43.600000, \"HOUSEHOLDS\": 5810, \"AVE_HH_SZ\": 2.770000, \"HSEHLD_1_M\": 333, \"HSEHLD_1_F\": 375, \"MARHH_CHD\": 1798, \"MARHH_NO_C\": 2636, \"MHH_CHILD\": 83, \"FHH_CHILD\": 167, \"FAMILIES\": 4905, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 6056, \"VACANT\": 246, \"OWNER_OCC\": 5491, \"RENTER_OCC\": 319 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -110.751713959371401, 32.271525206681787 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Tempe\", \"CLASS\": \"city\", \"ST\": \"AZ\", \"STFIPS\": \"04\", \"PLACEFIP\": \"73000\", \"CAPITAL\": \"N\", \"AREALAND\": 40.062000, \"AREAWATER\": 0.129000, \"POP_CL\": 8, \"POP2000\": 158625, \"WHITE\": 122952, \"BLACK\": 5801, \"AMERI_ES\": 3186, \"ASIAN\": 7531, \"HAWN_PI\": 455, \"OTHER\": 13464, \"MULT_RACE\": 5236, \"HISPANIC\": 28473, \"MALES\": 81942, \"FEMALES\": 76683, \"AGE_UNDER5\": 9074, \"AGE_5_17\": 22407, \"AGE_18_21\": 19954, \"AGE_22_29\": 31775, \"AGE_30_39\": 24014, \"AGE_40_49\": 20729, \"AGE_50_64\": 19266, \"AGE_65_UP\": 11406, \"MED_AGE\": 28.800000, \"MED_AGE_M\": 28.300000, \"MED_AGE_F\": 29.600000, \"HOUSEHOLDS\": 63602, \"AVE_HH_SZ\": 2.410000, \"HSEHLD_1_M\": 9676, \"HSEHLD_1_F\": 8433, \"MARHH_CHD\": 10714, \"MARHH_NO_C\": 13690, \"MHH_CHILD\": 1294, \"FHH_CHILD\": 3541, \"FAMILIES\": 33654, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 67068, \"VACANT\": 3466, \"OWNER_OCC\": 32444, \"RENTER_OCC\": 31158 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.928714973789226, 33.388701267547262 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Tucson\", \"CLASS\": \"city\", \"ST\": \"AZ\", \"STFIPS\": \"04\", \"PLACEFIP\": \"77000\", \"CAPITAL\": \"N\", \"AREALAND\": 194.672000, \"AREAWATER\": 0.419000, \"POP_CL\": 8, \"POP2000\": 486699, \"WHITE\": 341424, \"BLACK\": 21057, \"AMERI_ES\": 11038, \"ASIAN\": 11959, \"HAWN_PI\": 796, \"OTHER\": 81988, \"MULT_RACE\": 18437, \"HISPANIC\": 173868, \"MALES\": 238408, \"FEMALES\": 248291, \"AGE_UNDER5\": 35201, \"AGE_5_17\": 84416, \"AGE_18_21\": 40572, \"AGE_22_29\": 67127, \"AGE_30_39\": 73236, \"AGE_40_49\": 66217, \"AGE_50_64\": 62102, \"AGE_65_UP\": 57828, \"MED_AGE\": 32.100000, \"MED_AGE_M\": 30.800000, \"MED_AGE_F\": 33.500000, \"HOUSEHOLDS\": 192891, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 29346, \"HSEHLD_1_F\": 32941, \"MARHH_CHD\": 34519, \"MARHH_NO_C\": 42027, \"MHH_CHILD\": 5078, \"FHH_CHILD\": 16373, \"FAMILIES\": 112515, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 209609, \"VACANT\": 16718, \"OWNER_OCC\": 103056, \"RENTER_OCC\": 89835 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -110.918155929414993, 32.214478485796249 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Yuma\", \"CLASS\": \"city\", \"ST\": \"AZ\", \"STFIPS\": \"04\", \"PLACEFIP\": \"85540\", \"CAPITAL\": \"N\", \"AREALAND\": 106.649000, \"AREAWATER\": 0.067000, \"POP_CL\": 7, \"POP2000\": 77515, \"WHITE\": 52968, \"BLACK\": 2491, \"AMERI_ES\": 1168, \"ASIAN\": 1164, \"HAWN_PI\": 145, \"OTHER\": 16557, \"MULT_RACE\": 3022, \"HISPANIC\": 35400, \"MALES\": 38589, \"FEMALES\": 38926, \"AGE_UNDER5\": 6714, \"AGE_5_17\": 16216, \"AGE_18_21\": 5539, \"AGE_22_29\": 9015, \"AGE_30_39\": 10659, \"AGE_40_49\": 9232, \"AGE_50_64\": 9391, \"AGE_65_UP\": 10749, \"MED_AGE\": 31.200000, \"MED_AGE_M\": 29.400000, \"MED_AGE_F\": 33.100000, \"HOUSEHOLDS\": 26649, \"AVE_HH_SZ\": 2.790000, \"HSEHLD_1_M\": 2563, \"HSEHLD_1_F\": 3215, \"MARHH_CHD\": 7272, \"MARHH_NO_C\": 7809, \"MHH_CHILD\": 655, \"FHH_CHILD\": 2425, \"FAMILIES\": 19618, \"AVE_FAM_SZ\": 3.270000, \"HSE_UNITS\": 34475, \"VACANT\": 7826, \"OWNER_OCC\": 16925, \"RENTER_OCC\": 9724 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -114.615148833624289, 32.692172675436289 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Adelanto\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"00296\", \"CAPITAL\": \"N\", \"AREALAND\": 53.523000, \"AREAWATER\": 0.018000, \"POP_CL\": 6, \"POP2000\": 18130, \"WHITE\": 9147, \"BLACK\": 2377, \"AMERI_ES\": 292, \"ASIAN\": 290, \"HAWN_PI\": 32, \"OTHER\": 4819, \"MULT_RACE\": 1173, \"HISPANIC\": 8299, \"MALES\": 9698, \"FEMALES\": 8432, \"AGE_UNDER5\": 1938, \"AGE_5_17\": 4948, \"AGE_18_21\": 945, \"AGE_22_29\": 2185, \"AGE_30_39\": 3578, \"AGE_40_49\": 2158, \"AGE_50_64\": 1447, \"AGE_65_UP\": 931, \"MED_AGE\": 26.900000, \"MED_AGE_M\": 27.900000, \"MED_AGE_F\": 25.700000, \"HOUSEHOLDS\": 4714, \"AVE_HH_SZ\": 3.530000, \"HSEHLD_1_M\": 364, \"HSEHLD_1_F\": 312, \"MARHH_CHD\": 1850, \"MARHH_NO_C\": 820, \"MHH_CHILD\": 223, \"FHH_CHILD\": 598, \"FAMILIES\": 3843, \"AVE_FAM_SZ\": 3.890000, \"HSE_UNITS\": 5547, \"VACANT\": 833, \"OWNER_OCC\": 3008, \"RENTER_OCC\": 1706 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.431778148257948, 34.576098796227157 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Agoura Hills\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"00394\", \"CAPITAL\": \"N\", \"AREALAND\": 8.176000, \"AREAWATER\": 0.028000, \"POP_CL\": 6, \"POP2000\": 20537, \"WHITE\": 17858, \"BLACK\": 272, \"AMERI_ES\": 51, \"ASIAN\": 1335, \"HAWN_PI\": 21, \"OTHER\": 429, \"MULT_RACE\": 571, \"HISPANIC\": 1407, \"MALES\": 10224, \"FEMALES\": 10313, \"AGE_UNDER5\": 1241, \"AGE_5_17\": 5014, \"AGE_18_21\": 829, \"AGE_22_29\": 1287, \"AGE_30_39\": 2783, \"AGE_40_49\": 4243, \"AGE_50_64\": 3867, \"AGE_65_UP\": 1273, \"MED_AGE\": 37.600000, \"MED_AGE_M\": 36.300000, \"MED_AGE_F\": 38.500000, \"HOUSEHOLDS\": 6874, \"AVE_HH_SZ\": 2.980000, \"HSEHLD_1_M\": 421, \"HSEHLD_1_F\": 527, \"MARHH_CHD\": 2668, \"MARHH_NO_C\": 1985, \"MHH_CHILD\": 149, \"FHH_CHILD\": 433, \"FAMILIES\": 5591, \"AVE_FAM_SZ\": 3.300000, \"HSE_UNITS\": 6993, \"VACANT\": 119, \"OWNER_OCC\": 5761, \"RENTER_OCC\": 1113 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.760253836894009, 34.153559985923927 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Alameda\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"00562\", \"CAPITAL\": \"N\", \"AREALAND\": 10.796000, \"AREAWATER\": 12.171000, \"POP_CL\": 7, \"POP2000\": 72259, \"WHITE\": 41148, \"BLACK\": 4488, \"AMERI_ES\": 484, \"ASIAN\": 18894, \"HAWN_PI\": 434, \"OTHER\": 2380, \"MULT_RACE\": 4431, \"HISPANIC\": 6725, \"MALES\": 34689, \"FEMALES\": 37570, \"AGE_UNDER5\": 4057, \"AGE_5_17\": 11477, \"AGE_18_21\": 2832, \"AGE_22_29\": 7369, \"AGE_30_39\": 12516, \"AGE_40_49\": 12668, \"AGE_50_64\": 11735, \"AGE_65_UP\": 9605, \"MED_AGE\": 38.300000, \"MED_AGE_M\": 37.100000, \"MED_AGE_F\": 39.500000, \"HOUSEHOLDS\": 30226, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 4282, \"HSEHLD_1_F\": 5465, \"MARHH_CHD\": 5979, \"MARHH_NO_C\": 7219, \"MHH_CHILD\": 527, \"FHH_CHILD\": 1872, \"FAMILIES\": 17858, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 31644, \"VACANT\": 1418, \"OWNER_OCC\": 14486, \"RENTER_OCC\": 15740 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.249589257621778, 37.764913483771508 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Alamo\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"00618\", \"CAPITAL\": \"N\", \"AREALAND\": 20.573000, \"AREAWATER\": 0.003000, \"POP_CL\": 6, \"POP2000\": 15626, \"WHITE\": 14119, \"BLACK\": 74, \"AMERI_ES\": 34, \"ASIAN\": 935, \"HAWN_PI\": 18, \"OTHER\": 100, \"MULT_RACE\": 346, \"HISPANIC\": 616, \"MALES\": 7755, \"FEMALES\": 7871, \"AGE_UNDER5\": 978, \"AGE_5_17\": 3335, \"AGE_18_21\": 407, \"AGE_22_29\": 501, \"AGE_30_39\": 1716, \"AGE_40_49\": 2972, \"AGE_50_64\": 3818, \"AGE_65_UP\": 1899, \"MED_AGE\": 43.000000, \"MED_AGE_M\": 42.700000, \"MED_AGE_F\": 43.300000, \"HOUSEHOLDS\": 5406, \"AVE_HH_SZ\": 2.870000, \"HSEHLD_1_M\": 238, \"HSEHLD_1_F\": 384, \"MARHH_CHD\": 1982, \"MARHH_NO_C\": 2238, \"MHH_CHILD\": 55, \"FHH_CHILD\": 133, \"FAMILIES\": 4575, \"AVE_FAM_SZ\": 3.100000, \"HSE_UNITS\": 5497, \"VACANT\": 91, \"OWNER_OCC\": 5059, \"RENTER_OCC\": 347 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.026017178928257, 37.859853624955299 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Albany\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"00674\", \"CAPITAL\": \"N\", \"AREALAND\": 1.701000, \"AREAWATER\": 3.764000, \"POP_CL\": 6, \"POP2000\": 16444, \"WHITE\": 10078, \"BLACK\": 675, \"AMERI_ES\": 64, \"ASIAN\": 4126, \"HAWN_PI\": 22, \"OTHER\": 521, \"MULT_RACE\": 958, \"HISPANIC\": 1312, \"MALES\": 7669, \"FEMALES\": 8775, \"AGE_UNDER5\": 988, \"AGE_5_17\": 2770, \"AGE_18_21\": 592, \"AGE_22_29\": 1897, \"AGE_30_39\": 2984, \"AGE_40_49\": 2820, \"AGE_50_64\": 2574, \"AGE_65_UP\": 1819, \"MED_AGE\": 36.300000, \"MED_AGE_M\": 34.800000, \"MED_AGE_F\": 37.700000, \"HOUSEHOLDS\": 7011, \"AVE_HH_SZ\": 2.340000, \"HSEHLD_1_M\": 804, \"HSEHLD_1_F\": 1245, \"MARHH_CHD\": 1651, \"MARHH_NO_C\": 1505, \"MHH_CHILD\": 121, \"FHH_CHILD\": 546, \"FAMILIES\": 4272, \"AVE_FAM_SZ\": 2.920000, \"HSE_UNITS\": 7248, \"VACANT\": 237, \"OWNER_OCC\": 3550, \"RENTER_OCC\": 3461 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.288544745722774, 37.892535753139406 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Alhambra\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"00884\", \"CAPITAL\": \"N\", \"AREALAND\": 7.622000, \"AREAWATER\": 0.000000, \"POP_CL\": 7, \"POP2000\": 85804, \"WHITE\": 25758, \"BLACK\": 1437, \"AMERI_ES\": 614, \"ASIAN\": 40520, \"HAWN_PI\": 86, \"OTHER\": 13947, \"MULT_RACE\": 3442, \"HISPANIC\": 30453, \"MALES\": 40418, \"FEMALES\": 45386, \"AGE_UNDER5\": 5350, \"AGE_5_17\": 13823, \"AGE_18_21\": 4490, \"AGE_22_29\": 11607, \"AGE_30_39\": 14913, \"AGE_40_49\": 12504, \"AGE_50_64\": 11801, \"AGE_65_UP\": 11316, \"MED_AGE\": 35.000000, \"MED_AGE_M\": 33.400000, \"MED_AGE_F\": 36.400000, \"HOUSEHOLDS\": 29111, \"AVE_HH_SZ\": 2.880000, \"HSEHLD_1_M\": 2747, \"HSEHLD_1_F\": 3815, \"MARHH_CHD\": 6851, \"MARHH_NO_C\": 7204, \"MHH_CHILD\": 609, \"FHH_CHILD\": 2185, \"FAMILIES\": 20669, \"AVE_FAM_SZ\": 3.410000, \"HSE_UNITS\": 30069, \"VACANT\": 958, \"OWNER_OCC\": 11421, \"RENTER_OCC\": 17690 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.133849344122666, 34.082006040029235 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Aliso Viejo\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"00947\", \"CAPITAL\": \"N\", \"AREALAND\": 10.226000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 40166, \"WHITE\": 31395, \"BLACK\": 828, \"AMERI_ES\": 158, \"ASIAN\": 4413, \"HAWN_PI\": 88, \"OTHER\": 1411, \"MULT_RACE\": 1873, \"HISPANIC\": 4680, \"MALES\": 19394, \"FEMALES\": 20772, \"AGE_UNDER5\": 4043, \"AGE_5_17\": 6424, \"AGE_18_21\": 1052, \"AGE_22_29\": 5314, \"AGE_30_39\": 11555, \"AGE_40_49\": 6506, \"AGE_50_64\": 3922, \"AGE_65_UP\": 1350, \"MED_AGE\": 32.700000, \"MED_AGE_M\": 32.800000, \"MED_AGE_F\": 32.600000, \"HOUSEHOLDS\": 16147, \"AVE_HH_SZ\": 2.490000, \"HSEHLD_1_M\": 1705, \"HSEHLD_1_F\": 2141, \"MARHH_CHD\": 4736, \"MARHH_NO_C\": 3769, \"MHH_CHILD\": 300, \"FHH_CHILD\": 1047, \"FAMILIES\": 10683, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 16608, \"VACANT\": 461, \"OWNER_OCC\": 10724, \"RENTER_OCC\": 5423 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.724447480964685, 33.575215438448332 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Alpine\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"01192\", \"CAPITAL\": \"N\", \"AREALAND\": 26.872000, \"AREAWATER\": 0.004000, \"POP_CL\": 6, \"POP2000\": 13143, \"WHITE\": 11931, \"BLACK\": 109, \"AMERI_ES\": 154, \"ASIAN\": 260, \"HAWN_PI\": 27, \"OTHER\": 376, \"MULT_RACE\": 286, \"HISPANIC\": 1343, \"MALES\": 6568, \"FEMALES\": 6575, \"AGE_UNDER5\": 862, \"AGE_5_17\": 2556, \"AGE_18_21\": 553, \"AGE_22_29\": 1014, \"AGE_30_39\": 1960, \"AGE_40_49\": 2365, \"AGE_50_64\": 2375, \"AGE_65_UP\": 1458, \"MED_AGE\": 38.400000, \"MED_AGE_M\": 38.000000, \"MED_AGE_F\": 38.700000, \"HOUSEHOLDS\": 4775, \"AVE_HH_SZ\": 2.720000, \"HSEHLD_1_M\": 375, \"HSEHLD_1_F\": 451, \"MARHH_CHD\": 1351, \"MARHH_NO_C\": 1679, \"MHH_CHILD\": 130, \"FHH_CHILD\": 263, \"FAMILIES\": 3653, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 4958, \"VACANT\": 183, \"OWNER_OCC\": 3287, \"RENTER_OCC\": 1488 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -116.769987324302193, 32.834636842945024 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Altadena\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"01290\", \"CAPITAL\": \"N\", \"AREALAND\": 8.698000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 42610, \"WHITE\": 20156, \"BLACK\": 13388, \"AMERI_ES\": 247, \"ASIAN\": 1807, \"HAWN_PI\": 56, \"OTHER\": 4340, \"MULT_RACE\": 2616, \"HISPANIC\": 8690, \"MALES\": 20397, \"FEMALES\": 22213, \"AGE_UNDER5\": 2911, \"AGE_5_17\": 8410, \"AGE_18_21\": 1635, \"AGE_22_29\": 3356, \"AGE_30_39\": 6764, \"AGE_40_49\": 7242, \"AGE_50_64\": 7043, \"AGE_65_UP\": 5249, \"MED_AGE\": 37.600000, \"MED_AGE_M\": 36.200000, \"MED_AGE_F\": 38.800000, \"HOUSEHOLDS\": 14780, \"AVE_HH_SZ\": 2.820000, \"HSEHLD_1_M\": 1258, \"HSEHLD_1_F\": 1964, \"MARHH_CHD\": 3698, \"MARHH_NO_C\": 4032, \"MHH_CHILD\": 290, \"FHH_CHILD\": 1057, \"FAMILIES\": 10673, \"AVE_FAM_SZ\": 3.290000, \"HSE_UNITS\": 15250, \"VACANT\": 470, \"OWNER_OCC\": 10938, \"RENTER_OCC\": 3842 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.133583615807083, 34.188752673511139 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Alum Rock\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"01458\", \"CAPITAL\": \"N\", \"AREALAND\": 1.119000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 13479, \"WHITE\": 5950, \"BLACK\": 301, \"AMERI_ES\": 230, \"ASIAN\": 1172, \"HAWN_PI\": 53, \"OTHER\": 4972, \"MULT_RACE\": 801, \"HISPANIC\": 9029, \"MALES\": 6903, \"FEMALES\": 6576, \"AGE_UNDER5\": 1143, \"AGE_5_17\": 2977, \"AGE_18_21\": 790, \"AGE_22_29\": 1754, \"AGE_30_39\": 2348, \"AGE_40_49\": 1766, \"AGE_50_64\": 1469, \"AGE_65_UP\": 1232, \"MED_AGE\": 30.300000, \"MED_AGE_M\": 29.400000, \"MED_AGE_F\": 31.300000, \"HOUSEHOLDS\": 3345, \"AVE_HH_SZ\": 3.980000, \"HSEHLD_1_M\": 185, \"HSEHLD_1_F\": 250, \"MARHH_CHD\": 1104, \"MARHH_NO_C\": 816, \"MHH_CHILD\": 128, \"FHH_CHILD\": 256, \"FAMILIES\": 2735, \"AVE_FAM_SZ\": 4.170000, \"HSE_UNITS\": 3411, \"VACANT\": 66, \"OWNER_OCC\": 2428, \"RENTER_OCC\": 917 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.819431227582854, 37.36837547230791 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Anaheim\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"02000\", \"CAPITAL\": \"N\", \"AREALAND\": 48.942000, \"AREAWATER\": 1.507000, \"POP_CL\": 8, \"POP2000\": 328014, \"WHITE\": 179627, \"BLACK\": 8735, \"AMERI_ES\": 3041, \"ASIAN\": 39311, \"HAWN_PI\": 1393, \"OTHER\": 79427, \"MULT_RACE\": 16480, \"HISPANIC\": 153374, \"MALES\": 164058, \"FEMALES\": 163956, \"AGE_UNDER5\": 30206, \"AGE_5_17\": 68758, \"AGE_18_21\": 18875, \"AGE_22_29\": 44397, \"AGE_30_39\": 57234, \"AGE_40_49\": 43149, \"AGE_50_64\": 38622, \"AGE_65_UP\": 26773, \"MED_AGE\": 30.300000, \"MED_AGE_M\": 29.700000, \"MED_AGE_F\": 30.900000, \"HOUSEHOLDS\": 96969, \"AVE_HH_SZ\": 3.340000, \"HSEHLD_1_M\": 7744, \"HSEHLD_1_F\": 9796, \"MARHH_CHD\": 31381, \"MARHH_NO_C\": 23205, \"MHH_CHILD\": 3061, \"FHH_CHILD\": 7280, \"FAMILIES\": 73502, \"AVE_FAM_SZ\": 3.750000, \"HSE_UNITS\": 99719, \"VACANT\": 2750, \"OWNER_OCC\": 48514, \"RENTER_OCC\": 48455 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.888698152141203, 33.836295212781195 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Antioch\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"02252\", \"CAPITAL\": \"N\", \"AREALAND\": 26.948000, \"AREAWATER\": 0.632000, \"POP_CL\": 7, \"POP2000\": 90532, \"WHITE\": 59148, \"BLACK\": 8824, \"AMERI_ES\": 843, \"ASIAN\": 6697, \"HAWN_PI\": 360, \"OTHER\": 8352, \"MULT_RACE\": 6308, \"HISPANIC\": 20024, \"MALES\": 44331, \"FEMALES\": 46201, \"AGE_UNDER5\": 7820, \"AGE_5_17\": 21398, \"AGE_18_21\": 4571, \"AGE_22_29\": 8351, \"AGE_30_39\": 15763, \"AGE_40_49\": 14604, \"AGE_50_64\": 11317, \"AGE_65_UP\": 6708, \"MED_AGE\": 32.300000, \"MED_AGE_M\": 31.300000, \"MED_AGE_F\": 33.100000, \"HOUSEHOLDS\": 29338, \"AVE_HH_SZ\": 3.070000, \"HSEHLD_1_M\": 1984, \"HSEHLD_1_F\": 2682, \"MARHH_CHD\": 10108, \"MARHH_NO_C\": 7588, \"MHH_CHILD\": 902, \"FHH_CHILD\": 2572, \"FAMILIES\": 23173, \"AVE_FAM_SZ\": 3.420000, \"HSE_UNITS\": 30116, \"VACANT\": 778, \"OWNER_OCC\": 20817, \"RENTER_OCC\": 8521 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.796002035262347, 37.993214460262969 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Apple Valley\", \"CLASS\": \"town\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"02364\", \"CAPITAL\": \"N\", \"AREALAND\": 73.332000, \"AREAWATER\": 0.292000, \"POP_CL\": 7, \"POP2000\": 54239, \"WHITE\": 41449, \"BLACK\": 4277, \"AMERI_ES\": 530, \"ASIAN\": 1198, \"HAWN_PI\": 123, \"OTHER\": 4296, \"MULT_RACE\": 2366, \"HISPANIC\": 10067, \"MALES\": 26251, \"FEMALES\": 27988, \"AGE_UNDER5\": 3875, \"AGE_5_17\": 13240, \"AGE_18_21\": 2656, \"AGE_22_29\": 4086, \"AGE_30_39\": 6872, \"AGE_40_49\": 8012, \"AGE_50_64\": 8053, \"AGE_65_UP\": 7445, \"MED_AGE\": 35.400000, \"MED_AGE_M\": 34.000000, \"MED_AGE_F\": 36.500000, \"HOUSEHOLDS\": 18557, \"AVE_HH_SZ\": 2.900000, \"HSEHLD_1_M\": 1328, \"HSEHLD_1_F\": 2021, \"MARHH_CHD\": 4845, \"MARHH_NO_C\": 5876, \"MHH_CHILD\": 632, \"FHH_CHILD\": 1724, \"FAMILIES\": 14358, \"AVE_FAM_SZ\": 3.270000, \"HSE_UNITS\": 20163, \"VACANT\": 1606, \"OWNER_OCC\": 12996, \"RENTER_OCC\": 5561 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.211160413834563, 34.511583895822838 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Arcadia\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"02462\", \"CAPITAL\": \"N\", \"AREALAND\": 10.984000, \"AREAWATER\": 0.124000, \"POP_CL\": 7, \"POP2000\": 53054, \"WHITE\": 24180, \"BLACK\": 601, \"AMERI_ES\": 132, \"ASIAN\": 24091, \"HAWN_PI\": 42, \"OTHER\": 2209, \"MULT_RACE\": 1799, \"HISPANIC\": 5629, \"MALES\": 24941, \"FEMALES\": 28113, \"AGE_UNDER5\": 2447, \"AGE_5_17\": 9907, \"AGE_18_21\": 2376, \"AGE_22_29\": 4213, \"AGE_30_39\": 7127, \"AGE_40_49\": 9404, \"AGE_50_64\": 9367, \"AGE_65_UP\": 8213, \"MED_AGE\": 40.500000, \"MED_AGE_M\": 39.100000, \"MED_AGE_F\": 41.700000, \"HOUSEHOLDS\": 19149, \"AVE_HH_SZ\": 2.740000, \"HSEHLD_1_M\": 1496, \"HSEHLD_1_F\": 2778, \"MARHH_CHD\": 5394, \"MARHH_NO_C\": 5674, \"MHH_CHILD\": 299, \"FHH_CHILD\": 1056, \"FAMILIES\": 14143, \"AVE_FAM_SZ\": 3.230000, \"HSE_UNITS\": 19970, \"VACANT\": 821, \"OWNER_OCC\": 11932, \"RENTER_OCC\": 7217 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.035331125117366, 34.132828929667461 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Arcata\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"02476\", \"CAPITAL\": \"N\", \"AREALAND\": 9.189000, \"AREAWATER\": 1.851000, \"POP_CL\": 6, \"POP2000\": 16651, \"WHITE\": 14072, \"BLACK\": 259, \"AMERI_ES\": 442, \"ASIAN\": 378, \"HAWN_PI\": 34, \"OTHER\": 581, \"MULT_RACE\": 885, \"HISPANIC\": 1202, \"MALES\": 8285, \"FEMALES\": 8366, \"AGE_UNDER5\": 665, \"AGE_5_17\": 1886, \"AGE_18_21\": 3010, \"AGE_22_29\": 4281, \"AGE_30_39\": 1802, \"AGE_40_49\": 1833, \"AGE_50_64\": 1730, \"AGE_65_UP\": 1444, \"MED_AGE\": 25.800000, \"MED_AGE_M\": 26.000000, \"MED_AGE_F\": 25.500000, \"HOUSEHOLDS\": 7051, \"AVE_HH_SZ\": 2.160000, \"HSEHLD_1_M\": 1231, \"HSEHLD_1_F\": 1220, \"MARHH_CHD\": 728, \"MARHH_NO_C\": 1096, \"MHH_CHILD\": 160, \"FHH_CHILD\": 498, \"FAMILIES\": 2815, \"AVE_FAM_SZ\": 2.810000, \"HSE_UNITS\": 7272, \"VACANT\": 221, \"OWNER_OCC\": 2646, \"RENTER_OCC\": 4405 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -124.066545376869698, 40.874864451381505 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Arden-Arcade\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"02553\", \"CAPITAL\": \"N\", \"AREALAND\": 18.884000, \"AREAWATER\": 0.106000, \"POP_CL\": 7, \"POP2000\": 96025, \"WHITE\": 74285, \"BLACK\": 5779, \"AMERI_ES\": 920, \"ASIAN\": 4664, \"HAWN_PI\": 411, \"OTHER\": 4972, \"MULT_RACE\": 4994, \"HISPANIC\": 11501, \"MALES\": 45550, \"FEMALES\": 50475, \"AGE_UNDER5\": 5796, \"AGE_5_17\": 14758, \"AGE_18_21\": 5401, \"AGE_22_29\": 11904, \"AGE_30_39\": 13361, \"AGE_40_49\": 14176, \"AGE_50_64\": 14660, \"AGE_65_UP\": 15969, \"MED_AGE\": 37.700000, \"MED_AGE_M\": 35.800000, \"MED_AGE_F\": 39.500000, \"HOUSEHOLDS\": 42987, \"AVE_HH_SZ\": 2.190000, \"HSEHLD_1_M\": 6411, \"HSEHLD_1_F\": 9202, \"MARHH_CHD\": 6290, \"MARHH_NO_C\": 9955, \"MHH_CHILD\": 980, \"FHH_CHILD\": 3249, \"FAMILIES\": 23409, \"AVE_FAM_SZ\": 2.880000, \"HSE_UNITS\": 44818, \"VACANT\": 1831, \"OWNER_OCC\": 20247, \"RENTER_OCC\": 22740 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.374209173134219, 38.605836561995908 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Arroyo Grande\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"02868\", \"CAPITAL\": \"N\", \"AREALAND\": 5.671000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 15851, \"WHITE\": 14020, \"BLACK\": 99, \"AMERI_ES\": 71, \"ASIAN\": 489, \"HAWN_PI\": 28, \"OTHER\": 597, \"MULT_RACE\": 547, \"HISPANIC\": 1770, \"MALES\": 7459, \"FEMALES\": 8392, \"AGE_UNDER5\": 896, \"AGE_5_17\": 2801, \"AGE_18_21\": 634, \"AGE_22_29\": 1086, \"AGE_30_39\": 1997, \"AGE_40_49\": 2617, \"AGE_50_64\": 2598, \"AGE_65_UP\": 3222, \"MED_AGE\": 41.900000, \"MED_AGE_M\": 40.200000, \"MED_AGE_F\": 43.500000, \"HOUSEHOLDS\": 6478, \"AVE_HH_SZ\": 2.410000, \"HSEHLD_1_M\": 575, \"HSEHLD_1_F\": 1191, \"MARHH_CHD\": 1423, \"MARHH_NO_C\": 2138, \"MHH_CHILD\": 93, \"FHH_CHILD\": 365, \"FAMILIES\": 4350, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 6750, \"VACANT\": 272, \"OWNER_OCC\": 4528, \"RENTER_OCC\": 1950 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -120.583469227666072, 35.121318538708863 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Artesia\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"02896\", \"CAPITAL\": \"N\", \"AREALAND\": 1.618000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 16380, \"WHITE\": 7236, \"BLACK\": 582, \"AMERI_ES\": 127, \"ASIAN\": 4490, \"HAWN_PI\": 89, \"OTHER\": 3025, \"MULT_RACE\": 831, \"HISPANIC\": 6272, \"MALES\": 8212, \"FEMALES\": 8168, \"AGE_UNDER5\": 1203, \"AGE_5_17\": 3248, \"AGE_18_21\": 932, \"AGE_22_29\": 1891, \"AGE_30_39\": 2429, \"AGE_40_49\": 2315, \"AGE_50_64\": 2337, \"AGE_65_UP\": 2025, \"MED_AGE\": 33.900000, \"MED_AGE_M\": 32.200000, \"MED_AGE_F\": 35.500000, \"HOUSEHOLDS\": 4470, \"AVE_HH_SZ\": 3.540000, \"HSEHLD_1_M\": 275, \"HSEHLD_1_F\": 407, \"MARHH_CHD\": 1442, \"MARHH_NO_C\": 1257, \"MHH_CHILD\": 107, \"FHH_CHILD\": 269, \"FAMILIES\": 3625, \"AVE_FAM_SZ\": 3.870000, \"HSE_UNITS\": 4598, \"VACANT\": 128, \"OWNER_OCC\": 2523, \"RENTER_OCC\": 1947 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.079462716875923, 33.867357184775315 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Arvin\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"02924\", \"CAPITAL\": \"N\", \"AREALAND\": 4.806000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12956, \"WHITE\": 5836, \"BLACK\": 140, \"AMERI_ES\": 189, \"ASIAN\": 143, \"HAWN_PI\": 15, \"OTHER\": 6031, \"MULT_RACE\": 602, \"HISPANIC\": 11341, \"MALES\": 6816, \"FEMALES\": 6140, \"AGE_UNDER5\": 1470, \"AGE_5_17\": 3717, \"AGE_18_21\": 988, \"AGE_22_29\": 1712, \"AGE_30_39\": 1927, \"AGE_40_49\": 1328, \"AGE_50_64\": 1061, \"AGE_65_UP\": 753, \"MED_AGE\": 23.300000, \"MED_AGE_M\": 22.800000, \"MED_AGE_F\": 23.800000, \"HOUSEHOLDS\": 3010, \"AVE_HH_SZ\": 4.280000, \"HSEHLD_1_M\": 116, \"HSEHLD_1_F\": 170, \"MARHH_CHD\": 1551, \"MARHH_NO_C\": 486, \"MHH_CHILD\": 97, \"FHH_CHILD\": 254, \"FAMILIES\": 2645, \"AVE_FAM_SZ\": 4.510000, \"HSE_UNITS\": 3145, \"VACANT\": 135, \"OWNER_OCC\": 1676, \"RENTER_OCC\": 1334 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.830482221035581, 35.204847622685627 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ashland\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"02980\", \"CAPITAL\": \"N\", \"AREALAND\": 1.843000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 20793, \"WHITE\": 8115, \"BLACK\": 4186, \"AMERI_ES\": 269, \"ASIAN\": 3091, \"HAWN_PI\": 237, \"OTHER\": 3346, \"MULT_RACE\": 1549, \"HISPANIC\": 6753, \"MALES\": 10171, \"FEMALES\": 10622, \"AGE_UNDER5\": 1832, \"AGE_5_17\": 4085, \"AGE_18_21\": 1103, \"AGE_22_29\": 2981, \"AGE_30_39\": 3739, \"AGE_40_49\": 2868, \"AGE_50_64\": 2290, \"AGE_65_UP\": 1895, \"MED_AGE\": 30.900000, \"MED_AGE_M\": 30.000000, \"MED_AGE_F\": 31.900000, \"HOUSEHOLDS\": 7223, \"AVE_HH_SZ\": 2.830000, \"HSEHLD_1_M\": 814, \"HSEHLD_1_F\": 939, \"MARHH_CHD\": 1633, \"MARHH_NO_C\": 1235, \"MHH_CHILD\": 262, \"FHH_CHILD\": 996, \"FAMILIES\": 4870, \"AVE_FAM_SZ\": 3.390000, \"HSE_UNITS\": 7372, \"VACANT\": 149, \"OWNER_OCC\": 2593, \"RENTER_OCC\": 4630 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.109593003799191, 37.695520103262709 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Atascadero\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"03064\", \"CAPITAL\": \"N\", \"AREALAND\": 26.736000, \"AREAWATER\": 0.039000, \"POP_CL\": 6, \"POP2000\": 26411, \"WHITE\": 23451, \"BLACK\": 623, \"AMERI_ES\": 247, \"ASIAN\": 336, \"HAWN_PI\": 30, \"OTHER\": 842, \"MULT_RACE\": 882, \"HISPANIC\": 2783, \"MALES\": 13605, \"FEMALES\": 12806, \"AGE_UNDER5\": 1423, \"AGE_5_17\": 5349, \"AGE_18_21\": 1336, \"AGE_22_29\": 2219, \"AGE_30_39\": 3729, \"AGE_40_49\": 5053, \"AGE_50_64\": 4258, \"AGE_65_UP\": 3044, \"MED_AGE\": 38.200000, \"MED_AGE_M\": 37.400000, \"MED_AGE_F\": 39.000000, \"HOUSEHOLDS\": 9531, \"AVE_HH_SZ\": 2.620000, \"HSEHLD_1_M\": 887, \"HSEHLD_1_F\": 1207, \"MARHH_CHD\": 2390, \"MARHH_NO_C\": 2896, \"MHH_CHILD\": 290, \"FHH_CHILD\": 745, \"FAMILIES\": 6812, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 9848, \"VACANT\": 317, \"OWNER_OCC\": 6249, \"RENTER_OCC\": 3282 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -120.668965739505538, 35.484745558890275 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Atwater\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"03162\", \"CAPITAL\": \"N\", \"AREALAND\": 5.403000, \"AREAWATER\": 0.009000, \"POP_CL\": 6, \"POP2000\": 23113, \"WHITE\": 13252, \"BLACK\": 1153, \"AMERI_ES\": 293, \"ASIAN\": 1254, \"HAWN_PI\": 83, \"OTHER\": 5659, \"MULT_RACE\": 1419, \"HISPANIC\": 9594, \"MALES\": 11236, \"FEMALES\": 11877, \"AGE_UNDER5\": 2169, \"AGE_5_17\": 5903, \"AGE_18_21\": 1395, \"AGE_22_29\": 2601, \"AGE_30_39\": 3403, \"AGE_40_49\": 2851, \"AGE_50_64\": 2687, \"AGE_65_UP\": 2104, \"MED_AGE\": 28.500000, \"MED_AGE_M\": 27.700000, \"MED_AGE_F\": 29.400000, \"HOUSEHOLDS\": 7247, \"AVE_HH_SZ\": 3.150000, \"HSEHLD_1_M\": 515, \"HSEHLD_1_F\": 759, \"MARHH_CHD\": 2218, \"MARHH_NO_C\": 1835, \"MHH_CHILD\": 280, \"FHH_CHILD\": 831, \"FAMILIES\": 5670, \"AVE_FAM_SZ\": 3.550000, \"HSE_UNITS\": 8114, \"VACANT\": 867, \"OWNER_OCC\": 4334, \"RENTER_OCC\": 2913 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -120.599156696009715, 37.354724188056672 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Auburn\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"03204\", \"CAPITAL\": \"N\", \"AREALAND\": 7.373000, \"AREAWATER\": 0.028000, \"POP_CL\": 6, \"POP2000\": 12462, \"WHITE\": 11641, \"BLACK\": 57, \"AMERI_ES\": 104, \"ASIAN\": 165, \"HAWN_PI\": 12, \"OTHER\": 189, \"MULT_RACE\": 294, \"HISPANIC\": 744, \"MALES\": 5793, \"FEMALES\": 6669, \"AGE_UNDER5\": 663, \"AGE_5_17\": 2239, \"AGE_18_21\": 532, \"AGE_22_29\": 923, \"AGE_30_39\": 1640, \"AGE_40_49\": 2103, \"AGE_50_64\": 2101, \"AGE_65_UP\": 2261, \"MED_AGE\": 41.200000, \"MED_AGE_M\": 39.200000, \"MED_AGE_F\": 42.900000, \"HOUSEHOLDS\": 5302, \"AVE_HH_SZ\": 2.310000, \"HSEHLD_1_M\": 589, \"HSEHLD_1_F\": 1092, \"MARHH_CHD\": 1052, \"MARHH_NO_C\": 1521, \"MHH_CHILD\": 113, \"FHH_CHILD\": 339, \"FAMILIES\": 3284, \"AVE_FAM_SZ\": 2.910000, \"HSE_UNITS\": 5457, \"VACANT\": 155, \"OWNER_OCC\": 3101, \"RENTER_OCC\": 2201 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.06935545584183, 38.899279467865142 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Avenal\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"03302\", \"CAPITAL\": \"N\", \"AREALAND\": 19.125000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14674, \"WHITE\": 5259, \"BLACK\": 1850, \"AMERI_ES\": 139, \"ASIAN\": 57, \"HAWN_PI\": 8, \"OTHER\": 6952, \"MULT_RACE\": 409, \"HISPANIC\": 9667, \"MALES\": 10909, \"FEMALES\": 3765, \"AGE_UNDER5\": 924, \"AGE_5_17\": 2286, \"AGE_18_21\": 945, \"AGE_22_29\": 2806, \"AGE_30_39\": 3583, \"AGE_40_49\": 2454, \"AGE_50_64\": 1199, \"AGE_65_UP\": 477, \"MED_AGE\": 31.000000, \"MED_AGE_M\": 32.300000, \"MED_AGE_F\": 24.400000, \"HOUSEHOLDS\": 1928, \"AVE_HH_SZ\": 4.140000, \"HSEHLD_1_M\": 88, \"HSEHLD_1_F\": 130, \"MARHH_CHD\": 801, \"MARHH_NO_C\": 327, \"MHH_CHILD\": 118, \"FHH_CHILD\": 242, \"FAMILIES\": 1641, \"AVE_FAM_SZ\": 4.300000, \"HSE_UNITS\": 2061, \"VACANT\": 133, \"OWNER_OCC\": 984, \"RENTER_OCC\": 944 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -120.117639912062515, 36.025461125649599 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Avocado Heights\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"03344\", \"CAPITAL\": \"N\", \"AREALAND\": 2.669000, \"AREAWATER\": 0.154000, \"POP_CL\": 6, \"POP2000\": 15148, \"WHITE\": 7790, \"BLACK\": 223, \"AMERI_ES\": 176, \"ASIAN\": 1381, \"HAWN_PI\": 16, \"OTHER\": 5008, \"MULT_RACE\": 554, \"HISPANIC\": 11776, \"MALES\": 7547, \"FEMALES\": 7601, \"AGE_UNDER5\": 1224, \"AGE_5_17\": 3454, \"AGE_18_21\": 955, \"AGE_22_29\": 1839, \"AGE_30_39\": 2296, \"AGE_40_49\": 1979, \"AGE_50_64\": 2080, \"AGE_65_UP\": 1321, \"MED_AGE\": 30.400000, \"MED_AGE_M\": 29.700000, \"MED_AGE_F\": 31.300000, \"HOUSEHOLDS\": 3758, \"AVE_HH_SZ\": 4.000000, \"HSEHLD_1_M\": 177, \"HSEHLD_1_F\": 187, \"MARHH_CHD\": 1364, \"MARHH_NO_C\": 1118, \"MHH_CHILD\": 103, \"FHH_CHILD\": 247, \"FAMILIES\": 3282, \"AVE_FAM_SZ\": 4.160000, \"HSE_UNITS\": 3839, \"VACANT\": 81, \"OWNER_OCC\": 2860, \"RENTER_OCC\": 898 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.003437374274483, 34.03874836367104 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Azusa\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"03386\", \"CAPITAL\": \"N\", \"AREALAND\": 8.900000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 44712, \"WHITE\": 23406, \"BLACK\": 1688, \"AMERI_ES\": 585, \"ASIAN\": 2747, \"HAWN_PI\": 77, \"OTHER\": 13646, \"MULT_RACE\": 2563, \"HISPANIC\": 28522, \"MALES\": 22075, \"FEMALES\": 22637, \"AGE_UNDER5\": 4138, \"AGE_5_17\": 9642, \"AGE_18_21\": 4446, \"AGE_22_29\": 6450, \"AGE_30_39\": 7151, \"AGE_40_49\": 5309, \"AGE_50_64\": 4478, \"AGE_65_UP\": 3098, \"MED_AGE\": 27.100000, \"MED_AGE_M\": 26.500000, \"MED_AGE_F\": 27.700000, \"HOUSEHOLDS\": 12549, \"AVE_HH_SZ\": 3.410000, \"HSEHLD_1_M\": 1030, \"HSEHLD_1_F\": 1317, \"MARHH_CHD\": 3774, \"MARHH_NO_C\": 2463, \"MHH_CHILD\": 449, \"FHH_CHILD\": 1231, \"FAMILIES\": 9294, \"AVE_FAM_SZ\": 3.900000, \"HSE_UNITS\": 13013, \"VACANT\": 464, \"OWNER_OCC\": 6343, \"RENTER_OCC\": 6206 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.905768525354276, 34.130789862361169 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bakersfield\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"03526\", \"CAPITAL\": \"N\", \"AREALAND\": 113.098000, \"AREAWATER\": 1.300000, \"POP_CL\": 8, \"POP2000\": 247057, \"WHITE\": 152849, \"BLACK\": 22641, \"AMERI_ES\": 3454, \"ASIAN\": 10708, \"HAWN_PI\": 298, \"OTHER\": 46151, \"MULT_RACE\": 10956, \"HISPANIC\": 80170, \"MALES\": 120105, \"FEMALES\": 126952, \"AGE_UNDER5\": 21736, \"AGE_5_17\": 58947, \"AGE_18_21\": 14576, \"AGE_22_29\": 28069, \"AGE_30_39\": 37161, \"AGE_40_49\": 35332, \"AGE_50_64\": 29555, \"AGE_65_UP\": 21681, \"MED_AGE\": 30.100000, \"MED_AGE_M\": 29.000000, \"MED_AGE_F\": 31.100000, \"HOUSEHOLDS\": 83441, \"AVE_HH_SZ\": 2.920000, \"HSEHLD_1_M\": 7645, \"HSEHLD_1_F\": 10317, \"MARHH_CHD\": 23829, \"MARHH_NO_C\": 19657, \"MHH_CHILD\": 2769, \"FHH_CHILD\": 8857, \"FAMILIES\": 60959, \"AVE_FAM_SZ\": 3.410000, \"HSE_UNITS\": 88262, \"VACANT\": 4821, \"OWNER_OCC\": 50502, \"RENTER_OCC\": 32939 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -119.029791419062448, 35.35750603183412 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Baldwin Park\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"03666\", \"CAPITAL\": \"N\", \"AREALAND\": 6.664000, \"AREAWATER\": 0.133000, \"POP_CL\": 7, \"POP2000\": 75837, \"WHITE\": 30472, \"BLACK\": 1219, \"AMERI_ES\": 1096, \"ASIAN\": 8826, \"HAWN_PI\": 112, \"OTHER\": 30718, \"MULT_RACE\": 3394, \"HISPANIC\": 59660, \"MALES\": 37911, \"FEMALES\": 37926, \"AGE_UNDER5\": 7324, \"AGE_5_17\": 19153, \"AGE_18_21\": 5169, \"AGE_22_29\": 10213, \"AGE_30_39\": 11795, \"AGE_40_49\": 9456, \"AGE_50_64\": 8061, \"AGE_65_UP\": 4666, \"MED_AGE\": 26.900000, \"MED_AGE_M\": 26.000000, \"MED_AGE_F\": 27.700000, \"HOUSEHOLDS\": 16961, \"AVE_HH_SZ\": 4.440000, \"HSEHLD_1_M\": 576, \"HSEHLD_1_F\": 803, \"MARHH_CHD\": 7152, \"MARHH_NO_C\": 3502, \"MHH_CHILD\": 692, \"FHH_CHILD\": 1637, \"FAMILIES\": 15069, \"AVE_FAM_SZ\": 4.530000, \"HSE_UNITS\": 17430, \"VACANT\": 469, \"OWNER_OCC\": 10349, \"RENTER_OCC\": 6612 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.970550980305887, 34.08294556443694 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Banning\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"03820\", \"CAPITAL\": \"N\", \"AREALAND\": 23.054000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 23562, \"WHITE\": 15124, \"BLACK\": 2014, \"AMERI_ES\": 593, \"ASIAN\": 1268, \"HAWN_PI\": 30, \"OTHER\": 3505, \"MULT_RACE\": 1028, \"HISPANIC\": 7119, \"MALES\": 11220, \"FEMALES\": 12342, \"AGE_UNDER5\": 1599, \"AGE_5_17\": 4631, \"AGE_18_21\": 1108, \"AGE_22_29\": 1776, \"AGE_30_39\": 2476, \"AGE_40_49\": 2480, \"AGE_50_64\": 3176, \"AGE_65_UP\": 6316, \"MED_AGE\": 40.700000, \"MED_AGE_M\": 38.200000, \"MED_AGE_F\": 43.200000, \"HOUSEHOLDS\": 8923, \"AVE_HH_SZ\": 2.600000, \"HSEHLD_1_M\": 828, \"HSEHLD_1_F\": 1470, \"MARHH_CHD\": 1512, \"MARHH_NO_C\": 3233, \"MHH_CHILD\": 210, \"FHH_CHILD\": 624, \"FAMILIES\": 6239, \"AVE_FAM_SZ\": 3.110000, \"HSE_UNITS\": 9761, \"VACANT\": 838, \"OWNER_OCC\": 6426, \"RENTER_OCC\": 2497 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -116.896841292213139, 33.931811383803868 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Barstow\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"04030\", \"CAPITAL\": \"N\", \"AREALAND\": 33.587000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 21119, \"WHITE\": 12059, \"BLACK\": 2450, \"AMERI_ES\": 510, \"ASIAN\": 650, \"HAWN_PI\": 200, \"OTHER\": 3886, \"MULT_RACE\": 1364, \"HISPANIC\": 7708, \"MALES\": 10536, \"FEMALES\": 10583, \"AGE_UNDER5\": 1755, \"AGE_5_17\": 4749, \"AGE_18_21\": 1252, \"AGE_22_29\": 2272, \"AGE_30_39\": 2881, \"AGE_40_49\": 2966, \"AGE_50_64\": 2695, \"AGE_65_UP\": 2549, \"MED_AGE\": 32.100000, \"MED_AGE_M\": 31.200000, \"MED_AGE_F\": 33.100000, \"HOUSEHOLDS\": 7647, \"AVE_HH_SZ\": 2.710000, \"HSEHLD_1_M\": 1031, \"HSEHLD_1_F\": 950, \"MARHH_CHD\": 1626, \"MARHH_NO_C\": 1845, \"MHH_CHILD\": 275, \"FHH_CHILD\": 907, \"FAMILIES\": 5252, \"AVE_FAM_SZ\": 3.270000, \"HSE_UNITS\": 9153, \"VACANT\": 1506, \"OWNER_OCC\": 4139, \"RENTER_OCC\": 3508 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.034008826144671, 34.876350380727004 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bay Point\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"04415\", \"CAPITAL\": \"N\", \"AREALAND\": 9.289000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 21534, \"WHITE\": 9960, \"BLACK\": 2736, \"AMERI_ES\": 226, \"ASIAN\": 2400, \"HAWN_PI\": 184, \"OTHER\": 4345, \"MULT_RACE\": 1683, \"HISPANIC\": 8321, \"MALES\": 10797, \"FEMALES\": 10737, \"AGE_UNDER5\": 2091, \"AGE_5_17\": 5064, \"AGE_18_21\": 1275, \"AGE_22_29\": 2672, \"AGE_30_39\": 3703, \"AGE_40_49\": 3031, \"AGE_50_64\": 2381, \"AGE_65_UP\": 1317, \"MED_AGE\": 29.100000, \"MED_AGE_M\": 28.200000, \"MED_AGE_F\": 30.100000, \"HOUSEHOLDS\": 6525, \"AVE_HH_SZ\": 3.270000, \"HSEHLD_1_M\": 546, \"HSEHLD_1_F\": 637, \"MARHH_CHD\": 2000, \"MARHH_NO_C\": 1278, \"MHH_CHILD\": 251, \"FHH_CHILD\": 733, \"FAMILIES\": 4918, \"AVE_FAM_SZ\": 3.700000, \"HSE_UNITS\": 6716, \"VACANT\": 191, \"OWNER_OCC\": 4206, \"RENTER_OCC\": 2319 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.949498948794187, 38.028563165893388 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Baywood-Los Osos\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"04541\", \"CAPITAL\": \"N\", \"AREALAND\": 7.619000, \"AREAWATER\": 0.014000, \"POP_CL\": 6, \"POP2000\": 14351, \"WHITE\": 12667, \"BLACK\": 92, \"AMERI_ES\": 99, \"ASIAN\": 655, \"HAWN_PI\": 10, \"OTHER\": 358, \"MULT_RACE\": 470, \"HISPANIC\": 1292, \"MALES\": 6889, \"FEMALES\": 7462, \"AGE_UNDER5\": 615, \"AGE_5_17\": 2490, \"AGE_18_21\": 647, \"AGE_22_29\": 1095, \"AGE_30_39\": 1624, \"AGE_40_49\": 2638, \"AGE_50_64\": 2515, \"AGE_65_UP\": 2727, \"MED_AGE\": 42.900000, \"MED_AGE_M\": 41.200000, \"MED_AGE_F\": 44.200000, \"HOUSEHOLDS\": 5892, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 519, \"HSEHLD_1_F\": 989, \"MARHH_CHD\": 1196, \"MARHH_NO_C\": 1920, \"MHH_CHILD\": 107, \"FHH_CHILD\": 341, \"FAMILIES\": 3879, \"AVE_FAM_SZ\": 2.910000, \"HSE_UNITS\": 6214, \"VACANT\": 322, \"OWNER_OCC\": 4116, \"RENTER_OCC\": 1776 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -120.831905830027083, 35.3172865162419 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Beaumont\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"04758\", \"CAPITAL\": \"N\", \"AREALAND\": 27.173000, \"AREAWATER\": 0.014000, \"POP_CL\": 6, \"POP2000\": 11384, \"WHITE\": 7751, \"BLACK\": 331, \"AMERI_ES\": 265, \"ASIAN\": 189, \"HAWN_PI\": 8, \"OTHER\": 2314, \"MULT_RACE\": 526, \"HISPANIC\": 4122, \"MALES\": 5443, \"FEMALES\": 5941, \"AGE_UNDER5\": 1049, \"AGE_5_17\": 2703, \"AGE_18_21\": 687, \"AGE_22_29\": 1193, \"AGE_30_39\": 1710, \"AGE_40_49\": 1559, \"AGE_50_64\": 1267, \"AGE_65_UP\": 1216, \"MED_AGE\": 30.300000, \"MED_AGE_M\": 29.400000, \"MED_AGE_F\": 31.300000, \"HOUSEHOLDS\": 3881, \"AVE_HH_SZ\": 2.890000, \"HSEHLD_1_M\": 352, \"HSEHLD_1_F\": 515, \"MARHH_CHD\": 1021, \"MARHH_NO_C\": 816, \"MHH_CHILD\": 148, \"FHH_CHILD\": 483, \"FAMILIES\": 2784, \"AVE_FAM_SZ\": 3.390000, \"HSE_UNITS\": 4258, \"VACANT\": 377, \"OWNER_OCC\": 2097, \"RENTER_OCC\": 1784 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -116.97299544822414, 33.924178390494028 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bell\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"04870\", \"CAPITAL\": \"N\", \"AREALAND\": 2.477000, \"AREAWATER\": 0.166000, \"POP_CL\": 6, \"POP2000\": 36664, \"WHITE\": 17764, \"BLACK\": 468, \"AMERI_ES\": 470, \"ASIAN\": 391, \"HAWN_PI\": 22, \"OTHER\": 15798, \"MULT_RACE\": 1751, \"HISPANIC\": 33328, \"MALES\": 18516, \"FEMALES\": 18148, \"AGE_UNDER5\": 3957, \"AGE_5_17\": 8995, \"AGE_18_21\": 2624, \"AGE_22_29\": 5771, \"AGE_30_39\": 5939, \"AGE_40_49\": 4137, \"AGE_50_64\": 3277, \"AGE_65_UP\": 1964, \"MED_AGE\": 25.900000, \"MED_AGE_M\": 25.400000, \"MED_AGE_F\": 26.300000, \"HOUSEHOLDS\": 8918, \"AVE_HH_SZ\": 4.050000, \"HSEHLD_1_M\": 471, \"HSEHLD_1_F\": 510, \"MARHH_CHD\": 3700, \"MARHH_NO_C\": 1468, \"MHH_CHILD\": 410, \"FHH_CHILD\": 1028, \"FAMILIES\": 7616, \"AVE_FAM_SZ\": 4.270000, \"HSE_UNITS\": 9215, \"VACANT\": 297, \"OWNER_OCC\": 2758, \"RENTER_OCC\": 6160 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.181690683946186, 33.978563599462262 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bellflower\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"04982\", \"CAPITAL\": \"N\", \"AREALAND\": 6.073000, \"AREAWATER\": 0.074000, \"POP_CL\": 7, \"POP2000\": 72878, \"WHITE\": 33593, \"BLACK\": 9540, \"AMERI_ES\": 667, \"ASIAN\": 7062, \"HAWN_PI\": 511, \"OTHER\": 17766, \"MULT_RACE\": 3739, \"HISPANIC\": 31503, \"MALES\": 35520, \"FEMALES\": 37358, \"AGE_UNDER5\": 6943, \"AGE_5_17\": 16270, \"AGE_18_21\": 4194, \"AGE_22_29\": 9442, \"AGE_30_39\": 11991, \"AGE_40_49\": 9590, \"AGE_50_64\": 8303, \"AGE_65_UP\": 6145, \"MED_AGE\": 29.700000, \"MED_AGE_M\": 28.800000, \"MED_AGE_F\": 30.500000, \"HOUSEHOLDS\": 23367, \"AVE_HH_SZ\": 3.090000, \"HSEHLD_1_M\": 2292, \"HSEHLD_1_F\": 2629, \"MARHH_CHD\": 6478, \"MARHH_NO_C\": 4502, \"MHH_CHILD\": 896, \"FHH_CHILD\": 2832, \"FAMILIES\": 17117, \"AVE_FAM_SZ\": 3.590000, \"HSE_UNITS\": 24247, \"VACANT\": 880, \"OWNER_OCC\": 9427, \"RENTER_OCC\": 13940 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.126420852349398, 33.888310363471675 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bell Gardens\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"04996\", \"CAPITAL\": \"N\", \"AREALAND\": 2.486000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 44054, \"WHITE\": 21180, \"BLACK\": 429, \"AMERI_ES\": 730, \"ASIAN\": 270, \"HAWN_PI\": 45, \"OTHER\": 19329, \"MULT_RACE\": 2071, \"HISPANIC\": 41132, \"MALES\": 22301, \"FEMALES\": 21753, \"AGE_UNDER5\": 5043, \"AGE_5_17\": 12352, \"AGE_18_21\": 3216, \"AGE_22_29\": 6722, \"AGE_30_39\": 6886, \"AGE_40_49\": 4843, \"AGE_50_64\": 3256, \"AGE_65_UP\": 1736, \"MED_AGE\": 23.800000, \"MED_AGE_M\": 23.400000, \"MED_AGE_F\": 24.100000, \"HOUSEHOLDS\": 9466, \"AVE_HH_SZ\": 4.610000, \"HSEHLD_1_M\": 376, \"HSEHLD_1_F\": 308, \"MARHH_CHD\": 4449, \"MARHH_NO_C\": 1240, \"MHH_CHILD\": 564, \"FHH_CHILD\": 1354, \"FAMILIES\": 8511, \"AVE_FAM_SZ\": 4.690000, \"HSE_UNITS\": 9788, \"VACANT\": 322, \"OWNER_OCC\": 2252, \"RENTER_OCC\": 7214 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.154835609180253, 33.968328736026095 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Belmont\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"05108\", \"CAPITAL\": \"N\", \"AREALAND\": 4.526000, \"AREAWATER\": 0.008000, \"POP_CL\": 6, \"POP2000\": 25123, \"WHITE\": 18889, \"BLACK\": 422, \"AMERI_ES\": 72, \"ASIAN\": 3878, \"HAWN_PI\": 136, \"OTHER\": 659, \"MULT_RACE\": 1067, \"HISPANIC\": 2090, \"MALES\": 12350, \"FEMALES\": 12773, \"AGE_UNDER5\": 1512, \"AGE_5_17\": 3333, \"AGE_18_21\": 894, \"AGE_22_29\": 2653, \"AGE_30_39\": 4751, \"AGE_40_49\": 4286, \"AGE_50_64\": 4367, \"AGE_65_UP\": 3327, \"MED_AGE\": 38.800000, \"MED_AGE_M\": 38.200000, \"MED_AGE_F\": 39.500000, \"HOUSEHOLDS\": 10418, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 1302, \"HSEHLD_1_F\": 1536, \"MARHH_CHD\": 2264, \"MARHH_NO_C\": 3211, \"MHH_CHILD\": 147, \"FHH_CHILD\": 344, \"FAMILIES\": 6547, \"AVE_FAM_SZ\": 2.890000, \"HSE_UNITS\": 10577, \"VACANT\": 159, \"OWNER_OCC\": 6270, \"RENTER_OCC\": 4148 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.284470333362293, 37.519035165715536 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Benicia\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"05290\", \"CAPITAL\": \"N\", \"AREALAND\": 12.900000, \"AREAWATER\": 2.695000, \"POP_CL\": 6, \"POP2000\": 26865, \"WHITE\": 21195, \"BLACK\": 1295, \"AMERI_ES\": 162, \"ASIAN\": 2031, \"HAWN_PI\": 78, \"OTHER\": 712, \"MULT_RACE\": 1392, \"HISPANIC\": 2424, \"MALES\": 13066, \"FEMALES\": 13799, \"AGE_UNDER5\": 1510, \"AGE_5_17\": 5773, \"AGE_18_21\": 1091, \"AGE_22_29\": 1815, \"AGE_30_39\": 3815, \"AGE_40_49\": 5346, \"AGE_50_64\": 5017, \"AGE_65_UP\": 2498, \"MED_AGE\": 38.900000, \"MED_AGE_M\": 37.600000, \"MED_AGE_F\": 39.800000, \"HOUSEHOLDS\": 10328, \"AVE_HH_SZ\": 2.600000, \"HSEHLD_1_M\": 971, \"HSEHLD_1_F\": 1469, \"MARHH_CHD\": 2778, \"MARHH_NO_C\": 2824, \"MHH_CHILD\": 246, \"FHH_CHILD\": 770, \"FAMILIES\": 7244, \"AVE_FAM_SZ\": 3.100000, \"HSE_UNITS\": 10547, \"VACANT\": 219, \"OWNER_OCC\": 7304, \"RENTER_OCC\": 3024 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.149064764751159, 38.064274310719391 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Berkeley\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"06000\", \"CAPITAL\": \"N\", \"AREALAND\": 10.459000, \"AREAWATER\": 7.247000, \"POP_CL\": 8, \"POP2000\": 102743, \"WHITE\": 60797, \"BLACK\": 14007, \"AMERI_ES\": 467, \"ASIAN\": 16837, \"HAWN_PI\": 146, \"OTHER\": 4764, \"MULT_RACE\": 5725, \"HISPANIC\": 10001, \"MALES\": 50456, \"FEMALES\": 52287, \"AGE_UNDER5\": 4109, \"AGE_5_17\": 10404, \"AGE_18_21\": 13820, \"AGE_22_29\": 18466, \"AGE_30_39\": 15592, \"AGE_40_49\": 13983, \"AGE_50_64\": 15885, \"AGE_65_UP\": 10484, \"MED_AGE\": 32.500000, \"MED_AGE_M\": 31.100000, \"MED_AGE_F\": 34.200000, \"HOUSEHOLDS\": 44955, \"AVE_HH_SZ\": 2.160000, \"HSEHLD_1_M\": 8088, \"HSEHLD_1_F\": 9051, \"MARHH_CHD\": 5322, \"MARHH_NO_C\": 7650, \"MHH_CHILD\": 542, \"FHH_CHILD\": 2121, \"FAMILIES\": 18646, \"AVE_FAM_SZ\": 2.840000, \"HSE_UNITS\": 46875, \"VACANT\": 1920, \"OWNER_OCC\": 19214, \"RENTER_OCC\": 25741 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.267289108117708, 37.872727203289749 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Beverly Hills\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"06308\", \"CAPITAL\": \"N\", \"AREALAND\": 5.674000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 33784, \"WHITE\": 28736, \"BLACK\": 597, \"AMERI_ES\": 43, \"ASIAN\": 2383, \"HAWN_PI\": 10, \"OTHER\": 508, \"MULT_RACE\": 1507, \"HISPANIC\": 1565, \"MALES\": 15371, \"FEMALES\": 18413, \"AGE_UNDER5\": 1266, \"AGE_5_17\": 5485, \"AGE_18_21\": 1201, \"AGE_22_29\": 3230, \"AGE_30_39\": 4970, \"AGE_40_49\": 5276, \"AGE_50_64\": 6407, \"AGE_65_UP\": 5949, \"MED_AGE\": 41.300000, \"MED_AGE_M\": 40.700000, \"MED_AGE_F\": 41.900000, \"HOUSEHOLDS\": 15035, \"AVE_HH_SZ\": 2.240000, \"HSEHLD_1_M\": 2012, \"HSEHLD_1_F\": 3725, \"MARHH_CHD\": 2822, \"MARHH_NO_C\": 3762, \"MHH_CHILD\": 180, \"FHH_CHILD\": 661, \"FAMILIES\": 8263, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 15856, \"VACANT\": 821, \"OWNER_OCC\": 6518, \"RENTER_OCC\": 8517 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.398123777810682, 34.073274504445891 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Blackhawk-Camino Tassajara\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"06933\", \"CAPITAL\": \"N\", \"AREALAND\": 9.313000, \"AREAWATER\": 0.018000, \"POP_CL\": 6, \"POP2000\": 10048, \"WHITE\": 7747, \"BLACK\": 232, \"AMERI_ES\": 18, \"ASIAN\": 1686, \"HAWN_PI\": 14, \"OTHER\": 75, \"MULT_RACE\": 276, \"HISPANIC\": 391, \"MALES\": 4954, \"FEMALES\": 5094, \"AGE_UNDER5\": 572, \"AGE_5_17\": 2344, \"AGE_18_21\": 335, \"AGE_22_29\": 335, \"AGE_30_39\": 1158, \"AGE_40_49\": 2232, \"AGE_50_64\": 2428, \"AGE_65_UP\": 644, \"MED_AGE\": 41.400000, \"MED_AGE_M\": 42.300000, \"MED_AGE_F\": 40.400000, \"HOUSEHOLDS\": 3326, \"AVE_HH_SZ\": 3.010000, \"HSEHLD_1_M\": 94, \"HSEHLD_1_F\": 130, \"MARHH_CHD\": 1415, \"MARHH_NO_C\": 1385, \"MHH_CHILD\": 40, \"FHH_CHILD\": 81, \"FAMILIES\": 3011, \"AVE_FAM_SZ\": 3.160000, \"HSE_UNITS\": 3381, \"VACANT\": 55, \"OWNER_OCC\": 3140, \"RENTER_OCC\": 186 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.90758510402344, 37.810827771035108 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bloomington\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"07064\", \"CAPITAL\": \"N\", \"AREALAND\": 5.968000, \"AREAWATER\": 0.003000, \"POP_CL\": 6, \"POP2000\": 19318, \"WHITE\": 10437, \"BLACK\": 778, \"AMERI_ES\": 346, \"ASIAN\": 215, \"HAWN_PI\": 38, \"OTHER\": 6666, \"MULT_RACE\": 838, \"HISPANIC\": 12436, \"MALES\": 9671, \"FEMALES\": 9647, \"AGE_UNDER5\": 1804, \"AGE_5_17\": 5229, \"AGE_18_21\": 1212, \"AGE_22_29\": 2118, \"AGE_30_39\": 3006, \"AGE_40_49\": 2453, \"AGE_50_64\": 2051, \"AGE_65_UP\": 1445, \"MED_AGE\": 27.400000, \"MED_AGE_M\": 26.600000, \"MED_AGE_F\": 28.100000, \"HOUSEHOLDS\": 4950, \"AVE_HH_SZ\": 3.850000, \"HSEHLD_1_M\": 316, \"HSEHLD_1_F\": 316, \"MARHH_CHD\": 1800, \"MARHH_NO_C\": 1158, \"MHH_CHILD\": 223, \"FHH_CHILD\": 457, \"FAMILIES\": 4128, \"AVE_FAM_SZ\": 4.150000, \"HSE_UNITS\": 5260, \"VACANT\": 310, \"OWNER_OCC\": 3603, \"RENTER_OCC\": 1347 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.397838389304809, 34.05956684711969 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Blythe\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"07218\", \"CAPITAL\": \"N\", \"AREALAND\": 24.235000, \"AREAWATER\": 0.783000, \"POP_CL\": 6, \"POP2000\": 12155, \"WHITE\": 6735, \"BLACK\": 1014, \"AMERI_ES\": 174, \"ASIAN\": 168, \"HAWN_PI\": 24, \"OTHER\": 3499, \"MULT_RACE\": 541, \"HISPANIC\": 5571, \"MALES\": 6054, \"FEMALES\": 6101, \"AGE_UNDER5\": 1186, \"AGE_5_17\": 2940, \"AGE_18_21\": 642, \"AGE_22_29\": 1196, \"AGE_30_39\": 1740, \"AGE_40_49\": 1705, \"AGE_50_64\": 1539, \"AGE_65_UP\": 1207, \"MED_AGE\": 30.700000, \"MED_AGE_M\": 30.400000, \"MED_AGE_F\": 31.100000, \"HOUSEHOLDS\": 4103, \"AVE_HH_SZ\": 2.910000, \"HSEHLD_1_M\": 499, \"HSEHLD_1_F\": 441, \"MARHH_CHD\": 1090, \"MARHH_NO_C\": 961, \"MHH_CHILD\": 160, \"FHH_CHILD\": 447, \"FAMILIES\": 2976, \"AVE_FAM_SZ\": 3.450000, \"HSE_UNITS\": 4891, \"VACANT\": 788, \"OWNER_OCC\": 2336, \"RENTER_OCC\": 1767 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -114.588987038497748, 33.617182401210968 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bonita\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"07414\", \"CAPITAL\": \"N\", \"AREALAND\": 4.895000, \"AREAWATER\": 0.182000, \"POP_CL\": 6, \"POP2000\": 12401, \"WHITE\": 8928, \"BLACK\": 386, \"AMERI_ES\": 70, \"ASIAN\": 1059, \"HAWN_PI\": 38, \"OTHER\": 1320, \"MULT_RACE\": 600, \"HISPANIC\": 3779, \"MALES\": 6044, \"FEMALES\": 6357, \"AGE_UNDER5\": 630, \"AGE_5_17\": 2392, \"AGE_18_21\": 572, \"AGE_22_29\": 955, \"AGE_30_39\": 1546, \"AGE_40_49\": 2052, \"AGE_50_64\": 2452, \"AGE_65_UP\": 1802, \"MED_AGE\": 40.600000, \"MED_AGE_M\": 39.400000, \"MED_AGE_F\": 41.500000, \"HOUSEHOLDS\": 4179, \"AVE_HH_SZ\": 2.940000, \"HSEHLD_1_M\": 266, \"HSEHLD_1_F\": 321, \"MARHH_CHD\": 1195, \"MARHH_NO_C\": 1578, \"MHH_CHILD\": 78, \"FHH_CHILD\": 202, \"FAMILIES\": 3399, \"AVE_FAM_SZ\": 3.220000, \"HSE_UNITS\": 4281, \"VACANT\": 102, \"OWNER_OCC\": 3259, \"RENTER_OCC\": 920 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.034643152655903, 32.658503073371499 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bostonia\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"07624\", \"CAPITAL\": \"N\", \"AREALAND\": 1.942000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 15169, \"WHITE\": 12106, \"BLACK\": 604, \"AMERI_ES\": 137, \"ASIAN\": 225, \"HAWN_PI\": 54, \"OTHER\": 1182, \"MULT_RACE\": 861, \"HISPANIC\": 2523, \"MALES\": 7437, \"FEMALES\": 7732, \"AGE_UNDER5\": 1272, \"AGE_5_17\": 3021, \"AGE_18_21\": 832, \"AGE_22_29\": 2017, \"AGE_30_39\": 2522, \"AGE_40_49\": 1918, \"AGE_50_64\": 1833, \"AGE_65_UP\": 1754, \"MED_AGE\": 31.800000, \"MED_AGE_M\": 30.300000, \"MED_AGE_F\": 33.200000, \"HOUSEHOLDS\": 5640, \"AVE_HH_SZ\": 2.670000, \"HSEHLD_1_M\": 573, \"HSEHLD_1_F\": 797, \"MARHH_CHD\": 1386, \"MARHH_NO_C\": 1264, \"MHH_CHILD\": 206, \"FHH_CHILD\": 497, \"FAMILIES\": 3776, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 5819, \"VACANT\": 179, \"OWNER_OCC\": 2480, \"RENTER_OCC\": 3160 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -116.949228680115851, 32.821692387322635 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Brawley\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"08058\", \"CAPITAL\": \"N\", \"AREALAND\": 5.829000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 22052, \"WHITE\": 11638, \"BLACK\": 540, \"AMERI_ES\": 244, \"ASIAN\": 288, \"HAWN_PI\": 41, \"OTHER\": 8349, \"MULT_RACE\": 952, \"HISPANIC\": 16280, \"MALES\": 10855, \"FEMALES\": 11197, \"AGE_UNDER5\": 1941, \"AGE_5_17\": 5657, \"AGE_18_21\": 1309, \"AGE_22_29\": 2213, \"AGE_30_39\": 3261, \"AGE_40_49\": 2945, \"AGE_50_64\": 2606, \"AGE_65_UP\": 2120, \"MED_AGE\": 29.700000, \"MED_AGE_M\": 28.500000, \"MED_AGE_F\": 30.800000, \"HOUSEHOLDS\": 6631, \"AVE_HH_SZ\": 3.280000, \"HSEHLD_1_M\": 538, \"HSEHLD_1_F\": 595, \"MARHH_CHD\": 2222, \"MARHH_NO_C\": 1491, \"MHH_CHILD\": 220, \"FHH_CHILD\": 742, \"FAMILIES\": 5264, \"AVE_FAM_SZ\": 3.710000, \"HSE_UNITS\": 7038, \"VACANT\": 407, \"OWNER_OCC\": 3547, \"RENTER_OCC\": 3084 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -115.535903286143821, 32.977074435929154 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Brea\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"08100\", \"CAPITAL\": \"N\", \"AREALAND\": 10.544000, \"AREAWATER\": 0.008000, \"POP_CL\": 6, \"POP2000\": 35410, \"WHITE\": 27384, \"BLACK\": 447, \"AMERI_ES\": 184, \"ASIAN\": 3218, \"HAWN_PI\": 77, \"OTHER\": 2748, \"MULT_RACE\": 1352, \"HISPANIC\": 7205, \"MALES\": 17278, \"FEMALES\": 18132, \"AGE_UNDER5\": 2145, \"AGE_5_17\": 6937, \"AGE_18_21\": 1725, \"AGE_22_29\": 3594, \"AGE_30_39\": 5396, \"AGE_40_49\": 5799, \"AGE_50_64\": 5791, \"AGE_65_UP\": 4023, \"MED_AGE\": 36.400000, \"MED_AGE_M\": 35.000000, \"MED_AGE_F\": 37.800000, \"HOUSEHOLDS\": 13067, \"AVE_HH_SZ\": 2.700000, \"HSEHLD_1_M\": 1239, \"HSEHLD_1_F\": 1772, \"MARHH_CHD\": 3540, \"MARHH_NO_C\": 3858, \"MHH_CHILD\": 239, \"FHH_CHILD\": 736, \"FAMILIES\": 9301, \"AVE_FAM_SZ\": 3.210000, \"HSE_UNITS\": 13327, \"VACANT\": 260, \"OWNER_OCC\": 8392, \"RENTER_OCC\": 4675 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.88784703341301, 33.923469643509613 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Brentwood\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"08142\", \"CAPITAL\": \"N\", \"AREALAND\": 11.644000, \"AREAWATER\": 0.014000, \"POP_CL\": 6, \"POP2000\": 23302, \"WHITE\": 17201, \"BLACK\": 579, \"AMERI_ES\": 143, \"ASIAN\": 666, \"HAWN_PI\": 73, \"OTHER\": 3387, \"MULT_RACE\": 1253, \"HISPANIC\": 6565, \"MALES\": 11487, \"FEMALES\": 11815, \"AGE_UNDER5\": 2263, \"AGE_5_17\": 5380, \"AGE_18_21\": 956, \"AGE_22_29\": 1921, \"AGE_30_39\": 4506, \"AGE_40_49\": 3229, \"AGE_50_64\": 2814, \"AGE_65_UP\": 2233, \"MED_AGE\": 32.700000, \"MED_AGE_M\": 32.500000, \"MED_AGE_F\": 32.900000, \"HOUSEHOLDS\": 7497, \"AVE_HH_SZ\": 3.100000, \"HSEHLD_1_M\": 390, \"HSEHLD_1_F\": 689, \"MARHH_CHD\": 2997, \"MARHH_NO_C\": 2208, \"MHH_CHILD\": 166, \"FHH_CHILD\": 426, \"FAMILIES\": 6127, \"AVE_FAM_SZ\": 3.430000, \"HSE_UNITS\": 7788, \"VACANT\": 291, \"OWNER_OCC\": 6053, \"RENTER_OCC\": 1444 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.703537841290043, 37.936074462111378 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Buena Park\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"08786\", \"CAPITAL\": \"N\", \"AREALAND\": 10.574000, \"AREAWATER\": 0.063000, \"POP_CL\": 7, \"POP2000\": 78282, \"WHITE\": 41479, \"BLACK\": 3000, \"AMERI_ES\": 750, \"ASIAN\": 16490, \"HAWN_PI\": 397, \"OTHER\": 11893, \"MULT_RACE\": 4273, \"HISPANIC\": 26221, \"MALES\": 38800, \"FEMALES\": 39482, \"AGE_UNDER5\": 6306, \"AGE_5_17\": 16715, \"AGE_18_21\": 4422, \"AGE_22_29\": 9014, \"AGE_30_39\": 13222, \"AGE_40_49\": 11416, \"AGE_50_64\": 9882, \"AGE_65_UP\": 7305, \"MED_AGE\": 32.000000, \"MED_AGE_M\": 31.100000, \"MED_AGE_F\": 33.000000, \"HOUSEHOLDS\": 23332, \"AVE_HH_SZ\": 3.320000, \"HSEHLD_1_M\": 1511, \"HSEHLD_1_F\": 1850, \"MARHH_CHD\": 7572, \"MARHH_NO_C\": 6199, \"MHH_CHILD\": 697, \"FHH_CHILD\": 1770, \"FAMILIES\": 18733, \"AVE_FAM_SZ\": 3.640000, \"HSE_UNITS\": 23826, \"VACANT\": 494, \"OWNER_OCC\": 13326, \"RENTER_OCC\": 10006 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.003045807659134, 33.856351281777954 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Burbank\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"08954\", \"CAPITAL\": \"N\", \"AREALAND\": 17.348000, \"AREAWATER\": 0.017000, \"POP_CL\": 8, \"POP2000\": 100316, \"WHITE\": 72409, \"BLACK\": 2066, \"AMERI_ES\": 549, \"ASIAN\": 9181, \"HAWN_PI\": 142, \"OTHER\": 9908, \"MULT_RACE\": 6061, \"HISPANIC\": 24953, \"MALES\": 48635, \"FEMALES\": 51681, \"AGE_UNDER5\": 5759, \"AGE_5_17\": 16578, \"AGE_18_21\": 4133, \"AGE_22_29\": 11610, \"AGE_30_39\": 18935, \"AGE_40_49\": 15893, \"AGE_50_64\": 14549, \"AGE_65_UP\": 12859, \"MED_AGE\": 36.400000, \"MED_AGE_M\": 35.100000, \"MED_AGE_F\": 37.700000, \"HOUSEHOLDS\": 41608, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 6274, \"HSEHLD_1_F\": 7703, \"MARHH_CHD\": 8569, \"MARHH_NO_C\": 9228, \"MHH_CHILD\": 756, \"FHH_CHILD\": 2518, \"FAMILIES\": 24362, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 42847, \"VACANT\": 1239, \"OWNER_OCC\": 18112, \"RENTER_OCC\": 23496 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.32703261681587, 34.180331036003572 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Burlingame\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"09066\", \"CAPITAL\": \"N\", \"AREALAND\": 4.335000, \"AREAWATER\": 1.696000, \"POP_CL\": 6, \"POP2000\": 28158, \"WHITE\": 21648, \"BLACK\": 296, \"AMERI_ES\": 65, \"ASIAN\": 3881, \"HAWN_PI\": 135, \"OTHER\": 1019, \"MULT_RACE\": 1114, \"HISPANIC\": 2995, \"MALES\": 13454, \"FEMALES\": 14704, \"AGE_UNDER5\": 1574, \"AGE_5_17\": 3828, \"AGE_18_21\": 761, \"AGE_22_29\": 3122, \"AGE_30_39\": 5653, \"AGE_40_49\": 4609, \"AGE_50_64\": 4324, \"AGE_65_UP\": 4287, \"MED_AGE\": 38.400000, \"MED_AGE_M\": 37.200000, \"MED_AGE_F\": 39.600000, \"HOUSEHOLDS\": 12511, \"AVE_HH_SZ\": 2.210000, \"HSEHLD_1_M\": 1892, \"HSEHLD_1_F\": 2556, \"MARHH_CHD\": 2438, \"MARHH_NO_C\": 3202, \"MHH_CHILD\": 143, \"FHH_CHILD\": 436, \"FAMILIES\": 6954, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 12869, \"VACANT\": 358, \"OWNER_OCC\": 5987, \"RENTER_OCC\": 6524 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.356272612593756, 37.584212197284913 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Calabasas\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"09598\", \"CAPITAL\": \"N\", \"AREALAND\": 13.103000, \"AREAWATER\": 0.051000, \"POP_CL\": 6, \"POP2000\": 20033, \"WHITE\": 17412, \"BLACK\": 236, \"AMERI_ES\": 27, \"ASIAN\": 1544, \"HAWN_PI\": 9, \"OTHER\": 262, \"MULT_RACE\": 543, \"HISPANIC\": 949, \"MALES\": 9737, \"FEMALES\": 10296, \"AGE_UNDER5\": 1223, \"AGE_5_17\": 4514, \"AGE_18_21\": 685, \"AGE_22_29\": 1321, \"AGE_30_39\": 2861, \"AGE_40_49\": 4078, \"AGE_50_64\": 3635, \"AGE_65_UP\": 1716, \"MED_AGE\": 38.500000, \"MED_AGE_M\": 38.300000, \"MED_AGE_F\": 38.600000, \"HOUSEHOLDS\": 7229, \"AVE_HH_SZ\": 2.760000, \"HSEHLD_1_M\": 551, \"HSEHLD_1_F\": 677, \"MARHH_CHD\": 2541, \"MARHH_NO_C\": 2109, \"MHH_CHILD\": 147, \"FHH_CHILD\": 441, \"FAMILIES\": 5543, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 7426, \"VACANT\": 197, \"OWNER_OCC\": 5830, \"RENTER_OCC\": 1399 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.65942793302419, 34.138549385359269 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Calexico\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"09710\", \"CAPITAL\": \"N\", \"AREALAND\": 6.227000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 27109, \"WHITE\": 12621, \"BLACK\": 134, \"AMERI_ES\": 181, \"ASIAN\": 492, \"HAWN_PI\": 6, \"OTHER\": 12739, \"MULT_RACE\": 936, \"HISPANIC\": 25832, \"MALES\": 12629, \"FEMALES\": 14480, \"AGE_UNDER5\": 2109, \"AGE_5_17\": 7355, \"AGE_18_21\": 1706, \"AGE_22_29\": 2638, \"AGE_30_39\": 3706, \"AGE_40_49\": 3697, \"AGE_50_64\": 3083, \"AGE_65_UP\": 2815, \"MED_AGE\": 29.200000, \"MED_AGE_M\": 26.900000, \"MED_AGE_F\": 31.000000, \"HOUSEHOLDS\": 6814, \"AVE_HH_SZ\": 3.960000, \"HSEHLD_1_M\": 243, \"HSEHLD_1_F\": 467, \"MARHH_CHD\": 2653, \"MARHH_NO_C\": 1517, \"MHH_CHILD\": 130, \"FHH_CHILD\": 858, \"FAMILIES\": 5983, \"AVE_FAM_SZ\": 4.210000, \"HSE_UNITS\": 6983, \"VACANT\": 169, \"OWNER_OCC\": 3764, \"RENTER_OCC\": 3050 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -115.497639417989049, 32.678285097493429 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Camarillo\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"10046\", \"CAPITAL\": \"N\", \"AREALAND\": 18.929000, \"AREAWATER\": 0.023000, \"POP_CL\": 7, \"POP2000\": 57077, \"WHITE\": 46036, \"BLACK\": 856, \"AMERI_ES\": 299, \"ASIAN\": 4129, \"HAWN_PI\": 114, \"OTHER\": 3605, \"MULT_RACE\": 2038, \"HISPANIC\": 8869, \"MALES\": 27641, \"FEMALES\": 29436, \"AGE_UNDER5\": 3739, \"AGE_5_17\": 10680, \"AGE_18_21\": 2264, \"AGE_22_29\": 4406, \"AGE_30_39\": 8542, \"AGE_40_49\": 8925, \"AGE_50_64\": 8841, \"AGE_65_UP\": 9680, \"MED_AGE\": 38.900000, \"MED_AGE_M\": 37.400000, \"MED_AGE_F\": 40.300000, \"HOUSEHOLDS\": 21438, \"AVE_HH_SZ\": 2.620000, \"HSEHLD_1_M\": 1760, \"HSEHLD_1_F\": 3405, \"MARHH_CHD\": 5697, \"MARHH_NO_C\": 7093, \"MHH_CHILD\": 372, \"FHH_CHILD\": 999, \"FAMILIES\": 15240, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 21946, \"VACANT\": 508, \"OWNER_OCC\": 15762, \"RENTER_OCC\": 5676 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -119.030473665486966, 34.22582714727865 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cameron Park\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"10256\", \"CAPITAL\": \"N\", \"AREALAND\": 7.363000, \"AREAWATER\": 0.070000, \"POP_CL\": 6, \"POP2000\": 14549, \"WHITE\": 13421, \"BLACK\": 92, \"AMERI_ES\": 129, \"ASIAN\": 209, \"HAWN_PI\": 18, \"OTHER\": 273, \"MULT_RACE\": 407, \"HISPANIC\": 975, \"MALES\": 7102, \"FEMALES\": 7447, \"AGE_UNDER5\": 968, \"AGE_5_17\": 2973, \"AGE_18_21\": 664, \"AGE_22_29\": 1170, \"AGE_30_39\": 2123, \"AGE_40_49\": 2541, \"AGE_50_64\": 2323, \"AGE_65_UP\": 1787, \"MED_AGE\": 37.500000, \"MED_AGE_M\": 36.300000, \"MED_AGE_F\": 38.600000, \"HOUSEHOLDS\": 5537, \"AVE_HH_SZ\": 2.630000, \"HSEHLD_1_M\": 442, \"HSEHLD_1_F\": 622, \"MARHH_CHD\": 1502, \"MARHH_NO_C\": 1812, \"MHH_CHILD\": 148, \"FHH_CHILD\": 421, \"FAMILIES\": 4149, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 5703, \"VACANT\": 166, \"OWNER_OCC\": 3959, \"RENTER_OCC\": 1578 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -120.984580764527763, 38.677105129922381 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Campbell\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"10345\", \"CAPITAL\": \"N\", \"AREALAND\": 5.606000, \"AREAWATER\": 0.099000, \"POP_CL\": 6, \"POP2000\": 38138, \"WHITE\": 27758, \"BLACK\": 964, \"AMERI_ES\": 248, \"ASIAN\": 5402, \"HAWN_PI\": 88, \"OTHER\": 1859, \"MULT_RACE\": 1819, \"HISPANIC\": 5083, \"MALES\": 18933, \"FEMALES\": 19205, \"AGE_UNDER5\": 2491, \"AGE_5_17\": 5728, \"AGE_18_21\": 1398, \"AGE_22_29\": 5253, \"AGE_30_39\": 8023, \"AGE_40_49\": 6454, \"AGE_50_64\": 5088, \"AGE_65_UP\": 3703, \"MED_AGE\": 35.200000, \"MED_AGE_M\": 34.500000, \"MED_AGE_F\": 36.000000, \"HOUSEHOLDS\": 15920, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 2317, \"HSEHLD_1_F\": 2529, \"MARHH_CHD\": 3261, \"MARHH_NO_C\": 3526, \"MHH_CHILD\": 355, \"FHH_CHILD\": 836, \"FAMILIES\": 9121, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 16286, \"VACANT\": 366, \"OWNER_OCC\": 7666, \"RENTER_OCC\": 8254 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.948729060026437, 37.284733580146614 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Capitola\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"11040\", \"CAPITAL\": \"N\", \"AREALAND\": 1.613000, \"AREAWATER\": 0.073000, \"POP_CL\": 6, \"POP2000\": 10033, \"WHITE\": 8412, \"BLACK\": 117, \"AMERI_ES\": 57, \"ASIAN\": 401, \"HAWN_PI\": 20, \"OTHER\": 555, \"MULT_RACE\": 471, \"HISPANIC\": 1267, \"MALES\": 4766, \"FEMALES\": 5267, \"AGE_UNDER5\": 488, \"AGE_5_17\": 1358, \"AGE_18_21\": 495, \"AGE_22_29\": 1268, \"AGE_30_39\": 1653, \"AGE_40_49\": 1727, \"AGE_50_64\": 1624, \"AGE_65_UP\": 1420, \"MED_AGE\": 38.400000, \"MED_AGE_M\": 36.300000, \"MED_AGE_F\": 40.800000, \"HOUSEHOLDS\": 4692, \"AVE_HH_SZ\": 2.110000, \"HSEHLD_1_M\": 652, \"HSEHLD_1_F\": 1086, \"MARHH_CHD\": 642, \"MARHH_NO_C\": 911, \"MHH_CHILD\": 113, \"FHH_CHILD\": 307, \"FAMILIES\": 2279, \"AVE_FAM_SZ\": 2.790000, \"HSE_UNITS\": 5309, \"VACANT\": 617, \"OWNER_OCC\": 2195, \"RENTER_OCC\": 2497 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.948571870261532, 36.97706635150098 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Carlsbad\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"11194\", \"CAPITAL\": \"N\", \"AREALAND\": 37.435000, \"AREAWATER\": 3.355000, \"POP_CL\": 7, \"POP2000\": 78247, \"WHITE\": 67723, \"BLACK\": 753, \"AMERI_ES\": 329, \"ASIAN\": 3315, \"HAWN_PI\": 155, \"OTHER\": 3636, \"MULT_RACE\": 2336, \"HISPANIC\": 9170, \"MALES\": 38291, \"FEMALES\": 39956, \"AGE_UNDER5\": 5028, \"AGE_5_17\": 13212, \"AGE_18_21\": 2649, \"AGE_22_29\": 6777, \"AGE_30_39\": 13016, \"AGE_40_49\": 14049, \"AGE_50_64\": 12536, \"AGE_65_UP\": 10980, \"MED_AGE\": 38.900000, \"MED_AGE_M\": 37.900000, \"MED_AGE_F\": 39.900000, \"HOUSEHOLDS\": 31521, \"AVE_HH_SZ\": 2.460000, \"HSEHLD_1_M\": 3248, \"HSEHLD_1_F\": 4582, \"MARHH_CHD\": 7562, \"MARHH_NO_C\": 9567, \"MHH_CHILD\": 547, \"FHH_CHILD\": 1572, \"FAMILIES\": 20894, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 33798, \"VACANT\": 2277, \"OWNER_OCC\": 21241, \"RENTER_OCC\": 10280 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.296012389058035, 33.122085981065339 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Carmichael\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"11390\", \"CAPITAL\": \"N\", \"AREALAND\": 10.762000, \"AREAWATER\": 0.115000, \"POP_CL\": 6, \"POP2000\": 49742, \"WHITE\": 43083, \"BLACK\": 1338, \"AMERI_ES\": 412, \"ASIAN\": 1780, \"HAWN_PI\": 136, \"OTHER\": 1041, \"MULT_RACE\": 1952, \"HISPANIC\": 3479, \"MALES\": 23548, \"FEMALES\": 26194, \"AGE_UNDER5\": 2693, \"AGE_5_17\": 8905, \"AGE_18_21\": 2396, \"AGE_22_29\": 4334, \"AGE_30_39\": 6536, \"AGE_40_49\": 7973, \"AGE_50_64\": 8420, \"AGE_65_UP\": 8485, \"MED_AGE\": 40.000000, \"MED_AGE_M\": 38.200000, \"MED_AGE_F\": 41.600000, \"HOUSEHOLDS\": 20631, \"AVE_HH_SZ\": 2.360000, \"HSEHLD_1_M\": 2419, \"HSEHLD_1_F\": 3568, \"MARHH_CHD\": 3862, \"MARHH_NO_C\": 5765, \"MHH_CHILD\": 561, \"FHH_CHILD\": 1642, \"FAMILIES\": 13226, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 21383, \"VACANT\": 752, \"OWNER_OCC\": 11717, \"RENTER_OCC\": 8914 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.315912544354049, 38.640098377226053 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Carpinteria\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"11446\", \"CAPITAL\": \"N\", \"AREALAND\": 2.703000, \"AREAWATER\": 4.569000, \"POP_CL\": 6, \"POP2000\": 14194, \"WHITE\": 10418, \"BLACK\": 84, \"AMERI_ES\": 140, \"ASIAN\": 338, \"HAWN_PI\": 26, \"OTHER\": 2568, \"MULT_RACE\": 620, \"HISPANIC\": 6175, \"MALES\": 7125, \"FEMALES\": 7069, \"AGE_UNDER5\": 890, \"AGE_5_17\": 2745, \"AGE_18_21\": 767, \"AGE_22_29\": 1471, \"AGE_30_39\": 2218, \"AGE_40_49\": 2360, \"AGE_50_64\": 1977, \"AGE_65_UP\": 1766, \"MED_AGE\": 35.900000, \"MED_AGE_M\": 33.300000, \"MED_AGE_F\": 38.100000, \"HOUSEHOLDS\": 4989, \"AVE_HH_SZ\": 2.820000, \"HSEHLD_1_M\": 436, \"HSEHLD_1_F\": 837, \"MARHH_CHD\": 1279, \"MARHH_NO_C\": 1296, \"MHH_CHILD\": 113, \"FHH_CHILD\": 268, \"FAMILIES\": 3334, \"AVE_FAM_SZ\": 3.380000, \"HSE_UNITS\": 5464, \"VACANT\": 475, \"OWNER_OCC\": 2928, \"RENTER_OCC\": 2061 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -119.514325900479079, 34.399317253081207 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Carson\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"11530\", \"CAPITAL\": \"N\", \"AREALAND\": 18.842000, \"AREAWATER\": 0.124000, \"POP_CL\": 7, \"POP2000\": 89730, \"WHITE\": 23049, \"BLACK\": 22804, \"AMERI_ES\": 505, \"ASIAN\": 19987, \"HAWN_PI\": 2680, \"OTHER\": 16137, \"MULT_RACE\": 4568, \"HISPANIC\": 31332, \"MALES\": 43315, \"FEMALES\": 46415, \"AGE_UNDER5\": 6192, \"AGE_5_17\": 19293, \"AGE_18_21\": 5372, \"AGE_22_29\": 9300, \"AGE_30_39\": 13135, \"AGE_40_49\": 12641, \"AGE_50_64\": 14236, \"AGE_65_UP\": 9561, \"MED_AGE\": 33.700000, \"MED_AGE_M\": 32.100000, \"MED_AGE_F\": 35.300000, \"HOUSEHOLDS\": 24648, \"AVE_HH_SZ\": 3.590000, \"HSEHLD_1_M\": 1410, \"HSEHLD_1_F\": 2096, \"MARHH_CHD\": 7349, \"MARHH_NO_C\": 7114, \"MHH_CHILD\": 599, \"FHH_CHILD\": 1713, \"FAMILIES\": 20243, \"AVE_FAM_SZ\": 3.920000, \"HSE_UNITS\": 25337, \"VACANT\": 689, \"OWNER_OCC\": 19205, \"RENTER_OCC\": 5443 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.258344606093871, 33.839837946390482 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Casa de Oro-Mount Helix\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"11691\", \"CAPITAL\": \"N\", \"AREALAND\": 6.838000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 18874, \"WHITE\": 15800, \"BLACK\": 966, \"AMERI_ES\": 114, \"ASIAN\": 399, \"HAWN_PI\": 61, \"OTHER\": 785, \"MULT_RACE\": 749, \"HISPANIC\": 2142, \"MALES\": 9206, \"FEMALES\": 9668, \"AGE_UNDER5\": 1072, \"AGE_5_17\": 3272, \"AGE_18_21\": 821, \"AGE_22_29\": 1438, \"AGE_30_39\": 2259, \"AGE_40_49\": 3127, \"AGE_50_64\": 3698, \"AGE_65_UP\": 3187, \"MED_AGE\": 41.900000, \"MED_AGE_M\": 41.400000, \"MED_AGE_F\": 42.400000, \"HOUSEHOLDS\": 7012, \"AVE_HH_SZ\": 2.670000, \"HSEHLD_1_M\": 515, \"HSEHLD_1_F\": 709, \"MARHH_CHD\": 1631, \"MARHH_NO_C\": 2674, \"MHH_CHILD\": 146, \"FHH_CHILD\": 357, \"FAMILIES\": 5287, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 7140, \"VACANT\": 128, \"OWNER_OCC\": 5159, \"RENTER_OCC\": 1853 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -116.976792653832163, 32.763440225375611 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Castro Valley\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"11964\", \"CAPITAL\": \"N\", \"AREALAND\": 14.425000, \"AREAWATER\": 0.320000, \"POP_CL\": 7, \"POP2000\": 57292, \"WHITE\": 40587, \"BLACK\": 2946, \"AMERI_ES\": 336, \"ASIAN\": 7757, \"HAWN_PI\": 254, \"OTHER\": 2355, \"MULT_RACE\": 3057, \"HISPANIC\": 6984, \"MALES\": 27844, \"FEMALES\": 29448, \"AGE_UNDER5\": 3266, \"AGE_5_17\": 10328, \"AGE_18_21\": 2303, \"AGE_22_29\": 4744, \"AGE_30_39\": 8605, \"AGE_40_49\": 10258, \"AGE_50_64\": 9393, \"AGE_65_UP\": 8395, \"MED_AGE\": 39.400000, \"MED_AGE_M\": 38.300000, \"MED_AGE_F\": 40.400000, \"HOUSEHOLDS\": 21606, \"AVE_HH_SZ\": 2.580000, \"HSEHLD_1_M\": 2074, \"HSEHLD_1_F\": 2931, \"MARHH_CHD\": 5272, \"MARHH_NO_C\": 6391, \"MHH_CHILD\": 480, \"FHH_CHILD\": 1235, \"FAMILIES\": 15019, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 22003, \"VACANT\": 397, \"OWNER_OCC\": 15053, \"RENTER_OCC\": 6553 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.072630092464223, 37.704673480887173 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cathedral City\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"12048\", \"CAPITAL\": \"N\", \"AREALAND\": 19.176000, \"AREAWATER\": 0.278000, \"POP_CL\": 6, \"POP2000\": 42647, \"WHITE\": 27845, \"BLACK\": 1169, \"AMERI_ES\": 440, \"ASIAN\": 1575, \"HAWN_PI\": 32, \"OTHER\": 9834, \"MULT_RACE\": 1752, \"HISPANIC\": 21312, \"MALES\": 21608, \"FEMALES\": 21039, \"AGE_UNDER5\": 3763, \"AGE_5_17\": 9504, \"AGE_18_21\": 2194, \"AGE_22_29\": 4523, \"AGE_30_39\": 7018, \"AGE_40_49\": 5381, \"AGE_50_64\": 5061, \"AGE_65_UP\": 5203, \"MED_AGE\": 32.000000, \"MED_AGE_M\": 31.600000, \"MED_AGE_F\": 32.400000, \"HOUSEHOLDS\": 14027, \"AVE_HH_SZ\": 3.030000, \"HSEHLD_1_M\": 1457, \"HSEHLD_1_F\": 1795, \"MARHH_CHD\": 3961, \"MARHH_NO_C\": 3156, \"MHH_CHILD\": 461, \"FHH_CHILD\": 1092, \"FAMILIES\": 9628, \"AVE_FAM_SZ\": 3.630000, \"HSE_UNITS\": 17893, \"VACANT\": 3866, \"OWNER_OCC\": 9151, \"RENTER_OCC\": 4876 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -116.464140302769408, 33.807827562723936 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ceres\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"12524\", \"CAPITAL\": \"N\", \"AREALAND\": 6.938000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 34609, \"WHITE\": 22324, \"BLACK\": 951, \"AMERI_ES\": 485, \"ASIAN\": 1743, \"HAWN_PI\": 130, \"OTHER\": 7061, \"MULT_RACE\": 1915, \"HISPANIC\": 13115, \"MALES\": 17039, \"FEMALES\": 17570, \"AGE_UNDER5\": 2993, \"AGE_5_17\": 8898, \"AGE_18_21\": 2162, \"AGE_22_29\": 3526, \"AGE_30_39\": 5424, \"AGE_40_49\": 4872, \"AGE_50_64\": 3922, \"AGE_65_UP\": 2812, \"MED_AGE\": 29.400000, \"MED_AGE_M\": 28.000000, \"MED_AGE_F\": 30.500000, \"HOUSEHOLDS\": 10435, \"AVE_HH_SZ\": 3.310000, \"HSEHLD_1_M\": 617, \"HSEHLD_1_F\": 850, \"MARHH_CHD\": 3678, \"MARHH_NO_C\": 2561, \"MHH_CHILD\": 357, \"FHH_CHILD\": 1041, \"FAMILIES\": 8532, \"AVE_FAM_SZ\": 3.620000, \"HSE_UNITS\": 10773, \"VACANT\": 338, \"OWNER_OCC\": 6912, \"RENTER_OCC\": 3523 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -120.952696257570707, 37.601886290780676 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cerritos\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"12552\", \"CAPITAL\": \"N\", \"AREALAND\": 8.619000, \"AREAWATER\": 0.267000, \"POP_CL\": 7, \"POP2000\": 51488, \"WHITE\": 13851, \"BLACK\": 3432, \"AMERI_ES\": 142, \"ASIAN\": 30091, \"HAWN_PI\": 96, \"OTHER\": 1930, \"MULT_RACE\": 1946, \"HISPANIC\": 5349, \"MALES\": 25056, \"FEMALES\": 26432, \"AGE_UNDER5\": 2395, \"AGE_5_17\": 10215, \"AGE_18_21\": 2707, \"AGE_22_29\": 4678, \"AGE_30_39\": 6258, \"AGE_40_49\": 8504, \"AGE_50_64\": 11762, \"AGE_65_UP\": 4969, \"MED_AGE\": 39.300000, \"MED_AGE_M\": 38.000000, \"MED_AGE_F\": 40.400000, \"HOUSEHOLDS\": 15390, \"AVE_HH_SZ\": 3.340000, \"HSEHLD_1_M\": 544, \"HSEHLD_1_F\": 819, \"MARHH_CHD\": 5443, \"MARHH_NO_C\": 5926, \"MHH_CHILD\": 200, \"FHH_CHILD\": 651, \"FAMILIES\": 13657, \"AVE_FAM_SZ\": 3.540000, \"HSE_UNITS\": 15607, \"VACANT\": 217, \"OWNER_OCC\": 12852, \"RENTER_OCC\": 2538 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.06639372596662, 33.868455352913351 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cherryland\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"12902\", \"CAPITAL\": \"N\", \"AREALAND\": 1.167000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 13837, \"WHITE\": 7319, \"BLACK\": 1360, \"AMERI_ES\": 161, \"ASIAN\": 1151, \"HAWN_PI\": 178, \"OTHER\": 2776, \"MULT_RACE\": 892, \"HISPANIC\": 5774, \"MALES\": 7088, \"FEMALES\": 6749, \"AGE_UNDER5\": 1237, \"AGE_5_17\": 2496, \"AGE_18_21\": 717, \"AGE_22_29\": 2065, \"AGE_30_39\": 2508, \"AGE_40_49\": 1914, \"AGE_50_64\": 1587, \"AGE_65_UP\": 1313, \"MED_AGE\": 31.600000, \"MED_AGE_M\": 30.600000, \"MED_AGE_F\": 32.700000, \"HOUSEHOLDS\": 4658, \"AVE_HH_SZ\": 2.870000, \"HSEHLD_1_M\": 598, \"HSEHLD_1_F\": 608, \"MARHH_CHD\": 1091, \"MARHH_NO_C\": 820, \"MHH_CHILD\": 183, \"FHH_CHILD\": 459, \"FAMILIES\": 3019, \"AVE_FAM_SZ\": 3.460000, \"HSE_UNITS\": 4823, \"VACANT\": 165, \"OWNER_OCC\": 1559, \"RENTER_OCC\": 3099 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.095474561672447, 37.680715759108963 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Chico\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"13014\", \"CAPITAL\": \"N\", \"AREALAND\": 27.744000, \"AREAWATER\": 0.014000, \"POP_CL\": 7, \"POP2000\": 59954, \"WHITE\": 49377, \"BLACK\": 1215, \"AMERI_ES\": 782, \"ASIAN\": 2524, \"HAWN_PI\": 115, \"OTHER\": 3390, \"MULT_RACE\": 2551, \"HISPANIC\": 7351, \"MALES\": 29422, \"FEMALES\": 30532, \"AGE_UNDER5\": 3602, \"AGE_5_17\": 9071, \"AGE_18_21\": 9607, \"AGE_22_29\": 11727, \"AGE_30_39\": 7457, \"AGE_40_49\": 6814, \"AGE_50_64\": 5744, \"AGE_65_UP\": 5932, \"MED_AGE\": 25.900000, \"MED_AGE_M\": 25.200000, \"MED_AGE_F\": 27.000000, \"HOUSEHOLDS\": 23476, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 2957, \"HSEHLD_1_F\": 3917, \"MARHH_CHD\": 3974, \"MARHH_NO_C\": 4105, \"MHH_CHILD\": 536, \"FHH_CHILD\": 1855, \"FAMILIES\": 11641, \"AVE_FAM_SZ\": 3.030000, \"HSE_UNITS\": 24386, \"VACANT\": 910, \"OWNER_OCC\": 9486, \"RENTER_OCC\": 13990 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.828484079315359, 39.740827627503386 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Chino\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"13210\", \"CAPITAL\": \"N\", \"AREALAND\": 21.052000, \"AREAWATER\": 0.011000, \"POP_CL\": 7, \"POP2000\": 67168, \"WHITE\": 37412, \"BLACK\": 5250, \"AMERI_ES\": 628, \"ASIAN\": 3308, \"HAWN_PI\": 139, \"OTHER\": 17169, \"MULT_RACE\": 3262, \"HISPANIC\": 31830, \"MALES\": 37223, \"FEMALES\": 29945, \"AGE_UNDER5\": 4809, \"AGE_5_17\": 14319, \"AGE_18_21\": 4921, \"AGE_22_29\": 8523, \"AGE_30_39\": 11974, \"AGE_40_49\": 10753, \"AGE_50_64\": 7936, \"AGE_65_UP\": 3933, \"MED_AGE\": 30.900000, \"MED_AGE_M\": 30.700000, \"MED_AGE_F\": 31.000000, \"HOUSEHOLDS\": 17304, \"AVE_HH_SZ\": 3.430000, \"HSEHLD_1_M\": 1013, \"HSEHLD_1_F\": 1419, \"MARHH_CHD\": 6394, \"MARHH_NO_C\": 4423, \"MHH_CHILD\": 520, \"FHH_CHILD\": 1275, \"FAMILIES\": 14102, \"AVE_FAM_SZ\": 3.770000, \"HSE_UNITS\": 17898, \"VACANT\": 594, \"OWNER_OCC\": 11888, \"RENTER_OCC\": 5416 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.688990301672192, 34.01788475043746 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Chino Hills\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"13214\", \"CAPITAL\": \"N\", \"AREALAND\": 44.806000, \"AREAWATER\": 0.068000, \"POP_CL\": 7, \"POP2000\": 66787, \"WHITE\": 37656, \"BLACK\": 3697, \"AMERI_ES\": 375, \"ASIAN\": 14744, \"HAWN_PI\": 85, \"OTHER\": 7062, \"MULT_RACE\": 3168, \"HISPANIC\": 17151, \"MALES\": 33207, \"FEMALES\": 33580, \"AGE_UNDER5\": 5836, \"AGE_5_17\": 16110, \"AGE_18_21\": 3087, \"AGE_22_29\": 5867, \"AGE_30_39\": 12768, \"AGE_40_49\": 12571, \"AGE_50_64\": 7720, \"AGE_65_UP\": 2828, \"MED_AGE\": 32.300000, \"MED_AGE_M\": 31.800000, \"MED_AGE_F\": 32.700000, \"HOUSEHOLDS\": 20039, \"AVE_HH_SZ\": 3.330000, \"HSEHLD_1_M\": 1104, \"HSEHLD_1_F\": 1066, \"MARHH_CHD\": 9325, \"MARHH_NO_C\": 5220, \"MHH_CHILD\": 444, \"FHH_CHILD\": 1019, \"FAMILIES\": 17075, \"AVE_FAM_SZ\": 3.610000, \"HSE_UNITS\": 20414, \"VACANT\": 375, \"OWNER_OCC\": 16986, \"RENTER_OCC\": 3053 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.722043693559755, 33.97538836562979 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Chowchilla\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"13294\", \"CAPITAL\": \"N\", \"AREALAND\": 7.099000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11127, \"WHITE\": 7061, \"BLACK\": 1142, \"AMERI_ES\": 289, \"ASIAN\": 147, \"HAWN_PI\": 29, \"OTHER\": 1798, \"MULT_RACE\": 661, \"HISPANIC\": 3138, \"MALES\": 3763, \"FEMALES\": 7364, \"AGE_UNDER5\": 692, \"AGE_5_17\": 1782, \"AGE_18_21\": 535, \"AGE_22_29\": 1564, \"AGE_30_39\": 2602, \"AGE_40_49\": 1823, \"AGE_50_64\": 1090, \"AGE_65_UP\": 1039, \"MED_AGE\": 34.100000, \"MED_AGE_M\": 29.700000, \"MED_AGE_F\": 35.200000, \"HOUSEHOLDS\": 2562, \"AVE_HH_SZ\": 2.940000, \"HSEHLD_1_M\": 204, \"HSEHLD_1_F\": 358, \"MARHH_CHD\": 724, \"MARHH_NO_C\": 693, \"MHH_CHILD\": 90, \"FHH_CHILD\": 215, \"FAMILIES\": 1909, \"AVE_FAM_SZ\": 3.420000, \"HSE_UNITS\": 2711, \"VACANT\": 149, \"OWNER_OCC\": 1436, \"RENTER_OCC\": 1126 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -120.258341227333403, 37.118333871870455 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Chula Vista\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"13392\", \"CAPITAL\": \"N\", \"AREALAND\": 48.877000, \"AREAWATER\": 2.360000, \"POP_CL\": 8, \"POP2000\": 173556, \"WHITE\": 95553, \"BLACK\": 8022, \"AMERI_ES\": 1352, \"ASIAN\": 19063, \"HAWN_PI\": 1013, \"OTHER\": 38404, \"MULT_RACE\": 10149, \"HISPANIC\": 86073, \"MALES\": 84237, \"FEMALES\": 89319, \"AGE_UNDER5\": 13565, \"AGE_5_17\": 36299, \"AGE_18_21\": 9463, \"AGE_22_29\": 19185, \"AGE_30_39\": 28828, \"AGE_40_49\": 24872, \"AGE_50_64\": 22225, \"AGE_65_UP\": 19119, \"MED_AGE\": 33.000000, \"MED_AGE_M\": 31.700000, \"MED_AGE_F\": 34.200000, \"HOUSEHOLDS\": 57705, \"AVE_HH_SZ\": 2.990000, \"HSEHLD_1_M\": 5028, \"HSEHLD_1_F\": 6211, \"MARHH_CHD\": 17215, \"MARHH_NO_C\": 14929, \"MHH_CHILD\": 1369, \"FHH_CHILD\": 4891, \"FAMILIES\": 43549, \"AVE_FAM_SZ\": 3.440000, \"HSE_UNITS\": 59495, \"VACANT\": 1790, \"OWNER_OCC\": 33147, \"RENTER_OCC\": 24558 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.047292994850153, 32.627993452043846 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Citrus\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"13560\", \"CAPITAL\": \"N\", \"AREALAND\": 0.898000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10581, \"WHITE\": 5542, \"BLACK\": 343, \"AMERI_ES\": 163, \"ASIAN\": 712, \"HAWN_PI\": 5, \"OTHER\": 3293, \"MULT_RACE\": 523, \"HISPANIC\": 6861, \"MALES\": 5261, \"FEMALES\": 5320, \"AGE_UNDER5\": 934, \"AGE_5_17\": 2559, \"AGE_18_21\": 742, \"AGE_22_29\": 1360, \"AGE_30_39\": 1672, \"AGE_40_49\": 1479, \"AGE_50_64\": 1150, \"AGE_65_UP\": 685, \"MED_AGE\": 28.000000, \"MED_AGE_M\": 26.800000, \"MED_AGE_F\": 29.400000, \"HOUSEHOLDS\": 2614, \"AVE_HH_SZ\": 4.030000, \"HSEHLD_1_M\": 148, \"HSEHLD_1_F\": 142, \"MARHH_CHD\": 923, \"MARHH_NO_C\": 630, \"MHH_CHILD\": 98, \"FHH_CHILD\": 207, \"FAMILIES\": 2175, \"AVE_FAM_SZ\": 4.290000, \"HSE_UNITS\": 2659, \"VACANT\": 45, \"OWNER_OCC\": 1883, \"RENTER_OCC\": 731 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.890693422542938, 34.11502286647891 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Citrus Heights\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"13588\", \"CAPITAL\": \"N\", \"AREALAND\": 14.347000, \"AREAWATER\": 0.000000, \"POP_CL\": 7, \"POP2000\": 85071, \"WHITE\": 72001, \"BLACK\": 2442, \"AMERI_ES\": 860, \"ASIAN\": 2423, \"HAWN_PI\": 288, \"OTHER\": 3032, \"MULT_RACE\": 4025, \"HISPANIC\": 8539, \"MALES\": 41155, \"FEMALES\": 43916, \"AGE_UNDER5\": 5786, \"AGE_5_17\": 15674, \"AGE_18_21\": 4950, \"AGE_22_29\": 10042, \"AGE_30_39\": 12824, \"AGE_40_49\": 12346, \"AGE_50_64\": 12435, \"AGE_65_UP\": 11014, \"MED_AGE\": 34.900000, \"MED_AGE_M\": 33.200000, \"MED_AGE_F\": 36.500000, \"HOUSEHOLDS\": 33478, \"AVE_HH_SZ\": 2.520000, \"HSEHLD_1_M\": 3612, \"HSEHLD_1_F\": 5394, \"MARHH_CHD\": 6785, \"MARHH_NO_C\": 8742, \"MHH_CHILD\": 1057, \"FHH_CHILD\": 2493, \"FAMILIES\": 21647, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 34897, \"VACANT\": 1419, \"OWNER_OCC\": 19139, \"RENTER_OCC\": 14339 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.285155544627642, 38.695362196042787 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Claremont\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"13756\", \"CAPITAL\": \"N\", \"AREALAND\": 13.144000, \"AREAWATER\": 0.282000, \"POP_CL\": 6, \"POP2000\": 33998, \"WHITE\": 24983, \"BLACK\": 1692, \"AMERI_ES\": 189, \"ASIAN\": 3912, \"HAWN_PI\": 45, \"OTHER\": 1769, \"MULT_RACE\": 1408, \"HISPANIC\": 5221, \"MALES\": 15969, \"FEMALES\": 18029, \"AGE_UNDER5\": 1474, \"AGE_5_17\": 5557, \"AGE_18_21\": 4925, \"AGE_22_29\": 2938, \"AGE_30_39\": 3966, \"AGE_40_49\": 4725, \"AGE_50_64\": 5447, \"AGE_65_UP\": 4966, \"MED_AGE\": 35.800000, \"MED_AGE_M\": 33.900000, \"MED_AGE_F\": 37.200000, \"HOUSEHOLDS\": 11281, \"AVE_HH_SZ\": 2.560000, \"HSEHLD_1_M\": 962, \"HSEHLD_1_F\": 1848, \"MARHH_CHD\": 2719, \"MARHH_NO_C\": 3567, \"MHH_CHILD\": 157, \"FHH_CHILD\": 658, \"FAMILIES\": 7810, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 11559, \"VACANT\": 278, \"OWNER_OCC\": 7526, \"RENTER_OCC\": 3755 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.718715616551052, 34.110130865641786 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Clayton\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"13882\", \"CAPITAL\": \"N\", \"AREALAND\": 3.943000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10762, \"WHITE\": 9465, \"BLACK\": 120, \"AMERI_ES\": 20, \"ASIAN\": 579, \"HAWN_PI\": 11, \"OTHER\": 166, \"MULT_RACE\": 401, \"HISPANIC\": 681, \"MALES\": 5270, \"FEMALES\": 5492, \"AGE_UNDER5\": 749, \"AGE_5_17\": 2102, \"AGE_18_21\": 347, \"AGE_22_29\": 449, \"AGE_30_39\": 1685, \"AGE_40_49\": 2094, \"AGE_50_64\": 2362, \"AGE_65_UP\": 974, \"MED_AGE\": 40.200000, \"MED_AGE_M\": 40.300000, \"MED_AGE_F\": 40.200000, \"HOUSEHOLDS\": 3883, \"AVE_HH_SZ\": 2.760000, \"HSEHLD_1_M\": 196, \"HSEHLD_1_F\": 310, \"MARHH_CHD\": 1355, \"MARHH_NO_C\": 1543, \"MHH_CHILD\": 50, \"FHH_CHILD\": 119, \"FAMILIES\": 3208, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 3924, \"VACANT\": 41, \"OWNER_OCC\": 3667, \"RENTER_OCC\": 216 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.927689503210331, 37.941557700587616 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Clearlake\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"13945\", \"CAPITAL\": \"N\", \"AREALAND\": 10.180000, \"AREAWATER\": 0.434000, \"POP_CL\": 6, \"POP2000\": 13142, \"WHITE\": 10823, \"BLACK\": 684, \"AMERI_ES\": 354, \"ASIAN\": 149, \"HAWN_PI\": 21, \"OTHER\": 480, \"MULT_RACE\": 631, \"HISPANIC\": 1449, \"MALES\": 6293, \"FEMALES\": 6849, \"AGE_UNDER5\": 817, \"AGE_5_17\": 2570, \"AGE_18_21\": 535, \"AGE_22_29\": 919, \"AGE_30_39\": 1514, \"AGE_40_49\": 1845, \"AGE_50_64\": 2268, \"AGE_65_UP\": 2674, \"MED_AGE\": 41.100000, \"MED_AGE_M\": 39.900000, \"MED_AGE_F\": 42.300000, \"HOUSEHOLDS\": 5532, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 811, \"HSEHLD_1_F\": 1011, \"MARHH_CHD\": 692, \"MARHH_NO_C\": 1413, \"MHH_CHILD\": 198, \"FHH_CHILD\": 571, \"FAMILIES\": 3312, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 7605, \"VACANT\": 2073, \"OWNER_OCC\": 3490, \"RENTER_OCC\": 2042 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.622276241883171, 38.953902032474438 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Clovis\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"14218\", \"CAPITAL\": \"N\", \"AREALAND\": 17.116000, \"AREAWATER\": 0.000000, \"POP_CL\": 7, \"POP2000\": 68468, \"WHITE\": 51914, \"BLACK\": 1302, \"AMERI_ES\": 1025, \"ASIAN\": 4441, \"HAWN_PI\": 108, \"OTHER\": 6502, \"MULT_RACE\": 3176, \"HISPANIC\": 13876, \"MALES\": 32868, \"FEMALES\": 35600, \"AGE_UNDER5\": 5204, \"AGE_5_17\": 15793, \"AGE_18_21\": 3884, \"AGE_22_29\": 6617, \"AGE_30_39\": 10679, \"AGE_40_49\": 10957, \"AGE_50_64\": 8928, \"AGE_65_UP\": 6406, \"MED_AGE\": 32.800000, \"MED_AGE_M\": 31.200000, \"MED_AGE_F\": 34.400000, \"HOUSEHOLDS\": 24347, \"AVE_HH_SZ\": 2.790000, \"HSEHLD_1_M\": 2068, \"HSEHLD_1_F\": 3352, \"MARHH_CHD\": 7306, \"MARHH_NO_C\": 5945, \"MHH_CHILD\": 768, \"FHH_CHILD\": 2074, \"FAMILIES\": 17665, \"AVE_FAM_SZ\": 3.290000, \"HSE_UNITS\": 25250, \"VACANT\": 903, \"OWNER_OCC\": 14695, \"RENTER_OCC\": 9652 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -119.692069245578722, 36.81975409673214 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Coachella\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"14260\", \"CAPITAL\": \"N\", \"AREALAND\": 20.822000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 22724, \"WHITE\": 8810, \"BLACK\": 103, \"AMERI_ES\": 191, \"ASIAN\": 71, \"HAWN_PI\": 7, \"OTHER\": 12854, \"MULT_RACE\": 688, \"HISPANIC\": 22132, \"MALES\": 11365, \"FEMALES\": 11359, \"AGE_UNDER5\": 2535, \"AGE_5_17\": 6735, \"AGE_18_21\": 1780, \"AGE_22_29\": 2807, \"AGE_30_39\": 3389, \"AGE_40_49\": 2517, \"AGE_50_64\": 1833, \"AGE_65_UP\": 1128, \"MED_AGE\": 22.800000, \"MED_AGE_M\": 22.500000, \"MED_AGE_F\": 23.200000, \"HOUSEHOLDS\": 4807, \"AVE_HH_SZ\": 4.720000, \"HSEHLD_1_M\": 119, \"HSEHLD_1_F\": 135, \"MARHH_CHD\": 2393, \"MARHH_NO_C\": 802, \"MHH_CHILD\": 189, \"FHH_CHILD\": 584, \"FAMILIES\": 4482, \"AVE_FAM_SZ\": 4.800000, \"HSE_UNITS\": 5024, \"VACANT\": 217, \"OWNER_OCC\": 2927, \"RENTER_OCC\": 1880 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -116.173971200152565, 33.679579439664273 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Coalinga\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"14274\", \"CAPITAL\": \"N\", \"AREALAND\": 5.943000, \"AREAWATER\": 0.022000, \"POP_CL\": 6, \"POP2000\": 11668, \"WHITE\": 6687, \"BLACK\": 276, \"AMERI_ES\": 177, \"ASIAN\": 193, \"HAWN_PI\": 28, \"OTHER\": 3769, \"MULT_RACE\": 538, \"HISPANIC\": 5811, \"MALES\": 6067, \"FEMALES\": 5601, \"AGE_UNDER5\": 1068, \"AGE_5_17\": 2807, \"AGE_18_21\": 844, \"AGE_22_29\": 1380, \"AGE_30_39\": 1872, \"AGE_40_49\": 1483, \"AGE_50_64\": 1226, \"AGE_65_UP\": 988, \"MED_AGE\": 28.600000, \"MED_AGE_M\": 27.900000, \"MED_AGE_F\": 29.400000, \"HOUSEHOLDS\": 3515, \"AVE_HH_SZ\": 3.090000, \"HSEHLD_1_M\": 318, \"HSEHLD_1_F\": 406, \"MARHH_CHD\": 1184, \"MARHH_NO_C\": 790, \"MHH_CHILD\": 137, \"FHH_CHILD\": 338, \"FAMILIES\": 2631, \"AVE_FAM_SZ\": 3.590000, \"HSE_UNITS\": 3848, \"VACANT\": 333, \"OWNER_OCC\": 2024, \"RENTER_OCC\": 1491 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -120.355034644922654, 36.141149895984732 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Colton\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"14890\", \"CAPITAL\": \"N\", \"AREALAND\": 15.110000, \"AREAWATER\": 0.587000, \"POP_CL\": 6, \"POP2000\": 47662, \"WHITE\": 20343, \"BLACK\": 5246, \"AMERI_ES\": 600, \"ASIAN\": 2521, \"HAWN_PI\": 108, \"OTHER\": 16425, \"MULT_RACE\": 2419, \"HISPANIC\": 28934, \"MALES\": 23492, \"FEMALES\": 24170, \"AGE_UNDER5\": 4773, \"AGE_5_17\": 11882, \"AGE_18_21\": 3194, \"AGE_22_29\": 6673, \"AGE_30_39\": 7483, \"AGE_40_49\": 6132, \"AGE_50_64\": 4472, \"AGE_65_UP\": 3053, \"MED_AGE\": 26.800000, \"MED_AGE_M\": 26.100000, \"MED_AGE_F\": 27.400000, \"HOUSEHOLDS\": 14520, \"AVE_HH_SZ\": 3.260000, \"HSEHLD_1_M\": 1360, \"HSEHLD_1_F\": 1450, \"MARHH_CHD\": 4331, \"MARHH_NO_C\": 2681, \"MHH_CHILD\": 570, \"FHH_CHILD\": 1858, \"FAMILIES\": 10904, \"AVE_FAM_SZ\": 3.760000, \"HSE_UNITS\": 15680, \"VACANT\": 1160, \"OWNER_OCC\": 7545, \"RENTER_OCC\": 6975 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.320824927733383, 34.065046173325278 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Commerce\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"14974\", \"CAPITAL\": \"N\", \"AREALAND\": 6.568000, \"AREAWATER\": 0.005000, \"POP_CL\": 6, \"POP2000\": 12568, \"WHITE\": 5625, \"BLACK\": 98, \"AMERI_ES\": 199, \"ASIAN\": 136, \"HAWN_PI\": 10, \"OTHER\": 5900, \"MULT_RACE\": 600, \"HISPANIC\": 11765, \"MALES\": 6172, \"FEMALES\": 6396, \"AGE_UNDER5\": 1113, \"AGE_5_17\": 3139, \"AGE_18_21\": 761, \"AGE_22_29\": 1647, \"AGE_30_39\": 1828, \"AGE_40_49\": 1462, \"AGE_50_64\": 1337, \"AGE_65_UP\": 1281, \"MED_AGE\": 28.200000, \"MED_AGE_M\": 27.000000, \"MED_AGE_F\": 29.300000, \"HOUSEHOLDS\": 3284, \"AVE_HH_SZ\": 3.800000, \"HSEHLD_1_M\": 204, \"HSEHLD_1_F\": 304, \"MARHH_CHD\": 1087, \"MARHH_NO_C\": 696, \"MHH_CHILD\": 120, \"FHH_CHILD\": 346, \"FAMILIES\": 2685, \"AVE_FAM_SZ\": 4.170000, \"HSE_UNITS\": 3377, \"VACANT\": 93, \"OWNER_OCC\": 1557, \"RENTER_OCC\": 1727 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.153575525432643, 34.00076085278706 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Compton\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"15044\", \"CAPITAL\": \"N\", \"AREALAND\": 10.134000, \"AREAWATER\": 0.070000, \"POP_CL\": 7, \"POP2000\": 93493, \"WHITE\": 15625, \"BLACK\": 37690, \"AMERI_ES\": 656, \"ASIAN\": 237, \"HAWN_PI\": 985, \"OTHER\": 34911, \"MULT_RACE\": 3389, \"HISPANIC\": 53143, \"MALES\": 45857, \"FEMALES\": 47636, \"AGE_UNDER5\": 9736, \"AGE_5_17\": 26257, \"AGE_18_21\": 6239, \"AGE_22_29\": 11571, \"AGE_30_39\": 13697, \"AGE_40_49\": 10783, \"AGE_50_64\": 8773, \"AGE_65_UP\": 6437, \"MED_AGE\": 25.000000, \"MED_AGE_M\": 23.600000, \"MED_AGE_F\": 26.400000, \"HOUSEHOLDS\": 22327, \"AVE_HH_SZ\": 4.160000, \"HSEHLD_1_M\": 1253, \"HSEHLD_1_F\": 1699, \"MARHH_CHD\": 6933, \"MARHH_NO_C\": 3633, \"MHH_CHILD\": 921, \"FHH_CHILD\": 3466, \"FAMILIES\": 18613, \"AVE_FAM_SZ\": 4.450000, \"HSE_UNITS\": 23795, \"VACANT\": 1468, \"OWNER_OCC\": 12580, \"RENTER_OCC\": 9747 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.223846855942696, 33.896866943066918 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Concord\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"16000\", \"CAPITAL\": \"N\", \"AREALAND\": 30.136000, \"AREAWATER\": 0.000000, \"POP_CL\": 8, \"POP2000\": 121780, \"WHITE\": 86114, \"BLACK\": 3706, \"AMERI_ES\": 929, \"ASIAN\": 11438, \"HAWN_PI\": 612, \"OTHER\": 11752, \"MULT_RACE\": 7229, \"HISPANIC\": 26560, \"MALES\": 60147, \"FEMALES\": 61633, \"AGE_UNDER5\": 8625, \"AGE_5_17\": 22218, \"AGE_18_21\": 6100, \"AGE_22_29\": 13789, \"AGE_30_39\": 20758, \"AGE_40_49\": 19156, \"AGE_50_64\": 18068, \"AGE_65_UP\": 13066, \"MED_AGE\": 35.100000, \"MED_AGE_M\": 33.700000, \"MED_AGE_F\": 36.500000, \"HOUSEHOLDS\": 44020, \"AVE_HH_SZ\": 2.740000, \"HSEHLD_1_M\": 4328, \"HSEHLD_1_F\": 5900, \"MARHH_CHD\": 11013, \"MARHH_NO_C\": 11600, \"MHH_CHILD\": 1123, \"FHH_CHILD\": 3008, \"FAMILIES\": 30322, \"AVE_FAM_SZ\": 3.220000, \"HSE_UNITS\": 45083, \"VACANT\": 1063, \"OWNER_OCC\": 27542, \"RENTER_OCC\": 16478 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.008428417744085, 37.968687495640054 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Corcoran\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"16224\", \"CAPITAL\": \"N\", \"AREALAND\": 6.397000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14458, \"WHITE\": 4927, \"BLACK\": 2054, \"AMERI_ES\": 206, \"ASIAN\": 103, \"HAWN_PI\": 12, \"OTHER\": 6711, \"MULT_RACE\": 445, \"HISPANIC\": 8618, \"MALES\": 9761, \"FEMALES\": 4697, \"AGE_UNDER5\": 962, \"AGE_5_17\": 2565, \"AGE_18_21\": 967, \"AGE_22_29\": 2511, \"AGE_30_39\": 3227, \"AGE_40_49\": 2098, \"AGE_50_64\": 1354, \"AGE_65_UP\": 774, \"MED_AGE\": 30.700000, \"MED_AGE_M\": 31.500000, \"MED_AGE_F\": 27.600000, \"HOUSEHOLDS\": 2769, \"AVE_HH_SZ\": 3.440000, \"HSEHLD_1_M\": 218, \"HSEHLD_1_F\": 224, \"MARHH_CHD\": 908, \"MARHH_NO_C\": 600, \"MHH_CHILD\": 132, \"FHH_CHILD\": 336, \"FAMILIES\": 2229, \"AVE_FAM_SZ\": 3.830000, \"HSE_UNITS\": 3016, \"VACANT\": 247, \"OWNER_OCC\": 1584, \"RENTER_OCC\": 1185 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -119.562069105577933, 36.09631527849146 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Corona\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"16350\", \"CAPITAL\": \"N\", \"AREALAND\": 35.147000, \"AREAWATER\": 0.023000, \"POP_CL\": 8, \"POP2000\": 124966, \"WHITE\": 77514, \"BLACK\": 8031, \"AMERI_ES\": 1086, \"ASIAN\": 9425, \"HAWN_PI\": 387, \"OTHER\": 21894, \"MULT_RACE\": 6629, \"HISPANIC\": 44569, \"MALES\": 61849, \"FEMALES\": 63117, \"AGE_UNDER5\": 12249, \"AGE_5_17\": 29484, \"AGE_18_21\": 6320, \"AGE_22_29\": 14714, \"AGE_30_39\": 23742, \"AGE_40_49\": 17853, \"AGE_50_64\": 13315, \"AGE_65_UP\": 7289, \"MED_AGE\": 29.900000, \"MED_AGE_M\": 29.400000, \"MED_AGE_F\": 30.300000, \"HOUSEHOLDS\": 37839, \"AVE_HH_SZ\": 3.290000, \"HSEHLD_1_M\": 2579, \"HSEHLD_1_F\": 2887, \"MARHH_CHD\": 15017, \"MARHH_NO_C\": 9139, \"MHH_CHILD\": 1105, \"FHH_CHILD\": 2641, \"FAMILIES\": 30391, \"AVE_FAM_SZ\": 3.640000, \"HSE_UNITS\": 39271, \"VACANT\": 1432, \"OWNER_OCC\": 25548, \"RENTER_OCC\": 12291 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.566841781055345, 33.870110491354453 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Coronado\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"16378\", \"CAPITAL\": \"N\", \"AREALAND\": 7.720000, \"AREAWATER\": 24.939000, \"POP_CL\": 6, \"POP2000\": 24100, \"WHITE\": 20341, \"BLACK\": 1241, \"AMERI_ES\": 159, \"ASIAN\": 896, \"HAWN_PI\": 72, \"OTHER\": 757, \"MULT_RACE\": 634, \"HISPANIC\": 2369, \"MALES\": 14049, \"FEMALES\": 10051, \"AGE_UNDER5\": 957, \"AGE_5_17\": 2892, \"AGE_18_21\": 2963, \"AGE_22_29\": 3823, \"AGE_30_39\": 3565, \"AGE_40_49\": 2980, \"AGE_50_64\": 3103, \"AGE_65_UP\": 3817, \"MED_AGE\": 34.200000, \"MED_AGE_M\": 29.000000, \"MED_AGE_F\": 41.600000, \"HOUSEHOLDS\": 7734, \"AVE_HH_SZ\": 2.270000, \"HSEHLD_1_M\": 911, \"HSEHLD_1_F\": 1477, \"MARHH_CHD\": 1666, \"MARHH_NO_C\": 2513, \"MHH_CHILD\": 104, \"FHH_CHILD\": 317, \"FAMILIES\": 4935, \"AVE_FAM_SZ\": 2.840000, \"HSE_UNITS\": 9494, \"VACANT\": 1760, \"OWNER_OCC\": 3987, \"RENTER_OCC\": 3747 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.171846208075152, 32.678278714442555 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Costa Mesa\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"16532\", \"CAPITAL\": \"N\", \"AREALAND\": 15.629000, \"AREAWATER\": 0.057000, \"POP_CL\": 8, \"POP2000\": 108724, \"WHITE\": 75542, \"BLACK\": 1520, \"AMERI_ES\": 845, \"ASIAN\": 7501, \"HAWN_PI\": 656, \"OTHER\": 18018, \"MULT_RACE\": 4642, \"HISPANIC\": 34523, \"MALES\": 55694, \"FEMALES\": 53030, \"AGE_UNDER5\": 7735, \"AGE_5_17\": 17537, \"AGE_18_21\": 6382, \"AGE_22_29\": 17686, \"AGE_30_39\": 21774, \"AGE_40_49\": 15702, \"AGE_50_64\": 12726, \"AGE_65_UP\": 9182, \"MED_AGE\": 32.000000, \"MED_AGE_M\": 31.600000, \"MED_AGE_F\": 32.500000, \"HOUSEHOLDS\": 39206, \"AVE_HH_SZ\": 2.690000, \"HSEHLD_1_M\": 5347, \"HSEHLD_1_F\": 5659, \"MARHH_CHD\": 8435, \"MARHH_NO_C\": 8327, \"MHH_CHILD\": 877, \"FHH_CHILD\": 2137, \"FAMILIES\": 22766, \"AVE_FAM_SZ\": 3.340000, \"HSE_UNITS\": 40406, \"VACANT\": 1200, \"OWNER_OCC\": 15880, \"RENTER_OCC\": 23326 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.911221103186904, 33.665099596722271 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Coto de Caza\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"16580\", \"CAPITAL\": \"N\", \"AREALAND\": 7.892000, \"AREAWATER\": 0.030000, \"POP_CL\": 6, \"POP2000\": 13057, \"WHITE\": 11668, \"BLACK\": 96, \"AMERI_ES\": 19, \"ASIAN\": 674, \"HAWN_PI\": 19, \"OTHER\": 216, \"MULT_RACE\": 365, \"HISPANIC\": 868, \"MALES\": 6514, \"FEMALES\": 6543, \"AGE_UNDER5\": 1329, \"AGE_5_17\": 3258, \"AGE_18_21\": 353, \"AGE_22_29\": 627, \"AGE_30_39\": 2480, \"AGE_40_49\": 2569, \"AGE_50_64\": 1963, \"AGE_65_UP\": 478, \"MED_AGE\": 34.900000, \"MED_AGE_M\": 35.200000, \"MED_AGE_F\": 34.700000, \"HOUSEHOLDS\": 4049, \"AVE_HH_SZ\": 3.220000, \"HSEHLD_1_M\": 140, \"HSEHLD_1_F\": 165, \"MARHH_CHD\": 2100, \"MARHH_NO_C\": 1278, \"MHH_CHILD\": 59, \"FHH_CHILD\": 111, \"FAMILIES\": 3646, \"AVE_FAM_SZ\": 3.400000, \"HSE_UNITS\": 4152, \"VACANT\": 103, \"OWNER_OCC\": 3880, \"RENTER_OCC\": 169 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.586734040666158, 33.596037200864913 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Covina\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"16742\", \"CAPITAL\": \"N\", \"AREALAND\": 6.966000, \"AREAWATER\": 0.006000, \"POP_CL\": 6, \"POP2000\": 46837, \"WHITE\": 29084, \"BLACK\": 2354, \"AMERI_ES\": 420, \"ASIAN\": 4598, \"HAWN_PI\": 97, \"OTHER\": 8047, \"MULT_RACE\": 2237, \"HISPANIC\": 18871, \"MALES\": 22441, \"FEMALES\": 24396, \"AGE_UNDER5\": 3470, \"AGE_5_17\": 9676, \"AGE_18_21\": 2542, \"AGE_22_29\": 5213, \"AGE_30_39\": 7529, \"AGE_40_49\": 6886, \"AGE_50_64\": 6416, \"AGE_65_UP\": 5105, \"MED_AGE\": 33.500000, \"MED_AGE_M\": 31.700000, \"MED_AGE_F\": 35.100000, \"HOUSEHOLDS\": 15971, \"AVE_HH_SZ\": 2.890000, \"HSEHLD_1_M\": 1316, \"HSEHLD_1_F\": 2005, \"MARHH_CHD\": 4188, \"MARHH_NO_C\": 4059, \"MHH_CHILD\": 479, \"FHH_CHILD\": 1467, \"FAMILIES\": 11762, \"AVE_FAM_SZ\": 3.360000, \"HSE_UNITS\": 16364, \"VACANT\": 393, \"OWNER_OCC\": 9333, \"RENTER_OCC\": 6638 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.878107733231715, 34.091739985073296 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Crestline\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"17162\", \"CAPITAL\": \"N\", \"AREALAND\": 10.865000, \"AREAWATER\": 0.136000, \"POP_CL\": 6, \"POP2000\": 10218, \"WHITE\": 8996, \"BLACK\": 81, \"AMERI_ES\": 115, \"ASIAN\": 60, \"HAWN_PI\": 19, \"OTHER\": 509, \"MULT_RACE\": 438, \"HISPANIC\": 1069, \"MALES\": 5124, \"FEMALES\": 5094, \"AGE_UNDER5\": 606, \"AGE_5_17\": 2232, \"AGE_18_21\": 412, \"AGE_22_29\": 677, \"AGE_30_39\": 1414, \"AGE_40_49\": 1928, \"AGE_50_64\": 2015, \"AGE_65_UP\": 934, \"MED_AGE\": 38.700000, \"MED_AGE_M\": 38.400000, \"MED_AGE_F\": 39.000000, \"HOUSEHOLDS\": 4000, \"AVE_HH_SZ\": 2.550000, \"HSEHLD_1_M\": 529, \"HSEHLD_1_F\": 458, \"MARHH_CHD\": 906, \"MARHH_NO_C\": 1212, \"MHH_CHILD\": 136, \"FHH_CHILD\": 292, \"FAMILIES\": 2769, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 6695, \"VACANT\": 2695, \"OWNER_OCC\": 2879, \"RENTER_OCC\": 1121 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.289037666600635, 34.242556421086761 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cudahy\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"17498\", \"CAPITAL\": \"N\", \"AREALAND\": 1.119000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 24208, \"WHITE\": 10443, \"BLACK\": 300, \"AMERI_ES\": 310, \"ASIAN\": 178, \"HAWN_PI\": 42, \"OTHER\": 11634, \"MULT_RACE\": 1301, \"HISPANIC\": 22790, \"MALES\": 11963, \"FEMALES\": 12245, \"AGE_UNDER5\": 2908, \"AGE_5_17\": 6757, \"AGE_18_21\": 1660, \"AGE_22_29\": 3645, \"AGE_30_39\": 4115, \"AGE_40_49\": 2475, \"AGE_50_64\": 1764, \"AGE_65_UP\": 884, \"MED_AGE\": 23.800000, \"MED_AGE_M\": 23.600000, \"MED_AGE_F\": 24.100000, \"HOUSEHOLDS\": 5419, \"AVE_HH_SZ\": 4.470000, \"HSEHLD_1_M\": 206, \"HSEHLD_1_F\": 233, \"MARHH_CHD\": 2423, \"MARHH_NO_C\": 696, \"MHH_CHILD\": 298, \"FHH_CHILD\": 857, \"FAMILIES\": 4809, \"AVE_FAM_SZ\": 4.580000, \"HSE_UNITS\": 5542, \"VACANT\": 123, \"OWNER_OCC\": 943, \"RENTER_OCC\": 4476 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.181359037823626, 33.964363488109612 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Culver City\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"17568\", \"CAPITAL\": \"N\", \"AREALAND\": 5.114000, \"AREAWATER\": 0.017000, \"POP_CL\": 6, \"POP2000\": 38816, \"WHITE\": 22996, \"BLACK\": 4644, \"AMERI_ES\": 277, \"ASIAN\": 4667, \"HAWN_PI\": 80, \"OTHER\": 3945, \"MULT_RACE\": 2207, \"HISPANIC\": 9199, \"MALES\": 18117, \"FEMALES\": 20699, \"AGE_UNDER5\": 2129, \"AGE_5_17\": 5967, \"AGE_18_21\": 1332, \"AGE_22_29\": 3883, \"AGE_30_39\": 6734, \"AGE_40_49\": 6749, \"AGE_50_64\": 6632, \"AGE_65_UP\": 5390, \"MED_AGE\": 39.100000, \"MED_AGE_M\": 37.400000, \"MED_AGE_F\": 40.600000, \"HOUSEHOLDS\": 16611, \"AVE_HH_SZ\": 2.310000, \"HSEHLD_1_M\": 2176, \"HSEHLD_1_F\": 3551, \"MARHH_CHD\": 2949, \"MARHH_NO_C\": 3833, \"MHH_CHILD\": 245, \"FHH_CHILD\": 1149, \"FAMILIES\": 9513, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 17130, \"VACANT\": 519, \"OWNER_OCC\": 9034, \"RENTER_OCC\": 7577 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.399573995389531, 34.007926162008886 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cupertino\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"17610\", \"CAPITAL\": \"N\", \"AREALAND\": 10.940000, \"AREAWATER\": 0.002000, \"POP_CL\": 7, \"POP2000\": 50546, \"WHITE\": 25342, \"BLACK\": 347, \"AMERI_ES\": 101, \"ASIAN\": 22462, \"HAWN_PI\": 67, \"OTHER\": 639, \"MULT_RACE\": 1588, \"HISPANIC\": 2010, \"MALES\": 25207, \"FEMALES\": 25339, \"AGE_UNDER5\": 3060, \"AGE_5_17\": 10403, \"AGE_18_21\": 1575, \"AGE_22_29\": 3458, \"AGE_30_39\": 9061, \"AGE_40_49\": 9687, \"AGE_50_64\": 7742, \"AGE_65_UP\": 5560, \"MED_AGE\": 38.000000, \"MED_AGE_M\": 37.400000, \"MED_AGE_F\": 38.500000, \"HOUSEHOLDS\": 18204, \"AVE_HH_SZ\": 2.750000, \"HSEHLD_1_M\": 1712, \"HSEHLD_1_F\": 1855, \"MARHH_CHD\": 6631, \"MARHH_NO_C\": 4993, \"MHH_CHILD\": 224, \"FHH_CHILD\": 715, \"FAMILIES\": 13613, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 18682, \"VACANT\": 478, \"OWNER_OCC\": 11583, \"RENTER_OCC\": 6621 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.035439708530177, 37.318346245274519 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cypress\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"17750\", \"CAPITAL\": \"N\", \"AREALAND\": 6.613000, \"AREAWATER\": 0.012000, \"POP_CL\": 6, \"POP2000\": 46229, \"WHITE\": 30332, \"BLACK\": 1280, \"AMERI_ES\": 274, \"ASIAN\": 9618, \"HAWN_PI\": 184, \"OTHER\": 2515, \"MULT_RACE\": 2026, \"HISPANIC\": 7235, \"MALES\": 22513, \"FEMALES\": 23716, \"AGE_UNDER5\": 2770, \"AGE_5_17\": 9724, \"AGE_18_21\": 2277, \"AGE_22_29\": 3937, \"AGE_30_39\": 7214, \"AGE_40_49\": 7660, \"AGE_50_64\": 7768, \"AGE_65_UP\": 4879, \"MED_AGE\": 36.700000, \"MED_AGE_M\": 35.300000, \"MED_AGE_F\": 37.800000, \"HOUSEHOLDS\": 15654, \"AVE_HH_SZ\": 2.930000, \"HSEHLD_1_M\": 1090, \"HSEHLD_1_F\": 1660, \"MARHH_CHD\": 4626, \"MARHH_NO_C\": 4761, \"MHH_CHILD\": 372, \"FHH_CHILD\": 1083, \"FAMILIES\": 12243, \"AVE_FAM_SZ\": 3.310000, \"HSE_UNITS\": 16028, \"VACANT\": 374, \"OWNER_OCC\": 10861, \"RENTER_OCC\": 4793 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.037908855895978, 33.818454245503396 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Daly City\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"17918\", \"CAPITAL\": \"N\", \"AREALAND\": 7.561000, \"AREAWATER\": 0.000000, \"POP_CL\": 8, \"POP2000\": 103621, \"WHITE\": 26836, \"BLACK\": 4720, \"AMERI_ES\": 456, \"ASIAN\": 52522, \"HAWN_PI\": 940, \"OTHER\": 11735, \"MULT_RACE\": 6412, \"HISPANIC\": 23072, \"MALES\": 50971, \"FEMALES\": 52650, \"AGE_UNDER5\": 6246, \"AGE_5_17\": 17032, \"AGE_18_21\": 5847, \"AGE_22_29\": 13743, \"AGE_30_39\": 16722, \"AGE_40_49\": 15184, \"AGE_50_64\": 16361, \"AGE_65_UP\": 12486, \"MED_AGE\": 35.400000, \"MED_AGE_M\": 33.800000, \"MED_AGE_F\": 37.000000, \"HOUSEHOLDS\": 30775, \"AVE_HH_SZ\": 3.340000, \"HSEHLD_1_M\": 2505, \"HSEHLD_1_F\": 3053, \"MARHH_CHD\": 8160, \"MARHH_NO_C\": 8625, \"MHH_CHILD\": 625, \"FHH_CHILD\": 1694, \"FAMILIES\": 23089, \"AVE_FAM_SZ\": 3.780000, \"HSE_UNITS\": 31311, \"VACANT\": 536, \"OWNER_OCC\": 18396, \"RENTER_OCC\": 12379 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.458207917188332, 37.6917203047838 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Dana Point\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"17946\", \"CAPITAL\": \"N\", \"AREALAND\": 6.637000, \"AREAWATER\": 22.804000, \"POP_CL\": 6, \"POP2000\": 35110, \"WHITE\": 30633, \"BLACK\": 288, \"AMERI_ES\": 201, \"ASIAN\": 884, \"HAWN_PI\": 36, \"OTHER\": 2080, \"MULT_RACE\": 988, \"HISPANIC\": 5440, \"MALES\": 17566, \"FEMALES\": 17544, \"AGE_UNDER5\": 1958, \"AGE_5_17\": 5274, \"AGE_18_21\": 1427, \"AGE_22_29\": 3331, \"AGE_30_39\": 5703, \"AGE_40_49\": 6043, \"AGE_50_64\": 6806, \"AGE_65_UP\": 4568, \"MED_AGE\": 39.800000, \"MED_AGE_M\": 38.800000, \"MED_AGE_F\": 40.700000, \"HOUSEHOLDS\": 14456, \"AVE_HH_SZ\": 2.410000, \"HSEHLD_1_M\": 1767, \"HSEHLD_1_F\": 1988, \"MARHH_CHD\": 2804, \"MARHH_NO_C\": 4628, \"MHH_CHILD\": 297, \"FHH_CHILD\": 686, \"FAMILIES\": 9286, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 15682, \"VACANT\": 1226, \"OWNER_OCC\": 8958, \"RENTER_OCC\": 5498 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.692074374002715, 33.47232714787485 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Danville\", \"CLASS\": \"town\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"17988\", \"CAPITAL\": \"N\", \"AREALAND\": 18.093000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 41715, \"WHITE\": 36000, \"BLACK\": 382, \"AMERI_ES\": 86, \"ASIAN\": 3756, \"HAWN_PI\": 48, \"OTHER\": 381, \"MULT_RACE\": 1062, \"HISPANIC\": 1945, \"MALES\": 20228, \"FEMALES\": 21487, \"AGE_UNDER5\": 2961, \"AGE_5_17\": 8956, \"AGE_18_21\": 1140, \"AGE_22_29\": 1770, \"AGE_30_39\": 6129, \"AGE_40_49\": 8252, \"AGE_50_64\": 8207, \"AGE_65_UP\": 4300, \"MED_AGE\": 39.900000, \"MED_AGE_M\": 39.600000, \"MED_AGE_F\": 40.200000, \"HOUSEHOLDS\": 14816, \"AVE_HH_SZ\": 2.780000, \"HSEHLD_1_M\": 845, \"HSEHLD_1_F\": 1450, \"MARHH_CHD\": 5428, \"MARHH_NO_C\": 5044, \"MHH_CHILD\": 198, \"FHH_CHILD\": 623, \"FAMILIES\": 11865, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 15130, \"VACANT\": 314, \"OWNER_OCC\": 13198, \"RENTER_OCC\": 1618 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.967644864570303, 37.812320652376165 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Davis\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"18100\", \"CAPITAL\": \"N\", \"AREALAND\": 10.453000, \"AREAWATER\": 0.024000, \"POP_CL\": 7, \"POP2000\": 60308, \"WHITE\": 42256, \"BLACK\": 1417, \"AMERI_ES\": 407, \"ASIAN\": 10576, \"HAWN_PI\": 144, \"OTHER\": 2572, \"MULT_RACE\": 2936, \"HISPANIC\": 5793, \"MALES\": 28763, \"FEMALES\": 31545, \"AGE_UNDER5\": 2772, \"AGE_5_17\": 8464, \"AGE_18_21\": 12238, \"AGE_22_29\": 11420, \"AGE_30_39\": 7694, \"AGE_40_49\": 7441, \"AGE_50_64\": 6275, \"AGE_65_UP\": 4004, \"MED_AGE\": 25.200000, \"MED_AGE_M\": 25.100000, \"MED_AGE_F\": 25.300000, \"HOUSEHOLDS\": 22948, \"AVE_HH_SZ\": 2.500000, \"HSEHLD_1_M\": 2440, \"HSEHLD_1_F\": 3287, \"MARHH_CHD\": 4573, \"MARHH_NO_C\": 4211, \"MHH_CHILD\": 294, \"FHH_CHILD\": 1188, \"FAMILIES\": 11291, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 23617, \"VACANT\": 669, \"OWNER_OCC\": 10235, \"RENTER_OCC\": 12713 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.731806930542945, 38.554642460411657 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Delano\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"18394\", \"CAPITAL\": \"N\", \"AREALAND\": 10.105000, \"AREAWATER\": 0.052000, \"POP_CL\": 6, \"POP2000\": 38824, \"WHITE\": 10157, \"BLACK\": 2115, \"AMERI_ES\": 352, \"ASIAN\": 6165, \"HAWN_PI\": 22, \"OTHER\": 18276, \"MULT_RACE\": 1737, \"HISPANIC\": 26584, \"MALES\": 21935, \"FEMALES\": 16889, \"AGE_UNDER5\": 3537, \"AGE_5_17\": 9081, \"AGE_18_21\": 2730, \"AGE_22_29\": 5463, \"AGE_30_39\": 6522, \"AGE_40_49\": 4883, \"AGE_50_64\": 3709, \"AGE_65_UP\": 2899, \"MED_AGE\": 27.900000, \"MED_AGE_M\": 28.400000, \"MED_AGE_F\": 27.000000, \"HOUSEHOLDS\": 8409, \"AVE_HH_SZ\": 4.020000, \"HSEHLD_1_M\": 383, \"HSEHLD_1_F\": 529, \"MARHH_CHD\": 3394, \"MARHH_NO_C\": 1674, \"MHH_CHILD\": 352, \"FHH_CHILD\": 985, \"FAMILIES\": 7245, \"AVE_FAM_SZ\": 4.270000, \"HSE_UNITS\": 8830, \"VACANT\": 421, \"OWNER_OCC\": 4993, \"RENTER_OCC\": 3416 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -119.244231952789193, 35.769905323029271 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Desert Hot Springs\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"18996\", \"CAPITAL\": \"N\", \"AREALAND\": 23.251000, \"AREAWATER\": 0.027000, \"POP_CL\": 6, \"POP2000\": 16582, \"WHITE\": 11306, \"BLACK\": 1014, \"AMERI_ES\": 238, \"ASIAN\": 326, \"HAWN_PI\": 14, \"OTHER\": 2717, \"MULT_RACE\": 967, \"HISPANIC\": 6699, \"MALES\": 8155, \"FEMALES\": 8427, \"AGE_UNDER5\": 1564, \"AGE_5_17\": 3955, \"AGE_18_21\": 960, \"AGE_22_29\": 1787, \"AGE_30_39\": 2524, \"AGE_40_49\": 2173, \"AGE_50_64\": 1773, \"AGE_65_UP\": 1846, \"MED_AGE\": 30.100000, \"MED_AGE_M\": 28.900000, \"MED_AGE_F\": 31.200000, \"HOUSEHOLDS\": 5859, \"AVE_HH_SZ\": 2.800000, \"HSEHLD_1_M\": 800, \"HSEHLD_1_F\": 820, \"MARHH_CHD\": 1249, \"MARHH_NO_C\": 1055, \"MHH_CHILD\": 255, \"FHH_CHILD\": 761, \"FAMILIES\": 3757, \"AVE_FAM_SZ\": 3.450000, \"HSE_UNITS\": 7034, \"VACANT\": 1175, \"OWNER_OCC\": 2766, \"RENTER_OCC\": 3093 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -116.507464760240026, 33.961064423639826 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Diamond Bar\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"19192\", \"CAPITAL\": \"N\", \"AREALAND\": 14.761000, \"AREAWATER\": 0.000000, \"POP_CL\": 7, \"POP2000\": 56287, \"WHITE\": 23103, \"BLACK\": 2680, \"AMERI_ES\": 185, \"ASIAN\": 24066, \"HAWN_PI\": 67, \"OTHER\": 3818, \"MULT_RACE\": 2368, \"HISPANIC\": 10393, \"MALES\": 27566, \"FEMALES\": 28721, \"AGE_UNDER5\": 3216, \"AGE_5_17\": 11967, \"AGE_18_21\": 3024, \"AGE_22_29\": 5032, \"AGE_30_39\": 8173, \"AGE_40_49\": 10683, \"AGE_50_64\": 9979, \"AGE_65_UP\": 4213, \"MED_AGE\": 36.500000, \"MED_AGE_M\": 35.300000, \"MED_AGE_F\": 37.500000, \"HOUSEHOLDS\": 17651, \"AVE_HH_SZ\": 3.180000, \"HSEHLD_1_M\": 952, \"HSEHLD_1_F\": 1249, \"MARHH_CHD\": 6537, \"MARHH_NO_C\": 5515, \"MHH_CHILD\": 304, \"FHH_CHILD\": 994, \"FAMILIES\": 14801, \"AVE_FAM_SZ\": 3.470000, \"HSE_UNITS\": 17959, \"VACANT\": 308, \"OWNER_OCC\": 14572, \"RENTER_OCC\": 3079 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.819707752296324, 34.001779059755378 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Dinuba\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"19318\", \"CAPITAL\": \"N\", \"AREALAND\": 3.421000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 16844, \"WHITE\": 8816, \"BLACK\": 60, \"AMERI_ES\": 215, \"ASIAN\": 442, \"HAWN_PI\": 23, \"OTHER\": 6398, \"MULT_RACE\": 890, \"HISPANIC\": 12647, \"MALES\": 8554, \"FEMALES\": 8290, \"AGE_UNDER5\": 1645, \"AGE_5_17\": 4378, \"AGE_18_21\": 1298, \"AGE_22_29\": 2105, \"AGE_30_39\": 2359, \"AGE_40_49\": 1924, \"AGE_50_64\": 1608, \"AGE_65_UP\": 1527, \"MED_AGE\": 25.900000, \"MED_AGE_M\": 25.200000, \"MED_AGE_F\": 27.000000, \"HOUSEHOLDS\": 4493, \"AVE_HH_SZ\": 3.720000, \"HSEHLD_1_M\": 214, \"HSEHLD_1_F\": 433, \"MARHH_CHD\": 1680, \"MARHH_NO_C\": 1008, \"MHH_CHILD\": 169, \"FHH_CHILD\": 502, \"FAMILIES\": 3724, \"AVE_FAM_SZ\": 4.020000, \"HSE_UNITS\": 4670, \"VACANT\": 177, \"OWNER_OCC\": 2726, \"RENTER_OCC\": 1767 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -119.386940262476031, 36.545178101496177 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Dixon\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"19402\", \"CAPITAL\": \"N\", \"AREALAND\": 6.616000, \"AREAWATER\": 0.061000, \"POP_CL\": 6, \"POP2000\": 16103, \"WHITE\": 11354, \"BLACK\": 311, \"AMERI_ES\": 160, \"ASIAN\": 501, \"HAWN_PI\": 48, \"OTHER\": 2877, \"MULT_RACE\": 852, \"HISPANIC\": 5414, \"MALES\": 8062, \"FEMALES\": 8041, \"AGE_UNDER5\": 1393, \"AGE_5_17\": 3763, \"AGE_18_21\": 808, \"AGE_22_29\": 1670, \"AGE_30_39\": 2768, \"AGE_40_49\": 2491, \"AGE_50_64\": 2047, \"AGE_65_UP\": 1163, \"MED_AGE\": 31.500000, \"MED_AGE_M\": 31.000000, \"MED_AGE_F\": 32.000000, \"HOUSEHOLDS\": 5073, \"AVE_HH_SZ\": 3.170000, \"HSEHLD_1_M\": 276, \"HSEHLD_1_F\": 382, \"MARHH_CHD\": 1941, \"MARHH_NO_C\": 1456, \"MHH_CHILD\": 179, \"FHH_CHILD\": 304, \"FAMILIES\": 4167, \"AVE_FAM_SZ\": 3.450000, \"HSE_UNITS\": 5172, \"VACANT\": 99, \"OWNER_OCC\": 3696, \"RENTER_OCC\": 1377 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.820420175832112, 38.449920186173337 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Downey\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"19766\", \"CAPITAL\": \"N\", \"AREALAND\": 12.419000, \"AREAWATER\": 0.166000, \"POP_CL\": 8, \"POP2000\": 107323, \"WHITE\": 57395, \"BLACK\": 4028, \"AMERI_ES\": 929, \"ASIAN\": 8308, \"HAWN_PI\": 236, \"OTHER\": 31180, \"MULT_RACE\": 5247, \"HISPANIC\": 62089, \"MALES\": 52176, \"FEMALES\": 55147, \"AGE_UNDER5\": 8606, \"AGE_5_17\": 22751, \"AGE_18_21\": 5864, \"AGE_22_29\": 13606, \"AGE_30_39\": 16846, \"AGE_40_49\": 14222, \"AGE_50_64\": 13599, \"AGE_65_UP\": 11829, \"MED_AGE\": 31.600000, \"MED_AGE_M\": 30.400000, \"MED_AGE_F\": 32.800000, \"HOUSEHOLDS\": 33989, \"AVE_HH_SZ\": 3.110000, \"HSEHLD_1_M\": 2773, \"HSEHLD_1_F\": 3706, \"MARHH_CHD\": 10067, \"MARHH_NO_C\": 8337, \"MHH_CHILD\": 1062, \"FHH_CHILD\": 3068, \"FAMILIES\": 25997, \"AVE_FAM_SZ\": 3.550000, \"HSE_UNITS\": 34759, \"VACANT\": 770, \"OWNER_OCC\": 17601, \"RENTER_OCC\": 16388 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.129612230352762, 33.938309880039718 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Duarte\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"19990\", \"CAPITAL\": \"N\", \"AREALAND\": 6.682000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 21486, \"WHITE\": 11178, \"BLACK\": 1952, \"AMERI_ES\": 201, \"ASIAN\": 2711, \"HAWN_PI\": 24, \"OTHER\": 4296, \"MULT_RACE\": 1124, \"HISPANIC\": 9326, \"MALES\": 10232, \"FEMALES\": 11254, \"AGE_UNDER5\": 1613, \"AGE_5_17\": 4444, \"AGE_18_21\": 1029, \"AGE_22_29\": 2237, \"AGE_30_39\": 3292, \"AGE_40_49\": 3174, \"AGE_50_64\": 3141, \"AGE_65_UP\": 2556, \"MED_AGE\": 34.500000, \"MED_AGE_M\": 32.400000, \"MED_AGE_F\": 36.500000, \"HOUSEHOLDS\": 6635, \"AVE_HH_SZ\": 3.160000, \"HSEHLD_1_M\": 538, \"HSEHLD_1_F\": 889, \"MARHH_CHD\": 1995, \"MARHH_NO_C\": 1643, \"MHH_CHILD\": 164, \"FHH_CHILD\": 425, \"FAMILIES\": 4892, \"AVE_FAM_SZ\": 3.700000, \"HSE_UNITS\": 6805, \"VACANT\": 170, \"OWNER_OCC\": 4711, \"RENTER_OCC\": 1924 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.960552068338345, 34.140552270994618 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Dublin\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"20018\", \"CAPITAL\": \"N\", \"AREALAND\": 12.587000, \"AREAWATER\": 0.008000, \"POP_CL\": 6, \"POP2000\": 29973, \"WHITE\": 20793, \"BLACK\": 3024, \"AMERI_ES\": 220, \"ASIAN\": 3101, \"HAWN_PI\": 95, \"OTHER\": 1576, \"MULT_RACE\": 1164, \"HISPANIC\": 4059, \"MALES\": 15782, \"FEMALES\": 14191, \"AGE_UNDER5\": 1758, \"AGE_5_17\": 4524, \"AGE_18_21\": 1526, \"AGE_22_29\": 4281, \"AGE_30_39\": 7055, \"AGE_40_49\": 5496, \"AGE_50_64\": 3952, \"AGE_65_UP\": 1381, \"MED_AGE\": 34.300000, \"MED_AGE_M\": 33.700000, \"MED_AGE_F\": 34.900000, \"HOUSEHOLDS\": 9325, \"AVE_HH_SZ\": 2.650000, \"HSEHLD_1_M\": 925, \"HSEHLD_1_F\": 1062, \"MARHH_CHD\": 2624, \"MARHH_NO_C\": 2686, \"MHH_CHILD\": 172, \"FHH_CHILD\": 505, \"FAMILIES\": 6505, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 9872, \"VACANT\": 547, \"OWNER_OCC\": 6049, \"RENTER_OCC\": 3276 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.906129524798232, 37.715050859801138 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"East Hemet\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"20697\", \"CAPITAL\": \"N\", \"AREALAND\": 3.224000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14823, \"WHITE\": 11864, \"BLACK\": 228, \"AMERI_ES\": 210, \"ASIAN\": 154, \"HAWN_PI\": 13, \"OTHER\": 1763, \"MULT_RACE\": 591, \"HISPANIC\": 3692, \"MALES\": 7198, \"FEMALES\": 7625, \"AGE_UNDER5\": 1082, \"AGE_5_17\": 3779, \"AGE_18_21\": 766, \"AGE_22_29\": 1249, \"AGE_30_39\": 2045, \"AGE_40_49\": 2013, \"AGE_50_64\": 1992, \"AGE_65_UP\": 1897, \"MED_AGE\": 32.900000, \"MED_AGE_M\": 31.100000, \"MED_AGE_F\": 34.500000, \"HOUSEHOLDS\": 4831, \"AVE_HH_SZ\": 3.030000, \"HSEHLD_1_M\": 338, \"HSEHLD_1_F\": 503, \"MARHH_CHD\": 1377, \"MARHH_NO_C\": 1409, \"MHH_CHILD\": 182, \"FHH_CHILD\": 490, \"FAMILIES\": 3788, \"AVE_FAM_SZ\": 3.380000, \"HSE_UNITS\": 5064, \"VACANT\": 233, \"OWNER_OCC\": 3285, \"RENTER_OCC\": 1546 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -116.939586255538529, 33.736203372777524 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"East Los Angeles\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"20802\", \"CAPITAL\": \"N\", \"AREALAND\": 7.443000, \"AREAWATER\": 0.003000, \"POP_CL\": 8, \"POP2000\": 124283, \"WHITE\": 48788, \"BLACK\": 490, \"AMERI_ES\": 1603, \"ASIAN\": 962, \"HAWN_PI\": 70, \"OTHER\": 67122, \"MULT_RACE\": 5248, \"HISPANIC\": 120307, \"MALES\": 62625, \"FEMALES\": 61658, \"AGE_UNDER5\": 12607, \"AGE_5_17\": 30342, \"AGE_18_21\": 8670, \"AGE_22_29\": 18723, \"AGE_30_39\": 18995, \"AGE_40_49\": 13399, \"AGE_50_64\": 11726, \"AGE_65_UP\": 9821, \"MED_AGE\": 26.500000, \"MED_AGE_M\": 25.700000, \"MED_AGE_F\": 27.300000, \"HOUSEHOLDS\": 29844, \"AVE_HH_SZ\": 4.150000, \"HSEHLD_1_M\": 1642, \"HSEHLD_1_F\": 2095, \"MARHH_CHD\": 10693, \"MARHH_NO_C\": 5166, \"MHH_CHILD\": 1176, \"FHH_CHILD\": 3552, \"FAMILIES\": 25074, \"AVE_FAM_SZ\": 4.420000, \"HSE_UNITS\": 31096, \"VACANT\": 1252, \"OWNER_OCC\": 10924, \"RENTER_OCC\": 18920 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.16743820526348, 34.031610971716788 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"East Palo Alto\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"20956\", \"CAPITAL\": \"N\", \"AREALAND\": 2.547000, \"AREAWATER\": 0.022000, \"POP_CL\": 6, \"POP2000\": 29506, \"WHITE\": 7962, \"BLACK\": 6796, \"AMERI_ES\": 246, \"ASIAN\": 657, \"HAWN_PI\": 2252, \"OTHER\": 10248, \"MULT_RACE\": 1345, \"HISPANIC\": 17346, \"MALES\": 15198, \"FEMALES\": 14308, \"AGE_UNDER5\": 2943, \"AGE_5_17\": 7376, \"AGE_18_21\": 2239, \"AGE_22_29\": 4589, \"AGE_30_39\": 4867, \"AGE_40_49\": 3303, \"AGE_50_64\": 2670, \"AGE_65_UP\": 1519, \"MED_AGE\": 25.800000, \"MED_AGE_M\": 25.600000, \"MED_AGE_F\": 26.000000, \"HOUSEHOLDS\": 6976, \"AVE_HH_SZ\": 4.200000, \"HSEHLD_1_M\": 664, \"HSEHLD_1_F\": 608, \"MARHH_CHD\": 2283, \"MARHH_NO_C\": 1078, \"MHH_CHILD\": 252, \"FHH_CHILD\": 765, \"FAMILIES\": 5275, \"AVE_FAM_SZ\": 4.640000, \"HSE_UNITS\": 7091, \"VACANT\": 115, \"OWNER_OCC\": 3033, \"RENTER_OCC\": 3943 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.132896684447672, 37.467929927031655 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"East San Gabriel\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"21096\", \"CAPITAL\": \"N\", \"AREALAND\": 1.554000, \"AREAWATER\": 0.014000, \"POP_CL\": 6, \"POP2000\": 14512, \"WHITE\": 6175, \"BLACK\": 269, \"AMERI_ES\": 92, \"ASIAN\": 5873, \"HAWN_PI\": 13, \"OTHER\": 1469, \"MULT_RACE\": 621, \"HISPANIC\": 3413, \"MALES\": 7056, \"FEMALES\": 7456, \"AGE_UNDER5\": 999, \"AGE_5_17\": 2443, \"AGE_18_21\": 676, \"AGE_22_29\": 1647, \"AGE_30_39\": 2378, \"AGE_40_49\": 2349, \"AGE_50_64\": 2267, \"AGE_65_UP\": 1753, \"MED_AGE\": 36.400000, \"MED_AGE_M\": 35.400000, \"MED_AGE_F\": 37.300000, \"HOUSEHOLDS\": 5201, \"AVE_HH_SZ\": 2.790000, \"HSEHLD_1_M\": 549, \"HSEHLD_1_F\": 634, \"MARHH_CHD\": 1351, \"MARHH_NO_C\": 1424, \"MHH_CHILD\": 118, \"FHH_CHILD\": 313, \"FAMILIES\": 3706, \"AVE_FAM_SZ\": 3.280000, \"HSE_UNITS\": 5391, \"VACANT\": 190, \"OWNER_OCC\": 2822, \"RENTER_OCC\": 2379 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.080872714299701, 34.11929278468854 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"El Cajon\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"21712\", \"CAPITAL\": \"N\", \"AREALAND\": 14.571000, \"AREAWATER\": 0.000000, \"POP_CL\": 7, \"POP2000\": 94869, \"WHITE\": 70206, \"BLACK\": 5090, \"AMERI_ES\": 941, \"ASIAN\": 2643, \"HAWN_PI\": 352, \"OTHER\": 9950, \"MULT_RACE\": 5687, \"HISPANIC\": 21313, \"MALES\": 46279, \"FEMALES\": 48590, \"AGE_UNDER5\": 7752, \"AGE_5_17\": 18679, \"AGE_18_21\": 5939, \"AGE_22_29\": 12148, \"AGE_30_39\": 14973, \"AGE_40_49\": 12977, \"AGE_50_64\": 11652, \"AGE_65_UP\": 10749, \"MED_AGE\": 31.900000, \"MED_AGE_M\": 30.500000, \"MED_AGE_F\": 33.400000, \"HOUSEHOLDS\": 34199, \"AVE_HH_SZ\": 2.700000, \"HSEHLD_1_M\": 3745, \"HSEHLD_1_F\": 4502, \"MARHH_CHD\": 7973, \"MARHH_NO_C\": 7742, \"MHH_CHILD\": 1139, \"FHH_CHILD\": 3549, \"FAMILIES\": 23163, \"AVE_FAM_SZ\": 3.210000, \"HSE_UNITS\": 35190, \"VACANT\": 991, \"OWNER_OCC\": 13860, \"RENTER_OCC\": 20339 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -116.959376923448488, 32.798380688089971 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"El Centro\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"21782\", \"CAPITAL\": \"N\", \"AREALAND\": 9.578000, \"AREAWATER\": 0.040000, \"POP_CL\": 6, \"POP2000\": 37835, \"WHITE\": 17728, \"BLACK\": 1195, \"AMERI_ES\": 369, \"ASIAN\": 1324, \"HAWN_PI\": 37, \"OTHER\": 15771, \"MULT_RACE\": 1411, \"HISPANIC\": 28219, \"MALES\": 18594, \"FEMALES\": 19241, \"AGE_UNDER5\": 3161, \"AGE_5_17\": 9555, \"AGE_18_21\": 2273, \"AGE_22_29\": 3945, \"AGE_30_39\": 5544, \"AGE_40_49\": 5329, \"AGE_50_64\": 4499, \"AGE_65_UP\": 3529, \"MED_AGE\": 30.000000, \"MED_AGE_M\": 28.900000, \"MED_AGE_F\": 31.200000, \"HOUSEHOLDS\": 11439, \"AVE_HH_SZ\": 3.230000, \"HSEHLD_1_M\": 1035, \"HSEHLD_1_F\": 1121, \"MARHH_CHD\": 3650, \"MARHH_NO_C\": 2512, \"MHH_CHILD\": 346, \"FHH_CHILD\": 1421, \"FAMILIES\": 8908, \"AVE_FAM_SZ\": 3.710000, \"HSE_UNITS\": 12263, \"VACANT\": 824, \"OWNER_OCC\": 5748, \"RENTER_OCC\": 5691 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -115.557595821767137, 32.788179521586677 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"El Cerrito\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"21796\", \"CAPITAL\": \"N\", \"AREALAND\": 3.645000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 23171, \"WHITE\": 13391, \"BLACK\": 1978, \"AMERI_ES\": 116, \"ASIAN\": 5649, \"HAWN_PI\": 59, \"OTHER\": 708, \"MULT_RACE\": 1270, \"HISPANIC\": 1838, \"MALES\": 10956, \"FEMALES\": 12215, \"AGE_UNDER5\": 1079, \"AGE_5_17\": 2613, \"AGE_18_21\": 785, \"AGE_22_29\": 2404, \"AGE_30_39\": 3715, \"AGE_40_49\": 3746, \"AGE_50_64\": 4096, \"AGE_65_UP\": 4733, \"MED_AGE\": 42.700000, \"MED_AGE_M\": 40.500000, \"MED_AGE_F\": 44.500000, \"HOUSEHOLDS\": 10208, \"AVE_HH_SZ\": 2.250000, \"HSEHLD_1_M\": 1180, \"HSEHLD_1_F\": 1926, \"MARHH_CHD\": 1606, \"MARHH_NO_C\": 3031, \"MHH_CHILD\": 125, \"FHH_CHILD\": 383, \"FAMILIES\": 5970, \"AVE_FAM_SZ\": 2.810000, \"HSE_UNITS\": 10462, \"VACANT\": 254, \"OWNER_OCC\": 6228, \"RENTER_OCC\": 3980 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.297615352069016, 37.918388936316056 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"El Dorado Hills\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"21880\", \"CAPITAL\": \"N\", \"AREALAND\": 17.903000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 18016, \"WHITE\": 16234, \"BLACK\": 139, \"AMERI_ES\": 83, \"ASIAN\": 740, \"HAWN_PI\": 30, \"OTHER\": 247, \"MULT_RACE\": 543, \"HISPANIC\": 896, \"MALES\": 8978, \"FEMALES\": 9038, \"AGE_UNDER5\": 1281, \"AGE_5_17\": 4692, \"AGE_18_21\": 613, \"AGE_22_29\": 627, \"AGE_30_39\": 2741, \"AGE_40_49\": 3903, \"AGE_50_64\": 2838, \"AGE_65_UP\": 1321, \"MED_AGE\": 37.600000, \"MED_AGE_M\": 37.500000, \"MED_AGE_F\": 37.600000, \"HOUSEHOLDS\": 5896, \"AVE_HH_SZ\": 3.060000, \"HSEHLD_1_M\": 265, \"HSEHLD_1_F\": 288, \"MARHH_CHD\": 2618, \"MARHH_NO_C\": 2067, \"MHH_CHILD\": 95, \"FHH_CHILD\": 275, \"FAMILIES\": 5207, \"AVE_FAM_SZ\": 3.260000, \"HSE_UNITS\": 6071, \"VACANT\": 175, \"OWNER_OCC\": 5319, \"RENTER_OCC\": 577 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.073472206997124, 38.688828846186311 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Elk Grove\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"22020\", \"CAPITAL\": \"N\", \"AREALAND\": 15.197000, \"AREAWATER\": 0.001000, \"POP_CL\": 7, \"POP2000\": 59984, \"WHITE\": 35464, \"BLACK\": 5110, \"AMERI_ES\": 562, \"ASIAN\": 10553, \"HAWN_PI\": 355, \"OTHER\": 3865, \"MULT_RACE\": 4075, \"HISPANIC\": 8398, \"MALES\": 29268, \"FEMALES\": 30716, \"AGE_UNDER5\": 4720, \"AGE_5_17\": 15043, \"AGE_18_21\": 3116, \"AGE_22_29\": 5303, \"AGE_30_39\": 9956, \"AGE_40_49\": 10278, \"AGE_50_64\": 7519, \"AGE_65_UP\": 4049, \"MED_AGE\": 32.000000, \"MED_AGE_M\": 31.000000, \"MED_AGE_F\": 32.900000, \"HOUSEHOLDS\": 18526, \"AVE_HH_SZ\": 3.220000, \"HSEHLD_1_M\": 974, \"HSEHLD_1_F\": 1409, \"MARHH_CHD\": 7050, \"MARHH_NO_C\": 4986, \"MHH_CHILD\": 575, \"FHH_CHILD\": 1530, \"FAMILIES\": 15366, \"AVE_FAM_SZ\": 3.510000, \"HSE_UNITS\": 18894, \"VACANT\": 368, \"OWNER_OCC\": 15191, \"RENTER_OCC\": 3335 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.376434425974338, 38.438901861360563 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"El Monte\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"22230\", \"CAPITAL\": \"N\", \"AREALAND\": 9.553000, \"AREAWATER\": 0.140000, \"POP_CL\": 8, \"POP2000\": 115965, \"WHITE\": 41360, \"BLACK\": 889, \"AMERI_ES\": 1596, \"ASIAN\": 21465, \"HAWN_PI\": 140, \"OTHER\": 45544, \"MULT_RACE\": 4971, \"HISPANIC\": 83945, \"MALES\": 58584, \"FEMALES\": 57381, \"AGE_UNDER5\": 11553, \"AGE_5_17\": 27952, \"AGE_18_21\": 7934, \"AGE_22_29\": 16407, \"AGE_30_39\": 18753, \"AGE_40_49\": 13693, \"AGE_50_64\": 11655, \"AGE_65_UP\": 8018, \"MED_AGE\": 27.100000, \"MED_AGE_M\": 26.500000, \"MED_AGE_F\": 27.800000, \"HOUSEHOLDS\": 27034, \"AVE_HH_SZ\": 4.240000, \"HSEHLD_1_M\": 1366, \"HSEHLD_1_F\": 1579, \"MARHH_CHD\": 10284, \"MARHH_NO_C\": 5129, \"MHH_CHILD\": 1165, \"FHH_CHILD\": 2973, \"FAMILIES\": 22995, \"AVE_FAM_SZ\": 4.430000, \"HSE_UNITS\": 27758, \"VACANT\": 724, \"OWNER_OCC\": 11073, \"RENTER_OCC\": 15961 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.02634004811776, 34.073416010597192 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"El Paso de Robles (Paso Robles)\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"22300\", \"CAPITAL\": \"N\", \"AREALAND\": 17.335000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 24297, \"WHITE\": 18393, \"BLACK\": 806, \"AMERI_ES\": 316, \"ASIAN\": 458, \"HAWN_PI\": 34, \"OTHER\": 3325, \"MULT_RACE\": 965, \"HISPANIC\": 6735, \"MALES\": 12316, \"FEMALES\": 11981, \"AGE_UNDER5\": 1749, \"AGE_5_17\": 5491, \"AGE_18_21\": 1741, \"AGE_22_29\": 2183, \"AGE_30_39\": 3393, \"AGE_40_49\": 3579, \"AGE_50_64\": 2899, \"AGE_65_UP\": 3262, \"MED_AGE\": 33.000000, \"MED_AGE_M\": 30.100000, \"MED_AGE_F\": 36.100000, \"HOUSEHOLDS\": 8556, \"AVE_HH_SZ\": 2.730000, \"HSEHLD_1_M\": 777, \"HSEHLD_1_F\": 1251, \"MARHH_CHD\": 2251, \"MARHH_NO_C\": 2318, \"MHH_CHILD\": 251, \"FHH_CHILD\": 695, \"FAMILIES\": 6042, \"AVE_FAM_SZ\": 3.230000, \"HSE_UNITS\": 8791, \"VACANT\": 235, \"OWNER_OCC\": 5008, \"RENTER_OCC\": 3548 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -120.674427716621338, 35.627472023221692 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"El Segundo\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"22412\", \"CAPITAL\": \"N\", \"AREALAND\": 5.539000, \"AREAWATER\": 5.262000, \"POP_CL\": 6, \"POP2000\": 16033, \"WHITE\": 13405, \"BLACK\": 187, \"AMERI_ES\": 75, \"ASIAN\": 1028, \"HAWN_PI\": 47, \"OTHER\": 562, \"MULT_RACE\": 729, \"HISPANIC\": 1765, \"MALES\": 7966, \"FEMALES\": 8067, \"AGE_UNDER5\": 956, \"AGE_5_17\": 2683, \"AGE_18_21\": 530, \"AGE_22_29\": 1740, \"AGE_30_39\": 3296, \"AGE_40_49\": 2962, \"AGE_50_64\": 2337, \"AGE_65_UP\": 1529, \"MED_AGE\": 36.400000, \"MED_AGE_M\": 36.000000, \"MED_AGE_F\": 36.900000, \"HOUSEHOLDS\": 7060, \"AVE_HH_SZ\": 2.270000, \"HSEHLD_1_M\": 1212, \"HSEHLD_1_F\": 1208, \"MARHH_CHD\": 1451, \"MARHH_NO_C\": 1480, \"MHH_CHILD\": 139, \"FHH_CHILD\": 393, \"FAMILIES\": 3908, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 7261, \"VACANT\": 201, \"OWNER_OCC\": 2937, \"RENTER_OCC\": 4123 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.40490707448356, 33.921477957976691 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"El Sobrante\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"22454\", \"CAPITAL\": \"N\", \"AREALAND\": 3.101000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12260, \"WHITE\": 7399, \"BLACK\": 1491, \"AMERI_ES\": 82, \"ASIAN\": 1532, \"HAWN_PI\": 35, \"OTHER\": 855, \"MULT_RACE\": 866, \"HISPANIC\": 1910, \"MALES\": 5944, \"FEMALES\": 6316, \"AGE_UNDER5\": 764, \"AGE_5_17\": 2266, \"AGE_18_21\": 526, \"AGE_22_29\": 1114, \"AGE_30_39\": 1988, \"AGE_40_49\": 2062, \"AGE_50_64\": 2099, \"AGE_65_UP\": 1441, \"MED_AGE\": 37.600000, \"MED_AGE_M\": 37.000000, \"MED_AGE_F\": 38.100000, \"HOUSEHOLDS\": 4676, \"AVE_HH_SZ\": 2.610000, \"HSEHLD_1_M\": 520, \"HSEHLD_1_F\": 631, \"MARHH_CHD\": 972, \"MARHH_NO_C\": 1252, \"MHH_CHILD\": 138, \"FHH_CHILD\": 416, \"FAMILIES\": 3171, \"AVE_FAM_SZ\": 3.110000, \"HSE_UNITS\": 4803, \"VACANT\": 127, \"OWNER_OCC\": 2977, \"RENTER_OCC\": 1699 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.288470676031352, 37.969497984073122 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Encinitas\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"22678\", \"CAPITAL\": \"N\", \"AREALAND\": 19.111000, \"AREAWATER\": 1.021000, \"POP_CL\": 7, \"POP2000\": 58014, \"WHITE\": 50241, \"BLACK\": 340, \"AMERI_ES\": 267, \"ASIAN\": 1798, \"HAWN_PI\": 69, \"OTHER\": 3645, \"MULT_RACE\": 1654, \"HISPANIC\": 8584, \"MALES\": 28890, \"FEMALES\": 29124, \"AGE_UNDER5\": 3411, \"AGE_5_17\": 9966, \"AGE_18_21\": 2261, \"AGE_22_29\": 5952, \"AGE_30_39\": 9702, \"AGE_40_49\": 11356, \"AGE_50_64\": 9311, \"AGE_65_UP\": 6055, \"MED_AGE\": 37.900000, \"MED_AGE_M\": 36.700000, \"MED_AGE_F\": 39.000000, \"HOUSEHOLDS\": 22830, \"AVE_HH_SZ\": 2.520000, \"HSEHLD_1_M\": 2615, \"HSEHLD_1_F\": 3249, \"MARHH_CHD\": 5450, \"MARHH_NO_C\": 5982, \"MHH_CHILD\": 440, \"FHH_CHILD\": 1178, \"FAMILIES\": 14283, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 23843, \"VACANT\": 1013, \"OWNER_OCC\": 14652, \"RENTER_OCC\": 8178 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.270908006528614, 33.044536526286628 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Escondido\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"22804\", \"CAPITAL\": \"N\", \"AREALAND\": 36.284000, \"AREAWATER\": 0.190000, \"POP_CL\": 8, \"POP2000\": 133559, \"WHITE\": 90578, \"BLACK\": 3009, \"AMERI_ES\": 1646, \"ASIAN\": 5957, \"HAWN_PI\": 311, \"OTHER\": 25636, \"MULT_RACE\": 6422, \"HISPANIC\": 51693, \"MALES\": 66233, \"FEMALES\": 67326, \"AGE_UNDER5\": 11712, \"AGE_5_17\": 27975, \"AGE_18_21\": 7777, \"AGE_22_29\": 16530, \"AGE_30_39\": 21651, \"AGE_40_49\": 17872, \"AGE_50_64\": 15322, \"AGE_65_UP\": 14720, \"MED_AGE\": 31.200000, \"MED_AGE_M\": 30.200000, \"MED_AGE_F\": 32.400000, \"HOUSEHOLDS\": 43817, \"AVE_HH_SZ\": 3.010000, \"HSEHLD_1_M\": 3829, \"HSEHLD_1_F\": 5972, \"MARHH_CHD\": 12505, \"MARHH_NO_C\": 11121, \"MHH_CHILD\": 1333, \"FHH_CHILD\": 3278, \"FAMILIES\": 31162, \"AVE_FAM_SZ\": 3.500000, \"HSE_UNITS\": 45050, \"VACANT\": 1233, \"OWNER_OCC\": 23308, \"RENTER_OCC\": 20509 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.080119912838938, 33.124880730163042 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Eureka\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"23042\", \"CAPITAL\": \"N\", \"AREALAND\": 9.451000, \"AREAWATER\": 5.001000, \"POP_CL\": 6, \"POP2000\": 26128, \"WHITE\": 21544, \"BLACK\": 427, \"AMERI_ES\": 1101, \"ASIAN\": 928, \"HAWN_PI\": 86, \"OTHER\": 709, \"MULT_RACE\": 1333, \"HISPANIC\": 2031, \"MALES\": 12937, \"FEMALES\": 13191, \"AGE_UNDER5\": 1500, \"AGE_5_17\": 4341, \"AGE_18_21\": 1779, \"AGE_22_29\": 3193, \"AGE_30_39\": 3639, \"AGE_40_49\": 4033, \"AGE_50_64\": 4076, \"AGE_65_UP\": 3567, \"MED_AGE\": 36.600000, \"MED_AGE_M\": 35.100000, \"MED_AGE_F\": 38.100000, \"HOUSEHOLDS\": 10957, \"AVE_HH_SZ\": 2.260000, \"HSEHLD_1_M\": 1730, \"HSEHLD_1_F\": 2141, \"MARHH_CHD\": 1506, \"MARHH_NO_C\": 2312, \"MHH_CHILD\": 314, \"FHH_CHILD\": 1005, \"FAMILIES\": 5886, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 11637, \"VACANT\": 680, \"OWNER_OCC\": 5092, \"RENTER_OCC\": 5865 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -124.14611111434489, 40.792139393201992 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fairfield\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"23182\", \"CAPITAL\": \"N\", \"AREALAND\": 37.654000, \"AREAWATER\": 0.019000, \"POP_CL\": 7, \"POP2000\": 96178, \"WHITE\": 54063, \"BLACK\": 14446, \"AMERI_ES\": 744, \"ASIAN\": 10471, \"HAWN_PI\": 899, \"OTHER\": 8431, \"MULT_RACE\": 7124, \"HISPANIC\": 18050, \"MALES\": 47882, \"FEMALES\": 48296, \"AGE_UNDER5\": 8163, \"AGE_5_17\": 20496, \"AGE_18_21\": 6185, \"AGE_22_29\": 11540, \"AGE_30_39\": 15516, \"AGE_40_49\": 13772, \"AGE_50_64\": 11872, \"AGE_65_UP\": 8634, \"MED_AGE\": 31.100000, \"MED_AGE_M\": 29.900000, \"MED_AGE_F\": 32.500000, \"HOUSEHOLDS\": 30870, \"AVE_HH_SZ\": 2.980000, \"HSEHLD_1_M\": 2308, \"HSEHLD_1_F\": 2943, \"MARHH_CHD\": 9617, \"MARHH_NO_C\": 8414, \"MHH_CHILD\": 930, \"FHH_CHILD\": 2768, \"FAMILIES\": 24018, \"AVE_FAM_SZ\": 3.330000, \"HSE_UNITS\": 31792, \"VACANT\": 922, \"OWNER_OCC\": 18415, \"RENTER_OCC\": 12455 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.047336056280088, 38.258646521009943 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fair Oaks\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"23294\", \"CAPITAL\": \"N\", \"AREALAND\": 9.887000, \"AREAWATER\": 0.430000, \"POP_CL\": 6, \"POP2000\": 28008, \"WHITE\": 24659, \"BLACK\": 514, \"AMERI_ES\": 165, \"ASIAN\": 1182, \"HAWN_PI\": 44, \"OTHER\": 499, \"MULT_RACE\": 945, \"HISPANIC\": 1767, \"MALES\": 13778, \"FEMALES\": 14230, \"AGE_UNDER5\": 1440, \"AGE_5_17\": 4934, \"AGE_18_21\": 1190, \"AGE_22_29\": 2124, \"AGE_30_39\": 3746, \"AGE_40_49\": 4812, \"AGE_50_64\": 5903, \"AGE_65_UP\": 3859, \"MED_AGE\": 41.200000, \"MED_AGE_M\": 40.100000, \"MED_AGE_F\": 42.300000, \"HOUSEHOLDS\": 11203, \"AVE_HH_SZ\": 2.470000, \"HSEHLD_1_M\": 1200, \"HSEHLD_1_F\": 1436, \"MARHH_CHD\": 2424, \"MARHH_NO_C\": 3895, \"MHH_CHILD\": 259, \"FHH_CHILD\": 629, \"FAMILIES\": 7847, \"AVE_FAM_SZ\": 2.910000, \"HSE_UNITS\": 11461, \"VACANT\": 258, \"OWNER_OCC\": 7864, \"RENTER_OCC\": 3339 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.253961270614084, 38.651905117333982 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fallbrook\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"23462\", \"CAPITAL\": \"N\", \"AREALAND\": 17.496000, \"AREAWATER\": 0.052000, \"POP_CL\": 6, \"POP2000\": 29100, \"WHITE\": 20888, \"BLACK\": 415, \"AMERI_ES\": 263, \"ASIAN\": 447, \"HAWN_PI\": 87, \"OTHER\": 5868, \"MULT_RACE\": 1132, \"HISPANIC\": 10853, \"MALES\": 14743, \"FEMALES\": 14357, \"AGE_UNDER5\": 2309, \"AGE_5_17\": 6198, \"AGE_18_21\": 2176, \"AGE_22_29\": 3470, \"AGE_30_39\": 3703, \"AGE_40_49\": 3824, \"AGE_50_64\": 3662, \"AGE_65_UP\": 3758, \"MED_AGE\": 31.000000, \"MED_AGE_M\": 29.200000, \"MED_AGE_F\": 33.300000, \"HOUSEHOLDS\": 9367, \"AVE_HH_SZ\": 3.070000, \"HSEHLD_1_M\": 635, \"HSEHLD_1_F\": 939, \"MARHH_CHD\": 2829, \"MARHH_NO_C\": 3104, \"MHH_CHILD\": 264, \"FHH_CHILD\": 604, \"FAMILIES\": 7344, \"AVE_FAM_SZ\": 3.400000, \"HSE_UNITS\": 9612, \"VACANT\": 245, \"OWNER_OCC\": 5521, \"RENTER_OCC\": 3846 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.235332377626847, 33.371785341705966 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fillmore\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"24092\", \"CAPITAL\": \"N\", \"AREALAND\": 2.778000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 13643, \"WHITE\": 7304, \"BLACK\": 44, \"AMERI_ES\": 192, \"ASIAN\": 132, \"HAWN_PI\": 18, \"OTHER\": 5394, \"MULT_RACE\": 559, \"HISPANIC\": 9090, \"MALES\": 6880, \"FEMALES\": 6763, \"AGE_UNDER5\": 1142, \"AGE_5_17\": 3271, \"AGE_18_21\": 844, \"AGE_22_29\": 1614, \"AGE_30_39\": 2057, \"AGE_40_49\": 1700, \"AGE_50_64\": 1599, \"AGE_65_UP\": 1416, \"MED_AGE\": 29.800000, \"MED_AGE_M\": 29.100000, \"MED_AGE_F\": 30.700000, \"HOUSEHOLDS\": 3762, \"AVE_HH_SZ\": 3.560000, \"HSEHLD_1_M\": 240, \"HSEHLD_1_F\": 365, \"MARHH_CHD\": 1338, \"MARHH_NO_C\": 1007, \"MHH_CHILD\": 119, \"FHH_CHILD\": 265, \"FAMILIES\": 3034, \"AVE_FAM_SZ\": 3.940000, \"HSE_UNITS\": 3852, \"VACANT\": 90, \"OWNER_OCC\": 2378, \"RENTER_OCC\": 1384 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.916071721955959, 34.401486911362582 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Florence-Graham\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"24477\", \"CAPITAL\": \"N\", \"AREALAND\": 3.583000, \"AREAWATER\": 0.000000, \"POP_CL\": 7, \"POP2000\": 60197, \"WHITE\": 14778, \"BLACK\": 7908, \"AMERI_ES\": 590, \"ASIAN\": 70, \"HAWN_PI\": 56, \"OTHER\": 33950, \"MULT_RACE\": 2845, \"HISPANIC\": 51712, \"MALES\": 30352, \"FEMALES\": 29845, \"AGE_UNDER5\": 6832, \"AGE_5_17\": 17228, \"AGE_18_21\": 4466, \"AGE_22_29\": 8632, \"AGE_30_39\": 8960, \"AGE_40_49\": 6483, \"AGE_50_64\": 4662, \"AGE_65_UP\": 2934, \"MED_AGE\": 23.500000, \"MED_AGE_M\": 23.000000, \"MED_AGE_F\": 23.900000, \"HOUSEHOLDS\": 13354, \"AVE_HH_SZ\": 4.510000, \"HSEHLD_1_M\": 680, \"HSEHLD_1_F\": 678, \"MARHH_CHD\": 5482, \"MARHH_NO_C\": 1759, \"MHH_CHILD\": 704, \"FHH_CHILD\": 1926, \"FAMILIES\": 11617, \"AVE_FAM_SZ\": 4.710000, \"HSE_UNITS\": 14191, \"VACANT\": 837, \"OWNER_OCC\": 5030, \"RENTER_OCC\": 8324 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.242634304485833, 33.969517700502358 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Florin\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"24498\", \"CAPITAL\": \"N\", \"AREALAND\": 5.648000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 27653, \"WHITE\": 11502, \"BLACK\": 5185, \"AMERI_ES\": 346, \"ASIAN\": 5407, \"HAWN_PI\": 241, \"OTHER\": 3033, \"MULT_RACE\": 1939, \"HISPANIC\": 5760, \"MALES\": 13283, \"FEMALES\": 14370, \"AGE_UNDER5\": 2290, \"AGE_5_17\": 6622, \"AGE_18_21\": 1501, \"AGE_22_29\": 2902, \"AGE_30_39\": 3697, \"AGE_40_49\": 3430, \"AGE_50_64\": 3540, \"AGE_65_UP\": 3671, \"MED_AGE\": 31.300000, \"MED_AGE_M\": 29.300000, \"MED_AGE_F\": 33.400000, \"HOUSEHOLDS\": 9165, \"AVE_HH_SZ\": 2.980000, \"HSEHLD_1_M\": 790, \"HSEHLD_1_F\": 1302, \"MARHH_CHD\": 1934, \"MARHH_NO_C\": 2148, \"MHH_CHILD\": 303, \"FHH_CHILD\": 1267, \"FAMILIES\": 6571, \"AVE_FAM_SZ\": 3.510000, \"HSE_UNITS\": 9606, \"VACANT\": 441, \"OWNER_OCC\": 5445, \"RENTER_OCC\": 3720 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.405296287504243, 38.490845847513377 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Folsom\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"24638\", \"CAPITAL\": \"N\", \"AREALAND\": 21.739000, \"AREAWATER\": 2.437000, \"POP_CL\": 7, \"POP2000\": 51884, \"WHITE\": 40415, \"BLACK\": 3109, \"AMERI_ES\": 302, \"ASIAN\": 3731, \"HAWN_PI\": 100, \"OTHER\": 2446, \"MULT_RACE\": 1781, \"HISPANIC\": 4914, \"MALES\": 28658, \"FEMALES\": 23226, \"AGE_UNDER5\": 3591, \"AGE_5_17\": 8966, \"AGE_18_21\": 1830, \"AGE_22_29\": 5397, \"AGE_30_39\": 11014, \"AGE_40_49\": 9687, \"AGE_50_64\": 6830, \"AGE_65_UP\": 4569, \"MED_AGE\": 35.900000, \"MED_AGE_M\": 35.400000, \"MED_AGE_F\": 36.600000, \"HOUSEHOLDS\": 17196, \"AVE_HH_SZ\": 2.610000, \"HSEHLD_1_M\": 1569, \"HSEHLD_1_F\": 2185, \"MARHH_CHD\": 5508, \"MARHH_NO_C\": 5101, \"MHH_CHILD\": 345, \"FHH_CHILD\": 874, \"FAMILIES\": 12527, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 17968, \"VACANT\": 772, \"OWNER_OCC\": 13124, \"RENTER_OCC\": 4072 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.152707149687657, 38.672752353396781 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fontana\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"24680\", \"CAPITAL\": \"N\", \"AREALAND\": 36.117000, \"AREAWATER\": 0.002000, \"POP_CL\": 8, \"POP2000\": 128929, \"WHITE\": 58006, \"BLACK\": 15255, \"AMERI_ES\": 1450, \"ASIAN\": 5618, \"HAWN_PI\": 427, \"OTHER\": 41185, \"MULT_RACE\": 6988, \"HISPANIC\": 74424, \"MALES\": 63982, \"FEMALES\": 64947, \"AGE_UNDER5\": 13313, \"AGE_5_17\": 35481, \"AGE_18_21\": 7883, \"AGE_22_29\": 15411, \"AGE_30_39\": 22286, \"AGE_40_49\": 17083, \"AGE_50_64\": 11359, \"AGE_65_UP\": 6113, \"MED_AGE\": 26.200000, \"MED_AGE_M\": 25.400000, \"MED_AGE_F\": 27.000000, \"HOUSEHOLDS\": 34014, \"AVE_HH_SZ\": 3.780000, \"HSEHLD_1_M\": 1785, \"HSEHLD_1_F\": 1923, \"MARHH_CHD\": 14658, \"MARHH_NO_C\": 6615, \"MHH_CHILD\": 1447, \"FHH_CHILD\": 3482, \"FAMILIES\": 29022, \"AVE_FAM_SZ\": 4.020000, \"HSE_UNITS\": 35908, \"VACANT\": 1894, \"OWNER_OCC\": 23162, \"RENTER_OCC\": 10852 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.457307886599523, 34.097851958133496 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Foothill Farms\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"24722\", \"CAPITAL\": \"N\", \"AREALAND\": 2.315000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 17426, \"WHITE\": 12162, \"BLACK\": 2155, \"AMERI_ES\": 231, \"ASIAN\": 757, \"HAWN_PI\": 93, \"OTHER\": 1024, \"MULT_RACE\": 1004, \"HISPANIC\": 2523, \"MALES\": 8430, \"FEMALES\": 8996, \"AGE_UNDER5\": 1547, \"AGE_5_17\": 3531, \"AGE_18_21\": 1167, \"AGE_22_29\": 2208, \"AGE_30_39\": 2645, \"AGE_40_49\": 2352, \"AGE_50_64\": 2242, \"AGE_65_UP\": 1734, \"MED_AGE\": 30.900000, \"MED_AGE_M\": 30.000000, \"MED_AGE_F\": 31.900000, \"HOUSEHOLDS\": 6563, \"AVE_HH_SZ\": 2.650000, \"HSEHLD_1_M\": 699, \"HSEHLD_1_F\": 892, \"MARHH_CHD\": 1285, \"MARHH_NO_C\": 1481, \"MHH_CHILD\": 288, \"FHH_CHILD\": 810, \"FAMILIES\": 4460, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 6830, \"VACANT\": 267, \"OWNER_OCC\": 3457, \"RENTER_OCC\": 3106 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.342293289483621, 38.682411334155447 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Foothill Ranch\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"24730\", \"CAPITAL\": \"N\", \"AREALAND\": 2.824000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10899, \"WHITE\": 8107, \"BLACK\": 209, \"AMERI_ES\": 32, \"ASIAN\": 1631, \"HAWN_PI\": 31, \"OTHER\": 368, \"MULT_RACE\": 521, \"HISPANIC\": 1183, \"MALES\": 5437, \"FEMALES\": 5462, \"AGE_UNDER5\": 1389, \"AGE_5_17\": 2049, \"AGE_18_21\": 232, \"AGE_22_29\": 1023, \"AGE_30_39\": 3238, \"AGE_40_49\": 1805, \"AGE_50_64\": 914, \"AGE_65_UP\": 249, \"MED_AGE\": 32.500000, \"MED_AGE_M\": 32.900000, \"MED_AGE_F\": 32.200000, \"HOUSEHOLDS\": 3816, \"AVE_HH_SZ\": 2.860000, \"HSEHLD_1_M\": 329, \"HSEHLD_1_F\": 294, \"MARHH_CHD\": 1684, \"MARHH_NO_C\": 956, \"MHH_CHILD\": 65, \"FHH_CHILD\": 157, \"FAMILIES\": 2977, \"AVE_FAM_SZ\": 3.270000, \"HSE_UNITS\": 3873, \"VACANT\": 57, \"OWNER_OCC\": 2922, \"RENTER_OCC\": 894 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.66331412662916, 33.688640699626106 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fortuna\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"25296\", \"CAPITAL\": \"N\", \"AREALAND\": 4.815000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10497, \"WHITE\": 9278, \"BLACK\": 47, \"AMERI_ES\": 305, \"ASIAN\": 102, \"HAWN_PI\": 18, \"OTHER\": 415, \"MULT_RACE\": 332, \"HISPANIC\": 1097, \"MALES\": 5013, \"FEMALES\": 5484, \"AGE_UNDER5\": 723, \"AGE_5_17\": 2011, \"AGE_18_21\": 597, \"AGE_22_29\": 890, \"AGE_30_39\": 1347, \"AGE_40_49\": 1572, \"AGE_50_64\": 1543, \"AGE_65_UP\": 1814, \"MED_AGE\": 37.900000, \"MED_AGE_M\": 35.500000, \"MED_AGE_F\": 40.000000, \"HOUSEHOLDS\": 4185, \"AVE_HH_SZ\": 2.450000, \"HSEHLD_1_M\": 425, \"HSEHLD_1_F\": 750, \"MARHH_CHD\": 875, \"MARHH_NO_C\": 1200, \"MHH_CHILD\": 116, \"FHH_CHILD\": 344, \"FAMILIES\": 2777, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 4414, \"VACANT\": 229, \"OWNER_OCC\": 2606, \"RENTER_OCC\": 1579 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -124.129736568018075, 40.588835887558425 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Foster City\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"25338\", \"CAPITAL\": \"N\", \"AREALAND\": 3.758000, \"AREAWATER\": 16.174000, \"POP_CL\": 6, \"POP2000\": 28803, \"WHITE\": 17087, \"BLACK\": 602, \"AMERI_ES\": 34, \"ASIAN\": 9368, \"HAWN_PI\": 167, \"OTHER\": 355, \"MULT_RACE\": 1190, \"HISPANIC\": 1531, \"MALES\": 14165, \"FEMALES\": 14638, \"AGE_UNDER5\": 1685, \"AGE_5_17\": 4413, \"AGE_18_21\": 821, \"AGE_22_29\": 3173, \"AGE_30_39\": 5358, \"AGE_40_49\": 4788, \"AGE_50_64\": 5663, \"AGE_65_UP\": 2902, \"MED_AGE\": 38.100000, \"MED_AGE_M\": 37.100000, \"MED_AGE_F\": 39.100000, \"HOUSEHOLDS\": 11613, \"AVE_HH_SZ\": 2.470000, \"HSEHLD_1_M\": 1259, \"HSEHLD_1_F\": 1480, \"MARHH_CHD\": 2967, \"MARHH_NO_C\": 3732, \"MHH_CHILD\": 137, \"FHH_CHILD\": 443, \"FAMILIES\": 7928, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 12009, \"VACANT\": 396, \"OWNER_OCC\": 7145, \"RENTER_OCC\": 4468 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.259229350373985, 37.552224808588939 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fountain Valley\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"25380\", \"CAPITAL\": \"N\", \"AREALAND\": 8.914000, \"AREAWATER\": 0.011000, \"POP_CL\": 7, \"POP2000\": 54978, \"WHITE\": 35196, \"BLACK\": 611, \"AMERI_ES\": 252, \"ASIAN\": 14165, \"HAWN_PI\": 220, \"OTHER\": 2172, \"MULT_RACE\": 2362, \"HISPANIC\": 5870, \"MALES\": 26872, \"FEMALES\": 28106, \"AGE_UNDER5\": 3278, \"AGE_5_17\": 9627, \"AGE_18_21\": 2564, \"AGE_22_29\": 5129, \"AGE_30_39\": 8715, \"AGE_40_49\": 8427, \"AGE_50_64\": 11002, \"AGE_65_UP\": 6236, \"MED_AGE\": 38.100000, \"MED_AGE_M\": 37.200000, \"MED_AGE_F\": 39.000000, \"HOUSEHOLDS\": 18162, \"AVE_HH_SZ\": 3.000000, \"HSEHLD_1_M\": 1219, \"HSEHLD_1_F\": 1693, \"MARHH_CHD\": 5152, \"MARHH_NO_C\": 6359, \"MHH_CHILD\": 285, \"FHH_CHILD\": 798, \"FAMILIES\": 14227, \"AVE_FAM_SZ\": 3.350000, \"HSE_UNITS\": 18473, \"VACANT\": 311, \"OWNER_OCC\": 13569, \"RENTER_OCC\": 4593 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.955204579290822, 33.708751487824408 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fremont\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"26000\", \"CAPITAL\": \"N\", \"AREALAND\": 76.692000, \"AREAWATER\": 10.426000, \"POP_CL\": 8, \"POP2000\": 203413, \"WHITE\": 96968, \"BLACK\": 6310, \"AMERI_ES\": 1048, \"ASIAN\": 75165, \"HAWN_PI\": 819, \"OTHER\": 11230, \"MULT_RACE\": 11873, \"HISPANIC\": 27409, \"MALES\": 102273, \"FEMALES\": 101140, \"AGE_UNDER5\": 15137, \"AGE_5_17\": 37315, \"AGE_18_21\": 8608, \"AGE_22_29\": 23585, \"AGE_30_39\": 39386, \"AGE_40_49\": 34295, \"AGE_50_64\": 28120, \"AGE_65_UP\": 16967, \"MED_AGE\": 34.500000, \"MED_AGE_M\": 33.900000, \"MED_AGE_F\": 35.200000, \"HOUSEHOLDS\": 68237, \"AVE_HH_SZ\": 2.960000, \"HSEHLD_1_M\": 5613, \"HSEHLD_1_F\": 5674, \"MARHH_CHD\": 22949, \"MARHH_NO_C\": 19808, \"MHH_CHILD\": 1284, \"FHH_CHILD\": 3173, \"FAMILIES\": 52228, \"AVE_FAM_SZ\": 3.340000, \"HSE_UNITS\": 69452, \"VACANT\": 1215, \"OWNER_OCC\": 44033, \"RENTER_OCC\": 24204 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.976324716706358, 37.543783508117507 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fresno\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"27000\", \"CAPITAL\": \"N\", \"AREALAND\": 104.363000, \"AREAWATER\": 0.441000, \"POP_CL\": 8, \"POP2000\": 427652, \"WHITE\": 214556, \"BLACK\": 35763, \"AMERI_ES\": 6763, \"ASIAN\": 48028, \"HAWN_PI\": 583, \"OTHER\": 99898, \"MULT_RACE\": 22061, \"HISPANIC\": 170520, \"MALES\": 210107, \"FEMALES\": 217545, \"AGE_UNDER5\": 38996, \"AGE_5_17\": 101795, \"AGE_18_21\": 29757, \"AGE_22_29\": 53169, \"AGE_30_39\": 61956, \"AGE_40_49\": 54367, \"AGE_50_64\": 48038, \"AGE_65_UP\": 39574, \"MED_AGE\": 28.500000, \"MED_AGE_M\": 27.400000, \"MED_AGE_F\": 29.600000, \"HOUSEHOLDS\": 140079, \"AVE_HH_SZ\": 2.990000, \"HSEHLD_1_M\": 14184, \"HSEHLD_1_F\": 18462, \"MARHH_CHD\": 35540, \"MARHH_NO_C\": 29082, \"MHH_CHILD\": 4904, \"FHH_CHILD\": 16150, \"FAMILIES\": 97923, \"AVE_FAM_SZ\": 3.570000, \"HSE_UNITS\": 149025, \"VACANT\": 8946, \"OWNER_OCC\": 70884, \"RENTER_OCC\": 69195 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -119.789365506885119, 36.781884256472537 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fullerton\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"28000\", \"CAPITAL\": \"N\", \"AREALAND\": 22.199000, \"AREAWATER\": 0.030000, \"POP_CL\": 8, \"POP2000\": 126003, \"WHITE\": 77977, \"BLACK\": 2861, \"AMERI_ES\": 865, \"ASIAN\": 20259, \"HAWN_PI\": 296, \"OTHER\": 18666, \"MULT_RACE\": 5079, \"HISPANIC\": 38014, \"MALES\": 62276, \"FEMALES\": 63727, \"AGE_UNDER5\": 8772, \"AGE_5_17\": 22911, \"AGE_18_21\": 7995, \"AGE_22_29\": 17223, \"AGE_30_39\": 20081, \"AGE_40_49\": 17918, \"AGE_50_64\": 16829, \"AGE_65_UP\": 14274, \"MED_AGE\": 32.900000, \"MED_AGE_M\": 32.100000, \"MED_AGE_F\": 33.800000, \"HOUSEHOLDS\": 43609, \"AVE_HH_SZ\": 2.830000, \"HSEHLD_1_M\": 4614, \"HSEHLD_1_F\": 5615, \"MARHH_CHD\": 10931, \"MARHH_NO_C\": 11644, \"MHH_CHILD\": 963, \"FHH_CHILD\": 2486, \"FAMILIES\": 29625, \"AVE_FAM_SZ\": 3.370000, \"HSE_UNITS\": 44771, \"VACANT\": 1162, \"OWNER_OCC\": 23501, \"RENTER_OCC\": 20108 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.927657786186671, 33.880046790683899 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Galt\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"28112\", \"CAPITAL\": \"N\", \"AREALAND\": 5.871000, \"AREAWATER\": 0.011000, \"POP_CL\": 6, \"POP2000\": 19472, \"WHITE\": 13726, \"BLACK\": 225, \"AMERI_ES\": 204, \"ASIAN\": 553, \"HAWN_PI\": 31, \"OTHER\": 3616, \"MULT_RACE\": 1117, \"HISPANIC\": 6465, \"MALES\": 9636, \"FEMALES\": 9836, \"AGE_UNDER5\": 1737, \"AGE_5_17\": 4973, \"AGE_18_21\": 967, \"AGE_22_29\": 1852, \"AGE_30_39\": 3482, \"AGE_40_49\": 2725, \"AGE_50_64\": 2083, \"AGE_65_UP\": 1653, \"MED_AGE\": 30.600000, \"MED_AGE_M\": 30.000000, \"MED_AGE_F\": 31.200000, \"HOUSEHOLDS\": 5974, \"AVE_HH_SZ\": 3.230000, \"HSEHLD_1_M\": 331, \"HSEHLD_1_F\": 538, \"MARHH_CHD\": 2348, \"MARHH_NO_C\": 1543, \"MHH_CHILD\": 181, \"FHH_CHILD\": 441, \"FAMILIES\": 4885, \"AVE_FAM_SZ\": 3.570000, \"HSE_UNITS\": 6211, \"VACANT\": 237, \"OWNER_OCC\": 4752, \"RENTER_OCC\": 1222 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.297842679075927, 38.261497227873164 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Gardena\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"28168\", \"CAPITAL\": \"N\", \"AREALAND\": 5.820000, \"AREAWATER\": 0.000000, \"POP_CL\": 7, \"POP2000\": 57746, \"WHITE\": 13755, \"BLACK\": 15010, \"AMERI_ES\": 367, \"ASIAN\": 15489, \"HAWN_PI\": 424, \"OTHER\": 9784, \"MULT_RACE\": 2917, \"HISPANIC\": 18372, \"MALES\": 28143, \"FEMALES\": 29603, \"AGE_UNDER5\": 4348, \"AGE_5_17\": 10566, \"AGE_18_21\": 2786, \"AGE_22_29\": 6882, \"AGE_30_39\": 9606, \"AGE_40_49\": 7975, \"AGE_50_64\": 8437, \"AGE_65_UP\": 7146, \"MED_AGE\": 34.400000, \"MED_AGE_M\": 33.200000, \"MED_AGE_F\": 35.500000, \"HOUSEHOLDS\": 20324, \"AVE_HH_SZ\": 2.800000, \"HSEHLD_1_M\": 2494, \"HSEHLD_1_F\": 2697, \"MARHH_CHD\": 4312, \"MARHH_NO_C\": 4726, \"MHH_CHILD\": 514, \"FHH_CHILD\": 1983, \"FAMILIES\": 14031, \"AVE_FAM_SZ\": 3.380000, \"HSE_UNITS\": 21041, \"VACANT\": 717, \"OWNER_OCC\": 9617, \"RENTER_OCC\": 10707 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.306568614646224, 33.893772672956338 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Garden Grove\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"29000\", \"CAPITAL\": \"N\", \"AREALAND\": 18.024000, \"AREAWATER\": 0.018000, \"POP_CL\": 8, \"POP2000\": 165196, \"WHITE\": 77443, \"BLACK\": 2168, \"AMERI_ES\": 1260, \"ASIAN\": 51078, \"HAWN_PI\": 1081, \"OTHER\": 25362, \"MULT_RACE\": 6804, \"HISPANIC\": 53608, \"MALES\": 82688, \"FEMALES\": 82508, \"AGE_UNDER5\": 13109, \"AGE_5_17\": 33909, \"AGE_18_21\": 8715, \"AGE_22_29\": 20113, \"AGE_30_39\": 28784, \"AGE_40_49\": 23368, \"AGE_50_64\": 21433, \"AGE_65_UP\": 15765, \"MED_AGE\": 32.300000, \"MED_AGE_M\": 31.700000, \"MED_AGE_F\": 33.000000, \"HOUSEHOLDS\": 45791, \"AVE_HH_SZ\": 3.560000, \"HSEHLD_1_M\": 3011, \"HSEHLD_1_F\": 3966, \"MARHH_CHD\": 15490, \"MARHH_NO_C\": 11864, \"MHH_CHILD\": 1193, \"FHH_CHILD\": 2803, \"FAMILIES\": 36460, \"AVE_FAM_SZ\": 3.900000, \"HSE_UNITS\": 46703, \"VACANT\": 912, \"OWNER_OCC\": 27286, \"RENTER_OCC\": 18505 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.959169489378809, 33.778900130471783 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Gilroy\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"29504\", \"CAPITAL\": \"N\", \"AREALAND\": 15.855000, \"AREAWATER\": 0.011000, \"POP_CL\": 6, \"POP2000\": 41464, \"WHITE\": 24426, \"BLACK\": 745, \"AMERI_ES\": 661, \"ASIAN\": 1810, \"HAWN_PI\": 105, \"OTHER\": 11499, \"MULT_RACE\": 2218, \"HISPANIC\": 22298, \"MALES\": 20656, \"FEMALES\": 20808, \"AGE_UNDER5\": 3903, \"AGE_5_17\": 9598, \"AGE_18_21\": 2423, \"AGE_22_29\": 4896, \"AGE_30_39\": 7183, \"AGE_40_49\": 5849, \"AGE_50_64\": 4797, \"AGE_65_UP\": 2815, \"MED_AGE\": 29.900000, \"MED_AGE_M\": 29.200000, \"MED_AGE_F\": 30.400000, \"HOUSEHOLDS\": 11869, \"AVE_HH_SZ\": 3.460000, \"HSEHLD_1_M\": 727, \"HSEHLD_1_F\": 975, \"MARHH_CHD\": 4256, \"MARHH_NO_C\": 2966, \"MHH_CHILD\": 378, \"FHH_CHILD\": 1026, \"FAMILIES\": 9590, \"AVE_FAM_SZ\": 3.740000, \"HSE_UNITS\": 12152, \"VACANT\": 283, \"OWNER_OCC\": 7264, \"RENTER_OCC\": 4605 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.57466974620651, 37.012752326437798 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Glen Avon\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"29644\", \"CAPITAL\": \"N\", \"AREALAND\": 7.382000, \"AREAWATER\": 0.026000, \"POP_CL\": 6, \"POP2000\": 14853, \"WHITE\": 9029, \"BLACK\": 566, \"AMERI_ES\": 228, \"ASIAN\": 332, \"HAWN_PI\": 29, \"OTHER\": 4025, \"MULT_RACE\": 644, \"HISPANIC\": 7006, \"MALES\": 7402, \"FEMALES\": 7451, \"AGE_UNDER5\": 1095, \"AGE_5_17\": 3480, \"AGE_18_21\": 851, \"AGE_22_29\": 1315, \"AGE_30_39\": 2178, \"AGE_40_49\": 2045, \"AGE_50_64\": 2150, \"AGE_65_UP\": 1739, \"MED_AGE\": 33.300000, \"MED_AGE_M\": 32.100000, \"MED_AGE_F\": 34.500000, \"HOUSEHOLDS\": 4740, \"AVE_HH_SZ\": 3.110000, \"HSEHLD_1_M\": 530, \"HSEHLD_1_F\": 749, \"MARHH_CHD\": 1301, \"MARHH_NO_C\": 1146, \"MHH_CHILD\": 148, \"FHH_CHILD\": 272, \"FAMILIES\": 3242, \"AVE_FAM_SZ\": 3.790000, \"HSE_UNITS\": 4936, \"VACANT\": 196, \"OWNER_OCC\": 2716, \"RENTER_OCC\": 2024 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.4909333009779, 34.017422286299023 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Glendale\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"30000\", \"CAPITAL\": \"N\", \"AREALAND\": 30.645000, \"AREAWATER\": 0.025000, \"POP_CL\": 8, \"POP2000\": 194973, \"WHITE\": 123960, \"BLACK\": 2468, \"AMERI_ES\": 629, \"ASIAN\": 31424, \"HAWN_PI\": 163, \"OTHER\": 16715, \"MULT_RACE\": 19614, \"HISPANIC\": 38452, \"MALES\": 93074, \"FEMALES\": 101899, \"AGE_UNDER5\": 11088, \"AGE_5_17\": 32538, \"AGE_18_21\": 9220, \"AGE_22_29\": 20740, \"AGE_30_39\": 32533, \"AGE_40_49\": 31567, \"AGE_50_64\": 30173, \"AGE_65_UP\": 27114, \"MED_AGE\": 37.500000, \"MED_AGE_M\": 36.200000, \"MED_AGE_F\": 38.800000, \"HOUSEHOLDS\": 71805, \"AVE_HH_SZ\": 2.680000, \"HSEHLD_1_M\": 7522, \"HSEHLD_1_F\": 10918, \"MARHH_CHD\": 18877, \"MARHH_NO_C\": 18689, \"MHH_CHILD\": 1052, \"FHH_CHILD\": 3726, \"FAMILIES\": 49636, \"AVE_FAM_SZ\": 3.270000, \"HSE_UNITS\": 73713, \"VACANT\": 1908, \"OWNER_OCC\": 27557, \"RENTER_OCC\": 44248 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.248813763688645, 34.17109442475892 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Glendora\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"30014\", \"CAPITAL\": \"N\", \"AREALAND\": 19.142000, \"AREAWATER\": 0.129000, \"POP_CL\": 6, \"POP2000\": 49415, \"WHITE\": 39681, \"BLACK\": 740, \"AMERI_ES\": 321, \"ASIAN\": 3064, \"HAWN_PI\": 38, \"OTHER\": 3579, \"MULT_RACE\": 1992, \"HISPANIC\": 10740, \"MALES\": 23844, \"FEMALES\": 25571, \"AGE_UNDER5\": 3103, \"AGE_5_17\": 10546, \"AGE_18_21\": 2252, \"AGE_22_29\": 4097, \"AGE_30_39\": 7321, \"AGE_40_49\": 8212, \"AGE_50_64\": 7701, \"AGE_65_UP\": 6183, \"MED_AGE\": 36.900000, \"MED_AGE_M\": 35.700000, \"MED_AGE_F\": 37.900000, \"HOUSEHOLDS\": 16819, \"AVE_HH_SZ\": 2.880000, \"HSEHLD_1_M\": 1240, \"HSEHLD_1_F\": 1966, \"MARHH_CHD\": 5068, \"MARHH_NO_C\": 5038, \"MHH_CHILD\": 363, \"FHH_CHILD\": 1056, \"FAMILIES\": 12861, \"AVE_FAM_SZ\": 3.300000, \"HSE_UNITS\": 17145, \"VACANT\": 326, \"OWNER_OCC\": 12376, \"RENTER_OCC\": 4443 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.853049802122115, 34.131086707981851 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Goleta\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"30378\", \"CAPITAL\": \"N\", \"AREALAND\": 26.261000, \"AREAWATER\": 0.099000, \"POP_CL\": 7, \"POP2000\": 55204, \"WHITE\": 43397, \"BLACK\": 703, \"AMERI_ES\": 451, \"ASIAN\": 3548, \"HAWN_PI\": 60, \"OTHER\": 5098, \"MULT_RACE\": 1947, \"HISPANIC\": 12326, \"MALES\": 27380, \"FEMALES\": 27824, \"AGE_UNDER5\": 3121, \"AGE_5_17\": 9629, \"AGE_18_21\": 2890, \"AGE_22_29\": 5698, \"AGE_30_39\": 7816, \"AGE_40_49\": 8921, \"AGE_50_64\": 9087, \"AGE_65_UP\": 8042, \"MED_AGE\": 38.200000, \"MED_AGE_M\": 37.000000, \"MED_AGE_F\": 39.400000, \"HOUSEHOLDS\": 19954, \"AVE_HH_SZ\": 2.720000, \"HSEHLD_1_M\": 1827, \"HSEHLD_1_F\": 2662, \"MARHH_CHD\": 4869, \"MARHH_NO_C\": 6120, \"MHH_CHILD\": 365, \"FHH_CHILD\": 863, \"FAMILIES\": 13467, \"AVE_FAM_SZ\": 3.180000, \"HSE_UNITS\": 20442, \"VACANT\": 488, \"OWNER_OCC\": 13842, \"RENTER_OCC\": 6112 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -119.811230088175492, 34.440803620267985 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Grand Terrace\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"30658\", \"CAPITAL\": \"N\", \"AREALAND\": 3.468000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11626, \"WHITE\": 8575, \"BLACK\": 537, \"AMERI_ES\": 84, \"ASIAN\": 653, \"HAWN_PI\": 36, \"OTHER\": 1133, \"MULT_RACE\": 608, \"HISPANIC\": 2954, \"MALES\": 5479, \"FEMALES\": 6147, \"AGE_UNDER5\": 765, \"AGE_5_17\": 2295, \"AGE_18_21\": 649, \"AGE_22_29\": 1235, \"AGE_30_39\": 1736, \"AGE_40_49\": 1953, \"AGE_50_64\": 1748, \"AGE_65_UP\": 1245, \"MED_AGE\": 35.300000, \"MED_AGE_M\": 34.400000, \"MED_AGE_F\": 36.100000, \"HOUSEHOLDS\": 4221, \"AVE_HH_SZ\": 2.700000, \"HSEHLD_1_M\": 383, \"HSEHLD_1_F\": 532, \"MARHH_CHD\": 1057, \"MARHH_NO_C\": 1225, \"MHH_CHILD\": 107, \"FHH_CHILD\": 315, \"FAMILIES\": 3052, \"AVE_FAM_SZ\": 3.150000, \"HSE_UNITS\": 4458, \"VACANT\": 237, \"OWNER_OCC\": 2745, \"RENTER_OCC\": 1476 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.315824734713331, 34.031119793730873 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Granite Bay\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"30693\", \"CAPITAL\": \"N\", \"AREALAND\": 21.584000, \"AREAWATER\": 0.074000, \"POP_CL\": 6, \"POP2000\": 19388, \"WHITE\": 17720, \"BLACK\": 131, \"AMERI_ES\": 113, \"ASIAN\": 684, \"HAWN_PI\": 16, \"OTHER\": 211, \"MULT_RACE\": 513, \"HISPANIC\": 910, \"MALES\": 9704, \"FEMALES\": 9684, \"AGE_UNDER5\": 1156, \"AGE_5_17\": 4804, \"AGE_18_21\": 656, \"AGE_22_29\": 650, \"AGE_30_39\": 2412, \"AGE_40_49\": 3970, \"AGE_50_64\": 3954, \"AGE_65_UP\": 1786, \"MED_AGE\": 40.000000, \"MED_AGE_M\": 40.100000, \"MED_AGE_F\": 40.000000, \"HOUSEHOLDS\": 6474, \"AVE_HH_SZ\": 2.990000, \"HSEHLD_1_M\": 320, \"HSEHLD_1_F\": 369, \"MARHH_CHD\": 2561, \"MARHH_NO_C\": 2425, \"MHH_CHILD\": 114, \"FHH_CHILD\": 242, \"FAMILIES\": 5585, \"AVE_FAM_SZ\": 3.220000, \"HSE_UNITS\": 6626, \"VACANT\": 152, \"OWNER_OCC\": 5991, \"RENTER_OCC\": 483 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.174597466352594, 38.749136307233577 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Grass Valley\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"30798\", \"CAPITAL\": \"N\", \"AREALAND\": 4.106000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10922, \"WHITE\": 10038, \"BLACK\": 29, \"AMERI_ES\": 146, \"ASIAN\": 115, \"HAWN_PI\": 8, \"OTHER\": 181, \"MULT_RACE\": 405, \"HISPANIC\": 717, \"MALES\": 4915, \"FEMALES\": 6007, \"AGE_UNDER5\": 700, \"AGE_5_17\": 1847, \"AGE_18_21\": 590, \"AGE_22_29\": 1064, \"AGE_30_39\": 1356, \"AGE_40_49\": 1506, \"AGE_50_64\": 1456, \"AGE_65_UP\": 2403, \"MED_AGE\": 39.300000, \"MED_AGE_M\": 34.600000, \"MED_AGE_F\": 43.000000, \"HOUSEHOLDS\": 5016, \"AVE_HH_SZ\": 2.130000, \"HSEHLD_1_M\": 656, \"HSEHLD_1_F\": 1305, \"MARHH_CHD\": 611, \"MARHH_NO_C\": 1016, \"MHH_CHILD\": 163, \"FHH_CHILD\": 557, \"FAMILIES\": 2677, \"AVE_FAM_SZ\": 2.800000, \"HSE_UNITS\": 5266, \"VACANT\": 250, \"OWNER_OCC\": 2209, \"RENTER_OCC\": 2807 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.053305051281299, 39.219824933521586 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Greenfield\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"30994\", \"CAPITAL\": \"N\", \"AREALAND\": 1.697000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12583, \"WHITE\": 4989, \"BLACK\": 148, \"AMERI_ES\": 150, \"ASIAN\": 97, \"HAWN_PI\": 19, \"OTHER\": 6537, \"MULT_RACE\": 643, \"HISPANIC\": 11055, \"MALES\": 6551, \"FEMALES\": 6032, \"AGE_UNDER5\": 1316, \"AGE_5_17\": 3507, \"AGE_18_21\": 987, \"AGE_22_29\": 1819, \"AGE_30_39\": 1951, \"AGE_40_49\": 1449, \"AGE_50_64\": 925, \"AGE_65_UP\": 629, \"MED_AGE\": 24.100000, \"MED_AGE_M\": 24.100000, \"MED_AGE_F\": 24.000000, \"HOUSEHOLDS\": 2643, \"AVE_HH_SZ\": 4.750000, \"HSEHLD_1_M\": 86, \"HSEHLD_1_F\": 121, \"MARHH_CHD\": 1413, \"MARHH_NO_C\": 449, \"MHH_CHILD\": 91, \"FHH_CHILD\": 223, \"FAMILIES\": 2361, \"AVE_FAM_SZ\": 4.830000, \"HSE_UNITS\": 2726, \"VACANT\": 83, \"OWNER_OCC\": 1569, \"RENTER_OCC\": 1074 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.240131109088082, 36.323757597766907 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Grover Beach\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"31393\", \"CAPITAL\": \"N\", \"AREALAND\": 2.318000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 13067, \"WHITE\": 10421, \"BLACK\": 135, \"AMERI_ES\": 221, \"ASIAN\": 490, \"HAWN_PI\": 39, \"OTHER\": 1206, \"MULT_RACE\": 555, \"HISPANIC\": 2941, \"MALES\": 6334, \"FEMALES\": 6733, \"AGE_UNDER5\": 910, \"AGE_5_17\": 2436, \"AGE_18_21\": 657, \"AGE_22_29\": 1473, \"AGE_30_39\": 2110, \"AGE_40_49\": 2117, \"AGE_50_64\": 1859, \"AGE_65_UP\": 1505, \"MED_AGE\": 35.200000, \"MED_AGE_M\": 33.600000, \"MED_AGE_F\": 36.700000, \"HOUSEHOLDS\": 5023, \"AVE_HH_SZ\": 2.580000, \"HSEHLD_1_M\": 518, \"HSEHLD_1_F\": 718, \"MARHH_CHD\": 1076, \"MARHH_NO_C\": 1281, \"MHH_CHILD\": 151, \"FHH_CHILD\": 422, \"FAMILIES\": 3306, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 5382, \"VACANT\": 359, \"OWNER_OCC\": 2545, \"RENTER_OCC\": 2478 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -120.616158373358061, 35.121380522771886 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hacienda Heights\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"31596\", \"CAPITAL\": \"N\", \"AREALAND\": 11.378000, \"AREAWATER\": 0.008000, \"POP_CL\": 7, \"POP2000\": 53122, \"WHITE\": 21797, \"BLACK\": 825, \"AMERI_ES\": 380, \"ASIAN\": 19174, \"HAWN_PI\": 64, \"OTHER\": 8819, \"MULT_RACE\": 2063, \"HISPANIC\": 20320, \"MALES\": 26009, \"FEMALES\": 27113, \"AGE_UNDER5\": 3006, \"AGE_5_17\": 10428, \"AGE_18_21\": 2916, \"AGE_22_29\": 5297, \"AGE_30_39\": 7363, \"AGE_40_49\": 8185, \"AGE_50_64\": 9608, \"AGE_65_UP\": 6319, \"MED_AGE\": 36.900000, \"MED_AGE_M\": 35.600000, \"MED_AGE_F\": 38.100000, \"HOUSEHOLDS\": 15993, \"AVE_HH_SZ\": 3.320000, \"HSEHLD_1_M\": 777, \"HSEHLD_1_F\": 1233, \"MARHH_CHD\": 4866, \"MARHH_NO_C\": 5659, \"MHH_CHILD\": 293, \"FHH_CHILD\": 778, \"FAMILIES\": 13420, \"AVE_FAM_SZ\": 3.580000, \"HSE_UNITS\": 16358, \"VACANT\": 365, \"OWNER_OCC\": 12707, \"RENTER_OCC\": 3286 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.968315364525296, 34.0007139580676 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Half Moon Bay\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"31708\", \"CAPITAL\": \"N\", \"AREALAND\": 6.472000, \"AREAWATER\": 0.023000, \"POP_CL\": 6, \"POP2000\": 11842, \"WHITE\": 9150, \"BLACK\": 463, \"AMERI_ES\": 52, \"ASIAN\": 402, \"HAWN_PI\": 14, \"OTHER\": 1307, \"MULT_RACE\": 454, \"HISPANIC\": 2751, \"MALES\": 6277, \"FEMALES\": 5565, \"AGE_UNDER5\": 699, \"AGE_5_17\": 1928, \"AGE_18_21\": 544, \"AGE_22_29\": 1133, \"AGE_30_39\": 1904, \"AGE_40_49\": 2220, \"AGE_50_64\": 2277, \"AGE_65_UP\": 1137, \"MED_AGE\": 38.700000, \"MED_AGE_M\": 37.000000, \"MED_AGE_F\": 40.600000, \"HOUSEHOLDS\": 4004, \"AVE_HH_SZ\": 2.750000, \"HSEHLD_1_M\": 331, \"HSEHLD_1_F\": 592, \"MARHH_CHD\": 1038, \"MARHH_NO_C\": 1297, \"MHH_CHILD\": 69, \"FHH_CHILD\": 132, \"FAMILIES\": 2773, \"AVE_FAM_SZ\": 3.200000, \"HSE_UNITS\": 4114, \"VACANT\": 110, \"OWNER_OCC\": 3021, \"RENTER_OCC\": 983 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.429292168681499, 37.459841553703697 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hanford\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"31960\", \"CAPITAL\": \"N\", \"AREALAND\": 13.091000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 41686, \"WHITE\": 26704, \"BLACK\": 2090, \"AMERI_ES\": 569, \"ASIAN\": 1190, \"HAWN_PI\": 74, \"OTHER\": 8669, \"MULT_RACE\": 2390, \"HISPANIC\": 16116, \"MALES\": 20411, \"FEMALES\": 21275, \"AGE_UNDER5\": 3636, \"AGE_5_17\": 9545, \"AGE_18_21\": 2387, \"AGE_22_29\": 4693, \"AGE_30_39\": 6385, \"AGE_40_49\": 5556, \"AGE_50_64\": 5183, \"AGE_65_UP\": 4301, \"MED_AGE\": 30.900000, \"MED_AGE_M\": 29.600000, \"MED_AGE_F\": 32.300000, \"HOUSEHOLDS\": 13931, \"AVE_HH_SZ\": 2.930000, \"HSEHLD_1_M\": 1135, \"HSEHLD_1_F\": 1729, \"MARHH_CHD\": 3968, \"MARHH_NO_C\": 3534, \"MHH_CHILD\": 455, \"FHH_CHILD\": 1463, \"FAMILIES\": 10383, \"AVE_FAM_SZ\": 3.390000, \"HSE_UNITS\": 14721, \"VACANT\": 790, \"OWNER_OCC\": 8213, \"RENTER_OCC\": 5718 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -119.644362599358459, 36.333583460784659 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hawaiian Gardens\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"32506\", \"CAPITAL\": \"N\", \"AREALAND\": 0.960000, \"AREAWATER\": 0.024000, \"POP_CL\": 6, \"POP2000\": 14779, \"WHITE\": 5651, \"BLACK\": 657, \"AMERI_ES\": 189, \"ASIAN\": 1300, \"HAWN_PI\": 109, \"OTHER\": 6156, \"MULT_RACE\": 717, \"HISPANIC\": 10869, \"MALES\": 7566, \"FEMALES\": 7213, \"AGE_UNDER5\": 1521, \"AGE_5_17\": 3915, \"AGE_18_21\": 1090, \"AGE_22_29\": 2061, \"AGE_30_39\": 2236, \"AGE_40_49\": 1663, \"AGE_50_64\": 1379, \"AGE_65_UP\": 914, \"MED_AGE\": 25.400000, \"MED_AGE_M\": 24.600000, \"MED_AGE_F\": 26.400000, \"HOUSEHOLDS\": 3507, \"AVE_HH_SZ\": 4.210000, \"HSEHLD_1_M\": 196, \"HSEHLD_1_F\": 302, \"MARHH_CHD\": 1289, \"MARHH_NO_C\": 599, \"MHH_CHILD\": 145, \"FHH_CHILD\": 404, \"FAMILIES\": 2867, \"AVE_FAM_SZ\": 4.520000, \"HSE_UNITS\": 3624, \"VACANT\": 117, \"OWNER_OCC\": 1580, \"RENTER_OCC\": 1927 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.07249306187181, 33.828706505177522 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hawthorne\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"32548\", \"CAPITAL\": \"N\", \"AREALAND\": 6.060000, \"AREAWATER\": 0.000000, \"POP_CL\": 7, \"POP2000\": 84112, \"WHITE\": 24618, \"BLACK\": 27775, \"AMERI_ES\": 629, \"ASIAN\": 5660, \"HAWN_PI\": 721, \"OTHER\": 20320, \"MULT_RACE\": 4389, \"HISPANIC\": 37227, \"MALES\": 40448, \"FEMALES\": 43664, \"AGE_UNDER5\": 8469, \"AGE_5_17\": 18158, \"AGE_18_21\": 5048, \"AGE_22_29\": 12751, \"AGE_30_39\": 15198, \"AGE_40_49\": 10606, \"AGE_50_64\": 8718, \"AGE_65_UP\": 5164, \"MED_AGE\": 28.700000, \"MED_AGE_M\": 27.800000, \"MED_AGE_F\": 29.400000, \"HOUSEHOLDS\": 28536, \"AVE_HH_SZ\": 2.930000, \"HSEHLD_1_M\": 3547, \"HSEHLD_1_F\": 3449, \"MARHH_CHD\": 6787, \"MARHH_NO_C\": 4238, \"MHH_CHILD\": 1133, \"FHH_CHILD\": 4539, \"FAMILIES\": 19775, \"AVE_FAM_SZ\": 3.500000, \"HSE_UNITS\": 29629, \"VACANT\": 1093, \"OWNER_OCC\": 7383, \"RENTER_OCC\": 21153 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.347311596475549, 33.917374736690064 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hayward\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"33000\", \"CAPITAL\": \"N\", \"AREALAND\": 44.333000, \"AREAWATER\": 18.711000, \"POP_CL\": 8, \"POP2000\": 140030, \"WHITE\": 60146, \"BLACK\": 15374, \"AMERI_ES\": 1177, \"ASIAN\": 26579, \"HAWN_PI\": 2679, \"OTHER\": 23539, \"MULT_RACE\": 10536, \"HISPANIC\": 47850, \"MALES\": 69490, \"FEMALES\": 70540, \"AGE_UNDER5\": 11011, \"AGE_5_17\": 26488, \"AGE_18_21\": 8302, \"AGE_22_29\": 19470, \"AGE_30_39\": 23932, \"AGE_40_49\": 19298, \"AGE_50_64\": 17302, \"AGE_65_UP\": 14227, \"MED_AGE\": 31.900000, \"MED_AGE_M\": 30.900000, \"MED_AGE_F\": 32.900000, \"HOUSEHOLDS\": 44804, \"AVE_HH_SZ\": 3.080000, \"HSEHLD_1_M\": 4282, \"HSEHLD_1_F\": 5087, \"MARHH_CHD\": 11886, \"MARHH_NO_C\": 10669, \"MHH_CHILD\": 1250, \"FHH_CHILD\": 3454, \"FAMILIES\": 31931, \"AVE_FAM_SZ\": 3.580000, \"HSE_UNITS\": 45922, \"VACANT\": 1118, \"OWNER_OCC\": 23824, \"RENTER_OCC\": 20980 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.070247458867982, 37.644507017744949 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Healdsburg\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"33056\", \"CAPITAL\": \"N\", \"AREALAND\": 3.765000, \"AREAWATER\": 0.020000, \"POP_CL\": 6, \"POP2000\": 10722, \"WHITE\": 8566, \"BLACK\": 54, \"AMERI_ES\": 193, \"ASIAN\": 80, \"HAWN_PI\": 6, \"OTHER\": 1441, \"MULT_RACE\": 382, \"HISPANIC\": 3090, \"MALES\": 5223, \"FEMALES\": 5499, \"AGE_UNDER5\": 632, \"AGE_5_17\": 2156, \"AGE_18_21\": 588, \"AGE_22_29\": 1007, \"AGE_30_39\": 1367, \"AGE_40_49\": 1767, \"AGE_50_64\": 1698, \"AGE_65_UP\": 1507, \"MED_AGE\": 37.400000, \"MED_AGE_M\": 34.900000, \"MED_AGE_F\": 39.600000, \"HOUSEHOLDS\": 3968, \"AVE_HH_SZ\": 2.690000, \"HSEHLD_1_M\": 347, \"HSEHLD_1_F\": 679, \"MARHH_CHD\": 966, \"MARHH_NO_C\": 1105, \"MHH_CHILD\": 83, \"FHH_CHILD\": 260, \"FAMILIES\": 2701, \"AVE_FAM_SZ\": 3.230000, \"HSE_UNITS\": 4138, \"VACANT\": 170, \"OWNER_OCC\": 2392, \"RENTER_OCC\": 1576 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.85699440360996, 38.618817621777154 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hemet\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"33182\", \"CAPITAL\": \"N\", \"AREALAND\": 25.637000, \"AREAWATER\": 0.000000, \"POP_CL\": 7, \"POP2000\": 58812, \"WHITE\": 47335, \"BLACK\": 1527, \"AMERI_ES\": 708, \"ASIAN\": 872, \"HAWN_PI\": 79, \"OTHER\": 6225, \"MULT_RACE\": 2066, \"HISPANIC\": 13585, \"MALES\": 26941, \"FEMALES\": 31871, \"AGE_UNDER5\": 3843, \"AGE_5_17\": 9426, \"AGE_18_21\": 2426, \"AGE_22_29\": 4774, \"AGE_30_39\": 6197, \"AGE_40_49\": 5591, \"AGE_50_64\": 7108, \"AGE_65_UP\": 19447, \"MED_AGE\": 44.600000, \"MED_AGE_M\": 40.500000, \"MED_AGE_F\": 48.700000, \"HOUSEHOLDS\": 25252, \"AVE_HH_SZ\": 2.260000, \"HSEHLD_1_M\": 2907, \"HSEHLD_1_F\": 5787, \"MARHH_CHD\": 3563, \"MARHH_NO_C\": 7822, \"MHH_CHILD\": 544, \"FHH_CHILD\": 1696, \"FAMILIES\": 15187, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 29401, \"VACANT\": 4149, \"OWNER_OCC\": 16311, \"RENTER_OCC\": 8941 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -116.982335952164988, 33.74208610279463 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hercules\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"33308\", \"CAPITAL\": \"N\", \"AREALAND\": 6.478000, \"AREAWATER\": 11.821000, \"POP_CL\": 6, \"POP2000\": 19488, \"WHITE\": 5453, \"BLACK\": 3659, \"AMERI_ES\": 49, \"ASIAN\": 8327, \"HAWN_PI\": 90, \"OTHER\": 872, \"MULT_RACE\": 1038, \"HISPANIC\": 2106, \"MALES\": 9247, \"FEMALES\": 10241, \"AGE_UNDER5\": 1145, \"AGE_5_17\": 4041, \"AGE_18_21\": 1022, \"AGE_22_29\": 1721, \"AGE_30_39\": 2947, \"AGE_40_49\": 3730, \"AGE_50_64\": 3449, \"AGE_65_UP\": 1433, \"MED_AGE\": 36.700000, \"MED_AGE_M\": 35.400000, \"MED_AGE_F\": 37.700000, \"HOUSEHOLDS\": 6423, \"AVE_HH_SZ\": 3.030000, \"HSEHLD_1_M\": 411, \"HSEHLD_1_F\": 733, \"MARHH_CHD\": 2106, \"MARHH_NO_C\": 1801, \"MHH_CHILD\": 115, \"FHH_CHILD\": 459, \"FAMILIES\": 5000, \"AVE_FAM_SZ\": 3.460000, \"HSE_UNITS\": 6546, \"VACANT\": 123, \"OWNER_OCC\": 5419, \"RENTER_OCC\": 1004 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.251409701159616, 38.008439215203644 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hermosa Beach\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"33364\", \"CAPITAL\": \"N\", \"AREALAND\": 1.430000, \"AREAWATER\": 4.478000, \"POP_CL\": 6, \"POP2000\": 18566, \"WHITE\": 16632, \"BLACK\": 150, \"AMERI_ES\": 74, \"ASIAN\": 817, \"HAWN_PI\": 41, \"OTHER\": 312, \"MULT_RACE\": 540, \"HISPANIC\": 1253, \"MALES\": 9846, \"FEMALES\": 8720, \"AGE_UNDER5\": 768, \"AGE_5_17\": 1459, \"AGE_18_21\": 288, \"AGE_22_29\": 3964, \"AGE_30_39\": 5600, \"AGE_40_49\": 2703, \"AGE_50_64\": 2516, \"AGE_65_UP\": 1268, \"MED_AGE\": 34.200000, \"MED_AGE_M\": 34.500000, \"MED_AGE_F\": 33.800000, \"HOUSEHOLDS\": 9476, \"AVE_HH_SZ\": 1.950000, \"HSEHLD_1_M\": 2155, \"HSEHLD_1_F\": 1581, \"MARHH_CHD\": 1032, \"MARHH_NO_C\": 1866, \"MHH_CHILD\": 103, \"FHH_CHILD\": 200, \"FAMILIES\": 3558, \"AVE_FAM_SZ\": 2.650000, \"HSE_UNITS\": 9840, \"VACANT\": 364, \"OWNER_OCC\": 4068, \"RENTER_OCC\": 5408 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.398363539044226, 33.86647809631134 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hesperia\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"33434\", \"CAPITAL\": \"N\", \"AREALAND\": 67.346000, \"AREAWATER\": 0.074000, \"POP_CL\": 7, \"POP2000\": 62582, \"WHITE\": 46485, \"BLACK\": 2522, \"AMERI_ES\": 796, \"ASIAN\": 670, \"HAWN_PI\": 122, \"OTHER\": 9051, \"MULT_RACE\": 2936, \"HISPANIC\": 18400, \"MALES\": 30865, \"FEMALES\": 31717, \"AGE_UNDER5\": 4937, \"AGE_5_17\": 15559, \"AGE_18_21\": 3719, \"AGE_22_29\": 5584, \"AGE_30_39\": 8605, \"AGE_40_49\": 9217, \"AGE_50_64\": 8073, \"AGE_65_UP\": 6888, \"MED_AGE\": 32.000000, \"MED_AGE_M\": 30.800000, \"MED_AGE_F\": 33.200000, \"HOUSEHOLDS\": 19966, \"AVE_HH_SZ\": 3.120000, \"HSEHLD_1_M\": 1518, \"HSEHLD_1_F\": 1778, \"MARHH_CHD\": 5983, \"MARHH_NO_C\": 5775, \"MHH_CHILD\": 772, \"FHH_CHILD\": 1745, \"FAMILIES\": 15775, \"AVE_FAM_SZ\": 3.470000, \"HSE_UNITS\": 21348, \"VACANT\": 1382, \"OWNER_OCC\": 14436, \"RENTER_OCC\": 5530 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.305311583546128, 34.413004897801507 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Highland\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"33588\", \"CAPITAL\": \"N\", \"AREALAND\": 13.627000, \"AREAWATER\": 0.170000, \"POP_CL\": 6, \"POP2000\": 44605, \"WHITE\": 25089, \"BLACK\": 5403, \"AMERI_ES\": 581, \"ASIAN\": 2740, \"HAWN_PI\": 152, \"OTHER\": 8307, \"MULT_RACE\": 2333, \"HISPANIC\": 16342, \"MALES\": 21775, \"FEMALES\": 22830, \"AGE_UNDER5\": 4225, \"AGE_5_17\": 11650, \"AGE_18_21\": 2400, \"AGE_22_29\": 4515, \"AGE_30_39\": 7067, \"AGE_40_49\": 6430, \"AGE_50_64\": 5431, \"AGE_65_UP\": 2887, \"MED_AGE\": 29.300000, \"MED_AGE_M\": 28.300000, \"MED_AGE_F\": 30.100000, \"HOUSEHOLDS\": 13478, \"AVE_HH_SZ\": 3.290000, \"HSEHLD_1_M\": 916, \"HSEHLD_1_F\": 1158, \"MARHH_CHD\": 4319, \"MARHH_NO_C\": 3102, \"MHH_CHILD\": 470, \"FHH_CHILD\": 1664, \"FAMILIES\": 10780, \"AVE_FAM_SZ\": 3.640000, \"HSE_UNITS\": 14858, \"VACANT\": 1380, \"OWNER_OCC\": 8980, \"RENTER_OCC\": 4498 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.201546472495338, 34.118554893656608 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hillsborough\", \"CLASS\": \"town\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"33798\", \"CAPITAL\": \"N\", \"AREALAND\": 6.226000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10825, \"WHITE\": 7772, \"BLACK\": 54, \"AMERI_ES\": 7, \"ASIAN\": 2602, \"HAWN_PI\": 25, \"OTHER\": 76, \"MULT_RACE\": 289, \"HISPANIC\": 304, \"MALES\": 5262, \"FEMALES\": 5563, \"AGE_UNDER5\": 551, \"AGE_5_17\": 2164, \"AGE_18_21\": 279, \"AGE_22_29\": 509, \"AGE_30_39\": 938, \"AGE_40_49\": 1865, \"AGE_50_64\": 2505, \"AGE_65_UP\": 2014, \"MED_AGE\": 45.500000, \"MED_AGE_M\": 45.200000, \"MED_AGE_F\": 45.700000, \"HOUSEHOLDS\": 3689, \"AVE_HH_SZ\": 2.930000, \"HSEHLD_1_M\": 119, \"HSEHLD_1_F\": 290, \"MARHH_CHD\": 1226, \"MARHH_NO_C\": 1673, \"MHH_CHILD\": 30, \"FHH_CHILD\": 82, \"FAMILIES\": 3163, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 3804, \"VACANT\": 115, \"OWNER_OCC\": 3530, \"RENTER_OCC\": 159 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.348888419340511, 37.561172675272502 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hollister\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"34120\", \"CAPITAL\": \"N\", \"AREALAND\": 6.570000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 34413, \"WHITE\": 20341, \"BLACK\": 469, \"AMERI_ES\": 390, \"ASIAN\": 965, \"HAWN_PI\": 63, \"OTHER\": 10312, \"MULT_RACE\": 1873, \"HISPANIC\": 18949, \"MALES\": 17366, \"FEMALES\": 17047, \"AGE_UNDER5\": 3442, \"AGE_5_17\": 8472, \"AGE_18_21\": 1948, \"AGE_22_29\": 3944, \"AGE_30_39\": 6253, \"AGE_40_49\": 4883, \"AGE_50_64\": 3320, \"AGE_65_UP\": 2151, \"MED_AGE\": 29.000000, \"MED_AGE_M\": 28.200000, \"MED_AGE_F\": 29.700000, \"HOUSEHOLDS\": 9716, \"AVE_HH_SZ\": 3.520000, \"HSEHLD_1_M\": 562, \"HSEHLD_1_F\": 673, \"MARHH_CHD\": 4005, \"MARHH_NO_C\": 2336, \"MHH_CHILD\": 324, \"FHH_CHILD\": 741, \"FAMILIES\": 8045, \"AVE_FAM_SZ\": 3.820000, \"HSE_UNITS\": 9924, \"VACANT\": 208, \"OWNER_OCC\": 6506, \"RENTER_OCC\": 3210 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.393294660975272, 36.847759350651387 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Huntington Beach\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"36000\", \"CAPITAL\": \"N\", \"AREALAND\": 26.392000, \"AREAWATER\": 5.172000, \"POP_CL\": 8, \"POP2000\": 189594, \"WHITE\": 150194, \"BLACK\": 1527, \"AMERI_ES\": 1224, \"ASIAN\": 17709, \"HAWN_PI\": 456, \"OTHER\": 11019, \"MULT_RACE\": 7465, \"HISPANIC\": 27798, \"MALES\": 95004, \"FEMALES\": 94590, \"AGE_UNDER5\": 11728, \"AGE_5_17\": 30455, \"AGE_18_21\": 8314, \"AGE_22_29\": 23640, \"AGE_30_39\": 34382, \"AGE_40_49\": 29554, \"AGE_50_64\": 31865, \"AGE_65_UP\": 19656, \"MED_AGE\": 36.000000, \"MED_AGE_M\": 35.100000, \"MED_AGE_F\": 37.000000, \"HOUSEHOLDS\": 73657, \"AVE_HH_SZ\": 2.560000, \"HSEHLD_1_M\": 8255, \"HSEHLD_1_F\": 9657, \"MARHH_CHD\": 16211, \"MARHH_NO_C\": 21160, \"MHH_CHILD\": 1513, \"FHH_CHILD\": 3604, \"FAMILIES\": 47716, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 75662, \"VACANT\": 2005, \"OWNER_OCC\": 44658, \"RENTER_OCC\": 28999 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.999085246979718, 33.69302408414287 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Huntington Park\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"36056\", \"CAPITAL\": \"N\", \"AREALAND\": 3.029000, \"AREAWATER\": 0.000000, \"POP_CL\": 7, \"POP2000\": 61348, \"WHITE\": 25412, \"BLACK\": 478, \"AMERI_ES\": 620, \"ASIAN\": 489, \"HAWN_PI\": 38, \"OTHER\": 31328, \"MULT_RACE\": 2983, \"HISPANIC\": 58636, \"MALES\": 30716, \"FEMALES\": 30632, \"AGE_UNDER5\": 6406, \"AGE_5_17\": 15563, \"AGE_18_21\": 4502, \"AGE_22_29\": 9442, \"AGE_30_39\": 10050, \"AGE_40_49\": 6865, \"AGE_50_64\": 5384, \"AGE_65_UP\": 3136, \"MED_AGE\": 25.600000, \"MED_AGE_M\": 25.100000, \"MED_AGE_F\": 26.200000, \"HOUSEHOLDS\": 14860, \"AVE_HH_SZ\": 4.120000, \"HSEHLD_1_M\": 819, \"HSEHLD_1_F\": 804, \"MARHH_CHD\": 5994, \"MARHH_NO_C\": 2243, \"MHH_CHILD\": 716, \"FHH_CHILD\": 1959, \"FAMILIES\": 12663, \"AVE_FAM_SZ\": 4.340000, \"HSE_UNITS\": 15335, \"VACANT\": 475, \"OWNER_OCC\": 4065, \"RENTER_OCC\": 10795 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.216146380945901, 33.982515963362232 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Imperial Beach\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"36294\", \"CAPITAL\": \"N\", \"AREALAND\": 4.268000, \"AREAWATER\": 0.251000, \"POP_CL\": 6, \"POP2000\": 26992, \"WHITE\": 16805, \"BLACK\": 1421, \"AMERI_ES\": 298, \"ASIAN\": 1767, \"HAWN_PI\": 163, \"OTHER\": 4796, \"MULT_RACE\": 1742, \"HISPANIC\": 10818, \"MALES\": 13475, \"FEMALES\": 13517, \"AGE_UNDER5\": 2264, \"AGE_5_17\": 5684, \"AGE_18_21\": 2134, \"AGE_22_29\": 4137, \"AGE_30_39\": 4206, \"AGE_40_49\": 3680, \"AGE_50_64\": 2858, \"AGE_65_UP\": 2029, \"MED_AGE\": 28.600000, \"MED_AGE_M\": 27.800000, \"MED_AGE_F\": 29.500000, \"HOUSEHOLDS\": 9272, \"AVE_HH_SZ\": 2.840000, \"HSEHLD_1_M\": 1131, \"HSEHLD_1_F\": 852, \"MARHH_CHD\": 2226, \"MARHH_NO_C\": 1961, \"MHH_CHILD\": 363, \"FHH_CHILD\": 1138, \"FAMILIES\": 6449, \"AVE_FAM_SZ\": 3.300000, \"HSE_UNITS\": 9739, \"VACANT\": 467, \"OWNER_OCC\": 2780, \"RENTER_OCC\": 6492 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.116398151907617, 32.578341019796788 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Indio\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"36448\", \"CAPITAL\": \"N\", \"AREALAND\": 26.689000, \"AREAWATER\": 0.012000, \"POP_CL\": 6, \"POP2000\": 49116, \"WHITE\": 23903, \"BLACK\": 1361, \"AMERI_ES\": 510, \"ASIAN\": 742, \"HAWN_PI\": 49, \"OTHER\": 20638, \"MULT_RACE\": 1913, \"HISPANIC\": 37028, \"MALES\": 24710, \"FEMALES\": 24406, \"AGE_UNDER5\": 5100, \"AGE_5_17\": 12218, \"AGE_18_21\": 3249, \"AGE_22_29\": 6031, \"AGE_30_39\": 7582, \"AGE_40_49\": 5439, \"AGE_50_64\": 5047, \"AGE_65_UP\": 4450, \"MED_AGE\": 27.300000, \"MED_AGE_M\": 26.500000, \"MED_AGE_F\": 28.200000, \"HOUSEHOLDS\": 13871, \"AVE_HH_SZ\": 3.480000, \"HSEHLD_1_M\": 961, \"HSEHLD_1_F\": 1252, \"MARHH_CHD\": 4603, \"MARHH_NO_C\": 3150, \"MHH_CHILD\": 562, \"FHH_CHILD\": 1523, \"FAMILIES\": 11073, \"AVE_FAM_SZ\": 3.880000, \"HSE_UNITS\": 16909, \"VACANT\": 3038, \"OWNER_OCC\": 7794, \"RENTER_OCC\": 6077 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -116.231357733222879, 33.719930187213556 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Inglewood\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"36546\", \"CAPITAL\": \"N\", \"AREALAND\": 9.135000, \"AREAWATER\": 0.000000, \"POP_CL\": 8, \"POP2000\": 112580, \"WHITE\": 21505, \"BLACK\": 53060, \"AMERI_ES\": 773, \"ASIAN\": 1280, \"HAWN_PI\": 410, \"OTHER\": 30823, \"MULT_RACE\": 4729, \"HISPANIC\": 51829, \"MALES\": 53423, \"FEMALES\": 59157, \"AGE_UNDER5\": 10257, \"AGE_5_17\": 26180, \"AGE_18_21\": 6457, \"AGE_22_29\": 14101, \"AGE_30_39\": 18502, \"AGE_40_49\": 15302, \"AGE_50_64\": 13803, \"AGE_65_UP\": 7978, \"MED_AGE\": 29.600000, \"MED_AGE_M\": 28.100000, \"MED_AGE_F\": 31.000000, \"HOUSEHOLDS\": 36805, \"AVE_HH_SZ\": 3.020000, \"HSEHLD_1_M\": 4000, \"HSEHLD_1_F\": 5329, \"MARHH_CHD\": 8766, \"MARHH_NO_C\": 5401, \"MHH_CHILD\": 1318, \"FHH_CHILD\": 5632, \"FAMILIES\": 25851, \"AVE_FAM_SZ\": 3.630000, \"HSE_UNITS\": 38648, \"VACANT\": 1843, \"OWNER_OCC\": 13357, \"RENTER_OCC\": 23448 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.344784305268035, 33.957673826690147 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Irvine\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"36770\", \"CAPITAL\": \"N\", \"AREALAND\": 46.182000, \"AREAWATER\": 0.313000, \"POP_CL\": 8, \"POP2000\": 143072, \"WHITE\": 87354, \"BLACK\": 2068, \"AMERI_ES\": 257, \"ASIAN\": 42672, \"HAWN_PI\": 194, \"OTHER\": 3627, \"MULT_RACE\": 6900, \"HISPANIC\": 10539, \"MALES\": 69235, \"FEMALES\": 73837, \"AGE_UNDER5\": 7997, \"AGE_5_17\": 25558, \"AGE_18_21\": 14031, \"AGE_22_29\": 16932, \"AGE_30_39\": 23344, \"AGE_40_49\": 24073, \"AGE_50_64\": 20835, \"AGE_65_UP\": 10302, \"MED_AGE\": 33.100000, \"MED_AGE_M\": 32.000000, \"MED_AGE_F\": 34.100000, \"HOUSEHOLDS\": 51199, \"AVE_HH_SZ\": 2.660000, \"HSEHLD_1_M\": 4986, \"HSEHLD_1_F\": 6664, \"MARHH_CHD\": 14738, \"MARHH_NO_C\": 12805, \"MHH_CHILD\": 766, \"FHH_CHILD\": 2924, \"FAMILIES\": 34380, \"AVE_FAM_SZ\": 3.170000, \"HSE_UNITS\": 53711, \"VACANT\": 2512, \"OWNER_OCC\": 30696, \"RENTER_OCC\": 20503 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.791562463291044, 33.684188752727046 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Isla Vista\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"36868\", \"CAPITAL\": \"N\", \"AREALAND\": 2.124000, \"AREAWATER\": 0.077000, \"POP_CL\": 6, \"POP2000\": 18344, \"WHITE\": 12748, \"BLACK\": 385, \"AMERI_ES\": 118, \"ASIAN\": 2121, \"HAWN_PI\": 42, \"OTHER\": 1864, \"MULT_RACE\": 1066, \"HISPANIC\": 3671, \"MALES\": 9178, \"FEMALES\": 9166, \"AGE_UNDER5\": 492, \"AGE_5_17\": 1081, \"AGE_18_21\": 10525, \"AGE_22_29\": 4053, \"AGE_30_39\": 1092, \"AGE_40_49\": 540, \"AGE_50_64\": 332, \"AGE_65_UP\": 229, \"MED_AGE\": 21.100000, \"MED_AGE_M\": 21.400000, \"MED_AGE_F\": 20.800000, \"HOUSEHOLDS\": 5164, \"AVE_HH_SZ\": 2.960000, \"HSEHLD_1_M\": 572, \"HSEHLD_1_F\": 459, \"MARHH_CHD\": 489, \"MARHH_NO_C\": 357, \"MHH_CHILD\": 42, \"FHH_CHILD\": 156, \"FAMILIES\": 1206, \"AVE_FAM_SZ\": 3.210000, \"HSE_UNITS\": 5264, \"VACANT\": 100, \"OWNER_OCC\": 237, \"RENTER_OCC\": 4927 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -119.85800148851807, 34.414911507956852 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"King City\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"38520\", \"CAPITAL\": \"N\", \"AREALAND\": 3.661000, \"AREAWATER\": 0.055000, \"POP_CL\": 6, \"POP2000\": 11094, \"WHITE\": 4669, \"BLACK\": 65, \"AMERI_ES\": 116, \"ASIAN\": 136, \"HAWN_PI\": 15, \"OTHER\": 5598, \"MULT_RACE\": 495, \"HISPANIC\": 8922, \"MALES\": 5952, \"FEMALES\": 5142, \"AGE_UNDER5\": 1090, \"AGE_5_17\": 2866, \"AGE_18_21\": 876, \"AGE_22_29\": 1766, \"AGE_30_39\": 1644, \"AGE_40_49\": 1207, \"AGE_50_64\": 959, \"AGE_65_UP\": 686, \"MED_AGE\": 25.300000, \"MED_AGE_M\": 25.000000, \"MED_AGE_F\": 25.800000, \"HOUSEHOLDS\": 2736, \"AVE_HH_SZ\": 4.030000, \"HSEHLD_1_M\": 151, \"HSEHLD_1_F\": 217, \"MARHH_CHD\": 1168, \"MARHH_NO_C\": 535, \"MHH_CHILD\": 109, \"FHH_CHILD\": 216, \"FAMILIES\": 2252, \"AVE_FAM_SZ\": 4.280000, \"HSE_UNITS\": 2822, \"VACANT\": 86, \"OWNER_OCC\": 1410, \"RENTER_OCC\": 1326 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.123543169158395, 36.211822637634818 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"La Canada Flintridge\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"39003\", \"CAPITAL\": \"N\", \"AREALAND\": 8.650000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 20318, \"WHITE\": 15142, \"BLACK\": 73, \"AMERI_ES\": 36, \"ASIAN\": 4180, \"HAWN_PI\": 9, \"OTHER\": 206, \"MULT_RACE\": 672, \"HISPANIC\": 976, \"MALES\": 9796, \"FEMALES\": 10522, \"AGE_UNDER5\": 1048, \"AGE_5_17\": 5001, \"AGE_18_21\": 730, \"AGE_22_29\": 693, \"AGE_30_39\": 1928, \"AGE_40_49\": 4006, \"AGE_50_64\": 4070, \"AGE_65_UP\": 2842, \"MED_AGE\": 42.100000, \"MED_AGE_M\": 42.000000, \"MED_AGE_F\": 42.200000, \"HOUSEHOLDS\": 6823, \"AVE_HH_SZ\": 2.950000, \"HSEHLD_1_M\": 355, \"HSEHLD_1_F\": 630, \"MARHH_CHD\": 2654, \"MARHH_NO_C\": 2377, \"MHH_CHILD\": 77, \"FHH_CHILD\": 276, \"FAMILIES\": 5693, \"AVE_FAM_SZ\": 3.270000, \"HSE_UNITS\": 6989, \"VACANT\": 166, \"OWNER_OCC\": 6149, \"RENTER_OCC\": 674 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.19825421949308, 34.206199150663807 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"La Crescenta-Montrose\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"39045\", \"CAPITAL\": \"N\", \"AREALAND\": 3.427000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 18532, \"WHITE\": 13516, \"BLACK\": 96, \"AMERI_ES\": 67, \"ASIAN\": 3462, \"HAWN_PI\": 8, \"OTHER\": 498, \"MULT_RACE\": 885, \"HISPANIC\": 1837, \"MALES\": 8966, \"FEMALES\": 9566, \"AGE_UNDER5\": 1053, \"AGE_5_17\": 3859, \"AGE_18_21\": 734, \"AGE_22_29\": 1310, \"AGE_30_39\": 2781, \"AGE_40_49\": 3621, \"AGE_50_64\": 3058, \"AGE_65_UP\": 2116, \"MED_AGE\": 38.600000, \"MED_AGE_M\": 37.900000, \"MED_AGE_F\": 39.300000, \"HOUSEHOLDS\": 6945, \"AVE_HH_SZ\": 2.660000, \"HSEHLD_1_M\": 708, \"HSEHLD_1_F\": 992, \"MARHH_CHD\": 2109, \"MARHH_NO_C\": 1874, \"MHH_CHILD\": 135, \"FHH_CHILD\": 377, \"FAMILIES\": 4948, \"AVE_FAM_SZ\": 3.220000, \"HSE_UNITS\": 7108, \"VACANT\": 163, \"OWNER_OCC\": 4543, \"RENTER_OCC\": 2402 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.235579793492036, 34.225108847048077 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lafayette\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"39122\", \"CAPITAL\": \"N\", \"AREALAND\": 15.204000, \"AREAWATER\": 0.210000, \"POP_CL\": 6, \"POP2000\": 23908, \"WHITE\": 20754, \"BLACK\": 131, \"AMERI_ES\": 53, \"ASIAN\": 1967, \"HAWN_PI\": 21, \"OTHER\": 194, \"MULT_RACE\": 788, \"HISPANIC\": 945, \"MALES\": 11671, \"FEMALES\": 12237, \"AGE_UNDER5\": 1308, \"AGE_5_17\": 4878, \"AGE_18_21\": 652, \"AGE_22_29\": 1164, \"AGE_30_39\": 2945, \"AGE_40_49\": 4506, \"AGE_50_64\": 5008, \"AGE_65_UP\": 3447, \"MED_AGE\": 42.300000, \"MED_AGE_M\": 42.000000, \"MED_AGE_F\": 42.700000, \"HOUSEHOLDS\": 9152, \"AVE_HH_SZ\": 2.600000, \"HSEHLD_1_M\": 741, \"HSEHLD_1_F\": 1100, \"MARHH_CHD\": 2840, \"MARHH_NO_C\": 3096, \"MHH_CHILD\": 121, \"FHH_CHILD\": 362, \"FAMILIES\": 6755, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 9334, \"VACANT\": 182, \"OWNER_OCC\": 7024, \"RENTER_OCC\": 2128 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.104705245442275, 37.892117791850438 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Laguna\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"39173\", \"CAPITAL\": \"N\", \"AREALAND\": 6.744000, \"AREAWATER\": 0.001000, \"POP_CL\": 6, \"POP2000\": 34309, \"WHITE\": 20275, \"BLACK\": 3329, \"AMERI_ES\": 228, \"ASIAN\": 6171, \"HAWN_PI\": 122, \"OTHER\": 1881, \"MULT_RACE\": 2303, \"HISPANIC\": 4984, \"MALES\": 16701, \"FEMALES\": 17608, \"AGE_UNDER5\": 3293, \"AGE_5_17\": 8313, \"AGE_18_21\": 1257, \"AGE_22_29\": 2802, \"AGE_30_39\": 7432, \"AGE_40_49\": 6028, \"AGE_50_64\": 3591, \"AGE_65_UP\": 1593, \"MED_AGE\": 32.400000, \"MED_AGE_M\": 31.900000, \"MED_AGE_F\": 32.900000, \"HOUSEHOLDS\": 11314, \"AVE_HH_SZ\": 3.030000, \"HSEHLD_1_M\": 675, \"HSEHLD_1_F\": 973, \"MARHH_CHD\": 4618, \"MARHH_NO_C\": 2714, \"MHH_CHILD\": 314, \"FHH_CHILD\": 946, \"FAMILIES\": 9158, \"AVE_FAM_SZ\": 3.380000, \"HSE_UNITS\": 11610, \"VACANT\": 296, \"OWNER_OCC\": 9622, \"RENTER_OCC\": 1692 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.421843751197741, 38.424564101756076 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Laguna Beach\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"39178\", \"CAPITAL\": \"N\", \"AREALAND\": 8.848000, \"AREAWATER\": 0.895000, \"POP_CL\": 6, \"POP2000\": 23727, \"WHITE\": 21826, \"BLACK\": 190, \"AMERI_ES\": 86, \"ASIAN\": 494, \"HAWN_PI\": 20, \"OTHER\": 524, \"MULT_RACE\": 587, \"HISPANIC\": 1570, \"MALES\": 12081, \"FEMALES\": 11646, \"AGE_UNDER5\": 992, \"AGE_5_17\": 2759, \"AGE_18_21\": 537, \"AGE_22_29\": 1780, \"AGE_30_39\": 4232, \"AGE_40_49\": 4489, \"AGE_50_64\": 5792, \"AGE_65_UP\": 3146, \"MED_AGE\": 43.400000, \"MED_AGE_M\": 43.300000, \"MED_AGE_F\": 43.600000, \"HOUSEHOLDS\": 11511, \"AVE_HH_SZ\": 2.050000, \"HSEHLD_1_M\": 2102, \"HSEHLD_1_F\": 2125, \"MARHH_CHD\": 1574, \"MARHH_NO_C\": 3135, \"MHH_CHILD\": 172, \"FHH_CHILD\": 388, \"FAMILIES\": 5776, \"AVE_FAM_SZ\": 2.690000, \"HSE_UNITS\": 12965, \"VACANT\": 1454, \"OWNER_OCC\": 6919, \"RENTER_OCC\": 4592 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.768044869572122, 33.531646620601194 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Laguna Hills\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"39220\", \"CAPITAL\": \"N\", \"AREALAND\": 6.348000, \"AREAWATER\": 0.033000, \"POP_CL\": 6, \"POP2000\": 31178, \"WHITE\": 23954, \"BLACK\": 429, \"AMERI_ES\": 138, \"ASIAN\": 3181, \"HAWN_PI\": 47, \"OTHER\": 2241, \"MULT_RACE\": 1188, \"HISPANIC\": 5113, \"MALES\": 14992, \"FEMALES\": 16186, \"AGE_UNDER5\": 1915, \"AGE_5_17\": 6259, \"AGE_18_21\": 1386, \"AGE_22_29\": 2581, \"AGE_30_39\": 4655, \"AGE_40_49\": 5355, \"AGE_50_64\": 5239, \"AGE_65_UP\": 3788, \"MED_AGE\": 37.700000, \"MED_AGE_M\": 36.100000, \"MED_AGE_F\": 39.300000, \"HOUSEHOLDS\": 10895, \"AVE_HH_SZ\": 2.820000, \"HSEHLD_1_M\": 742, \"HSEHLD_1_F\": 1614, \"MARHH_CHD\": 3393, \"MARHH_NO_C\": 3250, \"MHH_CHILD\": 189, \"FHH_CHILD\": 504, \"FAMILIES\": 7947, \"AVE_FAM_SZ\": 3.290000, \"HSE_UNITS\": 11303, \"VACANT\": 408, \"OWNER_OCC\": 8190, \"RENTER_OCC\": 2705 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.698594148162442, 33.599708153787766 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Laguna Niguel\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"39248\", \"CAPITAL\": \"N\", \"AREALAND\": 14.663000, \"AREAWATER\": 0.060000, \"POP_CL\": 7, \"POP2000\": 61891, \"WHITE\": 51682, \"BLACK\": 776, \"AMERI_ES\": 180, \"ASIAN\": 4784, \"HAWN_PI\": 73, \"OTHER\": 2155, \"MULT_RACE\": 2241, \"HISPANIC\": 6425, \"MALES\": 30137, \"FEMALES\": 31754, \"AGE_UNDER5\": 4346, \"AGE_5_17\": 12112, \"AGE_18_21\": 2173, \"AGE_22_29\": 4744, \"AGE_30_39\": 10715, \"AGE_40_49\": 12068, \"AGE_50_64\": 10238, \"AGE_65_UP\": 5495, \"MED_AGE\": 37.500000, \"MED_AGE_M\": 36.900000, \"MED_AGE_F\": 38.000000, \"HOUSEHOLDS\": 23217, \"AVE_HH_SZ\": 2.650000, \"HSEHLD_1_M\": 1952, \"HSEHLD_1_F\": 2822, \"MARHH_CHD\": 7170, \"MARHH_NO_C\": 6814, \"MHH_CHILD\": 409, \"FHH_CHILD\": 1258, \"FAMILIES\": 16793, \"AVE_FAM_SZ\": 3.100000, \"HSE_UNITS\": 23885, \"VACANT\": 668, \"OWNER_OCC\": 17403, \"RENTER_OCC\": 5814 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.701531584754377, 33.532055965871471 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Laguna Woods\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"39259\", \"CAPITAL\": \"N\", \"AREALAND\": 3.200000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 16507, \"WHITE\": 15866, \"BLACK\": 41, \"AMERI_ES\": 20, \"ASIAN\": 412, \"HAWN_PI\": 9, \"OTHER\": 31, \"MULT_RACE\": 128, \"HISPANIC\": 340, \"MALES\": 5635, \"FEMALES\": 10872, \"AGE_UNDER5\": 39, \"AGE_5_17\": 54, \"AGE_18_21\": 14, \"AGE_22_29\": 63, \"AGE_30_39\": 214, \"AGE_40_49\": 245, \"AGE_50_64\": 1610, \"AGE_65_UP\": 14268, \"MED_AGE\": 78.000000, \"MED_AGE_M\": 77.900000, \"MED_AGE_F\": 78.000000, \"HOUSEHOLDS\": 11699, \"AVE_HH_SZ\": 1.400000, \"HSEHLD_1_M\": 1334, \"HSEHLD_1_F\": 5939, \"MARHH_CHD\": 43, \"MARHH_NO_C\": 3548, \"MHH_CHILD\": 2, \"FHH_CHILD\": 7, \"FAMILIES\": 3984, \"AVE_FAM_SZ\": 2.060000, \"HSE_UNITS\": 12650, \"VACANT\": 951, \"OWNER_OCC\": 9929, \"RENTER_OCC\": 1770 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.731802170936248, 33.609285019663105 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"La Habra\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"39290\", \"CAPITAL\": \"N\", \"AREALAND\": 7.330000, \"AREAWATER\": 0.000000, \"POP_CL\": 7, \"POP2000\": 58974, \"WHITE\": 37153, \"BLACK\": 926, \"AMERI_ES\": 564, \"ASIAN\": 3498, \"HAWN_PI\": 127, \"OTHER\": 13953, \"MULT_RACE\": 2753, \"HISPANIC\": 28922, \"MALES\": 29059, \"FEMALES\": 29915, \"AGE_UNDER5\": 4950, \"AGE_5_17\": 12202, \"AGE_18_21\": 3341, \"AGE_22_29\": 7455, \"AGE_30_39\": 9588, \"AGE_40_49\": 7915, \"AGE_50_64\": 7157, \"AGE_65_UP\": 6366, \"MED_AGE\": 31.500000, \"MED_AGE_M\": 30.500000, \"MED_AGE_F\": 32.600000, \"HOUSEHOLDS\": 18947, \"AVE_HH_SZ\": 3.080000, \"HSEHLD_1_M\": 1682, \"HSEHLD_1_F\": 2288, \"MARHH_CHD\": 5489, \"MARHH_NO_C\": 4842, \"MHH_CHILD\": 565, \"FHH_CHILD\": 1401, \"FAMILIES\": 14013, \"AVE_FAM_SZ\": 3.560000, \"HSE_UNITS\": 19441, \"VACANT\": 494, \"OWNER_OCC\": 10728, \"RENTER_OCC\": 8219 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.950612813509935, 33.929447465072471 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lake Elsinore\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"39486\", \"CAPITAL\": \"N\", \"AREALAND\": 33.804000, \"AREAWATER\": 4.974000, \"POP_CL\": 6, \"POP2000\": 28928, \"WHITE\": 18981, \"BLACK\": 1501, \"AMERI_ES\": 374, \"ASIAN\": 592, \"HAWN_PI\": 87, \"OTHER\": 5880, \"MULT_RACE\": 1513, \"HISPANIC\": 11007, \"MALES\": 14431, \"FEMALES\": 14497, \"AGE_UNDER5\": 2834, \"AGE_5_17\": 7585, \"AGE_18_21\": 1581, \"AGE_22_29\": 3051, \"AGE_30_39\": 4892, \"AGE_40_49\": 4193, \"AGE_50_64\": 2859, \"AGE_65_UP\": 1933, \"MED_AGE\": 28.700000, \"MED_AGE_M\": 27.700000, \"MED_AGE_F\": 29.400000, \"HOUSEHOLDS\": 8817, \"AVE_HH_SZ\": 3.270000, \"HSEHLD_1_M\": 716, \"HSEHLD_1_F\": 710, \"MARHH_CHD\": 3145, \"MARHH_NO_C\": 1924, \"MHH_CHILD\": 329, \"FHH_CHILD\": 861, \"FAMILIES\": 6874, \"AVE_FAM_SZ\": 3.660000, \"HSE_UNITS\": 9505, \"VACANT\": 688, \"OWNER_OCC\": 5699, \"RENTER_OCC\": 3118 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.344480424269008, 33.681481639528428 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lake Forest\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"39496\", \"CAPITAL\": \"N\", \"AREALAND\": 12.494000, \"AREAWATER\": 0.122000, \"POP_CL\": 7, \"POP2000\": 58707, \"WHITE\": 44629, \"BLACK\": 1073, \"AMERI_ES\": 295, \"ASIAN\": 5693, \"HAWN_PI\": 120, \"OTHER\": 4408, \"MULT_RACE\": 2489, \"HISPANIC\": 10913, \"MALES\": 28863, \"FEMALES\": 29844, \"AGE_UNDER5\": 4143, \"AGE_5_17\": 11680, \"AGE_18_21\": 2792, \"AGE_22_29\": 5903, \"AGE_30_39\": 10256, \"AGE_40_49\": 9782, \"AGE_50_64\": 9100, \"AGE_65_UP\": 5051, \"MED_AGE\": 35.100000, \"MED_AGE_M\": 33.700000, \"MED_AGE_F\": 36.200000, \"HOUSEHOLDS\": 20008, \"AVE_HH_SZ\": 2.890000, \"HSEHLD_1_M\": 1644, \"HSEHLD_1_F\": 2237, \"MARHH_CHD\": 6279, \"MARHH_NO_C\": 5546, \"MHH_CHILD\": 437, \"FHH_CHILD\": 1121, \"FAMILIES\": 14741, \"AVE_FAM_SZ\": 3.310000, \"HSE_UNITS\": 20486, \"VACANT\": 478, \"OWNER_OCC\": 14407, \"RENTER_OCC\": 5601 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.689758804976421, 33.641759889294761 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lake Los Angeles\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"39612\", \"CAPITAL\": \"N\", \"AREALAND\": 13.010000, \"AREAWATER\": 0.051000, \"POP_CL\": 6, \"POP2000\": 11523, \"WHITE\": 7030, \"BLACK\": 1396, \"AMERI_ES\": 172, \"ASIAN\": 115, \"HAWN_PI\": 19, \"OTHER\": 2158, \"MULT_RACE\": 633, \"HISPANIC\": 3869, \"MALES\": 5741, \"FEMALES\": 5782, \"AGE_UNDER5\": 919, \"AGE_5_17\": 3680, \"AGE_18_21\": 634, \"AGE_22_29\": 724, \"AGE_30_39\": 1657, \"AGE_40_49\": 1889, \"AGE_50_64\": 1374, \"AGE_65_UP\": 646, \"MED_AGE\": 28.000000, \"MED_AGE_M\": 26.400000, \"MED_AGE_F\": 29.100000, \"HOUSEHOLDS\": 3137, \"AVE_HH_SZ\": 3.660000, \"HSEHLD_1_M\": 210, \"HSEHLD_1_F\": 158, \"MARHH_CHD\": 1174, \"MARHH_NO_C\": 705, \"MHH_CHILD\": 154, \"FHH_CHILD\": 316, \"FAMILIES\": 2614, \"AVE_FAM_SZ\": 3.920000, \"HSE_UNITS\": 3453, \"VACANT\": 316, \"OWNER_OCC\": 2436, \"RENTER_OCC\": 701 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.832573483851547, 34.617796072559564 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lakeside\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"39766\", \"CAPITAL\": \"N\", \"AREALAND\": 5.718000, \"AREAWATER\": 0.336000, \"POP_CL\": 6, \"POP2000\": 19560, \"WHITE\": 17571, \"BLACK\": 146, \"AMERI_ES\": 216, \"ASIAN\": 248, \"HAWN_PI\": 55, \"OTHER\": 641, \"MULT_RACE\": 683, \"HISPANIC\": 2254, \"MALES\": 9606, \"FEMALES\": 9954, \"AGE_UNDER5\": 1483, \"AGE_5_17\": 4192, \"AGE_18_21\": 1040, \"AGE_22_29\": 1729, \"AGE_30_39\": 3184, \"AGE_40_49\": 3223, \"AGE_50_64\": 2743, \"AGE_65_UP\": 1966, \"MED_AGE\": 34.800000, \"MED_AGE_M\": 33.700000, \"MED_AGE_F\": 35.800000, \"HOUSEHOLDS\": 6849, \"AVE_HH_SZ\": 2.830000, \"HSEHLD_1_M\": 526, \"HSEHLD_1_F\": 753, \"MARHH_CHD\": 1965, \"MARHH_NO_C\": 1998, \"MHH_CHILD\": 210, \"FHH_CHILD\": 526, \"FAMILIES\": 5151, \"AVE_FAM_SZ\": 3.220000, \"HSE_UNITS\": 7047, \"VACANT\": 198, \"OWNER_OCC\": 4782, \"RENTER_OCC\": 2067 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -116.90475488414954, 32.8496118069665 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lakewood\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"39892\", \"CAPITAL\": \"N\", \"AREALAND\": 9.429000, \"AREAWATER\": 0.070000, \"POP_CL\": 7, \"POP2000\": 79345, \"WHITE\": 49724, \"BLACK\": 5825, \"AMERI_ES\": 473, \"ASIAN\": 10716, \"HAWN_PI\": 489, \"OTHER\": 8012, \"MULT_RACE\": 4106, \"HISPANIC\": 18071, \"MALES\": 38421, \"FEMALES\": 40924, \"AGE_UNDER5\": 5619, \"AGE_5_17\": 16239, \"AGE_18_21\": 3875, \"AGE_22_29\": 7326, \"AGE_30_39\": 13130, \"AGE_40_49\": 12682, \"AGE_50_64\": 11060, \"AGE_65_UP\": 9414, \"MED_AGE\": 35.300000, \"MED_AGE_M\": 34.200000, \"MED_AGE_F\": 36.300000, \"HOUSEHOLDS\": 26853, \"AVE_HH_SZ\": 2.950000, \"HSEHLD_1_M\": 1973, \"HSEHLD_1_F\": 2977, \"MARHH_CHD\": 7884, \"MARHH_NO_C\": 7641, \"MHH_CHILD\": 639, \"FHH_CHILD\": 1694, \"FAMILIES\": 20550, \"AVE_FAM_SZ\": 3.370000, \"HSE_UNITS\": 27310, \"VACANT\": 457, \"OWNER_OCC\": 19333, \"RENTER_OCC\": 7520 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.118712844756828, 33.847509608636585 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"La Mesa\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"40004\", \"CAPITAL\": \"N\", \"AREALAND\": 9.264000, \"AREAWATER\": 0.025000, \"POP_CL\": 7, \"POP2000\": 54749, \"WHITE\": 44148, \"BLACK\": 2660, \"AMERI_ES\": 364, \"ASIAN\": 2238, \"HAWN_PI\": 217, \"OTHER\": 2782, \"MULT_RACE\": 2340, \"HISPANIC\": 7402, \"MALES\": 25826, \"FEMALES\": 28923, \"AGE_UNDER5\": 3109, \"AGE_5_17\": 7743, \"AGE_18_21\": 2787, \"AGE_22_29\": 7397, \"AGE_30_39\": 8789, \"AGE_40_49\": 8250, \"AGE_50_64\": 7356, \"AGE_65_UP\": 9318, \"MED_AGE\": 37.300000, \"MED_AGE_M\": 35.400000, \"MED_AGE_F\": 39.200000, \"HOUSEHOLDS\": 24186, \"AVE_HH_SZ\": 2.220000, \"HSEHLD_1_M\": 3329, \"HSEHLD_1_F\": 4946, \"MARHH_CHD\": 3957, \"MARHH_NO_C\": 5667, \"MHH_CHILD\": 482, \"FHH_CHILD\": 1525, \"FAMILIES\": 13386, \"AVE_FAM_SZ\": 2.860000, \"HSE_UNITS\": 24943, \"VACANT\": 757, \"OWNER_OCC\": 11415, \"RENTER_OCC\": 12771 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.022102175313378, 32.771533020738026 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"La Mirada\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"40032\", \"CAPITAL\": \"N\", \"AREALAND\": 7.849000, \"AREAWATER\": 0.027000, \"POP_CL\": 6, \"POP2000\": 46783, \"WHITE\": 30155, \"BLACK\": 903, \"AMERI_ES\": 350, \"ASIAN\": 6963, \"HAWN_PI\": 125, \"OTHER\": 6379, \"MULT_RACE\": 1908, \"HISPANIC\": 15657, \"MALES\": 22582, \"FEMALES\": 24201, \"AGE_UNDER5\": 2948, \"AGE_5_17\": 9307, \"AGE_18_21\": 3457, \"AGE_22_29\": 4129, \"AGE_30_39\": 6978, \"AGE_40_49\": 6805, \"AGE_50_64\": 6696, \"AGE_65_UP\": 6463, \"MED_AGE\": 35.400000, \"MED_AGE_M\": 34.100000, \"MED_AGE_F\": 36.700000, \"HOUSEHOLDS\": 14580, \"AVE_HH_SZ\": 3.100000, \"HSEHLD_1_M\": 804, \"HSEHLD_1_F\": 1721, \"MARHH_CHD\": 4595, \"MARHH_NO_C\": 4748, \"MHH_CHILD\": 285, \"FHH_CHILD\": 572, \"FAMILIES\": 11523, \"AVE_FAM_SZ\": 3.490000, \"HSE_UNITS\": 14811, \"VACANT\": 231, \"OWNER_OCC\": 11959, \"RENTER_OCC\": 2621 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.008533727671022, 33.902267891560186 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lamont\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"40088\", \"CAPITAL\": \"N\", \"AREALAND\": 4.604000, \"AREAWATER\": 0.034000, \"POP_CL\": 6, \"POP2000\": 13296, \"WHITE\": 5917, \"BLACK\": 371, \"AMERI_ES\": 204, \"ASIAN\": 138, \"HAWN_PI\": 11, \"OTHER\": 6132, \"MULT_RACE\": 523, \"HISPANIC\": 11814, \"MALES\": 6914, \"FEMALES\": 6382, \"AGE_UNDER5\": 1418, \"AGE_5_17\": 3718, \"AGE_18_21\": 1011, \"AGE_22_29\": 1712, \"AGE_30_39\": 2044, \"AGE_40_49\": 1478, \"AGE_50_64\": 1183, \"AGE_65_UP\": 732, \"MED_AGE\": 24.100000, \"MED_AGE_M\": 24.000000, \"MED_AGE_F\": 24.200000, \"HOUSEHOLDS\": 3114, \"AVE_HH_SZ\": 4.270000, \"HSEHLD_1_M\": 148, \"HSEHLD_1_F\": 158, \"MARHH_CHD\": 1292, \"MARHH_NO_C\": 538, \"MHH_CHILD\": 151, \"FHH_CHILD\": 391, \"FAMILIES\": 2690, \"AVE_FAM_SZ\": 4.410000, \"HSE_UNITS\": 3277, \"VACANT\": 163, \"OWNER_OCC\": 1662, \"RENTER_OCC\": 1452 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.911546254628433, 35.261319668619457 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lancaster\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"40130\", \"CAPITAL\": \"N\", \"AREALAND\": 93.998000, \"AREAWATER\": 0.178000, \"POP_CL\": 8, \"POP2000\": 118718, \"WHITE\": 74573, \"BLACK\": 19009, \"AMERI_ES\": 1213, \"ASIAN\": 4523, \"HAWN_PI\": 278, \"OTHER\": 13190, \"MULT_RACE\": 5932, \"HISPANIC\": 28644, \"MALES\": 60257, \"FEMALES\": 58461, \"AGE_UNDER5\": 9544, \"AGE_5_17\": 28845, \"AGE_18_21\": 6721, \"AGE_22_29\": 12257, \"AGE_30_39\": 19271, \"AGE_40_49\": 17758, \"AGE_50_64\": 14121, \"AGE_65_UP\": 10201, \"MED_AGE\": 31.100000, \"MED_AGE_M\": 30.500000, \"MED_AGE_F\": 31.900000, \"HOUSEHOLDS\": 38224, \"AVE_HH_SZ\": 2.920000, \"HSEHLD_1_M\": 4020, \"HSEHLD_1_F\": 4417, \"MARHH_CHD\": 10401, \"MARHH_NO_C\": 8498, \"MHH_CHILD\": 1439, \"FHH_CHILD\": 4502, \"FAMILIES\": 27684, \"AVE_FAM_SZ\": 3.410000, \"HSE_UNITS\": 41745, \"VACANT\": 3521, \"OWNER_OCC\": 23468, \"RENTER_OCC\": 14756 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.152798986540475, 34.687131989861228 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"La Palma\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"40256\", \"CAPITAL\": \"N\", \"AREALAND\": 1.813000, \"AREAWATER\": 0.040000, \"POP_CL\": 6, \"POP2000\": 15408, \"WHITE\": 6632, \"BLACK\": 710, \"AMERI_ES\": 48, \"ASIAN\": 6900, \"HAWN_PI\": 45, \"OTHER\": 534, \"MULT_RACE\": 539, \"HISPANIC\": 1736, \"MALES\": 7527, \"FEMALES\": 7881, \"AGE_UNDER5\": 867, \"AGE_5_17\": 2798, \"AGE_18_21\": 813, \"AGE_22_29\": 1489, \"AGE_30_39\": 2263, \"AGE_40_49\": 2401, \"AGE_50_64\": 3202, \"AGE_65_UP\": 1575, \"MED_AGE\": 38.100000, \"MED_AGE_M\": 37.300000, \"MED_AGE_F\": 38.700000, \"HOUSEHOLDS\": 4979, \"AVE_HH_SZ\": 3.090000, \"HSEHLD_1_M\": 237, \"HSEHLD_1_F\": 339, \"MARHH_CHD\": 1560, \"MARHH_NO_C\": 1902, \"MHH_CHILD\": 86, \"FHH_CHILD\": 213, \"FAMILIES\": 4225, \"AVE_FAM_SZ\": 3.350000, \"HSE_UNITS\": 5066, \"VACANT\": 87, \"OWNER_OCC\": 3689, \"RENTER_OCC\": 1290 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.042810155405689, 33.849466738853259 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"La Presa\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"40326\", \"CAPITAL\": \"N\", \"AREALAND\": 5.599000, \"AREAWATER\": 0.577000, \"POP_CL\": 6, \"POP2000\": 32721, \"WHITE\": 16428, \"BLACK\": 4739, \"AMERI_ES\": 288, \"ASIAN\": 3215, \"HAWN_PI\": 370, \"OTHER\": 5349, \"MULT_RACE\": 2332, \"HISPANIC\": 10813, \"MALES\": 15962, \"FEMALES\": 16759, \"AGE_UNDER5\": 2587, \"AGE_5_17\": 7659, \"AGE_18_21\": 1839, \"AGE_22_29\": 3404, \"AGE_30_39\": 5155, \"AGE_40_49\": 4855, \"AGE_50_64\": 4182, \"AGE_65_UP\": 3040, \"MED_AGE\": 31.800000, \"MED_AGE_M\": 30.600000, \"MED_AGE_F\": 33.000000, \"HOUSEHOLDS\": 10008, \"AVE_HH_SZ\": 3.250000, \"HSEHLD_1_M\": 629, \"HSEHLD_1_F\": 829, \"MARHH_CHD\": 3055, \"MARHH_NO_C\": 2712, \"MHH_CHILD\": 304, \"FHH_CHILD\": 993, \"FAMILIES\": 7988, \"AVE_FAM_SZ\": 3.550000, \"HSE_UNITS\": 10236, \"VACANT\": 228, \"OWNER_OCC\": 6587, \"RENTER_OCC\": 3421 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.003175597380945, 32.712139050800296 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"La Puente\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"40340\", \"CAPITAL\": \"N\", \"AREALAND\": 3.493000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 41063, \"WHITE\": 16060, \"BLACK\": 804, \"AMERI_ES\": 524, \"ASIAN\": 2940, \"HAWN_PI\": 68, \"OTHER\": 18535, \"MULT_RACE\": 2132, \"HISPANIC\": 34122, \"MALES\": 20543, \"FEMALES\": 20520, \"AGE_UNDER5\": 3711, \"AGE_5_17\": 10174, \"AGE_18_21\": 2700, \"AGE_22_29\": 5532, \"AGE_30_39\": 6491, \"AGE_40_49\": 5048, \"AGE_50_64\": 4259, \"AGE_65_UP\": 3148, \"MED_AGE\": 27.700000, \"MED_AGE_M\": 27.200000, \"MED_AGE_F\": 28.300000, \"HOUSEHOLDS\": 9461, \"AVE_HH_SZ\": 4.340000, \"HSEHLD_1_M\": 428, \"HSEHLD_1_F\": 527, \"MARHH_CHD\": 3558, \"MARHH_NO_C\": 2153, \"MHH_CHILD\": 327, \"FHH_CHILD\": 847, \"FAMILIES\": 8182, \"AVE_FAM_SZ\": 4.480000, \"HSE_UNITS\": 9660, \"VACANT\": 199, \"OWNER_OCC\": 5760, \"RENTER_OCC\": 3701 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.954080345738518, 34.032545261288547 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"La Quinta\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"40354\", \"CAPITAL\": \"N\", \"AREALAND\": 31.752000, \"AREAWATER\": 0.440000, \"POP_CL\": 6, \"POP2000\": 23694, \"WHITE\": 18602, \"BLACK\": 336, \"AMERI_ES\": 171, \"ASIAN\": 446, \"HAWN_PI\": 21, \"OTHER\": 3282, \"MULT_RACE\": 836, \"HISPANIC\": 7584, \"MALES\": 11619, \"FEMALES\": 12075, \"AGE_UNDER5\": 1847, \"AGE_5_17\": 5058, \"AGE_18_21\": 890, \"AGE_22_29\": 1763, \"AGE_30_39\": 3806, \"AGE_40_49\": 3305, \"AGE_50_64\": 3852, \"AGE_65_UP\": 3173, \"MED_AGE\": 36.400000, \"MED_AGE_M\": 35.600000, \"MED_AGE_F\": 37.000000, \"HOUSEHOLDS\": 8445, \"AVE_HH_SZ\": 2.800000, \"HSEHLD_1_M\": 578, \"HSEHLD_1_F\": 856, \"MARHH_CHD\": 2489, \"MARHH_NO_C\": 2965, \"MHH_CHILD\": 203, \"FHH_CHILD\": 527, \"FAMILIES\": 6556, \"AVE_FAM_SZ\": 3.160000, \"HSE_UNITS\": 11812, \"VACANT\": 3367, \"OWNER_OCC\": 6879, \"RENTER_OCC\": 1566 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -116.296846272553708, 33.675433999261735 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"La Riviera\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"40410\", \"CAPITAL\": \"N\", \"AREALAND\": 1.819000, \"AREAWATER\": 0.192000, \"POP_CL\": 6, \"POP2000\": 10273, \"WHITE\": 7444, \"BLACK\": 872, \"AMERI_ES\": 65, \"ASIAN\": 819, \"HAWN_PI\": 59, \"OTHER\": 436, \"MULT_RACE\": 578, \"HISPANIC\": 1165, \"MALES\": 5119, \"FEMALES\": 5154, \"AGE_UNDER5\": 576, \"AGE_5_17\": 1462, \"AGE_18_21\": 665, \"AGE_22_29\": 1729, \"AGE_30_39\": 1670, \"AGE_40_49\": 1494, \"AGE_50_64\": 1672, \"AGE_65_UP\": 1005, \"MED_AGE\": 34.100000, \"MED_AGE_M\": 32.800000, \"MED_AGE_F\": 35.700000, \"HOUSEHOLDS\": 4345, \"AVE_HH_SZ\": 2.360000, \"HSEHLD_1_M\": 610, \"HSEHLD_1_F\": 663, \"MARHH_CHD\": 649, \"MARHH_NO_C\": 1097, \"MHH_CHILD\": 93, \"FHH_CHILD\": 296, \"FAMILIES\": 2479, \"AVE_FAM_SZ\": 2.920000, \"HSE_UNITS\": 4488, \"VACANT\": 143, \"OWNER_OCC\": 2458, \"RENTER_OCC\": 1887 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.351289707584016, 38.567448539979416 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Larkspur\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"40438\", \"CAPITAL\": \"N\", \"AREALAND\": 3.134000, \"AREAWATER\": 0.135000, \"POP_CL\": 6, \"POP2000\": 12014, \"WHITE\": 10963, \"BLACK\": 96, \"AMERI_ES\": 26, \"ASIAN\": 466, \"HAWN_PI\": 15, \"OTHER\": 131, \"MULT_RACE\": 317, \"HISPANIC\": 515, \"MALES\": 5439, \"FEMALES\": 6575, \"AGE_UNDER5\": 560, \"AGE_5_17\": 1406, \"AGE_18_21\": 198, \"AGE_22_29\": 699, \"AGE_30_39\": 1820, \"AGE_40_49\": 2252, \"AGE_50_64\": 2709, \"AGE_65_UP\": 2370, \"MED_AGE\": 45.900000, \"MED_AGE_M\": 44.200000, \"MED_AGE_F\": 47.100000, \"HOUSEHOLDS\": 6142, \"AVE_HH_SZ\": 1.930000, \"HSEHLD_1_M\": 932, \"HSEHLD_1_F\": 1718, \"MARHH_CHD\": 893, \"MARHH_NO_C\": 1468, \"MHH_CHILD\": 76, \"FHH_CHILD\": 211, \"FAMILIES\": 2901, \"AVE_FAM_SZ\": 2.690000, \"HSE_UNITS\": 6413, \"VACANT\": 271, \"OWNER_OCC\": 3081, \"RENTER_OCC\": 3061 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.522200834838003, 37.942128162337617 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lathrop\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"40704\", \"CAPITAL\": \"N\", \"AREALAND\": 16.381000, \"AREAWATER\": 0.340000, \"POP_CL\": 6, \"POP2000\": 10445, \"WHITE\": 5319, \"BLACK\": 469, \"AMERI_ES\": 126, \"ASIAN\": 1395, \"HAWN_PI\": 56, \"OTHER\": 2205, \"MULT_RACE\": 875, \"HISPANIC\": 4031, \"MALES\": 5300, \"FEMALES\": 5145, \"AGE_UNDER5\": 919, \"AGE_5_17\": 2720, \"AGE_18_21\": 577, \"AGE_22_29\": 1004, \"AGE_30_39\": 1845, \"AGE_40_49\": 1544, \"AGE_50_64\": 1205, \"AGE_65_UP\": 631, \"MED_AGE\": 30.000000, \"MED_AGE_M\": 29.200000, \"MED_AGE_F\": 30.900000, \"HOUSEHOLDS\": 2908, \"AVE_HH_SZ\": 3.590000, \"HSEHLD_1_M\": 152, \"HSEHLD_1_F\": 149, \"MARHH_CHD\": 1158, \"MARHH_NO_C\": 757, \"MHH_CHILD\": 104, \"FHH_CHILD\": 224, \"FAMILIES\": 2483, \"AVE_FAM_SZ\": 3.820000, \"HSE_UNITS\": 2991, \"VACANT\": 83, \"OWNER_OCC\": 2319, \"RENTER_OCC\": 589 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.283519992309252, 37.81754676552945 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"La Verne\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"40830\", \"CAPITAL\": \"N\", \"AREALAND\": 8.313000, \"AREAWATER\": 0.101000, \"POP_CL\": 6, \"POP2000\": 31638, \"WHITE\": 24379, \"BLACK\": 1016, \"AMERI_ES\": 203, \"ASIAN\": 2278, \"HAWN_PI\": 55, \"OTHER\": 2348, \"MULT_RACE\": 1359, \"HISPANIC\": 7315, \"MALES\": 15218, \"FEMALES\": 16420, \"AGE_UNDER5\": 1830, \"AGE_5_17\": 6145, \"AGE_18_21\": 2049, \"AGE_22_29\": 2610, \"AGE_30_39\": 4356, \"AGE_40_49\": 5264, \"AGE_50_64\": 5224, \"AGE_65_UP\": 4160, \"MED_AGE\": 37.700000, \"MED_AGE_M\": 36.300000, \"MED_AGE_F\": 39.000000, \"HOUSEHOLDS\": 11070, \"AVE_HH_SZ\": 2.790000, \"HSEHLD_1_M\": 757, \"HSEHLD_1_F\": 1413, \"MARHH_CHD\": 3087, \"MARHH_NO_C\": 3552, \"MHH_CHILD\": 213, \"FHH_CHILD\": 627, \"FAMILIES\": 8344, \"AVE_FAM_SZ\": 3.230000, \"HSE_UNITS\": 11286, \"VACANT\": 216, \"OWNER_OCC\": 8582, \"RENTER_OCC\": 2488 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.770307652220595, 34.114485805776908 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lawndale\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"40886\", \"CAPITAL\": \"N\", \"AREALAND\": 1.977000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 31711, \"WHITE\": 13394, \"BLACK\": 3998, \"AMERI_ES\": 313, \"ASIAN\": 3055, \"HAWN_PI\": 289, \"OTHER\": 8584, \"MULT_RACE\": 2078, \"HISPANIC\": 16515, \"MALES\": 16036, \"FEMALES\": 15675, \"AGE_UNDER5\": 2950, \"AGE_5_17\": 7152, \"AGE_18_21\": 1732, \"AGE_22_29\": 4476, \"AGE_30_39\": 6022, \"AGE_40_49\": 4208, \"AGE_50_64\": 3383, \"AGE_65_UP\": 1788, \"MED_AGE\": 29.300000, \"MED_AGE_M\": 28.600000, \"MED_AGE_F\": 30.000000, \"HOUSEHOLDS\": 9555, \"AVE_HH_SZ\": 3.310000, \"HSEHLD_1_M\": 968, \"HSEHLD_1_F\": 833, \"MARHH_CHD\": 2829, \"MARHH_NO_C\": 1548, \"MHH_CHILD\": 406, \"FHH_CHILD\": 1111, \"FAMILIES\": 7025, \"AVE_FAM_SZ\": 3.800000, \"HSE_UNITS\": 9869, \"VACANT\": 314, \"OWNER_OCC\": 3177, \"RENTER_OCC\": 6378 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.352260754219458, 33.886924886867725 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lemon Grove\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"41124\", \"CAPITAL\": \"N\", \"AREALAND\": 3.800000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 24918, \"WHITE\": 14859, \"BLACK\": 3010, \"AMERI_ES\": 273, \"ASIAN\": 1433, \"HAWN_PI\": 209, \"OTHER\": 3364, \"MULT_RACE\": 1770, \"HISPANIC\": 7107, \"MALES\": 12070, \"FEMALES\": 12848, \"AGE_UNDER5\": 1714, \"AGE_5_17\": 5172, \"AGE_18_21\": 1323, \"AGE_22_29\": 2639, \"AGE_30_39\": 3814, \"AGE_40_49\": 4071, \"AGE_50_64\": 3188, \"AGE_65_UP\": 2997, \"MED_AGE\": 34.700000, \"MED_AGE_M\": 33.400000, \"MED_AGE_F\": 35.800000, \"HOUSEHOLDS\": 8488, \"AVE_HH_SZ\": 2.870000, \"HSEHLD_1_M\": 811, \"HSEHLD_1_F\": 1087, \"MARHH_CHD\": 2082, \"MARHH_NO_C\": 2079, \"MHH_CHILD\": 259, \"FHH_CHILD\": 751, \"FAMILIES\": 5960, \"AVE_FAM_SZ\": 3.360000, \"HSE_UNITS\": 8722, \"VACANT\": 234, \"OWNER_OCC\": 4776, \"RENTER_OCC\": 3712 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.033005890919014, 32.733534302289605 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lemoore\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"41152\", \"CAPITAL\": \"N\", \"AREALAND\": 8.452000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 19712, \"WHITE\": 11687, \"BLACK\": 1435, \"AMERI_ES\": 313, \"ASIAN\": 1649, \"HAWN_PI\": 65, \"OTHER\": 3420, \"MULT_RACE\": 1143, \"HISPANIC\": 6013, \"MALES\": 9768, \"FEMALES\": 9944, \"AGE_UNDER5\": 1895, \"AGE_5_17\": 4933, \"AGE_18_21\": 1300, \"AGE_22_29\": 2392, \"AGE_30_39\": 3154, \"AGE_40_49\": 2720, \"AGE_50_64\": 2069, \"AGE_65_UP\": 1249, \"MED_AGE\": 27.800000, \"MED_AGE_M\": 27.200000, \"MED_AGE_F\": 28.500000, \"HOUSEHOLDS\": 6450, \"AVE_HH_SZ\": 3.060000, \"HSEHLD_1_M\": 553, \"HSEHLD_1_F\": 568, \"MARHH_CHD\": 2082, \"MARHH_NO_C\": 1467, \"MHH_CHILD\": 259, \"FHH_CHILD\": 757, \"FAMILIES\": 4926, \"AVE_FAM_SZ\": 3.460000, \"HSE_UNITS\": 6823, \"VACANT\": 373, \"OWNER_OCC\": 3522, \"RENTER_OCC\": 2928 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -119.783789437075512, 36.304203077055909 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lennox\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"41180\", \"CAPITAL\": \"N\", \"AREALAND\": 1.080000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 22950, \"WHITE\": 7275, \"BLACK\": 952, \"AMERI_ES\": 234, \"ASIAN\": 189, \"HAWN_PI\": 319, \"OTHER\": 12923, \"MULT_RACE\": 1058, \"HISPANIC\": 20602, \"MALES\": 11831, \"FEMALES\": 11119, \"AGE_UNDER5\": 2440, \"AGE_5_17\": 6502, \"AGE_18_21\": 1645, \"AGE_22_29\": 3284, \"AGE_30_39\": 3831, \"AGE_40_49\": 2646, \"AGE_50_64\": 1770, \"AGE_65_UP\": 832, \"MED_AGE\": 24.200000, \"MED_AGE_M\": 24.100000, \"MED_AGE_F\": 24.300000, \"HOUSEHOLDS\": 5049, \"AVE_HH_SZ\": 4.550000, \"HSEHLD_1_M\": 289, \"HSEHLD_1_F\": 173, \"MARHH_CHD\": 2351, \"MARHH_NO_C\": 666, \"MHH_CHILD\": 252, \"FHH_CHILD\": 624, \"FAMILIES\": 4383, \"AVE_FAM_SZ\": 4.700000, \"HSE_UNITS\": 5235, \"VACANT\": 186, \"OWNER_OCC\": 1484, \"RENTER_OCC\": 3565 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.356179969119964, 33.939974529094968 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lincoln\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"41474\", \"CAPITAL\": \"N\", \"AREALAND\": 18.291000, \"AREAWATER\": 0.021000, \"POP_CL\": 6, \"POP2000\": 11205, \"WHITE\": 8924, \"BLACK\": 49, \"AMERI_ES\": 141, \"ASIAN\": 121, \"HAWN_PI\": 16, \"OTHER\": 1509, \"MULT_RACE\": 445, \"HISPANIC\": 2911, \"MALES\": 5485, \"FEMALES\": 5720, \"AGE_UNDER5\": 921, \"AGE_5_17\": 2441, \"AGE_18_21\": 599, \"AGE_22_29\": 1186, \"AGE_30_39\": 1813, \"AGE_40_49\": 1465, \"AGE_50_64\": 1518, \"AGE_65_UP\": 1262, \"MED_AGE\": 32.400000, \"MED_AGE_M\": 31.500000, \"MED_AGE_F\": 33.500000, \"HOUSEHOLDS\": 3874, \"AVE_HH_SZ\": 2.860000, \"HSEHLD_1_M\": 265, \"HSEHLD_1_F\": 401, \"MARHH_CHD\": 1119, \"MARHH_NO_C\": 1187, \"MHH_CHILD\": 120, \"FHH_CHILD\": 329, \"FAMILIES\": 3033, \"AVE_FAM_SZ\": 3.200000, \"HSE_UNITS\": 4146, \"VACANT\": 272, \"OWNER_OCC\": 2588, \"RENTER_OCC\": 1286 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.290508349168121, 38.887786261022903 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Linda\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"41572\", \"CAPITAL\": \"N\", \"AREALAND\": 5.642000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 13474, \"WHITE\": 7393, \"BLACK\": 423, \"AMERI_ES\": 391, \"ASIAN\": 2476, \"HAWN_PI\": 28, \"OTHER\": 1838, \"MULT_RACE\": 925, \"HISPANIC\": 2984, \"MALES\": 6750, \"FEMALES\": 6724, \"AGE_UNDER5\": 1387, \"AGE_5_17\": 3654, \"AGE_18_21\": 967, \"AGE_22_29\": 1488, \"AGE_30_39\": 1744, \"AGE_40_49\": 1677, \"AGE_50_64\": 1504, \"AGE_65_UP\": 1053, \"MED_AGE\": 25.700000, \"MED_AGE_M\": 24.800000, \"MED_AGE_F\": 26.800000, \"HOUSEHOLDS\": 4072, \"AVE_HH_SZ\": 3.300000, \"HSEHLD_1_M\": 360, \"HSEHLD_1_F\": 418, \"MARHH_CHD\": 1094, \"MARHH_NO_C\": 830, \"MHH_CHILD\": 156, \"FHH_CHILD\": 556, \"FAMILIES\": 3004, \"AVE_FAM_SZ\": 3.800000, \"HSE_UNITS\": 4483, \"VACANT\": 411, \"OWNER_OCC\": 1736, \"RENTER_OCC\": 2336 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.556901492263847, 39.125926408521273 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lindsay\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"41712\", \"CAPITAL\": \"N\", \"AREALAND\": 2.415000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10297, \"WHITE\": 4616, \"BLACK\": 59, \"AMERI_ES\": 155, \"ASIAN\": 109, \"HAWN_PI\": 15, \"OTHER\": 4970, \"MULT_RACE\": 373, \"HISPANIC\": 8029, \"MALES\": 5215, \"FEMALES\": 5082, \"AGE_UNDER5\": 1141, \"AGE_5_17\": 2771, \"AGE_18_21\": 716, \"AGE_22_29\": 1261, \"AGE_30_39\": 1467, \"AGE_40_49\": 1021, \"AGE_50_64\": 984, \"AGE_65_UP\": 936, \"MED_AGE\": 25.400000, \"MED_AGE_M\": 24.700000, \"MED_AGE_F\": 26.300000, \"HOUSEHOLDS\": 2717, \"AVE_HH_SZ\": 3.740000, \"HSEHLD_1_M\": 166, \"HSEHLD_1_F\": 266, \"MARHH_CHD\": 1044, \"MARHH_NO_C\": 509, \"MHH_CHILD\": 107, \"FHH_CHILD\": 301, \"FAMILIES\": 2209, \"AVE_FAM_SZ\": 4.160000, \"HSE_UNITS\": 2865, \"VACANT\": 148, \"OWNER_OCC\": 1525, \"RENTER_OCC\": 1192 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -119.086789198746729, 36.207415169428053 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Live Oak\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"41922\", \"CAPITAL\": \"N\", \"AREALAND\": 3.234000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 16628, \"WHITE\": 12905, \"BLACK\": 227, \"AMERI_ES\": 169, \"ASIAN\": 636, \"HAWN_PI\": 18, \"OTHER\": 1840, \"MULT_RACE\": 833, \"HISPANIC\": 3655, \"MALES\": 8092, \"FEMALES\": 8536, \"AGE_UNDER5\": 983, \"AGE_5_17\": 2920, \"AGE_18_21\": 887, \"AGE_22_29\": 1804, \"AGE_30_39\": 2761, \"AGE_40_49\": 2955, \"AGE_50_64\": 2374, \"AGE_65_UP\": 1944, \"MED_AGE\": 36.400000, \"MED_AGE_M\": 34.700000, \"MED_AGE_F\": 38.100000, \"HOUSEHOLDS\": 6216, \"AVE_HH_SZ\": 2.580000, \"HSEHLD_1_M\": 635, \"HSEHLD_1_F\": 1035, \"MARHH_CHD\": 1324, \"MARHH_NO_C\": 1296, \"MHH_CHILD\": 192, \"FHH_CHILD\": 522, \"FAMILIES\": 3786, \"AVE_FAM_SZ\": 3.110000, \"HSE_UNITS\": 6405, \"VACANT\": 189, \"OWNER_OCC\": 3578, \"RENTER_OCC\": 2638 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.974238687788443, 36.982187820544226 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Livermore\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"41992\", \"CAPITAL\": \"N\", \"AREALAND\": 23.924000, \"AREAWATER\": 0.003000, \"POP_CL\": 7, \"POP2000\": 73345, \"WHITE\": 60070, \"BLACK\": 1148, \"AMERI_ES\": 444, \"ASIAN\": 4251, \"HAWN_PI\": 208, \"OTHER\": 3915, \"MULT_RACE\": 3309, \"HISPANIC\": 10541, \"MALES\": 36664, \"FEMALES\": 36681, \"AGE_UNDER5\": 5650, \"AGE_5_17\": 14990, \"AGE_18_21\": 3065, \"AGE_22_29\": 6654, \"AGE_30_39\": 14242, \"AGE_40_49\": 12499, \"AGE_50_64\": 10729, \"AGE_65_UP\": 5516, \"MED_AGE\": 35.000000, \"MED_AGE_M\": 34.500000, \"MED_AGE_F\": 35.300000, \"HOUSEHOLDS\": 26123, \"AVE_HH_SZ\": 2.800000, \"HSEHLD_1_M\": 2338, \"HSEHLD_1_F\": 2577, \"MARHH_CHD\": 8394, \"MARHH_NO_C\": 7559, \"MHH_CHILD\": 640, \"FHH_CHILD\": 1458, \"FAMILIES\": 19512, \"AVE_FAM_SZ\": 3.200000, \"HSE_UNITS\": 26610, \"VACANT\": 487, \"OWNER_OCC\": 18851, \"RENTER_OCC\": 7272 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.758070523884115, 37.686270246419227 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Livingston\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"42006\", \"CAPITAL\": \"N\", \"AREALAND\": 3.468000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10473, \"WHITE\": 3825, \"BLACK\": 77, \"AMERI_ES\": 97, \"ASIAN\": 1513, \"HAWN_PI\": 8, \"OTHER\": 4350, \"MULT_RACE\": 603, \"HISPANIC\": 7521, \"MALES\": 5263, \"FEMALES\": 5210, \"AGE_UNDER5\": 1000, \"AGE_5_17\": 2947, \"AGE_18_21\": 830, \"AGE_22_29\": 1226, \"AGE_30_39\": 1530, \"AGE_40_49\": 1192, \"AGE_50_64\": 1079, \"AGE_65_UP\": 669, \"MED_AGE\": 24.900000, \"MED_AGE_M\": 24.200000, \"MED_AGE_F\": 25.700000, \"HOUSEHOLDS\": 2390, \"AVE_HH_SZ\": 4.370000, \"HSEHLD_1_M\": 91, \"HSEHLD_1_F\": 117, \"MARHH_CHD\": 1134, \"MARHH_NO_C\": 497, \"MHH_CHILD\": 103, \"FHH_CHILD\": 214, \"FAMILIES\": 2143, \"AVE_FAM_SZ\": 4.570000, \"HSE_UNITS\": 2449, \"VACANT\": 59, \"OWNER_OCC\": 1476, \"RENTER_OCC\": 914 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -120.71753854776783, 37.385033602981089 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lodi\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"42202\", \"CAPITAL\": \"N\", \"AREALAND\": 12.237000, \"AREAWATER\": 0.106000, \"POP_CL\": 7, \"POP2000\": 56999, \"WHITE\": 42421, \"BLACK\": 344, \"AMERI_ES\": 494, \"ASIAN\": 2881, \"HAWN_PI\": 68, \"OTHER\": 7972, \"MULT_RACE\": 2819, \"HISPANIC\": 15464, \"MALES\": 27819, \"FEMALES\": 29180, \"AGE_UNDER5\": 4495, \"AGE_5_17\": 11596, \"AGE_18_21\": 3100, \"AGE_22_29\": 6128, \"AGE_30_39\": 8076, \"AGE_40_49\": 7965, \"AGE_50_64\": 7498, \"AGE_65_UP\": 8141, \"MED_AGE\": 34.100000, \"MED_AGE_M\": 32.100000, \"MED_AGE_F\": 36.100000, \"HOUSEHOLDS\": 20692, \"AVE_HH_SZ\": 2.710000, \"HSEHLD_1_M\": 2017, \"HSEHLD_1_F\": 3242, \"MARHH_CHD\": 5150, \"MARHH_NO_C\": 5545, \"MHH_CHILD\": 621, \"FHH_CHILD\": 1629, \"FAMILIES\": 14349, \"AVE_FAM_SZ\": 3.250000, \"HSE_UNITS\": 21378, \"VACANT\": 686, \"OWNER_OCC\": 11308, \"RENTER_OCC\": 9384 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.275730480260009, 38.129397849201865 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Loma Linda\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"42370\", \"CAPITAL\": \"N\", \"AREALAND\": 7.350000, \"AREAWATER\": 0.002000, \"POP_CL\": 6, \"POP2000\": 18681, \"WHITE\": 10121, \"BLACK\": 1347, \"AMERI_ES\": 92, \"ASIAN\": 4555, \"HAWN_PI\": 33, \"OTHER\": 1403, \"MULT_RACE\": 1130, \"HISPANIC\": 3050, \"MALES\": 8659, \"FEMALES\": 10022, \"AGE_UNDER5\": 1152, \"AGE_5_17\": 2948, \"AGE_18_21\": 849, \"AGE_22_29\": 3191, \"AGE_30_39\": 2745, \"AGE_40_49\": 2462, \"AGE_50_64\": 2449, \"AGE_65_UP\": 2885, \"MED_AGE\": 34.000000, \"MED_AGE_M\": 32.200000, \"MED_AGE_F\": 35.500000, \"HOUSEHOLDS\": 7536, \"AVE_HH_SZ\": 2.410000, \"HSEHLD_1_M\": 850, \"HSEHLD_1_F\": 1501, \"MARHH_CHD\": 1407, \"MARHH_NO_C\": 1888, \"MHH_CHILD\": 132, \"FHH_CHILD\": 501, \"FAMILIES\": 4499, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 8084, \"VACANT\": 548, \"OWNER_OCC\": 2883, \"RENTER_OCC\": 4653 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.249811885754781, 34.048461800734117 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lomita\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"42468\", \"CAPITAL\": \"N\", \"AREALAND\": 1.896000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 20046, \"WHITE\": 13263, \"BLACK\": 838, \"AMERI_ES\": 141, \"ASIAN\": 2287, \"HAWN_PI\": 105, \"OTHER\": 2163, \"MULT_RACE\": 1249, \"HISPANIC\": 5252, \"MALES\": 9616, \"FEMALES\": 10430, \"AGE_UNDER5\": 1577, \"AGE_5_17\": 3536, \"AGE_18_21\": 811, \"AGE_22_29\": 2177, \"AGE_30_39\": 3543, \"AGE_40_49\": 3293, \"AGE_50_64\": 2929, \"AGE_65_UP\": 2180, \"MED_AGE\": 35.500000, \"MED_AGE_M\": 34.200000, \"MED_AGE_F\": 36.500000, \"HOUSEHOLDS\": 8015, \"AVE_HH_SZ\": 2.480000, \"HSEHLD_1_M\": 1084, \"HSEHLD_1_F\": 1368, \"MARHH_CHD\": 1715, \"MARHH_NO_C\": 1732, \"MHH_CHILD\": 222, \"FHH_CHILD\": 697, \"FAMILIES\": 5035, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 8295, \"VACANT\": 280, \"OWNER_OCC\": 3739, \"RENTER_OCC\": 4276 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.314842204052511, 33.793541589531294 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lompoc\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"42524\", \"CAPITAL\": \"N\", \"AREALAND\": 11.637000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 41103, \"WHITE\": 27050, \"BLACK\": 3017, \"AMERI_ES\": 651, \"ASIAN\": 1605, \"HAWN_PI\": 133, \"OTHER\": 6446, \"MULT_RACE\": 2201, \"HISPANIC\": 15337, \"MALES\": 21806, \"FEMALES\": 19297, \"AGE_UNDER5\": 3273, \"AGE_5_17\": 9037, \"AGE_18_21\": 2070, \"AGE_22_29\": 4673, \"AGE_30_39\": 7123, \"AGE_40_49\": 6132, \"AGE_50_64\": 4939, \"AGE_65_UP\": 3856, \"MED_AGE\": 32.200000, \"MED_AGE_M\": 32.000000, \"MED_AGE_F\": 32.500000, \"HOUSEHOLDS\": 13059, \"AVE_HH_SZ\": 2.880000, \"HSEHLD_1_M\": 1421, \"HSEHLD_1_F\": 1645, \"MARHH_CHD\": 3607, \"MARHH_NO_C\": 3053, \"MHH_CHILD\": 454, \"FHH_CHILD\": 1301, \"FAMILIES\": 9310, \"AVE_FAM_SZ\": 3.420000, \"HSE_UNITS\": 13621, \"VACANT\": 562, \"OWNER_OCC\": 6733, \"RENTER_OCC\": 6326 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -120.457237959039546, 34.646592564516737 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Long Beach\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"43000\", \"CAPITAL\": \"N\", \"AREALAND\": 50.440000, \"AREAWATER\": 15.426000, \"POP_CL\": 8, \"POP2000\": 461522, \"WHITE\": 208410, \"BLACK\": 68618, \"AMERI_ES\": 3881, \"ASIAN\": 55591, \"HAWN_PI\": 5605, \"OTHER\": 95107, \"MULT_RACE\": 24310, \"HISPANIC\": 165092, \"MALES\": 226718, \"FEMALES\": 234804, \"AGE_UNDER5\": 38587, \"AGE_5_17\": 96052, \"AGE_18_21\": 28407, \"AGE_22_29\": 60845, \"AGE_30_39\": 78928, \"AGE_40_49\": 63068, \"AGE_50_64\": 53733, \"AGE_65_UP\": 41902, \"MED_AGE\": 30.800000, \"MED_AGE_M\": 30.300000, \"MED_AGE_F\": 31.200000, \"HOUSEHOLDS\": 163088, \"AVE_HH_SZ\": 2.770000, \"HSEHLD_1_M\": 23629, \"HSEHLD_1_F\": 24578, \"MARHH_CHD\": 35152, \"MARHH_NO_C\": 28857, \"MHH_CHILD\": 4662, \"FHH_CHILD\": 17266, \"FAMILIES\": 99663, \"AVE_FAM_SZ\": 3.550000, \"HSE_UNITS\": 171632, \"VACANT\": 8544, \"OWNER_OCC\": 66928, \"RENTER_OCC\": 96160 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.156837220969535, 33.804279849168232 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Los Alamitos\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"43224\", \"CAPITAL\": \"N\", \"AREALAND\": 4.012000, \"AREAWATER\": 0.083000, \"POP_CL\": 6, \"POP2000\": 11536, \"WHITE\": 8879, \"BLACK\": 369, \"AMERI_ES\": 67, \"ASIAN\": 1095, \"HAWN_PI\": 38, \"OTHER\": 619, \"MULT_RACE\": 469, \"HISPANIC\": 1848, \"MALES\": 5466, \"FEMALES\": 6070, \"AGE_UNDER5\": 573, \"AGE_5_17\": 2339, \"AGE_18_21\": 539, \"AGE_22_29\": 1096, \"AGE_30_39\": 1786, \"AGE_40_49\": 1897, \"AGE_50_64\": 1602, \"AGE_65_UP\": 1704, \"MED_AGE\": 37.300000, \"MED_AGE_M\": 35.600000, \"MED_AGE_F\": 38.800000, \"HOUSEHOLDS\": 4246, \"AVE_HH_SZ\": 2.620000, \"HSEHLD_1_M\": 383, \"HSEHLD_1_F\": 542, \"MARHH_CHD\": 984, \"MARHH_NO_C\": 1069, \"MHH_CHILD\": 137, \"FHH_CHILD\": 432, \"FAMILIES\": 3037, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 4329, \"VACANT\": 83, \"OWNER_OCC\": 1921, \"RENTER_OCC\": 2325 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.06330141849449, 33.802456760618448 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Los Altos\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"43280\", \"CAPITAL\": \"N\", \"AREALAND\": 6.351000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 27693, \"WHITE\": 22250, \"BLACK\": 130, \"AMERI_ES\": 48, \"ASIAN\": 4271, \"HAWN_PI\": 45, \"OTHER\": 183, \"MULT_RACE\": 766, \"HISPANIC\": 822, \"MALES\": 13352, \"FEMALES\": 14341, \"AGE_UNDER5\": 1629, \"AGE_5_17\": 4932, \"AGE_18_21\": 556, \"AGE_22_29\": 1112, \"AGE_30_39\": 3386, \"AGE_40_49\": 5077, \"AGE_50_64\": 5655, \"AGE_65_UP\": 5346, \"MED_AGE\": 44.200000, \"MED_AGE_M\": 43.700000, \"MED_AGE_F\": 44.600000, \"HOUSEHOLDS\": 10462, \"AVE_HH_SZ\": 2.610000, \"HSEHLD_1_M\": 704, \"HSEHLD_1_F\": 1251, \"MARHH_CHD\": 3188, \"MARHH_NO_C\": 4076, \"MHH_CHILD\": 97, \"FHH_CHILD\": 232, \"FAMILIES\": 8026, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 10727, \"VACANT\": 265, \"OWNER_OCC\": 8954, \"RENTER_OCC\": 1508 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.090850595206859, 37.369064532686174 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Los Angeles\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"44000\", \"CAPITAL\": \"N\", \"AREALAND\": 469.072000, \"AREAWATER\": 29.216000, \"POP_CL\": 10, \"POP2000\": 3694820, \"WHITE\": 1734036, \"BLACK\": 415195, \"AMERI_ES\": 29412, \"ASIAN\": 369254, \"HAWN_PI\": 5915, \"OTHER\": 949720, \"MULT_RACE\": 191288, \"HISPANIC\": 1719073, \"MALES\": 1841805, \"FEMALES\": 1853015, \"AGE_UNDER5\": 285976, \"AGE_5_17\": 695335, \"AGE_18_21\": 226327, \"AGE_22_29\": 522360, \"AGE_30_39\": 644779, \"AGE_40_49\": 508091, \"AGE_50_64\": 454823, \"AGE_65_UP\": 357129, \"MED_AGE\": 31.600000, \"MED_AGE_M\": 30.800000, \"MED_AGE_F\": 32.600000, \"HOUSEHOLDS\": 1275412, \"AVE_HH_SZ\": 2.830000, \"HSEHLD_1_M\": 175968, \"HSEHLD_1_F\": 187489, \"MARHH_CHD\": 288841, \"MARHH_NO_C\": 246150, \"MHH_CHILD\": 33574, \"FHH_CHILD\": 104867, \"FAMILIES\": 798719, \"AVE_FAM_SZ\": 3.560000, \"HSE_UNITS\": 1337706, \"VACANT\": 62294, \"OWNER_OCC\": 491882, \"RENTER_OCC\": 783530 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.374659049186917, 34.086322866817625 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Los Banos\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"44028\", \"CAPITAL\": \"N\", \"AREALAND\": 8.037000, \"AREAWATER\": 0.124000, \"POP_CL\": 6, \"POP2000\": 25869, \"WHITE\": 15161, \"BLACK\": 1100, \"AMERI_ES\": 350, \"ASIAN\": 606, \"HAWN_PI\": 85, \"OTHER\": 6960, \"MULT_RACE\": 1607, \"HISPANIC\": 13048, \"MALES\": 12871, \"FEMALES\": 12998, \"AGE_UNDER5\": 2422, \"AGE_5_17\": 6667, \"AGE_18_21\": 1389, \"AGE_22_29\": 2579, \"AGE_30_39\": 3989, \"AGE_40_49\": 3618, \"AGE_50_64\": 2810, \"AGE_65_UP\": 2395, \"MED_AGE\": 29.700000, \"MED_AGE_M\": 28.900000, \"MED_AGE_F\": 30.300000, \"HOUSEHOLDS\": 7721, \"AVE_HH_SZ\": 3.330000, \"HSEHLD_1_M\": 537, \"HSEHLD_1_F\": 683, \"MARHH_CHD\": 2895, \"MARHH_NO_C\": 1933, \"MHH_CHILD\": 279, \"FHH_CHILD\": 604, \"FAMILIES\": 6225, \"AVE_FAM_SZ\": 3.690000, \"HSE_UNITS\": 8049, \"VACANT\": 328, \"OWNER_OCC\": 5242, \"RENTER_OCC\": 2479 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -120.84002663007395, 37.062880077156613 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Los Gatos\", \"CLASS\": \"town\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"44112\", \"CAPITAL\": \"N\", \"AREALAND\": 10.712000, \"AREAWATER\": 0.101000, \"POP_CL\": 6, \"POP2000\": 28592, \"WHITE\": 24784, \"BLACK\": 226, \"AMERI_ES\": 87, \"ASIAN\": 2173, \"HAWN_PI\": 21, \"OTHER\": 366, \"MULT_RACE\": 935, \"HISPANIC\": 1491, \"MALES\": 13576, \"FEMALES\": 15016, \"AGE_UNDER5\": 1419, \"AGE_5_17\": 4633, \"AGE_18_21\": 682, \"AGE_22_29\": 2048, \"AGE_30_39\": 4852, \"AGE_40_49\": 4988, \"AGE_50_64\": 5586, \"AGE_65_UP\": 4384, \"MED_AGE\": 41.200000, \"MED_AGE_M\": 40.000000, \"MED_AGE_F\": 42.400000, \"HOUSEHOLDS\": 11988, \"AVE_HH_SZ\": 2.330000, \"HSEHLD_1_M\": 1378, \"HSEHLD_1_F\": 2187, \"MARHH_CHD\": 2617, \"MARHH_NO_C\": 3487, \"MHH_CHILD\": 177, \"FHH_CHILD\": 474, \"FAMILIES\": 7303, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 12367, \"VACANT\": 379, \"OWNER_OCC\": 7827, \"RENTER_OCC\": 4161 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.955474343199313, 37.236869515080777 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lynwood\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"44574\", \"CAPITAL\": \"N\", \"AREALAND\": 4.854000, \"AREAWATER\": 0.000000, \"POP_CL\": 7, \"POP2000\": 69845, \"WHITE\": 23481, \"BLACK\": 9451, \"AMERI_ES\": 839, \"ASIAN\": 533, \"HAWN_PI\": 269, \"OTHER\": 32225, \"MULT_RACE\": 3047, \"HISPANIC\": 57503, \"MALES\": 35702, \"FEMALES\": 34143, \"AGE_UNDER5\": 7401, \"AGE_5_17\": 19168, \"AGE_18_21\": 5268, \"AGE_22_29\": 10110, \"AGE_30_39\": 11074, \"AGE_40_49\": 8039, \"AGE_50_64\": 5854, \"AGE_65_UP\": 2931, \"MED_AGE\": 24.400000, \"MED_AGE_M\": 23.900000, \"MED_AGE_F\": 24.900000, \"HOUSEHOLDS\": 14395, \"AVE_HH_SZ\": 4.700000, \"HSEHLD_1_M\": 486, \"HSEHLD_1_F\": 623, \"MARHH_CHD\": 6553, \"MARHH_NO_C\": 2163, \"MHH_CHILD\": 669, \"FHH_CHILD\": 1918, \"FAMILIES\": 12943, \"AVE_FAM_SZ\": 4.760000, \"HSE_UNITS\": 14987, \"VACANT\": 592, \"OWNER_OCC\": 6785, \"RENTER_OCC\": 7610 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.200639922051764, 33.924792541445264 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"McKinleyville\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"44910\", \"CAPITAL\": \"N\", \"AREALAND\": 20.876000, \"AREAWATER\": 1.923000, \"POP_CL\": 6, \"POP2000\": 13599, \"WHITE\": 11918, \"BLACK\": 52, \"AMERI_ES\": 620, \"ASIAN\": 145, \"HAWN_PI\": 8, \"OTHER\": 226, \"MULT_RACE\": 630, \"HISPANIC\": 589, \"MALES\": 6658, \"FEMALES\": 6941, \"AGE_UNDER5\": 912, \"AGE_5_17\": 2673, \"AGE_18_21\": 720, \"AGE_22_29\": 1510, \"AGE_30_39\": 2009, \"AGE_40_49\": 2339, \"AGE_50_64\": 1969, \"AGE_65_UP\": 1467, \"MED_AGE\": 35.200000, \"MED_AGE_M\": 33.700000, \"MED_AGE_F\": 36.600000, \"HOUSEHOLDS\": 5277, \"AVE_HH_SZ\": 2.580000, \"HSEHLD_1_M\": 492, \"HSEHLD_1_F\": 654, \"MARHH_CHD\": 1227, \"MARHH_NO_C\": 1458, \"MHH_CHILD\": 176, \"FHH_CHILD\": 417, \"FAMILIES\": 3604, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 5494, \"VACANT\": 217, \"OWNER_OCC\": 3444, \"RENTER_OCC\": 1833 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -124.086102588544904, 40.949470360440102 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Madera\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"45022\", \"CAPITAL\": \"N\", \"AREALAND\": 12.291000, \"AREAWATER\": 0.001000, \"POP_CL\": 6, \"POP2000\": 43207, \"WHITE\": 20804, \"BLACK\": 1665, \"AMERI_ES\": 1207, \"ASIAN\": 618, \"HAWN_PI\": 44, \"OTHER\": 16425, \"MULT_RACE\": 2444, \"HISPANIC\": 29274, \"MALES\": 21904, \"FEMALES\": 21303, \"AGE_UNDER5\": 4634, \"AGE_5_17\": 10671, \"AGE_18_21\": 3089, \"AGE_22_29\": 5946, \"AGE_30_39\": 5988, \"AGE_40_49\": 4839, \"AGE_50_64\": 4227, \"AGE_65_UP\": 3813, \"MED_AGE\": 26.200000, \"MED_AGE_M\": 25.400000, \"MED_AGE_F\": 27.100000, \"HOUSEHOLDS\": 11978, \"AVE_HH_SZ\": 3.570000, \"HSEHLD_1_M\": 798, \"HSEHLD_1_F\": 1215, \"MARHH_CHD\": 3864, \"MARHH_NO_C\": 2574, \"MHH_CHILD\": 516, \"FHH_CHILD\": 1423, \"FAMILIES\": 9435, \"AVE_FAM_SZ\": 3.900000, \"HSE_UNITS\": 12521, \"VACANT\": 543, \"OWNER_OCC\": 6310, \"RENTER_OCC\": 5668 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -120.064231460924589, 36.9637897445063 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Magalia\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"45120\", \"CAPITAL\": \"N\", \"AREALAND\": 14.074000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10569, \"WHITE\": 9944, \"BLACK\": 43, \"AMERI_ES\": 127, \"ASIAN\": 62, \"HAWN_PI\": 10, \"OTHER\": 109, \"MULT_RACE\": 274, \"HISPANIC\": 516, \"MALES\": 5134, \"FEMALES\": 5435, \"AGE_UNDER5\": 470, \"AGE_5_17\": 1841, \"AGE_18_21\": 413, \"AGE_22_29\": 495, \"AGE_30_39\": 1085, \"AGE_40_49\": 1442, \"AGE_50_64\": 1921, \"AGE_65_UP\": 2902, \"MED_AGE\": 46.600000, \"MED_AGE_M\": 45.600000, \"MED_AGE_F\": 47.700000, \"HOUSEHOLDS\": 4395, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 382, \"HSEHLD_1_F\": 598, \"MARHH_CHD\": 709, \"MARHH_NO_C\": 1921, \"MHH_CHILD\": 117, \"FHH_CHILD\": 241, \"FAMILIES\": 3199, \"AVE_FAM_SZ\": 2.730000, \"HSE_UNITS\": 4752, \"VACANT\": 357, \"OWNER_OCC\": 3620, \"RENTER_OCC\": 775 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.596959053534107, 39.826780915024436 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Malibu\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"45246\", \"CAPITAL\": \"N\", \"AREALAND\": 19.870000, \"AREAWATER\": 81.094000, \"POP_CL\": 6, \"POP2000\": 12575, \"WHITE\": 11558, \"BLACK\": 113, \"AMERI_ES\": 27, \"ASIAN\": 313, \"HAWN_PI\": 12, \"OTHER\": 210, \"MULT_RACE\": 342, \"HISPANIC\": 689, \"MALES\": 6216, \"FEMALES\": 6359, \"AGE_UNDER5\": 568, \"AGE_5_17\": 1899, \"AGE_18_21\": 601, \"AGE_22_29\": 913, \"AGE_30_39\": 1634, \"AGE_40_49\": 2421, \"AGE_50_64\": 2777, \"AGE_65_UP\": 1762, \"MED_AGE\": 42.900000, \"MED_AGE_M\": 43.200000, \"MED_AGE_F\": 42.600000, \"HOUSEHOLDS\": 5137, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 688, \"HSEHLD_1_F\": 716, \"MARHH_CHD\": 1024, \"MARHH_NO_C\": 1624, \"MHH_CHILD\": 92, \"FHH_CHILD\": 184, \"FAMILIES\": 3165, \"AVE_FAM_SZ\": 2.860000, \"HSE_UNITS\": 6126, \"VACANT\": 989, \"OWNER_OCC\": 3741, \"RENTER_OCC\": 1396 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.77706359600522, 34.030645439773856 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Manhattan Beach\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"45400\", \"CAPITAL\": \"N\", \"AREALAND\": 3.933000, \"AREAWATER\": 6.431000, \"POP_CL\": 6, \"POP2000\": 33852, \"WHITE\": 30124, \"BLACK\": 208, \"AMERI_ES\": 70, \"ASIAN\": 2043, \"HAWN_PI\": 41, \"OTHER\": 415, \"MULT_RACE\": 951, \"HISPANIC\": 1756, \"MALES\": 17052, \"FEMALES\": 16800, \"AGE_UNDER5\": 2197, \"AGE_5_17\": 5339, \"AGE_18_21\": 637, \"AGE_22_29\": 3365, \"AGE_30_39\": 7020, \"AGE_40_49\": 5830, \"AGE_50_64\": 5938, \"AGE_65_UP\": 3526, \"MED_AGE\": 37.700000, \"MED_AGE_M\": 37.600000, \"MED_AGE_F\": 37.800000, \"HOUSEHOLDS\": 14474, \"AVE_HH_SZ\": 2.340000, \"HSEHLD_1_M\": 2214, \"HSEHLD_1_F\": 2032, \"MARHH_CHD\": 3460, \"MARHH_NO_C\": 3746, \"MHH_CHILD\": 164, \"FHH_CHILD\": 442, \"FAMILIES\": 8392, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 15034, \"VACANT\": 560, \"OWNER_OCC\": 9420, \"RENTER_OCC\": 5054 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.404034487308849, 33.889144669698609 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Manteca\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"45484\", \"CAPITAL\": \"N\", \"AREALAND\": 15.911000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 49258, \"WHITE\": 36534, \"BLACK\": 1406, \"AMERI_ES\": 643, \"ASIAN\": 1733, \"HAWN_PI\": 179, \"OTHER\": 5693, \"MULT_RACE\": 3070, \"HISPANIC\": 12363, \"MALES\": 24161, \"FEMALES\": 25097, \"AGE_UNDER5\": 3716, \"AGE_5_17\": 11851, \"AGE_18_21\": 2729, \"AGE_22_29\": 4623, \"AGE_30_39\": 7705, \"AGE_40_49\": 7759, \"AGE_50_64\": 6299, \"AGE_65_UP\": 4576, \"MED_AGE\": 32.500000, \"MED_AGE_M\": 31.300000, \"MED_AGE_F\": 33.700000, \"HOUSEHOLDS\": 16368, \"AVE_HH_SZ\": 2.980000, \"HSEHLD_1_M\": 1278, \"HSEHLD_1_F\": 1773, \"MARHH_CHD\": 5110, \"MARHH_NO_C\": 4252, \"MHH_CHILD\": 610, \"FHH_CHILD\": 1360, \"FAMILIES\": 12485, \"AVE_FAM_SZ\": 3.390000, \"HSE_UNITS\": 16937, \"VACANT\": 569, \"OWNER_OCC\": 10305, \"RENTER_OCC\": 6063 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.21583417228679, 37.803402153455721 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Marina\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"45778\", \"CAPITAL\": \"N\", \"AREALAND\": 8.746000, \"AREAWATER\": 0.851000, \"POP_CL\": 6, \"POP2000\": 25101, \"WHITE\": 10979, \"BLACK\": 3600, \"AMERI_ES\": 186, \"ASIAN\": 4084, \"HAWN_PI\": 528, \"OTHER\": 3718, \"MULT_RACE\": 2006, \"HISPANIC\": 5822, \"MALES\": 14367, \"FEMALES\": 10734, \"AGE_UNDER5\": 1435, \"AGE_5_17\": 3921, \"AGE_18_21\": 1910, \"AGE_22_29\": 4164, \"AGE_30_39\": 4839, \"AGE_40_49\": 3860, \"AGE_50_64\": 2994, \"AGE_65_UP\": 1978, \"MED_AGE\": 32.300000, \"MED_AGE_M\": 31.900000, \"MED_AGE_F\": 33.300000, \"HOUSEHOLDS\": 6745, \"AVE_HH_SZ\": 2.790000, \"HSEHLD_1_M\": 650, \"HSEHLD_1_F\": 792, \"MARHH_CHD\": 1590, \"MARHH_NO_C\": 1855, \"MHH_CHILD\": 181, \"FHH_CHILD\": 622, \"FAMILIES\": 4812, \"AVE_FAM_SZ\": 3.250000, \"HSE_UNITS\": 8537, \"VACANT\": 1792, \"OWNER_OCC\": 3088, \"RENTER_OCC\": 3657 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.791514875459626, 36.678914509648074 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Martinez\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"46114\", \"CAPITAL\": \"N\", \"AREALAND\": 12.251000, \"AREAWATER\": 1.200000, \"POP_CL\": 6, \"POP2000\": 35866, \"WHITE\": 29064, \"BLACK\": 1201, \"AMERI_ES\": 264, \"ASIAN\": 2378, \"HAWN_PI\": 84, \"OTHER\": 1181, \"MULT_RACE\": 1694, \"HISPANIC\": 3660, \"MALES\": 17794, \"FEMALES\": 18072, \"AGE_UNDER5\": 2000, \"AGE_5_17\": 6128, \"AGE_18_21\": 1583, \"AGE_22_29\": 3162, \"AGE_30_39\": 6013, \"AGE_40_49\": 6915, \"AGE_50_64\": 6437, \"AGE_65_UP\": 3628, \"MED_AGE\": 38.600000, \"MED_AGE_M\": 37.500000, \"MED_AGE_F\": 39.700000, \"HOUSEHOLDS\": 14300, \"AVE_HH_SZ\": 2.410000, \"HSEHLD_1_M\": 1656, \"HSEHLD_1_F\": 2266, \"MARHH_CHD\": 3138, \"MARHH_NO_C\": 3920, \"MHH_CHILD\": 282, \"FHH_CHILD\": 870, \"FAMILIES\": 9204, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 14597, \"VACANT\": 297, \"OWNER_OCC\": 9837, \"RENTER_OCC\": 4463 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.113104664837294, 38.001487747556439 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Marysville\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"46170\", \"CAPITAL\": \"N\", \"AREALAND\": 3.504000, \"AREAWATER\": 0.124000, \"POP_CL\": 6, \"POP2000\": 12268, \"WHITE\": 8704, \"BLACK\": 589, \"AMERI_ES\": 282, \"ASIAN\": 735, \"HAWN_PI\": 23, \"OTHER\": 1239, \"MULT_RACE\": 696, \"HISPANIC\": 2152, \"MALES\": 6122, \"FEMALES\": 6146, \"AGE_UNDER5\": 896, \"AGE_5_17\": 2479, \"AGE_18_21\": 851, \"AGE_22_29\": 1510, \"AGE_30_39\": 1769, \"AGE_40_49\": 1648, \"AGE_50_64\": 1513, \"AGE_65_UP\": 1602, \"MED_AGE\": 32.400000, \"MED_AGE_M\": 30.200000, \"MED_AGE_F\": 35.100000, \"HOUSEHOLDS\": 4687, \"AVE_HH_SZ\": 2.490000, \"HSEHLD_1_M\": 636, \"HSEHLD_1_F\": 842, \"MARHH_CHD\": 854, \"MARHH_NO_C\": 966, \"MHH_CHILD\": 164, \"FHH_CHILD\": 502, \"FAMILIES\": 2828, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 4999, \"VACANT\": 312, \"OWNER_OCC\": 1948, \"RENTER_OCC\": 2739 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.579380950218351, 39.150095649548284 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Maywood\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"46492\", \"CAPITAL\": \"N\", \"AREALAND\": 1.176000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 28083, \"WHITE\": 12073, \"BLACK\": 102, \"AMERI_ES\": 320, \"ASIAN\": 101, \"HAWN_PI\": 37, \"OTHER\": 14177, \"MULT_RACE\": 1273, \"HISPANIC\": 27051, \"MALES\": 14324, \"FEMALES\": 13759, \"AGE_UNDER5\": 3192, \"AGE_5_17\": 7200, \"AGE_18_21\": 1985, \"AGE_22_29\": 4573, \"AGE_30_39\": 4684, \"AGE_40_49\": 2974, \"AGE_50_64\": 2290, \"AGE_65_UP\": 1185, \"MED_AGE\": 24.900000, \"MED_AGE_M\": 24.700000, \"MED_AGE_F\": 25.100000, \"HOUSEHOLDS\": 6469, \"AVE_HH_SZ\": 4.330000, \"HSEHLD_1_M\": 316, \"HSEHLD_1_F\": 226, \"MARHH_CHD\": 2965, \"MARHH_NO_C\": 969, \"MHH_CHILD\": 346, \"FHH_CHILD\": 759, \"FAMILIES\": 5698, \"AVE_FAM_SZ\": 4.470000, \"HSE_UNITS\": 6701, \"VACANT\": 232, \"OWNER_OCC\": 1904, \"RENTER_OCC\": 4565 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.185333105827098, 33.988013904448707 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Menlo Park\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"46870\", \"CAPITAL\": \"N\", \"AREALAND\": 10.126000, \"AREAWATER\": 7.303000, \"POP_CL\": 6, \"POP2000\": 30785, \"WHITE\": 22274, \"BLACK\": 2163, \"AMERI_ES\": 136, \"ASIAN\": 2201, \"HAWN_PI\": 389, \"OTHER\": 2635, \"MULT_RACE\": 987, \"HISPANIC\": 4803, \"MALES\": 14920, \"FEMALES\": 15865, \"AGE_UNDER5\": 2030, \"AGE_5_17\": 4707, \"AGE_18_21\": 899, \"AGE_22_29\": 3418, \"AGE_30_39\": 5766, \"AGE_40_49\": 4571, \"AGE_50_64\": 4505, \"AGE_65_UP\": 4889, \"MED_AGE\": 37.400000, \"MED_AGE_M\": 36.200000, \"MED_AGE_F\": 38.600000, \"HOUSEHOLDS\": 12387, \"AVE_HH_SZ\": 2.410000, \"HSEHLD_1_M\": 1513, \"HSEHLD_1_F\": 2466, \"MARHH_CHD\": 2595, \"MARHH_NO_C\": 3144, \"MHH_CHILD\": 148, \"FHH_CHILD\": 556, \"FAMILIES\": 7120, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 12714, \"VACANT\": 327, \"OWNER_OCC\": 7055, \"RENTER_OCC\": 5332 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.171687173472549, 37.455093274967943 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Merced\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"46898\", \"CAPITAL\": \"N\", \"AREALAND\": 19.863000, \"AREAWATER\": 0.000000, \"POP_CL\": 7, \"POP2000\": 63893, \"WHITE\": 33481, \"BLACK\": 4044, \"AMERI_ES\": 818, \"ASIAN\": 7267, \"HAWN_PI\": 133, \"OTHER\": 14813, \"MULT_RACE\": 3337, \"HISPANIC\": 26425, \"MALES\": 31226, \"FEMALES\": 32667, \"AGE_UNDER5\": 5860, \"AGE_5_17\": 16301, \"AGE_18_21\": 4358, \"AGE_22_29\": 7316, \"AGE_30_39\": 8850, \"AGE_40_49\": 7991, \"AGE_50_64\": 7196, \"AGE_65_UP\": 6021, \"MED_AGE\": 27.800000, \"MED_AGE_M\": 26.500000, \"MED_AGE_F\": 29.200000, \"HOUSEHOLDS\": 20435, \"AVE_HH_SZ\": 3.060000, \"HSEHLD_1_M\": 1918, \"HSEHLD_1_F\": 2708, \"MARHH_CHD\": 5429, \"MARHH_NO_C\": 4216, \"MHH_CHILD\": 753, \"FHH_CHILD\": 2591, \"FAMILIES\": 14632, \"AVE_FAM_SZ\": 3.620000, \"HSE_UNITS\": 21532, \"VACANT\": 1097, \"OWNER_OCC\": 9508, \"RENTER_OCC\": 10927 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -120.474240356439481, 37.306431376970693 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Millbrae\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"47486\", \"CAPITAL\": \"N\", \"AREALAND\": 3.214000, \"AREAWATER\": 0.015000, \"POP_CL\": 6, \"POP2000\": 20718, \"WHITE\": 13061, \"BLACK\": 165, \"AMERI_ES\": 47, \"ASIAN\": 5651, \"HAWN_PI\": 238, \"OTHER\": 745, \"MULT_RACE\": 811, \"HISPANIC\": 2376, \"MALES\": 9801, \"FEMALES\": 10917, \"AGE_UNDER5\": 955, \"AGE_5_17\": 3307, \"AGE_18_21\": 747, \"AGE_22_29\": 1618, \"AGE_30_39\": 2936, \"AGE_40_49\": 3273, \"AGE_50_64\": 3569, \"AGE_65_UP\": 4313, \"MED_AGE\": 42.300000, \"MED_AGE_M\": 40.700000, \"MED_AGE_F\": 43.900000, \"HOUSEHOLDS\": 7956, \"AVE_HH_SZ\": 2.560000, \"HSEHLD_1_M\": 692, \"HSEHLD_1_F\": 1302, \"MARHH_CHD\": 1815, \"MARHH_NO_C\": 2616, \"MHH_CHILD\": 111, \"FHH_CHILD\": 322, \"FAMILIES\": 5511, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 8113, \"VACANT\": 157, \"OWNER_OCC\": 5092, \"RENTER_OCC\": 2864 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.393827965549548, 37.60172719387559 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mill Valley\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"47710\", \"CAPITAL\": \"N\", \"AREALAND\": 4.717000, \"AREAWATER\": 0.113000, \"POP_CL\": 6, \"POP2000\": 13600, \"WHITE\": 12435, \"BLACK\": 135, \"AMERI_ES\": 34, \"ASIAN\": 563, \"HAWN_PI\": 29, \"OTHER\": 89, \"MULT_RACE\": 315, \"HISPANIC\": 472, \"MALES\": 6306, \"FEMALES\": 7294, \"AGE_UNDER5\": 749, \"AGE_5_17\": 2133, \"AGE_18_21\": 238, \"AGE_22_29\": 673, \"AGE_30_39\": 1995, \"AGE_40_49\": 2638, \"AGE_50_64\": 3084, \"AGE_65_UP\": 2090, \"MED_AGE\": 43.900000, \"MED_AGE_M\": 42.900000, \"MED_AGE_F\": 44.700000, \"HOUSEHOLDS\": 6147, \"AVE_HH_SZ\": 2.200000, \"HSEHLD_1_M\": 714, \"HSEHLD_1_F\": 1384, \"MARHH_CHD\": 1284, \"MARHH_NO_C\": 1497, \"MHH_CHILD\": 88, \"FHH_CHILD\": 291, \"FAMILIES\": 3420, \"AVE_FAM_SZ\": 2.850000, \"HSE_UNITS\": 6286, \"VACANT\": 139, \"OWNER_OCC\": 4026, \"RENTER_OCC\": 2121 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.535051462297901, 37.906533298177749 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Milpitas\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"47766\", \"CAPITAL\": \"N\", \"AREALAND\": 13.562000, \"AREAWATER\": 0.062000, \"POP_CL\": 7, \"POP2000\": 62698, \"WHITE\": 19353, \"BLACK\": 2295, \"AMERI_ES\": 388, \"ASIAN\": 32482, \"HAWN_PI\": 393, \"OTHER\": 4687, \"MULT_RACE\": 3100, \"HISPANIC\": 10417, \"MALES\": 32960, \"FEMALES\": 29738, \"AGE_UNDER5\": 4484, \"AGE_5_17\": 10953, \"AGE_18_21\": 3242, \"AGE_22_29\": 8409, \"AGE_30_39\": 12535, \"AGE_40_49\": 10239, \"AGE_50_64\": 8425, \"AGE_65_UP\": 4411, \"MED_AGE\": 33.400000, \"MED_AGE_M\": 32.800000, \"MED_AGE_F\": 34.200000, \"HOUSEHOLDS\": 17132, \"AVE_HH_SZ\": 3.470000, \"HSEHLD_1_M\": 1019, \"HSEHLD_1_F\": 951, \"MARHH_CHD\": 6166, \"MARHH_NO_C\": 4980, \"MHH_CHILD\": 345, \"FHH_CHILD\": 862, \"FAMILIES\": 14002, \"AVE_FAM_SZ\": 3.720000, \"HSE_UNITS\": 17364, \"VACANT\": 232, \"OWNER_OCC\": 11953, \"RENTER_OCC\": 5179 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.888838912740809, 37.435395125031803 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mira Loma\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"47976\", \"CAPITAL\": \"N\", \"AREALAND\": 6.444000, \"AREAWATER\": 0.079000, \"POP_CL\": 6, \"POP2000\": 17617, \"WHITE\": 11281, \"BLACK\": 233, \"AMERI_ES\": 229, \"ASIAN\": 162, \"HAWN_PI\": 43, \"OTHER\": 4978, \"MULT_RACE\": 691, \"HISPANIC\": 8513, \"MALES\": 9037, \"FEMALES\": 8580, \"AGE_UNDER5\": 1324, \"AGE_5_17\": 4668, \"AGE_18_21\": 1183, \"AGE_22_29\": 1566, \"AGE_30_39\": 2606, \"AGE_40_49\": 2820, \"AGE_50_64\": 2438, \"AGE_65_UP\": 1012, \"MED_AGE\": 30.300000, \"MED_AGE_M\": 29.800000, \"MED_AGE_F\": 30.700000, \"HOUSEHOLDS\": 4556, \"AVE_HH_SZ\": 3.840000, \"HSEHLD_1_M\": 252, \"HSEHLD_1_F\": 209, \"MARHH_CHD\": 1743, \"MARHH_NO_C\": 1310, \"MHH_CHILD\": 152, \"FHH_CHILD\": 275, \"FAMILIES\": 3865, \"AVE_FAM_SZ\": 4.050000, \"HSE_UNITS\": 4684, \"VACANT\": 128, \"OWNER_OCC\": 3652, \"RENTER_OCC\": 904 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.514281517911698, 33.984723322998867 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mission Viejo\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"48256\", \"CAPITAL\": \"N\", \"AREALAND\": 18.657000, \"AREAWATER\": 0.368000, \"POP_CL\": 7, \"POP2000\": 93102, \"WHITE\": 77418, \"BLACK\": 1067, \"AMERI_ES\": 348, \"ASIAN\": 7199, \"HAWN_PI\": 174, \"OTHER\": 3553, \"MULT_RACE\": 3343, \"HISPANIC\": 11266, \"MALES\": 45525, \"FEMALES\": 47577, \"AGE_UNDER5\": 6428, \"AGE_5_17\": 18845, \"AGE_18_21\": 3897, \"AGE_22_29\": 6532, \"AGE_30_39\": 15352, \"AGE_40_49\": 16250, \"AGE_50_64\": 15659, \"AGE_65_UP\": 10139, \"MED_AGE\": 37.500000, \"MED_AGE_M\": 36.500000, \"MED_AGE_F\": 38.300000, \"HOUSEHOLDS\": 32449, \"AVE_HH_SZ\": 2.840000, \"HSEHLD_1_M\": 2148, \"HSEHLD_1_F\": 3451, \"MARHH_CHD\": 10904, \"MARHH_NO_C\": 10548, \"MHH_CHILD\": 521, \"FHH_CHILD\": 1456, \"FAMILIES\": 25204, \"AVE_FAM_SZ\": 3.220000, \"HSE_UNITS\": 32985, \"VACANT\": 536, \"OWNER_OCC\": 26423, \"RENTER_OCC\": 6026 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.655079467148468, 33.612854877952572 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Modesto\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"48354\", \"CAPITAL\": \"N\", \"AREALAND\": 35.786000, \"AREAWATER\": 0.175000, \"POP_CL\": 8, \"POP2000\": 188856, \"WHITE\": 131414, \"BLACK\": 7499, \"AMERI_ES\": 2335, \"ASIAN\": 11388, \"HAWN_PI\": 951, \"OTHER\": 24066, \"MULT_RACE\": 11203, \"HISPANIC\": 48310, \"MALES\": 91572, \"FEMALES\": 97284, \"AGE_UNDER5\": 14335, \"AGE_5_17\": 42450, \"AGE_18_21\": 10882, \"AGE_22_29\": 19724, \"AGE_30_39\": 27467, \"AGE_40_49\": 27660, \"AGE_50_64\": 25376, \"AGE_65_UP\": 20962, \"MED_AGE\": 32.700000, \"MED_AGE_M\": 31.100000, \"MED_AGE_F\": 34.300000, \"HOUSEHOLDS\": 64959, \"AVE_HH_SZ\": 2.860000, \"HSEHLD_1_M\": 5774, \"HSEHLD_1_F\": 8859, \"MARHH_CHD\": 17019, \"MARHH_NO_C\": 16432, \"MHH_CHILD\": 2124, \"FHH_CHILD\": 5998, \"FAMILIES\": 46642, \"AVE_FAM_SZ\": 3.360000, \"HSE_UNITS\": 67179, \"VACANT\": 2220, \"OWNER_OCC\": 38114, \"RENTER_OCC\": 26845 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -120.989994751598104, 37.662046907154426 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Monrovia\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"48648\", \"CAPITAL\": \"N\", \"AREALAND\": 13.746000, \"AREAWATER\": 0.065000, \"POP_CL\": 6, \"POP2000\": 36929, \"WHITE\": 23237, \"BLACK\": 3202, \"AMERI_ES\": 323, \"ASIAN\": 2594, \"HAWN_PI\": 48, \"OTHER\": 5765, \"MULT_RACE\": 1760, \"HISPANIC\": 13012, \"MALES\": 17717, \"FEMALES\": 19212, \"AGE_UNDER5\": 2967, \"AGE_5_17\": 7140, \"AGE_18_21\": 1639, \"AGE_22_29\": 4293, \"AGE_30_39\": 6550, \"AGE_40_49\": 5600, \"AGE_50_64\": 4903, \"AGE_65_UP\": 3837, \"MED_AGE\": 33.700000, \"MED_AGE_M\": 32.400000, \"MED_AGE_F\": 34.800000, \"HOUSEHOLDS\": 13502, \"AVE_HH_SZ\": 2.710000, \"HSEHLD_1_M\": 1448, \"HSEHLD_1_F\": 2069, \"MARHH_CHD\": 3246, \"MARHH_NO_C\": 3017, \"MHH_CHILD\": 373, \"FHH_CHILD\": 1163, \"FAMILIES\": 9091, \"AVE_FAM_SZ\": 3.290000, \"HSE_UNITS\": 13957, \"VACANT\": 455, \"OWNER_OCC\": 6461, \"RENTER_OCC\": 7041 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.000703336511833, 34.144294800039056 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Montclair\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"48788\", \"CAPITAL\": \"N\", \"AREALAND\": 5.098000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 33049, \"WHITE\": 14796, \"BLACK\": 2112, \"AMERI_ES\": 319, \"ASIAN\": 2688, \"HAWN_PI\": 101, \"OTHER\": 11442, \"MULT_RACE\": 1591, \"HISPANIC\": 19823, \"MALES\": 16492, \"FEMALES\": 16557, \"AGE_UNDER5\": 2930, \"AGE_5_17\": 8018, \"AGE_18_21\": 2064, \"AGE_22_29\": 4035, \"AGE_30_39\": 5227, \"AGE_40_49\": 4284, \"AGE_50_64\": 3735, \"AGE_65_UP\": 2756, \"MED_AGE\": 29.000000, \"MED_AGE_M\": 27.600000, \"MED_AGE_F\": 30.300000, \"HOUSEHOLDS\": 8800, \"AVE_HH_SZ\": 3.690000, \"HSEHLD_1_M\": 554, \"HSEHLD_1_F\": 769, \"MARHH_CHD\": 3022, \"MARHH_NO_C\": 1933, \"MHH_CHILD\": 350, \"FHH_CHILD\": 804, \"FAMILIES\": 7053, \"AVE_FAM_SZ\": 4.040000, \"HSE_UNITS\": 9066, \"VACANT\": 266, \"OWNER_OCC\": 5337, \"RENTER_OCC\": 3463 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.696524521948035, 34.071080433653691 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Montebello\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"48816\", \"CAPITAL\": \"N\", \"AREALAND\": 8.246000, \"AREAWATER\": 0.109000, \"POP_CL\": 7, \"POP2000\": 62150, \"WHITE\": 29098, \"BLACK\": 559, \"AMERI_ES\": 767, \"ASIAN\": 7232, \"HAWN_PI\": 51, \"OTHER\": 21040, \"MULT_RACE\": 3403, \"HISPANIC\": 46347, \"MALES\": 29850, \"FEMALES\": 32300, \"AGE_UNDER5\": 5059, \"AGE_5_17\": 12717, \"AGE_18_21\": 3533, \"AGE_22_29\": 8263, \"AGE_30_39\": 9408, \"AGE_40_49\": 7669, \"AGE_50_64\": 7766, \"AGE_65_UP\": 7735, \"MED_AGE\": 31.400000, \"MED_AGE_M\": 29.900000, \"MED_AGE_F\": 33.100000, \"HOUSEHOLDS\": 18844, \"AVE_HH_SZ\": 3.280000, \"HSEHLD_1_M\": 1348, \"HSEHLD_1_F\": 1868, \"MARHH_CHD\": 5033, \"MARHH_NO_C\": 4664, \"MHH_CHILD\": 570, \"FHH_CHILD\": 1970, \"FAMILIES\": 14865, \"AVE_FAM_SZ\": 3.670000, \"HSE_UNITS\": 19416, \"VACANT\": 572, \"OWNER_OCC\": 8948, \"RENTER_OCC\": 9896 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.113313777548939, 34.01455727383707 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Montecito\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"48844\", \"CAPITAL\": \"N\", \"AREALAND\": 9.326000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10000, \"WHITE\": 9403, \"BLACK\": 48, \"AMERI_ES\": 31, \"ASIAN\": 129, \"HAWN_PI\": 21, \"OTHER\": 214, \"MULT_RACE\": 154, \"HISPANIC\": 519, \"MALES\": 4585, \"FEMALES\": 5415, \"AGE_UNDER5\": 333, \"AGE_5_17\": 1504, \"AGE_18_21\": 1120, \"AGE_22_29\": 457, \"AGE_30_39\": 786, \"AGE_40_49\": 1508, \"AGE_50_64\": 2140, \"AGE_65_UP\": 2152, \"MED_AGE\": 45.900000, \"MED_AGE_M\": 46.600000, \"MED_AGE_F\": 45.500000, \"HOUSEHOLDS\": 3686, \"AVE_HH_SZ\": 2.410000, \"HSEHLD_1_M\": 357, \"HSEHLD_1_F\": 640, \"MARHH_CHD\": 766, \"MARHH_NO_C\": 1338, \"MHH_CHILD\": 46, \"FHH_CHILD\": 136, \"FAMILIES\": 2456, \"AVE_FAM_SZ\": 2.850000, \"HSE_UNITS\": 4193, \"VACANT\": 507, \"OWNER_OCC\": 2868, \"RENTER_OCC\": 818 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -119.629627798783901, 34.433974457088233 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Monterey\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"48872\", \"CAPITAL\": \"N\", \"AREALAND\": 8.438000, \"AREAWATER\": 3.294000, \"POP_CL\": 6, \"POP2000\": 29674, \"WHITE\": 23985, \"BLACK\": 749, \"AMERI_ES\": 170, \"ASIAN\": 2205, \"HAWN_PI\": 86, \"OTHER\": 1159, \"MULT_RACE\": 1320, \"HISPANIC\": 3222, \"MALES\": 14596, \"FEMALES\": 15078, \"AGE_UNDER5\": 1477, \"AGE_5_17\": 3450, \"AGE_18_21\": 2319, \"AGE_22_29\": 4318, \"AGE_30_39\": 5096, \"AGE_40_49\": 4255, \"AGE_50_64\": 4349, \"AGE_65_UP\": 4410, \"MED_AGE\": 36.100000, \"MED_AGE_M\": 34.500000, \"MED_AGE_F\": 38.200000, \"HOUSEHOLDS\": 12600, \"AVE_HH_SZ\": 2.130000, \"HSEHLD_1_M\": 1977, \"HSEHLD_1_F\": 2691, \"MARHH_CHD\": 1968, \"MARHH_NO_C\": 3013, \"MHH_CHILD\": 222, \"FHH_CHILD\": 553, \"FAMILIES\": 6478, \"AVE_FAM_SZ\": 2.820000, \"HSE_UNITS\": 13382, \"VACANT\": 782, \"OWNER_OCC\": 4853, \"RENTER_OCC\": 7747 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.884707099912461, 36.600796071043739 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Monterey Park\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"48914\", \"CAPITAL\": \"N\", \"AREALAND\": 7.631000, \"AREAWATER\": 0.034000, \"POP_CL\": 7, \"POP2000\": 60051, \"WHITE\": 12786, \"BLACK\": 226, \"AMERI_ES\": 391, \"ASIAN\": 37125, \"HAWN_PI\": 37, \"OTHER\": 7474, \"MULT_RACE\": 2012, \"HISPANIC\": 17359, \"MALES\": 28845, \"FEMALES\": 31206, \"AGE_UNDER5\": 3343, \"AGE_5_17\": 9425, \"AGE_18_21\": 2699, \"AGE_22_29\": 6781, \"AGE_30_39\": 9221, \"AGE_40_49\": 8595, \"AGE_50_64\": 9240, \"AGE_65_UP\": 10747, \"MED_AGE\": 38.400000, \"MED_AGE_M\": 36.700000, \"MED_AGE_F\": 40.200000, \"HOUSEHOLDS\": 19564, \"AVE_HH_SZ\": 3.060000, \"HSEHLD_1_M\": 1290, \"HSEHLD_1_F\": 2103, \"MARHH_CHD\": 4607, \"MARHH_NO_C\": 6222, \"MHH_CHILD\": 340, \"FHH_CHILD\": 1180, \"FAMILIES\": 15246, \"AVE_FAM_SZ\": 3.430000, \"HSE_UNITS\": 20209, \"VACANT\": 645, \"OWNER_OCC\": 10567, \"RENTER_OCC\": 8997 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.134360798677093, 34.049345874173632 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Moorpark\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"49138\", \"CAPITAL\": \"N\", \"AREALAND\": 19.017000, \"AREAWATER\": 0.251000, \"POP_CL\": 6, \"POP2000\": 31415, \"WHITE\": 23378, \"BLACK\": 476, \"AMERI_ES\": 149, \"ASIAN\": 1770, \"HAWN_PI\": 46, \"OTHER\": 4381, \"MULT_RACE\": 1215, \"HISPANIC\": 8735, \"MALES\": 15678, \"FEMALES\": 15737, \"AGE_UNDER5\": 2546, \"AGE_5_17\": 8195, \"AGE_18_21\": 1693, \"AGE_22_29\": 2650, \"AGE_30_39\": 5243, \"AGE_40_49\": 5974, \"AGE_50_64\": 3685, \"AGE_65_UP\": 1429, \"MED_AGE\": 31.500000, \"MED_AGE_M\": 30.900000, \"MED_AGE_F\": 32.000000, \"HOUSEHOLDS\": 8994, \"AVE_HH_SZ\": 3.490000, \"HSEHLD_1_M\": 424, \"HSEHLD_1_F\": 464, \"MARHH_CHD\": 4176, \"MARHH_NO_C\": 2298, \"MHH_CHILD\": 200, \"FHH_CHILD\": 548, \"FAMILIES\": 7703, \"AVE_FAM_SZ\": 3.710000, \"HSE_UNITS\": 9094, \"VACANT\": 100, \"OWNER_OCC\": 7385, \"RENTER_OCC\": 1609 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.871925951271024, 34.281261866576415 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Moraga\", \"CLASS\": \"town\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"49194\", \"CAPITAL\": \"N\", \"AREALAND\": 9.272000, \"AREAWATER\": 0.010000, \"POP_CL\": 6, \"POP2000\": 16290, \"WHITE\": 13212, \"BLACK\": 165, \"AMERI_ES\": 25, \"ASIAN\": 2026, \"HAWN_PI\": 14, \"OTHER\": 237, \"MULT_RACE\": 611, \"HISPANIC\": 775, \"MALES\": 7679, \"FEMALES\": 8611, \"AGE_UNDER5\": 650, \"AGE_5_17\": 3045, \"AGE_18_21\": 1861, \"AGE_22_29\": 773, \"AGE_30_39\": 1356, \"AGE_40_49\": 2670, \"AGE_50_64\": 3358, \"AGE_65_UP\": 2577, \"MED_AGE\": 42.000000, \"MED_AGE_M\": 41.700000, \"MED_AGE_F\": 42.200000, \"HOUSEHOLDS\": 5662, \"AVE_HH_SZ\": 2.590000, \"HSEHLD_1_M\": 343, \"HSEHLD_1_F\": 746, \"MARHH_CHD\": 1721, \"MARHH_NO_C\": 2112, \"MHH_CHILD\": 70, \"FHH_CHILD\": 195, \"FAMILIES\": 4325, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 5760, \"VACANT\": 98, \"OWNER_OCC\": 4764, \"RENTER_OCC\": 898 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.117578229257163, 37.844673029417272 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Moreno Valley\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"49270\", \"CAPITAL\": \"N\", \"AREALAND\": 51.228000, \"AREAWATER\": 0.355000, \"POP_CL\": 8, \"POP2000\": 142381, \"WHITE\": 66689, \"BLACK\": 28310, \"AMERI_ES\": 1343, \"ASIAN\": 8427, \"HAWN_PI\": 733, \"OTHER\": 28584, \"MULT_RACE\": 8295, \"HISPANIC\": 54689, \"MALES\": 69645, \"FEMALES\": 72736, \"AGE_UNDER5\": 12519, \"AGE_5_17\": 39893, \"AGE_18_21\": 9351, \"AGE_22_29\": 14520, \"AGE_30_39\": 20871, \"AGE_40_49\": 22139, \"AGE_50_64\": 15279, \"AGE_65_UP\": 7809, \"MED_AGE\": 27.100000, \"MED_AGE_M\": 25.700000, \"MED_AGE_F\": 28.400000, \"HOUSEHOLDS\": 39225, \"AVE_HH_SZ\": 3.610000, \"HSEHLD_1_M\": 2053, \"HSEHLD_1_F\": 2261, \"MARHH_CHD\": 15130, \"MARHH_NO_C\": 9044, \"MHH_CHILD\": 1492, \"FHH_CHILD\": 4561, \"FAMILIES\": 33363, \"AVE_FAM_SZ\": 3.860000, \"HSE_UNITS\": 41431, \"VACANT\": 2206, \"OWNER_OCC\": 27873, \"RENTER_OCC\": 11352 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.227523596718868, 33.926363287024557 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Morgan Hill\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"49278\", \"CAPITAL\": \"N\", \"AREALAND\": 11.665000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 33556, \"WHITE\": 24296, \"BLACK\": 573, \"AMERI_ES\": 362, \"ASIAN\": 2020, \"HAWN_PI\": 77, \"OTHER\": 4505, \"MULT_RACE\": 1723, \"HISPANIC\": 9229, \"MALES\": 16655, \"FEMALES\": 16901, \"AGE_UNDER5\": 2729, \"AGE_5_17\": 7517, \"AGE_18_21\": 1523, \"AGE_22_29\": 2986, \"AGE_30_39\": 5657, \"AGE_40_49\": 5646, \"AGE_50_64\": 4990, \"AGE_65_UP\": 2508, \"MED_AGE\": 34.000000, \"MED_AGE_M\": 33.100000, \"MED_AGE_F\": 34.800000, \"HOUSEHOLDS\": 10846, \"AVE_HH_SZ\": 3.050000, \"HSEHLD_1_M\": 682, \"HSEHLD_1_F\": 961, \"MARHH_CHD\": 3688, \"MARHH_NO_C\": 3172, \"MHH_CHILD\": 318, \"FHH_CHILD\": 763, \"FAMILIES\": 8628, \"AVE_FAM_SZ\": 3.380000, \"HSE_UNITS\": 11091, \"VACANT\": 245, \"OWNER_OCC\": 7859, \"RENTER_OCC\": 2987 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.637591507334022, 37.127519968980096 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Morro Bay\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"49362\", \"CAPITAL\": \"N\", \"AREALAND\": 5.157000, \"AREAWATER\": 5.005000, \"POP_CL\": 6, \"POP2000\": 10350, \"WHITE\": 9257, \"BLACK\": 70, \"AMERI_ES\": 98, \"ASIAN\": 187, \"HAWN_PI\": 9, \"OTHER\": 424, \"MULT_RACE\": 305, \"HISPANIC\": 1183, \"MALES\": 4941, \"FEMALES\": 5409, \"AGE_UNDER5\": 378, \"AGE_5_17\": 1188, \"AGE_18_21\": 494, \"AGE_22_29\": 1022, \"AGE_30_39\": 1204, \"AGE_40_49\": 1626, \"AGE_50_64\": 1932, \"AGE_65_UP\": 2506, \"MED_AGE\": 45.700000, \"MED_AGE_M\": 43.200000, \"MED_AGE_F\": 47.900000, \"HOUSEHOLDS\": 4986, \"AVE_HH_SZ\": 2.040000, \"HSEHLD_1_M\": 745, \"HSEHLD_1_F\": 1148, \"MARHH_CHD\": 529, \"MARHH_NO_C\": 1488, \"MHH_CHILD\": 87, \"FHH_CHILD\": 216, \"FAMILIES\": 2611, \"AVE_FAM_SZ\": 2.650000, \"HSE_UNITS\": 6251, \"VACANT\": 1265, \"OWNER_OCC\": 2770, \"RENTER_OCC\": 2216 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -120.849615331135908, 35.379539236509153 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mountain View\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"49670\", \"CAPITAL\": \"N\", \"AREALAND\": 12.063000, \"AREAWATER\": 0.172000, \"POP_CL\": 7, \"POP2000\": 70708, \"WHITE\": 45090, \"BLACK\": 1789, \"AMERI_ES\": 273, \"ASIAN\": 14613, \"HAWN_PI\": 182, \"OTHER\": 5884, \"MULT_RACE\": 2877, \"HISPANIC\": 12911, \"MALES\": 36523, \"FEMALES\": 34185, \"AGE_UNDER5\": 4270, \"AGE_5_17\": 8426, \"AGE_18_21\": 2461, \"AGE_22_29\": 12048, \"AGE_30_39\": 16058, \"AGE_40_49\": 10871, \"AGE_50_64\": 9158, \"AGE_65_UP\": 7416, \"MED_AGE\": 34.600000, \"MED_AGE_M\": 33.700000, \"MED_AGE_F\": 35.800000, \"HOUSEHOLDS\": 31242, \"AVE_HH_SZ\": 2.250000, \"HSEHLD_1_M\": 5851, \"HSEHLD_1_F\": 5282, \"MARHH_CHD\": 5373, \"MARHH_NO_C\": 7117, \"MHH_CHILD\": 436, \"FHH_CHILD\": 1045, \"FAMILIES\": 15909, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 32432, \"VACANT\": 1190, \"OWNER_OCC\": 12957, \"RENTER_OCC\": 18285 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.075389421720942, 37.393509894985172 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Murrieta\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"50076\", \"CAPITAL\": \"N\", \"AREALAND\": 28.386000, \"AREAWATER\": 0.044000, \"POP_CL\": 6, \"POP2000\": 44282, \"WHITE\": 36152, \"BLACK\": 1500, \"AMERI_ES\": 293, \"ASIAN\": 1775, \"HAWN_PI\": 98, \"OTHER\": 2553, \"MULT_RACE\": 1911, \"HISPANIC\": 7739, \"MALES\": 21704, \"FEMALES\": 22578, \"AGE_UNDER5\": 3338, \"AGE_5_17\": 11581, \"AGE_18_21\": 1864, \"AGE_22_29\": 2835, \"AGE_30_39\": 7406, \"AGE_40_49\": 7303, \"AGE_50_64\": 4892, \"AGE_65_UP\": 5063, \"MED_AGE\": 34.400000, \"MED_AGE_M\": 33.800000, \"MED_AGE_F\": 34.900000, \"HOUSEHOLDS\": 14320, \"AVE_HH_SZ\": 3.080000, \"HSEHLD_1_M\": 831, \"HSEHLD_1_F\": 1241, \"MARHH_CHD\": 5685, \"MARHH_NO_C\": 4367, \"MHH_CHILD\": 321, \"FHH_CHILD\": 800, \"FAMILIES\": 11706, \"AVE_FAM_SZ\": 3.420000, \"HSE_UNITS\": 14921, \"VACANT\": 601, \"OWNER_OCC\": 11407, \"RENTER_OCC\": 2913 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.201660423363393, 33.569659675704798 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Napa\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"50258\", \"CAPITAL\": \"N\", \"AREALAND\": 17.697000, \"AREAWATER\": 0.092000, \"POP_CL\": 7, \"POP2000\": 72585, \"WHITE\": 58302, \"BLACK\": 381, \"AMERI_ES\": 657, \"ASIAN\": 1241, \"HAWN_PI\": 117, \"OTHER\": 9181, \"MULT_RACE\": 2706, \"HISPANIC\": 19475, \"MALES\": 35635, \"FEMALES\": 36950, \"AGE_UNDER5\": 4906, \"AGE_5_17\": 13764, \"AGE_18_21\": 3532, \"AGE_22_29\": 7514, \"AGE_30_39\": 10908, \"AGE_40_49\": 10931, \"AGE_50_64\": 10993, \"AGE_65_UP\": 10037, \"MED_AGE\": 36.100000, \"MED_AGE_M\": 34.100000, \"MED_AGE_F\": 38.100000, \"HOUSEHOLDS\": 26978, \"AVE_HH_SZ\": 2.640000, \"HSEHLD_1_M\": 2580, \"HSEHLD_1_F\": 4649, \"MARHH_CHD\": 6387, \"MARHH_NO_C\": 7297, \"MHH_CHILD\": 712, \"FHH_CHILD\": 1789, \"FAMILIES\": 17940, \"AVE_FAM_SZ\": 3.200000, \"HSE_UNITS\": 27776, \"VACANT\": 798, \"OWNER_OCC\": 16362, \"RENTER_OCC\": 10616 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.291314383142264, 38.305737845050785 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"National City\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"50398\", \"CAPITAL\": \"N\", \"AREALAND\": 7.389000, \"AREAWATER\": 1.855000, \"POP_CL\": 7, \"POP2000\": 54260, \"WHITE\": 19070, \"BLACK\": 3026, \"AMERI_ES\": 513, \"ASIAN\": 10077, \"HAWN_PI\": 478, \"OTHER\": 18181, \"MULT_RACE\": 2915, \"HISPANIC\": 32053, \"MALES\": 27452, \"FEMALES\": 26808, \"AGE_UNDER5\": 4410, \"AGE_5_17\": 11932, \"AGE_18_21\": 4622, \"AGE_22_29\": 7219, \"AGE_30_39\": 7808, \"AGE_40_49\": 6761, \"AGE_50_64\": 5519, \"AGE_65_UP\": 5989, \"MED_AGE\": 28.700000, \"MED_AGE_M\": 26.500000, \"MED_AGE_F\": 31.100000, \"HOUSEHOLDS\": 15018, \"AVE_HH_SZ\": 3.390000, \"HSEHLD_1_M\": 1102, \"HSEHLD_1_F\": 1411, \"MARHH_CHD\": 4291, \"MARHH_NO_C\": 3272, \"MHH_CHILD\": 497, \"FHH_CHILD\": 1917, \"FAMILIES\": 11802, \"AVE_FAM_SZ\": 3.790000, \"HSE_UNITS\": 15422, \"VACANT\": 404, \"OWNER_OCC\": 5250, \"RENTER_OCC\": 9768 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.092014673437788, 32.670988408262794 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Newark\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"50916\", \"CAPITAL\": \"N\", \"AREALAND\": 13.973000, \"AREAWATER\": 0.025000, \"POP_CL\": 6, \"POP2000\": 42471, \"WHITE\": 22179, \"BLACK\": 1705, \"AMERI_ES\": 273, \"ASIAN\": 9047, \"HAWN_PI\": 426, \"OTHER\": 5839, \"MULT_RACE\": 3002, \"HISPANIC\": 12145, \"MALES\": 21386, \"FEMALES\": 21085, \"AGE_UNDER5\": 3062, \"AGE_5_17\": 8513, \"AGE_18_21\": 2311, \"AGE_22_29\": 4961, \"AGE_30_39\": 7754, \"AGE_40_49\": 6425, \"AGE_50_64\": 6121, \"AGE_65_UP\": 3324, \"MED_AGE\": 33.100000, \"MED_AGE_M\": 32.300000, \"MED_AGE_F\": 34.100000, \"HOUSEHOLDS\": 12992, \"AVE_HH_SZ\": 3.260000, \"HSEHLD_1_M\": 803, \"HSEHLD_1_F\": 1034, \"MARHH_CHD\": 4164, \"MARHH_NO_C\": 3913, \"MHH_CHILD\": 312, \"FHH_CHILD\": 747, \"FAMILIES\": 10345, \"AVE_FAM_SZ\": 3.590000, \"HSE_UNITS\": 13150, \"VACANT\": 158, \"OWNER_OCC\": 9175, \"RENTER_OCC\": 3817 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.027052072720949, 37.536443325926058 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Newport Beach\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"51182\", \"CAPITAL\": \"N\", \"AREALAND\": 14.778000, \"AREAWATER\": 25.069000, \"POP_CL\": 7, \"POP2000\": 70032, \"WHITE\": 64583, \"BLACK\": 371, \"AMERI_ES\": 179, \"ASIAN\": 2804, \"HAWN_PI\": 83, \"OTHER\": 792, \"MULT_RACE\": 1220, \"HISPANIC\": 3301, \"MALES\": 34638, \"FEMALES\": 35394, \"AGE_UNDER5\": 2832, \"AGE_5_17\": 8182, \"AGE_18_21\": 2110, \"AGE_22_29\": 8356, \"AGE_30_39\": 11660, \"AGE_40_49\": 10699, \"AGE_50_64\": 13898, \"AGE_65_UP\": 12295, \"MED_AGE\": 41.600000, \"MED_AGE_M\": 40.400000, \"MED_AGE_F\": 42.900000, \"HOUSEHOLDS\": 33071, \"AVE_HH_SZ\": 2.090000, \"HSEHLD_1_M\": 5370, \"HSEHLD_1_F\": 6296, \"MARHH_CHD\": 4593, \"MARHH_NO_C\": 9470, \"MHH_CHILD\": 404, \"FHH_CHILD\": 958, \"FAMILIES\": 16979, \"AVE_FAM_SZ\": 2.710000, \"HSE_UNITS\": 37288, \"VACANT\": 4217, \"OWNER_OCC\": 18408, \"RENTER_OCC\": 14663 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.896546012628022, 33.616800456192514 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Nipomo\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"51476\", \"CAPITAL\": \"N\", \"AREALAND\": 11.414000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12626, \"WHITE\": 9582, \"BLACK\": 76, \"AMERI_ES\": 167, \"ASIAN\": 182, \"HAWN_PI\": 7, \"OTHER\": 2021, \"MULT_RACE\": 591, \"HISPANIC\": 4362, \"MALES\": 6231, \"FEMALES\": 6395, \"AGE_UNDER5\": 922, \"AGE_5_17\": 2956, \"AGE_18_21\": 624, \"AGE_22_29\": 929, \"AGE_30_39\": 1811, \"AGE_40_49\": 2046, \"AGE_50_64\": 1805, \"AGE_65_UP\": 1533, \"MED_AGE\": 35.600000, \"MED_AGE_M\": 34.600000, \"MED_AGE_F\": 36.400000, \"HOUSEHOLDS\": 4035, \"AVE_HH_SZ\": 3.130000, \"HSEHLD_1_M\": 208, \"HSEHLD_1_F\": 338, \"MARHH_CHD\": 1308, \"MARHH_NO_C\": 1390, \"MHH_CHILD\": 96, \"FHH_CHILD\": 265, \"FAMILIES\": 3316, \"AVE_FAM_SZ\": 3.420000, \"HSE_UNITS\": 4146, \"VACANT\": 111, \"OWNER_OCC\": 3169, \"RENTER_OCC\": 866 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -120.486839458958684, 35.030448827571881 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Norco\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"51560\", \"CAPITAL\": \"N\", \"AREALAND\": 14.087000, \"AREAWATER\": 0.257000, \"POP_CL\": 6, \"POP2000\": 24157, \"WHITE\": 19915, \"BLACK\": 1481, \"AMERI_ES\": 182, \"ASIAN\": 280, \"HAWN_PI\": 33, \"OTHER\": 1538, \"MULT_RACE\": 728, \"HISPANIC\": 5504, \"MALES\": 13582, \"FEMALES\": 10575, \"AGE_UNDER5\": 1152, \"AGE_5_17\": 4261, \"AGE_18_21\": 1214, \"AGE_22_29\": 2511, \"AGE_30_39\": 4993, \"AGE_40_49\": 4536, \"AGE_50_64\": 3886, \"AGE_65_UP\": 1604, \"MED_AGE\": 36.300000, \"MED_AGE_M\": 35.800000, \"MED_AGE_F\": 37.000000, \"HOUSEHOLDS\": 6136, \"AVE_HH_SZ\": 3.150000, \"HSEHLD_1_M\": 396, \"HSEHLD_1_F\": 445, \"MARHH_CHD\": 1845, \"MARHH_NO_C\": 2123, \"MHH_CHILD\": 175, \"FHH_CHILD\": 292, \"FAMILIES\": 4944, \"AVE_FAM_SZ\": 3.430000, \"HSE_UNITS\": 6277, \"VACANT\": 141, \"OWNER_OCC\": 5051, \"RENTER_OCC\": 1085 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.560383537139998, 33.927236428092002 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"North Auburn\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"51637\", \"CAPITAL\": \"N\", \"AREALAND\": 7.627000, \"AREAWATER\": 0.004000, \"POP_CL\": 6, \"POP2000\": 11847, \"WHITE\": 10632, \"BLACK\": 84, \"AMERI_ES\": 139, \"ASIAN\": 212, \"HAWN_PI\": 11, \"OTHER\": 442, \"MULT_RACE\": 327, \"HISPANIC\": 1091, \"MALES\": 5624, \"FEMALES\": 6223, \"AGE_UNDER5\": 697, \"AGE_5_17\": 1939, \"AGE_18_21\": 578, \"AGE_22_29\": 1001, \"AGE_30_39\": 1519, \"AGE_40_49\": 1795, \"AGE_50_64\": 1783, \"AGE_65_UP\": 2535, \"MED_AGE\": 41.000000, \"MED_AGE_M\": 37.800000, \"MED_AGE_F\": 43.800000, \"HOUSEHOLDS\": 4817, \"AVE_HH_SZ\": 2.320000, \"HSEHLD_1_M\": 501, \"HSEHLD_1_F\": 1027, \"MARHH_CHD\": 857, \"MARHH_NO_C\": 1325, \"MHH_CHILD\": 109, \"FHH_CHILD\": 382, \"FAMILIES\": 2989, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 4982, \"VACANT\": 165, \"OWNER_OCC\": 3014, \"RENTER_OCC\": 1803 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.078697657416953, 38.934492388340558 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"North Fair Oaks\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"51840\", \"CAPITAL\": \"N\", \"AREALAND\": 1.168000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 15440, \"WHITE\": 7813, \"BLACK\": 296, \"AMERI_ES\": 130, \"ASIAN\": 468, \"HAWN_PI\": 203, \"OTHER\": 5858, \"MULT_RACE\": 672, \"HISPANIC\": 10741, \"MALES\": 8266, \"FEMALES\": 7174, \"AGE_UNDER5\": 1367, \"AGE_5_17\": 3305, \"AGE_18_21\": 1048, \"AGE_22_29\": 2420, \"AGE_30_39\": 2816, \"AGE_40_49\": 2051, \"AGE_50_64\": 1565, \"AGE_65_UP\": 868, \"MED_AGE\": 28.700000, \"MED_AGE_M\": 28.200000, \"MED_AGE_F\": 29.100000, \"HOUSEHOLDS\": 3997, \"AVE_HH_SZ\": 3.810000, \"HSEHLD_1_M\": 399, \"HSEHLD_1_F\": 319, \"MARHH_CHD\": 1372, \"MARHH_NO_C\": 748, \"MHH_CHILD\": 161, \"FHH_CHILD\": 275, \"FAMILIES\": 2937, \"AVE_FAM_SZ\": 4.200000, \"HSE_UNITS\": 4059, \"VACANT\": 62, \"OWNER_OCC\": 2051, \"RENTER_OCC\": 1946 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.196543835004732, 37.476084769107239 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"North Highlands\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"51924\", \"CAPITAL\": \"N\", \"AREALAND\": 12.800000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 44187, \"WHITE\": 30006, \"BLACK\": 4920, \"AMERI_ES\": 616, \"ASIAN\": 2515, \"HAWN_PI\": 240, \"OTHER\": 2708, \"MULT_RACE\": 3182, \"HISPANIC\": 6695, \"MALES\": 21513, \"FEMALES\": 22674, \"AGE_UNDER5\": 3800, \"AGE_5_17\": 9850, \"AGE_18_21\": 2768, \"AGE_22_29\": 5386, \"AGE_30_39\": 6554, \"AGE_40_49\": 5750, \"AGE_50_64\": 5321, \"AGE_65_UP\": 4758, \"MED_AGE\": 30.400000, \"MED_AGE_M\": 29.300000, \"MED_AGE_F\": 31.600000, \"HOUSEHOLDS\": 15389, \"AVE_HH_SZ\": 2.830000, \"HSEHLD_1_M\": 1576, \"HSEHLD_1_F\": 1925, \"MARHH_CHD\": 3146, \"MARHH_NO_C\": 3380, \"MHH_CHILD\": 633, \"FHH_CHILD\": 1951, \"FAMILIES\": 10734, \"AVE_FAM_SZ\": 3.310000, \"HSE_UNITS\": 16149, \"VACANT\": 760, \"OWNER_OCC\": 7574, \"RENTER_OCC\": 7815 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.367149141609872, 38.673684958040454 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Norwalk\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"52526\", \"CAPITAL\": \"N\", \"AREALAND\": 9.683000, \"AREAWATER\": 0.053000, \"POP_CL\": 8, \"POP2000\": 103298, \"WHITE\": 46303, \"BLACK\": 4774, \"AMERI_ES\": 1201, \"ASIAN\": 11924, \"HAWN_PI\": 404, \"OTHER\": 33829, \"MULT_RACE\": 4863, \"HISPANIC\": 64965, \"MALES\": 51109, \"FEMALES\": 52189, \"AGE_UNDER5\": 8935, \"AGE_5_17\": 24246, \"AGE_18_21\": 6564, \"AGE_22_29\": 12498, \"AGE_30_39\": 16272, \"AGE_40_49\": 13428, \"AGE_50_64\": 12043, \"AGE_65_UP\": 9312, \"MED_AGE\": 29.700000, \"MED_AGE_M\": 28.500000, \"MED_AGE_F\": 30.800000, \"HOUSEHOLDS\": 26887, \"AVE_HH_SZ\": 3.790000, \"HSEHLD_1_M\": 1419, \"HSEHLD_1_F\": 1997, \"MARHH_CHD\": 9544, \"MARHH_NO_C\": 6627, \"MHH_CHILD\": 799, \"FHH_CHILD\": 2191, \"FAMILIES\": 22522, \"AVE_FAM_SZ\": 4.080000, \"HSE_UNITS\": 27554, \"VACANT\": 667, \"OWNER_OCC\": 17703, \"RENTER_OCC\": 9184 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.082234228402029, 33.907056602046843 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Novato\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"52582\", \"CAPITAL\": \"N\", \"AREALAND\": 27.704000, \"AREAWATER\": 0.555000, \"POP_CL\": 6, \"POP2000\": 47630, \"WHITE\": 39414, \"BLACK\": 948, \"AMERI_ES\": 246, \"ASIAN\": 2479, \"HAWN_PI\": 82, \"OTHER\": 2587, \"MULT_RACE\": 1874, \"HISPANIC\": 6229, \"MALES\": 23033, \"FEMALES\": 24597, \"AGE_UNDER5\": 2802, \"AGE_5_17\": 8195, \"AGE_18_21\": 1777, \"AGE_22_29\": 3898, \"AGE_30_39\": 7470, \"AGE_40_49\": 8355, \"AGE_50_64\": 8939, \"AGE_65_UP\": 6194, \"MED_AGE\": 39.600000, \"MED_AGE_M\": 38.000000, \"MED_AGE_F\": 41.000000, \"HOUSEHOLDS\": 18524, \"AVE_HH_SZ\": 2.520000, \"HSEHLD_1_M\": 1747, \"HSEHLD_1_F\": 2914, \"MARHH_CHD\": 4435, \"MARHH_NO_C\": 5335, \"MHH_CHILD\": 383, \"FHH_CHILD\": 1134, \"FAMILIES\": 12419, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 18994, \"VACANT\": 470, \"OWNER_OCC\": 12515, \"RENTER_OCC\": 6009 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.557000547073528, 38.094443482014185 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Oakdale\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"52694\", \"CAPITAL\": \"N\", \"AREALAND\": 5.026000, \"AREAWATER\": 0.044000, \"POP_CL\": 6, \"POP2000\": 15503, \"WHITE\": 12995, \"BLACK\": 74, \"AMERI_ES\": 169, \"ASIAN\": 183, \"HAWN_PI\": 18, \"OTHER\": 1437, \"MULT_RACE\": 627, \"HISPANIC\": 3109, \"MALES\": 7431, \"FEMALES\": 8072, \"AGE_UNDER5\": 1159, \"AGE_5_17\": 3329, \"AGE_18_21\": 844, \"AGE_22_29\": 1448, \"AGE_30_39\": 2402, \"AGE_40_49\": 2235, \"AGE_50_64\": 2104, \"AGE_65_UP\": 1982, \"MED_AGE\": 34.500000, \"MED_AGE_M\": 32.500000, \"MED_AGE_F\": 36.200000, \"HOUSEHOLDS\": 5610, \"AVE_HH_SZ\": 2.730000, \"HSEHLD_1_M\": 479, \"HSEHLD_1_F\": 804, \"MARHH_CHD\": 1485, \"MARHH_NO_C\": 1476, \"MHH_CHILD\": 162, \"FHH_CHILD\": 481, \"FAMILIES\": 4052, \"AVE_FAM_SZ\": 3.200000, \"HSE_UNITS\": 5805, \"VACANT\": 195, \"OWNER_OCC\": 3326, \"RENTER_OCC\": 2284 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -120.852605830053719, 37.769716730090501 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Oakland\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"53000\", \"CAPITAL\": \"N\", \"AREALAND\": 56.055000, \"AREAWATER\": 22.098000, \"POP_CL\": 8, \"POP2000\": 399484, \"WHITE\": 125013, \"BLACK\": 142460, \"AMERI_ES\": 2655, \"ASIAN\": 60851, \"HAWN_PI\": 2002, \"OTHER\": 46592, \"MULT_RACE\": 19911, \"HISPANIC\": 87467, \"MALES\": 192757, \"FEMALES\": 206727, \"AGE_UNDER5\": 28292, \"AGE_5_17\": 71467, \"AGE_18_21\": 20407, \"AGE_22_29\": 54811, \"AGE_30_39\": 68998, \"AGE_40_49\": 58712, \"AGE_50_64\": 55009, \"AGE_65_UP\": 41788, \"MED_AGE\": 33.300000, \"MED_AGE_M\": 32.300000, \"MED_AGE_F\": 34.400000, \"HOUSEHOLDS\": 150790, \"AVE_HH_SZ\": 2.600000, \"HSEHLD_1_M\": 21728, \"HSEHLD_1_F\": 27224, \"MARHH_CHD\": 24838, \"MARHH_NO_C\": 26494, \"MHH_CHILD\": 3382, \"FHH_CHILD\": 14932, \"FAMILIES\": 86347, \"AVE_FAM_SZ\": 3.380000, \"HSE_UNITS\": 157508, \"VACANT\": 6718, \"OWNER_OCC\": 62489, \"RENTER_OCC\": 88301 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.220950065744759, 37.796159848509468 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Oakley\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"53070\", \"CAPITAL\": \"N\", \"AREALAND\": 12.417000, \"AREAWATER\": 0.101000, \"POP_CL\": 6, \"POP2000\": 25619, \"WHITE\": 19342, \"BLACK\": 876, \"AMERI_ES\": 227, \"ASIAN\": 733, \"HAWN_PI\": 75, \"OTHER\": 2711, \"MULT_RACE\": 1655, \"HISPANIC\": 6399, \"MALES\": 12943, \"FEMALES\": 12676, \"AGE_UNDER5\": 2177, \"AGE_5_17\": 6662, \"AGE_18_21\": 1219, \"AGE_22_29\": 2169, \"AGE_30_39\": 4927, \"AGE_40_49\": 4254, \"AGE_50_64\": 2833, \"AGE_65_UP\": 1378, \"MED_AGE\": 31.500000, \"MED_AGE_M\": 31.000000, \"MED_AGE_F\": 31.900000, \"HOUSEHOLDS\": 7832, \"AVE_HH_SZ\": 3.260000, \"HSEHLD_1_M\": 490, \"HSEHLD_1_F\": 527, \"MARHH_CHD\": 3362, \"MARHH_NO_C\": 1980, \"MHH_CHILD\": 257, \"FHH_CHILD\": 455, \"FAMILIES\": 6464, \"AVE_FAM_SZ\": 3.560000, \"HSE_UNITS\": 7946, \"VACANT\": 114, \"OWNER_OCC\": 6662, \"RENTER_OCC\": 1170 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.712301682713473, 37.994241489983501 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Oceanside\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"53322\", \"CAPITAL\": \"N\", \"AREALAND\": 40.590000, \"AREAWATER\": 0.983000, \"POP_CL\": 8, \"POP2000\": 161029, \"WHITE\": 106866, \"BLACK\": 10189, \"AMERI_ES\": 1370, \"ASIAN\": 8896, \"HAWN_PI\": 2042, \"OTHER\": 23342, \"MULT_RACE\": 8324, \"HISPANIC\": 48691, \"MALES\": 79719, \"FEMALES\": 81310, \"AGE_UNDER5\": 12194, \"AGE_5_17\": 32262, \"AGE_18_21\": 9145, \"AGE_22_29\": 18970, \"AGE_30_39\": 25692, \"AGE_40_49\": 22568, \"AGE_50_64\": 18339, \"AGE_65_UP\": 21859, \"MED_AGE\": 33.300000, \"MED_AGE_M\": 31.900000, \"MED_AGE_F\": 34.600000, \"HOUSEHOLDS\": 56488, \"AVE_HH_SZ\": 2.830000, \"HSEHLD_1_M\": 5354, \"HSEHLD_1_F\": 7480, \"MARHH_CHD\": 14590, \"MARHH_NO_C\": 15963, \"MHH_CHILD\": 1398, \"FHH_CHILD\": 3787, \"FAMILIES\": 39285, \"AVE_FAM_SZ\": 3.330000, \"HSE_UNITS\": 59581, \"VACANT\": 3093, \"OWNER_OCC\": 35062, \"RENTER_OCC\": 21426 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.324887625025497, 33.211663679290069 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Oildale\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"53448\", \"CAPITAL\": \"N\", \"AREALAND\": 6.437000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 27885, \"WHITE\": 24814, \"BLACK\": 95, \"AMERI_ES\": 611, \"ASIAN\": 93, \"HAWN_PI\": 18, \"OTHER\": 1337, \"MULT_RACE\": 917, \"HISPANIC\": 2828, \"MALES\": 13321, \"FEMALES\": 14564, \"AGE_UNDER5\": 2337, \"AGE_5_17\": 5899, \"AGE_18_21\": 1609, \"AGE_22_29\": 3055, \"AGE_30_39\": 4083, \"AGE_40_49\": 3841, \"AGE_50_64\": 3707, \"AGE_65_UP\": 3354, \"MED_AGE\": 32.600000, \"MED_AGE_M\": 31.000000, \"MED_AGE_F\": 33.900000, \"HOUSEHOLDS\": 10983, \"AVE_HH_SZ\": 2.530000, \"HSEHLD_1_M\": 1351, \"HSEHLD_1_F\": 1826, \"MARHH_CHD\": 2034, \"MARHH_NO_C\": 2372, \"MHH_CHILD\": 448, \"FHH_CHILD\": 1252, \"FAMILIES\": 7082, \"AVE_FAM_SZ\": 3.110000, \"HSE_UNITS\": 11952, \"VACANT\": 969, \"OWNER_OCC\": 5564, \"RENTER_OCC\": 5419 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -119.026991709677006, 35.420187289167515 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Olivehurst\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"53714\", \"CAPITAL\": \"N\", \"AREALAND\": 5.007000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11061, \"WHITE\": 7443, \"BLACK\": 183, \"AMERI_ES\": 406, \"ASIAN\": 560, \"HAWN_PI\": 19, \"OTHER\": 1717, \"MULT_RACE\": 733, \"HISPANIC\": 2760, \"MALES\": 5582, \"FEMALES\": 5479, \"AGE_UNDER5\": 961, \"AGE_5_17\": 2747, \"AGE_18_21\": 656, \"AGE_22_29\": 1099, \"AGE_30_39\": 1603, \"AGE_40_49\": 1487, \"AGE_50_64\": 1460, \"AGE_65_UP\": 1048, \"MED_AGE\": 30.500000, \"MED_AGE_M\": 29.500000, \"MED_AGE_F\": 31.400000, \"HOUSEHOLDS\": 3474, \"AVE_HH_SZ\": 3.170000, \"HSEHLD_1_M\": 299, \"HSEHLD_1_F\": 341, \"MARHH_CHD\": 978, \"MARHH_NO_C\": 904, \"MHH_CHILD\": 134, \"FHH_CHILD\": 331, \"FAMILIES\": 2650, \"AVE_FAM_SZ\": 3.580000, \"HSE_UNITS\": 3732, \"VACANT\": 258, \"OWNER_OCC\": 2280, \"RENTER_OCC\": 1194 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.541711714775033, 39.087085088479455 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ontario\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"53896\", \"CAPITAL\": \"N\", \"AREALAND\": 49.784000, \"AREAWATER\": 0.073000, \"POP_CL\": 8, \"POP2000\": 158007, \"WHITE\": 75575, \"BLACK\": 11864, \"AMERI_ES\": 1682, \"ASIAN\": 6125, \"HAWN_PI\": 587, \"OTHER\": 53807, \"MULT_RACE\": 8367, \"HISPANIC\": 94610, \"MALES\": 79225, \"FEMALES\": 78782, \"AGE_UNDER5\": 15338, \"AGE_5_17\": 38966, \"AGE_18_21\": 10115, \"AGE_22_29\": 21026, \"AGE_30_39\": 26288, \"AGE_40_49\": 20749, \"AGE_50_64\": 16203, \"AGE_65_UP\": 9322, \"MED_AGE\": 27.600000, \"MED_AGE_M\": 27.000000, \"MED_AGE_F\": 28.300000, \"HOUSEHOLDS\": 43525, \"AVE_HH_SZ\": 3.600000, \"HSEHLD_1_M\": 3011, \"HSEHLD_1_F\": 3572, \"MARHH_CHD\": 15676, \"MARHH_NO_C\": 9093, \"MHH_CHILD\": 1747, \"FHH_CHILD\": 4100, \"FAMILIES\": 34699, \"AVE_FAM_SZ\": 3.960000, \"HSE_UNITS\": 45182, \"VACANT\": 1657, \"OWNER_OCC\": 25063, \"RENTER_OCC\": 18462 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.62688401004371, 34.052927546864623 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Orange\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"53980\", \"CAPITAL\": \"N\", \"AREALAND\": 23.395000, \"AREAWATER\": 0.506000, \"POP_CL\": 8, \"POP2000\": 128821, \"WHITE\": 90822, \"BLACK\": 2056, \"AMERI_ES\": 1010, \"ASIAN\": 12000, \"HAWN_PI\": 296, \"OTHER\": 17804, \"MULT_RACE\": 4833, \"HISPANIC\": 41434, \"MALES\": 64665, \"FEMALES\": 64156, \"AGE_UNDER5\": 9533, \"AGE_5_17\": 24808, \"AGE_18_21\": 7458, \"AGE_22_29\": 15483, \"AGE_30_39\": 22422, \"AGE_40_49\": 18963, \"AGE_50_64\": 17745, \"AGE_65_UP\": 12409, \"MED_AGE\": 33.200000, \"MED_AGE_M\": 31.800000, \"MED_AGE_F\": 34.700000, \"HOUSEHOLDS\": 40930, \"AVE_HH_SZ\": 3.020000, \"HSEHLD_1_M\": 3084, \"HSEHLD_1_F\": 4880, \"MARHH_CHD\": 11778, \"MARHH_NO_C\": 11597, \"MHH_CHILD\": 945, \"FHH_CHILD\": 2458, \"FAMILIES\": 30168, \"AVE_FAM_SZ\": 3.430000, \"HSE_UNITS\": 41904, \"VACANT\": 974, \"OWNER_OCC\": 25637, \"RENTER_OCC\": 15293 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.831462183412796, 33.803071675469148 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Orangevale\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"54092\", \"CAPITAL\": \"N\", \"AREALAND\": 10.026000, \"AREAWATER\": 0.130000, \"POP_CL\": 6, \"POP2000\": 26705, \"WHITE\": 23906, \"BLACK\": 301, \"AMERI_ES\": 277, \"ASIAN\": 656, \"HAWN_PI\": 50, \"OTHER\": 450, \"MULT_RACE\": 1065, \"HISPANIC\": 1816, \"MALES\": 13199, \"FEMALES\": 13506, \"AGE_UNDER5\": 1514, \"AGE_5_17\": 5582, \"AGE_18_21\": 1371, \"AGE_22_29\": 2212, \"AGE_30_39\": 3909, \"AGE_40_49\": 4646, \"AGE_50_64\": 4320, \"AGE_65_UP\": 3151, \"MED_AGE\": 37.400000, \"MED_AGE_M\": 36.200000, \"MED_AGE_F\": 38.400000, \"HOUSEHOLDS\": 9856, \"AVE_HH_SZ\": 2.670000, \"HSEHLD_1_M\": 946, \"HSEHLD_1_F\": 1122, \"MARHH_CHD\": 2411, \"MARHH_NO_C\": 3041, \"MHH_CHILD\": 294, \"FHH_CHILD\": 705, \"FAMILIES\": 7120, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 10098, \"VACANT\": 242, \"OWNER_OCC\": 7011, \"RENTER_OCC\": 2845 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.208584181743859, 38.682542844456641 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Orcutt\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"54120\", \"CAPITAL\": \"N\", \"AREALAND\": 11.301000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 28830, \"WHITE\": 24990, \"BLACK\": 403, \"AMERI_ES\": 265, \"ASIAN\": 924, \"HAWN_PI\": 24, \"OTHER\": 1127, \"MULT_RACE\": 1097, \"HISPANIC\": 4165, \"MALES\": 14045, \"FEMALES\": 14785, \"AGE_UNDER5\": 1591, \"AGE_5_17\": 6183, \"AGE_18_21\": 1198, \"AGE_22_29\": 1548, \"AGE_30_39\": 3711, \"AGE_40_49\": 4714, \"AGE_50_64\": 4772, \"AGE_65_UP\": 5113, \"MED_AGE\": 40.400000, \"MED_AGE_M\": 39.400000, \"MED_AGE_F\": 41.300000, \"HOUSEHOLDS\": 10420, \"AVE_HH_SZ\": 2.740000, \"HSEHLD_1_M\": 721, \"HSEHLD_1_F\": 1274, \"MARHH_CHD\": 2955, \"MARHH_NO_C\": 3815, \"MHH_CHILD\": 212, \"FHH_CHILD\": 487, \"FAMILIES\": 8025, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 10640, \"VACANT\": 220, \"OWNER_OCC\": 8671, \"RENTER_OCC\": 1749 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -120.424979465075694, 34.874958708655335 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Orinda\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"54232\", \"CAPITAL\": \"N\", \"AREALAND\": 12.587000, \"AREAWATER\": 0.037000, \"POP_CL\": 6, \"POP2000\": 17599, \"WHITE\": 15246, \"BLACK\": 82, \"AMERI_ES\": 26, \"ASIAN\": 1626, \"HAWN_PI\": 7, \"OTHER\": 112, \"MULT_RACE\": 500, \"HISPANIC\": 560, \"MALES\": 8521, \"FEMALES\": 9078, \"AGE_UNDER5\": 959, \"AGE_5_17\": 3605, \"AGE_18_21\": 387, \"AGE_22_29\": 465, \"AGE_30_39\": 1777, \"AGE_40_49\": 3214, \"AGE_50_64\": 3980, \"AGE_65_UP\": 3212, \"MED_AGE\": 45.200000, \"MED_AGE_M\": 45.200000, \"MED_AGE_F\": 45.200000, \"HOUSEHOLDS\": 6596, \"AVE_HH_SZ\": 2.660000, \"HSEHLD_1_M\": 364, \"HSEHLD_1_F\": 732, \"MARHH_CHD\": 2194, \"MARHH_NO_C\": 2573, \"MHH_CHILD\": 64, \"FHH_CHILD\": 169, \"FAMILIES\": 5241, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 6744, \"VACANT\": 148, \"OWNER_OCC\": 6042, \"RENTER_OCC\": 554 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.168058848834178, 37.883274110295766 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Oroville\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"54386\", \"CAPITAL\": \"N\", \"AREALAND\": 12.252000, \"AREAWATER\": 0.018000, \"POP_CL\": 6, \"POP2000\": 13004, \"WHITE\": 10043, \"BLACK\": 524, \"AMERI_ES\": 511, \"ASIAN\": 825, \"HAWN_PI\": 34, \"OTHER\": 362, \"MULT_RACE\": 705, \"HISPANIC\": 1073, \"MALES\": 6364, \"FEMALES\": 6640, \"AGE_UNDER5\": 1093, \"AGE_5_17\": 2815, \"AGE_18_21\": 788, \"AGE_22_29\": 1351, \"AGE_30_39\": 1708, \"AGE_40_49\": 1681, \"AGE_50_64\": 1660, \"AGE_65_UP\": 1908, \"MED_AGE\": 32.600000, \"MED_AGE_M\": 30.500000, \"MED_AGE_F\": 35.200000, \"HOUSEHOLDS\": 4881, \"AVE_HH_SZ\": 2.500000, \"HSEHLD_1_M\": 659, \"HSEHLD_1_F\": 963, \"MARHH_CHD\": 834, \"MARHH_NO_C\": 944, \"MHH_CHILD\": 172, \"FHH_CHILD\": 649, \"FAMILIES\": 2946, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 5419, \"VACANT\": 538, \"OWNER_OCC\": 2082, \"RENTER_OCC\": 2799 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.548337674451673, 39.509401683515051 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Oxnard\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"54652\", \"CAPITAL\": \"N\", \"AREALAND\": 25.314000, \"AREAWATER\": 11.276000, \"POP_CL\": 8, \"POP2000\": 170358, \"WHITE\": 71688, \"BLACK\": 6446, \"AMERI_ES\": 2143, \"ASIAN\": 12581, \"HAWN_PI\": 698, \"OTHER\": 68753, \"MULT_RACE\": 8049, \"HISPANIC\": 112807, \"MALES\": 87090, \"FEMALES\": 83268, \"AGE_UNDER5\": 15213, \"AGE_5_17\": 38903, \"AGE_18_21\": 11428, \"AGE_22_29\": 22936, \"AGE_30_39\": 26513, \"AGE_40_49\": 22134, \"AGE_50_64\": 19401, \"AGE_65_UP\": 13830, \"MED_AGE\": 28.900000, \"MED_AGE_M\": 28.200000, \"MED_AGE_F\": 29.600000, \"HOUSEHOLDS\": 43576, \"AVE_HH_SZ\": 3.850000, \"HSEHLD_1_M\": 2925, \"HSEHLD_1_F\": 3426, \"MARHH_CHD\": 15209, \"MARHH_NO_C\": 10673, \"MHH_CHILD\": 1404, \"FHH_CHILD\": 3493, \"FAMILIES\": 34959, \"AVE_FAM_SZ\": 4.160000, \"HSE_UNITS\": 45166, \"VACANT\": 1590, \"OWNER_OCC\": 24987, \"RENTER_OCC\": 18589 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -119.180663354807407, 34.191526673888539 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pacifica\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"54806\", \"CAPITAL\": \"N\", \"AREALAND\": 12.633000, \"AREAWATER\": 0.029000, \"POP_CL\": 6, \"POP2000\": 38390, \"WHITE\": 26684, \"BLACK\": 1254, \"AMERI_ES\": 190, \"ASIAN\": 5868, \"HAWN_PI\": 263, \"OTHER\": 1605, \"MULT_RACE\": 2526, \"HISPANIC\": 5609, \"MALES\": 18926, \"FEMALES\": 19464, \"AGE_UNDER5\": 2170, \"AGE_5_17\": 6720, \"AGE_18_21\": 1597, \"AGE_22_29\": 3883, \"AGE_30_39\": 6492, \"AGE_40_49\": 7120, \"AGE_50_64\": 6666, \"AGE_65_UP\": 3742, \"MED_AGE\": 37.600000, \"MED_AGE_M\": 36.700000, \"MED_AGE_F\": 38.600000, \"HOUSEHOLDS\": 13994, \"AVE_HH_SZ\": 2.730000, \"HSEHLD_1_M\": 1310, \"HSEHLD_1_F\": 1661, \"MARHH_CHD\": 3451, \"MARHH_NO_C\": 4031, \"MHH_CHILD\": 292, \"FHH_CHILD\": 735, \"FAMILIES\": 9654, \"AVE_FAM_SZ\": 3.210000, \"HSE_UNITS\": 14245, \"VACANT\": 251, \"OWNER_OCC\": 9601, \"RENTER_OCC\": 4393 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.47774320391764, 37.623710931078797 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pacific Grove\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"54848\", \"CAPITAL\": \"N\", \"AREALAND\": 2.875000, \"AREAWATER\": 1.135000, \"POP_CL\": 6, \"POP2000\": 15522, \"WHITE\": 13665, \"BLACK\": 177, \"AMERI_ES\": 86, \"ASIAN\": 698, \"HAWN_PI\": 41, \"OTHER\": 276, \"MULT_RACE\": 579, \"HISPANIC\": 1108, \"MALES\": 7167, \"FEMALES\": 8355, \"AGE_UNDER5\": 558, \"AGE_5_17\": 2208, \"AGE_18_21\": 502, \"AGE_22_29\": 1193, \"AGE_30_39\": 2056, \"AGE_40_49\": 2835, \"AGE_50_64\": 3133, \"AGE_65_UP\": 3037, \"MED_AGE\": 44.700000, \"MED_AGE_M\": 42.400000, \"MED_AGE_F\": 46.500000, \"HOUSEHOLDS\": 7316, \"AVE_HH_SZ\": 2.100000, \"HSEHLD_1_M\": 923, \"HSEHLD_1_F\": 1768, \"MARHH_CHD\": 1081, \"MARHH_NO_C\": 1968, \"MHH_CHILD\": 113, \"FHH_CHILD\": 386, \"FAMILIES\": 3973, \"AVE_FAM_SZ\": 2.750000, \"HSE_UNITS\": 8032, \"VACANT\": 716, \"OWNER_OCC\": 3607, \"RENTER_OCC\": 3709 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.915055227733248, 36.619861092909169 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Palmdale\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"55156\", \"CAPITAL\": \"N\", \"AREALAND\": 104.960000, \"AREAWATER\": 0.136000, \"POP_CL\": 8, \"POP2000\": 116670, \"WHITE\": 63905, \"BLACK\": 16913, \"AMERI_ES\": 1198, \"ASIAN\": 4468, \"HAWN_PI\": 224, \"OTHER\": 23858, \"MULT_RACE\": 6104, \"HISPANIC\": 43991, \"MALES\": 57338, \"FEMALES\": 59332, \"AGE_UNDER5\": 10808, \"AGE_5_17\": 33510, \"AGE_18_21\": 6371, \"AGE_22_29\": 10083, \"AGE_30_39\": 19352, \"AGE_40_49\": 18236, \"AGE_50_64\": 11790, \"AGE_65_UP\": 6520, \"MED_AGE\": 28.200000, \"MED_AGE_M\": 26.800000, \"MED_AGE_F\": 29.400000, \"HOUSEHOLDS\": 34285, \"AVE_HH_SZ\": 3.400000, \"HSEHLD_1_M\": 2403, \"HSEHLD_1_F\": 2359, \"MARHH_CHD\": 13492, \"MARHH_NO_C\": 7008, \"MHH_CHILD\": 1309, \"FHH_CHILD\": 3919, \"FAMILIES\": 28105, \"AVE_FAM_SZ\": 3.720000, \"HSE_UNITS\": 37096, \"VACANT\": 2811, \"OWNER_OCC\": 24346, \"RENTER_OCC\": 9939 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.099375705248036, 34.581152744705797 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Palm Desert\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"55184\", \"CAPITAL\": \"N\", \"AREALAND\": 24.366000, \"AREAWATER\": 0.249000, \"POP_CL\": 6, \"POP2000\": 41155, \"WHITE\": 35739, \"BLACK\": 495, \"AMERI_ES\": 187, \"ASIAN\": 1056, \"HAWN_PI\": 40, \"OTHER\": 2666, \"MULT_RACE\": 972, \"HISPANIC\": 7031, \"MALES\": 19783, \"FEMALES\": 21372, \"AGE_UNDER5\": 1849, \"AGE_5_17\": 5281, \"AGE_18_21\": 1452, \"AGE_22_29\": 3115, \"AGE_30_39\": 4715, \"AGE_40_49\": 5143, \"AGE_50_64\": 8261, \"AGE_65_UP\": 11339, \"MED_AGE\": 48.000000, \"MED_AGE_M\": 45.600000, \"MED_AGE_F\": 50.000000, \"HOUSEHOLDS\": 19184, \"AVE_HH_SZ\": 2.130000, \"HSEHLD_1_M\": 2341, \"HSEHLD_1_F\": 3880, \"MARHH_CHD\": 2412, \"MARHH_NO_C\": 6885, \"MHH_CHILD\": 328, \"FHH_CHILD\": 884, \"FAMILIES\": 11405, \"AVE_FAM_SZ\": 2.670000, \"HSE_UNITS\": 28021, \"VACANT\": 8837, \"OWNER_OCC\": 12827, \"RENTER_OCC\": 6357 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -116.36888017164091, 33.725605322259213 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Palm Springs\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"55254\", \"CAPITAL\": \"N\", \"AREALAND\": 94.246000, \"AREAWATER\": 0.837000, \"POP_CL\": 6, \"POP2000\": 42807, \"WHITE\": 33531, \"BLACK\": 1681, \"AMERI_ES\": 401, \"ASIAN\": 1639, \"HAWN_PI\": 59, \"OTHER\": 4188, \"MULT_RACE\": 1308, \"HISPANIC\": 10155, \"MALES\": 22208, \"FEMALES\": 20599, \"AGE_UNDER5\": 2028, \"AGE_5_17\": 5247, \"AGE_18_21\": 1500, \"AGE_22_29\": 3180, \"AGE_30_39\": 5285, \"AGE_40_49\": 5939, \"AGE_50_64\": 8399, \"AGE_65_UP\": 11229, \"MED_AGE\": 46.900000, \"MED_AGE_M\": 45.300000, \"MED_AGE_F\": 49.000000, \"HOUSEHOLDS\": 20516, \"AVE_HH_SZ\": 2.050000, \"HSEHLD_1_M\": 4175, \"HSEHLD_1_F\": 4362, \"MARHH_CHD\": 2107, \"MARHH_NO_C\": 4860, \"MHH_CHILD\": 332, \"FHH_CHILD\": 903, \"FAMILIES\": 9464, \"AVE_FAM_SZ\": 2.880000, \"HSE_UNITS\": 30823, \"VACANT\": 10307, \"OWNER_OCC\": 12480, \"RENTER_OCC\": 8036 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -116.529730853009525, 33.824058760808015 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Palo Alto\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"55282\", \"CAPITAL\": \"N\", \"AREALAND\": 23.673000, \"AREAWATER\": 1.960000, \"POP_CL\": 7, \"POP2000\": 58598, \"WHITE\": 44391, \"BLACK\": 1184, \"AMERI_ES\": 122, \"ASIAN\": 10090, \"HAWN_PI\": 84, \"OTHER\": 827, \"MULT_RACE\": 1900, \"HISPANIC\": 2722, \"MALES\": 28671, \"FEMALES\": 29927, \"AGE_UNDER5\": 2970, \"AGE_5_17\": 9436, \"AGE_18_21\": 1351, \"AGE_22_29\": 5417, \"AGE_30_39\": 9859, \"AGE_40_49\": 10116, \"AGE_50_64\": 10309, \"AGE_65_UP\": 9140, \"MED_AGE\": 40.200000, \"MED_AGE_M\": 38.800000, \"MED_AGE_F\": 41.500000, \"HOUSEHOLDS\": 25216, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 3617, \"HSEHLD_1_F\": 4592, \"MARHH_CHD\": 5660, \"MARHH_NO_C\": 6568, \"MHH_CHILD\": 293, \"FHH_CHILD\": 908, \"FAMILIES\": 14593, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 26048, \"VACANT\": 832, \"OWNER_OCC\": 14420, \"RENTER_OCC\": 10796 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.131379038072836, 37.430179330477785 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Palos Verdes Estates\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"55380\", \"CAPITAL\": \"N\", \"AREALAND\": 4.790000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 13340, \"WHITE\": 10448, \"BLACK\": 132, \"AMERI_ES\": 18, \"ASIAN\": 2286, \"HAWN_PI\": 16, \"OTHER\": 80, \"MULT_RACE\": 360, \"HISPANIC\": 378, \"MALES\": 6538, \"FEMALES\": 6802, \"AGE_UNDER5\": 697, \"AGE_5_17\": 2397, \"AGE_18_21\": 355, \"AGE_22_29\": 469, \"AGE_30_39\": 1295, \"AGE_40_49\": 2238, \"AGE_50_64\": 3229, \"AGE_65_UP\": 2660, \"MED_AGE\": 46.700000, \"MED_AGE_M\": 46.600000, \"MED_AGE_F\": 46.700000, \"HOUSEHOLDS\": 4993, \"AVE_HH_SZ\": 2.670000, \"HSEHLD_1_M\": 254, \"HSEHLD_1_F\": 495, \"MARHH_CHD\": 1496, \"MARHH_NO_C\": 2282, \"MHH_CHILD\": 45, \"FHH_CHILD\": 96, \"FAMILIES\": 4117, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 5202, \"VACANT\": 209, \"OWNER_OCC\": 4519, \"RENTER_OCC\": 474 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.3953483083652, 33.787212326819109 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Paradise\", \"CLASS\": \"town\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"55520\", \"CAPITAL\": \"N\", \"AREALAND\": 18.249000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 26408, \"WHITE\": 24751, \"BLACK\": 51, \"AMERI_ES\": 283, \"ASIAN\": 275, \"HAWN_PI\": 31, \"OTHER\": 320, \"MULT_RACE\": 697, \"HISPANIC\": 1127, \"MALES\": 12307, \"FEMALES\": 14101, \"AGE_UNDER5\": 1139, \"AGE_5_17\": 4247, \"AGE_18_21\": 1006, \"AGE_22_29\": 1522, \"AGE_30_39\": 2725, \"AGE_40_49\": 3968, \"AGE_50_64\": 4626, \"AGE_65_UP\": 7175, \"MED_AGE\": 46.600000, \"MED_AGE_M\": 44.700000, \"MED_AGE_F\": 48.400000, \"HOUSEHOLDS\": 11591, \"AVE_HH_SZ\": 2.220000, \"HSEHLD_1_M\": 1297, \"HSEHLD_1_F\": 2412, \"MARHH_CHD\": 1720, \"MARHH_NO_C\": 3924, \"MHH_CHILD\": 246, \"FHH_CHILD\": 695, \"FAMILIES\": 7244, \"AVE_FAM_SZ\": 2.770000, \"HSE_UNITS\": 12374, \"VACANT\": 783, \"OWNER_OCC\": 8215, \"RENTER_OCC\": 3376 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.602278305337464, 39.76248025238597 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Paramount\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"55618\", \"CAPITAL\": \"N\", \"AREALAND\": 4.732000, \"AREAWATER\": 0.105000, \"POP_CL\": 7, \"POP2000\": 55266, \"WHITE\": 19177, \"BLACK\": 7508, \"AMERI_ES\": 586, \"ASIAN\": 1851, \"HAWN_PI\": 464, \"OTHER\": 23040, \"MULT_RACE\": 2640, \"HISPANIC\": 39945, \"MALES\": 27113, \"FEMALES\": 28153, \"AGE_UNDER5\": 6054, \"AGE_5_17\": 14319, \"AGE_18_21\": 3746, \"AGE_22_29\": 7991, \"AGE_30_39\": 9036, \"AGE_40_49\": 6232, \"AGE_50_64\": 5039, \"AGE_65_UP\": 2849, \"MED_AGE\": 25.600000, \"MED_AGE_M\": 24.900000, \"MED_AGE_F\": 26.300000, \"HOUSEHOLDS\": 13972, \"AVE_HH_SZ\": 3.930000, \"HSEHLD_1_M\": 909, \"HSEHLD_1_F\": 1130, \"MARHH_CHD\": 5060, \"MARHH_NO_C\": 2106, \"MHH_CHILD\": 636, \"FHH_CHILD\": 2000, \"FAMILIES\": 11334, \"AVE_FAM_SZ\": 4.310000, \"HSE_UNITS\": 14591, \"VACANT\": 619, \"OWNER_OCC\": 5999, \"RENTER_OCC\": 7973 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.165448144390538, 33.900063019241557 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Parkway-South Sacramento\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"55837\", \"CAPITAL\": \"N\", \"AREALAND\": 4.840000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 36468, \"WHITE\": 13895, \"BLACK\": 6067, \"AMERI_ES\": 562, \"ASIAN\": 6339, \"HAWN_PI\": 235, \"OTHER\": 6572, \"MULT_RACE\": 2798, \"HISPANIC\": 12402, \"MALES\": 17815, \"FEMALES\": 18653, \"AGE_UNDER5\": 3743, \"AGE_5_17\": 9216, \"AGE_18_21\": 2360, \"AGE_22_29\": 4430, \"AGE_30_39\": 5073, \"AGE_40_49\": 4311, \"AGE_50_64\": 3787, \"AGE_65_UP\": 3548, \"MED_AGE\": 27.200000, \"MED_AGE_M\": 26.400000, \"MED_AGE_F\": 27.900000, \"HOUSEHOLDS\": 11197, \"AVE_HH_SZ\": 3.220000, \"HSEHLD_1_M\": 1028, \"HSEHLD_1_F\": 1299, \"MARHH_CHD\": 2588, \"MARHH_NO_C\": 2162, \"MHH_CHILD\": 454, \"FHH_CHILD\": 1684, \"FAMILIES\": 8211, \"AVE_FAM_SZ\": 3.740000, \"HSE_UNITS\": 11779, \"VACANT\": 582, \"OWNER_OCC\": 5152, \"RENTER_OCC\": 6045 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.446630808871021, 38.512357825950396 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Parlier\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"55856\", \"CAPITAL\": \"N\", \"AREALAND\": 1.624000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11145, \"WHITE\": 3748, \"BLACK\": 65, \"AMERI_ES\": 216, \"ASIAN\": 91, \"HAWN_PI\": 5, \"OTHER\": 6623, \"MULT_RACE\": 397, \"HISPANIC\": 10807, \"MALES\": 5802, \"FEMALES\": 5343, \"AGE_UNDER5\": 1172, \"AGE_5_17\": 3057, \"AGE_18_21\": 908, \"AGE_22_29\": 1697, \"AGE_30_39\": 1652, \"AGE_40_49\": 1172, \"AGE_50_64\": 943, \"AGE_65_UP\": 544, \"MED_AGE\": 23.900000, \"MED_AGE_M\": 24.000000, \"MED_AGE_F\": 23.800000, \"HOUSEHOLDS\": 2446, \"AVE_HH_SZ\": 4.510000, \"HSEHLD_1_M\": 80, \"HSEHLD_1_F\": 87, \"MARHH_CHD\": 1128, \"MARHH_NO_C\": 407, \"MHH_CHILD\": 108, \"FHH_CHILD\": 277, \"FAMILIES\": 2180, \"AVE_FAM_SZ\": 4.590000, \"HSE_UNITS\": 2644, \"VACANT\": 198, \"OWNER_OCC\": 1424, \"RENTER_OCC\": 1022 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -119.533700419880205, 36.609716947684802 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pasadena\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"56000\", \"CAPITAL\": \"N\", \"AREALAND\": 23.097000, \"AREAWATER\": 0.075000, \"POP_CL\": 8, \"POP2000\": 133936, \"WHITE\": 71469, \"BLACK\": 19319, \"AMERI_ES\": 952, \"ASIAN\": 13399, \"HAWN_PI\": 132, \"OTHER\": 21444, \"MULT_RACE\": 7221, \"HISPANIC\": 44734, \"MALES\": 65495, \"FEMALES\": 68441, \"AGE_UNDER5\": 9202, \"AGE_5_17\": 21754, \"AGE_18_21\": 6495, \"AGE_22_29\": 18265, \"AGE_30_39\": 24278, \"AGE_40_49\": 19111, \"AGE_50_64\": 18609, \"AGE_65_UP\": 16222, \"MED_AGE\": 34.500000, \"MED_AGE_M\": 33.000000, \"MED_AGE_F\": 36.000000, \"HOUSEHOLDS\": 51844, \"AVE_HH_SZ\": 2.520000, \"HSEHLD_1_M\": 7579, \"HSEHLD_1_F\": 9881, \"MARHH_CHD\": 9963, \"MARHH_NO_C\": 11399, \"MHH_CHILD\": 908, \"FHH_CHILD\": 3187, \"FAMILIES\": 29858, \"AVE_FAM_SZ\": 3.300000, \"HSE_UNITS\": 54132, \"VACANT\": 2288, \"OWNER_OCC\": 23725, \"RENTER_OCC\": 28119 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.130600767736297, 34.156245277087848 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Patterson\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"56112\", \"CAPITAL\": \"N\", \"AREALAND\": 2.875000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11606, \"WHITE\": 6459, \"BLACK\": 219, \"AMERI_ES\": 171, \"ASIAN\": 244, \"HAWN_PI\": 49, \"OTHER\": 3661, \"MULT_RACE\": 803, \"HISPANIC\": 6611, \"MALES\": 5814, \"FEMALES\": 5792, \"AGE_UNDER5\": 1061, \"AGE_5_17\": 3164, \"AGE_18_21\": 715, \"AGE_22_29\": 1247, \"AGE_30_39\": 1820, \"AGE_40_49\": 1553, \"AGE_50_64\": 1206, \"AGE_65_UP\": 840, \"MED_AGE\": 27.500000, \"MED_AGE_M\": 26.400000, \"MED_AGE_F\": 28.500000, \"HOUSEHOLDS\": 3146, \"AVE_HH_SZ\": 3.620000, \"HSEHLD_1_M\": 159, \"HSEHLD_1_F\": 263, \"MARHH_CHD\": 1327, \"MARHH_NO_C\": 716, \"MHH_CHILD\": 109, \"FHH_CHILD\": 234, \"FAMILIES\": 2608, \"AVE_FAM_SZ\": 3.940000, \"HSE_UNITS\": 3262, \"VACANT\": 116, \"OWNER_OCC\": 2187, \"RENTER_OCC\": 959 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.128136951613726, 37.473581164535553 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pedley\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"56350\", \"CAPITAL\": \"N\", \"AREALAND\": 5.083000, \"AREAWATER\": 0.037000, \"POP_CL\": 6, \"POP2000\": 11207, \"WHITE\": 7492, \"BLACK\": 517, \"AMERI_ES\": 105, \"ASIAN\": 416, \"HAWN_PI\": 25, \"OTHER\": 2065, \"MULT_RACE\": 587, \"HISPANIC\": 3840, \"MALES\": 5669, \"FEMALES\": 5538, \"AGE_UNDER5\": 833, \"AGE_5_17\": 2863, \"AGE_18_21\": 624, \"AGE_22_29\": 1032, \"AGE_30_39\": 1657, \"AGE_40_49\": 1892, \"AGE_50_64\": 1494, \"AGE_65_UP\": 812, \"MED_AGE\": 31.700000, \"MED_AGE_M\": 30.100000, \"MED_AGE_F\": 33.100000, \"HOUSEHOLDS\": 3180, \"AVE_HH_SZ\": 3.480000, \"HSEHLD_1_M\": 173, \"HSEHLD_1_F\": 222, \"MARHH_CHD\": 1166, \"MARHH_NO_C\": 866, \"MHH_CHILD\": 128, \"FHH_CHILD\": 223, \"FAMILIES\": 2637, \"AVE_FAM_SZ\": 3.760000, \"HSE_UNITS\": 3289, \"VACANT\": 109, \"OWNER_OCC\": 2555, \"RENTER_OCC\": 625 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.468445283156242, 33.978078973546985 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Perris\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"56700\", \"CAPITAL\": \"N\", \"AREALAND\": 31.373000, \"AREAWATER\": 0.129000, \"POP_CL\": 6, \"POP2000\": 36189, \"WHITE\": 14909, \"BLACK\": 5748, \"AMERI_ES\": 529, \"ASIAN\": 995, \"HAWN_PI\": 121, \"OTHER\": 11781, \"MULT_RACE\": 2106, \"HISPANIC\": 20322, \"MALES\": 17739, \"FEMALES\": 18450, \"AGE_UNDER5\": 3923, \"AGE_5_17\": 10409, \"AGE_18_21\": 2157, \"AGE_22_29\": 4086, \"AGE_30_39\": 5985, \"AGE_40_49\": 4337, \"AGE_50_64\": 3033, \"AGE_65_UP\": 2259, \"MED_AGE\": 25.400000, \"MED_AGE_M\": 24.300000, \"MED_AGE_F\": 26.300000, \"HOUSEHOLDS\": 9652, \"AVE_HH_SZ\": 3.730000, \"HSEHLD_1_M\": 554, \"HSEHLD_1_F\": 625, \"MARHH_CHD\": 3803, \"MARHH_NO_C\": 1813, \"MHH_CHILD\": 423, \"FHH_CHILD\": 1252, \"FAMILIES\": 8114, \"AVE_FAM_SZ\": 4.000000, \"HSE_UNITS\": 10553, \"VACANT\": 901, \"OWNER_OCC\": 6577, \"RENTER_OCC\": 3075 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.223569338088794, 33.796671578418078 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Petaluma\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"56784\", \"CAPITAL\": \"N\", \"AREALAND\": 13.799000, \"AREAWATER\": 0.105000, \"POP_CL\": 7, \"POP2000\": 54548, \"WHITE\": 45906, \"BLACK\": 632, \"AMERI_ES\": 294, \"ASIAN\": 2135, \"HAWN_PI\": 93, \"OTHER\": 3317, \"MULT_RACE\": 2171, \"HISPANIC\": 7985, \"MALES\": 26661, \"FEMALES\": 27887, \"AGE_UNDER5\": 3612, \"AGE_5_17\": 10666, \"AGE_18_21\": 2358, \"AGE_22_29\": 4523, \"AGE_30_39\": 9100, \"AGE_40_49\": 9754, \"AGE_50_64\": 8508, \"AGE_65_UP\": 6027, \"MED_AGE\": 37.100000, \"MED_AGE_M\": 35.800000, \"MED_AGE_F\": 38.400000, \"HOUSEHOLDS\": 19932, \"AVE_HH_SZ\": 2.700000, \"HSEHLD_1_M\": 1673, \"HSEHLD_1_F\": 2827, \"MARHH_CHD\": 5598, \"MARHH_NO_C\": 5430, \"MHH_CHILD\": 491, \"FHH_CHILD\": 1199, \"FAMILIES\": 14014, \"AVE_FAM_SZ\": 3.160000, \"HSE_UNITS\": 20304, \"VACANT\": 372, \"OWNER_OCC\": 13964, \"RENTER_OCC\": 5968 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.622791492608911, 38.246955329776313 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pico Rivera\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"56924\", \"CAPITAL\": \"N\", \"AREALAND\": 8.296000, \"AREAWATER\": 0.548000, \"POP_CL\": 7, \"POP2000\": 63428, \"WHITE\": 31360, \"BLACK\": 450, \"AMERI_ES\": 859, \"ASIAN\": 1681, \"HAWN_PI\": 78, \"OTHER\": 25551, \"MULT_RACE\": 3449, \"HISPANIC\": 56000, \"MALES\": 31132, \"FEMALES\": 32296, \"AGE_UNDER5\": 5228, \"AGE_5_17\": 14416, \"AGE_18_21\": 3923, \"AGE_22_29\": 7541, \"AGE_30_39\": 9625, \"AGE_40_49\": 7994, \"AGE_50_64\": 7743, \"AGE_65_UP\": 6958, \"MED_AGE\": 30.600000, \"MED_AGE_M\": 29.500000, \"MED_AGE_F\": 31.700000, \"HOUSEHOLDS\": 16468, \"AVE_HH_SZ\": 3.830000, \"HSEHLD_1_M\": 929, \"HSEHLD_1_F\": 1180, \"MARHH_CHD\": 5277, \"MARHH_NO_C\": 4387, \"MHH_CHILD\": 531, \"FHH_CHILD\": 1359, \"FAMILIES\": 13872, \"AVE_FAM_SZ\": 4.120000, \"HSE_UNITS\": 16807, \"VACANT\": 339, \"OWNER_OCC\": 11587, \"RENTER_OCC\": 4881 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.087947909645592, 33.989156465227389 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Piedmont\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"56938\", \"CAPITAL\": \"N\", \"AREALAND\": 1.688000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10952, \"WHITE\": 8607, \"BLACK\": 136, \"AMERI_ES\": 12, \"ASIAN\": 1754, \"HAWN_PI\": 4, \"OTHER\": 69, \"MULT_RACE\": 370, \"HISPANIC\": 325, \"MALES\": 5270, \"FEMALES\": 5682, \"AGE_UNDER5\": 582, \"AGE_5_17\": 2731, \"AGE_18_21\": 280, \"AGE_22_29\": 330, \"AGE_30_39\": 894, \"AGE_40_49\": 2154, \"AGE_50_64\": 2500, \"AGE_65_UP\": 1481, \"MED_AGE\": 43.700000, \"MED_AGE_M\": 43.200000, \"MED_AGE_F\": 44.100000, \"HOUSEHOLDS\": 3804, \"AVE_HH_SZ\": 2.880000, \"HSEHLD_1_M\": 161, \"HSEHLD_1_F\": 390, \"MARHH_CHD\": 1544, \"MARHH_NO_C\": 1154, \"MHH_CHILD\": 54, \"FHH_CHILD\": 200, \"FAMILIES\": 3105, \"AVE_FAM_SZ\": 3.180000, \"HSE_UNITS\": 3859, \"VACANT\": 55, \"OWNER_OCC\": 3449, \"RENTER_OCC\": 355 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.224224094082942, 37.822928818643739 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pinole\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"57288\", \"CAPITAL\": \"N\", \"AREALAND\": 5.199000, \"AREAWATER\": 8.076000, \"POP_CL\": 6, \"POP2000\": 19039, \"WHITE\": 10356, \"BLACK\": 2115, \"AMERI_ES\": 108, \"ASIAN\": 4134, \"HAWN_PI\": 70, \"OTHER\": 1107, \"MULT_RACE\": 1149, \"HISPANIC\": 2618, \"MALES\": 9145, \"FEMALES\": 9894, \"AGE_UNDER5\": 1083, \"AGE_5_17\": 3684, \"AGE_18_21\": 910, \"AGE_22_29\": 1479, \"AGE_30_39\": 2787, \"AGE_40_49\": 3247, \"AGE_50_64\": 3393, \"AGE_65_UP\": 2456, \"MED_AGE\": 38.700000, \"MED_AGE_M\": 37.300000, \"MED_AGE_F\": 40.000000, \"HOUSEHOLDS\": 6743, \"AVE_HH_SZ\": 2.790000, \"HSEHLD_1_M\": 504, \"HSEHLD_1_F\": 855, \"MARHH_CHD\": 1713, \"MARHH_NO_C\": 2106, \"MHH_CHILD\": 165, \"FHH_CHILD\": 466, \"FAMILIES\": 5059, \"AVE_FAM_SZ\": 3.230000, \"HSE_UNITS\": 6828, \"VACANT\": 85, \"OWNER_OCC\": 5040, \"RENTER_OCC\": 1703 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.284670790933902, 37.998471398121161 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pittsburg\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"57456\", \"CAPITAL\": \"N\", \"AREALAND\": 15.600000, \"AREAWATER\": 1.222000, \"POP_CL\": 7, \"POP2000\": 56769, \"WHITE\": 24712, \"BLACK\": 10724, \"AMERI_ES\": 423, \"ASIAN\": 7179, \"HAWN_PI\": 491, \"OTHER\": 9144, \"MULT_RACE\": 4096, \"HISPANIC\": 18287, \"MALES\": 27887, \"FEMALES\": 28882, \"AGE_UNDER5\": 4739, \"AGE_5_17\": 12760, \"AGE_18_21\": 3500, \"AGE_22_29\": 6577, \"AGE_30_39\": 9013, \"AGE_40_49\": 8433, \"AGE_50_64\": 7087, \"AGE_65_UP\": 4660, \"MED_AGE\": 30.900000, \"MED_AGE_M\": 29.900000, \"MED_AGE_F\": 31.900000, \"HOUSEHOLDS\": 17741, \"AVE_HH_SZ\": 3.170000, \"HSEHLD_1_M\": 1464, \"HSEHLD_1_F\": 1725, \"MARHH_CHD\": 5125, \"MARHH_NO_C\": 4183, \"MHH_CHILD\": 577, \"FHH_CHILD\": 1787, \"FAMILIES\": 13479, \"AVE_FAM_SZ\": 3.590000, \"HSE_UNITS\": 18300, \"VACANT\": 559, \"OWNER_OCC\": 11149, \"RENTER_OCC\": 6592 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.886054329254549, 38.015843900909815 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Placentia\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"57526\", \"CAPITAL\": \"N\", \"AREALAND\": 6.593000, \"AREAWATER\": 0.008000, \"POP_CL\": 6, \"POP2000\": 46488, \"WHITE\": 31500, \"BLACK\": 821, \"AMERI_ES\": 386, \"ASIAN\": 5190, \"HAWN_PI\": 82, \"OTHER\": 6843, \"MULT_RACE\": 1666, \"HISPANIC\": 14460, \"MALES\": 23038, \"FEMALES\": 23450, \"AGE_UNDER5\": 3460, \"AGE_5_17\": 9108, \"AGE_18_21\": 2466, \"AGE_22_29\": 5612, \"AGE_30_39\": 7625, \"AGE_40_49\": 6733, \"AGE_50_64\": 7271, \"AGE_65_UP\": 4213, \"MED_AGE\": 33.300000, \"MED_AGE_M\": 32.100000, \"MED_AGE_F\": 34.500000, \"HOUSEHOLDS\": 15037, \"AVE_HH_SZ\": 3.070000, \"HSEHLD_1_M\": 972, \"HSEHLD_1_F\": 1438, \"MARHH_CHD\": 4569, \"MARHH_NO_C\": 4684, \"MHH_CHILD\": 326, \"FHH_CHILD\": 798, \"FAMILIES\": 11691, \"AVE_FAM_SZ\": 3.420000, \"HSE_UNITS\": 15326, \"VACANT\": 289, \"OWNER_OCC\": 10374, \"RENTER_OCC\": 4663 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.854070719959608, 33.882492423042493 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pleasant Hill\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"57764\", \"CAPITAL\": \"N\", \"AREALAND\": 7.087000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 32837, \"WHITE\": 26852, \"BLACK\": 504, \"AMERI_ES\": 155, \"ASIAN\": 3096, \"HAWN_PI\": 90, \"OTHER\": 763, \"MULT_RACE\": 1377, \"HISPANIC\": 2767, \"MALES\": 15931, \"FEMALES\": 16906, \"AGE_UNDER5\": 1993, \"AGE_5_17\": 5016, \"AGE_18_21\": 1396, \"AGE_22_29\": 3090, \"AGE_30_39\": 5516, \"AGE_40_49\": 5897, \"AGE_50_64\": 5597, \"AGE_65_UP\": 4332, \"MED_AGE\": 39.000000, \"MED_AGE_M\": 37.600000, \"MED_AGE_F\": 40.400000, \"HOUSEHOLDS\": 13753, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 1616, \"HSEHLD_1_F\": 2388, \"MARHH_CHD\": 2981, \"MARHH_NO_C\": 3678, \"MHH_CHILD\": 250, \"FHH_CHILD\": 624, \"FAMILIES\": 8398, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 14034, \"VACANT\": 281, \"OWNER_OCC\": 8727, \"RENTER_OCC\": 5026 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.065485630964389, 37.952553706663707 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pleasanton\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"57792\", \"CAPITAL\": \"N\", \"AREALAND\": 21.665000, \"AREAWATER\": 0.166000, \"POP_CL\": 7, \"POP2000\": 63654, \"WHITE\": 51203, \"BLACK\": 876, \"AMERI_ES\": 210, \"ASIAN\": 7444, \"HAWN_PI\": 85, \"OTHER\": 1495, \"MULT_RACE\": 2341, \"HISPANIC\": 5011, \"MALES\": 31270, \"FEMALES\": 32384, \"AGE_UNDER5\": 4359, \"AGE_5_17\": 13593, \"AGE_18_21\": 2137, \"AGE_22_29\": 4642, \"AGE_30_39\": 11286, \"AGE_40_49\": 12419, \"AGE_50_64\": 10380, \"AGE_65_UP\": 4838, \"MED_AGE\": 36.900000, \"MED_AGE_M\": 36.400000, \"MED_AGE_F\": 37.400000, \"HOUSEHOLDS\": 23311, \"AVE_HH_SZ\": 2.720000, \"HSEHLD_1_M\": 1921, \"HSEHLD_1_F\": 2575, \"MARHH_CHD\": 8063, \"MARHH_NO_C\": 6778, \"MHH_CHILD\": 384, \"FHH_CHILD\": 1074, \"FAMILIES\": 17395, \"AVE_FAM_SZ\": 3.150000, \"HSE_UNITS\": 23968, \"VACANT\": 657, \"OWNER_OCC\": 17099, \"RENTER_OCC\": 6212 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.876234512889013, 37.673341127398729 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pomona\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"58072\", \"CAPITAL\": \"N\", \"AREALAND\": 22.840000, \"AREAWATER\": 0.000000, \"POP_CL\": 8, \"POP2000\": 149473, \"WHITE\": 62419, \"BLACK\": 14398, \"AMERI_ES\": 1883, \"ASIAN\": 10762, \"HAWN_PI\": 311, \"OTHER\": 52213, \"MULT_RACE\": 7487, \"HISPANIC\": 96370, \"MALES\": 75630, \"FEMALES\": 73843, \"AGE_UNDER5\": 14125, \"AGE_5_17\": 37617, \"AGE_18_21\": 11625, \"AGE_22_29\": 19666, \"AGE_30_39\": 23379, \"AGE_40_49\": 19010, \"AGE_50_64\": 14500, \"AGE_65_UP\": 9551, \"MED_AGE\": 26.500000, \"MED_AGE_M\": 25.700000, \"MED_AGE_F\": 27.400000, \"HOUSEHOLDS\": 37855, \"AVE_HH_SZ\": 3.820000, \"HSEHLD_1_M\": 2688, \"HSEHLD_1_F\": 3158, \"MARHH_CHD\": 13544, \"MARHH_NO_C\": 7154, \"MHH_CHILD\": 1512, \"FHH_CHILD\": 3790, \"FAMILIES\": 29798, \"AVE_FAM_SZ\": 4.220000, \"HSE_UNITS\": 39598, \"VACANT\": 1743, \"OWNER_OCC\": 21695, \"RENTER_OCC\": 16160 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.754856003609589, 34.060883648624454 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Porterville\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"58240\", \"CAPITAL\": \"N\", \"AREALAND\": 14.006000, \"AREAWATER\": 0.067000, \"POP_CL\": 6, \"POP2000\": 39615, \"WHITE\": 21690, \"BLACK\": 506, \"AMERI_ES\": 684, \"ASIAN\": 1835, \"HAWN_PI\": 61, \"OTHER\": 12959, \"MULT_RACE\": 1880, \"HISPANIC\": 19589, \"MALES\": 19444, \"FEMALES\": 20171, \"AGE_UNDER5\": 3759, \"AGE_5_17\": 9811, \"AGE_18_21\": 2599, \"AGE_22_29\": 4415, \"AGE_30_39\": 5679, \"AGE_40_49\": 5118, \"AGE_50_64\": 4496, \"AGE_65_UP\": 3738, \"MED_AGE\": 28.600000, \"MED_AGE_M\": 27.400000, \"MED_AGE_F\": 29.800000, \"HOUSEHOLDS\": 11884, \"AVE_HH_SZ\": 3.200000, \"HSEHLD_1_M\": 840, \"HSEHLD_1_F\": 1426, \"MARHH_CHD\": 3676, \"MARHH_NO_C\": 2634, \"MHH_CHILD\": 475, \"FHH_CHILD\": 1495, \"FAMILIES\": 9170, \"AVE_FAM_SZ\": 3.620000, \"HSE_UNITS\": 12691, \"VACANT\": 807, \"OWNER_OCC\": 6698, \"RENTER_OCC\": 5186 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -119.025580453404231, 36.068785626766463 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Port Hueneme\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"58296\", \"CAPITAL\": \"N\", \"AREALAND\": 4.446000, \"AREAWATER\": 0.218000, \"POP_CL\": 6, \"POP2000\": 21845, \"WHITE\": 12510, \"BLACK\": 1324, \"AMERI_ES\": 369, \"ASIAN\": 1383, \"HAWN_PI\": 110, \"OTHER\": 4772, \"MULT_RACE\": 1377, \"HISPANIC\": 8960, \"MALES\": 10987, \"FEMALES\": 10858, \"AGE_UNDER5\": 1917, \"AGE_5_17\": 4114, \"AGE_18_21\": 1618, \"AGE_22_29\": 3170, \"AGE_30_39\": 3548, \"AGE_40_49\": 2737, \"AGE_50_64\": 2402, \"AGE_65_UP\": 2339, \"MED_AGE\": 30.300000, \"MED_AGE_M\": 28.900000, \"MED_AGE_F\": 32.000000, \"HOUSEHOLDS\": 7268, \"AVE_HH_SZ\": 2.860000, \"HSEHLD_1_M\": 687, \"HSEHLD_1_F\": 1062, \"MARHH_CHD\": 1882, \"MARHH_NO_C\": 1744, \"MHH_CHILD\": 218, \"FHH_CHILD\": 618, \"FAMILIES\": 4999, \"AVE_FAM_SZ\": 3.420000, \"HSE_UNITS\": 7908, \"VACANT\": 640, \"OWNER_OCC\": 3568, \"RENTER_OCC\": 3700 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -119.192670652726036, 34.160485599381886 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Poway\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"58520\", \"CAPITAL\": \"N\", \"AREALAND\": 39.224000, \"AREAWATER\": 0.104000, \"POP_CL\": 6, \"POP2000\": 48044, \"WHITE\": 39807, \"BLACK\": 800, \"AMERI_ES\": 231, \"ASIAN\": 3584, \"HAWN_PI\": 133, \"OTHER\": 1571, \"MULT_RACE\": 1918, \"HISPANIC\": 4974, \"MALES\": 23661, \"FEMALES\": 24383, \"AGE_UNDER5\": 2895, \"AGE_5_17\": 11846, \"AGE_18_21\": 2282, \"AGE_22_29\": 3071, \"AGE_30_39\": 6673, \"AGE_40_49\": 9342, \"AGE_50_64\": 7797, \"AGE_65_UP\": 4138, \"MED_AGE\": 36.900000, \"MED_AGE_M\": 35.800000, \"MED_AGE_F\": 37.600000, \"HOUSEHOLDS\": 15467, \"AVE_HH_SZ\": 3.080000, \"HSEHLD_1_M\": 830, \"HSEHLD_1_F\": 1121, \"MARHH_CHD\": 5899, \"MARHH_NO_C\": 4742, \"MHH_CHILD\": 358, \"FHH_CHILD\": 1019, \"FAMILIES\": 12874, \"AVE_FAM_SZ\": 3.350000, \"HSE_UNITS\": 15714, \"VACANT\": 247, \"OWNER_OCC\": 12021, \"RENTER_OCC\": 3446 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.037769605211949, 32.969979411714185 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Prunedale\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"58870\", \"CAPITAL\": \"N\", \"AREALAND\": 46.119000, \"AREAWATER\": 0.046000, \"POP_CL\": 6, \"POP2000\": 16432, \"WHITE\": 12648, \"BLACK\": 209, \"AMERI_ES\": 170, \"ASIAN\": 592, \"HAWN_PI\": 28, \"OTHER\": 1914, \"MULT_RACE\": 871, \"HISPANIC\": 3781, \"MALES\": 8302, \"FEMALES\": 8130, \"AGE_UNDER5\": 890, \"AGE_5_17\": 3407, \"AGE_18_21\": 835, \"AGE_22_29\": 1136, \"AGE_30_39\": 2190, \"AGE_40_49\": 3188, \"AGE_50_64\": 3135, \"AGE_65_UP\": 1651, \"MED_AGE\": 39.200000, \"MED_AGE_M\": 38.600000, \"MED_AGE_F\": 39.600000, \"HOUSEHOLDS\": 5440, \"AVE_HH_SZ\": 3.010000, \"HSEHLD_1_M\": 404, \"HSEHLD_1_F\": 441, \"MARHH_CHD\": 1555, \"MARHH_NO_C\": 2040, \"MHH_CHILD\": 118, \"FHH_CHILD\": 206, \"FAMILIES\": 4294, \"AVE_FAM_SZ\": 3.330000, \"HSE_UNITS\": 5591, \"VACANT\": 151, \"OWNER_OCC\": 4432, \"RENTER_OCC\": 1008 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.661727645845545, 36.800639178756803 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ramona\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"59346\", \"CAPITAL\": \"N\", \"AREALAND\": 15.280000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 15691, \"WHITE\": 12647, \"BLACK\": 122, \"AMERI_ES\": 208, \"ASIAN\": 122, \"HAWN_PI\": 43, \"OTHER\": 1971, \"MULT_RACE\": 578, \"HISPANIC\": 3921, \"MALES\": 7895, \"FEMALES\": 7796, \"AGE_UNDER5\": 1323, \"AGE_5_17\": 3565, \"AGE_18_21\": 934, \"AGE_22_29\": 1736, \"AGE_30_39\": 2412, \"AGE_40_49\": 2398, \"AGE_50_64\": 2038, \"AGE_65_UP\": 1285, \"MED_AGE\": 31.300000, \"MED_AGE_M\": 30.200000, \"MED_AGE_F\": 32.600000, \"HOUSEHOLDS\": 5021, \"AVE_HH_SZ\": 3.100000, \"HSEHLD_1_M\": 345, \"HSEHLD_1_F\": 461, \"MARHH_CHD\": 1640, \"MARHH_NO_C\": 1376, \"MHH_CHILD\": 173, \"FHH_CHILD\": 377, \"FAMILIES\": 3886, \"AVE_FAM_SZ\": 3.450000, \"HSE_UNITS\": 5131, \"VACANT\": 110, \"OWNER_OCC\": 2976, \"RENTER_OCC\": 2045 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -116.869968764370526, 33.0359461812116 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Rancho Cordova\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"59444\", \"CAPITAL\": \"N\", \"AREALAND\": 22.516000, \"AREAWATER\": 0.286000, \"POP_CL\": 7, \"POP2000\": 55060, \"WHITE\": 36704, \"BLACK\": 6245, \"AMERI_ES\": 521, \"ASIAN\": 4537, \"HAWN_PI\": 300, \"OTHER\": 3151, \"MULT_RACE\": 3602, \"HISPANIC\": 7100, \"MALES\": 26897, \"FEMALES\": 28163, \"AGE_UNDER5\": 4468, \"AGE_5_17\": 11152, \"AGE_18_21\": 3108, \"AGE_22_29\": 7076, \"AGE_30_39\": 8796, \"AGE_40_49\": 7547, \"AGE_50_64\": 7345, \"AGE_65_UP\": 5568, \"MED_AGE\": 31.900000, \"MED_AGE_M\": 30.700000, \"MED_AGE_F\": 33.200000, \"HOUSEHOLDS\": 20407, \"AVE_HH_SZ\": 2.680000, \"HSEHLD_1_M\": 2410, \"HSEHLD_1_F\": 2786, \"MARHH_CHD\": 4205, \"MARHH_NO_C\": 4796, \"MHH_CHILD\": 620, \"FHH_CHILD\": 2133, \"FAMILIES\": 13546, \"AVE_FAM_SZ\": 3.220000, \"HSE_UNITS\": 21584, \"VACANT\": 1177, \"OWNER_OCC\": 10056, \"RENTER_OCC\": 10351 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.291898260217323, 38.585742905830607 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Rancho Cucamonga\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"59451\", \"CAPITAL\": \"N\", \"AREALAND\": 37.446000, \"AREAWATER\": 0.012000, \"POP_CL\": 8, \"POP2000\": 127743, \"WHITE\": 84987, \"BLACK\": 10059, \"AMERI_ES\": 855, \"ASIAN\": 7656, \"HAWN_PI\": 341, \"OTHER\": 16931, \"MULT_RACE\": 6914, \"HISPANIC\": 35491, \"MALES\": 63895, \"FEMALES\": 63848, \"AGE_UNDER5\": 8900, \"AGE_5_17\": 29245, \"AGE_18_21\": 7624, \"AGE_22_29\": 13872, \"AGE_30_39\": 21641, \"AGE_40_49\": 22299, \"AGE_50_64\": 16374, \"AGE_65_UP\": 7788, \"MED_AGE\": 32.200000, \"MED_AGE_M\": 31.200000, \"MED_AGE_F\": 33.100000, \"HOUSEHOLDS\": 40863, \"AVE_HH_SZ\": 3.040000, \"HSEHLD_1_M\": 3134, \"HSEHLD_1_F\": 3727, \"MARHH_CHD\": 13925, \"MARHH_NO_C\": 10684, \"MHH_CHILD\": 1105, \"FHH_CHILD\": 3229, \"FAMILIES\": 31827, \"AVE_FAM_SZ\": 3.440000, \"HSE_UNITS\": 42134, \"VACANT\": 1271, \"OWNER_OCC\": 28702, \"RENTER_OCC\": 12161 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.578441526786193, 34.123459307333356 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Rancho Mirage\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"59500\", \"CAPITAL\": \"N\", \"AREALAND\": 24.313000, \"AREAWATER\": 0.393000, \"POP_CL\": 6, \"POP2000\": 13249, \"WHITE\": 12280, \"BLACK\": 118, \"AMERI_ES\": 26, \"ASIAN\": 165, \"HAWN_PI\": 15, \"OTHER\": 479, \"MULT_RACE\": 166, \"HISPANIC\": 1251, \"MALES\": 6341, \"FEMALES\": 6908, \"AGE_UNDER5\": 369, \"AGE_5_17\": 993, \"AGE_18_21\": 198, \"AGE_22_29\": 474, \"AGE_30_39\": 918, \"AGE_40_49\": 1374, \"AGE_50_64\": 3224, \"AGE_65_UP\": 5699, \"MED_AGE\": 61.300000, \"MED_AGE_M\": 61.300000, \"MED_AGE_F\": 61.300000, \"HOUSEHOLDS\": 6813, \"AVE_HH_SZ\": 1.920000, \"HSEHLD_1_M\": 772, \"HSEHLD_1_F\": 1427, \"MARHH_CHD\": 490, \"MARHH_NO_C\": 3111, \"MHH_CHILD\": 50, \"FHH_CHILD\": 174, \"FAMILIES\": 4077, \"AVE_FAM_SZ\": 2.360000, \"HSE_UNITS\": 11816, \"VACANT\": 5003, \"OWNER_OCC\": 5654, \"RENTER_OCC\": 1159 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -116.420471797553674, 33.769292056726925 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Rancho Palos Verdes\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"59514\", \"CAPITAL\": \"N\", \"AREALAND\": 13.664000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 41145, \"WHITE\": 27660, \"BLACK\": 815, \"AMERI_ES\": 62, \"ASIAN\": 10676, \"HAWN_PI\": 41, \"OTHER\": 497, \"MULT_RACE\": 1394, \"HISPANIC\": 2339, \"MALES\": 19903, \"FEMALES\": 21242, \"AGE_UNDER5\": 2010, \"AGE_5_17\": 7447, \"AGE_18_21\": 1186, \"AGE_22_29\": 1858, \"AGE_30_39\": 4695, \"AGE_40_49\": 7047, \"AGE_50_64\": 9202, \"AGE_65_UP\": 7700, \"MED_AGE\": 44.700000, \"MED_AGE_M\": 44.300000, \"MED_AGE_F\": 45.000000, \"HOUSEHOLDS\": 15256, \"AVE_HH_SZ\": 2.660000, \"HSEHLD_1_M\": 981, \"HSEHLD_1_F\": 1588, \"MARHH_CHD\": 4375, \"MARHH_NO_C\": 6423, \"MHH_CHILD\": 146, \"FHH_CHILD\": 449, \"FAMILIES\": 12223, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 15709, \"VACANT\": 453, \"OWNER_OCC\": 12456, \"RENTER_OCC\": 2800 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.362966702647569, 33.758376782110112 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Rancho San Diego\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"59550\", \"CAPITAL\": \"N\", \"AREALAND\": 8.872000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 20155, \"WHITE\": 16857, \"BLACK\": 656, \"AMERI_ES\": 112, \"ASIAN\": 838, \"HAWN_PI\": 56, \"OTHER\": 663, \"MULT_RACE\": 973, \"HISPANIC\": 2177, \"MALES\": 9866, \"FEMALES\": 10289, \"AGE_UNDER5\": 1182, \"AGE_5_17\": 4316, \"AGE_18_21\": 1014, \"AGE_22_29\": 1896, \"AGE_30_39\": 2836, \"AGE_40_49\": 3755, \"AGE_50_64\": 3482, \"AGE_65_UP\": 1674, \"MED_AGE\": 36.600000, \"MED_AGE_M\": 35.700000, \"MED_AGE_F\": 37.300000, \"HOUSEHOLDS\": 7083, \"AVE_HH_SZ\": 2.840000, \"HSEHLD_1_M\": 479, \"HSEHLD_1_F\": 642, \"MARHH_CHD\": 2274, \"MARHH_NO_C\": 2326, \"MHH_CHILD\": 137, \"FHH_CHILD\": 481, \"FAMILIES\": 5588, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 7231, \"VACANT\": 148, \"OWNER_OCC\": 5431, \"RENTER_OCC\": 1652 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -116.920811373027462, 32.766064102599877 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Rancho Santa Margarita\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"59587\", \"CAPITAL\": \"N\", \"AREALAND\": 12.271000, \"AREAWATER\": 0.024000, \"POP_CL\": 6, \"POP2000\": 47214, \"WHITE\": 38523, \"BLACK\": 826, \"AMERI_ES\": 199, \"ASIAN\": 3492, \"HAWN_PI\": 97, \"OTHER\": 2119, \"MULT_RACE\": 1958, \"HISPANIC\": 6139, \"MALES\": 23219, \"FEMALES\": 23995, \"AGE_UNDER5\": 4832, \"AGE_5_17\": 11023, \"AGE_18_21\": 1509, \"AGE_22_29\": 4407, \"AGE_30_39\": 11171, \"AGE_40_49\": 8508, \"AGE_50_64\": 4173, \"AGE_65_UP\": 1591, \"MED_AGE\": 31.900000, \"MED_AGE_M\": 31.600000, \"MED_AGE_F\": 32.300000, \"HOUSEHOLDS\": 16253, \"AVE_HH_SZ\": 2.900000, \"HSEHLD_1_M\": 1256, \"HSEHLD_1_F\": 1627, \"MARHH_CHD\": 7034, \"MARHH_NO_C\": 3489, \"MHH_CHILD\": 316, \"FHH_CHILD\": 996, \"FAMILIES\": 12411, \"AVE_FAM_SZ\": 3.350000, \"HSE_UNITS\": 16515, \"VACANT\": 262, \"OWNER_OCC\": 12723, \"RENTER_OCC\": 3530 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.593587437276952, 33.64163077917361 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Red Bluff\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"59892\", \"CAPITAL\": \"N\", \"AREALAND\": 7.433000, \"AREAWATER\": 0.120000, \"POP_CL\": 6, \"POP2000\": 13147, \"WHITE\": 11397, \"BLACK\": 81, \"AMERI_ES\": 294, \"ASIAN\": 211, \"HAWN_PI\": 9, \"OTHER\": 759, \"MULT_RACE\": 396, \"HISPANIC\": 1799, \"MALES\": 6230, \"FEMALES\": 6917, \"AGE_UNDER5\": 1010, \"AGE_5_17\": 2767, \"AGE_18_21\": 776, \"AGE_22_29\": 1401, \"AGE_30_39\": 1917, \"AGE_40_49\": 1767, \"AGE_50_64\": 1576, \"AGE_65_UP\": 1933, \"MED_AGE\": 33.700000, \"MED_AGE_M\": 30.600000, \"MED_AGE_F\": 36.200000, \"HOUSEHOLDS\": 5109, \"AVE_HH_SZ\": 2.470000, \"HSEHLD_1_M\": 567, \"HSEHLD_1_F\": 1000, \"MARHH_CHD\": 1087, \"MARHH_NO_C\": 1078, \"MHH_CHILD\": 165, \"FHH_CHILD\": 595, \"FAMILIES\": 3238, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 5567, \"VACANT\": 458, \"OWNER_OCC\": 2479, \"RENTER_OCC\": 2630 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.229697158609227, 40.177640958797809 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Redding\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"59920\", \"CAPITAL\": \"N\", \"AREALAND\": 58.438000, \"AREAWATER\": 1.196000, \"POP_CL\": 7, \"POP2000\": 80865, \"WHITE\": 71727, \"BLACK\": 851, \"AMERI_ES\": 1802, \"ASIAN\": 2386, \"HAWN_PI\": 94, \"OTHER\": 1324, \"MULT_RACE\": 2681, \"HISPANIC\": 4393, \"MALES\": 38750, \"FEMALES\": 42115, \"AGE_UNDER5\": 5331, \"AGE_5_17\": 15784, \"AGE_18_21\": 4938, \"AGE_22_29\": 7415, \"AGE_30_39\": 10898, \"AGE_40_49\": 11717, \"AGE_50_64\": 12213, \"AGE_65_UP\": 12569, \"MED_AGE\": 36.700000, \"MED_AGE_M\": 34.800000, \"MED_AGE_F\": 38.300000, \"HOUSEHOLDS\": 32103, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 3536, \"HSEHLD_1_F\": 5329, \"MARHH_CHD\": 6481, \"MARHH_NO_C\": 8954, \"MHH_CHILD\": 931, \"FHH_CHILD\": 2839, \"FAMILIES\": 20994, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 33802, \"VACANT\": 1699, \"OWNER_OCC\": 18200, \"RENTER_OCC\": 13903 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.361480275323061, 40.577670686445657 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Redlands\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"59962\", \"CAPITAL\": \"N\", \"AREALAND\": 35.465000, \"AREAWATER\": 0.268000, \"POP_CL\": 7, \"POP2000\": 63591, \"WHITE\": 46858, \"BLACK\": 2739, \"AMERI_ES\": 597, \"ASIAN\": 3257, \"HAWN_PI\": 146, \"OTHER\": 7204, \"MULT_RACE\": 2790, \"HISPANIC\": 15304, \"MALES\": 30024, \"FEMALES\": 33567, \"AGE_UNDER5\": 3964, \"AGE_5_17\": 12687, \"AGE_18_21\": 4319, \"AGE_22_29\": 6596, \"AGE_30_39\": 8768, \"AGE_40_49\": 9642, \"AGE_50_64\": 9634, \"AGE_65_UP\": 7981, \"MED_AGE\": 35.100000, \"MED_AGE_M\": 33.400000, \"MED_AGE_F\": 36.500000, \"HOUSEHOLDS\": 23593, \"AVE_HH_SZ\": 2.610000, \"HSEHLD_1_M\": 2336, \"HSEHLD_1_F\": 3807, \"MARHH_CHD\": 5503, \"MARHH_NO_C\": 6430, \"MHH_CHILD\": 574, \"FHH_CHILD\": 1823, \"FAMILIES\": 16027, \"AVE_FAM_SZ\": 3.180000, \"HSE_UNITS\": 24790, \"VACANT\": 1197, \"OWNER_OCC\": 14259, \"RENTER_OCC\": 9334 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.17063947621368, 34.056657267081427 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Redondo Beach\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"60018\", \"CAPITAL\": \"N\", \"AREALAND\": 6.285000, \"AREAWATER\": 0.142000, \"POP_CL\": 7, \"POP2000\": 63261, \"WHITE\": 49735, \"BLACK\": 1592, \"AMERI_ES\": 295, \"ASIAN\": 5756, \"HAWN_PI\": 224, \"OTHER\": 2762, \"MULT_RACE\": 2897, \"HISPANIC\": 8524, \"MALES\": 31870, \"FEMALES\": 31391, \"AGE_UNDER5\": 3634, \"AGE_5_17\": 8256, \"AGE_18_21\": 1787, \"AGE_22_29\": 8086, \"AGE_30_39\": 14843, \"AGE_40_49\": 11731, \"AGE_50_64\": 9558, \"AGE_65_UP\": 5366, \"MED_AGE\": 36.700000, \"MED_AGE_M\": 36.400000, \"MED_AGE_F\": 36.900000, \"HOUSEHOLDS\": 28566, \"AVE_HH_SZ\": 2.210000, \"HSEHLD_1_M\": 4844, \"HSEHLD_1_F\": 4608, \"MARHH_CHD\": 4867, \"MARHH_NO_C\": 6734, \"MHH_CHILD\": 450, \"FHH_CHILD\": 1350, \"FAMILIES\": 15242, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 29543, \"VACANT\": 977, \"OWNER_OCC\": 14140, \"RENTER_OCC\": 14426 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.375776251766254, 33.856676380936527 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Redwood City\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"60102\", \"CAPITAL\": \"N\", \"AREALAND\": 19.477000, \"AREAWATER\": 15.087000, \"POP_CL\": 7, \"POP2000\": 75402, \"WHITE\": 52008, \"BLACK\": 1916, \"AMERI_ES\": 384, \"ASIAN\": 6715, \"HAWN_PI\": 663, \"OTHER\": 10535, \"MULT_RACE\": 3181, \"HISPANIC\": 23557, \"MALES\": 37930, \"FEMALES\": 37472, \"AGE_UNDER5\": 5679, \"AGE_5_17\": 11812, \"AGE_18_21\": 3264, \"AGE_22_29\": 9607, \"AGE_30_39\": 15231, \"AGE_40_49\": 11761, \"AGE_50_64\": 10357, \"AGE_65_UP\": 7691, \"MED_AGE\": 34.800000, \"MED_AGE_M\": 33.800000, \"MED_AGE_F\": 35.900000, \"HOUSEHOLDS\": 28060, \"AVE_HH_SZ\": 2.620000, \"HSEHLD_1_M\": 3364, \"HSEHLD_1_F\": 4254, \"MARHH_CHD\": 6701, \"MARHH_NO_C\": 7109, \"MHH_CHILD\": 565, \"FHH_CHILD\": 1519, \"FAMILIES\": 17902, \"AVE_FAM_SZ\": 3.200000, \"HSE_UNITS\": 28921, \"VACANT\": 861, \"OWNER_OCC\": 14861, \"RENTER_OCC\": 13199 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.228959544477718, 37.483813714985352 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Reedley\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"60242\", \"CAPITAL\": \"N\", \"AREALAND\": 4.416000, \"AREAWATER\": 0.070000, \"POP_CL\": 6, \"POP2000\": 20756, \"WHITE\": 10743, \"BLACK\": 89, \"AMERI_ES\": 251, \"ASIAN\": 906, \"HAWN_PI\": 15, \"OTHER\": 7830, \"MULT_RACE\": 922, \"HISPANIC\": 14028, \"MALES\": 10670, \"FEMALES\": 10086, \"AGE_UNDER5\": 1912, \"AGE_5_17\": 4761, \"AGE_18_21\": 1501, \"AGE_22_29\": 2610, \"AGE_30_39\": 3086, \"AGE_40_49\": 2431, \"AGE_50_64\": 2111, \"AGE_65_UP\": 2344, \"MED_AGE\": 28.700000, \"MED_AGE_M\": 27.600000, \"MED_AGE_F\": 30.100000, \"HOUSEHOLDS\": 5761, \"AVE_HH_SZ\": 3.530000, \"HSEHLD_1_M\": 324, \"HSEHLD_1_F\": 587, \"MARHH_CHD\": 2067, \"MARHH_NO_C\": 1478, \"MHH_CHILD\": 175, \"FHH_CHILD\": 452, \"FAMILIES\": 4643, \"AVE_FAM_SZ\": 3.870000, \"HSE_UNITS\": 5972, \"VACANT\": 211, \"OWNER_OCC\": 3527, \"RENTER_OCC\": 2234 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -119.446320701752981, 36.59723784433055 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Rialto\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"60466\", \"CAPITAL\": \"N\", \"AREALAND\": 21.871000, \"AREAWATER\": 0.009000, \"POP_CL\": 7, \"POP2000\": 91873, \"WHITE\": 36168, \"BLACK\": 20464, \"AMERI_ES\": 965, \"ASIAN\": 2271, \"HAWN_PI\": 392, \"OTHER\": 26824, \"MULT_RACE\": 4789, \"HISPANIC\": 47050, \"MALES\": 44913, \"FEMALES\": 46960, \"AGE_UNDER5\": 8688, \"AGE_5_17\": 25938, \"AGE_18_21\": 5861, \"AGE_22_29\": 9836, \"AGE_30_39\": 13616, \"AGE_40_49\": 12462, \"AGE_50_64\": 9560, \"AGE_65_UP\": 5912, \"MED_AGE\": 26.400000, \"MED_AGE_M\": 25.100000, \"MED_AGE_F\": 27.700000, \"HOUSEHOLDS\": 24659, \"AVE_HH_SZ\": 3.690000, \"HSEHLD_1_M\": 1413, \"HSEHLD_1_F\": 1886, \"MARHH_CHD\": 9069, \"MARHH_NO_C\": 5135, \"MHH_CHILD\": 1001, \"FHH_CHILD\": 2952, \"FAMILIES\": 20523, \"AVE_FAM_SZ\": 4.010000, \"HSE_UNITS\": 26045, \"VACANT\": 1386, \"OWNER_OCC\": 16865, \"RENTER_OCC\": 7794 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.381516177128077, 34.111464279597634 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Richmond\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"60620\", \"CAPITAL\": \"N\", \"AREALAND\": 29.979000, \"AREAWATER\": 22.599000, \"POP_CL\": 7, \"POP2000\": 99216, \"WHITE\": 31117, \"BLACK\": 35777, \"AMERI_ES\": 639, \"ASIAN\": 12198, \"HAWN_PI\": 498, \"OTHER\": 13754, \"MULT_RACE\": 5233, \"HISPANIC\": 26319, \"MALES\": 48233, \"FEMALES\": 50983, \"AGE_UNDER5\": 7669, \"AGE_5_17\": 19825, \"AGE_18_21\": 5396, \"AGE_22_29\": 12117, \"AGE_30_39\": 15980, \"AGE_40_49\": 14276, \"AGE_50_64\": 14147, \"AGE_65_UP\": 9806, \"MED_AGE\": 32.800000, \"MED_AGE_M\": 31.400000, \"MED_AGE_F\": 34.200000, \"HOUSEHOLDS\": 34625, \"AVE_HH_SZ\": 2.820000, \"HSEHLD_1_M\": 4002, \"HSEHLD_1_F\": 5081, \"MARHH_CHD\": 6991, \"MARHH_NO_C\": 7032, \"MHH_CHILD\": 915, \"FHH_CHILD\": 3778, \"FAMILIES\": 23042, \"AVE_FAM_SZ\": 3.440000, \"HSE_UNITS\": 36044, \"VACANT\": 1419, \"OWNER_OCC\": 18463, \"RENTER_OCC\": 16162 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.334536548919303, 37.93785357030329 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ridgecrest\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"60704\", \"CAPITAL\": \"N\", \"AREALAND\": 21.126000, \"AREAWATER\": 0.325000, \"POP_CL\": 6, \"POP2000\": 24927, \"WHITE\": 20446, \"BLACK\": 879, \"AMERI_ES\": 270, \"ASIAN\": 967, \"HAWN_PI\": 144, \"OTHER\": 1229, \"MULT_RACE\": 992, \"HISPANIC\": 3001, \"MALES\": 12441, \"FEMALES\": 12486, \"AGE_UNDER5\": 1845, \"AGE_5_17\": 5406, \"AGE_18_21\": 1320, \"AGE_22_29\": 2133, \"AGE_30_39\": 3664, \"AGE_40_49\": 3744, \"AGE_50_64\": 3992, \"AGE_65_UP\": 2823, \"MED_AGE\": 35.500000, \"MED_AGE_M\": 35.000000, \"MED_AGE_F\": 35.900000, \"HOUSEHOLDS\": 9826, \"AVE_HH_SZ\": 2.510000, \"HSEHLD_1_M\": 1446, \"HSEHLD_1_F\": 1262, \"MARHH_CHD\": 2333, \"MARHH_NO_C\": 2795, \"MHH_CHILD\": 298, \"FHH_CHILD\": 813, \"FAMILIES\": 6689, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 11309, \"VACANT\": 1483, \"OWNER_OCC\": 6191, \"RENTER_OCC\": 3635 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.674640850468421, 35.621058705790645 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Rio Linda\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"60942\", \"CAPITAL\": \"N\", \"AREALAND\": 5.476000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10466, \"WHITE\": 8691, \"BLACK\": 233, \"AMERI_ES\": 153, \"ASIAN\": 282, \"HAWN_PI\": 50, \"OTHER\": 511, \"MULT_RACE\": 546, \"HISPANIC\": 1162, \"MALES\": 5200, \"FEMALES\": 5266, \"AGE_UNDER5\": 709, \"AGE_5_17\": 2515, \"AGE_18_21\": 525, \"AGE_22_29\": 906, \"AGE_30_39\": 1647, \"AGE_40_49\": 1660, \"AGE_50_64\": 1534, \"AGE_65_UP\": 970, \"MED_AGE\": 34.400000, \"MED_AGE_M\": 33.400000, \"MED_AGE_F\": 35.400000, \"HOUSEHOLDS\": 3461, \"AVE_HH_SZ\": 3.010000, \"HSEHLD_1_M\": 290, \"HSEHLD_1_F\": 326, \"MARHH_CHD\": 910, \"MARHH_NO_C\": 963, \"MHH_CHILD\": 142, \"FHH_CHILD\": 291, \"FAMILIES\": 2648, \"AVE_FAM_SZ\": 3.350000, \"HSE_UNITS\": 3596, \"VACANT\": 135, \"OWNER_OCC\": 2567, \"RENTER_OCC\": 894 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.448093575735612, 38.690956871247757 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ripon\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"61026\", \"CAPITAL\": \"N\", \"AREALAND\": 4.102000, \"AREAWATER\": 0.072000, \"POP_CL\": 6, \"POP2000\": 10146, \"WHITE\": 8575, \"BLACK\": 35, \"AMERI_ES\": 62, \"ASIAN\": 153, \"HAWN_PI\": 28, \"OTHER\": 893, \"MULT_RACE\": 400, \"HISPANIC\": 1843, \"MALES\": 4911, \"FEMALES\": 5235, \"AGE_UNDER5\": 707, \"AGE_5_17\": 2538, \"AGE_18_21\": 511, \"AGE_22_29\": 797, \"AGE_30_39\": 1517, \"AGE_40_49\": 1729, \"AGE_50_64\": 1319, \"AGE_65_UP\": 1028, \"MED_AGE\": 34.200000, \"MED_AGE_M\": 33.200000, \"MED_AGE_F\": 34.900000, \"HOUSEHOLDS\": 3368, \"AVE_HH_SZ\": 2.980000, \"HSEHLD_1_M\": 204, \"HSEHLD_1_F\": 366, \"MARHH_CHD\": 1247, \"MARHH_NO_C\": 980, \"MHH_CHILD\": 78, \"FHH_CHILD\": 209, \"FAMILIES\": 2681, \"AVE_FAM_SZ\": 3.370000, \"HSE_UNITS\": 3446, \"VACANT\": 78, \"OWNER_OCC\": 2398, \"RENTER_OCC\": 970 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.123424221933561, 37.74107902961719 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Riverbank\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"61068\", \"CAPITAL\": \"N\", \"AREALAND\": 3.108000, \"AREAWATER\": 0.082000, \"POP_CL\": 6, \"POP2000\": 15826, \"WHITE\": 10579, \"BLACK\": 242, \"AMERI_ES\": 227, \"ASIAN\": 208, \"HAWN_PI\": 20, \"OTHER\": 3803, \"MULT_RACE\": 747, \"HISPANIC\": 7266, \"MALES\": 7810, \"FEMALES\": 8016, \"AGE_UNDER5\": 1445, \"AGE_5_17\": 3923, \"AGE_18_21\": 951, \"AGE_22_29\": 1702, \"AGE_30_39\": 2570, \"AGE_40_49\": 2198, \"AGE_50_64\": 1890, \"AGE_65_UP\": 1147, \"MED_AGE\": 29.600000, \"MED_AGE_M\": 29.100000, \"MED_AGE_F\": 30.100000, \"HOUSEHOLDS\": 4544, \"AVE_HH_SZ\": 3.450000, \"HSEHLD_1_M\": 248, \"HSEHLD_1_F\": 291, \"MARHH_CHD\": 1750, \"MARHH_NO_C\": 1205, \"MHH_CHILD\": 151, \"FHH_CHILD\": 354, \"FAMILIES\": 3821, \"AVE_FAM_SZ\": 3.730000, \"HSE_UNITS\": 4698, \"VACANT\": 154, \"OWNER_OCC\": 3397, \"RENTER_OCC\": 1147 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -120.939170005641657, 37.731829468803411 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Riverside\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"62000\", \"CAPITAL\": \"N\", \"AREALAND\": 78.098000, \"AREAWATER\": 0.277000, \"POP_CL\": 8, \"POP2000\": 255166, \"WHITE\": 151377, \"BLACK\": 18906, \"AMERI_ES\": 2779, \"ASIAN\": 14501, \"HAWN_PI\": 991, \"OTHER\": 53591, \"MULT_RACE\": 13021, \"HISPANIC\": 97315, \"MALES\": 125705, \"FEMALES\": 129461, \"AGE_UNDER5\": 20435, \"AGE_5_17\": 56269, \"AGE_18_21\": 20764, \"AGE_22_29\": 31026, \"AGE_30_39\": 38638, \"AGE_40_49\": 35315, \"AGE_50_64\": 29665, \"AGE_65_UP\": 23054, \"MED_AGE\": 29.800000, \"MED_AGE_M\": 28.600000, \"MED_AGE_F\": 30.900000, \"HOUSEHOLDS\": 82005, \"AVE_HH_SZ\": 3.020000, \"HSEHLD_1_M\": 7658, \"HSEHLD_1_F\": 9957, \"MARHH_CHD\": 22676, \"MARHH_NO_C\": 18538, \"MHH_CHILD\": 2620, \"FHH_CHILD\": 7376, \"FAMILIES\": 58155, \"AVE_FAM_SZ\": 3.540000, \"HSE_UNITS\": 85974, \"VACANT\": 3969, \"OWNER_OCC\": 46455, \"RENTER_OCC\": 35550 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.395245192062802, 33.948169230676918 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Rocklin\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"62364\", \"CAPITAL\": \"N\", \"AREALAND\": 16.174000, \"AREAWATER\": 0.017000, \"POP_CL\": 6, \"POP2000\": 36330, \"WHITE\": 32086, \"BLACK\": 330, \"AMERI_ES\": 291, \"ASIAN\": 1510, \"HAWN_PI\": 70, \"OTHER\": 701, \"MULT_RACE\": 1342, \"HISPANIC\": 2874, \"MALES\": 17760, \"FEMALES\": 18570, \"AGE_UNDER5\": 2873, \"AGE_5_17\": 8021, \"AGE_18_21\": 1608, \"AGE_22_29\": 2929, \"AGE_30_39\": 6623, \"AGE_40_49\": 6396, \"AGE_50_64\": 4744, \"AGE_65_UP\": 3136, \"MED_AGE\": 34.500000, \"MED_AGE_M\": 33.900000, \"MED_AGE_F\": 35.100000, \"HOUSEHOLDS\": 13258, \"AVE_HH_SZ\": 2.740000, \"HSEHLD_1_M\": 1023, \"HSEHLD_1_F\": 1455, \"MARHH_CHD\": 4486, \"MARHH_NO_C\": 3776, \"MHH_CHILD\": 329, \"FHH_CHILD\": 832, \"FAMILIES\": 10016, \"AVE_FAM_SZ\": 3.150000, \"HSE_UNITS\": 14421, \"VACANT\": 1163, \"OWNER_OCC\": 9638, \"RENTER_OCC\": 3620 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.241390874210182, 38.800661583667939 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Rohnert Park\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"62546\", \"CAPITAL\": \"N\", \"AREALAND\": 6.434000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 42236, \"WHITE\": 33907, \"BLACK\": 833, \"AMERI_ES\": 329, \"ASIAN\": 2356, \"HAWN_PI\": 177, \"OTHER\": 2417, \"MULT_RACE\": 2217, \"HISPANIC\": 5731, \"MALES\": 20474, \"FEMALES\": 21762, \"AGE_UNDER5\": 2656, \"AGE_5_17\": 8018, \"AGE_18_21\": 3897, \"AGE_22_29\": 5521, \"AGE_30_39\": 6925, \"AGE_40_49\": 6553, \"AGE_50_64\": 5250, \"AGE_65_UP\": 3416, \"MED_AGE\": 31.500000, \"MED_AGE_M\": 30.600000, \"MED_AGE_F\": 32.500000, \"HOUSEHOLDS\": 15503, \"AVE_HH_SZ\": 2.650000, \"HSEHLD_1_M\": 1498, \"HSEHLD_1_F\": 2229, \"MARHH_CHD\": 3911, \"MARHH_NO_C\": 3328, \"MHH_CHILD\": 400, \"FHH_CHILD\": 1126, \"FAMILIES\": 9799, \"AVE_FAM_SZ\": 3.200000, \"HSE_UNITS\": 15808, \"VACANT\": 305, \"OWNER_OCC\": 9054, \"RENTER_OCC\": 6449 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.686647781630327, 38.348311497792281 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Rosamond\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"62826\", \"CAPITAL\": \"N\", \"AREALAND\": 52.233000, \"AREAWATER\": 0.103000, \"POP_CL\": 6, \"POP2000\": 14349, \"WHITE\": 10333, \"BLACK\": 950, \"AMERI_ES\": 189, \"ASIAN\": 432, \"HAWN_PI\": 33, \"OTHER\": 1671, \"MULT_RACE\": 741, \"HISPANIC\": 3684, \"MALES\": 7259, \"FEMALES\": 7090, \"AGE_UNDER5\": 1086, \"AGE_5_17\": 3630, \"AGE_18_21\": 725, \"AGE_22_29\": 1223, \"AGE_30_39\": 2397, \"AGE_40_49\": 2401, \"AGE_50_64\": 1749, \"AGE_65_UP\": 1138, \"MED_AGE\": 32.700000, \"MED_AGE_M\": 32.400000, \"MED_AGE_F\": 33.100000, \"HOUSEHOLDS\": 4988, \"AVE_HH_SZ\": 2.880000, \"HSEHLD_1_M\": 637, \"HSEHLD_1_F\": 455, \"MARHH_CHD\": 1481, \"MARHH_NO_C\": 1246, \"MHH_CHILD\": 159, \"FHH_CHILD\": 416, \"FAMILIES\": 3625, \"AVE_FAM_SZ\": 3.380000, \"HSE_UNITS\": 5597, \"VACANT\": 609, \"OWNER_OCC\": 3440, \"RENTER_OCC\": 1548 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.205550254534359, 34.865942742049455 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Rosemead\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"62896\", \"CAPITAL\": \"N\", \"AREALAND\": 5.146000, \"AREAWATER\": 0.009000, \"POP_CL\": 7, \"POP2000\": 53505, \"WHITE\": 14217, \"BLACK\": 363, \"AMERI_ES\": 456, \"ASIAN\": 26090, \"HAWN_PI\": 34, \"OTHER\": 10535, \"MULT_RACE\": 1810, \"HISPANIC\": 22097, \"MALES\": 26264, \"FEMALES\": 27241, \"AGE_UNDER5\": 4017, \"AGE_5_17\": 10712, \"AGE_18_21\": 3098, \"AGE_22_29\": 6847, \"AGE_30_39\": 8679, \"AGE_40_49\": 7435, \"AGE_50_64\": 7032, \"AGE_65_UP\": 5685, \"MED_AGE\": 32.300000, \"MED_AGE_M\": 31.100000, \"MED_AGE_F\": 33.700000, \"HOUSEHOLDS\": 13913, \"AVE_HH_SZ\": 3.800000, \"HSEHLD_1_M\": 744, \"HSEHLD_1_F\": 1015, \"MARHH_CHD\": 4638, \"MARHH_NO_C\": 3430, \"MHH_CHILD\": 328, \"FHH_CHILD\": 1103, \"FAMILIES\": 11628, \"AVE_FAM_SZ\": 4.110000, \"HSE_UNITS\": 14345, \"VACANT\": 432, \"OWNER_OCC\": 6783, \"RENTER_OCC\": 7130 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.081135541969559, 34.070571510987143 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Rosemont\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"62910\", \"CAPITAL\": \"N\", \"AREALAND\": 4.293000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 22904, \"WHITE\": 14771, \"BLACK\": 2496, \"AMERI_ES\": 259, \"ASIAN\": 2559, \"HAWN_PI\": 93, \"OTHER\": 1216, \"MULT_RACE\": 1510, \"HISPANIC\": 3023, \"MALES\": 11259, \"FEMALES\": 11645, \"AGE_UNDER5\": 1584, \"AGE_5_17\": 4628, \"AGE_18_21\": 1311, \"AGE_22_29\": 3420, \"AGE_30_39\": 3724, \"AGE_40_49\": 3316, \"AGE_50_64\": 3115, \"AGE_65_UP\": 1806, \"MED_AGE\": 31.100000, \"MED_AGE_M\": 30.300000, \"MED_AGE_F\": 32.300000, \"HOUSEHOLDS\": 8380, \"AVE_HH_SZ\": 2.660000, \"HSEHLD_1_M\": 875, \"HSEHLD_1_F\": 1085, \"MARHH_CHD\": 1829, \"MARHH_NO_C\": 2015, \"MHH_CHILD\": 242, \"FHH_CHILD\": 683, \"FAMILIES\": 5486, \"AVE_FAM_SZ\": 3.180000, \"HSE_UNITS\": 8584, \"VACANT\": 204, \"OWNER_OCC\": 4679, \"RENTER_OCC\": 3701 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.350735430406928, 38.550181050713242 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Roseville\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"62938\", \"CAPITAL\": \"N\", \"AREALAND\": 30.475000, \"AREAWATER\": 0.017000, \"POP_CL\": 7, \"POP2000\": 79921, \"WHITE\": 68756, \"BLACK\": 1047, \"AMERI_ES\": 559, \"ASIAN\": 3442, \"HAWN_PI\": 157, \"OTHER\": 3141, \"MULT_RACE\": 2819, \"HISPANIC\": 9225, \"MALES\": 38302, \"FEMALES\": 41619, \"AGE_UNDER5\": 5839, \"AGE_5_17\": 15545, \"AGE_18_21\": 3401, \"AGE_22_29\": 7077, \"AGE_30_39\": 13148, \"AGE_40_49\": 11994, \"AGE_50_64\": 11351, \"AGE_65_UP\": 11566, \"MED_AGE\": 36.400000, \"MED_AGE_M\": 35.200000, \"MED_AGE_F\": 37.600000, \"HOUSEHOLDS\": 30783, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 2656, \"HSEHLD_1_F\": 4462, \"MARHH_CHD\": 8213, \"MARHH_NO_C\": 9360, \"MHH_CHILD\": 714, \"FHH_CHILD\": 1983, \"FAMILIES\": 21849, \"AVE_FAM_SZ\": 3.030000, \"HSE_UNITS\": 31925, \"VACANT\": 1142, \"OWNER_OCC\": 21396, \"RENTER_OCC\": 9387 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.283929534940597, 38.753094961526294 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Rossmoor\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"63050\", \"CAPITAL\": \"N\", \"AREALAND\": 1.564000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10298, \"WHITE\": 9153, \"BLACK\": 80, \"AMERI_ES\": 35, \"ASIAN\": 589, \"HAWN_PI\": 10, \"OTHER\": 140, \"MULT_RACE\": 291, \"HISPANIC\": 687, \"MALES\": 4996, \"FEMALES\": 5302, \"AGE_UNDER5\": 532, \"AGE_5_17\": 2219, \"AGE_18_21\": 367, \"AGE_22_29\": 397, \"AGE_30_39\": 1156, \"AGE_40_49\": 1906, \"AGE_50_64\": 1816, \"AGE_65_UP\": 1905, \"MED_AGE\": 42.400000, \"MED_AGE_M\": 41.800000, \"MED_AGE_F\": 42.800000, \"HOUSEHOLDS\": 3715, \"AVE_HH_SZ\": 2.770000, \"HSEHLD_1_M\": 184, \"HSEHLD_1_F\": 432, \"MARHH_CHD\": 1207, \"MARHH_NO_C\": 1351, \"MHH_CHILD\": 48, \"FHH_CHILD\": 136, \"FAMILIES\": 2977, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 3761, \"VACANT\": 46, \"OWNER_OCC\": 3319, \"RENTER_OCC\": 396 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.078568403852756, 33.789058655863059 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Rowland Heights\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"63218\", \"CAPITAL\": \"N\", \"AREALAND\": 9.024000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 48553, \"WHITE\": 14206, \"BLACK\": 1268, \"AMERI_ES\": 221, \"ASIAN\": 24432, \"HAWN_PI\": 150, \"OTHER\": 6228, \"MULT_RACE\": 2048, \"HISPANIC\": 13748, \"MALES\": 23883, \"FEMALES\": 24670, \"AGE_UNDER5\": 3162, \"AGE_5_17\": 9446, \"AGE_18_21\": 2905, \"AGE_22_29\": 5572, \"AGE_30_39\": 7277, \"AGE_40_49\": 7732, \"AGE_50_64\": 8170, \"AGE_65_UP\": 4289, \"MED_AGE\": 34.700000, \"MED_AGE_M\": 33.200000, \"MED_AGE_F\": 36.000000, \"HOUSEHOLDS\": 14175, \"AVE_HH_SZ\": 3.410000, \"HSEHLD_1_M\": 755, \"HSEHLD_1_F\": 861, \"MARHH_CHD\": 4646, \"MARHH_NO_C\": 4477, \"MHH_CHILD\": 323, \"FHH_CHILD\": 875, \"FAMILIES\": 11970, \"AVE_FAM_SZ\": 3.640000, \"HSE_UNITS\": 14543, \"VACANT\": 368, \"OWNER_OCC\": 9328, \"RENTER_OCC\": 4847 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.888709351434912, 33.981093012262605 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Rubidoux\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"63260\", \"CAPITAL\": \"N\", \"AREALAND\": 9.157000, \"AREAWATER\": 0.110000, \"POP_CL\": 6, \"POP2000\": 29180, \"WHITE\": 15107, \"BLACK\": 2137, \"AMERI_ES\": 416, \"ASIAN\": 654, \"HAWN_PI\": 85, \"OTHER\": 9342, \"MULT_RACE\": 1439, \"HISPANIC\": 15843, \"MALES\": 14676, \"FEMALES\": 14504, \"AGE_UNDER5\": 2728, \"AGE_5_17\": 7765, \"AGE_18_21\": 1832, \"AGE_22_29\": 3121, \"AGE_30_39\": 4497, \"AGE_40_49\": 4062, \"AGE_50_64\": 3223, \"AGE_65_UP\": 1952, \"MED_AGE\": 27.900000, \"MED_AGE_M\": 27.200000, \"MED_AGE_F\": 28.400000, \"HOUSEHOLDS\": 7991, \"AVE_HH_SZ\": 3.600000, \"HSEHLD_1_M\": 562, \"HSEHLD_1_F\": 590, \"MARHH_CHD\": 2708, \"MARHH_NO_C\": 1812, \"MHH_CHILD\": 319, \"FHH_CHILD\": 871, \"FAMILIES\": 6465, \"AVE_FAM_SZ\": 3.940000, \"HSE_UNITS\": 8497, \"VACANT\": 506, \"OWNER_OCC\": 5405, \"RENTER_OCC\": 2586 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.417373144661155, 33.995919521645064 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sacramento\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"64000\", \"CAPITAL\": \"Y\", \"AREALAND\": 97.157000, \"AREAWATER\": 2.083000, \"POP_CL\": 8, \"POP2000\": 407018, \"WHITE\": 196549, \"BLACK\": 62968, \"AMERI_ES\": 5300, \"ASIAN\": 67635, \"HAWN_PI\": 3861, \"OTHER\": 44627, \"MULT_RACE\": 26078, \"HISPANIC\": 87974, \"MALES\": 197784, \"FEMALES\": 209234, \"AGE_UNDER5\": 29066, \"AGE_5_17\": 82224, \"AGE_18_21\": 23808, \"AGE_22_29\": 50477, \"AGE_30_39\": 62527, \"AGE_40_49\": 58320, \"AGE_50_64\": 54153, \"AGE_65_UP\": 46443, \"MED_AGE\": 32.800000, \"MED_AGE_M\": 31.600000, \"MED_AGE_F\": 34.000000, \"HOUSEHOLDS\": 154581, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 21802, \"HSEHLD_1_F\": 27740, \"MARHH_CHD\": 28093, \"MARHH_NO_C\": 31209, \"MHH_CHILD\": 4023, \"FHH_CHILD\": 14536, \"FAMILIES\": 91137, \"AVE_FAM_SZ\": 3.350000, \"HSE_UNITS\": 163957, \"VACANT\": 9376, \"OWNER_OCC\": 77514, \"RENTER_OCC\": 77067 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.463219748453909, 38.556311412610214 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Salida\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"64210\", \"CAPITAL\": \"N\", \"AREALAND\": 5.020000, \"AREAWATER\": 0.237000, \"POP_CL\": 6, \"POP2000\": 12560, \"WHITE\": 8628, \"BLACK\": 424, \"AMERI_ES\": 161, \"ASIAN\": 595, \"HAWN_PI\": 31, \"OTHER\": 1964, \"MULT_RACE\": 757, \"HISPANIC\": 3902, \"MALES\": 6313, \"FEMALES\": 6247, \"AGE_UNDER5\": 1336, \"AGE_5_17\": 3186, \"AGE_18_21\": 482, \"AGE_22_29\": 1467, \"AGE_30_39\": 2584, \"AGE_40_49\": 1636, \"AGE_50_64\": 1233, \"AGE_65_UP\": 636, \"MED_AGE\": 29.300000, \"MED_AGE_M\": 29.400000, \"MED_AGE_F\": 29.200000, \"HOUSEHOLDS\": 3617, \"AVE_HH_SZ\": 3.440000, \"HSEHLD_1_M\": 172, \"HSEHLD_1_F\": 136, \"MARHH_CHD\": 1708, \"MARHH_NO_C\": 932, \"MHH_CHILD\": 106, \"FHH_CHILD\": 203, \"FAMILIES\": 3157, \"AVE_FAM_SZ\": 3.630000, \"HSE_UNITS\": 3740, \"VACANT\": 123, \"OWNER_OCC\": 3146, \"RENTER_OCC\": 471 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.084562976210009, 37.710468063692787 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Salinas\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"64224\", \"CAPITAL\": \"N\", \"AREALAND\": 19.005000, \"AREAWATER\": 0.000000, \"POP_CL\": 8, \"POP2000\": 151060, \"WHITE\": 68218, \"BLACK\": 4943, \"AMERI_ES\": 1903, \"ASIAN\": 9390, \"HAWN_PI\": 407, \"OTHER\": 58466, \"MULT_RACE\": 7733, \"HISPANIC\": 96880, \"MALES\": 80361, \"FEMALES\": 70699, \"AGE_UNDER5\": 13988, \"AGE_5_17\": 34401, \"AGE_18_21\": 9936, \"AGE_22_29\": 21468, \"AGE_30_39\": 26058, \"AGE_40_49\": 19933, \"AGE_50_64\": 14603, \"AGE_65_UP\": 10673, \"MED_AGE\": 28.500000, \"MED_AGE_M\": 28.400000, \"MED_AGE_F\": 28.500000, \"HOUSEHOLDS\": 38298, \"AVE_HH_SZ\": 3.660000, \"HSEHLD_1_M\": 2660, \"HSEHLD_1_F\": 3871, \"MARHH_CHD\": 13948, \"MARHH_NO_C\": 8110, \"MHH_CHILD\": 1219, \"FHH_CHILD\": 3686, \"FAMILIES\": 30008, \"AVE_FAM_SZ\": 4.070000, \"HSE_UNITS\": 39659, \"VACANT\": 1361, \"OWNER_OCC\": 19206, \"RENTER_OCC\": 19092 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.63770484957503, 36.684573495517292 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"San Anselmo\", \"CLASS\": \"town\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"64434\", \"CAPITAL\": \"N\", \"AREALAND\": 2.747000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12378, \"WHITE\": 11341, \"BLACK\": 130, \"AMERI_ES\": 50, \"ASIAN\": 361, \"HAWN_PI\": 15, \"OTHER\": 118, \"MULT_RACE\": 363, \"HISPANIC\": 513, \"MALES\": 5836, \"FEMALES\": 6542, \"AGE_UNDER5\": 725, \"AGE_5_17\": 1974, \"AGE_18_21\": 315, \"AGE_22_29\": 731, \"AGE_30_39\": 2094, \"AGE_40_49\": 2603, \"AGE_50_64\": 2534, \"AGE_65_UP\": 1402, \"MED_AGE\": 41.300000, \"MED_AGE_M\": 40.600000, \"MED_AGE_F\": 41.900000, \"HOUSEHOLDS\": 5267, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 541, \"HSEHLD_1_F\": 970, \"MARHH_CHD\": 1240, \"MARHH_NO_C\": 1317, \"MHH_CHILD\": 96, \"FHH_CHILD\": 257, \"FAMILIES\": 3191, \"AVE_FAM_SZ\": 2.840000, \"HSE_UNITS\": 5408, \"VACANT\": 141, \"OWNER_OCC\": 3516, \"RENTER_OCC\": 1751 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.559955610093965, 37.98114403634299 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"San Bernardino\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"65000\", \"CAPITAL\": \"N\", \"AREALAND\": 58.812000, \"AREAWATER\": 0.436000, \"POP_CL\": 8, \"POP2000\": 185401, \"WHITE\": 83849, \"BLACK\": 30425, \"AMERI_ES\": 2591, \"ASIAN\": 7772, \"HAWN_PI\": 680, \"OTHER\": 50286, \"MULT_RACE\": 9798, \"HISPANIC\": 88022, \"MALES\": 91150, \"FEMALES\": 94251, \"AGE_UNDER5\": 18177, \"AGE_5_17\": 47003, \"AGE_18_21\": 11996, \"AGE_22_29\": 22051, \"AGE_30_39\": 28074, \"AGE_40_49\": 23497, \"AGE_50_64\": 19337, \"AGE_65_UP\": 15266, \"MED_AGE\": 27.600000, \"MED_AGE_M\": 26.700000, \"MED_AGE_F\": 28.600000, \"HOUSEHOLDS\": 56330, \"AVE_HH_SZ\": 3.190000, \"HSEHLD_1_M\": 5338, \"HSEHLD_1_F\": 6531, \"MARHH_CHD\": 14784, \"MARHH_NO_C\": 10531, \"MHH_CHILD\": 2213, \"FHH_CHILD\": 7853, \"FAMILIES\": 41099, \"AVE_FAM_SZ\": 3.720000, \"HSE_UNITS\": 63535, \"VACANT\": 7205, \"OWNER_OCC\": 29536, \"RENTER_OCC\": 26794 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.292294224440823, 34.129610103614581 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"San Bruno\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"65028\", \"CAPITAL\": \"N\", \"AREALAND\": 5.462000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 40165, \"WHITE\": 23156, \"BLACK\": 807, \"AMERI_ES\": 189, \"ASIAN\": 7506, \"HAWN_PI\": 1156, \"OTHER\": 4346, \"MULT_RACE\": 3005, \"HISPANIC\": 9686, \"MALES\": 19822, \"FEMALES\": 20343, \"AGE_UNDER5\": 2440, \"AGE_5_17\": 6789, \"AGE_18_21\": 1782, \"AGE_22_29\": 4590, \"AGE_30_39\": 7279, \"AGE_40_49\": 6606, \"AGE_50_64\": 6167, \"AGE_65_UP\": 4512, \"MED_AGE\": 36.300000, \"MED_AGE_M\": 35.200000, \"MED_AGE_F\": 37.400000, \"HOUSEHOLDS\": 14677, \"AVE_HH_SZ\": 2.720000, \"HSEHLD_1_M\": 1732, \"HSEHLD_1_F\": 2017, \"MARHH_CHD\": 3567, \"MARHH_NO_C\": 4034, \"MHH_CHILD\": 287, \"FHH_CHILD\": 753, \"FAMILIES\": 9917, \"AVE_FAM_SZ\": 3.290000, \"HSE_UNITS\": 14980, \"VACANT\": 303, \"OWNER_OCC\": 9252, \"RENTER_OCC\": 5425 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.417664679903197, 37.626290244005425 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"San Buenaventura (Ventura)\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"65042\", \"CAPITAL\": \"N\", \"AREALAND\": 21.065000, \"AREAWATER\": 11.591000, \"POP_CL\": 8, \"POP2000\": 100916, \"WHITE\": 79511, \"BLACK\": 1421, \"AMERI_ES\": 1173, \"ASIAN\": 3028, \"HAWN_PI\": 175, \"OTHER\": 11245, \"MULT_RACE\": 4363, \"HISPANIC\": 24573, \"MALES\": 49654, \"FEMALES\": 51262, \"AGE_UNDER5\": 6641, \"AGE_5_17\": 18621, \"AGE_18_21\": 4586, \"AGE_22_29\": 9874, \"AGE_30_39\": 16414, \"AGE_40_49\": 16688, \"AGE_50_64\": 15161, \"AGE_65_UP\": 12931, \"MED_AGE\": 36.800000, \"MED_AGE_M\": 35.600000, \"MED_AGE_F\": 38.000000, \"HOUSEHOLDS\": 38524, \"AVE_HH_SZ\": 2.560000, \"HSEHLD_1_M\": 4326, \"HSEHLD_1_F\": 5880, \"MARHH_CHD\": 8751, \"MARHH_NO_C\": 10202, \"MHH_CHILD\": 996, \"FHH_CHILD\": 2605, \"FAMILIES\": 25244, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 39803, \"VACANT\": 1279, \"OWNER_OCC\": 22596, \"RENTER_OCC\": 15928 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -119.226170937366035, 34.27548216570716 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"San Carlos\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"65070\", \"CAPITAL\": \"N\", \"AREALAND\": 5.916000, \"AREAWATER\": 0.010000, \"POP_CL\": 6, \"POP2000\": 27718, \"WHITE\": 23434, \"BLACK\": 209, \"AMERI_ES\": 53, \"ASIAN\": 2182, \"HAWN_PI\": 110, \"OTHER\": 664, \"MULT_RACE\": 1066, \"HISPANIC\": 2133, \"MALES\": 13326, \"FEMALES\": 14392, \"AGE_UNDER5\": 1951, \"AGE_5_17\": 4172, \"AGE_18_21\": 652, \"AGE_22_29\": 1929, \"AGE_30_39\": 5198, \"AGE_40_49\": 4965, \"AGE_50_64\": 4875, \"AGE_65_UP\": 3976, \"MED_AGE\": 39.900000, \"MED_AGE_M\": 39.000000, \"MED_AGE_F\": 40.800000, \"HOUSEHOLDS\": 11455, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 1072, \"HSEHLD_1_F\": 1877, \"MARHH_CHD\": 2852, \"MARHH_NO_C\": 3616, \"MHH_CHILD\": 152, \"FHH_CHILD\": 397, \"FAMILIES\": 7608, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 11691, \"VACANT\": 236, \"OWNER_OCC\": 8331, \"RENTER_OCC\": 3124 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.256155824145821, 37.500124139374556 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"San Clemente\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"65084\", \"CAPITAL\": \"N\", \"AREALAND\": 17.624000, \"AREAWATER\": 0.738000, \"POP_CL\": 6, \"POP2000\": 49936, \"WHITE\": 43905, \"BLACK\": 385, \"AMERI_ES\": 307, \"ASIAN\": 1317, \"HAWN_PI\": 69, \"OTHER\": 2552, \"MULT_RACE\": 1401, \"HISPANIC\": 7933, \"MALES\": 25264, \"FEMALES\": 24672, \"AGE_UNDER5\": 3223, \"AGE_5_17\": 8810, \"AGE_18_21\": 1997, \"AGE_22_29\": 4827, \"AGE_30_39\": 7948, \"AGE_40_49\": 8775, \"AGE_50_64\": 7822, \"AGE_65_UP\": 6534, \"MED_AGE\": 38.000000, \"MED_AGE_M\": 37.000000, \"MED_AGE_F\": 38.800000, \"HOUSEHOLDS\": 19395, \"AVE_HH_SZ\": 2.560000, \"HSEHLD_1_M\": 2116, \"HSEHLD_1_F\": 2425, \"MARHH_CHD\": 4763, \"MARHH_NO_C\": 6014, \"MHH_CHILD\": 365, \"FHH_CHILD\": 857, \"FAMILIES\": 13015, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 20653, \"VACANT\": 1258, \"OWNER_OCC\": 12101, \"RENTER_OCC\": 7294 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.619463856755075, 33.437941124357124 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"San Diego\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"66000\", \"CAPITAL\": \"N\", \"AREALAND\": 324.341000, \"AREAWATER\": 47.690000, \"POP_CL\": 10, \"POP2000\": 1223400, \"WHITE\": 736207, \"BLACK\": 96216, \"AMERI_ES\": 7543, \"ASIAN\": 166968, \"HAWN_PI\": 5853, \"OTHER\": 151532, \"MULT_RACE\": 59081, \"HISPANIC\": 310752, \"MALES\": 616884, \"FEMALES\": 606516, \"AGE_UNDER5\": 82523, \"AGE_5_17\": 211385, \"AGE_18_21\": 85983, \"AGE_22_29\": 176567, \"AGE_30_39\": 210745, \"AGE_40_49\": 174023, \"AGE_50_64\": 154166, \"AGE_65_UP\": 128008, \"MED_AGE\": 32.500000, \"MED_AGE_M\": 31.500000, \"MED_AGE_F\": 33.600000, \"HOUSEHOLDS\": 450691, \"AVE_HH_SZ\": 2.610000, \"HSEHLD_1_M\": 60633, \"HSEHLD_1_F\": 65577, \"MARHH_CHD\": 98074, \"MARHH_NO_C\": 103139, \"MHH_CHILD\": 8538, \"FHH_CHILD\": 29473, \"FAMILIES\": 271398, \"AVE_FAM_SZ\": 3.300000, \"HSE_UNITS\": 469689, \"VACANT\": 18998, \"OWNER_OCC\": 223280, \"RENTER_OCC\": 227411 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.145611913204974, 32.779629041936786 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"San Dimas\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"66070\", \"CAPITAL\": \"N\", \"AREALAND\": 15.507000, \"AREAWATER\": 0.125000, \"POP_CL\": 6, \"POP2000\": 34980, \"WHITE\": 26116, \"BLACK\": 1156, \"AMERI_ES\": 243, \"ASIAN\": 3286, \"HAWN_PI\": 73, \"OTHER\": 2569, \"MULT_RACE\": 1537, \"HISPANIC\": 8163, \"MALES\": 16783, \"FEMALES\": 18197, \"AGE_UNDER5\": 2051, \"AGE_5_17\": 6883, \"AGE_18_21\": 1908, \"AGE_22_29\": 3204, \"AGE_30_39\": 4915, \"AGE_40_49\": 5860, \"AGE_50_64\": 6000, \"AGE_65_UP\": 4159, \"MED_AGE\": 37.300000, \"MED_AGE_M\": 35.800000, \"MED_AGE_F\": 38.600000, \"HOUSEHOLDS\": 12163, \"AVE_HH_SZ\": 2.780000, \"HSEHLD_1_M\": 924, \"HSEHLD_1_F\": 1634, \"MARHH_CHD\": 3289, \"MARHH_NO_C\": 3730, \"MHH_CHILD\": 284, \"FHH_CHILD\": 746, \"FAMILIES\": 8985, \"AVE_FAM_SZ\": 3.230000, \"HSE_UNITS\": 12503, \"VACANT\": 340, \"OWNER_OCC\": 8967, \"RENTER_OCC\": 3196 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.815190305090141, 34.103035335198832 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"San Fernando\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"66140\", \"CAPITAL\": \"N\", \"AREALAND\": 2.385000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 23564, \"WHITE\": 10076, \"BLACK\": 231, \"AMERI_ES\": 399, \"ASIAN\": 264, \"HAWN_PI\": 26, \"OTHER\": 11629, \"MULT_RACE\": 939, \"HISPANIC\": 21038, \"MALES\": 11881, \"FEMALES\": 11683, \"AGE_UNDER5\": 2255, \"AGE_5_17\": 5854, \"AGE_18_21\": 1557, \"AGE_22_29\": 3247, \"AGE_30_39\": 3848, \"AGE_40_49\": 2881, \"AGE_50_64\": 2262, \"AGE_65_UP\": 1660, \"MED_AGE\": 27.300000, \"MED_AGE_M\": 26.800000, \"MED_AGE_F\": 27.800000, \"HOUSEHOLDS\": 5774, \"AVE_HH_SZ\": 4.070000, \"HSEHLD_1_M\": 349, \"HSEHLD_1_F\": 368, \"MARHH_CHD\": 2327, \"MARHH_NO_C\": 1087, \"MHH_CHILD\": 223, \"FHH_CHILD\": 498, \"FAMILIES\": 4834, \"AVE_FAM_SZ\": 4.330000, \"HSE_UNITS\": 5932, \"VACANT\": 158, \"OWNER_OCC\": 3115, \"RENTER_OCC\": 2659 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.437458601659173, 34.287420926212576 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"San Francisco\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"67000\", \"CAPITAL\": \"N\", \"AREALAND\": 46.694000, \"AREAWATER\": 185.221000, \"POP_CL\": 9, \"POP2000\": 776733, \"WHITE\": 385728, \"BLACK\": 60515, \"AMERI_ES\": 3458, \"ASIAN\": 239565, \"HAWN_PI\": 3844, \"OTHER\": 50368, \"MULT_RACE\": 33255, \"HISPANIC\": 109504, \"MALES\": 394828, \"FEMALES\": 381905, \"AGE_UNDER5\": 31633, \"AGE_5_17\": 81169, \"AGE_18_21\": 31505, \"AGE_22_29\": 130484, \"AGE_30_39\": 161353, \"AGE_40_49\": 117999, \"AGE_50_64\": 116479, \"AGE_65_UP\": 106111, \"MED_AGE\": 36.500000, \"MED_AGE_M\": 36.000000, \"MED_AGE_F\": 37.200000, \"HOUSEHOLDS\": 329700, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 63760, \"HSEHLD_1_F\": 63616, \"MARHH_CHD\": 40269, \"MARHH_NO_C\": 64041, \"MHH_CHILD\": 3154, \"FHH_CHILD\": 11284, \"FAMILIES\": 145186, \"AVE_FAM_SZ\": 3.220000, \"HSE_UNITS\": 346527, \"VACANT\": 16827, \"OWNER_OCC\": 115391, \"RENTER_OCC\": 214309 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.429695655298133, 37.760892181697557 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"San Gabriel\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"67042\", \"CAPITAL\": \"N\", \"AREALAND\": 4.129000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 39804, \"WHITE\": 13294, \"BLACK\": 420, \"AMERI_ES\": 331, \"ASIAN\": 19470, \"HAWN_PI\": 39, \"OTHER\": 4921, \"MULT_RACE\": 1329, \"HISPANIC\": 12223, \"MALES\": 19091, \"FEMALES\": 20713, \"AGE_UNDER5\": 2653, \"AGE_5_17\": 6702, \"AGE_18_21\": 1899, \"AGE_22_29\": 4747, \"AGE_30_39\": 6983, \"AGE_40_49\": 5774, \"AGE_50_64\": 5694, \"AGE_65_UP\": 5352, \"MED_AGE\": 35.600000, \"MED_AGE_M\": 34.400000, \"MED_AGE_F\": 36.800000, \"HOUSEHOLDS\": 12587, \"AVE_HH_SZ\": 3.100000, \"HSEHLD_1_M\": 971, \"HSEHLD_1_F\": 1319, \"MARHH_CHD\": 3403, \"MARHH_NO_C\": 3402, \"MHH_CHILD\": 258, \"FHH_CHILD\": 838, \"FAMILIES\": 9567, \"AVE_FAM_SZ\": 3.520000, \"HSE_UNITS\": 12909, \"VACANT\": 322, \"OWNER_OCC\": 5988, \"RENTER_OCC\": 6599 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.097262930712958, 34.094320704155528 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sanger\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"67056\", \"CAPITAL\": \"N\", \"AREALAND\": 4.750000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 18931, \"WHITE\": 9376, \"BLACK\": 80, \"AMERI_ES\": 228, \"ASIAN\": 371, \"HAWN_PI\": 16, \"OTHER\": 8170, \"MULT_RACE\": 690, \"HISPANIC\": 15319, \"MALES\": 9495, \"FEMALES\": 9436, \"AGE_UNDER5\": 1719, \"AGE_5_17\": 4738, \"AGE_18_21\": 1349, \"AGE_22_29\": 2129, \"AGE_30_39\": 2695, \"AGE_40_49\": 2307, \"AGE_50_64\": 2085, \"AGE_65_UP\": 1909, \"MED_AGE\": 28.100000, \"MED_AGE_M\": 27.000000, \"MED_AGE_F\": 29.500000, \"HOUSEHOLDS\": 5220, \"AVE_HH_SZ\": 3.600000, \"HSEHLD_1_M\": 275, \"HSEHLD_1_F\": 473, \"MARHH_CHD\": 1714, \"MARHH_NO_C\": 1274, \"MHH_CHILD\": 214, \"FHH_CHILD\": 554, \"FAMILIES\": 4308, \"AVE_FAM_SZ\": 3.910000, \"HSE_UNITS\": 5420, \"VACANT\": 200, \"OWNER_OCC\": 3000, \"RENTER_OCC\": 2220 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -119.556269956438186, 36.704552812307419 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"San Jacinto\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"67112\", \"CAPITAL\": \"N\", \"AREALAND\": 24.909000, \"AREAWATER\": 0.376000, \"POP_CL\": 6, \"POP2000\": 23779, \"WHITE\": 16488, \"BLACK\": 630, \"AMERI_ES\": 556, \"ASIAN\": 267, \"HAWN_PI\": 38, \"OTHER\": 4641, \"MULT_RACE\": 1159, \"HISPANIC\": 9583, \"MALES\": 11512, \"FEMALES\": 12267, \"AGE_UNDER5\": 1982, \"AGE_5_17\": 5469, \"AGE_18_21\": 1145, \"AGE_22_29\": 2115, \"AGE_30_39\": 3358, \"AGE_40_49\": 2773, \"AGE_50_64\": 2845, \"AGE_65_UP\": 4092, \"MED_AGE\": 33.700000, \"MED_AGE_M\": 32.200000, \"MED_AGE_F\": 35.100000, \"HOUSEHOLDS\": 8314, \"AVE_HH_SZ\": 2.840000, \"HSEHLD_1_M\": 776, \"HSEHLD_1_F\": 1332, \"MARHH_CHD\": 2092, \"MARHH_NO_C\": 2242, \"MHH_CHILD\": 231, \"FHH_CHILD\": 679, \"FAMILIES\": 5837, \"AVE_FAM_SZ\": 3.410000, \"HSE_UNITS\": 9476, \"VACANT\": 1162, \"OWNER_OCC\": 5905, \"RENTER_OCC\": 2409 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -116.965942658941529, 33.787203608166898 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"San Jose\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"68000\", \"CAPITAL\": \"N\", \"AREALAND\": 174.863000, \"AREAWATER\": 3.315000, \"POP_CL\": 9, \"POP2000\": 894943, \"WHITE\": 425017, \"BLACK\": 31349, \"AMERI_ES\": 6865, \"ASIAN\": 240375, \"HAWN_PI\": 3584, \"OTHER\": 142691, \"MULT_RACE\": 45062, \"HISPANIC\": 269989, \"MALES\": 454798, \"FEMALES\": 440145, \"AGE_UNDER5\": 68243, \"AGE_5_17\": 167881, \"AGE_18_21\": 49115, \"AGE_22_29\": 118111, \"AGE_30_39\": 165473, \"AGE_40_49\": 132993, \"AGE_50_64\": 119267, \"AGE_65_UP\": 73860, \"MED_AGE\": 32.600000, \"MED_AGE_M\": 32.000000, \"MED_AGE_F\": 33.300000, \"HOUSEHOLDS\": 276598, \"AVE_HH_SZ\": 3.200000, \"HSEHLD_1_M\": 24669, \"HSEHLD_1_F\": 26269, \"MARHH_CHD\": 82694, \"MARHH_NO_C\": 72306, \"MHH_CHILD\": 6587, \"FHH_CHILD\": 16654, \"FAMILIES\": 203681, \"AVE_FAM_SZ\": 3.620000, \"HSE_UNITS\": 281841, \"VACANT\": 5243, \"OWNER_OCC\": 170950, \"RENTER_OCC\": 105648 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.866612646822063, 37.304849700172795 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"San Juan Capistrano\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"68028\", \"CAPITAL\": \"N\", \"AREALAND\": 14.205000, \"AREAWATER\": 0.139000, \"POP_CL\": 6, \"POP2000\": 33826, \"WHITE\": 26543, \"BLACK\": 265, \"AMERI_ES\": 363, \"ASIAN\": 651, \"HAWN_PI\": 38, \"OTHER\": 4806, \"MULT_RACE\": 1160, \"HISPANIC\": 11206, \"MALES\": 16648, \"FEMALES\": 17178, \"AGE_UNDER5\": 2420, \"AGE_5_17\": 7080, \"AGE_18_21\": 1640, \"AGE_22_29\": 2874, \"AGE_30_39\": 4782, \"AGE_40_49\": 5073, \"AGE_50_64\": 5542, \"AGE_65_UP\": 4415, \"MED_AGE\": 36.400000, \"MED_AGE_M\": 34.800000, \"MED_AGE_F\": 37.800000, \"HOUSEHOLDS\": 10930, \"AVE_HH_SZ\": 3.060000, \"HSEHLD_1_M\": 731, \"HSEHLD_1_F\": 1421, \"MARHH_CHD\": 3381, \"MARHH_NO_C\": 3469, \"MHH_CHILD\": 213, \"FHH_CHILD\": 439, \"FAMILIES\": 8196, \"AVE_FAM_SZ\": 3.450000, \"HSE_UNITS\": 11320, \"VACANT\": 390, \"OWNER_OCC\": 8624, \"RENTER_OCC\": 2306 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.660660859722071, 33.49960860474048 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"San Leandro\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"68084\", \"CAPITAL\": \"N\", \"AREALAND\": 13.126000, \"AREAWATER\": 2.431000, \"POP_CL\": 7, \"POP2000\": 79452, \"WHITE\": 40754, \"BLACK\": 7849, \"AMERI_ES\": 609, \"ASIAN\": 18242, \"HAWN_PI\": 683, \"OTHER\": 6737, \"MULT_RACE\": 4578, \"HISPANIC\": 15939, \"MALES\": 38300, \"FEMALES\": 41152, \"AGE_UNDER5\": 5032, \"AGE_5_17\": 12622, \"AGE_18_21\": 3459, \"AGE_22_29\": 8410, \"AGE_30_39\": 13275, \"AGE_40_49\": 12163, \"AGE_50_64\": 11803, \"AGE_65_UP\": 12688, \"MED_AGE\": 37.700000, \"MED_AGE_M\": 36.200000, \"MED_AGE_F\": 39.200000, \"HOUSEHOLDS\": 30642, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 3612, \"HSEHLD_1_F\": 5133, \"MARHH_CHD\": 6409, \"MARHH_NO_C\": 8028, \"MHH_CHILD\": 577, \"FHH_CHILD\": 1828, \"FAMILIES\": 19817, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 31334, \"VACANT\": 692, \"OWNER_OCC\": 18569, \"RENTER_OCC\": 12073 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.14641962717495, 37.711600552396369 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"San Lorenzo\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"68112\", \"CAPITAL\": \"N\", \"AREALAND\": 2.774000, \"AREAWATER\": 0.008000, \"POP_CL\": 6, \"POP2000\": 21898, \"WHITE\": 13865, \"BLACK\": 616, \"AMERI_ES\": 195, \"ASIAN\": 3389, \"HAWN_PI\": 105, \"OTHER\": 2369, \"MULT_RACE\": 1359, \"HISPANIC\": 5398, \"MALES\": 10610, \"FEMALES\": 11288, \"AGE_UNDER5\": 1336, \"AGE_5_17\": 4172, \"AGE_18_21\": 1070, \"AGE_22_29\": 1881, \"AGE_30_39\": 3352, \"AGE_40_49\": 3525, \"AGE_50_64\": 3058, \"AGE_65_UP\": 3504, \"MED_AGE\": 37.700000, \"MED_AGE_M\": 36.300000, \"MED_AGE_F\": 39.100000, \"HOUSEHOLDS\": 7500, \"AVE_HH_SZ\": 2.920000, \"HSEHLD_1_M\": 513, \"HSEHLD_1_F\": 922, \"MARHH_CHD\": 2031, \"MARHH_NO_C\": 2323, \"MHH_CHILD\": 167, \"FHH_CHILD\": 404, \"FAMILIES\": 5678, \"AVE_FAM_SZ\": 3.340000, \"HSE_UNITS\": 7609, \"VACANT\": 109, \"OWNER_OCC\": 5942, \"RENTER_OCC\": 1558 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.126877728273442, 37.676076640891118 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"San Luis Obispo\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"68154\", \"CAPITAL\": \"N\", \"AREALAND\": 10.658000, \"AREAWATER\": 0.177000, \"POP_CL\": 6, \"POP2000\": 44174, \"WHITE\": 37155, \"BLACK\": 644, \"AMERI_ES\": 287, \"ASIAN\": 2331, \"HAWN_PI\": 58, \"OTHER\": 2130, \"MULT_RACE\": 1569, \"HISPANIC\": 5147, \"MALES\": 22705, \"FEMALES\": 21469, \"AGE_UNDER5\": 1513, \"AGE_5_17\": 4750, \"AGE_18_21\": 9222, \"AGE_22_29\": 8853, \"AGE_30_39\": 4670, \"AGE_40_49\": 5069, \"AGE_50_64\": 4767, \"AGE_65_UP\": 5330, \"MED_AGE\": 26.200000, \"MED_AGE_M\": 24.800000, \"MED_AGE_F\": 29.500000, \"HOUSEHOLDS\": 18639, \"AVE_HH_SZ\": 2.270000, \"HSEHLD_1_M\": 2757, \"HSEHLD_1_F\": 3337, \"MARHH_CHD\": 2341, \"MARHH_NO_C\": 3499, \"MHH_CHILD\": 210, \"FHH_CHILD\": 748, \"FAMILIES\": 7696, \"AVE_FAM_SZ\": 2.860000, \"HSE_UNITS\": 19306, \"VACANT\": 667, \"OWNER_OCC\": 7805, \"RENTER_OCC\": 10834 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -120.659731575548392, 35.274762236767941 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"San Marcos\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"68196\", \"CAPITAL\": \"N\", \"AREALAND\": 23.755000, \"AREAWATER\": 0.066000, \"POP_CL\": 7, \"POP2000\": 54977, \"WHITE\": 37051, \"BLACK\": 1099, \"AMERI_ES\": 453, \"ASIAN\": 2567, \"HAWN_PI\": 130, \"OTHER\": 11212, \"MULT_RACE\": 2465, \"HISPANIC\": 20271, \"MALES\": 27271, \"FEMALES\": 27706, \"AGE_UNDER5\": 4821, \"AGE_5_17\": 11184, \"AGE_18_21\": 3004, \"AGE_22_29\": 6386, \"AGE_30_39\": 9479, \"AGE_40_49\": 7395, \"AGE_50_64\": 6183, \"AGE_65_UP\": 6525, \"MED_AGE\": 32.100000, \"MED_AGE_M\": 31.200000, \"MED_AGE_F\": 33.100000, \"HOUSEHOLDS\": 18111, \"AVE_HH_SZ\": 3.030000, \"HSEHLD_1_M\": 1330, \"HSEHLD_1_F\": 2347, \"MARHH_CHD\": 5601, \"MARHH_NO_C\": 5008, \"MHH_CHILD\": 471, \"FHH_CHILD\": 1002, \"FAMILIES\": 13212, \"AVE_FAM_SZ\": 3.460000, \"HSE_UNITS\": 18862, \"VACANT\": 751, \"OWNER_OCC\": 11957, \"RENTER_OCC\": 6154 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.169474239476074, 33.142167531710307 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"San Marino\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"68224\", \"CAPITAL\": \"N\", \"AREALAND\": 3.774000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12945, \"WHITE\": 6177, \"BLACK\": 33, \"AMERI_ES\": 6, \"ASIAN\": 6286, \"HAWN_PI\": 10, \"OTHER\": 135, \"MULT_RACE\": 298, \"HISPANIC\": 571, \"MALES\": 6240, \"FEMALES\": 6705, \"AGE_UNDER5\": 637, \"AGE_5_17\": 2788, \"AGE_18_21\": 520, \"AGE_22_29\": 710, \"AGE_30_39\": 1264, \"AGE_40_49\": 2455, \"AGE_50_64\": 2472, \"AGE_65_UP\": 2099, \"MED_AGE\": 42.700000, \"MED_AGE_M\": 41.900000, \"MED_AGE_F\": 43.200000, \"HOUSEHOLDS\": 4266, \"AVE_HH_SZ\": 3.030000, \"HSEHLD_1_M\": 148, \"HSEHLD_1_F\": 366, \"MARHH_CHD\": 1582, \"MARHH_NO_C\": 1619, \"MHH_CHILD\": 38, \"FHH_CHILD\": 172, \"FAMILIES\": 3674, \"AVE_FAM_SZ\": 3.290000, \"HSE_UNITS\": 4437, \"VACANT\": 171, \"OWNER_OCC\": 3909, \"RENTER_OCC\": 357 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.111768638398601, 34.12280382801368 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"San Mateo\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"68252\", \"CAPITAL\": \"N\", \"AREALAND\": 12.218000, \"AREAWATER\": 3.739000, \"POP_CL\": 7, \"POP2000\": 92482, \"WHITE\": 61251, \"BLACK\": 2397, \"AMERI_ES\": 447, \"ASIAN\": 13961, \"HAWN_PI\": 1517, \"OTHER\": 8260, \"MULT_RACE\": 4649, \"HISPANIC\": 18973, \"MALES\": 45201, \"FEMALES\": 47281, \"AGE_UNDER5\": 5631, \"AGE_5_17\": 13203, \"AGE_18_21\": 3377, \"AGE_22_29\": 10920, \"AGE_30_39\": 17318, \"AGE_40_49\": 14420, \"AGE_50_64\": 13681, \"AGE_65_UP\": 13932, \"MED_AGE\": 37.500000, \"MED_AGE_M\": 35.900000, \"MED_AGE_F\": 39.100000, \"HOUSEHOLDS\": 37338, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 4694, \"HSEHLD_1_F\": 7091, \"MARHH_CHD\": 7574, \"MARHH_NO_C\": 9935, \"MHH_CHILD\": 559, \"FHH_CHILD\": 1546, \"FAMILIES\": 22310, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 38249, \"VACANT\": 911, \"OWNER_OCC\": 20119, \"RENTER_OCC\": 17219 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.305770493374069, 37.555243200494758 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"San Pablo\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"68294\", \"CAPITAL\": \"N\", \"AREALAND\": 2.577000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 30215, \"WHITE\": 9555, \"BLACK\": 5539, \"AMERI_ES\": 271, \"ASIAN\": 4945, \"HAWN_PI\": 154, \"OTHER\": 7688, \"MULT_RACE\": 2063, \"HISPANIC\": 13490, \"MALES\": 14839, \"FEMALES\": 15376, \"AGE_UNDER5\": 2738, \"AGE_5_17\": 6842, \"AGE_18_21\": 1872, \"AGE_22_29\": 3951, \"AGE_30_39\": 4966, \"AGE_40_49\": 3891, \"AGE_50_64\": 3334, \"AGE_65_UP\": 2621, \"MED_AGE\": 29.500000, \"MED_AGE_M\": 28.600000, \"MED_AGE_F\": 30.200000, \"HOUSEHOLDS\": 9051, \"AVE_HH_SZ\": 3.290000, \"HSEHLD_1_M\": 934, \"HSEHLD_1_F\": 1100, \"MARHH_CHD\": 2584, \"MARHH_NO_C\": 1443, \"MHH_CHILD\": 311, \"FHH_CHILD\": 1090, \"FAMILIES\": 6490, \"AVE_FAM_SZ\": 3.870000, \"HSE_UNITS\": 9340, \"VACANT\": 289, \"OWNER_OCC\": 4442, \"RENTER_OCC\": 4609 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.337553262169905, 37.962604467427795 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"San Rafael\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"68364\", \"CAPITAL\": \"N\", \"AREALAND\": 16.592000, \"AREAWATER\": 5.840000, \"POP_CL\": 7, \"POP2000\": 56063, \"WHITE\": 42472, \"BLACK\": 1257, \"AMERI_ES\": 312, \"ASIAN\": 3133, \"HAWN_PI\": 95, \"OTHER\": 6256, \"MULT_RACE\": 2538, \"HISPANIC\": 13070, \"MALES\": 27777, \"FEMALES\": 28286, \"AGE_UNDER5\": 3271, \"AGE_5_17\": 7666, \"AGE_18_21\": 2416, \"AGE_22_29\": 6512, \"AGE_30_39\": 9616, \"AGE_40_49\": 9180, \"AGE_50_64\": 9347, \"AGE_65_UP\": 8055, \"MED_AGE\": 38.500000, \"MED_AGE_M\": 36.200000, \"MED_AGE_F\": 40.700000, \"HOUSEHOLDS\": 22371, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 2784, \"HSEHLD_1_F\": 4403, \"MARHH_CHD\": 4261, \"MARHH_NO_C\": 5640, \"MHH_CHILD\": 363, \"FHH_CHILD\": 1156, \"FAMILIES\": 12776, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 22948, \"VACANT\": 577, \"OWNER_OCC\": 12025, \"RENTER_OCC\": 10346 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.51565209547249, 37.984308828819479 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"San Ramon\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"68378\", \"CAPITAL\": \"N\", \"AREALAND\": 11.580000, \"AREAWATER\": 0.010000, \"POP_CL\": 6, \"POP2000\": 44722, \"WHITE\": 34354, \"BLACK\": 862, \"AMERI_ES\": 160, \"ASIAN\": 6680, \"HAWN_PI\": 95, \"OTHER\": 968, \"MULT_RACE\": 1603, \"HISPANIC\": 3238, \"MALES\": 22058, \"FEMALES\": 22664, \"AGE_UNDER5\": 3329, \"AGE_5_17\": 8432, \"AGE_18_21\": 1465, \"AGE_22_29\": 3821, \"AGE_30_39\": 8687, \"AGE_40_49\": 8567, \"AGE_50_64\": 7712, \"AGE_65_UP\": 2709, \"MED_AGE\": 36.500000, \"MED_AGE_M\": 36.200000, \"MED_AGE_F\": 36.800000, \"HOUSEHOLDS\": 16944, \"AVE_HH_SZ\": 2.630000, \"HSEHLD_1_M\": 1643, \"HSEHLD_1_F\": 1932, \"MARHH_CHD\": 5422, \"MARHH_NO_C\": 5046, \"MHH_CHILD\": 273, \"FHH_CHILD\": 720, \"FAMILIES\": 12143, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 17552, \"VACANT\": 608, \"OWNER_OCC\": 12088, \"RENTER_OCC\": 4856 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.945663567566754, 37.758185942029485 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Santa Ana\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"69000\", \"CAPITAL\": \"N\", \"AREALAND\": 27.142000, \"AREAWATER\": 0.257000, \"POP_CL\": 8, \"POP2000\": 337977, \"WHITE\": 144425, \"BLACK\": 5749, \"AMERI_ES\": 4013, \"ASIAN\": 29778, \"HAWN_PI\": 1160, \"OTHER\": 137360, \"MULT_RACE\": 15492, \"HISPANIC\": 257097, \"MALES\": 175219, \"FEMALES\": 162758, \"AGE_UNDER5\": 34816, \"AGE_5_17\": 80691, \"AGE_18_21\": 24241, \"AGE_22_29\": 52733, \"AGE_30_39\": 59648, \"AGE_40_49\": 38368, \"AGE_50_64\": 28915, \"AGE_65_UP\": 18565, \"MED_AGE\": 26.500000, \"MED_AGE_M\": 26.300000, \"MED_AGE_F\": 26.800000, \"HOUSEHOLDS\": 73002, \"AVE_HH_SZ\": 4.550000, \"HSEHLD_1_M\": 3890, \"HSEHLD_1_F\": 5405, \"MARHH_CHD\": 30721, \"MARHH_NO_C\": 13484, \"MHH_CHILD\": 2590, \"FHH_CHILD\": 5534, \"FAMILIES\": 59784, \"AVE_FAM_SZ\": 4.720000, \"HSE_UNITS\": 74588, \"VACANT\": 1586, \"OWNER_OCC\": 36005, \"RENTER_OCC\": 36997 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.880347830298163, 33.740846190939983 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Santa Barbara\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"69070\", \"CAPITAL\": \"N\", \"AREALAND\": 18.976000, \"AREAWATER\": 22.434000, \"POP_CL\": 7, \"POP2000\": 92325, \"WHITE\": 68355, \"BLACK\": 1636, \"AMERI_ES\": 990, \"ASIAN\": 2554, \"HAWN_PI\": 126, \"OTHER\": 15110, \"MULT_RACE\": 3554, \"HISPANIC\": 32330, \"MALES\": 45454, \"FEMALES\": 46871, \"AGE_UNDER5\": 5194, \"AGE_5_17\": 13061, \"AGE_18_21\": 7627, \"AGE_22_29\": 13194, \"AGE_30_39\": 14875, \"AGE_40_49\": 13187, \"AGE_50_64\": 12460, \"AGE_65_UP\": 12727, \"MED_AGE\": 34.600000, \"MED_AGE_M\": 33.100000, \"MED_AGE_F\": 36.200000, \"HOUSEHOLDS\": 35605, \"AVE_HH_SZ\": 2.470000, \"HSEHLD_1_M\": 4786, \"HSEHLD_1_F\": 6920, \"MARHH_CHD\": 6219, \"MARHH_NO_C\": 7944, \"MHH_CHILD\": 632, \"FHH_CHILD\": 1803, \"FAMILIES\": 18954, \"AVE_FAM_SZ\": 3.170000, \"HSE_UNITS\": 37076, \"VACANT\": 1471, \"OWNER_OCC\": 14957, \"RENTER_OCC\": 20648 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -119.711901963970618, 34.426101616660532 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Santa Clara\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"69084\", \"CAPITAL\": \"N\", \"AREALAND\": 18.390000, \"AREAWATER\": 0.000000, \"POP_CL\": 8, \"POP2000\": 102361, \"WHITE\": 56903, \"BLACK\": 2341, \"AMERI_ES\": 542, \"ASIAN\": 29966, \"HAWN_PI\": 437, \"OTHER\": 7102, \"MULT_RACE\": 5070, \"HISPANIC\": 16364, \"MALES\": 52086, \"FEMALES\": 50275, \"AGE_UNDER5\": 6688, \"AGE_5_17\": 13707, \"AGE_18_21\": 6574, \"AGE_22_29\": 16382, \"AGE_30_39\": 20509, \"AGE_40_49\": 14658, \"AGE_50_64\": 12943, \"AGE_65_UP\": 10900, \"MED_AGE\": 33.400000, \"MED_AGE_M\": 32.700000, \"MED_AGE_F\": 34.300000, \"HOUSEHOLDS\": 38526, \"AVE_HH_SZ\": 2.580000, \"HSEHLD_1_M\": 4969, \"HSEHLD_1_F\": 5018, \"MARHH_CHD\": 8325, \"MARHH_NO_C\": 10308, \"MHH_CHILD\": 611, \"FHH_CHILD\": 1627, \"FAMILIES\": 24100, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 39630, \"VACANT\": 1104, \"OWNER_OCC\": 17763, \"RENTER_OCC\": 20763 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.962762788563353, 37.355272041429942 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Santa Clarita\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"69088\", \"CAPITAL\": \"N\", \"AREALAND\": 47.827000, \"AREAWATER\": 0.018000, \"POP_CL\": 8, \"POP2000\": 151088, \"WHITE\": 120157, \"BLACK\": 3122, \"AMERI_ES\": 886, \"ASIAN\": 7923, \"HAWN_PI\": 220, \"OTHER\": 12896, \"MULT_RACE\": 5884, \"HISPANIC\": 30968, \"MALES\": 74764, \"FEMALES\": 76324, \"AGE_UNDER5\": 11829, \"AGE_5_17\": 33945, \"AGE_18_21\": 7631, \"AGE_22_29\": 13999, \"AGE_30_39\": 26872, \"AGE_40_49\": 26342, \"AGE_50_64\": 19745, \"AGE_65_UP\": 10725, \"MED_AGE\": 33.400000, \"MED_AGE_M\": 32.400000, \"MED_AGE_F\": 34.300000, \"HOUSEHOLDS\": 50787, \"AVE_HH_SZ\": 2.950000, \"HSEHLD_1_M\": 4020, \"HSEHLD_1_F\": 5462, \"MARHH_CHD\": 18176, \"MARHH_NO_C\": 12811, \"MHH_CHILD\": 1292, \"FHH_CHILD\": 3101, \"FAMILIES\": 38222, \"AVE_FAM_SZ\": 3.380000, \"HSE_UNITS\": 52442, \"VACANT\": 1655, \"OWNER_OCC\": 37959, \"RENTER_OCC\": 12828 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.505015542106989, 34.416737037088815 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Santa Cruz\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"69112\", \"CAPITAL\": \"N\", \"AREALAND\": 12.533000, \"AREAWATER\": 3.074000, \"POP_CL\": 7, \"POP2000\": 54593, \"WHITE\": 42984, \"BLACK\": 945, \"AMERI_ES\": 469, \"ASIAN\": 2677, \"HAWN_PI\": 72, \"OTHER\": 4990, \"MULT_RACE\": 2456, \"HISPANIC\": 9491, \"MALES\": 27180, \"FEMALES\": 27413, \"AGE_UNDER5\": 2664, \"AGE_5_17\": 6799, \"AGE_18_21\": 7263, \"AGE_22_29\": 8809, \"AGE_30_39\": 8650, \"AGE_40_49\": 8665, \"AGE_50_64\": 7080, \"AGE_65_UP\": 4663, \"MED_AGE\": 31.700000, \"MED_AGE_M\": 31.500000, \"MED_AGE_F\": 32.000000, \"HOUSEHOLDS\": 20442, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 2811, \"HSEHLD_1_F\": 3175, \"MARHH_CHD\": 3460, \"MARHH_NO_C\": 4102, \"MHH_CHILD\": 476, \"FHH_CHILD\": 1205, \"FAMILIES\": 10401, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 21504, \"VACANT\": 1062, \"OWNER_OCC\": 9528, \"RENTER_OCC\": 10914 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.019915289618851, 36.972889587721184 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Santa Fe Springs\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"69154\", \"CAPITAL\": \"N\", \"AREALAND\": 8.754000, \"AREAWATER\": 0.107000, \"POP_CL\": 6, \"POP2000\": 17438, \"WHITE\": 8932, \"BLACK\": 679, \"AMERI_ES\": 250, \"ASIAN\": 688, \"HAWN_PI\": 35, \"OTHER\": 6102, \"MULT_RACE\": 752, \"HISPANIC\": 12447, \"MALES\": 8724, \"FEMALES\": 8714, \"AGE_UNDER5\": 1269, \"AGE_5_17\": 3798, \"AGE_18_21\": 918, \"AGE_22_29\": 1917, \"AGE_30_39\": 2692, \"AGE_40_49\": 2376, \"AGE_50_64\": 2234, \"AGE_65_UP\": 2234, \"MED_AGE\": 33.100000, \"MED_AGE_M\": 32.100000, \"MED_AGE_F\": 34.300000, \"HOUSEHOLDS\": 4834, \"AVE_HH_SZ\": 3.350000, \"HSEHLD_1_M\": 281, \"HSEHLD_1_F\": 605, \"MARHH_CHD\": 1322, \"MARHH_NO_C\": 1288, \"MHH_CHILD\": 113, \"FHH_CHILD\": 418, \"FAMILIES\": 3779, \"AVE_FAM_SZ\": 3.820000, \"HSE_UNITS\": 4933, \"VACANT\": 99, \"OWNER_OCC\": 3040, \"RENTER_OCC\": 1794 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.065996384408763, 33.937584740249967 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Santa Maria\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"69196\", \"CAPITAL\": \"N\", \"AREALAND\": 19.327000, \"AREAWATER\": 0.442000, \"POP_CL\": 7, \"POP2000\": 77423, \"WHITE\": 44962, \"BLACK\": 1449, \"AMERI_ES\": 1360, \"ASIAN\": 3673, \"HAWN_PI\": 138, \"OTHER\": 21691, \"MULT_RACE\": 4150, \"HISPANIC\": 46196, \"MALES\": 39312, \"FEMALES\": 38111, \"AGE_UNDER5\": 7000, \"AGE_5_17\": 17470, \"AGE_18_21\": 5299, \"AGE_22_29\": 9951, \"AGE_30_39\": 11541, \"AGE_40_49\": 9185, \"AGE_50_64\": 8201, \"AGE_65_UP\": 8776, \"MED_AGE\": 29.200000, \"MED_AGE_M\": 28.100000, \"MED_AGE_F\": 30.400000, \"HOUSEHOLDS\": 22146, \"AVE_HH_SZ\": 3.400000, \"HSEHLD_1_M\": 1722, \"HSEHLD_1_F\": 2712, \"MARHH_CHD\": 6904, \"MARHH_NO_C\": 5595, \"MHH_CHILD\": 634, \"FHH_CHILD\": 1834, \"FAMILIES\": 16654, \"AVE_FAM_SZ\": 3.850000, \"HSE_UNITS\": 22847, \"VACANT\": 701, \"OWNER_OCC\": 12389, \"RENTER_OCC\": 9757 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -120.430263575275561, 34.951787814439747 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Santa Monica\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"70000\", \"CAPITAL\": \"N\", \"AREALAND\": 8.261000, \"AREAWATER\": 7.647000, \"POP_CL\": 7, \"POP2000\": 84084, \"WHITE\": 65832, \"BLACK\": 3176, \"AMERI_ES\": 396, \"ASIAN\": 6100, \"HAWN_PI\": 86, \"OTHER\": 5019, \"MULT_RACE\": 3475, \"HISPANIC\": 11304, \"MALES\": 40517, \"FEMALES\": 43567, \"AGE_UNDER5\": 3448, \"AGE_5_17\": 8866, \"AGE_18_21\": 2310, \"AGE_22_29\": 10487, \"AGE_30_39\": 18013, \"AGE_40_49\": 15087, \"AGE_50_64\": 13795, \"AGE_65_UP\": 12078, \"MED_AGE\": 39.300000, \"MED_AGE_M\": 38.400000, \"MED_AGE_F\": 40.300000, \"HOUSEHOLDS\": 44497, \"AVE_HH_SZ\": 1.830000, \"HSEHLD_1_M\": 10475, \"HSEHLD_1_F\": 12311, \"MARHH_CHD\": 4842, \"MARHH_NO_C\": 7374, \"MHH_CHILD\": 480, \"FHH_CHILD\": 1723, \"FAMILIES\": 16783, \"AVE_FAM_SZ\": 2.800000, \"HSE_UNITS\": 47863, \"VACANT\": 3366, \"OWNER_OCC\": 13277, \"RENTER_OCC\": 31220 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.479960310381372, 34.022230292265704 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Santa Paula\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"70042\", \"CAPITAL\": \"N\", \"AREALAND\": 4.602000, \"AREAWATER\": 0.004000, \"POP_CL\": 6, \"POP2000\": 28598, \"WHITE\": 15795, \"BLACK\": 118, \"AMERI_ES\": 404, \"ASIAN\": 200, \"HAWN_PI\": 54, \"OTHER\": 10688, \"MULT_RACE\": 1339, \"HISPANIC\": 20360, \"MALES\": 14562, \"FEMALES\": 14036, \"AGE_UNDER5\": 2529, \"AGE_5_17\": 6461, \"AGE_18_21\": 1784, \"AGE_22_29\": 3680, \"AGE_30_39\": 4259, \"AGE_40_49\": 3532, \"AGE_50_64\": 3305, \"AGE_65_UP\": 3048, \"MED_AGE\": 29.600000, \"MED_AGE_M\": 28.600000, \"MED_AGE_F\": 30.800000, \"HOUSEHOLDS\": 8136, \"AVE_HH_SZ\": 3.490000, \"HSEHLD_1_M\": 481, \"HSEHLD_1_F\": 915, \"MARHH_CHD\": 2705, \"MARHH_NO_C\": 2101, \"MHH_CHILD\": 269, \"FHH_CHILD\": 617, \"FAMILIES\": 6433, \"AVE_FAM_SZ\": 3.860000, \"HSE_UNITS\": 8341, \"VACANT\": 205, \"OWNER_OCC\": 4693, \"RENTER_OCC\": 3443 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -119.066651372584232, 34.356016829375832 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Santa Rosa\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"70098\", \"CAPITAL\": \"N\", \"AREALAND\": 40.125000, \"AREAWATER\": 0.247000, \"POP_CL\": 8, \"POP2000\": 147595, \"WHITE\": 114527, \"BLACK\": 3177, \"AMERI_ES\": 2099, \"ASIAN\": 5675, \"HAWN_PI\": 382, \"OTHER\": 15180, \"MULT_RACE\": 6555, \"HISPANIC\": 28318, \"MALES\": 72078, \"FEMALES\": 75517, \"AGE_UNDER5\": 9606, \"AGE_5_17\": 26199, \"AGE_18_21\": 8132, \"AGE_22_29\": 16240, \"AGE_30_39\": 22402, \"AGE_40_49\": 22807, \"AGE_50_64\": 21633, \"AGE_65_UP\": 20576, \"MED_AGE\": 36.200000, \"MED_AGE_M\": 34.200000, \"MED_AGE_F\": 38.300000, \"HOUSEHOLDS\": 56036, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 5635, \"HSEHLD_1_F\": 9964, \"MARHH_CHD\": 12114, \"MARHH_NO_C\": 14151, \"MHH_CHILD\": 1525, \"FHH_CHILD\": 3700, \"FAMILIES\": 35117, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 57578, \"VACANT\": 1542, \"OWNER_OCC\": 32798, \"RENTER_OCC\": 23238 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.695834663467721, 38.449755972758425 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Santee\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"70224\", \"CAPITAL\": \"N\", \"AREALAND\": 16.059000, \"AREAWATER\": 0.220000, \"POP_CL\": 7, \"POP2000\": 52975, \"WHITE\": 45929, \"BLACK\": 783, \"AMERI_ES\": 429, \"ASIAN\": 1350, \"HAWN_PI\": 216, \"OTHER\": 2134, \"MULT_RACE\": 2134, \"HISPANIC\": 6016, \"MALES\": 25559, \"FEMALES\": 27416, \"AGE_UNDER5\": 3561, \"AGE_5_17\": 11403, \"AGE_18_21\": 2716, \"AGE_22_29\": 4997, \"AGE_30_39\": 9090, \"AGE_40_49\": 9231, \"AGE_50_64\": 7259, \"AGE_65_UP\": 4718, \"MED_AGE\": 34.800000, \"MED_AGE_M\": 33.700000, \"MED_AGE_F\": 35.600000, \"HOUSEHOLDS\": 18470, \"AVE_HH_SZ\": 2.810000, \"HSEHLD_1_M\": 1316, \"HSEHLD_1_F\": 2042, \"MARHH_CHD\": 5529, \"MARHH_NO_C\": 5131, \"MHH_CHILD\": 554, \"FHH_CHILD\": 1466, \"FAMILIES\": 14018, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 18833, \"VACANT\": 363, \"OWNER_OCC\": 13120, \"RENTER_OCC\": 5350 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -116.987560393468428, 32.848318965173782 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Saratoga\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"70280\", \"CAPITAL\": \"N\", \"AREALAND\": 12.105000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 29843, \"WHITE\": 20111, \"BLACK\": 115, \"AMERI_ES\": 46, \"ASIAN\": 8679, \"HAWN_PI\": 25, \"OTHER\": 171, \"MULT_RACE\": 696, \"HISPANIC\": 936, \"MALES\": 14659, \"FEMALES\": 15184, \"AGE_UNDER5\": 1597, \"AGE_5_17\": 6167, \"AGE_18_21\": 782, \"AGE_22_29\": 1054, \"AGE_30_39\": 3401, \"AGE_40_49\": 5811, \"AGE_50_64\": 6172, \"AGE_65_UP\": 4859, \"MED_AGE\": 43.200000, \"MED_AGE_M\": 42.800000, \"MED_AGE_F\": 43.500000, \"HOUSEHOLDS\": 10450, \"AVE_HH_SZ\": 2.830000, \"HSEHLD_1_M\": 515, \"HSEHLD_1_F\": 975, \"MARHH_CHD\": 3735, \"MARHH_NO_C\": 4100, \"MHH_CHILD\": 97, \"FHH_CHILD\": 211, \"FAMILIES\": 8602, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 10649, \"VACANT\": 199, \"OWNER_OCC\": 9406, \"RENTER_OCC\": 1044 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.013098465730053, 37.27328852290325 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Scotts Valley\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"70588\", \"CAPITAL\": \"N\", \"AREALAND\": 4.602000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11385, \"WHITE\": 10090, \"BLACK\": 55, \"AMERI_ES\": 46, \"ASIAN\": 526, \"HAWN_PI\": 21, \"OTHER\": 245, \"MULT_RACE\": 402, \"HISPANIC\": 729, \"MALES\": 5544, \"FEMALES\": 5841, \"AGE_UNDER5\": 774, \"AGE_5_17\": 2165, \"AGE_18_21\": 522, \"AGE_22_29\": 781, \"AGE_30_39\": 1831, \"AGE_40_49\": 2053, \"AGE_50_64\": 1686, \"AGE_65_UP\": 1573, \"MED_AGE\": 38.300000, \"MED_AGE_M\": 37.400000, \"MED_AGE_F\": 39.100000, \"HOUSEHOLDS\": 4273, \"AVE_HH_SZ\": 2.560000, \"HSEHLD_1_M\": 374, \"HSEHLD_1_F\": 627, \"MARHH_CHD\": 1244, \"MARHH_NO_C\": 1249, \"MHH_CHILD\": 84, \"FHH_CHILD\": 227, \"FAMILIES\": 2968, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 4423, \"VACANT\": 150, \"OWNER_OCC\": 3199, \"RENTER_OCC\": 1074 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.006897745578257, 37.052218450006123 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Seal Beach\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"70686\", \"CAPITAL\": \"N\", \"AREALAND\": 11.506000, \"AREAWATER\": 1.715000, \"POP_CL\": 6, \"POP2000\": 24157, \"WHITE\": 21477, \"BLACK\": 347, \"AMERI_ES\": 73, \"ASIAN\": 1386, \"HAWN_PI\": 43, \"OTHER\": 309, \"MULT_RACE\": 522, \"HISPANIC\": 1554, \"MALES\": 10612, \"FEMALES\": 13545, \"AGE_UNDER5\": 776, \"AGE_5_17\": 2441, \"AGE_18_21\": 522, \"AGE_22_29\": 1627, \"AGE_30_39\": 2564, \"AGE_40_49\": 2877, \"AGE_50_64\": 4282, \"AGE_65_UP\": 9068, \"MED_AGE\": 54.100000, \"MED_AGE_M\": 49.000000, \"MED_AGE_F\": 59.100000, \"HOUSEHOLDS\": 13048, \"AVE_HH_SZ\": 1.830000, \"HSEHLD_1_M\": 1912, \"HSEHLD_1_F\": 4455, \"MARHH_CHD\": 1426, \"MARHH_NO_C\": 3555, \"MHH_CHILD\": 97, \"FHH_CHILD\": 275, \"FAMILIES\": 5884, \"AVE_FAM_SZ\": 2.650000, \"HSE_UNITS\": 14267, \"VACANT\": 1219, \"OWNER_OCC\": 9975, \"RENTER_OCC\": 3073 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.081244527952421, 33.75942464851348 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Seaside\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"70742\", \"CAPITAL\": \"N\", \"AREALAND\": 8.826000, \"AREAWATER\": 0.132000, \"POP_CL\": 6, \"POP2000\": 31696, \"WHITE\": 15599, \"BLACK\": 3997, \"AMERI_ES\": 331, \"ASIAN\": 3197, \"HAWN_PI\": 410, \"OTHER\": 5834, \"MULT_RACE\": 2328, \"HISPANIC\": 10929, \"MALES\": 16136, \"FEMALES\": 15560, \"AGE_UNDER5\": 3059, \"AGE_5_17\": 6516, \"AGE_18_21\": 1924, \"AGE_22_29\": 4673, \"AGE_30_39\": 5662, \"AGE_40_49\": 3979, \"AGE_50_64\": 3199, \"AGE_65_UP\": 2684, \"MED_AGE\": 29.500000, \"MED_AGE_M\": 28.900000, \"MED_AGE_F\": 30.200000, \"HOUSEHOLDS\": 9833, \"AVE_HH_SZ\": 3.210000, \"HSEHLD_1_M\": 794, \"HSEHLD_1_F\": 986, \"MARHH_CHD\": 3088, \"MARHH_NO_C\": 2298, \"MHH_CHILD\": 347, \"FHH_CHILD\": 716, \"FAMILIES\": 7399, \"AVE_FAM_SZ\": 3.590000, \"HSE_UNITS\": 11005, \"VACANT\": 1172, \"OWNER_OCC\": 4323, \"RENTER_OCC\": 5510 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.828172251447938, 36.616579041886197 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Selma\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"70882\", \"CAPITAL\": \"N\", \"AREALAND\": 4.344000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 19444, \"WHITE\": 8536, \"BLACK\": 146, \"AMERI_ES\": 304, \"ASIAN\": 619, \"HAWN_PI\": 6, \"OTHER\": 8962, \"MULT_RACE\": 871, \"HISPANIC\": 13952, \"MALES\": 9744, \"FEMALES\": 9700, \"AGE_UNDER5\": 1805, \"AGE_5_17\": 4622, \"AGE_18_21\": 1317, \"AGE_22_29\": 2467, \"AGE_30_39\": 2861, \"AGE_40_49\": 2266, \"AGE_50_64\": 2100, \"AGE_65_UP\": 2006, \"MED_AGE\": 28.400000, \"MED_AGE_M\": 27.100000, \"MED_AGE_F\": 29.800000, \"HOUSEHOLDS\": 5596, \"AVE_HH_SZ\": 3.450000, \"HSEHLD_1_M\": 320, \"HSEHLD_1_F\": 556, \"MARHH_CHD\": 1797, \"MARHH_NO_C\": 1409, \"MHH_CHILD\": 198, \"FHH_CHILD\": 573, \"FAMILIES\": 4541, \"AVE_FAM_SZ\": 3.760000, \"HSE_UNITS\": 5815, \"VACANT\": 219, \"OWNER_OCC\": 3476, \"RENTER_OCC\": 2120 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -119.610219971878038, 36.573007494562233 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Shafter\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"71106\", \"CAPITAL\": \"N\", \"AREALAND\": 17.977000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12736, \"WHITE\": 5670, \"BLACK\": 204, \"AMERI_ES\": 159, \"ASIAN\": 40, \"HAWN_PI\": 18, \"OTHER\": 6159, \"MULT_RACE\": 486, \"HISPANIC\": 8667, \"MALES\": 6501, \"FEMALES\": 6235, \"AGE_UNDER5\": 1303, \"AGE_5_17\": 3364, \"AGE_18_21\": 882, \"AGE_22_29\": 1556, \"AGE_30_39\": 1814, \"AGE_40_49\": 1571, \"AGE_50_64\": 1218, \"AGE_65_UP\": 1028, \"MED_AGE\": 26.100000, \"MED_AGE_M\": 26.000000, \"MED_AGE_F\": 26.300000, \"HOUSEHOLDS\": 3293, \"AVE_HH_SZ\": 3.670000, \"HSEHLD_1_M\": 155, \"HSEHLD_1_F\": 284, \"MARHH_CHD\": 1244, \"MARHH_NO_C\": 789, \"MHH_CHILD\": 123, \"FHH_CHILD\": 365, \"FAMILIES\": 2760, \"AVE_FAM_SZ\": 3.980000, \"HSE_UNITS\": 3624, \"VACANT\": 331, \"OWNER_OCC\": 2001, \"RENTER_OCC\": 1292 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -119.245855789445486, 35.496146948600462 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sierra Madre\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"71806\", \"CAPITAL\": \"N\", \"AREALAND\": 3.003000, \"AREAWATER\": 0.005000, \"POP_CL\": 6, \"POP2000\": 10578, \"WHITE\": 9077, \"BLACK\": 121, \"AMERI_ES\": 37, \"ASIAN\": 592, \"HAWN_PI\": 11, \"OTHER\": 319, \"MULT_RACE\": 421, \"HISPANIC\": 1054, \"MALES\": 4996, \"FEMALES\": 5582, \"AGE_UNDER5\": 556, \"AGE_5_17\": 1443, \"AGE_18_21\": 301, \"AGE_22_29\": 770, \"AGE_30_39\": 1693, \"AGE_40_49\": 2042, \"AGE_50_64\": 2108, \"AGE_65_UP\": 1665, \"MED_AGE\": 42.600000, \"MED_AGE_M\": 41.400000, \"MED_AGE_F\": 43.600000, \"HOUSEHOLDS\": 4756, \"AVE_HH_SZ\": 2.200000, \"HSEHLD_1_M\": 650, \"HSEHLD_1_F\": 1016, \"MARHH_CHD\": 891, \"MARHH_NO_C\": 1363, \"MHH_CHILD\": 48, \"FHH_CHILD\": 158, \"FAMILIES\": 2740, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 4923, \"VACANT\": 167, \"OWNER_OCC\": 2976, \"RENTER_OCC\": 1780 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.049737779586252, 34.164948041063553 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Simi Valley\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"72016\", \"CAPITAL\": \"N\", \"AREALAND\": 39.182000, \"AREAWATER\": 0.253000, \"POP_CL\": 8, \"POP2000\": 111351, \"WHITE\": 90561, \"BLACK\": 1401, \"AMERI_ES\": 780, \"ASIAN\": 7052, \"HAWN_PI\": 154, \"OTHER\": 7235, \"MULT_RACE\": 4168, \"HISPANIC\": 18729, \"MALES\": 55098, \"FEMALES\": 56253, \"AGE_UNDER5\": 8163, \"AGE_5_17\": 23516, \"AGE_18_21\": 5281, \"AGE_22_29\": 10301, \"AGE_30_39\": 19426, \"AGE_40_49\": 19128, \"AGE_50_64\": 17032, \"AGE_65_UP\": 8504, \"MED_AGE\": 34.700000, \"MED_AGE_M\": 34.100000, \"MED_AGE_F\": 35.300000, \"HOUSEHOLDS\": 36421, \"AVE_HH_SZ\": 3.040000, \"HSEHLD_1_M\": 2293, \"HSEHLD_1_F\": 3045, \"MARHH_CHD\": 12336, \"MARHH_NO_C\": 10922, \"MHH_CHILD\": 1003, \"FHH_CHILD\": 2142, \"FAMILIES\": 28952, \"AVE_FAM_SZ\": 3.330000, \"HSE_UNITS\": 37272, \"VACANT\": 851, \"OWNER_OCC\": 28270, \"RENTER_OCC\": 8151 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.737878070804285, 34.271272005516067 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Solana Beach\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"72506\", \"CAPITAL\": \"N\", \"AREALAND\": 3.528000, \"AREAWATER\": 0.083000, \"POP_CL\": 6, \"POP2000\": 12979, \"WHITE\": 11293, \"BLACK\": 65, \"AMERI_ES\": 54, \"ASIAN\": 449, \"HAWN_PI\": 18, \"OTHER\": 725, \"MULT_RACE\": 375, \"HISPANIC\": 1922, \"MALES\": 6395, \"FEMALES\": 6584, \"AGE_UNDER5\": 594, \"AGE_5_17\": 1731, \"AGE_18_21\": 404, \"AGE_22_29\": 1376, \"AGE_30_39\": 2042, \"AGE_40_49\": 1990, \"AGE_50_64\": 2603, \"AGE_65_UP\": 2239, \"MED_AGE\": 41.600000, \"MED_AGE_M\": 40.000000, \"MED_AGE_F\": 43.200000, \"HOUSEHOLDS\": 5754, \"AVE_HH_SZ\": 2.250000, \"HSEHLD_1_M\": 765, \"HSEHLD_1_F\": 1049, \"MARHH_CHD\": 921, \"MARHH_NO_C\": 1802, \"MHH_CHILD\": 75, \"FHH_CHILD\": 202, \"FAMILIES\": 3280, \"AVE_FAM_SZ\": 2.830000, \"HSE_UNITS\": 6456, \"VACANT\": 702, \"OWNER_OCC\": 3615, \"RENTER_OCC\": 2139 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.259600413092201, 32.995486816522963 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Soledad\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"72520\", \"CAPITAL\": \"N\", \"AREALAND\": 4.203000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11263, \"WHITE\": 3593, \"BLACK\": 129, \"AMERI_ES\": 195, \"ASIAN\": 265, \"HAWN_PI\": 9, \"OTHER\": 6596, \"MULT_RACE\": 476, \"HISPANIC\": 9779, \"MALES\": 5847, \"FEMALES\": 5416, \"AGE_UNDER5\": 1182, \"AGE_5_17\": 2952, \"AGE_18_21\": 846, \"AGE_22_29\": 1622, \"AGE_30_39\": 1843, \"AGE_40_49\": 1201, \"AGE_50_64\": 947, \"AGE_65_UP\": 670, \"MED_AGE\": 25.200000, \"MED_AGE_M\": 24.900000, \"MED_AGE_F\": 25.600000, \"HOUSEHOLDS\": 2472, \"AVE_HH_SZ\": 4.540000, \"HSEHLD_1_M\": 71, \"HSEHLD_1_F\": 107, \"MARHH_CHD\": 1213, \"MARHH_NO_C\": 515, \"MHH_CHILD\": 81, \"FHH_CHILD\": 195, \"FAMILIES\": 2241, \"AVE_FAM_SZ\": 4.580000, \"HSE_UNITS\": 2534, \"VACANT\": 62, \"OWNER_OCC\": 1535, \"RENTER_OCC\": 937 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.325063375598702, 36.433823936230425 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"South El Monte\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"72996\", \"CAPITAL\": \"N\", \"AREALAND\": 2.884000, \"AREAWATER\": 0.004000, \"POP_CL\": 6, \"POP2000\": 21144, \"WHITE\": 8586, \"BLACK\": 80, \"AMERI_ES\": 332, \"ASIAN\": 1783, \"HAWN_PI\": 39, \"OTHER\": 9300, \"MULT_RACE\": 1024, \"HISPANIC\": 18190, \"MALES\": 10856, \"FEMALES\": 10288, \"AGE_UNDER5\": 2017, \"AGE_5_17\": 5070, \"AGE_18_21\": 1524, \"AGE_22_29\": 3228, \"AGE_30_39\": 3272, \"AGE_40_49\": 2405, \"AGE_50_64\": 2110, \"AGE_65_UP\": 1518, \"MED_AGE\": 26.900000, \"MED_AGE_M\": 26.300000, \"MED_AGE_F\": 27.500000, \"HOUSEHOLDS\": 4620, \"AVE_HH_SZ\": 4.570000, \"HSEHLD_1_M\": 170, \"HSEHLD_1_F\": 201, \"MARHH_CHD\": 1788, \"MARHH_NO_C\": 1030, \"MHH_CHILD\": 195, \"FHH_CHILD\": 419, \"FAMILIES\": 4088, \"AVE_FAM_SZ\": 4.610000, \"HSE_UNITS\": 4724, \"VACANT\": 104, \"OWNER_OCC\": 2264, \"RENTER_OCC\": 2356 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.047304210765091, 34.049051203493036 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"South Gate\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"73080\", \"CAPITAL\": \"N\", \"AREALAND\": 7.365000, \"AREAWATER\": 0.118000, \"POP_CL\": 7, \"POP2000\": 96375, \"WHITE\": 40136, \"BLACK\": 923, \"AMERI_ES\": 901, \"ASIAN\": 804, \"HAWN_PI\": 114, \"OTHER\": 49112, \"MULT_RACE\": 4385, \"HISPANIC\": 88669, \"MALES\": 47767, \"FEMALES\": 48608, \"AGE_UNDER5\": 9692, \"AGE_5_17\": 24586, \"AGE_18_21\": 6725, \"AGE_22_29\": 14132, \"AGE_30_39\": 15350, \"AGE_40_49\": 11522, \"AGE_50_64\": 9119, \"AGE_65_UP\": 5249, \"MED_AGE\": 26.000000, \"MED_AGE_M\": 25.300000, \"MED_AGE_F\": 26.800000, \"HOUSEHOLDS\": 23213, \"AVE_HH_SZ\": 4.150000, \"HSEHLD_1_M\": 1085, \"HSEHLD_1_F\": 1329, \"MARHH_CHD\": 9853, \"MARHH_NO_C\": 3990, \"MHH_CHILD\": 1043, \"FHH_CHILD\": 2624, \"FAMILIES\": 20063, \"AVE_FAM_SZ\": 4.370000, \"HSE_UNITS\": 24269, \"VACANT\": 1056, \"OWNER_OCC\": 10879, \"RENTER_OCC\": 12334 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.193682681554861, 33.944414194412211 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"South Lake Tahoe\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"73108\", \"CAPITAL\": \"N\", \"AREALAND\": 10.057000, \"AREAWATER\": 6.438000, \"POP_CL\": 6, \"POP2000\": 23609, \"WHITE\": 17878, \"BLACK\": 178, \"AMERI_ES\": 228, \"ASIAN\": 1419, \"HAWN_PI\": 40, \"OTHER\": 2946, \"MULT_RACE\": 920, \"HISPANIC\": 6294, \"MALES\": 12203, \"FEMALES\": 11406, \"AGE_UNDER5\": 1564, \"AGE_5_17\": 4376, \"AGE_18_21\": 1422, \"AGE_22_29\": 3146, \"AGE_30_39\": 3852, \"AGE_40_49\": 4002, \"AGE_50_64\": 3224, \"AGE_65_UP\": 2023, \"MED_AGE\": 33.400000, \"MED_AGE_M\": 32.500000, \"MED_AGE_F\": 34.400000, \"HOUSEHOLDS\": 9410, \"AVE_HH_SZ\": 2.500000, \"HSEHLD_1_M\": 1431, \"HSEHLD_1_F\": 1310, \"MARHH_CHD\": 1842, \"MARHH_NO_C\": 1859, \"MHH_CHILD\": 313, \"FHH_CHILD\": 750, \"FAMILIES\": 5389, \"AVE_FAM_SZ\": 3.150000, \"HSE_UNITS\": 14005, \"VACANT\": 4595, \"OWNER_OCC\": 4056, \"RENTER_OCC\": 5354 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -119.980977252667174, 38.92962525578691 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"South Pasadena\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"73220\", \"CAPITAL\": \"N\", \"AREALAND\": 3.439000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 24292, \"WHITE\": 14653, \"BLACK\": 738, \"AMERI_ES\": 83, \"ASIAN\": 6456, \"HAWN_PI\": 20, \"OTHER\": 1257, \"MULT_RACE\": 1085, \"HISPANIC\": 3903, \"MALES\": 11272, \"FEMALES\": 13020, \"AGE_UNDER5\": 1162, \"AGE_5_17\": 4326, \"AGE_18_21\": 832, \"AGE_22_29\": 2713, \"AGE_30_39\": 4297, \"AGE_40_49\": 4322, \"AGE_50_64\": 3868, \"AGE_65_UP\": 2772, \"MED_AGE\": 37.400000, \"MED_AGE_M\": 36.100000, \"MED_AGE_F\": 38.400000, \"HOUSEHOLDS\": 10477, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 1430, \"HSEHLD_1_F\": 2231, \"MARHH_CHD\": 2211, \"MARHH_NO_C\": 2233, \"MHH_CHILD\": 173, \"FHH_CHILD\": 698, \"FAMILIES\": 6003, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 10850, \"VACANT\": 373, \"OWNER_OCC\": 4625, \"RENTER_OCC\": 5852 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.154562681270207, 34.113106612309458 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"South San Francisco\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"73262\", \"CAPITAL\": \"N\", \"AREALAND\": 9.020000, \"AREAWATER\": 20.715000, \"POP_CL\": 7, \"POP2000\": 60552, \"WHITE\": 26671, \"BLACK\": 1707, \"AMERI_ES\": 362, \"ASIAN\": 17510, \"HAWN_PI\": 944, \"OTHER\": 9091, \"MULT_RACE\": 4267, \"HISPANIC\": 19282, \"MALES\": 30009, \"FEMALES\": 30543, \"AGE_UNDER5\": 3914, \"AGE_5_17\": 10752, \"AGE_18_21\": 3166, \"AGE_22_29\": 6857, \"AGE_30_39\": 9963, \"AGE_40_49\": 9188, \"AGE_50_64\": 9080, \"AGE_65_UP\": 7632, \"MED_AGE\": 35.700000, \"MED_AGE_M\": 34.200000, \"MED_AGE_F\": 37.200000, \"HOUSEHOLDS\": 19677, \"AVE_HH_SZ\": 3.050000, \"HSEHLD_1_M\": 1648, \"HSEHLD_1_F\": 2275, \"MARHH_CHD\": 5446, \"MARHH_NO_C\": 5531, \"MHH_CHILD\": 390, \"FHH_CHILD\": 1099, \"FAMILIES\": 14650, \"AVE_FAM_SZ\": 3.510000, \"HSE_UNITS\": 20138, \"VACANT\": 461, \"OWNER_OCC\": 12303, \"RENTER_OCC\": 7374 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.417908848779732, 37.656986299465125 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"South San Jose Hills\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"73290\", \"CAPITAL\": \"N\", \"AREALAND\": 1.457000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 20218, \"WHITE\": 7837, \"BLACK\": 376, \"AMERI_ES\": 312, \"ASIAN\": 1322, \"HAWN_PI\": 71, \"OTHER\": 9371, \"MULT_RACE\": 929, \"HISPANIC\": 16868, \"MALES\": 10119, \"FEMALES\": 10099, \"AGE_UNDER5\": 1826, \"AGE_5_17\": 5165, \"AGE_18_21\": 1441, \"AGE_22_29\": 2673, \"AGE_30_39\": 3167, \"AGE_40_49\": 2478, \"AGE_50_64\": 2270, \"AGE_65_UP\": 1198, \"MED_AGE\": 26.900000, \"MED_AGE_M\": 26.600000, \"MED_AGE_F\": 27.200000, \"HOUSEHOLDS\": 3984, \"AVE_HH_SZ\": 5.070000, \"HSEHLD_1_M\": 93, \"HSEHLD_1_F\": 173, \"MARHH_CHD\": 1711, \"MARHH_NO_C\": 974, \"MHH_CHILD\": 147, \"FHH_CHILD\": 261, \"FAMILIES\": 3606, \"AVE_FAM_SZ\": 4.950000, \"HSE_UNITS\": 4059, \"VACANT\": 75, \"OWNER_OCC\": 3276, \"RENTER_OCC\": 708 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.903755445530535, 34.011393081476982 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"South Whittier\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"73430\", \"CAPITAL\": \"N\", \"AREALAND\": 5.381000, \"AREAWATER\": 0.000000, \"POP_CL\": 7, \"POP2000\": 55193, \"WHITE\": 28958, \"BLACK\": 812, \"AMERI_ES\": 678, \"ASIAN\": 1669, \"HAWN_PI\": 142, \"OTHER\": 20074, \"MULT_RACE\": 2860, \"HISPANIC\": 38256, \"MALES\": 27710, \"FEMALES\": 27483, \"AGE_UNDER5\": 4872, \"AGE_5_17\": 13372, \"AGE_18_21\": 3381, \"AGE_22_29\": 6602, \"AGE_30_39\": 9128, \"AGE_40_49\": 7390, \"AGE_50_64\": 5919, \"AGE_65_UP\": 4529, \"MED_AGE\": 29.200000, \"MED_AGE_M\": 28.400000, \"MED_AGE_F\": 30.100000, \"HOUSEHOLDS\": 14673, \"AVE_HH_SZ\": 3.740000, \"HSEHLD_1_M\": 818, \"HSEHLD_1_F\": 973, \"MARHH_CHD\": 5263, \"MARHH_NO_C\": 3621, \"MHH_CHILD\": 523, \"FHH_CHILD\": 1254, \"FAMILIES\": 12273, \"AVE_FAM_SZ\": 3.990000, \"HSE_UNITS\": 15008, \"VACANT\": 335, \"OWNER_OCC\": 9495, \"RENTER_OCC\": 5178 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.029658474066437, 33.934863410344654 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"South Yuba City\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"73472\", \"CAPITAL\": \"N\", \"AREALAND\": 3.237000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12651, \"WHITE\": 8090, \"BLACK\": 212, \"AMERI_ES\": 115, \"ASIAN\": 2904, \"HAWN_PI\": 29, \"OTHER\": 778, \"MULT_RACE\": 523, \"HISPANIC\": 1501, \"MALES\": 6227, \"FEMALES\": 6424, \"AGE_UNDER5\": 918, \"AGE_5_17\": 2836, \"AGE_18_21\": 545, \"AGE_22_29\": 1082, \"AGE_30_39\": 1936, \"AGE_40_49\": 1853, \"AGE_50_64\": 2120, \"AGE_65_UP\": 1361, \"MED_AGE\": 35.300000, \"MED_AGE_M\": 34.900000, \"MED_AGE_F\": 35.600000, \"HOUSEHOLDS\": 4026, \"AVE_HH_SZ\": 3.130000, \"HSEHLD_1_M\": 219, \"HSEHLD_1_F\": 317, \"MARHH_CHD\": 1394, \"MARHH_NO_C\": 1447, \"MHH_CHILD\": 91, \"FHH_CHILD\": 210, \"FAMILIES\": 3345, \"AVE_FAM_SZ\": 3.450000, \"HSE_UNITS\": 4144, \"VACANT\": 118, \"OWNER_OCC\": 3347, \"RENTER_OCC\": 679 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.632706535948202, 39.112960075179274 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Spring Valley\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"73696\", \"CAPITAL\": \"N\", \"AREALAND\": 7.235000, \"AREAWATER\": 0.209000, \"POP_CL\": 6, \"POP2000\": 26663, \"WHITE\": 18153, \"BLACK\": 2730, \"AMERI_ES\": 204, \"ASIAN\": 1276, \"HAWN_PI\": 139, \"OTHER\": 2520, \"MULT_RACE\": 1641, \"HISPANIC\": 5726, \"MALES\": 12977, \"FEMALES\": 13686, \"AGE_UNDER5\": 2064, \"AGE_5_17\": 5699, \"AGE_18_21\": 1368, \"AGE_22_29\": 2907, \"AGE_30_39\": 4378, \"AGE_40_49\": 4107, \"AGE_50_64\": 3594, \"AGE_65_UP\": 2546, \"MED_AGE\": 33.100000, \"MED_AGE_M\": 32.100000, \"MED_AGE_F\": 34.000000, \"HOUSEHOLDS\": 9129, \"AVE_HH_SZ\": 2.900000, \"HSEHLD_1_M\": 699, \"HSEHLD_1_F\": 899, \"MARHH_CHD\": 2553, \"MARHH_NO_C\": 2447, \"MHH_CHILD\": 269, \"FHH_CHILD\": 873, \"FAMILIES\": 6900, \"AVE_FAM_SZ\": 3.270000, \"HSE_UNITS\": 9291, \"VACANT\": 162, \"OWNER_OCC\": 5867, \"RENTER_OCC\": 3262 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -116.980690957493351, 32.734399265174716 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Stanford\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"73906\", \"CAPITAL\": \"N\", \"AREALAND\": 2.745000, \"AREAWATER\": 0.036000, \"POP_CL\": 6, \"POP2000\": 13315, \"WHITE\": 8042, \"BLACK\": 653, \"AMERI_ES\": 96, \"ASIAN\": 3405, \"HAWN_PI\": 21, \"OTHER\": 486, \"MULT_RACE\": 612, \"HISPANIC\": 1193, \"MALES\": 7206, \"FEMALES\": 6109, \"AGE_UNDER5\": 376, \"AGE_5_17\": 583, \"AGE_18_21\": 5597, \"AGE_22_29\": 4130, \"AGE_30_39\": 1005, \"AGE_40_49\": 457, \"AGE_50_64\": 579, \"AGE_65_UP\": 588, \"MED_AGE\": 22.100000, \"MED_AGE_M\": 22.500000, \"MED_AGE_F\": 21.700000, \"HOUSEHOLDS\": 3207, \"AVE_HH_SZ\": 2.220000, \"HSEHLD_1_M\": 460, \"HSEHLD_1_F\": 277, \"MARHH_CHD\": 511, \"MARHH_NO_C\": 731, \"MHH_CHILD\": 22, \"FHH_CHILD\": 42, \"FAMILIES\": 1331, \"AVE_FAM_SZ\": 2.730000, \"HSE_UNITS\": 3315, \"VACANT\": 108, \"OWNER_OCC\": 815, \"RENTER_OCC\": 2392 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.15856662647964, 37.423489715434208 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Stanton\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"73962\", \"CAPITAL\": \"N\", \"AREALAND\": 3.124000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 37403, \"WHITE\": 18541, \"BLACK\": 848, \"AMERI_ES\": 397, \"ASIAN\": 5780, \"HAWN_PI\": 344, \"OTHER\": 9616, \"MULT_RACE\": 1877, \"HISPANIC\": 18285, \"MALES\": 18920, \"FEMALES\": 18483, \"AGE_UNDER5\": 3487, \"AGE_5_17\": 7890, \"AGE_18_21\": 2184, \"AGE_22_29\": 5146, \"AGE_30_39\": 6453, \"AGE_40_49\": 4642, \"AGE_50_64\": 4020, \"AGE_65_UP\": 3581, \"MED_AGE\": 30.000000, \"MED_AGE_M\": 29.100000, \"MED_AGE_F\": 31.200000, \"HOUSEHOLDS\": 10767, \"AVE_HH_SZ\": 3.430000, \"HSEHLD_1_M\": 888, \"HSEHLD_1_F\": 1428, \"MARHH_CHD\": 3294, \"MARHH_NO_C\": 2116, \"MHH_CHILD\": 344, \"FHH_CHILD\": 860, \"FAMILIES\": 7804, \"AVE_FAM_SZ\": 3.930000, \"HSE_UNITS\": 11011, \"VACANT\": 244, \"OWNER_OCC\": 5261, \"RENTER_OCC\": 5506 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.993440332420533, 33.802501372353788 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Stockton\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"75000\", \"CAPITAL\": \"N\", \"AREALAND\": 54.710000, \"AREAWATER\": 1.239000, \"POP_CL\": 8, \"POP2000\": 243771, \"WHITE\": 105446, \"BLACK\": 27417, \"AMERI_ES\": 2727, \"ASIAN\": 48506, \"HAWN_PI\": 981, \"OTHER\": 42208, \"MULT_RACE\": 16486, \"HISPANIC\": 79217, \"MALES\": 118751, \"FEMALES\": 125020, \"AGE_UNDER5\": 20977, \"AGE_5_17\": 58107, \"AGE_18_21\": 16449, \"AGE_22_29\": 26975, \"AGE_30_39\": 33597, \"AGE_40_49\": 31938, \"AGE_50_64\": 30753, \"AGE_65_UP\": 24975, \"MED_AGE\": 29.800000, \"MED_AGE_M\": 28.700000, \"MED_AGE_F\": 30.900000, \"HOUSEHOLDS\": 78556, \"AVE_HH_SZ\": 3.040000, \"HSEHLD_1_M\": 7718, \"HSEHLD_1_F\": 10254, \"MARHH_CHD\": 20585, \"MARHH_NO_C\": 17194, \"MHH_CHILD\": 2673, \"FHH_CHILD\": 8811, \"FAMILIES\": 56186, \"AVE_FAM_SZ\": 3.590000, \"HSE_UNITS\": 82042, \"VACANT\": 3486, \"OWNER_OCC\": 40534, \"RENTER_OCC\": 38022 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.295682618849469, 37.976272070156149 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Suisun City\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"75630\", \"CAPITAL\": \"N\", \"AREALAND\": 4.011000, \"AREAWATER\": 0.042000, \"POP_CL\": 6, \"POP2000\": 26118, \"WHITE\": 11606, \"BLACK\": 5044, \"AMERI_ES\": 189, \"ASIAN\": 4621, \"HAWN_PI\": 268, \"OTHER\": 2225, \"MULT_RACE\": 2165, \"HISPANIC\": 4652, \"MALES\": 12931, \"FEMALES\": 13187, \"AGE_UNDER5\": 2008, \"AGE_5_17\": 6491, \"AGE_18_21\": 1437, \"AGE_22_29\": 2488, \"AGE_30_39\": 4445, \"AGE_40_49\": 4488, \"AGE_50_64\": 3272, \"AGE_65_UP\": 1489, \"MED_AGE\": 31.700000, \"MED_AGE_M\": 30.800000, \"MED_AGE_F\": 32.500000, \"HOUSEHOLDS\": 7987, \"AVE_HH_SZ\": 3.260000, \"HSEHLD_1_M\": 548, \"HSEHLD_1_F\": 591, \"MARHH_CHD\": 2883, \"MARHH_NO_C\": 2097, \"MHH_CHILD\": 261, \"FHH_CHILD\": 674, \"FAMILIES\": 6447, \"AVE_FAM_SZ\": 3.590000, \"HSE_UNITS\": 8146, \"VACANT\": 159, \"OWNER_OCC\": 5882, \"RENTER_OCC\": 2105 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.010224666404284, 38.245733335734961 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sun City\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"75826\", \"CAPITAL\": \"N\", \"AREALAND\": 7.795000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 17773, \"WHITE\": 15930, \"BLACK\": 378, \"AMERI_ES\": 91, \"ASIAN\": 211, \"HAWN_PI\": 26, \"OTHER\": 730, \"MULT_RACE\": 407, \"HISPANIC\": 2187, \"MALES\": 7837, \"FEMALES\": 9936, \"AGE_UNDER5\": 553, \"AGE_5_17\": 1974, \"AGE_18_21\": 299, \"AGE_22_29\": 547, \"AGE_30_39\": 1301, \"AGE_40_49\": 1222, \"AGE_50_64\": 2653, \"AGE_65_UP\": 9224, \"MED_AGE\": 66.100000, \"MED_AGE_M\": 64.300000, \"MED_AGE_F\": 67.300000, \"HOUSEHOLDS\": 8750, \"AVE_HH_SZ\": 1.990000, \"HSEHLD_1_M\": 807, \"HSEHLD_1_F\": 2471, \"MARHH_CHD\": 916, \"MARHH_NO_C\": 3690, \"MHH_CHILD\": 53, \"FHH_CHILD\": 144, \"FAMILIES\": 5199, \"AVE_FAM_SZ\": 2.570000, \"HSE_UNITS\": 9440, \"VACANT\": 690, \"OWNER_OCC\": 7414, \"RENTER_OCC\": 1336 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.198352766715587, 33.708385095829115 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sunnyvale\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"77000\", \"CAPITAL\": \"N\", \"AREALAND\": 21.936000, \"AREAWATER\": 0.693000, \"POP_CL\": 8, \"POP2000\": 131760, \"WHITE\": 70193, \"BLACK\": 2927, \"AMERI_ES\": 608, \"ASIAN\": 42524, \"HAWN_PI\": 428, \"OTHER\": 9474, \"MULT_RACE\": 5606, \"HISPANIC\": 20390, \"MALES\": 67783, \"FEMALES\": 63977, \"AGE_UNDER5\": 9270, \"AGE_5_17\": 17627, \"AGE_18_21\": 4533, \"AGE_22_29\": 21133, \"AGE_30_39\": 28250, \"AGE_40_49\": 19111, \"AGE_50_64\": 17879, \"AGE_65_UP\": 13957, \"MED_AGE\": 34.300000, \"MED_AGE_M\": 33.500000, \"MED_AGE_F\": 35.400000, \"HOUSEHOLDS\": 52539, \"AVE_HH_SZ\": 2.490000, \"HSEHLD_1_M\": 7535, \"HSEHLD_1_F\": 6685, \"MARHH_CHD\": 11790, \"MARHH_NO_C\": 14497, \"MHH_CHILD\": 750, \"FHH_CHILD\": 1979, \"FAMILIES\": 32664, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 53753, \"VACANT\": 1214, \"OWNER_OCC\": 25024, \"RENTER_OCC\": 27515 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.019526059571561, 37.372841371163275 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Susanville\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"77364\", \"CAPITAL\": \"N\", \"AREALAND\": 5.901000, \"AREAWATER\": 0.014000, \"POP_CL\": 6, \"POP2000\": 13541, \"WHITE\": 10295, \"BLACK\": 1692, \"AMERI_ES\": 431, \"ASIAN\": 155, \"HAWN_PI\": 120, \"OTHER\": 469, \"MULT_RACE\": 379, \"HISPANIC\": 2109, \"MALES\": 9001, \"FEMALES\": 4540, \"AGE_UNDER5\": 698, \"AGE_5_17\": 2004, \"AGE_18_21\": 886, \"AGE_22_29\": 2533, \"AGE_30_39\": 2945, \"AGE_40_49\": 2057, \"AGE_50_64\": 1369, \"AGE_65_UP\": 1049, \"MED_AGE\": 32.100000, \"MED_AGE_M\": 31.600000, \"MED_AGE_F\": 34.500000, \"HOUSEHOLDS\": 3516, \"AVE_HH_SZ\": 2.490000, \"HSEHLD_1_M\": 479, \"HSEHLD_1_F\": 574, \"MARHH_CHD\": 853, \"MARHH_NO_C\": 779, \"MHH_CHILD\": 112, \"FHH_CHILD\": 351, \"FAMILIES\": 2250, \"AVE_FAM_SZ\": 3.100000, \"HSE_UNITS\": 3882, \"VACANT\": 366, \"OWNER_OCC\": 1935, \"RENTER_OCC\": 1581 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -120.641313316288233, 40.417623659762853 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Tamalpais-Homestead Valley\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"77805\", \"CAPITAL\": \"N\", \"AREALAND\": 4.982000, \"AREAWATER\": 0.012000, \"POP_CL\": 6, \"POP2000\": 10691, \"WHITE\": 9626, \"BLACK\": 101, \"AMERI_ES\": 22, \"ASIAN\": 533, \"HAWN_PI\": 11, \"OTHER\": 94, \"MULT_RACE\": 304, \"HISPANIC\": 409, \"MALES\": 5187, \"FEMALES\": 5504, \"AGE_UNDER5\": 606, \"AGE_5_17\": 1547, \"AGE_18_21\": 213, \"AGE_22_29\": 580, \"AGE_30_39\": 1826, \"AGE_40_49\": 2362, \"AGE_50_64\": 2578, \"AGE_65_UP\": 979, \"MED_AGE\": 42.500000, \"MED_AGE_M\": 42.800000, \"MED_AGE_F\": 42.200000, \"HOUSEHOLDS\": 4558, \"AVE_HH_SZ\": 2.330000, \"HSEHLD_1_M\": 512, \"HSEHLD_1_F\": 658, \"MARHH_CHD\": 1081, \"MARHH_NO_C\": 1266, \"MHH_CHILD\": 69, \"FHH_CHILD\": 169, \"FAMILIES\": 2802, \"AVE_FAM_SZ\": 2.800000, \"HSE_UNITS\": 4646, \"VACANT\": 88, \"OWNER_OCC\": 3487, \"RENTER_OCC\": 1071 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.531567599994645, 37.889582316118549 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Tehachapi\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"78092\", \"CAPITAL\": \"N\", \"AREALAND\": 9.578000, \"AREAWATER\": 0.007000, \"POP_CL\": 6, \"POP2000\": 10957, \"WHITE\": 6264, \"BLACK\": 1512, \"AMERI_ES\": 148, \"ASIAN\": 81, \"HAWN_PI\": 17, \"OTHER\": 2610, \"MULT_RACE\": 325, \"HISPANIC\": 3583, \"MALES\": 7584, \"FEMALES\": 3373, \"AGE_UNDER5\": 481, \"AGE_5_17\": 1545, \"AGE_18_21\": 700, \"AGE_22_29\": 1947, \"AGE_30_39\": 2446, \"AGE_40_49\": 1681, \"AGE_50_64\": 1128, \"AGE_65_UP\": 1029, \"MED_AGE\": 33.200000, \"MED_AGE_M\": 32.500000, \"MED_AGE_F\": 36.500000, \"HOUSEHOLDS\": 2533, \"AVE_HH_SZ\": 2.590000, \"HSEHLD_1_M\": 306, \"HSEHLD_1_F\": 424, \"MARHH_CHD\": 553, \"MARHH_NO_C\": 650, \"MHH_CHILD\": 93, \"FHH_CHILD\": 257, \"FAMILIES\": 1710, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 2914, \"VACANT\": 381, \"OWNER_OCC\": 1381, \"RENTER_OCC\": 1152 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.447435200793606, 35.128734448175265 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Temecula\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"78120\", \"CAPITAL\": \"N\", \"AREALAND\": 26.255000, \"AREAWATER\": 0.029000, \"POP_CL\": 7, \"POP2000\": 57716, \"WHITE\": 45555, \"BLACK\": 1974, \"AMERI_ES\": 497, \"ASIAN\": 2728, \"HAWN_PI\": 174, \"OTHER\": 4276, \"MULT_RACE\": 2512, \"HISPANIC\": 10974, \"MALES\": 28510, \"FEMALES\": 29206, \"AGE_UNDER5\": 5115, \"AGE_5_17\": 14917, \"AGE_18_21\": 2861, \"AGE_22_29\": 4840, \"AGE_30_39\": 10588, \"AGE_40_49\": 9365, \"AGE_50_64\": 5935, \"AGE_65_UP\": 4095, \"MED_AGE\": 31.300000, \"MED_AGE_M\": 30.400000, \"MED_AGE_F\": 32.100000, \"HOUSEHOLDS\": 18293, \"AVE_HH_SZ\": 3.150000, \"HSEHLD_1_M\": 1023, \"HSEHLD_1_F\": 1273, \"MARHH_CHD\": 7797, \"MARHH_NO_C\": 4795, \"MHH_CHILD\": 506, \"FHH_CHILD\": 1276, \"FAMILIES\": 15162, \"AVE_FAM_SZ\": 3.450000, \"HSE_UNITS\": 19099, \"VACANT\": 806, \"OWNER_OCC\": 13418, \"RENTER_OCC\": 4875 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.12292356398784, 33.503385008129911 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Temple City\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"78148\", \"CAPITAL\": \"N\", \"AREALAND\": 4.015000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 33377, \"WHITE\": 16266, \"BLACK\": 307, \"AMERI_ES\": 148, \"ASIAN\": 12980, \"HAWN_PI\": 19, \"OTHER\": 2496, \"MULT_RACE\": 1161, \"HISPANIC\": 6836, \"MALES\": 15879, \"FEMALES\": 17498, \"AGE_UNDER5\": 1891, \"AGE_5_17\": 6105, \"AGE_18_21\": 1525, \"AGE_22_29\": 3141, \"AGE_30_39\": 4784, \"AGE_40_49\": 5711, \"AGE_50_64\": 5562, \"AGE_65_UP\": 4658, \"MED_AGE\": 38.600000, \"MED_AGE_M\": 36.700000, \"MED_AGE_F\": 40.100000, \"HOUSEHOLDS\": 11338, \"AVE_HH_SZ\": 2.900000, \"HSEHLD_1_M\": 852, \"HSEHLD_1_F\": 1386, \"MARHH_CHD\": 3158, \"MARHH_NO_C\": 3277, \"MHH_CHILD\": 223, \"FHH_CHILD\": 759, \"FAMILIES\": 8661, \"AVE_FAM_SZ\": 3.330000, \"HSE_UNITS\": 11674, \"VACANT\": 336, \"OWNER_OCC\": 7156, \"RENTER_OCC\": 4182 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.056811441499207, 34.102783130215101 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Thousand Oaks\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"78582\", \"CAPITAL\": \"N\", \"AREALAND\": 54.860000, \"AREAWATER\": 0.157000, \"POP_CL\": 8, \"POP2000\": 117005, \"WHITE\": 99563, \"BLACK\": 1241, \"AMERI_ES\": 627, \"ASIAN\": 6873, \"HAWN_PI\": 124, \"OTHER\": 5274, \"MULT_RACE\": 3303, \"HISPANIC\": 15328, \"MALES\": 57440, \"FEMALES\": 59565, \"AGE_UNDER5\": 7851, \"AGE_5_17\": 22537, \"AGE_18_21\": 5147, \"AGE_22_29\": 9241, \"AGE_30_39\": 18552, \"AGE_40_49\": 19796, \"AGE_50_64\": 20887, \"AGE_65_UP\": 12994, \"MED_AGE\": 37.700000, \"MED_AGE_M\": 36.500000, \"MED_AGE_F\": 38.800000, \"HOUSEHOLDS\": 41793, \"AVE_HH_SZ\": 2.750000, \"HSEHLD_1_M\": 3209, \"HSEHLD_1_F\": 4982, \"MARHH_CHD\": 12844, \"MARHH_NO_C\": 13219, \"MHH_CHILD\": 766, \"FHH_CHILD\": 1964, \"FAMILIES\": 31162, \"AVE_FAM_SZ\": 3.150000, \"HSE_UNITS\": 42958, \"VACANT\": 1165, \"OWNER_OCC\": 31491, \"RENTER_OCC\": 10302 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.873427159086205, 34.189694233674324 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Torrance\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"80000\", \"CAPITAL\": \"N\", \"AREALAND\": 20.541000, \"AREAWATER\": 0.000000, \"POP_CL\": 8, \"POP2000\": 137946, \"WHITE\": 81605, \"BLACK\": 3022, \"AMERI_ES\": 560, \"ASIAN\": 39462, \"HAWN_PI\": 481, \"OTHER\": 6307, \"MULT_RACE\": 6509, \"HISPANIC\": 17637, \"MALES\": 67087, \"FEMALES\": 70859, \"AGE_UNDER5\": 7834, \"AGE_5_17\": 23906, \"AGE_18_21\": 5432, \"AGE_22_29\": 12245, \"AGE_30_39\": 23135, \"AGE_40_49\": 24138, \"AGE_50_64\": 21829, \"AGE_65_UP\": 19427, \"MED_AGE\": 38.700000, \"MED_AGE_M\": 37.700000, \"MED_AGE_F\": 39.600000, \"HOUSEHOLDS\": 54542, \"AVE_HH_SZ\": 2.510000, \"HSEHLD_1_M\": 6755, \"HSEHLD_1_F\": 8250, \"MARHH_CHD\": 13312, \"MARHH_NO_C\": 15125, \"MHH_CHILD\": 941, \"FHH_CHILD\": 2712, \"FAMILIES\": 36276, \"AVE_FAM_SZ\": 3.100000, \"HSE_UNITS\": 55967, \"VACANT\": 1425, \"OWNER_OCC\": 30533, \"RENTER_OCC\": 24009 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.340045680333645, 33.834974659026344 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Tracy\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"80238\", \"CAPITAL\": \"N\", \"AREALAND\": 20.997000, \"AREAWATER\": 0.001000, \"POP_CL\": 7, \"POP2000\": 56929, \"WHITE\": 37127, \"BLACK\": 3117, \"AMERI_ES\": 518, \"ASIAN\": 4633, \"HAWN_PI\": 315, \"OTHER\": 7445, \"MULT_RACE\": 3774, \"HISPANIC\": 15765, \"MALES\": 28492, \"FEMALES\": 28437, \"AGE_UNDER5\": 5360, \"AGE_5_17\": 14239, \"AGE_18_21\": 2581, \"AGE_22_29\": 5417, \"AGE_30_39\": 11100, \"AGE_40_49\": 8764, \"AGE_50_64\": 5831, \"AGE_65_UP\": 3637, \"MED_AGE\": 30.900000, \"MED_AGE_M\": 30.300000, \"MED_AGE_F\": 31.400000, \"HOUSEHOLDS\": 17620, \"AVE_HH_SZ\": 3.210000, \"HSEHLD_1_M\": 1204, \"HSEHLD_1_F\": 1326, \"MARHH_CHD\": 7237, \"MARHH_NO_C\": 4213, \"MHH_CHILD\": 632, \"FHH_CHILD\": 1246, \"FAMILIES\": 14308, \"AVE_FAM_SZ\": 3.560000, \"HSE_UNITS\": 18087, \"VACANT\": 467, \"OWNER_OCC\": 12717, \"RENTER_OCC\": 4903 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.428492427434477, 37.738658753251123 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Truckee\", \"CLASS\": \"town\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"80588\", \"CAPITAL\": \"N\", \"AREALAND\": 32.540000, \"AREAWATER\": 1.314000, \"POP_CL\": 6, \"POP2000\": 13864, \"WHITE\": 12254, \"BLACK\": 34, \"AMERI_ES\": 82, \"ASIAN\": 120, \"HAWN_PI\": 24, \"OTHER\": 1050, \"MULT_RACE\": 300, \"HISPANIC\": 1773, \"MALES\": 7328, \"FEMALES\": 6536, \"AGE_UNDER5\": 875, \"AGE_5_17\": 2822, \"AGE_18_21\": 501, \"AGE_22_29\": 1475, \"AGE_30_39\": 2572, \"AGE_40_49\": 2860, \"AGE_50_64\": 1994, \"AGE_65_UP\": 765, \"MED_AGE\": 35.300000, \"MED_AGE_M\": 34.800000, \"MED_AGE_F\": 35.900000, \"HOUSEHOLDS\": 5149, \"AVE_HH_SZ\": 2.680000, \"HSEHLD_1_M\": 560, \"HSEHLD_1_F\": 401, \"MARHH_CHD\": 1503, \"MARHH_NO_C\": 1493, \"MHH_CHILD\": 145, \"FHH_CHILD\": 262, \"FAMILIES\": 3561, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 9757, \"VACANT\": 4608, \"OWNER_OCC\": 3805, \"RENTER_OCC\": 1344 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -120.19981889657187, 39.342593467185786 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Tulare\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"80644\", \"CAPITAL\": \"N\", \"AREALAND\": 16.612000, \"AREAWATER\": 0.066000, \"POP_CL\": 6, \"POP2000\": 43994, \"WHITE\": 24804, \"BLACK\": 2209, \"AMERI_ES\": 616, \"ASIAN\": 890, \"HAWN_PI\": 54, \"OTHER\": 12798, \"MULT_RACE\": 2623, \"HISPANIC\": 20058, \"MALES\": 21364, \"FEMALES\": 22630, \"AGE_UNDER5\": 4230, \"AGE_5_17\": 10983, \"AGE_18_21\": 2781, \"AGE_22_29\": 5011, \"AGE_30_39\": 6439, \"AGE_40_49\": 5551, \"AGE_50_64\": 4880, \"AGE_65_UP\": 4119, \"MED_AGE\": 28.500000, \"MED_AGE_M\": 27.300000, \"MED_AGE_F\": 29.600000, \"HOUSEHOLDS\": 13543, \"AVE_HH_SZ\": 3.220000, \"HSEHLD_1_M\": 834, \"HSEHLD_1_F\": 1421, \"MARHH_CHD\": 4185, \"MARHH_NO_C\": 3388, \"MHH_CHILD\": 524, \"FHH_CHILD\": 1558, \"FAMILIES\": 10758, \"AVE_FAM_SZ\": 3.570000, \"HSE_UNITS\": 14253, \"VACANT\": 710, \"OWNER_OCC\": 8196, \"RENTER_OCC\": 5347 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -119.340174664258086, 36.206872338251024 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Turlock\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"80812\", \"CAPITAL\": \"N\", \"AREALAND\": 13.305000, \"AREAWATER\": 0.000000, \"POP_CL\": 7, \"POP2000\": 55810, \"WHITE\": 40370, \"BLACK\": 798, \"AMERI_ES\": 523, \"ASIAN\": 2518, \"HAWN_PI\": 153, \"OTHER\": 8460, \"MULT_RACE\": 2988, \"HISPANIC\": 16422, \"MALES\": 26870, \"FEMALES\": 28940, \"AGE_UNDER5\": 4505, \"AGE_5_17\": 12151, \"AGE_18_21\": 3699, \"AGE_22_29\": 6784, \"AGE_30_39\": 8058, \"AGE_40_49\": 7390, \"AGE_50_64\": 6618, \"AGE_65_UP\": 6605, \"MED_AGE\": 30.900000, \"MED_AGE_M\": 29.600000, \"MED_AGE_F\": 32.200000, \"HOUSEHOLDS\": 18408, \"AVE_HH_SZ\": 2.920000, \"HSEHLD_1_M\": 1490, \"HSEHLD_1_F\": 2421, \"MARHH_CHD\": 5414, \"MARHH_NO_C\": 4674, \"MHH_CHILD\": 493, \"FHH_CHILD\": 1504, \"FAMILIES\": 13434, \"AVE_FAM_SZ\": 3.420000, \"HSE_UNITS\": 19095, \"VACANT\": 687, \"OWNER_OCC\": 10275, \"RENTER_OCC\": 8133 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -120.844748868435303, 37.506257606868218 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Tustin\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"80854\", \"CAPITAL\": \"N\", \"AREALAND\": 11.400000, \"AREAWATER\": 0.000000, \"POP_CL\": 7, \"POP2000\": 67504, \"WHITE\": 39639, \"BLACK\": 1970, \"AMERI_ES\": 448, \"ASIAN\": 10058, \"HAWN_PI\": 203, \"OTHER\": 12113, \"MULT_RACE\": 3073, \"HISPANIC\": 23110, \"MALES\": 33044, \"FEMALES\": 34460, \"AGE_UNDER5\": 5815, \"AGE_5_17\": 12307, \"AGE_18_21\": 3138, \"AGE_22_29\": 9760, \"AGE_30_39\": 13778, \"AGE_40_49\": 9570, \"AGE_50_64\": 8332, \"AGE_65_UP\": 4804, \"MED_AGE\": 31.800000, \"MED_AGE_M\": 31.100000, \"MED_AGE_F\": 32.600000, \"HOUSEHOLDS\": 23831, \"AVE_HH_SZ\": 2.820000, \"HSEHLD_1_M\": 2569, \"HSEHLD_1_F\": 3165, \"MARHH_CHD\": 6522, \"MARHH_NO_C\": 5439, \"MHH_CHILD\": 542, \"FHH_CHILD\": 1700, \"FAMILIES\": 16055, \"AVE_FAM_SZ\": 3.370000, \"HSE_UNITS\": 25501, \"VACANT\": 1670, \"OWNER_OCC\": 11829, \"RENTER_OCC\": 12002 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.812501757857504, 33.739743242683076 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Tustin Foothills\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"80868\", \"CAPITAL\": \"N\", \"AREALAND\": 6.697000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 24044, \"WHITE\": 20869, \"BLACK\": 134, \"AMERI_ES\": 87, \"ASIAN\": 1695, \"HAWN_PI\": 31, \"OTHER\": 631, \"MULT_RACE\": 597, \"HISPANIC\": 2037, \"MALES\": 11815, \"FEMALES\": 12229, \"AGE_UNDER5\": 1421, \"AGE_5_17\": 4587, \"AGE_18_21\": 853, \"AGE_22_29\": 1181, \"AGE_30_39\": 3033, \"AGE_40_49\": 3981, \"AGE_50_64\": 4945, \"AGE_65_UP\": 4043, \"MED_AGE\": 42.100000, \"MED_AGE_M\": 41.600000, \"MED_AGE_F\": 42.700000, \"HOUSEHOLDS\": 8269, \"AVE_HH_SZ\": 2.890000, \"HSEHLD_1_M\": 344, \"HSEHLD_1_F\": 636, \"MARHH_CHD\": 2562, \"MARHH_NO_C\": 3571, \"MHH_CHILD\": 93, \"FHH_CHILD\": 228, \"FAMILIES\": 6949, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 8417, \"VACANT\": 148, \"OWNER_OCC\": 7717, \"RENTER_OCC\": 552 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.798240908036362, 33.76524156398964 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Twentynine Palms\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"80994\", \"CAPITAL\": \"N\", \"AREALAND\": 54.815000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14764, \"WHITE\": 10485, \"BLACK\": 1381, \"AMERI_ES\": 215, \"ASIAN\": 563, \"HAWN_PI\": 260, \"OTHER\": 921, \"MULT_RACE\": 939, \"HISPANIC\": 2202, \"MALES\": 7449, \"FEMALES\": 7315, \"AGE_UNDER5\": 1442, \"AGE_5_17\": 3159, \"AGE_18_21\": 1214, \"AGE_22_29\": 2258, \"AGE_30_39\": 1970, \"AGE_40_49\": 1807, \"AGE_50_64\": 1641, \"AGE_65_UP\": 1273, \"MED_AGE\": 26.900000, \"MED_AGE_M\": 26.000000, \"MED_AGE_F\": 28.300000, \"HOUSEHOLDS\": 5653, \"AVE_HH_SZ\": 2.600000, \"HSEHLD_1_M\": 788, \"HSEHLD_1_F\": 633, \"MARHH_CHD\": 1463, \"MARHH_NO_C\": 1353, \"MHH_CHILD\": 177, \"FHH_CHILD\": 572, \"FAMILIES\": 3856, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 6952, \"VACANT\": 1299, \"OWNER_OCC\": 2449, \"RENTER_OCC\": 3204 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -116.071898218136411, 34.138332703299902 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ukiah\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"81134\", \"CAPITAL\": \"N\", \"AREALAND\": 4.732000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 15497, \"WHITE\": 12325, \"BLACK\": 148, \"AMERI_ES\": 587, \"ASIAN\": 261, \"HAWN_PI\": 15, \"OTHER\": 1499, \"MULT_RACE\": 662, \"HISPANIC\": 2993, \"MALES\": 7416, \"FEMALES\": 8081, \"AGE_UNDER5\": 1078, \"AGE_5_17\": 3036, \"AGE_18_21\": 886, \"AGE_22_29\": 1647, \"AGE_30_39\": 2200, \"AGE_40_49\": 2179, \"AGE_50_64\": 2262, \"AGE_65_UP\": 2209, \"MED_AGE\": 35.000000, \"MED_AGE_M\": 32.400000, \"MED_AGE_F\": 37.800000, \"HOUSEHOLDS\": 5985, \"AVE_HH_SZ\": 2.470000, \"HSEHLD_1_M\": 669, \"HSEHLD_1_F\": 1258, \"MARHH_CHD\": 1140, \"MARHH_NO_C\": 1267, \"MHH_CHILD\": 183, \"FHH_CHILD\": 655, \"FAMILIES\": 3654, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 6137, \"VACANT\": 152, \"OWNER_OCC\": 2899, \"RENTER_OCC\": 3086 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -123.197668359812326, 39.150178088568396 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Union City\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"81204\", \"CAPITAL\": \"N\", \"AREALAND\": 19.254000, \"AREAWATER\": 0.000000, \"POP_CL\": 7, \"POP2000\": 66869, \"WHITE\": 20198, \"BLACK\": 4479, \"AMERI_ES\": 356, \"ASIAN\": 29016, \"HAWN_PI\": 610, \"OTHER\": 7709, \"MULT_RACE\": 4501, \"HISPANIC\": 16020, \"MALES\": 33248, \"FEMALES\": 33621, \"AGE_UNDER5\": 4870, \"AGE_5_17\": 13692, \"AGE_18_21\": 3786, \"AGE_22_29\": 7875, \"AGE_30_39\": 11258, \"AGE_40_49\": 10392, \"AGE_50_64\": 9560, \"AGE_65_UP\": 5436, \"MED_AGE\": 32.800000, \"MED_AGE_M\": 32.000000, \"MED_AGE_F\": 33.800000, \"HOUSEHOLDS\": 18642, \"AVE_HH_SZ\": 3.570000, \"HSEHLD_1_M\": 958, \"HSEHLD_1_F\": 1142, \"MARHH_CHD\": 6937, \"MARHH_NO_C\": 5481, \"MHH_CHILD\": 395, \"FHH_CHILD\": 1110, \"FAMILIES\": 15700, \"AVE_FAM_SZ\": 3.830000, \"HSE_UNITS\": 18877, \"VACANT\": 235, \"OWNER_OCC\": 13291, \"RENTER_OCC\": 5351 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.039146692672489, 37.593046959409328 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Upland\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"81344\", \"CAPITAL\": \"N\", \"AREALAND\": 15.118000, \"AREAWATER\": 0.033000, \"POP_CL\": 7, \"POP2000\": 68393, \"WHITE\": 45966, \"BLACK\": 5164, \"AMERI_ES\": 518, \"ASIAN\": 4969, \"HAWN_PI\": 101, \"OTHER\": 8437, \"MULT_RACE\": 3238, \"HISPANIC\": 18830, \"MALES\": 32872, \"FEMALES\": 35521, \"AGE_UNDER5\": 4815, \"AGE_5_17\": 13884, \"AGE_18_21\": 3802, \"AGE_22_29\": 7390, \"AGE_30_39\": 10043, \"AGE_40_49\": 10425, \"AGE_50_64\": 10676, \"AGE_65_UP\": 7358, \"MED_AGE\": 34.500000, \"MED_AGE_M\": 33.000000, \"MED_AGE_F\": 35.800000, \"HOUSEHOLDS\": 24551, \"AVE_HH_SZ\": 2.760000, \"HSEHLD_1_M\": 2090, \"HSEHLD_1_F\": 3086, \"MARHH_CHD\": 6107, \"MARHH_NO_C\": 6948, \"MHH_CHILD\": 700, \"FHH_CHILD\": 2107, \"FAMILIES\": 17868, \"AVE_FAM_SZ\": 3.210000, \"HSE_UNITS\": 25467, \"VACANT\": 916, \"OWNER_OCC\": 14466, \"RENTER_OCC\": 10085 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.657392591277329, 34.113377494594033 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Vacaville\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"81554\", \"CAPITAL\": \"N\", \"AREALAND\": 27.083000, \"AREAWATER\": 0.000000, \"POP_CL\": 7, \"POP2000\": 88625, \"WHITE\": 63909, \"BLACK\": 8880, \"AMERI_ES\": 856, \"ASIAN\": 3706, \"HAWN_PI\": 403, \"OTHER\": 5970, \"MULT_RACE\": 4901, \"HISPANIC\": 15847, \"MALES\": 48050, \"FEMALES\": 40575, \"AGE_UNDER5\": 5891, \"AGE_5_17\": 18030, \"AGE_18_21\": 4353, \"AGE_22_29\": 10123, \"AGE_30_39\": 16393, \"AGE_40_49\": 15021, \"AGE_50_64\": 11494, \"AGE_65_UP\": 7320, \"MED_AGE\": 33.900000, \"MED_AGE_M\": 33.700000, \"MED_AGE_F\": 34.300000, \"HOUSEHOLDS\": 28105, \"AVE_HH_SZ\": 2.830000, \"HSEHLD_1_M\": 2385, \"HSEHLD_1_F\": 3021, \"MARHH_CHD\": 8358, \"MARHH_NO_C\": 7669, \"MHH_CHILD\": 919, \"FHH_CHILD\": 2370, \"FAMILIES\": 20962, \"AVE_FAM_SZ\": 3.240000, \"HSE_UNITS\": 28696, \"VACANT\": 591, \"OWNER_OCC\": 18757, \"RENTER_OCC\": 9348 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.965923383947072, 38.354667995578737 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Valinda\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"81638\", \"CAPITAL\": \"N\", \"AREALAND\": 2.011000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 21776, \"WHITE\": 8813, \"BLACK\": 536, \"AMERI_ES\": 258, \"ASIAN\": 2052, \"HAWN_PI\": 41, \"OTHER\": 8946, \"MULT_RACE\": 1130, \"HISPANIC\": 16271, \"MALES\": 10813, \"FEMALES\": 10963, \"AGE_UNDER5\": 1989, \"AGE_5_17\": 5481, \"AGE_18_21\": 1385, \"AGE_22_29\": 2718, \"AGE_30_39\": 3305, \"AGE_40_49\": 2825, \"AGE_50_64\": 2550, \"AGE_65_UP\": 1523, \"MED_AGE\": 28.100000, \"MED_AGE_M\": 27.500000, \"MED_AGE_F\": 28.600000, \"HOUSEHOLDS\": 4753, \"AVE_HH_SZ\": 4.570000, \"HSEHLD_1_M\": 156, \"HSEHLD_1_F\": 180, \"MARHH_CHD\": 1996, \"MARHH_NO_C\": 1157, \"MHH_CHILD\": 155, \"FHH_CHILD\": 328, \"FAMILIES\": 4257, \"AVE_FAM_SZ\": 4.640000, \"HSE_UNITS\": 4851, \"VACANT\": 98, \"OWNER_OCC\": 3743, \"RENTER_OCC\": 1010 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.927835727372511, 34.037893685930356 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Vallejo\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"81666\", \"CAPITAL\": \"N\", \"AREALAND\": 30.187000, \"AREAWATER\": 18.563000, \"POP_CL\": 8, \"POP2000\": 116760, \"WHITE\": 41996, \"BLACK\": 27655, \"AMERI_ES\": 767, \"ASIAN\": 28205, \"HAWN_PI\": 1276, \"OTHER\": 9196, \"MULT_RACE\": 7665, \"HISPANIC\": 18591, \"MALES\": 56553, \"FEMALES\": 60207, \"AGE_UNDER5\": 8399, \"AGE_5_17\": 23820, \"AGE_18_21\": 6087, \"AGE_22_29\": 12133, \"AGE_30_39\": 17162, \"AGE_40_49\": 18721, \"AGE_50_64\": 17323, \"AGE_65_UP\": 13115, \"MED_AGE\": 34.900000, \"MED_AGE_M\": 33.400000, \"MED_AGE_F\": 36.200000, \"HOUSEHOLDS\": 39601, \"AVE_HH_SZ\": 2.900000, \"HSEHLD_1_M\": 3874, \"HSEHLD_1_F\": 5114, \"MARHH_CHD\": 9558, \"MARHH_NO_C\": 9894, \"MHH_CHILD\": 1128, \"FHH_CHILD\": 3754, \"FAMILIES\": 28245, \"AVE_FAM_SZ\": 3.430000, \"HSE_UNITS\": 41219, \"VACANT\": 1618, \"OWNER_OCC\": 25020, \"RENTER_OCC\": 14581 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.228562982878913, 38.11391373982773 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Valle Vista\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"81708\", \"CAPITAL\": \"N\", \"AREALAND\": 3.208000, \"AREAWATER\": 0.241000, \"POP_CL\": 6, \"POP2000\": 10488, \"WHITE\": 9288, \"BLACK\": 130, \"AMERI_ES\": 134, \"ASIAN\": 135, \"HAWN_PI\": 16, \"OTHER\": 514, \"MULT_RACE\": 271, \"HISPANIC\": 1539, \"MALES\": 4915, \"FEMALES\": 5573, \"AGE_UNDER5\": 537, \"AGE_5_17\": 1800, \"AGE_18_21\": 355, \"AGE_22_29\": 621, \"AGE_30_39\": 1116, \"AGE_40_49\": 1265, \"AGE_50_64\": 1474, \"AGE_65_UP\": 3320, \"MED_AGE\": 46.100000, \"MED_AGE_M\": 44.700000, \"MED_AGE_F\": 47.900000, \"HOUSEHOLDS\": 4510, \"AVE_HH_SZ\": 2.320000, \"HSEHLD_1_M\": 492, \"HSEHLD_1_F\": 873, \"MARHH_CHD\": 764, \"MARHH_NO_C\": 1664, \"MHH_CHILD\": 72, \"FHH_CHILD\": 209, \"FAMILIES\": 2961, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 4909, \"VACANT\": 399, \"OWNER_OCC\": 3719, \"RENTER_OCC\": 791 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -116.897452033240853, 33.752901778398147 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Victorville\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"82590\", \"CAPITAL\": \"N\", \"AREALAND\": 72.781000, \"AREAWATER\": 0.522000, \"POP_CL\": 7, \"POP2000\": 64029, \"WHITE\": 39091, \"BLACK\": 7630, \"AMERI_ES\": 713, \"ASIAN\": 2226, \"HAWN_PI\": 129, \"OTHER\": 10408, \"MULT_RACE\": 3832, \"HISPANIC\": 21426, \"MALES\": 31004, \"FEMALES\": 33025, \"AGE_UNDER5\": 5537, \"AGE_5_17\": 16380, \"AGE_18_21\": 3349, \"AGE_22_29\": 6108, \"AGE_30_39\": 9602, \"AGE_40_49\": 8487, \"AGE_50_64\": 7414, \"AGE_65_UP\": 7152, \"MED_AGE\": 30.700000, \"MED_AGE_M\": 29.300000, \"MED_AGE_F\": 32.000000, \"HOUSEHOLDS\": 20893, \"AVE_HH_SZ\": 3.030000, \"HSEHLD_1_M\": 1651, \"HSEHLD_1_F\": 2401, \"MARHH_CHD\": 6183, \"MARHH_NO_C\": 5163, \"MHH_CHILD\": 687, \"FHH_CHILD\": 2288, \"FAMILIES\": 15883, \"AVE_FAM_SZ\": 3.470000, \"HSE_UNITS\": 22498, \"VACANT\": 1605, \"OWNER_OCC\": 13597, \"RENTER_OCC\": 7296 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.343626956044574, 34.520563189791083 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"View Park-Windsor Hills\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"82667\", \"CAPITAL\": \"N\", \"AREALAND\": 1.859000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10958, \"WHITE\": 588, \"BLACK\": 9641, \"AMERI_ES\": 19, \"ASIAN\": 122, \"HAWN_PI\": 7, \"OTHER\": 126, \"MULT_RACE\": 455, \"HISPANIC\": 297, \"MALES\": 5010, \"FEMALES\": 5948, \"AGE_UNDER5\": 522, \"AGE_5_17\": 1703, \"AGE_18_21\": 359, \"AGE_22_29\": 670, \"AGE_30_39\": 1546, \"AGE_40_49\": 1763, \"AGE_50_64\": 2251, \"AGE_65_UP\": 2144, \"MED_AGE\": 43.600000, \"MED_AGE_M\": 41.600000, \"MED_AGE_F\": 45.400000, \"HOUSEHOLDS\": 4539, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 467, \"HSEHLD_1_F\": 844, \"MARHH_CHD\": 683, \"MARHH_NO_C\": 1238, \"MHH_CHILD\": 71, \"FHH_CHILD\": 300, \"FAMILIES\": 3039, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 4738, \"VACANT\": 199, \"OWNER_OCC\": 3451, \"RENTER_OCC\": 1088 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.345648621156812, 33.993823132436546 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Vincent\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"82814\", \"CAPITAL\": \"N\", \"AREALAND\": 1.504000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 15097, \"WHITE\": 7811, \"BLACK\": 403, \"AMERI_ES\": 192, \"ASIAN\": 1035, \"HAWN_PI\": 12, \"OTHER\": 4801, \"MULT_RACE\": 843, \"HISPANIC\": 9724, \"MALES\": 7461, \"FEMALES\": 7636, \"AGE_UNDER5\": 1268, \"AGE_5_17\": 3761, \"AGE_18_21\": 908, \"AGE_22_29\": 1746, \"AGE_30_39\": 2486, \"AGE_40_49\": 2137, \"AGE_50_64\": 1707, \"AGE_65_UP\": 1084, \"MED_AGE\": 29.500000, \"MED_AGE_M\": 28.700000, \"MED_AGE_F\": 30.100000, \"HOUSEHOLDS\": 3804, \"AVE_HH_SZ\": 3.970000, \"HSEHLD_1_M\": 166, \"HSEHLD_1_F\": 225, \"MARHH_CHD\": 1479, \"MARHH_NO_C\": 933, \"MHH_CHILD\": 144, \"FHH_CHILD\": 246, \"FAMILIES\": 3267, \"AVE_FAM_SZ\": 4.170000, \"HSE_UNITS\": 3879, \"VACANT\": 75, \"OWNER_OCC\": 3041, \"RENTER_OCC\": 763 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.923289129799173, 34.098688748129483 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Vineyard\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"82852\", \"CAPITAL\": \"N\", \"AREALAND\": 8.134000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10109, \"WHITE\": 6677, \"BLACK\": 671, \"AMERI_ES\": 68, \"ASIAN\": 1617, \"HAWN_PI\": 53, \"OTHER\": 424, \"MULT_RACE\": 599, \"HISPANIC\": 1243, \"MALES\": 5028, \"FEMALES\": 5081, \"AGE_UNDER5\": 817, \"AGE_5_17\": 2470, \"AGE_18_21\": 345, \"AGE_22_29\": 680, \"AGE_30_39\": 2144, \"AGE_40_49\": 1821, \"AGE_50_64\": 1235, \"AGE_65_UP\": 597, \"MED_AGE\": 34.300000, \"MED_AGE_M\": 33.600000, \"MED_AGE_F\": 34.800000, \"HOUSEHOLDS\": 3267, \"AVE_HH_SZ\": 3.070000, \"HSEHLD_1_M\": 170, \"HSEHLD_1_F\": 220, \"MARHH_CHD\": 1326, \"MARHH_NO_C\": 932, \"MHH_CHILD\": 105, \"FHH_CHILD\": 202, \"FAMILIES\": 2732, \"AVE_FAM_SZ\": 3.330000, \"HSE_UNITS\": 3349, \"VACANT\": 82, \"OWNER_OCC\": 2973, \"RENTER_OCC\": 294 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.341487363572696, 38.465158875749154 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Visalia\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"82954\", \"CAPITAL\": \"N\", \"AREALAND\": 28.576000, \"AREAWATER\": 0.005000, \"POP_CL\": 7, \"POP2000\": 91565, \"WHITE\": 63654, \"BLACK\": 1754, \"AMERI_ES\": 1235, \"ASIAN\": 4683, \"HAWN_PI\": 117, \"OTHER\": 16293, \"MULT_RACE\": 3829, \"HISPANIC\": 32619, \"MALES\": 44167, \"FEMALES\": 47398, \"AGE_UNDER5\": 7413, \"AGE_5_17\": 21202, \"AGE_18_21\": 5311, \"AGE_22_29\": 9563, \"AGE_30_39\": 13319, \"AGE_40_49\": 12772, \"AGE_50_64\": 12019, \"AGE_65_UP\": 9966, \"MED_AGE\": 31.700000, \"MED_AGE_M\": 30.200000, \"MED_AGE_F\": 33.300000, \"HOUSEHOLDS\": 30883, \"AVE_HH_SZ\": 2.910000, \"HSEHLD_1_M\": 2343, \"HSEHLD_1_F\": 4049, \"MARHH_CHD\": 8739, \"MARHH_NO_C\": 8209, \"MHH_CHILD\": 984, \"FHH_CHILD\": 2972, \"FAMILIES\": 22901, \"AVE_FAM_SZ\": 3.370000, \"HSE_UNITS\": 32654, \"VACANT\": 1771, \"OWNER_OCC\": 19374, \"RENTER_OCC\": 11509 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -119.305130950514098, 36.32436836597536 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Vista\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"82996\", \"CAPITAL\": \"N\", \"AREALAND\": 18.681000, \"AREAWATER\": 0.000000, \"POP_CL\": 7, \"POP2000\": 89857, \"WHITE\": 57750, \"BLACK\": 3814, \"AMERI_ES\": 895, \"ASIAN\": 3323, \"HAWN_PI\": 607, \"OTHER\": 19168, \"MULT_RACE\": 4300, \"HISPANIC\": 34990, \"MALES\": 44891, \"FEMALES\": 44966, \"AGE_UNDER5\": 7726, \"AGE_5_17\": 18927, \"AGE_18_21\": 5656, \"AGE_22_29\": 12180, \"AGE_30_39\": 14773, \"AGE_40_49\": 12540, \"AGE_50_64\": 9049, \"AGE_65_UP\": 9006, \"MED_AGE\": 30.300000, \"MED_AGE_M\": 29.600000, \"MED_AGE_F\": 31.000000, \"HOUSEHOLDS\": 28877, \"AVE_HH_SZ\": 3.030000, \"HSEHLD_1_M\": 2555, \"HSEHLD_1_F\": 3369, \"MARHH_CHD\": 8345, \"MARHH_NO_C\": 7153, \"MHH_CHILD\": 948, \"FHH_CHILD\": 2364, \"FAMILIES\": 20783, \"AVE_FAM_SZ\": 3.480000, \"HSE_UNITS\": 29814, \"VACANT\": 937, \"OWNER_OCC\": 15653, \"RENTER_OCC\": 13224 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.240355665669242, 33.193642813976986 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Walnut\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"83332\", \"CAPITAL\": \"N\", \"AREALAND\": 8.982000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 30004, \"WHITE\": 8513, \"BLACK\": 1259, \"AMERI_ES\": 72, \"ASIAN\": 16728, \"HAWN_PI\": 24, \"OTHER\": 2296, \"MULT_RACE\": 1112, \"HISPANIC\": 5803, \"MALES\": 14748, \"FEMALES\": 15256, \"AGE_UNDER5\": 1466, \"AGE_5_17\": 6863, \"AGE_18_21\": 1854, \"AGE_22_29\": 2567, \"AGE_30_39\": 3603, \"AGE_40_49\": 6239, \"AGE_50_64\": 5327, \"AGE_65_UP\": 2085, \"MED_AGE\": 37.200000, \"MED_AGE_M\": 35.800000, \"MED_AGE_F\": 38.100000, \"HOUSEHOLDS\": 8260, \"AVE_HH_SZ\": 3.630000, \"HSEHLD_1_M\": 235, \"HSEHLD_1_F\": 242, \"MARHH_CHD\": 3699, \"MARHH_NO_C\": 2668, \"MHH_CHILD\": 131, \"FHH_CHILD\": 349, \"FAMILIES\": 7580, \"AVE_FAM_SZ\": 3.740000, \"HSE_UNITS\": 8395, \"VACANT\": 135, \"OWNER_OCC\": 7340, \"RENTER_OCC\": 920 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.859441668427607, 34.02786752852856 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Walnut Creek\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"83346\", \"CAPITAL\": \"N\", \"AREALAND\": 19.908000, \"AREAWATER\": 0.011000, \"POP_CL\": 7, \"POP2000\": 64296, \"WHITE\": 53937, \"BLACK\": 688, \"AMERI_ES\": 210, \"ASIAN\": 6017, \"HAWN_PI\": 94, \"OTHER\": 1263, \"MULT_RACE\": 2087, \"HISPANIC\": 3851, \"MALES\": 29683, \"FEMALES\": 34613, \"AGE_UNDER5\": 2854, \"AGE_5_17\": 8455, \"AGE_18_21\": 1678, \"AGE_22_29\": 5440, \"AGE_30_39\": 8808, \"AGE_40_49\": 9533, \"AGE_50_64\": 11247, \"AGE_65_UP\": 16281, \"MED_AGE\": 45.100000, \"MED_AGE_M\": 42.200000, \"MED_AGE_F\": 47.800000, \"HOUSEHOLDS\": 30301, \"AVE_HH_SZ\": 2.090000, \"HSEHLD_1_M\": 3702, \"HSEHLD_1_F\": 7807, \"MARHH_CHD\": 5018, \"MARHH_NO_C\": 8820, \"MHH_CHILD\": 298, \"FHH_CHILD\": 1005, \"FAMILIES\": 16551, \"AVE_FAM_SZ\": 2.780000, \"HSE_UNITS\": 31425, \"VACANT\": 1124, \"OWNER_OCC\": 20708, \"RENTER_OCC\": 9593 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.04061227031788, 37.910827986145222 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Walnut Park\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"83402\", \"CAPITAL\": \"N\", \"AREALAND\": 0.738000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 16180, \"WHITE\": 7461, \"BLACK\": 58, \"AMERI_ES\": 145, \"ASIAN\": 83, \"HAWN_PI\": 23, \"OTHER\": 7691, \"MULT_RACE\": 719, \"HISPANIC\": 15496, \"MALES\": 8219, \"FEMALES\": 7961, \"AGE_UNDER5\": 1639, \"AGE_5_17\": 3767, \"AGE_18_21\": 1122, \"AGE_22_29\": 2519, \"AGE_30_39\": 2510, \"AGE_40_49\": 1837, \"AGE_50_64\": 1719, \"AGE_65_UP\": 1067, \"MED_AGE\": 27.000000, \"MED_AGE_M\": 26.400000, \"MED_AGE_F\": 27.500000, \"HOUSEHOLDS\": 3610, \"AVE_HH_SZ\": 4.480000, \"HSEHLD_1_M\": 167, \"HSEHLD_1_F\": 157, \"MARHH_CHD\": 1501, \"MARHH_NO_C\": 756, \"MHH_CHILD\": 123, \"FHH_CHILD\": 345, \"FAMILIES\": 3192, \"AVE_FAM_SZ\": 4.620000, \"HSE_UNITS\": 3814, \"VACANT\": 204, \"OWNER_OCC\": 1946, \"RENTER_OCC\": 1664 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.222553359931794, 33.968933315298969 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wasco\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"83542\", \"CAPITAL\": \"N\", \"AREALAND\": 7.606000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 21263, \"WHITE\": 7366, \"BLACK\": 2183, \"AMERI_ES\": 217, \"ASIAN\": 143, \"HAWN_PI\": 32, \"OTHER\": 10730, \"MULT_RACE\": 592, \"HISPANIC\": 14187, \"MALES\": 13764, \"FEMALES\": 7499, \"AGE_UNDER5\": 1604, \"AGE_5_17\": 4232, \"AGE_18_21\": 1615, \"AGE_22_29\": 3506, \"AGE_30_39\": 4365, \"AGE_40_49\": 3075, \"AGE_50_64\": 1717, \"AGE_65_UP\": 1149, \"MED_AGE\": 29.300000, \"MED_AGE_M\": 30.400000, \"MED_AGE_F\": 25.600000, \"HOUSEHOLDS\": 3971, \"AVE_HH_SZ\": 3.790000, \"HSEHLD_1_M\": 185, \"HSEHLD_1_F\": 277, \"MARHH_CHD\": 1596, \"MARHH_NO_C\": 877, \"MHH_CHILD\": 139, \"FHH_CHILD\": 452, \"FAMILIES\": 3403, \"AVE_FAM_SZ\": 4.070000, \"HSE_UNITS\": 4256, \"VACANT\": 285, \"OWNER_OCC\": 2297, \"RENTER_OCC\": 1674 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -119.341019068408755, 35.593854545935429 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Watsonville\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"83668\", \"CAPITAL\": \"N\", \"AREALAND\": 6.351000, \"AREAWATER\": 0.084000, \"POP_CL\": 6, \"POP2000\": 44265, \"WHITE\": 19036, \"BLACK\": 334, \"AMERI_ES\": 768, \"ASIAN\": 1455, \"HAWN_PI\": 53, \"OTHER\": 20328, \"MULT_RACE\": 2291, \"HISPANIC\": 33254, \"MALES\": 22240, \"FEMALES\": 22025, \"AGE_UNDER5\": 4100, \"AGE_5_17\": 10937, \"AGE_18_21\": 3049, \"AGE_22_29\": 5930, \"AGE_30_39\": 6855, \"AGE_40_49\": 5354, \"AGE_50_64\": 4238, \"AGE_65_UP\": 3802, \"MED_AGE\": 27.400000, \"MED_AGE_M\": 26.600000, \"MED_AGE_F\": 28.200000, \"HOUSEHOLDS\": 11381, \"AVE_HH_SZ\": 3.840000, \"HSEHLD_1_M\": 767, \"HSEHLD_1_F\": 1238, \"MARHH_CHD\": 4108, \"MARHH_NO_C\": 2297, \"MHH_CHILD\": 320, \"FHH_CHILD\": 1170, \"FAMILIES\": 8865, \"AVE_FAM_SZ\": 4.260000, \"HSE_UNITS\": 11695, \"VACANT\": 314, \"OWNER_OCC\": 5476, \"RENTER_OCC\": 5905 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.757976736582265, 36.920809489615678 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"West Carson\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"84144\", \"CAPITAL\": \"N\", \"AREALAND\": 2.259000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 21138, \"WHITE\": 8876, \"BLACK\": 2483, \"AMERI_ES\": 139, \"ASIAN\": 5300, \"HAWN_PI\": 254, \"OTHER\": 2947, \"MULT_RACE\": 1139, \"HISPANIC\": 6223, \"MALES\": 10157, \"FEMALES\": 10981, \"AGE_UNDER5\": 1328, \"AGE_5_17\": 3447, \"AGE_18_21\": 936, \"AGE_22_29\": 2145, \"AGE_30_39\": 3216, \"AGE_40_49\": 3066, \"AGE_50_64\": 3770, \"AGE_65_UP\": 3230, \"MED_AGE\": 38.500000, \"MED_AGE_M\": 36.900000, \"MED_AGE_F\": 40.000000, \"HOUSEHOLDS\": 7156, \"AVE_HH_SZ\": 2.850000, \"HSEHLD_1_M\": 716, \"HSEHLD_1_F\": 1003, \"MARHH_CHD\": 1620, \"MARHH_NO_C\": 2145, \"MHH_CHILD\": 137, \"FHH_CHILD\": 364, \"FAMILIES\": 5053, \"AVE_FAM_SZ\": 3.410000, \"HSE_UNITS\": 7406, \"VACANT\": 250, \"OWNER_OCC\": 5366, \"RENTER_OCC\": 1790 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.291275253732536, 33.826422150409734 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"West Covina\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"84200\", \"CAPITAL\": \"N\", \"AREALAND\": 16.105000, \"AREAWATER\": 0.000000, \"POP_CL\": 8, \"POP2000\": 105080, \"WHITE\": 46086, \"BLACK\": 6696, \"AMERI_ES\": 823, \"ASIAN\": 23849, \"HAWN_PI\": 226, \"OTHER\": 22295, \"MULT_RACE\": 5105, \"HISPANIC\": 48051, \"MALES\": 51019, \"FEMALES\": 54061, \"AGE_UNDER5\": 8013, \"AGE_5_17\": 21939, \"AGE_18_21\": 6065, \"AGE_22_29\": 12107, \"AGE_30_39\": 16459, \"AGE_40_49\": 15216, \"AGE_50_64\": 14402, \"AGE_65_UP\": 10879, \"MED_AGE\": 32.700000, \"MED_AGE_M\": 31.300000, \"MED_AGE_F\": 34.100000, \"HOUSEHOLDS\": 31411, \"AVE_HH_SZ\": 3.320000, \"HSEHLD_1_M\": 1939, \"HSEHLD_1_F\": 2721, \"MARHH_CHD\": 9848, \"MARHH_NO_C\": 8445, \"MHH_CHILD\": 829, \"FHH_CHILD\": 2492, \"FAMILIES\": 25261, \"AVE_FAM_SZ\": 3.670000, \"HSE_UNITS\": 32058, \"VACANT\": 647, \"OWNER_OCC\": 20894, \"RENTER_OCC\": 10517 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.91751689843764, 34.056793164477376 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"West Hollywood\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"84410\", \"CAPITAL\": \"N\", \"AREALAND\": 1.881000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 35716, \"WHITE\": 30868, \"BLACK\": 1104, \"AMERI_ES\": 129, \"ASIAN\": 1350, \"HAWN_PI\": 41, \"OTHER\": 1026, \"MULT_RACE\": 1198, \"HISPANIC\": 3142, \"MALES\": 19732, \"FEMALES\": 15984, \"AGE_UNDER5\": 588, \"AGE_5_17\": 1446, \"AGE_18_21\": 727, \"AGE_22_29\": 5931, \"AGE_30_39\": 9605, \"AGE_40_49\": 5992, \"AGE_50_64\": 5339, \"AGE_65_UP\": 6088, \"MED_AGE\": 39.400000, \"MED_AGE_M\": 38.600000, \"MED_AGE_F\": 41.300000, \"HOUSEHOLDS\": 23120, \"AVE_HH_SZ\": 1.530000, \"HSEHLD_1_M\": 7628, \"HSEHLD_1_F\": 6362, \"MARHH_CHD\": 864, \"MARHH_NO_C\": 2934, \"MHH_CHILD\": 94, \"FHH_CHILD\": 391, \"FAMILIES\": 5211, \"AVE_FAM_SZ\": 2.500000, \"HSE_UNITS\": 24110, \"VACANT\": 990, \"OWNER_OCC\": 4985, \"RENTER_OCC\": 18135 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.370836911154072, 34.088072598902592 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Westminster\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"84550\", \"CAPITAL\": \"N\", \"AREALAND\": 10.111000, \"AREAWATER\": 0.000000, \"POP_CL\": 7, \"POP2000\": 88207, \"WHITE\": 40392, \"BLACK\": 871, \"AMERI_ES\": 535, \"ASIAN\": 33629, \"HAWN_PI\": 406, \"OTHER\": 8991, \"MULT_RACE\": 3383, \"HISPANIC\": 19138, \"MALES\": 44080, \"FEMALES\": 44127, \"AGE_UNDER5\": 6419, \"AGE_5_17\": 16453, \"AGE_18_21\": 4432, \"AGE_22_29\": 10721, \"AGE_30_39\": 14755, \"AGE_40_49\": 12282, \"AGE_50_64\": 13302, \"AGE_65_UP\": 9843, \"MED_AGE\": 34.100000, \"MED_AGE_M\": 33.300000, \"MED_AGE_F\": 34.800000, \"HOUSEHOLDS\": 26406, \"AVE_HH_SZ\": 3.320000, \"HSEHLD_1_M\": 1871, \"HSEHLD_1_F\": 2600, \"MARHH_CHD\": 7864, \"MARHH_NO_C\": 7545, \"MHH_CHILD\": 592, \"FHH_CHILD\": 1521, \"FAMILIES\": 20403, \"AVE_FAM_SZ\": 3.710000, \"HSE_UNITS\": 26940, \"VACANT\": 534, \"OWNER_OCC\": 15884, \"RENTER_OCC\": 10522 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.992818546840738, 33.751554038031877 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Westmont\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"84592\", \"CAPITAL\": \"N\", \"AREALAND\": 1.849000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 31623, \"WHITE\": 3718, \"BLACK\": 18336, \"AMERI_ES\": 189, \"ASIAN\": 120, \"HAWN_PI\": 62, \"OTHER\": 8150, \"MULT_RACE\": 1048, \"HISPANIC\": 12499, \"MALES\": 14678, \"FEMALES\": 16945, \"AGE_UNDER5\": 3315, \"AGE_5_17\": 8653, \"AGE_18_21\": 1944, \"AGE_22_29\": 3701, \"AGE_30_39\": 4822, \"AGE_40_49\": 3757, \"AGE_50_64\": 3522, \"AGE_65_UP\": 1909, \"MED_AGE\": 26.100000, \"MED_AGE_M\": 23.700000, \"MED_AGE_F\": 28.200000, \"HOUSEHOLDS\": 9255, \"AVE_HH_SZ\": 3.410000, \"HSEHLD_1_M\": 762, \"HSEHLD_1_F\": 1018, \"MARHH_CHD\": 1903, \"MARHH_NO_C\": 1231, \"MHH_CHILD\": 377, \"FHH_CHILD\": 2102, \"FAMILIES\": 7089, \"AVE_FAM_SZ\": 3.850000, \"HSE_UNITS\": 10186, \"VACANT\": 931, \"OWNER_OCC\": 2969, \"RENTER_OCC\": 6286 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.301032230050055, 33.941671599100147 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"West Puente Valley\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"84774\", \"CAPITAL\": \"N\", \"AREALAND\": 1.750000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 22589, \"WHITE\": 9906, \"BLACK\": 555, \"AMERI_ES\": 257, \"ASIAN\": 1795, \"HAWN_PI\": 40, \"OTHER\": 9036, \"MULT_RACE\": 1000, \"HISPANIC\": 18416, \"MALES\": 11215, \"FEMALES\": 11374, \"AGE_UNDER5\": 1782, \"AGE_5_17\": 5420, \"AGE_18_21\": 1545, \"AGE_22_29\": 2840, \"AGE_30_39\": 3305, \"AGE_40_49\": 2807, \"AGE_50_64\": 2801, \"AGE_65_UP\": 2089, \"MED_AGE\": 29.200000, \"MED_AGE_M\": 28.200000, \"MED_AGE_F\": 30.300000, \"HOUSEHOLDS\": 4834, \"AVE_HH_SZ\": 4.670000, \"HSEHLD_1_M\": 121, \"HSEHLD_1_F\": 266, \"MARHH_CHD\": 1813, \"MARHH_NO_C\": 1437, \"MHH_CHILD\": 124, \"FHH_CHILD\": 297, \"FAMILIES\": 4347, \"AVE_FAM_SZ\": 4.750000, \"HSE_UNITS\": 4914, \"VACANT\": 80, \"OWNER_OCC\": 3965, \"RENTER_OCC\": 869 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.968660319776788, 34.050974265470103 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"West Sacramento\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"84816\", \"CAPITAL\": \"N\", \"AREALAND\": 20.944000, \"AREAWATER\": 1.910000, \"POP_CL\": 6, \"POP2000\": 31615, \"WHITE\": 20548, \"BLACK\": 811, \"AMERI_ES\": 555, \"ASIAN\": 2282, \"HAWN_PI\": 184, \"OTHER\": 5056, \"MULT_RACE\": 2179, \"HISPANIC\": 9470, \"MALES\": 15612, \"FEMALES\": 16003, \"AGE_UNDER5\": 2431, \"AGE_5_17\": 6999, \"AGE_18_21\": 1750, \"AGE_22_29\": 3005, \"AGE_30_39\": 4531, \"AGE_40_49\": 4478, \"AGE_50_64\": 4414, \"AGE_65_UP\": 4007, \"MED_AGE\": 34.000000, \"MED_AGE_M\": 32.700000, \"MED_AGE_F\": 35.100000, \"HOUSEHOLDS\": 11404, \"AVE_HH_SZ\": 2.750000, \"HSEHLD_1_M\": 1495, \"HSEHLD_1_F\": 1597, \"MARHH_CHD\": 2522, \"MARHH_NO_C\": 2637, \"MHH_CHILD\": 354, \"FHH_CHILD\": 1067, \"FAMILIES\": 7600, \"AVE_FAM_SZ\": 3.390000, \"HSE_UNITS\": 12133, \"VACANT\": 729, \"OWNER_OCC\": 6218, \"RENTER_OCC\": 5186 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.533311403491439, 38.571831877918846 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"West Whittier-Los Nietos\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"84921\", \"CAPITAL\": \"N\", \"AREALAND\": 2.514000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 25129, \"WHITE\": 13334, \"BLACK\": 144, \"AMERI_ES\": 314, \"ASIAN\": 410, \"HAWN_PI\": 51, \"OTHER\": 9673, \"MULT_RACE\": 1203, \"HISPANIC\": 20874, \"MALES\": 12322, \"FEMALES\": 12807, \"AGE_UNDER5\": 2058, \"AGE_5_17\": 5704, \"AGE_18_21\": 1610, \"AGE_22_29\": 3001, \"AGE_30_39\": 3798, \"AGE_40_49\": 3306, \"AGE_50_64\": 3036, \"AGE_65_UP\": 2616, \"MED_AGE\": 30.500000, \"MED_AGE_M\": 29.000000, \"MED_AGE_F\": 31.800000, \"HOUSEHOLDS\": 6720, \"AVE_HH_SZ\": 3.730000, \"HSEHLD_1_M\": 334, \"HSEHLD_1_F\": 573, \"MARHH_CHD\": 2241, \"MARHH_NO_C\": 1769, \"MHH_CHILD\": 213, \"FHH_CHILD\": 472, \"FAMILIES\": 5599, \"AVE_FAM_SZ\": 4.040000, \"HSE_UNITS\": 6857, \"VACANT\": 137, \"OWNER_OCC\": 4958, \"RENTER_OCC\": 1762 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.067837422018343, 33.976255089035675 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Whittier\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"85292\", \"CAPITAL\": \"N\", \"AREALAND\": 14.631000, \"AREAWATER\": 0.000000, \"POP_CL\": 7, \"POP2000\": 83680, \"WHITE\": 52876, \"BLACK\": 1019, \"AMERI_ES\": 1105, \"ASIAN\": 2770, \"HAWN_PI\": 126, \"OTHER\": 21588, \"MULT_RACE\": 4196, \"HISPANIC\": 46765, \"MALES\": 40687, \"FEMALES\": 42993, \"AGE_UNDER5\": 6533, \"AGE_5_17\": 17134, \"AGE_18_21\": 4987, \"AGE_22_29\": 9501, \"AGE_30_39\": 13201, \"AGE_40_49\": 11745, \"AGE_50_64\": 10093, \"AGE_65_UP\": 10486, \"MED_AGE\": 32.800000, \"MED_AGE_M\": 31.300000, \"MED_AGE_F\": 34.300000, \"HOUSEHOLDS\": 28271, \"AVE_HH_SZ\": 2.880000, \"HSEHLD_1_M\": 2617, \"HSEHLD_1_F\": 3702, \"MARHH_CHD\": 7613, \"MARHH_NO_C\": 7239, \"MHH_CHILD\": 801, \"FHH_CHILD\": 2264, \"FAMILIES\": 20470, \"AVE_FAM_SZ\": 3.380000, \"HSE_UNITS\": 28977, \"VACANT\": 706, \"OWNER_OCC\": 16345, \"RENTER_OCC\": 11926 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.023353940841773, 33.965801193395023 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wildomar\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"85446\", \"CAPITAL\": \"N\", \"AREALAND\": 13.229000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14064, \"WHITE\": 11540, \"BLACK\": 248, \"AMERI_ES\": 126, \"ASIAN\": 259, \"HAWN_PI\": 36, \"OTHER\": 1286, \"MULT_RACE\": 569, \"HISPANIC\": 3035, \"MALES\": 6968, \"FEMALES\": 7096, \"AGE_UNDER5\": 930, \"AGE_5_17\": 3312, \"AGE_18_21\": 651, \"AGE_22_29\": 948, \"AGE_30_39\": 2061, \"AGE_40_49\": 2331, \"AGE_50_64\": 1894, \"AGE_65_UP\": 1937, \"MED_AGE\": 36.500000, \"MED_AGE_M\": 35.800000, \"MED_AGE_F\": 37.200000, \"HOUSEHOLDS\": 4572, \"AVE_HH_SZ\": 3.060000, \"HSEHLD_1_M\": 270, \"HSEHLD_1_F\": 397, \"MARHH_CHD\": 1533, \"MARHH_NO_C\": 1547, \"MHH_CHILD\": 101, \"FHH_CHILD\": 207, \"FAMILIES\": 3692, \"AVE_FAM_SZ\": 3.380000, \"HSE_UNITS\": 4772, \"VACANT\": 200, \"OWNER_OCC\": 3936, \"RENTER_OCC\": 636 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.259379023099143, 33.607556404934073 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Willowbrook\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"85614\", \"CAPITAL\": \"N\", \"AREALAND\": 3.743000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 34138, \"WHITE\": 5482, \"BLACK\": 15331, \"AMERI_ES\": 245, \"ASIAN\": 91, \"HAWN_PI\": 44, \"OTHER\": 11940, \"MULT_RACE\": 1005, \"HISPANIC\": 18297, \"MALES\": 16475, \"FEMALES\": 17663, \"AGE_UNDER5\": 3299, \"AGE_5_17\": 9432, \"AGE_18_21\": 2161, \"AGE_22_29\": 4092, \"AGE_30_39\": 4987, \"AGE_40_49\": 3868, \"AGE_50_64\": 3322, \"AGE_65_UP\": 2977, \"MED_AGE\": 26.200000, \"MED_AGE_M\": 24.600000, \"MED_AGE_F\": 28.000000, \"HOUSEHOLDS\": 8476, \"AVE_HH_SZ\": 3.970000, \"HSEHLD_1_M\": 517, \"HSEHLD_1_F\": 847, \"MARHH_CHD\": 2304, \"MARHH_NO_C\": 1299, \"MHH_CHILD\": 329, \"FHH_CHILD\": 1415, \"FAMILIES\": 6821, \"AVE_FAM_SZ\": 4.350000, \"HSE_UNITS\": 9042, \"VACANT\": 566, \"OWNER_OCC\": 4402, \"RENTER_OCC\": 4074 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.251458350752671, 33.917668975654905 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Windsor\", \"CLASS\": \"town\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"85922\", \"CAPITAL\": \"N\", \"AREALAND\": 6.744000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 22744, \"WHITE\": 17968, \"BLACK\": 178, \"AMERI_ES\": 336, \"ASIAN\": 521, \"HAWN_PI\": 32, \"OTHER\": 2825, \"MULT_RACE\": 884, \"HISPANIC\": 5364, \"MALES\": 11164, \"FEMALES\": 11580, \"AGE_UNDER5\": 1818, \"AGE_5_17\": 5189, \"AGE_18_21\": 946, \"AGE_22_29\": 1647, \"AGE_30_39\": 3918, \"AGE_40_49\": 3821, \"AGE_50_64\": 2871, \"AGE_65_UP\": 2534, \"MED_AGE\": 35.200000, \"MED_AGE_M\": 34.300000, \"MED_AGE_F\": 35.900000, \"HOUSEHOLDS\": 7589, \"AVE_HH_SZ\": 2.980000, \"HSEHLD_1_M\": 496, \"HSEHLD_1_F\": 919, \"MARHH_CHD\": 2729, \"MARHH_NO_C\": 2114, \"MHH_CHILD\": 179, \"FHH_CHILD\": 380, \"FAMILIES\": 5778, \"AVE_FAM_SZ\": 3.400000, \"HSE_UNITS\": 7728, \"VACANT\": 139, \"OWNER_OCC\": 6102, \"RENTER_OCC\": 1487 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.796020756952402, 38.547231636759598 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Winter Gardens\", \"CLASS\": \"CDP\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"85992\", \"CAPITAL\": \"N\", \"AREALAND\": 4.458000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 19771, \"WHITE\": 17475, \"BLACK\": 258, \"AMERI_ES\": 197, \"ASIAN\": 269, \"HAWN_PI\": 56, \"OTHER\": 794, \"MULT_RACE\": 722, \"HISPANIC\": 2424, \"MALES\": 9712, \"FEMALES\": 10059, \"AGE_UNDER5\": 1321, \"AGE_5_17\": 4004, \"AGE_18_21\": 1006, \"AGE_22_29\": 2106, \"AGE_30_39\": 3112, \"AGE_40_49\": 3319, \"AGE_50_64\": 2859, \"AGE_65_UP\": 2044, \"MED_AGE\": 35.200000, \"MED_AGE_M\": 34.000000, \"MED_AGE_F\": 36.300000, \"HOUSEHOLDS\": 7218, \"AVE_HH_SZ\": 2.720000, \"HSEHLD_1_M\": 662, \"HSEHLD_1_F\": 864, \"MARHH_CHD\": 1796, \"MARHH_NO_C\": 2007, \"MHH_CHILD\": 216, \"FHH_CHILD\": 539, \"FAMILIES\": 5149, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 7423, \"VACANT\": 205, \"OWNER_OCC\": 4467, \"RENTER_OCC\": 2751 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -116.927076016468675, 32.841122617111232 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Woodland\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"86328\", \"CAPITAL\": \"N\", \"AREALAND\": 10.314000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 49151, \"WHITE\": 32851, \"BLACK\": 631, \"AMERI_ES\": 718, \"ASIAN\": 1851, \"HAWN_PI\": 136, \"OTHER\": 10566, \"MULT_RACE\": 2398, \"HISPANIC\": 19084, \"MALES\": 24099, \"FEMALES\": 25052, \"AGE_UNDER5\": 3958, \"AGE_5_17\": 10661, \"AGE_18_21\": 2751, \"AGE_22_29\": 5438, \"AGE_30_39\": 7655, \"AGE_40_49\": 7097, \"AGE_50_64\": 6425, \"AGE_65_UP\": 5166, \"MED_AGE\": 32.400000, \"MED_AGE_M\": 31.100000, \"MED_AGE_F\": 33.700000, \"HOUSEHOLDS\": 16751, \"AVE_HH_SZ\": 2.890000, \"HSEHLD_1_M\": 1340, \"HSEHLD_1_F\": 2181, \"MARHH_CHD\": 4851, \"MARHH_NO_C\": 4336, \"MHH_CHILD\": 531, \"FHH_CHILD\": 1337, \"FAMILIES\": 12285, \"AVE_FAM_SZ\": 3.370000, \"HSE_UNITS\": 17120, \"VACANT\": 369, \"OWNER_OCC\": 9799, \"RENTER_OCC\": 6952 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.766086328620915, 38.674854042286306 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Yorba Linda\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"86832\", \"CAPITAL\": \"N\", \"AREALAND\": 19.366000, \"AREAWATER\": 0.493000, \"POP_CL\": 7, \"POP2000\": 58918, \"WHITE\": 48015, \"BLACK\": 688, \"AMERI_ES\": 220, \"ASIAN\": 6537, \"HAWN_PI\": 56, \"OTHER\": 1593, \"MULT_RACE\": 1809, \"HISPANIC\": 6044, \"MALES\": 28943, \"FEMALES\": 29975, \"AGE_UNDER5\": 3507, \"AGE_5_17\": 13756, \"AGE_18_21\": 2800, \"AGE_22_29\": 3844, \"AGE_30_39\": 8289, \"AGE_40_49\": 11764, \"AGE_50_64\": 10432, \"AGE_65_UP\": 4526, \"MED_AGE\": 37.400000, \"MED_AGE_M\": 36.900000, \"MED_AGE_F\": 38.000000, \"HOUSEHOLDS\": 19252, \"AVE_HH_SZ\": 3.050000, \"HSEHLD_1_M\": 934, \"HSEHLD_1_F\": 1453, \"MARHH_CHD\": 7464, \"MARHH_NO_C\": 6453, \"MHH_CHILD\": 293, \"FHH_CHILD\": 862, \"FAMILIES\": 16096, \"AVE_FAM_SZ\": 3.350000, \"HSE_UNITS\": 19567, \"VACANT\": 315, \"OWNER_OCC\": 16314, \"RENTER_OCC\": 2938 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.788057531922206, 33.886138624217338 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Yuba City\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"86972\", \"CAPITAL\": \"N\", \"AREALAND\": 9.366000, \"AREAWATER\": 0.064000, \"POP_CL\": 6, \"POP2000\": 36758, \"WHITE\": 24611, \"BLACK\": 1035, \"AMERI_ES\": 643, \"ASIAN\": 3284, \"HAWN_PI\": 107, \"OTHER\": 5281, \"MULT_RACE\": 1797, \"HISPANIC\": 9029, \"MALES\": 17960, \"FEMALES\": 18798, \"AGE_UNDER5\": 2981, \"AGE_5_17\": 7676, \"AGE_18_21\": 2230, \"AGE_22_29\": 4476, \"AGE_30_39\": 5462, \"AGE_40_49\": 4801, \"AGE_50_64\": 4644, \"AGE_65_UP\": 4488, \"MED_AGE\": 31.800000, \"MED_AGE_M\": 30.200000, \"MED_AGE_F\": 33.600000, \"HOUSEHOLDS\": 13290, \"AVE_HH_SZ\": 2.700000, \"HSEHLD_1_M\": 1472, \"HSEHLD_1_F\": 2052, \"MARHH_CHD\": 3165, \"MARHH_NO_C\": 3164, \"MHH_CHILD\": 427, \"FHH_CHILD\": 1285, \"FAMILIES\": 8947, \"AVE_FAM_SZ\": 3.280000, \"HSE_UNITS\": 13912, \"VACANT\": 622, \"OWNER_OCC\": 6293, \"RENTER_OCC\": 6997 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.619952148030222, 39.135556650802776 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Yucaipa\", \"CLASS\": \"city\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"87042\", \"CAPITAL\": \"N\", \"AREALAND\": 27.779000, \"AREAWATER\": 0.005000, \"POP_CL\": 6, \"POP2000\": 41207, \"WHITE\": 35113, \"BLACK\": 369, \"AMERI_ES\": 445, \"ASIAN\": 486, \"HAWN_PI\": 55, \"OTHER\": 3314, \"MULT_RACE\": 1425, \"HISPANIC\": 7561, \"MALES\": 19910, \"FEMALES\": 21297, \"AGE_UNDER5\": 2693, \"AGE_5_17\": 9069, \"AGE_18_21\": 1982, \"AGE_22_29\": 3260, \"AGE_30_39\": 5663, \"AGE_40_49\": 6357, \"AGE_50_64\": 5808, \"AGE_65_UP\": 6375, \"MED_AGE\": 36.800000, \"MED_AGE_M\": 35.300000, \"MED_AGE_F\": 38.200000, \"HOUSEHOLDS\": 15193, \"AVE_HH_SZ\": 2.670000, \"HSEHLD_1_M\": 1440, \"HSEHLD_1_F\": 2398, \"MARHH_CHD\": 3934, \"MARHH_NO_C\": 4300, \"MHH_CHILD\": 396, \"FHH_CHILD\": 1054, \"FAMILIES\": 10679, \"AVE_FAM_SZ\": 3.210000, \"HSE_UNITS\": 16112, \"VACANT\": 919, \"OWNER_OCC\": 11272, \"RENTER_OCC\": 3921 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.047845281916295, 34.030363868646909 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Yucca Valley\", \"CLASS\": \"town\", \"ST\": \"CA\", \"STFIPS\": \"06\", \"PLACEFIP\": \"87056\", \"CAPITAL\": \"N\", \"AREALAND\": 40.027000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 16865, \"WHITE\": 14716, \"BLACK\": 379, \"AMERI_ES\": 227, \"ASIAN\": 218, \"HAWN_PI\": 51, \"OTHER\": 772, \"MULT_RACE\": 502, \"HISPANIC\": 1922, \"MALES\": 8021, \"FEMALES\": 8844, \"AGE_UNDER5\": 989, \"AGE_5_17\": 3246, \"AGE_18_21\": 724, \"AGE_22_29\": 1155, \"AGE_30_39\": 1946, \"AGE_40_49\": 2281, \"AGE_50_64\": 2675, \"AGE_65_UP\": 3849, \"MED_AGE\": 41.600000, \"MED_AGE_M\": 39.600000, \"MED_AGE_F\": 43.200000, \"HOUSEHOLDS\": 6949, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 838, \"HSEHLD_1_F\": 1246, \"MARHH_CHD\": 1188, \"MARHH_NO_C\": 2088, \"MHH_CHILD\": 180, \"FHH_CHILD\": 572, \"FAMILIES\": 4487, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 7952, \"VACANT\": 1003, \"OWNER_OCC\": 4723, \"RENTER_OCC\": 2226 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -116.415871266372335, 34.126106906414961 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Arvada\", \"CLASS\": \"city\", \"ST\": \"CO\", \"STFIPS\": \"08\", \"PLACEFIP\": \"03455\", \"CAPITAL\": \"N\", \"AREALAND\": 32.656000, \"AREAWATER\": 0.187000, \"POP_CL\": 8, \"POP2000\": 102153, \"WHITE\": 92999, \"BLACK\": 672, \"AMERI_ES\": 665, \"ASIAN\": 2215, \"HAWN_PI\": 68, \"OTHER\": 3146, \"MULT_RACE\": 2388, \"HISPANIC\": 10031, \"MALES\": 50021, \"FEMALES\": 52132, \"AGE_UNDER5\": 6581, \"AGE_5_17\": 20228, \"AGE_18_21\": 4736, \"AGE_22_29\": 8882, \"AGE_30_39\": 16042, \"AGE_40_49\": 17665, \"AGE_50_64\": 17076, \"AGE_65_UP\": 10943, \"MED_AGE\": 37.200000, \"MED_AGE_M\": 36.200000, \"MED_AGE_F\": 38.000000, \"HOUSEHOLDS\": 39019, \"AVE_HH_SZ\": 2.600000, \"HSEHLD_1_M\": 3788, \"HSEHLD_1_F\": 5213, \"MARHH_CHD\": 10174, \"MARHH_NO_C\": 12261, \"MHH_CHILD\": 867, \"FHH_CHILD\": 2313, \"FAMILIES\": 27759, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 39733, \"VACANT\": 714, \"OWNER_OCC\": 29527, \"RENTER_OCC\": 9492 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -105.110973538316998, 39.819961882930244 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Aurora\", \"CLASS\": \"city\", \"ST\": \"CO\", \"STFIPS\": \"08\", \"PLACEFIP\": \"04000\", \"CAPITAL\": \"N\", \"AREALAND\": 142.503000, \"AREAWATER\": 0.239000, \"POP_CL\": 8, \"POP2000\": 276393, \"WHITE\": 190311, \"BLACK\": 37104, \"AMERI_ES\": 2248, \"ASIAN\": 12066, \"HAWN_PI\": 501, \"OTHER\": 22485, \"MULT_RACE\": 11678, \"HISPANIC\": 54764, \"MALES\": 136901, \"FEMALES\": 139492, \"AGE_UNDER5\": 22367, \"AGE_5_17\": 53841, \"AGE_18_21\": 14997, \"AGE_22_29\": 38148, \"AGE_30_39\": 47992, \"AGE_40_49\": 42834, \"AGE_50_64\": 35679, \"AGE_65_UP\": 20535, \"MED_AGE\": 31.700000, \"MED_AGE_M\": 30.800000, \"MED_AGE_F\": 32.800000, \"HOUSEHOLDS\": 105625, \"AVE_HH_SZ\": 2.600000, \"HSEHLD_1_M\": 13145, \"HSEHLD_1_F\": 15835, \"MARHH_CHD\": 25332, \"MARHH_NO_C\": 24185, \"MHH_CHILD\": 2929, \"FHH_CHILD\": 9245, \"FAMILIES\": 68866, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 109260, \"VACANT\": 3635, \"OWNER_OCC\": 67489, \"RENTER_OCC\": 38136 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -104.808099867244351, 39.695886892266543 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Berkley\", \"CLASS\": \"CDP\", \"ST\": \"CO\", \"STFIPS\": \"08\", \"PLACEFIP\": \"06172\", \"CAPITAL\": \"N\", \"AREALAND\": 4.037000, \"AREAWATER\": 0.149000, \"POP_CL\": 6, \"POP2000\": 10743, \"WHITE\": 7825, \"BLACK\": 117, \"AMERI_ES\": 169, \"ASIAN\": 506, \"HAWN_PI\": 19, \"OTHER\": 1676, \"MULT_RACE\": 431, \"HISPANIC\": 4643, \"MALES\": 5563, \"FEMALES\": 5180, \"AGE_UNDER5\": 907, \"AGE_5_17\": 2044, \"AGE_18_21\": 714, \"AGE_22_29\": 1308, \"AGE_30_39\": 1684, \"AGE_40_49\": 1617, \"AGE_50_64\": 1440, \"AGE_65_UP\": 1029, \"MED_AGE\": 32.500000, \"MED_AGE_M\": 31.900000, \"MED_AGE_F\": 33.100000, \"HOUSEHOLDS\": 3804, \"AVE_HH_SZ\": 2.820000, \"HSEHLD_1_M\": 509, \"HSEHLD_1_F\": 408, \"MARHH_CHD\": 860, \"MARHH_NO_C\": 935, \"MHH_CHILD\": 131, \"FHH_CHILD\": 276, \"FAMILIES\": 2587, \"AVE_FAM_SZ\": 3.360000, \"HSE_UNITS\": 3977, \"VACANT\": 173, \"OWNER_OCC\": 2686, \"RENTER_OCC\": 1118 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -105.026790635298084, 39.803785885263409 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Black Forest\", \"CLASS\": \"CDP\", \"ST\": \"CO\", \"STFIPS\": \"08\", \"PLACEFIP\": \"06970\", \"CAPITAL\": \"N\", \"AREALAND\": 127.457000, \"AREAWATER\": 0.073000, \"POP_CL\": 6, \"POP2000\": 13247, \"WHITE\": 12595, \"BLACK\": 113, \"AMERI_ES\": 88, \"ASIAN\": 94, \"HAWN_PI\": 5, \"OTHER\": 117, \"MULT_RACE\": 235, \"HISPANIC\": 438, \"MALES\": 6707, \"FEMALES\": 6540, \"AGE_UNDER5\": 707, \"AGE_5_17\": 3199, \"AGE_18_21\": 492, \"AGE_22_29\": 478, \"AGE_30_39\": 1879, \"AGE_40_49\": 3180, \"AGE_50_64\": 2493, \"AGE_65_UP\": 819, \"MED_AGE\": 39.600000, \"MED_AGE_M\": 39.500000, \"MED_AGE_F\": 39.600000, \"HOUSEHOLDS\": 4494, \"AVE_HH_SZ\": 2.940000, \"HSEHLD_1_M\": 255, \"HSEHLD_1_F\": 228, \"MARHH_CHD\": 1664, \"MARHH_NO_C\": 1883, \"MHH_CHILD\": 60, \"FHH_CHILD\": 121, \"FAMILIES\": 3852, \"AVE_FAM_SZ\": 3.170000, \"HSE_UNITS\": 4639, \"VACANT\": 145, \"OWNER_OCC\": 4169, \"RENTER_OCC\": 325 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -104.677696038423605, 39.036631901047343 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Boulder\", \"CLASS\": \"city\", \"ST\": \"CO\", \"STFIPS\": \"08\", \"PLACEFIP\": \"07850\", \"CAPITAL\": \"N\", \"AREALAND\": 24.374000, \"AREAWATER\": 0.997000, \"POP_CL\": 7, \"POP2000\": 94673, \"WHITE\": 83627, \"BLACK\": 1154, \"AMERI_ES\": 450, \"ASIAN\": 3806, \"HAWN_PI\": 48, \"OTHER\": 3318, \"MULT_RACE\": 2270, \"HISPANIC\": 7801, \"MALES\": 48895, \"FEMALES\": 45778, \"AGE_UNDER5\": 3888, \"AGE_5_17\": 10154, \"AGE_18_21\": 15452, \"AGE_22_29\": 19825, \"AGE_30_39\": 14168, \"AGE_40_49\": 12735, \"AGE_50_64\": 11060, \"AGE_65_UP\": 7391, \"MED_AGE\": 29.000000, \"MED_AGE_M\": 28.300000, \"MED_AGE_F\": 30.000000, \"HOUSEHOLDS\": 39596, \"AVE_HH_SZ\": 2.200000, \"HSEHLD_1_M\": 6644, \"HSEHLD_1_F\": 6688, \"MARHH_CHD\": 5776, \"MARHH_NO_C\": 7390, \"MHH_CHILD\": 479, \"FHH_CHILD\": 1678, \"FAMILIES\": 16802, \"AVE_FAM_SZ\": 2.840000, \"HSE_UNITS\": 40726, \"VACANT\": 1130, \"OWNER_OCC\": 19605, \"RENTER_OCC\": 19991 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -105.259500329634307, 40.019424877504555 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Brighton\", \"CLASS\": \"city\", \"ST\": \"CO\", \"STFIPS\": \"08\", \"PLACEFIP\": \"08675\", \"CAPITAL\": \"N\", \"AREALAND\": 17.078000, \"AREAWATER\": 0.055000, \"POP_CL\": 6, \"POP2000\": 20905, \"WHITE\": 16077, \"BLACK\": 206, \"AMERI_ES\": 308, \"ASIAN\": 230, \"HAWN_PI\": 9, \"OTHER\": 3406, \"MULT_RACE\": 669, \"HISPANIC\": 7990, \"MALES\": 10855, \"FEMALES\": 10050, \"AGE_UNDER5\": 1771, \"AGE_5_17\": 4205, \"AGE_18_21\": 1217, \"AGE_22_29\": 2598, \"AGE_30_39\": 3548, \"AGE_40_49\": 2910, \"AGE_50_64\": 2621, \"AGE_65_UP\": 2035, \"MED_AGE\": 31.900000, \"MED_AGE_M\": 30.900000, \"MED_AGE_F\": 33.100000, \"HOUSEHOLDS\": 6718, \"AVE_HH_SZ\": 2.920000, \"HSEHLD_1_M\": 556, \"HSEHLD_1_F\": 769, \"MARHH_CHD\": 2027, \"MARHH_NO_C\": 1908, \"MHH_CHILD\": 184, \"FHH_CHILD\": 489, \"FAMILIES\": 5060, \"AVE_FAM_SZ\": 3.340000, \"HSE_UNITS\": 6990, \"VACANT\": 272, \"OWNER_OCC\": 4791, \"RENTER_OCC\": 1927 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -104.809924839231371, 39.974183890021024 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Broomfield\", \"CLASS\": \"city\", \"ST\": \"CO\", \"STFIPS\": \"08\", \"PLACEFIP\": \"09280\", \"CAPITAL\": \"N\", \"AREALAND\": 27.113000, \"AREAWATER\": 0.340000, \"POP_CL\": 6, \"POP2000\": 38272, \"WHITE\": 33918, \"BLACK\": 352, \"AMERI_ES\": 235, \"ASIAN\": 1585, \"HAWN_PI\": 14, \"OTHER\": 1230, \"MULT_RACE\": 938, \"HISPANIC\": 3471, \"MALES\": 19227, \"FEMALES\": 19045, \"AGE_UNDER5\": 2998, \"AGE_5_17\": 8229, \"AGE_18_21\": 1699, \"AGE_22_29\": 4072, \"AGE_30_39\": 7262, \"AGE_40_49\": 6767, \"AGE_50_64\": 4734, \"AGE_65_UP\": 2511, \"MED_AGE\": 33.200000, \"MED_AGE_M\": 32.800000, \"MED_AGE_F\": 33.600000, \"HOUSEHOLDS\": 13842, \"AVE_HH_SZ\": 2.760000, \"HSEHLD_1_M\": 1340, \"HSEHLD_1_F\": 1332, \"MARHH_CHD\": 4608, \"MARHH_NO_C\": 3941, \"MHH_CHILD\": 337, \"FHH_CHILD\": 763, \"FAMILIES\": 10269, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 14322, \"VACANT\": 480, \"OWNER_OCC\": 10636, \"RENTER_OCC\": 3206 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -105.065917577179576, 39.931816883117598 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Canon City\", \"CLASS\": \"city\", \"ST\": \"CO\", \"STFIPS\": \"08\", \"PLACEFIP\": \"11810\", \"CAPITAL\": \"N\", \"AREALAND\": 12.017000, \"AREAWATER\": 0.010000, \"POP_CL\": 6, \"POP2000\": 15431, \"WHITE\": 14374, \"BLACK\": 246, \"AMERI_ES\": 161, \"ASIAN\": 83, \"HAWN_PI\": 9, \"OTHER\": 248, \"MULT_RACE\": 310, \"HISPANIC\": 1285, \"MALES\": 7720, \"FEMALES\": 7711, \"AGE_UNDER5\": 919, \"AGE_5_17\": 2705, \"AGE_18_21\": 604, \"AGE_22_29\": 1348, \"AGE_30_39\": 2186, \"AGE_40_49\": 2323, \"AGE_50_64\": 2249, \"AGE_65_UP\": 3097, \"MED_AGE\": 39.800000, \"MED_AGE_M\": 38.200000, \"MED_AGE_F\": 41.700000, \"HOUSEHOLDS\": 6164, \"AVE_HH_SZ\": 2.270000, \"HSEHLD_1_M\": 783, \"HSEHLD_1_F\": 1293, \"MARHH_CHD\": 1196, \"MARHH_NO_C\": 1765, \"MHH_CHILD\": 134, \"FHH_CHILD\": 444, \"FAMILIES\": 3805, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 6617, \"VACANT\": 453, \"OWNER_OCC\": 4109, \"RENTER_OCC\": 2055 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -105.228303568584266, 38.446799892626657 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Castle Rock\", \"CLASS\": \"town\", \"ST\": \"CO\", \"STFIPS\": \"08\", \"PLACEFIP\": \"12415\", \"CAPITAL\": \"N\", \"AREALAND\": 31.605000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 20224, \"WHITE\": 18980, \"BLACK\": 95, \"AMERI_ES\": 126, \"ASIAN\": 222, \"HAWN_PI\": 13, \"OTHER\": 376, \"MULT_RACE\": 412, \"HISPANIC\": 1250, \"MALES\": 10160, \"FEMALES\": 10064, \"AGE_UNDER5\": 1975, \"AGE_5_17\": 4407, \"AGE_18_21\": 792, \"AGE_22_29\": 2184, \"AGE_30_39\": 4204, \"AGE_40_49\": 3436, \"AGE_50_64\": 2271, \"AGE_65_UP\": 955, \"MED_AGE\": 31.900000, \"MED_AGE_M\": 31.300000, \"MED_AGE_F\": 32.400000, \"HOUSEHOLDS\": 7226, \"AVE_HH_SZ\": 2.780000, \"HSEHLD_1_M\": 597, \"HSEHLD_1_F\": 672, \"MARHH_CHD\": 2713, \"MARHH_NO_C\": 2006, \"MHH_CHILD\": 131, \"FHH_CHILD\": 461, \"FAMILIES\": 5540, \"AVE_FAM_SZ\": 3.180000, \"HSE_UNITS\": 7447, \"VACANT\": 221, \"OWNER_OCC\": 5358, \"RENTER_OCC\": 1868 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -104.851308856948265, 39.380821893538318 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Castlewood\", \"CLASS\": \"CDP\", \"ST\": \"CO\", \"STFIPS\": \"08\", \"PLACEFIP\": \"12442\", \"CAPITAL\": \"N\", \"AREALAND\": 6.149000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 25567, \"WHITE\": 23972, \"BLACK\": 274, \"AMERI_ES\": 58, \"ASIAN\": 717, \"HAWN_PI\": 5, \"OTHER\": 214, \"MULT_RACE\": 327, \"HISPANIC\": 1098, \"MALES\": 12549, \"FEMALES\": 13018, \"AGE_UNDER5\": 1385, \"AGE_5_17\": 5762, \"AGE_18_21\": 931, \"AGE_22_29\": 1859, \"AGE_30_39\": 3351, \"AGE_40_49\": 5312, \"AGE_50_64\": 5135, \"AGE_65_UP\": 1832, \"MED_AGE\": 38.900000, \"MED_AGE_M\": 37.800000, \"MED_AGE_F\": 39.800000, \"HOUSEHOLDS\": 9770, \"AVE_HH_SZ\": 2.610000, \"HSEHLD_1_M\": 867, \"HSEHLD_1_F\": 1186, \"MARHH_CHD\": 3063, \"MARHH_NO_C\": 2939, \"MHH_CHILD\": 155, \"FHH_CHILD\": 578, \"FAMILIES\": 7139, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 10006, \"VACANT\": 236, \"OWNER_OCC\": 7695, \"RENTER_OCC\": 2075 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -104.904537785582605, 39.585937890410555 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cimarron Hills\", \"CLASS\": \"CDP\", \"ST\": \"CO\", \"STFIPS\": \"08\", \"PLACEFIP\": \"14587\", \"CAPITAL\": \"N\", \"AREALAND\": 6.097000, \"AREAWATER\": 0.004000, \"POP_CL\": 6, \"POP2000\": 15194, \"WHITE\": 11953, \"BLACK\": 1217, \"AMERI_ES\": 120, \"ASIAN\": 387, \"HAWN_PI\": 63, \"OTHER\": 679, \"MULT_RACE\": 775, \"HISPANIC\": 1798, \"MALES\": 7589, \"FEMALES\": 7605, \"AGE_UNDER5\": 1492, \"AGE_5_17\": 3315, \"AGE_18_21\": 737, \"AGE_22_29\": 2170, \"AGE_30_39\": 3054, \"AGE_40_49\": 2213, \"AGE_50_64\": 1517, \"AGE_65_UP\": 696, \"MED_AGE\": 29.700000, \"MED_AGE_M\": 29.300000, \"MED_AGE_F\": 30.100000, \"HOUSEHOLDS\": 5382, \"AVE_HH_SZ\": 2.820000, \"HSEHLD_1_M\": 521, \"HSEHLD_1_F\": 426, \"MARHH_CHD\": 1760, \"MARHH_NO_C\": 1337, \"MHH_CHILD\": 174, \"FHH_CHILD\": 483, \"FAMILIES\": 4031, \"AVE_FAM_SZ\": 3.200000, \"HSE_UNITS\": 5556, \"VACANT\": 174, \"OWNER_OCC\": 3639, \"RENTER_OCC\": 1743 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -104.703501032945738, 38.855193901680288 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Clifton\", \"CLASS\": \"CDP\", \"ST\": \"CO\", \"STFIPS\": \"08\", \"PLACEFIP\": \"15165\", \"CAPITAL\": \"N\", \"AREALAND\": 6.779000, \"AREAWATER\": 0.076000, \"POP_CL\": 6, \"POP2000\": 17345, \"WHITE\": 15453, \"BLACK\": 96, \"AMERI_ES\": 246, \"ASIAN\": 68, \"HAWN_PI\": 8, \"OTHER\": 992, \"MULT_RACE\": 482, \"HISPANIC\": 2448, \"MALES\": 8353, \"FEMALES\": 8992, \"AGE_UNDER5\": 1645, \"AGE_5_17\": 3833, \"AGE_18_21\": 1054, \"AGE_22_29\": 2146, \"AGE_30_39\": 2612, \"AGE_40_49\": 2358, \"AGE_50_64\": 2008, \"AGE_65_UP\": 1689, \"MED_AGE\": 30.000000, \"MED_AGE_M\": 29.000000, \"MED_AGE_F\": 31.000000, \"HOUSEHOLDS\": 6327, \"AVE_HH_SZ\": 2.730000, \"HSEHLD_1_M\": 506, \"HSEHLD_1_F\": 715, \"MARHH_CHD\": 1726, \"MARHH_NO_C\": 1615, \"MHH_CHILD\": 240, \"FHH_CHILD\": 694, \"FAMILIES\": 4696, \"AVE_FAM_SZ\": 3.110000, \"HSE_UNITS\": 6640, \"VACANT\": 313, \"OWNER_OCC\": 4439, \"RENTER_OCC\": 1888 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -108.464204485564935, 39.077631250749263 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Colorado Springs\", \"CLASS\": \"city\", \"ST\": \"CO\", \"STFIPS\": \"08\", \"PLACEFIP\": \"16000\", \"CAPITAL\": \"N\", \"AREALAND\": 185.744000, \"AREAWATER\": 0.390000, \"POP_CL\": 8, \"POP2000\": 360890, \"WHITE\": 291095, \"BLACK\": 23677, \"AMERI_ES\": 3175, \"ASIAN\": 10179, \"HAWN_PI\": 764, \"OTHER\": 18091, \"MULT_RACE\": 13909, \"HISPANIC\": 43330, \"MALES\": 178469, \"FEMALES\": 182421, \"AGE_UNDER5\": 26920, \"AGE_5_17\": 68703, \"AGE_18_21\": 20949, \"AGE_22_29\": 44305, \"AGE_30_39\": 59076, \"AGE_40_49\": 57462, \"AGE_50_64\": 48696, \"AGE_65_UP\": 34779, \"MED_AGE\": 33.600000, \"MED_AGE_M\": 32.300000, \"MED_AGE_F\": 34.900000, \"HOUSEHOLDS\": 141516, \"AVE_HH_SZ\": 2.500000, \"HSEHLD_1_M\": 17859, \"HSEHLD_1_F\": 20334, \"MARHH_CHD\": 34930, \"MARHH_NO_C\": 37910, \"MHH_CHILD\": 3109, \"FHH_CHILD\": 10098, \"FAMILIES\": 93049, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 148690, \"VACANT\": 7174, \"OWNER_OCC\": 85981, \"RENTER_OCC\": 55535 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -104.791912958573818, 38.863442899221035 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Columbine\", \"CLASS\": \"CDP\", \"ST\": \"CO\", \"STFIPS\": \"08\", \"PLACEFIP\": \"16110\", \"CAPITAL\": \"N\", \"AREALAND\": 6.638000, \"AREAWATER\": 0.131000, \"POP_CL\": 6, \"POP2000\": 24095, \"WHITE\": 22848, \"BLACK\": 114, \"AMERI_ES\": 96, \"ASIAN\": 280, \"HAWN_PI\": 28, \"OTHER\": 378, \"MULT_RACE\": 351, \"HISPANIC\": 1345, \"MALES\": 12023, \"FEMALES\": 12072, \"AGE_UNDER5\": 1341, \"AGE_5_17\": 5167, \"AGE_18_21\": 1010, \"AGE_22_29\": 1583, \"AGE_30_39\": 3360, \"AGE_40_49\": 4661, \"AGE_50_64\": 4753, \"AGE_65_UP\": 2220, \"MED_AGE\": 39.100000, \"MED_AGE_M\": 38.400000, \"MED_AGE_F\": 39.700000, \"HOUSEHOLDS\": 8656, \"AVE_HH_SZ\": 2.770000, \"HSEHLD_1_M\": 579, \"HSEHLD_1_F\": 787, \"MARHH_CHD\": 2790, \"MARHH_NO_C\": 3246, \"MHH_CHILD\": 144, \"FHH_CHILD\": 363, \"FAMILIES\": 6937, \"AVE_FAM_SZ\": 3.110000, \"HSE_UNITS\": 8800, \"VACANT\": 144, \"OWNER_OCC\": 7974, \"RENTER_OCC\": 682 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -105.069330612590292, 39.587886886020371 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Commerce City\", \"CLASS\": \"city\", \"ST\": \"CO\", \"STFIPS\": \"08\", \"PLACEFIP\": \"16495\", \"CAPITAL\": \"N\", \"AREALAND\": 25.844000, \"AREAWATER\": 0.005000, \"POP_CL\": 6, \"POP2000\": 20991, \"WHITE\": 13761, \"BLACK\": 428, \"AMERI_ES\": 363, \"ASIAN\": 132, \"HAWN_PI\": 11, \"OTHER\": 5390, \"MULT_RACE\": 906, \"HISPANIC\": 11096, \"MALES\": 10960, \"FEMALES\": 10031, \"AGE_UNDER5\": 1910, \"AGE_5_17\": 4508, \"AGE_18_21\": 1416, \"AGE_22_29\": 2750, \"AGE_30_39\": 3128, \"AGE_40_49\": 2806, \"AGE_50_64\": 2539, \"AGE_65_UP\": 1934, \"MED_AGE\": 29.800000, \"MED_AGE_M\": 29.100000, \"MED_AGE_F\": 30.700000, \"HOUSEHOLDS\": 6668, \"AVE_HH_SZ\": 3.100000, \"HSEHLD_1_M\": 712, \"HSEHLD_1_F\": 603, \"MARHH_CHD\": 1652, \"MARHH_NO_C\": 1637, \"MHH_CHILD\": 297, \"FHH_CHILD\": 645, \"FAMILIES\": 4973, \"AVE_FAM_SZ\": 3.510000, \"HSE_UNITS\": 6873, \"VACANT\": 205, \"OWNER_OCC\": 4023, \"RENTER_OCC\": 2645 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -104.901137763243014, 39.840734888425452 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Denver\", \"CLASS\": \"city\", \"ST\": \"CO\", \"STFIPS\": \"08\", \"PLACEFIP\": \"20000\", \"CAPITAL\": \"Y\", \"AREALAND\": 153.350000, \"AREAWATER\": 1.587000, \"POP_CL\": 9, \"POP2000\": 554636, \"WHITE\": 362180, \"BLACK\": 61649, \"AMERI_ES\": 7290, \"ASIAN\": 15611, \"HAWN_PI\": 648, \"OTHER\": 86464, \"MULT_RACE\": 20794, \"HISPANIC\": 175704, \"MALES\": 280207, \"FEMALES\": 274429, \"AGE_UNDER5\": 37769, \"AGE_5_17\": 83997, \"AGE_18_21\": 29897, \"AGE_22_29\": 90415, \"AGE_30_39\": 98337, \"AGE_40_49\": 79026, \"AGE_50_64\": 72769, \"AGE_65_UP\": 62426, \"MED_AGE\": 33.100000, \"MED_AGE_M\": 32.200000, \"MED_AGE_F\": 34.300000, \"HOUSEHOLDS\": 239235, \"AVE_HH_SZ\": 2.270000, \"HSEHLD_1_M\": 44646, \"HSEHLD_1_F\": 49398, \"MARHH_CHD\": 35890, \"MARHH_NO_C\": 47126, \"MHH_CHILD\": 4496, \"FHH_CHILD\": 15212, \"FAMILIES\": 119300, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 251435, \"VACANT\": 12200, \"OWNER_OCC\": 125539, \"RENTER_OCC\": 113696 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -104.965484709236492, 39.726286887575114 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Durango\", \"CLASS\": \"city\", \"ST\": \"CO\", \"STFIPS\": \"08\", \"PLACEFIP\": \"22035\", \"CAPITAL\": \"N\", \"AREALAND\": 6.783000, \"AREAWATER\": 0.032000, \"POP_CL\": 6, \"POP2000\": 13922, \"WHITE\": 12090, \"BLACK\": 70, \"AMERI_ES\": 767, \"ASIAN\": 103, \"HAWN_PI\": 16, \"OTHER\": 574, \"MULT_RACE\": 302, \"HISPANIC\": 1436, \"MALES\": 7102, \"FEMALES\": 6820, \"AGE_UNDER5\": 516, \"AGE_5_17\": 1796, \"AGE_18_21\": 2330, \"AGE_22_29\": 2502, \"AGE_30_39\": 1610, \"AGE_40_49\": 2017, \"AGE_50_64\": 1666, \"AGE_65_UP\": 1485, \"MED_AGE\": 29.200000, \"MED_AGE_M\": 27.700000, \"MED_AGE_F\": 31.500000, \"HOUSEHOLDS\": 5492, \"AVE_HH_SZ\": 2.230000, \"HSEHLD_1_M\": 788, \"HSEHLD_1_F\": 956, \"MARHH_CHD\": 774, \"MARHH_NO_C\": 1104, \"MHH_CHILD\": 110, \"FHH_CHILD\": 347, \"FAMILIES\": 2604, \"AVE_FAM_SZ\": 2.830000, \"HSE_UNITS\": 5819, \"VACANT\": 327, \"OWNER_OCC\": 2842, \"RENTER_OCC\": 2650 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -107.871284294551714, 37.278666083591602 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Englewood\", \"CLASS\": \"city\", \"ST\": \"CO\", \"STFIPS\": \"08\", \"PLACEFIP\": \"24785\", \"CAPITAL\": \"N\", \"AREALAND\": 6.552000, \"AREAWATER\": 0.054000, \"POP_CL\": 6, \"POP2000\": 31727, \"WHITE\": 27846, \"BLACK\": 463, \"AMERI_ES\": 416, \"ASIAN\": 591, \"HAWN_PI\": 30, \"OTHER\": 1582, \"MULT_RACE\": 799, \"HISPANIC\": 4140, \"MALES\": 15715, \"FEMALES\": 16012, \"AGE_UNDER5\": 1826, \"AGE_5_17\": 4603, \"AGE_18_21\": 1545, \"AGE_22_29\": 4530, \"AGE_30_39\": 5598, \"AGE_40_49\": 5095, \"AGE_50_64\": 4014, \"AGE_65_UP\": 4516, \"MED_AGE\": 36.200000, \"MED_AGE_M\": 34.900000, \"MED_AGE_F\": 37.600000, \"HOUSEHOLDS\": 14392, \"AVE_HH_SZ\": 2.150000, \"HSEHLD_1_M\": 2730, \"HSEHLD_1_F\": 2729, \"MARHH_CHD\": 2149, \"MARHH_NO_C\": 3128, \"MHH_CHILD\": 335, \"FHH_CHILD\": 907, \"FAMILIES\": 7469, \"AVE_FAM_SZ\": 2.880000, \"HSE_UNITS\": 14916, \"VACANT\": 524, \"OWNER_OCC\": 7507, \"RENTER_OCC\": 6885 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -104.991984689898658, 39.646836887527421 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Federal Heights\", \"CLASS\": \"city\", \"ST\": \"CO\", \"STFIPS\": \"08\", \"PLACEFIP\": \"26270\", \"CAPITAL\": \"N\", \"AREALAND\": 1.795000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12065, \"WHITE\": 9656, \"BLACK\": 176, \"AMERI_ES\": 166, \"ASIAN\": 735, \"HAWN_PI\": 22, \"OTHER\": 941, \"MULT_RACE\": 369, \"HISPANIC\": 2729, \"MALES\": 5877, \"FEMALES\": 6188, \"AGE_UNDER5\": 994, \"AGE_5_17\": 2008, \"AGE_18_21\": 827, \"AGE_22_29\": 1917, \"AGE_30_39\": 1833, \"AGE_40_49\": 1411, \"AGE_50_64\": 1564, \"AGE_65_UP\": 1511, \"MED_AGE\": 31.300000, \"MED_AGE_M\": 30.500000, \"MED_AGE_F\": 32.500000, \"HOUSEHOLDS\": 5125, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 698, \"HSEHLD_1_F\": 911, \"MARHH_CHD\": 852, \"MARHH_NO_C\": 1181, \"MHH_CHILD\": 166, \"FHH_CHILD\": 452, \"FAMILIES\": 3022, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 5311, \"VACANT\": 186, \"OWNER_OCC\": 3102, \"RENTER_OCC\": 2023 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -105.014158642227343, 39.866084885070336 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fort Carson\", \"CLASS\": \"CDP\", \"ST\": \"CO\", \"STFIPS\": \"08\", \"PLACEFIP\": \"27370\", \"CAPITAL\": \"N\", \"AREALAND\": 9.377000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10566, \"WHITE\": 6630, \"BLACK\": 2114, \"AMERI_ES\": 176, \"ASIAN\": 226, \"HAWN_PI\": 79, \"OTHER\": 839, \"MULT_RACE\": 502, \"HISPANIC\": 1626, \"MALES\": 6984, \"FEMALES\": 3582, \"AGE_UNDER5\": 1310, \"AGE_5_17\": 1592, \"AGE_18_21\": 2324, \"AGE_22_29\": 3381, \"AGE_30_39\": 1603, \"AGE_40_49\": 303, \"AGE_50_64\": 44, \"AGE_65_UP\": 9, \"MED_AGE\": 22.100000, \"MED_AGE_M\": 22.200000, \"MED_AGE_F\": 21.900000, \"HOUSEHOLDS\": 1679, \"AVE_HH_SZ\": 3.700000, \"HSEHLD_1_M\": 41, \"HSEHLD_1_F\": 12, \"MARHH_CHD\": 1246, \"MARHH_NO_C\": 188, \"MHH_CHILD\": 22, \"FHH_CHILD\": 158, \"FAMILIES\": 1621, \"AVE_FAM_SZ\": 3.740000, \"HSE_UNITS\": 1845, \"VACANT\": 166, \"OWNER_OCC\": 18, \"RENTER_OCC\": 1661 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -104.784905975169465, 38.745743900316427 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fort Collins\", \"CLASS\": \"city\", \"ST\": \"CO\", \"STFIPS\": \"08\", \"PLACEFIP\": \"27425\", \"CAPITAL\": \"N\", \"AREALAND\": 46.543000, \"AREAWATER\": 0.597000, \"POP_CL\": 8, \"POP2000\": 118652, \"WHITE\": 106347, \"BLACK\": 1213, \"AMERI_ES\": 715, \"ASIAN\": 2948, \"HAWN_PI\": 143, \"OTHER\": 4281, \"MULT_RACE\": 3005, \"HISPANIC\": 10402, \"MALES\": 59593, \"FEMALES\": 59059, \"AGE_UNDER5\": 7001, \"AGE_5_17\": 18537, \"AGE_18_21\": 15891, \"AGE_22_29\": 21809, \"AGE_30_39\": 16961, \"AGE_40_49\": 16833, \"AGE_50_64\": 12290, \"AGE_65_UP\": 9330, \"MED_AGE\": 28.200000, \"MED_AGE_M\": 27.400000, \"MED_AGE_F\": 29.100000, \"HOUSEHOLDS\": 45882, \"AVE_HH_SZ\": 2.450000, \"HSEHLD_1_M\": 5434, \"HSEHLD_1_F\": 6510, \"MARHH_CHD\": 10119, \"MARHH_NO_C\": 10473, \"MHH_CHILD\": 778, \"FHH_CHILD\": 2416, \"FAMILIES\": 25780, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 47755, \"VACANT\": 1873, \"OWNER_OCC\": 26175, \"RENTER_OCC\": 19707 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -105.078300489908059, 40.559237877303403 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fort Morgan\", \"CLASS\": \"city\", \"ST\": \"CO\", \"STFIPS\": \"08\", \"PLACEFIP\": \"27810\", \"CAPITAL\": \"N\", \"AREALAND\": 4.463000, \"AREAWATER\": 0.064000, \"POP_CL\": 6, \"POP2000\": 11034, \"WHITE\": 8213, \"BLACK\": 31, \"AMERI_ES\": 111, \"ASIAN\": 20, \"HAWN_PI\": 27, \"OTHER\": 2275, \"MULT_RACE\": 357, \"HISPANIC\": 4308, \"MALES\": 5529, \"FEMALES\": 5505, \"AGE_UNDER5\": 986, \"AGE_5_17\": 2341, \"AGE_18_21\": 630, \"AGE_22_29\": 1248, \"AGE_30_39\": 1610, \"AGE_40_49\": 1459, \"AGE_50_64\": 1320, \"AGE_65_UP\": 1440, \"MED_AGE\": 31.900000, \"MED_AGE_M\": 30.300000, \"MED_AGE_F\": 34.000000, \"HOUSEHOLDS\": 3887, \"AVE_HH_SZ\": 2.790000, \"HSEHLD_1_M\": 353, \"HSEHLD_1_F\": 642, \"MARHH_CHD\": 1064, \"MARHH_NO_C\": 1057, \"MHH_CHILD\": 120, \"FHH_CHILD\": 273, \"FAMILIES\": 2736, \"AVE_FAM_SZ\": 3.320000, \"HSE_UNITS\": 4094, \"VACANT\": 207, \"OWNER_OCC\": 2596, \"RENTER_OCC\": 1291 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -103.799062500488745, 40.253261920985054 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fountain\", \"CLASS\": \"city\", \"ST\": \"CO\", \"STFIPS\": \"08\", \"PLACEFIP\": \"27865\", \"CAPITAL\": \"N\", \"AREALAND\": 13.997000, \"AREAWATER\": 0.015000, \"POP_CL\": 6, \"POP2000\": 15197, \"WHITE\": 11409, \"BLACK\": 1328, \"AMERI_ES\": 215, \"ASIAN\": 306, \"HAWN_PI\": 84, \"OTHER\": 1019, \"MULT_RACE\": 836, \"HISPANIC\": 2289, \"MALES\": 7532, \"FEMALES\": 7665, \"AGE_UNDER5\": 1434, \"AGE_5_17\": 3807, \"AGE_18_21\": 778, \"AGE_22_29\": 1751, \"AGE_30_39\": 2830, \"AGE_40_49\": 2151, \"AGE_50_64\": 1635, \"AGE_65_UP\": 811, \"MED_AGE\": 29.300000, \"MED_AGE_M\": 28.800000, \"MED_AGE_F\": 29.900000, \"HOUSEHOLDS\": 5039, \"AVE_HH_SZ\": 3.010000, \"HSEHLD_1_M\": 374, \"HSEHLD_1_F\": 373, \"MARHH_CHD\": 1799, \"MARHH_NO_C\": 1309, \"MHH_CHILD\": 177, \"FHH_CHILD\": 505, \"FAMILIES\": 4062, \"AVE_FAM_SZ\": 3.330000, \"HSE_UNITS\": 5219, \"VACANT\": 180, \"OWNER_OCC\": 3549, \"RENTER_OCC\": 1490 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -104.698155050828262, 38.693786903030471 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Golden\", \"CLASS\": \"city\", \"ST\": \"CO\", \"STFIPS\": \"08\", \"PLACEFIP\": \"30835\", \"CAPITAL\": \"N\", \"AREALAND\": 9.007000, \"AREAWATER\": 0.004000, \"POP_CL\": 6, \"POP2000\": 17159, \"WHITE\": 15556, \"BLACK\": 176, \"AMERI_ES\": 180, \"ASIAN\": 513, \"HAWN_PI\": 10, \"OTHER\": 340, \"MULT_RACE\": 384, \"HISPANIC\": 1130, \"MALES\": 9368, \"FEMALES\": 7791, \"AGE_UNDER5\": 977, \"AGE_5_17\": 2507, \"AGE_18_21\": 1979, \"AGE_22_29\": 2295, \"AGE_30_39\": 2916, \"AGE_40_49\": 2729, \"AGE_50_64\": 2391, \"AGE_65_UP\": 1365, \"MED_AGE\": 32.800000, \"MED_AGE_M\": 30.100000, \"MED_AGE_F\": 36.300000, \"HOUSEHOLDS\": 6877, \"AVE_HH_SZ\": 2.310000, \"HSEHLD_1_M\": 1040, \"HSEHLD_1_F\": 987, \"MARHH_CHD\": 1309, \"MARHH_NO_C\": 1767, \"MHH_CHILD\": 131, \"FHH_CHILD\": 375, \"FAMILIES\": 3916, \"AVE_FAM_SZ\": 2.850000, \"HSE_UNITS\": 7146, \"VACANT\": 269, \"OWNER_OCC\": 4238, \"RENTER_OCC\": 2639 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -105.210909426965742, 39.74683688115632 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Grand Junction\", \"CLASS\": \"city\", \"ST\": \"CO\", \"STFIPS\": \"08\", \"PLACEFIP\": \"31660\", \"CAPITAL\": \"N\", \"AREALAND\": 30.814000, \"AREAWATER\": 0.273000, \"POP_CL\": 6, \"POP2000\": 41986, \"WHITE\": 38533, \"BLACK\": 251, \"AMERI_ES\": 395, \"ASIAN\": 320, \"HAWN_PI\": 52, \"OTHER\": 1600, \"MULT_RACE\": 835, \"HISPANIC\": 4561, \"MALES\": 20464, \"FEMALES\": 21522, \"AGE_UNDER5\": 2353, \"AGE_5_17\": 6550, \"AGE_18_21\": 3219, \"AGE_22_29\": 4348, \"AGE_30_39\": 5236, \"AGE_40_49\": 6433, \"AGE_50_64\": 6351, \"AGE_65_UP\": 7496, \"MED_AGE\": 38.800000, \"MED_AGE_M\": 36.600000, \"MED_AGE_F\": 40.800000, \"HOUSEHOLDS\": 17865, \"AVE_HH_SZ\": 2.230000, \"HSEHLD_1_M\": 2386, \"HSEHLD_1_F\": 3553, \"MARHH_CHD\": 3132, \"MARHH_NO_C\": 5108, \"MHH_CHILD\": 376, \"FHH_CHILD\": 1046, \"FAMILIES\": 10549, \"AVE_FAM_SZ\": 2.840000, \"HSE_UNITS\": 18784, \"VACANT\": 919, \"OWNER_OCC\": 11183, \"RENTER_OCC\": 6682 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -108.559081603079491, 39.080531291532537 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Greeley\", \"CLASS\": \"city\", \"ST\": \"CO\", \"STFIPS\": \"08\", \"PLACEFIP\": \"32155\", \"CAPITAL\": \"N\", \"AREALAND\": 29.905000, \"AREAWATER\": 0.095000, \"POP_CL\": 7, \"POP2000\": 76930, \"WHITE\": 61853, \"BLACK\": 672, \"AMERI_ES\": 639, \"ASIAN\": 885, \"HAWN_PI\": 106, \"OTHER\": 10591, \"MULT_RACE\": 2184, \"HISPANIC\": 22683, \"MALES\": 37698, \"FEMALES\": 39232, \"AGE_UNDER5\": 5734, \"AGE_5_17\": 13989, \"AGE_18_21\": 9785, \"AGE_22_29\": 10645, \"AGE_30_39\": 10251, \"AGE_40_49\": 9703, \"AGE_50_64\": 9012, \"AGE_65_UP\": 7811, \"MED_AGE\": 28.500000, \"MED_AGE_M\": 27.600000, \"MED_AGE_F\": 29.400000, \"HOUSEHOLDS\": 27647, \"AVE_HH_SZ\": 2.630000, \"HSEHLD_1_M\": 2954, \"HSEHLD_1_F\": 4115, \"MARHH_CHD\": 6488, \"MARHH_NO_C\": 6964, \"MHH_CHILD\": 685, \"FHH_CHILD\": 1969, \"FAMILIES\": 17683, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 28972, \"VACANT\": 1325, \"OWNER_OCC\": 16142, \"RENTER_OCC\": 11505 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -104.723986878824576, 40.415118889271128 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Greenwood Village\", \"CLASS\": \"city\", \"ST\": \"CO\", \"STFIPS\": \"08\", \"PLACEFIP\": \"33035\", \"CAPITAL\": \"N\", \"AREALAND\": 8.108000, \"AREAWATER\": 0.005000, \"POP_CL\": 6, \"POP2000\": 11035, \"WHITE\": 10362, \"BLACK\": 126, \"AMERI_ES\": 21, \"ASIAN\": 281, \"HAWN_PI\": 5, \"OTHER\": 67, \"MULT_RACE\": 173, \"HISPANIC\": 344, \"MALES\": 5534, \"FEMALES\": 5501, \"AGE_UNDER5\": 587, \"AGE_5_17\": 2689, \"AGE_18_21\": 293, \"AGE_22_29\": 660, \"AGE_30_39\": 1140, \"AGE_40_49\": 2319, \"AGE_50_64\": 2342, \"AGE_65_UP\": 1005, \"MED_AGE\": 40.700000, \"MED_AGE_M\": 40.700000, \"MED_AGE_F\": 40.700000, \"HOUSEHOLDS\": 3997, \"AVE_HH_SZ\": 2.750000, \"HSEHLD_1_M\": 337, \"HSEHLD_1_F\": 364, \"MARHH_CHD\": 1468, \"MARHH_NO_C\": 1322, \"MHH_CHILD\": 54, \"FHH_CHILD\": 148, \"FAMILIES\": 3097, \"AVE_FAM_SZ\": 3.150000, \"HSE_UNITS\": 4206, \"VACANT\": 209, \"OWNER_OCC\": 3061, \"RENTER_OCC\": 936 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -104.911445775710334, 39.615887889974616 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Highlands Ranch\", \"CLASS\": \"CDP\", \"ST\": \"CO\", \"STFIPS\": \"08\", \"PLACEFIP\": \"36410\", \"CAPITAL\": \"N\", \"AREALAND\": 23.523000, \"AREAWATER\": 0.022000, \"POP_CL\": 7, \"POP2000\": 70931, \"WHITE\": 64375, \"BLACK\": 915, \"AMERI_ES\": 233, \"ASIAN\": 2861, \"HAWN_PI\": 52, \"OTHER\": 1079, \"MULT_RACE\": 1416, \"HISPANIC\": 3847, \"MALES\": 35134, \"FEMALES\": 35797, \"AGE_UNDER5\": 7782, \"AGE_5_17\": 15404, \"AGE_18_21\": 1763, \"AGE_22_29\": 6917, \"AGE_30_39\": 16948, \"AGE_40_49\": 12577, \"AGE_50_64\": 7222, \"AGE_65_UP\": 2318, \"MED_AGE\": 32.200000, \"MED_AGE_M\": 32.200000, \"MED_AGE_F\": 32.100000, \"HOUSEHOLDS\": 24544, \"AVE_HH_SZ\": 2.890000, \"HSEHLD_1_M\": 1678, \"HSEHLD_1_F\": 1846, \"MARHH_CHD\": 10889, \"MARHH_NO_C\": 7018, \"MHH_CHILD\": 308, \"FHH_CHILD\": 991, \"FAMILIES\": 19744, \"AVE_FAM_SZ\": 3.240000, \"HSE_UNITS\": 25421, \"VACANT\": 877, \"OWNER_OCC\": 21496, \"RENTER_OCC\": 3048 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -104.968078725739559, 39.544548889025208 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ken Caryl\", \"CLASS\": \"CDP\", \"ST\": \"CO\", \"STFIPS\": \"08\", \"PLACEFIP\": \"40377\", \"CAPITAL\": \"N\", \"AREALAND\": 9.748000, \"AREAWATER\": 0.005000, \"POP_CL\": 6, \"POP2000\": 30887, \"WHITE\": 28863, \"BLACK\": 220, \"AMERI_ES\": 136, \"ASIAN\": 549, \"HAWN_PI\": 23, \"OTHER\": 516, \"MULT_RACE\": 580, \"HISPANIC\": 2056, \"MALES\": 15327, \"FEMALES\": 15560, \"AGE_UNDER5\": 2235, \"AGE_5_17\": 7167, \"AGE_18_21\": 1280, \"AGE_22_29\": 2783, \"AGE_30_39\": 5675, \"AGE_40_49\": 6341, \"AGE_50_64\": 4105, \"AGE_65_UP\": 1301, \"MED_AGE\": 34.000000, \"MED_AGE_M\": 33.300000, \"MED_AGE_F\": 34.600000, \"HOUSEHOLDS\": 10911, \"AVE_HH_SZ\": 2.820000, \"HSEHLD_1_M\": 868, \"HSEHLD_1_F\": 1041, \"MARHH_CHD\": 4031, \"MARHH_NO_C\": 2985, \"MHH_CHILD\": 256, \"FHH_CHILD\": 646, \"FAMILIES\": 8363, \"AVE_FAM_SZ\": 3.230000, \"HSE_UNITS\": 11045, \"VACANT\": 134, \"OWNER_OCC\": 9695, \"RENTER_OCC\": 1216 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -105.103946574586828, 39.579715885225916 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lafayette\", \"CLASS\": \"city\", \"ST\": \"CO\", \"STFIPS\": \"08\", \"PLACEFIP\": \"41835\", \"CAPITAL\": \"N\", \"AREALAND\": 8.851000, \"AREAWATER\": 0.062000, \"POP_CL\": 6, \"POP2000\": 23197, \"WHITE\": 19841, \"BLACK\": 209, \"AMERI_ES\": 170, \"ASIAN\": 771, \"HAWN_PI\": 20, \"OTHER\": 1581, \"MULT_RACE\": 605, \"HISPANIC\": 3808, \"MALES\": 11465, \"FEMALES\": 11732, \"AGE_UNDER5\": 1845, \"AGE_5_17\": 4529, \"AGE_18_21\": 989, \"AGE_22_29\": 2526, \"AGE_30_39\": 4669, \"AGE_40_49\": 4480, \"AGE_50_64\": 2819, \"AGE_65_UP\": 1340, \"MED_AGE\": 33.800000, \"MED_AGE_M\": 32.900000, \"MED_AGE_F\": 34.500000, \"HOUSEHOLDS\": 8844, \"AVE_HH_SZ\": 2.620000, \"HSEHLD_1_M\": 937, \"HSEHLD_1_F\": 1081, \"MARHH_CHD\": 2454, \"MARHH_NO_C\": 2179, \"MHH_CHILD\": 214, \"FHH_CHILD\": 639, \"FAMILIES\": 5951, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 9115, \"VACANT\": 271, \"OWNER_OCC\": 6703, \"RENTER_OCC\": 2141 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -105.100525529887008, 39.995077881652925 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lakewood\", \"CLASS\": \"city\", \"ST\": \"CO\", \"STFIPS\": \"08\", \"PLACEFIP\": \"43000\", \"CAPITAL\": \"N\", \"AREALAND\": 41.591000, \"AREAWATER\": 0.874000, \"POP_CL\": 8, \"POP2000\": 144126, \"WHITE\": 125611, \"BLACK\": 2128, \"AMERI_ES\": 1599, \"ASIAN\": 3918, \"HAWN_PI\": 117, \"OTHER\": 7028, \"MULT_RACE\": 3725, \"HISPANIC\": 20949, \"MALES\": 71141, \"FEMALES\": 72985, \"AGE_UNDER5\": 8740, \"AGE_5_17\": 23302, \"AGE_18_21\": 7411, \"AGE_22_29\": 18168, \"AGE_30_39\": 22902, \"AGE_40_49\": 23118, \"AGE_50_64\": 23075, \"AGE_65_UP\": 17410, \"MED_AGE\": 36.500000, \"MED_AGE_M\": 35.300000, \"MED_AGE_F\": 37.800000, \"HOUSEHOLDS\": 60531, \"AVE_HH_SZ\": 2.320000, \"HSEHLD_1_M\": 8421, \"HSEHLD_1_F\": 10164, \"MARHH_CHD\": 11055, \"MARHH_NO_C\": 16239, \"MHH_CHILD\": 1410, \"FHH_CHILD\": 4091, \"FAMILIES\": 36474, \"AVE_FAM_SZ\": 2.920000, \"HSE_UNITS\": 62422, \"VACANT\": 1891, \"OWNER_OCC\": 36851, \"RENTER_OCC\": 23680 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -105.102857561049746, 39.706336884138082 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Littleton\", \"CLASS\": \"city\", \"ST\": \"CO\", \"STFIPS\": \"08\", \"PLACEFIP\": \"45255\", \"CAPITAL\": \"N\", \"AREALAND\": 13.515000, \"AREAWATER\": 0.408000, \"POP_CL\": 6, \"POP2000\": 40340, \"WHITE\": 37021, \"BLACK\": 466, \"AMERI_ES\": 293, \"ASIAN\": 670, \"HAWN_PI\": 24, \"OTHER\": 1078, \"MULT_RACE\": 788, \"HISPANIC\": 3408, \"MALES\": 19602, \"FEMALES\": 20738, \"AGE_UNDER5\": 2301, \"AGE_5_17\": 7080, \"AGE_18_21\": 1891, \"AGE_22_29\": 4017, \"AGE_30_39\": 5864, \"AGE_40_49\": 7042, \"AGE_50_64\": 6420, \"AGE_65_UP\": 5725, \"MED_AGE\": 38.600000, \"MED_AGE_M\": 36.700000, \"MED_AGE_F\": 40.200000, \"HOUSEHOLDS\": 17313, \"AVE_HH_SZ\": 2.290000, \"HSEHLD_1_M\": 2438, \"HSEHLD_1_F\": 3331, \"MARHH_CHD\": 3531, \"MARHH_NO_C\": 4664, \"MHH_CHILD\": 323, \"FHH_CHILD\": 998, \"FAMILIES\": 10384, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 18084, \"VACANT\": 771, \"OWNER_OCC\": 10750, \"RENTER_OCC\": 6563 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -105.010927674890453, 39.599690887425432 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Longmont\", \"CLASS\": \"city\", \"ST\": \"CO\", \"STFIPS\": \"08\", \"PLACEFIP\": \"45970\", \"CAPITAL\": \"N\", \"AREALAND\": 21.793000, \"AREAWATER\": 0.015000, \"POP_CL\": 7, \"POP2000\": 71093, \"WHITE\": 60255, \"BLACK\": 385, \"AMERI_ES\": 687, \"ASIAN\": 1252, \"HAWN_PI\": 43, \"OTHER\": 6907, \"MULT_RACE\": 1564, \"HISPANIC\": 13558, \"MALES\": 35166, \"FEMALES\": 35927, \"AGE_UNDER5\": 5537, \"AGE_5_17\": 14286, \"AGE_18_21\": 3386, \"AGE_22_29\": 7809, \"AGE_30_39\": 12065, \"AGE_40_49\": 11768, \"AGE_50_64\": 9702, \"AGE_65_UP\": 6540, \"MED_AGE\": 34.000000, \"MED_AGE_M\": 32.900000, \"MED_AGE_F\": 35.200000, \"HOUSEHOLDS\": 26667, \"AVE_HH_SZ\": 2.640000, \"HSEHLD_1_M\": 2720, \"HSEHLD_1_F\": 3608, \"MARHH_CHD\": 7304, \"MARHH_NO_C\": 7258, \"MHH_CHILD\": 756, \"FHH_CHILD\": 1785, \"FAMILIES\": 18458, \"AVE_FAM_SZ\": 3.150000, \"HSE_UNITS\": 27394, \"VACANT\": 727, \"OWNER_OCC\": 17487, \"RENTER_OCC\": 9180 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -105.109083498884416, 40.171582879868268 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Louisville\", \"CLASS\": \"city\", \"ST\": \"CO\", \"STFIPS\": \"08\", \"PLACEFIP\": \"46355\", \"CAPITAL\": \"N\", \"AREALAND\": 8.516000, \"AREAWATER\": 0.040000, \"POP_CL\": 6, \"POP2000\": 18937, \"WHITE\": 17264, \"BLACK\": 177, \"AMERI_ES\": 102, \"ASIAN\": 672, \"HAWN_PI\": 16, \"OTHER\": 347, \"MULT_RACE\": 359, \"HISPANIC\": 950, \"MALES\": 9404, \"FEMALES\": 9533, \"AGE_UNDER5\": 1201, \"AGE_5_17\": 4238, \"AGE_18_21\": 656, \"AGE_22_29\": 1683, \"AGE_30_39\": 3262, \"AGE_40_49\": 4367, \"AGE_50_64\": 2368, \"AGE_65_UP\": 1162, \"MED_AGE\": 36.000000, \"MED_AGE_M\": 34.900000, \"MED_AGE_F\": 36.900000, \"HOUSEHOLDS\": 7216, \"AVE_HH_SZ\": 2.610000, \"HSEHLD_1_M\": 728, \"HSEHLD_1_F\": 887, \"MARHH_CHD\": 2329, \"MARHH_NO_C\": 1736, \"MHH_CHILD\": 156, \"FHH_CHILD\": 437, \"FAMILIES\": 4947, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 7389, \"VACANT\": 173, \"OWNER_OCC\": 5492, \"RENTER_OCC\": 1724 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -105.144065480409907, 39.976034880702436 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Loveland\", \"CLASS\": \"city\", \"ST\": \"CO\", \"STFIPS\": \"08\", \"PLACEFIP\": \"46465\", \"CAPITAL\": \"N\", \"AREALAND\": 24.570000, \"AREAWATER\": 0.943000, \"POP_CL\": 7, \"POP2000\": 50608, \"WHITE\": 46990, \"BLACK\": 188, \"AMERI_ES\": 349, \"ASIAN\": 419, \"HAWN_PI\": 15, \"OTHER\": 1624, \"MULT_RACE\": 1023, \"HISPANIC\": 4337, \"MALES\": 24795, \"FEMALES\": 25813, \"AGE_UNDER5\": 3552, \"AGE_5_17\": 10062, \"AGE_18_21\": 2356, \"AGE_22_29\": 4871, \"AGE_30_39\": 7855, \"AGE_40_49\": 8347, \"AGE_50_64\": 7241, \"AGE_65_UP\": 6324, \"MED_AGE\": 36.000000, \"MED_AGE_M\": 34.600000, \"MED_AGE_F\": 37.300000, \"HOUSEHOLDS\": 19741, \"AVE_HH_SZ\": 2.550000, \"HSEHLD_1_M\": 1876, \"HSEHLD_1_F\": 2736, \"MARHH_CHD\": 5166, \"MARHH_NO_C\": 6181, \"MHH_CHILD\": 453, \"FHH_CHILD\": 1354, \"FAMILIES\": 14037, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 20299, \"VACANT\": 558, \"OWNER_OCC\": 13699, \"RENTER_OCC\": 6042 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -105.085866499008461, 40.404788878443718 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Montrose\", \"CLASS\": \"city\", \"ST\": \"CO\", \"STFIPS\": \"08\", \"PLACEFIP\": \"51745\", \"CAPITAL\": \"N\", \"AREALAND\": 11.469000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12344, \"WHITE\": 10987, \"BLACK\": 54, \"AMERI_ES\": 121, \"ASIAN\": 71, \"HAWN_PI\": 9, \"OTHER\": 808, \"MULT_RACE\": 294, \"HISPANIC\": 2143, \"MALES\": 5876, \"FEMALES\": 6468, \"AGE_UNDER5\": 826, \"AGE_5_17\": 2127, \"AGE_18_21\": 527, \"AGE_22_29\": 1121, \"AGE_30_39\": 1557, \"AGE_40_49\": 1642, \"AGE_50_64\": 2003, \"AGE_65_UP\": 2541, \"MED_AGE\": 40.100000, \"MED_AGE_M\": 37.600000, \"MED_AGE_F\": 42.200000, \"HOUSEHOLDS\": 5244, \"AVE_HH_SZ\": 2.290000, \"HSEHLD_1_M\": 608, \"HSEHLD_1_F\": 1067, \"MARHH_CHD\": 1012, \"MARHH_NO_C\": 1598, \"MHH_CHILD\": 103, \"FHH_CHILD\": 363, \"FAMILIES\": 3318, \"AVE_FAM_SZ\": 2.880000, \"HSE_UNITS\": 5581, \"VACANT\": 337, \"OWNER_OCC\": 3404, \"RENTER_OCC\": 1840 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -107.865534498859901, 38.476952066937358 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Northglenn\", \"CLASS\": \"city\", \"ST\": \"CO\", \"STFIPS\": \"08\", \"PLACEFIP\": \"54330\", \"CAPITAL\": \"N\", \"AREALAND\": 7.419000, \"AREAWATER\": 0.067000, \"POP_CL\": 6, \"POP2000\": 31575, \"WHITE\": 26221, \"BLACK\": 481, \"AMERI_ES\": 361, \"ASIAN\": 970, \"HAWN_PI\": 47, \"OTHER\": 2568, \"MULT_RACE\": 927, \"HISPANIC\": 6399, \"MALES\": 15795, \"FEMALES\": 15780, \"AGE_UNDER5\": 2320, \"AGE_5_17\": 6126, \"AGE_18_21\": 1753, \"AGE_22_29\": 3912, \"AGE_30_39\": 5335, \"AGE_40_49\": 4462, \"AGE_50_64\": 4449, \"AGE_65_UP\": 3218, \"MED_AGE\": 33.200000, \"MED_AGE_M\": 32.500000, \"MED_AGE_F\": 34.000000, \"HOUSEHOLDS\": 11610, \"AVE_HH_SZ\": 2.710000, \"HSEHLD_1_M\": 1379, \"HSEHLD_1_F\": 1293, \"MARHH_CHD\": 2801, \"MARHH_NO_C\": 3425, \"MHH_CHILD\": 324, \"FHH_CHILD\": 795, \"FAMILIES\": 8204, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 12051, \"VACANT\": 441, \"OWNER_OCC\": 7823, \"RENTER_OCC\": 3787 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -104.981889673661485, 39.897417885687489 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Parker\", \"CLASS\": \"town\", \"ST\": \"CO\", \"STFIPS\": \"08\", \"PLACEFIP\": \"57630\", \"CAPITAL\": \"N\", \"AREALAND\": 14.585000, \"AREAWATER\": 0.019000, \"POP_CL\": 6, \"POP2000\": 23558, \"WHITE\": 21814, \"BLACK\": 237, \"AMERI_ES\": 107, \"ASIAN\": 402, \"HAWN_PI\": 7, \"OTHER\": 443, \"MULT_RACE\": 548, \"HISPANIC\": 1366, \"MALES\": 11661, \"FEMALES\": 11897, \"AGE_UNDER5\": 2761, \"AGE_5_17\": 5247, \"AGE_18_21\": 687, \"AGE_22_29\": 2628, \"AGE_30_39\": 5840, \"AGE_40_49\": 3738, \"AGE_50_64\": 2023, \"AGE_65_UP\": 634, \"MED_AGE\": 30.700000, \"MED_AGE_M\": 30.600000, \"MED_AGE_F\": 30.900000, \"HOUSEHOLDS\": 7929, \"AVE_HH_SZ\": 2.960000, \"HSEHLD_1_M\": 468, \"HSEHLD_1_F\": 559, \"MARHH_CHD\": 3553, \"MARHH_NO_C\": 2142, \"MHH_CHILD\": 134, \"FHH_CHILD\": 479, \"FAMILIES\": 6528, \"AVE_FAM_SZ\": 3.270000, \"HSE_UNITS\": 8352, \"VACANT\": 423, \"OWNER_OCC\": 7083, \"RENTER_OCC\": 846 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -104.765831921928623, 39.519487894868377 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pueblo\", \"CLASS\": \"city\", \"ST\": \"CO\", \"STFIPS\": \"08\", \"PLACEFIP\": \"62000\", \"CAPITAL\": \"N\", \"AREALAND\": 45.076000, \"AREAWATER\": 0.296000, \"POP_CL\": 8, \"POP2000\": 102121, \"WHITE\": 77830, \"BLACK\": 2465, \"AMERI_ES\": 1766, \"ASIAN\": 683, \"HAWN_PI\": 63, \"OTHER\": 15526, \"MULT_RACE\": 3788, \"HISPANIC\": 45066, \"MALES\": 49442, \"FEMALES\": 52679, \"AGE_UNDER5\": 6864, \"AGE_5_17\": 18786, \"AGE_18_21\": 6354, \"AGE_22_29\": 10601, \"AGE_30_39\": 13292, \"AGE_40_49\": 14478, \"AGE_50_64\": 14779, \"AGE_65_UP\": 16967, \"MED_AGE\": 36.500000, \"MED_AGE_M\": 34.700000, \"MED_AGE_F\": 38.400000, \"HOUSEHOLDS\": 40307, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 5076, \"HSEHLD_1_F\": 7001, \"MARHH_CHD\": 7178, \"MARHH_NO_C\": 10760, \"MHH_CHILD\": 1126, \"FHH_CHILD\": 3717, \"FAMILIES\": 26115, \"AVE_FAM_SZ\": 3.030000, \"HSE_UNITS\": 43121, \"VACANT\": 2814, \"OWNER_OCC\": 26460, \"RENTER_OCC\": 13847 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -104.620392144241464, 38.266932908226416 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pueblo West\", \"CLASS\": \"CDP\", \"ST\": \"CO\", \"STFIPS\": \"08\", \"PLACEFIP\": \"62220\", \"CAPITAL\": \"N\", \"AREALAND\": 77.480000, \"AREAWATER\": 0.007000, \"POP_CL\": 6, \"POP2000\": 16899, \"WHITE\": 14947, \"BLACK\": 141, \"AMERI_ES\": 168, \"ASIAN\": 180, \"HAWN_PI\": 12, \"OTHER\": 1016, \"MULT_RACE\": 435, \"HISPANIC\": 3092, \"MALES\": 8461, \"FEMALES\": 8438, \"AGE_UNDER5\": 1437, \"AGE_5_17\": 3624, \"AGE_18_21\": 618, \"AGE_22_29\": 1628, \"AGE_30_39\": 2982, \"AGE_40_49\": 2634, \"AGE_50_64\": 2479, \"AGE_65_UP\": 1497, \"MED_AGE\": 34.100000, \"MED_AGE_M\": 34.200000, \"MED_AGE_F\": 34.000000, \"HOUSEHOLDS\": 5984, \"AVE_HH_SZ\": 2.800000, \"HSEHLD_1_M\": 433, \"HSEHLD_1_F\": 426, \"MARHH_CHD\": 2047, \"MARHH_NO_C\": 2118, \"MHH_CHILD\": 154, \"FHH_CHILD\": 320, \"FAMILIES\": 4847, \"AVE_FAM_SZ\": 3.100000, \"HSE_UNITS\": 6374, \"VACANT\": 390, \"OWNER_OCC\": 5000, \"RENTER_OCC\": 984 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -104.740503047906529, 38.331664904622428 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Security-Widefield\", \"CLASS\": \"CDP\", \"ST\": \"CO\", \"STFIPS\": \"08\", \"PLACEFIP\": \"68847\", \"CAPITAL\": \"N\", \"AREALAND\": 14.522000, \"AREAWATER\": 0.493000, \"POP_CL\": 6, \"POP2000\": 29845, \"WHITE\": 22075, \"BLACK\": 3145, \"AMERI_ES\": 242, \"ASIAN\": 914, \"HAWN_PI\": 168, \"OTHER\": 1598, \"MULT_RACE\": 1703, \"HISPANIC\": 3763, \"MALES\": 14714, \"FEMALES\": 15131, \"AGE_UNDER5\": 2071, \"AGE_5_17\": 7246, \"AGE_18_21\": 1465, \"AGE_22_29\": 2633, \"AGE_30_39\": 5000, \"AGE_40_49\": 4723, \"AGE_50_64\": 3956, \"AGE_65_UP\": 2751, \"MED_AGE\": 33.600000, \"MED_AGE_M\": 32.400000, \"MED_AGE_F\": 34.600000, \"HOUSEHOLDS\": 9960, \"AVE_HH_SZ\": 2.990000, \"HSEHLD_1_M\": 567, \"HSEHLD_1_F\": 857, \"MARHH_CHD\": 3383, \"MARHH_NO_C\": 3242, \"MHH_CHILD\": 239, \"FHH_CHILD\": 738, \"FAMILIES\": 8187, \"AVE_FAM_SZ\": 3.280000, \"HSE_UNITS\": 10177, \"VACANT\": 217, \"OWNER_OCC\": 8309, \"RENTER_OCC\": 1651 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -104.723225026413857, 38.744730901971614 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sherrelwood\", \"CLASS\": \"CDP\", \"ST\": \"CO\", \"STFIPS\": \"08\", \"PLACEFIP\": \"69810\", \"CAPITAL\": \"N\", \"AREALAND\": 2.445000, \"AREAWATER\": 0.020000, \"POP_CL\": 6, \"POP2000\": 17657, \"WHITE\": 12715, \"BLACK\": 214, \"AMERI_ES\": 209, \"ASIAN\": 596, \"HAWN_PI\": 33, \"OTHER\": 3183, \"MULT_RACE\": 707, \"HISPANIC\": 7032, \"MALES\": 8947, \"FEMALES\": 8710, \"AGE_UNDER5\": 1344, \"AGE_5_17\": 3496, \"AGE_18_21\": 1273, \"AGE_22_29\": 2325, \"AGE_30_39\": 2776, \"AGE_40_49\": 2396, \"AGE_50_64\": 2352, \"AGE_65_UP\": 1695, \"MED_AGE\": 31.400000, \"MED_AGE_M\": 30.800000, \"MED_AGE_F\": 32.200000, \"HOUSEHOLDS\": 6082, \"AVE_HH_SZ\": 2.900000, \"HSEHLD_1_M\": 579, \"HSEHLD_1_F\": 558, \"MARHH_CHD\": 1455, \"MARHH_NO_C\": 1755, \"MHH_CHILD\": 189, \"FHH_CHILD\": 502, \"FAMILIES\": 4451, \"AVE_FAM_SZ\": 3.310000, \"HSE_UNITS\": 6163, \"VACANT\": 81, \"OWNER_OCC\": 4167, \"RENTER_OCC\": 1915 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -105.00153865869936, 39.840721885628447 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Southglenn\", \"CLASS\": \"CDP\", \"ST\": \"CO\", \"STFIPS\": \"08\", \"PLACEFIP\": \"72505\", \"CAPITAL\": \"N\", \"AREALAND\": 9.742000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 43520, \"WHITE\": 41172, \"BLACK\": 345, \"AMERI_ES\": 175, \"ASIAN\": 796, \"HAWN_PI\": 24, \"OTHER\": 376, \"MULT_RACE\": 632, \"HISPANIC\": 1758, \"MALES\": 21014, \"FEMALES\": 22506, \"AGE_UNDER5\": 2317, \"AGE_5_17\": 9045, \"AGE_18_21\": 1522, \"AGE_22_29\": 2686, \"AGE_30_39\": 5714, \"AGE_40_49\": 8183, \"AGE_50_64\": 8722, \"AGE_65_UP\": 5331, \"MED_AGE\": 40.600000, \"MED_AGE_M\": 39.400000, \"MED_AGE_F\": 41.600000, \"HOUSEHOLDS\": 16436, \"AVE_HH_SZ\": 2.620000, \"HSEHLD_1_M\": 1142, \"HSEHLD_1_F\": 2161, \"MARHH_CHD\": 4692, \"MARHH_NO_C\": 5767, \"MHH_CHILD\": 252, \"FHH_CHILD\": 851, \"FAMILIES\": 12356, \"AVE_FAM_SZ\": 3.030000, \"HSE_UNITS\": 16694, \"VACANT\": 258, \"OWNER_OCC\": 14312, \"RENTER_OCC\": 2124 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -104.9569617322135, 39.591734888929864 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sterling\", \"CLASS\": \"city\", \"ST\": \"CO\", \"STFIPS\": \"08\", \"PLACEFIP\": \"73935\", \"CAPITAL\": \"N\", \"AREALAND\": 6.872000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11360, \"WHITE\": 10309, \"BLACK\": 85, \"AMERI_ES\": 90, \"ASIAN\": 47, \"HAWN_PI\": 9, \"OTHER\": 636, \"MULT_RACE\": 184, \"HISPANIC\": 1613, \"MALES\": 5525, \"FEMALES\": 5835, \"AGE_UNDER5\": 817, \"AGE_5_17\": 2084, \"AGE_18_21\": 1024, \"AGE_22_29\": 1146, \"AGE_30_39\": 1380, \"AGE_40_49\": 1572, \"AGE_50_64\": 1473, \"AGE_65_UP\": 1864, \"MED_AGE\": 35.000000, \"MED_AGE_M\": 32.100000, \"MED_AGE_F\": 37.200000, \"HOUSEHOLDS\": 4604, \"AVE_HH_SZ\": 2.340000, \"HSEHLD_1_M\": 663, \"HSEHLD_1_F\": 907, \"MARHH_CHD\": 977, \"MARHH_NO_C\": 1148, \"MHH_CHILD\": 96, \"FHH_CHILD\": 337, \"FAMILIES\": 2790, \"AVE_FAM_SZ\": 3.030000, \"HSE_UNITS\": 5171, \"VACANT\": 567, \"OWNER_OCC\": 2922, \"RENTER_OCC\": 1682 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -103.211782700395915, 40.625429937720227 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Thornton\", \"CLASS\": \"city\", \"ST\": \"CO\", \"STFIPS\": \"08\", \"PLACEFIP\": \"77290\", \"CAPITAL\": \"N\", \"AREALAND\": 26.863000, \"AREAWATER\": 0.336000, \"POP_CL\": 7, \"POP2000\": 82384, \"WHITE\": 68137, \"BLACK\": 1206, \"AMERI_ES\": 924, \"ASIAN\": 2063, \"HAWN_PI\": 87, \"OTHER\": 7380, \"MULT_RACE\": 2587, \"HISPANIC\": 17583, \"MALES\": 40978, \"FEMALES\": 41406, \"AGE_UNDER5\": 7242, \"AGE_5_17\": 17506, \"AGE_18_21\": 4421, \"AGE_22_29\": 10683, \"AGE_30_39\": 15381, \"AGE_40_49\": 12949, \"AGE_50_64\": 9591, \"AGE_65_UP\": 4611, \"MED_AGE\": 30.800000, \"MED_AGE_M\": 30.500000, \"MED_AGE_F\": 31.100000, \"HOUSEHOLDS\": 28882, \"AVE_HH_SZ\": 2.830000, \"HSEHLD_1_M\": 2728, \"HSEHLD_1_F\": 2683, \"MARHH_CHD\": 9096, \"MARHH_NO_C\": 7590, \"MHH_CHILD\": 897, \"FHH_CHILD\": 2213, \"FAMILIES\": 21528, \"AVE_FAM_SZ\": 3.250000, \"HSE_UNITS\": 29573, \"VACANT\": 691, \"OWNER_OCC\": 22448, \"RENTER_OCC\": 6434 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -104.95440470215209, 39.903042886405345 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Welby\", \"CLASS\": \"CDP\", \"ST\": \"CO\", \"STFIPS\": \"08\", \"PLACEFIP\": \"83120\", \"CAPITAL\": \"N\", \"AREALAND\": 3.839000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12973, \"WHITE\": 9271, \"BLACK\": 205, \"AMERI_ES\": 228, \"ASIAN\": 153, \"HAWN_PI\": 15, \"OTHER\": 2507, \"MULT_RACE\": 594, \"HISPANIC\": 4792, \"MALES\": 6455, \"FEMALES\": 6518, \"AGE_UNDER5\": 1079, \"AGE_5_17\": 2597, \"AGE_18_21\": 756, \"AGE_22_29\": 1927, \"AGE_30_39\": 2136, \"AGE_40_49\": 1740, \"AGE_50_64\": 1699, \"AGE_65_UP\": 1039, \"MED_AGE\": 30.500000, \"MED_AGE_M\": 30.000000, \"MED_AGE_F\": 31.000000, \"HOUSEHOLDS\": 4614, \"AVE_HH_SZ\": 2.800000, \"HSEHLD_1_M\": 514, \"HSEHLD_1_F\": 517, \"MARHH_CHD\": 1099, \"MARHH_NO_C\": 1165, \"MHH_CHILD\": 153, \"FHH_CHILD\": 433, \"FAMILIES\": 3250, \"AVE_FAM_SZ\": 3.280000, \"HSE_UNITS\": 4771, \"VACANT\": 157, \"OWNER_OCC\": 3529, \"RENTER_OCC\": 1085 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -104.965845696047396, 39.847167886553464 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Westminster\", \"CLASS\": \"city\", \"ST\": \"CO\", \"STFIPS\": \"08\", \"PLACEFIP\": \"83835\", \"CAPITAL\": \"N\", \"AREALAND\": 31.505000, \"AREAWATER\": 1.357000, \"POP_CL\": 8, \"POP2000\": 100940, \"WHITE\": 84983, \"BLACK\": 1237, \"AMERI_ES\": 745, \"ASIAN\": 5534, \"HAWN_PI\": 77, \"OTHER\": 5575, \"MULT_RACE\": 2789, \"HISPANIC\": 15369, \"MALES\": 50509, \"FEMALES\": 50431, \"AGE_UNDER5\": 7327, \"AGE_5_17\": 19783, \"AGE_18_21\": 5173, \"AGE_22_29\": 13245, \"AGE_30_39\": 18395, \"AGE_40_49\": 17174, \"AGE_50_64\": 13261, \"AGE_65_UP\": 6582, \"MED_AGE\": 32.600000, \"MED_AGE_M\": 31.800000, \"MED_AGE_F\": 33.500000, \"HOUSEHOLDS\": 38343, \"AVE_HH_SZ\": 2.620000, \"HSEHLD_1_M\": 4366, \"HSEHLD_1_F\": 4737, \"MARHH_CHD\": 10417, \"MARHH_NO_C\": 10127, \"MHH_CHILD\": 967, \"FHH_CHILD\": 2302, \"FAMILIES\": 26024, \"AVE_FAM_SZ\": 3.150000, \"HSE_UNITS\": 39318, \"VACANT\": 975, \"OWNER_OCC\": 26724, \"RENTER_OCC\": 11619 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -105.057220593682914, 39.873417883854984 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wheat Ridge\", \"CLASS\": \"city\", \"ST\": \"CO\", \"STFIPS\": \"08\", \"PLACEFIP\": \"84440\", \"CAPITAL\": \"N\", \"AREALAND\": 9.090000, \"AREAWATER\": 0.017000, \"POP_CL\": 6, \"POP2000\": 32913, \"WHITE\": 29361, \"BLACK\": 275, \"AMERI_ES\": 309, \"ASIAN\": 450, \"HAWN_PI\": 38, \"OTHER\": 1642, \"MULT_RACE\": 838, \"HISPANIC\": 4434, \"MALES\": 15577, \"FEMALES\": 17336, \"AGE_UNDER5\": 2021, \"AGE_5_17\": 4966, \"AGE_18_21\": 1312, \"AGE_22_29\": 3281, \"AGE_30_39\": 4884, \"AGE_40_49\": 5247, \"AGE_50_64\": 4948, \"AGE_65_UP\": 6254, \"MED_AGE\": 40.000000, \"MED_AGE_M\": 38.100000, \"MED_AGE_F\": 41.800000, \"HOUSEHOLDS\": 14559, \"AVE_HH_SZ\": 2.200000, \"HSEHLD_1_M\": 2061, \"HSEHLD_1_F\": 3086, \"MARHH_CHD\": 2298, \"MARHH_NO_C\": 3727, \"MHH_CHILD\": 331, \"FHH_CHILD\": 1017, \"FAMILIES\": 8311, \"AVE_FAM_SZ\": 2.850000, \"HSE_UNITS\": 14931, \"VACANT\": 372, \"OWNER_OCC\": 7943, \"RENTER_OCC\": 6616 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -105.096115561207398, 39.771316883736851 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ansonia\", \"CLASS\": \"city\", \"ST\": \"CT\", \"STFIPS\": \"09\", \"PLACEFIP\": \"01150\", \"CAPITAL\": \"N\", \"AREALAND\": 6.031000, \"AREAWATER\": 0.160000, \"POP_CL\": 6, \"POP2000\": 18554, \"WHITE\": 15867, \"BLACK\": 1562, \"AMERI_ES\": 63, \"ASIAN\": 209, \"HAWN_PI\": 3, \"OTHER\": 411, \"MULT_RACE\": 439, \"HISPANIC\": 1376, \"MALES\": 8820, \"FEMALES\": 9734, \"AGE_UNDER5\": 1281, \"AGE_5_17\": 3208, \"AGE_18_21\": 816, \"AGE_22_29\": 1910, \"AGE_30_39\": 3094, \"AGE_40_49\": 2698, \"AGE_50_64\": 2676, \"AGE_65_UP\": 2871, \"MED_AGE\": 36.800000, \"MED_AGE_M\": 35.700000, \"MED_AGE_F\": 37.800000, \"HOUSEHOLDS\": 7507, \"AVE_HH_SZ\": 2.460000, \"HSEHLD_1_M\": 893, \"HSEHLD_1_F\": 1250, \"MARHH_CHD\": 1522, \"MARHH_NO_C\": 1942, \"MHH_CHILD\": 143, \"FHH_CHILD\": 692, \"FAMILIES\": 4980, \"AVE_FAM_SZ\": 3.030000, \"HSE_UNITS\": 7937, \"VACANT\": 430, \"OWNER_OCC\": 4171, \"RENTER_OCC\": 3336 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.074659711607652, 41.34270239551752 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bridgeport\", \"CLASS\": \"city\", \"ST\": \"CT\", \"STFIPS\": \"09\", \"PLACEFIP\": \"08000\", \"CAPITAL\": \"N\", \"AREALAND\": 15.999000, \"AREAWATER\": 3.398000, \"POP_CL\": 8, \"POP2000\": 139529, \"WHITE\": 62822, \"BLACK\": 42925, \"AMERI_ES\": 664, \"ASIAN\": 4536, \"HAWN_PI\": 148, \"OTHER\": 20659, \"MULT_RACE\": 7775, \"HISPANIC\": 44478, \"MALES\": 66554, \"FEMALES\": 72975, \"AGE_UNDER5\": 11397, \"AGE_5_17\": 28275, \"AGE_18_21\": 8960, \"AGE_22_29\": 17853, \"AGE_30_39\": 21713, \"AGE_40_49\": 17777, \"AGE_50_64\": 17542, \"AGE_65_UP\": 16012, \"MED_AGE\": 31.400000, \"MED_AGE_M\": 29.900000, \"MED_AGE_F\": 32.900000, \"HOUSEHOLDS\": 50307, \"AVE_HH_SZ\": 2.700000, \"HSEHLD_1_M\": 6248, \"HSEHLD_1_F\": 8329, \"MARHH_CHD\": 8462, \"MARHH_NO_C\": 9156, \"MHH_CHILD\": 1308, \"FHH_CHILD\": 7474, \"FAMILIES\": 32730, \"AVE_FAM_SZ\": 3.340000, \"HSE_UNITS\": 54367, \"VACANT\": 4060, \"OWNER_OCC\": 21755, \"RENTER_OCC\": 28552 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.196094993277583, 41.188607473955997 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bristol\", \"CLASS\": \"city\", \"ST\": \"CT\", \"STFIPS\": \"09\", \"PLACEFIP\": \"08420\", \"CAPITAL\": \"N\", \"AREALAND\": 26.507000, \"AREAWATER\": 0.337000, \"POP_CL\": 7, \"POP2000\": 60062, \"WHITE\": 55014, \"BLACK\": 1612, \"AMERI_ES\": 132, \"ASIAN\": 884, \"HAWN_PI\": 18, \"OTHER\": 1443, \"MULT_RACE\": 959, \"HISPANIC\": 3166, \"MALES\": 29041, \"FEMALES\": 31021, \"AGE_UNDER5\": 3761, \"AGE_5_17\": 10161, \"AGE_18_21\": 2204, \"AGE_22_29\": 6262, \"AGE_30_39\": 10179, \"AGE_40_49\": 9481, \"AGE_50_64\": 9089, \"AGE_65_UP\": 8925, \"MED_AGE\": 37.600000, \"MED_AGE_M\": 36.300000, \"MED_AGE_F\": 38.900000, \"HOUSEHOLDS\": 24886, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 3019, \"HSEHLD_1_F\": 4161, \"MARHH_CHD\": 5236, \"MARHH_NO_C\": 7114, \"MHH_CHILD\": 479, \"FHH_CHILD\": 1652, \"FAMILIES\": 16179, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 26125, \"VACANT\": 1239, \"OWNER_OCC\": 15410, \"RENTER_OCC\": 9476 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -72.933866431260824, 41.682262580236106 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Central Manchester\", \"CLASS\": \"CDP\", \"ST\": \"CT\", \"STFIPS\": \"09\", \"PLACEFIP\": \"13435\", \"CAPITAL\": \"N\", \"AREALAND\": 6.454000, \"AREAWATER\": 0.028000, \"POP_CL\": 6, \"POP2000\": 30595, \"WHITE\": 25456, \"BLACK\": 2540, \"AMERI_ES\": 64, \"ASIAN\": 738, \"HAWN_PI\": 13, \"OTHER\": 1025, \"MULT_RACE\": 759, \"HISPANIC\": 2130, \"MALES\": 14727, \"FEMALES\": 15868, \"AGE_UNDER5\": 1881, \"AGE_5_17\": 5280, \"AGE_18_21\": 1264, \"AGE_22_29\": 3865, \"AGE_30_39\": 5190, \"AGE_40_49\": 4536, \"AGE_50_64\": 4037, \"AGE_65_UP\": 4542, \"MED_AGE\": 35.700000, \"MED_AGE_M\": 34.100000, \"MED_AGE_F\": 37.400000, \"HOUSEHOLDS\": 13080, \"AVE_HH_SZ\": 2.310000, \"HSEHLD_1_M\": 1787, \"HSEHLD_1_F\": 2493, \"MARHH_CHD\": 2235, \"MARHH_NO_C\": 2998, \"MHH_CHILD\": 258, \"FHH_CHILD\": 1160, \"FAMILIES\": 7583, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 13640, \"VACANT\": 560, \"OWNER_OCC\": 7082, \"RENTER_OCC\": 5998 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -72.524106432980801, 41.778905360784059 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Conning Towers-Nautilus Park\", \"CLASS\": \"CDP\", \"ST\": \"CT\", \"STFIPS\": \"09\", \"PLACEFIP\": \"16960\", \"CAPITAL\": \"N\", \"AREALAND\": 4.983000, \"AREAWATER\": 0.611000, \"POP_CL\": 6, \"POP2000\": 10241, \"WHITE\": 8327, \"BLACK\": 985, \"AMERI_ES\": 58, \"ASIAN\": 238, \"HAWN_PI\": 33, \"OTHER\": 235, \"MULT_RACE\": 365, \"HISPANIC\": 635, \"MALES\": 5673, \"FEMALES\": 4568, \"AGE_UNDER5\": 1409, \"AGE_5_17\": 2115, \"AGE_18_21\": 1188, \"AGE_22_29\": 2323, \"AGE_30_39\": 2015, \"AGE_40_49\": 580, \"AGE_50_64\": 257, \"AGE_65_UP\": 354, \"MED_AGE\": 23.500000, \"MED_AGE_M\": 22.900000, \"MED_AGE_F\": 24.300000, \"HOUSEHOLDS\": 2660, \"AVE_HH_SZ\": 3.300000, \"HSEHLD_1_M\": 108, \"HSEHLD_1_F\": 81, \"MARHH_CHD\": 1630, \"MARHH_NO_C\": 591, \"MHH_CHILD\": 44, \"FHH_CHILD\": 113, \"FAMILIES\": 2421, \"AVE_FAM_SZ\": 3.450000, \"HSE_UNITS\": 2822, \"VACANT\": 162, \"OWNER_OCC\": 471, \"RENTER_OCC\": 2189 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -72.073184009284404, 41.383220349437082 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Danbury\", \"CLASS\": \"city\", \"ST\": \"CT\", \"STFIPS\": \"09\", \"PLACEFIP\": \"18430\", \"CAPITAL\": \"N\", \"AREALAND\": 42.111000, \"AREAWATER\": 2.186000, \"POP_CL\": 7, \"POP2000\": 74848, \"WHITE\": 56853, \"BLACK\": 5060, \"AMERI_ES\": 214, \"ASIAN\": 4082, \"HAWN_PI\": 26, \"OTHER\": 5653, \"MULT_RACE\": 2960, \"HISPANIC\": 11791, \"MALES\": 36690, \"FEMALES\": 38158, \"AGE_UNDER5\": 4900, \"AGE_5_17\": 11327, \"AGE_18_21\": 4297, \"AGE_22_29\": 9600, \"AGE_30_39\": 14034, \"AGE_40_49\": 11565, \"AGE_50_64\": 10889, \"AGE_65_UP\": 8236, \"MED_AGE\": 35.200000, \"MED_AGE_M\": 34.100000, \"MED_AGE_F\": 36.200000, \"HOUSEHOLDS\": 27183, \"AVE_HH_SZ\": 2.640000, \"HSEHLD_1_M\": 3137, \"HSEHLD_1_F\": 3993, \"MARHH_CHD\": 6403, \"MARHH_NO_C\": 7491, \"MHH_CHILD\": 393, \"FHH_CHILD\": 1448, \"FAMILIES\": 17880, \"AVE_FAM_SZ\": 3.180000, \"HSE_UNITS\": 28519, \"VACANT\": 1336, \"OWNER_OCC\": 15849, \"RENTER_OCC\": 11334 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.460858026546916, 41.403453755789506 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Darien\", \"CLASS\": \"CDP\", \"ST\": \"CT\", \"STFIPS\": \"09\", \"PLACEFIP\": \"18920\", \"CAPITAL\": \"N\", \"AREALAND\": 12.855000, \"AREAWATER\": 1.985000, \"POP_CL\": 6, \"POP2000\": 19607, \"WHITE\": 18816, \"BLACK\": 89, \"AMERI_ES\": 8, \"ASIAN\": 474, \"HAWN_PI\": 5, \"OTHER\": 58, \"MULT_RACE\": 157, \"HISPANIC\": 429, \"MALES\": 9615, \"FEMALES\": 9992, \"AGE_UNDER5\": 2028, \"AGE_5_17\": 4336, \"AGE_18_21\": 368, \"AGE_22_29\": 702, \"AGE_30_39\": 3142, \"AGE_40_49\": 3450, \"AGE_50_64\": 3145, \"AGE_65_UP\": 2436, \"MED_AGE\": 38.000000, \"MED_AGE_M\": 37.300000, \"MED_AGE_F\": 38.600000, \"HOUSEHOLDS\": 6592, \"AVE_HH_SZ\": 2.950000, \"HSEHLD_1_M\": 334, \"HSEHLD_1_F\": 693, \"MARHH_CHD\": 2833, \"MARHH_NO_C\": 2078, \"MHH_CHILD\": 37, \"FHH_CHILD\": 186, \"FAMILIES\": 5383, \"AVE_FAM_SZ\": 3.310000, \"HSE_UNITS\": 6792, \"VACANT\": 200, \"OWNER_OCC\": 5799, \"RENTER_OCC\": 793 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.483100233016572, 41.075672569258252 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Derby\", \"CLASS\": \"city\", \"ST\": \"CT\", \"STFIPS\": \"09\", \"PLACEFIP\": \"19480\", \"CAPITAL\": \"N\", \"AREALAND\": 4.981000, \"AREAWATER\": 0.402000, \"POP_CL\": 6, \"POP2000\": 12391, \"WHITE\": 11162, \"BLACK\": 449, \"AMERI_ES\": 20, \"ASIAN\": 215, \"HAWN_PI\": 8, \"OTHER\": 312, \"MULT_RACE\": 225, \"HISPANIC\": 950, \"MALES\": 5984, \"FEMALES\": 6407, \"AGE_UNDER5\": 758, \"AGE_5_17\": 1929, \"AGE_18_21\": 439, \"AGE_22_29\": 1415, \"AGE_30_39\": 2159, \"AGE_40_49\": 1764, \"AGE_50_64\": 1868, \"AGE_65_UP\": 2059, \"MED_AGE\": 37.700000, \"MED_AGE_M\": 36.000000, \"MED_AGE_F\": 39.500000, \"HOUSEHOLDS\": 5252, \"AVE_HH_SZ\": 2.320000, \"HSEHLD_1_M\": 734, \"HSEHLD_1_F\": 967, \"MARHH_CHD\": 933, \"MARHH_NO_C\": 1382, \"MHH_CHILD\": 101, \"FHH_CHILD\": 383, \"FAMILIES\": 3245, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 5568, \"VACANT\": 316, \"OWNER_OCC\": 3056, \"RENTER_OCC\": 2196 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.084522568319571, 41.323017316855243 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"East Hartford\", \"CLASS\": \"CDP\", \"ST\": \"CT\", \"STFIPS\": \"09\", \"PLACEFIP\": \"22700\", \"CAPITAL\": \"N\", \"AREALAND\": 18.024000, \"AREAWATER\": 0.757000, \"POP_CL\": 6, \"POP2000\": 49575, \"WHITE\": 32071, \"BLACK\": 9335, \"AMERI_ES\": 167, \"ASIAN\": 1989, \"HAWN_PI\": 18, \"OTHER\": 4333, \"MULT_RACE\": 1662, \"HISPANIC\": 7552, \"MALES\": 23672, \"FEMALES\": 25903, \"AGE_UNDER5\": 3223, \"AGE_5_17\": 8722, \"AGE_18_21\": 2118, \"AGE_22_29\": 5097, \"AGE_30_39\": 7703, \"AGE_40_49\": 7182, \"AGE_50_64\": 7797, \"AGE_65_UP\": 7733, \"MED_AGE\": 37.400000, \"MED_AGE_M\": 36.200000, \"MED_AGE_F\": 38.600000, \"HOUSEHOLDS\": 20206, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 2712, \"HSEHLD_1_F\": 3392, \"MARHH_CHD\": 3278, \"MARHH_NO_C\": 5111, \"MHH_CHILD\": 413, \"FHH_CHILD\": 2216, \"FAMILIES\": 12828, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 21273, \"VACANT\": 1067, \"OWNER_OCC\": 11626, \"RENTER_OCC\": 8580 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -72.615723222835868, 41.761473445510454 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"East Haven\", \"CLASS\": \"CDP\", \"ST\": \"CT\", \"STFIPS\": \"09\", \"PLACEFIP\": \"22980\", \"CAPITAL\": \"N\", \"AREALAND\": 12.264000, \"AREAWATER\": 1.157000, \"POP_CL\": 6, \"POP2000\": 28189, \"WHITE\": 26475, \"BLACK\": 396, \"AMERI_ES\": 40, \"ASIAN\": 539, \"HAWN_PI\": 4, \"OTHER\": 428, \"MULT_RACE\": 307, \"HISPANIC\": 1228, \"MALES\": 13461, \"FEMALES\": 14728, \"AGE_UNDER5\": 1639, \"AGE_5_17\": 4616, \"AGE_18_21\": 1124, \"AGE_22_29\": 2569, \"AGE_30_39\": 4792, \"AGE_40_49\": 4398, \"AGE_50_64\": 4379, \"AGE_65_UP\": 4672, \"MED_AGE\": 38.800000, \"MED_AGE_M\": 37.200000, \"MED_AGE_F\": 40.200000, \"HOUSEHOLDS\": 11219, \"AVE_HH_SZ\": 2.490000, \"HSEHLD_1_M\": 1234, \"HSEHLD_1_F\": 1881, \"MARHH_CHD\": 2381, \"MARHH_NO_C\": 3291, \"MHH_CHILD\": 184, \"FHH_CHILD\": 599, \"FAMILIES\": 7493, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 11698, \"VACANT\": 479, \"OWNER_OCC\": 8168, \"RENTER_OCC\": 3051 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -72.867129398241786, 41.288627045180334 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Groton\", \"CLASS\": \"city\", \"ST\": \"CT\", \"STFIPS\": \"09\", \"PLACEFIP\": \"34180\", \"CAPITAL\": \"N\", \"AREALAND\": 3.190000, \"AREAWATER\": 3.548000, \"POP_CL\": 6, \"POP2000\": 10010, \"WHITE\": 7780, \"BLACK\": 1019, \"AMERI_ES\": 93, \"ASIAN\": 355, \"HAWN_PI\": 5, \"OTHER\": 284, \"MULT_RACE\": 474, \"HISPANIC\": 773, \"MALES\": 5267, \"FEMALES\": 4743, \"AGE_UNDER5\": 773, \"AGE_5_17\": 1482, \"AGE_18_21\": 853, \"AGE_22_29\": 1651, \"AGE_30_39\": 1611, \"AGE_40_49\": 1382, \"AGE_50_64\": 1203, \"AGE_65_UP\": 1055, \"MED_AGE\": 31.600000, \"MED_AGE_M\": 29.600000, \"MED_AGE_F\": 33.800000, \"HOUSEHOLDS\": 4230, \"AVE_HH_SZ\": 2.190000, \"HSEHLD_1_M\": 737, \"HSEHLD_1_F\": 685, \"MARHH_CHD\": 597, \"MARHH_NO_C\": 891, \"MHH_CHILD\": 109, \"FHH_CHILD\": 571, \"FAMILIES\": 2446, \"AVE_FAM_SZ\": 2.770000, \"HSE_UNITS\": 4569, \"VACANT\": 339, \"OWNER_OCC\": 1687, \"RENTER_OCC\": 2543 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -72.073750246458602, 41.34525332649963 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hartford\", \"CLASS\": \"city\", \"ST\": \"CT\", \"STFIPS\": \"09\", \"PLACEFIP\": \"37000\", \"CAPITAL\": \"Y\", \"AREALAND\": 17.305000, \"AREAWATER\": 0.664000, \"POP_CL\": 8, \"POP2000\": 121578, \"WHITE\": 33705, \"BLACK\": 46264, \"AMERI_ES\": 659, \"ASIAN\": 1971, \"HAWN_PI\": 135, \"OTHER\": 32230, \"MULT_RACE\": 6614, \"HISPANIC\": 49260, \"MALES\": 58071, \"FEMALES\": 63507, \"AGE_UNDER5\": 10116, \"AGE_5_17\": 26452, \"AGE_18_21\": 9230, \"AGE_22_29\": 15632, \"AGE_30_39\": 18344, \"AGE_40_49\": 15274, \"AGE_50_64\": 14942, \"AGE_65_UP\": 11588, \"MED_AGE\": 29.700000, \"MED_AGE_M\": 28.300000, \"MED_AGE_F\": 31.000000, \"HOUSEHOLDS\": 44986, \"AVE_HH_SZ\": 2.580000, \"HSEHLD_1_M\": 7213, \"HSEHLD_1_F\": 7737, \"MARHH_CHD\": 5259, \"MARHH_NO_C\": 6096, \"MHH_CHILD\": 1174, \"FHH_CHILD\": 9048, \"FAMILIES\": 27189, \"AVE_FAM_SZ\": 3.330000, \"HSE_UNITS\": 50644, \"VACANT\": 5658, \"OWNER_OCC\": 11064, \"RENTER_OCC\": 33922 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -72.68882480365393, 41.762565749518728 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Meriden\", \"CLASS\": \"city\", \"ST\": \"CT\", \"STFIPS\": \"09\", \"PLACEFIP\": \"46450\", \"CAPITAL\": \"N\", \"AREALAND\": 23.746000, \"AREAWATER\": 0.396000, \"POP_CL\": 7, \"POP2000\": 58244, \"WHITE\": 46734, \"BLACK\": 3754, \"AMERI_ES\": 229, \"ASIAN\": 796, \"HAWN_PI\": 11, \"OTHER\": 5036, \"MULT_RACE\": 1684, \"HISPANIC\": 12296, \"MALES\": 28214, \"FEMALES\": 30030, \"AGE_UNDER5\": 4143, \"AGE_5_17\": 10823, \"AGE_18_21\": 2559, \"AGE_22_29\": 6096, \"AGE_30_39\": 9052, \"AGE_40_49\": 8788, \"AGE_50_64\": 8572, \"AGE_65_UP\": 8211, \"MED_AGE\": 36.200000, \"MED_AGE_M\": 34.900000, \"MED_AGE_F\": 37.600000, \"HOUSEHOLDS\": 22951, \"AVE_HH_SZ\": 2.490000, \"HSEHLD_1_M\": 2903, \"HSEHLD_1_F\": 3726, \"MARHH_CHD\": 4471, \"MARHH_NO_C\": 5943, \"MHH_CHILD\": 522, \"FHH_CHILD\": 2199, \"FAMILIES\": 14960, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 24631, \"VACANT\": 1680, \"OWNER_OCC\": 13743, \"RENTER_OCC\": 9208 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -72.799871524765919, 41.532979684505506 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Middletown\", \"CLASS\": \"city\", \"ST\": \"CT\", \"STFIPS\": \"09\", \"PLACEFIP\": \"47290\", \"CAPITAL\": \"N\", \"AREALAND\": 40.901000, \"AREAWATER\": 1.423000, \"POP_CL\": 6, \"POP2000\": 43167, \"WHITE\": 34540, \"BLACK\": 5291, \"AMERI_ES\": 99, \"ASIAN\": 1155, \"HAWN_PI\": 21, \"OTHER\": 857, \"MULT_RACE\": 1204, \"HISPANIC\": 2287, \"MALES\": 20830, \"FEMALES\": 22337, \"AGE_UNDER5\": 2811, \"AGE_5_17\": 6553, \"AGE_18_21\": 1796, \"AGE_22_29\": 5484, \"AGE_30_39\": 7886, \"AGE_40_49\": 6484, \"AGE_50_64\": 6367, \"AGE_65_UP\": 5786, \"MED_AGE\": 36.300000, \"MED_AGE_M\": 35.400000, \"MED_AGE_F\": 37.300000, \"HOUSEHOLDS\": 18554, \"AVE_HH_SZ\": 2.230000, \"HSEHLD_1_M\": 2803, \"HSEHLD_1_F\": 3688, \"MARHH_CHD\": 3170, \"MARHH_NO_C\": 4489, \"MHH_CHILD\": 273, \"FHH_CHILD\": 1331, \"FAMILIES\": 10393, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 19697, \"VACANT\": 1143, \"OWNER_OCC\": 9520, \"RENTER_OCC\": 9034 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -72.663443825166425, 41.553687932092501 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Milford\", \"CLASS\": \"city (consolidated, balance)\", \"ST\": \"CT\", \"STFIPS\": \"09\", \"PLACEFIP\": \"47515\", \"CAPITAL\": \"N\", \"AREALAND\": 22.281000, \"AREAWATER\": 1.463000, \"POP_CL\": 7, \"POP2000\": 50594, \"WHITE\": 47332, \"BLACK\": 965, \"AMERI_ES\": 65, \"ASIAN\": 1193, \"HAWN_PI\": 17, \"OTHER\": 447, \"MULT_RACE\": 575, \"HISPANIC\": 1691, \"MALES\": 24461, \"FEMALES\": 26133, \"AGE_UNDER5\": 3042, \"AGE_5_17\": 8302, \"AGE_18_21\": 1665, \"AGE_22_29\": 4278, \"AGE_30_39\": 8556, \"AGE_40_49\": 8513, \"AGE_50_64\": 8679, \"AGE_65_UP\": 7559, \"MED_AGE\": 39.400000, \"MED_AGE_M\": 38.000000, \"MED_AGE_F\": 40.700000, \"HOUSEHOLDS\": 20138, \"AVE_HH_SZ\": 2.490000, \"HSEHLD_1_M\": 2093, \"HSEHLD_1_F\": 3206, \"MARHH_CHD\": 4761, \"MARHH_NO_C\": 6258, \"MHH_CHILD\": 264, \"FHH_CHILD\": 880, \"FAMILIES\": 13619, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 21145, \"VACANT\": 1007, \"OWNER_OCC\": 15607, \"RENTER_OCC\": 4531 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.059742705795657, 41.21870948296538 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Naugatuck\", \"CLASS\": \"borough\", \"ST\": \"CT\", \"STFIPS\": \"09\", \"PLACEFIP\": \"49880\", \"CAPITAL\": \"N\", \"AREALAND\": 16.388000, \"AREAWATER\": 0.061000, \"POP_CL\": 6, \"POP2000\": 30989, \"WHITE\": 28435, \"BLACK\": 882, \"AMERI_ES\": 82, \"ASIAN\": 522, \"HAWN_PI\": 5, \"OTHER\": 491, \"MULT_RACE\": 572, \"HISPANIC\": 1386, \"MALES\": 15069, \"FEMALES\": 15920, \"AGE_UNDER5\": 2144, \"AGE_5_17\": 6181, \"AGE_18_21\": 1289, \"AGE_22_29\": 3097, \"AGE_30_39\": 5309, \"AGE_40_49\": 4972, \"AGE_50_64\": 4364, \"AGE_65_UP\": 3633, \"MED_AGE\": 35.500000, \"MED_AGE_M\": 34.300000, \"MED_AGE_F\": 36.700000, \"HOUSEHOLDS\": 11829, \"AVE_HH_SZ\": 2.600000, \"HSEHLD_1_M\": 1274, \"HSEHLD_1_F\": 1676, \"MARHH_CHD\": 3129, \"MARHH_NO_C\": 3177, \"MHH_CHILD\": 232, \"FHH_CHILD\": 935, \"FAMILIES\": 8297, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 12341, \"VACANT\": 512, \"OWNER_OCC\": 7863, \"RENTER_OCC\": 3966 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.051927579097978, 41.493775600464275 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"New Britain\", \"CLASS\": \"city\", \"ST\": \"CT\", \"STFIPS\": \"09\", \"PLACEFIP\": \"50370\", \"CAPITAL\": \"N\", \"AREALAND\": 13.337000, \"AREAWATER\": 0.068000, \"POP_CL\": 7, \"POP2000\": 71538, \"WHITE\": 49634, \"BLACK\": 7794, \"AMERI_ES\": 264, \"ASIAN\": 1687, \"HAWN_PI\": 43, \"OTHER\": 9388, \"MULT_RACE\": 2728, \"HISPANIC\": 19138, \"MALES\": 34257, \"FEMALES\": 37281, \"AGE_UNDER5\": 4754, \"AGE_5_17\": 12535, \"AGE_18_21\": 5283, \"AGE_22_29\": 9190, \"AGE_30_39\": 10160, \"AGE_40_49\": 9456, \"AGE_50_64\": 8878, \"AGE_65_UP\": 11282, \"MED_AGE\": 33.900000, \"MED_AGE_M\": 32.500000, \"MED_AGE_F\": 35.200000, \"HOUSEHOLDS\": 28558, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 4204, \"HSEHLD_1_F\": 5242, \"MARHH_CHD\": 4229, \"MARHH_NO_C\": 6230, \"MHH_CHILD\": 630, \"FHH_CHILD\": 3216, \"FAMILIES\": 16942, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 31164, \"VACANT\": 2606, \"OWNER_OCC\": 12191, \"RENTER_OCC\": 16367 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -72.784529006945732, 41.674280854950283 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"New Haven\", \"CLASS\": \"city\", \"ST\": \"CT\", \"STFIPS\": \"09\", \"PLACEFIP\": \"52000\", \"CAPITAL\": \"N\", \"AREALAND\": 18.850000, \"AREAWATER\": 1.400000, \"POP_CL\": 8, \"POP2000\": 123626, \"WHITE\": 53723, \"BLACK\": 46181, \"AMERI_ES\": 535, \"ASIAN\": 4819, \"HAWN_PI\": 79, \"OTHER\": 13460, \"MULT_RACE\": 4829, \"HISPANIC\": 26443, \"MALES\": 59185, \"FEMALES\": 64441, \"AGE_UNDER5\": 8749, \"AGE_5_17\": 22697, \"AGE_18_21\": 12853, \"AGE_22_29\": 19152, \"AGE_30_39\": 19086, \"AGE_40_49\": 14297, \"AGE_50_64\": 14121, \"AGE_65_UP\": 12671, \"MED_AGE\": 29.300000, \"MED_AGE_M\": 28.000000, \"MED_AGE_F\": 30.500000, \"HOUSEHOLDS\": 47094, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 7565, \"HSEHLD_1_F\": 9457, \"MARHH_CHD\": 5781, \"MARHH_NO_C\": 7161, \"MHH_CHILD\": 901, \"FHH_CHILD\": 7113, \"FAMILIES\": 25852, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 52941, \"VACANT\": 5847, \"OWNER_OCC\": 13927, \"RENTER_OCC\": 33167 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -72.923356988234104, 41.311160582533432 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Newington\", \"CLASS\": \"CDP\", \"ST\": \"CT\", \"STFIPS\": \"09\", \"PLACEFIP\": \"52210\", \"CAPITAL\": \"N\", \"AREALAND\": 13.181000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 29306, \"WHITE\": 27103, \"BLACK\": 609, \"AMERI_ES\": 35, \"ASIAN\": 824, \"HAWN_PI\": 14, \"OTHER\": 351, \"MULT_RACE\": 370, \"HISPANIC\": 1079, \"MALES\": 13778, \"FEMALES\": 15528, \"AGE_UNDER5\": 1530, \"AGE_5_17\": 4517, \"AGE_18_21\": 942, \"AGE_22_29\": 2269, \"AGE_30_39\": 4546, \"AGE_40_49\": 4502, \"AGE_50_64\": 5490, \"AGE_65_UP\": 5510, \"MED_AGE\": 41.900000, \"MED_AGE_M\": 39.700000, \"MED_AGE_F\": 43.700000, \"HOUSEHOLDS\": 12014, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 1061, \"HSEHLD_1_F\": 2155, \"MARHH_CHD\": 2597, \"MARHH_NO_C\": 3999, \"MHH_CHILD\": 121, \"FHH_CHILD\": 609, \"FAMILIES\": 8254, \"AVE_FAM_SZ\": 2.920000, \"HSE_UNITS\": 12264, \"VACANT\": 250, \"OWNER_OCC\": 9688, \"RENTER_OCC\": 2326 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -72.731245045987976, 41.688914338546248 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"New London\", \"CLASS\": \"city\", \"ST\": \"CT\", \"STFIPS\": \"09\", \"PLACEFIP\": \"52280\", \"CAPITAL\": \"N\", \"AREALAND\": 5.538000, \"AREAWATER\": 5.225000, \"POP_CL\": 6, \"POP2000\": 25671, \"WHITE\": 16299, \"BLACK\": 4784, \"AMERI_ES\": 225, \"ASIAN\": 544, \"HAWN_PI\": 21, \"OTHER\": 2343, \"MULT_RACE\": 1455, \"HISPANIC\": 5061, \"MALES\": 12543, \"FEMALES\": 13128, \"AGE_UNDER5\": 1709, \"AGE_5_17\": 4148, \"AGE_18_21\": 3064, \"AGE_22_29\": 3441, \"AGE_30_39\": 3695, \"AGE_40_49\": 3517, \"AGE_50_64\": 2990, \"AGE_65_UP\": 3107, \"MED_AGE\": 31.200000, \"MED_AGE_M\": 30.000000, \"MED_AGE_F\": 32.400000, \"HOUSEHOLDS\": 10181, \"AVE_HH_SZ\": 2.260000, \"HSEHLD_1_M\": 1914, \"HSEHLD_1_F\": 1933, \"MARHH_CHD\": 1315, \"MARHH_NO_C\": 1780, \"MHH_CHILD\": 254, \"FHH_CHILD\": 1238, \"FAMILIES\": 5386, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 11560, \"VACANT\": 1379, \"OWNER_OCC\": 3861, \"RENTER_OCC\": 6320 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -72.10369507879237, 41.352519953912001 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"North Haven\", \"CLASS\": \"CDP\", \"ST\": \"CT\", \"STFIPS\": \"09\", \"PLACEFIP\": \"54940\", \"CAPITAL\": \"N\", \"AREALAND\": 20.779000, \"AREAWATER\": 0.323000, \"POP_CL\": 6, \"POP2000\": 23035, \"WHITE\": 21418, \"BLACK\": 512, \"AMERI_ES\": 20, \"ASIAN\": 775, \"HAWN_PI\": 3, \"OTHER\": 119, \"MULT_RACE\": 188, \"HISPANIC\": 433, \"MALES\": 11139, \"FEMALES\": 11896, \"AGE_UNDER5\": 1261, \"AGE_5_17\": 3941, \"AGE_18_21\": 754, \"AGE_22_29\": 1508, \"AGE_30_39\": 3256, \"AGE_40_49\": 3871, \"AGE_50_64\": 4154, \"AGE_65_UP\": 4290, \"MED_AGE\": 41.900000, \"MED_AGE_M\": 40.500000, \"MED_AGE_F\": 43.300000, \"HOUSEHOLDS\": 8597, \"AVE_HH_SZ\": 2.650000, \"HSEHLD_1_M\": 637, \"HSEHLD_1_F\": 1170, \"MARHH_CHD\": 2317, \"MARHH_NO_C\": 3203, \"MHH_CHILD\": 79, \"FHH_CHILD\": 270, \"FAMILIES\": 6490, \"AVE_FAM_SZ\": 3.100000, \"HSE_UNITS\": 8773, \"VACANT\": 176, \"OWNER_OCC\": 7440, \"RENTER_OCC\": 1157 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -72.860908184913271, 41.380711120142102 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Norwalk\", \"CLASS\": \"city\", \"ST\": \"CT\", \"STFIPS\": \"09\", \"PLACEFIP\": \"55990\", \"CAPITAL\": \"N\", \"AREALAND\": 22.805000, \"AREAWATER\": 13.526000, \"POP_CL\": 7, \"POP2000\": 82951, \"WHITE\": 61339, \"BLACK\": 12663, \"AMERI_ES\": 174, \"ASIAN\": 2699, \"HAWN_PI\": 40, \"OTHER\": 3591, \"MULT_RACE\": 2445, \"HISPANIC\": 12966, \"MALES\": 40481, \"FEMALES\": 42470, \"AGE_UNDER5\": 5689, \"AGE_5_17\": 12621, \"AGE_18_21\": 2915, \"AGE_22_29\": 9627, \"AGE_30_39\": 15767, \"AGE_40_49\": 12696, \"AGE_50_64\": 13035, \"AGE_65_UP\": 10601, \"MED_AGE\": 36.600000, \"MED_AGE_M\": 35.300000, \"MED_AGE_F\": 38.000000, \"HOUSEHOLDS\": 32711, \"AVE_HH_SZ\": 2.510000, \"HSEHLD_1_M\": 3787, \"HSEHLD_1_F\": 5436, \"MARHH_CHD\": 6835, \"MARHH_NO_C\": 8827, \"MHH_CHILD\": 416, \"FHH_CHILD\": 2087, \"FAMILIES\": 20963, \"AVE_FAM_SZ\": 3.100000, \"HSE_UNITS\": 33753, \"VACANT\": 1042, \"OWNER_OCC\": 20280, \"RENTER_OCC\": 12431 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.422062321877632, 41.110088951426803 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Norwich\", \"CLASS\": \"city\", \"ST\": \"CT\", \"STFIPS\": \"09\", \"PLACEFIP\": \"56200\", \"CAPITAL\": \"N\", \"AREALAND\": 28.334000, \"AREAWATER\": 1.141000, \"POP_CL\": 6, \"POP2000\": 36117, \"WHITE\": 30029, \"BLACK\": 2469, \"AMERI_ES\": 437, \"ASIAN\": 758, \"HAWN_PI\": 10, \"OTHER\": 998, \"MULT_RACE\": 1416, \"HISPANIC\": 2208, \"MALES\": 17159, \"FEMALES\": 18958, \"AGE_UNDER5\": 2317, \"AGE_5_17\": 6388, \"AGE_18_21\": 1725, \"AGE_22_29\": 3994, \"AGE_30_39\": 5486, \"AGE_40_49\": 5508, \"AGE_50_64\": 5154, \"AGE_65_UP\": 5545, \"MED_AGE\": 36.900000, \"MED_AGE_M\": 35.500000, \"MED_AGE_F\": 38.300000, \"HOUSEHOLDS\": 15091, \"AVE_HH_SZ\": 2.340000, \"HSEHLD_1_M\": 2006, \"HSEHLD_1_F\": 2828, \"MARHH_CHD\": 2521, \"MARHH_NO_C\": 3619, \"MHH_CHILD\": 364, \"FHH_CHILD\": 1488, \"FAMILIES\": 9074, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 16600, \"VACANT\": 1509, \"OWNER_OCC\": 7924, \"RENTER_OCC\": 7167 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -72.082400480231641, 41.539770297142631 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Orange\", \"CLASS\": \"CDP\", \"ST\": \"CT\", \"STFIPS\": \"09\", \"PLACEFIP\": \"57670\", \"CAPITAL\": \"N\", \"AREALAND\": 17.185000, \"AREAWATER\": 0.243000, \"POP_CL\": 6, \"POP2000\": 13233, \"WHITE\": 12450, \"BLACK\": 104, \"AMERI_ES\": 11, \"ASIAN\": 508, \"HAWN_PI\": 1, \"OTHER\": 43, \"MULT_RACE\": 116, \"HISPANIC\": 190, \"MALES\": 6430, \"FEMALES\": 6803, \"AGE_UNDER5\": 728, \"AGE_5_17\": 2526, \"AGE_18_21\": 359, \"AGE_22_29\": 592, \"AGE_30_39\": 1664, \"AGE_40_49\": 2292, \"AGE_50_64\": 2434, \"AGE_65_UP\": 2638, \"MED_AGE\": 43.200000, \"MED_AGE_M\": 42.300000, \"MED_AGE_F\": 44.200000, \"HOUSEHOLDS\": 4739, \"AVE_HH_SZ\": 2.770000, \"HSEHLD_1_M\": 255, \"HSEHLD_1_F\": 489, \"MARHH_CHD\": 1502, \"MARHH_NO_C\": 1960, \"MHH_CHILD\": 39, \"FHH_CHILD\": 121, \"FAMILIES\": 3897, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 4870, \"VACANT\": 131, \"OWNER_OCC\": 4401, \"RENTER_OCC\": 338 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.02561262797127, 41.279559758762581 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Shelton\", \"CLASS\": \"city\", \"ST\": \"CT\", \"STFIPS\": \"09\", \"PLACEFIP\": \"68100\", \"CAPITAL\": \"N\", \"AREALAND\": 30.568000, \"AREAWATER\": 1.364000, \"POP_CL\": 6, \"POP2000\": 38101, \"WHITE\": 35984, \"BLACK\": 428, \"AMERI_ES\": 57, \"ASIAN\": 791, \"HAWN_PI\": 1, \"OTHER\": 341, \"MULT_RACE\": 499, \"HISPANIC\": 1326, \"MALES\": 18437, \"FEMALES\": 19664, \"AGE_UNDER5\": 2347, \"AGE_5_17\": 6625, \"AGE_18_21\": 1246, \"AGE_22_29\": 2932, \"AGE_30_39\": 6050, \"AGE_40_49\": 6341, \"AGE_50_64\": 6888, \"AGE_65_UP\": 5672, \"MED_AGE\": 39.800000, \"MED_AGE_M\": 38.600000, \"MED_AGE_F\": 40.800000, \"HOUSEHOLDS\": 14190, \"AVE_HH_SZ\": 2.650000, \"HSEHLD_1_M\": 1197, \"HSEHLD_1_F\": 1900, \"MARHH_CHD\": 3941, \"MARHH_NO_C\": 4991, \"MHH_CHILD\": 128, \"FHH_CHILD\": 585, \"FAMILIES\": 10540, \"AVE_FAM_SZ\": 3.110000, \"HSE_UNITS\": 14707, \"VACANT\": 517, \"OWNER_OCC\": 11604, \"RENTER_OCC\": 2586 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.129393245570085, 41.30640797906986 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Stamford\", \"CLASS\": \"city\", \"ST\": \"CT\", \"STFIPS\": \"09\", \"PLACEFIP\": \"73000\", \"CAPITAL\": \"N\", \"AREALAND\": 37.745000, \"AREAWATER\": 14.326000, \"POP_CL\": 8, \"POP2000\": 117083, \"WHITE\": 81718, \"BLACK\": 18019, \"AMERI_ES\": 243, \"ASIAN\": 5856, \"HAWN_PI\": 46, \"OTHER\": 7608, \"MULT_RACE\": 3593, \"HISPANIC\": 19635, \"MALES\": 56622, \"FEMALES\": 60461, \"AGE_UNDER5\": 8108, \"AGE_5_17\": 17788, \"AGE_18_21\": 4082, \"AGE_22_29\": 14391, \"AGE_30_39\": 21667, \"AGE_40_49\": 17292, \"AGE_50_64\": 17580, \"AGE_65_UP\": 16175, \"MED_AGE\": 36.400000, \"MED_AGE_M\": 35.000000, \"MED_AGE_F\": 37.900000, \"HOUSEHOLDS\": 45399, \"AVE_HH_SZ\": 2.540000, \"HSEHLD_1_M\": 5160, \"HSEHLD_1_F\": 7873, \"MARHH_CHD\": 9855, \"MARHH_NO_C\": 12151, \"MHH_CHILD\": 564, \"FHH_CHILD\": 2588, \"FAMILIES\": 28951, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 47317, \"VACANT\": 1918, \"OWNER_OCC\": 25719, \"RENTER_OCC\": 19680 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.54146678979393, 41.074457220418651 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Storrs\", \"CLASS\": \"CDP\", \"ST\": \"CT\", \"STFIPS\": \"09\", \"PLACEFIP\": \"73980\", \"CAPITAL\": \"N\", \"AREALAND\": 5.670000, \"AREAWATER\": 0.034000, \"POP_CL\": 6, \"POP2000\": 10996, \"WHITE\": 8918, \"BLACK\": 624, \"AMERI_ES\": 10, \"ASIAN\": 1004, \"HAWN_PI\": 5, \"OTHER\": 187, \"MULT_RACE\": 248, \"HISPANIC\": 484, \"MALES\": 5259, \"FEMALES\": 5737, \"AGE_UNDER5\": 137, \"AGE_5_17\": 306, \"AGE_18_21\": 7120, \"AGE_22_29\": 1684, \"AGE_30_39\": 534, \"AGE_40_49\": 266, \"AGE_50_64\": 298, \"AGE_65_UP\": 651, \"MED_AGE\": 20.700000, \"MED_AGE_M\": 20.900000, \"MED_AGE_F\": 20.500000, \"HOUSEHOLDS\": 1630, \"AVE_HH_SZ\": 2.190000, \"HSEHLD_1_M\": 226, \"HSEHLD_1_F\": 330, \"MARHH_CHD\": 206, \"MARHH_NO_C\": 341, \"MHH_CHILD\": 10, \"FHH_CHILD\": 33, \"FAMILIES\": 646, \"AVE_FAM_SZ\": 2.700000, \"HSE_UNITS\": 1701, \"VACANT\": 71, \"OWNER_OCC\": 628, \"RENTER_OCC\": 1002 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -72.256490499497616, 41.806172285204298 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Stratford\", \"CLASS\": \"CDP\", \"ST\": \"CT\", \"STFIPS\": \"09\", \"PLACEFIP\": \"74260\", \"CAPITAL\": \"N\", \"AREALAND\": 17.585000, \"AREAWATER\": 2.290000, \"POP_CL\": 6, \"POP2000\": 49976, \"WHITE\": 42361, \"BLACK\": 4892, \"AMERI_ES\": 82, \"ASIAN\": 700, \"HAWN_PI\": 17, \"OTHER\": 1071, \"MULT_RACE\": 853, \"HISPANIC\": 3399, \"MALES\": 23539, \"FEMALES\": 26437, \"AGE_UNDER5\": 2983, \"AGE_5_17\": 8523, \"AGE_18_21\": 1649, \"AGE_22_29\": 3884, \"AGE_30_39\": 7660, \"AGE_40_49\": 7417, \"AGE_50_64\": 8267, \"AGE_65_UP\": 9593, \"MED_AGE\": 40.300000, \"MED_AGE_M\": 38.700000, \"MED_AGE_F\": 41.900000, \"HOUSEHOLDS\": 19898, \"AVE_HH_SZ\": 2.490000, \"HSEHLD_1_M\": 2017, \"HSEHLD_1_F\": 3385, \"MARHH_CHD\": 4314, \"MARHH_NO_C\": 6142, \"MHH_CHILD\": 244, \"FHH_CHILD\": 1107, \"FAMILIES\": 13637, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 20596, \"VACANT\": 698, \"OWNER_OCC\": 15989, \"RENTER_OCC\": 3909 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.13441163978618, 41.201607921214759 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Torrington\", \"CLASS\": \"city\", \"ST\": \"CT\", \"STFIPS\": \"09\", \"PLACEFIP\": \"76500\", \"CAPITAL\": \"N\", \"AREALAND\": 39.792000, \"AREAWATER\": 0.573000, \"POP_CL\": 6, \"POP2000\": 35202, \"WHITE\": 32749, \"BLACK\": 757, \"AMERI_ES\": 70, \"ASIAN\": 643, \"HAWN_PI\": 7, \"OTHER\": 460, \"MULT_RACE\": 516, \"HISPANIC\": 1162, \"MALES\": 17048, \"FEMALES\": 18154, \"AGE_UNDER5\": 2107, \"AGE_5_17\": 6004, \"AGE_18_21\": 1299, \"AGE_22_29\": 2957, \"AGE_30_39\": 5834, \"AGE_40_49\": 5659, \"AGE_50_64\": 5159, \"AGE_65_UP\": 6183, \"MED_AGE\": 39.100000, \"MED_AGE_M\": 37.500000, \"MED_AGE_F\": 40.700000, \"HOUSEHOLDS\": 14743, \"AVE_HH_SZ\": 2.330000, \"HSEHLD_1_M\": 1938, \"HSEHLD_1_F\": 2798, \"MARHH_CHD\": 2991, \"MARHH_NO_C\": 4044, \"MHH_CHILD\": 307, \"FHH_CHILD\": 897, \"FAMILIES\": 9130, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 16147, \"VACANT\": 1404, \"OWNER_OCC\": 9521, \"RENTER_OCC\": 5222 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.118899882630259, 41.817499155962103 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Trumbull\", \"CLASS\": \"CDP\", \"ST\": \"CT\", \"STFIPS\": \"09\", \"PLACEFIP\": \"77270\", \"CAPITAL\": \"N\", \"AREALAND\": 23.285000, \"AREAWATER\": 0.233000, \"POP_CL\": 6, \"POP2000\": 34243, \"WHITE\": 32194, \"BLACK\": 645, \"AMERI_ES\": 38, \"ASIAN\": 815, \"HAWN_PI\": 6, \"OTHER\": 242, \"MULT_RACE\": 303, \"HISPANIC\": 923, \"MALES\": 16473, \"FEMALES\": 17770, \"AGE_UNDER5\": 2366, \"AGE_5_17\": 6547, \"AGE_18_21\": 1036, \"AGE_22_29\": 1830, \"AGE_30_39\": 5133, \"AGE_40_49\": 5734, \"AGE_50_64\": 5683, \"AGE_65_UP\": 5914, \"MED_AGE\": 40.300000, \"MED_AGE_M\": 39.400000, \"MED_AGE_F\": 41.200000, \"HOUSEHOLDS\": 11911, \"AVE_HH_SZ\": 2.820000, \"HSEHLD_1_M\": 654, \"HSEHLD_1_F\": 1275, \"MARHH_CHD\": 4049, \"MARHH_NO_C\": 4495, \"MHH_CHILD\": 75, \"FHH_CHILD\": 344, \"FAMILIES\": 9705, \"AVE_FAM_SZ\": 3.170000, \"HSE_UNITS\": 12160, \"VACANT\": 249, \"OWNER_OCC\": 10828, \"RENTER_OCC\": 1083 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.212457270898767, 41.256140371189183 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wallingford Center\", \"CLASS\": \"CDP\", \"ST\": \"CT\", \"STFIPS\": \"09\", \"PLACEFIP\": \"78880\", \"CAPITAL\": \"N\", \"AREALAND\": 7.162000, \"AREAWATER\": 0.123000, \"POP_CL\": 6, \"POP2000\": 17509, \"WHITE\": 16221, \"BLACK\": 209, \"AMERI_ES\": 40, \"ASIAN\": 382, \"HAWN_PI\": 0, \"OTHER\": 382, \"MULT_RACE\": 275, \"HISPANIC\": 1403, \"MALES\": 8437, \"FEMALES\": 9072, \"AGE_UNDER5\": 1068, \"AGE_5_17\": 2939, \"AGE_18_21\": 614, \"AGE_22_29\": 1993, \"AGE_30_39\": 2874, \"AGE_40_49\": 2756, \"AGE_50_64\": 2452, \"AGE_65_UP\": 2813, \"MED_AGE\": 37.400000, \"MED_AGE_M\": 36.200000, \"MED_AGE_F\": 38.800000, \"HOUSEHOLDS\": 7331, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 1022, \"HSEHLD_1_F\": 1360, \"MARHH_CHD\": 1530, \"MARHH_NO_C\": 1892, \"MHH_CHILD\": 124, \"FHH_CHILD\": 443, \"FAMILIES\": 4496, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 7720, \"VACANT\": 389, \"OWNER_OCC\": 4040, \"RENTER_OCC\": 3291 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -72.821381157719884, 41.448311475792586 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Waterbury\", \"CLASS\": \"city\", \"ST\": \"CT\", \"STFIPS\": \"09\", \"PLACEFIP\": \"80000\", \"CAPITAL\": \"N\", \"AREALAND\": 28.570000, \"AREAWATER\": 0.351000, \"POP_CL\": 8, \"POP2000\": 107271, \"WHITE\": 72018, \"BLACK\": 17500, \"AMERI_ES\": 453, \"ASIAN\": 1615, \"HAWN_PI\": 61, \"OTHER\": 11698, \"MULT_RACE\": 3926, \"HISPANIC\": 23354, \"MALES\": 50781, \"FEMALES\": 56490, \"AGE_UNDER5\": 8176, \"AGE_5_17\": 20278, \"AGE_18_21\": 5343, \"AGE_22_29\": 11913, \"AGE_30_39\": 16427, \"AGE_40_49\": 14515, \"AGE_50_64\": 14574, \"AGE_65_UP\": 16045, \"MED_AGE\": 34.900000, \"MED_AGE_M\": 33.500000, \"MED_AGE_F\": 36.100000, \"HOUSEHOLDS\": 42622, \"AVE_HH_SZ\": 2.460000, \"HSEHLD_1_M\": 5876, \"HSEHLD_1_F\": 7522, \"MARHH_CHD\": 7039, \"MARHH_NO_C\": 9495, \"MHH_CHILD\": 1057, \"FHH_CHILD\": 5195, \"FAMILIES\": 26911, \"AVE_FAM_SZ\": 3.110000, \"HSE_UNITS\": 46827, \"VACANT\": 4205, \"OWNER_OCC\": 20291, \"RENTER_OCC\": 22331 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.03852558008785, 41.556052716960281 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"West Hartford\", \"CLASS\": \"CDP\", \"ST\": \"CT\", \"STFIPS\": \"09\", \"PLACEFIP\": \"82660\", \"CAPITAL\": \"N\", \"AREALAND\": 21.983000, \"AREAWATER\": 0.380000, \"POP_CL\": 7, \"POP2000\": 63589, \"WHITE\": 54658, \"BLACK\": 3041, \"AMERI_ES\": 77, \"ASIAN\": 3053, \"HAWN_PI\": 47, \"OTHER\": 1659, \"MULT_RACE\": 1054, \"HISPANIC\": 3990, \"MALES\": 29252, \"FEMALES\": 34337, \"AGE_UNDER5\": 3621, \"AGE_5_17\": 10424, \"AGE_18_21\": 4512, \"AGE_22_29\": 4909, \"AGE_30_39\": 8374, \"AGE_40_49\": 9558, \"AGE_50_64\": 9812, \"AGE_65_UP\": 12379, \"MED_AGE\": 40.000000, \"MED_AGE_M\": 37.900000, \"MED_AGE_F\": 41.700000, \"HOUSEHOLDS\": 24576, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 2235, \"HSEHLD_1_F\": 5033, \"MARHH_CHD\": 5826, \"MARHH_NO_C\": 7169, \"MHH_CHILD\": 280, \"FHH_CHILD\": 1229, \"FAMILIES\": 15935, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 25332, \"VACANT\": 756, \"OWNER_OCC\": 17664, \"RENTER_OCC\": 6912 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -72.743272659512883, 41.760065246987473 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"West Haven\", \"CLASS\": \"city\", \"ST\": \"CT\", \"STFIPS\": \"09\", \"PLACEFIP\": \"82800\", \"CAPITAL\": \"N\", \"AREALAND\": 10.836000, \"AREAWATER\": 0.172000, \"POP_CL\": 7, \"POP2000\": 52360, \"WHITE\": 38824, \"BLACK\": 8530, \"AMERI_ES\": 128, \"ASIAN\": 1525, \"HAWN_PI\": 27, \"OTHER\": 1867, \"MULT_RACE\": 1459, \"HISPANIC\": 4757, \"MALES\": 24995, \"FEMALES\": 27365, \"AGE_UNDER5\": 3270, \"AGE_5_17\": 8838, \"AGE_18_21\": 2873, \"AGE_22_29\": 5875, \"AGE_30_39\": 8408, \"AGE_40_49\": 7864, \"AGE_50_64\": 7790, \"AGE_65_UP\": 7442, \"MED_AGE\": 36.400000, \"MED_AGE_M\": 35.100000, \"MED_AGE_F\": 37.600000, \"HOUSEHOLDS\": 21090, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 2837, \"HSEHLD_1_F\": 3705, \"MARHH_CHD\": 3739, \"MARHH_NO_C\": 5099, \"MHH_CHILD\": 416, \"FHH_CHILD\": 1859, \"FAMILIES\": 13123, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 22336, \"VACANT\": 1246, \"OWNER_OCC\": 11632, \"RENTER_OCC\": 9458 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -72.965168383736454, 41.272160234398967 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Westport\", \"CLASS\": \"CDP\", \"ST\": \"CT\", \"STFIPS\": \"09\", \"PLACEFIP\": \"83570\", \"CAPITAL\": \"N\", \"AREALAND\": 20.011000, \"AREAWATER\": 13.317000, \"POP_CL\": 6, \"POP2000\": 25749, \"WHITE\": 24503, \"BLACK\": 292, \"AMERI_ES\": 12, \"ASIAN\": 625, \"HAWN_PI\": 5, \"OTHER\": 103, \"MULT_RACE\": 209, \"HISPANIC\": 602, \"MALES\": 12244, \"FEMALES\": 13505, \"AGE_UNDER5\": 1920, \"AGE_5_17\": 5270, \"AGE_18_21\": 442, \"AGE_22_29\": 824, \"AGE_30_39\": 3639, \"AGE_40_49\": 4818, \"AGE_50_64\": 4953, \"AGE_65_UP\": 3883, \"MED_AGE\": 41.400000, \"MED_AGE_M\": 41.100000, \"MED_AGE_F\": 41.700000, \"HOUSEHOLDS\": 9586, \"AVE_HH_SZ\": 2.660000, \"HSEHLD_1_M\": 687, \"HSEHLD_1_F\": 1307, \"MARHH_CHD\": 3267, \"MARHH_NO_C\": 3069, \"MHH_CHILD\": 71, \"FHH_CHILD\": 346, \"FAMILIES\": 7166, \"AVE_FAM_SZ\": 3.100000, \"HSE_UNITS\": 10065, \"VACANT\": 479, \"OWNER_OCC\": 8203, \"RENTER_OCC\": 1383 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.352579195168332, 41.138673400618728 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wethersfield\", \"CLASS\": \"CDP\", \"ST\": \"CT\", \"STFIPS\": \"09\", \"PLACEFIP\": \"84970\", \"CAPITAL\": \"N\", \"AREALAND\": 12.392000, \"AREAWATER\": 0.737000, \"POP_CL\": 6, \"POP2000\": 26271, \"WHITE\": 24481, \"BLACK\": 549, \"AMERI_ES\": 21, \"ASIAN\": 416, \"HAWN_PI\": 6, \"OTHER\": 477, \"MULT_RACE\": 321, \"HISPANIC\": 1101, \"MALES\": 12192, \"FEMALES\": 14079, \"AGE_UNDER5\": 1388, \"AGE_5_17\": 3884, \"AGE_18_21\": 700, \"AGE_22_29\": 1691, \"AGE_30_39\": 3769, \"AGE_40_49\": 3995, \"AGE_50_64\": 4679, \"AGE_65_UP\": 6165, \"MED_AGE\": 44.100000, \"MED_AGE_M\": 42.000000, \"MED_AGE_F\": 46.000000, \"HOUSEHOLDS\": 11214, \"AVE_HH_SZ\": 2.310000, \"HSEHLD_1_M\": 1108, \"HSEHLD_1_F\": 2284, \"MARHH_CHD\": 2280, \"MARHH_NO_C\": 3760, \"MHH_CHILD\": 85, \"FHH_CHILD\": 461, \"FAMILIES\": 7413, \"AVE_FAM_SZ\": 2.890000, \"HSE_UNITS\": 11454, \"VACANT\": 240, \"OWNER_OCC\": 8733, \"RENTER_OCC\": 2481 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -72.674941555003258, 41.702064863746095 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Willimantic\", \"CLASS\": \"CDP\", \"ST\": \"CT\", \"STFIPS\": \"09\", \"PLACEFIP\": \"85810\", \"CAPITAL\": \"N\", \"AREALAND\": 4.387000, \"AREAWATER\": 0.101000, \"POP_CL\": 6, \"POP2000\": 15823, \"WHITE\": 11132, \"BLACK\": 989, \"AMERI_ES\": 94, \"ASIAN\": 264, \"HAWN_PI\": 21, \"OTHER\": 2670, \"MULT_RACE\": 653, \"HISPANIC\": 4777, \"MALES\": 7707, \"FEMALES\": 8116, \"AGE_UNDER5\": 995, \"AGE_5_17\": 2581, \"AGE_18_21\": 2551, \"AGE_22_29\": 2151, \"AGE_30_39\": 2118, \"AGE_40_49\": 1898, \"AGE_50_64\": 1703, \"AGE_65_UP\": 1826, \"MED_AGE\": 28.500000, \"MED_AGE_M\": 27.400000, \"MED_AGE_F\": 29.600000, \"HOUSEHOLDS\": 5604, \"AVE_HH_SZ\": 2.450000, \"HSEHLD_1_M\": 817, \"HSEHLD_1_F\": 1044, \"MARHH_CHD\": 846, \"MARHH_NO_C\": 1032, \"MHH_CHILD\": 142, \"FHH_CHILD\": 675, \"FAMILIES\": 3169, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 6026, \"VACANT\": 422, \"OWNER_OCC\": 2109, \"RENTER_OCC\": 3495 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -72.212757010636665, 41.715435767270449 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Windsor Locks\", \"CLASS\": \"CDP\", \"ST\": \"CT\", \"STFIPS\": \"09\", \"PLACEFIP\": \"87140\", \"CAPITAL\": \"N\", \"AREALAND\": 9.029000, \"AREAWATER\": 0.329000, \"POP_CL\": 6, \"POP2000\": 12043, \"WHITE\": 11136, \"BLACK\": 322, \"AMERI_ES\": 15, \"ASIAN\": 309, \"HAWN_PI\": 0, \"OTHER\": 90, \"MULT_RACE\": 171, \"HISPANIC\": 267, \"MALES\": 5841, \"FEMALES\": 6202, \"AGE_UNDER5\": 710, \"AGE_5_17\": 2139, \"AGE_18_21\": 445, \"AGE_22_29\": 954, \"AGE_30_39\": 2019, \"AGE_40_49\": 1958, \"AGE_50_64\": 1830, \"AGE_65_UP\": 1988, \"MED_AGE\": 38.900000, \"MED_AGE_M\": 38.200000, \"MED_AGE_F\": 39.700000, \"HOUSEHOLDS\": 4935, \"AVE_HH_SZ\": 2.430000, \"HSEHLD_1_M\": 538, \"HSEHLD_1_F\": 794, \"MARHH_CHD\": 1022, \"MARHH_NO_C\": 1492, \"MHH_CHILD\": 98, \"FHH_CHILD\": 325, \"FAMILIES\": 3306, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 5101, \"VACANT\": 166, \"OWNER_OCC\": 3726, \"RENTER_OCC\": 1209 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -72.647133871769597, 41.927013187232085 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Washington\", \"CLASS\": \"city\", \"ST\": \"DC\", \"STFIPS\": \"11\", \"PLACEFIP\": \"50000\", \"CAPITAL\": \"N\", \"AREALAND\": 61.403000, \"AREAWATER\": 6.938000, \"POP_CL\": 9, \"POP2000\": 572059, \"WHITE\": 176101, \"BLACK\": 343312, \"AMERI_ES\": 1713, \"ASIAN\": 15189, \"HAWN_PI\": 348, \"OTHER\": 21950, \"MULT_RACE\": 13446, \"HISPANIC\": 44953, \"MALES\": 269366, \"FEMALES\": 302693, \"AGE_UNDER5\": 32536, \"AGE_5_17\": 82456, \"AGE_18_21\": 42152, \"AGE_22_29\": 83334, \"AGE_30_39\": 94862, \"AGE_40_49\": 81125, \"AGE_50_64\": 85696, \"AGE_65_UP\": 69898, \"MED_AGE\": 34.600000, \"MED_AGE_M\": 33.700000, \"MED_AGE_F\": 35.600000, \"HOUSEHOLDS\": 248338, \"AVE_HH_SZ\": 2.160000, \"HSEHLD_1_M\": 48347, \"HSEHLD_1_F\": 60397, \"MARHH_CHD\": 20741, \"MARHH_NO_C\": 35890, \"MHH_CHILD\": 3802, \"FHH_CHILD\": 24561, \"FAMILIES\": 114166, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 274845, \"VACANT\": 26507, \"OWNER_OCC\": 101214, \"RENTER_OCC\": 147124 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.013241752979141, 38.913611521409941 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bear\", \"CLASS\": \"CDP\", \"ST\": \"DE\", \"STFIPS\": \"10\", \"PLACEFIP\": \"04130\", \"CAPITAL\": \"N\", \"AREALAND\": 5.743000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 17593, \"WHITE\": 11772, \"BLACK\": 4714, \"AMERI_ES\": 38, \"ASIAN\": 357, \"HAWN_PI\": 4, \"OTHER\": 313, \"MULT_RACE\": 395, \"HISPANIC\": 968, \"MALES\": 8581, \"FEMALES\": 9012, \"AGE_UNDER5\": 1648, \"AGE_5_17\": 4153, \"AGE_18_21\": 878, \"AGE_22_29\": 1973, \"AGE_30_39\": 3621, \"AGE_40_49\": 2658, \"AGE_50_64\": 1938, \"AGE_65_UP\": 724, \"MED_AGE\": 30.400000, \"MED_AGE_M\": 29.500000, \"MED_AGE_F\": 31.300000, \"HOUSEHOLDS\": 6027, \"AVE_HH_SZ\": 2.920000, \"HSEHLD_1_M\": 537, \"HSEHLD_1_F\": 559, \"MARHH_CHD\": 1831, \"MARHH_NO_C\": 1269, \"MHH_CHILD\": 234, \"FHH_CHILD\": 746, \"FAMILIES\": 4545, \"AVE_FAM_SZ\": 3.300000, \"HSE_UNITS\": 6265, \"VACANT\": 238, \"OWNER_OCC\": 4887, \"RENTER_OCC\": 1140 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.684820677971203, 39.620363925149249 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Brookside\", \"CLASS\": \"CDP\", \"ST\": \"DE\", \"STFIPS\": \"10\", \"PLACEFIP\": \"09850\", \"CAPITAL\": \"N\", \"AREALAND\": 3.909000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14806, \"WHITE\": 11452, \"BLACK\": 2225, \"AMERI_ES\": 48, \"ASIAN\": 386, \"HAWN_PI\": 11, \"OTHER\": 328, \"MULT_RACE\": 356, \"HISPANIC\": 827, \"MALES\": 7262, \"FEMALES\": 7544, \"AGE_UNDER5\": 1080, \"AGE_5_17\": 2883, \"AGE_18_21\": 790, \"AGE_22_29\": 1833, \"AGE_30_39\": 2458, \"AGE_40_49\": 2228, \"AGE_50_64\": 2067, \"AGE_65_UP\": 1467, \"MED_AGE\": 33.500000, \"MED_AGE_M\": 31.700000, \"MED_AGE_F\": 35.200000, \"HOUSEHOLDS\": 5465, \"AVE_HH_SZ\": 2.680000, \"HSEHLD_1_M\": 515, \"HSEHLD_1_F\": 694, \"MARHH_CHD\": 1286, \"MARHH_NO_C\": 1440, \"MHH_CHILD\": 163, \"FHH_CHILD\": 513, \"FAMILIES\": 3858, \"AVE_FAM_SZ\": 3.150000, \"HSE_UNITS\": 5645, \"VACANT\": 180, \"OWNER_OCC\": 3782, \"RENTER_OCC\": 1683 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.718005001532191, 39.669212872918543 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Dover\", \"CLASS\": \"city\", \"ST\": \"DE\", \"STFIPS\": \"10\", \"PLACEFIP\": \"21200\", \"CAPITAL\": \"Y\", \"AREALAND\": 22.394000, \"AREAWATER\": 0.299000, \"POP_CL\": 6, \"POP2000\": 32135, \"WHITE\": 17655, \"BLACK\": 11961, \"AMERI_ES\": 146, \"ASIAN\": 1016, \"HAWN_PI\": 12, \"OTHER\": 503, \"MULT_RACE\": 842, \"HISPANIC\": 1327, \"MALES\": 15122, \"FEMALES\": 17013, \"AGE_UNDER5\": 2146, \"AGE_5_17\": 5416, \"AGE_18_21\": 3354, \"AGE_22_29\": 3904, \"AGE_30_39\": 4532, \"AGE_40_49\": 4109, \"AGE_50_64\": 4390, \"AGE_65_UP\": 4284, \"MED_AGE\": 32.900000, \"MED_AGE_M\": 31.100000, \"MED_AGE_F\": 34.600000, \"HOUSEHOLDS\": 12340, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 1532, \"HSEHLD_1_F\": 2340, \"MARHH_CHD\": 2065, \"MARHH_NO_C\": 2918, \"MHH_CHILD\": 261, \"FHH_CHILD\": 1382, \"FAMILIES\": 7500, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 13195, \"VACANT\": 855, \"OWNER_OCC\": 6454, \"RENTER_OCC\": 5886 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.52680230747066, 39.161923182826172 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Glasgow\", \"CLASS\": \"CDP\", \"ST\": \"DE\", \"STFIPS\": \"10\", \"PLACEFIP\": \"29350\", \"CAPITAL\": \"N\", \"AREALAND\": 9.895000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12840, \"WHITE\": 10013, \"BLACK\": 2185, \"AMERI_ES\": 28, \"ASIAN\": 299, \"HAWN_PI\": 3, \"OTHER\": 136, \"MULT_RACE\": 176, \"HISPANIC\": 386, \"MALES\": 6356, \"FEMALES\": 6484, \"AGE_UNDER5\": 1083, \"AGE_5_17\": 2677, \"AGE_18_21\": 558, \"AGE_22_29\": 1712, \"AGE_30_39\": 2563, \"AGE_40_49\": 2133, \"AGE_50_64\": 1580, \"AGE_65_UP\": 534, \"MED_AGE\": 31.400000, \"MED_AGE_M\": 31.000000, \"MED_AGE_F\": 31.700000, \"HOUSEHOLDS\": 4517, \"AVE_HH_SZ\": 2.840000, \"HSEHLD_1_M\": 348, \"HSEHLD_1_F\": 375, \"MARHH_CHD\": 1609, \"MARHH_NO_C\": 1233, \"MHH_CHILD\": 85, \"FHH_CHILD\": 317, \"FAMILIES\": 3479, \"AVE_FAM_SZ\": 3.220000, \"HSE_UNITS\": 4629, \"VACANT\": 112, \"OWNER_OCC\": 3765, \"RENTER_OCC\": 752 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.742451220189139, 39.603971833741113 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hockessin\", \"CLASS\": \"CDP\", \"ST\": \"DE\", \"STFIPS\": \"10\", \"PLACEFIP\": \"35850\", \"CAPITAL\": \"N\", \"AREALAND\": 10.027000, \"AREAWATER\": 0.013000, \"POP_CL\": 6, \"POP2000\": 12902, \"WHITE\": 11460, \"BLACK\": 342, \"AMERI_ES\": 9, \"ASIAN\": 924, \"HAWN_PI\": 1, \"OTHER\": 58, \"MULT_RACE\": 108, \"HISPANIC\": 257, \"MALES\": 6306, \"FEMALES\": 6596, \"AGE_UNDER5\": 791, \"AGE_5_17\": 2677, \"AGE_18_21\": 392, \"AGE_22_29\": 495, \"AGE_30_39\": 1632, \"AGE_40_49\": 2480, \"AGE_50_64\": 2463, \"AGE_65_UP\": 1972, \"MED_AGE\": 42.000000, \"MED_AGE_M\": 41.300000, \"MED_AGE_F\": 42.500000, \"HOUSEHOLDS\": 4464, \"AVE_HH_SZ\": 2.830000, \"HSEHLD_1_M\": 216, \"HSEHLD_1_F\": 405, \"MARHH_CHD\": 1661, \"MARHH_NO_C\": 1790, \"MHH_CHILD\": 36, \"FHH_CHILD\": 93, \"FAMILIES\": 3733, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 4575, \"VACANT\": 111, \"OWNER_OCC\": 4057, \"RENTER_OCC\": 407 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.685909132424086, 39.784015925819446 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Newark\", \"CLASS\": \"city\", \"ST\": \"DE\", \"STFIPS\": \"10\", \"PLACEFIP\": \"50670\", \"CAPITAL\": \"N\", \"AREALAND\": 8.925000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 28547, \"WHITE\": 24919, \"BLACK\": 1714, \"AMERI_ES\": 45, \"ASIAN\": 1161, \"HAWN_PI\": 14, \"OTHER\": 245, \"MULT_RACE\": 449, \"HISPANIC\": 721, \"MALES\": 13132, \"FEMALES\": 15415, \"AGE_UNDER5\": 857, \"AGE_5_17\": 2721, \"AGE_18_21\": 9861, \"AGE_22_29\": 4383, \"AGE_30_39\": 2619, \"AGE_40_49\": 2573, \"AGE_50_64\": 2939, \"AGE_65_UP\": 2594, \"MED_AGE\": 22.600000, \"MED_AGE_M\": 23.200000, \"MED_AGE_F\": 22.000000, \"HOUSEHOLDS\": 8989, \"AVE_HH_SZ\": 2.430000, \"HSEHLD_1_M\": 997, \"HSEHLD_1_F\": 1448, \"MARHH_CHD\": 1449, \"MARHH_NO_C\": 2191, \"MHH_CHILD\": 85, \"FHH_CHILD\": 329, \"FAMILIES\": 4497, \"AVE_FAM_SZ\": 2.910000, \"HSE_UNITS\": 9294, \"VACANT\": 305, \"OWNER_OCC\": 4895, \"RENTER_OCC\": 4094 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.758083057200821, 39.679112810568405 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pike Creek\", \"CLASS\": \"CDP\", \"ST\": \"DE\", \"STFIPS\": \"10\", \"PLACEFIP\": \"56490\", \"CAPITAL\": \"N\", \"AREALAND\": 6.132000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 19751, \"WHITE\": 17440, \"BLACK\": 808, \"AMERI_ES\": 33, \"ASIAN\": 1102, \"HAWN_PI\": 19, \"OTHER\": 124, \"MULT_RACE\": 225, \"HISPANIC\": 511, \"MALES\": 9454, \"FEMALES\": 10297, \"AGE_UNDER5\": 1242, \"AGE_5_17\": 3273, \"AGE_18_21\": 916, \"AGE_22_29\": 2324, \"AGE_30_39\": 3512, \"AGE_40_49\": 3414, \"AGE_50_64\": 3272, \"AGE_65_UP\": 1798, \"MED_AGE\": 36.200000, \"MED_AGE_M\": 35.100000, \"MED_AGE_F\": 37.100000, \"HOUSEHOLDS\": 8201, \"AVE_HH_SZ\": 2.360000, \"HSEHLD_1_M\": 946, \"HSEHLD_1_F\": 1435, \"MARHH_CHD\": 1988, \"MARHH_NO_C\": 2295, \"MHH_CHILD\": 108, \"FHH_CHILD\": 374, \"FAMILIES\": 5165, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 8415, \"VACANT\": 214, \"OWNER_OCC\": 6128, \"RENTER_OCC\": 2073 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.69694071324561, 39.735120907365534 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wilmington\", \"CLASS\": \"city\", \"ST\": \"DE\", \"STFIPS\": \"10\", \"PLACEFIP\": \"77580\", \"CAPITAL\": \"N\", \"AREALAND\": 10.848000, \"AREAWATER\": 6.170000, \"POP_CL\": 7, \"POP2000\": 72664, \"WHITE\": 25811, \"BLACK\": 41001, \"AMERI_ES\": 185, \"ASIAN\": 473, \"HAWN_PI\": 20, \"OTHER\": 3750, \"MULT_RACE\": 1424, \"HISPANIC\": 7148, \"MALES\": 34674, \"FEMALES\": 37990, \"AGE_UNDER5\": 4953, \"AGE_5_17\": 13840, \"AGE_18_21\": 3980, \"AGE_22_29\": 9083, \"AGE_30_39\": 11793, \"AGE_40_49\": 10302, \"AGE_50_64\": 9590, \"AGE_65_UP\": 9123, \"MED_AGE\": 33.700000, \"MED_AGE_M\": 31.700000, \"MED_AGE_F\": 35.700000, \"HOUSEHOLDS\": 28617, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 4278, \"HSEHLD_1_F\": 6337, \"MARHH_CHD\": 3110, \"MARHH_NO_C\": 4511, \"MHH_CHILD\": 641, \"FHH_CHILD\": 4007, \"FAMILIES\": 15881, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 32138, \"VACANT\": 3521, \"OWNER_OCC\": 14332, \"RENTER_OCC\": 14285 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.551629503938457, 39.748565151851679 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Altamonte Springs\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"00950\", \"CAPITAL\": \"N\", \"AREALAND\": 8.896000, \"AREAWATER\": 0.557000, \"POP_CL\": 6, \"POP2000\": 41200, \"WHITE\": 32642, \"BLACK\": 4004, \"AMERI_ES\": 138, \"ASIAN\": 1213, \"HAWN_PI\": 18, \"OTHER\": 1972, \"MULT_RACE\": 1213, \"HISPANIC\": 6563, \"MALES\": 19813, \"FEMALES\": 21387, \"AGE_UNDER5\": 2429, \"AGE_5_17\": 5983, \"AGE_18_21\": 2186, \"AGE_22_29\": 6926, \"AGE_30_39\": 7497, \"AGE_40_49\": 5818, \"AGE_50_64\": 5948, \"AGE_65_UP\": 4413, \"MED_AGE\": 33.800000, \"MED_AGE_M\": 32.400000, \"MED_AGE_F\": 35.400000, \"HOUSEHOLDS\": 18821, \"AVE_HH_SZ\": 2.170000, \"HSEHLD_1_M\": 3018, \"HSEHLD_1_F\": 3783, \"MARHH_CHD\": 2900, \"MARHH_NO_C\": 4077, \"MHH_CHILD\": 396, \"FHH_CHILD\": 1373, \"FAMILIES\": 10016, \"AVE_FAM_SZ\": 2.860000, \"HSE_UNITS\": 19992, \"VACANT\": 1171, \"OWNER_OCC\": 7858, \"RENTER_OCC\": 10963 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.392016282995996, 28.661462958777125 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Apopka\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"01700\", \"CAPITAL\": \"N\", \"AREALAND\": 24.042000, \"AREAWATER\": 0.891000, \"POP_CL\": 6, \"POP2000\": 26642, \"WHITE\": 19675, \"BLACK\": 4145, \"AMERI_ES\": 112, \"ASIAN\": 503, \"HAWN_PI\": 24, \"OTHER\": 1429, \"MULT_RACE\": 754, \"HISPANIC\": 4817, \"MALES\": 12906, \"FEMALES\": 13736, \"AGE_UNDER5\": 2252, \"AGE_5_17\": 5259, \"AGE_18_21\": 1294, \"AGE_22_29\": 2989, \"AGE_30_39\": 4802, \"AGE_40_49\": 3812, \"AGE_50_64\": 3544, \"AGE_65_UP\": 2690, \"MED_AGE\": 33.300000, \"MED_AGE_M\": 32.300000, \"MED_AGE_F\": 34.300000, \"HOUSEHOLDS\": 9562, \"AVE_HH_SZ\": 2.760000, \"HSEHLD_1_M\": 702, \"HSEHLD_1_F\": 1074, \"MARHH_CHD\": 2547, \"MARHH_NO_C\": 2786, \"MHH_CHILD\": 231, \"FHH_CHILD\": 873, \"FAMILIES\": 7174, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 10091, \"VACANT\": 529, \"OWNER_OCC\": 7247, \"RENTER_OCC\": 2315 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.510618251749065, 28.676074960074597 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Atlantic Beach\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"02400\", \"CAPITAL\": \"N\", \"AREALAND\": 3.730000, \"AREAWATER\": 9.252000, \"POP_CL\": 6, \"POP2000\": 13368, \"WHITE\": 10992, \"BLACK\": 1697, \"AMERI_ES\": 35, \"ASIAN\": 279, \"HAWN_PI\": 4, \"OTHER\": 150, \"MULT_RACE\": 211, \"HISPANIC\": 559, \"MALES\": 6503, \"FEMALES\": 6865, \"AGE_UNDER5\": 824, \"AGE_5_17\": 2179, \"AGE_18_21\": 538, \"AGE_22_29\": 1225, \"AGE_30_39\": 2082, \"AGE_40_49\": 2279, \"AGE_50_64\": 2182, \"AGE_65_UP\": 2059, \"MED_AGE\": 39.300000, \"MED_AGE_M\": 37.900000, \"MED_AGE_F\": 40.900000, \"HOUSEHOLDS\": 5623, \"AVE_HH_SZ\": 2.360000, \"HSEHLD_1_M\": 617, \"HSEHLD_1_F\": 872, \"MARHH_CHD\": 1071, \"MARHH_NO_C\": 1680, \"MHH_CHILD\": 100, \"FHH_CHILD\": 412, \"FAMILIES\": 3646, \"AVE_FAM_SZ\": 2.860000, \"HSE_UNITS\": 6003, \"VACANT\": 380, \"OWNER_OCC\": 3719, \"RENTER_OCC\": 1904 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.408822345474249, 30.334748953685587 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Auburndale\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"02550\", \"CAPITAL\": \"N\", \"AREALAND\": 5.220000, \"AREAWATER\": 4.078000, \"POP_CL\": 6, \"POP2000\": 11032, \"WHITE\": 8950, \"BLACK\": 1353, \"AMERI_ES\": 29, \"ASIAN\": 97, \"HAWN_PI\": 5, \"OTHER\": 382, \"MULT_RACE\": 216, \"HISPANIC\": 894, \"MALES\": 5293, \"FEMALES\": 5739, \"AGE_UNDER5\": 823, \"AGE_5_17\": 2173, \"AGE_18_21\": 589, \"AGE_22_29\": 1089, \"AGE_30_39\": 1562, \"AGE_40_49\": 1493, \"AGE_50_64\": 1618, \"AGE_65_UP\": 1685, \"MED_AGE\": 35.700000, \"MED_AGE_M\": 34.100000, \"MED_AGE_F\": 37.000000, \"HOUSEHOLDS\": 4119, \"AVE_HH_SZ\": 2.630000, \"HSEHLD_1_M\": 362, \"HSEHLD_1_F\": 530, \"MARHH_CHD\": 909, \"MARHH_NO_C\": 1239, \"MHH_CHILD\": 130, \"FHH_CHILD\": 416, \"FAMILIES\": 3004, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 4547, \"VACANT\": 428, \"OWNER_OCC\": 2772, \"RENTER_OCC\": 1347 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.795252172179588, 28.066968964959479 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Aventura\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"02681\", \"CAPITAL\": \"N\", \"AREALAND\": 2.704000, \"AREAWATER\": 0.806000, \"POP_CL\": 6, \"POP2000\": 25267, \"WHITE\": 23695, \"BLACK\": 430, \"AMERI_ES\": 18, \"ASIAN\": 307, \"HAWN_PI\": 5, \"OTHER\": 366, \"MULT_RACE\": 446, \"HISPANIC\": 5218, \"MALES\": 11249, \"FEMALES\": 14018, \"AGE_UNDER5\": 838, \"AGE_5_17\": 1726, \"AGE_18_21\": 475, \"AGE_22_29\": 2444, \"AGE_30_39\": 3531, \"AGE_40_49\": 2724, \"AGE_50_64\": 4636, \"AGE_65_UP\": 8893, \"MED_AGE\": 52.800000, \"MED_AGE_M\": 49.800000, \"MED_AGE_F\": 55.100000, \"HOUSEHOLDS\": 14000, \"AVE_HH_SZ\": 1.790000, \"HSEHLD_1_M\": 2174, \"HSEHLD_1_F\": 4168, \"MARHH_CHD\": 1110, \"MARHH_NO_C\": 4435, \"MHH_CHILD\": 83, \"FHH_CHILD\": 388, \"FAMILIES\": 6692, \"AVE_FAM_SZ\": 2.450000, \"HSE_UNITS\": 20020, \"VACANT\": 6020, \"OWNER_OCC\": 10044, \"RENTER_OCC\": 3956 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.135818672770057, 25.964344954492738 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Azalea Park\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"02850\", \"CAPITAL\": \"N\", \"AREALAND\": 3.209000, \"AREAWATER\": 0.031000, \"POP_CL\": 6, \"POP2000\": 11073, \"WHITE\": 7777, \"BLACK\": 747, \"AMERI_ES\": 55, \"ASIAN\": 399, \"HAWN_PI\": 8, \"OTHER\": 1611, \"MULT_RACE\": 476, \"HISPANIC\": 4315, \"MALES\": 5459, \"FEMALES\": 5614, \"AGE_UNDER5\": 778, \"AGE_5_17\": 2084, \"AGE_18_21\": 793, \"AGE_22_29\": 1674, \"AGE_30_39\": 1819, \"AGE_40_49\": 1459, \"AGE_50_64\": 1330, \"AGE_65_UP\": 1136, \"MED_AGE\": 31.100000, \"MED_AGE_M\": 29.800000, \"MED_AGE_F\": 32.900000, \"HOUSEHOLDS\": 3981, \"AVE_HH_SZ\": 2.770000, \"HSEHLD_1_M\": 416, \"HSEHLD_1_F\": 445, \"MARHH_CHD\": 851, \"MARHH_NO_C\": 943, \"MHH_CHILD\": 125, \"FHH_CHILD\": 369, \"FAMILIES\": 2696, \"AVE_FAM_SZ\": 3.260000, \"HSE_UNITS\": 4115, \"VACANT\": 134, \"OWNER_OCC\": 2242, \"RENTER_OCC\": 1739 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.296372306295709, 28.541545958069765 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bartow\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"03675\", \"CAPITAL\": \"N\", \"AREALAND\": 11.225000, \"AREAWATER\": 0.141000, \"POP_CL\": 6, \"POP2000\": 15340, \"WHITE\": 10111, \"BLACK\": 4355, \"AMERI_ES\": 70, \"ASIAN\": 141, \"HAWN_PI\": 12, \"OTHER\": 340, \"MULT_RACE\": 311, \"HISPANIC\": 1244, \"MALES\": 7604, \"FEMALES\": 7736, \"AGE_UNDER5\": 964, \"AGE_5_17\": 2818, \"AGE_18_21\": 832, \"AGE_22_29\": 1536, \"AGE_30_39\": 2227, \"AGE_40_49\": 2054, \"AGE_50_64\": 2318, \"AGE_65_UP\": 2591, \"MED_AGE\": 37.100000, \"MED_AGE_M\": 35.000000, \"MED_AGE_F\": 39.200000, \"HOUSEHOLDS\": 5531, \"AVE_HH_SZ\": 2.490000, \"HSEHLD_1_M\": 613, \"HSEHLD_1_F\": 904, \"MARHH_CHD\": 988, \"MARHH_NO_C\": 1632, \"MHH_CHILD\": 124, \"FHH_CHILD\": 511, \"FAMILIES\": 3777, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 6099, \"VACANT\": 568, \"OWNER_OCC\": 3872, \"RENTER_OCC\": 1659 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.839636160127114, 27.892550965886304 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bayonet Point\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"04162\", \"CAPITAL\": \"N\", \"AREALAND\": 5.604000, \"AREAWATER\": 0.076000, \"POP_CL\": 6, \"POP2000\": 23577, \"WHITE\": 22832, \"BLACK\": 159, \"AMERI_ES\": 58, \"ASIAN\": 141, \"HAWN_PI\": 7, \"OTHER\": 145, \"MULT_RACE\": 235, \"HISPANIC\": 826, \"MALES\": 10697, \"FEMALES\": 12880, \"AGE_UNDER5\": 953, \"AGE_5_17\": 2561, \"AGE_18_21\": 647, \"AGE_22_29\": 1336, \"AGE_30_39\": 2265, \"AGE_40_49\": 2112, \"AGE_50_64\": 3384, \"AGE_65_UP\": 10319, \"MED_AGE\": 59.000000, \"MED_AGE_M\": 54.400000, \"MED_AGE_F\": 62.100000, \"HOUSEHOLDS\": 11314, \"AVE_HH_SZ\": 2.030000, \"HSEHLD_1_M\": 1113, \"HSEHLD_1_F\": 2775, \"MARHH_CHD\": 1144, \"MARHH_NO_C\": 4463, \"MHH_CHILD\": 178, \"FHH_CHILD\": 470, \"FAMILIES\": 6878, \"AVE_FAM_SZ\": 2.550000, \"HSE_UNITS\": 12628, \"VACANT\": 1314, \"OWNER_OCC\": 9588, \"RENTER_OCC\": 1726 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.683957062038772, 28.322902975163078 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bayshore Gardens\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"04350\", \"CAPITAL\": \"N\", \"AREALAND\": 3.559000, \"AREAWATER\": 0.024000, \"POP_CL\": 6, \"POP2000\": 17350, \"WHITE\": 15592, \"BLACK\": 690, \"AMERI_ES\": 66, \"ASIAN\": 217, \"HAWN_PI\": 17, \"OTHER\": 406, \"MULT_RACE\": 362, \"HISPANIC\": 1426, \"MALES\": 8101, \"FEMALES\": 9249, \"AGE_UNDER5\": 889, \"AGE_5_17\": 2219, \"AGE_18_21\": 733, \"AGE_22_29\": 1592, \"AGE_30_39\": 2201, \"AGE_40_49\": 2105, \"AGE_50_64\": 2523, \"AGE_65_UP\": 5088, \"MED_AGE\": 44.500000, \"MED_AGE_M\": 41.300000, \"MED_AGE_F\": 48.300000, \"HOUSEHOLDS\": 8342, \"AVE_HH_SZ\": 2.070000, \"HSEHLD_1_M\": 1146, \"HSEHLD_1_F\": 2038, \"MARHH_CHD\": 929, \"MARHH_NO_C\": 2494, \"MHH_CHILD\": 198, \"FHH_CHILD\": 456, \"FAMILIES\": 4592, \"AVE_FAM_SZ\": 2.690000, \"HSE_UNITS\": 10121, \"VACANT\": 1779, \"OWNER_OCC\": 5642, \"RENTER_OCC\": 2700 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.577370061105242, 27.433068975565032 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bellair-Meadowbrook Terrace\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"05025\", \"CAPITAL\": \"N\", \"AREALAND\": 5.603000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 16539, \"WHITE\": 13024, \"BLACK\": 1849, \"AMERI_ES\": 89, \"ASIAN\": 606, \"HAWN_PI\": 18, \"OTHER\": 424, \"MULT_RACE\": 529, \"HISPANIC\": 1112, \"MALES\": 8008, \"FEMALES\": 8531, \"AGE_UNDER5\": 1053, \"AGE_5_17\": 3105, \"AGE_18_21\": 1008, \"AGE_22_29\": 2285, \"AGE_30_39\": 2527, \"AGE_40_49\": 2284, \"AGE_50_64\": 2776, \"AGE_65_UP\": 1501, \"MED_AGE\": 33.300000, \"MED_AGE_M\": 31.800000, \"MED_AGE_F\": 34.900000, \"HOUSEHOLDS\": 6447, \"AVE_HH_SZ\": 2.530000, \"HSEHLD_1_M\": 713, \"HSEHLD_1_F\": 788, \"MARHH_CHD\": 1374, \"MARHH_NO_C\": 1870, \"MHH_CHILD\": 167, \"FHH_CHILD\": 597, \"FAMILIES\": 4440, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 6805, \"VACANT\": 358, \"OWNER_OCC\": 3419, \"RENTER_OCC\": 3028 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.741776243854375, 30.177188958418785 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Belle Glade\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"05200\", \"CAPITAL\": \"N\", \"AREALAND\": 4.649000, \"AREAWATER\": 0.009000, \"POP_CL\": 6, \"POP2000\": 14906, \"WHITE\": 4515, \"BLACK\": 7555, \"AMERI_ES\": 25, \"ASIAN\": 28, \"HAWN_PI\": 6, \"OTHER\": 1446, \"MULT_RACE\": 1331, \"HISPANIC\": 4110, \"MALES\": 7580, \"FEMALES\": 7326, \"AGE_UNDER5\": 1346, \"AGE_5_17\": 3644, \"AGE_18_21\": 889, \"AGE_22_29\": 1593, \"AGE_30_39\": 1991, \"AGE_40_49\": 2049, \"AGE_50_64\": 2100, \"AGE_65_UP\": 1294, \"MED_AGE\": 29.900000, \"MED_AGE_M\": 30.100000, \"MED_AGE_F\": 29.800000, \"HOUSEHOLDS\": 4854, \"AVE_HH_SZ\": 3.040000, \"HSEHLD_1_M\": 653, \"HSEHLD_1_F\": 476, \"MARHH_CHD\": 1069, \"MARHH_NO_C\": 917, \"MHH_CHILD\": 167, \"FHH_CHILD\": 657, \"FAMILIES\": 3434, \"AVE_FAM_SZ\": 3.620000, \"HSE_UNITS\": 5374, \"VACANT\": 520, \"OWNER_OCC\": 1996, \"RENTER_OCC\": 2858 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.671275447678369, 26.685263956280245 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bellview\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"05462\", \"CAPITAL\": \"N\", \"AREALAND\": 11.822000, \"AREAWATER\": 0.061000, \"POP_CL\": 6, \"POP2000\": 21201, \"WHITE\": 17100, \"BLACK\": 2479, \"AMERI_ES\": 230, \"ASIAN\": 695, \"HAWN_PI\": 33, \"OTHER\": 143, \"MULT_RACE\": 521, \"HISPANIC\": 509, \"MALES\": 10148, \"FEMALES\": 11053, \"AGE_UNDER5\": 1398, \"AGE_5_17\": 4224, \"AGE_18_21\": 1079, \"AGE_22_29\": 2139, \"AGE_30_39\": 3121, \"AGE_40_49\": 3321, \"AGE_50_64\": 3710, \"AGE_65_UP\": 2209, \"MED_AGE\": 36.000000, \"MED_AGE_M\": 34.700000, \"MED_AGE_F\": 37.100000, \"HOUSEHOLDS\": 8108, \"AVE_HH_SZ\": 2.610000, \"HSEHLD_1_M\": 729, \"HSEHLD_1_F\": 1003, \"MARHH_CHD\": 1810, \"MARHH_NO_C\": 2602, \"MHH_CHILD\": 193, \"FHH_CHILD\": 782, \"FAMILIES\": 5953, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 8673, \"VACANT\": 565, \"OWNER_OCC\": 6154, \"RENTER_OCC\": 1954 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.300821998872365, 30.461212998962008 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bloomingdale\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"06875\", \"CAPITAL\": \"N\", \"AREALAND\": 7.829000, \"AREAWATER\": 0.065000, \"POP_CL\": 6, \"POP2000\": 19839, \"WHITE\": 17483, \"BLACK\": 1266, \"AMERI_ES\": 51, \"ASIAN\": 445, \"HAWN_PI\": 14, \"OTHER\": 223, \"MULT_RACE\": 357, \"HISPANIC\": 1375, \"MALES\": 9820, \"FEMALES\": 10019, \"AGE_UNDER5\": 1310, \"AGE_5_17\": 4924, \"AGE_18_21\": 847, \"AGE_22_29\": 1250, \"AGE_30_39\": 3233, \"AGE_40_49\": 4070, \"AGE_50_64\": 3115, \"AGE_65_UP\": 1090, \"MED_AGE\": 35.900000, \"MED_AGE_M\": 35.400000, \"MED_AGE_F\": 36.300000, \"HOUSEHOLDS\": 6547, \"AVE_HH_SZ\": 3.030000, \"HSEHLD_1_M\": 283, \"HSEHLD_1_F\": 395, \"MARHH_CHD\": 2714, \"MARHH_NO_C\": 2140, \"MHH_CHILD\": 136, \"FHH_CHILD\": 340, \"FAMILIES\": 5625, \"AVE_FAM_SZ\": 3.260000, \"HSE_UNITS\": 6846, \"VACANT\": 299, \"OWNER_OCC\": 5754, \"RENTER_OCC\": 793 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.259919098577299, 27.881903971015756 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Boca Del Mar\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"07235\", \"CAPITAL\": \"N\", \"AREALAND\": 4.021000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 21832, \"WHITE\": 20616, \"BLACK\": 269, \"AMERI_ES\": 12, \"ASIAN\": 410, \"HAWN_PI\": 6, \"OTHER\": 231, \"MULT_RACE\": 288, \"HISPANIC\": 1782, \"MALES\": 9900, \"FEMALES\": 11932, \"AGE_UNDER5\": 847, \"AGE_5_17\": 2302, \"AGE_18_21\": 678, \"AGE_22_29\": 2151, \"AGE_30_39\": 2919, \"AGE_40_49\": 2982, \"AGE_50_64\": 3921, \"AGE_65_UP\": 6032, \"MED_AGE\": 46.600000, \"MED_AGE_M\": 43.300000, \"MED_AGE_F\": 49.200000, \"HOUSEHOLDS\": 10911, \"AVE_HH_SZ\": 1.950000, \"HSEHLD_1_M\": 1523, \"HSEHLD_1_F\": 2829, \"MARHH_CHD\": 1271, \"MARHH_NO_C\": 3334, \"MHH_CHILD\": 100, \"FHH_CHILD\": 431, \"FAMILIES\": 5664, \"AVE_FAM_SZ\": 2.600000, \"HSE_UNITS\": 12009, \"VACANT\": 1098, \"OWNER_OCC\": 6774, \"RENTER_OCC\": 4137 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.146590691219586, 26.344956954780343 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Boca Raton\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"07300\", \"CAPITAL\": \"N\", \"AREALAND\": 27.189000, \"AREAWATER\": 1.931000, \"POP_CL\": 7, \"POP2000\": 74764, \"WHITE\": 67851, \"BLACK\": 2810, \"AMERI_ES\": 123, \"ASIAN\": 1489, \"HAWN_PI\": 29, \"OTHER\": 1041, \"MULT_RACE\": 1421, \"HISPANIC\": 6359, \"MALES\": 36445, \"FEMALES\": 38319, \"AGE_UNDER5\": 3523, \"AGE_5_17\": 10612, \"AGE_18_21\": 3944, \"AGE_22_29\": 5598, \"AGE_30_39\": 10206, \"AGE_40_49\": 11875, \"AGE_50_64\": 14176, \"AGE_65_UP\": 14830, \"MED_AGE\": 42.900000, \"MED_AGE_M\": 41.800000, \"MED_AGE_F\": 44.000000, \"HOUSEHOLDS\": 31848, \"AVE_HH_SZ\": 2.260000, \"HSEHLD_1_M\": 3974, \"HSEHLD_1_F\": 5411, \"MARHH_CHD\": 6085, \"MARHH_NO_C\": 10831, \"MHH_CHILD\": 331, \"FHH_CHILD\": 1270, \"FAMILIES\": 20004, \"AVE_FAM_SZ\": 2.810000, \"HSE_UNITS\": 37547, \"VACANT\": 5699, \"OWNER_OCC\": 24068, \"RENTER_OCC\": 7780 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.100077721162833, 26.368698954865426 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bonita Springs\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"07525\", \"CAPITAL\": \"N\", \"AREALAND\": 35.289000, \"AREAWATER\": 5.717000, \"POP_CL\": 6, \"POP2000\": 32797, \"WHITE\": 29356, \"BLACK\": 118, \"AMERI_ES\": 84, \"ASIAN\": 123, \"HAWN_PI\": 28, \"OTHER\": 2582, \"MULT_RACE\": 506, \"HISPANIC\": 5615, \"MALES\": 16764, \"FEMALES\": 16033, \"AGE_UNDER5\": 1340, \"AGE_5_17\": 3214, \"AGE_18_21\": 1116, \"AGE_22_29\": 2263, \"AGE_30_39\": 3295, \"AGE_40_49\": 3430, \"AGE_50_64\": 7747, \"AGE_65_UP\": 10392, \"MED_AGE\": 54.100000, \"MED_AGE_M\": 52.400000, \"MED_AGE_F\": 55.600000, \"HOUSEHOLDS\": 14807, \"AVE_HH_SZ\": 2.210000, \"HSEHLD_1_M\": 1527, \"HSEHLD_1_F\": 2052, \"MARHH_CHD\": 1578, \"MARHH_NO_C\": 7514, \"MHH_CHILD\": 224, \"FHH_CHILD\": 330, \"FAMILIES\": 10276, \"AVE_FAM_SZ\": 2.540000, \"HSE_UNITS\": 23329, \"VACANT\": 8522, \"OWNER_OCC\": 12142, \"RENTER_OCC\": 2665 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.79093713778137, 26.349653968168045 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Boynton Beach\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"07875\", \"CAPITAL\": \"N\", \"AREALAND\": 15.877000, \"AREAWATER\": 0.373000, \"POP_CL\": 7, \"POP2000\": 60389, \"WHITE\": 42487, \"BLACK\": 13822, \"AMERI_ES\": 133, \"ASIAN\": 918, \"HAWN_PI\": 30, \"OTHER\": 1428, \"MULT_RACE\": 1571, \"HISPANIC\": 5564, \"MALES\": 28255, \"FEMALES\": 32134, \"AGE_UNDER5\": 3461, \"AGE_5_17\": 8529, \"AGE_18_21\": 2114, \"AGE_22_29\": 5614, \"AGE_30_39\": 8834, \"AGE_40_49\": 7901, \"AGE_50_64\": 8356, \"AGE_65_UP\": 15580, \"MED_AGE\": 41.800000, \"MED_AGE_M\": 40.000000, \"MED_AGE_F\": 43.800000, \"HOUSEHOLDS\": 26210, \"AVE_HH_SZ\": 2.260000, \"HSEHLD_1_M\": 3128, \"HSEHLD_1_F\": 5515, \"MARHH_CHD\": 3827, \"MARHH_NO_C\": 8082, \"MHH_CHILD\": 424, \"FHH_CHILD\": 1560, \"FAMILIES\": 15684, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 30643, \"VACANT\": 4433, \"OWNER_OCC\": 19072, \"RENTER_OCC\": 7138 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.076363747503564, 26.528098955034288 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bradenton\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"07950\", \"CAPITAL\": \"N\", \"AREALAND\": 12.108000, \"AREAWATER\": 2.335000, \"POP_CL\": 6, \"POP2000\": 49504, \"WHITE\": 38682, \"BLACK\": 7481, \"AMERI_ES\": 145, \"ASIAN\": 392, \"HAWN_PI\": 23, \"OTHER\": 1934, \"MULT_RACE\": 847, \"HISPANIC\": 5574, \"MALES\": 23485, \"FEMALES\": 26019, \"AGE_UNDER5\": 3042, \"AGE_5_17\": 7630, \"AGE_18_21\": 2127, \"AGE_22_29\": 4716, \"AGE_30_39\": 6210, \"AGE_40_49\": 6372, \"AGE_50_64\": 6818, \"AGE_65_UP\": 12589, \"MED_AGE\": 41.500000, \"MED_AGE_M\": 38.500000, \"MED_AGE_F\": 44.400000, \"HOUSEHOLDS\": 21379, \"AVE_HH_SZ\": 2.240000, \"HSEHLD_1_M\": 2665, \"HSEHLD_1_F\": 4624, \"MARHH_CHD\": 2877, \"MARHH_NO_C\": 6425, \"MHH_CHILD\": 430, \"FHH_CHILD\": 1601, \"FAMILIES\": 12721, \"AVE_FAM_SZ\": 2.850000, \"HSE_UNITS\": 24887, \"VACANT\": 3508, \"OWNER_OCC\": 13194, \"RENTER_OCC\": 8185 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.577743061658339, 27.488216975473939 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Brandon\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"08150\", \"CAPITAL\": \"N\", \"AREALAND\": 28.719000, \"AREAWATER\": 0.568000, \"POP_CL\": 7, \"POP2000\": 77895, \"WHITE\": 63798, \"BLACK\": 7213, \"AMERI_ES\": 315, \"ASIAN\": 1865, \"HAWN_PI\": 72, \"OTHER\": 2668, \"MULT_RACE\": 1964, \"HISPANIC\": 9882, \"MALES\": 37743, \"FEMALES\": 40152, \"AGE_UNDER5\": 5538, \"AGE_5_17\": 15405, \"AGE_18_21\": 3875, \"AGE_22_29\": 8564, \"AGE_30_39\": 13612, \"AGE_40_49\": 12418, \"AGE_50_64\": 11682, \"AGE_65_UP\": 6801, \"MED_AGE\": 34.300000, \"MED_AGE_M\": 33.400000, \"MED_AGE_F\": 35.200000, \"HOUSEHOLDS\": 28807, \"AVE_HH_SZ\": 2.680000, \"HSEHLD_1_M\": 2504, \"HSEHLD_1_F\": 3132, \"MARHH_CHD\": 8239, \"MARHH_NO_C\": 8684, \"MHH_CHILD\": 602, \"FHH_CHILD\": 2143, \"FAMILIES\": 21383, \"AVE_FAM_SZ\": 3.100000, \"HSE_UNITS\": 30485, \"VACANT\": 1678, \"OWNER_OCC\": 20639, \"RENTER_OCC\": 8168 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.289078095945243, 27.934650971260343 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Brent\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"08300\", \"CAPITAL\": \"N\", \"AREALAND\": 10.437000, \"AREAWATER\": 0.087000, \"POP_CL\": 6, \"POP2000\": 22257, \"WHITE\": 13326, \"BLACK\": 7622, \"AMERI_ES\": 164, \"ASIAN\": 508, \"HAWN_PI\": 60, \"OTHER\": 104, \"MULT_RACE\": 473, \"HISPANIC\": 433, \"MALES\": 10170, \"FEMALES\": 12087, \"AGE_UNDER5\": 1440, \"AGE_5_17\": 3858, \"AGE_18_21\": 4106, \"AGE_22_29\": 2586, \"AGE_30_39\": 2566, \"AGE_40_49\": 2478, \"AGE_50_64\": 2689, \"AGE_65_UP\": 2534, \"MED_AGE\": 26.700000, \"MED_AGE_M\": 25.500000, \"MED_AGE_F\": 27.800000, \"HOUSEHOLDS\": 7008, \"AVE_HH_SZ\": 2.600000, \"HSEHLD_1_M\": 757, \"HSEHLD_1_F\": 1017, \"MARHH_CHD\": 1155, \"MARHH_NO_C\": 1765, \"MHH_CHILD\": 175, \"FHH_CHILD\": 979, \"FAMILIES\": 4801, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 7796, \"VACANT\": 788, \"OWNER_OCC\": 4398, \"RENTER_OCC\": 2610 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.249126998821637, 30.47049599890331 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Brownsville\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"09000\", \"CAPITAL\": \"N\", \"AREALAND\": 2.294000, \"AREAWATER\": 0.003000, \"POP_CL\": 6, \"POP2000\": 14393, \"WHITE\": 829, \"BLACK\": 13131, \"AMERI_ES\": 32, \"ASIAN\": 3, \"HAWN_PI\": 2, \"OTHER\": 209, \"MULT_RACE\": 187, \"HISPANIC\": 1183, \"MALES\": 6556, \"FEMALES\": 7837, \"AGE_UNDER5\": 1121, \"AGE_5_17\": 3913, \"AGE_18_21\": 916, \"AGE_22_29\": 1359, \"AGE_30_39\": 1874, \"AGE_40_49\": 1781, \"AGE_50_64\": 1711, \"AGE_65_UP\": 1718, \"MED_AGE\": 29.400000, \"MED_AGE_M\": 26.100000, \"MED_AGE_F\": 32.000000, \"HOUSEHOLDS\": 4814, \"AVE_HH_SZ\": 2.980000, \"HSEHLD_1_M\": 646, \"HSEHLD_1_F\": 695, \"MARHH_CHD\": 447, \"MARHH_NO_C\": 567, \"MHH_CHILD\": 148, \"FHH_CHILD\": 1056, \"FAMILIES\": 3255, \"AVE_FAM_SZ\": 3.660000, \"HSE_UNITS\": 5506, \"VACANT\": 692, \"OWNER_OCC\": 1979, \"RENTER_OCC\": 2835 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.240220605962719, 25.821274954500485 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Callaway\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"09725\", \"CAPITAL\": \"N\", \"AREALAND\": 5.685000, \"AREAWATER\": 0.412000, \"POP_CL\": 6, \"POP2000\": 14233, \"WHITE\": 10769, \"BLACK\": 2251, \"AMERI_ES\": 119, \"ASIAN\": 478, \"HAWN_PI\": 12, \"OTHER\": 170, \"MULT_RACE\": 434, \"HISPANIC\": 509, \"MALES\": 7109, \"FEMALES\": 7124, \"AGE_UNDER5\": 1026, \"AGE_5_17\": 2858, \"AGE_18_21\": 804, \"AGE_22_29\": 1615, \"AGE_30_39\": 2237, \"AGE_40_49\": 2262, \"AGE_50_64\": 2221, \"AGE_65_UP\": 1210, \"MED_AGE\": 34.000000, \"MED_AGE_M\": 32.800000, \"MED_AGE_F\": 35.100000, \"HOUSEHOLDS\": 5541, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 633, \"HSEHLD_1_F\": 590, \"MARHH_CHD\": 1365, \"MARHH_NO_C\": 1658, \"MHH_CHILD\": 165, \"FHH_CHILD\": 499, \"FAMILIES\": 4005, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 6167, \"VACANT\": 626, \"OWNER_OCC\": 3583, \"RENTER_OCC\": 1958 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.577723997499234, 30.142250995184835 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cape Coral\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"10275\", \"CAPITAL\": \"N\", \"AREALAND\": 105.187000, \"AREAWATER\": 9.910000, \"POP_CL\": 8, \"POP2000\": 102286, \"WHITE\": 95133, \"BLACK\": 2046, \"AMERI_ES\": 260, \"ASIAN\": 938, \"HAWN_PI\": 56, \"OTHER\": 2253, \"MULT_RACE\": 1600, \"HISPANIC\": 8521, \"MALES\": 49584, \"FEMALES\": 52702, \"AGE_UNDER5\": 5623, \"AGE_5_17\": 17467, \"AGE_18_21\": 3613, \"AGE_22_29\": 7365, \"AGE_30_39\": 14446, \"AGE_40_49\": 15131, \"AGE_50_64\": 18621, \"AGE_65_UP\": 20020, \"MED_AGE\": 41.600000, \"MED_AGE_M\": 40.900000, \"MED_AGE_F\": 42.300000, \"HOUSEHOLDS\": 40768, \"AVE_HH_SZ\": 2.490000, \"HSEHLD_1_M\": 3296, \"HSEHLD_1_F\": 4755, \"MARHH_CHD\": 8966, \"MARHH_NO_C\": 15996, \"MHH_CHILD\": 834, \"FHH_CHILD\": 2234, \"FAMILIES\": 30210, \"AVE_FAM_SZ\": 2.850000, \"HSE_UNITS\": 45653, \"VACANT\": 4885, \"OWNER_OCC\": 32603, \"RENTER_OCC\": 8165 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.98247111460573, 26.639599969990808 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Carol City\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"10650\", \"CAPITAL\": \"N\", \"AREALAND\": 7.625000, \"AREAWATER\": 0.113000, \"POP_CL\": 7, \"POP2000\": 59443, \"WHITE\": 22653, \"BLACK\": 30970, \"AMERI_ES\": 115, \"ASIAN\": 324, \"HAWN_PI\": 24, \"OTHER\": 3287, \"MULT_RACE\": 2070, \"HISPANIC\": 24965, \"MALES\": 28570, \"FEMALES\": 30873, \"AGE_UNDER5\": 4247, \"AGE_5_17\": 14160, \"AGE_18_21\": 3554, \"AGE_22_29\": 6194, \"AGE_30_39\": 8858, \"AGE_40_49\": 8179, \"AGE_50_64\": 9354, \"AGE_65_UP\": 4897, \"MED_AGE\": 32.000000, \"MED_AGE_M\": 30.100000, \"MED_AGE_F\": 33.600000, \"HOUSEHOLDS\": 16402, \"AVE_HH_SZ\": 3.580000, \"HSEHLD_1_M\": 812, \"HSEHLD_1_F\": 959, \"MARHH_CHD\": 4174, \"MARHH_NO_C\": 4424, \"MHH_CHILD\": 499, \"FHH_CHILD\": 2336, \"FAMILIES\": 14096, \"AVE_FAM_SZ\": 3.750000, \"HSE_UNITS\": 17049, \"VACANT\": 647, \"OWNER_OCC\": 13584, \"RENTER_OCC\": 2818 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.269920597062097, 25.942120954649816 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Casselberry\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"11050\", \"CAPITAL\": \"N\", \"AREALAND\": 6.662000, \"AREAWATER\": 0.431000, \"POP_CL\": 6, \"POP2000\": 22629, \"WHITE\": 19381, \"BLACK\": 1218, \"AMERI_ES\": 63, \"ASIAN\": 430, \"HAWN_PI\": 9, \"OTHER\": 944, \"MULT_RACE\": 584, \"HISPANIC\": 3424, \"MALES\": 10927, \"FEMALES\": 11702, \"AGE_UNDER5\": 1248, \"AGE_5_17\": 3437, \"AGE_18_21\": 1135, \"AGE_22_29\": 2900, \"AGE_30_39\": 3680, \"AGE_40_49\": 3385, \"AGE_50_64\": 3570, \"AGE_65_UP\": 3274, \"MED_AGE\": 37.100000, \"MED_AGE_M\": 35.400000, \"MED_AGE_F\": 39.000000, \"HOUSEHOLDS\": 9746, \"AVE_HH_SZ\": 2.310000, \"HSEHLD_1_M\": 1265, \"HSEHLD_1_F\": 1724, \"MARHH_CHD\": 1558, \"MARHH_NO_C\": 2517, \"MHH_CHILD\": 229, \"FHH_CHILD\": 636, \"FAMILIES\": 5745, \"AVE_FAM_SZ\": 2.910000, \"HSE_UNITS\": 10450, \"VACANT\": 704, \"OWNER_OCC\": 6038, \"RENTER_OCC\": 3708 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.323264302834872, 28.660274958038165 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Citrus Park\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"12425\", \"CAPITAL\": \"N\", \"AREALAND\": 10.572000, \"AREAWATER\": 0.315000, \"POP_CL\": 6, \"POP2000\": 20226, \"WHITE\": 16484, \"BLACK\": 1532, \"AMERI_ES\": 71, \"ASIAN\": 643, \"HAWN_PI\": 15, \"OTHER\": 929, \"MULT_RACE\": 552, \"HISPANIC\": 4098, \"MALES\": 9936, \"FEMALES\": 10290, \"AGE_UNDER5\": 1519, \"AGE_5_17\": 4312, \"AGE_18_21\": 834, \"AGE_22_29\": 1879, \"AGE_30_39\": 3887, \"AGE_40_49\": 3725, \"AGE_50_64\": 2730, \"AGE_65_UP\": 1340, \"MED_AGE\": 34.500000, \"MED_AGE_M\": 33.900000, \"MED_AGE_F\": 35.100000, \"HOUSEHOLDS\": 7070, \"AVE_HH_SZ\": 2.850000, \"HSEHLD_1_M\": 499, \"HSEHLD_1_F\": 569, \"MARHH_CHD\": 2361, \"MARHH_NO_C\": 2076, \"MHH_CHILD\": 186, \"FHH_CHILD\": 506, \"FAMILIES\": 5544, \"AVE_FAM_SZ\": 3.180000, \"HSE_UNITS\": 7607, \"VACANT\": 537, \"OWNER_OCC\": 5899, \"RENTER_OCC\": 1171 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.558275069983893, 28.070768974186905 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Citrus Ridge\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"12435\", \"CAPITAL\": \"N\", \"AREALAND\": 46.845000, \"AREAWATER\": 3.741000, \"POP_CL\": 6, \"POP2000\": 12015, \"WHITE\": 10441, \"BLACK\": 429, \"AMERI_ES\": 38, \"ASIAN\": 275, \"HAWN_PI\": 10, \"OTHER\": 495, \"MULT_RACE\": 327, \"HISPANIC\": 1874, \"MALES\": 5958, \"FEMALES\": 6057, \"AGE_UNDER5\": 826, \"AGE_5_17\": 1570, \"AGE_18_21\": 458, \"AGE_22_29\": 1525, \"AGE_30_39\": 2181, \"AGE_40_49\": 1570, \"AGE_50_64\": 2244, \"AGE_65_UP\": 1641, \"MED_AGE\": 37.300000, \"MED_AGE_M\": 37.200000, \"MED_AGE_F\": 37.500000, \"HOUSEHOLDS\": 4909, \"AVE_HH_SZ\": 2.450000, \"HSEHLD_1_M\": 480, \"HSEHLD_1_F\": 510, \"MARHH_CHD\": 965, \"MARHH_NO_C\": 2013, \"MHH_CHILD\": 71, \"FHH_CHILD\": 194, \"FAMILIES\": 3483, \"AVE_FAM_SZ\": 2.820000, \"HSE_UNITS\": 8278, \"VACANT\": 3369, \"OWNER_OCC\": 3818, \"RENTER_OCC\": 1091 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.642451210057018, 28.333700962493758 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Clearwater\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"12875\", \"CAPITAL\": \"N\", \"AREALAND\": 25.287000, \"AREAWATER\": 12.437000, \"POP_CL\": 8, \"POP2000\": 108787, \"WHITE\": 91223, \"BLACK\": 10651, \"AMERI_ES\": 346, \"ASIAN\": 1782, \"HAWN_PI\": 75, \"OTHER\": 2700, \"MULT_RACE\": 2010, \"HISPANIC\": 9754, \"MALES\": 52065, \"FEMALES\": 56722, \"AGE_UNDER5\": 5628, \"AGE_5_17\": 15190, \"AGE_18_21\": 4957, \"AGE_22_29\": 10579, \"AGE_30_39\": 15150, \"AGE_40_49\": 15608, \"AGE_50_64\": 18318, \"AGE_65_UP\": 23357, \"MED_AGE\": 41.800000, \"MED_AGE_M\": 39.600000, \"MED_AGE_F\": 44.000000, \"HOUSEHOLDS\": 48449, \"AVE_HH_SZ\": 2.170000, \"HSEHLD_1_M\": 7115, \"HSEHLD_1_F\": 10069, \"MARHH_CHD\": 6427, \"MARHH_NO_C\": 13770, \"MHH_CHILD\": 817, \"FHH_CHILD\": 3274, \"FAMILIES\": 27439, \"AVE_FAM_SZ\": 2.790000, \"HSE_UNITS\": 56802, \"VACANT\": 8353, \"OWNER_OCC\": 30098, \"RENTER_OCC\": 18351 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.76427105211738, 27.973643976715643 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cocoa\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"13150\", \"CAPITAL\": \"N\", \"AREALAND\": 7.459000, \"AREAWATER\": 2.065000, \"POP_CL\": 6, \"POP2000\": 16412, \"WHITE\": 10252, \"BLACK\": 5298, \"AMERI_ES\": 104, \"ASIAN\": 154, \"HAWN_PI\": 38, \"OTHER\": 259, \"MULT_RACE\": 307, \"HISPANIC\": 809, \"MALES\": 7797, \"FEMALES\": 8615, \"AGE_UNDER5\": 1156, \"AGE_5_17\": 3177, \"AGE_18_21\": 853, \"AGE_22_29\": 1585, \"AGE_30_39\": 2369, \"AGE_40_49\": 2453, \"AGE_50_64\": 2468, \"AGE_65_UP\": 2351, \"MED_AGE\": 36.400000, \"MED_AGE_M\": 35.600000, \"MED_AGE_F\": 37.300000, \"HOUSEHOLDS\": 6939, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 1037, \"HSEHLD_1_F\": 1185, \"MARHH_CHD\": 922, \"MARHH_NO_C\": 1642, \"MHH_CHILD\": 173, \"FHH_CHILD\": 880, \"FAMILIES\": 4236, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 8064, \"VACANT\": 1125, \"OWNER_OCC\": 4038, \"RENTER_OCC\": 2901 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.743779505275015, 28.369333953998549 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cocoa Beach\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"13175\", \"CAPITAL\": \"N\", \"AREALAND\": 4.891000, \"AREAWATER\": 10.149000, \"POP_CL\": 6, \"POP2000\": 12482, \"WHITE\": 12062, \"BLACK\": 78, \"AMERI_ES\": 28, \"ASIAN\": 134, \"HAWN_PI\": 7, \"OTHER\": 38, \"MULT_RACE\": 135, \"HISPANIC\": 314, \"MALES\": 6219, \"FEMALES\": 6263, \"AGE_UNDER5\": 326, \"AGE_5_17\": 1201, \"AGE_18_21\": 277, \"AGE_22_29\": 604, \"AGE_30_39\": 1385, \"AGE_40_49\": 1847, \"AGE_50_64\": 2554, \"AGE_65_UP\": 4288, \"MED_AGE\": 53.600000, \"MED_AGE_M\": 51.300000, \"MED_AGE_F\": 56.400000, \"HOUSEHOLDS\": 6529, \"AVE_HH_SZ\": 1.910000, \"HSEHLD_1_M\": 1137, \"HSEHLD_1_F\": 1361, \"MARHH_CHD\": 567, \"MARHH_NO_C\": 2402, \"MHH_CHILD\": 93, \"FHH_CHILD\": 183, \"FAMILIES\": 3535, \"AVE_FAM_SZ\": 2.470000, \"HSE_UNITS\": 8709, \"VACANT\": 2180, \"OWNER_OCC\": 4748, \"RENTER_OCC\": 1781 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.613035565961226, 28.331034953524746 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Coconut Creek\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"13275\", \"CAPITAL\": \"N\", \"AREALAND\": 11.546000, \"AREAWATER\": 0.238000, \"POP_CL\": 6, \"POP2000\": 43566, \"WHITE\": 37588, \"BLACK\": 2685, \"AMERI_ES\": 56, \"ASIAN\": 1033, \"HAWN_PI\": 23, \"OTHER\": 1245, \"MULT_RACE\": 936, \"HISPANIC\": 5076, \"MALES\": 20238, \"FEMALES\": 23328, \"AGE_UNDER5\": 2688, \"AGE_5_17\": 5151, \"AGE_18_21\": 1127, \"AGE_22_29\": 4566, \"AGE_30_39\": 7398, \"AGE_40_49\": 5352, \"AGE_50_64\": 5728, \"AGE_65_UP\": 11556, \"MED_AGE\": 41.300000, \"MED_AGE_M\": 38.900000, \"MED_AGE_F\": 44.100000, \"HOUSEHOLDS\": 20093, \"AVE_HH_SZ\": 2.160000, \"HSEHLD_1_M\": 2017, \"HSEHLD_1_F\": 4510, \"MARHH_CHD\": 3351, \"MARHH_NO_C\": 6572, \"MHH_CHILD\": 287, \"FHH_CHILD\": 789, \"FAMILIES\": 12037, \"AVE_FAM_SZ\": 2.730000, \"HSE_UNITS\": 22182, \"VACANT\": 2089, \"OWNER_OCC\": 15161, \"RENTER_OCC\": 4932 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.184719664210121, 26.275009954722478 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Conway\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"14050\", \"CAPITAL\": \"N\", \"AREALAND\": 3.450000, \"AREAWATER\": 0.172000, \"POP_CL\": 6, \"POP2000\": 14394, \"WHITE\": 12983, \"BLACK\": 368, \"AMERI_ES\": 42, \"ASIAN\": 283, \"HAWN_PI\": 8, \"OTHER\": 385, \"MULT_RACE\": 325, \"HISPANIC\": 1661, \"MALES\": 7075, \"FEMALES\": 7319, \"AGE_UNDER5\": 819, \"AGE_5_17\": 2990, \"AGE_18_21\": 574, \"AGE_22_29\": 1049, \"AGE_30_39\": 2364, \"AGE_40_49\": 2638, \"AGE_50_64\": 2231, \"AGE_65_UP\": 1729, \"MED_AGE\": 37.900000, \"MED_AGE_M\": 37.000000, \"MED_AGE_F\": 38.700000, \"HOUSEHOLDS\": 5267, \"AVE_HH_SZ\": 2.730000, \"HSEHLD_1_M\": 377, \"HSEHLD_1_F\": 529, \"MARHH_CHD\": 1504, \"MARHH_NO_C\": 1743, \"MHH_CHILD\": 102, \"FHH_CHILD\": 336, \"FAMILIES\": 4035, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 5414, \"VACANT\": 147, \"OWNER_OCC\": 4316, \"RENTER_OCC\": 951 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.333131293781676, 28.497813958570866 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cooper City\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"14125\", \"CAPITAL\": \"N\", \"AREALAND\": 6.346000, \"AREAWATER\": 0.350000, \"POP_CL\": 6, \"POP2000\": 27939, \"WHITE\": 24893, \"BLACK\": 864, \"AMERI_ES\": 44, \"ASIAN\": 1143, \"HAWN_PI\": 11, \"OTHER\": 461, \"MULT_RACE\": 523, \"HISPANIC\": 4349, \"MALES\": 13543, \"FEMALES\": 14396, \"AGE_UNDER5\": 1695, \"AGE_5_17\": 7060, \"AGE_18_21\": 1172, \"AGE_22_29\": 1579, \"AGE_30_39\": 4307, \"AGE_40_49\": 6044, \"AGE_50_64\": 4223, \"AGE_65_UP\": 1859, \"MED_AGE\": 36.700000, \"MED_AGE_M\": 35.700000, \"MED_AGE_F\": 37.400000, \"HOUSEHOLDS\": 9123, \"AVE_HH_SZ\": 3.060000, \"HSEHLD_1_M\": 371, \"HSEHLD_1_F\": 616, \"MARHH_CHD\": 3850, \"MARHH_NO_C\": 2609, \"MHH_CHILD\": 148, \"FHH_CHILD\": 703, \"FAMILIES\": 7831, \"AVE_FAM_SZ\": 3.300000, \"HSE_UNITS\": 9289, \"VACANT\": 166, \"OWNER_OCC\": 8412, \"RENTER_OCC\": 711 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.289566592559737, 26.044630954747959 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Coral Gables\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"14250\", \"CAPITAL\": \"N\", \"AREALAND\": 13.133000, \"AREAWATER\": 24.024000, \"POP_CL\": 6, \"POP2000\": 42249, \"WHITE\": 38798, \"BLACK\": 1394, \"AMERI_ES\": 55, \"ASIAN\": 708, \"HAWN_PI\": 15, \"OTHER\": 629, \"MULT_RACE\": 650, \"HISPANIC\": 19703, \"MALES\": 19734, \"FEMALES\": 22515, \"AGE_UNDER5\": 2089, \"AGE_5_17\": 5263, \"AGE_18_21\": 4243, \"AGE_22_29\": 4307, \"AGE_30_39\": 6484, \"AGE_40_49\": 6015, \"AGE_50_64\": 7178, \"AGE_65_UP\": 6670, \"MED_AGE\": 38.100000, \"MED_AGE_M\": 37.200000, \"MED_AGE_F\": 39.000000, \"HOUSEHOLDS\": 16793, \"AVE_HH_SZ\": 2.310000, \"HSEHLD_1_M\": 2176, \"HSEHLD_1_F\": 3112, \"MARHH_CHD\": 3311, \"MARHH_NO_C\": 4950, \"MHH_CHILD\": 130, \"FHH_CHILD\": 615, \"FAMILIES\": 10251, \"AVE_FAM_SZ\": 2.920000, \"HSE_UNITS\": 17849, \"VACANT\": 1056, \"OWNER_OCC\": 11056, \"RENTER_OCC\": 5737 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.270986584652718, 25.728227954517401 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Coral Springs\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"14400\", \"CAPITAL\": \"N\", \"AREALAND\": 23.909000, \"AREAWATER\": 0.237000, \"POP_CL\": 8, \"POP2000\": 117549, \"WHITE\": 95860, \"BLACK\": 10766, \"AMERI_ES\": 208, \"ASIAN\": 4152, \"HAWN_PI\": 79, \"OTHER\": 3520, \"MULT_RACE\": 2964, \"HISPANIC\": 18233, \"MALES\": 57251, \"FEMALES\": 60298, \"AGE_UNDER5\": 8120, \"AGE_5_17\": 27930, \"AGE_18_21\": 5702, \"AGE_22_29\": 10616, \"AGE_30_39\": 19537, \"AGE_40_49\": 21984, \"AGE_50_64\": 16620, \"AGE_65_UP\": 7040, \"MED_AGE\": 33.800000, \"MED_AGE_M\": 32.700000, \"MED_AGE_F\": 34.800000, \"HOUSEHOLDS\": 39522, \"AVE_HH_SZ\": 2.960000, \"HSEHLD_1_M\": 2626, \"HSEHLD_1_F\": 3400, \"MARHH_CHD\": 14374, \"MARHH_NO_C\": 9882, \"MHH_CHILD\": 1015, \"FHH_CHILD\": 3724, \"FAMILIES\": 31309, \"AVE_FAM_SZ\": 3.300000, \"HSE_UNITS\": 41337, \"VACANT\": 1815, \"OWNER_OCC\": 25681, \"RENTER_OCC\": 13841 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.259163622112965, 26.270657954770975 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Coral Terrace\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"14412\", \"CAPITAL\": \"N\", \"AREALAND\": 3.429000, \"AREAWATER\": 0.019000, \"POP_CL\": 6, \"POP2000\": 24380, \"WHITE\": 22687, \"BLACK\": 281, \"AMERI_ES\": 24, \"ASIAN\": 130, \"HAWN_PI\": 2, \"OTHER\": 693, \"MULT_RACE\": 563, \"HISPANIC\": 20015, \"MALES\": 11520, \"FEMALES\": 12860, \"AGE_UNDER5\": 1293, \"AGE_5_17\": 3648, \"AGE_18_21\": 883, \"AGE_22_29\": 2254, \"AGE_30_39\": 3741, \"AGE_40_49\": 3105, \"AGE_50_64\": 4444, \"AGE_65_UP\": 5012, \"MED_AGE\": 41.200000, \"MED_AGE_M\": 39.000000, \"MED_AGE_F\": 43.800000, \"HOUSEHOLDS\": 7744, \"AVE_HH_SZ\": 3.070000, \"HSEHLD_1_M\": 462, \"HSEHLD_1_F\": 729, \"MARHH_CHD\": 1739, \"MARHH_NO_C\": 2778, \"MHH_CHILD\": 119, \"FHH_CHILD\": 409, \"FAMILIES\": 6173, \"AVE_FAM_SZ\": 3.300000, \"HSE_UNITS\": 7955, \"VACANT\": 211, \"OWNER_OCC\": 5470, \"RENTER_OCC\": 2274 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.304551568496507, 25.746777954642322 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Country Club\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"14895\", \"CAPITAL\": \"N\", \"AREALAND\": 4.312000, \"AREAWATER\": 0.196000, \"POP_CL\": 6, \"POP2000\": 36310, \"WHITE\": 23072, \"BLACK\": 7992, \"AMERI_ES\": 82, \"ASIAN\": 803, \"HAWN_PI\": 21, \"OTHER\": 2634, \"MULT_RACE\": 1706, \"HISPANIC\": 21903, \"MALES\": 17225, \"FEMALES\": 19085, \"AGE_UNDER5\": 3092, \"AGE_5_17\": 6768, \"AGE_18_21\": 1945, \"AGE_22_29\": 5966, \"AGE_30_39\": 7169, \"AGE_40_49\": 5057, \"AGE_50_64\": 4064, \"AGE_65_UP\": 2249, \"MED_AGE\": 30.500000, \"MED_AGE_M\": 29.900000, \"MED_AGE_F\": 31.100000, \"HOUSEHOLDS\": 12917, \"AVE_HH_SZ\": 2.800000, \"HSEHLD_1_M\": 1192, \"HSEHLD_1_F\": 1376, \"MARHH_CHD\": 3457, \"MARHH_NO_C\": 2788, \"MHH_CHILD\": 378, \"FHH_CHILD\": 1506, \"FAMILIES\": 9345, \"AVE_FAM_SZ\": 3.230000, \"HSE_UNITS\": 13782, \"VACANT\": 865, \"OWNER_OCC\": 5946, \"RENTER_OCC\": 6971 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.311162575502323, 25.939109954764341 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Country Walk\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"15055\", \"CAPITAL\": \"N\", \"AREALAND\": 2.746000, \"AREAWATER\": 0.009000, \"POP_CL\": 6, \"POP2000\": 10653, \"WHITE\": 8267, \"BLACK\": 1136, \"AMERI_ES\": 11, \"ASIAN\": 268, \"HAWN_PI\": 5, \"OTHER\": 533, \"MULT_RACE\": 433, \"HISPANIC\": 5980, \"MALES\": 5087, \"FEMALES\": 5566, \"AGE_UNDER5\": 1063, \"AGE_5_17\": 2424, \"AGE_18_21\": 402, \"AGE_22_29\": 1133, \"AGE_30_39\": 2369, \"AGE_40_49\": 1597, \"AGE_50_64\": 1130, \"AGE_65_UP\": 535, \"MED_AGE\": 31.500000, \"MED_AGE_M\": 31.100000, \"MED_AGE_F\": 32.000000, \"HOUSEHOLDS\": 3234, \"AVE_HH_SZ\": 3.290000, \"HSEHLD_1_M\": 130, \"HSEHLD_1_F\": 183, \"MARHH_CHD\": 1528, \"MARHH_NO_C\": 778, \"MHH_CHILD\": 60, \"FHH_CHILD\": 252, \"FAMILIES\": 2819, \"AVE_FAM_SZ\": 3.510000, \"HSE_UNITS\": 3409, \"VACANT\": 175, \"OWNER_OCC\": 2982, \"RENTER_OCC\": 252 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.434956500401128, 25.632331955197181 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Crestview\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"15475\", \"CAPITAL\": \"N\", \"AREALAND\": 12.799000, \"AREAWATER\": 0.029000, \"POP_CL\": 6, \"POP2000\": 14766, \"WHITE\": 11032, \"BLACK\": 2719, \"AMERI_ES\": 89, \"ASIAN\": 337, \"HAWN_PI\": 22, \"OTHER\": 180, \"MULT_RACE\": 387, \"HISPANIC\": 481, \"MALES\": 7132, \"FEMALES\": 7634, \"AGE_UNDER5\": 1153, \"AGE_5_17\": 3160, \"AGE_18_21\": 779, \"AGE_22_29\": 1550, \"AGE_30_39\": 2579, \"AGE_40_49\": 2095, \"AGE_50_64\": 1745, \"AGE_65_UP\": 1705, \"MED_AGE\": 33.100000, \"MED_AGE_M\": 32.400000, \"MED_AGE_F\": 33.900000, \"HOUSEHOLDS\": 5297, \"AVE_HH_SZ\": 2.640000, \"HSEHLD_1_M\": 519, \"HSEHLD_1_F\": 684, \"MARHH_CHD\": 1449, \"MARHH_NO_C\": 1383, \"MHH_CHILD\": 121, \"FHH_CHILD\": 597, \"FAMILIES\": 3892, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 5918, \"VACANT\": 621, \"OWNER_OCC\": 3469, \"RENTER_OCC\": 1828 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.57264999815925, 30.754210997809206 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cutler\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"15962\", \"CAPITAL\": \"N\", \"AREALAND\": 6.727000, \"AREAWATER\": 0.024000, \"POP_CL\": 6, \"POP2000\": 17390, \"WHITE\": 15513, \"BLACK\": 679, \"AMERI_ES\": 19, \"ASIAN\": 521, \"HAWN_PI\": 5, \"OTHER\": 332, \"MULT_RACE\": 321, \"HISPANIC\": 4555, \"MALES\": 8472, \"FEMALES\": 8918, \"AGE_UNDER5\": 1195, \"AGE_5_17\": 3933, \"AGE_18_21\": 641, \"AGE_22_29\": 954, \"AGE_30_39\": 2422, \"AGE_40_49\": 3419, \"AGE_50_64\": 3185, \"AGE_65_UP\": 1641, \"MED_AGE\": 38.700000, \"MED_AGE_M\": 38.200000, \"MED_AGE_F\": 39.100000, \"HOUSEHOLDS\": 5694, \"AVE_HH_SZ\": 3.050000, \"HSEHLD_1_M\": 256, \"HSEHLD_1_F\": 357, \"MARHH_CHD\": 2331, \"MARHH_NO_C\": 1976, \"MHH_CHILD\": 54, \"FHH_CHILD\": 267, \"FAMILIES\": 4933, \"AVE_FAM_SZ\": 3.270000, \"HSE_UNITS\": 5806, \"VACANT\": 112, \"OWNER_OCC\": 5025, \"RENTER_OCC\": 669 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.32070455421065, 25.627186954630144 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cutler Ridge\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"15975\", \"CAPITAL\": \"N\", \"AREALAND\": 4.753000, \"AREAWATER\": 0.111000, \"POP_CL\": 6, \"POP2000\": 24781, \"WHITE\": 18268, \"BLACK\": 3885, \"AMERI_ES\": 67, \"ASIAN\": 428, \"HAWN_PI\": 18, \"OTHER\": 1184, \"MULT_RACE\": 931, \"HISPANIC\": 9107, \"MALES\": 11922, \"FEMALES\": 12859, \"AGE_UNDER5\": 1938, \"AGE_5_17\": 5267, \"AGE_18_21\": 1134, \"AGE_22_29\": 2458, \"AGE_30_39\": 4099, \"AGE_40_49\": 3806, \"AGE_50_64\": 3293, \"AGE_65_UP\": 2786, \"MED_AGE\": 34.500000, \"MED_AGE_M\": 33.000000, \"MED_AGE_F\": 35.700000, \"HOUSEHOLDS\": 8396, \"AVE_HH_SZ\": 2.910000, \"HSEHLD_1_M\": 676, \"HSEHLD_1_F\": 994, \"MARHH_CHD\": 2402, \"MARHH_NO_C\": 2100, \"MHH_CHILD\": 207, \"FHH_CHILD\": 816, \"FAMILIES\": 6318, \"AVE_FAM_SZ\": 3.350000, \"HSE_UNITS\": 8725, \"VACANT\": 329, \"OWNER_OCC\": 5869, \"RENTER_OCC\": 2527 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.346799539235704, 25.58268395471741 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cypress Lake\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"16062\", \"CAPITAL\": \"N\", \"AREALAND\": 3.977000, \"AREAWATER\": 0.004000, \"POP_CL\": 6, \"POP2000\": 12072, \"WHITE\": 11669, \"BLACK\": 126, \"AMERI_ES\": 15, \"ASIAN\": 75, \"HAWN_PI\": 4, \"OTHER\": 66, \"MULT_RACE\": 117, \"HISPANIC\": 437, \"MALES\": 5451, \"FEMALES\": 6621, \"AGE_UNDER5\": 391, \"AGE_5_17\": 1022, \"AGE_18_21\": 281, \"AGE_22_29\": 728, \"AGE_30_39\": 1157, \"AGE_40_49\": 1395, \"AGE_50_64\": 2368, \"AGE_65_UP\": 4730, \"MED_AGE\": 57.200000, \"MED_AGE_M\": 54.700000, \"MED_AGE_F\": 58.800000, \"HOUSEHOLDS\": 6348, \"AVE_HH_SZ\": 1.890000, \"HSEHLD_1_M\": 734, \"HSEHLD_1_F\": 1689, \"MARHH_CHD\": 540, \"MARHH_NO_C\": 2449, \"MHH_CHILD\": 61, \"FHH_CHILD\": 213, \"FAMILIES\": 3551, \"AVE_FAM_SZ\": 2.420000, \"HSE_UNITS\": 7994, \"VACANT\": 1646, \"OWNER_OCC\": 4955, \"RENTER_OCC\": 1393 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.901533124301295, 26.538053969191758 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Dania Beach\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"16325\", \"CAPITAL\": \"N\", \"AREALAND\": 6.090000, \"AREAWATER\": 0.221000, \"POP_CL\": 6, \"POP2000\": 20061, \"WHITE\": 14070, \"BLACK\": 4763, \"AMERI_ES\": 60, \"ASIAN\": 278, \"HAWN_PI\": 6, \"OTHER\": 455, \"MULT_RACE\": 429, \"HISPANIC\": 2410, \"MALES\": 10009, \"FEMALES\": 10052, \"AGE_UNDER5\": 1114, \"AGE_5_17\": 2891, \"AGE_18_21\": 720, \"AGE_22_29\": 2147, \"AGE_30_39\": 3189, \"AGE_40_49\": 3389, \"AGE_50_64\": 3377, \"AGE_65_UP\": 3234, \"MED_AGE\": 39.900000, \"MED_AGE_M\": 39.300000, \"MED_AGE_F\": 40.500000, \"HOUSEHOLDS\": 9012, \"AVE_HH_SZ\": 2.190000, \"HSEHLD_1_M\": 1694, \"HSEHLD_1_F\": 1464, \"MARHH_CHD\": 1007, \"MARHH_NO_C\": 2141, \"MHH_CHILD\": 196, \"FHH_CHILD\": 728, \"FAMILIES\": 4867, \"AVE_FAM_SZ\": 2.850000, \"HSE_UNITS\": 10847, \"VACANT\": 1835, \"OWNER_OCC\": 5158, \"RENTER_OCC\": 3854 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.153119668436375, 26.05491595457385 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Davie\", \"CLASS\": \"town\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"16475\", \"CAPITAL\": \"N\", \"AREALAND\": 33.428000, \"AREAWATER\": 0.741000, \"POP_CL\": 7, \"POP2000\": 75720, \"WHITE\": 65916, \"BLACK\": 3454, \"AMERI_ES\": 187, \"ASIAN\": 2111, \"HAWN_PI\": 30, \"OTHER\": 2168, \"MULT_RACE\": 1854, \"HISPANIC\": 14270, \"MALES\": 36910, \"FEMALES\": 38810, \"AGE_UNDER5\": 5044, \"AGE_5_17\": 14920, \"AGE_18_21\": 3395, \"AGE_22_29\": 8049, \"AGE_30_39\": 12930, \"AGE_40_49\": 13081, \"AGE_50_64\": 11174, \"AGE_65_UP\": 7127, \"MED_AGE\": 35.500000, \"MED_AGE_M\": 34.800000, \"MED_AGE_F\": 36.100000, \"HOUSEHOLDS\": 28682, \"AVE_HH_SZ\": 2.640000, \"HSEHLD_1_M\": 3022, \"HSEHLD_1_F\": 3373, \"MARHH_CHD\": 7655, \"MARHH_NO_C\": 7200, \"MHH_CHILD\": 674, \"FHH_CHILD\": 2194, \"FAMILIES\": 19774, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 31284, \"VACANT\": 2602, \"OWNER_OCC\": 21940, \"RENTER_OCC\": 6742 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.280223599584929, 26.081425954740833 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Daytona Beach\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"16525\", \"CAPITAL\": \"N\", \"AREALAND\": 58.677000, \"AREAWATER\": 6.254000, \"POP_CL\": 7, \"POP2000\": 64112, \"WHITE\": 39963, \"BLACK\": 20994, \"AMERI_ES\": 206, \"ASIAN\": 1112, \"HAWN_PI\": 41, \"OTHER\": 670, \"MULT_RACE\": 1126, \"HISPANIC\": 2232, \"MALES\": 32004, \"FEMALES\": 32108, \"AGE_UNDER5\": 3189, \"AGE_5_17\": 8108, \"AGE_18_21\": 6790, \"AGE_22_29\": 8405, \"AGE_30_39\": 7785, \"AGE_40_49\": 7848, \"AGE_50_64\": 9328, \"AGE_65_UP\": 12659, \"MED_AGE\": 37.200000, \"MED_AGE_M\": 33.900000, \"MED_AGE_F\": 40.500000, \"HOUSEHOLDS\": 28605, \"AVE_HH_SZ\": 2.060000, \"HSEHLD_1_M\": 5342, \"HSEHLD_1_F\": 5942, \"MARHH_CHD\": 2269, \"MARHH_NO_C\": 6335, \"MHH_CHILD\": 476, \"FHH_CHILD\": 2406, \"FAMILIES\": 13842, \"AVE_FAM_SZ\": 2.770000, \"HSE_UNITS\": 33345, \"VACANT\": 4740, \"OWNER_OCC\": 13538, \"RENTER_OCC\": 15067 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.037900425840803, 29.207308953741393 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"De Bary\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"16675\", \"CAPITAL\": \"N\", \"AREALAND\": 18.223000, \"AREAWATER\": 3.217000, \"POP_CL\": 6, \"POP2000\": 15559, \"WHITE\": 14772, \"BLACK\": 296, \"AMERI_ES\": 31, \"ASIAN\": 176, \"HAWN_PI\": 1, \"OTHER\": 134, \"MULT_RACE\": 149, \"HISPANIC\": 645, \"MALES\": 7459, \"FEMALES\": 8100, \"AGE_UNDER5\": 736, \"AGE_5_17\": 2376, \"AGE_18_21\": 479, \"AGE_22_29\": 931, \"AGE_30_39\": 2012, \"AGE_40_49\": 2390, \"AGE_50_64\": 3064, \"AGE_65_UP\": 3571, \"MED_AGE\": 45.100000, \"MED_AGE_M\": 43.700000, \"MED_AGE_F\": 46.500000, \"HOUSEHOLDS\": 6538, \"AVE_HH_SZ\": 2.370000, \"HSEHLD_1_M\": 552, \"HSEHLD_1_F\": 933, \"MARHH_CHD\": 1256, \"MARHH_NO_C\": 2739, \"MHH_CHILD\": 89, \"FHH_CHILD\": 278, \"FAMILIES\": 4723, \"AVE_FAM_SZ\": 2.760000, \"HSE_UNITS\": 7001, \"VACANT\": 463, \"OWNER_OCC\": 5765, \"RENTER_OCC\": 773 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.310995315342325, 28.884223957292626 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Deerfield Beach\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"16725\", \"CAPITAL\": \"N\", \"AREALAND\": 13.425000, \"AREAWATER\": 1.502000, \"POP_CL\": 7, \"POP2000\": 64583, \"WHITE\": 49894, \"BLACK\": 10339, \"AMERI_ES\": 108, \"ASIAN\": 896, \"HAWN_PI\": 20, \"OTHER\": 1521, \"MULT_RACE\": 1805, \"HISPANIC\": 5643, \"MALES\": 30081, \"FEMALES\": 34502, \"AGE_UNDER5\": 3068, \"AGE_5_17\": 6995, \"AGE_18_21\": 2100, \"AGE_22_29\": 6421, \"AGE_30_39\": 9694, \"AGE_40_49\": 8028, \"AGE_50_64\": 9334, \"AGE_65_UP\": 18943, \"MED_AGE\": 44.600000, \"MED_AGE_M\": 41.200000, \"MED_AGE_F\": 48.300000, \"HOUSEHOLDS\": 31392, \"AVE_HH_SZ\": 2.020000, \"HSEHLD_1_M\": 4647, \"HSEHLD_1_F\": 8013, \"MARHH_CHD\": 3260, \"MARHH_NO_C\": 8735, \"MHH_CHILD\": 401, \"FHH_CHILD\": 1457, \"FAMILIES\": 16056, \"AVE_FAM_SZ\": 2.720000, \"HSE_UNITS\": 37343, \"VACANT\": 5951, \"OWNER_OCC\": 22029, \"RENTER_OCC\": 9363 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.119817704666787, 26.305222954786579 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"De Land\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"16875\", \"CAPITAL\": \"N\", \"AREALAND\": 15.871000, \"AREAWATER\": 0.186000, \"POP_CL\": 6, \"POP2000\": 20904, \"WHITE\": 15670, \"BLACK\": 4010, \"AMERI_ES\": 47, \"ASIAN\": 170, \"HAWN_PI\": 3, \"OTHER\": 627, \"MULT_RACE\": 377, \"HISPANIC\": 1824, \"MALES\": 9480, \"FEMALES\": 11424, \"AGE_UNDER5\": 1169, \"AGE_5_17\": 3157, \"AGE_18_21\": 2191, \"AGE_22_29\": 2150, \"AGE_30_39\": 2379, \"AGE_40_49\": 2315, \"AGE_50_64\": 2620, \"AGE_65_UP\": 4923, \"MED_AGE\": 37.600000, \"MED_AGE_M\": 33.600000, \"MED_AGE_F\": 41.000000, \"HOUSEHOLDS\": 8375, \"AVE_HH_SZ\": 2.220000, \"HSEHLD_1_M\": 1029, \"HSEHLD_1_F\": 2088, \"MARHH_CHD\": 1085, \"MARHH_NO_C\": 2011, \"MHH_CHILD\": 158, \"FHH_CHILD\": 753, \"FAMILIES\": 4634, \"AVE_FAM_SZ\": 2.920000, \"HSE_UNITS\": 9272, \"VACANT\": 897, \"OWNER_OCC\": 4540, \"RENTER_OCC\": 3835 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.300446324509053, 29.028948956767323 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Delray Beach\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"17100\", \"CAPITAL\": \"N\", \"AREALAND\": 15.368000, \"AREAWATER\": 0.525000, \"POP_CL\": 7, \"POP2000\": 60020, \"WHITE\": 39908, \"BLACK\": 15981, \"AMERI_ES\": 102, \"ASIAN\": 651, \"HAWN_PI\": 49, \"OTHER\": 933, \"MULT_RACE\": 2396, \"HISPANIC\": 4184, \"MALES\": 28635, \"FEMALES\": 31385, \"AGE_UNDER5\": 3007, \"AGE_5_17\": 7931, \"AGE_18_21\": 2131, \"AGE_22_29\": 5076, \"AGE_30_39\": 8447, \"AGE_40_49\": 8352, \"AGE_50_64\": 9525, \"AGE_65_UP\": 15551, \"MED_AGE\": 43.800000, \"MED_AGE_M\": 41.600000, \"MED_AGE_F\": 46.100000, \"HOUSEHOLDS\": 26787, \"AVE_HH_SZ\": 2.220000, \"HSEHLD_1_M\": 3479, \"HSEHLD_1_F\": 5973, \"MARHH_CHD\": 3229, \"MARHH_NO_C\": 8123, \"MHH_CHILD\": 422, \"FHH_CHILD\": 1407, \"FAMILIES\": 15091, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 31702, \"VACANT\": 4915, \"OWNER_OCC\": 18678, \"RENTER_OCC\": 8109 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.083038738248078, 26.459100954968985 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Deltona\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"17200\", \"CAPITAL\": \"N\", \"AREALAND\": 35.778000, \"AREAWATER\": 2.543000, \"POP_CL\": 7, \"POP2000\": 69543, \"WHITE\": 58659, \"BLACK\": 4848, \"AMERI_ES\": 245, \"ASIAN\": 650, \"HAWN_PI\": 36, \"OTHER\": 3454, \"MULT_RACE\": 1651, \"HISPANIC\": 12747, \"MALES\": 33760, \"FEMALES\": 35783, \"AGE_UNDER5\": 4291, \"AGE_5_17\": 14501, \"AGE_18_21\": 3280, \"AGE_22_29\": 5739, \"AGE_30_39\": 10539, \"AGE_40_49\": 10777, \"AGE_50_64\": 10000, \"AGE_65_UP\": 10416, \"MED_AGE\": 37.100000, \"MED_AGE_M\": 36.200000, \"MED_AGE_F\": 37.900000, \"HOUSEHOLDS\": 24896, \"AVE_HH_SZ\": 2.790000, \"HSEHLD_1_M\": 1710, \"HSEHLD_1_F\": 2396, \"MARHH_CHD\": 6718, \"MARHH_NO_C\": 8601, \"MHH_CHILD\": 604, \"FHH_CHILD\": 1878, \"FAMILIES\": 19513, \"AVE_FAM_SZ\": 3.100000, \"HSE_UNITS\": 26417, \"VACANT\": 1521, \"OWNER_OCC\": 21680, \"RENTER_OCC\": 3216 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.216345346605991, 28.907031956259388 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Destin\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"17325\", \"CAPITAL\": \"N\", \"AREALAND\": 7.528000, \"AREAWATER\": 0.650000, \"POP_CL\": 6, \"POP2000\": 11119, \"WHITE\": 10698, \"BLACK\": 41, \"AMERI_ES\": 44, \"ASIAN\": 115, \"HAWN_PI\": 9, \"OTHER\": 41, \"MULT_RACE\": 171, \"HISPANIC\": 296, \"MALES\": 5610, \"FEMALES\": 5509, \"AGE_UNDER5\": 439, \"AGE_5_17\": 1719, \"AGE_18_21\": 362, \"AGE_22_29\": 862, \"AGE_30_39\": 1687, \"AGE_40_49\": 1942, \"AGE_50_64\": 2219, \"AGE_65_UP\": 1889, \"MED_AGE\": 42.400000, \"MED_AGE_M\": 41.500000, \"MED_AGE_F\": 43.200000, \"HOUSEHOLDS\": 4877, \"AVE_HH_SZ\": 2.260000, \"HSEHLD_1_M\": 667, \"HSEHLD_1_F\": 669, \"MARHH_CHD\": 882, \"MARHH_NO_C\": 1704, \"MHH_CHILD\": 77, \"FHH_CHILD\": 252, \"FAMILIES\": 3136, \"AVE_FAM_SZ\": 2.720000, \"HSE_UNITS\": 10599, \"VACANT\": 5722, \"OWNER_OCC\": 3671, \"RENTER_OCC\": 1206 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.475275997972034, 30.393406997689603 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Doral\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"17935\", \"CAPITAL\": \"N\", \"AREALAND\": 13.163000, \"AREAWATER\": 0.478000, \"POP_CL\": 6, \"POP2000\": 20438, \"WHITE\": 17173, \"BLACK\": 543, \"AMERI_ES\": 15, \"ASIAN\": 1039, \"HAWN_PI\": 3, \"OTHER\": 892, \"MULT_RACE\": 773, \"HISPANIC\": 13784, \"MALES\": 10104, \"FEMALES\": 10334, \"AGE_UNDER5\": 1924, \"AGE_5_17\": 3203, \"AGE_18_21\": 796, \"AGE_22_29\": 2870, \"AGE_30_39\": 5208, \"AGE_40_49\": 2837, \"AGE_50_64\": 2610, \"AGE_65_UP\": 990, \"MED_AGE\": 32.700000, \"MED_AGE_M\": 33.000000, \"MED_AGE_F\": 32.300000, \"HOUSEHOLDS\": 7692, \"AVE_HH_SZ\": 2.660000, \"HSEHLD_1_M\": 962, \"HSEHLD_1_F\": 744, \"MARHH_CHD\": 2369, \"MARHH_NO_C\": 2015, \"MHH_CHILD\": 150, \"FHH_CHILD\": 407, \"FAMILIES\": 5492, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 9186, \"VACANT\": 1494, \"OWNER_OCC\": 4385, \"RENTER_OCC\": 3307 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.353322547465609, 25.808144954861874 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Dunedin\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"18575\", \"CAPITAL\": \"N\", \"AREALAND\": 10.381000, \"AREAWATER\": 17.825000, \"POP_CL\": 6, \"POP2000\": 35691, \"WHITE\": 33864, \"BLACK\": 714, \"AMERI_ES\": 80, \"ASIAN\": 397, \"HAWN_PI\": 12, \"OTHER\": 227, \"MULT_RACE\": 397, \"HISPANIC\": 1192, \"MALES\": 16337, \"FEMALES\": 19354, \"AGE_UNDER5\": 1360, \"AGE_5_17\": 4213, \"AGE_18_21\": 1092, \"AGE_22_29\": 2564, \"AGE_30_39\": 4384, \"AGE_40_49\": 5069, \"AGE_50_64\": 6352, \"AGE_65_UP\": 10657, \"MED_AGE\": 48.200000, \"MED_AGE_M\": 45.100000, \"MED_AGE_F\": 51.100000, \"HOUSEHOLDS\": 17258, \"AVE_HH_SZ\": 2.010000, \"HSEHLD_1_M\": 2302, \"HSEHLD_1_F\": 4231, \"MARHH_CHD\": 2088, \"MARHH_NO_C\": 5481, \"MHH_CHILD\": 215, \"FHH_CHILD\": 835, \"FAMILIES\": 9546, \"AVE_FAM_SZ\": 2.630000, \"HSE_UNITS\": 19952, \"VACANT\": 2694, \"OWNER_OCC\": 12321, \"RENTER_OCC\": 4937 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.77534805182276, 28.025394976747389 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"East Lake\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"19206\", \"CAPITAL\": \"N\", \"AREALAND\": 29.782000, \"AREAWATER\": 1.983000, \"POP_CL\": 6, \"POP2000\": 29394, \"WHITE\": 27886, \"BLACK\": 327, \"AMERI_ES\": 42, \"ASIAN\": 679, \"HAWN_PI\": 2, \"OTHER\": 170, \"MULT_RACE\": 288, \"HISPANIC\": 1094, \"MALES\": 14296, \"FEMALES\": 15098, \"AGE_UNDER5\": 1529, \"AGE_5_17\": 5481, \"AGE_18_21\": 791, \"AGE_22_29\": 1464, \"AGE_30_39\": 3972, \"AGE_40_49\": 5189, \"AGE_50_64\": 5715, \"AGE_65_UP\": 5253, \"MED_AGE\": 42.600000, \"MED_AGE_M\": 42.300000, \"MED_AGE_F\": 43.000000, \"HOUSEHOLDS\": 11854, \"AVE_HH_SZ\": 2.480000, \"HSEHLD_1_M\": 931, \"HSEHLD_1_F\": 1538, \"MARHH_CHD\": 3195, \"MARHH_NO_C\": 4758, \"MHH_CHILD\": 136, \"FHH_CHILD\": 434, \"FAMILIES\": 8913, \"AVE_FAM_SZ\": 2.880000, \"HSE_UNITS\": 13339, \"VACANT\": 1485, \"OWNER_OCC\": 9972, \"RENTER_OCC\": 1882 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.697220058509174, 28.099956975733228 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Edgewater\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"19825\", \"CAPITAL\": \"N\", \"AREALAND\": 9.969000, \"AREAWATER\": 0.374000, \"POP_CL\": 6, \"POP2000\": 18668, \"WHITE\": 17987, \"BLACK\": 263, \"AMERI_ES\": 48, \"ASIAN\": 100, \"HAWN_PI\": 2, \"OTHER\": 56, \"MULT_RACE\": 212, \"HISPANIC\": 365, \"MALES\": 8956, \"FEMALES\": 9712, \"AGE_UNDER5\": 973, \"AGE_5_17\": 3272, \"AGE_18_21\": 690, \"AGE_22_29\": 1350, \"AGE_30_39\": 2400, \"AGE_40_49\": 2750, \"AGE_50_64\": 3232, \"AGE_65_UP\": 4001, \"MED_AGE\": 42.200000, \"MED_AGE_M\": 41.100000, \"MED_AGE_F\": 43.300000, \"HOUSEHOLDS\": 7579, \"AVE_HH_SZ\": 2.460000, \"HSEHLD_1_M\": 685, \"HSEHLD_1_F\": 1010, \"MARHH_CHD\": 1454, \"MARHH_NO_C\": 2839, \"MHH_CHILD\": 181, \"FHH_CHILD\": 496, \"FAMILIES\": 5463, \"AVE_FAM_SZ\": 2.850000, \"HSE_UNITS\": 8235, \"VACANT\": 656, \"OWNER_OCC\": 6317, \"RENTER_OCC\": 1262 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.904775467704837, 28.963863953442008 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Egypt Lake-Leto\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"20108\", \"CAPITAL\": \"N\", \"AREALAND\": 5.969000, \"AREAWATER\": 0.217000, \"POP_CL\": 6, \"POP2000\": 32782, \"WHITE\": 24946, \"BLACK\": 2618, \"AMERI_ES\": 122, \"ASIAN\": 1110, \"HAWN_PI\": 17, \"OTHER\": 2665, \"MULT_RACE\": 1304, \"HISPANIC\": 15015, \"MALES\": 15988, \"FEMALES\": 16794, \"AGE_UNDER5\": 2199, \"AGE_5_17\": 5367, \"AGE_18_21\": 1836, \"AGE_22_29\": 5247, \"AGE_30_39\": 5737, \"AGE_40_49\": 4412, \"AGE_50_64\": 4652, \"AGE_65_UP\": 3332, \"MED_AGE\": 32.900000, \"MED_AGE_M\": 31.900000, \"MED_AGE_F\": 33.900000, \"HOUSEHOLDS\": 13511, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 1980, \"HSEHLD_1_F\": 2130, \"MARHH_CHD\": 2322, \"MARHH_NO_C\": 3097, \"MHH_CHILD\": 337, \"FHH_CHILD\": 1235, \"FAMILIES\": 8103, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 14526, \"VACANT\": 1015, \"OWNER_OCC\": 6260, \"RENTER_OCC\": 7251 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.507311074038469, 28.015395973697093 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Elfers\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"20275\", \"CAPITAL\": \"N\", \"AREALAND\": 3.510000, \"AREAWATER\": 0.024000, \"POP_CL\": 6, \"POP2000\": 13161, \"WHITE\": 12528, \"BLACK\": 126, \"AMERI_ES\": 50, \"ASIAN\": 120, \"HAWN_PI\": 4, \"OTHER\": 122, \"MULT_RACE\": 211, \"HISPANIC\": 595, \"MALES\": 5956, \"FEMALES\": 7205, \"AGE_UNDER5\": 723, \"AGE_5_17\": 1922, \"AGE_18_21\": 396, \"AGE_22_29\": 1013, \"AGE_30_39\": 1693, \"AGE_40_49\": 1482, \"AGE_50_64\": 1887, \"AGE_65_UP\": 4045, \"MED_AGE\": 45.000000, \"MED_AGE_M\": 41.600000, \"MED_AGE_F\": 48.700000, \"HOUSEHOLDS\": 5701, \"AVE_HH_SZ\": 2.230000, \"HSEHLD_1_M\": 598, \"HSEHLD_1_F\": 1192, \"MARHH_CHD\": 871, \"MARHH_NO_C\": 1843, \"MHH_CHILD\": 120, \"FHH_CHILD\": 337, \"FAMILIES\": 3562, \"AVE_FAM_SZ\": 2.770000, \"HSE_UNITS\": 6482, \"VACANT\": 781, \"OWNER_OCC\": 4877, \"RENTER_OCC\": 824 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.722735057743265, 28.216071975808916 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Englewood\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"20825\", \"CAPITAL\": \"N\", \"AREALAND\": 9.830000, \"AREAWATER\": 3.001000, \"POP_CL\": 6, \"POP2000\": 16196, \"WHITE\": 15913, \"BLACK\": 30, \"AMERI_ES\": 40, \"ASIAN\": 59, \"HAWN_PI\": 2, \"OTHER\": 65, \"MULT_RACE\": 87, \"HISPANIC\": 241, \"MALES\": 7613, \"FEMALES\": 8583, \"AGE_UNDER5\": 366, \"AGE_5_17\": 1300, \"AGE_18_21\": 322, \"AGE_22_29\": 562, \"AGE_30_39\": 1117, \"AGE_40_49\": 1621, \"AGE_50_64\": 3398, \"AGE_65_UP\": 7510, \"MED_AGE\": 63.000000, \"MED_AGE_M\": 62.500000, \"MED_AGE_F\": 63.400000, \"HOUSEHOLDS\": 8291, \"AVE_HH_SZ\": 1.940000, \"HSEHLD_1_M\": 963, \"HSEHLD_1_F\": 1690, \"MARHH_CHD\": 576, \"MARHH_NO_C\": 4015, \"MHH_CHILD\": 95, \"FHH_CHILD\": 213, \"FAMILIES\": 5206, \"AVE_FAM_SZ\": 2.360000, \"HSE_UNITS\": 10495, \"VACANT\": 2204, \"OWNER_OCC\": 7077, \"RENTER_OCC\": 1214 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.352016076182309, 26.963037973792719 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ensley\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"20925\", \"CAPITAL\": \"N\", \"AREALAND\": 12.337000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 18752, \"WHITE\": 12546, \"BLACK\": 5333, \"AMERI_ES\": 172, \"ASIAN\": 216, \"HAWN_PI\": 9, \"OTHER\": 120, \"MULT_RACE\": 356, \"HISPANIC\": 390, \"MALES\": 8959, \"FEMALES\": 9793, \"AGE_UNDER5\": 1293, \"AGE_5_17\": 3433, \"AGE_18_21\": 1100, \"AGE_22_29\": 2086, \"AGE_30_39\": 2771, \"AGE_40_49\": 2747, \"AGE_50_64\": 3010, \"AGE_65_UP\": 2312, \"MED_AGE\": 35.600000, \"MED_AGE_M\": 34.000000, \"MED_AGE_F\": 37.100000, \"HOUSEHOLDS\": 7533, \"AVE_HH_SZ\": 2.480000, \"HSEHLD_1_M\": 841, \"HSEHLD_1_F\": 1144, \"MARHH_CHD\": 1377, \"MARHH_NO_C\": 2079, \"MHH_CHILD\": 179, \"FHH_CHILD\": 694, \"FAMILIES\": 5041, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 8153, \"VACANT\": 620, \"OWNER_OCC\": 5133, \"RENTER_OCC\": 2400 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.273491998850588, 30.523394998924971 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Eustis\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"21350\", \"CAPITAL\": \"N\", \"AREALAND\": 8.354000, \"AREAWATER\": 1.285000, \"POP_CL\": 6, \"POP2000\": 15106, \"WHITE\": 11616, \"BLACK\": 2867, \"AMERI_ES\": 52, \"ASIAN\": 95, \"HAWN_PI\": 14, \"OTHER\": 286, \"MULT_RACE\": 176, \"HISPANIC\": 962, \"MALES\": 6905, \"FEMALES\": 8201, \"AGE_UNDER5\": 933, \"AGE_5_17\": 2477, \"AGE_18_21\": 639, \"AGE_22_29\": 1346, \"AGE_30_39\": 1719, \"AGE_40_49\": 1789, \"AGE_50_64\": 2319, \"AGE_65_UP\": 3884, \"MED_AGE\": 42.300000, \"MED_AGE_M\": 39.600000, \"MED_AGE_F\": 44.600000, \"HOUSEHOLDS\": 6371, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 665, \"HSEHLD_1_F\": 1313, \"MARHH_CHD\": 993, \"MARHH_NO_C\": 2064, \"MHH_CHILD\": 122, \"FHH_CHILD\": 498, \"FAMILIES\": 4058, \"AVE_FAM_SZ\": 2.860000, \"HSE_UNITS\": 7322, \"VACANT\": 951, \"OWNER_OCC\": 4350, \"RENTER_OCC\": 2021 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.681943216224539, 28.850992961639584 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fairview Shores\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"21750\", \"CAPITAL\": \"N\", \"AREALAND\": 3.914000, \"AREAWATER\": 0.548000, \"POP_CL\": 6, \"POP2000\": 13898, \"WHITE\": 10853, \"BLACK\": 1846, \"AMERI_ES\": 50, \"ASIAN\": 378, \"HAWN_PI\": 15, \"OTHER\": 437, \"MULT_RACE\": 319, \"HISPANIC\": 1310, \"MALES\": 6848, \"FEMALES\": 7050, \"AGE_UNDER5\": 898, \"AGE_5_17\": 2309, \"AGE_18_21\": 585, \"AGE_22_29\": 1603, \"AGE_30_39\": 2462, \"AGE_40_49\": 2273, \"AGE_50_64\": 1824, \"AGE_65_UP\": 1944, \"MED_AGE\": 36.500000, \"MED_AGE_M\": 35.500000, \"MED_AGE_F\": 37.600000, \"HOUSEHOLDS\": 5879, \"AVE_HH_SZ\": 2.330000, \"HSEHLD_1_M\": 840, \"HSEHLD_1_F\": 1019, \"MARHH_CHD\": 892, \"MARHH_NO_C\": 1287, \"MHH_CHILD\": 142, \"FHH_CHILD\": 538, \"FAMILIES\": 3336, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 6326, \"VACANT\": 447, \"OWNER_OCC\": 3350, \"RENTER_OCC\": 2529 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.390785281066542, 28.5987269589303 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fernandina Beach\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"22175\", \"CAPITAL\": \"N\", \"AREALAND\": 10.716000, \"AREAWATER\": 0.003000, \"POP_CL\": 6, \"POP2000\": 10549, \"WHITE\": 8602, \"BLACK\": 1708, \"AMERI_ES\": 29, \"ASIAN\": 62, \"HAWN_PI\": 6, \"OTHER\": 54, \"MULT_RACE\": 88, \"HISPANIC\": 246, \"MALES\": 5032, \"FEMALES\": 5517, \"AGE_UNDER5\": 521, \"AGE_5_17\": 1612, \"AGE_18_21\": 413, \"AGE_22_29\": 854, \"AGE_30_39\": 1361, \"AGE_40_49\": 1697, \"AGE_50_64\": 2190, \"AGE_65_UP\": 1901, \"MED_AGE\": 43.000000, \"MED_AGE_M\": 41.200000, \"MED_AGE_F\": 44.700000, \"HOUSEHOLDS\": 4525, \"AVE_HH_SZ\": 2.280000, \"HSEHLD_1_M\": 492, \"HSEHLD_1_F\": 796, \"MARHH_CHD\": 737, \"MARHH_NO_C\": 1500, \"MHH_CHILD\": 63, \"FHH_CHILD\": 279, \"FAMILIES\": 2940, \"AVE_FAM_SZ\": 2.780000, \"HSE_UNITS\": 5588, \"VACANT\": 1063, \"OWNER_OCC\": 3118, \"RENTER_OCC\": 1407 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.45173134586129, 30.663432952980333 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ferry Pass\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"22275\", \"CAPITAL\": \"N\", \"AREALAND\": 14.083000, \"AREAWATER\": 0.018000, \"POP_CL\": 6, \"POP2000\": 27176, \"WHITE\": 22771, \"BLACK\": 2882, \"AMERI_ES\": 166, \"ASIAN\": 517, \"HAWN_PI\": 12, \"OTHER\": 212, \"MULT_RACE\": 616, \"HISPANIC\": 740, \"MALES\": 12622, \"FEMALES\": 14554, \"AGE_UNDER5\": 1489, \"AGE_5_17\": 3490, \"AGE_18_21\": 2116, \"AGE_22_29\": 3966, \"AGE_30_39\": 3705, \"AGE_40_49\": 3438, \"AGE_50_64\": 4194, \"AGE_65_UP\": 4778, \"MED_AGE\": 36.900000, \"MED_AGE_M\": 34.200000, \"MED_AGE_F\": 39.100000, \"HOUSEHOLDS\": 11569, \"AVE_HH_SZ\": 2.170000, \"HSEHLD_1_M\": 1505, \"HSEHLD_1_F\": 2280, \"MARHH_CHD\": 1780, \"MARHH_NO_C\": 3355, \"MHH_CHILD\": 157, \"FHH_CHILD\": 761, \"FAMILIES\": 6692, \"AVE_FAM_SZ\": 2.770000, \"HSE_UNITS\": 12700, \"VACANT\": 1131, \"OWNER_OCC\": 6466, \"RENTER_OCC\": 5103 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.201490998777231, 30.512394998842815 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Florida Ridge\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"23050\", \"CAPITAL\": \"N\", \"AREALAND\": 10.798000, \"AREAWATER\": 1.784000, \"POP_CL\": 6, \"POP2000\": 15217, \"WHITE\": 13017, \"BLACK\": 1689, \"AMERI_ES\": 29, \"ASIAN\": 103, \"HAWN_PI\": 2, \"OTHER\": 150, \"MULT_RACE\": 227, \"HISPANIC\": 620, \"MALES\": 7287, \"FEMALES\": 7930, \"AGE_UNDER5\": 834, \"AGE_5_17\": 2601, \"AGE_18_21\": 545, \"AGE_22_29\": 1136, \"AGE_30_39\": 2051, \"AGE_40_49\": 1937, \"AGE_50_64\": 2141, \"AGE_65_UP\": 3972, \"MED_AGE\": 42.200000, \"MED_AGE_M\": 40.600000, \"MED_AGE_F\": 43.500000, \"HOUSEHOLDS\": 6412, \"AVE_HH_SZ\": 2.370000, \"HSEHLD_1_M\": 605, \"HSEHLD_1_F\": 1025, \"MARHH_CHD\": 1154, \"MARHH_NO_C\": 2348, \"MHH_CHILD\": 140, \"FHH_CHILD\": 412, \"FAMILIES\": 4434, \"AVE_FAM_SZ\": 2.810000, \"HSE_UNITS\": 7330, \"VACANT\": 918, \"OWNER_OCC\": 5284, \"RENTER_OCC\": 1128 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.391685633337886, 27.574528954342313 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Forest City\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"23375\", \"CAPITAL\": \"N\", \"AREALAND\": 4.271000, \"AREAWATER\": 0.647000, \"POP_CL\": 6, \"POP2000\": 12612, \"WHITE\": 10761, \"BLACK\": 613, \"AMERI_ES\": 31, \"ASIAN\": 429, \"HAWN_PI\": 5, \"OTHER\": 459, \"MULT_RACE\": 314, \"HISPANIC\": 1964, \"MALES\": 6194, \"FEMALES\": 6418, \"AGE_UNDER5\": 797, \"AGE_5_17\": 2416, \"AGE_18_21\": 550, \"AGE_22_29\": 1231, \"AGE_30_39\": 2217, \"AGE_40_49\": 2131, \"AGE_50_64\": 1878, \"AGE_65_UP\": 1392, \"MED_AGE\": 36.000000, \"MED_AGE_M\": 35.000000, \"MED_AGE_F\": 36.900000, \"HOUSEHOLDS\": 4777, \"AVE_HH_SZ\": 2.620000, \"HSEHLD_1_M\": 543, \"HSEHLD_1_F\": 590, \"MARHH_CHD\": 1301, \"MARHH_NO_C\": 1382, \"MHH_CHILD\": 106, \"FHH_CHILD\": 283, \"FAMILIES\": 3364, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 4976, \"VACANT\": 199, \"OWNER_OCC\": 3283, \"RENTER_OCC\": 1494 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.442745269078557, 28.662657959337505 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fort Lauderdale\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"24000\", \"CAPITAL\": \"N\", \"AREALAND\": 31.729000, \"AREAWATER\": 4.287000, \"POP_CL\": 8, \"POP2000\": 152397, \"WHITE\": 97941, \"BLACK\": 44010, \"AMERI_ES\": 344, \"ASIAN\": 1565, \"HAWN_PI\": 74, \"OTHER\": 2684, \"MULT_RACE\": 5779, \"HISPANIC\": 14406, \"MALES\": 79826, \"FEMALES\": 72571, \"AGE_UNDER5\": 8068, \"AGE_5_17\": 21508, \"AGE_18_21\": 6537, \"AGE_22_29\": 15957, \"AGE_30_39\": 25861, \"AGE_40_49\": 25256, \"AGE_50_64\": 25904, \"AGE_65_UP\": 23306, \"MED_AGE\": 39.300000, \"MED_AGE_M\": 38.800000, \"MED_AGE_F\": 40.000000, \"HOUSEHOLDS\": 68468, \"AVE_HH_SZ\": 2.140000, \"HSEHLD_1_M\": 14747, \"HSEHLD_1_F\": 12853, \"MARHH_CHD\": 7586, \"MARHH_NO_C\": 14451, \"MHH_CHILD\": 1387, \"FHH_CHILD\": 4448, \"FAMILIES\": 32996, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 80862, \"VACANT\": 12394, \"OWNER_OCC\": 37958, \"RENTER_OCC\": 30510 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.141810680236148, 26.135762954640413 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fort Myers\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"24125\", \"CAPITAL\": \"N\", \"AREALAND\": 31.828000, \"AREAWATER\": 8.591000, \"POP_CL\": 6, \"POP2000\": 48208, \"WHITE\": 27166, \"BLACK\": 16095, \"AMERI_ES\": 181, \"ASIAN\": 471, \"HAWN_PI\": 49, \"OTHER\": 2745, \"MULT_RACE\": 1501, \"HISPANIC\": 6984, \"MALES\": 23806, \"FEMALES\": 24402, \"AGE_UNDER5\": 3895, \"AGE_5_17\": 8781, \"AGE_18_21\": 3034, \"AGE_22_29\": 6568, \"AGE_30_39\": 7171, \"AGE_40_49\": 6172, \"AGE_50_64\": 5684, \"AGE_65_UP\": 6903, \"MED_AGE\": 32.400000, \"MED_AGE_M\": 31.000000, \"MED_AGE_F\": 34.200000, \"HOUSEHOLDS\": 19107, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 2920, \"HSEHLD_1_F\": 3539, \"MARHH_CHD\": 2555, \"MARHH_NO_C\": 3616, \"MHH_CHILD\": 536, \"FHH_CHILD\": 2424, \"FAMILIES\": 10735, \"AVE_FAM_SZ\": 3.100000, \"HSE_UNITS\": 21836, \"VACANT\": 2729, \"OWNER_OCC\": 7593, \"RENTER_OCC\": 11514 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.857096132433625, 26.631749968508778 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fort Pierce\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"24300\", \"CAPITAL\": \"N\", \"AREALAND\": 14.742000, \"AREAWATER\": 6.021000, \"POP_CL\": 6, \"POP2000\": 37516, \"WHITE\": 18585, \"BLACK\": 15326, \"AMERI_ES\": 122, \"ASIAN\": 298, \"HAWN_PI\": 30, \"OTHER\": 2011, \"MULT_RACE\": 1144, \"HISPANIC\": 5629, \"MALES\": 18508, \"FEMALES\": 19008, \"AGE_UNDER5\": 2844, \"AGE_5_17\": 7359, \"AGE_18_21\": 2218, \"AGE_22_29\": 3819, \"AGE_30_39\": 4795, \"AGE_40_49\": 4853, \"AGE_50_64\": 5067, \"AGE_65_UP\": 6561, \"MED_AGE\": 35.400000, \"MED_AGE_M\": 33.900000, \"MED_AGE_F\": 36.900000, \"HOUSEHOLDS\": 14407, \"AVE_HH_SZ\": 2.560000, \"HSEHLD_1_M\": 1942, \"HSEHLD_1_F\": 2535, \"MARHH_CHD\": 1921, \"MARHH_NO_C\": 3274, \"MHH_CHILD\": 384, \"FHH_CHILD\": 1748, \"FAMILIES\": 8821, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 17170, \"VACANT\": 2763, \"OWNER_OCC\": 7671, \"RENTER_OCC\": 6736 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.335471655729251, 27.438816954467605 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fort Walton Beach\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"24475\", \"CAPITAL\": \"N\", \"AREALAND\": 7.444000, \"AREAWATER\": 0.761000, \"POP_CL\": 6, \"POP2000\": 19973, \"WHITE\": 15746, \"BLACK\": 2664, \"AMERI_ES\": 90, \"ASIAN\": 543, \"HAWN_PI\": 16, \"OTHER\": 243, \"MULT_RACE\": 671, \"HISPANIC\": 807, \"MALES\": 9795, \"FEMALES\": 10178, \"AGE_UNDER5\": 1099, \"AGE_5_17\": 3377, \"AGE_18_21\": 985, \"AGE_22_29\": 2108, \"AGE_30_39\": 2862, \"AGE_40_49\": 3002, \"AGE_50_64\": 3276, \"AGE_65_UP\": 3264, \"MED_AGE\": 38.700000, \"MED_AGE_M\": 37.500000, \"MED_AGE_F\": 40.000000, \"HOUSEHOLDS\": 8460, \"AVE_HH_SZ\": 2.330000, \"HSEHLD_1_M\": 1093, \"HSEHLD_1_F\": 1317, \"MARHH_CHD\": 1377, \"MARHH_NO_C\": 2623, \"MHH_CHILD\": 183, \"FHH_CHILD\": 638, \"FAMILIES\": 5419, \"AVE_FAM_SZ\": 2.850000, \"HSE_UNITS\": 9007, \"VACANT\": 547, \"OWNER_OCC\": 5419, \"RENTER_OCC\": 3041 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.616726998128797, 30.420198997966235 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fountainbleau\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"24562\", \"CAPITAL\": \"N\", \"AREALAND\": 4.403000, \"AREAWATER\": 0.114000, \"POP_CL\": 7, \"POP2000\": 59549, \"WHITE\": 50732, \"BLACK\": 1214, \"AMERI_ES\": 114, \"ASIAN\": 1057, \"HAWN_PI\": 17, \"OTHER\": 4044, \"MULT_RACE\": 2371, \"HISPANIC\": 51948, \"MALES\": 27689, \"FEMALES\": 31860, \"AGE_UNDER5\": 3708, \"AGE_5_17\": 9825, \"AGE_18_21\": 3143, \"AGE_22_29\": 8006, \"AGE_30_39\": 10543, \"AGE_40_49\": 8205, \"AGE_50_64\": 8735, \"AGE_65_UP\": 7384, \"MED_AGE\": 34.900000, \"MED_AGE_M\": 32.900000, \"MED_AGE_F\": 36.800000, \"HOUSEHOLDS\": 20918, \"AVE_HH_SZ\": 2.850000, \"HSEHLD_1_M\": 1536, \"HSEHLD_1_F\": 2316, \"MARHH_CHD\": 4945, \"MARHH_NO_C\": 5422, \"MHH_CHILD\": 480, \"FHH_CHILD\": 1866, \"FAMILIES\": 15607, \"AVE_FAM_SZ\": 3.220000, \"HSE_UNITS\": 21881, \"VACANT\": 963, \"OWNER_OCC\": 10755, \"RENTER_OCC\": 10163 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.345917549133134, 25.770143954814419 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fruit Cove\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"24925\", \"CAPITAL\": \"N\", \"AREALAND\": 17.860000, \"AREAWATER\": 0.005000, \"POP_CL\": 6, \"POP2000\": 16077, \"WHITE\": 15235, \"BLACK\": 331, \"AMERI_ES\": 29, \"ASIAN\": 259, \"HAWN_PI\": 22, \"OTHER\": 71, \"MULT_RACE\": 130, \"HISPANIC\": 382, \"MALES\": 8055, \"FEMALES\": 8022, \"AGE_UNDER5\": 1183, \"AGE_5_17\": 4012, \"AGE_18_21\": 493, \"AGE_22_29\": 705, \"AGE_30_39\": 2841, \"AGE_40_49\": 3267, \"AGE_50_64\": 2342, \"AGE_65_UP\": 1234, \"MED_AGE\": 36.800000, \"MED_AGE_M\": 36.200000, \"MED_AGE_F\": 37.300000, \"HOUSEHOLDS\": 5294, \"AVE_HH_SZ\": 3.020000, \"HSEHLD_1_M\": 233, \"HSEHLD_1_F\": 344, \"MARHH_CHD\": 2419, \"MARHH_NO_C\": 1783, \"MHH_CHILD\": 62, \"FHH_CHILD\": 196, \"FAMILIES\": 4601, \"AVE_FAM_SZ\": 3.260000, \"HSE_UNITS\": 5549, \"VACANT\": 255, \"OWNER_OCC\": 4903, \"RENTER_OCC\": 391 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.618318273147352, 30.10115295707465 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fruitville\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"25000\", \"CAPITAL\": \"N\", \"AREALAND\": 7.039000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12741, \"WHITE\": 12185, \"BLACK\": 167, \"AMERI_ES\": 22, \"ASIAN\": 150, \"HAWN_PI\": 1, \"OTHER\": 109, \"MULT_RACE\": 107, \"HISPANIC\": 519, \"MALES\": 6200, \"FEMALES\": 6541, \"AGE_UNDER5\": 767, \"AGE_5_17\": 2168, \"AGE_18_21\": 497, \"AGE_22_29\": 1214, \"AGE_30_39\": 2014, \"AGE_40_49\": 2289, \"AGE_50_64\": 1954, \"AGE_65_UP\": 1838, \"MED_AGE\": 38.800000, \"MED_AGE_M\": 37.700000, \"MED_AGE_F\": 39.800000, \"HOUSEHOLDS\": 5176, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 579, \"HSEHLD_1_F\": 751, \"MARHH_CHD\": 1238, \"MARHH_NO_C\": 1631, \"MHH_CHILD\": 101, \"FHH_CHILD\": 265, \"FAMILIES\": 3481, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 5476, \"VACANT\": 300, \"OWNER_OCC\": 3825, \"RENTER_OCC\": 1351 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.461553070063303, 27.330572974424509 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Gainesville\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"25175\", \"CAPITAL\": \"N\", \"AREALAND\": 48.182000, \"AREAWATER\": 0.921000, \"POP_CL\": 7, \"POP2000\": 95447, \"WHITE\": 65243, \"BLACK\": 22181, \"AMERI_ES\": 235, \"ASIAN\": 4282, \"HAWN_PI\": 30, \"OTHER\": 1392, \"MULT_RACE\": 2084, \"HISPANIC\": 6112, \"MALES\": 46666, \"FEMALES\": 48781, \"AGE_UNDER5\": 4357, \"AGE_5_17\": 12593, \"AGE_18_21\": 19106, \"AGE_22_29\": 17267, \"AGE_30_39\": 11575, \"AGE_40_49\": 10852, \"AGE_50_64\": 10362, \"AGE_65_UP\": 9335, \"MED_AGE\": 26.400000, \"MED_AGE_M\": 25.900000, \"MED_AGE_F\": 27.200000, \"HOUSEHOLDS\": 37279, \"AVE_HH_SZ\": 2.250000, \"HSEHLD_1_M\": 5469, \"HSEHLD_1_F\": 6688, \"MARHH_CHD\": 4823, \"MARHH_NO_C\": 7275, \"MHH_CHILD\": 489, \"FHH_CHILD\": 3003, \"FAMILIES\": 18343, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 40105, \"VACANT\": 2826, \"OWNER_OCC\": 17791, \"RENTER_OCC\": 19488 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.336097119541151, 29.66524496786154 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Gladeview\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"25987\", \"CAPITAL\": \"N\", \"AREALAND\": 2.541000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14468, \"WHITE\": 2545, \"BLACK\": 11138, \"AMERI_ES\": 31, \"ASIAN\": 24, \"HAWN_PI\": 4, \"OTHER\": 359, \"MULT_RACE\": 367, \"HISPANIC\": 3084, \"MALES\": 6693, \"FEMALES\": 7775, \"AGE_UNDER5\": 1243, \"AGE_5_17\": 4249, \"AGE_18_21\": 982, \"AGE_22_29\": 1373, \"AGE_30_39\": 1864, \"AGE_40_49\": 1733, \"AGE_50_64\": 1611, \"AGE_65_UP\": 1413, \"MED_AGE\": 26.500000, \"MED_AGE_M\": 22.900000, \"MED_AGE_F\": 29.100000, \"HOUSEHOLDS\": 4359, \"AVE_HH_SZ\": 3.300000, \"HSEHLD_1_M\": 427, \"HSEHLD_1_F\": 496, \"MARHH_CHD\": 535, \"MARHH_NO_C\": 567, \"MHH_CHILD\": 133, \"FHH_CHILD\": 1055, \"FAMILIES\": 3198, \"AVE_FAM_SZ\": 3.880000, \"HSE_UNITS\": 5107, \"VACANT\": 748, \"OWNER_OCC\": 1849, \"RENTER_OCC\": 2510 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.235645609464882, 25.839873954503677 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Glenvar Heights\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"26100\", \"CAPITAL\": \"N\", \"AREALAND\": 4.210000, \"AREAWATER\": 0.175000, \"POP_CL\": 6, \"POP2000\": 16243, \"WHITE\": 14246, \"BLACK\": 488, \"AMERI_ES\": 31, \"ASIAN\": 472, \"HAWN_PI\": 9, \"OTHER\": 555, \"MULT_RACE\": 442, \"HISPANIC\": 9008, \"MALES\": 7583, \"FEMALES\": 8660, \"AGE_UNDER5\": 839, \"AGE_5_17\": 2125, \"AGE_18_21\": 924, \"AGE_22_29\": 2318, \"AGE_30_39\": 2789, \"AGE_40_49\": 2414, \"AGE_50_64\": 2605, \"AGE_65_UP\": 2229, \"MED_AGE\": 36.800000, \"MED_AGE_M\": 35.100000, \"MED_AGE_F\": 38.500000, \"HOUSEHOLDS\": 7243, \"AVE_HH_SZ\": 2.240000, \"HSEHLD_1_M\": 1088, \"HSEHLD_1_F\": 1443, \"MARHH_CHD\": 1194, \"MARHH_NO_C\": 1627, \"MHH_CHILD\": 85, \"FHH_CHILD\": 397, \"FAMILIES\": 3945, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 7591, \"VACANT\": 348, \"OWNER_OCC\": 3793, \"RENTER_OCC\": 3450 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.313477562002873, 25.708578954652307 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Golden Gate\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"26300\", \"CAPITAL\": \"N\", \"AREALAND\": 4.036000, \"AREAWATER\": 0.038000, \"POP_CL\": 6, \"POP2000\": 20951, \"WHITE\": 16132, \"BLACK\": 2126, \"AMERI_ES\": 80, \"ASIAN\": 149, \"HAWN_PI\": 25, \"OTHER\": 1537, \"MULT_RACE\": 902, \"HISPANIC\": 7781, \"MALES\": 11055, \"FEMALES\": 9896, \"AGE_UNDER5\": 1815, \"AGE_5_17\": 4483, \"AGE_18_21\": 1365, \"AGE_22_29\": 2998, \"AGE_30_39\": 3928, \"AGE_40_49\": 2940, \"AGE_50_64\": 2126, \"AGE_65_UP\": 1296, \"MED_AGE\": 29.600000, \"MED_AGE_M\": 29.000000, \"MED_AGE_F\": 30.200000, \"HOUSEHOLDS\": 6518, \"AVE_HH_SZ\": 3.210000, \"HSEHLD_1_M\": 508, \"HSEHLD_1_F\": 446, \"MARHH_CHD\": 2027, \"MARHH_NO_C\": 1530, \"MHH_CHILD\": 285, \"FHH_CHILD\": 594, \"FAMILIES\": 5012, \"AVE_FAM_SZ\": 3.440000, \"HSE_UNITS\": 7010, \"VACANT\": 492, \"OWNER_OCC\": 3744, \"RENTER_OCC\": 2774 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.703623149012472, 26.18528996737081 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Golden Glades\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"26375\", \"CAPITAL\": \"N\", \"AREALAND\": 4.917000, \"AREAWATER\": 0.065000, \"POP_CL\": 6, \"POP2000\": 32623, \"WHITE\": 7628, \"BLACK\": 21299, \"AMERI_ES\": 92, \"ASIAN\": 592, \"HAWN_PI\": 24, \"OTHER\": 953, \"MULT_RACE\": 2035, \"HISPANIC\": 5753, \"MALES\": 15377, \"FEMALES\": 17246, \"AGE_UNDER5\": 2591, \"AGE_5_17\": 7568, \"AGE_18_21\": 1994, \"AGE_22_29\": 3625, \"AGE_30_39\": 4848, \"AGE_40_49\": 4872, \"AGE_50_64\": 3824, \"AGE_65_UP\": 3301, \"MED_AGE\": 31.100000, \"MED_AGE_M\": 29.900000, \"MED_AGE_F\": 32.300000, \"HOUSEHOLDS\": 9826, \"AVE_HH_SZ\": 3.230000, \"HSEHLD_1_M\": 956, \"HSEHLD_1_F\": 1072, \"MARHH_CHD\": 2442, \"MARHH_NO_C\": 1667, \"MHH_CHILD\": 383, \"FHH_CHILD\": 1547, \"FAMILIES\": 7278, \"AVE_FAM_SZ\": 3.720000, \"HSE_UNITS\": 10540, \"VACANT\": 714, \"OWNER_OCC\": 5419, \"RENTER_OCC\": 4407 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.197688634409872, 25.91277095449146 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Goldenrod\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"26475\", \"CAPITAL\": \"N\", \"AREALAND\": 2.593000, \"AREAWATER\": 0.131000, \"POP_CL\": 6, \"POP2000\": 12871, \"WHITE\": 10609, \"BLACK\": 712, \"AMERI_ES\": 60, \"ASIAN\": 368, \"HAWN_PI\": 12, \"OTHER\": 692, \"MULT_RACE\": 418, \"HISPANIC\": 2295, \"MALES\": 6534, \"FEMALES\": 6337, \"AGE_UNDER5\": 665, \"AGE_5_17\": 2091, \"AGE_18_21\": 952, \"AGE_22_29\": 2212, \"AGE_30_39\": 2059, \"AGE_40_49\": 1862, \"AGE_50_64\": 1712, \"AGE_65_UP\": 1318, \"MED_AGE\": 32.400000, \"MED_AGE_M\": 31.000000, \"MED_AGE_F\": 34.300000, \"HOUSEHOLDS\": 5398, \"AVE_HH_SZ\": 2.370000, \"HSEHLD_1_M\": 794, \"HSEHLD_1_F\": 743, \"MARHH_CHD\": 966, \"MARHH_NO_C\": 1332, \"MHH_CHILD\": 108, \"FHH_CHILD\": 340, \"FAMILIES\": 3151, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 5575, \"VACANT\": 177, \"OWNER_OCC\": 2648, \"RENTER_OCC\": 2750 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.294060309765882, 28.612826957857909 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Gonzalez\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"26700\", \"CAPITAL\": \"N\", \"AREALAND\": 15.287000, \"AREAWATER\": 0.054000, \"POP_CL\": 6, \"POP2000\": 11365, \"WHITE\": 10004, \"BLACK\": 869, \"AMERI_ES\": 91, \"ASIAN\": 169, \"HAWN_PI\": 2, \"OTHER\": 47, \"MULT_RACE\": 183, \"HISPANIC\": 190, \"MALES\": 5570, \"FEMALES\": 5795, \"AGE_UNDER5\": 763, \"AGE_5_17\": 2477, \"AGE_18_21\": 509, \"AGE_22_29\": 870, \"AGE_30_39\": 1762, \"AGE_40_49\": 1989, \"AGE_50_64\": 1988, \"AGE_65_UP\": 1007, \"MED_AGE\": 36.800000, \"MED_AGE_M\": 36.400000, \"MED_AGE_F\": 37.100000, \"HOUSEHOLDS\": 4086, \"AVE_HH_SZ\": 2.780000, \"HSEHLD_1_M\": 279, \"HSEHLD_1_F\": 342, \"MARHH_CHD\": 1325, \"MARHH_NO_C\": 1464, \"MHH_CHILD\": 59, \"FHH_CHILD\": 251, \"FAMILIES\": 3311, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 4260, \"VACANT\": 174, \"OWNER_OCC\": 3515, \"RENTER_OCC\": 571 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.290030998871231, 30.574385998937856 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Greater Carrollwood\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"27313\", \"CAPITAL\": \"N\", \"AREALAND\": 9.569000, \"AREAWATER\": 0.715000, \"POP_CL\": 6, \"POP2000\": 33519, \"WHITE\": 28320, \"BLACK\": 1960, \"AMERI_ES\": 82, \"ASIAN\": 1161, \"HAWN_PI\": 17, \"OTHER\": 1125, \"MULT_RACE\": 854, \"HISPANIC\": 6131, \"MALES\": 15991, \"FEMALES\": 17528, \"AGE_UNDER5\": 2075, \"AGE_5_17\": 5915, \"AGE_18_21\": 1290, \"AGE_22_29\": 3614, \"AGE_30_39\": 5607, \"AGE_40_49\": 5609, \"AGE_50_64\": 5810, \"AGE_65_UP\": 3599, \"MED_AGE\": 37.000000, \"MED_AGE_M\": 35.600000, \"MED_AGE_F\": 38.300000, \"HOUSEHOLDS\": 13897, \"AVE_HH_SZ\": 2.410000, \"HSEHLD_1_M\": 1402, \"HSEHLD_1_F\": 2322, \"MARHH_CHD\": 3209, \"MARHH_NO_C\": 4016, \"MHH_CHILD\": 233, \"FHH_CHILD\": 903, \"FAMILIES\": 9152, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 14483, \"VACANT\": 586, \"OWNER_OCC\": 9819, \"RENTER_OCC\": 4078 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.515413073807721, 28.058165973709507 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Greater Northdale\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"27317\", \"CAPITAL\": \"N\", \"AREALAND\": 7.897000, \"AREAWATER\": 0.554000, \"POP_CL\": 6, \"POP2000\": 20461, \"WHITE\": 17533, \"BLACK\": 1149, \"AMERI_ES\": 46, \"ASIAN\": 750, \"HAWN_PI\": 18, \"OTHER\": 485, \"MULT_RACE\": 480, \"HISPANIC\": 3074, \"MALES\": 9807, \"FEMALES\": 10654, \"AGE_UNDER5\": 1245, \"AGE_5_17\": 4164, \"AGE_18_21\": 978, \"AGE_22_29\": 2022, \"AGE_30_39\": 3458, \"AGE_40_49\": 3664, \"AGE_50_64\": 3314, \"AGE_65_UP\": 1616, \"MED_AGE\": 35.800000, \"MED_AGE_M\": 34.600000, \"MED_AGE_F\": 36.900000, \"HOUSEHOLDS\": 7597, \"AVE_HH_SZ\": 2.670000, \"HSEHLD_1_M\": 596, \"HSEHLD_1_F\": 943, \"MARHH_CHD\": 2242, \"MARHH_NO_C\": 2186, \"MHH_CHILD\": 136, \"FHH_CHILD\": 539, \"FAMILIES\": 5546, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 7849, \"VACANT\": 252, \"OWNER_OCC\": 5574, \"RENTER_OCC\": 2023 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.525370073385318, 28.099430973746358 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Greater Sun Center\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"27319\", \"CAPITAL\": \"N\", \"AREALAND\": 12.525000, \"AREAWATER\": 0.284000, \"POP_CL\": 6, \"POP2000\": 16321, \"WHITE\": 16152, \"BLACK\": 22, \"AMERI_ES\": 13, \"ASIAN\": 65, \"HAWN_PI\": 11, \"OTHER\": 23, \"MULT_RACE\": 35, \"HISPANIC\": 195, \"MALES\": 6960, \"FEMALES\": 9361, \"AGE_UNDER5\": 18, \"AGE_5_17\": 48, \"AGE_18_21\": 18, \"AGE_22_29\": 50, \"AGE_30_39\": 92, \"AGE_40_49\": 204, \"AGE_50_64\": 2337, \"AGE_65_UP\": 13554, \"MED_AGE\": 75.000000, \"MED_AGE_M\": 75.300000, \"MED_AGE_F\": 74.700000, \"HOUSEHOLDS\": 9149, \"AVE_HH_SZ\": 1.650000, \"HSEHLD_1_M\": 830, \"HSEHLD_1_F\": 2659, \"MARHH_CHD\": 25, \"MARHH_NO_C\": 5196, \"MHH_CHILD\": 3, \"FHH_CHILD\": 2, \"FAMILIES\": 5438, \"AVE_FAM_SZ\": 2.050000, \"HSE_UNITS\": 10500, \"VACANT\": 1351, \"OWNER_OCC\": 8220, \"RENTER_OCC\": 929 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.359659084919713, 27.713352972537677 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Greenacres\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"27322\", \"CAPITAL\": \"N\", \"AREALAND\": 4.659000, \"AREAWATER\": 0.011000, \"POP_CL\": 6, \"POP2000\": 27569, \"WHITE\": 22939, \"BLACK\": 1790, \"AMERI_ES\": 96, \"ASIAN\": 505, \"HAWN_PI\": 11, \"OTHER\": 1546, \"MULT_RACE\": 682, \"HISPANIC\": 5858, \"MALES\": 12896, \"FEMALES\": 14673, \"AGE_UNDER5\": 1675, \"AGE_5_17\": 4093, \"AGE_18_21\": 1116, \"AGE_22_29\": 2987, \"AGE_30_39\": 4053, \"AGE_40_49\": 3336, \"AGE_50_64\": 3800, \"AGE_65_UP\": 6509, \"MED_AGE\": 39.600000, \"MED_AGE_M\": 37.500000, \"MED_AGE_F\": 41.800000, \"HOUSEHOLDS\": 12059, \"AVE_HH_SZ\": 2.290000, \"HSEHLD_1_M\": 1219, \"HSEHLD_1_F\": 2361, \"MARHH_CHD\": 1731, \"MARHH_NO_C\": 3804, \"MHH_CHILD\": 269, \"FHH_CHILD\": 954, \"FAMILIES\": 7588, \"AVE_FAM_SZ\": 2.800000, \"HSE_UNITS\": 14153, \"VACANT\": 2094, \"OWNER_OCC\": 8547, \"RENTER_OCC\": 3512 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.135389717615965, 26.628044954932182 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Gulf Gate Estates\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"28050\", \"CAPITAL\": \"N\", \"AREALAND\": 2.811000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11647, \"WHITE\": 11235, \"BLACK\": 91, \"AMERI_ES\": 24, \"ASIAN\": 94, \"HAWN_PI\": 3, \"OTHER\": 90, \"MULT_RACE\": 110, \"HISPANIC\": 373, \"MALES\": 5217, \"FEMALES\": 6430, \"AGE_UNDER5\": 369, \"AGE_5_17\": 1181, \"AGE_18_21\": 360, \"AGE_22_29\": 879, \"AGE_30_39\": 1366, \"AGE_40_49\": 1565, \"AGE_50_64\": 1951, \"AGE_65_UP\": 3976, \"MED_AGE\": 50.700000, \"MED_AGE_M\": 46.300000, \"MED_AGE_F\": 54.800000, \"HOUSEHOLDS\": 5987, \"AVE_HH_SZ\": 1.890000, \"HSEHLD_1_M\": 802, \"HSEHLD_1_F\": 1704, \"MARHH_CHD\": 564, \"MARHH_NO_C\": 1705, \"MHH_CHILD\": 70, \"FHH_CHILD\": 271, \"FAMILIES\": 2982, \"AVE_FAM_SZ\": 2.540000, \"HSE_UNITS\": 6720, \"VACANT\": 733, \"OWNER_OCC\": 3894, \"RENTER_OCC\": 2093 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.506668065239751, 27.259425975062101 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Gulfport\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"28175\", \"CAPITAL\": \"N\", \"AREALAND\": 2.833000, \"AREAWATER\": 1.009000, \"POP_CL\": 6, \"POP2000\": 12527, \"WHITE\": 11199, \"BLACK\": 884, \"AMERI_ES\": 52, \"ASIAN\": 67, \"HAWN_PI\": 8, \"OTHER\": 98, \"MULT_RACE\": 219, \"HISPANIC\": 435, \"MALES\": 5889, \"FEMALES\": 6638, \"AGE_UNDER5\": 490, \"AGE_5_17\": 1489, \"AGE_18_21\": 358, \"AGE_22_29\": 921, \"AGE_30_39\": 1537, \"AGE_40_49\": 1967, \"AGE_50_64\": 2258, \"AGE_65_UP\": 3507, \"MED_AGE\": 47.300000, \"MED_AGE_M\": 45.400000, \"MED_AGE_F\": 49.600000, \"HOUSEHOLDS\": 6246, \"AVE_HH_SZ\": 1.980000, \"HSEHLD_1_M\": 991, \"HSEHLD_1_F\": 1504, \"MARHH_CHD\": 583, \"MARHH_NO_C\": 1745, \"MHH_CHILD\": 92, \"FHH_CHILD\": 361, \"FAMILIES\": 3157, \"AVE_FAM_SZ\": 2.630000, \"HSE_UNITS\": 7306, \"VACANT\": 1060, \"OWNER_OCC\": 4455, \"RENTER_OCC\": 1791 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.708618054022295, 27.750604976486905 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Haines City\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"28400\", \"CAPITAL\": \"N\", \"AREALAND\": 8.292000, \"AREAWATER\": 0.646000, \"POP_CL\": 6, \"POP2000\": 13174, \"WHITE\": 7229, \"BLACK\": 4197, \"AMERI_ES\": 69, \"ASIAN\": 51, \"HAWN_PI\": 5, \"OTHER\": 1373, \"MULT_RACE\": 250, \"HISPANIC\": 3074, \"MALES\": 6461, \"FEMALES\": 6713, \"AGE_UNDER5\": 970, \"AGE_5_17\": 2607, \"AGE_18_21\": 846, \"AGE_22_29\": 1311, \"AGE_30_39\": 1649, \"AGE_40_49\": 1494, \"AGE_50_64\": 1843, \"AGE_65_UP\": 2454, \"MED_AGE\": 35.400000, \"MED_AGE_M\": 33.300000, \"MED_AGE_F\": 37.600000, \"HOUSEHOLDS\": 4749, \"AVE_HH_SZ\": 2.730000, \"HSEHLD_1_M\": 414, \"HSEHLD_1_F\": 689, \"MARHH_CHD\": 874, \"MARHH_NO_C\": 1468, \"MHH_CHILD\": 108, \"FHH_CHILD\": 475, \"FAMILIES\": 3410, \"AVE_FAM_SZ\": 3.180000, \"HSE_UNITS\": 6283, \"VACANT\": 1534, \"OWNER_OCC\": 3071, \"RENTER_OCC\": 1678 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.628650206876188, 28.111750962861606 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hallandale\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"28450\", \"CAPITAL\": \"N\", \"AREALAND\": 4.210000, \"AREAWATER\": 0.345000, \"POP_CL\": 6, \"POP2000\": 34282, \"WHITE\": 26484, \"BLACK\": 5493, \"AMERI_ES\": 78, \"ASIAN\": 344, \"HAWN_PI\": 14, \"OTHER\": 958, \"MULT_RACE\": 911, \"HISPANIC\": 6447, \"MALES\": 15808, \"FEMALES\": 18474, \"AGE_UNDER5\": 1371, \"AGE_5_17\": 3163, \"AGE_18_21\": 967, \"AGE_22_29\": 2624, \"AGE_30_39\": 4068, \"AGE_40_49\": 3876, \"AGE_50_64\": 5951, \"AGE_65_UP\": 12262, \"MED_AGE\": 52.700000, \"MED_AGE_M\": 49.100000, \"MED_AGE_F\": 55.900000, \"HOUSEHOLDS\": 18051, \"AVE_HH_SZ\": 1.880000, \"HSEHLD_1_M\": 3074, \"HSEHLD_1_F\": 5084, \"MARHH_CHD\": 1240, \"MARHH_NO_C\": 5230, \"MHH_CHILD\": 230, \"FHH_CHILD\": 792, \"FAMILIES\": 8706, \"AVE_FAM_SZ\": 2.600000, \"HSE_UNITS\": 25022, \"VACANT\": 6971, \"OWNER_OCC\": 12015, \"RENTER_OCC\": 6036 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.146024668244721, 25.986718954514515 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hamptons at Boca Raton\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"28592\", \"CAPITAL\": \"N\", \"AREALAND\": 2.486000, \"AREAWATER\": 0.182000, \"POP_CL\": 6, \"POP2000\": 11306, \"WHITE\": 10718, \"BLACK\": 188, \"AMERI_ES\": 5, \"ASIAN\": 166, \"HAWN_PI\": 1, \"OTHER\": 105, \"MULT_RACE\": 123, \"HISPANIC\": 522, \"MALES\": 4680, \"FEMALES\": 6626, \"AGE_UNDER5\": 288, \"AGE_5_17\": 914, \"AGE_18_21\": 190, \"AGE_22_29\": 339, \"AGE_30_39\": 761, \"AGE_40_49\": 902, \"AGE_50_64\": 1138, \"AGE_65_UP\": 6774, \"MED_AGE\": 72.900000, \"MED_AGE_M\": 69.500000, \"MED_AGE_F\": 74.300000, \"HOUSEHOLDS\": 6336, \"AVE_HH_SZ\": 1.780000, \"HSEHLD_1_M\": 642, \"HSEHLD_1_F\": 2420, \"MARHH_CHD\": 520, \"MARHH_NO_C\": 2178, \"MHH_CHILD\": 27, \"FHH_CHILD\": 81, \"FAMILIES\": 3047, \"AVE_FAM_SZ\": 2.520000, \"HSE_UNITS\": 7729, \"VACANT\": 1393, \"OWNER_OCC\": 5533, \"RENTER_OCC\": 803 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.184400671600059, 26.385703954775625 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hialeah\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"30000\", \"CAPITAL\": \"N\", \"AREALAND\": 19.241000, \"AREAWATER\": 0.501000, \"POP_CL\": 8, \"POP2000\": 226419, \"WHITE\": 199276, \"BLACK\": 5453, \"AMERI_ES\": 304, \"ASIAN\": 906, \"HAWN_PI\": 53, \"OTHER\": 12380, \"MULT_RACE\": 8047, \"HISPANIC\": 204543, \"MALES\": 108893, \"FEMALES\": 117526, \"AGE_UNDER5\": 13118, \"AGE_5_17\": 38899, \"AGE_18_21\": 10297, \"AGE_22_29\": 23861, \"AGE_30_39\": 35493, \"AGE_40_49\": 29315, \"AGE_50_64\": 37757, \"AGE_65_UP\": 37679, \"MED_AGE\": 37.700000, \"MED_AGE_M\": 36.200000, \"MED_AGE_F\": 39.200000, \"HOUSEHOLDS\": 70704, \"AVE_HH_SZ\": 3.150000, \"HSEHLD_1_M\": 4036, \"HSEHLD_1_F\": 6330, \"MARHH_CHD\": 18127, \"MARHH_NO_C\": 22426, \"MHH_CHILD\": 1562, \"FHH_CHILD\": 5934, \"FAMILIES\": 57482, \"AVE_FAM_SZ\": 3.390000, \"HSE_UNITS\": 72142, \"VACANT\": 1438, \"OWNER_OCC\": 35846, \"RENTER_OCC\": 34858 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.293971580005177, 25.860473954672226 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hialeah Gardens\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"30025\", \"CAPITAL\": \"N\", \"AREALAND\": 2.460000, \"AREAWATER\": 0.065000, \"POP_CL\": 6, \"POP2000\": 19297, \"WHITE\": 17060, \"BLACK\": 348, \"AMERI_ES\": 15, \"ASIAN\": 154, \"HAWN_PI\": 0, \"OTHER\": 1027, \"MULT_RACE\": 693, \"HISPANIC\": 17324, \"MALES\": 9294, \"FEMALES\": 10003, \"AGE_UNDER5\": 1361, \"AGE_5_17\": 3980, \"AGE_18_21\": 877, \"AGE_22_29\": 2121, \"AGE_30_39\": 3446, \"AGE_40_49\": 2707, \"AGE_50_64\": 2776, \"AGE_65_UP\": 2029, \"MED_AGE\": 34.300000, \"MED_AGE_M\": 33.100000, \"MED_AGE_F\": 35.300000, \"HOUSEHOLDS\": 5636, \"AVE_HH_SZ\": 3.380000, \"HSEHLD_1_M\": 223, \"HSEHLD_1_F\": 325, \"MARHH_CHD\": 2030, \"MARHH_NO_C\": 1615, \"MHH_CHILD\": 156, \"FHH_CHILD\": 493, \"FAMILIES\": 4901, \"AVE_FAM_SZ\": 3.560000, \"HSE_UNITS\": 5848, \"VACANT\": 212, \"OWNER_OCC\": 4363, \"RENTER_OCC\": 1273 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.348072553702167, 25.878341954868979 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hobe Sound\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"30975\", \"CAPITAL\": \"N\", \"AREALAND\": 5.462000, \"AREAWATER\": 0.265000, \"POP_CL\": 6, \"POP2000\": 11376, \"WHITE\": 10464, \"BLACK\": 659, \"AMERI_ES\": 17, \"ASIAN\": 68, \"HAWN_PI\": 3, \"OTHER\": 73, \"MULT_RACE\": 92, \"HISPANIC\": 253, \"MALES\": 5491, \"FEMALES\": 5885, \"AGE_UNDER5\": 424, \"AGE_5_17\": 1490, \"AGE_18_21\": 325, \"AGE_22_29\": 585, \"AGE_30_39\": 1171, \"AGE_40_49\": 1539, \"AGE_50_64\": 2086, \"AGE_65_UP\": 3756, \"MED_AGE\": 51.200000, \"MED_AGE_M\": 49.500000, \"MED_AGE_F\": 52.800000, \"HOUSEHOLDS\": 5176, \"AVE_HH_SZ\": 2.140000, \"HSEHLD_1_M\": 701, \"HSEHLD_1_F\": 914, \"MARHH_CHD\": 746, \"MARHH_NO_C\": 2056, \"MHH_CHILD\": 65, \"FHH_CHILD\": 159, \"FAMILIES\": 3266, \"AVE_FAM_SZ\": 2.660000, \"HSE_UNITS\": 6042, \"VACANT\": 866, \"OWNER_OCC\": 4193, \"RENTER_OCC\": 983 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.142076746499413, 27.076736954978607 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Holiday\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"31075\", \"CAPITAL\": \"N\", \"AREALAND\": 5.382000, \"AREAWATER\": 0.345000, \"POP_CL\": 6, \"POP2000\": 21904, \"WHITE\": 20838, \"BLACK\": 309, \"AMERI_ES\": 60, \"ASIAN\": 198, \"HAWN_PI\": 12, \"OTHER\": 186, \"MULT_RACE\": 301, \"HISPANIC\": 883, \"MALES\": 10334, \"FEMALES\": 11570, \"AGE_UNDER5\": 1103, \"AGE_5_17\": 2695, \"AGE_18_21\": 607, \"AGE_22_29\": 1667, \"AGE_30_39\": 2724, \"AGE_40_49\": 2474, \"AGE_50_64\": 3493, \"AGE_65_UP\": 7141, \"MED_AGE\": 48.500000, \"MED_AGE_M\": 45.300000, \"MED_AGE_F\": 51.700000, \"HOUSEHOLDS\": 10428, \"AVE_HH_SZ\": 2.100000, \"HSEHLD_1_M\": 1221, \"HSEHLD_1_F\": 2202, \"MARHH_CHD\": 1269, \"MARHH_NO_C\": 3631, \"MHH_CHILD\": 211, \"FHH_CHILD\": 497, \"FAMILIES\": 6295, \"AVE_FAM_SZ\": 2.610000, \"HSE_UNITS\": 12788, \"VACANT\": 2360, \"OWNER_OCC\": 8610, \"RENTER_OCC\": 1818 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.742886055844082, 28.183889976097049 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Holly Hill\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"31350\", \"CAPITAL\": \"N\", \"AREALAND\": 3.892000, \"AREAWATER\": 0.631000, \"POP_CL\": 6, \"POP2000\": 12119, \"WHITE\": 10556, \"BLACK\": 1087, \"AMERI_ES\": 44, \"ASIAN\": 121, \"HAWN_PI\": 3, \"OTHER\": 110, \"MULT_RACE\": 198, \"HISPANIC\": 447, \"MALES\": 5792, \"FEMALES\": 6327, \"AGE_UNDER5\": 663, \"AGE_5_17\": 1744, \"AGE_18_21\": 488, \"AGE_22_29\": 1098, \"AGE_30_39\": 1753, \"AGE_40_49\": 1849, \"AGE_50_64\": 1952, \"AGE_65_UP\": 2572, \"MED_AGE\": 41.600000, \"MED_AGE_M\": 39.700000, \"MED_AGE_F\": 43.600000, \"HOUSEHOLDS\": 5583, \"AVE_HH_SZ\": 2.140000, \"HSEHLD_1_M\": 892, \"HSEHLD_1_F\": 1167, \"MARHH_CHD\": 638, \"MARHH_NO_C\": 1312, \"MHH_CHILD\": 151, \"FHH_CHILD\": 458, \"FAMILIES\": 2999, \"AVE_FAM_SZ\": 2.770000, \"HSE_UNITS\": 6148, \"VACANT\": 565, \"OWNER_OCC\": 3366, \"RENTER_OCC\": 2217 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.046476424337641, 29.243807953701747 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hollywood\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"32000\", \"CAPITAL\": \"N\", \"AREALAND\": 27.340000, \"AREAWATER\": 3.456000, \"POP_CL\": 8, \"POP2000\": 139357, \"WHITE\": 109190, \"BLACK\": 16853, \"AMERI_ES\": 381, \"ASIAN\": 2757, \"HAWN_PI\": 117, \"OTHER\": 5507, \"MULT_RACE\": 4552, \"HISPANIC\": 31392, \"MALES\": 67577, \"FEMALES\": 71780, \"AGE_UNDER5\": 8225, \"AGE_5_17\": 21445, \"AGE_18_21\": 5493, \"AGE_22_29\": 13575, \"AGE_30_39\": 22837, \"AGE_40_49\": 21576, \"AGE_50_64\": 22047, \"AGE_65_UP\": 24159, \"MED_AGE\": 39.200000, \"MED_AGE_M\": 38.000000, \"MED_AGE_F\": 40.400000, \"HOUSEHOLDS\": 59673, \"AVE_HH_SZ\": 2.310000, \"HSEHLD_1_M\": 9402, \"HSEHLD_1_F\": 11106, \"MARHH_CHD\": 9769, \"MARHH_NO_C\": 15020, \"MHH_CHILD\": 1184, \"FHH_CHILD\": 3894, \"FAMILIES\": 34462, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 68426, \"VACANT\": 8753, \"OWNER_OCC\": 37098, \"RENTER_OCC\": 22575 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.174910653814848, 26.021466954554548 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Homestead\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"32275\", \"CAPITAL\": \"N\", \"AREALAND\": 14.284000, \"AREAWATER\": 0.093000, \"POP_CL\": 6, \"POP2000\": 31909, \"WHITE\": 19465, \"BLACK\": 7194, \"AMERI_ES\": 159, \"ASIAN\": 243, \"HAWN_PI\": 27, \"OTHER\": 3140, \"MULT_RACE\": 1681, \"HISPANIC\": 16537, \"MALES\": 16499, \"FEMALES\": 15410, \"AGE_UNDER5\": 3386, \"AGE_5_17\": 7195, \"AGE_18_21\": 2214, \"AGE_22_29\": 4827, \"AGE_30_39\": 5009, \"AGE_40_49\": 3661, \"AGE_50_64\": 3118, \"AGE_65_UP\": 2499, \"MED_AGE\": 27.200000, \"MED_AGE_M\": 26.700000, \"MED_AGE_F\": 27.800000, \"HOUSEHOLDS\": 10095, \"AVE_HH_SZ\": 3.100000, \"HSEHLD_1_M\": 1103, \"HSEHLD_1_F\": 1004, \"MARHH_CHD\": 2264, \"MARHH_NO_C\": 1773, \"MHH_CHILD\": 391, \"FHH_CHILD\": 1653, \"FAMILIES\": 7153, \"AVE_FAM_SZ\": 3.540000, \"HSE_UNITS\": 11162, \"VACANT\": 1067, \"OWNER_OCC\": 3639, \"RENTER_OCC\": 6456 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.46812247838325, 25.471189955342293 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Homosassa Springs\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"32400\", \"CAPITAL\": \"N\", \"AREALAND\": 25.843000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12458, \"WHITE\": 12041, \"BLACK\": 112, \"AMERI_ES\": 85, \"ASIAN\": 61, \"HAWN_PI\": 1, \"OTHER\": 27, \"MULT_RACE\": 131, \"HISPANIC\": 260, \"MALES\": 6169, \"FEMALES\": 6289, \"AGE_UNDER5\": 593, \"AGE_5_17\": 2135, \"AGE_18_21\": 493, \"AGE_22_29\": 897, \"AGE_30_39\": 1538, \"AGE_40_49\": 1651, \"AGE_50_64\": 2338, \"AGE_65_UP\": 2813, \"MED_AGE\": 43.200000, \"MED_AGE_M\": 42.200000, \"MED_AGE_F\": 44.100000, \"HOUSEHOLDS\": 5201, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 571, \"HSEHLD_1_F\": 670, \"MARHH_CHD\": 844, \"MARHH_NO_C\": 1997, \"MHH_CHILD\": 143, \"FHH_CHILD\": 313, \"FAMILIES\": 3606, \"AVE_FAM_SZ\": 2.800000, \"HSE_UNITS\": 6041, \"VACANT\": 840, \"OWNER_OCC\": 4344, \"RENTER_OCC\": 857 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.550012080340579, 28.807215972594513 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hudson\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"32825\", \"CAPITAL\": \"N\", \"AREALAND\": 6.365000, \"AREAWATER\": 0.018000, \"POP_CL\": 6, \"POP2000\": 12765, \"WHITE\": 12365, \"BLACK\": 46, \"AMERI_ES\": 28, \"ASIAN\": 116, \"HAWN_PI\": 4, \"OTHER\": 54, \"MULT_RACE\": 152, \"HISPANIC\": 332, \"MALES\": 6160, \"FEMALES\": 6605, \"AGE_UNDER5\": 381, \"AGE_5_17\": 1261, \"AGE_18_21\": 319, \"AGE_22_29\": 592, \"AGE_30_39\": 1093, \"AGE_40_49\": 1450, \"AGE_50_64\": 2747, \"AGE_65_UP\": 4922, \"MED_AGE\": 57.200000, \"MED_AGE_M\": 56.100000, \"MED_AGE_F\": 58.200000, \"HOUSEHOLDS\": 6130, \"AVE_HH_SZ\": 2.040000, \"HSEHLD_1_M\": 762, \"HSEHLD_1_F\": 1101, \"MARHH_CHD\": 555, \"MARHH_NO_C\": 2767, \"MHH_CHILD\": 95, \"FHH_CHILD\": 194, \"FAMILIES\": 3909, \"AVE_FAM_SZ\": 2.470000, \"HSE_UNITS\": 7686, \"VACANT\": 1556, \"OWNER_OCC\": 4921, \"RENTER_OCC\": 1209 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.687105062210819, 28.361064975126379 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Immokalee\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"33250\", \"CAPITAL\": \"N\", \"AREALAND\": 8.069000, \"AREAWATER\": 0.008000, \"POP_CL\": 6, \"POP2000\": 19763, \"WHITE\": 7610, \"BLACK\": 3564, \"AMERI_ES\": 204, \"ASIAN\": 39, \"HAWN_PI\": 37, \"OTHER\": 7048, \"MULT_RACE\": 1261, \"HISPANIC\": 14027, \"MALES\": 11155, \"FEMALES\": 8608, \"AGE_UNDER5\": 2012, \"AGE_5_17\": 4893, \"AGE_18_21\": 1817, \"AGE_22_29\": 3183, \"AGE_30_39\": 3066, \"AGE_40_49\": 2166, \"AGE_50_64\": 1824, \"AGE_65_UP\": 802, \"MED_AGE\": 24.700000, \"MED_AGE_M\": 25.200000, \"MED_AGE_F\": 24.000000, \"HOUSEHOLDS\": 4715, \"AVE_HH_SZ\": 3.910000, \"HSEHLD_1_M\": 334, \"HSEHLD_1_F\": 286, \"MARHH_CHD\": 1463, \"MARHH_NO_C\": 682, \"MHH_CHILD\": 257, \"FHH_CHILD\": 624, \"FAMILIES\": 3636, \"AVE_FAM_SZ\": 4.100000, \"HSE_UNITS\": 4987, \"VACANT\": 272, \"OWNER_OCC\": 1783, \"RENTER_OCC\": 2932 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.422907207668814, 26.420999963728359 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Iona\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"34012\", \"CAPITAL\": \"N\", \"AREALAND\": 7.131000, \"AREAWATER\": 3.077000, \"POP_CL\": 6, \"POP2000\": 11756, \"WHITE\": 11459, \"BLACK\": 48, \"AMERI_ES\": 20, \"ASIAN\": 56, \"HAWN_PI\": 1, \"OTHER\": 98, \"MULT_RACE\": 74, \"HISPANIC\": 463, \"MALES\": 5617, \"FEMALES\": 6139, \"AGE_UNDER5\": 285, \"AGE_5_17\": 910, \"AGE_18_21\": 229, \"AGE_22_29\": 574, \"AGE_30_39\": 1001, \"AGE_40_49\": 1357, \"AGE_50_64\": 2755, \"AGE_65_UP\": 4645, \"MED_AGE\": 59.400000, \"MED_AGE_M\": 58.600000, \"MED_AGE_F\": 59.900000, \"HOUSEHOLDS\": 6023, \"AVE_HH_SZ\": 1.950000, \"HSEHLD_1_M\": 693, \"HSEHLD_1_F\": 1196, \"MARHH_CHD\": 476, \"MARHH_NO_C\": 2833, \"MHH_CHILD\": 57, \"FHH_CHILD\": 140, \"FAMILIES\": 3742, \"AVE_FAM_SZ\": 2.360000, \"HSE_UNITS\": 9290, \"VACANT\": 3267, \"OWNER_OCC\": 4807, \"RENTER_OCC\": 1216 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.95894011581953, 26.510424969920201 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ives Estates\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"34400\", \"CAPITAL\": \"N\", \"AREALAND\": 2.646000, \"AREAWATER\": 0.153000, \"POP_CL\": 6, \"POP2000\": 17586, \"WHITE\": 8986, \"BLACK\": 6174, \"AMERI_ES\": 30, \"ASIAN\": 815, \"HAWN_PI\": 9, \"OTHER\": 662, \"MULT_RACE\": 910, \"HISPANIC\": 4234, \"MALES\": 8016, \"FEMALES\": 9570, \"AGE_UNDER5\": 1232, \"AGE_5_17\": 3133, \"AGE_18_21\": 851, \"AGE_22_29\": 2132, \"AGE_30_39\": 2998, \"AGE_40_49\": 2607, \"AGE_50_64\": 2453, \"AGE_65_UP\": 2180, \"MED_AGE\": 34.600000, \"MED_AGE_M\": 33.300000, \"MED_AGE_F\": 35.800000, \"HOUSEHOLDS\": 6923, \"AVE_HH_SZ\": 2.540000, \"HSEHLD_1_M\": 754, \"HSEHLD_1_F\": 1204, \"MARHH_CHD\": 1319, \"MARHH_NO_C\": 1508, \"MHH_CHILD\": 148, \"FHH_CHILD\": 800, \"FAMILIES\": 4510, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 7449, \"VACANT\": 526, \"OWNER_OCC\": 5321, \"RENTER_OCC\": 1602 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.181968646229706, 25.96306995451382 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Jacksonville\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"35000\", \"CAPITAL\": \"N\", \"AREALAND\": 757.673000, \"AREAWATER\": 116.648000, \"POP_CL\": 9, \"POP2000\": 735617, \"WHITE\": 474307, \"BLACK\": 213514, \"AMERI_ES\": 2474, \"ASIAN\": 20427, \"HAWN_PI\": 448, \"OTHER\": 9816, \"MULT_RACE\": 14631, \"HISPANIC\": 30594, \"MALES\": 356284, \"FEMALES\": 379333, \"AGE_UNDER5\": 53938, \"AGE_5_17\": 142401, \"AGE_18_21\": 40991, \"AGE_22_29\": 86611, \"AGE_30_39\": 121411, \"AGE_40_49\": 112054, \"AGE_50_64\": 102296, \"AGE_65_UP\": 75915, \"MED_AGE\": 33.800000, \"MED_AGE_M\": 32.600000, \"MED_AGE_F\": 34.900000, \"HOUSEHOLDS\": 284499, \"AVE_HH_SZ\": 2.530000, \"HSEHLD_1_M\": 33523, \"HSEHLD_1_F\": 40957, \"MARHH_CHD\": 61783, \"MARHH_NO_C\": 70973, \"MHH_CHILD\": 6462, \"FHH_CHILD\": 28155, \"FAMILIES\": 190533, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 308826, \"VACANT\": 24327, \"OWNER_OCC\": 179729, \"RENTER_OCC\": 104770 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.659999269834003, 30.319405956868422 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Jacksonville Beach\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"35050\", \"CAPITAL\": \"N\", \"AREALAND\": 7.682000, \"AREAWATER\": 14.281000, \"POP_CL\": 6, \"POP2000\": 20990, \"WHITE\": 19089, \"BLACK\": 1011, \"AMERI_ES\": 57, \"ASIAN\": 342, \"HAWN_PI\": 9, \"OTHER\": 165, \"MULT_RACE\": 317, \"HISPANIC\": 628, \"MALES\": 10532, \"FEMALES\": 10458, \"AGE_UNDER5\": 1046, \"AGE_5_17\": 2724, \"AGE_18_21\": 943, \"AGE_22_29\": 2706, \"AGE_30_39\": 3685, \"AGE_40_49\": 3710, \"AGE_50_64\": 3454, \"AGE_65_UP\": 2722, \"MED_AGE\": 38.400000, \"MED_AGE_M\": 37.100000, \"MED_AGE_F\": 39.900000, \"HOUSEHOLDS\": 9715, \"AVE_HH_SZ\": 2.130000, \"HSEHLD_1_M\": 1665, \"HSEHLD_1_F\": 1694, \"MARHH_CHD\": 1426, \"MARHH_NO_C\": 2513, \"MHH_CHILD\": 179, \"FHH_CHILD\": 511, \"FAMILIES\": 5210, \"AVE_FAM_SZ\": 2.780000, \"HSE_UNITS\": 10775, \"VACANT\": 1060, \"OWNER_OCC\": 5804, \"RENTER_OCC\": 3911 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.396074347452938, 30.284090953719925 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Jasmine Estates\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"35350\", \"CAPITAL\": \"N\", \"AREALAND\": 3.574000, \"AREAWATER\": 0.064000, \"POP_CL\": 6, \"POP2000\": 18213, \"WHITE\": 17204, \"BLACK\": 296, \"AMERI_ES\": 58, \"ASIAN\": 160, \"HAWN_PI\": 3, \"OTHER\": 220, \"MULT_RACE\": 272, \"HISPANIC\": 1105, \"MALES\": 8423, \"FEMALES\": 9790, \"AGE_UNDER5\": 960, \"AGE_5_17\": 2524, \"AGE_18_21\": 659, \"AGE_22_29\": 1475, \"AGE_30_39\": 2226, \"AGE_40_49\": 2044, \"AGE_50_64\": 2783, \"AGE_65_UP\": 5542, \"MED_AGE\": 46.000000, \"MED_AGE_M\": 42.700000, \"MED_AGE_F\": 48.800000, \"HOUSEHOLDS\": 8361, \"AVE_HH_SZ\": 2.180000, \"HSEHLD_1_M\": 872, \"HSEHLD_1_F\": 1750, \"MARHH_CHD\": 1078, \"MARHH_NO_C\": 2883, \"MHH_CHILD\": 183, \"FHH_CHILD\": 522, \"FAMILIES\": 5273, \"AVE_FAM_SZ\": 2.670000, \"HSE_UNITS\": 9289, \"VACANT\": 928, \"OWNER_OCC\": 6461, \"RENTER_OCC\": 1900 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.691744061070636, 28.293671975308495 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Jensen Beach\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"35550\", \"CAPITAL\": \"N\", \"AREALAND\": 7.246000, \"AREAWATER\": 0.880000, \"POP_CL\": 6, \"POP2000\": 11100, \"WHITE\": 10634, \"BLACK\": 250, \"AMERI_ES\": 24, \"ASIAN\": 52, \"HAWN_PI\": 4, \"OTHER\": 41, \"MULT_RACE\": 95, \"HISPANIC\": 307, \"MALES\": 5384, \"FEMALES\": 5716, \"AGE_UNDER5\": 498, \"AGE_5_17\": 1722, \"AGE_18_21\": 377, \"AGE_22_29\": 664, \"AGE_30_39\": 1438, \"AGE_40_49\": 1822, \"AGE_50_64\": 1932, \"AGE_65_UP\": 2647, \"MED_AGE\": 44.500000, \"MED_AGE_M\": 43.200000, \"MED_AGE_F\": 45.800000, \"HOUSEHOLDS\": 5059, \"AVE_HH_SZ\": 2.190000, \"HSEHLD_1_M\": 697, \"HSEHLD_1_F\": 981, \"MARHH_CHD\": 838, \"MARHH_NO_C\": 1550, \"MHH_CHILD\": 96, \"FHH_CHILD\": 268, \"FAMILIES\": 3025, \"AVE_FAM_SZ\": 2.780000, \"HSE_UNITS\": 5805, \"VACANT\": 746, \"OWNER_OCC\": 3849, \"RENTER_OCC\": 1210 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.23111270277866, 27.234925954708842 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Jupiter\", \"CLASS\": \"town\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"35875\", \"CAPITAL\": \"N\", \"AREALAND\": 19.998000, \"AREAWATER\": 1.125000, \"POP_CL\": 6, \"POP2000\": 39328, \"WHITE\": 37307, \"BLACK\": 480, \"AMERI_ES\": 73, \"ASIAN\": 442, \"HAWN_PI\": 47, \"OTHER\": 540, \"MULT_RACE\": 439, \"HISPANIC\": 2881, \"MALES\": 19385, \"FEMALES\": 19943, \"AGE_UNDER5\": 2037, \"AGE_5_17\": 6091, \"AGE_18_21\": 1156, \"AGE_22_29\": 2817, \"AGE_30_39\": 5861, \"AGE_40_49\": 6576, \"AGE_50_64\": 7368, \"AGE_65_UP\": 7422, \"MED_AGE\": 42.400000, \"MED_AGE_M\": 41.200000, \"MED_AGE_F\": 43.500000, \"HOUSEHOLDS\": 16945, \"AVE_HH_SZ\": 2.320000, \"HSEHLD_1_M\": 1759, \"HSEHLD_1_F\": 2615, \"MARHH_CHD\": 3353, \"MARHH_NO_C\": 6099, \"MHH_CHILD\": 289, \"FHH_CHILD\": 868, \"FAMILIES\": 11411, \"AVE_FAM_SZ\": 2.750000, \"HSE_UNITS\": 20943, \"VACANT\": 3998, \"OWNER_OCC\": 13782, \"RENTER_OCC\": 3163 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.10496375888853, 26.925984955101242 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Kendale Lakes\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"36062\", \"CAPITAL\": \"N\", \"AREALAND\": 8.173000, \"AREAWATER\": 0.430000, \"POP_CL\": 7, \"POP2000\": 56901, \"WHITE\": 49492, \"BLACK\": 1312, \"AMERI_ES\": 74, \"ASIAN\": 1083, \"HAWN_PI\": 14, \"OTHER\": 2886, \"MULT_RACE\": 2040, \"HISPANIC\": 43574, \"MALES\": 26891, \"FEMALES\": 30010, \"AGE_UNDER5\": 3487, \"AGE_5_17\": 11057, \"AGE_18_21\": 3017, \"AGE_22_29\": 6173, \"AGE_30_39\": 9214, \"AGE_40_49\": 8621, \"AGE_50_64\": 8909, \"AGE_65_UP\": 6423, \"MED_AGE\": 35.600000, \"MED_AGE_M\": 33.500000, \"MED_AGE_F\": 37.300000, \"HOUSEHOLDS\": 18080, \"AVE_HH_SZ\": 3.130000, \"HSEHLD_1_M\": 848, \"HSEHLD_1_F\": 1550, \"MARHH_CHD\": 5721, \"MARHH_NO_C\": 5239, \"MHH_CHILD\": 327, \"FHH_CHILD\": 1570, \"FAMILIES\": 14981, \"AVE_FAM_SZ\": 3.400000, \"HSE_UNITS\": 18656, \"VACANT\": 576, \"OWNER_OCC\": 14272, \"RENTER_OCC\": 3808 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.41161051471525, 25.708463955096018 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Kendall\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"36100\", \"CAPITAL\": \"N\", \"AREALAND\": 16.126000, \"AREAWATER\": 0.216000, \"POP_CL\": 7, \"POP2000\": 75226, \"WHITE\": 65055, \"BLACK\": 3348, \"AMERI_ES\": 106, \"ASIAN\": 2250, \"HAWN_PI\": 21, \"OTHER\": 2113, \"MULT_RACE\": 2333, \"HISPANIC\": 37549, \"MALES\": 35311, \"FEMALES\": 39915, \"AGE_UNDER5\": 4358, \"AGE_5_17\": 13149, \"AGE_18_21\": 3545, \"AGE_22_29\": 8185, \"AGE_30_39\": 12334, \"AGE_40_49\": 12224, \"AGE_50_64\": 12751, \"AGE_65_UP\": 8680, \"MED_AGE\": 37.000000, \"MED_AGE_M\": 35.200000, \"MED_AGE_F\": 38.600000, \"HOUSEHOLDS\": 28482, \"AVE_HH_SZ\": 2.610000, \"HSEHLD_1_M\": 2686, \"HSEHLD_1_F\": 4263, \"MARHH_CHD\": 7140, \"MARHH_NO_C\": 7395, \"MHH_CHILD\": 401, \"FHH_CHILD\": 1963, \"FAMILIES\": 19663, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 29669, \"VACANT\": 1187, \"OWNER_OCC\": 19041, \"RENTER_OCC\": 9441 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.356533538724904, 25.666780954809543 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Kendall West\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"36121\", \"CAPITAL\": \"N\", \"AREALAND\": 3.390000, \"AREAWATER\": 0.259000, \"POP_CL\": 6, \"POP2000\": 38034, \"WHITE\": 31708, \"BLACK\": 1609, \"AMERI_ES\": 73, \"ASIAN\": 564, \"HAWN_PI\": 13, \"OTHER\": 2450, \"MULT_RACE\": 1617, \"HISPANIC\": 30060, \"MALES\": 17980, \"FEMALES\": 20054, \"AGE_UNDER5\": 2847, \"AGE_5_17\": 8268, \"AGE_18_21\": 2235, \"AGE_22_29\": 4750, \"AGE_30_39\": 7044, \"AGE_40_49\": 5623, \"AGE_50_64\": 4555, \"AGE_65_UP\": 2712, \"MED_AGE\": 31.500000, \"MED_AGE_M\": 30.000000, \"MED_AGE_F\": 32.800000, \"HOUSEHOLDS\": 11759, \"AVE_HH_SZ\": 3.230000, \"HSEHLD_1_M\": 626, \"HSEHLD_1_F\": 760, \"MARHH_CHD\": 4223, \"MARHH_NO_C\": 2687, \"MHH_CHILD\": 315, \"FHH_CHILD\": 1286, \"FAMILIES\": 9802, \"AVE_FAM_SZ\": 3.470000, \"HSE_UNITS\": 12229, \"VACANT\": 470, \"OWNER_OCC\": 7367, \"RENTER_OCC\": 4392 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.440526501303708, 25.70549895525064 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Key Biscayne\", \"CLASS\": \"village\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"36300\", \"CAPITAL\": \"N\", \"AREALAND\": 1.277000, \"AREAWATER\": 0.115000, \"POP_CL\": 6, \"POP2000\": 10507, \"WHITE\": 10030, \"BLACK\": 48, \"AMERI_ES\": 15, \"ASIAN\": 97, \"HAWN_PI\": 0, \"OTHER\": 157, \"MULT_RACE\": 160, \"HISPANIC\": 5231, \"MALES\": 4930, \"FEMALES\": 5577, \"AGE_UNDER5\": 766, \"AGE_5_17\": 1781, \"AGE_18_21\": 279, \"AGE_22_29\": 682, \"AGE_30_39\": 1724, \"AGE_40_49\": 1675, \"AGE_50_64\": 1966, \"AGE_65_UP\": 1634, \"MED_AGE\": 40.100000, \"MED_AGE_M\": 40.200000, \"MED_AGE_F\": 40.000000, \"HOUSEHOLDS\": 4259, \"AVE_HH_SZ\": 2.470000, \"HSEHLD_1_M\": 507, \"HSEHLD_1_F\": 680, \"MARHH_CHD\": 1141, \"MARHH_NO_C\": 1328, \"MHH_CHILD\": 46, \"FHH_CHILD\": 188, \"FAMILIES\": 2900, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 6378, \"VACANT\": 2119, \"OWNER_OCC\": 3017, \"RENTER_OCC\": 1242 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.16511863939121, 25.690328954236914 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Key Largo\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"36375\", \"CAPITAL\": \"N\", \"AREALAND\": 12.152000, \"AREAWATER\": 3.136000, \"POP_CL\": 6, \"POP2000\": 11886, \"WHITE\": 11218, \"BLACK\": 243, \"AMERI_ES\": 35, \"ASIAN\": 56, \"HAWN_PI\": 0, \"OTHER\": 113, \"MULT_RACE\": 221, \"HISPANIC\": 1979, \"MALES\": 6165, \"FEMALES\": 5721, \"AGE_UNDER5\": 554, \"AGE_5_17\": 1782, \"AGE_18_21\": 388, \"AGE_22_29\": 805, \"AGE_30_39\": 1751, \"AGE_40_49\": 2283, \"AGE_50_64\": 2448, \"AGE_65_UP\": 1875, \"MED_AGE\": 43.100000, \"MED_AGE_M\": 43.200000, \"MED_AGE_F\": 43.000000, \"HOUSEHOLDS\": 5245, \"AVE_HH_SZ\": 2.260000, \"HSEHLD_1_M\": 854, \"HSEHLD_1_F\": 595, \"MARHH_CHD\": 872, \"MARHH_NO_C\": 1779, \"MHH_CHILD\": 127, \"FHH_CHILD\": 242, \"FAMILIES\": 3288, \"AVE_FAM_SZ\": 2.750000, \"HSE_UNITS\": 8043, \"VACANT\": 2798, \"OWNER_OCC\": 3723, \"RENTER_OCC\": 1522 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.429917479457046, 25.10663695488838 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Keystone\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"36462\", \"CAPITAL\": \"N\", \"AREALAND\": 36.079000, \"AREAWATER\": 3.164000, \"POP_CL\": 6, \"POP2000\": 14627, \"WHITE\": 13355, \"BLACK\": 512, \"AMERI_ES\": 50, \"ASIAN\": 359, \"HAWN_PI\": 7, \"OTHER\": 137, \"MULT_RACE\": 207, \"HISPANIC\": 1240, \"MALES\": 7327, \"FEMALES\": 7300, \"AGE_UNDER5\": 1035, \"AGE_5_17\": 2941, \"AGE_18_21\": 487, \"AGE_22_29\": 895, \"AGE_30_39\": 2629, \"AGE_40_49\": 3000, \"AGE_50_64\": 2520, \"AGE_65_UP\": 1120, \"MED_AGE\": 37.900000, \"MED_AGE_M\": 37.900000, \"MED_AGE_F\": 37.800000, \"HOUSEHOLDS\": 5160, \"AVE_HH_SZ\": 2.830000, \"HSEHLD_1_M\": 305, \"HSEHLD_1_F\": 266, \"MARHH_CHD\": 1963, \"MARHH_NO_C\": 2074, \"MHH_CHILD\": 61, \"FHH_CHILD\": 129, \"FAMILIES\": 4380, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 5709, \"VACANT\": 549, \"OWNER_OCC\": 4879, \"RENTER_OCC\": 281 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.589117067895288, 28.127549974437457 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Key West\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"36550\", \"CAPITAL\": \"N\", \"AREALAND\": 5.946000, \"AREAWATER\": 1.459000, \"POP_CL\": 6, \"POP2000\": 25478, \"WHITE\": 21642, \"BLACK\": 2365, \"AMERI_ES\": 99, \"ASIAN\": 329, \"HAWN_PI\": 14, \"OTHER\": 474, \"MULT_RACE\": 555, \"HISPANIC\": 4215, \"MALES\": 14017, \"FEMALES\": 11461, \"AGE_UNDER5\": 1204, \"AGE_5_17\": 2868, \"AGE_18_21\": 1055, \"AGE_22_29\": 3311, \"AGE_30_39\": 4824, \"AGE_40_49\": 4606, \"AGE_50_64\": 4620, \"AGE_65_UP\": 2990, \"MED_AGE\": 38.900000, \"MED_AGE_M\": 38.800000, \"MED_AGE_F\": 38.900000, \"HOUSEHOLDS\": 11016, \"AVE_HH_SZ\": 2.230000, \"HSEHLD_1_M\": 1975, \"HSEHLD_1_F\": 1486, \"MARHH_CHD\": 1568, \"MARHH_NO_C\": 2581, \"MHH_CHILD\": 151, \"FHH_CHILD\": 469, \"FAMILIES\": 5469, \"AVE_FAM_SZ\": 2.840000, \"HSE_UNITS\": 13306, \"VACANT\": 2290, \"OWNER_OCC\": 5021, \"RENTER_OCC\": 5995 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.784031114237564, 24.559165970199775 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Kings Point\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"36812\", \"CAPITAL\": \"N\", \"AREALAND\": 1.822000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12207, \"WHITE\": 12097, \"BLACK\": 33, \"AMERI_ES\": 5, \"ASIAN\": 22, \"HAWN_PI\": 1, \"OTHER\": 10, \"MULT_RACE\": 39, \"HISPANIC\": 138, \"MALES\": 4897, \"FEMALES\": 7310, \"AGE_UNDER5\": 3, \"AGE_5_17\": 19, \"AGE_18_21\": 17, \"AGE_22_29\": 48, \"AGE_30_39\": 83, \"AGE_40_49\": 222, \"AGE_50_64\": 1058, \"AGE_65_UP\": 10757, \"MED_AGE\": 77.700000, \"MED_AGE_M\": 78.200000, \"MED_AGE_F\": 77.300000, \"HOUSEHOLDS\": 7998, \"AVE_HH_SZ\": 1.510000, \"HSEHLD_1_M\": 986, \"HSEHLD_1_F\": 3186, \"MARHH_CHD\": 4, \"MARHH_NO_C\": 3359, \"MHH_CHILD\": 0, \"FHH_CHILD\": 2, \"FAMILIES\": 3599, \"AVE_FAM_SZ\": 2.050000, \"HSE_UNITS\": 10494, \"VACANT\": 2496, \"OWNER_OCC\": 7289, \"RENTER_OCC\": 709 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.139715702230291, 26.446043954844356 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Kissimmee\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"36950\", \"CAPITAL\": \"N\", \"AREALAND\": 16.679000, \"AREAWATER\": 0.636000, \"POP_CL\": 6, \"POP2000\": 47814, \"WHITE\": 32139, \"BLACK\": 4775, \"AMERI_ES\": 247, \"ASIAN\": 1614, \"HAWN_PI\": 46, \"OTHER\": 6765, \"MULT_RACE\": 2228, \"HISPANIC\": 19954, \"MALES\": 23682, \"FEMALES\": 24132, \"AGE_UNDER5\": 3706, \"AGE_5_17\": 9195, \"AGE_18_21\": 2967, \"AGE_22_29\": 7532, \"AGE_30_39\": 8349, \"AGE_40_49\": 6507, \"AGE_50_64\": 5908, \"AGE_65_UP\": 3650, \"MED_AGE\": 30.600000, \"MED_AGE_M\": 29.900000, \"MED_AGE_F\": 31.400000, \"HOUSEHOLDS\": 17121, \"AVE_HH_SZ\": 2.770000, \"HSEHLD_1_M\": 1690, \"HSEHLD_1_F\": 1887, \"MARHH_CHD\": 4091, \"MARHH_NO_C\": 3990, \"MHH_CHILD\": 550, \"FHH_CHILD\": 1755, \"FAMILIES\": 11809, \"AVE_FAM_SZ\": 3.210000, \"HSE_UNITS\": 19642, \"VACANT\": 2521, \"OWNER_OCC\": 7689, \"RENTER_OCC\": 9432 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.412867264719651, 28.303987959926115 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lady Lake\", \"CLASS\": \"town\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"37375\", \"CAPITAL\": \"N\", \"AREALAND\": 6.618000, \"AREAWATER\": 0.135000, \"POP_CL\": 6, \"POP2000\": 11828, \"WHITE\": 11274, \"BLACK\": 383, \"AMERI_ES\": 24, \"ASIAN\": 37, \"HAWN_PI\": 7, \"OTHER\": 44, \"MULT_RACE\": 59, \"HISPANIC\": 217, \"MALES\": 5486, \"FEMALES\": 6342, \"AGE_UNDER5\": 251, \"AGE_5_17\": 656, \"AGE_18_21\": 147, \"AGE_22_29\": 302, \"AGE_30_39\": 560, \"AGE_40_49\": 516, \"AGE_50_64\": 2206, \"AGE_65_UP\": 7190, \"MED_AGE\": 68.400000, \"MED_AGE_M\": 69.200000, \"MED_AGE_F\": 67.700000, \"HOUSEHOLDS\": 6125, \"AVE_HH_SZ\": 1.910000, \"HSEHLD_1_M\": 500, \"HSEHLD_1_F\": 1126, \"MARHH_CHD\": 235, \"MARHH_NO_C\": 3685, \"MHH_CHILD\": 38, \"FHH_CHILD\": 163, \"FAMILIES\": 4292, \"AVE_FAM_SZ\": 2.220000, \"HSE_UNITS\": 6998, \"VACANT\": 873, \"OWNER_OCC\": 5616, \"RENTER_OCC\": 509 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.930888167916976, 28.929164964531086 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lakeland\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"38250\", \"CAPITAL\": \"N\", \"AREALAND\": 45.842000, \"AREAWATER\": 5.610000, \"POP_CL\": 7, \"POP2000\": 78452, \"WHITE\": 57677, \"BLACK\": 16682, \"AMERI_ES\": 217, \"ASIAN\": 1050, \"HAWN_PI\": 46, \"OTHER\": 1379, \"MULT_RACE\": 1401, \"HISPANIC\": 5032, \"MALES\": 36444, \"FEMALES\": 42008, \"AGE_UNDER5\": 4832, \"AGE_5_17\": 11963, \"AGE_18_21\": 4912, \"AGE_22_29\": 8251, \"AGE_30_39\": 9558, \"AGE_40_49\": 9155, \"AGE_50_64\": 11735, \"AGE_65_UP\": 18046, \"MED_AGE\": 39.700000, \"MED_AGE_M\": 37.300000, \"MED_AGE_F\": 42.000000, \"HOUSEHOLDS\": 33509, \"AVE_HH_SZ\": 2.230000, \"HSEHLD_1_M\": 4268, \"HSEHLD_1_F\": 6772, \"MARHH_CHD\": 4452, \"MARHH_NO_C\": 10123, \"MHH_CHILD\": 595, \"FHH_CHILD\": 2811, \"FAMILIES\": 20361, \"AVE_FAM_SZ\": 2.820000, \"HSE_UNITS\": 38980, \"VACANT\": 5471, \"OWNER_OCC\": 20195, \"RENTER_OCC\": 13314 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.958978143243712, 28.041247967013142 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lakeland Highlands\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"38262\", \"CAPITAL\": \"N\", \"AREALAND\": 5.584000, \"AREAWATER\": 0.574000, \"POP_CL\": 6, \"POP2000\": 12557, \"WHITE\": 11830, \"BLACK\": 310, \"AMERI_ES\": 25, \"ASIAN\": 208, \"HAWN_PI\": 2, \"OTHER\": 60, \"MULT_RACE\": 122, \"HISPANIC\": 484, \"MALES\": 6109, \"FEMALES\": 6448, \"AGE_UNDER5\": 640, \"AGE_5_17\": 2783, \"AGE_18_21\": 500, \"AGE_22_29\": 611, \"AGE_30_39\": 1588, \"AGE_40_49\": 2326, \"AGE_50_64\": 2468, \"AGE_65_UP\": 1641, \"MED_AGE\": 40.700000, \"MED_AGE_M\": 40.600000, \"MED_AGE_F\": 40.800000, \"HOUSEHOLDS\": 4501, \"AVE_HH_SZ\": 2.790000, \"HSEHLD_1_M\": 229, \"HSEHLD_1_F\": 411, \"MARHH_CHD\": 1510, \"MARHH_NO_C\": 1821, \"MHH_CHILD\": 62, \"FHH_CHILD\": 203, \"FAMILIES\": 3742, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 4748, \"VACANT\": 247, \"OWNER_OCC\": 4157, \"RENTER_OCC\": 344 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.949439143176534, 27.963350967067502 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lake Magdalene\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"38350\", \"CAPITAL\": \"N\", \"AREALAND\": 10.576000, \"AREAWATER\": 1.109000, \"POP_CL\": 6, \"POP2000\": 28755, \"WHITE\": 24915, \"BLACK\": 1698, \"AMERI_ES\": 101, \"ASIAN\": 670, \"HAWN_PI\": 9, \"OTHER\": 760, \"MULT_RACE\": 602, \"HISPANIC\": 3886, \"MALES\": 13752, \"FEMALES\": 15003, \"AGE_UNDER5\": 1632, \"AGE_5_17\": 4834, \"AGE_18_21\": 1301, \"AGE_22_29\": 2814, \"AGE_30_39\": 4211, \"AGE_40_49\": 4961, \"AGE_50_64\": 5276, \"AGE_65_UP\": 3726, \"MED_AGE\": 39.100000, \"MED_AGE_M\": 37.800000, \"MED_AGE_F\": 40.300000, \"HOUSEHOLDS\": 12085, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 1519, \"HSEHLD_1_F\": 1977, \"MARHH_CHD\": 2532, \"MARHH_NO_C\": 3449, \"MHH_CHILD\": 215, \"FHH_CHILD\": 748, \"FAMILIES\": 7720, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 12938, \"VACANT\": 853, \"OWNER_OCC\": 8423, \"RENTER_OCC\": 3662 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.477945077727512, 28.081293973222788 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lake Mary\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"38425\", \"CAPITAL\": \"N\", \"AREALAND\": 8.610000, \"AREAWATER\": 1.063000, \"POP_CL\": 6, \"POP2000\": 11458, \"WHITE\": 10236, \"BLACK\": 413, \"AMERI_ES\": 28, \"ASIAN\": 439, \"HAWN_PI\": 10, \"OTHER\": 169, \"MULT_RACE\": 163, \"HISPANIC\": 713, \"MALES\": 5639, \"FEMALES\": 5819, \"AGE_UNDER5\": 786, \"AGE_5_17\": 2273, \"AGE_18_21\": 409, \"AGE_22_29\": 764, \"AGE_30_39\": 1929, \"AGE_40_49\": 2209, \"AGE_50_64\": 1922, \"AGE_65_UP\": 1166, \"MED_AGE\": 38.300000, \"MED_AGE_M\": 38.000000, \"MED_AGE_F\": 38.600000, \"HOUSEHOLDS\": 4199, \"AVE_HH_SZ\": 2.720000, \"HSEHLD_1_M\": 303, \"HSEHLD_1_F\": 407, \"MARHH_CHD\": 1390, \"MARHH_NO_C\": 1498, \"MHH_CHILD\": 63, \"FHH_CHILD\": 158, \"FAMILIES\": 3270, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 4351, \"VACANT\": 152, \"OWNER_OCC\": 3520, \"RENTER_OCC\": 679 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.329038304874686, 28.757621957835592 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lakeside\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"38813\", \"CAPITAL\": \"N\", \"AREALAND\": 15.155000, \"AREAWATER\": 2.264000, \"POP_CL\": 6, \"POP2000\": 30927, \"WHITE\": 26520, \"BLACK\": 2199, \"AMERI_ES\": 123, \"ASIAN\": 843, \"HAWN_PI\": 26, \"OTHER\": 454, \"MULT_RACE\": 762, \"HISPANIC\": 1638, \"MALES\": 15132, \"FEMALES\": 15795, \"AGE_UNDER5\": 1899, \"AGE_5_17\": 6876, \"AGE_18_21\": 1702, \"AGE_22_29\": 2778, \"AGE_30_39\": 4591, \"AGE_40_49\": 5261, \"AGE_50_64\": 5460, \"AGE_65_UP\": 2360, \"MED_AGE\": 35.500000, \"MED_AGE_M\": 34.300000, \"MED_AGE_F\": 36.300000, \"HOUSEHOLDS\": 10753, \"AVE_HH_SZ\": 2.870000, \"HSEHLD_1_M\": 665, \"HSEHLD_1_F\": 852, \"MARHH_CHD\": 3491, \"MARHH_NO_C\": 3670, \"MHH_CHILD\": 231, \"FHH_CHILD\": 801, \"FAMILIES\": 8786, \"AVE_FAM_SZ\": 3.150000, \"HSE_UNITS\": 11144, \"VACANT\": 391, \"OWNER_OCC\": 8323, \"RENTER_OCC\": 2430 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.765767236620675, 30.134839958874061 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lake Wales\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"38950\", \"CAPITAL\": \"N\", \"AREALAND\": 13.345000, \"AREAWATER\": 0.665000, \"POP_CL\": 6, \"POP2000\": 10194, \"WHITE\": 6064, \"BLACK\": 3526, \"AMERI_ES\": 31, \"ASIAN\": 52, \"HAWN_PI\": 10, \"OTHER\": 369, \"MULT_RACE\": 142, \"HISPANIC\": 1014, \"MALES\": 4791, \"FEMALES\": 5403, \"AGE_UNDER5\": 755, \"AGE_5_17\": 1988, \"AGE_18_21\": 533, \"AGE_22_29\": 1033, \"AGE_30_39\": 1186, \"AGE_40_49\": 1246, \"AGE_50_64\": 1394, \"AGE_65_UP\": 2059, \"MED_AGE\": 36.900000, \"MED_AGE_M\": 33.500000, \"MED_AGE_F\": 39.700000, \"HOUSEHOLDS\": 4044, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 462, \"HSEHLD_1_F\": 773, \"MARHH_CHD\": 640, \"MARHH_NO_C\": 998, \"MHH_CHILD\": 92, \"FHH_CHILD\": 457, \"FAMILIES\": 2564, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 4598, \"VACANT\": 554, \"OWNER_OCC\": 2158, \"RENTER_OCC\": 1886 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.584031210914063, 27.904706962813236 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lakewood Park\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"39062\", \"CAPITAL\": \"N\", \"AREALAND\": 6.697000, \"AREAWATER\": 0.224000, \"POP_CL\": 6, \"POP2000\": 10458, \"WHITE\": 9602, \"BLACK\": 552, \"AMERI_ES\": 38, \"ASIAN\": 65, \"HAWN_PI\": 6, \"OTHER\": 70, \"MULT_RACE\": 125, \"HISPANIC\": 266, \"MALES\": 5084, \"FEMALES\": 5374, \"AGE_UNDER5\": 539, \"AGE_5_17\": 1528, \"AGE_18_21\": 335, \"AGE_22_29\": 655, \"AGE_30_39\": 1314, \"AGE_40_49\": 1363, \"AGE_50_64\": 1630, \"AGE_65_UP\": 3094, \"MED_AGE\": 45.900000, \"MED_AGE_M\": 44.500000, \"MED_AGE_F\": 47.600000, \"HOUSEHOLDS\": 4562, \"AVE_HH_SZ\": 2.290000, \"HSEHLD_1_M\": 472, \"HSEHLD_1_F\": 709, \"MARHH_CHD\": 733, \"MARHH_NO_C\": 1923, \"MHH_CHILD\": 98, \"FHH_CHILD\": 208, \"FAMILIES\": 3164, \"AVE_FAM_SZ\": 2.710000, \"HSE_UNITS\": 5124, \"VACANT\": 562, \"OWNER_OCC\": 3867, \"RENTER_OCC\": 695 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.39638062853092, 27.542068954382344 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lake Worth\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"39075\", \"CAPITAL\": \"N\", \"AREALAND\": 5.643000, \"AREAWATER\": 0.820000, \"POP_CL\": 6, \"POP2000\": 35133, \"WHITE\": 22877, \"BLACK\": 6627, \"AMERI_ES\": 273, \"ASIAN\": 262, \"HAWN_PI\": 37, \"OTHER\": 3362, \"MULT_RACE\": 1695, \"HISPANIC\": 10437, \"MALES\": 18316, \"FEMALES\": 16817, \"AGE_UNDER5\": 2493, \"AGE_5_17\": 5554, \"AGE_18_21\": 2081, \"AGE_22_29\": 4488, \"AGE_30_39\": 5760, \"AGE_40_49\": 5211, \"AGE_50_64\": 4539, \"AGE_65_UP\": 5007, \"MED_AGE\": 35.200000, \"MED_AGE_M\": 34.200000, \"MED_AGE_F\": 36.300000, \"HOUSEHOLDS\": 13828, \"AVE_HH_SZ\": 2.490000, \"HSEHLD_1_M\": 2369, \"HSEHLD_1_F\": 2281, \"MARHH_CHD\": 2236, \"MARHH_NO_C\": 2868, \"MHH_CHILD\": 424, \"FHH_CHILD\": 942, \"FAMILIES\": 7694, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 15861, \"VACANT\": 2033, \"OWNER_OCC\": 7243, \"RENTER_OCC\": 6585 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.058742765697104, 26.619694955152578 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lake Worth Corridor\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"39087\", \"CAPITAL\": \"N\", \"AREALAND\": 3.423000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 18663, \"WHITE\": 11813, \"BLACK\": 2542, \"AMERI_ES\": 104, \"ASIAN\": 221, \"HAWN_PI\": 15, \"OTHER\": 2976, \"MULT_RACE\": 992, \"HISPANIC\": 7613, \"MALES\": 10025, \"FEMALES\": 8638, \"AGE_UNDER5\": 1843, \"AGE_5_17\": 3770, \"AGE_18_21\": 1547, \"AGE_22_29\": 3086, \"AGE_30_39\": 3302, \"AGE_40_49\": 2399, \"AGE_50_64\": 1736, \"AGE_65_UP\": 980, \"MED_AGE\": 27.700000, \"MED_AGE_M\": 27.600000, \"MED_AGE_F\": 27.700000, \"HOUSEHOLDS\": 5921, \"AVE_HH_SZ\": 3.060000, \"HSEHLD_1_M\": 709, \"HSEHLD_1_F\": 435, \"MARHH_CHD\": 1350, \"MARHH_NO_C\": 1069, \"MHH_CHILD\": 284, \"FHH_CHILD\": 829, \"FAMILIES\": 4110, \"AVE_FAM_SZ\": 3.430000, \"HSE_UNITS\": 6442, \"VACANT\": 521, \"OWNER_OCC\": 2374, \"RENTER_OCC\": 3547 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.100391738923022, 26.619894955015116 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Land O' Lakes\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"39200\", \"CAPITAL\": \"N\", \"AREALAND\": 18.616000, \"AREAWATER\": 2.497000, \"POP_CL\": 6, \"POP2000\": 20971, \"WHITE\": 19630, \"BLACK\": 442, \"AMERI_ES\": 54, \"ASIAN\": 278, \"HAWN_PI\": 1, \"OTHER\": 252, \"MULT_RACE\": 314, \"HISPANIC\": 1836, \"MALES\": 10398, \"FEMALES\": 10573, \"AGE_UNDER5\": 1380, \"AGE_5_17\": 4355, \"AGE_18_21\": 741, \"AGE_22_29\": 1483, \"AGE_30_39\": 3643, \"AGE_40_49\": 3863, \"AGE_50_64\": 3435, \"AGE_65_UP\": 2071, \"MED_AGE\": 37.500000, \"MED_AGE_M\": 37.400000, \"MED_AGE_F\": 37.600000, \"HOUSEHOLDS\": 7646, \"AVE_HH_SZ\": 2.730000, \"HSEHLD_1_M\": 635, \"HSEHLD_1_F\": 615, \"MARHH_CHD\": 2453, \"MARHH_NO_C\": 2596, \"MHH_CHILD\": 151, \"FHH_CHILD\": 429, \"FAMILIES\": 5981, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 8257, \"VACANT\": 611, \"OWNER_OCC\": 6691, \"RENTER_OCC\": 955 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.448798082308429, 28.203875972631856 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Largo\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"39425\", \"CAPITAL\": \"N\", \"AREALAND\": 15.662000, \"AREAWATER\": 0.463000, \"POP_CL\": 7, \"POP2000\": 69371, \"WHITE\": 64314, \"BLACK\": 1869, \"AMERI_ES\": 237, \"ASIAN\": 1171, \"HAWN_PI\": 58, \"OTHER\": 688, \"MULT_RACE\": 1034, \"HISPANIC\": 2902, \"MALES\": 32268, \"FEMALES\": 37103, \"AGE_UNDER5\": 2948, \"AGE_5_17\": 7881, \"AGE_18_21\": 2275, \"AGE_22_29\": 5781, \"AGE_30_39\": 8938, \"AGE_40_49\": 8820, \"AGE_50_64\": 11816, \"AGE_65_UP\": 20912, \"MED_AGE\": 47.500000, \"MED_AGE_M\": 44.000000, \"MED_AGE_F\": 51.000000, \"HOUSEHOLDS\": 34041, \"AVE_HH_SZ\": 1.990000, \"HSEHLD_1_M\": 4942, \"HSEHLD_1_F\": 8155, \"MARHH_CHD\": 3598, \"MARHH_NO_C\": 10637, \"MHH_CHILD\": 532, \"FHH_CHILD\": 1645, \"FAMILIES\": 18380, \"AVE_FAM_SZ\": 2.590000, \"HSE_UNITS\": 40261, \"VACANT\": 6220, \"OWNER_OCC\": 22930, \"RENTER_OCC\": 11111 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.777791050510217, 27.908354976980171 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lauderdale Lakes\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"39525\", \"CAPITAL\": \"N\", \"AREALAND\": 3.590000, \"AREAWATER\": 0.051000, \"POP_CL\": 6, \"POP2000\": 31705, \"WHITE\": 7596, \"BLACK\": 21476, \"AMERI_ES\": 38, \"ASIAN\": 328, \"HAWN_PI\": 19, \"OTHER\": 603, \"MULT_RACE\": 1645, \"HISPANIC\": 1755, \"MALES\": 14202, \"FEMALES\": 17503, \"AGE_UNDER5\": 2398, \"AGE_5_17\": 6383, \"AGE_18_21\": 1613, \"AGE_22_29\": 3114, \"AGE_30_39\": 4430, \"AGE_40_49\": 3963, \"AGE_50_64\": 4143, \"AGE_65_UP\": 5661, \"MED_AGE\": 35.700000, \"MED_AGE_M\": 33.400000, \"MED_AGE_F\": 37.300000, \"HOUSEHOLDS\": 12099, \"AVE_HH_SZ\": 2.590000, \"HSEHLD_1_M\": 1254, \"HSEHLD_1_F\": 2388, \"MARHH_CHD\": 1858, \"MARHH_NO_C\": 2577, \"MHH_CHILD\": 303, \"FHH_CHILD\": 1718, \"FAMILIES\": 7745, \"AVE_FAM_SZ\": 3.250000, \"HSE_UNITS\": 14325, \"VACANT\": 2226, \"OWNER_OCC\": 7529, \"RENTER_OCC\": 4570 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.201318648066021, 26.170011954669985 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lauderhill\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"39550\", \"CAPITAL\": \"N\", \"AREALAND\": 7.296000, \"AREAWATER\": 0.037000, \"POP_CL\": 7, \"POP2000\": 57585, \"WHITE\": 19482, \"BLACK\": 33840, \"AMERI_ES\": 67, \"ASIAN\": 910, \"HAWN_PI\": 35, \"OTHER\": 926, \"MULT_RACE\": 2325, \"HISPANIC\": 3995, \"MALES\": 26382, \"FEMALES\": 31203, \"AGE_UNDER5\": 4307, \"AGE_5_17\": 11017, \"AGE_18_21\": 2776, \"AGE_22_29\": 6415, \"AGE_30_39\": 8919, \"AGE_40_49\": 7975, \"AGE_50_64\": 6880, \"AGE_65_UP\": 9296, \"MED_AGE\": 34.900000, \"MED_AGE_M\": 33.100000, \"MED_AGE_F\": 36.300000, \"HOUSEHOLDS\": 22810, \"AVE_HH_SZ\": 2.490000, \"HSEHLD_1_M\": 2667, \"HSEHLD_1_F\": 4402, \"MARHH_CHD\": 3680, \"MARHH_NO_C\": 4862, \"MHH_CHILD\": 576, \"FHH_CHILD\": 3002, \"FAMILIES\": 14289, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 25751, \"VACANT\": 2941, \"OWNER_OCC\": 13541, \"RENTER_OCC\": 9269 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.232589630325236, 26.165678954695949 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Leesburg\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"39875\", \"CAPITAL\": \"N\", \"AREALAND\": 18.666000, \"AREAWATER\": 5.779000, \"POP_CL\": 6, \"POP2000\": 15956, \"WHITE\": 10627, \"BLACK\": 4646, \"AMERI_ES\": 43, \"ASIAN\": 213, \"HAWN_PI\": 1, \"OTHER\": 201, \"MULT_RACE\": 225, \"HISPANIC\": 657, \"MALES\": 7275, \"FEMALES\": 8681, \"AGE_UNDER5\": 1006, \"AGE_5_17\": 2741, \"AGE_18_21\": 710, \"AGE_22_29\": 1458, \"AGE_30_39\": 1755, \"AGE_40_49\": 1784, \"AGE_50_64\": 2314, \"AGE_65_UP\": 4188, \"MED_AGE\": 41.500000, \"MED_AGE_M\": 38.700000, \"MED_AGE_F\": 44.200000, \"HOUSEHOLDS\": 6775, \"AVE_HH_SZ\": 2.260000, \"HSEHLD_1_M\": 821, \"HSEHLD_1_F\": 1475, \"MARHH_CHD\": 808, \"MARHH_NO_C\": 1875, \"MHH_CHILD\": 133, \"FHH_CHILD\": 718, \"FAMILIES\": 4080, \"AVE_FAM_SZ\": 2.860000, \"HSE_UNITS\": 7742, \"VACANT\": 967, \"OWNER_OCC\": 3973, \"RENTER_OCC\": 2802 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.883349173788361, 28.810686964238705 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lehigh Acres\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"39925\", \"CAPITAL\": \"N\", \"AREALAND\": 94.886000, \"AREAWATER\": 1.094000, \"POP_CL\": 6, \"POP2000\": 33430, \"WHITE\": 28183, \"BLACK\": 2938, \"AMERI_ES\": 96, \"ASIAN\": 280, \"HAWN_PI\": 6, \"OTHER\": 1261, \"MULT_RACE\": 666, \"HISPANIC\": 4466, \"MALES\": 16200, \"FEMALES\": 17230, \"AGE_UNDER5\": 2284, \"AGE_5_17\": 6422, \"AGE_18_21\": 1324, \"AGE_22_29\": 2867, \"AGE_30_39\": 4822, \"AGE_40_49\": 4294, \"AGE_50_64\": 4896, \"AGE_65_UP\": 6521, \"MED_AGE\": 38.000000, \"MED_AGE_M\": 36.300000, \"MED_AGE_F\": 39.700000, \"HOUSEHOLDS\": 12707, \"AVE_HH_SZ\": 2.620000, \"HSEHLD_1_M\": 971, \"HSEHLD_1_F\": 1822, \"MARHH_CHD\": 2972, \"MARHH_NO_C\": 4445, \"MHH_CHILD\": 344, \"FHH_CHILD\": 794, \"FAMILIES\": 9257, \"AVE_FAM_SZ\": 3.030000, \"HSE_UNITS\": 14486, \"VACANT\": 1779, \"OWNER_OCC\": 10641, \"RENTER_OCC\": 2066 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.639224168452088, 26.608402965956522 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Leisure City\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"39950\", \"CAPITAL\": \"N\", \"AREALAND\": 3.413000, \"AREAWATER\": 0.019000, \"POP_CL\": 6, \"POP2000\": 22152, \"WHITE\": 14406, \"BLACK\": 3987, \"AMERI_ES\": 45, \"ASIAN\": 186, \"HAWN_PI\": 7, \"OTHER\": 2529, \"MULT_RACE\": 992, \"HISPANIC\": 14465, \"MALES\": 11158, \"FEMALES\": 10994, \"AGE_UNDER5\": 2205, \"AGE_5_17\": 5815, \"AGE_18_21\": 1412, \"AGE_22_29\": 2755, \"AGE_30_39\": 3480, \"AGE_40_49\": 2578, \"AGE_50_64\": 2511, \"AGE_65_UP\": 1396, \"MED_AGE\": 26.900000, \"MED_AGE_M\": 26.100000, \"MED_AGE_F\": 27.700000, \"HOUSEHOLDS\": 6063, \"AVE_HH_SZ\": 3.650000, \"HSEHLD_1_M\": 418, \"HSEHLD_1_F\": 355, \"MARHH_CHD\": 1932, \"MARHH_NO_C\": 1387, \"MHH_CHILD\": 245, \"FHH_CHILD\": 859, \"FAMILIES\": 5043, \"AVE_FAM_SZ\": 3.940000, \"HSE_UNITS\": 6615, \"VACANT\": 552, \"OWNER_OCC\": 3689, \"RENTER_OCC\": 2374 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.436229493481676, 25.494036955151561 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lighthouse Point\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"40450\", \"CAPITAL\": \"N\", \"AREALAND\": 2.293000, \"AREAWATER\": 0.108000, \"POP_CL\": 6, \"POP2000\": 10767, \"WHITE\": 10449, \"BLACK\": 46, \"AMERI_ES\": 16, \"ASIAN\": 85, \"HAWN_PI\": 1, \"OTHER\": 45, \"MULT_RACE\": 125, \"HISPANIC\": 450, \"MALES\": 5153, \"FEMALES\": 5614, \"AGE_UNDER5\": 509, \"AGE_5_17\": 1237, \"AGE_18_21\": 207, \"AGE_22_29\": 542, \"AGE_30_39\": 1617, \"AGE_40_49\": 1815, \"AGE_50_64\": 2339, \"AGE_65_UP\": 2501, \"MED_AGE\": 46.900000, \"MED_AGE_M\": 46.000000, \"MED_AGE_F\": 47.900000, \"HOUSEHOLDS\": 5165, \"AVE_HH_SZ\": 2.080000, \"HSEHLD_1_M\": 680, \"HSEHLD_1_F\": 1053, \"MARHH_CHD\": 807, \"MARHH_NO_C\": 1810, \"MHH_CHILD\": 74, \"FHH_CHILD\": 126, \"FAMILIES\": 3078, \"AVE_FAM_SZ\": 2.650000, \"HSE_UNITS\": 5871, \"VACANT\": 706, \"OWNER_OCC\": 4329, \"RENTER_OCC\": 836 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.089414721224884, 26.274690954813629 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lockhart\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"41025\", \"CAPITAL\": \"N\", \"AREALAND\": 4.368000, \"AREAWATER\": 0.195000, \"POP_CL\": 6, \"POP2000\": 12944, \"WHITE\": 9552, \"BLACK\": 2081, \"AMERI_ES\": 75, \"ASIAN\": 286, \"HAWN_PI\": 5, \"OTHER\": 545, \"MULT_RACE\": 400, \"HISPANIC\": 2083, \"MALES\": 6419, \"FEMALES\": 6525, \"AGE_UNDER5\": 1025, \"AGE_5_17\": 2752, \"AGE_18_21\": 647, \"AGE_22_29\": 1459, \"AGE_30_39\": 2234, \"AGE_40_49\": 2143, \"AGE_50_64\": 1609, \"AGE_65_UP\": 1075, \"MED_AGE\": 32.700000, \"MED_AGE_M\": 32.000000, \"MED_AGE_F\": 33.600000, \"HOUSEHOLDS\": 4642, \"AVE_HH_SZ\": 2.790000, \"HSEHLD_1_M\": 450, \"HSEHLD_1_F\": 485, \"MARHH_CHD\": 1154, \"MARHH_NO_C\": 1134, \"MHH_CHILD\": 154, \"FHH_CHILD\": 452, \"FAMILIES\": 3305, \"AVE_FAM_SZ\": 3.200000, \"HSE_UNITS\": 4952, \"VACANT\": 310, \"OWNER_OCC\": 3230, \"RENTER_OCC\": 1412 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.43691026934755, 28.625326959371243 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Longwood\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"41250\", \"CAPITAL\": \"N\", \"AREALAND\": 5.320000, \"AREAWATER\": 0.291000, \"POP_CL\": 6, \"POP2000\": 13745, \"WHITE\": 11999, \"BLACK\": 495, \"AMERI_ES\": 36, \"ASIAN\": 340, \"HAWN_PI\": 6, \"OTHER\": 536, \"MULT_RACE\": 333, \"HISPANIC\": 1519, \"MALES\": 6644, \"FEMALES\": 7101, \"AGE_UNDER5\": 847, \"AGE_5_17\": 2610, \"AGE_18_21\": 583, \"AGE_22_29\": 1166, \"AGE_30_39\": 2251, \"AGE_40_49\": 2212, \"AGE_50_64\": 2368, \"AGE_65_UP\": 1708, \"MED_AGE\": 37.700000, \"MED_AGE_M\": 36.300000, \"MED_AGE_F\": 39.100000, \"HOUSEHOLDS\": 5025, \"AVE_HH_SZ\": 2.680000, \"HSEHLD_1_M\": 379, \"HSEHLD_1_F\": 599, \"MARHH_CHD\": 1287, \"MARHH_NO_C\": 1519, \"MHH_CHILD\": 127, \"FHH_CHILD\": 350, \"FAMILIES\": 3680, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 5189, \"VACANT\": 164, \"OWNER_OCC\": 3799, \"RENTER_OCC\": 1226 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.345098297981778, 28.702060958158469 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lutz\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"41775\", \"CAPITAL\": \"N\", \"AREALAND\": 21.470000, \"AREAWATER\": 2.056000, \"POP_CL\": 6, \"POP2000\": 17081, \"WHITE\": 15794, \"BLACK\": 512, \"AMERI_ES\": 52, \"ASIAN\": 245, \"HAWN_PI\": 1, \"OTHER\": 217, \"MULT_RACE\": 260, \"HISPANIC\": 1343, \"MALES\": 8506, \"FEMALES\": 8575, \"AGE_UNDER5\": 1022, \"AGE_5_17\": 3380, \"AGE_18_21\": 722, \"AGE_22_29\": 1361, \"AGE_30_39\": 2688, \"AGE_40_49\": 3411, \"AGE_50_64\": 2925, \"AGE_65_UP\": 1572, \"MED_AGE\": 38.100000, \"MED_AGE_M\": 37.800000, \"MED_AGE_F\": 38.400000, \"HOUSEHOLDS\": 6314, \"AVE_HH_SZ\": 2.680000, \"HSEHLD_1_M\": 567, \"HSEHLD_1_F\": 553, \"MARHH_CHD\": 1897, \"MARHH_NO_C\": 2151, \"MHH_CHILD\": 125, \"FHH_CHILD\": 264, \"FAMILIES\": 4769, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 6596, \"VACANT\": 282, \"OWNER_OCC\": 5409, \"RENTER_OCC\": 905 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.462028080085332, 28.139427972918934 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lynn Haven\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"41825\", \"CAPITAL\": \"N\", \"AREALAND\": 8.150000, \"AREAWATER\": 1.378000, \"POP_CL\": 6, \"POP2000\": 12451, \"WHITE\": 10738, \"BLACK\": 1164, \"AMERI_ES\": 90, \"ASIAN\": 197, \"HAWN_PI\": 15, \"OTHER\": 58, \"MULT_RACE\": 189, \"HISPANIC\": 202, \"MALES\": 6005, \"FEMALES\": 6446, \"AGE_UNDER5\": 809, \"AGE_5_17\": 2446, \"AGE_18_21\": 553, \"AGE_22_29\": 1036, \"AGE_30_39\": 1961, \"AGE_40_49\": 2110, \"AGE_50_64\": 2047, \"AGE_65_UP\": 1489, \"MED_AGE\": 37.400000, \"MED_AGE_M\": 36.600000, \"MED_AGE_F\": 38.000000, \"HOUSEHOLDS\": 4898, \"AVE_HH_SZ\": 2.540000, \"HSEHLD_1_M\": 428, \"HSEHLD_1_F\": 640, \"MARHH_CHD\": 1271, \"MARHH_NO_C\": 1607, \"MHH_CHILD\": 86, \"FHH_CHILD\": 402, \"FAMILIES\": 3647, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 5243, \"VACANT\": 345, \"OWNER_OCC\": 3777, \"RENTER_OCC\": 1121 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.648125997523309, 30.239848995401914 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Maitland\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"42575\", \"CAPITAL\": \"N\", \"AREALAND\": 4.642000, \"AREAWATER\": 1.033000, \"POP_CL\": 6, \"POP2000\": 12019, \"WHITE\": 10243, \"BLACK\": 1169, \"AMERI_ES\": 14, \"ASIAN\": 262, \"HAWN_PI\": 1, \"OTHER\": 140, \"MULT_RACE\": 190, \"HISPANIC\": 717, \"MALES\": 5678, \"FEMALES\": 6341, \"AGE_UNDER5\": 714, \"AGE_5_17\": 2352, \"AGE_18_21\": 355, \"AGE_22_29\": 887, \"AGE_30_39\": 1769, \"AGE_40_49\": 2080, \"AGE_50_64\": 1913, \"AGE_65_UP\": 1949, \"MED_AGE\": 39.700000, \"MED_AGE_M\": 38.200000, \"MED_AGE_F\": 41.000000, \"HOUSEHOLDS\": 4825, \"AVE_HH_SZ\": 2.450000, \"HSEHLD_1_M\": 523, \"HSEHLD_1_F\": 783, \"MARHH_CHD\": 1204, \"MARHH_NO_C\": 1371, \"MHH_CHILD\": 65, \"FHH_CHILD\": 306, \"FAMILIES\": 3240, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 5104, \"VACANT\": 279, \"OWNER_OCC\": 3458, \"RENTER_OCC\": 1367 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.366961288831675, 28.626925958595798 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Marathon\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"43000\", \"CAPITAL\": \"N\", \"AREALAND\": 8.646000, \"AREAWATER\": 0.997000, \"POP_CL\": 6, \"POP2000\": 10255, \"WHITE\": 9341, \"BLACK\": 477, \"AMERI_ES\": 37, \"ASIAN\": 49, \"HAWN_PI\": 4, \"OTHER\": 205, \"MULT_RACE\": 142, \"HISPANIC\": 2095, \"MALES\": 5386, \"FEMALES\": 4869, \"AGE_UNDER5\": 418, \"AGE_5_17\": 1352, \"AGE_18_21\": 366, \"AGE_22_29\": 788, \"AGE_30_39\": 1479, \"AGE_40_49\": 1912, \"AGE_50_64\": 2298, \"AGE_65_UP\": 1642, \"MED_AGE\": 43.800000, \"MED_AGE_M\": 43.900000, \"MED_AGE_F\": 43.600000, \"HOUSEHOLDS\": 4597, \"AVE_HH_SZ\": 2.190000, \"HSEHLD_1_M\": 816, \"HSEHLD_1_F\": 525, \"MARHH_CHD\": 655, \"MARHH_NO_C\": 1550, \"MHH_CHILD\": 93, \"FHH_CHILD\": 209, \"FAMILIES\": 2735, \"AVE_FAM_SZ\": 2.680000, \"HSE_UNITS\": 6791, \"VACANT\": 2194, \"OWNER_OCC\": 2904, \"RENTER_OCC\": 1693 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.040327259211963, 24.726309960849839 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Marco Island\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"43075\", \"CAPITAL\": \"N\", \"AREALAND\": 10.574000, \"AREAWATER\": 6.522000, \"POP_CL\": 6, \"POP2000\": 14879, \"WHITE\": 14594, \"BLACK\": 35, \"AMERI_ES\": 27, \"ASIAN\": 86, \"HAWN_PI\": 1, \"OTHER\": 73, \"MULT_RACE\": 63, \"HISPANIC\": 608, \"MALES\": 7309, \"FEMALES\": 7570, \"AGE_UNDER5\": 375, \"AGE_5_17\": 1251, \"AGE_18_21\": 270, \"AGE_22_29\": 501, \"AGE_30_39\": 1113, \"AGE_40_49\": 1511, \"AGE_50_64\": 4143, \"AGE_65_UP\": 5715, \"MED_AGE\": 60.100000, \"MED_AGE_M\": 60.800000, \"MED_AGE_F\": 59.400000, \"HOUSEHOLDS\": 7134, \"AVE_HH_SZ\": 2.080000, \"HSEHLD_1_M\": 644, \"HSEHLD_1_F\": 971, \"MARHH_CHD\": 676, \"MARHH_NO_C\": 4176, \"MHH_CHILD\": 39, \"FHH_CHILD\": 126, \"FAMILIES\": 5202, \"AVE_FAM_SZ\": 2.380000, \"HSE_UNITS\": 14826, \"VACANT\": 7692, \"OWNER_OCC\": 6217, \"RENTER_OCC\": 917 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.714843142952134, 25.940618967847566 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Margate\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"43125\", \"CAPITAL\": \"N\", \"AREALAND\": 8.808000, \"AREAWATER\": 0.173000, \"POP_CL\": 7, \"POP2000\": 53909, \"WHITE\": 42478, \"BLACK\": 6268, \"AMERI_ES\": 139, \"ASIAN\": 1497, \"HAWN_PI\": 31, \"OTHER\": 1549, \"MULT_RACE\": 1947, \"HISPANIC\": 8238, \"MALES\": 25466, \"FEMALES\": 28443, \"AGE_UNDER5\": 3221, \"AGE_5_17\": 8024, \"AGE_18_21\": 2010, \"AGE_22_29\": 4861, \"AGE_30_39\": 8451, \"AGE_40_49\": 7331, \"AGE_50_64\": 8328, \"AGE_65_UP\": 11683, \"MED_AGE\": 40.400000, \"MED_AGE_M\": 38.300000, \"MED_AGE_F\": 42.800000, \"HOUSEHOLDS\": 22714, \"AVE_HH_SZ\": 2.360000, \"HSEHLD_1_M\": 2355, \"HSEHLD_1_F\": 4641, \"MARHH_CHD\": 4306, \"MARHH_NO_C\": 6844, \"MHH_CHILD\": 381, \"FHH_CHILD\": 1172, \"FAMILIES\": 14331, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 24740, \"VACANT\": 2026, \"OWNER_OCC\": 18191, \"RENTER_OCC\": 4523 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.212343646607664, 26.246258954716012 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Meadow Woods\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"43800\", \"CAPITAL\": \"N\", \"AREALAND\": 11.373000, \"AREAWATER\": 0.036000, \"POP_CL\": 6, \"POP2000\": 11286, \"WHITE\": 7561, \"BLACK\": 1349, \"AMERI_ES\": 62, \"ASIAN\": 273, \"HAWN_PI\": 13, \"OTHER\": 1503, \"MULT_RACE\": 525, \"HISPANIC\": 5964, \"MALES\": 5471, \"FEMALES\": 5815, \"AGE_UNDER5\": 729, \"AGE_5_17\": 2637, \"AGE_18_21\": 613, \"AGE_22_29\": 1169, \"AGE_30_39\": 1900, \"AGE_40_49\": 1802, \"AGE_50_64\": 1528, \"AGE_65_UP\": 908, \"MED_AGE\": 32.800000, \"MED_AGE_M\": 31.200000, \"MED_AGE_F\": 34.300000, \"HOUSEHOLDS\": 3472, \"AVE_HH_SZ\": 3.250000, \"HSEHLD_1_M\": 180, \"HSEHLD_1_F\": 211, \"MARHH_CHD\": 1131, \"MARHH_NO_C\": 984, \"MHH_CHILD\": 94, \"FHH_CHILD\": 331, \"FAMILIES\": 2849, \"AVE_FAM_SZ\": 3.520000, \"HSE_UNITS\": 4441, \"VACANT\": 969, \"OWNER_OCC\": 2735, \"RENTER_OCC\": 737 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.363858280546921, 28.374851959213917 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Melbourne\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"43975\", \"CAPITAL\": \"N\", \"AREALAND\": 30.197000, \"AREAWATER\": 5.292000, \"POP_CL\": 7, \"POP2000\": 71382, \"WHITE\": 60339, \"BLACK\": 6658, \"AMERI_ES\": 245, \"ASIAN\": 1657, \"HAWN_PI\": 47, \"OTHER\": 858, \"MULT_RACE\": 1578, \"HISPANIC\": 3958, \"MALES\": 34643, \"FEMALES\": 36739, \"AGE_UNDER5\": 3833, \"AGE_5_17\": 10923, \"AGE_18_21\": 4028, \"AGE_22_29\": 7005, \"AGE_30_39\": 10191, \"AGE_40_49\": 10309, \"AGE_50_64\": 11013, \"AGE_65_UP\": 14080, \"MED_AGE\": 39.800000, \"MED_AGE_M\": 37.900000, \"MED_AGE_F\": 41.800000, \"HOUSEHOLDS\": 30788, \"AVE_HH_SZ\": 2.220000, \"HSEHLD_1_M\": 4360, \"HSEHLD_1_F\": 5777, \"MARHH_CHD\": 4769, \"MARHH_NO_C\": 8763, \"MHH_CHILD\": 625, \"FHH_CHILD\": 2009, \"FAMILIES\": 18257, \"AVE_FAM_SZ\": 2.820000, \"HSE_UNITS\": 33678, \"VACANT\": 2890, \"OWNER_OCC\": 19111, \"RENTER_OCC\": 11677 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.631925543013026, 28.115022954035698 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Merritt Island\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"44275\", \"CAPITAL\": \"N\", \"AREALAND\": 17.651000, \"AREAWATER\": 29.399000, \"POP_CL\": 6, \"POP2000\": 36090, \"WHITE\": 32560, \"BLACK\": 1918, \"AMERI_ES\": 149, \"ASIAN\": 597, \"HAWN_PI\": 21, \"OTHER\": 246, \"MULT_RACE\": 599, \"HISPANIC\": 1381, \"MALES\": 17613, \"FEMALES\": 18477, \"AGE_UNDER5\": 1771, \"AGE_5_17\": 6094, \"AGE_18_21\": 1413, \"AGE_22_29\": 2230, \"AGE_30_39\": 4893, \"AGE_40_49\": 5857, \"AGE_50_64\": 6690, \"AGE_65_UP\": 7142, \"MED_AGE\": 42.600000, \"MED_AGE_M\": 41.500000, \"MED_AGE_F\": 43.800000, \"HOUSEHOLDS\": 14955, \"AVE_HH_SZ\": 2.360000, \"HSEHLD_1_M\": 1864, \"HSEHLD_1_F\": 2143, \"MARHH_CHD\": 2838, \"MARHH_NO_C\": 5076, \"MHH_CHILD\": 285, \"FHH_CHILD\": 937, \"FAMILIES\": 10054, \"AVE_FAM_SZ\": 2.860000, \"HSE_UNITS\": 15813, \"VACANT\": 858, \"OWNER_OCC\": 11196, \"RENTER_OCC\": 3759 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.684734532312177, 28.357900953741748 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Miami\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"45000\", \"CAPITAL\": \"N\", \"AREALAND\": 35.673000, \"AREAWATER\": 19.593000, \"POP_CL\": 8, \"POP2000\": 362470, \"WHITE\": 241470, \"BLACK\": 80858, \"AMERI_ES\": 810, \"ASIAN\": 2376, \"HAWN_PI\": 130, \"OTHER\": 19644, \"MULT_RACE\": 17182, \"HISPANIC\": 238351, \"MALES\": 180194, \"FEMALES\": 182276, \"AGE_UNDER5\": 21222, \"AGE_5_17\": 57575, \"AGE_18_21\": 17923, \"AGE_22_29\": 40490, \"AGE_30_39\": 57299, \"AGE_40_49\": 49745, \"AGE_50_64\": 56448, \"AGE_65_UP\": 61768, \"MED_AGE\": 37.700000, \"MED_AGE_M\": 36.300000, \"MED_AGE_F\": 39.300000, \"HOUSEHOLDS\": 134198, \"AVE_HH_SZ\": 2.610000, \"HSEHLD_1_M\": 20274, \"HSEHLD_1_F\": 20560, \"MARHH_CHD\": 19741, \"MARHH_NO_C\": 29398, \"MHH_CHILD\": 3179, \"FHH_CHILD\": 12357, \"FAMILIES\": 83281, \"AVE_FAM_SZ\": 3.250000, \"HSE_UNITS\": 148388, \"VACANT\": 14190, \"OWNER_OCC\": 46836, \"RENTER_OCC\": 87362 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.224145612666604, 25.787675954437969 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Miami Beach\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"45025\", \"CAPITAL\": \"N\", \"AREALAND\": 7.033000, \"AREAWATER\": 11.675000, \"POP_CL\": 7, \"POP2000\": 87933, \"WHITE\": 76276, \"BLACK\": 3548, \"AMERI_ES\": 206, \"ASIAN\": 1202, \"HAWN_PI\": 39, \"OTHER\": 3557, \"MULT_RACE\": 3105, \"HISPANIC\": 47000, \"MALES\": 45048, \"FEMALES\": 42885, \"AGE_UNDER5\": 3452, \"AGE_5_17\": 8363, \"AGE_18_21\": 3131, \"AGE_22_29\": 12692, \"AGE_30_39\": 17826, \"AGE_40_49\": 12625, \"AGE_50_64\": 12917, \"AGE_65_UP\": 16927, \"MED_AGE\": 39.000000, \"MED_AGE_M\": 37.300000, \"MED_AGE_F\": 41.600000, \"HOUSEHOLDS\": 46194, \"AVE_HH_SZ\": 1.870000, \"HSEHLD_1_M\": 11933, \"HSEHLD_1_F\": 10571, \"MARHH_CHD\": 4107, \"MARHH_NO_C\": 8547, \"MHH_CHILD\": 527, \"FHH_CHILD\": 1818, \"FAMILIES\": 18342, \"AVE_FAM_SZ\": 2.760000, \"HSE_UNITS\": 59723, \"VACANT\": 13529, \"OWNER_OCC\": 16895, \"RENTER_OCC\": 29299 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.134065664360392, 25.813024954338182 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Miami Lakes\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"45100\", \"CAPITAL\": \"N\", \"AREALAND\": 5.957000, \"AREAWATER\": 0.431000, \"POP_CL\": 6, \"POP2000\": 22676, \"WHITE\": 20239, \"BLACK\": 635, \"AMERI_ES\": 32, \"ASIAN\": 500, \"HAWN_PI\": 6, \"OTHER\": 649, \"MULT_RACE\": 615, \"HISPANIC\": 15083, \"MALES\": 10905, \"FEMALES\": 11771, \"AGE_UNDER5\": 1516, \"AGE_5_17\": 4183, \"AGE_18_21\": 879, \"AGE_22_29\": 2448, \"AGE_30_39\": 4287, \"AGE_40_49\": 3516, \"AGE_50_64\": 3552, \"AGE_65_UP\": 2295, \"MED_AGE\": 35.800000, \"MED_AGE_M\": 35.200000, \"MED_AGE_F\": 36.300000, \"HOUSEHOLDS\": 8248, \"AVE_HH_SZ\": 2.750000, \"HSEHLD_1_M\": 836, \"HSEHLD_1_F\": 883, \"MARHH_CHD\": 2409, \"MARHH_NO_C\": 2428, \"MHH_CHILD\": 130, \"FHH_CHILD\": 570, \"FAMILIES\": 6113, \"AVE_FAM_SZ\": 3.210000, \"HSE_UNITS\": 9000, \"VACANT\": 752, \"OWNER_OCC\": 6033, \"RENTER_OCC\": 2215 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.325067566956818, 25.911671954798351 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Miami Shores\", \"CLASS\": \"village\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"45175\", \"CAPITAL\": \"N\", \"AREALAND\": 2.455000, \"AREAWATER\": 1.274000, \"POP_CL\": 6, \"POP2000\": 10380, \"WHITE\": 6753, \"BLACK\": 2541, \"AMERI_ES\": 11, \"ASIAN\": 254, \"HAWN_PI\": 8, \"OTHER\": 289, \"MULT_RACE\": 524, \"HISPANIC\": 2257, \"MALES\": 5061, \"FEMALES\": 5319, \"AGE_UNDER5\": 582, \"AGE_5_17\": 1750, \"AGE_18_21\": 912, \"AGE_22_29\": 770, \"AGE_30_39\": 1656, \"AGE_40_49\": 1780, \"AGE_50_64\": 1622, \"AGE_65_UP\": 1308, \"MED_AGE\": 37.700000, \"MED_AGE_M\": 37.300000, \"MED_AGE_F\": 38.100000, \"HOUSEHOLDS\": 3631, \"AVE_HH_SZ\": 2.670000, \"HSEHLD_1_M\": 347, \"HSEHLD_1_F\": 501, \"MARHH_CHD\": 916, \"MARHH_NO_C\": 937, \"MHH_CHILD\": 48, \"FHH_CHILD\": 203, \"FAMILIES\": 2434, \"AVE_FAM_SZ\": 3.240000, \"HSE_UNITS\": 3836, \"VACANT\": 205, \"OWNER_OCC\": 3246, \"RENTER_OCC\": 385 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.18845163671142, 25.865239954439755 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Miami Springs\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"45200\", \"CAPITAL\": \"N\", \"AREALAND\": 2.938000, \"AREAWATER\": 0.041000, \"POP_CL\": 6, \"POP2000\": 13712, \"WHITE\": 12452, \"BLACK\": 280, \"AMERI_ES\": 30, \"ASIAN\": 163, \"HAWN_PI\": 5, \"OTHER\": 417, \"MULT_RACE\": 365, \"HISPANIC\": 8173, \"MALES\": 6589, \"FEMALES\": 7123, \"AGE_UNDER5\": 741, \"AGE_5_17\": 2393, \"AGE_18_21\": 560, \"AGE_22_29\": 1176, \"AGE_30_39\": 2281, \"AGE_40_49\": 2341, \"AGE_50_64\": 2092, \"AGE_65_UP\": 2128, \"MED_AGE\": 38.900000, \"MED_AGE_M\": 37.900000, \"MED_AGE_F\": 39.900000, \"HOUSEHOLDS\": 5090, \"AVE_HH_SZ\": 2.640000, \"HSEHLD_1_M\": 602, \"HSEHLD_1_F\": 661, \"MARHH_CHD\": 1292, \"MARHH_NO_C\": 1353, \"MHH_CHILD\": 101, \"FHH_CHILD\": 315, \"FAMILIES\": 3517, \"AVE_FAM_SZ\": 3.160000, \"HSE_UNITS\": 5286, \"VACANT\": 196, \"OWNER_OCC\": 3271, \"RENTER_OCC\": 1819 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.291071579273279, 25.819724954640108 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Middleburg\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"45350\", \"CAPITAL\": \"N\", \"AREALAND\": 18.284000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10338, \"WHITE\": 9632, \"BLACK\": 334, \"AMERI_ES\": 74, \"ASIAN\": 65, \"HAWN_PI\": 5, \"OTHER\": 66, \"MULT_RACE\": 162, \"HISPANIC\": 266, \"MALES\": 5172, \"FEMALES\": 5166, \"AGE_UNDER5\": 738, \"AGE_5_17\": 2452, \"AGE_18_21\": 521, \"AGE_22_29\": 889, \"AGE_30_39\": 1792, \"AGE_40_49\": 1754, \"AGE_50_64\": 1514, \"AGE_65_UP\": 678, \"MED_AGE\": 33.900000, \"MED_AGE_M\": 33.500000, \"MED_AGE_F\": 34.300000, \"HOUSEHOLDS\": 3485, \"AVE_HH_SZ\": 2.970000, \"HSEHLD_1_M\": 249, \"HSEHLD_1_F\": 224, \"MARHH_CHD\": 1164, \"MARHH_NO_C\": 1142, \"MHH_CHILD\": 133, \"FHH_CHILD\": 239, \"FAMILIES\": 2845, \"AVE_FAM_SZ\": 3.230000, \"HSE_UNITS\": 3653, \"VACANT\": 168, \"OWNER_OCC\": 3078, \"RENTER_OCC\": 407 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.902013203286714, 30.050782960956813 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Miramar\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"45975\", \"CAPITAL\": \"N\", \"AREALAND\": 29.499000, \"AREAWATER\": 1.501000, \"POP_CL\": 7, \"POP2000\": 72739, \"WHITE\": 31704, \"BLACK\": 31498, \"AMERI_ES\": 118, \"ASIAN\": 2202, \"HAWN_PI\": 72, \"OTHER\": 3431, \"MULT_RACE\": 3714, \"HISPANIC\": 21374, \"MALES\": 34610, \"FEMALES\": 38129, \"AGE_UNDER5\": 6332, \"AGE_5_17\": 16253, \"AGE_18_21\": 3672, \"AGE_22_29\": 7821, \"AGE_30_39\": 14159, \"AGE_40_49\": 11273, \"AGE_50_64\": 8628, \"AGE_65_UP\": 4601, \"MED_AGE\": 31.800000, \"MED_AGE_M\": 30.600000, \"MED_AGE_F\": 32.800000, \"HOUSEHOLDS\": 23058, \"AVE_HH_SZ\": 3.150000, \"HSEHLD_1_M\": 1525, \"HSEHLD_1_F\": 1774, \"MARHH_CHD\": 7727, \"MARHH_NO_C\": 5195, \"MHH_CHILD\": 694, \"FHH_CHILD\": 2702, \"FAMILIES\": 18663, \"AVE_FAM_SZ\": 3.480000, \"HSE_UNITS\": 25905, \"VACANT\": 2847, \"OWNER_OCC\": 18461, \"RENTER_OCC\": 4597 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.282489592535654, 25.978811954700543 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Myrtle Grove\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"47550\", \"CAPITAL\": \"N\", \"AREALAND\": 6.604000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 17211, \"WHITE\": 12950, \"BLACK\": 2322, \"AMERI_ES\": 153, \"ASIAN\": 862, \"HAWN_PI\": 51, \"OTHER\": 276, \"MULT_RACE\": 597, \"HISPANIC\": 740, \"MALES\": 8792, \"FEMALES\": 8419, \"AGE_UNDER5\": 1080, \"AGE_5_17\": 2749, \"AGE_18_21\": 1769, \"AGE_22_29\": 2416, \"AGE_30_39\": 2507, \"AGE_40_49\": 2017, \"AGE_50_64\": 2380, \"AGE_65_UP\": 2293, \"MED_AGE\": 32.300000, \"MED_AGE_M\": 30.200000, \"MED_AGE_F\": 35.000000, \"HOUSEHOLDS\": 6196, \"AVE_HH_SZ\": 2.460000, \"HSEHLD_1_M\": 739, \"HSEHLD_1_F\": 919, \"MARHH_CHD\": 1208, \"MARHH_NO_C\": 1844, \"MHH_CHILD\": 146, \"FHH_CHILD\": 523, \"FAMILIES\": 4126, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 6811, \"VACANT\": 615, \"OWNER_OCC\": 3711, \"RENTER_OCC\": 2485 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.302491998870664, 30.419996998968237 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Naples\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"47625\", \"CAPITAL\": \"N\", \"AREALAND\": 12.025000, \"AREAWATER\": 2.379000, \"POP_CL\": 6, \"POP2000\": 20976, \"WHITE\": 19402, \"BLACK\": 975, \"AMERI_ES\": 26, \"ASIAN\": 70, \"HAWN_PI\": 5, \"OTHER\": 63, \"MULT_RACE\": 435, \"HISPANIC\": 467, \"MALES\": 9698, \"FEMALES\": 11278, \"AGE_UNDER5\": 550, \"AGE_5_17\": 1739, \"AGE_18_21\": 290, \"AGE_22_29\": 647, \"AGE_30_39\": 1556, \"AGE_40_49\": 2285, \"AGE_50_64\": 5045, \"AGE_65_UP\": 8864, \"MED_AGE\": 60.700000, \"MED_AGE_M\": 60.000000, \"MED_AGE_F\": 61.200000, \"HOUSEHOLDS\": 10803, \"AVE_HH_SZ\": 1.920000, \"HSEHLD_1_M\": 1155, \"HSEHLD_1_F\": 2514, \"MARHH_CHD\": 821, \"MARHH_NO_C\": 4987, \"MHH_CHILD\": 89, \"FHH_CHILD\": 263, \"FAMILIES\": 6570, \"AVE_FAM_SZ\": 2.380000, \"HSE_UNITS\": 16956, \"VACANT\": 6153, \"OWNER_OCC\": 8607, \"RENTER_OCC\": 2196 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.798510133327497, 26.152940968552006 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"New Port Richey\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"48500\", \"CAPITAL\": \"N\", \"AREALAND\": 4.510000, \"AREAWATER\": 0.069000, \"POP_CL\": 6, \"POP2000\": 16117, \"WHITE\": 15165, \"BLACK\": 161, \"AMERI_ES\": 86, \"ASIAN\": 152, \"HAWN_PI\": 14, \"OTHER\": 235, \"MULT_RACE\": 304, \"HISPANIC\": 846, \"MALES\": 7553, \"FEMALES\": 8564, \"AGE_UNDER5\": 880, \"AGE_5_17\": 2194, \"AGE_18_21\": 680, \"AGE_22_29\": 1429, \"AGE_30_39\": 1954, \"AGE_40_49\": 2013, \"AGE_50_64\": 2403, \"AGE_65_UP\": 4564, \"MED_AGE\": 44.200000, \"MED_AGE_M\": 40.500000, \"MED_AGE_F\": 48.500000, \"HOUSEHOLDS\": 7231, \"AVE_HH_SZ\": 2.110000, \"HSEHLD_1_M\": 994, \"HSEHLD_1_F\": 1712, \"MARHH_CHD\": 898, \"MARHH_NO_C\": 1923, \"MHH_CHILD\": 147, \"FHH_CHILD\": 519, \"FAMILIES\": 3964, \"AVE_FAM_SZ\": 2.760000, \"HSE_UNITS\": 8428, \"VACANT\": 1197, \"OWNER_OCC\": 4677, \"RENTER_OCC\": 2554 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.717685058494112, 28.248917975690162 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"New Smyrna Beach\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"48625\", \"CAPITAL\": \"N\", \"AREALAND\": 27.686000, \"AREAWATER\": 3.090000, \"POP_CL\": 6, \"POP2000\": 20048, \"WHITE\": 18358, \"BLACK\": 1257, \"AMERI_ES\": 67, \"ASIAN\": 101, \"HAWN_PI\": 7, \"OTHER\": 62, \"MULT_RACE\": 196, \"HISPANIC\": 301, \"MALES\": 9456, \"FEMALES\": 10592, \"AGE_UNDER5\": 627, \"AGE_5_17\": 2157, \"AGE_18_21\": 621, \"AGE_22_29\": 1144, \"AGE_30_39\": 1904, \"AGE_40_49\": 2575, \"AGE_50_64\": 4020, \"AGE_65_UP\": 7000, \"MED_AGE\": 53.500000, \"MED_AGE_M\": 51.700000, \"MED_AGE_F\": 55.500000, \"HOUSEHOLDS\": 9839, \"AVE_HH_SZ\": 2.020000, \"HSEHLD_1_M\": 1287, \"HSEHLD_1_F\": 2076, \"MARHH_CHD\": 889, \"MARHH_NO_C\": 3857, \"MHH_CHILD\": 119, \"FHH_CHILD\": 419, \"FAMILIES\": 5841, \"AVE_FAM_SZ\": 2.520000, \"HSE_UNITS\": 13618, \"VACANT\": 3779, \"OWNER_OCC\": 7336, \"RENTER_OCC\": 2503 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.925307462632219, 29.030562953394817 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Niceville\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"48750\", \"CAPITAL\": \"N\", \"AREALAND\": 10.922000, \"AREAWATER\": 0.407000, \"POP_CL\": 6, \"POP2000\": 11684, \"WHITE\": 10194, \"BLACK\": 535, \"AMERI_ES\": 86, \"ASIAN\": 374, \"HAWN_PI\": 13, \"OTHER\": 133, \"MULT_RACE\": 349, \"HISPANIC\": 434, \"MALES\": 5763, \"FEMALES\": 5921, \"AGE_UNDER5\": 625, \"AGE_5_17\": 2067, \"AGE_18_21\": 700, \"AGE_22_29\": 988, \"AGE_30_39\": 1603, \"AGE_40_49\": 1964, \"AGE_50_64\": 2224, \"AGE_65_UP\": 1513, \"MED_AGE\": 39.400000, \"MED_AGE_M\": 38.300000, \"MED_AGE_F\": 40.400000, \"HOUSEHOLDS\": 4637, \"AVE_HH_SZ\": 2.490000, \"HSEHLD_1_M\": 438, \"HSEHLD_1_F\": 573, \"MARHH_CHD\": 1053, \"MARHH_NO_C\": 1696, \"MHH_CHILD\": 103, \"FHH_CHILD\": 303, \"FAMILIES\": 3384, \"AVE_FAM_SZ\": 2.890000, \"HSE_UNITS\": 4907, \"VACANT\": 270, \"OWNER_OCC\": 3311, \"RENTER_OCC\": 1326 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.471790998000415, 30.516196997653569 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Norland\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"49000\", \"CAPITAL\": \"N\", \"AREALAND\": 3.610000, \"AREAWATER\": 0.040000, \"POP_CL\": 6, \"POP2000\": 22995, \"WHITE\": 2989, \"BLACK\": 18285, \"AMERI_ES\": 34, \"ASIAN\": 248, \"HAWN_PI\": 1, \"OTHER\": 502, \"MULT_RACE\": 936, \"HISPANIC\": 2285, \"MALES\": 10574, \"FEMALES\": 12421, \"AGE_UNDER5\": 1716, \"AGE_5_17\": 5673, \"AGE_18_21\": 1434, \"AGE_22_29\": 2551, \"AGE_30_39\": 3126, \"AGE_40_49\": 3354, \"AGE_50_64\": 3003, \"AGE_65_UP\": 2138, \"MED_AGE\": 30.400000, \"MED_AGE_M\": 28.300000, \"MED_AGE_F\": 32.400000, \"HOUSEHOLDS\": 6966, \"AVE_HH_SZ\": 3.240000, \"HSEHLD_1_M\": 604, \"HSEHLD_1_F\": 768, \"MARHH_CHD\": 1577, \"MARHH_NO_C\": 1253, \"MHH_CHILD\": 284, \"FHH_CHILD\": 1228, \"FAMILIES\": 5315, \"AVE_FAM_SZ\": 3.680000, \"HSE_UNITS\": 7399, \"VACANT\": 433, \"OWNER_OCC\": 4580, \"RENTER_OCC\": 2386 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.210939629125349, 25.947069954536129 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"North Fort Myers\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"49350\", \"CAPITAL\": \"N\", \"AREALAND\": 52.620000, \"AREAWATER\": 1.967000, \"POP_CL\": 6, \"POP2000\": 40214, \"WHITE\": 38804, \"BLACK\": 375, \"AMERI_ES\": 136, \"ASIAN\": 194, \"HAWN_PI\": 22, \"OTHER\": 324, \"MULT_RACE\": 359, \"HISPANIC\": 1166, \"MALES\": 19136, \"FEMALES\": 21078, \"AGE_UNDER5\": 1325, \"AGE_5_17\": 3875, \"AGE_18_21\": 920, \"AGE_22_29\": 1733, \"AGE_30_39\": 3385, \"AGE_40_49\": 4128, \"AGE_50_64\": 7748, \"AGE_65_UP\": 17100, \"MED_AGE\": 60.200000, \"MED_AGE_M\": 58.700000, \"MED_AGE_F\": 61.300000, \"HOUSEHOLDS\": 19654, \"AVE_HH_SZ\": 2.030000, \"HSEHLD_1_M\": 2221, \"HSEHLD_1_F\": 3775, \"MARHH_CHD\": 1687, \"MARHH_NO_C\": 9186, \"MHH_CHILD\": 241, \"FHH_CHILD\": 595, \"FAMILIES\": 12541, \"AVE_FAM_SZ\": 2.470000, \"HSE_UNITS\": 25284, \"VACANT\": 5630, \"OWNER_OCC\": 17078, \"RENTER_OCC\": 2576 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.884360129555276, 26.702917968715813 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"North Lauderdale\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"49425\", \"CAPITAL\": \"N\", \"AREALAND\": 3.878000, \"AREAWATER\": 0.033000, \"POP_CL\": 6, \"POP2000\": 32264, \"WHITE\": 16137, \"BLACK\": 11343, \"AMERI_ES\": 94, \"ASIAN\": 1006, \"HAWN_PI\": 21, \"OTHER\": 1893, \"MULT_RACE\": 1770, \"HISPANIC\": 6816, \"MALES\": 15631, \"FEMALES\": 16633, \"AGE_UNDER5\": 2587, \"AGE_5_17\": 7047, \"AGE_18_21\": 1939, \"AGE_22_29\": 4270, \"AGE_30_39\": 5926, \"AGE_40_49\": 4826, \"AGE_50_64\": 3443, \"AGE_65_UP\": 2226, \"MED_AGE\": 30.500000, \"MED_AGE_M\": 29.200000, \"MED_AGE_F\": 31.700000, \"HOUSEHOLDS\": 10799, \"AVE_HH_SZ\": 2.990000, \"HSEHLD_1_M\": 913, \"HSEHLD_1_F\": 1206, \"MARHH_CHD\": 2831, \"MARHH_NO_C\": 2223, \"MHH_CHILD\": 351, \"FHH_CHILD\": 1392, \"FAMILIES\": 7815, \"AVE_FAM_SZ\": 3.430000, \"HSE_UNITS\": 11444, \"VACANT\": 645, \"OWNER_OCC\": 6875, \"RENTER_OCC\": 3924 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.224491637888363, 26.215716954710867 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"North Miami\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"49450\", \"CAPITAL\": \"N\", \"AREALAND\": 8.458000, \"AREAWATER\": 1.531000, \"POP_CL\": 7, \"POP2000\": 59880, \"WHITE\": 20842, \"BLACK\": 32867, \"AMERI_ES\": 191, \"ASIAN\": 1152, \"HAWN_PI\": 28, \"OTHER\": 1893, \"MULT_RACE\": 2907, \"HISPANIC\": 13869, \"MALES\": 28799, \"FEMALES\": 31081, \"AGE_UNDER5\": 4827, \"AGE_5_17\": 11988, \"AGE_18_21\": 3914, \"AGE_22_29\": 7611, \"AGE_30_39\": 9484, \"AGE_40_49\": 9013, \"AGE_50_64\": 7533, \"AGE_65_UP\": 5510, \"MED_AGE\": 31.800000, \"MED_AGE_M\": 30.900000, \"MED_AGE_F\": 32.500000, \"HOUSEHOLDS\": 20541, \"AVE_HH_SZ\": 2.850000, \"HSEHLD_1_M\": 2704, \"HSEHLD_1_F\": 2823, \"MARHH_CHD\": 4446, \"MARHH_NO_C\": 3566, \"MHH_CHILD\": 699, \"FHH_CHILD\": 2584, \"FAMILIES\": 13587, \"AVE_FAM_SZ\": 3.510000, \"HSE_UNITS\": 22281, \"VACANT\": 1740, \"OWNER_OCC\": 10367, \"RENTER_OCC\": 10174 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.185747639997075, 25.895021954461754 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"North Miami Beach\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"49475\", \"CAPITAL\": \"N\", \"AREALAND\": 4.955000, \"AREAWATER\": 0.335000, \"POP_CL\": 6, \"POP2000\": 40786, \"WHITE\": 19040, \"BLACK\": 15895, \"AMERI_ES\": 119, \"ASIAN\": 1646, \"HAWN_PI\": 27, \"OTHER\": 1882, \"MULT_RACE\": 2177, \"HISPANIC\": 12245, \"MALES\": 19499, \"FEMALES\": 21287, \"AGE_UNDER5\": 2876, \"AGE_5_17\": 8253, \"AGE_18_21\": 2237, \"AGE_22_29\": 4418, \"AGE_30_39\": 6291, \"AGE_40_49\": 6396, \"AGE_50_64\": 5704, \"AGE_65_UP\": 4611, \"MED_AGE\": 34.500000, \"MED_AGE_M\": 32.800000, \"MED_AGE_F\": 35.900000, \"HOUSEHOLDS\": 13987, \"AVE_HH_SZ\": 2.890000, \"HSEHLD_1_M\": 1542, \"HSEHLD_1_F\": 1800, \"MARHH_CHD\": 3265, \"MARHH_NO_C\": 2937, \"MHH_CHILD\": 395, \"FHH_CHILD\": 1598, \"FAMILIES\": 9803, \"AVE_FAM_SZ\": 3.440000, \"HSE_UNITS\": 15350, \"VACANT\": 1363, \"OWNER_OCC\": 8639, \"RENTER_OCC\": 5348 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.169780651113101, 25.930170954476012 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"North Palm Beach\", \"CLASS\": \"village\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"49600\", \"CAPITAL\": \"N\", \"AREALAND\": 3.561000, \"AREAWATER\": 2.243000, \"POP_CL\": 6, \"POP2000\": 12064, \"WHITE\": 11608, \"BLACK\": 112, \"AMERI_ES\": 11, \"ASIAN\": 147, \"HAWN_PI\": 3, \"OTHER\": 60, \"MULT_RACE\": 123, \"HISPANIC\": 426, \"MALES\": 5867, \"FEMALES\": 6197, \"AGE_UNDER5\": 426, \"AGE_5_17\": 1299, \"AGE_18_21\": 269, \"AGE_22_29\": 675, \"AGE_30_39\": 1544, \"AGE_40_49\": 1758, \"AGE_50_64\": 2379, \"AGE_65_UP\": 3714, \"MED_AGE\": 50.400000, \"MED_AGE_M\": 47.900000, \"MED_AGE_F\": 52.500000, \"HOUSEHOLDS\": 6196, \"AVE_HH_SZ\": 1.950000, \"HSEHLD_1_M\": 1009, \"HSEHLD_1_F\": 1424, \"MARHH_CHD\": 710, \"MARHH_NO_C\": 2101, \"MHH_CHILD\": 59, \"FHH_CHILD\": 165, \"FAMILIES\": 3327, \"AVE_FAM_SZ\": 2.580000, \"HSE_UNITS\": 7325, \"VACANT\": 1129, \"OWNER_OCC\": 4827, \"RENTER_OCC\": 1369 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.06371477761634, 26.818238955234918 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"North Port\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"49675\", \"CAPITAL\": \"N\", \"AREALAND\": 74.772000, \"AREAWATER\": 0.766000, \"POP_CL\": 6, \"POP2000\": 22797, \"WHITE\": 21127, \"BLACK\": 954, \"AMERI_ES\": 53, \"ASIAN\": 115, \"HAWN_PI\": 3, \"OTHER\": 163, \"MULT_RACE\": 382, \"HISPANIC\": 739, \"MALES\": 10895, \"FEMALES\": 11902, \"AGE_UNDER5\": 1404, \"AGE_5_17\": 3913, \"AGE_18_21\": 688, \"AGE_22_29\": 1752, \"AGE_30_39\": 3369, \"AGE_40_49\": 2769, \"AGE_50_64\": 3565, \"AGE_65_UP\": 5337, \"MED_AGE\": 40.800000, \"MED_AGE_M\": 39.200000, \"MED_AGE_F\": 42.500000, \"HOUSEHOLDS\": 9111, \"AVE_HH_SZ\": 2.480000, \"HSEHLD_1_M\": 704, \"HSEHLD_1_F\": 1271, \"MARHH_CHD\": 1993, \"MARHH_NO_C\": 3530, \"MHH_CHILD\": 171, \"FHH_CHILD\": 458, \"FAMILIES\": 6632, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 10302, \"VACANT\": 1191, \"OWNER_OCC\": 7999, \"RENTER_OCC\": 1112 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.172024096933626, 27.066003971511531 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Oakland Park\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"50575\", \"CAPITAL\": \"N\", \"AREALAND\": 6.301000, \"AREAWATER\": 0.604000, \"POP_CL\": 6, \"POP2000\": 30966, \"WHITE\": 20432, \"BLACK\": 7013, \"AMERI_ES\": 70, \"ASIAN\": 600, \"HAWN_PI\": 41, \"OTHER\": 1379, \"MULT_RACE\": 1431, \"HISPANIC\": 5556, \"MALES\": 16156, \"FEMALES\": 14810, \"AGE_UNDER5\": 2076, \"AGE_5_17\": 4381, \"AGE_18_21\": 1469, \"AGE_22_29\": 4011, \"AGE_30_39\": 6313, \"AGE_40_49\": 5330, \"AGE_50_64\": 4240, \"AGE_65_UP\": 3146, \"MED_AGE\": 35.800000, \"MED_AGE_M\": 35.700000, \"MED_AGE_F\": 35.800000, \"HOUSEHOLDS\": 13502, \"AVE_HH_SZ\": 2.260000, \"HSEHLD_1_M\": 2594, \"HSEHLD_1_F\": 2143, \"MARHH_CHD\": 1909, \"MARHH_NO_C\": 2447, \"MHH_CHILD\": 305, \"FHH_CHILD\": 1093, \"FAMILIES\": 6935, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 14509, \"VACANT\": 1007, \"OWNER_OCC\": 6849, \"RENTER_OCC\": 6653 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.144509681287886, 26.176361954670149 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Oak Ridge\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"50638\", \"CAPITAL\": \"N\", \"AREALAND\": 4.161000, \"AREAWATER\": 0.153000, \"POP_CL\": 6, \"POP2000\": 22349, \"WHITE\": 9628, \"BLACK\": 6357, \"AMERI_ES\": 91, \"ASIAN\": 1267, \"HAWN_PI\": 64, \"OTHER\": 3111, \"MULT_RACE\": 1831, \"HISPANIC\": 9257, \"MALES\": 11277, \"FEMALES\": 11072, \"AGE_UNDER5\": 1951, \"AGE_5_17\": 4665, \"AGE_18_21\": 1562, \"AGE_22_29\": 3483, \"AGE_30_39\": 3970, \"AGE_40_49\": 2997, \"AGE_50_64\": 2537, \"AGE_65_UP\": 1184, \"MED_AGE\": 28.900000, \"MED_AGE_M\": 28.700000, \"MED_AGE_F\": 29.100000, \"HOUSEHOLDS\": 7389, \"AVE_HH_SZ\": 3.020000, \"HSEHLD_1_M\": 780, \"HSEHLD_1_F\": 551, \"MARHH_CHD\": 1736, \"MARHH_NO_C\": 1444, \"MHH_CHILD\": 292, \"FHH_CHILD\": 1037, \"FAMILIES\": 5379, \"AVE_FAM_SZ\": 3.400000, \"HSE_UNITS\": 7791, \"VACANT\": 402, \"OWNER_OCC\": 2789, \"RENTER_OCC\": 4600 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.420738268463609, 28.474595959583763 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ocala\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"50750\", \"CAPITAL\": \"N\", \"AREALAND\": 38.633000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 45943, \"WHITE\": 33474, \"BLACK\": 10174, \"AMERI_ES\": 167, \"ASIAN\": 559, \"HAWN_PI\": 9, \"OTHER\": 831, \"MULT_RACE\": 729, \"HISPANIC\": 2636, \"MALES\": 21726, \"FEMALES\": 24217, \"AGE_UNDER5\": 2718, \"AGE_5_17\": 7928, \"AGE_18_21\": 2605, \"AGE_22_29\": 4539, \"AGE_30_39\": 5863, \"AGE_40_49\": 6110, \"AGE_50_64\": 6813, \"AGE_65_UP\": 9367, \"MED_AGE\": 39.000000, \"MED_AGE_M\": 36.400000, \"MED_AGE_F\": 41.400000, \"HOUSEHOLDS\": 18646, \"AVE_HH_SZ\": 2.290000, \"HSEHLD_1_M\": 2291, \"HSEHLD_1_F\": 3866, \"MARHH_CHD\": 2763, \"MARHH_NO_C\": 4863, \"MHH_CHILD\": 363, \"FHH_CHILD\": 1867, \"FAMILIES\": 11282, \"AVE_FAM_SZ\": 2.910000, \"HSE_UNITS\": 20501, \"VACANT\": 1855, \"OWNER_OCC\": 10673, \"RENTER_OCC\": 7973 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.130613140051537, 29.187703966416489 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ocoee\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"51075\", \"CAPITAL\": \"N\", \"AREALAND\": 13.234000, \"AREAWATER\": 0.819000, \"POP_CL\": 6, \"POP2000\": 24391, \"WHITE\": 19871, \"BLACK\": 1607, \"AMERI_ES\": 86, \"ASIAN\": 714, \"HAWN_PI\": 15, \"OTHER\": 1517, \"MULT_RACE\": 581, \"HISPANIC\": 3707, \"MALES\": 12032, \"FEMALES\": 12359, \"AGE_UNDER5\": 2045, \"AGE_5_17\": 5088, \"AGE_18_21\": 1170, \"AGE_22_29\": 2513, \"AGE_30_39\": 4877, \"AGE_40_49\": 3956, \"AGE_50_64\": 2964, \"AGE_65_UP\": 1778, \"MED_AGE\": 33.100000, \"MED_AGE_M\": 32.100000, \"MED_AGE_F\": 34.000000, \"HOUSEHOLDS\": 8072, \"AVE_HH_SZ\": 2.990000, \"HSEHLD_1_M\": 423, \"HSEHLD_1_F\": 645, \"MARHH_CHD\": 2930, \"MARHH_NO_C\": 2392, \"MHH_CHILD\": 194, \"FHH_CHILD\": 498, \"FAMILIES\": 6554, \"AVE_FAM_SZ\": 3.280000, \"HSE_UNITS\": 8405, \"VACANT\": 333, \"OWNER_OCC\": 6777, \"RENTER_OCC\": 1295 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.530596243402428, 28.574049960573731 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ojus\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"51125\", \"CAPITAL\": \"N\", \"AREALAND\": 2.786000, \"AREAWATER\": 0.491000, \"POP_CL\": 6, \"POP2000\": 16642, \"WHITE\": 14161, \"BLACK\": 1174, \"AMERI_ES\": 22, \"ASIAN\": 290, \"HAWN_PI\": 7, \"OTHER\": 512, \"MULT_RACE\": 476, \"HISPANIC\": 5093, \"MALES\": 7757, \"FEMALES\": 8885, \"AGE_UNDER5\": 913, \"AGE_5_17\": 2666, \"AGE_18_21\": 612, \"AGE_22_29\": 1267, \"AGE_30_39\": 2339, \"AGE_40_49\": 2601, \"AGE_50_64\": 2992, \"AGE_65_UP\": 3252, \"MED_AGE\": 42.000000, \"MED_AGE_M\": 40.100000, \"MED_AGE_F\": 43.500000, \"HOUSEHOLDS\": 7089, \"AVE_HH_SZ\": 2.330000, \"HSEHLD_1_M\": 884, \"HSEHLD_1_F\": 1460, \"MARHH_CHD\": 1447, \"MARHH_NO_C\": 1831, \"MHH_CHILD\": 106, \"FHH_CHILD\": 404, \"FAMILIES\": 4348, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 8035, \"VACANT\": 946, \"OWNER_OCC\": 6010, \"RENTER_OCC\": 1079 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.157917659512378, 25.956719954491678 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Oldsmar\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"51350\", \"CAPITAL\": \"N\", \"AREALAND\": 8.915000, \"AREAWATER\": 0.751000, \"POP_CL\": 6, \"POP2000\": 11910, \"WHITE\": 10771, \"BLACK\": 352, \"AMERI_ES\": 35, \"ASIAN\": 333, \"HAWN_PI\": 19, \"OTHER\": 154, \"MULT_RACE\": 246, \"HISPANIC\": 794, \"MALES\": 5753, \"FEMALES\": 6157, \"AGE_UNDER5\": 790, \"AGE_5_17\": 2376, \"AGE_18_21\": 468, \"AGE_22_29\": 1106, \"AGE_30_39\": 2308, \"AGE_40_49\": 2010, \"AGE_50_64\": 1516, \"AGE_65_UP\": 1336, \"MED_AGE\": 35.500000, \"MED_AGE_M\": 34.800000, \"MED_AGE_F\": 36.200000, \"HOUSEHOLDS\": 4536, \"AVE_HH_SZ\": 2.600000, \"HSEHLD_1_M\": 376, \"HSEHLD_1_F\": 512, \"MARHH_CHD\": 1238, \"MARHH_NO_C\": 1344, \"MHH_CHILD\": 108, \"FHH_CHILD\": 356, \"FAMILIES\": 3328, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 4839, \"VACANT\": 303, \"OWNER_OCC\": 3520, \"RENTER_OCC\": 1016 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.676350059550984, 28.042060975602183 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Olympia Heights\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"51475\", \"CAPITAL\": \"N\", \"AREALAND\": 2.722000, \"AREAWATER\": 0.291000, \"POP_CL\": 6, \"POP2000\": 13452, \"WHITE\": 12578, \"BLACK\": 112, \"AMERI_ES\": 14, \"ASIAN\": 122, \"HAWN_PI\": 0, \"OTHER\": 331, \"MULT_RACE\": 295, \"HISPANIC\": 10268, \"MALES\": 6437, \"FEMALES\": 7015, \"AGE_UNDER5\": 651, \"AGE_5_17\": 2040, \"AGE_18_21\": 591, \"AGE_22_29\": 1231, \"AGE_30_39\": 1883, \"AGE_40_49\": 1805, \"AGE_50_64\": 2617, \"AGE_65_UP\": 2634, \"MED_AGE\": 41.800000, \"MED_AGE_M\": 39.500000, \"MED_AGE_F\": 43.900000, \"HOUSEHOLDS\": 4157, \"AVE_HH_SZ\": 3.220000, \"HSEHLD_1_M\": 184, \"HSEHLD_1_F\": 331, \"MARHH_CHD\": 1033, \"MARHH_NO_C\": 1679, \"MHH_CHILD\": 55, \"FHH_CHILD\": 168, \"FAMILIES\": 3487, \"AVE_FAM_SZ\": 3.410000, \"HSE_UNITS\": 4231, \"VACANT\": 74, \"OWNER_OCC\": 3599, \"RENTER_OCC\": 558 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.345073547301368, 25.726378954789602 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Opa-locka\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"51650\", \"CAPITAL\": \"N\", \"AREALAND\": 4.331000, \"AREAWATER\": 0.143000, \"POP_CL\": 6, \"POP2000\": 14951, \"WHITE\": 3414, \"BLACK\": 10412, \"AMERI_ES\": 52, \"ASIAN\": 31, \"HAWN_PI\": 3, \"OTHER\": 538, \"MULT_RACE\": 501, \"HISPANIC\": 4268, \"MALES\": 6897, \"FEMALES\": 8054, \"AGE_UNDER5\": 1403, \"AGE_5_17\": 3772, \"AGE_18_21\": 1158, \"AGE_22_29\": 1752, \"AGE_30_39\": 1909, \"AGE_40_49\": 1915, \"AGE_50_64\": 1767, \"AGE_65_UP\": 1275, \"MED_AGE\": 27.300000, \"MED_AGE_M\": 25.600000, \"MED_AGE_F\": 28.300000, \"HOUSEHOLDS\": 4890, \"AVE_HH_SZ\": 2.970000, \"HSEHLD_1_M\": 608, \"HSEHLD_1_F\": 605, \"MARHH_CHD\": 676, \"MARHH_NO_C\": 715, \"MHH_CHILD\": 151, \"FHH_CHILD\": 1186, \"FAMILIES\": 3438, \"AVE_FAM_SZ\": 3.520000, \"HSE_UNITS\": 5407, \"VACANT\": 517, \"OWNER_OCC\": 1765, \"RENTER_OCC\": 3125 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.250824604853335, 25.901217954579998 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Orlando\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"53000\", \"CAPITAL\": \"N\", \"AREALAND\": 93.495000, \"AREAWATER\": 7.459000, \"POP_CL\": 8, \"POP2000\": 185951, \"WHITE\": 113611, \"BLACK\": 49933, \"AMERI_ES\": 638, \"ASIAN\": 4982, \"HAWN_PI\": 150, \"OTHER\": 10060, \"MULT_RACE\": 6577, \"HISPANIC\": 32510, \"MALES\": 90080, \"FEMALES\": 95871, \"AGE_UNDER5\": 12287, \"AGE_5_17\": 28677, \"AGE_18_21\": 9635, \"AGE_22_29\": 31024, \"AGE_30_39\": 34791, \"AGE_40_49\": 25546, \"AGE_50_64\": 22907, \"AGE_65_UP\": 21084, \"MED_AGE\": 32.900000, \"MED_AGE_M\": 32.200000, \"MED_AGE_F\": 33.800000, \"HOUSEHOLDS\": 80883, \"AVE_HH_SZ\": 2.250000, \"HSEHLD_1_M\": 12995, \"HSEHLD_1_F\": 15317, \"MARHH_CHD\": 10512, \"MARHH_NO_C\": 15678, \"MHH_CHILD\": 1724, \"FHH_CHILD\": 7585, \"FAMILIES\": 42357, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 88486, \"VACANT\": 7603, \"OWNER_OCC\": 32975, \"RENTER_OCC\": 47908 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.37578928291137, 28.533512958937429 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ormond Beach\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"53150\", \"CAPITAL\": \"N\", \"AREALAND\": 25.750000, \"AREAWATER\": 3.320000, \"POP_CL\": 6, \"POP2000\": 36301, \"WHITE\": 34223, \"BLACK\": 1000, \"AMERI_ES\": 62, \"ASIAN\": 522, \"HAWN_PI\": 7, \"OTHER\": 112, \"MULT_RACE\": 375, \"HISPANIC\": 797, \"MALES\": 16969, \"FEMALES\": 19332, \"AGE_UNDER5\": 1527, \"AGE_5_17\": 5432, \"AGE_18_21\": 1009, \"AGE_22_29\": 1910, \"AGE_30_39\": 4147, \"AGE_40_49\": 5423, \"AGE_50_64\": 6894, \"AGE_65_UP\": 9959, \"MED_AGE\": 47.500000, \"MED_AGE_M\": 45.700000, \"MED_AGE_F\": 49.200000, \"HOUSEHOLDS\": 15629, \"AVE_HH_SZ\": 2.270000, \"HSEHLD_1_M\": 1389, \"HSEHLD_1_F\": 2853, \"MARHH_CHD\": 2782, \"MARHH_NO_C\": 5931, \"MHH_CHILD\": 216, \"FHH_CHILD\": 673, \"FAMILIES\": 10533, \"AVE_FAM_SZ\": 2.750000, \"HSE_UNITS\": 17258, \"VACANT\": 1629, \"OWNER_OCC\": 12764, \"RENTER_OCC\": 2865 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.074882415397298, 29.286404953813634 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Oviedo\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"53575\", \"CAPITAL\": \"N\", \"AREALAND\": 15.134000, \"AREAWATER\": 0.320000, \"POP_CL\": 6, \"POP2000\": 26316, \"WHITE\": 21986, \"BLACK\": 2325, \"AMERI_ES\": 71, \"ASIAN\": 637, \"HAWN_PI\": 10, \"OTHER\": 689, \"MULT_RACE\": 598, \"HISPANIC\": 3209, \"MALES\": 13026, \"FEMALES\": 13290, \"AGE_UNDER5\": 2217, \"AGE_5_17\": 6203, \"AGE_18_21\": 1132, \"AGE_22_29\": 2326, \"AGE_30_39\": 5389, \"AGE_40_49\": 4593, \"AGE_50_64\": 2941, \"AGE_65_UP\": 1515, \"MED_AGE\": 32.800000, \"MED_AGE_M\": 32.000000, \"MED_AGE_F\": 33.500000, \"HOUSEHOLDS\": 8556, \"AVE_HH_SZ\": 3.070000, \"HSEHLD_1_M\": 397, \"HSEHLD_1_F\": 503, \"MARHH_CHD\": 3620, \"MARHH_NO_C\": 2439, \"MHH_CHILD\": 159, \"FHH_CHILD\": 530, \"FAMILIES\": 7180, \"AVE_FAM_SZ\": 3.310000, \"HSE_UNITS\": 8977, \"VACANT\": 421, \"OWNER_OCC\": 7325, \"RENTER_OCC\": 1231 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.195831342774966, 28.659635956741354 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Palatka\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"53875\", \"CAPITAL\": \"N\", \"AREALAND\": 6.957000, \"AREAWATER\": 0.577000, \"POP_CL\": 6, \"POP2000\": 10033, \"WHITE\": 4909, \"BLACK\": 4859, \"AMERI_ES\": 16, \"ASIAN\": 44, \"HAWN_PI\": 1, \"OTHER\": 104, \"MULT_RACE\": 100, \"HISPANIC\": 284, \"MALES\": 4516, \"FEMALES\": 5517, \"AGE_UNDER5\": 803, \"AGE_5_17\": 2070, \"AGE_18_21\": 640, \"AGE_22_29\": 1000, \"AGE_30_39\": 1181, \"AGE_40_49\": 1254, \"AGE_50_64\": 1311, \"AGE_65_UP\": 1774, \"MED_AGE\": 34.400000, \"MED_AGE_M\": 31.900000, \"MED_AGE_F\": 36.900000, \"HOUSEHOLDS\": 3880, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 425, \"HSEHLD_1_F\": 845, \"MARHH_CHD\": 514, \"MARHH_NO_C\": 806, \"MHH_CHILD\": 66, \"FHH_CHILD\": 644, \"FAMILIES\": 2422, \"AVE_FAM_SZ\": 3.100000, \"HSE_UNITS\": 4318, \"VACANT\": 438, \"OWNER_OCC\": 2064, \"RENTER_OCC\": 1816 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.651259248647321, 29.64773095895454 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Palm Bay\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"54000\", \"CAPITAL\": \"N\", \"AREALAND\": 63.645000, \"AREAWATER\": 3.105000, \"POP_CL\": 7, \"POP2000\": 79413, \"WHITE\": 64755, \"BLACK\": 8983, \"AMERI_ES\": 281, \"ASIAN\": 1354, \"HAWN_PI\": 37, \"OTHER\": 1894, \"MULT_RACE\": 2109, \"HISPANIC\": 6850, \"MALES\": 38723, \"FEMALES\": 40690, \"AGE_UNDER5\": 4876, \"AGE_5_17\": 16207, \"AGE_18_21\": 3722, \"AGE_22_29\": 6636, \"AGE_30_39\": 12175, \"AGE_40_49\": 12436, \"AGE_50_64\": 11682, \"AGE_65_UP\": 11679, \"MED_AGE\": 37.200000, \"MED_AGE_M\": 36.200000, \"MED_AGE_F\": 38.200000, \"HOUSEHOLDS\": 30336, \"AVE_HH_SZ\": 2.600000, \"HSEHLD_1_M\": 2973, \"HSEHLD_1_F\": 3632, \"MARHH_CHD\": 7194, \"MARHH_NO_C\": 9504, \"MHH_CHILD\": 798, \"FHH_CHILD\": 2332, \"FAMILIES\": 21767, \"AVE_FAM_SZ\": 3.030000, \"HSE_UNITS\": 32902, \"VACANT\": 2566, \"OWNER_OCC\": 22858, \"RENTER_OCC\": 7478 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.658798522164858, 27.982979954401813 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Palm Beach\", \"CLASS\": \"town\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"54025\", \"CAPITAL\": \"N\", \"AREALAND\": 3.922000, \"AREAWATER\": 6.518000, \"POP_CL\": 6, \"POP2000\": 10468, \"WHITE\": 10049, \"BLACK\": 269, \"AMERI_ES\": 4, \"ASIAN\": 56, \"HAWN_PI\": 2, \"OTHER\": 22, \"MULT_RACE\": 66, \"HISPANIC\": 268, \"MALES\": 4631, \"FEMALES\": 5837, \"AGE_UNDER5\": 248, \"AGE_5_17\": 741, \"AGE_18_21\": 95, \"AGE_22_29\": 260, \"AGE_30_39\": 626, \"AGE_40_49\": 869, \"AGE_50_64\": 2128, \"AGE_65_UP\": 5501, \"MED_AGE\": 66.600000, \"MED_AGE_M\": 66.200000, \"MED_AGE_F\": 66.900000, \"HOUSEHOLDS\": 5789, \"AVE_HH_SZ\": 1.810000, \"HSEHLD_1_M\": 739, \"HSEHLD_1_F\": 1727, \"MARHH_CHD\": 359, \"MARHH_NO_C\": 2426, \"MHH_CHILD\": 15, \"FHH_CHILD\": 69, \"FAMILIES\": 3022, \"AVE_FAM_SZ\": 2.380000, \"HSE_UNITS\": 9948, \"VACANT\": 4159, \"OWNER_OCC\": 4837, \"RENTER_OCC\": 952 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.03937178579136, 26.715066955291086 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Palm Beach Gardens\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"54075\", \"CAPITAL\": \"N\", \"AREALAND\": 55.683000, \"AREAWATER\": 0.251000, \"POP_CL\": 6, \"POP2000\": 35058, \"WHITE\": 32878, \"BLACK\": 806, \"AMERI_ES\": 38, \"ASIAN\": 754, \"HAWN_PI\": 11, \"OTHER\": 235, \"MULT_RACE\": 336, \"HISPANIC\": 1973, \"MALES\": 16606, \"FEMALES\": 18452, \"AGE_UNDER5\": 1566, \"AGE_5_17\": 4992, \"AGE_18_21\": 1076, \"AGE_22_29\": 2317, \"AGE_30_39\": 4774, \"AGE_40_49\": 5452, \"AGE_50_64\": 7488, \"AGE_65_UP\": 7393, \"MED_AGE\": 45.000000, \"MED_AGE_M\": 43.500000, \"MED_AGE_F\": 46.100000, \"HOUSEHOLDS\": 15599, \"AVE_HH_SZ\": 2.230000, \"HSEHLD_1_M\": 1611, \"HSEHLD_1_F\": 2703, \"MARHH_CHD\": 2655, \"MARHH_NO_C\": 5733, \"MHH_CHILD\": 236, \"FHH_CHILD\": 752, \"FAMILIES\": 10213, \"AVE_FAM_SZ\": 2.700000, \"HSE_UNITS\": 18317, \"VACANT\": 2718, \"OWNER_OCC\": 12395, \"RENTER_OCC\": 3204 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.109965748279038, 26.828587955062734 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Palm City\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"54175\", \"CAPITAL\": \"N\", \"AREALAND\": 14.633000, \"AREAWATER\": 1.949000, \"POP_CL\": 6, \"POP2000\": 20097, \"WHITE\": 19406, \"BLACK\": 217, \"AMERI_ES\": 27, \"ASIAN\": 206, \"HAWN_PI\": 1, \"OTHER\": 81, \"MULT_RACE\": 159, \"HISPANIC\": 556, \"MALES\": 9624, \"FEMALES\": 10473, \"AGE_UNDER5\": 834, \"AGE_5_17\": 3404, \"AGE_18_21\": 438, \"AGE_22_29\": 721, \"AGE_30_39\": 2306, \"AGE_40_49\": 3144, \"AGE_50_64\": 3754, \"AGE_65_UP\": 5496, \"MED_AGE\": 47.200000, \"MED_AGE_M\": 46.400000, \"MED_AGE_F\": 47.700000, \"HOUSEHOLDS\": 8458, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 660, \"HSEHLD_1_F\": 1162, \"MARHH_CHD\": 1837, \"MARHH_NO_C\": 3760, \"MHH_CHILD\": 104, \"FHH_CHILD\": 353, \"FAMILIES\": 6304, \"AVE_FAM_SZ\": 2.720000, \"HSE_UNITS\": 9228, \"VACANT\": 770, \"OWNER_OCC\": 7293, \"RENTER_OCC\": 1165 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.278657669906934, 27.171126954683007 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Palm Coast\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"54200\", \"CAPITAL\": \"N\", \"AREALAND\": 50.715000, \"AREAWATER\": 0.981000, \"POP_CL\": 6, \"POP2000\": 32732, \"WHITE\": 27834, \"BLACK\": 3360, \"AMERI_ES\": 78, \"ASIAN\": 497, \"HAWN_PI\": 10, \"OTHER\": 403, \"MULT_RACE\": 550, \"HISPANIC\": 2196, \"MALES\": 15545, \"FEMALES\": 17187, \"AGE_UNDER5\": 1354, \"AGE_5_17\": 4712, \"AGE_18_21\": 929, \"AGE_22_29\": 1718, \"AGE_30_39\": 3376, \"AGE_40_49\": 3804, \"AGE_50_64\": 6940, \"AGE_65_UP\": 9899, \"MED_AGE\": 51.200000, \"MED_AGE_M\": 50.200000, \"MED_AGE_F\": 51.900000, \"HOUSEHOLDS\": 13628, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 854, \"HSEHLD_1_F\": 1686, \"MARHH_CHD\": 2279, \"MARHH_NO_C\": 6800, \"MHH_CHILD\": 163, \"FHH_CHILD\": 613, \"FAMILIES\": 10533, \"AVE_FAM_SZ\": 2.680000, \"HSE_UNITS\": 14929, \"VACANT\": 1301, \"OWNER_OCC\": 11705, \"RENTER_OCC\": 1923 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.223385372630844, 29.53812795441009 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Palmetto\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"54250\", \"CAPITAL\": \"N\", \"AREALAND\": 4.316000, \"AREAWATER\": 0.134000, \"POP_CL\": 6, \"POP2000\": 12571, \"WHITE\": 9454, \"BLACK\": 1607, \"AMERI_ES\": 68, \"ASIAN\": 45, \"HAWN_PI\": 13, \"OTHER\": 1104, \"MULT_RACE\": 280, \"HISPANIC\": 3358, \"MALES\": 6292, \"FEMALES\": 6279, \"AGE_UNDER5\": 972, \"AGE_5_17\": 2340, \"AGE_18_21\": 646, \"AGE_22_29\": 1297, \"AGE_30_39\": 1536, \"AGE_40_49\": 1418, \"AGE_50_64\": 1864, \"AGE_65_UP\": 2498, \"MED_AGE\": 36.800000, \"MED_AGE_M\": 33.900000, \"MED_AGE_F\": 39.900000, \"HOUSEHOLDS\": 4448, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 452, \"HSEHLD_1_F\": 715, \"MARHH_CHD\": 824, \"MARHH_NO_C\": 1450, \"MHH_CHILD\": 93, \"FHH_CHILD\": 335, \"FAMILIES\": 3049, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 5776, \"VACANT\": 1328, \"OWNER_OCC\": 3159, \"RENTER_OCC\": 1289 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.578418061964229, 27.522114975422575 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Palmetto Estates\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"54300\", \"CAPITAL\": \"N\", \"AREALAND\": 2.124000, \"AREAWATER\": 0.024000, \"POP_CL\": 6, \"POP2000\": 13675, \"WHITE\": 5153, \"BLACK\": 6669, \"AMERI_ES\": 29, \"ASIAN\": 419, \"HAWN_PI\": 2, \"OTHER\": 659, \"MULT_RACE\": 744, \"HISPANIC\": 3953, \"MALES\": 6573, \"FEMALES\": 7102, \"AGE_UNDER5\": 1019, \"AGE_5_17\": 3242, \"AGE_18_21\": 780, \"AGE_22_29\": 1286, \"AGE_30_39\": 2154, \"AGE_40_49\": 2181, \"AGE_50_64\": 1984, \"AGE_65_UP\": 1029, \"MED_AGE\": 32.800000, \"MED_AGE_M\": 30.800000, \"MED_AGE_F\": 34.500000, \"HOUSEHOLDS\": 4054, \"AVE_HH_SZ\": 3.350000, \"HSEHLD_1_M\": 262, \"HSEHLD_1_F\": 292, \"MARHH_CHD\": 1267, \"MARHH_NO_C\": 999, \"MHH_CHILD\": 104, \"FHH_CHILD\": 487, \"FAMILIES\": 3345, \"AVE_FAM_SZ\": 3.660000, \"HSE_UNITS\": 4187, \"VACANT\": 133, \"OWNER_OCC\": 3392, \"RENTER_OCC\": 662 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.361752533884498, 25.619781954809064 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Palm Harbor\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"54350\", \"CAPITAL\": \"N\", \"AREALAND\": 17.917000, \"AREAWATER\": 8.669000, \"POP_CL\": 7, \"POP2000\": 59248, \"WHITE\": 56780, \"BLACK\": 574, \"AMERI_ES\": 112, \"ASIAN\": 760, \"HAWN_PI\": 14, \"OTHER\": 358, \"MULT_RACE\": 650, \"HISPANIC\": 2047, \"MALES\": 27855, \"FEMALES\": 31393, \"AGE_UNDER5\": 2718, \"AGE_5_17\": 9602, \"AGE_18_21\": 1811, \"AGE_22_29\": 3844, \"AGE_30_39\": 8278, \"AGE_40_49\": 9651, \"AGE_50_64\": 9507, \"AGE_65_UP\": 13837, \"MED_AGE\": 43.200000, \"MED_AGE_M\": 41.900000, \"MED_AGE_F\": 44.500000, \"HOUSEHOLDS\": 25461, \"AVE_HH_SZ\": 2.280000, \"HSEHLD_1_M\": 2635, \"HSEHLD_1_F\": 4525, \"MARHH_CHD\": 5212, \"MARHH_NO_C\": 8871, \"MHH_CHILD\": 366, \"FHH_CHILD\": 1295, \"FAMILIES\": 16910, \"AVE_FAM_SZ\": 2.790000, \"HSE_UNITS\": 28044, \"VACANT\": 2583, \"OWNER_OCC\": 19907, \"RENTER_OCC\": 5554 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.753947053980028, 28.083925976403485 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Palm River-Clair Mel\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"54387\", \"CAPITAL\": \"N\", \"AREALAND\": 11.705000, \"AREAWATER\": 0.005000, \"POP_CL\": 6, \"POP2000\": 17589, \"WHITE\": 9556, \"BLACK\": 6087, \"AMERI_ES\": 93, \"ASIAN\": 213, \"HAWN_PI\": 4, \"OTHER\": 1078, \"MULT_RACE\": 558, \"HISPANIC\": 3958, \"MALES\": 8569, \"FEMALES\": 9020, \"AGE_UNDER5\": 1433, \"AGE_5_17\": 4102, \"AGE_18_21\": 951, \"AGE_22_29\": 1775, \"AGE_30_39\": 2613, \"AGE_40_49\": 2580, \"AGE_50_64\": 2610, \"AGE_65_UP\": 1525, \"MED_AGE\": 32.100000, \"MED_AGE_M\": 31.300000, \"MED_AGE_F\": 32.900000, \"HOUSEHOLDS\": 6034, \"AVE_HH_SZ\": 2.910000, \"HSEHLD_1_M\": 604, \"HSEHLD_1_F\": 563, \"MARHH_CHD\": 1306, \"MARHH_NO_C\": 1568, \"MHH_CHILD\": 189, \"FHH_CHILD\": 839, \"FAMILIES\": 4540, \"AVE_FAM_SZ\": 3.330000, \"HSE_UNITS\": 6502, \"VACANT\": 468, \"OWNER_OCC\": 4458, \"RENTER_OCC\": 1576 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.378900085828263, 27.928149972348884 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Palm Springs\", \"CLASS\": \"village\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"54450\", \"CAPITAL\": \"N\", \"AREALAND\": 1.611000, \"AREAWATER\": 0.047000, \"POP_CL\": 6, \"POP2000\": 11699, \"WHITE\": 9855, \"BLACK\": 781, \"AMERI_ES\": 39, \"ASIAN\": 162, \"HAWN_PI\": 3, \"OTHER\": 557, \"MULT_RACE\": 302, \"HISPANIC\": 2929, \"MALES\": 5518, \"FEMALES\": 6181, \"AGE_UNDER5\": 736, \"AGE_5_17\": 1796, \"AGE_18_21\": 514, \"AGE_22_29\": 1405, \"AGE_30_39\": 2029, \"AGE_40_49\": 1603, \"AGE_50_64\": 1656, \"AGE_65_UP\": 1960, \"MED_AGE\": 37.000000, \"MED_AGE_M\": 35.300000, \"MED_AGE_F\": 38.800000, \"HOUSEHOLDS\": 5148, \"AVE_HH_SZ\": 2.270000, \"HSEHLD_1_M\": 638, \"HSEHLD_1_F\": 1098, \"MARHH_CHD\": 836, \"MARHH_NO_C\": 1210, \"MHH_CHILD\": 116, \"FHH_CHILD\": 422, \"FAMILIES\": 2971, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 5919, \"VACANT\": 771, \"OWNER_OCC\": 3323, \"RENTER_OCC\": 1825 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.095067743754072, 26.639661955040221 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Palm Valley\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"54525\", \"CAPITAL\": \"N\", \"AREALAND\": 13.412000, \"AREAWATER\": 0.586000, \"POP_CL\": 6, \"POP2000\": 19860, \"WHITE\": 19034, \"BLACK\": 249, \"AMERI_ES\": 34, \"ASIAN\": 257, \"HAWN_PI\": 5, \"OTHER\": 103, \"MULT_RACE\": 178, \"HISPANIC\": 557, \"MALES\": 9639, \"FEMALES\": 10221, \"AGE_UNDER5\": 1050, \"AGE_5_17\": 3914, \"AGE_18_21\": 619, \"AGE_22_29\": 1566, \"AGE_30_39\": 3004, \"AGE_40_49\": 3844, \"AGE_50_64\": 3459, \"AGE_65_UP\": 2404, \"MED_AGE\": 39.400000, \"MED_AGE_M\": 38.600000, \"MED_AGE_F\": 40.100000, \"HOUSEHOLDS\": 8188, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 803, \"HSEHLD_1_F\": 1216, \"MARHH_CHD\": 2212, \"MARHH_NO_C\": 2633, \"MHH_CHILD\": 96, \"FHH_CHILD\": 413, \"FAMILIES\": 5583, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 8648, \"VACANT\": 460, \"OWNER_OCC\": 5633, \"RENTER_OCC\": 2555 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.387256346935942, 30.206579953896401 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Panama City\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"54700\", \"CAPITAL\": \"N\", \"AREALAND\": 20.519000, \"AREAWATER\": 6.171000, \"POP_CL\": 6, \"POP2000\": 36417, \"WHITE\": 26819, \"BLACK\": 7813, \"AMERI_ES\": 231, \"ASIAN\": 564, \"HAWN_PI\": 28, \"OTHER\": 274, \"MULT_RACE\": 688, \"HISPANIC\": 1060, \"MALES\": 17683, \"FEMALES\": 18734, \"AGE_UNDER5\": 2221, \"AGE_5_17\": 6140, \"AGE_18_21\": 1985, \"AGE_22_29\": 4135, \"AGE_30_39\": 5337, \"AGE_40_49\": 5403, \"AGE_50_64\": 5397, \"AGE_65_UP\": 5799, \"MED_AGE\": 37.200000, \"MED_AGE_M\": 35.400000, \"MED_AGE_F\": 39.300000, \"HOUSEHOLDS\": 14819, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 1924, \"HSEHLD_1_F\": 2854, \"MARHH_CHD\": 2408, \"MARHH_NO_C\": 3792, \"MHH_CHILD\": 275, \"FHH_CHILD\": 1407, \"FAMILIES\": 9039, \"AVE_FAM_SZ\": 2.920000, \"HSE_UNITS\": 16548, \"VACANT\": 1729, \"OWNER_OCC\": 8565, \"RENTER_OCC\": 6254 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.664479997469357, 30.174450995490201 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Parkland\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"55125\", \"CAPITAL\": \"N\", \"AREALAND\": 10.198000, \"AREAWATER\": 0.579000, \"POP_CL\": 6, \"POP2000\": 13835, \"WHITE\": 12648, \"BLACK\": 425, \"AMERI_ES\": 16, \"ASIAN\": 445, \"HAWN_PI\": 1, \"OTHER\": 129, \"MULT_RACE\": 171, \"HISPANIC\": 1152, \"MALES\": 6882, \"FEMALES\": 6953, \"AGE_UNDER5\": 1156, \"AGE_5_17\": 3698, \"AGE_18_21\": 390, \"AGE_22_29\": 629, \"AGE_30_39\": 2400, \"AGE_40_49\": 3036, \"AGE_50_64\": 2003, \"AGE_65_UP\": 523, \"MED_AGE\": 35.500000, \"MED_AGE_M\": 35.300000, \"MED_AGE_F\": 35.600000, \"HOUSEHOLDS\": 4349, \"AVE_HH_SZ\": 3.180000, \"HSEHLD_1_M\": 189, \"HSEHLD_1_F\": 225, \"MARHH_CHD\": 2223, \"MARHH_NO_C\": 1177, \"MHH_CHILD\": 73, \"FHH_CHILD\": 218, \"FAMILIES\": 3806, \"AVE_FAM_SZ\": 3.420000, \"HSE_UNITS\": 4522, \"VACANT\": 173, \"OWNER_OCC\": 3813, \"RENTER_OCC\": 536 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.240444635177695, 26.315356954764212 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pembroke Pines\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"55775\", \"CAPITAL\": \"N\", \"AREALAND\": 33.054000, \"AREAWATER\": 1.382000, \"POP_CL\": 8, \"POP2000\": 137427, \"WHITE\": 103870, \"BLACK\": 18210, \"AMERI_ES\": 255, \"ASIAN\": 5163, \"HAWN_PI\": 68, \"OTHER\": 5086, \"MULT_RACE\": 4775, \"HISPANIC\": 38700, \"MALES\": 64044, \"FEMALES\": 73383, \"AGE_UNDER5\": 9824, \"AGE_5_17\": 25381, \"AGE_18_21\": 5045, \"AGE_22_29\": 12463, \"AGE_30_39\": 25536, \"AGE_40_49\": 21040, \"AGE_50_64\": 17257, \"AGE_65_UP\": 20881, \"MED_AGE\": 36.500000, \"MED_AGE_M\": 35.400000, \"MED_AGE_F\": 37.500000, \"HOUSEHOLDS\": 51989, \"AVE_HH_SZ\": 2.620000, \"HSEHLD_1_M\": 4048, \"HSEHLD_1_F\": 8466, \"MARHH_CHD\": 14705, \"MARHH_NO_C\": 14616, \"MHH_CHILD\": 849, \"FHH_CHILD\": 3276, \"FAMILIES\": 36835, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 55296, \"VACANT\": 3307, \"OWNER_OCC\": 41714, \"RENTER_OCC\": 10275 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.313689578276637, 26.012912954801713 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pensacola\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"55925\", \"CAPITAL\": \"N\", \"AREALAND\": 22.695000, \"AREAWATER\": 16.958000, \"POP_CL\": 7, \"POP2000\": 56255, \"WHITE\": 36514, \"BLACK\": 17203, \"AMERI_ES\": 291, \"ASIAN\": 998, \"HAWN_PI\": 35, \"OTHER\": 306, \"MULT_RACE\": 908, \"HISPANIC\": 1167, \"MALES\": 26416, \"FEMALES\": 29839, \"AGE_UNDER5\": 3205, \"AGE_5_17\": 9681, \"AGE_18_21\": 2790, \"AGE_22_29\": 5781, \"AGE_30_39\": 7193, \"AGE_40_49\": 8604, \"AGE_50_64\": 9311, \"AGE_65_UP\": 9690, \"MED_AGE\": 39.400000, \"MED_AGE_M\": 37.200000, \"MED_AGE_F\": 41.100000, \"HOUSEHOLDS\": 24524, \"AVE_HH_SZ\": 2.270000, \"HSEHLD_1_M\": 3346, \"HSEHLD_1_F\": 4717, \"MARHH_CHD\": 3487, \"MARHH_NO_C\": 6254, \"MHH_CHILD\": 332, \"FHH_CHILD\": 2210, \"FAMILIES\": 14676, \"AVE_FAM_SZ\": 2.920000, \"HSE_UNITS\": 26995, \"VACANT\": 2471, \"OWNER_OCC\": 15517, \"RENTER_OCC\": 9007 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.209276998778066, 30.43698799886096 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pinecrest\", \"CLASS\": \"village\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"56625\", \"CAPITAL\": \"N\", \"AREALAND\": 7.538000, \"AREAWATER\": 0.013000, \"POP_CL\": 6, \"POP2000\": 19055, \"WHITE\": 17206, \"BLACK\": 327, \"AMERI_ES\": 23, \"ASIAN\": 864, \"HAWN_PI\": 2, \"OTHER\": 249, \"MULT_RACE\": 384, \"HISPANIC\": 5652, \"MALES\": 9197, \"FEMALES\": 9858, \"AGE_UNDER5\": 1174, \"AGE_5_17\": 4817, \"AGE_18_21\": 694, \"AGE_22_29\": 1014, \"AGE_30_39\": 2553, \"AGE_40_49\": 3764, \"AGE_50_64\": 3088, \"AGE_65_UP\": 1951, \"MED_AGE\": 37.900000, \"MED_AGE_M\": 37.700000, \"MED_AGE_F\": 38.100000, \"HOUSEHOLDS\": 6250, \"AVE_HH_SZ\": 3.040000, \"HSEHLD_1_M\": 418, \"HSEHLD_1_F\": 527, \"MARHH_CHD\": 2595, \"MARHH_NO_C\": 1781, \"MHH_CHILD\": 73, \"FHH_CHILD\": 304, \"FAMILIES\": 5064, \"AVE_FAM_SZ\": 3.390000, \"HSE_UNITS\": 6403, \"VACANT\": 153, \"OWNER_OCC\": 5143, \"RENTER_OCC\": 1107 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.307557562534242, 25.661930954599981 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pine Hills\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"56825\", \"CAPITAL\": \"N\", \"AREALAND\": 7.682000, \"AREAWATER\": 0.241000, \"POP_CL\": 6, \"POP2000\": 41764, \"WHITE\": 14172, \"BLACK\": 21473, \"AMERI_ES\": 116, \"ASIAN\": 1205, \"HAWN_PI\": 23, \"OTHER\": 2449, \"MULT_RACE\": 2326, \"HISPANIC\": 5875, \"MALES\": 20118, \"FEMALES\": 21646, \"AGE_UNDER5\": 3422, \"AGE_5_17\": 10324, \"AGE_18_21\": 2579, \"AGE_22_29\": 4564, \"AGE_30_39\": 6723, \"AGE_40_49\": 5857, \"AGE_50_64\": 5007, \"AGE_65_UP\": 3288, \"MED_AGE\": 30.000000, \"MED_AGE_M\": 28.700000, \"MED_AGE_F\": 31.000000, \"HOUSEHOLDS\": 13358, \"AVE_HH_SZ\": 3.110000, \"HSEHLD_1_M\": 1140, \"HSEHLD_1_F\": 1362, \"MARHH_CHD\": 3096, \"MARHH_NO_C\": 2905, \"MHH_CHILD\": 514, \"FHH_CHILD\": 1977, \"FAMILIES\": 10031, \"AVE_FAM_SZ\": 3.530000, \"HSE_UNITS\": 14125, \"VACANT\": 767, \"OWNER_OCC\": 8706, \"RENTER_OCC\": 4652 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.457267262178547, 28.574875959732818 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pinellas Park\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"56975\", \"CAPITAL\": \"N\", \"AREALAND\": 14.748000, \"AREAWATER\": 0.190000, \"POP_CL\": 6, \"POP2000\": 45658, \"WHITE\": 40652, \"BLACK\": 952, \"AMERI_ES\": 176, \"ASIAN\": 1941, \"HAWN_PI\": 10, \"OTHER\": 913, \"MULT_RACE\": 1014, \"HISPANIC\": 2856, \"MALES\": 21778, \"FEMALES\": 23880, \"AGE_UNDER5\": 2534, \"AGE_5_17\": 7225, \"AGE_18_21\": 1771, \"AGE_22_29\": 4182, \"AGE_30_39\": 6938, \"AGE_40_49\": 6495, \"AGE_50_64\": 7123, \"AGE_65_UP\": 9390, \"MED_AGE\": 40.200000, \"MED_AGE_M\": 38.500000, \"MED_AGE_F\": 42.100000, \"HOUSEHOLDS\": 19444, \"AVE_HH_SZ\": 2.310000, \"HSEHLD_1_M\": 2322, \"HSEHLD_1_F\": 3551, \"MARHH_CHD\": 3194, \"MARHH_NO_C\": 5861, \"MHH_CHILD\": 507, \"FHH_CHILD\": 1292, \"FAMILIES\": 12157, \"AVE_FAM_SZ\": 2.840000, \"HSE_UNITS\": 21843, \"VACANT\": 2399, \"OWNER_OCC\": 14606, \"RENTER_OCC\": 4838 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.707096055157947, 27.85230197629155 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pinewood\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"57250\", \"CAPITAL\": \"N\", \"AREALAND\": 1.717000, \"AREAWATER\": 0.177000, \"POP_CL\": 6, \"POP2000\": 16523, \"WHITE\": 3182, \"BLACK\": 11739, \"AMERI_ES\": 41, \"ASIAN\": 54, \"HAWN_PI\": 5, \"OTHER\": 594, \"MULT_RACE\": 908, \"HISPANIC\": 3775, \"MALES\": 7945, \"FEMALES\": 8578, \"AGE_UNDER5\": 1313, \"AGE_5_17\": 3996, \"AGE_18_21\": 1136, \"AGE_22_29\": 1770, \"AGE_30_39\": 2219, \"AGE_40_49\": 2271, \"AGE_50_64\": 2350, \"AGE_65_UP\": 1468, \"MED_AGE\": 30.200000, \"MED_AGE_M\": 29.100000, \"MED_AGE_F\": 31.300000, \"HOUSEHOLDS\": 5029, \"AVE_HH_SZ\": 3.250000, \"HSEHLD_1_M\": 531, \"HSEHLD_1_F\": 561, \"MARHH_CHD\": 975, \"MARHH_NO_C\": 853, \"MHH_CHILD\": 201, \"FHH_CHILD\": 888, \"FAMILIES\": 3684, \"AVE_FAM_SZ\": 3.770000, \"HSE_UNITS\": 5329, \"VACANT\": 300, \"OWNER_OCC\": 2411, \"RENTER_OCC\": 2618 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.217124621243514, 25.870622954489349 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Plantation\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"57425\", \"CAPITAL\": \"N\", \"AREALAND\": 21.738000, \"AREAWATER\": 0.193000, \"POP_CL\": 7, \"POP2000\": 82934, \"WHITE\": 64967, \"BLACK\": 11426, \"AMERI_ES\": 143, \"ASIAN\": 2390, \"HAWN_PI\": 37, \"OTHER\": 1655, \"MULT_RACE\": 2316, \"HISPANIC\": 10860, \"MALES\": 39413, \"FEMALES\": 43521, \"AGE_UNDER5\": 4973, \"AGE_5_17\": 14210, \"AGE_18_21\": 3260, \"AGE_22_29\": 8402, \"AGE_30_39\": 13700, \"AGE_40_49\": 13523, \"AGE_50_64\": 14011, \"AGE_65_UP\": 10855, \"MED_AGE\": 37.900000, \"MED_AGE_M\": 36.600000, \"MED_AGE_F\": 39.100000, \"HOUSEHOLDS\": 33244, \"AVE_HH_SZ\": 2.480000, \"HSEHLD_1_M\": 3277, \"HSEHLD_1_F\": 5287, \"MARHH_CHD\": 7638, \"MARHH_NO_C\": 9659, \"MHH_CHILD\": 552, \"FHH_CHILD\": 2075, \"FAMILIES\": 22191, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 34999, \"VACANT\": 1755, \"OWNER_OCC\": 23852, \"RENTER_OCC\": 9392 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.249503618572405, 26.124353954700226 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Plant City\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"57550\", \"CAPITAL\": \"N\", \"AREALAND\": 22.630000, \"AREAWATER\": 0.121000, \"POP_CL\": 6, \"POP2000\": 29915, \"WHITE\": 21440, \"BLACK\": 4833, \"AMERI_ES\": 111, \"ASIAN\": 267, \"HAWN_PI\": 13, \"OTHER\": 2723, \"MULT_RACE\": 528, \"HISPANIC\": 5211, \"MALES\": 14412, \"FEMALES\": 15503, \"AGE_UNDER5\": 2487, \"AGE_5_17\": 6308, \"AGE_18_21\": 1606, \"AGE_22_29\": 3129, \"AGE_30_39\": 4469, \"AGE_40_49\": 4050, \"AGE_50_64\": 4178, \"AGE_65_UP\": 3688, \"MED_AGE\": 33.300000, \"MED_AGE_M\": 31.800000, \"MED_AGE_F\": 34.700000, \"HOUSEHOLDS\": 10849, \"AVE_HH_SZ\": 2.730000, \"HSEHLD_1_M\": 1005, \"HSEHLD_1_F\": 1477, \"MARHH_CHD\": 2704, \"MARHH_NO_C\": 3017, \"MHH_CHILD\": 307, \"FHH_CHILD\": 991, \"FAMILIES\": 7841, \"AVE_FAM_SZ\": 3.200000, \"HSE_UNITS\": 11797, \"VACANT\": 948, \"OWNER_OCC\": 7125, \"RENTER_OCC\": 3724 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.128864117509764, 28.014249969151177 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Poinciana\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"57900\", \"CAPITAL\": \"N\", \"AREALAND\": 35.106000, \"AREAWATER\": 0.238000, \"POP_CL\": 6, \"POP2000\": 13647, \"WHITE\": 8884, \"BLACK\": 2420, \"AMERI_ES\": 66, \"ASIAN\": 140, \"HAWN_PI\": 13, \"OTHER\": 1351, \"MULT_RACE\": 773, \"HISPANIC\": 5393, \"MALES\": 6667, \"FEMALES\": 6980, \"AGE_UNDER5\": 1132, \"AGE_5_17\": 3515, \"AGE_18_21\": 703, \"AGE_22_29\": 1318, \"AGE_30_39\": 2220, \"AGE_40_49\": 1978, \"AGE_50_64\": 1678, \"AGE_65_UP\": 1103, \"MED_AGE\": 30.800000, \"MED_AGE_M\": 29.300000, \"MED_AGE_F\": 32.100000, \"HOUSEHOLDS\": 4153, \"AVE_HH_SZ\": 3.290000, \"HSEHLD_1_M\": 186, \"HSEHLD_1_F\": 251, \"MARHH_CHD\": 1538, \"MARHH_NO_C\": 1184, \"MHH_CHILD\": 124, \"FHH_CHILD\": 429, \"FAMILIES\": 3564, \"AVE_FAM_SZ\": 3.490000, \"HSE_UNITS\": 4590, \"VACANT\": 437, \"OWNER_OCC\": 3273, \"RENTER_OCC\": 880 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.476502243512527, 28.155767960997338 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pompano Beach\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"58050\", \"CAPITAL\": \"N\", \"AREALAND\": 20.553000, \"AREAWATER\": 1.601000, \"POP_CL\": 7, \"POP2000\": 78191, \"WHITE\": 52989, \"BLACK\": 19897, \"AMERI_ES\": 186, \"ASIAN\": 636, \"HAWN_PI\": 22, \"OTHER\": 1602, \"MULT_RACE\": 2859, \"HISPANIC\": 7770, \"MALES\": 38565, \"FEMALES\": 39626, \"AGE_UNDER5\": 4130, \"AGE_5_17\": 9740, \"AGE_18_21\": 3147, \"AGE_22_29\": 7616, \"AGE_30_39\": 11784, \"AGE_40_49\": 10999, \"AGE_50_64\": 12511, \"AGE_65_UP\": 18264, \"MED_AGE\": 42.200000, \"MED_AGE_M\": 40.300000, \"MED_AGE_F\": 44.400000, \"HOUSEHOLDS\": 35197, \"AVE_HH_SZ\": 2.130000, \"HSEHLD_1_M\": 5823, \"HSEHLD_1_F\": 7774, \"MARHH_CHD\": 3560, \"MARHH_NO_C\": 9594, \"MHH_CHILD\": 599, \"FHH_CHILD\": 1968, \"FAMILIES\": 18444, \"AVE_FAM_SZ\": 2.850000, \"HSE_UNITS\": 44496, \"VACANT\": 9299, \"OWNER_OCC\": 22110, \"RENTER_OCC\": 13087 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.125615696396906, 26.234658954728054 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Port Charlotte\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"58350\", \"CAPITAL\": \"N\", \"AREALAND\": 22.269000, \"AREAWATER\": 1.590000, \"POP_CL\": 6, \"POP2000\": 46451, \"WHITE\": 41448, \"BLACK\": 3033, \"AMERI_ES\": 132, \"ASIAN\": 529, \"HAWN_PI\": 22, \"OTHER\": 550, \"MULT_RACE\": 737, \"HISPANIC\": 2395, \"MALES\": 21697, \"FEMALES\": 24754, \"AGE_UNDER5\": 2060, \"AGE_5_17\": 6619, \"AGE_18_21\": 1530, \"AGE_22_29\": 2923, \"AGE_30_39\": 4908, \"AGE_40_49\": 5693, \"AGE_50_64\": 8449, \"AGE_65_UP\": 14269, \"MED_AGE\": 49.000000, \"MED_AGE_M\": 46.900000, \"MED_AGE_F\": 50.900000, \"HOUSEHOLDS\": 20453, \"AVE_HH_SZ\": 2.250000, \"HSEHLD_1_M\": 1977, \"HSEHLD_1_F\": 3800, \"MARHH_CHD\": 2827, \"MARHH_NO_C\": 8058, \"MHH_CHILD\": 339, \"FHH_CHILD\": 1093, \"FAMILIES\": 13607, \"AVE_FAM_SZ\": 2.710000, \"HSE_UNITS\": 23315, \"VACANT\": 2862, \"OWNER_OCC\": 16467, \"RENTER_OCC\": 3986 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.105831103875985, 26.990180970860521 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Port Orange\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"58575\", \"CAPITAL\": \"N\", \"AREALAND\": 24.706000, \"AREAWATER\": 1.969000, \"POP_CL\": 6, \"POP2000\": 45823, \"WHITE\": 43803, \"BLACK\": 722, \"AMERI_ES\": 121, \"ASIAN\": 523, \"HAWN_PI\": 10, \"OTHER\": 245, \"MULT_RACE\": 399, \"HISPANIC\": 1151, \"MALES\": 21831, \"FEMALES\": 23992, \"AGE_UNDER5\": 2069, \"AGE_5_17\": 6997, \"AGE_18_21\": 1595, \"AGE_22_29\": 3240, \"AGE_30_39\": 5848, \"AGE_40_49\": 6861, \"AGE_50_64\": 8382, \"AGE_65_UP\": 10831, \"MED_AGE\": 44.600000, \"MED_AGE_M\": 43.000000, \"MED_AGE_F\": 45.900000, \"HOUSEHOLDS\": 19574, \"AVE_HH_SZ\": 2.320000, \"HSEHLD_1_M\": 1864, \"HSEHLD_1_F\": 3171, \"MARHH_CHD\": 3497, \"MARHH_NO_C\": 7204, \"MHH_CHILD\": 341, \"FHH_CHILD\": 1012, \"FAMILIES\": 13234, \"AVE_FAM_SZ\": 2.760000, \"HSE_UNITS\": 21102, \"VACANT\": 1528, \"OWNER_OCC\": 16063, \"RENTER_OCC\": 3511 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.00290643522608, 29.118969953721791 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Port St. John\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"58700\", \"CAPITAL\": \"N\", \"AREALAND\": 3.818000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12112, \"WHITE\": 10985, \"BLACK\": 607, \"AMERI_ES\": 57, \"ASIAN\": 111, \"HAWN_PI\": 21, \"OTHER\": 100, \"MULT_RACE\": 231, \"HISPANIC\": 397, \"MALES\": 6025, \"FEMALES\": 6087, \"AGE_UNDER5\": 688, \"AGE_5_17\": 2711, \"AGE_18_21\": 439, \"AGE_22_29\": 820, \"AGE_30_39\": 2200, \"AGE_40_49\": 2105, \"AGE_50_64\": 1796, \"AGE_65_UP\": 1353, \"MED_AGE\": 37.100000, \"MED_AGE_M\": 36.800000, \"MED_AGE_F\": 37.400000, \"HOUSEHOLDS\": 4307, \"AVE_HH_SZ\": 2.730000, \"HSEHLD_1_M\": 380, \"HSEHLD_1_F\": 382, \"MARHH_CHD\": 1278, \"MARHH_NO_C\": 1311, \"MHH_CHILD\": 113, \"FHH_CHILD\": 340, \"FAMILIES\": 3265, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 4544, \"VACANT\": 237, \"OWNER_OCC\": 3738, \"RENTER_OCC\": 569 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.788597491170933, 28.477055953989719 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Port St. Lucie\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"58715\", \"CAPITAL\": \"N\", \"AREALAND\": 75.540000, \"AREAWATER\": 1.149000, \"POP_CL\": 7, \"POP2000\": 88769, \"WHITE\": 78011, \"BLACK\": 6295, \"AMERI_ES\": 200, \"ASIAN\": 1101, \"HAWN_PI\": 31, \"OTHER\": 1570, \"MULT_RACE\": 1561, \"HISPANIC\": 6677, \"MALES\": 43123, \"FEMALES\": 45646, \"AGE_UNDER5\": 5166, \"AGE_5_17\": 16419, \"AGE_18_21\": 3234, \"AGE_22_29\": 6346, \"AGE_30_39\": 13305, \"AGE_40_49\": 13361, \"AGE_50_64\": 14216, \"AGE_65_UP\": 16722, \"MED_AGE\": 39.900000, \"MED_AGE_M\": 39.200000, \"MED_AGE_F\": 40.700000, \"HOUSEHOLDS\": 33909, \"AVE_HH_SZ\": 2.600000, \"HSEHLD_1_M\": 2441, \"HSEHLD_1_F\": 3744, \"MARHH_CHD\": 7925, \"MARHH_NO_C\": 13015, \"MHH_CHILD\": 777, \"FHH_CHILD\": 2028, \"FAMILIES\": 25750, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 36785, \"VACANT\": 2876, \"OWNER_OCC\": 28245, \"RENTER_OCC\": 5664 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.355029633548156, 27.275771954610402 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Port Salerno\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"58727\", \"CAPITAL\": \"N\", \"AREALAND\": 3.618000, \"AREAWATER\": 0.399000, \"POP_CL\": 6, \"POP2000\": 10141, \"WHITE\": 8975, \"BLACK\": 705, \"AMERI_ES\": 14, \"ASIAN\": 69, \"HAWN_PI\": 12, \"OTHER\": 230, \"MULT_RACE\": 136, \"HISPANIC\": 827, \"MALES\": 4882, \"FEMALES\": 5259, \"AGE_UNDER5\": 549, \"AGE_5_17\": 1469, \"AGE_18_21\": 373, \"AGE_22_29\": 714, \"AGE_30_39\": 1312, \"AGE_40_49\": 1460, \"AGE_50_64\": 1763, \"AGE_65_UP\": 2501, \"MED_AGE\": 44.400000, \"MED_AGE_M\": 43.200000, \"MED_AGE_F\": 45.600000, \"HOUSEHOLDS\": 4466, \"AVE_HH_SZ\": 2.250000, \"HSEHLD_1_M\": 541, \"HSEHLD_1_F\": 750, \"MARHH_CHD\": 678, \"MARHH_NO_C\": 1594, \"MHH_CHILD\": 100, \"FHH_CHILD\": 258, \"FAMILIES\": 2861, \"AVE_FAM_SZ\": 2.730000, \"HSE_UNITS\": 5126, \"VACANT\": 660, \"OWNER_OCC\": 3262, \"RENTER_OCC\": 1204 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.191765720254253, 27.144089954825169 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Princeton\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"58975\", \"CAPITAL\": \"N\", \"AREALAND\": 7.347000, \"AREAWATER\": 0.004000, \"POP_CL\": 6, \"POP2000\": 10090, \"WHITE\": 5426, \"BLACK\": 3283, \"AMERI_ES\": 34, \"ASIAN\": 138, \"HAWN_PI\": 6, \"OTHER\": 777, \"MULT_RACE\": 426, \"HISPANIC\": 4792, \"MALES\": 4968, \"FEMALES\": 5122, \"AGE_UNDER5\": 893, \"AGE_5_17\": 2746, \"AGE_18_21\": 641, \"AGE_22_29\": 1060, \"AGE_30_39\": 1548, \"AGE_40_49\": 1480, \"AGE_50_64\": 1116, \"AGE_65_UP\": 606, \"MED_AGE\": 28.000000, \"MED_AGE_M\": 27.000000, \"MED_AGE_F\": 29.000000, \"HOUSEHOLDS\": 2732, \"AVE_HH_SZ\": 3.630000, \"HSEHLD_1_M\": 157, \"HSEHLD_1_F\": 115, \"MARHH_CHD\": 944, \"MARHH_NO_C\": 607, \"MHH_CHILD\": 97, \"FHH_CHILD\": 391, \"FAMILIES\": 2341, \"AVE_FAM_SZ\": 3.850000, \"HSE_UNITS\": 2906, \"VACANT\": 174, \"OWNER_OCC\": 1996, \"RENTER_OCC\": 736 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.397485513022673, 25.535633954947965 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Punta Gorda\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"59200\", \"CAPITAL\": \"N\", \"AREALAND\": 14.162000, \"AREAWATER\": 4.314000, \"POP_CL\": 6, \"POP2000\": 14344, \"WHITE\": 13569, \"BLACK\": 454, \"AMERI_ES\": 24, \"ASIAN\": 112, \"HAWN_PI\": 4, \"OTHER\": 84, \"MULT_RACE\": 97, \"HISPANIC\": 285, \"MALES\": 6791, \"FEMALES\": 7553, \"AGE_UNDER5\": 298, \"AGE_5_17\": 879, \"AGE_18_21\": 191, \"AGE_22_29\": 331, \"AGE_30_39\": 704, \"AGE_40_49\": 1156, \"AGE_50_64\": 4134, \"AGE_65_UP\": 6651, \"MED_AGE\": 63.600000, \"MED_AGE_M\": 64.600000, \"MED_AGE_F\": 62.600000, \"HOUSEHOLDS\": 7165, \"AVE_HH_SZ\": 1.970000, \"HSEHLD_1_M\": 634, \"HSEHLD_1_F\": 1095, \"MARHH_CHD\": 395, \"MARHH_NO_C\": 4391, \"MHH_CHILD\": 41, \"FHH_CHILD\": 156, \"FAMILIES\": 5187, \"AVE_FAM_SZ\": 2.270000, \"HSE_UNITS\": 8907, \"VACANT\": 1742, \"OWNER_OCC\": 6214, \"RENTER_OCC\": 951 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.047820110168871, 26.915906970300671 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Richmond West\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"60230\", \"CAPITAL\": \"N\", \"AREALAND\": 4.179000, \"AREAWATER\": 0.088000, \"POP_CL\": 6, \"POP2000\": 28082, \"WHITE\": 21996, \"BLACK\": 2391, \"AMERI_ES\": 59, \"ASIAN\": 644, \"HAWN_PI\": 18, \"OTHER\": 1822, \"MULT_RACE\": 1152, \"HISPANIC\": 19663, \"MALES\": 13716, \"FEMALES\": 14366, \"AGE_UNDER5\": 2782, \"AGE_5_17\": 6449, \"AGE_18_21\": 1194, \"AGE_22_29\": 3195, \"AGE_30_39\": 6195, \"AGE_40_49\": 3975, \"AGE_50_64\": 2834, \"AGE_65_UP\": 1458, \"MED_AGE\": 30.700000, \"MED_AGE_M\": 30.300000, \"MED_AGE_F\": 31.100000, \"HOUSEHOLDS\": 7833, \"AVE_HH_SZ\": 3.590000, \"HSEHLD_1_M\": 222, \"HSEHLD_1_F\": 164, \"MARHH_CHD\": 3920, \"MARHH_NO_C\": 2011, \"MHH_CHILD\": 173, \"FHH_CHILD\": 527, \"FAMILIES\": 7173, \"AVE_FAM_SZ\": 3.690000, \"HSE_UNITS\": 8188, \"VACANT\": 355, \"OWNER_OCC\": 7344, \"RENTER_OCC\": 489 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.427836502598609, 25.610163955149019 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Riverview\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"60950\", \"CAPITAL\": \"N\", \"AREALAND\": 9.144000, \"AREAWATER\": 0.289000, \"POP_CL\": 6, \"POP2000\": 12035, \"WHITE\": 10327, \"BLACK\": 1002, \"AMERI_ES\": 53, \"ASIAN\": 160, \"HAWN_PI\": 8, \"OTHER\": 238, \"MULT_RACE\": 247, \"HISPANIC\": 1085, \"MALES\": 5950, \"FEMALES\": 6085, \"AGE_UNDER5\": 889, \"AGE_5_17\": 2478, \"AGE_18_21\": 445, \"AGE_22_29\": 994, \"AGE_30_39\": 2271, \"AGE_40_49\": 2041, \"AGE_50_64\": 1878, \"AGE_65_UP\": 1039, \"MED_AGE\": 35.700000, \"MED_AGE_M\": 35.500000, \"MED_AGE_F\": 35.900000, \"HOUSEHOLDS\": 4434, \"AVE_HH_SZ\": 2.680000, \"HSEHLD_1_M\": 376, \"HSEHLD_1_F\": 402, \"MARHH_CHD\": 1249, \"MARHH_NO_C\": 1459, \"MHH_CHILD\": 89, \"FHH_CHILD\": 356, \"FAMILIES\": 3403, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 4800, \"VACANT\": 366, \"OWNER_OCC\": 3533, \"RENTER_OCC\": 901 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.320050091495531, 27.873477971754522 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Riviera Beach\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"60975\", \"CAPITAL\": \"N\", \"AREALAND\": 8.335000, \"AREAWATER\": 1.515000, \"POP_CL\": 6, \"POP2000\": 29884, \"WHITE\": 8297, \"BLACK\": 20264, \"AMERI_ES\": 43, \"ASIAN\": 296, \"HAWN_PI\": 15, \"OTHER\": 330, \"MULT_RACE\": 639, \"HISPANIC\": 1348, \"MALES\": 14241, \"FEMALES\": 15643, \"AGE_UNDER5\": 2127, \"AGE_5_17\": 6598, \"AGE_18_21\": 1416, \"AGE_22_29\": 2732, \"AGE_30_39\": 3868, \"AGE_40_49\": 3858, \"AGE_50_64\": 4798, \"AGE_65_UP\": 4487, \"MED_AGE\": 35.600000, \"MED_AGE_M\": 35.000000, \"MED_AGE_F\": 36.100000, \"HOUSEHOLDS\": 11387, \"AVE_HH_SZ\": 2.600000, \"HSEHLD_1_M\": 1535, \"HSEHLD_1_F\": 1613, \"MARHH_CHD\": 1393, \"MARHH_NO_C\": 2832, \"MHH_CHILD\": 267, \"FHH_CHILD\": 1681, \"FAMILIES\": 7525, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 14220, \"VACANT\": 2833, \"OWNER_OCC\": 6736, \"RENTER_OCC\": 4651 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.067286772298772, 26.779939955203591 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Rockledge\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"61500\", \"CAPITAL\": \"N\", \"AREALAND\": 10.703000, \"AREAWATER\": 1.476000, \"POP_CL\": 6, \"POP2000\": 20170, \"WHITE\": 16349, \"BLACK\": 2952, \"AMERI_ES\": 56, \"ASIAN\": 335, \"HAWN_PI\": 17, \"OTHER\": 147, \"MULT_RACE\": 314, \"HISPANIC\": 662, \"MALES\": 9586, \"FEMALES\": 10584, \"AGE_UNDER5\": 1132, \"AGE_5_17\": 3667, \"AGE_18_21\": 779, \"AGE_22_29\": 1372, \"AGE_30_39\": 2962, \"AGE_40_49\": 3412, \"AGE_50_64\": 3541, \"AGE_65_UP\": 3305, \"MED_AGE\": 40.500000, \"MED_AGE_M\": 39.500000, \"MED_AGE_F\": 41.400000, \"HOUSEHOLDS\": 7864, \"AVE_HH_SZ\": 2.510000, \"HSEHLD_1_M\": 715, \"HSEHLD_1_F\": 1058, \"MARHH_CHD\": 1747, \"MARHH_NO_C\": 2721, \"MHH_CHILD\": 154, \"FHH_CHILD\": 533, \"FAMILIES\": 5681, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 8353, \"VACANT\": 489, \"OWNER_OCC\": 6372, \"RENTER_OCC\": 1492 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.732686507784379, 28.324937954042241 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Royal Palm Beach\", \"CLASS\": \"village\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"62100\", \"CAPITAL\": \"N\", \"AREALAND\": 9.891000, \"AREAWATER\": 0.179000, \"POP_CL\": 6, \"POP2000\": 21523, \"WHITE\": 16821, \"BLACK\": 3059, \"AMERI_ES\": 60, \"ASIAN\": 567, \"HAWN_PI\": 9, \"OTHER\": 494, \"MULT_RACE\": 513, \"HISPANIC\": 2546, \"MALES\": 10273, \"FEMALES\": 11250, \"AGE_UNDER5\": 1288, \"AGE_5_17\": 4867, \"AGE_18_21\": 958, \"AGE_22_29\": 1334, \"AGE_30_39\": 3573, \"AGE_40_49\": 3968, \"AGE_50_64\": 2677, \"AGE_65_UP\": 2858, \"MED_AGE\": 37.000000, \"MED_AGE_M\": 36.200000, \"MED_AGE_F\": 37.700000, \"HOUSEHOLDS\": 7604, \"AVE_HH_SZ\": 2.830000, \"HSEHLD_1_M\": 427, \"HSEHLD_1_F\": 881, \"MARHH_CHD\": 2492, \"MARHH_NO_C\": 2368, \"MHH_CHILD\": 168, \"FHH_CHILD\": 532, \"FAMILIES\": 5979, \"AVE_FAM_SZ\": 3.200000, \"HSE_UNITS\": 8083, \"VACANT\": 479, \"OWNER_OCC\": 6765, \"RENTER_OCC\": 839 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.226554668348768, 26.705850954830744 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Safety Harbor\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"62425\", \"CAPITAL\": \"N\", \"AREALAND\": 4.917000, \"AREAWATER\": 0.132000, \"POP_CL\": 6, \"POP2000\": 17203, \"WHITE\": 15867, \"BLACK\": 712, \"AMERI_ES\": 42, \"ASIAN\": 289, \"HAWN_PI\": 8, \"OTHER\": 76, \"MULT_RACE\": 209, \"HISPANIC\": 628, \"MALES\": 8197, \"FEMALES\": 9006, \"AGE_UNDER5\": 862, \"AGE_5_17\": 2882, \"AGE_18_21\": 536, \"AGE_22_29\": 947, \"AGE_30_39\": 2631, \"AGE_40_49\": 3135, \"AGE_50_64\": 3232, \"AGE_65_UP\": 2978, \"MED_AGE\": 42.200000, \"MED_AGE_M\": 41.200000, \"MED_AGE_F\": 43.100000, \"HOUSEHOLDS\": 7084, \"AVE_HH_SZ\": 2.370000, \"HSEHLD_1_M\": 684, \"HSEHLD_1_F\": 1102, \"MARHH_CHD\": 1564, \"MARHH_NO_C\": 2425, \"MHH_CHILD\": 113, \"FHH_CHILD\": 363, \"FAMILIES\": 4845, \"AVE_FAM_SZ\": 2.850000, \"HSE_UNITS\": 7483, \"VACANT\": 399, \"OWNER_OCC\": 5984, \"RENTER_OCC\": 1100 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.695320057644565, 28.00465397588593 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"St. Augustine\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"62500\", \"CAPITAL\": \"N\", \"AREALAND\": 8.372000, \"AREAWATER\": 2.356000, \"POP_CL\": 6, \"POP2000\": 11592, \"WHITE\": 9414, \"BLACK\": 1747, \"AMERI_ES\": 48, \"ASIAN\": 83, \"HAWN_PI\": 11, \"OTHER\": 102, \"MULT_RACE\": 187, \"HISPANIC\": 361, \"MALES\": 5311, \"FEMALES\": 6281, \"AGE_UNDER5\": 443, \"AGE_5_17\": 1425, \"AGE_18_21\": 1292, \"AGE_22_29\": 1152, \"AGE_30_39\": 1269, \"AGE_40_49\": 1732, \"AGE_50_64\": 2018, \"AGE_65_UP\": 2261, \"MED_AGE\": 41.500000, \"MED_AGE_M\": 40.100000, \"MED_AGE_F\": 42.700000, \"HOUSEHOLDS\": 4963, \"AVE_HH_SZ\": 2.110000, \"HSEHLD_1_M\": 722, \"HSEHLD_1_F\": 1100, \"MARHH_CHD\": 549, \"MARHH_NO_C\": 1306, \"MHH_CHILD\": 74, \"FHH_CHILD\": 298, \"FAMILIES\": 2603, \"AVE_FAM_SZ\": 2.760000, \"HSE_UNITS\": 5642, \"VACANT\": 679, \"OWNER_OCC\": 3001, \"RENTER_OCC\": 1962 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.313208357835975, 29.894263954160976 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"St. Cloud\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"62625\", \"CAPITAL\": \"N\", \"AREALAND\": 9.163000, \"AREAWATER\": 0.009000, \"POP_CL\": 6, \"POP2000\": 20074, \"WHITE\": 18121, \"BLACK\": 415, \"AMERI_ES\": 94, \"ASIAN\": 191, \"HAWN_PI\": 15, \"OTHER\": 824, \"MULT_RACE\": 414, \"HISPANIC\": 2681, \"MALES\": 9554, \"FEMALES\": 10520, \"AGE_UNDER5\": 1348, \"AGE_5_17\": 3776, \"AGE_18_21\": 882, \"AGE_22_29\": 1929, \"AGE_30_39\": 3136, \"AGE_40_49\": 2748, \"AGE_50_64\": 2767, \"AGE_65_UP\": 3488, \"MED_AGE\": 36.800000, \"MED_AGE_M\": 35.200000, \"MED_AGE_F\": 38.300000, \"HOUSEHOLDS\": 7716, \"AVE_HH_SZ\": 2.550000, \"HSEHLD_1_M\": 642, \"HSEHLD_1_F\": 1189, \"MARHH_CHD\": 1765, \"MARHH_NO_C\": 2307, \"MHH_CHILD\": 225, \"FHH_CHILD\": 635, \"FAMILIES\": 5422, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 8602, \"VACANT\": 886, \"OWNER_OCC\": 5534, \"RENTER_OCC\": 2182 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.287540297717356, 28.246589958722382 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"St. Petersburg\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"63000\", \"CAPITAL\": \"N\", \"AREALAND\": 59.627000, \"AREAWATER\": 73.451000, \"POP_CL\": 8, \"POP2000\": 248232, \"WHITE\": 177133, \"BLACK\": 55502, \"AMERI_ES\": 769, \"ASIAN\": 6640, \"HAWN_PI\": 130, \"OTHER\": 2661, \"MULT_RACE\": 5397, \"HISPANIC\": 10502, \"MALES\": 118411, \"FEMALES\": 129821, \"AGE_UNDER5\": 14123, \"AGE_5_17\": 39313, \"AGE_18_21\": 10937, \"AGE_22_29\": 24863, \"AGE_30_39\": 37840, \"AGE_40_49\": 39102, \"AGE_50_64\": 38881, \"AGE_65_UP\": 43173, \"MED_AGE\": 39.300000, \"MED_AGE_M\": 37.800000, \"MED_AGE_F\": 40.600000, \"HOUSEHOLDS\": 109663, \"AVE_HH_SZ\": 2.200000, \"HSEHLD_1_M\": 17132, \"HSEHLD_1_F\": 21884, \"MARHH_CHD\": 15484, \"MARHH_NO_C\": 26570, \"MHH_CHILD\": 2162, \"FHH_CHILD\": 8634, \"FAMILIES\": 61584, \"AVE_FAM_SZ\": 2.880000, \"HSE_UNITS\": 124618, \"VACANT\": 14955, \"OWNER_OCC\": 69626, \"RENTER_OCC\": 40037 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.667619057489873, 27.78225397597215 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"San Carlos Park\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"63425\", \"CAPITAL\": \"N\", \"AREALAND\": 4.856000, \"AREAWATER\": 0.209000, \"POP_CL\": 6, \"POP2000\": 16317, \"WHITE\": 15312, \"BLACK\": 205, \"AMERI_ES\": 55, \"ASIAN\": 115, \"HAWN_PI\": 1, \"OTHER\": 377, \"MULT_RACE\": 252, \"HISPANIC\": 1329, \"MALES\": 8252, \"FEMALES\": 8065, \"AGE_UNDER5\": 1358, \"AGE_5_17\": 3417, \"AGE_18_21\": 691, \"AGE_22_29\": 1490, \"AGE_30_39\": 3271, \"AGE_40_49\": 2818, \"AGE_50_64\": 1855, \"AGE_65_UP\": 1417, \"MED_AGE\": 34.100000, \"MED_AGE_M\": 33.400000, \"MED_AGE_F\": 34.700000, \"HOUSEHOLDS\": 5901, \"AVE_HH_SZ\": 2.770000, \"HSEHLD_1_M\": 485, \"HSEHLD_1_F\": 486, \"MARHH_CHD\": 1809, \"MARHH_NO_C\": 1625, \"MHH_CHILD\": 238, \"FHH_CHILD\": 463, \"FAMILIES\": 4449, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 6580, \"VACANT\": 679, \"OWNER_OCC\": 4646, \"RENTER_OCC\": 1255 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.815467136106065, 26.474457968266371 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sandalfoot Cove\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"63450\", \"CAPITAL\": \"N\", \"AREALAND\": 2.968000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 16582, \"WHITE\": 14461, \"BLACK\": 657, \"AMERI_ES\": 25, \"ASIAN\": 492, \"HAWN_PI\": 9, \"OTHER\": 545, \"MULT_RACE\": 393, \"HISPANIC\": 2397, \"MALES\": 7880, \"FEMALES\": 8702, \"AGE_UNDER5\": 901, \"AGE_5_17\": 2799, \"AGE_18_21\": 587, \"AGE_22_29\": 1472, \"AGE_30_39\": 2713, \"AGE_40_49\": 2574, \"AGE_50_64\": 2320, \"AGE_65_UP\": 3216, \"MED_AGE\": 39.400000, \"MED_AGE_M\": 37.600000, \"MED_AGE_F\": 40.900000, \"HOUSEHOLDS\": 6895, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 590, \"HSEHLD_1_F\": 1192, \"MARHH_CHD\": 1518, \"MARHH_NO_C\": 2054, \"MHH_CHILD\": 105, \"FHH_CHILD\": 449, \"FAMILIES\": 4590, \"AVE_FAM_SZ\": 2.910000, \"HSE_UNITS\": 7743, \"VACANT\": 848, \"OWNER_OCC\": 5409, \"RENTER_OCC\": 1486 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.18531566800263, 26.338872954754251 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sanford\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"63650\", \"CAPITAL\": \"N\", \"AREALAND\": 19.107000, \"AREAWATER\": 3.494000, \"POP_CL\": 6, \"POP2000\": 38291, \"WHITE\": 22872, \"BLACK\": 12308, \"AMERI_ES\": 174, \"ASIAN\": 403, \"HAWN_PI\": 21, \"OTHER\": 1628, \"MULT_RACE\": 885, \"HISPANIC\": 3974, \"MALES\": 19048, \"FEMALES\": 19243, \"AGE_UNDER5\": 2871, \"AGE_5_17\": 7372, \"AGE_18_21\": 2335, \"AGE_22_29\": 4947, \"AGE_30_39\": 6254, \"AGE_40_49\": 5628, \"AGE_50_64\": 4847, \"AGE_65_UP\": 4037, \"MED_AGE\": 32.500000, \"MED_AGE_M\": 31.200000, \"MED_AGE_F\": 33.900000, \"HOUSEHOLDS\": 14237, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 1667, \"HSEHLD_1_F\": 2184, \"MARHH_CHD\": 2470, \"MARHH_NO_C\": 3158, \"MHH_CHILD\": 385, \"FHH_CHILD\": 1670, \"FAMILIES\": 9172, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 15623, \"VACANT\": 1386, \"OWNER_OCC\": 7889, \"RENTER_OCC\": 6348 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.276561322362312, 28.793269957187338 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sarasota\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"64175\", \"CAPITAL\": \"N\", \"AREALAND\": 14.892000, \"AREAWATER\": 11.037000, \"POP_CL\": 7, \"POP2000\": 52715, \"WHITE\": 40542, \"BLACK\": 8447, \"AMERI_ES\": 186, \"ASIAN\": 536, \"HAWN_PI\": 26, \"OTHER\": 1969, \"MULT_RACE\": 1009, \"HISPANIC\": 6283, \"MALES\": 25627, \"FEMALES\": 27088, \"AGE_UNDER5\": 2811, \"AGE_5_17\": 6912, \"AGE_18_21\": 2824, \"AGE_22_29\": 5576, \"AGE_30_39\": 7266, \"AGE_40_49\": 7546, \"AGE_50_64\": 8195, \"AGE_65_UP\": 11585, \"MED_AGE\": 41.100000, \"MED_AGE_M\": 38.900000, \"MED_AGE_F\": 43.500000, \"HOUSEHOLDS\": 23427, \"AVE_HH_SZ\": 2.120000, \"HSEHLD_1_M\": 3625, \"HSEHLD_1_F\": 5347, \"MARHH_CHD\": 2522, \"MARHH_NO_C\": 5758, \"MHH_CHILD\": 417, \"FHH_CHILD\": 1682, \"FAMILIES\": 12076, \"AVE_FAM_SZ\": 2.810000, \"HSE_UNITS\": 26898, \"VACANT\": 3471, \"OWNER_OCC\": 13683, \"RENTER_OCC\": 9744 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.535318063614184, 27.337272975254077 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sarasota Springs\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"64325\", \"CAPITAL\": \"N\", \"AREALAND\": 3.617000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 15875, \"WHITE\": 15185, \"BLACK\": 116, \"AMERI_ES\": 37, \"ASIAN\": 118, \"HAWN_PI\": 4, \"OTHER\": 203, \"MULT_RACE\": 212, \"HISPANIC\": 759, \"MALES\": 7618, \"FEMALES\": 8257, \"AGE_UNDER5\": 811, \"AGE_5_17\": 2761, \"AGE_18_21\": 544, \"AGE_22_29\": 1196, \"AGE_30_39\": 2398, \"AGE_40_49\": 2500, \"AGE_50_64\": 2738, \"AGE_65_UP\": 2927, \"MED_AGE\": 40.900000, \"MED_AGE_M\": 39.000000, \"MED_AGE_F\": 42.700000, \"HOUSEHOLDS\": 6611, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 588, \"HSEHLD_1_F\": 1095, \"MARHH_CHD\": 1351, \"MARHH_NO_C\": 2163, \"MHH_CHILD\": 132, \"FHH_CHILD\": 393, \"FAMILIES\": 4470, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 7101, \"VACANT\": 490, \"OWNER_OCC\": 5487, \"RENTER_OCC\": 1124 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.478383068299522, 27.309923974653152 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Scott Lake\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"64587\", \"CAPITAL\": \"N\", \"AREALAND\": 3.289000, \"AREAWATER\": 0.059000, \"POP_CL\": 6, \"POP2000\": 14401, \"WHITE\": 670, \"BLACK\": 13133, \"AMERI_ES\": 26, \"ASIAN\": 59, \"HAWN_PI\": 6, \"OTHER\": 145, \"MULT_RACE\": 362, \"HISPANIC\": 789, \"MALES\": 6687, \"FEMALES\": 7714, \"AGE_UNDER5\": 991, \"AGE_5_17\": 3516, \"AGE_18_21\": 915, \"AGE_22_29\": 1525, \"AGE_30_39\": 1837, \"AGE_40_49\": 2111, \"AGE_50_64\": 2488, \"AGE_65_UP\": 1018, \"MED_AGE\": 31.300000, \"MED_AGE_M\": 28.900000, \"MED_AGE_F\": 33.600000, \"HOUSEHOLDS\": 4033, \"AVE_HH_SZ\": 3.570000, \"HSEHLD_1_M\": 178, \"HSEHLD_1_F\": 268, \"MARHH_CHD\": 932, \"MARHH_NO_C\": 1063, \"MHH_CHILD\": 107, \"FHH_CHILD\": 575, \"FAMILIES\": 3442, \"AVE_FAM_SZ\": 3.790000, \"HSE_UNITS\": 4159, \"VACANT\": 126, \"OWNER_OCC\": 3521, \"RENTER_OCC\": 512 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.231993616945317, 25.935520954563277 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sebastian\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"64825\", \"CAPITAL\": \"N\", \"AREALAND\": 12.620000, \"AREAWATER\": 0.927000, \"POP_CL\": 6, \"POP2000\": 16181, \"WHITE\": 15155, \"BLACK\": 515, \"AMERI_ES\": 39, \"ASIAN\": 120, \"HAWN_PI\": 0, \"OTHER\": 153, \"MULT_RACE\": 199, \"HISPANIC\": 625, \"MALES\": 7757, \"FEMALES\": 8424, \"AGE_UNDER5\": 692, \"AGE_5_17\": 2574, \"AGE_18_21\": 507, \"AGE_22_29\": 799, \"AGE_30_39\": 1804, \"AGE_40_49\": 2375, \"AGE_50_64\": 2914, \"AGE_65_UP\": 4516, \"MED_AGE\": 46.900000, \"MED_AGE_M\": 45.900000, \"MED_AGE_F\": 47.600000, \"HOUSEHOLDS\": 6844, \"AVE_HH_SZ\": 2.360000, \"HSEHLD_1_M\": 547, \"HSEHLD_1_F\": 930, \"MARHH_CHD\": 1189, \"MARHH_NO_C\": 3021, \"MHH_CHILD\": 118, \"FHH_CHILD\": 367, \"FAMILIES\": 5043, \"AVE_FAM_SZ\": 2.720000, \"HSE_UNITS\": 7287, \"VACANT\": 443, \"OWNER_OCC\": 5937, \"RENTER_OCC\": 907 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.482352598022871, 27.782750954182827 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Seminole\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"64975\", \"CAPITAL\": \"N\", \"AREALAND\": 2.474000, \"AREAWATER\": 0.243000, \"POP_CL\": 6, \"POP2000\": 10890, \"WHITE\": 10521, \"BLACK\": 52, \"AMERI_ES\": 37, \"ASIAN\": 93, \"HAWN_PI\": 3, \"OTHER\": 45, \"MULT_RACE\": 139, \"HISPANIC\": 245, \"MALES\": 4711, \"FEMALES\": 6179, \"AGE_UNDER5\": 322, \"AGE_5_17\": 959, \"AGE_18_21\": 230, \"AGE_22_29\": 604, \"AGE_30_39\": 1113, \"AGE_40_49\": 1158, \"AGE_50_64\": 1753, \"AGE_65_UP\": 4751, \"MED_AGE\": 59.100000, \"MED_AGE_M\": 53.000000, \"MED_AGE_F\": 64.100000, \"HOUSEHOLDS\": 5989, \"AVE_HH_SZ\": 1.750000, \"HSEHLD_1_M\": 943, \"HSEHLD_1_F\": 1999, \"MARHH_CHD\": 458, \"MARHH_NO_C\": 1662, \"MHH_CHILD\": 58, \"FHH_CHILD\": 236, \"FAMILIES\": 2701, \"AVE_FAM_SZ\": 2.480000, \"HSE_UNITS\": 7297, \"VACANT\": 1308, \"OWNER_OCC\": 4654, \"RENTER_OCC\": 1335 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.784913049344155, 27.838501977179575 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"South Bradenton\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"67258\", \"CAPITAL\": \"N\", \"AREALAND\": 4.460000, \"AREAWATER\": 0.078000, \"POP_CL\": 6, \"POP2000\": 21587, \"WHITE\": 19410, \"BLACK\": 997, \"AMERI_ES\": 68, \"ASIAN\": 282, \"HAWN_PI\": 21, \"OTHER\": 469, \"MULT_RACE\": 340, \"HISPANIC\": 1870, \"MALES\": 10088, \"FEMALES\": 11499, \"AGE_UNDER5\": 1143, \"AGE_5_17\": 2633, \"AGE_18_21\": 968, \"AGE_22_29\": 2238, \"AGE_30_39\": 2701, \"AGE_40_49\": 2473, \"AGE_50_64\": 3225, \"AGE_65_UP\": 6206, \"MED_AGE\": 44.200000, \"MED_AGE_M\": 40.600000, \"MED_AGE_F\": 47.900000, \"HOUSEHOLDS\": 10681, \"AVE_HH_SZ\": 2.000000, \"HSEHLD_1_M\": 1639, \"HSEHLD_1_F\": 2681, \"MARHH_CHD\": 1027, \"MARHH_NO_C\": 2915, \"MHH_CHILD\": 239, \"FHH_CHILD\": 663, \"FAMILIES\": 5524, \"AVE_FAM_SZ\": 2.640000, \"HSE_UNITS\": 13283, \"VACANT\": 2602, \"OWNER_OCC\": 6297, \"RENTER_OCC\": 4384 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.578693061267273, 27.458784975535636 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"South Daytona\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"67325\", \"CAPITAL\": \"N\", \"AREALAND\": 3.563000, \"AREAWATER\": 1.277000, \"POP_CL\": 6, \"POP2000\": 13177, \"WHITE\": 11684, \"BLACK\": 1034, \"AMERI_ES\": 16, \"ASIAN\": 159, \"HAWN_PI\": 7, \"OTHER\": 70, \"MULT_RACE\": 207, \"HISPANIC\": 381, \"MALES\": 6341, \"FEMALES\": 6836, \"AGE_UNDER5\": 759, \"AGE_5_17\": 1914, \"AGE_18_21\": 624, \"AGE_22_29\": 1388, \"AGE_30_39\": 1991, \"AGE_40_49\": 1770, \"AGE_50_64\": 2240, \"AGE_65_UP\": 2491, \"MED_AGE\": 39.600000, \"MED_AGE_M\": 37.900000, \"MED_AGE_F\": 41.200000, \"HOUSEHOLDS\": 5851, \"AVE_HH_SZ\": 2.240000, \"HSEHLD_1_M\": 726, \"HSEHLD_1_F\": 1003, \"MARHH_CHD\": 882, \"MARHH_NO_C\": 1713, \"MHH_CHILD\": 136, \"FHH_CHILD\": 446, \"FAMILIES\": 3603, \"AVE_FAM_SZ\": 2.750000, \"HSE_UNITS\": 6457, \"VACANT\": 606, \"OWNER_OCC\": 3874, \"RENTER_OCC\": 1977 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.009057435186477, 29.165309953632363 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"South Miami\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"67550\", \"CAPITAL\": \"N\", \"AREALAND\": 2.295000, \"AREAWATER\": 0.001000, \"POP_CL\": 6, \"POP2000\": 10741, \"WHITE\": 7502, \"BLACK\": 2653, \"AMERI_ES\": 15, \"ASIAN\": 150, \"HAWN_PI\": 4, \"OTHER\": 188, \"MULT_RACE\": 229, \"HISPANIC\": 3692, \"MALES\": 5169, \"FEMALES\": 5572, \"AGE_UNDER5\": 631, \"AGE_5_17\": 1809, \"AGE_18_21\": 434, \"AGE_22_29\": 1233, \"AGE_30_39\": 1771, \"AGE_40_49\": 1683, \"AGE_50_64\": 1716, \"AGE_65_UP\": 1464, \"MED_AGE\": 37.400000, \"MED_AGE_M\": 35.900000, \"MED_AGE_F\": 38.700000, \"HOUSEHOLDS\": 4301, \"AVE_HH_SZ\": 2.470000, \"HSEHLD_1_M\": 650, \"HSEHLD_1_F\": 672, \"MARHH_CHD\": 726, \"MARHH_NO_C\": 1013, \"MHH_CHILD\": 80, \"FHH_CHILD\": 318, \"FAMILIES\": 2593, \"AVE_FAM_SZ\": 3.150000, \"HSE_UNITS\": 4457, \"VACANT\": 156, \"OWNER_OCC\": 2673, \"RENTER_OCC\": 1628 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.295170571308816, 25.710278954585839 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"South Miami Heights\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"67575\", \"CAPITAL\": \"N\", \"AREALAND\": 4.929000, \"AREAWATER\": 0.004000, \"POP_CL\": 6, \"POP2000\": 33522, \"WHITE\": 18594, \"BLACK\": 10163, \"AMERI_ES\": 95, \"ASIAN\": 612, \"HAWN_PI\": 8, \"OTHER\": 2297, \"MULT_RACE\": 1753, \"HISPANIC\": 18829, \"MALES\": 16183, \"FEMALES\": 17339, \"AGE_UNDER5\": 2414, \"AGE_5_17\": 7833, \"AGE_18_21\": 1946, \"AGE_22_29\": 3706, \"AGE_30_39\": 5018, \"AGE_40_49\": 4717, \"AGE_50_64\": 4688, \"AGE_65_UP\": 3200, \"MED_AGE\": 32.000000, \"MED_AGE_M\": 30.000000, \"MED_AGE_F\": 33.900000, \"HOUSEHOLDS\": 9931, \"AVE_HH_SZ\": 3.340000, \"HSEHLD_1_M\": 657, \"HSEHLD_1_F\": 888, \"MARHH_CHD\": 2719, \"MARHH_NO_C\": 2373, \"MHH_CHILD\": 283, \"FHH_CHILD\": 1339, \"FAMILIES\": 7990, \"AVE_FAM_SZ\": 3.680000, \"HSE_UNITS\": 10364, \"VACANT\": 433, \"OWNER_OCC\": 6233, \"RENTER_OCC\": 3698 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.385209521265907, 25.588783954909363 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"South Venice\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"68100\", \"CAPITAL\": \"N\", \"AREALAND\": 6.213000, \"AREAWATER\": 0.371000, \"POP_CL\": 6, \"POP2000\": 13539, \"WHITE\": 13223, \"BLACK\": 54, \"AMERI_ES\": 35, \"ASIAN\": 68, \"HAWN_PI\": 2, \"OTHER\": 49, \"MULT_RACE\": 108, \"HISPANIC\": 236, \"MALES\": 6545, \"FEMALES\": 6994, \"AGE_UNDER5\": 602, \"AGE_5_17\": 2035, \"AGE_18_21\": 408, \"AGE_22_29\": 885, \"AGE_30_39\": 1756, \"AGE_40_49\": 2034, \"AGE_50_64\": 2429, \"AGE_65_UP\": 3390, \"MED_AGE\": 45.100000, \"MED_AGE_M\": 43.900000, \"MED_AGE_F\": 46.300000, \"HOUSEHOLDS\": 5823, \"AVE_HH_SZ\": 2.330000, \"HSEHLD_1_M\": 519, \"HSEHLD_1_F\": 804, \"MARHH_CHD\": 1007, \"MARHH_NO_C\": 2341, \"MHH_CHILD\": 87, \"FHH_CHILD\": 298, \"FAMILIES\": 4080, \"AVE_FAM_SZ\": 2.690000, \"HSE_UNITS\": 6605, \"VACANT\": 782, \"OWNER_OCC\": 5168, \"RENTER_OCC\": 655 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.415120071108134, 27.045817974379297 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Spring Hill\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"68350\", \"CAPITAL\": \"N\", \"AREALAND\": 53.134000, \"AREAWATER\": 1.706000, \"POP_CL\": 7, \"POP2000\": 69078, \"WHITE\": 64591, \"BLACK\": 2073, \"AMERI_ES\": 167, \"ASIAN\": 534, \"HAWN_PI\": 15, \"OTHER\": 842, \"MULT_RACE\": 856, \"HISPANIC\": 4720, \"MALES\": 32622, \"FEMALES\": 36456, \"AGE_UNDER5\": 3187, \"AGE_5_17\": 10254, \"AGE_18_21\": 2479, \"AGE_22_29\": 4378, \"AGE_30_39\": 7344, \"AGE_40_49\": 8536, \"AGE_50_64\": 12617, \"AGE_65_UP\": 20283, \"MED_AGE\": 47.900000, \"MED_AGE_M\": 46.700000, \"MED_AGE_F\": 48.900000, \"HOUSEHOLDS\": 28274, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 2062, \"HSEHLD_1_F\": 3909, \"MARHH_CHD\": 4935, \"MARHH_NO_C\": 12664, \"MHH_CHILD\": 436, \"FHH_CHILD\": 1371, \"FAMILIES\": 21036, \"AVE_FAM_SZ\": 2.740000, \"HSE_UNITS\": 30658, \"VACANT\": 2384, \"OWNER_OCC\": 24409, \"RENTER_OCC\": 3865 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.547732076132036, 28.478928973254224 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Stuart\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"68875\", \"CAPITAL\": \"N\", \"AREALAND\": 6.306000, \"AREAWATER\": 2.220000, \"POP_CL\": 6, \"POP2000\": 14633, \"WHITE\": 12189, \"BLACK\": 1804, \"AMERI_ES\": 38, \"ASIAN\": 96, \"HAWN_PI\": 5, \"OTHER\": 288, \"MULT_RACE\": 213, \"HISPANIC\": 920, \"MALES\": 6841, \"FEMALES\": 7792, \"AGE_UNDER5\": 566, \"AGE_5_17\": 1556, \"AGE_18_21\": 560, \"AGE_22_29\": 1260, \"AGE_30_39\": 1784, \"AGE_40_49\": 1820, \"AGE_50_64\": 2276, \"AGE_65_UP\": 4811, \"MED_AGE\": 48.500000, \"MED_AGE_M\": 43.300000, \"MED_AGE_F\": 53.600000, \"HOUSEHOLDS\": 7220, \"AVE_HH_SZ\": 1.880000, \"HSEHLD_1_M\": 1156, \"HSEHLD_1_F\": 2172, \"MARHH_CHD\": 590, \"MARHH_NO_C\": 1914, \"MHH_CHILD\": 102, \"FHH_CHILD\": 394, \"FAMILIES\": 3419, \"AVE_FAM_SZ\": 2.600000, \"HSE_UNITS\": 8777, \"VACANT\": 1557, \"OWNER_OCC\": 4542, \"RENTER_OCC\": 2678 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.243001692496392, 27.192162954709648 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sunny Isles Beach\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"69550\", \"CAPITAL\": \"N\", \"AREALAND\": 1.006000, \"AREAWATER\": 0.401000, \"POP_CL\": 6, \"POP2000\": 15315, \"WHITE\": 14067, \"BLACK\": 311, \"AMERI_ES\": 24, \"ASIAN\": 209, \"HAWN_PI\": 1, \"OTHER\": 358, \"MULT_RACE\": 345, \"HISPANIC\": 5607, \"MALES\": 7093, \"FEMALES\": 8222, \"AGE_UNDER5\": 491, \"AGE_5_17\": 1236, \"AGE_18_21\": 393, \"AGE_22_29\": 1458, \"AGE_30_39\": 2138, \"AGE_40_49\": 1853, \"AGE_50_64\": 2815, \"AGE_65_UP\": 4931, \"MED_AGE\": 50.400000, \"MED_AGE_M\": 46.800000, \"MED_AGE_F\": 53.500000, \"HOUSEHOLDS\": 8169, \"AVE_HH_SZ\": 1.870000, \"HSEHLD_1_M\": 1397, \"HSEHLD_1_F\": 2187, \"MARHH_CHD\": 693, \"MARHH_NO_C\": 2397, \"MHH_CHILD\": 65, \"FHH_CHILD\": 268, \"FAMILIES\": 3995, \"AVE_FAM_SZ\": 2.550000, \"HSE_UNITS\": 12946, \"VACANT\": 4777, \"OWNER_OCC\": 4755, \"RENTER_OCC\": 3414 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.125111677573358, 25.941269954470307 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sunrise\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"69700\", \"CAPITAL\": \"N\", \"AREALAND\": 18.202000, \"AREAWATER\": 0.229000, \"POP_CL\": 7, \"POP2000\": 85779, \"WHITE\": 59597, \"BLACK\": 17557, \"AMERI_ES\": 156, \"ASIAN\": 2642, \"HAWN_PI\": 61, \"OTHER\": 2967, \"MULT_RACE\": 2799, \"HISPANIC\": 14655, \"MALES\": 40120, \"FEMALES\": 45659, \"AGE_UNDER5\": 5503, \"AGE_5_17\": 15876, \"AGE_18_21\": 3533, \"AGE_22_29\": 8652, \"AGE_30_39\": 14404, \"AGE_40_49\": 12625, \"AGE_50_64\": 10014, \"AGE_65_UP\": 15172, \"MED_AGE\": 36.600000, \"MED_AGE_M\": 34.800000, \"MED_AGE_F\": 38.400000, \"HOUSEHOLDS\": 33308, \"AVE_HH_SZ\": 2.540000, \"HSEHLD_1_M\": 3245, \"HSEHLD_1_F\": 5808, \"MARHH_CHD\": 7741, \"MARHH_NO_C\": 8462, \"MHH_CHILD\": 674, \"FHH_CHILD\": 2718, \"FAMILIES\": 22243, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 35661, \"VACANT\": 2353, \"OWNER_OCC\": 24565, \"RENTER_OCC\": 8743 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.286002600914117, 26.15714495478138 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sunset\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"69812\", \"CAPITAL\": \"N\", \"AREALAND\": 3.558000, \"AREAWATER\": 0.013000, \"POP_CL\": 6, \"POP2000\": 17150, \"WHITE\": 15647, \"BLACK\": 259, \"AMERI_ES\": 19, \"ASIAN\": 420, \"HAWN_PI\": 0, \"OTHER\": 427, \"MULT_RACE\": 378, \"HISPANIC\": 11952, \"MALES\": 8191, \"FEMALES\": 8959, \"AGE_UNDER5\": 989, \"AGE_5_17\": 3002, \"AGE_18_21\": 894, \"AGE_22_29\": 1717, \"AGE_30_39\": 2657, \"AGE_40_49\": 2574, \"AGE_50_64\": 3009, \"AGE_65_UP\": 2308, \"MED_AGE\": 37.600000, \"MED_AGE_M\": 35.900000, \"MED_AGE_F\": 39.300000, \"HOUSEHOLDS\": 5488, \"AVE_HH_SZ\": 3.100000, \"HSEHLD_1_M\": 288, \"HSEHLD_1_F\": 409, \"MARHH_CHD\": 1617, \"MARHH_NO_C\": 1892, \"MHH_CHILD\": 71, \"FHH_CHILD\": 333, \"FAMILIES\": 4503, \"AVE_FAM_SZ\": 3.380000, \"HSE_UNITS\": 5608, \"VACANT\": 120, \"OWNER_OCC\": 4332, \"RENTER_OCC\": 1156 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.356296540799377, 25.705819954828126 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sweetwater\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"70275\", \"CAPITAL\": \"N\", \"AREALAND\": 0.816000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14226, \"WHITE\": 12398, \"BLACK\": 126, \"AMERI_ES\": 42, \"ASIAN\": 28, \"HAWN_PI\": 2, \"OTHER\": 1020, \"MULT_RACE\": 610, \"HISPANIC\": 13253, \"MALES\": 6843, \"FEMALES\": 7383, \"AGE_UNDER5\": 741, \"AGE_5_17\": 2704, \"AGE_18_21\": 806, \"AGE_22_29\": 1477, \"AGE_30_39\": 2323, \"AGE_40_49\": 1949, \"AGE_50_64\": 2293, \"AGE_65_UP\": 1933, \"MED_AGE\": 36.300000, \"MED_AGE_M\": 34.500000, \"MED_AGE_F\": 38.100000, \"HOUSEHOLDS\": 4267, \"AVE_HH_SZ\": 3.330000, \"HSEHLD_1_M\": 210, \"HSEHLD_1_F\": 338, \"MARHH_CHD\": 1229, \"MARHH_NO_C\": 1232, \"MHH_CHILD\": 97, \"FHH_CHILD\": 350, \"FAMILIES\": 3552, \"AVE_FAM_SZ\": 3.550000, \"HSE_UNITS\": 4353, \"VACANT\": 86, \"OWNER_OCC\": 2148, \"RENTER_OCC\": 2119 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.373624535478783, 25.765976954932547 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Tallahassee\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"70600\", \"CAPITAL\": \"Y\", \"AREALAND\": 95.708000, \"AREAWATER\": 2.544000, \"POP_CL\": 8, \"POP2000\": 150624, \"WHITE\": 91007, \"BLACK\": 51569, \"AMERI_ES\": 376, \"ASIAN\": 3617, \"HAWN_PI\": 82, \"OTHER\": 1457, \"MULT_RACE\": 2516, \"HISPANIC\": 6309, \"MALES\": 71137, \"FEMALES\": 79487, \"AGE_UNDER5\": 7763, \"AGE_5_17\": 18430, \"AGE_18_21\": 29836, \"AGE_22_29\": 29126, \"AGE_30_39\": 18783, \"AGE_40_49\": 17606, \"AGE_50_64\": 16661, \"AGE_65_UP\": 12419, \"MED_AGE\": 26.300000, \"MED_AGE_M\": 26.000000, \"MED_AGE_F\": 26.800000, \"HOUSEHOLDS\": 63217, \"AVE_HH_SZ\": 2.170000, \"HSEHLD_1_M\": 9793, \"HSEHLD_1_F\": 12112, \"MARHH_CHD\": 7852, \"MARHH_NO_C\": 11151, \"MHH_CHILD\": 856, \"FHH_CHILD\": 5086, \"FAMILIES\": 29462, \"AVE_FAM_SZ\": 2.860000, \"HSE_UNITS\": 68417, \"VACANT\": 5200, \"OWNER_OCC\": 27665, \"RENTER_OCC\": 35552 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.272770007185457, 30.451799987530141 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Tamarac\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"70675\", \"CAPITAL\": \"N\", \"AREALAND\": 11.391000, \"AREAWATER\": 0.502000, \"POP_CL\": 7, \"POP2000\": 55588, \"WHITE\": 45625, \"BLACK\": 5845, \"AMERI_ES\": 99, \"ASIAN\": 823, \"HAWN_PI\": 20, \"OTHER\": 1617, \"MULT_RACE\": 1559, \"HISPANIC\": 8274, \"MALES\": 24862, \"FEMALES\": 30726, \"AGE_UNDER5\": 2463, \"AGE_5_17\": 5008, \"AGE_18_21\": 1483, \"AGE_22_29\": 4745, \"AGE_30_39\": 6803, \"AGE_40_49\": 5631, \"AGE_50_64\": 8456, \"AGE_65_UP\": 20999, \"MED_AGE\": 52.900000, \"MED_AGE_M\": 47.900000, \"MED_AGE_F\": 56.400000, \"HOUSEHOLDS\": 27423, \"AVE_HH_SZ\": 2.000000, \"HSEHLD_1_M\": 2862, \"HSEHLD_1_F\": 7085, \"MARHH_CHD\": 2710, \"MARHH_NO_C\": 9572, \"MHH_CHILD\": 346, \"FHH_CHILD\": 1161, \"FAMILIES\": 15734, \"AVE_FAM_SZ\": 2.560000, \"HSE_UNITS\": 29750, \"VACANT\": 2327, \"OWNER_OCC\": 21921, \"RENTER_OCC\": 5502 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.246376625040469, 26.203580954729915 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Tamiami\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"70700\", \"CAPITAL\": \"N\", \"AREALAND\": 7.343000, \"AREAWATER\": 0.230000, \"POP_CL\": 7, \"POP2000\": 54788, \"WHITE\": 49619, \"BLACK\": 486, \"AMERI_ES\": 54, \"ASIAN\": 324, \"HAWN_PI\": 10, \"OTHER\": 2659, \"MULT_RACE\": 1636, \"HISPANIC\": 47654, \"MALES\": 26013, \"FEMALES\": 28775, \"AGE_UNDER5\": 3122, \"AGE_5_17\": 10223, \"AGE_18_21\": 2761, \"AGE_22_29\": 5499, \"AGE_30_39\": 8791, \"AGE_40_49\": 8091, \"AGE_50_64\": 9216, \"AGE_65_UP\": 7085, \"MED_AGE\": 36.900000, \"MED_AGE_M\": 35.000000, \"MED_AGE_F\": 38.500000, \"HOUSEHOLDS\": 16285, \"AVE_HH_SZ\": 3.330000, \"HSEHLD_1_M\": 583, \"HSEHLD_1_F\": 945, \"MARHH_CHD\": 5328, \"MARHH_NO_C\": 5427, \"MHH_CHILD\": 297, \"FHH_CHILD\": 1227, \"FAMILIES\": 14237, \"AVE_FAM_SZ\": 3.500000, \"HSE_UNITS\": 16707, \"VACANT\": 422, \"OWNER_OCC\": 13656, \"RENTER_OCC\": 2629 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.403611520706662, 25.754944955070918 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Tampa\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"71000\", \"CAPITAL\": \"N\", \"AREALAND\": 112.064000, \"AREAWATER\": 58.533000, \"POP_CL\": 8, \"POP2000\": 303447, \"WHITE\": 194871, \"BLACK\": 79118, \"AMERI_ES\": 1155, \"ASIAN\": 6527, \"HAWN_PI\": 281, \"OTHER\": 12646, \"MULT_RACE\": 8849, \"HISPANIC\": 58522, \"MALES\": 148050, \"FEMALES\": 155397, \"AGE_UNDER5\": 20528, \"AGE_5_17\": 54238, \"AGE_18_21\": 17535, \"AGE_22_29\": 36668, \"AGE_30_39\": 49885, \"AGE_40_49\": 45190, \"AGE_50_64\": 41450, \"AGE_65_UP\": 37953, \"MED_AGE\": 34.700000, \"MED_AGE_M\": 33.700000, \"MED_AGE_F\": 35.700000, \"HOUSEHOLDS\": 124758, \"AVE_HH_SZ\": 2.360000, \"HSEHLD_1_M\": 19694, \"HSEHLD_1_F\": 22408, \"MARHH_CHD\": 19718, \"MARHH_NO_C\": 25638, \"MHH_CHILD\": 2817, \"FHH_CHILD\": 11913, \"FAMILIES\": 71220, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 135776, \"VACANT\": 11018, \"OWNER_OCC\": 68589, \"RENTER_OCC\": 56169 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.464640077601786, 27.970897973281293 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Tarpon Springs\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"71150\", \"CAPITAL\": \"N\", \"AREALAND\": 9.143000, \"AREAWATER\": 7.743000, \"POP_CL\": 6, \"POP2000\": 21003, \"WHITE\": 18918, \"BLACK\": 1292, \"AMERI_ES\": 61, \"ASIAN\": 219, \"HAWN_PI\": 13, \"OTHER\": 171, \"MULT_RACE\": 329, \"HISPANIC\": 909, \"MALES\": 10054, \"FEMALES\": 10949, \"AGE_UNDER5\": 1093, \"AGE_5_17\": 2946, \"AGE_18_21\": 830, \"AGE_22_29\": 1335, \"AGE_30_39\": 2603, \"AGE_40_49\": 3005, \"AGE_50_64\": 3984, \"AGE_65_UP\": 5207, \"MED_AGE\": 45.400000, \"MED_AGE_M\": 44.200000, \"MED_AGE_F\": 46.700000, \"HOUSEHOLDS\": 9067, \"AVE_HH_SZ\": 2.270000, \"HSEHLD_1_M\": 1104, \"HSEHLD_1_F\": 1547, \"MARHH_CHD\": 1426, \"MARHH_NO_C\": 3309, \"MHH_CHILD\": 147, \"FHH_CHILD\": 491, \"FAMILIES\": 5946, \"AVE_FAM_SZ\": 2.780000, \"HSE_UNITS\": 10759, \"VACANT\": 1692, \"OWNER_OCC\": 7073, \"RENTER_OCC\": 1994 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.75809805432938, 28.148657976333052 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Temple Terrace\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"71400\", \"CAPITAL\": \"N\", \"AREALAND\": 6.856000, \"AREAWATER\": 0.075000, \"POP_CL\": 6, \"POP2000\": 20918, \"WHITE\": 16831, \"BLACK\": 2334, \"AMERI_ES\": 77, \"ASIAN\": 541, \"HAWN_PI\": 28, \"OTHER\": 500, \"MULT_RACE\": 607, \"HISPANIC\": 2373, \"MALES\": 9991, \"FEMALES\": 10927, \"AGE_UNDER5\": 1158, \"AGE_5_17\": 3496, \"AGE_18_21\": 1529, \"AGE_22_29\": 2728, \"AGE_30_39\": 3023, \"AGE_40_49\": 3161, \"AGE_50_64\": 3328, \"AGE_65_UP\": 2495, \"MED_AGE\": 35.300000, \"MED_AGE_M\": 33.400000, \"MED_AGE_F\": 37.100000, \"HOUSEHOLDS\": 8671, \"AVE_HH_SZ\": 2.360000, \"HSEHLD_1_M\": 966, \"HSEHLD_1_F\": 1536, \"MARHH_CHD\": 1699, \"MARHH_NO_C\": 2370, \"MHH_CHILD\": 145, \"FHH_CHILD\": 573, \"FAMILIES\": 5346, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 9359, \"VACANT\": 688, \"OWNER_OCC\": 5285, \"RENTER_OCC\": 3386 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.382519087031596, 28.041545972166443 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"The Crossings\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"71567\", \"CAPITAL\": \"N\", \"AREALAND\": 3.736000, \"AREAWATER\": 0.035000, \"POP_CL\": 6, \"POP2000\": 23557, \"WHITE\": 20071, \"BLACK\": 1094, \"AMERI_ES\": 21, \"ASIAN\": 779, \"HAWN_PI\": 11, \"OTHER\": 747, \"MULT_RACE\": 834, \"HISPANIC\": 13219, \"MALES\": 11019, \"FEMALES\": 12538, \"AGE_UNDER5\": 1443, \"AGE_5_17\": 4653, \"AGE_18_21\": 1230, \"AGE_22_29\": 2484, \"AGE_30_39\": 3817, \"AGE_40_49\": 4163, \"AGE_50_64\": 3778, \"AGE_65_UP\": 1989, \"MED_AGE\": 35.700000, \"MED_AGE_M\": 33.500000, \"MED_AGE_F\": 37.300000, \"HOUSEHOLDS\": 8264, \"AVE_HH_SZ\": 2.850000, \"HSEHLD_1_M\": 596, \"HSEHLD_1_F\": 995, \"MARHH_CHD\": 2534, \"MARHH_NO_C\": 2101, \"MHH_CHILD\": 106, \"FHH_CHILD\": 721, \"FAMILIES\": 6259, \"AVE_FAM_SZ\": 3.280000, \"HSE_UNITS\": 8672, \"VACANT\": 408, \"OWNER_OCC\": 6656, \"RENTER_OCC\": 1608 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.40110851771658, 25.669424955027342 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"The Hammocks\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"71569\", \"CAPITAL\": \"N\", \"AREALAND\": 7.861000, \"AREAWATER\": 0.172000, \"POP_CL\": 6, \"POP2000\": 47379, \"WHITE\": 37260, \"BLACK\": 3259, \"AMERI_ES\": 101, \"ASIAN\": 1540, \"HAWN_PI\": 32, \"OTHER\": 3097, \"MULT_RACE\": 2090, \"HISPANIC\": 30953, \"MALES\": 22480, \"FEMALES\": 24899, \"AGE_UNDER5\": 3425, \"AGE_5_17\": 9981, \"AGE_18_21\": 2787, \"AGE_22_29\": 6192, \"AGE_30_39\": 8990, \"AGE_40_49\": 7334, \"AGE_50_64\": 5694, \"AGE_65_UP\": 2976, \"MED_AGE\": 31.600000, \"MED_AGE_M\": 30.500000, \"MED_AGE_F\": 32.600000, \"HOUSEHOLDS\": 15203, \"AVE_HH_SZ\": 3.100000, \"HSEHLD_1_M\": 1147, \"HSEHLD_1_F\": 1156, \"MARHH_CHD\": 5317, \"MARHH_NO_C\": 3564, \"MHH_CHILD\": 301, \"FHH_CHILD\": 1450, \"FAMILIES\": 12060, \"AVE_FAM_SZ\": 3.470000, \"HSE_UNITS\": 15983, \"VACANT\": 780, \"OWNER_OCC\": 9655, \"RENTER_OCC\": 5548 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.436006501714587, 25.670600955215381 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Titusville\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"71900\", \"CAPITAL\": \"N\", \"AREALAND\": 21.256000, \"AREAWATER\": 4.651000, \"POP_CL\": 6, \"POP2000\": 40670, \"WHITE\": 34080, \"BLACK\": 5142, \"AMERI_ES\": 160, \"ASIAN\": 383, \"HAWN_PI\": 16, \"OTHER\": 296, \"MULT_RACE\": 593, \"HISPANIC\": 1430, \"MALES\": 19353, \"FEMALES\": 21317, \"AGE_UNDER5\": 2317, \"AGE_5_17\": 7016, \"AGE_18_21\": 1680, \"AGE_22_29\": 3187, \"AGE_30_39\": 5481, \"AGE_40_49\": 5730, \"AGE_50_64\": 6818, \"AGE_65_UP\": 8441, \"MED_AGE\": 41.000000, \"MED_AGE_M\": 39.700000, \"MED_AGE_F\": 42.300000, \"HOUSEHOLDS\": 17200, \"AVE_HH_SZ\": 2.320000, \"HSEHLD_1_M\": 2177, \"HSEHLD_1_F\": 2970, \"MARHH_CHD\": 2840, \"MARHH_NO_C\": 5403, \"MHH_CHILD\": 393, \"FHH_CHILD\": 1352, \"FAMILIES\": 11094, \"AVE_FAM_SZ\": 2.860000, \"HSE_UNITS\": 19178, \"VACANT\": 1978, \"OWNER_OCC\": 11702, \"RENTER_OCC\": 5498 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.819911483732724, 28.59120995389236 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Town 'n' Country\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"72145\", \"CAPITAL\": \"N\", \"AREALAND\": 23.673000, \"AREAWATER\": 0.744000, \"POP_CL\": 7, \"POP2000\": 72523, \"WHITE\": 56913, \"BLACK\": 5724, \"AMERI_ES\": 262, \"ASIAN\": 2377, \"HAWN_PI\": 60, \"OTHER\": 5044, \"MULT_RACE\": 2143, \"HISPANIC\": 21010, \"MALES\": 35339, \"FEMALES\": 37184, \"AGE_UNDER5\": 4660, \"AGE_5_17\": 12762, \"AGE_18_21\": 3282, \"AGE_22_29\": 8999, \"AGE_30_39\": 13311, \"AGE_40_49\": 10740, \"AGE_50_64\": 11400, \"AGE_65_UP\": 7369, \"MED_AGE\": 35.000000, \"MED_AGE_M\": 34.100000, \"MED_AGE_F\": 35.900000, \"HOUSEHOLDS\": 28870, \"AVE_HH_SZ\": 2.500000, \"HSEHLD_1_M\": 3462, \"HSEHLD_1_F\": 4152, \"MARHH_CHD\": 6144, \"MARHH_NO_C\": 7705, \"MHH_CHILD\": 645, \"FHH_CHILD\": 2055, \"FAMILIES\": 18702, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 30720, \"VACANT\": 1850, \"OWNER_OCC\": 18728, \"RENTER_OCC\": 10142 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.572815067948454, 28.010045974471605 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Union Park\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"73075\", \"CAPITAL\": \"N\", \"AREALAND\": 2.987000, \"AREAWATER\": 0.034000, \"POP_CL\": 6, \"POP2000\": 10191, \"WHITE\": 7965, \"BLACK\": 503, \"AMERI_ES\": 33, \"ASIAN\": 352, \"HAWN_PI\": 6, \"OTHER\": 961, \"MULT_RACE\": 371, \"HISPANIC\": 2657, \"MALES\": 5108, \"FEMALES\": 5083, \"AGE_UNDER5\": 641, \"AGE_5_17\": 1893, \"AGE_18_21\": 792, \"AGE_22_29\": 1617, \"AGE_30_39\": 1681, \"AGE_40_49\": 1299, \"AGE_50_64\": 1383, \"AGE_65_UP\": 885, \"MED_AGE\": 30.800000, \"MED_AGE_M\": 30.200000, \"MED_AGE_F\": 31.500000, \"HOUSEHOLDS\": 3644, \"AVE_HH_SZ\": 2.790000, \"HSEHLD_1_M\": 310, \"HSEHLD_1_F\": 321, \"MARHH_CHD\": 841, \"MARHH_NO_C\": 1002, \"MHH_CHILD\": 88, \"FHH_CHILD\": 286, \"FAMILIES\": 2507, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 3791, \"VACANT\": 147, \"OWNER_OCC\": 2386, \"RENTER_OCC\": 1258 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.237144325502186, 28.565460957400454 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"University\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"73163\", \"CAPITAL\": \"N\", \"AREALAND\": 3.870000, \"AREAWATER\": 0.012000, \"POP_CL\": 6, \"POP2000\": 30736, \"WHITE\": 15768, \"BLACK\": 10469, \"AMERI_ES\": 127, \"ASIAN\": 1111, \"HAWN_PI\": 22, \"OTHER\": 1957, \"MULT_RACE\": 1282, \"HISPANIC\": 5935, \"MALES\": 15167, \"FEMALES\": 15569, \"AGE_UNDER5\": 2523, \"AGE_5_17\": 4490, \"AGE_18_21\": 3510, \"AGE_22_29\": 7029, \"AGE_30_39\": 4490, \"AGE_40_49\": 3098, \"AGE_50_64\": 2381, \"AGE_65_UP\": 3215, \"MED_AGE\": 26.900000, \"MED_AGE_M\": 26.600000, \"MED_AGE_F\": 27.200000, \"HOUSEHOLDS\": 13623, \"AVE_HH_SZ\": 2.120000, \"HSEHLD_1_M\": 2909, \"HSEHLD_1_F\": 2766, \"MARHH_CHD\": 1124, \"MARHH_NO_C\": 1348, \"MHH_CHILD\": 385, \"FHH_CHILD\": 1888, \"FAMILIES\": 5752, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 15494, \"VACANT\": 1871, \"OWNER_OCC\": 1631, \"RENTER_OCC\": 11992 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.437091081681771, 28.069643972761298 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"University Park\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"73287\", \"CAPITAL\": \"N\", \"AREALAND\": 4.061000, \"AREAWATER\": 0.039000, \"POP_CL\": 6, \"POP2000\": 26538, \"WHITE\": 23630, \"BLACK\": 903, \"AMERI_ES\": 17, \"ASIAN\": 421, \"HAWN_PI\": 5, \"OTHER\": 897, \"MULT_RACE\": 665, \"HISPANIC\": 21945, \"MALES\": 12138, \"FEMALES\": 14400, \"AGE_UNDER5\": 1078, \"AGE_5_17\": 3587, \"AGE_18_21\": 2449, \"AGE_22_29\": 3165, \"AGE_30_39\": 3391, \"AGE_40_49\": 3147, \"AGE_50_64\": 4677, \"AGE_65_UP\": 5044, \"MED_AGE\": 38.900000, \"MED_AGE_M\": 36.100000, \"MED_AGE_F\": 41.500000, \"HOUSEHOLDS\": 8646, \"AVE_HH_SZ\": 2.960000, \"HSEHLD_1_M\": 487, \"HSEHLD_1_F\": 1074, \"MARHH_CHD\": 1814, \"MARHH_NO_C\": 2967, \"MHH_CHILD\": 112, \"FHH_CHILD\": 420, \"FAMILIES\": 6503, \"AVE_FAM_SZ\": 3.320000, \"HSE_UNITS\": 9047, \"VACANT\": 401, \"OWNER_OCC\": 5459, \"RENTER_OCC\": 3187 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.366124538037923, 25.745177954890142 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Upper Grand Lagoon\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"73312\", \"CAPITAL\": \"N\", \"AREALAND\": 8.248000, \"AREAWATER\": 7.674000, \"POP_CL\": 6, \"POP2000\": 10889, \"WHITE\": 10199, \"BLACK\": 154, \"AMERI_ES\": 89, \"ASIAN\": 178, \"HAWN_PI\": 10, \"OTHER\": 74, \"MULT_RACE\": 185, \"HISPANIC\": 267, \"MALES\": 5577, \"FEMALES\": 5312, \"AGE_UNDER5\": 566, \"AGE_5_17\": 1906, \"AGE_18_21\": 451, \"AGE_22_29\": 982, \"AGE_30_39\": 1823, \"AGE_40_49\": 1836, \"AGE_50_64\": 1926, \"AGE_65_UP\": 1399, \"MED_AGE\": 38.700000, \"MED_AGE_M\": 37.900000, \"MED_AGE_F\": 39.500000, \"HOUSEHOLDS\": 4615, \"AVE_HH_SZ\": 2.330000, \"HSEHLD_1_M\": 683, \"HSEHLD_1_F\": 584, \"MARHH_CHD\": 954, \"MARHH_NO_C\": 1453, \"MHH_CHILD\": 99, \"FHH_CHILD\": 298, \"FAMILIES\": 3034, \"AVE_FAM_SZ\": 2.830000, \"HSE_UNITS\": 5733, \"VACANT\": 1118, \"OWNER_OCC\": 3204, \"RENTER_OCC\": 1411 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.755908997440912, 30.169897995811208 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Venice\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"73900\", \"CAPITAL\": \"N\", \"AREALAND\": 9.115000, \"AREAWATER\": 0.548000, \"POP_CL\": 6, \"POP2000\": 17764, \"WHITE\": 17433, \"BLACK\": 97, \"AMERI_ES\": 24, \"ASIAN\": 72, \"HAWN_PI\": 5, \"OTHER\": 43, \"MULT_RACE\": 90, \"HISPANIC\": 195, \"MALES\": 7717, \"FEMALES\": 10047, \"AGE_UNDER5\": 269, \"AGE_5_17\": 953, \"AGE_18_21\": 244, \"AGE_22_29\": 443, \"AGE_30_39\": 872, \"AGE_40_49\": 1336, \"AGE_50_64\": 3434, \"AGE_65_UP\": 10213, \"MED_AGE\": 68.800000, \"MED_AGE_M\": 67.900000, \"MED_AGE_F\": 69.500000, \"HOUSEHOLDS\": 9680, \"AVE_HH_SZ\": 1.760000, \"HSEHLD_1_M\": 1139, \"HSEHLD_1_F\": 2763, \"MARHH_CHD\": 418, \"MARHH_NO_C\": 4349, \"MHH_CHILD\": 51, \"FHH_CHILD\": 205, \"FAMILIES\": 5367, \"AVE_FAM_SZ\": 2.250000, \"HSE_UNITS\": 13516, \"VACANT\": 3836, \"OWNER_OCC\": 7537, \"RENTER_OCC\": 2143 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.438985069502039, 27.098673974563457 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Vero Beach\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"74150\", \"CAPITAL\": \"N\", \"AREALAND\": 11.073000, \"AREAWATER\": 1.853000, \"POP_CL\": 6, \"POP2000\": 17705, \"WHITE\": 16418, \"BLACK\": 606, \"AMERI_ES\": 35, \"ASIAN\": 219, \"HAWN_PI\": 5, \"OTHER\": 247, \"MULT_RACE\": 175, \"HISPANIC\": 1025, \"MALES\": 8522, \"FEMALES\": 9183, \"AGE_UNDER5\": 746, \"AGE_5_17\": 2079, \"AGE_18_21\": 657, \"AGE_22_29\": 1491, \"AGE_30_39\": 2039, \"AGE_40_49\": 2375, \"AGE_50_64\": 3106, \"AGE_65_UP\": 5212, \"MED_AGE\": 47.700000, \"MED_AGE_M\": 45.000000, \"MED_AGE_F\": 50.100000, \"HOUSEHOLDS\": 8516, \"AVE_HH_SZ\": 2.020000, \"HSEHLD_1_M\": 1287, \"HSEHLD_1_F\": 1809, \"MARHH_CHD\": 959, \"MARHH_NO_C\": 2826, \"MHH_CHILD\": 128, \"FHH_CHILD\": 403, \"FAMILIES\": 4781, \"AVE_FAM_SZ\": 2.590000, \"HSE_UNITS\": 10286, \"VACANT\": 1770, \"OWNER_OCC\": 5505, \"RENTER_OCC\": 3011 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.391105638272236, 27.641816954263255 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Vero Beach South\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"74200\", \"CAPITAL\": \"N\", \"AREALAND\": 10.337000, \"AREAWATER\": 0.568000, \"POP_CL\": 6, \"POP2000\": 20362, \"WHITE\": 19177, \"BLACK\": 467, \"AMERI_ES\": 65, \"ASIAN\": 192, \"HAWN_PI\": 15, \"OTHER\": 161, \"MULT_RACE\": 285, \"HISPANIC\": 686, \"MALES\": 9691, \"FEMALES\": 10671, \"AGE_UNDER5\": 1043, \"AGE_5_17\": 3420, \"AGE_18_21\": 720, \"AGE_22_29\": 1368, \"AGE_30_39\": 2585, \"AGE_40_49\": 3139, \"AGE_50_64\": 3632, \"AGE_65_UP\": 4455, \"MED_AGE\": 43.100000, \"MED_AGE_M\": 41.700000, \"MED_AGE_F\": 44.600000, \"HOUSEHOLDS\": 8649, \"AVE_HH_SZ\": 2.340000, \"HSEHLD_1_M\": 841, \"HSEHLD_1_F\": 1476, \"MARHH_CHD\": 1671, \"MARHH_NO_C\": 3059, \"MHH_CHILD\": 149, \"FHH_CHILD\": 514, \"FAMILIES\": 5882, \"AVE_FAM_SZ\": 2.810000, \"HSE_UNITS\": 9505, \"VACANT\": 856, \"OWNER_OCC\": 6511, \"RENTER_OCC\": 2138 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.411622625369475, 27.619696954304459 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Villas\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"74512\", \"CAPITAL\": \"N\", \"AREALAND\": 4.686000, \"AREAWATER\": 0.119000, \"POP_CL\": 6, \"POP2000\": 11346, \"WHITE\": 10691, \"BLACK\": 187, \"AMERI_ES\": 19, \"ASIAN\": 133, \"HAWN_PI\": 5, \"OTHER\": 151, \"MULT_RACE\": 160, \"HISPANIC\": 634, \"MALES\": 5288, \"FEMALES\": 6058, \"AGE_UNDER5\": 475, \"AGE_5_17\": 1068, \"AGE_18_21\": 418, \"AGE_22_29\": 1308, \"AGE_30_39\": 1566, \"AGE_40_49\": 1430, \"AGE_50_64\": 1751, \"AGE_65_UP\": 3330, \"MED_AGE\": 45.400000, \"MED_AGE_M\": 41.400000, \"MED_AGE_F\": 49.400000, \"HOUSEHOLDS\": 5682, \"AVE_HH_SZ\": 1.940000, \"HSEHLD_1_M\": 817, \"HSEHLD_1_F\": 1382, \"MARHH_CHD\": 584, \"MARHH_NO_C\": 1709, \"MHH_CHILD\": 64, \"FHH_CHILD\": 245, \"FAMILIES\": 2910, \"AVE_FAM_SZ\": 2.560000, \"HSE_UNITS\": 6574, \"VACANT\": 892, \"OWNER_OCC\": 3493, \"RENTER_OCC\": 2189 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.869036129339122, 26.555002968776666 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Warrington\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"75200\", \"CAPITAL\": \"N\", \"AREALAND\": 6.572000, \"AREAWATER\": 1.936000, \"POP_CL\": 6, \"POP2000\": 15207, \"WHITE\": 10883, \"BLACK\": 3299, \"AMERI_ES\": 159, \"ASIAN\": 316, \"HAWN_PI\": 25, \"OTHER\": 139, \"MULT_RACE\": 386, \"HISPANIC\": 438, \"MALES\": 7299, \"FEMALES\": 7908, \"AGE_UNDER5\": 1092, \"AGE_5_17\": 2814, \"AGE_18_21\": 817, \"AGE_22_29\": 1605, \"AGE_30_39\": 2069, \"AGE_40_49\": 2219, \"AGE_50_64\": 2249, \"AGE_65_UP\": 2342, \"MED_AGE\": 36.200000, \"MED_AGE_M\": 34.400000, \"MED_AGE_F\": 38.000000, \"HOUSEHOLDS\": 6547, \"AVE_HH_SZ\": 2.320000, \"HSEHLD_1_M\": 934, \"HSEHLD_1_F\": 1116, \"MARHH_CHD\": 873, \"MARHH_NO_C\": 1659, \"MHH_CHILD\": 188, \"FHH_CHILD\": 796, \"FAMILIES\": 4049, \"AVE_FAM_SZ\": 2.890000, \"HSE_UNITS\": 7582, \"VACANT\": 1035, \"OWNER_OCC\": 4037, \"RENTER_OCC\": 2510 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.289593998855025, 30.385697998957891 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wekiwa Springs\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"75725\", \"CAPITAL\": \"N\", \"AREALAND\": 8.641000, \"AREAWATER\": 0.520000, \"POP_CL\": 6, \"POP2000\": 23169, \"WHITE\": 21878, \"BLACK\": 343, \"AMERI_ES\": 39, \"ASIAN\": 524, \"HAWN_PI\": 6, \"OTHER\": 150, \"MULT_RACE\": 229, \"HISPANIC\": 1139, \"MALES\": 11280, \"FEMALES\": 11889, \"AGE_UNDER5\": 1113, \"AGE_5_17\": 4769, \"AGE_18_21\": 809, \"AGE_22_29\": 1243, \"AGE_30_39\": 2942, \"AGE_40_49\": 4541, \"AGE_50_64\": 5034, \"AGE_65_UP\": 2718, \"MED_AGE\": 41.600000, \"MED_AGE_M\": 41.100000, \"MED_AGE_F\": 42.100000, \"HOUSEHOLDS\": 8825, \"AVE_HH_SZ\": 2.620000, \"HSEHLD_1_M\": 636, \"HSEHLD_1_F\": 1068, \"MARHH_CHD\": 2722, \"MARHH_NO_C\": 3177, \"MHH_CHILD\": 107, \"FHH_CHILD\": 379, \"FAMILIES\": 6750, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 9123, \"VACANT\": 298, \"OWNER_OCC\": 7006, \"RENTER_OCC\": 1819 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.425706274923968, 28.697073959054585 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wellington\", \"CLASS\": \"village\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"75812\", \"CAPITAL\": \"N\", \"AREALAND\": 31.052000, \"AREAWATER\": 0.313000, \"POP_CL\": 6, \"POP2000\": 38216, \"WHITE\": 33918, \"BLACK\": 2057, \"AMERI_ES\": 49, \"ASIAN\": 758, \"HAWN_PI\": 10, \"OTHER\": 702, \"MULT_RACE\": 722, \"HISPANIC\": 4395, \"MALES\": 18669, \"FEMALES\": 19547, \"AGE_UNDER5\": 2480, \"AGE_5_17\": 9370, \"AGE_18_21\": 1448, \"AGE_22_29\": 2235, \"AGE_30_39\": 5851, \"AGE_40_49\": 7624, \"AGE_50_64\": 5788, \"AGE_65_UP\": 3420, \"MED_AGE\": 36.900000, \"MED_AGE_M\": 36.500000, \"MED_AGE_F\": 37.100000, \"HOUSEHOLDS\": 12938, \"AVE_HH_SZ\": 2.950000, \"HSEHLD_1_M\": 677, \"HSEHLD_1_F\": 1029, \"MARHH_CHD\": 5010, \"MARHH_NO_C\": 4014, \"MHH_CHILD\": 245, \"FHH_CHILD\": 856, \"FAMILIES\": 10682, \"AVE_FAM_SZ\": 3.250000, \"HSE_UNITS\": 14761, \"VACANT\": 1823, \"OWNER_OCC\": 10641, \"RENTER_OCC\": 2297 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.254136649145892, 26.655134954826472 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"West and East Lealman\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"75912\", \"CAPITAL\": \"N\", \"AREALAND\": 4.729000, \"AREAWATER\": 0.030000, \"POP_CL\": 6, \"POP2000\": 21753, \"WHITE\": 19210, \"BLACK\": 701, \"AMERI_ES\": 132, \"ASIAN\": 888, \"HAWN_PI\": 16, \"OTHER\": 360, \"MULT_RACE\": 446, \"HISPANIC\": 1067, \"MALES\": 10828, \"FEMALES\": 10925, \"AGE_UNDER5\": 1241, \"AGE_5_17\": 3332, \"AGE_18_21\": 849, \"AGE_22_29\": 1924, \"AGE_30_39\": 3212, \"AGE_40_49\": 3356, \"AGE_50_64\": 3631, \"AGE_65_UP\": 4208, \"MED_AGE\": 40.800000, \"MED_AGE_M\": 39.800000, \"MED_AGE_F\": 42.100000, \"HOUSEHOLDS\": 9906, \"AVE_HH_SZ\": 2.160000, \"HSEHLD_1_M\": 1795, \"HSEHLD_1_F\": 1873, \"MARHH_CHD\": 1250, \"MARHH_NO_C\": 2352, \"MHH_CHILD\": 282, \"FHH_CHILD\": 792, \"FAMILIES\": 5369, \"AVE_FAM_SZ\": 2.820000, \"HSE_UNITS\": 11750, \"VACANT\": 1844, \"OWNER_OCC\": 6577, \"RENTER_OCC\": 3329 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.686670056395911, 27.820102976119369 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Westchase\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"76062\", \"CAPITAL\": \"N\", \"AREALAND\": 10.748000, \"AREAWATER\": 0.050000, \"POP_CL\": 6, \"POP2000\": 11116, \"WHITE\": 9661, \"BLACK\": 563, \"AMERI_ES\": 11, \"ASIAN\": 453, \"HAWN_PI\": 1, \"OTHER\": 239, \"MULT_RACE\": 188, \"HISPANIC\": 1322, \"MALES\": 5453, \"FEMALES\": 5663, \"AGE_UNDER5\": 1217, \"AGE_5_17\": 1826, \"AGE_18_21\": 250, \"AGE_22_29\": 1114, \"AGE_30_39\": 2867, \"AGE_40_49\": 1843, \"AGE_50_64\": 1391, \"AGE_65_UP\": 608, \"MED_AGE\": 33.900000, \"MED_AGE_M\": 34.300000, \"MED_AGE_F\": 33.700000, \"HOUSEHOLDS\": 4177, \"AVE_HH_SZ\": 2.660000, \"HSEHLD_1_M\": 329, \"HSEHLD_1_F\": 375, \"MARHH_CHD\": 1555, \"MARHH_NO_C\": 1349, \"MHH_CHILD\": 39, \"FHH_CHILD\": 137, \"FAMILIES\": 3208, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 4742, \"VACANT\": 565, \"OWNER_OCC\": 3659, \"RENTER_OCC\": 518 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.61135206507663, 28.052798974836943 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Westchester\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"76075\", \"CAPITAL\": \"N\", \"AREALAND\": 4.015000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 30271, \"WHITE\": 28389, \"BLACK\": 186, \"AMERI_ES\": 13, \"ASIAN\": 154, \"HAWN_PI\": 1, \"OTHER\": 852, \"MULT_RACE\": 676, \"HISPANIC\": 25824, \"MALES\": 14098, \"FEMALES\": 16173, \"AGE_UNDER5\": 1369, \"AGE_5_17\": 4301, \"AGE_18_21\": 1255, \"AGE_22_29\": 2773, \"AGE_30_39\": 4170, \"AGE_40_49\": 3874, \"AGE_50_64\": 5577, \"AGE_65_UP\": 6952, \"MED_AGE\": 43.100000, \"MED_AGE_M\": 39.900000, \"MED_AGE_F\": 46.100000, \"HOUSEHOLDS\": 9764, \"AVE_HH_SZ\": 3.070000, \"HSEHLD_1_M\": 488, \"HSEHLD_1_F\": 954, \"MARHH_CHD\": 2145, \"MARHH_NO_C\": 3763, \"MHH_CHILD\": 117, \"FHH_CHILD\": 473, \"FAMILIES\": 7947, \"AVE_FAM_SZ\": 3.330000, \"HSE_UNITS\": 9938, \"VACANT\": 174, \"OWNER_OCC\": 6734, \"RENTER_OCC\": 3030 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.33687355238402, 25.746977954766049 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"West Little River\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"76487\", \"CAPITAL\": \"N\", \"AREALAND\": 4.581000, \"AREAWATER\": 0.047000, \"POP_CL\": 6, \"POP2000\": 32498, \"WHITE\": 10572, \"BLACK\": 18594, \"AMERI_ES\": 86, \"ASIAN\": 59, \"HAWN_PI\": 22, \"OTHER\": 1783, \"MULT_RACE\": 1382, \"HISPANIC\": 13016, \"MALES\": 15897, \"FEMALES\": 16601, \"AGE_UNDER5\": 2188, \"AGE_5_17\": 7012, \"AGE_18_21\": 2038, \"AGE_22_29\": 3485, \"AGE_30_39\": 4449, \"AGE_40_49\": 4313, \"AGE_50_64\": 5295, \"AGE_65_UP\": 3718, \"MED_AGE\": 33.800000, \"MED_AGE_M\": 32.000000, \"MED_AGE_F\": 35.400000, \"HOUSEHOLDS\": 9519, \"AVE_HH_SZ\": 3.390000, \"HSEHLD_1_M\": 827, \"HSEHLD_1_F\": 838, \"MARHH_CHD\": 1707, \"MARHH_NO_C\": 2259, \"MHH_CHILD\": 324, \"FHH_CHILD\": 1154, \"FAMILIES\": 7386, \"AVE_FAM_SZ\": 3.750000, \"HSE_UNITS\": 10298, \"VACANT\": 779, \"OWNER_OCC\": 6114, \"RENTER_OCC\": 3405 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.23702060970102, 25.856922954519078 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Weston\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"76582\", \"CAPITAL\": \"N\", \"AREALAND\": 23.761000, \"AREAWATER\": 2.516000, \"POP_CL\": 6, \"POP2000\": 49286, \"WHITE\": 43286, \"BLACK\": 1832, \"AMERI_ES\": 58, \"ASIAN\": 1561, \"HAWN_PI\": 8, \"OTHER\": 1443, \"MULT_RACE\": 1098, \"HISPANIC\": 14880, \"MALES\": 23892, \"FEMALES\": 25394, \"AGE_UNDER5\": 4427, \"AGE_5_17\": 11540, \"AGE_18_21\": 1479, \"AGE_22_29\": 3635, \"AGE_30_39\": 10092, \"AGE_40_49\": 8837, \"AGE_50_64\": 5963, \"AGE_65_UP\": 3313, \"MED_AGE\": 34.100000, \"MED_AGE_M\": 34.000000, \"MED_AGE_F\": 34.200000, \"HOUSEHOLDS\": 16576, \"AVE_HH_SZ\": 2.970000, \"HSEHLD_1_M\": 1025, \"HSEHLD_1_F\": 1259, \"MARHH_CHD\": 7252, \"MARHH_NO_C\": 4519, \"MHH_CHILD\": 226, \"FHH_CHILD\": 1019, \"FAMILIES\": 13651, \"AVE_FAM_SZ\": 3.290000, \"HSE_UNITS\": 18943, \"VACANT\": 2367, \"OWNER_OCC\": 13567, \"RENTER_OCC\": 3009 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.388151546133884, 26.107533955078221 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"West Palm Beach\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"76600\", \"CAPITAL\": \"N\", \"AREALAND\": 55.141000, \"AREAWATER\": 3.059000, \"POP_CL\": 7, \"POP2000\": 82103, \"WHITE\": 47696, \"BLACK\": 26446, \"AMERI_ES\": 274, \"ASIAN\": 1197, \"HAWN_PI\": 133, \"OTHER\": 3568, \"MULT_RACE\": 2789, \"HISPANIC\": 14955, \"MALES\": 40491, \"FEMALES\": 41612, \"AGE_UNDER5\": 4982, \"AGE_5_17\": 12540, \"AGE_18_21\": 4595, \"AGE_22_29\": 10070, \"AGE_30_39\": 13195, \"AGE_40_49\": 11446, \"AGE_50_64\": 12134, \"AGE_65_UP\": 13141, \"MED_AGE\": 36.700000, \"MED_AGE_M\": 35.400000, \"MED_AGE_F\": 38.300000, \"HOUSEHOLDS\": 34769, \"AVE_HH_SZ\": 2.260000, \"HSEHLD_1_M\": 6196, \"HSEHLD_1_F\": 6879, \"MARHH_CHD\": 4316, \"MARHH_NO_C\": 7594, \"MHH_CHILD\": 724, \"FHH_CHILD\": 2761, \"FAMILIES\": 18270, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 40461, \"VACANT\": 5692, \"OWNER_OCC\": 18080, \"RENTER_OCC\": 16689 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.064373768856697, 26.70999195518203 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"West Pensacola\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"76675\", \"CAPITAL\": \"N\", \"AREALAND\": 7.367000, \"AREAWATER\": 0.076000, \"POP_CL\": 6, \"POP2000\": 21939, \"WHITE\": 12737, \"BLACK\": 7391, \"AMERI_ES\": 271, \"ASIAN\": 747, \"HAWN_PI\": 42, \"OTHER\": 164, \"MULT_RACE\": 587, \"HISPANIC\": 571, \"MALES\": 10462, \"FEMALES\": 11477, \"AGE_UNDER5\": 1631, \"AGE_5_17\": 4469, \"AGE_18_21\": 1324, \"AGE_22_29\": 2344, \"AGE_30_39\": 3120, \"AGE_40_49\": 3119, \"AGE_50_64\": 3050, \"AGE_65_UP\": 2882, \"MED_AGE\": 34.300000, \"MED_AGE_M\": 33.000000, \"MED_AGE_F\": 35.300000, \"HOUSEHOLDS\": 8818, \"AVE_HH_SZ\": 2.470000, \"HSEHLD_1_M\": 1270, \"HSEHLD_1_F\": 1434, \"MARHH_CHD\": 1222, \"MARHH_NO_C\": 1863, \"MHH_CHILD\": 236, \"FHH_CHILD\": 1184, \"FAMILIES\": 5503, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 9886, \"VACANT\": 1068, \"OWNER_OCC\": 4995, \"RENTER_OCC\": 3823 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.260719998829558, 30.427546998921255 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Westwood Lakes\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"77075\", \"CAPITAL\": \"N\", \"AREALAND\": 1.723000, \"AREAWATER\": 0.091000, \"POP_CL\": 6, \"POP2000\": 12005, \"WHITE\": 11159, \"BLACK\": 95, \"AMERI_ES\": 11, \"ASIAN\": 129, \"HAWN_PI\": 0, \"OTHER\": 345, \"MULT_RACE\": 266, \"HISPANIC\": 9164, \"MALES\": 5753, \"FEMALES\": 6252, \"AGE_UNDER5\": 637, \"AGE_5_17\": 1896, \"AGE_18_21\": 550, \"AGE_22_29\": 1182, \"AGE_30_39\": 1876, \"AGE_40_49\": 1514, \"AGE_50_64\": 2310, \"AGE_65_UP\": 2040, \"MED_AGE\": 39.300000, \"MED_AGE_M\": 37.500000, \"MED_AGE_F\": 41.100000, \"HOUSEHOLDS\": 3477, \"AVE_HH_SZ\": 3.410000, \"HSEHLD_1_M\": 151, \"HSEHLD_1_F\": 226, \"MARHH_CHD\": 937, \"MARHH_NO_C\": 1340, \"MHH_CHILD\": 52, \"FHH_CHILD\": 180, \"FAMILIES\": 2969, \"AVE_FAM_SZ\": 3.540000, \"HSE_UNITS\": 3524, \"VACANT\": 47, \"OWNER_OCC\": 3011, \"RENTER_OCC\": 466 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.368891535634162, 25.723828954893332 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wilton Manors\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"78000\", \"CAPITAL\": \"N\", \"AREALAND\": 1.943000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12697, \"WHITE\": 10058, \"BLACK\": 1674, \"AMERI_ES\": 31, \"ASIAN\": 204, \"HAWN_PI\": 7, \"OTHER\": 224, \"MULT_RACE\": 499, \"HISPANIC\": 1228, \"MALES\": 7021, \"FEMALES\": 5676, \"AGE_UNDER5\": 621, \"AGE_5_17\": 1485, \"AGE_18_21\": 403, \"AGE_22_29\": 1165, \"AGE_30_39\": 2519, \"AGE_40_49\": 2460, \"AGE_50_64\": 2047, \"AGE_65_UP\": 1997, \"MED_AGE\": 40.500000, \"MED_AGE_M\": 39.600000, \"MED_AGE_F\": 42.100000, \"HOUSEHOLDS\": 5876, \"AVE_HH_SZ\": 2.060000, \"HSEHLD_1_M\": 1472, \"HSEHLD_1_F\": 921, \"MARHH_CHD\": 671, \"MARHH_NO_C\": 999, \"MHH_CHILD\": 109, \"FHH_CHILD\": 285, \"FAMILIES\": 2467, \"AVE_FAM_SZ\": 2.910000, \"HSE_UNITS\": 6321, \"VACANT\": 445, \"OWNER_OCC\": 3380, \"RENTER_OCC\": 2496 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.139516683084722, 26.158711954659331 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Winter Garden\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"78250\", \"CAPITAL\": \"N\", \"AREALAND\": 12.057000, \"AREAWATER\": 0.024000, \"POP_CL\": 6, \"POP2000\": 14351, \"WHITE\": 10993, \"BLACK\": 1902, \"AMERI_ES\": 51, \"ASIAN\": 142, \"HAWN_PI\": 7, \"OTHER\": 925, \"MULT_RACE\": 331, \"HISPANIC\": 2511, \"MALES\": 6873, \"FEMALES\": 7478, \"AGE_UNDER5\": 1068, \"AGE_5_17\": 2654, \"AGE_18_21\": 709, \"AGE_22_29\": 1553, \"AGE_30_39\": 2429, \"AGE_40_49\": 1941, \"AGE_50_64\": 1952, \"AGE_65_UP\": 2045, \"MED_AGE\": 35.200000, \"MED_AGE_M\": 33.700000, \"MED_AGE_F\": 36.300000, \"HOUSEHOLDS\": 5380, \"AVE_HH_SZ\": 2.600000, \"HSEHLD_1_M\": 537, \"HSEHLD_1_F\": 819, \"MARHH_CHD\": 1201, \"MARHH_NO_C\": 1426, \"MHH_CHILD\": 121, \"FHH_CHILD\": 464, \"FAMILIES\": 3664, \"AVE_FAM_SZ\": 3.110000, \"HSE_UNITS\": 5861, \"VACANT\": 481, \"OWNER_OCC\": 3454, \"RENTER_OCC\": 1926 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.584069230027012, 28.560327961233831 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Winter Haven\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"78275\", \"CAPITAL\": \"N\", \"AREALAND\": 17.678000, \"AREAWATER\": 7.738000, \"POP_CL\": 6, \"POP2000\": 26487, \"WHITE\": 18941, \"BLACK\": 6134, \"AMERI_ES\": 50, \"ASIAN\": 269, \"HAWN_PI\": 10, \"OTHER\": 496, \"MULT_RACE\": 587, \"HISPANIC\": 1309, \"MALES\": 12180, \"FEMALES\": 14307, \"AGE_UNDER5\": 1507, \"AGE_5_17\": 4033, \"AGE_18_21\": 1043, \"AGE_22_29\": 2199, \"AGE_30_39\": 3145, \"AGE_40_49\": 3208, \"AGE_50_64\": 4092, \"AGE_65_UP\": 7260, \"MED_AGE\": 44.000000, \"MED_AGE_M\": 41.200000, \"MED_AGE_F\": 46.800000, \"HOUSEHOLDS\": 11833, \"AVE_HH_SZ\": 2.170000, \"HSEHLD_1_M\": 1610, \"HSEHLD_1_F\": 2647, \"MARHH_CHD\": 1469, \"MARHH_NO_C\": 3512, \"MHH_CHILD\": 206, \"FHH_CHILD\": 880, \"FAMILIES\": 6940, \"AVE_FAM_SZ\": 2.810000, \"HSE_UNITS\": 13912, \"VACANT\": 2079, \"OWNER_OCC\": 6995, \"RENTER_OCC\": 4838 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.721680185533032, 28.034313964147298 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Winter Park\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"78300\", \"CAPITAL\": \"N\", \"AREALAND\": 7.341000, \"AREAWATER\": 1.313000, \"POP_CL\": 6, \"POP2000\": 24090, \"WHITE\": 20694, \"BLACK\": 2534, \"AMERI_ES\": 39, \"ASIAN\": 317, \"HAWN_PI\": 6, \"OTHER\": 226, \"MULT_RACE\": 274, \"HISPANIC\": 1039, \"MALES\": 10971, \"FEMALES\": 13119, \"AGE_UNDER5\": 1191, \"AGE_5_17\": 3273, \"AGE_18_21\": 1671, \"AGE_22_29\": 1884, \"AGE_30_39\": 3002, \"AGE_40_49\": 3574, \"AGE_50_64\": 3974, \"AGE_65_UP\": 5521, \"MED_AGE\": 42.800000, \"MED_AGE_M\": 40.400000, \"MED_AGE_F\": 45.200000, \"HOUSEHOLDS\": 10722, \"AVE_HH_SZ\": 2.100000, \"HSEHLD_1_M\": 1385, \"HSEHLD_1_F\": 2729, \"MARHH_CHD\": 1682, \"MARHH_NO_C\": 2955, \"MHH_CHILD\": 113, \"FHH_CHILD\": 514, \"FAMILIES\": 5865, \"AVE_FAM_SZ\": 2.800000, \"HSE_UNITS\": 11431, \"VACANT\": 709, \"OWNER_OCC\": 7016, \"RENTER_OCC\": 3706 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.346531293571914, 28.596230958456786 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Winter Springs\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"78325\", \"CAPITAL\": \"N\", \"AREALAND\": 14.346000, \"AREAWATER\": 0.138000, \"POP_CL\": 6, \"POP2000\": 31666, \"WHITE\": 28098, \"BLACK\": 1452, \"AMERI_ES\": 59, \"ASIAN\": 615, \"HAWN_PI\": 14, \"OTHER\": 799, \"MULT_RACE\": 629, \"HISPANIC\": 3330, \"MALES\": 15368, \"FEMALES\": 16298, \"AGE_UNDER5\": 1898, \"AGE_5_17\": 6662, \"AGE_18_21\": 1402, \"AGE_22_29\": 2488, \"AGE_30_39\": 4852, \"AGE_40_49\": 5610, \"AGE_50_64\": 5321, \"AGE_65_UP\": 3433, \"MED_AGE\": 37.400000, \"MED_AGE_M\": 36.300000, \"MED_AGE_F\": 38.300000, \"HOUSEHOLDS\": 11774, \"AVE_HH_SZ\": 2.690000, \"HSEHLD_1_M\": 875, \"HSEHLD_1_F\": 1335, \"MARHH_CHD\": 3458, \"MARHH_NO_C\": 3745, \"MHH_CHILD\": 218, \"FHH_CHILD\": 812, \"FAMILIES\": 8902, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 12306, \"VACANT\": 532, \"OWNER_OCC\": 9458, \"RENTER_OCC\": 2316 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.278855317608119, 28.693220957484709 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wright\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"78800\", \"CAPITAL\": \"N\", \"AREALAND\": 5.469000, \"AREAWATER\": 0.069000, \"POP_CL\": 6, \"POP2000\": 21697, \"WHITE\": 16491, \"BLACK\": 3045, \"AMERI_ES\": 128, \"ASIAN\": 738, \"HAWN_PI\": 41, \"OTHER\": 333, \"MULT_RACE\": 921, \"HISPANIC\": 1136, \"MALES\": 10906, \"FEMALES\": 10791, \"AGE_UNDER5\": 1385, \"AGE_5_17\": 3643, \"AGE_18_21\": 1417, \"AGE_22_29\": 3195, \"AGE_30_39\": 3709, \"AGE_40_49\": 3208, \"AGE_50_64\": 2922, \"AGE_65_UP\": 2218, \"MED_AGE\": 33.600000, \"MED_AGE_M\": 32.100000, \"MED_AGE_F\": 35.300000, \"HOUSEHOLDS\": 9134, \"AVE_HH_SZ\": 2.310000, \"HSEHLD_1_M\": 1346, \"HSEHLD_1_F\": 1308, \"MARHH_CHD\": 1605, \"MARHH_NO_C\": 2314, \"MHH_CHILD\": 251, \"FHH_CHILD\": 794, \"FAMILIES\": 5507, \"AVE_FAM_SZ\": 2.840000, \"HSE_UNITS\": 10004, \"VACANT\": 870, \"OWNER_OCC\": 5009, \"RENTER_OCC\": 4125 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.635419998154646, 30.446372997996107 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Yeehaw Junction\", \"CLASS\": \"CDP\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"78975\", \"CAPITAL\": \"N\", \"AREALAND\": 5.596000, \"AREAWATER\": 0.023000, \"POP_CL\": 6, \"POP2000\": 21778, \"WHITE\": 13647, \"BLACK\": 2565, \"AMERI_ES\": 82, \"ASIAN\": 584, \"HAWN_PI\": 20, \"OTHER\": 3806, \"MULT_RACE\": 1074, \"HISPANIC\": 11898, \"MALES\": 10519, \"FEMALES\": 11259, \"AGE_UNDER5\": 1417, \"AGE_5_17\": 4914, \"AGE_18_21\": 1247, \"AGE_22_29\": 2182, \"AGE_30_39\": 3223, \"AGE_40_49\": 3189, \"AGE_50_64\": 3200, \"AGE_65_UP\": 2406, \"MED_AGE\": 33.500000, \"MED_AGE_M\": 32.000000, \"MED_AGE_F\": 34.900000, \"HOUSEHOLDS\": 6901, \"AVE_HH_SZ\": 3.150000, \"HSEHLD_1_M\": 365, \"HSEHLD_1_F\": 545, \"MARHH_CHD\": 2011, \"MARHH_NO_C\": 2135, \"MHH_CHILD\": 185, \"FHH_CHILD\": 663, \"FAMILIES\": 5648, \"AVE_FAM_SZ\": 3.420000, \"HSE_UNITS\": 7931, \"VACANT\": 1030, \"OWNER_OCC\": 5100, \"RENTER_OCC\": 1801 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.351657282387492, 28.330819959192528 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Zephyrhills\", \"CLASS\": \"city\", \"ST\": \"FL\", \"STFIPS\": \"12\", \"PLACEFIP\": \"79225\", \"CAPITAL\": \"N\", \"AREALAND\": 6.268000, \"AREAWATER\": 0.074000, \"POP_CL\": 6, \"POP2000\": 10833, \"WHITE\": 10035, \"BLACK\": 302, \"AMERI_ES\": 25, \"ASIAN\": 121, \"HAWN_PI\": 3, \"OTHER\": 173, \"MULT_RACE\": 174, \"HISPANIC\": 545, \"MALES\": 4925, \"FEMALES\": 5908, \"AGE_UNDER5\": 593, \"AGE_5_17\": 1370, \"AGE_18_21\": 390, \"AGE_22_29\": 841, \"AGE_30_39\": 1198, \"AGE_40_49\": 1139, \"AGE_50_64\": 1751, \"AGE_65_UP\": 3551, \"MED_AGE\": 49.000000, \"MED_AGE_M\": 45.000000, \"MED_AGE_F\": 51.900000, \"HOUSEHOLDS\": 4944, \"AVE_HH_SZ\": 2.100000, \"HSEHLD_1_M\": 590, \"HSEHLD_1_F\": 1108, \"MARHH_CHD\": 590, \"MARHH_NO_C\": 1708, \"MHH_CHILD\": 109, \"FHH_CHILD\": 316, \"FAMILIES\": 2988, \"AVE_FAM_SZ\": 2.630000, \"HSE_UNITS\": 6167, \"VACANT\": 1223, \"OWNER_OCC\": 3433, \"RENTER_OCC\": 1511 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.179561114569694, 28.237136969291907 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Acworth\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"00408\", \"CAPITAL\": \"N\", \"AREALAND\": 7.076000, \"AREAWATER\": 0.527000, \"POP_CL\": 6, \"POP2000\": 13422, \"WHITE\": 10692, \"BLACK\": 1696, \"AMERI_ES\": 28, \"ASIAN\": 309, \"HAWN_PI\": 3, \"OTHER\": 426, \"MULT_RACE\": 268, \"HISPANIC\": 812, \"MALES\": 6553, \"FEMALES\": 6869, \"AGE_UNDER5\": 1341, \"AGE_5_17\": 2289, \"AGE_18_21\": 611, \"AGE_22_29\": 2204, \"AGE_30_39\": 2951, \"AGE_40_49\": 1651, \"AGE_50_64\": 1403, \"AGE_65_UP\": 972, \"MED_AGE\": 30.700000, \"MED_AGE_M\": 30.300000, \"MED_AGE_F\": 31.200000, \"HOUSEHOLDS\": 5194, \"AVE_HH_SZ\": 2.580000, \"HSEHLD_1_M\": 504, \"HSEHLD_1_F\": 716, \"MARHH_CHD\": 1515, \"MARHH_NO_C\": 1336, \"MHH_CHILD\": 94, \"FHH_CHILD\": 350, \"FAMILIES\": 3589, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 5453, \"VACANT\": 259, \"OWNER_OCC\": 3829, \"RENTER_OCC\": 1365 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.669885012144462, 34.062731986723612 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Albany\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"01052\", \"CAPITAL\": \"N\", \"AREALAND\": 55.533000, \"AREAWATER\": 0.330000, \"POP_CL\": 7, \"POP2000\": 76939, \"WHITE\": 25553, \"BLACK\": 49855, \"AMERI_ES\": 160, \"ASIAN\": 459, \"HAWN_PI\": 22, \"OTHER\": 346, \"MULT_RACE\": 544, \"HISPANIC\": 950, \"MALES\": 35425, \"FEMALES\": 41514, \"AGE_UNDER5\": 6009, \"AGE_5_17\": 15414, \"AGE_18_21\": 6218, \"AGE_22_29\": 9593, \"AGE_30_39\": 10367, \"AGE_40_49\": 10075, \"AGE_50_64\": 10157, \"AGE_65_UP\": 9106, \"MED_AGE\": 31.100000, \"MED_AGE_M\": 29.200000, \"MED_AGE_F\": 33.100000, \"HOUSEHOLDS\": 28620, \"AVE_HH_SZ\": 2.540000, \"HSEHLD_1_M\": 3382, \"HSEHLD_1_F\": 4874, \"MARHH_CHD\": 4317, \"MARHH_NO_C\": 6156, \"MHH_CHILD\": 566, \"FHH_CHILD\": 4375, \"FAMILIES\": 18883, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 32062, \"VACANT\": 3442, \"OWNER_OCC\": 13556, \"RENTER_OCC\": 15064 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.165557013870725, 31.582272985231278 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Alpharetta\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"01696\", \"CAPITAL\": \"N\", \"AREALAND\": 21.362000, \"AREAWATER\": 0.015000, \"POP_CL\": 6, \"POP2000\": 34854, \"WHITE\": 29150, \"BLACK\": 2256, \"AMERI_ES\": 68, \"ASIAN\": 1998, \"HAWN_PI\": 7, \"OTHER\": 853, \"MULT_RACE\": 522, \"HISPANIC\": 1927, \"MALES\": 17276, \"FEMALES\": 17578, \"AGE_UNDER5\": 2959, \"AGE_5_17\": 6468, \"AGE_18_21\": 1207, \"AGE_22_29\": 4446, \"AGE_30_39\": 7599, \"AGE_40_49\": 5944, \"AGE_50_64\": 4198, \"AGE_65_UP\": 2033, \"MED_AGE\": 33.300000, \"MED_AGE_M\": 32.200000, \"MED_AGE_F\": 34.300000, \"HOUSEHOLDS\": 13911, \"AVE_HH_SZ\": 2.500000, \"HSEHLD_1_M\": 1592, \"HSEHLD_1_F\": 2255, \"MARHH_CHD\": 4216, \"MARHH_NO_C\": 3312, \"MHH_CHILD\": 184, \"FHH_CHILD\": 641, \"FAMILIES\": 8921, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 14670, \"VACANT\": 759, \"OWNER_OCC\": 8387, \"RENTER_OCC\": 5524 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.281086022401993, 34.073317982916031 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Americus\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"02116\", \"CAPITAL\": \"N\", \"AREALAND\": 10.482000, \"AREAWATER\": 0.203000, \"POP_CL\": 6, \"POP2000\": 17013, \"WHITE\": 6644, \"BLACK\": 9912, \"AMERI_ES\": 39, \"ASIAN\": 146, \"HAWN_PI\": 2, \"OTHER\": 153, \"MULT_RACE\": 117, \"HISPANIC\": 423, \"MALES\": 7530, \"FEMALES\": 9483, \"AGE_UNDER5\": 1463, \"AGE_5_17\": 3308, \"AGE_18_21\": 1470, \"AGE_22_29\": 2236, \"AGE_30_39\": 2165, \"AGE_40_49\": 1908, \"AGE_50_64\": 2128, \"AGE_65_UP\": 2335, \"MED_AGE\": 30.200000, \"MED_AGE_M\": 27.200000, \"MED_AGE_F\": 33.000000, \"HOUSEHOLDS\": 6374, \"AVE_HH_SZ\": 2.520000, \"HSEHLD_1_M\": 663, \"HSEHLD_1_F\": 1222, \"MARHH_CHD\": 909, \"MARHH_NO_C\": 1272, \"MHH_CHILD\": 87, \"FHH_CHILD\": 1097, \"FAMILIES\": 4147, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 7053, \"VACANT\": 679, \"OWNER_OCC\": 3202, \"RENTER_OCC\": 3172 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.226602014505332, 32.075220985137932 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Athens-Clarke County\", \"CLASS\": \"city (consolidated, balance)\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"03440\", \"CAPITAL\": \"N\", \"AREALAND\": 117.752000, \"AREAWATER\": 0.481000, \"POP_CL\": 8, \"POP2000\": 100266, \"WHITE\": 64878, \"BLACK\": 27442, \"AMERI_ES\": 210, \"ASIAN\": 3158, \"HAWN_PI\": 45, \"OTHER\": 3115, \"MULT_RACE\": 1418, \"HISPANIC\": 6402, \"MALES\": 48961, \"FEMALES\": 51305, \"AGE_UNDER5\": 5204, \"AGE_5_17\": 12602, \"AGE_18_21\": 20661, \"AGE_22_29\": 20715, \"AGE_30_39\": 12460, \"AGE_40_49\": 10229, \"AGE_50_64\": 10336, \"AGE_65_UP\": 8059, \"MED_AGE\": 25.300000, \"MED_AGE_M\": 25.000000, \"MED_AGE_F\": 25.600000, \"HOUSEHOLDS\": 39239, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 5320, \"HSEHLD_1_F\": 6395, \"MARHH_CHD\": 5183, \"MARHH_NO_C\": 7495, \"MHH_CHILD\": 476, \"FHH_CHILD\": 3097, \"FAMILIES\": 19333, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 41633, \"VACANT\": 2394, \"OWNER_OCC\": 16294, \"RENTER_OCC\": 22945 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.383245071310114, 33.955463971627069 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Atlanta\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"04000\", \"CAPITAL\": \"Y\", \"AREALAND\": 131.746000, \"AREAWATER\": 0.678000, \"POP_CL\": 8, \"POP2000\": 416474, \"WHITE\": 138352, \"BLACK\": 255689, \"AMERI_ES\": 765, \"ASIAN\": 8046, \"HAWN_PI\": 173, \"OTHER\": 8272, \"MULT_RACE\": 5177, \"HISPANIC\": 18720, \"MALES\": 206725, \"FEMALES\": 209749, \"AGE_UNDER5\": 26666, \"AGE_5_17\": 66338, \"AGE_18_21\": 31844, \"AGE_22_29\": 66876, \"AGE_30_39\": 73134, \"AGE_40_49\": 56907, \"AGE_50_64\": 54174, \"AGE_65_UP\": 40535, \"MED_AGE\": 31.900000, \"MED_AGE_M\": 31.200000, \"MED_AGE_F\": 32.900000, \"HOUSEHOLDS\": 168147, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 30545, \"HSEHLD_1_F\": 34114, \"MARHH_CHD\": 15465, \"MARHH_NO_C\": 25734, \"MHH_CHILD\": 2489, \"FHH_CHILD\": 19780, \"FAMILIES\": 83182, \"AVE_FAM_SZ\": 3.160000, \"HSE_UNITS\": 186925, \"VACANT\": 18778, \"OWNER_OCC\": 73473, \"RENTER_OCC\": 94674 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.403176017276238, 33.759505984597887 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Augusta-Richmond County\", \"CLASS\": \"city (consolidated, balance)\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"04204\", \"CAPITAL\": \"N\", \"AREALAND\": 302.130000, \"AREAWATER\": 4.347000, \"POP_CL\": 8, \"POP2000\": 195182, \"WHITE\": 87651, \"BLACK\": 98320, \"AMERI_ES\": 536, \"ASIAN\": 2976, \"HAWN_PI\": 238, \"OTHER\": 1993, \"MULT_RACE\": 3468, \"HISPANIC\": 5447, \"MALES\": 94141, \"FEMALES\": 101041, \"AGE_UNDER5\": 13943, \"AGE_5_17\": 38331, \"AGE_18_21\": 13857, \"AGE_22_29\": 25025, \"AGE_30_39\": 28172, \"AGE_40_49\": 27941, \"AGE_50_64\": 26685, \"AGE_65_UP\": 21228, \"MED_AGE\": 32.300000, \"MED_AGE_M\": 30.300000, \"MED_AGE_F\": 34.300000, \"HOUSEHOLDS\": 72307, \"AVE_HH_SZ\": 2.550000, \"HSEHLD_1_M\": 8616, \"HSEHLD_1_F\": 11546, \"MARHH_CHD\": 13374, \"MARHH_NO_C\": 16608, \"MHH_CHILD\": 1597, \"FHH_CHILD\": 9249, \"FAMILIES\": 48234, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 80481, \"VACANT\": 8174, \"OWNER_OCC\": 41563, \"RENTER_OCC\": 30744 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.02204828482266, 33.433270950134975 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bainbridge\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"04896\", \"CAPITAL\": \"N\", \"AREALAND\": 17.712000, \"AREAWATER\": 1.163000, \"POP_CL\": 6, \"POP2000\": 11722, \"WHITE\": 5566, \"BLACK\": 5901, \"AMERI_ES\": 14, \"ASIAN\": 75, \"HAWN_PI\": 2, \"OTHER\": 92, \"MULT_RACE\": 72, \"HISPANIC\": 234, \"MALES\": 5360, \"FEMALES\": 6362, \"AGE_UNDER5\": 966, \"AGE_5_17\": 2321, \"AGE_18_21\": 689, \"AGE_22_29\": 1281, \"AGE_30_39\": 1573, \"AGE_40_49\": 1518, \"AGE_50_64\": 1504, \"AGE_65_UP\": 1870, \"MED_AGE\": 33.900000, \"MED_AGE_M\": 31.600000, \"MED_AGE_F\": 36.100000, \"HOUSEHOLDS\": 4444, \"AVE_HH_SZ\": 2.520000, \"HSEHLD_1_M\": 454, \"HSEHLD_1_F\": 814, \"MARHH_CHD\": 745, \"MARHH_NO_C\": 1021, \"MHH_CHILD\": 95, \"FHH_CHILD\": 659, \"FAMILIES\": 3013, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 5051, \"VACANT\": 607, \"OWNER_OCC\": 2661, \"RENTER_OCC\": 1783 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.571013004081237, 30.90484598928316 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Belvedere Park\", \"CLASS\": \"CDP\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"06884\", \"CAPITAL\": \"N\", \"AREALAND\": 4.983000, \"AREAWATER\": 0.002000, \"POP_CL\": 6, \"POP2000\": 18945, \"WHITE\": 2494, \"BLACK\": 15607, \"AMERI_ES\": 35, \"ASIAN\": 178, \"HAWN_PI\": 4, \"OTHER\": 320, \"MULT_RACE\": 307, \"HISPANIC\": 660, \"MALES\": 8787, \"FEMALES\": 10158, \"AGE_UNDER5\": 1443, \"AGE_5_17\": 4251, \"AGE_18_21\": 1239, \"AGE_22_29\": 2235, \"AGE_30_39\": 3185, \"AGE_40_49\": 2932, \"AGE_50_64\": 2439, \"AGE_65_UP\": 1221, \"MED_AGE\": 30.900000, \"MED_AGE_M\": 28.500000, \"MED_AGE_F\": 33.200000, \"HOUSEHOLDS\": 6524, \"AVE_HH_SZ\": 2.900000, \"HSEHLD_1_M\": 652, \"HSEHLD_1_F\": 822, \"MARHH_CHD\": 997, \"MARHH_NO_C\": 1069, \"MHH_CHILD\": 174, \"FHH_CHILD\": 1135, \"FAMILIES\": 4530, \"AVE_FAM_SZ\": 3.430000, \"HSE_UNITS\": 7010, \"VACANT\": 486, \"OWNER_OCC\": 3969, \"RENTER_OCC\": 2555 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.25961702146391, 33.748854983153876 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Brunswick\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"11560\", \"CAPITAL\": \"N\", \"AREALAND\": 17.218000, \"AREAWATER\": 7.976000, \"POP_CL\": 6, \"POP2000\": 15600, \"WHITE\": 5680, \"BLACK\": 9330, \"AMERI_ES\": 42, \"ASIAN\": 55, \"HAWN_PI\": 5, \"OTHER\": 270, \"MULT_RACE\": 218, \"HISPANIC\": 908, \"MALES\": 7330, \"FEMALES\": 8270, \"AGE_UNDER5\": 1178, \"AGE_5_17\": 3083, \"AGE_18_21\": 952, \"AGE_22_29\": 1684, \"AGE_30_39\": 2048, \"AGE_40_49\": 2082, \"AGE_50_64\": 2193, \"AGE_65_UP\": 2380, \"MED_AGE\": 34.800000, \"MED_AGE_M\": 31.600000, \"MED_AGE_F\": 37.400000, \"HOUSEHOLDS\": 6085, \"AVE_HH_SZ\": 2.460000, \"HSEHLD_1_M\": 832, \"HSEHLD_1_F\": 1210, \"MARHH_CHD\": 751, \"MARHH_NO_C\": 1157, \"MHH_CHILD\": 123, \"FHH_CHILD\": 908, \"FAMILIES\": 3682, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 6952, \"VACANT\": 867, \"OWNER_OCC\": 2711, \"RENTER_OCC\": 3374 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.489252355553205, 31.158776951514469 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Buford\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"11784\", \"CAPITAL\": \"N\", \"AREALAND\": 14.727000, \"AREAWATER\": 0.054000, \"POP_CL\": 6, \"POP2000\": 10668, \"WHITE\": 8125, \"BLACK\": 1422, \"AMERI_ES\": 33, \"ASIAN\": 87, \"HAWN_PI\": 4, \"OTHER\": 807, \"MULT_RACE\": 190, \"HISPANIC\": 1842, \"MALES\": 5386, \"FEMALES\": 5282, \"AGE_UNDER5\": 799, \"AGE_5_17\": 2027, \"AGE_18_21\": 621, \"AGE_22_29\": 1441, \"AGE_30_39\": 1807, \"AGE_40_49\": 1554, \"AGE_50_64\": 1347, \"AGE_65_UP\": 1072, \"MED_AGE\": 32.500000, \"MED_AGE_M\": 30.600000, \"MED_AGE_F\": 34.900000, \"HOUSEHOLDS\": 3794, \"AVE_HH_SZ\": 2.760000, \"HSEHLD_1_M\": 481, \"HSEHLD_1_F\": 504, \"MARHH_CHD\": 927, \"MARHH_NO_C\": 895, \"MHH_CHILD\": 97, \"FHH_CHILD\": 294, \"FAMILIES\": 2579, \"AVE_FAM_SZ\": 3.290000, \"HSE_UNITS\": 4044, \"VACANT\": 250, \"OWNER_OCC\": 2324, \"RENTER_OCC\": 1470 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.998535033659763, 34.117079979631193 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Calhoun\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"12456\", \"CAPITAL\": \"N\", \"AREALAND\": 11.653000, \"AREAWATER\": 0.015000, \"POP_CL\": 6, \"POP2000\": 10667, \"WHITE\": 8311, \"BLACK\": 806, \"AMERI_ES\": 45, \"ASIAN\": 107, \"HAWN_PI\": 15, \"OTHER\": 1238, \"MULT_RACE\": 145, \"HISPANIC\": 1821, \"MALES\": 5303, \"FEMALES\": 5364, \"AGE_UNDER5\": 773, \"AGE_5_17\": 1813, \"AGE_18_21\": 671, \"AGE_22_29\": 1453, \"AGE_30_39\": 1617, \"AGE_40_49\": 1379, \"AGE_50_64\": 1523, \"AGE_65_UP\": 1438, \"MED_AGE\": 33.900000, \"MED_AGE_M\": 31.200000, \"MED_AGE_F\": 36.500000, \"HOUSEHOLDS\": 4049, \"AVE_HH_SZ\": 2.560000, \"HSEHLD_1_M\": 420, \"HSEHLD_1_F\": 748, \"MARHH_CHD\": 853, \"MARHH_NO_C\": 1082, \"MHH_CHILD\": 69, \"FHH_CHILD\": 329, \"FAMILIES\": 2673, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 4298, \"VACANT\": 249, \"OWNER_OCC\": 2007, \"RENTER_OCC\": 2042 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.942584008589805, 34.49989798856997 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Candler-McAfee\", \"CLASS\": \"CDP\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"12834\", \"CAPITAL\": \"N\", \"AREALAND\": 6.979000, \"AREAWATER\": 0.015000, \"POP_CL\": 6, \"POP2000\": 28294, \"WHITE\": 936, \"BLACK\": 26926, \"AMERI_ES\": 56, \"ASIAN\": 42, \"HAWN_PI\": 3, \"OTHER\": 117, \"MULT_RACE\": 214, \"HISPANIC\": 264, \"MALES\": 13160, \"FEMALES\": 15134, \"AGE_UNDER5\": 1920, \"AGE_5_17\": 5989, \"AGE_18_21\": 1762, \"AGE_22_29\": 3271, \"AGE_30_39\": 3856, \"AGE_40_49\": 4234, \"AGE_50_64\": 5144, \"AGE_65_UP\": 2118, \"MED_AGE\": 33.300000, \"MED_AGE_M\": 30.400000, \"MED_AGE_F\": 35.700000, \"HOUSEHOLDS\": 9030, \"AVE_HH_SZ\": 3.080000, \"HSEHLD_1_M\": 680, \"HSEHLD_1_F\": 967, \"MARHH_CHD\": 1238, \"MARHH_NO_C\": 2093, \"MHH_CHILD\": 257, \"FHH_CHILD\": 1459, \"FAMILIES\": 6926, \"AVE_FAM_SZ\": 3.460000, \"HSE_UNITS\": 9415, \"VACANT\": 385, \"OWNER_OCC\": 5922, \"RENTER_OCC\": 3108 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.274771020875562, 33.727305983342838 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Carrollton\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"13492\", \"CAPITAL\": \"N\", \"AREALAND\": 20.172000, \"AREAWATER\": 0.520000, \"POP_CL\": 6, \"POP2000\": 19843, \"WHITE\": 12399, \"BLACK\": 6184, \"AMERI_ES\": 44, \"ASIAN\": 251, \"HAWN_PI\": 1, \"OTHER\": 571, \"MULT_RACE\": 393, \"HISPANIC\": 1120, \"MALES\": 9241, \"FEMALES\": 10602, \"AGE_UNDER5\": 1160, \"AGE_5_17\": 2922, \"AGE_18_21\": 3712, \"AGE_22_29\": 3257, \"AGE_30_39\": 2427, \"AGE_40_49\": 2043, \"AGE_50_64\": 2082, \"AGE_65_UP\": 2240, \"MED_AGE\": 26.300000, \"MED_AGE_M\": 25.900000, \"MED_AGE_F\": 27.000000, \"HOUSEHOLDS\": 7121, \"AVE_HH_SZ\": 2.370000, \"HSEHLD_1_M\": 828, \"HSEHLD_1_F\": 1457, \"MARHH_CHD\": 1088, \"MARHH_NO_C\": 1403, \"MHH_CHILD\": 117, \"FHH_CHILD\": 733, \"FAMILIES\": 3968, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 7577, \"VACANT\": 456, \"OWNER_OCC\": 2820, \"RENTER_OCC\": 4301 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.076704004650821, 33.58091199038175 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cartersville\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"13688\", \"CAPITAL\": \"N\", \"AREALAND\": 23.395000, \"AREAWATER\": 0.119000, \"POP_CL\": 6, \"POP2000\": 15925, \"WHITE\": 12187, \"BLACK\": 2714, \"AMERI_ES\": 44, \"ASIAN\": 131, \"HAWN_PI\": 7, \"OTHER\": 598, \"MULT_RACE\": 244, \"HISPANIC\": 1160, \"MALES\": 7777, \"FEMALES\": 8148, \"AGE_UNDER5\": 1107, \"AGE_5_17\": 3011, \"AGE_18_21\": 770, \"AGE_22_29\": 1754, \"AGE_30_39\": 2457, \"AGE_40_49\": 2222, \"AGE_50_64\": 2316, \"AGE_65_UP\": 2288, \"MED_AGE\": 35.600000, \"MED_AGE_M\": 33.500000, \"MED_AGE_F\": 37.600000, \"HOUSEHOLDS\": 5870, \"AVE_HH_SZ\": 2.590000, \"HSEHLD_1_M\": 540, \"HSEHLD_1_F\": 978, \"MARHH_CHD\": 1379, \"MARHH_NO_C\": 1710, \"MHH_CHILD\": 115, \"FHH_CHILD\": 458, \"FAMILIES\": 4130, \"AVE_FAM_SZ\": 3.100000, \"HSE_UNITS\": 6130, \"VACANT\": 260, \"OWNER_OCC\": 3553, \"RENTER_OCC\": 2317 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.803916009964752, 34.176404987756115 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"College Park\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"17776\", \"CAPITAL\": \"N\", \"AREALAND\": 9.706000, \"AREAWATER\": 0.015000, \"POP_CL\": 6, \"POP2000\": 20382, \"WHITE\": 2525, \"BLACK\": 16674, \"AMERI_ES\": 34, \"ASIAN\": 125, \"HAWN_PI\": 1, \"OTHER\": 678, \"MULT_RACE\": 345, \"HISPANIC\": 1398, \"MALES\": 9818, \"FEMALES\": 10564, \"AGE_UNDER5\": 1812, \"AGE_5_17\": 4345, \"AGE_18_21\": 1538, \"AGE_22_29\": 3620, \"AGE_30_39\": 3637, \"AGE_40_49\": 2639, \"AGE_50_64\": 1803, \"AGE_65_UP\": 988, \"MED_AGE\": 27.400000, \"MED_AGE_M\": 26.300000, \"MED_AGE_F\": 28.300000, \"HOUSEHOLDS\": 7810, \"AVE_HH_SZ\": 2.590000, \"HSEHLD_1_M\": 1134, \"HSEHLD_1_F\": 1216, \"MARHH_CHD\": 933, \"MARHH_NO_C\": 855, \"MHH_CHILD\": 291, \"FHH_CHILD\": 1514, \"FAMILIES\": 4602, \"AVE_FAM_SZ\": 3.240000, \"HSE_UNITS\": 8351, \"VACANT\": 541, \"OWNER_OCC\": 1591, \"RENTER_OCC\": 6219 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.456007015433102, 33.648208985251635 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Columbus\", \"CLASS\": \"city (consolidated, balance)\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"19007\", \"CAPITAL\": \"N\", \"AREALAND\": 216.091000, \"AREAWATER\": 4.739000, \"POP_CL\": 8, \"POP2000\": 185781, \"WHITE\": 93466, \"BLACK\": 81466, \"AMERI_ES\": 711, \"ASIAN\": 2863, \"HAWN_PI\": 269, \"OTHER\": 3532, \"MULT_RACE\": 3474, \"HISPANIC\": 8368, \"MALES\": 90375, \"FEMALES\": 95406, \"AGE_UNDER5\": 13639, \"AGE_5_17\": 36240, \"AGE_18_21\": 13300, \"AGE_22_29\": 23078, \"AGE_30_39\": 26898, \"AGE_40_49\": 26658, \"AGE_50_64\": 24236, \"AGE_65_UP\": 21732, \"MED_AGE\": 32.600000, \"MED_AGE_M\": 29.800000, \"MED_AGE_F\": 35.300000, \"HOUSEHOLDS\": 69599, \"AVE_HH_SZ\": 2.540000, \"HSEHLD_1_M\": 7588, \"HSEHLD_1_F\": 10991, \"MARHH_CHD\": 14412, \"MARHH_NO_C\": 16694, \"MHH_CHILD\": 1437, \"FHH_CHILD\": 8253, \"FAMILIES\": 47560, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 75940, \"VACANT\": 6341, \"OWNER_OCC\": 39244, \"RENTER_OCC\": 30355 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.940422003721949, 32.489607990377252 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Conyers\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"19336\", \"CAPITAL\": \"N\", \"AREALAND\": 11.781000, \"AREAWATER\": 0.143000, \"POP_CL\": 6, \"POP2000\": 10689, \"WHITE\": 6231, \"BLACK\": 3572, \"AMERI_ES\": 34, \"ASIAN\": 278, \"HAWN_PI\": 5, \"OTHER\": 404, \"MULT_RACE\": 165, \"HISPANIC\": 1153, \"MALES\": 5192, \"FEMALES\": 5497, \"AGE_UNDER5\": 836, \"AGE_5_17\": 2082, \"AGE_18_21\": 734, \"AGE_22_29\": 1611, \"AGE_30_39\": 1767, \"AGE_40_49\": 1387, \"AGE_50_64\": 1247, \"AGE_65_UP\": 1025, \"MED_AGE\": 30.400000, \"MED_AGE_M\": 28.600000, \"MED_AGE_F\": 32.500000, \"HOUSEHOLDS\": 3910, \"AVE_HH_SZ\": 2.670000, \"HSEHLD_1_M\": 431, \"HSEHLD_1_F\": 603, \"MARHH_CHD\": 687, \"MARHH_NO_C\": 779, \"MHH_CHILD\": 114, \"FHH_CHILD\": 537, \"FAMILIES\": 2559, \"AVE_FAM_SZ\": 3.170000, \"HSE_UNITS\": 4183, \"VACANT\": 273, \"OWNER_OCC\": 1498, \"RENTER_OCC\": 2412 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.00757403031777, 33.666359980496573 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cordele\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"19616\", \"CAPITAL\": \"N\", \"AREALAND\": 9.495000, \"AREAWATER\": 0.081000, \"POP_CL\": 6, \"POP2000\": 11608, \"WHITE\": 3703, \"BLACK\": 7549, \"AMERI_ES\": 7, \"ASIAN\": 98, \"HAWN_PI\": 7, \"OTHER\": 138, \"MULT_RACE\": 106, \"HISPANIC\": 226, \"MALES\": 5221, \"FEMALES\": 6387, \"AGE_UNDER5\": 1025, \"AGE_5_17\": 2644, \"AGE_18_21\": 718, \"AGE_22_29\": 1241, \"AGE_30_39\": 1444, \"AGE_40_49\": 1421, \"AGE_50_64\": 1430, \"AGE_65_UP\": 1685, \"MED_AGE\": 31.200000, \"MED_AGE_M\": 28.800000, \"MED_AGE_F\": 34.000000, \"HOUSEHOLDS\": 4303, \"AVE_HH_SZ\": 2.590000, \"HSEHLD_1_M\": 479, \"HSEHLD_1_F\": 823, \"MARHH_CHD\": 547, \"MARHH_NO_C\": 793, \"MHH_CHILD\": 81, \"FHH_CHILD\": 896, \"FAMILIES\": 2840, \"AVE_FAM_SZ\": 3.220000, \"HSE_UNITS\": 4782, \"VACANT\": 479, \"OWNER_OCC\": 1869, \"RENTER_OCC\": 2434 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.777277028869563, 31.964177980757807 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Covington\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"20064\", \"CAPITAL\": \"N\", \"AREALAND\": 13.760000, \"AREAWATER\": 0.099000, \"POP_CL\": 6, \"POP2000\": 11547, \"WHITE\": 5953, \"BLACK\": 5259, \"AMERI_ES\": 21, \"ASIAN\": 63, \"HAWN_PI\": 5, \"OTHER\": 109, \"MULT_RACE\": 137, \"HISPANIC\": 331, \"MALES\": 5420, \"FEMALES\": 6127, \"AGE_UNDER5\": 783, \"AGE_5_17\": 2395, \"AGE_18_21\": 612, \"AGE_22_29\": 1242, \"AGE_30_39\": 1576, \"AGE_40_49\": 1535, \"AGE_50_64\": 1674, \"AGE_65_UP\": 1730, \"MED_AGE\": 34.600000, \"MED_AGE_M\": 31.700000, \"MED_AGE_F\": 37.300000, \"HOUSEHOLDS\": 4261, \"AVE_HH_SZ\": 2.620000, \"HSEHLD_1_M\": 423, \"HSEHLD_1_F\": 719, \"MARHH_CHD\": 665, \"MARHH_NO_C\": 1039, \"MHH_CHILD\": 93, \"FHH_CHILD\": 579, \"FAMILIES\": 2907, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 4542, \"VACANT\": 281, \"OWNER_OCC\": 2214, \"RENTER_OCC\": 2047 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.85872903666872, 33.599242978836493 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Dalton\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"21380\", \"CAPITAL\": \"N\", \"AREALAND\": 19.825000, \"AREAWATER\": 0.015000, \"POP_CL\": 6, \"POP2000\": 27912, \"WHITE\": 18468, \"BLACK\": 2153, \"AMERI_ES\": 123, \"ASIAN\": 478, \"HAWN_PI\": 15, \"OTHER\": 5904, \"MULT_RACE\": 771, \"HISPANIC\": 11219, \"MALES\": 14232, \"FEMALES\": 13680, \"AGE_UNDER5\": 2474, \"AGE_5_17\": 5133, \"AGE_18_21\": 1866, \"AGE_22_29\": 3938, \"AGE_30_39\": 4301, \"AGE_40_49\": 3388, \"AGE_50_64\": 3610, \"AGE_65_UP\": 3202, \"MED_AGE\": 31.100000, \"MED_AGE_M\": 29.700000, \"MED_AGE_F\": 32.900000, \"HOUSEHOLDS\": 9689, \"AVE_HH_SZ\": 2.810000, \"HSEHLD_1_M\": 1048, \"HSEHLD_1_F\": 1624, \"MARHH_CHD\": 2496, \"MARHH_NO_C\": 2337, \"MHH_CHILD\": 238, \"FHH_CHILD\": 588, \"FAMILIES\": 6515, \"AVE_FAM_SZ\": 3.430000, \"HSE_UNITS\": 10229, \"VACANT\": 540, \"OWNER_OCC\": 4641, \"RENTER_OCC\": 5048 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.971553008856944, 34.771087988546206 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Decatur\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"22052\", \"CAPITAL\": \"N\", \"AREALAND\": 4.178000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 18147, \"WHITE\": 11906, \"BLACK\": 5532, \"AMERI_ES\": 29, \"ASIAN\": 298, \"HAWN_PI\": 6, \"OTHER\": 115, \"MULT_RACE\": 261, \"HISPANIC\": 304, \"MALES\": 7694, \"FEMALES\": 10453, \"AGE_UNDER5\": 1053, \"AGE_5_17\": 2575, \"AGE_18_21\": 1032, \"AGE_22_29\": 2196, \"AGE_30_39\": 3620, \"AGE_40_49\": 2867, \"AGE_50_64\": 2383, \"AGE_65_UP\": 2421, \"MED_AGE\": 36.000000, \"MED_AGE_M\": 35.100000, \"MED_AGE_F\": 36.700000, \"HOUSEHOLDS\": 8051, \"AVE_HH_SZ\": 2.130000, \"HSEHLD_1_M\": 988, \"HSEHLD_1_F\": 2170, \"MARHH_CHD\": 1121, \"MARHH_NO_C\": 1462, \"MHH_CHILD\": 90, \"FHH_CHILD\": 566, \"FAMILIES\": 3854, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 8497, \"VACANT\": 446, \"OWNER_OCC\": 4706, \"RENTER_OCC\": 3345 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.29773202037731, 33.771354983518819 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Douglas\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"23872\", \"CAPITAL\": \"N\", \"AREALAND\": 12.884000, \"AREAWATER\": 0.059000, \"POP_CL\": 6, \"POP2000\": 10639, \"WHITE\": 5150, \"BLACK\": 4823, \"AMERI_ES\": 29, \"ASIAN\": 116, \"HAWN_PI\": 5, \"OTHER\": 404, \"MULT_RACE\": 112, \"HISPANIC\": 736, \"MALES\": 4855, \"FEMALES\": 5784, \"AGE_UNDER5\": 790, \"AGE_5_17\": 2165, \"AGE_18_21\": 810, \"AGE_22_29\": 1106, \"AGE_30_39\": 1425, \"AGE_40_49\": 1340, \"AGE_50_64\": 1458, \"AGE_65_UP\": 1545, \"MED_AGE\": 33.000000, \"MED_AGE_M\": 29.600000, \"MED_AGE_F\": 36.300000, \"HOUSEHOLDS\": 3977, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 371, \"HSEHLD_1_F\": 754, \"MARHH_CHD\": 730, \"MARHH_NO_C\": 912, \"MHH_CHILD\": 77, \"FHH_CHILD\": 486, \"FAMILIES\": 2655, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 4692, \"VACANT\": 715, \"OWNER_OCC\": 2387, \"RENTER_OCC\": 1590 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.850799088939894, 31.507412970048073 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Douglasville\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"23900\", \"CAPITAL\": \"N\", \"AREALAND\": 21.380000, \"AREAWATER\": 0.131000, \"POP_CL\": 6, \"POP2000\": 20065, \"WHITE\": 12809, \"BLACK\": 6077, \"AMERI_ES\": 63, \"ASIAN\": 347, \"HAWN_PI\": 3, \"OTHER\": 339, \"MULT_RACE\": 427, \"HISPANIC\": 800, \"MALES\": 9766, \"FEMALES\": 10299, \"AGE_UNDER5\": 1644, \"AGE_5_17\": 4025, \"AGE_18_21\": 1237, \"AGE_22_29\": 2701, \"AGE_30_39\": 3628, \"AGE_40_49\": 2973, \"AGE_50_64\": 2529, \"AGE_65_UP\": 1328, \"MED_AGE\": 31.300000, \"MED_AGE_M\": 30.200000, \"MED_AGE_F\": 32.200000, \"HOUSEHOLDS\": 7286, \"AVE_HH_SZ\": 2.680000, \"HSEHLD_1_M\": 687, \"HSEHLD_1_F\": 971, \"MARHH_CHD\": 1776, \"MARHH_NO_C\": 1738, \"MHH_CHILD\": 191, \"FHH_CHILD\": 824, \"FAMILIES\": 5078, \"AVE_FAM_SZ\": 3.160000, \"HSE_UNITS\": 7903, \"VACANT\": 617, \"OWNER_OCC\": 4153, \"RENTER_OCC\": 3133 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.723190010093901, 33.749823987525609 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Druid Hills\", \"CLASS\": \"CDP\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"24264\", \"CAPITAL\": \"N\", \"AREALAND\": 4.190000, \"AREAWATER\": 0.021000, \"POP_CL\": 6, \"POP2000\": 12741, \"WHITE\": 10721, \"BLACK\": 764, \"AMERI_ES\": 21, \"ASIAN\": 935, \"HAWN_PI\": 9, \"OTHER\": 82, \"MULT_RACE\": 209, \"HISPANIC\": 309, \"MALES\": 6087, \"FEMALES\": 6654, \"AGE_UNDER5\": 459, \"AGE_5_17\": 1193, \"AGE_18_21\": 3049, \"AGE_22_29\": 2050, \"AGE_30_39\": 1900, \"AGE_40_49\": 1486, \"AGE_50_64\": 1375, \"AGE_65_UP\": 1229, \"MED_AGE\": 28.500000, \"MED_AGE_M\": 28.100000, \"MED_AGE_F\": 28.900000, \"HOUSEHOLDS\": 4627, \"AVE_HH_SZ\": 2.060000, \"HSEHLD_1_M\": 689, \"HSEHLD_1_F\": 1041, \"MARHH_CHD\": 737, \"MARHH_NO_C\": 999, \"MHH_CHILD\": 25, \"FHH_CHILD\": 113, \"FAMILIES\": 2042, \"AVE_FAM_SZ\": 2.800000, \"HSE_UNITS\": 4830, \"VACANT\": 203, \"OWNER_OCC\": 2567, \"RENTER_OCC\": 2060 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.325974019597325, 33.787204983786921 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Dublin\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"24376\", \"CAPITAL\": \"N\", \"AREALAND\": 13.207000, \"AREAWATER\": 0.065000, \"POP_CL\": 6, \"POP2000\": 15857, \"WHITE\": 7222, \"BLACK\": 8154, \"AMERI_ES\": 31, \"ASIAN\": 277, \"HAWN_PI\": 7, \"OTHER\": 46, \"MULT_RACE\": 120, \"HISPANIC\": 181, \"MALES\": 7317, \"FEMALES\": 8540, \"AGE_UNDER5\": 1153, \"AGE_5_17\": 3080, \"AGE_18_21\": 871, \"AGE_22_29\": 1490, \"AGE_30_39\": 1943, \"AGE_40_49\": 2164, \"AGE_50_64\": 2426, \"AGE_65_UP\": 2730, \"MED_AGE\": 36.900000, \"MED_AGE_M\": 34.700000, \"MED_AGE_F\": 38.800000, \"HOUSEHOLDS\": 6130, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 701, \"HSEHLD_1_F\": 1205, \"MARHH_CHD\": 934, \"MARHH_NO_C\": 1470, \"MHH_CHILD\": 90, \"FHH_CHILD\": 883, \"FAMILIES\": 4028, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 6977, \"VACANT\": 847, \"OWNER_OCC\": 3372, \"RENTER_OCC\": 2758 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.918358097498356, 32.537462968277779 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Duluth\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"24600\", \"CAPITAL\": \"N\", \"AREALAND\": 8.805000, \"AREAWATER\": 0.098000, \"POP_CL\": 6, \"POP2000\": 22122, \"WHITE\": 15186, \"BLACK\": 2623, \"AMERI_ES\": 73, \"ASIAN\": 2851, \"HAWN_PI\": 9, \"OTHER\": 847, \"MULT_RACE\": 533, \"HISPANIC\": 2002, \"MALES\": 10805, \"FEMALES\": 11317, \"AGE_UNDER5\": 1680, \"AGE_5_17\": 3758, \"AGE_18_21\": 1006, \"AGE_22_29\": 3138, \"AGE_30_39\": 4892, \"AGE_40_49\": 3853, \"AGE_50_64\": 2709, \"AGE_65_UP\": 1086, \"MED_AGE\": 32.900000, \"MED_AGE_M\": 32.000000, \"MED_AGE_F\": 33.800000, \"HOUSEHOLDS\": 8735, \"AVE_HH_SZ\": 2.530000, \"HSEHLD_1_M\": 978, \"HSEHLD_1_F\": 1399, \"MARHH_CHD\": 2427, \"MARHH_NO_C\": 2008, \"MHH_CHILD\": 114, \"FHH_CHILD\": 552, \"FAMILIES\": 5641, \"AVE_FAM_SZ\": 3.100000, \"HSE_UNITS\": 9061, \"VACANT\": 326, \"OWNER_OCC\": 5121, \"RENTER_OCC\": 3614 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.145498026823446, 34.003099981533545 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Dunwoody\", \"CLASS\": \"CDP\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"24768\", \"CAPITAL\": \"N\", \"AREALAND\": 12.081000, \"AREAWATER\": 0.044000, \"POP_CL\": 6, \"POP2000\": 32808, \"WHITE\": 27893, \"BLACK\": 1452, \"AMERI_ES\": 39, \"ASIAN\": 2552, \"HAWN_PI\": 4, \"OTHER\": 441, \"MULT_RACE\": 427, \"HISPANIC\": 1514, \"MALES\": 16001, \"FEMALES\": 16807, \"AGE_UNDER5\": 2108, \"AGE_5_17\": 4330, \"AGE_18_21\": 966, \"AGE_22_29\": 4071, \"AGE_30_39\": 5828, \"AGE_40_49\": 4853, \"AGE_50_64\": 6537, \"AGE_65_UP\": 4115, \"MED_AGE\": 38.400000, \"MED_AGE_M\": 37.500000, \"MED_AGE_F\": 39.300000, \"HOUSEHOLDS\": 13746, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 1455, \"HSEHLD_1_F\": 2220, \"MARHH_CHD\": 3008, \"MARHH_NO_C\": 4935, \"MHH_CHILD\": 84, \"FHH_CHILD\": 350, \"FAMILIES\": 8973, \"AVE_FAM_SZ\": 2.860000, \"HSE_UNITS\": 14599, \"VACANT\": 853, \"OWNER_OCC\": 9213, \"RENTER_OCC\": 4533 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.317694020590679, 33.942750983486171 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"East Point\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"25720\", \"CAPITAL\": \"N\", \"AREALAND\": 13.753000, \"AREAWATER\": 0.014000, \"POP_CL\": 6, \"POP2000\": 39595, \"WHITE\": 6376, \"BLACK\": 30949, \"AMERI_ES\": 80, \"ASIAN\": 244, \"HAWN_PI\": 36, \"OTHER\": 1348, \"MULT_RACE\": 562, \"HISPANIC\": 2998, \"MALES\": 18699, \"FEMALES\": 20896, \"AGE_UNDER5\": 3457, \"AGE_5_17\": 8154, \"AGE_18_21\": 2733, \"AGE_22_29\": 5432, \"AGE_30_39\": 5948, \"AGE_40_49\": 5799, \"AGE_50_64\": 4926, \"AGE_65_UP\": 3146, \"MED_AGE\": 30.000000, \"MED_AGE_M\": 28.400000, \"MED_AGE_F\": 31.800000, \"HOUSEHOLDS\": 14553, \"AVE_HH_SZ\": 2.690000, \"HSEHLD_1_M\": 1840, \"HSEHLD_1_F\": 2145, \"MARHH_CHD\": 1942, \"MARHH_NO_C\": 2241, \"MHH_CHILD\": 490, \"FHH_CHILD\": 2587, \"FAMILIES\": 9433, \"AVE_FAM_SZ\": 3.270000, \"HSE_UNITS\": 15637, \"VACANT\": 1084, \"OWNER_OCC\": 6603, \"RENTER_OCC\": 7950 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.451277015665781, 33.676007985171474 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Evans\", \"CLASS\": \"CDP\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"28044\", \"CAPITAL\": \"N\", \"AREALAND\": 9.936000, \"AREAWATER\": 0.066000, \"POP_CL\": 6, \"POP2000\": 17727, \"WHITE\": 14999, \"BLACK\": 1811, \"AMERI_ES\": 44, \"ASIAN\": 476, \"HAWN_PI\": 8, \"OTHER\": 118, \"MULT_RACE\": 271, \"HISPANIC\": 396, \"MALES\": 8507, \"FEMALES\": 9220, \"AGE_UNDER5\": 1136, \"AGE_5_17\": 3898, \"AGE_18_21\": 774, \"AGE_22_29\": 1398, \"AGE_30_39\": 2831, \"AGE_40_49\": 3138, \"AGE_50_64\": 2634, \"AGE_65_UP\": 1918, \"MED_AGE\": 36.400000, \"MED_AGE_M\": 35.000000, \"MED_AGE_F\": 37.700000, \"HOUSEHOLDS\": 6319, \"AVE_HH_SZ\": 2.750000, \"HSEHLD_1_M\": 398, \"HSEHLD_1_F\": 773, \"MARHH_CHD\": 2134, \"MARHH_NO_C\": 2030, \"MHH_CHILD\": 105, \"FHH_CHILD\": 404, \"FAMILIES\": 4976, \"AVE_FAM_SZ\": 3.150000, \"HSE_UNITS\": 6632, \"VACANT\": 313, \"OWNER_OCC\": 4955, \"RENTER_OCC\": 1364 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.139908256286461, 33.511073951925518 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fayetteville\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"28968\", \"CAPITAL\": \"N\", \"AREALAND\": 9.894000, \"AREAWATER\": 0.084000, \"POP_CL\": 6, \"POP2000\": 11148, \"WHITE\": 8967, \"BLACK\": 1557, \"AMERI_ES\": 25, \"ASIAN\": 371, \"HAWN_PI\": 1, \"OTHER\": 106, \"MULT_RACE\": 121, \"HISPANIC\": 310, \"MALES\": 5194, \"FEMALES\": 5954, \"AGE_UNDER5\": 746, \"AGE_5_17\": 2192, \"AGE_18_21\": 467, \"AGE_22_29\": 1090, \"AGE_30_39\": 1794, \"AGE_40_49\": 1821, \"AGE_50_64\": 1561, \"AGE_65_UP\": 1477, \"MED_AGE\": 36.100000, \"MED_AGE_M\": 34.000000, \"MED_AGE_F\": 38.000000, \"HOUSEHOLDS\": 4338, \"AVE_HH_SZ\": 2.480000, \"HSEHLD_1_M\": 380, \"HSEHLD_1_F\": 801, \"MARHH_CHD\": 1179, \"MARHH_NO_C\": 1159, \"MHH_CHILD\": 68, \"FHH_CHILD\": 315, \"FAMILIES\": 2966, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 4572, \"VACANT\": 234, \"OWNER_OCC\": 3050, \"RENTER_OCC\": 1288 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.461767014482461, 33.447893985556476 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Forest Park\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"30536\", \"CAPITAL\": \"N\", \"AREALAND\": 9.376000, \"AREAWATER\": 0.037000, \"POP_CL\": 6, \"POP2000\": 21447, \"WHITE\": 9675, \"BLACK\": 8018, \"AMERI_ES\": 107, \"ASIAN\": 1282, \"HAWN_PI\": 4, \"OTHER\": 1836, \"MULT_RACE\": 525, \"HISPANIC\": 4322, \"MALES\": 11030, \"FEMALES\": 10417, \"AGE_UNDER5\": 1759, \"AGE_5_17\": 4229, \"AGE_18_21\": 1603, \"AGE_22_29\": 3530, \"AGE_30_39\": 3569, \"AGE_40_49\": 2664, \"AGE_50_64\": 2248, \"AGE_65_UP\": 1845, \"MED_AGE\": 29.100000, \"MED_AGE_M\": 27.600000, \"MED_AGE_F\": 31.100000, \"HOUSEHOLDS\": 6845, \"AVE_HH_SZ\": 2.980000, \"HSEHLD_1_M\": 694, \"HSEHLD_1_F\": 846, \"MARHH_CHD\": 1373, \"MARHH_NO_C\": 1365, \"MHH_CHILD\": 212, \"FHH_CHILD\": 946, \"FAMILIES\": 4841, \"AVE_FAM_SZ\": 3.420000, \"HSE_UNITS\": 7233, \"VACANT\": 388, \"OWNER_OCC\": 3730, \"RENTER_OCC\": 3115 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.365782017683031, 33.619658984413832 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fort Benning South\", \"CLASS\": \"CDP\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"30795\", \"CAPITAL\": \"N\", \"AREALAND\": 8.580000, \"AREAWATER\": 0.128000, \"POP_CL\": 6, \"POP2000\": 11737, \"WHITE\": 6669, \"BLACK\": 3424, \"AMERI_ES\": 106, \"ASIAN\": 244, \"HAWN_PI\": 54, \"OTHER\": 724, \"MULT_RACE\": 516, \"HISPANIC\": 1461, \"MALES\": 7735, \"FEMALES\": 4002, \"AGE_UNDER5\": 1027, \"AGE_5_17\": 2355, \"AGE_18_21\": 2180, \"AGE_22_29\": 3267, \"AGE_30_39\": 2273, \"AGE_40_49\": 552, \"AGE_50_64\": 67, \"AGE_65_UP\": 16, \"MED_AGE\": 22.500000, \"MED_AGE_M\": 22.600000, \"MED_AGE_F\": 21.800000, \"HOUSEHOLDS\": 1852, \"AVE_HH_SZ\": 3.850000, \"HSEHLD_1_M\": 24, \"HSEHLD_1_F\": 7, \"MARHH_CHD\": 1371, \"MARHH_NO_C\": 301, \"MHH_CHILD\": 35, \"FHH_CHILD\": 104, \"FAMILIES\": 1816, \"AVE_FAM_SZ\": 3.880000, \"HSE_UNITS\": 2028, \"VACANT\": 176, \"OWNER_OCC\": 26, \"RENTER_OCC\": 1826 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.934566003497693, 32.359865990449464 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fort Stewart\", \"CLASS\": \"CDP\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"31068\", \"CAPITAL\": \"N\", \"AREALAND\": 6.602000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11205, \"WHITE\": 5603, \"BLACK\": 4118, \"AMERI_ES\": 81, \"ASIAN\": 214, \"HAWN_PI\": 46, \"OTHER\": 756, \"MULT_RACE\": 387, \"HISPANIC\": 1358, \"MALES\": 7432, \"FEMALES\": 3773, \"AGE_UNDER5\": 1285, \"AGE_5_17\": 1776, \"AGE_18_21\": 2801, \"AGE_22_29\": 3273, \"AGE_30_39\": 1673, \"AGE_40_49\": 358, \"AGE_50_64\": 30, \"AGE_65_UP\": 9, \"MED_AGE\": 21.700000, \"MED_AGE_M\": 21.700000, \"MED_AGE_F\": 21.700000, \"HOUSEHOLDS\": 1849, \"AVE_HH_SZ\": 3.650000, \"HSEHLD_1_M\": 41, \"HSEHLD_1_F\": 12, \"MARHH_CHD\": 1354, \"MARHH_NO_C\": 273, \"MHH_CHILD\": 23, \"FHH_CHILD\": 133, \"FAMILIES\": 1791, \"AVE_FAM_SZ\": 3.680000, \"HSE_UNITS\": 1936, \"VACANT\": 87, \"OWNER_OCC\": 108, \"RENTER_OCC\": 1741 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.607410348328671, 31.879874950130649 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Gainesville\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"31908\", \"CAPITAL\": \"N\", \"AREALAND\": 27.084000, \"AREAWATER\": 2.016000, \"POP_CL\": 6, \"POP2000\": 25578, \"WHITE\": 16680, \"BLACK\": 4023, \"AMERI_ES\": 76, \"ASIAN\": 687, \"HAWN_PI\": 34, \"OTHER\": 3650, \"MULT_RACE\": 428, \"HISPANIC\": 8484, \"MALES\": 12661, \"FEMALES\": 12917, \"AGE_UNDER5\": 2116, \"AGE_5_17\": 4283, \"AGE_18_21\": 2161, \"AGE_22_29\": 4299, \"AGE_30_39\": 3803, \"AGE_40_49\": 2678, \"AGE_50_64\": 3030, \"AGE_65_UP\": 3208, \"MED_AGE\": 29.900000, \"MED_AGE_M\": 28.700000, \"MED_AGE_F\": 31.300000, \"HOUSEHOLDS\": 8537, \"AVE_HH_SZ\": 2.790000, \"HSEHLD_1_M\": 942, \"HSEHLD_1_F\": 1578, \"MARHH_CHD\": 1720, \"MARHH_NO_C\": 1958, \"MHH_CHILD\": 160, \"FHH_CHILD\": 784, \"FAMILIES\": 5435, \"AVE_FAM_SZ\": 3.390000, \"HSE_UNITS\": 9076, \"VACANT\": 539, \"OWNER_OCC\": 3734, \"RENTER_OCC\": 4803 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.833897043354739, 34.304489977217692 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Garden City\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"32048\", \"CAPITAL\": \"N\", \"AREALAND\": 14.607000, \"AREAWATER\": 0.007000, \"POP_CL\": 6, \"POP2000\": 11289, \"WHITE\": 6115, \"BLACK\": 4514, \"AMERI_ES\": 54, \"ASIAN\": 103, \"HAWN_PI\": 5, \"OTHER\": 262, \"MULT_RACE\": 236, \"HISPANIC\": 675, \"MALES\": 6156, \"FEMALES\": 5133, \"AGE_UNDER5\": 809, \"AGE_5_17\": 1872, \"AGE_18_21\": 757, \"AGE_22_29\": 1699, \"AGE_30_39\": 1961, \"AGE_40_49\": 1612, \"AGE_50_64\": 1460, \"AGE_65_UP\": 1119, \"MED_AGE\": 32.600000, \"MED_AGE_M\": 32.400000, \"MED_AGE_F\": 32.800000, \"HOUSEHOLDS\": 3981, \"AVE_HH_SZ\": 2.560000, \"HSEHLD_1_M\": 562, \"HSEHLD_1_F\": 494, \"MARHH_CHD\": 709, \"MARHH_NO_C\": 984, \"MHH_CHILD\": 128, \"FHH_CHILD\": 451, \"FAMILIES\": 2664, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 4413, \"VACANT\": 432, \"OWNER_OCC\": 2111, \"RENTER_OCC\": 1870 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.16496553839599, 32.10037194332493 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Georgetown\", \"CLASS\": \"CDP\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"32482\", \"CAPITAL\": \"N\", \"AREALAND\": 11.479000, \"AREAWATER\": 0.450000, \"POP_CL\": 6, \"POP2000\": 10599, \"WHITE\": 7714, \"BLACK\": 2108, \"AMERI_ES\": 41, \"ASIAN\": 327, \"HAWN_PI\": 7, \"OTHER\": 182, \"MULT_RACE\": 220, \"HISPANIC\": 490, \"MALES\": 5288, \"FEMALES\": 5311, \"AGE_UNDER5\": 854, \"AGE_5_17\": 2009, \"AGE_18_21\": 518, \"AGE_22_29\": 1912, \"AGE_30_39\": 2071, \"AGE_40_49\": 1577, \"AGE_50_64\": 1166, \"AGE_65_UP\": 492, \"MED_AGE\": 30.000000, \"MED_AGE_M\": 29.800000, \"MED_AGE_F\": 30.300000, \"HOUSEHOLDS\": 4123, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 477, \"HSEHLD_1_F\": 452, \"MARHH_CHD\": 1221, \"MARHH_NO_C\": 1126, \"MHH_CHILD\": 72, \"FHH_CHILD\": 242, \"FAMILIES\": 2822, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 4341, \"VACANT\": 218, \"OWNER_OCC\": 2361, \"RENTER_OCC\": 1762 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.232118499559988, 31.97961194468969 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Griffin\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"35324\", \"CAPITAL\": \"N\", \"AREALAND\": 14.520000, \"AREAWATER\": 0.078000, \"POP_CL\": 6, \"POP2000\": 23451, \"WHITE\": 11018, \"BLACK\": 11697, \"AMERI_ES\": 39, \"ASIAN\": 233, \"HAWN_PI\": 6, \"OTHER\": 229, \"MULT_RACE\": 229, \"HISPANIC\": 520, \"MALES\": 10866, \"FEMALES\": 12585, \"AGE_UNDER5\": 1985, \"AGE_5_17\": 4740, \"AGE_18_21\": 1328, \"AGE_22_29\": 2780, \"AGE_30_39\": 3321, \"AGE_40_49\": 3071, \"AGE_50_64\": 2989, \"AGE_65_UP\": 3237, \"MED_AGE\": 32.800000, \"MED_AGE_M\": 30.400000, \"MED_AGE_F\": 34.800000, \"HOUSEHOLDS\": 8876, \"AVE_HH_SZ\": 2.600000, \"HSEHLD_1_M\": 978, \"HSEHLD_1_F\": 1483, \"MARHH_CHD\": 1428, \"MARHH_NO_C\": 1950, \"MHH_CHILD\": 197, \"FHH_CHILD\": 1303, \"FAMILIES\": 5954, \"AVE_FAM_SZ\": 3.170000, \"HSE_UNITS\": 9636, \"VACANT\": 760, \"OWNER_OCC\": 3819, \"RENTER_OCC\": 5057 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.270891018668834, 33.24760198397513 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hinesville\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"38964\", \"CAPITAL\": \"N\", \"AREALAND\": 16.217000, \"AREAWATER\": 0.097000, \"POP_CL\": 6, \"POP2000\": 30392, \"WHITE\": 12613, \"BLACK\": 13992, \"AMERI_ES\": 143, \"ASIAN\": 688, \"HAWN_PI\": 173, \"OTHER\": 1519, \"MULT_RACE\": 1264, \"HISPANIC\": 2769, \"MALES\": 14991, \"FEMALES\": 15401, \"AGE_UNDER5\": 3207, \"AGE_5_17\": 7184, \"AGE_18_21\": 2210, \"AGE_22_29\": 5066, \"AGE_30_39\": 5531, \"AGE_40_49\": 3966, \"AGE_50_64\": 2285, \"AGE_65_UP\": 943, \"MED_AGE\": 25.900000, \"MED_AGE_M\": 25.500000, \"MED_AGE_F\": 26.400000, \"HOUSEHOLDS\": 10528, \"AVE_HH_SZ\": 2.890000, \"HSEHLD_1_M\": 1007, \"HSEHLD_1_F\": 824, \"MARHH_CHD\": 3627, \"MARHH_NO_C\": 2273, \"MHH_CHILD\": 267, \"FHH_CHILD\": 1389, \"FAMILIES\": 8031, \"AVE_FAM_SZ\": 3.260000, \"HSE_UNITS\": 11742, \"VACANT\": 1214, \"OWNER_OCC\": 5225, \"RENTER_OCC\": 5303 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.611703344818793, 31.832441950394717 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Kennesaw\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"43192\", \"CAPITAL\": \"N\", \"AREALAND\": 8.439000, \"AREAWATER\": 0.068000, \"POP_CL\": 6, \"POP2000\": 21675, \"WHITE\": 17767, \"BLACK\": 2146, \"AMERI_ES\": 47, \"ASIAN\": 630, \"HAWN_PI\": 4, \"OTHER\": 551, \"MULT_RACE\": 530, \"HISPANIC\": 1344, \"MALES\": 10593, \"FEMALES\": 11082, \"AGE_UNDER5\": 2136, \"AGE_5_17\": 3877, \"AGE_18_21\": 792, \"AGE_22_29\": 3070, \"AGE_30_39\": 5065, \"AGE_40_49\": 3114, \"AGE_50_64\": 2372, \"AGE_65_UP\": 1249, \"MED_AGE\": 31.700000, \"MED_AGE_M\": 31.100000, \"MED_AGE_F\": 32.300000, \"HOUSEHOLDS\": 8099, \"AVE_HH_SZ\": 2.650000, \"HSEHLD_1_M\": 756, \"HSEHLD_1_F\": 1043, \"MARHH_CHD\": 2626, \"MARHH_NO_C\": 2046, \"MHH_CHILD\": 140, \"FHH_CHILD\": 504, \"FAMILIES\": 5785, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 8670, \"VACANT\": 571, \"OWNER_OCC\": 6531, \"RENTER_OCC\": 1568 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.615875013152873, 34.025182986281713 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Kingsland\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"43640\", \"CAPITAL\": \"N\", \"AREALAND\": 16.731000, \"AREAWATER\": 0.139000, \"POP_CL\": 6, \"POP2000\": 10506, \"WHITE\": 7696, \"BLACK\": 2221, \"AMERI_ES\": 61, \"ASIAN\": 162, \"HAWN_PI\": 6, \"OTHER\": 130, \"MULT_RACE\": 230, \"HISPANIC\": 379, \"MALES\": 5272, \"FEMALES\": 5234, \"AGE_UNDER5\": 989, \"AGE_5_17\": 2668, \"AGE_18_21\": 556, \"AGE_22_29\": 1535, \"AGE_30_39\": 2196, \"AGE_40_49\": 1378, \"AGE_50_64\": 810, \"AGE_65_UP\": 374, \"MED_AGE\": 27.900000, \"MED_AGE_M\": 27.200000, \"MED_AGE_F\": 28.600000, \"HOUSEHOLDS\": 3620, \"AVE_HH_SZ\": 2.900000, \"HSEHLD_1_M\": 370, \"HSEHLD_1_F\": 316, \"MARHH_CHD\": 1430, \"MARHH_NO_C\": 758, \"MHH_CHILD\": 90, \"FHH_CHILD\": 295, \"FAMILIES\": 2721, \"AVE_FAM_SZ\": 3.340000, \"HSE_UNITS\": 4203, \"VACANT\": 583, \"OWNER_OCC\": 2283, \"RENTER_OCC\": 1337 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.671720284202863, 30.794611955335615 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"LaGrange\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"44340\", \"CAPITAL\": \"N\", \"AREALAND\": 28.958000, \"AREAWATER\": 0.587000, \"POP_CL\": 6, \"POP2000\": 25998, \"WHITE\": 12796, \"BLACK\": 12353, \"AMERI_ES\": 47, \"ASIAN\": 212, \"HAWN_PI\": 26, \"OTHER\": 319, \"MULT_RACE\": 245, \"HISPANIC\": 635, \"MALES\": 11978, \"FEMALES\": 14020, \"AGE_UNDER5\": 2000, \"AGE_5_17\": 5394, \"AGE_18_21\": 1688, \"AGE_22_29\": 2971, \"AGE_30_39\": 3502, \"AGE_40_49\": 3334, \"AGE_50_64\": 3349, \"AGE_65_UP\": 3760, \"MED_AGE\": 32.800000, \"MED_AGE_M\": 29.800000, \"MED_AGE_F\": 35.200000, \"HOUSEHOLDS\": 10022, \"AVE_HH_SZ\": 2.500000, \"HSEHLD_1_M\": 1196, \"HSEHLD_1_F\": 1822, \"MARHH_CHD\": 1594, \"MARHH_NO_C\": 2072, \"MHH_CHILD\": 211, \"FHH_CHILD\": 1438, \"FAMILIES\": 6503, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 11000, \"VACANT\": 978, \"OWNER_OCC\": 4692, \"RENTER_OCC\": 5330 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.031930003964092, 33.036574990530134 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lawrenceville\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"45488\", \"CAPITAL\": \"N\", \"AREALAND\": 12.992000, \"AREAWATER\": 0.056000, \"POP_CL\": 6, \"POP2000\": 22397, \"WHITE\": 17030, \"BLACK\": 3048, \"AMERI_ES\": 49, \"ASIAN\": 709, \"HAWN_PI\": 22, \"OTHER\": 999, \"MULT_RACE\": 540, \"HISPANIC\": 2720, \"MALES\": 11478, \"FEMALES\": 10919, \"AGE_UNDER5\": 1707, \"AGE_5_17\": 4201, \"AGE_18_21\": 1354, \"AGE_22_29\": 2983, \"AGE_30_39\": 4082, \"AGE_40_49\": 3453, \"AGE_50_64\": 2568, \"AGE_65_UP\": 2049, \"MED_AGE\": 32.300000, \"MED_AGE_M\": 30.600000, \"MED_AGE_F\": 34.500000, \"HOUSEHOLDS\": 7484, \"AVE_HH_SZ\": 2.770000, \"HSEHLD_1_M\": 696, \"HSEHLD_1_F\": 1029, \"MARHH_CHD\": 2180, \"MARHH_NO_C\": 1765, \"MHH_CHILD\": 175, \"FHH_CHILD\": 596, \"FAMILIES\": 5311, \"AVE_FAM_SZ\": 3.240000, \"HSE_UNITS\": 7684, \"VACANT\": 200, \"OWNER_OCC\": 4402, \"RENTER_OCC\": 3082 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.992469032841583, 33.953051979837362 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lilburn\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"46356\", \"CAPITAL\": \"N\", \"AREALAND\": 6.153000, \"AREAWATER\": 0.046000, \"POP_CL\": 6, \"POP2000\": 11307, \"WHITE\": 7812, \"BLACK\": 1349, \"AMERI_ES\": 38, \"ASIAN\": 1322, \"HAWN_PI\": 3, \"OTHER\": 544, \"MULT_RACE\": 239, \"HISPANIC\": 1495, \"MALES\": 5571, \"FEMALES\": 5736, \"AGE_UNDER5\": 750, \"AGE_5_17\": 2158, \"AGE_18_21\": 556, \"AGE_22_29\": 1325, \"AGE_30_39\": 1910, \"AGE_40_49\": 2010, \"AGE_50_64\": 1664, \"AGE_65_UP\": 934, \"MED_AGE\": 34.900000, \"MED_AGE_M\": 32.500000, \"MED_AGE_F\": 37.100000, \"HOUSEHOLDS\": 3943, \"AVE_HH_SZ\": 2.800000, \"HSEHLD_1_M\": 343, \"HSEHLD_1_F\": 542, \"MARHH_CHD\": 1194, \"MARHH_NO_C\": 1056, \"MHH_CHILD\": 59, \"FHH_CHILD\": 250, \"FAMILIES\": 2836, \"AVE_FAM_SZ\": 3.280000, \"HSE_UNITS\": 4049, \"VACANT\": 106, \"OWNER_OCC\": 2750, \"RENTER_OCC\": 1193 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.140897026342884, 33.888852981659163 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mableton\", \"CLASS\": \"CDP\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"48288\", \"CAPITAL\": \"N\", \"AREALAND\": 20.585000, \"AREAWATER\": 0.172000, \"POP_CL\": 6, \"POP2000\": 29733, \"WHITE\": 18550, \"BLACK\": 8699, \"AMERI_ES\": 78, \"ASIAN\": 417, \"HAWN_PI\": 7, \"OTHER\": 1380, \"MULT_RACE\": 602, \"HISPANIC\": 2915, \"MALES\": 14552, \"FEMALES\": 15181, \"AGE_UNDER5\": 2134, \"AGE_5_17\": 5606, \"AGE_18_21\": 1491, \"AGE_22_29\": 3180, \"AGE_30_39\": 5407, \"AGE_40_49\": 4849, \"AGE_50_64\": 4122, \"AGE_65_UP\": 2944, \"MED_AGE\": 34.800000, \"MED_AGE_M\": 33.900000, \"MED_AGE_F\": 35.700000, \"HOUSEHOLDS\": 10894, \"AVE_HH_SZ\": 2.720000, \"HSEHLD_1_M\": 1009, \"HSEHLD_1_F\": 1301, \"MARHH_CHD\": 2617, \"MARHH_NO_C\": 3215, \"MHH_CHILD\": 269, \"FHH_CHILD\": 915, \"FAMILIES\": 7964, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 11339, \"VACANT\": 445, \"OWNER_OCC\": 8525, \"RENTER_OCC\": 2369 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.57169101335235, 33.813354986127223 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Macon\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"49000\", \"CAPITAL\": \"N\", \"AREALAND\": 55.802000, \"AREAWATER\": 0.463000, \"POP_CL\": 7, \"POP2000\": 97255, \"WHITE\": 34482, \"BLACK\": 60740, \"AMERI_ES\": 188, \"ASIAN\": 628, \"HAWN_PI\": 28, \"OTHER\": 443, \"MULT_RACE\": 746, \"HISPANIC\": 1166, \"MALES\": 43141, \"FEMALES\": 54114, \"AGE_UNDER5\": 7583, \"AGE_5_17\": 18627, \"AGE_18_21\": 6851, \"AGE_22_29\": 11162, \"AGE_30_39\": 12957, \"AGE_40_49\": 13065, \"AGE_50_64\": 13146, \"AGE_65_UP\": 13864, \"MED_AGE\": 33.600000, \"MED_AGE_M\": 31.600000, \"MED_AGE_F\": 35.100000, \"HOUSEHOLDS\": 38444, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 4585, \"HSEHLD_1_F\": 7601, \"MARHH_CHD\": 4885, \"MARHH_NO_C\": 7794, \"MHH_CHILD\": 710, \"FHH_CHILD\": 5967, \"FAMILIES\": 24214, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 44341, \"VACANT\": 5897, \"OWNER_OCC\": 19257, \"RENTER_OCC\": 19187 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.651672041539442, 32.834838977708692 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Marietta\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"49756\", \"CAPITAL\": \"N\", \"AREALAND\": 21.887000, \"AREAWATER\": 0.059000, \"POP_CL\": 7, \"POP2000\": 58748, \"WHITE\": 33185, \"BLACK\": 17330, \"AMERI_ES\": 188, \"ASIAN\": 1744, \"HAWN_PI\": 51, \"OTHER\": 4694, \"MULT_RACE\": 1556, \"HISPANIC\": 9947, \"MALES\": 29566, \"FEMALES\": 29182, \"AGE_UNDER5\": 4655, \"AGE_5_17\": 8503, \"AGE_18_21\": 3931, \"AGE_22_29\": 12277, \"AGE_30_39\": 11159, \"AGE_40_49\": 7384, \"AGE_50_64\": 5945, \"AGE_65_UP\": 4894, \"MED_AGE\": 30.000000, \"MED_AGE_M\": 29.000000, \"MED_AGE_F\": 31.200000, \"HOUSEHOLDS\": 23895, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 3308, \"HSEHLD_1_F\": 4541, \"MARHH_CHD\": 3960, \"MARHH_NO_C\": 4501, \"MHH_CHILD\": 499, \"FHH_CHILD\": 2173, \"FAMILIES\": 13020, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 25227, \"VACANT\": 1332, \"OWNER_OCC\": 8996, \"RENTER_OCC\": 14899 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.540614014592379, 33.95335298567278 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Martinez\", \"CLASS\": \"CDP\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"50036\", \"CAPITAL\": \"N\", \"AREALAND\": 12.572000, \"AREAWATER\": 0.107000, \"POP_CL\": 6, \"POP2000\": 27749, \"WHITE\": 23304, \"BLACK\": 2225, \"AMERI_ES\": 63, \"ASIAN\": 1554, \"HAWN_PI\": 20, \"OTHER\": 190, \"MULT_RACE\": 393, \"HISPANIC\": 640, \"MALES\": 13547, \"FEMALES\": 14202, \"AGE_UNDER5\": 1831, \"AGE_5_17\": 6305, \"AGE_18_21\": 1259, \"AGE_22_29\": 2404, \"AGE_30_39\": 4333, \"AGE_40_49\": 5143, \"AGE_50_64\": 4496, \"AGE_65_UP\": 1978, \"MED_AGE\": 35.400000, \"MED_AGE_M\": 34.200000, \"MED_AGE_F\": 36.100000, \"HOUSEHOLDS\": 9886, \"AVE_HH_SZ\": 2.800000, \"HSEHLD_1_M\": 657, \"HSEHLD_1_F\": 890, \"MARHH_CHD\": 3555, \"MARHH_NO_C\": 3084, \"MHH_CHILD\": 165, \"FHH_CHILD\": 721, \"FAMILIES\": 8037, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 10320, \"VACANT\": 434, \"OWNER_OCC\": 7938, \"RENTER_OCC\": 1948 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.100024266722812, 33.516088951183939 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Milledgeville\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"51492\", \"CAPITAL\": \"N\", \"AREALAND\": 19.980000, \"AREAWATER\": 0.273000, \"POP_CL\": 6, \"POP2000\": 18757, \"WHITE\": 9368, \"BLACK\": 8943, \"AMERI_ES\": 24, \"ASIAN\": 290, \"HAWN_PI\": 1, \"OTHER\": 37, \"MULT_RACE\": 94, \"HISPANIC\": 231, \"MALES\": 11706, \"FEMALES\": 7051, \"AGE_UNDER5\": 654, \"AGE_5_17\": 2339, \"AGE_18_21\": 2579, \"AGE_22_29\": 2945, \"AGE_30_39\": 3024, \"AGE_40_49\": 2666, \"AGE_50_64\": 2450, \"AGE_65_UP\": 2100, \"MED_AGE\": 33.000000, \"MED_AGE_M\": 33.300000, \"MED_AGE_F\": 32.200000, \"HOUSEHOLDS\": 4755, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 551, \"HSEHLD_1_F\": 958, \"MARHH_CHD\": 651, \"MARHH_NO_C\": 949, \"MHH_CHILD\": 72, \"FHH_CHILD\": 508, \"FAMILIES\": 2642, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 5356, \"VACANT\": 601, \"OWNER_OCC\": 2335, \"RENTER_OCC\": 2420 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.233401073778083, 33.087754971516944 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Monroe\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"52192\", \"CAPITAL\": \"N\", \"AREALAND\": 10.358000, \"AREAWATER\": 0.109000, \"POP_CL\": 6, \"POP2000\": 11407, \"WHITE\": 6239, \"BLACK\": 4818, \"AMERI_ES\": 24, \"ASIAN\": 41, \"HAWN_PI\": 4, \"OTHER\": 144, \"MULT_RACE\": 137, \"HISPANIC\": 287, \"MALES\": 5201, \"FEMALES\": 6206, \"AGE_UNDER5\": 964, \"AGE_5_17\": 2306, \"AGE_18_21\": 699, \"AGE_22_29\": 1377, \"AGE_30_39\": 1705, \"AGE_40_49\": 1362, \"AGE_50_64\": 1534, \"AGE_65_UP\": 1460, \"MED_AGE\": 32.000000, \"MED_AGE_M\": 30.500000, \"MED_AGE_F\": 33.300000, \"HOUSEHOLDS\": 4287, \"AVE_HH_SZ\": 2.590000, \"HSEHLD_1_M\": 418, \"HSEHLD_1_F\": 684, \"MARHH_CHD\": 659, \"MARHH_NO_C\": 1020, \"MHH_CHILD\": 113, \"FHH_CHILD\": 681, \"FAMILIES\": 2985, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 4637, \"VACANT\": 350, \"OWNER_OCC\": 1858, \"RENTER_OCC\": 2429 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.710790046236369, 33.793294976588669 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Moultrie\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"53060\", \"CAPITAL\": \"N\", \"AREALAND\": 14.202000, \"AREAWATER\": 0.045000, \"POP_CL\": 6, \"POP2000\": 14387, \"WHITE\": 6619, \"BLACK\": 7089, \"AMERI_ES\": 48, \"ASIAN\": 53, \"HAWN_PI\": 7, \"OTHER\": 430, \"MULT_RACE\": 141, \"HISPANIC\": 866, \"MALES\": 6701, \"FEMALES\": 7686, \"AGE_UNDER5\": 1190, \"AGE_5_17\": 2890, \"AGE_18_21\": 884, \"AGE_22_29\": 1506, \"AGE_30_39\": 1909, \"AGE_40_49\": 1772, \"AGE_50_64\": 1935, \"AGE_65_UP\": 2301, \"MED_AGE\": 33.800000, \"MED_AGE_M\": 30.900000, \"MED_AGE_F\": 36.400000, \"HOUSEHOLDS\": 5663, \"AVE_HH_SZ\": 2.430000, \"HSEHLD_1_M\": 695, \"HSEHLD_1_F\": 1226, \"MARHH_CHD\": 792, \"MARHH_NO_C\": 1134, \"MHH_CHILD\": 102, \"FHH_CHILD\": 887, \"FAMILIES\": 3507, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 6525, \"VACANT\": 862, \"OWNER_OCC\": 2677, \"RENTER_OCC\": 2986 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.783601023504445, 31.170187982131282 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mountain Park\", \"CLASS\": \"CDP\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"53186\", \"CAPITAL\": \"N\", \"AREALAND\": 5.803000, \"AREAWATER\": 0.010000, \"POP_CL\": 6, \"POP2000\": 11753, \"WHITE\": 9655, \"BLACK\": 700, \"AMERI_ES\": 27, \"ASIAN\": 1069, \"HAWN_PI\": 3, \"OTHER\": 117, \"MULT_RACE\": 182, \"HISPANIC\": 313, \"MALES\": 5691, \"FEMALES\": 6062, \"AGE_UNDER5\": 581, \"AGE_5_17\": 2295, \"AGE_18_21\": 502, \"AGE_22_29\": 763, \"AGE_30_39\": 1446, \"AGE_40_49\": 2255, \"AGE_50_64\": 2520, \"AGE_65_UP\": 1391, \"MED_AGE\": 41.400000, \"MED_AGE_M\": 40.600000, \"MED_AGE_F\": 42.100000, \"HOUSEHOLDS\": 4282, \"AVE_HH_SZ\": 2.730000, \"HSEHLD_1_M\": 295, \"HSEHLD_1_F\": 461, \"MARHH_CHD\": 1262, \"MARHH_NO_C\": 1605, \"MHH_CHILD\": 58, \"FHH_CHILD\": 194, \"FAMILIES\": 3378, \"AVE_FAM_SZ\": 3.100000, \"HSE_UNITS\": 4444, \"VACANT\": 162, \"OWNER_OCC\": 3777, \"RENTER_OCC\": 505 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.131998026438296, 33.847003981624596 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Newnan\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"55020\", \"CAPITAL\": \"N\", \"AREALAND\": 17.920000, \"AREAWATER\": 0.185000, \"POP_CL\": 6, \"POP2000\": 16242, \"WHITE\": 8783, \"BLACK\": 6846, \"AMERI_ES\": 33, \"ASIAN\": 118, \"HAWN_PI\": 3, \"OTHER\": 259, \"MULT_RACE\": 200, \"HISPANIC\": 806, \"MALES\": 7743, \"FEMALES\": 8499, \"AGE_UNDER5\": 1372, \"AGE_5_17\": 3140, \"AGE_18_21\": 880, \"AGE_22_29\": 2254, \"AGE_30_39\": 2594, \"AGE_40_49\": 2140, \"AGE_50_64\": 1961, \"AGE_65_UP\": 1901, \"MED_AGE\": 31.700000, \"MED_AGE_M\": 29.800000, \"MED_AGE_F\": 33.700000, \"HOUSEHOLDS\": 5939, \"AVE_HH_SZ\": 2.600000, \"HSEHLD_1_M\": 594, \"HSEHLD_1_F\": 1034, \"MARHH_CHD\": 1061, \"MARHH_NO_C\": 1255, \"MHH_CHILD\": 113, \"FHH_CHILD\": 872, \"FAMILIES\": 3974, \"AVE_FAM_SZ\": 3.160000, \"HSE_UNITS\": 6464, \"VACANT\": 525, \"OWNER_OCC\": 2779, \"RENTER_OCC\": 3160 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.788648007883552, 33.376410988444285 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"North Atlanta\", \"CLASS\": \"CDP\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"56000\", \"CAPITAL\": \"N\", \"AREALAND\": 7.654000, \"AREAWATER\": 0.057000, \"POP_CL\": 6, \"POP2000\": 38579, \"WHITE\": 23733, \"BLACK\": 6773, \"AMERI_ES\": 158, \"ASIAN\": 1881, \"HAWN_PI\": 20, \"OTHER\": 4878, \"MULT_RACE\": 1136, \"HISPANIC\": 10574, \"MALES\": 21192, \"FEMALES\": 17387, \"AGE_UNDER5\": 2345, \"AGE_5_17\": 3665, \"AGE_18_21\": 2667, \"AGE_22_29\": 9498, \"AGE_30_39\": 9091, \"AGE_40_49\": 5053, \"AGE_50_64\": 3863, \"AGE_65_UP\": 2397, \"MED_AGE\": 30.800000, \"MED_AGE_M\": 30.800000, \"MED_AGE_F\": 30.900000, \"HOUSEHOLDS\": 15886, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 2697, \"HSEHLD_1_F\": 2868, \"MARHH_CHD\": 2147, \"MARHH_NO_C\": 3145, \"MHH_CHILD\": 228, \"FHH_CHILD\": 569, \"FAMILIES\": 7397, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 16636, \"VACANT\": 750, \"OWNER_OCC\": 5822, \"RENTER_OCC\": 10064 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.333452019729776, 33.862652983759595 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"North Decatur\", \"CLASS\": \"CDP\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"56112\", \"CAPITAL\": \"N\", \"AREALAND\": 5.000000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 15270, \"WHITE\": 12795, \"BLACK\": 1227, \"AMERI_ES\": 38, \"ASIAN\": 875, \"HAWN_PI\": 9, \"OTHER\": 99, \"MULT_RACE\": 227, \"HISPANIC\": 429, \"MALES\": 6659, \"FEMALES\": 8611, \"AGE_UNDER5\": 679, \"AGE_5_17\": 1239, \"AGE_18_21\": 524, \"AGE_22_29\": 2358, \"AGE_30_39\": 2778, \"AGE_40_49\": 2242, \"AGE_50_64\": 2057, \"AGE_65_UP\": 3393, \"MED_AGE\": 40.200000, \"MED_AGE_M\": 36.900000, \"MED_AGE_F\": 43.500000, \"HOUSEHOLDS\": 7974, \"AVE_HH_SZ\": 1.850000, \"HSEHLD_1_M\": 1126, \"HSEHLD_1_F\": 2501, \"MARHH_CHD\": 891, \"MARHH_NO_C\": 1780, \"MHH_CHILD\": 50, \"FHH_CHILD\": 193, \"FAMILIES\": 3330, \"AVE_FAM_SZ\": 2.610000, \"HSE_UNITS\": 8387, \"VACANT\": 413, \"OWNER_OCC\": 4467, \"RENTER_OCC\": 3507 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.290123020767567, 33.803053983395465 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"North Druid Hills\", \"CLASS\": \"CDP\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"56168\", \"CAPITAL\": \"N\", \"AREALAND\": 4.974000, \"AREAWATER\": 0.007000, \"POP_CL\": 6, \"POP2000\": 18852, \"WHITE\": 15553, \"BLACK\": 1376, \"AMERI_ES\": 28, \"ASIAN\": 1269, \"HAWN_PI\": 6, \"OTHER\": 272, \"MULT_RACE\": 348, \"HISPANIC\": 815, \"MALES\": 9069, \"FEMALES\": 9783, \"AGE_UNDER5\": 640, \"AGE_5_17\": 1218, \"AGE_18_21\": 1203, \"AGE_22_29\": 4976, \"AGE_30_39\": 3512, \"AGE_40_49\": 2220, \"AGE_50_64\": 1940, \"AGE_65_UP\": 3143, \"MED_AGE\": 33.200000, \"MED_AGE_M\": 32.600000, \"MED_AGE_F\": 34.100000, \"HOUSEHOLDS\": 9760, \"AVE_HH_SZ\": 1.840000, \"HSEHLD_1_M\": 1924, \"HSEHLD_1_F\": 2515, \"MARHH_CHD\": 782, \"MARHH_NO_C\": 1651, \"MHH_CHILD\": 52, \"FHH_CHILD\": 142, \"FAMILIES\": 3078, \"AVE_FAM_SZ\": 2.670000, \"HSE_UNITS\": 10240, \"VACANT\": 480, \"OWNER_OCC\": 3689, \"RENTER_OCC\": 6071 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.328061019688164, 33.81965398376358 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Panthersville\", \"CLASS\": \"CDP\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"59080\", \"CAPITAL\": \"N\", \"AREALAND\": 3.729000, \"AREAWATER\": 0.007000, \"POP_CL\": 6, \"POP2000\": 11791, \"WHITE\": 225, \"BLACK\": 11360, \"AMERI_ES\": 19, \"ASIAN\": 24, \"HAWN_PI\": 6, \"OTHER\": 37, \"MULT_RACE\": 120, \"HISPANIC\": 140, \"MALES\": 5421, \"FEMALES\": 6370, \"AGE_UNDER5\": 1047, \"AGE_5_17\": 2507, \"AGE_18_21\": 784, \"AGE_22_29\": 1764, \"AGE_30_39\": 1892, \"AGE_40_49\": 1693, \"AGE_50_64\": 1637, \"AGE_65_UP\": 467, \"MED_AGE\": 29.000000, \"MED_AGE_M\": 27.400000, \"MED_AGE_F\": 30.600000, \"HOUSEHOLDS\": 4150, \"AVE_HH_SZ\": 2.830000, \"HSEHLD_1_M\": 442, \"HSEHLD_1_F\": 520, \"MARHH_CHD\": 659, \"MARHH_NO_C\": 724, \"MHH_CHILD\": 140, \"FHH_CHILD\": 809, \"FAMILIES\": 2963, \"AVE_FAM_SZ\": 3.310000, \"HSE_UNITS\": 4321, \"VACANT\": 171, \"OWNER_OCC\": 1990, \"RENTER_OCC\": 2160 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.278551020650582, 33.705638983412719 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Peachtree City\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"59724\", \"CAPITAL\": \"N\", \"AREALAND\": 23.274000, \"AREAWATER\": 0.630000, \"POP_CL\": 6, \"POP2000\": 31580, \"WHITE\": 27683, \"BLACK\": 1929, \"AMERI_ES\": 50, \"ASIAN\": 1167, \"HAWN_PI\": 9, \"OTHER\": 291, \"MULT_RACE\": 451, \"HISPANIC\": 1184, \"MALES\": 15405, \"FEMALES\": 16175, \"AGE_UNDER5\": 1922, \"AGE_5_17\": 8042, \"AGE_18_21\": 1218, \"AGE_22_29\": 1711, \"AGE_30_39\": 4449, \"AGE_40_49\": 6536, \"AGE_50_64\": 5190, \"AGE_65_UP\": 2512, \"MED_AGE\": 37.500000, \"MED_AGE_M\": 36.600000, \"MED_AGE_F\": 38.200000, \"HOUSEHOLDS\": 10876, \"AVE_HH_SZ\": 2.890000, \"HSEHLD_1_M\": 644, \"HSEHLD_1_F\": 1101, \"MARHH_CHD\": 4328, \"MARHH_NO_C\": 3377, \"MHH_CHILD\": 170, \"FHH_CHILD\": 629, \"FAMILIES\": 8875, \"AVE_FAM_SZ\": 3.250000, \"HSE_UNITS\": 11313, \"VACANT\": 437, \"OWNER_OCC\": 8826, \"RENTER_OCC\": 2050 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.57062401187288, 33.398991986601587 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Powder Springs\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"62524\", \"CAPITAL\": \"N\", \"AREALAND\": 6.338000, \"AREAWATER\": 0.011000, \"POP_CL\": 6, \"POP2000\": 12481, \"WHITE\": 7225, \"BLACK\": 4666, \"AMERI_ES\": 25, \"ASIAN\": 135, \"HAWN_PI\": 7, \"OTHER\": 215, \"MULT_RACE\": 208, \"HISPANIC\": 539, \"MALES\": 5911, \"FEMALES\": 6570, \"AGE_UNDER5\": 1000, \"AGE_5_17\": 3224, \"AGE_18_21\": 540, \"AGE_22_29\": 1035, \"AGE_30_39\": 2616, \"AGE_40_49\": 2086, \"AGE_50_64\": 1195, \"AGE_65_UP\": 785, \"MED_AGE\": 32.000000, \"MED_AGE_M\": 30.600000, \"MED_AGE_F\": 33.000000, \"HOUSEHOLDS\": 4004, \"AVE_HH_SZ\": 3.060000, \"HSEHLD_1_M\": 241, \"HSEHLD_1_F\": 347, \"MARHH_CHD\": 1470, \"MARHH_NO_C\": 942, \"MHH_CHILD\": 121, \"FHH_CHILD\": 440, \"FAMILIES\": 3269, \"AVE_FAM_SZ\": 3.390000, \"HSE_UNITS\": 4101, \"VACANT\": 97, \"OWNER_OCC\": 3500, \"RENTER_OCC\": 504 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.680349011273449, 33.865932987033879 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Redan\", \"CLASS\": \"CDP\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"63952\", \"CAPITAL\": \"N\", \"AREALAND\": 9.554000, \"AREAWATER\": 0.050000, \"POP_CL\": 6, \"POP2000\": 33841, \"WHITE\": 1922, \"BLACK\": 30886, \"AMERI_ES\": 41, \"ASIAN\": 238, \"HAWN_PI\": 11, \"OTHER\": 255, \"MULT_RACE\": 488, \"HISPANIC\": 603, \"MALES\": 15596, \"FEMALES\": 18245, \"AGE_UNDER5\": 2736, \"AGE_5_17\": 8037, \"AGE_18_21\": 1804, \"AGE_22_29\": 4010, \"AGE_30_39\": 6969, \"AGE_40_49\": 5789, \"AGE_50_64\": 3443, \"AGE_65_UP\": 1053, \"MED_AGE\": 30.500000, \"MED_AGE_M\": 28.400000, \"MED_AGE_F\": 32.200000, \"HOUSEHOLDS\": 11748, \"AVE_HH_SZ\": 2.880000, \"HSEHLD_1_M\": 949, \"HSEHLD_1_F\": 1563, \"MARHH_CHD\": 3067, \"MARHH_NO_C\": 1909, \"MHH_CHILD\": 322, \"FHH_CHILD\": 1852, \"FAMILIES\": 8520, \"AVE_FAM_SZ\": 3.350000, \"HSE_UNITS\": 12106, \"VACANT\": 358, \"OWNER_OCC\": 8826, \"RENTER_OCC\": 2922 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.165781024591709, 33.739255982163378 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Riverdale\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"65464\", \"CAPITAL\": \"N\", \"AREALAND\": 4.264000, \"AREAWATER\": 0.007000, \"POP_CL\": 6, \"POP2000\": 12478, \"WHITE\": 2507, \"BLACK\": 8413, \"AMERI_ES\": 37, \"ASIAN\": 965, \"HAWN_PI\": 10, \"OTHER\": 284, \"MULT_RACE\": 262, \"HISPANIC\": 600, \"MALES\": 5821, \"FEMALES\": 6657, \"AGE_UNDER5\": 1139, \"AGE_5_17\": 2911, \"AGE_18_21\": 629, \"AGE_22_29\": 1704, \"AGE_30_39\": 2369, \"AGE_40_49\": 1785, \"AGE_50_64\": 1222, \"AGE_65_UP\": 719, \"MED_AGE\": 29.500000, \"MED_AGE_M\": 28.200000, \"MED_AGE_F\": 30.600000, \"HOUSEHOLDS\": 4389, \"AVE_HH_SZ\": 2.800000, \"HSEHLD_1_M\": 501, \"HSEHLD_1_F\": 553, \"MARHH_CHD\": 992, \"MARHH_NO_C\": 731, \"MHH_CHILD\": 158, \"FHH_CHILD\": 808, \"FAMILIES\": 3107, \"AVE_FAM_SZ\": 3.320000, \"HSE_UNITS\": 4590, \"VACANT\": 201, \"OWNER_OCC\": 2193, \"RENTER_OCC\": 2196 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.410607016240505, 33.564703984923561 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Rome\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"66668\", \"CAPITAL\": \"N\", \"AREALAND\": 29.383000, \"AREAWATER\": 0.458000, \"POP_CL\": 6, \"POP2000\": 34980, \"WHITE\": 22081, \"BLACK\": 9677, \"AMERI_ES\": 135, \"ASIAN\": 496, \"HAWN_PI\": 56, \"OTHER\": 1962, \"MULT_RACE\": 573, \"HISPANIC\": 3620, \"MALES\": 16586, \"FEMALES\": 18394, \"AGE_UNDER5\": 2355, \"AGE_5_17\": 6119, \"AGE_18_21\": 2583, \"AGE_22_29\": 4202, \"AGE_30_39\": 4758, \"AGE_40_49\": 4568, \"AGE_50_64\": 4831, \"AGE_65_UP\": 5564, \"MED_AGE\": 34.600000, \"MED_AGE_M\": 31.900000, \"MED_AGE_F\": 37.300000, \"HOUSEHOLDS\": 13320, \"AVE_HH_SZ\": 2.470000, \"HSEHLD_1_M\": 1424, \"HSEHLD_1_F\": 2692, \"MARHH_CHD\": 2340, \"MARHH_NO_C\": 3149, \"MHH_CHILD\": 281, \"FHH_CHILD\": 1252, \"FAMILIES\": 8438, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 14508, \"VACANT\": 1188, \"OWNER_OCC\": 7060, \"RENTER_OCC\": 6260 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.185037004902625, 34.259892990574826 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Roswell\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"67284\", \"CAPITAL\": \"N\", \"AREALAND\": 38.022000, \"AREAWATER\": 0.588000, \"POP_CL\": 7, \"POP2000\": 79334, \"WHITE\": 64666, \"BLACK\": 6773, \"AMERI_ES\": 160, \"ASIAN\": 2964, \"HAWN_PI\": 23, \"OTHER\": 3237, \"MULT_RACE\": 1511, \"HISPANIC\": 8421, \"MALES\": 39664, \"FEMALES\": 39670, \"AGE_UNDER5\": 5504, \"AGE_5_17\": 13910, \"AGE_18_21\": 3355, \"AGE_22_29\": 9819, \"AGE_30_39\": 14054, \"AGE_40_49\": 13836, \"AGE_50_64\": 12904, \"AGE_65_UP\": 5952, \"MED_AGE\": 35.200000, \"MED_AGE_M\": 33.600000, \"MED_AGE_F\": 36.600000, \"HOUSEHOLDS\": 30207, \"AVE_HH_SZ\": 2.610000, \"HSEHLD_1_M\": 2885, \"HSEHLD_1_F\": 4078, \"MARHH_CHD\": 8435, \"MARHH_NO_C\": 8810, \"MHH_CHILD\": 428, \"FHH_CHILD\": 1585, \"FAMILIES\": 20923, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 31300, \"VACANT\": 1093, \"OWNER_OCC\": 20227, \"RENTER_OCC\": 9980 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.344028020219994, 34.033895983632767 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"St. Marys\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"67984\", \"CAPITAL\": \"N\", \"AREALAND\": 18.753000, \"AREAWATER\": 1.533000, \"POP_CL\": 6, \"POP2000\": 13761, \"WHITE\": 10267, \"BLACK\": 2751, \"AMERI_ES\": 65, \"ASIAN\": 166, \"HAWN_PI\": 10, \"OTHER\": 214, \"MULT_RACE\": 288, \"HISPANIC\": 614, \"MALES\": 6804, \"FEMALES\": 6957, \"AGE_UNDER5\": 1310, \"AGE_5_17\": 3280, \"AGE_18_21\": 792, \"AGE_22_29\": 1981, \"AGE_30_39\": 2500, \"AGE_40_49\": 1791, \"AGE_50_64\": 1393, \"AGE_65_UP\": 714, \"MED_AGE\": 28.100000, \"MED_AGE_M\": 27.400000, \"MED_AGE_F\": 29.000000, \"HOUSEHOLDS\": 4837, \"AVE_HH_SZ\": 2.830000, \"HSEHLD_1_M\": 438, \"HSEHLD_1_F\": 377, \"MARHH_CHD\": 1622, \"MARHH_NO_C\": 1271, \"MHH_CHILD\": 129, \"FHH_CHILD\": 562, \"FAMILIES\": 3758, \"AVE_FAM_SZ\": 3.180000, \"HSE_UNITS\": 5351, \"VACANT\": 514, \"OWNER_OCC\": 2588, \"RENTER_OCC\": 2249 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.571287311946506, 30.756263954145478 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"St. Simons\", \"CLASS\": \"CDP\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"68040\", \"CAPITAL\": \"N\", \"AREALAND\": 16.605000, \"AREAWATER\": 1.254000, \"POP_CL\": 6, \"POP2000\": 13381, \"WHITE\": 12617, \"BLACK\": 494, \"AMERI_ES\": 22, \"ASIAN\": 124, \"HAWN_PI\": 2, \"OTHER\": 38, \"MULT_RACE\": 84, \"HISPANIC\": 253, \"MALES\": 6217, \"FEMALES\": 7164, \"AGE_UNDER5\": 571, \"AGE_5_17\": 2010, \"AGE_18_21\": 360, \"AGE_22_29\": 830, \"AGE_30_39\": 1652, \"AGE_40_49\": 2190, \"AGE_50_64\": 2900, \"AGE_65_UP\": 2868, \"MED_AGE\": 46.200000, \"MED_AGE_M\": 45.100000, \"MED_AGE_F\": 47.100000, \"HOUSEHOLDS\": 6196, \"AVE_HH_SZ\": 2.140000, \"HSEHLD_1_M\": 721, \"HSEHLD_1_F\": 1315, \"MARHH_CHD\": 1101, \"MARHH_NO_C\": 2172, \"MHH_CHILD\": 56, \"FHH_CHILD\": 239, \"FAMILIES\": 3805, \"AVE_FAM_SZ\": 2.710000, \"HSE_UNITS\": 8437, \"VACANT\": 2241, \"OWNER_OCC\": 4572, \"RENTER_OCC\": 1624 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.386875391781956, 31.161249950209289 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sandy Springs\", \"CLASS\": \"CDP\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"68516\", \"CAPITAL\": \"N\", \"AREALAND\": 37.721000, \"AREAWATER\": 1.255000, \"POP_CL\": 7, \"POP2000\": 85781, \"WHITE\": 66522, \"BLACK\": 10332, \"AMERI_ES\": 154, \"ASIAN\": 2820, \"HAWN_PI\": 44, \"OTHER\": 4240, \"MULT_RACE\": 1669, \"HISPANIC\": 8514, \"MALES\": 42150, \"FEMALES\": 43631, \"AGE_UNDER5\": 4690, \"AGE_5_17\": 10573, \"AGE_18_21\": 3445, \"AGE_22_29\": 17863, \"AGE_30_39\": 16035, \"AGE_40_49\": 11992, \"AGE_50_64\": 12813, \"AGE_65_UP\": 8370, \"MED_AGE\": 33.200000, \"MED_AGE_M\": 32.200000, \"MED_AGE_F\": 34.600000, \"HOUSEHOLDS\": 39288, \"AVE_HH_SZ\": 2.170000, \"HSEHLD_1_M\": 5823, \"HSEHLD_1_F\": 8293, \"MARHH_CHD\": 6346, \"MARHH_NO_C\": 9415, \"MHH_CHILD\": 423, \"FHH_CHILD\": 1511, \"FAMILIES\": 19702, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 42794, \"VACANT\": 3506, \"OWNER_OCC\": 17945, \"RENTER_OCC\": 21343 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.368625019040323, 33.93740098401625 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Savannah\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"69000\", \"CAPITAL\": \"N\", \"AREALAND\": 74.742000, \"AREAWATER\": 3.365000, \"POP_CL\": 8, \"POP2000\": 131510, \"WHITE\": 51108, \"BLACK\": 75072, \"AMERI_ES\": 303, \"ASIAN\": 1997, \"HAWN_PI\": 92, \"OTHER\": 1224, \"MULT_RACE\": 1714, \"HISPANIC\": 2938, \"MALES\": 62039, \"FEMALES\": 69471, \"AGE_UNDER5\": 9186, \"AGE_5_17\": 24432, \"AGE_18_21\": 10173, \"AGE_22_29\": 17661, \"AGE_30_39\": 18008, \"AGE_40_49\": 16892, \"AGE_50_64\": 17691, \"AGE_65_UP\": 17467, \"MED_AGE\": 32.300000, \"MED_AGE_M\": 29.800000, \"MED_AGE_F\": 34.900000, \"HOUSEHOLDS\": 51375, \"AVE_HH_SZ\": 2.450000, \"HSEHLD_1_M\": 6619, \"HSEHLD_1_F\": 9535, \"MARHH_CHD\": 7383, \"MARHH_NO_C\": 10723, \"MHH_CHILD\": 910, \"FHH_CHILD\": 6374, \"FAMILIES\": 31367, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 57437, \"VACANT\": 6062, \"OWNER_OCC\": 25842, \"RENTER_OCC\": 25533 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.103762565326349, 32.050705942902681 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Smyrna\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"71492\", \"CAPITAL\": \"N\", \"AREALAND\": 13.898000, \"AREAWATER\": 0.022000, \"POP_CL\": 6, \"POP2000\": 40999, \"WHITE\": 24368, \"BLACK\": 11147, \"AMERI_ES\": 170, \"ASIAN\": 1606, \"HAWN_PI\": 14, \"OTHER\": 2709, \"MULT_RACE\": 985, \"HISPANIC\": 5659, \"MALES\": 20010, \"FEMALES\": 20989, \"AGE_UNDER5\": 2846, \"AGE_5_17\": 5146, \"AGE_18_21\": 1857, \"AGE_22_29\": 8393, \"AGE_30_39\": 9001, \"AGE_40_49\": 5597, \"AGE_50_64\": 4755, \"AGE_65_UP\": 3404, \"MED_AGE\": 32.000000, \"MED_AGE_M\": 31.000000, \"MED_AGE_F\": 33.000000, \"HOUSEHOLDS\": 18372, \"AVE_HH_SZ\": 2.210000, \"HSEHLD_1_M\": 2806, \"HSEHLD_1_F\": 4080, \"MARHH_CHD\": 2650, \"MARHH_NO_C\": 3998, \"MHH_CHILD\": 268, \"FHH_CHILD\": 1212, \"FAMILIES\": 9499, \"AVE_FAM_SZ\": 2.920000, \"HSE_UNITS\": 19633, \"VACANT\": 1261, \"OWNER_OCC\": 9209, \"RENTER_OCC\": 9163 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.518380014804436, 33.871853985563426 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Snellville\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"71604\", \"CAPITAL\": \"N\", \"AREALAND\": 9.660000, \"AREAWATER\": 0.045000, \"POP_CL\": 6, \"POP2000\": 15351, \"WHITE\": 13761, \"BLACK\": 828, \"AMERI_ES\": 38, \"ASIAN\": 311, \"HAWN_PI\": 3, \"OTHER\": 242, \"MULT_RACE\": 168, \"HISPANIC\": 628, \"MALES\": 7334, \"FEMALES\": 8017, \"AGE_UNDER5\": 977, \"AGE_5_17\": 3100, \"AGE_18_21\": 684, \"AGE_22_29\": 1142, \"AGE_30_39\": 2171, \"AGE_40_49\": 2597, \"AGE_50_64\": 2798, \"AGE_65_UP\": 1882, \"MED_AGE\": 38.600000, \"MED_AGE_M\": 37.300000, \"MED_AGE_F\": 39.600000, \"HOUSEHOLDS\": 5256, \"AVE_HH_SZ\": 2.870000, \"HSEHLD_1_M\": 243, \"HSEHLD_1_F\": 548, \"MARHH_CHD\": 1709, \"MARHH_NO_C\": 1986, \"MHH_CHILD\": 64, \"FHH_CHILD\": 237, \"FAMILIES\": 4317, \"AVE_FAM_SZ\": 3.180000, \"HSE_UNITS\": 5391, \"VACANT\": 135, \"OWNER_OCC\": 4523, \"RENTER_OCC\": 733 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.006324031608344, 33.858438980161672 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Statesboro\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"73256\", \"CAPITAL\": \"N\", \"AREALAND\": 12.520000, \"AREAWATER\": 0.096000, \"POP_CL\": 6, \"POP2000\": 22698, \"WHITE\": 12758, \"BLACK\": 9136, \"AMERI_ES\": 16, \"ASIAN\": 300, \"HAWN_PI\": 12, \"OTHER\": 215, \"MULT_RACE\": 261, \"HISPANIC\": 487, \"MALES\": 10661, \"FEMALES\": 12037, \"AGE_UNDER5\": 927, \"AGE_5_17\": 2308, \"AGE_18_21\": 8052, \"AGE_22_29\": 4338, \"AGE_30_39\": 1623, \"AGE_40_49\": 1610, \"AGE_50_64\": 1755, \"AGE_65_UP\": 2085, \"MED_AGE\": 22.000000, \"MED_AGE_M\": 22.000000, \"MED_AGE_F\": 22.100000, \"HOUSEHOLDS\": 8560, \"AVE_HH_SZ\": 2.270000, \"HSEHLD_1_M\": 1091, \"HSEHLD_1_F\": 1594, \"MARHH_CHD\": 751, \"MARHH_NO_C\": 1122, \"MHH_CHILD\": 92, \"FHH_CHILD\": 687, \"FAMILIES\": 3304, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 9235, \"VACANT\": 675, \"OWNER_OCC\": 2591, \"RENTER_OCC\": 5969 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.779234317602572, 32.445146950304448 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sugar Hill\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"74180\", \"CAPITAL\": \"N\", \"AREALAND\": 9.161000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11399, \"WHITE\": 9998, \"BLACK\": 533, \"AMERI_ES\": 19, \"ASIAN\": 189, \"HAWN_PI\": 2, \"OTHER\": 461, \"MULT_RACE\": 197, \"HISPANIC\": 1039, \"MALES\": 5691, \"FEMALES\": 5708, \"AGE_UNDER5\": 1118, \"AGE_5_17\": 2209, \"AGE_18_21\": 470, \"AGE_22_29\": 1377, \"AGE_30_39\": 2548, \"AGE_40_49\": 1783, \"AGE_50_64\": 1283, \"AGE_65_UP\": 611, \"MED_AGE\": 32.100000, \"MED_AGE_M\": 31.700000, \"MED_AGE_F\": 32.700000, \"HOUSEHOLDS\": 4004, \"AVE_HH_SZ\": 2.850000, \"HSEHLD_1_M\": 302, \"HSEHLD_1_F\": 363, \"MARHH_CHD\": 1470, \"MARHH_NO_C\": 1120, \"MHH_CHILD\": 77, \"FHH_CHILD\": 218, \"FAMILIES\": 3140, \"AVE_FAM_SZ\": 3.200000, \"HSE_UNITS\": 4115, \"VACANT\": 111, \"OWNER_OCC\": 3414, \"RENTER_OCC\": 590 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.044094031539402, 34.10212298020214 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Thomasville\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"76224\", \"CAPITAL\": \"N\", \"AREALAND\": 14.870000, \"AREAWATER\": 0.059000, \"POP_CL\": 6, \"POP2000\": 18162, \"WHITE\": 7779, \"BLACK\": 10060, \"AMERI_ES\": 41, \"ASIAN\": 96, \"HAWN_PI\": 2, \"OTHER\": 43, \"MULT_RACE\": 141, \"HISPANIC\": 232, \"MALES\": 8255, \"FEMALES\": 9907, \"AGE_UNDER5\": 1285, \"AGE_5_17\": 3592, \"AGE_18_21\": 926, \"AGE_22_29\": 1759, \"AGE_30_39\": 2440, \"AGE_40_49\": 2527, \"AGE_50_64\": 2693, \"AGE_65_UP\": 2940, \"MED_AGE\": 36.500000, \"MED_AGE_M\": 34.100000, \"MED_AGE_F\": 38.700000, \"HOUSEHOLDS\": 7021, \"AVE_HH_SZ\": 2.470000, \"HSEHLD_1_M\": 742, \"HSEHLD_1_F\": 1344, \"MARHH_CHD\": 1115, \"MARHH_NO_C\": 1674, \"MHH_CHILD\": 112, \"FHH_CHILD\": 936, \"FAMILIES\": 4656, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 7788, \"VACANT\": 767, \"OWNER_OCC\": 4214, \"RENTER_OCC\": 2807 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.978199015375395, 30.836443984526468 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Tifton\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"76476\", \"CAPITAL\": \"N\", \"AREALAND\": 8.931000, \"AREAWATER\": 0.105000, \"POP_CL\": 6, \"POP2000\": 15060, \"WHITE\": 9226, \"BLACK\": 4755, \"AMERI_ES\": 34, \"ASIAN\": 247, \"HAWN_PI\": 5, \"OTHER\": 695, \"MULT_RACE\": 98, \"HISPANIC\": 1139, \"MALES\": 7120, \"FEMALES\": 7940, \"AGE_UNDER5\": 1214, \"AGE_5_17\": 2819, \"AGE_18_21\": 1474, \"AGE_22_29\": 1809, \"AGE_30_39\": 1943, \"AGE_40_49\": 1844, \"AGE_50_64\": 1871, \"AGE_65_UP\": 2086, \"MED_AGE\": 30.900000, \"MED_AGE_M\": 28.500000, \"MED_AGE_F\": 33.700000, \"HOUSEHOLDS\": 5532, \"AVE_HH_SZ\": 2.500000, \"HSEHLD_1_M\": 611, \"HSEHLD_1_F\": 1020, \"MARHH_CHD\": 955, \"MARHH_NO_C\": 1305, \"MHH_CHILD\": 135, \"FHH_CHILD\": 761, \"FAMILIES\": 3600, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 6102, \"VACANT\": 570, \"OWNER_OCC\": 2747, \"RENTER_OCC\": 2785 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.510065037854503, 31.463417978629288 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Tucker\", \"CLASS\": \"CDP\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"77652\", \"CAPITAL\": \"N\", \"AREALAND\": 12.015000, \"AREAWATER\": 0.104000, \"POP_CL\": 6, \"POP2000\": 26532, \"WHITE\": 19438, \"BLACK\": 3729, \"AMERI_ES\": 45, \"ASIAN\": 2096, \"HAWN_PI\": 13, \"OTHER\": 717, \"MULT_RACE\": 494, \"HISPANIC\": 2047, \"MALES\": 12767, \"FEMALES\": 13765, \"AGE_UNDER5\": 1632, \"AGE_5_17\": 3878, \"AGE_18_21\": 947, \"AGE_22_29\": 2711, \"AGE_30_39\": 4291, \"AGE_40_49\": 4062, \"AGE_50_64\": 4878, \"AGE_65_UP\": 4133, \"MED_AGE\": 39.600000, \"MED_AGE_M\": 37.500000, \"MED_AGE_F\": 41.600000, \"HOUSEHOLDS\": 10421, \"AVE_HH_SZ\": 2.520000, \"HSEHLD_1_M\": 823, \"HSEHLD_1_F\": 1598, \"MARHH_CHD\": 2116, \"MARHH_NO_C\": 3606, \"MHH_CHILD\": 134, \"FHH_CHILD\": 559, \"FAMILIES\": 7198, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 10704, \"VACANT\": 283, \"OWNER_OCC\": 7785, \"RENTER_OCC\": 2636 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.221524023252485, 33.85173598259977 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Union City\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"78324\", \"CAPITAL\": \"N\", \"AREALAND\": 8.588000, \"AREAWATER\": 0.073000, \"POP_CL\": 6, \"POP2000\": 11621, \"WHITE\": 2947, \"BLACK\": 8057, \"AMERI_ES\": 30, \"ASIAN\": 147, \"HAWN_PI\": 3, \"OTHER\": 237, \"MULT_RACE\": 200, \"HISPANIC\": 607, \"MALES\": 5131, \"FEMALES\": 6490, \"AGE_UNDER5\": 857, \"AGE_5_17\": 2307, \"AGE_18_21\": 570, \"AGE_22_29\": 1579, \"AGE_30_39\": 1976, \"AGE_40_49\": 1540, \"AGE_50_64\": 1227, \"AGE_65_UP\": 1565, \"MED_AGE\": 32.200000, \"MED_AGE_M\": 29.100000, \"MED_AGE_F\": 35.200000, \"HOUSEHOLDS\": 4974, \"AVE_HH_SZ\": 2.290000, \"HSEHLD_1_M\": 656, \"HSEHLD_1_F\": 1259, \"MARHH_CHD\": 619, \"MARHH_NO_C\": 694, \"MHH_CHILD\": 135, \"FHH_CHILD\": 772, \"FAMILIES\": 2750, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 5332, \"VACANT\": 358, \"OWNER_OCC\": 1780, \"RENTER_OCC\": 3194 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.54335401310928, 33.57846998614766 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Valdosta\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"78800\", \"CAPITAL\": \"N\", \"AREALAND\": 29.942000, \"AREAWATER\": 0.325000, \"POP_CL\": 6, \"POP2000\": 43724, \"WHITE\": 20860, \"BLACK\": 21201, \"AMERI_ES\": 102, \"ASIAN\": 610, \"HAWN_PI\": 13, \"OTHER\": 394, \"MULT_RACE\": 544, \"HISPANIC\": 954, \"MALES\": 20237, \"FEMALES\": 23487, \"AGE_UNDER5\": 3353, \"AGE_5_17\": 8054, \"AGE_18_21\": 4963, \"AGE_22_29\": 6700, \"AGE_30_39\": 5558, \"AGE_40_49\": 5308, \"AGE_50_64\": 5206, \"AGE_65_UP\": 4582, \"MED_AGE\": 28.200000, \"MED_AGE_M\": 27.100000, \"MED_AGE_F\": 29.300000, \"HOUSEHOLDS\": 16692, \"AVE_HH_SZ\": 2.500000, \"HSEHLD_1_M\": 1956, \"HSEHLD_1_F\": 2787, \"MARHH_CHD\": 2814, \"MARHH_NO_C\": 3552, \"MHH_CHILD\": 294, \"FHH_CHILD\": 2056, \"FAMILIES\": 10232, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 18907, \"VACANT\": 2215, \"OWNER_OCC\": 7963, \"RENTER_OCC\": 8729 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.283101045453819, 30.846660977159107 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Vidalia\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"79388\", \"CAPITAL\": \"N\", \"AREALAND\": 17.329000, \"AREAWATER\": 0.110000, \"POP_CL\": 6, \"POP2000\": 10491, \"WHITE\": 6254, \"BLACK\": 3869, \"AMERI_ES\": 15, \"ASIAN\": 93, \"HAWN_PI\": 0, \"OTHER\": 191, \"MULT_RACE\": 69, \"HISPANIC\": 340, \"MALES\": 4709, \"FEMALES\": 5782, \"AGE_UNDER5\": 743, \"AGE_5_17\": 2182, \"AGE_18_21\": 545, \"AGE_22_29\": 959, \"AGE_30_39\": 1385, \"AGE_40_49\": 1484, \"AGE_50_64\": 1636, \"AGE_65_UP\": 1557, \"MED_AGE\": 36.200000, \"MED_AGE_M\": 33.700000, \"MED_AGE_F\": 38.100000, \"HOUSEHOLDS\": 4167, \"AVE_HH_SZ\": 2.460000, \"HSEHLD_1_M\": 462, \"HSEHLD_1_F\": 807, \"MARHH_CHD\": 778, \"MARHH_NO_C\": 1045, \"MHH_CHILD\": 88, \"FHH_CHILD\": 486, \"FAMILIES\": 2758, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 4676, \"VACANT\": 509, \"OWNER_OCC\": 2315, \"RENTER_OCC\": 1852 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.410086162758844, 32.21530496134843 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Warner Robins\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"80508\", \"CAPITAL\": \"N\", \"AREALAND\": 22.764000, \"AREAWATER\": 0.092000, \"POP_CL\": 6, \"POP2000\": 48804, \"WHITE\": 30504, \"BLACK\": 15663, \"AMERI_ES\": 148, \"ASIAN\": 875, \"HAWN_PI\": 34, \"OTHER\": 603, \"MULT_RACE\": 977, \"HISPANIC\": 1856, \"MALES\": 23674, \"FEMALES\": 25130, \"AGE_UNDER5\": 3535, \"AGE_5_17\": 9897, \"AGE_18_21\": 2580, \"AGE_22_29\": 5930, \"AGE_30_39\": 7899, \"AGE_40_49\": 6964, \"AGE_50_64\": 6750, \"AGE_65_UP\": 5249, \"MED_AGE\": 33.300000, \"MED_AGE_M\": 32.100000, \"MED_AGE_F\": 34.400000, \"HOUSEHOLDS\": 19550, \"AVE_HH_SZ\": 2.480000, \"HSEHLD_1_M\": 2689, \"HSEHLD_1_F\": 2800, \"MARHH_CHD\": 4047, \"MARHH_NO_C\": 4997, \"MHH_CHILD\": 462, \"FHH_CHILD\": 2197, \"FAMILIES\": 13088, \"AVE_FAM_SZ\": 3.030000, \"HSE_UNITS\": 21688, \"VACANT\": 2138, \"OWNER_OCC\": 11243, \"RENTER_OCC\": 8307 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.638027040417839, 32.608719977975717 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Waycross\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"80956\", \"CAPITAL\": \"N\", \"AREALAND\": 11.689000, \"AREAWATER\": 0.017000, \"POP_CL\": 6, \"POP2000\": 15333, \"WHITE\": 6794, \"BLACK\": 8205, \"AMERI_ES\": 19, \"ASIAN\": 95, \"HAWN_PI\": 3, \"OTHER\": 104, \"MULT_RACE\": 113, \"HISPANIC\": 210, \"MALES\": 6995, \"FEMALES\": 8338, \"AGE_UNDER5\": 1013, \"AGE_5_17\": 3024, \"AGE_18_21\": 799, \"AGE_22_29\": 1401, \"AGE_30_39\": 1956, \"AGE_40_49\": 1940, \"AGE_50_64\": 2212, \"AGE_65_UP\": 2988, \"MED_AGE\": 37.400000, \"MED_AGE_M\": 34.000000, \"MED_AGE_F\": 40.500000, \"HOUSEHOLDS\": 6094, \"AVE_HH_SZ\": 2.370000, \"HSEHLD_1_M\": 782, \"HSEHLD_1_F\": 1346, \"MARHH_CHD\": 851, \"MARHH_NO_C\": 1364, \"MHH_CHILD\": 96, \"FHH_CHILD\": 738, \"FAMILIES\": 3740, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 7534, \"VACANT\": 1440, \"OWNER_OCC\": 3532, \"RENTER_OCC\": 2562 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.354911148855265, 31.213859963724822 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wilmington Island\", \"CLASS\": \"CDP\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"83168\", \"CAPITAL\": \"N\", \"AREALAND\": 8.446000, \"AREAWATER\": 1.013000, \"POP_CL\": 6, \"POP2000\": 14213, \"WHITE\": 13113, \"BLACK\": 559, \"AMERI_ES\": 17, \"ASIAN\": 357, \"HAWN_PI\": 5, \"OTHER\": 50, \"MULT_RACE\": 112, \"HISPANIC\": 188, \"MALES\": 6884, \"FEMALES\": 7329, \"AGE_UNDER5\": 917, \"AGE_5_17\": 2745, \"AGE_18_21\": 536, \"AGE_22_29\": 1263, \"AGE_30_39\": 2535, \"AGE_40_49\": 2556, \"AGE_50_64\": 2305, \"AGE_65_UP\": 1356, \"MED_AGE\": 36.900000, \"MED_AGE_M\": 36.700000, \"MED_AGE_F\": 37.100000, \"HOUSEHOLDS\": 5613, \"AVE_HH_SZ\": 2.530000, \"HSEHLD_1_M\": 541, \"HSEHLD_1_F\": 695, \"MARHH_CHD\": 1637, \"MARHH_NO_C\": 1764, \"MHH_CHILD\": 85, \"FHH_CHILD\": 290, \"FAMILIES\": 4059, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 5946, \"VACANT\": 333, \"OWNER_OCC\": 4227, \"RENTER_OCC\": 1386 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.975224629872741, 32.003462941893439 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Winder\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"83420\", \"CAPITAL\": \"N\", \"AREALAND\": 10.835000, \"AREAWATER\": 0.360000, \"POP_CL\": 6, \"POP2000\": 10201, \"WHITE\": 7846, \"BLACK\": 1838, \"AMERI_ES\": 26, \"ASIAN\": 125, \"HAWN_PI\": 3, \"OTHER\": 175, \"MULT_RACE\": 188, \"HISPANIC\": 385, \"MALES\": 4836, \"FEMALES\": 5365, \"AGE_UNDER5\": 814, \"AGE_5_17\": 1868, \"AGE_18_21\": 513, \"AGE_22_29\": 1313, \"AGE_30_39\": 1610, \"AGE_40_49\": 1260, \"AGE_50_64\": 1378, \"AGE_65_UP\": 1445, \"MED_AGE\": 33.600000, \"MED_AGE_M\": 31.000000, \"MED_AGE_F\": 36.300000, \"HOUSEHOLDS\": 3877, \"AVE_HH_SZ\": 2.530000, \"HSEHLD_1_M\": 369, \"HSEHLD_1_F\": 691, \"MARHH_CHD\": 849, \"MARHH_NO_C\": 922, \"MHH_CHILD\": 86, \"FHH_CHILD\": 390, \"FAMILIES\": 2631, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 4098, \"VACANT\": 221, \"OWNER_OCC\": 2185, \"RENTER_OCC\": 1692 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.720873047377211, 33.996494976319084 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Woodstock\", \"CLASS\": \"city\", \"ST\": \"GA\", \"STFIPS\": \"13\", \"PLACEFIP\": \"84176\", \"CAPITAL\": \"N\", \"AREALAND\": 8.813000, \"AREAWATER\": 0.015000, \"POP_CL\": 6, \"POP2000\": 10050, \"WHITE\": 8987, \"BLACK\": 508, \"AMERI_ES\": 29, \"ASIAN\": 167, \"HAWN_PI\": 2, \"OTHER\": 195, \"MULT_RACE\": 162, \"HISPANIC\": 496, \"MALES\": 4820, \"FEMALES\": 5230, \"AGE_UNDER5\": 905, \"AGE_5_17\": 1790, \"AGE_18_21\": 424, \"AGE_22_29\": 1291, \"AGE_30_39\": 2138, \"AGE_40_49\": 1551, \"AGE_50_64\": 1145, \"AGE_65_UP\": 806, \"MED_AGE\": 32.800000, \"MED_AGE_M\": 32.000000, \"MED_AGE_F\": 33.400000, \"HOUSEHOLDS\": 3869, \"AVE_HH_SZ\": 2.550000, \"HSEHLD_1_M\": 378, \"HSEHLD_1_F\": 632, \"MARHH_CHD\": 1144, \"MARHH_NO_C\": 988, \"MHH_CHILD\": 74, \"FHH_CHILD\": 239, \"FAMILIES\": 2626, \"AVE_FAM_SZ\": 3.100000, \"HSE_UNITS\": 4102, \"VACANT\": 233, \"OWNER_OCC\": 2824, \"RENTER_OCC\": 1045 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.518972015695169, 34.100730985287463 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Altoona\", \"CLASS\": \"city\", \"ST\": \"IA\", \"STFIPS\": \"19\", \"PLACEFIP\": \"01630\", \"CAPITAL\": \"N\", \"AREALAND\": 7.104000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10345, \"WHITE\": 9922, \"BLACK\": 95, \"AMERI_ES\": 34, \"ASIAN\": 48, \"HAWN_PI\": 42, \"OTHER\": 80, \"MULT_RACE\": 124, \"HISPANIC\": 171, \"MALES\": 4941, \"FEMALES\": 5404, \"AGE_UNDER5\": 915, \"AGE_5_17\": 2247, \"AGE_18_21\": 506, \"AGE_22_29\": 1084, \"AGE_30_39\": 1863, \"AGE_40_49\": 1535, \"AGE_50_64\": 1397, \"AGE_65_UP\": 798, \"MED_AGE\": 32.200000, \"MED_AGE_M\": 31.200000, \"MED_AGE_F\": 33.200000, \"HOUSEHOLDS\": 3850, \"AVE_HH_SZ\": 2.660000, \"HSEHLD_1_M\": 308, \"HSEHLD_1_F\": 460, \"MARHH_CHD\": 1198, \"MARHH_NO_C\": 1053, \"MHH_CHILD\": 75, \"FHH_CHILD\": 410, \"FAMILIES\": 2894, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 3959, \"VACANT\": 109, \"OWNER_OCC\": 2729, \"RENTER_OCC\": 1121 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.472546, 41.650088999996449 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ames\", \"CLASS\": \"city\", \"ST\": \"IA\", \"STFIPS\": \"19\", \"PLACEFIP\": \"01855\", \"CAPITAL\": \"N\", \"AREALAND\": 21.566000, \"AREAWATER\": 0.017000, \"POP_CL\": 7, \"POP2000\": 50731, \"WHITE\": 44308, \"BLACK\": 1343, \"AMERI_ES\": 75, \"ASIAN\": 3906, \"HAWN_PI\": 22, \"OTHER\": 388, \"MULT_RACE\": 689, \"HISPANIC\": 1002, \"MALES\": 26491, \"FEMALES\": 24240, \"AGE_UNDER5\": 2237, \"AGE_5_17\": 5174, \"AGE_18_21\": 13572, \"AGE_22_29\": 11037, \"AGE_30_39\": 5312, \"AGE_40_49\": 4884, \"AGE_50_64\": 4622, \"AGE_65_UP\": 3893, \"MED_AGE\": 23.600000, \"MED_AGE_M\": 23.300000, \"MED_AGE_F\": 24.100000, \"HOUSEHOLDS\": 18085, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 2366, \"HSEHLD_1_F\": 2797, \"MARHH_CHD\": 3286, \"MARHH_NO_C\": 4301, \"MHH_CHILD\": 147, \"FHH_CHILD\": 595, \"FAMILIES\": 8969, \"AVE_FAM_SZ\": 2.850000, \"HSE_UNITS\": 18757, \"VACANT\": 672, \"OWNER_OCC\": 8337, \"RENTER_OCC\": 9748 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.631586, 42.027334999996228 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ankeny\", \"CLASS\": \"city\", \"ST\": \"IA\", \"STFIPS\": \"19\", \"PLACEFIP\": \"02305\", \"CAPITAL\": \"N\", \"AREALAND\": 16.775000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 27117, \"WHITE\": 26287, \"BLACK\": 206, \"AMERI_ES\": 40, \"ASIAN\": 254, \"HAWN_PI\": 7, \"OTHER\": 102, \"MULT_RACE\": 221, \"HISPANIC\": 293, \"MALES\": 13140, \"FEMALES\": 13977, \"AGE_UNDER5\": 2274, \"AGE_5_17\": 5086, \"AGE_18_21\": 1806, \"AGE_22_29\": 3476, \"AGE_30_39\": 4759, \"AGE_40_49\": 4017, \"AGE_50_64\": 3539, \"AGE_65_UP\": 2160, \"MED_AGE\": 31.900000, \"MED_AGE_M\": 31.300000, \"MED_AGE_F\": 32.500000, \"HOUSEHOLDS\": 10339, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 920, \"HSEHLD_1_F\": 1334, \"MARHH_CHD\": 3249, \"MARHH_NO_C\": 3022, \"MHH_CHILD\": 150, \"FHH_CHILD\": 542, \"FAMILIES\": 7275, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 10882, \"VACANT\": 543, \"OWNER_OCC\": 7427, \"RENTER_OCC\": 2912 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.604283, 41.726787999996418 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bettendorf\", \"CLASS\": \"city\", \"ST\": \"IA\", \"STFIPS\": \"19\", \"PLACEFIP\": \"06355\", \"CAPITAL\": \"N\", \"AREALAND\": 21.235000, \"AREAWATER\": 1.138000, \"POP_CL\": 6, \"POP2000\": 31275, \"WHITE\": 29715, \"BLACK\": 494, \"AMERI_ES\": 67, \"ASIAN\": 444, \"HAWN_PI\": 4, \"OTHER\": 214, \"MULT_RACE\": 337, \"HISPANIC\": 772, \"MALES\": 15180, \"FEMALES\": 16095, \"AGE_UNDER5\": 1924, \"AGE_5_17\": 6276, \"AGE_18_21\": 1230, \"AGE_22_29\": 2559, \"AGE_30_39\": 4297, \"AGE_40_49\": 5597, \"AGE_50_64\": 5514, \"AGE_65_UP\": 3878, \"MED_AGE\": 38.700000, \"MED_AGE_M\": 37.600000, \"MED_AGE_F\": 39.700000, \"HOUSEHOLDS\": 12474, \"AVE_HH_SZ\": 2.480000, \"HSEHLD_1_M\": 1316, \"HSEHLD_1_F\": 1928, \"MARHH_CHD\": 3403, \"MARHH_NO_C\": 4015, \"MHH_CHILD\": 152, \"FHH_CHILD\": 680, \"FAMILIES\": 8714, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 13044, \"VACANT\": 570, \"OWNER_OCC\": 9646, \"RENTER_OCC\": 2828 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.493678999997172, 41.55004399997835 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Boone\", \"CLASS\": \"city\", \"ST\": \"IA\", \"STFIPS\": \"19\", \"PLACEFIP\": \"07480\", \"CAPITAL\": \"N\", \"AREALAND\": 8.929000, \"AREAWATER\": 0.004000, \"POP_CL\": 6, \"POP2000\": 12803, \"WHITE\": 12590, \"BLACK\": 41, \"AMERI_ES\": 28, \"ASIAN\": 27, \"HAWN_PI\": 0, \"OTHER\": 45, \"MULT_RACE\": 72, \"HISPANIC\": 112, \"MALES\": 6040, \"FEMALES\": 6763, \"AGE_UNDER5\": 825, \"AGE_5_17\": 2285, \"AGE_18_21\": 711, \"AGE_22_29\": 1284, \"AGE_30_39\": 1747, \"AGE_40_49\": 1869, \"AGE_50_64\": 1827, \"AGE_65_UP\": 2255, \"MED_AGE\": 37.700000, \"MED_AGE_M\": 35.700000, \"MED_AGE_F\": 39.500000, \"HOUSEHOLDS\": 5313, \"AVE_HH_SZ\": 2.340000, \"HSEHLD_1_M\": 646, \"HSEHLD_1_F\": 1026, \"MARHH_CHD\": 1160, \"MARHH_NO_C\": 1547, \"MHH_CHILD\": 83, \"FHH_CHILD\": 363, \"FAMILIES\": 3365, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 5585, \"VACANT\": 272, \"OWNER_OCC\": 3728, \"RENTER_OCC\": 1585 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.886057, 42.061126999996169 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Burlington\", \"CLASS\": \"city\", \"ST\": \"IA\", \"STFIPS\": \"19\", \"PLACEFIP\": \"09550\", \"CAPITAL\": \"N\", \"AREALAND\": 14.051000, \"AREAWATER\": 0.783000, \"POP_CL\": 6, \"POP2000\": 26839, \"WHITE\": 24581, \"BLACK\": 1354, \"AMERI_ES\": 89, \"ASIAN\": 177, \"HAWN_PI\": 11, \"OTHER\": 242, \"MULT_RACE\": 385, \"HISPANIC\": 554, \"MALES\": 12779, \"FEMALES\": 14060, \"AGE_UNDER5\": 1769, \"AGE_5_17\": 4804, \"AGE_18_21\": 1437, \"AGE_22_29\": 2645, \"AGE_30_39\": 3571, \"AGE_40_49\": 3784, \"AGE_50_64\": 4210, \"AGE_65_UP\": 4619, \"MED_AGE\": 37.900000, \"MED_AGE_M\": 35.900000, \"MED_AGE_F\": 39.900000, \"HOUSEHOLDS\": 11102, \"AVE_HH_SZ\": 2.360000, \"HSEHLD_1_M\": 1338, \"HSEHLD_1_F\": 2099, \"MARHH_CHD\": 2104, \"MARHH_NO_C\": 3250, \"MHH_CHILD\": 253, \"FHH_CHILD\": 880, \"FAMILIES\": 7110, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 11985, \"VACANT\": 883, \"OWNER_OCC\": 7791, \"RENTER_OCC\": 3311 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -91.115725999999555, 40.80815299999378 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Carroll\", \"CLASS\": \"city\", \"ST\": \"IA\", \"STFIPS\": \"19\", \"PLACEFIP\": \"11080\", \"CAPITAL\": \"N\", \"AREALAND\": 5.543000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10106, \"WHITE\": 9961, \"BLACK\": 18, \"AMERI_ES\": 10, \"ASIAN\": 52, \"HAWN_PI\": 0, \"OTHER\": 28, \"MULT_RACE\": 37, \"HISPANIC\": 58, \"MALES\": 4773, \"FEMALES\": 5333, \"AGE_UNDER5\": 616, \"AGE_5_17\": 2004, \"AGE_18_21\": 452, \"AGE_22_29\": 876, \"AGE_30_39\": 1276, \"AGE_40_49\": 1549, \"AGE_50_64\": 1338, \"AGE_65_UP\": 1995, \"MED_AGE\": 38.800000, \"MED_AGE_M\": 36.300000, \"MED_AGE_F\": 41.100000, \"HOUSEHOLDS\": 4173, \"AVE_HH_SZ\": 2.360000, \"HSEHLD_1_M\": 460, \"HSEHLD_1_F\": 871, \"MARHH_CHD\": 986, \"MARHH_NO_C\": 1171, \"MHH_CHILD\": 70, \"FHH_CHILD\": 271, \"FAMILIES\": 2648, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 4431, \"VACANT\": 258, \"OWNER_OCC\": 2926, \"RENTER_OCC\": 1247 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.866361000000282, 42.069543999993016 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cedar Falls\", \"CLASS\": \"city\", \"ST\": \"IA\", \"STFIPS\": \"19\", \"PLACEFIP\": \"11755\", \"CAPITAL\": \"N\", \"AREALAND\": 28.300000, \"AREAWATER\": 0.585000, \"POP_CL\": 6, \"POP2000\": 36145, \"WHITE\": 34389, \"BLACK\": 568, \"AMERI_ES\": 55, \"ASIAN\": 583, \"HAWN_PI\": 8, \"OTHER\": 148, \"MULT_RACE\": 394, \"HISPANIC\": 389, \"MALES\": 16969, \"FEMALES\": 19176, \"AGE_UNDER5\": 1586, \"AGE_5_17\": 4911, \"AGE_18_21\": 7650, \"AGE_22_29\": 5286, \"AGE_30_39\": 3396, \"AGE_40_49\": 4519, \"AGE_50_64\": 4502, \"AGE_65_UP\": 4295, \"MED_AGE\": 26.000000, \"MED_AGE_M\": 25.900000, \"MED_AGE_F\": 26.200000, \"HOUSEHOLDS\": 12833, \"AVE_HH_SZ\": 2.450000, \"HSEHLD_1_M\": 1317, \"HSEHLD_1_F\": 1957, \"MARHH_CHD\": 2644, \"MARHH_NO_C\": 3635, \"MHH_CHILD\": 152, \"FHH_CHILD\": 661, \"FAMILIES\": 7561, \"AVE_FAM_SZ\": 2.910000, \"HSE_UNITS\": 13271, \"VACANT\": 438, \"OWNER_OCC\": 8258, \"RENTER_OCC\": 4575 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -92.446402, 42.523519999995898 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cedar Rapids\", \"CLASS\": \"city\", \"ST\": \"IA\", \"STFIPS\": \"19\", \"PLACEFIP\": \"12000\", \"CAPITAL\": \"N\", \"AREALAND\": 63.136000, \"AREAWATER\": 1.278000, \"POP_CL\": 8, \"POP2000\": 120758, \"WHITE\": 110931, \"BLACK\": 4481, \"AMERI_ES\": 306, \"ASIAN\": 2135, \"HAWN_PI\": 78, \"OTHER\": 670, \"MULT_RACE\": 2157, \"HISPANIC\": 2065, \"MALES\": 58833, \"FEMALES\": 61925, \"AGE_UNDER5\": 8625, \"AGE_5_17\": 20928, \"AGE_18_21\": 7932, \"AGE_22_29\": 14337, \"AGE_30_39\": 18571, \"AGE_40_49\": 17623, \"AGE_50_64\": 16948, \"AGE_65_UP\": 15794, \"MED_AGE\": 34.700000, \"MED_AGE_M\": 33.500000, \"MED_AGE_F\": 35.900000, \"HOUSEHOLDS\": 49820, \"AVE_HH_SZ\": 2.360000, \"HSEHLD_1_M\": 6614, \"HSEHLD_1_F\": 8433, \"MARHH_CHD\": 10570, \"MARHH_NO_C\": 13557, \"MHH_CHILD\": 1010, \"FHH_CHILD\": 3315, \"FAMILIES\": 30824, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 52240, \"VACANT\": 2420, \"OWNER_OCC\": 34393, \"RENTER_OCC\": 15427 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -91.668529, 41.983099999995837 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Clinton\", \"CLASS\": \"city\", \"ST\": \"IA\", \"STFIPS\": \"19\", \"PLACEFIP\": \"14430\", \"CAPITAL\": \"N\", \"AREALAND\": 35.565000, \"AREAWATER\": 2.751000, \"POP_CL\": 6, \"POP2000\": 27772, \"WHITE\": 26049, \"BLACK\": 893, \"AMERI_ES\": 90, \"ASIAN\": 225, \"HAWN_PI\": 3, \"OTHER\": 141, \"MULT_RACE\": 371, \"HISPANIC\": 466, \"MALES\": 13257, \"FEMALES\": 14515, \"AGE_UNDER5\": 1823, \"AGE_5_17\": 5010, \"AGE_18_21\": 1566, \"AGE_22_29\": 2553, \"AGE_30_39\": 3667, \"AGE_40_49\": 4092, \"AGE_50_64\": 4332, \"AGE_65_UP\": 4729, \"MED_AGE\": 38.300000, \"MED_AGE_M\": 36.600000, \"MED_AGE_F\": 39.900000, \"HOUSEHOLDS\": 11427, \"AVE_HH_SZ\": 2.360000, \"HSEHLD_1_M\": 1417, \"HSEHLD_1_F\": 2036, \"MARHH_CHD\": 2304, \"MARHH_NO_C\": 3287, \"MHH_CHILD\": 262, \"FHH_CHILD\": 876, \"FAMILIES\": 7360, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 12412, \"VACANT\": 985, \"OWNER_OCC\": 7914, \"RENTER_OCC\": 3513 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.207329999994755, 41.846862999961061 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Clive\", \"CLASS\": \"city\", \"ST\": \"IA\", \"STFIPS\": \"19\", \"PLACEFIP\": \"14520\", \"CAPITAL\": \"N\", \"AREALAND\": 7.227000, \"AREAWATER\": 0.107000, \"POP_CL\": 6, \"POP2000\": 12855, \"WHITE\": 11962, \"BLACK\": 160, \"AMERI_ES\": 10, \"ASIAN\": 370, \"HAWN_PI\": 1, \"OTHER\": 161, \"MULT_RACE\": 191, \"HISPANIC\": 333, \"MALES\": 6379, \"FEMALES\": 6476, \"AGE_UNDER5\": 1150, \"AGE_5_17\": 2641, \"AGE_18_21\": 427, \"AGE_22_29\": 1139, \"AGE_30_39\": 2268, \"AGE_40_49\": 2344, \"AGE_50_64\": 2166, \"AGE_65_UP\": 720, \"MED_AGE\": 34.900000, \"MED_AGE_M\": 34.700000, \"MED_AGE_F\": 35.100000, \"HOUSEHOLDS\": 4752, \"AVE_HH_SZ\": 2.700000, \"HSEHLD_1_M\": 388, \"HSEHLD_1_F\": 476, \"MARHH_CHD\": 1765, \"MARHH_NO_C\": 1508, \"MHH_CHILD\": 53, \"FHH_CHILD\": 175, \"FAMILIES\": 3631, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 4902, \"VACANT\": 150, \"OWNER_OCC\": 3619, \"RENTER_OCC\": 1133 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.780933, 41.607869999996467 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Coralville\", \"CLASS\": \"city\", \"ST\": \"IA\", \"STFIPS\": \"19\", \"PLACEFIP\": \"16230\", \"CAPITAL\": \"N\", \"AREALAND\": 10.190000, \"AREAWATER\": 0.040000, \"POP_CL\": 6, \"POP2000\": 15123, \"WHITE\": 13152, \"BLACK\": 640, \"AMERI_ES\": 51, \"ASIAN\": 786, \"HAWN_PI\": 9, \"OTHER\": 162, \"MULT_RACE\": 323, \"HISPANIC\": 459, \"MALES\": 7716, \"FEMALES\": 7407, \"AGE_UNDER5\": 1177, \"AGE_5_17\": 2138, \"AGE_18_21\": 887, \"AGE_22_29\": 3435, \"AGE_30_39\": 2966, \"AGE_40_49\": 2206, \"AGE_50_64\": 1478, \"AGE_65_UP\": 836, \"MED_AGE\": 29.800000, \"MED_AGE_M\": 29.800000, \"MED_AGE_F\": 29.800000, \"HOUSEHOLDS\": 6467, \"AVE_HH_SZ\": 2.210000, \"HSEHLD_1_M\": 1037, \"HSEHLD_1_F\": 1221, \"MARHH_CHD\": 1368, \"MARHH_NO_C\": 1238, \"MHH_CHILD\": 89, \"FHH_CHILD\": 357, \"FAMILIES\": 3319, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 6754, \"VACANT\": 287, \"OWNER_OCC\": 3174, \"RENTER_OCC\": 3293 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -91.586764, 41.688214999995843 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Council Bluffs\", \"CLASS\": \"city\", \"ST\": \"IA\", \"STFIPS\": \"19\", \"PLACEFIP\": \"16860\", \"CAPITAL\": \"N\", \"AREALAND\": 37.383000, \"AREAWATER\": 2.263000, \"POP_CL\": 7, \"POP2000\": 58268, \"WHITE\": 55213, \"BLACK\": 614, \"AMERI_ES\": 263, \"ASIAN\": 344, \"HAWN_PI\": 15, \"OTHER\": 1054, \"MULT_RACE\": 765, \"HISPANIC\": 2594, \"MALES\": 28194, \"FEMALES\": 30074, \"AGE_UNDER5\": 4174, \"AGE_5_17\": 10975, \"AGE_18_21\": 3602, \"AGE_22_29\": 6574, \"AGE_30_39\": 8709, \"AGE_40_49\": 8385, \"AGE_50_64\": 8137, \"AGE_65_UP\": 7712, \"MED_AGE\": 34.600000, \"MED_AGE_M\": 33.000000, \"MED_AGE_F\": 36.200000, \"HOUSEHOLDS\": 22889, \"AVE_HH_SZ\": 2.490000, \"HSEHLD_1_M\": 2592, \"HSEHLD_1_F\": 3791, \"MARHH_CHD\": 4541, \"MARHH_NO_C\": 6149, \"MHH_CHILD\": 651, \"FHH_CHILD\": 2044, \"FAMILIES\": 15089, \"AVE_FAM_SZ\": 3.030000, \"HSE_UNITS\": 24340, \"VACANT\": 1451, \"OWNER_OCC\": 14882, \"RENTER_OCC\": 8007 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.86238800000676, 41.253697999957033 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Davenport\", \"CLASS\": \"city\", \"ST\": \"IA\", \"STFIPS\": \"19\", \"PLACEFIP\": \"19000\", \"CAPITAL\": \"N\", \"AREALAND\": 62.790000, \"AREAWATER\": 2.150000, \"POP_CL\": 7, \"POP2000\": 98359, \"WHITE\": 82311, \"BLACK\": 9093, \"AMERI_ES\": 368, \"ASIAN\": 1967, \"HAWN_PI\": 24, \"OTHER\": 2279, \"MULT_RACE\": 2317, \"HISPANIC\": 5268, \"MALES\": 47832, \"FEMALES\": 50527, \"AGE_UNDER5\": 7268, \"AGE_5_17\": 18499, \"AGE_18_21\": 5707, \"AGE_22_29\": 12602, \"AGE_30_39\": 14315, \"AGE_40_49\": 14413, \"AGE_50_64\": 13613, \"AGE_65_UP\": 11942, \"MED_AGE\": 33.600000, \"MED_AGE_M\": 32.200000, \"MED_AGE_F\": 35.000000, \"HOUSEHOLDS\": 39124, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 5180, \"HSEHLD_1_F\": 6374, \"MARHH_CHD\": 7965, \"MARHH_NO_C\": 10037, \"MHH_CHILD\": 913, \"FHH_CHILD\": 3551, \"FAMILIES\": 24811, \"AVE_FAM_SZ\": 3.030000, \"HSE_UNITS\": 41350, \"VACANT\": 2226, \"OWNER_OCC\": 25498, \"RENTER_OCC\": 13626 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.59074499999781, 41.542981999982203 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Des Moines\", \"CLASS\": \"city\", \"ST\": \"IA\", \"STFIPS\": \"19\", \"PLACEFIP\": \"21000\", \"CAPITAL\": \"Y\", \"AREALAND\": 75.796000, \"AREAWATER\": 1.451000, \"POP_CL\": 8, \"POP2000\": 198682, \"WHITE\": 163494, \"BLACK\": 16025, \"AMERI_ES\": 705, \"ASIAN\": 6946, \"HAWN_PI\": 95, \"OTHER\": 6987, \"MULT_RACE\": 4430, \"HISPANIC\": 13138, \"MALES\": 96157, \"FEMALES\": 102525, \"AGE_UNDER5\": 14893, \"AGE_5_17\": 34435, \"AGE_18_21\": 12063, \"AGE_22_29\": 25383, \"AGE_30_39\": 31870, \"AGE_40_49\": 28366, \"AGE_50_64\": 27113, \"AGE_65_UP\": 24559, \"MED_AGE\": 33.800000, \"MED_AGE_M\": 32.600000, \"MED_AGE_F\": 35.100000, \"HOUSEHOLDS\": 80504, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 10831, \"HSEHLD_1_F\": 14886, \"MARHH_CHD\": 15547, \"MARHH_NO_C\": 19609, \"MHH_CHILD\": 1856, \"FHH_CHILD\": 6345, \"FAMILIES\": 48710, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 85067, \"VACANT\": 4563, \"OWNER_OCC\": 52119, \"RENTER_OCC\": 28385 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.620866, 41.590938999996489 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Dubuque\", \"CLASS\": \"city\", \"ST\": \"IA\", \"STFIPS\": \"19\", \"PLACEFIP\": \"22395\", \"CAPITAL\": \"N\", \"AREALAND\": 26.483000, \"AREAWATER\": 1.234000, \"POP_CL\": 7, \"POP2000\": 57686, \"WHITE\": 55466, \"BLACK\": 700, \"AMERI_ES\": 112, \"ASIAN\": 390, \"HAWN_PI\": 65, \"OTHER\": 400, \"MULT_RACE\": 553, \"HISPANIC\": 911, \"MALES\": 27325, \"FEMALES\": 30361, \"AGE_UNDER5\": 3578, \"AGE_5_17\": 10059, \"AGE_18_21\": 4474, \"AGE_22_29\": 5563, \"AGE_30_39\": 7683, \"AGE_40_49\": 8432, \"AGE_50_64\": 8350, \"AGE_65_UP\": 9547, \"MED_AGE\": 36.900000, \"MED_AGE_M\": 35.200000, \"MED_AGE_F\": 38.700000, \"HOUSEHOLDS\": 22560, \"AVE_HH_SZ\": 2.370000, \"HSEHLD_1_M\": 2900, \"HSEHLD_1_F\": 4104, \"MARHH_CHD\": 4951, \"MARHH_NO_C\": 6387, \"MHH_CHILD\": 369, \"FHH_CHILD\": 1441, \"FAMILIES\": 14313, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 23819, \"VACANT\": 1259, \"OWNER_OCC\": 15221, \"RENTER_OCC\": 7339 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.686864999998619, 42.504320999984131 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fort Dodge\", \"CLASS\": \"city\", \"ST\": \"IA\", \"STFIPS\": \"19\", \"PLACEFIP\": \"28515\", \"CAPITAL\": \"N\", \"AREALAND\": 14.562000, \"AREAWATER\": 0.277000, \"POP_CL\": 6, \"POP2000\": 25136, \"WHITE\": 23243, \"BLACK\": 952, \"AMERI_ES\": 52, \"ASIAN\": 214, \"HAWN_PI\": 6, \"OTHER\": 328, \"MULT_RACE\": 341, \"HISPANIC\": 739, \"MALES\": 11943, \"FEMALES\": 13193, \"AGE_UNDER5\": 1716, \"AGE_5_17\": 4396, \"AGE_18_21\": 1733, \"AGE_22_29\": 2372, \"AGE_30_39\": 3130, \"AGE_40_49\": 3527, \"AGE_50_64\": 3602, \"AGE_65_UP\": 4660, \"MED_AGE\": 38.000000, \"MED_AGE_M\": 35.300000, \"MED_AGE_F\": 40.100000, \"HOUSEHOLDS\": 10470, \"AVE_HH_SZ\": 2.290000, \"HSEHLD_1_M\": 1390, \"HSEHLD_1_F\": 2151, \"MARHH_CHD\": 2000, \"MARHH_NO_C\": 2808, \"MHH_CHILD\": 230, \"FHH_CHILD\": 803, \"FAMILIES\": 6376, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 11168, \"VACANT\": 698, \"OWNER_OCC\": 6951, \"RENTER_OCC\": 3519 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.180271, 42.506802999995699 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fort Madison\", \"CLASS\": \"city\", \"ST\": \"IA\", \"STFIPS\": \"19\", \"PLACEFIP\": \"28605\", \"CAPITAL\": \"N\", \"AREALAND\": 9.214000, \"AREAWATER\": 3.737000, \"POP_CL\": 6, \"POP2000\": 10715, \"WHITE\": 9926, \"BLACK\": 286, \"AMERI_ES\": 30, \"ASIAN\": 65, \"HAWN_PI\": 18, \"OTHER\": 253, \"MULT_RACE\": 137, \"HISPANIC\": 583, \"MALES\": 5089, \"FEMALES\": 5626, \"AGE_UNDER5\": 659, \"AGE_5_17\": 1873, \"AGE_18_21\": 499, \"AGE_22_29\": 987, \"AGE_30_39\": 1375, \"AGE_40_49\": 1629, \"AGE_50_64\": 1680, \"AGE_65_UP\": 2013, \"MED_AGE\": 39.800000, \"MED_AGE_M\": 38.100000, \"MED_AGE_F\": 41.400000, \"HOUSEHOLDS\": 4617, \"AVE_HH_SZ\": 2.270000, \"HSEHLD_1_M\": 593, \"HSEHLD_1_F\": 938, \"MARHH_CHD\": 825, \"MARHH_NO_C\": 1332, \"MHH_CHILD\": 108, \"FHH_CHILD\": 371, \"FAMILIES\": 2875, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 5106, \"VACANT\": 489, \"OWNER_OCC\": 3212, \"RENTER_OCC\": 1405 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -91.339004999999844, 40.62858799999556 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Indianola\", \"CLASS\": \"city\", \"ST\": \"IA\", \"STFIPS\": \"19\", \"PLACEFIP\": \"38280\", \"CAPITAL\": \"N\", \"AREALAND\": 9.187000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12998, \"WHITE\": 12728, \"BLACK\": 52, \"AMERI_ES\": 19, \"ASIAN\": 66, \"HAWN_PI\": 9, \"OTHER\": 23, \"MULT_RACE\": 101, \"HISPANIC\": 111, \"MALES\": 6126, \"FEMALES\": 6872, \"AGE_UNDER5\": 867, \"AGE_5_17\": 2223, \"AGE_18_21\": 1449, \"AGE_22_29\": 1389, \"AGE_30_39\": 1616, \"AGE_40_49\": 1742, \"AGE_50_64\": 1710, \"AGE_65_UP\": 2002, \"MED_AGE\": 33.700000, \"MED_AGE_M\": 31.600000, \"MED_AGE_F\": 35.600000, \"HOUSEHOLDS\": 4748, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 423, \"HSEHLD_1_F\": 835, \"MARHH_CHD\": 1181, \"MARHH_NO_C\": 1440, \"MHH_CHILD\": 90, \"FHH_CHILD\": 354, \"FAMILIES\": 3260, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 4981, \"VACANT\": 233, \"OWNER_OCC\": 3143, \"RENTER_OCC\": 1605 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.562987, 41.361755999996632 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Iowa City\", \"CLASS\": \"city\", \"ST\": \"IA\", \"STFIPS\": \"19\", \"PLACEFIP\": \"38595\", \"CAPITAL\": \"N\", \"AREALAND\": 24.163000, \"AREAWATER\": 0.276000, \"POP_CL\": 7, \"POP2000\": 62220, \"WHITE\": 54334, \"BLACK\": 2333, \"AMERI_ES\": 191, \"ASIAN\": 3509, \"HAWN_PI\": 27, \"OTHER\": 778, \"MULT_RACE\": 1048, \"HISPANIC\": 1833, \"MALES\": 30508, \"FEMALES\": 31712, \"AGE_UNDER5\": 2861, \"AGE_5_17\": 7192, \"AGE_18_21\": 13254, \"AGE_22_29\": 13189, \"AGE_30_39\": 7814, \"AGE_40_49\": 7322, \"AGE_50_64\": 6213, \"AGE_65_UP\": 4375, \"MED_AGE\": 25.400000, \"MED_AGE_M\": 25.400000, \"MED_AGE_F\": 25.400000, \"HOUSEHOLDS\": 25202, \"AVE_HH_SZ\": 2.230000, \"HSEHLD_1_M\": 3871, \"HSEHLD_1_F\": 4643, \"MARHH_CHD\": 4008, \"MARHH_NO_C\": 4860, \"MHH_CHILD\": 287, \"FHH_CHILD\": 1060, \"FAMILIES\": 11200, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 26083, \"VACANT\": 881, \"OWNER_OCC\": 11714, \"RENTER_OCC\": 13488 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -91.524991, 41.655815999995689 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Keokuk\", \"CLASS\": \"city\", \"ST\": \"IA\", \"STFIPS\": \"19\", \"PLACEFIP\": \"40845\", \"CAPITAL\": \"N\", \"AREALAND\": 9.160000, \"AREAWATER\": 1.419000, \"POP_CL\": 6, \"POP2000\": 11427, \"WHITE\": 10612, \"BLACK\": 446, \"AMERI_ES\": 31, \"ASIAN\": 59, \"HAWN_PI\": 1, \"OTHER\": 51, \"MULT_RACE\": 227, \"HISPANIC\": 125, \"MALES\": 5362, \"FEMALES\": 6065, \"AGE_UNDER5\": 782, \"AGE_5_17\": 2121, \"AGE_18_21\": 600, \"AGE_22_29\": 1031, \"AGE_30_39\": 1467, \"AGE_40_49\": 1588, \"AGE_50_64\": 1818, \"AGE_65_UP\": 2020, \"MED_AGE\": 38.100000, \"MED_AGE_M\": 36.000000, \"MED_AGE_F\": 40.400000, \"HOUSEHOLDS\": 4773, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 586, \"HSEHLD_1_F\": 961, \"MARHH_CHD\": 910, \"MARHH_NO_C\": 1322, \"MHH_CHILD\": 98, \"FHH_CHILD\": 418, \"FAMILIES\": 3020, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 5327, \"VACANT\": 554, \"OWNER_OCC\": 3309, \"RENTER_OCC\": 1464 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -91.394371999999876, 40.402524999995961 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Marion\", \"CLASS\": \"city\", \"ST\": \"IA\", \"STFIPS\": \"19\", \"PLACEFIP\": \"49485\", \"CAPITAL\": \"N\", \"AREALAND\": 11.995000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 26294, \"WHITE\": 25507, \"BLACK\": 157, \"AMERI_ES\": 49, \"ASIAN\": 247, \"HAWN_PI\": 9, \"OTHER\": 105, \"MULT_RACE\": 220, \"HISPANIC\": 289, \"MALES\": 12768, \"FEMALES\": 13526, \"AGE_UNDER5\": 1941, \"AGE_5_17\": 4990, \"AGE_18_21\": 1144, \"AGE_22_29\": 2991, \"AGE_30_39\": 4305, \"AGE_40_49\": 4010, \"AGE_50_64\": 3914, \"AGE_65_UP\": 2999, \"MED_AGE\": 35.100000, \"MED_AGE_M\": 34.000000, \"MED_AGE_F\": 36.100000, \"HOUSEHOLDS\": 10458, \"AVE_HH_SZ\": 2.470000, \"HSEHLD_1_M\": 1119, \"HSEHLD_1_F\": 1605, \"MARHH_CHD\": 2824, \"MARHH_NO_C\": 3152, \"MHH_CHILD\": 212, \"FHH_CHILD\": 576, \"FAMILIES\": 7175, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 10968, \"VACANT\": 510, \"OWNER_OCC\": 8191, \"RENTER_OCC\": 2267 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -91.592925, 42.037648999995639 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Marshalltown\", \"CLASS\": \"city\", \"ST\": \"IA\", \"STFIPS\": \"19\", \"PLACEFIP\": \"49755\", \"CAPITAL\": \"N\", \"AREALAND\": 18.028000, \"AREAWATER\": 0.018000, \"POP_CL\": 6, \"POP2000\": 26009, \"WHITE\": 22574, \"BLACK\": 348, \"AMERI_ES\": 96, \"ASIAN\": 271, \"HAWN_PI\": 17, \"OTHER\": 2228, \"MULT_RACE\": 475, \"HISPANIC\": 3265, \"MALES\": 12870, \"FEMALES\": 13139, \"AGE_UNDER5\": 1746, \"AGE_5_17\": 4633, \"AGE_18_21\": 1350, \"AGE_22_29\": 2564, \"AGE_30_39\": 3324, \"AGE_40_49\": 3713, \"AGE_50_64\": 4092, \"AGE_65_UP\": 4587, \"MED_AGE\": 38.400000, \"MED_AGE_M\": 36.600000, \"MED_AGE_F\": 39.900000, \"HOUSEHOLDS\": 10175, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 1166, \"HSEHLD_1_F\": 1857, \"MARHH_CHD\": 2085, \"MARHH_NO_C\": 3052, \"MHH_CHILD\": 225, \"FHH_CHILD\": 738, \"FAMILIES\": 6598, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 10857, \"VACANT\": 682, \"OWNER_OCC\": 7128, \"RENTER_OCC\": 3047 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -92.91458, 42.041741999996219 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mason City\", \"CLASS\": \"city\", \"ST\": \"IA\", \"STFIPS\": \"19\", \"PLACEFIP\": \"50160\", \"CAPITAL\": \"N\", \"AREALAND\": 25.786000, \"AREAWATER\": 0.377000, \"POP_CL\": 6, \"POP2000\": 29172, \"WHITE\": 27829, \"BLACK\": 342, \"AMERI_ES\": 52, \"ASIAN\": 226, \"HAWN_PI\": 3, \"OTHER\": 313, \"MULT_RACE\": 407, \"HISPANIC\": 1005, \"MALES\": 13817, \"FEMALES\": 15355, \"AGE_UNDER5\": 1815, \"AGE_5_17\": 5061, \"AGE_18_21\": 1950, \"AGE_22_29\": 2744, \"AGE_30_39\": 3824, \"AGE_40_49\": 4346, \"AGE_50_64\": 4221, \"AGE_65_UP\": 5211, \"MED_AGE\": 38.200000, \"MED_AGE_M\": 35.800000, \"MED_AGE_F\": 40.300000, \"HOUSEHOLDS\": 12368, \"AVE_HH_SZ\": 2.270000, \"HSEHLD_1_M\": 1557, \"HSEHLD_1_F\": 2582, \"MARHH_CHD\": 2426, \"MARHH_NO_C\": 3434, \"MHH_CHILD\": 245, \"FHH_CHILD\": 844, \"FAMILIES\": 7513, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 13029, \"VACANT\": 661, \"OWNER_OCC\": 8336, \"RENTER_OCC\": 4032 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.201916, 43.148746999995453 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Muscatine\", \"CLASS\": \"city\", \"ST\": \"IA\", \"STFIPS\": \"19\", \"PLACEFIP\": \"55110\", \"CAPITAL\": \"N\", \"AREALAND\": 16.836000, \"AREAWATER\": 1.046000, \"POP_CL\": 6, \"POP2000\": 22697, \"WHITE\": 20519, \"BLACK\": 245, \"AMERI_ES\": 83, \"ASIAN\": 148, \"HAWN_PI\": 6, \"OTHER\": 1370, \"MULT_RACE\": 326, \"HISPANIC\": 2791, \"MALES\": 11041, \"FEMALES\": 11656, \"AGE_UNDER5\": 1646, \"AGE_5_17\": 4335, \"AGE_18_21\": 1206, \"AGE_22_29\": 2428, \"AGE_30_39\": 3170, \"AGE_40_49\": 3422, \"AGE_50_64\": 3320, \"AGE_65_UP\": 3170, \"MED_AGE\": 35.800000, \"MED_AGE_M\": 34.100000, \"MED_AGE_F\": 37.500000, \"HOUSEHOLDS\": 8923, \"AVE_HH_SZ\": 2.490000, \"HSEHLD_1_M\": 955, \"HSEHLD_1_F\": 1488, \"MARHH_CHD\": 2086, \"MARHH_NO_C\": 2612, \"MHH_CHILD\": 231, \"FHH_CHILD\": 660, \"FAMILIES\": 6041, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 9375, \"VACANT\": 452, \"OWNER_OCC\": 6306, \"RENTER_OCC\": 2617 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -91.056092999999507, 41.42401799999265 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Newton\", \"CLASS\": \"city\", \"ST\": \"IA\", \"STFIPS\": \"19\", \"PLACEFIP\": \"56505\", \"CAPITAL\": \"N\", \"AREALAND\": 10.257000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 15579, \"WHITE\": 15197, \"BLACK\": 61, \"AMERI_ES\": 35, \"ASIAN\": 94, \"HAWN_PI\": 16, \"OTHER\": 52, \"MULT_RACE\": 124, \"HISPANIC\": 188, \"MALES\": 7415, \"FEMALES\": 8164, \"AGE_UNDER5\": 1019, \"AGE_5_17\": 2657, \"AGE_18_21\": 627, \"AGE_22_29\": 1538, \"AGE_30_39\": 2144, \"AGE_40_49\": 2217, \"AGE_50_64\": 2386, \"AGE_65_UP\": 2991, \"MED_AGE\": 39.100000, \"MED_AGE_M\": 37.400000, \"MED_AGE_F\": 41.000000, \"HOUSEHOLDS\": 6713, \"AVE_HH_SZ\": 2.250000, \"HSEHLD_1_M\": 836, \"HSEHLD_1_F\": 1309, \"MARHH_CHD\": 1394, \"MARHH_NO_C\": 2058, \"MHH_CHILD\": 118, \"FHH_CHILD\": 441, \"FAMILIES\": 4268, \"AVE_FAM_SZ\": 2.840000, \"HSE_UNITS\": 7162, \"VACANT\": 449, \"OWNER_OCC\": 4621, \"RENTER_OCC\": 2092 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.04686, 41.698590999996426 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Oskaloosa\", \"CLASS\": \"city\", \"ST\": \"IA\", \"STFIPS\": \"19\", \"PLACEFIP\": \"59925\", \"CAPITAL\": \"N\", \"AREALAND\": 6.863000, \"AREAWATER\": 0.015000, \"POP_CL\": 6, \"POP2000\": 10938, \"WHITE\": 10485, \"BLACK\": 127, \"AMERI_ES\": 27, \"ASIAN\": 144, \"HAWN_PI\": 4, \"OTHER\": 45, \"MULT_RACE\": 106, \"HISPANIC\": 138, \"MALES\": 5326, \"FEMALES\": 5612, \"AGE_UNDER5\": 739, \"AGE_5_17\": 1898, \"AGE_18_21\": 767, \"AGE_22_29\": 1191, \"AGE_30_39\": 1391, \"AGE_40_49\": 1484, \"AGE_50_64\": 1444, \"AGE_65_UP\": 2024, \"MED_AGE\": 36.400000, \"MED_AGE_M\": 33.500000, \"MED_AGE_F\": 39.200000, \"HOUSEHOLDS\": 4603, \"AVE_HH_SZ\": 2.280000, \"HSEHLD_1_M\": 605, \"HSEHLD_1_F\": 906, \"MARHH_CHD\": 929, \"MARHH_NO_C\": 1336, \"MHH_CHILD\": 91, \"FHH_CHILD\": 331, \"FAMILIES\": 2865, \"AVE_FAM_SZ\": 2.890000, \"HSE_UNITS\": 4945, \"VACANT\": 342, \"OWNER_OCC\": 2924, \"RENTER_OCC\": 1679 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -92.644546, 41.293855999996666 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ottumwa\", \"CLASS\": \"city\", \"ST\": \"IA\", \"STFIPS\": \"19\", \"PLACEFIP\": \"60465\", \"CAPITAL\": \"N\", \"AREALAND\": 15.799000, \"AREAWATER\": 0.674000, \"POP_CL\": 6, \"POP2000\": 24998, \"WHITE\": 23830, \"BLACK\": 318, \"AMERI_ES\": 82, \"ASIAN\": 196, \"HAWN_PI\": 5, \"OTHER\": 344, \"MULT_RACE\": 223, \"HISPANIC\": 691, \"MALES\": 12029, \"FEMALES\": 12969, \"AGE_UNDER5\": 1553, \"AGE_5_17\": 4171, \"AGE_18_21\": 1716, \"AGE_22_29\": 2532, \"AGE_30_39\": 3145, \"AGE_40_49\": 3549, \"AGE_50_64\": 3583, \"AGE_65_UP\": 4749, \"MED_AGE\": 38.200000, \"MED_AGE_M\": 35.500000, \"MED_AGE_F\": 40.700000, \"HOUSEHOLDS\": 10383, \"AVE_HH_SZ\": 2.310000, \"HSEHLD_1_M\": 1239, \"HSEHLD_1_F\": 1987, \"MARHH_CHD\": 1944, \"MARHH_NO_C\": 3019, \"MHH_CHILD\": 213, \"FHH_CHILD\": 759, \"FAMILIES\": 6531, \"AVE_FAM_SZ\": 2.880000, \"HSE_UNITS\": 11038, \"VACANT\": 655, \"OWNER_OCC\": 7423, \"RENTER_OCC\": 2960 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -92.414817, 41.012916999996818 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sioux City\", \"CLASS\": \"city\", \"ST\": \"IA\", \"STFIPS\": \"19\", \"PLACEFIP\": \"73335\", \"CAPITAL\": \"N\", \"AREALAND\": 54.801000, \"AREAWATER\": 1.147000, \"POP_CL\": 7, \"POP2000\": 85013, \"WHITE\": 72460, \"BLACK\": 2047, \"AMERI_ES\": 1661, \"ASIAN\": 2396, \"HAWN_PI\": 33, \"OTHER\": 4479, \"MULT_RACE\": 1937, \"HISPANIC\": 9257, \"MALES\": 41515, \"FEMALES\": 43498, \"AGE_UNDER5\": 6694, \"AGE_5_17\": 16326, \"AGE_18_21\": 5561, \"AGE_22_29\": 10010, \"AGE_30_39\": 11930, \"AGE_40_49\": 11968, \"AGE_50_64\": 11229, \"AGE_65_UP\": 11295, \"MED_AGE\": 33.400000, \"MED_AGE_M\": 31.900000, \"MED_AGE_F\": 34.900000, \"HOUSEHOLDS\": 32054, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 3617, \"HSEHLD_1_F\": 5262, \"MARHH_CHD\": 7286, \"MARHH_NO_C\": 8466, \"MHH_CHILD\": 836, \"FHH_CHILD\": 2586, \"FAMILIES\": 21101, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 33816, \"VACANT\": 1762, \"OWNER_OCC\": 21225, \"RENTER_OCC\": 10829 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.395705000012214, 42.497956999878433 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Spencer\", \"CLASS\": \"city\", \"ST\": \"IA\", \"STFIPS\": \"19\", \"PLACEFIP\": \"74280\", \"CAPITAL\": \"N\", \"AREALAND\": 10.121000, \"AREAWATER\": 0.046000, \"POP_CL\": 6, \"POP2000\": 11317, \"WHITE\": 11042, \"BLACK\": 16, \"AMERI_ES\": 15, \"ASIAN\": 126, \"HAWN_PI\": 5, \"OTHER\": 39, \"MULT_RACE\": 74, \"HISPANIC\": 162, \"MALES\": 5296, \"FEMALES\": 6021, \"AGE_UNDER5\": 711, \"AGE_5_17\": 1979, \"AGE_18_21\": 568, \"AGE_22_29\": 1090, \"AGE_30_39\": 1482, \"AGE_40_49\": 1724, \"AGE_50_64\": 1573, \"AGE_65_UP\": 2190, \"MED_AGE\": 39.200000, \"MED_AGE_M\": 37.100000, \"MED_AGE_F\": 40.600000, \"HOUSEHOLDS\": 4842, \"AVE_HH_SZ\": 2.280000, \"HSEHLD_1_M\": 542, \"HSEHLD_1_F\": 1055, \"MARHH_CHD\": 1046, \"MARHH_NO_C\": 1445, \"MHH_CHILD\": 97, \"FHH_CHILD\": 275, \"FAMILIES\": 3012, \"AVE_FAM_SZ\": 2.890000, \"HSE_UNITS\": 5151, \"VACANT\": 309, \"OWNER_OCC\": 3144, \"RENTER_OCC\": 1698 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.147209000000686, 43.145317999987697 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Storm Lake\", \"CLASS\": \"city\", \"ST\": \"IA\", \"STFIPS\": \"19\", \"PLACEFIP\": \"75630\", \"CAPITAL\": \"N\", \"AREALAND\": 3.997000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10076, \"WHITE\": 8029, \"BLACK\": 53, \"AMERI_ES\": 17, \"ASIAN\": 788, \"HAWN_PI\": 2, \"OTHER\": 962, \"MULT_RACE\": 225, \"HISPANIC\": 2121, \"MALES\": 5002, \"FEMALES\": 5074, \"AGE_UNDER5\": 638, \"AGE_5_17\": 1790, \"AGE_18_21\": 1295, \"AGE_22_29\": 1083, \"AGE_30_39\": 1321, \"AGE_40_49\": 1240, \"AGE_50_64\": 1102, \"AGE_65_UP\": 1607, \"MED_AGE\": 31.700000, \"MED_AGE_M\": 29.900000, \"MED_AGE_F\": 34.100000, \"HOUSEHOLDS\": 3466, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 378, \"HSEHLD_1_F\": 660, \"MARHH_CHD\": 837, \"MARHH_NO_C\": 950, \"MHH_CHILD\": 75, \"FHH_CHILD\": 199, \"FAMILIES\": 2209, \"AVE_FAM_SZ\": 3.200000, \"HSE_UNITS\": 3706, \"VACANT\": 240, \"OWNER_OCC\": 2215, \"RENTER_OCC\": 1251 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.201968000000917, 42.643492999986996 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Urbandale\", \"CLASS\": \"city\", \"ST\": \"IA\", \"STFIPS\": \"19\", \"PLACEFIP\": \"79950\", \"CAPITAL\": \"N\", \"AREALAND\": 20.694000, \"AREAWATER\": 0.024000, \"POP_CL\": 6, \"POP2000\": 29072, \"WHITE\": 27670, \"BLACK\": 445, \"AMERI_ES\": 26, \"ASIAN\": 503, \"HAWN_PI\": 29, \"OTHER\": 148, \"MULT_RACE\": 251, \"HISPANIC\": 465, \"MALES\": 14039, \"FEMALES\": 15033, \"AGE_UNDER5\": 1943, \"AGE_5_17\": 5708, \"AGE_18_21\": 1121, \"AGE_22_29\": 2775, \"AGE_30_39\": 4547, \"AGE_40_49\": 5153, \"AGE_50_64\": 4699, \"AGE_65_UP\": 3126, \"MED_AGE\": 37.000000, \"MED_AGE_M\": 35.700000, \"MED_AGE_F\": 38.200000, \"HOUSEHOLDS\": 11484, \"AVE_HH_SZ\": 2.510000, \"HSEHLD_1_M\": 1015, \"HSEHLD_1_F\": 1766, \"MARHH_CHD\": 3370, \"MARHH_NO_C\": 3605, \"MHH_CHILD\": 147, \"FHH_CHILD\": 497, \"FAMILIES\": 8043, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 11869, \"VACANT\": 385, \"OWNER_OCC\": 8909, \"RENTER_OCC\": 2575 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.736121, 41.63642099999646 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Waterloo\", \"CLASS\": \"city\", \"ST\": \"IA\", \"STFIPS\": \"19\", \"PLACEFIP\": \"82425\", \"CAPITAL\": \"N\", \"AREALAND\": 60.735000, \"AREAWATER\": 1.281000, \"POP_CL\": 7, \"POP2000\": 68747, \"WHITE\": 56103, \"BLACK\": 9529, \"AMERI_ES\": 150, \"ASIAN\": 587, \"HAWN_PI\": 34, \"OTHER\": 989, \"MULT_RACE\": 1355, \"HISPANIC\": 1806, \"MALES\": 32985, \"FEMALES\": 35762, \"AGE_UNDER5\": 4841, \"AGE_5_17\": 12123, \"AGE_18_21\": 4053, \"AGE_22_29\": 8058, \"AGE_30_39\": 9117, \"AGE_40_49\": 9957, \"AGE_50_64\": 10054, \"AGE_65_UP\": 10544, \"MED_AGE\": 35.900000, \"MED_AGE_M\": 33.900000, \"MED_AGE_F\": 37.700000, \"HOUSEHOLDS\": 28169, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 3354, \"HSEHLD_1_F\": 5110, \"MARHH_CHD\": 5169, \"MARHH_NO_C\": 7802, \"MHH_CHILD\": 543, \"FHH_CHILD\": 2458, \"FAMILIES\": 17744, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 29499, \"VACANT\": 1330, \"OWNER_OCC\": 18897, \"RENTER_OCC\": 9272 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -92.346161, 42.492435999995905 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"West Des Moines\", \"CLASS\": \"city\", \"ST\": \"IA\", \"STFIPS\": \"19\", \"PLACEFIP\": \"83910\", \"CAPITAL\": \"N\", \"AREALAND\": 26.784000, \"AREAWATER\": 0.790000, \"POP_CL\": 6, \"POP2000\": 46403, \"WHITE\": 42995, \"BLACK\": 868, \"AMERI_ES\": 61, \"ASIAN\": 1280, \"HAWN_PI\": 16, \"OTHER\": 585, \"MULT_RACE\": 598, \"HISPANIC\": 1404, \"MALES\": 22239, \"FEMALES\": 24164, \"AGE_UNDER5\": 3585, \"AGE_5_17\": 7863, \"AGE_18_21\": 1857, \"AGE_22_29\": 7346, \"AGE_30_39\": 8179, \"AGE_40_49\": 6811, \"AGE_50_64\": 6212, \"AGE_65_UP\": 4550, \"MED_AGE\": 33.000000, \"MED_AGE_M\": 32.000000, \"MED_AGE_F\": 33.900000, \"HOUSEHOLDS\": 19826, \"AVE_HH_SZ\": 2.330000, \"HSEHLD_1_M\": 2354, \"HSEHLD_1_F\": 3692, \"MARHH_CHD\": 4749, \"MARHH_NO_C\": 5158, \"MHH_CHILD\": 248, \"FHH_CHILD\": 1019, \"FAMILIES\": 11920, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 20815, \"VACANT\": 989, \"OWNER_OCC\": 12306, \"RENTER_OCC\": 7520 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.750359, 41.573738999996486 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Blackfoot\", \"CLASS\": \"city\", \"ST\": \"ID\", \"STFIPS\": \"16\", \"PLACEFIP\": \"07840\", \"CAPITAL\": \"N\", \"AREALAND\": 5.409000, \"AREAWATER\": 0.255000, \"POP_CL\": 6, \"POP2000\": 10419, \"WHITE\": 9040, \"BLACK\": 22, \"AMERI_ES\": 261, \"ASIAN\": 114, \"HAWN_PI\": 3, \"OTHER\": 660, \"MULT_RACE\": 319, \"HISPANIC\": 1372, \"MALES\": 5116, \"FEMALES\": 5303, \"AGE_UNDER5\": 981, \"AGE_5_17\": 2274, \"AGE_18_21\": 657, \"AGE_22_29\": 1179, \"AGE_30_39\": 1291, \"AGE_40_49\": 1302, \"AGE_50_64\": 1336, \"AGE_65_UP\": 1399, \"MED_AGE\": 30.900000, \"MED_AGE_M\": 29.300000, \"MED_AGE_F\": 32.700000, \"HOUSEHOLDS\": 3685, \"AVE_HH_SZ\": 2.750000, \"HSEHLD_1_M\": 341, \"HSEHLD_1_F\": 531, \"MARHH_CHD\": 1033, \"MARHH_NO_C\": 1062, \"MHH_CHILD\": 98, \"FHH_CHILD\": 298, \"FAMILIES\": 2683, \"AVE_FAM_SZ\": 3.270000, \"HSE_UNITS\": 3929, \"VACANT\": 244, \"OWNER_OCC\": 2590, \"RENTER_OCC\": 1095 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -112.345876050659697, 43.190076823029138 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Boise City\", \"CLASS\": \"city\", \"ST\": \"ID\", \"STFIPS\": \"16\", \"PLACEFIP\": \"08830\", \"CAPITAL\": \"Y\", \"AREALAND\": 63.776000, \"AREAWATER\": 0.206000, \"POP_CL\": 8, \"POP2000\": 185787, \"WHITE\": 171204, \"BLACK\": 1437, \"AMERI_ES\": 1300, \"ASIAN\": 3870, \"HAWN_PI\": 302, \"OTHER\": 3241, \"MULT_RACE\": 4433, \"HISPANIC\": 8410, \"MALES\": 92014, \"FEMALES\": 93773, \"AGE_UNDER5\": 13116, \"AGE_5_17\": 33950, \"AGE_18_21\": 12077, \"AGE_22_29\": 25329, \"AGE_30_39\": 29358, \"AGE_40_49\": 28924, \"AGE_50_64\": 24421, \"AGE_65_UP\": 18612, \"MED_AGE\": 32.800000, \"MED_AGE_M\": 31.700000, \"MED_AGE_F\": 34.000000, \"HOUSEHOLDS\": 74438, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 9176, \"HSEHLD_1_F\": 11653, \"MARHH_CHD\": 17536, \"MARHH_NO_C\": 18735, \"MHH_CHILD\": 1695, \"FHH_CHILD\": 4934, \"FAMILIES\": 46493, \"AVE_FAM_SZ\": 3.030000, \"HSE_UNITS\": 77850, \"VACANT\": 3412, \"OWNER_OCC\": 47638, \"RENTER_OCC\": 26800 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -116.236671664450995, 43.613817635014108 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Caldwell\", \"CLASS\": \"city\", \"ST\": \"ID\", \"STFIPS\": \"16\", \"PLACEFIP\": \"12250\", \"CAPITAL\": \"N\", \"AREALAND\": 11.343000, \"AREAWATER\": 0.013000, \"POP_CL\": 6, \"POP2000\": 25967, \"WHITE\": 19493, \"BLACK\": 121, \"AMERI_ES\": 245, \"ASIAN\": 216, \"HAWN_PI\": 26, \"OTHER\": 5110, \"MULT_RACE\": 756, \"HISPANIC\": 7307, \"MALES\": 12693, \"FEMALES\": 13274, \"AGE_UNDER5\": 2498, \"AGE_5_17\": 5538, \"AGE_18_21\": 2051, \"AGE_22_29\": 3397, \"AGE_30_39\": 3480, \"AGE_40_49\": 3050, \"AGE_50_64\": 3097, \"AGE_65_UP\": 2856, \"MED_AGE\": 28.800000, \"MED_AGE_M\": 27.700000, \"MED_AGE_F\": 29.900000, \"HOUSEHOLDS\": 8963, \"AVE_HH_SZ\": 2.790000, \"HSEHLD_1_M\": 766, \"HSEHLD_1_F\": 1318, \"MARHH_CHD\": 2415, \"MARHH_NO_C\": 2220, \"MHH_CHILD\": 282, \"FHH_CHILD\": 844, \"FAMILIES\": 6355, \"AVE_FAM_SZ\": 3.300000, \"HSE_UNITS\": 9603, \"VACANT\": 640, \"OWNER_OCC\": 5852, \"RENTER_OCC\": 3111 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -116.679207551121593, 43.658336710966402 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Coeur d'Alene\", \"CLASS\": \"city\", \"ST\": \"ID\", \"STFIPS\": \"16\", \"PLACEFIP\": \"16750\", \"CAPITAL\": \"N\", \"AREALAND\": 13.129000, \"AREAWATER\": 0.467000, \"POP_CL\": 6, \"POP2000\": 34514, \"WHITE\": 33064, \"BLACK\": 77, \"AMERI_ES\": 267, \"ASIAN\": 209, \"HAWN_PI\": 31, \"OTHER\": 216, \"MULT_RACE\": 650, \"HISPANIC\": 932, \"MALES\": 16693, \"FEMALES\": 17821, \"AGE_UNDER5\": 2372, \"AGE_5_17\": 6238, \"AGE_18_21\": 2449, \"AGE_22_29\": 3995, \"AGE_30_39\": 4794, \"AGE_40_49\": 4925, \"AGE_50_64\": 4650, \"AGE_65_UP\": 5091, \"MED_AGE\": 34.800000, \"MED_AGE_M\": 32.400000, \"MED_AGE_F\": 36.900000, \"HOUSEHOLDS\": 13985, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 1505, \"HSEHLD_1_F\": 2436, \"MARHH_CHD\": 2946, \"MARHH_NO_C\": 3725, \"MHH_CHILD\": 379, \"FHH_CHILD\": 1112, \"FAMILIES\": 8856, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 14929, \"VACANT\": 944, \"OWNER_OCC\": 8642, \"RENTER_OCC\": 5343 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -116.77841499175868, 47.692953074546722 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Eagle\", \"CLASS\": \"city\", \"ST\": \"ID\", \"STFIPS\": \"16\", \"PLACEFIP\": \"23410\", \"CAPITAL\": \"N\", \"AREALAND\": 9.189000, \"AREAWATER\": 0.087000, \"POP_CL\": 6, \"POP2000\": 11085, \"WHITE\": 10631, \"BLACK\": 41, \"AMERI_ES\": 52, \"ASIAN\": 82, \"HAWN_PI\": 14, \"OTHER\": 65, \"MULT_RACE\": 200, \"HISPANIC\": 291, \"MALES\": 5563, \"FEMALES\": 5522, \"AGE_UNDER5\": 925, \"AGE_5_17\": 2693, \"AGE_18_21\": 394, \"AGE_22_29\": 747, \"AGE_30_39\": 1808, \"AGE_40_49\": 2040, \"AGE_50_64\": 1638, \"AGE_65_UP\": 840, \"MED_AGE\": 35.200000, \"MED_AGE_M\": 34.500000, \"MED_AGE_F\": 35.700000, \"HOUSEHOLDS\": 3864, \"AVE_HH_SZ\": 2.870000, \"HSEHLD_1_M\": 253, \"HSEHLD_1_F\": 369, \"MARHH_CHD\": 1486, \"MARHH_NO_C\": 1195, \"MHH_CHILD\": 84, \"FHH_CHILD\": 204, \"FAMILIES\": 3097, \"AVE_FAM_SZ\": 3.230000, \"HSE_UNITS\": 4048, \"VACANT\": 184, \"OWNER_OCC\": 3260, \"RENTER_OCC\": 604 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -116.345336356769408, 43.69317607278542 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Garden City\", \"CLASS\": \"city\", \"ST\": \"ID\", \"STFIPS\": \"16\", \"PLACEFIP\": \"29620\", \"CAPITAL\": \"N\", \"AREALAND\": 4.150000, \"AREAWATER\": 0.030000, \"POP_CL\": 6, \"POP2000\": 10624, \"WHITE\": 9491, \"BLACK\": 50, \"AMERI_ES\": 90, \"ASIAN\": 146, \"HAWN_PI\": 12, \"OTHER\": 525, \"MULT_RACE\": 310, \"HISPANIC\": 1018, \"MALES\": 5394, \"FEMALES\": 5230, \"AGE_UNDER5\": 795, \"AGE_5_17\": 1782, \"AGE_18_21\": 633, \"AGE_22_29\": 1271, \"AGE_30_39\": 1567, \"AGE_40_49\": 1638, \"AGE_50_64\": 1615, \"AGE_65_UP\": 1323, \"MED_AGE\": 35.400000, \"MED_AGE_M\": 33.800000, \"MED_AGE_F\": 37.100000, \"HOUSEHOLDS\": 4331, \"AVE_HH_SZ\": 2.430000, \"HSEHLD_1_M\": 542, \"HSEHLD_1_F\": 626, \"MARHH_CHD\": 848, \"MARHH_NO_C\": 1220, \"MHH_CHILD\": 137, \"FHH_CHILD\": 306, \"FAMILIES\": 2784, \"AVE_FAM_SZ\": 2.910000, \"HSE_UNITS\": 4590, \"VACANT\": 259, \"OWNER_OCC\": 2725, \"RENTER_OCC\": 1606 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -116.265139141152702, 43.645640790857897 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Idaho Falls\", \"CLASS\": \"city\", \"ST\": \"ID\", \"STFIPS\": \"16\", \"PLACEFIP\": \"39700\", \"CAPITAL\": \"N\", \"AREALAND\": 17.068000, \"AREAWATER\": 0.291000, \"POP_CL\": 7, \"POP2000\": 50730, \"WHITE\": 46717, \"BLACK\": 315, \"AMERI_ES\": 385, \"ASIAN\": 533, \"HAWN_PI\": 32, \"OTHER\": 1932, \"MULT_RACE\": 816, \"HISPANIC\": 3641, \"MALES\": 25095, \"FEMALES\": 25635, \"AGE_UNDER5\": 4164, \"AGE_5_17\": 11217, \"AGE_18_21\": 2937, \"AGE_22_29\": 5553, \"AGE_30_39\": 6834, \"AGE_40_49\": 7438, \"AGE_50_64\": 6944, \"AGE_65_UP\": 5643, \"MED_AGE\": 32.300000, \"MED_AGE_M\": 31.200000, \"MED_AGE_F\": 33.600000, \"HOUSEHOLDS\": 18793, \"AVE_HH_SZ\": 2.650000, \"HSEHLD_1_M\": 2144, \"HSEHLD_1_F\": 2615, \"MARHH_CHD\": 5316, \"MARHH_NO_C\": 5294, \"MHH_CHILD\": 418, \"FHH_CHILD\": 1316, \"FAMILIES\": 13173, \"AVE_FAM_SZ\": 3.210000, \"HSE_UNITS\": 19771, \"VACANT\": 978, \"OWNER_OCC\": 12830, \"RENTER_OCC\": 5963 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -112.032369166320052, 43.491782189735858 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lewiston\", \"CLASS\": \"city\", \"ST\": \"ID\", \"STFIPS\": \"16\", \"PLACEFIP\": \"46540\", \"CAPITAL\": \"N\", \"AREALAND\": 16.500000, \"AREAWATER\": 0.694000, \"POP_CL\": 6, \"POP2000\": 30904, \"WHITE\": 29403, \"BLACK\": 92, \"AMERI_ES\": 491, \"ASIAN\": 236, \"HAWN_PI\": 25, \"OTHER\": 159, \"MULT_RACE\": 498, \"HISPANIC\": 590, \"MALES\": 15083, \"FEMALES\": 15821, \"AGE_UNDER5\": 1825, \"AGE_5_17\": 5358, \"AGE_18_21\": 1980, \"AGE_22_29\": 3227, \"AGE_30_39\": 4014, \"AGE_40_49\": 4537, \"AGE_50_64\": 4698, \"AGE_65_UP\": 5265, \"MED_AGE\": 37.900000, \"MED_AGE_M\": 36.500000, \"MED_AGE_F\": 39.100000, \"HOUSEHOLDS\": 12795, \"AVE_HH_SZ\": 2.360000, \"HSEHLD_1_M\": 1498, \"HSEHLD_1_F\": 2076, \"MARHH_CHD\": 2583, \"MARHH_NO_C\": 3983, \"MHH_CHILD\": 324, \"FHH_CHILD\": 760, \"FAMILIES\": 8277, \"AVE_FAM_SZ\": 2.880000, \"HSE_UNITS\": 13394, \"VACANT\": 599, \"OWNER_OCC\": 8548, \"RENTER_OCC\": 4247 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -116.999485346609092, 46.400363513559405 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Meridian\", \"CLASS\": \"city\", \"ST\": \"ID\", \"STFIPS\": \"16\", \"PLACEFIP\": \"52120\", \"CAPITAL\": \"N\", \"AREALAND\": 11.789000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 34919, \"WHITE\": 32927, \"BLACK\": 164, \"AMERI_ES\": 166, \"ASIAN\": 440, \"HAWN_PI\": 42, \"OTHER\": 438, \"MULT_RACE\": 742, \"HISPANIC\": 1291, \"MALES\": 17138, \"FEMALES\": 17781, \"AGE_UNDER5\": 3973, \"AGE_5_17\": 7788, \"AGE_18_21\": 1340, \"AGE_22_29\": 4305, \"AGE_30_39\": 7076, \"AGE_40_49\": 4649, \"AGE_50_64\": 3537, \"AGE_65_UP\": 2251, \"MED_AGE\": 30.100000, \"MED_AGE_M\": 30.000000, \"MED_AGE_F\": 30.100000, \"HOUSEHOLDS\": 11829, \"AVE_HH_SZ\": 2.930000, \"HSEHLD_1_M\": 722, \"HSEHLD_1_F\": 995, \"MARHH_CHD\": 4750, \"MARHH_NO_C\": 3343, \"MHH_CHILD\": 278, \"FHH_CHILD\": 767, \"FAMILIES\": 9515, \"AVE_FAM_SZ\": 3.260000, \"HSE_UNITS\": 12293, \"VACANT\": 464, \"OWNER_OCC\": 9973, \"RENTER_OCC\": 1856 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -116.397914545965989, 43.614314136219413 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Moscow\", \"CLASS\": \"city\", \"ST\": \"ID\", \"STFIPS\": \"16\", \"PLACEFIP\": \"54550\", \"CAPITAL\": \"N\", \"AREALAND\": 6.152000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 21291, \"WHITE\": 19636, \"BLACK\": 194, \"AMERI_ES\": 170, \"ASIAN\": 667, \"HAWN_PI\": 30, \"OTHER\": 206, \"MULT_RACE\": 388, \"HISPANIC\": 525, \"MALES\": 11118, \"FEMALES\": 10173, \"AGE_UNDER5\": 1049, \"AGE_5_17\": 2381, \"AGE_18_21\": 4884, \"AGE_22_29\": 4906, \"AGE_30_39\": 2368, \"AGE_40_49\": 2153, \"AGE_50_64\": 1886, \"AGE_65_UP\": 1664, \"MED_AGE\": 24.400000, \"MED_AGE_M\": 24.100000, \"MED_AGE_F\": 24.900000, \"HOUSEHOLDS\": 7724, \"AVE_HH_SZ\": 2.250000, \"HSEHLD_1_M\": 1113, \"HSEHLD_1_F\": 1193, \"MARHH_CHD\": 1440, \"MARHH_NO_C\": 1727, \"MHH_CHILD\": 103, \"FHH_CHILD\": 330, \"FAMILIES\": 3868, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 8029, \"VACANT\": 305, \"OWNER_OCC\": 3381, \"RENTER_OCC\": 4343 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -116.995621994544706, 46.731863754762131 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mountain Home\", \"CLASS\": \"city\", \"ST\": \"ID\", \"STFIPS\": \"16\", \"PLACEFIP\": \"54730\", \"CAPITAL\": \"N\", \"AREALAND\": 5.181000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11143, \"WHITE\": 9794, \"BLACK\": 291, \"AMERI_ES\": 105, \"ASIAN\": 193, \"HAWN_PI\": 34, \"OTHER\": 380, \"MULT_RACE\": 346, \"HISPANIC\": 928, \"MALES\": 5598, \"FEMALES\": 5545, \"AGE_UNDER5\": 922, \"AGE_5_17\": 2376, \"AGE_18_21\": 564, \"AGE_22_29\": 1406, \"AGE_30_39\": 1902, \"AGE_40_49\": 1537, \"AGE_50_64\": 1354, \"AGE_65_UP\": 1082, \"MED_AGE\": 31.700000, \"MED_AGE_M\": 31.100000, \"MED_AGE_F\": 32.500000, \"HOUSEHOLDS\": 4337, \"AVE_HH_SZ\": 2.540000, \"HSEHLD_1_M\": 616, \"HSEHLD_1_F\": 537, \"MARHH_CHD\": 1194, \"MARHH_NO_C\": 1223, \"MHH_CHILD\": 109, \"FHH_CHILD\": 293, \"FAMILIES\": 2956, \"AVE_FAM_SZ\": 3.110000, \"HSE_UNITS\": 4738, \"VACANT\": 401, \"OWNER_OCC\": 2889, \"RENTER_OCC\": 1448 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -115.693717063335171, 43.136871414053971 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Nampa\", \"CLASS\": \"city\", \"ST\": \"ID\", \"STFIPS\": \"16\", \"PLACEFIP\": \"56260\", \"CAPITAL\": \"N\", \"AREALAND\": 19.855000, \"AREAWATER\": 0.018000, \"POP_CL\": 7, \"POP2000\": 51867, \"WHITE\": 43281, \"BLACK\": 206, \"AMERI_ES\": 490, \"ASIAN\": 484, \"HAWN_PI\": 92, \"OTHER\": 5833, \"MULT_RACE\": 1481, \"HISPANIC\": 9282, \"MALES\": 25404, \"FEMALES\": 26463, \"AGE_UNDER5\": 5465, \"AGE_5_17\": 10592, \"AGE_18_21\": 3628, \"AGE_22_29\": 7777, \"AGE_30_39\": 7857, \"AGE_40_49\": 5575, \"AGE_50_64\": 5180, \"AGE_65_UP\": 5793, \"MED_AGE\": 28.500000, \"MED_AGE_M\": 27.800000, \"MED_AGE_F\": 29.200000, \"HOUSEHOLDS\": 18090, \"AVE_HH_SZ\": 2.770000, \"HSEHLD_1_M\": 1595, \"HSEHLD_1_F\": 2489, \"MARHH_CHD\": 5380, \"MARHH_NO_C\": 4685, \"MHH_CHILD\": 559, \"FHH_CHILD\": 1410, \"FAMILIES\": 13016, \"AVE_FAM_SZ\": 3.250000, \"HSE_UNITS\": 19379, \"VACANT\": 1289, \"OWNER_OCC\": 12567, \"RENTER_OCC\": 5523 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -116.562437763584711, 43.574899201304852 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pocatello\", \"CLASS\": \"city\", \"ST\": \"ID\", \"STFIPS\": \"16\", \"PLACEFIP\": \"64090\", \"CAPITAL\": \"N\", \"AREALAND\": 28.239000, \"AREAWATER\": 0.000000, \"POP_CL\": 7, \"POP2000\": 51466, \"WHITE\": 47513, \"BLACK\": 369, \"AMERI_ES\": 693, \"ASIAN\": 590, \"HAWN_PI\": 103, \"OTHER\": 1120, \"MULT_RACE\": 1078, \"HISPANIC\": 2544, \"MALES\": 25331, \"FEMALES\": 26135, \"AGE_UNDER5\": 4254, \"AGE_5_17\": 9436, \"AGE_18_21\": 4824, \"AGE_22_29\": 8203, \"AGE_30_39\": 6248, \"AGE_40_49\": 6770, \"AGE_50_64\": 6373, \"AGE_65_UP\": 5358, \"MED_AGE\": 28.800000, \"MED_AGE_M\": 28.300000, \"MED_AGE_F\": 29.400000, \"HOUSEHOLDS\": 19334, \"AVE_HH_SZ\": 2.580000, \"HSEHLD_1_M\": 2262, \"HSEHLD_1_F\": 2580, \"MARHH_CHD\": 4916, \"MARHH_NO_C\": 5261, \"MHH_CHILD\": 425, \"FHH_CHILD\": 1323, \"FAMILIES\": 12966, \"AVE_FAM_SZ\": 3.100000, \"HSE_UNITS\": 20627, \"VACANT\": 1293, \"OWNER_OCC\": 12791, \"RENTER_OCC\": 6543 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -112.447100673537932, 42.875223386516296 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Post Falls\", \"CLASS\": \"city\", \"ST\": \"ID\", \"STFIPS\": \"16\", \"PLACEFIP\": \"64810\", \"CAPITAL\": \"N\", \"AREALAND\": 9.656000, \"AREAWATER\": 0.045000, \"POP_CL\": 6, \"POP2000\": 17247, \"WHITE\": 16579, \"BLACK\": 31, \"AMERI_ES\": 150, \"ASIAN\": 96, \"HAWN_PI\": 11, \"OTHER\": 103, \"MULT_RACE\": 277, \"HISPANIC\": 439, \"MALES\": 8437, \"FEMALES\": 8810, \"AGE_UNDER5\": 1561, \"AGE_5_17\": 3710, \"AGE_18_21\": 837, \"AGE_22_29\": 2122, \"AGE_30_39\": 2788, \"AGE_40_49\": 2343, \"AGE_50_64\": 2204, \"AGE_65_UP\": 1682, \"MED_AGE\": 31.300000, \"MED_AGE_M\": 30.800000, \"MED_AGE_F\": 31.900000, \"HOUSEHOLDS\": 6369, \"AVE_HH_SZ\": 2.710000, \"HSEHLD_1_M\": 535, \"HSEHLD_1_F\": 771, \"MARHH_CHD\": 1890, \"MARHH_NO_C\": 1851, \"MHH_CHILD\": 205, \"FHH_CHILD\": 467, \"FAMILIES\": 4670, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 6697, \"VACANT\": 328, \"OWNER_OCC\": 4611, \"RENTER_OCC\": 1758 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -116.936328491143627, 47.715668645258155 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Rexburg\", \"CLASS\": \"city\", \"ST\": \"ID\", \"STFIPS\": \"16\", \"PLACEFIP\": \"67420\", \"CAPITAL\": \"N\", \"AREALAND\": 4.883000, \"AREAWATER\": 0.082000, \"POP_CL\": 6, \"POP2000\": 17257, \"WHITE\": 16429, \"BLACK\": 51, \"AMERI_ES\": 53, \"ASIAN\": 114, \"HAWN_PI\": 48, \"OTHER\": 384, \"MULT_RACE\": 178, \"HISPANIC\": 697, \"MALES\": 7795, \"FEMALES\": 9462, \"AGE_UNDER5\": 1030, \"AGE_5_17\": 2135, \"AGE_18_21\": 7699, \"AGE_22_29\": 2873, \"AGE_30_39\": 901, \"AGE_40_49\": 907, \"AGE_50_64\": 861, \"AGE_65_UP\": 851, \"MED_AGE\": 20.300000, \"MED_AGE_M\": 21.900000, \"MED_AGE_F\": 19.800000, \"HOUSEHOLDS\": 4274, \"AVE_HH_SZ\": 3.710000, \"HSEHLD_1_M\": 184, \"HSEHLD_1_F\": 359, \"MARHH_CHD\": 1085, \"MARHH_NO_C\": 952, \"MHH_CHILD\": 46, \"FHH_CHILD\": 173, \"FAMILIES\": 2395, \"AVE_FAM_SZ\": 3.450000, \"HSE_UNITS\": 4533, \"VACANT\": 259, \"OWNER_OCC\": 1671, \"RENTER_OCC\": 2603 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.785195421175544, 43.823008087146412 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Twin Falls\", \"CLASS\": \"city\", \"ST\": \"ID\", \"STFIPS\": \"16\", \"PLACEFIP\": \"82810\", \"CAPITAL\": \"N\", \"AREALAND\": 12.010000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 34469, \"WHITE\": 31633, \"BLACK\": 76, \"AMERI_ES\": 255, \"ASIAN\": 377, \"HAWN_PI\": 39, \"OTHER\": 1280, \"MULT_RACE\": 809, \"HISPANIC\": 3066, \"MALES\": 16561, \"FEMALES\": 17908, \"AGE_UNDER5\": 2698, \"AGE_5_17\": 6426, \"AGE_18_21\": 2642, \"AGE_22_29\": 3872, \"AGE_30_39\": 4461, \"AGE_40_49\": 4428, \"AGE_50_64\": 4780, \"AGE_65_UP\": 5162, \"MED_AGE\": 33.800000, \"MED_AGE_M\": 32.100000, \"MED_AGE_F\": 35.400000, \"HOUSEHOLDS\": 13274, \"AVE_HH_SZ\": 2.510000, \"HSEHLD_1_M\": 1434, \"HSEHLD_1_F\": 2126, \"MARHH_CHD\": 3060, \"MARHH_NO_C\": 3806, \"MHH_CHILD\": 346, \"FHH_CHILD\": 962, \"FAMILIES\": 8864, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 14162, \"VACANT\": 888, \"OWNER_OCC\": 8296, \"RENTER_OCC\": 4978 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -114.463289706173271, 42.561450756529432 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Addison\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"00243\", \"CAPITAL\": \"N\", \"AREALAND\": 9.432000, \"AREAWATER\": 0.054000, \"POP_CL\": 6, \"POP2000\": 35914, \"WHITE\": 27076, \"BLACK\": 902, \"AMERI_ES\": 127, \"ASIAN\": 2850, \"HAWN_PI\": 5, \"OTHER\": 4091, \"MULT_RACE\": 863, \"HISPANIC\": 10198, \"MALES\": 18236, \"FEMALES\": 17678, \"AGE_UNDER5\": 2731, \"AGE_5_17\": 6688, \"AGE_18_21\": 2213, \"AGE_22_29\": 5053, \"AGE_30_39\": 5552, \"AGE_40_49\": 5103, \"AGE_50_64\": 5542, \"AGE_65_UP\": 3032, \"MED_AGE\": 32.200000, \"MED_AGE_M\": 31.300000, \"MED_AGE_F\": 33.300000, \"HOUSEHOLDS\": 11649, \"AVE_HH_SZ\": 3.070000, \"HSEHLD_1_M\": 908, \"HSEHLD_1_F\": 1063, \"MARHH_CHD\": 3594, \"MARHH_NO_C\": 3709, \"MHH_CHILD\": 225, \"FHH_CHILD\": 645, \"FAMILIES\": 9095, \"AVE_FAM_SZ\": 3.460000, \"HSE_UNITS\": 11805, \"VACANT\": 156, \"OWNER_OCC\": 7967, \"RENTER_OCC\": 3682 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.002221000116947, 41.931572998844729 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Algonquin\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"00685\", \"CAPITAL\": \"N\", \"AREALAND\": 9.832000, \"AREAWATER\": 0.164000, \"POP_CL\": 6, \"POP2000\": 23276, \"WHITE\": 21939, \"BLACK\": 214, \"AMERI_ES\": 24, \"ASIAN\": 546, \"HAWN_PI\": 3, \"OTHER\": 280, \"MULT_RACE\": 270, \"HISPANIC\": 948, \"MALES\": 11576, \"FEMALES\": 11700, \"AGE_UNDER5\": 2364, \"AGE_5_17\": 5265, \"AGE_18_21\": 773, \"AGE_22_29\": 1659, \"AGE_30_39\": 4917, \"AGE_40_49\": 4274, \"AGE_50_64\": 2794, \"AGE_65_UP\": 1230, \"MED_AGE\": 33.600000, \"MED_AGE_M\": 33.600000, \"MED_AGE_F\": 33.700000, \"HOUSEHOLDS\": 7706, \"AVE_HH_SZ\": 3.020000, \"HSEHLD_1_M\": 555, \"HSEHLD_1_F\": 564, \"MARHH_CHD\": 3470, \"MARHH_NO_C\": 2285, \"MHH_CHILD\": 77, \"FHH_CHILD\": 253, \"FAMILIES\": 6332, \"AVE_FAM_SZ\": 3.380000, \"HSE_UNITS\": 7952, \"VACANT\": 246, \"OWNER_OCC\": 7217, \"RENTER_OCC\": 489 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.302571000038981, 42.162740999191151 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Alsip\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"01010\", \"CAPITAL\": \"N\", \"AREALAND\": 6.366000, \"AREAWATER\": 0.159000, \"POP_CL\": 6, \"POP2000\": 19725, \"WHITE\": 16104, \"BLACK\": 1991, \"AMERI_ES\": 29, \"ASIAN\": 415, \"HAWN_PI\": 6, \"OTHER\": 635, \"MULT_RACE\": 545, \"HISPANIC\": 1727, \"MALES\": 9524, \"FEMALES\": 10201, \"AGE_UNDER5\": 1403, \"AGE_5_17\": 3812, \"AGE_18_21\": 987, \"AGE_22_29\": 2334, \"AGE_30_39\": 3320, \"AGE_40_49\": 2899, \"AGE_50_64\": 2774, \"AGE_65_UP\": 2196, \"MED_AGE\": 34.200000, \"MED_AGE_M\": 32.700000, \"MED_AGE_F\": 35.600000, \"HOUSEHOLDS\": 7536, \"AVE_HH_SZ\": 2.610000, \"HSEHLD_1_M\": 867, \"HSEHLD_1_F\": 1287, \"MARHH_CHD\": 1891, \"MARHH_NO_C\": 1803, \"MHH_CHILD\": 144, \"FHH_CHILD\": 547, \"FAMILIES\": 5008, \"AVE_FAM_SZ\": 3.260000, \"HSE_UNITS\": 7756, \"VACANT\": 220, \"OWNER_OCC\": 4871, \"RENTER_OCC\": 2665 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.732199000240655, 41.670432998442159 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Alton\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"01114\", \"CAPITAL\": \"N\", \"AREALAND\": 15.645000, \"AREAWATER\": 0.961000, \"POP_CL\": 6, \"POP2000\": 30496, \"WHITE\": 22056, \"BLACK\": 7538, \"AMERI_ES\": 55, \"ASIAN\": 115, \"HAWN_PI\": 3, \"OTHER\": 207, \"MULT_RACE\": 522, \"HISPANIC\": 454, \"MALES\": 14309, \"FEMALES\": 16187, \"AGE_UNDER5\": 2197, \"AGE_5_17\": 5656, \"AGE_18_21\": 1503, \"AGE_22_29\": 3688, \"AGE_30_39\": 4257, \"AGE_40_49\": 4185, \"AGE_50_64\": 4123, \"AGE_65_UP\": 4887, \"MED_AGE\": 35.400000, \"MED_AGE_M\": 33.000000, \"MED_AGE_F\": 37.400000, \"HOUSEHOLDS\": 12518, \"AVE_HH_SZ\": 2.360000, \"HSEHLD_1_M\": 1721, \"HSEHLD_1_F\": 2445, \"MARHH_CHD\": 1996, \"MARHH_NO_C\": 2928, \"MHH_CHILD\": 303, \"FHH_CHILD\": 1375, \"FAMILIES\": 7650, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 13894, \"VACANT\": 1376, \"OWNER_OCC\": 8184, \"RENTER_OCC\": 4334 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.159843999990827, 38.900437999964858 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Arlington Heights\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"02154\", \"CAPITAL\": \"N\", \"AREALAND\": 16.409000, \"AREAWATER\": 0.031000, \"POP_CL\": 7, \"POP2000\": 76031, \"WHITE\": 68854, \"BLACK\": 728, \"AMERI_ES\": 58, \"ASIAN\": 4548, \"HAWN_PI\": 30, \"OTHER\": 907, \"MULT_RACE\": 906, \"HISPANIC\": 3393, \"MALES\": 36556, \"FEMALES\": 39475, \"AGE_UNDER5\": 4554, \"AGE_5_17\": 13001, \"AGE_18_21\": 2315, \"AGE_22_29\": 6900, \"AGE_30_39\": 11608, \"AGE_40_49\": 12247, \"AGE_50_64\": 13185, \"AGE_65_UP\": 12221, \"MED_AGE\": 39.700000, \"MED_AGE_M\": 38.000000, \"MED_AGE_F\": 41.400000, \"HOUSEHOLDS\": 30763, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 3280, \"HSEHLD_1_F\": 5628, \"MARHH_CHD\": 7912, \"MARHH_NO_C\": 10060, \"MHH_CHILD\": 213, \"FHH_CHILD\": 857, \"FAMILIES\": 20531, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 31725, \"VACANT\": 962, \"OWNER_OCC\": 23608, \"RENTER_OCC\": 7155 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.980873000139198, 42.094975998805509 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Aurora\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"03012\", \"CAPITAL\": \"N\", \"AREALAND\": 38.526000, \"AREAWATER\": 0.893000, \"POP_CL\": 8, \"POP2000\": 142990, \"WHITE\": 97340, \"BLACK\": 15817, \"AMERI_ES\": 511, \"ASIAN\": 4370, \"HAWN_PI\": 47, \"OTHER\": 20762, \"MULT_RACE\": 4143, \"HISPANIC\": 46557, \"MALES\": 72020, \"FEMALES\": 70970, \"AGE_UNDER5\": 15095, \"AGE_5_17\": 30270, \"AGE_18_21\": 7850, \"AGE_22_29\": 20482, \"AGE_30_39\": 26868, \"AGE_40_49\": 19005, \"AGE_50_64\": 14480, \"AGE_65_UP\": 8940, \"MED_AGE\": 29.300000, \"MED_AGE_M\": 28.700000, \"MED_AGE_F\": 29.800000, \"HOUSEHOLDS\": 46489, \"AVE_HH_SZ\": 3.040000, \"HSEHLD_1_M\": 4573, \"HSEHLD_1_F\": 5016, \"MARHH_CHD\": 15797, \"MARHH_NO_C\": 10482, \"MHH_CHILD\": 1169, \"FHH_CHILD\": 3560, \"FAMILIES\": 34227, \"AVE_FAM_SZ\": 3.550000, \"HSE_UNITS\": 48797, \"VACANT\": 2308, \"OWNER_OCC\": 32585, \"RENTER_OCC\": 13904 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.298482000020428, 41.75987899920316 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Barrington\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"03844\", \"CAPITAL\": \"N\", \"AREALAND\": 4.597000, \"AREAWATER\": 0.171000, \"POP_CL\": 6, \"POP2000\": 10168, \"WHITE\": 9778, \"BLACK\": 63, \"AMERI_ES\": 13, \"ASIAN\": 203, \"HAWN_PI\": 1, \"OTHER\": 32, \"MULT_RACE\": 78, \"HISPANIC\": 237, \"MALES\": 4829, \"FEMALES\": 5339, \"AGE_UNDER5\": 748, \"AGE_5_17\": 2288, \"AGE_18_21\": 271, \"AGE_22_29\": 546, \"AGE_30_39\": 1497, \"AGE_40_49\": 1871, \"AGE_50_64\": 1660, \"AGE_65_UP\": 1287, \"MED_AGE\": 38.600000, \"MED_AGE_M\": 37.800000, \"MED_AGE_F\": 39.400000, \"HOUSEHOLDS\": 3767, \"AVE_HH_SZ\": 2.700000, \"HSEHLD_1_M\": 276, \"HSEHLD_1_F\": 562, \"MARHH_CHD\": 1284, \"MARHH_NO_C\": 1128, \"MHH_CHILD\": 34, \"FHH_CHILD\": 172, \"FAMILIES\": 2797, \"AVE_FAM_SZ\": 3.200000, \"HSE_UNITS\": 3903, \"VACANT\": 136, \"OWNER_OCC\": 2952, \"RENTER_OCC\": 815 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.131943000084277, 42.153488999000793 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bartlett\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"04013\", \"CAPITAL\": \"N\", \"AREALAND\": 14.814000, \"AREAWATER\": 0.144000, \"POP_CL\": 6, \"POP2000\": 36706, \"WHITE\": 32020, \"BLACK\": 725, \"AMERI_ES\": 52, \"ASIAN\": 2871, \"HAWN_PI\": 8, \"OTHER\": 497, \"MULT_RACE\": 533, \"HISPANIC\": 2024, \"MALES\": 18118, \"FEMALES\": 18588, \"AGE_UNDER5\": 3922, \"AGE_5_17\": 7727, \"AGE_18_21\": 1123, \"AGE_22_29\": 2970, \"AGE_30_39\": 8285, \"AGE_40_49\": 6223, \"AGE_50_64\": 4399, \"AGE_65_UP\": 2057, \"MED_AGE\": 33.500000, \"MED_AGE_M\": 33.400000, \"MED_AGE_F\": 33.700000, \"HOUSEHOLDS\": 12179, \"AVE_HH_SZ\": 3.000000, \"HSEHLD_1_M\": 809, \"HSEHLD_1_F\": 919, \"MARHH_CHD\": 5278, \"MARHH_NO_C\": 3553, \"MHH_CHILD\": 144, \"FHH_CHILD\": 491, \"FAMILIES\": 9989, \"AVE_FAM_SZ\": 3.360000, \"HSE_UNITS\": 12356, \"VACANT\": 177, \"OWNER_OCC\": 11343, \"RENTER_OCC\": 836 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.196140000054726, 41.978724999084449 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Batavia\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"04078\", \"CAPITAL\": \"N\", \"AREALAND\": 9.046000, \"AREAWATER\": 0.140000, \"POP_CL\": 6, \"POP2000\": 23866, \"WHITE\": 22245, \"BLACK\": 577, \"AMERI_ES\": 26, \"ASIAN\": 321, \"HAWN_PI\": 1, \"OTHER\": 364, \"MULT_RACE\": 332, \"HISPANIC\": 1257, \"MALES\": 11617, \"FEMALES\": 12249, \"AGE_UNDER5\": 1835, \"AGE_5_17\": 5639, \"AGE_18_21\": 859, \"AGE_22_29\": 1648, \"AGE_30_39\": 3861, \"AGE_40_49\": 4458, \"AGE_50_64\": 3200, \"AGE_65_UP\": 2366, \"MED_AGE\": 35.900000, \"MED_AGE_M\": 34.600000, \"MED_AGE_F\": 36.900000, \"HOUSEHOLDS\": 8494, \"AVE_HH_SZ\": 2.750000, \"HSEHLD_1_M\": 691, \"HSEHLD_1_F\": 1224, \"MARHH_CHD\": 2986, \"MARHH_NO_C\": 2367, \"MHH_CHILD\": 138, \"FHH_CHILD\": 422, \"FAMILIES\": 6266, \"AVE_FAM_SZ\": 3.270000, \"HSE_UNITS\": 8806, \"VACANT\": 312, \"OWNER_OCC\": 6605, \"RENTER_OCC\": 1889 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.308441000022725, 41.846561999209655 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Beach Park\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"04303\", \"CAPITAL\": \"N\", \"AREALAND\": 6.419000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10072, \"WHITE\": 8592, \"BLACK\": 457, \"AMERI_ES\": 28, \"ASIAN\": 150, \"HAWN_PI\": 3, \"OTHER\": 616, \"MULT_RACE\": 226, \"HISPANIC\": 1368, \"MALES\": 5005, \"FEMALES\": 5067, \"AGE_UNDER5\": 671, \"AGE_5_17\": 2052, \"AGE_18_21\": 477, \"AGE_22_29\": 811, \"AGE_30_39\": 1517, \"AGE_40_49\": 1862, \"AGE_50_64\": 1655, \"AGE_65_UP\": 1027, \"MED_AGE\": 37.100000, \"MED_AGE_M\": 36.200000, \"MED_AGE_F\": 38.000000, \"HOUSEHOLDS\": 3636, \"AVE_HH_SZ\": 2.770000, \"HSEHLD_1_M\": 370, \"HSEHLD_1_F\": 376, \"MARHH_CHD\": 1035, \"MARHH_NO_C\": 1171, \"MHH_CHILD\": 62, \"FHH_CHILD\": 223, \"FAMILIES\": 2728, \"AVE_FAM_SZ\": 3.210000, \"HSE_UNITS\": 3743, \"VACANT\": 107, \"OWNER_OCC\": 3193, \"RENTER_OCC\": 443 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.847753000242761, 42.423762998582454 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Belleville\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"04845\", \"CAPITAL\": \"N\", \"AREALAND\": 18.854000, \"AREAWATER\": 0.128000, \"POP_CL\": 6, \"POP2000\": 41410, \"WHITE\": 33754, \"BLACK\": 6421, \"AMERI_ES\": 108, \"ASIAN\": 336, \"HAWN_PI\": 28, \"OTHER\": 171, \"MULT_RACE\": 592, \"HISPANIC\": 677, \"MALES\": 19486, \"FEMALES\": 21924, \"AGE_UNDER5\": 2556, \"AGE_5_17\": 7153, \"AGE_18_21\": 2059, \"AGE_22_29\": 4657, \"AGE_30_39\": 6212, \"AGE_40_49\": 6223, \"AGE_50_64\": 5444, \"AGE_65_UP\": 7106, \"MED_AGE\": 37.200000, \"MED_AGE_M\": 35.200000, \"MED_AGE_F\": 39.100000, \"HOUSEHOLDS\": 17603, \"AVE_HH_SZ\": 2.270000, \"HSEHLD_1_M\": 2497, \"HSEHLD_1_F\": 3690, \"MARHH_CHD\": 3187, \"MARHH_NO_C\": 4203, \"MHH_CHILD\": 347, \"FHH_CHILD\": 1458, \"FAMILIES\": 10415, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 19142, \"VACANT\": 1539, \"OWNER_OCC\": 10600, \"RENTER_OCC\": 7003 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.995207999986363, 38.521566999952917 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bellwood\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"04975\", \"CAPITAL\": \"N\", \"AREALAND\": 2.386000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 20535, \"WHITE\": 2412, \"BLACK\": 16783, \"AMERI_ES\": 49, \"ASIAN\": 197, \"HAWN_PI\": 4, \"OTHER\": 779, \"MULT_RACE\": 311, \"HISPANIC\": 1631, \"MALES\": 9612, \"FEMALES\": 10923, \"AGE_UNDER5\": 1557, \"AGE_5_17\": 4704, \"AGE_18_21\": 1167, \"AGE_22_29\": 2211, \"AGE_30_39\": 2820, \"AGE_40_49\": 3334, \"AGE_50_64\": 3124, \"AGE_65_UP\": 1618, \"MED_AGE\": 32.300000, \"MED_AGE_M\": 30.200000, \"MED_AGE_F\": 33.900000, \"HOUSEHOLDS\": 6440, \"AVE_HH_SZ\": 3.180000, \"HSEHLD_1_M\": 463, \"HSEHLD_1_F\": 665, \"MARHH_CHD\": 1469, \"MARHH_NO_C\": 1559, \"MHH_CHILD\": 191, \"FHH_CHILD\": 866, \"FAMILIES\": 5100, \"AVE_FAM_SZ\": 3.570000, \"HSE_UNITS\": 6683, \"VACANT\": 243, \"OWNER_OCC\": 4914, \"RENTER_OCC\": 1526 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.876428000173178, 41.882923998664367 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Belvidere\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"05092\", \"CAPITAL\": \"N\", \"AREALAND\": 9.071000, \"AREAWATER\": 0.053000, \"POP_CL\": 6, \"POP2000\": 20820, \"WHITE\": 17600, \"BLACK\": 239, \"AMERI_ES\": 76, \"ASIAN\": 94, \"HAWN_PI\": 4, \"OTHER\": 2408, \"MULT_RACE\": 399, \"HISPANIC\": 4179, \"MALES\": 10263, \"FEMALES\": 10557, \"AGE_UNDER5\": 1703, \"AGE_5_17\": 4484, \"AGE_18_21\": 1092, \"AGE_22_29\": 2277, \"AGE_30_39\": 3495, \"AGE_40_49\": 2624, \"AGE_50_64\": 2599, \"AGE_65_UP\": 2546, \"MED_AGE\": 32.400000, \"MED_AGE_M\": 31.300000, \"MED_AGE_F\": 33.600000, \"HOUSEHOLDS\": 7531, \"AVE_HH_SZ\": 2.730000, \"HSEHLD_1_M\": 789, \"HSEHLD_1_F\": 1081, \"MARHH_CHD\": 2100, \"MARHH_NO_C\": 1960, \"MHH_CHILD\": 208, \"FHH_CHILD\": 609, \"FAMILIES\": 5328, \"AVE_FAM_SZ\": 3.260000, \"HSE_UNITS\": 7970, \"VACANT\": 439, \"OWNER_OCC\": 5081, \"RENTER_OCC\": 2450 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.844092999984781, 42.254757999607016 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bensenville\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"05248\", \"CAPITAL\": \"N\", \"AREALAND\": 6.006000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 20703, \"WHITE\": 14615, \"BLACK\": 579, \"AMERI_ES\": 94, \"ASIAN\": 1318, \"HAWN_PI\": 5, \"OTHER\": 3438, \"MULT_RACE\": 654, \"HISPANIC\": 7690, \"MALES\": 10643, \"FEMALES\": 10060, \"AGE_UNDER5\": 1575, \"AGE_5_17\": 3618, \"AGE_18_21\": 1239, \"AGE_22_29\": 3072, \"AGE_30_39\": 3492, \"AGE_40_49\": 2799, \"AGE_50_64\": 2571, \"AGE_65_UP\": 2337, \"MED_AGE\": 32.200000, \"MED_AGE_M\": 30.800000, \"MED_AGE_F\": 33.900000, \"HOUSEHOLDS\": 6885, \"AVE_HH_SZ\": 2.950000, \"HSEHLD_1_M\": 878, \"HSEHLD_1_F\": 875, \"MARHH_CHD\": 1867, \"MARHH_NO_C\": 1747, \"MHH_CHILD\": 134, \"FHH_CHILD\": 334, \"FAMILIES\": 4655, \"AVE_FAM_SZ\": 3.560000, \"HSE_UNITS\": 7120, \"VACANT\": 235, \"OWNER_OCC\": 3861, \"RENTER_OCC\": 3024 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.945773000144357, 41.958042998763467 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Berwyn\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"05573\", \"CAPITAL\": \"N\", \"AREALAND\": 3.893000, \"AREAWATER\": 0.000000, \"POP_CL\": 7, \"POP2000\": 54016, \"WHITE\": 39667, \"BLACK\": 702, \"AMERI_ES\": 239, \"ASIAN\": 1400, \"HAWN_PI\": 14, \"OTHER\": 10040, \"MULT_RACE\": 1954, \"HISPANIC\": 20543, \"MALES\": 26314, \"FEMALES\": 27702, \"AGE_UNDER5\": 4257, \"AGE_5_17\": 9903, \"AGE_18_21\": 2809, \"AGE_22_29\": 6784, \"AGE_30_39\": 8582, \"AGE_40_49\": 7495, \"AGE_50_64\": 6905, \"AGE_65_UP\": 7281, \"MED_AGE\": 33.800000, \"MED_AGE_M\": 32.300000, \"MED_AGE_F\": 35.200000, \"HOUSEHOLDS\": 19702, \"AVE_HH_SZ\": 2.730000, \"HSEHLD_1_M\": 2460, \"HSEHLD_1_F\": 3334, \"MARHH_CHD\": 4883, \"MARHH_NO_C\": 4368, \"MHH_CHILD\": 456, \"FHH_CHILD\": 1166, \"FAMILIES\": 12931, \"AVE_FAM_SZ\": 3.450000, \"HSE_UNITS\": 20691, \"VACANT\": 989, \"OWNER_OCC\": 12122, \"RENTER_OCC\": 7580 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.789905000220841, 41.842530998527856 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bloomingdale\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"06587\", \"CAPITAL\": \"N\", \"AREALAND\": 6.765000, \"AREAWATER\": 0.042000, \"POP_CL\": 6, \"POP2000\": 21675, \"WHITE\": 18505, \"BLACK\": 557, \"AMERI_ES\": 26, \"ASIAN\": 1916, \"HAWN_PI\": 3, \"OTHER\": 325, \"MULT_RACE\": 343, \"HISPANIC\": 1074, \"MALES\": 10441, \"FEMALES\": 11234, \"AGE_UNDER5\": 1181, \"AGE_5_17\": 3519, \"AGE_18_21\": 985, \"AGE_22_29\": 2524, \"AGE_30_39\": 3270, \"AGE_40_49\": 3463, \"AGE_50_64\": 4051, \"AGE_65_UP\": 2682, \"MED_AGE\": 38.200000, \"MED_AGE_M\": 36.400000, \"MED_AGE_F\": 39.800000, \"HOUSEHOLDS\": 8219, \"AVE_HH_SZ\": 2.540000, \"HSEHLD_1_M\": 838, \"HSEHLD_1_F\": 1162, \"MARHH_CHD\": 2008, \"MARHH_NO_C\": 2707, \"MHH_CHILD\": 116, \"FHH_CHILD\": 342, \"FAMILIES\": 5660, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 8399, \"VACANT\": 180, \"OWNER_OCC\": 5962, \"RENTER_OCC\": 2257 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.08256400008753, 41.949539998949739 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bloomington\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"06613\", \"CAPITAL\": \"N\", \"AREALAND\": 22.500000, \"AREAWATER\": 0.000000, \"POP_CL\": 7, \"POP2000\": 64808, \"WHITE\": 55032, \"BLACK\": 5602, \"AMERI_ES\": 115, \"ASIAN\": 1958, \"HAWN_PI\": 28, \"OTHER\": 919, \"MULT_RACE\": 1154, \"HISPANIC\": 2150, \"MALES\": 31413, \"FEMALES\": 33395, \"AGE_UNDER5\": 4774, \"AGE_5_17\": 11394, \"AGE_18_21\": 4588, \"AGE_22_29\": 9087, \"AGE_30_39\": 10788, \"AGE_40_49\": 9773, \"AGE_50_64\": 7966, \"AGE_65_UP\": 6438, \"MED_AGE\": 32.400000, \"MED_AGE_M\": 31.400000, \"MED_AGE_F\": 33.400000, \"HOUSEHOLDS\": 26642, \"AVE_HH_SZ\": 2.340000, \"HSEHLD_1_M\": 3790, \"HSEHLD_1_F\": 4958, \"MARHH_CHD\": 6009, \"MARHH_NO_C\": 6333, \"MHH_CHILD\": 439, \"FHH_CHILD\": 1720, \"FAMILIES\": 15724, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 28431, \"VACANT\": 1789, \"OWNER_OCC\": 16802, \"RENTER_OCC\": 9840 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.983508999956172, 40.477584999708064 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Blue Island\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"06704\", \"CAPITAL\": \"N\", \"AREALAND\": 4.030000, \"AREAWATER\": 0.095000, \"POP_CL\": 6, \"POP2000\": 23463, \"WHITE\": 12596, \"BLACK\": 5655, \"AMERI_ES\": 135, \"ASIAN\": 87, \"HAWN_PI\": 8, \"OTHER\": 4149, \"MULT_RACE\": 833, \"HISPANIC\": 8899, \"MALES\": 11485, \"FEMALES\": 11978, \"AGE_UNDER5\": 2048, \"AGE_5_17\": 5023, \"AGE_18_21\": 1357, \"AGE_22_29\": 3104, \"AGE_30_39\": 3760, \"AGE_40_49\": 3298, \"AGE_50_64\": 2585, \"AGE_65_UP\": 2288, \"MED_AGE\": 30.400000, \"MED_AGE_M\": 29.500000, \"MED_AGE_F\": 31.400000, \"HOUSEHOLDS\": 8247, \"AVE_HH_SZ\": 2.840000, \"HSEHLD_1_M\": 1100, \"HSEHLD_1_F\": 1223, \"MARHH_CHD\": 1915, \"MARHH_NO_C\": 1409, \"MHH_CHILD\": 227, \"FHH_CHILD\": 964, \"FAMILIES\": 5468, \"AVE_FAM_SZ\": 3.540000, \"HSE_UNITS\": 8750, \"VACANT\": 503, \"OWNER_OCC\": 4477, \"RENTER_OCC\": 3770 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.679424000278416, 41.658411998348306 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bolingbrook\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"07133\", \"CAPITAL\": \"N\", \"AREALAND\": 20.506000, \"AREAWATER\": 0.237000, \"POP_CL\": 7, \"POP2000\": 56321, \"WHITE\": 36330, \"BLACK\": 11494, \"AMERI_ES\": 130, \"ASIAN\": 3591, \"HAWN_PI\": 36, \"OTHER\": 3182, \"MULT_RACE\": 1558, \"HISPANIC\": 7371, \"MALES\": 28111, \"FEMALES\": 28210, \"AGE_UNDER5\": 5353, \"AGE_5_17\": 12812, \"AGE_18_21\": 2857, \"AGE_22_29\": 6020, \"AGE_30_39\": 10863, \"AGE_40_49\": 8830, \"AGE_50_64\": 7177, \"AGE_65_UP\": 2409, \"MED_AGE\": 31.000000, \"MED_AGE_M\": 30.300000, \"MED_AGE_F\": 31.800000, \"HOUSEHOLDS\": 17416, \"AVE_HH_SZ\": 3.220000, \"HSEHLD_1_M\": 1256, \"HSEHLD_1_F\": 1213, \"MARHH_CHD\": 6842, \"MARHH_NO_C\": 4745, \"MHH_CHILD\": 379, \"FHH_CHILD\": 1144, \"FAMILIES\": 14246, \"AVE_FAM_SZ\": 3.560000, \"HSE_UNITS\": 17884, \"VACANT\": 468, \"OWNER_OCC\": 14834, \"RENTER_OCC\": 2582 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.088668000068466, 41.698612998970589 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bourbonnais\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"07471\", \"CAPITAL\": \"N\", \"AREALAND\": 4.620000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 15256, \"WHITE\": 13839, \"BLACK\": 701, \"AMERI_ES\": 16, \"ASIAN\": 365, \"HAWN_PI\": 4, \"OTHER\": 105, \"MULT_RACE\": 226, \"HISPANIC\": 345, \"MALES\": 7262, \"FEMALES\": 7994, \"AGE_UNDER5\": 1021, \"AGE_5_17\": 2865, \"AGE_18_21\": 1646, \"AGE_22_29\": 1739, \"AGE_30_39\": 2048, \"AGE_40_49\": 2322, \"AGE_50_64\": 2189, \"AGE_65_UP\": 1426, \"MED_AGE\": 31.900000, \"MED_AGE_M\": 30.800000, \"MED_AGE_F\": 33.000000, \"HOUSEHOLDS\": 5341, \"AVE_HH_SZ\": 2.580000, \"HSEHLD_1_M\": 491, \"HSEHLD_1_F\": 769, \"MARHH_CHD\": 1519, \"MARHH_NO_C\": 1532, \"MHH_CHILD\": 104, \"FHH_CHILD\": 401, \"FAMILIES\": 3818, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 5505, \"VACANT\": 164, \"OWNER_OCC\": 3348, \"RENTER_OCC\": 1993 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.878486000105028, 41.165039998716232 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bradley\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"07744\", \"CAPITAL\": \"N\", \"AREALAND\": 3.781000, \"AREAWATER\": 0.005000, \"POP_CL\": 6, \"POP2000\": 12784, \"WHITE\": 12224, \"BLACK\": 157, \"AMERI_ES\": 27, \"ASIAN\": 87, \"HAWN_PI\": 3, \"OTHER\": 153, \"MULT_RACE\": 133, \"HISPANIC\": 461, \"MALES\": 6203, \"FEMALES\": 6581, \"AGE_UNDER5\": 958, \"AGE_5_17\": 2371, \"AGE_18_21\": 718, \"AGE_22_29\": 1582, \"AGE_30_39\": 2090, \"AGE_40_49\": 1674, \"AGE_50_64\": 1676, \"AGE_65_UP\": 1715, \"MED_AGE\": 33.500000, \"MED_AGE_M\": 31.900000, \"MED_AGE_F\": 35.200000, \"HOUSEHOLDS\": 5041, \"AVE_HH_SZ\": 2.490000, \"HSEHLD_1_M\": 544, \"HSEHLD_1_F\": 808, \"MARHH_CHD\": 1211, \"MARHH_NO_C\": 1375, \"MHH_CHILD\": 144, \"FHH_CHILD\": 333, \"FAMILIES\": 3384, \"AVE_FAM_SZ\": 3.030000, \"HSE_UNITS\": 5272, \"VACANT\": 231, \"OWNER_OCC\": 3389, \"RENTER_OCC\": 1652 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.859123000112007, 41.146331998688488 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bridgeview\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"08225\", \"CAPITAL\": \"N\", \"AREALAND\": 4.126000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 15335, \"WHITE\": 13406, \"BLACK\": 126, \"AMERI_ES\": 46, \"ASIAN\": 341, \"HAWN_PI\": 0, \"OTHER\": 609, \"MULT_RACE\": 807, \"HISPANIC\": 1445, \"MALES\": 7575, \"FEMALES\": 7760, \"AGE_UNDER5\": 1101, \"AGE_5_17\": 2711, \"AGE_18_21\": 775, \"AGE_22_29\": 1602, \"AGE_30_39\": 2310, \"AGE_40_49\": 2315, \"AGE_50_64\": 2304, \"AGE_65_UP\": 2217, \"MED_AGE\": 36.700000, \"MED_AGE_M\": 35.200000, \"MED_AGE_F\": 38.400000, \"HOUSEHOLDS\": 5631, \"AVE_HH_SZ\": 2.650000, \"HSEHLD_1_M\": 710, \"HSEHLD_1_F\": 834, \"MARHH_CHD\": 1443, \"MARHH_NO_C\": 1464, \"MHH_CHILD\": 96, \"FHH_CHILD\": 274, \"FAMILIES\": 3813, \"AVE_FAM_SZ\": 3.300000, \"HSE_UNITS\": 5825, \"VACANT\": 194, \"OWNER_OCC\": 4241, \"RENTER_OCC\": 1390 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.806789000199572, 41.742431998563227 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Brookfield\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"08576\", \"CAPITAL\": \"N\", \"AREALAND\": 3.052000, \"AREAWATER\": 0.004000, \"POP_CL\": 6, \"POP2000\": 19085, \"WHITE\": 17850, \"BLACK\": 169, \"AMERI_ES\": 27, \"ASIAN\": 237, \"HAWN_PI\": 2, \"OTHER\": 550, \"MULT_RACE\": 250, \"HISPANIC\": 1537, \"MALES\": 9078, \"FEMALES\": 10007, \"AGE_UNDER5\": 1234, \"AGE_5_17\": 3319, \"AGE_18_21\": 677, \"AGE_22_29\": 1806, \"AGE_30_39\": 3164, \"AGE_40_49\": 3209, \"AGE_50_64\": 2768, \"AGE_65_UP\": 2908, \"MED_AGE\": 38.000000, \"MED_AGE_M\": 36.700000, \"MED_AGE_F\": 39.300000, \"HOUSEHOLDS\": 7536, \"AVE_HH_SZ\": 2.500000, \"HSEHLD_1_M\": 864, \"HSEHLD_1_F\": 1232, \"MARHH_CHD\": 1872, \"MARHH_NO_C\": 2086, \"MHH_CHILD\": 110, \"FHH_CHILD\": 373, \"FAMILIES\": 5031, \"AVE_FAM_SZ\": 3.100000, \"HSE_UNITS\": 7753, \"VACANT\": 217, \"OWNER_OCC\": 5630, \"RENTER_OCC\": 1906 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.847532000183563, 41.822680998623227 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Buffalo Grove\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"09447\", \"CAPITAL\": \"N\", \"AREALAND\": 9.194000, \"AREAWATER\": 0.020000, \"POP_CL\": 6, \"POP2000\": 42909, \"WHITE\": 38059, \"BLACK\": 325, \"AMERI_ES\": 24, \"ASIAN\": 3618, \"HAWN_PI\": 6, \"OTHER\": 389, \"MULT_RACE\": 488, \"HISPANIC\": 1425, \"MALES\": 20750, \"FEMALES\": 22159, \"AGE_UNDER5\": 2827, \"AGE_5_17\": 9577, \"AGE_18_21\": 1257, \"AGE_22_29\": 3065, \"AGE_30_39\": 6983, \"AGE_40_49\": 8836, \"AGE_50_64\": 6481, \"AGE_65_UP\": 3883, \"MED_AGE\": 37.400000, \"MED_AGE_M\": 36.400000, \"MED_AGE_F\": 38.200000, \"HOUSEHOLDS\": 15708, \"AVE_HH_SZ\": 2.720000, \"HSEHLD_1_M\": 1291, \"HSEHLD_1_F\": 2182, \"MARHH_CHD\": 5970, \"MARHH_NO_C\": 4396, \"MHH_CHILD\": 129, \"FHH_CHILD\": 603, \"FAMILIES\": 11663, \"AVE_FAM_SZ\": 3.230000, \"HSE_UNITS\": 16166, \"VACANT\": 458, \"OWNER_OCC\": 13682, \"RENTER_OCC\": 2026 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.963391000153294, 42.166331998776322 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Burbank\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"09642\", \"CAPITAL\": \"N\", \"AREALAND\": 4.173000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 27902, \"WHITE\": 25299, \"BLACK\": 73, \"AMERI_ES\": 47, \"ASIAN\": 490, \"HAWN_PI\": 6, \"OTHER\": 1102, \"MULT_RACE\": 885, \"HISPANIC\": 3095, \"MALES\": 13630, \"FEMALES\": 14272, \"AGE_UNDER5\": 1640, \"AGE_5_17\": 5376, \"AGE_18_21\": 1678, \"AGE_22_29\": 2777, \"AGE_30_39\": 3776, \"AGE_40_49\": 4352, \"AGE_50_64\": 4382, \"AGE_65_UP\": 3921, \"MED_AGE\": 36.900000, \"MED_AGE_M\": 35.500000, \"MED_AGE_F\": 38.300000, \"HOUSEHOLDS\": 9317, \"AVE_HH_SZ\": 2.980000, \"HSEHLD_1_M\": 716, \"HSEHLD_1_F\": 1047, \"MARHH_CHD\": 2664, \"MARHH_NO_C\": 2998, \"MHH_CHILD\": 147, \"FHH_CHILD\": 393, \"FAMILIES\": 7263, \"AVE_FAM_SZ\": 3.440000, \"HSE_UNITS\": 9518, \"VACANT\": 201, \"OWNER_OCC\": 7732, \"RENTER_OCC\": 1585 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.770226000223062, 41.74408199850204 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Burr Ridge\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"09980\", \"CAPITAL\": \"N\", \"AREALAND\": 6.424000, \"AREAWATER\": 0.112000, \"POP_CL\": 6, \"POP2000\": 10408, \"WHITE\": 8919, \"BLACK\": 102, \"AMERI_ES\": 3, \"ASIAN\": 1138, \"HAWN_PI\": 3, \"OTHER\": 78, \"MULT_RACE\": 165, \"HISPANIC\": 304, \"MALES\": 5087, \"FEMALES\": 5321, \"AGE_UNDER5\": 534, \"AGE_5_17\": 2233, \"AGE_18_21\": 344, \"AGE_22_29\": 457, \"AGE_30_39\": 935, \"AGE_40_49\": 1985, \"AGE_50_64\": 2442, \"AGE_65_UP\": 1478, \"MED_AGE\": 44.000000, \"MED_AGE_M\": 43.500000, \"MED_AGE_F\": 44.500000, \"HOUSEHOLDS\": 3541, \"AVE_HH_SZ\": 2.870000, \"HSEHLD_1_M\": 178, \"HSEHLD_1_F\": 384, \"MARHH_CHD\": 1235, \"MARHH_NO_C\": 1470, \"MHH_CHILD\": 26, \"FHH_CHILD\": 57, \"FAMILIES\": 2914, \"AVE_FAM_SZ\": 3.220000, \"HSE_UNITS\": 3679, \"VACANT\": 138, \"OWNER_OCC\": 3375, \"RENTER_OCC\": 166 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.919998000139017, 41.753029998738647 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cahokia\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"10370\", \"CAPITAL\": \"N\", \"AREALAND\": 9.609000, \"AREAWATER\": 0.367000, \"POP_CL\": 6, \"POP2000\": 16391, \"WHITE\": 9552, \"BLACK\": 6342, \"AMERI_ES\": 53, \"ASIAN\": 63, \"HAWN_PI\": 5, \"OTHER\": 120, \"MULT_RACE\": 256, \"HISPANIC\": 369, \"MALES\": 7706, \"FEMALES\": 8685, \"AGE_UNDER5\": 1289, \"AGE_5_17\": 4192, \"AGE_18_21\": 861, \"AGE_22_29\": 1681, \"AGE_30_39\": 2426, \"AGE_40_49\": 2229, \"AGE_50_64\": 1813, \"AGE_65_UP\": 1900, \"MED_AGE\": 30.700000, \"MED_AGE_M\": 29.100000, \"MED_AGE_F\": 32.000000, \"HOUSEHOLDS\": 5693, \"AVE_HH_SZ\": 2.840000, \"HSEHLD_1_M\": 548, \"HSEHLD_1_F\": 643, \"MARHH_CHD\": 1136, \"MARHH_NO_C\": 1321, \"MHH_CHILD\": 200, \"FHH_CHILD\": 1010, \"FAMILIES\": 4250, \"AVE_FAM_SZ\": 3.270000, \"HSE_UNITS\": 6213, \"VACANT\": 520, \"OWNER_OCC\": 3808, \"RENTER_OCC\": 1885 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.172877999990703, 38.561900999966596 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Calumet City\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"10487\", \"CAPITAL\": \"N\", \"AREALAND\": 7.265000, \"AREAWATER\": 0.117000, \"POP_CL\": 6, \"POP2000\": 39071, \"WHITE\": 15137, \"BLACK\": 20673, \"AMERI_ES\": 97, \"ASIAN\": 207, \"HAWN_PI\": 21, \"OTHER\": 2097, \"MULT_RACE\": 839, \"HISPANIC\": 4242, \"MALES\": 18150, \"FEMALES\": 20921, \"AGE_UNDER5\": 3027, \"AGE_5_17\": 8200, \"AGE_18_21\": 2004, \"AGE_22_29\": 4138, \"AGE_30_39\": 6163, \"AGE_40_49\": 5537, \"AGE_50_64\": 5027, \"AGE_65_UP\": 4975, \"MED_AGE\": 33.700000, \"MED_AGE_M\": 31.800000, \"MED_AGE_F\": 35.100000, \"HOUSEHOLDS\": 15139, \"AVE_HH_SZ\": 2.580000, \"HSEHLD_1_M\": 1871, \"HSEHLD_1_F\": 2646, \"MARHH_CHD\": 2768, \"MARHH_NO_C\": 3030, \"MHH_CHILD\": 429, \"FHH_CHILD\": 2045, \"FAMILIES\": 10014, \"AVE_FAM_SZ\": 3.210000, \"HSE_UNITS\": 15947, \"VACANT\": 808, \"OWNER_OCC\": 9588, \"RENTER_OCC\": 5551 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.546389000390946, 41.614187998092333 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Canton\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"11007\", \"CAPITAL\": \"N\", \"AREALAND\": 7.849000, \"AREAWATER\": 0.163000, \"POP_CL\": 6, \"POP2000\": 15288, \"WHITE\": 13696, \"BLACK\": 1353, \"AMERI_ES\": 22, \"ASIAN\": 62, \"HAWN_PI\": 3, \"OTHER\": 67, \"MULT_RACE\": 85, \"HISPANIC\": 320, \"MALES\": 8203, \"FEMALES\": 7085, \"AGE_UNDER5\": 855, \"AGE_5_17\": 2241, \"AGE_18_21\": 858, \"AGE_22_29\": 1878, \"AGE_30_39\": 2471, \"AGE_40_49\": 2152, \"AGE_50_64\": 2024, \"AGE_65_UP\": 2809, \"MED_AGE\": 37.500000, \"MED_AGE_M\": 34.600000, \"MED_AGE_F\": 41.900000, \"HOUSEHOLDS\": 5677, \"AVE_HH_SZ\": 2.290000, \"HSEHLD_1_M\": 631, \"HSEHLD_1_F\": 1193, \"MARHH_CHD\": 1071, \"MARHH_NO_C\": 1692, \"MHH_CHILD\": 138, \"FHH_CHILD\": 404, \"FAMILIES\": 3619, \"AVE_FAM_SZ\": 2.860000, \"HSE_UNITS\": 6098, \"VACANT\": 421, \"OWNER_OCC\": 3932, \"RENTER_OCC\": 1745 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.034263999990529, 40.557736999949853 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Carbondale\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"11163\", \"CAPITAL\": \"N\", \"AREALAND\": 11.895000, \"AREAWATER\": 0.249000, \"POP_CL\": 6, \"POP2000\": 20681, \"WHITE\": 13665, \"BLACK\": 4785, \"AMERI_ES\": 45, \"ASIAN\": 1379, \"HAWN_PI\": 16, \"OTHER\": 294, \"MULT_RACE\": 497, \"HISPANIC\": 630, \"MALES\": 10651, \"FEMALES\": 10030, \"AGE_UNDER5\": 1032, \"AGE_5_17\": 2232, \"AGE_18_21\": 3935, \"AGE_22_29\": 5888, \"AGE_30_39\": 2158, \"AGE_40_49\": 1814, \"AGE_50_64\": 1699, \"AGE_65_UP\": 1923, \"MED_AGE\": 24.700000, \"MED_AGE_M\": 24.400000, \"MED_AGE_F\": 25.300000, \"HOUSEHOLDS\": 9981, \"AVE_HH_SZ\": 1.990000, \"HSEHLD_1_M\": 2176, \"HSEHLD_1_F\": 2169, \"MARHH_CHD\": 902, \"MARHH_NO_C\": 1302, \"MHH_CHILD\": 114, \"FHH_CHILD\": 684, \"FAMILIES\": 3489, \"AVE_FAM_SZ\": 2.780000, \"HSE_UNITS\": 10968, \"VACANT\": 987, \"OWNER_OCC\": 2860, \"RENTER_OCC\": 7121 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.220269999941422, 37.726417999829607 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Carol Stream\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"11332\", \"CAPITAL\": \"N\", \"AREALAND\": 8.896000, \"AREAWATER\": 0.028000, \"POP_CL\": 6, \"POP2000\": 40438, \"WHITE\": 31749, \"BLACK\": 1716, \"AMERI_ES\": 71, \"ASIAN\": 4531, \"HAWN_PI\": 4, \"OTHER\": 1534, \"MULT_RACE\": 833, \"HISPANIC\": 4055, \"MALES\": 19922, \"FEMALES\": 20516, \"AGE_UNDER5\": 3308, \"AGE_5_17\": 9197, \"AGE_18_21\": 2081, \"AGE_22_29\": 4687, \"AGE_30_39\": 7801, \"AGE_40_49\": 6976, \"AGE_50_64\": 4079, \"AGE_65_UP\": 2309, \"MED_AGE\": 31.300000, \"MED_AGE_M\": 30.300000, \"MED_AGE_F\": 32.300000, \"HOUSEHOLDS\": 13872, \"AVE_HH_SZ\": 2.910000, \"HSEHLD_1_M\": 1201, \"HSEHLD_1_F\": 1727, \"MARHH_CHD\": 5218, \"MARHH_NO_C\": 3067, \"MHH_CHILD\": 253, \"FHH_CHILD\": 828, \"FAMILIES\": 10137, \"AVE_FAM_SZ\": 3.450000, \"HSE_UNITS\": 14200, \"VACANT\": 328, \"OWNER_OCC\": 9775, \"RENTER_OCC\": 4097 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.140755000066946, 41.921999999022745 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Carpentersville\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"11358\", \"CAPITAL\": \"N\", \"AREALAND\": 7.450000, \"AREAWATER\": 0.148000, \"POP_CL\": 6, \"POP2000\": 30586, \"WHITE\": 21031, \"BLACK\": 1279, \"AMERI_ES\": 197, \"ASIAN\": 606, \"HAWN_PI\": 30, \"OTHER\": 6372, \"MULT_RACE\": 1071, \"HISPANIC\": 12410, \"MALES\": 15788, \"FEMALES\": 14798, \"AGE_UNDER5\": 3223, \"AGE_5_17\": 6927, \"AGE_18_21\": 1769, \"AGE_22_29\": 4586, \"AGE_30_39\": 5602, \"AGE_40_49\": 3889, \"AGE_50_64\": 2971, \"AGE_65_UP\": 1619, \"MED_AGE\": 28.100000, \"MED_AGE_M\": 27.800000, \"MED_AGE_F\": 28.400000, \"HOUSEHOLDS\": 8872, \"AVE_HH_SZ\": 3.450000, \"HSEHLD_1_M\": 626, \"HSEHLD_1_F\": 610, \"MARHH_CHD\": 3374, \"MARHH_NO_C\": 2224, \"MHH_CHILD\": 324, \"FHH_CHILD\": 611, \"FAMILIES\": 7237, \"AVE_FAM_SZ\": 3.770000, \"HSE_UNITS\": 9113, \"VACANT\": 241, \"OWNER_OCC\": 7088, \"RENTER_OCC\": 1784 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.274679000043093, 42.121155999163932 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cary\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"11592\", \"CAPITAL\": \"N\", \"AREALAND\": 5.253000, \"AREAWATER\": 0.058000, \"POP_CL\": 6, \"POP2000\": 15531, \"WHITE\": 14837, \"BLACK\": 61, \"AMERI_ES\": 24, \"ASIAN\": 210, \"HAWN_PI\": 4, \"OTHER\": 285, \"MULT_RACE\": 110, \"HISPANIC\": 843, \"MALES\": 7668, \"FEMALES\": 7863, \"AGE_UNDER5\": 1315, \"AGE_5_17\": 4083, \"AGE_18_21\": 606, \"AGE_22_29\": 953, \"AGE_30_39\": 2819, \"AGE_40_49\": 3077, \"AGE_50_64\": 1730, \"AGE_65_UP\": 948, \"MED_AGE\": 33.900000, \"MED_AGE_M\": 33.100000, \"MED_AGE_F\": 34.500000, \"HOUSEHOLDS\": 4962, \"AVE_HH_SZ\": 3.120000, \"HSEHLD_1_M\": 267, \"HSEHLD_1_F\": 429, \"MARHH_CHD\": 2329, \"MARHH_NO_C\": 1286, \"MHH_CHILD\": 67, \"FHH_CHILD\": 224, \"FAMILIES\": 4110, \"AVE_FAM_SZ\": 3.480000, \"HSE_UNITS\": 5037, \"VACANT\": 75, \"OWNER_OCC\": 4497, \"RENTER_OCC\": 465 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.246830000054459, 42.212431999130366 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Centralia\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"12164\", \"CAPITAL\": \"N\", \"AREALAND\": 7.502000, \"AREAWATER\": 0.137000, \"POP_CL\": 6, \"POP2000\": 14136, \"WHITE\": 12227, \"BLACK\": 1462, \"AMERI_ES\": 35, \"ASIAN\": 103, \"HAWN_PI\": 9, \"OTHER\": 58, \"MULT_RACE\": 242, \"HISPANIC\": 170, \"MALES\": 6520, \"FEMALES\": 7616, \"AGE_UNDER5\": 901, \"AGE_5_17\": 2528, \"AGE_18_21\": 681, \"AGE_22_29\": 1240, \"AGE_30_39\": 1810, \"AGE_40_49\": 2015, \"AGE_50_64\": 2190, \"AGE_65_UP\": 2771, \"MED_AGE\": 39.600000, \"MED_AGE_M\": 36.400000, \"MED_AGE_F\": 42.200000, \"HOUSEHOLDS\": 5784, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 717, \"HSEHLD_1_F\": 1281, \"MARHH_CHD\": 980, \"MARHH_NO_C\": 1513, \"MHH_CHILD\": 150, \"FHH_CHILD\": 495, \"FAMILIES\": 3567, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 6276, \"VACANT\": 492, \"OWNER_OCC\": 4014, \"RENTER_OCC\": 1770 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.13254799994148, 38.525256999793598 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Champaign\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"12385\", \"CAPITAL\": \"N\", \"AREALAND\": 16.987000, \"AREAWATER\": 0.023000, \"POP_CL\": 7, \"POP2000\": 67518, \"WHITE\": 49398, \"BLACK\": 10543, \"AMERI_ES\": 159, \"ASIAN\": 4611, \"HAWN_PI\": 23, \"OTHER\": 1307, \"MULT_RACE\": 1477, \"HISPANIC\": 2724, \"MALES\": 34206, \"FEMALES\": 33312, \"AGE_UNDER5\": 3374, \"AGE_5_17\": 8637, \"AGE_18_21\": 15159, \"AGE_22_29\": 12133, \"AGE_30_39\": 8151, \"AGE_40_49\": 7755, \"AGE_50_64\": 6631, \"AGE_65_UP\": 5678, \"MED_AGE\": 25.300000, \"MED_AGE_M\": 24.400000, \"MED_AGE_F\": 26.400000, \"HOUSEHOLDS\": 27071, \"AVE_HH_SZ\": 2.230000, \"HSEHLD_1_M\": 4963, \"HSEHLD_1_F\": 4932, \"MARHH_CHD\": 4074, \"MARHH_NO_C\": 5239, \"MHH_CHILD\": 310, \"FHH_CHILD\": 1575, \"FAMILIES\": 12450, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 28556, \"VACANT\": 1485, \"OWNER_OCC\": 12833, \"RENTER_OCC\": 14238 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.261226999944626, 40.112980999237116 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Charleston\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"12567\", \"CAPITAL\": \"N\", \"AREALAND\": 7.993000, \"AREAWATER\": 0.680000, \"POP_CL\": 6, \"POP2000\": 21039, \"WHITE\": 19462, \"BLACK\": 894, \"AMERI_ES\": 51, \"ASIAN\": 282, \"HAWN_PI\": 18, \"OTHER\": 105, \"MULT_RACE\": 227, \"HISPANIC\": 370, \"MALES\": 9781, \"FEMALES\": 11258, \"AGE_UNDER5\": 794, \"AGE_5_17\": 2104, \"AGE_18_21\": 6519, \"AGE_22_29\": 3959, \"AGE_30_39\": 1759, \"AGE_40_49\": 1933, \"AGE_50_64\": 1933, \"AGE_65_UP\": 2038, \"MED_AGE\": 22.700000, \"MED_AGE_M\": 23.000000, \"MED_AGE_F\": 22.400000, \"HOUSEHOLDS\": 7672, \"AVE_HH_SZ\": 2.220000, \"HSEHLD_1_M\": 1138, \"HSEHLD_1_F\": 1520, \"MARHH_CHD\": 1107, \"MARHH_NO_C\": 1491, \"MHH_CHILD\": 81, \"FHH_CHILD\": 360, \"FAMILIES\": 3326, \"AVE_FAM_SZ\": 2.880000, \"HSE_UNITS\": 8148, \"VACANT\": 476, \"OWNER_OCC\": 3508, \"RENTER_OCC\": 4164 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.178975999916744, 39.488720999186256 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Chicago\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"14000\", \"CAPITAL\": \"N\", \"AREALAND\": 227.131000, \"AREAWATER\": 6.869000, \"POP_CL\": 10, \"POP2000\": 2896016, \"WHITE\": 1215315, \"BLACK\": 1065009, \"AMERI_ES\": 10290, \"ASIAN\": 125974, \"HAWN_PI\": 1788, \"OTHER\": 393203, \"MULT_RACE\": 84437, \"HISPANIC\": 753644, \"MALES\": 1405107, \"FEMALES\": 1490909, \"AGE_UNDER5\": 218522, \"AGE_5_17\": 541318, \"AGE_18_21\": 172620, \"AGE_22_29\": 431648, \"AGE_30_39\": 479483, \"AGE_40_49\": 384230, \"AGE_50_64\": 369392, \"AGE_65_UP\": 298803, \"MED_AGE\": 31.500000, \"MED_AGE_M\": 30.500000, \"MED_AGE_F\": 32.600000, \"HOUSEHOLDS\": 1061928, \"AVE_HH_SZ\": 2.670000, \"HSEHLD_1_M\": 157419, \"HSEHLD_1_F\": 188413, \"MARHH_CHD\": 179408, \"MARHH_NO_C\": 193562, \"MHH_CHILD\": 21343, \"FHH_CHILD\": 105705, \"FAMILIES\": 632558, \"AVE_FAM_SZ\": 3.500000, \"HSE_UNITS\": 1152868, \"VACANT\": 90940, \"OWNER_OCC\": 464865, \"RENTER_OCC\": 597063 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.679365000301516, 41.840674998332858 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Chicago Heights\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"14026\", \"CAPITAL\": \"N\", \"AREALAND\": 9.571000, \"AREAWATER\": 0.011000, \"POP_CL\": 6, \"POP2000\": 32776, \"WHITE\": 14756, \"BLACK\": 12421, \"AMERI_ES\": 146, \"ASIAN\": 144, \"HAWN_PI\": 12, \"OTHER\": 4411, \"MULT_RACE\": 886, \"HISPANIC\": 7790, \"MALES\": 15947, \"FEMALES\": 16829, \"AGE_UNDER5\": 3005, \"AGE_5_17\": 7368, \"AGE_18_21\": 1985, \"AGE_22_29\": 3737, \"AGE_30_39\": 4570, \"AGE_40_49\": 4173, \"AGE_50_64\": 4057, \"AGE_65_UP\": 3881, \"MED_AGE\": 30.600000, \"MED_AGE_M\": 29.000000, \"MED_AGE_F\": 32.300000, \"HOUSEHOLDS\": 10703, \"AVE_HH_SZ\": 3.000000, \"HSEHLD_1_M\": 1046, \"HSEHLD_1_F\": 1403, \"MARHH_CHD\": 2356, \"MARHH_NO_C\": 2456, \"MHH_CHILD\": 289, \"FHH_CHILD\": 1436, \"FAMILIES\": 7821, \"AVE_FAM_SZ\": 3.530000, \"HSE_UNITS\": 11444, \"VACANT\": 741, \"OWNER_OCC\": 6725, \"RENTER_OCC\": 3978 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.64020100029083, 41.51203399828777 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Chicago Ridge\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"14065\", \"CAPITAL\": \"N\", \"AREALAND\": 2.230000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14127, \"WHITE\": 12592, \"BLACK\": 345, \"AMERI_ES\": 32, \"ASIAN\": 207, \"HAWN_PI\": 0, \"OTHER\": 277, \"MULT_RACE\": 674, \"HISPANIC\": 883, \"MALES\": 6846, \"FEMALES\": 7281, \"AGE_UNDER5\": 1157, \"AGE_5_17\": 2221, \"AGE_18_21\": 725, \"AGE_22_29\": 2241, \"AGE_30_39\": 2590, \"AGE_40_49\": 1831, \"AGE_50_64\": 1742, \"AGE_65_UP\": 1620, \"MED_AGE\": 32.500000, \"MED_AGE_M\": 31.400000, \"MED_AGE_F\": 33.700000, \"HOUSEHOLDS\": 5739, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 786, \"HSEHLD_1_F\": 1011, \"MARHH_CHD\": 1219, \"MARHH_NO_C\": 1276, \"MHH_CHILD\": 105, \"FHH_CHILD\": 383, \"FAMILIES\": 3486, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 5897, \"VACANT\": 158, \"OWNER_OCC\": 2996, \"RENTER_OCC\": 2743 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.778690000212947, 41.702481998519517 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cicero\", \"CLASS\": \"town\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"14351\", \"CAPITAL\": \"N\", \"AREALAND\": 5.846000, \"AREAWATER\": 0.000000, \"POP_CL\": 7, \"POP2000\": 85616, \"WHITE\": 41327, \"BLACK\": 956, \"AMERI_ES\": 759, \"ASIAN\": 828, \"HAWN_PI\": 38, \"OTHER\": 38277, \"MULT_RACE\": 3431, \"HISPANIC\": 66299, \"MALES\": 44007, \"FEMALES\": 41609, \"AGE_UNDER5\": 9373, \"AGE_5_17\": 20275, \"AGE_18_21\": 6029, \"AGE_22_29\": 13113, \"AGE_30_39\": 13747, \"AGE_40_49\": 9525, \"AGE_50_64\": 7488, \"AGE_65_UP\": 6066, \"MED_AGE\": 26.400000, \"MED_AGE_M\": 26.200000, \"MED_AGE_F\": 26.500000, \"HOUSEHOLDS\": 23115, \"AVE_HH_SZ\": 3.700000, \"HSEHLD_1_M\": 1932, \"HSEHLD_1_F\": 2109, \"MARHH_CHD\": 9078, \"MARHH_NO_C\": 3893, \"MHH_CHILD\": 824, \"FHH_CHILD\": 1825, \"FAMILIES\": 18109, \"AVE_FAM_SZ\": 4.180000, \"HSE_UNITS\": 24640, \"VACANT\": 1525, \"OWNER_OCC\": 12753, \"RENTER_OCC\": 10362 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.759933000241304, 41.84523199847672 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Collinsville\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"15599\", \"CAPITAL\": \"N\", \"AREALAND\": 13.594000, \"AREAWATER\": 0.014000, \"POP_CL\": 6, \"POP2000\": 24707, \"WHITE\": 22603, \"BLACK\": 1446, \"AMERI_ES\": 66, \"ASIAN\": 147, \"HAWN_PI\": 5, \"OTHER\": 146, \"MULT_RACE\": 294, \"HISPANIC\": 534, \"MALES\": 11925, \"FEMALES\": 12782, \"AGE_UNDER5\": 1531, \"AGE_5_17\": 4207, \"AGE_18_21\": 1283, \"AGE_22_29\": 2978, \"AGE_30_39\": 3649, \"AGE_40_49\": 3811, \"AGE_50_64\": 3629, \"AGE_65_UP\": 3619, \"MED_AGE\": 36.600000, \"MED_AGE_M\": 34.700000, \"MED_AGE_F\": 38.500000, \"HOUSEHOLDS\": 10458, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 1313, \"HSEHLD_1_F\": 1836, \"MARHH_CHD\": 2119, \"MARHH_NO_C\": 2916, \"MHH_CHILD\": 218, \"FHH_CHILD\": 723, \"FAMILIES\": 6675, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 11025, \"VACANT\": 567, \"OWNER_OCC\": 7006, \"RENTER_OCC\": 3452 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.995401999986598, 38.674397999952411 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Country Club Hills\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"16691\", \"CAPITAL\": \"N\", \"AREALAND\": 4.614000, \"AREAWATER\": 0.024000, \"POP_CL\": 6, \"POP2000\": 16169, \"WHITE\": 2346, \"BLACK\": 13243, \"AMERI_ES\": 24, \"ASIAN\": 164, \"HAWN_PI\": 0, \"OTHER\": 88, \"MULT_RACE\": 304, \"HISPANIC\": 280, \"MALES\": 7430, \"FEMALES\": 8739, \"AGE_UNDER5\": 1104, \"AGE_5_17\": 3865, \"AGE_18_21\": 891, \"AGE_22_29\": 1337, \"AGE_30_39\": 2359, \"AGE_40_49\": 2855, \"AGE_50_64\": 2617, \"AGE_65_UP\": 1141, \"MED_AGE\": 34.400000, \"MED_AGE_M\": 31.900000, \"MED_AGE_F\": 35.900000, \"HOUSEHOLDS\": 5297, \"AVE_HH_SZ\": 3.050000, \"HSEHLD_1_M\": 317, \"HSEHLD_1_F\": 606, \"MARHH_CHD\": 1368, \"MARHH_NO_C\": 1408, \"MHH_CHILD\": 134, \"FHH_CHILD\": 664, \"FAMILIES\": 4247, \"AVE_FAM_SZ\": 3.420000, \"HSE_UNITS\": 5491, \"VACANT\": 194, \"OWNER_OCC\": 4865, \"RENTER_OCC\": 432 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.720844000235914, 41.56210699843087 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Crest Hill\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"17458\", \"CAPITAL\": \"N\", \"AREALAND\": 7.161000, \"AREAWATER\": 0.106000, \"POP_CL\": 6, \"POP2000\": 13329, \"WHITE\": 9912, \"BLACK\": 2606, \"AMERI_ES\": 26, \"ASIAN\": 150, \"HAWN_PI\": 17, \"OTHER\": 425, \"MULT_RACE\": 193, \"HISPANIC\": 1174, \"MALES\": 7948, \"FEMALES\": 5381, \"AGE_UNDER5\": 742, \"AGE_5_17\": 1779, \"AGE_18_21\": 900, \"AGE_22_29\": 2442, \"AGE_30_39\": 2862, \"AGE_40_49\": 1894, \"AGE_50_64\": 1481, \"AGE_65_UP\": 1229, \"MED_AGE\": 32.400000, \"MED_AGE_M\": 31.600000, \"MED_AGE_F\": 34.600000, \"HOUSEHOLDS\": 4478, \"AVE_HH_SZ\": 2.370000, \"HSEHLD_1_M\": 676, \"HSEHLD_1_F\": 708, \"MARHH_CHD\": 945, \"MARHH_NO_C\": 1076, \"MHH_CHILD\": 99, \"FHH_CHILD\": 310, \"FAMILIES\": 2759, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 4808, \"VACANT\": 330, \"OWNER_OCC\": 2872, \"RENTER_OCC\": 1606 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.108489000053595, 41.564525999001916 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Crestwood\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"17497\", \"CAPITAL\": \"N\", \"AREALAND\": 3.055000, \"AREAWATER\": 0.053000, \"POP_CL\": 6, \"POP2000\": 11251, \"WHITE\": 10403, \"BLACK\": 508, \"AMERI_ES\": 14, \"ASIAN\": 82, \"HAWN_PI\": 0, \"OTHER\": 117, \"MULT_RACE\": 127, \"HISPANIC\": 414, \"MALES\": 5182, \"FEMALES\": 6069, \"AGE_UNDER5\": 682, \"AGE_5_17\": 1700, \"AGE_18_21\": 483, \"AGE_22_29\": 1187, \"AGE_30_39\": 1831, \"AGE_40_49\": 1576, \"AGE_50_64\": 1775, \"AGE_65_UP\": 2017, \"MED_AGE\": 38.700000, \"MED_AGE_M\": 35.700000, \"MED_AGE_F\": 41.700000, \"HOUSEHOLDS\": 4685, \"AVE_HH_SZ\": 2.280000, \"HSEHLD_1_M\": 629, \"HSEHLD_1_F\": 1060, \"MARHH_CHD\": 880, \"MARHH_NO_C\": 1187, \"MHH_CHILD\": 62, \"FHH_CHILD\": 231, \"FAMILIES\": 2761, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 4805, \"VACANT\": 120, \"OWNER_OCC\": 3818, \"RENTER_OCC\": 867 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.74358600022984, 41.645232998463989 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Crystal Lake\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"17887\", \"CAPITAL\": \"N\", \"AREALAND\": 16.243000, \"AREAWATER\": 0.560000, \"POP_CL\": 6, \"POP2000\": 38000, \"WHITE\": 35746, \"BLACK\": 212, \"AMERI_ES\": 62, \"ASIAN\": 747, \"HAWN_PI\": 8, \"OTHER\": 826, \"MULT_RACE\": 399, \"HISPANIC\": 2662, \"MALES\": 18785, \"FEMALES\": 19215, \"AGE_UNDER5\": 3094, \"AGE_5_17\": 8921, \"AGE_18_21\": 1500, \"AGE_22_29\": 3122, \"AGE_30_39\": 6891, \"AGE_40_49\": 6470, \"AGE_50_64\": 4592, \"AGE_65_UP\": 3410, \"MED_AGE\": 34.100000, \"MED_AGE_M\": 32.700000, \"MED_AGE_F\": 35.200000, \"HOUSEHOLDS\": 13070, \"AVE_HH_SZ\": 2.890000, \"HSEHLD_1_M\": 1032, \"HSEHLD_1_F\": 1614, \"MARHH_CHD\": 4956, \"MARHH_NO_C\": 3418, \"MHH_CHILD\": 196, \"FHH_CHILD\": 682, \"FAMILIES\": 9852, \"AVE_FAM_SZ\": 3.360000, \"HSE_UNITS\": 13459, \"VACANT\": 389, \"OWNER_OCC\": 10370, \"RENTER_OCC\": 2700 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.335439000035151, 42.226422999221747 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Danville\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"18563\", \"CAPITAL\": \"N\", \"AREALAND\": 17.003000, \"AREAWATER\": 0.095000, \"POP_CL\": 6, \"POP2000\": 33904, \"WHITE\": 23796, \"BLACK\": 8261, \"AMERI_ES\": 72, \"ASIAN\": 406, \"HAWN_PI\": 10, \"OTHER\": 708, \"MULT_RACE\": 651, \"HISPANIC\": 1549, \"MALES\": 16891, \"FEMALES\": 17013, \"AGE_UNDER5\": 2403, \"AGE_5_17\": 6027, \"AGE_18_21\": 1806, \"AGE_22_29\": 3806, \"AGE_30_39\": 4588, \"AGE_40_49\": 4713, \"AGE_50_64\": 4919, \"AGE_65_UP\": 5642, \"MED_AGE\": 36.600000, \"MED_AGE_M\": 33.900000, \"MED_AGE_F\": 39.500000, \"HOUSEHOLDS\": 13327, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 1730, \"HSEHLD_1_F\": 2784, \"MARHH_CHD\": 2160, \"MARHH_NO_C\": 3442, \"MHH_CHILD\": 324, \"FHH_CHILD\": 1281, \"FAMILIES\": 8155, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 14886, \"VACANT\": 1559, \"OWNER_OCC\": 8334, \"RENTER_OCC\": 4993 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.621507000120758, 40.139272998379504 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Darien\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"18628\", \"CAPITAL\": \"N\", \"AREALAND\": 6.043000, \"AREAWATER\": 0.073000, \"POP_CL\": 6, \"POP2000\": 22860, \"WHITE\": 19225, \"BLACK\": 451, \"AMERI_ES\": 26, \"ASIAN\": 2635, \"HAWN_PI\": 6, \"OTHER\": 222, \"MULT_RACE\": 295, \"HISPANIC\": 831, \"MALES\": 11215, \"FEMALES\": 11645, \"AGE_UNDER5\": 1239, \"AGE_5_17\": 4042, \"AGE_18_21\": 852, \"AGE_22_29\": 1824, \"AGE_30_39\": 3141, \"AGE_40_49\": 4120, \"AGE_50_64\": 4826, \"AGE_65_UP\": 2816, \"MED_AGE\": 40.800000, \"MED_AGE_M\": 39.600000, \"MED_AGE_F\": 41.700000, \"HOUSEHOLDS\": 8735, \"AVE_HH_SZ\": 2.610000, \"HSEHLD_1_M\": 779, \"HSEHLD_1_F\": 1180, \"MARHH_CHD\": 2383, \"MARHH_NO_C\": 3214, \"MHH_CHILD\": 75, \"FHH_CHILD\": 287, \"FAMILIES\": 6457, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 8929, \"VACANT\": 194, \"OWNER_OCC\": 7490, \"RENTER_OCC\": 1245 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.981087000111103, 41.745622998826484 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Decatur\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"18823\", \"CAPITAL\": \"N\", \"AREALAND\": 41.559000, \"AREAWATER\": 4.317000, \"POP_CL\": 7, \"POP2000\": 81860, \"WHITE\": 63519, \"BLACK\": 15940, \"AMERI_ES\": 141, \"ASIAN\": 540, \"HAWN_PI\": 15, \"OTHER\": 354, \"MULT_RACE\": 1351, \"HISPANIC\": 978, \"MALES\": 38303, \"FEMALES\": 43557, \"AGE_UNDER5\": 5479, \"AGE_5_17\": 14150, \"AGE_18_21\": 5738, \"AGE_22_29\": 8548, \"AGE_30_39\": 10185, \"AGE_40_49\": 11781, \"AGE_50_64\": 12580, \"AGE_65_UP\": 13399, \"MED_AGE\": 37.200000, \"MED_AGE_M\": 35.400000, \"MED_AGE_F\": 38.700000, \"HOUSEHOLDS\": 34086, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 4572, \"HSEHLD_1_F\": 6565, \"MARHH_CHD\": 5530, \"MARHH_NO_C\": 9491, \"MHH_CHILD\": 669, \"FHH_CHILD\": 3195, \"FAMILIES\": 21088, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 37239, \"VACANT\": 3153, \"OWNER_OCC\": 22623, \"RENTER_OCC\": 11463 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.944227999945326, 39.851635999702026 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Deerfield\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"18992\", \"CAPITAL\": \"N\", \"AREALAND\": 5.483000, \"AREAWATER\": 0.035000, \"POP_CL\": 6, \"POP2000\": 18420, \"WHITE\": 17662, \"BLACK\": 61, \"AMERI_ES\": 7, \"ASIAN\": 465, \"HAWN_PI\": 4, \"OTHER\": 79, \"MULT_RACE\": 142, \"HISPANIC\": 312, \"MALES\": 8893, \"FEMALES\": 9527, \"AGE_UNDER5\": 1479, \"AGE_5_17\": 4149, \"AGE_18_21\": 406, \"AGE_22_29\": 719, \"AGE_30_39\": 2600, \"AGE_40_49\": 3538, \"AGE_50_64\": 3127, \"AGE_65_UP\": 2402, \"MED_AGE\": 39.600000, \"MED_AGE_M\": 38.800000, \"MED_AGE_F\": 40.400000, \"HOUSEHOLDS\": 6420, \"AVE_HH_SZ\": 2.810000, \"HSEHLD_1_M\": 376, \"HSEHLD_1_F\": 764, \"MARHH_CHD\": 2558, \"MARHH_NO_C\": 2128, \"MHH_CHILD\": 44, \"FHH_CHILD\": 219, \"FAMILIES\": 5164, \"AVE_FAM_SZ\": 3.210000, \"HSE_UNITS\": 6518, \"VACANT\": 98, \"OWNER_OCC\": 5778, \"RENTER_OCC\": 642 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.851341000215257, 42.168274998605561 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"DeKalb\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"19161\", \"CAPITAL\": \"N\", \"AREALAND\": 12.611000, \"AREAWATER\": 0.008000, \"POP_CL\": 6, \"POP2000\": 39018, \"WHITE\": 31015, \"BLACK\": 3543, \"AMERI_ES\": 94, \"ASIAN\": 1804, \"HAWN_PI\": 49, \"OTHER\": 1696, \"MULT_RACE\": 817, \"HISPANIC\": 3527, \"MALES\": 19306, \"FEMALES\": 19712, \"AGE_UNDER5\": 2098, \"AGE_5_17\": 4514, \"AGE_18_21\": 10483, \"AGE_22_29\": 8042, \"AGE_30_39\": 4206, \"AGE_40_49\": 3500, \"AGE_50_64\": 3025, \"AGE_65_UP\": 3150, \"MED_AGE\": 23.100000, \"MED_AGE_M\": 23.200000, \"MED_AGE_F\": 23.000000, \"HOUSEHOLDS\": 13081, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 1771, \"HSEHLD_1_F\": 2101, \"MARHH_CHD\": 2301, \"MARHH_NO_C\": 2543, \"MHH_CHILD\": 232, \"FHH_CHILD\": 852, \"FAMILIES\": 6572, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 13619, \"VACANT\": 538, \"OWNER_OCC\": 5476, \"RENTER_OCC\": 7605 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.750150999981443, 41.93127399955857 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Des Plaines\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"19642\", \"CAPITAL\": \"N\", \"AREALAND\": 14.423000, \"AREAWATER\": 0.111000, \"POP_CL\": 7, \"POP2000\": 58720, \"WHITE\": 49586, \"BLACK\": 594, \"AMERI_ES\": 151, \"ASIAN\": 4492, \"HAWN_PI\": 13, \"OTHER\": 2726, \"MULT_RACE\": 1158, \"HISPANIC\": 8229, \"MALES\": 28392, \"FEMALES\": 30328, \"AGE_UNDER5\": 3451, \"AGE_5_17\": 9670, \"AGE_18_21\": 2401, \"AGE_22_29\": 5481, \"AGE_30_39\": 8664, \"AGE_40_49\": 9355, \"AGE_50_64\": 9593, \"AGE_65_UP\": 10105, \"MED_AGE\": 39.700000, \"MED_AGE_M\": 37.500000, \"MED_AGE_F\": 41.600000, \"HOUSEHOLDS\": 22362, \"AVE_HH_SZ\": 2.580000, \"HSEHLD_1_M\": 2481, \"HSEHLD_1_F\": 3882, \"MARHH_CHD\": 5442, \"MARHH_NO_C\": 6809, \"MHH_CHILD\": 278, \"FHH_CHILD\": 797, \"FAMILIES\": 15074, \"AVE_FAM_SZ\": 3.210000, \"HSE_UNITS\": 22851, \"VACANT\": 489, \"OWNER_OCC\": 17739, \"RENTER_OCC\": 4623 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.899786000174458, 42.033847998690291 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Dixon\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"20162\", \"CAPITAL\": \"N\", \"AREALAND\": 6.326000, \"AREAWATER\": 0.421000, \"POP_CL\": 6, \"POP2000\": 15941, \"WHITE\": 13762, \"BLACK\": 1671, \"AMERI_ES\": 22, \"ASIAN\": 130, \"HAWN_PI\": 8, \"OTHER\": 175, \"MULT_RACE\": 173, \"HISPANIC\": 685, \"MALES\": 8367, \"FEMALES\": 7574, \"AGE_UNDER5\": 836, \"AGE_5_17\": 2500, \"AGE_18_21\": 820, \"AGE_22_29\": 1841, \"AGE_30_39\": 2827, \"AGE_40_49\": 2635, \"AGE_50_64\": 2108, \"AGE_65_UP\": 2374, \"MED_AGE\": 37.000000, \"MED_AGE_M\": 36.000000, \"MED_AGE_F\": 38.800000, \"HOUSEHOLDS\": 5681, \"AVE_HH_SZ\": 2.320000, \"HSEHLD_1_M\": 756, \"HSEHLD_1_F\": 1097, \"MARHH_CHD\": 1114, \"MARHH_NO_C\": 1482, \"MHH_CHILD\": 141, \"FHH_CHILD\": 439, \"FAMILIES\": 3487, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 6138, \"VACANT\": 457, \"OWNER_OCC\": 3787, \"RENTER_OCC\": 1894 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.485114999982642, 41.846129999856402 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Dolton\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"20292\", \"CAPITAL\": \"N\", \"AREALAND\": 4.551000, \"AREAWATER\": 0.116000, \"POP_CL\": 6, \"POP2000\": 25614, \"WHITE\": 3671, \"BLACK\": 21098, \"AMERI_ES\": 44, \"ASIAN\": 144, \"HAWN_PI\": 4, \"OTHER\": 365, \"MULT_RACE\": 288, \"HISPANIC\": 791, \"MALES\": 11891, \"FEMALES\": 13723, \"AGE_UNDER5\": 1914, \"AGE_5_17\": 6275, \"AGE_18_21\": 1348, \"AGE_22_29\": 2151, \"AGE_30_39\": 3951, \"AGE_40_49\": 4314, \"AGE_50_64\": 3298, \"AGE_65_UP\": 2363, \"MED_AGE\": 33.300000, \"MED_AGE_M\": 29.800000, \"MED_AGE_F\": 35.500000, \"HOUSEHOLDS\": 8512, \"AVE_HH_SZ\": 2.980000, \"HSEHLD_1_M\": 657, \"HSEHLD_1_F\": 1114, \"MARHH_CHD\": 1983, \"MARHH_NO_C\": 1814, \"MHH_CHILD\": 247, \"FHH_CHILD\": 1314, \"FAMILIES\": 6494, \"AVE_FAM_SZ\": 3.420000, \"HSE_UNITS\": 8944, \"VACANT\": 432, \"OWNER_OCC\": 6946, \"RENTER_OCC\": 1566 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.598512000342822, 41.62750899819661 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Downers Grove\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"20591\", \"CAPITAL\": \"N\", \"AREALAND\": 14.246000, \"AREAWATER\": 0.010000, \"POP_CL\": 6, \"POP2000\": 48724, \"WHITE\": 43924, \"BLACK\": 936, \"AMERI_ES\": 55, \"ASIAN\": 2782, \"HAWN_PI\": 6, \"OTHER\": 488, \"MULT_RACE\": 533, \"HISPANIC\": 1747, \"MALES\": 23400, \"FEMALES\": 25324, \"AGE_UNDER5\": 3023, \"AGE_5_17\": 9038, \"AGE_18_21\": 1755, \"AGE_22_29\": 4124, \"AGE_30_39\": 7188, \"AGE_40_49\": 8773, \"AGE_50_64\": 7834, \"AGE_65_UP\": 6989, \"MED_AGE\": 39.100000, \"MED_AGE_M\": 37.200000, \"MED_AGE_F\": 40.600000, \"HOUSEHOLDS\": 18979, \"AVE_HH_SZ\": 2.530000, \"HSEHLD_1_M\": 1824, \"HSEHLD_1_F\": 3373, \"MARHH_CHD\": 5329, \"MARHH_NO_C\": 5886, \"MHH_CHILD\": 155, \"FHH_CHILD\": 621, \"FAMILIES\": 13017, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 19477, \"VACANT\": 498, \"OWNER_OCC\": 15029, \"RENTER_OCC\": 3950 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.014855000101008, 41.790729998869999 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"East Moline\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"22073\", \"CAPITAL\": \"N\", \"AREALAND\": 9.017000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 20333, \"WHITE\": 16274, \"BLACK\": 1493, \"AMERI_ES\": 71, \"ASIAN\": 458, \"HAWN_PI\": 1, \"OTHER\": 1519, \"MULT_RACE\": 517, \"HISPANIC\": 3081, \"MALES\": 9709, \"FEMALES\": 10624, \"AGE_UNDER5\": 1432, \"AGE_5_17\": 3594, \"AGE_18_21\": 1119, \"AGE_22_29\": 2097, \"AGE_30_39\": 2668, \"AGE_40_49\": 2843, \"AGE_50_64\": 3119, \"AGE_65_UP\": 3461, \"MED_AGE\": 37.400000, \"MED_AGE_M\": 35.100000, \"MED_AGE_F\": 39.500000, \"HOUSEHOLDS\": 8510, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 1084, \"HSEHLD_1_F\": 1649, \"MARHH_CHD\": 1511, \"MARHH_NO_C\": 2324, \"MHH_CHILD\": 191, \"FHH_CHILD\": 807, \"FAMILIES\": 5368, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 8988, \"VACANT\": 478, \"OWNER_OCC\": 5503, \"RENTER_OCC\": 3007 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.435202999996704, 41.511939999975723 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"East Peoria\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"22164\", \"CAPITAL\": \"N\", \"AREALAND\": 18.812000, \"AREAWATER\": 2.215000, \"POP_CL\": 6, \"POP2000\": 22638, \"WHITE\": 22031, \"BLACK\": 106, \"AMERI_ES\": 55, \"ASIAN\": 150, \"HAWN_PI\": 2, \"OTHER\": 100, \"MULT_RACE\": 194, \"HISPANIC\": 293, \"MALES\": 10921, \"FEMALES\": 11717, \"AGE_UNDER5\": 1299, \"AGE_5_17\": 3768, \"AGE_18_21\": 1026, \"AGE_22_29\": 2084, \"AGE_30_39\": 3244, \"AGE_40_49\": 3445, \"AGE_50_64\": 3864, \"AGE_65_UP\": 3908, \"MED_AGE\": 39.700000, \"MED_AGE_M\": 38.300000, \"MED_AGE_F\": 41.100000, \"HOUSEHOLDS\": 9478, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 1085, \"HSEHLD_1_F\": 1586, \"MARHH_CHD\": 1924, \"MARHH_NO_C\": 3256, \"MHH_CHILD\": 183, \"FHH_CHILD\": 553, \"FAMILIES\": 6396, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 9938, \"VACANT\": 460, \"OWNER_OCC\": 6919, \"RENTER_OCC\": 2559 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.545532999978334, 40.669074999878497 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"East St. Louis\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"22255\", \"CAPITAL\": \"N\", \"AREALAND\": 14.063000, \"AREAWATER\": 0.367000, \"POP_CL\": 6, \"POP2000\": 31542, \"WHITE\": 387, \"BLACK\": 30829, \"AMERI_ES\": 59, \"ASIAN\": 24, \"HAWN_PI\": 9, \"OTHER\": 59, \"MULT_RACE\": 175, \"HISPANIC\": 230, \"MALES\": 14166, \"FEMALES\": 17376, \"AGE_UNDER5\": 2709, \"AGE_5_17\": 7637, \"AGE_18_21\": 1825, \"AGE_22_29\": 3154, \"AGE_30_39\": 3782, \"AGE_40_49\": 4001, \"AGE_50_64\": 4477, \"AGE_65_UP\": 3957, \"MED_AGE\": 31.200000, \"MED_AGE_M\": 28.000000, \"MED_AGE_F\": 33.800000, \"HOUSEHOLDS\": 11178, \"AVE_HH_SZ\": 2.800000, \"HSEHLD_1_M\": 1322, \"HSEHLD_1_F\": 1784, \"MARHH_CHD\": 851, \"MARHH_NO_C\": 1599, \"MHH_CHILD\": 257, \"FHH_CHILD\": 2608, \"FAMILIES\": 7664, \"AVE_FAM_SZ\": 3.420000, \"HSE_UNITS\": 12899, \"VACANT\": 1721, \"OWNER_OCC\": 5913, \"RENTER_OCC\": 5265 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.127824999989812, 38.615549999963349 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Edwardsville\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"22697\", \"CAPITAL\": \"N\", \"AREALAND\": 13.872000, \"AREAWATER\": 0.218000, \"POP_CL\": 6, \"POP2000\": 21491, \"WHITE\": 18847, \"BLACK\": 1861, \"AMERI_ES\": 60, \"ASIAN\": 364, \"HAWN_PI\": 6, \"OTHER\": 62, \"MULT_RACE\": 291, \"HISPANIC\": 215, \"MALES\": 10031, \"FEMALES\": 11460, \"AGE_UNDER5\": 1256, \"AGE_5_17\": 3609, \"AGE_18_21\": 2002, \"AGE_22_29\": 2880, \"AGE_30_39\": 3193, \"AGE_40_49\": 3157, \"AGE_50_64\": 2876, \"AGE_65_UP\": 2518, \"MED_AGE\": 33.400000, \"MED_AGE_M\": 33.100000, \"MED_AGE_F\": 33.600000, \"HOUSEHOLDS\": 7975, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 841, \"HSEHLD_1_F\": 1224, \"MARHH_CHD\": 2025, \"MARHH_NO_C\": 2151, \"MHH_CHILD\": 122, \"FHH_CHILD\": 469, \"FAMILIES\": 5203, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 8331, \"VACANT\": 356, \"OWNER_OCC\": 5625, \"RENTER_OCC\": 2350 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.958194999985793, 38.803985999948473 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Effingham\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"22736\", \"CAPITAL\": \"N\", \"AREALAND\": 8.667000, \"AREAWATER\": 0.058000, \"POP_CL\": 6, \"POP2000\": 12384, \"WHITE\": 12110, \"BLACK\": 44, \"AMERI_ES\": 24, \"ASIAN\": 73, \"HAWN_PI\": 0, \"OTHER\": 47, \"MULT_RACE\": 86, \"HISPANIC\": 129, \"MALES\": 5842, \"FEMALES\": 6542, \"AGE_UNDER5\": 878, \"AGE_5_17\": 2209, \"AGE_18_21\": 643, \"AGE_22_29\": 1256, \"AGE_30_39\": 1697, \"AGE_40_49\": 1720, \"AGE_50_64\": 1738, \"AGE_65_UP\": 2243, \"MED_AGE\": 37.500000, \"MED_AGE_M\": 35.200000, \"MED_AGE_F\": 39.500000, \"HOUSEHOLDS\": 5330, \"AVE_HH_SZ\": 2.250000, \"HSEHLD_1_M\": 738, \"HSEHLD_1_F\": 1186, \"MARHH_CHD\": 1076, \"MARHH_NO_C\": 1324, \"MHH_CHILD\": 99, \"FHH_CHILD\": 417, \"FAMILIES\": 3185, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 5660, \"VACANT\": 330, \"OWNER_OCC\": 3360, \"RENTER_OCC\": 1970 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.545908999907027, 39.120902999503379 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Elgin\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"23074\", \"CAPITAL\": \"N\", \"AREALAND\": 25.002000, \"AREAWATER\": 0.386000, \"POP_CL\": 7, \"POP2000\": 94487, \"WHITE\": 66600, \"BLACK\": 6427, \"AMERI_ES\": 382, \"ASIAN\": 3668, \"HAWN_PI\": 58, \"OTHER\": 14537, \"MULT_RACE\": 2815, \"HISPANIC\": 32430, \"MALES\": 47213, \"FEMALES\": 47274, \"AGE_UNDER5\": 8711, \"AGE_5_17\": 18713, \"AGE_18_21\": 5606, \"AGE_22_29\": 12623, \"AGE_30_39\": 16425, \"AGE_40_49\": 13283, \"AGE_50_64\": 11037, \"AGE_65_UP\": 8089, \"MED_AGE\": 30.900000, \"MED_AGE_M\": 30.200000, \"MED_AGE_F\": 31.600000, \"HOUSEHOLDS\": 31543, \"AVE_HH_SZ\": 2.940000, \"HSEHLD_1_M\": 3164, \"HSEHLD_1_F\": 4201, \"MARHH_CHD\": 9541, \"MARHH_NO_C\": 7668, \"MHH_CHILD\": 730, \"FHH_CHILD\": 2219, \"FAMILIES\": 22399, \"AVE_FAM_SZ\": 3.490000, \"HSE_UNITS\": 32665, \"VACANT\": 1122, \"OWNER_OCC\": 22144, \"RENTER_OCC\": 9399 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.288627000035973, 42.03942599918178 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Elk Grove Village\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"23256\", \"CAPITAL\": \"N\", \"AREALAND\": 11.039000, \"AREAWATER\": 0.061000, \"POP_CL\": 6, \"POP2000\": 34727, \"WHITE\": 29874, \"BLACK\": 490, \"AMERI_ES\": 33, \"ASIAN\": 3051, \"HAWN_PI\": 15, \"OTHER\": 797, \"MULT_RACE\": 467, \"HISPANIC\": 2165, \"MALES\": 16918, \"FEMALES\": 17809, \"AGE_UNDER5\": 2076, \"AGE_5_17\": 6559, \"AGE_18_21\": 1379, \"AGE_22_29\": 3249, \"AGE_30_39\": 5618, \"AGE_40_49\": 6268, \"AGE_50_64\": 5492, \"AGE_65_UP\": 4086, \"MED_AGE\": 37.700000, \"MED_AGE_M\": 36.400000, \"MED_AGE_F\": 38.900000, \"HOUSEHOLDS\": 13278, \"AVE_HH_SZ\": 2.600000, \"HSEHLD_1_M\": 1341, \"HSEHLD_1_F\": 2052, \"MARHH_CHD\": 3736, \"MARHH_NO_C\": 4012, \"MHH_CHILD\": 163, \"FHH_CHILD\": 548, \"FAMILIES\": 9294, \"AVE_FAM_SZ\": 3.170000, \"HSE_UNITS\": 13513, \"VACANT\": 235, \"OWNER_OCC\": 10178, \"RENTER_OCC\": 3100 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.99641800012499, 42.003177998832598 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Elmhurst\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"23620\", \"CAPITAL\": \"N\", \"AREALAND\": 10.265000, \"AREAWATER\": 0.004000, \"POP_CL\": 6, \"POP2000\": 42762, \"WHITE\": 39940, \"BLACK\": 400, \"AMERI_ES\": 24, \"ASIAN\": 1568, \"HAWN_PI\": 8, \"OTHER\": 416, \"MULT_RACE\": 406, \"HISPANIC\": 1717, \"MALES\": 20553, \"FEMALES\": 22209, \"AGE_UNDER5\": 3002, \"AGE_5_17\": 7939, \"AGE_18_21\": 1863, \"AGE_22_29\": 3132, \"AGE_30_39\": 6443, \"AGE_40_49\": 6951, \"AGE_50_64\": 6608, \"AGE_65_UP\": 6824, \"MED_AGE\": 38.700000, \"MED_AGE_M\": 37.300000, \"MED_AGE_F\": 40.100000, \"HOUSEHOLDS\": 15627, \"AVE_HH_SZ\": 2.630000, \"HSEHLD_1_M\": 1428, \"HSEHLD_1_F\": 2422, \"MARHH_CHD\": 4687, \"MARHH_NO_C\": 5006, \"MHH_CHILD\": 127, \"FHH_CHILD\": 489, \"FAMILIES\": 11233, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 16147, \"VACANT\": 520, \"OWNER_OCC\": 13017, \"RENTER_OCC\": 2610 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.943762000139742, 41.892279998764607 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Elmwood Park\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"23724\", \"CAPITAL\": \"N\", \"AREALAND\": 1.906000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 25405, \"WHITE\": 23255, \"BLACK\": 132, \"AMERI_ES\": 45, \"ASIAN\": 530, \"HAWN_PI\": 7, \"OTHER\": 842, \"MULT_RACE\": 594, \"HISPANIC\": 2798, \"MALES\": 12081, \"FEMALES\": 13324, \"AGE_UNDER5\": 1451, \"AGE_5_17\": 4120, \"AGE_18_21\": 1184, \"AGE_22_29\": 2541, \"AGE_30_39\": 4010, \"AGE_40_49\": 3887, \"AGE_50_64\": 3993, \"AGE_65_UP\": 4219, \"MED_AGE\": 38.600000, \"MED_AGE_M\": 36.900000, \"MED_AGE_F\": 40.300000, \"HOUSEHOLDS\": 9858, \"AVE_HH_SZ\": 2.550000, \"HSEHLD_1_M\": 1100, \"HSEHLD_1_F\": 1774, \"MARHH_CHD\": 2256, \"MARHH_NO_C\": 2637, \"MHH_CHILD\": 142, \"FHH_CHILD\": 513, \"FAMILIES\": 6530, \"AVE_FAM_SZ\": 3.200000, \"HSE_UNITS\": 10150, \"VACANT\": 292, \"OWNER_OCC\": 6469, \"RENTER_OCC\": 3389 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.815434000212917, 41.922480998564389 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Evanston\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"24582\", \"CAPITAL\": \"N\", \"AREALAND\": 7.746000, \"AREAWATER\": 0.023000, \"POP_CL\": 7, \"POP2000\": 74239, \"WHITE\": 48429, \"BLACK\": 16704, \"AMERI_ES\": 140, \"ASIAN\": 4524, \"HAWN_PI\": 64, \"OTHER\": 2116, \"MULT_RACE\": 2262, \"HISPANIC\": 4539, \"MALES\": 34967, \"FEMALES\": 39272, \"AGE_UNDER5\": 4315, \"AGE_5_17\": 10686, \"AGE_18_21\": 8589, \"AGE_22_29\": 10205, \"AGE_30_39\": 11736, \"AGE_40_49\": 10404, \"AGE_50_64\": 10290, \"AGE_65_UP\": 8014, \"MED_AGE\": 32.500000, \"MED_AGE_M\": 31.000000, \"MED_AGE_F\": 34.100000, \"HOUSEHOLDS\": 29651, \"AVE_HH_SZ\": 2.270000, \"HSEHLD_1_M\": 4230, \"HSEHLD_1_F\": 6522, \"MARHH_CHD\": 5340, \"MARHH_NO_C\": 6647, \"MHH_CHILD\": 343, \"FHH_CHILD\": 1851, \"FAMILIES\": 15963, \"AVE_FAM_SZ\": 3.030000, \"HSE_UNITS\": 30817, \"VACANT\": 1166, \"OWNER_OCC\": 15612, \"RENTER_OCC\": 14039 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.694608000314759, 42.046379998344108 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Evergreen Park\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"24634\", \"CAPITAL\": \"N\", \"AREALAND\": 3.174000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 20821, \"WHITE\": 18388, \"BLACK\": 1644, \"AMERI_ES\": 29, \"ASIAN\": 257, \"HAWN_PI\": 3, \"OTHER\": 258, \"MULT_RACE\": 242, \"HISPANIC\": 831, \"MALES\": 9867, \"FEMALES\": 10954, \"AGE_UNDER5\": 1410, \"AGE_5_17\": 4343, \"AGE_18_21\": 902, \"AGE_22_29\": 1605, \"AGE_30_39\": 3095, \"AGE_40_49\": 3398, \"AGE_50_64\": 2416, \"AGE_65_UP\": 3652, \"MED_AGE\": 37.300000, \"MED_AGE_M\": 35.500000, \"MED_AGE_F\": 39.000000, \"HOUSEHOLDS\": 7471, \"AVE_HH_SZ\": 2.730000, \"HSEHLD_1_M\": 709, \"HSEHLD_1_F\": 1257, \"MARHH_CHD\": 2108, \"MARHH_NO_C\": 1951, \"MHH_CHILD\": 94, \"FHH_CHILD\": 424, \"FAMILIES\": 5303, \"AVE_FAM_SZ\": 3.350000, \"HSE_UNITS\": 7617, \"VACANT\": 146, \"OWNER_OCC\": 6381, \"RENTER_OCC\": 1090 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.70249900026829, 41.719932998385261 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fairview Heights\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"25141\", \"CAPITAL\": \"N\", \"AREALAND\": 11.148000, \"AREAWATER\": 0.065000, \"POP_CL\": 6, \"POP2000\": 15034, \"WHITE\": 11787, \"BLACK\": 2567, \"AMERI_ES\": 25, \"ASIAN\": 321, \"HAWN_PI\": 1, \"OTHER\": 109, \"MULT_RACE\": 224, \"HISPANIC\": 289, \"MALES\": 7234, \"FEMALES\": 7800, \"AGE_UNDER5\": 854, \"AGE_5_17\": 2658, \"AGE_18_21\": 636, \"AGE_22_29\": 1337, \"AGE_30_39\": 2239, \"AGE_40_49\": 2454, \"AGE_50_64\": 2390, \"AGE_65_UP\": 2466, \"MED_AGE\": 39.200000, \"MED_AGE_M\": 37.800000, \"MED_AGE_F\": 40.500000, \"HOUSEHOLDS\": 6026, \"AVE_HH_SZ\": 2.480000, \"HSEHLD_1_M\": 667, \"HSEHLD_1_F\": 936, \"MARHH_CHD\": 1337, \"MARHH_NO_C\": 2001, \"MHH_CHILD\": 104, \"FHH_CHILD\": 322, \"FAMILIES\": 4208, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 6310, \"VACANT\": 284, \"OWNER_OCC\": 4636, \"RENTER_OCC\": 1390 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.996648999986505, 38.593898999952806 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Forest Park\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"26935\", \"CAPITAL\": \"N\", \"AREALAND\": 2.421000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 15688, \"WHITE\": 8808, \"BLACK\": 4892, \"AMERI_ES\": 23, \"ASIAN\": 1071, \"HAWN_PI\": 11, \"OTHER\": 440, \"MULT_RACE\": 443, \"HISPANIC\": 1230, \"MALES\": 7441, \"FEMALES\": 8247, \"AGE_UNDER5\": 1036, \"AGE_5_17\": 2064, \"AGE_18_21\": 555, \"AGE_22_29\": 2283, \"AGE_30_39\": 3278, \"AGE_40_49\": 2509, \"AGE_50_64\": 2047, \"AGE_65_UP\": 1916, \"MED_AGE\": 35.700000, \"MED_AGE_M\": 34.700000, \"MED_AGE_F\": 36.700000, \"HOUSEHOLDS\": 7632, \"AVE_HH_SZ\": 2.030000, \"HSEHLD_1_M\": 1585, \"HSEHLD_1_F\": 1874, \"MARHH_CHD\": 1008, \"MARHH_NO_C\": 1196, \"MHH_CHILD\": 122, \"FHH_CHILD\": 539, \"FAMILIES\": 3477, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 7981, \"VACANT\": 349, \"OWNER_OCC\": 3420, \"RENTER_OCC\": 4212 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.811155000210476, 41.8730309985609 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Frankfort\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"27624\", \"CAPITAL\": \"N\", \"AREALAND\": 10.907000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10391, \"WHITE\": 9753, \"BLACK\": 258, \"AMERI_ES\": 18, \"ASIAN\": 221, \"HAWN_PI\": 0, \"OTHER\": 64, \"MULT_RACE\": 77, \"HISPANIC\": 240, \"MALES\": 5040, \"FEMALES\": 5351, \"AGE_UNDER5\": 590, \"AGE_5_17\": 2390, \"AGE_18_21\": 385, \"AGE_22_29\": 570, \"AGE_30_39\": 1279, \"AGE_40_49\": 1950, \"AGE_50_64\": 2163, \"AGE_65_UP\": 1064, \"MED_AGE\": 39.900000, \"MED_AGE_M\": 39.200000, \"MED_AGE_F\": 40.400000, \"HOUSEHOLDS\": 3418, \"AVE_HH_SZ\": 2.980000, \"HSEHLD_1_M\": 156, \"HSEHLD_1_F\": 263, \"MARHH_CHD\": 1297, \"MARHH_NO_C\": 1357, \"MHH_CHILD\": 35, \"FHH_CHILD\": 130, \"FAMILIES\": 2943, \"AVE_FAM_SZ\": 3.260000, \"HSE_UNITS\": 3580, \"VACANT\": 162, \"OWNER_OCC\": 3148, \"RENTER_OCC\": 270 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.84954900015066, 41.498132998649062 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Franklin Park\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"27702\", \"CAPITAL\": \"N\", \"AREALAND\": 4.658000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 19434, \"WHITE\": 15401, \"BLACK\": 147, \"AMERI_ES\": 57, \"ASIAN\": 481, \"HAWN_PI\": 9, \"OTHER\": 2840, \"MULT_RACE\": 499, \"HISPANIC\": 7399, \"MALES\": 9735, \"FEMALES\": 9699, \"AGE_UNDER5\": 1395, \"AGE_5_17\": 3672, \"AGE_18_21\": 1125, \"AGE_22_29\": 2355, \"AGE_30_39\": 2937, \"AGE_40_49\": 2778, \"AGE_50_64\": 2582, \"AGE_65_UP\": 2590, \"MED_AGE\": 33.900000, \"MED_AGE_M\": 32.300000, \"MED_AGE_F\": 35.700000, \"HOUSEHOLDS\": 6484, \"AVE_HH_SZ\": 2.970000, \"HSEHLD_1_M\": 603, \"HSEHLD_1_F\": 839, \"MARHH_CHD\": 1934, \"MARHH_NO_C\": 1765, \"MHH_CHILD\": 117, \"FHH_CHILD\": 309, \"FAMILIES\": 4763, \"AVE_FAM_SZ\": 3.520000, \"HSE_UNITS\": 6641, \"VACANT\": 157, \"OWNER_OCC\": 4762, \"RENTER_OCC\": 1722 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.873462000179615, 41.933779998656355 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Freeport\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"27884\", \"CAPITAL\": \"N\", \"AREALAND\": 11.413000, \"AREAWATER\": 0.010000, \"POP_CL\": 6, \"POP2000\": 26443, \"WHITE\": 21623, \"BLACK\": 3651, \"AMERI_ES\": 51, \"ASIAN\": 257, \"HAWN_PI\": 10, \"OTHER\": 265, \"MULT_RACE\": 586, \"HISPANIC\": 561, \"MALES\": 12310, \"FEMALES\": 14133, \"AGE_UNDER5\": 1757, \"AGE_5_17\": 4717, \"AGE_18_21\": 1332, \"AGE_22_29\": 2552, \"AGE_30_39\": 3707, \"AGE_40_49\": 3796, \"AGE_50_64\": 3801, \"AGE_65_UP\": 4781, \"MED_AGE\": 37.900000, \"MED_AGE_M\": 36.000000, \"MED_AGE_F\": 39.600000, \"HOUSEHOLDS\": 11222, \"AVE_HH_SZ\": 2.290000, \"HSEHLD_1_M\": 1424, \"HSEHLD_1_F\": 2361, \"MARHH_CHD\": 2000, \"MARHH_NO_C\": 3059, \"MHH_CHILD\": 217, \"FHH_CHILD\": 969, \"FAMILIES\": 6849, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 12471, \"VACANT\": 1249, \"OWNER_OCC\": 7656, \"RENTER_OCC\": 3566 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.630376999987334, 42.292002999884964 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Gages Lake\", \"CLASS\": \"CDP\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"28248\", \"CAPITAL\": \"N\", \"AREALAND\": 3.087000, \"AREAWATER\": 0.219000, \"POP_CL\": 6, \"POP2000\": 10415, \"WHITE\": 9574, \"BLACK\": 210, \"AMERI_ES\": 28, \"ASIAN\": 325, \"HAWN_PI\": 1, \"OTHER\": 148, \"MULT_RACE\": 129, \"HISPANIC\": 436, \"MALES\": 5162, \"FEMALES\": 5253, \"AGE_UNDER5\": 814, \"AGE_5_17\": 2334, \"AGE_18_21\": 385, \"AGE_22_29\": 750, \"AGE_30_39\": 2043, \"AGE_40_49\": 1974, \"AGE_50_64\": 1421, \"AGE_65_UP\": 694, \"MED_AGE\": 35.300000, \"MED_AGE_M\": 34.700000, \"MED_AGE_F\": 35.900000, \"HOUSEHOLDS\": 3725, \"AVE_HH_SZ\": 2.790000, \"HSEHLD_1_M\": 310, \"HSEHLD_1_F\": 439, \"MARHH_CHD\": 1333, \"MARHH_NO_C\": 1027, \"MHH_CHILD\": 67, \"FHH_CHILD\": 202, \"FAMILIES\": 2794, \"AVE_FAM_SZ\": 3.260000, \"HSE_UNITS\": 3829, \"VACANT\": 104, \"OWNER_OCC\": 3240, \"RENTER_OCC\": 485 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.989401000155695, 42.351270998802697 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Galesburg\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"28326\", \"CAPITAL\": \"N\", \"AREALAND\": 16.896000, \"AREAWATER\": 0.178000, \"POP_CL\": 6, \"POP2000\": 33706, \"WHITE\": 28390, \"BLACK\": 3437, \"AMERI_ES\": 74, \"ASIAN\": 346, \"HAWN_PI\": 8, \"OTHER\": 830, \"MULT_RACE\": 621, \"HISPANIC\": 1688, \"MALES\": 16882, \"FEMALES\": 16824, \"AGE_UNDER5\": 1925, \"AGE_5_17\": 5201, \"AGE_18_21\": 2471, \"AGE_22_29\": 3758, \"AGE_30_39\": 4448, \"AGE_40_49\": 4865, \"AGE_50_64\": 4945, \"AGE_65_UP\": 6093, \"MED_AGE\": 38.100000, \"MED_AGE_M\": 35.500000, \"MED_AGE_F\": 41.100000, \"HOUSEHOLDS\": 13237, \"AVE_HH_SZ\": 2.240000, \"HSEHLD_1_M\": 1768, \"HSEHLD_1_F\": 2807, \"MARHH_CHD\": 2119, \"MARHH_NO_C\": 3658, \"MHH_CHILD\": 265, \"FHH_CHILD\": 1098, \"FAMILIES\": 7896, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 14133, \"VACANT\": 896, \"OWNER_OCC\": 8511, \"RENTER_OCC\": 4726 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.368544999995734, 40.952291999973291 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Geneva\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"28872\", \"CAPITAL\": \"N\", \"AREALAND\": 8.406000, \"AREAWATER\": 0.176000, \"POP_CL\": 6, \"POP2000\": 19515, \"WHITE\": 18832, \"BLACK\": 199, \"AMERI_ES\": 11, \"ASIAN\": 244, \"HAWN_PI\": 5, \"OTHER\": 114, \"MULT_RACE\": 110, \"HISPANIC\": 541, \"MALES\": 9755, \"FEMALES\": 9760, \"AGE_UNDER5\": 1487, \"AGE_5_17\": 4727, \"AGE_18_21\": 669, \"AGE_22_29\": 1177, \"AGE_30_39\": 3256, \"AGE_40_49\": 3782, \"AGE_50_64\": 2685, \"AGE_65_UP\": 1732, \"MED_AGE\": 36.200000, \"MED_AGE_M\": 35.200000, \"MED_AGE_F\": 36.900000, \"HOUSEHOLDS\": 6718, \"AVE_HH_SZ\": 2.850000, \"HSEHLD_1_M\": 553, \"HSEHLD_1_F\": 738, \"MARHH_CHD\": 2675, \"MARHH_NO_C\": 1892, \"MHH_CHILD\": 89, \"FHH_CHILD\": 274, \"FAMILIES\": 5185, \"AVE_FAM_SZ\": 3.310000, \"HSE_UNITS\": 6895, \"VACANT\": 177, \"OWNER_OCC\": 5643, \"RENTER_OCC\": 1075 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.311771000023938, 41.885721999211448 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Glen Carbon\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"29639\", \"CAPITAL\": \"N\", \"AREALAND\": 7.417000, \"AREAWATER\": 0.043000, \"POP_CL\": 6, \"POP2000\": 10425, \"WHITE\": 9288, \"BLACK\": 726, \"AMERI_ES\": 21, \"ASIAN\": 221, \"HAWN_PI\": 4, \"OTHER\": 43, \"MULT_RACE\": 122, \"HISPANIC\": 156, \"MALES\": 5064, \"FEMALES\": 5361, \"AGE_UNDER5\": 681, \"AGE_5_17\": 1957, \"AGE_18_21\": 556, \"AGE_22_29\": 1214, \"AGE_30_39\": 1542, \"AGE_40_49\": 1731, \"AGE_50_64\": 1598, \"AGE_65_UP\": 1146, \"MED_AGE\": 35.600000, \"MED_AGE_M\": 34.600000, \"MED_AGE_F\": 36.600000, \"HOUSEHOLDS\": 4011, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 372, \"HSEHLD_1_F\": 513, \"MARHH_CHD\": 1145, \"MARHH_NO_C\": 1247, \"MHH_CHILD\": 63, \"FHH_CHILD\": 193, \"FAMILIES\": 2814, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 4236, \"VACANT\": 225, \"OWNER_OCC\": 2964, \"RENTER_OCC\": 1047 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.969203999986021, 38.759800999949682 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Glendale Heights\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"29730\", \"CAPITAL\": \"N\", \"AREALAND\": 5.404000, \"AREAWATER\": 0.003000, \"POP_CL\": 6, \"POP2000\": 31765, \"WHITE\": 20263, \"BLACK\": 1537, \"AMERI_ES\": 95, \"ASIAN\": 6345, \"HAWN_PI\": 25, \"OTHER\": 2576, \"MULT_RACE\": 924, \"HISPANIC\": 5842, \"MALES\": 16210, \"FEMALES\": 15555, \"AGE_UNDER5\": 2528, \"AGE_5_17\": 6004, \"AGE_18_21\": 1967, \"AGE_22_29\": 5017, \"AGE_30_39\": 5865, \"AGE_40_49\": 4649, \"AGE_50_64\": 4151, \"AGE_65_UP\": 1584, \"MED_AGE\": 30.500000, \"MED_AGE_M\": 29.900000, \"MED_AGE_F\": 31.100000, \"HOUSEHOLDS\": 10791, \"AVE_HH_SZ\": 2.940000, \"HSEHLD_1_M\": 1319, \"HSEHLD_1_F\": 1144, \"MARHH_CHD\": 3334, \"MARHH_NO_C\": 2658, \"MHH_CHILD\": 215, \"FHH_CHILD\": 573, \"FAMILIES\": 7595, \"AVE_FAM_SZ\": 3.540000, \"HSE_UNITS\": 11105, \"VACANT\": 314, \"OWNER_OCC\": 7569, \"RENTER_OCC\": 3222 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.078918000086787, 41.92022799894665 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Glen Ellyn\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"29756\", \"CAPITAL\": \"N\", \"AREALAND\": 6.616000, \"AREAWATER\": 0.021000, \"POP_CL\": 6, \"POP2000\": 26999, \"WHITE\": 24163, \"BLACK\": 575, \"AMERI_ES\": 39, \"ASIAN\": 1280, \"HAWN_PI\": 2, \"OTHER\": 493, \"MULT_RACE\": 447, \"HISPANIC\": 1275, \"MALES\": 13178, \"FEMALES\": 13821, \"AGE_UNDER5\": 2118, \"AGE_5_17\": 5539, \"AGE_18_21\": 948, \"AGE_22_29\": 2065, \"AGE_30_39\": 4350, \"AGE_40_49\": 4626, \"AGE_50_64\": 4278, \"AGE_65_UP\": 3075, \"MED_AGE\": 37.000000, \"MED_AGE_M\": 35.700000, \"MED_AGE_F\": 38.100000, \"HOUSEHOLDS\": 10207, \"AVE_HH_SZ\": 2.630000, \"HSEHLD_1_M\": 938, \"HSEHLD_1_F\": 1637, \"MARHH_CHD\": 3285, \"MARHH_NO_C\": 2945, \"MHH_CHILD\": 98, \"FHH_CHILD\": 364, \"FAMILIES\": 7195, \"AVE_FAM_SZ\": 3.210000, \"HSE_UNITS\": 10515, \"VACANT\": 308, \"OWNER_OCC\": 7905, \"RENTER_OCC\": 2302 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.063011000088963, 41.870978998928933 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Glenview\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"29938\", \"CAPITAL\": \"N\", \"AREALAND\": 13.450000, \"AREAWATER\": 0.041000, \"POP_CL\": 6, \"POP2000\": 41847, \"WHITE\": 35817, \"BLACK\": 665, \"AMERI_ES\": 41, \"ASIAN\": 4207, \"HAWN_PI\": 7, \"OTHER\": 532, \"MULT_RACE\": 578, \"HISPANIC\": 1702, \"MALES\": 20104, \"FEMALES\": 21743, \"AGE_UNDER5\": 2709, \"AGE_5_17\": 8001, \"AGE_18_21\": 1279, \"AGE_22_29\": 2608, \"AGE_30_39\": 5388, \"AGE_40_49\": 7053, \"AGE_50_64\": 8127, \"AGE_65_UP\": 6682, \"MED_AGE\": 41.300000, \"MED_AGE_M\": 40.000000, \"MED_AGE_F\": 42.500000, \"HOUSEHOLDS\": 15464, \"AVE_HH_SZ\": 2.670000, \"HSEHLD_1_M\": 1002, \"HSEHLD_1_F\": 2203, \"MARHH_CHD\": 4864, \"MARHH_NO_C\": 5632, \"MHH_CHILD\": 115, \"FHH_CHILD\": 527, \"FAMILIES\": 11879, \"AVE_FAM_SZ\": 3.110000, \"HSE_UNITS\": 15853, \"VACANT\": 389, \"OWNER_OCC\": 13603, \"RENTER_OCC\": 1861 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.815622000229055, 42.0793909985535 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Godfrey\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"30094\", \"CAPITAL\": \"N\", \"AREALAND\": 34.481000, \"AREAWATER\": 1.686000, \"POP_CL\": 6, \"POP2000\": 16286, \"WHITE\": 15319, \"BLACK\": 658, \"AMERI_ES\": 51, \"ASIAN\": 106, \"HAWN_PI\": 1, \"OTHER\": 31, \"MULT_RACE\": 120, \"HISPANIC\": 159, \"MALES\": 7958, \"FEMALES\": 8328, \"AGE_UNDER5\": 934, \"AGE_5_17\": 2753, \"AGE_18_21\": 610, \"AGE_22_29\": 1207, \"AGE_30_39\": 2200, \"AGE_40_49\": 2669, \"AGE_50_64\": 3016, \"AGE_65_UP\": 2897, \"MED_AGE\": 41.700000, \"MED_AGE_M\": 40.500000, \"MED_AGE_F\": 42.700000, \"HOUSEHOLDS\": 6427, \"AVE_HH_SZ\": 2.460000, \"HSEHLD_1_M\": 564, \"HSEHLD_1_F\": 932, \"MARHH_CHD\": 1528, \"MARHH_NO_C\": 2467, \"MHH_CHILD\": 98, \"FHH_CHILD\": 284, \"FAMILIES\": 4696, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 6694, \"VACANT\": 267, \"OWNER_OCC\": 5489, \"RENTER_OCC\": 938 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.202885999991722, 38.948096999967632 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Goodings Grove\", \"CLASS\": \"CDP\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"30471\", \"CAPITAL\": \"N\", \"AREALAND\": 9.420000, \"AREAWATER\": 0.009000, \"POP_CL\": 6, \"POP2000\": 17084, \"WHITE\": 16484, \"BLACK\": 35, \"AMERI_ES\": 2, \"ASIAN\": 297, \"HAWN_PI\": 0, \"OTHER\": 100, \"MULT_RACE\": 166, \"HISPANIC\": 601, \"MALES\": 8558, \"FEMALES\": 8526, \"AGE_UNDER5\": 1123, \"AGE_5_17\": 4183, \"AGE_18_21\": 849, \"AGE_22_29\": 1139, \"AGE_30_39\": 2411, \"AGE_40_49\": 3456, \"AGE_50_64\": 2940, \"AGE_65_UP\": 983, \"MED_AGE\": 36.100000, \"MED_AGE_M\": 35.500000, \"MED_AGE_F\": 36.600000, \"HOUSEHOLDS\": 5109, \"AVE_HH_SZ\": 3.340000, \"HSEHLD_1_M\": 167, \"HSEHLD_1_F\": 207, \"MARHH_CHD\": 2366, \"MARHH_NO_C\": 1931, \"MHH_CHILD\": 45, \"FHH_CHILD\": 125, \"FAMILIES\": 4647, \"AVE_FAM_SZ\": 3.530000, \"HSE_UNITS\": 5183, \"VACANT\": 74, \"OWNER_OCC\": 5001, \"RENTER_OCC\": 108 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.940460000118634, 41.626163998776477 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Granite City\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"30926\", \"CAPITAL\": \"N\", \"AREALAND\": 16.683000, \"AREAWATER\": 0.487000, \"POP_CL\": 6, \"POP2000\": 31301, \"WHITE\": 29653, \"BLACK\": 622, \"AMERI_ES\": 141, \"ASIAN\": 147, \"HAWN_PI\": 7, \"OTHER\": 297, \"MULT_RACE\": 434, \"HISPANIC\": 894, \"MALES\": 15039, \"FEMALES\": 16262, \"AGE_UNDER5\": 1874, \"AGE_5_17\": 5860, \"AGE_18_21\": 1558, \"AGE_22_29\": 3031, \"AGE_30_39\": 4588, \"AGE_40_49\": 4704, \"AGE_50_64\": 4592, \"AGE_65_UP\": 5094, \"MED_AGE\": 37.600000, \"MED_AGE_M\": 36.000000, \"MED_AGE_F\": 39.000000, \"HOUSEHOLDS\": 12773, \"AVE_HH_SZ\": 2.430000, \"HSEHLD_1_M\": 1498, \"HSEHLD_1_F\": 2259, \"MARHH_CHD\": 2469, \"MARHH_NO_C\": 3610, \"MHH_CHILD\": 355, \"FHH_CHILD\": 1002, \"FAMILIES\": 8462, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 14022, \"VACANT\": 1249, \"OWNER_OCC\": 9000, \"RENTER_OCC\": 3773 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.129528999989972, 38.717848999963195 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Grayslake\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"31121\", \"CAPITAL\": \"N\", \"AREALAND\": 9.398000, \"AREAWATER\": 0.157000, \"POP_CL\": 6, \"POP2000\": 18506, \"WHITE\": 16840, \"BLACK\": 293, \"AMERI_ES\": 35, \"ASIAN\": 783, \"HAWN_PI\": 6, \"OTHER\": 314, \"MULT_RACE\": 235, \"HISPANIC\": 920, \"MALES\": 9073, \"FEMALES\": 9433, \"AGE_UNDER5\": 2189, \"AGE_5_17\": 3938, \"AGE_18_21\": 579, \"AGE_22_29\": 1698, \"AGE_30_39\": 4405, \"AGE_40_49\": 3131, \"AGE_50_64\": 1725, \"AGE_65_UP\": 841, \"MED_AGE\": 32.200000, \"MED_AGE_M\": 32.200000, \"MED_AGE_F\": 32.300000, \"HOUSEHOLDS\": 6503, \"AVE_HH_SZ\": 2.840000, \"HSEHLD_1_M\": 540, \"HSEHLD_1_F\": 675, \"MARHH_CHD\": 2732, \"MARHH_NO_C\": 1582, \"MHH_CHILD\": 85, \"FHH_CHILD\": 342, \"FAMILIES\": 4950, \"AVE_FAM_SZ\": 3.310000, \"HSE_UNITS\": 6642, \"VACANT\": 139, \"OWNER_OCC\": 5103, \"RENTER_OCC\": 1400 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.032428000135653, 42.348270998862588 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Gurnee\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"32018\", \"CAPITAL\": \"N\", \"AREALAND\": 13.401000, \"AREAWATER\": 0.014000, \"POP_CL\": 6, \"POP2000\": 28834, \"WHITE\": 23679, \"BLACK\": 1459, \"AMERI_ES\": 52, \"ASIAN\": 2364, \"HAWN_PI\": 15, \"OTHER\": 621, \"MULT_RACE\": 644, \"HISPANIC\": 1738, \"MALES\": 13972, \"FEMALES\": 14862, \"AGE_UNDER5\": 2770, \"AGE_5_17\": 5971, \"AGE_18_21\": 822, \"AGE_22_29\": 2561, \"AGE_30_39\": 6088, \"AGE_40_49\": 4975, \"AGE_50_64\": 3572, \"AGE_65_UP\": 2075, \"MED_AGE\": 34.200000, \"MED_AGE_M\": 33.800000, \"MED_AGE_F\": 34.600000, \"HOUSEHOLDS\": 10629, \"AVE_HH_SZ\": 2.710000, \"HSEHLD_1_M\": 1005, \"HSEHLD_1_F\": 1407, \"MARHH_CHD\": 3839, \"MARHH_NO_C\": 2813, \"MHH_CHILD\": 121, \"FHH_CHILD\": 537, \"FAMILIES\": 7714, \"AVE_FAM_SZ\": 3.250000, \"HSE_UNITS\": 10929, \"VACANT\": 300, \"OWNER_OCC\": 8337, \"RENTER_OCC\": 2292 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.9344070001858, 42.37368199872121 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hanover Park\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"32746\", \"CAPITAL\": \"N\", \"AREALAND\": 6.794000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 38278, \"WHITE\": 26077, \"BLACK\": 2348, \"AMERI_ES\": 109, \"ASIAN\": 4574, \"HAWN_PI\": 6, \"OTHER\": 3967, \"MULT_RACE\": 1197, \"HISPANIC\": 10233, \"MALES\": 19722, \"FEMALES\": 18556, \"AGE_UNDER5\": 3350, \"AGE_5_17\": 8700, \"AGE_18_21\": 2398, \"AGE_22_29\": 4930, \"AGE_30_39\": 6949, \"AGE_40_49\": 6007, \"AGE_50_64\": 4368, \"AGE_65_UP\": 1576, \"MED_AGE\": 29.700000, \"MED_AGE_M\": 28.900000, \"MED_AGE_F\": 30.500000, \"HOUSEHOLDS\": 11105, \"AVE_HH_SZ\": 3.440000, \"HSEHLD_1_M\": 809, \"HSEHLD_1_F\": 685, \"MARHH_CHD\": 4410, \"MARHH_NO_C\": 2741, \"MHH_CHILD\": 274, \"FHH_CHILD\": 770, \"FAMILIES\": 9108, \"AVE_FAM_SZ\": 3.750000, \"HSE_UNITS\": 11343, \"VACANT\": 238, \"OWNER_OCC\": 9137, \"RENTER_OCC\": 1968 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.146109000068861, 41.978826999026367 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Harvey\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"33383\", \"CAPITAL\": \"N\", \"AREALAND\": 6.196000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 30000, \"WHITE\": 3005, \"BLACK\": 23871, \"AMERI_ES\": 79, \"ASIAN\": 114, \"HAWN_PI\": 16, \"OTHER\": 2382, \"MULT_RACE\": 533, \"HISPANIC\": 3834, \"MALES\": 14392, \"FEMALES\": 15608, \"AGE_UNDER5\": 2886, \"AGE_5_17\": 7648, \"AGE_18_21\": 1965, \"AGE_22_29\": 3379, \"AGE_30_39\": 3985, \"AGE_40_49\": 3617, \"AGE_50_64\": 3934, \"AGE_65_UP\": 2586, \"MED_AGE\": 27.900000, \"MED_AGE_M\": 25.700000, \"MED_AGE_F\": 29.900000, \"HOUSEHOLDS\": 8990, \"AVE_HH_SZ\": 3.300000, \"HSEHLD_1_M\": 904, \"HSEHLD_1_F\": 961, \"MARHH_CHD\": 1607, \"MARHH_NO_C\": 1666, \"MHH_CHILD\": 267, \"FHH_CHILD\": 1641, \"FAMILIES\": 6759, \"AVE_FAM_SZ\": 3.800000, \"HSE_UNITS\": 10158, \"VACANT\": 1168, \"OWNER_OCC\": 5067, \"RENTER_OCC\": 3923 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.651895000294331, 41.610933998301128 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hazel Crest\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"33695\", \"CAPITAL\": \"N\", \"AREALAND\": 3.381000, \"AREAWATER\": 0.023000, \"POP_CL\": 6, \"POP2000\": 14816, \"WHITE\": 2885, \"BLACK\": 11308, \"AMERI_ES\": 18, \"ASIAN\": 138, \"HAWN_PI\": 3, \"OTHER\": 220, \"MULT_RACE\": 244, \"HISPANIC\": 494, \"MALES\": 6774, \"FEMALES\": 8042, \"AGE_UNDER5\": 1034, \"AGE_5_17\": 3455, \"AGE_18_21\": 763, \"AGE_22_29\": 1291, \"AGE_30_39\": 2098, \"AGE_40_49\": 2347, \"AGE_50_64\": 2260, \"AGE_65_UP\": 1568, \"MED_AGE\": 34.600000, \"MED_AGE_M\": 32.000000, \"MED_AGE_F\": 36.500000, \"HOUSEHOLDS\": 5067, \"AVE_HH_SZ\": 2.890000, \"HSEHLD_1_M\": 403, \"HSEHLD_1_F\": 744, \"MARHH_CHD\": 1163, \"MARHH_NO_C\": 1178, \"MHH_CHILD\": 126, \"FHH_CHILD\": 640, \"FAMILIES\": 3730, \"AVE_FAM_SZ\": 3.390000, \"HSE_UNITS\": 5303, \"VACANT\": 236, \"OWNER_OCC\": 4124, \"RENTER_OCC\": 943 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.685870000262739, 41.573083998367316 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Herrin\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"34358\", \"CAPITAL\": \"N\", \"AREALAND\": 8.202000, \"AREAWATER\": 0.174000, \"POP_CL\": 6, \"POP2000\": 11298, \"WHITE\": 10927, \"BLACK\": 104, \"AMERI_ES\": 39, \"ASIAN\": 76, \"HAWN_PI\": 3, \"OTHER\": 35, \"MULT_RACE\": 114, \"HISPANIC\": 107, \"MALES\": 5165, \"FEMALES\": 6133, \"AGE_UNDER5\": 717, \"AGE_5_17\": 1793, \"AGE_18_21\": 525, \"AGE_22_29\": 1102, \"AGE_30_39\": 1507, \"AGE_40_49\": 1537, \"AGE_50_64\": 1840, \"AGE_65_UP\": 2277, \"MED_AGE\": 40.000000, \"MED_AGE_M\": 38.100000, \"MED_AGE_F\": 41.600000, \"HOUSEHOLDS\": 4831, \"AVE_HH_SZ\": 2.260000, \"HSEHLD_1_M\": 555, \"HSEHLD_1_F\": 1042, \"MARHH_CHD\": 936, \"MARHH_NO_C\": 1394, \"MHH_CHILD\": 77, \"FHH_CHILD\": 328, \"FAMILIES\": 3015, \"AVE_FAM_SZ\": 2.880000, \"HSE_UNITS\": 5202, \"VACANT\": 371, \"OWNER_OCC\": 3445, \"RENTER_OCC\": 1386 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.028092999924255, 37.802411999770072 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hickory Hills\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"34514\", \"CAPITAL\": \"N\", \"AREALAND\": 2.834000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 13926, \"WHITE\": 12657, \"BLACK\": 172, \"AMERI_ES\": 32, \"ASIAN\": 290, \"HAWN_PI\": 1, \"OTHER\": 331, \"MULT_RACE\": 443, \"HISPANIC\": 1129, \"MALES\": 6910, \"FEMALES\": 7016, \"AGE_UNDER5\": 917, \"AGE_5_17\": 2405, \"AGE_18_21\": 686, \"AGE_22_29\": 1548, \"AGE_30_39\": 2080, \"AGE_40_49\": 2114, \"AGE_50_64\": 2431, \"AGE_65_UP\": 1745, \"MED_AGE\": 36.900000, \"MED_AGE_M\": 35.500000, \"MED_AGE_F\": 38.300000, \"HOUSEHOLDS\": 5216, \"AVE_HH_SZ\": 2.660000, \"HSEHLD_1_M\": 560, \"HSEHLD_1_F\": 708, \"MARHH_CHD\": 1331, \"MARHH_NO_C\": 1636, \"MHH_CHILD\": 71, \"FHH_CHILD\": 237, \"FAMILIES\": 3696, \"AVE_FAM_SZ\": 3.220000, \"HSE_UNITS\": 5332, \"VACANT\": 116, \"OWNER_OCC\": 3807, \"RENTER_OCC\": 1409 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.827054000185541, 41.72383199859749 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Highland Park\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"34722\", \"CAPITAL\": \"N\", \"AREALAND\": 12.360000, \"AREAWATER\": 0.006000, \"POP_CL\": 6, \"POP2000\": 31365, \"WHITE\": 28606, \"BLACK\": 559, \"AMERI_ES\": 24, \"ASIAN\": 716, \"HAWN_PI\": 4, \"OTHER\": 1086, \"MULT_RACE\": 370, \"HISPANIC\": 2792, \"MALES\": 15356, \"FEMALES\": 16009, \"AGE_UNDER5\": 2330, \"AGE_5_17\": 6153, \"AGE_18_21\": 843, \"AGE_22_29\": 1782, \"AGE_30_39\": 4300, \"AGE_40_49\": 5139, \"AGE_50_64\": 6092, \"AGE_65_UP\": 4726, \"MED_AGE\": 40.600000, \"MED_AGE_M\": 39.600000, \"MED_AGE_F\": 41.500000, \"HOUSEHOLDS\": 11521, \"AVE_HH_SZ\": 2.710000, \"HSEHLD_1_M\": 793, \"HSEHLD_1_F\": 1456, \"MARHH_CHD\": 3799, \"MARHH_NO_C\": 4256, \"MHH_CHILD\": 95, \"FHH_CHILD\": 362, \"FAMILIES\": 8918, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 11934, \"VACANT\": 413, \"OWNER_OCC\": 9462, \"RENTER_OCC\": 2059 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.807052000245534, 42.182524998531868 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hinsdale\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"35307\", \"CAPITAL\": \"N\", \"AREALAND\": 4.636000, \"AREAWATER\": 0.005000, \"POP_CL\": 6, \"POP2000\": 17349, \"WHITE\": 16187, \"BLACK\": 136, \"AMERI_ES\": 12, \"ASIAN\": 777, \"HAWN_PI\": 4, \"OTHER\": 86, \"MULT_RACE\": 147, \"HISPANIC\": 414, \"MALES\": 8323, \"FEMALES\": 9026, \"AGE_UNDER5\": 1421, \"AGE_5_17\": 4286, \"AGE_18_21\": 443, \"AGE_22_29\": 676, \"AGE_30_39\": 2209, \"AGE_40_49\": 3255, \"AGE_50_64\": 2863, \"AGE_65_UP\": 2196, \"MED_AGE\": 38.900000, \"MED_AGE_M\": 38.400000, \"MED_AGE_F\": 39.300000, \"HOUSEHOLDS\": 5977, \"AVE_HH_SZ\": 2.860000, \"HSEHLD_1_M\": 434, \"HSEHLD_1_F\": 747, \"MARHH_CHD\": 2393, \"MARHH_NO_C\": 1777, \"MHH_CHILD\": 53, \"FHH_CHILD\": 230, \"FAMILIES\": 4661, \"AVE_FAM_SZ\": 3.330000, \"HSE_UNITS\": 6270, \"VACANT\": 293, \"OWNER_OCC\": 4963, \"RENTER_OCC\": 1014 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.928335000139185, 41.800579998747871 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hoffman Estates\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"35411\", \"CAPITAL\": \"N\", \"AREALAND\": 19.710000, \"AREAWATER\": 0.158000, \"POP_CL\": 6, \"POP2000\": 49495, \"WHITE\": 36837, \"BLACK\": 2166, \"AMERI_ES\": 86, \"ASIAN\": 7461, \"HAWN_PI\": 12, \"OTHER\": 1857, \"MULT_RACE\": 1076, \"HISPANIC\": 5198, \"MALES\": 24644, \"FEMALES\": 24851, \"AGE_UNDER5\": 3570, \"AGE_5_17\": 10329, \"AGE_18_21\": 2332, \"AGE_22_29\": 5640, \"AGE_30_39\": 8428, \"AGE_40_49\": 8776, \"AGE_50_64\": 7123, \"AGE_65_UP\": 3297, \"MED_AGE\": 33.600000, \"MED_AGE_M\": 32.600000, \"MED_AGE_F\": 34.600000, \"HOUSEHOLDS\": 17034, \"AVE_HH_SZ\": 2.890000, \"HSEHLD_1_M\": 1683, \"HSEHLD_1_F\": 1710, \"MARHH_CHD\": 5873, \"MARHH_NO_C\": 4664, \"MHH_CHILD\": 214, \"FHH_CHILD\": 949, \"FAMILIES\": 12730, \"AVE_FAM_SZ\": 3.390000, \"HSE_UNITS\": 17387, \"VACANT\": 353, \"OWNER_OCC\": 13032, \"RENTER_OCC\": 4002 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.119256000082657, 42.063172998989728 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Homewood\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"35879\", \"CAPITAL\": \"N\", \"AREALAND\": 5.204000, \"AREAWATER\": 0.052000, \"POP_CL\": 6, \"POP2000\": 19543, \"WHITE\": 15270, \"BLACK\": 3422, \"AMERI_ES\": 20, \"ASIAN\": 307, \"HAWN_PI\": 13, \"OTHER\": 207, \"MULT_RACE\": 304, \"HISPANIC\": 597, \"MALES\": 9006, \"FEMALES\": 10537, \"AGE_UNDER5\": 1140, \"AGE_5_17\": 4158, \"AGE_18_21\": 685, \"AGE_22_29\": 1189, \"AGE_30_39\": 2655, \"AGE_40_49\": 3490, \"AGE_50_64\": 3017, \"AGE_65_UP\": 3209, \"MED_AGE\": 39.800000, \"MED_AGE_M\": 38.300000, \"MED_AGE_F\": 41.100000, \"HOUSEHOLDS\": 7552, \"AVE_HH_SZ\": 2.550000, \"HSEHLD_1_M\": 660, \"HSEHLD_1_F\": 1425, \"MARHH_CHD\": 2120, \"MARHH_NO_C\": 2090, \"MHH_CHILD\": 91, \"FHH_CHILD\": 477, \"FAMILIES\": 5259, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 7827, \"VACANT\": 275, \"OWNER_OCC\": 6432, \"RENTER_OCC\": 1120 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.662621000278818, 41.558033998325804 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Jacksonville\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"38115\", \"CAPITAL\": \"N\", \"AREALAND\": 10.133000, \"AREAWATER\": 0.193000, \"POP_CL\": 6, \"POP2000\": 18940, \"WHITE\": 17109, \"BLACK\": 1261, \"AMERI_ES\": 40, \"ASIAN\": 130, \"HAWN_PI\": 2, \"OTHER\": 132, \"MULT_RACE\": 266, \"HISPANIC\": 291, \"MALES\": 9022, \"FEMALES\": 9918, \"AGE_UNDER5\": 1087, \"AGE_5_17\": 3085, \"AGE_18_21\": 1874, \"AGE_22_29\": 1883, \"AGE_30_39\": 2351, \"AGE_40_49\": 2561, \"AGE_50_64\": 2907, \"AGE_65_UP\": 3192, \"MED_AGE\": 36.900000, \"MED_AGE_M\": 34.900000, \"MED_AGE_F\": 39.000000, \"HOUSEHOLDS\": 7336, \"AVE_HH_SZ\": 2.260000, \"HSEHLD_1_M\": 1013, \"HSEHLD_1_F\": 1496, \"MARHH_CHD\": 1297, \"MARHH_NO_C\": 1960, \"MHH_CHILD\": 142, \"FHH_CHILD\": 600, \"FAMILIES\": 4416, \"AVE_FAM_SZ\": 2.890000, \"HSE_UNITS\": 8162, \"VACANT\": 826, \"OWNER_OCC\": 4512, \"RENTER_OCC\": 2824 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.234393999993003, 39.731935999967881 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Joliet\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"38570\", \"CAPITAL\": \"N\", \"AREALAND\": 38.059000, \"AREAWATER\": 0.286000, \"POP_CL\": 8, \"POP2000\": 106221, \"WHITE\": 73633, \"BLACK\": 19294, \"AMERI_ES\": 301, \"ASIAN\": 1215, \"HAWN_PI\": 22, \"OTHER\": 9532, \"MULT_RACE\": 2224, \"HISPANIC\": 19552, \"MALES\": 52623, \"FEMALES\": 53598, \"AGE_UNDER5\": 9868, \"AGE_5_17\": 21419, \"AGE_18_21\": 6201, \"AGE_22_29\": 13525, \"AGE_30_39\": 18625, \"AGE_40_49\": 13486, \"AGE_50_64\": 11388, \"AGE_65_UP\": 11709, \"MED_AGE\": 31.000000, \"MED_AGE_M\": 30.000000, \"MED_AGE_F\": 32.200000, \"HOUSEHOLDS\": 36182, \"AVE_HH_SZ\": 2.810000, \"HSEHLD_1_M\": 3746, \"HSEHLD_1_F\": 5205, \"MARHH_CHD\": 10338, \"MARHH_NO_C\": 8457, \"MHH_CHILD\": 857, \"FHH_CHILD\": 2857, \"FAMILIES\": 25404, \"AVE_FAM_SZ\": 3.390000, \"HSE_UNITS\": 38176, \"VACANT\": 1994, \"OWNER_OCC\": 25472, \"RENTER_OCC\": 10710 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.108933000051408, 41.533029999004071 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Justice\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"38830\", \"CAPITAL\": \"N\", \"AREALAND\": 2.912000, \"AREAWATER\": 0.042000, \"POP_CL\": 6, \"POP2000\": 12193, \"WHITE\": 8639, \"BLACK\": 2456, \"AMERI_ES\": 23, \"ASIAN\": 213, \"HAWN_PI\": 3, \"OTHER\": 336, \"MULT_RACE\": 523, \"HISPANIC\": 928, \"MALES\": 6006, \"FEMALES\": 6187, \"AGE_UNDER5\": 996, \"AGE_5_17\": 2452, \"AGE_18_21\": 644, \"AGE_22_29\": 1766, \"AGE_30_39\": 2072, \"AGE_40_49\": 1828, \"AGE_50_64\": 1549, \"AGE_65_UP\": 886, \"MED_AGE\": 30.900000, \"MED_AGE_M\": 30.500000, \"MED_AGE_F\": 31.400000, \"HOUSEHOLDS\": 4402, \"AVE_HH_SZ\": 2.770000, \"HSEHLD_1_M\": 517, \"HSEHLD_1_F\": 470, \"MARHH_CHD\": 1156, \"MARHH_NO_C\": 973, \"MHH_CHILD\": 132, \"FHH_CHILD\": 466, \"FAMILIES\": 3104, \"AVE_FAM_SZ\": 3.280000, \"HSE_UNITS\": 4772, \"VACANT\": 370, \"OWNER_OCC\": 2332, \"RENTER_OCC\": 2070 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.834402000183545, 41.74638199860766 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Kankakee\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"38934\", \"CAPITAL\": \"N\", \"AREALAND\": 12.274000, \"AREAWATER\": 0.476000, \"POP_CL\": 6, \"POP2000\": 27491, \"WHITE\": 13998, \"BLACK\": 11291, \"AMERI_ES\": 75, \"ASIAN\": 87, \"HAWN_PI\": 7, \"OTHER\": 1511, \"MULT_RACE\": 522, \"HISPANIC\": 2544, \"MALES\": 13161, \"FEMALES\": 14330, \"AGE_UNDER5\": 2292, \"AGE_5_17\": 5808, \"AGE_18_21\": 1554, \"AGE_22_29\": 3209, \"AGE_30_39\": 3857, \"AGE_40_49\": 3700, \"AGE_50_64\": 3400, \"AGE_65_UP\": 3671, \"MED_AGE\": 32.300000, \"MED_AGE_M\": 30.400000, \"MED_AGE_F\": 34.200000, \"HOUSEHOLDS\": 10020, \"AVE_HH_SZ\": 2.600000, \"HSEHLD_1_M\": 1316, \"HSEHLD_1_F\": 1838, \"MARHH_CHD\": 1710, \"MARHH_NO_C\": 1937, \"MHH_CHILD\": 287, \"FHH_CHILD\": 1448, \"FAMILIES\": 6272, \"AVE_FAM_SZ\": 3.280000, \"HSE_UNITS\": 10965, \"VACANT\": 945, \"OWNER_OCC\": 5352, \"RENTER_OCC\": 4668 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.863866000107038, 41.116981998697717 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Kewanee\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"39727\", \"CAPITAL\": \"N\", \"AREALAND\": 6.277000, \"AREAWATER\": 0.013000, \"POP_CL\": 6, \"POP2000\": 12944, \"WHITE\": 11684, \"BLACK\": 476, \"AMERI_ES\": 8, \"ASIAN\": 45, \"HAWN_PI\": 2, \"OTHER\": 477, \"MULT_RACE\": 252, \"HISPANIC\": 790, \"MALES\": 6088, \"FEMALES\": 6856, \"AGE_UNDER5\": 890, \"AGE_5_17\": 2317, \"AGE_18_21\": 727, \"AGE_22_29\": 1172, \"AGE_30_39\": 1655, \"AGE_40_49\": 1689, \"AGE_50_64\": 1844, \"AGE_65_UP\": 2650, \"MED_AGE\": 38.500000, \"MED_AGE_M\": 36.000000, \"MED_AGE_F\": 40.800000, \"HOUSEHOLDS\": 5353, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 623, \"HSEHLD_1_F\": 1103, \"MARHH_CHD\": 973, \"MARHH_NO_C\": 1543, \"MHH_CHILD\": 128, \"FHH_CHILD\": 422, \"FAMILIES\": 3379, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 5879, \"VACANT\": 526, \"OWNER_OCC\": 3969, \"RENTER_OCC\": 1384 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.925679999989697, 41.241179999935895 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"La Grange\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"40767\", \"CAPITAL\": \"N\", \"AREALAND\": 2.509000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 15608, \"WHITE\": 14206, \"BLACK\": 939, \"AMERI_ES\": 14, \"ASIAN\": 156, \"HAWN_PI\": 3, \"OTHER\": 155, \"MULT_RACE\": 135, \"HISPANIC\": 572, \"MALES\": 7572, \"FEMALES\": 8036, \"AGE_UNDER5\": 1311, \"AGE_5_17\": 3130, \"AGE_18_21\": 451, \"AGE_22_29\": 966, \"AGE_30_39\": 2574, \"AGE_40_49\": 2623, \"AGE_50_64\": 2448, \"AGE_65_UP\": 2105, \"MED_AGE\": 37.800000, \"MED_AGE_M\": 36.600000, \"MED_AGE_F\": 39.100000, \"HOUSEHOLDS\": 5624, \"AVE_HH_SZ\": 2.670000, \"HSEHLD_1_M\": 462, \"HSEHLD_1_F\": 918, \"MARHH_CHD\": 1820, \"MARHH_NO_C\": 1573, \"MHH_CHILD\": 43, \"FHH_CHILD\": 267, \"FAMILIES\": 4051, \"AVE_FAM_SZ\": 3.230000, \"HSE_UNITS\": 5781, \"VACANT\": 157, \"OWNER_OCC\": 4589, \"RENTER_OCC\": 1035 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.873455000167723, 41.807937998664819 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"La Grange Park\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"40793\", \"CAPITAL\": \"N\", \"AREALAND\": 2.253000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 13295, \"WHITE\": 12394, \"BLACK\": 409, \"AMERI_ES\": 14, \"ASIAN\": 218, \"HAWN_PI\": 5, \"OTHER\": 121, \"MULT_RACE\": 134, \"HISPANIC\": 472, \"MALES\": 6074, \"FEMALES\": 7221, \"AGE_UNDER5\": 918, \"AGE_5_17\": 2231, \"AGE_18_21\": 413, \"AGE_22_29\": 941, \"AGE_30_39\": 1898, \"AGE_40_49\": 2045, \"AGE_50_64\": 1948, \"AGE_65_UP\": 2901, \"MED_AGE\": 41.100000, \"MED_AGE_M\": 38.600000, \"MED_AGE_F\": 43.500000, \"HOUSEHOLDS\": 5432, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 492, \"HSEHLD_1_F\": 1231, \"MARHH_CHD\": 1334, \"MARHH_NO_C\": 1585, \"MHH_CHILD\": 61, \"FHH_CHILD\": 210, \"FAMILIES\": 3516, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 5560, \"VACANT\": 128, \"OWNER_OCC\": 3890, \"RENTER_OCC\": 1542 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.869233000172088, 41.829830998656789 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lake Forest\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"41105\", \"CAPITAL\": \"N\", \"AREALAND\": 16.865000, \"AREAWATER\": 0.048000, \"POP_CL\": 6, \"POP2000\": 20059, \"WHITE\": 18815, \"BLACK\": 271, \"AMERI_ES\": 12, \"ASIAN\": 692, \"HAWN_PI\": 26, \"OTHER\": 89, \"MULT_RACE\": 154, \"HISPANIC\": 376, \"MALES\": 9545, \"FEMALES\": 10514, \"AGE_UNDER5\": 1189, \"AGE_5_17\": 4331, \"AGE_18_21\": 1464, \"AGE_22_29\": 865, \"AGE_30_39\": 1882, \"AGE_40_49\": 3449, \"AGE_50_64\": 3954, \"AGE_65_UP\": 2925, \"MED_AGE\": 41.000000, \"MED_AGE_M\": 40.900000, \"MED_AGE_F\": 41.000000, \"HOUSEHOLDS\": 6687, \"AVE_HH_SZ\": 2.780000, \"HSEHLD_1_M\": 406, \"HSEHLD_1_F\": 818, \"MARHH_CHD\": 2386, \"MARHH_NO_C\": 2538, \"MHH_CHILD\": 45, \"FHH_CHILD\": 174, \"FAMILIES\": 5331, \"AVE_FAM_SZ\": 3.170000, \"HSE_UNITS\": 7001, \"VACANT\": 314, \"OWNER_OCC\": 5836, \"RENTER_OCC\": 851 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.85104200022198, 42.234787998600559 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lake in the Hills\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"41183\", \"CAPITAL\": \"N\", \"AREALAND\": 9.404000, \"AREAWATER\": 0.232000, \"POP_CL\": 6, \"POP2000\": 23152, \"WHITE\": 21206, \"BLACK\": 347, \"AMERI_ES\": 33, \"ASIAN\": 770, \"HAWN_PI\": 4, \"OTHER\": 430, \"MULT_RACE\": 362, \"HISPANIC\": 1462, \"MALES\": 11618, \"FEMALES\": 11534, \"AGE_UNDER5\": 2984, \"AGE_5_17\": 4760, \"AGE_18_21\": 648, \"AGE_22_29\": 2740, \"AGE_30_39\": 6199, \"AGE_40_49\": 3150, \"AGE_50_64\": 1903, \"AGE_65_UP\": 768, \"MED_AGE\": 30.700000, \"MED_AGE_M\": 30.700000, \"MED_AGE_F\": 30.700000, \"HOUSEHOLDS\": 7652, \"AVE_HH_SZ\": 3.030000, \"HSEHLD_1_M\": 536, \"HSEHLD_1_F\": 456, \"MARHH_CHD\": 3542, \"MARHH_NO_C\": 2078, \"MHH_CHILD\": 116, \"FHH_CHILD\": 309, \"FAMILIES\": 6294, \"AVE_FAM_SZ\": 3.350000, \"HSE_UNITS\": 7866, \"VACANT\": 214, \"OWNER_OCC\": 7165, \"RENTER_OCC\": 487 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.347429000031042, 42.186728999235036 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lake Zurich\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"41742\", \"CAPITAL\": \"N\", \"AREALAND\": 6.484000, \"AREAWATER\": 0.359000, \"POP_CL\": 6, \"POP2000\": 18104, \"WHITE\": 16711, \"BLACK\": 146, \"AMERI_ES\": 30, \"ASIAN\": 691, \"HAWN_PI\": 2, \"OTHER\": 357, \"MULT_RACE\": 167, \"HISPANIC\": 1005, \"MALES\": 9081, \"FEMALES\": 9023, \"AGE_UNDER5\": 1604, \"AGE_5_17\": 4569, \"AGE_18_21\": 585, \"AGE_22_29\": 1057, \"AGE_30_39\": 3361, \"AGE_40_49\": 3646, \"AGE_50_64\": 2220, \"AGE_65_UP\": 1062, \"MED_AGE\": 34.700000, \"MED_AGE_M\": 34.200000, \"MED_AGE_F\": 35.200000, \"HOUSEHOLDS\": 5746, \"AVE_HH_SZ\": 3.120000, \"HSEHLD_1_M\": 368, \"HSEHLD_1_F\": 345, \"MARHH_CHD\": 2785, \"MARHH_NO_C\": 1544, \"MHH_CHILD\": 71, \"FHH_CHILD\": 265, \"FAMILIES\": 4869, \"AVE_FAM_SZ\": 3.420000, \"HSE_UNITS\": 5828, \"VACANT\": 82, \"OWNER_OCC\": 5248, \"RENTER_OCC\": 498 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.088098000102093, 42.192323998944168 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lansing\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"42028\", \"CAPITAL\": \"N\", \"AREALAND\": 6.764000, \"AREAWATER\": 0.064000, \"POP_CL\": 6, \"POP2000\": 28332, \"WHITE\": 24295, \"BLACK\": 3029, \"AMERI_ES\": 36, \"ASIAN\": 203, \"HAWN_PI\": 13, \"OTHER\": 437, \"MULT_RACE\": 319, \"HISPANIC\": 1624, \"MALES\": 13431, \"FEMALES\": 14901, \"AGE_UNDER5\": 1806, \"AGE_5_17\": 5075, \"AGE_18_21\": 1223, \"AGE_22_29\": 2814, \"AGE_30_39\": 4020, \"AGE_40_49\": 4524, \"AGE_50_64\": 4444, \"AGE_65_UP\": 4426, \"MED_AGE\": 38.400000, \"MED_AGE_M\": 36.800000, \"MED_AGE_F\": 39.600000, \"HOUSEHOLDS\": 11416, \"AVE_HH_SZ\": 2.480000, \"HSEHLD_1_M\": 1228, \"HSEHLD_1_F\": 1955, \"MARHH_CHD\": 2612, \"MARHH_NO_C\": 3476, \"MHH_CHILD\": 167, \"FHH_CHILD\": 677, \"FAMILIES\": 7774, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 11748, \"VACANT\": 332, \"OWNER_OCC\": 8593, \"RENTER_OCC\": 2823 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.545791000384114, 41.565784998095829 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lemont\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"42795\", \"CAPITAL\": \"N\", \"AREALAND\": 6.453000, \"AREAWATER\": 0.348000, \"POP_CL\": 6, \"POP2000\": 13098, \"WHITE\": 12757, \"BLACK\": 40, \"AMERI_ES\": 19, \"ASIAN\": 107, \"HAWN_PI\": 4, \"OTHER\": 87, \"MULT_RACE\": 84, \"HISPANIC\": 393, \"MALES\": 6208, \"FEMALES\": 6890, \"AGE_UNDER5\": 952, \"AGE_5_17\": 2674, \"AGE_18_21\": 500, \"AGE_22_29\": 823, \"AGE_30_39\": 2019, \"AGE_40_49\": 2276, \"AGE_50_64\": 2002, \"AGE_65_UP\": 1852, \"MED_AGE\": 38.300000, \"MED_AGE_M\": 37.000000, \"MED_AGE_F\": 39.500000, \"HOUSEHOLDS\": 4420, \"AVE_HH_SZ\": 2.850000, \"HSEHLD_1_M\": 336, \"HSEHLD_1_F\": 531, \"MARHH_CHD\": 1520, \"MARHH_NO_C\": 1457, \"MHH_CHILD\": 52, \"FHH_CHILD\": 150, \"FAMILIES\": 3409, \"AVE_FAM_SZ\": 3.320000, \"HSE_UNITS\": 4553, \"VACANT\": 133, \"OWNER_OCC\": 3660, \"RENTER_OCC\": 760 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.988845000101833, 41.668783998841775 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Libertyville\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"43250\", \"CAPITAL\": \"N\", \"AREALAND\": 8.772000, \"AREAWATER\": 0.291000, \"POP_CL\": 6, \"POP2000\": 20742, \"WHITE\": 19121, \"BLACK\": 211, \"AMERI_ES\": 18, \"ASIAN\": 949, \"HAWN_PI\": 6, \"OTHER\": 231, \"MULT_RACE\": 206, \"HISPANIC\": 566, \"MALES\": 9987, \"FEMALES\": 10755, \"AGE_UNDER5\": 1380, \"AGE_5_17\": 4494, \"AGE_18_21\": 640, \"AGE_22_29\": 1281, \"AGE_30_39\": 2896, \"AGE_40_49\": 3872, \"AGE_50_64\": 3773, \"AGE_65_UP\": 2406, \"MED_AGE\": 39.200000, \"MED_AGE_M\": 37.600000, \"MED_AGE_F\": 40.500000, \"HOUSEHOLDS\": 7298, \"AVE_HH_SZ\": 2.730000, \"HSEHLD_1_M\": 554, \"HSEHLD_1_F\": 1017, \"MARHH_CHD\": 2591, \"MARHH_NO_C\": 2238, \"MHH_CHILD\": 66, \"FHH_CHILD\": 286, \"FAMILIES\": 5454, \"AVE_FAM_SZ\": 3.240000, \"HSE_UNITS\": 7458, \"VACANT\": 160, \"OWNER_OCC\": 5906, \"RENTER_OCC\": 1392 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.960673000164405, 42.284221998765361 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lincoln\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"43536\", \"CAPITAL\": \"N\", \"AREALAND\": 5.919000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 15369, \"WHITE\": 14569, \"BLACK\": 434, \"AMERI_ES\": 24, \"ASIAN\": 137, \"HAWN_PI\": 4, \"OTHER\": 69, \"MULT_RACE\": 132, \"HISPANIC\": 183, \"MALES\": 7314, \"FEMALES\": 8055, \"AGE_UNDER5\": 892, \"AGE_5_17\": 2429, \"AGE_18_21\": 1477, \"AGE_22_29\": 1631, \"AGE_30_39\": 1988, \"AGE_40_49\": 2107, \"AGE_50_64\": 2273, \"AGE_65_UP\": 2572, \"MED_AGE\": 36.700000, \"MED_AGE_M\": 34.100000, \"MED_AGE_F\": 39.000000, \"HOUSEHOLDS\": 5965, \"AVE_HH_SZ\": 2.280000, \"HSEHLD_1_M\": 715, \"HSEHLD_1_F\": 1258, \"MARHH_CHD\": 1110, \"MARHH_NO_C\": 1674, \"MHH_CHILD\": 140, \"FHH_CHILD\": 443, \"FAMILIES\": 3694, \"AVE_FAM_SZ\": 2.890000, \"HSE_UNITS\": 6391, \"VACANT\": 426, \"OWNER_OCC\": 3865, \"RENTER_OCC\": 2100 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.367461999968825, 40.14992699984181 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lincolnwood\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"43744\", \"CAPITAL\": \"N\", \"AREALAND\": 2.687000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12359, \"WHITE\": 9211, \"BLACK\": 47, \"AMERI_ES\": 4, \"ASIAN\": 2605, \"HAWN_PI\": 3, \"OTHER\": 152, \"MULT_RACE\": 337, \"HISPANIC\": 517, \"MALES\": 5822, \"FEMALES\": 6537, \"AGE_UNDER5\": 648, \"AGE_5_17\": 2187, \"AGE_18_21\": 508, \"AGE_22_29\": 727, \"AGE_30_39\": 1160, \"AGE_40_49\": 1801, \"AGE_50_64\": 2375, \"AGE_65_UP\": 2953, \"MED_AGE\": 45.400000, \"MED_AGE_M\": 44.000000, \"MED_AGE_F\": 46.500000, \"HOUSEHOLDS\": 4482, \"AVE_HH_SZ\": 2.750000, \"HSEHLD_1_M\": 254, \"HSEHLD_1_F\": 702, \"MARHH_CHD\": 1225, \"MARHH_NO_C\": 1786, \"MHH_CHILD\": 27, \"FHH_CHILD\": 104, \"FAMILIES\": 3446, \"AVE_FAM_SZ\": 3.220000, \"HSE_UNITS\": 4593, \"VACANT\": 111, \"OWNER_OCC\": 4072, \"RENTER_OCC\": 410 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.734283000278282, 42.005330998419382 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lindenhurst\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"43770\", \"CAPITAL\": \"N\", \"AREALAND\": 3.721000, \"AREAWATER\": 0.361000, \"POP_CL\": 6, \"POP2000\": 12539, \"WHITE\": 11640, \"BLACK\": 184, \"AMERI_ES\": 19, \"ASIAN\": 377, \"HAWN_PI\": 1, \"OTHER\": 165, \"MULT_RACE\": 153, \"HISPANIC\": 508, \"MALES\": 6188, \"FEMALES\": 6351, \"AGE_UNDER5\": 1189, \"AGE_5_17\": 2615, \"AGE_18_21\": 434, \"AGE_22_29\": 1122, \"AGE_30_39\": 2680, \"AGE_40_49\": 2104, \"AGE_50_64\": 1556, \"AGE_65_UP\": 839, \"MED_AGE\": 33.700000, \"MED_AGE_M\": 33.500000, \"MED_AGE_F\": 33.800000, \"HOUSEHOLDS\": 4235, \"AVE_HH_SZ\": 2.930000, \"HSEHLD_1_M\": 251, \"HSEHLD_1_F\": 352, \"MARHH_CHD\": 1731, \"MARHH_NO_C\": 1417, \"MHH_CHILD\": 53, \"FHH_CHILD\": 133, \"FAMILIES\": 3472, \"AVE_FAM_SZ\": 3.270000, \"HSE_UNITS\": 4355, \"VACANT\": 120, \"OWNER_OCC\": 3820, \"RENTER_OCC\": 415 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.026189000143731, 42.419269998850176 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lisle\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"43939\", \"CAPITAL\": \"N\", \"AREALAND\": 6.373000, \"AREAWATER\": 0.045000, \"POP_CL\": 6, \"POP2000\": 21182, \"WHITE\": 17661, \"BLACK\": 736, \"AMERI_ES\": 40, \"ASIAN\": 2073, \"HAWN_PI\": 6, \"OTHER\": 355, \"MULT_RACE\": 311, \"HISPANIC\": 1163, \"MALES\": 10629, \"FEMALES\": 10553, \"AGE_UNDER5\": 1419, \"AGE_5_17\": 3747, \"AGE_18_21\": 861, \"AGE_22_29\": 2936, \"AGE_30_39\": 3661, \"AGE_40_49\": 3748, \"AGE_50_64\": 3146, \"AGE_65_UP\": 1664, \"MED_AGE\": 34.700000, \"MED_AGE_M\": 33.400000, \"MED_AGE_F\": 35.900000, \"HOUSEHOLDS\": 8663, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 1351, \"HSEHLD_1_F\": 1395, \"MARHH_CHD\": 2251, \"MARHH_NO_C\": 2146, \"MHH_CHILD\": 102, \"FHH_CHILD\": 360, \"FAMILIES\": 5242, \"AVE_FAM_SZ\": 3.150000, \"HSE_UNITS\": 8997, \"VACANT\": 334, \"OWNER_OCC\": 4947, \"RENTER_OCC\": 3716 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.087842000075014, 41.791828998964668 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lockport\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"44225\", \"CAPITAL\": \"N\", \"AREALAND\": 7.084000, \"AREAWATER\": 0.011000, \"POP_CL\": 6, \"POP2000\": 15191, \"WHITE\": 14556, \"BLACK\": 168, \"AMERI_ES\": 34, \"ASIAN\": 114, \"HAWN_PI\": 1, \"OTHER\": 143, \"MULT_RACE\": 175, \"HISPANIC\": 660, \"MALES\": 7471, \"FEMALES\": 7720, \"AGE_UNDER5\": 1323, \"AGE_5_17\": 2958, \"AGE_18_21\": 648, \"AGE_22_29\": 1710, \"AGE_30_39\": 2993, \"AGE_40_49\": 2207, \"AGE_50_64\": 1814, \"AGE_65_UP\": 1538, \"MED_AGE\": 33.400000, \"MED_AGE_M\": 32.800000, \"MED_AGE_F\": 33.900000, \"HOUSEHOLDS\": 5599, \"AVE_HH_SZ\": 2.710000, \"HSEHLD_1_M\": 530, \"HSEHLD_1_F\": 635, \"MARHH_CHD\": 1790, \"MARHH_NO_C\": 1619, \"MHH_CHILD\": 79, \"FHH_CHILD\": 284, \"FAMILIES\": 4137, \"AVE_FAM_SZ\": 3.170000, \"HSE_UNITS\": 5835, \"VACANT\": 236, \"OWNER_OCC\": 4429, \"RENTER_OCC\": 1170 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.047267000074314, 41.588658998924096 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lombard\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"44407\", \"CAPITAL\": \"N\", \"AREALAND\": 9.685000, \"AREAWATER\": 0.014000, \"POP_CL\": 6, \"POP2000\": 42322, \"WHITE\": 36829, \"BLACK\": 1141, \"AMERI_ES\": 62, \"ASIAN\": 2982, \"HAWN_PI\": 7, \"OTHER\": 606, \"MULT_RACE\": 695, \"HISPANIC\": 2012, \"MALES\": 20537, \"FEMALES\": 21785, \"AGE_UNDER5\": 2588, \"AGE_5_17\": 7128, \"AGE_18_21\": 1710, \"AGE_22_29\": 5037, \"AGE_30_39\": 7198, \"AGE_40_49\": 6537, \"AGE_50_64\": 5986, \"AGE_65_UP\": 6138, \"MED_AGE\": 36.700000, \"MED_AGE_M\": 34.900000, \"MED_AGE_F\": 38.600000, \"HOUSEHOLDS\": 16487, \"AVE_HH_SZ\": 2.490000, \"HSEHLD_1_M\": 1899, \"HSEHLD_1_F\": 2838, \"MARHH_CHD\": 4128, \"MARHH_NO_C\": 4765, \"MHH_CHILD\": 197, \"FHH_CHILD\": 581, \"FAMILIES\": 10720, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 17019, \"VACANT\": 532, \"OWNER_OCC\": 12342, \"RENTER_OCC\": 4145 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.015060000107411, 41.875978998865406 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Loves Park\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"45031\", \"CAPITAL\": \"N\", \"AREALAND\": 14.449000, \"AREAWATER\": 0.368000, \"POP_CL\": 6, \"POP2000\": 20044, \"WHITE\": 18618, \"BLACK\": 467, \"AMERI_ES\": 43, \"ASIAN\": 363, \"HAWN_PI\": 5, \"OTHER\": 227, \"MULT_RACE\": 321, \"HISPANIC\": 655, \"MALES\": 9814, \"FEMALES\": 10230, \"AGE_UNDER5\": 1414, \"AGE_5_17\": 3847, \"AGE_18_21\": 858, \"AGE_22_29\": 2332, \"AGE_30_39\": 3542, \"AGE_40_49\": 2986, \"AGE_50_64\": 2806, \"AGE_65_UP\": 2259, \"MED_AGE\": 34.600000, \"MED_AGE_M\": 33.600000, \"MED_AGE_F\": 35.700000, \"HOUSEHOLDS\": 8144, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 963, \"HSEHLD_1_F\": 1263, \"MARHH_CHD\": 1969, \"MARHH_NO_C\": 2237, \"MHH_CHILD\": 233, \"FHH_CHILD\": 527, \"FAMILIES\": 5401, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 8452, \"VACANT\": 308, \"OWNER_OCC\": 5693, \"RENTER_OCC\": 2451 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.025738999982352, 42.326226999697184 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lyons\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"45434\", \"CAPITAL\": \"N\", \"AREALAND\": 2.207000, \"AREAWATER\": 0.048000, \"POP_CL\": 6, \"POP2000\": 10255, \"WHITE\": 8911, \"BLACK\": 103, \"AMERI_ES\": 25, \"ASIAN\": 143, \"HAWN_PI\": 4, \"OTHER\": 703, \"MULT_RACE\": 366, \"HISPANIC\": 1668, \"MALES\": 5111, \"FEMALES\": 5144, \"AGE_UNDER5\": 774, \"AGE_5_17\": 1706, \"AGE_18_21\": 504, \"AGE_22_29\": 1204, \"AGE_30_39\": 1723, \"AGE_40_49\": 1528, \"AGE_50_64\": 1482, \"AGE_65_UP\": 1334, \"MED_AGE\": 35.700000, \"MED_AGE_M\": 34.600000, \"MED_AGE_F\": 36.700000, \"HOUSEHOLDS\": 4032, \"AVE_HH_SZ\": 2.540000, \"HSEHLD_1_M\": 611, \"HSEHLD_1_F\": 598, \"MARHH_CHD\": 885, \"MARHH_NO_C\": 960, \"MHH_CHILD\": 81, \"FHH_CHILD\": 244, \"FAMILIES\": 2557, \"AVE_FAM_SZ\": 3.210000, \"HSE_UNITS\": 4219, \"VACANT\": 187, \"OWNER_OCC\": 2405, \"RENTER_OCC\": 1627 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.821812000197752, 41.813257998582628 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"McHenry\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"45694\", \"CAPITAL\": \"N\", \"AREALAND\": 11.621000, \"AREAWATER\": 0.491000, \"POP_CL\": 6, \"POP2000\": 21501, \"WHITE\": 20250, \"BLACK\": 75, \"AMERI_ES\": 45, \"ASIAN\": 192, \"HAWN_PI\": 8, \"OTHER\": 711, \"MULT_RACE\": 220, \"HISPANIC\": 1527, \"MALES\": 10463, \"FEMALES\": 11038, \"AGE_UNDER5\": 1565, \"AGE_5_17\": 4572, \"AGE_18_21\": 957, \"AGE_22_29\": 2196, \"AGE_30_39\": 3667, \"AGE_40_49\": 3443, \"AGE_50_64\": 2734, \"AGE_65_UP\": 2367, \"MED_AGE\": 34.300000, \"MED_AGE_M\": 33.000000, \"MED_AGE_F\": 35.400000, \"HOUSEHOLDS\": 7872, \"AVE_HH_SZ\": 2.700000, \"HSEHLD_1_M\": 783, \"HSEHLD_1_F\": 1159, \"MARHH_CHD\": 2439, \"MARHH_NO_C\": 2063, \"MHH_CHILD\": 166, \"FHH_CHILD\": 441, \"FAMILIES\": 5560, \"AVE_FAM_SZ\": 3.250000, \"HSE_UNITS\": 8127, \"VACANT\": 255, \"OWNER_OCC\": 6009, \"RENTER_OCC\": 1863 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.281632000052383, 42.339220999162364 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Machesney Park\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"45726\", \"CAPITAL\": \"N\", \"AREALAND\": 12.008000, \"AREAWATER\": 0.381000, \"POP_CL\": 6, \"POP2000\": 20759, \"WHITE\": 19805, \"BLACK\": 284, \"AMERI_ES\": 53, \"ASIAN\": 201, \"HAWN_PI\": 7, \"OTHER\": 169, \"MULT_RACE\": 240, \"HISPANIC\": 584, \"MALES\": 10299, \"FEMALES\": 10460, \"AGE_UNDER5\": 1365, \"AGE_5_17\": 4127, \"AGE_18_21\": 1025, \"AGE_22_29\": 2018, \"AGE_30_39\": 3426, \"AGE_40_49\": 3368, \"AGE_50_64\": 3502, \"AGE_65_UP\": 1928, \"MED_AGE\": 35.900000, \"MED_AGE_M\": 35.400000, \"MED_AGE_F\": 36.300000, \"HOUSEHOLDS\": 7756, \"AVE_HH_SZ\": 2.680000, \"HSEHLD_1_M\": 716, \"HSEHLD_1_F\": 771, \"MARHH_CHD\": 2100, \"MARHH_NO_C\": 2647, \"MHH_CHILD\": 237, \"FHH_CHILD\": 447, \"FAMILIES\": 5882, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 7948, \"VACANT\": 192, \"OWNER_OCC\": 6504, \"RENTER_OCC\": 1252 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.040826999982585, 42.354988999703487 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Macomb\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"45889\", \"CAPITAL\": \"N\", \"AREALAND\": 9.849000, \"AREAWATER\": 0.401000, \"POP_CL\": 6, \"POP2000\": 18558, \"WHITE\": 16467, \"BLACK\": 1101, \"AMERI_ES\": 29, \"ASIAN\": 568, \"HAWN_PI\": 6, \"OTHER\": 128, \"MULT_RACE\": 259, \"HISPANIC\": 389, \"MALES\": 9007, \"FEMALES\": 9551, \"AGE_UNDER5\": 642, \"AGE_5_17\": 1693, \"AGE_18_21\": 5656, \"AGE_22_29\": 3468, \"AGE_30_39\": 1420, \"AGE_40_49\": 1594, \"AGE_50_64\": 1790, \"AGE_65_UP\": 2295, \"MED_AGE\": 23.200000, \"MED_AGE_M\": 23.100000, \"MED_AGE_F\": 23.300000, \"HOUSEHOLDS\": 6575, \"AVE_HH_SZ\": 2.100000, \"HSEHLD_1_M\": 1025, \"HSEHLD_1_F\": 1501, \"MARHH_CHD\": 867, \"MARHH_NO_C\": 1429, \"MHH_CHILD\": 73, \"FHH_CHILD\": 316, \"FAMILIES\": 2955, \"AVE_FAM_SZ\": 2.770000, \"HSE_UNITS\": 7037, \"VACANT\": 462, \"OWNER_OCC\": 3201, \"RENTER_OCC\": 3374 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.674047999997939, 40.460500999986166 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Marion\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"46916\", \"CAPITAL\": \"N\", \"AREALAND\": 12.826000, \"AREAWATER\": 0.697000, \"POP_CL\": 6, \"POP2000\": 16035, \"WHITE\": 14895, \"BLACK\": 696, \"AMERI_ES\": 39, \"ASIAN\": 133, \"HAWN_PI\": 8, \"OTHER\": 70, \"MULT_RACE\": 194, \"HISPANIC\": 257, \"MALES\": 7500, \"FEMALES\": 8535, \"AGE_UNDER5\": 968, \"AGE_5_17\": 2688, \"AGE_18_21\": 748, \"AGE_22_29\": 1610, \"AGE_30_39\": 2100, \"AGE_40_49\": 2110, \"AGE_50_64\": 2612, \"AGE_65_UP\": 3199, \"MED_AGE\": 39.600000, \"MED_AGE_M\": 37.300000, \"MED_AGE_F\": 41.700000, \"HOUSEHOLDS\": 6902, \"AVE_HH_SZ\": 2.250000, \"HSEHLD_1_M\": 800, \"HSEHLD_1_F\": 1486, \"MARHH_CHD\": 1282, \"MARHH_NO_C\": 1965, \"MHH_CHILD\": 124, \"FHH_CHILD\": 536, \"FAMILIES\": 4342, \"AVE_FAM_SZ\": 2.860000, \"HSE_UNITS\": 7555, \"VACANT\": 653, \"OWNER_OCC\": 4466, \"RENTER_OCC\": 2436 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.930236999913049, 37.730362999735661 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Markham\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"47007\", \"CAPITAL\": \"N\", \"AREALAND\": 5.214000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12620, \"WHITE\": 2183, \"BLACK\": 9952, \"AMERI_ES\": 20, \"ASIAN\": 75, \"HAWN_PI\": 3, \"OTHER\": 203, \"MULT_RACE\": 184, \"HISPANIC\": 396, \"MALES\": 5861, \"FEMALES\": 6759, \"AGE_UNDER5\": 925, \"AGE_5_17\": 3032, \"AGE_18_21\": 782, \"AGE_22_29\": 1146, \"AGE_30_39\": 1653, \"AGE_40_49\": 1702, \"AGE_50_64\": 1873, \"AGE_65_UP\": 1507, \"MED_AGE\": 32.900000, \"MED_AGE_M\": 30.100000, \"MED_AGE_F\": 35.200000, \"HOUSEHOLDS\": 3842, \"AVE_HH_SZ\": 3.280000, \"HSEHLD_1_M\": 254, \"HSEHLD_1_F\": 335, \"MARHH_CHD\": 646, \"MARHH_NO_C\": 1031, \"MHH_CHILD\": 116, \"FHH_CHILD\": 542, \"FAMILIES\": 3118, \"AVE_FAM_SZ\": 3.610000, \"HSE_UNITS\": 4019, \"VACANT\": 177, \"OWNER_OCC\": 3241, \"RENTER_OCC\": 601 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.691570000261478, 41.59746699837563 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Matteson\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"47540\", \"CAPITAL\": \"N\", \"AREALAND\": 7.138000, \"AREAWATER\": 0.069000, \"POP_CL\": 6, \"POP2000\": 12928, \"WHITE\": 4230, \"BLACK\": 8098, \"AMERI_ES\": 16, \"ASIAN\": 201, \"HAWN_PI\": 0, \"OTHER\": 144, \"MULT_RACE\": 239, \"HISPANIC\": 436, \"MALES\": 5977, \"FEMALES\": 6951, \"AGE_UNDER5\": 832, \"AGE_5_17\": 2746, \"AGE_18_21\": 625, \"AGE_22_29\": 1085, \"AGE_30_39\": 1741, \"AGE_40_49\": 2252, \"AGE_50_64\": 2254, \"AGE_65_UP\": 1393, \"MED_AGE\": 37.300000, \"MED_AGE_M\": 35.300000, \"MED_AGE_F\": 38.800000, \"HOUSEHOLDS\": 4561, \"AVE_HH_SZ\": 2.810000, \"HSEHLD_1_M\": 301, \"HSEHLD_1_F\": 576, \"MARHH_CHD\": 1151, \"MARHH_NO_C\": 1372, \"MHH_CHILD\": 81, \"FHH_CHILD\": 455, \"FAMILIES\": 3553, \"AVE_FAM_SZ\": 3.210000, \"HSE_UNITS\": 4712, \"VACANT\": 151, \"OWNER_OCC\": 3737, \"RENTER_OCC\": 824 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.739267000217197, 41.509831998467234 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mattoon\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"47553\", \"CAPITAL\": \"N\", \"AREALAND\": 9.309000, \"AREAWATER\": 0.004000, \"POP_CL\": 6, \"POP2000\": 18291, \"WHITE\": 17676, \"BLACK\": 260, \"AMERI_ES\": 33, \"ASIAN\": 75, \"HAWN_PI\": 2, \"OTHER\": 75, \"MULT_RACE\": 170, \"HISPANIC\": 232, \"MALES\": 8659, \"FEMALES\": 9632, \"AGE_UNDER5\": 1186, \"AGE_5_17\": 2886, \"AGE_18_21\": 1265, \"AGE_22_29\": 2106, \"AGE_30_39\": 2357, \"AGE_40_49\": 2623, \"AGE_50_64\": 2564, \"AGE_65_UP\": 3304, \"MED_AGE\": 37.600000, \"MED_AGE_M\": 34.600000, \"MED_AGE_F\": 39.900000, \"HOUSEHOLDS\": 8105, \"AVE_HH_SZ\": 2.210000, \"HSEHLD_1_M\": 1144, \"HSEHLD_1_F\": 1741, \"MARHH_CHD\": 1453, \"MARHH_NO_C\": 2081, \"MHH_CHILD\": 177, \"FHH_CHILD\": 536, \"FAMILIES\": 4680, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 8830, \"VACANT\": 725, \"OWNER_OCC\": 5031, \"RENTER_OCC\": 3074 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.373085999913144, 39.478849999363021 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Maywood\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"47774\", \"CAPITAL\": \"N\", \"AREALAND\": 2.708000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 26987, \"WHITE\": 2625, \"BLACK\": 22308, \"AMERI_ES\": 34, \"ASIAN\": 80, \"HAWN_PI\": 1, \"OTHER\": 1500, \"MULT_RACE\": 439, \"HISPANIC\": 2843, \"MALES\": 12626, \"FEMALES\": 14361, \"AGE_UNDER5\": 2152, \"AGE_5_17\": 6397, \"AGE_18_21\": 1703, \"AGE_22_29\": 3016, \"AGE_30_39\": 3656, \"AGE_40_49\": 3595, \"AGE_50_64\": 3877, \"AGE_65_UP\": 2591, \"MED_AGE\": 30.700000, \"MED_AGE_M\": 28.600000, \"MED_AGE_F\": 32.500000, \"HOUSEHOLDS\": 7937, \"AVE_HH_SZ\": 3.380000, \"HSEHLD_1_M\": 644, \"HSEHLD_1_F\": 870, \"MARHH_CHD\": 1493, \"MARHH_NO_C\": 1737, \"MHH_CHILD\": 188, \"FHH_CHILD\": 1193, \"FAMILIES\": 6151, \"AVE_FAM_SZ\": 3.840000, \"HSE_UNITS\": 8475, \"VACANT\": 538, \"OWNER_OCC\": 4988, \"RENTER_OCC\": 2949 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.84330900019178, 41.881180998612443 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Melrose Park\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"48242\", \"CAPITAL\": \"N\", \"AREALAND\": 4.239000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 23171, \"WHITE\": 16575, \"BLACK\": 676, \"AMERI_ES\": 114, \"ASIAN\": 461, \"HAWN_PI\": 3, \"OTHER\": 4653, \"MULT_RACE\": 689, \"HISPANIC\": 12485, \"MALES\": 11623, \"FEMALES\": 11548, \"AGE_UNDER5\": 2068, \"AGE_5_17\": 4279, \"AGE_18_21\": 1410, \"AGE_22_29\": 3565, \"AGE_30_39\": 3710, \"AGE_40_49\": 2754, \"AGE_50_64\": 2863, \"AGE_65_UP\": 2522, \"MED_AGE\": 30.600000, \"MED_AGE_M\": 29.800000, \"MED_AGE_F\": 31.400000, \"HOUSEHOLDS\": 7631, \"AVE_HH_SZ\": 3.030000, \"HSEHLD_1_M\": 823, \"HSEHLD_1_F\": 1013, \"MARHH_CHD\": 2241, \"MARHH_NO_C\": 1710, \"MHH_CHILD\": 186, \"FHH_CHILD\": 437, \"FAMILIES\": 5448, \"AVE_FAM_SZ\": 3.610000, \"HSE_UNITS\": 7905, \"VACANT\": 274, \"OWNER_OCC\": 4172, \"RENTER_OCC\": 3459 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.85978500018409, 41.899879998637267 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Midlothian\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"48892\", \"CAPITAL\": \"N\", \"AREALAND\": 2.829000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14315, \"WHITE\": 12636, \"BLACK\": 877, \"AMERI_ES\": 22, \"ASIAN\": 236, \"HAWN_PI\": 3, \"OTHER\": 322, \"MULT_RACE\": 219, \"HISPANIC\": 976, \"MALES\": 6975, \"FEMALES\": 7340, \"AGE_UNDER5\": 1044, \"AGE_5_17\": 2981, \"AGE_18_21\": 736, \"AGE_22_29\": 1444, \"AGE_30_39\": 2401, \"AGE_40_49\": 2256, \"AGE_50_64\": 2024, \"AGE_65_UP\": 1429, \"MED_AGE\": 34.500000, \"MED_AGE_M\": 33.600000, \"MED_AGE_F\": 35.200000, \"HOUSEHOLDS\": 5158, \"AVE_HH_SZ\": 2.760000, \"HSEHLD_1_M\": 518, \"HSEHLD_1_F\": 652, \"MARHH_CHD\": 1429, \"MARHH_NO_C\": 1349, \"MHH_CHILD\": 116, \"FHH_CHILD\": 369, \"FAMILIES\": 3747, \"AVE_FAM_SZ\": 3.260000, \"HSE_UNITS\": 5386, \"VACANT\": 228, \"OWNER_OCC\": 4144, \"RENTER_OCC\": 1014 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.721373000243148, 41.626382998426607 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mokena\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"49854\", \"CAPITAL\": \"N\", \"AREALAND\": 5.995000, \"AREAWATER\": 0.004000, \"POP_CL\": 6, \"POP2000\": 14583, \"WHITE\": 14126, \"BLACK\": 72, \"AMERI_ES\": 10, \"ASIAN\": 183, \"HAWN_PI\": 8, \"OTHER\": 92, \"MULT_RACE\": 92, \"HISPANIC\": 421, \"MALES\": 7347, \"FEMALES\": 7236, \"AGE_UNDER5\": 1169, \"AGE_5_17\": 3557, \"AGE_18_21\": 652, \"AGE_22_29\": 1064, \"AGE_30_39\": 2596, \"AGE_40_49\": 2740, \"AGE_50_64\": 1894, \"AGE_65_UP\": 911, \"MED_AGE\": 34.200000, \"MED_AGE_M\": 33.400000, \"MED_AGE_F\": 34.800000, \"HOUSEHOLDS\": 4703, \"AVE_HH_SZ\": 3.100000, \"HSEHLD_1_M\": 336, \"HSEHLD_1_F\": 321, \"MARHH_CHD\": 2027, \"MARHH_NO_C\": 1439, \"MHH_CHILD\": 45, \"FHH_CHILD\": 209, \"FAMILIES\": 3913, \"AVE_FAM_SZ\": 3.460000, \"HSE_UNITS\": 4848, \"VACANT\": 145, \"OWNER_OCC\": 4115, \"RENTER_OCC\": 588 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.876873000140222, 41.534413998688549 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Moline\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"49867\", \"CAPITAL\": \"N\", \"AREALAND\": 15.599000, \"AREAWATER\": 0.222000, \"POP_CL\": 6, \"POP2000\": 43768, \"WHITE\": 38682, \"BLACK\": 1351, \"AMERI_ES\": 87, \"ASIAN\": 607, \"HAWN_PI\": 11, \"OTHER\": 2222, \"MULT_RACE\": 808, \"HISPANIC\": 5212, \"MALES\": 20909, \"FEMALES\": 22859, \"AGE_UNDER5\": 2827, \"AGE_5_17\": 7699, \"AGE_18_21\": 2307, \"AGE_22_29\": 4520, \"AGE_30_39\": 5916, \"AGE_40_49\": 6751, \"AGE_50_64\": 7006, \"AGE_65_UP\": 6742, \"MED_AGE\": 37.900000, \"MED_AGE_M\": 36.500000, \"MED_AGE_F\": 39.200000, \"HOUSEHOLDS\": 18492, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 2338, \"HSEHLD_1_F\": 3566, \"MARHH_CHD\": 3739, \"MARHH_NO_C\": 5279, \"MHH_CHILD\": 355, \"FHH_CHILD\": 1239, \"FAMILIES\": 11603, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 19487, \"VACANT\": 995, \"OWNER_OCC\": 12448, \"RENTER_OCC\": 6044 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.502005999997195, 41.490965999978791 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Morris\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"50491\", \"CAPITAL\": \"N\", \"AREALAND\": 6.879000, \"AREAWATER\": 0.281000, \"POP_CL\": 6, \"POP2000\": 11928, \"WHITE\": 11373, \"BLACK\": 41, \"AMERI_ES\": 27, \"ASIAN\": 61, \"HAWN_PI\": 3, \"OTHER\": 292, \"MULT_RACE\": 131, \"HISPANIC\": 828, \"MALES\": 5823, \"FEMALES\": 6105, \"AGE_UNDER5\": 795, \"AGE_5_17\": 2191, \"AGE_18_21\": 610, \"AGE_22_29\": 1228, \"AGE_30_39\": 1739, \"AGE_40_49\": 1845, \"AGE_50_64\": 1578, \"AGE_65_UP\": 1942, \"MED_AGE\": 36.900000, \"MED_AGE_M\": 35.100000, \"MED_AGE_F\": 38.800000, \"HOUSEHOLDS\": 4831, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 672, \"HSEHLD_1_F\": 827, \"MARHH_CHD\": 1140, \"MARHH_NO_C\": 1314, \"MHH_CHILD\": 98, \"FHH_CHILD\": 295, \"FAMILIES\": 3069, \"AVE_FAM_SZ\": 3.030000, \"HSE_UNITS\": 5084, \"VACANT\": 253, \"OWNER_OCC\": 2766, \"RENTER_OCC\": 2065 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.426142999985544, 41.364738999337085 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Morton\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"50621\", \"CAPITAL\": \"N\", \"AREALAND\": 12.182000, \"AREAWATER\": 0.044000, \"POP_CL\": 6, \"POP2000\": 15198, \"WHITE\": 14874, \"BLACK\": 20, \"AMERI_ES\": 27, \"ASIAN\": 176, \"HAWN_PI\": 1, \"OTHER\": 39, \"MULT_RACE\": 61, \"HISPANIC\": 122, \"MALES\": 7312, \"FEMALES\": 7886, \"AGE_UNDER5\": 877, \"AGE_5_17\": 2743, \"AGE_18_21\": 636, \"AGE_22_29\": 1332, \"AGE_30_39\": 1868, \"AGE_40_49\": 2445, \"AGE_50_64\": 2506, \"AGE_65_UP\": 2791, \"MED_AGE\": 40.600000, \"MED_AGE_M\": 38.600000, \"MED_AGE_F\": 42.400000, \"HOUSEHOLDS\": 6021, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 580, \"HSEHLD_1_F\": 1006, \"MARHH_CHD\": 1606, \"MARHH_NO_C\": 2162, \"MHH_CHILD\": 51, \"FHH_CHILD\": 209, \"FAMILIES\": 4242, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 6299, \"VACANT\": 278, \"OWNER_OCC\": 4641, \"RENTER_OCC\": 1380 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.463309999975309, 40.611570999861023 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Morton Grove\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"50647\", \"CAPITAL\": \"N\", \"AREALAND\": 5.095000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 22451, \"WHITE\": 16606, \"BLACK\": 142, \"AMERI_ES\": 27, \"ASIAN\": 4980, \"HAWN_PI\": 1, \"OTHER\": 261, \"MULT_RACE\": 434, \"HISPANIC\": 988, \"MALES\": 10671, \"FEMALES\": 11780, \"AGE_UNDER5\": 1024, \"AGE_5_17\": 3642, \"AGE_18_21\": 897, \"AGE_22_29\": 1526, \"AGE_30_39\": 2570, \"AGE_40_49\": 3539, \"AGE_50_64\": 4417, \"AGE_65_UP\": 4836, \"MED_AGE\": 44.500000, \"MED_AGE_M\": 42.900000, \"MED_AGE_F\": 46.000000, \"HOUSEHOLDS\": 8199, \"AVE_HH_SZ\": 2.700000, \"HSEHLD_1_M\": 557, \"HSEHLD_1_F\": 1191, \"MARHH_CHD\": 2156, \"MARHH_NO_C\": 3279, \"MHH_CHILD\": 57, \"FHH_CHILD\": 186, \"FAMILIES\": 6287, \"AVE_FAM_SZ\": 3.170000, \"HSE_UNITS\": 8305, \"VACANT\": 106, \"OWNER_OCC\": 7736, \"RENTER_OCC\": 463 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.78645600024457, 42.041145998507375 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mount Prospect\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"51089\", \"CAPITAL\": \"N\", \"AREALAND\": 10.206000, \"AREAWATER\": 0.036000, \"POP_CL\": 7, \"POP2000\": 56265, \"WHITE\": 45338, \"BLACK\": 1026, \"AMERI_ES\": 110, \"ASIAN\": 6292, \"HAWN_PI\": 28, \"OTHER\": 2332, \"MULT_RACE\": 1139, \"HISPANIC\": 6620, \"MALES\": 27972, \"FEMALES\": 28293, \"AGE_UNDER5\": 3724, \"AGE_5_17\": 9222, \"AGE_18_21\": 2268, \"AGE_22_29\": 6576, \"AGE_30_39\": 8929, \"AGE_40_49\": 8267, \"AGE_50_64\": 8939, \"AGE_65_UP\": 8340, \"MED_AGE\": 37.200000, \"MED_AGE_M\": 35.500000, \"MED_AGE_F\": 38.900000, \"HOUSEHOLDS\": 21585, \"AVE_HH_SZ\": 2.600000, \"HSEHLD_1_M\": 2228, \"HSEHLD_1_F\": 3194, \"MARHH_CHD\": 5695, \"MARHH_NO_C\": 7192, \"MHH_CHILD\": 230, \"FHH_CHILD\": 662, \"FAMILIES\": 15163, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 21952, \"VACANT\": 367, \"OWNER_OCC\": 15441, \"RENTER_OCC\": 6144 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.936217000158237, 42.065426998742865 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mount Vernon\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"51180\", \"CAPITAL\": \"N\", \"AREALAND\": 11.521000, \"AREAWATER\": 0.099000, \"POP_CL\": 6, \"POP2000\": 16269, \"WHITE\": 13706, \"BLACK\": 2011, \"AMERI_ES\": 27, \"ASIAN\": 125, \"HAWN_PI\": 3, \"OTHER\": 77, \"MULT_RACE\": 320, \"HISPANIC\": 242, \"MALES\": 7463, \"FEMALES\": 8806, \"AGE_UNDER5\": 1087, \"AGE_5_17\": 2939, \"AGE_18_21\": 900, \"AGE_22_29\": 1595, \"AGE_30_39\": 1952, \"AGE_40_49\": 2217, \"AGE_50_64\": 2434, \"AGE_65_UP\": 3145, \"MED_AGE\": 38.300000, \"MED_AGE_M\": 35.400000, \"MED_AGE_F\": 40.900000, \"HOUSEHOLDS\": 6988, \"AVE_HH_SZ\": 2.250000, \"HSEHLD_1_M\": 947, \"HSEHLD_1_F\": 1564, \"MARHH_CHD\": 1130, \"MARHH_NO_C\": 1814, \"MHH_CHILD\": 154, \"FHH_CHILD\": 631, \"FAMILIES\": 4155, \"AVE_FAM_SZ\": 2.920000, \"HSE_UNITS\": 7814, \"VACANT\": 826, \"OWNER_OCC\": 4209, \"RENTER_OCC\": 2779 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.908158999919365, 38.313511999715672 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mundelein\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"51349\", \"CAPITAL\": \"N\", \"AREALAND\": 8.623000, \"AREAWATER\": 0.323000, \"POP_CL\": 6, \"POP2000\": 30935, \"WHITE\": 24340, \"BLACK\": 494, \"AMERI_ES\": 87, \"ASIAN\": 2041, \"HAWN_PI\": 23, \"OTHER\": 3298, \"MULT_RACE\": 652, \"HISPANIC\": 7487, \"MALES\": 15812, \"FEMALES\": 15123, \"AGE_UNDER5\": 2836, \"AGE_5_17\": 6879, \"AGE_18_21\": 1470, \"AGE_22_29\": 3348, \"AGE_30_39\": 5974, \"AGE_40_49\": 5284, \"AGE_50_64\": 3220, \"AGE_65_UP\": 1924, \"MED_AGE\": 31.700000, \"MED_AGE_M\": 30.800000, \"MED_AGE_F\": 32.700000, \"HOUSEHOLDS\": 9858, \"AVE_HH_SZ\": 3.120000, \"HSEHLD_1_M\": 755, \"HSEHLD_1_F\": 920, \"MARHH_CHD\": 3944, \"MARHH_NO_C\": 2459, \"MHH_CHILD\": 183, \"FHH_CHILD\": 526, \"FAMILIES\": 7717, \"AVE_FAM_SZ\": 3.520000, \"HSE_UNITS\": 10167, \"VACANT\": 309, \"OWNER_OCC\": 7852, \"RENTER_OCC\": 2006 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.004725000141704, 42.265072998829126 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Murphysboro\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"51453\", \"CAPITAL\": \"N\", \"AREALAND\": 4.832000, \"AREAWATER\": 0.008000, \"POP_CL\": 6, \"POP2000\": 13295, \"WHITE\": 10612, \"BLACK\": 2101, \"AMERI_ES\": 52, \"ASIAN\": 137, \"HAWN_PI\": 12, \"OTHER\": 146, \"MULT_RACE\": 235, \"HISPANIC\": 361, \"MALES\": 6799, \"FEMALES\": 6496, \"AGE_UNDER5\": 495, \"AGE_5_17\": 1457, \"AGE_18_21\": 4427, \"AGE_22_29\": 1673, \"AGE_30_39\": 1188, \"AGE_40_49\": 1171, \"AGE_50_64\": 1222, \"AGE_65_UP\": 1662, \"MED_AGE\": 22.600000, \"MED_AGE_M\": 21.800000, \"MED_AGE_F\": 24.400000, \"HOUSEHOLDS\": 3704, \"AVE_HH_SZ\": 2.200000, \"HSEHLD_1_M\": 516, \"HSEHLD_1_F\": 857, \"MARHH_CHD\": 551, \"MARHH_NO_C\": 922, \"MHH_CHILD\": 72, \"FHH_CHILD\": 355, \"FAMILIES\": 2129, \"AVE_FAM_SZ\": 2.910000, \"HSE_UNITS\": 4183, \"VACANT\": 479, \"OWNER_OCC\": 2212, \"RENTER_OCC\": 1492 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.337345999951197, 37.76724499985815 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Naperville\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"51622\", \"CAPITAL\": \"N\", \"AREALAND\": 35.377000, \"AREAWATER\": 0.145000, \"POP_CL\": 8, \"POP2000\": 128358, \"WHITE\": 109346, \"BLACK\": 3887, \"AMERI_ES\": 154, \"ASIAN\": 12380, \"HAWN_PI\": 24, \"OTHER\": 967, \"MULT_RACE\": 1600, \"HISPANIC\": 4160, \"MALES\": 62831, \"FEMALES\": 65527, \"AGE_UNDER5\": 10806, \"AGE_5_17\": 30046, \"AGE_18_21\": 4839, \"AGE_22_29\": 10251, \"AGE_30_39\": 22968, \"AGE_40_49\": 24237, \"AGE_50_64\": 17220, \"AGE_65_UP\": 7991, \"MED_AGE\": 34.200000, \"MED_AGE_M\": 33.600000, \"MED_AGE_F\": 34.800000, \"HOUSEHOLDS\": 43751, \"AVE_HH_SZ\": 2.890000, \"HSEHLD_1_M\": 3451, \"HSEHLD_1_F\": 4796, \"MARHH_CHD\": 18649, \"MARHH_NO_C\": 11607, \"MHH_CHILD\": 397, \"FHH_CHILD\": 1641, \"FAMILIES\": 33644, \"AVE_FAM_SZ\": 3.370000, \"HSE_UNITS\": 45651, \"VACANT\": 1900, \"OWNER_OCC\": 34876, \"RENTER_OCC\": 8875 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.155719000052088, 41.749825999048788 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"New Lenox\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"52584\", \"CAPITAL\": \"N\", \"AREALAND\": 10.094000, \"AREAWATER\": 0.018000, \"POP_CL\": 6, \"POP2000\": 17771, \"WHITE\": 17354, \"BLACK\": 54, \"AMERI_ES\": 11, \"ASIAN\": 65, \"HAWN_PI\": 2, \"OTHER\": 150, \"MULT_RACE\": 135, \"HISPANIC\": 563, \"MALES\": 8660, \"FEMALES\": 9111, \"AGE_UNDER5\": 1576, \"AGE_5_17\": 4280, \"AGE_18_21\": 718, \"AGE_22_29\": 1336, \"AGE_30_39\": 3401, \"AGE_40_49\": 3056, \"AGE_50_64\": 2173, \"AGE_65_UP\": 1231, \"MED_AGE\": 33.300000, \"MED_AGE_M\": 33.000000, \"MED_AGE_F\": 33.500000, \"HOUSEHOLDS\": 5853, \"AVE_HH_SZ\": 3.030000, \"HSEHLD_1_M\": 357, \"HSEHLD_1_F\": 470, \"MARHH_CHD\": 2494, \"MARHH_NO_C\": 1719, \"MHH_CHILD\": 86, \"FHH_CHILD\": 286, \"FAMILIES\": 4834, \"AVE_FAM_SZ\": 3.390000, \"HSE_UNITS\": 6064, \"VACANT\": 211, \"OWNER_OCC\": 5261, \"RENTER_OCC\": 592 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.970597000096248, 41.508250998826263 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Niles\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"53000\", \"CAPITAL\": \"N\", \"AREALAND\": 5.875000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 30068, \"WHITE\": 25022, \"BLACK\": 139, \"AMERI_ES\": 27, \"ASIAN\": 3812, \"HAWN_PI\": 4, \"OTHER\": 502, \"MULT_RACE\": 562, \"HISPANIC\": 1512, \"MALES\": 14028, \"FEMALES\": 16040, \"AGE_UNDER5\": 1137, \"AGE_5_17\": 3873, \"AGE_18_21\": 1131, \"AGE_22_29\": 2448, \"AGE_30_39\": 3572, \"AGE_40_49\": 4164, \"AGE_50_64\": 5410, \"AGE_65_UP\": 8333, \"MED_AGE\": 46.800000, \"MED_AGE_M\": 43.400000, \"MED_AGE_F\": 50.100000, \"HOUSEHOLDS\": 12002, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 1145, \"HSEHLD_1_F\": 2533, \"MARHH_CHD\": 2236, \"MARHH_NO_C\": 4246, \"MHH_CHILD\": 105, \"FHH_CHILD\": 290, \"FAMILIES\": 7941, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 12256, \"VACANT\": 254, \"OWNER_OCC\": 9180, \"RENTER_OCC\": 2822 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.816862000223367, 42.032328998558889 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Normal\", \"CLASS\": \"town\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"53234\", \"CAPITAL\": \"N\", \"AREALAND\": 13.619000, \"AREAWATER\": 0.062000, \"POP_CL\": 6, \"POP2000\": 45386, \"WHITE\": 39745, \"BLACK\": 3499, \"AMERI_ES\": 68, \"ASIAN\": 1001, \"HAWN_PI\": 18, \"OTHER\": 421, \"MULT_RACE\": 634, \"HISPANIC\": 1162, \"MALES\": 21316, \"FEMALES\": 24070, \"AGE_UNDER5\": 2241, \"AGE_5_17\": 5698, \"AGE_18_21\": 12251, \"AGE_22_29\": 8204, \"AGE_30_39\": 4941, \"AGE_40_49\": 4525, \"AGE_50_64\": 4069, \"AGE_65_UP\": 3457, \"MED_AGE\": 23.000000, \"MED_AGE_M\": 23.200000, \"MED_AGE_F\": 22.800000, \"HOUSEHOLDS\": 15157, \"AVE_HH_SZ\": 2.430000, \"HSEHLD_1_M\": 1698, \"HSEHLD_1_F\": 2341, \"MARHH_CHD\": 2968, \"MARHH_NO_C\": 3461, \"MHH_CHILD\": 191, \"FHH_CHILD\": 977, \"FAMILIES\": 8187, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 15683, \"VACANT\": 526, \"OWNER_OCC\": 8364, \"RENTER_OCC\": 6793 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.988700999956862, 40.5121889997097 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Norridge\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"53377\", \"CAPITAL\": \"N\", \"AREALAND\": 1.820000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14582, \"WHITE\": 13829, \"BLACK\": 15, \"AMERI_ES\": 11, \"ASIAN\": 399, \"HAWN_PI\": 1, \"OTHER\": 180, \"MULT_RACE\": 147, \"HISPANIC\": 553, \"MALES\": 6776, \"FEMALES\": 7806, \"AGE_UNDER5\": 519, \"AGE_5_17\": 1933, \"AGE_18_21\": 626, \"AGE_22_29\": 1226, \"AGE_30_39\": 1594, \"AGE_40_49\": 2086, \"AGE_50_64\": 2384, \"AGE_65_UP\": 4214, \"MED_AGE\": 46.600000, \"MED_AGE_M\": 44.100000, \"MED_AGE_F\": 49.200000, \"HOUSEHOLDS\": 5727, \"AVE_HH_SZ\": 2.470000, \"HSEHLD_1_M\": 532, \"HSEHLD_1_F\": 1054, \"MARHH_CHD\": 1077, \"MARHH_NO_C\": 2132, \"MHH_CHILD\": 26, \"FHH_CHILD\": 150, \"FAMILIES\": 3991, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 5842, \"VACANT\": 115, \"OWNER_OCC\": 4847, \"RENTER_OCC\": 880 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.823859000211996, 41.965029998575154 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"North Aurora\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"53442\", \"CAPITAL\": \"N\", \"AREALAND\": 5.159000, \"AREAWATER\": 0.147000, \"POP_CL\": 6, \"POP2000\": 10585, \"WHITE\": 9284, \"BLACK\": 474, \"AMERI_ES\": 22, \"ASIAN\": 269, \"HAWN_PI\": 3, \"OTHER\": 352, \"MULT_RACE\": 181, \"HISPANIC\": 1025, \"MALES\": 5231, \"FEMALES\": 5354, \"AGE_UNDER5\": 1024, \"AGE_5_17\": 1847, \"AGE_18_21\": 401, \"AGE_22_29\": 1182, \"AGE_30_39\": 2146, \"AGE_40_49\": 1598, \"AGE_50_64\": 1343, \"AGE_65_UP\": 1044, \"MED_AGE\": 33.700000, \"MED_AGE_M\": 33.500000, \"MED_AGE_F\": 34.000000, \"HOUSEHOLDS\": 4019, \"AVE_HH_SZ\": 2.600000, \"HSEHLD_1_M\": 483, \"HSEHLD_1_F\": 501, \"MARHH_CHD\": 1205, \"MARHH_NO_C\": 1181, \"MHH_CHILD\": 62, \"FHH_CHILD\": 181, \"FAMILIES\": 2833, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 4220, \"VACANT\": 201, \"OWNER_OCC\": 3144, \"RENTER_OCC\": 875 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.329316000017258, 41.809386999231762 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Northbrook\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"53481\", \"CAPITAL\": \"N\", \"AREALAND\": 12.918000, \"AREAWATER\": 0.049000, \"POP_CL\": 6, \"POP2000\": 33435, \"WHITE\": 29830, \"BLACK\": 190, \"AMERI_ES\": 13, \"ASIAN\": 2958, \"HAWN_PI\": 3, \"OTHER\": 119, \"MULT_RACE\": 322, \"HISPANIC\": 616, \"MALES\": 16148, \"FEMALES\": 17287, \"AGE_UNDER5\": 1922, \"AGE_5_17\": 6605, \"AGE_18_21\": 894, \"AGE_22_29\": 1424, \"AGE_30_39\": 3608, \"AGE_40_49\": 5760, \"AGE_50_64\": 6982, \"AGE_65_UP\": 6240, \"MED_AGE\": 44.100000, \"MED_AGE_M\": 42.800000, \"MED_AGE_F\": 45.200000, \"HOUSEHOLDS\": 12203, \"AVE_HH_SZ\": 2.680000, \"HSEHLD_1_M\": 616, \"HSEHLD_1_F\": 1689, \"MARHH_CHD\": 3935, \"MARHH_NO_C\": 4886, \"MHH_CHILD\": 82, \"FHH_CHILD\": 308, \"FAMILIES\": 9682, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 12492, \"VACANT\": 289, \"OWNER_OCC\": 11189, \"RENTER_OCC\": 1014 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.840715000218026, 42.129225998591089 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"North Chicago\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"53559\", \"CAPITAL\": \"N\", \"AREALAND\": 7.832000, \"AREAWATER\": 0.013000, \"POP_CL\": 6, \"POP2000\": 35918, \"WHITE\": 17140, \"BLACK\": 13024, \"AMERI_ES\": 301, \"ASIAN\": 1289, \"HAWN_PI\": 53, \"OTHER\": 2750, \"MULT_RACE\": 1361, \"HISPANIC\": 6552, \"MALES\": 21904, \"FEMALES\": 14014, \"AGE_UNDER5\": 2872, \"AGE_5_17\": 5772, \"AGE_18_21\": 9386, \"AGE_22_29\": 6445, \"AGE_30_39\": 4959, \"AGE_40_49\": 2674, \"AGE_50_64\": 2170, \"AGE_65_UP\": 1640, \"MED_AGE\": 22.000000, \"MED_AGE_M\": 21.300000, \"MED_AGE_F\": 24.000000, \"HOUSEHOLDS\": 7661, \"AVE_HH_SZ\": 3.090000, \"HSEHLD_1_M\": 822, \"HSEHLD_1_F\": 846, \"MARHH_CHD\": 2408, \"MARHH_NO_C\": 1307, \"MHH_CHILD\": 199, \"FHH_CHILD\": 941, \"FAMILIES\": 5575, \"AVE_FAM_SZ\": 3.640000, \"HSE_UNITS\": 8377, \"VACANT\": 716, \"OWNER_OCC\": 2780, \"RENTER_OCC\": 4881 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.854470000228403, 42.322271998600186 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Northlake\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"53871\", \"CAPITAL\": \"N\", \"AREALAND\": 3.015000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11878, \"WHITE\": 8964, \"BLACK\": 285, \"AMERI_ES\": 59, \"ASIAN\": 436, \"HAWN_PI\": 6, \"OTHER\": 1825, \"MULT_RACE\": 303, \"HISPANIC\": 4133, \"MALES\": 5819, \"FEMALES\": 6059, \"AGE_UNDER5\": 785, \"AGE_5_17\": 2229, \"AGE_18_21\": 663, \"AGE_22_29\": 1309, \"AGE_30_39\": 1723, \"AGE_40_49\": 1765, \"AGE_50_64\": 1571, \"AGE_65_UP\": 1833, \"MED_AGE\": 35.900000, \"MED_AGE_M\": 33.800000, \"MED_AGE_F\": 37.900000, \"HOUSEHOLDS\": 3873, \"AVE_HH_SZ\": 2.950000, \"HSEHLD_1_M\": 394, \"HSEHLD_1_F\": 562, \"MARHH_CHD\": 1088, \"MARHH_NO_C\": 999, \"MHH_CHILD\": 73, \"FHH_CHILD\": 163, \"FAMILIES\": 2755, \"AVE_FAM_SZ\": 3.560000, \"HSE_UNITS\": 4008, \"VACANT\": 135, \"OWNER_OCC\": 2989, \"RENTER_OCC\": 884 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.900786000162881, 41.912479998699688 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Oak Forest\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"54638\", \"CAPITAL\": \"N\", \"AREALAND\": 5.649000, \"AREAWATER\": 0.053000, \"POP_CL\": 6, \"POP2000\": 28051, \"WHITE\": 25353, \"BLACK\": 1021, \"AMERI_ES\": 42, \"ASIAN\": 744, \"HAWN_PI\": 4, \"OTHER\": 468, \"MULT_RACE\": 419, \"HISPANIC\": 1645, \"MALES\": 13977, \"FEMALES\": 14074, \"AGE_UNDER5\": 1889, \"AGE_5_17\": 5407, \"AGE_18_21\": 1445, \"AGE_22_29\": 2834, \"AGE_30_39\": 4563, \"AGE_40_49\": 4660, \"AGE_50_64\": 4676, \"AGE_65_UP\": 2577, \"MED_AGE\": 35.600000, \"MED_AGE_M\": 34.900000, \"MED_AGE_F\": 36.400000, \"HOUSEHOLDS\": 9785, \"AVE_HH_SZ\": 2.810000, \"HSEHLD_1_M\": 995, \"HSEHLD_1_F\": 1026, \"MARHH_CHD\": 3011, \"MARHH_NO_C\": 2961, \"MHH_CHILD\": 168, \"FHH_CHILD\": 429, \"FAMILIES\": 7335, \"AVE_FAM_SZ\": 3.300000, \"HSE_UNITS\": 10022, \"VACANT\": 237, \"OWNER_OCC\": 7991, \"RENTER_OCC\": 1794 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.750575000220834, 41.607582998478996 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Oak Lawn\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"54820\", \"CAPITAL\": \"N\", \"AREALAND\": 8.595000, \"AREAWATER\": 0.000000, \"POP_CL\": 7, \"POP2000\": 55245, \"WHITE\": 51570, \"BLACK\": 673, \"AMERI_ES\": 92, \"ASIAN\": 953, \"HAWN_PI\": 5, \"OTHER\": 905, \"MULT_RACE\": 1047, \"HISPANIC\": 2942, \"MALES\": 25902, \"FEMALES\": 29343, \"AGE_UNDER5\": 2976, \"AGE_5_17\": 9147, \"AGE_18_21\": 2316, \"AGE_22_29\": 4568, \"AGE_30_39\": 7303, \"AGE_40_49\": 8081, \"AGE_50_64\": 8839, \"AGE_65_UP\": 12015, \"MED_AGE\": 41.500000, \"MED_AGE_M\": 39.100000, \"MED_AGE_F\": 43.900000, \"HOUSEHOLDS\": 22220, \"AVE_HH_SZ\": 2.460000, \"HSEHLD_1_M\": 2270, \"HSEHLD_1_F\": 4606, \"MARHH_CHD\": 4752, \"MARHH_NO_C\": 6807, \"MHH_CHILD\": 227, \"FHH_CHILD\": 749, \"FAMILIES\": 14555, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 22846, \"VACANT\": 626, \"OWNER_OCC\": 18422, \"RENTER_OCC\": 3798 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.753401000231108, 41.71508199847549 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Oak Park\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"54885\", \"CAPITAL\": \"N\", \"AREALAND\": 4.701000, \"AREAWATER\": 0.000000, \"POP_CL\": 7, \"POP2000\": 52524, \"WHITE\": 36124, \"BLACK\": 11788, \"AMERI_ES\": 81, \"ASIAN\": 2178, \"HAWN_PI\": 16, \"OTHER\": 857, \"MULT_RACE\": 1480, \"HISPANIC\": 2374, \"MALES\": 24414, \"FEMALES\": 28110, \"AGE_UNDER5\": 3636, \"AGE_5_17\": 9085, \"AGE_18_21\": 1588, \"AGE_22_29\": 6276, \"AGE_30_39\": 9403, \"AGE_40_49\": 9349, \"AGE_50_64\": 8180, \"AGE_65_UP\": 5007, \"MED_AGE\": 36.000000, \"MED_AGE_M\": 34.600000, \"MED_AGE_F\": 37.200000, \"HOUSEHOLDS\": 23079, \"AVE_HH_SZ\": 2.260000, \"HSEHLD_1_M\": 3268, \"HSEHLD_1_F\": 5279, \"MARHH_CHD\": 5008, \"MARHH_NO_C\": 4708, \"MHH_CHILD\": 270, \"FHH_CHILD\": 1524, \"FAMILIES\": 12980, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 23723, \"VACANT\": 644, \"OWNER_OCC\": 12986, \"RENTER_OCC\": 10093 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.790332000225234, 41.885980998525383 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"O'Fallon\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"55249\", \"CAPITAL\": \"N\", \"AREALAND\": 10.913000, \"AREAWATER\": 0.012000, \"POP_CL\": 6, \"POP2000\": 21910, \"WHITE\": 18113, \"BLACK\": 2627, \"AMERI_ES\": 51, \"ASIAN\": 542, \"HAWN_PI\": 15, \"OTHER\": 174, \"MULT_RACE\": 388, \"HISPANIC\": 488, \"MALES\": 10568, \"FEMALES\": 11342, \"AGE_UNDER5\": 1442, \"AGE_5_17\": 4764, \"AGE_18_21\": 1015, \"AGE_22_29\": 2083, \"AGE_30_39\": 3523, \"AGE_40_49\": 4066, \"AGE_50_64\": 3076, \"AGE_65_UP\": 1941, \"MED_AGE\": 35.300000, \"MED_AGE_M\": 34.200000, \"MED_AGE_F\": 36.200000, \"HOUSEHOLDS\": 8310, \"AVE_HH_SZ\": 2.620000, \"HSEHLD_1_M\": 807, \"HSEHLD_1_F\": 1121, \"MARHH_CHD\": 2580, \"MARHH_NO_C\": 2320, \"MHH_CHILD\": 144, \"FHH_CHILD\": 569, \"FAMILIES\": 6020, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 8626, \"VACANT\": 316, \"OWNER_OCC\": 5712, \"RENTER_OCC\": 2598 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.911999999984005, 38.591548999944621 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Orland Park\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"56640\", \"CAPITAL\": \"N\", \"AREALAND\": 19.141000, \"AREAWATER\": 0.295000, \"POP_CL\": 7, \"POP2000\": 51077, \"WHITE\": 47772, \"BLACK\": 374, \"AMERI_ES\": 34, \"ASIAN\": 1770, \"HAWN_PI\": 18, \"OTHER\": 530, \"MULT_RACE\": 579, \"HISPANIC\": 1874, \"MALES\": 24431, \"FEMALES\": 26646, \"AGE_UNDER5\": 2752, \"AGE_5_17\": 9686, \"AGE_18_21\": 2145, \"AGE_22_29\": 3730, \"AGE_30_39\": 6096, \"AGE_40_49\": 8603, \"AGE_50_64\": 9693, \"AGE_65_UP\": 8372, \"MED_AGE\": 41.400000, \"MED_AGE_M\": 39.900000, \"MED_AGE_F\": 42.600000, \"HOUSEHOLDS\": 18675, \"AVE_HH_SZ\": 2.710000, \"HSEHLD_1_M\": 1229, \"HSEHLD_1_F\": 2612, \"MARHH_CHD\": 5276, \"MARHH_NO_C\": 7111, \"MHH_CHILD\": 153, \"FHH_CHILD\": 581, \"FAMILIES\": 14356, \"AVE_FAM_SZ\": 3.160000, \"HSE_UNITS\": 19045, \"VACANT\": 370, \"OWNER_OCC\": 17004, \"RENTER_OCC\": 1671 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.854302000159194, 41.611581998648525 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Oswego\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"56887\", \"CAPITAL\": \"N\", \"AREALAND\": 6.582000, \"AREAWATER\": 0.097000, \"POP_CL\": 6, \"POP2000\": 13326, \"WHITE\": 12459, \"BLACK\": 239, \"AMERI_ES\": 24, \"ASIAN\": 183, \"HAWN_PI\": 4, \"OTHER\": 238, \"MULT_RACE\": 179, \"HISPANIC\": 665, \"MALES\": 6543, \"FEMALES\": 6783, \"AGE_UNDER5\": 1323, \"AGE_5_17\": 2918, \"AGE_18_21\": 448, \"AGE_22_29\": 1222, \"AGE_30_39\": 2880, \"AGE_40_49\": 2035, \"AGE_50_64\": 1571, \"AGE_65_UP\": 929, \"MED_AGE\": 32.700000, \"MED_AGE_M\": 32.300000, \"MED_AGE_F\": 33.100000, \"HOUSEHOLDS\": 4476, \"AVE_HH_SZ\": 2.960000, \"HSEHLD_1_M\": 233, \"HSEHLD_1_F\": 392, \"MARHH_CHD\": 1897, \"MARHH_NO_C\": 1416, \"MHH_CHILD\": 52, \"FHH_CHILD\": 172, \"FAMILIES\": 3694, \"AVE_FAM_SZ\": 3.300000, \"HSE_UNITS\": 4591, \"VACANT\": 115, \"OWNER_OCC\": 4132, \"RENTER_OCC\": 344 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.341778000009825, 41.690680999248428 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ottawa\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"56926\", \"CAPITAL\": \"N\", \"AREALAND\": 7.329000, \"AREAWATER\": 0.334000, \"POP_CL\": 6, \"POP2000\": 18307, \"WHITE\": 17440, \"BLACK\": 251, \"AMERI_ES\": 27, \"ASIAN\": 152, \"HAWN_PI\": 11, \"OTHER\": 171, \"MULT_RACE\": 255, \"HISPANIC\": 954, \"MALES\": 8738, \"FEMALES\": 9569, \"AGE_UNDER5\": 1180, \"AGE_5_17\": 3386, \"AGE_18_21\": 900, \"AGE_22_29\": 1639, \"AGE_30_39\": 2579, \"AGE_40_49\": 2751, \"AGE_50_64\": 2587, \"AGE_65_UP\": 3285, \"MED_AGE\": 38.200000, \"MED_AGE_M\": 36.400000, \"MED_AGE_F\": 39.800000, \"HOUSEHOLDS\": 7510, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 919, \"HSEHLD_1_F\": 1397, \"MARHH_CHD\": 1614, \"MARHH_NO_C\": 2093, \"MHH_CHILD\": 163, \"FHH_CHILD\": 555, \"FAMILIES\": 4892, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 8030, \"VACANT\": 520, \"OWNER_OCC\": 5058, \"RENTER_OCC\": 2452 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.842183999967773, 41.34711799962389 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Palatine\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"57225\", \"CAPITAL\": \"N\", \"AREALAND\": 12.973000, \"AREAWATER\": 0.134000, \"POP_CL\": 7, \"POP2000\": 65479, \"WHITE\": 54381, \"BLACK\": 1407, \"AMERI_ES\": 147, \"ASIAN\": 4953, \"HAWN_PI\": 27, \"OTHER\": 3327, \"MULT_RACE\": 1237, \"HISPANIC\": 9247, \"MALES\": 32616, \"FEMALES\": 32863, \"AGE_UNDER5\": 4807, \"AGE_5_17\": 11450, \"AGE_18_21\": 2671, \"AGE_22_29\": 8892, \"AGE_30_39\": 11725, \"AGE_40_49\": 10521, \"AGE_50_64\": 9649, \"AGE_65_UP\": 5764, \"MED_AGE\": 34.300000, \"MED_AGE_M\": 33.000000, \"MED_AGE_F\": 35.500000, \"HOUSEHOLDS\": 25518, \"AVE_HH_SZ\": 2.560000, \"HSEHLD_1_M\": 3136, \"HSEHLD_1_F\": 3882, \"MARHH_CHD\": 6731, \"MARHH_NO_C\": 6865, \"MHH_CHILD\": 331, \"FHH_CHILD\": 1148, \"FAMILIES\": 16592, \"AVE_FAM_SZ\": 3.180000, \"HSE_UNITS\": 26223, \"VACANT\": 705, \"OWNER_OCC\": 17674, \"RENTER_OCC\": 7844 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.04061300011513, 42.116884998886242 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Palos Heights\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"57381\", \"CAPITAL\": \"N\", \"AREALAND\": 3.780000, \"AREAWATER\": 0.086000, \"POP_CL\": 6, \"POP2000\": 11260, \"WHITE\": 10853, \"BLACK\": 49, \"AMERI_ES\": 10, \"ASIAN\": 232, \"HAWN_PI\": 0, \"OTHER\": 28, \"MULT_RACE\": 88, \"HISPANIC\": 161, \"MALES\": 5214, \"FEMALES\": 6046, \"AGE_UNDER5\": 500, \"AGE_5_17\": 1779, \"AGE_18_21\": 669, \"AGE_22_29\": 544, \"AGE_30_39\": 1003, \"AGE_40_49\": 1623, \"AGE_50_64\": 2274, \"AGE_65_UP\": 2868, \"MED_AGE\": 46.800000, \"MED_AGE_M\": 45.100000, \"MED_AGE_F\": 48.700000, \"HOUSEHOLDS\": 4123, \"AVE_HH_SZ\": 2.540000, \"HSEHLD_1_M\": 262, \"HSEHLD_1_F\": 652, \"MARHH_CHD\": 925, \"MARHH_NO_C\": 1836, \"MHH_CHILD\": 23, \"FHH_CHILD\": 82, \"FAMILIES\": 3134, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 4268, \"VACANT\": 145, \"OWNER_OCC\": 4016, \"RENTER_OCC\": 107 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.797201000197333, 41.6653319985531 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Palos Hills\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"57394\", \"CAPITAL\": \"N\", \"AREALAND\": 4.167000, \"AREAWATER\": 0.070000, \"POP_CL\": 6, \"POP2000\": 17665, \"WHITE\": 15401, \"BLACK\": 968, \"AMERI_ES\": 19, \"ASIAN\": 472, \"HAWN_PI\": 2, \"OTHER\": 277, \"MULT_RACE\": 526, \"HISPANIC\": 854, \"MALES\": 8279, \"FEMALES\": 9386, \"AGE_UNDER5\": 874, \"AGE_5_17\": 2482, \"AGE_18_21\": 821, \"AGE_22_29\": 2039, \"AGE_30_39\": 2265, \"AGE_40_49\": 2581, \"AGE_50_64\": 3588, \"AGE_65_UP\": 3015, \"MED_AGE\": 41.500000, \"MED_AGE_M\": 39.300000, \"MED_AGE_F\": 43.200000, \"HOUSEHOLDS\": 7320, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 834, \"HSEHLD_1_F\": 1373, \"MARHH_CHD\": 1294, \"MARHH_NO_C\": 2421, \"MHH_CHILD\": 81, \"FHH_CHILD\": 353, \"FAMILIES\": 4776, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 7492, \"VACANT\": 172, \"OWNER_OCC\": 5686, \"RENTER_OCC\": 1634 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.826257000183517, 41.699281998597954 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Park Forest\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"57732\", \"CAPITAL\": \"N\", \"AREALAND\": 4.925000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 23462, \"WHITE\": 13003, \"BLACK\": 9247, \"AMERI_ES\": 53, \"ASIAN\": 193, \"HAWN_PI\": 17, \"OTHER\": 362, \"MULT_RACE\": 587, \"HISPANIC\": 1169, \"MALES\": 10902, \"FEMALES\": 12560, \"AGE_UNDER5\": 1676, \"AGE_5_17\": 4646, \"AGE_18_21\": 1077, \"AGE_22_29\": 2348, \"AGE_30_39\": 3673, \"AGE_40_49\": 3769, \"AGE_50_64\": 3568, \"AGE_65_UP\": 2705, \"MED_AGE\": 35.600000, \"MED_AGE_M\": 33.100000, \"MED_AGE_F\": 37.800000, \"HOUSEHOLDS\": 9138, \"AVE_HH_SZ\": 2.520000, \"HSEHLD_1_M\": 879, \"HSEHLD_1_F\": 1712, \"MARHH_CHD\": 1888, \"MARHH_NO_C\": 2213, \"MHH_CHILD\": 173, \"FHH_CHILD\": 929, \"FAMILIES\": 6186, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 9470, \"VACANT\": 332, \"OWNER_OCC\": 6795, \"RENTER_OCC\": 2343 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.687054000250754, 41.483978998376969 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Park Ridge\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"57875\", \"CAPITAL\": \"N\", \"AREALAND\": 7.028000, \"AREAWATER\": 0.042000, \"POP_CL\": 6, \"POP2000\": 37775, \"WHITE\": 36031, \"BLACK\": 90, \"AMERI_ES\": 24, \"ASIAN\": 1004, \"HAWN_PI\": 18, \"OTHER\": 329, \"MULT_RACE\": 279, \"HISPANIC\": 1113, \"MALES\": 17902, \"FEMALES\": 19873, \"AGE_UNDER5\": 2194, \"AGE_5_17\": 7072, \"AGE_18_21\": 1189, \"AGE_22_29\": 2162, \"AGE_30_39\": 4680, \"AGE_40_49\": 6358, \"AGE_50_64\": 6699, \"AGE_65_UP\": 7421, \"MED_AGE\": 42.500000, \"MED_AGE_M\": 40.800000, \"MED_AGE_F\": 43.800000, \"HOUSEHOLDS\": 14219, \"AVE_HH_SZ\": 2.610000, \"HSEHLD_1_M\": 1136, \"HSEHLD_1_F\": 2292, \"MARHH_CHD\": 4052, \"MARHH_NO_C\": 4963, \"MHH_CHILD\": 96, \"FHH_CHILD\": 445, \"FAMILIES\": 10466, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 14646, \"VACANT\": 427, \"OWNER_OCC\": 12455, \"RENTER_OCC\": 1764 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.841587000205791, 42.011829998600618 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pekin\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"58447\", \"CAPITAL\": \"N\", \"AREALAND\": 13.150000, \"AREAWATER\": 0.596000, \"POP_CL\": 6, \"POP2000\": 33857, \"WHITE\": 32434, \"BLACK\": 863, \"AMERI_ES\": 125, \"ASIAN\": 139, \"HAWN_PI\": 4, \"OTHER\": 62, \"MULT_RACE\": 230, \"HISPANIC\": 445, \"MALES\": 16626, \"FEMALES\": 17231, \"AGE_UNDER5\": 2217, \"AGE_5_17\": 5645, \"AGE_18_21\": 1769, \"AGE_22_29\": 3862, \"AGE_30_39\": 5076, \"AGE_40_49\": 5099, \"AGE_50_64\": 4886, \"AGE_65_UP\": 5303, \"MED_AGE\": 37.100000, \"MED_AGE_M\": 35.400000, \"MED_AGE_F\": 38.700000, \"HOUSEHOLDS\": 13380, \"AVE_HH_SZ\": 2.370000, \"HSEHLD_1_M\": 1494, \"HSEHLD_1_F\": 2447, \"MARHH_CHD\": 2818, \"MARHH_NO_C\": 3960, \"MHH_CHILD\": 318, \"FHH_CHILD\": 1024, \"FAMILIES\": 8806, \"AVE_FAM_SZ\": 2.920000, \"HSE_UNITS\": 14038, \"VACANT\": 658, \"OWNER_OCC\": 8995, \"RENTER_OCC\": 4385 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.63694899998076, 40.567787999896723 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Peoria\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"59000\", \"CAPITAL\": \"N\", \"AREALAND\": 44.403000, \"AREAWATER\": 2.230000, \"POP_CL\": 8, \"POP2000\": 112936, \"WHITE\": 78254, \"BLACK\": 27992, \"AMERI_ES\": 229, \"ASIAN\": 2629, \"HAWN_PI\": 42, \"OTHER\": 1355, \"MULT_RACE\": 2435, \"HISPANIC\": 2839, \"MALES\": 53471, \"FEMALES\": 59465, \"AGE_UNDER5\": 8366, \"AGE_5_17\": 20645, \"AGE_18_21\": 8382, \"AGE_22_29\": 13409, \"AGE_30_39\": 14734, \"AGE_40_49\": 15503, \"AGE_50_64\": 15864, \"AGE_65_UP\": 16033, \"MED_AGE\": 33.800000, \"MED_AGE_M\": 31.800000, \"MED_AGE_F\": 35.600000, \"HOUSEHOLDS\": 45199, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 6139, \"HSEHLD_1_F\": 8856, \"MARHH_CHD\": 7541, \"MARHH_NO_C\": 11248, \"MHH_CHILD\": 822, \"FHH_CHILD\": 4753, \"FAMILIES\": 27334, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 49125, \"VACANT\": 3926, \"OWNER_OCC\": 26996, \"RENTER_OCC\": 18203 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.609420999980514, 40.720736999890711 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Plainfield\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"60287\", \"CAPITAL\": \"N\", \"AREALAND\": 11.612000, \"AREAWATER\": 0.835000, \"POP_CL\": 6, \"POP2000\": 13038, \"WHITE\": 12497, \"BLACK\": 110, \"AMERI_ES\": 10, \"ASIAN\": 163, \"HAWN_PI\": 1, \"OTHER\": 132, \"MULT_RACE\": 125, \"HISPANIC\": 504, \"MALES\": 6537, \"FEMALES\": 6501, \"AGE_UNDER5\": 1248, \"AGE_5_17\": 2909, \"AGE_18_21\": 495, \"AGE_22_29\": 1074, \"AGE_30_39\": 2784, \"AGE_40_49\": 2094, \"AGE_50_64\": 1616, \"AGE_65_UP\": 818, \"MED_AGE\": 33.200000, \"MED_AGE_M\": 33.000000, \"MED_AGE_F\": 33.500000, \"HOUSEHOLDS\": 4315, \"AVE_HH_SZ\": 3.010000, \"HSEHLD_1_M\": 322, \"HSEHLD_1_F\": 315, \"MARHH_CHD\": 1855, \"MARHH_NO_C\": 1322, \"MHH_CHILD\": 45, \"FHH_CHILD\": 139, \"FAMILIES\": 3522, \"AVE_FAM_SZ\": 3.370000, \"HSE_UNITS\": 4609, \"VACANT\": 294, \"OWNER_OCC\": 3783, \"RENTER_OCC\": 532 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.20283700003263, 41.617279999108497 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pontiac\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"61015\", \"CAPITAL\": \"N\", \"AREALAND\": 5.243000, \"AREAWATER\": 0.010000, \"POP_CL\": 6, \"POP2000\": 11864, \"WHITE\": 10131, \"BLACK\": 1293, \"AMERI_ES\": 22, \"ASIAN\": 51, \"HAWN_PI\": 0, \"OTHER\": 244, \"MULT_RACE\": 123, \"HISPANIC\": 519, \"MALES\": 6484, \"FEMALES\": 5380, \"AGE_UNDER5\": 712, \"AGE_5_17\": 2005, \"AGE_18_21\": 679, \"AGE_22_29\": 1585, \"AGE_30_39\": 1985, \"AGE_40_49\": 1694, \"AGE_50_64\": 1602, \"AGE_65_UP\": 1602, \"MED_AGE\": 35.100000, \"MED_AGE_M\": 32.800000, \"MED_AGE_F\": 38.600000, \"HOUSEHOLDS\": 4139, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 520, \"HSEHLD_1_F\": 786, \"MARHH_CHD\": 858, \"MARHH_NO_C\": 1113, \"MHH_CHILD\": 113, \"FHH_CHILD\": 348, \"FAMILIES\": 2621, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 4379, \"VACANT\": 240, \"OWNER_OCC\": 2769, \"RENTER_OCC\": 1370 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.630384999958864, 40.880002999507681 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Prospect Heights\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"62016\", \"CAPITAL\": \"N\", \"AREALAND\": 4.258000, \"AREAWATER\": 0.024000, \"POP_CL\": 6, \"POP2000\": 17081, \"WHITE\": 13223, \"BLACK\": 300, \"AMERI_ES\": 42, \"ASIAN\": 746, \"HAWN_PI\": 8, \"OTHER\": 2361, \"MULT_RACE\": 401, \"HISPANIC\": 4711, \"MALES\": 8692, \"FEMALES\": 8389, \"AGE_UNDER5\": 1268, \"AGE_5_17\": 2874, \"AGE_18_21\": 788, \"AGE_22_29\": 2312, \"AGE_30_39\": 2789, \"AGE_40_49\": 2582, \"AGE_50_64\": 2519, \"AGE_65_UP\": 1949, \"MED_AGE\": 34.600000, \"MED_AGE_M\": 33.300000, \"MED_AGE_F\": 36.000000, \"HOUSEHOLDS\": 6379, \"AVE_HH_SZ\": 2.680000, \"HSEHLD_1_M\": 671, \"HSEHLD_1_F\": 929, \"MARHH_CHD\": 1700, \"MARHH_NO_C\": 1943, \"MHH_CHILD\": 90, \"FHH_CHILD\": 247, \"FAMILIES\": 4432, \"AVE_FAM_SZ\": 3.210000, \"HSE_UNITS\": 6573, \"VACANT\": 194, \"OWNER_OCC\": 4683, \"RENTER_OCC\": 1696 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.928168000165812, 42.105575998728462 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Quincy\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"62367\", \"CAPITAL\": \"N\", \"AREALAND\": 14.619000, \"AREAWATER\": 0.027000, \"POP_CL\": 6, \"POP2000\": 40366, \"WHITE\": 37550, \"BLACK\": 1879, \"AMERI_ES\": 75, \"ASIAN\": 216, \"HAWN_PI\": 5, \"OTHER\": 147, \"MULT_RACE\": 494, \"HISPANIC\": 381, \"MALES\": 18932, \"FEMALES\": 21434, \"AGE_UNDER5\": 2397, \"AGE_5_17\": 7031, \"AGE_18_21\": 2586, \"AGE_22_29\": 3902, \"AGE_30_39\": 5202, \"AGE_40_49\": 5353, \"AGE_50_64\": 5872, \"AGE_65_UP\": 8023, \"MED_AGE\": 38.400000, \"MED_AGE_M\": 36.500000, \"MED_AGE_F\": 40.000000, \"HOUSEHOLDS\": 16546, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 2067, \"HSEHLD_1_F\": 3515, \"MARHH_CHD\": 3167, \"MARHH_NO_C\": 4491, \"MHH_CHILD\": 314, \"FHH_CHILD\": 1252, \"FAMILIES\": 10106, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 18043, \"VACANT\": 1497, \"OWNER_OCC\": 10992, \"RENTER_OCC\": 5554 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -91.38873699999985, 39.932334999996186 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Rantoul\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"62783\", \"CAPITAL\": \"N\", \"AREALAND\": 7.237000, \"AREAWATER\": 0.113000, \"POP_CL\": 6, \"POP2000\": 12857, \"WHITE\": 9860, \"BLACK\": 2170, \"AMERI_ES\": 60, \"ASIAN\": 225, \"HAWN_PI\": 7, \"OTHER\": 114, \"MULT_RACE\": 421, \"HISPANIC\": 346, \"MALES\": 6125, \"FEMALES\": 6732, \"AGE_UNDER5\": 1145, \"AGE_5_17\": 2537, \"AGE_18_21\": 663, \"AGE_22_29\": 1715, \"AGE_30_39\": 2021, \"AGE_40_49\": 1752, \"AGE_50_64\": 1560, \"AGE_65_UP\": 1464, \"MED_AGE\": 31.600000, \"MED_AGE_M\": 30.700000, \"MED_AGE_F\": 32.900000, \"HOUSEHOLDS\": 5330, \"AVE_HH_SZ\": 2.410000, \"HSEHLD_1_M\": 721, \"HSEHLD_1_F\": 922, \"MARHH_CHD\": 1051, \"MARHH_NO_C\": 1288, \"MHH_CHILD\": 152, \"FHH_CHILD\": 592, \"FAMILIES\": 3367, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 6161, \"VACANT\": 831, \"OWNER_OCC\": 2708, \"RENTER_OCC\": 2622 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.152069999965974, 40.304599999116746 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Richton Park\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"63706\", \"CAPITAL\": \"N\", \"AREALAND\": 3.374000, \"AREAWATER\": 0.021000, \"POP_CL\": 6, \"POP2000\": 12533, \"WHITE\": 4474, \"BLACK\": 7407, \"AMERI_ES\": 30, \"ASIAN\": 192, \"HAWN_PI\": 5, \"OTHER\": 167, \"MULT_RACE\": 258, \"HISPANIC\": 484, \"MALES\": 5747, \"FEMALES\": 6786, \"AGE_UNDER5\": 952, \"AGE_5_17\": 2660, \"AGE_18_21\": 638, \"AGE_22_29\": 1407, \"AGE_30_39\": 1971, \"AGE_40_49\": 2161, \"AGE_50_64\": 1788, \"AGE_65_UP\": 956, \"MED_AGE\": 33.300000, \"MED_AGE_M\": 30.900000, \"MED_AGE_F\": 35.000000, \"HOUSEHOLDS\": 4578, \"AVE_HH_SZ\": 2.680000, \"HSEHLD_1_M\": 421, \"HSEHLD_1_F\": 774, \"MARHH_CHD\": 1174, \"MARHH_NO_C\": 1002, \"MHH_CHILD\": 101, \"FHH_CHILD\": 525, \"FAMILIES\": 3198, \"AVE_FAM_SZ\": 3.250000, \"HSE_UNITS\": 4730, \"VACANT\": 152, \"OWNER_OCC\": 3006, \"RENTER_OCC\": 1572 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.725352000223339, 41.481991998445267 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Riverdale\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"64278\", \"CAPITAL\": \"N\", \"AREALAND\": 3.638000, \"AREAWATER\": 0.148000, \"POP_CL\": 6, \"POP2000\": 15055, \"WHITE\": 1667, \"BLACK\": 13004, \"AMERI_ES\": 24, \"ASIAN\": 29, \"HAWN_PI\": 7, \"OTHER\": 157, \"MULT_RACE\": 167, \"HISPANIC\": 366, \"MALES\": 6892, \"FEMALES\": 8163, \"AGE_UNDER5\": 1502, \"AGE_5_17\": 4152, \"AGE_18_21\": 861, \"AGE_22_29\": 1583, \"AGE_30_39\": 2533, \"AGE_40_49\": 2141, \"AGE_50_64\": 1322, \"AGE_65_UP\": 961, \"MED_AGE\": 27.500000, \"MED_AGE_M\": 23.600000, \"MED_AGE_F\": 29.800000, \"HOUSEHOLDS\": 4987, \"AVE_HH_SZ\": 3.020000, \"HSEHLD_1_M\": 485, \"HSEHLD_1_F\": 632, \"MARHH_CHD\": 999, \"MARHH_NO_C\": 663, \"MHH_CHILD\": 195, \"FHH_CHILD\": 1151, \"FAMILIES\": 3674, \"AVE_FAM_SZ\": 3.500000, \"HSE_UNITS\": 5441, \"VACANT\": 454, \"OWNER_OCC\": 2858, \"RENTER_OCC\": 2129 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.63064500031615, 41.640683998258083 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"River Forest\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"64304\", \"CAPITAL\": \"N\", \"AREALAND\": 2.509000, \"AREAWATER\": 0.001000, \"POP_CL\": 6, \"POP2000\": 11635, \"WHITE\": 10396, \"BLACK\": 560, \"AMERI_ES\": 11, \"ASIAN\": 364, \"HAWN_PI\": 5, \"OTHER\": 114, \"MULT_RACE\": 185, \"HISPANIC\": 466, \"MALES\": 5340, \"FEMALES\": 6295, \"AGE_UNDER5\": 728, \"AGE_5_17\": 2370, \"AGE_18_21\": 969, \"AGE_22_29\": 694, \"AGE_30_39\": 1292, \"AGE_40_49\": 2049, \"AGE_50_64\": 1909, \"AGE_65_UP\": 1624, \"MED_AGE\": 38.600000, \"MED_AGE_M\": 37.500000, \"MED_AGE_F\": 39.500000, \"HOUSEHOLDS\": 4092, \"AVE_HH_SZ\": 2.620000, \"HSEHLD_1_M\": 308, \"HSEHLD_1_F\": 741, \"MARHH_CHD\": 1279, \"MARHH_NO_C\": 1136, \"MHH_CHILD\": 30, \"FHH_CHILD\": 193, \"FAMILIES\": 2909, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 4232, \"VACANT\": 140, \"OWNER_OCC\": 3554, \"RENTER_OCC\": 538 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.817182000208788, 41.893030998569365 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"River Grove\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"64343\", \"CAPITAL\": \"N\", \"AREALAND\": 2.386000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10668, \"WHITE\": 9841, \"BLACK\": 38, \"AMERI_ES\": 31, \"ASIAN\": 217, \"HAWN_PI\": 6, \"OTHER\": 389, \"MULT_RACE\": 146, \"HISPANIC\": 1043, \"MALES\": 5153, \"FEMALES\": 5515, \"AGE_UNDER5\": 617, \"AGE_5_17\": 1660, \"AGE_18_21\": 562, \"AGE_22_29\": 1298, \"AGE_30_39\": 1555, \"AGE_40_49\": 1676, \"AGE_50_64\": 1587, \"AGE_65_UP\": 1713, \"MED_AGE\": 37.700000, \"MED_AGE_M\": 35.500000, \"MED_AGE_F\": 39.900000, \"HOUSEHOLDS\": 4404, \"AVE_HH_SZ\": 2.410000, \"HSEHLD_1_M\": 559, \"HSEHLD_1_F\": 824, \"MARHH_CHD\": 942, \"MARHH_NO_C\": 1091, \"MHH_CHILD\": 77, \"FHH_CHILD\": 239, \"FAMILIES\": 2765, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 4502, \"VACANT\": 98, \"OWNER_OCC\": 2567, \"RENTER_OCC\": 1837 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.840135000198103, 41.92582999860425 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Rockford\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"65000\", \"CAPITAL\": \"N\", \"AREALAND\": 56.005000, \"AREAWATER\": 0.713000, \"POP_CL\": 8, \"POP2000\": 150115, \"WHITE\": 109303, \"BLACK\": 26072, \"AMERI_ES\": 474, \"ASIAN\": 3301, \"HAWN_PI\": 67, \"OTHER\": 7200, \"MULT_RACE\": 3698, \"HISPANIC\": 15278, \"MALES\": 72384, \"FEMALES\": 77731, \"AGE_UNDER5\": 11620, \"AGE_5_17\": 28402, \"AGE_18_21\": 7972, \"AGE_22_29\": 17216, \"AGE_30_39\": 22309, \"AGE_40_49\": 20926, \"AGE_50_64\": 20561, \"AGE_65_UP\": 21109, \"MED_AGE\": 34.400000, \"MED_AGE_M\": 32.800000, \"MED_AGE_F\": 36.000000, \"HOUSEHOLDS\": 59158, \"AVE_HH_SZ\": 2.460000, \"HSEHLD_1_M\": 7666, \"HSEHLD_1_F\": 10500, \"MARHH_CHD\": 11358, \"MARHH_NO_C\": 14571, \"MHH_CHILD\": 1471, \"FHH_CHILD\": 5803, \"FAMILIES\": 37348, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 63570, \"VACANT\": 4412, \"OWNER_OCC\": 36144, \"RENTER_OCC\": 23014 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.069753999981344, 42.269769999717241 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Rock Island\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"65078\", \"CAPITAL\": \"N\", \"AREALAND\": 15.924000, \"AREAWATER\": 1.223000, \"POP_CL\": 6, \"POP2000\": 39684, \"WHITE\": 30609, \"BLACK\": 6814, \"AMERI_ES\": 113, \"ASIAN\": 299, \"HAWN_PI\": 26, \"OTHER\": 955, \"MULT_RACE\": 868, \"HISPANIC\": 2341, \"MALES\": 18745, \"FEMALES\": 20939, \"AGE_UNDER5\": 2554, \"AGE_5_17\": 6565, \"AGE_18_21\": 3660, \"AGE_22_29\": 3976, \"AGE_30_39\": 4947, \"AGE_40_49\": 5631, \"AGE_50_64\": 5881, \"AGE_65_UP\": 6470, \"MED_AGE\": 36.400000, \"MED_AGE_M\": 35.000000, \"MED_AGE_F\": 37.900000, \"HOUSEHOLDS\": 16148, \"AVE_HH_SZ\": 2.310000, \"HSEHLD_1_M\": 2298, \"HSEHLD_1_F\": 3270, \"MARHH_CHD\": 2477, \"MARHH_NO_C\": 4173, \"MHH_CHILD\": 326, \"FHH_CHILD\": 1467, \"FAMILIES\": 9547, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 17542, \"VACANT\": 1394, \"OWNER_OCC\": 10519, \"RENTER_OCC\": 5629 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.573153999997686, 41.48908299998164 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Rolling Meadows\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"65338\", \"CAPITAL\": \"N\", \"AREALAND\": 5.455000, \"AREAWATER\": 0.005000, \"POP_CL\": 6, \"POP2000\": 24604, \"WHITE\": 20256, \"BLACK\": 696, \"AMERI_ES\": 67, \"ASIAN\": 1627, \"HAWN_PI\": 7, \"OTHER\": 1463, \"MULT_RACE\": 488, \"HISPANIC\": 4725, \"MALES\": 12452, \"FEMALES\": 12152, \"AGE_UNDER5\": 1741, \"AGE_5_17\": 4431, \"AGE_18_21\": 1143, \"AGE_22_29\": 3162, \"AGE_30_39\": 4201, \"AGE_40_49\": 3843, \"AGE_50_64\": 3473, \"AGE_65_UP\": 2610, \"MED_AGE\": 34.400000, \"MED_AGE_M\": 32.700000, \"MED_AGE_F\": 36.300000, \"HOUSEHOLDS\": 8923, \"AVE_HH_SZ\": 2.720000, \"HSEHLD_1_M\": 910, \"HSEHLD_1_F\": 1265, \"MARHH_CHD\": 2429, \"MARHH_NO_C\": 2551, \"MHH_CHILD\": 117, \"FHH_CHILD\": 434, \"FAMILIES\": 6173, \"AVE_FAM_SZ\": 3.260000, \"HSE_UNITS\": 9151, \"VACANT\": 228, \"OWNER_OCC\": 6780, \"RENTER_OCC\": 2143 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.025911000118114, 42.076208998868765 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Romeoville\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"65442\", \"CAPITAL\": \"N\", \"AREALAND\": 14.514000, \"AREAWATER\": 0.381000, \"POP_CL\": 6, \"POP2000\": 21153, \"WHITE\": 17872, \"BLACK\": 1137, \"AMERI_ES\": 82, \"ASIAN\": 518, \"HAWN_PI\": 5, \"OTHER\": 1039, \"MULT_RACE\": 500, \"HISPANIC\": 2781, \"MALES\": 10658, \"FEMALES\": 10495, \"AGE_UNDER5\": 1920, \"AGE_5_17\": 4128, \"AGE_18_21\": 1644, \"AGE_22_29\": 3027, \"AGE_30_39\": 4301, \"AGE_40_49\": 2586, \"AGE_50_64\": 2350, \"AGE_65_UP\": 1197, \"MED_AGE\": 29.700000, \"MED_AGE_M\": 29.600000, \"MED_AGE_F\": 29.800000, \"HOUSEHOLDS\": 6764, \"AVE_HH_SZ\": 2.990000, \"HSEHLD_1_M\": 558, \"HSEHLD_1_F\": 466, \"MARHH_CHD\": 2377, \"MARHH_NO_C\": 2008, \"MHH_CHILD\": 171, \"FHH_CHILD\": 361, \"FAMILIES\": 5381, \"AVE_FAM_SZ\": 3.350000, \"HSE_UNITS\": 7379, \"VACANT\": 615, \"OWNER_OCC\": 5819, \"RENTER_OCC\": 945 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.102907000060213, 41.640479998991196 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Roselle\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"65806\", \"CAPITAL\": \"N\", \"AREALAND\": 5.374000, \"AREAWATER\": 0.017000, \"POP_CL\": 6, \"POP2000\": 23115, \"WHITE\": 20315, \"BLACK\": 383, \"AMERI_ES\": 48, \"ASIAN\": 1685, \"HAWN_PI\": 11, \"OTHER\": 333, \"MULT_RACE\": 340, \"HISPANIC\": 1197, \"MALES\": 11301, \"FEMALES\": 11814, \"AGE_UNDER5\": 1597, \"AGE_5_17\": 4391, \"AGE_18_21\": 1138, \"AGE_22_29\": 2370, \"AGE_30_39\": 4014, \"AGE_40_49\": 4194, \"AGE_50_64\": 3523, \"AGE_65_UP\": 1888, \"MED_AGE\": 35.400000, \"MED_AGE_M\": 34.200000, \"MED_AGE_F\": 36.500000, \"HOUSEHOLDS\": 8443, \"AVE_HH_SZ\": 2.730000, \"HSEHLD_1_M\": 760, \"HSEHLD_1_F\": 1030, \"MARHH_CHD\": 2671, \"MARHH_NO_C\": 2492, \"MHH_CHILD\": 111, \"FHH_CHILD\": 396, \"FAMILIES\": 6236, \"AVE_FAM_SZ\": 3.220000, \"HSE_UNITS\": 8552, \"VACANT\": 109, \"OWNER_OCC\": 6843, \"RENTER_OCC\": 1600 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.085438000088644, 41.98056899895176 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Round Lake Beach\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"66040\", \"CAPITAL\": \"N\", \"AREALAND\": 4.996000, \"AREAWATER\": 0.100000, \"POP_CL\": 6, \"POP2000\": 25859, \"WHITE\": 19227, \"BLACK\": 792, \"AMERI_ES\": 161, \"ASIAN\": 534, \"HAWN_PI\": 11, \"OTHER\": 4387, \"MULT_RACE\": 747, \"HISPANIC\": 8084, \"MALES\": 13044, \"FEMALES\": 12815, \"AGE_UNDER5\": 2924, \"AGE_5_17\": 6121, \"AGE_18_21\": 1397, \"AGE_22_29\": 3265, \"AGE_30_39\": 5239, \"AGE_40_49\": 3386, \"AGE_50_64\": 2336, \"AGE_65_UP\": 1191, \"MED_AGE\": 28.500000, \"MED_AGE_M\": 28.200000, \"MED_AGE_F\": 28.800000, \"HOUSEHOLDS\": 7349, \"AVE_HH_SZ\": 3.500000, \"HSEHLD_1_M\": 466, \"HSEHLD_1_F\": 560, \"MARHH_CHD\": 3203, \"MARHH_NO_C\": 1664, \"MHH_CHILD\": 210, \"FHH_CHILD\": 511, \"FAMILIES\": 6029, \"AVE_FAM_SZ\": 3.830000, \"HSE_UNITS\": 7608, \"VACANT\": 259, \"OWNER_OCC\": 6215, \"RENTER_OCC\": 1134 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.084105000116239, 42.377154998929555 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"St. Charles\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"66703\", \"CAPITAL\": \"N\", \"AREALAND\": 13.990000, \"AREAWATER\": 0.158000, \"POP_CL\": 6, \"POP2000\": 27896, \"WHITE\": 26169, \"BLACK\": 462, \"AMERI_ES\": 39, \"ASIAN\": 499, \"HAWN_PI\": 1, \"OTHER\": 463, \"MULT_RACE\": 263, \"HISPANIC\": 1535, \"MALES\": 13903, \"FEMALES\": 13993, \"AGE_UNDER5\": 1747, \"AGE_5_17\": 6002, \"AGE_18_21\": 1238, \"AGE_22_29\": 2383, \"AGE_30_39\": 4251, \"AGE_40_49\": 4932, \"AGE_50_64\": 4499, \"AGE_65_UP\": 2844, \"MED_AGE\": 36.600000, \"MED_AGE_M\": 34.800000, \"MED_AGE_F\": 38.200000, \"HOUSEHOLDS\": 10351, \"AVE_HH_SZ\": 2.620000, \"HSEHLD_1_M\": 1045, \"HSEHLD_1_F\": 1387, \"MARHH_CHD\": 3167, \"MARHH_NO_C\": 3154, \"MHH_CHILD\": 127, \"FHH_CHILD\": 473, \"FAMILIES\": 7418, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 11072, \"VACANT\": 721, \"OWNER_OCC\": 7662, \"RENTER_OCC\": 2689 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.310850000025454, 41.913743999209409 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sauk Village\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"67769\", \"CAPITAL\": \"N\", \"AREALAND\": 3.804000, \"AREAWATER\": 0.044000, \"POP_CL\": 6, \"POP2000\": 10411, \"WHITE\": 6221, \"BLACK\": 3382, \"AMERI_ES\": 26, \"ASIAN\": 69, \"HAWN_PI\": 4, \"OTHER\": 348, \"MULT_RACE\": 361, \"HISPANIC\": 1224, \"MALES\": 5155, \"FEMALES\": 5256, \"AGE_UNDER5\": 906, \"AGE_5_17\": 2562, \"AGE_18_21\": 543, \"AGE_22_29\": 1184, \"AGE_30_39\": 1612, \"AGE_40_49\": 1446, \"AGE_50_64\": 1386, \"AGE_65_UP\": 772, \"MED_AGE\": 30.100000, \"MED_AGE_M\": 28.800000, \"MED_AGE_F\": 31.300000, \"HOUSEHOLDS\": 3331, \"AVE_HH_SZ\": 3.130000, \"HSEHLD_1_M\": 274, \"HSEHLD_1_F\": 282, \"MARHH_CHD\": 915, \"MARHH_NO_C\": 896, \"MHH_CHILD\": 109, \"FHH_CHILD\": 391, \"FAMILIES\": 2648, \"AVE_FAM_SZ\": 3.500000, \"HSE_UNITS\": 3515, \"VACANT\": 184, \"OWNER_OCC\": 2700, \"RENTER_OCC\": 631 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.565658000353139, 41.488534998143997 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Schaumburg\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"68003\", \"CAPITAL\": \"N\", \"AREALAND\": 19.003000, \"AREAWATER\": 0.121000, \"POP_CL\": 7, \"POP2000\": 75386, \"WHITE\": 59391, \"BLACK\": 2526, \"AMERI_ES\": 77, \"ASIAN\": 10697, \"HAWN_PI\": 43, \"OTHER\": 1307, \"MULT_RACE\": 1345, \"HISPANIC\": 3988, \"MALES\": 36694, \"FEMALES\": 38692, \"AGE_UNDER5\": 4499, \"AGE_5_17\": 11985, \"AGE_18_21\": 2969, \"AGE_22_29\": 10829, \"AGE_30_39\": 13423, \"AGE_40_49\": 12233, \"AGE_50_64\": 12296, \"AGE_65_UP\": 7152, \"MED_AGE\": 35.300000, \"MED_AGE_M\": 33.600000, \"MED_AGE_F\": 37.000000, \"HOUSEHOLDS\": 31799, \"AVE_HH_SZ\": 2.360000, \"HSEHLD_1_M\": 4411, \"HSEHLD_1_F\": 5849, \"MARHH_CHD\": 7345, \"MARHH_NO_C\": 8512, \"MHH_CHILD\": 333, \"FHH_CHILD\": 1343, \"FAMILIES\": 19308, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 33093, \"VACANT\": 1294, \"OWNER_OCC\": 22061, \"RENTER_OCC\": 9738 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.087414000091314, 42.030050998951694 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Schiller Park\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"68081\", \"CAPITAL\": \"N\", \"AREALAND\": 2.766000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11850, \"WHITE\": 9596, \"BLACK\": 235, \"AMERI_ES\": 33, \"ASIAN\": 609, \"HAWN_PI\": 2, \"OTHER\": 961, \"MULT_RACE\": 414, \"HISPANIC\": 2598, \"MALES\": 6046, \"FEMALES\": 5804, \"AGE_UNDER5\": 777, \"AGE_5_17\": 2027, \"AGE_18_21\": 676, \"AGE_22_29\": 1686, \"AGE_30_39\": 1979, \"AGE_40_49\": 1806, \"AGE_50_64\": 1667, \"AGE_65_UP\": 1232, \"MED_AGE\": 33.500000, \"MED_AGE_M\": 33.200000, \"MED_AGE_F\": 34.000000, \"HOUSEHOLDS\": 4244, \"AVE_HH_SZ\": 2.790000, \"HSEHLD_1_M\": 521, \"HSEHLD_1_F\": 426, \"MARHH_CHD\": 1129, \"MARHH_NO_C\": 1194, \"MHH_CHILD\": 71, \"FHH_CHILD\": 215, \"FAMILIES\": 3045, \"AVE_FAM_SZ\": 3.310000, \"HSE_UNITS\": 4335, \"VACANT\": 91, \"OWNER_OCC\": 2256, \"RENTER_OCC\": 1988 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.870447000183447, 41.956229998650151 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Skokie\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"70122\", \"CAPITAL\": \"N\", \"AREALAND\": 10.041000, \"AREAWATER\": 0.000000, \"POP_CL\": 7, \"POP2000\": 63348, \"WHITE\": 43661, \"BLACK\": 2854, \"AMERI_ES\": 109, \"ASIAN\": 13483, \"HAWN_PI\": 16, \"OTHER\": 1178, \"MULT_RACE\": 2047, \"HISPANIC\": 3620, \"MALES\": 30016, \"FEMALES\": 33332, \"AGE_UNDER5\": 3265, \"AGE_5_17\": 11299, \"AGE_18_21\": 2619, \"AGE_22_29\": 4832, \"AGE_30_39\": 7741, \"AGE_40_49\": 10164, \"AGE_50_64\": 11042, \"AGE_65_UP\": 12386, \"MED_AGE\": 41.900000, \"MED_AGE_M\": 39.900000, \"MED_AGE_F\": 43.600000, \"HOUSEHOLDS\": 23223, \"AVE_HH_SZ\": 2.680000, \"HSEHLD_1_M\": 1714, \"HSEHLD_1_F\": 3778, \"MARHH_CHD\": 6280, \"MARHH_NO_C\": 7761, \"MHH_CHILD\": 219, \"FHH_CHILD\": 981, \"FAMILIES\": 17044, \"AVE_FAM_SZ\": 3.200000, \"HSE_UNITS\": 23702, \"VACANT\": 479, \"OWNER_OCC\": 17472, \"RENTER_OCC\": 5751 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.740070000277598, 42.037029998427201 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"South Elgin\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"70720\", \"CAPITAL\": \"N\", \"AREALAND\": 6.288000, \"AREAWATER\": 0.123000, \"POP_CL\": 6, \"POP2000\": 16100, \"WHITE\": 13850, \"BLACK\": 415, \"AMERI_ES\": 27, \"ASIAN\": 881, \"HAWN_PI\": 2, \"OTHER\": 625, \"MULT_RACE\": 300, \"HISPANIC\": 1664, \"MALES\": 8059, \"FEMALES\": 8041, \"AGE_UNDER5\": 1886, \"AGE_5_17\": 2802, \"AGE_18_21\": 580, \"AGE_22_29\": 2144, \"AGE_30_39\": 3926, \"AGE_40_49\": 2153, \"AGE_50_64\": 1687, \"AGE_65_UP\": 922, \"MED_AGE\": 31.300000, \"MED_AGE_M\": 31.000000, \"MED_AGE_F\": 31.600000, \"HOUSEHOLDS\": 5565, \"AVE_HH_SZ\": 2.850000, \"HSEHLD_1_M\": 461, \"HSEHLD_1_F\": 491, \"MARHH_CHD\": 2126, \"MARHH_NO_C\": 1576, \"MHH_CHILD\": 102, \"FHH_CHILD\": 237, \"FAMILIES\": 4310, \"AVE_FAM_SZ\": 3.260000, \"HSE_UNITS\": 5657, \"VACANT\": 92, \"OWNER_OCC\": 4970, \"RENTER_OCC\": 595 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.307858000029753, 41.992282999203283 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"South Holland\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"70850\", \"CAPITAL\": \"N\", \"AREALAND\": 7.280000, \"AREAWATER\": 0.015000, \"POP_CL\": 6, \"POP2000\": 22147, \"WHITE\": 9975, \"BLACK\": 11253, \"AMERI_ES\": 37, \"ASIAN\": 190, \"HAWN_PI\": 2, \"OTHER\": 428, \"MULT_RACE\": 262, \"HISPANIC\": 836, \"MALES\": 10444, \"FEMALES\": 11703, \"AGE_UNDER5\": 1331, \"AGE_5_17\": 4333, \"AGE_18_21\": 959, \"AGE_22_29\": 1527, \"AGE_30_39\": 2917, \"AGE_40_49\": 3357, \"AGE_50_64\": 3802, \"AGE_65_UP\": 3921, \"MED_AGE\": 40.000000, \"MED_AGE_M\": 37.900000, \"MED_AGE_F\": 41.800000, \"HOUSEHOLDS\": 7663, \"AVE_HH_SZ\": 2.820000, \"HSEHLD_1_M\": 486, \"HSEHLD_1_F\": 998, \"MARHH_CHD\": 1981, \"MARHH_NO_C\": 2751, \"MHH_CHILD\": 113, \"FHH_CHILD\": 455, \"FAMILIES\": 6006, \"AVE_FAM_SZ\": 3.240000, \"HSE_UNITS\": 7825, \"VACANT\": 162, \"OWNER_OCC\": 7132, \"RENTER_OCC\": 531 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.59909700033802, 41.597471998200554 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Springfield\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"72000\", \"CAPITAL\": \"Y\", \"AREALAND\": 54.001000, \"AREAWATER\": 6.307000, \"POP_CL\": 8, \"POP2000\": 111454, \"WHITE\": 90287, \"BLACK\": 17096, \"AMERI_ES\": 231, \"ASIAN\": 1620, \"HAWN_PI\": 34, \"OTHER\": 525, \"MULT_RACE\": 1661, \"HISPANIC\": 1337, \"MALES\": 52370, \"FEMALES\": 59084, \"AGE_UNDER5\": 7341, \"AGE_5_17\": 19369, \"AGE_18_21\": 5178, \"AGE_22_29\": 12660, \"AGE_30_39\": 16572, \"AGE_40_49\": 17173, \"AGE_50_64\": 17065, \"AGE_65_UP\": 16096, \"MED_AGE\": 36.900000, \"MED_AGE_M\": 35.100000, \"MED_AGE_F\": 38.600000, \"HOUSEHOLDS\": 48621, \"AVE_HH_SZ\": 2.240000, \"HSEHLD_1_M\": 7136, \"HSEHLD_1_F\": 10395, \"MARHH_CHD\": 8395, \"MARHH_NO_C\": 11611, \"MHH_CHILD\": 971, \"FHH_CHILD\": 3985, \"FAMILIES\": 27973, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 53733, \"VACANT\": 5112, \"OWNER_OCC\": 30524, \"RENTER_OCC\": 18097 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.650372999978259, 39.783249999903866 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sterling\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"72546\", \"CAPITAL\": \"N\", \"AREALAND\": 4.672000, \"AREAWATER\": 0.188000, \"POP_CL\": 6, \"POP2000\": 15451, \"WHITE\": 13035, \"BLACK\": 347, \"AMERI_ES\": 63, \"ASIAN\": 125, \"HAWN_PI\": 1, \"OTHER\": 1517, \"MULT_RACE\": 363, \"HISPANIC\": 2973, \"MALES\": 7357, \"FEMALES\": 8094, \"AGE_UNDER5\": 1116, \"AGE_5_17\": 2764, \"AGE_18_21\": 869, \"AGE_22_29\": 1708, \"AGE_30_39\": 2179, \"AGE_40_49\": 2186, \"AGE_50_64\": 2012, \"AGE_65_UP\": 2617, \"MED_AGE\": 36.300000, \"MED_AGE_M\": 33.600000, \"MED_AGE_F\": 38.600000, \"HOUSEHOLDS\": 6234, \"AVE_HH_SZ\": 2.410000, \"HSEHLD_1_M\": 749, \"HSEHLD_1_F\": 1206, \"MARHH_CHD\": 1260, \"MARHH_NO_C\": 1684, \"MHH_CHILD\": 136, \"FHH_CHILD\": 491, \"FAMILIES\": 3945, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 6596, \"VACANT\": 362, \"OWNER_OCC\": 3924, \"RENTER_OCC\": 2310 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.693257999986628, 41.796804999899528 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Streamwood\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"73157\", \"CAPITAL\": \"N\", \"AREALAND\": 7.297000, \"AREAWATER\": 0.027000, \"POP_CL\": 6, \"POP2000\": 36407, \"WHITE\": 28225, \"BLACK\": 1398, \"AMERI_ES\": 106, \"ASIAN\": 3145, \"HAWN_PI\": 12, \"OTHER\": 2570, \"MULT_RACE\": 951, \"HISPANIC\": 6108, \"MALES\": 18228, \"FEMALES\": 18179, \"AGE_UNDER5\": 3166, \"AGE_5_17\": 7053, \"AGE_18_21\": 1697, \"AGE_22_29\": 4387, \"AGE_30_39\": 7373, \"AGE_40_49\": 5624, \"AGE_50_64\": 4878, \"AGE_65_UP\": 2229, \"MED_AGE\": 32.500000, \"MED_AGE_M\": 31.800000, \"MED_AGE_F\": 33.200000, \"HOUSEHOLDS\": 12095, \"AVE_HH_SZ\": 2.990000, \"HSEHLD_1_M\": 956, \"HSEHLD_1_F\": 1140, \"MARHH_CHD\": 4121, \"MARHH_NO_C\": 3647, \"MHH_CHILD\": 217, \"FHH_CHILD\": 583, \"FAMILIES\": 9411, \"AVE_FAM_SZ\": 3.410000, \"HSE_UNITS\": 12371, \"VACANT\": 276, \"OWNER_OCC\": 10833, \"RENTER_OCC\": 1262 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.173409000063415, 42.020626999056475 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Streator\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"73170\", \"CAPITAL\": \"N\", \"AREALAND\": 5.767000, \"AREAWATER\": 0.013000, \"POP_CL\": 6, \"POP2000\": 14190, \"WHITE\": 13378, \"BLACK\": 292, \"AMERI_ES\": 27, \"ASIAN\": 70, \"HAWN_PI\": 1, \"OTHER\": 213, \"MULT_RACE\": 209, \"HISPANIC\": 942, \"MALES\": 6789, \"FEMALES\": 7401, \"AGE_UNDER5\": 943, \"AGE_5_17\": 2727, \"AGE_18_21\": 711, \"AGE_22_29\": 1228, \"AGE_30_39\": 1896, \"AGE_40_49\": 1898, \"AGE_50_64\": 2097, \"AGE_65_UP\": 2690, \"MED_AGE\": 38.100000, \"MED_AGE_M\": 36.300000, \"MED_AGE_F\": 40.100000, \"HOUSEHOLDS\": 5746, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 722, \"HSEHLD_1_F\": 1154, \"MARHH_CHD\": 1149, \"MARHH_NO_C\": 1554, \"MHH_CHILD\": 138, \"FHH_CHILD\": 402, \"FAMILIES\": 3663, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 6176, \"VACANT\": 430, \"OWNER_OCC\": 4064, \"RENTER_OCC\": 1682 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.830880999963554, 41.124797999622359 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Summit\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"73638\", \"CAPITAL\": \"N\", \"AREALAND\": 2.124000, \"AREAWATER\": 0.154000, \"POP_CL\": 6, \"POP2000\": 10637, \"WHITE\": 6734, \"BLACK\": 1282, \"AMERI_ES\": 32, \"ASIAN\": 150, \"HAWN_PI\": 2, \"OTHER\": 2089, \"MULT_RACE\": 348, \"HISPANIC\": 5156, \"MALES\": 5484, \"FEMALES\": 5153, \"AGE_UNDER5\": 907, \"AGE_5_17\": 2198, \"AGE_18_21\": 745, \"AGE_22_29\": 1474, \"AGE_30_39\": 1545, \"AGE_40_49\": 1401, \"AGE_50_64\": 1263, \"AGE_65_UP\": 1104, \"MED_AGE\": 30.000000, \"MED_AGE_M\": 29.000000, \"MED_AGE_F\": 31.300000, \"HOUSEHOLDS\": 3356, \"AVE_HH_SZ\": 3.160000, \"HSEHLD_1_M\": 393, \"HSEHLD_1_F\": 380, \"MARHH_CHD\": 932, \"MARHH_NO_C\": 703, \"MHH_CHILD\": 79, \"FHH_CHILD\": 271, \"FAMILIES\": 2417, \"AVE_FAM_SZ\": 3.770000, \"HSE_UNITS\": 3552, \"VACANT\": 196, \"OWNER_OCC\": 1769, \"RENTER_OCC\": 1587 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.813909000199999, 41.788529998571541 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Swansea\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"74119\", \"CAPITAL\": \"N\", \"AREALAND\": 5.072000, \"AREAWATER\": 0.020000, \"POP_CL\": 6, \"POP2000\": 10579, \"WHITE\": 9313, \"BLACK\": 909, \"AMERI_ES\": 25, \"ASIAN\": 170, \"HAWN_PI\": 8, \"OTHER\": 35, \"MULT_RACE\": 119, \"HISPANIC\": 163, \"MALES\": 5023, \"FEMALES\": 5556, \"AGE_UNDER5\": 676, \"AGE_5_17\": 2136, \"AGE_18_21\": 510, \"AGE_22_29\": 803, \"AGE_30_39\": 1590, \"AGE_40_49\": 1853, \"AGE_50_64\": 1436, \"AGE_65_UP\": 1575, \"MED_AGE\": 37.900000, \"MED_AGE_M\": 36.700000, \"MED_AGE_F\": 39.100000, \"HOUSEHOLDS\": 3937, \"AVE_HH_SZ\": 2.590000, \"HSEHLD_1_M\": 370, \"HSEHLD_1_F\": 589, \"MARHH_CHD\": 1153, \"MARHH_NO_C\": 1116, \"MHH_CHILD\": 65, \"FHH_CHILD\": 249, \"FAMILIES\": 2800, \"AVE_FAM_SZ\": 3.110000, \"HSE_UNITS\": 4110, \"VACANT\": 173, \"OWNER_OCC\": 3041, \"RENTER_OCC\": 896 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.987352999986157, 38.541749999952138 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sycamore\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"74223\", \"CAPITAL\": \"N\", \"AREALAND\": 5.485000, \"AREAWATER\": 0.018000, \"POP_CL\": 6, \"POP2000\": 12020, \"WHITE\": 11225, \"BLACK\": 329, \"AMERI_ES\": 27, \"ASIAN\": 100, \"HAWN_PI\": 2, \"OTHER\": 188, \"MULT_RACE\": 149, \"HISPANIC\": 513, \"MALES\": 5879, \"FEMALES\": 6141, \"AGE_UNDER5\": 827, \"AGE_5_17\": 2538, \"AGE_18_21\": 573, \"AGE_22_29\": 1238, \"AGE_30_39\": 1908, \"AGE_40_49\": 1931, \"AGE_50_64\": 1697, \"AGE_65_UP\": 1308, \"MED_AGE\": 34.700000, \"MED_AGE_M\": 33.400000, \"MED_AGE_F\": 35.700000, \"HOUSEHOLDS\": 4692, \"AVE_HH_SZ\": 2.540000, \"HSEHLD_1_M\": 529, \"HSEHLD_1_F\": 757, \"MARHH_CHD\": 1321, \"MARHH_NO_C\": 1209, \"MHH_CHILD\": 95, \"FHH_CHILD\": 299, \"FAMILIES\": 3147, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 4925, \"VACANT\": 233, \"OWNER_OCC\": 3230, \"RENTER_OCC\": 1462 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.694090999985164, 41.983849999521638 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Taylorville\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"74574\", \"CAPITAL\": \"N\", \"AREALAND\": 8.067000, \"AREAWATER\": 1.952000, \"POP_CL\": 6, \"POP2000\": 11427, \"WHITE\": 11161, \"BLACK\": 81, \"AMERI_ES\": 22, \"ASIAN\": 58, \"HAWN_PI\": 7, \"OTHER\": 35, \"MULT_RACE\": 63, \"HISPANIC\": 80, \"MALES\": 5367, \"FEMALES\": 6060, \"AGE_UNDER5\": 731, \"AGE_5_17\": 2023, \"AGE_18_21\": 487, \"AGE_22_29\": 1061, \"AGE_30_39\": 1520, \"AGE_40_49\": 1650, \"AGE_50_64\": 1696, \"AGE_65_UP\": 2259, \"MED_AGE\": 39.300000, \"MED_AGE_M\": 36.600000, \"MED_AGE_F\": 41.800000, \"HOUSEHOLDS\": 4856, \"AVE_HH_SZ\": 2.280000, \"HSEHLD_1_M\": 576, \"HSEHLD_1_F\": 1022, \"MARHH_CHD\": 955, \"MARHH_NO_C\": 1391, \"MHH_CHILD\": 112, \"FHH_CHILD\": 334, \"FAMILIES\": 3041, \"AVE_FAM_SZ\": 2.890000, \"HSE_UNITS\": 5208, \"VACANT\": 352, \"OWNER_OCC\": 3372, \"RENTER_OCC\": 1484 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.288004999960648, 39.540767999826947 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Tinley Park\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"75484\", \"CAPITAL\": \"N\", \"AREALAND\": 14.953000, \"AREAWATER\": 0.036000, \"POP_CL\": 6, \"POP2000\": 48401, \"WHITE\": 45092, \"BLACK\": 931, \"AMERI_ES\": 63, \"ASIAN\": 1153, \"HAWN_PI\": 9, \"OTHER\": 539, \"MULT_RACE\": 614, \"HISPANIC\": 1998, \"MALES\": 23423, \"FEMALES\": 24978, \"AGE_UNDER5\": 3174, \"AGE_5_17\": 9702, \"AGE_18_21\": 2236, \"AGE_22_29\": 4635, \"AGE_30_39\": 7446, \"AGE_40_49\": 8604, \"AGE_50_64\": 7408, \"AGE_65_UP\": 5196, \"MED_AGE\": 36.500000, \"MED_AGE_M\": 35.100000, \"MED_AGE_F\": 37.800000, \"HOUSEHOLDS\": 17478, \"AVE_HH_SZ\": 2.730000, \"HSEHLD_1_M\": 1438, \"HSEHLD_1_F\": 2600, \"MARHH_CHD\": 5442, \"MARHH_NO_C\": 5307, \"MHH_CHILD\": 200, \"FHH_CHILD\": 722, \"FAMILIES\": 12788, \"AVE_FAM_SZ\": 3.270000, \"HSE_UNITS\": 18037, \"VACANT\": 559, \"OWNER_OCC\": 14841, \"RENTER_OCC\": 2637 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.803891000183683, 41.573799998570841 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Urbana\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"77005\", \"CAPITAL\": \"N\", \"AREALAND\": 10.494000, \"AREAWATER\": 0.012000, \"POP_CL\": 6, \"POP2000\": 36395, \"WHITE\": 24389, \"BLACK\": 5218, \"AMERI_ES\": 64, \"ASIAN\": 5181, \"HAWN_PI\": 14, \"OTHER\": 639, \"MULT_RACE\": 890, \"HISPANIC\": 1288, \"MALES\": 19171, \"FEMALES\": 17224, \"AGE_UNDER5\": 1592, \"AGE_5_17\": 3827, \"AGE_18_21\": 9503, \"AGE_22_29\": 7210, \"AGE_30_39\": 4230, \"AGE_40_49\": 3525, \"AGE_50_64\": 3113, \"AGE_65_UP\": 3395, \"MED_AGE\": 24.600000, \"MED_AGE_M\": 23.000000, \"MED_AGE_F\": 27.000000, \"HOUSEHOLDS\": 14327, \"AVE_HH_SZ\": 2.140000, \"HSEHLD_1_M\": 2436, \"HSEHLD_1_F\": 2808, \"MARHH_CHD\": 1885, \"MARHH_NO_C\": 2733, \"MHH_CHILD\": 147, \"FHH_CHILD\": 847, \"FAMILIES\": 6224, \"AVE_FAM_SZ\": 2.830000, \"HSE_UNITS\": 15311, \"VACANT\": 984, \"OWNER_OCC\": 5295, \"RENTER_OCC\": 9032 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.204246999949035, 40.109664999181135 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Vernon Hills\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"77694\", \"CAPITAL\": \"N\", \"AREALAND\": 7.429000, \"AREAWATER\": 0.190000, \"POP_CL\": 6, \"POP2000\": 20120, \"WHITE\": 16470, \"BLACK\": 340, \"AMERI_ES\": 21, \"ASIAN\": 2348, \"HAWN_PI\": 6, \"OTHER\": 588, \"MULT_RACE\": 347, \"HISPANIC\": 1446, \"MALES\": 9732, \"FEMALES\": 10388, \"AGE_UNDER5\": 1632, \"AGE_5_17\": 4239, \"AGE_18_21\": 688, \"AGE_22_29\": 1976, \"AGE_30_39\": 3958, \"AGE_40_49\": 3857, \"AGE_50_64\": 2551, \"AGE_65_UP\": 1219, \"MED_AGE\": 34.300000, \"MED_AGE_M\": 33.400000, \"MED_AGE_F\": 35.100000, \"HOUSEHOLDS\": 7568, \"AVE_HH_SZ\": 2.660000, \"HSEHLD_1_M\": 731, \"HSEHLD_1_F\": 1146, \"MARHH_CHD\": 2694, \"MARHH_NO_C\": 1785, \"MHH_CHILD\": 96, \"FHH_CHILD\": 412, \"FAMILIES\": 5312, \"AVE_FAM_SZ\": 3.240000, \"HSE_UNITS\": 7813, \"VACANT\": 245, \"OWNER_OCC\": 6041, \"RENTER_OCC\": 1527 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.969053000155867, 42.231122998780627 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Villa Park\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"77993\", \"CAPITAL\": \"N\", \"AREALAND\": 4.702000, \"AREAWATER\": 0.004000, \"POP_CL\": 6, \"POP2000\": 22075, \"WHITE\": 19679, \"BLACK\": 369, \"AMERI_ES\": 39, \"ASIAN\": 805, \"HAWN_PI\": 7, \"OTHER\": 806, \"MULT_RACE\": 370, \"HISPANIC\": 2770, \"MALES\": 11094, \"FEMALES\": 10981, \"AGE_UNDER5\": 1545, \"AGE_5_17\": 4402, \"AGE_18_21\": 1100, \"AGE_22_29\": 2275, \"AGE_30_39\": 3762, \"AGE_40_49\": 3506, \"AGE_50_64\": 2911, \"AGE_65_UP\": 2574, \"MED_AGE\": 35.100000, \"MED_AGE_M\": 34.000000, \"MED_AGE_F\": 36.000000, \"HOUSEHOLDS\": 7810, \"AVE_HH_SZ\": 2.820000, \"HSEHLD_1_M\": 773, \"HSEHLD_1_F\": 895, \"MARHH_CHD\": 2316, \"MARHH_NO_C\": 2296, \"MHH_CHILD\": 141, \"FHH_CHILD\": 356, \"FAMILIES\": 5752, \"AVE_FAM_SZ\": 3.300000, \"HSE_UNITS\": 7987, \"VACANT\": 177, \"OWNER_OCC\": 6029, \"RENTER_OCC\": 1781 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.977884000123936, 41.888649998813499 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Warrenville\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"78929\", \"CAPITAL\": \"N\", \"AREALAND\": 5.498000, \"AREAWATER\": 0.119000, \"POP_CL\": 6, \"POP2000\": 13363, \"WHITE\": 11910, \"BLACK\": 319, \"AMERI_ES\": 39, \"ASIAN\": 459, \"HAWN_PI\": 5, \"OTHER\": 463, \"MULT_RACE\": 168, \"HISPANIC\": 1349, \"MALES\": 6600, \"FEMALES\": 6763, \"AGE_UNDER5\": 1008, \"AGE_5_17\": 2823, \"AGE_18_21\": 597, \"AGE_22_29\": 1500, \"AGE_30_39\": 2444, \"AGE_40_49\": 2466, \"AGE_50_64\": 1728, \"AGE_65_UP\": 797, \"MED_AGE\": 33.500000, \"MED_AGE_M\": 32.500000, \"MED_AGE_F\": 34.400000, \"HOUSEHOLDS\": 4931, \"AVE_HH_SZ\": 2.710000, \"HSEHLD_1_M\": 542, \"HSEHLD_1_F\": 620, \"MARHH_CHD\": 1555, \"MARHH_NO_C\": 1264, \"MHH_CHILD\": 80, \"FHH_CHILD\": 304, \"FAMILIES\": 3474, \"AVE_FAM_SZ\": 3.260000, \"HSE_UNITS\": 5067, \"VACANT\": 136, \"OWNER_OCC\": 4069, \"RENTER_OCC\": 862 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.189465000047718, 41.826279999083901 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Washington\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"79033\", \"CAPITAL\": \"N\", \"AREALAND\": 7.476000, \"AREAWATER\": 0.012000, \"POP_CL\": 6, \"POP2000\": 10841, \"WHITE\": 10663, \"BLACK\": 28, \"AMERI_ES\": 9, \"ASIAN\": 46, \"HAWN_PI\": 0, \"OTHER\": 28, \"MULT_RACE\": 67, \"HISPANIC\": 73, \"MALES\": 5291, \"FEMALES\": 5550, \"AGE_UNDER5\": 735, \"AGE_5_17\": 2086, \"AGE_18_21\": 507, \"AGE_22_29\": 1056, \"AGE_30_39\": 1603, \"AGE_40_49\": 1743, \"AGE_50_64\": 1698, \"AGE_65_UP\": 1413, \"MED_AGE\": 36.800000, \"MED_AGE_M\": 35.500000, \"MED_AGE_F\": 38.000000, \"HOUSEHOLDS\": 4189, \"AVE_HH_SZ\": 2.560000, \"HSEHLD_1_M\": 378, \"HSEHLD_1_F\": 564, \"MARHH_CHD\": 1221, \"MARHH_NO_C\": 1453, \"MHH_CHILD\": 54, \"FHH_CHILD\": 204, \"FAMILIES\": 3090, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 4403, \"VACANT\": 214, \"OWNER_OCC\": 3290, \"RENTER_OCC\": 899 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.420568999974392, 40.703876999850095 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Waukegan\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"79293\", \"CAPITAL\": \"N\", \"AREALAND\": 23.012000, \"AREAWATER\": 0.079000, \"POP_CL\": 7, \"POP2000\": 87901, \"WHITE\": 44073, \"BLACK\": 16890, \"AMERI_ES\": 471, \"ASIAN\": 3146, \"HAWN_PI\": 57, \"OTHER\": 20185, \"MULT_RACE\": 3079, \"HISPANIC\": 39396, \"MALES\": 44621, \"FEMALES\": 43280, \"AGE_UNDER5\": 8457, \"AGE_5_17\": 18096, \"AGE_18_21\": 5845, \"AGE_22_29\": 13230, \"AGE_30_39\": 14728, \"AGE_40_49\": 11352, \"AGE_50_64\": 9246, \"AGE_65_UP\": 6947, \"MED_AGE\": 29.000000, \"MED_AGE_M\": 28.400000, \"MED_AGE_F\": 29.600000, \"HOUSEHOLDS\": 27787, \"AVE_HH_SZ\": 3.090000, \"HSEHLD_1_M\": 3123, \"HSEHLD_1_F\": 3588, \"MARHH_CHD\": 7901, \"MARHH_NO_C\": 5863, \"MHH_CHILD\": 770, \"FHH_CHILD\": 2561, \"FAMILIES\": 19445, \"AVE_FAM_SZ\": 3.680000, \"HSE_UNITS\": 29243, \"VACANT\": 1456, \"OWNER_OCC\": 15697, \"RENTER_OCC\": 12090 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.861521000228791, 42.372470998608179 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Westchester\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"80047\", \"CAPITAL\": \"N\", \"AREALAND\": 3.195000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 16824, \"WHITE\": 14494, \"BLACK\": 1212, \"AMERI_ES\": 11, \"ASIAN\": 579, \"HAWN_PI\": 1, \"OTHER\": 334, \"MULT_RACE\": 193, \"HISPANIC\": 956, \"MALES\": 7836, \"FEMALES\": 8988, \"AGE_UNDER5\": 947, \"AGE_5_17\": 2174, \"AGE_18_21\": 449, \"AGE_22_29\": 1164, \"AGE_30_39\": 2360, \"AGE_40_49\": 2464, \"AGE_50_64\": 2993, \"AGE_65_UP\": 4273, \"MED_AGE\": 44.900000, \"MED_AGE_M\": 42.900000, \"MED_AGE_F\": 47.000000, \"HOUSEHOLDS\": 7015, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 609, \"HSEHLD_1_F\": 1247, \"MARHH_CHD\": 1373, \"MARHH_NO_C\": 2717, \"MHH_CHILD\": 34, \"FHH_CHILD\": 194, \"FAMILIES\": 4925, \"AVE_FAM_SZ\": 2.880000, \"HSE_UNITS\": 7123, \"VACANT\": 108, \"OWNER_OCC\": 6568, \"RENTER_OCC\": 447 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.883712000166526, 41.853889998677509 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"West Chicago\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"80060\", \"CAPITAL\": \"N\", \"AREALAND\": 13.839000, \"AREAWATER\": 0.004000, \"POP_CL\": 6, \"POP2000\": 23469, \"WHITE\": 18271, \"BLACK\": 395, \"AMERI_ES\": 85, \"ASIAN\": 457, \"HAWN_PI\": 7, \"OTHER\": 3547, \"MULT_RACE\": 707, \"HISPANIC\": 11405, \"MALES\": 12513, \"FEMALES\": 10956, \"AGE_UNDER5\": 2408, \"AGE_5_17\": 5000, \"AGE_18_21\": 1721, \"AGE_22_29\": 3598, \"AGE_30_39\": 4174, \"AGE_40_49\": 3095, \"AGE_50_64\": 2374, \"AGE_65_UP\": 1099, \"MED_AGE\": 27.800000, \"MED_AGE_M\": 27.300000, \"MED_AGE_F\": 28.500000, \"HOUSEHOLDS\": 6379, \"AVE_HH_SZ\": 3.640000, \"HSEHLD_1_M\": 446, \"HSEHLD_1_F\": 373, \"MARHH_CHD\": 2619, \"MARHH_NO_C\": 1608, \"MHH_CHILD\": 173, \"FHH_CHILD\": 287, \"FAMILIES\": 5230, \"AVE_FAM_SZ\": 3.910000, \"HSE_UNITS\": 6567, \"VACANT\": 188, \"OWNER_OCC\": 4325, \"RENTER_OCC\": 2054 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.209659000046173, 41.888377999103703 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Western Springs\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"80242\", \"CAPITAL\": \"N\", \"AREALAND\": 2.626000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12493, \"WHITE\": 12283, \"BLACK\": 23, \"AMERI_ES\": 5, \"ASIAN\": 90, \"HAWN_PI\": 0, \"OTHER\": 26, \"MULT_RACE\": 66, \"HISPANIC\": 212, \"MALES\": 6031, \"FEMALES\": 6462, \"AGE_UNDER5\": 1002, \"AGE_5_17\": 2867, \"AGE_18_21\": 312, \"AGE_22_29\": 440, \"AGE_30_39\": 1680, \"AGE_40_49\": 2255, \"AGE_50_64\": 2133, \"AGE_65_UP\": 1804, \"MED_AGE\": 39.800000, \"MED_AGE_M\": 39.300000, \"MED_AGE_F\": 40.200000, \"HOUSEHOLDS\": 4318, \"AVE_HH_SZ\": 2.890000, \"HSEHLD_1_M\": 197, \"HSEHLD_1_F\": 449, \"MARHH_CHD\": 1709, \"MARHH_NO_C\": 1579, \"MHH_CHILD\": 30, \"FHH_CHILD\": 111, \"FAMILIES\": 3614, \"AVE_FAM_SZ\": 3.230000, \"HSE_UNITS\": 4444, \"VACANT\": 126, \"OWNER_OCC\": 4121, \"RENTER_OCC\": 197 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.901035000153058, 41.80553099870702 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Westmont\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"80645\", \"CAPITAL\": \"N\", \"AREALAND\": 4.897000, \"AREAWATER\": 0.010000, \"POP_CL\": 6, \"POP2000\": 24554, \"WHITE\": 19156, \"BLACK\": 1321, \"AMERI_ES\": 33, \"ASIAN\": 2935, \"HAWN_PI\": 0, \"OTHER\": 591, \"MULT_RACE\": 518, \"HISPANIC\": 1714, \"MALES\": 11454, \"FEMALES\": 13100, \"AGE_UNDER5\": 1661, \"AGE_5_17\": 3711, \"AGE_18_21\": 972, \"AGE_22_29\": 3287, \"AGE_30_39\": 4137, \"AGE_40_49\": 3602, \"AGE_50_64\": 3318, \"AGE_65_UP\": 3866, \"MED_AGE\": 36.200000, \"MED_AGE_M\": 33.700000, \"MED_AGE_F\": 38.700000, \"HOUSEHOLDS\": 9900, \"AVE_HH_SZ\": 2.370000, \"HSEHLD_1_M\": 1264, \"HSEHLD_1_F\": 1956, \"MARHH_CHD\": 2215, \"MARHH_NO_C\": 2444, \"MHH_CHILD\": 98, \"FHH_CHILD\": 563, \"FAMILIES\": 5977, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 10269, \"VACANT\": 369, \"OWNER_OCC\": 5376, \"RENTER_OCC\": 4524 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.97643300011697, 41.794479998817074 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wheaton\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"81048\", \"CAPITAL\": \"N\", \"AREALAND\": 11.221000, \"AREAWATER\": 0.045000, \"POP_CL\": 7, \"POP2000\": 55416, \"WHITE\": 49791, \"BLACK\": 1565, \"AMERI_ES\": 63, \"ASIAN\": 2687, \"HAWN_PI\": 11, \"OTHER\": 571, \"MULT_RACE\": 728, \"HISPANIC\": 2023, \"MALES\": 26988, \"FEMALES\": 28428, \"AGE_UNDER5\": 3517, \"AGE_5_17\": 10983, \"AGE_18_21\": 3788, \"AGE_22_29\": 5165, \"AGE_30_39\": 7837, \"AGE_40_49\": 9602, \"AGE_50_64\": 8298, \"AGE_65_UP\": 6226, \"MED_AGE\": 35.800000, \"MED_AGE_M\": 33.600000, \"MED_AGE_F\": 37.800000, \"HOUSEHOLDS\": 19377, \"AVE_HH_SZ\": 2.640000, \"HSEHLD_1_M\": 1754, \"HSEHLD_1_F\": 3000, \"MARHH_CHD\": 6172, \"MARHH_NO_C\": 5720, \"MHH_CHILD\": 167, \"FHH_CHILD\": 765, \"FAMILIES\": 13720, \"AVE_FAM_SZ\": 3.200000, \"HSE_UNITS\": 19881, \"VACANT\": 504, \"OWNER_OCC\": 14355, \"RENTER_OCC\": 5022 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.107181000073311, 41.859561998985157 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wheeling\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"81087\", \"CAPITAL\": \"N\", \"AREALAND\": 8.400000, \"AREAWATER\": 0.036000, \"POP_CL\": 6, \"POP2000\": 34496, \"WHITE\": 26452, \"BLACK\": 843, \"AMERI_ES\": 80, \"ASIAN\": 3193, \"HAWN_PI\": 25, \"OTHER\": 3168, \"MULT_RACE\": 735, \"HISPANIC\": 7135, \"MALES\": 16967, \"FEMALES\": 17529, \"AGE_UNDER5\": 2265, \"AGE_5_17\": 5811, \"AGE_18_21\": 1555, \"AGE_22_29\": 4857, \"AGE_30_39\": 5986, \"AGE_40_49\": 5606, \"AGE_50_64\": 4890, \"AGE_65_UP\": 3526, \"MED_AGE\": 34.500000, \"MED_AGE_M\": 32.600000, \"MED_AGE_F\": 36.500000, \"HOUSEHOLDS\": 13280, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 1720, \"HSEHLD_1_F\": 2280, \"MARHH_CHD\": 3396, \"MARHH_NO_C\": 3384, \"MHH_CHILD\": 180, \"FHH_CHILD\": 610, \"FAMILIES\": 8454, \"AVE_FAM_SZ\": 3.260000, \"HSE_UNITS\": 13697, \"VACANT\": 417, \"OWNER_OCC\": 8849, \"RENTER_OCC\": 4431 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.929586000167347, 42.131525998728947 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wilmette\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"82075\", \"CAPITAL\": \"N\", \"AREALAND\": 5.384000, \"AREAWATER\": 0.006000, \"POP_CL\": 6, \"POP2000\": 27651, \"WHITE\": 24791, \"BLACK\": 156, \"AMERI_ES\": 10, \"ASIAN\": 2255, \"HAWN_PI\": 4, \"OTHER\": 117, \"MULT_RACE\": 318, \"HISPANIC\": 574, \"MALES\": 13238, \"FEMALES\": 14413, \"AGE_UNDER5\": 1973, \"AGE_5_17\": 6250, \"AGE_18_21\": 642, \"AGE_22_29\": 885, \"AGE_30_39\": 2943, \"AGE_40_49\": 5058, \"AGE_50_64\": 5152, \"AGE_65_UP\": 4748, \"MED_AGE\": 42.200000, \"MED_AGE_M\": 40.900000, \"MED_AGE_F\": 43.500000, \"HOUSEHOLDS\": 10039, \"AVE_HH_SZ\": 2.730000, \"HSEHLD_1_M\": 618, \"HSEHLD_1_F\": 1496, \"MARHH_CHD\": 3667, \"MARHH_NO_C\": 3246, \"MHH_CHILD\": 79, \"FHH_CHILD\": 332, \"FAMILIES\": 7727, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 10319, \"VACANT\": 280, \"OWNER_OCC\": 8712, \"RENTER_OCC\": 1327 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.723736000294934, 42.077177998394845 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Winnetka\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"82530\", \"CAPITAL\": \"N\", \"AREALAND\": 3.830000, \"AREAWATER\": 0.086000, \"POP_CL\": 6, \"POP2000\": 12419, \"WHITE\": 11958, \"BLACK\": 31, \"AMERI_ES\": 2, \"ASIAN\": 302, \"HAWN_PI\": 0, \"OTHER\": 37, \"MULT_RACE\": 89, \"HISPANIC\": 156, \"MALES\": 6020, \"FEMALES\": 6399, \"AGE_UNDER5\": 1064, \"AGE_5_17\": 3233, \"AGE_18_21\": 277, \"AGE_22_29\": 310, \"AGE_30_39\": 1374, \"AGE_40_49\": 2225, \"AGE_50_64\": 2323, \"AGE_65_UP\": 1613, \"MED_AGE\": 39.800000, \"MED_AGE_M\": 39.100000, \"MED_AGE_F\": 40.300000, \"HOUSEHOLDS\": 4162, \"AVE_HH_SZ\": 2.980000, \"HSEHLD_1_M\": 198, \"HSEHLD_1_F\": 464, \"MARHH_CHD\": 1804, \"MARHH_NO_C\": 1363, \"MHH_CHILD\": 34, \"FHH_CHILD\": 128, \"FAMILIES\": 3433, \"AVE_FAM_SZ\": 3.350000, \"HSE_UNITS\": 4310, \"VACANT\": 148, \"OWNER_OCC\": 3730, \"RENTER_OCC\": 432 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.738010000287204, 42.106226998418173 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wood Dale\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"82985\", \"CAPITAL\": \"N\", \"AREALAND\": 4.671000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 13535, \"WHITE\": 12076, \"BLACK\": 78, \"AMERI_ES\": 20, \"ASIAN\": 439, \"HAWN_PI\": 10, \"OTHER\": 650, \"MULT_RACE\": 262, \"HISPANIC\": 1768, \"MALES\": 6690, \"FEMALES\": 6845, \"AGE_UNDER5\": 786, \"AGE_5_17\": 2240, \"AGE_18_21\": 569, \"AGE_22_29\": 1288, \"AGE_30_39\": 2038, \"AGE_40_49\": 2083, \"AGE_50_64\": 2623, \"AGE_65_UP\": 1908, \"MED_AGE\": 39.300000, \"MED_AGE_M\": 37.600000, \"MED_AGE_F\": 40.900000, \"HOUSEHOLDS\": 5117, \"AVE_HH_SZ\": 2.640000, \"HSEHLD_1_M\": 456, \"HSEHLD_1_F\": 724, \"MARHH_CHD\": 1259, \"MARHH_NO_C\": 1755, \"MHH_CHILD\": 75, \"FHH_CHILD\": 159, \"FAMILIES\": 3663, \"AVE_FAM_SZ\": 3.150000, \"HSE_UNITS\": 5220, \"VACANT\": 103, \"OWNER_OCC\": 4338, \"RENTER_OCC\": 779 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.97834700012973, 41.963061998809728 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Woodridge\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"83245\", \"CAPITAL\": \"N\", \"AREALAND\": 8.323000, \"AREAWATER\": 0.023000, \"POP_CL\": 6, \"POP2000\": 30934, \"WHITE\": 23289, \"BLACK\": 2482, \"AMERI_ES\": 49, \"ASIAN\": 3485, \"HAWN_PI\": 6, \"OTHER\": 962, \"MULT_RACE\": 661, \"HISPANIC\": 2839, \"MALES\": 15389, \"FEMALES\": 15545, \"AGE_UNDER5\": 2361, \"AGE_5_17\": 6082, \"AGE_18_21\": 1533, \"AGE_22_29\": 4009, \"AGE_30_39\": 5562, \"AGE_40_49\": 5368, \"AGE_50_64\": 4377, \"AGE_65_UP\": 1642, \"MED_AGE\": 32.800000, \"MED_AGE_M\": 31.700000, \"MED_AGE_F\": 33.800000, \"HOUSEHOLDS\": 11382, \"AVE_HH_SZ\": 2.710000, \"HSEHLD_1_M\": 1290, \"HSEHLD_1_F\": 1383, \"MARHH_CHD\": 3477, \"MARHH_NO_C\": 3018, \"MHH_CHILD\": 163, \"FHH_CHILD\": 719, \"FAMILIES\": 8088, \"AVE_FAM_SZ\": 3.260000, \"HSE_UNITS\": 11708, \"VACANT\": 326, \"OWNER_OCC\": 7654, \"RENTER_OCC\": 3728 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.043869000086758, 41.744581998911038 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wood River\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"83271\", \"CAPITAL\": \"N\", \"AREALAND\": 6.056000, \"AREAWATER\": 0.025000, \"POP_CL\": 6, \"POP2000\": 11296, \"WHITE\": 11021, \"BLACK\": 71, \"AMERI_ES\": 31, \"ASIAN\": 51, \"HAWN_PI\": 0, \"OTHER\": 40, \"MULT_RACE\": 82, \"HISPANIC\": 137, \"MALES\": 5360, \"FEMALES\": 5936, \"AGE_UNDER5\": 759, \"AGE_5_17\": 1959, \"AGE_18_21\": 642, \"AGE_22_29\": 1316, \"AGE_30_39\": 1562, \"AGE_40_49\": 1583, \"AGE_50_64\": 1562, \"AGE_65_UP\": 1913, \"MED_AGE\": 36.400000, \"MED_AGE_M\": 34.400000, \"MED_AGE_F\": 38.200000, \"HOUSEHOLDS\": 4725, \"AVE_HH_SZ\": 2.360000, \"HSEHLD_1_M\": 582, \"HSEHLD_1_F\": 915, \"MARHH_CHD\": 930, \"MARHH_NO_C\": 1255, \"MHH_CHILD\": 108, \"FHH_CHILD\": 376, \"FAMILIES\": 2997, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 5001, \"VACANT\": 276, \"OWNER_OCC\": 3142, \"RENTER_OCC\": 1583 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.088526999989227, 38.863046999959693 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Woodstock\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"83349\", \"CAPITAL\": \"N\", \"AREALAND\": 10.656000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 20151, \"WHITE\": 17628, \"BLACK\": 214, \"AMERI_ES\": 47, \"ASIAN\": 406, \"HAWN_PI\": 0, \"OTHER\": 1550, \"MULT_RACE\": 306, \"HISPANIC\": 3830, \"MALES\": 10114, \"FEMALES\": 10037, \"AGE_UNDER5\": 1616, \"AGE_5_17\": 4009, \"AGE_18_21\": 1110, \"AGE_22_29\": 2613, \"AGE_30_39\": 3398, \"AGE_40_49\": 2990, \"AGE_50_64\": 2434, \"AGE_65_UP\": 1981, \"MED_AGE\": 32.100000, \"MED_AGE_M\": 30.900000, \"MED_AGE_F\": 33.700000, \"HOUSEHOLDS\": 7273, \"AVE_HH_SZ\": 2.680000, \"HSEHLD_1_M\": 834, \"HSEHLD_1_F\": 1151, \"MARHH_CHD\": 2084, \"MARHH_NO_C\": 1751, \"MHH_CHILD\": 163, \"FHH_CHILD\": 484, \"FAMILIES\": 4844, \"AVE_FAM_SZ\": 3.300000, \"HSE_UNITS\": 7599, \"VACANT\": 326, \"OWNER_OCC\": 4438, \"RENTER_OCC\": 2835 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.446192000019536, 42.317613999322184 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Worth\", \"CLASS\": \"village\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"83518\", \"CAPITAL\": \"N\", \"AREALAND\": 2.384000, \"AREAWATER\": 0.022000, \"POP_CL\": 6, \"POP2000\": 11047, \"WHITE\": 10211, \"BLACK\": 176, \"AMERI_ES\": 20, \"ASIAN\": 135, \"HAWN_PI\": 2, \"OTHER\": 241, \"MULT_RACE\": 262, \"HISPANIC\": 669, \"MALES\": 5430, \"FEMALES\": 5617, \"AGE_UNDER5\": 711, \"AGE_5_17\": 1889, \"AGE_18_21\": 602, \"AGE_22_29\": 1209, \"AGE_30_39\": 1762, \"AGE_40_49\": 1679, \"AGE_50_64\": 1646, \"AGE_65_UP\": 1549, \"MED_AGE\": 36.400000, \"MED_AGE_M\": 34.800000, \"MED_AGE_F\": 38.200000, \"HOUSEHOLDS\": 4383, \"AVE_HH_SZ\": 2.480000, \"HSEHLD_1_M\": 644, \"HSEHLD_1_F\": 708, \"MARHH_CHD\": 926, \"MARHH_NO_C\": 1107, \"MHH_CHILD\": 104, \"FHH_CHILD\": 243, \"FAMILIES\": 2798, \"AVE_FAM_SZ\": 3.150000, \"HSE_UNITS\": 4513, \"VACANT\": 130, \"OWNER_OCC\": 3021, \"RENTER_OCC\": 1362 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.792659000202647, 41.688826998543853 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Zion\", \"CLASS\": \"city\", \"ST\": \"IL\", \"STFIPS\": \"17\", \"PLACEFIP\": \"84220\", \"CAPITAL\": \"N\", \"AREALAND\": 8.197000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 22866, \"WHITE\": 13435, \"BLACK\": 6196, \"AMERI_ES\": 88, \"ASIAN\": 428, \"HAWN_PI\": 16, \"OTHER\": 1783, \"MULT_RACE\": 920, \"HISPANIC\": 3487, \"MALES\": 11095, \"FEMALES\": 11771, \"AGE_UNDER5\": 2055, \"AGE_5_17\": 5543, \"AGE_18_21\": 1253, \"AGE_22_29\": 2549, \"AGE_30_39\": 3752, \"AGE_40_49\": 3267, \"AGE_50_64\": 2528, \"AGE_65_UP\": 1919, \"MED_AGE\": 30.100000, \"MED_AGE_M\": 29.200000, \"MED_AGE_F\": 30.800000, \"HOUSEHOLDS\": 7552, \"AVE_HH_SZ\": 2.960000, \"HSEHLD_1_M\": 754, \"HSEHLD_1_F\": 875, \"MARHH_CHD\": 2034, \"MARHH_NO_C\": 1661, \"MHH_CHILD\": 216, \"FHH_CHILD\": 1081, \"FAMILIES\": 5562, \"AVE_FAM_SZ\": 3.440000, \"HSE_UNITS\": 8036, \"VACANT\": 484, \"OWNER_OCC\": 4473, \"RENTER_OCC\": 3079 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.840222000250733, 42.453220998568106 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Anderson\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"01468\", \"CAPITAL\": \"N\", \"AREALAND\": 40.047000, \"AREAWATER\": 0.109000, \"POP_CL\": 7, \"POP2000\": 59734, \"WHITE\": 48978, \"BLACK\": 8886, \"AMERI_ES\": 187, \"ASIAN\": 292, \"HAWN_PI\": 9, \"OTHER\": 516, \"MULT_RACE\": 866, \"HISPANIC\": 1235, \"MALES\": 28300, \"FEMALES\": 31434, \"AGE_UNDER5\": 4104, \"AGE_5_17\": 9745, \"AGE_18_21\": 4074, \"AGE_22_29\": 6933, \"AGE_30_39\": 8174, \"AGE_40_49\": 7766, \"AGE_50_64\": 8999, \"AGE_65_UP\": 9939, \"MED_AGE\": 36.100000, \"MED_AGE_M\": 34.100000, \"MED_AGE_F\": 38.100000, \"HOUSEHOLDS\": 25274, \"AVE_HH_SZ\": 2.280000, \"HSEHLD_1_M\": 3366, \"HSEHLD_1_F\": 5003, \"MARHH_CHD\": 3792, \"MARHH_NO_C\": 6666, \"MHH_CHILD\": 638, \"FHH_CHILD\": 2383, \"FAMILIES\": 15422, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 27643, \"VACANT\": 2369, \"OWNER_OCC\": 16131, \"RENTER_OCC\": 9143 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.681525009435262, 40.100040990151157 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Auburn\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"02674\", \"CAPITAL\": \"N\", \"AREALAND\": 6.648000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12074, \"WHITE\": 11797, \"BLACK\": 42, \"AMERI_ES\": 12, \"ASIAN\": 50, \"HAWN_PI\": 3, \"OTHER\": 74, \"MULT_RACE\": 96, \"HISPANIC\": 211, \"MALES\": 5803, \"FEMALES\": 6271, \"AGE_UNDER5\": 972, \"AGE_5_17\": 2219, \"AGE_18_21\": 599, \"AGE_22_29\": 1497, \"AGE_30_39\": 1803, \"AGE_40_49\": 1767, \"AGE_50_64\": 1565, \"AGE_65_UP\": 1652, \"MED_AGE\": 34.200000, \"MED_AGE_M\": 32.100000, \"MED_AGE_F\": 36.400000, \"HOUSEHOLDS\": 4927, \"AVE_HH_SZ\": 2.410000, \"HSEHLD_1_M\": 594, \"HSEHLD_1_F\": 891, \"MARHH_CHD\": 1191, \"MARHH_NO_C\": 1334, \"MHH_CHILD\": 113, \"FHH_CHILD\": 344, \"FAMILIES\": 3201, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 5258, \"VACANT\": 331, \"OWNER_OCC\": 3731, \"RENTER_OCC\": 1196 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.056355026753849, 41.365504983108607 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bedford\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"04114\", \"CAPITAL\": \"N\", \"AREALAND\": 11.898000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 13768, \"WHITE\": 13337, \"BLACK\": 109, \"AMERI_ES\": 38, \"ASIAN\": 66, \"HAWN_PI\": 1, \"OTHER\": 96, \"MULT_RACE\": 121, \"HISPANIC\": 173, \"MALES\": 6400, \"FEMALES\": 7368, \"AGE_UNDER5\": 809, \"AGE_5_17\": 2116, \"AGE_18_21\": 590, \"AGE_22_29\": 1392, \"AGE_30_39\": 1733, \"AGE_40_49\": 1878, \"AGE_50_64\": 2241, \"AGE_65_UP\": 3009, \"MED_AGE\": 41.400000, \"MED_AGE_M\": 37.700000, \"MED_AGE_F\": 44.800000, \"HOUSEHOLDS\": 6054, \"AVE_HH_SZ\": 2.180000, \"HSEHLD_1_M\": 688, \"HSEHLD_1_F\": 1460, \"MARHH_CHD\": 1051, \"MARHH_NO_C\": 1766, \"MHH_CHILD\": 109, \"FHH_CHILD\": 352, \"FAMILIES\": 3646, \"AVE_FAM_SZ\": 2.810000, \"HSE_UNITS\": 6618, \"VACANT\": 564, \"OWNER_OCC\": 3936, \"RENTER_OCC\": 2118 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.492329001703879, 38.86272799538856 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Beech Grove\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"04204\", \"CAPITAL\": \"N\", \"AREALAND\": 4.297000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14880, \"WHITE\": 14321, \"BLACK\": 133, \"AMERI_ES\": 28, \"ASIAN\": 120, \"HAWN_PI\": 7, \"OTHER\": 116, \"MULT_RACE\": 155, \"HISPANIC\": 308, \"MALES\": 6999, \"FEMALES\": 7881, \"AGE_UNDER5\": 1003, \"AGE_5_17\": 2745, \"AGE_18_21\": 760, \"AGE_22_29\": 1668, \"AGE_30_39\": 2263, \"AGE_40_49\": 2125, \"AGE_50_64\": 1960, \"AGE_65_UP\": 2356, \"MED_AGE\": 36.000000, \"MED_AGE_M\": 33.400000, \"MED_AGE_F\": 38.100000, \"HOUSEHOLDS\": 6085, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 749, \"HSEHLD_1_F\": 1167, \"MARHH_CHD\": 1250, \"MARHH_NO_C\": 1493, \"MHH_CHILD\": 156, \"FHH_CHILD\": 469, \"FAMILIES\": 3842, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 6506, \"VACANT\": 421, \"OWNER_OCC\": 3768, \"RENTER_OCC\": 2317 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.091308004574188, 39.717676993104249 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bloomington\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"05860\", \"CAPITAL\": \"N\", \"AREALAND\": 19.735000, \"AREAWATER\": 0.199000, \"POP_CL\": 7, \"POP2000\": 69291, \"WHITE\": 60301, \"BLACK\": 2940, \"AMERI_ES\": 199, \"ASIAN\": 3644, \"HAWN_PI\": 49, \"OTHER\": 763, \"MULT_RACE\": 1395, \"HISPANIC\": 1722, \"MALES\": 33650, \"FEMALES\": 35641, \"AGE_UNDER5\": 2859, \"AGE_5_17\": 5929, \"AGE_18_21\": 21004, \"AGE_22_29\": 14708, \"AGE_30_39\": 7612, \"AGE_40_49\": 5926, \"AGE_50_64\": 5797, \"AGE_65_UP\": 5456, \"MED_AGE\": 23.300000, \"MED_AGE_M\": 23.500000, \"MED_AGE_F\": 23.000000, \"HOUSEHOLDS\": 26468, \"AVE_HH_SZ\": 2.090000, \"HSEHLD_1_M\": 4766, \"HSEHLD_1_F\": 5588, \"MARHH_CHD\": 3062, \"MARHH_NO_C\": 4671, \"MHH_CHILD\": 320, \"FHH_CHILD\": 1364, \"FAMILIES\": 10454, \"AVE_FAM_SZ\": 2.760000, \"HSE_UNITS\": 28400, \"VACANT\": 1932, \"OWNER_OCC\": 9341, \"RENTER_OCC\": 17127 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.529045001741537, 39.162146995453035 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Brownsburg\", \"CLASS\": \"town\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"08416\", \"CAPITAL\": \"N\", \"AREALAND\": 7.320000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14520, \"WHITE\": 14148, \"BLACK\": 47, \"AMERI_ES\": 25, \"ASIAN\": 113, \"HAWN_PI\": 11, \"OTHER\": 51, \"MULT_RACE\": 125, \"HISPANIC\": 172, \"MALES\": 6984, \"FEMALES\": 7536, \"AGE_UNDER5\": 1266, \"AGE_5_17\": 2971, \"AGE_18_21\": 522, \"AGE_22_29\": 1617, \"AGE_30_39\": 2753, \"AGE_40_49\": 1999, \"AGE_50_64\": 1694, \"AGE_65_UP\": 1698, \"MED_AGE\": 33.400000, \"MED_AGE_M\": 32.400000, \"MED_AGE_F\": 34.200000, \"HOUSEHOLDS\": 5366, \"AVE_HH_SZ\": 2.650000, \"HSEHLD_1_M\": 433, \"HSEHLD_1_F\": 685, \"MARHH_CHD\": 1835, \"MARHH_NO_C\": 1599, \"MHH_CHILD\": 91, \"FHH_CHILD\": 318, \"FAMILIES\": 4044, \"AVE_FAM_SZ\": 3.100000, \"HSE_UNITS\": 5574, \"VACANT\": 208, \"OWNER_OCC\": 4288, \"RENTER_OCC\": 1078 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.39564100274545, 39.842031994657866 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Carmel\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"10342\", \"CAPITAL\": \"N\", \"AREALAND\": 17.812000, \"AREAWATER\": 0.107000, \"POP_CL\": 6, \"POP2000\": 37733, \"WHITE\": 34951, \"BLACK\": 555, \"AMERI_ES\": 52, \"ASIAN\": 1651, \"HAWN_PI\": 17, \"OTHER\": 173, \"MULT_RACE\": 334, \"HISPANIC\": 649, \"MALES\": 18322, \"FEMALES\": 19411, \"AGE_UNDER5\": 2968, \"AGE_5_17\": 8440, \"AGE_18_21\": 1110, \"AGE_22_29\": 2303, \"AGE_30_39\": 6057, \"AGE_40_49\": 6952, \"AGE_50_64\": 6227, \"AGE_65_UP\": 3676, \"MED_AGE\": 37.200000, \"MED_AGE_M\": 36.300000, \"MED_AGE_F\": 38.000000, \"HOUSEHOLDS\": 13597, \"AVE_HH_SZ\": 2.740000, \"HSEHLD_1_M\": 992, \"HSEHLD_1_F\": 1581, \"MARHH_CHD\": 5131, \"MARHH_NO_C\": 4289, \"MHH_CHILD\": 155, \"FHH_CHILD\": 583, \"FAMILIES\": 10571, \"AVE_FAM_SZ\": 3.160000, \"HSE_UNITS\": 14107, \"VACANT\": 510, \"OWNER_OCC\": 10750, \"RENTER_OCC\": 2847 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.107877004694274, 39.972916993095389 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Chesterton\", \"CLASS\": \"town\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"12412\", \"CAPITAL\": \"N\", \"AREALAND\": 8.513000, \"AREAWATER\": 0.113000, \"POP_CL\": 6, \"POP2000\": 10488, \"WHITE\": 10099, \"BLACK\": 46, \"AMERI_ES\": 22, \"ASIAN\": 144, \"HAWN_PI\": 2, \"OTHER\": 53, \"MULT_RACE\": 122, \"HISPANIC\": 347, \"MALES\": 5126, \"FEMALES\": 5362, \"AGE_UNDER5\": 711, \"AGE_5_17\": 2105, \"AGE_18_21\": 501, \"AGE_22_29\": 989, \"AGE_30_39\": 1522, \"AGE_40_49\": 1874, \"AGE_50_64\": 1669, \"AGE_65_UP\": 1117, \"MED_AGE\": 36.700000, \"MED_AGE_M\": 35.600000, \"MED_AGE_F\": 37.800000, \"HOUSEHOLDS\": 4039, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 420, \"HSEHLD_1_F\": 539, \"MARHH_CHD\": 1129, \"MARHH_NO_C\": 1184, \"MHH_CHILD\": 98, \"FHH_CHILD\": 248, \"FAMILIES\": 2879, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 4212, \"VACANT\": 173, \"OWNER_OCC\": 2781, \"RENTER_OCC\": 1258 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.058442001182655, 41.60425099683539 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Clarksville\", \"CLASS\": \"town\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"12934\", \"CAPITAL\": \"N\", \"AREALAND\": 10.091000, \"AREAWATER\": 0.084000, \"POP_CL\": 6, \"POP2000\": 21400, \"WHITE\": 19380, \"BLACK\": 1197, \"AMERI_ES\": 58, \"ASIAN\": 200, \"HAWN_PI\": 6, \"OTHER\": 231, \"MULT_RACE\": 328, \"HISPANIC\": 599, \"MALES\": 10203, \"FEMALES\": 11197, \"AGE_UNDER5\": 1463, \"AGE_5_17\": 3472, \"AGE_18_21\": 1164, \"AGE_22_29\": 2571, \"AGE_30_39\": 3246, \"AGE_40_49\": 2986, \"AGE_50_64\": 3242, \"AGE_65_UP\": 3256, \"MED_AGE\": 36.300000, \"MED_AGE_M\": 33.900000, \"MED_AGE_F\": 38.600000, \"HOUSEHOLDS\": 8984, \"AVE_HH_SZ\": 2.320000, \"HSEHLD_1_M\": 1062, \"HSEHLD_1_F\": 1775, \"MARHH_CHD\": 1621, \"MARHH_NO_C\": 2366, \"MHH_CHILD\": 183, \"FHH_CHILD\": 746, \"FAMILIES\": 5557, \"AVE_FAM_SZ\": 2.920000, \"HSE_UNITS\": 9537, \"VACANT\": 553, \"OWNER_OCC\": 5394, \"RENTER_OCC\": 3590 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.767265005770355, 38.311884991776083 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Columbus\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"14734\", \"CAPITAL\": \"N\", \"AREALAND\": 25.948000, \"AREAWATER\": 0.425000, \"POP_CL\": 6, \"POP2000\": 39059, \"WHITE\": 35668, \"BLACK\": 1057, \"AMERI_ES\": 50, \"ASIAN\": 1260, \"HAWN_PI\": 19, \"OTHER\": 542, \"MULT_RACE\": 463, \"HISPANIC\": 1096, \"MALES\": 18795, \"FEMALES\": 20264, \"AGE_UNDER5\": 2898, \"AGE_5_17\": 7146, \"AGE_18_21\": 1648, \"AGE_22_29\": 4264, \"AGE_30_39\": 5735, \"AGE_40_49\": 5862, \"AGE_50_64\": 6140, \"AGE_65_UP\": 5366, \"MED_AGE\": 36.400000, \"MED_AGE_M\": 34.500000, \"MED_AGE_F\": 38.300000, \"HOUSEHOLDS\": 15985, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 1924, \"HSEHLD_1_F\": 2724, \"MARHH_CHD\": 3671, \"MARHH_NO_C\": 4627, \"MHH_CHILD\": 298, \"FHH_CHILD\": 1114, \"FAMILIES\": 10563, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 17162, \"VACANT\": 1177, \"OWNER_OCC\": 10372, \"RENTER_OCC\": 5613 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.911056005555025, 39.213997992236656 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Connersville\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"14932\", \"CAPITAL\": \"N\", \"AREALAND\": 8.134000, \"AREAWATER\": 0.012000, \"POP_CL\": 6, \"POP2000\": 15411, \"WHITE\": 14810, \"BLACK\": 382, \"AMERI_ES\": 18, \"ASIAN\": 44, \"HAWN_PI\": 5, \"OTHER\": 20, \"MULT_RACE\": 132, \"HISPANIC\": 100, \"MALES\": 7297, \"FEMALES\": 8114, \"AGE_UNDER5\": 1059, \"AGE_5_17\": 2539, \"AGE_18_21\": 828, \"AGE_22_29\": 1759, \"AGE_30_39\": 1969, \"AGE_40_49\": 2138, \"AGE_50_64\": 2493, \"AGE_65_UP\": 2626, \"MED_AGE\": 37.600000, \"MED_AGE_M\": 35.200000, \"MED_AGE_F\": 40.200000, \"HOUSEHOLDS\": 6382, \"AVE_HH_SZ\": 2.340000, \"HSEHLD_1_M\": 730, \"HSEHLD_1_F\": 1223, \"MARHH_CHD\": 1172, \"MARHH_NO_C\": 1881, \"MHH_CHILD\": 171, \"FHH_CHILD\": 480, \"FAMILIES\": 4135, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 6974, \"VACANT\": 592, \"OWNER_OCC\": 4058, \"RENTER_OCC\": 2324 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.13770901907084, 39.653930985548293 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Crawfordsville\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"15742\", \"CAPITAL\": \"N\", \"AREALAND\": 8.378000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 15243, \"WHITE\": 14331, \"BLACK\": 246, \"AMERI_ES\": 47, \"ASIAN\": 106, \"HAWN_PI\": 10, \"OTHER\": 364, \"MULT_RACE\": 139, \"HISPANIC\": 495, \"MALES\": 7577, \"FEMALES\": 7666, \"AGE_UNDER5\": 1035, \"AGE_5_17\": 2522, \"AGE_18_21\": 1300, \"AGE_22_29\": 1816, \"AGE_30_39\": 2012, \"AGE_40_49\": 1973, \"AGE_50_64\": 2076, \"AGE_65_UP\": 2509, \"MED_AGE\": 35.100000, \"MED_AGE_M\": 30.400000, \"MED_AGE_F\": 39.300000, \"HOUSEHOLDS\": 6117, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 797, \"HSEHLD_1_F\": 1276, \"MARHH_CHD\": 1170, \"MARHH_NO_C\": 1584, \"MHH_CHILD\": 135, \"FHH_CHILD\": 481, \"FAMILIES\": 3664, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 6623, \"VACANT\": 506, \"OWNER_OCC\": 3592, \"RENTER_OCC\": 2525 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.896755001048675, 40.038830996598918 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Crown Point\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"16138\", \"CAPITAL\": \"N\", \"AREALAND\": 16.620000, \"AREAWATER\": 0.006000, \"POP_CL\": 6, \"POP2000\": 19806, \"WHITE\": 18879, \"BLACK\": 280, \"AMERI_ES\": 36, \"ASIAN\": 195, \"HAWN_PI\": 8, \"OTHER\": 202, \"MULT_RACE\": 206, \"HISPANIC\": 793, \"MALES\": 9397, \"FEMALES\": 10409, \"AGE_UNDER5\": 992, \"AGE_5_17\": 3462, \"AGE_18_21\": 927, \"AGE_22_29\": 1745, \"AGE_30_39\": 2611, \"AGE_40_49\": 3253, \"AGE_50_64\": 3397, \"AGE_65_UP\": 3419, \"MED_AGE\": 40.500000, \"MED_AGE_M\": 38.500000, \"MED_AGE_F\": 42.200000, \"HOUSEHOLDS\": 7824, \"AVE_HH_SZ\": 2.450000, \"HSEHLD_1_M\": 808, \"HSEHLD_1_F\": 1330, \"MARHH_CHD\": 1861, \"MARHH_NO_C\": 2608, \"MHH_CHILD\": 77, \"FHH_CHILD\": 348, \"FAMILIES\": 5363, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 8166, \"VACANT\": 342, \"OWNER_OCC\": 5836, \"RENTER_OCC\": 1988 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.356066000583525, 41.421702997686005 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Dyer\", \"CLASS\": \"town\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"19270\", \"CAPITAL\": \"N\", \"AREALAND\": 5.960000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 13895, \"WHITE\": 13258, \"BLACK\": 91, \"AMERI_ES\": 19, \"ASIAN\": 222, \"HAWN_PI\": 5, \"OTHER\": 175, \"MULT_RACE\": 125, \"HISPANIC\": 696, \"MALES\": 6770, \"FEMALES\": 7125, \"AGE_UNDER5\": 863, \"AGE_5_17\": 2769, \"AGE_18_21\": 662, \"AGE_22_29\": 1054, \"AGE_30_39\": 1982, \"AGE_40_49\": 2485, \"AGE_50_64\": 2400, \"AGE_65_UP\": 1680, \"MED_AGE\": 38.400000, \"MED_AGE_M\": 37.300000, \"MED_AGE_F\": 39.600000, \"HOUSEHOLDS\": 4805, \"AVE_HH_SZ\": 2.820000, \"HSEHLD_1_M\": 311, \"HSEHLD_1_F\": 478, \"MARHH_CHD\": 1616, \"MARHH_NO_C\": 1776, \"MHH_CHILD\": 61, \"FHH_CHILD\": 173, \"FAMILIES\": 3862, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 4900, \"VACANT\": 95, \"OWNER_OCC\": 4395, \"RENTER_OCC\": 410 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.512161000408312, 41.500217998031921 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"East Chicago\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"19486\", \"CAPITAL\": \"N\", \"AREALAND\": 11.977000, \"AREAWATER\": 3.654000, \"POP_CL\": 6, \"POP2000\": 32414, \"WHITE\": 11843, \"BLACK\": 11695, \"AMERI_ES\": 166, \"ASIAN\": 66, \"HAWN_PI\": 26, \"OTHER\": 7774, \"MULT_RACE\": 844, \"HISPANIC\": 16728, \"MALES\": 15509, \"FEMALES\": 16905, \"AGE_UNDER5\": 2944, \"AGE_5_17\": 6928, \"AGE_18_21\": 2097, \"AGE_22_29\": 3864, \"AGE_30_39\": 4107, \"AGE_40_49\": 4133, \"AGE_50_64\": 4026, \"AGE_65_UP\": 4315, \"MED_AGE\": 30.800000, \"MED_AGE_M\": 29.200000, \"MED_AGE_F\": 32.400000, \"HOUSEHOLDS\": 11707, \"AVE_HH_SZ\": 2.750000, \"HSEHLD_1_M\": 1616, \"HSEHLD_1_F\": 1736, \"MARHH_CHD\": 1966, \"MARHH_NO_C\": 2109, \"MHH_CHILD\": 295, \"FHH_CHILD\": 1903, \"FAMILIES\": 7941, \"AVE_FAM_SZ\": 3.410000, \"HSE_UNITS\": 13261, \"VACANT\": 1554, \"OWNER_OCC\": 5218, \"RENTER_OCC\": 6489 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.462140000487523, 41.638884997908406 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Elkhart\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"20728\", \"CAPITAL\": \"N\", \"AREALAND\": 21.365000, \"AREAWATER\": 0.894000, \"POP_CL\": 7, \"POP2000\": 51874, \"WHITE\": 37077, \"BLACK\": 7649, \"AMERI_ES\": 225, \"ASIAN\": 608, \"HAWN_PI\": 35, \"OTHER\": 4750, \"MULT_RACE\": 1530, \"HISPANIC\": 7678, \"MALES\": 25523, \"FEMALES\": 26351, \"AGE_UNDER5\": 4869, \"AGE_5_17\": 9866, \"AGE_18_21\": 3057, \"AGE_22_29\": 7370, \"AGE_30_39\": 8251, \"AGE_40_49\": 6660, \"AGE_50_64\": 6228, \"AGE_65_UP\": 5573, \"MED_AGE\": 30.800000, \"MED_AGE_M\": 30.000000, \"MED_AGE_F\": 31.900000, \"HOUSEHOLDS\": 20072, \"AVE_HH_SZ\": 2.550000, \"HSEHLD_1_M\": 2679, \"HSEHLD_1_F\": 3396, \"MARHH_CHD\": 3839, \"MARHH_NO_C\": 4369, \"MHH_CHILD\": 723, \"FHH_CHILD\": 2139, \"FAMILIES\": 12506, \"AVE_FAM_SZ\": 3.160000, \"HSE_UNITS\": 21688, \"VACANT\": 1616, \"OWNER_OCC\": 10737, \"RENTER_OCC\": 9335 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.968798007904923, 41.68314899147866 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Evansville\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"22000\", \"CAPITAL\": \"N\", \"AREALAND\": 40.704000, \"AREAWATER\": 0.059000, \"POP_CL\": 8, \"POP2000\": 121582, \"WHITE\": 104858, \"BLACK\": 13275, \"AMERI_ES\": 257, \"ASIAN\": 870, \"HAWN_PI\": 55, \"OTHER\": 598, \"MULT_RACE\": 1669, \"HISPANIC\": 1392, \"MALES\": 57170, \"FEMALES\": 64412, \"AGE_UNDER5\": 7835, \"AGE_5_17\": 19798, \"AGE_18_21\": 8160, \"AGE_22_29\": 14558, \"AGE_30_39\": 16793, \"AGE_40_49\": 17446, \"AGE_50_64\": 17246, \"AGE_65_UP\": 19746, \"MED_AGE\": 36.500000, \"MED_AGE_M\": 34.700000, \"MED_AGE_F\": 38.200000, \"HOUSEHOLDS\": 52273, \"AVE_HH_SZ\": 2.240000, \"HSEHLD_1_M\": 7498, \"HSEHLD_1_F\": 10824, \"MARHH_CHD\": 8417, \"MARHH_NO_C\": 12911, \"MHH_CHILD\": 1061, \"FHH_CHILD\": 4439, \"FAMILIES\": 30512, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 57065, \"VACANT\": 4792, \"OWNER_OCC\": 31338, \"RENTER_OCC\": 20935 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.550565999858378, 37.977165998473879 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fishers\", \"CLASS\": \"town\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"23278\", \"CAPITAL\": \"N\", \"AREALAND\": 21.690000, \"AREAWATER\": 0.096000, \"POP_CL\": 6, \"POP2000\": 37835, \"WHITE\": 34910, \"BLACK\": 1110, \"AMERI_ES\": 44, \"ASIAN\": 1171, \"HAWN_PI\": 7, \"OTHER\": 208, \"MULT_RACE\": 385, \"HISPANIC\": 764, \"MALES\": 18487, \"FEMALES\": 19348, \"AGE_UNDER5\": 4489, \"AGE_5_17\": 7675, \"AGE_18_21\": 780, \"AGE_22_29\": 5280, \"AGE_30_39\": 9537, \"AGE_40_49\": 5673, \"AGE_50_64\": 3105, \"AGE_65_UP\": 1296, \"MED_AGE\": 30.700000, \"MED_AGE_M\": 30.600000, \"MED_AGE_F\": 30.800000, \"HOUSEHOLDS\": 14044, \"AVE_HH_SZ\": 2.690000, \"HSEHLD_1_M\": 1206, \"HSEHLD_1_F\": 1696, \"MARHH_CHD\": 5619, \"MARHH_NO_C\": 3463, \"MHH_CHILD\": 204, \"FHH_CHILD\": 676, \"FAMILIES\": 10298, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 15241, \"VACANT\": 1197, \"OWNER_OCC\": 10886, \"RENTER_OCC\": 3158 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.012754005476566, 39.956176992530153 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fort Wayne\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"25000\", \"CAPITAL\": \"N\", \"AREALAND\": 78.952000, \"AREAWATER\": 0.169000, \"POP_CL\": 8, \"POP2000\": 205727, \"WHITE\": 155231, \"BLACK\": 35752, \"AMERI_ES\": 806, \"ASIAN\": 3205, \"HAWN_PI\": 86, \"OTHER\": 5993, \"MULT_RACE\": 4654, \"HISPANIC\": 11884, \"MALES\": 99659, \"FEMALES\": 106068, \"AGE_UNDER5\": 16084, \"AGE_5_17\": 39490, \"AGE_18_21\": 12472, \"AGE_22_29\": 26025, \"AGE_30_39\": 30221, \"AGE_40_49\": 29204, \"AGE_50_64\": 26616, \"AGE_65_UP\": 25615, \"MED_AGE\": 32.800000, \"MED_AGE_M\": 31.200000, \"MED_AGE_F\": 34.600000, \"HOUSEHOLDS\": 83333, \"AVE_HH_SZ\": 2.410000, \"HSEHLD_1_M\": 12180, \"HSEHLD_1_F\": 14979, \"MARHH_CHD\": 16065, \"MARHH_NO_C\": 18855, \"MHH_CHILD\": 2016, \"FHH_CHILD\": 8166, \"FAMILIES\": 50638, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 90915, \"VACANT\": 7582, \"OWNER_OCC\": 51317, \"RENTER_OCC\": 32016 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.126546023575756, 41.078347984183928 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Frankfort\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"25324\", \"CAPITAL\": \"N\", \"AREALAND\": 5.142000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 16662, \"WHITE\": 15009, \"BLACK\": 79, \"AMERI_ES\": 27, \"ASIAN\": 46, \"HAWN_PI\": 5, \"OTHER\": 1306, \"MULT_RACE\": 190, \"HISPANIC\": 2255, \"MALES\": 8119, \"FEMALES\": 8543, \"AGE_UNDER5\": 1297, \"AGE_5_17\": 3201, \"AGE_18_21\": 1064, \"AGE_22_29\": 1978, \"AGE_30_39\": 2166, \"AGE_40_49\": 2180, \"AGE_50_64\": 2158, \"AGE_65_UP\": 2618, \"MED_AGE\": 34.000000, \"MED_AGE_M\": 31.000000, \"MED_AGE_F\": 36.500000, \"HOUSEHOLDS\": 6279, \"AVE_HH_SZ\": 2.560000, \"HSEHLD_1_M\": 680, \"HSEHLD_1_F\": 1120, \"MARHH_CHD\": 1386, \"MARHH_NO_C\": 1721, \"MHH_CHILD\": 195, \"FHH_CHILD\": 489, \"FAMILIES\": 4175, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 6682, \"VACANT\": 403, \"OWNER_OCC\": 3882, \"RENTER_OCC\": 2397 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.511466002466761, 40.282181995057392 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Franklin\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"25450\", \"CAPITAL\": \"N\", \"AREALAND\": 11.263000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 19463, \"WHITE\": 18818, \"BLACK\": 229, \"AMERI_ES\": 36, \"ASIAN\": 99, \"HAWN_PI\": 10, \"OTHER\": 114, \"MULT_RACE\": 157, \"HISPANIC\": 254, \"MALES\": 9125, \"FEMALES\": 10338, \"AGE_UNDER5\": 1622, \"AGE_5_17\": 3431, \"AGE_18_21\": 1428, \"AGE_22_29\": 2406, \"AGE_30_39\": 2923, \"AGE_40_49\": 2410, \"AGE_50_64\": 2174, \"AGE_65_UP\": 3069, \"MED_AGE\": 33.000000, \"MED_AGE_M\": 30.900000, \"MED_AGE_F\": 34.900000, \"HOUSEHOLDS\": 6824, \"AVE_HH_SZ\": 2.580000, \"HSEHLD_1_M\": 632, \"HSEHLD_1_F\": 976, \"MARHH_CHD\": 1813, \"MARHH_NO_C\": 1920, \"MHH_CHILD\": 174, \"FHH_CHILD\": 577, \"FAMILIES\": 4873, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 7432, \"VACANT\": 608, \"OWNER_OCC\": 4682, \"RENTER_OCC\": 2142 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.056784004615764, 39.489584992999397 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Gary\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"27000\", \"CAPITAL\": \"N\", \"AREALAND\": 50.229000, \"AREAWATER\": 7.015000, \"POP_CL\": 8, \"POP2000\": 102746, \"WHITE\": 12245, \"BLACK\": 86340, \"AMERI_ES\": 213, \"ASIAN\": 140, \"HAWN_PI\": 24, \"OTHER\": 2023, \"MULT_RACE\": 1761, \"HISPANIC\": 5065, \"MALES\": 47088, \"FEMALES\": 55658, \"AGE_UNDER5\": 8620, \"AGE_5_17\": 22095, \"AGE_18_21\": 6255, \"AGE_22_29\": 10435, \"AGE_30_39\": 11861, \"AGE_40_49\": 14891, \"AGE_50_64\": 15446, \"AGE_65_UP\": 13143, \"MED_AGE\": 33.600000, \"MED_AGE_M\": 30.900000, \"MED_AGE_F\": 35.600000, \"HOUSEHOLDS\": 38244, \"AVE_HH_SZ\": 2.660000, \"HSEHLD_1_M\": 5003, \"HSEHLD_1_F\": 6034, \"MARHH_CHD\": 4216, \"MARHH_NO_C\": 7352, \"MHH_CHILD\": 893, \"FHH_CHILD\": 6829, \"FAMILIES\": 25618, \"AVE_FAM_SZ\": 3.280000, \"HSE_UNITS\": 43630, \"VACANT\": 5386, \"OWNER_OCC\": 21342, \"RENTER_OCC\": 16902 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.34544900063085, 41.580785997640753 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Goshen\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"28386\", \"CAPITAL\": \"N\", \"AREALAND\": 13.190000, \"AREAWATER\": 0.209000, \"POP_CL\": 6, \"POP2000\": 29383, \"WHITE\": 24431, \"BLACK\": 449, \"AMERI_ES\": 76, \"ASIAN\": 324, \"HAWN_PI\": 7, \"OTHER\": 3526, \"MULT_RACE\": 570, \"HISPANIC\": 5679, \"MALES\": 14737, \"FEMALES\": 14646, \"AGE_UNDER5\": 2319, \"AGE_5_17\": 5288, \"AGE_18_21\": 2169, \"AGE_22_29\": 4200, \"AGE_30_39\": 4409, \"AGE_40_49\": 3557, \"AGE_50_64\": 3452, \"AGE_65_UP\": 3989, \"MED_AGE\": 31.500000, \"MED_AGE_M\": 29.800000, \"MED_AGE_F\": 33.700000, \"HOUSEHOLDS\": 10675, \"AVE_HH_SZ\": 2.610000, \"HSEHLD_1_M\": 1073, \"HSEHLD_1_F\": 1867, \"MARHH_CHD\": 2445, \"MARHH_NO_C\": 2981, \"MHH_CHILD\": 309, \"FHH_CHILD\": 730, \"FAMILIES\": 7084, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 11264, \"VACANT\": 589, \"OWNER_OCC\": 6785, \"RENTER_OCC\": 3890 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.836686009473382, 41.582065990556785 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Granger\", \"CLASS\": \"CDP\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"28800\", \"CAPITAL\": \"N\", \"AREALAND\": 26.219000, \"AREAWATER\": 0.001000, \"POP_CL\": 6, \"POP2000\": 28284, \"WHITE\": 26629, \"BLACK\": 493, \"AMERI_ES\": 35, \"ASIAN\": 745, \"HAWN_PI\": 7, \"OTHER\": 73, \"MULT_RACE\": 302, \"HISPANIC\": 341, \"MALES\": 13967, \"FEMALES\": 14317, \"AGE_UNDER5\": 1962, \"AGE_5_17\": 7000, \"AGE_18_21\": 1053, \"AGE_22_29\": 1236, \"AGE_30_39\": 4124, \"AGE_40_49\": 5641, \"AGE_50_64\": 4983, \"AGE_65_UP\": 2285, \"MED_AGE\": 37.800000, \"MED_AGE_M\": 37.900000, \"MED_AGE_F\": 37.600000, \"HOUSEHOLDS\": 9184, \"AVE_HH_SZ\": 3.060000, \"HSEHLD_1_M\": 368, \"HSEHLD_1_F\": 464, \"MARHH_CHD\": 4047, \"MARHH_NO_C\": 3551, \"MHH_CHILD\": 95, \"FHH_CHILD\": 274, \"FAMILIES\": 8176, \"AVE_FAM_SZ\": 3.260000, \"HSE_UNITS\": 9401, \"VACANT\": 217, \"OWNER_OCC\": 8985, \"RENTER_OCC\": 199 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.148777006053948, 41.738319992650794 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Greenfield\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"29520\", \"CAPITAL\": \"N\", \"AREALAND\": 8.031000, \"AREAWATER\": 0.039000, \"POP_CL\": 6, \"POP2000\": 14600, \"WHITE\": 14341, \"BLACK\": 8, \"AMERI_ES\": 30, \"ASIAN\": 78, \"HAWN_PI\": 2, \"OTHER\": 48, \"MULT_RACE\": 93, \"HISPANIC\": 186, \"MALES\": 7007, \"FEMALES\": 7593, \"AGE_UNDER5\": 1075, \"AGE_5_17\": 2598, \"AGE_18_21\": 655, \"AGE_22_29\": 1768, \"AGE_30_39\": 2291, \"AGE_40_49\": 1947, \"AGE_50_64\": 2173, \"AGE_65_UP\": 2093, \"MED_AGE\": 35.300000, \"MED_AGE_M\": 33.400000, \"MED_AGE_F\": 37.100000, \"HOUSEHOLDS\": 5917, \"AVE_HH_SZ\": 2.410000, \"HSEHLD_1_M\": 592, \"HSEHLD_1_F\": 1032, \"MARHH_CHD\": 1387, \"MARHH_NO_C\": 1773, \"MHH_CHILD\": 139, \"FHH_CHILD\": 412, \"FAMILIES\": 4019, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 6449, \"VACANT\": 532, \"OWNER_OCC\": 3912, \"RENTER_OCC\": 2005 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.771343007793121, 39.791337990995096 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Greensburg\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"29718\", \"CAPITAL\": \"N\", \"AREALAND\": 4.793000, \"AREAWATER\": 0.039000, \"POP_CL\": 6, \"POP2000\": 10260, \"WHITE\": 10011, \"BLACK\": 8, \"AMERI_ES\": 16, \"ASIAN\": 143, \"HAWN_PI\": 1, \"OTHER\": 10, \"MULT_RACE\": 71, \"HISPANIC\": 64, \"MALES\": 4893, \"FEMALES\": 5367, \"AGE_UNDER5\": 807, \"AGE_5_17\": 1721, \"AGE_18_21\": 532, \"AGE_22_29\": 1270, \"AGE_30_39\": 1448, \"AGE_40_49\": 1406, \"AGE_50_64\": 1477, \"AGE_65_UP\": 1599, \"MED_AGE\": 35.500000, \"MED_AGE_M\": 33.000000, \"MED_AGE_F\": 37.800000, \"HOUSEHOLDS\": 4178, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 489, \"HSEHLD_1_F\": 718, \"MARHH_CHD\": 912, \"MARHH_NO_C\": 1208, \"MHH_CHILD\": 95, \"FHH_CHILD\": 315, \"FAMILIES\": 2778, \"AVE_FAM_SZ\": 2.920000, \"HSE_UNITS\": 4420, \"VACANT\": 242, \"OWNER_OCC\": 2620, \"RENTER_OCC\": 1558 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.483702011107795, 39.340314989034539 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Greenwood\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"29898\", \"CAPITAL\": \"N\", \"AREALAND\": 14.273000, \"AREAWATER\": 0.001000, \"POP_CL\": 6, \"POP2000\": 36037, \"WHITE\": 34790, \"BLACK\": 159, \"AMERI_ES\": 67, \"ASIAN\": 490, \"HAWN_PI\": 15, \"OTHER\": 250, \"MULT_RACE\": 266, \"HISPANIC\": 687, \"MALES\": 17260, \"FEMALES\": 18777, \"AGE_UNDER5\": 2787, \"AGE_5_17\": 6340, \"AGE_18_21\": 1781, \"AGE_22_29\": 4674, \"AGE_30_39\": 5910, \"AGE_40_49\": 5078, \"AGE_50_64\": 5038, \"AGE_65_UP\": 4429, \"MED_AGE\": 34.100000, \"MED_AGE_M\": 32.200000, \"MED_AGE_F\": 35.800000, \"HOUSEHOLDS\": 14931, \"AVE_HH_SZ\": 2.370000, \"HSEHLD_1_M\": 1769, \"HSEHLD_1_F\": 2691, \"MARHH_CHD\": 3557, \"MARHH_NO_C\": 4053, \"MHH_CHILD\": 289, \"FHH_CHILD\": 996, \"FAMILIES\": 9596, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 16042, \"VACANT\": 1111, \"OWNER_OCC\": 9332, \"RENTER_OCC\": 5599 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.118093004269056, 39.611282993301657 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Griffith\", \"CLASS\": \"town\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"30042\", \"CAPITAL\": \"N\", \"AREALAND\": 7.170000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 17334, \"WHITE\": 14562, \"BLACK\": 1753, \"AMERI_ES\": 60, \"ASIAN\": 140, \"HAWN_PI\": 7, \"OTHER\": 495, \"MULT_RACE\": 317, \"HISPANIC\": 1461, \"MALES\": 8400, \"FEMALES\": 8934, \"AGE_UNDER5\": 1127, \"AGE_5_17\": 3285, \"AGE_18_21\": 942, \"AGE_22_29\": 1879, \"AGE_30_39\": 2675, \"AGE_40_49\": 2926, \"AGE_50_64\": 2620, \"AGE_65_UP\": 1880, \"MED_AGE\": 35.800000, \"MED_AGE_M\": 34.900000, \"MED_AGE_F\": 36.500000, \"HOUSEHOLDS\": 6728, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 759, \"HSEHLD_1_F\": 922, \"MARHH_CHD\": 1681, \"MARHH_NO_C\": 1973, \"MHH_CHILD\": 143, \"FHH_CHILD\": 454, \"FAMILIES\": 4747, \"AVE_FAM_SZ\": 3.100000, \"HSE_UNITS\": 6990, \"VACANT\": 262, \"OWNER_OCC\": 4494, \"RENTER_OCC\": 2234 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.425812000512607, 41.530834997837921 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hammond\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"31000\", \"CAPITAL\": \"N\", \"AREALAND\": 22.878000, \"AREAWATER\": 1.951000, \"POP_CL\": 7, \"POP2000\": 83048, \"WHITE\": 60089, \"BLACK\": 12102, \"AMERI_ES\": 339, \"ASIAN\": 383, \"HAWN_PI\": 64, \"OTHER\": 7741, \"MULT_RACE\": 2330, \"HISPANIC\": 17473, \"MALES\": 40521, \"FEMALES\": 42527, \"AGE_UNDER5\": 6723, \"AGE_5_17\": 15979, \"AGE_18_21\": 4648, \"AGE_22_29\": 9479, \"AGE_30_39\": 12552, \"AGE_40_49\": 11927, \"AGE_50_64\": 10981, \"AGE_65_UP\": 10759, \"MED_AGE\": 33.900000, \"MED_AGE_M\": 33.000000, \"MED_AGE_F\": 34.800000, \"HOUSEHOLDS\": 32026, \"AVE_HH_SZ\": 2.580000, \"HSEHLD_1_M\": 4639, \"HSEHLD_1_F\": 4880, \"MARHH_CHD\": 6269, \"MARHH_NO_C\": 7486, \"MHH_CHILD\": 804, \"FHH_CHILD\": 3120, \"FAMILIES\": 20895, \"AVE_FAM_SZ\": 3.230000, \"HSE_UNITS\": 34139, \"VACANT\": 2113, \"OWNER_OCC\": 20247, \"RENTER_OCC\": 11779 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.493080000447122, 41.611184997979521 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Highland\", \"CLASS\": \"town\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"33466\", \"CAPITAL\": \"N\", \"AREALAND\": 6.868000, \"AREAWATER\": 0.023000, \"POP_CL\": 6, \"POP2000\": 23546, \"WHITE\": 22240, \"BLACK\": 296, \"AMERI_ES\": 36, \"ASIAN\": 260, \"HAWN_PI\": 5, \"OTHER\": 425, \"MULT_RACE\": 284, \"HISPANIC\": 1557, \"MALES\": 11297, \"FEMALES\": 12249, \"AGE_UNDER5\": 1222, \"AGE_5_17\": 3850, \"AGE_18_21\": 1035, \"AGE_22_29\": 2316, \"AGE_30_39\": 3423, \"AGE_40_49\": 3620, \"AGE_50_64\": 4168, \"AGE_65_UP\": 3912, \"MED_AGE\": 39.800000, \"MED_AGE_M\": 38.200000, \"MED_AGE_F\": 41.400000, \"HOUSEHOLDS\": 9636, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 962, \"HSEHLD_1_F\": 1594, \"MARHH_CHD\": 2121, \"MARHH_NO_C\": 3325, \"MHH_CHILD\": 124, \"FHH_CHILD\": 411, \"FAMILIES\": 6682, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 9925, \"VACANT\": 289, \"OWNER_OCC\": 7569, \"RENTER_OCC\": 2067 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.458064000476895, 41.549850997908869 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hobart\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"34114\", \"CAPITAL\": \"N\", \"AREALAND\": 26.214000, \"AREAWATER\": 0.492000, \"POP_CL\": 6, \"POP2000\": 25363, \"WHITE\": 23773, \"BLACK\": 353, \"AMERI_ES\": 53, \"ASIAN\": 136, \"HAWN_PI\": 4, \"OTHER\": 660, \"MULT_RACE\": 384, \"HISPANIC\": 2042, \"MALES\": 12313, \"FEMALES\": 13050, \"AGE_UNDER5\": 1537, \"AGE_5_17\": 4436, \"AGE_18_21\": 1275, \"AGE_22_29\": 2618, \"AGE_30_39\": 3719, \"AGE_40_49\": 4048, \"AGE_50_64\": 3905, \"AGE_65_UP\": 3825, \"MED_AGE\": 37.700000, \"MED_AGE_M\": 36.200000, \"MED_AGE_F\": 39.300000, \"HOUSEHOLDS\": 9855, \"AVE_HH_SZ\": 2.550000, \"HSEHLD_1_M\": 981, \"HSEHLD_1_F\": 1395, \"MARHH_CHD\": 2320, \"MARHH_NO_C\": 3229, \"MHH_CHILD\": 201, \"FHH_CHILD\": 493, \"FAMILIES\": 6977, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 10299, \"VACANT\": 444, \"OWNER_OCC\": 7905, \"RENTER_OCC\": 1950 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.267420000741282, 41.528714997448475 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Huntington\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"35302\", \"CAPITAL\": \"N\", \"AREALAND\": 8.345000, \"AREAWATER\": 0.086000, \"POP_CL\": 6, \"POP2000\": 17450, \"WHITE\": 17072, \"BLACK\": 37, \"AMERI_ES\": 79, \"ASIAN\": 78, \"HAWN_PI\": 4, \"OTHER\": 53, \"MULT_RACE\": 127, \"HISPANIC\": 196, \"MALES\": 8336, \"FEMALES\": 9114, \"AGE_UNDER5\": 1291, \"AGE_5_17\": 3278, \"AGE_18_21\": 1445, \"AGE_22_29\": 2022, \"AGE_30_39\": 2425, \"AGE_40_49\": 2357, \"AGE_50_64\": 2221, \"AGE_65_UP\": 2411, \"MED_AGE\": 32.800000, \"MED_AGE_M\": 31.200000, \"MED_AGE_F\": 34.500000, \"HOUSEHOLDS\": 6717, \"AVE_HH_SZ\": 2.460000, \"HSEHLD_1_M\": 794, \"HSEHLD_1_F\": 1157, \"MARHH_CHD\": 1520, \"MARHH_NO_C\": 1764, \"MHH_CHILD\": 193, \"FHH_CHILD\": 537, \"FAMILIES\": 4417, \"AVE_FAM_SZ\": 3.030000, \"HSE_UNITS\": 7262, \"VACANT\": 545, \"OWNER_OCC\": 4623, \"RENTER_OCC\": 2094 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.495595013949512, 40.882082988104749 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Indianapolis\", \"CLASS\": \"city (consolidated, balance)\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"36003\", \"CAPITAL\": \"Y\", \"AREALAND\": 361.478000, \"AREAWATER\": 6.678000, \"POP_CL\": 9, \"POP2000\": 781870, \"WHITE\": 540212, \"BLACK\": 199412, \"AMERI_ES\": 1985, \"ASIAN\": 11161, \"HAWN_PI\": 322, \"OTHER\": 15921, \"MULT_RACE\": 12857, \"HISPANIC\": 30636, \"MALES\": 378310, \"FEMALES\": 403560, \"AGE_UNDER5\": 57523, \"AGE_5_17\": 143094, \"AGE_18_21\": 42739, \"AGE_22_29\": 103461, \"AGE_30_39\": 127775, \"AGE_40_49\": 116990, \"AGE_50_64\": 104430, \"AGE_65_UP\": 85858, \"MED_AGE\": 33.500000, \"MED_AGE_M\": 32.200000, \"MED_AGE_F\": 34.800000, \"HOUSEHOLDS\": 320107, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 45822, \"HSEHLD_1_F\": 56671, \"MARHH_CHD\": 57496, \"MARHH_NO_C\": 72411, \"MHH_CHILD\": 7854, \"FHH_CHILD\": 30184, \"FAMILIES\": 192754, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 352429, \"VACANT\": 32322, \"OWNER_OCC\": 187590, \"RENTER_OCC\": 132517 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.147685004221145, 39.79094199339626 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Jasper\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"37782\", \"CAPITAL\": \"N\", \"AREALAND\": 9.224000, \"AREAWATER\": 0.039000, \"POP_CL\": 6, \"POP2000\": 12100, \"WHITE\": 11737, \"BLACK\": 30, \"AMERI_ES\": 10, \"ASIAN\": 49, \"HAWN_PI\": 3, \"OTHER\": 186, \"MULT_RACE\": 85, \"HISPANIC\": 408, \"MALES\": 5899, \"FEMALES\": 6201, \"AGE_UNDER5\": 892, \"AGE_5_17\": 2185, \"AGE_18_21\": 575, \"AGE_22_29\": 1258, \"AGE_30_39\": 1827, \"AGE_40_49\": 1822, \"AGE_50_64\": 1726, \"AGE_65_UP\": 1815, \"MED_AGE\": 36.500000, \"MED_AGE_M\": 34.700000, \"MED_AGE_F\": 38.400000, \"HOUSEHOLDS\": 4875, \"AVE_HH_SZ\": 2.410000, \"HSEHLD_1_M\": 578, \"HSEHLD_1_F\": 846, \"MARHH_CHD\": 1252, \"MARHH_NO_C\": 1390, \"MHH_CHILD\": 77, \"FHH_CHILD\": 265, \"FAMILIES\": 3188, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 5107, \"VACANT\": 232, \"OWNER_OCC\": 3252, \"RENTER_OCC\": 1623 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.932706000413418, 38.395305997037049 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Jeffersonville\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"38358\", \"CAPITAL\": \"N\", \"AREALAND\": 13.581000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 27362, \"WHITE\": 22575, \"BLACK\": 3742, \"AMERI_ES\": 75, \"ASIAN\": 229, \"HAWN_PI\": 22, \"OTHER\": 179, \"MULT_RACE\": 540, \"HISPANIC\": 493, \"MALES\": 13131, \"FEMALES\": 14231, \"AGE_UNDER5\": 1846, \"AGE_5_17\": 4613, \"AGE_18_21\": 1356, \"AGE_22_29\": 3168, \"AGE_30_39\": 4177, \"AGE_40_49\": 4357, \"AGE_50_64\": 4392, \"AGE_65_UP\": 3453, \"MED_AGE\": 36.700000, \"MED_AGE_M\": 35.100000, \"MED_AGE_F\": 38.300000, \"HOUSEHOLDS\": 11643, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 1587, \"HSEHLD_1_F\": 2150, \"MARHH_CHD\": 2079, \"MARHH_NO_C\": 2958, \"MHH_CHILD\": 233, \"FHH_CHILD\": 1042, \"FAMILIES\": 7237, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 12402, \"VACANT\": 759, \"OWNER_OCC\": 7238, \"RENTER_OCC\": 4405 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.731485006105856, 38.295668991547707 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Kokomo\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"40392\", \"CAPITAL\": \"N\", \"AREALAND\": 16.196000, \"AREAWATER\": 0.059000, \"POP_CL\": 6, \"POP2000\": 46113, \"WHITE\": 39242, \"BLACK\": 4770, \"AMERI_ES\": 177, \"ASIAN\": 525, \"HAWN_PI\": 12, \"OTHER\": 539, \"MULT_RACE\": 848, \"HISPANIC\": 1204, \"MALES\": 21793, \"FEMALES\": 24320, \"AGE_UNDER5\": 3616, \"AGE_5_17\": 7898, \"AGE_18_21\": 2312, \"AGE_22_29\": 5550, \"AGE_30_39\": 6541, \"AGE_40_49\": 6382, \"AGE_50_64\": 7161, \"AGE_65_UP\": 6653, \"MED_AGE\": 35.700000, \"MED_AGE_M\": 33.600000, \"MED_AGE_F\": 37.700000, \"HOUSEHOLDS\": 20273, \"AVE_HH_SZ\": 2.240000, \"HSEHLD_1_M\": 2985, \"HSEHLD_1_F\": 4144, \"MARHH_CHD\": 3444, \"MARHH_NO_C\": 5115, \"MHH_CHILD\": 451, \"FHH_CHILD\": 1886, \"FAMILIES\": 12195, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 22292, \"VACANT\": 2019, \"OWNER_OCC\": 12396, \"RENTER_OCC\": 7877 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.131754004994207, 40.482237993030743 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lafayette\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"40788\", \"CAPITAL\": \"N\", \"AREALAND\": 20.095000, \"AREAWATER\": 0.000000, \"POP_CL\": 7, \"POP2000\": 56397, \"WHITE\": 50143, \"BLACK\": 1816, \"AMERI_ES\": 210, \"ASIAN\": 689, \"HAWN_PI\": 24, \"OTHER\": 2601, \"MULT_RACE\": 914, \"HISPANIC\": 5136, \"MALES\": 27868, \"FEMALES\": 28529, \"AGE_UNDER5\": 3927, \"AGE_5_17\": 9146, \"AGE_18_21\": 4042, \"AGE_22_29\": 9449, \"AGE_30_39\": 8303, \"AGE_40_49\": 7520, \"AGE_50_64\": 7235, \"AGE_65_UP\": 6775, \"MED_AGE\": 31.700000, \"MED_AGE_M\": 30.200000, \"MED_AGE_F\": 33.900000, \"HOUSEHOLDS\": 24060, \"AVE_HH_SZ\": 2.310000, \"HSEHLD_1_M\": 3516, \"HSEHLD_1_F\": 4474, \"MARHH_CHD\": 4385, \"MARHH_NO_C\": 5832, \"MHH_CHILD\": 521, \"FHH_CHILD\": 1587, \"FAMILIES\": 13670, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 25602, \"VACANT\": 1542, \"OWNER_OCC\": 12719, \"RENTER_OCC\": 11341 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.874681001241512, 40.410584996450211 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lake Station\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"41535\", \"CAPITAL\": \"N\", \"AREALAND\": 8.297000, \"AREAWATER\": 0.170000, \"POP_CL\": 6, \"POP2000\": 13948, \"WHITE\": 12027, \"BLACK\": 107, \"AMERI_ES\": 70, \"ASIAN\": 42, \"HAWN_PI\": 7, \"OTHER\": 1298, \"MULT_RACE\": 397, \"HISPANIC\": 2875, \"MALES\": 6961, \"FEMALES\": 6987, \"AGE_UNDER5\": 1088, \"AGE_5_17\": 2688, \"AGE_18_21\": 833, \"AGE_22_29\": 1754, \"AGE_30_39\": 2035, \"AGE_40_49\": 2140, \"AGE_50_64\": 1925, \"AGE_65_UP\": 1485, \"MED_AGE\": 32.900000, \"MED_AGE_M\": 32.100000, \"MED_AGE_F\": 33.500000, \"HOUSEHOLDS\": 5041, \"AVE_HH_SZ\": 2.750000, \"HSEHLD_1_M\": 608, \"HSEHLD_1_F\": 573, \"MARHH_CHD\": 1161, \"MARHH_NO_C\": 1306, \"MHH_CHILD\": 169, \"FHH_CHILD\": 375, \"FAMILIES\": 3530, \"AVE_FAM_SZ\": 3.240000, \"HSE_UNITS\": 5328, \"VACANT\": 287, \"OWNER_OCC\": 4004, \"RENTER_OCC\": 1037 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.2597850007635, 41.569835997422864 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"La Porte\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"42246\", \"CAPITAL\": \"N\", \"AREALAND\": 11.459000, \"AREAWATER\": 0.711000, \"POP_CL\": 6, \"POP2000\": 21621, \"WHITE\": 20021, \"BLACK\": 416, \"AMERI_ES\": 80, \"ASIAN\": 82, \"HAWN_PI\": 1, \"OTHER\": 734, \"MULT_RACE\": 287, \"HISPANIC\": 1410, \"MALES\": 10450, \"FEMALES\": 11171, \"AGE_UNDER5\": 1532, \"AGE_5_17\": 3755, \"AGE_18_21\": 1154, \"AGE_22_29\": 2574, \"AGE_30_39\": 3114, \"AGE_40_49\": 3019, \"AGE_50_64\": 2870, \"AGE_65_UP\": 3603, \"MED_AGE\": 35.800000, \"MED_AGE_M\": 33.300000, \"MED_AGE_F\": 38.400000, \"HOUSEHOLDS\": 8916, \"AVE_HH_SZ\": 2.360000, \"HSEHLD_1_M\": 1137, \"HSEHLD_1_F\": 1707, \"MARHH_CHD\": 1750, \"MARHH_NO_C\": 2295, \"MHH_CHILD\": 215, \"FHH_CHILD\": 696, \"FAMILIES\": 5543, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 9667, \"VACANT\": 751, \"OWNER_OCC\": 5624, \"RENTER_OCC\": 3292 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.717567002277775, 41.609056995603687 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lawrence\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"42426\", \"CAPITAL\": \"N\", \"AREALAND\": 20.082000, \"AREAWATER\": 0.102000, \"POP_CL\": 6, \"POP2000\": 38915, \"WHITE\": 30581, \"BLACK\": 6036, \"AMERI_ES\": 117, \"ASIAN\": 699, \"HAWN_PI\": 30, \"OTHER\": 723, \"MULT_RACE\": 729, \"HISPANIC\": 1840, \"MALES\": 18978, \"FEMALES\": 19937, \"AGE_UNDER5\": 3524, \"AGE_5_17\": 8130, \"AGE_18_21\": 1667, \"AGE_22_29\": 4476, \"AGE_30_39\": 7473, \"AGE_40_49\": 6041, \"AGE_50_64\": 4407, \"AGE_65_UP\": 3197, \"MED_AGE\": 32.400000, \"MED_AGE_M\": 31.600000, \"MED_AGE_F\": 33.200000, \"HOUSEHOLDS\": 14853, \"AVE_HH_SZ\": 2.600000, \"HSEHLD_1_M\": 1702, \"HSEHLD_1_F\": 1980, \"MARHH_CHD\": 4192, \"MARHH_NO_C\": 3548, \"MHH_CHILD\": 378, \"FHH_CHILD\": 1346, \"FAMILIES\": 10332, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 16292, \"VACANT\": 1439, \"OWNER_OCC\": 11264, \"RENTER_OCC\": 3589 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.994264005540558, 39.862738992456698 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lebanon\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"42624\", \"CAPITAL\": \"N\", \"AREALAND\": 7.283000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14222, \"WHITE\": 13891, \"BLACK\": 47, \"AMERI_ES\": 56, \"ASIAN\": 53, \"HAWN_PI\": 0, \"OTHER\": 82, \"MULT_RACE\": 93, \"HISPANIC\": 229, \"MALES\": 6784, \"FEMALES\": 7438, \"AGE_UNDER5\": 1147, \"AGE_5_17\": 2650, \"AGE_18_21\": 647, \"AGE_22_29\": 1763, \"AGE_30_39\": 2169, \"AGE_40_49\": 1978, \"AGE_50_64\": 1923, \"AGE_65_UP\": 1945, \"MED_AGE\": 34.100000, \"MED_AGE_M\": 31.900000, \"MED_AGE_F\": 36.300000, \"HOUSEHOLDS\": 5834, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 679, \"HSEHLD_1_F\": 1063, \"MARHH_CHD\": 1375, \"MARHH_NO_C\": 1571, \"MHH_CHILD\": 127, \"FHH_CHILD\": 404, \"FAMILIES\": 3778, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 6202, \"VACANT\": 368, \"OWNER_OCC\": 3905, \"RENTER_OCC\": 1929 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.471570002511299, 40.052136994944853 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Logansport\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"44658\", \"CAPITAL\": \"N\", \"AREALAND\": 8.260000, \"AREAWATER\": 0.165000, \"POP_CL\": 6, \"POP2000\": 19684, \"WHITE\": 17674, \"BLACK\": 409, \"AMERI_ES\": 72, \"ASIAN\": 177, \"HAWN_PI\": 12, \"OTHER\": 1108, \"MULT_RACE\": 232, \"HISPANIC\": 2476, \"MALES\": 9875, \"FEMALES\": 9809, \"AGE_UNDER5\": 1490, \"AGE_5_17\": 3568, \"AGE_18_21\": 1153, \"AGE_22_29\": 2430, \"AGE_30_39\": 2811, \"AGE_40_49\": 2651, \"AGE_50_64\": 2589, \"AGE_65_UP\": 2992, \"MED_AGE\": 34.500000, \"MED_AGE_M\": 31.400000, \"MED_AGE_F\": 37.700000, \"HOUSEHOLDS\": 7604, \"AVE_HH_SZ\": 2.470000, \"HSEHLD_1_M\": 903, \"HSEHLD_1_F\": 1500, \"MARHH_CHD\": 1512, \"MARHH_NO_C\": 1896, \"MHH_CHILD\": 206, \"FHH_CHILD\": 580, \"FAMILIES\": 4738, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 8026, \"VACANT\": 422, \"OWNER_OCC\": 4663, \"RENTER_OCC\": 2941 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.360485003588224, 40.753477994192551 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Madison\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"45990\", \"CAPITAL\": \"N\", \"AREALAND\": 8.556000, \"AREAWATER\": 0.327000, \"POP_CL\": 6, \"POP2000\": 12004, \"WHITE\": 11357, \"BLACK\": 292, \"AMERI_ES\": 23, \"ASIAN\": 100, \"HAWN_PI\": 1, \"OTHER\": 61, \"MULT_RACE\": 170, \"HISPANIC\": 163, \"MALES\": 5883, \"FEMALES\": 6121, \"AGE_UNDER5\": 690, \"AGE_5_17\": 1895, \"AGE_18_21\": 588, \"AGE_22_29\": 1143, \"AGE_30_39\": 1725, \"AGE_40_49\": 1821, \"AGE_50_64\": 2084, \"AGE_65_UP\": 2058, \"MED_AGE\": 39.800000, \"MED_AGE_M\": 37.400000, \"MED_AGE_F\": 42.300000, \"HOUSEHOLDS\": 5092, \"AVE_HH_SZ\": 2.210000, \"HSEHLD_1_M\": 683, \"HSEHLD_1_F\": 1038, \"MARHH_CHD\": 882, \"MARHH_NO_C\": 1443, \"MHH_CHILD\": 98, \"FHH_CHILD\": 361, \"FAMILIES\": 3087, \"AVE_FAM_SZ\": 2.830000, \"HSE_UNITS\": 5597, \"VACANT\": 505, \"OWNER_OCC\": 3225, \"RENTER_OCC\": 1867 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.395394011386884, 38.750088988708455 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Marion\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"46908\", \"CAPITAL\": \"N\", \"AREALAND\": 13.296000, \"AREAWATER\": 0.044000, \"POP_CL\": 6, \"POP2000\": 31320, \"WHITE\": 24942, \"BLACK\": 4878, \"AMERI_ES\": 147, \"ASIAN\": 214, \"HAWN_PI\": 7, \"OTHER\": 449, \"MULT_RACE\": 683, \"HISPANIC\": 1128, \"MALES\": 14710, \"FEMALES\": 16610, \"AGE_UNDER5\": 2045, \"AGE_5_17\": 5244, \"AGE_18_21\": 2597, \"AGE_22_29\": 3350, \"AGE_30_39\": 3948, \"AGE_40_49\": 4083, \"AGE_50_64\": 4736, \"AGE_65_UP\": 5317, \"MED_AGE\": 36.300000, \"MED_AGE_M\": 34.500000, \"MED_AGE_F\": 38.100000, \"HOUSEHOLDS\": 12462, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 1591, \"HSEHLD_1_F\": 2616, \"MARHH_CHD\": 1900, \"MARHH_NO_C\": 3344, \"MHH_CHILD\": 334, \"FHH_CHILD\": 1171, \"FAMILIES\": 7632, \"AVE_FAM_SZ\": 2.910000, \"HSE_UNITS\": 13820, \"VACANT\": 1358, \"OWNER_OCC\": 7735, \"RENTER_OCC\": 4727 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.664681010412608, 40.549139989758174 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Martinsville\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"47448\", \"CAPITAL\": \"N\", \"AREALAND\": 4.464000, \"AREAWATER\": 0.010000, \"POP_CL\": 6, \"POP2000\": 11698, \"WHITE\": 11536, \"BLACK\": 11, \"AMERI_ES\": 31, \"ASIAN\": 21, \"HAWN_PI\": 5, \"OTHER\": 29, \"MULT_RACE\": 65, \"HISPANIC\": 116, \"MALES\": 5736, \"FEMALES\": 5962, \"AGE_UNDER5\": 880, \"AGE_5_17\": 2052, \"AGE_18_21\": 633, \"AGE_22_29\": 1392, \"AGE_30_39\": 1718, \"AGE_40_49\": 1560, \"AGE_50_64\": 1691, \"AGE_65_UP\": 1772, \"MED_AGE\": 35.300000, \"MED_AGE_M\": 32.500000, \"MED_AGE_F\": 38.100000, \"HOUSEHOLDS\": 4621, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 478, \"HSEHLD_1_F\": 853, \"MARHH_CHD\": 1019, \"MARHH_NO_C\": 1327, \"MHH_CHILD\": 136, \"FHH_CHILD\": 326, \"FAMILIES\": 3089, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 4880, \"VACANT\": 259, \"OWNER_OCC\": 2766, \"RENTER_OCC\": 1855 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.423779002330761, 39.423338994920435 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Merrillville\", \"CLASS\": \"town\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"48528\", \"CAPITAL\": \"N\", \"AREALAND\": 33.283000, \"AREAWATER\": 0.034000, \"POP_CL\": 6, \"POP2000\": 30560, \"WHITE\": 21286, \"BLACK\": 6987, \"AMERI_ES\": 100, \"ASIAN\": 460, \"HAWN_PI\": 6, \"OTHER\": 1035, \"MULT_RACE\": 686, \"HISPANIC\": 2950, \"MALES\": 14577, \"FEMALES\": 15983, \"AGE_UNDER5\": 2021, \"AGE_5_17\": 5506, \"AGE_18_21\": 1548, \"AGE_22_29\": 3119, \"AGE_30_39\": 4526, \"AGE_40_49\": 4739, \"AGE_50_64\": 4497, \"AGE_65_UP\": 4604, \"MED_AGE\": 37.000000, \"MED_AGE_M\": 35.100000, \"MED_AGE_F\": 38.600000, \"HOUSEHOLDS\": 11678, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 1223, \"HSEHLD_1_F\": 1830, \"MARHH_CHD\": 2791, \"MARHH_NO_C\": 3388, \"MHH_CHILD\": 191, \"FHH_CHILD\": 777, \"FAMILIES\": 8125, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 12303, \"VACANT\": 625, \"OWNER_OCC\": 8245, \"RENTER_OCC\": 3433 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.335390000625992, 41.485668997627513 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Michigan City\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"48798\", \"CAPITAL\": \"N\", \"AREALAND\": 19.600000, \"AREAWATER\": 3.517000, \"POP_CL\": 6, \"POP2000\": 32900, \"WHITE\": 22848, \"BLACK\": 8657, \"AMERI_ES\": 86, \"ASIAN\": 167, \"HAWN_PI\": 6, \"OTHER\": 361, \"MULT_RACE\": 775, \"HISPANIC\": 1035, \"MALES\": 16594, \"FEMALES\": 16306, \"AGE_UNDER5\": 2484, \"AGE_5_17\": 5737, \"AGE_18_21\": 1731, \"AGE_22_29\": 3978, \"AGE_30_39\": 5017, \"AGE_40_49\": 4774, \"AGE_50_64\": 4545, \"AGE_65_UP\": 4634, \"MED_AGE\": 35.200000, \"MED_AGE_M\": 33.900000, \"MED_AGE_F\": 36.900000, \"HOUSEHOLDS\": 12550, \"AVE_HH_SZ\": 2.410000, \"HSEHLD_1_M\": 1652, \"HSEHLD_1_F\": 2232, \"MARHH_CHD\": 2062, \"MARHH_NO_C\": 2956, \"MHH_CHILD\": 337, \"FHH_CHILD\": 1444, \"FAMILIES\": 7903, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 14221, \"VACANT\": 1671, \"OWNER_OCC\": 7663, \"RENTER_OCC\": 4887 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.886928001699488, 41.709388996237315 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mishawaka\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"49932\", \"CAPITAL\": \"N\", \"AREALAND\": 15.711000, \"AREAWATER\": 0.336000, \"POP_CL\": 6, \"POP2000\": 46557, \"WHITE\": 42636, \"BLACK\": 1659, \"AMERI_ES\": 200, \"ASIAN\": 649, \"HAWN_PI\": 22, \"OTHER\": 494, \"MULT_RACE\": 897, \"HISPANIC\": 1297, \"MALES\": 22009, \"FEMALES\": 24548, \"AGE_UNDER5\": 3320, \"AGE_5_17\": 7852, \"AGE_18_21\": 3086, \"AGE_22_29\": 6532, \"AGE_30_39\": 6860, \"AGE_40_49\": 6368, \"AGE_50_64\": 6011, \"AGE_65_UP\": 6528, \"MED_AGE\": 33.500000, \"MED_AGE_M\": 31.800000, \"MED_AGE_F\": 35.300000, \"HOUSEHOLDS\": 20248, \"AVE_HH_SZ\": 2.230000, \"HSEHLD_1_M\": 3085, \"HSEHLD_1_F\": 4173, \"MARHH_CHD\": 3453, \"MARHH_NO_C\": 4678, \"MHH_CHILD\": 524, \"FHH_CHILD\": 1730, \"FAMILIES\": 11649, \"AVE_FAM_SZ\": 2.920000, \"HSE_UNITS\": 21572, \"VACANT\": 1324, \"OWNER_OCC\": 11508, \"RENTER_OCC\": 8740 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.171253005778453, 41.667497992816124 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Muncie\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"51876\", \"CAPITAL\": \"N\", \"AREALAND\": 24.184000, \"AREAWATER\": 0.015000, \"POP_CL\": 7, \"POP2000\": 67430, \"WHITE\": 57799, \"BLACK\": 7397, \"AMERI_ES\": 183, \"ASIAN\": 534, \"HAWN_PI\": 62, \"OTHER\": 451, \"MULT_RACE\": 1004, \"HISPANIC\": 971, \"MALES\": 31928, \"FEMALES\": 35502, \"AGE_UNDER5\": 3943, \"AGE_5_17\": 9406, \"AGE_18_21\": 11280, \"AGE_22_29\": 10073, \"AGE_30_39\": 7797, \"AGE_40_49\": 7296, \"AGE_50_64\": 8727, \"AGE_65_UP\": 8908, \"MED_AGE\": 28.900000, \"MED_AGE_M\": 27.600000, \"MED_AGE_F\": 30.300000, \"HOUSEHOLDS\": 27322, \"AVE_HH_SZ\": 2.240000, \"HSEHLD_1_M\": 3785, \"HSEHLD_1_F\": 5531, \"MARHH_CHD\": 3695, \"MARHH_NO_C\": 6258, \"MHH_CHILD\": 585, \"FHH_CHILD\": 2191, \"FAMILIES\": 14597, \"AVE_FAM_SZ\": 2.860000, \"HSE_UNITS\": 30205, \"VACANT\": 2883, \"OWNER_OCC\": 15257, \"RENTER_OCC\": 12065 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.388194014643574, 40.193242987590025 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Munster\", \"CLASS\": \"town\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"51912\", \"CAPITAL\": \"N\", \"AREALAND\": 7.540000, \"AREAWATER\": 0.054000, \"POP_CL\": 6, \"POP2000\": 21511, \"WHITE\": 19851, \"BLACK\": 222, \"AMERI_ES\": 13, \"ASIAN\": 965, \"HAWN_PI\": 4, \"OTHER\": 237, \"MULT_RACE\": 219, \"HISPANIC\": 1050, \"MALES\": 10300, \"FEMALES\": 11211, \"AGE_UNDER5\": 1056, \"AGE_5_17\": 4169, \"AGE_18_21\": 734, \"AGE_22_29\": 1220, \"AGE_30_39\": 2533, \"AGE_40_49\": 3689, \"AGE_50_64\": 4075, \"AGE_65_UP\": 4035, \"MED_AGE\": 42.900000, \"MED_AGE_M\": 41.500000, \"MED_AGE_F\": 44.200000, \"HOUSEHOLDS\": 8091, \"AVE_HH_SZ\": 2.620000, \"HSEHLD_1_M\": 594, \"HSEHLD_1_F\": 1166, \"MARHH_CHD\": 2310, \"MARHH_NO_C\": 2993, \"MHH_CHILD\": 79, \"FHH_CHILD\": 301, \"FAMILIES\": 6145, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 8339, \"VACANT\": 248, \"OWNER_OCC\": 7209, \"RENTER_OCC\": 882 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.50143100042807, 41.551456998003736 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"New Albany\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"52326\", \"CAPITAL\": \"N\", \"AREALAND\": 14.625000, \"AREAWATER\": 0.169000, \"POP_CL\": 6, \"POP2000\": 37603, \"WHITE\": 33844, \"BLACK\": 2607, \"AMERI_ES\": 118, \"ASIAN\": 159, \"HAWN_PI\": 14, \"OTHER\": 252, \"MULT_RACE\": 609, \"HISPANIC\": 512, \"MALES\": 17652, \"FEMALES\": 19951, \"AGE_UNDER5\": 2576, \"AGE_5_17\": 6457, \"AGE_18_21\": 1996, \"AGE_22_29\": 4349, \"AGE_30_39\": 5404, \"AGE_40_49\": 5467, \"AGE_50_64\": 5555, \"AGE_65_UP\": 5799, \"MED_AGE\": 36.600000, \"MED_AGE_M\": 34.800000, \"MED_AGE_F\": 38.300000, \"HOUSEHOLDS\": 15959, \"AVE_HH_SZ\": 2.310000, \"HSEHLD_1_M\": 1956, \"HSEHLD_1_F\": 2961, \"MARHH_CHD\": 2739, \"MARHH_NO_C\": 4048, \"MHH_CHILD\": 395, \"FHH_CHILD\": 1593, \"FAMILIES\": 10059, \"AVE_FAM_SZ\": 2.880000, \"HSE_UNITS\": 17098, \"VACANT\": 1139, \"OWNER_OCC\": 9459, \"RENTER_OCC\": 6500 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.821442005247306, 38.30193499213091 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"New Castle\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"52740\", \"CAPITAL\": \"N\", \"AREALAND\": 5.951000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 17780, \"WHITE\": 17135, \"BLACK\": 329, \"AMERI_ES\": 40, \"ASIAN\": 38, \"HAWN_PI\": 4, \"OTHER\": 73, \"MULT_RACE\": 161, \"HISPANIC\": 193, \"MALES\": 8359, \"FEMALES\": 9421, \"AGE_UNDER5\": 1203, \"AGE_5_17\": 2974, \"AGE_18_21\": 870, \"AGE_22_29\": 1917, \"AGE_30_39\": 2564, \"AGE_40_49\": 2496, \"AGE_50_64\": 2679, \"AGE_65_UP\": 3077, \"MED_AGE\": 37.500000, \"MED_AGE_M\": 35.100000, \"MED_AGE_F\": 39.900000, \"HOUSEHOLDS\": 7462, \"AVE_HH_SZ\": 2.320000, \"HSEHLD_1_M\": 840, \"HSEHLD_1_F\": 1512, \"MARHH_CHD\": 1379, \"MARHH_NO_C\": 2108, \"MHH_CHILD\": 172, \"FHH_CHILD\": 606, \"FAMILIES\": 4806, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 8042, \"VACANT\": 580, \"OWNER_OCC\": 4936, \"RENTER_OCC\": 2526 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.36504501451347, 39.92373298757181 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"New Haven\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"52992\", \"CAPITAL\": \"N\", \"AREALAND\": 8.151000, \"AREAWATER\": 0.004000, \"POP_CL\": 6, \"POP2000\": 12406, \"WHITE\": 12037, \"BLACK\": 83, \"AMERI_ES\": 41, \"ASIAN\": 36, \"HAWN_PI\": 1, \"OTHER\": 54, \"MULT_RACE\": 154, \"HISPANIC\": 242, \"MALES\": 6119, \"FEMALES\": 6287, \"AGE_UNDER5\": 873, \"AGE_5_17\": 2338, \"AGE_18_21\": 642, \"AGE_22_29\": 1290, \"AGE_30_39\": 1775, \"AGE_40_49\": 1863, \"AGE_50_64\": 2011, \"AGE_65_UP\": 1614, \"MED_AGE\": 36.300000, \"MED_AGE_M\": 34.800000, \"MED_AGE_F\": 37.600000, \"HOUSEHOLDS\": 4900, \"AVE_HH_SZ\": 2.510000, \"HSEHLD_1_M\": 556, \"HSEHLD_1_F\": 684, \"MARHH_CHD\": 1131, \"MARHH_NO_C\": 1565, \"MHH_CHILD\": 115, \"FHH_CHILD\": 336, \"FAMILIES\": 3417, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 5141, \"VACANT\": 241, \"OWNER_OCC\": 3903, \"RENTER_OCC\": 997 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.021480026965179, 41.06764798295935 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Noblesville\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"54180\", \"CAPITAL\": \"N\", \"AREALAND\": 17.916000, \"AREAWATER\": 1.150000, \"POP_CL\": 6, \"POP2000\": 28590, \"WHITE\": 27545, \"BLACK\": 326, \"AMERI_ES\": 58, \"ASIAN\": 230, \"HAWN_PI\": 15, \"OTHER\": 179, \"MULT_RACE\": 237, \"HISPANIC\": 398, \"MALES\": 14042, \"FEMALES\": 14548, \"AGE_UNDER5\": 2668, \"AGE_5_17\": 5776, \"AGE_18_21\": 1115, \"AGE_22_29\": 3183, \"AGE_30_39\": 5239, \"AGE_40_49\": 4441, \"AGE_50_64\": 3740, \"AGE_65_UP\": 2428, \"MED_AGE\": 33.000000, \"MED_AGE_M\": 32.200000, \"MED_AGE_F\": 33.700000, \"HOUSEHOLDS\": 10576, \"AVE_HH_SZ\": 2.640000, \"HSEHLD_1_M\": 964, \"HSEHLD_1_F\": 1290, \"MARHH_CHD\": 3426, \"MARHH_NO_C\": 3126, \"MHH_CHILD\": 212, \"FHH_CHILD\": 678, \"FAMILIES\": 7876, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 11294, \"VACANT\": 718, \"OWNER_OCC\": 7838, \"RENTER_OCC\": 2738 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.021462005500084, 40.049934992542909 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Peru\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"59328\", \"CAPITAL\": \"N\", \"AREALAND\": 4.615000, \"AREAWATER\": 0.043000, \"POP_CL\": 6, \"POP2000\": 12994, \"WHITE\": 12047, \"BLACK\": 383, \"AMERI_ES\": 197, \"ASIAN\": 56, \"HAWN_PI\": 1, \"OTHER\": 72, \"MULT_RACE\": 238, \"HISPANIC\": 172, \"MALES\": 6081, \"FEMALES\": 6913, \"AGE_UNDER5\": 916, \"AGE_5_17\": 2477, \"AGE_18_21\": 636, \"AGE_22_29\": 1371, \"AGE_30_39\": 1815, \"AGE_40_49\": 1785, \"AGE_50_64\": 1927, \"AGE_65_UP\": 2067, \"MED_AGE\": 36.300000, \"MED_AGE_M\": 34.600000, \"MED_AGE_F\": 37.900000, \"HOUSEHOLDS\": 5410, \"AVE_HH_SZ\": 2.340000, \"HSEHLD_1_M\": 710, \"HSEHLD_1_F\": 1062, \"MARHH_CHD\": 1055, \"MARHH_NO_C\": 1386, \"MHH_CHILD\": 133, \"FHH_CHILD\": 483, \"FAMILIES\": 3396, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 5943, \"VACANT\": 533, \"OWNER_OCC\": 3756, \"RENTER_OCC\": 1654 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.067791005827928, 40.757689992530032 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Plainfield\", \"CLASS\": \"town\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"60246\", \"CAPITAL\": \"N\", \"AREALAND\": 17.981000, \"AREAWATER\": 0.047000, \"POP_CL\": 6, \"POP2000\": 18396, \"WHITE\": 17496, \"BLACK\": 410, \"AMERI_ES\": 58, \"ASIAN\": 168, \"HAWN_PI\": 3, \"OTHER\": 66, \"MULT_RACE\": 195, \"HISPANIC\": 251, \"MALES\": 9265, \"FEMALES\": 9131, \"AGE_UNDER5\": 1182, \"AGE_5_17\": 3719, \"AGE_18_21\": 927, \"AGE_22_29\": 1893, \"AGE_30_39\": 2833, \"AGE_40_49\": 2729, \"AGE_50_64\": 2749, \"AGE_65_UP\": 2364, \"MED_AGE\": 35.500000, \"MED_AGE_M\": 33.000000, \"MED_AGE_F\": 37.700000, \"HOUSEHOLDS\": 7051, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 706, \"HSEHLD_1_F\": 1168, \"MARHH_CHD\": 1760, \"MARHH_NO_C\": 2129, \"MHH_CHILD\": 172, \"FHH_CHILD\": 513, \"FAMILIES\": 4913, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 7449, \"VACANT\": 398, \"OWNER_OCC\": 4848, \"RENTER_OCC\": 2203 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.384672002701862, 39.697470994652427 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Portage\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"61092\", \"CAPITAL\": \"N\", \"AREALAND\": 25.456000, \"AREAWATER\": 1.970000, \"POP_CL\": 6, \"POP2000\": 33496, \"WHITE\": 30992, \"BLACK\": 485, \"AMERI_ES\": 90, \"ASIAN\": 215, \"HAWN_PI\": 19, \"OTHER\": 1072, \"MULT_RACE\": 623, \"HISPANIC\": 3330, \"MALES\": 16247, \"FEMALES\": 17249, \"AGE_UNDER5\": 2404, \"AGE_5_17\": 6320, \"AGE_18_21\": 1842, \"AGE_22_29\": 3641, \"AGE_30_39\": 4957, \"AGE_40_49\": 5235, \"AGE_50_64\": 5142, \"AGE_65_UP\": 3955, \"MED_AGE\": 35.400000, \"MED_AGE_M\": 34.200000, \"MED_AGE_F\": 36.600000, \"HOUSEHOLDS\": 12746, \"AVE_HH_SZ\": 2.600000, \"HSEHLD_1_M\": 1406, \"HSEHLD_1_F\": 1642, \"MARHH_CHD\": 3170, \"MARHH_NO_C\": 3677, \"MHH_CHILD\": 351, \"FHH_CHILD\": 900, \"FAMILIES\": 9017, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 13375, \"VACANT\": 629, \"OWNER_OCC\": 9236, \"RENTER_OCC\": 3510 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.186553000899224, 41.581849997220687 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Richmond\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"64260\", \"CAPITAL\": \"N\", \"AREALAND\": 23.215000, \"AREAWATER\": 0.060000, \"POP_CL\": 6, \"POP2000\": 39124, \"WHITE\": 33951, \"BLACK\": 3469, \"AMERI_ES\": 107, \"ASIAN\": 312, \"HAWN_PI\": 22, \"OTHER\": 425, \"MULT_RACE\": 838, \"HISPANIC\": 796, \"MALES\": 18392, \"FEMALES\": 20732, \"AGE_UNDER5\": 2656, \"AGE_5_17\": 6512, \"AGE_18_21\": 2671, \"AGE_22_29\": 4357, \"AGE_30_39\": 5400, \"AGE_40_49\": 5221, \"AGE_50_64\": 5882, \"AGE_65_UP\": 6425, \"MED_AGE\": 36.300000, \"MED_AGE_M\": 34.400000, \"MED_AGE_F\": 38.200000, \"HOUSEHOLDS\": 16287, \"AVE_HH_SZ\": 2.290000, \"HSEHLD_1_M\": 2121, \"HSEHLD_1_F\": 3259, \"MARHH_CHD\": 2707, \"MARHH_NO_C\": 4313, \"MHH_CHILD\": 383, \"FHH_CHILD\": 1431, \"FAMILIES\": 9918, \"AVE_FAM_SZ\": 2.890000, \"HSE_UNITS\": 17647, \"VACANT\": 1360, \"OWNER_OCC\": 9563, \"RENTER_OCC\": 6724 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.890668027125557, 39.830188982602387 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Schererville\", \"CLASS\": \"town\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"68220\", \"CAPITAL\": \"N\", \"AREALAND\": 13.610000, \"AREAWATER\": 0.031000, \"POP_CL\": 6, \"POP2000\": 24851, \"WHITE\": 22726, \"BLACK\": 533, \"AMERI_ES\": 28, \"ASIAN\": 636, \"HAWN_PI\": 11, \"OTHER\": 504, \"MULT_RACE\": 413, \"HISPANIC\": 1576, \"MALES\": 12216, \"FEMALES\": 12635, \"AGE_UNDER5\": 1590, \"AGE_5_17\": 4441, \"AGE_18_21\": 1208, \"AGE_22_29\": 2648, \"AGE_30_39\": 3654, \"AGE_40_49\": 4489, \"AGE_50_64\": 4248, \"AGE_65_UP\": 2573, \"MED_AGE\": 37.200000, \"MED_AGE_M\": 35.900000, \"MED_AGE_F\": 38.400000, \"HOUSEHOLDS\": 9660, \"AVE_HH_SZ\": 2.560000, \"HSEHLD_1_M\": 1025, \"HSEHLD_1_F\": 1309, \"MARHH_CHD\": 2597, \"MARHH_NO_C\": 3106, \"MHH_CHILD\": 139, \"FHH_CHILD\": 417, \"FAMILIES\": 6825, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 10006, \"VACANT\": 346, \"OWNER_OCC\": 7089, \"RENTER_OCC\": 2571 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.443137000483929, 41.489134997881969 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Seymour\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"68832\", \"CAPITAL\": \"N\", \"AREALAND\": 10.837000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 18101, \"WHITE\": 16907, \"BLACK\": 184, \"AMERI_ES\": 55, \"ASIAN\": 259, \"HAWN_PI\": 9, \"OTHER\": 531, \"MULT_RACE\": 156, \"HISPANIC\": 877, \"MALES\": 8851, \"FEMALES\": 9250, \"AGE_UNDER5\": 1388, \"AGE_5_17\": 3222, \"AGE_18_21\": 1015, \"AGE_22_29\": 2378, \"AGE_30_39\": 2790, \"AGE_40_49\": 2475, \"AGE_50_64\": 2394, \"AGE_65_UP\": 2439, \"MED_AGE\": 33.700000, \"MED_AGE_M\": 31.700000, \"MED_AGE_F\": 35.900000, \"HOUSEHOLDS\": 7231, \"AVE_HH_SZ\": 2.460000, \"HSEHLD_1_M\": 868, \"HSEHLD_1_F\": 1194, \"MARHH_CHD\": 1674, \"MARHH_NO_C\": 1901, \"MHH_CHILD\": 181, \"FHH_CHILD\": 504, \"FAMILIES\": 4744, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 7709, \"VACANT\": 478, \"OWNER_OCC\": 4607, \"RENTER_OCC\": 2624 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.890068005437683, 38.956349992230443 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Shelbyville\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"69318\", \"CAPITAL\": \"N\", \"AREALAND\": 8.873000, \"AREAWATER\": 0.106000, \"POP_CL\": 6, \"POP2000\": 17951, \"WHITE\": 17104, \"BLACK\": 283, \"AMERI_ES\": 27, \"ASIAN\": 208, \"HAWN_PI\": 4, \"OTHER\": 162, \"MULT_RACE\": 163, \"HISPANIC\": 343, \"MALES\": 8737, \"FEMALES\": 9214, \"AGE_UNDER5\": 1379, \"AGE_5_17\": 3331, \"AGE_18_21\": 904, \"AGE_22_29\": 2255, \"AGE_30_39\": 2824, \"AGE_40_49\": 2577, \"AGE_50_64\": 2292, \"AGE_65_UP\": 2389, \"MED_AGE\": 34.100000, \"MED_AGE_M\": 32.700000, \"MED_AGE_F\": 35.400000, \"HOUSEHOLDS\": 7307, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 978, \"HSEHLD_1_F\": 1237, \"MARHH_CHD\": 1538, \"MARHH_NO_C\": 1846, \"MHH_CHILD\": 230, \"FHH_CHILD\": 590, \"FAMILIES\": 4655, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 7930, \"VACANT\": 623, \"OWNER_OCC\": 4265, \"RENTER_OCC\": 3042 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.776347007351077, 39.521831991176583 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"South Bend\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"71000\", \"CAPITAL\": \"N\", \"AREALAND\": 38.684000, \"AREAWATER\": 0.427000, \"POP_CL\": 8, \"POP2000\": 107789, \"WHITE\": 71195, \"BLACK\": 26522, \"AMERI_ES\": 440, \"ASIAN\": 1292, \"HAWN_PI\": 69, \"OTHER\": 5250, \"MULT_RACE\": 3021, \"HISPANIC\": 9110, \"MALES\": 51383, \"FEMALES\": 56406, \"AGE_UNDER5\": 8895, \"AGE_5_17\": 20514, \"AGE_18_21\": 6028, \"AGE_22_29\": 13944, \"AGE_30_39\": 15485, \"AGE_40_49\": 14153, \"AGE_50_64\": 12830, \"AGE_65_UP\": 15940, \"MED_AGE\": 32.700000, \"MED_AGE_M\": 30.800000, \"MED_AGE_F\": 34.700000, \"HOUSEHOLDS\": 42908, \"AVE_HH_SZ\": 2.450000, \"HSEHLD_1_M\": 5824, \"HSEHLD_1_F\": 8129, \"MARHH_CHD\": 7367, \"MARHH_NO_C\": 9366, \"MHH_CHILD\": 1013, \"FHH_CHILD\": 4702, \"FAMILIES\": 25956, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 46349, \"VACANT\": 3441, \"OWNER_OCC\": 27054, \"RENTER_OCC\": 15854 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.255157005062813, 41.67259699331408 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Speedway\", \"CLASS\": \"town\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"71828\", \"CAPITAL\": \"N\", \"AREALAND\": 4.755000, \"AREAWATER\": 0.008000, \"POP_CL\": 6, \"POP2000\": 12881, \"WHITE\": 10712, \"BLACK\": 1531, \"AMERI_ES\": 36, \"ASIAN\": 207, \"HAWN_PI\": 2, \"OTHER\": 155, \"MULT_RACE\": 238, \"HISPANIC\": 339, \"MALES\": 6074, \"FEMALES\": 6807, \"AGE_UNDER5\": 843, \"AGE_5_17\": 1847, \"AGE_18_21\": 686, \"AGE_22_29\": 1703, \"AGE_30_39\": 1933, \"AGE_40_49\": 1861, \"AGE_50_64\": 1788, \"AGE_65_UP\": 2220, \"MED_AGE\": 37.000000, \"MED_AGE_M\": 34.800000, \"MED_AGE_F\": 39.000000, \"HOUSEHOLDS\": 6151, \"AVE_HH_SZ\": 2.080000, \"HSEHLD_1_M\": 979, \"HSEHLD_1_F\": 1443, \"MARHH_CHD\": 877, \"MARHH_NO_C\": 1377, \"MHH_CHILD\": 142, \"FHH_CHILD\": 489, \"FAMILIES\": 3278, \"AVE_FAM_SZ\": 2.780000, \"HSE_UNITS\": 6636, \"VACANT\": 485, \"OWNER_OCC\": 2914, \"RENTER_OCC\": 3237 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.249988003532224, 39.791942993950151 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Terre Haute\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"75428\", \"CAPITAL\": \"N\", \"AREALAND\": 31.238000, \"AREAWATER\": 0.864000, \"POP_CL\": 7, \"POP2000\": 59614, \"WHITE\": 51422, \"BLACK\": 5827, \"AMERI_ES\": 202, \"ASIAN\": 696, \"HAWN_PI\": 25, \"OTHER\": 304, \"MULT_RACE\": 1138, \"HISPANIC\": 942, \"MALES\": 29398, \"FEMALES\": 30216, \"AGE_UNDER5\": 3674, \"AGE_5_17\": 9047, \"AGE_18_21\": 7472, \"AGE_22_29\": 7910, \"AGE_30_39\": 7625, \"AGE_40_49\": 7666, \"AGE_50_64\": 7349, \"AGE_65_UP\": 8871, \"MED_AGE\": 32.100000, \"MED_AGE_M\": 29.800000, \"MED_AGE_F\": 35.200000, \"HOUSEHOLDS\": 22870, \"AVE_HH_SZ\": 2.280000, \"HSEHLD_1_M\": 3108, \"HSEHLD_1_F\": 4880, \"MARHH_CHD\": 3681, \"MARHH_NO_C\": 5234, \"MHH_CHILD\": 527, \"FHH_CHILD\": 2006, \"FAMILIES\": 13025, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 25636, \"VACANT\": 2766, \"OWNER_OCC\": 13597, \"RENTER_OCC\": 9273 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.389762000173207, 39.469585998001435 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Valparaiso\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"78326\", \"CAPITAL\": \"N\", \"AREALAND\": 10.904000, \"AREAWATER\": 0.085000, \"POP_CL\": 6, \"POP2000\": 27428, \"WHITE\": 25879, \"BLACK\": 440, \"AMERI_ES\": 62, \"ASIAN\": 410, \"HAWN_PI\": 5, \"OTHER\": 216, \"MULT_RACE\": 416, \"HISPANIC\": 917, \"MALES\": 13125, \"FEMALES\": 14303, \"AGE_UNDER5\": 1606, \"AGE_5_17\": 4208, \"AGE_18_21\": 3125, \"AGE_22_29\": 3741, \"AGE_30_39\": 3647, \"AGE_40_49\": 3883, \"AGE_50_64\": 3638, \"AGE_65_UP\": 3580, \"MED_AGE\": 32.700000, \"MED_AGE_M\": 30.800000, \"MED_AGE_F\": 34.800000, \"HOUSEHOLDS\": 10867, \"AVE_HH_SZ\": 2.270000, \"HSEHLD_1_M\": 1558, \"HSEHLD_1_F\": 2070, \"MARHH_CHD\": 2255, \"MARHH_NO_C\": 2738, \"MHH_CHILD\": 185, \"FHH_CHILD\": 695, \"FAMILIES\": 6364, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 11559, \"VACANT\": 692, \"OWNER_OCC\": 5992, \"RENTER_OCC\": 4875 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.056919001147406, 41.476150996851501 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Vincennes\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"79208\", \"CAPITAL\": \"N\", \"AREALAND\": 7.137000, \"AREAWATER\": 0.068000, \"POP_CL\": 6, \"POP2000\": 18701, \"WHITE\": 17642, \"BLACK\": 613, \"AMERI_ES\": 47, \"ASIAN\": 134, \"HAWN_PI\": 11, \"OTHER\": 90, \"MULT_RACE\": 164, \"HISPANIC\": 191, \"MALES\": 9286, \"FEMALES\": 9415, \"AGE_UNDER5\": 1067, \"AGE_5_17\": 2678, \"AGE_18_21\": 3054, \"AGE_22_29\": 1920, \"AGE_30_39\": 2123, \"AGE_40_49\": 2402, \"AGE_50_64\": 2630, \"AGE_65_UP\": 2827, \"MED_AGE\": 33.100000, \"MED_AGE_M\": 28.600000, \"MED_AGE_F\": 37.800000, \"HOUSEHOLDS\": 7614, \"AVE_HH_SZ\": 2.200000, \"HSEHLD_1_M\": 1088, \"HSEHLD_1_F\": 1641, \"MARHH_CHD\": 1228, \"MARHH_NO_C\": 1880, \"MHH_CHILD\": 163, \"FHH_CHILD\": 608, \"FAMILIES\": 4333, \"AVE_FAM_SZ\": 2.850000, \"HSE_UNITS\": 8574, \"VACANT\": 960, \"OWNER_OCC\": 4396, \"RENTER_OCC\": 3218 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.516066999968643, 38.678328998339268 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wabash\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"79370\", \"CAPITAL\": \"N\", \"AREALAND\": 8.903000, \"AREAWATER\": 0.249000, \"POP_CL\": 6, \"POP2000\": 11743, \"WHITE\": 11373, \"BLACK\": 44, \"AMERI_ES\": 124, \"ASIAN\": 60, \"HAWN_PI\": 3, \"OTHER\": 48, \"MULT_RACE\": 91, \"HISPANIC\": 172, \"MALES\": 5596, \"FEMALES\": 6147, \"AGE_UNDER5\": 770, \"AGE_5_17\": 2083, \"AGE_18_21\": 628, \"AGE_22_29\": 1202, \"AGE_30_39\": 1605, \"AGE_40_49\": 1643, \"AGE_50_64\": 1887, \"AGE_65_UP\": 1925, \"MED_AGE\": 37.400000, \"MED_AGE_M\": 35.300000, \"MED_AGE_F\": 39.700000, \"HOUSEHOLDS\": 4799, \"AVE_HH_SZ\": 2.360000, \"HSEHLD_1_M\": 542, \"HSEHLD_1_F\": 941, \"MARHH_CHD\": 949, \"MARHH_NO_C\": 1429, \"MHH_CHILD\": 118, \"FHH_CHILD\": 335, \"FAMILIES\": 3102, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 5136, \"VACANT\": 337, \"OWNER_OCC\": 3266, \"RENTER_OCC\": 1533 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.827163008518141, 40.800798990873268 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Warsaw\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"80306\", \"CAPITAL\": \"N\", \"AREALAND\": 10.481000, \"AREAWATER\": 1.067000, \"POP_CL\": 6, \"POP2000\": 12415, \"WHITE\": 11235, \"BLACK\": 175, \"AMERI_ES\": 48, \"ASIAN\": 133, \"HAWN_PI\": 2, \"OTHER\": 652, \"MULT_RACE\": 170, \"HISPANIC\": 1144, \"MALES\": 6124, \"FEMALES\": 6291, \"AGE_UNDER5\": 995, \"AGE_5_17\": 2236, \"AGE_18_21\": 751, \"AGE_22_29\": 1576, \"AGE_30_39\": 1745, \"AGE_40_49\": 1702, \"AGE_50_64\": 1770, \"AGE_65_UP\": 1640, \"MED_AGE\": 33.900000, \"MED_AGE_M\": 31.200000, \"MED_AGE_F\": 36.700000, \"HOUSEHOLDS\": 4794, \"AVE_HH_SZ\": 2.490000, \"HSEHLD_1_M\": 560, \"HSEHLD_1_F\": 896, \"MARHH_CHD\": 1092, \"MARHH_NO_C\": 1258, \"MHH_CHILD\": 113, \"FHH_CHILD\": 350, \"FAMILIES\": 3067, \"AVE_FAM_SZ\": 3.110000, \"HSE_UNITS\": 5101, \"VACANT\": 307, \"OWNER_OCC\": 2993, \"RENTER_OCC\": 1801 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.847002008863839, 41.240563990801434 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Washington\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"80504\", \"CAPITAL\": \"N\", \"AREALAND\": 4.734000, \"AREAWATER\": 0.028000, \"POP_CL\": 6, \"POP2000\": 11380, \"WHITE\": 10845, \"BLACK\": 104, \"AMERI_ES\": 34, \"ASIAN\": 44, \"HAWN_PI\": 6, \"OTHER\": 250, \"MULT_RACE\": 97, \"HISPANIC\": 472, \"MALES\": 5382, \"FEMALES\": 5998, \"AGE_UNDER5\": 791, \"AGE_5_17\": 2110, \"AGE_18_21\": 563, \"AGE_22_29\": 1109, \"AGE_30_39\": 1470, \"AGE_40_49\": 1556, \"AGE_50_64\": 1695, \"AGE_65_UP\": 2086, \"MED_AGE\": 37.700000, \"MED_AGE_M\": 34.900000, \"MED_AGE_F\": 40.600000, \"HOUSEHOLDS\": 4658, \"AVE_HH_SZ\": 2.360000, \"HSEHLD_1_M\": 558, \"HSEHLD_1_F\": 988, \"MARHH_CHD\": 917, \"MARHH_NO_C\": 1221, \"MHH_CHILD\": 119, \"FHH_CHILD\": 390, \"FAMILIES\": 2899, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 5077, \"VACANT\": 419, \"OWNER_OCC\": 3155, \"RENTER_OCC\": 1503 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.175111000192089, 38.658206997629904 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"West Lafayette\", \"CLASS\": \"city\", \"ST\": \"IN\", \"STFIPS\": \"18\", \"PLACEFIP\": \"82862\", \"CAPITAL\": \"N\", \"AREALAND\": 5.513000, \"AREAWATER\": 0.010000, \"POP_CL\": 6, \"POP2000\": 28778, \"WHITE\": 23985, \"BLACK\": 684, \"AMERI_ES\": 45, \"ASIAN\": 3263, \"HAWN_PI\": 9, \"OTHER\": 336, \"MULT_RACE\": 456, \"HISPANIC\": 920, \"MALES\": 16455, \"FEMALES\": 12323, \"AGE_UNDER5\": 718, \"AGE_5_17\": 2281, \"AGE_18_21\": 10389, \"AGE_22_29\": 7278, \"AGE_30_39\": 1897, \"AGE_40_49\": 2049, \"AGE_50_64\": 1939, \"AGE_65_UP\": 2227, \"MED_AGE\": 22.300000, \"MED_AGE_M\": 22.100000, \"MED_AGE_F\": 22.700000, \"HOUSEHOLDS\": 10462, \"AVE_HH_SZ\": 2.260000, \"HSEHLD_1_M\": 1647, \"HSEHLD_1_F\": 1770, \"MARHH_CHD\": 1281, \"MARHH_NO_C\": 1606, \"MHH_CHILD\": 54, \"FHH_CHILD\": 222, \"FAMILIES\": 3591, \"AVE_FAM_SZ\": 2.890000, \"HSE_UNITS\": 10819, \"VACANT\": 357, \"OWNER_OCC\": 3368, \"RENTER_OCC\": 7094 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.912409001156263, 40.441934996570929 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Arkansas City\", \"CLASS\": \"city\", \"ST\": \"KS\", \"STFIPS\": \"20\", \"PLACEFIP\": \"02300\", \"CAPITAL\": \"N\", \"AREALAND\": 7.512000, \"AREAWATER\": 0.022000, \"POP_CL\": 6, \"POP2000\": 11963, \"WHITE\": 10426, \"BLACK\": 539, \"AMERI_ES\": 322, \"ASIAN\": 77, \"HAWN_PI\": 2, \"OTHER\": 233, \"MULT_RACE\": 364, \"HISPANIC\": 535, \"MALES\": 5609, \"FEMALES\": 6354, \"AGE_UNDER5\": 843, \"AGE_5_17\": 2229, \"AGE_18_21\": 931, \"AGE_22_29\": 1109, \"AGE_30_39\": 1468, \"AGE_40_49\": 1472, \"AGE_50_64\": 1765, \"AGE_65_UP\": 2146, \"MED_AGE\": 36.300000, \"MED_AGE_M\": 34.200000, \"MED_AGE_F\": 38.200000, \"HOUSEHOLDS\": 4855, \"AVE_HH_SZ\": 2.360000, \"HSEHLD_1_M\": 586, \"HSEHLD_1_F\": 954, \"MARHH_CHD\": 984, \"MARHH_NO_C\": 1358, \"MHH_CHILD\": 122, \"FHH_CHILD\": 363, \"FAMILIES\": 3101, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 5628, \"VACANT\": 773, \"OWNER_OCC\": 3148, \"RENTER_OCC\": 1707 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.039608000092457, 37.065266999759075 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Atchison\", \"CLASS\": \"city\", \"ST\": \"KS\", \"STFIPS\": \"20\", \"PLACEFIP\": \"02900\", \"CAPITAL\": \"N\", \"AREALAND\": 6.829000, \"AREAWATER\": 0.381000, \"POP_CL\": 6, \"POP2000\": 10232, \"WHITE\": 9061, \"BLACK\": 798, \"AMERI_ES\": 52, \"ASIAN\": 42, \"HAWN_PI\": 9, \"OTHER\": 66, \"MULT_RACE\": 204, \"HISPANIC\": 264, \"MALES\": 4788, \"FEMALES\": 5444, \"AGE_UNDER5\": 632, \"AGE_5_17\": 1998, \"AGE_18_21\": 991, \"AGE_22_29\": 997, \"AGE_30_39\": 1192, \"AGE_40_49\": 1258, \"AGE_50_64\": 1373, \"AGE_65_UP\": 1791, \"MED_AGE\": 34.700000, \"MED_AGE_M\": 30.800000, \"MED_AGE_F\": 37.300000, \"HOUSEHOLDS\": 3863, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 495, \"HSEHLD_1_F\": 743, \"MARHH_CHD\": 787, \"MARHH_NO_C\": 1020, \"MHH_CHILD\": 82, \"FHH_CHILD\": 322, \"FAMILIES\": 2438, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 4220, \"VACANT\": 357, \"OWNER_OCC\": 2572, \"RENTER_OCC\": 1291 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.128257000001256, 39.56249899999144 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Coffeyville\", \"CLASS\": \"city\", \"ST\": \"KS\", \"STFIPS\": \"20\", \"PLACEFIP\": \"14600\", \"CAPITAL\": \"N\", \"AREALAND\": 7.055000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11021, \"WHITE\": 8350, \"BLACK\": 1336, \"AMERI_ES\": 548, \"ASIAN\": 66, \"HAWN_PI\": 4, \"OTHER\": 180, \"MULT_RACE\": 537, \"HISPANIC\": 421, \"MALES\": 5133, \"FEMALES\": 5888, \"AGE_UNDER5\": 690, \"AGE_5_17\": 1955, \"AGE_18_21\": 766, \"AGE_22_29\": 959, \"AGE_30_39\": 1248, \"AGE_40_49\": 1383, \"AGE_50_64\": 1658, \"AGE_65_UP\": 2362, \"MED_AGE\": 39.200000, \"MED_AGE_M\": 35.800000, \"MED_AGE_F\": 42.400000, \"HOUSEHOLDS\": 4691, \"AVE_HH_SZ\": 2.250000, \"HSEHLD_1_M\": 562, \"HSEHLD_1_F\": 1100, \"MARHH_CHD\": 786, \"MARHH_NO_C\": 1325, \"MHH_CHILD\": 115, \"FHH_CHILD\": 354, \"FAMILIES\": 2848, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 5550, \"VACANT\": 859, \"OWNER_OCC\": 3047, \"RENTER_OCC\": 1644 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.626438000006758, 37.037707999980313 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Derby\", \"CLASS\": \"city\", \"ST\": \"KS\", \"STFIPS\": \"20\", \"PLACEFIP\": \"17800\", \"CAPITAL\": \"N\", \"AREALAND\": 7.446000, \"AREAWATER\": 0.011000, \"POP_CL\": 6, \"POP2000\": 17807, \"WHITE\": 16742, \"BLACK\": 237, \"AMERI_ES\": 139, \"ASIAN\": 179, \"HAWN_PI\": 25, \"OTHER\": 167, \"MULT_RACE\": 318, \"HISPANIC\": 533, \"MALES\": 8556, \"FEMALES\": 9251, \"AGE_UNDER5\": 1219, \"AGE_5_17\": 4515, \"AGE_18_21\": 774, \"AGE_22_29\": 1357, \"AGE_30_39\": 2571, \"AGE_40_49\": 3183, \"AGE_50_64\": 2413, \"AGE_65_UP\": 1775, \"MED_AGE\": 34.800000, \"MED_AGE_M\": 33.700000, \"MED_AGE_F\": 35.800000, \"HOUSEHOLDS\": 6196, \"AVE_HH_SZ\": 2.850000, \"HSEHLD_1_M\": 396, \"HSEHLD_1_F\": 697, \"MARHH_CHD\": 2251, \"MARHH_NO_C\": 1950, \"MHH_CHILD\": 141, \"FHH_CHILD\": 367, \"FAMILIES\": 4967, \"AVE_FAM_SZ\": 3.240000, \"HSE_UNITS\": 6407, \"VACANT\": 211, \"OWNER_OCC\": 4930, \"RENTER_OCC\": 1266 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.261492000112696, 37.55240699965681 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Dodge City\", \"CLASS\": \"city\", \"ST\": \"KS\", \"STFIPS\": \"20\", \"PLACEFIP\": \"18250\", \"CAPITAL\": \"N\", \"AREALAND\": 12.614000, \"AREAWATER\": 0.105000, \"POP_CL\": 6, \"POP2000\": 25176, \"WHITE\": 17983, \"BLACK\": 488, \"AMERI_ES\": 173, \"ASIAN\": 596, \"HAWN_PI\": 38, \"OTHER\": 5241, \"MULT_RACE\": 657, \"HISPANIC\": 10793, \"MALES\": 12998, \"FEMALES\": 12178, \"AGE_UNDER5\": 2492, \"AGE_5_17\": 5368, \"AGE_18_21\": 1816, \"AGE_22_29\": 3396, \"AGE_30_39\": 3825, \"AGE_40_49\": 3042, \"AGE_50_64\": 2722, \"AGE_65_UP\": 2515, \"MED_AGE\": 28.900000, \"MED_AGE_M\": 27.700000, \"MED_AGE_F\": 30.100000, \"HOUSEHOLDS\": 8395, \"AVE_HH_SZ\": 2.940000, \"HSEHLD_1_M\": 844, \"HSEHLD_1_F\": 1126, \"MARHH_CHD\": 2602, \"MARHH_NO_C\": 2022, \"MHH_CHILD\": 236, \"FHH_CHILD\": 616, \"FAMILIES\": 5965, \"AVE_FAM_SZ\": 3.460000, \"HSE_UNITS\": 8976, \"VACANT\": 581, \"OWNER_OCC\": 5097, \"RENTER_OCC\": 3298 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -100.018211996620664, 37.75967099334671 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"El Dorado\", \"CLASS\": \"city\", \"ST\": \"KS\", \"STFIPS\": \"20\", \"PLACEFIP\": \"20075\", \"CAPITAL\": \"N\", \"AREALAND\": 6.365000, \"AREAWATER\": 0.058000, \"POP_CL\": 6, \"POP2000\": 12057, \"WHITE\": 11372, \"BLACK\": 165, \"AMERI_ES\": 129, \"ASIAN\": 27, \"HAWN_PI\": 8, \"OTHER\": 128, \"MULT_RACE\": 228, \"HISPANIC\": 353, \"MALES\": 5771, \"FEMALES\": 6286, \"AGE_UNDER5\": 915, \"AGE_5_17\": 2121, \"AGE_18_21\": 788, \"AGE_22_29\": 1305, \"AGE_30_39\": 1531, \"AGE_40_49\": 1632, \"AGE_50_64\": 1629, \"AGE_65_UP\": 2136, \"MED_AGE\": 36.100000, \"MED_AGE_M\": 33.500000, \"MED_AGE_F\": 38.300000, \"HOUSEHOLDS\": 5068, \"AVE_HH_SZ\": 2.330000, \"HSEHLD_1_M\": 616, \"HSEHLD_1_F\": 1001, \"MARHH_CHD\": 1037, \"MARHH_NO_C\": 1413, \"MHH_CHILD\": 132, \"FHH_CHILD\": 371, \"FAMILIES\": 3182, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 5460, \"VACANT\": 392, \"OWNER_OCC\": 3163, \"RENTER_OCC\": 1905 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.85828100006465, 37.821116999806193 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Emporia\", \"CLASS\": \"city\", \"ST\": \"KS\", \"STFIPS\": \"20\", \"PLACEFIP\": \"21275\", \"CAPITAL\": \"N\", \"AREALAND\": 9.900000, \"AREAWATER\": 0.065000, \"POP_CL\": 6, \"POP2000\": 26760, \"WHITE\": 21041, \"BLACK\": 793, \"AMERI_ES\": 128, \"ASIAN\": 712, \"HAWN_PI\": 1, \"OTHER\": 3411, \"MULT_RACE\": 674, \"HISPANIC\": 5752, \"MALES\": 13082, \"FEMALES\": 13678, \"AGE_UNDER5\": 1958, \"AGE_5_17\": 4810, \"AGE_18_21\": 3239, \"AGE_22_29\": 4031, \"AGE_30_39\": 3444, \"AGE_40_49\": 3383, \"AGE_50_64\": 2944, \"AGE_65_UP\": 2951, \"MED_AGE\": 28.400000, \"MED_AGE_M\": 27.900000, \"MED_AGE_F\": 29.100000, \"HOUSEHOLDS\": 10253, \"AVE_HH_SZ\": 2.470000, \"HSEHLD_1_M\": 1335, \"HSEHLD_1_F\": 1853, \"MARHH_CHD\": 2281, \"MARHH_NO_C\": 2375, \"MHH_CHILD\": 265, \"FHH_CHILD\": 688, \"FAMILIES\": 6041, \"AVE_FAM_SZ\": 3.150000, \"HSE_UNITS\": 11019, \"VACANT\": 766, \"OWNER_OCC\": 5493, \"RENTER_OCC\": 4760 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.187054000019828, 38.408147999934371 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Garden City\", \"CLASS\": \"city\", \"ST\": \"KS\", \"STFIPS\": \"20\", \"PLACEFIP\": \"25325\", \"CAPITAL\": \"N\", \"AREALAND\": 8.533000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 28451, \"WHITE\": 19574, \"BLACK\": 425, \"AMERI_ES\": 301, \"ASIAN\": 1009, \"HAWN_PI\": 27, \"OTHER\": 6338, \"MULT_RACE\": 777, \"HISPANIC\": 12492, \"MALES\": 14403, \"FEMALES\": 14048, \"AGE_UNDER5\": 2899, \"AGE_5_17\": 6388, \"AGE_18_21\": 2005, \"AGE_22_29\": 3563, \"AGE_30_39\": 4502, \"AGE_40_49\": 3740, \"AGE_50_64\": 3037, \"AGE_65_UP\": 2317, \"MED_AGE\": 28.600000, \"MED_AGE_M\": 28.000000, \"MED_AGE_F\": 29.300000, \"HOUSEHOLDS\": 9338, \"AVE_HH_SZ\": 2.990000, \"HSEHLD_1_M\": 918, \"HSEHLD_1_F\": 1148, \"MARHH_CHD\": 3012, \"MARHH_NO_C\": 2254, \"MHH_CHILD\": 285, \"FHH_CHILD\": 728, \"FAMILIES\": 6761, \"AVE_FAM_SZ\": 3.510000, \"HSE_UNITS\": 9907, \"VACANT\": 569, \"OWNER_OCC\": 5751, \"RENTER_OCC\": 3587 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -100.864103985554351, 37.975303987021213 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Great Bend\", \"CLASS\": \"city\", \"ST\": \"KS\", \"STFIPS\": \"20\", \"PLACEFIP\": \"28300\", \"CAPITAL\": \"N\", \"AREALAND\": 10.629000, \"AREAWATER\": 0.113000, \"POP_CL\": 6, \"POP2000\": 15345, \"WHITE\": 13781, \"BLACK\": 248, \"AMERI_ES\": 66, \"ASIAN\": 47, \"HAWN_PI\": 2, \"OTHER\": 886, \"MULT_RACE\": 315, \"HISPANIC\": 2025, \"MALES\": 7364, \"FEMALES\": 7981, \"AGE_UNDER5\": 1086, \"AGE_5_17\": 2858, \"AGE_18_21\": 909, \"AGE_22_29\": 1378, \"AGE_30_39\": 1911, \"AGE_40_49\": 2155, \"AGE_50_64\": 2179, \"AGE_65_UP\": 2869, \"MED_AGE\": 37.800000, \"MED_AGE_M\": 35.600000, \"MED_AGE_F\": 40.100000, \"HOUSEHOLDS\": 6371, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 804, \"HSEHLD_1_F\": 1288, \"MARHH_CHD\": 1432, \"MARHH_NO_C\": 1822, \"MHH_CHILD\": 137, \"FHH_CHILD\": 366, \"FAMILIES\": 4003, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 7080, \"VACANT\": 709, \"OWNER_OCC\": 4137, \"RENTER_OCC\": 2234 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -98.77795799991577, 38.366055997783839 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hays\", \"CLASS\": \"city\", \"ST\": \"KS\", \"STFIPS\": \"20\", \"PLACEFIP\": \"31100\", \"CAPITAL\": \"N\", \"AREALAND\": 7.593000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 20013, \"WHITE\": 19098, \"BLACK\": 159, \"AMERI_ES\": 49, \"ASIAN\": 219, \"HAWN_PI\": 5, \"OTHER\": 287, \"MULT_RACE\": 196, \"HISPANIC\": 527, \"MALES\": 9728, \"FEMALES\": 10285, \"AGE_UNDER5\": 1144, \"AGE_5_17\": 3160, \"AGE_18_21\": 2919, \"AGE_22_29\": 2849, \"AGE_30_39\": 2236, \"AGE_40_49\": 2759, \"AGE_50_64\": 2301, \"AGE_65_UP\": 2645, \"MED_AGE\": 29.700000, \"MED_AGE_M\": 27.800000, \"MED_AGE_F\": 32.000000, \"HOUSEHOLDS\": 8230, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 1058, \"HSEHLD_1_F\": 1580, \"MARHH_CHD\": 1705, \"MARHH_NO_C\": 2070, \"MHH_CHILD\": 117, \"FHH_CHILD\": 435, \"FAMILIES\": 4678, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 8772, \"VACANT\": 542, \"OWNER_OCC\": 4743, \"RENTER_OCC\": 3487 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -99.322276998873832, 38.879398996103433 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hutchinson\", \"CLASS\": \"city\", \"ST\": \"KS\", \"STFIPS\": \"20\", \"PLACEFIP\": \"33625\", \"CAPITAL\": \"N\", \"AREALAND\": 21.105000, \"AREAWATER\": 0.074000, \"POP_CL\": 6, \"POP2000\": 40787, \"WHITE\": 36125, \"BLACK\": 1747, \"AMERI_ES\": 267, \"ASIAN\": 242, \"HAWN_PI\": 15, \"OTHER\": 1490, \"MULT_RACE\": 901, \"HISPANIC\": 3130, \"MALES\": 20570, \"FEMALES\": 20217, \"AGE_UNDER5\": 2678, \"AGE_5_17\": 6777, \"AGE_18_21\": 2721, \"AGE_22_29\": 4442, \"AGE_30_39\": 5550, \"AGE_40_49\": 5951, \"AGE_50_64\": 5791, \"AGE_65_UP\": 6877, \"MED_AGE\": 37.100000, \"MED_AGE_M\": 35.000000, \"MED_AGE_F\": 39.500000, \"HOUSEHOLDS\": 16335, \"AVE_HH_SZ\": 2.310000, \"HSEHLD_1_M\": 2036, \"HSEHLD_1_F\": 3141, \"MARHH_CHD\": 3227, \"MARHH_NO_C\": 4833, \"MHH_CHILD\": 381, \"FHH_CHILD\": 1110, \"FAMILIES\": 10338, \"AVE_FAM_SZ\": 2.910000, \"HSE_UNITS\": 17693, \"VACANT\": 1358, \"OWNER_OCC\": 10563, \"RENTER_OCC\": 5772 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.923519000166593, 38.065502999159719 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Junction City\", \"CLASS\": \"city\", \"ST\": \"KS\", \"STFIPS\": \"20\", \"PLACEFIP\": \"35750\", \"CAPITAL\": \"N\", \"AREALAND\": 7.552000, \"AREAWATER\": 0.037000, \"POP_CL\": 6, \"POP2000\": 18886, \"WHITE\": 11025, \"BLACK\": 5041, \"AMERI_ES\": 155, \"ASIAN\": 724, \"HAWN_PI\": 74, \"OTHER\": 757, \"MULT_RACE\": 1110, \"HISPANIC\": 1569, \"MALES\": 9112, \"FEMALES\": 9774, \"AGE_UNDER5\": 1647, \"AGE_5_17\": 3682, \"AGE_18_21\": 1422, \"AGE_22_29\": 2601, \"AGE_30_39\": 2598, \"AGE_40_49\": 2582, \"AGE_50_64\": 2265, \"AGE_65_UP\": 2089, \"MED_AGE\": 30.400000, \"MED_AGE_M\": 29.200000, \"MED_AGE_F\": 31.900000, \"HOUSEHOLDS\": 7492, \"AVE_HH_SZ\": 2.490000, \"HSEHLD_1_M\": 883, \"HSEHLD_1_F\": 1093, \"MARHH_CHD\": 1716, \"MARHH_NO_C\": 2012, \"MHH_CHILD\": 171, \"FHH_CHILD\": 791, \"FAMILIES\": 5083, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 8740, \"VACANT\": 1248, \"OWNER_OCC\": 3894, \"RENTER_OCC\": 3598 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.840351000051527, 39.027518999795298 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Kansas City\", \"CLASS\": \"city\", \"ST\": \"KS\", \"STFIPS\": \"20\", \"PLACEFIP\": \"36000\", \"CAPITAL\": \"N\", \"AREALAND\": 124.258000, \"AREAWATER\": 3.552000, \"POP_CL\": 8, \"POP2000\": 146866, \"WHITE\": 81910, \"BLACK\": 44240, \"AMERI_ES\": 1103, \"ASIAN\": 2527, \"HAWN_PI\": 56, \"OTHER\": 12645, \"MULT_RACE\": 4385, \"HISPANIC\": 24639, \"MALES\": 71769, \"FEMALES\": 75097, \"AGE_UNDER5\": 11953, \"AGE_5_17\": 29996, \"AGE_18_21\": 8923, \"AGE_22_29\": 17800, \"AGE_30_39\": 21212, \"AGE_40_49\": 20480, \"AGE_50_64\": 19463, \"AGE_65_UP\": 17039, \"MED_AGE\": 32.300000, \"MED_AGE_M\": 30.800000, \"MED_AGE_F\": 33.900000, \"HOUSEHOLDS\": 55500, \"AVE_HH_SZ\": 2.620000, \"HSEHLD_1_M\": 7448, \"HSEHLD_1_F\": 8732, \"MARHH_CHD\": 10246, \"MARHH_NO_C\": 12632, \"MHH_CHILD\": 1610, \"FHH_CHILD\": 6176, \"FAMILIES\": 36226, \"AVE_FAM_SZ\": 3.250000, \"HSE_UNITS\": 61446, \"VACANT\": 5946, \"OWNER_OCC\": 34422, \"RENTER_OCC\": 21078 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.676470000000222, 39.106779999996313 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lawrence\", \"CLASS\": \"city\", \"ST\": \"KS\", \"STFIPS\": \"20\", \"PLACEFIP\": \"38900\", \"CAPITAL\": \"N\", \"AREALAND\": 28.111000, \"AREAWATER\": 0.586000, \"POP_CL\": 7, \"POP2000\": 80098, \"WHITE\": 67122, \"BLACK\": 4078, \"AMERI_ES\": 2344, \"ASIAN\": 3030, \"HAWN_PI\": 56, \"OTHER\": 1086, \"MULT_RACE\": 2382, \"HISPANIC\": 2921, \"MALES\": 39803, \"FEMALES\": 40295, \"AGE_UNDER5\": 4345, \"AGE_5_17\": 10526, \"AGE_18_21\": 15772, \"AGE_22_29\": 16338, \"AGE_30_39\": 10494, \"AGE_40_49\": 9325, \"AGE_50_64\": 7543, \"AGE_65_UP\": 5755, \"MED_AGE\": 25.300000, \"MED_AGE_M\": 25.100000, \"MED_AGE_F\": 25.700000, \"HOUSEHOLDS\": 31388, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 4558, \"HSEHLD_1_F\": 5055, \"MARHH_CHD\": 5497, \"MARHH_NO_C\": 6417, \"MHH_CHILD\": 542, \"FHH_CHILD\": 1830, \"FAMILIES\": 15737, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 32761, \"VACANT\": 1373, \"OWNER_OCC\": 14393, \"RENTER_OCC\": 16995 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.253199000001999, 38.959901999989526 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Leavenworth\", \"CLASS\": \"city\", \"ST\": \"KS\", \"STFIPS\": \"20\", \"PLACEFIP\": \"39000\", \"CAPITAL\": \"N\", \"AREALAND\": 23.506000, \"AREAWATER\": 0.020000, \"POP_CL\": 6, \"POP2000\": 35420, \"WHITE\": 27192, \"BLACK\": 5781, \"AMERI_ES\": 270, \"ASIAN\": 523, \"HAWN_PI\": 59, \"OTHER\": 609, \"MULT_RACE\": 986, \"HISPANIC\": 1800, \"MALES\": 18743, \"FEMALES\": 16677, \"AGE_UNDER5\": 2898, \"AGE_5_17\": 6903, \"AGE_18_21\": 1822, \"AGE_22_29\": 3888, \"AGE_30_39\": 6869, \"AGE_40_49\": 5250, \"AGE_50_64\": 4353, \"AGE_65_UP\": 3437, \"MED_AGE\": 34.100000, \"MED_AGE_M\": 34.000000, \"MED_AGE_F\": 34.200000, \"HOUSEHOLDS\": 12035, \"AVE_HH_SZ\": 2.600000, \"HSEHLD_1_M\": 1459, \"HSEHLD_1_F\": 1804, \"MARHH_CHD\": 3451, \"MARHH_NO_C\": 2925, \"MHH_CHILD\": 273, \"FHH_CHILD\": 985, \"FAMILIES\": 8219, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 12936, \"VACANT\": 901, \"OWNER_OCC\": 6111, \"RENTER_OCC\": 5924 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.922740000000644, 39.308247999994386 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Leawood\", \"CLASS\": \"city\", \"ST\": \"KS\", \"STFIPS\": \"20\", \"PLACEFIP\": \"39075\", \"CAPITAL\": \"N\", \"AREALAND\": 15.084000, \"AREAWATER\": 0.013000, \"POP_CL\": 6, \"POP2000\": 27656, \"WHITE\": 26326, \"BLACK\": 405, \"AMERI_ES\": 38, \"ASIAN\": 603, \"HAWN_PI\": 2, \"OTHER\": 70, \"MULT_RACE\": 212, \"HISPANIC\": 360, \"MALES\": 13555, \"FEMALES\": 14101, \"AGE_UNDER5\": 1753, \"AGE_5_17\": 6587, \"AGE_18_21\": 789, \"AGE_22_29\": 939, \"AGE_30_39\": 3116, \"AGE_40_49\": 5630, \"AGE_50_64\": 5346, \"AGE_65_UP\": 3496, \"MED_AGE\": 41.300000, \"MED_AGE_M\": 41.100000, \"MED_AGE_F\": 41.400000, \"HOUSEHOLDS\": 9841, \"AVE_HH_SZ\": 2.810000, \"HSEHLD_1_M\": 546, \"HSEHLD_1_F\": 950, \"MARHH_CHD\": 3685, \"MARHH_NO_C\": 3791, \"MHH_CHILD\": 67, \"FHH_CHILD\": 320, \"FAMILIES\": 8119, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 10129, \"VACANT\": 288, \"OWNER_OCC\": 9129, \"RENTER_OCC\": 712 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.622118000000185, 38.920801999996648 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lenexa\", \"CLASS\": \"city\", \"ST\": \"KS\", \"STFIPS\": \"20\", \"PLACEFIP\": \"39350\", \"CAPITAL\": \"N\", \"AREALAND\": 34.279000, \"AREAWATER\": 0.157000, \"POP_CL\": 6, \"POP2000\": 40238, \"WHITE\": 36013, \"BLACK\": 1312, \"AMERI_ES\": 152, \"ASIAN\": 1459, \"HAWN_PI\": 12, \"OTHER\": 644, \"MULT_RACE\": 646, \"HISPANIC\": 1598, \"MALES\": 19687, \"FEMALES\": 20551, \"AGE_UNDER5\": 2594, \"AGE_5_17\": 7752, \"AGE_18_21\": 1939, \"AGE_22_29\": 4988, \"AGE_30_39\": 6119, \"AGE_40_49\": 7255, \"AGE_50_64\": 6142, \"AGE_65_UP\": 3449, \"MED_AGE\": 35.100000, \"MED_AGE_M\": 33.400000, \"MED_AGE_F\": 36.500000, \"HOUSEHOLDS\": 15574, \"AVE_HH_SZ\": 2.540000, \"HSEHLD_1_M\": 1644, \"HSEHLD_1_F\": 2134, \"MARHH_CHD\": 4465, \"MARHH_NO_C\": 4467, \"MHH_CHILD\": 242, \"FHH_CHILD\": 755, \"FAMILIES\": 10554, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 16378, \"VACANT\": 804, \"OWNER_OCC\": 9766, \"RENTER_OCC\": 5808 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.759535000000341, 38.9646889999959 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Liberal\", \"CLASS\": \"city\", \"ST\": \"KS\", \"STFIPS\": \"20\", \"PLACEFIP\": \"39825\", \"CAPITAL\": \"N\", \"AREALAND\": 11.058000, \"AREAWATER\": 0.138000, \"POP_CL\": 6, \"POP2000\": 19666, \"WHITE\": 12499, \"BLACK\": 827, \"AMERI_ES\": 141, \"ASIAN\": 640, \"HAWN_PI\": 12, \"OTHER\": 4903, \"MULT_RACE\": 644, \"HISPANIC\": 8513, \"MALES\": 10055, \"FEMALES\": 9611, \"AGE_UNDER5\": 1880, \"AGE_5_17\": 4347, \"AGE_18_21\": 1454, \"AGE_22_29\": 2535, \"AGE_30_39\": 3023, \"AGE_40_49\": 2508, \"AGE_50_64\": 2123, \"AGE_65_UP\": 1796, \"MED_AGE\": 28.900000, \"MED_AGE_M\": 28.000000, \"MED_AGE_F\": 29.700000, \"HOUSEHOLDS\": 6498, \"AVE_HH_SZ\": 2.960000, \"HSEHLD_1_M\": 629, \"HSEHLD_1_F\": 753, \"MARHH_CHD\": 2135, \"MARHH_NO_C\": 1637, \"MHH_CHILD\": 158, \"FHH_CHILD\": 487, \"FAMILIES\": 4754, \"AVE_FAM_SZ\": 3.460000, \"HSE_UNITS\": 7014, \"VACANT\": 516, \"OWNER_OCC\": 4092, \"RENTER_OCC\": 2406 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -100.928132986780568, 37.043417987277721 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"McPherson\", \"CLASS\": \"city\", \"ST\": \"KS\", \"STFIPS\": \"20\", \"PLACEFIP\": \"43950\", \"CAPITAL\": \"N\", \"AREALAND\": 6.143000, \"AREAWATER\": 0.058000, \"POP_CL\": 6, \"POP2000\": 13770, \"WHITE\": 13096, \"BLACK\": 181, \"AMERI_ES\": 50, \"ASIAN\": 57, \"HAWN_PI\": 13, \"OTHER\": 167, \"MULT_RACE\": 206, \"HISPANIC\": 402, \"MALES\": 6682, \"FEMALES\": 7088, \"AGE_UNDER5\": 879, \"AGE_5_17\": 2642, \"AGE_18_21\": 1024, \"AGE_22_29\": 1374, \"AGE_30_39\": 1716, \"AGE_40_49\": 2081, \"AGE_50_64\": 1897, \"AGE_65_UP\": 2157, \"MED_AGE\": 36.300000, \"MED_AGE_M\": 34.500000, \"MED_AGE_F\": 37.800000, \"HOUSEHOLDS\": 5378, \"AVE_HH_SZ\": 2.430000, \"HSEHLD_1_M\": 609, \"HSEHLD_1_F\": 888, \"MARHH_CHD\": 1373, \"MARHH_NO_C\": 1731, \"MHH_CHILD\": 108, \"FHH_CHILD\": 273, \"FAMILIES\": 3650, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 5658, \"VACANT\": 280, \"OWNER_OCC\": 3626, \"RENTER_OCC\": 1752 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.662177000133468, 38.371922999379713 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Manhattan\", \"CLASS\": \"city\", \"ST\": \"KS\", \"STFIPS\": \"20\", \"PLACEFIP\": \"44250\", \"CAPITAL\": \"N\", \"AREALAND\": 15.024000, \"AREAWATER\": 0.007000, \"POP_CL\": 6, \"POP2000\": 44831, \"WHITE\": 39130, \"BLACK\": 2179, \"AMERI_ES\": 214, \"ASIAN\": 1764, \"HAWN_PI\": 33, \"OTHER\": 582, \"MULT_RACE\": 929, \"HISPANIC\": 1564, \"MALES\": 23107, \"FEMALES\": 21724, \"AGE_UNDER5\": 2083, \"AGE_5_17\": 5016, \"AGE_18_21\": 11340, \"AGE_22_29\": 10105, \"AGE_30_39\": 4623, \"AGE_40_49\": 4352, \"AGE_50_64\": 3820, \"AGE_65_UP\": 3492, \"MED_AGE\": 23.500000, \"MED_AGE_M\": 23.400000, \"MED_AGE_F\": 23.700000, \"HOUSEHOLDS\": 16949, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 2458, \"HSEHLD_1_F\": 2705, \"MARHH_CHD\": 2987, \"MARHH_NO_C\": 3721, \"MHH_CHILD\": 168, \"FHH_CHILD\": 696, \"FAMILIES\": 8259, \"AVE_FAM_SZ\": 2.890000, \"HSE_UNITS\": 17690, \"VACANT\": 741, \"OWNER_OCC\": 7266, \"RENTER_OCC\": 9683 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.586818000035024, 39.190141999861787 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Merriam\", \"CLASS\": \"city\", \"ST\": \"KS\", \"STFIPS\": \"20\", \"PLACEFIP\": \"46000\", \"CAPITAL\": \"N\", \"AREALAND\": 4.315000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11008, \"WHITE\": 9824, \"BLACK\": 443, \"AMERI_ES\": 46, \"ASIAN\": 230, \"HAWN_PI\": 2, \"OTHER\": 215, \"MULT_RACE\": 248, \"HISPANIC\": 596, \"MALES\": 5294, \"FEMALES\": 5714, \"AGE_UNDER5\": 701, \"AGE_5_17\": 1686, \"AGE_18_21\": 415, \"AGE_22_29\": 1448, \"AGE_30_39\": 1926, \"AGE_40_49\": 1771, \"AGE_50_64\": 1714, \"AGE_65_UP\": 1347, \"MED_AGE\": 36.500000, \"MED_AGE_M\": 35.300000, \"MED_AGE_F\": 37.800000, \"HOUSEHOLDS\": 4839, \"AVE_HH_SZ\": 2.230000, \"HSEHLD_1_M\": 695, \"HSEHLD_1_F\": 917, \"MARHH_CHD\": 904, \"MARHH_NO_C\": 1360, \"MHH_CHILD\": 82, \"FHH_CHILD\": 287, \"FAMILIES\": 2901, \"AVE_FAM_SZ\": 2.860000, \"HSE_UNITS\": 5042, \"VACANT\": 203, \"OWNER_OCC\": 3080, \"RENTER_OCC\": 1759 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.69378400000025, 39.020887999996262 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Newton\", \"CLASS\": \"city\", \"ST\": \"KS\", \"STFIPS\": \"20\", \"PLACEFIP\": \"50475\", \"CAPITAL\": \"N\", \"AREALAND\": 9.582000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 17190, \"WHITE\": 14909, \"BLACK\": 395, \"AMERI_ES\": 91, \"ASIAN\": 113, \"HAWN_PI\": 5, \"OTHER\": 1175, \"MULT_RACE\": 502, \"HISPANIC\": 2189, \"MALES\": 8296, \"FEMALES\": 8894, \"AGE_UNDER5\": 1248, \"AGE_5_17\": 3278, \"AGE_18_21\": 763, \"AGE_22_29\": 1715, \"AGE_30_39\": 2429, \"AGE_40_49\": 2550, \"AGE_50_64\": 2377, \"AGE_65_UP\": 2830, \"MED_AGE\": 36.900000, \"MED_AGE_M\": 35.000000, \"MED_AGE_F\": 38.500000, \"HOUSEHOLDS\": 6851, \"AVE_HH_SZ\": 2.430000, \"HSEHLD_1_M\": 799, \"HSEHLD_1_F\": 1179, \"MARHH_CHD\": 1609, \"MARHH_NO_C\": 2102, \"MHH_CHILD\": 140, \"FHH_CHILD\": 434, \"FAMILIES\": 4612, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 7277, \"VACANT\": 426, \"OWNER_OCC\": 4652, \"RENTER_OCC\": 2199 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.347597000112373, 38.044088999599758 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Olathe\", \"CLASS\": \"city\", \"ST\": \"KS\", \"STFIPS\": \"20\", \"PLACEFIP\": \"52575\", \"CAPITAL\": \"N\", \"AREALAND\": 54.161000, \"AREAWATER\": 0.304000, \"POP_CL\": 7, \"POP2000\": 92962, \"WHITE\": 82393, \"BLACK\": 3440, \"AMERI_ES\": 402, \"ASIAN\": 2549, \"HAWN_PI\": 44, \"OTHER\": 2457, \"MULT_RACE\": 1677, \"HISPANIC\": 5060, \"MALES\": 46348, \"FEMALES\": 46614, \"AGE_UNDER5\": 8697, \"AGE_5_17\": 19980, \"AGE_18_21\": 4880, \"AGE_22_29\": 11435, \"AGE_30_39\": 18070, \"AGE_40_49\": 14840, \"AGE_50_64\": 10242, \"AGE_65_UP\": 4818, \"MED_AGE\": 30.800000, \"MED_AGE_M\": 30.200000, \"MED_AGE_F\": 31.400000, \"HOUSEHOLDS\": 32314, \"AVE_HH_SZ\": 2.830000, \"HSEHLD_1_M\": 2678, \"HSEHLD_1_F\": 3255, \"MARHH_CHD\": 11934, \"MARHH_NO_C\": 8688, \"MHH_CHILD\": 637, \"FHH_CHILD\": 2007, \"FAMILIES\": 24627, \"AVE_FAM_SZ\": 3.240000, \"HSE_UNITS\": 33343, \"VACANT\": 1029, \"OWNER_OCC\": 23114, \"RENTER_OCC\": 9200 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.803184000000414, 38.880787999995654 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ottawa\", \"CLASS\": \"city\", \"ST\": \"KS\", \"STFIPS\": \"20\", \"PLACEFIP\": \"53550\", \"CAPITAL\": \"N\", \"AREALAND\": 6.693000, \"AREAWATER\": 0.006000, \"POP_CL\": 6, \"POP2000\": 11921, \"WHITE\": 11059, \"BLACK\": 275, \"AMERI_ES\": 145, \"ASIAN\": 63, \"HAWN_PI\": 1, \"OTHER\": 156, \"MULT_RACE\": 222, \"HISPANIC\": 496, \"MALES\": 5812, \"FEMALES\": 6109, \"AGE_UNDER5\": 894, \"AGE_5_17\": 2280, \"AGE_18_21\": 864, \"AGE_22_29\": 1301, \"AGE_30_39\": 1618, \"AGE_40_49\": 1622, \"AGE_50_64\": 1457, \"AGE_65_UP\": 1885, \"MED_AGE\": 34.000000, \"MED_AGE_M\": 31.200000, \"MED_AGE_F\": 36.800000, \"HOUSEHOLDS\": 4697, \"AVE_HH_SZ\": 2.430000, \"HSEHLD_1_M\": 533, \"HSEHLD_1_F\": 899, \"MARHH_CHD\": 1064, \"MARHH_NO_C\": 1244, \"MHH_CHILD\": 150, \"FHH_CHILD\": 346, \"FAMILIES\": 3034, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 5080, \"VACANT\": 383, \"OWNER_OCC\": 2936, \"RENTER_OCC\": 1761 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.266513000002178, 38.612043999989559 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Overland Park\", \"CLASS\": \"city\", \"ST\": \"KS\", \"STFIPS\": \"20\", \"PLACEFIP\": \"53775\", \"CAPITAL\": \"N\", \"AREALAND\": 56.748000, \"AREAWATER\": 0.101000, \"POP_CL\": 8, \"POP2000\": 149080, \"WHITE\": 135137, \"BLACK\": 3801, \"AMERI_ES\": 401, \"ASIAN\": 5703, \"HAWN_PI\": 52, \"OTHER\": 1852, \"MULT_RACE\": 2134, \"HISPANIC\": 5620, \"MALES\": 72170, \"FEMALES\": 76910, \"AGE_UNDER5\": 10646, \"AGE_5_17\": 28362, \"AGE_18_21\": 5332, \"AGE_22_29\": 15540, \"AGE_30_39\": 24864, \"AGE_40_49\": 25049, \"AGE_50_64\": 22253, \"AGE_65_UP\": 17034, \"MED_AGE\": 36.300000, \"MED_AGE_M\": 34.900000, \"MED_AGE_F\": 37.500000, \"HOUSEHOLDS\": 59703, \"AVE_HH_SZ\": 2.470000, \"HSEHLD_1_M\": 6408, \"HSEHLD_1_F\": 9963, \"MARHH_CHD\": 16855, \"MARHH_NO_C\": 17053, \"MHH_CHILD\": 689, \"FHH_CHILD\": 2676, \"FAMILIES\": 39718, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 62586, \"VACANT\": 2883, \"OWNER_OCC\": 40749, \"RENTER_OCC\": 18954 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.680697000000237, 38.940070999996365 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Parsons\", \"CLASS\": \"city\", \"ST\": \"KS\", \"STFIPS\": \"20\", \"PLACEFIP\": \"54675\", \"CAPITAL\": \"N\", \"AREALAND\": 10.362000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11514, \"WHITE\": 9849, \"BLACK\": 941, \"AMERI_ES\": 129, \"ASIAN\": 48, \"HAWN_PI\": 1, \"OTHER\": 219, \"MULT_RACE\": 327, \"HISPANIC\": 534, \"MALES\": 5500, \"FEMALES\": 6014, \"AGE_UNDER5\": 802, \"AGE_5_17\": 2212, \"AGE_18_21\": 706, \"AGE_22_29\": 1076, \"AGE_30_39\": 1570, \"AGE_40_49\": 1505, \"AGE_50_64\": 1611, \"AGE_65_UP\": 2032, \"MED_AGE\": 36.400000, \"MED_AGE_M\": 34.200000, \"MED_AGE_F\": 38.700000, \"HOUSEHOLDS\": 4738, \"AVE_HH_SZ\": 2.320000, \"HSEHLD_1_M\": 628, \"HSEHLD_1_F\": 975, \"MARHH_CHD\": 872, \"MARHH_NO_C\": 1180, \"MHH_CHILD\": 148, \"FHH_CHILD\": 438, \"FAMILIES\": 2908, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 5359, \"VACANT\": 621, \"OWNER_OCC\": 3134, \"RENTER_OCC\": 1604 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.269747000002511, 37.339069999990606 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pittsburg\", \"CLASS\": \"city\", \"ST\": \"KS\", \"STFIPS\": \"20\", \"PLACEFIP\": \"56025\", \"CAPITAL\": \"N\", \"AREALAND\": 12.445000, \"AREAWATER\": 0.061000, \"POP_CL\": 6, \"POP2000\": 19243, \"WHITE\": 17266, \"BLACK\": 598, \"AMERI_ES\": 207, \"ASIAN\": 374, \"HAWN_PI\": 32, \"OTHER\": 365, \"MULT_RACE\": 401, \"HISPANIC\": 722, \"MALES\": 9331, \"FEMALES\": 9912, \"AGE_UNDER5\": 1267, \"AGE_5_17\": 2736, \"AGE_18_21\": 2971, \"AGE_22_29\": 3163, \"AGE_30_39\": 2074, \"AGE_40_49\": 2084, \"AGE_50_64\": 2229, \"AGE_65_UP\": 2719, \"MED_AGE\": 28.100000, \"MED_AGE_M\": 26.200000, \"MED_AGE_F\": 30.600000, \"HOUSEHOLDS\": 7980, \"AVE_HH_SZ\": 2.230000, \"HSEHLD_1_M\": 1173, \"HSEHLD_1_F\": 1578, \"MARHH_CHD\": 1263, \"MARHH_NO_C\": 1773, \"MHH_CHILD\": 156, \"FHH_CHILD\": 581, \"FAMILIES\": 4210, \"AVE_FAM_SZ\": 2.910000, \"HSE_UNITS\": 8855, \"VACANT\": 875, \"OWNER_OCC\": 3992, \"RENTER_OCC\": 3988 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.699816000000325, 37.410319999996936 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Prairie Village\", \"CLASS\": \"city\", \"ST\": \"KS\", \"STFIPS\": \"20\", \"PLACEFIP\": \"57575\", \"CAPITAL\": \"N\", \"AREALAND\": 6.223000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 22072, \"WHITE\": 21222, \"BLACK\": 172, \"AMERI_ES\": 36, \"ASIAN\": 249, \"HAWN_PI\": 6, \"OTHER\": 142, \"MULT_RACE\": 245, \"HISPANIC\": 502, \"MALES\": 10142, \"FEMALES\": 11930, \"AGE_UNDER5\": 1279, \"AGE_5_17\": 3619, \"AGE_18_21\": 547, \"AGE_22_29\": 1981, \"AGE_30_39\": 3275, \"AGE_40_49\": 3474, \"AGE_50_64\": 3579, \"AGE_65_UP\": 4318, \"MED_AGE\": 41.000000, \"MED_AGE_M\": 38.700000, \"MED_AGE_F\": 42.900000, \"HOUSEHOLDS\": 9833, \"AVE_HH_SZ\": 2.230000, \"HSEHLD_1_M\": 949, \"HSEHLD_1_F\": 2254, \"MARHH_CHD\": 2088, \"MARHH_NO_C\": 3108, \"MHH_CHILD\": 100, \"FHH_CHILD\": 430, \"FAMILIES\": 6162, \"AVE_FAM_SZ\": 2.840000, \"HSE_UNITS\": 10126, \"VACANT\": 293, \"OWNER_OCC\": 8242, \"RENTER_OCC\": 1591 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.636162000000198, 38.989654999996567 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Salina\", \"CLASS\": \"city\", \"ST\": \"KS\", \"STFIPS\": \"20\", \"PLACEFIP\": \"62700\", \"CAPITAL\": \"N\", \"AREALAND\": 22.730000, \"AREAWATER\": 0.045000, \"POP_CL\": 6, \"POP2000\": 45679, \"WHITE\": 40090, \"BLACK\": 1630, \"AMERI_ES\": 256, \"ASIAN\": 896, \"HAWN_PI\": 21, \"OTHER\": 1728, \"MULT_RACE\": 1058, \"HISPANIC\": 3067, \"MALES\": 22355, \"FEMALES\": 23324, \"AGE_UNDER5\": 3264, \"AGE_5_17\": 8583, \"AGE_18_21\": 2757, \"AGE_22_29\": 4840, \"AGE_30_39\": 6604, \"AGE_40_49\": 6657, \"AGE_50_64\": 6458, \"AGE_65_UP\": 6516, \"MED_AGE\": 35.300000, \"MED_AGE_M\": 33.300000, \"MED_AGE_F\": 37.300000, \"HOUSEHOLDS\": 18523, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 2343, \"HSEHLD_1_F\": 3238, \"MARHH_CHD\": 4056, \"MARHH_NO_C\": 5164, \"MHH_CHILD\": 470, \"FHH_CHILD\": 1313, \"FAMILIES\": 11878, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 19599, \"VACANT\": 1076, \"OWNER_OCC\": 12244, \"RENTER_OCC\": 6279 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.607205000111861, 38.824266999404337 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Shawnee\", \"CLASS\": \"city\", \"ST\": \"KS\", \"STFIPS\": \"20\", \"PLACEFIP\": \"64500\", \"CAPITAL\": \"N\", \"AREALAND\": 41.745000, \"AREAWATER\": 0.800000, \"POP_CL\": 6, \"POP2000\": 47996, \"WHITE\": 43362, \"BLACK\": 1422, \"AMERI_ES\": 149, \"ASIAN\": 1273, \"HAWN_PI\": 13, \"OTHER\": 897, \"MULT_RACE\": 880, \"HISPANIC\": 2093, \"MALES\": 23618, \"FEMALES\": 24378, \"AGE_UNDER5\": 3686, \"AGE_5_17\": 9171, \"AGE_18_21\": 1994, \"AGE_22_29\": 5182, \"AGE_30_39\": 8649, \"AGE_40_49\": 8053, \"AGE_50_64\": 7177, \"AGE_65_UP\": 4084, \"MED_AGE\": 34.800000, \"MED_AGE_M\": 34.100000, \"MED_AGE_F\": 35.400000, \"HOUSEHOLDS\": 18522, \"AVE_HH_SZ\": 2.580000, \"HSEHLD_1_M\": 1932, \"HSEHLD_1_F\": 2276, \"MARHH_CHD\": 5524, \"MARHH_NO_C\": 5641, \"MHH_CHILD\": 282, \"FHH_CHILD\": 915, \"FAMILIES\": 13234, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 19086, \"VACANT\": 564, \"OWNER_OCC\": 13775, \"RENTER_OCC\": 4747 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.765818000000337, 39.01276699999584 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Topeka\", \"CLASS\": \"city\", \"ST\": \"KS\", \"STFIPS\": \"20\", \"PLACEFIP\": \"71000\", \"CAPITAL\": \"Y\", \"AREALAND\": 56.008000, \"AREAWATER\": 0.972000, \"POP_CL\": 8, \"POP2000\": 122377, \"WHITE\": 96093, \"BLACK\": 14332, \"AMERI_ES\": 1603, \"ASIAN\": 1340, \"HAWN_PI\": 50, \"OTHER\": 4969, \"MULT_RACE\": 3990, \"HISPANIC\": 10847, \"MALES\": 58759, \"FEMALES\": 63618, \"AGE_UNDER5\": 8615, \"AGE_5_17\": 21090, \"AGE_18_21\": 6780, \"AGE_22_29\": 14164, \"AGE_30_39\": 17154, \"AGE_40_49\": 18204, \"AGE_50_64\": 17952, \"AGE_65_UP\": 18418, \"MED_AGE\": 36.300000, \"MED_AGE_M\": 34.500000, \"MED_AGE_F\": 38.000000, \"HOUSEHOLDS\": 52190, \"AVE_HH_SZ\": 2.270000, \"HSEHLD_1_M\": 7639, \"HSEHLD_1_F\": 10617, \"MARHH_CHD\": 8929, \"MARHH_NO_C\": 12866, \"MHH_CHILD\": 1185, \"FHH_CHILD\": 4488, \"FAMILIES\": 30682, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 56435, \"VACANT\": 4245, \"OWNER_OCC\": 31685, \"RENTER_OCC\": 20505 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.68950800000637, 39.039199999973789 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wichita\", \"CLASS\": \"city\", \"ST\": \"KS\", \"STFIPS\": \"20\", \"PLACEFIP\": \"79000\", \"CAPITAL\": \"N\", \"AREALAND\": 135.751000, \"AREAWATER\": 3.181000, \"POP_CL\": 8, \"POP2000\": 344284, \"WHITE\": 258900, \"BLACK\": 39325, \"AMERI_ES\": 3986, \"ASIAN\": 13647, \"HAWN_PI\": 198, \"OTHER\": 17566, \"MULT_RACE\": 10662, \"HISPANIC\": 33112, \"MALES\": 169604, \"FEMALES\": 174680, \"AGE_UNDER5\": 27524, \"AGE_5_17\": 65853, \"AGE_18_21\": 19240, \"AGE_22_29\": 42395, \"AGE_30_39\": 51414, \"AGE_40_49\": 51603, \"AGE_50_64\": 45364, \"AGE_65_UP\": 40891, \"MED_AGE\": 33.400000, \"MED_AGE_M\": 32.300000, \"MED_AGE_F\": 34.600000, \"HOUSEHOLDS\": 139087, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 20502, \"HSEHLD_1_F\": 22906, \"MARHH_CHD\": 30844, \"MARHH_NO_C\": 34973, \"MHH_CHILD\": 3304, \"FHH_CHILD\": 10444, \"FAMILIES\": 87818, \"AVE_FAM_SZ\": 3.100000, \"HSE_UNITS\": 152119, \"VACANT\": 13032, \"OWNER_OCC\": 85711, \"RENTER_OCC\": 53376 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.336226000119296, 37.688847999615668 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Winfield\", \"CLASS\": \"city\", \"ST\": \"KS\", \"STFIPS\": \"20\", \"PLACEFIP\": \"79950\", \"CAPITAL\": \"N\", \"AREALAND\": 11.056000, \"AREAWATER\": 1.693000, \"POP_CL\": 6, \"POP2000\": 12206, \"WHITE\": 10748, \"BLACK\": 398, \"AMERI_ES\": 132, \"ASIAN\": 456, \"HAWN_PI\": 2, \"OTHER\": 211, \"MULT_RACE\": 259, \"HISPANIC\": 569, \"MALES\": 6056, \"FEMALES\": 6150, \"AGE_UNDER5\": 782, \"AGE_5_17\": 2258, \"AGE_18_21\": 937, \"AGE_22_29\": 1249, \"AGE_30_39\": 1690, \"AGE_40_49\": 1687, \"AGE_50_64\": 1579, \"AGE_65_UP\": 2024, \"MED_AGE\": 35.600000, \"MED_AGE_M\": 33.900000, \"MED_AGE_F\": 37.700000, \"HOUSEHOLDS\": 4627, \"AVE_HH_SZ\": 2.360000, \"HSEHLD_1_M\": 544, \"HSEHLD_1_F\": 953, \"MARHH_CHD\": 1014, \"MARHH_NO_C\": 1280, \"MHH_CHILD\": 108, \"FHH_CHILD\": 355, \"FAMILIES\": 2951, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 5049, \"VACANT\": 422, \"OWNER_OCC\": 2993, \"RENTER_OCC\": 1634 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.980672000083231, 37.247888999776222 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ashland\", \"CLASS\": \"city\", \"ST\": \"KY\", \"STFIPS\": \"21\", \"PLACEFIP\": \"02368\", \"CAPITAL\": \"N\", \"AREALAND\": 11.077000, \"AREAWATER\": 1.118000, \"POP_CL\": 6, \"POP2000\": 21981, \"WHITE\": 21066, \"BLACK\": 505, \"AMERI_ES\": 26, \"ASIAN\": 86, \"HAWN_PI\": 2, \"OTHER\": 49, \"MULT_RACE\": 247, \"HISPANIC\": 130, \"MALES\": 10028, \"FEMALES\": 11953, \"AGE_UNDER5\": 1260, \"AGE_5_17\": 3556, \"AGE_18_21\": 1059, \"AGE_22_29\": 1990, \"AGE_30_39\": 2802, \"AGE_40_49\": 3336, \"AGE_50_64\": 3613, \"AGE_65_UP\": 4365, \"MED_AGE\": 40.900000, \"MED_AGE_M\": 38.700000, \"MED_AGE_F\": 42.600000, \"HOUSEHOLDS\": 9675, \"AVE_HH_SZ\": 2.230000, \"HSEHLD_1_M\": 1073, \"HSEHLD_1_F\": 2125, \"MARHH_CHD\": 1673, \"MARHH_NO_C\": 2913, \"MHH_CHILD\": 150, \"FHH_CHILD\": 772, \"FAMILIES\": 6188, \"AVE_FAM_SZ\": 2.820000, \"HSE_UNITS\": 10763, \"VACANT\": 1088, \"OWNER_OCC\": 6217, \"RENTER_OCC\": 3458 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.64157127980441, 38.464016942091327 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bardstown\", \"CLASS\": \"city\", \"ST\": \"KY\", \"STFIPS\": \"21\", \"PLACEFIP\": \"03628\", \"CAPITAL\": \"N\", \"AREALAND\": 7.178000, \"AREAWATER\": 0.045000, \"POP_CL\": 6, \"POP2000\": 10374, \"WHITE\": 8518, \"BLACK\": 1563, \"AMERI_ES\": 13, \"ASIAN\": 98, \"HAWN_PI\": 1, \"OTHER\": 70, \"MULT_RACE\": 111, \"HISPANIC\": 143, \"MALES\": 4851, \"FEMALES\": 5523, \"AGE_UNDER5\": 910, \"AGE_5_17\": 1962, \"AGE_18_21\": 531, \"AGE_22_29\": 1289, \"AGE_30_39\": 1519, \"AGE_40_49\": 1408, \"AGE_50_64\": 1414, \"AGE_65_UP\": 1341, \"MED_AGE\": 33.200000, \"MED_AGE_M\": 31.400000, \"MED_AGE_F\": 35.300000, \"HOUSEHOLDS\": 4195, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 535, \"HSEHLD_1_F\": 772, \"MARHH_CHD\": 837, \"MARHH_NO_C\": 953, \"MHH_CHILD\": 104, \"FHH_CHILD\": 510, \"FAMILIES\": 2700, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 4488, \"VACANT\": 293, \"OWNER_OCC\": 2500, \"RENTER_OCC\": 1695 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.463006008501949, 37.815491989923459 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bowling Green\", \"CLASS\": \"city\", \"ST\": \"KY\", \"STFIPS\": \"21\", \"PLACEFIP\": \"08902\", \"CAPITAL\": \"N\", \"AREALAND\": 35.405000, \"AREAWATER\": 0.160000, \"POP_CL\": 6, \"POP2000\": 49296, \"WHITE\": 39842, \"BLACK\": 6267, \"AMERI_ES\": 111, \"ASIAN\": 959, \"HAWN_PI\": 61, \"OTHER\": 1065, \"MULT_RACE\": 991, \"HISPANIC\": 2011, \"MALES\": 23841, \"FEMALES\": 25455, \"AGE_UNDER5\": 2965, \"AGE_5_17\": 6989, \"AGE_18_21\": 7408, \"AGE_22_29\": 8343, \"AGE_30_39\": 6110, \"AGE_40_49\": 5739, \"AGE_50_64\": 5847, \"AGE_65_UP\": 5895, \"MED_AGE\": 28.600000, \"MED_AGE_M\": 27.200000, \"MED_AGE_F\": 30.400000, \"HOUSEHOLDS\": 19277, \"AVE_HH_SZ\": 2.270000, \"HSEHLD_1_M\": 2669, \"HSEHLD_1_F\": 3789, \"MARHH_CHD\": 3096, \"MARHH_NO_C\": 4328, \"MHH_CHILD\": 351, \"FHH_CHILD\": 1595, \"FAMILIES\": 10697, \"AVE_FAM_SZ\": 2.910000, \"HSE_UNITS\": 21290, \"VACANT\": 2013, \"OWNER_OCC\": 9060, \"RENTER_OCC\": 10217 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.444423000766804, 36.9816569957705 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Burlington\", \"CLASS\": \"CDP\", \"ST\": \"KY\", \"STFIPS\": \"21\", \"PLACEFIP\": \"11170\", \"CAPITAL\": \"N\", \"AREALAND\": 8.447000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10779, \"WHITE\": 10208, \"BLACK\": 204, \"AMERI_ES\": 31, \"ASIAN\": 120, \"HAWN_PI\": 1, \"OTHER\": 101, \"MULT_RACE\": 114, \"HISPANIC\": 187, \"MALES\": 5499, \"FEMALES\": 5280, \"AGE_UNDER5\": 990, \"AGE_5_17\": 2255, \"AGE_18_21\": 607, \"AGE_22_29\": 1351, \"AGE_30_39\": 2108, \"AGE_40_49\": 1615, \"AGE_50_64\": 1243, \"AGE_65_UP\": 610, \"MED_AGE\": 30.900000, \"MED_AGE_M\": 30.200000, \"MED_AGE_F\": 31.600000, \"HOUSEHOLDS\": 3799, \"AVE_HH_SZ\": 2.770000, \"HSEHLD_1_M\": 380, \"HSEHLD_1_F\": 342, \"MARHH_CHD\": 1283, \"MARHH_NO_C\": 1082, \"MHH_CHILD\": 81, \"FHH_CHILD\": 266, \"FAMILIES\": 2889, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 4083, \"VACANT\": 284, \"OWNER_OCC\": 2720, \"RENTER_OCC\": 1079 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.717158030274916, 39.023972981369049 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Campbellsville\", \"CLASS\": \"city\", \"ST\": \"KY\", \"STFIPS\": \"21\", \"PLACEFIP\": \"12160\", \"CAPITAL\": \"N\", \"AREALAND\": 5.962000, \"AREAWATER\": 0.096000, \"POP_CL\": 6, \"POP2000\": 10498, \"WHITE\": 9355, \"BLACK\": 918, \"AMERI_ES\": 15, \"ASIAN\": 31, \"HAWN_PI\": 4, \"OTHER\": 64, \"MULT_RACE\": 111, \"HISPANIC\": 123, \"MALES\": 4774, \"FEMALES\": 5724, \"AGE_UNDER5\": 650, \"AGE_5_17\": 1637, \"AGE_18_21\": 982, \"AGE_22_29\": 1030, \"AGE_30_39\": 1251, \"AGE_40_49\": 1313, \"AGE_50_64\": 1694, \"AGE_65_UP\": 1941, \"MED_AGE\": 37.900000, \"MED_AGE_M\": 34.800000, \"MED_AGE_F\": 40.400000, \"HOUSEHOLDS\": 4432, \"AVE_HH_SZ\": 2.220000, \"HSEHLD_1_M\": 463, \"HSEHLD_1_F\": 1016, \"MARHH_CHD\": 708, \"MARHH_NO_C\": 1265, \"MHH_CHILD\": 65, \"FHH_CHILD\": 446, \"FAMILIES\": 2813, \"AVE_FAM_SZ\": 2.800000, \"HSE_UNITS\": 4876, \"VACANT\": 444, \"OWNER_OCC\": 2584, \"RENTER_OCC\": 1848 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.345444009239003, 37.345950989348779 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Covington\", \"CLASS\": \"city\", \"ST\": \"KY\", \"STFIPS\": \"21\", \"PLACEFIP\": \"17848\", \"CAPITAL\": \"N\", \"AREALAND\": 13.137000, \"AREAWATER\": 0.532000, \"POP_CL\": 6, \"POP2000\": 43370, \"WHITE\": 37752, \"BLACK\": 4397, \"AMERI_ES\": 105, \"ASIAN\": 147, \"HAWN_PI\": 15, \"OTHER\": 272, \"MULT_RACE\": 682, \"HISPANIC\": 600, \"MALES\": 21228, \"FEMALES\": 22142, \"AGE_UNDER5\": 3401, \"AGE_5_17\": 7818, \"AGE_18_21\": 2295, \"AGE_22_29\": 5866, \"AGE_30_39\": 7252, \"AGE_40_49\": 6141, \"AGE_50_64\": 5429, \"AGE_65_UP\": 5168, \"MED_AGE\": 33.100000, \"MED_AGE_M\": 31.900000, \"MED_AGE_F\": 34.300000, \"HOUSEHOLDS\": 18257, \"AVE_HH_SZ\": 2.310000, \"HSEHLD_1_M\": 3149, \"HSEHLD_1_F\": 3512, \"MARHH_CHD\": 2935, \"MARHH_NO_C\": 3322, \"MHH_CHILD\": 433, \"FHH_CHILD\": 1890, \"FAMILIES\": 10125, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 20448, \"VACANT\": 2191, \"OWNER_OCC\": 9004, \"RENTER_OCC\": 9253 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.509594039525382, 39.06511097856481 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Danville\", \"CLASS\": \"city\", \"ST\": \"KY\", \"STFIPS\": \"21\", \"PLACEFIP\": \"19882\", \"CAPITAL\": \"N\", \"AREALAND\": 15.787000, \"AREAWATER\": 0.008000, \"POP_CL\": 6, \"POP2000\": 15477, \"WHITE\": 12949, \"BLACK\": 2015, \"AMERI_ES\": 38, \"ASIAN\": 128, \"HAWN_PI\": 6, \"OTHER\": 127, \"MULT_RACE\": 214, \"HISPANIC\": 229, \"MALES\": 7185, \"FEMALES\": 8292, \"AGE_UNDER5\": 858, \"AGE_5_17\": 2606, \"AGE_18_21\": 1435, \"AGE_22_29\": 1508, \"AGE_30_39\": 2030, \"AGE_40_49\": 2099, \"AGE_50_64\": 2422, \"AGE_65_UP\": 2519, \"MED_AGE\": 36.700000, \"MED_AGE_M\": 33.900000, \"MED_AGE_F\": 39.300000, \"HOUSEHOLDS\": 6223, \"AVE_HH_SZ\": 2.260000, \"HSEHLD_1_M\": 632, \"HSEHLD_1_F\": 1340, \"MARHH_CHD\": 1148, \"MARHH_NO_C\": 1802, \"MHH_CHILD\": 93, \"FHH_CHILD\": 574, \"FAMILIES\": 4015, \"AVE_FAM_SZ\": 2.820000, \"HSE_UNITS\": 6734, \"VACANT\": 511, \"OWNER_OCC\": 3840, \"RENTER_OCC\": 2383 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.774992022616075, 37.645526983669072 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Elizabethtown\", \"CLASS\": \"city\", \"ST\": \"KY\", \"STFIPS\": \"21\", \"PLACEFIP\": \"24274\", \"CAPITAL\": \"N\", \"AREALAND\": 24.069000, \"AREAWATER\": 0.307000, \"POP_CL\": 6, \"POP2000\": 22542, \"WHITE\": 19395, \"BLACK\": 2186, \"AMERI_ES\": 67, \"ASIAN\": 425, \"HAWN_PI\": 13, \"OTHER\": 127, \"MULT_RACE\": 329, \"HISPANIC\": 403, \"MALES\": 10773, \"FEMALES\": 11769, \"AGE_UNDER5\": 1579, \"AGE_5_17\": 4032, \"AGE_18_21\": 1118, \"AGE_22_29\": 2651, \"AGE_30_39\": 3370, \"AGE_40_49\": 3446, \"AGE_50_64\": 3198, \"AGE_65_UP\": 3148, \"MED_AGE\": 35.900000, \"MED_AGE_M\": 33.500000, \"MED_AGE_F\": 38.100000, \"HOUSEHOLDS\": 9306, \"AVE_HH_SZ\": 2.330000, \"HSEHLD_1_M\": 1074, \"HSEHLD_1_F\": 1736, \"MARHH_CHD\": 1979, \"MARHH_NO_C\": 2519, \"MHH_CHILD\": 185, \"FHH_CHILD\": 860, \"FAMILIES\": 6119, \"AVE_FAM_SZ\": 2.890000, \"HSE_UNITS\": 10043, \"VACANT\": 737, \"OWNER_OCC\": 5478, \"RENTER_OCC\": 3828 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.86617300413738, 37.702673992714978 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Erlanger\", \"CLASS\": \"city\", \"ST\": \"KY\", \"STFIPS\": \"21\", \"PLACEFIP\": \"25300\", \"CAPITAL\": \"N\", \"AREALAND\": 8.328000, \"AREAWATER\": 0.097000, \"POP_CL\": 6, \"POP2000\": 16676, \"WHITE\": 16023, \"BLACK\": 302, \"AMERI_ES\": 13, \"ASIAN\": 119, \"HAWN_PI\": 4, \"OTHER\": 70, \"MULT_RACE\": 145, \"HISPANIC\": 253, \"MALES\": 8027, \"FEMALES\": 8649, \"AGE_UNDER5\": 1280, \"AGE_5_17\": 3115, \"AGE_18_21\": 838, \"AGE_22_29\": 1958, \"AGE_30_39\": 2853, \"AGE_40_49\": 2437, \"AGE_50_64\": 2236, \"AGE_65_UP\": 1959, \"MED_AGE\": 34.300000, \"MED_AGE_M\": 32.500000, \"MED_AGE_F\": 35.800000, \"HOUSEHOLDS\": 6597, \"AVE_HH_SZ\": 2.500000, \"HSEHLD_1_M\": 756, \"HSEHLD_1_F\": 1089, \"MARHH_CHD\": 1685, \"MARHH_NO_C\": 1730, \"MHH_CHILD\": 154, \"FHH_CHILD\": 423, \"FAMILIES\": 4409, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 6865, \"VACANT\": 268, \"OWNER_OCC\": 4485, \"RENTER_OCC\": 2112 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.59404203533353, 39.013510979787263 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fern Creek\", \"CLASS\": \"CDP\", \"ST\": \"KY\", \"STFIPS\": \"21\", \"PLACEFIP\": \"27046\", \"CAPITAL\": \"N\", \"AREALAND\": 5.810000, \"AREAWATER\": 0.001000, \"POP_CL\": 6, \"POP2000\": 17870, \"WHITE\": 15711, \"BLACK\": 1396, \"AMERI_ES\": 25, \"ASIAN\": 310, \"HAWN_PI\": 6, \"OTHER\": 176, \"MULT_RACE\": 246, \"HISPANIC\": 369, \"MALES\": 8796, \"FEMALES\": 9074, \"AGE_UNDER5\": 1276, \"AGE_5_17\": 3434, \"AGE_18_21\": 950, \"AGE_22_29\": 2070, \"AGE_30_39\": 2854, \"AGE_40_49\": 2903, \"AGE_50_64\": 2831, \"AGE_65_UP\": 1552, \"MED_AGE\": 34.600000, \"MED_AGE_M\": 33.700000, \"MED_AGE_F\": 35.400000, \"HOUSEHOLDS\": 6652, \"AVE_HH_SZ\": 2.680000, \"HSEHLD_1_M\": 544, \"HSEHLD_1_F\": 640, \"MARHH_CHD\": 1907, \"MARHH_NO_C\": 2209, \"MHH_CHILD\": 121, \"FHH_CHILD\": 474, \"FAMILIES\": 5095, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 7011, \"VACANT\": 359, \"OWNER_OCC\": 5081, \"RENTER_OCC\": 1571 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.597633007382072, 38.158324990697643 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Florence\", \"CLASS\": \"city\", \"ST\": \"KY\", \"STFIPS\": \"21\", \"PLACEFIP\": \"27982\", \"CAPITAL\": \"N\", \"AREALAND\": 9.872000, \"AREAWATER\": 0.027000, \"POP_CL\": 6, \"POP2000\": 23551, \"WHITE\": 21771, \"BLACK\": 629, \"AMERI_ES\": 61, \"ASIAN\": 353, \"HAWN_PI\": 15, \"OTHER\": 372, \"MULT_RACE\": 350, \"HISPANIC\": 896, \"MALES\": 11179, \"FEMALES\": 12372, \"AGE_UNDER5\": 1763, \"AGE_5_17\": 4102, \"AGE_18_21\": 1320, \"AGE_22_29\": 3319, \"AGE_30_39\": 3902, \"AGE_40_49\": 3214, \"AGE_50_64\": 3153, \"AGE_65_UP\": 2778, \"MED_AGE\": 32.900000, \"MED_AGE_M\": 31.300000, \"MED_AGE_F\": 34.800000, \"HOUSEHOLDS\": 9640, \"AVE_HH_SZ\": 2.410000, \"HSEHLD_1_M\": 1148, \"HSEHLD_1_F\": 1763, \"MARHH_CHD\": 2111, \"MARHH_NO_C\": 2340, \"MHH_CHILD\": 211, \"FHH_CHILD\": 775, \"FAMILIES\": 6071, \"AVE_FAM_SZ\": 3.030000, \"HSE_UNITS\": 10322, \"VACANT\": 682, \"OWNER_OCC\": 4936, \"RENTER_OCC\": 4704 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.642602033143334, 38.993224980453441 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fort Campbell North\", \"CLASS\": \"CDP\", \"ST\": \"KY\", \"STFIPS\": \"21\", \"PLACEFIP\": \"28486\", \"CAPITAL\": \"N\", \"AREALAND\": 3.967000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14338, \"WHITE\": 8396, \"BLACK\": 3703, \"AMERI_ES\": 142, \"ASIAN\": 248, \"HAWN_PI\": 147, \"OTHER\": 1019, \"MULT_RACE\": 683, \"HISPANIC\": 1985, \"MALES\": 8772, \"FEMALES\": 5566, \"AGE_UNDER5\": 2316, \"AGE_5_17\": 2787, \"AGE_18_21\": 2564, \"AGE_22_29\": 4229, \"AGE_30_39\": 2083, \"AGE_40_49\": 317, \"AGE_50_64\": 35, \"AGE_65_UP\": 7, \"MED_AGE\": 21.400000, \"MED_AGE_M\": 21.600000, \"MED_AGE_F\": 20.600000, \"HOUSEHOLDS\": 2842, \"AVE_HH_SZ\": 3.780000, \"HSEHLD_1_M\": 51, \"HSEHLD_1_F\": 16, \"MARHH_CHD\": 2228, \"MARHH_NO_C\": 289, \"MHH_CHILD\": 42, \"FHH_CHILD\": 205, \"FAMILIES\": 2769, \"AVE_FAM_SZ\": 3.810000, \"HSE_UNITS\": 2967, \"VACANT\": 125, \"OWNER_OCC\": 36, \"RENTER_OCC\": 2806 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.459715999686594, 36.65363099846995 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fort Knox\", \"CLASS\": \"CDP\", \"ST\": \"KY\", \"STFIPS\": \"21\", \"PLACEFIP\": \"28540\", \"CAPITAL\": \"N\", \"AREALAND\": 20.917000, \"AREAWATER\": 0.028000, \"POP_CL\": 6, \"POP2000\": 12377, \"WHITE\": 8208, \"BLACK\": 2856, \"AMERI_ES\": 90, \"ASIAN\": 204, \"HAWN_PI\": 54, \"OTHER\": 516, \"MULT_RACE\": 449, \"HISPANIC\": 1281, \"MALES\": 7537, \"FEMALES\": 4840, \"AGE_UNDER5\": 1521, \"AGE_5_17\": 2798, \"AGE_18_21\": 1888, \"AGE_22_29\": 2755, \"AGE_30_39\": 2641, \"AGE_40_49\": 644, \"AGE_50_64\": 114, \"AGE_65_UP\": 16, \"MED_AGE\": 22.000000, \"MED_AGE_M\": 21.800000, \"MED_AGE_F\": 22.300000, \"HOUSEHOLDS\": 2748, \"AVE_HH_SZ\": 3.490000, \"HSEHLD_1_M\": 111, \"HSEHLD_1_F\": 24, \"MARHH_CHD\": 1904, \"MARHH_NO_C\": 458, \"MHH_CHILD\": 67, \"FHH_CHILD\": 163, \"FAMILIES\": 2598, \"AVE_FAM_SZ\": 3.600000, \"HSE_UNITS\": 3015, \"VACANT\": 267, \"OWNER_OCC\": 38, \"RENTER_OCC\": 2710 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.974709003565181, 37.892808993245772 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fort Thomas\", \"CLASS\": \"city\", \"ST\": \"KY\", \"STFIPS\": \"21\", \"PLACEFIP\": \"28594\", \"CAPITAL\": \"N\", \"AREALAND\": 5.669000, \"AREAWATER\": 0.758000, \"POP_CL\": 6, \"POP2000\": 16495, \"WHITE\": 16100, \"BLACK\": 120, \"AMERI_ES\": 23, \"ASIAN\": 109, \"HAWN_PI\": 0, \"OTHER\": 36, \"MULT_RACE\": 107, \"HISPANIC\": 103, \"MALES\": 7840, \"FEMALES\": 8655, \"AGE_UNDER5\": 976, \"AGE_5_17\": 3147, \"AGE_18_21\": 703, \"AGE_22_29\": 1615, \"AGE_30_39\": 2391, \"AGE_40_49\": 2663, \"AGE_50_64\": 2396, \"AGE_65_UP\": 2604, \"MED_AGE\": 37.800000, \"MED_AGE_M\": 36.000000, \"MED_AGE_F\": 39.300000, \"HOUSEHOLDS\": 6742, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 743, \"HSEHLD_1_F\": 1355, \"MARHH_CHD\": 1658, \"MARHH_NO_C\": 1823, \"MHH_CHILD\": 122, \"FHH_CHILD\": 380, \"FAMILIES\": 4338, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 7028, \"VACANT\": 286, \"OWNER_OCC\": 4709, \"RENTER_OCC\": 2033 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.451273042521763, 39.076010977723037 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Frankfort\", \"CLASS\": \"city\", \"ST\": \"KY\", \"STFIPS\": \"21\", \"PLACEFIP\": \"28900\", \"CAPITAL\": \"Y\", \"AREALAND\": 14.730000, \"AREAWATER\": 0.280000, \"POP_CL\": 6, \"POP2000\": 27741, \"WHITE\": 22704, \"BLACK\": 4078, \"AMERI_ES\": 35, \"ASIAN\": 260, \"HAWN_PI\": 8, \"OTHER\": 213, \"MULT_RACE\": 443, \"HISPANIC\": 411, \"MALES\": 13228, \"FEMALES\": 14513, \"AGE_UNDER5\": 1719, \"AGE_5_17\": 4275, \"AGE_18_21\": 1891, \"AGE_22_29\": 3642, \"AGE_30_39\": 4079, \"AGE_40_49\": 4032, \"AGE_50_64\": 4233, \"AGE_65_UP\": 3870, \"MED_AGE\": 35.900000, \"MED_AGE_M\": 33.600000, \"MED_AGE_F\": 38.000000, \"HOUSEHOLDS\": 12314, \"AVE_HH_SZ\": 2.140000, \"HSEHLD_1_M\": 1858, \"HSEHLD_1_F\": 2775, \"MARHH_CHD\": 1960, \"MARHH_NO_C\": 2831, \"MHH_CHILD\": 226, \"FHH_CHILD\": 1071, \"FAMILIES\": 6949, \"AVE_FAM_SZ\": 2.830000, \"HSE_UNITS\": 13422, \"VACANT\": 1108, \"OWNER_OCC\": 6406, \"RENTER_OCC\": 5908 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.863110022010389, 38.197273984028691 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Georgetown\", \"CLASS\": \"city\", \"ST\": \"KY\", \"STFIPS\": \"21\", \"PLACEFIP\": \"30700\", \"CAPITAL\": \"N\", \"AREALAND\": 13.723000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 18080, \"WHITE\": 16033, \"BLACK\": 1449, \"AMERI_ES\": 41, \"ASIAN\": 115, \"HAWN_PI\": 1, \"OTHER\": 186, \"MULT_RACE\": 255, \"HISPANIC\": 360, \"MALES\": 8589, \"FEMALES\": 9491, \"AGE_UNDER5\": 1514, \"AGE_5_17\": 3116, \"AGE_18_21\": 1886, \"AGE_22_29\": 2778, \"AGE_30_39\": 2945, \"AGE_40_49\": 2269, \"AGE_50_64\": 1927, \"AGE_65_UP\": 1645, \"MED_AGE\": 29.300000, \"MED_AGE_M\": 28.200000, \"MED_AGE_F\": 30.400000, \"HOUSEHOLDS\": 6703, \"AVE_HH_SZ\": 2.480000, \"HSEHLD_1_M\": 676, \"HSEHLD_1_F\": 1042, \"MARHH_CHD\": 1690, \"MARHH_NO_C\": 1624, \"MHH_CHILD\": 151, \"FHH_CHILD\": 725, \"FAMILIES\": 4620, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 7209, \"VACANT\": 506, \"OWNER_OCC\": 3862, \"RENTER_OCC\": 2841 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.555496033058958, 38.21454198033404 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Glasgow\", \"CLASS\": \"city\", \"ST\": \"KY\", \"STFIPS\": \"21\", \"PLACEFIP\": \"31114\", \"CAPITAL\": \"N\", \"AREALAND\": 14.745000, \"AREAWATER\": 0.013000, \"POP_CL\": 6, \"POP2000\": 13019, \"WHITE\": 11576, \"BLACK\": 1074, \"AMERI_ES\": 17, \"ASIAN\": 104, \"HAWN_PI\": 9, \"OTHER\": 105, \"MULT_RACE\": 134, \"HISPANIC\": 186, \"MALES\": 5886, \"FEMALES\": 7133, \"AGE_UNDER5\": 808, \"AGE_5_17\": 2061, \"AGE_18_21\": 614, \"AGE_22_29\": 1301, \"AGE_30_39\": 1694, \"AGE_40_49\": 1720, \"AGE_50_64\": 2151, \"AGE_65_UP\": 2670, \"MED_AGE\": 40.200000, \"MED_AGE_M\": 37.300000, \"MED_AGE_F\": 43.200000, \"HOUSEHOLDS\": 5606, \"AVE_HH_SZ\": 2.210000, \"HSEHLD_1_M\": 658, \"HSEHLD_1_F\": 1283, \"MARHH_CHD\": 1005, \"MARHH_NO_C\": 1596, \"MHH_CHILD\": 76, \"FHH_CHILD\": 434, \"FAMILIES\": 3485, \"AVE_FAM_SZ\": 2.830000, \"HSE_UNITS\": 6153, \"VACANT\": 547, \"OWNER_OCC\": 3199, \"RENTER_OCC\": 2407 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.920229002974068, 37.000374993369547 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Henderson\", \"CLASS\": \"city\", \"ST\": \"KY\", \"STFIPS\": \"21\", \"PLACEFIP\": \"35866\", \"CAPITAL\": \"N\", \"AREALAND\": 14.966000, \"AREAWATER\": 2.107000, \"POP_CL\": 6, \"POP2000\": 27373, \"WHITE\": 23885, \"BLACK\": 2883, \"AMERI_ES\": 48, \"ASIAN\": 110, \"HAWN_PI\": 2, \"OTHER\": 159, \"MULT_RACE\": 286, \"HISPANIC\": 347, \"MALES\": 12916, \"FEMALES\": 14457, \"AGE_UNDER5\": 1827, \"AGE_5_17\": 4617, \"AGE_18_21\": 1424, \"AGE_22_29\": 3085, \"AGE_30_39\": 3953, \"AGE_40_49\": 4120, \"AGE_50_64\": 4169, \"AGE_65_UP\": 4178, \"MED_AGE\": 37.000000, \"MED_AGE_M\": 35.000000, \"MED_AGE_F\": 39.100000, \"HOUSEHOLDS\": 11693, \"AVE_HH_SZ\": 2.270000, \"HSEHLD_1_M\": 1456, \"HSEHLD_1_F\": 2303, \"MARHH_CHD\": 2195, \"MARHH_NO_C\": 3124, \"MHH_CHILD\": 244, \"FHH_CHILD\": 1043, \"FAMILIES\": 7386, \"AVE_FAM_SZ\": 2.860000, \"HSE_UNITS\": 12652, \"VACANT\": 959, \"OWNER_OCC\": 6696, \"RENTER_OCC\": 4997 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.580712999833395, 37.8355869985377 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Highview\", \"CLASS\": \"CDP\", \"ST\": \"KY\", \"STFIPS\": \"21\", \"PLACEFIP\": \"36730\", \"CAPITAL\": \"N\", \"AREALAND\": 6.484000, \"AREAWATER\": 0.004000, \"POP_CL\": 6, \"POP2000\": 15161, \"WHITE\": 13537, \"BLACK\": 1180, \"AMERI_ES\": 25, \"ASIAN\": 117, \"HAWN_PI\": 7, \"OTHER\": 123, \"MULT_RACE\": 172, \"HISPANIC\": 307, \"MALES\": 7426, \"FEMALES\": 7735, \"AGE_UNDER5\": 954, \"AGE_5_17\": 2590, \"AGE_18_21\": 696, \"AGE_22_29\": 1467, \"AGE_30_39\": 2367, \"AGE_40_49\": 2444, \"AGE_50_64\": 2680, \"AGE_65_UP\": 1963, \"MED_AGE\": 38.100000, \"MED_AGE_M\": 36.700000, \"MED_AGE_F\": 39.500000, \"HOUSEHOLDS\": 5919, \"AVE_HH_SZ\": 2.560000, \"HSEHLD_1_M\": 521, \"HSEHLD_1_F\": 762, \"MARHH_CHD\": 1443, \"MARHH_NO_C\": 2124, \"MHH_CHILD\": 108, \"FHH_CHILD\": 297, \"FAMILIES\": 4384, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 6183, \"VACANT\": 264, \"OWNER_OCC\": 4732, \"RENTER_OCC\": 1187 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.644214006806266, 38.136466991042639 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hopkinsville\", \"CLASS\": \"city\", \"ST\": \"KY\", \"STFIPS\": \"21\", \"PLACEFIP\": \"37918\", \"CAPITAL\": \"N\", \"AREALAND\": 24.026000, \"AREAWATER\": 0.010000, \"POP_CL\": 6, \"POP2000\": 30089, \"WHITE\": 19875, \"BLACK\": 9302, \"AMERI_ES\": 69, \"ASIAN\": 229, \"HAWN_PI\": 26, \"OTHER\": 178, \"MULT_RACE\": 410, \"HISPANIC\": 508, \"MALES\": 14079, \"FEMALES\": 16010, \"AGE_UNDER5\": 2236, \"AGE_5_17\": 5712, \"AGE_18_21\": 1640, \"AGE_22_29\": 3393, \"AGE_30_39\": 4216, \"AGE_40_49\": 4103, \"AGE_50_64\": 4325, \"AGE_65_UP\": 4464, \"MED_AGE\": 35.100000, \"MED_AGE_M\": 32.700000, \"MED_AGE_F\": 36.900000, \"HOUSEHOLDS\": 12174, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 1426, \"HSEHLD_1_F\": 2194, \"MARHH_CHD\": 2286, \"MARHH_NO_C\": 3202, \"MHH_CHILD\": 225, \"FHH_CHILD\": 1430, \"FAMILIES\": 8125, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 13260, \"VACANT\": 1086, \"OWNER_OCC\": 7053, \"RENTER_OCC\": 5121 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.488871999713339, 36.854711998494601 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Independence\", \"CLASS\": \"city\", \"ST\": \"KY\", \"STFIPS\": \"21\", \"PLACEFIP\": \"39142\", \"CAPITAL\": \"N\", \"AREALAND\": 16.772000, \"AREAWATER\": 0.006000, \"POP_CL\": 6, \"POP2000\": 14982, \"WHITE\": 14563, \"BLACK\": 144, \"AMERI_ES\": 27, \"ASIAN\": 60, \"HAWN_PI\": 3, \"OTHER\": 54, \"MULT_RACE\": 131, \"HISPANIC\": 173, \"MALES\": 7552, \"FEMALES\": 7430, \"AGE_UNDER5\": 1354, \"AGE_5_17\": 3202, \"AGE_18_21\": 792, \"AGE_22_29\": 1791, \"AGE_30_39\": 2890, \"AGE_40_49\": 2188, \"AGE_50_64\": 1791, \"AGE_65_UP\": 974, \"MED_AGE\": 31.300000, \"MED_AGE_M\": 30.500000, \"MED_AGE_F\": 32.100000, \"HOUSEHOLDS\": 5181, \"AVE_HH_SZ\": 2.890000, \"HSEHLD_1_M\": 407, \"HSEHLD_1_F\": 372, \"MARHH_CHD\": 1781, \"MARHH_NO_C\": 1478, \"MHH_CHILD\": 155, \"FHH_CHILD\": 392, \"FAMILIES\": 4148, \"AVE_FAM_SZ\": 3.210000, \"HSE_UNITS\": 5391, \"VACANT\": 210, \"OWNER_OCC\": 3980, \"RENTER_OCC\": 1201 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.546990037163582, 38.953667979231838 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Jeffersontown\", \"CLASS\": \"city\", \"ST\": \"KY\", \"STFIPS\": \"21\", \"PLACEFIP\": \"40222\", \"CAPITAL\": \"N\", \"AREALAND\": 9.953000, \"AREAWATER\": 0.009000, \"POP_CL\": 6, \"POP2000\": 26633, \"WHITE\": 23101, \"BLACK\": 2305, \"AMERI_ES\": 57, \"ASIAN\": 471, \"HAWN_PI\": 7, \"OTHER\": 304, \"MULT_RACE\": 388, \"HISPANIC\": 677, \"MALES\": 12820, \"FEMALES\": 13813, \"AGE_UNDER5\": 1929, \"AGE_5_17\": 4665, \"AGE_18_21\": 1090, \"AGE_22_29\": 3042, \"AGE_30_39\": 4611, \"AGE_40_49\": 4295, \"AGE_50_64\": 4125, \"AGE_65_UP\": 2876, \"MED_AGE\": 35.700000, \"MED_AGE_M\": 34.200000, \"MED_AGE_F\": 37.100000, \"HOUSEHOLDS\": 10653, \"AVE_HH_SZ\": 2.460000, \"HSEHLD_1_M\": 1210, \"HSEHLD_1_F\": 1607, \"MARHH_CHD\": 2660, \"MARHH_NO_C\": 3128, \"MHH_CHILD\": 175, \"FHH_CHILD\": 674, \"FAMILIES\": 7279, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 11220, \"VACANT\": 567, \"OWNER_OCC\": 7438, \"RENTER_OCC\": 3215 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.573619007755212, 38.206101990492243 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lexington-Fayette County\", \"CLASS\": \"city and county\", \"ST\": \"KY\", \"STFIPS\": \"21\", \"PLACEFIP\": \"46027\", \"CAPITAL\": \"N\", \"AREALAND\": 284.514000, \"AREAWATER\": 1.004000, \"POP_CL\": 8, \"POP2000\": 260512, \"WHITE\": 211120, \"BLACK\": 35116, \"AMERI_ES\": 507, \"ASIAN\": 6407, \"HAWN_PI\": 83, \"OTHER\": 3165, \"MULT_RACE\": 4114, \"HISPANIC\": 8561, \"MALES\": 127905, \"FEMALES\": 132607, \"AGE_UNDER5\": 16146, \"AGE_5_17\": 39387, \"AGE_18_21\": 21670, \"AGE_22_29\": 40140, \"AGE_30_39\": 42157, \"AGE_40_49\": 39092, \"AGE_50_64\": 35746, \"AGE_65_UP\": 26174, \"MED_AGE\": 33.000000, \"MED_AGE_M\": 31.700000, \"MED_AGE_F\": 34.500000, \"HOUSEHOLDS\": 108288, \"AVE_HH_SZ\": 2.290000, \"HSEHLD_1_M\": 14966, \"HSEHLD_1_F\": 19350, \"MARHH_CHD\": 20427, \"MARHH_NO_C\": 26647, \"MHH_CHILD\": 1577, \"FHH_CHILD\": 7524, \"FAMILIES\": 62955, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 116167, \"VACANT\": 7879, \"OWNER_OCC\": 59889, \"RENTER_OCC\": 48399 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.494642034742327, 38.02963197979426 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Louisville\", \"CLASS\": \"city\", \"ST\": \"KY\", \"STFIPS\": \"21\", \"PLACEFIP\": \"48000\", \"CAPITAL\": \"N\", \"AREALAND\": 62.118000, \"AREAWATER\": 4.534000, \"POP_CL\": 8, \"POP2000\": 256231, \"WHITE\": 161261, \"BLACK\": 84586, \"AMERI_ES\": 578, \"ASIAN\": 3705, \"HAWN_PI\": 111, \"OTHER\": 1709, \"MULT_RACE\": 4281, \"HISPANIC\": 4755, \"MALES\": 121153, \"FEMALES\": 135078, \"AGE_UNDER5\": 16926, \"AGE_5_17\": 43683, \"AGE_18_21\": 15342, \"AGE_22_29\": 30865, \"AGE_30_39\": 37839, \"AGE_40_49\": 39081, \"AGE_50_64\": 35038, \"AGE_65_UP\": 37457, \"MED_AGE\": 35.800000, \"MED_AGE_M\": 34.000000, \"MED_AGE_F\": 37.600000, \"HOUSEHOLDS\": 111414, \"AVE_HH_SZ\": 2.220000, \"HSEHLD_1_M\": 18303, \"HSEHLD_1_F\": 23877, \"MARHH_CHD\": 13684, \"MARHH_NO_C\": 21487, \"MHH_CHILD\": 2181, \"FHH_CHILD\": 12780, \"FAMILIES\": 61374, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 121275, \"VACANT\": 9861, \"OWNER_OCC\": 58546, \"RENTER_OCC\": 52868 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.749534005830796, 38.228869991705395 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Madisonville\", \"CLASS\": \"city\", \"ST\": \"KY\", \"STFIPS\": \"21\", \"PLACEFIP\": \"49368\", \"CAPITAL\": \"N\", \"AREALAND\": 17.795000, \"AREAWATER\": 0.729000, \"POP_CL\": 6, \"POP2000\": 19307, \"WHITE\": 16644, \"BLACK\": 2170, \"AMERI_ES\": 35, \"ASIAN\": 99, \"HAWN_PI\": 6, \"OTHER\": 121, \"MULT_RACE\": 232, \"HISPANIC\": 259, \"MALES\": 8923, \"FEMALES\": 10384, \"AGE_UNDER5\": 1237, \"AGE_5_17\": 3378, \"AGE_18_21\": 937, \"AGE_22_29\": 1915, \"AGE_30_39\": 2560, \"AGE_40_49\": 2904, \"AGE_50_64\": 3136, \"AGE_65_UP\": 3240, \"MED_AGE\": 38.700000, \"MED_AGE_M\": 36.000000, \"MED_AGE_F\": 41.100000, \"HOUSEHOLDS\": 8077, \"AVE_HH_SZ\": 2.310000, \"HSEHLD_1_M\": 888, \"HSEHLD_1_F\": 1568, \"MARHH_CHD\": 1595, \"MARHH_NO_C\": 2347, \"MHH_CHILD\": 122, \"FHH_CHILD\": 708, \"FAMILIES\": 5328, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 8889, \"VACANT\": 812, \"OWNER_OCC\": 5283, \"RENTER_OCC\": 2794 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.502189999778736, 37.3326599984632 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mayfield\", \"CLASS\": \"city\", \"ST\": \"KY\", \"STFIPS\": \"21\", \"PLACEFIP\": \"50898\", \"CAPITAL\": \"N\", \"AREALAND\": 6.678000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10349, \"WHITE\": 8338, \"BLACK\": 1377, \"AMERI_ES\": 22, \"ASIAN\": 38, \"HAWN_PI\": 0, \"OTHER\": 360, \"MULT_RACE\": 214, \"HISPANIC\": 606, \"MALES\": 4784, \"FEMALES\": 5565, \"AGE_UNDER5\": 749, \"AGE_5_17\": 1666, \"AGE_18_21\": 559, \"AGE_22_29\": 1056, \"AGE_30_39\": 1257, \"AGE_40_49\": 1277, \"AGE_50_64\": 1547, \"AGE_65_UP\": 2238, \"MED_AGE\": 39.100000, \"MED_AGE_M\": 35.200000, \"MED_AGE_F\": 43.000000, \"HOUSEHOLDS\": 4358, \"AVE_HH_SZ\": 2.270000, \"HSEHLD_1_M\": 495, \"HSEHLD_1_F\": 1042, \"MARHH_CHD\": 672, \"MARHH_NO_C\": 1175, \"MHH_CHILD\": 72, \"FHH_CHILD\": 428, \"FAMILIES\": 2668, \"AVE_FAM_SZ\": 2.890000, \"HSE_UNITS\": 4907, \"VACANT\": 549, \"OWNER_OCC\": 2616, \"RENTER_OCC\": 1742 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.640121999855637, 36.737692999629843 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Middlesborough\", \"CLASS\": \"city\", \"ST\": \"KY\", \"STFIPS\": \"21\", \"PLACEFIP\": \"51924\", \"CAPITAL\": \"N\", \"AREALAND\": 7.640000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10384, \"WHITE\": 9641, \"BLACK\": 509, \"AMERI_ES\": 39, \"ASIAN\": 65, \"HAWN_PI\": 4, \"OTHER\": 20, \"MULT_RACE\": 106, \"HISPANIC\": 82, \"MALES\": 4725, \"FEMALES\": 5659, \"AGE_UNDER5\": 632, \"AGE_5_17\": 1819, \"AGE_18_21\": 542, \"AGE_22_29\": 1014, \"AGE_30_39\": 1403, \"AGE_40_49\": 1394, \"AGE_50_64\": 1812, \"AGE_65_UP\": 1768, \"MED_AGE\": 38.600000, \"MED_AGE_M\": 36.400000, \"MED_AGE_F\": 40.500000, \"HOUSEHOLDS\": 4443, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 505, \"HSEHLD_1_F\": 896, \"MARHH_CHD\": 755, \"MARHH_NO_C\": 1162, \"MHH_CHILD\": 75, \"FHH_CHILD\": 434, \"FAMILIES\": 2929, \"AVE_FAM_SZ\": 2.880000, \"HSE_UNITS\": 4955, \"VACANT\": 512, \"OWNER_OCC\": 2520, \"RENTER_OCC\": 1923 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.723230071899479, 36.610145970855548 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Murray\", \"CLASS\": \"city\", \"ST\": \"KY\", \"STFIPS\": \"21\", \"PLACEFIP\": \"54642\", \"CAPITAL\": \"N\", \"AREALAND\": 9.698000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14950, \"WHITE\": 13180, \"BLACK\": 1017, \"AMERI_ES\": 31, \"ASIAN\": 411, \"HAWN_PI\": 3, \"OTHER\": 102, \"MULT_RACE\": 206, \"HISPANIC\": 259, \"MALES\": 6943, \"FEMALES\": 8007, \"AGE_UNDER5\": 594, \"AGE_5_17\": 1432, \"AGE_18_21\": 3365, \"AGE_22_29\": 2796, \"AGE_30_39\": 1259, \"AGE_40_49\": 1387, \"AGE_50_64\": 1721, \"AGE_65_UP\": 2396, \"MED_AGE\": 26.500000, \"MED_AGE_M\": 25.200000, \"MED_AGE_F\": 28.800000, \"HOUSEHOLDS\": 6004, \"AVE_HH_SZ\": 2.020000, \"HSEHLD_1_M\": 907, \"HSEHLD_1_F\": 1439, \"MARHH_CHD\": 738, \"MARHH_NO_C\": 1401, \"MHH_CHILD\": 62, \"FHH_CHILD\": 368, \"FAMILIES\": 2872, \"AVE_FAM_SZ\": 2.700000, \"HSE_UNITS\": 6622, \"VACANT\": 618, \"OWNER_OCC\": 2890, \"RENTER_OCC\": 3114 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.315655999793179, 36.609493999437852 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Newburg\", \"CLASS\": \"CDP\", \"ST\": \"KY\", \"STFIPS\": \"21\", \"PLACEFIP\": \"55542\", \"CAPITAL\": \"N\", \"AREALAND\": 5.736000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 20636, \"WHITE\": 7873, \"BLACK\": 11986, \"AMERI_ES\": 55, \"ASIAN\": 179, \"HAWN_PI\": 10, \"OTHER\": 181, \"MULT_RACE\": 352, \"HISPANIC\": 560, \"MALES\": 9523, \"FEMALES\": 11113, \"AGE_UNDER5\": 1603, \"AGE_5_17\": 4525, \"AGE_18_21\": 1290, \"AGE_22_29\": 2282, \"AGE_30_39\": 2983, \"AGE_40_49\": 3047, \"AGE_50_64\": 2824, \"AGE_65_UP\": 2082, \"MED_AGE\": 32.200000, \"MED_AGE_M\": 30.400000, \"MED_AGE_F\": 33.700000, \"HOUSEHOLDS\": 7981, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 930, \"HSEHLD_1_F\": 1168, \"MARHH_CHD\": 1181, \"MARHH_NO_C\": 1714, \"MHH_CHILD\": 205, \"FHH_CHILD\": 1408, \"FAMILIES\": 5509, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 8449, \"VACANT\": 468, \"OWNER_OCC\": 4428, \"RENTER_OCC\": 3553 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.685377006404735, 38.169118991308267 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Newport\", \"CLASS\": \"city\", \"ST\": \"KY\", \"STFIPS\": \"21\", \"PLACEFIP\": \"55884\", \"CAPITAL\": \"N\", \"AREALAND\": 2.720000, \"AREAWATER\": 0.245000, \"POP_CL\": 6, \"POP2000\": 17048, \"WHITE\": 15628, \"BLACK\": 937, \"AMERI_ES\": 49, \"ASIAN\": 67, \"HAWN_PI\": 6, \"OTHER\": 115, \"MULT_RACE\": 246, \"HISPANIC\": 287, \"MALES\": 8298, \"FEMALES\": 8750, \"AGE_UNDER5\": 1329, \"AGE_5_17\": 3165, \"AGE_18_21\": 1049, \"AGE_22_29\": 2161, \"AGE_30_39\": 2720, \"AGE_40_49\": 2470, \"AGE_50_64\": 2238, \"AGE_65_UP\": 1916, \"MED_AGE\": 32.900000, \"MED_AGE_M\": 31.900000, \"MED_AGE_F\": 33.900000, \"HOUSEHOLDS\": 6975, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 1166, \"HSEHLD_1_F\": 1261, \"MARHH_CHD\": 1028, \"MARHH_NO_C\": 1230, \"MHH_CHILD\": 181, \"FHH_CHILD\": 877, \"FAMILIES\": 4048, \"AVE_FAM_SZ\": 3.100000, \"HSE_UNITS\": 7828, \"VACANT\": 853, \"OWNER_OCC\": 3086, \"RENTER_OCC\": 3889 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.490206040609451, 39.088660978259966 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Nicholasville\", \"CLASS\": \"city\", \"ST\": \"KY\", \"STFIPS\": \"21\", \"PLACEFIP\": \"56136\", \"CAPITAL\": \"N\", \"AREALAND\": 8.483000, \"AREAWATER\": 0.027000, \"POP_CL\": 6, \"POP2000\": 19680, \"WHITE\": 18313, \"BLACK\": 862, \"AMERI_ES\": 50, \"ASIAN\": 56, \"HAWN_PI\": 9, \"OTHER\": 117, \"MULT_RACE\": 273, \"HISPANIC\": 296, \"MALES\": 9406, \"FEMALES\": 10274, \"AGE_UNDER5\": 1689, \"AGE_5_17\": 3862, \"AGE_18_21\": 1059, \"AGE_22_29\": 2714, \"AGE_30_39\": 3370, \"AGE_40_49\": 2827, \"AGE_50_64\": 2416, \"AGE_65_UP\": 1743, \"MED_AGE\": 31.400000, \"MED_AGE_M\": 30.100000, \"MED_AGE_F\": 32.900000, \"HOUSEHOLDS\": 7370, \"AVE_HH_SZ\": 2.630000, \"HSEHLD_1_M\": 514, \"HSEHLD_1_F\": 979, \"MARHH_CHD\": 2087, \"MARHH_NO_C\": 2017, \"MHH_CHILD\": 188, \"FHH_CHILD\": 730, \"FAMILIES\": 5500, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 7783, \"VACANT\": 413, \"OWNER_OCC\": 4484, \"RENTER_OCC\": 2886 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.576585030583715, 37.882669981041062 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Okolona\", \"CLASS\": \"CDP\", \"ST\": \"KY\", \"STFIPS\": \"21\", \"PLACEFIP\": \"57612\", \"CAPITAL\": \"N\", \"AREALAND\": 6.919000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 17807, \"WHITE\": 15717, \"BLACK\": 1291, \"AMERI_ES\": 47, \"ASIAN\": 236, \"HAWN_PI\": 7, \"OTHER\": 205, \"MULT_RACE\": 304, \"HISPANIC\": 567, \"MALES\": 8594, \"FEMALES\": 9213, \"AGE_UNDER5\": 1249, \"AGE_5_17\": 2897, \"AGE_18_21\": 999, \"AGE_22_29\": 2023, \"AGE_30_39\": 2680, \"AGE_40_49\": 2549, \"AGE_50_64\": 2899, \"AGE_65_UP\": 2511, \"MED_AGE\": 36.600000, \"MED_AGE_M\": 34.700000, \"MED_AGE_F\": 38.600000, \"HOUSEHOLDS\": 7256, \"AVE_HH_SZ\": 2.430000, \"HSEHLD_1_M\": 790, \"HSEHLD_1_F\": 1126, \"MARHH_CHD\": 1417, \"MARHH_NO_C\": 2089, \"MHH_CHILD\": 169, \"FHH_CHILD\": 611, \"FAMILIES\": 4957, \"AVE_FAM_SZ\": 2.910000, \"HSE_UNITS\": 7500, \"VACANT\": 244, \"OWNER_OCC\": 4577, \"RENTER_OCC\": 2679 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.681597006397453, 38.137034991301263 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Owensboro\", \"CLASS\": \"city\", \"ST\": \"KY\", \"STFIPS\": \"21\", \"PLACEFIP\": \"58620\", \"CAPITAL\": \"N\", \"AREALAND\": 17.424000, \"AREAWATER\": 1.232000, \"POP_CL\": 7, \"POP2000\": 54067, \"WHITE\": 48999, \"BLACK\": 3728, \"AMERI_ES\": 66, \"ASIAN\": 276, \"HAWN_PI\": 12, \"OTHER\": 295, \"MULT_RACE\": 691, \"HISPANIC\": 557, \"MALES\": 25243, \"FEMALES\": 28824, \"AGE_UNDER5\": 3658, \"AGE_5_17\": 9385, \"AGE_18_21\": 3208, \"AGE_22_29\": 5708, \"AGE_30_39\": 7131, \"AGE_40_49\": 7757, \"AGE_50_64\": 8396, \"AGE_65_UP\": 8824, \"MED_AGE\": 37.400000, \"MED_AGE_M\": 34.900000, \"MED_AGE_F\": 39.600000, \"HOUSEHOLDS\": 22659, \"AVE_HH_SZ\": 2.290000, \"HSEHLD_1_M\": 2792, \"HSEHLD_1_F\": 4743, \"MARHH_CHD\": 4184, \"MARHH_NO_C\": 5948, \"MHH_CHILD\": 408, \"FHH_CHILD\": 1934, \"FAMILIES\": 14091, \"AVE_FAM_SZ\": 2.910000, \"HSE_UNITS\": 24302, \"VACANT\": 1643, \"OWNER_OCC\": 13644, \"RENTER_OCC\": 9015 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.11839000002432, 37.75774799763856 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Paducah\", \"CLASS\": \"city\", \"ST\": \"KY\", \"STFIPS\": \"21\", \"PLACEFIP\": \"58836\", \"CAPITAL\": \"N\", \"AREALAND\": 19.484000, \"AREAWATER\": 0.022000, \"POP_CL\": 6, \"POP2000\": 26307, \"WHITE\": 19145, \"BLACK\": 6353, \"AMERI_ES\": 66, \"ASIAN\": 169, \"HAWN_PI\": 20, \"OTHER\": 144, \"MULT_RACE\": 410, \"HISPANIC\": 362, \"MALES\": 11964, \"FEMALES\": 14343, \"AGE_UNDER5\": 1711, \"AGE_5_17\": 4212, \"AGE_18_21\": 1267, \"AGE_22_29\": 2601, \"AGE_30_39\": 3396, \"AGE_40_49\": 3743, \"AGE_50_64\": 4044, \"AGE_65_UP\": 5333, \"MED_AGE\": 39.900000, \"MED_AGE_M\": 36.300000, \"MED_AGE_F\": 43.000000, \"HOUSEHOLDS\": 11825, \"AVE_HH_SZ\": 2.120000, \"HSEHLD_1_M\": 1671, \"HSEHLD_1_F\": 2977, \"MARHH_CHD\": 1593, \"MARHH_NO_C\": 2761, \"MHH_CHILD\": 194, \"FHH_CHILD\": 1173, \"FAMILIES\": 6648, \"AVE_FAM_SZ\": 2.840000, \"HSE_UNITS\": 13221, \"VACANT\": 1396, \"OWNER_OCC\": 6254, \"RENTER_OCC\": 5571 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.627435999861319, 37.072225999613806 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pleasure Ridge Park\", \"CLASS\": \"CDP\", \"ST\": \"KY\", \"STFIPS\": \"21\", \"PLACEFIP\": \"61752\", \"CAPITAL\": \"N\", \"AREALAND\": 8.324000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 25776, \"WHITE\": 24330, \"BLACK\": 990, \"AMERI_ES\": 51, \"ASIAN\": 112, \"HAWN_PI\": 9, \"OTHER\": 77, \"MULT_RACE\": 207, \"HISPANIC\": 232, \"MALES\": 12614, \"FEMALES\": 13162, \"AGE_UNDER5\": 1551, \"AGE_5_17\": 4592, \"AGE_18_21\": 1350, \"AGE_22_29\": 2581, \"AGE_30_39\": 3913, \"AGE_40_49\": 4275, \"AGE_50_64\": 4018, \"AGE_65_UP\": 3496, \"MED_AGE\": 37.700000, \"MED_AGE_M\": 36.400000, \"MED_AGE_F\": 38.800000, \"HOUSEHOLDS\": 10290, \"AVE_HH_SZ\": 2.500000, \"HSEHLD_1_M\": 1052, \"HSEHLD_1_F\": 1457, \"MARHH_CHD\": 2346, \"MARHH_NO_C\": 3303, \"MHH_CHILD\": 243, \"FHH_CHILD\": 643, \"FAMILIES\": 7346, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 10643, \"VACANT\": 353, \"OWNER_OCC\": 8135, \"RENTER_OCC\": 2155 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.852837004787133, 38.153768992404004 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Radcliff\", \"CLASS\": \"city\", \"ST\": \"KY\", \"STFIPS\": \"21\", \"PLACEFIP\": \"63912\", \"CAPITAL\": \"N\", \"AREALAND\": 11.473000, \"AREAWATER\": 0.010000, \"POP_CL\": 6, \"POP2000\": 21961, \"WHITE\": 13782, \"BLACK\": 5632, \"AMERI_ES\": 134, \"ASIAN\": 772, \"HAWN_PI\": 90, \"OTHER\": 572, \"MULT_RACE\": 979, \"HISPANIC\": 1243, \"MALES\": 10697, \"FEMALES\": 11264, \"AGE_UNDER5\": 1705, \"AGE_5_17\": 4696, \"AGE_18_21\": 1240, \"AGE_22_29\": 2430, \"AGE_30_39\": 3687, \"AGE_40_49\": 3487, \"AGE_50_64\": 2821, \"AGE_65_UP\": 1895, \"MED_AGE\": 32.800000, \"MED_AGE_M\": 31.400000, \"MED_AGE_F\": 34.000000, \"HOUSEHOLDS\": 8487, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 1137, \"HSEHLD_1_F\": 1069, \"MARHH_CHD\": 1993, \"MARHH_NO_C\": 2143, \"MHH_CHILD\": 234, \"FHH_CHILD\": 1040, \"FAMILIES\": 5852, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 9487, \"VACANT\": 1000, \"OWNER_OCC\": 4857, \"RENTER_OCC\": 3630 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.945541003699134, 37.829917993111479 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Richmond\", \"CLASS\": \"city\", \"ST\": \"KY\", \"STFIPS\": \"21\", \"PLACEFIP\": \"65226\", \"CAPITAL\": \"N\", \"AREALAND\": 19.116000, \"AREAWATER\": 0.137000, \"POP_CL\": 6, \"POP2000\": 27152, \"WHITE\": 23976, \"BLACK\": 2246, \"AMERI_ES\": 80, \"ASIAN\": 297, \"HAWN_PI\": 8, \"OTHER\": 116, \"MULT_RACE\": 429, \"HISPANIC\": 328, \"MALES\": 12895, \"FEMALES\": 14257, \"AGE_UNDER5\": 1616, \"AGE_5_17\": 3141, \"AGE_18_21\": 5474, \"AGE_22_29\": 5931, \"AGE_30_39\": 3339, \"AGE_40_49\": 2542, \"AGE_50_64\": 2536, \"AGE_65_UP\": 2573, \"MED_AGE\": 25.300000, \"MED_AGE_M\": 25.100000, \"MED_AGE_F\": 25.500000, \"HOUSEHOLDS\": 10795, \"AVE_HH_SZ\": 2.140000, \"HSEHLD_1_M\": 1656, \"HSEHLD_1_F\": 2088, \"MARHH_CHD\": 1547, \"MARHH_NO_C\": 2255, \"MHH_CHILD\": 172, \"FHH_CHILD\": 911, \"FAMILIES\": 5551, \"AVE_FAM_SZ\": 2.780000, \"HSE_UNITS\": 11857, \"VACANT\": 1062, \"OWNER_OCC\": 3802, \"RENTER_OCC\": 6993 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.293562042831525, 37.744719977477374 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"St. Matthews\", \"CLASS\": \"city\", \"ST\": \"KY\", \"STFIPS\": \"21\", \"PLACEFIP\": \"67944\", \"CAPITAL\": \"N\", \"AREALAND\": 4.025000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 15852, \"WHITE\": 14317, \"BLACK\": 785, \"AMERI_ES\": 24, \"ASIAN\": 416, \"HAWN_PI\": 1, \"OTHER\": 93, \"MULT_RACE\": 216, \"HISPANIC\": 268, \"MALES\": 7358, \"FEMALES\": 8494, \"AGE_UNDER5\": 857, \"AGE_5_17\": 1835, \"AGE_18_21\": 697, \"AGE_22_29\": 2725, \"AGE_30_39\": 2605, \"AGE_40_49\": 2322, \"AGE_50_64\": 2102, \"AGE_65_UP\": 2709, \"MED_AGE\": 36.700000, \"MED_AGE_M\": 33.500000, \"MED_AGE_F\": 39.800000, \"HOUSEHOLDS\": 7978, \"AVE_HH_SZ\": 1.940000, \"HSEHLD_1_M\": 1340, \"HSEHLD_1_F\": 2268, \"MARHH_CHD\": 1083, \"MARHH_NO_C\": 1701, \"MHH_CHILD\": 82, \"FHH_CHILD\": 352, \"FAMILIES\": 3660, \"AVE_FAM_SZ\": 2.760000, \"HSE_UNITS\": 8537, \"VACANT\": 559, \"OWNER_OCC\": 4045, \"RENTER_OCC\": 3933 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.642613007001131, 38.24993099096244 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Shelbyville\", \"CLASS\": \"city\", \"ST\": \"KY\", \"STFIPS\": \"21\", \"PLACEFIP\": \"70050\", \"CAPITAL\": \"N\", \"AREALAND\": 7.563000, \"AREAWATER\": 0.072000, \"POP_CL\": 6, \"POP2000\": 10085, \"WHITE\": 7561, \"BLACK\": 1649, \"AMERI_ES\": 33, \"ASIAN\": 53, \"HAWN_PI\": 33, \"OTHER\": 503, \"MULT_RACE\": 253, \"HISPANIC\": 959, \"MALES\": 4958, \"FEMALES\": 5127, \"AGE_UNDER5\": 892, \"AGE_5_17\": 1770, \"AGE_18_21\": 622, \"AGE_22_29\": 1466, \"AGE_30_39\": 1645, \"AGE_40_49\": 1294, \"AGE_50_64\": 1306, \"AGE_65_UP\": 1090, \"MED_AGE\": 31.600000, \"MED_AGE_M\": 29.800000, \"MED_AGE_F\": 33.900000, \"HOUSEHOLDS\": 3822, \"AVE_HH_SZ\": 2.540000, \"HSEHLD_1_M\": 382, \"HSEHLD_1_F\": 639, \"MARHH_CHD\": 839, \"MARHH_NO_C\": 905, \"MHH_CHILD\": 98, \"FHH_CHILD\": 403, \"FAMILIES\": 2551, \"AVE_FAM_SZ\": 3.030000, \"HSE_UNITS\": 4117, \"VACANT\": 295, \"OWNER_OCC\": 1935, \"RENTER_OCC\": 1887 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.225847013239516, 38.212159987644156 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Shively\", \"CLASS\": \"city\", \"ST\": \"KY\", \"STFIPS\": \"21\", \"PLACEFIP\": \"70284\", \"CAPITAL\": \"N\", \"AREALAND\": 4.634000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 15157, \"WHITE\": 10195, \"BLACK\": 4595, \"AMERI_ES\": 39, \"ASIAN\": 64, \"HAWN_PI\": 0, \"OTHER\": 118, \"MULT_RACE\": 146, \"HISPANIC\": 211, \"MALES\": 6964, \"FEMALES\": 8193, \"AGE_UNDER5\": 924, \"AGE_5_17\": 2369, \"AGE_18_21\": 673, \"AGE_22_29\": 1424, \"AGE_30_39\": 2053, \"AGE_40_49\": 2400, \"AGE_50_64\": 2179, \"AGE_65_UP\": 3135, \"MED_AGE\": 40.500000, \"MED_AGE_M\": 38.600000, \"MED_AGE_F\": 42.000000, \"HOUSEHOLDS\": 6667, \"AVE_HH_SZ\": 2.230000, \"HSEHLD_1_M\": 880, \"HSEHLD_1_F\": 1385, \"MARHH_CHD\": 942, \"MARHH_NO_C\": 1733, \"MHH_CHILD\": 125, \"FHH_CHILD\": 641, \"FAMILIES\": 4081, \"AVE_FAM_SZ\": 2.840000, \"HSE_UNITS\": 6929, \"VACANT\": 262, \"OWNER_OCC\": 4439, \"RENTER_OCC\": 2228 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.816166005155807, 38.193174992154994 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Somerset\", \"CLASS\": \"city\", \"ST\": \"KY\", \"STFIPS\": \"21\", \"PLACEFIP\": \"71688\", \"CAPITAL\": \"N\", \"AREALAND\": 11.272000, \"AREAWATER\": 0.015000, \"POP_CL\": 6, \"POP2000\": 11352, \"WHITE\": 10689, \"BLACK\": 416, \"AMERI_ES\": 20, \"ASIAN\": 81, \"HAWN_PI\": 0, \"OTHER\": 30, \"MULT_RACE\": 116, \"HISPANIC\": 112, \"MALES\": 5131, \"FEMALES\": 6221, \"AGE_UNDER5\": 631, \"AGE_5_17\": 1711, \"AGE_18_21\": 569, \"AGE_22_29\": 1105, \"AGE_30_39\": 1608, \"AGE_40_49\": 1635, \"AGE_50_64\": 1662, \"AGE_65_UP\": 2431, \"MED_AGE\": 40.300000, \"MED_AGE_M\": 37.000000, \"MED_AGE_F\": 43.700000, \"HOUSEHOLDS\": 4831, \"AVE_HH_SZ\": 2.130000, \"HSEHLD_1_M\": 578, \"HSEHLD_1_F\": 1246, \"MARHH_CHD\": 786, \"MARHH_NO_C\": 1208, \"MHH_CHILD\": 67, \"FHH_CHILD\": 432, \"FAMILIES\": 2845, \"AVE_FAM_SZ\": 2.800000, \"HSE_UNITS\": 5428, \"VACANT\": 597, \"OWNER_OCC\": 2614, \"RENTER_OCC\": 2217 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.609387025682338, 37.082965982470995 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Valley Station\", \"CLASS\": \"CDP\", \"ST\": \"KY\", \"STFIPS\": \"21\", \"PLACEFIP\": \"78942\", \"CAPITAL\": \"N\", \"AREALAND\": 7.815000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 22946, \"WHITE\": 21951, \"BLACK\": 492, \"AMERI_ES\": 54, \"ASIAN\": 91, \"HAWN_PI\": 8, \"OTHER\": 87, \"MULT_RACE\": 263, \"HISPANIC\": 204, \"MALES\": 11011, \"FEMALES\": 11935, \"AGE_UNDER5\": 1586, \"AGE_5_17\": 4215, \"AGE_18_21\": 1214, \"AGE_22_29\": 2302, \"AGE_30_39\": 3304, \"AGE_40_49\": 3581, \"AGE_50_64\": 3336, \"AGE_65_UP\": 3408, \"MED_AGE\": 37.000000, \"MED_AGE_M\": 35.400000, \"MED_AGE_F\": 38.400000, \"HOUSEHOLDS\": 8723, \"AVE_HH_SZ\": 2.630000, \"HSEHLD_1_M\": 714, \"HSEHLD_1_F\": 1121, \"MARHH_CHD\": 2128, \"MARHH_NO_C\": 2923, \"MHH_CHILD\": 182, \"FHH_CHILD\": 594, \"FAMILIES\": 6568, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 8948, \"VACANT\": 225, \"OWNER_OCC\": 7357, \"RENTER_OCC\": 1366 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.859066004677985, 38.107068992466118 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Winchester\", \"CLASS\": \"city\", \"ST\": \"KY\", \"STFIPS\": \"21\", \"PLACEFIP\": \"83676\", \"CAPITAL\": \"N\", \"AREALAND\": 7.645000, \"AREAWATER\": 0.035000, \"POP_CL\": 6, \"POP2000\": 16724, \"WHITE\": 14875, \"BLACK\": 1477, \"AMERI_ES\": 36, \"ASIAN\": 42, \"HAWN_PI\": 1, \"OTHER\": 136, \"MULT_RACE\": 157, \"HISPANIC\": 268, \"MALES\": 7863, \"FEMALES\": 8861, \"AGE_UNDER5\": 1202, \"AGE_5_17\": 2968, \"AGE_18_21\": 891, \"AGE_22_29\": 2053, \"AGE_30_39\": 2499, \"AGE_40_49\": 2294, \"AGE_50_64\": 2471, \"AGE_65_UP\": 2346, \"MED_AGE\": 35.000000, \"MED_AGE_M\": 33.100000, \"MED_AGE_F\": 36.700000, \"HOUSEHOLDS\": 6907, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 741, \"HSEHLD_1_F\": 1228, \"MARHH_CHD\": 1380, \"MARHH_NO_C\": 1869, \"MHH_CHILD\": 113, \"FHH_CHILD\": 677, \"FAMILIES\": 4620, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 7400, \"VACANT\": 493, \"OWNER_OCC\": 3764, \"RENTER_OCC\": 3143 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.184289050709566, 37.994773975470785 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Abbeville\", \"CLASS\": \"city\", \"ST\": \"LA\", \"STFIPS\": \"22\", \"PLACEFIP\": \"00100\", \"CAPITAL\": \"N\", \"AREALAND\": 5.649000, \"AREAWATER\": 0.028000, \"POP_CL\": 6, \"POP2000\": 11887, \"WHITE\": 6454, \"BLACK\": 4584, \"AMERI_ES\": 23, \"ASIAN\": 654, \"HAWN_PI\": 0, \"OTHER\": 46, \"MULT_RACE\": 126, \"HISPANIC\": 229, \"MALES\": 5486, \"FEMALES\": 6401, \"AGE_UNDER5\": 967, \"AGE_5_17\": 2564, \"AGE_18_21\": 701, \"AGE_22_29\": 1118, \"AGE_30_39\": 1551, \"AGE_40_49\": 1504, \"AGE_50_64\": 1612, \"AGE_65_UP\": 1870, \"MED_AGE\": 34.100000, \"MED_AGE_M\": 32.000000, \"MED_AGE_F\": 36.000000, \"HOUSEHOLDS\": 4499, \"AVE_HH_SZ\": 2.600000, \"HSEHLD_1_M\": 526, \"HSEHLD_1_F\": 765, \"MARHH_CHD\": 780, \"MARHH_NO_C\": 1045, \"MHH_CHILD\": 102, \"FHH_CHILD\": 597, \"FAMILIES\": 3013, \"AVE_FAM_SZ\": 3.230000, \"HSE_UNITS\": 5125, \"VACANT\": 626, \"OWNER_OCC\": 2753, \"RENTER_OCC\": 1746 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -92.129056, 29.97248899999925 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Alexandria\", \"CLASS\": \"city\", \"ST\": \"LA\", \"STFIPS\": \"22\", \"PLACEFIP\": \"00975\", \"CAPITAL\": \"N\", \"AREALAND\": 26.411000, \"AREAWATER\": 0.578000, \"POP_CL\": 6, \"POP2000\": 46342, \"WHITE\": 19740, \"BLACK\": 25371, \"AMERI_ES\": 116, \"ASIAN\": 577, \"HAWN_PI\": 20, \"OTHER\": 107, \"MULT_RACE\": 411, \"HISPANIC\": 456, \"MALES\": 21085, \"FEMALES\": 25257, \"AGE_UNDER5\": 3394, \"AGE_5_17\": 9622, \"AGE_18_21\": 2559, \"AGE_22_29\": 4317, \"AGE_30_39\": 6174, \"AGE_40_49\": 6532, \"AGE_50_64\": 6761, \"AGE_65_UP\": 6983, \"MED_AGE\": 35.600000, \"MED_AGE_M\": 33.100000, \"MED_AGE_F\": 37.600000, \"HOUSEHOLDS\": 17816, \"AVE_HH_SZ\": 2.500000, \"HSEHLD_1_M\": 2072, \"HSEHLD_1_F\": 3349, \"MARHH_CHD\": 2882, \"MARHH_NO_C\": 3983, \"MHH_CHILD\": 321, \"FHH_CHILD\": 2473, \"FAMILIES\": 11727, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 19806, \"VACANT\": 1990, \"OWNER_OCC\": 10219, \"RENTER_OCC\": 7597 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -92.459153, 31.292782 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Baker\", \"CLASS\": \"city\", \"ST\": \"LA\", \"STFIPS\": \"22\", \"PLACEFIP\": \"03985\", \"CAPITAL\": \"N\", \"AREALAND\": 7.894000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 13793, \"WHITE\": 6341, \"BLACK\": 7222, \"AMERI_ES\": 39, \"ASIAN\": 31, \"HAWN_PI\": 1, \"OTHER\": 23, \"MULT_RACE\": 136, \"HISPANIC\": 119, \"MALES\": 6322, \"FEMALES\": 7471, \"AGE_UNDER5\": 1114, \"AGE_5_17\": 2992, \"AGE_18_21\": 855, \"AGE_22_29\": 1613, \"AGE_30_39\": 1939, \"AGE_40_49\": 1954, \"AGE_50_64\": 1952, \"AGE_65_UP\": 1374, \"MED_AGE\": 31.700000, \"MED_AGE_M\": 30.300000, \"MED_AGE_F\": 32.700000, \"HOUSEHOLDS\": 4971, \"AVE_HH_SZ\": 2.750000, \"HSEHLD_1_M\": 370, \"HSEHLD_1_F\": 654, \"MARHH_CHD\": 1177, \"MARHH_NO_C\": 1339, \"MHH_CHILD\": 119, \"FHH_CHILD\": 666, \"FAMILIES\": 3785, \"AVE_FAM_SZ\": 3.180000, \"HSE_UNITS\": 5389, \"VACANT\": 418, \"OWNER_OCC\": 3625, \"RENTER_OCC\": 1346 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -91.15709599999893, 30.585636999998059 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bastrop\", \"CLASS\": \"city\", \"ST\": \"LA\", \"STFIPS\": \"22\", \"PLACEFIP\": \"04685\", \"CAPITAL\": \"N\", \"AREALAND\": 8.412000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12988, \"WHITE\": 4503, \"BLACK\": 8377, \"AMERI_ES\": 17, \"ASIAN\": 20, \"HAWN_PI\": 0, \"OTHER\": 5, \"MULT_RACE\": 66, \"HISPANIC\": 90, \"MALES\": 5887, \"FEMALES\": 7101, \"AGE_UNDER5\": 1057, \"AGE_5_17\": 2846, \"AGE_18_21\": 830, \"AGE_22_29\": 1259, \"AGE_30_39\": 1675, \"AGE_40_49\": 1685, \"AGE_50_64\": 1629, \"AGE_65_UP\": 2007, \"MED_AGE\": 32.900000, \"MED_AGE_M\": 29.900000, \"MED_AGE_F\": 35.500000, \"HOUSEHOLDS\": 4723, \"AVE_HH_SZ\": 2.660000, \"HSEHLD_1_M\": 483, \"HSEHLD_1_F\": 802, \"MARHH_CHD\": 695, \"MARHH_NO_C\": 1053, \"MHH_CHILD\": 93, \"FHH_CHILD\": 775, \"FAMILIES\": 3302, \"AVE_FAM_SZ\": 3.250000, \"HSE_UNITS\": 5292, \"VACANT\": 569, \"OWNER_OCC\": 2823, \"RENTER_OCC\": 1900 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -91.914944, 32.777854999999029 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Baton Rouge\", \"CLASS\": \"city\", \"ST\": \"LA\", \"STFIPS\": \"22\", \"PLACEFIP\": \"05000\", \"CAPITAL\": \"Y\", \"AREALAND\": 76.844000, \"AREAWATER\": 2.218000, \"POP_CL\": 8, \"POP2000\": 227818, \"WHITE\": 104117, \"BLACK\": 113953, \"AMERI_ES\": 405, \"ASIAN\": 5972, \"HAWN_PI\": 76, \"OTHER\": 1113, \"MULT_RACE\": 2182, \"HISPANIC\": 3918, \"MALES\": 108255, \"FEMALES\": 119563, \"AGE_UNDER5\": 15502, \"AGE_5_17\": 40195, \"AGE_18_21\": 25446, \"AGE_22_29\": 31546, \"AGE_30_39\": 29645, \"AGE_40_49\": 29711, \"AGE_50_64\": 29711, \"AGE_65_UP\": 26062, \"MED_AGE\": 30.400000, \"MED_AGE_M\": 28.800000, \"MED_AGE_F\": 32.100000, \"HOUSEHOLDS\": 88973, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 12831, \"HSEHLD_1_F\": 15347, \"MARHH_CHD\": 13573, \"MARHH_NO_C\": 18317, \"MHH_CHILD\": 1625, \"FHH_CHILD\": 9846, \"FAMILIES\": 52661, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 97388, \"VACANT\": 8415, \"OWNER_OCC\": 46417, \"RENTER_OCC\": 42556 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -91.140228999998868, 30.458089999998016 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bayou Cane\", \"CLASS\": \"CDP\", \"ST\": \"LA\", \"STFIPS\": \"22\", \"PLACEFIP\": \"05210\", \"CAPITAL\": \"N\", \"AREALAND\": 7.639000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 17046, \"WHITE\": 14605, \"BLACK\": 1673, \"AMERI_ES\": 332, \"ASIAN\": 119, \"HAWN_PI\": 4, \"OTHER\": 83, \"MULT_RACE\": 230, \"HISPANIC\": 400, \"MALES\": 8208, \"FEMALES\": 8838, \"AGE_UNDER5\": 1236, \"AGE_5_17\": 3347, \"AGE_18_21\": 976, \"AGE_22_29\": 2025, \"AGE_30_39\": 2804, \"AGE_40_49\": 2411, \"AGE_50_64\": 2387, \"AGE_65_UP\": 1860, \"MED_AGE\": 33.600000, \"MED_AGE_M\": 32.700000, \"MED_AGE_F\": 34.300000, \"HOUSEHOLDS\": 6222, \"AVE_HH_SZ\": 2.680000, \"HSEHLD_1_M\": 637, \"HSEHLD_1_F\": 699, \"MARHH_CHD\": 1653, \"MARHH_NO_C\": 1798, \"MHH_CHILD\": 161, \"FHH_CHILD\": 499, \"FAMILIES\": 4533, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 6609, \"VACANT\": 387, \"OWNER_OCC\": 4102, \"RENTER_OCC\": 2120 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.748395999996049, 29.626284999995775 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bogalusa\", \"CLASS\": \"city\", \"ST\": \"LA\", \"STFIPS\": \"22\", \"PLACEFIP\": \"08150\", \"CAPITAL\": \"N\", \"AREALAND\": 9.495000, \"AREAWATER\": 0.050000, \"POP_CL\": 6, \"POP2000\": 13365, \"WHITE\": 7642, \"BLACK\": 5508, \"AMERI_ES\": 43, \"ASIAN\": 52, \"HAWN_PI\": 0, \"OTHER\": 22, \"MULT_RACE\": 98, \"HISPANIC\": 100, \"MALES\": 6049, \"FEMALES\": 7316, \"AGE_UNDER5\": 1094, \"AGE_5_17\": 2564, \"AGE_18_21\": 716, \"AGE_22_29\": 1293, \"AGE_30_39\": 1482, \"AGE_40_49\": 1860, \"AGE_50_64\": 1920, \"AGE_65_UP\": 2436, \"MED_AGE\": 37.100000, \"MED_AGE_M\": 33.900000, \"MED_AGE_F\": 39.600000, \"HOUSEHOLDS\": 5431, \"AVE_HH_SZ\": 2.410000, \"HSEHLD_1_M\": 647, \"HSEHLD_1_F\": 1127, \"MARHH_CHD\": 755, \"MARHH_NO_C\": 1204, \"MHH_CHILD\": 110, \"FHH_CHILD\": 724, \"FAMILIES\": 3496, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 6300, \"VACANT\": 869, \"OWNER_OCC\": 3440, \"RENTER_OCC\": 1991 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.863760999968676, 30.780435999969786 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bossier City\", \"CLASS\": \"city\", \"ST\": \"LA\", \"STFIPS\": \"22\", \"PLACEFIP\": \"08920\", \"CAPITAL\": \"N\", \"AREALAND\": 40.837000, \"AREAWATER\": 0.787000, \"POP_CL\": 7, \"POP2000\": 56461, \"WHITE\": 40335, \"BLACK\": 12840, \"AMERI_ES\": 322, \"ASIAN\": 976, \"HAWN_PI\": 60, \"OTHER\": 813, \"MULT_RACE\": 1115, \"HISPANIC\": 2232, \"MALES\": 27426, \"FEMALES\": 29035, \"AGE_UNDER5\": 4544, \"AGE_5_17\": 11389, \"AGE_18_21\": 3599, \"AGE_22_29\": 6944, \"AGE_30_39\": 8523, \"AGE_40_49\": 7871, \"AGE_50_64\": 7402, \"AGE_65_UP\": 6189, \"MED_AGE\": 32.100000, \"MED_AGE_M\": 30.200000, \"MED_AGE_F\": 33.900000, \"HOUSEHOLDS\": 21197, \"AVE_HH_SZ\": 2.580000, \"HSEHLD_1_M\": 2257, \"HSEHLD_1_F\": 2981, \"MARHH_CHD\": 5070, \"MARHH_NO_C\": 5606, \"MHH_CHILD\": 479, \"FHH_CHILD\": 2253, \"FAMILIES\": 14894, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 23026, \"VACANT\": 1829, \"OWNER_OCC\": 12714, \"RENTER_OCC\": 8483 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.691397, 32.51765099999912 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Chalmette\", \"CLASS\": \"CDP\", \"ST\": \"LA\", \"STFIPS\": \"22\", \"PLACEFIP\": \"14135\", \"CAPITAL\": \"N\", \"AREALAND\": 7.339000, \"AREAWATER\": 0.603000, \"POP_CL\": 6, \"POP2000\": 32069, \"WHITE\": 29725, \"BLACK\": 765, \"AMERI_ES\": 140, \"ASIAN\": 578, \"HAWN_PI\": 10, \"OTHER\": 304, \"MULT_RACE\": 547, \"HISPANIC\": 1543, \"MALES\": 15593, \"FEMALES\": 16476, \"AGE_UNDER5\": 1968, \"AGE_5_17\": 5637, \"AGE_18_21\": 1836, \"AGE_22_29\": 3413, \"AGE_30_39\": 4464, \"AGE_40_49\": 4936, \"AGE_50_64\": 5226, \"AGE_65_UP\": 4589, \"MED_AGE\": 37.300000, \"MED_AGE_M\": 35.600000, \"MED_AGE_F\": 39.000000, \"HOUSEHOLDS\": 12321, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 1203, \"HSEHLD_1_F\": 1721, \"MARHH_CHD\": 2752, \"MARHH_NO_C\": 3697, \"MHH_CHILD\": 272, \"FHH_CHILD\": 889, \"FAMILIES\": 8824, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 12896, \"VACANT\": 575, \"OWNER_OCC\": 8463, \"RENTER_OCC\": 3858 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.961601999973723, 29.945503999977124 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Crowley\", \"CLASS\": \"city\", \"ST\": \"LA\", \"STFIPS\": \"22\", \"PLACEFIP\": \"18650\", \"CAPITAL\": \"N\", \"AREALAND\": 4.914000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14225, \"WHITE\": 9649, \"BLACK\": 4407, \"AMERI_ES\": 22, \"ASIAN\": 41, \"HAWN_PI\": 1, \"OTHER\": 33, \"MULT_RACE\": 72, \"HISPANIC\": 157, \"MALES\": 6717, \"FEMALES\": 7508, \"AGE_UNDER5\": 1154, \"AGE_5_17\": 2901, \"AGE_18_21\": 849, \"AGE_22_29\": 1351, \"AGE_30_39\": 1877, \"AGE_40_49\": 1910, \"AGE_50_64\": 1968, \"AGE_65_UP\": 2215, \"MED_AGE\": 34.900000, \"MED_AGE_M\": 32.100000, \"MED_AGE_F\": 37.200000, \"HOUSEHOLDS\": 5294, \"AVE_HH_SZ\": 2.590000, \"HSEHLD_1_M\": 539, \"HSEHLD_1_F\": 864, \"MARHH_CHD\": 1022, \"MARHH_NO_C\": 1277, \"MHH_CHILD\": 142, \"FHH_CHILD\": 655, \"FAMILIES\": 3668, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 5904, \"VACANT\": 610, \"OWNER_OCC\": 3125, \"RENTER_OCC\": 2169 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -92.373695, 30.213617999999258 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Destrehan\", \"CLASS\": \"CDP\", \"ST\": \"LA\", \"STFIPS\": \"22\", \"PLACEFIP\": \"20820\", \"CAPITAL\": \"N\", \"AREALAND\": 6.914000, \"AREAWATER\": 0.983000, \"POP_CL\": 6, \"POP2000\": 11260, \"WHITE\": 9531, \"BLACK\": 1439, \"AMERI_ES\": 13, \"ASIAN\": 117, \"HAWN_PI\": 0, \"OTHER\": 64, \"MULT_RACE\": 96, \"HISPANIC\": 429, \"MALES\": 5527, \"FEMALES\": 5733, \"AGE_UNDER5\": 828, \"AGE_5_17\": 2817, \"AGE_18_21\": 473, \"AGE_22_29\": 786, \"AGE_30_39\": 1874, \"AGE_40_49\": 2277, \"AGE_50_64\": 1459, \"AGE_65_UP\": 746, \"MED_AGE\": 34.800000, \"MED_AGE_M\": 34.400000, \"MED_AGE_F\": 35.200000, \"HOUSEHOLDS\": 3629, \"AVE_HH_SZ\": 3.050000, \"HSEHLD_1_M\": 220, \"HSEHLD_1_F\": 225, \"MARHH_CHD\": 1554, \"MARHH_NO_C\": 1054, \"MHH_CHILD\": 85, \"FHH_CHILD\": 250, \"FAMILIES\": 3074, \"AVE_FAM_SZ\": 3.340000, \"HSE_UNITS\": 3742, \"VACANT\": 113, \"OWNER_OCC\": 3132, \"RENTER_OCC\": 497 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.369159999989535, 29.962306999989956 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Estelle\", \"CLASS\": \"CDP\", \"ST\": \"LA\", \"STFIPS\": \"22\", \"PLACEFIP\": \"24390\", \"CAPITAL\": \"N\", \"AREALAND\": 5.055000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 15880, \"WHITE\": 11963, \"BLACK\": 2666, \"AMERI_ES\": 131, \"ASIAN\": 526, \"HAWN_PI\": 7, \"OTHER\": 301, \"MULT_RACE\": 286, \"HISPANIC\": 1143, \"MALES\": 7782, \"FEMALES\": 8098, \"AGE_UNDER5\": 1211, \"AGE_5_17\": 3692, \"AGE_18_21\": 957, \"AGE_22_29\": 1666, \"AGE_30_39\": 2635, \"AGE_40_49\": 2788, \"AGE_50_64\": 2144, \"AGE_65_UP\": 787, \"MED_AGE\": 31.700000, \"MED_AGE_M\": 31.300000, \"MED_AGE_F\": 32.100000, \"HOUSEHOLDS\": 5012, \"AVE_HH_SZ\": 3.170000, \"HSEHLD_1_M\": 236, \"HSEHLD_1_F\": 270, \"MARHH_CHD\": 1886, \"MARHH_NO_C\": 1543, \"MHH_CHILD\": 154, \"FHH_CHILD\": 382, \"FAMILIES\": 4361, \"AVE_FAM_SZ\": 3.370000, \"HSE_UNITS\": 5124, \"VACANT\": 112, \"OWNER_OCC\": 4535, \"RENTER_OCC\": 477 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.108116999980766, 29.847526999983021 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Eunice\", \"CLASS\": \"city\", \"ST\": \"LA\", \"STFIPS\": \"22\", \"PLACEFIP\": \"24565\", \"CAPITAL\": \"N\", \"AREALAND\": 4.675000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11499, \"WHITE\": 7907, \"BLACK\": 3439, \"AMERI_ES\": 13, \"ASIAN\": 24, \"HAWN_PI\": 2, \"OTHER\": 39, \"MULT_RACE\": 75, \"HISPANIC\": 128, \"MALES\": 5414, \"FEMALES\": 6085, \"AGE_UNDER5\": 936, \"AGE_5_17\": 2464, \"AGE_18_21\": 746, \"AGE_22_29\": 1042, \"AGE_30_39\": 1342, \"AGE_40_49\": 1516, \"AGE_50_64\": 1671, \"AGE_65_UP\": 1782, \"MED_AGE\": 34.600000, \"MED_AGE_M\": 31.700000, \"MED_AGE_F\": 37.200000, \"HOUSEHOLDS\": 4316, \"AVE_HH_SZ\": 2.590000, \"HSEHLD_1_M\": 438, \"HSEHLD_1_F\": 746, \"MARHH_CHD\": 913, \"MARHH_NO_C\": 1117, \"MHH_CHILD\": 103, \"FHH_CHILD\": 485, \"FAMILIES\": 2985, \"AVE_FAM_SZ\": 3.180000, \"HSE_UNITS\": 4675, \"VACANT\": 359, \"OWNER_OCC\": 2667, \"RENTER_OCC\": 1649 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -92.416927, 30.493594999999246 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fort Polk South\", \"CLASS\": \"CDP\", \"ST\": \"LA\", \"STFIPS\": \"22\", \"PLACEFIP\": \"26757\", \"CAPITAL\": \"N\", \"AREALAND\": 6.159000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11000, \"WHITE\": 6470, \"BLACK\": 3045, \"AMERI_ES\": 101, \"ASIAN\": 236, \"HAWN_PI\": 58, \"OTHER\": 584, \"MULT_RACE\": 506, \"HISPANIC\": 1290, \"MALES\": 6641, \"FEMALES\": 4359, \"AGE_UNDER5\": 1319, \"AGE_5_17\": 2309, \"AGE_18_21\": 1897, \"AGE_22_29\": 2700, \"AGE_30_39\": 2182, \"AGE_40_49\": 523, \"AGE_50_64\": 58, \"AGE_65_UP\": 12, \"MED_AGE\": 22.000000, \"MED_AGE_M\": 22.100000, \"MED_AGE_F\": 21.600000, \"HOUSEHOLDS\": 2383, \"AVE_HH_SZ\": 3.450000, \"HSEHLD_1_M\": 148, \"HSEHLD_1_F\": 49, \"MARHH_CHD\": 1546, \"MARHH_NO_C\": 427, \"MHH_CHILD\": 55, \"FHH_CHILD\": 134, \"FAMILIES\": 2175, \"AVE_FAM_SZ\": 3.630000, \"HSE_UNITS\": 2864, \"VACANT\": 481, \"OWNER_OCC\": 82, \"RENTER_OCC\": 2301 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.211213, 31.047002999999208 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Gretna\", \"CLASS\": \"city\", \"ST\": \"LA\", \"STFIPS\": \"22\", \"PLACEFIP\": \"31915\", \"CAPITAL\": \"N\", \"AREALAND\": 3.496000, \"AREAWATER\": 0.364000, \"POP_CL\": 6, \"POP2000\": 17423, \"WHITE\": 9813, \"BLACK\": 6191, \"AMERI_ES\": 105, \"ASIAN\": 543, \"HAWN_PI\": 8, \"OTHER\": 458, \"MULT_RACE\": 305, \"HISPANIC\": 1105, \"MALES\": 8717, \"FEMALES\": 8706, \"AGE_UNDER5\": 1224, \"AGE_5_17\": 2931, \"AGE_18_21\": 990, \"AGE_22_29\": 2132, \"AGE_30_39\": 2655, \"AGE_40_49\": 2544, \"AGE_50_64\": 2511, \"AGE_65_UP\": 2436, \"MED_AGE\": 35.600000, \"MED_AGE_M\": 34.100000, \"MED_AGE_F\": 37.000000, \"HOUSEHOLDS\": 6958, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 1120, \"HSEHLD_1_F\": 1155, \"MARHH_CHD\": 990, \"MARHH_NO_C\": 1497, \"MHH_CHILD\": 192, \"FHH_CHILD\": 748, \"FAMILIES\": 4286, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 7665, \"VACANT\": 707, \"OWNER_OCC\": 3504, \"RENTER_OCC\": 3454 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.054259999978413, 29.916458999980964 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hammond\", \"CLASS\": \"city\", \"ST\": \"LA\", \"STFIPS\": \"22\", \"PLACEFIP\": \"32755\", \"CAPITAL\": \"N\", \"AREALAND\": 12.750000, \"AREAWATER\": 0.011000, \"POP_CL\": 6, \"POP2000\": 17639, \"WHITE\": 9248, \"BLACK\": 7972, \"AMERI_ES\": 28, \"ASIAN\": 146, \"HAWN_PI\": 3, \"OTHER\": 82, \"MULT_RACE\": 160, \"HISPANIC\": 277, \"MALES\": 8009, \"FEMALES\": 9630, \"AGE_UNDER5\": 1132, \"AGE_5_17\": 3090, \"AGE_18_21\": 2763, \"AGE_22_29\": 2558, \"AGE_30_39\": 1914, \"AGE_40_49\": 1973, \"AGE_50_64\": 2064, \"AGE_65_UP\": 2145, \"MED_AGE\": 26.900000, \"MED_AGE_M\": 25.800000, \"MED_AGE_F\": 28.100000, \"HOUSEHOLDS\": 6251, \"AVE_HH_SZ\": 2.510000, \"HSEHLD_1_M\": 792, \"HSEHLD_1_F\": 1000, \"MARHH_CHD\": 944, \"MARHH_NO_C\": 1240, \"MHH_CHILD\": 125, \"FHH_CHILD\": 771, \"FAMILIES\": 3707, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 7014, \"VACANT\": 763, \"OWNER_OCC\": 3264, \"RENTER_OCC\": 2987 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.465615999991911, 30.504445999991326 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Harvey\", \"CLASS\": \"CDP\", \"ST\": \"LA\", \"STFIPS\": \"22\", \"PLACEFIP\": \"33245\", \"CAPITAL\": \"N\", \"AREALAND\": 6.675000, \"AREAWATER\": 0.363000, \"POP_CL\": 6, \"POP2000\": 22226, \"WHITE\": 10696, \"BLACK\": 9434, \"AMERI_ES\": 113, \"ASIAN\": 1164, \"HAWN_PI\": 5, \"OTHER\": 453, \"MULT_RACE\": 361, \"HISPANIC\": 1186, \"MALES\": 10623, \"FEMALES\": 11603, \"AGE_UNDER5\": 1874, \"AGE_5_17\": 4668, \"AGE_18_21\": 1310, \"AGE_22_29\": 2667, \"AGE_30_39\": 3303, \"AGE_40_49\": 3279, \"AGE_50_64\": 3272, \"AGE_65_UP\": 1853, \"MED_AGE\": 31.900000, \"MED_AGE_M\": 31.000000, \"MED_AGE_F\": 32.900000, \"HOUSEHOLDS\": 7878, \"AVE_HH_SZ\": 2.790000, \"HSEHLD_1_M\": 819, \"HSEHLD_1_F\": 886, \"MARHH_CHD\": 1743, \"MARHH_NO_C\": 1944, \"MHH_CHILD\": 215, \"FHH_CHILD\": 1079, \"FAMILIES\": 5807, \"AVE_FAM_SZ\": 3.250000, \"HSE_UNITS\": 8601, \"VACANT\": 723, \"OWNER_OCC\": 4601, \"RENTER_OCC\": 3277 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.069268999979087, 29.891072999981564 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Houma\", \"CLASS\": \"city\", \"ST\": \"LA\", \"STFIPS\": \"22\", \"PLACEFIP\": \"36255\", \"CAPITAL\": \"N\", \"AREALAND\": 14.032000, \"AREAWATER\": 0.132000, \"POP_CL\": 6, \"POP2000\": 32393, \"WHITE\": 21851, \"BLACK\": 8461, \"AMERI_ES\": 1116, \"ASIAN\": 230, \"HAWN_PI\": 6, \"OTHER\": 221, \"MULT_RACE\": 508, \"HISPANIC\": 571, \"MALES\": 15768, \"FEMALES\": 16625, \"AGE_UNDER5\": 2397, \"AGE_5_17\": 6632, \"AGE_18_21\": 2002, \"AGE_22_29\": 3213, \"AGE_30_39\": 4856, \"AGE_40_49\": 4815, \"AGE_50_64\": 4511, \"AGE_65_UP\": 3967, \"MED_AGE\": 34.300000, \"MED_AGE_M\": 33.100000, \"MED_AGE_F\": 35.500000, \"HOUSEHOLDS\": 11634, \"AVE_HH_SZ\": 2.720000, \"HSEHLD_1_M\": 1200, \"HSEHLD_1_F\": 1598, \"MARHH_CHD\": 2716, \"MARHH_NO_C\": 3038, \"MHH_CHILD\": 305, \"FHH_CHILD\": 1099, \"FAMILIES\": 8279, \"AVE_FAM_SZ\": 3.240000, \"HSE_UNITS\": 12514, \"VACANT\": 880, \"OWNER_OCC\": 7871, \"RENTER_OCC\": 3763 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.7161079999957, 29.587613999995469 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Jefferson\", \"CLASS\": \"CDP\", \"ST\": \"LA\", \"STFIPS\": \"22\", \"PLACEFIP\": \"38145\", \"CAPITAL\": \"N\", \"AREALAND\": 2.758000, \"AREAWATER\": 0.529000, \"POP_CL\": 6, \"POP2000\": 11843, \"WHITE\": 8509, \"BLACK\": 2779, \"AMERI_ES\": 31, \"ASIAN\": 178, \"HAWN_PI\": 3, \"OTHER\": 196, \"MULT_RACE\": 147, \"HISPANIC\": 601, \"MALES\": 5679, \"FEMALES\": 6164, \"AGE_UNDER5\": 658, \"AGE_5_17\": 1572, \"AGE_18_21\": 518, \"AGE_22_29\": 1325, \"AGE_30_39\": 1977, \"AGE_40_49\": 1969, \"AGE_50_64\": 1778, \"AGE_65_UP\": 2046, \"MED_AGE\": 39.300000, \"MED_AGE_M\": 38.000000, \"MED_AGE_F\": 40.800000, \"HOUSEHOLDS\": 5400, \"AVE_HH_SZ\": 2.110000, \"HSEHLD_1_M\": 1008, \"HSEHLD_1_F\": 1110, \"MARHH_CHD\": 662, \"MARHH_NO_C\": 1107, \"MHH_CHILD\": 131, \"FHH_CHILD\": 396, \"FAMILIES\": 2879, \"AVE_FAM_SZ\": 2.830000, \"HSE_UNITS\": 5816, \"VACANT\": 416, \"OWNER_OCC\": 3020, \"RENTER_OCC\": 2380 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.157169999982827, 29.964131999984417 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Jennings\", \"CLASS\": \"city\", \"ST\": \"LA\", \"STFIPS\": \"22\", \"PLACEFIP\": \"38355\", \"CAPITAL\": \"N\", \"AREALAND\": 10.242000, \"AREAWATER\": 0.018000, \"POP_CL\": 6, \"POP2000\": 10986, \"WHITE\": 7736, \"BLACK\": 3076, \"AMERI_ES\": 41, \"ASIAN\": 32, \"HAWN_PI\": 0, \"OTHER\": 24, \"MULT_RACE\": 77, \"HISPANIC\": 101, \"MALES\": 5111, \"FEMALES\": 5875, \"AGE_UNDER5\": 879, \"AGE_5_17\": 2287, \"AGE_18_21\": 659, \"AGE_22_29\": 1041, \"AGE_30_39\": 1373, \"AGE_40_49\": 1472, \"AGE_50_64\": 1549, \"AGE_65_UP\": 1726, \"MED_AGE\": 34.900000, \"MED_AGE_M\": 32.300000, \"MED_AGE_F\": 37.000000, \"HOUSEHOLDS\": 4090, \"AVE_HH_SZ\": 2.610000, \"HSEHLD_1_M\": 366, \"HSEHLD_1_F\": 709, \"MARHH_CHD\": 866, \"MARHH_NO_C\": 1103, \"MHH_CHILD\": 87, \"FHH_CHILD\": 471, \"FAMILIES\": 2875, \"AVE_FAM_SZ\": 3.160000, \"HSE_UNITS\": 4541, \"VACANT\": 451, \"OWNER_OCC\": 2615, \"RENTER_OCC\": 1475 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -92.65688, 30.222206999999251 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Kenner\", \"CLASS\": \"city\", \"ST\": \"LA\", \"STFIPS\": \"22\", \"PLACEFIP\": \"39475\", \"CAPITAL\": \"N\", \"AREALAND\": 15.136000, \"AREAWATER\": 0.097000, \"POP_CL\": 7, \"POP2000\": 70517, \"WHITE\": 48038, \"BLACK\": 15900, \"AMERI_ES\": 279, \"ASIAN\": 2002, \"HAWN_PI\": 41, \"OTHER\": 2679, \"MULT_RACE\": 1578, \"HISPANIC\": 9602, \"MALES\": 33876, \"FEMALES\": 36641, \"AGE_UNDER5\": 4910, \"AGE_5_17\": 14307, \"AGE_18_21\": 3782, \"AGE_22_29\": 7809, \"AGE_30_39\": 10743, \"AGE_40_49\": 11322, \"AGE_50_64\": 11334, \"AGE_65_UP\": 6310, \"MED_AGE\": 34.500000, \"MED_AGE_M\": 33.100000, \"MED_AGE_F\": 35.600000, \"HOUSEHOLDS\": 25652, \"AVE_HH_SZ\": 2.720000, \"HSEHLD_1_M\": 2733, \"HSEHLD_1_F\": 3212, \"MARHH_CHD\": 6332, \"MARHH_NO_C\": 6727, \"MHH_CHILD\": 598, \"FHH_CHILD\": 2391, \"FAMILIES\": 18467, \"AVE_FAM_SZ\": 3.230000, \"HSE_UNITS\": 27378, \"VACANT\": 1726, \"OWNER_OCC\": 15587, \"RENTER_OCC\": 10065 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.25058499998616, 30.009609999987056 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lafayette\", \"CLASS\": \"city\", \"ST\": \"LA\", \"STFIPS\": \"22\", \"PLACEFIP\": \"40735\", \"CAPITAL\": \"N\", \"AREALAND\": 47.593000, \"AREAWATER\": 0.092000, \"POP_CL\": 8, \"POP2000\": 110257, \"WHITE\": 75232, \"BLACK\": 31434, \"AMERI_ES\": 272, \"ASIAN\": 1584, \"HAWN_PI\": 26, \"OTHER\": 641, \"MULT_RACE\": 1068, \"HISPANIC\": 2071, \"MALES\": 53158, \"FEMALES\": 57099, \"AGE_UNDER5\": 7086, \"AGE_5_17\": 20554, \"AGE_18_21\": 8800, \"AGE_22_29\": 14091, \"AGE_30_39\": 15358, \"AGE_40_49\": 16945, \"AGE_50_64\": 15054, \"AGE_65_UP\": 12369, \"MED_AGE\": 33.100000, \"MED_AGE_M\": 31.400000, \"MED_AGE_F\": 34.800000, \"HOUSEHOLDS\": 43506, \"AVE_HH_SZ\": 2.430000, \"HSEHLD_1_M\": 5645, \"HSEHLD_1_F\": 7160, \"MARHH_CHD\": 8792, \"MARHH_NO_C\": 10303, \"MHH_CHILD\": 849, \"FHH_CHILD\": 3963, \"FAMILIES\": 27116, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 46865, \"VACANT\": 3359, \"OWNER_OCC\": 25350, \"RENTER_OCC\": 18156 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -92.029363, 30.213900999999233 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lake Charles\", \"CLASS\": \"city\", \"ST\": \"LA\", \"STFIPS\": \"22\", \"PLACEFIP\": \"41155\", \"CAPITAL\": \"N\", \"AREALAND\": 40.165000, \"AREAWATER\": 2.368000, \"POP_CL\": 7, \"POP2000\": 71757, \"WHITE\": 36042, \"BLACK\": 33599, \"AMERI_ES\": 167, \"ASIAN\": 770, \"HAWN_PI\": 18, \"OTHER\": 338, \"MULT_RACE\": 823, \"HISPANIC\": 1007, \"MALES\": 34177, \"FEMALES\": 37580, \"AGE_UNDER5\": 4978, \"AGE_5_17\": 13330, \"AGE_18_21\": 5005, \"AGE_22_29\": 7954, \"AGE_30_39\": 9304, \"AGE_40_49\": 10283, \"AGE_50_64\": 10386, \"AGE_65_UP\": 10517, \"MED_AGE\": 35.300000, \"MED_AGE_M\": 33.200000, \"MED_AGE_F\": 37.100000, \"HOUSEHOLDS\": 27974, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 3517, \"HSEHLD_1_F\": 4877, \"MARHH_CHD\": 4777, \"MARHH_NO_C\": 6868, \"MHH_CHILD\": 541, \"FHH_CHILD\": 3201, \"FAMILIES\": 18027, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 31429, \"VACANT\": 3455, \"OWNER_OCC\": 16122, \"RENTER_OCC\": 11852 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.208537, 30.214655999999259 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Laplace\", \"CLASS\": \"CDP\", \"ST\": \"LA\", \"STFIPS\": \"22\", \"PLACEFIP\": \"42030\", \"CAPITAL\": \"N\", \"AREALAND\": 21.496000, \"AREAWATER\": 1.204000, \"POP_CL\": 6, \"POP2000\": 27684, \"WHITE\": 16904, \"BLACK\": 9860, \"AMERI_ES\": 90, \"ASIAN\": 195, \"HAWN_PI\": 6, \"OTHER\": 306, \"MULT_RACE\": 323, \"HISPANIC\": 1021, \"MALES\": 13604, \"FEMALES\": 14080, \"AGE_UNDER5\": 2262, \"AGE_5_17\": 6374, \"AGE_18_21\": 1613, \"AGE_22_29\": 2796, \"AGE_30_39\": 4528, \"AGE_40_49\": 4627, \"AGE_50_64\": 3695, \"AGE_65_UP\": 1789, \"MED_AGE\": 31.900000, \"MED_AGE_M\": 31.200000, \"MED_AGE_F\": 32.600000, \"HOUSEHOLDS\": 9171, \"AVE_HH_SZ\": 2.970000, \"HSEHLD_1_M\": 727, \"HSEHLD_1_F\": 777, \"MARHH_CHD\": 2982, \"MARHH_NO_C\": 2560, \"MHH_CHILD\": 255, \"FHH_CHILD\": 885, \"FAMILIES\": 7336, \"AVE_FAM_SZ\": 3.340000, \"HSE_UNITS\": 9888, \"VACANT\": 717, \"OWNER_OCC\": 7458, \"RENTER_OCC\": 1713 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.484895999992176, 30.07502499999207 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Luling\", \"CLASS\": \"CDP\", \"ST\": \"LA\", \"STFIPS\": \"22\", \"PLACEFIP\": \"46615\", \"CAPITAL\": \"N\", \"AREALAND\": 18.487000, \"AREAWATER\": 1.057000, \"POP_CL\": 6, \"POP2000\": 11512, \"WHITE\": 9437, \"BLACK\": 1784, \"AMERI_ES\": 30, \"ASIAN\": 85, \"HAWN_PI\": 3, \"OTHER\": 73, \"MULT_RACE\": 100, \"HISPANIC\": 310, \"MALES\": 5578, \"FEMALES\": 5934, \"AGE_UNDER5\": 824, \"AGE_5_17\": 2618, \"AGE_18_21\": 616, \"AGE_22_29\": 984, \"AGE_30_39\": 1803, \"AGE_40_49\": 2064, \"AGE_50_64\": 1544, \"AGE_65_UP\": 1059, \"MED_AGE\": 34.600000, \"MED_AGE_M\": 34.600000, \"MED_AGE_F\": 34.600000, \"HOUSEHOLDS\": 3899, \"AVE_HH_SZ\": 2.920000, \"HSEHLD_1_M\": 280, \"HSEHLD_1_F\": 272, \"MARHH_CHD\": 1364, \"MARHH_NO_C\": 1231, \"MHH_CHILD\": 95, \"FHH_CHILD\": 288, \"FAMILIES\": 3223, \"AVE_FAM_SZ\": 3.230000, \"HSE_UNITS\": 4101, \"VACANT\": 202, \"OWNER_OCC\": 3283, \"RENTER_OCC\": 616 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.364007999989369, 29.91325999998989 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mandeville\", \"CLASS\": \"city\", \"ST\": \"LA\", \"STFIPS\": \"22\", \"PLACEFIP\": \"48225\", \"CAPITAL\": \"N\", \"AREALAND\": 6.797000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10489, \"WHITE\": 9666, \"BLACK\": 502, \"AMERI_ES\": 33, \"ASIAN\": 122, \"HAWN_PI\": 6, \"OTHER\": 62, \"MULT_RACE\": 98, \"HISPANIC\": 255, \"MALES\": 4945, \"FEMALES\": 5544, \"AGE_UNDER5\": 645, \"AGE_5_17\": 2223, \"AGE_18_21\": 461, \"AGE_22_29\": 852, \"AGE_30_39\": 1451, \"AGE_40_49\": 2003, \"AGE_50_64\": 1603, \"AGE_65_UP\": 1251, \"MED_AGE\": 37.700000, \"MED_AGE_M\": 36.200000, \"MED_AGE_F\": 38.900000, \"HOUSEHOLDS\": 4204, \"AVE_HH_SZ\": 2.460000, \"HSEHLD_1_M\": 484, \"HSEHLD_1_F\": 769, \"MARHH_CHD\": 1122, \"MARHH_NO_C\": 1005, \"MHH_CHILD\": 88, \"FHH_CHILD\": 286, \"FAMILIES\": 2723, \"AVE_FAM_SZ\": 3.110000, \"HSE_UNITS\": 4669, \"VACANT\": 465, \"OWNER_OCC\": 2536, \"RENTER_OCC\": 1668 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.078005999979794, 30.369281999980885 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Marrero\", \"CLASS\": \"CDP\", \"ST\": \"LA\", \"STFIPS\": \"22\", \"PLACEFIP\": \"48785\", \"CAPITAL\": \"N\", \"AREALAND\": 8.049000, \"AREAWATER\": 0.515000, \"POP_CL\": 6, \"POP2000\": 36165, \"WHITE\": 17171, \"BLACK\": 17246, \"AMERI_ES\": 141, \"ASIAN\": 890, \"HAWN_PI\": 18, \"OTHER\": 258, \"MULT_RACE\": 441, \"HISPANIC\": 1127, \"MALES\": 16831, \"FEMALES\": 19334, \"AGE_UNDER5\": 2634, \"AGE_5_17\": 7868, \"AGE_18_21\": 2014, \"AGE_22_29\": 3632, \"AGE_30_39\": 4992, \"AGE_40_49\": 5300, \"AGE_50_64\": 5489, \"AGE_65_UP\": 4236, \"MED_AGE\": 34.300000, \"MED_AGE_M\": 32.600000, \"MED_AGE_F\": 35.600000, \"HOUSEHOLDS\": 12432, \"AVE_HH_SZ\": 2.860000, \"HSEHLD_1_M\": 1099, \"HSEHLD_1_F\": 1547, \"MARHH_CHD\": 2459, \"MARHH_NO_C\": 3306, \"MHH_CHILD\": 308, \"FHH_CHILD\": 1627, \"FAMILIES\": 9341, \"AVE_FAM_SZ\": 3.330000, \"HSE_UNITS\": 13046, \"VACANT\": 614, \"OWNER_OCC\": 8697, \"RENTER_OCC\": 3735 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.109929999980878, 29.88601699998301 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Meraux\", \"CLASS\": \"CDP\", \"ST\": \"LA\", \"STFIPS\": \"22\", \"PLACEFIP\": \"49800\", \"CAPITAL\": \"N\", \"AREALAND\": 4.164000, \"AREAWATER\": 0.622000, \"POP_CL\": 6, \"POP2000\": 10192, \"WHITE\": 9449, \"BLACK\": 373, \"AMERI_ES\": 48, \"ASIAN\": 166, \"HAWN_PI\": 0, \"OTHER\": 34, \"MULT_RACE\": 122, \"HISPANIC\": 415, \"MALES\": 4860, \"FEMALES\": 5332, \"AGE_UNDER5\": 703, \"AGE_5_17\": 2090, \"AGE_18_21\": 544, \"AGE_22_29\": 967, \"AGE_30_39\": 1673, \"AGE_40_49\": 1717, \"AGE_50_64\": 1509, \"AGE_65_UP\": 989, \"MED_AGE\": 34.900000, \"MED_AGE_M\": 34.000000, \"MED_AGE_F\": 36.000000, \"HOUSEHOLDS\": 3707, \"AVE_HH_SZ\": 2.750000, \"HSEHLD_1_M\": 297, \"HSEHLD_1_F\": 511, \"MARHH_CHD\": 1146, \"MARHH_NO_C\": 1063, \"MHH_CHILD\": 62, \"FHH_CHILD\": 229, \"FAMILIES\": 2773, \"AVE_FAM_SZ\": 3.230000, \"HSE_UNITS\": 3793, \"VACANT\": 86, \"OWNER_OCC\": 2987, \"RENTER_OCC\": 720 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.918507999971226, 29.927560999975213 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Merrydale\", \"CLASS\": \"CDP\", \"ST\": \"LA\", \"STFIPS\": \"22\", \"PLACEFIP\": \"49940\", \"CAPITAL\": \"N\", \"AREALAND\": 4.264000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10427, \"WHITE\": 907, \"BLACK\": 9403, \"AMERI_ES\": 9, \"ASIAN\": 18, \"HAWN_PI\": 0, \"OTHER\": 21, \"MULT_RACE\": 69, \"HISPANIC\": 94, \"MALES\": 4859, \"FEMALES\": 5568, \"AGE_UNDER5\": 869, \"AGE_5_17\": 2734, \"AGE_18_21\": 716, \"AGE_22_29\": 1014, \"AGE_30_39\": 1364, \"AGE_40_49\": 1764, \"AGE_50_64\": 1255, \"AGE_65_UP\": 711, \"MED_AGE\": 29.100000, \"MED_AGE_M\": 25.500000, \"MED_AGE_F\": 31.700000, \"HOUSEHOLDS\": 3284, \"AVE_HH_SZ\": 3.150000, \"HSEHLD_1_M\": 224, \"HSEHLD_1_F\": 316, \"MARHH_CHD\": 839, \"MARHH_NO_C\": 670, \"MHH_CHILD\": 84, \"FHH_CHILD\": 631, \"FAMILIES\": 2667, \"AVE_FAM_SZ\": 3.520000, \"HSE_UNITS\": 3483, \"VACANT\": 199, \"OWNER_OCC\": 2497, \"RENTER_OCC\": 787 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -91.116194999998783, 30.504288999997911 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Metairie\", \"CLASS\": \"CDP\", \"ST\": \"LA\", \"STFIPS\": \"22\", \"PLACEFIP\": \"50115\", \"CAPITAL\": \"N\", \"AREALAND\": 23.208000, \"AREAWATER\": 0.054000, \"POP_CL\": 8, \"POP2000\": 146136, \"WHITE\": 126445, \"BLACK\": 9984, \"AMERI_ES\": 394, \"ASIAN\": 4041, \"HAWN_PI\": 34, \"OTHER\": 2787, \"MULT_RACE\": 2451, \"HISPANIC\": 10595, \"MALES\": 69777, \"FEMALES\": 76359, \"AGE_UNDER5\": 8162, \"AGE_5_17\": 21891, \"AGE_18_21\": 6745, \"AGE_22_29\": 15734, \"AGE_30_39\": 21744, \"AGE_40_49\": 22455, \"AGE_50_64\": 25372, \"AGE_65_UP\": 24033, \"MED_AGE\": 39.500000, \"MED_AGE_M\": 37.700000, \"MED_AGE_F\": 41.100000, \"HOUSEHOLDS\": 63741, \"AVE_HH_SZ\": 2.280000, \"HSEHLD_1_M\": 8848, \"HSEHLD_1_F\": 12154, \"MARHH_CHD\": 11641, \"MARHH_NO_C\": 17764, \"MHH_CHILD\": 1058, \"FHH_CHILD\": 3428, \"FAMILIES\": 39088, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 67225, \"VACANT\": 3484, \"OWNER_OCC\": 39410, \"RENTER_OCC\": 24331 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.177472999983621, 29.997796999984985 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Minden\", \"CLASS\": \"city\", \"ST\": \"LA\", \"STFIPS\": \"22\", \"PLACEFIP\": \"50885\", \"CAPITAL\": \"N\", \"AREALAND\": 11.894000, \"AREAWATER\": 0.088000, \"POP_CL\": 6, \"POP2000\": 13027, \"WHITE\": 6037, \"BLACK\": 6796, \"AMERI_ES\": 41, \"ASIAN\": 35, \"HAWN_PI\": 6, \"OTHER\": 27, \"MULT_RACE\": 85, \"HISPANIC\": 80, \"MALES\": 5947, \"FEMALES\": 7080, \"AGE_UNDER5\": 922, \"AGE_5_17\": 2597, \"AGE_18_21\": 680, \"AGE_22_29\": 1195, \"AGE_30_39\": 1685, \"AGE_40_49\": 1635, \"AGE_50_64\": 1977, \"AGE_65_UP\": 2336, \"MED_AGE\": 36.800000, \"MED_AGE_M\": 34.100000, \"MED_AGE_F\": 39.400000, \"HOUSEHOLDS\": 5166, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 581, \"HSEHLD_1_F\": 1015, \"MARHH_CHD\": 821, \"MARHH_NO_C\": 1226, \"MHH_CHILD\": 84, \"FHH_CHILD\": 673, \"FAMILIES\": 3428, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 5795, \"VACANT\": 629, \"OWNER_OCC\": 3229, \"RENTER_OCC\": 1937 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.283296, 32.616760999999116 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Monroe\", \"CLASS\": \"city\", \"ST\": \"LA\", \"STFIPS\": \"22\", \"PLACEFIP\": \"51410\", \"CAPITAL\": \"N\", \"AREALAND\": 28.679000, \"AREAWATER\": 3.705000, \"POP_CL\": 7, \"POP2000\": 53107, \"WHITE\": 19535, \"BLACK\": 32462, \"AMERI_ES\": 68, \"ASIAN\": 558, \"HAWN_PI\": 16, \"OTHER\": 132, \"MULT_RACE\": 336, \"HISPANIC\": 534, \"MALES\": 24259, \"FEMALES\": 28848, \"AGE_UNDER5\": 4059, \"AGE_5_17\": 11699, \"AGE_18_21\": 5001, \"AGE_22_29\": 6442, \"AGE_30_39\": 6334, \"AGE_40_49\": 6747, \"AGE_50_64\": 6015, \"AGE_65_UP\": 6810, \"MED_AGE\": 29.100000, \"MED_AGE_M\": 26.400000, \"MED_AGE_F\": 31.300000, \"HOUSEHOLDS\": 19421, \"AVE_HH_SZ\": 2.540000, \"HSEHLD_1_M\": 2356, \"HSEHLD_1_F\": 3727, \"MARHH_CHD\": 2812, \"MARHH_NO_C\": 3667, \"MHH_CHILD\": 351, \"FHH_CHILD\": 3117, \"FAMILIES\": 12157, \"AVE_FAM_SZ\": 3.260000, \"HSE_UNITS\": 21278, \"VACANT\": 1857, \"OWNER_OCC\": 9624, \"RENTER_OCC\": 9797 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -92.094895, 32.510342999999096 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Morgan City\", \"CLASS\": \"city\", \"ST\": \"LA\", \"STFIPS\": \"22\", \"PLACEFIP\": \"52040\", \"CAPITAL\": \"N\", \"AREALAND\": 5.863000, \"AREAWATER\": 0.163000, \"POP_CL\": 6, \"POP2000\": 12703, \"WHITE\": 9055, \"BLACK\": 3036, \"AMERI_ES\": 116, \"ASIAN\": 130, \"HAWN_PI\": 1, \"OTHER\": 150, \"MULT_RACE\": 215, \"HISPANIC\": 428, \"MALES\": 6120, \"FEMALES\": 6583, \"AGE_UNDER5\": 899, \"AGE_5_17\": 2453, \"AGE_18_21\": 665, \"AGE_22_29\": 1238, \"AGE_30_39\": 1775, \"AGE_40_49\": 1818, \"AGE_50_64\": 2095, \"AGE_65_UP\": 1760, \"MED_AGE\": 36.300000, \"MED_AGE_M\": 35.600000, \"MED_AGE_F\": 37.000000, \"HOUSEHOLDS\": 5037, \"AVE_HH_SZ\": 2.480000, \"HSEHLD_1_M\": 662, \"HSEHLD_1_F\": 747, \"MARHH_CHD\": 975, \"MARHH_NO_C\": 1391, \"MHH_CHILD\": 121, \"FHH_CHILD\": 477, \"FAMILIES\": 3395, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 5627, \"VACANT\": 590, \"OWNER_OCC\": 3258, \"RENTER_OCC\": 1779 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -91.197313999999025, 29.700827999998349 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Moss Bluff\", \"CLASS\": \"CDP\", \"ST\": \"LA\", \"STFIPS\": \"22\", \"PLACEFIP\": \"52425\", \"CAPITAL\": \"N\", \"AREALAND\": 15.211000, \"AREAWATER\": 0.630000, \"POP_CL\": 6, \"POP2000\": 10535, \"WHITE\": 9696, \"BLACK\": 621, \"AMERI_ES\": 41, \"ASIAN\": 47, \"HAWN_PI\": 1, \"OTHER\": 49, \"MULT_RACE\": 80, \"HISPANIC\": 169, \"MALES\": 5158, \"FEMALES\": 5377, \"AGE_UNDER5\": 750, \"AGE_5_17\": 2405, \"AGE_18_21\": 636, \"AGE_22_29\": 943, \"AGE_30_39\": 1706, \"AGE_40_49\": 1779, \"AGE_50_64\": 1495, \"AGE_65_UP\": 821, \"MED_AGE\": 33.500000, \"MED_AGE_M\": 33.000000, \"MED_AGE_F\": 34.000000, \"HOUSEHOLDS\": 3711, \"AVE_HH_SZ\": 2.840000, \"HSEHLD_1_M\": 260, \"HSEHLD_1_F\": 316, \"MARHH_CHD\": 1271, \"MARHH_NO_C\": 1215, \"MHH_CHILD\": 88, \"FHH_CHILD\": 272, \"FAMILIES\": 3017, \"AVE_FAM_SZ\": 3.160000, \"HSE_UNITS\": 3984, \"VACANT\": 273, \"OWNER_OCC\": 3079, \"RENTER_OCC\": 632 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.204753, 30.310002999999238 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Natchitoches\", \"CLASS\": \"city\", \"ST\": \"LA\", \"STFIPS\": \"22\", \"PLACEFIP\": \"53545\", \"CAPITAL\": \"N\", \"AREALAND\": 21.563000, \"AREAWATER\": 3.568000, \"POP_CL\": 6, \"POP2000\": 17865, \"WHITE\": 7810, \"BLACK\": 9469, \"AMERI_ES\": 122, \"ASIAN\": 146, \"HAWN_PI\": 3, \"OTHER\": 121, \"MULT_RACE\": 194, \"HISPANIC\": 232, \"MALES\": 8210, \"FEMALES\": 9655, \"AGE_UNDER5\": 1187, \"AGE_5_17\": 3036, \"AGE_18_21\": 3568, \"AGE_22_29\": 2381, \"AGE_30_39\": 1828, \"AGE_40_49\": 1894, \"AGE_50_64\": 1943, \"AGE_65_UP\": 2028, \"MED_AGE\": 24.500000, \"MED_AGE_M\": 23.600000, \"MED_AGE_F\": 25.900000, \"HOUSEHOLDS\": 6113, \"AVE_HH_SZ\": 2.500000, \"HSEHLD_1_M\": 688, \"HSEHLD_1_F\": 1194, \"MARHH_CHD\": 951, \"MARHH_NO_C\": 1146, \"MHH_CHILD\": 78, \"FHH_CHILD\": 831, \"FAMILIES\": 3629, \"AVE_FAM_SZ\": 3.180000, \"HSE_UNITS\": 6731, \"VACANT\": 618, \"OWNER_OCC\": 2997, \"RENTER_OCC\": 3116 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.095085, 31.754122999999183 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"New Iberia\", \"CLASS\": \"city\", \"ST\": \"LA\", \"STFIPS\": \"22\", \"PLACEFIP\": \"54035\", \"CAPITAL\": \"N\", \"AREALAND\": 10.562000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 32623, \"WHITE\": 18593, \"BLACK\": 12533, \"AMERI_ES\": 70, \"ASIAN\": 862, \"HAWN_PI\": 7, \"OTHER\": 166, \"MULT_RACE\": 392, \"HISPANIC\": 487, \"MALES\": 15256, \"FEMALES\": 17367, \"AGE_UNDER5\": 2675, \"AGE_5_17\": 7050, \"AGE_18_21\": 1918, \"AGE_22_29\": 3185, \"AGE_30_39\": 4475, \"AGE_40_49\": 4425, \"AGE_50_64\": 4544, \"AGE_65_UP\": 4351, \"MED_AGE\": 33.600000, \"MED_AGE_M\": 32.100000, \"MED_AGE_F\": 34.800000, \"HOUSEHOLDS\": 11756, \"AVE_HH_SZ\": 2.700000, \"HSEHLD_1_M\": 1264, \"HSEHLD_1_F\": 1698, \"MARHH_CHD\": 2476, \"MARHH_NO_C\": 2824, \"MHH_CHILD\": 317, \"FHH_CHILD\": 1511, \"FAMILIES\": 8330, \"AVE_FAM_SZ\": 3.240000, \"HSE_UNITS\": 12880, \"VACANT\": 1124, \"OWNER_OCC\": 7357, \"RENTER_OCC\": 4399 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -91.818454, 30.003576999999186 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"New Orleans\", \"CLASS\": \"city\", \"ST\": \"LA\", \"STFIPS\": \"22\", \"PLACEFIP\": \"55000\", \"CAPITAL\": \"N\", \"AREALAND\": 180.555000, \"AREAWATER\": 169.657000, \"POP_CL\": 8, \"POP2000\": 484674, \"WHITE\": 135956, \"BLACK\": 325947, \"AMERI_ES\": 991, \"ASIAN\": 10972, \"HAWN_PI\": 109, \"OTHER\": 4498, \"MULT_RACE\": 6201, \"HISPANIC\": 14826, \"MALES\": 227094, \"FEMALES\": 257580, \"AGE_UNDER5\": 33496, \"AGE_5_17\": 95912, \"AGE_18_21\": 32557, \"AGE_22_29\": 59093, \"AGE_30_39\": 69103, \"AGE_40_49\": 71006, \"AGE_50_64\": 66854, \"AGE_65_UP\": 56653, \"MED_AGE\": 33.100000, \"MED_AGE_M\": 31.500000, \"MED_AGE_F\": 34.600000, \"HOUSEHOLDS\": 188251, \"AVE_HH_SZ\": 2.480000, \"HSEHLD_1_M\": 28864, \"HSEHLD_1_F\": 33558, \"MARHH_CHD\": 24950, \"MARHH_NO_C\": 33063, \"MHH_CHILD\": 3714, \"FHH_CHILD\": 26389, \"FAMILIES\": 112977, \"AVE_FAM_SZ\": 3.230000, \"HSE_UNITS\": 215091, \"VACANT\": 26840, \"OWNER_OCC\": 87589, \"RENTER_OCC\": 100662 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.059010999978668, 29.972753999981009 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Opelousas\", \"CLASS\": \"city\", \"ST\": \"LA\", \"STFIPS\": \"22\", \"PLACEFIP\": \"58045\", \"CAPITAL\": \"N\", \"AREALAND\": 7.055000, \"AREAWATER\": 0.010000, \"POP_CL\": 6, \"POP2000\": 22860, \"WHITE\": 6699, \"BLACK\": 15801, \"AMERI_ES\": 24, \"ASIAN\": 73, \"HAWN_PI\": 4, \"OTHER\": 68, \"MULT_RACE\": 191, \"HISPANIC\": 202, \"MALES\": 10436, \"FEMALES\": 12424, \"AGE_UNDER5\": 1958, \"AGE_5_17\": 4968, \"AGE_18_21\": 1282, \"AGE_22_29\": 2189, \"AGE_30_39\": 2886, \"AGE_40_49\": 2828, \"AGE_50_64\": 3129, \"AGE_65_UP\": 3620, \"MED_AGE\": 33.800000, \"MED_AGE_M\": 30.900000, \"MED_AGE_F\": 36.200000, \"HOUSEHOLDS\": 8699, \"AVE_HH_SZ\": 2.540000, \"HSEHLD_1_M\": 1148, \"HSEHLD_1_F\": 1664, \"MARHH_CHD\": 1274, \"MARHH_NO_C\": 1658, \"MHH_CHILD\": 151, \"FHH_CHILD\": 1426, \"FAMILIES\": 5665, \"AVE_FAM_SZ\": 3.240000, \"HSE_UNITS\": 9783, \"VACANT\": 1084, \"OWNER_OCC\": 4640, \"RENTER_OCC\": 4059 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -92.084406, 30.528182999999224 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pineville\", \"CLASS\": \"city\", \"ST\": \"LA\", \"STFIPS\": \"22\", \"PLACEFIP\": \"60530\", \"CAPITAL\": \"N\", \"AREALAND\": 11.478000, \"AREAWATER\": 0.595000, \"POP_CL\": 6, \"POP2000\": 13829, \"WHITE\": 9621, \"BLACK\": 3607, \"AMERI_ES\": 70, \"ASIAN\": 263, \"HAWN_PI\": 12, \"OTHER\": 42, \"MULT_RACE\": 214, \"HISPANIC\": 158, \"MALES\": 6838, \"FEMALES\": 6991, \"AGE_UNDER5\": 841, \"AGE_5_17\": 2266, \"AGE_18_21\": 1197, \"AGE_22_29\": 1571, \"AGE_30_39\": 2048, \"AGE_40_49\": 2022, \"AGE_50_64\": 2069, \"AGE_65_UP\": 1815, \"MED_AGE\": 35.300000, \"MED_AGE_M\": 34.000000, \"MED_AGE_F\": 36.900000, \"HOUSEHOLDS\": 4994, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 665, \"HSEHLD_1_F\": 960, \"MARHH_CHD\": 964, \"MARHH_NO_C\": 1251, \"MHH_CHILD\": 98, \"FHH_CHILD\": 478, \"FAMILIES\": 3120, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 5448, \"VACANT\": 454, \"OWNER_OCC\": 2799, \"RENTER_OCC\": 2195 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -92.412485, 31.338780999999191 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Raceland\", \"CLASS\": \"CDP\", \"ST\": \"LA\", \"STFIPS\": \"22\", \"PLACEFIP\": \"63155\", \"CAPITAL\": \"N\", \"AREALAND\": 21.645000, \"AREAWATER\": 0.044000, \"POP_CL\": 6, \"POP2000\": 10224, \"WHITE\": 7278, \"BLACK\": 2682, \"AMERI_ES\": 98, \"ASIAN\": 26, \"HAWN_PI\": 4, \"OTHER\": 66, \"MULT_RACE\": 70, \"HISPANIC\": 157, \"MALES\": 4945, \"FEMALES\": 5279, \"AGE_UNDER5\": 742, \"AGE_5_17\": 2092, \"AGE_18_21\": 608, \"AGE_22_29\": 934, \"AGE_30_39\": 1483, \"AGE_40_49\": 1448, \"AGE_50_64\": 1601, \"AGE_65_UP\": 1316, \"MED_AGE\": 35.300000, \"MED_AGE_M\": 33.900000, \"MED_AGE_F\": 36.400000, \"HOUSEHOLDS\": 3656, \"AVE_HH_SZ\": 2.770000, \"HSEHLD_1_M\": 297, \"HSEHLD_1_F\": 395, \"MARHH_CHD\": 902, \"MARHH_NO_C\": 1189, \"MHH_CHILD\": 83, \"FHH_CHILD\": 374, \"FAMILIES\": 2836, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 3908, \"VACANT\": 252, \"OWNER_OCC\": 2936, \"RENTER_OCC\": 720 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.605171999994198, 29.722575999994138 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"River Ridge\", \"CLASS\": \"CDP\", \"ST\": \"LA\", \"STFIPS\": \"22\", \"PLACEFIP\": \"65150\", \"CAPITAL\": \"N\", \"AREALAND\": 2.815000, \"AREAWATER\": 0.747000, \"POP_CL\": 6, \"POP2000\": 14588, \"WHITE\": 12656, \"BLACK\": 1603, \"AMERI_ES\": 34, \"ASIAN\": 114, \"HAWN_PI\": 5, \"OTHER\": 65, \"MULT_RACE\": 111, \"HISPANIC\": 426, \"MALES\": 6963, \"FEMALES\": 7625, \"AGE_UNDER5\": 841, \"AGE_5_17\": 2464, \"AGE_18_21\": 593, \"AGE_22_29\": 1213, \"AGE_30_39\": 2028, \"AGE_40_49\": 2544, \"AGE_50_64\": 2505, \"AGE_65_UP\": 2400, \"MED_AGE\": 40.600000, \"MED_AGE_M\": 39.600000, \"MED_AGE_F\": 41.400000, \"HOUSEHOLDS\": 6030, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 733, \"HSEHLD_1_F\": 952, \"MARHH_CHD\": 1298, \"MARHH_NO_C\": 1944, \"MHH_CHILD\": 79, \"FHH_CHILD\": 297, \"FAMILIES\": 4083, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 6325, \"VACANT\": 295, \"OWNER_OCC\": 4349, \"RENTER_OCC\": 1681 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.21769599998504, 29.961874999986211 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ruston\", \"CLASS\": \"city\", \"ST\": \"LA\", \"STFIPS\": \"22\", \"PLACEFIP\": \"66655\", \"CAPITAL\": \"N\", \"AREALAND\": 18.079000, \"AREAWATER\": 0.078000, \"POP_CL\": 6, \"POP2000\": 20546, \"WHITE\": 11699, \"BLACK\": 7997, \"AMERI_ES\": 34, \"ASIAN\": 496, \"HAWN_PI\": 5, \"OTHER\": 130, \"MULT_RACE\": 185, \"HISPANIC\": 266, \"MALES\": 9896, \"FEMALES\": 10650, \"AGE_UNDER5\": 1198, \"AGE_5_17\": 3067, \"AGE_18_21\": 4557, \"AGE_22_29\": 3337, \"AGE_30_39\": 2029, \"AGE_40_49\": 1931, \"AGE_50_64\": 2101, \"AGE_65_UP\": 2326, \"MED_AGE\": 24.000000, \"MED_AGE_M\": 23.300000, \"MED_AGE_F\": 25.100000, \"HOUSEHOLDS\": 7621, \"AVE_HH_SZ\": 2.320000, \"HSEHLD_1_M\": 964, \"HSEHLD_1_F\": 1386, \"MARHH_CHD\": 1143, \"MARHH_NO_C\": 1604, \"MHH_CHILD\": 108, \"FHH_CHILD\": 787, \"FAMILIES\": 4248, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 8397, \"VACANT\": 776, \"OWNER_OCC\": 3545, \"RENTER_OCC\": 4076 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -92.640466, 32.529673999999119 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Shenandoah\", \"CLASS\": \"CDP\", \"ST\": \"LA\", \"STFIPS\": \"22\", \"PLACEFIP\": \"69225\", \"CAPITAL\": \"N\", \"AREALAND\": 6.257000, \"AREAWATER\": 0.083000, \"POP_CL\": 6, \"POP2000\": 17070, \"WHITE\": 15726, \"BLACK\": 755, \"AMERI_ES\": 41, \"ASIAN\": 355, \"HAWN_PI\": 2, \"OTHER\": 67, \"MULT_RACE\": 124, \"HISPANIC\": 276, \"MALES\": 8466, \"FEMALES\": 8604, \"AGE_UNDER5\": 1125, \"AGE_5_17\": 3958, \"AGE_18_21\": 850, \"AGE_22_29\": 1110, \"AGE_30_39\": 2691, \"AGE_40_49\": 3582, \"AGE_50_64\": 2894, \"AGE_65_UP\": 860, \"MED_AGE\": 36.400000, \"MED_AGE_M\": 36.100000, \"MED_AGE_F\": 36.700000, \"HOUSEHOLDS\": 5911, \"AVE_HH_SZ\": 2.890000, \"HSEHLD_1_M\": 353, \"HSEHLD_1_F\": 447, \"MARHH_CHD\": 2384, \"MARHH_NO_C\": 1937, \"MHH_CHILD\": 94, \"FHH_CHILD\": 283, \"FAMILIES\": 4903, \"AVE_FAM_SZ\": 3.210000, \"HSE_UNITS\": 6053, \"VACANT\": 142, \"OWNER_OCC\": 4996, \"RENTER_OCC\": 915 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -91.004411999998226, 30.401390999997382 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Shreveport\", \"CLASS\": \"city\", \"ST\": \"LA\", \"STFIPS\": \"22\", \"PLACEFIP\": \"70000\", \"CAPITAL\": \"N\", \"AREALAND\": 103.140000, \"AREAWATER\": 14.649000, \"POP_CL\": 8, \"POP2000\": 200145, \"WHITE\": 93394, \"BLACK\": 101679, \"AMERI_ES\": 619, \"ASIAN\": 1590, \"HAWN_PI\": 66, \"OTHER\": 893, \"MULT_RACE\": 1904, \"HISPANIC\": 3106, \"MALES\": 93333, \"FEMALES\": 106812, \"AGE_UNDER5\": 14168, \"AGE_5_17\": 39700, \"AGE_18_21\": 12543, \"AGE_22_29\": 22841, \"AGE_30_39\": 26219, \"AGE_40_49\": 28643, \"AGE_50_64\": 28261, \"AGE_65_UP\": 27770, \"MED_AGE\": 34.300000, \"MED_AGE_M\": 31.900000, \"MED_AGE_F\": 36.400000, \"HOUSEHOLDS\": 78662, \"AVE_HH_SZ\": 2.480000, \"HSEHLD_1_M\": 10088, \"HSEHLD_1_F\": 14108, \"MARHH_CHD\": 12186, \"MARHH_NO_C\": 17922, \"MHH_CHILD\": 1615, \"FHH_CHILD\": 9894, \"FAMILIES\": 50442, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 86802, \"VACANT\": 8140, \"OWNER_OCC\": 46448, \"RENTER_OCC\": 32214 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.771115, 32.468002999999115 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Slidell\", \"CLASS\": \"city\", \"ST\": \"LA\", \"STFIPS\": \"22\", \"PLACEFIP\": \"70805\", \"CAPITAL\": \"N\", \"AREALAND\": 11.795000, \"AREAWATER\": 0.324000, \"POP_CL\": 6, \"POP2000\": 25695, \"WHITE\": 21360, \"BLACK\": 3484, \"AMERI_ES\": 127, \"ASIAN\": 184, \"HAWN_PI\": 13, \"OTHER\": 160, \"MULT_RACE\": 367, \"HISPANIC\": 687, \"MALES\": 12314, \"FEMALES\": 13381, \"AGE_UNDER5\": 1714, \"AGE_5_17\": 5212, \"AGE_18_21\": 1173, \"AGE_22_29\": 2268, \"AGE_30_39\": 3647, \"AGE_40_49\": 4017, \"AGE_50_64\": 4139, \"AGE_65_UP\": 3525, \"MED_AGE\": 37.000000, \"MED_AGE_M\": 35.300000, \"MED_AGE_F\": 38.600000, \"HOUSEHOLDS\": 9480, \"AVE_HH_SZ\": 2.670000, \"HSEHLD_1_M\": 748, \"HSEHLD_1_F\": 1190, \"MARHH_CHD\": 2456, \"MARHH_NO_C\": 2984, \"MHH_CHILD\": 192, \"FHH_CHILD\": 768, \"FAMILIES\": 7155, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 10133, \"VACANT\": 653, \"OWNER_OCC\": 7211, \"RENTER_OCC\": 2269 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.777743999962155, 30.279039999966486 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sulphur\", \"CLASS\": \"city\", \"ST\": \"LA\", \"STFIPS\": \"22\", \"PLACEFIP\": \"73640\", \"CAPITAL\": \"N\", \"AREALAND\": 10.040000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 20512, \"WHITE\": 19165, \"BLACK\": 905, \"AMERI_ES\": 68, \"ASIAN\": 76, \"HAWN_PI\": 9, \"OTHER\": 72, \"MULT_RACE\": 217, \"HISPANIC\": 305, \"MALES\": 9832, \"FEMALES\": 10680, \"AGE_UNDER5\": 1511, \"AGE_5_17\": 4054, \"AGE_18_21\": 1167, \"AGE_22_29\": 2136, \"AGE_30_39\": 2832, \"AGE_40_49\": 3014, \"AGE_50_64\": 3044, \"AGE_65_UP\": 2754, \"MED_AGE\": 35.300000, \"MED_AGE_M\": 33.600000, \"MED_AGE_F\": 36.600000, \"HOUSEHOLDS\": 7901, \"AVE_HH_SZ\": 2.560000, \"HSEHLD_1_M\": 843, \"HSEHLD_1_F\": 1123, \"MARHH_CHD\": 1876, \"MARHH_NO_C\": 2330, \"MHH_CHILD\": 168, \"FHH_CHILD\": 689, \"FAMILIES\": 5603, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 8665, \"VACANT\": 764, \"OWNER_OCC\": 5738, \"RENTER_OCC\": 2163 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.360837, 30.23035499999925 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Terrytown\", \"CLASS\": \"CDP\", \"ST\": \"LA\", \"STFIPS\": \"22\", \"PLACEFIP\": \"75180\", \"CAPITAL\": \"N\", \"AREALAND\": 3.705000, \"AREAWATER\": 0.041000, \"POP_CL\": 6, \"POP2000\": 25430, \"WHITE\": 14216, \"BLACK\": 8813, \"AMERI_ES\": 130, \"ASIAN\": 885, \"HAWN_PI\": 12, \"OTHER\": 690, \"MULT_RACE\": 684, \"HISPANIC\": 2206, \"MALES\": 12095, \"FEMALES\": 13335, \"AGE_UNDER5\": 2164, \"AGE_5_17\": 5215, \"AGE_18_21\": 1448, \"AGE_22_29\": 3178, \"AGE_30_39\": 4243, \"AGE_40_49\": 3497, \"AGE_50_64\": 3674, \"AGE_65_UP\": 2011, \"MED_AGE\": 31.700000, \"MED_AGE_M\": 30.900000, \"MED_AGE_F\": 32.300000, \"HOUSEHOLDS\": 9344, \"AVE_HH_SZ\": 2.720000, \"HSEHLD_1_M\": 950, \"HSEHLD_1_F\": 1126, \"MARHH_CHD\": 2089, \"MARHH_NO_C\": 2325, \"MHH_CHILD\": 279, \"FHH_CHILD\": 1205, \"FAMILIES\": 6793, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 9656, \"VACANT\": 312, \"OWNER_OCC\": 4946, \"RENTER_OCC\": 4398 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.029474999977225, 29.902355999980038 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Thibodaux\", \"CLASS\": \"city\", \"ST\": \"LA\", \"STFIPS\": \"22\", \"PLACEFIP\": \"75425\", \"CAPITAL\": \"N\", \"AREALAND\": 5.473000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14431, \"WHITE\": 9242, \"BLACK\": 4872, \"AMERI_ES\": 54, \"ASIAN\": 93, \"HAWN_PI\": 3, \"OTHER\": 37, \"MULT_RACE\": 130, \"HISPANIC\": 148, \"MALES\": 6667, \"FEMALES\": 7764, \"AGE_UNDER5\": 963, \"AGE_5_17\": 2580, \"AGE_18_21\": 1688, \"AGE_22_29\": 1763, \"AGE_30_39\": 1781, \"AGE_40_49\": 1825, \"AGE_50_64\": 1790, \"AGE_65_UP\": 2041, \"MED_AGE\": 31.300000, \"MED_AGE_M\": 29.000000, \"MED_AGE_F\": 33.100000, \"HOUSEHOLDS\": 5500, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 696, \"HSEHLD_1_F\": 1017, \"MARHH_CHD\": 901, \"MARHH_NO_C\": 1194, \"MHH_CHILD\": 85, \"FHH_CHILD\": 650, \"FAMILIES\": 3356, \"AVE_FAM_SZ\": 3.100000, \"HSE_UNITS\": 6004, \"VACANT\": 504, \"OWNER_OCC\": 2874, \"RENTER_OCC\": 2626 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.820094999996797, 29.792203999996335 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Timberlane\", \"CLASS\": \"CDP\", \"ST\": \"LA\", \"STFIPS\": \"22\", \"PLACEFIP\": \"75740\", \"CAPITAL\": \"N\", \"AREALAND\": 2.136000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11405, \"WHITE\": 7494, \"BLACK\": 2679, \"AMERI_ES\": 82, \"ASIAN\": 521, \"HAWN_PI\": 6, \"OTHER\": 356, \"MULT_RACE\": 267, \"HISPANIC\": 876, \"MALES\": 5583, \"FEMALES\": 5822, \"AGE_UNDER5\": 741, \"AGE_5_17\": 2222, \"AGE_18_21\": 658, \"AGE_22_29\": 1167, \"AGE_30_39\": 1693, \"AGE_40_49\": 1914, \"AGE_50_64\": 2067, \"AGE_65_UP\": 943, \"MED_AGE\": 35.700000, \"MED_AGE_M\": 34.200000, \"MED_AGE_F\": 37.000000, \"HOUSEHOLDS\": 4017, \"AVE_HH_SZ\": 2.810000, \"HSEHLD_1_M\": 354, \"HSEHLD_1_F\": 392, \"MARHH_CHD\": 1054, \"MARHH_NO_C\": 1250, \"MHH_CHILD\": 84, \"FHH_CHILD\": 328, \"FAMILIES\": 3100, \"AVE_FAM_SZ\": 3.200000, \"HSE_UNITS\": 4159, \"VACANT\": 142, \"OWNER_OCC\": 2978, \"RENTER_OCC\": 1039 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.029522999977203, 29.880139999980088 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"West Monroe\", \"CLASS\": \"city\", \"ST\": \"LA\", \"STFIPS\": \"22\", \"PLACEFIP\": \"80955\", \"CAPITAL\": \"N\", \"AREALAND\": 7.716000, \"AREAWATER\": 0.249000, \"POP_CL\": 6, \"POP2000\": 13250, \"WHITE\": 9861, \"BLACK\": 3108, \"AMERI_ES\": 39, \"ASIAN\": 40, \"HAWN_PI\": 6, \"OTHER\": 63, \"MULT_RACE\": 133, \"HISPANIC\": 196, \"MALES\": 6029, \"FEMALES\": 7221, \"AGE_UNDER5\": 873, \"AGE_5_17\": 2275, \"AGE_18_21\": 816, \"AGE_22_29\": 1666, \"AGE_30_39\": 1646, \"AGE_40_49\": 1724, \"AGE_50_64\": 1829, \"AGE_65_UP\": 2421, \"MED_AGE\": 35.900000, \"MED_AGE_M\": 32.800000, \"MED_AGE_F\": 38.500000, \"HOUSEHOLDS\": 5734, \"AVE_HH_SZ\": 2.250000, \"HSEHLD_1_M\": 751, \"HSEHLD_1_F\": 1226, \"MARHH_CHD\": 830, \"MARHH_NO_C\": 1376, \"MHH_CHILD\": 112, \"FHH_CHILD\": 589, \"FAMILIES\": 3455, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 6312, \"VACANT\": 578, \"OWNER_OCC\": 2962, \"RENTER_OCC\": 2772 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -92.140048, 32.510843999999103 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Westwego\", \"CLASS\": \"city\", \"ST\": \"LA\", \"STFIPS\": \"22\", \"PLACEFIP\": \"81165\", \"CAPITAL\": \"N\", \"AREALAND\": 3.186000, \"AREAWATER\": 0.384000, \"POP_CL\": 6, \"POP2000\": 10763, \"WHITE\": 8089, \"BLACK\": 2155, \"AMERI_ES\": 101, \"ASIAN\": 169, \"HAWN_PI\": 0, \"OTHER\": 98, \"MULT_RACE\": 151, \"HISPANIC\": 386, \"MALES\": 5113, \"FEMALES\": 5650, \"AGE_UNDER5\": 786, \"AGE_5_17\": 2174, \"AGE_18_21\": 547, \"AGE_22_29\": 1163, \"AGE_30_39\": 1641, \"AGE_40_49\": 1510, \"AGE_50_64\": 1602, \"AGE_65_UP\": 1340, \"MED_AGE\": 34.700000, \"MED_AGE_M\": 33.400000, \"MED_AGE_F\": 35.600000, \"HOUSEHOLDS\": 4211, \"AVE_HH_SZ\": 2.560000, \"HSEHLD_1_M\": 502, \"HSEHLD_1_F\": 623, \"MARHH_CHD\": 734, \"MARHH_NO_C\": 997, \"MHH_CHILD\": 120, \"FHH_CHILD\": 521, \"FAMILIES\": 2852, \"AVE_FAM_SZ\": 3.100000, \"HSE_UNITS\": 4521, \"VACANT\": 310, \"OWNER_OCC\": 2343, \"RENTER_OCC\": 1868 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.142931999982238, 29.902985999984065 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Woodmere\", \"CLASS\": \"CDP\", \"ST\": \"LA\", \"STFIPS\": \"22\", \"PLACEFIP\": \"83002\", \"CAPITAL\": \"N\", \"AREALAND\": 3.739000, \"AREAWATER\": 0.108000, \"POP_CL\": 6, \"POP2000\": 13058, \"WHITE\": 3255, \"BLACK\": 8536, \"AMERI_ES\": 33, \"ASIAN\": 783, \"HAWN_PI\": 0, \"OTHER\": 256, \"MULT_RACE\": 195, \"HISPANIC\": 698, \"MALES\": 6292, \"FEMALES\": 6766, \"AGE_UNDER5\": 965, \"AGE_5_17\": 3690, \"AGE_18_21\": 854, \"AGE_22_29\": 1227, \"AGE_30_39\": 2081, \"AGE_40_49\": 2357, \"AGE_50_64\": 1498, \"AGE_65_UP\": 386, \"MED_AGE\": 28.800000, \"MED_AGE_M\": 27.400000, \"MED_AGE_F\": 30.000000, \"HOUSEHOLDS\": 3722, \"AVE_HH_SZ\": 3.490000, \"HSEHLD_1_M\": 172, \"HSEHLD_1_F\": 156, \"MARHH_CHD\": 1366, \"MARHH_NO_C\": 870, \"MHH_CHILD\": 135, \"FHH_CHILD\": 545, \"FAMILIES\": 3305, \"AVE_FAM_SZ\": 3.670000, \"HSE_UNITS\": 3882, \"VACANT\": 160, \"OWNER_OCC\": 3161, \"RENTER_OCC\": 561 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.078050999979467, 29.857587999981959 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Zachary\", \"CLASS\": \"city\", \"ST\": \"LA\", \"STFIPS\": \"22\", \"PLACEFIP\": \"83405\", \"CAPITAL\": \"N\", \"AREALAND\": 23.727000, \"AREAWATER\": 0.030000, \"POP_CL\": 6, \"POP2000\": 11275, \"WHITE\": 7866, \"BLACK\": 3238, \"AMERI_ES\": 21, \"ASIAN\": 52, \"HAWN_PI\": 0, \"OTHER\": 36, \"MULT_RACE\": 62, \"HISPANIC\": 81, \"MALES\": 5355, \"FEMALES\": 5920, \"AGE_UNDER5\": 775, \"AGE_5_17\": 2613, \"AGE_18_21\": 628, \"AGE_22_29\": 968, \"AGE_30_39\": 1710, \"AGE_40_49\": 1874, \"AGE_50_64\": 1485, \"AGE_65_UP\": 1222, \"MED_AGE\": 34.500000, \"MED_AGE_M\": 33.300000, \"MED_AGE_F\": 35.200000, \"HOUSEHOLDS\": 3836, \"AVE_HH_SZ\": 2.880000, \"HSEHLD_1_M\": 275, \"HSEHLD_1_F\": 396, \"MARHH_CHD\": 1212, \"MARHH_NO_C\": 1098, \"MHH_CHILD\": 93, \"FHH_CHILD\": 361, \"FAMILIES\": 3066, \"AVE_FAM_SZ\": 3.260000, \"HSE_UNITS\": 4076, \"VACANT\": 240, \"OWNER_OCC\": 3000, \"RENTER_OCC\": 836 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -91.156780999998929, 30.655084999998053 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Abington\", \"CLASS\": \"CDP\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"00135\", \"CAPITAL\": \"N\", \"AREALAND\": 9.941000, \"AREAWATER\": 0.224000, \"POP_CL\": 6, \"POP2000\": 14605, \"WHITE\": 14237, \"BLACK\": 111, \"AMERI_ES\": 17, \"ASIAN\": 71, \"HAWN_PI\": 1, \"OTHER\": 47, \"MULT_RACE\": 121, \"HISPANIC\": 103, \"MALES\": 7131, \"FEMALES\": 7474, \"AGE_UNDER5\": 1012, \"AGE_5_17\": 2726, \"AGE_18_21\": 622, \"AGE_22_29\": 1348, \"AGE_30_39\": 2463, \"AGE_40_49\": 2374, \"AGE_50_64\": 2281, \"AGE_65_UP\": 1779, \"MED_AGE\": 36.700000, \"MED_AGE_M\": 35.600000, \"MED_AGE_F\": 37.600000, \"HOUSEHOLDS\": 5263, \"AVE_HH_SZ\": 2.740000, \"HSEHLD_1_M\": 500, \"HSEHLD_1_F\": 712, \"MARHH_CHD\": 1472, \"MARHH_NO_C\": 1529, \"MHH_CHILD\": 90, \"FHH_CHILD\": 267, \"FAMILIES\": 3746, \"AVE_FAM_SZ\": 3.290000, \"HSE_UNITS\": 5348, \"VACANT\": 85, \"OWNER_OCC\": 3778, \"RENTER_OCC\": 1485 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -70.948416578110894, 42.119575853257111 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Agawam\", \"CLASS\": \"city\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"00765\", \"CAPITAL\": \"N\", \"AREALAND\": 23.242000, \"AREAWATER\": 0.988000, \"POP_CL\": 6, \"POP2000\": 28144, \"WHITE\": 27217, \"BLACK\": 257, \"AMERI_ES\": 48, \"ASIAN\": 275, \"HAWN_PI\": 3, \"OTHER\": 120, \"MULT_RACE\": 224, \"HISPANIC\": 514, \"MALES\": 13369, \"FEMALES\": 14775, \"AGE_UNDER5\": 1560, \"AGE_5_17\": 4653, \"AGE_18_21\": 1120, \"AGE_22_29\": 2273, \"AGE_30_39\": 4340, \"AGE_40_49\": 4654, \"AGE_50_64\": 4841, \"AGE_65_UP\": 4703, \"MED_AGE\": 40.300000, \"MED_AGE_M\": 38.800000, \"MED_AGE_F\": 41.900000, \"HOUSEHOLDS\": 11260, \"AVE_HH_SZ\": 2.430000, \"HSEHLD_1_M\": 1260, \"HSEHLD_1_F\": 1897, \"MARHH_CHD\": 2544, \"MARHH_NO_C\": 3465, \"MHH_CHILD\": 141, \"FHH_CHILD\": 567, \"FAMILIES\": 7462, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 11659, \"VACANT\": 399, \"OWNER_OCC\": 8288, \"RENTER_OCC\": 2972 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -72.64434422523621, 42.071977251960725 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Amesbury\", \"CLASS\": \"CDP\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"01220\", \"CAPITAL\": \"N\", \"AREALAND\": 5.310000, \"AREAWATER\": 0.365000, \"POP_CL\": 6, \"POP2000\": 12327, \"WHITE\": 11941, \"BLACK\": 80, \"AMERI_ES\": 26, \"ASIAN\": 74, \"HAWN_PI\": 2, \"OTHER\": 35, \"MULT_RACE\": 169, \"HISPANIC\": 129, \"MALES\": 5934, \"FEMALES\": 6393, \"AGE_UNDER5\": 797, \"AGE_5_17\": 2339, \"AGE_18_21\": 448, \"AGE_22_29\": 1232, \"AGE_30_39\": 2214, \"AGE_40_49\": 2063, \"AGE_50_64\": 1694, \"AGE_65_UP\": 1540, \"MED_AGE\": 36.100000, \"MED_AGE_M\": 34.900000, \"MED_AGE_F\": 37.200000, \"HOUSEHOLDS\": 4910, \"AVE_HH_SZ\": 2.450000, \"HSEHLD_1_M\": 620, \"HSEHLD_1_F\": 836, \"MARHH_CHD\": 1133, \"MARHH_NO_C\": 1155, \"MHH_CHILD\": 106, \"FHH_CHILD\": 389, \"FAMILIES\": 3091, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 5099, \"VACANT\": 189, \"OWNER_OCC\": 2873, \"RENTER_OCC\": 2037 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -70.928537776566984, 42.856071846096484 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Amherst Center\", \"CLASS\": \"CDP\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"01360\", \"CAPITAL\": \"N\", \"AREALAND\": 4.893000, \"AREAWATER\": 0.004000, \"POP_CL\": 6, \"POP2000\": 17050, \"WHITE\": 13810, \"BLACK\": 878, \"AMERI_ES\": 38, \"ASIAN\": 1368, \"HAWN_PI\": 11, \"OTHER\": 422, \"MULT_RACE\": 523, \"HISPANIC\": 916, \"MALES\": 8043, \"FEMALES\": 9007, \"AGE_UNDER5\": 262, \"AGE_5_17\": 799, \"AGE_18_21\": 9887, \"AGE_22_29\": 2478, \"AGE_30_39\": 900, \"AGE_40_49\": 840, \"AGE_50_64\": 928, \"AGE_65_UP\": 956, \"MED_AGE\": 20.800000, \"MED_AGE_M\": 20.800000, \"MED_AGE_F\": 20.700000, \"HOUSEHOLDS\": 3055, \"AVE_HH_SZ\": 2.190000, \"HSEHLD_1_M\": 479, \"HSEHLD_1_F\": 742, \"MARHH_CHD\": 373, \"MARHH_NO_C\": 496, \"MHH_CHILD\": 29, \"FHH_CHILD\": 192, \"FAMILIES\": 1209, \"AVE_FAM_SZ\": 2.820000, \"HSE_UNITS\": 3190, \"VACANT\": 135, \"OWNER_OCC\": 1115, \"RENTER_OCC\": 1940 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -72.520087847797356, 42.380409572244048 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Arlington\", \"CLASS\": \"CDP\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"01640\", \"CAPITAL\": \"N\", \"AREALAND\": 5.182000, \"AREAWATER\": 0.330000, \"POP_CL\": 6, \"POP2000\": 42389, \"WHITE\": 38561, \"BLACK\": 719, \"AMERI_ES\": 57, \"ASIAN\": 2107, \"HAWN_PI\": 6, \"OTHER\": 279, \"MULT_RACE\": 660, \"HISPANIC\": 787, \"MALES\": 19679, \"FEMALES\": 22710, \"AGE_UNDER5\": 2562, \"AGE_5_17\": 5222, \"AGE_18_21\": 937, \"AGE_22_29\": 4499, \"AGE_30_39\": 8398, \"AGE_40_49\": 6907, \"AGE_50_64\": 6734, \"AGE_65_UP\": 7130, \"MED_AGE\": 39.500000, \"MED_AGE_M\": 37.800000, \"MED_AGE_F\": 41.000000, \"HOUSEHOLDS\": 19011, \"AVE_HH_SZ\": 2.220000, \"HSEHLD_1_M\": 2291, \"HSEHLD_1_F\": 4210, \"MARHH_CHD\": 3635, \"MARHH_NO_C\": 5001, \"MHH_CHILD\": 117, \"FHH_CHILD\": 643, \"FAMILIES\": 10779, \"AVE_FAM_SZ\": 2.910000, \"HSE_UNITS\": 19411, \"VACANT\": 400, \"OWNER_OCC\": 11186, \"RENTER_OCC\": 7825 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.16622069257302, 42.417933485701369 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Attleboro\", \"CLASS\": \"city\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"02690\", \"CAPITAL\": \"N\", \"AREALAND\": 27.512000, \"AREAWATER\": 0.769000, \"POP_CL\": 6, \"POP2000\": 42068, \"WHITE\": 38410, \"BLACK\": 691, \"AMERI_ES\": 67, \"ASIAN\": 1367, \"HAWN_PI\": 15, \"OTHER\": 765, \"MULT_RACE\": 753, \"HISPANIC\": 1805, \"MALES\": 20441, \"FEMALES\": 21627, \"AGE_UNDER5\": 2942, \"AGE_5_17\": 7732, \"AGE_18_21\": 1581, \"AGE_22_29\": 4133, \"AGE_30_39\": 7720, \"AGE_40_49\": 6550, \"AGE_50_64\": 5988, \"AGE_65_UP\": 5422, \"MED_AGE\": 36.100000, \"MED_AGE_M\": 35.000000, \"MED_AGE_F\": 37.200000, \"HOUSEHOLDS\": 16019, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 1785, \"HSEHLD_1_F\": 2332, \"MARHH_CHD\": 4002, \"MARHH_NO_C\": 4580, \"MHH_CHILD\": 321, \"FHH_CHILD\": 1021, \"FAMILIES\": 10921, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 16554, \"VACANT\": 535, \"OWNER_OCC\": 10224, \"RENTER_OCC\": 5795 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.315017942800836, 41.928133306901564 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Barnstable Town\", \"CLASS\": \"city\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"03600\", \"CAPITAL\": \"N\", \"AREALAND\": 60.036000, \"AREAWATER\": 16.213000, \"POP_CL\": 6, \"POP2000\": 47821, \"WHITE\": 43925, \"BLACK\": 1309, \"AMERI_ES\": 283, \"ASIAN\": 387, \"HAWN_PI\": 18, \"OTHER\": 799, \"MULT_RACE\": 1100, \"HISPANIC\": 812, \"MALES\": 22864, \"FEMALES\": 24957, \"AGE_UNDER5\": 2509, \"AGE_5_17\": 7989, \"AGE_18_21\": 1596, \"AGE_22_29\": 3187, \"AGE_30_39\": 6723, \"AGE_40_49\": 7703, \"AGE_50_64\": 8515, \"AGE_65_UP\": 9599, \"MED_AGE\": 42.300000, \"MED_AGE_M\": 40.900000, \"MED_AGE_F\": 43.700000, \"HOUSEHOLDS\": 19626, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 2030, \"HSEHLD_1_F\": 3407, \"MARHH_CHD\": 3777, \"MARHH_NO_C\": 6498, \"MHH_CHILD\": 274, \"FHH_CHILD\": 1234, \"FAMILIES\": 13005, \"AVE_FAM_SZ\": 2.880000, \"HSE_UNITS\": 25018, \"VACANT\": 5392, \"OWNER_OCC\": 14954, \"RENTER_OCC\": 4672 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -70.353743118973242, 41.65921444197641 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Belmont\", \"CLASS\": \"CDP\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"05105\", \"CAPITAL\": \"N\", \"AREALAND\": 4.661000, \"AREAWATER\": 0.045000, \"POP_CL\": 6, \"POP2000\": 24194, \"WHITE\": 22062, \"BLACK\": 266, \"AMERI_ES\": 31, \"ASIAN\": 1393, \"HAWN_PI\": 2, \"OTHER\": 100, \"MULT_RACE\": 340, \"HISPANIC\": 440, \"MALES\": 11292, \"FEMALES\": 12902, \"AGE_UNDER5\": 1415, \"AGE_5_17\": 4072, \"AGE_18_21\": 545, \"AGE_22_29\": 1977, \"AGE_30_39\": 3912, \"AGE_40_49\": 4120, \"AGE_50_64\": 4104, \"AGE_65_UP\": 4049, \"MED_AGE\": 40.400000, \"MED_AGE_M\": 38.800000, \"MED_AGE_F\": 41.600000, \"HOUSEHOLDS\": 9732, \"AVE_HH_SZ\": 2.450000, \"HSEHLD_1_M\": 819, \"HSEHLD_1_F\": 1705, \"MARHH_CHD\": 2544, \"MARHH_NO_C\": 2798, \"MHH_CHILD\": 87, \"FHH_CHILD\": 390, \"FAMILIES\": 6454, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 9980, \"VACANT\": 248, \"OWNER_OCC\": 5909, \"RENTER_OCC\": 3823 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.175207970592851, 42.39158328886699 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Beverly\", \"CLASS\": \"city\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"05595\", \"CAPITAL\": \"N\", \"AREALAND\": 16.599000, \"AREAWATER\": 6.138000, \"POP_CL\": 6, \"POP2000\": 39862, \"WHITE\": 38257, \"BLACK\": 413, \"AMERI_ES\": 70, \"ASIAN\": 511, \"HAWN_PI\": 12, \"OTHER\": 207, \"MULT_RACE\": 392, \"HISPANIC\": 720, \"MALES\": 18851, \"FEMALES\": 21011, \"AGE_UNDER5\": 2504, \"AGE_5_17\": 6151, \"AGE_18_21\": 2274, \"AGE_22_29\": 3765, \"AGE_30_39\": 6426, \"AGE_40_49\": 6473, \"AGE_50_64\": 6039, \"AGE_65_UP\": 6230, \"MED_AGE\": 38.300000, \"MED_AGE_M\": 37.000000, \"MED_AGE_F\": 39.500000, \"HOUSEHOLDS\": 15750, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 1879, \"HSEHLD_1_F\": 2824, \"MARHH_CHD\": 3556, \"MARHH_NO_C\": 4334, \"MHH_CHILD\": 184, \"FHH_CHILD\": 798, \"FAMILIES\": 9907, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 16275, \"VACANT\": 525, \"OWNER_OCC\": 9457, \"RENTER_OCC\": 6293 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -70.876273853832458, 42.561038817775056 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Boston\", \"CLASS\": \"city\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"07000\", \"CAPITAL\": \"Y\", \"AREALAND\": 48.426000, \"AREAWATER\": 41.208000, \"POP_CL\": 9, \"POP2000\": 589141, \"WHITE\": 320944, \"BLACK\": 149202, \"AMERI_ES\": 2365, \"ASIAN\": 44284, \"HAWN_PI\": 366, \"OTHER\": 46102, \"MULT_RACE\": 25878, \"HISPANIC\": 85089, \"MALES\": 283588, \"FEMALES\": 305553, \"AGE_UNDER5\": 32046, \"AGE_5_17\": 84513, \"AGE_18_21\": 53455, \"AGE_22_29\": 110119, \"AGE_30_39\": 103426, \"AGE_40_49\": 73476, \"AGE_50_64\": 70770, \"AGE_65_UP\": 61336, \"MED_AGE\": 31.100000, \"MED_AGE_M\": 30.400000, \"MED_AGE_F\": 31.800000, \"HOUSEHOLDS\": 239528, \"AVE_HH_SZ\": 2.310000, \"HSEHLD_1_M\": 40069, \"HSEHLD_1_F\": 48875, \"MARHH_CHD\": 28219, \"MARHH_NO_C\": 37528, \"MHH_CHILD\": 3298, \"FHH_CHILD\": 22793, \"FAMILIES\": 115096, \"AVE_FAM_SZ\": 3.170000, \"HSE_UNITS\": 251935, \"VACANT\": 12407, \"OWNER_OCC\": 77226, \"RENTER_OCC\": 162302 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.089628337125816, 42.32163598130164 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Braintree\", \"CLASS\": \"CDP\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"07700\", \"CAPITAL\": \"N\", \"AREALAND\": 13.403000, \"AREAWATER\": 0.629000, \"POP_CL\": 6, \"POP2000\": 33698, \"WHITE\": 31677, \"BLACK\": 391, \"AMERI_ES\": 36, \"ASIAN\": 1051, \"HAWN_PI\": 11, \"OTHER\": 216, \"MULT_RACE\": 316, \"HISPANIC\": 394, \"MALES\": 15874, \"FEMALES\": 17824, \"AGE_UNDER5\": 2076, \"AGE_5_17\": 5500, \"AGE_18_21\": 1214, \"AGE_22_29\": 2875, \"AGE_30_39\": 5166, \"AGE_40_49\": 5130, \"AGE_50_64\": 5628, \"AGE_65_UP\": 6109, \"MED_AGE\": 40.000000, \"MED_AGE_M\": 38.200000, \"MED_AGE_F\": 41.800000, \"HOUSEHOLDS\": 12600, \"AVE_HH_SZ\": 2.610000, \"HSEHLD_1_M\": 1027, \"HSEHLD_1_F\": 2047, \"MARHH_CHD\": 3034, \"MARHH_NO_C\": 3942, \"MHH_CHILD\": 113, \"FHH_CHILD\": 593, \"FAMILIES\": 8877, \"AVE_FAM_SZ\": 3.160000, \"HSE_UNITS\": 12921, \"VACANT\": 321, \"OWNER_OCC\": 9750, \"RENTER_OCC\": 2850 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.000213913138694, 42.209595791515561 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Brockton\", \"CLASS\": \"city\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"09000\", \"CAPITAL\": \"N\", \"AREALAND\": 21.468000, \"AREAWATER\": 0.125000, \"POP_CL\": 7, \"POP2000\": 94304, \"WHITE\": 57989, \"BLACK\": 16811, \"AMERI_ES\": 338, \"ASIAN\": 2066, \"HAWN_PI\": 34, \"OTHER\": 9728, \"MULT_RACE\": 7338, \"HISPANIC\": 7552, \"MALES\": 45206, \"FEMALES\": 49098, \"AGE_UNDER5\": 6846, \"AGE_5_17\": 19408, \"AGE_18_21\": 5000, \"AGE_22_29\": 10154, \"AGE_30_39\": 14802, \"AGE_40_49\": 13643, \"AGE_50_64\": 13387, \"AGE_65_UP\": 11064, \"MED_AGE\": 34.000000, \"MED_AGE_M\": 32.900000, \"MED_AGE_F\": 35.100000, \"HOUSEHOLDS\": 33675, \"AVE_HH_SZ\": 2.740000, \"HSEHLD_1_M\": 3972, \"HSEHLD_1_F\": 4978, \"MARHH_CHD\": 6702, \"MARHH_NO_C\": 7446, \"MHH_CHILD\": 870, \"FHH_CHILD\": 4203, \"FAMILIES\": 22748, \"AVE_FAM_SZ\": 3.350000, \"HSE_UNITS\": 34837, \"VACANT\": 1162, \"OWNER_OCC\": 18375, \"RENTER_OCC\": 15300 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.022310028561677, 42.082540224154158 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Brookline\", \"CLASS\": \"CDP\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"09210\", \"CAPITAL\": \"N\", \"AREALAND\": 6.791000, \"AREAWATER\": 0.032000, \"POP_CL\": 7, \"POP2000\": 57107, \"WHITE\": 46304, \"BLACK\": 1566, \"AMERI_ES\": 71, \"ASIAN\": 7325, \"HAWN_PI\": 16, \"OTHER\": 578, \"MULT_RACE\": 1247, \"HISPANIC\": 2018, \"MALES\": 25832, \"FEMALES\": 31275, \"AGE_UNDER5\": 2639, \"AGE_5_17\": 6864, \"AGE_18_21\": 2497, \"AGE_22_29\": 11556, \"AGE_30_39\": 10021, \"AGE_40_49\": 7735, \"AGE_50_64\": 8687, \"AGE_65_UP\": 7108, \"MED_AGE\": 34.500000, \"MED_AGE_M\": 33.600000, \"MED_AGE_F\": 35.300000, \"HOUSEHOLDS\": 25594, \"AVE_HH_SZ\": 2.180000, \"HSEHLD_1_M\": 3355, \"HSEHLD_1_F\": 6040, \"MARHH_CHD\": 4481, \"MARHH_NO_C\": 5352, \"MHH_CHILD\": 172, \"FHH_CHILD\": 962, \"FAMILIES\": 12227, \"AVE_FAM_SZ\": 2.860000, \"HSE_UNITS\": 26413, \"VACANT\": 819, \"OWNER_OCC\": 11583, \"RENTER_OCC\": 14011 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.134143479378267, 42.330702074442776 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Burlington\", \"CLASS\": \"CDP\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"09875\", \"CAPITAL\": \"N\", \"AREALAND\": 11.813000, \"AREAWATER\": 0.067000, \"POP_CL\": 6, \"POP2000\": 22876, \"WHITE\": 19836, \"BLACK\": 312, \"AMERI_ES\": 16, \"ASIAN\": 2436, \"HAWN_PI\": 5, \"OTHER\": 74, \"MULT_RACE\": 197, \"HISPANIC\": 296, \"MALES\": 11265, \"FEMALES\": 11611, \"AGE_UNDER5\": 1575, \"AGE_5_17\": 3818, \"AGE_18_21\": 777, \"AGE_22_29\": 2054, \"AGE_30_39\": 3884, \"AGE_40_49\": 3469, \"AGE_50_64\": 4125, \"AGE_65_UP\": 3174, \"MED_AGE\": 38.300000, \"MED_AGE_M\": 37.100000, \"MED_AGE_F\": 39.600000, \"HOUSEHOLDS\": 8289, \"AVE_HH_SZ\": 2.760000, \"HSEHLD_1_M\": 640, \"HSEHLD_1_F\": 947, \"MARHH_CHD\": 2349, \"MARHH_NO_C\": 3058, \"MHH_CHILD\": 57, \"FHH_CHILD\": 299, \"FAMILIES\": 6371, \"AVE_FAM_SZ\": 3.180000, \"HSE_UNITS\": 8445, \"VACANT\": 156, \"OWNER_OCC\": 6589, \"RENTER_OCC\": 1700 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.200581464264758, 42.506398859667954 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cambridge\", \"CLASS\": \"city\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"11000\", \"CAPITAL\": \"N\", \"AREALAND\": 6.429000, \"AREAWATER\": 0.700000, \"POP_CL\": 8, \"POP2000\": 101355, \"WHITE\": 69022, \"BLACK\": 12079, \"AMERI_ES\": 290, \"ASIAN\": 12036, \"HAWN_PI\": 77, \"OTHER\": 3230, \"MULT_RACE\": 4621, \"HISPANIC\": 7455, \"MALES\": 49674, \"FEMALES\": 51681, \"AGE_UNDER5\": 4125, \"AGE_5_17\": 9322, \"AGE_18_21\": 12135, \"AGE_22_29\": 24058, \"AGE_30_39\": 17967, \"AGE_40_49\": 12208, \"AGE_50_64\": 12258, \"AGE_65_UP\": 9282, \"MED_AGE\": 30.400000, \"MED_AGE_M\": 29.400000, \"MED_AGE_F\": 31.600000, \"HOUSEHOLDS\": 42615, \"AVE_HH_SZ\": 2.030000, \"HSEHLD_1_M\": 7806, \"HSEHLD_1_F\": 9843, \"MARHH_CHD\": 4835, \"MARHH_NO_C\": 7573, \"MHH_CHILD\": 326, \"FHH_CHILD\": 2342, \"FAMILIES\": 17595, \"AVE_FAM_SZ\": 2.830000, \"HSE_UNITS\": 44725, \"VACANT\": 2110, \"OWNER_OCC\": 13760, \"RENTER_OCC\": 28855 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.111063908252333, 42.373784574892788 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Chelsea\", \"CLASS\": \"city\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"13205\", \"CAPITAL\": \"N\", \"AREALAND\": 2.187000, \"AREAWATER\": 0.294000, \"POP_CL\": 6, \"POP2000\": 35080, \"WHITE\": 20328, \"BLACK\": 2544, \"AMERI_ES\": 170, \"ASIAN\": 1647, \"HAWN_PI\": 32, \"OTHER\": 8049, \"MULT_RACE\": 2310, \"HISPANIC\": 16984, \"MALES\": 17617, \"FEMALES\": 17463, \"AGE_UNDER5\": 2829, \"AGE_5_17\": 6739, \"AGE_18_21\": 1966, \"AGE_22_29\": 5054, \"AGE_30_39\": 6404, \"AGE_40_49\": 4361, \"AGE_50_64\": 3794, \"AGE_65_UP\": 3933, \"MED_AGE\": 31.300000, \"MED_AGE_M\": 30.800000, \"MED_AGE_F\": 32.000000, \"HOUSEHOLDS\": 11888, \"AVE_HH_SZ\": 2.870000, \"HSEHLD_1_M\": 1561, \"HSEHLD_1_F\": 1860, \"MARHH_CHD\": 2403, \"MARHH_NO_C\": 1985, \"MHH_CHILD\": 382, \"FHH_CHILD\": 1542, \"FAMILIES\": 7614, \"AVE_FAM_SZ\": 3.500000, \"HSE_UNITS\": 12337, \"VACANT\": 449, \"OWNER_OCC\": 3440, \"RENTER_OCC\": 8448 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.034057385414826, 42.396422201584478 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Chicopee\", \"CLASS\": \"city\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"13660\", \"CAPITAL\": \"N\", \"AREALAND\": 22.870000, \"AREAWATER\": 1.028000, \"POP_CL\": 7, \"POP2000\": 54653, \"WHITE\": 49089, \"BLACK\": 1244, \"AMERI_ES\": 107, \"ASIAN\": 474, \"HAWN_PI\": 57, \"OTHER\": 2679, \"MULT_RACE\": 1003, \"HISPANIC\": 4790, \"MALES\": 25994, \"FEMALES\": 28659, \"AGE_UNDER5\": 2986, \"AGE_5_17\": 9383, \"AGE_18_21\": 2703, \"AGE_22_29\": 5415, \"AGE_30_39\": 7934, \"AGE_40_49\": 8128, \"AGE_50_64\": 8466, \"AGE_65_UP\": 9638, \"MED_AGE\": 38.700000, \"MED_AGE_M\": 37.100000, \"MED_AGE_F\": 40.300000, \"HOUSEHOLDS\": 23117, \"AVE_HH_SZ\": 2.320000, \"HSEHLD_1_M\": 3094, \"HSEHLD_1_F\": 4466, \"MARHH_CHD\": 3742, \"MARHH_NO_C\": 6117, \"MHH_CHILD\": 464, \"FHH_CHILD\": 1929, \"FAMILIES\": 14139, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 24424, \"VACANT\": 1307, \"OWNER_OCC\": 13717, \"RENTER_OCC\": 9400 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -72.588885248349314, 42.170175819605653 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Danvers\", \"CLASS\": \"CDP\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"16285\", \"CAPITAL\": \"N\", \"AREALAND\": 13.280000, \"AREAWATER\": 0.809000, \"POP_CL\": 6, \"POP2000\": 25212, \"WHITE\": 24638, \"BLACK\": 87, \"AMERI_ES\": 25, \"ASIAN\": 281, \"HAWN_PI\": 4, \"OTHER\": 55, \"MULT_RACE\": 122, \"HISPANIC\": 210, \"MALES\": 11721, \"FEMALES\": 13491, \"AGE_UNDER5\": 1391, \"AGE_5_17\": 4451, \"AGE_18_21\": 988, \"AGE_22_29\": 1735, \"AGE_30_39\": 3870, \"AGE_40_49\": 4305, \"AGE_50_64\": 4141, \"AGE_65_UP\": 4331, \"MED_AGE\": 40.400000, \"MED_AGE_M\": 39.300000, \"MED_AGE_F\": 41.300000, \"HOUSEHOLDS\": 9555, \"AVE_HH_SZ\": 2.530000, \"HSEHLD_1_M\": 924, \"HSEHLD_1_F\": 1613, \"MARHH_CHD\": 2426, \"MARHH_NO_C\": 2945, \"MHH_CHILD\": 108, \"FHH_CHILD\": 422, \"FAMILIES\": 6562, \"AVE_FAM_SZ\": 3.110000, \"HSE_UNITS\": 9762, \"VACANT\": 207, \"OWNER_OCC\": 7371, \"RENTER_OCC\": 2184 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -70.943777265834782, 42.569798295180384 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Dedham\", \"CLASS\": \"CDP\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"16530\", \"CAPITAL\": \"N\", \"AREALAND\": 10.453000, \"AREAWATER\": 0.192000, \"POP_CL\": 6, \"POP2000\": 23464, \"WHITE\": 22175, \"BLACK\": 362, \"AMERI_ES\": 37, \"ASIAN\": 439, \"HAWN_PI\": 10, \"OTHER\": 188, \"MULT_RACE\": 253, \"HISPANIC\": 567, \"MALES\": 11329, \"FEMALES\": 12135, \"AGE_UNDER5\": 1435, \"AGE_5_17\": 3773, \"AGE_18_21\": 740, \"AGE_22_29\": 1994, \"AGE_30_39\": 3979, \"AGE_40_49\": 3739, \"AGE_50_64\": 3899, \"AGE_65_UP\": 3905, \"MED_AGE\": 39.600000, \"MED_AGE_M\": 38.200000, \"MED_AGE_F\": 41.000000, \"HOUSEHOLDS\": 8654, \"AVE_HH_SZ\": 2.610000, \"HSEHLD_1_M\": 713, \"HSEHLD_1_F\": 1352, \"MARHH_CHD\": 2151, \"MARHH_NO_C\": 2723, \"MHH_CHILD\": 72, \"FHH_CHILD\": 383, \"FAMILIES\": 6146, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 8908, \"VACANT\": 254, \"OWNER_OCC\": 6937, \"RENTER_OCC\": 1717 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.166024994819551, 42.244646374914538 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Easthampton\", \"CLASS\": \"city\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"19330\", \"CAPITAL\": \"N\", \"AREALAND\": 13.417000, \"AREAWATER\": 0.187000, \"POP_CL\": 6, \"POP2000\": 15994, \"WHITE\": 15260, \"BLACK\": 102, \"AMERI_ES\": 23, \"ASIAN\": 275, \"HAWN_PI\": 1, \"OTHER\": 180, \"MULT_RACE\": 153, \"HISPANIC\": 336, \"MALES\": 7687, \"FEMALES\": 8307, \"AGE_UNDER5\": 854, \"AGE_5_17\": 2528, \"AGE_18_21\": 651, \"AGE_22_29\": 1694, \"AGE_30_39\": 2636, \"AGE_40_49\": 2813, \"AGE_50_64\": 2556, \"AGE_65_UP\": 2262, \"MED_AGE\": 38.600000, \"MED_AGE_M\": 37.600000, \"MED_AGE_F\": 39.700000, \"HOUSEHOLDS\": 6854, \"AVE_HH_SZ\": 2.330000, \"HSEHLD_1_M\": 856, \"HSEHLD_1_F\": 1229, \"MARHH_CHD\": 1302, \"MARHH_NO_C\": 1924, \"MHH_CHILD\": 119, \"FHH_CHILD\": 366, \"FAMILIES\": 4170, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 7083, \"VACANT\": 229, \"OWNER_OCC\": 4159, \"RENTER_OCC\": 2695 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -72.668773043500593, 42.265156067102424 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Everett\", \"CLASS\": \"city\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"21990\", \"CAPITAL\": \"N\", \"AREALAND\": 3.384000, \"AREAWATER\": 0.282000, \"POP_CL\": 6, \"POP2000\": 38037, \"WHITE\": 30321, \"BLACK\": 2386, \"AMERI_ES\": 120, \"ASIAN\": 1236, \"HAWN_PI\": 26, \"OTHER\": 1898, \"MULT_RACE\": 2050, \"HISPANIC\": 3617, \"MALES\": 18119, \"FEMALES\": 19918, \"AGE_UNDER5\": 2244, \"AGE_5_17\": 5987, \"AGE_18_21\": 1766, \"AGE_22_29\": 5019, \"AGE_30_39\": 6926, \"AGE_40_49\": 5388, \"AGE_50_64\": 5105, \"AGE_65_UP\": 5602, \"MED_AGE\": 35.600000, \"MED_AGE_M\": 34.200000, \"MED_AGE_F\": 37.000000, \"HOUSEHOLDS\": 15435, \"AVE_HH_SZ\": 2.450000, \"HSEHLD_1_M\": 1928, \"HSEHLD_1_F\": 2905, \"MARHH_CHD\": 2827, \"MARHH_NO_C\": 3632, \"MHH_CHILD\": 252, \"FHH_CHILD\": 1182, \"FAMILIES\": 9551, \"AVE_FAM_SZ\": 3.110000, \"HSE_UNITS\": 15908, \"VACANT\": 473, \"OWNER_OCC\": 6391, \"RENTER_OCC\": 9044 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.0527303970768, 42.409955815010754 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fall River\", \"CLASS\": \"city\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"23000\", \"CAPITAL\": \"N\", \"AREALAND\": 31.022000, \"AREAWATER\": 7.202000, \"POP_CL\": 7, \"POP2000\": 91938, \"WHITE\": 83815, \"BLACK\": 2283, \"AMERI_ES\": 172, \"ASIAN\": 1987, \"HAWN_PI\": 25, \"OTHER\": 1311, \"MULT_RACE\": 2345, \"HISPANIC\": 3040, \"MALES\": 42953, \"FEMALES\": 48985, \"AGE_UNDER5\": 5846, \"AGE_5_17\": 16333, \"AGE_18_21\": 4629, \"AGE_22_29\": 10985, \"AGE_30_39\": 13797, \"AGE_40_49\": 11979, \"AGE_50_64\": 12797, \"AGE_65_UP\": 15572, \"MED_AGE\": 35.700000, \"MED_AGE_M\": 33.900000, \"MED_AGE_F\": 37.600000, \"HOUSEHOLDS\": 38759, \"AVE_HH_SZ\": 2.320000, \"HSEHLD_1_M\": 5439, \"HSEHLD_1_F\": 7808, \"MARHH_CHD\": 6602, \"MARHH_NO_C\": 9011, \"MHH_CHILD\": 759, \"FHH_CHILD\": 4247, \"FAMILIES\": 23558, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 41857, \"VACANT\": 3098, \"OWNER_OCC\": 13521, \"RENTER_OCC\": 25238 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.147477139843531, 41.698139367491081 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fitchburg\", \"CLASS\": \"city\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"23875\", \"CAPITAL\": \"N\", \"AREALAND\": 27.761000, \"AREAWATER\": 0.301000, \"POP_CL\": 6, \"POP2000\": 39102, \"WHITE\": 32007, \"BLACK\": 1426, \"AMERI_ES\": 138, \"ASIAN\": 1668, \"HAWN_PI\": 13, \"OTHER\": 2652, \"MULT_RACE\": 1198, \"HISPANIC\": 5852, \"MALES\": 18659, \"FEMALES\": 20443, \"AGE_UNDER5\": 2637, \"AGE_5_17\": 7467, \"AGE_18_21\": 2736, \"AGE_22_29\": 4492, \"AGE_30_39\": 5658, \"AGE_40_49\": 5365, \"AGE_50_64\": 5034, \"AGE_65_UP\": 5713, \"MED_AGE\": 34.100000, \"MED_AGE_M\": 33.000000, \"MED_AGE_F\": 35.300000, \"HOUSEHOLDS\": 14943, \"AVE_HH_SZ\": 2.500000, \"HSEHLD_1_M\": 1975, \"HSEHLD_1_F\": 2551, \"MARHH_CHD\": 2805, \"MARHH_NO_C\": 3632, \"MHH_CHILD\": 395, \"FHH_CHILD\": 1430, \"FAMILIES\": 9363, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 16002, \"VACANT\": 1059, \"OWNER_OCC\": 7708, \"RENTER_OCC\": 7235 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.803759809005257, 42.578715547411051 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Framingham\", \"CLASS\": \"CDP\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"24960\", \"CAPITAL\": \"N\", \"AREALAND\": 25.120000, \"AREAWATER\": 1.321000, \"POP_CL\": 7, \"POP2000\": 66910, \"WHITE\": 53373, \"BLACK\": 3409, \"AMERI_ES\": 116, \"ASIAN\": 3527, \"HAWN_PI\": 27, \"OTHER\": 4195, \"MULT_RACE\": 2263, \"HISPANIC\": 7265, \"MALES\": 31942, \"FEMALES\": 34968, \"AGE_UNDER5\": 4324, \"AGE_5_17\": 10011, \"AGE_18_21\": 3366, \"AGE_22_29\": 7951, \"AGE_30_39\": 12348, \"AGE_40_49\": 10140, \"AGE_50_64\": 10079, \"AGE_65_UP\": 8691, \"MED_AGE\": 36.200000, \"MED_AGE_M\": 35.300000, \"MED_AGE_F\": 37.000000, \"HOUSEHOLDS\": 26153, \"AVE_HH_SZ\": 2.430000, \"HSEHLD_1_M\": 3302, \"HSEHLD_1_F\": 4202, \"MARHH_CHD\": 5826, \"MARHH_NO_C\": 7249, \"MHH_CHILD\": 279, \"FHH_CHILD\": 1505, \"FAMILIES\": 16573, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 26734, \"VACANT\": 581, \"OWNER_OCC\": 14512, \"RENTER_OCC\": 11641 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.427067571937584, 42.299827505182769 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Franklin\", \"CLASS\": \"city\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"25100\", \"CAPITAL\": \"N\", \"AREALAND\": 26.742000, \"AREAWATER\": 0.271000, \"POP_CL\": 6, \"POP2000\": 29560, \"WHITE\": 28364, \"BLACK\": 318, \"AMERI_ES\": 43, \"ASIAN\": 491, \"HAWN_PI\": 9, \"OTHER\": 87, \"MULT_RACE\": 248, \"HISPANIC\": 318, \"MALES\": 14487, \"FEMALES\": 15073, \"AGE_UNDER5\": 2774, \"AGE_5_17\": 6191, \"AGE_18_21\": 1356, \"AGE_22_29\": 1988, \"AGE_30_39\": 5908, \"AGE_40_49\": 5277, \"AGE_50_64\": 3648, \"AGE_65_UP\": 2418, \"MED_AGE\": 34.800000, \"MED_AGE_M\": 34.300000, \"MED_AGE_F\": 35.300000, \"HOUSEHOLDS\": 10152, \"AVE_HH_SZ\": 2.850000, \"HSEHLD_1_M\": 749, \"HSEHLD_1_F\": 1109, \"MARHH_CHD\": 3951, \"MARHH_NO_C\": 2791, \"MHH_CHILD\": 111, \"FHH_CHILD\": 461, \"FAMILIES\": 7881, \"AVE_FAM_SZ\": 3.290000, \"HSE_UNITS\": 10327, \"VACANT\": 175, \"OWNER_OCC\": 8247, \"RENTER_OCC\": 1905 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.407348346562912, 42.089136732686889 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Gardner\", \"CLASS\": \"city\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"25485\", \"CAPITAL\": \"N\", \"AREALAND\": 22.190000, \"AREAWATER\": 0.809000, \"POP_CL\": 6, \"POP2000\": 20770, \"WHITE\": 19343, \"BLACK\": 476, \"AMERI_ES\": 70, \"ASIAN\": 284, \"HAWN_PI\": 16, \"OTHER\": 253, \"MULT_RACE\": 328, \"HISPANIC\": 848, \"MALES\": 10645, \"FEMALES\": 10125, \"AGE_UNDER5\": 1244, \"AGE_5_17\": 3685, \"AGE_18_21\": 904, \"AGE_22_29\": 2091, \"AGE_30_39\": 3389, \"AGE_40_49\": 3282, \"AGE_50_64\": 2834, \"AGE_65_UP\": 3341, \"MED_AGE\": 37.500000, \"MED_AGE_M\": 36.500000, \"MED_AGE_F\": 38.700000, \"HOUSEHOLDS\": 8282, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 1189, \"HSEHLD_1_F\": 1498, \"MARHH_CHD\": 1582, \"MARHH_NO_C\": 2095, \"MHH_CHILD\": 208, \"FHH_CHILD\": 719, \"FAMILIES\": 5086, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 8838, \"VACANT\": 556, \"OWNER_OCC\": 4520, \"RENTER_OCC\": 3762 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.991163524334311, 42.573943897014992 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Gloucester\", \"CLASS\": \"city\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"26150\", \"CAPITAL\": \"N\", \"AREALAND\": 25.963000, \"AREAWATER\": 15.532000, \"POP_CL\": 6, \"POP2000\": 30273, \"WHITE\": 29361, \"BLACK\": 186, \"AMERI_ES\": 37, \"ASIAN\": 218, \"HAWN_PI\": 7, \"OTHER\": 152, \"MULT_RACE\": 312, \"HISPANIC\": 449, \"MALES\": 14502, \"FEMALES\": 15771, \"AGE_UNDER5\": 1757, \"AGE_5_17\": 4902, \"AGE_18_21\": 1133, \"AGE_22_29\": 2484, \"AGE_30_39\": 4784, \"AGE_40_49\": 5174, \"AGE_50_64\": 5326, \"AGE_65_UP\": 4713, \"MED_AGE\": 40.200000, \"MED_AGE_M\": 39.100000, \"MED_AGE_F\": 41.200000, \"HOUSEHOLDS\": 12592, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 1616, \"HSEHLD_1_F\": 2245, \"MARHH_CHD\": 2543, \"MARHH_NO_C\": 3598, \"MHH_CHILD\": 192, \"FHH_CHILD\": 743, \"FAMILIES\": 7896, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 13958, \"VACANT\": 1366, \"OWNER_OCC\": 7523, \"RENTER_OCC\": 5069 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -70.676147741461591, 42.624063697447653 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Greenfield\", \"CLASS\": \"CDP\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"27060\", \"CAPITAL\": \"N\", \"AREALAND\": 5.736000, \"AREAWATER\": 0.145000, \"POP_CL\": 6, \"POP2000\": 13716, \"WHITE\": 12774, \"BLACK\": 193, \"AMERI_ES\": 50, \"ASIAN\": 168, \"HAWN_PI\": 1, \"OTHER\": 174, \"MULT_RACE\": 356, \"HISPANIC\": 471, \"MALES\": 6467, \"FEMALES\": 7249, \"AGE_UNDER5\": 739, \"AGE_5_17\": 2230, \"AGE_18_21\": 702, \"AGE_22_29\": 1468, \"AGE_30_39\": 2050, \"AGE_40_49\": 2229, \"AGE_50_64\": 1957, \"AGE_65_UP\": 2341, \"MED_AGE\": 38.400000, \"MED_AGE_M\": 36.200000, \"MED_AGE_F\": 40.400000, \"HOUSEHOLDS\": 6117, \"AVE_HH_SZ\": 2.130000, \"HSEHLD_1_M\": 1027, \"HSEHLD_1_F\": 1444, \"MARHH_CHD\": 884, \"MARHH_NO_C\": 1218, \"MHH_CHILD\": 133, \"FHH_CHILD\": 515, \"FAMILIES\": 3119, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 6435, \"VACANT\": 318, \"OWNER_OCC\": 2848, \"RENTER_OCC\": 3269 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -72.599843998399066, 42.592725820393312 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Haverhill\", \"CLASS\": \"city\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"29405\", \"CAPITAL\": \"N\", \"AREALAND\": 33.327000, \"AREAWATER\": 2.306000, \"POP_CL\": 7, \"POP2000\": 58969, \"WHITE\": 52878, \"BLACK\": 1419, \"AMERI_ES\": 129, \"ASIAN\": 801, \"HAWN_PI\": 18, \"OTHER\": 2536, \"MULT_RACE\": 1188, \"HISPANIC\": 5174, \"MALES\": 27984, \"FEMALES\": 30985, \"AGE_UNDER5\": 4338, \"AGE_5_17\": 10814, \"AGE_18_21\": 2627, \"AGE_22_29\": 6016, \"AGE_30_39\": 10692, \"AGE_40_49\": 8981, \"AGE_50_64\": 7954, \"AGE_65_UP\": 7547, \"MED_AGE\": 35.500000, \"MED_AGE_M\": 34.400000, \"MED_AGE_F\": 36.500000, \"HOUSEHOLDS\": 22976, \"AVE_HH_SZ\": 2.510000, \"HSEHLD_1_M\": 2608, \"HSEHLD_1_F\": 3974, \"MARHH_CHD\": 5187, \"MARHH_NO_C\": 5614, \"MHH_CHILD\": 483, \"FHH_CHILD\": 1904, \"FAMILIES\": 14858, \"AVE_FAM_SZ\": 3.110000, \"HSE_UNITS\": 23737, \"VACANT\": 761, \"OWNER_OCC\": 13823, \"RENTER_OCC\": 9153 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.085443284906759, 42.778129378207943 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Holbrook\", \"CLASS\": \"CDP\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"30420\", \"CAPITAL\": \"N\", \"AREALAND\": 7.353000, \"AREAWATER\": 0.052000, \"POP_CL\": 6, \"POP2000\": 10785, \"WHITE\": 9908, \"BLACK\": 430, \"AMERI_ES\": 20, \"ASIAN\": 162, \"HAWN_PI\": 1, \"OTHER\": 120, \"MULT_RACE\": 144, \"HISPANIC\": 257, \"MALES\": 5229, \"FEMALES\": 5556, \"AGE_UNDER5\": 643, \"AGE_5_17\": 1837, \"AGE_18_21\": 433, \"AGE_22_29\": 990, \"AGE_30_39\": 1748, \"AGE_40_49\": 1689, \"AGE_50_64\": 1706, \"AGE_65_UP\": 1739, \"MED_AGE\": 38.400000, \"MED_AGE_M\": 37.500000, \"MED_AGE_F\": 39.600000, \"HOUSEHOLDS\": 4076, \"AVE_HH_SZ\": 2.630000, \"HSEHLD_1_M\": 406, \"HSEHLD_1_F\": 619, \"MARHH_CHD\": 925, \"MARHH_NO_C\": 1285, \"MHH_CHILD\": 46, \"FHH_CHILD\": 220, \"FAMILIES\": 2854, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 4153, \"VACANT\": 77, \"OWNER_OCC\": 3105, \"RENTER_OCC\": 971 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.010901607296248, 42.148391516504795 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Holyoke\", \"CLASS\": \"city\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"30840\", \"CAPITAL\": \"N\", \"AREALAND\": 21.287000, \"AREAWATER\": 1.533000, \"POP_CL\": 6, \"POP2000\": 39838, \"WHITE\": 26197, \"BLACK\": 1476, \"AMERI_ES\": 151, \"ASIAN\": 324, \"HAWN_PI\": 48, \"OTHER\": 10521, \"MULT_RACE\": 1121, \"HISPANIC\": 16485, \"MALES\": 18664, \"FEMALES\": 21174, \"AGE_UNDER5\": 3156, \"AGE_5_17\": 8584, \"AGE_18_21\": 2154, \"AGE_22_29\": 3899, \"AGE_30_39\": 5550, \"AGE_40_49\": 4978, \"AGE_50_64\": 5316, \"AGE_65_UP\": 6201, \"MED_AGE\": 34.000000, \"MED_AGE_M\": 31.900000, \"MED_AGE_F\": 35.600000, \"HOUSEHOLDS\": 14967, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 1816, \"HSEHLD_1_F\": 2815, \"MARHH_CHD\": 2361, \"MARHH_NO_C\": 3103, \"MHH_CHILD\": 338, \"FHH_CHILD\": 2280, \"FAMILIES\": 9478, \"AVE_FAM_SZ\": 3.230000, \"HSE_UNITS\": 16210, \"VACANT\": 1243, \"OWNER_OCC\": 6205, \"RENTER_OCC\": 8762 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -72.624220463276316, 42.203207480899074 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hudson\", \"CLASS\": \"CDP\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"31575\", \"CAPITAL\": \"N\", \"AREALAND\": 5.716000, \"AREAWATER\": 0.176000, \"POP_CL\": 6, \"POP2000\": 14388, \"WHITE\": 13512, \"BLACK\": 126, \"AMERI_ES\": 21, \"ASIAN\": 175, \"HAWN_PI\": 4, \"OTHER\": 236, \"MULT_RACE\": 314, \"HISPANIC\": 501, \"MALES\": 7056, \"FEMALES\": 7332, \"AGE_UNDER5\": 915, \"AGE_5_17\": 2428, \"AGE_18_21\": 553, \"AGE_22_29\": 1402, \"AGE_30_39\": 2595, \"AGE_40_49\": 2269, \"AGE_50_64\": 2346, \"AGE_65_UP\": 1880, \"MED_AGE\": 37.400000, \"MED_AGE_M\": 36.400000, \"MED_AGE_F\": 38.400000, \"HOUSEHOLDS\": 5652, \"AVE_HH_SZ\": 2.520000, \"HSEHLD_1_M\": 623, \"HSEHLD_1_F\": 910, \"MARHH_CHD\": 1358, \"MARHH_NO_C\": 1704, \"MHH_CHILD\": 91, \"FHH_CHILD\": 269, \"FAMILIES\": 3812, \"AVE_FAM_SZ\": 3.100000, \"HSE_UNITS\": 5790, \"VACANT\": 138, \"OWNER_OCC\": 3764, \"RENTER_OCC\": 1888 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.566061766170236, 42.392315179655725 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hull\", \"CLASS\": \"CDP\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"31680\", \"CAPITAL\": \"N\", \"AREALAND\": 3.028000, \"AREAWATER\": 25.178000, \"POP_CL\": 6, \"POP2000\": 11050, \"WHITE\": 10713, \"BLACK\": 51, \"AMERI_ES\": 34, \"ASIAN\": 98, \"HAWN_PI\": 5, \"OTHER\": 51, \"MULT_RACE\": 98, \"HISPANIC\": 120, \"MALES\": 5332, \"FEMALES\": 5718, \"AGE_UNDER5\": 628, \"AGE_5_17\": 1810, \"AGE_18_21\": 375, \"AGE_22_29\": 809, \"AGE_30_39\": 1846, \"AGE_40_49\": 2132, \"AGE_50_64\": 2123, \"AGE_65_UP\": 1327, \"MED_AGE\": 40.200000, \"MED_AGE_M\": 39.600000, \"MED_AGE_F\": 40.900000, \"HOUSEHOLDS\": 4522, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 558, \"HSEHLD_1_F\": 771, \"MARHH_CHD\": 833, \"MARHH_NO_C\": 1265, \"MHH_CHILD\": 73, \"FHH_CHILD\": 277, \"FAMILIES\": 2821, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 5366, \"VACANT\": 844, \"OWNER_OCC\": 3282, \"RENTER_OCC\": 1240 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -70.877193086919917, 42.286390583002785 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lawrence\", \"CLASS\": \"city\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"34550\", \"CAPITAL\": \"N\", \"AREALAND\": 6.960000, \"AREAWATER\": 0.453000, \"POP_CL\": 7, \"POP2000\": 72043, \"WHITE\": 35044, \"BLACK\": 3516, \"AMERI_ES\": 583, \"ASIAN\": 1910, \"HAWN_PI\": 71, \"OTHER\": 26418, \"MULT_RACE\": 4501, \"HISPANIC\": 43019, \"MALES\": 34439, \"FEMALES\": 37604, \"AGE_UNDER5\": 6451, \"AGE_5_17\": 16568, \"AGE_18_21\": 4557, \"AGE_22_29\": 9109, \"AGE_30_39\": 11343, \"AGE_40_49\": 9006, \"AGE_50_64\": 7934, \"AGE_65_UP\": 7075, \"MED_AGE\": 29.500000, \"MED_AGE_M\": 28.200000, \"MED_AGE_F\": 30.500000, \"HOUSEHOLDS\": 24463, \"AVE_HH_SZ\": 2.900000, \"HSEHLD_1_M\": 2809, \"HSEHLD_1_F\": 3424, \"MARHH_CHD\": 4764, \"MARHH_NO_C\": 4200, \"MHH_CHILD\": 891, \"FHH_CHILD\": 4481, \"FAMILIES\": 16905, \"AVE_FAM_SZ\": 3.460000, \"HSE_UNITS\": 25601, \"VACANT\": 1138, \"OWNER_OCC\": 7876, \"RENTER_OCC\": 16587 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.163486165500203, 42.703778725601779 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Leominster\", \"CLASS\": \"city\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"35075\", \"CAPITAL\": \"N\", \"AREALAND\": 28.878000, \"AREAWATER\": 0.879000, \"POP_CL\": 6, \"POP2000\": 41303, \"WHITE\": 35982, \"BLACK\": 1529, \"AMERI_ES\": 63, \"ASIAN\": 1006, \"HAWN_PI\": 24, \"OTHER\": 1785, \"MULT_RACE\": 914, \"HISPANIC\": 4544, \"MALES\": 19860, \"FEMALES\": 21443, \"AGE_UNDER5\": 2929, \"AGE_5_17\": 7612, \"AGE_18_21\": 1636, \"AGE_22_29\": 4123, \"AGE_30_39\": 7068, \"AGE_40_49\": 6419, \"AGE_50_64\": 5883, \"AGE_65_UP\": 5633, \"MED_AGE\": 36.300000, \"MED_AGE_M\": 35.300000, \"MED_AGE_F\": 37.400000, \"HOUSEHOLDS\": 16491, \"AVE_HH_SZ\": 2.480000, \"HSEHLD_1_M\": 1917, \"HSEHLD_1_F\": 2687, \"MARHH_CHD\": 3751, \"MARHH_NO_C\": 4419, \"MHH_CHILD\": 362, \"FHH_CHILD\": 1317, \"FAMILIES\": 10902, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 16976, \"VACANT\": 485, \"OWNER_OCC\": 9545, \"RENTER_OCC\": 6946 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.753966412047177, 42.526550269528983 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lexington\", \"CLASS\": \"CDP\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"35250\", \"CAPITAL\": \"N\", \"AREALAND\": 16.399000, \"AREAWATER\": 0.141000, \"POP_CL\": 6, \"POP2000\": 30355, \"WHITE\": 26146, \"BLACK\": 343, \"AMERI_ES\": 23, \"ASIAN\": 3310, \"HAWN_PI\": 2, \"OTHER\": 102, \"MULT_RACE\": 429, \"HISPANIC\": 428, \"MALES\": 14265, \"FEMALES\": 16090, \"AGE_UNDER5\": 1728, \"AGE_5_17\": 6275, \"AGE_18_21\": 649, \"AGE_22_29\": 1106, \"AGE_30_39\": 3484, \"AGE_40_49\": 5558, \"AGE_50_64\": 5788, \"AGE_65_UP\": 5767, \"MED_AGE\": 43.700000, \"MED_AGE_M\": 42.200000, \"MED_AGE_F\": 45.000000, \"HOUSEHOLDS\": 11110, \"AVE_HH_SZ\": 2.660000, \"HSEHLD_1_M\": 601, \"HSEHLD_1_F\": 1711, \"MARHH_CHD\": 3712, \"MARHH_NO_C\": 3624, \"MHH_CHILD\": 81, \"FHH_CHILD\": 404, \"FAMILIES\": 8429, \"AVE_FAM_SZ\": 3.100000, \"HSE_UNITS\": 11333, \"VACANT\": 223, \"OWNER_OCC\": 9175, \"RENTER_OCC\": 1935 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.227413904967165, 42.444381294372981 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Longmeadow\", \"CLASS\": \"CDP\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"36335\", \"CAPITAL\": \"N\", \"AREALAND\": 9.023000, \"AREAWATER\": 0.483000, \"POP_CL\": 6, \"POP2000\": 15633, \"WHITE\": 14917, \"BLACK\": 108, \"AMERI_ES\": 8, \"ASIAN\": 453, \"HAWN_PI\": 9, \"OTHER\": 41, \"MULT_RACE\": 97, \"HISPANIC\": 170, \"MALES\": 7303, \"FEMALES\": 8330, \"AGE_UNDER5\": 966, \"AGE_5_17\": 3223, \"AGE_18_21\": 513, \"AGE_22_29\": 529, \"AGE_30_39\": 1830, \"AGE_40_49\": 2688, \"AGE_50_64\": 3099, \"AGE_65_UP\": 2785, \"MED_AGE\": 42.900000, \"MED_AGE_M\": 41.900000, \"MED_AGE_F\": 43.900000, \"HOUSEHOLDS\": 5734, \"AVE_HH_SZ\": 2.660000, \"HSEHLD_1_M\": 288, \"HSEHLD_1_F\": 883, \"MARHH_CHD\": 1899, \"MARHH_NO_C\": 2065, \"MHH_CHILD\": 38, \"FHH_CHILD\": 188, \"FAMILIES\": 4435, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 5879, \"VACANT\": 145, \"OWNER_OCC\": 5211, \"RENTER_OCC\": 523 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -72.571463633006388, 42.050411960534049 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lowell\", \"CLASS\": \"city\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"37000\", \"CAPITAL\": \"N\", \"AREALAND\": 13.773000, \"AREAWATER\": 0.762000, \"POP_CL\": 8, \"POP2000\": 105167, \"WHITE\": 72145, \"BLACK\": 4423, \"AMERI_ES\": 256, \"ASIAN\": 17371, \"HAWN_PI\": 38, \"OTHER\": 6813, \"MULT_RACE\": 4121, \"HISPANIC\": 14734, \"MALES\": 51807, \"FEMALES\": 53360, \"AGE_UNDER5\": 7696, \"AGE_5_17\": 20645, \"AGE_18_21\": 7348, \"AGE_22_29\": 14217, \"AGE_30_39\": 17481, \"AGE_40_49\": 14002, \"AGE_50_64\": 12465, \"AGE_65_UP\": 11313, \"MED_AGE\": 31.400000, \"MED_AGE_M\": 30.400000, \"MED_AGE_F\": 32.600000, \"HOUSEHOLDS\": 37887, \"AVE_HH_SZ\": 2.670000, \"HSEHLD_1_M\": 5277, \"HSEHLD_1_F\": 5692, \"MARHH_CHD\": 7627, \"MARHH_NO_C\": 7575, \"MHH_CHILD\": 1057, \"FHH_CHILD\": 4210, \"FAMILIES\": 23982, \"AVE_FAM_SZ\": 3.350000, \"HSE_UNITS\": 39468, \"VACANT\": 1581, \"OWNER_OCC\": 16309, \"RENTER_OCC\": 21578 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.315060152454876, 42.639549738698975 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lynn\", \"CLASS\": \"city\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"37490\", \"CAPITAL\": \"N\", \"AREALAND\": 10.815000, \"AREAWATER\": 2.679000, \"POP_CL\": 7, \"POP2000\": 89050, \"WHITE\": 60452, \"BLACK\": 9394, \"AMERI_ES\": 332, \"ASIAN\": 5730, \"HAWN_PI\": 79, \"OTHER\": 8744, \"MULT_RACE\": 4319, \"HISPANIC\": 16383, \"MALES\": 43079, \"FEMALES\": 45971, \"AGE_UNDER5\": 6505, \"AGE_5_17\": 17546, \"AGE_18_21\": 4640, \"AGE_22_29\": 9887, \"AGE_30_39\": 14206, \"AGE_40_49\": 12963, \"AGE_50_64\": 11935, \"AGE_65_UP\": 11368, \"MED_AGE\": 34.200000, \"MED_AGE_M\": 32.800000, \"MED_AGE_F\": 35.500000, \"HOUSEHOLDS\": 33511, \"AVE_HH_SZ\": 2.620000, \"HSEHLD_1_M\": 4446, \"HSEHLD_1_F\": 5956, \"MARHH_CHD\": 6298, \"MARHH_NO_C\": 7015, \"MHH_CHILD\": 842, \"FHH_CHILD\": 3751, \"FAMILIES\": 21033, \"AVE_FAM_SZ\": 3.310000, \"HSE_UNITS\": 34637, \"VACANT\": 1126, \"OWNER_OCC\": 15277, \"RENTER_OCC\": 18234 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -70.956132348626923, 42.474037950030841 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lynnfield\", \"CLASS\": \"CDP\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"37595\", \"CAPITAL\": \"N\", \"AREALAND\": 10.145000, \"AREAWATER\": 0.337000, \"POP_CL\": 6, \"POP2000\": 11542, \"WHITE\": 11165, \"BLACK\": 50, \"AMERI_ES\": 0, \"ASIAN\": 222, \"HAWN_PI\": 4, \"OTHER\": 24, \"MULT_RACE\": 77, \"HISPANIC\": 77, \"MALES\": 5658, \"FEMALES\": 5884, \"AGE_UNDER5\": 735, \"AGE_5_17\": 2131, \"AGE_18_21\": 347, \"AGE_22_29\": 565, \"AGE_30_39\": 1477, \"AGE_40_49\": 2009, \"AGE_50_64\": 2291, \"AGE_65_UP\": 1987, \"MED_AGE\": 42.600000, \"MED_AGE_M\": 41.600000, \"MED_AGE_F\": 43.500000, \"HOUSEHOLDS\": 4186, \"AVE_HH_SZ\": 2.750000, \"HSEHLD_1_M\": 229, \"HSEHLD_1_F\": 501, \"MARHH_CHD\": 1327, \"MARHH_NO_C\": 1628, \"MHH_CHILD\": 31, \"FHH_CHILD\": 108, \"FAMILIES\": 3350, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 4273, \"VACANT\": 87, \"OWNER_OCC\": 3950, \"RENTER_OCC\": 236 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.028881433939404, 42.527935405202768 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Malden\", \"CLASS\": \"city\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"37875\", \"CAPITAL\": \"N\", \"AREALAND\": 5.074000, \"AREAWATER\": 0.039000, \"POP_CL\": 7, \"POP2000\": 56340, \"WHITE\": 40618, \"BLACK\": 4592, \"AMERI_ES\": 80, \"ASIAN\": 7882, \"HAWN_PI\": 33, \"OTHER\": 1184, \"MULT_RACE\": 1951, \"HISPANIC\": 2696, \"MALES\": 27122, \"FEMALES\": 29218, \"AGE_UNDER5\": 3294, \"AGE_5_17\": 7944, \"AGE_18_21\": 2265, \"AGE_22_29\": 8270, \"AGE_30_39\": 10622, \"AGE_40_49\": 8228, \"AGE_50_64\": 7913, \"AGE_65_UP\": 7804, \"MED_AGE\": 35.700000, \"MED_AGE_M\": 34.600000, \"MED_AGE_F\": 36.900000, \"HOUSEHOLDS\": 23009, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 3040, \"HSEHLD_1_F\": 4370, \"MARHH_CHD\": 4261, \"MARHH_NO_C\": 5582, \"MHH_CHILD\": 239, \"FHH_CHILD\": 1333, \"FAMILIES\": 13570, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 23634, \"VACANT\": 625, \"OWNER_OCC\": 9962, \"RENTER_OCC\": 13047 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.061119974049262, 42.428588651145994 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Marblehead\", \"CLASS\": \"CDP\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"38435\", \"CAPITAL\": \"N\", \"AREALAND\": 4.529000, \"AREAWATER\": 15.102000, \"POP_CL\": 6, \"POP2000\": 20377, \"WHITE\": 19879, \"BLACK\": 89, \"AMERI_ES\": 16, \"ASIAN\": 200, \"HAWN_PI\": 6, \"OTHER\": 38, \"MULT_RACE\": 149, \"HISPANIC\": 179, \"MALES\": 9611, \"FEMALES\": 10766, \"AGE_UNDER5\": 1368, \"AGE_5_17\": 3502, \"AGE_18_21\": 437, \"AGE_22_29\": 1011, \"AGE_30_39\": 3185, \"AGE_40_49\": 3652, \"AGE_50_64\": 4045, \"AGE_65_UP\": 3177, \"MED_AGE\": 41.900000, \"MED_AGE_M\": 40.900000, \"MED_AGE_F\": 42.700000, \"HOUSEHOLDS\": 8541, \"AVE_HH_SZ\": 2.370000, \"HSEHLD_1_M\": 831, \"HSEHLD_1_F\": 1616, \"MARHH_CHD\": 2230, \"MARHH_NO_C\": 2596, \"MHH_CHILD\": 55, \"FHH_CHILD\": 381, \"FAMILIES\": 5683, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 8906, \"VACANT\": 365, \"OWNER_OCC\": 6434, \"RENTER_OCC\": 2107 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -70.86380901713899, 42.497190055896603 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Marlborough\", \"CLASS\": \"city\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"38715\", \"CAPITAL\": \"N\", \"AREALAND\": 21.085000, \"AREAWATER\": 1.084000, \"POP_CL\": 6, \"POP2000\": 36255, \"WHITE\": 31796, \"BLACK\": 787, \"AMERI_ES\": 72, \"ASIAN\": 1364, \"HAWN_PI\": 13, \"OTHER\": 1186, \"MULT_RACE\": 1037, \"HISPANIC\": 2196, \"MALES\": 17869, \"FEMALES\": 18386, \"AGE_UNDER5\": 2554, \"AGE_5_17\": 5877, \"AGE_18_21\": 1236, \"AGE_22_29\": 4158, \"AGE_30_39\": 7215, \"AGE_40_49\": 5752, \"AGE_50_64\": 5273, \"AGE_65_UP\": 4190, \"MED_AGE\": 36.100000, \"MED_AGE_M\": 35.300000, \"MED_AGE_F\": 37.100000, \"HOUSEHOLDS\": 14501, \"AVE_HH_SZ\": 2.470000, \"HSEHLD_1_M\": 1971, \"HSEHLD_1_F\": 2154, \"MARHH_CHD\": 3477, \"MARHH_NO_C\": 3996, \"MHH_CHILD\": 214, \"FHH_CHILD\": 711, \"FAMILIES\": 9285, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 14903, \"VACANT\": 402, \"OWNER_OCC\": 8842, \"RENTER_OCC\": 5659 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.547948247828799, 42.350939458986467 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Maynard\", \"CLASS\": \"CDP\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"39660\", \"CAPITAL\": \"N\", \"AREALAND\": 5.241000, \"AREAWATER\": 0.135000, \"POP_CL\": 6, \"POP2000\": 10433, \"WHITE\": 9874, \"BLACK\": 108, \"AMERI_ES\": 28, \"ASIAN\": 169, \"HAWN_PI\": 0, \"OTHER\": 123, \"MULT_RACE\": 131, \"HISPANIC\": 290, \"MALES\": 4988, \"FEMALES\": 5445, \"AGE_UNDER5\": 737, \"AGE_5_17\": 1705, \"AGE_18_21\": 322, \"AGE_22_29\": 866, \"AGE_30_39\": 2093, \"AGE_40_49\": 1769, \"AGE_50_64\": 1667, \"AGE_65_UP\": 1274, \"MED_AGE\": 37.700000, \"MED_AGE_M\": 36.800000, \"MED_AGE_F\": 38.400000, \"HOUSEHOLDS\": 4292, \"AVE_HH_SZ\": 2.430000, \"HSEHLD_1_M\": 460, \"HSEHLD_1_F\": 762, \"MARHH_CHD\": 989, \"MARHH_NO_C\": 1260, \"MHH_CHILD\": 43, \"FHH_CHILD\": 207, \"FAMILIES\": 2810, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 4406, \"VACANT\": 114, \"OWNER_OCC\": 2997, \"RENTER_OCC\": 1295 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.456380920191918, 42.430813063803676 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Medford\", \"CLASS\": \"city\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"39835\", \"CAPITAL\": \"N\", \"AREALAND\": 8.139000, \"AREAWATER\": 0.503000, \"POP_CL\": 7, \"POP2000\": 55765, \"WHITE\": 48209, \"BLACK\": 3401, \"AMERI_ES\": 63, \"ASIAN\": 2157, \"HAWN_PI\": 17, \"OTHER\": 633, \"MULT_RACE\": 1285, \"HISPANIC\": 1443, \"MALES\": 26133, \"FEMALES\": 29632, \"AGE_UNDER5\": 2718, \"AGE_5_17\": 7291, \"AGE_18_21\": 3479, \"AGE_22_29\": 7467, \"AGE_30_39\": 9080, \"AGE_40_49\": 8026, \"AGE_50_64\": 8038, \"AGE_65_UP\": 9666, \"MED_AGE\": 37.500000, \"MED_AGE_M\": 35.600000, \"MED_AGE_F\": 39.500000, \"HOUSEHOLDS\": 22067, \"AVE_HH_SZ\": 2.430000, \"HSEHLD_1_M\": 2181, \"HSEHLD_1_F\": 4155, \"MARHH_CHD\": 3975, \"MARHH_NO_C\": 6083, \"MHH_CHILD\": 189, \"FHH_CHILD\": 1034, \"FAMILIES\": 13494, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 22687, \"VACANT\": 620, \"OWNER_OCC\": 12933, \"RENTER_OCC\": 9134 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.108453802409429, 42.420034660007708 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Melrose\", \"CLASS\": \"city\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"40115\", \"CAPITAL\": \"N\", \"AREALAND\": 4.695000, \"AREAWATER\": 0.056000, \"POP_CL\": 6, \"POP2000\": 27134, \"WHITE\": 25820, \"BLACK\": 255, \"AMERI_ES\": 26, \"ASIAN\": 546, \"HAWN_PI\": 6, \"OTHER\": 109, \"MULT_RACE\": 372, \"HISPANIC\": 283, \"MALES\": 12757, \"FEMALES\": 14377, \"AGE_UNDER5\": 1810, \"AGE_5_17\": 4159, \"AGE_18_21\": 768, \"AGE_22_29\": 2334, \"AGE_30_39\": 4767, \"AGE_40_49\": 4356, \"AGE_50_64\": 4507, \"AGE_65_UP\": 4433, \"MED_AGE\": 39.400000, \"MED_AGE_M\": 37.800000, \"MED_AGE_F\": 40.900000, \"HOUSEHOLDS\": 10982, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 1142, \"HSEHLD_1_F\": 2118, \"MARHH_CHD\": 2710, \"MARHH_NO_C\": 3159, \"MHH_CHILD\": 75, \"FHH_CHILD\": 373, \"FAMILIES\": 7108, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 11248, \"VACANT\": 266, \"OWNER_OCC\": 7359, \"RENTER_OCC\": 3623 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.062862442506798, 42.459084635706162 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Methuen\", \"CLASS\": \"city\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"40710\", \"CAPITAL\": \"N\", \"AREALAND\": 22.402000, \"AREAWATER\": 0.679000, \"POP_CL\": 6, \"POP2000\": 43789, \"WHITE\": 39126, \"BLACK\": 591, \"AMERI_ES\": 97, \"ASIAN\": 1040, \"HAWN_PI\": 5, \"OTHER\": 2131, \"MULT_RACE\": 799, \"HISPANIC\": 4221, \"MALES\": 20967, \"FEMALES\": 22822, \"AGE_UNDER5\": 2749, \"AGE_5_17\": 8082, \"AGE_18_21\": 1830, \"AGE_22_29\": 4071, \"AGE_30_39\": 7104, \"AGE_40_49\": 7011, \"AGE_50_64\": 6223, \"AGE_65_UP\": 6719, \"MED_AGE\": 37.500000, \"MED_AGE_M\": 35.900000, \"MED_AGE_F\": 39.000000, \"HOUSEHOLDS\": 16532, \"AVE_HH_SZ\": 2.620000, \"HSEHLD_1_M\": 1608, \"HSEHLD_1_F\": 2573, \"MARHH_CHD\": 4142, \"MARHH_NO_C\": 4673, \"MHH_CHILD\": 275, \"FHH_CHILD\": 1061, \"FAMILIES\": 11541, \"AVE_FAM_SZ\": 3.170000, \"HSE_UNITS\": 16885, \"VACANT\": 353, \"OWNER_OCC\": 11881, \"RENTER_OCC\": 4651 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.179856182734568, 42.730077413361116 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Milford\", \"CLASS\": \"CDP\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"41200\", \"CAPITAL\": \"N\", \"AREALAND\": 9.976000, \"AREAWATER\": 0.240000, \"POP_CL\": 6, \"POP2000\": 24230, \"WHITE\": 22421, \"BLACK\": 344, \"AMERI_ES\": 28, \"ASIAN\": 440, \"HAWN_PI\": 17, \"OTHER\": 516, \"MULT_RACE\": 464, \"HISPANIC\": 1129, \"MALES\": 11694, \"FEMALES\": 12536, \"AGE_UNDER5\": 1691, \"AGE_5_17\": 4189, \"AGE_18_21\": 878, \"AGE_22_29\": 2507, \"AGE_30_39\": 4302, \"AGE_40_49\": 3729, \"AGE_50_64\": 3610, \"AGE_65_UP\": 3324, \"MED_AGE\": 36.700000, \"MED_AGE_M\": 35.500000, \"MED_AGE_F\": 37.800000, \"HOUSEHOLDS\": 9566, \"AVE_HH_SZ\": 2.500000, \"HSEHLD_1_M\": 1110, \"HSEHLD_1_F\": 1474, \"MARHH_CHD\": 2298, \"MARHH_NO_C\": 2649, \"MHH_CHILD\": 151, \"FHH_CHILD\": 639, \"FAMILIES\": 6452, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 9834, \"VACANT\": 268, \"OWNER_OCC\": 5936, \"RENTER_OCC\": 3630 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.519393913801267, 42.145858827954726 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Milton\", \"CLASS\": \"CDP\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"41725\", \"CAPITAL\": \"N\", \"AREALAND\": 13.037000, \"AREAWATER\": 0.245000, \"POP_CL\": 6, \"POP2000\": 26062, \"WHITE\": 22252, \"BLACK\": 2666, \"AMERI_ES\": 17, \"ASIAN\": 531, \"HAWN_PI\": 10, \"OTHER\": 164, \"MULT_RACE\": 422, \"HISPANIC\": 450, \"MALES\": 12321, \"FEMALES\": 13741, \"AGE_UNDER5\": 1640, \"AGE_5_17\": 5081, \"AGE_18_21\": 1445, \"AGE_22_29\": 1667, \"AGE_30_39\": 3477, \"AGE_40_49\": 4526, \"AGE_50_64\": 3992, \"AGE_65_UP\": 4234, \"MED_AGE\": 39.300000, \"MED_AGE_M\": 37.300000, \"MED_AGE_F\": 41.000000, \"HOUSEHOLDS\": 8982, \"AVE_HH_SZ\": 2.790000, \"HSEHLD_1_M\": 569, \"HSEHLD_1_F\": 1336, \"MARHH_CHD\": 2844, \"MARHH_NO_C\": 2552, \"MHH_CHILD\": 77, \"FHH_CHILD\": 443, \"FAMILIES\": 6757, \"AVE_FAM_SZ\": 3.270000, \"HSE_UNITS\": 9161, \"VACANT\": 179, \"OWNER_OCC\": 7554, \"RENTER_OCC\": 1428 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.075480639694348, 42.253113227406004 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Needham\", \"CLASS\": \"CDP\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"44140\", \"CAPITAL\": \"N\", \"AREALAND\": 12.610000, \"AREAWATER\": 0.094000, \"POP_CL\": 6, \"POP2000\": 28911, \"WHITE\": 27412, \"BLACK\": 201, \"AMERI_ES\": 8, \"ASIAN\": 1024, \"HAWN_PI\": 0, \"OTHER\": 73, \"MULT_RACE\": 193, \"HISPANIC\": 341, \"MALES\": 13702, \"FEMALES\": 15209, \"AGE_UNDER5\": 2153, \"AGE_5_17\": 5423, \"AGE_18_21\": 1027, \"AGE_22_29\": 1357, \"AGE_30_39\": 4080, \"AGE_40_49\": 4899, \"AGE_50_64\": 4782, \"AGE_65_UP\": 5190, \"MED_AGE\": 40.800000, \"MED_AGE_M\": 38.900000, \"MED_AGE_F\": 42.600000, \"HOUSEHOLDS\": 10612, \"AVE_HH_SZ\": 2.630000, \"HSEHLD_1_M\": 661, \"HSEHLD_1_F\": 1818, \"MARHH_CHD\": 3528, \"MARHH_NO_C\": 3359, \"MHH_CHILD\": 59, \"FHH_CHILD\": 337, \"FAMILIES\": 7782, \"AVE_FAM_SZ\": 3.150000, \"HSE_UNITS\": 10846, \"VACANT\": 234, \"OWNER_OCC\": 8587, \"RENTER_OCC\": 2025 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.233193432799396, 42.285900081610116 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"New Bedford\", \"CLASS\": \"city\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"45000\", \"CAPITAL\": \"N\", \"AREALAND\": 20.122000, \"AREAWATER\": 3.904000, \"POP_CL\": 7, \"POP2000\": 93768, \"WHITE\": 73950, \"BLACK\": 4112, \"AMERI_ES\": 579, \"ASIAN\": 614, \"HAWN_PI\": 44, \"OTHER\": 8915, \"MULT_RACE\": 5554, \"HISPANIC\": 9576, \"MALES\": 44173, \"FEMALES\": 49595, \"AGE_UNDER5\": 6272, \"AGE_5_17\": 17055, \"AGE_18_21\": 4903, \"AGE_22_29\": 10818, \"AGE_30_39\": 13498, \"AGE_40_49\": 12598, \"AGE_50_64\": 12976, \"AGE_65_UP\": 15648, \"MED_AGE\": 35.900000, \"MED_AGE_M\": 33.700000, \"MED_AGE_F\": 37.900000, \"HOUSEHOLDS\": 38178, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 4939, \"HSEHLD_1_F\": 7118, \"MARHH_CHD\": 6286, \"MARHH_NO_C\": 8813, \"MHH_CHILD\": 910, \"FHH_CHILD\": 4701, \"FAMILIES\": 24083, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 41511, \"VACANT\": 3333, \"OWNER_OCC\": 16711, \"RENTER_OCC\": 21467 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -70.934234954662969, 41.651844795985227 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Newburyport\", \"CLASS\": \"city\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"45245\", \"CAPITAL\": \"N\", \"AREALAND\": 8.384000, \"AREAWATER\": 2.201000, \"POP_CL\": 6, \"POP2000\": 17189, \"WHITE\": 16864, \"BLACK\": 73, \"AMERI_ES\": 21, \"ASIAN\": 105, \"HAWN_PI\": 2, \"OTHER\": 27, \"MULT_RACE\": 97, \"HISPANIC\": 151, \"MALES\": 7982, \"FEMALES\": 9207, \"AGE_UNDER5\": 972, \"AGE_5_17\": 2579, \"AGE_18_21\": 428, \"AGE_22_29\": 1204, \"AGE_30_39\": 3088, \"AGE_40_49\": 3184, \"AGE_50_64\": 3320, \"AGE_65_UP\": 2414, \"MED_AGE\": 40.900000, \"MED_AGE_M\": 39.700000, \"MED_AGE_F\": 42.000000, \"HOUSEHOLDS\": 7519, \"AVE_HH_SZ\": 2.240000, \"HSEHLD_1_M\": 898, \"HSEHLD_1_F\": 1594, \"MARHH_CHD\": 1532, \"MARHH_NO_C\": 2052, \"MHH_CHILD\": 74, \"FHH_CHILD\": 343, \"FAMILIES\": 4429, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 7897, \"VACANT\": 378, \"OWNER_OCC\": 5010, \"RENTER_OCC\": 2509 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -70.878019257472459, 42.812434967969871 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Newton\", \"CLASS\": \"city\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"45560\", \"CAPITAL\": \"N\", \"AREALAND\": 18.053000, \"AREAWATER\": 0.149000, \"POP_CL\": 7, \"POP2000\": 83829, \"WHITE\": 73831, \"BLACK\": 1653, \"AMERI_ES\": 61, \"ASIAN\": 6434, \"HAWN_PI\": 29, \"OTHER\": 598, \"MULT_RACE\": 1223, \"HISPANIC\": 2111, \"MALES\": 38951, \"FEMALES\": 44878, \"AGE_UNDER5\": 4401, \"AGE_5_17\": 13410, \"AGE_18_21\": 5972, \"AGE_22_29\": 7903, \"AGE_30_39\": 11936, \"AGE_40_49\": 13195, \"AGE_50_64\": 14372, \"AGE_65_UP\": 12640, \"MED_AGE\": 38.700000, \"MED_AGE_M\": 37.500000, \"MED_AGE_F\": 39.700000, \"HOUSEHOLDS\": 31201, \"AVE_HH_SZ\": 2.510000, \"HSEHLD_1_M\": 2376, \"HSEHLD_1_F\": 5582, \"MARHH_CHD\": 8286, \"MARHH_NO_C\": 8923, \"MHH_CHILD\": 251, \"FHH_CHILD\": 1159, \"FAMILIES\": 20485, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 32112, \"VACANT\": 911, \"OWNER_OCC\": 21692, \"RENTER_OCC\": 9509 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.210422758454399, 42.337749558161903 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"North Adams\", \"CLASS\": \"city\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"46225\", \"CAPITAL\": \"N\", \"AREALAND\": 20.438000, \"AREAWATER\": 0.128000, \"POP_CL\": 6, \"POP2000\": 14681, \"WHITE\": 13946, \"BLACK\": 245, \"AMERI_ES\": 39, \"ASIAN\": 117, \"HAWN_PI\": 5, \"OTHER\": 117, \"MULT_RACE\": 212, \"HISPANIC\": 298, \"MALES\": 6794, \"FEMALES\": 7887, \"AGE_UNDER5\": 802, \"AGE_5_17\": 2480, \"AGE_18_21\": 1116, \"AGE_22_29\": 1442, \"AGE_30_39\": 1934, \"AGE_40_49\": 2087, \"AGE_50_64\": 2117, \"AGE_65_UP\": 2703, \"MED_AGE\": 38.000000, \"MED_AGE_M\": 36.600000, \"MED_AGE_F\": 39.400000, \"HOUSEHOLDS\": 6311, \"AVE_HH_SZ\": 2.210000, \"HSEHLD_1_M\": 903, \"HSEHLD_1_F\": 1383, \"MARHH_CHD\": 972, \"MARHH_NO_C\": 1557, \"MHH_CHILD\": 143, \"FHH_CHILD\": 563, \"FAMILIES\": 3634, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 7088, \"VACANT\": 777, \"OWNER_OCC\": 3284, \"RENTER_OCC\": 3027 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.115300104685048, 42.693911339098385 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Northampton\", \"CLASS\": \"city\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"46330\", \"CAPITAL\": \"N\", \"AREALAND\": 34.458000, \"AREAWATER\": 1.139000, \"POP_CL\": 6, \"POP2000\": 28978, \"WHITE\": 26083, \"BLACK\": 602, \"AMERI_ES\": 86, \"ASIAN\": 906, \"HAWN_PI\": 15, \"OTHER\": 697, \"MULT_RACE\": 589, \"HISPANIC\": 1518, \"MALES\": 12480, \"FEMALES\": 16498, \"AGE_UNDER5\": 1189, \"AGE_5_17\": 3728, \"AGE_18_21\": 3010, \"AGE_22_29\": 3505, \"AGE_30_39\": 4282, \"AGE_40_49\": 4818, \"AGE_50_64\": 4453, \"AGE_65_UP\": 3993, \"MED_AGE\": 37.300000, \"MED_AGE_M\": 38.800000, \"MED_AGE_F\": 36.000000, \"HOUSEHOLDS\": 11880, \"AVE_HH_SZ\": 2.140000, \"HSEHLD_1_M\": 1728, \"HSEHLD_1_F\": 2703, \"MARHH_CHD\": 1824, \"MARHH_NO_C\": 2531, \"MHH_CHILD\": 158, \"FHH_CHILD\": 734, \"FAMILIES\": 5878, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 12405, \"VACANT\": 525, \"OWNER_OCC\": 6356, \"RENTER_OCC\": 5524 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -72.657926194082023, 42.327405186422368 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"North Attleborough Center\", \"CLASS\": \"CDP\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"46585\", \"CAPITAL\": \"N\", \"AREALAND\": 5.521000, \"AREAWATER\": 0.225000, \"POP_CL\": 6, \"POP2000\": 16796, \"WHITE\": 16029, \"BLACK\": 189, \"AMERI_ES\": 29, \"ASIAN\": 292, \"HAWN_PI\": 4, \"OTHER\": 102, \"MULT_RACE\": 151, \"HISPANIC\": 284, \"MALES\": 8104, \"FEMALES\": 8692, \"AGE_UNDER5\": 1173, \"AGE_5_17\": 3036, \"AGE_18_21\": 624, \"AGE_22_29\": 2042, \"AGE_30_39\": 3112, \"AGE_40_49\": 2707, \"AGE_50_64\": 2301, \"AGE_65_UP\": 1801, \"MED_AGE\": 35.000000, \"MED_AGE_M\": 34.300000, \"MED_AGE_F\": 35.800000, \"HOUSEHOLDS\": 6932, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 930, \"HSEHLD_1_F\": 1166, \"MARHH_CHD\": 1620, \"MARHH_NO_C\": 1719, \"MHH_CHILD\": 138, \"FHH_CHILD\": 469, \"FAMILIES\": 4352, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 7133, \"VACANT\": 201, \"OWNER_OCC\": 3955, \"RENTER_OCC\": 2977 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.330828955875887, 41.977083046280811 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Norwood\", \"CLASS\": \"CDP\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"50285\", \"CAPITAL\": \"N\", \"AREALAND\": 10.483000, \"AREAWATER\": 0.065000, \"POP_CL\": 6, \"POP2000\": 28587, \"WHITE\": 25873, \"BLACK\": 659, \"AMERI_ES\": 27, \"ASIAN\": 1446, \"HAWN_PI\": 4, \"OTHER\": 221, \"MULT_RACE\": 357, \"HISPANIC\": 473, \"MALES\": 13517, \"FEMALES\": 15070, \"AGE_UNDER5\": 1693, \"AGE_5_17\": 4242, \"AGE_18_21\": 842, \"AGE_22_29\": 3238, \"AGE_30_39\": 4957, \"AGE_40_49\": 4275, \"AGE_50_64\": 4318, \"AGE_65_UP\": 5022, \"MED_AGE\": 38.600000, \"MED_AGE_M\": 36.900000, \"MED_AGE_F\": 40.100000, \"HOUSEHOLDS\": 11623, \"AVE_HH_SZ\": 2.410000, \"HSEHLD_1_M\": 1343, \"HSEHLD_1_F\": 2070, \"MARHH_CHD\": 2602, \"MARHH_NO_C\": 3311, \"MHH_CHILD\": 71, \"FHH_CHILD\": 484, \"FAMILIES\": 7382, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 11945, \"VACANT\": 322, \"OWNER_OCC\": 6650, \"RENTER_OCC\": 4973 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.202145487111252, 42.186010621585432 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Peabody\", \"CLASS\": \"city\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"52490\", \"CAPITAL\": \"N\", \"AREALAND\": 16.395000, \"AREAWATER\": 0.476000, \"POP_CL\": 6, \"POP2000\": 48129, \"WHITE\": 45204, \"BLACK\": 466, \"AMERI_ES\": 57, \"ASIAN\": 667, \"HAWN_PI\": 7, \"OTHER\": 883, \"MULT_RACE\": 845, \"HISPANIC\": 1651, \"MALES\": 23047, \"FEMALES\": 25082, \"AGE_UNDER5\": 2805, \"AGE_5_17\": 7911, \"AGE_18_21\": 1693, \"AGE_22_29\": 3833, \"AGE_30_39\": 7569, \"AGE_40_49\": 7669, \"AGE_50_64\": 8251, \"AGE_65_UP\": 8398, \"MED_AGE\": 40.300000, \"MED_AGE_M\": 39.000000, \"MED_AGE_F\": 41.700000, \"HOUSEHOLDS\": 18581, \"AVE_HH_SZ\": 2.550000, \"HSEHLD_1_M\": 1762, \"HSEHLD_1_F\": 2960, \"MARHH_CHD\": 4420, \"MARHH_NO_C\": 5964, \"MHH_CHILD\": 216, \"FHH_CHILD\": 881, \"FAMILIES\": 12981, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 18898, \"VACANT\": 317, \"OWNER_OCC\": 13227, \"RENTER_OCC\": 5354 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -70.962014716813158, 42.534086864115345 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pittsfield\", \"CLASS\": \"city\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"53960\", \"CAPITAL\": \"N\", \"AREALAND\": 40.730000, \"AREAWATER\": 1.588000, \"POP_CL\": 6, \"POP2000\": 45793, \"WHITE\": 42395, \"BLACK\": 1674, \"AMERI_ES\": 65, \"ASIAN\": 533, \"HAWN_PI\": 20, \"OTHER\": 354, \"MULT_RACE\": 752, \"HISPANIC\": 934, \"MALES\": 21765, \"FEMALES\": 24028, \"AGE_UNDER5\": 2719, \"AGE_5_17\": 7884, \"AGE_18_21\": 1822, \"AGE_22_29\": 4002, \"AGE_30_39\": 6775, \"AGE_40_49\": 6724, \"AGE_50_64\": 7329, \"AGE_65_UP\": 8538, \"MED_AGE\": 39.600000, \"MED_AGE_M\": 37.800000, \"MED_AGE_F\": 41.500000, \"HOUSEHOLDS\": 19704, \"AVE_HH_SZ\": 2.260000, \"HSEHLD_1_M\": 2644, \"HSEHLD_1_F\": 4050, \"MARHH_CHD\": 3341, \"MARHH_NO_C\": 5110, \"MHH_CHILD\": 394, \"FHH_CHILD\": 1638, \"FAMILIES\": 11822, \"AVE_FAM_SZ\": 2.890000, \"HSE_UNITS\": 21366, \"VACANT\": 1662, \"OWNER_OCC\": 11979, \"RENTER_OCC\": 7725 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.251718403140984, 42.452195299495628 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Quincy\", \"CLASS\": \"city\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"55745\", \"CAPITAL\": \"N\", \"AREALAND\": 16.785000, \"AREAWATER\": 10.108000, \"POP_CL\": 7, \"POP2000\": 88025, \"WHITE\": 70066, \"BLACK\": 1947, \"AMERI_ES\": 142, \"ASIAN\": 13546, \"HAWN_PI\": 20, \"OTHER\": 751, \"MULT_RACE\": 1553, \"HISPANIC\": 1835, \"MALES\": 41944, \"FEMALES\": 46081, \"AGE_UNDER5\": 4492, \"AGE_5_17\": 10889, \"AGE_18_21\": 3338, \"AGE_22_29\": 12675, \"AGE_30_39\": 16128, \"AGE_40_49\": 12739, \"AGE_50_64\": 13416, \"AGE_65_UP\": 14348, \"MED_AGE\": 37.600000, \"MED_AGE_M\": 36.100000, \"MED_AGE_F\": 39.200000, \"HOUSEHOLDS\": 38883, \"AVE_HH_SZ\": 2.220000, \"HSEHLD_1_M\": 5898, \"HSEHLD_1_F\": 8720, \"MARHH_CHD\": 5936, \"MARHH_NO_C\": 9095, \"MHH_CHILD\": 384, \"FHH_CHILD\": 1728, \"FAMILIES\": 20534, \"AVE_FAM_SZ\": 3.030000, \"HSE_UNITS\": 40093, \"VACANT\": 1210, \"OWNER_OCC\": 19070, \"RENTER_OCC\": 19813 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.006381951662746, 42.26060669617744 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Randolph\", \"CLASS\": \"CDP\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"55990\", \"CAPITAL\": \"N\", \"AREALAND\": 10.069000, \"AREAWATER\": 0.434000, \"POP_CL\": 6, \"POP2000\": 30963, \"WHITE\": 19455, \"BLACK\": 6456, \"AMERI_ES\": 70, \"ASIAN\": 3151, \"HAWN_PI\": 11, \"OTHER\": 782, \"MULT_RACE\": 1038, \"HISPANIC\": 1006, \"MALES\": 14808, \"FEMALES\": 16155, \"AGE_UNDER5\": 1868, \"AGE_5_17\": 5347, \"AGE_18_21\": 1223, \"AGE_22_29\": 3016, \"AGE_30_39\": 4974, \"AGE_40_49\": 5002, \"AGE_50_64\": 5106, \"AGE_65_UP\": 4427, \"MED_AGE\": 38.300000, \"MED_AGE_M\": 37.200000, \"MED_AGE_F\": 39.300000, \"HOUSEHOLDS\": 11313, \"AVE_HH_SZ\": 2.710000, \"HSEHLD_1_M\": 1011, \"HSEHLD_1_F\": 1664, \"MARHH_CHD\": 2727, \"MARHH_NO_C\": 3265, \"MHH_CHILD\": 151, \"FHH_CHILD\": 709, \"FAMILIES\": 7982, \"AVE_FAM_SZ\": 3.250000, \"HSE_UNITS\": 11533, \"VACANT\": 220, \"OWNER_OCC\": 8184, \"RENTER_OCC\": 3129 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.049642316326924, 42.173456711843293 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Reading\", \"CLASS\": \"CDP\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"56165\", \"CAPITAL\": \"N\", \"AREALAND\": 9.927000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 23708, \"WHITE\": 22871, \"BLACK\": 86, \"AMERI_ES\": 15, \"ASIAN\": 525, \"HAWN_PI\": 6, \"OTHER\": 50, \"MULT_RACE\": 155, \"HISPANIC\": 200, \"MALES\": 11436, \"FEMALES\": 12272, \"AGE_UNDER5\": 1701, \"AGE_5_17\": 4531, \"AGE_18_21\": 679, \"AGE_22_29\": 1542, \"AGE_30_39\": 3788, \"AGE_40_49\": 4237, \"AGE_50_64\": 3861, \"AGE_65_UP\": 3369, \"MED_AGE\": 39.100000, \"MED_AGE_M\": 37.800000, \"MED_AGE_F\": 40.300000, \"HOUSEHOLDS\": 8688, \"AVE_HH_SZ\": 2.710000, \"HSEHLD_1_M\": 662, \"HSEHLD_1_F\": 1280, \"MARHH_CHD\": 2815, \"MARHH_NO_C\": 2702, \"MHH_CHILD\": 60, \"FHH_CHILD\": 314, \"FAMILIES\": 6437, \"AVE_FAM_SZ\": 3.220000, \"HSE_UNITS\": 8823, \"VACANT\": 135, \"OWNER_OCC\": 7165, \"RENTER_OCC\": 1523 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.110453320529487, 42.525888690269241 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Revere\", \"CLASS\": \"city\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"56585\", \"CAPITAL\": \"N\", \"AREALAND\": 5.915000, \"AREAWATER\": 4.111000, \"POP_CL\": 6, \"POP2000\": 47283, \"WHITE\": 39884, \"BLACK\": 1364, \"AMERI_ES\": 124, \"ASIAN\": 2146, \"HAWN_PI\": 35, \"OTHER\": 1942, \"MULT_RACE\": 1788, \"HISPANIC\": 4465, \"MALES\": 22862, \"FEMALES\": 24421, \"AGE_UNDER5\": 2741, \"AGE_5_17\": 7179, \"AGE_18_21\": 1983, \"AGE_22_29\": 5428, \"AGE_30_39\": 8069, \"AGE_40_49\": 6787, \"AGE_50_64\": 7226, \"AGE_65_UP\": 7870, \"MED_AGE\": 37.600000, \"MED_AGE_M\": 36.100000, \"MED_AGE_F\": 39.400000, \"HOUSEHOLDS\": 19463, \"AVE_HH_SZ\": 2.410000, \"HSEHLD_1_M\": 2720, \"HSEHLD_1_F\": 3639, \"MARHH_CHD\": 3260, \"MARHH_NO_C\": 4877, \"MHH_CHILD\": 339, \"FHH_CHILD\": 1357, \"FAMILIES\": 11865, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 20181, \"VACANT\": 718, \"OWNER_OCC\": 9722, \"RENTER_OCC\": 9741 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.005785660903541, 42.416287822275208 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Salem\", \"CLASS\": \"city\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"59105\", \"CAPITAL\": \"N\", \"AREALAND\": 8.104000, \"AREAWATER\": 9.954000, \"POP_CL\": 6, \"POP2000\": 40407, \"WHITE\": 34497, \"BLACK\": 1274, \"AMERI_ES\": 87, \"ASIAN\": 807, \"HAWN_PI\": 19, \"OTHER\": 2724, \"MULT_RACE\": 999, \"HISPANIC\": 4541, \"MALES\": 18745, \"FEMALES\": 21662, \"AGE_UNDER5\": 2264, \"AGE_5_17\": 5893, \"AGE_18_21\": 2431, \"AGE_22_29\": 5091, \"AGE_30_39\": 7042, \"AGE_40_49\": 5986, \"AGE_50_64\": 5984, \"AGE_65_UP\": 5716, \"MED_AGE\": 36.400000, \"MED_AGE_M\": 35.200000, \"MED_AGE_F\": 37.500000, \"HOUSEHOLDS\": 17492, \"AVE_HH_SZ\": 2.240000, \"HSEHLD_1_M\": 2394, \"HSEHLD_1_F\": 3711, \"MARHH_CHD\": 2621, \"MARHH_NO_C\": 4169, \"MHH_CHILD\": 256, \"FHH_CHILD\": 1352, \"FAMILIES\": 9707, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 18175, \"VACANT\": 683, \"OWNER_OCC\": 8586, \"RENTER_OCC\": 8906 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -70.899067749747317, 42.516888262551689 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Saugus\", \"CLASS\": \"CDP\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"60050\", \"CAPITAL\": \"N\", \"AREALAND\": 10.986000, \"AREAWATER\": 0.765000, \"POP_CL\": 6, \"POP2000\": 26078, \"WHITE\": 25379, \"BLACK\": 114, \"AMERI_ES\": 14, \"ASIAN\": 314, \"HAWN_PI\": 10, \"OTHER\": 70, \"MULT_RACE\": 177, \"HISPANIC\": 254, \"MALES\": 12476, \"FEMALES\": 13602, \"AGE_UNDER5\": 1304, \"AGE_5_17\": 4046, \"AGE_18_21\": 983, \"AGE_22_29\": 2188, \"AGE_30_39\": 3964, \"AGE_40_49\": 4175, \"AGE_50_64\": 4824, \"AGE_65_UP\": 4594, \"MED_AGE\": 41.300000, \"MED_AGE_M\": 39.500000, \"MED_AGE_F\": 42.700000, \"HOUSEHOLDS\": 9975, \"AVE_HH_SZ\": 2.590000, \"HSEHLD_1_M\": 857, \"HSEHLD_1_F\": 1565, \"MARHH_CHD\": 2233, \"MARHH_NO_C\": 3457, \"MHH_CHILD\": 113, \"FHH_CHILD\": 397, \"FAMILIES\": 7144, \"AVE_FAM_SZ\": 3.110000, \"HSE_UNITS\": 10122, \"VACANT\": 147, \"OWNER_OCC\": 7979, \"RENTER_OCC\": 1996 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.010336943017904, 42.462836757514971 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Somerset\", \"CLASS\": \"CDP\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"62465\", \"CAPITAL\": \"N\", \"AREALAND\": 8.109000, \"AREAWATER\": 3.867000, \"POP_CL\": 6, \"POP2000\": 18234, \"WHITE\": 17909, \"BLACK\": 30, \"AMERI_ES\": 22, \"ASIAN\": 97, \"HAWN_PI\": 4, \"OTHER\": 28, \"MULT_RACE\": 144, \"HISPANIC\": 90, \"MALES\": 8635, \"FEMALES\": 9599, \"AGE_UNDER5\": 791, \"AGE_5_17\": 2927, \"AGE_18_21\": 704, \"AGE_22_29\": 1253, \"AGE_30_39\": 2560, \"AGE_40_49\": 2716, \"AGE_50_64\": 3448, \"AGE_65_UP\": 3835, \"MED_AGE\": 43.000000, \"MED_AGE_M\": 40.900000, \"MED_AGE_F\": 45.200000, \"HOUSEHOLDS\": 6987, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 465, \"HSEHLD_1_F\": 1036, \"MARHH_CHD\": 1586, \"MARHH_NO_C\": 2771, \"MHH_CHILD\": 91, \"FHH_CHILD\": 287, \"FAMILIES\": 5260, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 7143, \"VACANT\": 156, \"OWNER_OCC\": 5723, \"RENTER_OCC\": 1264 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.153671171951018, 41.748539280051517 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Somerville\", \"CLASS\": \"city\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"62535\", \"CAPITAL\": \"N\", \"AREALAND\": 4.106000, \"AREAWATER\": 0.107000, \"POP_CL\": 7, \"POP2000\": 77478, \"WHITE\": 59635, \"BLACK\": 5035, \"AMERI_ES\": 171, \"ASIAN\": 4990, \"HAWN_PI\": 50, \"OTHER\": 3840, \"MULT_RACE\": 3757, \"HISPANIC\": 6786, \"MALES\": 37730, \"FEMALES\": 39748, \"AGE_UNDER5\": 3500, \"AGE_5_17\": 7995, \"AGE_18_21\": 5209, \"AGE_22_29\": 19553, \"AGE_30_39\": 15396, \"AGE_40_49\": 9279, \"AGE_50_64\": 8447, \"AGE_65_UP\": 8099, \"MED_AGE\": 31.100000, \"MED_AGE_M\": 30.600000, \"MED_AGE_F\": 31.900000, \"HOUSEHOLDS\": 31555, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 4058, \"HSEHLD_1_F\": 5739, \"MARHH_CHD\": 4148, \"MARHH_NO_C\": 6007, \"MHH_CHILD\": 338, \"FHH_CHILD\": 1458, \"FAMILIES\": 14668, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 32477, \"VACANT\": 922, \"OWNER_OCC\": 9656, \"RENTER_OCC\": 21899 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.10419494794229, 42.390584727676767 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Southbridge\", \"CLASS\": \"CDP\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"63305\", \"CAPITAL\": \"N\", \"AREALAND\": 5.250000, \"AREAWATER\": 0.037000, \"POP_CL\": 6, \"POP2000\": 12878, \"WHITE\": 10708, \"BLACK\": 187, \"AMERI_ES\": 55, \"ASIAN\": 234, \"HAWN_PI\": 8, \"OTHER\": 1336, \"MULT_RACE\": 350, \"HISPANIC\": 3073, \"MALES\": 6211, \"FEMALES\": 6667, \"AGE_UNDER5\": 871, \"AGE_5_17\": 2427, \"AGE_18_21\": 644, \"AGE_22_29\": 1537, \"AGE_30_39\": 1996, \"AGE_40_49\": 1771, \"AGE_50_64\": 1737, \"AGE_65_UP\": 1895, \"MED_AGE\": 34.700000, \"MED_AGE_M\": 33.100000, \"MED_AGE_F\": 36.400000, \"HOUSEHOLDS\": 5336, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 751, \"HSEHLD_1_F\": 926, \"MARHH_CHD\": 882, \"MARHH_NO_C\": 1234, \"MHH_CHILD\": 147, \"FHH_CHILD\": 609, \"FAMILIES\": 3288, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 5720, \"VACANT\": 384, \"OWNER_OCC\": 1985, \"RENTER_OCC\": 3351 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -72.038231868648481, 42.07840507961631 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"South Yarmouth\", \"CLASS\": \"CDP\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"66035\", \"CAPITAL\": \"N\", \"AREALAND\": 7.003000, \"AREAWATER\": 0.842000, \"POP_CL\": 6, \"POP2000\": 11603, \"WHITE\": 10993, \"BLACK\": 177, \"AMERI_ES\": 40, \"ASIAN\": 73, \"HAWN_PI\": 7, \"OTHER\": 120, \"MULT_RACE\": 193, \"HISPANIC\": 189, \"MALES\": 5279, \"FEMALES\": 6324, \"AGE_UNDER5\": 503, \"AGE_5_17\": 1485, \"AGE_18_21\": 325, \"AGE_22_29\": 723, \"AGE_30_39\": 1390, \"AGE_40_49\": 1463, \"AGE_50_64\": 1952, \"AGE_65_UP\": 3762, \"MED_AGE\": 49.300000, \"MED_AGE_M\": 46.000000, \"MED_AGE_F\": 52.400000, \"HOUSEHOLDS\": 5485, \"AVE_HH_SZ\": 2.080000, \"HSEHLD_1_M\": 626, \"HSEHLD_1_F\": 1363, \"MARHH_CHD\": 657, \"MARHH_NO_C\": 1803, \"MHH_CHILD\": 88, \"FHH_CHILD\": 286, \"FAMILIES\": 3183, \"AVE_FAM_SZ\": 2.670000, \"HSE_UNITS\": 7834, \"VACANT\": 2349, \"OWNER_OCC\": 3995, \"RENTER_OCC\": 1490 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -70.200505416464267, 41.667969010160903 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Springfield\", \"CLASS\": \"city\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"67000\", \"CAPITAL\": \"N\", \"AREALAND\": 32.100000, \"AREAWATER\": 1.101000, \"POP_CL\": 8, \"POP2000\": 152082, \"WHITE\": 85329, \"BLACK\": 31960, \"AMERI_ES\": 569, \"ASIAN\": 2916, \"HAWN_PI\": 143, \"OTHER\": 25016, \"MULT_RACE\": 6149, \"HISPANIC\": 41343, \"MALES\": 71802, \"FEMALES\": 80280, \"AGE_UNDER5\": 11606, \"AGE_5_17\": 32421, \"AGE_18_21\": 10781, \"AGE_22_29\": 17173, \"AGE_30_39\": 21952, \"AGE_40_49\": 20069, \"AGE_50_64\": 19174, \"AGE_65_UP\": 18906, \"MED_AGE\": 31.900000, \"MED_AGE_M\": 29.900000, \"MED_AGE_F\": 33.700000, \"HOUSEHOLDS\": 57130, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 7116, \"HSEHLD_1_F\": 10120, \"MARHH_CHD\": 8675, \"MARHH_NO_C\": 11162, \"MHH_CHILD\": 1392, \"FHH_CHILD\": 9207, \"FAMILIES\": 36394, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 61172, \"VACANT\": 4042, \"OWNER_OCC\": 28499, \"RENTER_OCC\": 28631 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -72.547714439406292, 42.112428216297381 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Stoneham\", \"CLASS\": \"CDP\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"67700\", \"CAPITAL\": \"N\", \"AREALAND\": 6.148000, \"AREAWATER\": 0.563000, \"POP_CL\": 6, \"POP2000\": 22219, \"WHITE\": 21110, \"BLACK\": 197, \"AMERI_ES\": 12, \"ASIAN\": 558, \"HAWN_PI\": 9, \"OTHER\": 132, \"MULT_RACE\": 201, \"HISPANIC\": 397, \"MALES\": 10462, \"FEMALES\": 11757, \"AGE_UNDER5\": 1287, \"AGE_5_17\": 3370, \"AGE_18_21\": 701, \"AGE_22_29\": 1935, \"AGE_30_39\": 3616, \"AGE_40_49\": 3543, \"AGE_50_64\": 3659, \"AGE_65_UP\": 4108, \"MED_AGE\": 40.600000, \"MED_AGE_M\": 38.900000, \"MED_AGE_F\": 42.200000, \"HOUSEHOLDS\": 9050, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 944, \"HSEHLD_1_F\": 1777, \"MARHH_CHD\": 2015, \"MARHH_NO_C\": 2793, \"MHH_CHILD\": 85, \"FHH_CHILD\": 317, \"FAMILIES\": 5871, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 9289, \"VACANT\": 239, \"OWNER_OCC\": 6187, \"RENTER_OCC\": 2863 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.098867696620232, 42.48018389870326 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Swampscott\", \"CLASS\": \"CDP\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"68680\", \"CAPITAL\": \"N\", \"AREALAND\": 3.050000, \"AREAWATER\": 3.685000, \"POP_CL\": 6, \"POP2000\": 14412, \"WHITE\": 14047, \"BLACK\": 106, \"AMERI_ES\": 9, \"ASIAN\": 98, \"HAWN_PI\": 3, \"OTHER\": 41, \"MULT_RACE\": 108, \"HISPANIC\": 183, \"MALES\": 6685, \"FEMALES\": 7727, \"AGE_UNDER5\": 920, \"AGE_5_17\": 2533, \"AGE_18_21\": 404, \"AGE_22_29\": 776, \"AGE_30_39\": 2181, \"AGE_40_49\": 2563, \"AGE_50_64\": 2486, \"AGE_65_UP\": 2549, \"MED_AGE\": 41.500000, \"MED_AGE_M\": 40.100000, \"MED_AGE_F\": 42.700000, \"HOUSEHOLDS\": 5719, \"AVE_HH_SZ\": 2.480000, \"HSEHLD_1_M\": 461, \"HSEHLD_1_F\": 1023, \"MARHH_CHD\": 1586, \"MARHH_NO_C\": 1742, \"MHH_CHILD\": 53, \"FHH_CHILD\": 267, \"FAMILIES\": 3989, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 5930, \"VACANT\": 211, \"OWNER_OCC\": 4377, \"RENTER_OCC\": 1342 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -70.906444603243429, 42.47445206282287 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Taunton\", \"CLASS\": \"city\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"69170\", \"CAPITAL\": \"N\", \"AREALAND\": 46.606000, \"AREAWATER\": 1.350000, \"POP_CL\": 7, \"POP2000\": 55976, \"WHITE\": 51315, \"BLACK\": 1534, \"AMERI_ES\": 92, \"ASIAN\": 334, \"HAWN_PI\": 18, \"OTHER\": 1448, \"MULT_RACE\": 1235, \"HISPANIC\": 2198, \"MALES\": 26904, \"FEMALES\": 29072, \"AGE_UNDER5\": 3977, \"AGE_5_17\": 9942, \"AGE_18_21\": 2491, \"AGE_22_29\": 6093, \"AGE_30_39\": 9883, \"AGE_40_49\": 8378, \"AGE_50_64\": 7995, \"AGE_65_UP\": 7217, \"MED_AGE\": 35.700000, \"MED_AGE_M\": 34.800000, \"MED_AGE_F\": 36.500000, \"HOUSEHOLDS\": 22045, \"AVE_HH_SZ\": 2.500000, \"HSEHLD_1_M\": 2730, \"HSEHLD_1_F\": 3478, \"MARHH_CHD\": 4877, \"MARHH_NO_C\": 5706, \"MHH_CHILD\": 493, \"FHH_CHILD\": 1744, \"FAMILIES\": 14476, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 22908, \"VACANT\": 863, \"OWNER_OCC\": 13495, \"RENTER_OCC\": 8550 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.094128493808967, 41.901529591373993 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wakefield\", \"CLASS\": \"CDP\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"72250\", \"CAPITAL\": \"N\", \"AREALAND\": 7.467000, \"AREAWATER\": 0.443000, \"POP_CL\": 6, \"POP2000\": 24804, \"WHITE\": 24045, \"BLACK\": 111, \"AMERI_ES\": 19, \"ASIAN\": 354, \"HAWN_PI\": 2, \"OTHER\": 49, \"MULT_RACE\": 224, \"HISPANIC\": 204, \"MALES\": 11762, \"FEMALES\": 13042, \"AGE_UNDER5\": 1593, \"AGE_5_17\": 4014, \"AGE_18_21\": 815, \"AGE_22_29\": 2165, \"AGE_30_39\": 4287, \"AGE_40_49\": 4282, \"AGE_50_64\": 3899, \"AGE_65_UP\": 3749, \"MED_AGE\": 38.900000, \"MED_AGE_M\": 37.600000, \"MED_AGE_F\": 40.000000, \"HOUSEHOLDS\": 9747, \"AVE_HH_SZ\": 2.520000, \"HSEHLD_1_M\": 980, \"HSEHLD_1_F\": 1595, \"MARHH_CHD\": 2455, \"MARHH_NO_C\": 2913, \"MHH_CHILD\": 103, \"FHH_CHILD\": 384, \"FAMILIES\": 6604, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 9937, \"VACANT\": 190, \"OWNER_OCC\": 7019, \"RENTER_OCC\": 2728 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.071846558752753, 42.501384476210248 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Waltham\", \"CLASS\": \"city\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"72600\", \"CAPITAL\": \"N\", \"AREALAND\": 12.700000, \"AREAWATER\": 0.911000, \"POP_CL\": 7, \"POP2000\": 59226, \"WHITE\": 49145, \"BLACK\": 2614, \"AMERI_ES\": 95, \"ASIAN\": 4318, \"HAWN_PI\": 38, \"OTHER\": 1896, \"MULT_RACE\": 1120, \"HISPANIC\": 5031, \"MALES\": 29194, \"FEMALES\": 30032, \"AGE_UNDER5\": 2795, \"AGE_5_17\": 6378, \"AGE_18_21\": 6484, \"AGE_22_29\": 9367, \"AGE_30_39\": 10269, \"AGE_40_49\": 7930, \"AGE_50_64\": 8228, \"AGE_65_UP\": 7775, \"MED_AGE\": 34.200000, \"MED_AGE_M\": 32.900000, \"MED_AGE_F\": 35.700000, \"HOUSEHOLDS\": 23207, \"AVE_HH_SZ\": 2.290000, \"HSEHLD_1_M\": 3455, \"HSEHLD_1_F\": 4488, \"MARHH_CHD\": 3702, \"MARHH_NO_C\": 5888, \"MHH_CHILD\": 212, \"FHH_CHILD\": 799, \"FAMILIES\": 12455, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 23880, \"VACANT\": 673, \"OWNER_OCC\": 10677, \"RENTER_OCC\": 12530 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.235487452732329, 42.380632097369869 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Watertown\", \"CLASS\": \"city\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"73440\", \"CAPITAL\": \"N\", \"AREALAND\": 4.110000, \"AREAWATER\": 0.053000, \"POP_CL\": 6, \"POP2000\": 32986, \"WHITE\": 30155, \"BLACK\": 572, \"AMERI_ES\": 54, \"ASIAN\": 1276, \"HAWN_PI\": 6, \"OTHER\": 281, \"MULT_RACE\": 642, \"HISPANIC\": 883, \"MALES\": 15265, \"FEMALES\": 17721, \"AGE_UNDER5\": 1535, \"AGE_5_17\": 3124, \"AGE_18_21\": 1476, \"AGE_22_29\": 5646, \"AGE_30_39\": 6575, \"AGE_40_49\": 4700, \"AGE_50_64\": 4425, \"AGE_65_UP\": 5505, \"MED_AGE\": 36.700000, \"MED_AGE_M\": 35.200000, \"MED_AGE_F\": 38.500000, \"HOUSEHOLDS\": 14629, \"AVE_HH_SZ\": 2.170000, \"HSEHLD_1_M\": 1797, \"HSEHLD_1_F\": 3196, \"MARHH_CHD\": 2037, \"MARHH_NO_C\": 3502, \"MHH_CHILD\": 116, \"FHH_CHILD\": 449, \"FAMILIES\": 7325, \"AVE_FAM_SZ\": 2.860000, \"HSE_UNITS\": 15008, \"VACANT\": 379, \"OWNER_OCC\": 6881, \"RENTER_OCC\": 7748 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.182454812547391, 42.371333131457433 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Webster\", \"CLASS\": \"CDP\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"73930\", \"CAPITAL\": \"N\", \"AREALAND\": 2.902000, \"AREAWATER\": 0.060000, \"POP_CL\": 6, \"POP2000\": 11600, \"WHITE\": 10866, \"BLACK\": 156, \"AMERI_ES\": 46, \"ASIAN\": 126, \"HAWN_PI\": 0, \"OTHER\": 224, \"MULT_RACE\": 182, \"HISPANIC\": 588, \"MALES\": 5463, \"FEMALES\": 6137, \"AGE_UNDER5\": 796, \"AGE_5_17\": 1914, \"AGE_18_21\": 491, \"AGE_22_29\": 1331, \"AGE_30_39\": 1802, \"AGE_40_49\": 1549, \"AGE_50_64\": 1566, \"AGE_65_UP\": 2151, \"MED_AGE\": 37.000000, \"MED_AGE_M\": 35.100000, \"MED_AGE_F\": 39.100000, \"HOUSEHOLDS\": 5024, \"AVE_HH_SZ\": 2.260000, \"HSEHLD_1_M\": 727, \"HSEHLD_1_F\": 1080, \"MARHH_CHD\": 770, \"MARHH_NO_C\": 1153, \"MHH_CHILD\": 154, \"FHH_CHILD\": 450, \"FAMILIES\": 2869, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 5425, \"VACANT\": 401, \"OWNER_OCC\": 2083, \"RENTER_OCC\": 2941 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.875955921137475, 42.049006272248334 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wellesley\", \"CLASS\": \"CDP\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"74210\", \"CAPITAL\": \"N\", \"AREALAND\": 10.181000, \"AREAWATER\": 0.309000, \"POP_CL\": 6, \"POP2000\": 26613, \"WHITE\": 23947, \"BLACK\": 426, \"AMERI_ES\": 22, \"ASIAN\": 1691, \"HAWN_PI\": 3, \"OTHER\": 141, \"MULT_RACE\": 383, \"HISPANIC\": 617, \"MALES\": 11651, \"FEMALES\": 14962, \"AGE_UNDER5\": 1954, \"AGE_5_17\": 4721, \"AGE_18_21\": 3077, \"AGE_22_29\": 1219, \"AGE_30_39\": 3362, \"AGE_40_49\": 4098, \"AGE_50_64\": 4472, \"AGE_65_UP\": 3710, \"MED_AGE\": 37.600000, \"MED_AGE_M\": 38.600000, \"MED_AGE_F\": 36.600000, \"HOUSEHOLDS\": 8594, \"AVE_HH_SZ\": 2.700000, \"HSEHLD_1_M\": 515, \"HSEHLD_1_F\": 1260, \"MARHH_CHD\": 3078, \"MARHH_NO_C\": 2694, \"MHH_CHILD\": 61, \"FHH_CHILD\": 288, \"FAMILIES\": 6537, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 8861, \"VACANT\": 267, \"OWNER_OCC\": 7139, \"RENTER_OCC\": 1455 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.288241220141771, 42.306298042646453 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Westfield\", \"CLASS\": \"city\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"76030\", \"CAPITAL\": \"N\", \"AREALAND\": 46.578000, \"AREAWATER\": 0.737000, \"POP_CL\": 6, \"POP2000\": 40072, \"WHITE\": 37881, \"BLACK\": 365, \"AMERI_ES\": 90, \"ASIAN\": 329, \"HAWN_PI\": 19, \"OTHER\": 850, \"MULT_RACE\": 538, \"HISPANIC\": 2008, \"MALES\": 19385, \"FEMALES\": 20687, \"AGE_UNDER5\": 2366, \"AGE_5_17\": 7172, \"AGE_18_21\": 3612, \"AGE_22_29\": 3713, \"AGE_30_39\": 5777, \"AGE_40_49\": 6048, \"AGE_50_64\": 5910, \"AGE_65_UP\": 5474, \"MED_AGE\": 35.800000, \"MED_AGE_M\": 34.600000, \"MED_AGE_F\": 37.100000, \"HOUSEHOLDS\": 14797, \"AVE_HH_SZ\": 2.540000, \"HSEHLD_1_M\": 1582, \"HSEHLD_1_F\": 2244, \"MARHH_CHD\": 3463, \"MARHH_NO_C\": 4373, \"MHH_CHILD\": 282, \"FHH_CHILD\": 917, \"FAMILIES\": 10012, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 15441, \"VACANT\": 644, \"OWNER_OCC\": 10030, \"RENTER_OCC\": 4767 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -72.746222256495372, 42.129507310725501 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"West Springfield\", \"CLASS\": \"CDP\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"77885\", \"CAPITAL\": \"N\", \"AREALAND\": 16.749000, \"AREAWATER\": 0.788000, \"POP_CL\": 6, \"POP2000\": 27899, \"WHITE\": 25300, \"BLACK\": 572, \"AMERI_ES\": 61, \"ASIAN\": 551, \"HAWN_PI\": 10, \"OTHER\": 819, \"MULT_RACE\": 586, \"HISPANIC\": 1605, \"MALES\": 13604, \"FEMALES\": 14295, \"AGE_UNDER5\": 1631, \"AGE_5_17\": 4908, \"AGE_18_21\": 1177, \"AGE_22_29\": 2806, \"AGE_30_39\": 4219, \"AGE_40_49\": 4329, \"AGE_50_64\": 4382, \"AGE_65_UP\": 4447, \"MED_AGE\": 38.200000, \"MED_AGE_M\": 36.700000, \"MED_AGE_F\": 39.800000, \"HOUSEHOLDS\": 11823, \"AVE_HH_SZ\": 2.330000, \"HSEHLD_1_M\": 1908, \"HSEHLD_1_F\": 2117, \"MARHH_CHD\": 2212, \"MARHH_NO_C\": 3071, \"MHH_CHILD\": 211, \"FHH_CHILD\": 766, \"FAMILIES\": 7113, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 12259, \"VACANT\": 436, \"OWNER_OCC\": 6880, \"RENTER_OCC\": 4943 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -72.640913202688949, 42.112809295608145 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Weymouth\", \"CLASS\": \"CDP\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"78900\", \"CAPITAL\": \"N\", \"AREALAND\": 17.009000, \"AREAWATER\": 4.597000, \"POP_CL\": 7, \"POP2000\": 53988, \"WHITE\": 51229, \"BLACK\": 779, \"AMERI_ES\": 102, \"ASIAN\": 843, \"HAWN_PI\": 28, \"OTHER\": 344, \"MULT_RACE\": 663, \"HISPANIC\": 721, \"MALES\": 25640, \"FEMALES\": 28348, \"AGE_UNDER5\": 3436, \"AGE_5_17\": 8420, \"AGE_18_21\": 1848, \"AGE_22_29\": 5468, \"AGE_30_39\": 9331, \"AGE_40_49\": 8524, \"AGE_50_64\": 8648, \"AGE_65_UP\": 8313, \"MED_AGE\": 38.400000, \"MED_AGE_M\": 36.900000, \"MED_AGE_F\": 40.000000, \"HOUSEHOLDS\": 22028, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 2597, \"HSEHLD_1_F\": 4149, \"MARHH_CHD\": 4670, \"MARHH_NO_C\": 6040, \"MHH_CHILD\": 249, \"FHH_CHILD\": 1089, \"FAMILIES\": 13928, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 22573, \"VACANT\": 545, \"OWNER_OCC\": 14834, \"RENTER_OCC\": 7194 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -70.946462656132169, 42.206499963001342 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wilmington\", \"CLASS\": \"CDP\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"80195\", \"CAPITAL\": \"N\", \"AREALAND\": 17.132000, \"AREAWATER\": 0.080000, \"POP_CL\": 6, \"POP2000\": 21363, \"WHITE\": 20575, \"BLACK\": 88, \"AMERI_ES\": 17, \"ASIAN\": 434, \"HAWN_PI\": 1, \"OTHER\": 90, \"MULT_RACE\": 158, \"HISPANIC\": 203, \"MALES\": 10580, \"FEMALES\": 10783, \"AGE_UNDER5\": 1715, \"AGE_5_17\": 4185, \"AGE_18_21\": 723, \"AGE_22_29\": 1629, \"AGE_30_39\": 4076, \"AGE_40_49\": 3497, \"AGE_50_64\": 3227, \"AGE_65_UP\": 2311, \"MED_AGE\": 36.300000, \"MED_AGE_M\": 35.400000, \"MED_AGE_F\": 37.000000, \"HOUSEHOLDS\": 7027, \"AVE_HH_SZ\": 3.000000, \"HSEHLD_1_M\": 397, \"HSEHLD_1_F\": 588, \"MARHH_CHD\": 2550, \"MARHH_NO_C\": 2341, \"MHH_CHILD\": 66, \"FHH_CHILD\": 298, \"FAMILIES\": 5777, \"AVE_FAM_SZ\": 3.330000, \"HSE_UNITS\": 7158, \"VACANT\": 131, \"OWNER_OCC\": 6348, \"RENTER_OCC\": 679 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.170818519024792, 42.558613485090738 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Winchester\", \"CLASS\": \"CDP\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"80545\", \"CAPITAL\": \"N\", \"AREALAND\": 6.038000, \"AREAWATER\": 0.255000, \"POP_CL\": 6, \"POP2000\": 20810, \"WHITE\": 19375, \"BLACK\": 142, \"AMERI_ES\": 29, \"ASIAN\": 961, \"HAWN_PI\": 3, \"OTHER\": 57, \"MULT_RACE\": 243, \"HISPANIC\": 211, \"MALES\": 9792, \"FEMALES\": 11018, \"AGE_UNDER5\": 1529, \"AGE_5_17\": 3813, \"AGE_18_21\": 443, \"AGE_22_29\": 1147, \"AGE_30_39\": 3063, \"AGE_40_49\": 3525, \"AGE_50_64\": 3734, \"AGE_65_UP\": 3556, \"MED_AGE\": 41.100000, \"MED_AGE_M\": 39.800000, \"MED_AGE_F\": 42.200000, \"HOUSEHOLDS\": 7715, \"AVE_HH_SZ\": 2.650000, \"HSEHLD_1_M\": 537, \"HSEHLD_1_F\": 1156, \"MARHH_CHD\": 2449, \"MARHH_NO_C\": 2495, \"MHH_CHILD\": 52, \"FHH_CHILD\": 254, \"FAMILIES\": 5721, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 7908, \"VACANT\": 193, \"OWNER_OCC\": 6212, \"RENTER_OCC\": 1503 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.143264784764952, 42.451982970574967 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Winthrop\", \"CLASS\": \"CDP\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"80965\", \"CAPITAL\": \"N\", \"AREALAND\": 1.988000, \"AREAWATER\": 6.310000, \"POP_CL\": 6, \"POP2000\": 18303, \"WHITE\": 17286, \"BLACK\": 308, \"AMERI_ES\": 30, \"ASIAN\": 210, \"HAWN_PI\": 8, \"OTHER\": 249, \"MULT_RACE\": 212, \"HISPANIC\": 493, \"MALES\": 8608, \"FEMALES\": 9695, \"AGE_UNDER5\": 906, \"AGE_5_17\": 2507, \"AGE_18_21\": 705, \"AGE_22_29\": 1979, \"AGE_30_39\": 3086, \"AGE_40_49\": 2995, \"AGE_50_64\": 3101, \"AGE_65_UP\": 3024, \"MED_AGE\": 39.900000, \"MED_AGE_M\": 38.800000, \"MED_AGE_F\": 41.000000, \"HOUSEHOLDS\": 7843, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 980, \"HSEHLD_1_F\": 1570, \"MARHH_CHD\": 1366, \"MARHH_NO_C\": 2013, \"MHH_CHILD\": 97, \"FHH_CHILD\": 389, \"FAMILIES\": 4584, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 8067, \"VACANT\": 224, \"OWNER_OCC\": 4170, \"RENTER_OCC\": 3673 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -70.980244548124034, 42.374838346778994 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Woburn\", \"CLASS\": \"city\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"81035\", \"CAPITAL\": \"N\", \"AREALAND\": 12.674000, \"AREAWATER\": 0.219000, \"POP_CL\": 6, \"POP2000\": 37258, \"WHITE\": 33744, \"BLACK\": 697, \"AMERI_ES\": 36, \"ASIAN\": 1806, \"HAWN_PI\": 19, \"OTHER\": 535, \"MULT_RACE\": 421, \"HISPANIC\": 1152, \"MALES\": 18212, \"FEMALES\": 19046, \"AGE_UNDER5\": 2148, \"AGE_5_17\": 5714, \"AGE_18_21\": 1298, \"AGE_22_29\": 4353, \"AGE_30_39\": 6697, \"AGE_40_49\": 5841, \"AGE_50_64\": 5477, \"AGE_65_UP\": 5730, \"MED_AGE\": 37.700000, \"MED_AGE_M\": 36.400000, \"MED_AGE_F\": 39.000000, \"HOUSEHOLDS\": 14997, \"AVE_HH_SZ\": 2.470000, \"HSEHLD_1_M\": 1914, \"HSEHLD_1_F\": 2390, \"MARHH_CHD\": 3081, \"MARHH_NO_C\": 4341, \"MHH_CHILD\": 193, \"FHH_CHILD\": 739, \"FAMILIES\": 9652, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 15391, \"VACANT\": 394, \"OWNER_OCC\": 9177, \"RENTER_OCC\": 5820 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.152563588694875, 42.484582804046006 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Worcester\", \"CLASS\": \"city\", \"ST\": \"MA\", \"STFIPS\": \"25\", \"PLACEFIP\": \"82000\", \"CAPITAL\": \"N\", \"AREALAND\": 37.561000, \"AREAWATER\": 1.003000, \"POP_CL\": 8, \"POP2000\": 172648, \"WHITE\": 133124, \"BLACK\": 11892, \"AMERI_ES\": 769, \"ASIAN\": 8402, \"HAWN_PI\": 96, \"OTHER\": 12504, \"MULT_RACE\": 5861, \"HISPANIC\": 26155, \"MALES\": 82914, \"FEMALES\": 89734, \"AGE_UNDER5\": 11142, \"AGE_5_17\": 29585, \"AGE_18_21\": 15008, \"AGE_22_29\": 21635, \"AGE_30_39\": 26148, \"AGE_40_49\": 23327, \"AGE_50_64\": 21414, \"AGE_65_UP\": 24389, \"MED_AGE\": 33.400000, \"MED_AGE_M\": 31.900000, \"MED_AGE_F\": 34.900000, \"HOUSEHOLDS\": 67028, \"AVE_HH_SZ\": 2.410000, \"HSEHLD_1_M\": 9547, \"HSEHLD_1_F\": 12581, \"MARHH_CHD\": 11510, \"MARHH_NO_C\": 14175, \"MHH_CHILD\": 1326, \"FHH_CHILD\": 6614, \"FAMILIES\": 39228, \"AVE_FAM_SZ\": 3.110000, \"HSE_UNITS\": 70723, \"VACANT\": 3695, \"OWNER_OCC\": 29054, \"RENTER_OCC\": 37974 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.804144338831222, 42.268869404987804 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Aberdeen\", \"CLASS\": \"city\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"00125\", \"CAPITAL\": \"N\", \"AREALAND\": 6.390000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 13842, \"WHITE\": 8984, \"BLACK\": 3790, \"AMERI_ES\": 34, \"ASIAN\": 343, \"HAWN_PI\": 13, \"OTHER\": 197, \"MULT_RACE\": 481, \"HISPANIC\": 477, \"MALES\": 6579, \"FEMALES\": 7263, \"AGE_UNDER5\": 958, \"AGE_5_17\": 2700, \"AGE_18_21\": 740, \"AGE_22_29\": 1277, \"AGE_30_39\": 1983, \"AGE_40_49\": 2237, \"AGE_50_64\": 2192, \"AGE_65_UP\": 1755, \"MED_AGE\": 36.800000, \"MED_AGE_M\": 35.400000, \"MED_AGE_F\": 37.900000, \"HOUSEHOLDS\": 5475, \"AVE_HH_SZ\": 2.510000, \"HSEHLD_1_M\": 580, \"HSEHLD_1_F\": 886, \"MARHH_CHD\": 1008, \"MARHH_NO_C\": 1447, \"MHH_CHILD\": 190, \"FHH_CHILD\": 577, \"FAMILIES\": 3712, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 5894, \"VACANT\": 419, \"OWNER_OCC\": 3232, \"RENTER_OCC\": 2243 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.169211755691194, 39.51031125636095 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Adelphi\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"00400\", \"CAPITAL\": \"N\", \"AREALAND\": 2.959000, \"AREAWATER\": 0.003000, \"POP_CL\": 6, \"POP2000\": 14998, \"WHITE\": 4421, \"BLACK\": 5974, \"AMERI_ES\": 42, \"ASIAN\": 1493, \"HAWN_PI\": 9, \"OTHER\": 2255, \"MULT_RACE\": 804, \"HISPANIC\": 3860, \"MALES\": 7427, \"FEMALES\": 7571, \"AGE_UNDER5\": 1105, \"AGE_5_17\": 2302, \"AGE_18_21\": 950, \"AGE_22_29\": 2568, \"AGE_30_39\": 2667, \"AGE_40_49\": 2069, \"AGE_50_64\": 1908, \"AGE_65_UP\": 1429, \"MED_AGE\": 31.800000, \"MED_AGE_M\": 31.000000, \"MED_AGE_F\": 32.800000, \"HOUSEHOLDS\": 5332, \"AVE_HH_SZ\": 2.770000, \"HSEHLD_1_M\": 631, \"HSEHLD_1_F\": 835, \"MARHH_CHD\": 1117, \"MARHH_NO_C\": 1149, \"MHH_CHILD\": 138, \"FHH_CHILD\": 379, \"FAMILIES\": 3322, \"AVE_FAM_SZ\": 3.350000, \"HSE_UNITS\": 5627, \"VACANT\": 295, \"OWNER_OCC\": 2787, \"RENTER_OCC\": 2545 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.966775431159775, 38.996860550377754 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Annapolis\", \"CLASS\": \"city\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"01600\", \"CAPITAL\": \"Y\", \"AREALAND\": 6.729000, \"AREAWATER\": 0.886000, \"POP_CL\": 6, \"POP2000\": 35838, \"WHITE\": 22457, \"BLACK\": 11267, \"AMERI_ES\": 60, \"ASIAN\": 650, \"HAWN_PI\": 11, \"OTHER\": 796, \"MULT_RACE\": 597, \"HISPANIC\": 2301, \"MALES\": 16975, \"FEMALES\": 18863, \"AGE_UNDER5\": 2385, \"AGE_5_17\": 5389, \"AGE_18_21\": 1764, \"AGE_22_29\": 4752, \"AGE_30_39\": 6171, \"AGE_40_49\": 5160, \"AGE_50_64\": 5941, \"AGE_65_UP\": 4276, \"MED_AGE\": 35.700000, \"MED_AGE_M\": 34.300000, \"MED_AGE_F\": 37.100000, \"HOUSEHOLDS\": 15303, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 2035, \"HSEHLD_1_F\": 2998, \"MARHH_CHD\": 2017, \"MARHH_NO_C\": 3581, \"MHH_CHILD\": 237, \"FHH_CHILD\": 1497, \"FAMILIES\": 8676, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 16165, \"VACANT\": 862, \"OWNER_OCC\": 7905, \"RENTER_OCC\": 7398 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.501183868688798, 38.972945912148703 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Arbutus\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"01975\", \"CAPITAL\": \"N\", \"AREALAND\": 6.502000, \"AREAWATER\": 0.002000, \"POP_CL\": 6, \"POP2000\": 20116, \"WHITE\": 17141, \"BLACK\": 1261, \"AMERI_ES\": 57, \"ASIAN\": 1228, \"HAWN_PI\": 5, \"OTHER\": 96, \"MULT_RACE\": 328, \"HISPANIC\": 308, \"MALES\": 9736, \"FEMALES\": 10380, \"AGE_UNDER5\": 1152, \"AGE_5_17\": 3322, \"AGE_18_21\": 924, \"AGE_22_29\": 2297, \"AGE_30_39\": 3552, \"AGE_40_49\": 3098, \"AGE_50_64\": 2878, \"AGE_65_UP\": 2893, \"MED_AGE\": 36.700000, \"MED_AGE_M\": 35.600000, \"MED_AGE_F\": 37.800000, \"HOUSEHOLDS\": 8120, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 1002, \"HSEHLD_1_F\": 1237, \"MARHH_CHD\": 1663, \"MARHH_NO_C\": 2282, \"MHH_CHILD\": 175, \"FHH_CHILD\": 434, \"FAMILIES\": 5203, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 8380, \"VACANT\": 260, \"OWNER_OCC\": 5621, \"RENTER_OCC\": 2499 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.69395244699443, 39.244406745960752 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Arnold\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"02275\", \"CAPITAL\": \"N\", \"AREALAND\": 10.800000, \"AREAWATER\": 2.608000, \"POP_CL\": 6, \"POP2000\": 23422, \"WHITE\": 21429, \"BLACK\": 1132, \"AMERI_ES\": 43, \"ASIAN\": 350, \"HAWN_PI\": 6, \"OTHER\": 138, \"MULT_RACE\": 324, \"HISPANIC\": 442, \"MALES\": 11341, \"FEMALES\": 12081, \"AGE_UNDER5\": 1567, \"AGE_5_17\": 4941, \"AGE_18_21\": 882, \"AGE_22_29\": 1739, \"AGE_30_39\": 3855, \"AGE_40_49\": 4178, \"AGE_50_64\": 4251, \"AGE_65_UP\": 2009, \"MED_AGE\": 37.100000, \"MED_AGE_M\": 36.300000, \"MED_AGE_F\": 37.700000, \"HOUSEHOLDS\": 8373, \"AVE_HH_SZ\": 2.760000, \"HSEHLD_1_M\": 577, \"HSEHLD_1_F\": 941, \"MARHH_CHD\": 2723, \"MARHH_NO_C\": 2623, \"MHH_CHILD\": 152, \"FHH_CHILD\": 487, \"FAMILIES\": 6399, \"AVE_FAM_SZ\": 3.150000, \"HSE_UNITS\": 8623, \"VACANT\": 250, \"OWNER_OCC\": 7144, \"RENTER_OCC\": 1229 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.496579079042135, 39.047263916252831 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Aspen Hill\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"02825\", \"CAPITAL\": \"N\", \"AREALAND\": 10.466000, \"AREAWATER\": 0.060000, \"POP_CL\": 7, \"POP2000\": 50228, \"WHITE\": 27929, \"BLACK\": 10538, \"AMERI_ES\": 164, \"ASIAN\": 5779, \"HAWN_PI\": 31, \"OTHER\": 3759, \"MULT_RACE\": 2028, \"HISPANIC\": 7757, \"MALES\": 23783, \"FEMALES\": 26445, \"AGE_UNDER5\": 3270, \"AGE_5_17\": 8794, \"AGE_18_21\": 2043, \"AGE_22_29\": 5362, \"AGE_30_39\": 8233, \"AGE_40_49\": 7943, \"AGE_50_64\": 8288, \"AGE_65_UP\": 6295, \"MED_AGE\": 37.100000, \"MED_AGE_M\": 35.500000, \"MED_AGE_F\": 38.500000, \"HOUSEHOLDS\": 18187, \"AVE_HH_SZ\": 2.740000, \"HSEHLD_1_M\": 1326, \"HSEHLD_1_F\": 2657, \"MARHH_CHD\": 4404, \"MARHH_NO_C\": 5360, \"MHH_CHILD\": 268, \"FHH_CHILD\": 1385, \"FAMILIES\": 13085, \"AVE_FAM_SZ\": 3.180000, \"HSE_UNITS\": 18565, \"VACANT\": 378, \"OWNER_OCC\": 12250, \"RENTER_OCC\": 5937 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.080286203680558, 39.088525478775665 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ballenger Creek\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"03800\", \"CAPITAL\": \"N\", \"AREALAND\": 5.590000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 13518, \"WHITE\": 11275, \"BLACK\": 1362, \"AMERI_ES\": 36, \"ASIAN\": 417, \"HAWN_PI\": 5, \"OTHER\": 150, \"MULT_RACE\": 273, \"HISPANIC\": 424, \"MALES\": 6610, \"FEMALES\": 6908, \"AGE_UNDER5\": 1432, \"AGE_5_17\": 2754, \"AGE_18_21\": 431, \"AGE_22_29\": 1780, \"AGE_30_39\": 3147, \"AGE_40_49\": 1985, \"AGE_50_64\": 1065, \"AGE_65_UP\": 924, \"MED_AGE\": 31.100000, \"MED_AGE_M\": 30.700000, \"MED_AGE_F\": 31.500000, \"HOUSEHOLDS\": 5172, \"AVE_HH_SZ\": 2.610000, \"HSEHLD_1_M\": 596, \"HSEHLD_1_F\": 769, \"MARHH_CHD\": 1697, \"MARHH_NO_C\": 1033, \"MHH_CHILD\": 115, \"FHH_CHILD\": 373, \"FAMILIES\": 3411, \"AVE_FAM_SZ\": 3.220000, \"HSE_UNITS\": 5406, \"VACANT\": 234, \"OWNER_OCC\": 3663, \"RENTER_OCC\": 1509 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.432817804650199, 39.381593291275173 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Baltimore\", \"CLASS\": \"city\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"04000\", \"CAPITAL\": \"N\", \"AREALAND\": 80.804000, \"AREAWATER\": 11.274000, \"POP_CL\": 9, \"POP2000\": 651154, \"WHITE\": 205982, \"BLACK\": 418951, \"AMERI_ES\": 2097, \"ASIAN\": 9985, \"HAWN_PI\": 222, \"OTHER\": 4363, \"MULT_RACE\": 9554, \"HISPANIC\": 11061, \"MALES\": 303687, \"FEMALES\": 347467, \"AGE_UNDER5\": 41694, \"AGE_5_17\": 119659, \"AGE_18_21\": 43178, \"AGE_22_29\": 74060, \"AGE_30_39\": 98081, \"AGE_40_49\": 95376, \"AGE_50_64\": 93185, \"AGE_65_UP\": 85921, \"MED_AGE\": 35.000000, \"MED_AGE_M\": 33.300000, \"MED_AGE_F\": 36.500000, \"HOUSEHOLDS\": 257996, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 38962, \"HSEHLD_1_F\": 51162, \"MARHH_CHD\": 25717, \"MARHH_NO_C\": 43054, \"MHH_CHILD\": 5723, \"FHH_CHILD\": 34329, \"FAMILIES\": 147154, \"AVE_FAM_SZ\": 3.160000, \"HSE_UNITS\": 300477, \"VACANT\": 42481, \"OWNER_OCC\": 129869, \"RENTER_OCC\": 128127 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.6170416901967, 39.307956808986923 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bel Air\", \"CLASS\": \"town\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"05550\", \"CAPITAL\": \"N\", \"AREALAND\": 2.813000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10080, \"WHITE\": 9356, \"BLACK\": 441, \"AMERI_ES\": 20, \"ASIAN\": 142, \"HAWN_PI\": 3, \"OTHER\": 27, \"MULT_RACE\": 91, \"HISPANIC\": 123, \"MALES\": 4883, \"FEMALES\": 5197, \"AGE_UNDER5\": 537, \"AGE_5_17\": 1687, \"AGE_18_21\": 446, \"AGE_22_29\": 1018, \"AGE_30_39\": 1554, \"AGE_40_49\": 1583, \"AGE_50_64\": 1502, \"AGE_65_UP\": 1753, \"MED_AGE\": 38.900000, \"MED_AGE_M\": 36.300000, \"MED_AGE_F\": 41.300000, \"HOUSEHOLDS\": 4235, \"AVE_HH_SZ\": 2.250000, \"HSEHLD_1_M\": 528, \"HSEHLD_1_F\": 962, \"MARHH_CHD\": 851, \"MARHH_NO_C\": 1063, \"MHH_CHILD\": 92, \"FHH_CHILD\": 252, \"FAMILIES\": 2510, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 4444, \"VACANT\": 209, \"OWNER_OCC\": 2793, \"RENTER_OCC\": 1442 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.348310509374244, 39.536708059935954 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bel Air North\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"05825\", \"CAPITAL\": \"N\", \"AREALAND\": 16.359000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 25798, \"WHITE\": 24498, \"BLACK\": 574, \"AMERI_ES\": 31, \"ASIAN\": 416, \"HAWN_PI\": 6, \"OTHER\": 69, \"MULT_RACE\": 204, \"HISPANIC\": 284, \"MALES\": 12525, \"FEMALES\": 13273, \"AGE_UNDER5\": 1957, \"AGE_5_17\": 6145, \"AGE_18_21\": 953, \"AGE_22_29\": 1826, \"AGE_30_39\": 4444, \"AGE_40_49\": 4783, \"AGE_50_64\": 3604, \"AGE_65_UP\": 2086, \"MED_AGE\": 35.300000, \"MED_AGE_M\": 34.500000, \"MED_AGE_F\": 35.900000, \"HOUSEHOLDS\": 8716, \"AVE_HH_SZ\": 2.940000, \"HSEHLD_1_M\": 461, \"HSEHLD_1_F\": 809, \"MARHH_CHD\": 3627, \"MARHH_NO_C\": 2646, \"MHH_CHILD\": 122, \"FHH_CHILD\": 458, \"FAMILIES\": 7195, \"AVE_FAM_SZ\": 3.280000, \"HSE_UNITS\": 8978, \"VACANT\": 262, \"OWNER_OCC\": 7864, \"RENTER_OCC\": 852 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.361811300280607, 39.550440046069383 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bel Air South\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"05950\", \"CAPITAL\": \"N\", \"AREALAND\": 15.708000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 39711, \"WHITE\": 36373, \"BLACK\": 1632, \"AMERI_ES\": 64, \"ASIAN\": 897, \"HAWN_PI\": 15, \"OTHER\": 260, \"MULT_RACE\": 470, \"HISPANIC\": 752, \"MALES\": 19383, \"FEMALES\": 20328, \"AGE_UNDER5\": 3250, \"AGE_5_17\": 8137, \"AGE_18_21\": 1358, \"AGE_22_29\": 3704, \"AGE_30_39\": 7507, \"AGE_40_49\": 6567, \"AGE_50_64\": 5524, \"AGE_65_UP\": 3664, \"MED_AGE\": 34.900000, \"MED_AGE_M\": 34.000000, \"MED_AGE_F\": 35.600000, \"HOUSEHOLDS\": 14869, \"AVE_HH_SZ\": 2.670000, \"HSEHLD_1_M\": 1291, \"HSEHLD_1_F\": 1862, \"MARHH_CHD\": 4986, \"MARHH_NO_C\": 4343, \"MHH_CHILD\": 276, \"FHH_CHILD\": 764, \"FAMILIES\": 11011, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 15267, \"VACANT\": 398, \"OWNER_OCC\": 11995, \"RENTER_OCC\": 2874 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.319001959035106, 39.50275809046618 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Beltsville\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"06400\", \"CAPITAL\": \"N\", \"AREALAND\": 6.629000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 15690, \"WHITE\": 7562, \"BLACK\": 5015, \"AMERI_ES\": 41, \"ASIAN\": 1686, \"HAWN_PI\": 16, \"OTHER\": 850, \"MULT_RACE\": 520, \"HISPANIC\": 1544, \"MALES\": 7624, \"FEMALES\": 8066, \"AGE_UNDER5\": 1025, \"AGE_5_17\": 2682, \"AGE_18_21\": 813, \"AGE_22_29\": 2093, \"AGE_30_39\": 2771, \"AGE_40_49\": 2519, \"AGE_50_64\": 2387, \"AGE_65_UP\": 1400, \"MED_AGE\": 34.900000, \"MED_AGE_M\": 33.800000, \"MED_AGE_F\": 35.800000, \"HOUSEHOLDS\": 5690, \"AVE_HH_SZ\": 2.740000, \"HSEHLD_1_M\": 548, \"HSEHLD_1_F\": 759, \"MARHH_CHD\": 1367, \"MARHH_NO_C\": 1422, \"MHH_CHILD\": 101, \"FHH_CHILD\": 373, \"FAMILIES\": 3825, \"AVE_FAM_SZ\": 3.270000, \"HSE_UNITS\": 5865, \"VACANT\": 175, \"OWNER_OCC\": 3707, \"RENTER_OCC\": 1983 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.917868098495177, 39.037509582465255 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bethesda\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"07125\", \"CAPITAL\": \"N\", \"AREALAND\": 13.143000, \"AREAWATER\": 0.048000, \"POP_CL\": 7, \"POP2000\": 55277, \"WHITE\": 47460, \"BLACK\": 1476, \"AMERI_ES\": 92, \"ASIAN\": 4376, \"HAWN_PI\": 26, \"OTHER\": 680, \"MULT_RACE\": 1167, \"HISPANIC\": 3000, \"MALES\": 25820, \"FEMALES\": 29457, \"AGE_UNDER5\": 3148, \"AGE_5_17\": 8964, \"AGE_18_21\": 1174, \"AGE_22_29\": 4863, \"AGE_30_39\": 8208, \"AGE_40_49\": 8959, \"AGE_50_64\": 10437, \"AGE_65_UP\": 9524, \"MED_AGE\": 41.400000, \"MED_AGE_M\": 40.300000, \"MED_AGE_F\": 42.500000, \"HOUSEHOLDS\": 23659, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 2598, \"HSEHLD_1_F\": 5011, \"MARHH_CHD\": 5757, \"MARHH_NO_C\": 6887, \"MHH_CHILD\": 179, \"FHH_CHILD\": 696, \"FAMILIES\": 14466, \"AVE_FAM_SZ\": 2.920000, \"HSE_UNITS\": 24368, \"VACANT\": 709, \"OWNER_OCC\": 16352, \"RENTER_OCC\": 7307 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.113153689318594, 38.984660460436864 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bowie\", \"CLASS\": \"city\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"08775\", \"CAPITAL\": \"N\", \"AREALAND\": 16.102000, \"AREAWATER\": 0.020000, \"POP_CL\": 7, \"POP2000\": 50269, \"WHITE\": 31492, \"BLACK\": 15500, \"AMERI_ES\": 150, \"ASIAN\": 1482, \"HAWN_PI\": 17, \"OTHER\": 470, \"MULT_RACE\": 1158, \"HISPANIC\": 1468, \"MALES\": 24014, \"FEMALES\": 26255, \"AGE_UNDER5\": 3782, \"AGE_5_17\": 9748, \"AGE_18_21\": 1654, \"AGE_22_29\": 4134, \"AGE_30_39\": 9824, \"AGE_40_49\": 8656, \"AGE_50_64\": 7765, \"AGE_65_UP\": 4706, \"MED_AGE\": 36.300000, \"MED_AGE_M\": 35.700000, \"MED_AGE_F\": 36.900000, \"HOUSEHOLDS\": 18188, \"AVE_HH_SZ\": 2.740000, \"HSEHLD_1_M\": 1339, \"HSEHLD_1_F\": 2243, \"MARHH_CHD\": 5457, \"MARHH_NO_C\": 5463, \"MHH_CHILD\": 303, \"FHH_CHILD\": 1094, \"FAMILIES\": 13567, \"AVE_FAM_SZ\": 3.160000, \"HSE_UNITS\": 18718, \"VACANT\": 530, \"OWNER_OCC\": 15455, \"RENTER_OCC\": 2733 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.744554273395309, 38.964727707855033 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Brooklyn Park\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"10475\", \"CAPITAL\": \"N\", \"AREALAND\": 2.955000, \"AREAWATER\": 0.002000, \"POP_CL\": 6, \"POP2000\": 10938, \"WHITE\": 10079, \"BLACK\": 461, \"AMERI_ES\": 52, \"ASIAN\": 164, \"HAWN_PI\": 4, \"OTHER\": 63, \"MULT_RACE\": 115, \"HISPANIC\": 174, \"MALES\": 5323, \"FEMALES\": 5615, \"AGE_UNDER5\": 625, \"AGE_5_17\": 2102, \"AGE_18_21\": 503, \"AGE_22_29\": 941, \"AGE_30_39\": 1699, \"AGE_40_49\": 1631, \"AGE_50_64\": 1690, \"AGE_65_UP\": 1747, \"MED_AGE\": 37.800000, \"MED_AGE_M\": 36.700000, \"MED_AGE_F\": 38.800000, \"HOUSEHOLDS\": 4093, \"AVE_HH_SZ\": 2.670000, \"HSEHLD_1_M\": 364, \"HSEHLD_1_F\": 569, \"MARHH_CHD\": 814, \"MARHH_NO_C\": 1241, \"MHH_CHILD\": 118, \"FHH_CHILD\": 321, \"FAMILIES\": 2912, \"AVE_FAM_SZ\": 3.100000, \"HSE_UNITS\": 4311, \"VACANT\": 218, \"OWNER_OCC\": 3263, \"RENTER_OCC\": 830 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.612680610237604, 39.224857813075332 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Calverton\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"12350\", \"CAPITAL\": \"N\", \"AREALAND\": 4.717000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12610, \"WHITE\": 5434, \"BLACK\": 4295, \"AMERI_ES\": 18, \"ASIAN\": 2083, \"HAWN_PI\": 1, \"OTHER\": 329, \"MULT_RACE\": 450, \"HISPANIC\": 803, \"MALES\": 6021, \"FEMALES\": 6589, \"AGE_UNDER5\": 852, \"AGE_5_17\": 2304, \"AGE_18_21\": 481, \"AGE_22_29\": 1292, \"AGE_30_39\": 2193, \"AGE_40_49\": 2201, \"AGE_50_64\": 1980, \"AGE_65_UP\": 1307, \"MED_AGE\": 36.500000, \"MED_AGE_M\": 34.700000, \"MED_AGE_F\": 37.900000, \"HOUSEHOLDS\": 4543, \"AVE_HH_SZ\": 2.730000, \"HSEHLD_1_M\": 422, \"HSEHLD_1_F\": 644, \"MARHH_CHD\": 1231, \"MARHH_NO_C\": 1239, \"MHH_CHILD\": 77, \"FHH_CHILD\": 316, \"FAMILIES\": 3229, \"AVE_FAM_SZ\": 3.240000, \"HSE_UNITS\": 4661, \"VACANT\": 118, \"OWNER_OCC\": 3462, \"RENTER_OCC\": 1081 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.944825788840575, 39.057009564280342 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cambridge\", \"CLASS\": \"city\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"12400\", \"CAPITAL\": \"N\", \"AREALAND\": 6.726000, \"AREAWATER\": 2.254000, \"POP_CL\": 6, \"POP2000\": 10911, \"WHITE\": 5210, \"BLACK\": 5449, \"AMERI_ES\": 18, \"ASIAN\": 71, \"HAWN_PI\": 1, \"OTHER\": 67, \"MULT_RACE\": 95, \"HISPANIC\": 157, \"MALES\": 4989, \"FEMALES\": 5922, \"AGE_UNDER5\": 645, \"AGE_5_17\": 2021, \"AGE_18_21\": 476, \"AGE_22_29\": 1035, \"AGE_30_39\": 1482, \"AGE_40_49\": 1576, \"AGE_50_64\": 1632, \"AGE_65_UP\": 2044, \"MED_AGE\": 38.800000, \"MED_AGE_M\": 36.700000, \"MED_AGE_F\": 40.800000, \"HOUSEHOLDS\": 4629, \"AVE_HH_SZ\": 2.230000, \"HSEHLD_1_M\": 628, \"HSEHLD_1_F\": 1042, \"MARHH_CHD\": 481, \"MARHH_NO_C\": 939, \"MHH_CHILD\": 102, \"FHH_CHILD\": 675, \"FAMILIES\": 2697, \"AVE_FAM_SZ\": 2.880000, \"HSE_UNITS\": 5230, \"VACANT\": 601, \"OWNER_OCC\": 2088, \"RENTER_OCC\": 2541 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.077114366168118, 38.566286360034937 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Camp Springs\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"12600\", \"CAPITAL\": \"N\", \"AREALAND\": 7.257000, \"AREAWATER\": 0.005000, \"POP_CL\": 6, \"POP2000\": 17968, \"WHITE\": 3606, \"BLACK\": 13346, \"AMERI_ES\": 71, \"ASIAN\": 419, \"HAWN_PI\": 12, \"OTHER\": 193, \"MULT_RACE\": 321, \"HISPANIC\": 439, \"MALES\": 8632, \"FEMALES\": 9336, \"AGE_UNDER5\": 988, \"AGE_5_17\": 3572, \"AGE_18_21\": 769, \"AGE_22_29\": 1370, \"AGE_30_39\": 2537, \"AGE_40_49\": 3011, \"AGE_50_64\": 3662, \"AGE_65_UP\": 2059, \"MED_AGE\": 39.100000, \"MED_AGE_M\": 37.400000, \"MED_AGE_F\": 40.400000, \"HOUSEHOLDS\": 6210, \"AVE_HH_SZ\": 2.890000, \"HSEHLD_1_M\": 482, \"HSEHLD_1_F\": 637, \"MARHH_CHD\": 1357, \"MARHH_NO_C\": 2040, \"MHH_CHILD\": 141, \"FHH_CHILD\": 511, \"FAMILIES\": 4834, \"AVE_FAM_SZ\": 3.240000, \"HSE_UNITS\": 6494, \"VACANT\": 284, \"OWNER_OCC\": 5223, \"RENTER_OCC\": 987 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.918048759758463, 38.807463584071272 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Carney\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"13325\", \"CAPITAL\": \"N\", \"AREALAND\": 6.991000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 28264, \"WHITE\": 24112, \"BLACK\": 1957, \"AMERI_ES\": 47, \"ASIAN\": 1623, \"HAWN_PI\": 16, \"OTHER\": 122, \"MULT_RACE\": 387, \"HISPANIC\": 428, \"MALES\": 13351, \"FEMALES\": 14913, \"AGE_UNDER5\": 1420, \"AGE_5_17\": 4785, \"AGE_18_21\": 1219, \"AGE_22_29\": 3066, \"AGE_30_39\": 3961, \"AGE_40_49\": 4521, \"AGE_50_64\": 3808, \"AGE_65_UP\": 5484, \"MED_AGE\": 39.300000, \"MED_AGE_M\": 36.900000, \"MED_AGE_F\": 41.400000, \"HOUSEHOLDS\": 12083, \"AVE_HH_SZ\": 2.280000, \"HSEHLD_1_M\": 1382, \"HSEHLD_1_F\": 2529, \"MARHH_CHD\": 2307, \"MARHH_NO_C\": 3274, \"MHH_CHILD\": 216, \"FHH_CHILD\": 746, \"FAMILIES\": 7319, \"AVE_FAM_SZ\": 2.910000, \"HSE_UNITS\": 12477, \"VACANT\": 394, \"OWNER_OCC\": 7358, \"RENTER_OCC\": 4725 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.52410529061207, 39.396707890136881 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Catonsville\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"14125\", \"CAPITAL\": \"N\", \"AREALAND\": 14.002000, \"AREAWATER\": 0.002000, \"POP_CL\": 6, \"POP2000\": 39820, \"WHITE\": 32762, \"BLACK\": 4711, \"AMERI_ES\": 88, \"ASIAN\": 1439, \"HAWN_PI\": 15, \"OTHER\": 236, \"MULT_RACE\": 569, \"HISPANIC\": 743, \"MALES\": 18417, \"FEMALES\": 21403, \"AGE_UNDER5\": 2064, \"AGE_5_17\": 5849, \"AGE_18_21\": 3436, \"AGE_22_29\": 3408, \"AGE_30_39\": 5612, \"AGE_40_49\": 6001, \"AGE_50_64\": 5396, \"AGE_65_UP\": 8054, \"MED_AGE\": 39.300000, \"MED_AGE_M\": 36.800000, \"MED_AGE_F\": 41.400000, \"HOUSEHOLDS\": 15503, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 1742, \"HSEHLD_1_F\": 3501, \"MARHH_CHD\": 3046, \"MARHH_NO_C\": 4201, \"MHH_CHILD\": 205, \"FHH_CHILD\": 733, \"FAMILIES\": 9257, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 16054, \"VACANT\": 551, \"OWNER_OCC\": 10763, \"RENTER_OCC\": 4740 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.738035866680463, 39.273756711044207 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Chesapeake Ranch Estates-Drum Point\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"16062\", \"CAPITAL\": \"N\", \"AREALAND\": 6.039000, \"AREAWATER\": 0.357000, \"POP_CL\": 6, \"POP2000\": 11503, \"WHITE\": 9837, \"BLACK\": 1210, \"AMERI_ES\": 41, \"ASIAN\": 98, \"HAWN_PI\": 6, \"OTHER\": 100, \"MULT_RACE\": 211, \"HISPANIC\": 280, \"MALES\": 5750, \"FEMALES\": 5753, \"AGE_UNDER5\": 974, \"AGE_5_17\": 2971, \"AGE_18_21\": 412, \"AGE_22_29\": 1027, \"AGE_30_39\": 2446, \"AGE_40_49\": 1782, \"AGE_50_64\": 1143, \"AGE_65_UP\": 748, \"MED_AGE\": 31.800000, \"MED_AGE_M\": 31.900000, \"MED_AGE_F\": 31.700000, \"HOUSEHOLDS\": 3865, \"AVE_HH_SZ\": 2.980000, \"HSEHLD_1_M\": 341, \"HSEHLD_1_F\": 274, \"MARHH_CHD\": 1466, \"MARHH_NO_C\": 986, \"MHH_CHILD\": 159, \"FHH_CHILD\": 270, \"FAMILIES\": 3040, \"AVE_FAM_SZ\": 3.330000, \"HSE_UNITS\": 4281, \"VACANT\": 416, \"OWNER_OCC\": 3339, \"RENTER_OCC\": 526 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.418962991355414, 38.350075988612211 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Chillum\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"16875\", \"CAPITAL\": \"N\", \"AREALAND\": 4.017000, \"AREAWATER\": 0.020000, \"POP_CL\": 6, \"POP2000\": 34252, \"WHITE\": 4913, \"BLACK\": 21468, \"AMERI_ES\": 161, \"ASIAN\": 987, \"HAWN_PI\": 29, \"OTHER\": 4964, \"MULT_RACE\": 1730, \"HISPANIC\": 8108, \"MALES\": 16449, \"FEMALES\": 17803, \"AGE_UNDER5\": 2761, \"AGE_5_17\": 6072, \"AGE_18_21\": 1998, \"AGE_22_29\": 5233, \"AGE_30_39\": 5766, \"AGE_40_49\": 4793, \"AGE_50_64\": 4441, \"AGE_65_UP\": 3188, \"MED_AGE\": 31.700000, \"MED_AGE_M\": 30.300000, \"MED_AGE_F\": 33.100000, \"HOUSEHOLDS\": 12080, \"AVE_HH_SZ\": 2.800000, \"HSEHLD_1_M\": 1322, \"HSEHLD_1_F\": 1918, \"MARHH_CHD\": 2276, \"MARHH_NO_C\": 2149, \"MHH_CHILD\": 408, \"FHH_CHILD\": 1370, \"FAMILIES\": 7901, \"AVE_FAM_SZ\": 3.400000, \"HSE_UNITS\": 12524, \"VACANT\": 444, \"OWNER_OCC\": 4834, \"RENTER_OCC\": 7246 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.979066240389784, 38.968210542662568 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Clinton\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"17900\", \"CAPITAL\": \"N\", \"AREALAND\": 11.801000, \"AREAWATER\": 0.015000, \"POP_CL\": 6, \"POP2000\": 26064, \"WHITE\": 5359, \"BLACK\": 19207, \"AMERI_ES\": 122, \"ASIAN\": 643, \"HAWN_PI\": 5, \"OTHER\": 187, \"MULT_RACE\": 541, \"HISPANIC\": 494, \"MALES\": 12284, \"FEMALES\": 13780, \"AGE_UNDER5\": 1603, \"AGE_5_17\": 5482, \"AGE_18_21\": 1061, \"AGE_22_29\": 2008, \"AGE_30_39\": 4399, \"AGE_40_49\": 4524, \"AGE_50_64\": 4607, \"AGE_65_UP\": 2380, \"MED_AGE\": 36.900000, \"MED_AGE_M\": 35.800000, \"MED_AGE_F\": 37.800000, \"HOUSEHOLDS\": 8605, \"AVE_HH_SZ\": 2.960000, \"HSEHLD_1_M\": 576, \"HSEHLD_1_F\": 918, \"MARHH_CHD\": 2456, \"MARHH_NO_C\": 2600, \"MHH_CHILD\": 197, \"FHH_CHILD\": 664, \"FAMILIES\": 6769, \"AVE_FAM_SZ\": 3.320000, \"HSE_UNITS\": 8962, \"VACANT\": 357, \"OWNER_OCC\": 7727, \"RENTER_OCC\": 878 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.895478977501497, 38.763711599674977 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cockeysville\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"18250\", \"CAPITAL\": \"N\", \"AREALAND\": 11.283000, \"AREAWATER\": 0.147000, \"POP_CL\": 6, \"POP2000\": 19388, \"WHITE\": 15117, \"BLACK\": 1720, \"AMERI_ES\": 56, \"ASIAN\": 1918, \"HAWN_PI\": 4, \"OTHER\": 197, \"MULT_RACE\": 376, \"HISPANIC\": 657, \"MALES\": 9379, \"FEMALES\": 10009, \"AGE_UNDER5\": 968, \"AGE_5_17\": 2694, \"AGE_18_21\": 1070, \"AGE_22_29\": 3794, \"AGE_30_39\": 3306, \"AGE_40_49\": 2884, \"AGE_50_64\": 2715, \"AGE_65_UP\": 1957, \"MED_AGE\": 33.100000, \"MED_AGE_M\": 32.500000, \"MED_AGE_F\": 33.800000, \"HOUSEHOLDS\": 9176, \"AVE_HH_SZ\": 2.100000, \"HSEHLD_1_M\": 1720, \"HSEHLD_1_F\": 1845, \"MARHH_CHD\": 1439, \"MARHH_NO_C\": 1857, \"MHH_CHILD\": 132, \"FHH_CHILD\": 495, \"FAMILIES\": 4447, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 9606, \"VACANT\": 430, \"OWNER_OCC\": 3025, \"RENTER_OCC\": 6151 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.626728833300731, 39.473273799917578 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Colesville\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"18475\", \"CAPITAL\": \"N\", \"AREALAND\": 9.238000, \"AREAWATER\": 0.002000, \"POP_CL\": 6, \"POP2000\": 19810, \"WHITE\": 10961, \"BLACK\": 4408, \"AMERI_ES\": 45, \"ASIAN\": 3551, \"HAWN_PI\": 4, \"OTHER\": 302, \"MULT_RACE\": 539, \"HISPANIC\": 948, \"MALES\": 9635, \"FEMALES\": 10175, \"AGE_UNDER5\": 928, \"AGE_5_17\": 4037, \"AGE_18_21\": 786, \"AGE_22_29\": 1228, \"AGE_30_39\": 2162, \"AGE_40_49\": 3521, \"AGE_50_64\": 4428, \"AGE_65_UP\": 2720, \"MED_AGE\": 42.400000, \"MED_AGE_M\": 41.500000, \"MED_AGE_F\": 43.200000, \"HOUSEHOLDS\": 6525, \"AVE_HH_SZ\": 3.020000, \"HSEHLD_1_M\": 283, \"HSEHLD_1_F\": 522, \"MARHH_CHD\": 2118, \"MARHH_NO_C\": 2649, \"MHH_CHILD\": 61, \"FHH_CHILD\": 240, \"FAMILIES\": 5526, \"AVE_FAM_SZ\": 3.280000, \"HSE_UNITS\": 6615, \"VACANT\": 90, \"OWNER_OCC\": 5981, \"RENTER_OCC\": 544 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.003283103676154, 39.079695526224164 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"College Park\", \"CLASS\": \"city\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"18750\", \"CAPITAL\": \"N\", \"AREALAND\": 5.434000, \"AREAWATER\": 0.006000, \"POP_CL\": 6, \"POP2000\": 24657, \"WHITE\": 16969, \"BLACK\": 3929, \"AMERI_ES\": 81, \"ASIAN\": 2474, \"HAWN_PI\": 2, \"OTHER\": 633, \"MULT_RACE\": 569, \"HISPANIC\": 1366, \"MALES\": 12931, \"FEMALES\": 11726, \"AGE_UNDER5\": 707, \"AGE_5_17\": 1894, \"AGE_18_21\": 10433, \"AGE_22_29\": 3717, \"AGE_30_39\": 2267, \"AGE_40_49\": 1949, \"AGE_50_64\": 1926, \"AGE_65_UP\": 1764, \"MED_AGE\": 21.700000, \"MED_AGE_M\": 21.700000, \"MED_AGE_F\": 21.600000, \"HOUSEHOLDS\": 6030, \"AVE_HH_SZ\": 2.650000, \"HSEHLD_1_M\": 717, \"HSEHLD_1_F\": 830, \"MARHH_CHD\": 939, \"MARHH_NO_C\": 1387, \"MHH_CHILD\": 64, \"FHH_CHILD\": 192, \"FAMILIES\": 3041, \"AVE_FAM_SZ\": 3.110000, \"HSE_UNITS\": 6245, \"VACANT\": 215, \"OWNER_OCC\": 3448, \"RENTER_OCC\": 2582 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.927529917103598, 38.996560576289269 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Columbia\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"19125\", \"CAPITAL\": \"N\", \"AREALAND\": 27.562000, \"AREAWATER\": 0.102000, \"POP_CL\": 7, \"POP2000\": 88254, \"WHITE\": 58708, \"BLACK\": 18949, \"AMERI_ES\": 232, \"ASIAN\": 6440, \"HAWN_PI\": 46, \"OTHER\": 1442, \"MULT_RACE\": 2437, \"HISPANIC\": 3636, \"MALES\": 42553, \"FEMALES\": 45701, \"AGE_UNDER5\": 6116, \"AGE_5_17\": 17052, \"AGE_18_21\": 2990, \"AGE_22_29\": 9462, \"AGE_30_39\": 15929, \"AGE_40_49\": 14770, \"AGE_50_64\": 15340, \"AGE_65_UP\": 6595, \"MED_AGE\": 35.500000, \"MED_AGE_M\": 34.400000, \"MED_AGE_F\": 36.600000, \"HOUSEHOLDS\": 34199, \"AVE_HH_SZ\": 2.540000, \"HSEHLD_1_M\": 3691, \"HSEHLD_1_F\": 5071, \"MARHH_CHD\": 9273, \"MARHH_NO_C\": 8976, \"MHH_CHILD\": 538, \"FHH_CHILD\": 2451, \"FAMILIES\": 23126, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 35281, \"VACANT\": 1082, \"OWNER_OCC\": 22644, \"RENTER_OCC\": 11555 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.857056131745139, 39.20357362325003 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Coral Hills\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"19825\", \"CAPITAL\": \"N\", \"AREALAND\": 1.521000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10720, \"WHITE\": 385, \"BLACK\": 10030, \"AMERI_ES\": 53, \"ASIAN\": 55, \"HAWN_PI\": 5, \"OTHER\": 48, \"MULT_RACE\": 144, \"HISPANIC\": 134, \"MALES\": 5025, \"FEMALES\": 5695, \"AGE_UNDER5\": 812, \"AGE_5_17\": 2474, \"AGE_18_21\": 604, \"AGE_22_29\": 1175, \"AGE_30_39\": 1782, \"AGE_40_49\": 1560, \"AGE_50_64\": 1612, \"AGE_65_UP\": 701, \"MED_AGE\": 31.800000, \"MED_AGE_M\": 30.400000, \"MED_AGE_F\": 33.000000, \"HOUSEHOLDS\": 3833, \"AVE_HH_SZ\": 2.800000, \"HSEHLD_1_M\": 460, \"HSEHLD_1_F\": 458, \"MARHH_CHD\": 529, \"MARHH_NO_C\": 671, \"MHH_CHILD\": 138, \"FHH_CHILD\": 682, \"FAMILIES\": 2694, \"AVE_FAM_SZ\": 3.310000, \"HSE_UNITS\": 4177, \"VACANT\": 344, \"OWNER_OCC\": 2136, \"RENTER_OCC\": 1697 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.928030730071711, 38.872312576907383 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Crofton\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"20875\", \"CAPITAL\": \"N\", \"AREALAND\": 5.024000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 20091, \"WHITE\": 18124, \"BLACK\": 1031, \"AMERI_ES\": 47, \"ASIAN\": 469, \"HAWN_PI\": 9, \"OTHER\": 121, \"MULT_RACE\": 290, \"HISPANIC\": 499, \"MALES\": 9752, \"FEMALES\": 10339, \"AGE_UNDER5\": 1718, \"AGE_5_17\": 4033, \"AGE_18_21\": 654, \"AGE_22_29\": 1822, \"AGE_30_39\": 4121, \"AGE_40_49\": 3308, \"AGE_50_64\": 3126, \"AGE_65_UP\": 1309, \"MED_AGE\": 34.700000, \"MED_AGE_M\": 34.000000, \"MED_AGE_F\": 35.300000, \"HOUSEHOLDS\": 7404, \"AVE_HH_SZ\": 2.690000, \"HSEHLD_1_M\": 634, \"HSEHLD_1_F\": 854, \"MARHH_CHD\": 2436, \"MARHH_NO_C\": 2070, \"MHH_CHILD\": 122, \"FHH_CHILD\": 473, \"FAMILIES\": 5476, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 7573, \"VACANT\": 169, \"OWNER_OCC\": 5786, \"RENTER_OCC\": 1618 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.681015238022141, 39.008860757571135 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cumberland\", \"CLASS\": \"city\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"21325\", \"CAPITAL\": \"N\", \"AREALAND\": 9.069000, \"AREAWATER\": 0.012000, \"POP_CL\": 6, \"POP2000\": 21518, \"WHITE\": 19913, \"BLACK\": 1088, \"AMERI_ES\": 57, \"ASIAN\": 132, \"HAWN_PI\": 4, \"OTHER\": 57, \"MULT_RACE\": 267, \"HISPANIC\": 150, \"MALES\": 9959, \"FEMALES\": 11559, \"AGE_UNDER5\": 1264, \"AGE_5_17\": 3624, \"AGE_18_21\": 1068, \"AGE_22_29\": 1900, \"AGE_30_39\": 2725, \"AGE_40_49\": 2946, \"AGE_50_64\": 3542, \"AGE_65_UP\": 4449, \"MED_AGE\": 40.600000, \"MED_AGE_M\": 37.900000, \"MED_AGE_F\": 43.100000, \"HOUSEHOLDS\": 9538, \"AVE_HH_SZ\": 2.200000, \"HSEHLD_1_M\": 1299, \"HSEHLD_1_F\": 2306, \"MARHH_CHD\": 1425, \"MARHH_NO_C\": 2359, \"MHH_CHILD\": 166, \"FHH_CHILD\": 804, \"FAMILIES\": 5439, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 11143, \"VACANT\": 1605, \"OWNER_OCC\": 5529, \"RENTER_OCC\": 4009 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -78.762875833906264, 39.647686938306194 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Damascus\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"21475\", \"CAPITAL\": \"N\", \"AREALAND\": 9.625000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11430, \"WHITE\": 10248, \"BLACK\": 529, \"AMERI_ES\": 28, \"ASIAN\": 253, \"HAWN_PI\": 3, \"OTHER\": 146, \"MULT_RACE\": 223, \"HISPANIC\": 493, \"MALES\": 5541, \"FEMALES\": 5889, \"AGE_UNDER5\": 952, \"AGE_5_17\": 2931, \"AGE_18_21\": 455, \"AGE_22_29\": 809, \"AGE_30_39\": 2004, \"AGE_40_49\": 2260, \"AGE_50_64\": 1414, \"AGE_65_UP\": 605, \"MED_AGE\": 33.800000, \"MED_AGE_M\": 33.300000, \"MED_AGE_F\": 34.200000, \"HOUSEHOLDS\": 3710, \"AVE_HH_SZ\": 3.080000, \"HSEHLD_1_M\": 205, \"HSEHLD_1_F\": 281, \"MARHH_CHD\": 1566, \"MARHH_NO_C\": 958, \"MHH_CHILD\": 88, \"FHH_CHILD\": 303, \"FAMILIES\": 3078, \"AVE_FAM_SZ\": 3.380000, \"HSE_UNITS\": 3773, \"VACANT\": 63, \"OWNER_OCC\": 3199, \"RENTER_OCC\": 511 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.206116020650981, 39.271040405168783 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Dundalk\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"23975\", \"CAPITAL\": \"N\", \"AREALAND\": 13.286000, \"AREAWATER\": 4.100000, \"POP_CL\": 7, \"POP2000\": 62306, \"WHITE\": 55815, \"BLACK\": 4680, \"AMERI_ES\": 358, \"ASIAN\": 460, \"HAWN_PI\": 25, \"OTHER\": 270, \"MULT_RACE\": 698, \"HISPANIC\": 904, \"MALES\": 29742, \"FEMALES\": 32564, \"AGE_UNDER5\": 3612, \"AGE_5_17\": 11279, \"AGE_18_21\": 2736, \"AGE_22_29\": 5138, \"AGE_30_39\": 9211, \"AGE_40_49\": 9537, \"AGE_50_64\": 9751, \"AGE_65_UP\": 11042, \"MED_AGE\": 39.200000, \"MED_AGE_M\": 37.700000, \"MED_AGE_F\": 40.500000, \"HOUSEHOLDS\": 24772, \"AVE_HH_SZ\": 2.500000, \"HSEHLD_1_M\": 2594, \"HSEHLD_1_F\": 3954, \"MARHH_CHD\": 4450, \"MARHH_NO_C\": 7066, \"MHH_CHILD\": 745, \"FHH_CHILD\": 2030, \"FAMILIES\": 16980, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 26385, \"VACANT\": 1613, \"OWNER_OCC\": 17838, \"RENTER_OCC\": 6934 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.505209349075599, 39.26595790781812 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Easton\", \"CLASS\": \"town\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"24475\", \"CAPITAL\": \"N\", \"AREALAND\": 10.292000, \"AREAWATER\": 0.119000, \"POP_CL\": 6, \"POP2000\": 11708, \"WHITE\": 8401, \"BLACK\": 2746, \"AMERI_ES\": 20, \"ASIAN\": 210, \"HAWN_PI\": 42, \"OTHER\": 176, \"MULT_RACE\": 113, \"HISPANIC\": 404, \"MALES\": 5349, \"FEMALES\": 6359, \"AGE_UNDER5\": 743, \"AGE_5_17\": 1907, \"AGE_18_21\": 464, \"AGE_22_29\": 1161, \"AGE_30_39\": 1874, \"AGE_40_49\": 1662, \"AGE_50_64\": 1644, \"AGE_65_UP\": 2253, \"MED_AGE\": 38.600000, \"MED_AGE_M\": 36.000000, \"MED_AGE_F\": 40.800000, \"HOUSEHOLDS\": 5031, \"AVE_HH_SZ\": 2.220000, \"HSEHLD_1_M\": 626, \"HSEHLD_1_F\": 1195, \"MARHH_CHD\": 851, \"MARHH_NO_C\": 1154, \"MHH_CHILD\": 93, \"FHH_CHILD\": 447, \"FAMILIES\": 2881, \"AVE_FAM_SZ\": 2.910000, \"HSE_UNITS\": 5399, \"VACANT\": 368, \"OWNER_OCC\": 2699, \"RENTER_OCC\": 2332 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.070489969225079, 38.771595370146834 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"East Riverdale\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"24650\", \"CAPITAL\": \"N\", \"AREALAND\": 1.643000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14961, \"WHITE\": 4296, \"BLACK\": 7477, \"AMERI_ES\": 89, \"ASIAN\": 555, \"HAWN_PI\": 21, \"OTHER\": 1972, \"MULT_RACE\": 551, \"HISPANIC\": 3960, \"MALES\": 7588, \"FEMALES\": 7373, \"AGE_UNDER5\": 1297, \"AGE_5_17\": 3349, \"AGE_18_21\": 1036, \"AGE_22_29\": 2003, \"AGE_30_39\": 2583, \"AGE_40_49\": 2122, \"AGE_50_64\": 1713, \"AGE_65_UP\": 858, \"MED_AGE\": 29.200000, \"MED_AGE_M\": 28.200000, \"MED_AGE_F\": 30.100000, \"HOUSEHOLDS\": 4538, \"AVE_HH_SZ\": 3.290000, \"HSEHLD_1_M\": 456, \"HSEHLD_1_F\": 448, \"MARHH_CHD\": 1185, \"MARHH_NO_C\": 809, \"MHH_CHILD\": 171, \"FHH_CHILD\": 566, \"FAMILIES\": 3354, \"AVE_FAM_SZ\": 3.740000, \"HSE_UNITS\": 4778, \"VACANT\": 240, \"OWNER_OCC\": 2386, \"RENTER_OCC\": 2152 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.913636032661529, 38.956315585955707 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Edgewood\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"25150\", \"CAPITAL\": \"N\", \"AREALAND\": 17.929000, \"AREAWATER\": 0.101000, \"POP_CL\": 6, \"POP2000\": 23378, \"WHITE\": 15921, \"BLACK\": 5999, \"AMERI_ES\": 94, \"ASIAN\": 383, \"HAWN_PI\": 22, \"OTHER\": 328, \"MULT_RACE\": 631, \"HISPANIC\": 794, \"MALES\": 11240, \"FEMALES\": 12138, \"AGE_UNDER5\": 2093, \"AGE_5_17\": 5429, \"AGE_18_21\": 1219, \"AGE_22_29\": 2552, \"AGE_30_39\": 4150, \"AGE_40_49\": 3443, \"AGE_50_64\": 3021, \"AGE_65_UP\": 1471, \"MED_AGE\": 30.900000, \"MED_AGE_M\": 30.200000, \"MED_AGE_F\": 31.600000, \"HOUSEHOLDS\": 8299, \"AVE_HH_SZ\": 2.810000, \"HSEHLD_1_M\": 761, \"HSEHLD_1_F\": 868, \"MARHH_CHD\": 2176, \"MARHH_NO_C\": 1988, \"MHH_CHILD\": 300, \"FHH_CHILD\": 1164, \"FAMILIES\": 6226, \"AVE_FAM_SZ\": 3.210000, \"HSE_UNITS\": 8834, \"VACANT\": 535, \"OWNER_OCC\": 5443, \"RENTER_OCC\": 2856 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.305586047711984, 39.430276104637855 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Eldersburg\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"25575\", \"CAPITAL\": \"N\", \"AREALAND\": 40.074000, \"AREAWATER\": 2.060000, \"POP_CL\": 6, \"POP2000\": 27741, \"WHITE\": 26250, \"BLACK\": 880, \"AMERI_ES\": 60, \"ASIAN\": 263, \"HAWN_PI\": 3, \"OTHER\": 73, \"MULT_RACE\": 212, \"HISPANIC\": 302, \"MALES\": 13961, \"FEMALES\": 13780, \"AGE_UNDER5\": 1980, \"AGE_5_17\": 6094, \"AGE_18_21\": 1087, \"AGE_22_29\": 1778, \"AGE_30_39\": 4889, \"AGE_40_49\": 4951, \"AGE_50_64\": 4361, \"AGE_65_UP\": 2601, \"MED_AGE\": 36.400000, \"MED_AGE_M\": 35.600000, \"MED_AGE_F\": 37.300000, \"HOUSEHOLDS\": 9138, \"AVE_HH_SZ\": 2.920000, \"HSEHLD_1_M\": 512, \"HSEHLD_1_F\": 843, \"MARHH_CHD\": 3509, \"MARHH_NO_C\": 3090, \"MHH_CHILD\": 160, \"FHH_CHILD\": 364, \"FAMILIES\": 7506, \"AVE_FAM_SZ\": 3.250000, \"HSE_UNITS\": 9382, \"VACANT\": 244, \"OWNER_OCC\": 8113, \"RENTER_OCC\": 1025 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.951496203774894, 39.400802556794304 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Elkridge\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"25750\", \"CAPITAL\": \"N\", \"AREALAND\": 7.872000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 22042, \"WHITE\": 17762, \"BLACK\": 2114, \"AMERI_ES\": 47, \"ASIAN\": 1427, \"HAWN_PI\": 6, \"OTHER\": 209, \"MULT_RACE\": 477, \"HISPANIC\": 489, \"MALES\": 10770, \"FEMALES\": 11272, \"AGE_UNDER5\": 2178, \"AGE_5_17\": 4250, \"AGE_18_21\": 647, \"AGE_22_29\": 2740, \"AGE_30_39\": 5718, \"AGE_40_49\": 3315, \"AGE_50_64\": 2058, \"AGE_65_UP\": 1136, \"MED_AGE\": 32.100000, \"MED_AGE_M\": 31.700000, \"MED_AGE_F\": 32.400000, \"HOUSEHOLDS\": 8324, \"AVE_HH_SZ\": 2.640000, \"HSEHLD_1_M\": 811, \"HSEHLD_1_F\": 1066, \"MARHH_CHD\": 2752, \"MARHH_NO_C\": 1878, \"MHH_CHILD\": 171, \"FHH_CHILD\": 570, \"FAMILIES\": 5797, \"AVE_FAM_SZ\": 3.160000, \"HSE_UNITS\": 8719, \"VACANT\": 395, \"OWNER_OCC\": 6449, \"RENTER_OCC\": 1875 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.750180579446109, 39.202057702136784 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Elkton\", \"CLASS\": \"town\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"25800\", \"CAPITAL\": \"N\", \"AREALAND\": 8.033000, \"AREAWATER\": 0.178000, \"POP_CL\": 6, \"POP2000\": 11893, \"WHITE\": 10210, \"BLACK\": 1146, \"AMERI_ES\": 38, \"ASIAN\": 139, \"HAWN_PI\": 5, \"OTHER\": 93, \"MULT_RACE\": 262, \"HISPANIC\": 353, \"MALES\": 5696, \"FEMALES\": 6197, \"AGE_UNDER5\": 1029, \"AGE_5_17\": 2464, \"AGE_18_21\": 588, \"AGE_22_29\": 1684, \"AGE_30_39\": 2024, \"AGE_40_49\": 1562, \"AGE_50_64\": 1318, \"AGE_65_UP\": 1224, \"MED_AGE\": 30.700000, \"MED_AGE_M\": 29.900000, \"MED_AGE_F\": 31.600000, \"HOUSEHOLDS\": 4446, \"AVE_HH_SZ\": 2.550000, \"HSEHLD_1_M\": 512, \"HSEHLD_1_F\": 708, \"MARHH_CHD\": 933, \"MARHH_NO_C\": 921, \"MHH_CHILD\": 145, \"FHH_CHILD\": 578, \"FAMILIES\": 2898, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 4743, \"VACANT\": 297, \"OWNER_OCC\": 2148, \"RENTER_OCC\": 2298 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.825924265965824, 39.610017707704948 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ellicott City\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"26000\", \"CAPITAL\": \"N\", \"AREALAND\": 32.027000, \"AREAWATER\": 0.064000, \"POP_CL\": 7, \"POP2000\": 56397, \"WHITE\": 44177, \"BLACK\": 4138, \"AMERI_ES\": 84, \"ASIAN\": 6714, \"HAWN_PI\": 9, \"OTHER\": 313, \"MULT_RACE\": 962, \"HISPANIC\": 1209, \"MALES\": 27610, \"FEMALES\": 28787, \"AGE_UNDER5\": 3742, \"AGE_5_17\": 12331, \"AGE_18_21\": 1885, \"AGE_22_29\": 4342, \"AGE_30_39\": 8880, \"AGE_40_49\": 10792, \"AGE_50_64\": 9033, \"AGE_65_UP\": 5392, \"MED_AGE\": 37.300000, \"MED_AGE_M\": 36.700000, \"MED_AGE_F\": 37.800000, \"HOUSEHOLDS\": 20250, \"AVE_HH_SZ\": 2.760000, \"HSEHLD_1_M\": 1662, \"HSEHLD_1_F\": 2302, \"MARHH_CHD\": 7148, \"MARHH_NO_C\": 6074, \"MHH_CHILD\": 273, \"FHH_CHILD\": 930, \"FAMILIES\": 15298, \"AVE_FAM_SZ\": 3.220000, \"HSE_UNITS\": 20789, \"VACANT\": 539, \"OWNER_OCC\": 15124, \"RENTER_OCC\": 5126 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.830567585379086, 39.269257641721197 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Essex\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"26600\", \"CAPITAL\": \"N\", \"AREALAND\": 9.522000, \"AREAWATER\": 2.377000, \"POP_CL\": 6, \"POP2000\": 39078, \"WHITE\": 29136, \"BLACK\": 8200, \"AMERI_ES\": 213, \"ASIAN\": 458, \"HAWN_PI\": 19, \"OTHER\": 321, \"MULT_RACE\": 731, \"HISPANIC\": 884, \"MALES\": 18836, \"FEMALES\": 20242, \"AGE_UNDER5\": 2827, \"AGE_5_17\": 7358, \"AGE_18_21\": 1942, \"AGE_22_29\": 4170, \"AGE_30_39\": 6054, \"AGE_40_49\": 5954, \"AGE_50_64\": 5756, \"AGE_65_UP\": 5017, \"MED_AGE\": 35.600000, \"MED_AGE_M\": 34.900000, \"MED_AGE_F\": 36.200000, \"HOUSEHOLDS\": 15952, \"AVE_HH_SZ\": 2.450000, \"HSEHLD_1_M\": 2174, \"HSEHLD_1_F\": 2493, \"MARHH_CHD\": 2630, \"MARHH_NO_C\": 3883, \"MHH_CHILD\": 505, \"FHH_CHILD\": 1944, \"FAMILIES\": 10339, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 16997, \"VACANT\": 1045, \"OWNER_OCC\": 8311, \"RENTER_OCC\": 7641 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.451738294256018, 39.307737957748927 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fairland\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"27250\", \"CAPITAL\": \"N\", \"AREALAND\": 4.991000, \"AREAWATER\": 0.002000, \"POP_CL\": 6, \"POP2000\": 21738, \"WHITE\": 7771, \"BLACK\": 9345, \"AMERI_ES\": 54, \"ASIAN\": 3154, \"HAWN_PI\": 7, \"OTHER\": 636, \"MULT_RACE\": 771, \"HISPANIC\": 1461, \"MALES\": 9873, \"FEMALES\": 11865, \"AGE_UNDER5\": 1575, \"AGE_5_17\": 3954, \"AGE_18_21\": 856, \"AGE_22_29\": 3493, \"AGE_30_39\": 4457, \"AGE_40_49\": 3481, \"AGE_50_64\": 2697, \"AGE_65_UP\": 1225, \"MED_AGE\": 32.100000, \"MED_AGE_M\": 31.100000, \"MED_AGE_F\": 32.900000, \"HOUSEHOLDS\": 8612, \"AVE_HH_SZ\": 2.500000, \"HSEHLD_1_M\": 877, \"HSEHLD_1_F\": 1458, \"MARHH_CHD\": 1871, \"MARHH_NO_C\": 1780, \"MHH_CHILD\": 156, \"FHH_CHILD\": 969, \"FAMILIES\": 5464, \"AVE_FAM_SZ\": 3.110000, \"HSE_UNITS\": 8918, \"VACANT\": 306, \"OWNER_OCC\": 4097, \"RENTER_OCC\": 4515 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.94772178521734, 39.07945856217723 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ferndale\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"28075\", \"CAPITAL\": \"N\", \"AREALAND\": 4.063000, \"AREAWATER\": 0.008000, \"POP_CL\": 6, \"POP2000\": 16056, \"WHITE\": 12395, \"BLACK\": 2504, \"AMERI_ES\": 65, \"ASIAN\": 529, \"HAWN_PI\": 3, \"OTHER\": 236, \"MULT_RACE\": 324, \"HISPANIC\": 499, \"MALES\": 7822, \"FEMALES\": 8234, \"AGE_UNDER5\": 1092, \"AGE_5_17\": 2998, \"AGE_18_21\": 694, \"AGE_22_29\": 1839, \"AGE_30_39\": 2784, \"AGE_40_49\": 2345, \"AGE_50_64\": 2319, \"AGE_65_UP\": 1985, \"MED_AGE\": 35.300000, \"MED_AGE_M\": 34.000000, \"MED_AGE_F\": 36.500000, \"HOUSEHOLDS\": 6240, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 641, \"HSEHLD_1_F\": 865, \"MARHH_CHD\": 1287, \"MARHH_NO_C\": 1727, \"MHH_CHILD\": 189, \"FHH_CHILD\": 563, \"FAMILIES\": 4289, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 6443, \"VACANT\": 203, \"OWNER_OCC\": 3810, \"RENTER_OCC\": 2430 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.635835200632172, 39.188065793756692 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Forestville\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"29000\", \"CAPITAL\": \"N\", \"AREALAND\": 4.009000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12707, \"WHITE\": 1339, \"BLACK\": 10900, \"AMERI_ES\": 37, \"ASIAN\": 117, \"HAWN_PI\": 7, \"OTHER\": 77, \"MULT_RACE\": 230, \"HISPANIC\": 167, \"MALES\": 5781, \"FEMALES\": 6926, \"AGE_UNDER5\": 891, \"AGE_5_17\": 2693, \"AGE_18_21\": 605, \"AGE_22_29\": 1197, \"AGE_30_39\": 2158, \"AGE_40_49\": 2133, \"AGE_50_64\": 1993, \"AGE_65_UP\": 1037, \"MED_AGE\": 34.900000, \"MED_AGE_M\": 33.100000, \"MED_AGE_F\": 36.300000, \"HOUSEHOLDS\": 4642, \"AVE_HH_SZ\": 2.710000, \"HSEHLD_1_M\": 467, \"HSEHLD_1_F\": 681, \"MARHH_CHD\": 856, \"MARHH_NO_C\": 919, \"MHH_CHILD\": 111, \"FHH_CHILD\": 710, \"FAMILIES\": 3270, \"AVE_FAM_SZ\": 3.220000, \"HSE_UNITS\": 4951, \"VACANT\": 309, \"OWNER_OCC\": 3139, \"RENTER_OCC\": 1503 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.875210369384092, 38.854912613036454 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fort Washington\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"29525\", \"CAPITAL\": \"N\", \"AREALAND\": 13.576000, \"AREAWATER\": 0.424000, \"POP_CL\": 6, \"POP2000\": 23845, \"WHITE\": 4460, \"BLACK\": 16016, \"AMERI_ES\": 86, \"ASIAN\": 2468, \"HAWN_PI\": 15, \"OTHER\": 232, \"MULT_RACE\": 568, \"HISPANIC\": 548, \"MALES\": 11402, \"FEMALES\": 12443, \"AGE_UNDER5\": 1238, \"AGE_5_17\": 4449, \"AGE_18_21\": 1021, \"AGE_22_29\": 1838, \"AGE_30_39\": 3161, \"AGE_40_49\": 3951, \"AGE_50_64\": 5724, \"AGE_65_UP\": 2463, \"MED_AGE\": 40.600000, \"MED_AGE_M\": 39.700000, \"MED_AGE_F\": 41.300000, \"HOUSEHOLDS\": 8245, \"AVE_HH_SZ\": 2.870000, \"HSEHLD_1_M\": 651, \"HSEHLD_1_F\": 757, \"MARHH_CHD\": 1935, \"MARHH_NO_C\": 3042, \"MHH_CHILD\": 162, \"FHH_CHILD\": 549, \"FAMILIES\": 6502, \"AVE_FAM_SZ\": 3.220000, \"HSE_UNITS\": 8621, \"VACANT\": 376, \"OWNER_OCC\": 7248, \"RENTER_OCC\": 997 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.010402551360968, 38.743481524594436 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Frederick\", \"CLASS\": \"city\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"30325\", \"CAPITAL\": \"N\", \"AREALAND\": 20.417000, \"AREAWATER\": 0.000000, \"POP_CL\": 7, \"POP2000\": 52767, \"WHITE\": 40651, \"BLACK\": 7777, \"AMERI_ES\": 154, \"ASIAN\": 1664, \"HAWN_PI\": 32, \"OTHER\": 1191, \"MULT_RACE\": 1298, \"HISPANIC\": 2533, \"MALES\": 25126, \"FEMALES\": 27641, \"AGE_UNDER5\": 3944, \"AGE_5_17\": 9314, \"AGE_18_21\": 2668, \"AGE_22_29\": 6813, \"AGE_30_39\": 9718, \"AGE_40_49\": 7912, \"AGE_50_64\": 6453, \"AGE_65_UP\": 5945, \"MED_AGE\": 33.800000, \"MED_AGE_M\": 32.800000, \"MED_AGE_F\": 34.700000, \"HOUSEHOLDS\": 20891, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 2667, \"HSEHLD_1_F\": 3603, \"MARHH_CHD\": 4577, \"MARHH_NO_C\": 4694, \"MHH_CHILD\": 447, \"FHH_CHILD\": 1716, \"FAMILIES\": 12787, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 22106, \"VACANT\": 1215, \"OWNER_OCC\": 11624, \"RENTER_OCC\": 9267 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.420418975651828, 39.42629429631706 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Friendly\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"30575\", \"CAPITAL\": \"N\", \"AREALAND\": 6.793000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10938, \"WHITE\": 1465, \"BLACK\": 8496, \"AMERI_ES\": 39, \"ASIAN\": 619, \"HAWN_PI\": 8, \"OTHER\": 107, \"MULT_RACE\": 204, \"HISPANIC\": 239, \"MALES\": 5270, \"FEMALES\": 5668, \"AGE_UNDER5\": 640, \"AGE_5_17\": 2354, \"AGE_18_21\": 514, \"AGE_22_29\": 814, \"AGE_30_39\": 1559, \"AGE_40_49\": 2026, \"AGE_50_64\": 2268, \"AGE_65_UP\": 763, \"MED_AGE\": 37.800000, \"MED_AGE_M\": 37.300000, \"MED_AGE_F\": 38.200000, \"HOUSEHOLDS\": 3506, \"AVE_HH_SZ\": 3.120000, \"HSEHLD_1_M\": 199, \"HSEHLD_1_F\": 229, \"MARHH_CHD\": 1045, \"MARHH_NO_C\": 1256, \"MHH_CHILD\": 73, \"FHH_CHILD\": 227, \"FAMILIES\": 2961, \"AVE_FAM_SZ\": 3.360000, \"HSE_UNITS\": 3636, \"VACANT\": 130, \"OWNER_OCC\": 3263, \"RENTER_OCC\": 243 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.974286990156799, 38.750064547479475 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Gaithersburg\", \"CLASS\": \"city\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"31175\", \"CAPITAL\": \"N\", \"AREALAND\": 10.086000, \"AREAWATER\": 0.072000, \"POP_CL\": 7, \"POP2000\": 52613, \"WHITE\": 30625, \"BLACK\": 7680, \"AMERI_ES\": 188, \"ASIAN\": 7241, \"HAWN_PI\": 33, \"OTHER\": 4535, \"MULT_RACE\": 2311, \"HISPANIC\": 10398, \"MALES\": 25647, \"FEMALES\": 26966, \"AGE_UNDER5\": 4312, \"AGE_5_17\": 8852, \"AGE_18_21\": 2332, \"AGE_22_29\": 7046, \"AGE_30_39\": 10501, \"AGE_40_49\": 8521, \"AGE_50_64\": 6709, \"AGE_65_UP\": 4340, \"MED_AGE\": 33.600000, \"MED_AGE_M\": 32.300000, \"MED_AGE_F\": 34.800000, \"HOUSEHOLDS\": 19621, \"AVE_HH_SZ\": 2.650000, \"HSEHLD_1_M\": 2224, \"HSEHLD_1_F\": 3237, \"MARHH_CHD\": 5146, \"MARHH_NO_C\": 4383, \"MHH_CHILD\": 388, \"FHH_CHILD\": 1300, \"FAMILIES\": 12580, \"AVE_FAM_SZ\": 3.250000, \"HSE_UNITS\": 20674, \"VACANT\": 1053, \"OWNER_OCC\": 10326, \"RENTER_OCC\": 9295 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.226445627020937, 39.131974395820535 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Germantown\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"32025\", \"CAPITAL\": \"N\", \"AREALAND\": 10.773000, \"AREAWATER\": 0.053000, \"POP_CL\": 7, \"POP2000\": 55419, \"WHITE\": 34473, \"BLACK\": 10600, \"AMERI_ES\": 187, \"ASIAN\": 5456, \"HAWN_PI\": 37, \"OTHER\": 2338, \"MULT_RACE\": 2328, \"HISPANIC\": 5660, \"MALES\": 26985, \"FEMALES\": 28434, \"AGE_UNDER5\": 5119, \"AGE_5_17\": 10884, \"AGE_18_21\": 2095, \"AGE_22_29\": 7763, \"AGE_30_39\": 13172, \"AGE_40_49\": 9090, \"AGE_50_64\": 5577, \"AGE_65_UP\": 1719, \"MED_AGE\": 31.300000, \"MED_AGE_M\": 30.800000, \"MED_AGE_F\": 31.800000, \"HOUSEHOLDS\": 20893, \"AVE_HH_SZ\": 2.650000, \"HSEHLD_1_M\": 2237, \"HSEHLD_1_F\": 2669, \"MARHH_CHD\": 6145, \"MARHH_NO_C\": 4252, \"MHH_CHILD\": 464, \"FHH_CHILD\": 1991, \"FAMILIES\": 14115, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 21568, \"VACANT\": 675, \"OWNER_OCC\": 14131, \"RENTER_OCC\": 6762 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.261710307657722, 39.178229376758864 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Glen Burnie\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"32650\", \"CAPITAL\": \"N\", \"AREALAND\": 12.232000, \"AREAWATER\": 0.709000, \"POP_CL\": 6, \"POP2000\": 38922, \"WHITE\": 31569, \"BLACK\": 5263, \"AMERI_ES\": 135, \"ASIAN\": 933, \"HAWN_PI\": 27, \"OTHER\": 304, \"MULT_RACE\": 691, \"HISPANIC\": 958, \"MALES\": 18933, \"FEMALES\": 19989, \"AGE_UNDER5\": 2503, \"AGE_5_17\": 6722, \"AGE_18_21\": 1966, \"AGE_22_29\": 4259, \"AGE_30_39\": 6539, \"AGE_40_49\": 5936, \"AGE_50_64\": 5981, \"AGE_65_UP\": 5016, \"MED_AGE\": 36.400000, \"MED_AGE_M\": 35.400000, \"MED_AGE_F\": 37.400000, \"HOUSEHOLDS\": 15210, \"AVE_HH_SZ\": 2.530000, \"HSEHLD_1_M\": 1817, \"HSEHLD_1_F\": 2323, \"MARHH_CHD\": 3033, \"MARHH_NO_C\": 4131, \"MHH_CHILD\": 414, \"FHH_CHILD\": 1059, \"FAMILIES\": 9978, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 15902, \"VACANT\": 692, \"OWNER_OCC\": 10192, \"RENTER_OCC\": 5018 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.610613527616891, 39.159982815110943 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Glenn Dale\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"33400\", \"CAPITAL\": \"N\", \"AREALAND\": 7.374000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12609, \"WHITE\": 5092, \"BLACK\": 6064, \"AMERI_ES\": 32, \"ASIAN\": 983, \"HAWN_PI\": 4, \"OTHER\": 116, \"MULT_RACE\": 318, \"HISPANIC\": 304, \"MALES\": 6083, \"FEMALES\": 6526, \"AGE_UNDER5\": 959, \"AGE_5_17\": 2796, \"AGE_18_21\": 554, \"AGE_22_29\": 1199, \"AGE_30_39\": 2025, \"AGE_40_49\": 2364, \"AGE_50_64\": 2013, \"AGE_65_UP\": 699, \"MED_AGE\": 34.500000, \"MED_AGE_M\": 33.900000, \"MED_AGE_F\": 35.000000, \"HOUSEHOLDS\": 4086, \"AVE_HH_SZ\": 3.080000, \"HSEHLD_1_M\": 267, \"HSEHLD_1_F\": 282, \"MARHH_CHD\": 1416, \"MARHH_NO_C\": 1142, \"MHH_CHILD\": 101, \"FHH_CHILD\": 352, \"FAMILIES\": 3304, \"AVE_FAM_SZ\": 3.390000, \"HSE_UNITS\": 4165, \"VACANT\": 79, \"OWNER_OCC\": 3031, \"RENTER_OCC\": 1055 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.806770458278493, 38.982902661070796 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Greater Landover\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"34711\", \"CAPITAL\": \"N\", \"AREALAND\": 4.118000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 22900, \"WHITE\": 947, \"BLACK\": 21076, \"AMERI_ES\": 45, \"ASIAN\": 120, \"HAWN_PI\": 9, \"OTHER\": 309, \"MULT_RACE\": 394, \"HISPANIC\": 663, \"MALES\": 10572, \"FEMALES\": 12328, \"AGE_UNDER5\": 1981, \"AGE_5_17\": 5650, \"AGE_18_21\": 1348, \"AGE_22_29\": 2684, \"AGE_30_39\": 3777, \"AGE_40_49\": 3108, \"AGE_50_64\": 3171, \"AGE_65_UP\": 1181, \"MED_AGE\": 29.500000, \"MED_AGE_M\": 27.700000, \"MED_AGE_F\": 30.800000, \"HOUSEHOLDS\": 7696, \"AVE_HH_SZ\": 2.970000, \"HSEHLD_1_M\": 760, \"HSEHLD_1_F\": 807, \"MARHH_CHD\": 1186, \"MARHH_NO_C\": 1275, \"MHH_CHILD\": 293, \"FHH_CHILD\": 1666, \"FAMILIES\": 5660, \"AVE_FAM_SZ\": 3.400000, \"HSE_UNITS\": 8600, \"VACANT\": 904, \"OWNER_OCC\": 3626, \"RENTER_OCC\": 4070 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.88726931918103, 38.924311604204519 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Greater Upper Marlboro\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"34712\", \"CAPITAL\": \"N\", \"AREALAND\": 37.217000, \"AREAWATER\": 0.279000, \"POP_CL\": 6, \"POP2000\": 18720, \"WHITE\": 3856, \"BLACK\": 14134, \"AMERI_ES\": 58, \"ASIAN\": 230, \"HAWN_PI\": 7, \"OTHER\": 126, \"MULT_RACE\": 309, \"HISPANIC\": 338, \"MALES\": 9339, \"FEMALES\": 9381, \"AGE_UNDER5\": 1355, \"AGE_5_17\": 3541, \"AGE_18_21\": 842, \"AGE_22_29\": 1901, \"AGE_30_39\": 4291, \"AGE_40_49\": 3228, \"AGE_50_64\": 2558, \"AGE_65_UP\": 1004, \"MED_AGE\": 34.200000, \"MED_AGE_M\": 33.500000, \"MED_AGE_F\": 35.000000, \"HOUSEHOLDS\": 6514, \"AVE_HH_SZ\": 2.680000, \"HSEHLD_1_M\": 616, \"HSEHLD_1_F\": 985, \"MARHH_CHD\": 1736, \"MARHH_NO_C\": 1565, \"MHH_CHILD\": 139, \"FHH_CHILD\": 569, \"FAMILIES\": 4574, \"AVE_FAM_SZ\": 3.220000, \"HSE_UNITS\": 6812, \"VACANT\": 298, \"OWNER_OCC\": 5656, \"RENTER_OCC\": 858 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.751195961763628, 38.827569703484812 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Greenbelt\", \"CLASS\": \"city\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"34775\", \"CAPITAL\": \"N\", \"AREALAND\": 5.982000, \"AREAWATER\": 0.035000, \"POP_CL\": 6, \"POP2000\": 21456, \"WHITE\": 8526, \"BLACK\": 8871, \"AMERI_ES\": 50, \"ASIAN\": 2586, \"HAWN_PI\": 11, \"OTHER\": 667, \"MULT_RACE\": 745, \"HISPANIC\": 1383, \"MALES\": 10272, \"FEMALES\": 11184, \"AGE_UNDER5\": 1473, \"AGE_5_17\": 3223, \"AGE_18_21\": 1269, \"AGE_22_29\": 3793, \"AGE_30_39\": 4105, \"AGE_40_49\": 3415, \"AGE_50_64\": 2734, \"AGE_65_UP\": 1444, \"MED_AGE\": 31.900000, \"MED_AGE_M\": 30.700000, \"MED_AGE_F\": 33.200000, \"HOUSEHOLDS\": 9368, \"AVE_HH_SZ\": 2.290000, \"HSEHLD_1_M\": 1366, \"HSEHLD_1_F\": 1912, \"MARHH_CHD\": 1496, \"MARHH_NO_C\": 1603, \"MHH_CHILD\": 192, \"FHH_CHILD\": 835, \"FAMILIES\": 4967, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 10180, \"VACANT\": 812, \"OWNER_OCC\": 4324, \"RENTER_OCC\": 5044 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.888346418867826, 39.00046060290628 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Green Haven\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"34975\", \"CAPITAL\": \"N\", \"AREALAND\": 3.189000, \"AREAWATER\": 0.179000, \"POP_CL\": 6, \"POP2000\": 17415, \"WHITE\": 16014, \"BLACK\": 760, \"AMERI_ES\": 80, \"ASIAN\": 229, \"HAWN_PI\": 4, \"OTHER\": 85, \"MULT_RACE\": 243, \"HISPANIC\": 256, \"MALES\": 8634, \"FEMALES\": 8781, \"AGE_UNDER5\": 1400, \"AGE_5_17\": 3893, \"AGE_18_21\": 722, \"AGE_22_29\": 1913, \"AGE_30_39\": 3665, \"AGE_40_49\": 2849, \"AGE_50_64\": 2073, \"AGE_65_UP\": 900, \"MED_AGE\": 32.400000, \"MED_AGE_M\": 31.800000, \"MED_AGE_F\": 32.900000, \"HOUSEHOLDS\": 5921, \"AVE_HH_SZ\": 2.940000, \"HSEHLD_1_M\": 421, \"HSEHLD_1_F\": 471, \"MARHH_CHD\": 2127, \"MARHH_NO_C\": 1512, \"MHH_CHILD\": 208, \"FHH_CHILD\": 446, \"FAMILIES\": 4694, \"AVE_FAM_SZ\": 3.260000, \"HSE_UNITS\": 6102, \"VACANT\": 181, \"OWNER_OCC\": 5156, \"RENTER_OCC\": 765 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.542364529113144, 39.137999874582079 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Green Valley\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"35412\", \"CAPITAL\": \"N\", \"AREALAND\": 20.605000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12262, \"WHITE\": 11761, \"BLACK\": 152, \"AMERI_ES\": 28, \"ASIAN\": 121, \"HAWN_PI\": 5, \"OTHER\": 46, \"MULT_RACE\": 149, \"HISPANIC\": 207, \"MALES\": 6209, \"FEMALES\": 6053, \"AGE_UNDER5\": 860, \"AGE_5_17\": 2963, \"AGE_18_21\": 502, \"AGE_22_29\": 501, \"AGE_30_39\": 2038, \"AGE_40_49\": 2557, \"AGE_50_64\": 2139, \"AGE_65_UP\": 702, \"MED_AGE\": 37.400000, \"MED_AGE_M\": 37.600000, \"MED_AGE_F\": 37.200000, \"HOUSEHOLDS\": 3882, \"AVE_HH_SZ\": 3.160000, \"HSEHLD_1_M\": 153, \"HSEHLD_1_F\": 151, \"MARHH_CHD\": 1739, \"MARHH_NO_C\": 1431, \"MHH_CHILD\": 59, \"FHH_CHILD\": 110, \"FAMILIES\": 3469, \"AVE_FAM_SZ\": 3.330000, \"HSE_UNITS\": 3928, \"VACANT\": 46, \"OWNER_OCC\": 3755, \"RENTER_OCC\": 127 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.240454734635989, 39.341801385952643 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hagerstown\", \"CLASS\": \"city\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"36075\", \"CAPITAL\": \"N\", \"AREALAND\": 10.660000, \"AREAWATER\": 0.005000, \"POP_CL\": 6, \"POP2000\": 36687, \"WHITE\": 31532, \"BLACK\": 3722, \"AMERI_ES\": 90, \"ASIAN\": 354, \"HAWN_PI\": 15, \"OTHER\": 304, \"MULT_RACE\": 670, \"HISPANIC\": 649, \"MALES\": 17154, \"FEMALES\": 19533, \"AGE_UNDER5\": 2909, \"AGE_5_17\": 6466, \"AGE_18_21\": 1777, \"AGE_22_29\": 4349, \"AGE_30_39\": 5822, \"AGE_40_49\": 5103, \"AGE_50_64\": 5002, \"AGE_65_UP\": 5259, \"MED_AGE\": 34.800000, \"MED_AGE_M\": 33.500000, \"MED_AGE_F\": 36.000000, \"HOUSEHOLDS\": 15849, \"AVE_HH_SZ\": 2.260000, \"HSEHLD_1_M\": 2317, \"HSEHLD_1_F\": 3301, \"MARHH_CHD\": 2422, \"MARHH_NO_C\": 3405, \"MHH_CHILD\": 482, \"FHH_CHILD\": 1771, \"FAMILIES\": 9086, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 17089, \"VACANT\": 1240, \"OWNER_OCC\": 6635, \"RENTER_OCC\": 9214 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.719967460831882, 39.642771172084714 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Halfway\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"36125\", \"CAPITAL\": \"N\", \"AREALAND\": 4.687000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10065, \"WHITE\": 9609, \"BLACK\": 214, \"AMERI_ES\": 9, \"ASIAN\": 98, \"HAWN_PI\": 12, \"OTHER\": 24, \"MULT_RACE\": 99, \"HISPANIC\": 110, \"MALES\": 4667, \"FEMALES\": 5398, \"AGE_UNDER5\": 569, \"AGE_5_17\": 1665, \"AGE_18_21\": 374, \"AGE_22_29\": 757, \"AGE_30_39\": 1417, \"AGE_40_49\": 1376, \"AGE_50_64\": 1707, \"AGE_65_UP\": 2200, \"MED_AGE\": 41.900000, \"MED_AGE_M\": 39.200000, \"MED_AGE_F\": 44.200000, \"HOUSEHOLDS\": 4275, \"AVE_HH_SZ\": 2.320000, \"HSEHLD_1_M\": 383, \"HSEHLD_1_F\": 862, \"MARHH_CHD\": 829, \"MARHH_NO_C\": 1445, \"MHH_CHILD\": 69, \"FHH_CHILD\": 250, \"FAMILIES\": 2850, \"AVE_FAM_SZ\": 2.850000, \"HSE_UNITS\": 4424, \"VACANT\": 149, \"OWNER_OCC\": 3215, \"RENTER_OCC\": 1060 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.765575056153949, 39.616346156623656 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Havre de Grace\", \"CLASS\": \"city\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"37600\", \"CAPITAL\": \"N\", \"AREALAND\": 4.025000, \"AREAWATER\": 1.360000, \"POP_CL\": 6, \"POP2000\": 11331, \"WHITE\": 8979, \"BLACK\": 1830, \"AMERI_ES\": 25, \"ASIAN\": 146, \"HAWN_PI\": 13, \"OTHER\": 91, \"MULT_RACE\": 247, \"HISPANIC\": 241, \"MALES\": 5451, \"FEMALES\": 5880, \"AGE_UNDER5\": 836, \"AGE_5_17\": 2156, \"AGE_18_21\": 426, \"AGE_22_29\": 1009, \"AGE_30_39\": 1994, \"AGE_40_49\": 1794, \"AGE_50_64\": 1638, \"AGE_65_UP\": 1478, \"MED_AGE\": 36.400000, \"MED_AGE_M\": 35.700000, \"MED_AGE_F\": 37.000000, \"HOUSEHOLDS\": 4557, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 659, \"HSEHLD_1_F\": 759, \"MARHH_CHD\": 985, \"MARHH_NO_C\": 1126, \"MHH_CHILD\": 118, \"FHH_CHILD\": 345, \"FAMILIES\": 2869, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 4904, \"VACANT\": 347, \"OWNER_OCC\": 2575, \"RENTER_OCC\": 1982 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.097589252586545, 39.548413342072138 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hillcrest Heights\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"38975\", \"CAPITAL\": \"N\", \"AREALAND\": 2.433000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 16359, \"WHITE\": 750, \"BLACK\": 15243, \"AMERI_ES\": 20, \"ASIAN\": 58, \"HAWN_PI\": 1, \"OTHER\": 52, \"MULT_RACE\": 235, \"HISPANIC\": 182, \"MALES\": 7431, \"FEMALES\": 8928, \"AGE_UNDER5\": 1076, \"AGE_5_17\": 3084, \"AGE_18_21\": 784, \"AGE_22_29\": 1851, \"AGE_30_39\": 2487, \"AGE_40_49\": 2500, \"AGE_50_64\": 3027, \"AGE_65_UP\": 1550, \"MED_AGE\": 35.600000, \"MED_AGE_M\": 32.900000, \"MED_AGE_F\": 37.700000, \"HOUSEHOLDS\": 6752, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 916, \"HSEHLD_1_F\": 1279, \"MARHH_CHD\": 739, \"MARHH_NO_C\": 1233, \"MHH_CHILD\": 200, \"FHH_CHILD\": 957, \"FAMILIES\": 4207, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 7190, \"VACANT\": 438, \"OWNER_OCC\": 3693, \"RENTER_OCC\": 3059 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.959815290112076, 38.838212556183606 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hyattsville\", \"CLASS\": \"city\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"41250\", \"CAPITAL\": \"N\", \"AREALAND\": 2.140000, \"AREAWATER\": 0.031000, \"POP_CL\": 6, \"POP2000\": 14733, \"WHITE\": 5824, \"BLACK\": 6045, \"AMERI_ES\": 73, \"ASIAN\": 592, \"HAWN_PI\": 6, \"OTHER\": 1607, \"MULT_RACE\": 586, \"HISPANIC\": 2673, \"MALES\": 7033, \"FEMALES\": 7700, \"AGE_UNDER5\": 1015, \"AGE_5_17\": 2553, \"AGE_18_21\": 782, \"AGE_22_29\": 1942, \"AGE_30_39\": 2517, \"AGE_40_49\": 2431, \"AGE_50_64\": 1881, \"AGE_65_UP\": 1612, \"MED_AGE\": 34.400000, \"MED_AGE_M\": 32.600000, \"MED_AGE_F\": 36.100000, \"HOUSEHOLDS\": 5540, \"AVE_HH_SZ\": 2.590000, \"HSEHLD_1_M\": 733, \"HSEHLD_1_F\": 962, \"MARHH_CHD\": 1094, \"MARHH_NO_C\": 974, \"MHH_CHILD\": 140, \"FHH_CHILD\": 532, \"FAMILIES\": 3366, \"AVE_FAM_SZ\": 3.240000, \"HSE_UNITS\": 5795, \"VACANT\": 255, \"OWNER_OCC\": 2833, \"RENTER_OCC\": 2707 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.951290564410044, 38.956910560832107 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Joppatowne\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"42875\", \"CAPITAL\": \"N\", \"AREALAND\": 6.876000, \"AREAWATER\": 0.498000, \"POP_CL\": 6, \"POP2000\": 11391, \"WHITE\": 9739, \"BLACK\": 1174, \"AMERI_ES\": 28, \"ASIAN\": 149, \"HAWN_PI\": 6, \"OTHER\": 112, \"MULT_RACE\": 183, \"HISPANIC\": 236, \"MALES\": 5654, \"FEMALES\": 5737, \"AGE_UNDER5\": 708, \"AGE_5_17\": 2040, \"AGE_18_21\": 483, \"AGE_22_29\": 1009, \"AGE_30_39\": 1881, \"AGE_40_49\": 1917, \"AGE_50_64\": 2146, \"AGE_65_UP\": 1207, \"MED_AGE\": 38.100000, \"MED_AGE_M\": 37.600000, \"MED_AGE_F\": 38.500000, \"HOUSEHOLDS\": 4366, \"AVE_HH_SZ\": 2.610000, \"HSEHLD_1_M\": 423, \"HSEHLD_1_F\": 466, \"MARHH_CHD\": 1086, \"MARHH_NO_C\": 1484, \"MHH_CHILD\": 111, \"FHH_CHILD\": 231, \"FAMILIES\": 3217, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 4530, \"VACANT\": 164, \"OWNER_OCC\": 3374, \"RENTER_OCC\": 992 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.356201122797273, 39.41488805196456 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Kettering\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"43900\", \"CAPITAL\": \"N\", \"AREALAND\": 5.459000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11008, \"WHITE\": 636, \"BLACK\": 9975, \"AMERI_ES\": 21, \"ASIAN\": 136, \"HAWN_PI\": 0, \"OTHER\": 52, \"MULT_RACE\": 188, \"HISPANIC\": 105, \"MALES\": 4937, \"FEMALES\": 6071, \"AGE_UNDER5\": 639, \"AGE_5_17\": 2293, \"AGE_18_21\": 461, \"AGE_22_29\": 937, \"AGE_30_39\": 1739, \"AGE_40_49\": 1946, \"AGE_50_64\": 2267, \"AGE_65_UP\": 726, \"MED_AGE\": 37.300000, \"MED_AGE_M\": 35.600000, \"MED_AGE_F\": 38.500000, \"HOUSEHOLDS\": 3814, \"AVE_HH_SZ\": 2.860000, \"HSEHLD_1_M\": 216, \"HSEHLD_1_F\": 485, \"MARHH_CHD\": 890, \"MARHH_NO_C\": 1018, \"MHH_CHILD\": 73, \"FHH_CHILD\": 421, \"FAMILIES\": 2957, \"AVE_FAM_SZ\": 3.240000, \"HSE_UNITS\": 3958, \"VACANT\": 144, \"OWNER_OCC\": 3392, \"RENTER_OCC\": 422 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.796493458085962, 38.895012669163819 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lake Shore\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"44975\", \"CAPITAL\": \"N\", \"AREALAND\": 9.921000, \"AREAWATER\": 4.359000, \"POP_CL\": 6, \"POP2000\": 13065, \"WHITE\": 12559, \"BLACK\": 218, \"AMERI_ES\": 44, \"ASIAN\": 95, \"HAWN_PI\": 6, \"OTHER\": 22, \"MULT_RACE\": 121, \"HISPANIC\": 109, \"MALES\": 6609, \"FEMALES\": 6456, \"AGE_UNDER5\": 632, \"AGE_5_17\": 2548, \"AGE_18_21\": 556, \"AGE_22_29\": 762, \"AGE_30_39\": 1914, \"AGE_40_49\": 2363, \"AGE_50_64\": 2894, \"AGE_65_UP\": 1396, \"MED_AGE\": 40.500000, \"MED_AGE_M\": 40.300000, \"MED_AGE_F\": 40.800000, \"HOUSEHOLDS\": 4581, \"AVE_HH_SZ\": 2.850000, \"HSEHLD_1_M\": 311, \"HSEHLD_1_F\": 307, \"MARHH_CHD\": 1384, \"MARHH_NO_C\": 1946, \"MHH_CHILD\": 83, \"FHH_CHILD\": 103, \"FAMILIES\": 3785, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 4784, \"VACANT\": 203, \"OWNER_OCC\": 4247, \"RENTER_OCC\": 334 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.481744411305058, 39.098960929882978 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Langley Park\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"45525\", \"CAPITAL\": \"N\", \"AREALAND\": 0.824000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 16214, \"WHITE\": 6758, \"BLACK\": 4290, \"AMERI_ES\": 144, \"ASIAN\": 550, \"HAWN_PI\": 31, \"OTHER\": 3474, \"MULT_RACE\": 967, \"HISPANIC\": 10294, \"MALES\": 9064, \"FEMALES\": 7150, \"AGE_UNDER5\": 1549, \"AGE_5_17\": 2890, \"AGE_18_21\": 1305, \"AGE_22_29\": 3391, \"AGE_30_39\": 3281, \"AGE_40_49\": 2045, \"AGE_50_64\": 1216, \"AGE_65_UP\": 537, \"MED_AGE\": 27.400000, \"MED_AGE_M\": 27.000000, \"MED_AGE_F\": 28.000000, \"HOUSEHOLDS\": 4592, \"AVE_HH_SZ\": 3.510000, \"HSEHLD_1_M\": 376, \"HSEHLD_1_F\": 364, \"MARHH_CHD\": 1218, \"MARHH_NO_C\": 679, \"MHH_CHILD\": 250, \"FHH_CHILD\": 517, \"FAMILIES\": 3342, \"AVE_FAM_SZ\": 3.700000, \"HSE_UNITS\": 4716, \"VACANT\": 124, \"OWNER_OCC\": 1031, \"RENTER_OCC\": 3561 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.981779243954705, 38.99406054069852 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lanham-Seabrook\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"45612\", \"CAPITAL\": \"N\", \"AREALAND\": 5.261000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 18190, \"WHITE\": 4845, \"BLACK\": 11559, \"AMERI_ES\": 55, \"ASIAN\": 894, \"HAWN_PI\": 5, \"OTHER\": 342, \"MULT_RACE\": 490, \"HISPANIC\": 841, \"MALES\": 8748, \"FEMALES\": 9442, \"AGE_UNDER5\": 1220, \"AGE_5_17\": 3669, \"AGE_18_21\": 879, \"AGE_22_29\": 1735, \"AGE_30_39\": 3039, \"AGE_40_49\": 3110, \"AGE_50_64\": 3011, \"AGE_65_UP\": 1527, \"MED_AGE\": 35.800000, \"MED_AGE_M\": 34.600000, \"MED_AGE_F\": 36.600000, \"HOUSEHOLDS\": 6219, \"AVE_HH_SZ\": 2.900000, \"HSEHLD_1_M\": 505, \"HSEHLD_1_F\": 690, \"MARHH_CHD\": 1571, \"MARHH_NO_C\": 1707, \"MHH_CHILD\": 127, \"FHH_CHILD\": 565, \"FAMILIES\": 4701, \"AVE_FAM_SZ\": 3.320000, \"HSE_UNITS\": 6468, \"VACANT\": 249, \"OWNER_OCC\": 4686, \"RENTER_OCC\": 1533 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.848713881591991, 38.967810630893695 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lansdowne-Baltimore Highlands\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"45662\", \"CAPITAL\": \"N\", \"AREALAND\": 4.098000, \"AREAWATER\": 0.182000, \"POP_CL\": 6, \"POP2000\": 15724, \"WHITE\": 11903, \"BLACK\": 2888, \"AMERI_ES\": 56, \"ASIAN\": 292, \"HAWN_PI\": 5, \"OTHER\": 274, \"MULT_RACE\": 306, \"HISPANIC\": 557, \"MALES\": 7428, \"FEMALES\": 8296, \"AGE_UNDER5\": 1378, \"AGE_5_17\": 3273, \"AGE_18_21\": 958, \"AGE_22_29\": 1855, \"AGE_30_39\": 2405, \"AGE_40_49\": 2145, \"AGE_50_64\": 2090, \"AGE_65_UP\": 1620, \"MED_AGE\": 31.700000, \"MED_AGE_M\": 31.200000, \"MED_AGE_F\": 32.300000, \"HOUSEHOLDS\": 5796, \"AVE_HH_SZ\": 2.710000, \"HSEHLD_1_M\": 520, \"HSEHLD_1_F\": 745, \"MARHH_CHD\": 1088, \"MARHH_NO_C\": 1349, \"MHH_CHILD\": 191, \"FHH_CHILD\": 988, \"FAMILIES\": 4191, \"AVE_FAM_SZ\": 3.110000, \"HSE_UNITS\": 6041, \"VACANT\": 245, \"OWNER_OCC\": 3154, \"RENTER_OCC\": 2642 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.651271059820743, 39.238782780695871 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Laurel\", \"CLASS\": \"city\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"45900\", \"CAPITAL\": \"N\", \"AREALAND\": 3.780000, \"AREAWATER\": 0.026000, \"POP_CL\": 6, \"POP2000\": 19960, \"WHITE\": 10428, \"BLACK\": 6887, \"AMERI_ES\": 76, \"ASIAN\": 1376, \"HAWN_PI\": 42, \"OTHER\": 459, \"MULT_RACE\": 692, \"HISPANIC\": 1245, \"MALES\": 9631, \"FEMALES\": 10329, \"AGE_UNDER5\": 1360, \"AGE_5_17\": 3041, \"AGE_18_21\": 798, \"AGE_22_29\": 3111, \"AGE_30_39\": 4524, \"AGE_40_49\": 3239, \"AGE_50_64\": 2544, \"AGE_65_UP\": 1343, \"MED_AGE\": 33.600000, \"MED_AGE_M\": 33.000000, \"MED_AGE_F\": 34.200000, \"HOUSEHOLDS\": 8931, \"AVE_HH_SZ\": 2.220000, \"HSEHLD_1_M\": 1504, \"HSEHLD_1_F\": 1835, \"MARHH_CHD\": 1459, \"MARHH_NO_C\": 1568, \"MHH_CHILD\": 202, \"FHH_CHILD\": 725, \"FAMILIES\": 4634, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 9506, \"VACANT\": 575, \"OWNER_OCC\": 4446, \"RENTER_OCC\": 4485 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.859114944260611, 39.098258622594017 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lexington Park\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"46725\", \"CAPITAL\": \"N\", \"AREALAND\": 7.993000, \"AREAWATER\": 0.099000, \"POP_CL\": 6, \"POP2000\": 11021, \"WHITE\": 6612, \"BLACK\": 3306, \"AMERI_ES\": 42, \"ASIAN\": 465, \"HAWN_PI\": 13, \"OTHER\": 199, \"MULT_RACE\": 384, \"HISPANIC\": 527, \"MALES\": 5883, \"FEMALES\": 5138, \"AGE_UNDER5\": 1112, \"AGE_5_17\": 2355, \"AGE_18_21\": 854, \"AGE_22_29\": 1892, \"AGE_30_39\": 2347, \"AGE_40_49\": 1313, \"AGE_50_64\": 811, \"AGE_65_UP\": 337, \"MED_AGE\": 26.800000, \"MED_AGE_M\": 26.600000, \"MED_AGE_F\": 27.200000, \"HOUSEHOLDS\": 3923, \"AVE_HH_SZ\": 2.650000, \"HSEHLD_1_M\": 792, \"HSEHLD_1_F\": 367, \"MARHH_CHD\": 1097, \"MARHH_NO_C\": 625, \"MHH_CHILD\": 114, \"FHH_CHILD\": 429, \"FAMILIES\": 2460, \"AVE_FAM_SZ\": 3.340000, \"HSE_UNITS\": 4630, \"VACANT\": 707, \"OWNER_OCC\": 1171, \"RENTER_OCC\": 2752 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.450618328175224, 38.258906958392508 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Linganore-Bartonsville\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"47043\", \"CAPITAL\": \"N\", \"AREALAND\": 16.119000, \"AREAWATER\": 0.305000, \"POP_CL\": 6, \"POP2000\": 12529, \"WHITE\": 11667, \"BLACK\": 411, \"AMERI_ES\": 26, \"ASIAN\": 169, \"HAWN_PI\": 6, \"OTHER\": 68, \"MULT_RACE\": 182, \"HISPANIC\": 270, \"MALES\": 6249, \"FEMALES\": 6280, \"AGE_UNDER5\": 1308, \"AGE_5_17\": 2961, \"AGE_18_21\": 326, \"AGE_22_29\": 940, \"AGE_30_39\": 2886, \"AGE_40_49\": 2081, \"AGE_50_64\": 1405, \"AGE_65_UP\": 622, \"MED_AGE\": 32.900000, \"MED_AGE_M\": 32.800000, \"MED_AGE_F\": 32.900000, \"HOUSEHOLDS\": 4140, \"AVE_HH_SZ\": 3.030000, \"HSEHLD_1_M\": 222, \"HSEHLD_1_F\": 286, \"MARHH_CHD\": 1864, \"MARHH_NO_C\": 1128, \"MHH_CHILD\": 104, \"FHH_CHILD\": 214, \"FAMILIES\": 3456, \"AVE_FAM_SZ\": 3.310000, \"HSE_UNITS\": 4273, \"VACANT\": 133, \"OWNER_OCC\": 3824, \"RENTER_OCC\": 316 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.323811932141069, 39.408668342500263 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lochearn\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"47450\", \"CAPITAL\": \"N\", \"AREALAND\": 5.569000, \"AREAWATER\": 0.022000, \"POP_CL\": 6, \"POP2000\": 25269, \"WHITE\": 4674, \"BLACK\": 19812, \"AMERI_ES\": 77, \"ASIAN\": 205, \"HAWN_PI\": 10, \"OTHER\": 123, \"MULT_RACE\": 368, \"HISPANIC\": 378, \"MALES\": 11569, \"FEMALES\": 13700, \"AGE_UNDER5\": 1516, \"AGE_5_17\": 4837, \"AGE_18_21\": 1124, \"AGE_22_29\": 2286, \"AGE_30_39\": 3529, \"AGE_40_49\": 3850, \"AGE_50_64\": 4656, \"AGE_65_UP\": 3471, \"MED_AGE\": 38.200000, \"MED_AGE_M\": 36.200000, \"MED_AGE_F\": 39.800000, \"HOUSEHOLDS\": 9771, \"AVE_HH_SZ\": 2.550000, \"HSEHLD_1_M\": 1032, \"HSEHLD_1_F\": 1545, \"MARHH_CHD\": 1599, \"MARHH_NO_C\": 2590, \"MHH_CHILD\": 219, \"FHH_CHILD\": 1075, \"FAMILIES\": 6730, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 10229, \"VACANT\": 458, \"OWNER_OCC\": 6861, \"RENTER_OCC\": 2910 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.729779109959694, 39.35063071696387 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lutherville-Timonium\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"48900\", \"CAPITAL\": \"N\", \"AREALAND\": 7.382000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 15814, \"WHITE\": 14249, \"BLACK\": 509, \"AMERI_ES\": 24, \"ASIAN\": 834, \"HAWN_PI\": 1, \"OTHER\": 38, \"MULT_RACE\": 159, \"HISPANIC\": 193, \"MALES\": 7494, \"FEMALES\": 8320, \"AGE_UNDER5\": 695, \"AGE_5_17\": 2426, \"AGE_18_21\": 420, \"AGE_22_29\": 949, \"AGE_30_39\": 1952, \"AGE_40_49\": 2648, \"AGE_50_64\": 2969, \"AGE_65_UP\": 3755, \"MED_AGE\": 45.500000, \"MED_AGE_M\": 44.100000, \"MED_AGE_F\": 47.000000, \"HOUSEHOLDS\": 6485, \"AVE_HH_SZ\": 2.360000, \"HSEHLD_1_M\": 543, \"HSEHLD_1_F\": 1161, \"MARHH_CHD\": 1377, \"MARHH_NO_C\": 2474, \"MHH_CHILD\": 49, \"FHH_CHILD\": 173, \"FAMILIES\": 4460, \"AVE_FAM_SZ\": 2.860000, \"HSE_UNITS\": 6614, \"VACANT\": 129, \"OWNER_OCC\": 5370, \"RENTER_OCC\": 1115 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.618486893826685, 39.436456807098338 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mays Chapel\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"51587\", \"CAPITAL\": \"N\", \"AREALAND\": 3.752000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11427, \"WHITE\": 10382, \"BLACK\": 98, \"AMERI_ES\": 5, \"ASIAN\": 795, \"HAWN_PI\": 1, \"OTHER\": 46, \"MULT_RACE\": 100, \"HISPANIC\": 151, \"MALES\": 5301, \"FEMALES\": 6126, \"AGE_UNDER5\": 736, \"AGE_5_17\": 2140, \"AGE_18_21\": 262, \"AGE_22_29\": 673, \"AGE_30_39\": 1560, \"AGE_40_49\": 2139, \"AGE_50_64\": 2205, \"AGE_65_UP\": 1712, \"MED_AGE\": 41.600000, \"MED_AGE_M\": 40.900000, \"MED_AGE_F\": 42.100000, \"HOUSEHOLDS\": 4675, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 377, \"HSEHLD_1_F\": 855, \"MARHH_CHD\": 1275, \"MARHH_NO_C\": 1506, \"MHH_CHILD\": 43, \"FHH_CHILD\": 188, \"FAMILIES\": 3225, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 4762, \"VACANT\": 87, \"OWNER_OCC\": 4029, \"RENTER_OCC\": 646 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.649719418389779, 39.433708780907168 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Middle River\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"52300\", \"CAPITAL\": \"N\", \"AREALAND\": 7.726000, \"AREAWATER\": 0.733000, \"POP_CL\": 6, \"POP2000\": 23958, \"WHITE\": 19790, \"BLACK\": 3165, \"AMERI_ES\": 143, \"ASIAN\": 294, \"HAWN_PI\": 8, \"OTHER\": 206, \"MULT_RACE\": 352, \"HISPANIC\": 461, \"MALES\": 11421, \"FEMALES\": 12537, \"AGE_UNDER5\": 1636, \"AGE_5_17\": 4565, \"AGE_18_21\": 1057, \"AGE_22_29\": 2510, \"AGE_30_39\": 3779, \"AGE_40_49\": 3654, \"AGE_50_64\": 3607, \"AGE_65_UP\": 3150, \"MED_AGE\": 36.100000, \"MED_AGE_M\": 35.100000, \"MED_AGE_F\": 37.100000, \"HOUSEHOLDS\": 9425, \"AVE_HH_SZ\": 2.510000, \"HSEHLD_1_M\": 1056, \"HSEHLD_1_F\": 1369, \"MARHH_CHD\": 1855, \"MARHH_NO_C\": 2483, \"MHH_CHILD\": 334, \"FHH_CHILD\": 935, \"FAMILIES\": 6402, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 10000, \"VACANT\": 575, \"OWNER_OCC\": 5498, \"RENTER_OCC\": 3927 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.440530529844324, 39.333957968431385 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Milford Mill\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"52562\", \"CAPITAL\": \"N\", \"AREALAND\": 6.973000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 26527, \"WHITE\": 4294, \"BLACK\": 20971, \"AMERI_ES\": 57, \"ASIAN\": 444, \"HAWN_PI\": 4, \"OTHER\": 196, \"MULT_RACE\": 561, \"HISPANIC\": 483, \"MALES\": 12022, \"FEMALES\": 14505, \"AGE_UNDER5\": 1917, \"AGE_5_17\": 5440, \"AGE_18_21\": 1215, \"AGE_22_29\": 3362, \"AGE_30_39\": 4582, \"AGE_40_49\": 3905, \"AGE_50_64\": 3686, \"AGE_65_UP\": 2420, \"MED_AGE\": 32.800000, \"MED_AGE_M\": 31.200000, \"MED_AGE_F\": 34.100000, \"HOUSEHOLDS\": 10467, \"AVE_HH_SZ\": 2.490000, \"HSEHLD_1_M\": 1090, \"HSEHLD_1_F\": 1785, \"MARHH_CHD\": 1694, \"MARHH_NO_C\": 2009, \"MHH_CHILD\": 297, \"FHH_CHILD\": 1630, \"FAMILIES\": 6858, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 11217, \"VACANT\": 750, \"OWNER_OCC\": 4843, \"RENTER_OCC\": 5624 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.760947664269594, 39.347356692913742 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Montgomery Village\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"53325\", \"CAPITAL\": \"N\", \"AREALAND\": 6.477000, \"AREAWATER\": 0.030000, \"POP_CL\": 6, \"POP2000\": 38051, \"WHITE\": 23684, \"BLACK\": 6432, \"AMERI_ES\": 136, \"ASIAN\": 4516, \"HAWN_PI\": 26, \"OTHER\": 1726, \"MULT_RACE\": 1531, \"HISPANIC\": 4458, \"MALES\": 18122, \"FEMALES\": 19929, \"AGE_UNDER5\": 2920, \"AGE_5_17\": 7203, \"AGE_18_21\": 1553, \"AGE_22_29\": 4289, \"AGE_30_39\": 7116, \"AGE_40_49\": 6427, \"AGE_50_64\": 5875, \"AGE_65_UP\": 2668, \"MED_AGE\": 34.400000, \"MED_AGE_M\": 33.200000, \"MED_AGE_F\": 35.600000, \"HOUSEHOLDS\": 14142, \"AVE_HH_SZ\": 2.680000, \"HSEHLD_1_M\": 1302, \"HSEHLD_1_F\": 2092, \"MARHH_CHD\": 3854, \"MARHH_NO_C\": 3567, \"MHH_CHILD\": 248, \"FHH_CHILD\": 1098, \"FAMILIES\": 9730, \"AVE_FAM_SZ\": 3.210000, \"HSE_UNITS\": 14548, \"VACANT\": 406, \"OWNER_OCC\": 10210, \"RENTER_OCC\": 3932 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.192672049331946, 39.176469413564682 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"New Carrollton\", \"CLASS\": \"city\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"55400\", \"CAPITAL\": \"N\", \"AREALAND\": 1.519000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12589, \"WHITE\": 2746, \"BLACK\": 8498, \"AMERI_ES\": 30, \"ASIAN\": 605, \"HAWN_PI\": 8, \"OTHER\": 390, \"MULT_RACE\": 312, \"HISPANIC\": 827, \"MALES\": 6091, \"FEMALES\": 6498, \"AGE_UNDER5\": 953, \"AGE_5_17\": 2556, \"AGE_18_21\": 685, \"AGE_22_29\": 1436, \"AGE_30_39\": 2190, \"AGE_40_49\": 2050, \"AGE_50_64\": 1764, \"AGE_65_UP\": 955, \"MED_AGE\": 33.100000, \"MED_AGE_M\": 31.800000, \"MED_AGE_F\": 34.300000, \"HOUSEHOLDS\": 4568, \"AVE_HH_SZ\": 2.750000, \"HSEHLD_1_M\": 534, \"HSEHLD_1_F\": 639, \"MARHH_CHD\": 916, \"MARHH_NO_C\": 940, \"MHH_CHILD\": 107, \"FHH_CHILD\": 568, \"FAMILIES\": 3076, \"AVE_FAM_SZ\": 3.340000, \"HSE_UNITS\": 4749, \"VACANT\": 181, \"OWNER_OCC\": 2527, \"RENTER_OCC\": 2041 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.876664517643405, 38.966360611250529 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"North Bethesda\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"56337\", \"CAPITAL\": \"N\", \"AREALAND\": 9.018000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 38610, \"WHITE\": 29822, \"BLACK\": 1916, \"AMERI_ES\": 112, \"ASIAN\": 4620, \"HAWN_PI\": 20, \"OTHER\": 1008, \"MULT_RACE\": 1112, \"HISPANIC\": 3680, \"MALES\": 17998, \"FEMALES\": 20612, \"AGE_UNDER5\": 2023, \"AGE_5_17\": 4885, \"AGE_18_21\": 1021, \"AGE_22_29\": 4457, \"AGE_30_39\": 6986, \"AGE_40_49\": 5881, \"AGE_50_64\": 6487, \"AGE_65_UP\": 6870, \"MED_AGE\": 39.900000, \"MED_AGE_M\": 38.300000, \"MED_AGE_F\": 41.500000, \"HOUSEHOLDS\": 17286, \"AVE_HH_SZ\": 2.170000, \"HSEHLD_1_M\": 2320, \"HSEHLD_1_F\": 3989, \"MARHH_CHD\": 3172, \"MARHH_NO_C\": 4816, \"MHH_CHILD\": 160, \"FHH_CHILD\": 598, \"FAMILIES\": 9667, \"AVE_FAM_SZ\": 2.850000, \"HSE_UNITS\": 18071, \"VACANT\": 785, \"OWNER_OCC\": 10178, \"RENTER_OCC\": 7108 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.119113690546172, 39.037111456459627 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"North Laurel\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"56725\", \"CAPITAL\": \"N\", \"AREALAND\": 10.197000, \"AREAWATER\": 0.318000, \"POP_CL\": 6, \"POP2000\": 20468, \"WHITE\": 14619, \"BLACK\": 3500, \"AMERI_ES\": 66, \"ASIAN\": 1426, \"HAWN_PI\": 16, \"OTHER\": 304, \"MULT_RACE\": 537, \"HISPANIC\": 818, \"MALES\": 10139, \"FEMALES\": 10329, \"AGE_UNDER5\": 1616, \"AGE_5_17\": 4503, \"AGE_18_21\": 810, \"AGE_22_29\": 2250, \"AGE_30_39\": 4066, \"AGE_40_49\": 3758, \"AGE_50_64\": 2482, \"AGE_65_UP\": 983, \"MED_AGE\": 33.000000, \"MED_AGE_M\": 32.600000, \"MED_AGE_F\": 33.300000, \"HOUSEHOLDS\": 7235, \"AVE_HH_SZ\": 2.820000, \"HSEHLD_1_M\": 658, \"HSEHLD_1_F\": 728, \"MARHH_CHD\": 2454, \"MARHH_NO_C\": 1719, \"MHH_CHILD\": 190, \"FHH_CHILD\": 489, \"FAMILIES\": 5281, \"AVE_FAM_SZ\": 3.270000, \"HSE_UNITS\": 7453, \"VACANT\": 218, \"OWNER_OCC\": 5136, \"RENTER_OCC\": 2099 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.862711952032868, 39.134343619783465 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"North Potomac\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"56875\", \"CAPITAL\": \"N\", \"AREALAND\": 6.543000, \"AREAWATER\": 0.002000, \"POP_CL\": 6, \"POP2000\": 23044, \"WHITE\": 14896, \"BLACK\": 970, \"AMERI_ES\": 30, \"ASIAN\": 6357, \"HAWN_PI\": 10, \"OTHER\": 250, \"MULT_RACE\": 531, \"HISPANIC\": 908, \"MALES\": 11394, \"FEMALES\": 11650, \"AGE_UNDER5\": 1607, \"AGE_5_17\": 6280, \"AGE_18_21\": 817, \"AGE_22_29\": 1205, \"AGE_30_39\": 3331, \"AGE_40_49\": 5157, \"AGE_50_64\": 3797, \"AGE_65_UP\": 850, \"MED_AGE\": 36.200000, \"MED_AGE_M\": 35.600000, \"MED_AGE_F\": 36.600000, \"HOUSEHOLDS\": 6924, \"AVE_HH_SZ\": 3.330000, \"HSEHLD_1_M\": 217, \"HSEHLD_1_F\": 310, \"MARHH_CHD\": 3696, \"MARHH_NO_C\": 1833, \"MHH_CHILD\": 82, \"FHH_CHILD\": 373, \"FAMILIES\": 6244, \"AVE_FAM_SZ\": 3.510000, \"HSE_UNITS\": 7002, \"VACANT\": 78, \"OWNER_OCC\": 6340, \"RENTER_OCC\": 584 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.234230500863006, 39.097206392077752 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ocean Pines\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"58275\", \"CAPITAL\": \"N\", \"AREALAND\": 6.780000, \"AREAWATER\": 2.521000, \"POP_CL\": 6, \"POP2000\": 10496, \"WHITE\": 10095, \"BLACK\": 215, \"AMERI_ES\": 14, \"ASIAN\": 59, \"HAWN_PI\": 0, \"OTHER\": 18, \"MULT_RACE\": 95, \"HISPANIC\": 96, \"MALES\": 5146, \"FEMALES\": 5350, \"AGE_UNDER5\": 446, \"AGE_5_17\": 1354, \"AGE_18_21\": 243, \"AGE_22_29\": 593, \"AGE_30_39\": 1284, \"AGE_40_49\": 1290, \"AGE_50_64\": 2604, \"AGE_65_UP\": 2682, \"MED_AGE\": 50.300000, \"MED_AGE_M\": 49.200000, \"MED_AGE_F\": 50.900000, \"HOUSEHOLDS\": 4604, \"AVE_HH_SZ\": 2.280000, \"HSEHLD_1_M\": 375, \"HSEHLD_1_F\": 524, \"MARHH_CHD\": 712, \"MARHH_NO_C\": 2352, \"MHH_CHILD\": 74, \"FHH_CHILD\": 170, \"FAMILIES\": 3459, \"AVE_FAM_SZ\": 2.580000, \"HSE_UNITS\": 7083, \"VACANT\": 2479, \"OWNER_OCC\": 4013, \"RENTER_OCC\": 591 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.152810083684997, 38.383694891823296 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Odenton\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"58300\", \"CAPITAL\": \"N\", \"AREALAND\": 12.420000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 20534, \"WHITE\": 16458, \"BLACK\": 2620, \"AMERI_ES\": 75, \"ASIAN\": 628, \"HAWN_PI\": 16, \"OTHER\": 202, \"MULT_RACE\": 535, \"HISPANIC\": 568, \"MALES\": 10001, \"FEMALES\": 10533, \"AGE_UNDER5\": 1715, \"AGE_5_17\": 3815, \"AGE_18_21\": 751, \"AGE_22_29\": 2555, \"AGE_30_39\": 4440, \"AGE_40_49\": 3014, \"AGE_50_64\": 2843, \"AGE_65_UP\": 1401, \"MED_AGE\": 33.100000, \"MED_AGE_M\": 32.800000, \"MED_AGE_F\": 33.400000, \"HOUSEHOLDS\": 7594, \"AVE_HH_SZ\": 2.700000, \"HSEHLD_1_M\": 659, \"HSEHLD_1_F\": 835, \"MARHH_CHD\": 2246, \"MARHH_NO_C\": 2216, \"MHH_CHILD\": 167, \"FHH_CHILD\": 450, \"FAMILIES\": 5553, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 7900, \"VACANT\": 306, \"OWNER_OCC\": 5938, \"RENTER_OCC\": 1656 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.699780074679097, 39.071276742260196 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Olney\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"58900\", \"CAPITAL\": \"N\", \"AREALAND\": 12.990000, \"AREAWATER\": 0.003000, \"POP_CL\": 6, \"POP2000\": 31438, \"WHITE\": 24849, \"BLACK\": 2761, \"AMERI_ES\": 79, \"ASIAN\": 2526, \"HAWN_PI\": 14, \"OTHER\": 515, \"MULT_RACE\": 694, \"HISPANIC\": 1576, \"MALES\": 15190, \"FEMALES\": 16248, \"AGE_UNDER5\": 2363, \"AGE_5_17\": 7447, \"AGE_18_21\": 1095, \"AGE_22_29\": 1885, \"AGE_30_39\": 4968, \"AGE_40_49\": 6229, \"AGE_50_64\": 5446, \"AGE_65_UP\": 2005, \"MED_AGE\": 36.700000, \"MED_AGE_M\": 35.800000, \"MED_AGE_F\": 37.400000, \"HOUSEHOLDS\": 10274, \"AVE_HH_SZ\": 3.040000, \"HSEHLD_1_M\": 450, \"HSEHLD_1_F\": 817, \"MARHH_CHD\": 4283, \"MARHH_NO_C\": 3057, \"MHH_CHILD\": 136, \"FHH_CHILD\": 630, \"FAMILIES\": 8648, \"AVE_FAM_SZ\": 3.340000, \"HSE_UNITS\": 10415, \"VACANT\": 141, \"OWNER_OCC\": 9349, \"RENTER_OCC\": 925 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.074719355162316, 39.153022481469257 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Overlea\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"59325\", \"CAPITAL\": \"N\", \"AREALAND\": 3.075000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12148, \"WHITE\": 10659, \"BLACK\": 1067, \"AMERI_ES\": 36, \"ASIAN\": 218, \"HAWN_PI\": 2, \"OTHER\": 28, \"MULT_RACE\": 138, \"HISPANIC\": 169, \"MALES\": 5840, \"FEMALES\": 6308, \"AGE_UNDER5\": 691, \"AGE_5_17\": 2087, \"AGE_18_21\": 502, \"AGE_22_29\": 1248, \"AGE_30_39\": 1919, \"AGE_40_49\": 1866, \"AGE_50_64\": 1866, \"AGE_65_UP\": 1969, \"MED_AGE\": 38.200000, \"MED_AGE_M\": 36.600000, \"MED_AGE_F\": 39.700000, \"HOUSEHOLDS\": 4951, \"AVE_HH_SZ\": 2.450000, \"HSEHLD_1_M\": 501, \"HSEHLD_1_F\": 832, \"MARHH_CHD\": 1032, \"MARHH_NO_C\": 1497, \"MHH_CHILD\": 95, \"FHH_CHILD\": 288, \"FAMILIES\": 3316, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 5152, \"VACANT\": 201, \"OWNER_OCC\": 3783, \"RENTER_OCC\": 1168 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.519562297059636, 39.361107894395808 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Owings Mills\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"59425\", \"CAPITAL\": \"N\", \"AREALAND\": 9.613000, \"AREAWATER\": 0.001000, \"POP_CL\": 6, \"POP2000\": 20193, \"WHITE\": 11268, \"BLACK\": 7359, \"AMERI_ES\": 49, \"ASIAN\": 791, \"HAWN_PI\": 8, \"OTHER\": 242, \"MULT_RACE\": 476, \"HISPANIC\": 647, \"MALES\": 9560, \"FEMALES\": 10633, \"AGE_UNDER5\": 1552, \"AGE_5_17\": 2759, \"AGE_18_21\": 801, \"AGE_22_29\": 3872, \"AGE_30_39\": 4485, \"AGE_40_49\": 2898, \"AGE_50_64\": 2429, \"AGE_65_UP\": 1397, \"MED_AGE\": 32.000000, \"MED_AGE_M\": 31.500000, \"MED_AGE_F\": 32.400000, \"HOUSEHOLDS\": 8853, \"AVE_HH_SZ\": 2.240000, \"HSEHLD_1_M\": 1111, \"HSEHLD_1_F\": 1713, \"MARHH_CHD\": 1642, \"MARHH_NO_C\": 2043, \"MHH_CHILD\": 170, \"FHH_CHILD\": 640, \"FAMILIES\": 5047, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 9447, \"VACANT\": 594, \"OWNER_OCC\": 4261, \"RENTER_OCC\": 4592 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.793088321114809, 39.412282668169617 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Oxon Hill-Glassmanor\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"59505\", \"CAPITAL\": \"N\", \"AREALAND\": 9.038000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 35355, \"WHITE\": 2700, \"BLACK\": 30646, \"AMERI_ES\": 113, \"ASIAN\": 984, \"HAWN_PI\": 30, \"OTHER\": 244, \"MULT_RACE\": 638, \"HISPANIC\": 593, \"MALES\": 16171, \"FEMALES\": 19184, \"AGE_UNDER5\": 2652, \"AGE_5_17\": 7441, \"AGE_18_21\": 1837, \"AGE_22_29\": 4335, \"AGE_30_39\": 5902, \"AGE_40_49\": 5381, \"AGE_50_64\": 5495, \"AGE_65_UP\": 2312, \"MED_AGE\": 32.400000, \"MED_AGE_M\": 30.400000, \"MED_AGE_F\": 33.900000, \"HOUSEHOLDS\": 13700, \"AVE_HH_SZ\": 2.580000, \"HSEHLD_1_M\": 1643, \"HSEHLD_1_F\": 2190, \"MARHH_CHD\": 2046, \"MARHH_NO_C\": 2507, \"MHH_CHILD\": 447, \"FHH_CHILD\": 2312, \"FAMILIES\": 9067, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 14669, \"VACANT\": 969, \"OWNER_OCC\": 6422, \"RENTER_OCC\": 7278 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.975558048800877, 38.80251354625932 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Parkville\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"60275\", \"CAPITAL\": \"N\", \"AREALAND\": 4.233000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 31118, \"WHITE\": 22916, \"BLACK\": 6995, \"AMERI_ES\": 51, \"ASIAN\": 586, \"HAWN_PI\": 6, \"OTHER\": 131, \"MULT_RACE\": 433, \"HISPANIC\": 515, \"MALES\": 14393, \"FEMALES\": 16725, \"AGE_UNDER5\": 1768, \"AGE_5_17\": 5338, \"AGE_18_21\": 1521, \"AGE_22_29\": 3295, \"AGE_30_39\": 4837, \"AGE_40_49\": 4795, \"AGE_50_64\": 4245, \"AGE_65_UP\": 5319, \"MED_AGE\": 37.600000, \"MED_AGE_M\": 35.900000, \"MED_AGE_F\": 39.100000, \"HOUSEHOLDS\": 13044, \"AVE_HH_SZ\": 2.360000, \"HSEHLD_1_M\": 1442, \"HSEHLD_1_F\": 2441, \"MARHH_CHD\": 2220, \"MARHH_NO_C\": 3363, \"MHH_CHILD\": 251, \"FHH_CHILD\": 1223, \"FAMILIES\": 8238, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 13550, \"VACANT\": 506, \"OWNER_OCC\": 8579, \"RENTER_OCC\": 4465 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.55009185459609, 39.383039866825698 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Parole\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"60325\", \"CAPITAL\": \"N\", \"AREALAND\": 10.284000, \"AREAWATER\": 1.568000, \"POP_CL\": 6, \"POP2000\": 14031, \"WHITE\": 12679, \"BLACK\": 910, \"AMERI_ES\": 30, \"ASIAN\": 215, \"HAWN_PI\": 11, \"OTHER\": 48, \"MULT_RACE\": 138, \"HISPANIC\": 219, \"MALES\": 6788, \"FEMALES\": 7243, \"AGE_UNDER5\": 495, \"AGE_5_17\": 1221, \"AGE_18_21\": 408, \"AGE_22_29\": 1319, \"AGE_30_39\": 1981, \"AGE_40_49\": 1890, \"AGE_50_64\": 2924, \"AGE_65_UP\": 3793, \"MED_AGE\": 48.400000, \"MED_AGE_M\": 44.200000, \"MED_AGE_F\": 52.300000, \"HOUSEHOLDS\": 6645, \"AVE_HH_SZ\": 1.960000, \"HSEHLD_1_M\": 805, \"HSEHLD_1_F\": 1702, \"MARHH_CHD\": 747, \"MARHH_NO_C\": 2491, \"MHH_CHILD\": 41, \"FHH_CHILD\": 150, \"FAMILIES\": 3708, \"AVE_FAM_SZ\": 2.540000, \"HSE_UNITS\": 6946, \"VACANT\": 301, \"OWNER_OCC\": 5157, \"RENTER_OCC\": 1488 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.548476169904475, 38.991657869545399 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pasadena\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"60475\", \"CAPITAL\": \"N\", \"AREALAND\": 7.410000, \"AREAWATER\": 0.276000, \"POP_CL\": 6, \"POP2000\": 12093, \"WHITE\": 10890, \"BLACK\": 823, \"AMERI_ES\": 34, \"ASIAN\": 178, \"HAWN_PI\": 5, \"OTHER\": 35, \"MULT_RACE\": 128, \"HISPANIC\": 161, \"MALES\": 5971, \"FEMALES\": 6122, \"AGE_UNDER5\": 810, \"AGE_5_17\": 2416, \"AGE_18_21\": 421, \"AGE_22_29\": 909, \"AGE_30_39\": 2133, \"AGE_40_49\": 2204, \"AGE_50_64\": 2045, \"AGE_65_UP\": 1155, \"MED_AGE\": 37.300000, \"MED_AGE_M\": 37.100000, \"MED_AGE_F\": 37.600000, \"HOUSEHOLDS\": 4339, \"AVE_HH_SZ\": 2.780000, \"HSEHLD_1_M\": 381, \"HSEHLD_1_F\": 408, \"MARHH_CHD\": 1392, \"MARHH_NO_C\": 1448, \"MHH_CHILD\": 68, \"FHH_CHILD\": 167, \"FAMILIES\": 3335, \"AVE_FAM_SZ\": 3.180000, \"HSE_UNITS\": 4534, \"VACANT\": 195, \"OWNER_OCC\": 3667, \"RENTER_OCC\": 672 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.551897336065338, 39.112809866189274 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Perry Hall\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"60975\", \"CAPITAL\": \"N\", \"AREALAND\": 6.993000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 28705, \"WHITE\": 25486, \"BLACK\": 1299, \"AMERI_ES\": 33, \"ASIAN\": 1459, \"HAWN_PI\": 8, \"OTHER\": 105, \"MULT_RACE\": 315, \"HISPANIC\": 430, \"MALES\": 13815, \"FEMALES\": 14890, \"AGE_UNDER5\": 1669, \"AGE_5_17\": 5285, \"AGE_18_21\": 1171, \"AGE_22_29\": 2861, \"AGE_30_39\": 4773, \"AGE_40_49\": 5137, \"AGE_50_64\": 4465, \"AGE_65_UP\": 3344, \"MED_AGE\": 37.300000, \"MED_AGE_M\": 36.200000, \"MED_AGE_F\": 38.400000, \"HOUSEHOLDS\": 11328, \"AVE_HH_SZ\": 2.530000, \"HSEHLD_1_M\": 1040, \"HSEHLD_1_F\": 1653, \"MARHH_CHD\": 3004, \"MARHH_NO_C\": 3374, \"MHH_CHILD\": 187, \"FHH_CHILD\": 606, \"FAMILIES\": 7886, \"AVE_FAM_SZ\": 3.030000, \"HSE_UNITS\": 11578, \"VACANT\": 250, \"OWNER_OCC\": 8666, \"RENTER_OCC\": 2662 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.478990026634122, 39.401385931736669 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pikesville\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"61400\", \"CAPITAL\": \"N\", \"AREALAND\": 12.401000, \"AREAWATER\": 0.007000, \"POP_CL\": 6, \"POP2000\": 29123, \"WHITE\": 25158, \"BLACK\": 2482, \"AMERI_ES\": 26, \"ASIAN\": 1016, \"HAWN_PI\": 3, \"OTHER\": 147, \"MULT_RACE\": 291, \"HISPANIC\": 438, \"MALES\": 13469, \"FEMALES\": 15654, \"AGE_UNDER5\": 1324, \"AGE_5_17\": 4399, \"AGE_18_21\": 750, \"AGE_22_29\": 2273, \"AGE_30_39\": 3562, \"AGE_40_49\": 4338, \"AGE_50_64\": 5600, \"AGE_65_UP\": 6877, \"MED_AGE\": 45.400000, \"MED_AGE_M\": 43.600000, \"MED_AGE_F\": 47.000000, \"HOUSEHOLDS\": 12747, \"AVE_HH_SZ\": 2.250000, \"HSEHLD_1_M\": 1182, \"HSEHLD_1_F\": 2706, \"MARHH_CHD\": 2498, \"MARHH_NO_C\": 4502, \"MHH_CHILD\": 103, \"FHH_CHILD\": 465, \"FAMILIES\": 8149, \"AVE_FAM_SZ\": 2.810000, \"HSE_UNITS\": 13391, \"VACANT\": 644, \"OWNER_OCC\": 8829, \"RENTER_OCC\": 3918 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.705115511110805, 39.379039736226311 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Potomac\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"63300\", \"CAPITAL\": \"N\", \"AREALAND\": 25.178000, \"AREAWATER\": 1.379000, \"POP_CL\": 6, \"POP2000\": 44822, \"WHITE\": 35615, \"BLACK\": 1763, \"AMERI_ES\": 50, \"ASIAN\": 5991, \"HAWN_PI\": 4, \"OTHER\": 402, \"MULT_RACE\": 997, \"HISPANIC\": 2411, \"MALES\": 21439, \"FEMALES\": 23383, \"AGE_UNDER5\": 2411, \"AGE_5_17\": 9358, \"AGE_18_21\": 1271, \"AGE_22_29\": 1985, \"AGE_30_39\": 4542, \"AGE_40_49\": 8003, \"AGE_50_64\": 11050, \"AGE_65_UP\": 6202, \"MED_AGE\": 43.800000, \"MED_AGE_M\": 43.600000, \"MED_AGE_F\": 44.000000, \"HOUSEHOLDS\": 15655, \"AVE_HH_SZ\": 2.840000, \"HSEHLD_1_M\": 705, \"HSEHLD_1_F\": 1494, \"MARHH_CHD\": 5333, \"MARHH_NO_C\": 6377, \"MHH_CHILD\": 114, \"FHH_CHILD\": 564, \"FAMILIES\": 13028, \"AVE_FAM_SZ\": 3.100000, \"HSE_UNITS\": 15960, \"VACANT\": 305, \"OWNER_OCC\": 13908, \"RENTER_OCC\": 1747 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.18644092390096, 39.022694418650239 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Randallstown\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"64950\", \"CAPITAL\": \"N\", \"AREALAND\": 10.303000, \"AREAWATER\": 0.001000, \"POP_CL\": 6, \"POP2000\": 30870, \"WHITE\": 7156, \"BLACK\": 22259, \"AMERI_ES\": 62, \"ASIAN\": 683, \"HAWN_PI\": 6, \"OTHER\": 168, \"MULT_RACE\": 536, \"HISPANIC\": 476, \"MALES\": 14098, \"FEMALES\": 16772, \"AGE_UNDER5\": 1994, \"AGE_5_17\": 6136, \"AGE_18_21\": 1278, \"AGE_22_29\": 2601, \"AGE_30_39\": 4965, \"AGE_40_49\": 5163, \"AGE_50_64\": 5163, \"AGE_65_UP\": 3570, \"MED_AGE\": 37.000000, \"MED_AGE_M\": 35.500000, \"MED_AGE_F\": 38.300000, \"HOUSEHOLDS\": 11379, \"AVE_HH_SZ\": 2.650000, \"HSEHLD_1_M\": 909, \"HSEHLD_1_F\": 1802, \"MARHH_CHD\": 2555, \"MARHH_NO_C\": 3132, \"MHH_CHILD\": 239, \"FHH_CHILD\": 1114, \"FAMILIES\": 8145, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 11900, \"VACANT\": 521, \"OWNER_OCC\": 8449, \"RENTER_OCC\": 2930 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.796644213196259, 39.375272665804992 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Redland\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"65312\", \"CAPITAL\": \"N\", \"AREALAND\": 6.870000, \"AREAWATER\": 0.128000, \"POP_CL\": 6, \"POP2000\": 16998, \"WHITE\": 9355, \"BLACK\": 2677, \"AMERI_ES\": 59, \"ASIAN\": 2709, \"HAWN_PI\": 8, \"OTHER\": 1461, \"MULT_RACE\": 729, \"HISPANIC\": 2566, \"MALES\": 8435, \"FEMALES\": 8563, \"AGE_UNDER5\": 1247, \"AGE_5_17\": 3796, \"AGE_18_21\": 782, \"AGE_22_29\": 1468, \"AGE_30_39\": 2615, \"AGE_40_49\": 3061, \"AGE_50_64\": 2914, \"AGE_65_UP\": 1115, \"MED_AGE\": 35.200000, \"MED_AGE_M\": 34.100000, \"MED_AGE_F\": 36.000000, \"HOUSEHOLDS\": 5272, \"AVE_HH_SZ\": 3.220000, \"HSEHLD_1_M\": 278, \"HSEHLD_1_F\": 316, \"MARHH_CHD\": 1942, \"MARHH_NO_C\": 1660, \"MHH_CHILD\": 86, \"FHH_CHILD\": 335, \"FAMILIES\": 4423, \"AVE_FAM_SZ\": 3.460000, \"HSE_UNITS\": 5425, \"VACANT\": 153, \"OWNER_OCC\": 4110, \"RENTER_OCC\": 1162 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.155310414139066, 39.137931434740139 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Reisterstown\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"65600\", \"CAPITAL\": \"N\", \"AREALAND\": 5.030000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 22438, \"WHITE\": 16467, \"BLACK\": 4127, \"AMERI_ES\": 50, \"ASIAN\": 903, \"HAWN_PI\": 16, \"OTHER\": 365, \"MULT_RACE\": 510, \"HISPANIC\": 986, \"MALES\": 10702, \"FEMALES\": 11736, \"AGE_UNDER5\": 1581, \"AGE_5_17\": 4256, \"AGE_18_21\": 925, \"AGE_22_29\": 2566, \"AGE_30_39\": 4130, \"AGE_40_49\": 3562, \"AGE_50_64\": 3383, \"AGE_65_UP\": 2035, \"MED_AGE\": 34.600000, \"MED_AGE_M\": 33.300000, \"MED_AGE_F\": 35.800000, \"HOUSEHOLDS\": 8680, \"AVE_HH_SZ\": 2.550000, \"HSEHLD_1_M\": 869, \"HSEHLD_1_F\": 1274, \"MARHH_CHD\": 2146, \"MARHH_NO_C\": 2199, \"MHH_CHILD\": 174, \"FHH_CHILD\": 801, \"FAMILIES\": 5979, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 9081, \"VACANT\": 401, \"OWNER_OCC\": 5639, \"RENTER_OCC\": 3041 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.814633095174841, 39.456954651856663 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Riviera Beach\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"66850\", \"CAPITAL\": \"N\", \"AREALAND\": 2.667000, \"AREAWATER\": 0.591000, \"POP_CL\": 6, \"POP2000\": 12695, \"WHITE\": 12076, \"BLACK\": 274, \"AMERI_ES\": 38, \"ASIAN\": 131, \"HAWN_PI\": 15, \"OTHER\": 48, \"MULT_RACE\": 113, \"HISPANIC\": 175, \"MALES\": 6209, \"FEMALES\": 6486, \"AGE_UNDER5\": 947, \"AGE_5_17\": 2297, \"AGE_18_21\": 455, \"AGE_22_29\": 1326, \"AGE_30_39\": 2426, \"AGE_40_49\": 1954, \"AGE_50_64\": 1895, \"AGE_65_UP\": 1395, \"MED_AGE\": 35.600000, \"MED_AGE_M\": 35.000000, \"MED_AGE_F\": 36.300000, \"HOUSEHOLDS\": 4780, \"AVE_HH_SZ\": 2.650000, \"HSEHLD_1_M\": 449, \"HSEHLD_1_F\": 536, \"MARHH_CHD\": 1288, \"MARHH_NO_C\": 1414, \"MHH_CHILD\": 126, \"FHH_CHILD\": 281, \"FAMILIES\": 3483, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 4950, \"VACANT\": 170, \"OWNER_OCC\": 4037, \"RENTER_OCC\": 743 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.518008953631337, 39.162008896423785 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Rockville\", \"CLASS\": \"city\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"67675\", \"CAPITAL\": \"N\", \"AREALAND\": 13.447000, \"AREAWATER\": 0.003000, \"POP_CL\": 6, \"POP2000\": 47388, \"WHITE\": 32120, \"BLACK\": 4317, \"AMERI_ES\": 160, \"ASIAN\": 7030, \"HAWN_PI\": 15, \"OTHER\": 2265, \"MULT_RACE\": 1481, \"HISPANIC\": 5529, \"MALES\": 23106, \"FEMALES\": 24282, \"AGE_UNDER5\": 2992, \"AGE_5_17\": 8089, \"AGE_18_21\": 1808, \"AGE_22_29\": 4445, \"AGE_30_39\": 8203, \"AGE_40_49\": 7737, \"AGE_50_64\": 7899, \"AGE_65_UP\": 6215, \"MED_AGE\": 37.800000, \"MED_AGE_M\": 36.500000, \"MED_AGE_F\": 39.300000, \"HOUSEHOLDS\": 17247, \"AVE_HH_SZ\": 2.650000, \"HSEHLD_1_M\": 1562, \"HSEHLD_1_F\": 2550, \"MARHH_CHD\": 4602, \"MARHH_NO_C\": 5157, \"MHH_CHILD\": 233, \"FHH_CHILD\": 865, \"FAMILIES\": 12002, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 17786, \"VACANT\": 539, \"OWNER_OCC\": 11669, \"RENTER_OCC\": 5578 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.148244423325792, 39.083708439304488 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Rosaryville\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"68300\", \"CAPITAL\": \"N\", \"AREALAND\": 13.669000, \"AREAWATER\": 0.003000, \"POP_CL\": 6, \"POP2000\": 12322, \"WHITE\": 4206, \"BLACK\": 7340, \"AMERI_ES\": 79, \"ASIAN\": 329, \"HAWN_PI\": 13, \"OTHER\": 78, \"MULT_RACE\": 277, \"HISPANIC\": 261, \"MALES\": 6015, \"FEMALES\": 6307, \"AGE_UNDER5\": 865, \"AGE_5_17\": 2585, \"AGE_18_21\": 515, \"AGE_22_29\": 842, \"AGE_30_39\": 2254, \"AGE_40_49\": 2245, \"AGE_50_64\": 2136, \"AGE_65_UP\": 880, \"MED_AGE\": 36.600000, \"MED_AGE_M\": 36.200000, \"MED_AGE_F\": 36.900000, \"HOUSEHOLDS\": 4112, \"AVE_HH_SZ\": 2.990000, \"HSEHLD_1_M\": 272, \"HSEHLD_1_F\": 314, \"MARHH_CHD\": 1303, \"MARHH_NO_C\": 1359, \"MHH_CHILD\": 93, \"FHH_CHILD\": 268, \"FAMILIES\": 3366, \"AVE_FAM_SZ\": 3.290000, \"HSE_UNITS\": 4267, \"VACANT\": 155, \"OWNER_OCC\": 3850, \"RENTER_OCC\": 262 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.835589747136567, 38.767664641518422 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Rosedale\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"68400\", \"CAPITAL\": \"N\", \"AREALAND\": 6.881000, \"AREAWATER\": 0.228000, \"POP_CL\": 6, \"POP2000\": 19199, \"WHITE\": 14343, \"BLACK\": 4070, \"AMERI_ES\": 47, \"ASIAN\": 366, \"HAWN_PI\": 12, \"OTHER\": 100, \"MULT_RACE\": 261, \"HISPANIC\": 266, \"MALES\": 9156, \"FEMALES\": 10043, \"AGE_UNDER5\": 1008, \"AGE_5_17\": 3566, \"AGE_18_21\": 901, \"AGE_22_29\": 1607, \"AGE_30_39\": 2763, \"AGE_40_49\": 2987, \"AGE_50_64\": 3179, \"AGE_65_UP\": 3188, \"MED_AGE\": 39.300000, \"MED_AGE_M\": 38.100000, \"MED_AGE_F\": 40.200000, \"HOUSEHOLDS\": 7272, \"AVE_HH_SZ\": 2.640000, \"HSEHLD_1_M\": 612, \"HSEHLD_1_F\": 973, \"MARHH_CHD\": 1500, \"MARHH_NO_C\": 2427, \"MHH_CHILD\": 172, \"FHH_CHILD\": 520, \"FAMILIES\": 5333, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 7518, \"VACANT\": 246, \"OWNER_OCC\": 5544, \"RENTER_OCC\": 1728 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.511127370684576, 39.328307902203825 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Rossville\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"68700\", \"CAPITAL\": \"N\", \"AREALAND\": 5.400000, \"AREAWATER\": 0.008000, \"POP_CL\": 6, \"POP2000\": 11515, \"WHITE\": 8130, \"BLACK\": 2520, \"AMERI_ES\": 33, \"ASIAN\": 491, \"HAWN_PI\": 1, \"OTHER\": 143, \"MULT_RACE\": 197, \"HISPANIC\": 329, \"MALES\": 5615, \"FEMALES\": 5900, \"AGE_UNDER5\": 809, \"AGE_5_17\": 1838, \"AGE_18_21\": 598, \"AGE_22_29\": 1907, \"AGE_30_39\": 2103, \"AGE_40_49\": 1737, \"AGE_50_64\": 1478, \"AGE_65_UP\": 1045, \"MED_AGE\": 32.400000, \"MED_AGE_M\": 31.800000, \"MED_AGE_F\": 33.000000, \"HOUSEHOLDS\": 4811, \"AVE_HH_SZ\": 2.340000, \"HSEHLD_1_M\": 771, \"HSEHLD_1_F\": 740, \"MARHH_CHD\": 895, \"MARHH_NO_C\": 1046, \"MHH_CHILD\": 129, \"FHH_CHILD\": 431, \"FAMILIES\": 2818, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 5157, \"VACANT\": 346, \"OWNER_OCC\": 2260, \"RENTER_OCC\": 2551 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.478759944129166, 39.355897932085284 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"St. Charles\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"69350\", \"CAPITAL\": \"N\", \"AREALAND\": 11.797000, \"AREAWATER\": 0.128000, \"POP_CL\": 6, \"POP2000\": 33379, \"WHITE\": 21453, \"BLACK\": 9571, \"AMERI_ES\": 234, \"ASIAN\": 805, \"HAWN_PI\": 23, \"OTHER\": 351, \"MULT_RACE\": 942, \"HISPANIC\": 1114, \"MALES\": 15847, \"FEMALES\": 17532, \"AGE_UNDER5\": 2821, \"AGE_5_17\": 7751, \"AGE_18_21\": 1715, \"AGE_22_29\": 3610, \"AGE_30_39\": 6484, \"AGE_40_49\": 5515, \"AGE_50_64\": 3668, \"AGE_65_UP\": 1815, \"MED_AGE\": 31.300000, \"MED_AGE_M\": 30.300000, \"MED_AGE_F\": 32.300000, \"HOUSEHOLDS\": 11567, \"AVE_HH_SZ\": 2.860000, \"HSEHLD_1_M\": 911, \"HSEHLD_1_F\": 1336, \"MARHH_CHD\": 3474, \"MARHH_NO_C\": 2330, \"MHH_CHILD\": 371, \"FHH_CHILD\": 1558, \"FAMILIES\": 8628, \"AVE_FAM_SZ\": 3.250000, \"HSE_UNITS\": 12064, \"VACANT\": 497, \"OWNER_OCC\": 7512, \"RENTER_OCC\": 4055 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.915805493931046, 38.605540586931944 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Salisbury\", \"CLASS\": \"city\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"69925\", \"CAPITAL\": \"N\", \"AREALAND\": 11.066000, \"AREAWATER\": 0.357000, \"POP_CL\": 6, \"POP2000\": 23743, \"WHITE\": 14414, \"BLACK\": 7673, \"AMERI_ES\": 55, \"ASIAN\": 757, \"HAWN_PI\": 6, \"OTHER\": 348, \"MULT_RACE\": 490, \"HISPANIC\": 806, \"MALES\": 11062, \"FEMALES\": 12681, \"AGE_UNDER5\": 1471, \"AGE_5_17\": 3701, \"AGE_18_21\": 3591, \"AGE_22_29\": 3295, \"AGE_30_39\": 3096, \"AGE_40_49\": 2931, \"AGE_50_64\": 2696, \"AGE_65_UP\": 2962, \"MED_AGE\": 29.400000, \"MED_AGE_M\": 28.100000, \"MED_AGE_F\": 30.700000, \"HOUSEHOLDS\": 9061, \"AVE_HH_SZ\": 2.360000, \"HSEHLD_1_M\": 1226, \"HSEHLD_1_F\": 1812, \"MARHH_CHD\": 1142, \"MARHH_NO_C\": 1615, \"MHH_CHILD\": 215, \"FHH_CHILD\": 1125, \"FAMILIES\": 4804, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 9612, \"VACANT\": 551, \"OWNER_OCC\": 3427, \"RENTER_OCC\": 5634 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.593404202499528, 38.365808047579698 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Savage-Guilford\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"70487\", \"CAPITAL\": \"N\", \"AREALAND\": 4.937000, \"AREAWATER\": 0.035000, \"POP_CL\": 6, \"POP2000\": 12918, \"WHITE\": 8505, \"BLACK\": 3015, \"AMERI_ES\": 47, \"ASIAN\": 760, \"HAWN_PI\": 2, \"OTHER\": 179, \"MULT_RACE\": 410, \"HISPANIC\": 468, \"MALES\": 6327, \"FEMALES\": 6591, \"AGE_UNDER5\": 1171, \"AGE_5_17\": 2615, \"AGE_18_21\": 402, \"AGE_22_29\": 1660, \"AGE_30_39\": 3259, \"AGE_40_49\": 2084, \"AGE_50_64\": 1160, \"AGE_65_UP\": 567, \"MED_AGE\": 32.000000, \"MED_AGE_M\": 31.600000, \"MED_AGE_F\": 32.400000, \"HOUSEHOLDS\": 4811, \"AVE_HH_SZ\": 2.670000, \"HSEHLD_1_M\": 543, \"HSEHLD_1_F\": 526, \"MARHH_CHD\": 1459, \"MARHH_NO_C\": 1040, \"MHH_CHILD\": 101, \"FHH_CHILD\": 430, \"FAMILIES\": 3314, \"AVE_FAM_SZ\": 3.180000, \"HSE_UNITS\": 4943, \"VACANT\": 132, \"OWNER_OCC\": 2995, \"RENTER_OCC\": 1816 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.824638469740876, 39.143607646952653 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Severn\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"71150\", \"CAPITAL\": \"N\", \"AREALAND\": 13.967000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 35076, \"WHITE\": 19730, \"BLACK\": 12124, \"AMERI_ES\": 148, \"ASIAN\": 1504, \"HAWN_PI\": 34, \"OTHER\": 477, \"MULT_RACE\": 1059, \"HISPANIC\": 1390, \"MALES\": 17061, \"FEMALES\": 18015, \"AGE_UNDER5\": 2873, \"AGE_5_17\": 7739, \"AGE_18_21\": 1572, \"AGE_22_29\": 3682, \"AGE_30_39\": 6718, \"AGE_40_49\": 5853, \"AGE_50_64\": 4828, \"AGE_65_UP\": 1811, \"MED_AGE\": 32.600000, \"MED_AGE_M\": 32.300000, \"MED_AGE_F\": 32.900000, \"HOUSEHOLDS\": 12003, \"AVE_HH_SZ\": 2.910000, \"HSEHLD_1_M\": 942, \"HSEHLD_1_F\": 899, \"MARHH_CHD\": 3710, \"MARHH_NO_C\": 3469, \"MHH_CHILD\": 323, \"FHH_CHILD\": 1179, \"FAMILIES\": 9511, \"AVE_FAM_SZ\": 3.240000, \"HSE_UNITS\": 12362, \"VACANT\": 359, \"OWNER_OCC\": 8827, \"RENTER_OCC\": 3176 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.694026259309183, 39.132841746521372 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Severna Park\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"71200\", \"CAPITAL\": \"N\", \"AREALAND\": 12.901000, \"AREAWATER\": 2.701000, \"POP_CL\": 6, \"POP2000\": 28507, \"WHITE\": 26355, \"BLACK\": 939, \"AMERI_ES\": 50, \"ASIAN\": 790, \"HAWN_PI\": 12, \"OTHER\": 92, \"MULT_RACE\": 269, \"HISPANIC\": 338, \"MALES\": 13864, \"FEMALES\": 14643, \"AGE_UNDER5\": 1771, \"AGE_5_17\": 6226, \"AGE_18_21\": 932, \"AGE_22_29\": 1292, \"AGE_30_39\": 3813, \"AGE_40_49\": 5404, \"AGE_50_64\": 5606, \"AGE_65_UP\": 3463, \"MED_AGE\": 40.400000, \"MED_AGE_M\": 39.700000, \"MED_AGE_F\": 41.000000, \"HOUSEHOLDS\": 9731, \"AVE_HH_SZ\": 2.890000, \"HSEHLD_1_M\": 493, \"HSEHLD_1_F\": 807, \"MARHH_CHD\": 3511, \"MARHH_NO_C\": 3663, \"MHH_CHILD\": 125, \"FHH_CHILD\": 343, \"FAMILIES\": 8104, \"AVE_FAM_SZ\": 3.170000, \"HSE_UNITS\": 9945, \"VACANT\": 214, \"OWNER_OCC\": 8913, \"RENTER_OCC\": 818 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.565682069382532, 39.082109854146552 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Silver Spring\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"72450\", \"CAPITAL\": \"N\", \"AREALAND\": 9.422000, \"AREAWATER\": 0.000000, \"POP_CL\": 7, \"POP2000\": 76540, \"WHITE\": 35678, \"BLACK\": 21482, \"AMERI_ES\": 338, \"ASIAN\": 6293, \"HAWN_PI\": 48, \"OTHER\": 8844, \"MULT_RACE\": 3857, \"HISPANIC\": 17004, \"MALES\": 36964, \"FEMALES\": 39576, \"AGE_UNDER5\": 5519, \"AGE_5_17\": 12048, \"AGE_18_21\": 3234, \"AGE_22_29\": 11072, \"AGE_30_39\": 14719, \"AGE_40_49\": 12293, \"AGE_50_64\": 10300, \"AGE_65_UP\": 7355, \"MED_AGE\": 34.200000, \"MED_AGE_M\": 33.000000, \"MED_AGE_F\": 35.400000, \"HOUSEHOLDS\": 30374, \"AVE_HH_SZ\": 2.500000, \"HSEHLD_1_M\": 3841, \"HSEHLD_1_F\": 6056, \"MARHH_CHD\": 6347, \"MARHH_NO_C\": 6035, \"MHH_CHILD\": 532, \"FHH_CHILD\": 2048, \"FAMILIES\": 17629, \"AVE_FAM_SZ\": 3.210000, \"HSE_UNITS\": 31208, \"VACANT\": 834, \"OWNER_OCC\": 13267, \"RENTER_OCC\": 17107 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.019023809611213, 39.004242516997181 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"South Gate\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"73550\", \"CAPITAL\": \"N\", \"AREALAND\": 6.310000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 28672, \"WHITE\": 20341, \"BLACK\": 5631, \"AMERI_ES\": 101, \"ASIAN\": 1513, \"HAWN_PI\": 26, \"OTHER\": 374, \"MULT_RACE\": 686, \"HISPANIC\": 899, \"MALES\": 14008, \"FEMALES\": 14664, \"AGE_UNDER5\": 2090, \"AGE_5_17\": 5330, \"AGE_18_21\": 1655, \"AGE_22_29\": 4282, \"AGE_30_39\": 5191, \"AGE_40_49\": 4215, \"AGE_50_64\": 3960, \"AGE_65_UP\": 1949, \"MED_AGE\": 31.700000, \"MED_AGE_M\": 30.900000, \"MED_AGE_F\": 32.500000, \"HOUSEHOLDS\": 11273, \"AVE_HH_SZ\": 2.530000, \"HSEHLD_1_M\": 1483, \"HSEHLD_1_F\": 1433, \"MARHH_CHD\": 2429, \"MARHH_NO_C\": 2642, \"MHH_CHILD\": 341, \"FHH_CHILD\": 1170, \"FAMILIES\": 7373, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 11750, \"VACANT\": 477, \"OWNER_OCC\": 5655, \"RENTER_OCC\": 5618 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.63115117367596, 39.13235879792154 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"South Laurel\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"73650\", \"CAPITAL\": \"N\", \"AREALAND\": 4.280000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 20479, \"WHITE\": 7922, \"BLACK\": 10178, \"AMERI_ES\": 39, \"ASIAN\": 1148, \"HAWN_PI\": 7, \"OTHER\": 523, \"MULT_RACE\": 662, \"HISPANIC\": 1077, \"MALES\": 9753, \"FEMALES\": 10726, \"AGE_UNDER5\": 1723, \"AGE_5_17\": 3648, \"AGE_18_21\": 1018, \"AGE_22_29\": 3303, \"AGE_30_39\": 4086, \"AGE_40_49\": 2696, \"AGE_50_64\": 2610, \"AGE_65_UP\": 1395, \"MED_AGE\": 31.200000, \"MED_AGE_M\": 30.800000, \"MED_AGE_F\": 31.600000, \"HOUSEHOLDS\": 8260, \"AVE_HH_SZ\": 2.450000, \"HSEHLD_1_M\": 1086, \"HSEHLD_1_F\": 1396, \"MARHH_CHD\": 1527, \"MARHH_NO_C\": 1659, \"MHH_CHILD\": 228, \"FHH_CHILD\": 1023, \"FAMILIES\": 5056, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 8621, \"VACANT\": 361, \"OWNER_OCC\": 2818, \"RENTER_OCC\": 5442 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.851029011298593, 39.072741628511196 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Suitland-Silver Hill\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"75762\", \"CAPITAL\": \"N\", \"AREALAND\": 5.578000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 33515, \"WHITE\": 1295, \"BLACK\": 31172, \"AMERI_ES\": 103, \"ASIAN\": 201, \"HAWN_PI\": 9, \"OTHER\": 213, \"MULT_RACE\": 522, \"HISPANIC\": 625, \"MALES\": 14765, \"FEMALES\": 18750, \"AGE_UNDER5\": 3024, \"AGE_5_17\": 7762, \"AGE_18_21\": 1773, \"AGE_22_29\": 4544, \"AGE_30_39\": 6084, \"AGE_40_49\": 4661, \"AGE_50_64\": 3997, \"AGE_65_UP\": 1670, \"MED_AGE\": 29.500000, \"MED_AGE_M\": 27.200000, \"MED_AGE_F\": 31.000000, \"HOUSEHOLDS\": 13149, \"AVE_HH_SZ\": 2.550000, \"HSEHLD_1_M\": 1507, \"HSEHLD_1_F\": 2114, \"MARHH_CHD\": 1771, \"MARHH_NO_C\": 1628, \"MHH_CHILD\": 472, \"FHH_CHILD\": 3008, \"FAMILIES\": 8656, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 14379, \"VACANT\": 1230, \"OWNER_OCC\": 4350, \"RENTER_OCC\": 8799 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.923762751339737, 38.850462579925107 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Takoma Park\", \"CLASS\": \"city\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"76650\", \"CAPITAL\": \"N\", \"AREALAND\": 2.122000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 17299, \"WHITE\": 8440, \"BLACK\": 5876, \"AMERI_ES\": 76, \"ASIAN\": 754, \"HAWN_PI\": 6, \"OTHER\": 1287, \"MULT_RACE\": 860, \"HISPANIC\": 2494, \"MALES\": 8149, \"FEMALES\": 9150, \"AGE_UNDER5\": 1237, \"AGE_5_17\": 2838, \"AGE_18_21\": 867, \"AGE_22_29\": 1912, \"AGE_30_39\": 3308, \"AGE_40_49\": 3177, \"AGE_50_64\": 2431, \"AGE_65_UP\": 1529, \"MED_AGE\": 35.600000, \"MED_AGE_M\": 35.000000, \"MED_AGE_F\": 36.300000, \"HOUSEHOLDS\": 6893, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 947, \"HSEHLD_1_F\": 1272, \"MARHH_CHD\": 1418, \"MARHH_NO_C\": 1236, \"MHH_CHILD\": 141, \"FHH_CHILD\": 562, \"FAMILIES\": 3948, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 7187, \"VACANT\": 294, \"OWNER_OCC\": 3128, \"RENTER_OCC\": 3765 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.002360975473778, 38.980060527689908 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Towson\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"78425\", \"CAPITAL\": \"N\", \"AREALAND\": 14.041000, \"AREAWATER\": 0.150000, \"POP_CL\": 7, \"POP2000\": 51793, \"WHITE\": 45028, \"BLACK\": 3901, \"AMERI_ES\": 52, \"ASIAN\": 1936, \"HAWN_PI\": 11, \"OTHER\": 262, \"MULT_RACE\": 603, \"HISPANIC\": 985, \"MALES\": 23459, \"FEMALES\": 28334, \"AGE_UNDER5\": 2451, \"AGE_5_17\": 6563, \"AGE_18_21\": 6585, \"AGE_22_29\": 5257, \"AGE_30_39\": 6680, \"AGE_40_49\": 6702, \"AGE_50_64\": 7133, \"AGE_65_UP\": 10422, \"MED_AGE\": 37.600000, \"MED_AGE_M\": 35.400000, \"MED_AGE_F\": 39.900000, \"HOUSEHOLDS\": 21063, \"AVE_HH_SZ\": 2.160000, \"HSEHLD_1_M\": 2354, \"HSEHLD_1_F\": 5318, \"MARHH_CHD\": 3849, \"MARHH_NO_C\": 5334, \"MHH_CHILD\": 201, \"FHH_CHILD\": 809, \"FAMILIES\": 11326, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 21997, \"VACANT\": 934, \"OWNER_OCC\": 12571, \"RENTER_OCC\": 8492 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.609587952626171, 39.392980814901136 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Waldorf\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"81175\", \"CAPITAL\": \"N\", \"AREALAND\": 12.779000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 22312, \"WHITE\": 13634, \"BLACK\": 7136, \"AMERI_ES\": 121, \"ASIAN\": 578, \"HAWN_PI\": 5, \"OTHER\": 196, \"MULT_RACE\": 642, \"HISPANIC\": 650, \"MALES\": 10834, \"FEMALES\": 11478, \"AGE_UNDER5\": 1695, \"AGE_5_17\": 5123, \"AGE_18_21\": 967, \"AGE_22_29\": 2212, \"AGE_30_39\": 4583, \"AGE_40_49\": 3687, \"AGE_50_64\": 2966, \"AGE_65_UP\": 1079, \"MED_AGE\": 32.800000, \"MED_AGE_M\": 32.500000, \"MED_AGE_F\": 33.100000, \"HOUSEHOLDS\": 7603, \"AVE_HH_SZ\": 2.930000, \"HSEHLD_1_M\": 552, \"HSEHLD_1_F\": 572, \"MARHH_CHD\": 2460, \"MARHH_NO_C\": 1994, \"MHH_CHILD\": 213, \"FHH_CHILD\": 788, \"FAMILIES\": 5990, \"AVE_FAM_SZ\": 3.240000, \"HSE_UNITS\": 7827, \"VACANT\": 224, \"OWNER_OCC\": 5884, \"RENTER_OCC\": 1719 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.898237770230267, 38.646173598550646 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Walker Mill\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"81250\", \"CAPITAL\": \"N\", \"AREALAND\": 3.152000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11104, \"WHITE\": 274, \"BLACK\": 10548, \"AMERI_ES\": 41, \"ASIAN\": 29, \"HAWN_PI\": 1, \"OTHER\": 25, \"MULT_RACE\": 186, \"HISPANIC\": 100, \"MALES\": 4945, \"FEMALES\": 6159, \"AGE_UNDER5\": 848, \"AGE_5_17\": 2579, \"AGE_18_21\": 575, \"AGE_22_29\": 1210, \"AGE_30_39\": 1710, \"AGE_40_49\": 1496, \"AGE_50_64\": 1875, \"AGE_65_UP\": 811, \"MED_AGE\": 31.900000, \"MED_AGE_M\": 29.300000, \"MED_AGE_F\": 34.100000, \"HOUSEHOLDS\": 3976, \"AVE_HH_SZ\": 2.780000, \"HSEHLD_1_M\": 322, \"HSEHLD_1_F\": 500, \"MARHH_CHD\": 532, \"MARHH_NO_C\": 834, \"MHH_CHILD\": 108, \"FHH_CHILD\": 867, \"FAMILIES\": 2986, \"AVE_FAM_SZ\": 3.180000, \"HSE_UNITS\": 4219, \"VACANT\": 243, \"OWNER_OCC\": 2190, \"RENTER_OCC\": 1786 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.891424187165526, 38.870962601721658 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Westminster\", \"CLASS\": \"city\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"83100\", \"CAPITAL\": \"N\", \"AREALAND\": 5.711000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 16731, \"WHITE\": 15272, \"BLACK\": 919, \"AMERI_ES\": 38, \"ASIAN\": 201, \"HAWN_PI\": 6, \"OTHER\": 109, \"MULT_RACE\": 186, \"HISPANIC\": 297, \"MALES\": 7824, \"FEMALES\": 8907, \"AGE_UNDER5\": 1127, \"AGE_5_17\": 2906, \"AGE_18_21\": 1746, \"AGE_22_29\": 1875, \"AGE_30_39\": 2827, \"AGE_40_49\": 2157, \"AGE_50_64\": 1890, \"AGE_65_UP\": 2203, \"MED_AGE\": 32.700000, \"MED_AGE_M\": 30.900000, \"MED_AGE_F\": 34.500000, \"HOUSEHOLDS\": 6420, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 776, \"HSEHLD_1_F\": 1421, \"MARHH_CHD\": 1412, \"MARHH_NO_C\": 1315, \"MHH_CHILD\": 137, \"FHH_CHILD\": 534, \"FAMILIES\": 3763, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 6755, \"VACANT\": 335, \"OWNER_OCC\": 3416, \"RENTER_OCC\": 3004 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.000140843610296, 39.576551523349551 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wheaton-Glenmont\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"83837\", \"CAPITAL\": \"N\", \"AREALAND\": 10.238000, \"AREAWATER\": 0.005000, \"POP_CL\": 7, \"POP2000\": 57694, \"WHITE\": 28802, \"BLACK\": 10862, \"AMERI_ES\": 229, \"ASIAN\": 7018, \"HAWN_PI\": 35, \"OTHER\": 7648, \"MULT_RACE\": 3100, \"HISPANIC\": 14956, \"MALES\": 28209, \"FEMALES\": 29485, \"AGE_UNDER5\": 4151, \"AGE_5_17\": 10230, \"AGE_18_21\": 2645, \"AGE_22_29\": 6400, \"AGE_30_39\": 9794, \"AGE_40_49\": 9254, \"AGE_50_64\": 8429, \"AGE_65_UP\": 6791, \"MED_AGE\": 35.700000, \"MED_AGE_M\": 34.000000, \"MED_AGE_F\": 37.300000, \"HOUSEHOLDS\": 19596, \"AVE_HH_SZ\": 2.930000, \"HSEHLD_1_M\": 1629, \"HSEHLD_1_F\": 2692, \"MARHH_CHD\": 5034, \"MARHH_NO_C\": 5262, \"MHH_CHILD\": 369, \"FHH_CHILD\": 1341, \"FAMILIES\": 13981, \"AVE_FAM_SZ\": 3.390000, \"HSE_UNITS\": 20125, \"VACANT\": 529, \"OWNER_OCC\": 13338, \"RENTER_OCC\": 6258 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.059090403763477, 39.053658491868852 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"White Oak\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"84375\", \"CAPITAL\": \"N\", \"AREALAND\": 4.979000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 20973, \"WHITE\": 8509, \"BLACK\": 7771, \"AMERI_ES\": 70, \"ASIAN\": 2344, \"HAWN_PI\": 21, \"OTHER\": 1372, \"MULT_RACE\": 886, \"HISPANIC\": 2722, \"MALES\": 9844, \"FEMALES\": 11129, \"AGE_UNDER5\": 1487, \"AGE_5_17\": 3556, \"AGE_18_21\": 981, \"AGE_22_29\": 2871, \"AGE_30_39\": 3626, \"AGE_40_49\": 3196, \"AGE_50_64\": 2910, \"AGE_65_UP\": 2346, \"MED_AGE\": 34.100000, \"MED_AGE_M\": 33.000000, \"MED_AGE_F\": 35.100000, \"HOUSEHOLDS\": 7921, \"AVE_HH_SZ\": 2.630000, \"HSEHLD_1_M\": 788, \"HSEHLD_1_F\": 1197, \"MARHH_CHD\": 1675, \"MARHH_NO_C\": 1885, \"MHH_CHILD\": 165, \"FHH_CHILD\": 714, \"FAMILIES\": 5255, \"AVE_FAM_SZ\": 3.170000, \"HSE_UNITS\": 8139, \"VACANT\": 218, \"OWNER_OCC\": 3359, \"RENTER_OCC\": 4562 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.988293232592241, 39.042109536104647 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Woodlawn\", \"CLASS\": \"CDP\", \"ST\": \"MD\", \"STFIPS\": \"24\", \"PLACEFIP\": \"86475\", \"CAPITAL\": \"N\", \"AREALAND\": 9.599000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 36079, \"WHITE\": 13849, \"BLACK\": 18581, \"AMERI_ES\": 109, \"ASIAN\": 2243, \"HAWN_PI\": 18, \"OTHER\": 383, \"MULT_RACE\": 896, \"HISPANIC\": 849, \"MALES\": 16950, \"FEMALES\": 19129, \"AGE_UNDER5\": 2663, \"AGE_5_17\": 6978, \"AGE_18_21\": 1566, \"AGE_22_29\": 3605, \"AGE_30_39\": 6478, \"AGE_40_49\": 5747, \"AGE_50_64\": 5245, \"AGE_65_UP\": 3797, \"MED_AGE\": 35.200000, \"MED_AGE_M\": 34.000000, \"MED_AGE_F\": 36.000000, \"HOUSEHOLDS\": 13936, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 1581, \"HSEHLD_1_F\": 2209, \"MARHH_CHD\": 2947, \"MARHH_NO_C\": 3128, \"MHH_CHILD\": 311, \"FHH_CHILD\": 1448, \"FAMILIES\": 9287, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 14547, \"VACANT\": 611, \"OWNER_OCC\": 9400, \"RENTER_OCC\": 4536 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.737448923983322, 39.303695711303185 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Auburn\", \"CLASS\": \"city\", \"ST\": \"ME\", \"STFIPS\": \"23\", \"PLACEFIP\": \"02060\", \"CAPITAL\": \"N\", \"AREALAND\": 59.784000, \"AREAWATER\": 6.012000, \"POP_CL\": 6, \"POP2000\": 23203, \"WHITE\": 22517, \"BLACK\": 137, \"AMERI_ES\": 69, \"ASIAN\": 137, \"HAWN_PI\": 12, \"OTHER\": 24, \"MULT_RACE\": 307, \"HISPANIC\": 169, \"MALES\": 11020, \"FEMALES\": 12183, \"AGE_UNDER5\": 1299, \"AGE_5_17\": 4086, \"AGE_18_21\": 1150, \"AGE_22_29\": 2164, \"AGE_30_39\": 3514, \"AGE_40_49\": 3588, \"AGE_50_64\": 3435, \"AGE_65_UP\": 3967, \"MED_AGE\": 38.300000, \"MED_AGE_M\": 36.600000, \"MED_AGE_F\": 40.200000, \"HOUSEHOLDS\": 9764, \"AVE_HH_SZ\": 2.280000, \"HSEHLD_1_M\": 1287, \"HSEHLD_1_F\": 1835, \"MARHH_CHD\": 1844, \"MARHH_NO_C\": 2536, \"MHH_CHILD\": 237, \"FHH_CHILD\": 794, \"FAMILIES\": 5903, \"AVE_FAM_SZ\": 2.880000, \"HSE_UNITS\": 10608, \"VACANT\": 844, \"OWNER_OCC\": 5587, \"RENTER_OCC\": 4177 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -70.242254761768663, 44.089235321820311 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Augusta\", \"CLASS\": \"city\", \"ST\": \"ME\", \"STFIPS\": \"23\", \"PLACEFIP\": \"02100\", \"CAPITAL\": \"Y\", \"AREALAND\": 55.381000, \"AREAWATER\": 2.901000, \"POP_CL\": 6, \"POP2000\": 18560, \"WHITE\": 17856, \"BLACK\": 93, \"AMERI_ES\": 89, \"ASIAN\": 250, \"HAWN_PI\": 2, \"OTHER\": 29, \"MULT_RACE\": 241, \"HISPANIC\": 160, \"MALES\": 8785, \"FEMALES\": 9775, \"AGE_UNDER5\": 928, \"AGE_5_17\": 2875, \"AGE_18_21\": 932, \"AGE_22_29\": 1852, \"AGE_30_39\": 2614, \"AGE_40_49\": 2875, \"AGE_50_64\": 3200, \"AGE_65_UP\": 3284, \"MED_AGE\": 40.300000, \"MED_AGE_M\": 38.300000, \"MED_AGE_F\": 42.100000, \"HOUSEHOLDS\": 8565, \"AVE_HH_SZ\": 2.100000, \"HSEHLD_1_M\": 1339, \"HSEHLD_1_F\": 1938, \"MARHH_CHD\": 1234, \"MARHH_NO_C\": 2118, \"MHH_CHILD\": 207, \"FHH_CHILD\": 643, \"FAMILIES\": 4610, \"AVE_FAM_SZ\": 2.770000, \"HSE_UNITS\": 9480, \"VACANT\": 915, \"OWNER_OCC\": 4665, \"RENTER_OCC\": 3900 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -69.766275318494223, 44.323614401440608 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bangor\", \"CLASS\": \"city\", \"ST\": \"ME\", \"STFIPS\": \"23\", \"PLACEFIP\": \"02795\", \"CAPITAL\": \"N\", \"AREALAND\": 34.446000, \"AREAWATER\": 0.297000, \"POP_CL\": 6, \"POP2000\": 31473, \"WHITE\": 29888, \"BLACK\": 320, \"AMERI_ES\": 309, \"ASIAN\": 364, \"HAWN_PI\": 18, \"OTHER\": 123, \"MULT_RACE\": 451, \"HISPANIC\": 329, \"MALES\": 14863, \"FEMALES\": 16610, \"AGE_UNDER5\": 1805, \"AGE_5_17\": 4884, \"AGE_18_21\": 2309, \"AGE_22_29\": 3976, \"AGE_30_39\": 4701, \"AGE_40_49\": 4751, \"AGE_50_64\": 4616, \"AGE_65_UP\": 4431, \"MED_AGE\": 36.100000, \"MED_AGE_M\": 34.200000, \"MED_AGE_F\": 37.800000, \"HOUSEHOLDS\": 13713, \"AVE_HH_SZ\": 2.120000, \"HSEHLD_1_M\": 2052, \"HSEHLD_1_F\": 3101, \"MARHH_CHD\": 2084, \"MARHH_NO_C\": 2858, \"MHH_CHILD\": 295, \"FHH_CHILD\": 1198, \"FAMILIES\": 7179, \"AVE_FAM_SZ\": 2.810000, \"HSE_UNITS\": 14587, \"VACANT\": 874, \"OWNER_OCC\": 6508, \"RENTER_OCC\": 7205 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -68.784576181440301, 44.810998558345929 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Biddeford\", \"CLASS\": \"city\", \"ST\": \"ME\", \"STFIPS\": \"23\", \"PLACEFIP\": \"04860\", \"CAPITAL\": \"N\", \"AREALAND\": 30.012000, \"AREAWATER\": 4.529000, \"POP_CL\": 6, \"POP2000\": 20942, \"WHITE\": 20240, \"BLACK\": 133, \"AMERI_ES\": 83, \"ASIAN\": 208, \"HAWN_PI\": 6, \"OTHER\": 37, \"MULT_RACE\": 235, \"HISPANIC\": 137, \"MALES\": 9817, \"FEMALES\": 11125, \"AGE_UNDER5\": 1280, \"AGE_5_17\": 3343, \"AGE_18_21\": 1392, \"AGE_22_29\": 2470, \"AGE_30_39\": 3117, \"AGE_40_49\": 2958, \"AGE_50_64\": 3128, \"AGE_65_UP\": 3254, \"MED_AGE\": 36.400000, \"MED_AGE_M\": 35.200000, \"MED_AGE_F\": 37.500000, \"HOUSEHOLDS\": 8636, \"AVE_HH_SZ\": 2.320000, \"HSEHLD_1_M\": 1078, \"HSEHLD_1_F\": 1484, \"MARHH_CHD\": 1518, \"MARHH_NO_C\": 2318, \"MHH_CHILD\": 213, \"FHH_CHILD\": 719, \"FAMILIES\": 5262, \"AVE_FAM_SZ\": 2.880000, \"HSE_UNITS\": 9631, \"VACANT\": 995, \"OWNER_OCC\": 4193, \"RENTER_OCC\": 4443 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -70.446881933033154, 43.47416660418213 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Brunswick\", \"CLASS\": \"CDP\", \"ST\": \"ME\", \"STFIPS\": \"23\", \"PLACEFIP\": \"08395\", \"CAPITAL\": \"N\", \"AREALAND\": 12.579000, \"AREAWATER\": 1.458000, \"POP_CL\": 6, \"POP2000\": 14816, \"WHITE\": 14104, \"BLACK\": 147, \"AMERI_ES\": 24, \"ASIAN\": 282, \"HAWN_PI\": 6, \"OTHER\": 66, \"MULT_RACE\": 187, \"HISPANIC\": 194, \"MALES\": 7007, \"FEMALES\": 7809, \"AGE_UNDER5\": 807, \"AGE_5_17\": 2373, \"AGE_18_21\": 1747, \"AGE_22_29\": 1328, \"AGE_30_39\": 1968, \"AGE_40_49\": 1957, \"AGE_50_64\": 2045, \"AGE_65_UP\": 2591, \"MED_AGE\": 36.300000, \"MED_AGE_M\": 34.000000, \"MED_AGE_F\": 38.400000, \"HOUSEHOLDS\": 5880, \"AVE_HH_SZ\": 2.240000, \"HSEHLD_1_M\": 715, \"HSEHLD_1_F\": 1358, \"MARHH_CHD\": 1197, \"MARHH_NO_C\": 1564, \"MHH_CHILD\": 118, \"FHH_CHILD\": 339, \"FAMILIES\": 3433, \"AVE_FAM_SZ\": 2.920000, \"HSE_UNITS\": 6192, \"VACANT\": 312, \"OWNER_OCC\": 3546, \"RENTER_OCC\": 2334 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -69.954505899829741, 43.913106848504484 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lewiston\", \"CLASS\": \"city\", \"ST\": \"ME\", \"STFIPS\": \"23\", \"PLACEFIP\": \"38740\", \"CAPITAL\": \"N\", \"AREALAND\": 34.088000, \"AREAWATER\": 1.100000, \"POP_CL\": 6, \"POP2000\": 35690, \"WHITE\": 34172, \"BLACK\": 383, \"AMERI_ES\": 100, \"ASIAN\": 301, \"HAWN_PI\": 11, \"OTHER\": 130, \"MULT_RACE\": 593, \"HISPANIC\": 448, \"MALES\": 16996, \"FEMALES\": 18694, \"AGE_UNDER5\": 1983, \"AGE_5_17\": 5410, \"AGE_18_21\": 2934, \"AGE_22_29\": 3764, \"AGE_30_39\": 4981, \"AGE_40_49\": 4658, \"AGE_50_64\": 5618, \"AGE_65_UP\": 6342, \"MED_AGE\": 37.600000, \"MED_AGE_M\": 35.900000, \"MED_AGE_F\": 39.400000, \"HOUSEHOLDS\": 15290, \"AVE_HH_SZ\": 2.170000, \"HSEHLD_1_M\": 2353, \"HSEHLD_1_F\": 3142, \"MARHH_CHD\": 2248, \"MARHH_NO_C\": 4007, \"MHH_CHILD\": 346, \"FHH_CHILD\": 1283, \"FAMILIES\": 8658, \"AVE_FAM_SZ\": 2.810000, \"HSE_UNITS\": 16470, \"VACANT\": 1180, \"OWNER_OCC\": 7215, \"RENTER_OCC\": 8075 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -70.19325156773813, 44.097536897986828 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Portland\", \"CLASS\": \"city\", \"ST\": \"ME\", \"STFIPS\": \"23\", \"PLACEFIP\": \"60545\", \"CAPITAL\": \"N\", \"AREALAND\": 21.210000, \"AREAWATER\": 31.359000, \"POP_CL\": 7, \"POP2000\": 64249, \"WHITE\": 58638, \"BLACK\": 1665, \"AMERI_ES\": 302, \"ASIAN\": 1982, \"HAWN_PI\": 36, \"OTHER\": 431, \"MULT_RACE\": 1195, \"HISPANIC\": 974, \"MALES\": 30753, \"FEMALES\": 33496, \"AGE_UNDER5\": 3305, \"AGE_5_17\": 8767, \"AGE_18_21\": 3353, \"AGE_22_29\": 9943, \"AGE_30_39\": 11560, \"AGE_40_49\": 9975, \"AGE_50_64\": 8437, \"AGE_65_UP\": 8909, \"MED_AGE\": 35.700000, \"MED_AGE_M\": 34.300000, \"MED_AGE_F\": 37.100000, \"HOUSEHOLDS\": 29714, \"AVE_HH_SZ\": 2.080000, \"HSEHLD_1_M\": 4967, \"HSEHLD_1_F\": 6952, \"MARHH_CHD\": 3940, \"MARHH_NO_C\": 5605, \"MHH_CHILD\": 444, \"FHH_CHILD\": 1971, \"FAMILIES\": 13547, \"AVE_FAM_SZ\": 2.890000, \"HSE_UNITS\": 31862, \"VACANT\": 2148, \"OWNER_OCC\": 12617, \"RENTER_OCC\": 17097 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -70.269876583452756, 43.66517705056323 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Saco\", \"CLASS\": \"city\", \"ST\": \"ME\", \"STFIPS\": \"23\", \"PLACEFIP\": \"64675\", \"CAPITAL\": \"N\", \"AREALAND\": 38.475000, \"AREAWATER\": 0.871000, \"POP_CL\": 6, \"POP2000\": 16822, \"WHITE\": 16470, \"BLACK\": 54, \"AMERI_ES\": 25, \"ASIAN\": 85, \"HAWN_PI\": 15, \"OTHER\": 17, \"MULT_RACE\": 156, \"HISPANIC\": 97, \"MALES\": 8015, \"FEMALES\": 8807, \"AGE_UNDER5\": 1059, \"AGE_5_17\": 3142, \"AGE_18_21\": 596, \"AGE_22_29\": 1626, \"AGE_30_39\": 2840, \"AGE_40_49\": 2697, \"AGE_50_64\": 2520, \"AGE_65_UP\": 2342, \"MED_AGE\": 37.200000, \"MED_AGE_M\": 36.100000, \"MED_AGE_F\": 38.100000, \"HOUSEHOLDS\": 6801, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 621, \"HSEHLD_1_F\": 1095, \"MARHH_CHD\": 1594, \"MARHH_NO_C\": 2032, \"MHH_CHILD\": 164, \"FHH_CHILD\": 495, \"FAMILIES\": 4594, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 7424, \"VACANT\": 623, \"OWNER_OCC\": 4500, \"RENTER_OCC\": 2301 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -70.445646704715742, 43.510480671921783 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sanford\", \"CLASS\": \"CDP\", \"ST\": \"ME\", \"STFIPS\": \"23\", \"PLACEFIP\": \"65725\", \"CAPITAL\": \"N\", \"AREALAND\": 5.123000, \"AREAWATER\": 0.083000, \"POP_CL\": 6, \"POP2000\": 10133, \"WHITE\": 9685, \"BLACK\": 60, \"AMERI_ES\": 35, \"ASIAN\": 195, \"HAWN_PI\": 1, \"OTHER\": 40, \"MULT_RACE\": 117, \"HISPANIC\": 130, \"MALES\": 4803, \"FEMALES\": 5330, \"AGE_UNDER5\": 681, \"AGE_5_17\": 2026, \"AGE_18_21\": 520, \"AGE_22_29\": 991, \"AGE_30_39\": 1429, \"AGE_40_49\": 1481, \"AGE_50_64\": 1361, \"AGE_65_UP\": 1644, \"MED_AGE\": 36.200000, \"MED_AGE_M\": 34.600000, \"MED_AGE_F\": 37.500000, \"HOUSEHOLDS\": 4120, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 539, \"HSEHLD_1_F\": 749, \"MARHH_CHD\": 735, \"MARHH_NO_C\": 989, \"MHH_CHILD\": 136, \"FHH_CHILD\": 447, \"FAMILIES\": 2544, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 4338, \"VACANT\": 218, \"OWNER_OCC\": 2166, \"RENTER_OCC\": 1954 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -70.77393113546448, 43.439971914536869 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"South Portland\", \"CLASS\": \"city\", \"ST\": \"ME\", \"STFIPS\": \"23\", \"PLACEFIP\": \"71990\", \"CAPITAL\": \"N\", \"AREALAND\": 11.994000, \"AREAWATER\": 2.311000, \"POP_CL\": 6, \"POP2000\": 23324, \"WHITE\": 22345, \"BLACK\": 146, \"AMERI_ES\": 78, \"ASIAN\": 370, \"HAWN_PI\": 6, \"OTHER\": 73, \"MULT_RACE\": 306, \"HISPANIC\": 263, \"MALES\": 11018, \"FEMALES\": 12306, \"AGE_UNDER5\": 1309, \"AGE_5_17\": 3894, \"AGE_18_21\": 1012, \"AGE_22_29\": 2407, \"AGE_30_39\": 3926, \"AGE_40_49\": 3753, \"AGE_50_64\": 3622, \"AGE_65_UP\": 3401, \"MED_AGE\": 37.900000, \"MED_AGE_M\": 35.800000, \"MED_AGE_F\": 39.600000, \"HOUSEHOLDS\": 10047, \"AVE_HH_SZ\": 2.270000, \"HSEHLD_1_M\": 1029, \"HSEHLD_1_F\": 2057, \"MARHH_CHD\": 1873, \"MARHH_NO_C\": 2661, \"MHH_CHILD\": 195, \"FHH_CHILD\": 705, \"FAMILIES\": 6043, \"AVE_FAM_SZ\": 2.850000, \"HSE_UNITS\": 10349, \"VACANT\": 302, \"OWNER_OCC\": 6467, \"RENTER_OCC\": 3580 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -70.273511965264547, 43.631609905293537 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Waterville\", \"CLASS\": \"city\", \"ST\": \"ME\", \"STFIPS\": \"23\", \"PLACEFIP\": \"80740\", \"CAPITAL\": \"N\", \"AREALAND\": 13.585000, \"AREAWATER\": 0.468000, \"POP_CL\": 6, \"POP2000\": 15605, \"WHITE\": 14951, \"BLACK\": 122, \"AMERI_ES\": 88, \"ASIAN\": 161, \"HAWN_PI\": 4, \"OTHER\": 66, \"MULT_RACE\": 213, \"HISPANIC\": 171, \"MALES\": 7169, \"FEMALES\": 8436, \"AGE_UNDER5\": 834, \"AGE_5_17\": 2241, \"AGE_18_21\": 2123, \"AGE_22_29\": 1611, \"AGE_30_39\": 1885, \"AGE_40_49\": 2006, \"AGE_50_64\": 2073, \"AGE_65_UP\": 2832, \"MED_AGE\": 35.600000, \"MED_AGE_M\": 32.800000, \"MED_AGE_F\": 38.200000, \"HOUSEHOLDS\": 6218, \"AVE_HH_SZ\": 2.130000, \"HSEHLD_1_M\": 898, \"HSEHLD_1_F\": 1500, \"MARHH_CHD\": 935, \"MARHH_NO_C\": 1442, \"MHH_CHILD\": 145, \"FHH_CHILD\": 553, \"FAMILIES\": 3371, \"AVE_FAM_SZ\": 2.840000, \"HSE_UNITS\": 6819, \"VACANT\": 601, \"OWNER_OCC\": 3052, \"RENTER_OCC\": 3166 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -69.646918154210994, 44.552135508848636 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Westbrook\", \"CLASS\": \"city\", \"ST\": \"ME\", \"STFIPS\": \"23\", \"PLACEFIP\": \"82105\", \"CAPITAL\": \"N\", \"AREALAND\": 16.868000, \"AREAWATER\": 0.196000, \"POP_CL\": 6, \"POP2000\": 16142, \"WHITE\": 15608, \"BLACK\": 142, \"AMERI_ES\": 43, \"ASIAN\": 132, \"HAWN_PI\": 5, \"OTHER\": 46, \"MULT_RACE\": 166, \"HISPANIC\": 144, \"MALES\": 7604, \"FEMALES\": 8538, \"AGE_UNDER5\": 992, \"AGE_5_17\": 2792, \"AGE_18_21\": 654, \"AGE_22_29\": 1615, \"AGE_30_39\": 2620, \"AGE_40_49\": 2428, \"AGE_50_64\": 2536, \"AGE_65_UP\": 2505, \"MED_AGE\": 37.800000, \"MED_AGE_M\": 36.300000, \"MED_AGE_F\": 39.400000, \"HOUSEHOLDS\": 6863, \"AVE_HH_SZ\": 2.330000, \"HSEHLD_1_M\": 743, \"HSEHLD_1_F\": 1342, \"MARHH_CHD\": 1298, \"MARHH_NO_C\": 1883, \"MHH_CHILD\": 139, \"FHH_CHILD\": 578, \"FAMILIES\": 4259, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 7089, \"VACANT\": 226, \"OWNER_OCC\": 4113, \"RENTER_OCC\": 2750 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -70.357877851059442, 43.685406392576589 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Adrian\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"00440\", \"CAPITAL\": \"N\", \"AREALAND\": 7.135000, \"AREAWATER\": 0.127000, \"POP_CL\": 6, \"POP2000\": 21574, \"WHITE\": 18223, \"BLACK\": 760, \"AMERI_ES\": 133, \"ASIAN\": 178, \"HAWN_PI\": 4, \"OTHER\": 1666, \"MULT_RACE\": 610, \"HISPANIC\": 3665, \"MALES\": 10040, \"FEMALES\": 11534, \"AGE_UNDER5\": 1607, \"AGE_5_17\": 3844, \"AGE_18_21\": 2194, \"AGE_22_29\": 2687, \"AGE_30_39\": 2603, \"AGE_40_49\": 2710, \"AGE_50_64\": 2728, \"AGE_65_UP\": 3201, \"MED_AGE\": 31.600000, \"MED_AGE_M\": 29.000000, \"MED_AGE_F\": 34.900000, \"HOUSEHOLDS\": 7908, \"AVE_HH_SZ\": 2.450000, \"HSEHLD_1_M\": 973, \"HSEHLD_1_F\": 1517, \"MARHH_CHD\": 1446, \"MARHH_NO_C\": 1777, \"MHH_CHILD\": 222, \"FHH_CHILD\": 838, \"FAMILIES\": 4859, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 8498, \"VACANT\": 590, \"OWNER_OCC\": 4458, \"RENTER_OCC\": 3450 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.037827094239375, 41.89652596603419 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Allendale\", \"CLASS\": \"CDP\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"01340\", \"CAPITAL\": \"N\", \"AREALAND\": 22.831000, \"AREAWATER\": 0.904000, \"POP_CL\": 6, \"POP2000\": 11555, \"WHITE\": 10771, \"BLACK\": 343, \"AMERI_ES\": 39, \"ASIAN\": 103, \"HAWN_PI\": 9, \"OTHER\": 167, \"MULT_RACE\": 123, \"HISPANIC\": 350, \"MALES\": 5387, \"FEMALES\": 6168, \"AGE_UNDER5\": 764, \"AGE_5_17\": 1629, \"AGE_18_21\": 4041, \"AGE_22_29\": 1640, \"AGE_30_39\": 1310, \"AGE_40_49\": 952, \"AGE_50_64\": 691, \"AGE_65_UP\": 528, \"MED_AGE\": 21.100000, \"MED_AGE_M\": 21.700000, \"MED_AGE_F\": 20.800000, \"HOUSEHOLDS\": 2864, \"AVE_HH_SZ\": 2.980000, \"HSEHLD_1_M\": 240, \"HSEHLD_1_F\": 222, \"MARHH_CHD\": 927, \"MARHH_NO_C\": 728, \"MHH_CHILD\": 49, \"FHH_CHILD\": 127, \"FAMILIES\": 1914, \"AVE_FAM_SZ\": 3.360000, \"HSE_UNITS\": 3016, \"VACANT\": 152, \"OWNER_OCC\": 2046, \"RENTER_OCC\": 818 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.944569009810039, 42.983189990746745 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Allen Park\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"01380\", \"CAPITAL\": \"N\", \"AREALAND\": 7.011000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 29376, \"WHITE\": 28083, \"BLACK\": 214, \"AMERI_ES\": 106, \"ASIAN\": 238, \"HAWN_PI\": 7, \"OTHER\": 354, \"MULT_RACE\": 374, \"HISPANIC\": 1389, \"MALES\": 13995, \"FEMALES\": 15381, \"AGE_UNDER5\": 1569, \"AGE_5_17\": 4940, \"AGE_18_21\": 1119, \"AGE_22_29\": 2406, \"AGE_30_39\": 4130, \"AGE_40_49\": 4794, \"AGE_50_64\": 4282, \"AGE_65_UP\": 6136, \"MED_AGE\": 41.000000, \"MED_AGE_M\": 39.200000, \"MED_AGE_F\": 42.800000, \"HOUSEHOLDS\": 11974, \"AVE_HH_SZ\": 2.430000, \"HSEHLD_1_M\": 1254, \"HSEHLD_1_F\": 2117, \"MARHH_CHD\": 2700, \"MARHH_NO_C\": 3891, \"MHH_CHILD\": 149, \"FHH_CHILD\": 438, \"FAMILIES\": 8202, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 12254, \"VACANT\": 280, \"OWNER_OCC\": 10526, \"RENTER_OCC\": 1448 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.21027722962242, 42.254787944796014 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Alpena\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"01740\", \"CAPITAL\": \"N\", \"AREALAND\": 8.380000, \"AREAWATER\": 0.697000, \"POP_CL\": 6, \"POP2000\": 11304, \"WHITE\": 11040, \"BLACK\": 47, \"AMERI_ES\": 49, \"ASIAN\": 54, \"HAWN_PI\": 1, \"OTHER\": 10, \"MULT_RACE\": 103, \"HISPANIC\": 67, \"MALES\": 5320, \"FEMALES\": 5984, \"AGE_UNDER5\": 644, \"AGE_5_17\": 1954, \"AGE_18_21\": 687, \"AGE_22_29\": 987, \"AGE_30_39\": 1437, \"AGE_40_49\": 1698, \"AGE_50_64\": 1683, \"AGE_65_UP\": 2214, \"MED_AGE\": 39.600000, \"MED_AGE_M\": 37.100000, \"MED_AGE_F\": 41.900000, \"HOUSEHOLDS\": 4874, \"AVE_HH_SZ\": 2.240000, \"HSEHLD_1_M\": 623, \"HSEHLD_1_F\": 1128, \"MARHH_CHD\": 855, \"MARHH_NO_C\": 1295, \"MHH_CHILD\": 102, \"FHH_CHILD\": 356, \"FAMILIES\": 2866, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 5200, \"VACANT\": 326, \"OWNER_OCC\": 3287, \"RENTER_OCC\": 1587 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.441255227830126, 45.064802944804647 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ann Arbor\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"03000\", \"CAPITAL\": \"N\", \"AREALAND\": 27.013000, \"AREAWATER\": 0.665000, \"POP_CL\": 8, \"POP2000\": 114024, \"WHITE\": 85151, \"BLACK\": 10070, \"AMERI_ES\": 332, \"ASIAN\": 13566, \"HAWN_PI\": 41, \"OTHER\": 1384, \"MULT_RACE\": 3480, \"HISPANIC\": 3814, \"MALES\": 56352, \"FEMALES\": 57672, \"AGE_UNDER5\": 5744, \"AGE_5_17\": 13365, \"AGE_18_21\": 20971, \"AGE_22_29\": 21163, \"AGE_30_39\": 16974, \"AGE_40_49\": 13966, \"AGE_50_64\": 12824, \"AGE_65_UP\": 9017, \"MED_AGE\": 28.100000, \"MED_AGE_M\": 27.400000, \"MED_AGE_F\": 29.000000, \"HOUSEHOLDS\": 45693, \"AVE_HH_SZ\": 2.220000, \"HSEHLD_1_M\": 7410, \"HSEHLD_1_F\": 8816, \"MARHH_CHD\": 8040, \"MARHH_NO_C\": 9248, \"MHH_CHILD\": 453, \"FHH_CHILD\": 2029, \"FAMILIES\": 21708, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 47218, \"VACANT\": 1525, \"OWNER_OCC\": 20685, \"RENTER_OCC\": 25008 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.739261134388315, 42.27448795869266 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Auburn Hills\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"04105\", \"CAPITAL\": \"N\", \"AREALAND\": 16.607000, \"AREAWATER\": 0.017000, \"POP_CL\": 6, \"POP2000\": 19837, \"WHITE\": 15061, \"BLACK\": 2623, \"AMERI_ES\": 64, \"ASIAN\": 1255, \"HAWN_PI\": 8, \"OTHER\": 309, \"MULT_RACE\": 517, \"HISPANIC\": 892, \"MALES\": 9831, \"FEMALES\": 10006, \"AGE_UNDER5\": 1439, \"AGE_5_17\": 2612, \"AGE_18_21\": 1906, \"AGE_22_29\": 3607, \"AGE_30_39\": 3746, \"AGE_40_49\": 2628, \"AGE_50_64\": 2451, \"AGE_65_UP\": 1448, \"MED_AGE\": 30.700000, \"MED_AGE_M\": 30.900000, \"MED_AGE_F\": 30.500000, \"HOUSEHOLDS\": 8064, \"AVE_HH_SZ\": 2.250000, \"HSEHLD_1_M\": 1354, \"HSEHLD_1_F\": 1315, \"MARHH_CHD\": 1537, \"MARHH_NO_C\": 1927, \"MHH_CHILD\": 132, \"FHH_CHILD\": 485, \"FAMILIES\": 4607, \"AVE_FAM_SZ\": 2.920000, \"HSE_UNITS\": 8822, \"VACANT\": 758, \"OWNER_OCC\": 4120, \"RENTER_OCC\": 3944 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.243079230058996, 42.661781944619513 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Battle Creek\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"05920\", \"CAPITAL\": \"N\", \"AREALAND\": 42.829000, \"AREAWATER\": 0.842000, \"POP_CL\": 7, \"POP2000\": 53364, \"WHITE\": 39838, \"BLACK\": 9501, \"AMERI_ES\": 411, \"ASIAN\": 1033, \"HAWN_PI\": 6, \"OTHER\": 1126, \"MULT_RACE\": 1449, \"HISPANIC\": 2475, \"MALES\": 25560, \"FEMALES\": 27804, \"AGE_UNDER5\": 3892, \"AGE_5_17\": 10643, \"AGE_18_21\": 2613, \"AGE_22_29\": 5958, \"AGE_30_39\": 7833, \"AGE_40_49\": 7649, \"AGE_50_64\": 7554, \"AGE_65_UP\": 7222, \"MED_AGE\": 34.700000, \"MED_AGE_M\": 33.000000, \"MED_AGE_F\": 36.200000, \"HOUSEHOLDS\": 21348, \"AVE_HH_SZ\": 2.430000, \"HSEHLD_1_M\": 2673, \"HSEHLD_1_F\": 4072, \"MARHH_CHD\": 3978, \"MARHH_NO_C\": 4969, \"MHH_CHILD\": 584, \"FHH_CHILD\": 2341, \"FAMILIES\": 13360, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 23525, \"VACANT\": 2177, \"OWNER_OCC\": 14044, \"RENTER_OCC\": 7304 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.204036024762587, 42.31214698406999 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bay City\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"06020\", \"CAPITAL\": \"N\", \"AREALAND\": 10.409000, \"AREAWATER\": 0.919000, \"POP_CL\": 6, \"POP2000\": 36817, \"WHITE\": 33575, \"BLACK\": 1003, \"AMERI_ES\": 272, \"ASIAN\": 195, \"HAWN_PI\": 3, \"OTHER\": 910, \"MULT_RACE\": 859, \"HISPANIC\": 2473, \"MALES\": 17732, \"FEMALES\": 19085, \"AGE_UNDER5\": 2566, \"AGE_5_17\": 6822, \"AGE_18_21\": 2017, \"AGE_22_29\": 4146, \"AGE_30_39\": 5534, \"AGE_40_49\": 5521, \"AGE_50_64\": 5004, \"AGE_65_UP\": 5207, \"MED_AGE\": 35.200000, \"MED_AGE_M\": 33.500000, \"MED_AGE_F\": 36.900000, \"HOUSEHOLDS\": 15208, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 2072, \"HSEHLD_1_F\": 2937, \"MARHH_CHD\": 2839, \"MARHH_NO_C\": 3610, \"MHH_CHILD\": 376, \"FHH_CHILD\": 1385, \"FAMILIES\": 9316, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 16259, \"VACANT\": 1051, \"OWNER_OCC\": 10574, \"RENTER_OCC\": 4634 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.889500128683764, 43.591972959754791 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Beecher\", \"CLASS\": \"CDP\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"06820\", \"CAPITAL\": \"N\", \"AREALAND\": 5.923000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12793, \"WHITE\": 3583, \"BLACK\": 8438, \"AMERI_ES\": 75, \"ASIAN\": 10, \"HAWN_PI\": 5, \"OTHER\": 246, \"MULT_RACE\": 436, \"HISPANIC\": 506, \"MALES\": 6008, \"FEMALES\": 6785, \"AGE_UNDER5\": 1133, \"AGE_5_17\": 3261, \"AGE_18_21\": 761, \"AGE_22_29\": 1381, \"AGE_30_39\": 1669, \"AGE_40_49\": 1612, \"AGE_50_64\": 1780, \"AGE_65_UP\": 1196, \"MED_AGE\": 29.300000, \"MED_AGE_M\": 27.100000, \"MED_AGE_F\": 31.100000, \"HOUSEHOLDS\": 4476, \"AVE_HH_SZ\": 2.850000, \"HSEHLD_1_M\": 482, \"HSEHLD_1_F\": 505, \"MARHH_CHD\": 579, \"MARHH_NO_C\": 880, \"MHH_CHILD\": 161, \"FHH_CHILD\": 1010, \"FAMILIES\": 3279, \"AVE_FAM_SZ\": 3.270000, \"HSE_UNITS\": 5002, \"VACANT\": 526, \"OWNER_OCC\": 2809, \"RENTER_OCC\": 1667 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.702627149910967, 43.087475956124635 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Benton Harbor\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"07520\", \"CAPITAL\": \"N\", \"AREALAND\": 4.392000, \"AREAWATER\": 0.084000, \"POP_CL\": 6, \"POP2000\": 11182, \"WHITE\": 613, \"BLACK\": 10332, \"AMERI_ES\": 17, \"ASIAN\": 15, \"HAWN_PI\": 4, \"OTHER\": 16, \"MULT_RACE\": 185, \"HISPANIC\": 65, \"MALES\": 5082, \"FEMALES\": 6100, \"AGE_UNDER5\": 1162, \"AGE_5_17\": 3264, \"AGE_18_21\": 677, \"AGE_22_29\": 1143, \"AGE_30_39\": 1455, \"AGE_40_49\": 1369, \"AGE_50_64\": 1194, \"AGE_65_UP\": 918, \"MED_AGE\": 25.400000, \"MED_AGE_M\": 22.200000, \"MED_AGE_F\": 27.700000, \"HOUSEHOLDS\": 3767, \"AVE_HH_SZ\": 2.910000, \"HSEHLD_1_M\": 470, \"HSEHLD_1_F\": 531, \"MARHH_CHD\": 362, \"MARHH_NO_C\": 423, \"MHH_CHILD\": 93, \"FHH_CHILD\": 1129, \"FAMILIES\": 2559, \"AVE_FAM_SZ\": 3.530000, \"HSE_UNITS\": 4492, \"VACANT\": 725, \"OWNER_OCC\": 1433, \"RENTER_OCC\": 2334 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.448226003984047, 42.1111399942329 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Berkley\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"07660\", \"CAPITAL\": \"N\", \"AREALAND\": 2.621000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 15531, \"WHITE\": 14923, \"BLACK\": 108, \"AMERI_ES\": 38, \"ASIAN\": 160, \"HAWN_PI\": 2, \"OTHER\": 62, \"MULT_RACE\": 238, \"HISPANIC\": 204, \"MALES\": 7490, \"FEMALES\": 8041, \"AGE_UNDER5\": 1038, \"AGE_5_17\": 2504, \"AGE_18_21\": 562, \"AGE_22_29\": 1870, \"AGE_30_39\": 3103, \"AGE_40_49\": 2581, \"AGE_50_64\": 1872, \"AGE_65_UP\": 2001, \"MED_AGE\": 35.500000, \"MED_AGE_M\": 33.500000, \"MED_AGE_F\": 37.400000, \"HOUSEHOLDS\": 6678, \"AVE_HH_SZ\": 2.320000, \"HSEHLD_1_M\": 810, \"HSEHLD_1_F\": 1358, \"MARHH_CHD\": 1486, \"MARHH_NO_C\": 1727, \"MHH_CHILD\": 76, \"FHH_CHILD\": 290, \"FAMILIES\": 4018, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 6833, \"VACANT\": 155, \"OWNER_OCC\": 5731, \"RENTER_OCC\": 947 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.185326240177005, 42.497034943380136 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Beverly Hills\", \"CLASS\": \"village\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"08160\", \"CAPITAL\": \"N\", \"AREALAND\": 4.009000, \"AREAWATER\": 0.027000, \"POP_CL\": 6, \"POP2000\": 10437, \"WHITE\": 9728, \"BLACK\": 318, \"AMERI_ES\": 16, \"ASIAN\": 193, \"HAWN_PI\": 2, \"OTHER\": 30, \"MULT_RACE\": 150, \"HISPANIC\": 147, \"MALES\": 4983, \"FEMALES\": 5454, \"AGE_UNDER5\": 620, \"AGE_5_17\": 1944, \"AGE_18_21\": 264, \"AGE_22_29\": 475, \"AGE_30_39\": 1446, \"AGE_40_49\": 1874, \"AGE_50_64\": 1820, \"AGE_65_UP\": 1994, \"MED_AGE\": 42.400000, \"MED_AGE_M\": 41.400000, \"MED_AGE_F\": 43.500000, \"HOUSEHOLDS\": 4085, \"AVE_HH_SZ\": 2.520000, \"HSEHLD_1_M\": 307, \"HSEHLD_1_F\": 659, \"MARHH_CHD\": 1192, \"MARHH_NO_C\": 1456, \"MHH_CHILD\": 36, \"FHH_CHILD\": 121, \"FAMILIES\": 2997, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 4196, \"VACANT\": 111, \"OWNER_OCC\": 3765, \"RENTER_OCC\": 320 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.233092229691792, 42.524634944704147 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Big Rapids\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"08300\", \"CAPITAL\": \"N\", \"AREALAND\": 4.245000, \"AREAWATER\": 0.148000, \"POP_CL\": 6, \"POP2000\": 10849, \"WHITE\": 9066, \"BLACK\": 1153, \"AMERI_ES\": 79, \"ASIAN\": 243, \"HAWN_PI\": 4, \"OTHER\": 54, \"MULT_RACE\": 250, \"HISPANIC\": 199, \"MALES\": 5668, \"FEMALES\": 5181, \"AGE_UNDER5\": 575, \"AGE_5_17\": 1077, \"AGE_18_21\": 3990, \"AGE_22_29\": 2299, \"AGE_30_39\": 747, \"AGE_40_49\": 699, \"AGE_50_64\": 660, \"AGE_65_UP\": 802, \"MED_AGE\": 21.800000, \"MED_AGE_M\": 21.600000, \"MED_AGE_F\": 22.000000, \"HOUSEHOLDS\": 3388, \"AVE_HH_SZ\": 2.260000, \"HSEHLD_1_M\": 467, \"HSEHLD_1_F\": 743, \"MARHH_CHD\": 426, \"MARHH_NO_C\": 473, \"MHH_CHILD\": 53, \"FHH_CHILD\": 386, \"FAMILIES\": 1474, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 3654, \"VACANT\": 266, \"OWNER_OCC\": 1223, \"RENTER_OCC\": 2165 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.481208020135014, 43.698918986215695 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Birmingham\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"08640\", \"CAPITAL\": \"N\", \"AREALAND\": 4.777000, \"AREAWATER\": 0.012000, \"POP_CL\": 6, \"POP2000\": 19291, \"WHITE\": 18545, \"BLACK\": 175, \"AMERI_ES\": 28, \"ASIAN\": 290, \"HAWN_PI\": 7, \"OTHER\": 36, \"MULT_RACE\": 210, \"HISPANIC\": 230, \"MALES\": 9218, \"FEMALES\": 10073, \"AGE_UNDER5\": 1331, \"AGE_5_17\": 2763, \"AGE_18_21\": 345, \"AGE_22_29\": 1832, \"AGE_30_39\": 3630, \"AGE_40_49\": 3226, \"AGE_50_64\": 3464, \"AGE_65_UP\": 2700, \"MED_AGE\": 39.300000, \"MED_AGE_M\": 38.000000, \"MED_AGE_F\": 40.500000, \"HOUSEHOLDS\": 9131, \"AVE_HH_SZ\": 2.110000, \"HSEHLD_1_M\": 1369, \"HSEHLD_1_F\": 2103, \"MARHH_CHD\": 1875, \"MARHH_NO_C\": 2472, \"MHH_CHILD\": 73, \"FHH_CHILD\": 311, \"FAMILIES\": 5078, \"AVE_FAM_SZ\": 2.850000, \"HSE_UNITS\": 9700, \"VACANT\": 569, \"OWNER_OCC\": 6923, \"RENTER_OCC\": 2208 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.215279234148554, 42.544783944127708 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bloomfield Township\", \"CLASS\": \"CDP\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"09190\", \"CAPITAL\": \"N\", \"AREALAND\": 24.938000, \"AREAWATER\": 1.093000, \"POP_CL\": 6, \"POP2000\": 43021, \"WHITE\": 37730, \"BLACK\": 1849, \"AMERI_ES\": 35, \"ASIAN\": 2783, \"HAWN_PI\": 23, \"OTHER\": 125, \"MULT_RACE\": 476, \"HISPANIC\": 595, \"MALES\": 20860, \"FEMALES\": 22161, \"AGE_UNDER5\": 2126, \"AGE_5_17\": 8116, \"AGE_18_21\": 1137, \"AGE_22_29\": 1877, \"AGE_30_39\": 4509, \"AGE_40_49\": 7567, \"AGE_50_64\": 10030, \"AGE_65_UP\": 7659, \"MED_AGE\": 45.200000, \"MED_AGE_M\": 44.800000, \"MED_AGE_F\": 45.500000, \"HOUSEHOLDS\": 16803, \"AVE_HH_SZ\": 2.530000, \"HSEHLD_1_M\": 1333, \"HSEHLD_1_F\": 2296, \"MARHH_CHD\": 4661, \"MARHH_NO_C\": 6775, \"MHH_CHILD\": 113, \"FHH_CHILD\": 457, \"FAMILIES\": 12704, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 17454, \"VACANT\": 651, \"OWNER_OCC\": 15173, \"RENTER_OCC\": 1630 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.26698322309943, 42.576332945545715 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Burton\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"12060\", \"CAPITAL\": \"N\", \"AREALAND\": 23.472000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 30308, \"WHITE\": 27910, \"BLACK\": 1075, \"AMERI_ES\": 230, \"ASIAN\": 224, \"HAWN_PI\": 8, \"OTHER\": 244, \"MULT_RACE\": 617, \"HISPANIC\": 705, \"MALES\": 14832, \"FEMALES\": 15476, \"AGE_UNDER5\": 2227, \"AGE_5_17\": 6080, \"AGE_18_21\": 1448, \"AGE_22_29\": 3270, \"AGE_30_39\": 4976, \"AGE_40_49\": 4667, \"AGE_50_64\": 4260, \"AGE_65_UP\": 3380, \"MED_AGE\": 34.600000, \"MED_AGE_M\": 33.600000, \"MED_AGE_F\": 35.500000, \"HOUSEHOLDS\": 11699, \"AVE_HH_SZ\": 2.580000, \"HSEHLD_1_M\": 1350, \"HSEHLD_1_F\": 1610, \"MARHH_CHD\": 2786, \"MARHH_NO_C\": 3275, \"MHH_CHILD\": 357, \"FHH_CHILD\": 954, \"FAMILIES\": 8164, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 12348, \"VACANT\": 649, \"OWNER_OCC\": 9447, \"RENTER_OCC\": 2252 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.635402159365682, 42.991026954613524 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cadillac\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"12320\", \"CAPITAL\": \"N\", \"AREALAND\": 6.821000, \"AREAWATER\": 1.780000, \"POP_CL\": 6, \"POP2000\": 10000, \"WHITE\": 9655, \"BLACK\": 21, \"AMERI_ES\": 92, \"ASIAN\": 63, \"HAWN_PI\": 3, \"OTHER\": 28, \"MULT_RACE\": 138, \"HISPANIC\": 118, \"MALES\": 4774, \"FEMALES\": 5226, \"AGE_UNDER5\": 672, \"AGE_5_17\": 1952, \"AGE_18_21\": 586, \"AGE_22_29\": 1029, \"AGE_30_39\": 1417, \"AGE_40_49\": 1338, \"AGE_50_64\": 1338, \"AGE_65_UP\": 1668, \"MED_AGE\": 35.600000, \"MED_AGE_M\": 32.400000, \"MED_AGE_F\": 38.500000, \"HOUSEHOLDS\": 4118, \"AVE_HH_SZ\": 2.370000, \"HSEHLD_1_M\": 461, \"HSEHLD_1_F\": 850, \"MARHH_CHD\": 796, \"MARHH_NO_C\": 1011, \"MHH_CHILD\": 137, \"FHH_CHILD\": 391, \"FAMILIES\": 2578, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 4466, \"VACANT\": 348, \"OWNER_OCC\": 2662, \"RENTER_OCC\": 1456 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.413696023258041, 44.250961985161787 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Canton\", \"CLASS\": \"CDP\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"13110\", \"CAPITAL\": \"N\", \"AREALAND\": 35.995000, \"AREAWATER\": 0.004000, \"POP_CL\": 7, \"POP2000\": 76366, \"WHITE\": 64045, \"BLACK\": 3466, \"AMERI_ES\": 224, \"ASIAN\": 6664, \"HAWN_PI\": 17, \"OTHER\": 489, \"MULT_RACE\": 1461, \"HISPANIC\": 1788, \"MALES\": 37800, \"FEMALES\": 38566, \"AGE_UNDER5\": 6715, \"AGE_5_17\": 15455, \"AGE_18_21\": 3492, \"AGE_22_29\": 7943, \"AGE_30_39\": 14557, \"AGE_40_49\": 12731, \"AGE_50_64\": 10942, \"AGE_65_UP\": 4531, \"MED_AGE\": 33.400000, \"MED_AGE_M\": 33.100000, \"MED_AGE_F\": 33.600000, \"HOUSEHOLDS\": 27490, \"AVE_HH_SZ\": 2.770000, \"HSEHLD_1_M\": 2709, \"HSEHLD_1_F\": 2913, \"MARHH_CHD\": 9672, \"MARHH_NO_C\": 7749, \"MHH_CHILD\": 397, \"FHH_CHILD\": 1467, \"FAMILIES\": 20561, \"AVE_FAM_SZ\": 3.260000, \"HSE_UNITS\": 28430, \"VACANT\": 940, \"OWNER_OCC\": 21737, \"RENTER_OCC\": 5753 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.475053177085456, 42.312537951972359 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Clawson\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"16160\", \"CAPITAL\": \"N\", \"AREALAND\": 2.200000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12732, \"WHITE\": 12235, \"BLACK\": 102, \"AMERI_ES\": 43, \"ASIAN\": 168, \"HAWN_PI\": 0, \"OTHER\": 32, \"MULT_RACE\": 152, \"HISPANIC\": 145, \"MALES\": 6168, \"FEMALES\": 6564, \"AGE_UNDER5\": 694, \"AGE_5_17\": 1927, \"AGE_18_21\": 518, \"AGE_22_29\": 1528, \"AGE_30_39\": 2189, \"AGE_40_49\": 2110, \"AGE_50_64\": 1830, \"AGE_65_UP\": 1936, \"MED_AGE\": 37.700000, \"MED_AGE_M\": 35.800000, \"MED_AGE_F\": 39.900000, \"HOUSEHOLDS\": 5572, \"AVE_HH_SZ\": 2.260000, \"HSEHLD_1_M\": 810, \"HSEHLD_1_F\": 1151, \"MARHH_CHD\": 1126, \"MARHH_NO_C\": 1482, \"MHH_CHILD\": 59, \"FHH_CHILD\": 215, \"FAMILIES\": 3259, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 5676, \"VACANT\": 104, \"OWNER_OCC\": 4186, \"RENTER_OCC\": 1386 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.151128249145117, 42.535533942252663 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Clinton\", \"CLASS\": \"CDP\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"16510\", \"CAPITAL\": \"N\", \"AREALAND\": 28.194000, \"AREAWATER\": 0.026000, \"POP_CL\": 7, \"POP2000\": 95648, \"WHITE\": 87151, \"BLACK\": 4461, \"AMERI_ES\": 276, \"ASIAN\": 1605, \"HAWN_PI\": 14, \"OTHER\": 391, \"MULT_RACE\": 1750, \"HISPANIC\": 1664, \"MALES\": 45939, \"FEMALES\": 49709, \"AGE_UNDER5\": 5797, \"AGE_5_17\": 15585, \"AGE_18_21\": 4663, \"AGE_22_29\": 11372, \"AGE_30_39\": 14438, \"AGE_40_49\": 14822, \"AGE_50_64\": 15303, \"AGE_65_UP\": 13668, \"MED_AGE\": 37.300000, \"MED_AGE_M\": 35.500000, \"MED_AGE_F\": 38.900000, \"HOUSEHOLDS\": 40299, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 4978, \"HSEHLD_1_F\": 7429, \"MARHH_CHD\": 8254, \"MARHH_NO_C\": 11390, \"MHH_CHILD\": 680, \"FHH_CHILD\": 2379, \"FAMILIES\": 25556, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 41803, \"VACANT\": 1504, \"OWNER_OCC\": 27997, \"RENTER_OCC\": 12302 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.917053313327926, 42.580233934831348 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Coldwater\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"17020\", \"CAPITAL\": \"N\", \"AREALAND\": 8.126000, \"AREAWATER\": 0.221000, \"POP_CL\": 6, \"POP2000\": 12697, \"WHITE\": 10837, \"BLACK\": 1069, \"AMERI_ES\": 95, \"ASIAN\": 117, \"HAWN_PI\": 4, \"OTHER\": 193, \"MULT_RACE\": 382, \"HISPANIC\": 574, \"MALES\": 6395, \"FEMALES\": 6302, \"AGE_UNDER5\": 747, \"AGE_5_17\": 2094, \"AGE_18_21\": 670, \"AGE_22_29\": 1538, \"AGE_30_39\": 2312, \"AGE_40_49\": 2090, \"AGE_50_64\": 1653, \"AGE_65_UP\": 1593, \"MED_AGE\": 35.800000, \"MED_AGE_M\": 34.900000, \"MED_AGE_F\": 36.700000, \"HOUSEHOLDS\": 4058, \"AVE_HH_SZ\": 2.490000, \"HSEHLD_1_M\": 478, \"HSEHLD_1_F\": 818, \"MARHH_CHD\": 866, \"MARHH_NO_C\": 905, \"MHH_CHILD\": 120, \"FHH_CHILD\": 351, \"FAMILIES\": 2518, \"AVE_FAM_SZ\": 3.110000, \"HSE_UNITS\": 4370, \"VACANT\": 312, \"OWNER_OCC\": 2717, \"RENTER_OCC\": 1341 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.002533030657816, 41.942793981918115 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Comstock Park\", \"CLASS\": \"CDP\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"17700\", \"CAPITAL\": \"N\", \"AREALAND\": 3.903000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10674, \"WHITE\": 9318, \"BLACK\": 417, \"AMERI_ES\": 82, \"ASIAN\": 205, \"HAWN_PI\": 6, \"OTHER\": 355, \"MULT_RACE\": 291, \"HISPANIC\": 771, \"MALES\": 5386, \"FEMALES\": 5288, \"AGE_UNDER5\": 861, \"AGE_5_17\": 1675, \"AGE_18_21\": 1201, \"AGE_22_29\": 2153, \"AGE_30_39\": 1568, \"AGE_40_49\": 1211, \"AGE_50_64\": 1190, \"AGE_65_UP\": 815, \"MED_AGE\": 27.400000, \"MED_AGE_M\": 27.100000, \"MED_AGE_F\": 27.900000, \"HOUSEHOLDS\": 4441, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 601, \"HSEHLD_1_F\": 610, \"MARHH_CHD\": 829, \"MARHH_NO_C\": 927, \"MHH_CHILD\": 129, \"FHH_CHILD\": 354, \"FAMILIES\": 2512, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 4654, \"VACANT\": 213, \"OWNER_OCC\": 1917, \"RENTER_OCC\": 2524 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.676731014396381, 43.042324988488559 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cutlerville\", \"CLASS\": \"CDP\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"19500\", \"CAPITAL\": \"N\", \"AREALAND\": 5.981000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 15114, \"WHITE\": 13441, \"BLACK\": 696, \"AMERI_ES\": 88, \"ASIAN\": 248, \"HAWN_PI\": 3, \"OTHER\": 296, \"MULT_RACE\": 342, \"HISPANIC\": 679, \"MALES\": 7472, \"FEMALES\": 7642, \"AGE_UNDER5\": 1231, \"AGE_5_17\": 2911, \"AGE_18_21\": 774, \"AGE_22_29\": 2252, \"AGE_30_39\": 2455, \"AGE_40_49\": 1973, \"AGE_50_64\": 1931, \"AGE_65_UP\": 1587, \"MED_AGE\": 31.500000, \"MED_AGE_M\": 30.500000, \"MED_AGE_F\": 32.700000, \"HOUSEHOLDS\": 5975, \"AVE_HH_SZ\": 2.490000, \"HSEHLD_1_M\": 738, \"HSEHLD_1_F\": 790, \"MARHH_CHD\": 1274, \"MARHH_NO_C\": 1580, \"MHH_CHILD\": 152, \"FHH_CHILD\": 560, \"FAMILIES\": 3910, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 6253, \"VACANT\": 278, \"OWNER_OCC\": 4211, \"RENTER_OCC\": 1764 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.665585014265261, 42.837677988494114 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Dearborn\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"21000\", \"CAPITAL\": \"N\", \"AREALAND\": 24.363000, \"AREAWATER\": 0.088000, \"POP_CL\": 7, \"POP2000\": 97775, \"WHITE\": 84931, \"BLACK\": 1248, \"AMERI_ES\": 258, \"ASIAN\": 1441, \"HAWN_PI\": 14, \"OTHER\": 710, \"MULT_RACE\": 9173, \"HISPANIC\": 2931, \"MALES\": 48639, \"FEMALES\": 49136, \"AGE_UNDER5\": 8086, \"AGE_5_17\": 19123, \"AGE_18_21\": 4715, \"AGE_22_29\": 10245, \"AGE_30_39\": 14692, \"AGE_40_49\": 13227, \"AGE_50_64\": 12455, \"AGE_65_UP\": 15232, \"MED_AGE\": 34.500000, \"MED_AGE_M\": 33.300000, \"MED_AGE_F\": 35.900000, \"HOUSEHOLDS\": 36770, \"AVE_HH_SZ\": 2.650000, \"HSEHLD_1_M\": 4832, \"HSEHLD_1_F\": 6544, \"MARHH_CHD\": 9450, \"MARHH_NO_C\": 9290, \"MHH_CHILD\": 500, \"FHH_CHILD\": 1570, \"FAMILIES\": 23851, \"AVE_FAM_SZ\": 3.420000, \"HSE_UNITS\": 38981, \"VACANT\": 2211, \"OWNER_OCC\": 26996, \"RENTER_OCC\": 9774 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.216633229351118, 42.31458594481127 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Dearborn Heights\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"21020\", \"CAPITAL\": \"N\", \"AREALAND\": 11.716000, \"AREAWATER\": 0.000000, \"POP_CL\": 7, \"POP2000\": 58264, \"WHITE\": 53395, \"BLACK\": 1236, \"AMERI_ES\": 216, \"ASIAN\": 1306, \"HAWN_PI\": 4, \"OTHER\": 470, \"MULT_RACE\": 1637, \"HISPANIC\": 1974, \"MALES\": 28106, \"FEMALES\": 30158, \"AGE_UNDER5\": 3732, \"AGE_5_17\": 9398, \"AGE_18_21\": 2437, \"AGE_22_29\": 5861, \"AGE_30_39\": 8737, \"AGE_40_49\": 8477, \"AGE_50_64\": 8708, \"AGE_65_UP\": 10914, \"MED_AGE\": 38.900000, \"MED_AGE_M\": 37.300000, \"MED_AGE_F\": 40.500000, \"HOUSEHOLDS\": 23276, \"AVE_HH_SZ\": 2.470000, \"HSEHLD_1_M\": 2675, \"HSEHLD_1_F\": 3835, \"MARHH_CHD\": 5063, \"MARHH_NO_C\": 7202, \"MHH_CHILD\": 373, \"FHH_CHILD\": 967, \"FAMILIES\": 15771, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 23913, \"VACANT\": 637, \"OWNER_OCC\": 19883, \"RENTER_OCC\": 3393 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.287521213751262, 42.310986946848892 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Detroit\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"22000\", \"CAPITAL\": \"N\", \"AREALAND\": 138.768000, \"AREAWATER\": 4.177000, \"POP_CL\": 9, \"POP2000\": 951270, \"WHITE\": 116599, \"BLACK\": 775772, \"AMERI_ES\": 3140, \"ASIAN\": 9268, \"HAWN_PI\": 251, \"OTHER\": 24199, \"MULT_RACE\": 22041, \"HISPANIC\": 47167, \"MALES\": 448319, \"FEMALES\": 502951, \"AGE_UNDER5\": 76232, \"AGE_5_17\": 219477, \"AGE_18_21\": 53050, \"AGE_22_29\": 113300, \"AGE_30_39\": 137647, \"AGE_40_49\": 132103, \"AGE_50_64\": 120405, \"AGE_65_UP\": 99056, \"MED_AGE\": 30.900000, \"MED_AGE_M\": 29.200000, \"MED_AGE_F\": 32.500000, \"HOUSEHOLDS\": 336428, \"AVE_HH_SZ\": 2.770000, \"HSEHLD_1_M\": 46946, \"HSEHLD_1_F\": 52915, \"MARHH_CHD\": 42085, \"MARHH_NO_C\": 47575, \"MHH_CHILD\": 9343, \"FHH_CHILD\": 62533, \"FAMILIES\": 218483, \"AVE_FAM_SZ\": 3.450000, \"HSE_UNITS\": 375096, \"VACANT\": 38668, \"OWNER_OCC\": 184647, \"RENTER_OCC\": 151781 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.102641257992317, 42.387136941231113 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"East Grand Rapids\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"23980\", \"CAPITAL\": \"N\", \"AREALAND\": 2.927000, \"AREAWATER\": 0.474000, \"POP_CL\": 6, \"POP2000\": 10764, \"WHITE\": 10440, \"BLACK\": 105, \"AMERI_ES\": 14, \"ASIAN\": 107, \"HAWN_PI\": 0, \"OTHER\": 34, \"MULT_RACE\": 64, \"HISPANIC\": 92, \"MALES\": 5160, \"FEMALES\": 5604, \"AGE_UNDER5\": 866, \"AGE_5_17\": 2634, \"AGE_18_21\": 330, \"AGE_22_29\": 575, \"AGE_30_39\": 1563, \"AGE_40_49\": 2030, \"AGE_50_64\": 1679, \"AGE_65_UP\": 1087, \"MED_AGE\": 36.800000, \"MED_AGE_M\": 36.000000, \"MED_AGE_F\": 37.700000, \"HOUSEHOLDS\": 3835, \"AVE_HH_SZ\": 2.810000, \"HSEHLD_1_M\": 229, \"HSEHLD_1_F\": 469, \"MARHH_CHD\": 1499, \"MARHH_NO_C\": 1137, \"MHH_CHILD\": 38, \"FHH_CHILD\": 227, \"FAMILIES\": 3021, \"AVE_FAM_SZ\": 3.230000, \"HSE_UNITS\": 3940, \"VACANT\": 105, \"OWNER_OCC\": 3584, \"RENTER_OCC\": 251 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.611326015559683, 42.944476987936 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"East Lansing\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"24120\", \"CAPITAL\": \"N\", \"AREALAND\": 11.247000, \"AREAWATER\": 0.009000, \"POP_CL\": 6, \"POP2000\": 46525, \"WHITE\": 37645, \"BLACK\": 3441, \"AMERI_ES\": 155, \"ASIAN\": 3819, \"HAWN_PI\": 38, \"OTHER\": 442, \"MULT_RACE\": 985, \"HISPANIC\": 1252, \"MALES\": 22377, \"FEMALES\": 24148, \"AGE_UNDER5\": 1186, \"AGE_5_17\": 3014, \"AGE_18_21\": 20615, \"AGE_22_29\": 9738, \"AGE_30_39\": 3192, \"AGE_40_49\": 2837, \"AGE_50_64\": 3130, \"AGE_65_UP\": 2813, \"MED_AGE\": 21.700000, \"MED_AGE_M\": 21.900000, \"MED_AGE_F\": 21.500000, \"HOUSEHOLDS\": 14390, \"AVE_HH_SZ\": 2.220000, \"HSEHLD_1_M\": 2292, \"HSEHLD_1_F\": 2924, \"MARHH_CHD\": 1702, \"MARHH_NO_C\": 2268, \"MHH_CHILD\": 108, \"FHH_CHILD\": 502, \"FAMILIES\": 5090, \"AVE_FAM_SZ\": 2.820000, \"HSE_UNITS\": 15321, \"VACANT\": 931, \"OWNER_OCC\": 4605, \"RENTER_OCC\": 9785 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.48167506220652, 42.740383973216154 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Eastpointe\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"24290\", \"CAPITAL\": \"N\", \"AREALAND\": 5.102000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 34077, \"WHITE\": 31395, \"BLACK\": 1601, \"AMERI_ES\": 143, \"ASIAN\": 296, \"HAWN_PI\": 2, \"OTHER\": 93, \"MULT_RACE\": 547, \"HISPANIC\": 453, \"MALES\": 16539, \"FEMALES\": 17538, \"AGE_UNDER5\": 2172, \"AGE_5_17\": 6161, \"AGE_18_21\": 1441, \"AGE_22_29\": 3595, \"AGE_30_39\": 5536, \"AGE_40_49\": 5495, \"AGE_50_64\": 4070, \"AGE_65_UP\": 5607, \"MED_AGE\": 36.600000, \"MED_AGE_M\": 35.100000, \"MED_AGE_F\": 38.500000, \"HOUSEHOLDS\": 13595, \"AVE_HH_SZ\": 2.500000, \"HSEHLD_1_M\": 1594, \"HSEHLD_1_F\": 2325, \"MARHH_CHD\": 3120, \"MARHH_NO_C\": 3493, \"MHH_CHILD\": 268, \"FHH_CHILD\": 719, \"FAMILIES\": 8961, \"AVE_FAM_SZ\": 3.110000, \"HSE_UNITS\": 13965, \"VACANT\": 370, \"OWNER_OCC\": 11970, \"RENTER_OCC\": 1625 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.946417301867157, 42.46608593614441 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ecorse\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"24740\", \"CAPITAL\": \"N\", \"AREALAND\": 2.690000, \"AREAWATER\": 0.926000, \"POP_CL\": 6, \"POP2000\": 11229, \"WHITE\": 5859, \"BLACK\": 4555, \"AMERI_ES\": 73, \"ASIAN\": 21, \"HAWN_PI\": 2, \"OTHER\": 377, \"MULT_RACE\": 342, \"HISPANIC\": 1004, \"MALES\": 5466, \"FEMALES\": 5763, \"AGE_UNDER5\": 884, \"AGE_5_17\": 2241, \"AGE_18_21\": 624, \"AGE_22_29\": 1332, \"AGE_30_39\": 1604, \"AGE_40_49\": 1640, \"AGE_50_64\": 1519, \"AGE_65_UP\": 1385, \"MED_AGE\": 33.100000, \"MED_AGE_M\": 32.000000, \"MED_AGE_F\": 34.500000, \"HOUSEHOLDS\": 4339, \"AVE_HH_SZ\": 2.580000, \"HSEHLD_1_M\": 719, \"HSEHLD_1_F\": 629, \"MARHH_CHD\": 560, \"MARHH_NO_C\": 784, \"MHH_CHILD\": 141, \"FHH_CHILD\": 600, \"FAMILIES\": 2733, \"AVE_FAM_SZ\": 3.230000, \"HSE_UNITS\": 4861, \"VACANT\": 522, \"OWNER_OCC\": 2682, \"RENTER_OCC\": 1657 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.148292243941995, 42.250504942997573 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Escanaba\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"26360\", \"CAPITAL\": \"N\", \"AREALAND\": 12.655000, \"AREAWATER\": 3.851000, \"POP_CL\": 6, \"POP2000\": 13140, \"WHITE\": 12570, \"BLACK\": 14, \"AMERI_ES\": 343, \"ASIAN\": 43, \"HAWN_PI\": 3, \"OTHER\": 24, \"MULT_RACE\": 143, \"HISPANIC\": 87, \"MALES\": 6140, \"FEMALES\": 7000, \"AGE_UNDER5\": 762, \"AGE_5_17\": 2198, \"AGE_18_21\": 790, \"AGE_22_29\": 1221, \"AGE_30_39\": 1580, \"AGE_40_49\": 1917, \"AGE_50_64\": 1856, \"AGE_65_UP\": 2816, \"MED_AGE\": 40.100000, \"MED_AGE_M\": 36.900000, \"MED_AGE_F\": 42.800000, \"HOUSEHOLDS\": 5800, \"AVE_HH_SZ\": 2.190000, \"HSEHLD_1_M\": 755, \"HSEHLD_1_F\": 1393, \"MARHH_CHD\": 979, \"MARHH_NO_C\": 1466, \"MHH_CHILD\": 116, \"FHH_CHILD\": 449, \"FAMILIES\": 3297, \"AVE_FAM_SZ\": 2.880000, \"HSE_UNITS\": 6258, \"VACANT\": 458, \"OWNER_OCC\": 3705, \"RENTER_OCC\": 2095 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.07203000240608, 45.745166996293186 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Farmington\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"27380\", \"CAPITAL\": \"N\", \"AREALAND\": 2.670000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10423, \"WHITE\": 8929, \"BLACK\": 285, \"AMERI_ES\": 19, \"ASIAN\": 1051, \"HAWN_PI\": 2, \"OTHER\": 29, \"MULT_RACE\": 108, \"HISPANIC\": 125, \"MALES\": 4916, \"FEMALES\": 5507, \"AGE_UNDER5\": 635, \"AGE_5_17\": 1453, \"AGE_18_21\": 283, \"AGE_22_29\": 1048, \"AGE_30_39\": 1727, \"AGE_40_49\": 1635, \"AGE_50_64\": 1510, \"AGE_65_UP\": 2132, \"MED_AGE\": 40.400000, \"MED_AGE_M\": 37.400000, \"MED_AGE_F\": 42.900000, \"HOUSEHOLDS\": 4825, \"AVE_HH_SZ\": 2.130000, \"HSEHLD_1_M\": 657, \"HSEHLD_1_F\": 1200, \"MARHH_CHD\": 976, \"MARHH_NO_C\": 1327, \"MHH_CHILD\": 44, \"FHH_CHILD\": 157, \"FAMILIES\": 2766, \"AVE_FAM_SZ\": 2.860000, \"HSE_UNITS\": 4991, \"VACANT\": 166, \"OWNER_OCC\": 3092, \"RENTER_OCC\": 1733 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.374962198436478, 42.461870948896106 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Farmington Hills\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"27440\", \"CAPITAL\": \"N\", \"AREALAND\": 33.292000, \"AREAWATER\": 0.000000, \"POP_CL\": 7, \"POP2000\": 82111, \"WHITE\": 68107, \"BLACK\": 5699, \"AMERI_ES\": 142, \"ASIAN\": 6188, \"HAWN_PI\": 15, \"OTHER\": 376, \"MULT_RACE\": 1584, \"HISPANIC\": 1211, \"MALES\": 39733, \"FEMALES\": 42378, \"AGE_UNDER5\": 4904, \"AGE_5_17\": 14038, \"AGE_18_21\": 2760, \"AGE_22_29\": 8610, \"AGE_30_39\": 12634, \"AGE_40_49\": 13657, \"AGE_50_64\": 13705, \"AGE_65_UP\": 11803, \"MED_AGE\": 38.600000, \"MED_AGE_M\": 37.400000, \"MED_AGE_F\": 39.800000, \"HOUSEHOLDS\": 33559, \"AVE_HH_SZ\": 2.410000, \"HSEHLD_1_M\": 4162, \"HSEHLD_1_F\": 5777, \"MARHH_CHD\": 8474, \"MARHH_NO_C\": 10308, \"MHH_CHILD\": 336, \"FHH_CHILD\": 1096, \"FAMILIES\": 21822, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 34858, \"VACANT\": 1299, \"OWNER_OCC\": 22439, \"RENTER_OCC\": 11120 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.375516198737202, 42.486119948849606 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fenton\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"27760\", \"CAPITAL\": \"N\", \"AREALAND\": 6.562000, \"AREAWATER\": 0.319000, \"POP_CL\": 6, \"POP2000\": 10582, \"WHITE\": 10185, \"BLACK\": 63, \"AMERI_ES\": 41, \"ASIAN\": 100, \"HAWN_PI\": 0, \"OTHER\": 70, \"MULT_RACE\": 123, \"HISPANIC\": 191, \"MALES\": 4969, \"FEMALES\": 5613, \"AGE_UNDER5\": 807, \"AGE_5_17\": 1878, \"AGE_18_21\": 476, \"AGE_22_29\": 1399, \"AGE_30_39\": 1763, \"AGE_40_49\": 1444, \"AGE_50_64\": 1372, \"AGE_65_UP\": 1443, \"MED_AGE\": 34.000000, \"MED_AGE_M\": 32.700000, \"MED_AGE_F\": 35.700000, \"HOUSEHOLDS\": 4335, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 528, \"HSEHLD_1_F\": 804, \"MARHH_CHD\": 1027, \"MARHH_NO_C\": 1076, \"MHH_CHILD\": 86, \"FHH_CHILD\": 314, \"FAMILIES\": 2711, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 4569, \"VACANT\": 234, \"OWNER_OCC\": 2874, \"RENTER_OCC\": 1461 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.712132144813964, 42.7988719569517 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ferndale\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"27880\", \"CAPITAL\": \"N\", \"AREALAND\": 3.879000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 22105, \"WHITE\": 20218, \"BLACK\": 757, \"AMERI_ES\": 121, \"ASIAN\": 292, \"HAWN_PI\": 5, \"OTHER\": 141, \"MULT_RACE\": 571, \"HISPANIC\": 399, \"MALES\": 11026, \"FEMALES\": 11079, \"AGE_UNDER5\": 1262, \"AGE_5_17\": 3242, \"AGE_18_21\": 963, \"AGE_22_29\": 3737, \"AGE_30_39\": 4500, \"AGE_40_49\": 3500, \"AGE_50_64\": 2764, \"AGE_65_UP\": 2137, \"MED_AGE\": 33.500000, \"MED_AGE_M\": 32.700000, \"MED_AGE_F\": 34.400000, \"HOUSEHOLDS\": 9872, \"AVE_HH_SZ\": 2.230000, \"HSEHLD_1_M\": 1655, \"HSEHLD_1_F\": 1817, \"MARHH_CHD\": 1529, \"MARHH_NO_C\": 2005, \"MHH_CHILD\": 199, \"FHH_CHILD\": 587, \"FAMILIES\": 5108, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 10243, \"VACANT\": 371, \"OWNER_OCC\": 6990, \"RENTER_OCC\": 2882 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.129074252993718, 42.461135941807797 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Flint\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"29000\", \"CAPITAL\": \"N\", \"AREALAND\": 33.633000, \"AREAWATER\": 0.430000, \"POP_CL\": 8, \"POP2000\": 124943, \"WHITE\": 51710, \"BLACK\": 66560, \"AMERI_ES\": 798, \"ASIAN\": 547, \"HAWN_PI\": 19, \"OTHER\": 1384, \"MULT_RACE\": 3925, \"HISPANIC\": 3742, \"MALES\": 58704, \"FEMALES\": 66239, \"AGE_UNDER5\": 11202, \"AGE_5_17\": 27039, \"AGE_18_21\": 7521, \"AGE_22_29\": 15117, \"AGE_30_39\": 17962, \"AGE_40_49\": 17081, \"AGE_50_64\": 15937, \"AGE_65_UP\": 13084, \"MED_AGE\": 30.800000, \"MED_AGE_M\": 29.300000, \"MED_AGE_F\": 32.300000, \"HOUSEHOLDS\": 48744, \"AVE_HH_SZ\": 2.510000, \"HSEHLD_1_M\": 7129, \"HSEHLD_1_F\": 8403, \"MARHH_CHD\": 6128, \"MARHH_NO_C\": 7997, \"MHH_CHILD\": 1400, \"FHH_CHILD\": 8822, \"FAMILIES\": 30258, \"AVE_FAM_SZ\": 3.160000, \"HSE_UNITS\": 55464, \"VACANT\": 6720, \"OWNER_OCC\": 28679, \"RENTER_OCC\": 20065 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.69399615048853, 43.027576956029527 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Forest Hills\", \"CLASS\": \"CDP\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"29580\", \"CAPITAL\": \"N\", \"AREALAND\": 49.386000, \"AREAWATER\": 1.371000, \"POP_CL\": 6, \"POP2000\": 20942, \"WHITE\": 19954, \"BLACK\": 133, \"AMERI_ES\": 41, \"ASIAN\": 551, \"HAWN_PI\": 1, \"OTHER\": 71, \"MULT_RACE\": 191, \"HISPANIC\": 198, \"MALES\": 10432, \"FEMALES\": 10510, \"AGE_UNDER5\": 1450, \"AGE_5_17\": 5121, \"AGE_18_21\": 707, \"AGE_22_29\": 841, \"AGE_30_39\": 2696, \"AGE_40_49\": 4241, \"AGE_50_64\": 4047, \"AGE_65_UP\": 1839, \"MED_AGE\": 39.100000, \"MED_AGE_M\": 38.700000, \"MED_AGE_F\": 39.400000, \"HOUSEHOLDS\": 7105, \"AVE_HH_SZ\": 2.940000, \"HSEHLD_1_M\": 362, \"HSEHLD_1_F\": 542, \"MARHH_CHD\": 2863, \"MARHH_NO_C\": 2720, \"MHH_CHILD\": 65, \"FHH_CHILD\": 212, \"FAMILIES\": 6043, \"AVE_FAM_SZ\": 3.230000, \"HSE_UNITS\": 7371, \"VACANT\": 266, \"OWNER_OCC\": 6768, \"RENTER_OCC\": 337 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.492170018271551, 42.948299986770145 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fraser\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"30420\", \"CAPITAL\": \"N\", \"AREALAND\": 4.188000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 15297, \"WHITE\": 14787, \"BLACK\": 139, \"AMERI_ES\": 40, \"ASIAN\": 142, \"HAWN_PI\": 2, \"OTHER\": 32, \"MULT_RACE\": 155, \"HISPANIC\": 203, \"MALES\": 7121, \"FEMALES\": 8176, \"AGE_UNDER5\": 867, \"AGE_5_17\": 2838, \"AGE_18_21\": 713, \"AGE_22_29\": 1365, \"AGE_30_39\": 2239, \"AGE_40_49\": 2519, \"AGE_50_64\": 2402, \"AGE_65_UP\": 2354, \"MED_AGE\": 38.600000, \"MED_AGE_M\": 36.200000, \"MED_AGE_F\": 40.400000, \"HOUSEHOLDS\": 6062, \"AVE_HH_SZ\": 2.490000, \"HSEHLD_1_M\": 570, \"HSEHLD_1_F\": 1140, \"MARHH_CHD\": 1433, \"MARHH_NO_C\": 1779, \"MHH_CHILD\": 59, \"FHH_CHILD\": 428, \"FAMILIES\": 4124, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 6178, \"VACANT\": 116, \"OWNER_OCC\": 4454, \"RENTER_OCC\": 1608 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.950443302436994, 42.536401936045067 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Garden City\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"31420\", \"CAPITAL\": \"N\", \"AREALAND\": 5.864000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 30047, \"WHITE\": 28904, \"BLACK\": 332, \"AMERI_ES\": 120, \"ASIAN\": 215, \"HAWN_PI\": 2, \"OTHER\": 91, \"MULT_RACE\": 383, \"HISPANIC\": 611, \"MALES\": 14829, \"FEMALES\": 15218, \"AGE_UNDER5\": 1875, \"AGE_5_17\": 5674, \"AGE_18_21\": 1396, \"AGE_22_29\": 2834, \"AGE_30_39\": 5233, \"AGE_40_49\": 4814, \"AGE_50_64\": 4156, \"AGE_65_UP\": 4065, \"MED_AGE\": 36.500000, \"MED_AGE_M\": 35.400000, \"MED_AGE_F\": 37.500000, \"HOUSEHOLDS\": 11479, \"AVE_HH_SZ\": 2.620000, \"HSEHLD_1_M\": 1187, \"HSEHLD_1_F\": 1563, \"MARHH_CHD\": 2902, \"MARHH_NO_C\": 3524, \"MHH_CHILD\": 239, \"FHH_CHILD\": 585, \"FAMILIES\": 8234, \"AVE_FAM_SZ\": 3.110000, \"HSE_UNITS\": 11719, \"VACANT\": 240, \"OWNER_OCC\": 9898, \"RENTER_OCC\": 1581 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.338202203459815, 42.324337948233413 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Grand Haven\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"33340\", \"CAPITAL\": \"N\", \"AREALAND\": 5.806000, \"AREAWATER\": 1.595000, \"POP_CL\": 6, \"POP2000\": 11168, \"WHITE\": 10760, \"BLACK\": 50, \"AMERI_ES\": 63, \"ASIAN\": 97, \"HAWN_PI\": 2, \"OTHER\": 45, \"MULT_RACE\": 151, \"HISPANIC\": 177, \"MALES\": 5275, \"FEMALES\": 5893, \"AGE_UNDER5\": 591, \"AGE_5_17\": 1659, \"AGE_18_21\": 572, \"AGE_22_29\": 1270, \"AGE_30_39\": 1486, \"AGE_40_49\": 1637, \"AGE_50_64\": 1763, \"AGE_65_UP\": 2190, \"MED_AGE\": 40.000000, \"MED_AGE_M\": 37.000000, \"MED_AGE_F\": 42.800000, \"HOUSEHOLDS\": 4979, \"AVE_HH_SZ\": 2.170000, \"HSEHLD_1_M\": 631, \"HSEHLD_1_F\": 1101, \"MARHH_CHD\": 808, \"MARHH_NO_C\": 1459, \"MHH_CHILD\": 81, \"FHH_CHILD\": 294, \"FAMILIES\": 2895, \"AVE_FAM_SZ\": 2.810000, \"HSE_UNITS\": 5532, \"VACANT\": 553, \"OWNER_OCC\": 3366, \"RENTER_OCC\": 1613 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.221471006580458, 43.058528992645591 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Grand Rapids\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"34000\", \"CAPITAL\": \"N\", \"AREALAND\": 44.638000, \"AREAWATER\": 0.682000, \"POP_CL\": 8, \"POP2000\": 197800, \"WHITE\": 133116, \"BLACK\": 40373, \"AMERI_ES\": 1454, \"ASIAN\": 3195, \"HAWN_PI\": 238, \"OTHER\": 13115, \"MULT_RACE\": 6309, \"HISPANIC\": 25818, \"MALES\": 96761, \"FEMALES\": 101039, \"AGE_UNDER5\": 16335, \"AGE_5_17\": 37146, \"AGE_18_21\": 15373, \"AGE_22_29\": 28407, \"AGE_30_39\": 30883, \"AGE_40_49\": 25713, \"AGE_50_64\": 20985, \"AGE_65_UP\": 22958, \"MED_AGE\": 30.400000, \"MED_AGE_M\": 29.400000, \"MED_AGE_F\": 31.700000, \"HOUSEHOLDS\": 73217, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 9475, \"HSEHLD_1_F\": 13106, \"MARHH_CHD\": 14233, \"MARHH_NO_C\": 15241, \"MHH_CHILD\": 1621, \"FHH_CHILD\": 7577, \"FAMILIES\": 44370, \"AVE_FAM_SZ\": 3.240000, \"HSE_UNITS\": 77960, \"VACANT\": 4743, \"OWNER_OCC\": 43717, \"RENTER_OCC\": 29500 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.658280014622335, 42.960475988363058 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Grandville\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"34160\", \"CAPITAL\": \"N\", \"AREALAND\": 7.407000, \"AREAWATER\": 0.200000, \"POP_CL\": 6, \"POP2000\": 16263, \"WHITE\": 15440, \"BLACK\": 227, \"AMERI_ES\": 43, \"ASIAN\": 189, \"HAWN_PI\": 4, \"OTHER\": 142, \"MULT_RACE\": 218, \"HISPANIC\": 501, \"MALES\": 7910, \"FEMALES\": 8353, \"AGE_UNDER5\": 1110, \"AGE_5_17\": 3420, \"AGE_18_21\": 976, \"AGE_22_29\": 1772, \"AGE_30_39\": 2149, \"AGE_40_49\": 2583, \"AGE_50_64\": 2179, \"AGE_65_UP\": 2074, \"MED_AGE\": 34.200000, \"MED_AGE_M\": 32.500000, \"MED_AGE_F\": 35.600000, \"HOUSEHOLDS\": 6095, \"AVE_HH_SZ\": 2.640000, \"HSEHLD_1_M\": 562, \"HSEHLD_1_F\": 827, \"MARHH_CHD\": 1724, \"MARHH_NO_C\": 1863, \"MHH_CHILD\": 103, \"FHH_CHILD\": 426, \"FAMILIES\": 4373, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 6279, \"VACANT\": 184, \"OWNER_OCC\": 4483, \"RENTER_OCC\": 1612 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.75737901266443, 42.903875989269181 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Grosse Ile\", \"CLASS\": \"CDP\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"35440\", \"CAPITAL\": \"N\", \"AREALAND\": 9.608000, \"AREAWATER\": 8.718000, \"POP_CL\": 6, \"POP2000\": 10894, \"WHITE\": 10374, \"BLACK\": 39, \"AMERI_ES\": 37, \"ASIAN\": 299, \"HAWN_PI\": 4, \"OTHER\": 32, \"MULT_RACE\": 109, \"HISPANIC\": 175, \"MALES\": 5435, \"FEMALES\": 5459, \"AGE_UNDER5\": 527, \"AGE_5_17\": 2184, \"AGE_18_21\": 357, \"AGE_22_29\": 477, \"AGE_30_39\": 1226, \"AGE_40_49\": 2209, \"AGE_50_64\": 2622, \"AGE_65_UP\": 1292, \"MED_AGE\": 43.400000, \"MED_AGE_M\": 43.100000, \"MED_AGE_F\": 43.600000, \"HOUSEHOLDS\": 4122, \"AVE_HH_SZ\": 2.640000, \"HSEHLD_1_M\": 329, \"HSEHLD_1_F\": 404, \"MARHH_CHD\": 1257, \"MARHH_NO_C\": 1743, \"MHH_CHILD\": 46, \"FHH_CHILD\": 116, \"FAMILIES\": 3295, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 4335, \"VACANT\": 213, \"OWNER_OCC\": 3869, \"RENTER_OCC\": 253 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.160178238663633, 42.130090943699003 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Grosse Pointe Park\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"35540\", \"CAPITAL\": \"N\", \"AREALAND\": 2.156000, \"AREAWATER\": 1.542000, \"POP_CL\": 6, \"POP2000\": 12443, \"WHITE\": 11507, \"BLACK\": 367, \"AMERI_ES\": 44, \"ASIAN\": 226, \"HAWN_PI\": 4, \"OTHER\": 49, \"MULT_RACE\": 246, \"HISPANIC\": 217, \"MALES\": 6031, \"FEMALES\": 6412, \"AGE_UNDER5\": 794, \"AGE_5_17\": 2626, \"AGE_18_21\": 418, \"AGE_22_29\": 1042, \"AGE_30_39\": 1779, \"AGE_40_49\": 2316, \"AGE_50_64\": 2123, \"AGE_65_UP\": 1345, \"MED_AGE\": 38.000000, \"MED_AGE_M\": 37.400000, \"MED_AGE_F\": 38.600000, \"HOUSEHOLDS\": 4816, \"AVE_HH_SZ\": 2.580000, \"HSEHLD_1_M\": 508, \"HSEHLD_1_F\": 752, \"MARHH_CHD\": 1427, \"MARHH_NO_C\": 1334, \"MHH_CHILD\": 67, \"FHH_CHILD\": 219, \"FAMILIES\": 3305, \"AVE_FAM_SZ\": 3.180000, \"HSE_UNITS\": 5043, \"VACANT\": 227, \"OWNER_OCC\": 3422, \"RENTER_OCC\": 1394 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.930961304209234, 42.380236935933311 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Grosse Pointe Woods\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"35580\", \"CAPITAL\": \"N\", \"AREALAND\": 3.261000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 17080, \"WHITE\": 16448, \"BLACK\": 108, \"AMERI_ES\": 11, \"ASIAN\": 355, \"HAWN_PI\": 0, \"OTHER\": 19, \"MULT_RACE\": 139, \"HISPANIC\": 167, \"MALES\": 8216, \"FEMALES\": 8864, \"AGE_UNDER5\": 1024, \"AGE_5_17\": 3436, \"AGE_18_21\": 545, \"AGE_22_29\": 872, \"AGE_30_39\": 2161, \"AGE_40_49\": 3122, \"AGE_50_64\": 2812, \"AGE_65_UP\": 3108, \"MED_AGE\": 41.700000, \"MED_AGE_M\": 40.300000, \"MED_AGE_F\": 42.700000, \"HOUSEHOLDS\": 6531, \"AVE_HH_SZ\": 2.600000, \"HSEHLD_1_M\": 495, \"HSEHLD_1_F\": 945, \"MARHH_CHD\": 1995, \"MARHH_NO_C\": 2274, \"MHH_CHILD\": 46, \"FHH_CHILD\": 254, \"FAMILIES\": 4969, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 6717, \"VACANT\": 186, \"OWNER_OCC\": 6190, \"RENTER_OCC\": 341 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.898281315252234, 42.435735934704148 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hamtramck\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"36280\", \"CAPITAL\": \"N\", \"AREALAND\": 2.108000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 22976, \"WHITE\": 14007, \"BLACK\": 3473, \"AMERI_ES\": 98, \"ASIAN\": 2382, \"HAWN_PI\": 23, \"OTHER\": 262, \"MULT_RACE\": 2731, \"HISPANIC\": 300, \"MALES\": 12056, \"FEMALES\": 10920, \"AGE_UNDER5\": 1799, \"AGE_5_17\": 4577, \"AGE_18_21\": 1372, \"AGE_22_29\": 3138, \"AGE_30_39\": 3547, \"AGE_40_49\": 3233, \"AGE_50_64\": 2576, \"AGE_65_UP\": 2734, \"MED_AGE\": 31.500000, \"MED_AGE_M\": 30.600000, \"MED_AGE_F\": 32.700000, \"HOUSEHOLDS\": 8033, \"AVE_HH_SZ\": 2.740000, \"HSEHLD_1_M\": 1276, \"HSEHLD_1_F\": 1312, \"MARHH_CHD\": 1785, \"MARHH_NO_C\": 1215, \"MHH_CHILD\": 153, \"FHH_CHILD\": 733, \"FAMILIES\": 4849, \"AVE_FAM_SZ\": 3.590000, \"HSE_UNITS\": 8894, \"VACANT\": 861, \"OWNER_OCC\": 4010, \"RENTER_OCC\": 4023 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.057335269819916, 42.397811939821601 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Harper Woods\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"36700\", \"CAPITAL\": \"N\", \"AREALAND\": 2.582000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14254, \"WHITE\": 12247, \"BLACK\": 1460, \"AMERI_ES\": 48, \"ASIAN\": 243, \"HAWN_PI\": 1, \"OTHER\": 57, \"MULT_RACE\": 198, \"HISPANIC\": 224, \"MALES\": 6614, \"FEMALES\": 7640, \"AGE_UNDER5\": 913, \"AGE_5_17\": 2280, \"AGE_18_21\": 464, \"AGE_22_29\": 1494, \"AGE_30_39\": 2377, \"AGE_40_49\": 2231, \"AGE_50_64\": 1664, \"AGE_65_UP\": 2831, \"MED_AGE\": 38.200000, \"MED_AGE_M\": 35.500000, \"MED_AGE_F\": 40.600000, \"HOUSEHOLDS\": 6292, \"AVE_HH_SZ\": 2.240000, \"HSEHLD_1_M\": 774, \"HSEHLD_1_F\": 1462, \"MARHH_CHD\": 1238, \"MARHH_NO_C\": 1536, \"MHH_CHILD\": 98, \"FHH_CHILD\": 389, \"FAMILIES\": 3757, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 6514, \"VACANT\": 222, \"OWNER_OCC\": 5175, \"RENTER_OCC\": 1117 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.924980307398712, 42.437985935552952 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Harrison\", \"CLASS\": \"CDP\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"36810\", \"CAPITAL\": \"N\", \"AREALAND\": 14.303000, \"AREAWATER\": 9.449000, \"POP_CL\": 6, \"POP2000\": 24461, \"WHITE\": 23123, \"BLACK\": 604, \"AMERI_ES\": 94, \"ASIAN\": 141, \"HAWN_PI\": 10, \"OTHER\": 109, \"MULT_RACE\": 380, \"HISPANIC\": 362, \"MALES\": 12301, \"FEMALES\": 12160, \"AGE_UNDER5\": 1482, \"AGE_5_17\": 3870, \"AGE_18_21\": 1148, \"AGE_22_29\": 2721, \"AGE_30_39\": 3942, \"AGE_40_49\": 4403, \"AGE_50_64\": 4234, \"AGE_65_UP\": 2661, \"MED_AGE\": 37.900000, \"MED_AGE_M\": 37.700000, \"MED_AGE_F\": 38.100000, \"HOUSEHOLDS\": 10720, \"AVE_HH_SZ\": 2.280000, \"HSEHLD_1_M\": 1861, \"HSEHLD_1_F\": 1682, \"MARHH_CHD\": 2142, \"MARHH_NO_C\": 2947, \"MHH_CHILD\": 229, \"FHH_CHILD\": 509, \"FAMILIES\": 6426, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 11486, \"VACANT\": 766, \"OWNER_OCC\": 7481, \"RENTER_OCC\": 3239 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.829242340582766, 42.583654931949347 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Haslett\", \"CLASS\": \"CDP\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"37100\", \"CAPITAL\": \"N\", \"AREALAND\": 8.328000, \"AREAWATER\": 0.746000, \"POP_CL\": 6, \"POP2000\": 11283, \"WHITE\": 10422, \"BLACK\": 270, \"AMERI_ES\": 34, \"ASIAN\": 306, \"HAWN_PI\": 3, \"OTHER\": 82, \"MULT_RACE\": 166, \"HISPANIC\": 280, \"MALES\": 5214, \"FEMALES\": 6069, \"AGE_UNDER5\": 614, \"AGE_5_17\": 2010, \"AGE_18_21\": 506, \"AGE_22_29\": 1406, \"AGE_30_39\": 1554, \"AGE_40_49\": 2102, \"AGE_50_64\": 1784, \"AGE_65_UP\": 1307, \"MED_AGE\": 37.600000, \"MED_AGE_M\": 35.700000, \"MED_AGE_F\": 38.900000, \"HOUSEHOLDS\": 5132, \"AVE_HH_SZ\": 2.190000, \"HSEHLD_1_M\": 663, \"HSEHLD_1_F\": 1171, \"MARHH_CHD\": 1037, \"MARHH_NO_C\": 1195, \"MHH_CHILD\": 84, \"FHH_CHILD\": 335, \"FAMILIES\": 2886, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 5355, \"VACANT\": 223, \"OWNER_OCC\": 3077, \"RENTER_OCC\": 2055 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.406998067821533, 42.752733971870995 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hazel Park\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"37420\", \"CAPITAL\": \"N\", \"AREALAND\": 2.818000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 18963, \"WHITE\": 17374, \"BLACK\": 308, \"AMERI_ES\": 170, \"ASIAN\": 344, \"HAWN_PI\": 4, \"OTHER\": 112, \"MULT_RACE\": 651, \"HISPANIC\": 395, \"MALES\": 9352, \"FEMALES\": 9611, \"AGE_UNDER5\": 1336, \"AGE_5_17\": 3909, \"AGE_18_21\": 994, \"AGE_22_29\": 2300, \"AGE_30_39\": 3232, \"AGE_40_49\": 2811, \"AGE_50_64\": 2201, \"AGE_65_UP\": 2180, \"MED_AGE\": 33.000000, \"MED_AGE_M\": 31.700000, \"MED_AGE_F\": 34.100000, \"HOUSEHOLDS\": 7284, \"AVE_HH_SZ\": 2.600000, \"HSEHLD_1_M\": 956, \"HSEHLD_1_F\": 1115, \"MARHH_CHD\": 1524, \"MARHH_NO_C\": 1506, \"MHH_CHILD\": 231, \"FHH_CHILD\": 677, \"FAMILIES\": 4669, \"AVE_FAM_SZ\": 3.210000, \"HSE_UNITS\": 7612, \"VACANT\": 328, \"OWNER_OCC\": 5347, \"RENTER_OCC\": 1937 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.098191260664194, 42.459021940881804 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Highland Park\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"38180\", \"CAPITAL\": \"N\", \"AREALAND\": 2.978000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 16746, \"WHITE\": 688, \"BLACK\": 15648, \"AMERI_ES\": 45, \"ASIAN\": 41, \"HAWN_PI\": 3, \"OTHER\": 42, \"MULT_RACE\": 279, \"HISPANIC\": 95, \"MALES\": 7730, \"FEMALES\": 9016, \"AGE_UNDER5\": 1282, \"AGE_5_17\": 3585, \"AGE_18_21\": 876, \"AGE_22_29\": 1669, \"AGE_30_39\": 2259, \"AGE_40_49\": 2380, \"AGE_50_64\": 2260, \"AGE_65_UP\": 2435, \"MED_AGE\": 34.500000, \"MED_AGE_M\": 32.400000, \"MED_AGE_F\": 36.100000, \"HOUSEHOLDS\": 6199, \"AVE_HH_SZ\": 2.560000, \"HSEHLD_1_M\": 1068, \"HSEHLD_1_F\": 1315, \"MARHH_CHD\": 441, \"MARHH_NO_C\": 614, \"MHH_CHILD\": 166, \"FHH_CHILD\": 1101, \"FAMILIES\": 3524, \"AVE_FAM_SZ\": 3.430000, \"HSE_UNITS\": 7249, \"VACANT\": 1050, \"OWNER_OCC\": 2393, \"RENTER_OCC\": 3806 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.101767258568003, 42.403685941155288 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Holland\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"38640\", \"CAPITAL\": \"N\", \"AREALAND\": 16.568000, \"AREAWATER\": 0.620000, \"POP_CL\": 6, \"POP2000\": 35048, \"WHITE\": 27399, \"BLACK\": 888, \"AMERI_ES\": 202, \"ASIAN\": 1247, \"HAWN_PI\": 10, \"OTHER\": 4348, \"MULT_RACE\": 954, \"HISPANIC\": 7783, \"MALES\": 16605, \"FEMALES\": 18443, \"AGE_UNDER5\": 2790, \"AGE_5_17\": 6372, \"AGE_18_21\": 4186, \"AGE_22_29\": 4607, \"AGE_30_39\": 4733, \"AGE_40_49\": 4075, \"AGE_50_64\": 3545, \"AGE_65_UP\": 4740, \"MED_AGE\": 29.200000, \"MED_AGE_M\": 28.300000, \"MED_AGE_F\": 30.200000, \"HOUSEHOLDS\": 11971, \"AVE_HH_SZ\": 2.670000, \"HSEHLD_1_M\": 1182, \"HSEHLD_1_F\": 2032, \"MARHH_CHD\": 2993, \"MARHH_NO_C\": 3161, \"MHH_CHILD\": 274, \"FHH_CHILD\": 860, \"FAMILIES\": 7928, \"AVE_FAM_SZ\": 3.240000, \"HSE_UNITS\": 12533, \"VACANT\": 562, \"OWNER_OCC\": 8034, \"RENTER_OCC\": 3937 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.106617007526808, 42.777040991991377 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Holt\", \"CLASS\": \"CDP\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"38780\", \"CAPITAL\": \"N\", \"AREALAND\": 4.313000, \"AREAWATER\": 0.022000, \"POP_CL\": 6, \"POP2000\": 11315, \"WHITE\": 10510, \"BLACK\": 275, \"AMERI_ES\": 57, \"ASIAN\": 117, \"HAWN_PI\": 5, \"OTHER\": 108, \"MULT_RACE\": 243, \"HISPANIC\": 411, \"MALES\": 5399, \"FEMALES\": 5916, \"AGE_UNDER5\": 741, \"AGE_5_17\": 2492, \"AGE_18_21\": 559, \"AGE_22_29\": 1160, \"AGE_30_39\": 1785, \"AGE_40_49\": 2010, \"AGE_50_64\": 1606, \"AGE_65_UP\": 962, \"MED_AGE\": 34.300000, \"MED_AGE_M\": 32.700000, \"MED_AGE_F\": 35.600000, \"HOUSEHOLDS\": 4502, \"AVE_HH_SZ\": 2.510000, \"HSEHLD_1_M\": 463, \"HSEHLD_1_F\": 690, \"MARHH_CHD\": 1103, \"MARHH_NO_C\": 1116, \"MHH_CHILD\": 144, \"FHH_CHILD\": 485, \"FAMILIES\": 3102, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 4719, \"VACANT\": 217, \"OWNER_OCC\": 3024, \"RENTER_OCC\": 1478 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.521875058805449, 42.638234974037168 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Inkster\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"40680\", \"CAPITAL\": \"N\", \"AREALAND\": 6.263000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 30115, \"WHITE\": 7571, \"BLACK\": 20330, \"AMERI_ES\": 124, \"ASIAN\": 1031, \"HAWN_PI\": 3, \"OTHER\": 224, \"MULT_RACE\": 832, \"HISPANIC\": 482, \"MALES\": 14369, \"FEMALES\": 15746, \"AGE_UNDER5\": 2423, \"AGE_5_17\": 6563, \"AGE_18_21\": 1547, \"AGE_22_29\": 3717, \"AGE_30_39\": 4557, \"AGE_40_49\": 3937, \"AGE_50_64\": 4120, \"AGE_65_UP\": 3251, \"MED_AGE\": 31.800000, \"MED_AGE_M\": 30.300000, \"MED_AGE_F\": 33.200000, \"HOUSEHOLDS\": 11169, \"AVE_HH_SZ\": 2.670000, \"HSEHLD_1_M\": 1459, \"HSEHLD_1_F\": 1656, \"MARHH_CHD\": 1648, \"MARHH_NO_C\": 2151, \"MHH_CHILD\": 295, \"FHH_CHILD\": 1752, \"FAMILIES\": 7465, \"AVE_FAM_SZ\": 3.260000, \"HSE_UNITS\": 12013, \"VACANT\": 844, \"OWNER_OCC\": 6475, \"RENTER_OCC\": 4694 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.314143207835755, 42.29258194764666 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ionia\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"40860\", \"CAPITAL\": \"N\", \"AREALAND\": 5.043000, \"AREAWATER\": 0.163000, \"POP_CL\": 6, \"POP2000\": 10569, \"WHITE\": 7512, \"BLACK\": 2319, \"AMERI_ES\": 111, \"ASIAN\": 69, \"HAWN_PI\": 0, \"OTHER\": 225, \"MULT_RACE\": 333, \"HISPANIC\": 537, \"MALES\": 7201, \"FEMALES\": 3368, \"AGE_UNDER5\": 523, \"AGE_5_17\": 1430, \"AGE_18_21\": 1532, \"AGE_22_29\": 2647, \"AGE_30_39\": 1596, \"AGE_40_49\": 1249, \"AGE_50_64\": 831, \"AGE_65_UP\": 761, \"MED_AGE\": 26.500000, \"MED_AGE_M\": 25.400000, \"MED_AGE_F\": 33.200000, \"HOUSEHOLDS\": 2421, \"AVE_HH_SZ\": 2.530000, \"HSEHLD_1_M\": 307, \"HSEHLD_1_F\": 437, \"MARHH_CHD\": 557, \"MARHH_NO_C\": 499, \"MHH_CHILD\": 79, \"FHH_CHILD\": 265, \"FAMILIES\": 1536, \"AVE_FAM_SZ\": 3.160000, \"HSE_UNITS\": 2621, \"VACANT\": 200, \"OWNER_OCC\": 1471, \"RENTER_OCC\": 950 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.066792031693609, 42.981931981845285 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Jackson\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"41420\", \"CAPITAL\": \"N\", \"AREALAND\": 11.089000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 36316, \"WHITE\": 26825, \"BLACK\": 7154, \"AMERI_ES\": 203, \"ASIAN\": 186, \"HAWN_PI\": 14, \"OTHER\": 601, \"MULT_RACE\": 1333, \"HISPANIC\": 1469, \"MALES\": 17307, \"FEMALES\": 19009, \"AGE_UNDER5\": 3289, \"AGE_5_17\": 7483, \"AGE_18_21\": 2023, \"AGE_22_29\": 4579, \"AGE_30_39\": 5456, \"AGE_40_49\": 4777, \"AGE_50_64\": 4376, \"AGE_65_UP\": 4333, \"MED_AGE\": 31.300000, \"MED_AGE_M\": 30.000000, \"MED_AGE_F\": 32.700000, \"HOUSEHOLDS\": 14210, \"AVE_HH_SZ\": 2.480000, \"HSEHLD_1_M\": 1947, \"HSEHLD_1_F\": 2598, \"MARHH_CHD\": 2341, \"MARHH_NO_C\": 2743, \"MHH_CHILD\": 469, \"FHH_CHILD\": 1972, \"FAMILIES\": 8666, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 15241, \"VACANT\": 1031, \"OWNER_OCC\": 8181, \"RENTER_OCC\": 6029 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.407206064524914, 42.244084972556855 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Jenison\", \"CLASS\": \"CDP\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"41680\", \"CAPITAL\": \"N\", \"AREALAND\": 5.852000, \"AREAWATER\": 0.046000, \"POP_CL\": 6, \"POP2000\": 17211, \"WHITE\": 16701, \"BLACK\": 84, \"AMERI_ES\": 36, \"ASIAN\": 147, \"HAWN_PI\": 1, \"OTHER\": 92, \"MULT_RACE\": 150, \"HISPANIC\": 305, \"MALES\": 8318, \"FEMALES\": 8893, \"AGE_UNDER5\": 1116, \"AGE_5_17\": 3859, \"AGE_18_21\": 859, \"AGE_22_29\": 1309, \"AGE_30_39\": 2426, \"AGE_40_49\": 2681, \"AGE_50_64\": 2811, \"AGE_65_UP\": 2150, \"MED_AGE\": 36.500000, \"MED_AGE_M\": 35.400000, \"MED_AGE_F\": 37.500000, \"HOUSEHOLDS\": 5975, \"AVE_HH_SZ\": 2.860000, \"HSEHLD_1_M\": 275, \"HSEHLD_1_F\": 737, \"MARHH_CHD\": 2099, \"MARHH_NO_C\": 2293, \"MHH_CHILD\": 67, \"FHH_CHILD\": 210, \"FAMILIES\": 4861, \"AVE_FAM_SZ\": 3.240000, \"HSE_UNITS\": 6065, \"VACANT\": 90, \"OWNER_OCC\": 5443, \"RENTER_OCC\": 532 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.830439011432176, 42.905491989879962 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Kalamazoo\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"42160\", \"CAPITAL\": \"N\", \"AREALAND\": 24.683000, \"AREAWATER\": 0.499000, \"POP_CL\": 7, \"POP2000\": 77145, \"WHITE\": 54593, \"BLACK\": 15924, \"AMERI_ES\": 445, \"ASIAN\": 1847, \"HAWN_PI\": 50, \"OTHER\": 1836, \"MULT_RACE\": 2450, \"HISPANIC\": 3304, \"MALES\": 37198, \"FEMALES\": 39947, \"AGE_UNDER5\": 4786, \"AGE_5_17\": 10869, \"AGE_18_21\": 14435, \"AGE_22_29\": 13448, \"AGE_30_39\": 9585, \"AGE_40_49\": 8569, \"AGE_50_64\": 7656, \"AGE_65_UP\": 7797, \"MED_AGE\": 26.100000, \"MED_AGE_M\": 25.200000, \"MED_AGE_F\": 27.300000, \"HOUSEHOLDS\": 29413, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 4266, \"HSEHLD_1_F\": 5966, \"MARHH_CHD\": 3758, \"MARHH_NO_C\": 5238, \"MHH_CHILD\": 522, \"FHH_CHILD\": 3034, \"FAMILIES\": 14358, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 31798, \"VACANT\": 2385, \"OWNER_OCC\": 14027, \"RENTER_OCC\": 15386 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.583902014897447, 42.27920698805395 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Kentwood\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"42820\", \"CAPITAL\": \"N\", \"AREALAND\": 21.043000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 45255, \"WHITE\": 36599, \"BLACK\": 4115, \"AMERI_ES\": 207, \"ASIAN\": 2550, \"HAWN_PI\": 18, \"OTHER\": 644, \"MULT_RACE\": 1122, \"HISPANIC\": 1757, \"MALES\": 21831, \"FEMALES\": 23424, \"AGE_UNDER5\": 3469, \"AGE_5_17\": 8553, \"AGE_18_21\": 2466, \"AGE_22_29\": 6201, \"AGE_30_39\": 7673, \"AGE_40_49\": 6815, \"AGE_50_64\": 5626, \"AGE_65_UP\": 4452, \"MED_AGE\": 32.400000, \"MED_AGE_M\": 31.500000, \"MED_AGE_F\": 33.500000, \"HOUSEHOLDS\": 18477, \"AVE_HH_SZ\": 2.430000, \"HSEHLD_1_M\": 2449, \"HSEHLD_1_F\": 3260, \"MARHH_CHD\": 4503, \"MARHH_NO_C\": 4426, \"MHH_CHILD\": 340, \"FHH_CHILD\": 1314, \"FAMILIES\": 11523, \"AVE_FAM_SZ\": 3.100000, \"HSE_UNITS\": 19507, \"VACANT\": 1030, \"OWNER_OCC\": 11262, \"RENTER_OCC\": 7215 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.609470015485854, 42.882831987952294 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lansing\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"46000\", \"CAPITAL\": \"Y\", \"AREALAND\": 35.047000, \"AREAWATER\": 0.196000, \"POP_CL\": 8, \"POP2000\": 119128, \"WHITE\": 77766, \"BLACK\": 26095, \"AMERI_ES\": 953, \"ASIAN\": 3367, \"HAWN_PI\": 62, \"OTHER\": 5410, \"MULT_RACE\": 5475, \"HISPANIC\": 11886, \"MALES\": 57186, \"FEMALES\": 61942, \"AGE_UNDER5\": 9725, \"AGE_5_17\": 22169, \"AGE_18_21\": 7033, \"AGE_22_29\": 17621, \"AGE_30_39\": 19094, \"AGE_40_49\": 16838, \"AGE_50_64\": 15043, \"AGE_65_UP\": 11605, \"MED_AGE\": 31.400000, \"MED_AGE_M\": 30.200000, \"MED_AGE_F\": 32.600000, \"HOUSEHOLDS\": 49505, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 7242, \"HSEHLD_1_F\": 9194, \"MARHH_CHD\": 7984, \"MARHH_NO_C\": 9731, \"MHH_CHILD\": 1280, \"FHH_CHILD\": 5610, \"FAMILIES\": 28373, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 53159, \"VACANT\": 3654, \"OWNER_OCC\": 28488, \"RENTER_OCC\": 21017 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.554916057041495, 42.717584974500198 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lincoln Park\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"47800\", \"CAPITAL\": \"N\", \"AREALAND\": 5.853000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 40008, \"WHITE\": 37312, \"BLACK\": 824, \"AMERI_ES\": 213, \"ASIAN\": 204, \"HAWN_PI\": 2, \"OTHER\": 728, \"MULT_RACE\": 725, \"HISPANIC\": 2556, \"MALES\": 19565, \"FEMALES\": 20443, \"AGE_UNDER5\": 2771, \"AGE_5_17\": 6961, \"AGE_18_21\": 1847, \"AGE_22_29\": 4752, \"AGE_30_39\": 6670, \"AGE_40_49\": 6058, \"AGE_50_64\": 5309, \"AGE_65_UP\": 5640, \"MED_AGE\": 35.500000, \"MED_AGE_M\": 34.300000, \"MED_AGE_F\": 36.700000, \"HOUSEHOLDS\": 16204, \"AVE_HH_SZ\": 2.460000, \"HSEHLD_1_M\": 2155, \"HSEHLD_1_F\": 2587, \"MARHH_CHD\": 3404, \"MARHH_NO_C\": 4091, \"MHH_CHILD\": 456, \"FHH_CHILD\": 1031, \"FAMILIES\": 10575, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 16821, \"VACANT\": 617, \"OWNER_OCC\": 12816, \"RENTER_OCC\": 3388 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.180970236111364, 42.243487943976874 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Livonia\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"49000\", \"CAPITAL\": \"N\", \"AREALAND\": 35.718000, \"AREAWATER\": 0.119000, \"POP_CL\": 8, \"POP2000\": 100545, \"WHITE\": 95975, \"BLACK\": 951, \"AMERI_ES\": 223, \"ASIAN\": 1951, \"HAWN_PI\": 14, \"OTHER\": 318, \"MULT_RACE\": 1113, \"HISPANIC\": 1731, \"MALES\": 48718, \"FEMALES\": 51827, \"AGE_UNDER5\": 5654, \"AGE_5_17\": 18304, \"AGE_18_21\": 3913, \"AGE_22_29\": 7265, \"AGE_30_39\": 14722, \"AGE_40_49\": 17604, \"AGE_50_64\": 16095, \"AGE_65_UP\": 16988, \"MED_AGE\": 40.200000, \"MED_AGE_M\": 38.900000, \"MED_AGE_F\": 41.400000, \"HOUSEHOLDS\": 38089, \"AVE_HH_SZ\": 2.590000, \"HSEHLD_1_M\": 3421, \"HSEHLD_1_F\": 5307, \"MARHH_CHD\": 10662, \"MARHH_NO_C\": 13276, \"MHH_CHILD\": 395, \"FHH_CHILD\": 1303, \"FAMILIES\": 28081, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 38658, \"VACANT\": 569, \"OWNER_OCC\": 33808, \"RENTER_OCC\": 4281 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.365608199163304, 42.39508594880882 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Madison Heights\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"50560\", \"CAPITAL\": \"N\", \"AREALAND\": 7.164000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 31101, \"WHITE\": 27866, \"BLACK\": 567, \"AMERI_ES\": 138, \"ASIAN\": 1547, \"HAWN_PI\": 8, \"OTHER\": 142, \"MULT_RACE\": 833, \"HISPANIC\": 502, \"MALES\": 15216, \"FEMALES\": 15885, \"AGE_UNDER5\": 1921, \"AGE_5_17\": 4946, \"AGE_18_21\": 1340, \"AGE_22_29\": 3991, \"AGE_30_39\": 5538, \"AGE_40_49\": 4748, \"AGE_50_64\": 4201, \"AGE_65_UP\": 4416, \"MED_AGE\": 36.100000, \"MED_AGE_M\": 34.600000, \"MED_AGE_F\": 37.700000, \"HOUSEHOLDS\": 13299, \"AVE_HH_SZ\": 2.330000, \"HSEHLD_1_M\": 2001, \"HSEHLD_1_F\": 2493, \"MARHH_CHD\": 2655, \"MARHH_NO_C\": 3356, \"MHH_CHILD\": 235, \"FHH_CHILD\": 694, \"FAMILIES\": 8001, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 13623, \"VACANT\": 324, \"OWNER_OCC\": 9319, \"RENTER_OCC\": 3980 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.104745259920819, 42.501384940954516 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Marquette\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"51900\", \"CAPITAL\": \"N\", \"AREALAND\": 11.405000, \"AREAWATER\": 7.961000, \"POP_CL\": 6, \"POP2000\": 19661, \"WHITE\": 18685, \"BLACK\": 162, \"AMERI_ES\": 343, \"ASIAN\": 162, \"HAWN_PI\": 4, \"OTHER\": 43, \"MULT_RACE\": 262, \"HISPANIC\": 152, \"MALES\": 9548, \"FEMALES\": 10113, \"AGE_UNDER5\": 826, \"AGE_5_17\": 2478, \"AGE_18_21\": 3407, \"AGE_22_29\": 3001, \"AGE_30_39\": 2091, \"AGE_40_49\": 2663, \"AGE_50_64\": 2477, \"AGE_65_UP\": 2718, \"MED_AGE\": 30.600000, \"MED_AGE_M\": 29.400000, \"MED_AGE_F\": 31.900000, \"HOUSEHOLDS\": 8071, \"AVE_HH_SZ\": 2.130000, \"HSEHLD_1_M\": 1209, \"HSEHLD_1_F\": 1779, \"MARHH_CHD\": 1189, \"MARHH_NO_C\": 1811, \"MHH_CHILD\": 128, \"FHH_CHILD\": 539, \"FAMILIES\": 4066, \"AVE_FAM_SZ\": 2.810000, \"HSE_UNITS\": 8429, \"VACANT\": 358, \"OWNER_OCC\": 4026, \"RENTER_OCC\": 4045 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.402415001502249, 46.548635997294483 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Melvindale\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"52940\", \"CAPITAL\": \"N\", \"AREALAND\": 2.769000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10735, \"WHITE\": 9382, \"BLACK\": 565, \"AMERI_ES\": 80, \"ASIAN\": 138, \"HAWN_PI\": 4, \"OTHER\": 257, \"MULT_RACE\": 309, \"HISPANIC\": 955, \"MALES\": 5262, \"FEMALES\": 5473, \"AGE_UNDER5\": 738, \"AGE_5_17\": 1883, \"AGE_18_21\": 527, \"AGE_22_29\": 1250, \"AGE_30_39\": 1709, \"AGE_40_49\": 1620, \"AGE_50_64\": 1560, \"AGE_65_UP\": 1448, \"MED_AGE\": 35.700000, \"MED_AGE_M\": 35.100000, \"MED_AGE_F\": 36.600000, \"HOUSEHOLDS\": 4499, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 762, \"HSEHLD_1_F\": 792, \"MARHH_CHD\": 801, \"MARHH_NO_C\": 979, \"MHH_CHILD\": 124, \"FHH_CHILD\": 360, \"FAMILIES\": 2694, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 4760, \"VACANT\": 261, \"OWNER_OCC\": 3037, \"RENTER_OCC\": 1462 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.181880236664853, 42.281637943893799 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Midland\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"53780\", \"CAPITAL\": \"N\", \"AREALAND\": 33.218000, \"AREAWATER\": 1.733000, \"POP_CL\": 6, \"POP2000\": 41685, \"WHITE\": 38924, \"BLACK\": 760, \"AMERI_ES\": 122, \"ASIAN\": 1123, \"HAWN_PI\": 24, \"OTHER\": 236, \"MULT_RACE\": 496, \"HISPANIC\": 802, \"MALES\": 19975, \"FEMALES\": 21710, \"AGE_UNDER5\": 2699, \"AGE_5_17\": 8102, \"AGE_18_21\": 2692, \"AGE_22_29\": 3944, \"AGE_30_39\": 5919, \"AGE_40_49\": 6527, \"AGE_50_64\": 6024, \"AGE_65_UP\": 5778, \"MED_AGE\": 36.200000, \"MED_AGE_M\": 34.200000, \"MED_AGE_F\": 37.900000, \"HOUSEHOLDS\": 16743, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 1726, \"HSEHLD_1_F\": 3055, \"MARHH_CHD\": 4311, \"MARHH_NO_C\": 4800, \"MHH_CHILD\": 258, \"FHH_CHILD\": 989, \"FAMILIES\": 10996, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 17773, \"VACANT\": 1030, \"OWNER_OCC\": 11662, \"RENTER_OCC\": 5081 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.230628089391899, 43.622706967274169 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Monroe\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"55020\", \"CAPITAL\": \"N\", \"AREALAND\": 9.044000, \"AREAWATER\": 1.019000, \"POP_CL\": 6, \"POP2000\": 22076, \"WHITE\": 20060, \"BLACK\": 1120, \"AMERI_ES\": 53, \"ASIAN\": 186, \"HAWN_PI\": 4, \"OTHER\": 199, \"MULT_RACE\": 454, \"HISPANIC\": 610, \"MALES\": 10470, \"FEMALES\": 11606, \"AGE_UNDER5\": 1664, \"AGE_5_17\": 4277, \"AGE_18_21\": 1089, \"AGE_22_29\": 2358, \"AGE_30_39\": 3293, \"AGE_40_49\": 3134, \"AGE_50_64\": 2954, \"AGE_65_UP\": 3307, \"MED_AGE\": 35.200000, \"MED_AGE_M\": 32.800000, \"MED_AGE_F\": 37.200000, \"HOUSEHOLDS\": 8594, \"AVE_HH_SZ\": 2.470000, \"HSEHLD_1_M\": 1084, \"HSEHLD_1_F\": 1551, \"MARHH_CHD\": 1898, \"MARHH_NO_C\": 2111, \"MHH_CHILD\": 198, \"FHH_CHILD\": 788, \"FAMILIES\": 5586, \"AVE_FAM_SZ\": 3.100000, \"HSE_UNITS\": 9107, \"VACANT\": 513, \"OWNER_OCC\": 5323, \"RENTER_OCC\": 3271 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.39348418575878, 41.918060950795208 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mount Clemens\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"55820\", \"CAPITAL\": \"N\", \"AREALAND\": 4.215000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 17312, \"WHITE\": 13121, \"BLACK\": 3395, \"AMERI_ES\": 127, \"ASIAN\": 85, \"HAWN_PI\": 3, \"OTHER\": 132, \"MULT_RACE\": 449, \"HISPANIC\": 404, \"MALES\": 8952, \"FEMALES\": 8360, \"AGE_UNDER5\": 1110, \"AGE_5_17\": 2627, \"AGE_18_21\": 881, \"AGE_22_29\": 2115, \"AGE_30_39\": 3048, \"AGE_40_49\": 2760, \"AGE_50_64\": 2449, \"AGE_65_UP\": 2322, \"MED_AGE\": 36.400000, \"MED_AGE_M\": 34.700000, \"MED_AGE_F\": 38.500000, \"HOUSEHOLDS\": 7073, \"AVE_HH_SZ\": 2.210000, \"HSEHLD_1_M\": 1292, \"HSEHLD_1_F\": 1482, \"MARHH_CHD\": 1005, \"MARHH_NO_C\": 1487, \"MHH_CHILD\": 134, \"FHH_CHILD\": 611, \"FAMILIES\": 3852, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 7546, \"VACANT\": 473, \"OWNER_OCC\": 4295, \"RENTER_OCC\": 2778 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.880312324881956, 42.596783933583822 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mount Pleasant\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"56020\", \"CAPITAL\": \"N\", \"AREALAND\": 7.798000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 25946, \"WHITE\": 23124, \"BLACK\": 951, \"AMERI_ES\": 399, \"ASIAN\": 739, \"HAWN_PI\": 17, \"OTHER\": 241, \"MULT_RACE\": 475, \"HISPANIC\": 646, \"MALES\": 11724, \"FEMALES\": 14222, \"AGE_UNDER5\": 891, \"AGE_5_17\": 2095, \"AGE_18_21\": 10420, \"AGE_22_29\": 5233, \"AGE_30_39\": 1806, \"AGE_40_49\": 1910, \"AGE_50_64\": 1684, \"AGE_65_UP\": 1907, \"MED_AGE\": 21.800000, \"MED_AGE_M\": 22.200000, \"MED_AGE_F\": 21.500000, \"HOUSEHOLDS\": 8449, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 919, \"HSEHLD_1_F\": 1585, \"MARHH_CHD\": 980, \"MARHH_NO_C\": 1206, \"MHH_CHILD\": 118, \"FHH_CHILD\": 494, \"FAMILIES\": 3130, \"AVE_FAM_SZ\": 2.880000, \"HSE_UNITS\": 8878, \"VACANT\": 429, \"OWNER_OCC\": 2900, \"RENTER_OCC\": 5549 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.774951047995771, 43.60094697711601 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Muskegon\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"56320\", \"CAPITAL\": \"N\", \"AREALAND\": 14.351000, \"AREAWATER\": 3.671000, \"POP_CL\": 6, \"POP2000\": 40105, \"WHITE\": 24309, \"BLACK\": 12701, \"AMERI_ES\": 418, \"ASIAN\": 183, \"HAWN_PI\": 12, \"OTHER\": 1078, \"MULT_RACE\": 1404, \"HISPANIC\": 2560, \"MALES\": 20971, \"FEMALES\": 19134, \"AGE_UNDER5\": 3062, \"AGE_5_17\": 7278, \"AGE_18_21\": 2534, \"AGE_22_29\": 5598, \"AGE_30_39\": 6372, \"AGE_40_49\": 5647, \"AGE_50_64\": 4637, \"AGE_65_UP\": 4977, \"MED_AGE\": 32.300000, \"MED_AGE_M\": 31.500000, \"MED_AGE_F\": 33.600000, \"HOUSEHOLDS\": 14569, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 2128, \"HSEHLD_1_F\": 2883, \"MARHH_CHD\": 2102, \"MARHH_NO_C\": 2734, \"MHH_CHILD\": 429, \"FHH_CHILD\": 2002, \"FAMILIES\": 8535, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 15999, \"VACANT\": 1430, \"OWNER_OCC\": 8284, \"RENTER_OCC\": 6285 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.247739006469516, 43.226580992756908 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Muskegon Heights\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"56360\", \"CAPITAL\": \"N\", \"AREALAND\": 3.167000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12049, \"WHITE\": 2131, \"BLACK\": 9370, \"AMERI_ES\": 54, \"ASIAN\": 30, \"HAWN_PI\": 3, \"OTHER\": 197, \"MULT_RACE\": 264, \"HISPANIC\": 424, \"MALES\": 5452, \"FEMALES\": 6597, \"AGE_UNDER5\": 1175, \"AGE_5_17\": 3070, \"AGE_18_21\": 650, \"AGE_22_29\": 1314, \"AGE_30_39\": 1618, \"AGE_40_49\": 1551, \"AGE_50_64\": 1388, \"AGE_65_UP\": 1283, \"MED_AGE\": 29.000000, \"MED_AGE_M\": 26.700000, \"MED_AGE_F\": 30.700000, \"HOUSEHOLDS\": 4507, \"AVE_HH_SZ\": 2.660000, \"HSEHLD_1_M\": 582, \"HSEHLD_1_F\": 716, \"MARHH_CHD\": 453, \"MARHH_NO_C\": 673, \"MHH_CHILD\": 133, \"FHH_CHILD\": 1075, \"FAMILIES\": 2970, \"AVE_FAM_SZ\": 3.280000, \"HSE_UNITS\": 5108, \"VACANT\": 601, \"OWNER_OCC\": 2590, \"RENTER_OCC\": 1917 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.243406006492052, 43.203664992737018 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Niles\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"57760\", \"CAPITAL\": \"N\", \"AREALAND\": 5.785000, \"AREAWATER\": 0.139000, \"POP_CL\": 6, \"POP2000\": 12204, \"WHITE\": 10030, \"BLACK\": 1509, \"AMERI_ES\": 80, \"ASIAN\": 63, \"HAWN_PI\": 10, \"OTHER\": 154, \"MULT_RACE\": 358, \"HISPANIC\": 485, \"MALES\": 5708, \"FEMALES\": 6496, \"AGE_UNDER5\": 920, \"AGE_5_17\": 2363, \"AGE_18_21\": 612, \"AGE_22_29\": 1309, \"AGE_30_39\": 1774, \"AGE_40_49\": 1652, \"AGE_50_64\": 1695, \"AGE_65_UP\": 1879, \"MED_AGE\": 35.300000, \"MED_AGE_M\": 32.900000, \"MED_AGE_F\": 37.300000, \"HOUSEHOLDS\": 5096, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 699, \"HSEHLD_1_F\": 1047, \"MARHH_CHD\": 894, \"MARHH_NO_C\": 1106, \"MHH_CHILD\": 126, \"FHH_CHILD\": 550, \"FAMILIES\": 3051, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 5531, \"VACANT\": 435, \"OWNER_OCC\": 3041, \"RENTER_OCC\": 2055 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.250826005232796, 41.830342993235099 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Northview\", \"CLASS\": \"CDP\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"58945\", \"CAPITAL\": \"N\", \"AREALAND\": 10.413000, \"AREAWATER\": 0.648000, \"POP_CL\": 6, \"POP2000\": 14730, \"WHITE\": 13902, \"BLACK\": 286, \"AMERI_ES\": 55, \"ASIAN\": 159, \"HAWN_PI\": 12, \"OTHER\": 119, \"MULT_RACE\": 197, \"HISPANIC\": 313, \"MALES\": 7256, \"FEMALES\": 7474, \"AGE_UNDER5\": 915, \"AGE_5_17\": 3231, \"AGE_18_21\": 825, \"AGE_22_29\": 1391, \"AGE_30_39\": 2082, \"AGE_40_49\": 2546, \"AGE_50_64\": 2228, \"AGE_65_UP\": 1512, \"MED_AGE\": 35.400000, \"MED_AGE_M\": 33.900000, \"MED_AGE_F\": 36.800000, \"HOUSEHOLDS\": 5673, \"AVE_HH_SZ\": 2.590000, \"HSEHLD_1_M\": 616, \"HSEHLD_1_F\": 847, \"MARHH_CHD\": 1558, \"MARHH_NO_C\": 1644, \"MHH_CHILD\": 97, \"FHH_CHILD\": 401, \"FAMILIES\": 3943, \"AVE_FAM_SZ\": 3.150000, \"HSE_UNITS\": 5898, \"VACANT\": 225, \"OWNER_OCC\": 4105, \"RENTER_OCC\": 1568 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.613329015690084, 43.03892598790349 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Norton Shores\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"59140\", \"CAPITAL\": \"N\", \"AREALAND\": 23.244000, \"AREAWATER\": 1.218000, \"POP_CL\": 6, \"POP2000\": 22527, \"WHITE\": 21317, \"BLACK\": 368, \"AMERI_ES\": 164, \"ASIAN\": 189, \"HAWN_PI\": 2, \"OTHER\": 143, \"MULT_RACE\": 344, \"HISPANIC\": 606, \"MALES\": 10936, \"FEMALES\": 11591, \"AGE_UNDER5\": 1250, \"AGE_5_17\": 4335, \"AGE_18_21\": 859, \"AGE_22_29\": 1683, \"AGE_30_39\": 2929, \"AGE_40_49\": 3653, \"AGE_50_64\": 3918, \"AGE_65_UP\": 3900, \"MED_AGE\": 40.600000, \"MED_AGE_M\": 39.200000, \"MED_AGE_F\": 41.800000, \"HOUSEHOLDS\": 8996, \"AVE_HH_SZ\": 2.480000, \"HSEHLD_1_M\": 868, \"HSEHLD_1_F\": 1368, \"MARHH_CHD\": 2198, \"MARHH_NO_C\": 3202, \"MHH_CHILD\": 162, \"FHH_CHILD\": 405, \"FAMILIES\": 6399, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 9679, \"VACANT\": 683, \"OWNER_OCC\": 8045, \"RENTER_OCC\": 951 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.256696006338586, 43.176281992828635 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Novi\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"59440\", \"CAPITAL\": \"N\", \"AREALAND\": 30.469000, \"AREAWATER\": 0.858000, \"POP_CL\": 6, \"POP2000\": 47386, \"WHITE\": 41349, \"BLACK\": 908, \"AMERI_ES\": 89, \"ASIAN\": 4106, \"HAWN_PI\": 8, \"OTHER\": 223, \"MULT_RACE\": 703, \"HISPANIC\": 855, \"MALES\": 23322, \"FEMALES\": 24064, \"AGE_UNDER5\": 3498, \"AGE_5_17\": 9571, \"AGE_18_21\": 1588, \"AGE_22_29\": 4828, \"AGE_30_39\": 8755, \"AGE_40_49\": 8832, \"AGE_50_64\": 6476, \"AGE_65_UP\": 3838, \"MED_AGE\": 35.200000, \"MED_AGE_M\": 34.400000, \"MED_AGE_F\": 35.900000, \"HOUSEHOLDS\": 18726, \"AVE_HH_SZ\": 2.520000, \"HSEHLD_1_M\": 2401, \"HSEHLD_1_F\": 2866, \"MARHH_CHD\": 5808, \"MARHH_NO_C\": 4717, \"MHH_CHILD\": 219, \"FHH_CHILD\": 770, \"FAMILIES\": 12324, \"AVE_FAM_SZ\": 3.170000, \"HSE_UNITS\": 19649, \"VACANT\": 923, \"OWNER_OCC\": 13308, \"RENTER_OCC\": 5418 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.477531179231448, 42.48030095163341 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Oak Park\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"59920\", \"CAPITAL\": \"N\", \"AREALAND\": 5.022000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 29793, \"WHITE\": 13989, \"BLACK\": 13690, \"AMERI_ES\": 52, \"ASIAN\": 648, \"HAWN_PI\": 5, \"OTHER\": 179, \"MULT_RACE\": 1230, \"HISPANIC\": 381, \"MALES\": 13947, \"FEMALES\": 15846, \"AGE_UNDER5\": 2022, \"AGE_5_17\": 6369, \"AGE_18_21\": 1374, \"AGE_22_29\": 3089, \"AGE_30_39\": 4472, \"AGE_40_49\": 4559, \"AGE_50_64\": 4282, \"AGE_65_UP\": 3626, \"MED_AGE\": 34.600000, \"MED_AGE_M\": 31.900000, \"MED_AGE_F\": 36.800000, \"HOUSEHOLDS\": 11104, \"AVE_HH_SZ\": 2.680000, \"HSEHLD_1_M\": 1114, \"HSEHLD_1_F\": 1838, \"MARHH_CHD\": 2427, \"MARHH_NO_C\": 2459, \"MHH_CHILD\": 241, \"FHH_CHILD\": 1155, \"FAMILIES\": 7596, \"AVE_FAM_SZ\": 3.290000, \"HSE_UNITS\": 11370, \"VACANT\": 266, \"OWNER_OCC\": 8310, \"RENTER_OCC\": 2794 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.179520240947028, 42.467234943293342 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Okemos\", \"CLASS\": \"CDP\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"60340\", \"CAPITAL\": \"N\", \"AREALAND\": 16.806000, \"AREAWATER\": 0.025000, \"POP_CL\": 6, \"POP2000\": 22805, \"WHITE\": 19159, \"BLACK\": 958, \"AMERI_ES\": 76, \"ASIAN\": 1980, \"HAWN_PI\": 9, \"OTHER\": 139, \"MULT_RACE\": 484, \"HISPANIC\": 509, \"MALES\": 11020, \"FEMALES\": 11785, \"AGE_UNDER5\": 1148, \"AGE_5_17\": 4312, \"AGE_18_21\": 1635, \"AGE_22_29\": 3061, \"AGE_30_39\": 2704, \"AGE_40_49\": 3933, \"AGE_50_64\": 3792, \"AGE_65_UP\": 2220, \"MED_AGE\": 35.300000, \"MED_AGE_M\": 33.500000, \"MED_AGE_F\": 36.700000, \"HOUSEHOLDS\": 9194, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 1016, \"HSEHLD_1_F\": 1369, \"MARHH_CHD\": 2389, \"MARHH_NO_C\": 2424, \"MHH_CHILD\": 108, \"FHH_CHILD\": 418, \"FAMILIES\": 5648, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 9592, \"VACANT\": 398, \"OWNER_OCC\": 5968, \"RENTER_OCC\": 3226 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.42257506636318, 42.710683972207505 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Owosso\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"61940\", \"CAPITAL\": \"N\", \"AREALAND\": 4.950000, \"AREAWATER\": 0.015000, \"POP_CL\": 6, \"POP2000\": 15713, \"WHITE\": 15244, \"BLACK\": 27, \"AMERI_ES\": 94, \"ASIAN\": 59, \"HAWN_PI\": 0, \"OTHER\": 119, \"MULT_RACE\": 170, \"HISPANIC\": 465, \"MALES\": 7412, \"FEMALES\": 8301, \"AGE_UNDER5\": 1202, \"AGE_5_17\": 3091, \"AGE_18_21\": 951, \"AGE_22_29\": 1681, \"AGE_30_39\": 2336, \"AGE_40_49\": 2230, \"AGE_50_64\": 2106, \"AGE_65_UP\": 2116, \"MED_AGE\": 34.200000, \"MED_AGE_M\": 32.300000, \"MED_AGE_F\": 36.000000, \"HOUSEHOLDS\": 6340, \"AVE_HH_SZ\": 2.450000, \"HSEHLD_1_M\": 688, \"HSEHLD_1_F\": 1202, \"MARHH_CHD\": 1327, \"MARHH_NO_C\": 1523, \"MHH_CHILD\": 194, \"FHH_CHILD\": 601, \"FAMILIES\": 4074, \"AVE_FAM_SZ\": 3.030000, \"HSE_UNITS\": 6724, \"VACANT\": 384, \"OWNER_OCC\": 4170, \"RENTER_OCC\": 2170 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.17449108993705, 42.996123967041399 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Plymouth Township\", \"CLASS\": \"CDP\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"65085\", \"CAPITAL\": \"N\", \"AREALAND\": 15.918000, \"AREAWATER\": 0.040000, \"POP_CL\": 6, \"POP2000\": 27798, \"WHITE\": 25680, \"BLACK\": 822, \"AMERI_ES\": 76, \"ASIAN\": 759, \"HAWN_PI\": 4, \"OTHER\": 110, \"MULT_RACE\": 347, \"HISPANIC\": 455, \"MALES\": 13958, \"FEMALES\": 13840, \"AGE_UNDER5\": 1668, \"AGE_5_17\": 4627, \"AGE_18_21\": 1002, \"AGE_22_29\": 2271, \"AGE_30_39\": 4549, \"AGE_40_49\": 4745, \"AGE_50_64\": 5516, \"AGE_65_UP\": 3420, \"MED_AGE\": 39.600000, \"MED_AGE_M\": 38.700000, \"MED_AGE_F\": 40.600000, \"HOUSEHOLDS\": 10757, \"AVE_HH_SZ\": 2.490000, \"HSEHLD_1_M\": 1073, \"HSEHLD_1_F\": 1586, \"MARHH_CHD\": 2884, \"MARHH_NO_C\": 3907, \"MHH_CHILD\": 99, \"FHH_CHILD\": 315, \"FAMILIES\": 7684, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 11043, \"VACANT\": 286, \"OWNER_OCC\": 8973, \"RENTER_OCC\": 1784 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.481870176747506, 42.370036952013656 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pontiac\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"65440\", \"CAPITAL\": \"N\", \"AREALAND\": 19.992000, \"AREAWATER\": 0.220000, \"POP_CL\": 7, \"POP2000\": 66337, \"WHITE\": 25934, \"BLACK\": 31791, \"AMERI_ES\": 382, \"ASIAN\": 1591, \"HAWN_PI\": 26, \"OTHER\": 4291, \"MULT_RACE\": 2322, \"HISPANIC\": 8463, \"MALES\": 32285, \"FEMALES\": 34052, \"AGE_UNDER5\": 5900, \"AGE_5_17\": 14420, \"AGE_18_21\": 3663, \"AGE_22_29\": 9167, \"AGE_30_39\": 10620, \"AGE_40_49\": 8911, \"AGE_50_64\": 8005, \"AGE_65_UP\": 5651, \"MED_AGE\": 30.000000, \"MED_AGE_M\": 29.100000, \"MED_AGE_F\": 30.800000, \"HOUSEHOLDS\": 24234, \"AVE_HH_SZ\": 2.680000, \"HSEHLD_1_M\": 3409, \"HSEHLD_1_F\": 3724, \"MARHH_CHD\": 3600, \"MARHH_NO_C\": 4024, \"MHH_CHILD\": 762, \"FHH_CHILD\": 3864, \"FAMILIES\": 15276, \"AVE_FAM_SZ\": 3.320000, \"HSE_UNITS\": 26336, \"VACANT\": 2102, \"OWNER_OCC\": 12786, \"RENTER_OCC\": 11448 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.292565218793513, 42.646037946095824 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Portage\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"65560\", \"CAPITAL\": \"N\", \"AREALAND\": 32.203000, \"AREAWATER\": 2.823000, \"POP_CL\": 6, \"POP2000\": 44897, \"WHITE\": 40746, \"BLACK\": 1676, \"AMERI_ES\": 135, \"ASIAN\": 1187, \"HAWN_PI\": 10, \"OTHER\": 315, \"MULT_RACE\": 828, \"HISPANIC\": 868, \"MALES\": 21528, \"FEMALES\": 23369, \"AGE_UNDER5\": 3098, \"AGE_5_17\": 8773, \"AGE_18_21\": 2119, \"AGE_22_29\": 4772, \"AGE_30_39\": 6606, \"AGE_40_49\": 7352, \"AGE_50_64\": 6886, \"AGE_65_UP\": 5291, \"MED_AGE\": 35.800000, \"MED_AGE_M\": 34.700000, \"MED_AGE_F\": 36.900000, \"HOUSEHOLDS\": 18138, \"AVE_HH_SZ\": 2.450000, \"HSEHLD_1_M\": 2005, \"HSEHLD_1_F\": 2922, \"MARHH_CHD\": 4679, \"MARHH_NO_C\": 5184, \"MHH_CHILD\": 320, \"FHH_CHILD\": 1196, \"FAMILIES\": 12139, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 18880, \"VACANT\": 742, \"OWNER_OCC\": 12502, \"RENTER_OCC\": 5636 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.58852501467365, 42.209591988136971 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Port Huron\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"65820\", \"CAPITAL\": \"N\", \"AREALAND\": 8.081000, \"AREAWATER\": 4.163000, \"POP_CL\": 6, \"POP2000\": 32338, \"WHITE\": 28034, \"BLACK\": 2504, \"AMERI_ES\": 281, \"ASIAN\": 179, \"HAWN_PI\": 4, \"OTHER\": 428, \"MULT_RACE\": 908, \"HISPANIC\": 1383, \"MALES\": 15379, \"FEMALES\": 16959, \"AGE_UNDER5\": 2513, \"AGE_5_17\": 6216, \"AGE_18_21\": 1791, \"AGE_22_29\": 3701, \"AGE_30_39\": 4847, \"AGE_40_49\": 4510, \"AGE_50_64\": 4220, \"AGE_65_UP\": 4540, \"MED_AGE\": 34.000000, \"MED_AGE_M\": 32.100000, \"MED_AGE_F\": 36.000000, \"HOUSEHOLDS\": 12961, \"AVE_HH_SZ\": 2.430000, \"HSEHLD_1_M\": 1636, \"HSEHLD_1_F\": 2495, \"MARHH_CHD\": 2278, \"MARHH_NO_C\": 2886, \"MHH_CHILD\": 362, \"FHH_CHILD\": 1562, \"FAMILIES\": 8044, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 14003, \"VACANT\": 1042, \"OWNER_OCC\": 7409, \"RENTER_OCC\": 5552 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.437504504046075, 42.980368916652232 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Redford\", \"CLASS\": \"CDP\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"67620\", \"CAPITAL\": \"N\", \"AREALAND\": 11.228000, \"AREAWATER\": 0.000000, \"POP_CL\": 7, \"POP2000\": 51622, \"WHITE\": 45418, \"BLACK\": 4410, \"AMERI_ES\": 222, \"ASIAN\": 392, \"HAWN_PI\": 10, \"OTHER\": 295, \"MULT_RACE\": 875, \"HISPANIC\": 1044, \"MALES\": 25300, \"FEMALES\": 26322, \"AGE_UNDER5\": 3541, \"AGE_5_17\": 9537, \"AGE_18_21\": 2112, \"AGE_22_29\": 5291, \"AGE_30_39\": 9151, \"AGE_40_49\": 8267, \"AGE_50_64\": 6025, \"AGE_65_UP\": 7698, \"MED_AGE\": 35.900000, \"MED_AGE_M\": 34.600000, \"MED_AGE_F\": 37.200000, \"HOUSEHOLDS\": 20182, \"AVE_HH_SZ\": 2.540000, \"HSEHLD_1_M\": 2392, \"HSEHLD_1_F\": 3122, \"MARHH_CHD\": 4819, \"MARHH_NO_C\": 5353, \"MHH_CHILD\": 430, \"FHH_CHILD\": 1168, \"FAMILIES\": 13589, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 20605, \"VACANT\": 423, \"OWNER_OCC\": 18183, \"RENTER_OCC\": 1999 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.297079213245965, 42.394585946894374 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Riverview\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"68880\", \"CAPITAL\": \"N\", \"AREALAND\": 4.406000, \"AREAWATER\": 0.121000, \"POP_CL\": 6, \"POP2000\": 13272, \"WHITE\": 12497, \"BLACK\": 276, \"AMERI_ES\": 57, \"ASIAN\": 249, \"HAWN_PI\": 2, \"OTHER\": 42, \"MULT_RACE\": 149, \"HISPANIC\": 327, \"MALES\": 6185, \"FEMALES\": 7087, \"AGE_UNDER5\": 707, \"AGE_5_17\": 2126, \"AGE_18_21\": 613, \"AGE_22_29\": 1219, \"AGE_30_39\": 1644, \"AGE_40_49\": 1998, \"AGE_50_64\": 2346, \"AGE_65_UP\": 2619, \"MED_AGE\": 41.600000, \"MED_AGE_M\": 38.700000, \"MED_AGE_F\": 43.800000, \"HOUSEHOLDS\": 5352, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 544, \"HSEHLD_1_F\": 1011, \"MARHH_CHD\": 1123, \"MARHH_NO_C\": 1718, \"MHH_CHILD\": 68, \"FHH_CHILD\": 300, \"FAMILIES\": 3571, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 5532, \"VACANT\": 180, \"OWNER_OCC\": 3450, \"RENTER_OCC\": 1902 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.18844923301836, 42.174939944391575 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Rochester\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"69020\", \"CAPITAL\": \"N\", \"AREALAND\": 3.861000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10467, \"WHITE\": 9670, \"BLACK\": 234, \"AMERI_ES\": 26, \"ASIAN\": 386, \"HAWN_PI\": 1, \"OTHER\": 25, \"MULT_RACE\": 125, \"HISPANIC\": 176, \"MALES\": 5077, \"FEMALES\": 5390, \"AGE_UNDER5\": 809, \"AGE_5_17\": 1608, \"AGE_18_21\": 364, \"AGE_22_29\": 1300, \"AGE_30_39\": 2075, \"AGE_40_49\": 1683, \"AGE_50_64\": 1559, \"AGE_65_UP\": 1069, \"MED_AGE\": 35.600000, \"MED_AGE_M\": 34.600000, \"MED_AGE_F\": 36.500000, \"HOUSEHOLDS\": 4667, \"AVE_HH_SZ\": 2.220000, \"HSEHLD_1_M\": 758, \"HSEHLD_1_F\": 959, \"MARHH_CHD\": 1083, \"MARHH_NO_C\": 1151, \"MHH_CHILD\": 44, \"FHH_CHILD\": 159, \"FAMILIES\": 2638, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 5056, \"VACANT\": 389, \"OWNER_OCC\": 2994, \"RENTER_OCC\": 1673 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.126882258263691, 42.684981941087813 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Rochester Hills\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"69035\", \"CAPITAL\": \"N\", \"AREALAND\": 32.849000, \"AREAWATER\": 0.076000, \"POP_CL\": 7, \"POP2000\": 68825, \"WHITE\": 61084, \"BLACK\": 1667, \"AMERI_ES\": 139, \"ASIAN\": 4652, \"HAWN_PI\": 20, \"OTHER\": 322, \"MULT_RACE\": 941, \"HISPANIC\": 1576, \"MALES\": 33539, \"FEMALES\": 35286, \"AGE_UNDER5\": 4490, \"AGE_5_17\": 13384, \"AGE_18_21\": 2679, \"AGE_22_29\": 5552, \"AGE_30_39\": 10643, \"AGE_40_49\": 12552, \"AGE_50_64\": 12200, \"AGE_65_UP\": 7325, \"MED_AGE\": 38.100000, \"MED_AGE_M\": 37.200000, \"MED_AGE_F\": 39.100000, \"HOUSEHOLDS\": 26315, \"AVE_HH_SZ\": 2.590000, \"HSEHLD_1_M\": 2538, \"HSEHLD_1_F\": 3767, \"MARHH_CHD\": 8108, \"MARHH_NO_C\": 8426, \"MHH_CHILD\": 289, \"FHH_CHILD\": 985, \"FAMILIES\": 18967, \"AVE_FAM_SZ\": 3.110000, \"HSE_UNITS\": 27263, \"VACANT\": 948, \"OWNER_OCC\": 20815, \"RENTER_OCC\": 5500 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.158137250122635, 42.665705942089026 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Romulus\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"69420\", \"CAPITAL\": \"N\", \"AREALAND\": 35.910000, \"AREAWATER\": 0.012000, \"POP_CL\": 6, \"POP2000\": 22979, \"WHITE\": 15019, \"BLACK\": 6891, \"AMERI_ES\": 124, \"ASIAN\": 135, \"HAWN_PI\": 20, \"OTHER\": 185, \"MULT_RACE\": 605, \"HISPANIC\": 463, \"MALES\": 11200, \"FEMALES\": 11779, \"AGE_UNDER5\": 1740, \"AGE_5_17\": 4971, \"AGE_18_21\": 1081, \"AGE_22_29\": 2632, \"AGE_30_39\": 3697, \"AGE_40_49\": 3527, \"AGE_50_64\": 3527, \"AGE_65_UP\": 1804, \"MED_AGE\": 32.900000, \"MED_AGE_M\": 32.400000, \"MED_AGE_F\": 33.500000, \"HOUSEHOLDS\": 8439, \"AVE_HH_SZ\": 2.700000, \"HSEHLD_1_M\": 943, \"HSEHLD_1_F\": 1069, \"MARHH_CHD\": 1856, \"MARHH_NO_C\": 2066, \"MHH_CHILD\": 247, \"FHH_CHILD\": 991, \"FAMILIES\": 5944, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 8943, \"VACANT\": 504, \"OWNER_OCC\": 5946, \"RENTER_OCC\": 2493 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.371596195240599, 42.234021949388492 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Roseville\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"69800\", \"CAPITAL\": \"N\", \"AREALAND\": 9.811000, \"AREAWATER\": 0.016000, \"POP_CL\": 6, \"POP2000\": 48129, \"WHITE\": 44968, \"BLACK\": 1252, \"AMERI_ES\": 201, \"ASIAN\": 785, \"HAWN_PI\": 15, \"OTHER\": 154, \"MULT_RACE\": 754, \"HISPANIC\": 722, \"MALES\": 23297, \"FEMALES\": 24832, \"AGE_UNDER5\": 3140, \"AGE_5_17\": 7997, \"AGE_18_21\": 2172, \"AGE_22_29\": 5709, \"AGE_30_39\": 8029, \"AGE_40_49\": 7218, \"AGE_50_64\": 6445, \"AGE_65_UP\": 7419, \"MED_AGE\": 36.200000, \"MED_AGE_M\": 34.700000, \"MED_AGE_F\": 38.000000, \"HOUSEHOLDS\": 19976, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 2563, \"HSEHLD_1_F\": 3580, \"MARHH_CHD\": 4098, \"MARHH_NO_C\": 5169, \"MHH_CHILD\": 397, \"FHH_CHILD\": 1211, \"FAMILIES\": 12723, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 20519, \"VACANT\": 543, \"OWNER_OCC\": 15021, \"RENTER_OCC\": 4955 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.938515305076734, 42.503284935771738 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Royal Oak\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"70040\", \"CAPITAL\": \"N\", \"AREALAND\": 11.816000, \"AREAWATER\": 0.001000, \"POP_CL\": 7, \"POP2000\": 60062, \"WHITE\": 56941, \"BLACK\": 927, \"AMERI_ES\": 157, \"ASIAN\": 939, \"HAWN_PI\": 32, \"OTHER\": 228, \"MULT_RACE\": 838, \"HISPANIC\": 781, \"MALES\": 29302, \"FEMALES\": 30760, \"AGE_UNDER5\": 3128, \"AGE_5_17\": 7567, \"AGE_18_21\": 2075, \"AGE_22_29\": 8873, \"AGE_30_39\": 11646, \"AGE_40_49\": 9845, \"AGE_50_64\": 7970, \"AGE_65_UP\": 8958, \"MED_AGE\": 36.900000, \"MED_AGE_M\": 35.100000, \"MED_AGE_F\": 38.900000, \"HOUSEHOLDS\": 28880, \"AVE_HH_SZ\": 2.060000, \"HSEHLD_1_M\": 5100, \"HSEHLD_1_F\": 6693, \"MARHH_CHD\": 4700, \"MARHH_NO_C\": 6812, \"MHH_CHILD\": 256, \"FHH_CHILD\": 944, \"FAMILIES\": 14447, \"AVE_FAM_SZ\": 2.860000, \"HSE_UNITS\": 29942, \"VACANT\": 1062, \"OWNER_OCC\": 20246, \"RENTER_OCC\": 8634 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.150606248631817, 42.50456794232656 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Saginaw\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"70520\", \"CAPITAL\": \"N\", \"AREALAND\": 17.443000, \"AREAWATER\": 0.724000, \"POP_CL\": 7, \"POP2000\": 61799, \"WHITE\": 29056, \"BLACK\": 26735, \"AMERI_ES\": 302, \"ASIAN\": 205, \"HAWN_PI\": 10, \"OTHER\": 3619, \"MULT_RACE\": 1872, \"HISPANIC\": 7259, \"MALES\": 28795, \"FEMALES\": 33004, \"AGE_UNDER5\": 5330, \"AGE_5_17\": 14205, \"AGE_18_21\": 3635, \"AGE_22_29\": 7067, \"AGE_30_39\": 8453, \"AGE_40_49\": 8668, \"AGE_50_64\": 7373, \"AGE_65_UP\": 7068, \"MED_AGE\": 30.700000, \"MED_AGE_M\": 29.100000, \"MED_AGE_F\": 32.400000, \"HOUSEHOLDS\": 23182, \"AVE_HH_SZ\": 2.600000, \"HSEHLD_1_M\": 3034, \"HSEHLD_1_F\": 3806, \"MARHH_CHD\": 3269, \"MARHH_NO_C\": 4348, \"MHH_CHILD\": 589, \"FHH_CHILD\": 4356, \"FAMILIES\": 15105, \"AVE_FAM_SZ\": 3.230000, \"HSE_UNITS\": 25639, \"VACANT\": 2457, \"OWNER_OCC\": 14749, \"RENTER_OCC\": 8433 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.95082911887053, 43.420925961490454 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Saginaw Township North\", \"CLASS\": \"CDP\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"70545\", \"CAPITAL\": \"N\", \"AREALAND\": 13.499000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 24994, \"WHITE\": 22013, \"BLACK\": 1338, \"AMERI_ES\": 67, \"ASIAN\": 771, \"HAWN_PI\": 0, \"OTHER\": 403, \"MULT_RACE\": 402, \"HISPANIC\": 1023, \"MALES\": 11604, \"FEMALES\": 13390, \"AGE_UNDER5\": 1309, \"AGE_5_17\": 3854, \"AGE_18_21\": 1454, \"AGE_22_29\": 2551, \"AGE_30_39\": 2924, \"AGE_40_49\": 3662, \"AGE_50_64\": 4297, \"AGE_65_UP\": 4943, \"MED_AGE\": 41.200000, \"MED_AGE_M\": 38.100000, \"MED_AGE_F\": 44.000000, \"HOUSEHOLDS\": 10704, \"AVE_HH_SZ\": 2.260000, \"HSEHLD_1_M\": 1162, \"HSEHLD_1_F\": 2303, \"MARHH_CHD\": 2045, \"MARHH_NO_C\": 3277, \"MHH_CHILD\": 145, \"FHH_CHILD\": 540, \"FAMILIES\": 6571, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 11209, \"VACANT\": 505, \"OWNER_OCC\": 6627, \"RENTER_OCC\": 4077 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.003325112728788, 43.455224962631107 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Saginaw Township South\", \"CLASS\": \"CDP\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"70550\", \"CAPITAL\": \"N\", \"AREALAND\": 6.904000, \"AREAWATER\": 0.139000, \"POP_CL\": 6, \"POP2000\": 13801, \"WHITE\": 12401, \"BLACK\": 740, \"AMERI_ES\": 35, \"ASIAN\": 270, \"HAWN_PI\": 2, \"OTHER\": 174, \"MULT_RACE\": 179, \"HISPANIC\": 609, \"MALES\": 6540, \"FEMALES\": 7261, \"AGE_UNDER5\": 697, \"AGE_5_17\": 2314, \"AGE_18_21\": 620, \"AGE_22_29\": 1186, \"AGE_30_39\": 1602, \"AGE_40_49\": 2205, \"AGE_50_64\": 2585, \"AGE_65_UP\": 2592, \"MED_AGE\": 42.200000, \"MED_AGE_M\": 40.600000, \"MED_AGE_F\": 43.500000, \"HOUSEHOLDS\": 6079, \"AVE_HH_SZ\": 2.270000, \"HSEHLD_1_M\": 715, \"HSEHLD_1_F\": 1233, \"MARHH_CHD\": 1213, \"MARHH_NO_C\": 1989, \"MHH_CHILD\": 58, \"FHH_CHILD\": 310, \"FAMILIES\": 3858, \"AVE_FAM_SZ\": 2.880000, \"HSE_UNITS\": 6327, \"VACANT\": 248, \"OWNER_OCC\": 4242, \"RENTER_OCC\": 1837 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.012824111288722, 43.423824962896703 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"St. Clair Shores\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"70760\", \"CAPITAL\": \"N\", \"AREALAND\": 11.530000, \"AREAWATER\": 2.721000, \"POP_CL\": 7, \"POP2000\": 63096, \"WHITE\": 61135, \"BLACK\": 435, \"AMERI_ES\": 175, \"ASIAN\": 531, \"HAWN_PI\": 14, \"OTHER\": 111, \"MULT_RACE\": 695, \"HISPANIC\": 745, \"MALES\": 30044, \"FEMALES\": 33052, \"AGE_UNDER5\": 3204, \"AGE_5_17\": 9536, \"AGE_18_21\": 2250, \"AGE_22_29\": 5281, \"AGE_30_39\": 9108, \"AGE_40_49\": 10272, \"AGE_50_64\": 9720, \"AGE_65_UP\": 13725, \"MED_AGE\": 42.000000, \"MED_AGE_M\": 39.800000, \"MED_AGE_F\": 44.000000, \"HOUSEHOLDS\": 27434, \"AVE_HH_SZ\": 2.280000, \"HSEHLD_1_M\": 3331, \"HSEHLD_1_F\": 5640, \"MARHH_CHD\": 5237, \"MARHH_NO_C\": 8344, \"MHH_CHILD\": 328, \"FHH_CHILD\": 1055, \"FAMILIES\": 17287, \"AVE_FAM_SZ\": 2.920000, \"HSE_UNITS\": 28208, \"VACANT\": 774, \"OWNER_OCC\": 23537, \"RENTER_OCC\": 3897 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.896778317041353, 42.487768934482283 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sault Ste. Marie\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"71740\", \"CAPITAL\": \"N\", \"AREALAND\": 14.818000, \"AREAWATER\": 5.379000, \"POP_CL\": 6, \"POP2000\": 16542, \"WHITE\": 12239, \"BLACK\": 1077, \"AMERI_ES\": 2270, \"ASIAN\": 107, \"HAWN_PI\": 9, \"OTHER\": 77, \"MULT_RACE\": 763, \"HISPANIC\": 308, \"MALES\": 9090, \"FEMALES\": 7452, \"AGE_UNDER5\": 851, \"AGE_5_17\": 2355, \"AGE_18_21\": 1857, \"AGE_22_29\": 2469, \"AGE_30_39\": 2677, \"AGE_40_49\": 2366, \"AGE_50_64\": 1905, \"AGE_65_UP\": 2062, \"MED_AGE\": 32.800000, \"MED_AGE_M\": 31.600000, \"MED_AGE_F\": 34.900000, \"HOUSEHOLDS\": 5742, \"AVE_HH_SZ\": 2.280000, \"HSEHLD_1_M\": 760, \"HSEHLD_1_F\": 1178, \"MARHH_CHD\": 1000, \"MARHH_NO_C\": 1289, \"MHH_CHILD\": 135, \"FHH_CHILD\": 519, \"FAMILIES\": 3301, \"AVE_FAM_SZ\": 2.920000, \"HSE_UNITS\": 6237, \"VACANT\": 495, \"OWNER_OCC\": 3558, \"RENTER_OCC\": 2184 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.352669097986364, 46.488516966416434 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Shelby\", \"CLASS\": \"CDP\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"72818\", \"CAPITAL\": \"N\", \"AREALAND\": 34.682000, \"AREAWATER\": 0.541000, \"POP_CL\": 7, \"POP2000\": 65159, \"WHITE\": 61870, \"BLACK\": 553, \"AMERI_ES\": 158, \"ASIAN\": 1374, \"HAWN_PI\": 12, \"OTHER\": 291, \"MULT_RACE\": 901, \"HISPANIC\": 1112, \"MALES\": 32512, \"FEMALES\": 32647, \"AGE_UNDER5\": 4044, \"AGE_5_17\": 12175, \"AGE_18_21\": 3089, \"AGE_22_29\": 6919, \"AGE_30_39\": 10111, \"AGE_40_49\": 10619, \"AGE_50_64\": 11337, \"AGE_65_UP\": 6865, \"MED_AGE\": 36.600000, \"MED_AGE_M\": 35.800000, \"MED_AGE_F\": 37.400000, \"HOUSEHOLDS\": 24486, \"AVE_HH_SZ\": 2.650000, \"HSEHLD_1_M\": 2554, \"HSEHLD_1_F\": 2723, \"MARHH_CHD\": 6956, \"MARHH_NO_C\": 8375, \"MHH_CHILD\": 367, \"FHH_CHILD\": 931, \"FAMILIES\": 17935, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 25265, \"VACANT\": 779, \"OWNER_OCC\": 19205, \"RENTER_OCC\": 5281 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.03300328249135, 42.670832938231534 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Southfield\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"74900\", \"CAPITAL\": \"N\", \"AREALAND\": 26.233000, \"AREAWATER\": 0.006000, \"POP_CL\": 7, \"POP2000\": 78296, \"WHITE\": 30406, \"BLACK\": 42454, \"AMERI_ES\": 157, \"ASIAN\": 2416, \"HAWN_PI\": 24, \"OTHER\": 498, \"MULT_RACE\": 2341, \"HISPANIC\": 934, \"MALES\": 35955, \"FEMALES\": 42341, \"AGE_UNDER5\": 4358, \"AGE_5_17\": 12518, \"AGE_18_21\": 3318, \"AGE_22_29\": 9299, \"AGE_30_39\": 11508, \"AGE_40_49\": 12132, \"AGE_50_64\": 13275, \"AGE_65_UP\": 11888, \"MED_AGE\": 38.300000, \"MED_AGE_M\": 36.000000, \"MED_AGE_F\": 40.400000, \"HOUSEHOLDS\": 33987, \"AVE_HH_SZ\": 2.270000, \"HSEHLD_1_M\": 4714, \"HSEHLD_1_F\": 7596, \"MARHH_CHD\": 5570, \"MARHH_NO_C\": 8101, \"MHH_CHILD\": 482, \"FHH_CHILD\": 2534, \"FAMILIES\": 19774, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 35698, \"VACANT\": 1711, \"OWNER_OCC\": 18375, \"RENTER_OCC\": 15612 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.244955226164578, 42.479640945172363 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Southgate\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"74960\", \"CAPITAL\": \"N\", \"AREALAND\": 6.856000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 30136, \"WHITE\": 28224, \"BLACK\": 635, \"AMERI_ES\": 151, \"ASIAN\": 502, \"HAWN_PI\": 13, \"OTHER\": 256, \"MULT_RACE\": 355, \"HISPANIC\": 1198, \"MALES\": 14525, \"FEMALES\": 15611, \"AGE_UNDER5\": 1622, \"AGE_5_17\": 4862, \"AGE_18_21\": 1366, \"AGE_22_29\": 3366, \"AGE_30_39\": 4565, \"AGE_40_49\": 4688, \"AGE_50_64\": 4777, \"AGE_65_UP\": 4890, \"MED_AGE\": 38.500000, \"MED_AGE_M\": 36.900000, \"MED_AGE_F\": 40.000000, \"HOUSEHOLDS\": 12836, \"AVE_HH_SZ\": 2.330000, \"HSEHLD_1_M\": 1723, \"HSEHLD_1_F\": 2425, \"MARHH_CHD\": 2641, \"MARHH_NO_C\": 3676, \"MHH_CHILD\": 213, \"FHH_CHILD\": 579, \"FAMILIES\": 8043, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 13361, \"VACANT\": 525, \"OWNER_OCC\": 9063, \"RENTER_OCC\": 3773 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.198125231408923, 42.205288944585043 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"South Lyon\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"75100\", \"CAPITAL\": \"N\", \"AREALAND\": 3.393000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10036, \"WHITE\": 9703, \"BLACK\": 39, \"AMERI_ES\": 17, \"ASIAN\": 109, \"HAWN_PI\": 12, \"OTHER\": 40, \"MULT_RACE\": 116, \"HISPANIC\": 161, \"MALES\": 4786, \"FEMALES\": 5250, \"AGE_UNDER5\": 883, \"AGE_5_17\": 1608, \"AGE_18_21\": 370, \"AGE_22_29\": 1089, \"AGE_30_39\": 2029, \"AGE_40_49\": 1419, \"AGE_50_64\": 1131, \"AGE_65_UP\": 1507, \"MED_AGE\": 35.200000, \"MED_AGE_M\": 34.100000, \"MED_AGE_F\": 36.200000, \"HOUSEHOLDS\": 4246, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 469, \"HSEHLD_1_F\": 835, \"MARHH_CHD\": 1098, \"MARHH_NO_C\": 1162, \"MHH_CHILD\": 61, \"FHH_CHILD\": 186, \"FAMILIES\": 2706, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 4461, \"VACANT\": 215, \"OWNER_OCC\": 3178, \"RENTER_OCC\": 1068 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.651163149800041, 42.462813956147812 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sterling Heights\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"76460\", \"CAPITAL\": \"N\", \"AREALAND\": 36.641000, \"AREAWATER\": 0.052000, \"POP_CL\": 8, \"POP2000\": 124471, \"WHITE\": 112899, \"BLACK\": 1614, \"AMERI_ES\": 260, \"ASIAN\": 6123, \"HAWN_PI\": 45, \"OTHER\": 418, \"MULT_RACE\": 3112, \"HISPANIC\": 1665, \"MALES\": 60970, \"FEMALES\": 63501, \"AGE_UNDER5\": 7729, \"AGE_5_17\": 22236, \"AGE_18_21\": 5811, \"AGE_22_29\": 13352, \"AGE_30_39\": 19228, \"AGE_40_49\": 19408, \"AGE_50_64\": 22069, \"AGE_65_UP\": 14638, \"MED_AGE\": 37.000000, \"MED_AGE_M\": 35.700000, \"MED_AGE_F\": 38.200000, \"HOUSEHOLDS\": 46319, \"AVE_HH_SZ\": 2.660000, \"HSEHLD_1_M\": 4794, \"HSEHLD_1_F\": 6366, \"MARHH_CHD\": 12862, \"MARHH_NO_C\": 15097, \"MHH_CHILD\": 544, \"FHH_CHILD\": 1842, \"FAMILIES\": 33392, \"AVE_FAM_SZ\": 3.210000, \"HSE_UNITS\": 47547, \"VACANT\": 1228, \"OWNER_OCC\": 36584, \"RENTER_OCC\": 9735 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.02812628172363, 42.579818938358919 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sturgis\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"76960\", \"CAPITAL\": \"N\", \"AREALAND\": 5.957000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11285, \"WHITE\": 10306, \"BLACK\": 139, \"AMERI_ES\": 39, \"ASIAN\": 78, \"HAWN_PI\": 0, \"OTHER\": 540, \"MULT_RACE\": 183, \"HISPANIC\": 1499, \"MALES\": 5424, \"FEMALES\": 5861, \"AGE_UNDER5\": 997, \"AGE_5_17\": 2191, \"AGE_18_21\": 758, \"AGE_22_29\": 1387, \"AGE_30_39\": 1524, \"AGE_40_49\": 1458, \"AGE_50_64\": 1318, \"AGE_65_UP\": 1652, \"MED_AGE\": 32.100000, \"MED_AGE_M\": 29.200000, \"MED_AGE_F\": 35.300000, \"HOUSEHOLDS\": 4293, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 461, \"HSEHLD_1_F\": 836, \"MARHH_CHD\": 989, \"MARHH_NO_C\": 968, \"MHH_CHILD\": 136, \"FHH_CHILD\": 392, \"FAMILIES\": 2726, \"AVE_FAM_SZ\": 3.200000, \"HSE_UNITS\": 4529, \"VACANT\": 236, \"OWNER_OCC\": 2499, \"RENTER_OCC\": 1794 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.416575017598561, 41.798234986740525 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Taylor\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"79000\", \"CAPITAL\": \"N\", \"AREALAND\": 23.610000, \"AREAWATER\": 0.000000, \"POP_CL\": 7, \"POP2000\": 65868, \"WHITE\": 56731, \"BLACK\": 5763, \"AMERI_ES\": 448, \"ASIAN\": 1072, \"HAWN_PI\": 21, \"OTHER\": 492, \"MULT_RACE\": 1341, \"HISPANIC\": 2131, \"MALES\": 31767, \"FEMALES\": 34101, \"AGE_UNDER5\": 4925, \"AGE_5_17\": 12985, \"AGE_18_21\": 3434, \"AGE_22_29\": 7703, \"AGE_30_39\": 10278, \"AGE_40_49\": 9439, \"AGE_50_64\": 9867, \"AGE_65_UP\": 7237, \"MED_AGE\": 33.900000, \"MED_AGE_M\": 32.900000, \"MED_AGE_F\": 34.800000, \"HOUSEHOLDS\": 24776, \"AVE_HH_SZ\": 2.630000, \"HSEHLD_1_M\": 2562, \"HSEHLD_1_F\": 3155, \"MARHH_CHD\": 5301, \"MARHH_NO_C\": 6763, \"MHH_CHILD\": 698, \"FHH_CHILD\": 2644, \"FAMILIES\": 17751, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 25905, \"VACANT\": 1129, \"OWNER_OCC\": 17538, \"RENTER_OCC\": 7238 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.264812217146115, 42.231787946421797 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Traverse City\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"80340\", \"CAPITAL\": \"N\", \"AREALAND\": 8.406000, \"AREAWATER\": 0.297000, \"POP_CL\": 6, \"POP2000\": 14532, \"WHITE\": 13950, \"BLACK\": 95, \"AMERI_ES\": 142, \"ASIAN\": 72, \"HAWN_PI\": 5, \"OTHER\": 70, \"MULT_RACE\": 198, \"HISPANIC\": 242, \"MALES\": 6902, \"FEMALES\": 7630, \"AGE_UNDER5\": 724, \"AGE_5_17\": 2223, \"AGE_18_21\": 978, \"AGE_22_29\": 1676, \"AGE_30_39\": 2072, \"AGE_40_49\": 2353, \"AGE_50_64\": 2302, \"AGE_65_UP\": 2204, \"MED_AGE\": 38.100000, \"MED_AGE_M\": 35.500000, \"MED_AGE_F\": 40.700000, \"HOUSEHOLDS\": 6443, \"AVE_HH_SZ\": 2.150000, \"HSEHLD_1_M\": 797, \"HSEHLD_1_F\": 1513, \"MARHH_CHD\": 1018, \"MARHH_NO_C\": 1541, \"MHH_CHILD\": 119, \"FHH_CHILD\": 444, \"FAMILIES\": 3484, \"AVE_FAM_SZ\": 2.820000, \"HSE_UNITS\": 6842, \"VACANT\": 399, \"OWNER_OCC\": 3805, \"RENTER_OCC\": 2638 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.612319018883611, 44.760083987015101 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Trenton\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"80420\", \"CAPITAL\": \"N\", \"AREALAND\": 7.300000, \"AREAWATER\": 0.200000, \"POP_CL\": 6, \"POP2000\": 19584, \"WHITE\": 18981, \"BLACK\": 73, \"AMERI_ES\": 81, \"ASIAN\": 152, \"HAWN_PI\": 5, \"OTHER\": 45, \"MULT_RACE\": 247, \"HISPANIC\": 390, \"MALES\": 9327, \"FEMALES\": 10257, \"AGE_UNDER5\": 1058, \"AGE_5_17\": 3501, \"AGE_18_21\": 720, \"AGE_22_29\": 1347, \"AGE_30_39\": 2648, \"AGE_40_49\": 3245, \"AGE_50_64\": 3228, \"AGE_65_UP\": 3837, \"MED_AGE\": 41.500000, \"MED_AGE_M\": 39.800000, \"MED_AGE_F\": 43.100000, \"HOUSEHOLDS\": 8137, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 807, \"HSEHLD_1_F\": 1519, \"MARHH_CHD\": 1866, \"MARHH_NO_C\": 2658, \"MHH_CHILD\": 121, \"FHH_CHILD\": 441, \"FAMILIES\": 5591, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 8345, \"VACANT\": 208, \"OWNER_OCC\": 6581, \"RENTER_OCC\": 1556 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.195356230792825, 42.142190944685467 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Troy\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"80700\", \"CAPITAL\": \"N\", \"AREALAND\": 33.539000, \"AREAWATER\": 0.102000, \"POP_CL\": 7, \"POP2000\": 80959, \"WHITE\": 66627, \"BLACK\": 1694, \"AMERI_ES\": 125, \"ASIAN\": 10730, \"HAWN_PI\": 18, \"OTHER\": 292, \"MULT_RACE\": 1473, \"HISPANIC\": 1184, \"MALES\": 40081, \"FEMALES\": 40878, \"AGE_UNDER5\": 4991, \"AGE_5_17\": 16227, \"AGE_18_21\": 3004, \"AGE_22_29\": 7038, \"AGE_30_39\": 11873, \"AGE_40_49\": 14878, \"AGE_50_64\": 14662, \"AGE_65_UP\": 8286, \"MED_AGE\": 38.100000, \"MED_AGE_M\": 37.200000, \"MED_AGE_F\": 39.100000, \"HOUSEHOLDS\": 30018, \"AVE_HH_SZ\": 2.690000, \"HSEHLD_1_M\": 2939, \"HSEHLD_1_F\": 3900, \"MARHH_CHD\": 9964, \"MARHH_NO_C\": 9388, \"MHH_CHILD\": 238, \"FHH_CHILD\": 860, \"FAMILIES\": 21874, \"AVE_FAM_SZ\": 3.230000, \"HSE_UNITS\": 30872, \"VACANT\": 854, \"OWNER_OCC\": 23200, \"RENTER_OCC\": 6818 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.142980252062969, 42.580140941879066 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Walker\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"82960\", \"CAPITAL\": \"N\", \"AREALAND\": 25.155000, \"AREAWATER\": 0.277000, \"POP_CL\": 6, \"POP2000\": 21842, \"WHITE\": 20643, \"BLACK\": 322, \"AMERI_ES\": 100, \"ASIAN\": 213, \"HAWN_PI\": 9, \"OTHER\": 238, \"MULT_RACE\": 317, \"HISPANIC\": 601, \"MALES\": 10796, \"FEMALES\": 11046, \"AGE_UNDER5\": 1511, \"AGE_5_17\": 4140, \"AGE_18_21\": 1412, \"AGE_22_29\": 3037, \"AGE_30_39\": 3481, \"AGE_40_49\": 3174, \"AGE_50_64\": 2778, \"AGE_65_UP\": 2309, \"MED_AGE\": 32.400000, \"MED_AGE_M\": 31.300000, \"MED_AGE_F\": 33.400000, \"HOUSEHOLDS\": 8805, \"AVE_HH_SZ\": 2.450000, \"HSEHLD_1_M\": 1285, \"HSEHLD_1_F\": 1372, \"MARHH_CHD\": 2118, \"MARHH_NO_C\": 2287, \"MHH_CHILD\": 141, \"FHH_CHILD\": 460, \"FAMILIES\": 5382, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 9201, \"VACANT\": 396, \"OWNER_OCC\": 5513, \"RENTER_OCC\": 3292 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.740036013127622, 43.000890989071983 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Warren\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"84000\", \"CAPITAL\": \"N\", \"AREALAND\": 34.289000, \"AREAWATER\": 0.025000, \"POP_CL\": 8, \"POP2000\": 138247, \"WHITE\": 126205, \"BLACK\": 3697, \"AMERI_ES\": 494, \"ASIAN\": 4275, \"HAWN_PI\": 30, \"OTHER\": 467, \"MULT_RACE\": 3079, \"HISPANIC\": 1868, \"MALES\": 67560, \"FEMALES\": 70687, \"AGE_UNDER5\": 8784, \"AGE_5_17\": 22939, \"AGE_18_21\": 5950, \"AGE_22_29\": 14349, \"AGE_30_39\": 21919, \"AGE_40_49\": 19630, \"AGE_50_64\": 20805, \"AGE_65_UP\": 23871, \"MED_AGE\": 37.900000, \"MED_AGE_M\": 36.300000, \"MED_AGE_F\": 39.600000, \"HOUSEHOLDS\": 55551, \"AVE_HH_SZ\": 2.470000, \"HSEHLD_1_M\": 6973, \"HSEHLD_1_F\": 9000, \"MARHH_CHD\": 11255, \"MARHH_NO_C\": 16348, \"MHH_CHILD\": 1097, \"FHH_CHILD\": 3071, \"FAMILIES\": 36714, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 57249, \"VACANT\": 1698, \"OWNER_OCC\": 44659, \"RENTER_OCC\": 10892 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.023996280817997, 42.491986938502158 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Waterford\", \"CLASS\": \"CDP\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"84220\", \"CAPITAL\": \"N\", \"AREALAND\": 31.337000, \"AREAWATER\": 3.988000, \"POP_CL\": 7, \"POP2000\": 73150, \"WHITE\": 67777, \"BLACK\": 2114, \"AMERI_ES\": 259, \"ASIAN\": 926, \"HAWN_PI\": 9, \"OTHER\": 829, \"MULT_RACE\": 1236, \"HISPANIC\": 2863, \"MALES\": 36502, \"FEMALES\": 36648, \"AGE_UNDER5\": 5249, \"AGE_5_17\": 11708, \"AGE_18_21\": 3401, \"AGE_22_29\": 8730, \"AGE_30_39\": 13692, \"AGE_40_49\": 11898, \"AGE_50_64\": 10579, \"AGE_65_UP\": 7893, \"MED_AGE\": 35.500000, \"MED_AGE_M\": 34.500000, \"MED_AGE_F\": 36.600000, \"HOUSEHOLDS\": 29387, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 3689, \"HSEHLD_1_F\": 4499, \"MARHH_CHD\": 6787, \"MARHH_NO_C\": 8387, \"MHH_CHILD\": 564, \"FHH_CHILD\": 1584, \"FAMILIES\": 19127, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 30404, \"VACANT\": 1017, \"OWNER_OCC\": 22428, \"RENTER_OCC\": 6959 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.379736200839218, 42.660081948526035 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Waverly\", \"CLASS\": \"CDP\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"84800\", \"CAPITAL\": \"N\", \"AREALAND\": 5.692000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 16194, \"WHITE\": 13170, \"BLACK\": 1732, \"AMERI_ES\": 58, \"ASIAN\": 545, \"HAWN_PI\": 8, \"OTHER\": 253, \"MULT_RACE\": 428, \"HISPANIC\": 739, \"MALES\": 7650, \"FEMALES\": 8544, \"AGE_UNDER5\": 917, \"AGE_5_17\": 2910, \"AGE_18_21\": 970, \"AGE_22_29\": 1702, \"AGE_30_39\": 2078, \"AGE_40_49\": 2667, \"AGE_50_64\": 2830, \"AGE_65_UP\": 2120, \"MED_AGE\": 38.000000, \"MED_AGE_M\": 35.800000, \"MED_AGE_F\": 39.600000, \"HOUSEHOLDS\": 6866, \"AVE_HH_SZ\": 2.340000, \"HSEHLD_1_M\": 758, \"HSEHLD_1_F\": 1363, \"MARHH_CHD\": 1463, \"MARHH_NO_C\": 1926, \"MHH_CHILD\": 101, \"FHH_CHILD\": 450, \"FAMILIES\": 4303, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 7130, \"VACANT\": 264, \"OWNER_OCC\": 4199, \"RENTER_OCC\": 2667 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.620737052945842, 42.739234975564919 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wayne\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"84940\", \"CAPITAL\": \"N\", \"AREALAND\": 6.019000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 19051, \"WHITE\": 16072, \"BLACK\": 2151, \"AMERI_ES\": 117, \"ASIAN\": 275, \"HAWN_PI\": 8, \"OTHER\": 82, \"MULT_RACE\": 346, \"HISPANIC\": 369, \"MALES\": 9158, \"FEMALES\": 9893, \"AGE_UNDER5\": 1400, \"AGE_5_17\": 3628, \"AGE_18_21\": 931, \"AGE_22_29\": 2159, \"AGE_30_39\": 3073, \"AGE_40_49\": 2863, \"AGE_50_64\": 2767, \"AGE_65_UP\": 2230, \"MED_AGE\": 34.700000, \"MED_AGE_M\": 33.700000, \"MED_AGE_F\": 35.800000, \"HOUSEHOLDS\": 7373, \"AVE_HH_SZ\": 2.530000, \"HSEHLD_1_M\": 970, \"HSEHLD_1_F\": 1130, \"MARHH_CHD\": 1573, \"MARHH_NO_C\": 1759, \"MHH_CHILD\": 180, \"FHH_CHILD\": 682, \"FAMILIES\": 4847, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 7651, \"VACANT\": 278, \"OWNER_OCC\": 4802, \"RENTER_OCC\": 2571 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.378689194598493, 42.278187949468546 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"West Bloomfield Township\", \"CLASS\": \"CDP\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"85510\", \"CAPITAL\": \"N\", \"AREALAND\": 27.326000, \"AREAWATER\": 3.874000, \"POP_CL\": 7, \"POP2000\": 64862, \"WHITE\": 54646, \"BLACK\": 3360, \"AMERI_ES\": 78, \"ASIAN\": 5063, \"HAWN_PI\": 11, \"OTHER\": 246, \"MULT_RACE\": 1458, \"HISPANIC\": 905, \"MALES\": 31908, \"FEMALES\": 32954, \"AGE_UNDER5\": 4199, \"AGE_5_17\": 12894, \"AGE_18_21\": 2106, \"AGE_22_29\": 3843, \"AGE_30_39\": 9161, \"AGE_40_49\": 11600, \"AGE_50_64\": 12385, \"AGE_65_UP\": 8674, \"MED_AGE\": 40.200000, \"MED_AGE_M\": 39.500000, \"MED_AGE_F\": 40.900000, \"HOUSEHOLDS\": 23415, \"AVE_HH_SZ\": 2.740000, \"HSEHLD_1_M\": 1843, \"HSEHLD_1_F\": 2696, \"MARHH_CHD\": 7759, \"MARHH_NO_C\": 8522, \"MHH_CHILD\": 205, \"FHH_CHILD\": 689, \"FAMILIES\": 18200, \"AVE_FAM_SZ\": 3.170000, \"HSE_UNITS\": 24411, \"VACANT\": 996, \"OWNER_OCC\": 20297, \"RENTER_OCC\": 3118 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.380999199050365, 42.569217948790502 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Westland\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"86000\", \"CAPITAL\": \"N\", \"AREALAND\": 20.450000, \"AREAWATER\": 0.005000, \"POP_CL\": 7, \"POP2000\": 86602, \"WHITE\": 75527, \"BLACK\": 5867, \"AMERI_ES\": 396, \"ASIAN\": 2437, \"HAWN_PI\": 28, \"OTHER\": 582, \"MULT_RACE\": 1765, \"HISPANIC\": 2138, \"MALES\": 41626, \"FEMALES\": 44976, \"AGE_UNDER5\": 6017, \"AGE_5_17\": 14140, \"AGE_18_21\": 4167, \"AGE_22_29\": 11257, \"AGE_30_39\": 14744, \"AGE_40_49\": 12708, \"AGE_50_64\": 12113, \"AGE_65_UP\": 11456, \"MED_AGE\": 35.200000, \"MED_AGE_M\": 33.800000, \"MED_AGE_F\": 36.700000, \"HOUSEHOLDS\": 36533, \"AVE_HH_SZ\": 2.340000, \"HSEHLD_1_M\": 5040, \"HSEHLD_1_F\": 6852, \"MARHH_CHD\": 7275, \"MARHH_NO_C\": 8947, \"MHH_CHILD\": 792, \"FHH_CHILD\": 2395, \"FAMILIES\": 22244, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 38077, \"VACANT\": 1544, \"OWNER_OCC\": 22901, \"RENTER_OCC\": 13632 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.375405195890266, 42.316603949280086 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wixom\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"88140\", \"CAPITAL\": \"N\", \"AREALAND\": 9.340000, \"AREAWATER\": 0.122000, \"POP_CL\": 6, \"POP2000\": 13263, \"WHITE\": 11990, \"BLACK\": 332, \"AMERI_ES\": 68, \"ASIAN\": 378, \"HAWN_PI\": 5, \"OTHER\": 206, \"MULT_RACE\": 284, \"HISPANIC\": 424, \"MALES\": 6933, \"FEMALES\": 6330, \"AGE_UNDER5\": 1130, \"AGE_5_17\": 2170, \"AGE_18_21\": 960, \"AGE_22_29\": 2298, \"AGE_30_39\": 2708, \"AGE_40_49\": 2035, \"AGE_50_64\": 1241, \"AGE_65_UP\": 721, \"MED_AGE\": 30.300000, \"MED_AGE_M\": 30.000000, \"MED_AGE_F\": 30.600000, \"HOUSEHOLDS\": 5889, \"AVE_HH_SZ\": 2.240000, \"HSEHLD_1_M\": 1327, \"HSEHLD_1_F\": 876, \"MARHH_CHD\": 1370, \"MARHH_NO_C\": 1092, \"MHH_CHILD\": 115, \"FHH_CHILD\": 336, \"FAMILIES\": 3153, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 6086, \"VACANT\": 197, \"OWNER_OCC\": 2572, \"RENTER_OCC\": 3317 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.533781170028846, 42.532250952995675 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Woodhaven\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"88380\", \"CAPITAL\": \"N\", \"AREALAND\": 6.470000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12530, \"WHITE\": 11680, \"BLACK\": 292, \"AMERI_ES\": 61, \"ASIAN\": 205, \"HAWN_PI\": 2, \"OTHER\": 105, \"MULT_RACE\": 185, \"HISPANIC\": 433, \"MALES\": 6170, \"FEMALES\": 6360, \"AGE_UNDER5\": 787, \"AGE_5_17\": 2293, \"AGE_18_21\": 719, \"AGE_22_29\": 1339, \"AGE_30_39\": 1897, \"AGE_40_49\": 2192, \"AGE_50_64\": 2431, \"AGE_65_UP\": 872, \"MED_AGE\": 36.100000, \"MED_AGE_M\": 35.600000, \"MED_AGE_F\": 36.500000, \"HOUSEHOLDS\": 4708, \"AVE_HH_SZ\": 2.630000, \"HSEHLD_1_M\": 547, \"HSEHLD_1_F\": 512, \"MARHH_CHD\": 1313, \"MARHH_NO_C\": 1524, \"MHH_CHILD\": 90, \"FHH_CHILD\": 243, \"FAMILIES\": 3438, \"AVE_FAM_SZ\": 3.110000, \"HSE_UNITS\": 4850, \"VACANT\": 142, \"OWNER_OCC\": 3415, \"RENTER_OCC\": 1293 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.236647221390299, 42.132390945897257 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wyandotte\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"88900\", \"CAPITAL\": \"N\", \"AREALAND\": 5.306000, \"AREAWATER\": 1.659000, \"POP_CL\": 6, \"POP2000\": 28006, \"WHITE\": 26976, \"BLACK\": 146, \"AMERI_ES\": 136, \"ASIAN\": 92, \"HAWN_PI\": 8, \"OTHER\": 202, \"MULT_RACE\": 446, \"HISPANIC\": 816, \"MALES\": 13720, \"FEMALES\": 14286, \"AGE_UNDER5\": 1567, \"AGE_5_17\": 4776, \"AGE_18_21\": 1353, \"AGE_22_29\": 2970, \"AGE_30_39\": 4356, \"AGE_40_49\": 4689, \"AGE_50_64\": 3894, \"AGE_65_UP\": 4401, \"MED_AGE\": 38.000000, \"MED_AGE_M\": 36.600000, \"MED_AGE_F\": 39.200000, \"HOUSEHOLDS\": 11816, \"AVE_HH_SZ\": 2.360000, \"HSEHLD_1_M\": 1671, \"HSEHLD_1_F\": 2098, \"MARHH_CHD\": 2359, \"MARHH_NO_C\": 3111, \"MHH_CHILD\": 249, \"FHH_CHILD\": 661, \"FAMILIES\": 7422, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 12303, \"VACANT\": 487, \"OWNER_OCC\": 8631, \"RENTER_OCC\": 3185 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.162498239718374, 42.208588943537748 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wyoming\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"88940\", \"CAPITAL\": \"N\", \"AREALAND\": 24.424000, \"AREAWATER\": 0.087000, \"POP_CL\": 7, \"POP2000\": 69368, \"WHITE\": 58491, \"BLACK\": 3362, \"AMERI_ES\": 406, \"ASIAN\": 2025, \"HAWN_PI\": 27, \"OTHER\": 3260, \"MULT_RACE\": 1797, \"HISPANIC\": 6704, \"MALES\": 34244, \"FEMALES\": 35124, \"AGE_UNDER5\": 5574, \"AGE_5_17\": 13845, \"AGE_18_21\": 4134, \"AGE_22_29\": 9611, \"AGE_30_39\": 11775, \"AGE_40_49\": 10025, \"AGE_50_64\": 7898, \"AGE_65_UP\": 6506, \"MED_AGE\": 31.200000, \"MED_AGE_M\": 30.400000, \"MED_AGE_F\": 32.200000, \"HOUSEHOLDS\": 26536, \"AVE_HH_SZ\": 2.600000, \"HSEHLD_1_M\": 3279, \"HSEHLD_1_F\": 3782, \"MARHH_CHD\": 6745, \"MARHH_NO_C\": 6423, \"MHH_CHILD\": 656, \"FHH_CHILD\": 2070, \"FAMILIES\": 17540, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 27506, \"VACANT\": 970, \"OWNER_OCC\": 17948, \"RENTER_OCC\": 8588 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.698730013731321, 42.899826988759258 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ypsilanti\", \"CLASS\": \"city\", \"ST\": \"MI\", \"STFIPS\": \"26\", \"PLACEFIP\": \"89140\", \"CAPITAL\": \"N\", \"AREALAND\": 4.401000, \"AREAWATER\": 0.105000, \"POP_CL\": 6, \"POP2000\": 22362, \"WHITE\": 13731, \"BLACK\": 6838, \"AMERI_ES\": 98, \"ASIAN\": 712, \"HAWN_PI\": 15, \"OTHER\": 295, \"MULT_RACE\": 673, \"HISPANIC\": 552, \"MALES\": 10581, \"FEMALES\": 11781, \"AGE_UNDER5\": 1120, \"AGE_5_17\": 2438, \"AGE_18_21\": 5998, \"AGE_22_29\": 4767, \"AGE_30_39\": 2635, \"AGE_40_49\": 2012, \"AGE_50_64\": 1821, \"AGE_65_UP\": 1571, \"MED_AGE\": 23.600000, \"MED_AGE_M\": 24.000000, \"MED_AGE_F\": 23.200000, \"HOUSEHOLDS\": 8551, \"AVE_HH_SZ\": 2.150000, \"HSEHLD_1_M\": 1676, \"HSEHLD_1_F\": 1780, \"MARHH_CHD\": 802, \"MARHH_NO_C\": 1168, \"MHH_CHILD\": 108, \"FHH_CHILD\": 735, \"FAMILIES\": 3378, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 9215, \"VACANT\": 664, \"OWNER_OCC\": 2810, \"RENTER_OCC\": 5741 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.618211151998665, 42.242891955810563 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Albert Lea\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"00694\", \"CAPITAL\": \"N\", \"AREALAND\": 10.782000, \"AREAWATER\": 1.777000, \"POP_CL\": 6, \"POP2000\": 18356, \"WHITE\": 17034, \"BLACK\": 68, \"AMERI_ES\": 53, \"ASIAN\": 147, \"HAWN_PI\": 5, \"OTHER\": 833, \"MULT_RACE\": 216, \"HISPANIC\": 1740, \"MALES\": 8703, \"FEMALES\": 9653, \"AGE_UNDER5\": 1101, \"AGE_5_17\": 3112, \"AGE_18_21\": 869, \"AGE_22_29\": 1593, \"AGE_30_39\": 2237, \"AGE_40_49\": 2475, \"AGE_50_64\": 3051, \"AGE_65_UP\": 3918, \"MED_AGE\": 41.000000, \"MED_AGE_M\": 39.000000, \"MED_AGE_F\": 43.000000, \"HOUSEHOLDS\": 7785, \"AVE_HH_SZ\": 2.280000, \"HSEHLD_1_M\": 935, \"HSEHLD_1_F\": 1636, \"MARHH_CHD\": 1447, \"MARHH_NO_C\": 2409, \"MHH_CHILD\": 151, \"FHH_CHILD\": 496, \"FAMILIES\": 4828, \"AVE_FAM_SZ\": 2.880000, \"HSE_UNITS\": 8133, \"VACANT\": 348, \"OWNER_OCC\": 5673, \"RENTER_OCC\": 2112 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.368098, 43.650683999995067 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Andover\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"01486\", \"CAPITAL\": \"N\", \"AREALAND\": 34.106000, \"AREAWATER\": 0.875000, \"POP_CL\": 6, \"POP2000\": 26588, \"WHITE\": 25653, \"BLACK\": 143, \"AMERI_ES\": 94, \"ASIAN\": 286, \"HAWN_PI\": 4, \"OTHER\": 86, \"MULT_RACE\": 322, \"HISPANIC\": 278, \"MALES\": 13519, \"FEMALES\": 13069, \"AGE_UNDER5\": 2442, \"AGE_5_17\": 6998, \"AGE_18_21\": 1046, \"AGE_22_29\": 1933, \"AGE_30_39\": 5563, \"AGE_40_49\": 4607, \"AGE_50_64\": 3240, \"AGE_65_UP\": 759, \"MED_AGE\": 31.900000, \"MED_AGE_M\": 31.800000, \"MED_AGE_F\": 32.100000, \"HOUSEHOLDS\": 8107, \"AVE_HH_SZ\": 3.280000, \"HSEHLD_1_M\": 354, \"HSEHLD_1_F\": 323, \"MARHH_CHD\": 4027, \"MARHH_NO_C\": 2458, \"MHH_CHILD\": 136, \"FHH_CHILD\": 304, \"FAMILIES\": 7151, \"AVE_FAM_SZ\": 3.480000, \"HSE_UNITS\": 8205, \"VACANT\": 98, \"OWNER_OCC\": 7760, \"RENTER_OCC\": 347 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.331345, 45.257497999993646 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Anoka\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"01720\", \"CAPITAL\": \"N\", \"AREALAND\": 6.672000, \"AREAWATER\": 0.501000, \"POP_CL\": 6, \"POP2000\": 18076, \"WHITE\": 16837, \"BLACK\": 446, \"AMERI_ES\": 190, \"ASIAN\": 168, \"HAWN_PI\": 5, \"OTHER\": 93, \"MULT_RACE\": 337, \"HISPANIC\": 349, \"MALES\": 9002, \"FEMALES\": 9074, \"AGE_UNDER5\": 1305, \"AGE_5_17\": 3146, \"AGE_18_21\": 1135, \"AGE_22_29\": 2330, \"AGE_30_39\": 2978, \"AGE_40_49\": 2566, \"AGE_50_64\": 2523, \"AGE_65_UP\": 2093, \"MED_AGE\": 33.900000, \"MED_AGE_M\": 32.400000, \"MED_AGE_F\": 35.700000, \"HOUSEHOLDS\": 7262, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 967, \"HSEHLD_1_F\": 1350, \"MARHH_CHD\": 1468, \"MARHH_NO_C\": 1767, \"MHH_CHILD\": 160, \"FHH_CHILD\": 618, \"FAMILIES\": 4409, \"AVE_FAM_SZ\": 3.030000, \"HSE_UNITS\": 7398, \"VACANT\": 136, \"OWNER_OCC\": 4090, \"RENTER_OCC\": 3172 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.386955, 45.202873999993713 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Apple Valley\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"01900\", \"CAPITAL\": \"N\", \"AREALAND\": 17.340000, \"AREAWATER\": 0.381000, \"POP_CL\": 6, \"POP2000\": 45527, \"WHITE\": 41798, \"BLACK\": 870, \"AMERI_ES\": 130, \"ASIAN\": 1542, \"HAWN_PI\": 17, \"OTHER\": 399, \"MULT_RACE\": 771, \"HISPANIC\": 912, \"MALES\": 22256, \"FEMALES\": 23271, \"AGE_UNDER5\": 3286, \"AGE_5_17\": 10243, \"AGE_18_21\": 1983, \"AGE_22_29\": 4123, \"AGE_30_39\": 7782, \"AGE_40_49\": 8435, \"AGE_50_64\": 7169, \"AGE_65_UP\": 2506, \"MED_AGE\": 34.500000, \"MED_AGE_M\": 33.500000, \"MED_AGE_F\": 35.300000, \"HOUSEHOLDS\": 16344, \"AVE_HH_SZ\": 2.770000, \"HSEHLD_1_M\": 1221, \"HSEHLD_1_F\": 1936, \"MARHH_CHD\": 5654, \"MARHH_NO_C\": 4759, \"MHH_CHILD\": 309, \"FHH_CHILD\": 988, \"FAMILIES\": 12399, \"AVE_FAM_SZ\": 3.210000, \"HSE_UNITS\": 16536, \"VACANT\": 192, \"OWNER_OCC\": 14390, \"RENTER_OCC\": 1954 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.206244, 44.743962999994125 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Austin\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"02908\", \"CAPITAL\": \"N\", \"AREALAND\": 10.752000, \"AREAWATER\": 0.092000, \"POP_CL\": 6, \"POP2000\": 23314, \"WHITE\": 21589, \"BLACK\": 188, \"AMERI_ES\": 43, \"ASIAN\": 517, \"HAWN_PI\": 4, \"OTHER\": 720, \"MULT_RACE\": 253, \"HISPANIC\": 1426, \"MALES\": 11226, \"FEMALES\": 12088, \"AGE_UNDER5\": 1482, \"AGE_5_17\": 3955, \"AGE_18_21\": 1232, \"AGE_22_29\": 2178, \"AGE_30_39\": 2906, \"AGE_40_49\": 3074, \"AGE_50_64\": 3349, \"AGE_65_UP\": 5138, \"MED_AGE\": 39.700000, \"MED_AGE_M\": 37.300000, \"MED_AGE_F\": 42.400000, \"HOUSEHOLDS\": 9897, \"AVE_HH_SZ\": 2.290000, \"HSEHLD_1_M\": 1249, \"HSEHLD_1_F\": 2058, \"MARHH_CHD\": 1849, \"MARHH_NO_C\": 2960, \"MHH_CHILD\": 194, \"FHH_CHILD\": 652, \"FAMILIES\": 6080, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 10261, \"VACANT\": 364, \"OWNER_OCC\": 7304, \"RENTER_OCC\": 2593 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -92.977986, 43.667779999995048 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bemidji\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"05068\", \"CAPITAL\": \"N\", \"AREALAND\": 11.778000, \"AREAWATER\": 1.176000, \"POP_CL\": 6, \"POP2000\": 11917, \"WHITE\": 10047, \"BLACK\": 91, \"AMERI_ES\": 1373, \"ASIAN\": 133, \"HAWN_PI\": 4, \"OTHER\": 24, \"MULT_RACE\": 245, \"HISPANIC\": 136, \"MALES\": 5547, \"FEMALES\": 6370, \"AGE_UNDER5\": 723, \"AGE_5_17\": 1798, \"AGE_18_21\": 1926, \"AGE_22_29\": 1863, \"AGE_30_39\": 1237, \"AGE_40_49\": 1349, \"AGE_50_64\": 1165, \"AGE_65_UP\": 1856, \"MED_AGE\": 27.600000, \"MED_AGE_M\": 25.300000, \"MED_AGE_F\": 30.800000, \"HOUSEHOLDS\": 4669, \"AVE_HH_SZ\": 2.220000, \"HSEHLD_1_M\": 597, \"HSEHLD_1_F\": 1077, \"MARHH_CHD\": 632, \"MARHH_NO_C\": 954, \"MHH_CHILD\": 85, \"FHH_CHILD\": 493, \"FAMILIES\": 2430, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 4948, \"VACANT\": 279, \"OWNER_OCC\": 2532, \"RENTER_OCC\": 2137 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.877738999999792, 47.47653099998724 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Blaine\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"06382\", \"CAPITAL\": \"N\", \"AREALAND\": 33.851000, \"AREAWATER\": 0.172000, \"POP_CL\": 6, \"POP2000\": 44942, \"WHITE\": 42002, \"BLACK\": 387, \"AMERI_ES\": 281, \"ASIAN\": 1142, \"HAWN_PI\": 10, \"OTHER\": 335, \"MULT_RACE\": 785, \"HISPANIC\": 773, \"MALES\": 22494, \"FEMALES\": 22448, \"AGE_UNDER5\": 3498, \"AGE_5_17\": 9593, \"AGE_18_21\": 2306, \"AGE_22_29\": 4986, \"AGE_30_39\": 8151, \"AGE_40_49\": 7591, \"AGE_50_64\": 6431, \"AGE_65_UP\": 2386, \"MED_AGE\": 32.700000, \"MED_AGE_M\": 32.100000, \"MED_AGE_F\": 33.400000, \"HOUSEHOLDS\": 15898, \"AVE_HH_SZ\": 2.820000, \"HSEHLD_1_M\": 1282, \"HSEHLD_1_F\": 1421, \"MARHH_CHD\": 5035, \"MARHH_NO_C\": 4674, \"MHH_CHILD\": 371, \"FHH_CHILD\": 1130, \"FAMILIES\": 12176, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 16169, \"VACANT\": 271, \"OWNER_OCC\": 14395, \"RENTER_OCC\": 1503 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.227088, 45.156864999993743 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bloomington\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"06616\", \"CAPITAL\": \"N\", \"AREALAND\": 35.481000, \"AREAWATER\": 2.889000, \"POP_CL\": 7, \"POP2000\": 85172, \"WHITE\": 75055, \"BLACK\": 2917, \"AMERI_ES\": 296, \"ASIAN\": 4339, \"HAWN_PI\": 29, \"OTHER\": 1068, \"MULT_RACE\": 1468, \"HISPANIC\": 2290, \"MALES\": 41132, \"FEMALES\": 44040, \"AGE_UNDER5\": 4532, \"AGE_5_17\": 13028, \"AGE_18_21\": 3519, \"AGE_22_29\": 9030, \"AGE_30_39\": 12363, \"AGE_40_49\": 13472, \"AGE_50_64\": 15870, \"AGE_65_UP\": 13358, \"MED_AGE\": 40.100000, \"MED_AGE_M\": 38.600000, \"MED_AGE_F\": 41.600000, \"HOUSEHOLDS\": 36400, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 4122, \"HSEHLD_1_F\": 6665, \"MARHH_CHD\": 6910, \"MARHH_NO_C\": 11740, \"MHH_CHILD\": 518, \"FHH_CHILD\": 1726, \"FAMILIES\": 22768, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 37104, \"VACANT\": 704, \"OWNER_OCC\": 25682, \"RENTER_OCC\": 10718 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.309973, 44.833713999994053 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Brainerd\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"07300\", \"CAPITAL\": \"N\", \"AREALAND\": 7.973000, \"AREAWATER\": 0.468000, \"POP_CL\": 6, \"POP2000\": 13178, \"WHITE\": 12629, \"BLACK\": 94, \"AMERI_ES\": 190, \"ASIAN\": 60, \"HAWN_PI\": 1, \"OTHER\": 34, \"MULT_RACE\": 170, \"HISPANIC\": 113, \"MALES\": 6057, \"FEMALES\": 7121, \"AGE_UNDER5\": 1017, \"AGE_5_17\": 2297, \"AGE_18_21\": 1121, \"AGE_22_29\": 1665, \"AGE_30_39\": 1647, \"AGE_40_49\": 1565, \"AGE_50_64\": 1479, \"AGE_65_UP\": 2387, \"MED_AGE\": 32.800000, \"MED_AGE_M\": 29.500000, \"MED_AGE_F\": 36.700000, \"HOUSEHOLDS\": 5623, \"AVE_HH_SZ\": 2.230000, \"HSEHLD_1_M\": 708, \"HSEHLD_1_F\": 1398, \"MARHH_CHD\": 912, \"MARHH_NO_C\": 1100, \"MHH_CHILD\": 158, \"FHH_CHILD\": 583, \"FAMILIES\": 3037, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 5847, \"VACANT\": 224, \"OWNER_OCC\": 3033, \"RENTER_OCC\": 2590 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.193221999999849, 46.359065999992261 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Brooklyn Center\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"07948\", \"CAPITAL\": \"N\", \"AREALAND\": 7.944000, \"AREAWATER\": 0.398000, \"POP_CL\": 6, \"POP2000\": 29172, \"WHITE\": 20825, \"BLACK\": 4110, \"AMERI_ES\": 253, \"ASIAN\": 2565, \"HAWN_PI\": 4, \"OTHER\": 434, \"MULT_RACE\": 981, \"HISPANIC\": 823, \"MALES\": 14205, \"FEMALES\": 14967, \"AGE_UNDER5\": 1957, \"AGE_5_17\": 5353, \"AGE_18_21\": 1572, \"AGE_22_29\": 3476, \"AGE_30_39\": 4321, \"AGE_40_49\": 4067, \"AGE_50_64\": 3919, \"AGE_65_UP\": 4507, \"MED_AGE\": 35.300000, \"MED_AGE_M\": 34.000000, \"MED_AGE_F\": 36.800000, \"HOUSEHOLDS\": 11430, \"AVE_HH_SZ\": 2.520000, \"HSEHLD_1_M\": 1325, \"HSEHLD_1_F\": 1893, \"MARHH_CHD\": 2148, \"MARHH_NO_C\": 3149, \"MHH_CHILD\": 280, \"FHH_CHILD\": 963, \"FAMILIES\": 7382, \"AVE_FAM_SZ\": 3.110000, \"HSE_UNITS\": 11598, \"VACANT\": 168, \"OWNER_OCC\": 7855, \"RENTER_OCC\": 3575 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.313845, 45.069163999993833 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Brooklyn Park\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"07966\", \"CAPITAL\": \"N\", \"AREALAND\": 26.058000, \"AREAWATER\": 0.487000, \"POP_CL\": 7, \"POP2000\": 67388, \"WHITE\": 48145, \"BLACK\": 9659, \"AMERI_ES\": 381, \"ASIAN\": 6214, \"HAWN_PI\": 44, \"OTHER\": 1004, \"MULT_RACE\": 1941, \"HISPANIC\": 1944, \"MALES\": 33473, \"FEMALES\": 33915, \"AGE_UNDER5\": 5477, \"AGE_5_17\": 13953, \"AGE_18_21\": 3800, \"AGE_22_29\": 8201, \"AGE_30_39\": 12096, \"AGE_40_49\": 11164, \"AGE_50_64\": 8912, \"AGE_65_UP\": 3785, \"MED_AGE\": 31.900000, \"MED_AGE_M\": 31.400000, \"MED_AGE_F\": 32.500000, \"HOUSEHOLDS\": 24432, \"AVE_HH_SZ\": 2.750000, \"HSEHLD_1_M\": 2522, \"HSEHLD_1_F\": 2860, \"MARHH_CHD\": 7064, \"MARHH_NO_C\": 6279, \"MHH_CHILD\": 524, \"FHH_CHILD\": 1981, \"FAMILIES\": 17354, \"AVE_FAM_SZ\": 3.260000, \"HSE_UNITS\": 24846, \"VACANT\": 414, \"OWNER_OCC\": 17923, \"RENTER_OCC\": 6509 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.347445, 45.101430999993802 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Buffalo\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"08452\", \"CAPITAL\": \"N\", \"AREALAND\": 6.025000, \"AREAWATER\": 1.769000, \"POP_CL\": 6, \"POP2000\": 10097, \"WHITE\": 9768, \"BLACK\": 53, \"AMERI_ES\": 49, \"ASIAN\": 68, \"HAWN_PI\": 0, \"OTHER\": 31, \"MULT_RACE\": 128, \"HISPANIC\": 112, \"MALES\": 4951, \"FEMALES\": 5146, \"AGE_UNDER5\": 903, \"AGE_5_17\": 2047, \"AGE_18_21\": 519, \"AGE_22_29\": 1170, \"AGE_30_39\": 1702, \"AGE_40_49\": 1424, \"AGE_50_64\": 1190, \"AGE_65_UP\": 1142, \"MED_AGE\": 32.100000, \"MED_AGE_M\": 31.100000, \"MED_AGE_F\": 33.400000, \"HOUSEHOLDS\": 3702, \"AVE_HH_SZ\": 2.630000, \"HSEHLD_1_M\": 381, \"HSEHLD_1_F\": 539, \"MARHH_CHD\": 1109, \"MARHH_NO_C\": 960, \"MHH_CHILD\": 79, \"FHH_CHILD\": 295, \"FAMILIES\": 2585, \"AVE_FAM_SZ\": 3.170000, \"HSE_UNITS\": 3871, \"VACANT\": 169, \"OWNER_OCC\": 2668, \"RENTER_OCC\": 1034 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.865463, 45.183226999993693 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Burnsville\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"08794\", \"CAPITAL\": \"N\", \"AREALAND\": 24.874000, \"AREAWATER\": 1.862000, \"POP_CL\": 7, \"POP2000\": 60220, \"WHITE\": 52717, \"BLACK\": 2452, \"AMERI_ES\": 277, \"ASIAN\": 2456, \"HAWN_PI\": 46, \"OTHER\": 855, \"MULT_RACE\": 1417, \"HISPANIC\": 1725, \"MALES\": 29696, \"FEMALES\": 30524, \"AGE_UNDER5\": 4294, \"AGE_5_17\": 11472, \"AGE_18_21\": 3083, \"AGE_22_29\": 8198, \"AGE_30_39\": 10159, \"AGE_40_49\": 9522, \"AGE_50_64\": 9134, \"AGE_65_UP\": 4358, \"MED_AGE\": 33.000000, \"MED_AGE_M\": 32.200000, \"MED_AGE_F\": 33.800000, \"HOUSEHOLDS\": 23687, \"AVE_HH_SZ\": 2.530000, \"HSEHLD_1_M\": 2641, \"HSEHLD_1_F\": 3230, \"MARHH_CHD\": 6049, \"MARHH_NO_C\": 6454, \"MHH_CHILD\": 410, \"FHH_CHILD\": 1612, \"FAMILIES\": 15631, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 24261, \"VACANT\": 574, \"OWNER_OCC\": 16142, \"RENTER_OCC\": 7545 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.28117, 44.756112999994116 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Champlin\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"10846\", \"CAPITAL\": \"N\", \"AREALAND\": 8.178000, \"AREAWATER\": 0.617000, \"POP_CL\": 6, \"POP2000\": 22193, \"WHITE\": 21086, \"BLACK\": 314, \"AMERI_ES\": 95, \"ASIAN\": 367, \"HAWN_PI\": 4, \"OTHER\": 83, \"MULT_RACE\": 244, \"HISPANIC\": 250, \"MALES\": 11178, \"FEMALES\": 11015, \"AGE_UNDER5\": 1862, \"AGE_5_17\": 5585, \"AGE_18_21\": 988, \"AGE_22_29\": 1867, \"AGE_30_39\": 4816, \"AGE_40_49\": 3993, \"AGE_50_64\": 2267, \"AGE_65_UP\": 815, \"MED_AGE\": 32.000000, \"MED_AGE_M\": 31.800000, \"MED_AGE_F\": 32.300000, \"HOUSEHOLDS\": 7425, \"AVE_HH_SZ\": 2.990000, \"HSEHLD_1_M\": 535, \"HSEHLD_1_F\": 569, \"MARHH_CHD\": 3098, \"MARHH_NO_C\": 1905, \"MHH_CHILD\": 183, \"FHH_CHILD\": 465, \"FAMILIES\": 5923, \"AVE_FAM_SZ\": 3.350000, \"HSE_UNITS\": 7514, \"VACANT\": 89, \"OWNER_OCC\": 6586, \"RENTER_OCC\": 839 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.384525, 45.170713999993716 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Chanhassen\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"10918\", \"CAPITAL\": \"N\", \"AREALAND\": 20.776000, \"AREAWATER\": 2.120000, \"POP_CL\": 6, \"POP2000\": 20321, \"WHITE\": 19284, \"BLACK\": 152, \"AMERI_ES\": 31, \"ASIAN\": 576, \"HAWN_PI\": 1, \"OTHER\": 84, \"MULT_RACE\": 193, \"HISPANIC\": 402, \"MALES\": 10184, \"FEMALES\": 10137, \"AGE_UNDER5\": 2020, \"AGE_5_17\": 5006, \"AGE_18_21\": 540, \"AGE_22_29\": 1259, \"AGE_30_39\": 4291, \"AGE_40_49\": 4006, \"AGE_50_64\": 2279, \"AGE_65_UP\": 920, \"MED_AGE\": 34.200000, \"MED_AGE_M\": 33.900000, \"MED_AGE_F\": 34.400000, \"HOUSEHOLDS\": 6914, \"AVE_HH_SZ\": 2.940000, \"HSEHLD_1_M\": 494, \"HSEHLD_1_F\": 592, \"MARHH_CHD\": 3126, \"MARHH_NO_C\": 1799, \"MHH_CHILD\": 104, \"FHH_CHILD\": 305, \"FAMILIES\": 5524, \"AVE_FAM_SZ\": 3.330000, \"HSE_UNITS\": 7013, \"VACANT\": 99, \"OWNER_OCC\": 6195, \"RENTER_OCC\": 719 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.554154, 44.865381999994021 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Chaska\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"10972\", \"CAPITAL\": \"N\", \"AREALAND\": 13.732000, \"AREAWATER\": 0.607000, \"POP_CL\": 6, \"POP2000\": 17449, \"WHITE\": 16351, \"BLACK\": 178, \"AMERI_ES\": 49, \"ASIAN\": 291, \"HAWN_PI\": 1, \"OTHER\": 381, \"MULT_RACE\": 198, \"HISPANIC\": 1013, \"MALES\": 8725, \"FEMALES\": 8724, \"AGE_UNDER5\": 1698, \"AGE_5_17\": 3972, \"AGE_18_21\": 773, \"AGE_22_29\": 1657, \"AGE_30_39\": 3710, \"AGE_40_49\": 2916, \"AGE_50_64\": 1709, \"AGE_65_UP\": 1014, \"MED_AGE\": 32.200000, \"MED_AGE_M\": 31.600000, \"MED_AGE_F\": 32.700000, \"HOUSEHOLDS\": 6104, \"AVE_HH_SZ\": 2.820000, \"HSEHLD_1_M\": 608, \"HSEHLD_1_F\": 663, \"MARHH_CHD\": 2254, \"MARHH_NO_C\": 1352, \"MHH_CHILD\": 160, \"FHH_CHILD\": 465, \"FAMILIES\": 4486, \"AVE_FAM_SZ\": 3.310000, \"HSE_UNITS\": 6235, \"VACANT\": 131, \"OWNER_OCC\": 4592, \"RENTER_OCC\": 1512 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.597817, 44.809689999994077 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cloquet\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"12160\", \"CAPITAL\": \"N\", \"AREALAND\": 35.235000, \"AREAWATER\": 0.737000, \"POP_CL\": 6, \"POP2000\": 11201, \"WHITE\": 9880, \"BLACK\": 18, \"AMERI_ES\": 1047, \"ASIAN\": 44, \"HAWN_PI\": 1, \"OTHER\": 15, \"MULT_RACE\": 196, \"HISPANIC\": 71, \"MALES\": 5304, \"FEMALES\": 5897, \"AGE_UNDER5\": 702, \"AGE_5_17\": 2169, \"AGE_18_21\": 588, \"AGE_22_29\": 1017, \"AGE_30_39\": 1539, \"AGE_40_49\": 1679, \"AGE_50_64\": 1620, \"AGE_65_UP\": 1887, \"MED_AGE\": 37.600000, \"MED_AGE_M\": 35.900000, \"MED_AGE_F\": 39.300000, \"HOUSEHOLDS\": 4636, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 556, \"HSEHLD_1_F\": 881, \"MARHH_CHD\": 896, \"MARHH_NO_C\": 1287, \"MHH_CHILD\": 134, \"FHH_CHILD\": 398, \"FAMILIES\": 2966, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 4805, \"VACANT\": 169, \"OWNER_OCC\": 3420, \"RENTER_OCC\": 1216 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -92.465797, 46.718088999992133 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Columbia Heights\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"12700\", \"CAPITAL\": \"N\", \"AREALAND\": 3.450000, \"AREAWATER\": 0.098000, \"POP_CL\": 6, \"POP2000\": 18520, \"WHITE\": 16184, \"BLACK\": 671, \"AMERI_ES\": 304, \"ASIAN\": 640, \"HAWN_PI\": 2, \"OTHER\": 240, \"MULT_RACE\": 479, \"HISPANIC\": 583, \"MALES\": 8891, \"FEMALES\": 9629, \"AGE_UNDER5\": 995, \"AGE_5_17\": 2855, \"AGE_18_21\": 876, \"AGE_22_29\": 2022, \"AGE_30_39\": 2800, \"AGE_40_49\": 2748, \"AGE_50_64\": 2769, \"AGE_65_UP\": 3455, \"MED_AGE\": 39.000000, \"MED_AGE_M\": 36.900000, \"MED_AGE_F\": 41.200000, \"HOUSEHOLDS\": 8033, \"AVE_HH_SZ\": 2.290000, \"HSEHLD_1_M\": 1073, \"HSEHLD_1_F\": 1662, \"MARHH_CHD\": 1254, \"MARHH_NO_C\": 2213, \"MHH_CHILD\": 178, \"FHH_CHILD\": 476, \"FAMILIES\": 4733, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 8151, \"VACANT\": 118, \"OWNER_OCC\": 5729, \"RENTER_OCC\": 2304 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.249474, 45.049164999993849 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Coon Rapids\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"13114\", \"CAPITAL\": \"N\", \"AREALAND\": 22.665000, \"AREAWATER\": 0.674000, \"POP_CL\": 7, \"POP2000\": 61607, \"WHITE\": 57430, \"BLACK\": 1346, \"AMERI_ES\": 410, \"ASIAN\": 984, \"HAWN_PI\": 8, \"OTHER\": 366, \"MULT_RACE\": 1063, \"HISPANIC\": 933, \"MALES\": 29981, \"FEMALES\": 31626, \"AGE_UNDER5\": 4628, \"AGE_5_17\": 13058, \"AGE_18_21\": 3232, \"AGE_22_29\": 6690, \"AGE_30_39\": 10759, \"AGE_40_49\": 9783, \"AGE_50_64\": 8961, \"AGE_65_UP\": 4496, \"MED_AGE\": 33.300000, \"MED_AGE_M\": 32.300000, \"MED_AGE_F\": 34.100000, \"HOUSEHOLDS\": 22578, \"AVE_HH_SZ\": 2.710000, \"HSEHLD_1_M\": 1817, \"HSEHLD_1_F\": 2728, \"MARHH_CHD\": 6485, \"MARHH_NO_C\": 6454, \"MHH_CHILD\": 464, \"FHH_CHILD\": 1890, \"FAMILIES\": 16574, \"AVE_FAM_SZ\": 3.150000, \"HSE_UNITS\": 22828, \"VACANT\": 250, \"OWNER_OCC\": 18142, \"RENTER_OCC\": 4436 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.307785, 45.17103199999373 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cottage Grove\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"13456\", \"CAPITAL\": \"N\", \"AREALAND\": 33.984000, \"AREAWATER\": 3.937000, \"POP_CL\": 6, \"POP2000\": 30582, \"WHITE\": 28606, \"BLACK\": 720, \"AMERI_ES\": 125, \"ASIAN\": 437, \"HAWN_PI\": 18, \"OTHER\": 277, \"MULT_RACE\": 399, \"HISPANIC\": 775, \"MALES\": 15234, \"FEMALES\": 15348, \"AGE_UNDER5\": 2588, \"AGE_5_17\": 7399, \"AGE_18_21\": 1421, \"AGE_22_29\": 2814, \"AGE_30_39\": 5818, \"AGE_40_49\": 4946, \"AGE_50_64\": 4106, \"AGE_65_UP\": 1490, \"MED_AGE\": 31.900000, \"MED_AGE_M\": 31.900000, \"MED_AGE_F\": 32.000000, \"HOUSEHOLDS\": 9932, \"AVE_HH_SZ\": 3.070000, \"HSEHLD_1_M\": 502, \"HSEHLD_1_F\": 595, \"MARHH_CHD\": 4137, \"MARHH_NO_C\": 3105, \"MHH_CHILD\": 198, \"FHH_CHILD\": 613, \"FAMILIES\": 8464, \"AVE_FAM_SZ\": 3.320000, \"HSE_UNITS\": 10024, \"VACANT\": 92, \"OWNER_OCC\": 9079, \"RENTER_OCC\": 853 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -92.934864, 44.825365999994062 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Crystal\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"14158\", \"CAPITAL\": \"N\", \"AREALAND\": 5.777000, \"AREAWATER\": 0.093000, \"POP_CL\": 6, \"POP2000\": 22698, \"WHITE\": 20052, \"BLACK\": 953, \"AMERI_ES\": 133, \"ASIAN\": 780, \"HAWN_PI\": 4, \"OTHER\": 234, \"MULT_RACE\": 542, \"HISPANIC\": 570, \"MALES\": 11193, \"FEMALES\": 11505, \"AGE_UNDER5\": 1493, \"AGE_5_17\": 3598, \"AGE_18_21\": 900, \"AGE_22_29\": 2535, \"AGE_30_39\": 4140, \"AGE_40_49\": 3526, \"AGE_50_64\": 3302, \"AGE_65_UP\": 3204, \"MED_AGE\": 37.000000, \"MED_AGE_M\": 35.700000, \"MED_AGE_F\": 38.100000, \"HOUSEHOLDS\": 9389, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 1103, \"HSEHLD_1_F\": 1477, \"MARHH_CHD\": 1894, \"MARHH_NO_C\": 2791, \"MHH_CHILD\": 187, \"FHH_CHILD\": 576, \"FAMILIES\": 6104, \"AVE_FAM_SZ\": 2.920000, \"HSE_UNITS\": 9481, \"VACANT\": 92, \"OWNER_OCC\": 7286, \"RENTER_OCC\": 2103 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.359577, 45.037263999993868 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Duluth\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"17000\", \"CAPITAL\": \"N\", \"AREALAND\": 68.007000, \"AREAWATER\": 19.314000, \"POP_CL\": 7, \"POP2000\": 86918, \"WHITE\": 80532, \"BLACK\": 1415, \"AMERI_ES\": 2122, \"ASIAN\": 993, \"HAWN_PI\": 25, \"OTHER\": 251, \"MULT_RACE\": 1580, \"HISPANIC\": 921, \"MALES\": 41973, \"FEMALES\": 44945, \"AGE_UNDER5\": 4695, \"AGE_5_17\": 13826, \"AGE_18_21\": 9327, \"AGE_22_29\": 9922, \"AGE_30_39\": 11287, \"AGE_40_49\": 12452, \"AGE_50_64\": 12262, \"AGE_65_UP\": 13147, \"MED_AGE\": 35.400000, \"MED_AGE_M\": 33.100000, \"MED_AGE_F\": 37.400000, \"HOUSEHOLDS\": 35500, \"AVE_HH_SZ\": 2.260000, \"HSEHLD_1_M\": 4921, \"HSEHLD_1_F\": 7323, \"MARHH_CHD\": 6090, \"MARHH_NO_C\": 8618, \"MHH_CHILD\": 629, \"FHH_CHILD\": 2708, \"FAMILIES\": 19918, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 36994, \"VACANT\": 1494, \"OWNER_OCC\": 22773, \"RENTER_OCC\": 12727 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -92.117079000000118, 46.780372999992011 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Eagan\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"17288\", \"CAPITAL\": \"N\", \"AREALAND\": 32.301000, \"AREAWATER\": 1.126000, \"POP_CL\": 7, \"POP2000\": 63557, \"WHITE\": 55949, \"BLACK\": 2166, \"AMERI_ES\": 164, \"ASIAN\": 3372, \"HAWN_PI\": 66, \"OTHER\": 613, \"MULT_RACE\": 1227, \"HISPANIC\": 1424, \"MALES\": 31278, \"FEMALES\": 32279, \"AGE_UNDER5\": 5133, \"AGE_5_17\": 13923, \"AGE_18_21\": 2304, \"AGE_22_29\": 7379, \"AGE_30_39\": 12513, \"AGE_40_49\": 12000, \"AGE_50_64\": 7631, \"AGE_65_UP\": 2674, \"MED_AGE\": 32.800000, \"MED_AGE_M\": 32.300000, \"MED_AGE_F\": 33.300000, \"HOUSEHOLDS\": 23773, \"AVE_HH_SZ\": 2.670000, \"HSEHLD_1_M\": 2447, \"HSEHLD_1_F\": 3015, \"MARHH_CHD\": 8031, \"MARHH_NO_C\": 5722, \"MHH_CHILD\": 383, \"FHH_CHILD\": 1386, \"FAMILIES\": 16435, \"AVE_FAM_SZ\": 3.230000, \"HSE_UNITS\": 24390, \"VACANT\": 617, \"OWNER_OCC\": 17839, \"RENTER_OCC\": 5934 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.169146, 44.813764999994056 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"East Bethel\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"17486\", \"CAPITAL\": \"N\", \"AREALAND\": 44.850000, \"AREAWATER\": 3.201000, \"POP_CL\": 6, \"POP2000\": 10941, \"WHITE\": 10673, \"BLACK\": 21, \"AMERI_ES\": 47, \"ASIAN\": 49, \"HAWN_PI\": 0, \"OTHER\": 35, \"MULT_RACE\": 116, \"HISPANIC\": 104, \"MALES\": 5684, \"FEMALES\": 5257, \"AGE_UNDER5\": 870, \"AGE_5_17\": 2643, \"AGE_18_21\": 486, \"AGE_22_29\": 906, \"AGE_30_39\": 2308, \"AGE_40_49\": 1902, \"AGE_50_64\": 1387, \"AGE_65_UP\": 439, \"MED_AGE\": 33.100000, \"MED_AGE_M\": 33.300000, \"MED_AGE_F\": 32.800000, \"HOUSEHOLDS\": 3607, \"AVE_HH_SZ\": 3.030000, \"HSEHLD_1_M\": 340, \"HSEHLD_1_F\": 149, \"MARHH_CHD\": 1446, \"MARHH_NO_C\": 1099, \"MHH_CHILD\": 104, \"FHH_CHILD\": 152, \"FAMILIES\": 2937, \"AVE_FAM_SZ\": 3.330000, \"HSE_UNITS\": 3718, \"VACANT\": 111, \"OWNER_OCC\": 3532, \"RENTER_OCC\": 75 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.21005, 45.326913999993586 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Eden Prairie\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"18116\", \"CAPITAL\": \"N\", \"AREALAND\": 32.389000, \"AREAWATER\": 2.834000, \"POP_CL\": 7, \"POP2000\": 54901, \"WHITE\": 49771, \"BLACK\": 1253, \"AMERI_ES\": 114, \"ASIAN\": 2644, \"HAWN_PI\": 17, \"OTHER\": 276, \"MULT_RACE\": 826, \"HISPANIC\": 862, \"MALES\": 26939, \"FEMALES\": 27962, \"AGE_UNDER5\": 4309, \"AGE_5_17\": 12410, \"AGE_18_21\": 1798, \"AGE_22_29\": 5292, \"AGE_30_39\": 9981, \"AGE_40_49\": 10992, \"AGE_50_64\": 7442, \"AGE_65_UP\": 2677, \"MED_AGE\": 34.200000, \"MED_AGE_M\": 33.300000, \"MED_AGE_F\": 35.000000, \"HOUSEHOLDS\": 20457, \"AVE_HH_SZ\": 2.680000, \"HSEHLD_1_M\": 1838, \"HSEHLD_1_F\": 2659, \"MARHH_CHD\": 7292, \"MARHH_NO_C\": 5238, \"MHH_CHILD\": 276, \"FHH_CHILD\": 1138, \"FAMILIES\": 14579, \"AVE_FAM_SZ\": 3.200000, \"HSE_UNITS\": 21026, \"VACANT\": 569, \"OWNER_OCC\": 16027, \"RENTER_OCC\": 4430 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.460837, 44.853662999994015 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Edina\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"18188\", \"CAPITAL\": \"N\", \"AREALAND\": 15.748000, \"AREAWATER\": 0.296000, \"POP_CL\": 6, \"POP2000\": 47425, \"WHITE\": 44712, \"BLACK\": 546, \"AMERI_ES\": 62, \"ASIAN\": 1418, \"HAWN_PI\": 14, \"OTHER\": 165, \"MULT_RACE\": 508, \"HISPANIC\": 539, \"MALES\": 21729, \"FEMALES\": 25696, \"AGE_UNDER5\": 2546, \"AGE_5_17\": 8292, \"AGE_18_21\": 1067, \"AGE_22_29\": 2851, \"AGE_30_39\": 5575, \"AGE_40_49\": 7658, \"AGE_50_64\": 8671, \"AGE_65_UP\": 10765, \"MED_AGE\": 44.500000, \"MED_AGE_M\": 42.300000, \"MED_AGE_F\": 46.400000, \"HOUSEHOLDS\": 20996, \"AVE_HH_SZ\": 2.240000, \"HSEHLD_1_M\": 1946, \"HSEHLD_1_F\": 5203, \"MARHH_CHD\": 4753, \"MARHH_NO_C\": 6550, \"MHH_CHILD\": 169, \"FHH_CHILD\": 647, \"FAMILIES\": 12878, \"AVE_FAM_SZ\": 2.910000, \"HSE_UNITS\": 21669, \"VACANT\": 673, \"OWNER_OCC\": 16072, \"RENTER_OCC\": 4924 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.354675, 44.895663999994007 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Elk River\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"18674\", \"CAPITAL\": \"N\", \"AREALAND\": 42.658000, \"AREAWATER\": 1.172000, \"POP_CL\": 6, \"POP2000\": 16447, \"WHITE\": 15984, \"BLACK\": 73, \"AMERI_ES\": 61, \"ASIAN\": 81, \"HAWN_PI\": 2, \"OTHER\": 79, \"MULT_RACE\": 167, \"HISPANIC\": 219, \"MALES\": 8260, \"FEMALES\": 8187, \"AGE_UNDER5\": 1375, \"AGE_5_17\": 3771, \"AGE_18_21\": 869, \"AGE_22_29\": 1631, \"AGE_30_39\": 2994, \"AGE_40_49\": 2570, \"AGE_50_64\": 1921, \"AGE_65_UP\": 1316, \"MED_AGE\": 32.000000, \"MED_AGE_M\": 31.000000, \"MED_AGE_F\": 33.200000, \"HOUSEHOLDS\": 5664, \"AVE_HH_SZ\": 2.850000, \"HSEHLD_1_M\": 391, \"HSEHLD_1_F\": 582, \"MARHH_CHD\": 2055, \"MARHH_NO_C\": 1610, \"MHH_CHILD\": 133, \"FHH_CHILD\": 391, \"FAMILIES\": 4402, \"AVE_FAM_SZ\": 3.240000, \"HSE_UNITS\": 5782, \"VACANT\": 118, \"OWNER_OCC\": 4436, \"RENTER_OCC\": 1228 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.581178, 45.317151999993591 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fairmont\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"20330\", \"CAPITAL\": \"N\", \"AREALAND\": 14.566000, \"AREAWATER\": 1.962000, \"POP_CL\": 6, \"POP2000\": 10889, \"WHITE\": 10409, \"BLACK\": 48, \"AMERI_ES\": 11, \"ASIAN\": 72, \"HAWN_PI\": 3, \"OTHER\": 241, \"MULT_RACE\": 105, \"HISPANIC\": 324, \"MALES\": 5164, \"FEMALES\": 5725, \"AGE_UNDER5\": 602, \"AGE_5_17\": 2046, \"AGE_18_21\": 468, \"AGE_22_29\": 791, \"AGE_30_39\": 1333, \"AGE_40_49\": 1648, \"AGE_50_64\": 1703, \"AGE_65_UP\": 2298, \"MED_AGE\": 41.300000, \"MED_AGE_M\": 39.200000, \"MED_AGE_F\": 43.300000, \"HOUSEHOLDS\": 4702, \"AVE_HH_SZ\": 2.250000, \"HSEHLD_1_M\": 575, \"HSEHLD_1_F\": 987, \"MARHH_CHD\": 947, \"MARHH_NO_C\": 1451, \"MHH_CHILD\": 83, \"FHH_CHILD\": 314, \"FAMILIES\": 2964, \"AVE_FAM_SZ\": 2.860000, \"HSE_UNITS\": 5036, \"VACANT\": 334, \"OWNER_OCC\": 3472, \"RENTER_OCC\": 1230 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.458578, 43.652220999994277 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Faribault\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"20546\", \"CAPITAL\": \"N\", \"AREALAND\": 12.657000, \"AREAWATER\": 0.204000, \"POP_CL\": 6, \"POP2000\": 20818, \"WHITE\": 18710, \"BLACK\": 561, \"AMERI_ES\": 139, \"ASIAN\": 382, \"HAWN_PI\": 13, \"OTHER\": 694, \"MULT_RACE\": 319, \"HISPANIC\": 1852, \"MALES\": 10751, \"FEMALES\": 10067, \"AGE_UNDER5\": 1403, \"AGE_5_17\": 4053, \"AGE_18_21\": 1164, \"AGE_22_29\": 2362, \"AGE_30_39\": 3261, \"AGE_40_49\": 3017, \"AGE_50_64\": 2744, \"AGE_65_UP\": 2814, \"MED_AGE\": 34.500000, \"MED_AGE_M\": 32.900000, \"MED_AGE_F\": 36.700000, \"HOUSEHOLDS\": 7472, \"AVE_HH_SZ\": 2.530000, \"HSEHLD_1_M\": 856, \"HSEHLD_1_F\": 1271, \"MARHH_CHD\": 1791, \"MARHH_NO_C\": 1965, \"MHH_CHILD\": 233, \"FHH_CHILD\": 568, \"FAMILIES\": 4947, \"AVE_FAM_SZ\": 3.100000, \"HSE_UNITS\": 7668, \"VACANT\": 196, \"OWNER_OCC\": 5460, \"RENTER_OCC\": 2012 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.278577, 44.293906999994526 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Farmington\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"20618\", \"CAPITAL\": \"N\", \"AREALAND\": 12.541000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12365, \"WHITE\": 11824, \"BLACK\": 92, \"AMERI_ES\": 35, \"ASIAN\": 180, \"HAWN_PI\": 3, \"OTHER\": 73, \"MULT_RACE\": 158, \"HISPANIC\": 232, \"MALES\": 6235, \"FEMALES\": 6130, \"AGE_UNDER5\": 1424, \"AGE_5_17\": 2784, \"AGE_18_21\": 445, \"AGE_22_29\": 1541, \"AGE_30_39\": 3016, \"AGE_40_49\": 1503, \"AGE_50_64\": 959, \"AGE_65_UP\": 693, \"MED_AGE\": 30.000000, \"MED_AGE_M\": 29.900000, \"MED_AGE_F\": 30.000000, \"HOUSEHOLDS\": 4169, \"AVE_HH_SZ\": 2.950000, \"HSEHLD_1_M\": 342, \"HSEHLD_1_F\": 354, \"MARHH_CHD\": 1823, \"MARHH_NO_C\": 985, \"MHH_CHILD\": 89, \"FHH_CHILD\": 213, \"FAMILIES\": 3255, \"AVE_FAM_SZ\": 3.350000, \"HSE_UNITS\": 4233, \"VACANT\": 64, \"OWNER_OCC\": 3647, \"RENTER_OCC\": 522 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.152227, 44.649262999994207 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fergus Falls\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"20906\", \"CAPITAL\": \"N\", \"AREALAND\": 13.060000, \"AREAWATER\": 1.050000, \"POP_CL\": 6, \"POP2000\": 13471, \"WHITE\": 13069, \"BLACK\": 83, \"AMERI_ES\": 103, \"ASIAN\": 77, \"HAWN_PI\": 1, \"OTHER\": 27, \"MULT_RACE\": 111, \"HISPANIC\": 122, \"MALES\": 6344, \"FEMALES\": 7127, \"AGE_UNDER5\": 774, \"AGE_5_17\": 2331, \"AGE_18_21\": 928, \"AGE_22_29\": 1083, \"AGE_30_39\": 1651, \"AGE_40_49\": 1926, \"AGE_50_64\": 1801, \"AGE_65_UP\": 2977, \"MED_AGE\": 39.800000, \"MED_AGE_M\": 37.100000, \"MED_AGE_F\": 42.500000, \"HOUSEHOLDS\": 5633, \"AVE_HH_SZ\": 2.250000, \"HSEHLD_1_M\": 657, \"HSEHLD_1_F\": 1343, \"MARHH_CHD\": 1135, \"MARHH_NO_C\": 1521, \"MHH_CHILD\": 107, \"FHH_CHILD\": 341, \"FAMILIES\": 3307, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 5909, \"VACANT\": 276, \"OWNER_OCC\": 3656, \"RENTER_OCC\": 1977 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.073204000000132, 46.282781999918072 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fridley\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"22814\", \"CAPITAL\": \"N\", \"AREALAND\": 10.161000, \"AREAWATER\": 0.727000, \"POP_CL\": 6, \"POP2000\": 27449, \"WHITE\": 24334, \"BLACK\": 939, \"AMERI_ES\": 224, \"ASIAN\": 794, \"HAWN_PI\": 18, \"OTHER\": 337, \"MULT_RACE\": 803, \"HISPANIC\": 704, \"MALES\": 13572, \"FEMALES\": 13877, \"AGE_UNDER5\": 1828, \"AGE_5_17\": 4351, \"AGE_18_21\": 1438, \"AGE_22_29\": 3517, \"AGE_30_39\": 4268, \"AGE_40_49\": 3986, \"AGE_50_64\": 4780, \"AGE_65_UP\": 3281, \"MED_AGE\": 36.300000, \"MED_AGE_M\": 35.400000, \"MED_AGE_F\": 37.200000, \"HOUSEHOLDS\": 11328, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 1478, \"HSEHLD_1_F\": 1561, \"MARHH_CHD\": 2086, \"MARHH_NO_C\": 3418, \"MHH_CHILD\": 263, \"FHH_CHILD\": 843, \"FAMILIES\": 7323, \"AVE_FAM_SZ\": 2.910000, \"HSE_UNITS\": 11504, \"VACANT\": 176, \"OWNER_OCC\": 7671, \"RENTER_OCC\": 3657 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.259523, 45.085531999993812 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Golden Valley\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"24308\", \"CAPITAL\": \"N\", \"AREALAND\": 10.231000, \"AREAWATER\": 0.288000, \"POP_CL\": 6, \"POP2000\": 20281, \"WHITE\": 18469, \"BLACK\": 728, \"AMERI_ES\": 59, \"ASIAN\": 582, \"HAWN_PI\": 6, \"OTHER\": 111, \"MULT_RACE\": 326, \"HISPANIC\": 357, \"MALES\": 9809, \"FEMALES\": 10472, \"AGE_UNDER5\": 1115, \"AGE_5_17\": 3057, \"AGE_18_21\": 520, \"AGE_22_29\": 1569, \"AGE_30_39\": 2978, \"AGE_40_49\": 3352, \"AGE_50_64\": 3712, \"AGE_65_UP\": 3978, \"MED_AGE\": 42.700000, \"MED_AGE_M\": 40.800000, \"MED_AGE_F\": 44.400000, \"HOUSEHOLDS\": 8449, \"AVE_HH_SZ\": 2.310000, \"HSEHLD_1_M\": 822, \"HSEHLD_1_F\": 1510, \"MARHH_CHD\": 1821, \"MARHH_NO_C\": 2866, \"MHH_CHILD\": 85, \"FHH_CHILD\": 334, \"FAMILIES\": 5512, \"AVE_FAM_SZ\": 2.840000, \"HSE_UNITS\": 8589, \"VACANT\": 140, \"OWNER_OCC\": 6885, \"RENTER_OCC\": 1564 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.359171, 44.992513999993896 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ham Lake\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"26738\", \"CAPITAL\": \"N\", \"AREALAND\": 34.452000, \"AREAWATER\": 1.253000, \"POP_CL\": 6, \"POP2000\": 12710, \"WHITE\": 12290, \"BLACK\": 64, \"AMERI_ES\": 49, \"ASIAN\": 96, \"HAWN_PI\": 5, \"OTHER\": 47, \"MULT_RACE\": 159, \"HISPANIC\": 145, \"MALES\": 6636, \"FEMALES\": 6074, \"AGE_UNDER5\": 967, \"AGE_5_17\": 2978, \"AGE_18_21\": 616, \"AGE_22_29\": 998, \"AGE_30_39\": 2373, \"AGE_40_49\": 2276, \"AGE_50_64\": 1972, \"AGE_65_UP\": 530, \"MED_AGE\": 34.000000, \"MED_AGE_M\": 33.600000, \"MED_AGE_F\": 34.400000, \"HOUSEHOLDS\": 4139, \"AVE_HH_SZ\": 3.070000, \"HSEHLD_1_M\": 290, \"HSEHLD_1_F\": 183, \"MARHH_CHD\": 1644, \"MARHH_NO_C\": 1417, \"MHH_CHILD\": 107, \"FHH_CHILD\": 150, \"FAMILIES\": 3471, \"AVE_FAM_SZ\": 3.330000, \"HSE_UNITS\": 4208, \"VACANT\": 69, \"OWNER_OCC\": 3917, \"RENTER_OCC\": 222 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.215939, 45.254573999993646 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hastings\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"27530\", \"CAPITAL\": \"N\", \"AREALAND\": 10.123000, \"AREAWATER\": 0.867000, \"POP_CL\": 6, \"POP2000\": 18204, \"WHITE\": 17687, \"BLACK\": 79, \"AMERI_ES\": 69, \"ASIAN\": 117, \"HAWN_PI\": 7, \"OTHER\": 65, \"MULT_RACE\": 180, \"HISPANIC\": 207, \"MALES\": 9091, \"FEMALES\": 9113, \"AGE_UNDER5\": 1214, \"AGE_5_17\": 3757, \"AGE_18_21\": 948, \"AGE_22_29\": 1866, \"AGE_30_39\": 2849, \"AGE_40_49\": 2829, \"AGE_50_64\": 2612, \"AGE_65_UP\": 2129, \"MED_AGE\": 35.000000, \"MED_AGE_M\": 33.800000, \"MED_AGE_F\": 36.100000, \"HOUSEHOLDS\": 6642, \"AVE_HH_SZ\": 2.640000, \"HSEHLD_1_M\": 622, \"HSEHLD_1_F\": 894, \"MARHH_CHD\": 1857, \"MARHH_NO_C\": 1918, \"MHH_CHILD\": 144, \"FHH_CHILD\": 486, \"FAMILIES\": 4723, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 6758, \"VACANT\": 116, \"OWNER_OCC\": 5095, \"RENTER_OCC\": 1547 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -92.857804, 44.733316999994145 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hibbing\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"28790\", \"CAPITAL\": \"N\", \"AREALAND\": 181.676000, \"AREAWATER\": 4.836000, \"POP_CL\": 6, \"POP2000\": 17071, \"WHITE\": 16616, \"BLACK\": 79, \"AMERI_ES\": 124, \"ASIAN\": 46, \"HAWN_PI\": 1, \"OTHER\": 33, \"MULT_RACE\": 172, \"HISPANIC\": 116, \"MALES\": 8232, \"FEMALES\": 8839, \"AGE_UNDER5\": 874, \"AGE_5_17\": 3017, \"AGE_18_21\": 1037, \"AGE_22_29\": 1349, \"AGE_30_39\": 2026, \"AGE_40_49\": 2768, \"AGE_50_64\": 2628, \"AGE_65_UP\": 3372, \"MED_AGE\": 41.000000, \"MED_AGE_M\": 39.200000, \"MED_AGE_F\": 42.500000, \"HOUSEHOLDS\": 7439, \"AVE_HH_SZ\": 2.240000, \"HSEHLD_1_M\": 1021, \"HSEHLD_1_F\": 1474, \"MARHH_CHD\": 1413, \"MARHH_NO_C\": 2180, \"MHH_CHILD\": 154, \"FHH_CHILD\": 497, \"FAMILIES\": 4594, \"AVE_FAM_SZ\": 2.860000, \"HSE_UNITS\": 8037, \"VACANT\": 598, \"OWNER_OCC\": 5570, \"RENTER_OCC\": 1869 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -92.938295, 47.417210999991326 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hopkins\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"30140\", \"CAPITAL\": \"N\", \"AREALAND\": 4.076000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 17145, \"WHITE\": 14164, \"BLACK\": 890, \"AMERI_ES\": 134, \"ASIAN\": 1015, \"HAWN_PI\": 15, \"OTHER\": 443, \"MULT_RACE\": 484, \"HISPANIC\": 949, \"MALES\": 8149, \"FEMALES\": 8996, \"AGE_UNDER5\": 989, \"AGE_5_17\": 2371, \"AGE_18_21\": 694, \"AGE_22_29\": 3209, \"AGE_30_39\": 3017, \"AGE_40_49\": 2392, \"AGE_50_64\": 1990, \"AGE_65_UP\": 2483, \"MED_AGE\": 34.100000, \"MED_AGE_M\": 32.200000, \"MED_AGE_F\": 35.900000, \"HOUSEHOLDS\": 8224, \"AVE_HH_SZ\": 2.030000, \"HSEHLD_1_M\": 1488, \"HSEHLD_1_F\": 2038, \"MARHH_CHD\": 1139, \"MARHH_NO_C\": 1444, \"MHH_CHILD\": 135, \"FHH_CHILD\": 596, \"FAMILIES\": 3739, \"AVE_FAM_SZ\": 2.850000, \"HSE_UNITS\": 8390, \"VACANT\": 166, \"OWNER_OCC\": 3120, \"RENTER_OCC\": 5104 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.40551, 44.926663999993949 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hutchinson\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"30644\", \"CAPITAL\": \"N\", \"AREALAND\": 7.417000, \"AREAWATER\": 0.401000, \"POP_CL\": 6, \"POP2000\": 13080, \"WHITE\": 12588, \"BLACK\": 47, \"AMERI_ES\": 30, \"ASIAN\": 120, \"HAWN_PI\": 4, \"OTHER\": 178, \"MULT_RACE\": 113, \"HISPANIC\": 278, \"MALES\": 6357, \"FEMALES\": 6723, \"AGE_UNDER5\": 982, \"AGE_5_17\": 2629, \"AGE_18_21\": 692, \"AGE_22_29\": 1546, \"AGE_30_39\": 1980, \"AGE_40_49\": 1786, \"AGE_50_64\": 1681, \"AGE_65_UP\": 1784, \"MED_AGE\": 33.700000, \"MED_AGE_M\": 31.500000, \"MED_AGE_F\": 35.800000, \"HOUSEHOLDS\": 5333, \"AVE_HH_SZ\": 2.410000, \"HSEHLD_1_M\": 624, \"HSEHLD_1_F\": 961, \"MARHH_CHD\": 1319, \"MARHH_NO_C\": 1444, \"MHH_CHILD\": 114, \"FHH_CHILD\": 344, \"FAMILIES\": 3421, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 5667, \"VACANT\": 334, \"OWNER_OCC\": 3691, \"RENTER_OCC\": 1642 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.375004999999874, 44.888788999993423 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Inver Grove Heights\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"31076\", \"CAPITAL\": \"N\", \"AREALAND\": 28.639000, \"AREAWATER\": 1.485000, \"POP_CL\": 6, \"POP2000\": 29751, \"WHITE\": 27312, \"BLACK\": 625, \"AMERI_ES\": 143, \"ASIAN\": 597, \"HAWN_PI\": 6, \"OTHER\": 516, \"MULT_RACE\": 552, \"HISPANIC\": 1256, \"MALES\": 14737, \"FEMALES\": 15014, \"AGE_UNDER5\": 2133, \"AGE_5_17\": 5992, \"AGE_18_21\": 1533, \"AGE_22_29\": 3462, \"AGE_30_39\": 5051, \"AGE_40_49\": 5036, \"AGE_50_64\": 4212, \"AGE_65_UP\": 2332, \"MED_AGE\": 33.800000, \"MED_AGE_M\": 32.700000, \"MED_AGE_F\": 34.800000, \"HOUSEHOLDS\": 11257, \"AVE_HH_SZ\": 2.620000, \"HSEHLD_1_M\": 1090, \"HSEHLD_1_F\": 1332, \"MARHH_CHD\": 3159, \"MARHH_NO_C\": 3194, \"MHH_CHILD\": 242, \"FHH_CHILD\": 802, \"FAMILIES\": 7930, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 11457, \"VACANT\": 200, \"OWNER_OCC\": 8724, \"RENTER_OCC\": 2533 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.05175, 44.837632999994042 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lakeville\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"35180\", \"CAPITAL\": \"N\", \"AREALAND\": 36.169000, \"AREAWATER\": 1.367000, \"POP_CL\": 6, \"POP2000\": 43128, \"WHITE\": 40654, \"BLACK\": 553, \"AMERI_ES\": 165, \"ASIAN\": 868, \"HAWN_PI\": 10, \"OTHER\": 328, \"MULT_RACE\": 550, \"HISPANIC\": 835, \"MALES\": 21835, \"FEMALES\": 21293, \"AGE_UNDER5\": 4358, \"AGE_5_17\": 11202, \"AGE_18_21\": 1581, \"AGE_22_29\": 3272, \"AGE_30_39\": 9607, \"AGE_40_49\": 7376, \"AGE_50_64\": 4506, \"AGE_65_UP\": 1226, \"MED_AGE\": 31.500000, \"MED_AGE_M\": 31.400000, \"MED_AGE_F\": 31.600000, \"HOUSEHOLDS\": 13609, \"AVE_HH_SZ\": 3.170000, \"HSEHLD_1_M\": 796, \"HSEHLD_1_F\": 656, \"MARHH_CHD\": 6532, \"MARHH_NO_C\": 3479, \"MHH_CHILD\": 323, \"FHH_CHILD\": 771, \"FAMILIES\": 11529, \"AVE_FAM_SZ\": 3.430000, \"HSE_UNITS\": 13799, \"VACANT\": 190, \"OWNER_OCC\": 12487, \"RENTER_OCC\": 1122 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.244669, 44.691900999994182 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lino Lakes\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"37322\", \"CAPITAL\": \"N\", \"AREALAND\": 28.217000, \"AREAWATER\": 4.994000, \"POP_CL\": 6, \"POP2000\": 16791, \"WHITE\": 15726, \"BLACK\": 417, \"AMERI_ES\": 123, \"ASIAN\": 192, \"HAWN_PI\": 1, \"OTHER\": 115, \"MULT_RACE\": 217, \"HISPANIC\": 259, \"MALES\": 9100, \"FEMALES\": 7691, \"AGE_UNDER5\": 1431, \"AGE_5_17\": 4220, \"AGE_18_21\": 686, \"AGE_22_29\": 1264, \"AGE_30_39\": 3803, \"AGE_40_49\": 3299, \"AGE_50_64\": 1539, \"AGE_65_UP\": 549, \"MED_AGE\": 32.900000, \"MED_AGE_M\": 33.100000, \"MED_AGE_F\": 32.700000, \"HOUSEHOLDS\": 4857, \"AVE_HH_SZ\": 3.200000, \"HSEHLD_1_M\": 297, \"HSEHLD_1_F\": 191, \"MARHH_CHD\": 2455, \"MARHH_NO_C\": 1313, \"MHH_CHILD\": 85, \"FHH_CHILD\": 176, \"FAMILIES\": 4163, \"AVE_FAM_SZ\": 3.470000, \"HSE_UNITS\": 4921, \"VACANT\": 64, \"OWNER_OCC\": 4681, \"RENTER_OCC\": 176 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.09755, 45.167367999993743 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mankato\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"39878\", \"CAPITAL\": \"N\", \"AREALAND\": 15.206000, \"AREAWATER\": 0.191000, \"POP_CL\": 6, \"POP2000\": 32427, \"WHITE\": 30011, \"BLACK\": 616, \"AMERI_ES\": 110, \"ASIAN\": 911, \"HAWN_PI\": 31, \"OTHER\": 306, \"MULT_RACE\": 442, \"HISPANIC\": 719, \"MALES\": 15939, \"FEMALES\": 16488, \"AGE_UNDER5\": 1578, \"AGE_5_17\": 3904, \"AGE_18_21\": 7090, \"AGE_22_29\": 5978, \"AGE_30_39\": 3453, \"AGE_40_49\": 3535, \"AGE_50_64\": 3215, \"AGE_65_UP\": 3674, \"MED_AGE\": 25.300000, \"MED_AGE_M\": 24.800000, \"MED_AGE_F\": 26.100000, \"HOUSEHOLDS\": 12367, \"AVE_HH_SZ\": 2.310000, \"HSEHLD_1_M\": 1712, \"HSEHLD_1_F\": 2276, \"MARHH_CHD\": 1977, \"MARHH_NO_C\": 2563, \"MHH_CHILD\": 206, \"FHH_CHILD\": 737, \"FAMILIES\": 6056, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 12759, \"VACANT\": 392, \"OWNER_OCC\": 6543, \"RENTER_OCC\": 5824 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.993797999999899, 44.164502999994554 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Maple Grove\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"40166\", \"CAPITAL\": \"N\", \"AREALAND\": 32.870000, \"AREAWATER\": 2.075000, \"POP_CL\": 7, \"POP2000\": 50365, \"WHITE\": 47717, \"BLACK\": 528, \"AMERI_ES\": 119, \"ASIAN\": 1267, \"HAWN_PI\": 16, \"OTHER\": 169, \"MULT_RACE\": 549, \"HISPANIC\": 534, \"MALES\": 24934, \"FEMALES\": 25431, \"AGE_UNDER5\": 3735, \"AGE_5_17\": 11754, \"AGE_18_21\": 2091, \"AGE_22_29\": 4127, \"AGE_30_39\": 9207, \"AGE_40_49\": 10308, \"AGE_50_64\": 7101, \"AGE_65_UP\": 2042, \"MED_AGE\": 34.400000, \"MED_AGE_M\": 33.700000, \"MED_AGE_F\": 35.000000, \"HOUSEHOLDS\": 17532, \"AVE_HH_SZ\": 2.870000, \"HSEHLD_1_M\": 1143, \"HSEHLD_1_F\": 1635, \"MARHH_CHD\": 6973, \"MARHH_NO_C\": 5206, \"MHH_CHILD\": 270, \"FHH_CHILD\": 872, \"FAMILIES\": 13951, \"AVE_FAM_SZ\": 3.240000, \"HSE_UNITS\": 17745, \"VACANT\": 213, \"OWNER_OCC\": 16255, \"RENTER_OCC\": 1277 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.451915, 45.111105999993804 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Maplewood\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"40382\", \"CAPITAL\": \"N\", \"AREALAND\": 17.321000, \"AREAWATER\": 0.667000, \"POP_CL\": 6, \"POP2000\": 34947, \"WHITE\": 30994, \"BLACK\": 1236, \"AMERI_ES\": 193, \"ASIAN\": 1586, \"HAWN_PI\": 24, \"OTHER\": 256, \"MULT_RACE\": 658, \"HISPANIC\": 779, \"MALES\": 16695, \"FEMALES\": 18252, \"AGE_UNDER5\": 2278, \"AGE_5_17\": 6366, \"AGE_18_21\": 1515, \"AGE_22_29\": 3260, \"AGE_30_39\": 5380, \"AGE_40_49\": 5621, \"AGE_50_64\": 5270, \"AGE_65_UP\": 5257, \"MED_AGE\": 37.800000, \"MED_AGE_M\": 36.300000, \"MED_AGE_F\": 39.200000, \"HOUSEHOLDS\": 13758, \"AVE_HH_SZ\": 2.480000, \"HSEHLD_1_M\": 1397, \"HSEHLD_1_F\": 2312, \"MARHH_CHD\": 3231, \"MARHH_NO_C\": 4037, \"MHH_CHILD\": 230, \"FHH_CHILD\": 890, \"FAMILIES\": 9191, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 14004, \"VACANT\": 246, \"OWNER_OCC\": 10419, \"RENTER_OCC\": 3339 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.023916, 44.9928979999939 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Marshall\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"40688\", \"CAPITAL\": \"N\", \"AREALAND\": 8.286000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12735, \"WHITE\": 11634, \"BLACK\": 355, \"AMERI_ES\": 44, \"ASIAN\": 194, \"HAWN_PI\": 4, \"OTHER\": 333, \"MULT_RACE\": 171, \"HISPANIC\": 755, \"MALES\": 6093, \"FEMALES\": 6642, \"AGE_UNDER5\": 819, \"AGE_5_17\": 2229, \"AGE_18_21\": 1610, \"AGE_22_29\": 1710, \"AGE_30_39\": 1647, \"AGE_40_49\": 1672, \"AGE_50_64\": 1464, \"AGE_65_UP\": 1584, \"MED_AGE\": 30.000000, \"MED_AGE_M\": 29.200000, \"MED_AGE_F\": 30.900000, \"HOUSEHOLDS\": 4914, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 583, \"HSEHLD_1_F\": 913, \"MARHH_CHD\": 1137, \"MARHH_NO_C\": 1224, \"MHH_CHILD\": 64, \"FHH_CHILD\": 299, \"FAMILIES\": 2912, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 5182, \"VACANT\": 268, \"OWNER_OCC\": 2784, \"RENTER_OCC\": 2130 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.787854000002497, 44.447173999955268 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mendota Heights\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"41696\", \"CAPITAL\": \"N\", \"AREALAND\": 9.355000, \"AREAWATER\": 0.713000, \"POP_CL\": 6, \"POP2000\": 11434, \"WHITE\": 10938, \"BLACK\": 101, \"AMERI_ES\": 19, \"ASIAN\": 204, \"HAWN_PI\": 0, \"OTHER\": 53, \"MULT_RACE\": 119, \"HISPANIC\": 203, \"MALES\": 5501, \"FEMALES\": 5933, \"AGE_UNDER5\": 660, \"AGE_5_17\": 2492, \"AGE_18_21\": 386, \"AGE_22_29\": 596, \"AGE_30_39\": 1257, \"AGE_40_49\": 2212, \"AGE_50_64\": 2175, \"AGE_65_UP\": 1656, \"MED_AGE\": 41.700000, \"MED_AGE_M\": 41.100000, \"MED_AGE_F\": 42.100000, \"HOUSEHOLDS\": 4178, \"AVE_HH_SZ\": 2.720000, \"HSEHLD_1_M\": 273, \"HSEHLD_1_F\": 518, \"MARHH_CHD\": 1344, \"MARHH_NO_C\": 1558, \"MHH_CHILD\": 33, \"FHH_CHILD\": 140, \"FAMILIES\": 3238, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 4252, \"VACANT\": 74, \"OWNER_OCC\": 3843, \"RENTER_OCC\": 335 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.134881, 44.886831999993994 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Minneapolis\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"43000\", \"CAPITAL\": \"N\", \"AREALAND\": 54.892000, \"AREAWATER\": 3.507000, \"POP_CL\": 8, \"POP2000\": 382618, \"WHITE\": 249186, \"BLACK\": 68818, \"AMERI_ES\": 8378, \"ASIAN\": 23455, \"HAWN_PI\": 289, \"OTHER\": 15798, \"MULT_RACE\": 16694, \"HISPANIC\": 29175, \"MALES\": 192232, \"FEMALES\": 190386, \"AGE_UNDER5\": 25187, \"AGE_5_17\": 58982, \"AGE_18_21\": 30615, \"AGE_22_29\": 65972, \"AGE_30_39\": 69765, \"AGE_40_49\": 54369, \"AGE_50_64\": 42850, \"AGE_65_UP\": 34878, \"MED_AGE\": 31.200000, \"MED_AGE_M\": 30.800000, \"MED_AGE_F\": 31.700000, \"HOUSEHOLDS\": 162352, \"AVE_HH_SZ\": 2.250000, \"HSEHLD_1_M\": 32088, \"HSEHLD_1_F\": 33420, \"MARHH_CHD\": 20843, \"MARHH_NO_C\": 26206, \"MHH_CHILD\": 3027, \"FHH_CHILD\": 12828, \"FAMILIES\": 73939, \"AVE_FAM_SZ\": 3.150000, \"HSE_UNITS\": 168606, \"VACANT\": 6254, \"OWNER_OCC\": 83408, \"RENTER_OCC\": 78944 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.268198, 44.964464999993936 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Minnetonka\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"43252\", \"CAPITAL\": \"N\", \"AREALAND\": 27.143000, \"AREAWATER\": 1.080000, \"POP_CL\": 7, \"POP2000\": 51301, \"WHITE\": 48426, \"BLACK\": 767, \"AMERI_ES\": 101, \"ASIAN\": 1174, \"HAWN_PI\": 15, \"OTHER\": 291, \"MULT_RACE\": 527, \"HISPANIC\": 657, \"MALES\": 24555, \"FEMALES\": 26746, \"AGE_UNDER5\": 2725, \"AGE_5_17\": 9148, \"AGE_18_21\": 1526, \"AGE_22_29\": 4499, \"AGE_30_39\": 7030, \"AGE_40_49\": 9521, \"AGE_50_64\": 9687, \"AGE_65_UP\": 7165, \"MED_AGE\": 40.800000, \"MED_AGE_M\": 39.800000, \"MED_AGE_F\": 41.700000, \"HOUSEHOLDS\": 21393, \"AVE_HH_SZ\": 2.370000, \"HSEHLD_1_M\": 2141, \"HSEHLD_1_F\": 3708, \"MARHH_CHD\": 5141, \"MARHH_NO_C\": 6977, \"MHH_CHILD\": 256, \"FHH_CHILD\": 830, \"FAMILIES\": 14090, \"AVE_FAM_SZ\": 2.920000, \"HSE_UNITS\": 22228, \"VACANT\": 835, \"OWNER_OCC\": 16195, \"RENTER_OCC\": 5198 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.461594, 44.932016999993962 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Moorhead\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"43864\", \"CAPITAL\": \"N\", \"AREALAND\": 13.439000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 32177, \"WHITE\": 29628, \"BLACK\": 247, \"AMERI_ES\": 625, \"ASIAN\": 410, \"HAWN_PI\": 14, \"OTHER\": 676, \"MULT_RACE\": 577, \"HISPANIC\": 1439, \"MALES\": 15096, \"FEMALES\": 17081, \"AGE_UNDER5\": 1870, \"AGE_5_17\": 5420, \"AGE_18_21\": 5521, \"AGE_22_29\": 3706, \"AGE_30_39\": 3755, \"AGE_40_49\": 4268, \"AGE_50_64\": 3533, \"AGE_65_UP\": 4104, \"MED_AGE\": 28.700000, \"MED_AGE_M\": 28.200000, \"MED_AGE_F\": 29.200000, \"HOUSEHOLDS\": 11660, \"AVE_HH_SZ\": 2.430000, \"HSEHLD_1_M\": 1321, \"HSEHLD_1_F\": 2087, \"MARHH_CHD\": 2611, \"MARHH_NO_C\": 2904, \"MHH_CHILD\": 207, \"FHH_CHILD\": 845, \"FAMILIES\": 7036, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 12180, \"VACANT\": 520, \"OWNER_OCC\": 7430, \"RENTER_OCC\": 4230 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.758706999978003, 46.864562999739057 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mounds View\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"44530\", \"CAPITAL\": \"N\", \"AREALAND\": 4.114000, \"AREAWATER\": 0.021000, \"POP_CL\": 6, \"POP2000\": 12738, \"WHITE\": 11547, \"BLACK\": 306, \"AMERI_ES\": 84, \"ASIAN\": 398, \"HAWN_PI\": 7, \"OTHER\": 130, \"MULT_RACE\": 266, \"HISPANIC\": 334, \"MALES\": 6358, \"FEMALES\": 6380, \"AGE_UNDER5\": 962, \"AGE_5_17\": 2327, \"AGE_18_21\": 701, \"AGE_22_29\": 1673, \"AGE_30_39\": 2065, \"AGE_40_49\": 1934, \"AGE_50_64\": 1938, \"AGE_65_UP\": 1138, \"MED_AGE\": 33.500000, \"MED_AGE_M\": 32.500000, \"MED_AGE_F\": 34.600000, \"HOUSEHOLDS\": 5018, \"AVE_HH_SZ\": 2.530000, \"HSEHLD_1_M\": 556, \"HSEHLD_1_F\": 645, \"MARHH_CHD\": 1158, \"MARHH_NO_C\": 1391, \"MHH_CHILD\": 127, \"FHH_CHILD\": 395, \"FAMILIES\": 3385, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 5130, \"VACANT\": 112, \"OWNER_OCC\": 3532, \"RENTER_OCC\": 1486 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.206188, 45.104731999993795 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"New Brighton\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"45430\", \"CAPITAL\": \"N\", \"AREALAND\": 6.641000, \"AREAWATER\": 0.454000, \"POP_CL\": 6, \"POP2000\": 22206, \"WHITE\": 19672, \"BLACK\": 738, \"AMERI_ES\": 137, \"ASIAN\": 972, \"HAWN_PI\": 13, \"OTHER\": 186, \"MULT_RACE\": 488, \"HISPANIC\": 393, \"MALES\": 10807, \"FEMALES\": 11399, \"AGE_UNDER5\": 1288, \"AGE_5_17\": 3648, \"AGE_18_21\": 1317, \"AGE_22_29\": 2749, \"AGE_30_39\": 3091, \"AGE_40_49\": 3247, \"AGE_50_64\": 4067, \"AGE_65_UP\": 2799, \"MED_AGE\": 37.000000, \"MED_AGE_M\": 36.000000, \"MED_AGE_F\": 38.200000, \"HOUSEHOLDS\": 9013, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 998, \"HSEHLD_1_F\": 1358, \"MARHH_CHD\": 1871, \"MARHH_NO_C\": 2848, \"MHH_CHILD\": 133, \"FHH_CHILD\": 596, \"FAMILIES\": 5907, \"AVE_FAM_SZ\": 2.910000, \"HSE_UNITS\": 9121, \"VACANT\": 108, \"OWNER_OCC\": 6066, \"RENTER_OCC\": 2947 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.207569, 45.062701999993827 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"New Hope\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"45628\", \"CAPITAL\": \"N\", \"AREALAND\": 5.093000, \"AREAWATER\": 0.016000, \"POP_CL\": 6, \"POP2000\": 20873, \"WHITE\": 18088, \"BLACK\": 1207, \"AMERI_ES\": 97, \"ASIAN\": 669, \"HAWN_PI\": 8, \"OTHER\": 364, \"MULT_RACE\": 440, \"HISPANIC\": 721, \"MALES\": 9688, \"FEMALES\": 11185, \"AGE_UNDER5\": 1298, \"AGE_5_17\": 3157, \"AGE_18_21\": 838, \"AGE_22_29\": 2415, \"AGE_30_39\": 3252, \"AGE_40_49\": 2817, \"AGE_50_64\": 3391, \"AGE_65_UP\": 3705, \"MED_AGE\": 38.300000, \"MED_AGE_M\": 35.900000, \"MED_AGE_F\": 40.700000, \"HOUSEHOLDS\": 8665, \"AVE_HH_SZ\": 2.290000, \"HSEHLD_1_M\": 1091, \"HSEHLD_1_F\": 1707, \"MARHH_CHD\": 1636, \"MARHH_NO_C\": 2455, \"MHH_CHILD\": 145, \"FHH_CHILD\": 572, \"FAMILIES\": 5271, \"AVE_FAM_SZ\": 2.910000, \"HSE_UNITS\": 8746, \"VACANT\": 81, \"OWNER_OCC\": 4863, \"RENTER_OCC\": 3802 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.387182, 45.036930999993871 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"New Ulm\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"46042\", \"CAPITAL\": \"N\", \"AREALAND\": 8.780000, \"AREAWATER\": 0.205000, \"POP_CL\": 6, \"POP2000\": 13594, \"WHITE\": 13336, \"BLACK\": 15, \"AMERI_ES\": 20, \"ASIAN\": 63, \"HAWN_PI\": 4, \"OTHER\": 68, \"MULT_RACE\": 88, \"HISPANIC\": 171, \"MALES\": 6647, \"FEMALES\": 6947, \"AGE_UNDER5\": 658, \"AGE_5_17\": 2483, \"AGE_18_21\": 1207, \"AGE_22_29\": 1227, \"AGE_30_39\": 1665, \"AGE_40_49\": 2081, \"AGE_50_64\": 2022, \"AGE_65_UP\": 2251, \"MED_AGE\": 37.800000, \"MED_AGE_M\": 35.900000, \"MED_AGE_F\": 39.400000, \"HOUSEHOLDS\": 5494, \"AVE_HH_SZ\": 2.310000, \"HSEHLD_1_M\": 671, \"HSEHLD_1_F\": 1034, \"MARHH_CHD\": 1204, \"MARHH_NO_C\": 1700, \"MHH_CHILD\": 98, \"FHH_CHILD\": 324, \"FAMILIES\": 3557, \"AVE_FAM_SZ\": 2.890000, \"HSE_UNITS\": 5736, \"VACANT\": 242, \"OWNER_OCC\": 4234, \"RENTER_OCC\": 1260 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.462993999999895, 44.312029999993698 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Northfield\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"46924\", \"CAPITAL\": \"N\", \"AREALAND\": 6.993000, \"AREAWATER\": 0.029000, \"POP_CL\": 6, \"POP2000\": 17147, \"WHITE\": 15873, \"BLACK\": 154, \"AMERI_ES\": 58, \"ASIAN\": 405, \"HAWN_PI\": 9, \"OTHER\": 306, \"MULT_RACE\": 342, \"HISPANIC\": 982, \"MALES\": 8182, \"FEMALES\": 8965, \"AGE_UNDER5\": 871, \"AGE_5_17\": 2599, \"AGE_18_21\": 4401, \"AGE_22_29\": 1886, \"AGE_30_39\": 1753, \"AGE_40_49\": 2079, \"AGE_50_64\": 1751, \"AGE_65_UP\": 1807, \"MED_AGE\": 23.000000, \"MED_AGE_M\": 22.900000, \"MED_AGE_F\": 23.300000, \"HOUSEHOLDS\": 4909, \"AVE_HH_SZ\": 2.530000, \"HSEHLD_1_M\": 574, \"HSEHLD_1_F\": 777, \"MARHH_CHD\": 1282, \"MARHH_NO_C\": 1307, \"MHH_CHILD\": 107, \"FHH_CHILD\": 349, \"FAMILIES\": 3212, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 5119, \"VACANT\": 210, \"OWNER_OCC\": 3355, \"RENTER_OCC\": 1554 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.16255, 44.456058999994383 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"North Mankato\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"47068\", \"CAPITAL\": \"N\", \"AREALAND\": 4.715000, \"AREAWATER\": 0.082000, \"POP_CL\": 6, \"POP2000\": 11798, \"WHITE\": 11381, \"BLACK\": 77, \"AMERI_ES\": 28, \"ASIAN\": 163, \"HAWN_PI\": 4, \"OTHER\": 52, \"MULT_RACE\": 93, \"HISPANIC\": 188, \"MALES\": 5782, \"FEMALES\": 6016, \"AGE_UNDER5\": 827, \"AGE_5_17\": 2271, \"AGE_18_21\": 734, \"AGE_22_29\": 1480, \"AGE_30_39\": 1777, \"AGE_40_49\": 1842, \"AGE_50_64\": 1730, \"AGE_65_UP\": 1137, \"MED_AGE\": 33.300000, \"MED_AGE_M\": 32.500000, \"MED_AGE_F\": 34.200000, \"HOUSEHOLDS\": 4744, \"AVE_HH_SZ\": 2.480000, \"HSEHLD_1_M\": 511, \"HSEHLD_1_F\": 663, \"MARHH_CHD\": 1285, \"MARHH_NO_C\": 1326, \"MHH_CHILD\": 90, \"FHH_CHILD\": 317, \"FAMILIES\": 3178, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 5046, \"VACANT\": 302, \"OWNER_OCC\": 3473, \"RENTER_OCC\": 1271 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.028381999999894, 44.176513999994533 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"North St. Paul\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"47221\", \"CAPITAL\": \"N\", \"AREALAND\": 2.887000, \"AREAWATER\": 0.113000, \"POP_CL\": 6, \"POP2000\": 11929, \"WHITE\": 11077, \"BLACK\": 313, \"AMERI_ES\": 66, \"ASIAN\": 201, \"HAWN_PI\": 4, \"OTHER\": 102, \"MULT_RACE\": 166, \"HISPANIC\": 281, \"MALES\": 5873, \"FEMALES\": 6056, \"AGE_UNDER5\": 777, \"AGE_5_17\": 2358, \"AGE_18_21\": 586, \"AGE_22_29\": 1230, \"AGE_30_39\": 1880, \"AGE_40_49\": 1952, \"AGE_50_64\": 1750, \"AGE_65_UP\": 1396, \"MED_AGE\": 36.000000, \"MED_AGE_M\": 34.600000, \"MED_AGE_F\": 37.400000, \"HOUSEHOLDS\": 4703, \"AVE_HH_SZ\": 2.520000, \"HSEHLD_1_M\": 544, \"HSEHLD_1_F\": 727, \"MARHH_CHD\": 1112, \"MARHH_NO_C\": 1313, \"MHH_CHILD\": 104, \"FHH_CHILD\": 350, \"FAMILIES\": 3161, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 4753, \"VACANT\": 50, \"OWNER_OCC\": 3402, \"RENTER_OCC\": 1301 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -92.998373, 45.012789999993878 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Oakdale\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"47680\", \"CAPITAL\": \"N\", \"AREALAND\": 11.066000, \"AREAWATER\": 0.205000, \"POP_CL\": 6, \"POP2000\": 26653, \"WHITE\": 24576, \"BLACK\": 611, \"AMERI_ES\": 96, \"ASIAN\": 654, \"HAWN_PI\": 2, \"OTHER\": 206, \"MULT_RACE\": 508, \"HISPANIC\": 732, \"MALES\": 12851, \"FEMALES\": 13802, \"AGE_UNDER5\": 2061, \"AGE_5_17\": 5674, \"AGE_18_21\": 1071, \"AGE_22_29\": 2584, \"AGE_30_39\": 5043, \"AGE_40_49\": 4335, \"AGE_50_64\": 3633, \"AGE_65_UP\": 2252, \"MED_AGE\": 34.300000, \"MED_AGE_M\": 33.400000, \"MED_AGE_F\": 35.100000, \"HOUSEHOLDS\": 10243, \"AVE_HH_SZ\": 2.590000, \"HSEHLD_1_M\": 982, \"HSEHLD_1_F\": 1604, \"MARHH_CHD\": 2942, \"MARHH_NO_C\": 2709, \"MHH_CHILD\": 192, \"FHH_CHILD\": 809, \"FAMILIES\": 7126, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 10394, \"VACANT\": 151, \"OWNER_OCC\": 8249, \"RENTER_OCC\": 1994 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -92.965732, 44.987190999993913 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Owatonna\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"49300\", \"CAPITAL\": \"N\", \"AREALAND\": 12.604000, \"AREAWATER\": 0.068000, \"POP_CL\": 6, \"POP2000\": 22434, \"WHITE\": 21108, \"BLACK\": 351, \"AMERI_ES\": 29, \"ASIAN\": 223, \"HAWN_PI\": 7, \"OTHER\": 430, \"MULT_RACE\": 286, \"HISPANIC\": 967, \"MALES\": 10927, \"FEMALES\": 11507, \"AGE_UNDER5\": 1636, \"AGE_5_17\": 4666, \"AGE_18_21\": 1093, \"AGE_22_29\": 2198, \"AGE_30_39\": 3506, \"AGE_40_49\": 3422, \"AGE_50_64\": 3017, \"AGE_65_UP\": 2896, \"MED_AGE\": 34.900000, \"MED_AGE_M\": 33.500000, \"MED_AGE_F\": 36.100000, \"HOUSEHOLDS\": 8704, \"AVE_HH_SZ\": 2.520000, \"HSEHLD_1_M\": 897, \"HSEHLD_1_F\": 1420, \"MARHH_CHD\": 2354, \"MARHH_NO_C\": 2564, \"MHH_CHILD\": 192, \"FHH_CHILD\": 531, \"FAMILIES\": 5939, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 8940, \"VACANT\": 236, \"OWNER_OCC\": 6645, \"RENTER_OCC\": 2059 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.224559, 44.087160999994694 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Plymouth\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"51730\", \"CAPITAL\": \"N\", \"AREALAND\": 32.915000, \"AREAWATER\": 2.410000, \"POP_CL\": 7, \"POP2000\": 65894, \"WHITE\": 60200, \"BLACK\": 1783, \"AMERI_ES\": 217, \"ASIAN\": 2495, \"HAWN_PI\": 9, \"OTHER\": 328, \"MULT_RACE\": 862, \"HISPANIC\": 1079, \"MALES\": 32454, \"FEMALES\": 33440, \"AGE_UNDER5\": 4595, \"AGE_5_17\": 13271, \"AGE_18_21\": 2544, \"AGE_22_29\": 6590, \"AGE_30_39\": 10925, \"AGE_40_49\": 12301, \"AGE_50_64\": 10681, \"AGE_65_UP\": 4987, \"MED_AGE\": 36.100000, \"MED_AGE_M\": 35.400000, \"MED_AGE_F\": 36.600000, \"HOUSEHOLDS\": 24820, \"AVE_HH_SZ\": 2.600000, \"HSEHLD_1_M\": 2142, \"HSEHLD_1_F\": 3260, \"MARHH_CHD\": 7844, \"MARHH_NO_C\": 7344, \"MHH_CHILD\": 302, \"FHH_CHILD\": 1230, \"FAMILIES\": 17654, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 25258, \"VACANT\": 438, \"OWNER_OCC\": 18994, \"RENTER_OCC\": 5826 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.458918, 45.015770999993876 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Prior Lake\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"52594\", \"CAPITAL\": \"N\", \"AREALAND\": 13.507000, \"AREAWATER\": 2.532000, \"POP_CL\": 6, \"POP2000\": 15917, \"WHITE\": 15046, \"BLACK\": 122, \"AMERI_ES\": 331, \"ASIAN\": 150, \"HAWN_PI\": 7, \"OTHER\": 53, \"MULT_RACE\": 208, \"HISPANIC\": 177, \"MALES\": 8043, \"FEMALES\": 7874, \"AGE_UNDER5\": 1479, \"AGE_5_17\": 3346, \"AGE_18_21\": 628, \"AGE_22_29\": 1478, \"AGE_30_39\": 3378, \"AGE_40_49\": 2675, \"AGE_50_64\": 2159, \"AGE_65_UP\": 774, \"MED_AGE\": 33.300000, \"MED_AGE_M\": 33.400000, \"MED_AGE_F\": 33.300000, \"HOUSEHOLDS\": 5645, \"AVE_HH_SZ\": 2.820000, \"HSEHLD_1_M\": 460, \"HSEHLD_1_F\": 420, \"MARHH_CHD\": 2036, \"MARHH_NO_C\": 1705, \"MHH_CHILD\": 145, \"FHH_CHILD\": 315, \"FAMILIES\": 4387, \"AVE_FAM_SZ\": 3.170000, \"HSE_UNITS\": 5791, \"VACANT\": 146, \"OWNER_OCC\": 4931, \"RENTER_OCC\": 714 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.429729, 44.726961999994145 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ramsey\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"53026\", \"CAPITAL\": \"N\", \"AREALAND\": 28.789000, \"AREAWATER\": 0.953000, \"POP_CL\": 6, \"POP2000\": 18510, \"WHITE\": 17918, \"BLACK\": 58, \"AMERI_ES\": 84, \"ASIAN\": 185, \"HAWN_PI\": 1, \"OTHER\": 52, \"MULT_RACE\": 212, \"HISPANIC\": 221, \"MALES\": 9527, \"FEMALES\": 8983, \"AGE_UNDER5\": 1549, \"AGE_5_17\": 4398, \"AGE_18_21\": 840, \"AGE_22_29\": 1775, \"AGE_30_39\": 3642, \"AGE_40_49\": 3125, \"AGE_50_64\": 2669, \"AGE_65_UP\": 512, \"MED_AGE\": 32.100000, \"MED_AGE_M\": 32.100000, \"MED_AGE_F\": 32.200000, \"HOUSEHOLDS\": 5906, \"AVE_HH_SZ\": 3.130000, \"HSEHLD_1_M\": 348, \"HSEHLD_1_F\": 174, \"MARHH_CHD\": 2571, \"MARHH_NO_C\": 1963, \"MHH_CHILD\": 123, \"FHH_CHILD\": 233, \"FAMILIES\": 5101, \"AVE_FAM_SZ\": 3.330000, \"HSE_UNITS\": 5946, \"VACANT\": 40, \"OWNER_OCC\": 5756, \"RENTER_OCC\": 150 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.442575, 45.260864999993643 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Red Wing\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"53620\", \"CAPITAL\": \"N\", \"AREALAND\": 35.394000, \"AREAWATER\": 5.975000, \"POP_CL\": 6, \"POP2000\": 16116, \"WHITE\": 15202, \"BLACK\": 213, \"AMERI_ES\": 357, \"ASIAN\": 119, \"HAWN_PI\": 8, \"OTHER\": 85, \"MULT_RACE\": 132, \"HISPANIC\": 205, \"MALES\": 7787, \"FEMALES\": 8329, \"AGE_UNDER5\": 941, \"AGE_5_17\": 3027, \"AGE_18_21\": 827, \"AGE_22_29\": 1413, \"AGE_30_39\": 2189, \"AGE_40_49\": 2553, \"AGE_50_64\": 2506, \"AGE_65_UP\": 2660, \"MED_AGE\": 38.700000, \"MED_AGE_M\": 36.900000, \"MED_AGE_F\": 40.300000, \"HOUSEHOLDS\": 6562, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 763, \"HSEHLD_1_F\": 1252, \"MARHH_CHD\": 1447, \"MARHH_NO_C\": 1915, \"MHH_CHILD\": 152, \"FHH_CHILD\": 399, \"FAMILIES\": 4169, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 6867, \"VACANT\": 305, \"OWNER_OCC\": 4707, \"RENTER_OCC\": 1855 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -92.562532, 44.565140999994291 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Richfield\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"54214\", \"CAPITAL\": \"N\", \"AREALAND\": 6.896000, \"AREAWATER\": 0.178000, \"POP_CL\": 6, \"POP2000\": 34439, \"WHITE\": 27981, \"BLACK\": 2289, \"AMERI_ES\": 248, \"ASIAN\": 1826, \"HAWN_PI\": 14, \"OTHER\": 1173, \"MULT_RACE\": 908, \"HISPANIC\": 2158, \"MALES\": 16886, \"FEMALES\": 17553, \"AGE_UNDER5\": 2080, \"AGE_5_17\": 4891, \"AGE_18_21\": 1647, \"AGE_22_29\": 4564, \"AGE_30_39\": 5740, \"AGE_40_49\": 5068, \"AGE_50_64\": 4816, \"AGE_65_UP\": 5633, \"MED_AGE\": 37.100000, \"MED_AGE_M\": 35.200000, \"MED_AGE_F\": 39.100000, \"HOUSEHOLDS\": 15073, \"AVE_HH_SZ\": 2.250000, \"HSEHLD_1_M\": 2023, \"HSEHLD_1_F\": 3056, \"MARHH_CHD\": 2522, \"MARHH_NO_C\": 4013, \"MHH_CHILD\": 238, \"FHH_CHILD\": 911, \"FAMILIES\": 8731, \"AVE_FAM_SZ\": 2.890000, \"HSE_UNITS\": 15357, \"VACANT\": 284, \"OWNER_OCC\": 10184, \"RENTER_OCC\": 4889 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.281248, 44.877163999994011 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Robbinsdale\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"54808\", \"CAPITAL\": \"N\", \"AREALAND\": 2.782000, \"AREAWATER\": 0.185000, \"POP_CL\": 6, \"POP2000\": 14123, \"WHITE\": 12553, \"BLACK\": 811, \"AMERI_ES\": 84, \"ASIAN\": 293, \"HAWN_PI\": 1, \"OTHER\": 142, \"MULT_RACE\": 239, \"HISPANIC\": 282, \"MALES\": 6758, \"FEMALES\": 7365, \"AGE_UNDER5\": 941, \"AGE_5_17\": 2127, \"AGE_18_21\": 512, \"AGE_22_29\": 1555, \"AGE_30_39\": 2574, \"AGE_40_49\": 2234, \"AGE_50_64\": 1703, \"AGE_65_UP\": 2477, \"MED_AGE\": 37.600000, \"MED_AGE_M\": 35.600000, \"MED_AGE_F\": 39.600000, \"HOUSEHOLDS\": 6097, \"AVE_HH_SZ\": 2.260000, \"HSEHLD_1_M\": 751, \"HSEHLD_1_F\": 1337, \"MARHH_CHD\": 1151, \"MARHH_NO_C\": 1512, \"MHH_CHILD\": 107, \"FHH_CHILD\": 368, \"FAMILIES\": 3524, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 6243, \"VACANT\": 146, \"OWNER_OCC\": 4509, \"RENTER_OCC\": 1588 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.334726, 45.026513999993874 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Rochester\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"54880\", \"CAPITAL\": \"N\", \"AREALAND\": 39.608000, \"AREAWATER\": 0.137000, \"POP_CL\": 7, \"POP2000\": 85806, \"WHITE\": 75088, \"BLACK\": 3064, \"AMERI_ES\": 258, \"ASIAN\": 4830, \"HAWN_PI\": 33, \"OTHER\": 996, \"MULT_RACE\": 1537, \"HISPANIC\": 2565, \"MALES\": 41720, \"FEMALES\": 44086, \"AGE_UNDER5\": 6401, \"AGE_5_17\": 15711, \"AGE_18_21\": 4045, \"AGE_22_29\": 10717, \"AGE_30_39\": 14407, \"AGE_40_49\": 13199, \"AGE_50_64\": 11475, \"AGE_65_UP\": 9851, \"MED_AGE\": 34.300000, \"MED_AGE_M\": 33.000000, \"MED_AGE_F\": 35.600000, \"HOUSEHOLDS\": 34116, \"AVE_HH_SZ\": 2.430000, \"HSEHLD_1_M\": 3974, \"HSEHLD_1_F\": 6152, \"MARHH_CHD\": 8643, \"MARHH_NO_C\": 9029, \"MHH_CHILD\": 531, \"FHH_CHILD\": 1946, \"FAMILIES\": 21478, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 35346, \"VACANT\": 1230, \"OWNER_OCC\": 24214, \"RENTER_OCC\": 9902 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -92.473226, 44.025762999994754 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Rosemount\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"55726\", \"CAPITAL\": \"N\", \"AREALAND\": 33.671000, \"AREAWATER\": 1.465000, \"POP_CL\": 6, \"POP2000\": 14619, \"WHITE\": 13564, \"BLACK\": 297, \"AMERI_ES\": 44, \"ASIAN\": 311, \"HAWN_PI\": 0, \"OTHER\": 117, \"MULT_RACE\": 286, \"HISPANIC\": 268, \"MALES\": 7278, \"FEMALES\": 7341, \"AGE_UNDER5\": 1380, \"AGE_5_17\": 3751, \"AGE_18_21\": 574, \"AGE_22_29\": 1245, \"AGE_30_39\": 3020, \"AGE_40_49\": 2386, \"AGE_50_64\": 1479, \"AGE_65_UP\": 784, \"MED_AGE\": 31.300000, \"MED_AGE_M\": 31.000000, \"MED_AGE_F\": 31.600000, \"HOUSEHOLDS\": 4742, \"AVE_HH_SZ\": 3.080000, \"HSEHLD_1_M\": 266, \"HSEHLD_1_F\": 349, \"MARHH_CHD\": 2045, \"MARHH_NO_C\": 1281, \"MHH_CHILD\": 113, \"FHH_CHILD\": 329, \"FAMILIES\": 3932, \"AVE_FAM_SZ\": 3.380000, \"HSE_UNITS\": 4845, \"VACANT\": 103, \"OWNER_OCC\": 4188, \"RENTER_OCC\": 554 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.119608, 44.740997999994129 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Roseville\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"55852\", \"CAPITAL\": \"N\", \"AREALAND\": 13.243000, \"AREAWATER\": 0.593000, \"POP_CL\": 6, \"POP2000\": 33690, \"WHITE\": 30150, \"BLACK\": 945, \"AMERI_ES\": 108, \"ASIAN\": 1646, \"HAWN_PI\": 28, \"OTHER\": 256, \"MULT_RACE\": 557, \"HISPANIC\": 664, \"MALES\": 15675, \"FEMALES\": 18015, \"AGE_UNDER5\": 1542, \"AGE_5_17\": 4599, \"AGE_18_21\": 2112, \"AGE_22_29\": 3812, \"AGE_30_39\": 4299, \"AGE_40_49\": 4862, \"AGE_50_64\": 5636, \"AGE_65_UP\": 6828, \"MED_AGE\": 41.000000, \"MED_AGE_M\": 39.200000, \"MED_AGE_F\": 42.700000, \"HOUSEHOLDS\": 14598, \"AVE_HH_SZ\": 2.200000, \"HSEHLD_1_M\": 1777, \"HSEHLD_1_F\": 3135, \"MARHH_CHD\": 2525, \"MARHH_NO_C\": 4658, \"MHH_CHILD\": 157, \"FHH_CHILD\": 565, \"FAMILIES\": 8600, \"AVE_FAM_SZ\": 2.820000, \"HSE_UNITS\": 14917, \"VACANT\": 319, \"OWNER_OCC\": 9848, \"RENTER_OCC\": 4750 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.153059, 45.014064999993877 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"St. Cloud\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"56896\", \"CAPITAL\": \"N\", \"AREALAND\": 30.157000, \"AREAWATER\": 0.775000, \"POP_CL\": 7, \"POP2000\": 59107, \"WHITE\": 54229, \"BLACK\": 1402, \"AMERI_ES\": 425, \"ASIAN\": 1839, \"HAWN_PI\": 37, \"OTHER\": 345, \"MULT_RACE\": 830, \"HISPANIC\": 784, \"MALES\": 29816, \"FEMALES\": 29291, \"AGE_UNDER5\": 3265, \"AGE_5_17\": 9013, \"AGE_18_21\": 8933, \"AGE_22_29\": 9955, \"AGE_30_39\": 7705, \"AGE_40_49\": 7550, \"AGE_50_64\": 6622, \"AGE_65_UP\": 6064, \"MED_AGE\": 28.200000, \"MED_AGE_M\": 27.400000, \"MED_AGE_F\": 29.200000, \"HOUSEHOLDS\": 22652, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 3096, \"HSEHLD_1_F\": 3745, \"MARHH_CHD\": 4322, \"MARHH_NO_C\": 5052, \"MHH_CHILD\": 413, \"FHH_CHILD\": 1442, \"FAMILIES\": 12263, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 23249, \"VACANT\": 597, \"OWNER_OCC\": 12671, \"RENTER_OCC\": 9981 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.17249899999986, 45.556832999993134 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"St. Louis Park\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"57220\", \"CAPITAL\": \"N\", \"AREALAND\": 10.704000, \"AREAWATER\": 0.209000, \"POP_CL\": 6, \"POP2000\": 44126, \"WHITE\": 39232, \"BLACK\": 1930, \"AMERI_ES\": 198, \"ASIAN\": 1417, \"HAWN_PI\": 25, \"OTHER\": 563, \"MULT_RACE\": 761, \"HISPANIC\": 1294, \"MALES\": 20940, \"FEMALES\": 23186, \"AGE_UNDER5\": 2657, \"AGE_5_17\": 5622, \"AGE_18_21\": 1413, \"AGE_22_29\": 7339, \"AGE_30_39\": 8247, \"AGE_40_49\": 6603, \"AGE_50_64\": 5767, \"AGE_65_UP\": 6478, \"MED_AGE\": 35.700000, \"MED_AGE_M\": 34.000000, \"MED_AGE_F\": 37.600000, \"HOUSEHOLDS\": 20782, \"AVE_HH_SZ\": 2.080000, \"HSEHLD_1_M\": 3030, \"HSEHLD_1_F\": 4849, \"MARHH_CHD\": 3278, \"MARHH_NO_C\": 4894, \"MHH_CHILD\": 241, \"FHH_CHILD\": 1044, \"FAMILIES\": 10562, \"AVE_FAM_SZ\": 2.810000, \"HSE_UNITS\": 21140, \"VACANT\": 358, \"OWNER_OCC\": 13219, \"RENTER_OCC\": 7563 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.362501, 44.946763999993941 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"St. Paul\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"58000\", \"CAPITAL\": \"Y\", \"AREALAND\": 52.768000, \"AREAWATER\": 3.406000, \"POP_CL\": 8, \"POP2000\": 287151, \"WHITE\": 192444, \"BLACK\": 33637, \"AMERI_ES\": 3259, \"ASIAN\": 35488, \"HAWN_PI\": 203, \"OTHER\": 11021, \"MULT_RACE\": 11099, \"HISPANIC\": 22715, \"MALES\": 138863, \"FEMALES\": 148288, \"AGE_UNDER5\": 21747, \"AGE_5_17\": 56080, \"AGE_18_21\": 20753, \"AGE_22_29\": 40087, \"AGE_30_39\": 45784, \"AGE_40_49\": 40275, \"AGE_50_64\": 32778, \"AGE_65_UP\": 29647, \"MED_AGE\": 31.000000, \"MED_AGE_M\": 30.100000, \"MED_AGE_F\": 31.900000, \"HOUSEHOLDS\": 112109, \"AVE_HH_SZ\": 2.460000, \"HSEHLD_1_M\": 17745, \"HSEHLD_1_F\": 22498, \"MARHH_CHD\": 19942, \"MARHH_NO_C\": 20582, \"MHH_CHILD\": 2382, \"FHH_CHILD\": 10317, \"FAMILIES\": 60999, \"AVE_FAM_SZ\": 3.320000, \"HSE_UNITS\": 115713, \"VACANT\": 3604, \"OWNER_OCC\": 61464, \"RENTER_OCC\": 50645 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.114115, 44.954364999993942 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sauk Rapids\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"58684\", \"CAPITAL\": \"N\", \"AREALAND\": 4.571000, \"AREAWATER\": 0.239000, \"POP_CL\": 6, \"POP2000\": 10213, \"WHITE\": 9918, \"BLACK\": 58, \"AMERI_ES\": 32, \"ASIAN\": 80, \"HAWN_PI\": 4, \"OTHER\": 23, \"MULT_RACE\": 98, \"HISPANIC\": 110, \"MALES\": 4880, \"FEMALES\": 5333, \"AGE_UNDER5\": 765, \"AGE_5_17\": 2101, \"AGE_18_21\": 542, \"AGE_22_29\": 1281, \"AGE_30_39\": 1777, \"AGE_40_49\": 1475, \"AGE_50_64\": 1132, \"AGE_65_UP\": 1140, \"MED_AGE\": 32.300000, \"MED_AGE_M\": 31.200000, \"MED_AGE_F\": 33.700000, \"HOUSEHOLDS\": 3921, \"AVE_HH_SZ\": 2.530000, \"HSEHLD_1_M\": 379, \"HSEHLD_1_F\": 650, \"MARHH_CHD\": 1087, \"MARHH_NO_C\": 954, \"MHH_CHILD\": 92, \"FHH_CHILD\": 306, \"FAMILIES\": 2598, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 4017, \"VACANT\": 96, \"OWNER_OCC\": 2589, \"RENTER_OCC\": 1332 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.163923999999867, 45.5928159999931 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Savage\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"58738\", \"CAPITAL\": \"N\", \"AREALAND\": 15.913000, \"AREAWATER\": 0.605000, \"POP_CL\": 6, \"POP2000\": 21115, \"WHITE\": 19140, \"BLACK\": 335, \"AMERI_ES\": 52, \"ASIAN\": 1138, \"HAWN_PI\": 5, \"OTHER\": 139, \"MULT_RACE\": 306, \"HISPANIC\": 345, \"MALES\": 10743, \"FEMALES\": 10372, \"AGE_UNDER5\": 2569, \"AGE_5_17\": 4952, \"AGE_18_21\": 564, \"AGE_22_29\": 1792, \"AGE_30_39\": 5646, \"AGE_40_49\": 3396, \"AGE_50_64\": 1641, \"AGE_65_UP\": 555, \"MED_AGE\": 31.400000, \"MED_AGE_M\": 31.500000, \"MED_AGE_F\": 31.300000, \"HOUSEHOLDS\": 6807, \"AVE_HH_SZ\": 3.100000, \"HSEHLD_1_M\": 434, \"HSEHLD_1_F\": 324, \"MARHH_CHD\": 3346, \"MARHH_NO_C\": 1693, \"MHH_CHILD\": 154, \"FHH_CHILD\": 340, \"FAMILIES\": 5721, \"AVE_FAM_SZ\": 3.380000, \"HSE_UNITS\": 6994, \"VACANT\": 187, \"OWNER_OCC\": 6219, \"RENTER_OCC\": 588 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.355213, 44.756463999994118 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Shakopee\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"59350\", \"CAPITAL\": \"N\", \"AREALAND\": 27.003000, \"AREAWATER\": 1.452000, \"POP_CL\": 6, \"POP2000\": 20568, \"WHITE\": 18842, \"BLACK\": 273, \"AMERI_ES\": 193, \"ASIAN\": 495, \"HAWN_PI\": 8, \"OTHER\": 440, \"MULT_RACE\": 317, \"HISPANIC\": 906, \"MALES\": 10187, \"FEMALES\": 10381, \"AGE_UNDER5\": 1832, \"AGE_5_17\": 3821, \"AGE_18_21\": 917, \"AGE_22_29\": 3000, \"AGE_30_39\": 4328, \"AGE_40_49\": 2820, \"AGE_50_64\": 2333, \"AGE_65_UP\": 1517, \"MED_AGE\": 31.500000, \"MED_AGE_M\": 31.000000, \"MED_AGE_F\": 31.900000, \"HOUSEHOLDS\": 7540, \"AVE_HH_SZ\": 2.660000, \"HSEHLD_1_M\": 716, \"HSEHLD_1_F\": 869, \"MARHH_CHD\": 2306, \"MARHH_NO_C\": 2079, \"MHH_CHILD\": 177, \"FHH_CHILD\": 447, \"FAMILIES\": 5364, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 7805, \"VACANT\": 265, \"OWNER_OCC\": 5927, \"RENTER_OCC\": 1613 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.502529, 44.786912999994101 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Shoreview\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"59998\", \"CAPITAL\": \"N\", \"AREALAND\": 11.194000, \"AREAWATER\": 1.546000, \"POP_CL\": 6, \"POP2000\": 25924, \"WHITE\": 24183, \"BLACK\": 261, \"AMERI_ES\": 56, \"ASIAN\": 946, \"HAWN_PI\": 14, \"OTHER\": 113, \"MULT_RACE\": 351, \"HISPANIC\": 346, \"MALES\": 12564, \"FEMALES\": 13360, \"AGE_UNDER5\": 1437, \"AGE_5_17\": 5353, \"AGE_18_21\": 1006, \"AGE_22_29\": 2045, \"AGE_30_39\": 3499, \"AGE_40_49\": 5187, \"AGE_50_64\": 4878, \"AGE_65_UP\": 2519, \"MED_AGE\": 39.200000, \"MED_AGE_M\": 38.000000, \"MED_AGE_F\": 40.200000, \"HOUSEHOLDS\": 10125, \"AVE_HH_SZ\": 2.540000, \"HSEHLD_1_M\": 855, \"HSEHLD_1_F\": 1583, \"MARHH_CHD\": 2942, \"MARHH_NO_C\": 3166, \"MHH_CHILD\": 112, \"FHH_CHILD\": 500, \"FAMILIES\": 7167, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 10289, \"VACANT\": 164, \"OWNER_OCC\": 8834, \"RENTER_OCC\": 1291 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.135302, 45.085642999993816 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"South St. Paul\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"61492\", \"CAPITAL\": \"N\", \"AREALAND\": 5.736000, \"AREAWATER\": 0.405000, \"POP_CL\": 6, \"POP2000\": 20167, \"WHITE\": 18680, \"BLACK\": 258, \"AMERI_ES\": 114, \"ASIAN\": 165, \"HAWN_PI\": 2, \"OTHER\": 564, \"MULT_RACE\": 384, \"HISPANIC\": 1295, \"MALES\": 9842, \"FEMALES\": 10325, \"AGE_UNDER5\": 1448, \"AGE_5_17\": 3678, \"AGE_18_21\": 1031, \"AGE_22_29\": 2285, \"AGE_30_39\": 3404, \"AGE_40_49\": 3085, \"AGE_50_64\": 2662, \"AGE_65_UP\": 2574, \"MED_AGE\": 35.400000, \"MED_AGE_M\": 34.200000, \"MED_AGE_F\": 36.400000, \"HOUSEHOLDS\": 8123, \"AVE_HH_SZ\": 2.470000, \"HSEHLD_1_M\": 1010, \"HSEHLD_1_F\": 1329, \"MARHH_CHD\": 1742, \"MARHH_NO_C\": 2076, \"MHH_CHILD\": 190, \"FHH_CHILD\": 705, \"FAMILIES\": 5254, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 8313, \"VACANT\": 190, \"OWNER_OCC\": 5852, \"RENTER_OCC\": 2271 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.045465, 44.887965999994002 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Stillwater\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"62824\", \"CAPITAL\": \"N\", \"AREALAND\": 6.471000, \"AREAWATER\": 0.832000, \"POP_CL\": 6, \"POP2000\": 15143, \"WHITE\": 14767, \"BLACK\": 48, \"AMERI_ES\": 43, \"ASIAN\": 86, \"HAWN_PI\": 3, \"OTHER\": 55, \"MULT_RACE\": 141, \"HISPANIC\": 148, \"MALES\": 7293, \"FEMALES\": 7850, \"AGE_UNDER5\": 991, \"AGE_5_17\": 3198, \"AGE_18_21\": 547, \"AGE_22_29\": 1120, \"AGE_30_39\": 2352, \"AGE_40_49\": 2599, \"AGE_50_64\": 2543, \"AGE_65_UP\": 1793, \"MED_AGE\": 37.700000, \"MED_AGE_M\": 36.100000, \"MED_AGE_F\": 38.900000, \"HOUSEHOLDS\": 5797, \"AVE_HH_SZ\": 2.550000, \"HSEHLD_1_M\": 545, \"HSEHLD_1_F\": 863, \"MARHH_CHD\": 1589, \"MARHH_NO_C\": 1724, \"MHH_CHILD\": 102, \"FHH_CHILD\": 442, \"FAMILIES\": 4115, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 5926, \"VACANT\": 129, \"OWNER_OCC\": 4529, \"RENTER_OCC\": 1268 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -92.818582, 45.055215999993841 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Vadnais Heights\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"66460\", \"CAPITAL\": \"N\", \"AREALAND\": 7.287000, \"AREAWATER\": 1.004000, \"POP_CL\": 6, \"POP2000\": 13069, \"WHITE\": 11981, \"BLACK\": 194, \"AMERI_ES\": 60, \"ASIAN\": 592, \"HAWN_PI\": 0, \"OTHER\": 62, \"MULT_RACE\": 180, \"HISPANIC\": 210, \"MALES\": 6223, \"FEMALES\": 6846, \"AGE_UNDER5\": 907, \"AGE_5_17\": 2614, \"AGE_18_21\": 676, \"AGE_22_29\": 1261, \"AGE_30_39\": 2042, \"AGE_40_49\": 2554, \"AGE_50_64\": 1998, \"AGE_65_UP\": 1017, \"MED_AGE\": 35.900000, \"MED_AGE_M\": 35.300000, \"MED_AGE_F\": 36.500000, \"HOUSEHOLDS\": 5064, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 491, \"HSEHLD_1_F\": 767, \"MARHH_CHD\": 1404, \"MARHH_NO_C\": 1339, \"MHH_CHILD\": 91, \"FHH_CHILD\": 346, \"FAMILIES\": 3451, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 5132, \"VACANT\": 68, \"OWNER_OCC\": 4276, \"RENTER_OCC\": 788 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.077757, 45.058564999993848 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"West St. Paul\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"69700\", \"CAPITAL\": \"N\", \"AREALAND\": 5.009000, \"AREAWATER\": 0.024000, \"POP_CL\": 6, \"POP2000\": 19405, \"WHITE\": 16934, \"BLACK\": 549, \"AMERI_ES\": 121, \"ASIAN\": 367, \"HAWN_PI\": 5, \"OTHER\": 946, \"MULT_RACE\": 483, \"HISPANIC\": 1937, \"MALES\": 9047, \"FEMALES\": 10358, \"AGE_UNDER5\": 1175, \"AGE_5_17\": 2920, \"AGE_18_21\": 942, \"AGE_22_29\": 2111, \"AGE_30_39\": 2745, \"AGE_40_49\": 2874, \"AGE_50_64\": 2916, \"AGE_65_UP\": 3722, \"MED_AGE\": 39.300000, \"MED_AGE_M\": 36.800000, \"MED_AGE_F\": 41.800000, \"HOUSEHOLDS\": 8645, \"AVE_HH_SZ\": 2.200000, \"HSEHLD_1_M\": 1116, \"HSEHLD_1_F\": 2095, \"MARHH_CHD\": 1437, \"MARHH_NO_C\": 2232, \"MHH_CHILD\": 128, \"FHH_CHILD\": 565, \"FAMILIES\": 4879, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 8779, \"VACANT\": 134, \"OWNER_OCC\": 5054, \"RENTER_OCC\": 3591 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.087367, 44.907414999993982 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"White Bear Lake\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"69970\", \"CAPITAL\": \"N\", \"AREALAND\": 8.178000, \"AREAWATER\": 0.513000, \"POP_CL\": 6, \"POP2000\": 24325, \"WHITE\": 23183, \"BLACK\": 262, \"AMERI_ES\": 89, \"ASIAN\": 374, \"HAWN_PI\": 13, \"OTHER\": 85, \"MULT_RACE\": 319, \"HISPANIC\": 425, \"MALES\": 11659, \"FEMALES\": 12666, \"AGE_UNDER5\": 1474, \"AGE_5_17\": 4556, \"AGE_18_21\": 1247, \"AGE_22_29\": 2294, \"AGE_30_39\": 3649, \"AGE_40_49\": 3863, \"AGE_50_64\": 3692, \"AGE_65_UP\": 3550, \"MED_AGE\": 37.400000, \"MED_AGE_M\": 35.900000, \"MED_AGE_F\": 38.700000, \"HOUSEHOLDS\": 9618, \"AVE_HH_SZ\": 2.490000, \"HSEHLD_1_M\": 873, \"HSEHLD_1_F\": 1543, \"MARHH_CHD\": 2263, \"MARHH_NO_C\": 3044, \"MHH_CHILD\": 196, \"FHH_CHILD\": 638, \"FAMILIES\": 6649, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 9813, \"VACANT\": 195, \"OWNER_OCC\": 7177, \"RENTER_OCC\": 2441 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.01099, 45.069682999993837 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Willmar\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"70420\", \"CAPITAL\": \"N\", \"AREALAND\": 11.840000, \"AREAWATER\": 1.759000, \"POP_CL\": 6, \"POP2000\": 18351, \"WHITE\": 16171, \"BLACK\": 165, \"AMERI_ES\": 84, \"ASIAN\": 98, \"HAWN_PI\": 20, \"OTHER\": 1563, \"MULT_RACE\": 250, \"HISPANIC\": 2911, \"MALES\": 8742, \"FEMALES\": 9609, \"AGE_UNDER5\": 1311, \"AGE_5_17\": 3500, \"AGE_18_21\": 1456, \"AGE_22_29\": 1965, \"AGE_30_39\": 2298, \"AGE_40_49\": 2539, \"AGE_50_64\": 2276, \"AGE_65_UP\": 3006, \"MED_AGE\": 34.200000, \"MED_AGE_M\": 31.700000, \"MED_AGE_F\": 36.800000, \"HOUSEHOLDS\": 7302, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 807, \"HSEHLD_1_F\": 1469, \"MARHH_CHD\": 1579, \"MARHH_NO_C\": 1875, \"MHH_CHILD\": 163, \"FHH_CHILD\": 543, \"FAMILIES\": 4462, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 7789, \"VACANT\": 487, \"OWNER_OCC\": 4598, \"RENTER_OCC\": 2704 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.048186000000186, 45.119609999987468 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Winona\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"71032\", \"CAPITAL\": \"N\", \"AREALAND\": 18.228000, \"AREAWATER\": 5.332000, \"POP_CL\": 6, \"POP2000\": 27069, \"WHITE\": 25573, \"BLACK\": 306, \"AMERI_ES\": 61, \"ASIAN\": 718, \"HAWN_PI\": 4, \"OTHER\": 128, \"MULT_RACE\": 279, \"HISPANIC\": 365, \"MALES\": 12727, \"FEMALES\": 14342, \"AGE_UNDER5\": 1222, \"AGE_5_17\": 3661, \"AGE_18_21\": 5429, \"AGE_22_29\": 3571, \"AGE_30_39\": 2853, \"AGE_40_49\": 3223, \"AGE_50_64\": 3263, \"AGE_65_UP\": 3847, \"MED_AGE\": 28.800000, \"MED_AGE_M\": 28.100000, \"MED_AGE_F\": 29.600000, \"HOUSEHOLDS\": 10301, \"AVE_HH_SZ\": 2.270000, \"HSEHLD_1_M\": 1535, \"HSEHLD_1_F\": 2091, \"MARHH_CHD\": 1758, \"MARHH_NO_C\": 2405, \"MHH_CHILD\": 149, \"FHH_CHILD\": 554, \"FAMILIES\": 5324, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 10666, \"VACANT\": 365, \"OWNER_OCC\": 6277, \"RENTER_OCC\": 4024 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -91.647158, 44.048157999994231 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Woodbury\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"71428\", \"CAPITAL\": \"N\", \"AREALAND\": 34.995000, \"AREAWATER\": 0.615000, \"POP_CL\": 6, \"POP2000\": 46463, \"WHITE\": 41836, \"BLACK\": 1168, \"AMERI_ES\": 113, \"ASIAN\": 2329, \"HAWN_PI\": 6, \"OTHER\": 286, \"MULT_RACE\": 725, \"HISPANIC\": 996, \"MALES\": 22523, \"FEMALES\": 23940, \"AGE_UNDER5\": 4452, \"AGE_5_17\": 9766, \"AGE_18_21\": 1444, \"AGE_22_29\": 4535, \"AGE_30_39\": 9594, \"AGE_40_49\": 7845, \"AGE_50_64\": 6001, \"AGE_65_UP\": 2826, \"MED_AGE\": 33.400000, \"MED_AGE_M\": 33.200000, \"MED_AGE_F\": 33.700000, \"HOUSEHOLDS\": 16676, \"AVE_HH_SZ\": 2.760000, \"HSEHLD_1_M\": 1267, \"HSEHLD_1_F\": 1863, \"MARHH_CHD\": 6322, \"MARHH_NO_C\": 4823, \"MHH_CHILD\": 210, \"FHH_CHILD\": 774, \"FAMILIES\": 12665, \"AVE_FAM_SZ\": 3.200000, \"HSE_UNITS\": 17541, \"VACANT\": 865, \"OWNER_OCC\": 14209, \"RENTER_OCC\": 2467 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -92.935415, 44.92010099999397 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Worthington\", \"CLASS\": \"city\", \"ST\": \"MN\", \"STFIPS\": \"27\", \"PLACEFIP\": \"71734\", \"CAPITAL\": \"N\", \"AREALAND\": 7.146000, \"AREAWATER\": 1.367000, \"POP_CL\": 6, \"POP2000\": 11283, \"WHITE\": 8667, \"BLACK\": 215, \"AMERI_ES\": 55, \"ASIAN\": 797, \"HAWN_PI\": 15, \"OTHER\": 1296, \"MULT_RACE\": 238, \"HISPANIC\": 2175, \"MALES\": 5603, \"FEMALES\": 5680, \"AGE_UNDER5\": 859, \"AGE_5_17\": 2022, \"AGE_18_21\": 680, \"AGE_22_29\": 1160, \"AGE_30_39\": 1500, \"AGE_40_49\": 1517, \"AGE_50_64\": 1559, \"AGE_65_UP\": 1986, \"MED_AGE\": 36.200000, \"MED_AGE_M\": 34.000000, \"MED_AGE_F\": 38.700000, \"HOUSEHOLDS\": 4311, \"AVE_HH_SZ\": 2.550000, \"HSEHLD_1_M\": 440, \"HSEHLD_1_F\": 807, \"MARHH_CHD\": 955, \"MARHH_NO_C\": 1306, \"MHH_CHILD\": 101, \"FHH_CHILD\": 259, \"FAMILIES\": 2828, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 4573, \"VACANT\": 262, \"OWNER_OCC\": 2847, \"RENTER_OCC\": 1464 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.599052000002231, 43.623910999970199 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Affton\", \"CLASS\": \"CDP\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"00280\", \"CAPITAL\": \"N\", \"AREALAND\": 4.584000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 20535, \"WHITE\": 19841, \"BLACK\": 94, \"AMERI_ES\": 38, \"ASIAN\": 266, \"HAWN_PI\": 6, \"OTHER\": 57, \"MULT_RACE\": 233, \"HISPANIC\": 207, \"MALES\": 9673, \"FEMALES\": 10862, \"AGE_UNDER5\": 1176, \"AGE_5_17\": 3316, \"AGE_18_21\": 813, \"AGE_22_29\": 1846, \"AGE_30_39\": 3164, \"AGE_40_49\": 3270, \"AGE_50_64\": 2943, \"AGE_65_UP\": 4007, \"MED_AGE\": 39.900000, \"MED_AGE_M\": 38.400000, \"MED_AGE_F\": 41.300000, \"HOUSEHOLDS\": 8892, \"AVE_HH_SZ\": 2.310000, \"HSEHLD_1_M\": 1022, \"HSEHLD_1_F\": 1811, \"MARHH_CHD\": 1835, \"MARHH_NO_C\": 2712, \"MHH_CHILD\": 121, \"FHH_CHILD\": 397, \"FAMILIES\": 5653, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 9128, \"VACANT\": 236, \"OWNER_OCC\": 7129, \"RENTER_OCC\": 1763 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.323613999993441, 38.551051999975392 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Arnold\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"01972\", \"CAPITAL\": \"N\", \"AREALAND\": 11.248000, \"AREAWATER\": 0.334000, \"POP_CL\": 6, \"POP2000\": 19965, \"WHITE\": 19548, \"BLACK\": 59, \"AMERI_ES\": 42, \"ASIAN\": 75, \"HAWN_PI\": 4, \"OTHER\": 53, \"MULT_RACE\": 184, \"HISPANIC\": 207, \"MALES\": 9713, \"FEMALES\": 10252, \"AGE_UNDER5\": 1313, \"AGE_5_17\": 3780, \"AGE_18_21\": 996, \"AGE_22_29\": 1898, \"AGE_30_39\": 3173, \"AGE_40_49\": 3070, \"AGE_50_64\": 3313, \"AGE_65_UP\": 2422, \"MED_AGE\": 36.700000, \"MED_AGE_M\": 35.500000, \"MED_AGE_F\": 37.900000, \"HOUSEHOLDS\": 7550, \"AVE_HH_SZ\": 2.610000, \"HSEHLD_1_M\": 696, \"HSEHLD_1_F\": 965, \"MARHH_CHD\": 1963, \"MARHH_NO_C\": 2428, \"MHH_CHILD\": 187, \"FHH_CHILD\": 441, \"FAMILIES\": 5561, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 7913, \"VACANT\": 363, \"OWNER_OCC\": 6129, \"RENTER_OCC\": 1421 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.369392999994048, 38.432752999977801 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ballwin\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"03160\", \"CAPITAL\": \"N\", \"AREALAND\": 8.952000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 31283, \"WHITE\": 29215, \"BLACK\": 468, \"AMERI_ES\": 69, \"ASIAN\": 1022, \"HAWN_PI\": 13, \"OTHER\": 160, \"MULT_RACE\": 336, \"HISPANIC\": 583, \"MALES\": 15176, \"FEMALES\": 16107, \"AGE_UNDER5\": 2269, \"AGE_5_17\": 6180, \"AGE_18_21\": 1180, \"AGE_22_29\": 2455, \"AGE_30_39\": 4913, \"AGE_40_49\": 5311, \"AGE_50_64\": 5181, \"AGE_65_UP\": 3794, \"MED_AGE\": 37.600000, \"MED_AGE_M\": 36.800000, \"MED_AGE_F\": 38.500000, \"HOUSEHOLDS\": 11797, \"AVE_HH_SZ\": 2.650000, \"HSEHLD_1_M\": 928, \"HSEHLD_1_F\": 1498, \"MARHH_CHD\": 3706, \"MARHH_NO_C\": 4036, \"MHH_CHILD\": 140, \"FHH_CHILD\": 540, \"FAMILIES\": 8938, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 12062, \"VACANT\": 265, \"OWNER_OCC\": 9785, \"RENTER_OCC\": 2012 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.548419999996284, 38.594819999984558 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bellefontaine Neighbors\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"04222\", \"CAPITAL\": \"N\", \"AREALAND\": 4.380000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11271, \"WHITE\": 6056, \"BLACK\": 5006, \"AMERI_ES\": 22, \"ASIAN\": 29, \"HAWN_PI\": 2, \"OTHER\": 35, \"MULT_RACE\": 121, \"HISPANIC\": 76, \"MALES\": 5280, \"FEMALES\": 5991, \"AGE_UNDER5\": 646, \"AGE_5_17\": 2069, \"AGE_18_21\": 642, \"AGE_22_29\": 897, \"AGE_30_39\": 1778, \"AGE_40_49\": 1809, \"AGE_50_64\": 1432, \"AGE_65_UP\": 1998, \"MED_AGE\": 38.000000, \"MED_AGE_M\": 36.400000, \"MED_AGE_F\": 39.100000, \"HOUSEHOLDS\": 4388, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 428, \"HSEHLD_1_F\": 862, \"MARHH_CHD\": 805, \"MARHH_NO_C\": 1074, \"MHH_CHILD\": 103, \"FHH_CHILD\": 532, \"FAMILIES\": 2966, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 4550, \"VACANT\": 162, \"OWNER_OCC\": 3992, \"RENTER_OCC\": 396 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.227916999991976, 38.748216999969664 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Belton\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"04384\", \"CAPITAL\": \"N\", \"AREALAND\": 13.395000, \"AREAWATER\": 0.043000, \"POP_CL\": 6, \"POP2000\": 21730, \"WHITE\": 20205, \"BLACK\": 621, \"AMERI_ES\": 128, \"ASIAN\": 128, \"HAWN_PI\": 17, \"OTHER\": 232, \"MULT_RACE\": 399, \"HISPANIC\": 1017, \"MALES\": 10507, \"FEMALES\": 11223, \"AGE_UNDER5\": 1791, \"AGE_5_17\": 4727, \"AGE_18_21\": 1059, \"AGE_22_29\": 2436, \"AGE_30_39\": 3646, \"AGE_40_49\": 3202, \"AGE_50_64\": 2685, \"AGE_65_UP\": 2184, \"MED_AGE\": 32.600000, \"MED_AGE_M\": 31.200000, \"MED_AGE_F\": 33.700000, \"HOUSEHOLDS\": 7945, \"AVE_HH_SZ\": 2.700000, \"HSEHLD_1_M\": 770, \"HSEHLD_1_F\": 1003, \"MARHH_CHD\": 2329, \"MARHH_NO_C\": 2121, \"MHH_CHILD\": 211, \"FHH_CHILD\": 688, \"FAMILIES\": 5807, \"AVE_FAM_SZ\": 3.150000, \"HSE_UNITS\": 8411, \"VACANT\": 466, \"OWNER_OCC\": 5832, \"RENTER_OCC\": 2113 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.529838000000112, 38.818231999997032 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Berkeley\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"04906\", \"CAPITAL\": \"N\", \"AREALAND\": 4.931000, \"AREAWATER\": 0.004000, \"POP_CL\": 6, \"POP2000\": 10063, \"WHITE\": 2077, \"BLACK\": 7717, \"AMERI_ES\": 26, \"ASIAN\": 37, \"HAWN_PI\": 2, \"OTHER\": 43, \"MULT_RACE\": 161, \"HISPANIC\": 109, \"MALES\": 4526, \"FEMALES\": 5537, \"AGE_UNDER5\": 773, \"AGE_5_17\": 2463, \"AGE_18_21\": 558, \"AGE_22_29\": 1101, \"AGE_30_39\": 1404, \"AGE_40_49\": 1306, \"AGE_50_64\": 1351, \"AGE_65_UP\": 1107, \"MED_AGE\": 31.000000, \"MED_AGE_M\": 27.900000, \"MED_AGE_F\": 33.300000, \"HOUSEHOLDS\": 3600, \"AVE_HH_SZ\": 2.760000, \"HSEHLD_1_M\": 389, \"HSEHLD_1_F\": 470, \"MARHH_CHD\": 467, \"MARHH_NO_C\": 693, \"MHH_CHILD\": 107, \"FHH_CHILD\": 767, \"FAMILIES\": 2589, \"AVE_FAM_SZ\": 3.250000, \"HSE_UNITS\": 3953, \"VACANT\": 353, \"OWNER_OCC\": 2324, \"RENTER_OCC\": 1276 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.333287999993729, 38.74224999997552 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Blue Springs\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"06652\", \"CAPITAL\": \"N\", \"AREALAND\": 18.194000, \"AREAWATER\": 0.027000, \"POP_CL\": 6, \"POP2000\": 48080, \"WHITE\": 44801, \"BLACK\": 1410, \"AMERI_ES\": 206, \"ASIAN\": 465, \"HAWN_PI\": 55, \"OTHER\": 397, \"MULT_RACE\": 746, \"HISPANIC\": 1329, \"MALES\": 23525, \"FEMALES\": 24555, \"AGE_UNDER5\": 3568, \"AGE_5_17\": 10628, \"AGE_18_21\": 2491, \"AGE_22_29\": 5155, \"AGE_30_39\": 7726, \"AGE_40_49\": 7985, \"AGE_50_64\": 7119, \"AGE_65_UP\": 3408, \"MED_AGE\": 33.100000, \"MED_AGE_M\": 31.900000, \"MED_AGE_F\": 34.100000, \"HOUSEHOLDS\": 17286, \"AVE_HH_SZ\": 2.770000, \"HSEHLD_1_M\": 1311, \"HSEHLD_1_F\": 1814, \"MARHH_CHD\": 5709, \"MARHH_NO_C\": 5191, \"MHH_CHILD\": 433, \"FHH_CHILD\": 1202, \"FAMILIES\": 13361, \"AVE_FAM_SZ\": 3.160000, \"HSE_UNITS\": 17733, \"VACANT\": 447, \"OWNER_OCC\": 12833, \"RENTER_OCC\": 4453 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.274421, 39.017793999997473 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bridgeton\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"08398\", \"CAPITAL\": \"N\", \"AREALAND\": 14.572000, \"AREAWATER\": 0.671000, \"POP_CL\": 6, \"POP2000\": 15550, \"WHITE\": 13446, \"BLACK\": 1408, \"AMERI_ES\": 32, \"ASIAN\": 353, \"HAWN_PI\": 1, \"OTHER\": 108, \"MULT_RACE\": 202, \"HISPANIC\": 345, \"MALES\": 7516, \"FEMALES\": 8034, \"AGE_UNDER5\": 771, \"AGE_5_17\": 2660, \"AGE_18_21\": 729, \"AGE_22_29\": 1429, \"AGE_30_39\": 2124, \"AGE_40_49\": 2508, \"AGE_50_64\": 2894, \"AGE_65_UP\": 2435, \"MED_AGE\": 40.200000, \"MED_AGE_M\": 38.400000, \"MED_AGE_F\": 42.100000, \"HOUSEHOLDS\": 6251, \"AVE_HH_SZ\": 2.430000, \"HSEHLD_1_M\": 662, \"HSEHLD_1_F\": 1016, \"MARHH_CHD\": 1253, \"MARHH_NO_C\": 2016, \"MHH_CHILD\": 117, \"FHH_CHILD\": 373, \"FAMILIES\": 4204, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 6729, \"VACANT\": 478, \"OWNER_OCC\": 4379, \"RENTER_OCC\": 1872 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.417888999994915, 38.757250999979426 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cape Girardeau\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"11242\", \"CAPITAL\": \"N\", \"AREALAND\": 24.270000, \"AREAWATER\": 0.052000, \"POP_CL\": 6, \"POP2000\": 35349, \"WHITE\": 30865, \"BLACK\": 3288, \"AMERI_ES\": 138, \"ASIAN\": 400, \"HAWN_PI\": 13, \"OTHER\": 151, \"MULT_RACE\": 494, \"HISPANIC\": 388, \"MALES\": 16695, \"FEMALES\": 18654, \"AGE_UNDER5\": 1902, \"AGE_5_17\": 5361, \"AGE_18_21\": 4178, \"AGE_22_29\": 4775, \"AGE_30_39\": 4198, \"AGE_40_49\": 4829, \"AGE_50_64\": 4623, \"AGE_65_UP\": 5483, \"MED_AGE\": 33.600000, \"MED_AGE_M\": 31.800000, \"MED_AGE_F\": 35.300000, \"HOUSEHOLDS\": 14380, \"AVE_HH_SZ\": 2.240000, \"HSEHLD_1_M\": 1988, \"HSEHLD_1_F\": 2841, \"MARHH_CHD\": 2529, \"MARHH_NO_C\": 3775, \"MHH_CHILD\": 211, \"FHH_CHILD\": 958, \"FAMILIES\": 8293, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 15827, \"VACANT\": 1447, \"OWNER_OCC\": 8245, \"RENTER_OCC\": 6135 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.54649799996335, 37.309041999903066 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Carthage\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"11656\", \"CAPITAL\": \"N\", \"AREALAND\": 9.538000, \"AREAWATER\": 0.037000, \"POP_CL\": 6, \"POP2000\": 12668, \"WHITE\": 10984, \"BLACK\": 195, \"AMERI_ES\": 133, \"ASIAN\": 202, \"HAWN_PI\": 27, \"OTHER\": 842, \"MULT_RACE\": 285, \"HISPANIC\": 1589, \"MALES\": 6178, \"FEMALES\": 6490, \"AGE_UNDER5\": 940, \"AGE_5_17\": 2278, \"AGE_18_21\": 811, \"AGE_22_29\": 1459, \"AGE_30_39\": 1707, \"AGE_40_49\": 1625, \"AGE_50_64\": 1615, \"AGE_65_UP\": 2233, \"MED_AGE\": 35.000000, \"MED_AGE_M\": 31.800000, \"MED_AGE_F\": 38.400000, \"HOUSEHOLDS\": 4813, \"AVE_HH_SZ\": 2.490000, \"HSEHLD_1_M\": 466, \"HSEHLD_1_F\": 980, \"MARHH_CHD\": 1015, \"MARHH_NO_C\": 1369, \"MHH_CHILD\": 108, \"FHH_CHILD\": 366, \"FAMILIES\": 3156, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 5217, \"VACANT\": 404, \"OWNER_OCC\": 3067, \"RENTER_OCC\": 1746 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.314958, 37.167772999998071 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Chesterfield\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"13600\", \"CAPITAL\": \"N\", \"AREALAND\": 31.507000, \"AREAWATER\": 1.223000, \"POP_CL\": 6, \"POP2000\": 46802, \"WHITE\": 42730, \"BLACK\": 872, \"AMERI_ES\": 56, \"ASIAN\": 2603, \"HAWN_PI\": 9, \"OTHER\": 184, \"MULT_RACE\": 348, \"HISPANIC\": 726, \"MALES\": 22371, \"FEMALES\": 24431, \"AGE_UNDER5\": 2606, \"AGE_5_17\": 8926, \"AGE_18_21\": 1479, \"AGE_22_29\": 3138, \"AGE_30_39\": 5790, \"AGE_40_49\": 8222, \"AGE_50_64\": 9753, \"AGE_65_UP\": 6888, \"MED_AGE\": 41.800000, \"MED_AGE_M\": 40.800000, \"MED_AGE_F\": 42.700000, \"HOUSEHOLDS\": 18060, \"AVE_HH_SZ\": 2.530000, \"HSEHLD_1_M\": 1558, \"HSEHLD_1_F\": 2696, \"MARHH_CHD\": 5295, \"MARHH_NO_C\": 6539, \"MHH_CHILD\": 156, \"FHH_CHILD\": 537, \"FAMILIES\": 13110, \"AVE_FAM_SZ\": 3.030000, \"HSE_UNITS\": 18738, \"VACANT\": 678, \"OWNER_OCC\": 14070, \"RENTER_OCC\": 3990 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.554254999996374, 38.653401999984673 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Clayton\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"14572\", \"CAPITAL\": \"N\", \"AREALAND\": 2.483000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12825, \"WHITE\": 10894, \"BLACK\": 997, \"AMERI_ES\": 16, \"ASIAN\": 721, \"HAWN_PI\": 4, \"OTHER\": 37, \"MULT_RACE\": 156, \"HISPANIC\": 191, \"MALES\": 6427, \"FEMALES\": 6398, \"AGE_UNDER5\": 490, \"AGE_5_17\": 2094, \"AGE_18_21\": 677, \"AGE_22_29\": 1871, \"AGE_30_39\": 1918, \"AGE_40_49\": 2012, \"AGE_50_64\": 1927, \"AGE_65_UP\": 1836, \"MED_AGE\": 36.700000, \"MED_AGE_M\": 35.000000, \"MED_AGE_F\": 39.000000, \"HOUSEHOLDS\": 5370, \"AVE_HH_SZ\": 2.090000, \"HSEHLD_1_M\": 797, \"HSEHLD_1_F\": 1374, \"MARHH_CHD\": 1096, \"MARHH_NO_C\": 1234, \"MHH_CHILD\": 61, \"FHH_CHILD\": 232, \"FAMILIES\": 2800, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 5852, \"VACANT\": 482, \"OWNER_OCC\": 2964, \"RENTER_OCC\": 2406 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.331843999993637, 38.645317999975639 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Columbia\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"15670\", \"CAPITAL\": \"N\", \"AREALAND\": 53.069000, \"AREAWATER\": 0.270000, \"POP_CL\": 7, \"POP2000\": 84531, \"WHITE\": 68923, \"BLACK\": 9173, \"AMERI_ES\": 331, \"ASIAN\": 3636, \"HAWN_PI\": 30, \"OTHER\": 684, \"MULT_RACE\": 1754, \"HISPANIC\": 1733, \"MALES\": 40453, \"FEMALES\": 44078, \"AGE_UNDER5\": 4884, \"AGE_5_17\": 11795, \"AGE_18_21\": 15058, \"AGE_22_29\": 15148, \"AGE_30_39\": 11415, \"AGE_40_49\": 10116, \"AGE_50_64\": 8835, \"AGE_65_UP\": 7280, \"MED_AGE\": 26.800000, \"MED_AGE_M\": 26.400000, \"MED_AGE_F\": 27.200000, \"HOUSEHOLDS\": 33689, \"AVE_HH_SZ\": 2.260000, \"HSEHLD_1_M\": 4934, \"HSEHLD_1_F\": 6231, \"MARHH_CHD\": 5884, \"MARHH_NO_C\": 6977, \"MHH_CHILD\": 509, \"FHH_CHILD\": 2383, \"FAMILIES\": 17295, \"AVE_FAM_SZ\": 2.920000, \"HSE_UNITS\": 35916, \"VACANT\": 2227, \"OWNER_OCC\": 15927, \"RENTER_OCC\": 17762 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -92.333779, 38.948350999997771 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Concord\", \"CLASS\": \"CDP\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"16030\", \"CAPITAL\": \"N\", \"AREALAND\": 5.513000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 16689, \"WHITE\": 16347, \"BLACK\": 52, \"AMERI_ES\": 15, \"ASIAN\": 138, \"HAWN_PI\": 1, \"OTHER\": 41, \"MULT_RACE\": 95, \"HISPANIC\": 141, \"MALES\": 7974, \"FEMALES\": 8715, \"AGE_UNDER5\": 747, \"AGE_5_17\": 2683, \"AGE_18_21\": 656, \"AGE_22_29\": 1072, \"AGE_30_39\": 1991, \"AGE_40_49\": 2629, \"AGE_50_64\": 3356, \"AGE_65_UP\": 3555, \"MED_AGE\": 44.500000, \"MED_AGE_M\": 42.700000, \"MED_AGE_F\": 46.100000, \"HOUSEHOLDS\": 6926, \"AVE_HH_SZ\": 2.410000, \"HSEHLD_1_M\": 575, \"HSEHLD_1_F\": 1121, \"MARHH_CHD\": 1492, \"MARHH_NO_C\": 2774, \"MHH_CHILD\": 66, \"FHH_CHILD\": 219, \"FAMILIES\": 4999, \"AVE_FAM_SZ\": 2.880000, \"HSE_UNITS\": 7079, \"VACANT\": 153, \"OWNER_OCC\": 6141, \"RENTER_OCC\": 785 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.353665999993879, 38.514385999976938 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Crestwood\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"17218\", \"CAPITAL\": \"N\", \"AREALAND\": 3.599000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11863, \"WHITE\": 11437, \"BLACK\": 85, \"AMERI_ES\": 23, \"ASIAN\": 172, \"HAWN_PI\": 1, \"OTHER\": 31, \"MULT_RACE\": 114, \"HISPANIC\": 119, \"MALES\": 5580, \"FEMALES\": 6283, \"AGE_UNDER5\": 533, \"AGE_5_17\": 1837, \"AGE_18_21\": 403, \"AGE_22_29\": 822, \"AGE_30_39\": 1449, \"AGE_40_49\": 1762, \"AGE_50_64\": 2110, \"AGE_65_UP\": 2947, \"MED_AGE\": 44.900000, \"MED_AGE_M\": 42.700000, \"MED_AGE_F\": 46.800000, \"HOUSEHOLDS\": 5111, \"AVE_HH_SZ\": 2.320000, \"HSEHLD_1_M\": 432, \"HSEHLD_1_F\": 976, \"MARHH_CHD\": 997, \"MARHH_NO_C\": 1957, \"MHH_CHILD\": 42, \"FHH_CHILD\": 189, \"FAMILIES\": 3520, \"AVE_FAM_SZ\": 2.830000, \"HSE_UNITS\": 5214, \"VACANT\": 103, \"OWNER_OCC\": 4659, \"RENTER_OCC\": 452 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.376151999994221, 38.55755199997791 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Creve Coeur\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"17272\", \"CAPITAL\": \"N\", \"AREALAND\": 10.129000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 16500, \"WHITE\": 14651, \"BLACK\": 569, \"AMERI_ES\": 35, \"ASIAN\": 993, \"HAWN_PI\": 1, \"OTHER\": 91, \"MULT_RACE\": 160, \"HISPANIC\": 292, \"MALES\": 7959, \"FEMALES\": 8541, \"AGE_UNDER5\": 803, \"AGE_5_17\": 2655, \"AGE_18_21\": 596, \"AGE_22_29\": 1516, \"AGE_30_39\": 1934, \"AGE_40_49\": 2547, \"AGE_50_64\": 3273, \"AGE_65_UP\": 3176, \"MED_AGE\": 43.100000, \"MED_AGE_M\": 41.800000, \"MED_AGE_F\": 44.500000, \"HOUSEHOLDS\": 6988, \"AVE_HH_SZ\": 2.290000, \"HSEHLD_1_M\": 911, \"HSEHLD_1_F\": 1245, \"MARHH_CHD\": 1588, \"MARHH_NO_C\": 2437, \"MHH_CHILD\": 45, \"FHH_CHILD\": 154, \"FAMILIES\": 4462, \"AVE_FAM_SZ\": 2.890000, \"HSE_UNITS\": 7496, \"VACANT\": 508, \"OWNER_OCC\": 4970, \"RENTER_OCC\": 2018 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.442599999995167, 38.667351999980589 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Excelsior Springs\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"23086\", \"CAPITAL\": \"N\", \"AREALAND\": 9.817000, \"AREAWATER\": 0.024000, \"POP_CL\": 6, \"POP2000\": 10847, \"WHITE\": 10119, \"BLACK\": 365, \"AMERI_ES\": 54, \"ASIAN\": 37, \"HAWN_PI\": 4, \"OTHER\": 65, \"MULT_RACE\": 203, \"HISPANIC\": 201, \"MALES\": 5230, \"FEMALES\": 5617, \"AGE_UNDER5\": 827, \"AGE_5_17\": 2119, \"AGE_18_21\": 766, \"AGE_22_29\": 1174, \"AGE_30_39\": 1452, \"AGE_40_49\": 1460, \"AGE_50_64\": 1626, \"AGE_65_UP\": 1423, \"MED_AGE\": 33.800000, \"MED_AGE_M\": 31.700000, \"MED_AGE_F\": 36.000000, \"HOUSEHOLDS\": 4079, \"AVE_HH_SZ\": 2.500000, \"HSEHLD_1_M\": 425, \"HSEHLD_1_F\": 670, \"MARHH_CHD\": 946, \"MARHH_NO_C\": 1136, \"MHH_CHILD\": 110, \"FHH_CHILD\": 342, \"FAMILIES\": 2779, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 4426, \"VACANT\": 347, \"OWNER_OCC\": 2707, \"RENTER_OCC\": 1372 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.230716, 39.341491999997409 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Farmington\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"23752\", \"CAPITAL\": \"N\", \"AREALAND\": 8.954000, \"AREAWATER\": 0.044000, \"POP_CL\": 6, \"POP2000\": 13924, \"WHITE\": 12494, \"BLACK\": 1025, \"AMERI_ES\": 70, \"ASIAN\": 102, \"HAWN_PI\": 2, \"OTHER\": 45, \"MULT_RACE\": 186, \"HISPANIC\": 161, \"MALES\": 7904, \"FEMALES\": 6020, \"AGE_UNDER5\": 691, \"AGE_5_17\": 1935, \"AGE_18_21\": 865, \"AGE_22_29\": 1771, \"AGE_30_39\": 2361, \"AGE_40_49\": 2118, \"AGE_50_64\": 1807, \"AGE_65_UP\": 2376, \"MED_AGE\": 37.400000, \"MED_AGE_M\": 35.400000, \"MED_AGE_F\": 41.800000, \"HOUSEHOLDS\": 4647, \"AVE_HH_SZ\": 2.280000, \"HSEHLD_1_M\": 506, \"HSEHLD_1_F\": 1003, \"MARHH_CHD\": 890, \"MARHH_NO_C\": 1328, \"MHH_CHILD\": 86, \"FHH_CHILD\": 354, \"FAMILIES\": 2908, \"AVE_FAM_SZ\": 2.880000, \"HSE_UNITS\": 5003, \"VACANT\": 356, \"OWNER_OCC\": 2912, \"RENTER_OCC\": 1735 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.422144999994416, 37.781931999981111 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ferguson\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"23986\", \"CAPITAL\": \"N\", \"AREALAND\": 6.188000, \"AREAWATER\": 0.010000, \"POP_CL\": 6, \"POP2000\": 22406, \"WHITE\": 10026, \"BLACK\": 11743, \"AMERI_ES\": 24, \"ASIAN\": 150, \"HAWN_PI\": 4, \"OTHER\": 85, \"MULT_RACE\": 374, \"HISPANIC\": 228, \"MALES\": 10242, \"FEMALES\": 12164, \"AGE_UNDER5\": 1643, \"AGE_5_17\": 5148, \"AGE_18_21\": 1119, \"AGE_22_29\": 2263, \"AGE_30_39\": 3338, \"AGE_40_49\": 3368, \"AGE_50_64\": 2737, \"AGE_65_UP\": 2790, \"MED_AGE\": 33.300000, \"MED_AGE_M\": 30.900000, \"MED_AGE_F\": 35.200000, \"HOUSEHOLDS\": 8612, \"AVE_HH_SZ\": 2.580000, \"HSEHLD_1_M\": 998, \"HSEHLD_1_F\": 1360, \"MARHH_CHD\": 1474, \"MARHH_NO_C\": 1794, \"MHH_CHILD\": 223, \"FHH_CHILD\": 1406, \"FAMILIES\": 5841, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 9191, \"VACANT\": 579, \"OWNER_OCC\": 5745, \"RENTER_OCC\": 2867 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.29655599999316, 38.745649999973608 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Florissant\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"24778\", \"CAPITAL\": \"N\", \"AREALAND\": 11.367000, \"AREAWATER\": 0.328000, \"POP_CL\": 7, \"POP2000\": 50497, \"WHITE\": 43257, \"BLACK\": 5810, \"AMERI_ES\": 101, \"ASIAN\": 308, \"HAWN_PI\": 15, \"OTHER\": 261, \"MULT_RACE\": 745, \"HISPANIC\": 753, \"MALES\": 23843, \"FEMALES\": 26654, \"AGE_UNDER5\": 3298, \"AGE_5_17\": 9164, \"AGE_18_21\": 2418, \"AGE_22_29\": 5010, \"AGE_30_39\": 7731, \"AGE_40_49\": 7393, \"AGE_50_64\": 6854, \"AGE_65_UP\": 8629, \"MED_AGE\": 37.100000, \"MED_AGE_M\": 35.400000, \"MED_AGE_F\": 39.000000, \"HOUSEHOLDS\": 20399, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 2188, \"HSEHLD_1_F\": 3695, \"MARHH_CHD\": 4344, \"MARHH_NO_C\": 5824, \"MHH_CHILD\": 417, \"FHH_CHILD\": 1501, \"FAMILIES\": 13687, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 21027, \"VACANT\": 628, \"OWNER_OCC\": 15667, \"RENTER_OCC\": 4732 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.325569999993661, 38.797799999975027 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fort Leonard Wood\", \"CLASS\": \"CDP\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"25264\", \"CAPITAL\": \"N\", \"AREALAND\": 97.170000, \"AREAWATER\": 0.425000, \"POP_CL\": 6, \"POP2000\": 13666, \"WHITE\": 8857, \"BLACK\": 2950, \"AMERI_ES\": 150, \"ASIAN\": 327, \"HAWN_PI\": 61, \"OTHER\": 682, \"MULT_RACE\": 639, \"HISPANIC\": 1562, \"MALES\": 8375, \"FEMALES\": 5291, \"AGE_UNDER5\": 1347, \"AGE_5_17\": 2450, \"AGE_18_21\": 3433, \"AGE_22_29\": 3178, \"AGE_30_39\": 2710, \"AGE_40_49\": 481, \"AGE_50_64\": 59, \"AGE_65_UP\": 8, \"MED_AGE\": 21.400000, \"MED_AGE_M\": 21.100000, \"MED_AGE_F\": 21.900000, \"HOUSEHOLDS\": 2639, \"AVE_HH_SZ\": 3.320000, \"HSEHLD_1_M\": 148, \"HSEHLD_1_F\": 38, \"MARHH_CHD\": 1675, \"MARHH_NO_C\": 436, \"MHH_CHILD\": 68, \"FHH_CHILD\": 143, \"FAMILIES\": 2335, \"AVE_FAM_SZ\": 3.540000, \"HSE_UNITS\": 3151, \"VACANT\": 512, \"OWNER_OCC\": 23, \"RENTER_OCC\": 2616 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -92.117275, 37.738190999998174 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fulton\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"26182\", \"CAPITAL\": \"N\", \"AREALAND\": 11.310000, \"AREAWATER\": 0.045000, \"POP_CL\": 6, \"POP2000\": 12128, \"WHITE\": 9855, \"BLACK\": 1872, \"AMERI_ES\": 50, \"ASIAN\": 128, \"HAWN_PI\": 3, \"OTHER\": 46, \"MULT_RACE\": 174, \"HISPANIC\": 132, \"MALES\": 6850, \"FEMALES\": 5278, \"AGE_UNDER5\": 518, \"AGE_5_17\": 1666, \"AGE_18_21\": 1637, \"AGE_22_29\": 1696, \"AGE_30_39\": 1926, \"AGE_40_49\": 1660, \"AGE_50_64\": 1329, \"AGE_65_UP\": 1696, \"MED_AGE\": 32.900000, \"MED_AGE_M\": 31.600000, \"MED_AGE_F\": 35.500000, \"HOUSEHOLDS\": 3700, \"AVE_HH_SZ\": 2.280000, \"HSEHLD_1_M\": 458, \"HSEHLD_1_F\": 783, \"MARHH_CHD\": 605, \"MARHH_NO_C\": 907, \"MHH_CHILD\": 98, \"FHH_CHILD\": 367, \"FAMILIES\": 2208, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 4131, \"VACANT\": 431, \"OWNER_OCC\": 2089, \"RENTER_OCC\": 1611 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -91.94806, 38.850825999997724 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Gladstone\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"27190\", \"CAPITAL\": \"N\", \"AREALAND\": 7.996000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 26365, \"WHITE\": 24585, \"BLACK\": 540, \"AMERI_ES\": 136, \"ASIAN\": 332, \"HAWN_PI\": 36, \"OTHER\": 301, \"MULT_RACE\": 435, \"HISPANIC\": 938, \"MALES\": 12671, \"FEMALES\": 13694, \"AGE_UNDER5\": 1429, \"AGE_5_17\": 4107, \"AGE_18_21\": 1248, \"AGE_22_29\": 2848, \"AGE_30_39\": 3545, \"AGE_40_49\": 4066, \"AGE_50_64\": 4939, \"AGE_65_UP\": 4183, \"MED_AGE\": 40.000000, \"MED_AGE_M\": 38.400000, \"MED_AGE_F\": 41.400000, \"HOUSEHOLDS\": 11484, \"AVE_HH_SZ\": 2.270000, \"HSEHLD_1_M\": 1462, \"HSEHLD_1_F\": 1974, \"MARHH_CHD\": 2100, \"MARHH_NO_C\": 3756, \"MHH_CHILD\": 168, \"FHH_CHILD\": 679, \"FAMILIES\": 7389, \"AVE_FAM_SZ\": 2.820000, \"HSE_UNITS\": 11919, \"VACANT\": 435, \"OWNER_OCC\": 7882, \"RENTER_OCC\": 3602 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.56168700000012, 39.21175199999675 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Grandview\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"28324\", \"CAPITAL\": \"N\", \"AREALAND\": 14.728000, \"AREAWATER\": 0.142000, \"POP_CL\": 6, \"POP2000\": 24881, \"WHITE\": 14882, \"BLACK\": 8346, \"AMERI_ES\": 140, \"ASIAN\": 262, \"HAWN_PI\": 24, \"OTHER\": 481, \"MULT_RACE\": 746, \"HISPANIC\": 1077, \"MALES\": 11999, \"FEMALES\": 12882, \"AGE_UNDER5\": 1803, \"AGE_5_17\": 4962, \"AGE_18_21\": 1441, \"AGE_22_29\": 2900, \"AGE_30_39\": 3827, \"AGE_40_49\": 3849, \"AGE_50_64\": 3676, \"AGE_65_UP\": 2423, \"MED_AGE\": 33.700000, \"MED_AGE_M\": 32.400000, \"MED_AGE_F\": 34.900000, \"HOUSEHOLDS\": 9709, \"AVE_HH_SZ\": 2.530000, \"HSEHLD_1_M\": 1258, \"HSEHLD_1_F\": 1408, \"MARHH_CHD\": 1945, \"MARHH_NO_C\": 2546, \"MHH_CHILD\": 265, \"FHH_CHILD\": 1020, \"FAMILIES\": 6487, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 10348, \"VACANT\": 639, \"OWNER_OCC\": 5929, \"RENTER_OCC\": 3780 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.522578000000109, 38.885006999997024 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hannibal\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"30214\", \"CAPITAL\": \"N\", \"AREALAND\": 14.611000, \"AREAWATER\": 0.472000, \"POP_CL\": 6, \"POP2000\": 17757, \"WHITE\": 16090, \"BLACK\": 1167, \"AMERI_ES\": 63, \"ASIAN\": 63, \"HAWN_PI\": 13, \"OTHER\": 44, \"MULT_RACE\": 317, \"HISPANIC\": 200, \"MALES\": 8247, \"FEMALES\": 9510, \"AGE_UNDER5\": 1248, \"AGE_5_17\": 3339, \"AGE_18_21\": 1171, \"AGE_22_29\": 1771, \"AGE_30_39\": 2365, \"AGE_40_49\": 2449, \"AGE_50_64\": 2429, \"AGE_65_UP\": 2985, \"MED_AGE\": 36.100000, \"MED_AGE_M\": 34.500000, \"MED_AGE_F\": 37.500000, \"HOUSEHOLDS\": 7017, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 812, \"HSEHLD_1_F\": 1334, \"MARHH_CHD\": 1475, \"MARHH_NO_C\": 1891, \"MHH_CHILD\": 159, \"FHH_CHILD\": 647, \"FAMILIES\": 4551, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 7886, \"VACANT\": 869, \"OWNER_OCC\": 4689, \"RENTER_OCC\": 2328 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -91.377377999999823, 39.70406499999627 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hazelwood\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"31276\", \"CAPITAL\": \"N\", \"AREALAND\": 15.883000, \"AREAWATER\": 0.944000, \"POP_CL\": 6, \"POP2000\": 26206, \"WHITE\": 21027, \"BLACK\": 4203, \"AMERI_ES\": 48, \"ASIAN\": 312, \"HAWN_PI\": 17, \"OTHER\": 137, \"MULT_RACE\": 462, \"HISPANIC\": 419, \"MALES\": 12575, \"FEMALES\": 13631, \"AGE_UNDER5\": 1591, \"AGE_5_17\": 4857, \"AGE_18_21\": 1345, \"AGE_22_29\": 3247, \"AGE_30_39\": 4011, \"AGE_40_49\": 4246, \"AGE_50_64\": 3870, \"AGE_65_UP\": 3039, \"MED_AGE\": 35.600000, \"MED_AGE_M\": 34.200000, \"MED_AGE_F\": 36.900000, \"HOUSEHOLDS\": 10954, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 1531, \"HSEHLD_1_F\": 1990, \"MARHH_CHD\": 2168, \"MARHH_NO_C\": 2694, \"MHH_CHILD\": 252, \"FHH_CHILD\": 826, \"FAMILIES\": 6715, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 11433, \"VACANT\": 479, \"OWNER_OCC\": 7075, \"RENTER_OCC\": 3879 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.366463999994224, 38.77874999997708 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Independence\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"35000\", \"CAPITAL\": \"N\", \"AREALAND\": 78.328000, \"AREAWATER\": 0.126000, \"POP_CL\": 8, \"POP2000\": 113288, \"WHITE\": 104081, \"BLACK\": 2939, \"AMERI_ES\": 721, \"ASIAN\": 788, \"HAWN_PI\": 523, \"OTHER\": 1617, \"MULT_RACE\": 2619, \"HISPANIC\": 4175, \"MALES\": 54173, \"FEMALES\": 59115, \"AGE_UNDER5\": 7436, \"AGE_5_17\": 19612, \"AGE_18_21\": 5648, \"AGE_22_29\": 11844, \"AGE_30_39\": 16134, \"AGE_40_49\": 16961, \"AGE_50_64\": 18059, \"AGE_65_UP\": 17594, \"MED_AGE\": 37.800000, \"MED_AGE_M\": 36.000000, \"MED_AGE_F\": 39.500000, \"HOUSEHOLDS\": 47390, \"AVE_HH_SZ\": 2.370000, \"HSEHLD_1_M\": 5773, \"HSEHLD_1_F\": 8505, \"MARHH_CHD\": 8746, \"MARHH_NO_C\": 13964, \"MHH_CHILD\": 1116, \"FHH_CHILD\": 3464, \"FAMILIES\": 30544, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 50213, \"VACANT\": 2823, \"OWNER_OCC\": 32136, \"RENTER_OCC\": 15254 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.406551, 39.079804999997243 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Jackson\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"35648\", \"CAPITAL\": \"N\", \"AREALAND\": 10.123000, \"AREAWATER\": 0.007000, \"POP_CL\": 6, \"POP2000\": 11947, \"WHITE\": 11537, \"BLACK\": 162, \"AMERI_ES\": 33, \"ASIAN\": 67, \"HAWN_PI\": 4, \"OTHER\": 23, \"MULT_RACE\": 121, \"HISPANIC\": 91, \"MALES\": 5651, \"FEMALES\": 6296, \"AGE_UNDER5\": 789, \"AGE_5_17\": 2388, \"AGE_18_21\": 592, \"AGE_22_29\": 1215, \"AGE_30_39\": 1798, \"AGE_40_49\": 1850, \"AGE_50_64\": 1637, \"AGE_65_UP\": 1678, \"MED_AGE\": 35.700000, \"MED_AGE_M\": 33.800000, \"MED_AGE_F\": 37.400000, \"HOUSEHOLDS\": 4708, \"AVE_HH_SZ\": 2.500000, \"HSEHLD_1_M\": 372, \"HSEHLD_1_F\": 812, \"MARHH_CHD\": 1319, \"MARHH_NO_C\": 1467, \"MHH_CHILD\": 83, \"FHH_CHILD\": 337, \"FAMILIES\": 3383, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 4962, \"VACANT\": 254, \"OWNER_OCC\": 3378, \"RENTER_OCC\": 1330 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.658117999970159, 37.379940999919675 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Jefferson City\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"37000\", \"CAPITAL\": \"Y\", \"AREALAND\": 27.252000, \"AREAWATER\": 1.018000, \"POP_CL\": 6, \"POP2000\": 39636, \"WHITE\": 32303, \"BLACK\": 5828, \"AMERI_ES\": 150, \"ASIAN\": 488, \"HAWN_PI\": 20, \"OTHER\": 246, \"MULT_RACE\": 601, \"HISPANIC\": 616, \"MALES\": 20329, \"FEMALES\": 19307, \"AGE_UNDER5\": 2314, \"AGE_5_17\": 5964, \"AGE_18_21\": 2495, \"AGE_22_29\": 5091, \"AGE_30_39\": 6225, \"AGE_40_49\": 6366, \"AGE_50_64\": 5638, \"AGE_65_UP\": 5543, \"MED_AGE\": 36.500000, \"MED_AGE_M\": 34.800000, \"MED_AGE_F\": 38.800000, \"HOUSEHOLDS\": 15794, \"AVE_HH_SZ\": 2.210000, \"HSEHLD_1_M\": 2197, \"HSEHLD_1_F\": 3511, \"MARHH_CHD\": 3010, \"MARHH_NO_C\": 4004, \"MHH_CHILD\": 276, \"FHH_CHILD\": 1127, \"FAMILIES\": 9203, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 16987, \"VACANT\": 1193, \"OWNER_OCC\": 9257, \"RENTER_OCC\": 6537 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -92.189283, 38.572953999997914 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Jennings\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"37178\", \"CAPITAL\": \"N\", \"AREALAND\": 3.689000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 15469, \"WHITE\": 2988, \"BLACK\": 12155, \"AMERI_ES\": 16, \"ASIAN\": 59, \"HAWN_PI\": 4, \"OTHER\": 30, \"MULT_RACE\": 217, \"HISPANIC\": 113, \"MALES\": 6853, \"FEMALES\": 8616, \"AGE_UNDER5\": 1087, \"AGE_5_17\": 3613, \"AGE_18_21\": 832, \"AGE_22_29\": 1584, \"AGE_30_39\": 2233, \"AGE_40_49\": 2328, \"AGE_50_64\": 2078, \"AGE_65_UP\": 1714, \"MED_AGE\": 33.100000, \"MED_AGE_M\": 29.500000, \"MED_AGE_F\": 35.600000, \"HOUSEHOLDS\": 6174, \"AVE_HH_SZ\": 2.500000, \"HSEHLD_1_M\": 696, \"HSEHLD_1_F\": 1181, \"MARHH_CHD\": 823, \"MARHH_NO_C\": 979, \"MHH_CHILD\": 150, \"FHH_CHILD\": 1209, \"FAMILIES\": 4081, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 6798, \"VACANT\": 624, \"OWNER_OCC\": 4287, \"RENTER_OCC\": 1887 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.261427999992534, 38.721099999971713 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Joplin\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"37592\", \"CAPITAL\": \"N\", \"AREALAND\": 31.416000, \"AREAWATER\": 0.081000, \"POP_CL\": 6, \"POP2000\": 45504, \"WHITE\": 41609, \"BLACK\": 1217, \"AMERI_ES\": 694, \"ASIAN\": 339, \"HAWN_PI\": 17, \"OTHER\": 448, \"MULT_RACE\": 1180, \"HISPANIC\": 1144, \"MALES\": 21611, \"FEMALES\": 23893, \"AGE_UNDER5\": 3226, \"AGE_5_17\": 7313, \"AGE_18_21\": 3650, \"AGE_22_29\": 5846, \"AGE_30_39\": 5976, \"AGE_40_49\": 5963, \"AGE_50_64\": 6411, \"AGE_65_UP\": 7119, \"MED_AGE\": 34.700000, \"MED_AGE_M\": 32.300000, \"MED_AGE_F\": 37.000000, \"HOUSEHOLDS\": 19101, \"AVE_HH_SZ\": 2.280000, \"HSEHLD_1_M\": 2437, \"HSEHLD_1_F\": 3759, \"MARHH_CHD\": 3368, \"MARHH_NO_C\": 5104, \"MHH_CHILD\": 410, \"FHH_CHILD\": 1479, \"FAMILIES\": 11511, \"AVE_FAM_SZ\": 2.890000, \"HSE_UNITS\": 21328, \"VACANT\": 2227, \"OWNER_OCC\": 10993, \"RENTER_OCC\": 8108 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.511024000000148, 37.077759999997724 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Kansas City\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"38000\", \"CAPITAL\": \"N\", \"AREALAND\": 313.543000, \"AREAWATER\": 4.471000, \"POP_CL\": 8, \"POP2000\": 441545, \"WHITE\": 267931, \"BLACK\": 137879, \"AMERI_ES\": 2122, \"ASIAN\": 8182, \"HAWN_PI\": 493, \"OTHER\": 14158, \"MULT_RACE\": 10780, \"HISPANIC\": 30604, \"MALES\": 213141, \"FEMALES\": 228404, \"AGE_UNDER5\": 31755, \"AGE_5_17\": 80231, \"AGE_18_21\": 23320, \"AGE_22_29\": 57031, \"AGE_30_39\": 71386, \"AGE_40_49\": 65633, \"AGE_50_64\": 60497, \"AGE_65_UP\": 51692, \"MED_AGE\": 34.000000, \"MED_AGE_M\": 32.800000, \"MED_AGE_F\": 35.200000, \"HOUSEHOLDS\": 183981, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 28477, \"HSEHLD_1_F\": 34174, \"MARHH_CHD\": 29817, \"MARHH_NO_C\": 40181, \"MHH_CHILD\": 3903, \"FHH_CHILD\": 18005, \"FAMILIES\": 107402, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 202334, \"VACANT\": 18353, \"OWNER_OCC\": 106131, \"RENTER_OCC\": 77850 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.555406000000119, 39.076303999996838 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Kennett\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"38306\", \"CAPITAL\": \"N\", \"AREALAND\": 6.657000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11260, \"WHITE\": 9508, \"BLACK\": 1494, \"AMERI_ES\": 25, \"ASIAN\": 58, \"HAWN_PI\": 1, \"OTHER\": 41, \"MULT_RACE\": 133, \"HISPANIC\": 202, \"MALES\": 5129, \"FEMALES\": 6131, \"AGE_UNDER5\": 892, \"AGE_5_17\": 2133, \"AGE_18_21\": 543, \"AGE_22_29\": 1137, \"AGE_30_39\": 1418, \"AGE_40_49\": 1446, \"AGE_50_64\": 1864, \"AGE_65_UP\": 1827, \"MED_AGE\": 36.800000, \"MED_AGE_M\": 34.700000, \"MED_AGE_F\": 38.700000, \"HOUSEHOLDS\": 4540, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 423, \"HSEHLD_1_F\": 889, \"MARHH_CHD\": 896, \"MARHH_NO_C\": 1328, \"MHH_CHILD\": 87, \"FHH_CHILD\": 464, \"FAMILIES\": 3068, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 4875, \"VACANT\": 335, \"OWNER_OCC\": 2728, \"RENTER_OCC\": 1812 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.051726999984709, 36.237973999964588 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Kirksville\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"39026\", \"CAPITAL\": \"N\", \"AREALAND\": 10.460000, \"AREAWATER\": 0.044000, \"POP_CL\": 6, \"POP2000\": 16988, \"WHITE\": 16034, \"BLACK\": 294, \"AMERI_ES\": 44, \"ASIAN\": 328, \"HAWN_PI\": 7, \"OTHER\": 100, \"MULT_RACE\": 181, \"HISPANIC\": 262, \"MALES\": 7679, \"FEMALES\": 9309, \"AGE_UNDER5\": 828, \"AGE_5_17\": 1814, \"AGE_18_21\": 4789, \"AGE_22_29\": 2678, \"AGE_30_39\": 1567, \"AGE_40_49\": 1622, \"AGE_50_64\": 1651, \"AGE_65_UP\": 2039, \"MED_AGE\": 23.400000, \"MED_AGE_M\": 23.300000, \"MED_AGE_F\": 23.500000, \"HOUSEHOLDS\": 6583, \"AVE_HH_SZ\": 2.160000, \"HSEHLD_1_M\": 924, \"HSEHLD_1_F\": 1502, \"MARHH_CHD\": 962, \"MARHH_NO_C\": 1348, \"MHH_CHILD\": 78, \"FHH_CHILD\": 330, \"FAMILIES\": 2973, \"AVE_FAM_SZ\": 2.830000, \"HSE_UNITS\": 7303, \"VACANT\": 720, \"OWNER_OCC\": 3163, \"RENTER_OCC\": 3420 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -92.579529, 40.19351999999725 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Kirkwood\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"39044\", \"CAPITAL\": \"N\", \"AREALAND\": 9.227000, \"AREAWATER\": 0.049000, \"POP_CL\": 6, \"POP2000\": 27324, \"WHITE\": 24800, \"BLACK\": 1932, \"AMERI_ES\": 29, \"ASIAN\": 222, \"HAWN_PI\": 10, \"OTHER\": 75, \"MULT_RACE\": 256, \"HISPANIC\": 298, \"MALES\": 12485, \"FEMALES\": 14839, \"AGE_UNDER5\": 1643, \"AGE_5_17\": 4758, \"AGE_18_21\": 909, \"AGE_22_29\": 2212, \"AGE_30_39\": 3697, \"AGE_40_49\": 4608, \"AGE_50_64\": 4536, \"AGE_65_UP\": 4961, \"MED_AGE\": 41.100000, \"MED_AGE_M\": 38.800000, \"MED_AGE_F\": 42.800000, \"HOUSEHOLDS\": 11763, \"AVE_HH_SZ\": 2.290000, \"HSEHLD_1_M\": 1213, \"HSEHLD_1_F\": 2725, \"MARHH_CHD\": 2626, \"MARHH_NO_C\": 3319, \"MHH_CHILD\": 123, \"FHH_CHILD\": 540, \"FAMILIES\": 7256, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 12306, \"VACANT\": 543, \"OWNER_OCC\": 9074, \"RENTER_OCC\": 2689 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.414288999994753, 38.580651999979544 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lake St. Louis\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"40043\", \"CAPITAL\": \"N\", \"AREALAND\": 7.481000, \"AREAWATER\": 0.844000, \"POP_CL\": 6, \"POP2000\": 10169, \"WHITE\": 9722, \"BLACK\": 187, \"AMERI_ES\": 25, \"ASIAN\": 99, \"HAWN_PI\": 4, \"OTHER\": 41, \"MULT_RACE\": 91, \"HISPANIC\": 137, \"MALES\": 5037, \"FEMALES\": 5132, \"AGE_UNDER5\": 572, \"AGE_5_17\": 1923, \"AGE_18_21\": 453, \"AGE_22_29\": 705, \"AGE_30_39\": 1379, \"AGE_40_49\": 1798, \"AGE_50_64\": 2141, \"AGE_65_UP\": 1198, \"MED_AGE\": 40.300000, \"MED_AGE_M\": 40.100000, \"MED_AGE_F\": 40.500000, \"HOUSEHOLDS\": 3923, \"AVE_HH_SZ\": 2.590000, \"HSEHLD_1_M\": 353, \"HSEHLD_1_F\": 374, \"MARHH_CHD\": 1056, \"MARHH_NO_C\": 1611, \"MHH_CHILD\": 54, \"FHH_CHILD\": 160, \"FAMILIES\": 3004, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 4133, \"VACANT\": 210, \"OWNER_OCC\": 3161, \"RENTER_OCC\": 762 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.783609999998149, 38.785619999990452 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lebanon\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"41168\", \"CAPITAL\": \"N\", \"AREALAND\": 13.628000, \"AREAWATER\": 0.031000, \"POP_CL\": 6, \"POP2000\": 12155, \"WHITE\": 11667, \"BLACK\": 110, \"AMERI_ES\": 66, \"ASIAN\": 61, \"HAWN_PI\": 4, \"OTHER\": 51, \"MULT_RACE\": 196, \"HISPANIC\": 201, \"MALES\": 5696, \"FEMALES\": 6459, \"AGE_UNDER5\": 906, \"AGE_5_17\": 2160, \"AGE_18_21\": 721, \"AGE_22_29\": 1334, \"AGE_30_39\": 1672, \"AGE_40_49\": 1569, \"AGE_50_64\": 1623, \"AGE_65_UP\": 2170, \"MED_AGE\": 36.000000, \"MED_AGE_M\": 33.100000, \"MED_AGE_F\": 38.400000, \"HOUSEHOLDS\": 5132, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 558, \"HSEHLD_1_F\": 1158, \"MARHH_CHD\": 1005, \"MARHH_NO_C\": 1346, \"MHH_CHILD\": 133, \"FHH_CHILD\": 434, \"FAMILIES\": 3184, \"AVE_FAM_SZ\": 2.910000, \"HSE_UNITS\": 5745, \"VACANT\": 613, \"OWNER_OCC\": 2905, \"RENTER_OCC\": 2227 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -92.661694, 37.678202999998213 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lee's Summit\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"41348\", \"CAPITAL\": \"N\", \"AREALAND\": 59.513000, \"AREAWATER\": 2.160000, \"POP_CL\": 7, \"POP2000\": 70700, \"WHITE\": 65874, \"BLACK\": 2454, \"AMERI_ES\": 257, \"ASIAN\": 698, \"HAWN_PI\": 44, \"OTHER\": 367, \"MULT_RACE\": 1006, \"HISPANIC\": 1394, \"MALES\": 33849, \"FEMALES\": 36851, \"AGE_UNDER5\": 5664, \"AGE_5_17\": 14949, \"AGE_18_21\": 2839, \"AGE_22_29\": 6161, \"AGE_30_39\": 12485, \"AGE_40_49\": 11850, \"AGE_50_64\": 9524, \"AGE_65_UP\": 7228, \"MED_AGE\": 35.100000, \"MED_AGE_M\": 33.900000, \"MED_AGE_F\": 36.100000, \"HOUSEHOLDS\": 26417, \"AVE_HH_SZ\": 2.650000, \"HSEHLD_1_M\": 2062, \"HSEHLD_1_F\": 3761, \"MARHH_CHD\": 8698, \"MARHH_NO_C\": 7704, \"MHH_CHILD\": 465, \"FHH_CHILD\": 1603, \"FAMILIES\": 19488, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 27311, \"VACANT\": 894, \"OWNER_OCC\": 19976, \"RENTER_OCC\": 6441 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.374127, 38.922606999997377 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lemay\", \"CLASS\": \"CDP\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"41438\", \"CAPITAL\": \"N\", \"AREALAND\": 4.348000, \"AREAWATER\": 0.186000, \"POP_CL\": 6, \"POP2000\": 17215, \"WHITE\": 16615, \"BLACK\": 175, \"AMERI_ES\": 52, \"ASIAN\": 92, \"HAWN_PI\": 2, \"OTHER\": 114, \"MULT_RACE\": 165, \"HISPANIC\": 349, \"MALES\": 8144, \"FEMALES\": 9071, \"AGE_UNDER5\": 943, \"AGE_5_17\": 2984, \"AGE_18_21\": 771, \"AGE_22_29\": 1567, \"AGE_30_39\": 2502, \"AGE_40_49\": 2434, \"AGE_50_64\": 2554, \"AGE_65_UP\": 3460, \"MED_AGE\": 39.400000, \"MED_AGE_M\": 36.700000, \"MED_AGE_F\": 42.200000, \"HOUSEHOLDS\": 7186, \"AVE_HH_SZ\": 2.330000, \"HSEHLD_1_M\": 911, \"HSEHLD_1_F\": 1551, \"MARHH_CHD\": 1265, \"MARHH_NO_C\": 1868, \"MHH_CHILD\": 176, \"FHH_CHILD\": 464, \"FAMILIES\": 4391, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 7580, \"VACANT\": 394, \"OWNER_OCC\": 5577, \"RENTER_OCC\": 1609 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.285331999992792, 38.532551999973435 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Liberty\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"42032\", \"CAPITAL\": \"N\", \"AREALAND\": 26.953000, \"AREAWATER\": 0.058000, \"POP_CL\": 6, \"POP2000\": 26232, \"WHITE\": 24592, \"BLACK\": 680, \"AMERI_ES\": 104, \"ASIAN\": 160, \"HAWN_PI\": 17, \"OTHER\": 261, \"MULT_RACE\": 418, \"HISPANIC\": 703, \"MALES\": 12560, \"FEMALES\": 13672, \"AGE_UNDER5\": 1768, \"AGE_5_17\": 5485, \"AGE_18_21\": 1801, \"AGE_22_29\": 2597, \"AGE_30_39\": 4086, \"AGE_40_49\": 4098, \"AGE_50_64\": 3681, \"AGE_65_UP\": 2716, \"MED_AGE\": 34.000000, \"MED_AGE_M\": 33.000000, \"MED_AGE_F\": 34.900000, \"HOUSEHOLDS\": 9511, \"AVE_HH_SZ\": 2.620000, \"HSEHLD_1_M\": 850, \"HSEHLD_1_F\": 1280, \"MARHH_CHD\": 2832, \"MARHH_NO_C\": 2797, \"MHH_CHILD\": 168, \"FHH_CHILD\": 702, \"FAMILIES\": 6942, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 9973, \"VACANT\": 462, \"OWNER_OCC\": 6987, \"RENTER_OCC\": 2524 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.426502, 39.240851999997126 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Manchester\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"45668\", \"CAPITAL\": \"N\", \"AREALAND\": 4.997000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 19161, \"WHITE\": 17552, \"BLACK\": 463, \"AMERI_ES\": 17, \"ASIAN\": 830, \"HAWN_PI\": 6, \"OTHER\": 77, \"MULT_RACE\": 216, \"HISPANIC\": 292, \"MALES\": 9336, \"FEMALES\": 9825, \"AGE_UNDER5\": 1342, \"AGE_5_17\": 3879, \"AGE_18_21\": 768, \"AGE_22_29\": 1824, \"AGE_30_39\": 3043, \"AGE_40_49\": 3365, \"AGE_50_64\": 3220, \"AGE_65_UP\": 1720, \"MED_AGE\": 36.200000, \"MED_AGE_M\": 35.100000, \"MED_AGE_F\": 37.200000, \"HOUSEHOLDS\": 7206, \"AVE_HH_SZ\": 2.660000, \"HSEHLD_1_M\": 555, \"HSEHLD_1_F\": 926, \"MARHH_CHD\": 2292, \"MARHH_NO_C\": 2266, \"MHH_CHILD\": 87, \"FHH_CHILD\": 323, \"FAMILIES\": 5332, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 7402, \"VACANT\": 196, \"OWNER_OCC\": 5801, \"RENTER_OCC\": 1405 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.507448999995859, 38.584243999983173 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Marshall\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"46316\", \"CAPITAL\": \"N\", \"AREALAND\": 10.146000, \"AREAWATER\": 0.076000, \"POP_CL\": 6, \"POP2000\": 12433, \"WHITE\": 10699, \"BLACK\": 920, \"AMERI_ES\": 53, \"ASIAN\": 48, \"HAWN_PI\": 42, \"OTHER\": 430, \"MULT_RACE\": 241, \"HISPANIC\": 891, \"MALES\": 6068, \"FEMALES\": 6365, \"AGE_UNDER5\": 850, \"AGE_5_17\": 2220, \"AGE_18_21\": 1007, \"AGE_22_29\": 1359, \"AGE_30_39\": 1570, \"AGE_40_49\": 1618, \"AGE_50_64\": 1912, \"AGE_65_UP\": 1897, \"MED_AGE\": 35.500000, \"MED_AGE_M\": 32.300000, \"MED_AGE_F\": 38.200000, \"HOUSEHOLDS\": 4732, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 502, \"HSEHLD_1_F\": 970, \"MARHH_CHD\": 911, \"MARHH_NO_C\": 1254, \"MHH_CHILD\": 134, \"FHH_CHILD\": 406, \"FAMILIES\": 2987, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 5127, \"VACANT\": 395, \"OWNER_OCC\": 2956, \"RENTER_OCC\": 1776 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.197854, 39.116209999997722 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Maryland Heights\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"46586\", \"CAPITAL\": \"N\", \"AREALAND\": 21.385000, \"AREAWATER\": 2.186000, \"POP_CL\": 6, \"POP2000\": 25756, \"WHITE\": 21983, \"BLACK\": 1436, \"AMERI_ES\": 52, \"ASIAN\": 1832, \"HAWN_PI\": 9, \"OTHER\": 182, \"MULT_RACE\": 262, \"HISPANIC\": 599, \"MALES\": 12729, \"FEMALES\": 13027, \"AGE_UNDER5\": 1522, \"AGE_5_17\": 4018, \"AGE_18_21\": 1076, \"AGE_22_29\": 4328, \"AGE_30_39\": 4637, \"AGE_40_49\": 3790, \"AGE_50_64\": 3930, \"AGE_65_UP\": 2455, \"MED_AGE\": 34.200000, \"MED_AGE_M\": 32.800000, \"MED_AGE_F\": 35.500000, \"HOUSEHOLDS\": 11302, \"AVE_HH_SZ\": 2.250000, \"HSEHLD_1_M\": 1957, \"HSEHLD_1_F\": 1863, \"MARHH_CHD\": 2148, \"MARHH_NO_C\": 2853, \"MHH_CHILD\": 158, \"FHH_CHILD\": 611, \"FAMILIES\": 6420, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 11846, \"VACANT\": 544, \"OWNER_OCC\": 7080, \"RENTER_OCC\": 4222 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.447466999995257, 38.719550999980719 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Maryville\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"46640\", \"CAPITAL\": \"N\", \"AREALAND\": 5.032000, \"AREAWATER\": 0.053000, \"POP_CL\": 6, \"POP2000\": 10581, \"WHITE\": 10134, \"BLACK\": 157, \"AMERI_ES\": 19, \"ASIAN\": 154, \"HAWN_PI\": 2, \"OTHER\": 33, \"MULT_RACE\": 82, \"HISPANIC\": 104, \"MALES\": 4926, \"FEMALES\": 5655, \"AGE_UNDER5\": 391, \"AGE_5_17\": 1087, \"AGE_18_21\": 3274, \"AGE_22_29\": 1584, \"AGE_30_39\": 906, \"AGE_40_49\": 990, \"AGE_50_64\": 1025, \"AGE_65_UP\": 1324, \"MED_AGE\": 22.900000, \"MED_AGE_M\": 23.000000, \"MED_AGE_F\": 22.700000, \"HOUSEHOLDS\": 3913, \"AVE_HH_SZ\": 2.160000, \"HSEHLD_1_M\": 549, \"HSEHLD_1_F\": 832, \"MARHH_CHD\": 596, \"MARHH_NO_C\": 869, \"MHH_CHILD\": 41, \"FHH_CHILD\": 175, \"FAMILIES\": 1835, \"AVE_FAM_SZ\": 2.830000, \"HSE_UNITS\": 4227, \"VACANT\": 314, \"OWNER_OCC\": 1912, \"RENTER_OCC\": 2001 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.871199000000445, 40.345352999994233 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mehlville\", \"CLASS\": \"CDP\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"47180\", \"CAPITAL\": \"N\", \"AREALAND\": 7.365000, \"AREAWATER\": 0.207000, \"POP_CL\": 6, \"POP2000\": 28822, \"WHITE\": 27347, \"BLACK\": 505, \"AMERI_ES\": 37, \"ASIAN\": 510, \"HAWN_PI\": 5, \"OTHER\": 99, \"MULT_RACE\": 319, \"HISPANIC\": 417, \"MALES\": 13589, \"FEMALES\": 15233, \"AGE_UNDER5\": 1611, \"AGE_5_17\": 4495, \"AGE_18_21\": 1507, \"AGE_22_29\": 3180, \"AGE_30_39\": 4027, \"AGE_40_49\": 4139, \"AGE_50_64\": 4675, \"AGE_65_UP\": 5188, \"MED_AGE\": 39.000000, \"MED_AGE_M\": 36.600000, \"MED_AGE_F\": 41.400000, \"HOUSEHOLDS\": 12541, \"AVE_HH_SZ\": 2.270000, \"HSEHLD_1_M\": 1549, \"HSEHLD_1_F\": 2523, \"MARHH_CHD\": 2378, \"MARHH_NO_C\": 3711, \"MHH_CHILD\": 194, \"FHH_CHILD\": 676, \"FAMILIES\": 7774, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 12982, \"VACANT\": 441, \"OWNER_OCC\": 8520, \"RENTER_OCC\": 4021 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.312744999993242, 38.504302999974918 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mexico\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"47648\", \"CAPITAL\": \"N\", \"AREALAND\": 11.369000, \"AREAWATER\": 0.336000, \"POP_CL\": 6, \"POP2000\": 11320, \"WHITE\": 10051, \"BLACK\": 1040, \"AMERI_ES\": 30, \"ASIAN\": 58, \"HAWN_PI\": 2, \"OTHER\": 32, \"MULT_RACE\": 107, \"HISPANIC\": 99, \"MALES\": 5259, \"FEMALES\": 6061, \"AGE_UNDER5\": 718, \"AGE_5_17\": 1985, \"AGE_18_21\": 510, \"AGE_22_29\": 1067, \"AGE_30_39\": 1411, \"AGE_40_49\": 1509, \"AGE_50_64\": 1771, \"AGE_65_UP\": 2349, \"MED_AGE\": 39.800000, \"MED_AGE_M\": 37.000000, \"MED_AGE_F\": 42.400000, \"HOUSEHOLDS\": 4804, \"AVE_HH_SZ\": 2.250000, \"HSEHLD_1_M\": 522, \"HSEHLD_1_F\": 1074, \"MARHH_CHD\": 849, \"MARHH_NO_C\": 1398, \"MHH_CHILD\": 103, \"FHH_CHILD\": 430, \"FAMILIES\": 3023, \"AVE_FAM_SZ\": 2.840000, \"HSE_UNITS\": 5301, \"VACANT\": 497, \"OWNER_OCC\": 3187, \"RENTER_OCC\": 1617 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -91.884761, 39.165813999997575 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Moberly\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"49034\", \"CAPITAL\": \"N\", \"AREALAND\": 11.554000, \"AREAWATER\": 0.055000, \"POP_CL\": 6, \"POP2000\": 11945, \"WHITE\": 10812, \"BLACK\": 802, \"AMERI_ES\": 44, \"ASIAN\": 77, \"HAWN_PI\": 3, \"OTHER\": 47, \"MULT_RACE\": 160, \"HISPANIC\": 199, \"MALES\": 5544, \"FEMALES\": 6401, \"AGE_UNDER5\": 921, \"AGE_5_17\": 2037, \"AGE_18_21\": 812, \"AGE_22_29\": 1302, \"AGE_30_39\": 1510, \"AGE_40_49\": 1488, \"AGE_50_64\": 1637, \"AGE_65_UP\": 2238, \"MED_AGE\": 36.200000, \"MED_AGE_M\": 33.300000, \"MED_AGE_F\": 38.800000, \"HOUSEHOLDS\": 5001, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 601, \"HSEHLD_1_F\": 1057, \"MARHH_CHD\": 874, \"MARHH_NO_C\": 1338, \"MHH_CHILD\": 123, \"FHH_CHILD\": 468, \"FAMILIES\": 3093, \"AVE_FAM_SZ\": 2.890000, \"HSE_UNITS\": 5812, \"VACANT\": 811, \"OWNER_OCC\": 3138, \"RENTER_OCC\": 1863 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -92.438831, 39.420397999997583 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Neosho\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"51572\", \"CAPITAL\": \"N\", \"AREALAND\": 14.931000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10505, \"WHITE\": 9559, \"BLACK\": 109, \"AMERI_ES\": 169, \"ASIAN\": 41, \"HAWN_PI\": 105, \"OTHER\": 287, \"MULT_RACE\": 235, \"HISPANIC\": 444, \"MALES\": 4956, \"FEMALES\": 5549, \"AGE_UNDER5\": 777, \"AGE_5_17\": 1976, \"AGE_18_21\": 714, \"AGE_22_29\": 1095, \"AGE_30_39\": 1384, \"AGE_40_49\": 1312, \"AGE_50_64\": 1449, \"AGE_65_UP\": 1798, \"MED_AGE\": 35.300000, \"MED_AGE_M\": 32.100000, \"MED_AGE_F\": 37.800000, \"HOUSEHOLDS\": 4136, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 416, \"HSEHLD_1_F\": 807, \"MARHH_CHD\": 913, \"MARHH_NO_C\": 1175, \"MHH_CHILD\": 87, \"FHH_CHILD\": 314, \"FAMILIES\": 2725, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 4510, \"VACANT\": 374, \"OWNER_OCC\": 2667, \"RENTER_OCC\": 1469 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.376462, 36.85544799999807 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Nixa\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"52616\", \"CAPITAL\": \"N\", \"AREALAND\": 6.157000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12124, \"WHITE\": 11812, \"BLACK\": 56, \"AMERI_ES\": 44, \"ASIAN\": 52, \"HAWN_PI\": 2, \"OTHER\": 36, \"MULT_RACE\": 122, \"HISPANIC\": 153, \"MALES\": 5717, \"FEMALES\": 6407, \"AGE_UNDER5\": 1143, \"AGE_5_17\": 2296, \"AGE_18_21\": 517, \"AGE_22_29\": 1655, \"AGE_30_39\": 2178, \"AGE_40_49\": 1543, \"AGE_50_64\": 1406, \"AGE_65_UP\": 1386, \"MED_AGE\": 31.900000, \"MED_AGE_M\": 30.900000, \"MED_AGE_F\": 32.800000, \"HOUSEHOLDS\": 4654, \"AVE_HH_SZ\": 2.560000, \"HSEHLD_1_M\": 323, \"HSEHLD_1_F\": 641, \"MARHH_CHD\": 1340, \"MARHH_NO_C\": 1371, \"MHH_CHILD\": 116, \"FHH_CHILD\": 423, \"FAMILIES\": 3450, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 4962, \"VACANT\": 308, \"OWNER_OCC\": 3186, \"RENTER_OCC\": 1468 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.298755, 37.045252999998397 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Oakville\", \"CLASS\": \"CDP\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"53876\", \"CAPITAL\": \"N\", \"AREALAND\": 16.075000, \"AREAWATER\": 2.007000, \"POP_CL\": 6, \"POP2000\": 35309, \"WHITE\": 34563, \"BLACK\": 86, \"AMERI_ES\": 47, \"ASIAN\": 324, \"HAWN_PI\": 6, \"OTHER\": 72, \"MULT_RACE\": 211, \"HISPANIC\": 365, \"MALES\": 17402, \"FEMALES\": 17907, \"AGE_UNDER5\": 2041, \"AGE_5_17\": 7496, \"AGE_18_21\": 1927, \"AGE_22_29\": 2700, \"AGE_30_39\": 4702, \"AGE_40_49\": 6530, \"AGE_50_64\": 6510, \"AGE_65_UP\": 3403, \"MED_AGE\": 38.100000, \"MED_AGE_M\": 37.200000, \"MED_AGE_F\": 38.800000, \"HOUSEHOLDS\": 12530, \"AVE_HH_SZ\": 2.810000, \"HSEHLD_1_M\": 936, \"HSEHLD_1_F\": 1234, \"MARHH_CHD\": 4270, \"MARHH_NO_C\": 4450, \"MHH_CHILD\": 154, \"FHH_CHILD\": 476, \"FAMILIES\": 9918, \"AVE_FAM_SZ\": 3.200000, \"HSE_UNITS\": 12791, \"VACANT\": 261, \"OWNER_OCC\": 10567, \"RENTER_OCC\": 1963 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.319323999993287, 38.458619999975348 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"O'Fallon\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"54074\", \"CAPITAL\": \"N\", \"AREALAND\": 22.468000, \"AREAWATER\": 0.007000, \"POP_CL\": 6, \"POP2000\": 46169, \"WHITE\": 44006, \"BLACK\": 1033, \"AMERI_ES\": 108, \"ASIAN\": 342, \"HAWN_PI\": 13, \"OTHER\": 197, \"MULT_RACE\": 470, \"HISPANIC\": 671, \"MALES\": 22772, \"FEMALES\": 23397, \"AGE_UNDER5\": 4847, \"AGE_5_17\": 10565, \"AGE_18_21\": 1680, \"AGE_22_29\": 4933, \"AGE_30_39\": 10150, \"AGE_40_49\": 6657, \"AGE_50_64\": 4486, \"AGE_65_UP\": 2851, \"MED_AGE\": 31.100000, \"MED_AGE_M\": 30.900000, \"MED_AGE_F\": 31.200000, \"HOUSEHOLDS\": 15389, \"AVE_HH_SZ\": 2.980000, \"HSEHLD_1_M\": 1066, \"HSEHLD_1_F\": 1098, \"MARHH_CHD\": 6517, \"MARHH_NO_C\": 4232, \"MHH_CHILD\": 346, \"FHH_CHILD\": 928, \"FAMILIES\": 12608, \"AVE_FAM_SZ\": 3.300000, \"HSE_UNITS\": 15920, \"VACANT\": 531, \"OWNER_OCC\": 13779, \"RENTER_OCC\": 1610 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.708003999997672, 38.784357999988814 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Overland\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"55550\", \"CAPITAL\": \"N\", \"AREALAND\": 4.382000, \"AREAWATER\": 0.018000, \"POP_CL\": 6, \"POP2000\": 16838, \"WHITE\": 14069, \"BLACK\": 1885, \"AMERI_ES\": 54, \"ASIAN\": 339, \"HAWN_PI\": 5, \"OTHER\": 140, \"MULT_RACE\": 346, \"HISPANIC\": 368, \"MALES\": 8050, \"FEMALES\": 8788, \"AGE_UNDER5\": 1147, \"AGE_5_17\": 3017, \"AGE_18_21\": 764, \"AGE_22_29\": 1761, \"AGE_30_39\": 2617, \"AGE_40_49\": 2661, \"AGE_50_64\": 2325, \"AGE_65_UP\": 2546, \"MED_AGE\": 37.100000, \"MED_AGE_M\": 36.000000, \"MED_AGE_F\": 38.100000, \"HOUSEHOLDS\": 7012, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 928, \"HSEHLD_1_F\": 1153, \"MARHH_CHD\": 1239, \"MARHH_NO_C\": 1762, \"MHH_CHILD\": 175, \"FHH_CHILD\": 672, \"FAMILIES\": 4496, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 7446, \"VACANT\": 434, \"OWNER_OCC\": 5147, \"RENTER_OCC\": 1865 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.367796999994198, 38.699050999977274 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Poplar Bluff\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"59096\", \"CAPITAL\": \"N\", \"AREALAND\": 11.572000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 16651, \"WHITE\": 14493, \"BLACK\": 1617, \"AMERI_ES\": 91, \"ASIAN\": 86, \"HAWN_PI\": 0, \"OTHER\": 80, \"MULT_RACE\": 284, \"HISPANIC\": 224, \"MALES\": 7584, \"FEMALES\": 9067, \"AGE_UNDER5\": 1198, \"AGE_5_17\": 2849, \"AGE_18_21\": 897, \"AGE_22_29\": 1654, \"AGE_30_39\": 2009, \"AGE_40_49\": 2204, \"AGE_50_64\": 2528, \"AGE_65_UP\": 3312, \"MED_AGE\": 38.700000, \"MED_AGE_M\": 35.900000, \"MED_AGE_F\": 41.000000, \"HOUSEHOLDS\": 7077, \"AVE_HH_SZ\": 2.270000, \"HSEHLD_1_M\": 816, \"HSEHLD_1_F\": 1652, \"MARHH_CHD\": 1145, \"MARHH_NO_C\": 1810, \"MHH_CHILD\": 135, \"FHH_CHILD\": 698, \"FAMILIES\": 4297, \"AVE_FAM_SZ\": 2.910000, \"HSE_UNITS\": 7871, \"VACANT\": 794, \"OWNER_OCC\": 3880, \"RENTER_OCC\": 3197 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.402730999993537, 36.759807999981916 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Raymore\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"60752\", \"CAPITAL\": \"N\", \"AREALAND\": 16.993000, \"AREAWATER\": 0.112000, \"POP_CL\": 6, \"POP2000\": 11146, \"WHITE\": 10620, \"BLACK\": 205, \"AMERI_ES\": 55, \"ASIAN\": 74, \"HAWN_PI\": 5, \"OTHER\": 40, \"MULT_RACE\": 147, \"HISPANIC\": 226, \"MALES\": 5311, \"FEMALES\": 5835, \"AGE_UNDER5\": 878, \"AGE_5_17\": 2353, \"AGE_18_21\": 444, \"AGE_22_29\": 919, \"AGE_30_39\": 1846, \"AGE_40_49\": 1692, \"AGE_50_64\": 1433, \"AGE_65_UP\": 1581, \"MED_AGE\": 35.600000, \"MED_AGE_M\": 34.400000, \"MED_AGE_F\": 36.600000, \"HOUSEHOLDS\": 4038, \"AVE_HH_SZ\": 2.720000, \"HSEHLD_1_M\": 224, \"HSEHLD_1_F\": 538, \"MARHH_CHD\": 1384, \"MARHH_NO_C\": 1381, \"MHH_CHILD\": 68, \"FHH_CHILD\": 218, \"FAMILIES\": 3177, \"AVE_FAM_SZ\": 3.100000, \"HSE_UNITS\": 4149, \"VACANT\": 111, \"OWNER_OCC\": 3334, \"RENTER_OCC\": 704 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.461798, 38.804181999997226 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Raytown\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"60788\", \"CAPITAL\": \"N\", \"AREALAND\": 9.911000, \"AREAWATER\": 0.030000, \"POP_CL\": 6, \"POP2000\": 30388, \"WHITE\": 25594, \"BLACK\": 3567, \"AMERI_ES\": 132, \"ASIAN\": 233, \"HAWN_PI\": 47, \"OTHER\": 260, \"MULT_RACE\": 555, \"HISPANIC\": 712, \"MALES\": 14283, \"FEMALES\": 16105, \"AGE_UNDER5\": 1775, \"AGE_5_17\": 5078, \"AGE_18_21\": 1336, \"AGE_22_29\": 2816, \"AGE_30_39\": 4285, \"AGE_40_49\": 4581, \"AGE_50_64\": 4659, \"AGE_65_UP\": 5858, \"MED_AGE\": 39.800000, \"MED_AGE_M\": 37.700000, \"MED_AGE_F\": 41.600000, \"HOUSEHOLDS\": 12855, \"AVE_HH_SZ\": 2.320000, \"HSEHLD_1_M\": 1479, \"HSEHLD_1_F\": 2419, \"MARHH_CHD\": 2293, \"MARHH_NO_C\": 3952, \"MHH_CHILD\": 235, \"FHH_CHILD\": 959, \"FAMILIES\": 8307, \"AVE_FAM_SZ\": 2.880000, \"HSE_UNITS\": 13309, \"VACANT\": 454, \"OWNER_OCC\": 9500, \"RENTER_OCC\": 3355 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.465444, 38.994872999997142 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Rolla\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"62912\", \"CAPITAL\": \"N\", \"AREALAND\": 11.297000, \"AREAWATER\": 0.008000, \"POP_CL\": 6, \"POP2000\": 16367, \"WHITE\": 14599, \"BLACK\": 478, \"AMERI_ES\": 76, \"ASIAN\": 797, \"HAWN_PI\": 20, \"OTHER\": 120, \"MULT_RACE\": 277, \"HISPANIC\": 282, \"MALES\": 8652, \"FEMALES\": 7715, \"AGE_UNDER5\": 932, \"AGE_5_17\": 2353, \"AGE_18_21\": 2647, \"AGE_22_29\": 2734, \"AGE_30_39\": 1908, \"AGE_40_49\": 1794, \"AGE_50_64\": 1879, \"AGE_65_UP\": 2120, \"MED_AGE\": 27.900000, \"MED_AGE_M\": 24.300000, \"MED_AGE_F\": 34.300000, \"HOUSEHOLDS\": 6514, \"AVE_HH_SZ\": 2.200000, \"HSEHLD_1_M\": 1070, \"HSEHLD_1_F\": 1269, \"MARHH_CHD\": 1132, \"MARHH_NO_C\": 1537, \"MHH_CHILD\": 108, \"FHH_CHILD\": 465, \"FAMILIES\": 3545, \"AVE_FAM_SZ\": 2.880000, \"HSE_UNITS\": 7221, \"VACANT\": 707, \"OWNER_OCC\": 3106, \"RENTER_OCC\": 3408 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -91.763048, 37.948830999997931 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"St. Ann\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"63956\", \"CAPITAL\": \"N\", \"AREALAND\": 3.126000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 13607, \"WHITE\": 11254, \"BLACK\": 1557, \"AMERI_ES\": 38, \"ASIAN\": 271, \"HAWN_PI\": 2, \"OTHER\": 243, \"MULT_RACE\": 242, \"HISPANIC\": 560, \"MALES\": 6576, \"FEMALES\": 7031, \"AGE_UNDER5\": 874, \"AGE_5_17\": 2158, \"AGE_18_21\": 721, \"AGE_22_29\": 1575, \"AGE_30_39\": 2169, \"AGE_40_49\": 2133, \"AGE_50_64\": 1774, \"AGE_65_UP\": 2203, \"MED_AGE\": 37.200000, \"MED_AGE_M\": 35.000000, \"MED_AGE_F\": 39.400000, \"HOUSEHOLDS\": 6190, \"AVE_HH_SZ\": 2.190000, \"HSEHLD_1_M\": 987, \"HSEHLD_1_F\": 1320, \"MARHH_CHD\": 939, \"MARHH_NO_C\": 1374, \"MHH_CHILD\": 118, \"FHH_CHILD\": 538, \"FAMILIES\": 3445, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 6554, \"VACANT\": 364, \"OWNER_OCC\": 3651, \"RENTER_OCC\": 2539 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.38551499999447, 38.727183999978045 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"St. Charles\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"64082\", \"CAPITAL\": \"N\", \"AREALAND\": 20.362000, \"AREAWATER\": 0.482000, \"POP_CL\": 7, \"POP2000\": 60321, \"WHITE\": 56270, \"BLACK\": 2097, \"AMERI_ES\": 160, \"ASIAN\": 612, \"HAWN_PI\": 22, \"OTHER\": 441, \"MULT_RACE\": 719, \"HISPANIC\": 1187, \"MALES\": 29592, \"FEMALES\": 30729, \"AGE_UNDER5\": 3765, \"AGE_5_17\": 10330, \"AGE_18_21\": 4266, \"AGE_22_29\": 7302, \"AGE_30_39\": 9040, \"AGE_40_49\": 9381, \"AGE_50_64\": 8882, \"AGE_65_UP\": 7355, \"MED_AGE\": 35.400000, \"MED_AGE_M\": 33.700000, \"MED_AGE_F\": 37.000000, \"HOUSEHOLDS\": 24210, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 3232, \"HSEHLD_1_F\": 3928, \"MARHH_CHD\": 5212, \"MARHH_NO_C\": 6758, \"MHH_CHILD\": 506, \"FHH_CHILD\": 1575, \"FAMILIES\": 15321, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 25283, \"VACANT\": 1073, \"OWNER_OCC\": 15640, \"RENTER_OCC\": 8570 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.511763999996006, 38.78869799998305 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"St. Joseph\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"64550\", \"CAPITAL\": \"N\", \"AREALAND\": 43.841000, \"AREAWATER\": 0.658000, \"POP_CL\": 7, \"POP2000\": 73990, \"WHITE\": 67981, \"BLACK\": 3722, \"AMERI_ES\": 340, \"ASIAN\": 351, \"HAWN_PI\": 19, \"OTHER\": 512, \"MULT_RACE\": 1065, \"HISPANIC\": 1929, \"MALES\": 36170, \"FEMALES\": 37820, \"AGE_UNDER5\": 4760, \"AGE_5_17\": 13092, \"AGE_18_21\": 5198, \"AGE_22_29\": 8303, \"AGE_30_39\": 10782, \"AGE_40_49\": 10254, \"AGE_50_64\": 10223, \"AGE_65_UP\": 11378, \"MED_AGE\": 35.600000, \"MED_AGE_M\": 33.800000, \"MED_AGE_F\": 37.400000, \"HOUSEHOLDS\": 29026, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 3363, \"HSEHLD_1_F\": 5467, \"MARHH_CHD\": 5702, \"MARHH_NO_C\": 7843, \"MHH_CHILD\": 701, \"FHH_CHILD\": 2324, \"FAMILIES\": 18463, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 31752, \"VACANT\": 2726, \"OWNER_OCC\": 18823, \"RENTER_OCC\": 10203 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.836541000000423, 39.757943999994914 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"St. Louis\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"65000\", \"CAPITAL\": \"N\", \"AREALAND\": 61.923000, \"AREAWATER\": 4.225000, \"POP_CL\": 8, \"POP2000\": 348189, \"WHITE\": 152666, \"BLACK\": 178266, \"AMERI_ES\": 950, \"ASIAN\": 6891, \"HAWN_PI\": 94, \"OTHER\": 2783, \"MULT_RACE\": 6539, \"HISPANIC\": 7022, \"MALES\": 163567, \"FEMALES\": 184622, \"AGE_UNDER5\": 23477, \"AGE_5_17\": 66180, \"AGE_18_21\": 21022, \"AGE_22_29\": 44168, \"AGE_30_39\": 52558, \"AGE_40_49\": 49622, \"AGE_50_64\": 43320, \"AGE_65_UP\": 47842, \"MED_AGE\": 33.700000, \"MED_AGE_M\": 32.100000, \"MED_AGE_F\": 35.200000, \"HOUSEHOLDS\": 147076, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 27052, \"HSEHLD_1_F\": 32217, \"MARHH_CHD\": 15947, \"MARHH_NO_C\": 22523, \"MHH_CHILD\": 3172, \"FHH_CHILD\": 18274, \"FAMILIES\": 76976, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 176354, \"VACANT\": 29278, \"OWNER_OCC\": 68939, \"RENTER_OCC\": 78137 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.242805999992143, 38.62771799997082 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"St. Peters\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"65126\", \"CAPITAL\": \"N\", \"AREALAND\": 21.184000, \"AREAWATER\": 0.000000, \"POP_CL\": 7, \"POP2000\": 51381, \"WHITE\": 48427, \"BLACK\": 1440, \"AMERI_ES\": 105, \"ASIAN\": 632, \"HAWN_PI\": 4, \"OTHER\": 224, \"MULT_RACE\": 549, \"HISPANIC\": 768, \"MALES\": 25033, \"FEMALES\": 26348, \"AGE_UNDER5\": 3821, \"AGE_5_17\": 11580, \"AGE_18_21\": 2348, \"AGE_22_29\": 4540, \"AGE_30_39\": 9076, \"AGE_40_49\": 9249, \"AGE_50_64\": 6757, \"AGE_65_UP\": 4010, \"MED_AGE\": 34.200000, \"MED_AGE_M\": 33.200000, \"MED_AGE_F\": 35.200000, \"HOUSEHOLDS\": 18435, \"AVE_HH_SZ\": 2.780000, \"HSEHLD_1_M\": 1461, \"HSEHLD_1_F\": 2273, \"MARHH_CHD\": 6326, \"MARHH_NO_C\": 5247, \"MHH_CHILD\": 336, \"FHH_CHILD\": 1142, \"FAMILIES\": 13939, \"AVE_FAM_SZ\": 3.240000, \"HSE_UNITS\": 18776, \"VACANT\": 341, \"OWNER_OCC\": 15750, \"RENTER_OCC\": 2685 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.603130999996878, 38.778892999986027 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sedalia\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"66440\", \"CAPITAL\": \"N\", \"AREALAND\": 11.959000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 20339, \"WHITE\": 18025, \"BLACK\": 1007, \"AMERI_ES\": 80, \"ASIAN\": 81, \"HAWN_PI\": 4, \"OTHER\": 763, \"MULT_RACE\": 379, \"HISPANIC\": 1129, \"MALES\": 9635, \"FEMALES\": 10704, \"AGE_UNDER5\": 1485, \"AGE_5_17\": 3542, \"AGE_18_21\": 1353, \"AGE_22_29\": 2240, \"AGE_30_39\": 2780, \"AGE_40_49\": 2711, \"AGE_50_64\": 2690, \"AGE_65_UP\": 3538, \"MED_AGE\": 35.800000, \"MED_AGE_M\": 33.400000, \"MED_AGE_F\": 38.100000, \"HOUSEHOLDS\": 8628, \"AVE_HH_SZ\": 2.320000, \"HSEHLD_1_M\": 1094, \"HSEHLD_1_F\": 1764, \"MARHH_CHD\": 1590, \"MARHH_NO_C\": 2207, \"MHH_CHILD\": 196, \"FHH_CHILD\": 696, \"FAMILIES\": 5227, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 9419, \"VACANT\": 791, \"OWNER_OCC\": 5524, \"RENTER_OCC\": 3104 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.231147, 38.702917999997872 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sikeston\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"67790\", \"CAPITAL\": \"N\", \"AREALAND\": 17.935000, \"AREAWATER\": 0.166000, \"POP_CL\": 6, \"POP2000\": 16992, \"WHITE\": 12832, \"BLACK\": 3800, \"AMERI_ES\": 46, \"ASIAN\": 63, \"HAWN_PI\": 0, \"OTHER\": 83, \"MULT_RACE\": 168, \"HISPANIC\": 204, \"MALES\": 7850, \"FEMALES\": 9142, \"AGE_UNDER5\": 1265, \"AGE_5_17\": 3429, \"AGE_18_21\": 841, \"AGE_22_29\": 1708, \"AGE_30_39\": 2166, \"AGE_40_49\": 2340, \"AGE_50_64\": 2610, \"AGE_65_UP\": 2633, \"MED_AGE\": 36.100000, \"MED_AGE_M\": 32.700000, \"MED_AGE_F\": 38.600000, \"HOUSEHOLDS\": 6779, \"AVE_HH_SZ\": 2.450000, \"HSEHLD_1_M\": 643, \"HSEHLD_1_F\": 1293, \"MARHH_CHD\": 1311, \"MARHH_NO_C\": 1853, \"MHH_CHILD\": 118, \"FHH_CHILD\": 839, \"FAMILIES\": 4603, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 7428, \"VACANT\": 649, \"OWNER_OCC\": 3831, \"RENTER_OCC\": 2948 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.585171999964103, 36.879569999912192 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Spanish Lake\", \"CLASS\": \"CDP\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"69266\", \"CAPITAL\": \"N\", \"AREALAND\": 7.357000, \"AREAWATER\": 0.165000, \"POP_CL\": 6, \"POP2000\": 21337, \"WHITE\": 9014, \"BLACK\": 11691, \"AMERI_ES\": 43, \"ASIAN\": 141, \"HAWN_PI\": 6, \"OTHER\": 98, \"MULT_RACE\": 344, \"HISPANIC\": 220, \"MALES\": 9864, \"FEMALES\": 11473, \"AGE_UNDER5\": 1904, \"AGE_5_17\": 4590, \"AGE_18_21\": 1159, \"AGE_22_29\": 2677, \"AGE_30_39\": 3392, \"AGE_40_49\": 2813, \"AGE_50_64\": 2448, \"AGE_65_UP\": 2354, \"MED_AGE\": 30.900000, \"MED_AGE_M\": 30.000000, \"MED_AGE_F\": 31.800000, \"HOUSEHOLDS\": 8381, \"AVE_HH_SZ\": 2.540000, \"HSEHLD_1_M\": 1025, \"HSEHLD_1_F\": 1290, \"MARHH_CHD\": 1542, \"MARHH_NO_C\": 1758, \"MHH_CHILD\": 231, \"FHH_CHILD\": 1434, \"FAMILIES\": 5674, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 8852, \"VACANT\": 471, \"OWNER_OCC\": 4613, \"RENTER_OCC\": 3768 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.21287899999173, 38.78584899996865 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Springfield\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"70000\", \"CAPITAL\": \"N\", \"AREALAND\": 73.155000, \"AREAWATER\": 0.639000, \"POP_CL\": 8, \"POP2000\": 151580, \"WHITE\": 138987, \"BLACK\": 4961, \"AMERI_ES\": 1142, \"ASIAN\": 2060, \"HAWN_PI\": 136, \"OTHER\": 1332, \"MULT_RACE\": 2962, \"HISPANIC\": 3501, \"MALES\": 73016, \"FEMALES\": 78564, \"AGE_UNDER5\": 8935, \"AGE_5_17\": 21234, \"AGE_18_21\": 16505, \"AGE_22_29\": 21982, \"AGE_30_39\": 20339, \"AGE_40_49\": 19633, \"AGE_50_64\": 20366, \"AGE_65_UP\": 22586, \"MED_AGE\": 33.500000, \"MED_AGE_M\": 31.600000, \"MED_AGE_F\": 35.600000, \"HOUSEHOLDS\": 64691, \"AVE_HH_SZ\": 2.170000, \"HSEHLD_1_M\": 9529, \"HSEHLD_1_F\": 13284, \"MARHH_CHD\": 9860, \"MARHH_NO_C\": 16439, \"MHH_CHILD\": 1328, \"FHH_CHILD\": 4336, \"FAMILIES\": 35682, \"AVE_FAM_SZ\": 2.820000, \"HSE_UNITS\": 69650, \"VACANT\": 4959, \"OWNER_OCC\": 34707, \"RENTER_OCC\": 29984 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.286213, 37.195097999998367 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Town and Country\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"73618\", \"CAPITAL\": \"N\", \"AREALAND\": 11.883000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10894, \"WHITE\": 9822, \"BLACK\": 219, \"AMERI_ES\": 6, \"ASIAN\": 690, \"HAWN_PI\": 1, \"OTHER\": 25, \"MULT_RACE\": 131, \"HISPANIC\": 117, \"MALES\": 5090, \"FEMALES\": 5804, \"AGE_UNDER5\": 458, \"AGE_5_17\": 2029, \"AGE_18_21\": 571, \"AGE_22_29\": 496, \"AGE_30_39\": 814, \"AGE_40_49\": 1728, \"AGE_50_64\": 2421, \"AGE_65_UP\": 2377, \"MED_AGE\": 46.700000, \"MED_AGE_M\": 45.100000, \"MED_AGE_F\": 47.800000, \"HOUSEHOLDS\": 3593, \"AVE_HH_SZ\": 2.690000, \"HSEHLD_1_M\": 236, \"HSEHLD_1_F\": 437, \"MARHH_CHD\": 1122, \"MARHH_NO_C\": 1537, \"MHH_CHILD\": 18, \"FHH_CHILD\": 67, \"FAMILIES\": 2848, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 3741, \"VACANT\": 148, \"OWNER_OCC\": 3154, \"RENTER_OCC\": 439 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.471580999995496, 38.631001999981791 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"University City\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"75220\", \"CAPITAL\": \"N\", \"AREALAND\": 5.882000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 37428, \"WHITE\": 18437, \"BLACK\": 16974, \"AMERI_ES\": 61, \"ASIAN\": 1065, \"HAWN_PI\": 11, \"OTHER\": 208, \"MULT_RACE\": 672, \"HISPANIC\": 583, \"MALES\": 17103, \"FEMALES\": 20325, \"AGE_UNDER5\": 2283, \"AGE_5_17\": 5891, \"AGE_18_21\": 2173, \"AGE_22_29\": 5203, \"AGE_30_39\": 5782, \"AGE_40_49\": 5234, \"AGE_50_64\": 5875, \"AGE_65_UP\": 4987, \"MED_AGE\": 35.400000, \"MED_AGE_M\": 33.000000, \"MED_AGE_F\": 37.500000, \"HOUSEHOLDS\": 16453, \"AVE_HH_SZ\": 2.250000, \"HSEHLD_1_M\": 2218, \"HSEHLD_1_F\": 3407, \"MARHH_CHD\": 2384, \"MARHH_NO_C\": 3590, \"MHH_CHILD\": 171, \"FHH_CHILD\": 1343, \"FAMILIES\": 9119, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 17485, \"VACANT\": 1032, \"OWNER_OCC\": 9507, \"RENTER_OCC\": 6946 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.328164999993589, 38.663900999975425 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Warrensburg\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"77092\", \"CAPITAL\": \"N\", \"AREALAND\": 8.429000, \"AREAWATER\": 0.063000, \"POP_CL\": 6, \"POP2000\": 16340, \"WHITE\": 14200, \"BLACK\": 1055, \"AMERI_ES\": 105, \"ASIAN\": 456, \"HAWN_PI\": 23, \"OTHER\": 128, \"MULT_RACE\": 373, \"HISPANIC\": 398, \"MALES\": 7993, \"FEMALES\": 8347, \"AGE_UNDER5\": 850, \"AGE_5_17\": 2096, \"AGE_18_21\": 4103, \"AGE_22_29\": 3086, \"AGE_30_39\": 1698, \"AGE_40_49\": 1587, \"AGE_50_64\": 1330, \"AGE_65_UP\": 1590, \"MED_AGE\": 23.400000, \"MED_AGE_M\": 23.300000, \"MED_AGE_F\": 23.500000, \"HOUSEHOLDS\": 5951, \"AVE_HH_SZ\": 2.290000, \"HSEHLD_1_M\": 787, \"HSEHLD_1_F\": 1048, \"MARHH_CHD\": 1081, \"MARHH_NO_C\": 1210, \"MHH_CHILD\": 59, \"FHH_CHILD\": 442, \"FAMILIES\": 3034, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 6380, \"VACANT\": 429, \"OWNER_OCC\": 2521, \"RENTER_OCC\": 3430 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.734956, 38.763100999997832 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Washington\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"77416\", \"CAPITAL\": \"N\", \"AREALAND\": 8.550000, \"AREAWATER\": 0.493000, \"POP_CL\": 6, \"POP2000\": 13243, \"WHITE\": 12946, \"BLACK\": 112, \"AMERI_ES\": 17, \"ASIAN\": 55, \"HAWN_PI\": 0, \"OTHER\": 30, \"MULT_RACE\": 83, \"HISPANIC\": 88, \"MALES\": 6327, \"FEMALES\": 6916, \"AGE_UNDER5\": 990, \"AGE_5_17\": 2408, \"AGE_18_21\": 679, \"AGE_22_29\": 1371, \"AGE_30_39\": 2033, \"AGE_40_49\": 1905, \"AGE_50_64\": 1735, \"AGE_65_UP\": 2122, \"MED_AGE\": 35.900000, \"MED_AGE_M\": 34.100000, \"MED_AGE_F\": 37.600000, \"HOUSEHOLDS\": 5258, \"AVE_HH_SZ\": 2.460000, \"HSEHLD_1_M\": 597, \"HSEHLD_1_F\": 894, \"MARHH_CHD\": 1319, \"MARHH_NO_C\": 1504, \"MHH_CHILD\": 116, \"FHH_CHILD\": 284, \"FAMILIES\": 3503, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 5565, \"VACANT\": 307, \"OWNER_OCC\": 3670, \"RENTER_OCC\": 1588 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -91.013312999999087, 38.551878999994152 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Webster Groves\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"78154\", \"CAPITAL\": \"N\", \"AREALAND\": 5.900000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 23230, \"WHITE\": 21108, \"BLACK\": 1482, \"AMERI_ES\": 39, \"ASIAN\": 280, \"HAWN_PI\": 3, \"OTHER\": 73, \"MULT_RACE\": 245, \"HISPANIC\": 291, \"MALES\": 10657, \"FEMALES\": 12573, \"AGE_UNDER5\": 1419, \"AGE_5_17\": 4358, \"AGE_18_21\": 1190, \"AGE_22_29\": 1598, \"AGE_30_39\": 3158, \"AGE_40_49\": 4042, \"AGE_50_64\": 3436, \"AGE_65_UP\": 4029, \"MED_AGE\": 39.700000, \"MED_AGE_M\": 37.600000, \"MED_AGE_F\": 41.500000, \"HOUSEHOLDS\": 9498, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 855, \"HSEHLD_1_F\": 2052, \"MARHH_CHD\": 2410, \"MARHH_NO_C\": 2705, \"MHH_CHILD\": 83, \"FHH_CHILD\": 452, \"FAMILIES\": 6148, \"AVE_FAM_SZ\": 3.030000, \"HSE_UNITS\": 9903, \"VACANT\": 405, \"OWNER_OCC\": 7669, \"RENTER_OCC\": 1829 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.354365999993931, 38.587701999976844 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"West Plains\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"78928\", \"CAPITAL\": \"N\", \"AREALAND\": 12.361000, \"AREAWATER\": 0.021000, \"POP_CL\": 6, \"POP2000\": 10866, \"WHITE\": 10401, \"BLACK\": 79, \"AMERI_ES\": 104, \"ASIAN\": 77, \"HAWN_PI\": 7, \"OTHER\": 56, \"MULT_RACE\": 142, \"HISPANIC\": 179, \"MALES\": 4948, \"FEMALES\": 5918, \"AGE_UNDER5\": 844, \"AGE_5_17\": 1856, \"AGE_18_21\": 583, \"AGE_22_29\": 1086, \"AGE_30_39\": 1354, \"AGE_40_49\": 1297, \"AGE_50_64\": 1538, \"AGE_65_UP\": 2308, \"MED_AGE\": 38.100000, \"MED_AGE_M\": 34.400000, \"MED_AGE_F\": 40.900000, \"HOUSEHOLDS\": 4518, \"AVE_HH_SZ\": 2.290000, \"HSEHLD_1_M\": 434, \"HSEHLD_1_F\": 1017, \"MARHH_CHD\": 918, \"MARHH_NO_C\": 1279, \"MHH_CHILD\": 77, \"FHH_CHILD\": 408, \"FAMILIES\": 2911, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 5072, \"VACANT\": 554, \"OWNER_OCC\": 2770, \"RENTER_OCC\": 1748 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -91.864991, 36.73735499999836 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wildwood\", \"CLASS\": \"city\", \"ST\": \"MO\", \"STFIPS\": \"29\", \"PLACEFIP\": \"79820\", \"CAPITAL\": \"N\", \"AREALAND\": 66.030000, \"AREAWATER\": 0.395000, \"POP_CL\": 6, \"POP2000\": 32884, \"WHITE\": 31155, \"BLACK\": 534, \"AMERI_ES\": 38, \"ASIAN\": 784, \"HAWN_PI\": 2, \"OTHER\": 97, \"MULT_RACE\": 274, \"HISPANIC\": 454, \"MALES\": 16194, \"FEMALES\": 16690, \"AGE_UNDER5\": 2699, \"AGE_5_17\": 8212, \"AGE_18_21\": 1036, \"AGE_22_29\": 1593, \"AGE_30_39\": 5621, \"AGE_40_49\": 6917, \"AGE_50_64\": 4994, \"AGE_65_UP\": 1812, \"MED_AGE\": 36.100000, \"MED_AGE_M\": 36.100000, \"MED_AGE_F\": 36.000000, \"HOUSEHOLDS\": 10837, \"AVE_HH_SZ\": 3.020000, \"HSEHLD_1_M\": 533, \"HSEHLD_1_F\": 810, \"MARHH_CHD\": 5065, \"MARHH_NO_C\": 3497, \"MHH_CHILD\": 123, \"FHH_CHILD\": 344, \"FAMILIES\": 9244, \"AVE_FAM_SZ\": 3.320000, \"HSE_UNITS\": 11229, \"VACANT\": 392, \"OWNER_OCC\": 9799, \"RENTER_OCC\": 1038 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.649426999997203, 38.581652999987554 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Biloxi\", \"CLASS\": \"city\", \"ST\": \"MS\", \"STFIPS\": \"28\", \"PLACEFIP\": \"06220\", \"CAPITAL\": \"N\", \"AREALAND\": 38.027000, \"AREAWATER\": 8.501000, \"POP_CL\": 7, \"POP2000\": 50644, \"WHITE\": 36177, \"BLACK\": 9643, \"AMERI_ES\": 248, \"ASIAN\": 2590, \"HAWN_PI\": 58, \"OTHER\": 725, \"MULT_RACE\": 1203, \"HISPANIC\": 1848, \"MALES\": 25563, \"FEMALES\": 25081, \"AGE_UNDER5\": 3721, \"AGE_5_17\": 8553, \"AGE_18_21\": 4569, \"AGE_22_29\": 6598, \"AGE_30_39\": 7821, \"AGE_40_49\": 6769, \"AGE_50_64\": 6538, \"AGE_65_UP\": 6075, \"MED_AGE\": 32.500000, \"MED_AGE_M\": 31.400000, \"MED_AGE_F\": 33.700000, \"HOUSEHOLDS\": 19588, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 2886, \"HSEHLD_1_F\": 3018, \"MARHH_CHD\": 3928, \"MARHH_NO_C\": 4803, \"MHH_CHILD\": 473, \"FHH_CHILD\": 1756, \"FAMILIES\": 12386, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 22115, \"VACANT\": 2527, \"OWNER_OCC\": 9573, \"RENTER_OCC\": 10015 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.927828999835626, 30.412028999862816 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Brandon\", \"CLASS\": \"city\", \"ST\": \"MS\", \"STFIPS\": \"28\", \"PLACEFIP\": \"08300\", \"CAPITAL\": \"N\", \"AREALAND\": 21.256000, \"AREAWATER\": 0.080000, \"POP_CL\": 6, \"POP2000\": 16436, \"WHITE\": 14235, \"BLACK\": 1954, \"AMERI_ES\": 16, \"ASIAN\": 95, \"HAWN_PI\": 10, \"OTHER\": 49, \"MULT_RACE\": 77, \"HISPANIC\": 213, \"MALES\": 7788, \"FEMALES\": 8648, \"AGE_UNDER5\": 1103, \"AGE_5_17\": 3045, \"AGE_18_21\": 777, \"AGE_22_29\": 1788, \"AGE_30_39\": 2462, \"AGE_40_49\": 2621, \"AGE_50_64\": 2752, \"AGE_65_UP\": 1888, \"MED_AGE\": 36.200000, \"MED_AGE_M\": 34.400000, \"MED_AGE_F\": 37.900000, \"HOUSEHOLDS\": 6295, \"AVE_HH_SZ\": 2.530000, \"HSEHLD_1_M\": 559, \"HSEHLD_1_F\": 917, \"MARHH_CHD\": 1746, \"MARHH_NO_C\": 1968, \"MHH_CHILD\": 85, \"FHH_CHILD\": 436, \"FAMILIES\": 4593, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 6540, \"VACANT\": 245, \"OWNER_OCC\": 4655, \"RENTER_OCC\": 1640 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.998469999977786, 32.280329999972636 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Canton\", \"CLASS\": \"city\", \"ST\": \"MS\", \"STFIPS\": \"28\", \"PLACEFIP\": \"11100\", \"CAPITAL\": \"N\", \"AREALAND\": 18.602000, \"AREAWATER\": 0.130000, \"POP_CL\": 6, \"POP2000\": 12911, \"WHITE\": 2406, \"BLACK\": 10368, \"AMERI_ES\": 19, \"ASIAN\": 26, \"HAWN_PI\": 0, \"OTHER\": 18, \"MULT_RACE\": 74, \"HISPANIC\": 56, \"MALES\": 5960, \"FEMALES\": 6951, \"AGE_UNDER5\": 1166, \"AGE_5_17\": 3006, \"AGE_18_21\": 818, \"AGE_22_29\": 1481, \"AGE_30_39\": 1710, \"AGE_40_49\": 1542, \"AGE_50_64\": 1656, \"AGE_65_UP\": 1532, \"MED_AGE\": 29.900000, \"MED_AGE_M\": 27.300000, \"MED_AGE_F\": 32.600000, \"HOUSEHOLDS\": 4093, \"AVE_HH_SZ\": 2.990000, \"HSEHLD_1_M\": 358, \"HSEHLD_1_F\": 617, \"MARHH_CHD\": 572, \"MARHH_NO_C\": 755, \"MHH_CHILD\": 102, \"FHH_CHILD\": 844, \"FAMILIES\": 2992, \"AVE_FAM_SZ\": 3.550000, \"HSE_UNITS\": 4333, \"VACANT\": 240, \"OWNER_OCC\": 2410, \"RENTER_OCC\": 1683 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.031637999979637, 32.612014999973475 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Clarksdale\", \"CLASS\": \"city\", \"ST\": \"MS\", \"STFIPS\": \"28\", \"PLACEFIP\": \"13820\", \"CAPITAL\": \"N\", \"AREALAND\": 13.839000, \"AREAWATER\": 0.006000, \"POP_CL\": 6, \"POP2000\": 20645, \"WHITE\": 6184, \"BLACK\": 14146, \"AMERI_ES\": 23, \"ASIAN\": 120, \"HAWN_PI\": 3, \"OTHER\": 46, \"MULT_RACE\": 123, \"HISPANIC\": 134, \"MALES\": 9286, \"FEMALES\": 11359, \"AGE_UNDER5\": 1816, \"AGE_5_17\": 4979, \"AGE_18_21\": 1243, \"AGE_22_29\": 2039, \"AGE_30_39\": 2545, \"AGE_40_49\": 2657, \"AGE_50_64\": 2695, \"AGE_65_UP\": 2671, \"MED_AGE\": 31.100000, \"MED_AGE_M\": 27.400000, \"MED_AGE_F\": 34.100000, \"HOUSEHOLDS\": 7233, \"AVE_HH_SZ\": 2.770000, \"HSEHLD_1_M\": 744, \"HSEHLD_1_F\": 1213, \"MARHH_CHD\": 1171, \"MARHH_NO_C\": 1410, \"MHH_CHILD\": 164, \"FHH_CHILD\": 1325, \"FAMILIES\": 5071, \"AVE_FAM_SZ\": 3.380000, \"HSE_UNITS\": 7757, \"VACANT\": 524, \"OWNER_OCC\": 3868, \"RENTER_OCC\": 3365 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.571940999994922, 34.197887999990016 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cleveland\", \"CLASS\": \"city\", \"ST\": \"MS\", \"STFIPS\": \"28\", \"PLACEFIP\": \"14260\", \"CAPITAL\": \"N\", \"AREALAND\": 7.315000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 13841, \"WHITE\": 6907, \"BLACK\": 6679, \"AMERI_ES\": 17, \"ASIAN\": 137, \"HAWN_PI\": 3, \"OTHER\": 35, \"MULT_RACE\": 63, \"HISPANIC\": 130, \"MALES\": 6295, \"FEMALES\": 7546, \"AGE_UNDER5\": 871, \"AGE_5_17\": 2482, \"AGE_18_21\": 1849, \"AGE_22_29\": 1872, \"AGE_30_39\": 1622, \"AGE_40_49\": 1702, \"AGE_50_64\": 1848, \"AGE_65_UP\": 1595, \"MED_AGE\": 29.200000, \"MED_AGE_M\": 27.100000, \"MED_AGE_F\": 30.700000, \"HOUSEHOLDS\": 4718, \"AVE_HH_SZ\": 2.600000, \"HSEHLD_1_M\": 502, \"HSEHLD_1_F\": 806, \"MARHH_CHD\": 834, \"MARHH_NO_C\": 1142, \"MHH_CHILD\": 70, \"FHH_CHILD\": 580, \"FAMILIES\": 3131, \"AVE_FAM_SZ\": 3.210000, \"HSE_UNITS\": 4988, \"VACANT\": 270, \"OWNER_OCC\": 2881, \"RENTER_OCC\": 1837 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.726547999996583, 33.742026999993236 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Clinton\", \"CLASS\": \"city\", \"ST\": \"MS\", \"STFIPS\": \"28\", \"PLACEFIP\": \"14420\", \"CAPITAL\": \"N\", \"AREALAND\": 23.843000, \"AREAWATER\": 0.245000, \"POP_CL\": 6, \"POP2000\": 23347, \"WHITE\": 17492, \"BLACK\": 5259, \"AMERI_ES\": 24, \"ASIAN\": 359, \"HAWN_PI\": 4, \"OTHER\": 60, \"MULT_RACE\": 149, \"HISPANIC\": 203, \"MALES\": 11012, \"FEMALES\": 12335, \"AGE_UNDER5\": 1431, \"AGE_5_17\": 4341, \"AGE_18_21\": 2318, \"AGE_22_29\": 2645, \"AGE_30_39\": 3231, \"AGE_40_49\": 3388, \"AGE_50_64\": 3368, \"AGE_65_UP\": 2625, \"MED_AGE\": 33.100000, \"MED_AGE_M\": 30.700000, \"MED_AGE_F\": 35.200000, \"HOUSEHOLDS\": 8328, \"AVE_HH_SZ\": 2.600000, \"HSEHLD_1_M\": 687, \"HSEHLD_1_F\": 1239, \"MARHH_CHD\": 2171, \"MARHH_NO_C\": 2489, \"MHH_CHILD\": 133, \"FHH_CHILD\": 687, \"FAMILIES\": 6076, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 8899, \"VACANT\": 571, \"OWNER_OCC\": 5979, \"RENTER_OCC\": 2349 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.323037999989381, 32.339544999985741 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Columbus\", \"CLASS\": \"city\", \"ST\": \"MS\", \"STFIPS\": \"28\", \"PLACEFIP\": \"15380\", \"CAPITAL\": \"N\", \"AREALAND\": 21.415000, \"AREAWATER\": 0.897000, \"POP_CL\": 6, \"POP2000\": 25944, \"WHITE\": 11317, \"BLACK\": 14117, \"AMERI_ES\": 25, \"ASIAN\": 144, \"HAWN_PI\": 3, \"OTHER\": 133, \"MULT_RACE\": 205, \"HISPANIC\": 292, \"MALES\": 11737, \"FEMALES\": 14207, \"AGE_UNDER5\": 1842, \"AGE_5_17\": 4904, \"AGE_18_21\": 1776, \"AGE_22_29\": 3190, \"AGE_30_39\": 3345, \"AGE_40_49\": 3309, \"AGE_50_64\": 3544, \"AGE_65_UP\": 4034, \"MED_AGE\": 33.800000, \"MED_AGE_M\": 31.500000, \"MED_AGE_F\": 35.800000, \"HOUSEHOLDS\": 10062, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 1277, \"HSEHLD_1_F\": 1870, \"MARHH_CHD\": 1500, \"MARHH_NO_C\": 2327, \"MHH_CHILD\": 183, \"FHH_CHILD\": 1316, \"FAMILIES\": 6420, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 11112, \"VACANT\": 1050, \"OWNER_OCC\": 5461, \"RENTER_OCC\": 4601 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.415127999722472, 33.501749999619236 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Corinth\", \"CLASS\": \"city\", \"ST\": \"MS\", \"STFIPS\": \"28\", \"PLACEFIP\": \"15700\", \"CAPITAL\": \"N\", \"AREALAND\": 30.454000, \"AREAWATER\": 0.130000, \"POP_CL\": 6, \"POP2000\": 14054, \"WHITE\": 10720, \"BLACK\": 3035, \"AMERI_ES\": 12, \"ASIAN\": 50, \"HAWN_PI\": 17, \"OTHER\": 118, \"MULT_RACE\": 102, \"HISPANIC\": 243, \"MALES\": 6478, \"FEMALES\": 7576, \"AGE_UNDER5\": 891, \"AGE_5_17\": 2173, \"AGE_18_21\": 760, \"AGE_22_29\": 1442, \"AGE_30_39\": 1728, \"AGE_40_49\": 1902, \"AGE_50_64\": 2404, \"AGE_65_UP\": 2754, \"MED_AGE\": 40.200000, \"MED_AGE_M\": 37.100000, \"MED_AGE_F\": 43.000000, \"HOUSEHOLDS\": 6220, \"AVE_HH_SZ\": 2.190000, \"HSEHLD_1_M\": 820, \"HSEHLD_1_F\": 1394, \"MARHH_CHD\": 975, \"MARHH_NO_C\": 1691, \"MHH_CHILD\": 104, \"FHH_CHILD\": 541, \"FAMILIES\": 3798, \"AVE_FAM_SZ\": 2.820000, \"HSE_UNITS\": 7058, \"VACANT\": 838, \"OWNER_OCC\": 3697, \"RENTER_OCC\": 2523 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.515260999787245, 34.937227999621037 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Gautier\", \"CLASS\": \"city\", \"ST\": \"MS\", \"STFIPS\": \"28\", \"PLACEFIP\": \"26860\", \"CAPITAL\": \"N\", \"AREALAND\": 12.242000, \"AREAWATER\": 0.673000, \"POP_CL\": 6, \"POP2000\": 11681, \"WHITE\": 7965, \"BLACK\": 3230, \"AMERI_ES\": 60, \"ASIAN\": 150, \"HAWN_PI\": 5, \"OTHER\": 105, \"MULT_RACE\": 166, \"HISPANIC\": 373, \"MALES\": 5780, \"FEMALES\": 5901, \"AGE_UNDER5\": 970, \"AGE_5_17\": 2353, \"AGE_18_21\": 636, \"AGE_22_29\": 1376, \"AGE_30_39\": 1777, \"AGE_40_49\": 1708, \"AGE_50_64\": 1896, \"AGE_65_UP\": 965, \"MED_AGE\": 32.700000, \"MED_AGE_M\": 32.100000, \"MED_AGE_F\": 33.400000, \"HOUSEHOLDS\": 4260, \"AVE_HH_SZ\": 2.730000, \"HSEHLD_1_M\": 444, \"HSEHLD_1_F\": 378, \"MARHH_CHD\": 1036, \"MARHH_NO_C\": 1301, \"MHH_CHILD\": 84, \"FHH_CHILD\": 501, \"FAMILIES\": 3235, \"AVE_FAM_SZ\": 3.110000, \"HSE_UNITS\": 4597, \"VACANT\": 337, \"OWNER_OCC\": 2982, \"RENTER_OCC\": 1278 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.644168999751514, 30.381535999795169 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Greenville\", \"CLASS\": \"city\", \"ST\": \"MS\", \"STFIPS\": \"28\", \"PLACEFIP\": \"29180\", \"CAPITAL\": \"N\", \"AREALAND\": 26.880000, \"AREAWATER\": 0.781000, \"POP_CL\": 6, \"POP2000\": 41633, \"WHITE\": 12039, \"BLACK\": 28976, \"AMERI_ES\": 29, \"ASIAN\": 295, \"HAWN_PI\": 6, \"OTHER\": 83, \"MULT_RACE\": 205, \"HISPANIC\": 297, \"MALES\": 19177, \"FEMALES\": 22456, \"AGE_UNDER5\": 3582, \"AGE_5_17\": 9480, \"AGE_18_21\": 2521, \"AGE_22_29\": 4459, \"AGE_30_39\": 5139, \"AGE_40_49\": 5899, \"AGE_50_64\": 5644, \"AGE_65_UP\": 4909, \"MED_AGE\": 31.500000, \"MED_AGE_M\": 28.800000, \"MED_AGE_F\": 33.900000, \"HOUSEHOLDS\": 14784, \"AVE_HH_SZ\": 2.770000, \"HSEHLD_1_M\": 1593, \"HSEHLD_1_F\": 2228, \"MARHH_CHD\": 2444, \"MARHH_NO_C\": 3146, \"MHH_CHILD\": 379, \"FHH_CHILD\": 2476, \"FAMILIES\": 10419, \"AVE_FAM_SZ\": 3.340000, \"HSE_UNITS\": 16251, \"VACANT\": 1467, \"OWNER_OCC\": 8252, \"RENTER_OCC\": 6532 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -91.048355999998705, 33.398576999996806 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Greenwood\", \"CLASS\": \"city\", \"ST\": \"MS\", \"STFIPS\": \"28\", \"PLACEFIP\": \"29340\", \"CAPITAL\": \"N\", \"AREALAND\": 9.223000, \"AREAWATER\": 0.297000, \"POP_CL\": 6, \"POP2000\": 18425, \"WHITE\": 6047, \"BLACK\": 12042, \"AMERI_ES\": 20, \"ASIAN\": 168, \"HAWN_PI\": 14, \"OTHER\": 45, \"MULT_RACE\": 89, \"HISPANIC\": 189, \"MALES\": 8423, \"FEMALES\": 10002, \"AGE_UNDER5\": 1488, \"AGE_5_17\": 4227, \"AGE_18_21\": 1152, \"AGE_22_29\": 1956, \"AGE_30_39\": 2435, \"AGE_40_49\": 2467, \"AGE_50_64\": 2242, \"AGE_65_UP\": 2458, \"MED_AGE\": 31.700000, \"MED_AGE_M\": 28.400000, \"MED_AGE_F\": 34.400000, \"HOUSEHOLDS\": 6916, \"AVE_HH_SZ\": 2.590000, \"HSEHLD_1_M\": 867, \"HSEHLD_1_F\": 1303, \"MARHH_CHD\": 1024, \"MARHH_NO_C\": 1289, \"MHH_CHILD\": 163, \"FHH_CHILD\": 1164, \"FAMILIES\": 4525, \"AVE_FAM_SZ\": 3.290000, \"HSE_UNITS\": 7565, \"VACANT\": 649, \"OWNER_OCC\": 3410, \"RENTER_OCC\": 3506 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.183882999986182, 33.518718999978631 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Grenada\", \"CLASS\": \"city\", \"ST\": \"MS\", \"STFIPS\": \"28\", \"PLACEFIP\": \"29460\", \"CAPITAL\": \"N\", \"AREALAND\": 29.952000, \"AREAWATER\": 0.013000, \"POP_CL\": 6, \"POP2000\": 14879, \"WHITE\": 7333, \"BLACK\": 7342, \"AMERI_ES\": 24, \"ASIAN\": 75, \"HAWN_PI\": 3, \"OTHER\": 18, \"MULT_RACE\": 84, \"HISPANIC\": 104, \"MALES\": 6728, \"FEMALES\": 8151, \"AGE_UNDER5\": 1087, \"AGE_5_17\": 2998, \"AGE_18_21\": 864, \"AGE_22_29\": 1473, \"AGE_30_39\": 2005, \"AGE_40_49\": 1989, \"AGE_50_64\": 2101, \"AGE_65_UP\": 2362, \"MED_AGE\": 35.400000, \"MED_AGE_M\": 32.600000, \"MED_AGE_F\": 37.300000, \"HOUSEHOLDS\": 5701, \"AVE_HH_SZ\": 2.520000, \"HSEHLD_1_M\": 613, \"HSEHLD_1_F\": 1003, \"MARHH_CHD\": 1025, \"MARHH_NO_C\": 1361, \"MHH_CHILD\": 108, \"FHH_CHILD\": 771, \"FAMILIES\": 3872, \"AVE_FAM_SZ\": 3.100000, \"HSE_UNITS\": 6210, \"VACANT\": 509, \"OWNER_OCC\": 3492, \"RENTER_OCC\": 2209 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.808767999969703, 33.775079999954727 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Gulfport\", \"CLASS\": \"city\", \"ST\": \"MS\", \"STFIPS\": \"28\", \"PLACEFIP\": \"29700\", \"CAPITAL\": \"N\", \"AREALAND\": 56.907000, \"AREAWATER\": 7.320000, \"POP_CL\": 7, \"POP2000\": 71127, \"WHITE\": 44229, \"BLACK\": 23848, \"AMERI_ES\": 305, \"ASIAN\": 891, \"HAWN_PI\": 65, \"OTHER\": 622, \"MULT_RACE\": 1167, \"HISPANIC\": 1814, \"MALES\": 35244, \"FEMALES\": 35883, \"AGE_UNDER5\": 5084, \"AGE_5_17\": 13425, \"AGE_18_21\": 4531, \"AGE_22_29\": 8729, \"AGE_30_39\": 10802, \"AGE_40_49\": 10302, \"AGE_50_64\": 10147, \"AGE_65_UP\": 8107, \"MED_AGE\": 33.600000, \"MED_AGE_M\": 32.200000, \"MED_AGE_F\": 35.100000, \"HOUSEHOLDS\": 26943, \"AVE_HH_SZ\": 2.510000, \"HSEHLD_1_M\": 3479, \"HSEHLD_1_F\": 3985, \"MARHH_CHD\": 5018, \"MARHH_NO_C\": 6454, \"MHH_CHILD\": 670, \"FHH_CHILD\": 2961, \"FAMILIES\": 17653, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 29559, \"VACANT\": 2616, \"OWNER_OCC\": 15827, \"RENTER_OCC\": 11116 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.076168999869324, 30.401640999890301 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hattiesburg\", \"CLASS\": \"city\", \"ST\": \"MS\", \"STFIPS\": \"28\", \"PLACEFIP\": \"31020\", \"CAPITAL\": \"N\", \"AREALAND\": 49.259000, \"AREAWATER\": 0.409000, \"POP_CL\": 6, \"POP2000\": 44779, \"WHITE\": 22365, \"BLACK\": 21200, \"AMERI_ES\": 68, \"ASIAN\": 547, \"HAWN_PI\": 9, \"OTHER\": 231, \"MULT_RACE\": 359, \"HISPANIC\": 630, \"MALES\": 20612, \"FEMALES\": 24167, \"AGE_UNDER5\": 3011, \"AGE_5_17\": 6627, \"AGE_18_21\": 6511, \"AGE_22_29\": 8353, \"AGE_30_39\": 5317, \"AGE_40_49\": 4835, \"AGE_50_64\": 4828, \"AGE_65_UP\": 5297, \"MED_AGE\": 27.100000, \"MED_AGE_M\": 26.500000, \"MED_AGE_F\": 27.800000, \"HOUSEHOLDS\": 17295, \"AVE_HH_SZ\": 2.290000, \"HSEHLD_1_M\": 2535, \"HSEHLD_1_F\": 3420, \"MARHH_CHD\": 2072, \"MARHH_NO_C\": 3314, \"MHH_CHILD\": 279, \"FHH_CHILD\": 2017, \"FAMILIES\": 9396, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 19258, \"VACANT\": 1963, \"OWNER_OCC\": 7707, \"RENTER_OCC\": 9588 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.308657999913791, 31.315973999915979 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Horn Lake\", \"CLASS\": \"city\", \"ST\": \"MS\", \"STFIPS\": \"28\", \"PLACEFIP\": \"33700\", \"CAPITAL\": \"N\", \"AREALAND\": 7.240000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14099, \"WHITE\": 11704, \"BLACK\": 1729, \"AMERI_ES\": 73, \"ASIAN\": 126, \"HAWN_PI\": 6, \"OTHER\": 310, \"MULT_RACE\": 151, \"HISPANIC\": 603, \"MALES\": 6969, \"FEMALES\": 7130, \"AGE_UNDER5\": 1367, \"AGE_5_17\": 3227, \"AGE_18_21\": 743, \"AGE_22_29\": 2188, \"AGE_30_39\": 2636, \"AGE_40_49\": 1762, \"AGE_50_64\": 1504, \"AGE_65_UP\": 672, \"MED_AGE\": 28.600000, \"MED_AGE_M\": 27.800000, \"MED_AGE_F\": 29.300000, \"HOUSEHOLDS\": 4934, \"AVE_HH_SZ\": 2.860000, \"HSEHLD_1_M\": 400, \"HSEHLD_1_F\": 494, \"MARHH_CHD\": 1593, \"MARHH_NO_C\": 1078, \"MHH_CHILD\": 188, \"FHH_CHILD\": 555, \"FAMILIES\": 3754, \"AVE_FAM_SZ\": 3.220000, \"HSE_UNITS\": 5153, \"VACANT\": 219, \"OWNER_OCC\": 3540, \"RENTER_OCC\": 1394 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.042923999982776, 34.958643999967691 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Indianola\", \"CLASS\": \"city\", \"ST\": \"MS\", \"STFIPS\": \"28\", \"PLACEFIP\": \"34740\", \"CAPITAL\": \"N\", \"AREALAND\": 8.617000, \"AREAWATER\": 0.087000, \"POP_CL\": 6, \"POP2000\": 12066, \"WHITE\": 3105, \"BLACK\": 8854, \"AMERI_ES\": 1, \"ASIAN\": 55, \"HAWN_PI\": 0, \"OTHER\": 19, \"MULT_RACE\": 32, \"HISPANIC\": 86, \"MALES\": 5472, \"FEMALES\": 6594, \"AGE_UNDER5\": 979, \"AGE_5_17\": 2992, \"AGE_18_21\": 848, \"AGE_22_29\": 1285, \"AGE_30_39\": 1613, \"AGE_40_49\": 1611, \"AGE_50_64\": 1453, \"AGE_65_UP\": 1285, \"MED_AGE\": 29.600000, \"MED_AGE_M\": 26.600000, \"MED_AGE_F\": 31.600000, \"HOUSEHOLDS\": 3899, \"AVE_HH_SZ\": 3.050000, \"HSEHLD_1_M\": 301, \"HSEHLD_1_F\": 510, \"MARHH_CHD\": 743, \"MARHH_NO_C\": 847, \"MHH_CHILD\": 97, \"FHH_CHILD\": 711, \"FAMILIES\": 2982, \"AVE_FAM_SZ\": 3.530000, \"HSE_UNITS\": 4118, \"VACANT\": 219, \"OWNER_OCC\": 2471, \"RENTER_OCC\": 1428 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.647413999995663, 33.447998999992151 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Jackson\", \"CLASS\": \"city\", \"ST\": \"MS\", \"STFIPS\": \"28\", \"PLACEFIP\": \"36000\", \"CAPITAL\": \"Y\", \"AREALAND\": 104.903000, \"AREAWATER\": 1.916000, \"POP_CL\": 8, \"POP2000\": 184256, \"WHITE\": 51208, \"BLACK\": 130151, \"AMERI_ES\": 236, \"ASIAN\": 1056, \"HAWN_PI\": 24, \"OTHER\": 344, \"MULT_RACE\": 1237, \"HISPANIC\": 1451, \"MALES\": 85656, \"FEMALES\": 98600, \"AGE_UNDER5\": 14438, \"AGE_5_17\": 38105, \"AGE_18_21\": 13581, \"AGE_22_29\": 23356, \"AGE_30_39\": 25922, \"AGE_40_49\": 25877, \"AGE_50_64\": 22916, \"AGE_65_UP\": 20061, \"MED_AGE\": 31.000000, \"MED_AGE_M\": 29.100000, \"MED_AGE_F\": 32.800000, \"HOUSEHOLDS\": 67841, \"AVE_HH_SZ\": 2.610000, \"HSEHLD_1_M\": 8374, \"HSEHLD_1_F\": 11222, \"MARHH_CHD\": 10953, \"MARHH_NO_C\": 13040, \"MHH_CHILD\": 1532, \"FHH_CHILD\": 10374, \"FAMILIES\": 44488, \"AVE_FAM_SZ\": 3.240000, \"HSE_UNITS\": 75678, \"VACANT\": 7837, \"OWNER_OCC\": 39328, \"RENTER_OCC\": 28513 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.204414999985957, 32.320444999981781 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Laurel\", \"CLASS\": \"city\", \"ST\": \"MS\", \"STFIPS\": \"28\", \"PLACEFIP\": \"39640\", \"CAPITAL\": \"N\", \"AREALAND\": 15.426000, \"AREAWATER\": 0.334000, \"POP_CL\": 6, \"POP2000\": 18393, \"WHITE\": 7474, \"BLACK\": 10130, \"AMERI_ES\": 21, \"ASIAN\": 60, \"HAWN_PI\": 1, \"OTHER\": 583, \"MULT_RACE\": 124, \"HISPANIC\": 712, \"MALES\": 8492, \"FEMALES\": 9901, \"AGE_UNDER5\": 1450, \"AGE_5_17\": 3688, \"AGE_18_21\": 1102, \"AGE_22_29\": 2003, \"AGE_30_39\": 2210, \"AGE_40_49\": 2348, \"AGE_50_64\": 2436, \"AGE_65_UP\": 3156, \"MED_AGE\": 34.700000, \"MED_AGE_M\": 31.000000, \"MED_AGE_F\": 37.800000, \"HOUSEHOLDS\": 6925, \"AVE_HH_SZ\": 2.610000, \"HSEHLD_1_M\": 747, \"HSEHLD_1_F\": 1334, \"MARHH_CHD\": 966, \"MARHH_NO_C\": 1612, \"MHH_CHILD\": 134, \"FHH_CHILD\": 958, \"FAMILIES\": 4540, \"AVE_FAM_SZ\": 3.210000, \"HSE_UNITS\": 7804, \"VACANT\": 879, \"OWNER_OCC\": 4247, \"RENTER_OCC\": 2678 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.139314999887901, 31.697411999885738 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Long Beach\", \"CLASS\": \"city\", \"ST\": \"MS\", \"STFIPS\": \"28\", \"PLACEFIP\": \"41680\", \"CAPITAL\": \"N\", \"AREALAND\": 10.107000, \"AREAWATER\": 0.187000, \"POP_CL\": 6, \"POP2000\": 17320, \"WHITE\": 15154, \"BLACK\": 1275, \"AMERI_ES\": 67, \"ASIAN\": 445, \"HAWN_PI\": 12, \"OTHER\": 117, \"MULT_RACE\": 250, \"HISPANIC\": 397, \"MALES\": 8349, \"FEMALES\": 8971, \"AGE_UNDER5\": 1113, \"AGE_5_17\": 3582, \"AGE_18_21\": 908, \"AGE_22_29\": 1718, \"AGE_30_39\": 2585, \"AGE_40_49\": 2750, \"AGE_50_64\": 2716, \"AGE_65_UP\": 1948, \"MED_AGE\": 35.700000, \"MED_AGE_M\": 34.500000, \"MED_AGE_F\": 36.800000, \"HOUSEHOLDS\": 6560, \"AVE_HH_SZ\": 2.610000, \"HSEHLD_1_M\": 638, \"HSEHLD_1_F\": 863, \"MARHH_CHD\": 1626, \"MARHH_NO_C\": 1900, \"MHH_CHILD\": 154, \"FHH_CHILD\": 597, \"FAMILIES\": 4696, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 7203, \"VACANT\": 643, \"OWNER_OCC\": 4348, \"RENTER_OCC\": 2212 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.15963899988553, 30.352546999904071 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"McComb\", \"CLASS\": \"city\", \"ST\": \"MS\", \"STFIPS\": \"28\", \"PLACEFIP\": \"43280\", \"CAPITAL\": \"N\", \"AREALAND\": 11.523000, \"AREAWATER\": 0.061000, \"POP_CL\": 6, \"POP2000\": 13337, \"WHITE\": 5354, \"BLACK\": 7789, \"AMERI_ES\": 9, \"ASIAN\": 66, \"HAWN_PI\": 4, \"OTHER\": 51, \"MULT_RACE\": 64, \"HISPANIC\": 113, \"MALES\": 5852, \"FEMALES\": 7485, \"AGE_UNDER5\": 1118, \"AGE_5_17\": 2752, \"AGE_18_21\": 763, \"AGE_22_29\": 1329, \"AGE_30_39\": 1617, \"AGE_40_49\": 1755, \"AGE_50_64\": 1756, \"AGE_65_UP\": 2247, \"MED_AGE\": 34.700000, \"MED_AGE_M\": 31.300000, \"MED_AGE_F\": 37.000000, \"HOUSEHOLDS\": 5265, \"AVE_HH_SZ\": 2.470000, \"HSEHLD_1_M\": 614, \"HSEHLD_1_F\": 1070, \"MARHH_CHD\": 792, \"MARHH_NO_C\": 1079, \"MHH_CHILD\": 92, \"FHH_CHILD\": 872, \"FAMILIES\": 3411, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 5931, \"VACANT\": 666, \"OWNER_OCC\": 3037, \"RENTER_OCC\": 2228 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.459499999992033, 31.244628999990482 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Madison\", \"CLASS\": \"city\", \"ST\": \"MS\", \"STFIPS\": \"28\", \"PLACEFIP\": \"44520\", \"CAPITAL\": \"N\", \"AREALAND\": 13.479000, \"AREAWATER\": 0.219000, \"POP_CL\": 6, \"POP2000\": 14692, \"WHITE\": 13697, \"BLACK\": 719, \"AMERI_ES\": 11, \"ASIAN\": 176, \"HAWN_PI\": 4, \"OTHER\": 26, \"MULT_RACE\": 59, \"HISPANIC\": 102, \"MALES\": 7092, \"FEMALES\": 7600, \"AGE_UNDER5\": 1193, \"AGE_5_17\": 3392, \"AGE_18_21\": 406, \"AGE_22_29\": 889, \"AGE_30_39\": 2794, \"AGE_40_49\": 2946, \"AGE_50_64\": 1822, \"AGE_65_UP\": 1250, \"MED_AGE\": 36.200000, \"MED_AGE_M\": 35.700000, \"MED_AGE_F\": 36.500000, \"HOUSEHOLDS\": 5189, \"AVE_HH_SZ\": 2.810000, \"HSEHLD_1_M\": 292, \"HSEHLD_1_F\": 553, \"MARHH_CHD\": 2221, \"MARHH_NO_C\": 1569, \"MHH_CHILD\": 36, \"FHH_CHILD\": 258, \"FAMILIES\": 4251, \"AVE_FAM_SZ\": 3.170000, \"HSE_UNITS\": 5316, \"VACANT\": 127, \"OWNER_OCC\": 4873, \"RENTER_OCC\": 316 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.108582999982673, 32.457060999977578 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Meridian\", \"CLASS\": \"city\", \"ST\": \"MS\", \"STFIPS\": \"28\", \"PLACEFIP\": \"46640\", \"CAPITAL\": \"N\", \"AREALAND\": 45.117000, \"AREAWATER\": 0.752000, \"POP_CL\": 6, \"POP2000\": 39968, \"WHITE\": 17580, \"BLACK\": 21729, \"AMERI_ES\": 67, \"ASIAN\": 238, \"HAWN_PI\": 13, \"OTHER\": 112, \"MULT_RACE\": 229, \"HISPANIC\": 433, \"MALES\": 18250, \"FEMALES\": 21718, \"AGE_UNDER5\": 3033, \"AGE_5_17\": 7835, \"AGE_18_21\": 2401, \"AGE_22_29\": 4388, \"AGE_30_39\": 5139, \"AGE_40_49\": 5273, \"AGE_50_64\": 5302, \"AGE_65_UP\": 6597, \"MED_AGE\": 34.600000, \"MED_AGE_M\": 31.600000, \"MED_AGE_F\": 36.900000, \"HOUSEHOLDS\": 15966, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 2080, \"HSEHLD_1_F\": 3216, \"MARHH_CHD\": 2391, \"MARHH_NO_C\": 3386, \"MHH_CHILD\": 251, \"FHH_CHILD\": 2331, \"FAMILIES\": 10033, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 17890, \"VACANT\": 1924, \"OWNER_OCC\": 8984, \"RENTER_OCC\": 6982 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.70415999979295, 32.374840999768303 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Moss Point\", \"CLASS\": \"city\", \"ST\": \"MS\", \"STFIPS\": \"28\", \"PLACEFIP\": \"49240\", \"CAPITAL\": \"N\", \"AREALAND\": 25.003000, \"AREAWATER\": 1.768000, \"POP_CL\": 6, \"POP2000\": 15851, \"WHITE\": 4445, \"BLACK\": 11184, \"AMERI_ES\": 24, \"ASIAN\": 34, \"HAWN_PI\": 4, \"OTHER\": 69, \"MULT_RACE\": 91, \"HISPANIC\": 159, \"MALES\": 7560, \"FEMALES\": 8291, \"AGE_UNDER5\": 1015, \"AGE_5_17\": 3235, \"AGE_18_21\": 945, \"AGE_22_29\": 1506, \"AGE_30_39\": 1908, \"AGE_40_49\": 2415, \"AGE_50_64\": 2837, \"AGE_65_UP\": 1990, \"MED_AGE\": 36.700000, \"MED_AGE_M\": 34.800000, \"MED_AGE_F\": 38.600000, \"HOUSEHOLDS\": 5714, \"AVE_HH_SZ\": 2.750000, \"HSEHLD_1_M\": 605, \"HSEHLD_1_F\": 697, \"MARHH_CHD\": 974, \"MARHH_NO_C\": 1580, \"MHH_CHILD\": 145, \"FHH_CHILD\": 687, \"FAMILIES\": 4227, \"AVE_FAM_SZ\": 3.210000, \"HSE_UNITS\": 6237, \"VACANT\": 523, \"OWNER_OCC\": 4237, \"RENTER_OCC\": 1477 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.52513999970796, 30.410998999758384 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Natchez\", \"CLASS\": \"city\", \"ST\": \"MS\", \"STFIPS\": \"28\", \"PLACEFIP\": \"50440\", \"CAPITAL\": \"N\", \"AREALAND\": 13.205000, \"AREAWATER\": 0.645000, \"POP_CL\": 6, \"POP2000\": 18464, \"WHITE\": 8158, \"BLACK\": 10061, \"AMERI_ES\": 20, \"ASIAN\": 71, \"HAWN_PI\": 3, \"OTHER\": 34, \"MULT_RACE\": 117, \"HISPANIC\": 130, \"MALES\": 8293, \"FEMALES\": 10171, \"AGE_UNDER5\": 1338, \"AGE_5_17\": 3547, \"AGE_18_21\": 938, \"AGE_22_29\": 1773, \"AGE_30_39\": 2071, \"AGE_40_49\": 2682, \"AGE_50_64\": 2784, \"AGE_65_UP\": 3331, \"MED_AGE\": 38.200000, \"MED_AGE_M\": 36.300000, \"MED_AGE_F\": 39.900000, \"HOUSEHOLDS\": 7591, \"AVE_HH_SZ\": 2.370000, \"HSEHLD_1_M\": 931, \"HSEHLD_1_F\": 1526, \"MARHH_CHD\": 1057, \"MARHH_NO_C\": 1719, \"MHH_CHILD\": 128, \"FHH_CHILD\": 1072, \"FAMILIES\": 4856, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 8479, \"VACANT\": 888, \"OWNER_OCC\": 4555, \"RENTER_OCC\": 3036 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -91.38756599999958, 31.554392999998601 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ocean Springs\", \"CLASS\": \"city\", \"ST\": \"MS\", \"STFIPS\": \"28\", \"PLACEFIP\": \"53520\", \"CAPITAL\": \"N\", \"AREALAND\": 11.639000, \"AREAWATER\": 3.593000, \"POP_CL\": 6, \"POP2000\": 17225, \"WHITE\": 15113, \"BLACK\": 1211, \"AMERI_ES\": 69, \"ASIAN\": 453, \"HAWN_PI\": 13, \"OTHER\": 108, \"MULT_RACE\": 258, \"HISPANIC\": 430, \"MALES\": 8300, \"FEMALES\": 8925, \"AGE_UNDER5\": 1034, \"AGE_5_17\": 3493, \"AGE_18_21\": 738, \"AGE_22_29\": 1426, \"AGE_30_39\": 2704, \"AGE_40_49\": 2858, \"AGE_50_64\": 2826, \"AGE_65_UP\": 2146, \"MED_AGE\": 37.500000, \"MED_AGE_M\": 36.500000, \"MED_AGE_F\": 38.300000, \"HOUSEHOLDS\": 6650, \"AVE_HH_SZ\": 2.560000, \"HSEHLD_1_M\": 660, \"HSEHLD_1_F\": 973, \"MARHH_CHD\": 1735, \"MARHH_NO_C\": 1938, \"MHH_CHILD\": 162, \"FHH_CHILD\": 434, \"FAMILIES\": 4688, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 7072, \"VACANT\": 422, \"OWNER_OCC\": 4801, \"RENTER_OCC\": 1849 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.797421999800434, 30.409947999834294 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Olive Branch\", \"CLASS\": \"city\", \"ST\": \"MS\", \"STFIPS\": \"28\", \"PLACEFIP\": \"54040\", \"CAPITAL\": \"N\", \"AREALAND\": 36.194000, \"AREAWATER\": 0.086000, \"POP_CL\": 6, \"POP2000\": 21054, \"WHITE\": 18233, \"BLACK\": 2379, \"AMERI_ES\": 42, \"ASIAN\": 87, \"HAWN_PI\": 1, \"OTHER\": 158, \"MULT_RACE\": 154, \"HISPANIC\": 307, \"MALES\": 10332, \"FEMALES\": 10722, \"AGE_UNDER5\": 1831, \"AGE_5_17\": 4388, \"AGE_18_21\": 794, \"AGE_22_29\": 2343, \"AGE_30_39\": 3953, \"AGE_40_49\": 3054, \"AGE_50_64\": 2825, \"AGE_65_UP\": 1866, \"MED_AGE\": 33.100000, \"MED_AGE_M\": 32.500000, \"MED_AGE_F\": 33.600000, \"HOUSEHOLDS\": 7546, \"AVE_HH_SZ\": 2.780000, \"HSEHLD_1_M\": 545, \"HSEHLD_1_F\": 685, \"MARHH_CHD\": 2567, \"MARHH_NO_C\": 2399, \"MHH_CHILD\": 152, \"FHH_CHILD\": 509, \"FAMILIES\": 6035, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 7935, \"VACANT\": 389, \"OWNER_OCC\": 6339, \"RENTER_OCC\": 1207 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.841626999973826, 34.963006999952562 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Oxford\", \"CLASS\": \"city\", \"ST\": \"MS\", \"STFIPS\": \"28\", \"PLACEFIP\": \"54840\", \"CAPITAL\": \"N\", \"AREALAND\": 9.970000, \"AREAWATER\": 0.006000, \"POP_CL\": 6, \"POP2000\": 11756, \"WHITE\": 8818, \"BLACK\": 2463, \"AMERI_ES\": 14, \"ASIAN\": 315, \"HAWN_PI\": 2, \"OTHER\": 42, \"MULT_RACE\": 102, \"HISPANIC\": 122, \"MALES\": 5896, \"FEMALES\": 5860, \"AGE_UNDER5\": 557, \"AGE_5_17\": 1197, \"AGE_18_21\": 1973, \"AGE_22_29\": 2974, \"AGE_30_39\": 1372, \"AGE_40_49\": 1055, \"AGE_50_64\": 1104, \"AGE_65_UP\": 1524, \"MED_AGE\": 26.200000, \"MED_AGE_M\": 25.500000, \"MED_AGE_F\": 27.600000, \"HOUSEHOLDS\": 5327, \"AVE_HH_SZ\": 2.050000, \"HSEHLD_1_M\": 902, \"HSEHLD_1_F\": 1117, \"MARHH_CHD\": 560, \"MARHH_NO_C\": 872, \"MHH_CHILD\": 39, \"FHH_CHILD\": 332, \"FAMILIES\": 2108, \"AVE_FAM_SZ\": 2.780000, \"HSE_UNITS\": 6137, \"VACANT\": 810, \"OWNER_OCC\": 1927, \"RENTER_OCC\": 3400 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.526241999950301, 34.359836999921235 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pascagoula\", \"CLASS\": \"city\", \"ST\": \"MS\", \"STFIPS\": \"28\", \"PLACEFIP\": \"55360\", \"CAPITAL\": \"N\", \"AREALAND\": 15.176000, \"AREAWATER\": 3.047000, \"POP_CL\": 6, \"POP2000\": 26200, \"WHITE\": 17594, \"BLACK\": 7590, \"AMERI_ES\": 47, \"ASIAN\": 253, \"HAWN_PI\": 6, \"OTHER\": 437, \"MULT_RACE\": 273, \"HISPANIC\": 1019, \"MALES\": 13216, \"FEMALES\": 12984, \"AGE_UNDER5\": 2052, \"AGE_5_17\": 4989, \"AGE_18_21\": 1789, \"AGE_22_29\": 3277, \"AGE_30_39\": 3653, \"AGE_40_49\": 3716, \"AGE_50_64\": 3617, \"AGE_65_UP\": 3107, \"MED_AGE\": 32.600000, \"MED_AGE_M\": 30.900000, \"MED_AGE_F\": 34.600000, \"HOUSEHOLDS\": 9878, \"AVE_HH_SZ\": 2.520000, \"HSEHLD_1_M\": 1252, \"HSEHLD_1_F\": 1418, \"MARHH_CHD\": 1938, \"MARHH_NO_C\": 2468, \"MHH_CHILD\": 236, \"FHH_CHILD\": 1236, \"FAMILIES\": 6724, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 10931, \"VACANT\": 1053, \"OWNER_OCC\": 5607, \"RENTER_OCC\": 4271 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.54204099971399, 30.363655999765019 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pearl\", \"CLASS\": \"city\", \"ST\": \"MS\", \"STFIPS\": \"28\", \"PLACEFIP\": \"55760\", \"CAPITAL\": \"N\", \"AREALAND\": 21.832000, \"AREAWATER\": 0.216000, \"POP_CL\": 6, \"POP2000\": 21961, \"WHITE\": 17828, \"BLACK\": 3567, \"AMERI_ES\": 49, \"ASIAN\": 174, \"HAWN_PI\": 7, \"OTHER\": 171, \"MULT_RACE\": 165, \"HISPANIC\": 446, \"MALES\": 10451, \"FEMALES\": 11510, \"AGE_UNDER5\": 1678, \"AGE_5_17\": 4127, \"AGE_18_21\": 1233, \"AGE_22_29\": 2750, \"AGE_30_39\": 3585, \"AGE_40_49\": 3070, \"AGE_50_64\": 3260, \"AGE_65_UP\": 2258, \"MED_AGE\": 33.500000, \"MED_AGE_M\": 31.900000, \"MED_AGE_F\": 35.100000, \"HOUSEHOLDS\": 8608, \"AVE_HH_SZ\": 2.550000, \"HSEHLD_1_M\": 856, \"HSEHLD_1_F\": 1297, \"MARHH_CHD\": 1993, \"MARHH_NO_C\": 2326, \"MHH_CHILD\": 187, \"FHH_CHILD\": 784, \"FAMILIES\": 6026, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 9128, \"VACANT\": 520, \"OWNER_OCC\": 5762, \"RENTER_OCC\": 2846 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.105265999982379, 32.271978999977847 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Picayune\", \"CLASS\": \"city\", \"ST\": \"MS\", \"STFIPS\": \"28\", \"PLACEFIP\": \"57160\", \"CAPITAL\": \"N\", \"AREALAND\": 11.763000, \"AREAWATER\": 0.041000, \"POP_CL\": 6, \"POP2000\": 10535, \"WHITE\": 6534, \"BLACK\": 3784, \"AMERI_ES\": 40, \"ASIAN\": 32, \"HAWN_PI\": 5, \"OTHER\": 19, \"MULT_RACE\": 121, \"HISPANIC\": 121, \"MALES\": 4773, \"FEMALES\": 5762, \"AGE_UNDER5\": 738, \"AGE_5_17\": 2108, \"AGE_18_21\": 606, \"AGE_22_29\": 1003, \"AGE_30_39\": 1342, \"AGE_40_49\": 1475, \"AGE_50_64\": 1676, \"AGE_65_UP\": 1587, \"MED_AGE\": 36.300000, \"MED_AGE_M\": 34.700000, \"MED_AGE_F\": 37.500000, \"HOUSEHOLDS\": 4100, \"AVE_HH_SZ\": 2.540000, \"HSEHLD_1_M\": 423, \"HSEHLD_1_F\": 661, \"MARHH_CHD\": 750, \"MARHH_NO_C\": 1093, \"MHH_CHILD\": 74, \"FHH_CHILD\": 481, \"FAMILIES\": 2867, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 4568, \"VACANT\": 468, \"OWNER_OCC\": 2652, \"RENTER_OCC\": 1448 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.680181999954613, 30.528088999958911 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ridgeland\", \"CLASS\": \"city\", \"ST\": \"MS\", \"STFIPS\": \"28\", \"PLACEFIP\": \"62520\", \"CAPITAL\": \"N\", \"AREALAND\": 15.917000, \"AREAWATER\": 1.800000, \"POP_CL\": 6, \"POP2000\": 20173, \"WHITE\": 15544, \"BLACK\": 3719, \"AMERI_ES\": 30, \"ASIAN\": 596, \"HAWN_PI\": 8, \"OTHER\": 110, \"MULT_RACE\": 166, \"HISPANIC\": 313, \"MALES\": 9549, \"FEMALES\": 10624, \"AGE_UNDER5\": 1481, \"AGE_5_17\": 3231, \"AGE_18_21\": 876, \"AGE_22_29\": 3637, \"AGE_30_39\": 4001, \"AGE_40_49\": 3056, \"AGE_50_64\": 2228, \"AGE_65_UP\": 1663, \"MED_AGE\": 31.900000, \"MED_AGE_M\": 31.200000, \"MED_AGE_F\": 32.800000, \"HOUSEHOLDS\": 9267, \"AVE_HH_SZ\": 2.150000, \"HSEHLD_1_M\": 1581, \"HSEHLD_1_F\": 1999, \"MARHH_CHD\": 1890, \"MARHH_NO_C\": 1881, \"MHH_CHILD\": 152, \"FHH_CHILD\": 625, \"FAMILIES\": 5027, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 9930, \"VACANT\": 663, \"OWNER_OCC\": 4471, \"RENTER_OCC\": 4796 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.124932999983258, 32.418846999978378 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Southaven\", \"CLASS\": \"city\", \"ST\": \"MS\", \"STFIPS\": \"28\", \"PLACEFIP\": \"69280\", \"CAPITAL\": \"N\", \"AREALAND\": 33.778000, \"AREAWATER\": 0.215000, \"POP_CL\": 6, \"POP2000\": 28977, \"WHITE\": 26175, \"BLACK\": 1928, \"AMERI_ES\": 93, \"ASIAN\": 214, \"HAWN_PI\": 8, \"OTHER\": 328, \"MULT_RACE\": 231, \"HISPANIC\": 654, \"MALES\": 14138, \"FEMALES\": 14839, \"AGE_UNDER5\": 2195, \"AGE_5_17\": 5675, \"AGE_18_21\": 1417, \"AGE_22_29\": 3751, \"AGE_30_39\": 4719, \"AGE_40_49\": 4036, \"AGE_50_64\": 4630, \"AGE_65_UP\": 2554, \"MED_AGE\": 33.100000, \"MED_AGE_M\": 32.000000, \"MED_AGE_F\": 34.300000, \"HOUSEHOLDS\": 11007, \"AVE_HH_SZ\": 2.620000, \"HSEHLD_1_M\": 998, \"HSEHLD_1_F\": 1345, \"MARHH_CHD\": 2929, \"MARHH_NO_C\": 3351, \"MHH_CHILD\": 277, \"FHH_CHILD\": 850, \"FAMILIES\": 8131, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 11462, \"VACANT\": 455, \"OWNER_OCC\": 7960, \"RENTER_OCC\": 3047 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.987297999980598, 34.966728999963976 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Starkville\", \"CLASS\": \"city\", \"ST\": \"MS\", \"STFIPS\": \"28\", \"PLACEFIP\": \"70240\", \"CAPITAL\": \"N\", \"AREALAND\": 25.687000, \"AREAWATER\": 0.153000, \"POP_CL\": 6, \"POP2000\": 21869, \"WHITE\": 14128, \"BLACK\": 6565, \"AMERI_ES\": 32, \"ASIAN\": 821, \"HAWN_PI\": 8, \"OTHER\": 141, \"MULT_RACE\": 174, \"HISPANIC\": 294, \"MALES\": 11041, \"FEMALES\": 10828, \"AGE_UNDER5\": 1326, \"AGE_5_17\": 3043, \"AGE_18_21\": 3394, \"AGE_22_29\": 5075, \"AGE_30_39\": 2585, \"AGE_40_49\": 2298, \"AGE_50_64\": 2270, \"AGE_65_UP\": 1878, \"MED_AGE\": 25.200000, \"MED_AGE_M\": 24.300000, \"MED_AGE_F\": 27.100000, \"HOUSEHOLDS\": 9462, \"AVE_HH_SZ\": 2.240000, \"HSEHLD_1_M\": 1474, \"HSEHLD_1_F\": 1567, \"MARHH_CHD\": 1385, \"MARHH_NO_C\": 1842, \"MHH_CHILD\": 98, \"FHH_CHILD\": 802, \"FAMILIES\": 4718, \"AVE_FAM_SZ\": 2.920000, \"HSE_UNITS\": 10191, \"VACANT\": 729, \"OWNER_OCC\": 3876, \"RENTER_OCC\": 5586 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.819989999836508, 33.462470999781644 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Tupelo\", \"CLASS\": \"city\", \"ST\": \"MS\", \"STFIPS\": \"28\", \"PLACEFIP\": \"74840\", \"CAPITAL\": \"N\", \"AREALAND\": 51.105000, \"AREAWATER\": 0.319000, \"POP_CL\": 6, \"POP2000\": 34211, \"WHITE\": 23744, \"BLACK\": 9676, \"AMERI_ES\": 35, \"ASIAN\": 301, \"HAWN_PI\": 5, \"OTHER\": 160, \"MULT_RACE\": 290, \"HISPANIC\": 484, \"MALES\": 16083, \"FEMALES\": 18128, \"AGE_UNDER5\": 2569, \"AGE_5_17\": 6835, \"AGE_18_21\": 1582, \"AGE_22_29\": 3687, \"AGE_30_39\": 5215, \"AGE_40_49\": 5064, \"AGE_50_64\": 5018, \"AGE_65_UP\": 4241, \"MED_AGE\": 34.900000, \"MED_AGE_M\": 32.800000, \"MED_AGE_F\": 36.500000, \"HOUSEHOLDS\": 13395, \"AVE_HH_SZ\": 2.470000, \"HSEHLD_1_M\": 1505, \"HSEHLD_1_F\": 2246, \"MARHH_CHD\": 3027, \"MARHH_NO_C\": 3441, \"MHH_CHILD\": 248, \"FHH_CHILD\": 1398, \"FAMILIES\": 9105, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 14551, \"VACANT\": 1156, \"OWNER_OCC\": 8335, \"RENTER_OCC\": 5060 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.725884999825681, 34.259584999731864 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Vicksburg\", \"CLASS\": \"city\", \"ST\": \"MS\", \"STFIPS\": \"28\", \"PLACEFIP\": \"76720\", \"CAPITAL\": \"N\", \"AREALAND\": 32.883000, \"AREAWATER\": 2.389000, \"POP_CL\": 6, \"POP2000\": 26407, \"WHITE\": 9982, \"BLACK\": 15957, \"AMERI_ES\": 40, \"ASIAN\": 160, \"HAWN_PI\": 4, \"OTHER\": 107, \"MULT_RACE\": 157, \"HISPANIC\": 274, \"MALES\": 11969, \"FEMALES\": 14438, \"AGE_UNDER5\": 2097, \"AGE_5_17\": 5399, \"AGE_18_21\": 1417, \"AGE_22_29\": 2899, \"AGE_30_39\": 3517, \"AGE_40_49\": 3724, \"AGE_50_64\": 3446, \"AGE_65_UP\": 3908, \"MED_AGE\": 34.300000, \"MED_AGE_M\": 31.800000, \"MED_AGE_F\": 36.100000, \"HOUSEHOLDS\": 10364, \"AVE_HH_SZ\": 2.490000, \"HSEHLD_1_M\": 1362, \"HSEHLD_1_F\": 1955, \"MARHH_CHD\": 1558, \"MARHH_NO_C\": 2055, \"MHH_CHILD\": 250, \"FHH_CHILD\": 1527, \"FAMILIES\": 6611, \"AVE_FAM_SZ\": 3.150000, \"HSE_UNITS\": 11654, \"VACANT\": 1290, \"OWNER_OCC\": 5844, \"RENTER_OCC\": 4520 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.875355999997609, 32.335985999995785 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"West Point\", \"CLASS\": \"city\", \"ST\": \"MS\", \"STFIPS\": \"28\", \"PLACEFIP\": \"79120\", \"CAPITAL\": \"N\", \"AREALAND\": 20.815000, \"AREAWATER\": 0.274000, \"POP_CL\": 6, \"POP2000\": 12145, \"WHITE\": 5211, \"BLACK\": 6823, \"AMERI_ES\": 9, \"ASIAN\": 27, \"HAWN_PI\": 0, \"OTHER\": 23, \"MULT_RACE\": 52, \"HISPANIC\": 120, \"MALES\": 5491, \"FEMALES\": 6654, \"AGE_UNDER5\": 932, \"AGE_5_17\": 2573, \"AGE_18_21\": 831, \"AGE_22_29\": 1274, \"AGE_30_39\": 1477, \"AGE_40_49\": 1675, \"AGE_50_64\": 1657, \"AGE_65_UP\": 1726, \"MED_AGE\": 33.200000, \"MED_AGE_M\": 30.200000, \"MED_AGE_F\": 35.600000, \"HOUSEHOLDS\": 4567, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 458, \"HSEHLD_1_F\": 792, \"MARHH_CHD\": 806, \"MARHH_NO_C\": 1061, \"MHH_CHILD\": 73, \"FHH_CHILD\": 744, \"FAMILIES\": 3219, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 4897, \"VACANT\": 330, \"OWNER_OCC\": 2912, \"RENTER_OCC\": 1655 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.652368999796579, 33.606154999720125 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Yazoo City\", \"CLASS\": \"city\", \"ST\": \"MS\", \"STFIPS\": \"28\", \"PLACEFIP\": \"81520\", \"CAPITAL\": \"N\", \"AREALAND\": 10.784000, \"AREAWATER\": 0.129000, \"POP_CL\": 6, \"POP2000\": 14550, \"WHITE\": 4180, \"BLACK\": 10138, \"AMERI_ES\": 26, \"ASIAN\": 85, \"HAWN_PI\": 0, \"OTHER\": 34, \"MULT_RACE\": 87, \"HISPANIC\": 1087, \"MALES\": 7691, \"FEMALES\": 6859, \"AGE_UNDER5\": 1114, \"AGE_5_17\": 3110, \"AGE_18_21\": 891, \"AGE_22_29\": 1736, \"AGE_30_39\": 2311, \"AGE_40_49\": 2008, \"AGE_50_64\": 1647, \"AGE_65_UP\": 1733, \"MED_AGE\": 31.800000, \"MED_AGE_M\": 31.000000, \"MED_AGE_F\": 33.000000, \"HOUSEHOLDS\": 4271, \"AVE_HH_SZ\": 2.850000, \"HSEHLD_1_M\": 431, \"HSEHLD_1_F\": 738, \"MARHH_CHD\": 598, \"MARHH_NO_C\": 747, \"MHH_CHILD\": 126, \"FHH_CHILD\": 886, \"FAMILIES\": 2969, \"AVE_FAM_SZ\": 3.490000, \"HSE_UNITS\": 4676, \"VACANT\": 405, \"OWNER_OCC\": 2389, \"RENTER_OCC\": 1882 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.407378999991593, 32.856457999987455 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Billings\", \"CLASS\": \"city\", \"ST\": \"MT\", \"STFIPS\": \"30\", \"PLACEFIP\": \"06550\", \"CAPITAL\": \"N\", \"AREALAND\": 33.712000, \"AREAWATER\": 0.106000, \"POP_CL\": 7, \"POP2000\": 89847, \"WHITE\": 82539, \"BLACK\": 495, \"AMERI_ES\": 3088, \"ASIAN\": 533, \"HAWN_PI\": 38, \"OTHER\": 1300, \"MULT_RACE\": 1854, \"HISPANIC\": 3758, \"MALES\": 43214, \"FEMALES\": 46633, \"AGE_UNDER5\": 5882, \"AGE_5_17\": 15707, \"AGE_18_21\": 5260, \"AGE_22_29\": 10029, \"AGE_30_39\": 12382, \"AGE_40_49\": 13894, \"AGE_50_64\": 13354, \"AGE_65_UP\": 13339, \"MED_AGE\": 36.800000, \"MED_AGE_M\": 35.300000, \"MED_AGE_F\": 38.400000, \"HOUSEHOLDS\": 37525, \"AVE_HH_SZ\": 2.320000, \"HSEHLD_1_M\": 4767, \"HSEHLD_1_F\": 6972, \"MARHH_CHD\": 7491, \"MARHH_NO_C\": 10238, \"MHH_CHILD\": 819, \"FHH_CHILD\": 2634, \"FAMILIES\": 23142, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 39293, \"VACANT\": 1768, \"OWNER_OCC\": 24025, \"RENTER_OCC\": 13500 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -108.53711607014921, 45.786553169133029 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bozeman\", \"CLASS\": \"city\", \"ST\": \"MT\", \"STFIPS\": \"30\", \"PLACEFIP\": \"08950\", \"CAPITAL\": \"N\", \"AREALAND\": 12.597000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 27509, \"WHITE\": 26058, \"BLACK\": 92, \"AMERI_ES\": 342, \"ASIAN\": 445, \"HAWN_PI\": 18, \"OTHER\": 149, \"MULT_RACE\": 405, \"HISPANIC\": 438, \"MALES\": 14481, \"FEMALES\": 13028, \"AGE_UNDER5\": 1366, \"AGE_5_17\": 3041, \"AGE_18_21\": 5746, \"AGE_22_29\": 6278, \"AGE_30_39\": 3309, \"AGE_40_49\": 3182, \"AGE_50_64\": 2387, \"AGE_65_UP\": 2200, \"MED_AGE\": 25.400000, \"MED_AGE_M\": 24.900000, \"MED_AGE_F\": 26.200000, \"HOUSEHOLDS\": 10877, \"AVE_HH_SZ\": 2.260000, \"HSEHLD_1_M\": 1620, \"HSEHLD_1_F\": 1687, \"MARHH_CHD\": 1748, \"MARHH_NO_C\": 2166, \"MHH_CHILD\": 132, \"FHH_CHILD\": 543, \"FAMILIES\": 5019, \"AVE_FAM_SZ\": 2.850000, \"HSE_UNITS\": 11577, \"VACANT\": 700, \"OWNER_OCC\": 4663, \"RENTER_OCC\": 6214 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.047179676919995, 45.677893567688251 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Butte-Silver Bow County\", \"CLASS\": \"city (consolidated, balance)\", \"ST\": \"MT\", \"STFIPS\": \"30\", \"PLACEFIP\": \"11397\", \"CAPITAL\": \"N\", \"AREALAND\": 716.108000, \"AREAWATER\": 0.665000, \"POP_CL\": 6, \"POP2000\": 33892, \"WHITE\": 32325, \"BLACK\": 53, \"AMERI_ES\": 675, \"ASIAN\": 147, \"HAWN_PI\": 21, \"OTHER\": 200, \"MULT_RACE\": 471, \"HISPANIC\": 927, \"MALES\": 16755, \"FEMALES\": 17137, \"AGE_UNDER5\": 1947, \"AGE_5_17\": 6070, \"AGE_18_21\": 1996, \"AGE_22_29\": 3082, \"AGE_30_39\": 4413, \"AGE_40_49\": 5451, \"AGE_50_64\": 5481, \"AGE_65_UP\": 5452, \"MED_AGE\": 38.900000, \"MED_AGE_M\": 37.500000, \"MED_AGE_F\": 40.300000, \"HOUSEHOLDS\": 14135, \"AVE_HH_SZ\": 2.320000, \"HSEHLD_1_M\": 2126, \"HSEHLD_1_F\": 2517, \"MARHH_CHD\": 2782, \"MARHH_NO_C\": 3964, \"MHH_CHILD\": 278, \"FHH_CHILD\": 884, \"FAMILIES\": 8736, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 15833, \"VACANT\": 1698, \"OWNER_OCC\": 9914, \"RENTER_OCC\": 4221 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -112.562329114301036, 45.960939415355377 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Great Falls\", \"CLASS\": \"city\", \"ST\": \"MT\", \"STFIPS\": \"30\", \"PLACEFIP\": \"32800\", \"CAPITAL\": \"N\", \"AREALAND\": 19.487000, \"AREAWATER\": 0.435000, \"POP_CL\": 7, \"POP2000\": 56690, \"WHITE\": 50996, \"BLACK\": 540, \"AMERI_ES\": 2888, \"ASIAN\": 485, \"HAWN_PI\": 49, \"OTHER\": 341, \"MULT_RACE\": 1391, \"HISPANIC\": 1354, \"MALES\": 27505, \"FEMALES\": 29185, \"AGE_UNDER5\": 3626, \"AGE_5_17\": 10512, \"AGE_18_21\": 2873, \"AGE_22_29\": 5521, \"AGE_30_39\": 7874, \"AGE_40_49\": 8541, \"AGE_50_64\": 8845, \"AGE_65_UP\": 8898, \"MED_AGE\": 37.800000, \"MED_AGE_M\": 36.300000, \"MED_AGE_F\": 39.200000, \"HOUSEHOLDS\": 23834, \"AVE_HH_SZ\": 2.310000, \"HSEHLD_1_M\": 3265, \"HSEHLD_1_F\": 4339, \"MARHH_CHD\": 4748, \"MARHH_NO_C\": 6541, \"MHH_CHILD\": 575, \"FHH_CHILD\": 1859, \"FAMILIES\": 14838, \"AVE_FAM_SZ\": 2.920000, \"HSE_UNITS\": 25250, \"VACANT\": 1416, \"OWNER_OCC\": 15019, \"RENTER_OCC\": 8815 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.286182150670868, 47.503661309191223 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Helena\", \"CLASS\": \"city\", \"ST\": \"MT\", \"STFIPS\": \"30\", \"PLACEFIP\": \"35600\", \"CAPITAL\": \"Y\", \"AREALAND\": 14.005000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 25780, \"WHITE\": 24434, \"BLACK\": 59, \"AMERI_ES\": 541, \"ASIAN\": 201, \"HAWN_PI\": 18, \"OTHER\": 98, \"MULT_RACE\": 429, \"HISPANIC\": 430, \"MALES\": 12283, \"FEMALES\": 13497, \"AGE_UNDER5\": 1501, \"AGE_5_17\": 4277, \"AGE_18_21\": 1754, \"AGE_22_29\": 2586, \"AGE_30_39\": 3227, \"AGE_40_49\": 4460, \"AGE_50_64\": 4391, \"AGE_65_UP\": 3584, \"MED_AGE\": 38.800000, \"MED_AGE_M\": 37.200000, \"MED_AGE_F\": 40.200000, \"HOUSEHOLDS\": 11541, \"AVE_HH_SZ\": 2.140000, \"HSEHLD_1_M\": 1833, \"HSEHLD_1_F\": 2491, \"MARHH_CHD\": 2048, \"MARHH_NO_C\": 2852, \"MHH_CHILD\": 230, \"FHH_CHILD\": 855, \"FAMILIES\": 6478, \"AVE_FAM_SZ\": 2.830000, \"HSE_UNITS\": 12133, \"VACANT\": 592, \"OWNER_OCC\": 6608, \"RENTER_OCC\": 4933 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -112.02686748169107, 46.595812326951673 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Kalispell\", \"CLASS\": \"city\", \"ST\": \"MT\", \"STFIPS\": \"30\", \"PLACEFIP\": \"40075\", \"CAPITAL\": \"N\", \"AREALAND\": 5.458000, \"AREAWATER\": 0.004000, \"POP_CL\": 6, \"POP2000\": 14223, \"WHITE\": 13632, \"BLACK\": 40, \"AMERI_ES\": 174, \"ASIAN\": 79, \"HAWN_PI\": 6, \"OTHER\": 56, \"MULT_RACE\": 236, \"HISPANIC\": 220, \"MALES\": 6644, \"FEMALES\": 7579, \"AGE_UNDER5\": 974, \"AGE_5_17\": 2438, \"AGE_18_21\": 819, \"AGE_22_29\": 1515, \"AGE_30_39\": 1832, \"AGE_40_49\": 2140, \"AGE_50_64\": 1902, \"AGE_65_UP\": 2603, \"MED_AGE\": 37.700000, \"MED_AGE_M\": 34.500000, \"MED_AGE_F\": 40.600000, \"HOUSEHOLDS\": 6142, \"AVE_HH_SZ\": 2.210000, \"HSEHLD_1_M\": 815, \"HSEHLD_1_F\": 1448, \"MARHH_CHD\": 1146, \"MARHH_NO_C\": 1433, \"MHH_CHILD\": 147, \"FHH_CHILD\": 480, \"FAMILIES\": 3494, \"AVE_FAM_SZ\": 2.920000, \"HSE_UNITS\": 6532, \"VACANT\": 390, \"OWNER_OCC\": 3458, \"RENTER_OCC\": 2684 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -114.315542719592557, 48.197831283925616 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Missoula\", \"CLASS\": \"city\", \"ST\": \"MT\", \"STFIPS\": \"30\", \"PLACEFIP\": \"50200\", \"CAPITAL\": \"N\", \"AREALAND\": 23.801000, \"AREAWATER\": 0.111000, \"POP_CL\": 7, \"POP2000\": 57053, \"WHITE\": 53387, \"BLACK\": 207, \"AMERI_ES\": 1341, \"ASIAN\": 703, \"HAWN_PI\": 57, \"OTHER\": 290, \"MULT_RACE\": 1068, \"HISPANIC\": 1004, \"MALES\": 28352, \"FEMALES\": 28701, \"AGE_UNDER5\": 3043, \"AGE_5_17\": 8212, \"AGE_18_21\": 6968, \"AGE_22_29\": 9998, \"AGE_30_39\": 7636, \"AGE_40_49\": 8141, \"AGE_50_64\": 7133, \"AGE_65_UP\": 5922, \"MED_AGE\": 30.300000, \"MED_AGE_M\": 29.400000, \"MED_AGE_F\": 31.500000, \"HOUSEHOLDS\": 24141, \"AVE_HH_SZ\": 2.230000, \"HSEHLD_1_M\": 3712, \"HSEHLD_1_F\": 4398, \"MARHH_CHD\": 3917, \"MARHH_NO_C\": 5231, \"MHH_CHILD\": 437, \"FHH_CHILD\": 1594, \"FAMILIES\": 12327, \"AVE_FAM_SZ\": 2.880000, \"HSE_UNITS\": 25225, \"VACANT\": 1084, \"OWNER_OCC\": 12130, \"RENTER_OCC\": 12011 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -114.01116287481679, 46.862658218739313 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Albemarle\", \"CLASS\": \"city\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"00680\", \"CAPITAL\": \"N\", \"AREALAND\": 15.695000, \"AREAWATER\": 0.073000, \"POP_CL\": 6, \"POP2000\": 15680, \"WHITE\": 11423, \"BLACK\": 3215, \"AMERI_ES\": 37, \"ASIAN\": 653, \"HAWN_PI\": 5, \"OTHER\": 168, \"MULT_RACE\": 179, \"HISPANIC\": 293, \"MALES\": 7322, \"FEMALES\": 8358, \"AGE_UNDER5\": 1093, \"AGE_5_17\": 2982, \"AGE_18_21\": 746, \"AGE_22_29\": 1527, \"AGE_30_39\": 2183, \"AGE_40_49\": 2056, \"AGE_50_64\": 2359, \"AGE_65_UP\": 2734, \"MED_AGE\": 36.900000, \"MED_AGE_M\": 34.700000, \"MED_AGE_F\": 38.800000, \"HOUSEHOLDS\": 6291, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 690, \"HSEHLD_1_F\": 1223, \"MARHH_CHD\": 1247, \"MARHH_NO_C\": 1759, \"MHH_CHILD\": 130, \"FHH_CHILD\": 551, \"FAMILIES\": 4157, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 6954, \"VACANT\": 663, \"OWNER_OCC\": 3977, \"RENTER_OCC\": 2314 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.195263703114207, 35.358359916966705 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Apex\", \"CLASS\": \"town\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"01520\", \"CAPITAL\": \"N\", \"AREALAND\": 10.537000, \"AREAWATER\": 0.060000, \"POP_CL\": 6, \"POP2000\": 20212, \"WHITE\": 17192, \"BLACK\": 1526, \"AMERI_ES\": 58, \"ASIAN\": 863, \"HAWN_PI\": 12, \"OTHER\": 224, \"MULT_RACE\": 337, \"HISPANIC\": 648, \"MALES\": 9993, \"FEMALES\": 10219, \"AGE_UNDER5\": 2104, \"AGE_5_17\": 4126, \"AGE_18_21\": 481, \"AGE_22_29\": 2754, \"AGE_30_39\": 5070, \"AGE_40_49\": 3138, \"AGE_50_64\": 1731, \"AGE_65_UP\": 808, \"MED_AGE\": 31.200000, \"MED_AGE_M\": 30.800000, \"MED_AGE_F\": 31.600000, \"HOUSEHOLDS\": 7397, \"AVE_HH_SZ\": 2.730000, \"HSEHLD_1_M\": 594, \"HSEHLD_1_F\": 777, \"MARHH_CHD\": 2956, \"MARHH_NO_C\": 1942, \"MHH_CHILD\": 82, \"FHH_CHILD\": 369, \"FAMILIES\": 5587, \"AVE_FAM_SZ\": 3.160000, \"HSE_UNITS\": 8028, \"VACANT\": 631, \"OWNER_OCC\": 5626, \"RENTER_OCC\": 1771 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -78.852882715096712, 35.731951978576582 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Asheboro\", \"CLASS\": \"city\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"02080\", \"CAPITAL\": \"N\", \"AREALAND\": 15.343000, \"AREAWATER\": 0.090000, \"POP_CL\": 6, \"POP2000\": 21672, \"WHITE\": 16577, \"BLACK\": 2618, \"AMERI_ES\": 110, \"ASIAN\": 301, \"HAWN_PI\": 3, \"OTHER\": 1673, \"MULT_RACE\": 390, \"HISPANIC\": 4319, \"MALES\": 10605, \"FEMALES\": 11067, \"AGE_UNDER5\": 1631, \"AGE_5_17\": 3594, \"AGE_18_21\": 1224, \"AGE_22_29\": 2956, \"AGE_30_39\": 3301, \"AGE_40_49\": 2693, \"AGE_50_64\": 3002, \"AGE_65_UP\": 3271, \"MED_AGE\": 34.000000, \"MED_AGE_M\": 32.000000, \"MED_AGE_F\": 36.400000, \"HOUSEHOLDS\": 8756, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 1058, \"HSEHLD_1_F\": 1711, \"MARHH_CHD\": 1778, \"MARHH_NO_C\": 2243, \"MHH_CHILD\": 187, \"FHH_CHILD\": 681, \"FAMILIES\": 5514, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 9515, \"VACANT\": 759, \"OWNER_OCC\": 4736, \"RENTER_OCC\": 4020 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.813003356853258, 35.715210919391438 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Asheville\", \"CLASS\": \"city\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"02140\", \"CAPITAL\": \"N\", \"AREALAND\": 40.922000, \"AREAWATER\": 0.388000, \"POP_CL\": 7, \"POP2000\": 68889, \"WHITE\": 53701, \"BLACK\": 12129, \"AMERI_ES\": 240, \"ASIAN\": 635, \"HAWN_PI\": 39, \"OTHER\": 1054, \"MULT_RACE\": 1091, \"HISPANIC\": 2589, \"MALES\": 32207, \"FEMALES\": 36682, \"AGE_UNDER5\": 3699, \"AGE_5_17\": 9793, \"AGE_18_21\": 4011, \"AGE_22_29\": 8177, \"AGE_30_39\": 9584, \"AGE_40_49\": 10189, \"AGE_50_64\": 10839, \"AGE_65_UP\": 12597, \"MED_AGE\": 39.200000, \"MED_AGE_M\": 36.400000, \"MED_AGE_F\": 41.800000, \"HOUSEHOLDS\": 30690, \"AVE_HH_SZ\": 2.140000, \"HSEHLD_1_M\": 4152, \"HSEHLD_1_F\": 7145, \"MARHH_CHD\": 4040, \"MARHH_NO_C\": 7652, \"MHH_CHILD\": 492, \"FHH_CHILD\": 2273, \"FAMILIES\": 16737, \"AVE_FAM_SZ\": 2.810000, \"HSE_UNITS\": 33567, \"VACANT\": 2877, \"OWNER_OCC\": 17428, \"RENTER_OCC\": 13262 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.555810220068238, 35.579861951682048 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Boone\", \"CLASS\": \"town\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"07080\", \"CAPITAL\": \"N\", \"AREALAND\": 5.840000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 13472, \"WHITE\": 12661, \"BLACK\": 461, \"AMERI_ES\": 40, \"ASIAN\": 160, \"HAWN_PI\": 7, \"OTHER\": 62, \"MULT_RACE\": 81, \"HISPANIC\": 221, \"MALES\": 6586, \"FEMALES\": 6886, \"AGE_UNDER5\": 192, \"AGE_5_17\": 593, \"AGE_18_21\": 6921, \"AGE_22_29\": 2663, \"AGE_30_39\": 615, \"AGE_40_49\": 650, \"AGE_50_64\": 888, \"AGE_65_UP\": 950, \"MED_AGE\": 21.400000, \"MED_AGE_M\": 21.500000, \"MED_AGE_F\": 21.300000, \"HOUSEHOLDS\": 4374, \"AVE_HH_SZ\": 1.970000, \"HSEHLD_1_M\": 780, \"HSEHLD_1_F\": 901, \"MARHH_CHD\": 288, \"MARHH_NO_C\": 632, \"MHH_CHILD\": 29, \"FHH_CHILD\": 101, \"FAMILIES\": 1239, \"AVE_FAM_SZ\": 2.630000, \"HSE_UNITS\": 4748, \"VACANT\": 374, \"OWNER_OCC\": 1290, \"RENTER_OCC\": 3084 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.668657544997842, 36.211363928782482 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Burlington\", \"CLASS\": \"city\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"09060\", \"CAPITAL\": \"N\", \"AREALAND\": 21.278000, \"AREAWATER\": 0.065000, \"POP_CL\": 6, \"POP2000\": 44917, \"WHITE\": 29766, \"BLACK\": 11252, \"AMERI_ES\": 154, \"ASIAN\": 766, \"HAWN_PI\": 16, \"OTHER\": 2316, \"MULT_RACE\": 647, \"HISPANIC\": 4525, \"MALES\": 21114, \"FEMALES\": 23803, \"AGE_UNDER5\": 2935, \"AGE_5_17\": 7728, \"AGE_18_21\": 2130, \"AGE_22_29\": 5192, \"AGE_30_39\": 6541, \"AGE_40_49\": 6171, \"AGE_50_64\": 6603, \"AGE_65_UP\": 7617, \"MED_AGE\": 36.900000, \"MED_AGE_M\": 34.700000, \"MED_AGE_F\": 39.000000, \"HOUSEHOLDS\": 18280, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 2059, \"HSEHLD_1_F\": 3488, \"MARHH_CHD\": 3354, \"MARHH_NO_C\": 4894, \"MHH_CHILD\": 341, \"FHH_CHILD\": 1604, \"FAMILIES\": 11750, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 19567, \"VACANT\": 1287, \"OWNER_OCC\": 10856, \"RENTER_OCC\": 7424 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.445581194644561, 36.089635928896577 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Carrboro\", \"CLASS\": \"town\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"10620\", \"CAPITAL\": \"N\", \"AREALAND\": 4.471000, \"AREAWATER\": 0.013000, \"POP_CL\": 6, \"POP2000\": 16782, \"WHITE\": 12195, \"BLACK\": 2273, \"AMERI_ES\": 61, \"ASIAN\": 864, \"HAWN_PI\": 1, \"OTHER\": 982, \"MULT_RACE\": 406, \"HISPANIC\": 2062, \"MALES\": 8164, \"FEMALES\": 8618, \"AGE_UNDER5\": 905, \"AGE_5_17\": 2279, \"AGE_18_21\": 1604, \"AGE_22_29\": 4474, \"AGE_30_39\": 3055, \"AGE_40_49\": 2267, \"AGE_50_64\": 1340, \"AGE_65_UP\": 858, \"MED_AGE\": 28.100000, \"MED_AGE_M\": 28.000000, \"MED_AGE_F\": 28.200000, \"HOUSEHOLDS\": 7570, \"AVE_HH_SZ\": 2.200000, \"HSEHLD_1_M\": 1233, \"HSEHLD_1_F\": 1579, \"MARHH_CHD\": 1216, \"MARHH_NO_C\": 1003, \"MHH_CHILD\": 81, \"FHH_CHILD\": 444, \"FAMILIES\": 3130, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 8207, \"VACANT\": 637, \"OWNER_OCC\": 2383, \"RENTER_OCC\": 5187 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.083937076942789, 35.920421954379208 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cary\", \"CLASS\": \"town\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"10740\", \"CAPITAL\": \"N\", \"AREALAND\": 42.091000, \"AREAWATER\": 1.376000, \"POP_CL\": 7, \"POP2000\": 94536, \"WHITE\": 77683, \"BLACK\": 5813, \"AMERI_ES\": 251, \"ASIAN\": 7643, \"HAWN_PI\": 28, \"OTHER\": 1392, \"MULT_RACE\": 1726, \"HISPANIC\": 4047, \"MALES\": 47075, \"FEMALES\": 47461, \"AGE_UNDER5\": 7619, \"AGE_5_17\": 19855, \"AGE_18_21\": 3065, \"AGE_22_29\": 10430, \"AGE_30_39\": 19396, \"AGE_40_49\": 17391, \"AGE_50_64\": 11711, \"AGE_65_UP\": 5069, \"MED_AGE\": 33.700000, \"MED_AGE_M\": 33.100000, \"MED_AGE_F\": 34.200000, \"HOUSEHOLDS\": 34906, \"AVE_HH_SZ\": 2.690000, \"HSEHLD_1_M\": 3376, \"HSEHLD_1_F\": 3966, \"MARHH_CHD\": 12633, \"MARHH_NO_C\": 9446, \"MHH_CHILD\": 440, \"FHH_CHILD\": 1489, \"FAMILIES\": 25146, \"AVE_FAM_SZ\": 3.180000, \"HSE_UNITS\": 36863, \"VACANT\": 1957, \"OWNER_OCC\": 25416, \"RENTER_OCC\": 9490 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -78.800212909827579, 35.778918984088456 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Chapel Hill\", \"CLASS\": \"town\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"11800\", \"CAPITAL\": \"N\", \"AREALAND\": 19.755000, \"AREAWATER\": 0.069000, \"POP_CL\": 6, \"POP2000\": 48715, \"WHITE\": 37973, \"BLACK\": 5565, \"AMERI_ES\": 203, \"ASIAN\": 3497, \"HAWN_PI\": 12, \"OTHER\": 563, \"MULT_RACE\": 902, \"HISPANIC\": 1564, \"MALES\": 21961, \"FEMALES\": 26754, \"AGE_UNDER5\": 1754, \"AGE_5_17\": 5592, \"AGE_18_21\": 13706, \"AGE_22_29\": 8449, \"AGE_30_39\": 5283, \"AGE_40_49\": 5167, \"AGE_50_64\": 4843, \"AGE_65_UP\": 3921, \"MED_AGE\": 24.000000, \"MED_AGE_M\": 24.800000, \"MED_AGE_F\": 23.200000, \"HOUSEHOLDS\": 17808, \"AVE_HH_SZ\": 2.220000, \"HSEHLD_1_M\": 2164, \"HSEHLD_1_F\": 3386, \"MARHH_CHD\": 2967, \"MARHH_NO_C\": 3486, \"MHH_CHILD\": 139, \"FHH_CHILD\": 889, \"FAMILIES\": 8139, \"AVE_FAM_SZ\": 2.880000, \"HSE_UNITS\": 18976, \"VACANT\": 1168, \"OWNER_OCC\": 7632, \"RENTER_OCC\": 10176 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.039470208577981, 35.92592095813005 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Charlotte\", \"CLASS\": \"city\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"12000\", \"CAPITAL\": \"N\", \"AREALAND\": 242.267000, \"AREAWATER\": 0.598000, \"POP_CL\": 9, \"POP2000\": 540828, \"WHITE\": 315061, \"BLACK\": 176964, \"AMERI_ES\": 1863, \"ASIAN\": 18418, \"HAWN_PI\": 283, \"OTHER\": 19242, \"MULT_RACE\": 8997, \"HISPANIC\": 39800, \"MALES\": 264978, \"FEMALES\": 275850, \"AGE_UNDER5\": 38529, \"AGE_5_17\": 95106, \"AGE_18_21\": 29229, \"AGE_22_29\": 79897, \"AGE_30_39\": 98495, \"AGE_40_49\": 81538, \"AGE_50_64\": 70369, \"AGE_65_UP\": 47665, \"MED_AGE\": 32.700000, \"MED_AGE_M\": 31.500000, \"MED_AGE_F\": 33.900000, \"HOUSEHOLDS\": 215449, \"AVE_HH_SZ\": 2.450000, \"HSEHLD_1_M\": 27758, \"HSEHLD_1_F\": 35843, \"MARHH_CHD\": 44268, \"MARHH_NO_C\": 49702, \"MHH_CHILD\": 3799, \"FHH_CHILD\": 17962, \"FAMILIES\": 132378, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 230434, \"VACANT\": 14985, \"OWNER_OCC\": 123883, \"RENTER_OCC\": 91566 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.82922500973838, 35.207192920369032 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Clemmons\", \"CLASS\": \"village\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"12960\", \"CAPITAL\": \"N\", \"AREALAND\": 10.709000, \"AREAWATER\": 0.129000, \"POP_CL\": 6, \"POP2000\": 13827, \"WHITE\": 12426, \"BLACK\": 721, \"AMERI_ES\": 12, \"ASIAN\": 291, \"HAWN_PI\": 3, \"OTHER\": 243, \"MULT_RACE\": 131, \"HISPANIC\": 490, \"MALES\": 6651, \"FEMALES\": 7176, \"AGE_UNDER5\": 880, \"AGE_5_17\": 2672, \"AGE_18_21\": 468, \"AGE_22_29\": 1127, \"AGE_30_39\": 2181, \"AGE_40_49\": 2456, \"AGE_50_64\": 2424, \"AGE_65_UP\": 1619, \"MED_AGE\": 38.300000, \"MED_AGE_M\": 37.400000, \"MED_AGE_F\": 39.100000, \"HOUSEHOLDS\": 5291, \"AVE_HH_SZ\": 2.560000, \"HSEHLD_1_M\": 431, \"HSEHLD_1_F\": 682, \"MARHH_CHD\": 1585, \"MARHH_NO_C\": 1828, \"MHH_CHILD\": 62, \"FHH_CHILD\": 271, \"FAMILIES\": 3945, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 5614, \"VACANT\": 323, \"OWNER_OCC\": 4237, \"RENTER_OCC\": 1054 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.386414561900722, 36.025231910590044 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Concord\", \"CLASS\": \"city\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"14100\", \"CAPITAL\": \"N\", \"AREALAND\": 51.578000, \"AREAWATER\": 0.012000, \"POP_CL\": 7, \"POP2000\": 55977, \"WHITE\": 44128, \"BLACK\": 8450, \"AMERI_ES\": 168, \"ASIAN\": 684, \"HAWN_PI\": 14, \"OTHER\": 1874, \"MULT_RACE\": 659, \"HISPANIC\": 4369, \"MALES\": 27345, \"FEMALES\": 28632, \"AGE_UNDER5\": 4399, \"AGE_5_17\": 10270, \"AGE_18_21\": 2771, \"AGE_22_29\": 7024, \"AGE_30_39\": 9528, \"AGE_40_49\": 8060, \"AGE_50_64\": 7714, \"AGE_65_UP\": 6211, \"MED_AGE\": 33.600000, \"MED_AGE_M\": 32.500000, \"MED_AGE_F\": 34.900000, \"HOUSEHOLDS\": 20962, \"AVE_HH_SZ\": 2.610000, \"HSEHLD_1_M\": 2129, \"HSEHLD_1_F\": 2810, \"MARHH_CHD\": 5503, \"MARHH_NO_C\": 6177, \"MHH_CHILD\": 453, \"FHH_CHILD\": 1414, \"FAMILIES\": 14979, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 22485, \"VACANT\": 1523, \"OWNER_OCC\": 14179, \"RENTER_OCC\": 6783 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.600475241155209, 35.404339916766759 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cornelius\", \"CLASS\": \"town\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"14700\", \"CAPITAL\": \"N\", \"AREALAND\": 8.456000, \"AREAWATER\": 0.285000, \"POP_CL\": 6, \"POP2000\": 11969, \"WHITE\": 10969, \"BLACK\": 673, \"AMERI_ES\": 25, \"ASIAN\": 148, \"HAWN_PI\": 6, \"OTHER\": 60, \"MULT_RACE\": 88, \"HISPANIC\": 334, \"MALES\": 6069, \"FEMALES\": 5900, \"AGE_UNDER5\": 797, \"AGE_5_17\": 1884, \"AGE_18_21\": 357, \"AGE_22_29\": 1204, \"AGE_30_39\": 2342, \"AGE_40_49\": 2215, \"AGE_50_64\": 2224, \"AGE_65_UP\": 946, \"MED_AGE\": 37.400000, \"MED_AGE_M\": 37.000000, \"MED_AGE_F\": 37.900000, \"HOUSEHOLDS\": 5113, \"AVE_HH_SZ\": 2.340000, \"HSEHLD_1_M\": 715, \"HSEHLD_1_F\": 665, \"MARHH_CHD\": 1168, \"MARHH_NO_C\": 1736, \"MHH_CHILD\": 62, \"FHH_CHILD\": 207, \"FAMILIES\": 3377, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 5716, \"VACANT\": 603, \"OWNER_OCC\": 3890, \"RENTER_OCC\": 1223 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.884532991275634, 35.478953919015332 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Durham\", \"CLASS\": \"city\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"19000\", \"CAPITAL\": \"N\", \"AREALAND\": 94.633000, \"AREAWATER\": 0.283000, \"POP_CL\": 8, \"POP2000\": 187035, \"WHITE\": 85126, \"BLACK\": 81937, \"AMERI_ES\": 575, \"ASIAN\": 6815, \"HAWN_PI\": 71, \"OTHER\": 8875, \"MULT_RACE\": 3636, \"HISPANIC\": 16012, \"MALES\": 89884, \"FEMALES\": 97151, \"AGE_UNDER5\": 13419, \"AGE_5_17\": 29471, \"AGE_18_21\": 15089, \"AGE_22_29\": 31298, \"AGE_30_39\": 32951, \"AGE_40_49\": 25622, \"AGE_50_64\": 21770, \"AGE_65_UP\": 17415, \"MED_AGE\": 31.000000, \"MED_AGE_M\": 29.900000, \"MED_AGE_F\": 32.300000, \"HOUSEHOLDS\": 74981, \"AVE_HH_SZ\": 2.370000, \"HSEHLD_1_M\": 9677, \"HSEHLD_1_F\": 14218, \"MARHH_CHD\": 12842, \"MARHH_NO_C\": 15783, \"MHH_CHILD\": 1196, \"FHH_CHILD\": 7446, \"FAMILIES\": 43558, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 80797, \"VACANT\": 5816, \"OWNER_OCC\": 36645, \"RENTER_OCC\": 38336 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -78.907171641179218, 35.988643970134838 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Eden\", \"CLASS\": \"city\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"20080\", \"CAPITAL\": \"N\", \"AREALAND\": 15.007000, \"AREAWATER\": 0.171000, \"POP_CL\": 6, \"POP2000\": 15908, \"WHITE\": 12000, \"BLACK\": 3524, \"AMERI_ES\": 33, \"ASIAN\": 49, \"HAWN_PI\": 9, \"OTHER\": 164, \"MULT_RACE\": 129, \"HISPANIC\": 372, \"MALES\": 7308, \"FEMALES\": 8600, \"AGE_UNDER5\": 984, \"AGE_5_17\": 2695, \"AGE_18_21\": 654, \"AGE_22_29\": 1661, \"AGE_30_39\": 2150, \"AGE_40_49\": 2218, \"AGE_50_64\": 2502, \"AGE_65_UP\": 3044, \"MED_AGE\": 39.200000, \"MED_AGE_M\": 36.200000, \"MED_AGE_F\": 41.500000, \"HOUSEHOLDS\": 6644, \"AVE_HH_SZ\": 2.340000, \"HSEHLD_1_M\": 758, \"HSEHLD_1_F\": 1299, \"MARHH_CHD\": 1139, \"MARHH_NO_C\": 1850, \"MHH_CHILD\": 134, \"FHH_CHILD\": 586, \"FAMILIES\": 4373, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 7368, \"VACANT\": 724, \"OWNER_OCC\": 4272, \"RENTER_OCC\": 2372 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.745094660516799, 36.506433913092096 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Elizabeth City\", \"CLASS\": \"city\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"20580\", \"CAPITAL\": \"N\", \"AREALAND\": 8.937000, \"AREAWATER\": 0.625000, \"POP_CL\": 6, \"POP2000\": 17188, \"WHITE\": 6917, \"BLACK\": 9729, \"AMERI_ES\": 47, \"ASIAN\": 136, \"HAWN_PI\": 2, \"OTHER\": 106, \"MULT_RACE\": 251, \"HISPANIC\": 258, \"MALES\": 7740, \"FEMALES\": 9448, \"AGE_UNDER5\": 1216, \"AGE_5_17\": 3208, \"AGE_18_21\": 1740, \"AGE_22_29\": 1863, \"AGE_30_39\": 2193, \"AGE_40_49\": 2079, \"AGE_50_64\": 2198, \"AGE_65_UP\": 2691, \"MED_AGE\": 32.900000, \"MED_AGE_M\": 29.100000, \"MED_AGE_F\": 35.700000, \"HOUSEHOLDS\": 6577, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 723, \"HSEHLD_1_F\": 1364, \"MARHH_CHD\": 997, \"MARHH_NO_C\": 1419, \"MHH_CHILD\": 117, \"FHH_CHILD\": 1013, \"FAMILIES\": 4188, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 7463, \"VACANT\": 886, \"OWNER_OCC\": 3262, \"RENTER_OCC\": 3315 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.224980011991434, 36.295586158065163 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fayetteville\", \"CLASS\": \"city\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"22920\", \"CAPITAL\": \"N\", \"AREALAND\": 58.767000, \"AREAWATER\": 1.194000, \"POP_CL\": 8, \"POP2000\": 121015, \"WHITE\": 59007, \"BLACK\": 51338, \"AMERI_ES\": 1331, \"ASIAN\": 2653, \"HAWN_PI\": 264, \"OTHER\": 3062, \"MULT_RACE\": 3360, \"HISPANIC\": 6862, \"MALES\": 57967, \"FEMALES\": 63048, \"AGE_UNDER5\": 9128, \"AGE_5_17\": 21604, \"AGE_18_21\": 8794, \"AGE_22_29\": 17423, \"AGE_30_39\": 18243, \"AGE_40_49\": 16391, \"AGE_50_64\": 16163, \"AGE_65_UP\": 13269, \"MED_AGE\": 31.900000, \"MED_AGE_M\": 30.200000, \"MED_AGE_F\": 33.800000, \"HOUSEHOLDS\": 48414, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 6256, \"HSEHLD_1_F\": 7418, \"MARHH_CHD\": 9297, \"MARHH_NO_C\": 12361, \"MHH_CHILD\": 958, \"FHH_CHILD\": 5143, \"FAMILIES\": 31682, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 53565, \"VACANT\": 5151, \"OWNER_OCC\": 25815, \"RENTER_OCC\": 22599 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -78.917583254234458, 35.066662978042928 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fort Bragg\", \"CLASS\": \"CDP\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"24260\", \"CAPITAL\": \"N\", \"AREALAND\": 18.949000, \"AREAWATER\": 0.058000, \"POP_CL\": 6, \"POP2000\": 29183, \"WHITE\": 16942, \"BLACK\": 7368, \"AMERI_ES\": 336, \"ASIAN\": 536, \"HAWN_PI\": 255, \"OTHER\": 2419, \"MULT_RACE\": 1327, \"HISPANIC\": 4603, \"MALES\": 19980, \"FEMALES\": 9203, \"AGE_UNDER5\": 3247, \"AGE_5_17\": 4272, \"AGE_18_21\": 7184, \"AGE_22_29\": 9403, \"AGE_30_39\": 4238, \"AGE_40_49\": 714, \"AGE_50_64\": 108, \"AGE_65_UP\": 17, \"MED_AGE\": 22.000000, \"MED_AGE_M\": 22.000000, \"MED_AGE_F\": 21.500000, \"HOUSEHOLDS\": 4315, \"AVE_HH_SZ\": 3.720000, \"HSEHLD_1_M\": 71, \"HSEHLD_1_F\": 19, \"MARHH_CHD\": 3308, \"MARHH_NO_C\": 529, \"MHH_CHILD\": 66, \"FHH_CHILD\": 306, \"FAMILIES\": 4217, \"AVE_FAM_SZ\": 3.740000, \"HSE_UNITS\": 4420, \"VACANT\": 105, \"OWNER_OCC\": 54, \"RENTER_OCC\": 4261 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -78.999147043045895, 35.139063969514602 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Garner\", \"CLASS\": \"town\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"25480\", \"CAPITAL\": \"N\", \"AREALAND\": 12.820000, \"AREAWATER\": 0.757000, \"POP_CL\": 6, \"POP2000\": 17757, \"WHITE\": 11901, \"BLACK\": 4817, \"AMERI_ES\": 73, \"ASIAN\": 197, \"HAWN_PI\": 4, \"OTHER\": 492, \"MULT_RACE\": 273, \"HISPANIC\": 843, \"MALES\": 8581, \"FEMALES\": 9176, \"AGE_UNDER5\": 1198, \"AGE_5_17\": 3244, \"AGE_18_21\": 773, \"AGE_22_29\": 1964, \"AGE_30_39\": 3062, \"AGE_40_49\": 2949, \"AGE_50_64\": 2633, \"AGE_65_UP\": 1934, \"MED_AGE\": 35.800000, \"MED_AGE_M\": 34.000000, \"MED_AGE_F\": 37.300000, \"HOUSEHOLDS\": 6950, \"AVE_HH_SZ\": 2.510000, \"HSEHLD_1_M\": 653, \"HSEHLD_1_F\": 1031, \"MARHH_CHD\": 1704, \"MARHH_NO_C\": 2017, \"MHH_CHILD\": 121, \"FHH_CHILD\": 538, \"FAMILIES\": 4832, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 7252, \"VACANT\": 302, \"OWNER_OCC\": 4805, \"RENTER_OCC\": 2145 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -78.622870507413907, 35.698243007807505 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Gastonia\", \"CLASS\": \"city\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"25580\", \"CAPITAL\": \"N\", \"AREALAND\": 46.061000, \"AREAWATER\": 0.199000, \"POP_CL\": 7, \"POP2000\": 66277, \"WHITE\": 46513, \"BLACK\": 16981, \"AMERI_ES\": 137, \"ASIAN\": 773, \"HAWN_PI\": 19, \"OTHER\": 1167, \"MULT_RACE\": 687, \"HISPANIC\": 3613, \"MALES\": 31325, \"FEMALES\": 34952, \"AGE_UNDER5\": 4660, \"AGE_5_17\": 11884, \"AGE_18_21\": 3157, \"AGE_22_29\": 7847, \"AGE_30_39\": 10051, \"AGE_40_49\": 9578, \"AGE_50_64\": 9960, \"AGE_65_UP\": 9140, \"MED_AGE\": 35.600000, \"MED_AGE_M\": 33.800000, \"MED_AGE_F\": 37.300000, \"HOUSEHOLDS\": 25945, \"AVE_HH_SZ\": 2.500000, \"HSEHLD_1_M\": 2752, \"HSEHLD_1_F\": 4112, \"MARHH_CHD\": 5045, \"MARHH_NO_C\": 7233, \"MHH_CHILD\": 546, \"FHH_CHILD\": 2358, \"FAMILIES\": 17709, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 27857, \"VACANT\": 1912, \"OWNER_OCC\": 14716, \"RENTER_OCC\": 11229 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.180249755342345, 35.255219925043725 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Goldsboro\", \"CLASS\": \"city\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"26880\", \"CAPITAL\": \"N\", \"AREALAND\": 24.790000, \"AREAWATER\": 0.020000, \"POP_CL\": 6, \"POP2000\": 39043, \"WHITE\": 16803, \"BLACK\": 20397, \"AMERI_ES\": 168, \"ASIAN\": 562, \"HAWN_PI\": 30, \"OTHER\": 444, \"MULT_RACE\": 639, \"HISPANIC\": 1052, \"MALES\": 19213, \"FEMALES\": 19830, \"AGE_UNDER5\": 2782, \"AGE_5_17\": 7007, \"AGE_18_21\": 2441, \"AGE_22_29\": 4993, \"AGE_30_39\": 5723, \"AGE_40_49\": 5530, \"AGE_50_64\": 5199, \"AGE_65_UP\": 5368, \"MED_AGE\": 34.300000, \"MED_AGE_M\": 31.800000, \"MED_AGE_F\": 36.900000, \"HOUSEHOLDS\": 14630, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 1737, \"HSEHLD_1_F\": 2720, \"MARHH_CHD\": 2592, \"MARHH_NO_C\": 3417, \"MHH_CHILD\": 241, \"FHH_CHILD\": 1859, \"FAMILIES\": 9466, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 16372, \"VACANT\": 1742, \"OWNER_OCC\": 6225, \"RENTER_OCC\": 8405 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.977982244973688, 35.381961138072796 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Graham\", \"CLASS\": \"city\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"27280\", \"CAPITAL\": \"N\", \"AREALAND\": 8.126000, \"AREAWATER\": 0.005000, \"POP_CL\": 6, \"POP2000\": 12833, \"WHITE\": 9353, \"BLACK\": 2777, \"AMERI_ES\": 56, \"ASIAN\": 94, \"HAWN_PI\": 0, \"OTHER\": 409, \"MULT_RACE\": 144, \"HISPANIC\": 1301, \"MALES\": 6083, \"FEMALES\": 6750, \"AGE_UNDER5\": 964, \"AGE_5_17\": 2111, \"AGE_18_21\": 661, \"AGE_22_29\": 1745, \"AGE_30_39\": 2060, \"AGE_40_49\": 1678, \"AGE_50_64\": 1800, \"AGE_65_UP\": 1814, \"MED_AGE\": 34.400000, \"MED_AGE_M\": 32.400000, \"MED_AGE_F\": 36.500000, \"HOUSEHOLDS\": 5241, \"AVE_HH_SZ\": 2.370000, \"HSEHLD_1_M\": 606, \"HSEHLD_1_F\": 969, \"MARHH_CHD\": 899, \"MARHH_NO_C\": 1407, \"MHH_CHILD\": 127, \"FHH_CHILD\": 543, \"FAMILIES\": 3385, \"AVE_FAM_SZ\": 2.910000, \"HSE_UNITS\": 5685, \"VACANT\": 444, \"OWNER_OCC\": 2897, \"RENTER_OCC\": 2344 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.39794429941756, 36.064485931607734 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Greensboro\", \"CLASS\": \"city\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"28000\", \"CAPITAL\": \"N\", \"AREALAND\": 104.707000, \"AREAWATER\": 4.545000, \"POP_CL\": 8, \"POP2000\": 223891, \"WHITE\": 124243, \"BLACK\": 83728, \"AMERI_ES\": 989, \"ASIAN\": 6357, \"HAWN_PI\": 89, \"OTHER\": 4647, \"MULT_RACE\": 3838, \"HISPANIC\": 9742, \"MALES\": 105573, \"FEMALES\": 118318, \"AGE_UNDER5\": 14214, \"AGE_5_17\": 35686, \"AGE_18_21\": 19084, \"AGE_22_29\": 31887, \"AGE_30_39\": 35048, \"AGE_40_49\": 31071, \"AGE_50_64\": 30322, \"AGE_65_UP\": 26579, \"MED_AGE\": 33.000000, \"MED_AGE_M\": 31.600000, \"MED_AGE_F\": 34.300000, \"HOUSEHOLDS\": 92394, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 12250, \"HSEHLD_1_F\": 17908, \"MARHH_CHD\": 15683, \"MARHH_NO_C\": 21119, \"MHH_CHILD\": 1518, \"FHH_CHILD\": 8180, \"FAMILIES\": 53930, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 99305, \"VACANT\": 6911, \"OWNER_OCC\": 48964, \"RENTER_OCC\": 43430 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.819418424040762, 36.079867915619182 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Greenville\", \"CLASS\": \"city\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"28080\", \"CAPITAL\": \"N\", \"AREALAND\": 25.576000, \"AREAWATER\": 0.684000, \"POP_CL\": 7, \"POP2000\": 60476, \"WHITE\": 37133, \"BLACK\": 20649, \"AMERI_ES\": 181, \"ASIAN\": 1098, \"HAWN_PI\": 26, \"OTHER\": 611, \"MULT_RACE\": 778, \"HISPANIC\": 1244, \"MALES\": 27997, \"FEMALES\": 32479, \"AGE_UNDER5\": 3361, \"AGE_5_17\": 8014, \"AGE_18_21\": 11244, \"AGE_22_29\": 12121, \"AGE_30_39\": 7565, \"AGE_40_49\": 6722, \"AGE_50_64\": 6139, \"AGE_65_UP\": 5310, \"MED_AGE\": 26.000000, \"MED_AGE_M\": 25.700000, \"MED_AGE_F\": 26.400000, \"HOUSEHOLDS\": 25204, \"AVE_HH_SZ\": 2.180000, \"HSEHLD_1_M\": 3833, \"HSEHLD_1_F\": 5084, \"MARHH_CHD\": 3293, \"MARHH_NO_C\": 4468, \"MHH_CHILD\": 310, \"FHH_CHILD\": 2193, \"FAMILIES\": 12003, \"AVE_FAM_SZ\": 2.910000, \"HSE_UNITS\": 28145, \"VACANT\": 2941, \"OWNER_OCC\": 9906, \"RENTER_OCC\": 15298 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.372378355807982, 35.601613346245337 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Havelock\", \"CLASS\": \"city\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"30120\", \"CAPITAL\": \"N\", \"AREALAND\": 16.712000, \"AREAWATER\": 0.857000, \"POP_CL\": 6, \"POP2000\": 22442, \"WHITE\": 15816, \"BLACK\": 4159, \"AMERI_ES\": 176, \"ASIAN\": 570, \"HAWN_PI\": 33, \"OTHER\": 885, \"MULT_RACE\": 803, \"HISPANIC\": 2022, \"MALES\": 12847, \"FEMALES\": 9595, \"AGE_UNDER5\": 2524, \"AGE_5_17\": 3802, \"AGE_18_21\": 3650, \"AGE_22_29\": 5239, \"AGE_30_39\": 3202, \"AGE_40_49\": 2044, \"AGE_50_64\": 1295, \"AGE_65_UP\": 686, \"MED_AGE\": 23.000000, \"MED_AGE_M\": 22.700000, \"MED_AGE_F\": 24.100000, \"HOUSEHOLDS\": 6411, \"AVE_HH_SZ\": 2.910000, \"HSEHLD_1_M\": 479, \"HSEHLD_1_F\": 398, \"MARHH_CHD\": 2719, \"MARHH_NO_C\": 1727, \"MHH_CHILD\": 136, \"FHH_CHILD\": 513, \"FAMILIES\": 5279, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 6783, \"VACANT\": 372, \"OWNER_OCC\": 2428, \"RENTER_OCC\": 3983 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.909245518228531, 34.882736583792592 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Henderson\", \"CLASS\": \"city\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"30660\", \"CAPITAL\": \"N\", \"AREALAND\": 8.238000, \"AREAWATER\": 0.013000, \"POP_CL\": 6, \"POP2000\": 16095, \"WHITE\": 5917, \"BLACK\": 9524, \"AMERI_ES\": 43, \"ASIAN\": 103, \"HAWN_PI\": 4, \"OTHER\": 380, \"MULT_RACE\": 124, \"HISPANIC\": 826, \"MALES\": 7260, \"FEMALES\": 8835, \"AGE_UNDER5\": 1244, \"AGE_5_17\": 3174, \"AGE_18_21\": 811, \"AGE_22_29\": 1724, \"AGE_30_39\": 2074, \"AGE_40_49\": 2201, \"AGE_50_64\": 2232, \"AGE_65_UP\": 2635, \"MED_AGE\": 35.500000, \"MED_AGE_M\": 31.800000, \"MED_AGE_F\": 38.000000, \"HOUSEHOLDS\": 6332, \"AVE_HH_SZ\": 2.470000, \"HSEHLD_1_M\": 646, \"HSEHLD_1_F\": 1300, \"MARHH_CHD\": 817, \"MARHH_NO_C\": 1342, \"MHH_CHILD\": 132, \"FHH_CHILD\": 1036, \"FAMILIES\": 4120, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 6870, \"VACANT\": 538, \"OWNER_OCC\": 2969, \"RENTER_OCC\": 3363 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -78.408542705835458, 36.324753035890417 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hendersonville\", \"CLASS\": \"city\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"30720\", \"CAPITAL\": \"N\", \"AREALAND\": 5.955000, \"AREAWATER\": 0.012000, \"POP_CL\": 6, \"POP2000\": 10420, \"WHITE\": 8486, \"BLACK\": 1307, \"AMERI_ES\": 29, \"ASIAN\": 76, \"HAWN_PI\": 1, \"OTHER\": 363, \"MULT_RACE\": 158, \"HISPANIC\": 947, \"MALES\": 4719, \"FEMALES\": 5701, \"AGE_UNDER5\": 539, \"AGE_5_17\": 1471, \"AGE_18_21\": 412, \"AGE_22_29\": 914, \"AGE_30_39\": 1177, \"AGE_40_49\": 1220, \"AGE_50_64\": 1439, \"AGE_65_UP\": 3248, \"MED_AGE\": 45.400000, \"MED_AGE_M\": 40.100000, \"MED_AGE_F\": 51.000000, \"HOUSEHOLDS\": 4579, \"AVE_HH_SZ\": 2.100000, \"HSEHLD_1_M\": 565, \"HSEHLD_1_F\": 1271, \"MARHH_CHD\": 537, \"MARHH_NO_C\": 1274, \"MHH_CHILD\": 66, \"FHH_CHILD\": 346, \"FAMILIES\": 2557, \"AVE_FAM_SZ\": 2.800000, \"HSE_UNITS\": 5181, \"VACANT\": 602, \"OWNER_OCC\": 2611, \"RENTER_OCC\": 1968 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.461596234158293, 35.320585950742689 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hickory\", \"CLASS\": \"city\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"31060\", \"CAPITAL\": \"N\", \"AREALAND\": 28.068000, \"AREAWATER\": 0.007000, \"POP_CL\": 6, \"POP2000\": 37222, \"WHITE\": 28747, \"BLACK\": 5243, \"AMERI_ES\": 70, \"ASIAN\": 1450, \"HAWN_PI\": 24, \"OTHER\": 1146, \"MULT_RACE\": 542, \"HISPANIC\": 2863, \"MALES\": 17912, \"FEMALES\": 19310, \"AGE_UNDER5\": 2585, \"AGE_5_17\": 6084, \"AGE_18_21\": 2351, \"AGE_22_29\": 4977, \"AGE_30_39\": 5527, \"AGE_40_49\": 5131, \"AGE_50_64\": 5509, \"AGE_65_UP\": 5058, \"MED_AGE\": 34.600000, \"MED_AGE_M\": 32.600000, \"MED_AGE_F\": 36.700000, \"HOUSEHOLDS\": 15372, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 2020, \"HSEHLD_1_F\": 2934, \"MARHH_CHD\": 2910, \"MARHH_NO_C\": 3941, \"MHH_CHILD\": 286, \"FHH_CHILD\": 1088, \"FAMILIES\": 9369, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 16571, \"VACANT\": 1199, \"OWNER_OCC\": 8451, \"RENTER_OCC\": 6921 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.328372699167502, 35.737681924530449 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"High Point\", \"CLASS\": \"city\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"31400\", \"CAPITAL\": \"N\", \"AREALAND\": 49.047000, \"AREAWATER\": 1.644000, \"POP_CL\": 7, \"POP2000\": 85839, \"WHITE\": 51985, \"BLACK\": 27275, \"AMERI_ES\": 392, \"ASIAN\": 2872, \"HAWN_PI\": 17, \"OTHER\": 1950, \"MULT_RACE\": 1348, \"HISPANIC\": 4197, \"MALES\": 41022, \"FEMALES\": 44817, \"AGE_UNDER5\": 6445, \"AGE_5_17\": 15872, \"AGE_18_21\": 4596, \"AGE_22_29\": 9813, \"AGE_30_39\": 14221, \"AGE_40_49\": 12539, \"AGE_50_64\": 12165, \"AGE_65_UP\": 10188, \"MED_AGE\": 34.400000, \"MED_AGE_M\": 33.100000, \"MED_AGE_F\": 35.700000, \"HOUSEHOLDS\": 33519, \"AVE_HH_SZ\": 2.490000, \"HSEHLD_1_M\": 3644, \"HSEHLD_1_F\": 5465, \"MARHH_CHD\": 7057, \"MARHH_NO_C\": 8673, \"MHH_CHILD\": 593, \"FHH_CHILD\": 3391, \"FAMILIES\": 22523, \"AVE_FAM_SZ\": 3.030000, \"HSE_UNITS\": 35952, \"VACANT\": 2433, \"OWNER_OCC\": 19780, \"RENTER_OCC\": 13739 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.997512098747308, 35.970535913350083 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hope Mills\", \"CLASS\": \"town\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"32640\", \"CAPITAL\": \"N\", \"AREALAND\": 6.092000, \"AREAWATER\": 0.151000, \"POP_CL\": 6, \"POP2000\": 11237, \"WHITE\": 8207, \"BLACK\": 1979, \"AMERI_ES\": 228, \"ASIAN\": 142, \"HAWN_PI\": 24, \"OTHER\": 311, \"MULT_RACE\": 346, \"HISPANIC\": 719, \"MALES\": 5336, \"FEMALES\": 5901, \"AGE_UNDER5\": 915, \"AGE_5_17\": 2690, \"AGE_18_21\": 538, \"AGE_22_29\": 1339, \"AGE_30_39\": 2261, \"AGE_40_49\": 1641, \"AGE_50_64\": 1197, \"AGE_65_UP\": 656, \"MED_AGE\": 30.600000, \"MED_AGE_M\": 29.900000, \"MED_AGE_F\": 31.300000, \"HOUSEHOLDS\": 4112, \"AVE_HH_SZ\": 2.730000, \"HSEHLD_1_M\": 325, \"HSEHLD_1_F\": 484, \"MARHH_CHD\": 1269, \"MARHH_NO_C\": 951, \"MHH_CHILD\": 112, \"FHH_CHILD\": 529, \"FAMILIES\": 3107, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 4497, \"VACANT\": 385, \"OWNER_OCC\": 2713, \"RENTER_OCC\": 1399 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -78.956607104398202, 34.970678975036691 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Huntersville\", \"CLASS\": \"town\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"33120\", \"CAPITAL\": \"N\", \"AREALAND\": 31.147000, \"AREAWATER\": 0.014000, \"POP_CL\": 6, \"POP2000\": 24960, \"WHITE\": 22070, \"BLACK\": 1865, \"AMERI_ES\": 92, \"ASIAN\": 374, \"HAWN_PI\": 13, \"OTHER\": 264, \"MULT_RACE\": 282, \"HISPANIC\": 968, \"MALES\": 12330, \"FEMALES\": 12630, \"AGE_UNDER5\": 2441, \"AGE_5_17\": 4634, \"AGE_18_21\": 809, \"AGE_22_29\": 2865, \"AGE_30_39\": 5659, \"AGE_40_49\": 4147, \"AGE_50_64\": 2863, \"AGE_65_UP\": 1542, \"MED_AGE\": 33.000000, \"MED_AGE_M\": 32.800000, \"MED_AGE_F\": 33.200000, \"HOUSEHOLDS\": 9171, \"AVE_HH_SZ\": 2.670000, \"HSEHLD_1_M\": 874, \"HSEHLD_1_F\": 884, \"MARHH_CHD\": 3228, \"MARHH_NO_C\": 2698, \"MHH_CHILD\": 142, \"FHH_CHILD\": 473, \"FAMILIES\": 6864, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 9859, \"VACANT\": 688, \"OWNER_OCC\": 6912, \"RENTER_OCC\": 2259 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.863623001594974, 35.409543919268756 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Indian Trail\", \"CLASS\": \"town\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"33560\", \"CAPITAL\": \"N\", \"AREALAND\": 15.166000, \"AREAWATER\": 0.044000, \"POP_CL\": 6, \"POP2000\": 11905, \"WHITE\": 10822, \"BLACK\": 637, \"AMERI_ES\": 63, \"ASIAN\": 114, \"HAWN_PI\": 11, \"OTHER\": 113, \"MULT_RACE\": 145, \"HISPANIC\": 295, \"MALES\": 5899, \"FEMALES\": 6006, \"AGE_UNDER5\": 1129, \"AGE_5_17\": 2431, \"AGE_18_21\": 413, \"AGE_22_29\": 1278, \"AGE_30_39\": 2753, \"AGE_40_49\": 1793, \"AGE_50_64\": 1386, \"AGE_65_UP\": 722, \"MED_AGE\": 32.500000, \"MED_AGE_M\": 32.100000, \"MED_AGE_F\": 33.000000, \"HOUSEHOLDS\": 4299, \"AVE_HH_SZ\": 2.770000, \"HSEHLD_1_M\": 309, \"HSEHLD_1_F\": 391, \"MARHH_CHD\": 1584, \"MARHH_NO_C\": 1242, \"MHH_CHILD\": 93, \"FHH_CHILD\": 250, \"FAMILIES\": 3402, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 4581, \"VACANT\": 282, \"OWNER_OCC\": 3844, \"RENTER_OCC\": 455 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.654425149434914, 35.069917919773943 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Jacksonville\", \"CLASS\": \"city\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"34200\", \"CAPITAL\": \"N\", \"AREALAND\": 44.476000, \"AREAWATER\": 0.685000, \"POP_CL\": 7, \"POP2000\": 66715, \"WHITE\": 42655, \"BLACK\": 15987, \"AMERI_ES\": 503, \"ASIAN\": 1380, \"HAWN_PI\": 126, \"OTHER\": 3614, \"MULT_RACE\": 2450, \"HISPANIC\": 6702, \"MALES\": 40678, \"FEMALES\": 26037, \"AGE_UNDER5\": 6433, \"AGE_5_17\": 9768, \"AGE_18_21\": 15360, \"AGE_22_29\": 15346, \"AGE_30_39\": 7843, \"AGE_40_49\": 5094, \"AGE_50_64\": 3691, \"AGE_65_UP\": 3180, \"MED_AGE\": 22.400000, \"MED_AGE_M\": 22.000000, \"MED_AGE_F\": 24.700000, \"HOUSEHOLDS\": 17175, \"AVE_HH_SZ\": 2.830000, \"HSEHLD_1_M\": 1254, \"HSEHLD_1_F\": 1599, \"MARHH_CHD\": 6650, \"MARHH_NO_C\": 4311, \"MHH_CHILD\": 314, \"FHH_CHILD\": 1535, \"FAMILIES\": 13536, \"AVE_FAM_SZ\": 3.180000, \"HSE_UNITS\": 18312, \"VACANT\": 1137, \"OWNER_OCC\": 6733, \"RENTER_OCC\": 10442 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.40977627009832, 34.75963032932642 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Kannapolis\", \"CLASS\": \"city\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"35200\", \"CAPITAL\": \"N\", \"AREALAND\": 29.850000, \"AREAWATER\": 0.540000, \"POP_CL\": 6, \"POP2000\": 36910, \"WHITE\": 28695, \"BLACK\": 6072, \"AMERI_ES\": 125, \"ASIAN\": 319, \"HAWN_PI\": 5, \"OTHER\": 1265, \"MULT_RACE\": 429, \"HISPANIC\": 2337, \"MALES\": 17853, \"FEMALES\": 19057, \"AGE_UNDER5\": 2594, \"AGE_5_17\": 6324, \"AGE_18_21\": 1774, \"AGE_22_29\": 4351, \"AGE_30_39\": 5764, \"AGE_40_49\": 4917, \"AGE_50_64\": 5432, \"AGE_65_UP\": 5754, \"MED_AGE\": 36.000000, \"MED_AGE_M\": 34.300000, \"MED_AGE_F\": 37.900000, \"HOUSEHOLDS\": 14804, \"AVE_HH_SZ\": 2.460000, \"HSEHLD_1_M\": 1607, \"HSEHLD_1_F\": 2311, \"MARHH_CHD\": 3025, \"MARHH_NO_C\": 4441, \"MHH_CHILD\": 306, \"FHH_CHILD\": 1115, \"FAMILIES\": 10147, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 15941, \"VACANT\": 1137, \"OWNER_OCC\": 9878, \"RENTER_OCC\": 4926 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.618354233740703, 35.490588916196238 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Kernersville\", \"CLASS\": \"town\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"35600\", \"CAPITAL\": \"N\", \"AREALAND\": 12.097000, \"AREAWATER\": 0.069000, \"POP_CL\": 6, \"POP2000\": 17126, \"WHITE\": 14404, \"BLACK\": 1497, \"AMERI_ES\": 55, \"ASIAN\": 216, \"HAWN_PI\": 9, \"OTHER\": 742, \"MULT_RACE\": 203, \"HISPANIC\": 1261, \"MALES\": 8254, \"FEMALES\": 8872, \"AGE_UNDER5\": 1198, \"AGE_5_17\": 2889, \"AGE_18_21\": 761, \"AGE_22_29\": 2435, \"AGE_30_39\": 2828, \"AGE_40_49\": 2617, \"AGE_50_64\": 2628, \"AGE_65_UP\": 1770, \"MED_AGE\": 34.300000, \"MED_AGE_M\": 33.000000, \"MED_AGE_F\": 35.800000, \"HOUSEHOLDS\": 7286, \"AVE_HH_SZ\": 2.310000, \"HSEHLD_1_M\": 997, \"HSEHLD_1_F\": 1221, \"MARHH_CHD\": 1571, \"MARHH_NO_C\": 1948, \"MHH_CHILD\": 155, \"FHH_CHILD\": 560, \"FAMILIES\": 4660, \"AVE_FAM_SZ\": 2.880000, \"HSE_UNITS\": 7950, \"VACANT\": 664, \"OWNER_OCC\": 3906, \"RENTER_OCC\": 3380 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.081964994235861, 36.116239910918338 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Kinston\", \"CLASS\": \"city\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"35920\", \"CAPITAL\": \"N\", \"AREALAND\": 16.732000, \"AREAWATER\": 0.158000, \"POP_CL\": 6, \"POP2000\": 23688, \"WHITE\": 8354, \"BLACK\": 14837, \"AMERI_ES\": 37, \"ASIAN\": 135, \"HAWN_PI\": 11, \"OTHER\": 156, \"MULT_RACE\": 158, \"HISPANIC\": 269, \"MALES\": 10661, \"FEMALES\": 13027, \"AGE_UNDER5\": 1518, \"AGE_5_17\": 4264, \"AGE_18_21\": 1030, \"AGE_22_29\": 1914, \"AGE_30_39\": 2823, \"AGE_40_49\": 3701, \"AGE_50_64\": 3971, \"AGE_65_UP\": 4467, \"MED_AGE\": 40.800000, \"MED_AGE_M\": 38.000000, \"MED_AGE_F\": 43.000000, \"HOUSEHOLDS\": 9829, \"AVE_HH_SZ\": 2.290000, \"HSEHLD_1_M\": 1108, \"HSEHLD_1_F\": 2286, \"MARHH_CHD\": 1250, \"MARHH_NO_C\": 2256, \"MHH_CHILD\": 135, \"FHH_CHILD\": 1364, \"FAMILIES\": 6073, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 11229, \"VACANT\": 1400, \"OWNER_OCC\": 5112, \"RENTER_OCC\": 4717 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.585140519810068, 35.270676261161661 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Laurinburg\", \"CLASS\": \"city\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"37220\", \"CAPITAL\": \"N\", \"AREALAND\": 12.400000, \"AREAWATER\": 0.160000, \"POP_CL\": 6, \"POP2000\": 15874, \"WHITE\": 8023, \"BLACK\": 6835, \"AMERI_ES\": 671, \"ASIAN\": 120, \"HAWN_PI\": 5, \"OTHER\": 55, \"MULT_RACE\": 165, \"HISPANIC\": 168, \"MALES\": 7115, \"FEMALES\": 8759, \"AGE_UNDER5\": 1166, \"AGE_5_17\": 3052, \"AGE_18_21\": 1083, \"AGE_22_29\": 1614, \"AGE_30_39\": 1966, \"AGE_40_49\": 2268, \"AGE_50_64\": 2483, \"AGE_65_UP\": 2242, \"MED_AGE\": 35.500000, \"MED_AGE_M\": 32.600000, \"MED_AGE_F\": 37.700000, \"HOUSEHOLDS\": 6136, \"AVE_HH_SZ\": 2.460000, \"HSEHLD_1_M\": 577, \"HSEHLD_1_F\": 1138, \"MARHH_CHD\": 996, \"MARHH_NO_C\": 1569, \"MHH_CHILD\": 123, \"FHH_CHILD\": 848, \"FAMILIES\": 4223, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 6603, \"VACANT\": 467, \"OWNER_OCC\": 3553, \"RENTER_OCC\": 2583 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.470148786035168, 34.764662940618621 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lenoir\", \"CLASS\": \"city\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"37760\", \"CAPITAL\": \"N\", \"AREALAND\": 16.565000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 16793, \"WHITE\": 13583, \"BLACK\": 2470, \"AMERI_ES\": 38, \"ASIAN\": 112, \"HAWN_PI\": 19, \"OTHER\": 382, \"MULT_RACE\": 189, \"HISPANIC\": 714, \"MALES\": 8005, \"FEMALES\": 8788, \"AGE_UNDER5\": 1135, \"AGE_5_17\": 2704, \"AGE_18_21\": 758, \"AGE_22_29\": 1764, \"AGE_30_39\": 2257, \"AGE_40_49\": 2333, \"AGE_50_64\": 2765, \"AGE_65_UP\": 3077, \"MED_AGE\": 39.000000, \"MED_AGE_M\": 36.800000, \"MED_AGE_F\": 41.200000, \"HOUSEHOLDS\": 6913, \"AVE_HH_SZ\": 2.340000, \"HSEHLD_1_M\": 785, \"HSEHLD_1_F\": 1266, \"MARHH_CHD\": 1170, \"MARHH_NO_C\": 2077, \"MHH_CHILD\": 138, \"FHH_CHILD\": 589, \"FAMILIES\": 4572, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 7461, \"VACANT\": 548, \"OWNER_OCC\": 4365, \"RENTER_OCC\": 2548 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.530012596932394, 35.908437927561302 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lexington\", \"CLASS\": \"city\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"38060\", \"CAPITAL\": \"N\", \"AREALAND\": 17.617000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 19953, \"WHITE\": 11733, \"BLACK\": 5968, \"AMERI_ES\": 91, \"ASIAN\": 511, \"HAWN_PI\": 9, \"OTHER\": 1201, \"MULT_RACE\": 440, \"HISPANIC\": 2135, \"MALES\": 9579, \"FEMALES\": 10374, \"AGE_UNDER5\": 1448, \"AGE_5_17\": 3465, \"AGE_18_21\": 1014, \"AGE_22_29\": 2385, \"AGE_30_39\": 2945, \"AGE_40_49\": 2727, \"AGE_50_64\": 2915, \"AGE_65_UP\": 3054, \"MED_AGE\": 35.700000, \"MED_AGE_M\": 34.000000, \"MED_AGE_F\": 37.600000, \"HOUSEHOLDS\": 7926, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 954, \"HSEHLD_1_F\": 1472, \"MARHH_CHD\": 1274, \"MARHH_NO_C\": 1976, \"MHH_CHILD\": 202, \"FHH_CHILD\": 793, \"FAMILIES\": 5071, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 8510, \"VACANT\": 584, \"OWNER_OCC\": 3949, \"RENTER_OCC\": 3977 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.258644692719614, 35.816767912561019 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lumberton\", \"CLASS\": \"city\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"39700\", \"CAPITAL\": \"N\", \"AREALAND\": 15.725000, \"AREAWATER\": 0.074000, \"POP_CL\": 6, \"POP2000\": 20795, \"WHITE\": 10094, \"BLACK\": 7369, \"AMERI_ES\": 2660, \"ASIAN\": 190, \"HAWN_PI\": 7, \"OTHER\": 245, \"MULT_RACE\": 230, \"HISPANIC\": 686, \"MALES\": 9800, \"FEMALES\": 10995, \"AGE_UNDER5\": 1583, \"AGE_5_17\": 3893, \"AGE_18_21\": 1021, \"AGE_22_29\": 2428, \"AGE_30_39\": 2917, \"AGE_40_49\": 2785, \"AGE_50_64\": 3083, \"AGE_65_UP\": 3085, \"MED_AGE\": 35.300000, \"MED_AGE_M\": 32.900000, \"MED_AGE_F\": 37.700000, \"HOUSEHOLDS\": 7827, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 843, \"HSEHLD_1_F\": 1496, \"MARHH_CHD\": 1199, \"MARHH_NO_C\": 1835, \"MHH_CHILD\": 159, \"FHH_CHILD\": 1162, \"FAMILIES\": 5168, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 8800, \"VACANT\": 973, \"OWNER_OCC\": 4514, \"RENTER_OCC\": 3313 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.011950828169361, 34.627238972819185 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Masonboro\", \"CLASS\": \"CDP\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"41740\", \"CAPITAL\": \"N\", \"AREALAND\": 5.994000, \"AREAWATER\": 0.638000, \"POP_CL\": 6, \"POP2000\": 11812, \"WHITE\": 11058, \"BLACK\": 396, \"AMERI_ES\": 33, \"ASIAN\": 156, \"HAWN_PI\": 2, \"OTHER\": 38, \"MULT_RACE\": 129, \"HISPANIC\": 138, \"MALES\": 5786, \"FEMALES\": 6026, \"AGE_UNDER5\": 738, \"AGE_5_17\": 2668, \"AGE_18_21\": 378, \"AGE_22_29\": 687, \"AGE_30_39\": 1861, \"AGE_40_49\": 2403, \"AGE_50_64\": 1992, \"AGE_65_UP\": 1085, \"MED_AGE\": 38.100000, \"MED_AGE_M\": 37.900000, \"MED_AGE_F\": 38.400000, \"HOUSEHOLDS\": 4253, \"AVE_HH_SZ\": 2.780000, \"HSEHLD_1_M\": 227, \"HSEHLD_1_F\": 381, \"MARHH_CHD\": 1580, \"MARHH_NO_C\": 1523, \"MHH_CHILD\": 38, \"FHH_CHILD\": 181, \"FAMILIES\": 3474, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 4452, \"VACANT\": 199, \"OWNER_OCC\": 3870, \"RENTER_OCC\": 383 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.871141980654684, 34.169953171058211 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Matthews\", \"CLASS\": \"town\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"41960\", \"CAPITAL\": \"N\", \"AREALAND\": 14.210000, \"AREAWATER\": 0.002000, \"POP_CL\": 6, \"POP2000\": 22127, \"WHITE\": 19970, \"BLACK\": 1181, \"AMERI_ES\": 74, \"ASIAN\": 523, \"HAWN_PI\": 2, \"OTHER\": 173, \"MULT_RACE\": 204, \"HISPANIC\": 553, \"MALES\": 10747, \"FEMALES\": 11380, \"AGE_UNDER5\": 1548, \"AGE_5_17\": 4935, \"AGE_18_21\": 812, \"AGE_22_29\": 1629, \"AGE_30_39\": 3722, \"AGE_40_49\": 4228, \"AGE_50_64\": 3226, \"AGE_65_UP\": 2027, \"MED_AGE\": 36.400000, \"MED_AGE_M\": 35.500000, \"MED_AGE_F\": 37.200000, \"HOUSEHOLDS\": 7837, \"AVE_HH_SZ\": 2.790000, \"HSEHLD_1_M\": 548, \"HSEHLD_1_F\": 843, \"MARHH_CHD\": 2948, \"MARHH_NO_C\": 2467, \"MHH_CHILD\": 95, \"FHH_CHILD\": 338, \"FAMILIES\": 6145, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 8138, \"VACANT\": 301, \"OWNER_OCC\": 6125, \"RENTER_OCC\": 1712 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.716410097883085, 35.116850919912004 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mint Hill\", \"CLASS\": \"town\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"43480\", \"CAPITAL\": \"N\", \"AREALAND\": 21.229000, \"AREAWATER\": 0.044000, \"POP_CL\": 6, \"POP2000\": 14922, \"WHITE\": 13446, \"BLACK\": 867, \"AMERI_ES\": 107, \"ASIAN\": 172, \"HAWN_PI\": 4, \"OTHER\": 159, \"MULT_RACE\": 167, \"HISPANIC\": 472, \"MALES\": 7390, \"FEMALES\": 7532, \"AGE_UNDER5\": 866, \"AGE_5_17\": 2767, \"AGE_18_21\": 621, \"AGE_22_29\": 1196, \"AGE_30_39\": 2158, \"AGE_40_49\": 2601, \"AGE_50_64\": 3183, \"AGE_65_UP\": 1530, \"MED_AGE\": 39.400000, \"MED_AGE_M\": 38.800000, \"MED_AGE_F\": 40.000000, \"HOUSEHOLDS\": 5581, \"AVE_HH_SZ\": 2.670000, \"HSEHLD_1_M\": 416, \"HSEHLD_1_F\": 502, \"MARHH_CHD\": 1591, \"MARHH_NO_C\": 2257, \"MHH_CHILD\": 76, \"FHH_CHILD\": 224, \"FAMILIES\": 4432, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 5763, \"VACANT\": 182, \"OWNER_OCC\": 4697, \"RENTER_OCC\": 884 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.664433152707389, 35.180188918996024 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Monroe\", \"CLASS\": \"city\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"43920\", \"CAPITAL\": \"N\", \"AREALAND\": 24.570000, \"AREAWATER\": 0.280000, \"POP_CL\": 6, \"POP2000\": 26228, \"WHITE\": 15769, \"BLACK\": 7287, \"AMERI_ES\": 116, \"ASIAN\": 170, \"HAWN_PI\": 9, \"OTHER\": 2457, \"MULT_RACE\": 420, \"HISPANIC\": 5611, \"MALES\": 13279, \"FEMALES\": 12949, \"AGE_UNDER5\": 2310, \"AGE_5_17\": 4744, \"AGE_18_21\": 1683, \"AGE_22_29\": 3897, \"AGE_30_39\": 4288, \"AGE_40_49\": 3146, \"AGE_50_64\": 3315, \"AGE_65_UP\": 2845, \"MED_AGE\": 30.900000, \"MED_AGE_M\": 29.600000, \"MED_AGE_F\": 32.700000, \"HOUSEHOLDS\": 9029, \"AVE_HH_SZ\": 2.830000, \"HSEHLD_1_M\": 881, \"HSEHLD_1_F\": 1219, \"MARHH_CHD\": 1979, \"MARHH_NO_C\": 2443, \"MHH_CHILD\": 227, \"FHH_CHILD\": 835, \"FAMILIES\": 6393, \"AVE_FAM_SZ\": 3.270000, \"HSE_UNITS\": 9621, \"VACANT\": 592, \"OWNER_OCC\": 5063, \"RENTER_OCC\": 3966 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.549793241041598, 34.988759919791327 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mooresville\", \"CLASS\": \"town\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"44220\", \"CAPITAL\": \"N\", \"AREALAND\": 14.687000, \"AREAWATER\": 0.035000, \"POP_CL\": 6, \"POP2000\": 18823, \"WHITE\": 15348, \"BLACK\": 2679, \"AMERI_ES\": 67, \"ASIAN\": 312, \"HAWN_PI\": 4, \"OTHER\": 214, \"MULT_RACE\": 199, \"HISPANIC\": 480, \"MALES\": 9090, \"FEMALES\": 9733, \"AGE_UNDER5\": 1533, \"AGE_5_17\": 3875, \"AGE_18_21\": 729, \"AGE_22_29\": 2072, \"AGE_30_39\": 3482, \"AGE_40_49\": 2792, \"AGE_50_64\": 2227, \"AGE_65_UP\": 2113, \"MED_AGE\": 33.800000, \"MED_AGE_M\": 32.300000, \"MED_AGE_F\": 35.100000, \"HOUSEHOLDS\": 7139, \"AVE_HH_SZ\": 2.580000, \"HSEHLD_1_M\": 735, \"HSEHLD_1_F\": 976, \"MARHH_CHD\": 2062, \"MARHH_NO_C\": 1855, \"MHH_CHILD\": 148, \"FHH_CHILD\": 583, \"FAMILIES\": 5082, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 7741, \"VACANT\": 602, \"OWNER_OCC\": 4677, \"RENTER_OCC\": 2462 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.820140056411404, 35.58433691741525 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Morganton\", \"CLASS\": \"city\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"44400\", \"CAPITAL\": \"N\", \"AREALAND\": 18.163000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 17310, \"WHITE\": 13098, \"BLACK\": 2208, \"AMERI_ES\": 96, \"ASIAN\": 344, \"HAWN_PI\": 141, \"OTHER\": 1149, \"MULT_RACE\": 274, \"HISPANIC\": 1931, \"MALES\": 8443, \"FEMALES\": 8867, \"AGE_UNDER5\": 1076, \"AGE_5_17\": 2582, \"AGE_18_21\": 770, \"AGE_22_29\": 1945, \"AGE_30_39\": 2556, \"AGE_40_49\": 2454, \"AGE_50_64\": 2723, \"AGE_65_UP\": 3204, \"MED_AGE\": 39.100000, \"MED_AGE_M\": 35.700000, \"MED_AGE_F\": 42.300000, \"HOUSEHOLDS\": 6829, \"AVE_HH_SZ\": 2.310000, \"HSEHLD_1_M\": 836, \"HSEHLD_1_F\": 1518, \"MARHH_CHD\": 1201, \"MARHH_NO_C\": 1740, \"MHH_CHILD\": 136, \"FHH_CHILD\": 490, \"FAMILIES\": 4121, \"AVE_FAM_SZ\": 2.920000, \"HSE_UNITS\": 7313, \"VACANT\": 484, \"OWNER_OCC\": 3891, \"RENTER_OCC\": 2938 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.692360507661959, 35.742584932040792 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"New Bern\", \"CLASS\": \"city\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"46340\", \"CAPITAL\": \"N\", \"AREALAND\": 25.827000, \"AREAWATER\": 1.156000, \"POP_CL\": 6, \"POP2000\": 23128, \"WHITE\": 12943, \"BLACK\": 9325, \"AMERI_ES\": 75, \"ASIAN\": 148, \"HAWN_PI\": 9, \"OTHER\": 332, \"MULT_RACE\": 296, \"HISPANIC\": 692, \"MALES\": 10548, \"FEMALES\": 12580, \"AGE_UNDER5\": 1561, \"AGE_5_17\": 3974, \"AGE_18_21\": 1070, \"AGE_22_29\": 2382, \"AGE_30_39\": 2963, \"AGE_40_49\": 3430, \"AGE_50_64\": 3600, \"AGE_65_UP\": 4148, \"MED_AGE\": 38.900000, \"MED_AGE_M\": 36.800000, \"MED_AGE_F\": 40.600000, \"HOUSEHOLDS\": 10006, \"AVE_HH_SZ\": 2.260000, \"HSEHLD_1_M\": 1259, \"HSEHLD_1_F\": 2082, \"MARHH_CHD\": 1432, \"MARHH_NO_C\": 2623, \"MHH_CHILD\": 138, \"FHH_CHILD\": 1159, \"FAMILIES\": 6187, \"AVE_FAM_SZ\": 2.850000, \"HSE_UNITS\": 11094, \"VACANT\": 1088, \"OWNER_OCC\": 5651, \"RENTER_OCC\": 4355 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.069125331606287, 35.109070493570592 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Newton\", \"CLASS\": \"city\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"47000\", \"CAPITAL\": \"N\", \"AREALAND\": 12.970000, \"AREAWATER\": 0.025000, \"POP_CL\": 6, \"POP2000\": 12560, \"WHITE\": 9744, \"BLACK\": 1549, \"AMERI_ES\": 54, \"ASIAN\": 427, \"HAWN_PI\": 4, \"OTHER\": 581, \"MULT_RACE\": 201, \"HISPANIC\": 1196, \"MALES\": 6011, \"FEMALES\": 6549, \"AGE_UNDER5\": 838, \"AGE_5_17\": 2147, \"AGE_18_21\": 621, \"AGE_22_29\": 1426, \"AGE_30_39\": 1812, \"AGE_40_49\": 1746, \"AGE_50_64\": 1864, \"AGE_65_UP\": 2106, \"MED_AGE\": 36.900000, \"MED_AGE_M\": 34.300000, \"MED_AGE_F\": 39.800000, \"HOUSEHOLDS\": 5007, \"AVE_HH_SZ\": 2.460000, \"HSEHLD_1_M\": 516, \"HSEHLD_1_F\": 925, \"MARHH_CHD\": 953, \"MARHH_NO_C\": 1408, \"MHH_CHILD\": 106, \"FHH_CHILD\": 412, \"FAMILIES\": 3317, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 5368, \"VACANT\": 361, \"OWNER_OCC\": 3138, \"RENTER_OCC\": 1869 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.224351758867442, 35.665081923054693 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Piney Green\", \"CLASS\": \"CDP\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"52260\", \"CAPITAL\": \"N\", \"AREALAND\": 13.420000, \"AREAWATER\": 0.054000, \"POP_CL\": 6, \"POP2000\": 11658, \"WHITE\": 7547, \"BLACK\": 2863, \"AMERI_ES\": 87, \"ASIAN\": 301, \"HAWN_PI\": 29, \"OTHER\": 364, \"MULT_RACE\": 467, \"HISPANIC\": 887, \"MALES\": 5769, \"FEMALES\": 5889, \"AGE_UNDER5\": 1154, \"AGE_5_17\": 2372, \"AGE_18_21\": 971, \"AGE_22_29\": 1997, \"AGE_30_39\": 1947, \"AGE_40_49\": 1518, \"AGE_50_64\": 1177, \"AGE_65_UP\": 522, \"MED_AGE\": 26.900000, \"MED_AGE_M\": 26.200000, \"MED_AGE_F\": 27.600000, \"HOUSEHOLDS\": 4202, \"AVE_HH_SZ\": 2.770000, \"HSEHLD_1_M\": 382, \"HSEHLD_1_F\": 365, \"MARHH_CHD\": 1340, \"MARHH_NO_C\": 1190, \"MHH_CHILD\": 95, \"FHH_CHILD\": 391, \"FAMILIES\": 3195, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 4671, \"VACANT\": 469, \"OWNER_OCC\": 2572, \"RENTER_OCC\": 1630 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.322250890350105, 34.743093366802313 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Raleigh\", \"CLASS\": \"city\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"55000\", \"CAPITAL\": \"Y\", \"AREALAND\": 114.599000, \"AREAWATER\": 0.970000, \"POP_CL\": 8, \"POP2000\": 276093, \"WHITE\": 174786, \"BLACK\": 76756, \"AMERI_ES\": 981, \"ASIAN\": 9327, \"HAWN_PI\": 118, \"OTHER\": 8946, \"MULT_RACE\": 5179, \"HISPANIC\": 19308, \"MALES\": 136648, \"FEMALES\": 139445, \"AGE_UNDER5\": 17461, \"AGE_5_17\": 40145, \"AGE_18_21\": 24758, \"AGE_22_29\": 49967, \"AGE_30_39\": 49575, \"AGE_40_49\": 38456, \"AGE_50_64\": 32736, \"AGE_65_UP\": 22995, \"MED_AGE\": 30.900000, \"MED_AGE_M\": 30.000000, \"MED_AGE_F\": 32.100000, \"HOUSEHOLDS\": 112608, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 16301, \"HSEHLD_1_F\": 21021, \"MARHH_CHD\": 20139, \"MARHH_NO_C\": 24329, \"MHH_CHILD\": 1593, \"FHH_CHILD\": 8062, \"FAMILIES\": 61327, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 120699, \"VACANT\": 8091, \"OWNER_OCC\": 58079, \"RENTER_OCC\": 54529 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -78.644595481988162, 35.818835003587061 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Reidsville\", \"CLASS\": \"city\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"55900\", \"CAPITAL\": \"N\", \"AREALAND\": 13.374000, \"AREAWATER\": 1.512000, \"POP_CL\": 6, \"POP2000\": 14485, \"WHITE\": 8260, \"BLACK\": 5725, \"AMERI_ES\": 31, \"ASIAN\": 93, \"HAWN_PI\": 9, \"OTHER\": 195, \"MULT_RACE\": 172, \"HISPANIC\": 381, \"MALES\": 6623, \"FEMALES\": 7862, \"AGE_UNDER5\": 914, \"AGE_5_17\": 2474, \"AGE_18_21\": 532, \"AGE_22_29\": 1391, \"AGE_30_39\": 2050, \"AGE_40_49\": 2103, \"AGE_50_64\": 2293, \"AGE_65_UP\": 2728, \"MED_AGE\": 39.500000, \"MED_AGE_M\": 37.000000, \"MED_AGE_F\": 41.700000, \"HOUSEHOLDS\": 6013, \"AVE_HH_SZ\": 2.340000, \"HSEHLD_1_M\": 652, \"HSEHLD_1_F\": 1233, \"MARHH_CHD\": 970, \"MARHH_NO_C\": 1595, \"MHH_CHILD\": 103, \"FHH_CHILD\": 582, \"FAMILIES\": 3900, \"AVE_FAM_SZ\": 2.920000, \"HSE_UNITS\": 6477, \"VACANT\": 464, \"OWNER_OCC\": 3484, \"RENTER_OCC\": 2529 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.675096762430741, 36.345346916884445 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Roanoke Rapids\", \"CLASS\": \"city\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"56900\", \"CAPITAL\": \"N\", \"AREALAND\": 7.837000, \"AREAWATER\": 0.036000, \"POP_CL\": 6, \"POP2000\": 16957, \"WHITE\": 12214, \"BLACK\": 4218, \"AMERI_ES\": 98, \"ASIAN\": 240, \"HAWN_PI\": 5, \"OTHER\": 84, \"MULT_RACE\": 98, \"HISPANIC\": 179, \"MALES\": 7734, \"FEMALES\": 9223, \"AGE_UNDER5\": 1133, \"AGE_5_17\": 3399, \"AGE_18_21\": 753, \"AGE_22_29\": 1580, \"AGE_30_39\": 2495, \"AGE_40_49\": 2317, \"AGE_50_64\": 2623, \"AGE_65_UP\": 2657, \"MED_AGE\": 36.800000, \"MED_AGE_M\": 34.700000, \"MED_AGE_F\": 38.700000, \"HOUSEHOLDS\": 6909, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 709, \"HSEHLD_1_F\": 1349, \"MARHH_CHD\": 1408, \"MARHH_NO_C\": 1773, \"MHH_CHILD\": 126, \"FHH_CHILD\": 715, \"FAMILIES\": 4592, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 7595, \"VACANT\": 686, \"OWNER_OCC\": 4104, \"RENTER_OCC\": 2805 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.654833068576522, 36.454528231032306 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Rocky Mount\", \"CLASS\": \"city\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"57500\", \"CAPITAL\": \"N\", \"AREALAND\": 35.568000, \"AREAWATER\": 0.211000, \"POP_CL\": 7, \"POP2000\": 55893, \"WHITE\": 22874, \"BLACK\": 31314, \"AMERI_ES\": 195, \"ASIAN\": 394, \"HAWN_PI\": 12, \"OTHER\": 507, \"MULT_RACE\": 597, \"HISPANIC\": 1033, \"MALES\": 25710, \"FEMALES\": 30183, \"AGE_UNDER5\": 3916, \"AGE_5_17\": 11548, \"AGE_18_21\": 2963, \"AGE_22_29\": 5657, \"AGE_30_39\": 7907, \"AGE_40_49\": 8481, \"AGE_50_64\": 8147, \"AGE_65_UP\": 7274, \"MED_AGE\": 35.200000, \"MED_AGE_M\": 32.800000, \"MED_AGE_F\": 37.000000, \"HOUSEHOLDS\": 21435, \"AVE_HH_SZ\": 2.550000, \"HSEHLD_1_M\": 2217, \"HSEHLD_1_F\": 3647, \"MARHH_CHD\": 4007, \"MARHH_NO_C\": 5281, \"MHH_CHILD\": 412, \"FHH_CHILD\": 2623, \"FAMILIES\": 14682, \"AVE_FAM_SZ\": 3.110000, \"HSE_UNITS\": 24167, \"VACANT\": 2732, \"OWNER_OCC\": 11799, \"RENTER_OCC\": 9636 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.805581660020039, 35.954112183978303 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Salisbury\", \"CLASS\": \"city\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"58860\", \"CAPITAL\": \"N\", \"AREALAND\": 17.779000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 26462, \"WHITE\": 15163, \"BLACK\": 9940, \"AMERI_ES\": 74, \"ASIAN\": 369, \"HAWN_PI\": 15, \"OTHER\": 509, \"MULT_RACE\": 392, \"HISPANIC\": 1138, \"MALES\": 12548, \"FEMALES\": 13914, \"AGE_UNDER5\": 1697, \"AGE_5_17\": 4062, \"AGE_18_21\": 2255, \"AGE_22_29\": 2890, \"AGE_30_39\": 3276, \"AGE_40_49\": 3327, \"AGE_50_64\": 3694, \"AGE_65_UP\": 5261, \"MED_AGE\": 37.100000, \"MED_AGE_M\": 34.600000, \"MED_AGE_F\": 39.600000, \"HOUSEHOLDS\": 10276, \"AVE_HH_SZ\": 2.290000, \"HSEHLD_1_M\": 1355, \"HSEHLD_1_F\": 2165, \"MARHH_CHD\": 1421, \"MARHH_NO_C\": 2583, \"MHH_CHILD\": 182, \"FHH_CHILD\": 1118, \"FAMILIES\": 6183, \"AVE_FAM_SZ\": 2.920000, \"HSE_UNITS\": 11288, \"VACANT\": 1012, \"OWNER_OCC\": 5493, \"RENTER_OCC\": 4783 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.47848040398685, 35.668288913948707 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sanford\", \"CLASS\": \"city\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"59280\", \"CAPITAL\": \"N\", \"AREALAND\": 24.069000, \"AREAWATER\": 0.083000, \"POP_CL\": 6, \"POP2000\": 23220, \"WHITE\": 12973, \"BLACK\": 6779, \"AMERI_ES\": 116, \"ASIAN\": 246, \"HAWN_PI\": 8, \"OTHER\": 2771, \"MULT_RACE\": 327, \"HISPANIC\": 4419, \"MALES\": 11464, \"FEMALES\": 11756, \"AGE_UNDER5\": 1857, \"AGE_5_17\": 4444, \"AGE_18_21\": 1378, \"AGE_22_29\": 2848, \"AGE_30_39\": 3529, \"AGE_40_49\": 3244, \"AGE_50_64\": 3083, \"AGE_65_UP\": 2837, \"MED_AGE\": 33.100000, \"MED_AGE_M\": 31.500000, \"MED_AGE_F\": 35.100000, \"HOUSEHOLDS\": 8550, \"AVE_HH_SZ\": 2.640000, \"HSEHLD_1_M\": 892, \"HSEHLD_1_F\": 1343, \"MARHH_CHD\": 1781, \"MARHH_NO_C\": 2154, \"MHH_CHILD\": 211, \"FHH_CHILD\": 954, \"FAMILIES\": 5903, \"AVE_FAM_SZ\": 3.150000, \"HSE_UNITS\": 9223, \"VACANT\": 673, \"OWNER_OCC\": 4953, \"RENTER_OCC\": 3597 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.175466675730561, 35.475880951730311 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Shelby\", \"CLASS\": \"city\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"61200\", \"CAPITAL\": \"N\", \"AREALAND\": 18.138000, \"AREAWATER\": 0.024000, \"POP_CL\": 6, \"POP2000\": 19477, \"WHITE\": 11079, \"BLACK\": 7980, \"AMERI_ES\": 17, \"ASIAN\": 109, \"HAWN_PI\": 3, \"OTHER\": 141, \"MULT_RACE\": 148, \"HISPANIC\": 304, \"MALES\": 8847, \"FEMALES\": 10630, \"AGE_UNDER5\": 1265, \"AGE_5_17\": 3612, \"AGE_18_21\": 855, \"AGE_22_29\": 1770, \"AGE_30_39\": 2518, \"AGE_40_49\": 2676, \"AGE_50_64\": 2945, \"AGE_65_UP\": 3836, \"MED_AGE\": 38.900000, \"MED_AGE_M\": 35.700000, \"MED_AGE_F\": 41.700000, \"HOUSEHOLDS\": 7927, \"AVE_HH_SZ\": 2.370000, \"HSEHLD_1_M\": 853, \"HSEHLD_1_F\": 1651, \"MARHH_CHD\": 1160, \"MARHH_NO_C\": 2115, \"MHH_CHILD\": 117, \"FHH_CHILD\": 917, \"FAMILIES\": 5145, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 8853, \"VACANT\": 926, \"OWNER_OCC\": 4615, \"RENTER_OCC\": 3312 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.537787554954079, 35.288271931467655 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Smithfield\", \"CLASS\": \"town\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"62520\", \"CAPITAL\": \"N\", \"AREALAND\": 11.424000, \"AREAWATER\": 0.015000, \"POP_CL\": 6, \"POP2000\": 11510, \"WHITE\": 7212, \"BLACK\": 3567, \"AMERI_ES\": 49, \"ASIAN\": 73, \"HAWN_PI\": 2, \"OTHER\": 477, \"MULT_RACE\": 130, \"HISPANIC\": 1140, \"MALES\": 5738, \"FEMALES\": 5772, \"AGE_UNDER5\": 684, \"AGE_5_17\": 1772, \"AGE_18_21\": 496, \"AGE_22_29\": 1310, \"AGE_30_39\": 1685, \"AGE_40_49\": 1555, \"AGE_50_64\": 1912, \"AGE_65_UP\": 2096, \"MED_AGE\": 38.900000, \"MED_AGE_M\": 35.300000, \"MED_AGE_F\": 43.300000, \"HOUSEHOLDS\": 4417, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 515, \"HSEHLD_1_F\": 1064, \"MARHH_CHD\": 723, \"MARHH_NO_C\": 1135, \"MHH_CHILD\": 65, \"FHH_CHILD\": 389, \"FAMILIES\": 2675, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 4674, \"VACANT\": 257, \"OWNER_OCC\": 2362, \"RENTER_OCC\": 2055 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -78.346462532804253, 35.509129054814281 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Southern Pines\", \"CLASS\": \"town\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"63120\", \"CAPITAL\": \"N\", \"AREALAND\": 15.358000, \"AREAWATER\": 0.176000, \"POP_CL\": 6, \"POP2000\": 10918, \"WHITE\": 7729, \"BLACK\": 2901, \"AMERI_ES\": 39, \"ASIAN\": 72, \"HAWN_PI\": 8, \"OTHER\": 87, \"MULT_RACE\": 82, \"HISPANIC\": 223, \"MALES\": 4851, \"FEMALES\": 6067, \"AGE_UNDER5\": 608, \"AGE_5_17\": 1719, \"AGE_18_21\": 397, \"AGE_22_29\": 877, \"AGE_30_39\": 1316, \"AGE_40_49\": 1356, \"AGE_50_64\": 1681, \"AGE_65_UP\": 2964, \"MED_AGE\": 43.800000, \"MED_AGE_M\": 41.000000, \"MED_AGE_F\": 46.100000, \"HOUSEHOLDS\": 4754, \"AVE_HH_SZ\": 2.190000, \"HSEHLD_1_M\": 588, \"HSEHLD_1_F\": 1034, \"MARHH_CHD\": 656, \"MARHH_NO_C\": 1466, \"MHH_CHILD\": 45, \"FHH_CHILD\": 421, \"FAMILIES\": 2905, \"AVE_FAM_SZ\": 2.790000, \"HSE_UNITS\": 5488, \"VACANT\": 734, \"OWNER_OCC\": 2993, \"RENTER_OCC\": 1761 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.398290050040046, 35.181891940451372 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Statesville\", \"CLASS\": \"city\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"64740\", \"CAPITAL\": \"N\", \"AREALAND\": 20.530000, \"AREAWATER\": 0.072000, \"POP_CL\": 6, \"POP2000\": 23320, \"WHITE\": 13979, \"BLACK\": 7433, \"AMERI_ES\": 43, \"ASIAN\": 633, \"HAWN_PI\": 4, \"OTHER\": 896, \"MULT_RACE\": 332, \"HISPANIC\": 1658, \"MALES\": 10817, \"FEMALES\": 12503, \"AGE_UNDER5\": 1631, \"AGE_5_17\": 4067, \"AGE_18_21\": 1093, \"AGE_22_29\": 2694, \"AGE_30_39\": 3126, \"AGE_40_49\": 3180, \"AGE_50_64\": 3480, \"AGE_65_UP\": 4049, \"MED_AGE\": 37.100000, \"MED_AGE_M\": 34.200000, \"MED_AGE_F\": 39.700000, \"HOUSEHOLDS\": 9338, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 1097, \"HSEHLD_1_F\": 1833, \"MARHH_CHD\": 1446, \"MARHH_NO_C\": 2450, \"MHH_CHILD\": 162, \"FHH_CHILD\": 1014, \"FAMILIES\": 5958, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 10041, \"VACANT\": 703, \"OWNER_OCC\": 5121, \"RENTER_OCC\": 4217 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.87853202716235, 35.786792916609947 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Tarboro\", \"CLASS\": \"town\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"66700\", \"CAPITAL\": \"N\", \"AREALAND\": 9.724000, \"AREAWATER\": 0.037000, \"POP_CL\": 6, \"POP2000\": 11138, \"WHITE\": 6241, \"BLACK\": 4393, \"AMERI_ES\": 7, \"ASIAN\": 34, \"HAWN_PI\": 0, \"OTHER\": 397, \"MULT_RACE\": 66, \"HISPANIC\": 662, \"MALES\": 5110, \"FEMALES\": 6028, \"AGE_UNDER5\": 661, \"AGE_5_17\": 2025, \"AGE_18_21\": 546, \"AGE_22_29\": 960, \"AGE_30_39\": 1488, \"AGE_40_49\": 1640, \"AGE_50_64\": 1809, \"AGE_65_UP\": 2009, \"MED_AGE\": 39.400000, \"MED_AGE_M\": 35.600000, \"MED_AGE_F\": 42.300000, \"HOUSEHOLDS\": 4359, \"AVE_HH_SZ\": 2.480000, \"HSEHLD_1_M\": 405, \"HSEHLD_1_F\": 846, \"MARHH_CHD\": 765, \"MARHH_NO_C\": 1229, \"MHH_CHILD\": 64, \"FHH_CHILD\": 444, \"FAMILIES\": 2972, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 4911, \"VACANT\": 552, \"OWNER_OCC\": 2555, \"RENTER_OCC\": 1804 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.545970349807547, 35.902850274209747 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Thomasville\", \"CLASS\": \"city\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"67420\", \"CAPITAL\": \"N\", \"AREALAND\": 11.147000, \"AREAWATER\": 0.003000, \"POP_CL\": 6, \"POP2000\": 19788, \"WHITE\": 13779, \"BLACK\": 4731, \"AMERI_ES\": 90, \"ASIAN\": 164, \"HAWN_PI\": 0, \"OTHER\": 757, \"MULT_RACE\": 267, \"HISPANIC\": 1371, \"MALES\": 9375, \"FEMALES\": 10413, \"AGE_UNDER5\": 1611, \"AGE_5_17\": 3440, \"AGE_18_21\": 964, \"AGE_22_29\": 2551, \"AGE_30_39\": 3151, \"AGE_40_49\": 2465, \"AGE_50_64\": 2777, \"AGE_65_UP\": 2829, \"MED_AGE\": 34.000000, \"MED_AGE_M\": 32.200000, \"MED_AGE_F\": 35.800000, \"HOUSEHOLDS\": 7978, \"AVE_HH_SZ\": 2.430000, \"HSEHLD_1_M\": 938, \"HSEHLD_1_F\": 1343, \"MARHH_CHD\": 1540, \"MARHH_NO_C\": 1990, \"MHH_CHILD\": 206, \"FHH_CHILD\": 793, \"FAMILIES\": 5305, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 8515, \"VACANT\": 537, \"OWNER_OCC\": 4232, \"RENTER_OCC\": 3746 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.07732495955517, 35.885847913166828 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wake Forest\", \"CLASS\": \"town\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"70540\", \"CAPITAL\": \"N\", \"AREALAND\": 7.797000, \"AREAWATER\": 0.103000, \"POP_CL\": 6, \"POP2000\": 12588, \"WHITE\": 10024, \"BLACK\": 1987, \"AMERI_ES\": 26, \"ASIAN\": 256, \"HAWN_PI\": 1, \"OTHER\": 98, \"MULT_RACE\": 196, \"HISPANIC\": 262, \"MALES\": 6024, \"FEMALES\": 6564, \"AGE_UNDER5\": 1229, \"AGE_5_17\": 2507, \"AGE_18_21\": 394, \"AGE_22_29\": 1762, \"AGE_30_39\": 2633, \"AGE_40_49\": 1858, \"AGE_50_64\": 1211, \"AGE_65_UP\": 994, \"MED_AGE\": 31.500000, \"MED_AGE_M\": 30.800000, \"MED_AGE_F\": 32.300000, \"HOUSEHOLDS\": 4617, \"AVE_HH_SZ\": 2.660000, \"HSEHLD_1_M\": 392, \"HSEHLD_1_F\": 559, \"MARHH_CHD\": 1528, \"MARHH_NO_C\": 1254, \"MHH_CHILD\": 65, \"FHH_CHILD\": 334, \"FAMILIES\": 3409, \"AVE_FAM_SZ\": 3.110000, \"HSE_UNITS\": 5091, \"VACANT\": 474, \"OWNER_OCC\": 2915, \"RENTER_OCC\": 1702 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -78.518795048692098, 35.97328902080136 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wilmington\", \"CLASS\": \"city\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"74440\", \"CAPITAL\": \"N\", \"AREALAND\": 40.997000, \"AREAWATER\": 0.482000, \"POP_CL\": 7, \"POP2000\": 75838, \"WHITE\": 53516, \"BLACK\": 19579, \"AMERI_ES\": 266, \"ASIAN\": 682, \"HAWN_PI\": 67, \"OTHER\": 868, \"MULT_RACE\": 860, \"HISPANIC\": 1991, \"MALES\": 35397, \"FEMALES\": 40441, \"AGE_UNDER5\": 4020, \"AGE_5_17\": 9922, \"AGE_18_21\": 7843, \"AGE_22_29\": 11825, \"AGE_30_39\": 10073, \"AGE_40_49\": 9708, \"AGE_50_64\": 10810, \"AGE_65_UP\": 11637, \"MED_AGE\": 34.100000, \"MED_AGE_M\": 32.000000, \"MED_AGE_F\": 36.100000, \"HOUSEHOLDS\": 34359, \"AVE_HH_SZ\": 2.100000, \"HSEHLD_1_M\": 5083, \"HSEHLD_1_F\": 7500, \"MARHH_CHD\": 3708, \"MARHH_NO_C\": 7786, \"MHH_CHILD\": 433, \"FHH_CHILD\": 2880, \"FAMILIES\": 17360, \"AVE_FAM_SZ\": 2.770000, \"HSE_UNITS\": 38678, \"VACANT\": 4319, \"OWNER_OCC\": 16702, \"RENTER_OCC\": 17657 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.912129805498083, 34.223232159815495 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wilson\", \"CLASS\": \"city\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"74540\", \"CAPITAL\": \"N\", \"AREALAND\": 23.286000, \"AREAWATER\": 0.153000, \"POP_CL\": 6, \"POP2000\": 44405, \"WHITE\": 20723, \"BLACK\": 21106, \"AMERI_ES\": 136, \"ASIAN\": 257, \"HAWN_PI\": 8, \"OTHER\": 1728, \"MULT_RACE\": 447, \"HISPANIC\": 3237, \"MALES\": 20783, \"FEMALES\": 23622, \"AGE_UNDER5\": 3284, \"AGE_5_17\": 8272, \"AGE_18_21\": 2531, \"AGE_22_29\": 4959, \"AGE_30_39\": 6309, \"AGE_40_49\": 6623, \"AGE_50_64\": 6451, \"AGE_65_UP\": 5976, \"MED_AGE\": 35.100000, \"MED_AGE_M\": 33.000000, \"MED_AGE_F\": 37.000000, \"HOUSEHOLDS\": 17296, \"AVE_HH_SZ\": 2.470000, \"HSEHLD_1_M\": 1998, \"HSEHLD_1_F\": 3092, \"MARHH_CHD\": 3166, \"MARHH_NO_C\": 4101, \"MHH_CHILD\": 305, \"FHH_CHILD\": 1999, \"FAMILIES\": 11324, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 18660, \"VACANT\": 1364, \"OWNER_OCC\": 8820, \"RENTER_OCC\": 8476 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.923517791366947, 35.731093150696353 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Winston-Salem\", \"CLASS\": \"city\", \"ST\": \"NC\", \"STFIPS\": \"37\", \"PLACEFIP\": \"75000\", \"CAPITAL\": \"N\", \"AREALAND\": 108.850000, \"AREAWATER\": 0.783000, \"POP_CL\": 8, \"POP2000\": 185776, \"WHITE\": 103243, \"BLACK\": 68924, \"AMERI_ES\": 567, \"ASIAN\": 2108, \"HAWN_PI\": 67, \"OTHER\": 7965, \"MULT_RACE\": 2902, \"HISPANIC\": 16043, \"MALES\": 87345, \"FEMALES\": 98431, \"AGE_UNDER5\": 12448, \"AGE_5_17\": 30917, \"AGE_18_21\": 12971, \"AGE_22_29\": 23761, \"AGE_30_39\": 27976, \"AGE_40_49\": 25903, \"AGE_50_64\": 26396, \"AGE_65_UP\": 25404, \"MED_AGE\": 34.600000, \"MED_AGE_M\": 32.400000, \"MED_AGE_F\": 36.500000, \"HOUSEHOLDS\": 76247, \"AVE_HH_SZ\": 2.320000, \"HSEHLD_1_M\": 9967, \"HSEHLD_1_F\": 15530, \"MARHH_CHD\": 12307, \"MARHH_NO_C\": 18308, \"MHH_CHILD\": 1332, \"FHH_CHILD\": 7705, \"FAMILIES\": 46206, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 82593, \"VACANT\": 6346, \"OWNER_OCC\": 42539, \"RENTER_OCC\": 33708 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.260492735828294, 36.10276390993824 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bismarck\", \"CLASS\": \"city\", \"ST\": \"ND\", \"STFIPS\": \"38\", \"PLACEFIP\": \"07200\", \"CAPITAL\": \"Y\", \"AREALAND\": 26.889000, \"AREAWATER\": 0.518000, \"POP_CL\": 7, \"POP2000\": 55532, \"WHITE\": 52634, \"BLACK\": 156, \"AMERI_ES\": 1884, \"ASIAN\": 251, \"HAWN_PI\": 15, \"OTHER\": 95, \"MULT_RACE\": 497, \"HISPANIC\": 415, \"MALES\": 26891, \"FEMALES\": 28641, \"AGE_UNDER5\": 3356, \"AGE_5_17\": 9718, \"AGE_18_21\": 3733, \"AGE_22_29\": 6328, \"AGE_30_39\": 7660, \"AGE_40_49\": 8986, \"AGE_50_64\": 8109, \"AGE_65_UP\": 7642, \"MED_AGE\": 36.500000, \"MED_AGE_M\": 34.600000, \"MED_AGE_F\": 38.200000, \"HOUSEHOLDS\": 23185, \"AVE_HH_SZ\": 2.320000, \"HSEHLD_1_M\": 2817, \"HSEHLD_1_F\": 4360, \"MARHH_CHD\": 5192, \"MARHH_NO_C\": 6413, \"MHH_CHILD\": 374, \"FHH_CHILD\": 1429, \"FAMILIES\": 14435, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 24217, \"VACANT\": 1032, \"OWNER_OCC\": 14689, \"RENTER_OCC\": 8496 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -100.779003963021751, 46.813342981353209 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Dickinson\", \"CLASS\": \"city\", \"ST\": \"ND\", \"STFIPS\": \"38\", \"PLACEFIP\": \"19620\", \"CAPITAL\": \"N\", \"AREALAND\": 9.469000, \"AREAWATER\": 0.024000, \"POP_CL\": 6, \"POP2000\": 16010, \"WHITE\": 15556, \"BLACK\": 43, \"AMERI_ES\": 192, \"ASIAN\": 38, \"HAWN_PI\": 5, \"OTHER\": 52, \"MULT_RACE\": 124, \"HISPANIC\": 168, \"MALES\": 7738, \"FEMALES\": 8272, \"AGE_UNDER5\": 939, \"AGE_5_17\": 2980, \"AGE_18_21\": 1478, \"AGE_22_29\": 1644, \"AGE_30_39\": 1915, \"AGE_40_49\": 2406, \"AGE_50_64\": 2078, \"AGE_65_UP\": 2570, \"MED_AGE\": 35.600000, \"MED_AGE_M\": 32.800000, \"MED_AGE_F\": 37.800000, \"HOUSEHOLDS\": 6517, \"AVE_HH_SZ\": 2.330000, \"HSEHLD_1_M\": 813, \"HSEHLD_1_F\": 1296, \"MARHH_CHD\": 1516, \"MARHH_NO_C\": 1726, \"MHH_CHILD\": 104, \"FHH_CHILD\": 397, \"FAMILIES\": 4020, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 7033, \"VACANT\": 516, \"OWNER_OCC\": 4169, \"RENTER_OCC\": 2348 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -102.788810678169952, 46.883574933658238 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fargo\", \"CLASS\": \"city\", \"ST\": \"ND\", \"STFIPS\": \"38\", \"PLACEFIP\": \"25700\", \"CAPITAL\": \"N\", \"AREALAND\": 37.936000, \"AREAWATER\": 0.000000, \"POP_CL\": 7, \"POP2000\": 90599, \"WHITE\": 85321, \"BLACK\": 922, \"AMERI_ES\": 1119, \"ASIAN\": 1482, \"HAWN_PI\": 40, \"OTHER\": 400, \"MULT_RACE\": 1315, \"HISPANIC\": 1167, \"MALES\": 45306, \"FEMALES\": 45293, \"AGE_UNDER5\": 5763, \"AGE_5_17\": 13373, \"AGE_18_21\": 9603, \"AGE_22_29\": 16383, \"AGE_30_39\": 12980, \"AGE_40_49\": 12815, \"AGE_50_64\": 10562, \"AGE_65_UP\": 9120, \"MED_AGE\": 30.100000, \"MED_AGE_M\": 29.200000, \"MED_AGE_F\": 31.200000, \"HOUSEHOLDS\": 39268, \"AVE_HH_SZ\": 2.200000, \"HSEHLD_1_M\": 6271, \"HSEHLD_1_F\": 7331, \"MARHH_CHD\": 7686, \"MARHH_NO_C\": 8721, \"MHH_CHILD\": 611, \"FHH_CHILD\": 2095, \"FAMILIES\": 20724, \"AVE_FAM_SZ\": 2.910000, \"HSE_UNITS\": 41200, \"VACANT\": 1932, \"OWNER_OCC\": 18508, \"RENTER_OCC\": 20760 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.808657999974102, 46.871413999718222 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Grand Forks\", \"CLASS\": \"city\", \"ST\": \"ND\", \"STFIPS\": \"38\", \"PLACEFIP\": \"32060\", \"CAPITAL\": \"N\", \"AREALAND\": 19.244000, \"AREAWATER\": 0.003000, \"POP_CL\": 6, \"POP2000\": 49321, \"WHITE\": 46040, \"BLACK\": 426, \"AMERI_ES\": 1357, \"ASIAN\": 472, \"HAWN_PI\": 28, \"OTHER\": 288, \"MULT_RACE\": 710, \"HISPANIC\": 921, \"MALES\": 24904, \"FEMALES\": 24417, \"AGE_UNDER5\": 2910, \"AGE_5_17\": 7655, \"AGE_18_21\": 6865, \"AGE_22_29\": 8406, \"AGE_30_39\": 6203, \"AGE_40_49\": 6687, \"AGE_50_64\": 5759, \"AGE_65_UP\": 4836, \"MED_AGE\": 28.300000, \"MED_AGE_M\": 27.000000, \"MED_AGE_F\": 30.200000, \"HOUSEHOLDS\": 19677, \"AVE_HH_SZ\": 2.310000, \"HSEHLD_1_M\": 2974, \"HSEHLD_1_F\": 3209, \"MARHH_CHD\": 3931, \"MARHH_NO_C\": 4573, \"MHH_CHILD\": 319, \"FHH_CHILD\": 1404, \"FAMILIES\": 11054, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 20838, \"VACANT\": 1161, \"OWNER_OCC\": 9972, \"RENTER_OCC\": 9705 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.054859999930855, 47.912325999582734 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Jamestown\", \"CLASS\": \"city\", \"ST\": \"ND\", \"STFIPS\": \"38\", \"PLACEFIP\": \"40580\", \"CAPITAL\": \"N\", \"AREALAND\": 12.455000, \"AREAWATER\": 0.046000, \"POP_CL\": 6, \"POP2000\": 15527, \"WHITE\": 15037, \"BLACK\": 56, \"AMERI_ES\": 188, \"ASIAN\": 76, \"HAWN_PI\": 7, \"OTHER\": 42, \"MULT_RACE\": 121, \"HISPANIC\": 185, \"MALES\": 7439, \"FEMALES\": 8088, \"AGE_UNDER5\": 885, \"AGE_5_17\": 2479, \"AGE_18_21\": 1298, \"AGE_22_29\": 1452, \"AGE_30_39\": 2016, \"AGE_40_49\": 2330, \"AGE_50_64\": 2261, \"AGE_65_UP\": 2806, \"MED_AGE\": 38.600000, \"MED_AGE_M\": 36.300000, \"MED_AGE_F\": 40.400000, \"HOUSEHOLDS\": 6505, \"AVE_HH_SZ\": 2.170000, \"HSEHLD_1_M\": 928, \"HSEHLD_1_F\": 1476, \"MARHH_CHD\": 1257, \"MARHH_NO_C\": 1785, \"MHH_CHILD\": 122, \"FHH_CHILD\": 397, \"FAMILIES\": 3797, \"AVE_FAM_SZ\": 2.850000, \"HSE_UNITS\": 6970, \"VACANT\": 465, \"OWNER_OCC\": 3878, \"RENTER_OCC\": 2627 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -98.702993998113584, 46.905640996949792 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mandan\", \"CLASS\": \"city\", \"ST\": \"ND\", \"STFIPS\": \"38\", \"PLACEFIP\": \"49900\", \"CAPITAL\": \"N\", \"AREALAND\": 10.177000, \"AREAWATER\": 0.109000, \"POP_CL\": 6, \"POP2000\": 16718, \"WHITE\": 15879, \"BLACK\": 34, \"AMERI_ES\": 505, \"ASIAN\": 56, \"HAWN_PI\": 2, \"OTHER\": 25, \"MULT_RACE\": 217, \"HISPANIC\": 130, \"MALES\": 8232, \"FEMALES\": 8486, \"AGE_UNDER5\": 1124, \"AGE_5_17\": 3382, \"AGE_18_21\": 911, \"AGE_22_29\": 1642, \"AGE_30_39\": 2445, \"AGE_40_49\": 2795, \"AGE_50_64\": 2289, \"AGE_65_UP\": 2130, \"MED_AGE\": 35.800000, \"MED_AGE_M\": 34.700000, \"MED_AGE_F\": 36.900000, \"HOUSEHOLDS\": 6647, \"AVE_HH_SZ\": 2.480000, \"HSEHLD_1_M\": 768, \"HSEHLD_1_F\": 984, \"MARHH_CHD\": 1670, \"MARHH_NO_C\": 1925, \"MHH_CHILD\": 153, \"FHH_CHILD\": 548, \"FAMILIES\": 4551, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 6958, \"VACANT\": 311, \"OWNER_OCC\": 4667, \"RENTER_OCC\": 1980 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -100.891137957615882, 46.828892979755963 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Minot\", \"CLASS\": \"city\", \"ST\": \"ND\", \"STFIPS\": \"38\", \"PLACEFIP\": \"53380\", \"CAPITAL\": \"N\", \"AREALAND\": 14.550000, \"AREAWATER\": 0.020000, \"POP_CL\": 6, \"POP2000\": 36567, \"WHITE\": 34074, \"BLACK\": 490, \"AMERI_ES\": 1008, \"ASIAN\": 226, \"HAWN_PI\": 25, \"OTHER\": 181, \"MULT_RACE\": 563, \"HISPANIC\": 539, \"MALES\": 17626, \"FEMALES\": 18941, \"AGE_UNDER5\": 2418, \"AGE_5_17\": 6072, \"AGE_18_21\": 2837, \"AGE_22_29\": 4757, \"AGE_30_39\": 4694, \"AGE_40_49\": 5219, \"AGE_50_64\": 4952, \"AGE_65_UP\": 5618, \"MED_AGE\": 35.000000, \"MED_AGE_M\": 32.700000, \"MED_AGE_F\": 37.100000, \"HOUSEHOLDS\": 15520, \"AVE_HH_SZ\": 2.270000, \"HSEHLD_1_M\": 2100, \"HSEHLD_1_F\": 2946, \"MARHH_CHD\": 3110, \"MARHH_NO_C\": 4129, \"MHH_CHILD\": 274, \"FHH_CHILD\": 1059, \"FAMILIES\": 9265, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 16475, \"VACANT\": 955, \"OWNER_OCC\": 9684, \"RENTER_OCC\": 5836 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -101.292228925567557, 48.233189972277032 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"West Fargo\", \"CLASS\": \"city\", \"ST\": \"ND\", \"STFIPS\": \"38\", \"PLACEFIP\": \"84780\", \"CAPITAL\": \"N\", \"AREALAND\": 7.291000, \"AREAWATER\": 0.011000, \"POP_CL\": 6, \"POP2000\": 14940, \"WHITE\": 14402, \"BLACK\": 63, \"AMERI_ES\": 156, \"ASIAN\": 42, \"HAWN_PI\": 3, \"OTHER\": 100, \"MULT_RACE\": 174, \"HISPANIC\": 211, \"MALES\": 7371, \"FEMALES\": 7569, \"AGE_UNDER5\": 1109, \"AGE_5_17\": 3258, \"AGE_18_21\": 809, \"AGE_22_29\": 1663, \"AGE_30_39\": 2638, \"AGE_40_49\": 2541, \"AGE_50_64\": 1925, \"AGE_65_UP\": 997, \"MED_AGE\": 32.300000, \"MED_AGE_M\": 32.000000, \"MED_AGE_F\": 32.700000, \"HOUSEHOLDS\": 5771, \"AVE_HH_SZ\": 2.590000, \"HSEHLD_1_M\": 653, \"HSEHLD_1_F\": 717, \"MARHH_CHD\": 1745, \"MARHH_NO_C\": 1563, \"MHH_CHILD\": 150, \"FHH_CHILD\": 421, \"FAMILIES\": 4091, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 5968, \"VACANT\": 197, \"OWNER_OCC\": 3947, \"RENTER_OCC\": 1824 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.894965999966189, 46.871748999678928 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Williston\", \"CLASS\": \"city\", \"ST\": \"ND\", \"STFIPS\": \"38\", \"PLACEFIP\": \"86220\", \"CAPITAL\": \"N\", \"AREALAND\": 6.974000, \"AREAWATER\": 0.066000, \"POP_CL\": 6, \"POP2000\": 12512, \"WHITE\": 11723, \"BLACK\": 21, \"AMERI_ES\": 457, \"ASIAN\": 30, \"HAWN_PI\": 2, \"OTHER\": 21, \"MULT_RACE\": 258, \"HISPANIC\": 154, \"MALES\": 5992, \"FEMALES\": 6520, \"AGE_UNDER5\": 764, \"AGE_5_17\": 2440, \"AGE_18_21\": 801, \"AGE_22_29\": 1034, \"AGE_30_39\": 1489, \"AGE_40_49\": 2108, \"AGE_50_64\": 1772, \"AGE_65_UP\": 2104, \"MED_AGE\": 38.500000, \"MED_AGE_M\": 37.200000, \"MED_AGE_F\": 39.700000, \"HOUSEHOLDS\": 5255, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 742, \"HSEHLD_1_F\": 1052, \"MARHH_CHD\": 1099, \"MARHH_NO_C\": 1394, \"MHH_CHILD\": 109, \"FHH_CHILD\": 403, \"FAMILIES\": 3208, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 5912, \"VACANT\": 657, \"OWNER_OCC\": 3360, \"RENTER_OCC\": 1895 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -103.628063253656663, 48.156476896411938 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Beatrice\", \"CLASS\": \"city\", \"ST\": \"NE\", \"STFIPS\": \"31\", \"PLACEFIP\": \"03390\", \"CAPITAL\": \"N\", \"AREALAND\": 7.498000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12496, \"WHITE\": 12184, \"BLACK\": 42, \"AMERI_ES\": 56, \"ASIAN\": 41, \"HAWN_PI\": 4, \"OTHER\": 38, \"MULT_RACE\": 131, \"HISPANIC\": 120, \"MALES\": 5885, \"FEMALES\": 6611, \"AGE_UNDER5\": 739, \"AGE_5_17\": 2182, \"AGE_18_21\": 639, \"AGE_22_29\": 1147, \"AGE_30_39\": 1563, \"AGE_40_49\": 1762, \"AGE_50_64\": 1808, \"AGE_65_UP\": 2656, \"MED_AGE\": 39.900000, \"MED_AGE_M\": 37.100000, \"MED_AGE_F\": 42.800000, \"HOUSEHOLDS\": 5395, \"AVE_HH_SZ\": 2.240000, \"HSEHLD_1_M\": 624, \"HSEHLD_1_F\": 1203, \"MARHH_CHD\": 1096, \"MARHH_NO_C\": 1593, \"MHH_CHILD\": 91, \"FHH_CHILD\": 336, \"FAMILIES\": 3302, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 5818, \"VACANT\": 423, \"OWNER_OCC\": 3497, \"RENTER_OCC\": 1898 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.743192000034981, 40.268448999809877 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bellevue\", \"CLASS\": \"city\", \"ST\": \"NE\", \"STFIPS\": \"31\", \"PLACEFIP\": \"03950\", \"CAPITAL\": \"N\", \"AREALAND\": 13.263000, \"AREAWATER\": 0.134000, \"POP_CL\": 6, \"POP2000\": 44382, \"WHITE\": 38092, \"BLACK\": 2719, \"AMERI_ES\": 223, \"ASIAN\": 938, \"HAWN_PI\": 49, \"OTHER\": 1235, \"MULT_RACE\": 1126, \"HISPANIC\": 2609, \"MALES\": 22006, \"FEMALES\": 22376, \"AGE_UNDER5\": 3152, \"AGE_5_17\": 9009, \"AGE_18_21\": 2520, \"AGE_22_29\": 5261, \"AGE_30_39\": 6965, \"AGE_40_49\": 6538, \"AGE_50_64\": 6689, \"AGE_65_UP\": 4248, \"MED_AGE\": 33.500000, \"MED_AGE_M\": 32.200000, \"MED_AGE_F\": 34.700000, \"HOUSEHOLDS\": 16937, \"AVE_HH_SZ\": 2.610000, \"HSEHLD_1_M\": 1886, \"HSEHLD_1_F\": 2050, \"MARHH_CHD\": 4345, \"MARHH_NO_C\": 5037, \"MHH_CHILD\": 381, \"FHH_CHILD\": 1279, \"FAMILIES\": 11948, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 17439, \"VACANT\": 502, \"OWNER_OCC\": 11192, \"RENTER_OCC\": 5745 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.934135000007984, 41.15851799995098 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Chalco\", \"CLASS\": \"CDP\", \"ST\": \"NE\", \"STFIPS\": \"31\", \"PLACEFIP\": \"08640\", \"CAPITAL\": \"N\", \"AREALAND\": 2.899000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10736, \"WHITE\": 10225, \"BLACK\": 88, \"AMERI_ES\": 32, \"ASIAN\": 116, \"HAWN_PI\": 2, \"OTHER\": 97, \"MULT_RACE\": 176, \"HISPANIC\": 302, \"MALES\": 5388, \"FEMALES\": 5348, \"AGE_UNDER5\": 1191, \"AGE_5_17\": 2372, \"AGE_18_21\": 439, \"AGE_22_29\": 1579, \"AGE_30_39\": 2606, \"AGE_40_49\": 1540, \"AGE_50_64\": 838, \"AGE_65_UP\": 171, \"MED_AGE\": 29.300000, \"MED_AGE_M\": 29.200000, \"MED_AGE_F\": 29.300000, \"HOUSEHOLDS\": 3719, \"AVE_HH_SZ\": 2.890000, \"HSEHLD_1_M\": 329, \"HSEHLD_1_F\": 265, \"MARHH_CHD\": 1596, \"MARHH_NO_C\": 895, \"MHH_CHILD\": 68, \"FHH_CHILD\": 238, \"FAMILIES\": 2914, \"AVE_FAM_SZ\": 3.280000, \"HSE_UNITS\": 3758, \"VACANT\": 39, \"OWNER_OCC\": 3173, \"RENTER_OCC\": 546 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.13379100001157, 41.183538999928736 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Columbus\", \"CLASS\": \"city\", \"ST\": \"NE\", \"STFIPS\": \"31\", \"PLACEFIP\": \"10110\", \"CAPITAL\": \"N\", \"AREALAND\": 8.972000, \"AREAWATER\": 0.193000, \"POP_CL\": 6, \"POP2000\": 20971, \"WHITE\": 19753, \"BLACK\": 95, \"AMERI_ES\": 74, \"ASIAN\": 100, \"HAWN_PI\": 8, \"OTHER\": 731, \"MULT_RACE\": 210, \"HISPANIC\": 1395, \"MALES\": 10165, \"FEMALES\": 10806, \"AGE_UNDER5\": 1527, \"AGE_5_17\": 4385, \"AGE_18_21\": 1086, \"AGE_22_29\": 1968, \"AGE_30_39\": 2935, \"AGE_40_49\": 3115, \"AGE_50_64\": 2890, \"AGE_65_UP\": 3065, \"MED_AGE\": 35.700000, \"MED_AGE_M\": 34.000000, \"MED_AGE_F\": 37.300000, \"HOUSEHOLDS\": 8302, \"AVE_HH_SZ\": 2.500000, \"HSEHLD_1_M\": 915, \"HSEHLD_1_F\": 1448, \"MARHH_CHD\": 2191, \"MARHH_NO_C\": 2354, \"MHH_CHILD\": 156, \"FHH_CHILD\": 531, \"FAMILIES\": 5562, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 8818, \"VACANT\": 516, \"OWNER_OCC\": 5762, \"RENTER_OCC\": 2540 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.358530000026533, 41.432784999500313 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fremont\", \"CLASS\": \"city\", \"ST\": \"NE\", \"STFIPS\": \"31\", \"PLACEFIP\": \"17670\", \"CAPITAL\": \"N\", \"AREALAND\": 7.419000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 25174, \"WHITE\": 23987, \"BLACK\": 144, \"AMERI_ES\": 78, \"ASIAN\": 154, \"HAWN_PI\": 28, \"OTHER\": 576, \"MULT_RACE\": 207, \"HISPANIC\": 1085, \"MALES\": 11977, \"FEMALES\": 13197, \"AGE_UNDER5\": 1593, \"AGE_5_17\": 4507, \"AGE_18_21\": 1771, \"AGE_22_29\": 2518, \"AGE_30_39\": 3393, \"AGE_40_49\": 3464, \"AGE_50_64\": 3537, \"AGE_65_UP\": 4391, \"MED_AGE\": 37.000000, \"MED_AGE_M\": 35.300000, \"MED_AGE_F\": 38.700000, \"HOUSEHOLDS\": 10171, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 1103, \"HSEHLD_1_F\": 1860, \"MARHH_CHD\": 2262, \"MARHH_NO_C\": 3127, \"MHH_CHILD\": 201, \"FHH_CHILD\": 655, \"FAMILIES\": 6669, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 10576, \"VACANT\": 405, \"OWNER_OCC\": 6446, \"RENTER_OCC\": 3725 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.489930000018902, 41.439735999865242 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Grand Island\", \"CLASS\": \"city\", \"ST\": \"NE\", \"STFIPS\": \"31\", \"PLACEFIP\": \"19595\", \"CAPITAL\": \"N\", \"AREALAND\": 21.467000, \"AREAWATER\": 0.126000, \"POP_CL\": 6, \"POP2000\": 42940, \"WHITE\": 37237, \"BLACK\": 180, \"AMERI_ES\": 143, \"ASIAN\": 562, \"HAWN_PI\": 71, \"OTHER\": 4139, \"MULT_RACE\": 608, \"HISPANIC\": 6845, \"MALES\": 21261, \"FEMALES\": 21679, \"AGE_UNDER5\": 3369, \"AGE_5_17\": 8211, \"AGE_18_21\": 2240, \"AGE_22_29\": 4815, \"AGE_30_39\": 6085, \"AGE_40_49\": 6116, \"AGE_50_64\": 6031, \"AGE_65_UP\": 6073, \"MED_AGE\": 34.800000, \"MED_AGE_M\": 33.600000, \"MED_AGE_F\": 36.200000, \"HOUSEHOLDS\": 16426, \"AVE_HH_SZ\": 2.550000, \"HSEHLD_1_M\": 1853, \"HSEHLD_1_F\": 2599, \"MARHH_CHD\": 4060, \"MARHH_NO_C\": 4643, \"MHH_CHILD\": 367, \"FHH_CHILD\": 1207, \"FAMILIES\": 11034, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 17421, \"VACANT\": 995, \"OWNER_OCC\": 10307, \"RENTER_OCC\": 6119 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -98.357995999788713, 40.922315998344018 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hastings\", \"CLASS\": \"city\", \"ST\": \"NE\", \"STFIPS\": \"31\", \"PLACEFIP\": \"21415\", \"CAPITAL\": \"N\", \"AREALAND\": 9.828000, \"AREAWATER\": 0.131000, \"POP_CL\": 6, \"POP2000\": 24064, \"WHITE\": 22474, \"BLACK\": 189, \"AMERI_ES\": 101, \"ASIAN\": 485, \"HAWN_PI\": 10, \"OTHER\": 575, \"MULT_RACE\": 230, \"HISPANIC\": 1343, \"MALES\": 11640, \"FEMALES\": 12424, \"AGE_UNDER5\": 1564, \"AGE_5_17\": 4123, \"AGE_18_21\": 2004, \"AGE_22_29\": 2583, \"AGE_30_39\": 3106, \"AGE_40_49\": 3402, \"AGE_50_64\": 3275, \"AGE_65_UP\": 4007, \"MED_AGE\": 35.900000, \"MED_AGE_M\": 33.500000, \"MED_AGE_F\": 38.200000, \"HOUSEHOLDS\": 9610, \"AVE_HH_SZ\": 2.360000, \"HSEHLD_1_M\": 1151, \"HSEHLD_1_F\": 1876, \"MARHH_CHD\": 2090, \"MARHH_NO_C\": 2696, \"MHH_CHILD\": 167, \"FHH_CHILD\": 583, \"FAMILIES\": 5952, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 10333, \"VACANT\": 723, \"OWNER_OCC\": 6013, \"RENTER_OCC\": 3597 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -98.3916889998101, 40.589292998312793 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Kearney\", \"CLASS\": \"city\", \"ST\": \"NE\", \"STFIPS\": \"31\", \"PLACEFIP\": \"25055\", \"CAPITAL\": \"N\", \"AREALAND\": 10.979000, \"AREAWATER\": 0.222000, \"POP_CL\": 6, \"POP2000\": 27431, \"WHITE\": 26109, \"BLACK\": 172, \"AMERI_ES\": 105, \"ASIAN\": 253, \"HAWN_PI\": 12, \"OTHER\": 460, \"MULT_RACE\": 320, \"HISPANIC\": 1118, \"MALES\": 13186, \"FEMALES\": 14245, \"AGE_UNDER5\": 1836, \"AGE_5_17\": 4250, \"AGE_18_21\": 4212, \"AGE_22_29\": 4516, \"AGE_30_39\": 3266, \"AGE_40_49\": 3427, \"AGE_50_64\": 3005, \"AGE_65_UP\": 2919, \"MED_AGE\": 27.300000, \"MED_AGE_M\": 26.500000, \"MED_AGE_F\": 28.200000, \"HOUSEHOLDS\": 10549, \"AVE_HH_SZ\": 2.370000, \"HSEHLD_1_M\": 1185, \"HSEHLD_1_F\": 1839, \"MARHH_CHD\": 2284, \"MARHH_NO_C\": 2536, \"MHH_CHILD\": 178, \"FHH_CHILD\": 730, \"FAMILIES\": 6163, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 11099, \"VACANT\": 550, \"OWNER_OCC\": 5955, \"RENTER_OCC\": 4594 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -99.081149998767131, 40.700730996542269 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"La Vista\", \"CLASS\": \"city\", \"ST\": \"NE\", \"STFIPS\": \"31\", \"PLACEFIP\": \"26385\", \"CAPITAL\": \"N\", \"AREALAND\": 2.843000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11699, \"WHITE\": 10582, \"BLACK\": 344, \"AMERI_ES\": 46, \"ASIAN\": 275, \"HAWN_PI\": 12, \"OTHER\": 190, \"MULT_RACE\": 250, \"HISPANIC\": 485, \"MALES\": 5687, \"FEMALES\": 6012, \"AGE_UNDER5\": 964, \"AGE_5_17\": 2524, \"AGE_18_21\": 624, \"AGE_22_29\": 1753, \"AGE_30_39\": 2162, \"AGE_40_49\": 1751, \"AGE_50_64\": 1394, \"AGE_65_UP\": 527, \"MED_AGE\": 29.900000, \"MED_AGE_M\": 29.100000, \"MED_AGE_F\": 30.800000, \"HOUSEHOLDS\": 4404, \"AVE_HH_SZ\": 2.660000, \"HSEHLD_1_M\": 417, \"HSEHLD_1_F\": 524, \"MARHH_CHD\": 1201, \"MARHH_NO_C\": 1113, \"MHH_CHILD\": 97, \"FHH_CHILD\": 462, \"FAMILIES\": 3130, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 4511, \"VACANT\": 107, \"OWNER_OCC\": 2590, \"RENTER_OCC\": 1814 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.039441000009731, 41.184343999940118 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lexington\", \"CLASS\": \"city\", \"ST\": \"NE\", \"STFIPS\": \"31\", \"PLACEFIP\": \"26910\", \"CAPITAL\": \"N\", \"AREALAND\": 2.943000, \"AREAWATER\": 0.012000, \"POP_CL\": 6, \"POP2000\": 10011, \"WHITE\": 6427, \"BLACK\": 44, \"AMERI_ES\": 117, \"ASIAN\": 110, \"HAWN_PI\": 2, \"OTHER\": 3081, \"MULT_RACE\": 230, \"HISPANIC\": 5121, \"MALES\": 5212, \"FEMALES\": 4799, \"AGE_UNDER5\": 1021, \"AGE_5_17\": 2241, \"AGE_18_21\": 605, \"AGE_22_29\": 1203, \"AGE_30_39\": 1558, \"AGE_40_49\": 1304, \"AGE_50_64\": 1033, \"AGE_65_UP\": 1046, \"MED_AGE\": 29.600000, \"MED_AGE_M\": 29.100000, \"MED_AGE_F\": 30.100000, \"HOUSEHOLDS\": 3095, \"AVE_HH_SZ\": 3.140000, \"HSEHLD_1_M\": 276, \"HSEHLD_1_F\": 400, \"MARHH_CHD\": 1011, \"MARHH_NO_C\": 754, \"MHH_CHILD\": 116, \"FHH_CHILD\": 207, \"FAMILIES\": 2237, \"AVE_FAM_SZ\": 3.650000, \"HSE_UNITS\": 3322, \"VACANT\": 227, \"OWNER_OCC\": 1978, \"RENTER_OCC\": 1117 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -99.743853995695559, 40.779433993629752 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lincoln\", \"CLASS\": \"city\", \"ST\": \"NE\", \"STFIPS\": \"31\", \"PLACEFIP\": \"28000\", \"CAPITAL\": \"Y\", \"AREALAND\": 74.641000, \"AREAWATER\": 0.738000, \"POP_CL\": 8, \"POP2000\": 225581, \"WHITE\": 201322, \"BLACK\": 6960, \"AMERI_ES\": 1537, \"ASIAN\": 7048, \"HAWN_PI\": 141, \"OTHER\": 4081, \"MULT_RACE\": 4492, \"HISPANIC\": 8154, \"MALES\": 112361, \"FEMALES\": 113220, \"AGE_UNDER5\": 15199, \"AGE_5_17\": 36707, \"AGE_18_21\": 21986, \"AGE_22_29\": 34225, \"AGE_30_39\": 33374, \"AGE_40_49\": 32294, \"AGE_50_64\": 28295, \"AGE_65_UP\": 23501, \"MED_AGE\": 31.300000, \"MED_AGE_M\": 30.300000, \"MED_AGE_F\": 32.500000, \"HOUSEHOLDS\": 90485, \"AVE_HH_SZ\": 2.360000, \"HSEHLD_1_M\": 12173, \"HSEHLD_1_F\": 15345, \"MARHH_CHD\": 19399, \"MARHH_NO_C\": 22528, \"MHH_CHILD\": 1626, \"FHH_CHILD\": 5684, \"FAMILIES\": 53580, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 95199, \"VACANT\": 4714, \"OWNER_OCC\": 52448, \"RENTER_OCC\": 38037 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.67534500002813, 40.809867999823808 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Norfolk\", \"CLASS\": \"city\", \"ST\": \"NE\", \"STFIPS\": \"31\", \"PLACEFIP\": \"34615\", \"CAPITAL\": \"N\", \"AREALAND\": 9.973000, \"AREAWATER\": 0.100000, \"POP_CL\": 6, \"POP2000\": 23516, \"WHITE\": 21497, \"BLACK\": 272, \"AMERI_ES\": 359, \"ASIAN\": 114, \"HAWN_PI\": 8, \"OTHER\": 986, \"MULT_RACE\": 280, \"HISPANIC\": 1790, \"MALES\": 11425, \"FEMALES\": 12091, \"AGE_UNDER5\": 1669, \"AGE_5_17\": 4415, \"AGE_18_21\": 2116, \"AGE_22_29\": 2546, \"AGE_30_39\": 3137, \"AGE_40_49\": 3309, \"AGE_50_64\": 2978, \"AGE_65_UP\": 3346, \"MED_AGE\": 33.800000, \"MED_AGE_M\": 31.300000, \"MED_AGE_F\": 36.000000, \"HOUSEHOLDS\": 9360, \"AVE_HH_SZ\": 2.430000, \"HSEHLD_1_M\": 1104, \"HSEHLD_1_F\": 1715, \"MARHH_CHD\": 2158, \"MARHH_NO_C\": 2522, \"MHH_CHILD\": 150, \"FHH_CHILD\": 662, \"FAMILIES\": 5866, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 10072, \"VACANT\": 712, \"OWNER_OCC\": 5603, \"RENTER_OCC\": 3757 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.421017000005619, 42.033105999439243 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"North Platte\", \"CLASS\": \"city\", \"ST\": \"NE\", \"STFIPS\": \"31\", \"PLACEFIP\": \"35000\", \"CAPITAL\": \"N\", \"AREALAND\": 10.466000, \"AREAWATER\": 0.110000, \"POP_CL\": 6, \"POP2000\": 23878, \"WHITE\": 22319, \"BLACK\": 170, \"AMERI_ES\": 154, \"ASIAN\": 94, \"HAWN_PI\": 7, \"OTHER\": 787, \"MULT_RACE\": 347, \"HISPANIC\": 1596, \"MALES\": 11601, \"FEMALES\": 12277, \"AGE_UNDER5\": 1672, \"AGE_5_17\": 4547, \"AGE_18_21\": 1360, \"AGE_22_29\": 2503, \"AGE_30_39\": 2999, \"AGE_40_49\": 3542, \"AGE_50_64\": 3493, \"AGE_65_UP\": 3762, \"MED_AGE\": 36.500000, \"MED_AGE_M\": 34.200000, \"MED_AGE_F\": 38.600000, \"HOUSEHOLDS\": 9944, \"AVE_HH_SZ\": 2.340000, \"HSEHLD_1_M\": 1336, \"HSEHLD_1_F\": 1839, \"MARHH_CHD\": 2186, \"MARHH_NO_C\": 2769, \"MHH_CHILD\": 222, \"FHH_CHILD\": 678, \"FAMILIES\": 6228, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 10718, \"VACANT\": 774, \"OWNER_OCC\": 6413, \"RENTER_OCC\": 3531 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -100.770500979252546, 41.135913985279075 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Omaha\", \"CLASS\": \"city\", \"ST\": \"NE\", \"STFIPS\": \"31\", \"PLACEFIP\": \"37000\", \"CAPITAL\": \"N\", \"AREALAND\": 115.703000, \"AREAWATER\": 3.177000, \"POP_CL\": 8, \"POP2000\": 390007, \"WHITE\": 305745, \"BLACK\": 51917, \"AMERI_ES\": 2616, \"ASIAN\": 6773, \"HAWN_PI\": 228, \"OTHER\": 15250, \"MULT_RACE\": 7478, \"HISPANIC\": 29397, \"MALES\": 190032, \"FEMALES\": 199975, \"AGE_UNDER5\": 28249, \"AGE_5_17\": 71698, \"AGE_18_21\": 23776, \"AGE_22_29\": 51096, \"AGE_30_39\": 58537, \"AGE_40_49\": 57085, \"AGE_50_64\": 53544, \"AGE_65_UP\": 46022, \"MED_AGE\": 33.500000, \"MED_AGE_M\": 32.200000, \"MED_AGE_F\": 34.900000, \"HOUSEHOLDS\": 156738, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 22074, \"HSEHLD_1_F\": 27993, \"MARHH_CHD\": 31326, \"MARHH_NO_C\": 37285, \"MHH_CHILD\": 2942, \"FHH_CHILD\": 12786, \"FAMILIES\": 94933, \"AVE_FAM_SZ\": 3.100000, \"HSE_UNITS\": 165731, \"VACANT\": 8993, \"OWNER_OCC\": 93449, \"RENTER_OCC\": 63289 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.012990000009125, 41.260481999942748 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Papillion\", \"CLASS\": \"city\", \"ST\": \"NE\", \"STFIPS\": \"31\", \"PLACEFIP\": \"38295\", \"CAPITAL\": \"N\", \"AREALAND\": 4.166000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 16363, \"WHITE\": 15221, \"BLACK\": 402, \"AMERI_ES\": 62, \"ASIAN\": 230, \"HAWN_PI\": 4, \"OTHER\": 164, \"MULT_RACE\": 280, \"HISPANIC\": 478, \"MALES\": 7975, \"FEMALES\": 8388, \"AGE_UNDER5\": 1068, \"AGE_5_17\": 4100, \"AGE_18_21\": 801, \"AGE_22_29\": 1407, \"AGE_30_39\": 2492, \"AGE_40_49\": 2874, \"AGE_50_64\": 2310, \"AGE_65_UP\": 1311, \"MED_AGE\": 34.100000, \"MED_AGE_M\": 32.600000, \"MED_AGE_F\": 35.300000, \"HOUSEHOLDS\": 5505, \"AVE_HH_SZ\": 2.900000, \"HSEHLD_1_M\": 372, \"HSEHLD_1_F\": 585, \"MARHH_CHD\": 2103, \"MARHH_NO_C\": 1601, \"MHH_CHILD\": 94, \"FHH_CHILD\": 334, \"FAMILIES\": 4337, \"AVE_FAM_SZ\": 3.300000, \"HSE_UNITS\": 5751, \"VACANT\": 246, \"OWNER_OCC\": 4040, \"RENTER_OCC\": 1465 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.04086700000984, 41.155883999940059 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Scottsbluff\", \"CLASS\": \"city\", \"ST\": \"NE\", \"STFIPS\": \"31\", \"PLACEFIP\": \"44245\", \"CAPITAL\": \"N\", \"AREALAND\": 5.882000, \"AREAWATER\": 0.045000, \"POP_CL\": 6, \"POP2000\": 14732, \"WHITE\": 12062, \"BLACK\": 65, \"AMERI_ES\": 471, \"ASIAN\": 110, \"HAWN_PI\": 6, \"OTHER\": 1709, \"MULT_RACE\": 309, \"HISPANIC\": 3476, \"MALES\": 6852, \"FEMALES\": 7880, \"AGE_UNDER5\": 1045, \"AGE_5_17\": 2863, \"AGE_18_21\": 861, \"AGE_22_29\": 1510, \"AGE_30_39\": 1769, \"AGE_40_49\": 2016, \"AGE_50_64\": 2039, \"AGE_65_UP\": 2629, \"MED_AGE\": 36.300000, \"MED_AGE_M\": 34.300000, \"MED_AGE_F\": 38.300000, \"HOUSEHOLDS\": 6088, \"AVE_HH_SZ\": 2.360000, \"HSEHLD_1_M\": 710, \"HSEHLD_1_F\": 1265, \"MARHH_CHD\": 1170, \"MARHH_NO_C\": 1673, \"MHH_CHILD\": 139, \"FHH_CHILD\": 556, \"FAMILIES\": 3841, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 6559, \"VACANT\": 471, \"OWNER_OCC\": 3536, \"RENTER_OCC\": 2552 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -103.66070849504618, 41.867139917920348 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"South Sioux City\", \"CLASS\": \"city\", \"ST\": \"NE\", \"STFIPS\": \"31\", \"PLACEFIP\": \"46030\", \"CAPITAL\": \"N\", \"AREALAND\": 4.904000, \"AREAWATER\": 0.298000, \"POP_CL\": 6, \"POP2000\": 11925, \"WHITE\": 9049, \"BLACK\": 102, \"AMERI_ES\": 281, \"ASIAN\": 381, \"HAWN_PI\": 11, \"OTHER\": 1737, \"MULT_RACE\": 364, \"HISPANIC\": 2958, \"MALES\": 5797, \"FEMALES\": 6128, \"AGE_UNDER5\": 1090, \"AGE_5_17\": 2465, \"AGE_18_21\": 746, \"AGE_22_29\": 1537, \"AGE_30_39\": 1663, \"AGE_40_49\": 1668, \"AGE_50_64\": 1520, \"AGE_65_UP\": 1236, \"MED_AGE\": 30.700000, \"MED_AGE_M\": 30.000000, \"MED_AGE_F\": 31.600000, \"HOUSEHOLDS\": 4304, \"AVE_HH_SZ\": 2.720000, \"HSEHLD_1_M\": 420, \"HSEHLD_1_F\": 683, \"MARHH_CHD\": 1123, \"MARHH_NO_C\": 1015, \"MHH_CHILD\": 124, \"FHH_CHILD\": 426, \"FAMILIES\": 2961, \"AVE_FAM_SZ\": 3.260000, \"HSE_UNITS\": 4557, \"VACANT\": 253, \"OWNER_OCC\": 2551, \"RENTER_OCC\": 1753 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.414732000012592, 42.471094999874602 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Berlin\", \"CLASS\": \"city\", \"ST\": \"NH\", \"STFIPS\": \"33\", \"PLACEFIP\": \"05140\", \"CAPITAL\": \"N\", \"AREALAND\": 61.726000, \"AREAWATER\": 0.734000, \"POP_CL\": 6, \"POP2000\": 10331, \"WHITE\": 10150, \"BLACK\": 19, \"AMERI_ES\": 24, \"ASIAN\": 38, \"HAWN_PI\": 1, \"OTHER\": 16, \"MULT_RACE\": 83, \"HISPANIC\": 68, \"MALES\": 4922, \"FEMALES\": 5409, \"AGE_UNDER5\": 529, \"AGE_5_17\": 1672, \"AGE_18_21\": 431, \"AGE_22_29\": 749, \"AGE_30_39\": 1365, \"AGE_40_49\": 1645, \"AGE_50_64\": 1604, \"AGE_65_UP\": 2336, \"MED_AGE\": 42.500000, \"MED_AGE_M\": 40.300000, \"MED_AGE_F\": 44.600000, \"HOUSEHOLDS\": 4555, \"AVE_HH_SZ\": 2.220000, \"HSEHLD_1_M\": 550, \"HSEHLD_1_F\": 897, \"MARHH_CHD\": 759, \"MARHH_NO_C\": 1454, \"MHH_CHILD\": 117, \"FHH_CHILD\": 316, \"FAMILIES\": 2902, \"AVE_FAM_SZ\": 2.740000, \"HSE_UNITS\": 5111, \"VACANT\": 556, \"OWNER_OCC\": 2790, \"RENTER_OCC\": 1765 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.191909762204759, 44.478730169377073 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Claremont\", \"CLASS\": \"city\", \"ST\": \"NH\", \"STFIPS\": \"33\", \"PLACEFIP\": \"12900\", \"CAPITAL\": \"N\", \"AREALAND\": 43.121000, \"AREAWATER\": 0.964000, \"POP_CL\": 6, \"POP2000\": 13151, \"WHITE\": 12845, \"BLACK\": 41, \"AMERI_ES\": 43, \"ASIAN\": 81, \"HAWN_PI\": 4, \"OTHER\": 16, \"MULT_RACE\": 121, \"HISPANIC\": 66, \"MALES\": 6323, \"FEMALES\": 6828, \"AGE_UNDER5\": 775, \"AGE_5_17\": 2291, \"AGE_18_21\": 585, \"AGE_22_29\": 1272, \"AGE_30_39\": 1922, \"AGE_40_49\": 1893, \"AGE_50_64\": 2196, \"AGE_65_UP\": 2217, \"MED_AGE\": 38.800000, \"MED_AGE_M\": 37.600000, \"MED_AGE_F\": 39.800000, \"HOUSEHOLDS\": 5685, \"AVE_HH_SZ\": 2.280000, \"HSEHLD_1_M\": 771, \"HSEHLD_1_F\": 1060, \"MARHH_CHD\": 993, \"MARHH_NO_C\": 1594, \"MHH_CHILD\": 169, \"FHH_CHILD\": 397, \"FAMILIES\": 3428, \"AVE_FAM_SZ\": 2.860000, \"HSE_UNITS\": 6074, \"VACANT\": 389, \"OWNER_OCC\": 3271, \"RENTER_OCC\": 2414 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -72.344861100206856, 43.37722675273907 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Concord\", \"CLASS\": \"city\", \"ST\": \"NH\", \"STFIPS\": \"33\", \"PLACEFIP\": \"14200\", \"CAPITAL\": \"Y\", \"AREALAND\": 64.290000, \"AREAWATER\": 3.234000, \"POP_CL\": 6, \"POP2000\": 40687, \"WHITE\": 38863, \"BLACK\": 421, \"AMERI_ES\": 120, \"ASIAN\": 598, \"HAWN_PI\": 13, \"OTHER\": 139, \"MULT_RACE\": 533, \"HISPANIC\": 591, \"MALES\": 20149, \"FEMALES\": 20538, \"AGE_UNDER5\": 2373, \"AGE_5_17\": 7022, \"AGE_18_21\": 1834, \"AGE_22_29\": 4500, \"AGE_30_39\": 6815, \"AGE_40_49\": 6759, \"AGE_50_64\": 5820, \"AGE_65_UP\": 5564, \"MED_AGE\": 37.000000, \"MED_AGE_M\": 35.400000, \"MED_AGE_F\": 38.700000, \"HOUSEHOLDS\": 16281, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 2148, \"HSEHLD_1_F\": 3176, \"MARHH_CHD\": 3330, \"MARHH_NO_C\": 3885, \"MHH_CHILD\": 342, \"FHH_CHILD\": 1306, \"FAMILIES\": 9630, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 16881, \"VACANT\": 600, \"OWNER_OCC\": 8373, \"RENTER_OCC\": 7908 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.549565187275164, 43.220123865697524 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Derry\", \"CLASS\": \"CDP\", \"ST\": \"NH\", \"STFIPS\": \"33\", \"PLACEFIP\": \"17860\", \"CAPITAL\": \"N\", \"AREALAND\": 15.423000, \"AREAWATER\": 0.251000, \"POP_CL\": 6, \"POP2000\": 22661, \"WHITE\": 21659, \"BLACK\": 238, \"AMERI_ES\": 50, \"ASIAN\": 253, \"HAWN_PI\": 4, \"OTHER\": 171, \"MULT_RACE\": 286, \"HISPANIC\": 501, \"MALES\": 11191, \"FEMALES\": 11470, \"AGE_UNDER5\": 1589, \"AGE_5_17\": 4992, \"AGE_18_21\": 1005, \"AGE_22_29\": 2577, \"AGE_30_39\": 4187, \"AGE_40_49\": 3892, \"AGE_50_64\": 2817, \"AGE_65_UP\": 1602, \"MED_AGE\": 33.100000, \"MED_AGE_M\": 32.300000, \"MED_AGE_F\": 33.800000, \"HOUSEHOLDS\": 8670, \"AVE_HH_SZ\": 2.590000, \"HSEHLD_1_M\": 1158, \"HSEHLD_1_F\": 1095, \"MARHH_CHD\": 2407, \"MARHH_NO_C\": 1906, \"MHH_CHILD\": 245, \"FHH_CHILD\": 748, \"FAMILIES\": 5739, \"AVE_FAM_SZ\": 3.180000, \"HSE_UNITS\": 8942, \"VACANT\": 272, \"OWNER_OCC\": 4806, \"RENTER_OCC\": 3864 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.3090167678764, 42.88396399403284 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Dover\", \"CLASS\": \"city\", \"ST\": \"NH\", \"STFIPS\": \"33\", \"PLACEFIP\": \"18820\", \"CAPITAL\": \"N\", \"AREALAND\": 26.719000, \"AREAWATER\": 2.335000, \"POP_CL\": 6, \"POP2000\": 26884, \"WHITE\": 25396, \"BLACK\": 301, \"AMERI_ES\": 53, \"ASIAN\": 635, \"HAWN_PI\": 15, \"OTHER\": 93, \"MULT_RACE\": 391, \"HISPANIC\": 306, \"MALES\": 12914, \"FEMALES\": 13970, \"AGE_UNDER5\": 1527, \"AGE_5_17\": 4075, \"AGE_18_21\": 1405, \"AGE_22_29\": 4009, \"AGE_30_39\": 4610, \"AGE_40_49\": 3959, \"AGE_50_64\": 3607, \"AGE_65_UP\": 3692, \"MED_AGE\": 35.500000, \"MED_AGE_M\": 34.300000, \"MED_AGE_F\": 36.600000, \"HOUSEHOLDS\": 11573, \"AVE_HH_SZ\": 2.260000, \"HSEHLD_1_M\": 1573, \"HSEHLD_1_F\": 2020, \"MARHH_CHD\": 2079, \"MARHH_NO_C\": 2841, \"MHH_CHILD\": 213, \"FHH_CHILD\": 756, \"FAMILIES\": 6496, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 11924, \"VACANT\": 351, \"OWNER_OCC\": 5920, \"RENTER_OCC\": 5653 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -70.879123845981766, 43.191028219825292 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Keene\", \"CLASS\": \"city\", \"ST\": \"NH\", \"STFIPS\": \"33\", \"PLACEFIP\": \"39300\", \"CAPITAL\": \"N\", \"AREALAND\": 37.306000, \"AREAWATER\": 0.254000, \"POP_CL\": 6, \"POP2000\": 22563, \"WHITE\": 22034, \"BLACK\": 89, \"AMERI_ES\": 45, \"ASIAN\": 153, \"HAWN_PI\": 7, \"OTHER\": 50, \"MULT_RACE\": 185, \"HISPANIC\": 172, \"MALES\": 10572, \"FEMALES\": 11991, \"AGE_UNDER5\": 944, \"AGE_5_17\": 3472, \"AGE_18_21\": 3030, \"AGE_22_29\": 2496, \"AGE_30_39\": 2744, \"AGE_40_49\": 3107, \"AGE_50_64\": 3345, \"AGE_65_UP\": 3425, \"MED_AGE\": 35.300000, \"MED_AGE_M\": 33.400000, \"MED_AGE_F\": 37.000000, \"HOUSEHOLDS\": 8955, \"AVE_HH_SZ\": 2.270000, \"HSEHLD_1_M\": 1074, \"HSEHLD_1_F\": 1745, \"MARHH_CHD\": 1590, \"MARHH_NO_C\": 2330, \"MHH_CHILD\": 164, \"FHH_CHILD\": 568, \"FAMILIES\": 5083, \"AVE_FAM_SZ\": 2.860000, \"HSE_UNITS\": 9295, \"VACANT\": 340, \"OWNER_OCC\": 5120, \"RENTER_OCC\": 3835 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -72.288674962936469, 42.942472279025978 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Laconia\", \"CLASS\": \"city\", \"ST\": \"NH\", \"STFIPS\": \"33\", \"PLACEFIP\": \"40180\", \"CAPITAL\": \"N\", \"AREALAND\": 20.279000, \"AREAWATER\": 6.301000, \"POP_CL\": 6, \"POP2000\": 16411, \"WHITE\": 15885, \"BLACK\": 90, \"AMERI_ES\": 68, \"ASIAN\": 120, \"HAWN_PI\": 4, \"OTHER\": 44, \"MULT_RACE\": 200, \"HISPANIC\": 162, \"MALES\": 7969, \"FEMALES\": 8442, \"AGE_UNDER5\": 869, \"AGE_5_17\": 2794, \"AGE_18_21\": 819, \"AGE_22_29\": 1642, \"AGE_30_39\": 2369, \"AGE_40_49\": 2391, \"AGE_50_64\": 2699, \"AGE_65_UP\": 2828, \"MED_AGE\": 38.800000, \"MED_AGE_M\": 36.800000, \"MED_AGE_F\": 40.700000, \"HOUSEHOLDS\": 6724, \"AVE_HH_SZ\": 2.320000, \"HSEHLD_1_M\": 849, \"HSEHLD_1_F\": 1187, \"MARHH_CHD\": 1208, \"MARHH_NO_C\": 1914, \"MHH_CHILD\": 161, \"FHH_CHILD\": 514, \"FAMILIES\": 4170, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 8554, \"VACANT\": 1830, \"OWNER_OCC\": 3819, \"RENTER_OCC\": 2905 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.468397677266893, 43.550801429786318 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lebanon\", \"CLASS\": \"city\", \"ST\": \"NH\", \"STFIPS\": \"33\", \"PLACEFIP\": \"41300\", \"CAPITAL\": \"N\", \"AREALAND\": 40.363000, \"AREAWATER\": 0.994000, \"POP_CL\": 6, \"POP2000\": 12568, \"WHITE\": 11862, \"BLACK\": 104, \"AMERI_ES\": 54, \"ASIAN\": 335, \"HAWN_PI\": 4, \"OTHER\": 51, \"MULT_RACE\": 158, \"HISPANIC\": 206, \"MALES\": 5936, \"FEMALES\": 6632, \"AGE_UNDER5\": 784, \"AGE_5_17\": 2052, \"AGE_18_21\": 493, \"AGE_22_29\": 1564, \"AGE_30_39\": 1957, \"AGE_40_49\": 2047, \"AGE_50_64\": 1872, \"AGE_65_UP\": 1799, \"MED_AGE\": 37.100000, \"MED_AGE_M\": 35.800000, \"MED_AGE_F\": 38.500000, \"HOUSEHOLDS\": 5500, \"AVE_HH_SZ\": 2.230000, \"HSEHLD_1_M\": 764, \"HSEHLD_1_F\": 1090, \"MARHH_CHD\": 1098, \"MARHH_NO_C\": 1408, \"MHH_CHILD\": 107, \"FHH_CHILD\": 350, \"FAMILIES\": 3178, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 5707, \"VACANT\": 207, \"OWNER_OCC\": 2893, \"RENTER_OCC\": 2607 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -72.255565751735432, 43.643917877243155 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Londonderry\", \"CLASS\": \"CDP\", \"ST\": \"NH\", \"STFIPS\": \"33\", \"PLACEFIP\": \"43140\", \"CAPITAL\": \"N\", \"AREALAND\": 12.198000, \"AREAWATER\": 0.024000, \"POP_CL\": 6, \"POP2000\": 11417, \"WHITE\": 11100, \"BLACK\": 57, \"AMERI_ES\": 17, \"ASIAN\": 106, \"HAWN_PI\": 5, \"OTHER\": 24, \"MULT_RACE\": 108, \"HISPANIC\": 174, \"MALES\": 5561, \"FEMALES\": 5856, \"AGE_UNDER5\": 838, \"AGE_5_17\": 2812, \"AGE_18_21\": 483, \"AGE_22_29\": 776, \"AGE_30_39\": 1881, \"AGE_40_49\": 2225, \"AGE_50_64\": 1736, \"AGE_65_UP\": 666, \"MED_AGE\": 35.100000, \"MED_AGE_M\": 34.700000, \"MED_AGE_F\": 35.400000, \"HOUSEHOLDS\": 3832, \"AVE_HH_SZ\": 2.980000, \"HSEHLD_1_M\": 233, \"HSEHLD_1_F\": 295, \"MARHH_CHD\": 1495, \"MARHH_NO_C\": 1101, \"MHH_CHILD\": 86, \"FHH_CHILD\": 271, \"FAMILIES\": 3131, \"AVE_FAM_SZ\": 3.300000, \"HSE_UNITS\": 3881, \"VACANT\": 49, \"OWNER_OCC\": 3198, \"RENTER_OCC\": 634 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.357829455475098, 42.849345063576678 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Manchester\", \"CLASS\": \"city\", \"ST\": \"NH\", \"STFIPS\": \"33\", \"PLACEFIP\": \"45140\", \"CAPITAL\": \"N\", \"AREALAND\": 33.012000, \"AREAWATER\": 1.897000, \"POP_CL\": 8, \"POP2000\": 107006, \"WHITE\": 98178, \"BLACK\": 2246, \"AMERI_ES\": 326, \"ASIAN\": 2487, \"HAWN_PI\": 38, \"OTHER\": 1880, \"MULT_RACE\": 1851, \"HISPANIC\": 4944, \"MALES\": 52394, \"FEMALES\": 54612, \"AGE_UNDER5\": 7162, \"AGE_5_17\": 18196, \"AGE_18_21\": 5377, \"AGE_22_29\": 13808, \"AGE_30_39\": 18305, \"AGE_40_49\": 15726, \"AGE_50_64\": 14603, \"AGE_65_UP\": 13829, \"MED_AGE\": 34.900000, \"MED_AGE_M\": 33.800000, \"MED_AGE_F\": 36.100000, \"HOUSEHOLDS\": 44247, \"AVE_HH_SZ\": 2.360000, \"HSEHLD_1_M\": 6574, \"HSEHLD_1_F\": 7468, \"MARHH_CHD\": 8509, \"MARHH_NO_C\": 10334, \"MHH_CHILD\": 1156, \"FHH_CHILD\": 3337, \"FAMILIES\": 26114, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 45892, \"VACANT\": 1645, \"OWNER_OCC\": 20367, \"RENTER_OCC\": 23880 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.452012281341467, 42.986316437101848 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Nashua\", \"CLASS\": \"city\", \"ST\": \"NH\", \"STFIPS\": \"33\", \"PLACEFIP\": \"50260\", \"CAPITAL\": \"N\", \"AREALAND\": 30.892000, \"AREAWATER\": 0.953000, \"POP_CL\": 7, \"POP2000\": 86605, \"WHITE\": 77291, \"BLACK\": 1740, \"AMERI_ES\": 275, \"ASIAN\": 3363, \"HAWN_PI\": 29, \"OTHER\": 2642, \"MULT_RACE\": 1265, \"HISPANIC\": 5388, \"MALES\": 42775, \"FEMALES\": 43830, \"AGE_UNDER5\": 5644, \"AGE_5_17\": 15710, \"AGE_18_21\": 3879, \"AGE_22_29\": 9747, \"AGE_30_39\": 14996, \"AGE_40_49\": 13711, \"AGE_50_64\": 12876, \"AGE_65_UP\": 10042, \"MED_AGE\": 35.800000, \"MED_AGE_M\": 34.700000, \"MED_AGE_F\": 36.900000, \"HOUSEHOLDS\": 34614, \"AVE_HH_SZ\": 2.460000, \"HSEHLD_1_M\": 4643, \"HSEHLD_1_F\": 5154, \"MARHH_CHD\": 7897, \"MARHH_NO_C\": 9182, \"MHH_CHILD\": 792, \"FHH_CHILD\": 2234, \"FAMILIES\": 22083, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 35387, \"VACANT\": 773, \"OWNER_OCC\": 19703, \"RENTER_OCC\": 14911 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.481257675271451, 42.751069802540215 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Portsmouth\", \"CLASS\": \"city\", \"ST\": \"NH\", \"STFIPS\": \"33\", \"PLACEFIP\": \"62900\", \"CAPITAL\": \"N\", \"AREALAND\": 15.612000, \"AREAWATER\": 1.181000, \"POP_CL\": 6, \"POP2000\": 20784, \"WHITE\": 19443, \"BLACK\": 442, \"AMERI_ES\": 44, \"ASIAN\": 508, \"HAWN_PI\": 5, \"OTHER\": 59, \"MULT_RACE\": 283, \"HISPANIC\": 280, \"MALES\": 10099, \"FEMALES\": 10685, \"AGE_UNDER5\": 1009, \"AGE_5_17\": 2556, \"AGE_18_21\": 615, \"AGE_22_29\": 2901, \"AGE_30_39\": 3869, \"AGE_40_49\": 3139, \"AGE_50_64\": 3311, \"AGE_65_UP\": 3384, \"MED_AGE\": 38.500000, \"MED_AGE_M\": 36.600000, \"MED_AGE_F\": 40.400000, \"HOUSEHOLDS\": 9875, \"AVE_HH_SZ\": 2.040000, \"HSEHLD_1_M\": 1685, \"HSEHLD_1_F\": 2161, \"MARHH_CHD\": 1342, \"MARHH_NO_C\": 2388, \"MHH_CHILD\": 127, \"FHH_CHILD\": 502, \"FAMILIES\": 4862, \"AVE_FAM_SZ\": 2.750000, \"HSE_UNITS\": 10186, \"VACANT\": 311, \"OWNER_OCC\": 4936, \"RENTER_OCC\": 4939 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -70.773452979624764, 43.067084643131544 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Rochester\", \"CLASS\": \"city\", \"ST\": \"NH\", \"STFIPS\": \"33\", \"PLACEFIP\": \"65140\", \"CAPITAL\": \"N\", \"AREALAND\": 45.151000, \"AREAWATER\": 0.627000, \"POP_CL\": 6, \"POP2000\": 28461, \"WHITE\": 27640, \"BLACK\": 149, \"AMERI_ES\": 62, \"ASIAN\": 248, \"HAWN_PI\": 9, \"OTHER\": 74, \"MULT_RACE\": 279, \"HISPANIC\": 255, \"MALES\": 13838, \"FEMALES\": 14623, \"AGE_UNDER5\": 1929, \"AGE_5_17\": 5266, \"AGE_18_21\": 1281, \"AGE_22_29\": 2802, \"AGE_30_39\": 4603, \"AGE_40_49\": 4479, \"AGE_50_64\": 4267, \"AGE_65_UP\": 3834, \"MED_AGE\": 36.700000, \"MED_AGE_M\": 35.500000, \"MED_AGE_F\": 37.800000, \"HOUSEHOLDS\": 11434, \"AVE_HH_SZ\": 2.460000, \"HSEHLD_1_M\": 1308, \"HSEHLD_1_F\": 1628, \"MARHH_CHD\": 2521, \"MARHH_NO_C\": 3298, \"MHH_CHILD\": 339, \"FHH_CHILD\": 893, \"FAMILIES\": 7648, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 11836, \"VACANT\": 402, \"OWNER_OCC\": 7643, \"RENTER_OCC\": 3791 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -70.973675960795177, 43.30212314397204 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Somersworth\", \"CLASS\": \"city\", \"ST\": \"NH\", \"STFIPS\": \"33\", \"PLACEFIP\": \"69940\", \"CAPITAL\": \"N\", \"AREALAND\": 9.781000, \"AREAWATER\": 0.229000, \"POP_CL\": 6, \"POP2000\": 11477, \"WHITE\": 11037, \"BLACK\": 66, \"AMERI_ES\": 22, \"ASIAN\": 110, \"HAWN_PI\": 1, \"OTHER\": 68, \"MULT_RACE\": 173, \"HISPANIC\": 185, \"MALES\": 5521, \"FEMALES\": 5956, \"AGE_UNDER5\": 832, \"AGE_5_17\": 2182, \"AGE_18_21\": 542, \"AGE_22_29\": 1268, \"AGE_30_39\": 2010, \"AGE_40_49\": 1680, \"AGE_50_64\": 1590, \"AGE_65_UP\": 1373, \"MED_AGE\": 34.900000, \"MED_AGE_M\": 33.700000, \"MED_AGE_F\": 35.800000, \"HOUSEHOLDS\": 4687, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 524, \"HSEHLD_1_F\": 739, \"MARHH_CHD\": 990, \"MARHH_NO_C\": 1237, \"MHH_CHILD\": 134, \"FHH_CHILD\": 455, \"FAMILIES\": 3079, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 4841, \"VACANT\": 154, \"OWNER_OCC\": 2659, \"RENTER_OCC\": 2028 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -70.876092617396139, 43.253827335404509 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Asbury Park\", \"CLASS\": \"city\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"01960\", \"CAPITAL\": \"N\", \"AREALAND\": 1.430000, \"AREAWATER\": 0.169000, \"POP_CL\": 6, \"POP2000\": 16930, \"WHITE\": 4194, \"BLACK\": 10515, \"AMERI_ES\": 55, \"ASIAN\": 119, \"HAWN_PI\": 12, \"OTHER\": 1098, \"MULT_RACE\": 937, \"HISPANIC\": 2637, \"MALES\": 7943, \"FEMALES\": 8987, \"AGE_UNDER5\": 1539, \"AGE_5_17\": 3550, \"AGE_18_21\": 988, \"AGE_22_29\": 2192, \"AGE_30_39\": 2516, \"AGE_40_49\": 2213, \"AGE_50_64\": 2041, \"AGE_65_UP\": 1891, \"MED_AGE\": 30.600000, \"MED_AGE_M\": 29.400000, \"MED_AGE_F\": 31.800000, \"HOUSEHOLDS\": 6754, \"AVE_HH_SZ\": 2.460000, \"HSEHLD_1_M\": 1203, \"HSEHLD_1_F\": 1455, \"MARHH_CHD\": 655, \"MARHH_NO_C\": 707, \"MHH_CHILD\": 195, \"FHH_CHILD\": 1244, \"FAMILIES\": 3587, \"AVE_FAM_SZ\": 3.360000, \"HSE_UNITS\": 7744, \"VACANT\": 990, \"OWNER_OCC\": 1317, \"RENTER_OCC\": 5437 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.012210987570953, 40.222405691272421 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Atlantic City\", \"CLASS\": \"city\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"02080\", \"CAPITAL\": \"N\", \"AREALAND\": 11.350000, \"AREAWATER\": 6.003000, \"POP_CL\": 6, \"POP2000\": 40517, \"WHITE\": 10809, \"BLACK\": 17892, \"AMERI_ES\": 193, \"ASIAN\": 4213, \"HAWN_PI\": 24, \"OTHER\": 5575, \"MULT_RACE\": 1811, \"HISPANIC\": 10107, \"MALES\": 19852, \"FEMALES\": 20665, \"AGE_UNDER5\": 3041, \"AGE_5_17\": 7386, \"AGE_18_21\": 2014, \"AGE_22_29\": 4849, \"AGE_30_39\": 6363, \"AGE_40_49\": 5443, \"AGE_50_64\": 5687, \"AGE_65_UP\": 5734, \"MED_AGE\": 34.700000, \"MED_AGE_M\": 33.600000, \"MED_AGE_F\": 35.900000, \"HOUSEHOLDS\": 15848, \"AVE_HH_SZ\": 2.460000, \"HSEHLD_1_M\": 2688, \"HSEHLD_1_F\": 3214, \"MARHH_CHD\": 1713, \"MARHH_NO_C\": 2221, \"MHH_CHILD\": 462, \"FHH_CHILD\": 2222, \"FAMILIES\": 8708, \"AVE_FAM_SZ\": 3.260000, \"HSE_UNITS\": 20219, \"VACANT\": 4371, \"OWNER_OCC\": 4585, \"RENTER_OCC\": 11263 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.439119894940859, 39.364970932559807 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Avenel\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"02350\", \"CAPITAL\": \"N\", \"AREALAND\": 3.442000, \"AREAWATER\": 0.020000, \"POP_CL\": 6, \"POP2000\": 17552, \"WHITE\": 9393, \"BLACK\": 3451, \"AMERI_ES\": 62, \"ASIAN\": 3318, \"HAWN_PI\": 5, \"OTHER\": 641, \"MULT_RACE\": 682, \"HISPANIC\": 1729, \"MALES\": 10062, \"FEMALES\": 7490, \"AGE_UNDER5\": 1096, \"AGE_5_17\": 2558, \"AGE_18_21\": 545, \"AGE_22_29\": 2376, \"AGE_30_39\": 4024, \"AGE_40_49\": 3159, \"AGE_50_64\": 2286, \"AGE_65_UP\": 1508, \"MED_AGE\": 35.500000, \"MED_AGE_M\": 35.500000, \"MED_AGE_F\": 35.300000, \"HOUSEHOLDS\": 5233, \"AVE_HH_SZ\": 2.730000, \"HSEHLD_1_M\": 521, \"HSEHLD_1_F\": 608, \"MARHH_CHD\": 1508, \"MARHH_NO_C\": 1416, \"MHH_CHILD\": 93, \"FHH_CHILD\": 320, \"FAMILIES\": 3798, \"AVE_FAM_SZ\": 3.230000, \"HSE_UNITS\": 5353, \"VACANT\": 120, \"OWNER_OCC\": 2859, \"RENTER_OCC\": 2374 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.279892725923474, 40.582665615044668 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Barclay-Kingston\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"02905\", \"CAPITAL\": \"N\", \"AREALAND\": 2.850000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10728, \"WHITE\": 9371, \"BLACK\": 386, \"AMERI_ES\": 18, \"ASIAN\": 734, \"HAWN_PI\": 1, \"OTHER\": 70, \"MULT_RACE\": 148, \"HISPANIC\": 244, \"MALES\": 5217, \"FEMALES\": 5511, \"AGE_UNDER5\": 611, \"AGE_5_17\": 1934, \"AGE_18_21\": 335, \"AGE_22_29\": 688, \"AGE_30_39\": 1454, \"AGE_40_49\": 1776, \"AGE_50_64\": 1837, \"AGE_65_UP\": 2093, \"MED_AGE\": 42.000000, \"MED_AGE_M\": 40.100000, \"MED_AGE_F\": 43.600000, \"HOUSEHOLDS\": 4106, \"AVE_HH_SZ\": 2.600000, \"HSEHLD_1_M\": 310, \"HSEHLD_1_F\": 618, \"MARHH_CHD\": 1130, \"MARHH_NO_C\": 1484, \"MHH_CHILD\": 39, \"FHH_CHILD\": 112, \"FAMILIES\": 3033, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 4214, \"VACANT\": 108, \"OWNER_OCC\": 3319, \"RENTER_OCC\": 787 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.995978290744873, 39.909866329308109 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bayonne\", \"CLASS\": \"city\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"03580\", \"CAPITAL\": \"N\", \"AREALAND\": 5.626000, \"AREAWATER\": 5.628000, \"POP_CL\": 7, \"POP2000\": 61842, \"WHITE\": 48631, \"BLACK\": 3416, \"AMERI_ES\": 106, \"ASIAN\": 2562, \"HAWN_PI\": 30, \"OTHER\": 4611, \"MULT_RACE\": 2486, \"HISPANIC\": 11015, \"MALES\": 29269, \"FEMALES\": 32573, \"AGE_UNDER5\": 3603, \"AGE_5_17\": 10069, \"AGE_18_21\": 2778, \"AGE_22_29\": 6554, \"AGE_30_39\": 9751, \"AGE_40_49\": 9484, \"AGE_50_64\": 9366, \"AGE_65_UP\": 10237, \"MED_AGE\": 38.100000, \"MED_AGE_M\": 36.400000, \"MED_AGE_F\": 39.800000, \"HOUSEHOLDS\": 25545, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 3326, \"HSEHLD_1_F\": 5064, \"MARHH_CHD\": 4945, \"MARHH_NO_C\": 5997, \"MHH_CHILD\": 421, \"FHH_CHILD\": 1872, \"FAMILIES\": 16022, \"AVE_FAM_SZ\": 3.100000, \"HSE_UNITS\": 26826, \"VACANT\": 1281, \"OWNER_OCC\": 10230, \"RENTER_OCC\": 15315 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.117790031451605, 40.666558278342869 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Beachwood\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"04180\", \"CAPITAL\": \"N\", \"AREALAND\": 2.761000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10375, \"WHITE\": 9925, \"BLACK\": 101, \"AMERI_ES\": 13, \"ASIAN\": 117, \"HAWN_PI\": 6, \"OTHER\": 115, \"MULT_RACE\": 98, \"HISPANIC\": 438, \"MALES\": 5111, \"FEMALES\": 5264, \"AGE_UNDER5\": 720, \"AGE_5_17\": 2240, \"AGE_18_21\": 486, \"AGE_22_29\": 891, \"AGE_30_39\": 1791, \"AGE_40_49\": 1805, \"AGE_50_64\": 1546, \"AGE_65_UP\": 896, \"MED_AGE\": 35.200000, \"MED_AGE_M\": 34.500000, \"MED_AGE_F\": 36.000000, \"HOUSEHOLDS\": 3475, \"AVE_HH_SZ\": 2.980000, \"HSEHLD_1_M\": 238, \"HSEHLD_1_F\": 283, \"MARHH_CHD\": 1189, \"MARHH_NO_C\": 1071, \"MHH_CHILD\": 81, \"FHH_CHILD\": 188, \"FAMILIES\": 2817, \"AVE_FAM_SZ\": 3.310000, \"HSE_UNITS\": 3623, \"VACANT\": 148, \"OWNER_OCC\": 3083, \"RENTER_OCC\": 392 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.196284977367412, 39.931073884046803 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Belleville\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"04690\", \"CAPITAL\": \"N\", \"AREALAND\": 3.344000, \"AREAWATER\": 0.069000, \"POP_CL\": 6, \"POP2000\": 35928, \"WHITE\": 24950, \"BLACK\": 1926, \"AMERI_ES\": 60, \"ASIAN\": 4062, \"HAWN_PI\": 26, \"OTHER\": 3532, \"MULT_RACE\": 1372, \"HISPANIC\": 8507, \"MALES\": 17330, \"FEMALES\": 18598, \"AGE_UNDER5\": 2133, \"AGE_5_17\": 5713, \"AGE_18_21\": 1585, \"AGE_22_29\": 4589, \"AGE_30_39\": 6242, \"AGE_40_49\": 5465, \"AGE_50_64\": 5395, \"AGE_65_UP\": 4806, \"MED_AGE\": 36.200000, \"MED_AGE_M\": 34.700000, \"MED_AGE_F\": 37.800000, \"HOUSEHOLDS\": 13731, \"AVE_HH_SZ\": 2.600000, \"HSEHLD_1_M\": 1697, \"HSEHLD_1_F\": 2131, \"MARHH_CHD\": 2954, \"MARHH_NO_C\": 3501, \"MHH_CHILD\": 253, \"FHH_CHILD\": 837, \"FAMILIES\": 9091, \"AVE_FAM_SZ\": 3.230000, \"HSE_UNITS\": 14144, \"VACANT\": 413, \"OWNER_OCC\": 6997, \"RENTER_OCC\": 6734 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.161556430962349, 40.793506106559136 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bellmawr\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"04750\", \"CAPITAL\": \"N\", \"AREALAND\": 3.031000, \"AREAWATER\": 0.104000, \"POP_CL\": 6, \"POP2000\": 11262, \"WHITE\": 10450, \"BLACK\": 133, \"AMERI_ES\": 7, \"ASIAN\": 344, \"HAWN_PI\": 2, \"OTHER\": 173, \"MULT_RACE\": 153, \"HISPANIC\": 394, \"MALES\": 5531, \"FEMALES\": 5731, \"AGE_UNDER5\": 571, \"AGE_5_17\": 1769, \"AGE_18_21\": 548, \"AGE_22_29\": 1057, \"AGE_30_39\": 1671, \"AGE_40_49\": 1729, \"AGE_50_64\": 1948, \"AGE_65_UP\": 1969, \"MED_AGE\": 40.100000, \"MED_AGE_M\": 38.400000, \"MED_AGE_F\": 41.900000, \"HOUSEHOLDS\": 4446, \"AVE_HH_SZ\": 2.530000, \"HSEHLD_1_M\": 495, \"HSEHLD_1_F\": 629, \"MARHH_CHD\": 885, \"MARHH_NO_C\": 1441, \"MHH_CHILD\": 99, \"FHH_CHILD\": 213, \"FAMILIES\": 3136, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 4561, \"VACANT\": 115, \"OWNER_OCC\": 3271, \"RENTER_OCC\": 1175 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.091684798371276, 39.867016095604534 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bergenfield\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"05170\", \"CAPITAL\": \"N\", \"AREALAND\": 2.895000, \"AREAWATER\": 0.004000, \"POP_CL\": 6, \"POP2000\": 26247, \"WHITE\": 16510, \"BLACK\": 1812, \"AMERI_ES\": 63, \"ASIAN\": 5357, \"HAWN_PI\": 4, \"OTHER\": 1698, \"MULT_RACE\": 803, \"HISPANIC\": 4474, \"MALES\": 12534, \"FEMALES\": 13713, \"AGE_UNDER5\": 1779, \"AGE_5_17\": 4742, \"AGE_18_21\": 1097, \"AGE_22_29\": 2360, \"AGE_30_39\": 4193, \"AGE_40_49\": 4412, \"AGE_50_64\": 4108, \"AGE_65_UP\": 3556, \"MED_AGE\": 37.600000, \"MED_AGE_M\": 36.100000, \"MED_AGE_F\": 39.200000, \"HOUSEHOLDS\": 8981, \"AVE_HH_SZ\": 2.920000, \"HSEHLD_1_M\": 661, \"HSEHLD_1_F\": 1207, \"MARHH_CHD\": 2759, \"MARHH_NO_C\": 2614, \"MHH_CHILD\": 94, \"FHH_CHILD\": 417, \"FAMILIES\": 6750, \"AVE_FAM_SZ\": 3.410000, \"HSE_UNITS\": 9147, \"VACANT\": 166, \"OWNER_OCC\": 6388, \"RENTER_OCC\": 2593 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.998913745840625, 40.923754826150876 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Berkeley Heights\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"05350\", \"CAPITAL\": \"N\", \"AREALAND\": 6.263000, \"AREAWATER\": 0.011000, \"POP_CL\": 6, \"POP2000\": 13407, \"WHITE\": 12019, \"BLACK\": 149, \"AMERI_ES\": 11, \"ASIAN\": 1055, \"HAWN_PI\": 0, \"OTHER\": 82, \"MULT_RACE\": 91, \"HISPANIC\": 494, \"MALES\": 6389, \"FEMALES\": 7018, \"AGE_UNDER5\": 1070, \"AGE_5_17\": 2525, \"AGE_18_21\": 317, \"AGE_22_29\": 730, \"AGE_30_39\": 2134, \"AGE_40_49\": 2109, \"AGE_50_64\": 2322, \"AGE_65_UP\": 2200, \"MED_AGE\": 39.700000, \"MED_AGE_M\": 38.800000, \"MED_AGE_F\": 40.600000, \"HOUSEHOLDS\": 4479, \"AVE_HH_SZ\": 2.890000, \"HSEHLD_1_M\": 228, \"HSEHLD_1_F\": 433, \"MARHH_CHD\": 1705, \"MARHH_NO_C\": 1616, \"MHH_CHILD\": 23, \"FHH_CHILD\": 132, \"FAMILIES\": 3719, \"AVE_FAM_SZ\": 3.210000, \"HSE_UNITS\": 4562, \"VACANT\": 83, \"OWNER_OCC\": 4114, \"RENTER_OCC\": 365 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.429804754034876, 40.677410067408239 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bloomfield\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"06250\", \"CAPITAL\": \"N\", \"AREALAND\": 5.321000, \"AREAWATER\": 0.007000, \"POP_CL\": 6, \"POP2000\": 47683, \"WHITE\": 33421, \"BLACK\": 5573, \"AMERI_ES\": 91, \"ASIAN\": 3998, \"HAWN_PI\": 31, \"OTHER\": 3061, \"MULT_RACE\": 1508, \"HISPANIC\": 6901, \"MALES\": 22695, \"FEMALES\": 24988, \"AGE_UNDER5\": 2820, \"AGE_5_17\": 7219, \"AGE_18_21\": 2078, \"AGE_22_29\": 5759, \"AGE_30_39\": 8357, \"AGE_40_49\": 7409, \"AGE_50_64\": 7214, \"AGE_65_UP\": 6827, \"MED_AGE\": 37.100000, \"MED_AGE_M\": 35.800000, \"MED_AGE_F\": 38.300000, \"HOUSEHOLDS\": 19017, \"AVE_HH_SZ\": 2.490000, \"HSEHLD_1_M\": 2372, \"HSEHLD_1_F\": 3417, \"MARHH_CHD\": 4054, \"MARHH_NO_C\": 4835, \"MHH_CHILD\": 283, \"FHH_CHILD\": 1018, \"FAMILIES\": 12069, \"AVE_FAM_SZ\": 3.160000, \"HSE_UNITS\": 19508, \"VACANT\": 491, \"OWNER_OCC\": 10150, \"RENTER_OCC\": 8867 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.189065974582846, 40.803005994219838 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bound Brook\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"06790\", \"CAPITAL\": \"N\", \"AREALAND\": 1.706000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10155, \"WHITE\": 8385, \"BLACK\": 256, \"AMERI_ES\": 31, \"ASIAN\": 292, \"HAWN_PI\": 7, \"OTHER\": 880, \"MULT_RACE\": 304, \"HISPANIC\": 3541, \"MALES\": 5251, \"FEMALES\": 4904, \"AGE_UNDER5\": 699, \"AGE_5_17\": 1506, \"AGE_18_21\": 549, \"AGE_22_29\": 1461, \"AGE_30_39\": 2014, \"AGE_40_49\": 1403, \"AGE_50_64\": 1255, \"AGE_65_UP\": 1268, \"MED_AGE\": 34.200000, \"MED_AGE_M\": 32.900000, \"MED_AGE_F\": 35.900000, \"HOUSEHOLDS\": 3615, \"AVE_HH_SZ\": 2.810000, \"HSEHLD_1_M\": 359, \"HSEHLD_1_F\": 475, \"MARHH_CHD\": 842, \"MARHH_NO_C\": 934, \"MHH_CHILD\": 82, \"FHH_CHILD\": 195, \"FAMILIES\": 2461, \"AVE_FAM_SZ\": 3.210000, \"HSE_UNITS\": 3802, \"VACANT\": 187, \"OWNER_OCC\": 1937, \"RENTER_OCC\": 1678 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.53960093392466, 40.565207683104774 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bridgeton\", \"CLASS\": \"city\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"07600\", \"CAPITAL\": \"N\", \"AREALAND\": 6.222000, \"AREAWATER\": 0.226000, \"POP_CL\": 6, \"POP2000\": 22771, \"WHITE\": 8854, \"BLACK\": 9528, \"AMERI_ES\": 271, \"ASIAN\": 159, \"HAWN_PI\": 20, \"OTHER\": 3112, \"MULT_RACE\": 827, \"HISPANIC\": 5576, \"MALES\": 12899, \"FEMALES\": 9872, \"AGE_UNDER5\": 1658, \"AGE_5_17\": 4270, \"AGE_18_21\": 1324, \"AGE_22_29\": 3381, \"AGE_30_39\": 4431, \"AGE_40_49\": 2808, \"AGE_50_64\": 2414, \"AGE_65_UP\": 2485, \"MED_AGE\": 31.500000, \"MED_AGE_M\": 31.100000, \"MED_AGE_F\": 32.700000, \"HOUSEHOLDS\": 6182, \"AVE_HH_SZ\": 2.960000, \"HSEHLD_1_M\": 588, \"HSEHLD_1_F\": 1103, \"MARHH_CHD\": 1036, \"MARHH_NO_C\": 1149, \"MHH_CHILD\": 181, \"FHH_CHILD\": 1017, \"FAMILIES\": 4181, \"AVE_FAM_SZ\": 3.490000, \"HSE_UNITS\": 6795, \"VACANT\": 613, \"OWNER_OCC\": 2993, \"RENTER_OCC\": 3189 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.230517628622707, 39.429566767925188 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Brigantine\", \"CLASS\": \"city\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"07810\", \"CAPITAL\": \"N\", \"AREALAND\": 6.429000, \"AREAWATER\": 3.357000, \"POP_CL\": 6, \"POP2000\": 12594, \"WHITE\": 10472, \"BLACK\": 496, \"AMERI_ES\": 23, \"ASIAN\": 720, \"HAWN_PI\": 6, \"OTHER\": 588, \"MULT_RACE\": 289, \"HISPANIC\": 1185, \"MALES\": 6138, \"FEMALES\": 6456, \"AGE_UNDER5\": 701, \"AGE_5_17\": 1920, \"AGE_18_21\": 392, \"AGE_22_29\": 1088, \"AGE_30_39\": 2015, \"AGE_40_49\": 2027, \"AGE_50_64\": 2361, \"AGE_65_UP\": 2090, \"MED_AGE\": 40.700000, \"MED_AGE_M\": 39.900000, \"MED_AGE_F\": 41.700000, \"HOUSEHOLDS\": 5473, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 801, \"HSEHLD_1_F\": 877, \"MARHH_CHD\": 863, \"MARHH_NO_C\": 1592, \"MHH_CHILD\": 122, \"FHH_CHILD\": 327, \"FAMILIES\": 3338, \"AVE_FAM_SZ\": 2.890000, \"HSE_UNITS\": 9304, \"VACANT\": 3831, \"OWNER_OCC\": 3487, \"RENTER_OCC\": 1986 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.379162829224185, 39.40215514497546 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Browns Mills\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"08455\", \"CAPITAL\": \"N\", \"AREALAND\": 5.436000, \"AREAWATER\": 0.214000, \"POP_CL\": 6, \"POP2000\": 11257, \"WHITE\": 7261, \"BLACK\": 2568, \"AMERI_ES\": 56, \"ASIAN\": 419, \"HAWN_PI\": 8, \"OTHER\": 352, \"MULT_RACE\": 593, \"HISPANIC\": 1052, \"MALES\": 5377, \"FEMALES\": 5880, \"AGE_UNDER5\": 775, \"AGE_5_17\": 2521, \"AGE_18_21\": 609, \"AGE_22_29\": 1145, \"AGE_30_39\": 1778, \"AGE_40_49\": 1873, \"AGE_50_64\": 1615, \"AGE_65_UP\": 941, \"MED_AGE\": 33.900000, \"MED_AGE_M\": 32.900000, \"MED_AGE_F\": 34.800000, \"HOUSEHOLDS\": 3946, \"AVE_HH_SZ\": 2.840000, \"HSEHLD_1_M\": 368, \"HSEHLD_1_F\": 432, \"MARHH_CHD\": 926, \"MARHH_NO_C\": 1008, \"MHH_CHILD\": 158, \"FHH_CHILD\": 498, \"FAMILIES\": 2940, \"AVE_FAM_SZ\": 3.240000, \"HSE_UNITS\": 4245, \"VACANT\": 299, \"OWNER_OCC\": 3102, \"RENTER_OCC\": 844 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.571865350553722, 39.979345539161372 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Camden\", \"CLASS\": \"city\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"10000\", \"CAPITAL\": \"N\", \"AREALAND\": 8.822000, \"AREAWATER\": 1.557000, \"POP_CL\": 7, \"POP2000\": 79904, \"WHITE\": 13454, \"BLACK\": 42628, \"AMERI_ES\": 435, \"ASIAN\": 1958, \"HAWN_PI\": 59, \"OTHER\": 18239, \"MULT_RACE\": 3131, \"HISPANIC\": 31019, \"MALES\": 38784, \"FEMALES\": 41120, \"AGE_UNDER5\": 7302, \"AGE_5_17\": 20372, \"AGE_18_21\": 5729, \"AGE_22_29\": 10068, \"AGE_30_39\": 11943, \"AGE_40_49\": 9551, \"AGE_50_64\": 8849, \"AGE_65_UP\": 6090, \"MED_AGE\": 27.200000, \"MED_AGE_M\": 26.000000, \"MED_AGE_F\": 28.300000, \"HOUSEHOLDS\": 24177, \"AVE_HH_SZ\": 3.120000, \"HSEHLD_1_M\": 2423, \"HSEHLD_1_F\": 3016, \"MARHH_CHD\": 3284, \"MARHH_NO_C\": 3035, \"MHH_CHILD\": 983, \"FHH_CHILD\": 5935, \"FAMILIES\": 17434, \"AVE_FAM_SZ\": 3.620000, \"HSE_UNITS\": 29769, \"VACANT\": 5592, \"OWNER_OCC\": 11141, \"RENTER_OCC\": 13036 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.106248589203119, 39.937198064086196 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Carteret\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"10750\", \"CAPITAL\": \"N\", \"AREALAND\": 4.362000, \"AREAWATER\": 0.631000, \"POP_CL\": 6, \"POP2000\": 20709, \"WHITE\": 14239, \"BLACK\": 1975, \"AMERI_ES\": 49, \"ASIAN\": 1722, \"HAWN_PI\": 7, \"OTHER\": 1918, \"MULT_RACE\": 799, \"HISPANIC\": 4839, \"MALES\": 10050, \"FEMALES\": 10659, \"AGE_UNDER5\": 1276, \"AGE_5_17\": 3952, \"AGE_18_21\": 1019, \"AGE_22_29\": 1963, \"AGE_30_39\": 3232, \"AGE_40_49\": 3238, \"AGE_50_64\": 2930, \"AGE_65_UP\": 3099, \"MED_AGE\": 37.000000, \"MED_AGE_M\": 35.700000, \"MED_AGE_F\": 38.300000, \"HOUSEHOLDS\": 7039, \"AVE_HH_SZ\": 2.880000, \"HSEHLD_1_M\": 652, \"HSEHLD_1_F\": 892, \"MARHH_CHD\": 1797, \"MARHH_NO_C\": 1867, \"MHH_CHILD\": 145, \"FHH_CHILD\": 559, \"FAMILIES\": 5212, \"AVE_FAM_SZ\": 3.380000, \"HSE_UNITS\": 7320, \"VACANT\": 281, \"OWNER_OCC\": 4810, \"RENTER_OCC\": 2229 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.230079341512521, 40.582509810006918 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cedar Grove\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"11230\", \"CAPITAL\": \"N\", \"AREALAND\": 4.222000, \"AREAWATER\": 0.131000, \"POP_CL\": 6, \"POP2000\": 12300, \"WHITE\": 11076, \"BLACK\": 368, \"AMERI_ES\": 6, \"ASIAN\": 667, \"HAWN_PI\": 3, \"OTHER\": 57, \"MULT_RACE\": 123, \"HISPANIC\": 393, \"MALES\": 5722, \"FEMALES\": 6578, \"AGE_UNDER5\": 666, \"AGE_5_17\": 1700, \"AGE_18_21\": 353, \"AGE_22_29\": 914, \"AGE_30_39\": 1804, \"AGE_40_49\": 1778, \"AGE_50_64\": 2319, \"AGE_65_UP\": 2766, \"MED_AGE\": 44.000000, \"MED_AGE_M\": 41.700000, \"MED_AGE_F\": 46.200000, \"HOUSEHOLDS\": 4403, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 355, \"HSEHLD_1_F\": 662, \"MARHH_CHD\": 1138, \"MARHH_NO_C\": 1655, \"MHH_CHILD\": 17, \"FHH_CHILD\": 102, \"FAMILIES\": 3240, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 4470, \"VACANT\": 67, \"OWNER_OCC\": 3483, \"RENTER_OCC\": 920 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.22908613672152, 40.855859837074213 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cherry Hill Mall\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"12385\", \"CAPITAL\": \"N\", \"AREALAND\": 3.696000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 13238, \"WHITE\": 11008, \"BLACK\": 668, \"AMERI_ES\": 6, \"ASIAN\": 1196, \"HAWN_PI\": 11, \"OTHER\": 145, \"MULT_RACE\": 204, \"HISPANIC\": 399, \"MALES\": 6236, \"FEMALES\": 7002, \"AGE_UNDER5\": 703, \"AGE_5_17\": 2277, \"AGE_18_21\": 462, \"AGE_22_29\": 825, \"AGE_30_39\": 1826, \"AGE_40_49\": 2104, \"AGE_50_64\": 2333, \"AGE_65_UP\": 2708, \"MED_AGE\": 42.400000, \"MED_AGE_M\": 40.800000, \"MED_AGE_F\": 44.000000, \"HOUSEHOLDS\": 5062, \"AVE_HH_SZ\": 2.560000, \"HSEHLD_1_M\": 441, \"HSEHLD_1_F\": 772, \"MARHH_CHD\": 1255, \"MARHH_NO_C\": 1747, \"MHH_CHILD\": 59, \"FHH_CHILD\": 185, \"FAMILIES\": 3652, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 5219, \"VACANT\": 157, \"OWNER_OCC\": 4051, \"RENTER_OCC\": 1011 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.012261843803415, 39.940448290133666 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Clark\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"13180\", \"CAPITAL\": \"N\", \"AREALAND\": 4.345000, \"AREAWATER\": 0.141000, \"POP_CL\": 6, \"POP2000\": 14597, \"WHITE\": 13956, \"BLACK\": 44, \"AMERI_ES\": 2, \"ASIAN\": 402, \"HAWN_PI\": 0, \"OTHER\": 92, \"MULT_RACE\": 101, \"HISPANIC\": 535, \"MALES\": 6934, \"FEMALES\": 7663, \"AGE_UNDER5\": 759, \"AGE_5_17\": 2276, \"AGE_18_21\": 466, \"AGE_22_29\": 1031, \"AGE_30_39\": 2096, \"AGE_40_49\": 2297, \"AGE_50_64\": 2509, \"AGE_65_UP\": 3163, \"MED_AGE\": 42.700000, \"MED_AGE_M\": 41.400000, \"MED_AGE_F\": 44.000000, \"HOUSEHOLDS\": 5637, \"AVE_HH_SZ\": 2.560000, \"HSEHLD_1_M\": 459, \"HSEHLD_1_F\": 902, \"MARHH_CHD\": 1390, \"MARHH_NO_C\": 2069, \"MHH_CHILD\": 29, \"FHH_CHILD\": 167, \"FAMILIES\": 4124, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 5709, \"VACANT\": 72, \"OWNER_OCC\": 4592, \"RENTER_OCC\": 1045 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.309439432489498, 40.620341504994109 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cliffside Park\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"13570\", \"CAPITAL\": \"N\", \"AREALAND\": 0.965000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 23007, \"WHITE\": 17911, \"BLACK\": 422, \"AMERI_ES\": 58, \"ASIAN\": 2772, \"HAWN_PI\": 5, \"OTHER\": 1144, \"MULT_RACE\": 695, \"HISPANIC\": 4177, \"MALES\": 11091, \"FEMALES\": 11916, \"AGE_UNDER5\": 1129, \"AGE_5_17\": 2752, \"AGE_18_21\": 827, \"AGE_22_29\": 2706, \"AGE_30_39\": 4152, \"AGE_40_49\": 3305, \"AGE_50_64\": 3907, \"AGE_65_UP\": 4229, \"MED_AGE\": 39.800000, \"MED_AGE_M\": 37.700000, \"MED_AGE_F\": 42.100000, \"HOUSEHOLDS\": 10027, \"AVE_HH_SZ\": 2.290000, \"HSEHLD_1_M\": 1371, \"HSEHLD_1_F\": 2019, \"MARHH_CHD\": 1702, \"MARHH_NO_C\": 2933, \"MHH_CHILD\": 109, \"FHH_CHILD\": 387, \"FAMILIES\": 6041, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 10375, \"VACANT\": 348, \"OWNER_OCC\": 4704, \"RENTER_OCC\": 5323 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.989611572496088, 40.821546858063655 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Clifton\", \"CLASS\": \"city\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"13690\", \"CAPITAL\": \"N\", \"AREALAND\": 11.295000, \"AREAWATER\": 0.104000, \"POP_CL\": 7, \"POP2000\": 78672, \"WHITE\": 59960, \"BLACK\": 2277, \"AMERI_ES\": 192, \"ASIAN\": 5066, \"HAWN_PI\": 27, \"OTHER\": 7553, \"MULT_RACE\": 3597, \"HISPANIC\": 15608, \"MALES\": 37560, \"FEMALES\": 41112, \"AGE_UNDER5\": 4700, \"AGE_5_17\": 12272, \"AGE_18_21\": 3237, \"AGE_22_29\": 8145, \"AGE_30_39\": 12487, \"AGE_40_49\": 12017, \"AGE_50_64\": 11985, \"AGE_65_UP\": 13829, \"MED_AGE\": 38.800000, \"MED_AGE_M\": 37.200000, \"MED_AGE_F\": 40.500000, \"HOUSEHOLDS\": 30244, \"AVE_HH_SZ\": 2.590000, \"HSEHLD_1_M\": 3177, \"HSEHLD_1_F\": 5271, \"MARHH_CHD\": 6934, \"MARHH_NO_C\": 8583, \"MHH_CHILD\": 415, \"FHH_CHILD\": 1391, \"FAMILIES\": 20352, \"AVE_FAM_SZ\": 3.200000, \"HSE_UNITS\": 31060, \"VACANT\": 816, \"OWNER_OCC\": 18411, \"RENTER_OCC\": 11833 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.154629309641791, 40.867905141972962 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Collingswood\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"14260\", \"CAPITAL\": \"N\", \"AREALAND\": 1.828000, \"AREAWATER\": 0.094000, \"POP_CL\": 6, \"POP2000\": 14326, \"WHITE\": 12388, \"BLACK\": 955, \"AMERI_ES\": 48, \"ASIAN\": 395, \"HAWN_PI\": 3, \"OTHER\": 346, \"MULT_RACE\": 191, \"HISPANIC\": 812, \"MALES\": 6732, \"FEMALES\": 7594, \"AGE_UNDER5\": 785, \"AGE_5_17\": 2332, \"AGE_18_21\": 664, \"AGE_22_29\": 1742, \"AGE_30_39\": 2322, \"AGE_40_49\": 2343, \"AGE_50_64\": 2072, \"AGE_65_UP\": 2066, \"MED_AGE\": 37.100000, \"MED_AGE_M\": 35.100000, \"MED_AGE_F\": 39.100000, \"HOUSEHOLDS\": 6263, \"AVE_HH_SZ\": 2.270000, \"HSEHLD_1_M\": 911, \"HSEHLD_1_F\": 1380, \"MARHH_CHD\": 1082, \"MARHH_NO_C\": 1309, \"MHH_CHILD\": 104, \"FHH_CHILD\": 416, \"FAMILIES\": 3461, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 6866, \"VACANT\": 603, \"OWNER_OCC\": 3435, \"RENTER_OCC\": 2828 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.074734573653501, 39.916144137590393 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Colonia\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"14380\", \"CAPITAL\": \"N\", \"AREALAND\": 3.877000, \"AREAWATER\": 0.007000, \"POP_CL\": 6, \"POP2000\": 17811, \"WHITE\": 15317, \"BLACK\": 847, \"AMERI_ES\": 18, \"ASIAN\": 1124, \"HAWN_PI\": 11, \"OTHER\": 227, \"MULT_RACE\": 267, \"HISPANIC\": 886, \"MALES\": 8581, \"FEMALES\": 9230, \"AGE_UNDER5\": 1114, \"AGE_5_17\": 3102, \"AGE_18_21\": 653, \"AGE_22_29\": 1260, \"AGE_30_39\": 2775, \"AGE_40_49\": 2955, \"AGE_50_64\": 3059, \"AGE_65_UP\": 2893, \"MED_AGE\": 40.000000, \"MED_AGE_M\": 38.900000, \"MED_AGE_F\": 41.100000, \"HOUSEHOLDS\": 6184, \"AVE_HH_SZ\": 2.880000, \"HSEHLD_1_M\": 307, \"HSEHLD_1_F\": 633, \"MARHH_CHD\": 1917, \"MARHH_NO_C\": 2330, \"MHH_CHILD\": 53, \"FHH_CHILD\": 194, \"FAMILIES\": 5080, \"AVE_FAM_SZ\": 3.210000, \"HSE_UNITS\": 6254, \"VACANT\": 70, \"OWNER_OCC\": 5558, \"RENTER_OCC\": 626 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.31436000371751, 40.591375484040483 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cranford\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"15670\", \"CAPITAL\": \"N\", \"AREALAND\": 4.820000, \"AREAWATER\": 0.020000, \"POP_CL\": 6, \"POP2000\": 22578, \"WHITE\": 21156, \"BLACK\": 583, \"AMERI_ES\": 9, \"ASIAN\": 485, \"HAWN_PI\": 5, \"OTHER\": 151, \"MULT_RACE\": 189, \"HISPANIC\": 879, \"MALES\": 10724, \"FEMALES\": 11854, \"AGE_UNDER5\": 1465, \"AGE_5_17\": 3797, \"AGE_18_21\": 671, \"AGE_22_29\": 1622, \"AGE_30_39\": 3570, \"AGE_40_49\": 3721, \"AGE_50_64\": 3684, \"AGE_65_UP\": 4048, \"MED_AGE\": 40.400000, \"MED_AGE_M\": 38.800000, \"MED_AGE_F\": 41.800000, \"HOUSEHOLDS\": 8397, \"AVE_HH_SZ\": 2.620000, \"HSEHLD_1_M\": 602, \"HSEHLD_1_F\": 1240, \"MARHH_CHD\": 2442, \"MARHH_NO_C\": 2850, \"MHH_CHILD\": 50, \"FHH_CHILD\": 270, \"FAMILIES\": 6225, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 8560, \"VACANT\": 163, \"OWNER_OCC\": 6971, \"RENTER_OCC\": 1426 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.303815941984951, 40.656307529246348 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Dover\", \"CLASS\": \"town\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"18070\", \"CAPITAL\": \"N\", \"AREALAND\": 2.679000, \"AREAWATER\": 0.025000, \"POP_CL\": 6, \"POP2000\": 18188, \"WHITE\": 12631, \"BLACK\": 1242, \"AMERI_ES\": 62, \"ASIAN\": 450, \"HAWN_PI\": 5, \"OTHER\": 2909, \"MULT_RACE\": 889, \"HISPANIC\": 10539, \"MALES\": 9377, \"FEMALES\": 8811, \"AGE_UNDER5\": 1278, \"AGE_5_17\": 2934, \"AGE_18_21\": 1046, \"AGE_22_29\": 2533, \"AGE_30_39\": 3504, \"AGE_40_49\": 2598, \"AGE_50_64\": 2373, \"AGE_65_UP\": 1922, \"MED_AGE\": 33.700000, \"MED_AGE_M\": 32.400000, \"MED_AGE_F\": 35.300000, \"HOUSEHOLDS\": 5436, \"AVE_HH_SZ\": 3.290000, \"HSEHLD_1_M\": 466, \"HSEHLD_1_F\": 690, \"MARHH_CHD\": 1398, \"MARHH_NO_C\": 1329, \"MHH_CHILD\": 195, \"FHH_CHILD\": 345, \"FAMILIES\": 3918, \"AVE_FAM_SZ\": 3.550000, \"HSE_UNITS\": 5568, \"VACANT\": 132, \"OWNER_OCC\": 2875, \"RENTER_OCC\": 2561 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.558329812080629, 40.885903640503692 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Dumont\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"18400\", \"CAPITAL\": \"N\", \"AREALAND\": 1.986000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 17503, \"WHITE\": 14663, \"BLACK\": 261, \"AMERI_ES\": 17, \"ASIAN\": 1918, \"HAWN_PI\": 1, \"OTHER\": 339, \"MULT_RACE\": 304, \"HISPANIC\": 1463, \"MALES\": 8416, \"FEMALES\": 9087, \"AGE_UNDER5\": 1173, \"AGE_5_17\": 3091, \"AGE_18_21\": 612, \"AGE_22_29\": 1357, \"AGE_30_39\": 3025, \"AGE_40_49\": 2730, \"AGE_50_64\": 2813, \"AGE_65_UP\": 2702, \"MED_AGE\": 38.400000, \"MED_AGE_M\": 37.100000, \"MED_AGE_F\": 39.700000, \"HOUSEHOLDS\": 6370, \"AVE_HH_SZ\": 2.750000, \"HSEHLD_1_M\": 474, \"HSEHLD_1_F\": 948, \"MARHH_CHD\": 1908, \"MARHH_NO_C\": 2027, \"MHH_CHILD\": 64, \"FHH_CHILD\": 239, \"FAMILIES\": 4757, \"AVE_FAM_SZ\": 3.240000, \"HSE_UNITS\": 6465, \"VACANT\": 95, \"OWNER_OCC\": 4736, \"RENTER_OCC\": 1634 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.993544224336929, 40.945179852837882 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"East Brunswick\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"18970\", \"CAPITAL\": \"N\", \"AREALAND\": 21.954000, \"AREAWATER\": 0.425000, \"POP_CL\": 6, \"POP2000\": 46756, \"WHITE\": 36265, \"BLACK\": 1321, \"AMERI_ES\": 42, \"ASIAN\": 7607, \"HAWN_PI\": 5, \"OTHER\": 526, \"MULT_RACE\": 990, \"HISPANIC\": 1957, \"MALES\": 22692, \"FEMALES\": 24064, \"AGE_UNDER5\": 2768, \"AGE_5_17\": 9400, \"AGE_18_21\": 1649, \"AGE_22_29\": 3405, \"AGE_30_39\": 6934, \"AGE_40_49\": 8719, \"AGE_50_64\": 8452, \"AGE_65_UP\": 5429, \"MED_AGE\": 39.100000, \"MED_AGE_M\": 38.100000, \"MED_AGE_F\": 39.900000, \"HOUSEHOLDS\": 16372, \"AVE_HH_SZ\": 2.840000, \"HSEHLD_1_M\": 975, \"HSEHLD_1_F\": 1840, \"MARHH_CHD\": 5803, \"MARHH_NO_C\": 5430, \"MHH_CHILD\": 149, \"FHH_CHILD\": 682, \"FAMILIES\": 13074, \"AVE_FAM_SZ\": 3.230000, \"HSE_UNITS\": 16640, \"VACANT\": 268, \"OWNER_OCC\": 13756, \"RENTER_OCC\": 2616 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.405133547408312, 40.434244137801869 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"East Orange\", \"CLASS\": \"city\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"19390\", \"CAPITAL\": \"N\", \"AREALAND\": 3.928000, \"AREAWATER\": 0.000000, \"POP_CL\": 7, \"POP2000\": 69824, \"WHITE\": 2683, \"BLACK\": 62462, \"AMERI_ES\": 177, \"ASIAN\": 302, \"HAWN_PI\": 51, \"OTHER\": 1496, \"MULT_RACE\": 2653, \"HISPANIC\": 3284, \"MALES\": 31429, \"FEMALES\": 38395, \"AGE_UNDER5\": 5535, \"AGE_5_17\": 14101, \"AGE_18_21\": 3848, \"AGE_22_29\": 8278, \"AGE_30_39\": 10704, \"AGE_40_49\": 9405, \"AGE_50_64\": 10108, \"AGE_65_UP\": 7845, \"MED_AGE\": 33.000000, \"MED_AGE_M\": 30.500000, \"MED_AGE_F\": 34.800000, \"HOUSEHOLDS\": 26024, \"AVE_HH_SZ\": 2.630000, \"HSEHLD_1_M\": 3419, \"HSEHLD_1_F\": 5165, \"MARHH_CHD\": 3124, \"MARHH_NO_C\": 3645, \"MHH_CHILD\": 839, \"FHH_CHILD\": 4336, \"FAMILIES\": 16079, \"AVE_FAM_SZ\": 3.370000, \"HSE_UNITS\": 28485, \"VACANT\": 2461, \"OWNER_OCC\": 6918, \"RENTER_OCC\": 19106 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.21180449557184, 40.766055898845863 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Eatontown\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"19840\", \"CAPITAL\": \"N\", \"AREALAND\": 5.918000, \"AREAWATER\": 0.008000, \"POP_CL\": 6, \"POP2000\": 14008, \"WHITE\": 10267, \"BLACK\": 1626, \"AMERI_ES\": 48, \"ASIAN\": 1305, \"HAWN_PI\": 5, \"OTHER\": 323, \"MULT_RACE\": 434, \"HISPANIC\": 928, \"MALES\": 6813, \"FEMALES\": 7195, \"AGE_UNDER5\": 958, \"AGE_5_17\": 2254, \"AGE_18_21\": 466, \"AGE_22_29\": 1642, \"AGE_30_39\": 2569, \"AGE_40_49\": 2239, \"AGE_50_64\": 2013, \"AGE_65_UP\": 1867, \"MED_AGE\": 36.600000, \"MED_AGE_M\": 35.500000, \"MED_AGE_F\": 37.800000, \"HOUSEHOLDS\": 5780, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 920, \"HSEHLD_1_F\": 1031, \"MARHH_CHD\": 1290, \"MARHH_NO_C\": 1414, \"MHH_CHILD\": 77, \"FHH_CHILD\": 289, \"FAMILIES\": 3447, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 6341, \"VACANT\": 561, \"OWNER_OCC\": 2841, \"RENTER_OCC\": 2939 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.05682593573205, 40.293577502625006 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Echelon\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"19900\", \"CAPITAL\": \"N\", \"AREALAND\": 2.836000, \"AREAWATER\": 0.013000, \"POP_CL\": 6, \"POP2000\": 10440, \"WHITE\": 7678, \"BLACK\": 1057, \"AMERI_ES\": 19, \"ASIAN\": 1385, \"HAWN_PI\": 2, \"OTHER\": 84, \"MULT_RACE\": 215, \"HISPANIC\": 317, \"MALES\": 4971, \"FEMALES\": 5469, \"AGE_UNDER5\": 546, \"AGE_5_17\": 1521, \"AGE_18_21\": 354, \"AGE_22_29\": 1630, \"AGE_30_39\": 1993, \"AGE_40_49\": 1568, \"AGE_50_64\": 1378, \"AGE_65_UP\": 1450, \"MED_AGE\": 35.700000, \"MED_AGE_M\": 33.600000, \"MED_AGE_F\": 37.500000, \"HOUSEHOLDS\": 4886, \"AVE_HH_SZ\": 2.090000, \"HSEHLD_1_M\": 871, \"HSEHLD_1_F\": 1257, \"MARHH_CHD\": 848, \"MARHH_NO_C\": 948, \"MHH_CHILD\": 60, \"FHH_CHILD\": 207, \"FAMILIES\": 2347, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 5322, \"VACANT\": 436, \"OWNER_OCC\": 2074, \"RENTER_OCC\": 2812 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.999568902374989, 39.848183317719879 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Edison\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"20260\", \"CAPITAL\": \"N\", \"AREALAND\": 30.122000, \"AREAWATER\": 0.568000, \"POP_CL\": 7, \"POP2000\": 97687, \"WHITE\": 58116, \"BLACK\": 6728, \"AMERI_ES\": 132, \"ASIAN\": 28597, \"HAWN_PI\": 37, \"OTHER\": 1973, \"MULT_RACE\": 2104, \"HISPANIC\": 6226, \"MALES\": 47926, \"FEMALES\": 49761, \"AGE_UNDER5\": 6299, \"AGE_5_17\": 16023, \"AGE_18_21\": 4114, \"AGE_22_29\": 11753, \"AGE_30_39\": 16835, \"AGE_40_49\": 15587, \"AGE_50_64\": 15408, \"AGE_65_UP\": 11668, \"MED_AGE\": 36.300000, \"MED_AGE_M\": 35.300000, \"MED_AGE_F\": 37.400000, \"HOUSEHOLDS\": 35136, \"AVE_HH_SZ\": 2.720000, \"HSEHLD_1_M\": 3064, \"HSEHLD_1_F\": 4355, \"MARHH_CHD\": 10419, \"MARHH_NO_C\": 11053, \"MHH_CHILD\": 363, \"FHH_CHILD\": 1287, \"FAMILIES\": 25881, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 36018, \"VACANT\": 882, \"OWNER_OCC\": 22419, \"RENTER_OCC\": 12717 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.378680451181552, 40.538209241110891 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Elizabeth\", \"CLASS\": \"city\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"21000\", \"CAPITAL\": \"N\", \"AREALAND\": 12.221000, \"AREAWATER\": 1.434000, \"POP_CL\": 8, \"POP2000\": 120568, \"WHITE\": 67250, \"BLACK\": 24090, \"AMERI_ES\": 580, \"ASIAN\": 2830, \"HAWN_PI\": 55, \"OTHER\": 18702, \"MULT_RACE\": 7061, \"HISPANIC\": 59627, \"MALES\": 59674, \"FEMALES\": 60894, \"AGE_UNDER5\": 9266, \"AGE_5_17\": 22414, \"AGE_18_21\": 7127, \"AGE_22_29\": 16072, \"AGE_30_39\": 21167, \"AGE_40_49\": 16790, \"AGE_50_64\": 15691, \"AGE_65_UP\": 12041, \"MED_AGE\": 32.600000, \"MED_AGE_M\": 31.700000, \"MED_AGE_F\": 33.500000, \"HOUSEHOLDS\": 40482, \"AVE_HH_SZ\": 2.910000, \"HSEHLD_1_M\": 4878, \"HSEHLD_1_F\": 5066, \"MARHH_CHD\": 9239, \"MARHH_NO_C\": 8147, \"MHH_CHILD\": 1271, \"FHH_CHILD\": 4323, \"FAMILIES\": 28170, \"AVE_FAM_SZ\": 3.450000, \"HSE_UNITS\": 42838, \"VACANT\": 2356, \"OWNER_OCC\": 12033, \"RENTER_OCC\": 28449 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.209170969556752, 40.662157900490193 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Elmwood Park\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"21300\", \"CAPITAL\": \"N\", \"AREALAND\": 2.654000, \"AREAWATER\": 0.110000, \"POP_CL\": 6, \"POP2000\": 18925, \"WHITE\": 15619, \"BLACK\": 409, \"AMERI_ES\": 21, \"ASIAN\": 1477, \"HAWN_PI\": 1, \"OTHER\": 841, \"MULT_RACE\": 557, \"HISPANIC\": 2535, \"MALES\": 9042, \"FEMALES\": 9883, \"AGE_UNDER5\": 1084, \"AGE_5_17\": 2870, \"AGE_18_21\": 807, \"AGE_22_29\": 2085, \"AGE_30_39\": 3049, \"AGE_40_49\": 2804, \"AGE_50_64\": 3111, \"AGE_65_UP\": 3115, \"MED_AGE\": 38.500000, \"MED_AGE_M\": 36.700000, \"MED_AGE_F\": 40.300000, \"HOUSEHOLDS\": 7089, \"AVE_HH_SZ\": 2.660000, \"HSEHLD_1_M\": 586, \"HSEHLD_1_F\": 1059, \"MARHH_CHD\": 1708, \"MARHH_NO_C\": 2222, \"MHH_CHILD\": 78, \"FHH_CHILD\": 307, \"FAMILIES\": 5077, \"AVE_FAM_SZ\": 3.170000, \"HSE_UNITS\": 7242, \"VACANT\": 153, \"OWNER_OCC\": 4306, \"RENTER_OCC\": 2783 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.12002051700324, 40.905645291110496 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Englewood\", \"CLASS\": \"city\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"21480\", \"CAPITAL\": \"N\", \"AREALAND\": 4.924000, \"AREAWATER\": 0.014000, \"POP_CL\": 6, \"POP2000\": 26203, \"WHITE\": 11134, \"BLACK\": 10215, \"AMERI_ES\": 71, \"ASIAN\": 1366, \"HAWN_PI\": 12, \"OTHER\": 2226, \"MULT_RACE\": 1179, \"HISPANIC\": 5703, \"MALES\": 12318, \"FEMALES\": 13885, \"AGE_UNDER5\": 1814, \"AGE_5_17\": 4442, \"AGE_18_21\": 1086, \"AGE_22_29\": 2554, \"AGE_30_39\": 4311, \"AGE_40_49\": 3873, \"AGE_50_64\": 4632, \"AGE_65_UP\": 3491, \"MED_AGE\": 37.400000, \"MED_AGE_M\": 35.500000, \"MED_AGE_F\": 39.200000, \"HOUSEHOLDS\": 9273, \"AVE_HH_SZ\": 2.790000, \"HSEHLD_1_M\": 828, \"HSEHLD_1_F\": 1471, \"MARHH_CHD\": 2018, \"MARHH_NO_C\": 2420, \"MHH_CHILD\": 170, \"FHH_CHILD\": 690, \"FAMILIES\": 6486, \"AVE_FAM_SZ\": 3.290000, \"HSE_UNITS\": 9614, \"VACANT\": 341, \"OWNER_OCC\": 5508, \"RENTER_OCC\": 3765 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.975920919853039, 40.893349928410501 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ewing\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"22180\", \"CAPITAL\": \"N\", \"AREALAND\": 15.334000, \"AREAWATER\": 0.265000, \"POP_CL\": 6, \"POP2000\": 35707, \"WHITE\": 24645, \"BLACK\": 8863, \"AMERI_ES\": 55, \"ASIAN\": 811, \"HAWN_PI\": 22, \"OTHER\": 653, \"MULT_RACE\": 658, \"HISPANIC\": 1586, \"MALES\": 17203, \"FEMALES\": 18504, \"AGE_UNDER5\": 1623, \"AGE_5_17\": 4821, \"AGE_18_21\": 4813, \"AGE_22_29\": 3182, \"AGE_30_39\": 5031, \"AGE_40_49\": 5208, \"AGE_50_64\": 5398, \"AGE_65_UP\": 5631, \"MED_AGE\": 37.000000, \"MED_AGE_M\": 35.700000, \"MED_AGE_F\": 38.500000, \"HOUSEHOLDS\": 12551, \"AVE_HH_SZ\": 2.450000, \"HSEHLD_1_M\": 1268, \"HSEHLD_1_F\": 2212, \"MARHH_CHD\": 2359, \"MARHH_NO_C\": 3881, \"MHH_CHILD\": 159, \"FHH_CHILD\": 663, \"FAMILIES\": 8211, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 12924, \"VACANT\": 373, \"OWNER_OCC\": 9286, \"RENTER_OCC\": 3265 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.788917677597766, 40.259961898194682 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fair Lawn\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"22470\", \"CAPITAL\": \"N\", \"AREALAND\": 5.169000, \"AREAWATER\": 0.051000, \"POP_CL\": 6, \"POP2000\": 31637, \"WHITE\": 28960, \"BLACK\": 234, \"AMERI_ES\": 13, \"ASIAN\": 1558, \"HAWN_PI\": 1, \"OTHER\": 434, \"MULT_RACE\": 437, \"HISPANIC\": 1744, \"MALES\": 15039, \"FEMALES\": 16598, \"AGE_UNDER5\": 1673, \"AGE_5_17\": 5541, \"AGE_18_21\": 1106, \"AGE_22_29\": 2214, \"AGE_30_39\": 4350, \"AGE_40_49\": 5426, \"AGE_50_64\": 5408, \"AGE_65_UP\": 5919, \"MED_AGE\": 41.800000, \"MED_AGE_M\": 40.500000, \"MED_AGE_F\": 42.900000, \"HOUSEHOLDS\": 11806, \"AVE_HH_SZ\": 2.670000, \"HSEHLD_1_M\": 812, \"HSEHLD_1_F\": 1704, \"MARHH_CHD\": 3425, \"MARHH_NO_C\": 4072, \"MHH_CHILD\": 112, \"FHH_CHILD\": 408, \"FAMILIES\": 8906, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 12006, \"VACANT\": 200, \"OWNER_OCC\": 9449, \"RENTER_OCC\": 2357 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.116822890977488, 40.933949307306726 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fairview\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"22560\", \"CAPITAL\": \"N\", \"AREALAND\": 0.850000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 13255, \"WHITE\": 9605, \"BLACK\": 226, \"AMERI_ES\": 51, \"ASIAN\": 659, \"HAWN_PI\": 4, \"OTHER\": 1712, \"MULT_RACE\": 998, \"HISPANIC\": 4911, \"MALES\": 6844, \"FEMALES\": 6411, \"AGE_UNDER5\": 852, \"AGE_5_17\": 1947, \"AGE_18_21\": 824, \"AGE_22_29\": 1925, \"AGE_30_39\": 2396, \"AGE_40_49\": 1734, \"AGE_50_64\": 1753, \"AGE_65_UP\": 1824, \"MED_AGE\": 34.500000, \"MED_AGE_M\": 32.500000, \"MED_AGE_F\": 36.900000, \"HOUSEHOLDS\": 4861, \"AVE_HH_SZ\": 2.730000, \"HSEHLD_1_M\": 570, \"HSEHLD_1_F\": 792, \"MARHH_CHD\": 1102, \"MARHH_NO_C\": 1196, \"MHH_CHILD\": 93, \"FHH_CHILD\": 265, \"FAMILIES\": 3178, \"AVE_FAM_SZ\": 3.310000, \"HSE_UNITS\": 4988, \"VACANT\": 127, \"OWNER_OCC\": 1684, \"RENTER_OCC\": 3177 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.000943857399875, 40.816743805944078 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fords\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"24030\", \"CAPITAL\": \"N\", \"AREALAND\": 2.592000, \"AREAWATER\": 0.004000, \"POP_CL\": 6, \"POP2000\": 15032, \"WHITE\": 10952, \"BLACK\": 891, \"AMERI_ES\": 17, \"ASIAN\": 2421, \"HAWN_PI\": 0, \"OTHER\": 407, \"MULT_RACE\": 344, \"HISPANIC\": 1388, \"MALES\": 7256, \"FEMALES\": 7776, \"AGE_UNDER5\": 928, \"AGE_5_17\": 2449, \"AGE_18_21\": 533, \"AGE_22_29\": 1632, \"AGE_30_39\": 2606, \"AGE_40_49\": 2305, \"AGE_50_64\": 2286, \"AGE_65_UP\": 2293, \"MED_AGE\": 37.600000, \"MED_AGE_M\": 36.600000, \"MED_AGE_F\": 38.800000, \"HOUSEHOLDS\": 5591, \"AVE_HH_SZ\": 2.690000, \"HSEHLD_1_M\": 541, \"HSEHLD_1_F\": 767, \"MARHH_CHD\": 1484, \"MARHH_NO_C\": 1684, \"MHH_CHILD\": 72, \"FHH_CHILD\": 209, \"FAMILIES\": 4013, \"AVE_FAM_SZ\": 3.210000, \"HSE_UNITS\": 5688, \"VACANT\": 97, \"OWNER_OCC\": 4067, \"RENTER_OCC\": 1524 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.314117685497706, 40.537076480620264 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fort Lee\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"24420\", \"CAPITAL\": \"N\", \"AREALAND\": 2.533000, \"AREAWATER\": 0.348000, \"POP_CL\": 6, \"POP2000\": 35461, \"WHITE\": 22253, \"BLACK\": 615, \"AMERI_ES\": 25, \"ASIAN\": 11146, \"HAWN_PI\": 20, \"OTHER\": 600, \"MULT_RACE\": 802, \"HISPANIC\": 2791, \"MALES\": 16569, \"FEMALES\": 18892, \"AGE_UNDER5\": 1870, \"AGE_5_17\": 4330, \"AGE_18_21\": 977, \"AGE_22_29\": 3135, \"AGE_30_39\": 6420, \"AGE_40_49\": 5310, \"AGE_50_64\": 6268, \"AGE_65_UP\": 7151, \"MED_AGE\": 41.600000, \"MED_AGE_M\": 40.200000, \"MED_AGE_F\": 43.200000, \"HOUSEHOLDS\": 16544, \"AVE_HH_SZ\": 2.140000, \"HSEHLD_1_M\": 2529, \"HSEHLD_1_F\": 3919, \"MARHH_CHD\": 3143, \"MARHH_NO_C\": 4586, \"MHH_CHILD\": 108, \"FHH_CHILD\": 486, \"FAMILIES\": 9402, \"AVE_FAM_SZ\": 2.880000, \"HSE_UNITS\": 17446, \"VACANT\": 902, \"OWNER_OCC\": 9301, \"RENTER_OCC\": 7243 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.975133652674501, 40.849885927483683 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Franklin Lakes\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"24990\", \"CAPITAL\": \"N\", \"AREALAND\": 9.453000, \"AREAWATER\": 0.376000, \"POP_CL\": 6, \"POP2000\": 10422, \"WHITE\": 9521, \"BLACK\": 96, \"AMERI_ES\": 11, \"ASIAN\": 660, \"HAWN_PI\": 1, \"OTHER\": 43, \"MULT_RACE\": 90, \"HISPANIC\": 286, \"MALES\": 5146, \"FEMALES\": 5276, \"AGE_UNDER5\": 703, \"AGE_5_17\": 2286, \"AGE_18_21\": 289, \"AGE_22_29\": 529, \"AGE_30_39\": 1255, \"AGE_40_49\": 1818, \"AGE_50_64\": 2378, \"AGE_65_UP\": 1164, \"MED_AGE\": 40.700000, \"MED_AGE_M\": 40.900000, \"MED_AGE_F\": 40.500000, \"HOUSEHOLDS\": 3322, \"AVE_HH_SZ\": 3.130000, \"HSEHLD_1_M\": 132, \"HSEHLD_1_F\": 155, \"MARHH_CHD\": 1372, \"MARHH_NO_C\": 1352, \"MHH_CHILD\": 20, \"FHH_CHILD\": 67, \"FAMILIES\": 2960, \"AVE_FAM_SZ\": 3.340000, \"HSE_UNITS\": 3395, \"VACANT\": 73, \"OWNER_OCC\": 3160, \"RENTER_OCC\": 162 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.208578250243463, 41.010438932344009 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Freehold\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"25200\", \"CAPITAL\": \"N\", \"AREALAND\": 1.995000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10976, \"WHITE\": 7795, \"BLACK\": 1738, \"AMERI_ES\": 60, \"ASIAN\": 269, \"HAWN_PI\": 2, \"OTHER\": 729, \"MULT_RACE\": 383, \"HISPANIC\": 3081, \"MALES\": 5656, \"FEMALES\": 5320, \"AGE_UNDER5\": 858, \"AGE_5_17\": 1860, \"AGE_18_21\": 632, \"AGE_22_29\": 1520, \"AGE_30_39\": 1985, \"AGE_40_49\": 1526, \"AGE_50_64\": 1424, \"AGE_65_UP\": 1171, \"MED_AGE\": 33.000000, \"MED_AGE_M\": 31.100000, \"MED_AGE_F\": 35.100000, \"HOUSEHOLDS\": 3695, \"AVE_HH_SZ\": 2.960000, \"HSEHLD_1_M\": 356, \"HSEHLD_1_F\": 542, \"MARHH_CHD\": 900, \"MARHH_NO_C\": 909, \"MHH_CHILD\": 73, \"FHH_CHILD\": 239, \"FAMILIES\": 2570, \"AVE_FAM_SZ\": 3.390000, \"HSE_UNITS\": 3821, \"VACANT\": 126, \"OWNER_OCC\": 2238, \"RENTER_OCC\": 1457 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.275526957897924, 40.260148604486105 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Garfield\", \"CLASS\": \"city\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"25770\", \"CAPITAL\": \"N\", \"AREALAND\": 2.131000, \"AREAWATER\": 0.063000, \"POP_CL\": 6, \"POP2000\": 29786, \"WHITE\": 24456, \"BLACK\": 887, \"AMERI_ES\": 99, \"ASIAN\": 800, \"HAWN_PI\": 2, \"OTHER\": 2414, \"MULT_RACE\": 1128, \"HISPANIC\": 5989, \"MALES\": 14514, \"FEMALES\": 15272, \"AGE_UNDER5\": 1809, \"AGE_5_17\": 4853, \"AGE_18_21\": 1470, \"AGE_22_29\": 3898, \"AGE_30_39\": 5053, \"AGE_40_49\": 4491, \"AGE_50_64\": 4027, \"AGE_65_UP\": 4185, \"MED_AGE\": 35.600000, \"MED_AGE_M\": 34.300000, \"MED_AGE_F\": 37.100000, \"HOUSEHOLDS\": 11250, \"AVE_HH_SZ\": 2.640000, \"HSEHLD_1_M\": 1214, \"HSEHLD_1_F\": 1863, \"MARHH_CHD\": 2538, \"MARHH_NO_C\": 2693, \"MHH_CHILD\": 203, \"FHH_CHILD\": 689, \"FAMILIES\": 7426, \"AVE_FAM_SZ\": 3.260000, \"HSE_UNITS\": 11698, \"VACANT\": 448, \"OWNER_OCC\": 4518, \"RENTER_OCC\": 6732 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.108189018028924, 40.8798643392321 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Glassboro\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"26340\", \"CAPITAL\": \"N\", \"AREALAND\": 9.206000, \"AREAWATER\": 0.014000, \"POP_CL\": 6, \"POP2000\": 19068, \"WHITE\": 14212, \"BLACK\": 3712, \"AMERI_ES\": 32, \"ASIAN\": 441, \"HAWN_PI\": 17, \"OTHER\": 282, \"MULT_RACE\": 372, \"HISPANIC\": 728, \"MALES\": 9126, \"FEMALES\": 9942, \"AGE_UNDER5\": 1216, \"AGE_5_17\": 2993, \"AGE_18_21\": 3461, \"AGE_22_29\": 2514, \"AGE_30_39\": 2543, \"AGE_40_49\": 2406, \"AGE_50_64\": 2069, \"AGE_65_UP\": 1866, \"MED_AGE\": 27.100000, \"MED_AGE_M\": 25.400000, \"MED_AGE_F\": 28.600000, \"HOUSEHOLDS\": 6225, \"AVE_HH_SZ\": 2.660000, \"HSEHLD_1_M\": 611, \"HSEHLD_1_F\": 861, \"MARHH_CHD\": 1382, \"MARHH_NO_C\": 1503, \"MHH_CHILD\": 132, \"FHH_CHILD\": 508, \"FAMILIES\": 4049, \"AVE_FAM_SZ\": 3.170000, \"HSE_UNITS\": 6555, \"VACANT\": 330, \"OWNER_OCC\": 3897, \"RENTER_OCC\": 2328 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.116712317429901, 39.705917031121935 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Glen Rock\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"26640\", \"CAPITAL\": \"N\", \"AREALAND\": 2.719000, \"AREAWATER\": 0.013000, \"POP_CL\": 6, \"POP2000\": 11546, \"WHITE\": 10399, \"BLACK\": 209, \"AMERI_ES\": 18, \"ASIAN\": 748, \"HAWN_PI\": 2, \"OTHER\": 71, \"MULT_RACE\": 99, \"HISPANIC\": 314, \"MALES\": 5622, \"FEMALES\": 5924, \"AGE_UNDER5\": 962, \"AGE_5_17\": 2433, \"AGE_18_21\": 258, \"AGE_22_29\": 476, \"AGE_30_39\": 1768, \"AGE_40_49\": 2148, \"AGE_50_64\": 1922, \"AGE_65_UP\": 1579, \"MED_AGE\": 39.500000, \"MED_AGE_M\": 38.600000, \"MED_AGE_F\": 40.200000, \"HOUSEHOLDS\": 3977, \"AVE_HH_SZ\": 2.890000, \"HSEHLD_1_M\": 155, \"HSEHLD_1_F\": 431, \"MARHH_CHD\": 1623, \"MARHH_NO_C\": 1363, \"MHH_CHILD\": 19, \"FHH_CHILD\": 100, \"FAMILIES\": 3322, \"AVE_FAM_SZ\": 3.220000, \"HSE_UNITS\": 4024, \"VACANT\": 47, \"OWNER_OCC\": 3672, \"RENTER_OCC\": 305 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.125877557556151, 40.961115271237205 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Gloucester City\", \"CLASS\": \"city\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"26820\", \"CAPITAL\": \"N\", \"AREALAND\": 2.203000, \"AREAWATER\": 0.631000, \"POP_CL\": 6, \"POP2000\": 11484, \"WHITE\": 11155, \"BLACK\": 79, \"AMERI_ES\": 21, \"ASIAN\": 78, \"HAWN_PI\": 4, \"OTHER\": 74, \"MULT_RACE\": 73, \"HISPANIC\": 216, \"MALES\": 5594, \"FEMALES\": 5890, \"AGE_UNDER5\": 736, \"AGE_5_17\": 2313, \"AGE_18_21\": 625, \"AGE_22_29\": 1070, \"AGE_30_39\": 1731, \"AGE_40_49\": 1779, \"AGE_50_64\": 1648, \"AGE_65_UP\": 1582, \"MED_AGE\": 36.400000, \"MED_AGE_M\": 34.800000, \"MED_AGE_F\": 38.000000, \"HOUSEHOLDS\": 4213, \"AVE_HH_SZ\": 2.720000, \"HSEHLD_1_M\": 480, \"HSEHLD_1_F\": 665, \"MARHH_CHD\": 932, \"MARHH_NO_C\": 1040, \"MHH_CHILD\": 134, \"FHH_CHILD\": 309, \"FAMILIES\": 2840, \"AVE_FAM_SZ\": 3.320000, \"HSE_UNITS\": 4604, \"VACANT\": 391, \"OWNER_OCC\": 3093, \"RENTER_OCC\": 1120 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.117542038494562, 39.894265036245123 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Greentree\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"27995\", \"CAPITAL\": \"N\", \"AREALAND\": 4.672000, \"AREAWATER\": 0.004000, \"POP_CL\": 6, \"POP2000\": 11536, \"WHITE\": 8942, \"BLACK\": 698, \"AMERI_ES\": 8, \"ASIAN\": 1710, \"HAWN_PI\": 2, \"OTHER\": 63, \"MULT_RACE\": 113, \"HISPANIC\": 236, \"MALES\": 5608, \"FEMALES\": 5928, \"AGE_UNDER5\": 744, \"AGE_5_17\": 2419, \"AGE_18_21\": 417, \"AGE_22_29\": 710, \"AGE_30_39\": 1522, \"AGE_40_49\": 2026, \"AGE_50_64\": 2438, \"AGE_65_UP\": 1260, \"MED_AGE\": 39.800000, \"MED_AGE_M\": 39.100000, \"MED_AGE_F\": 40.400000, \"HOUSEHOLDS\": 3883, \"AVE_HH_SZ\": 2.940000, \"HSEHLD_1_M\": 194, \"HSEHLD_1_F\": 342, \"MARHH_CHD\": 1419, \"MARHH_NO_C\": 1439, \"MHH_CHILD\": 26, \"FHH_CHILD\": 160, \"FAMILIES\": 3253, \"AVE_FAM_SZ\": 3.250000, \"HSE_UNITS\": 4009, \"VACANT\": 126, \"OWNER_OCC\": 3561, \"RENTER_OCC\": 322 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.955078702281597, 39.897282432108234 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Guttenberg\", \"CLASS\": \"town\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"28650\", \"CAPITAL\": \"N\", \"AREALAND\": 0.193000, \"AREAWATER\": 0.044000, \"POP_CL\": 6, \"POP2000\": 10807, \"WHITE\": 7022, \"BLACK\": 412, \"AMERI_ES\": 41, \"ASIAN\": 789, \"HAWN_PI\": 1, \"OTHER\": 1775, \"MULT_RACE\": 767, \"HISPANIC\": 5871, \"MALES\": 5205, \"FEMALES\": 5602, \"AGE_UNDER5\": 695, \"AGE_5_17\": 1592, \"AGE_18_21\": 477, \"AGE_22_29\": 1441, \"AGE_30_39\": 2121, \"AGE_40_49\": 1648, \"AGE_50_64\": 1560, \"AGE_65_UP\": 1273, \"MED_AGE\": 35.500000, \"MED_AGE_M\": 34.500000, \"MED_AGE_F\": 36.700000, \"HOUSEHOLDS\": 4493, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 725, \"HSEHLD_1_F\": 851, \"MARHH_CHD\": 837, \"MARHH_NO_C\": 973, \"MHH_CHILD\": 82, \"FHH_CHILD\": 332, \"FAMILIES\": 2620, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 4650, \"VACANT\": 157, \"OWNER_OCC\": 1577, \"RENTER_OCC\": 2916 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.00665835171084, 40.793756777671831 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hackensack\", \"CLASS\": \"city\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"28680\", \"CAPITAL\": \"N\", \"AREALAND\": 4.120000, \"AREAWATER\": 0.187000, \"POP_CL\": 6, \"POP2000\": 42677, \"WHITE\": 22451, \"BLACK\": 10518, \"AMERI_ES\": 191, \"ASIAN\": 3181, \"HAWN_PI\": 23, \"OTHER\": 4144, \"MULT_RACE\": 2169, \"HISPANIC\": 11061, \"MALES\": 21199, \"FEMALES\": 21478, \"AGE_UNDER5\": 2465, \"AGE_5_17\": 5306, \"AGE_18_21\": 1815, \"AGE_22_29\": 6133, \"AGE_30_39\": 8625, \"AGE_40_49\": 6429, \"AGE_50_64\": 6575, \"AGE_65_UP\": 5329, \"MED_AGE\": 36.200000, \"MED_AGE_M\": 35.100000, \"MED_AGE_F\": 37.500000, \"HOUSEHOLDS\": 18113, \"AVE_HH_SZ\": 2.260000, \"HSEHLD_1_M\": 3357, \"HSEHLD_1_F\": 3849, \"MARHH_CHD\": 2516, \"MARHH_NO_C\": 3787, \"MHH_CHILD\": 296, \"FHH_CHILD\": 1162, \"FAMILIES\": 9549, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 18945, \"VACANT\": 832, \"OWNER_OCC\": 5876, \"RENTER_OCC\": 12237 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.048093560425755, 40.887803601651896 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hackettstown\", \"CLASS\": \"town\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"28710\", \"CAPITAL\": \"N\", \"AREALAND\": 3.703000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10403, \"WHITE\": 9389, \"BLACK\": 227, \"AMERI_ES\": 13, \"ASIAN\": 303, \"HAWN_PI\": 6, \"OTHER\": 208, \"MULT_RACE\": 257, \"HISPANIC\": 833, \"MALES\": 5006, \"FEMALES\": 5397, \"AGE_UNDER5\": 658, \"AGE_5_17\": 1702, \"AGE_18_21\": 647, \"AGE_22_29\": 1184, \"AGE_30_39\": 1877, \"AGE_40_49\": 1595, \"AGE_50_64\": 1470, \"AGE_65_UP\": 1270, \"MED_AGE\": 35.400000, \"MED_AGE_M\": 34.300000, \"MED_AGE_F\": 36.500000, \"HOUSEHOLDS\": 4134, \"AVE_HH_SZ\": 2.410000, \"HSEHLD_1_M\": 562, \"HSEHLD_1_F\": 749, \"MARHH_CHD\": 971, \"MARHH_NO_C\": 1013, \"MHH_CHILD\": 68, \"FHH_CHILD\": 209, \"FAMILIES\": 2532, \"AVE_FAM_SZ\": 3.100000, \"HSE_UNITS\": 4347, \"VACANT\": 213, \"OWNER_OCC\": 1991, \"RENTER_OCC\": 2143 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.82942785645416, 40.853251811040003 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Haddonfield\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"28770\", \"CAPITAL\": \"N\", \"AREALAND\": 2.827000, \"AREAWATER\": 0.031000, \"POP_CL\": 6, \"POP2000\": 11659, \"WHITE\": 11247, \"BLACK\": 148, \"AMERI_ES\": 15, \"ASIAN\": 131, \"HAWN_PI\": 3, \"OTHER\": 37, \"MULT_RACE\": 78, \"HISPANIC\": 170, \"MALES\": 5536, \"FEMALES\": 6123, \"AGE_UNDER5\": 743, \"AGE_5_17\": 2428, \"AGE_18_21\": 276, \"AGE_22_29\": 544, \"AGE_30_39\": 1585, \"AGE_40_49\": 2052, \"AGE_50_64\": 2181, \"AGE_65_UP\": 1850, \"MED_AGE\": 41.300000, \"MED_AGE_M\": 40.200000, \"MED_AGE_F\": 42.300000, \"HOUSEHOLDS\": 4496, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 330, \"HSEHLD_1_F\": 755, \"MARHH_CHD\": 1367, \"MARHH_NO_C\": 1460, \"MHH_CHILD\": 47, \"FHH_CHILD\": 160, \"FAMILIES\": 3253, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 4620, \"VACANT\": 124, \"OWNER_OCC\": 3798, \"RENTER_OCC\": 698 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.03597282842388, 39.896283230126663 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hammonton\", \"CLASS\": \"town\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"29430\", \"CAPITAL\": \"N\", \"AREALAND\": 41.259000, \"AREAWATER\": 0.213000, \"POP_CL\": 6, \"POP2000\": 12604, \"WHITE\": 11073, \"BLACK\": 219, \"AMERI_ES\": 18, \"ASIAN\": 144, \"HAWN_PI\": 3, \"OTHER\": 987, \"MULT_RACE\": 160, \"HISPANIC\": 1876, \"MALES\": 6105, \"FEMALES\": 6499, \"AGE_UNDER5\": 754, \"AGE_5_17\": 2120, \"AGE_18_21\": 562, \"AGE_22_29\": 1227, \"AGE_30_39\": 1918, \"AGE_40_49\": 1816, \"AGE_50_64\": 1942, \"AGE_65_UP\": 2265, \"MED_AGE\": 38.700000, \"MED_AGE_M\": 36.800000, \"MED_AGE_F\": 40.500000, \"HOUSEHOLDS\": 4619, \"AVE_HH_SZ\": 2.650000, \"HSEHLD_1_M\": 429, \"HSEHLD_1_F\": 674, \"MARHH_CHD\": 1078, \"MARHH_NO_C\": 1445, \"MHH_CHILD\": 107, \"FHH_CHILD\": 209, \"FAMILIES\": 3269, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 4843, \"VACANT\": 224, \"OWNER_OCC\": 3272, \"RENTER_OCC\": 1347 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.786234859234298, 39.641184872228528 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Harrison\", \"CLASS\": \"town\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"30210\", \"CAPITAL\": \"N\", \"AREALAND\": 1.221000, \"AREAWATER\": 0.095000, \"POP_CL\": 6, \"POP2000\": 14424, \"WHITE\": 9534, \"BLACK\": 142, \"AMERI_ES\": 57, \"ASIAN\": 1715, \"HAWN_PI\": 4, \"OTHER\": 2302, \"MULT_RACE\": 670, \"HISPANIC\": 5333, \"MALES\": 7352, \"FEMALES\": 7072, \"AGE_UNDER5\": 931, \"AGE_5_17\": 2173, \"AGE_18_21\": 790, \"AGE_22_29\": 2128, \"AGE_30_39\": 2707, \"AGE_40_49\": 2207, \"AGE_50_64\": 2007, \"AGE_65_UP\": 1481, \"MED_AGE\": 34.100000, \"MED_AGE_M\": 33.000000, \"MED_AGE_F\": 35.400000, \"HOUSEHOLDS\": 5136, \"AVE_HH_SZ\": 2.810000, \"HSEHLD_1_M\": 547, \"HSEHLD_1_F\": 607, \"MARHH_CHD\": 1275, \"MARHH_NO_C\": 1281, \"MHH_CHILD\": 105, \"FHH_CHILD\": 350, \"FAMILIES\": 3638, \"AVE_FAM_SZ\": 3.270000, \"HSE_UNITS\": 5254, \"VACANT\": 118, \"OWNER_OCC\": 1645, \"RENTER_OCC\": 3491 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.155204469537622, 40.745957128656684 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hasbrouck Heights\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"30420\", \"CAPITAL\": \"N\", \"AREALAND\": 1.508000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11662, \"WHITE\": 10247, \"BLACK\": 200, \"AMERI_ES\": 5, \"ASIAN\": 776, \"HAWN_PI\": 1, \"OTHER\": 255, \"MULT_RACE\": 178, \"HISPANIC\": 964, \"MALES\": 5605, \"FEMALES\": 6057, \"AGE_UNDER5\": 671, \"AGE_5_17\": 1915, \"AGE_18_21\": 424, \"AGE_22_29\": 1006, \"AGE_30_39\": 1796, \"AGE_40_49\": 2030, \"AGE_50_64\": 1834, \"AGE_65_UP\": 1986, \"MED_AGE\": 40.100000, \"MED_AGE_M\": 38.900000, \"MED_AGE_F\": 41.100000, \"HOUSEHOLDS\": 4521, \"AVE_HH_SZ\": 2.580000, \"HSEHLD_1_M\": 469, \"HSEHLD_1_F\": 716, \"MARHH_CHD\": 1207, \"MARHH_NO_C\": 1373, \"MHH_CHILD\": 34, \"FHH_CHILD\": 150, \"FAMILIES\": 3144, \"AVE_FAM_SZ\": 3.160000, \"HSE_UNITS\": 4617, \"VACANT\": 96, \"OWNER_OCC\": 3138, \"RENTER_OCC\": 1383 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.075175804430643, 40.862896480245766 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hawthorne\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"30570\", \"CAPITAL\": \"N\", \"AREALAND\": 3.396000, \"AREAWATER\": 0.022000, \"POP_CL\": 6, \"POP2000\": 18218, \"WHITE\": 17080, \"BLACK\": 137, \"AMERI_ES\": 25, \"ASIAN\": 344, \"HAWN_PI\": 3, \"OTHER\": 287, \"MULT_RACE\": 342, \"HISPANIC\": 1354, \"MALES\": 8686, \"FEMALES\": 9532, \"AGE_UNDER5\": 1155, \"AGE_5_17\": 2811, \"AGE_18_21\": 614, \"AGE_22_29\": 1904, \"AGE_30_39\": 3232, \"AGE_40_49\": 2806, \"AGE_50_64\": 2879, \"AGE_65_UP\": 2817, \"MED_AGE\": 38.200000, \"MED_AGE_M\": 36.600000, \"MED_AGE_F\": 39.500000, \"HOUSEHOLDS\": 7260, \"AVE_HH_SZ\": 2.500000, \"HSEHLD_1_M\": 713, \"HSEHLD_1_F\": 1209, \"MARHH_CHD\": 1709, \"MARHH_NO_C\": 2216, \"MHH_CHILD\": 79, \"FHH_CHILD\": 302, \"FAMILIES\": 4933, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 7419, \"VACANT\": 159, \"OWNER_OCC\": 4735, \"RENTER_OCC\": 2525 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.156384806109855, 40.957504142532315 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Highland Park\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"31470\", \"CAPITAL\": \"N\", \"AREALAND\": 1.839000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 13999, \"WHITE\": 10087, \"BLACK\": 1111, \"AMERI_ES\": 16, \"ASIAN\": 1908, \"HAWN_PI\": 12, \"OTHER\": 503, \"MULT_RACE\": 362, \"HISPANIC\": 1145, \"MALES\": 6758, \"FEMALES\": 7241, \"AGE_UNDER5\": 836, \"AGE_5_17\": 2208, \"AGE_18_21\": 516, \"AGE_22_29\": 2136, \"AGE_30_39\": 2635, \"AGE_40_49\": 2112, \"AGE_50_64\": 1884, \"AGE_65_UP\": 1672, \"MED_AGE\": 34.700000, \"MED_AGE_M\": 33.900000, \"MED_AGE_F\": 35.700000, \"HOUSEHOLDS\": 5899, \"AVE_HH_SZ\": 2.370000, \"HSEHLD_1_M\": 792, \"HSEHLD_1_F\": 1065, \"MARHH_CHD\": 1332, \"MARHH_NO_C\": 1396, \"MHH_CHILD\": 69, \"FHH_CHILD\": 230, \"FAMILIES\": 3412, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 6071, \"VACANT\": 172, \"OWNER_OCC\": 2475, \"RENTER_OCC\": 3424 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.425792928782371, 40.500259069079171 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hillsdale\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"31920\", \"CAPITAL\": \"N\", \"AREALAND\": 2.981000, \"AREAWATER\": 0.004000, \"POP_CL\": 6, \"POP2000\": 10087, \"WHITE\": 9321, \"BLACK\": 86, \"AMERI_ES\": 7, \"ASIAN\": 512, \"HAWN_PI\": 4, \"OTHER\": 87, \"MULT_RACE\": 70, \"HISPANIC\": 429, \"MALES\": 4915, \"FEMALES\": 5172, \"AGE_UNDER5\": 736, \"AGE_5_17\": 1886, \"AGE_18_21\": 291, \"AGE_22_29\": 591, \"AGE_30_39\": 1634, \"AGE_40_49\": 1683, \"AGE_50_64\": 1773, \"AGE_65_UP\": 1493, \"MED_AGE\": 39.500000, \"MED_AGE_M\": 38.600000, \"MED_AGE_F\": 40.400000, \"HOUSEHOLDS\": 3502, \"AVE_HH_SZ\": 2.870000, \"HSEHLD_1_M\": 186, \"HSEHLD_1_F\": 365, \"MARHH_CHD\": 1212, \"MARHH_NO_C\": 1268, \"MHH_CHILD\": 25, \"FHH_CHILD\": 99, \"FAMILIES\": 2849, \"AVE_FAM_SZ\": 3.200000, \"HSE_UNITS\": 3547, \"VACANT\": 45, \"OWNER_OCC\": 3119, \"RENTER_OCC\": 383 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.042588725030498, 41.007395637711944 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hillside\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"32010\", \"CAPITAL\": \"N\", \"AREALAND\": 2.790000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 21747, \"WHITE\": 8705, \"BLACK\": 10122, \"AMERI_ES\": 50, \"ASIAN\": 751, \"HAWN_PI\": 17, \"OTHER\": 1144, \"MULT_RACE\": 958, \"HISPANIC\": 3153, \"MALES\": 10199, \"FEMALES\": 11548, \"AGE_UNDER5\": 1390, \"AGE_5_17\": 4172, \"AGE_18_21\": 1115, \"AGE_22_29\": 2257, \"AGE_30_39\": 3463, \"AGE_40_49\": 3213, \"AGE_50_64\": 3727, \"AGE_65_UP\": 2410, \"MED_AGE\": 35.700000, \"MED_AGE_M\": 34.200000, \"MED_AGE_F\": 37.100000, \"HOUSEHOLDS\": 7161, \"AVE_HH_SZ\": 3.040000, \"HSEHLD_1_M\": 481, \"HSEHLD_1_F\": 807, \"MARHH_CHD\": 1832, \"MARHH_NO_C\": 2000, \"MHH_CHILD\": 146, \"FHH_CHILD\": 597, \"FAMILIES\": 5579, \"AVE_FAM_SZ\": 3.450000, \"HSE_UNITS\": 7388, \"VACANT\": 227, \"OWNER_OCC\": 5137, \"RENTER_OCC\": 2024 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.228665136108106, 40.695557825320755 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hoboken\", \"CLASS\": \"city\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"32250\", \"CAPITAL\": \"N\", \"AREALAND\": 1.276000, \"AREAWATER\": 0.701000, \"POP_CL\": 6, \"POP2000\": 38577, \"WHITE\": 31178, \"BLACK\": 1644, \"AMERI_ES\": 60, \"ASIAN\": 1661, \"HAWN_PI\": 21, \"OTHER\": 2942, \"MULT_RACE\": 1071, \"HISPANIC\": 7783, \"MALES\": 19654, \"FEMALES\": 18923, \"AGE_UNDER5\": 1232, \"AGE_5_17\": 2802, \"AGE_18_21\": 1643, \"AGE_22_29\": 12900, \"AGE_30_39\": 9094, \"AGE_40_49\": 3941, \"AGE_50_64\": 3482, \"AGE_65_UP\": 3483, \"MED_AGE\": 30.400000, \"MED_AGE_M\": 30.000000, \"MED_AGE_F\": 30.900000, \"HOUSEHOLDS\": 19418, \"AVE_HH_SZ\": 1.920000, \"HSEHLD_1_M\": 4019, \"HSEHLD_1_F\": 4107, \"MARHH_CHD\": 1283, \"MARHH_NO_C\": 3336, \"MHH_CHILD\": 129, \"FHH_CHILD\": 798, \"FAMILIES\": 6842, \"AVE_FAM_SZ\": 2.730000, \"HSE_UNITS\": 19915, \"VACANT\": 497, \"OWNER_OCC\": 4396, \"RENTER_OCC\": 15022 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.033056442526444, 40.744857654187506 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Holiday City-Berkeley\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"32415\", \"CAPITAL\": \"N\", \"AREALAND\": 5.759000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 13884, \"WHITE\": 13741, \"BLACK\": 53, \"AMERI_ES\": 1, \"ASIAN\": 31, \"HAWN_PI\": 2, \"OTHER\": 7, \"MULT_RACE\": 49, \"HISPANIC\": 151, \"MALES\": 5514, \"FEMALES\": 8370, \"AGE_UNDER5\": 9, \"AGE_5_17\": 10, \"AGE_18_21\": 22, \"AGE_22_29\": 81, \"AGE_30_39\": 133, \"AGE_40_49\": 246, \"AGE_50_64\": 1755, \"AGE_65_UP\": 11628, \"MED_AGE\": 75.800000, \"MED_AGE_M\": 75.600000, \"MED_AGE_F\": 75.900000, \"HOUSEHOLDS\": 8575, \"AVE_HH_SZ\": 1.580000, \"HSEHLD_1_M\": 842, \"HSEHLD_1_F\": 3129, \"MARHH_CHD\": 4, \"MARHH_NO_C\": 3950, \"MHH_CHILD\": 1, \"FHH_CHILD\": 1, \"FAMILIES\": 4433, \"AVE_FAM_SZ\": 2.080000, \"HSE_UNITS\": 9015, \"VACANT\": 440, \"OWNER_OCC\": 8283, \"RENTER_OCC\": 292 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.26513168731482, 39.968061618128857 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hopatcong\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"32910\", \"CAPITAL\": \"N\", \"AREALAND\": 10.960000, \"AREAWATER\": 1.379000, \"POP_CL\": 6, \"POP2000\": 15888, \"WHITE\": 14792, \"BLACK\": 310, \"AMERI_ES\": 18, \"ASIAN\": 286, \"HAWN_PI\": 0, \"OTHER\": 226, \"MULT_RACE\": 256, \"HISPANIC\": 952, \"MALES\": 8022, \"FEMALES\": 7866, \"AGE_UNDER5\": 1148, \"AGE_5_17\": 3053, \"AGE_18_21\": 665, \"AGE_22_29\": 1469, \"AGE_30_39\": 3026, \"AGE_40_49\": 2814, \"AGE_50_64\": 2640, \"AGE_65_UP\": 1073, \"MED_AGE\": 35.700000, \"MED_AGE_M\": 35.500000, \"MED_AGE_F\": 35.900000, \"HOUSEHOLDS\": 5656, \"AVE_HH_SZ\": 2.810000, \"HSEHLD_1_M\": 586, \"HSEHLD_1_F\": 468, \"MARHH_CHD\": 1812, \"MARHH_NO_C\": 1714, \"MHH_CHILD\": 127, \"FHH_CHILD\": 252, \"FAMILIES\": 4239, \"AVE_FAM_SZ\": 3.240000, \"HSE_UNITS\": 6190, \"VACANT\": 534, \"OWNER_OCC\": 4946, \"RENTER_OCC\": 710 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.664546278112894, 40.938654302850139 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Irvington\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"34440\", \"CAPITAL\": \"N\", \"AREALAND\": 2.957000, \"AREAWATER\": 0.000000, \"POP_CL\": 7, \"POP2000\": 60695, \"WHITE\": 5446, \"BLACK\": 49566, \"AMERI_ES\": 146, \"ASIAN\": 669, \"HAWN_PI\": 59, \"OTHER\": 2234, \"MULT_RACE\": 2575, \"HISPANIC\": 5086, \"MALES\": 28353, \"FEMALES\": 32342, \"AGE_UNDER5\": 4891, \"AGE_5_17\": 12113, \"AGE_18_21\": 3469, \"AGE_22_29\": 8191, \"AGE_30_39\": 9882, \"AGE_40_49\": 8637, \"AGE_50_64\": 8936, \"AGE_65_UP\": 4576, \"MED_AGE\": 31.500000, \"MED_AGE_M\": 30.200000, \"MED_AGE_F\": 32.800000, \"HOUSEHOLDS\": 22032, \"AVE_HH_SZ\": 2.740000, \"HSEHLD_1_M\": 3032, \"HSEHLD_1_F\": 3421, \"MARHH_CHD\": 3280, \"MARHH_NO_C\": 3369, \"MHH_CHILD\": 754, \"FHH_CHILD\": 3431, \"FAMILIES\": 14403, \"AVE_FAM_SZ\": 3.390000, \"HSE_UNITS\": 24116, \"VACANT\": 2084, \"OWNER_OCC\": 6552, \"RENTER_OCC\": 15480 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.232180139633726, 40.725656813877933 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Iselin\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"34470\", \"CAPITAL\": \"N\", \"AREALAND\": 3.134000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 16698, \"WHITE\": 10796, \"BLACK\": 1006, \"AMERI_ES\": 20, \"ASIAN\": 4201, \"HAWN_PI\": 2, \"OTHER\": 292, \"MULT_RACE\": 381, \"HISPANIC\": 914, \"MALES\": 8214, \"FEMALES\": 8484, \"AGE_UNDER5\": 1022, \"AGE_5_17\": 2620, \"AGE_18_21\": 690, \"AGE_22_29\": 1899, \"AGE_30_39\": 2896, \"AGE_40_49\": 2684, \"AGE_50_64\": 2550, \"AGE_65_UP\": 2337, \"MED_AGE\": 37.400000, \"MED_AGE_M\": 36.200000, \"MED_AGE_F\": 38.800000, \"HOUSEHOLDS\": 6007, \"AVE_HH_SZ\": 2.780000, \"HSEHLD_1_M\": 495, \"HSEHLD_1_F\": 752, \"MARHH_CHD\": 1667, \"MARHH_NO_C\": 2027, \"MHH_CHILD\": 66, \"FHH_CHILD\": 192, \"FAMILIES\": 4513, \"AVE_FAM_SZ\": 3.240000, \"HSE_UNITS\": 6137, \"VACANT\": 130, \"OWNER_OCC\": 4543, \"RENTER_OCC\": 1464 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.31689777207383, 40.574608473113251 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Jersey City\", \"CLASS\": \"city\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"36000\", \"CAPITAL\": \"N\", \"AREALAND\": 14.916000, \"AREAWATER\": 6.195000, \"POP_CL\": 8, \"POP2000\": 240055, \"WHITE\": 81637, \"BLACK\": 67994, \"AMERI_ES\": 1071, \"ASIAN\": 38881, \"HAWN_PI\": 181, \"OTHER\": 36280, \"MULT_RACE\": 14011, \"HISPANIC\": 67952, \"MALES\": 117144, \"FEMALES\": 122911, \"AGE_UNDER5\": 16631, \"AGE_5_17\": 42772, \"AGE_18_21\": 13487, \"AGE_22_29\": 35740, \"AGE_30_39\": 42987, \"AGE_40_49\": 32572, \"AGE_50_64\": 32428, \"AGE_65_UP\": 23438, \"MED_AGE\": 32.400000, \"MED_AGE_M\": 31.400000, \"MED_AGE_F\": 33.500000, \"HOUSEHOLDS\": 88632, \"AVE_HH_SZ\": 2.670000, \"HSEHLD_1_M\": 12853, \"HSEHLD_1_F\": 13068, \"MARHH_CHD\": 15637, \"MARHH_NO_C\": 16599, \"MHH_CHILD\": 2015, \"FHH_CHILD\": 9911, \"FAMILIES\": 55636, \"AVE_FAM_SZ\": 3.370000, \"HSE_UNITS\": 93648, \"VACANT\": 5016, \"OWNER_OCC\": 24978, \"RENTER_OCC\": 63654 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.065498392770564, 40.722108508792623 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Keansburg\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"36480\", \"CAPITAL\": \"N\", \"AREALAND\": 1.078000, \"AREAWATER\": 15.749000, \"POP_CL\": 6, \"POP2000\": 10732, \"WHITE\": 10014, \"BLACK\": 229, \"AMERI_ES\": 11, \"ASIAN\": 132, \"HAWN_PI\": 7, \"OTHER\": 187, \"MULT_RACE\": 152, \"HISPANIC\": 853, \"MALES\": 5237, \"FEMALES\": 5495, \"AGE_UNDER5\": 755, \"AGE_5_17\": 2163, \"AGE_18_21\": 544, \"AGE_22_29\": 1206, \"AGE_30_39\": 1701, \"AGE_40_49\": 1644, \"AGE_50_64\": 1512, \"AGE_65_UP\": 1207, \"MED_AGE\": 34.400000, \"MED_AGE_M\": 32.200000, \"MED_AGE_F\": 36.100000, \"HOUSEHOLDS\": 3872, \"AVE_HH_SZ\": 2.710000, \"HSEHLD_1_M\": 500, \"HSEHLD_1_F\": 559, \"MARHH_CHD\": 851, \"MARHH_NO_C\": 784, \"MHH_CHILD\": 122, \"FHH_CHILD\": 393, \"FAMILIES\": 2563, \"AVE_FAM_SZ\": 3.350000, \"HSE_UNITS\": 4269, \"VACANT\": 397, \"OWNER_OCC\": 2069, \"RENTER_OCC\": 1803 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.131333810742419, 40.447330200237296 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Kearny\", \"CLASS\": \"town\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"36510\", \"CAPITAL\": \"N\", \"AREALAND\": 9.139000, \"AREAWATER\": 1.048000, \"POP_CL\": 6, \"POP2000\": 40513, \"WHITE\": 30687, \"BLACK\": 1609, \"AMERI_ES\": 148, \"ASIAN\": 2228, \"HAWN_PI\": 27, \"OTHER\": 4068, \"MULT_RACE\": 1746, \"HISPANIC\": 11075, \"MALES\": 20901, \"FEMALES\": 19612, \"AGE_UNDER5\": 2328, \"AGE_5_17\": 6371, \"AGE_18_21\": 2249, \"AGE_22_29\": 5875, \"AGE_30_39\": 7356, \"AGE_40_49\": 6140, \"AGE_50_64\": 5787, \"AGE_65_UP\": 4407, \"MED_AGE\": 34.700000, \"MED_AGE_M\": 33.200000, \"MED_AGE_F\": 36.400000, \"HOUSEHOLDS\": 13539, \"AVE_HH_SZ\": 2.810000, \"HSEHLD_1_M\": 1249, \"HSEHLD_1_F\": 1709, \"MARHH_CHD\": 3588, \"MARHH_NO_C\": 3696, \"MHH_CHILD\": 263, \"FHH_CHILD\": 827, \"FAMILIES\": 9809, \"AVE_FAM_SZ\": 3.280000, \"HSE_UNITS\": 13872, \"VACANT\": 333, \"OWNER_OCC\": 6495, \"RENTER_OCC\": 7044 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.137296582636125, 40.763057205042905 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lakewood\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"38580\", \"CAPITAL\": \"N\", \"AREALAND\": 7.157000, \"AREAWATER\": 0.204000, \"POP_CL\": 6, \"POP2000\": 36065, \"WHITE\": 28000, \"BLACK\": 4415, \"AMERI_ES\": 73, \"ASIAN\": 345, \"HAWN_PI\": 13, \"OTHER\": 2002, \"MULT_RACE\": 1217, \"HISPANIC\": 6381, \"MALES\": 18176, \"FEMALES\": 17889, \"AGE_UNDER5\": 5874, \"AGE_5_17\": 9040, \"AGE_18_21\": 2252, \"AGE_22_29\": 5644, \"AGE_30_39\": 4389, \"AGE_40_49\": 3061, \"AGE_50_64\": 2807, \"AGE_65_UP\": 2998, \"MED_AGE\": 23.100000, \"MED_AGE_M\": 23.100000, \"MED_AGE_F\": 23.100000, \"HOUSEHOLDS\": 8984, \"AVE_HH_SZ\": 3.830000, \"HSEHLD_1_M\": 638, \"HSEHLD_1_F\": 993, \"MARHH_CHD\": 3641, \"MARHH_NO_C\": 1780, \"MHH_CHILD\": 164, \"FHH_CHILD\": 657, \"FAMILIES\": 6971, \"AVE_FAM_SZ\": 4.360000, \"HSE_UNITS\": 9496, \"VACANT\": 512, \"OWNER_OCC\": 3964, \"RENTER_OCC\": 5020 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.216430978738174, 40.096370820038281 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Leisure Village West-Pine Lake Park\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"39920\", \"CAPITAL\": \"N\", \"AREALAND\": 3.801000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11085, \"WHITE\": 10346, \"BLACK\": 317, \"AMERI_ES\": 20, \"ASIAN\": 126, \"HAWN_PI\": 5, \"OTHER\": 131, \"MULT_RACE\": 140, \"HISPANIC\": 437, \"MALES\": 5091, \"FEMALES\": 5994, \"AGE_UNDER5\": 521, \"AGE_5_17\": 1543, \"AGE_18_21\": 406, \"AGE_22_29\": 679, \"AGE_30_39\": 1267, \"AGE_40_49\": 1327, \"AGE_50_64\": 1321, \"AGE_65_UP\": 4021, \"MED_AGE\": 48.400000, \"MED_AGE_M\": 44.400000, \"MED_AGE_F\": 52.100000, \"HOUSEHOLDS\": 4891, \"AVE_HH_SZ\": 2.270000, \"HSEHLD_1_M\": 386, \"HSEHLD_1_F\": 1217, \"MARHH_CHD\": 881, \"MARHH_NO_C\": 1864, \"MHH_CHILD\": 50, \"FHH_CHILD\": 113, \"FAMILIES\": 3136, \"AVE_FAM_SZ\": 2.860000, \"HSE_UNITS\": 5236, \"VACANT\": 345, \"OWNER_OCC\": 4412, \"RENTER_OCC\": 479 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.261385086149559, 40.002122635686 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lincoln Park\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"40290\", \"CAPITAL\": \"N\", \"AREALAND\": 6.729000, \"AREAWATER\": 0.237000, \"POP_CL\": 6, \"POP2000\": 10930, \"WHITE\": 9845, \"BLACK\": 191, \"AMERI_ES\": 13, \"ASIAN\": 578, \"HAWN_PI\": 1, \"OTHER\": 142, \"MULT_RACE\": 160, \"HISPANIC\": 633, \"MALES\": 5239, \"FEMALES\": 5691, \"AGE_UNDER5\": 632, \"AGE_5_17\": 1582, \"AGE_18_21\": 335, \"AGE_22_29\": 1061, \"AGE_30_39\": 1941, \"AGE_40_49\": 1860, \"AGE_50_64\": 1897, \"AGE_65_UP\": 1622, \"MED_AGE\": 39.600000, \"MED_AGE_M\": 38.100000, \"MED_AGE_F\": 41.200000, \"HOUSEHOLDS\": 4026, \"AVE_HH_SZ\": 2.540000, \"HSEHLD_1_M\": 435, \"HSEHLD_1_F\": 637, \"MARHH_CHD\": 981, \"MARHH_NO_C\": 1242, \"MHH_CHILD\": 33, \"FHH_CHILD\": 164, \"FAMILIES\": 2707, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 4110, \"VACANT\": 84, \"OWNER_OCC\": 3061, \"RENTER_OCC\": 965 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.293866106585398, 40.923238588203425 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Linden\", \"CLASS\": \"city\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"40350\", \"CAPITAL\": \"N\", \"AREALAND\": 10.806000, \"AREAWATER\": 0.414000, \"POP_CL\": 6, \"POP2000\": 39394, \"WHITE\": 26031, \"BLACK\": 8981, \"AMERI_ES\": 56, \"ASIAN\": 925, \"HAWN_PI\": 15, \"OTHER\": 1923, \"MULT_RACE\": 1463, \"HISPANIC\": 5674, \"MALES\": 18703, \"FEMALES\": 20691, \"AGE_UNDER5\": 2345, \"AGE_5_17\": 6501, \"AGE_18_21\": 1796, \"AGE_22_29\": 4206, \"AGE_30_39\": 6084, \"AGE_40_49\": 5899, \"AGE_50_64\": 6137, \"AGE_65_UP\": 6426, \"MED_AGE\": 38.000000, \"MED_AGE_M\": 36.100000, \"MED_AGE_F\": 39.900000, \"HOUSEHOLDS\": 15052, \"AVE_HH_SZ\": 2.600000, \"HSEHLD_1_M\": 1588, \"HSEHLD_1_F\": 2619, \"MARHH_CHD\": 3127, \"MARHH_NO_C\": 3903, \"MHH_CHILD\": 259, \"FHH_CHILD\": 982, \"FAMILIES\": 10087, \"AVE_FAM_SZ\": 3.210000, \"HSE_UNITS\": 15567, \"VACANT\": 515, \"OWNER_OCC\": 8839, \"RENTER_OCC\": 6213 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.250042608391269, 40.633808735534778 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lindenwold\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"40440\", \"CAPITAL\": \"N\", \"AREALAND\": 3.944000, \"AREAWATER\": 0.028000, \"POP_CL\": 6, \"POP2000\": 17414, \"WHITE\": 10695, \"BLACK\": 4915, \"AMERI_ES\": 83, \"ASIAN\": 614, \"HAWN_PI\": 10, \"OTHER\": 564, \"MULT_RACE\": 533, \"HISPANIC\": 1316, \"MALES\": 8312, \"FEMALES\": 9102, \"AGE_UNDER5\": 1258, \"AGE_5_17\": 2857, \"AGE_18_21\": 941, \"AGE_22_29\": 2552, \"AGE_30_39\": 3245, \"AGE_40_49\": 2575, \"AGE_50_64\": 2447, \"AGE_65_UP\": 1539, \"MED_AGE\": 33.300000, \"MED_AGE_M\": 32.200000, \"MED_AGE_F\": 34.300000, \"HOUSEHOLDS\": 7465, \"AVE_HH_SZ\": 2.320000, \"HSEHLD_1_M\": 1097, \"HSEHLD_1_F\": 1461, \"MARHH_CHD\": 1189, \"MARHH_NO_C\": 1424, \"MHH_CHILD\": 221, \"FHH_CHILD\": 765, \"FAMILIES\": 4301, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 8244, \"VACANT\": 779, \"OWNER_OCC\": 3234, \"RENTER_OCC\": 4231 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.990812085943631, 39.818467338262018 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Little Falls\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"40650\", \"CAPITAL\": \"N\", \"AREALAND\": 2.754000, \"AREAWATER\": 0.075000, \"POP_CL\": 6, \"POP2000\": 10855, \"WHITE\": 10001, \"BLACK\": 71, \"AMERI_ES\": 7, \"ASIAN\": 456, \"HAWN_PI\": 2, \"OTHER\": 144, \"MULT_RACE\": 174, \"HISPANIC\": 579, \"MALES\": 5134, \"FEMALES\": 5721, \"AGE_UNDER5\": 556, \"AGE_5_17\": 1411, \"AGE_18_21\": 379, \"AGE_22_29\": 1069, \"AGE_30_39\": 1902, \"AGE_40_49\": 1721, \"AGE_50_64\": 1879, \"AGE_65_UP\": 1938, \"MED_AGE\": 40.600000, \"MED_AGE_M\": 38.900000, \"MED_AGE_F\": 42.300000, \"HOUSEHOLDS\": 4687, \"AVE_HH_SZ\": 2.320000, \"HSEHLD_1_M\": 584, \"HSEHLD_1_F\": 968, \"MARHH_CHD\": 892, \"MARHH_NO_C\": 1411, \"MHH_CHILD\": 29, \"FHH_CHILD\": 151, \"FAMILIES\": 2871, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 4797, \"VACANT\": 110, \"OWNER_OCC\": 3251, \"RENTER_OCC\": 1436 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.228527320111155, 40.87980484128272 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Little Ferry\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"40680\", \"CAPITAL\": \"N\", \"AREALAND\": 1.526000, \"AREAWATER\": 0.160000, \"POP_CL\": 6, \"POP2000\": 10800, \"WHITE\": 7426, \"BLACK\": 509, \"AMERI_ES\": 16, \"ASIAN\": 1847, \"HAWN_PI\": 6, \"OTHER\": 621, \"MULT_RACE\": 375, \"HISPANIC\": 1641, \"MALES\": 5261, \"FEMALES\": 5539, \"AGE_UNDER5\": 687, \"AGE_5_17\": 1497, \"AGE_18_21\": 410, \"AGE_22_29\": 1301, \"AGE_30_39\": 2084, \"AGE_40_49\": 1677, \"AGE_50_64\": 1802, \"AGE_65_UP\": 1342, \"MED_AGE\": 37.100000, \"MED_AGE_M\": 36.100000, \"MED_AGE_F\": 37.900000, \"HOUSEHOLDS\": 4366, \"AVE_HH_SZ\": 2.470000, \"HSEHLD_1_M\": 639, \"HSEHLD_1_F\": 725, \"MARHH_CHD\": 970, \"MARHH_NO_C\": 1184, \"MHH_CHILD\": 47, \"FHH_CHILD\": 195, \"FAMILIES\": 2785, \"AVE_FAM_SZ\": 3.160000, \"HSE_UNITS\": 4449, \"VACANT\": 83, \"OWNER_OCC\": 2028, \"RENTER_OCC\": 2338 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.04098370964708, 40.849344629403419 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Livingston\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"40920\", \"CAPITAL\": \"N\", \"AREALAND\": 13.882000, \"AREAWATER\": 0.186000, \"POP_CL\": 6, \"POP2000\": 27391, \"WHITE\": 22637, \"BLACK\": 328, \"AMERI_ES\": 14, \"ASIAN\": 3982, \"HAWN_PI\": 3, \"OTHER\": 190, \"MULT_RACE\": 237, \"HISPANIC\": 695, \"MALES\": 13322, \"FEMALES\": 14069, \"AGE_UNDER5\": 1917, \"AGE_5_17\": 5367, \"AGE_18_21\": 770, \"AGE_22_29\": 1400, \"AGE_30_39\": 3928, \"AGE_40_49\": 4713, \"AGE_50_64\": 5075, \"AGE_65_UP\": 4221, \"MED_AGE\": 40.600000, \"MED_AGE_M\": 39.900000, \"MED_AGE_F\": 41.400000, \"HOUSEHOLDS\": 9300, \"AVE_HH_SZ\": 2.930000, \"HSEHLD_1_M\": 363, \"HSEHLD_1_F\": 844, \"MARHH_CHD\": 3578, \"MARHH_NO_C\": 3489, \"MHH_CHILD\": 64, \"FHH_CHILD\": 243, \"FAMILIES\": 7936, \"AVE_FAM_SZ\": 3.210000, \"HSE_UNITS\": 9457, \"VACANT\": 157, \"OWNER_OCC\": 8696, \"RENTER_OCC\": 604 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.321439843219707, 40.788738472613325 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lodi\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"41100\", \"CAPITAL\": \"N\", \"AREALAND\": 2.263000, \"AREAWATER\": 0.005000, \"POP_CL\": 6, \"POP2000\": 23971, \"WHITE\": 18736, \"BLACK\": 852, \"AMERI_ES\": 40, \"ASIAN\": 2124, \"HAWN_PI\": 8, \"OTHER\": 1498, \"MULT_RACE\": 713, \"HISPANIC\": 4309, \"MALES\": 11378, \"FEMALES\": 12593, \"AGE_UNDER5\": 1533, \"AGE_5_17\": 3573, \"AGE_18_21\": 939, \"AGE_22_29\": 3119, \"AGE_30_39\": 4290, \"AGE_40_49\": 3468, \"AGE_50_64\": 3485, \"AGE_65_UP\": 3564, \"MED_AGE\": 36.400000, \"MED_AGE_M\": 35.000000, \"MED_AGE_F\": 37.900000, \"HOUSEHOLDS\": 9528, \"AVE_HH_SZ\": 2.500000, \"HSEHLD_1_M\": 1193, \"HSEHLD_1_F\": 1678, \"MARHH_CHD\": 2012, \"MARHH_NO_C\": 2335, \"MHH_CHILD\": 155, \"FHH_CHILD\": 590, \"FAMILIES\": 6100, \"AVE_FAM_SZ\": 3.160000, \"HSE_UNITS\": 9908, \"VACANT\": 380, \"OWNER_OCC\": 4014, \"RENTER_OCC\": 5514 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.082772468167548, 40.878005448634227 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Long Branch\", \"CLASS\": \"city\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"41310\", \"CAPITAL\": \"N\", \"AREALAND\": 5.216000, \"AREAWATER\": 0.973000, \"POP_CL\": 6, \"POP2000\": 31340, \"WHITE\": 21320, \"BLACK\": 5847, \"AMERI_ES\": 113, \"ASIAN\": 513, \"HAWN_PI\": 15, \"OTHER\": 2220, \"MULT_RACE\": 1312, \"HISPANIC\": 6477, \"MALES\": 15210, \"FEMALES\": 16130, \"AGE_UNDER5\": 2183, \"AGE_5_17\": 5267, \"AGE_18_21\": 1759, \"AGE_22_29\": 3930, \"AGE_30_39\": 5274, \"AGE_40_49\": 4527, \"AGE_50_64\": 4364, \"AGE_65_UP\": 4036, \"MED_AGE\": 34.700000, \"MED_AGE_M\": 33.300000, \"MED_AGE_F\": 35.900000, \"HOUSEHOLDS\": 12594, \"AVE_HH_SZ\": 2.470000, \"HSEHLD_1_M\": 1953, \"HSEHLD_1_F\": 2342, \"MARHH_CHD\": 2000, \"MARHH_NO_C\": 2644, \"MHH_CHILD\": 241, \"FHH_CHILD\": 1159, \"FAMILIES\": 7248, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 13983, \"VACANT\": 1389, \"OWNER_OCC\": 5346, \"RENTER_OCC\": 7248 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.991085744366529, 40.297938794510522 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lyndhurst\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"42120\", \"CAPITAL\": \"N\", \"AREALAND\": 4.649000, \"AREAWATER\": 0.257000, \"POP_CL\": 6, \"POP2000\": 19383, \"WHITE\": 17433, \"BLACK\": 119, \"AMERI_ES\": 9, \"ASIAN\": 1046, \"HAWN_PI\": 1, \"OTHER\": 397, \"MULT_RACE\": 378, \"HISPANIC\": 1744, \"MALES\": 9242, \"FEMALES\": 10141, \"AGE_UNDER5\": 959, \"AGE_5_17\": 2734, \"AGE_18_21\": 766, \"AGE_22_29\": 2196, \"AGE_30_39\": 3213, \"AGE_40_49\": 2966, \"AGE_50_64\": 3109, \"AGE_65_UP\": 3440, \"MED_AGE\": 39.500000, \"MED_AGE_M\": 37.500000, \"MED_AGE_F\": 41.300000, \"HOUSEHOLDS\": 7877, \"AVE_HH_SZ\": 2.460000, \"HSEHLD_1_M\": 854, \"HSEHLD_1_F\": 1415, \"MARHH_CHD\": 1655, \"MARHH_NO_C\": 2370, \"MHH_CHILD\": 69, \"FHH_CHILD\": 310, \"FAMILIES\": 5205, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 8103, \"VACANT\": 226, \"OWNER_OCC\": 4714, \"RENTER_OCC\": 3163 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.120503827969756, 40.80760628005423 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Madison\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"42510\", \"CAPITAL\": \"N\", \"AREALAND\": 4.200000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 16530, \"WHITE\": 14826, \"BLACK\": 496, \"AMERI_ES\": 21, \"ASIAN\": 624, \"HAWN_PI\": 38, \"OTHER\": 256, \"MULT_RACE\": 269, \"HISPANIC\": 987, \"MALES\": 7832, \"FEMALES\": 8698, \"AGE_UNDER5\": 981, \"AGE_5_17\": 2423, \"AGE_18_21\": 2335, \"AGE_22_29\": 1495, \"AGE_30_39\": 2541, \"AGE_40_49\": 2306, \"AGE_50_64\": 2292, \"AGE_65_UP\": 2157, \"MED_AGE\": 34.300000, \"MED_AGE_M\": 33.400000, \"MED_AGE_F\": 35.200000, \"HOUSEHOLDS\": 5520, \"AVE_HH_SZ\": 2.530000, \"HSEHLD_1_M\": 500, \"HSEHLD_1_F\": 915, \"MARHH_CHD\": 1475, \"MARHH_NO_C\": 1707, \"MHH_CHILD\": 51, \"FHH_CHILD\": 201, \"FAMILIES\": 3785, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 5641, \"VACANT\": 121, \"OWNER_OCC\": 3698, \"RENTER_OCC\": 1822 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.416192891126286, 40.758755121574936 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Manville\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"43620\", \"CAPITAL\": \"N\", \"AREALAND\": 2.482000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10343, \"WHITE\": 9928, \"BLACK\": 47, \"AMERI_ES\": 7, \"ASIAN\": 136, \"HAWN_PI\": 3, \"OTHER\": 118, \"MULT_RACE\": 104, \"HISPANIC\": 559, \"MALES\": 5072, \"FEMALES\": 5271, \"AGE_UNDER5\": 516, \"AGE_5_17\": 1624, \"AGE_18_21\": 411, \"AGE_22_29\": 972, \"AGE_30_39\": 1740, \"AGE_40_49\": 1706, \"AGE_50_64\": 1548, \"AGE_65_UP\": 1826, \"MED_AGE\": 39.500000, \"MED_AGE_M\": 38.100000, \"MED_AGE_F\": 41.300000, \"HOUSEHOLDS\": 4115, \"AVE_HH_SZ\": 2.510000, \"HSEHLD_1_M\": 466, \"HSEHLD_1_F\": 634, \"MARHH_CHD\": 867, \"MARHH_NO_C\": 1203, \"MHH_CHILD\": 61, \"FHH_CHILD\": 162, \"FAMILIES\": 2758, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 4296, \"VACANT\": 181, \"OWNER_OCC\": 2895, \"RENTER_OCC\": 1220 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.593535349929283, 40.539007505273084 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Maplewood\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"43830\", \"CAPITAL\": \"N\", \"AREALAND\": 3.845000, \"AREAWATER\": 0.002000, \"POP_CL\": 6, \"POP2000\": 23868, \"WHITE\": 14030, \"BLACK\": 7788, \"AMERI_ES\": 31, \"ASIAN\": 682, \"HAWN_PI\": 7, \"OTHER\": 373, \"MULT_RACE\": 957, \"HISPANIC\": 1248, \"MALES\": 11347, \"FEMALES\": 12521, \"AGE_UNDER5\": 1882, \"AGE_5_17\": 4811, \"AGE_18_21\": 796, \"AGE_22_29\": 1605, \"AGE_30_39\": 3858, \"AGE_40_49\": 4430, \"AGE_50_64\": 3596, \"AGE_65_UP\": 2890, \"MED_AGE\": 37.700000, \"MED_AGE_M\": 36.700000, \"MED_AGE_F\": 38.700000, \"HOUSEHOLDS\": 8452, \"AVE_HH_SZ\": 2.810000, \"HSEHLD_1_M\": 609, \"HSEHLD_1_F\": 1111, \"MARHH_CHD\": 2712, \"MARHH_NO_C\": 2207, \"MHH_CHILD\": 117, \"FHH_CHILD\": 601, \"FAMILIES\": 6379, \"AVE_FAM_SZ\": 3.270000, \"HSE_UNITS\": 8615, \"VACANT\": 163, \"OWNER_OCC\": 6598, \"RENTER_OCC\": 1854 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.268315241536143, 40.728906671899338 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Marlton\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"44100\", \"CAPITAL\": \"N\", \"AREALAND\": 3.236000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10260, \"WHITE\": 9369, \"BLACK\": 295, \"AMERI_ES\": 14, \"ASIAN\": 429, \"HAWN_PI\": 1, \"OTHER\": 61, \"MULT_RACE\": 91, \"HISPANIC\": 240, \"MALES\": 4965, \"FEMALES\": 5295, \"AGE_UNDER5\": 630, \"AGE_5_17\": 1778, \"AGE_18_21\": 339, \"AGE_22_29\": 1142, \"AGE_30_39\": 1835, \"AGE_40_49\": 1627, \"AGE_50_64\": 1679, \"AGE_65_UP\": 1230, \"MED_AGE\": 37.000000, \"MED_AGE_M\": 36.300000, \"MED_AGE_F\": 37.700000, \"HOUSEHOLDS\": 4097, \"AVE_HH_SZ\": 2.490000, \"HSEHLD_1_M\": 496, \"HSEHLD_1_F\": 668, \"MARHH_CHD\": 1017, \"MARHH_NO_C\": 1207, \"MHH_CHILD\": 58, \"FHH_CHILD\": 181, \"FAMILIES\": 2727, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 4203, \"VACANT\": 106, \"OWNER_OCC\": 2813, \"RENTER_OCC\": 1284 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.927602709717675, 39.898866503050108 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mercerville-Hamilton Square\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"45495\", \"CAPITAL\": \"N\", \"AREALAND\": 7.705000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 26419, \"WHITE\": 24872, \"BLACK\": 384, \"AMERI_ES\": 34, \"ASIAN\": 666, \"HAWN_PI\": 2, \"OTHER\": 207, \"MULT_RACE\": 254, \"HISPANIC\": 671, \"MALES\": 12621, \"FEMALES\": 13798, \"AGE_UNDER5\": 1436, \"AGE_5_17\": 4711, \"AGE_18_21\": 980, \"AGE_22_29\": 1922, \"AGE_30_39\": 3746, \"AGE_40_49\": 4451, \"AGE_50_64\": 4649, \"AGE_65_UP\": 4524, \"MED_AGE\": 40.900000, \"MED_AGE_M\": 39.500000, \"MED_AGE_F\": 42.200000, \"HOUSEHOLDS\": 9403, \"AVE_HH_SZ\": 2.740000, \"HSEHLD_1_M\": 599, \"HSEHLD_1_F\": 1129, \"MARHH_CHD\": 2790, \"MARHH_NO_C\": 3555, \"MHH_CHILD\": 101, \"FHH_CHILD\": 269, \"FAMILIES\": 7367, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 9539, \"VACANT\": 136, \"OWNER_OCC\": 8368, \"RENTER_OCC\": 1035 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.675404204601023, 40.231246230951321 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Metuchen\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"45690\", \"CAPITAL\": \"N\", \"AREALAND\": 2.741000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12840, \"WHITE\": 10835, \"BLACK\": 681, \"AMERI_ES\": 13, \"ASIAN\": 928, \"HAWN_PI\": 0, \"OTHER\": 144, \"MULT_RACE\": 239, \"HISPANIC\": 508, \"MALES\": 6137, \"FEMALES\": 6703, \"AGE_UNDER5\": 847, \"AGE_5_17\": 2144, \"AGE_18_21\": 409, \"AGE_22_29\": 977, \"AGE_30_39\": 2168, \"AGE_40_49\": 2218, \"AGE_50_64\": 2167, \"AGE_65_UP\": 1910, \"MED_AGE\": 39.500000, \"MED_AGE_M\": 38.100000, \"MED_AGE_F\": 40.700000, \"HOUSEHOLDS\": 4992, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 410, \"HSEHLD_1_F\": 740, \"MARHH_CHD\": 1365, \"MARHH_NO_C\": 1572, \"MHH_CHILD\": 46, \"FHH_CHILD\": 209, \"FAMILIES\": 3583, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 5104, \"VACANT\": 112, \"OWNER_OCC\": 4019, \"RENTER_OCC\": 973 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.361088341611932, 40.541059305736574 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Middlesex\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"45900\", \"CAPITAL\": \"N\", \"AREALAND\": 3.498000, \"AREAWATER\": 0.025000, \"POP_CL\": 6, \"POP2000\": 13717, \"WHITE\": 11970, \"BLACK\": 461, \"AMERI_ES\": 18, \"ASIAN\": 570, \"HAWN_PI\": 3, \"OTHER\": 440, \"MULT_RACE\": 255, \"HISPANIC\": 1235, \"MALES\": 6682, \"FEMALES\": 7035, \"AGE_UNDER5\": 914, \"AGE_5_17\": 2392, \"AGE_18_21\": 484, \"AGE_22_29\": 1177, \"AGE_30_39\": 2371, \"AGE_40_49\": 2263, \"AGE_50_64\": 2174, \"AGE_65_UP\": 1942, \"MED_AGE\": 38.000000, \"MED_AGE_M\": 36.500000, \"MED_AGE_F\": 39.400000, \"HOUSEHOLDS\": 5048, \"AVE_HH_SZ\": 2.710000, \"HSEHLD_1_M\": 380, \"HSEHLD_1_F\": 717, \"MARHH_CHD\": 1416, \"MARHH_NO_C\": 1577, \"MHH_CHILD\": 83, \"FHH_CHILD\": 221, \"FAMILIES\": 3739, \"AVE_FAM_SZ\": 3.170000, \"HSE_UNITS\": 5130, \"VACANT\": 82, \"OWNER_OCC\": 3789, \"RENTER_OCC\": 1259 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.501965729361004, 40.574556810048549 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Millburn\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"46410\", \"CAPITAL\": \"N\", \"AREALAND\": 9.384000, \"AREAWATER\": 0.516000, \"POP_CL\": 6, \"POP2000\": 19765, \"WHITE\": 17573, \"BLACK\": 217, \"AMERI_ES\": 10, \"ASIAN\": 1660, \"HAWN_PI\": 6, \"OTHER\": 85, \"MULT_RACE\": 214, \"HISPANIC\": 404, \"MALES\": 9584, \"FEMALES\": 10181, \"AGE_UNDER5\": 1720, \"AGE_5_17\": 4256, \"AGE_18_21\": 356, \"AGE_22_29\": 915, \"AGE_30_39\": 2982, \"AGE_40_49\": 3643, \"AGE_50_64\": 3312, \"AGE_65_UP\": 2581, \"MED_AGE\": 39.200000, \"MED_AGE_M\": 38.600000, \"MED_AGE_F\": 39.700000, \"HOUSEHOLDS\": 7015, \"AVE_HH_SZ\": 2.820000, \"HSEHLD_1_M\": 447, \"HSEHLD_1_F\": 777, \"MARHH_CHD\": 2825, \"MARHH_NO_C\": 2199, \"MHH_CHILD\": 56, \"FHH_CHILD\": 228, \"FAMILIES\": 5604, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 7158, \"VACANT\": 143, \"OWNER_OCC\": 5777, \"RENTER_OCC\": 1238 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.320240569779358, 40.733756472936577 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Millville\", \"CLASS\": \"city\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"46680\", \"CAPITAL\": \"N\", \"AREALAND\": 42.350000, \"AREAWATER\": 2.186000, \"POP_CL\": 6, \"POP2000\": 26847, \"WHITE\": 20438, \"BLACK\": 4025, \"AMERI_ES\": 139, \"ASIAN\": 216, \"HAWN_PI\": 8, \"OTHER\": 1384, \"MULT_RACE\": 637, \"HISPANIC\": 2998, \"MALES\": 12678, \"FEMALES\": 14169, \"AGE_UNDER5\": 1871, \"AGE_5_17\": 5627, \"AGE_18_21\": 1339, \"AGE_22_29\": 2811, \"AGE_30_39\": 3888, \"AGE_40_49\": 3847, \"AGE_50_64\": 4004, \"AGE_65_UP\": 3460, \"MED_AGE\": 35.000000, \"MED_AGE_M\": 33.500000, \"MED_AGE_F\": 36.000000, \"HOUSEHOLDS\": 10043, \"AVE_HH_SZ\": 2.650000, \"HSEHLD_1_M\": 1041, \"HSEHLD_1_F\": 1478, \"MARHH_CHD\": 2091, \"MARHH_NO_C\": 2580, \"MHH_CHILD\": 308, \"FHH_CHILD\": 1119, \"FAMILIES\": 7011, \"AVE_FAM_SZ\": 3.150000, \"HSE_UNITS\": 10652, \"VACANT\": 609, \"OWNER_OCC\": 6413, \"RENTER_OCC\": 3630 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.037703683631918, 39.390768204148003 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Montclair\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"47490\", \"CAPITAL\": \"N\", \"AREALAND\": 6.303000, \"AREAWATER\": 0.004000, \"POP_CL\": 6, \"POP2000\": 38977, \"WHITE\": 23297, \"BLACK\": 12497, \"AMERI_ES\": 73, \"ASIAN\": 1228, \"HAWN_PI\": 14, \"OTHER\": 688, \"MULT_RACE\": 1180, \"HISPANIC\": 1995, \"MALES\": 18053, \"FEMALES\": 20924, \"AGE_UNDER5\": 2716, \"AGE_5_17\": 7248, \"AGE_18_21\": 1467, \"AGE_22_29\": 3260, \"AGE_30_39\": 6541, \"AGE_40_49\": 7050, \"AGE_50_64\": 6030, \"AGE_65_UP\": 4665, \"MED_AGE\": 37.500000, \"MED_AGE_M\": 35.900000, \"MED_AGE_F\": 38.700000, \"HOUSEHOLDS\": 15020, \"AVE_HH_SZ\": 2.530000, \"HSEHLD_1_M\": 1606, \"HSEHLD_1_F\": 2790, \"MARHH_CHD\": 3833, \"MARHH_NO_C\": 3259, \"MHH_CHILD\": 189, \"FHH_CHILD\": 1128, \"FAMILIES\": 9682, \"AVE_FAM_SZ\": 3.160000, \"HSE_UNITS\": 15531, \"VACANT\": 511, \"OWNER_OCC\": 8476, \"RENTER_OCC\": 6544 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.212094841727378, 40.822254902449046 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Moorestown-Lenola\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"47895\", \"CAPITAL\": \"N\", \"AREALAND\": 7.044000, \"AREAWATER\": 0.054000, \"POP_CL\": 6, \"POP2000\": 13860, \"WHITE\": 12291, \"BLACK\": 964, \"AMERI_ES\": 27, \"ASIAN\": 295, \"HAWN_PI\": 1, \"OTHER\": 76, \"MULT_RACE\": 206, \"HISPANIC\": 274, \"MALES\": 6479, \"FEMALES\": 7381, \"AGE_UNDER5\": 843, \"AGE_5_17\": 2818, \"AGE_18_21\": 381, \"AGE_22_29\": 834, \"AGE_30_39\": 1781, \"AGE_40_49\": 2344, \"AGE_50_64\": 2417, \"AGE_65_UP\": 2442, \"MED_AGE\": 41.100000, \"MED_AGE_M\": 39.900000, \"MED_AGE_F\": 42.100000, \"HOUSEHOLDS\": 5250, \"AVE_HH_SZ\": 2.590000, \"HSEHLD_1_M\": 438, \"HSEHLD_1_F\": 778, \"MARHH_CHD\": 1433, \"MARHH_NO_C\": 1690, \"MHH_CHILD\": 64, \"FHH_CHILD\": 323, \"FAMILIES\": 3826, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 5440, \"VACANT\": 190, \"OWNER_OCC\": 4133, \"RENTER_OCC\": 1117 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.957399901064434, 39.962565429080321 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Morganville\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"48030\", \"CAPITAL\": \"N\", \"AREALAND\": 5.949000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11255, \"WHITE\": 9822, \"BLACK\": 193, \"AMERI_ES\": 1, \"ASIAN\": 1098, \"HAWN_PI\": 5, \"OTHER\": 56, \"MULT_RACE\": 80, \"HISPANIC\": 331, \"MALES\": 5491, \"FEMALES\": 5764, \"AGE_UNDER5\": 681, \"AGE_5_17\": 2456, \"AGE_18_21\": 382, \"AGE_22_29\": 645, \"AGE_30_39\": 1532, \"AGE_40_49\": 2000, \"AGE_50_64\": 2651, \"AGE_65_UP\": 908, \"MED_AGE\": 39.700000, \"MED_AGE_M\": 39.200000, \"MED_AGE_F\": 40.100000, \"HOUSEHOLDS\": 3642, \"AVE_HH_SZ\": 3.090000, \"HSEHLD_1_M\": 88, \"HSEHLD_1_F\": 237, \"MARHH_CHD\": 1516, \"MARHH_NO_C\": 1473, \"MHH_CHILD\": 23, \"FHH_CHILD\": 100, \"FAMILIES\": 3270, \"AVE_FAM_SZ\": 3.290000, \"HSE_UNITS\": 3723, \"VACANT\": 81, \"OWNER_OCC\": 3543, \"RENTER_OCC\": 99 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.291490612038842, 40.336283549946245 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Morristown\", \"CLASS\": \"town\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"48300\", \"CAPITAL\": \"N\", \"AREALAND\": 2.942000, \"AREAWATER\": 0.063000, \"POP_CL\": 6, \"POP2000\": 18544, \"WHITE\": 12452, \"BLACK\": 3144, \"AMERI_ES\": 41, \"ASIAN\": 700, \"HAWN_PI\": 12, \"OTHER\": 1572, \"MULT_RACE\": 623, \"HISPANIC\": 5034, \"MALES\": 9302, \"FEMALES\": 9242, \"AGE_UNDER5\": 1026, \"AGE_5_17\": 2378, \"AGE_18_21\": 780, \"AGE_22_29\": 3021, \"AGE_30_39\": 3858, \"AGE_40_49\": 2726, \"AGE_50_64\": 2463, \"AGE_65_UP\": 2292, \"MED_AGE\": 35.000000, \"MED_AGE_M\": 33.400000, \"MED_AGE_F\": 36.700000, \"HOUSEHOLDS\": 7252, \"AVE_HH_SZ\": 2.430000, \"HSEHLD_1_M\": 1182, \"HSEHLD_1_F\": 1623, \"MARHH_CHD\": 1091, \"MARHH_NO_C\": 1405, \"MHH_CHILD\": 113, \"FHH_CHILD\": 430, \"FAMILIES\": 3700, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 7615, \"VACANT\": 363, \"OWNER_OCC\": 2865, \"RENTER_OCC\": 4387 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.478618089071915, 40.798904904628003 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Newark\", \"CLASS\": \"city\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"51000\", \"CAPITAL\": \"N\", \"AREALAND\": 23.797000, \"AREAWATER\": 2.165000, \"POP_CL\": 8, \"POP2000\": 273546, \"WHITE\": 72537, \"BLACK\": 146250, \"AMERI_ES\": 1005, \"ASIAN\": 3263, \"HAWN_PI\": 135, \"OTHER\": 38430, \"MULT_RACE\": 11926, \"HISPANIC\": 80622, \"MALES\": 132701, \"FEMALES\": 140845, \"AGE_UNDER5\": 21293, \"AGE_5_17\": 55126, \"AGE_18_21\": 18971, \"AGE_22_29\": 37524, \"AGE_30_39\": 44658, \"AGE_40_49\": 35300, \"AGE_50_64\": 35368, \"AGE_65_UP\": 25306, \"MED_AGE\": 30.800000, \"MED_AGE_M\": 29.600000, \"MED_AGE_F\": 32.000000, \"HOUSEHOLDS\": 91382, \"AVE_HH_SZ\": 2.850000, \"HSEHLD_1_M\": 11191, \"HSEHLD_1_F\": 13140, \"MARHH_CHD\": 13811, \"MARHH_NO_C\": 14523, \"MHH_CHILD\": 2751, \"FHH_CHILD\": 15626, \"FAMILIES\": 61999, \"AVE_FAM_SZ\": 3.430000, \"HSE_UNITS\": 100141, \"VACANT\": 8759, \"OWNER_OCC\": 21738, \"RENTER_OCC\": 69644 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.1850447532169, 40.735207004718987 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"New Brunswick\", \"CLASS\": \"city\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"51210\", \"CAPITAL\": \"N\", \"AREALAND\": 5.227000, \"AREAWATER\": 0.521000, \"POP_CL\": 6, \"POP2000\": 48573, \"WHITE\": 23701, \"BLACK\": 11185, \"AMERI_ES\": 224, \"ASIAN\": 2584, \"HAWN_PI\": 40, \"OTHER\": 8780, \"MULT_RACE\": 2059, \"HISPANIC\": 18947, \"MALES\": 24085, \"FEMALES\": 24488, \"AGE_UNDER5\": 3394, \"AGE_5_17\": 6355, \"AGE_18_21\": 10907, \"AGE_22_29\": 10560, \"AGE_30_39\": 6489, \"AGE_40_49\": 4183, \"AGE_50_64\": 3539, \"AGE_65_UP\": 3146, \"MED_AGE\": 23.600000, \"MED_AGE_M\": 24.000000, \"MED_AGE_F\": 23.000000, \"HOUSEHOLDS\": 13057, \"AVE_HH_SZ\": 3.230000, \"HSEHLD_1_M\": 1509, \"HSEHLD_1_F\": 1669, \"MARHH_CHD\": 2061, \"MARHH_NO_C\": 1805, \"MHH_CHILD\": 429, \"FHH_CHILD\": 1306, \"FAMILIES\": 7202, \"AVE_FAM_SZ\": 3.690000, \"HSE_UNITS\": 13893, \"VACANT\": 836, \"OWNER_OCC\": 3431, \"RENTER_OCC\": 9626 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.44784280222747, 40.488308990628646 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"New Milford\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"51660\", \"CAPITAL\": \"N\", \"AREALAND\": 2.310000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 16400, \"WHITE\": 12888, \"BLACK\": 429, \"AMERI_ES\": 19, \"ASIAN\": 2420, \"HAWN_PI\": 4, \"OTHER\": 305, \"MULT_RACE\": 335, \"HISPANIC\": 1326, \"MALES\": 7900, \"FEMALES\": 8500, \"AGE_UNDER5\": 1050, \"AGE_5_17\": 2455, \"AGE_18_21\": 507, \"AGE_22_29\": 1491, \"AGE_30_39\": 2727, \"AGE_40_49\": 2657, \"AGE_50_64\": 2625, \"AGE_65_UP\": 2888, \"MED_AGE\": 39.900000, \"MED_AGE_M\": 38.200000, \"MED_AGE_F\": 41.600000, \"HOUSEHOLDS\": 6346, \"AVE_HH_SZ\": 2.540000, \"HSEHLD_1_M\": 780, \"HSEHLD_1_F\": 1037, \"MARHH_CHD\": 1621, \"MARHH_NO_C\": 1924, \"MHH_CHILD\": 47, \"FHH_CHILD\": 186, \"FAMILIES\": 4275, \"AVE_FAM_SZ\": 3.180000, \"HSE_UNITS\": 6437, \"VACANT\": 91, \"OWNER_OCC\": 4010, \"RENTER_OCC\": 2336 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.018926632527837, 40.936217736729148 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"New Providence\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"51810\", \"CAPITAL\": \"N\", \"AREALAND\": 3.679000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11907, \"WHITE\": 10689, \"BLACK\": 105, \"AMERI_ES\": 4, \"ASIAN\": 905, \"HAWN_PI\": 3, \"OTHER\": 81, \"MULT_RACE\": 120, \"HISPANIC\": 417, \"MALES\": 5770, \"FEMALES\": 6137, \"AGE_UNDER5\": 934, \"AGE_5_17\": 2202, \"AGE_18_21\": 285, \"AGE_22_29\": 717, \"AGE_30_39\": 2063, \"AGE_40_49\": 2120, \"AGE_50_64\": 1765, \"AGE_65_UP\": 1821, \"MED_AGE\": 39.000000, \"MED_AGE_M\": 37.900000, \"MED_AGE_F\": 39.800000, \"HOUSEHOLDS\": 4404, \"AVE_HH_SZ\": 2.670000, \"HSEHLD_1_M\": 318, \"HSEHLD_1_F\": 626, \"MARHH_CHD\": 1507, \"MARHH_NO_C\": 1415, \"MHH_CHILD\": 43, \"FHH_CHILD\": 119, \"FAMILIES\": 3309, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 4485, \"VACANT\": 81, \"OWNER_OCC\": 3356, \"RENTER_OCC\": 1048 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.403191192547197, 40.700506164183111 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"North Arlington\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"52320\", \"CAPITAL\": \"N\", \"AREALAND\": 2.581000, \"AREAWATER\": 0.036000, \"POP_CL\": 6, \"POP2000\": 15181, \"WHITE\": 13603, \"BLACK\": 70, \"AMERI_ES\": 22, \"ASIAN\": 852, \"HAWN_PI\": 2, \"OTHER\": 348, \"MULT_RACE\": 284, \"HISPANIC\": 1605, \"MALES\": 7137, \"FEMALES\": 8044, \"AGE_UNDER5\": 686, \"AGE_5_17\": 2050, \"AGE_18_21\": 583, \"AGE_22_29\": 1753, \"AGE_30_39\": 2331, \"AGE_40_49\": 2215, \"AGE_50_64\": 2621, \"AGE_65_UP\": 2942, \"MED_AGE\": 40.900000, \"MED_AGE_M\": 38.300000, \"MED_AGE_F\": 43.200000, \"HOUSEHOLDS\": 6392, \"AVE_HH_SZ\": 2.370000, \"HSEHLD_1_M\": 678, \"HSEHLD_1_F\": 1299, \"MARHH_CHD\": 1276, \"MARHH_NO_C\": 1902, \"MHH_CHILD\": 50, \"FHH_CHILD\": 241, \"FAMILIES\": 4129, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 6529, \"VACANT\": 137, \"OWNER_OCC\": 3477, \"RENTER_OCC\": 2915 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.13315100451068, 40.791326225074549 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"North Brunswick Township\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"52605\", \"CAPITAL\": \"N\", \"AREALAND\": 12.022000, \"AREAWATER\": 0.234000, \"POP_CL\": 6, \"POP2000\": 36287, \"WHITE\": 22763, \"BLACK\": 5542, \"AMERI_ES\": 63, \"ASIAN\": 5152, \"HAWN_PI\": 10, \"OTHER\": 1707, \"MULT_RACE\": 1050, \"HISPANIC\": 3775, \"MALES\": 18021, \"FEMALES\": 18266, \"AGE_UNDER5\": 2437, \"AGE_5_17\": 5916, \"AGE_18_21\": 1513, \"AGE_22_29\": 4564, \"AGE_30_39\": 6964, \"AGE_40_49\": 5810, \"AGE_50_64\": 5468, \"AGE_65_UP\": 3615, \"MED_AGE\": 35.400000, \"MED_AGE_M\": 34.000000, \"MED_AGE_F\": 36.800000, \"HOUSEHOLDS\": 13635, \"AVE_HH_SZ\": 2.580000, \"HSEHLD_1_M\": 1346, \"HSEHLD_1_F\": 1993, \"MARHH_CHD\": 3474, \"MARHH_NO_C\": 3802, \"MHH_CHILD\": 207, \"FHH_CHILD\": 855, \"FAMILIES\": 9363, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 13932, \"VACANT\": 297, \"OWNER_OCC\": 8565, \"RENTER_OCC\": 5070 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.476739231732992, 40.45248188797445 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"North Plainfield\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"53280\", \"CAPITAL\": \"N\", \"AREALAND\": 2.790000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 21103, \"WHITE\": 13307, \"BLACK\": 2824, \"AMERI_ES\": 59, \"ASIAN\": 1064, \"HAWN_PI\": 17, \"OTHER\": 2887, \"MULT_RACE\": 945, \"HISPANIC\": 6916, \"MALES\": 10409, \"FEMALES\": 10694, \"AGE_UNDER5\": 1654, \"AGE_5_17\": 3785, \"AGE_18_21\": 972, \"AGE_22_29\": 2633, \"AGE_30_39\": 4173, \"AGE_40_49\": 3242, \"AGE_50_64\": 2648, \"AGE_65_UP\": 1996, \"MED_AGE\": 33.700000, \"MED_AGE_M\": 32.900000, \"MED_AGE_F\": 34.400000, \"HOUSEHOLDS\": 7202, \"AVE_HH_SZ\": 2.900000, \"HSEHLD_1_M\": 761, \"HSEHLD_1_F\": 912, \"MARHH_CHD\": 2024, \"MARHH_NO_C\": 1769, \"MHH_CHILD\": 194, \"FHH_CHILD\": 446, \"FAMILIES\": 5086, \"AVE_FAM_SZ\": 3.400000, \"HSE_UNITS\": 7393, \"VACANT\": 191, \"OWNER_OCC\": 4238, \"RENTER_OCC\": 2964 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.435877144999168, 40.622740042110578 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Nutley\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"53670\", \"CAPITAL\": \"N\", \"AREALAND\": 3.368000, \"AREAWATER\": 0.060000, \"POP_CL\": 6, \"POP2000\": 27362, \"WHITE\": 24064, \"BLACK\": 511, \"AMERI_ES\": 15, \"ASIAN\": 1943, \"HAWN_PI\": 10, \"OTHER\": 480, \"MULT_RACE\": 339, \"HISPANIC\": 1830, \"MALES\": 12912, \"FEMALES\": 14450, \"AGE_UNDER5\": 1510, \"AGE_5_17\": 4456, \"AGE_18_21\": 934, \"AGE_22_29\": 2644, \"AGE_30_39\": 4464, \"AGE_40_49\": 4538, \"AGE_50_64\": 4414, \"AGE_65_UP\": 4402, \"MED_AGE\": 39.300000, \"MED_AGE_M\": 37.600000, \"MED_AGE_F\": 40.900000, \"HOUSEHOLDS\": 10884, \"AVE_HH_SZ\": 2.510000, \"HSEHLD_1_M\": 1091, \"HSEHLD_1_F\": 1945, \"MARHH_CHD\": 2650, \"MARHH_NO_C\": 3232, \"MHH_CHILD\": 99, \"FHH_CHILD\": 445, \"FAMILIES\": 7371, \"AVE_FAM_SZ\": 3.110000, \"HSE_UNITS\": 11118, \"VACANT\": 234, \"OWNER_OCC\": 7276, \"RENTER_OCC\": 3608 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.158878752381383, 40.819606119997509 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Oakland\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"53850\", \"CAPITAL\": \"N\", \"AREALAND\": 8.603000, \"AREAWATER\": 0.147000, \"POP_CL\": 6, \"POP2000\": 12466, \"WHITE\": 11813, \"BLACK\": 97, \"AMERI_ES\": 8, \"ASIAN\": 337, \"HAWN_PI\": 1, \"OTHER\": 87, \"MULT_RACE\": 123, \"HISPANIC\": 483, \"MALES\": 6090, \"FEMALES\": 6376, \"AGE_UNDER5\": 970, \"AGE_5_17\": 2202, \"AGE_18_21\": 362, \"AGE_22_29\": 786, \"AGE_30_39\": 2184, \"AGE_40_49\": 2143, \"AGE_50_64\": 2235, \"AGE_65_UP\": 1584, \"MED_AGE\": 38.900000, \"MED_AGE_M\": 38.300000, \"MED_AGE_F\": 39.700000, \"HOUSEHOLDS\": 4255, \"AVE_HH_SZ\": 2.880000, \"HSEHLD_1_M\": 211, \"HSEHLD_1_F\": 334, \"MARHH_CHD\": 1540, \"MARHH_NO_C\": 1626, \"MHH_CHILD\": 44, \"FHH_CHILD\": 96, \"FAMILIES\": 3567, \"AVE_FAM_SZ\": 3.150000, \"HSE_UNITS\": 4345, \"VACANT\": 90, \"OWNER_OCC\": 3967, \"RENTER_OCC\": 288 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.237379793498178, 41.02888981799277 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ocean Acres\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"54315\", \"CAPITAL\": \"N\", \"AREALAND\": 5.852000, \"AREAWATER\": 0.089000, \"POP_CL\": 6, \"POP2000\": 13155, \"WHITE\": 12673, \"BLACK\": 132, \"AMERI_ES\": 17, \"ASIAN\": 122, \"HAWN_PI\": 3, \"OTHER\": 71, \"MULT_RACE\": 137, \"HISPANIC\": 365, \"MALES\": 6442, \"FEMALES\": 6713, \"AGE_UNDER5\": 1057, \"AGE_5_17\": 2528, \"AGE_18_21\": 471, \"AGE_22_29\": 980, \"AGE_30_39\": 2342, \"AGE_40_49\": 1870, \"AGE_50_64\": 1802, \"AGE_65_UP\": 2105, \"MED_AGE\": 36.600000, \"MED_AGE_M\": 35.500000, \"MED_AGE_F\": 37.600000, \"HOUSEHOLDS\": 4683, \"AVE_HH_SZ\": 2.810000, \"HSEHLD_1_M\": 234, \"HSEHLD_1_F\": 493, \"MARHH_CHD\": 1525, \"MARHH_NO_C\": 1727, \"MHH_CHILD\": 66, \"FHH_CHILD\": 222, \"FAMILIES\": 3808, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 4959, \"VACANT\": 276, \"OWNER_OCC\": 4420, \"RENTER_OCC\": 263 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.284201344732196, 39.739805524152935 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ocean City\", \"CLASS\": \"city\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"54360\", \"CAPITAL\": \"N\", \"AREALAND\": 6.918000, \"AREAWATER\": 4.156000, \"POP_CL\": 6, \"POP2000\": 15378, \"WHITE\": 14389, \"BLACK\": 663, \"AMERI_ES\": 18, \"ASIAN\": 86, \"HAWN_PI\": 10, \"OTHER\": 80, \"MULT_RACE\": 132, \"HISPANIC\": 306, \"MALES\": 7129, \"FEMALES\": 8249, \"AGE_UNDER5\": 529, \"AGE_5_17\": 1987, \"AGE_18_21\": 491, \"AGE_22_29\": 1134, \"AGE_30_39\": 1791, \"AGE_40_49\": 2240, \"AGE_50_64\": 3217, \"AGE_65_UP\": 3989, \"MED_AGE\": 47.800000, \"MED_AGE_M\": 45.400000, \"MED_AGE_F\": 50.300000, \"HOUSEHOLDS\": 7464, \"AVE_HH_SZ\": 2.020000, \"HSEHLD_1_M\": 1138, \"HSEHLD_1_F\": 1877, \"MARHH_CHD\": 841, \"MARHH_NO_C\": 2286, \"MHH_CHILD\": 87, \"FHH_CHILD\": 334, \"FAMILIES\": 4007, \"AVE_FAM_SZ\": 2.710000, \"HSE_UNITS\": 20298, \"VACANT\": 12834, \"OWNER_OCC\": 4627, \"RENTER_OCC\": 2837 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.593892704459648, 39.265375417869791 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Old Bridge\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"54690\", \"CAPITAL\": \"N\", \"AREALAND\": 7.050000, \"AREAWATER\": 0.124000, \"POP_CL\": 6, \"POP2000\": 22833, \"WHITE\": 19435, \"BLACK\": 859, \"AMERI_ES\": 31, \"ASIAN\": 1805, \"HAWN_PI\": 6, \"OTHER\": 317, \"MULT_RACE\": 380, \"HISPANIC\": 1501, \"MALES\": 11205, \"FEMALES\": 11628, \"AGE_UNDER5\": 1634, \"AGE_5_17\": 4654, \"AGE_18_21\": 908, \"AGE_22_29\": 1740, \"AGE_30_39\": 3978, \"AGE_40_49\": 3920, \"AGE_50_64\": 3552, \"AGE_65_UP\": 2447, \"MED_AGE\": 36.700000, \"MED_AGE_M\": 35.600000, \"MED_AGE_F\": 37.700000, \"HOUSEHOLDS\": 7274, \"AVE_HH_SZ\": 3.110000, \"HSEHLD_1_M\": 303, \"HSEHLD_1_F\": 570, \"MARHH_CHD\": 2816, \"MARHH_NO_C\": 2533, \"MHH_CHILD\": 91, \"FHH_CHILD\": 263, \"FAMILIES\": 6232, \"AVE_FAM_SZ\": 3.390000, \"HSE_UNITS\": 7346, \"VACANT\": 72, \"OWNER_OCC\": 6477, \"RENTER_OCC\": 797 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.334439816911186, 40.397745393151816 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Orange\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"55020\", \"CAPITAL\": \"N\", \"AREALAND\": 2.205000, \"AREAWATER\": 0.002000, \"POP_CL\": 6, \"POP2000\": 32868, \"WHITE\": 4337, \"BLACK\": 24685, \"AMERI_ES\": 113, \"ASIAN\": 415, \"HAWN_PI\": 33, \"OTHER\": 1712, \"MULT_RACE\": 1573, \"HISPANIC\": 4097, \"MALES\": 15199, \"FEMALES\": 17669, \"AGE_UNDER5\": 2810, \"AGE_5_17\": 6298, \"AGE_18_21\": 1772, \"AGE_22_29\": 4174, \"AGE_30_39\": 5483, \"AGE_40_49\": 4392, \"AGE_50_64\": 4377, \"AGE_65_UP\": 3562, \"MED_AGE\": 32.500000, \"MED_AGE_M\": 30.300000, \"MED_AGE_F\": 34.200000, \"HOUSEHOLDS\": 11885, \"AVE_HH_SZ\": 2.730000, \"HSEHLD_1_M\": 1423, \"HSEHLD_1_F\": 2166, \"MARHH_CHD\": 1820, \"MARHH_NO_C\": 1833, \"MHH_CHILD\": 360, \"FHH_CHILD\": 1795, \"FAMILIES\": 7647, \"AVE_FAM_SZ\": 3.380000, \"HSE_UNITS\": 12665, \"VACANT\": 780, \"OWNER_OCC\": 3025, \"RENTER_OCC\": 8860 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.236135199168757, 40.768305801731728 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Palisades Park\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"55770\", \"CAPITAL\": \"N\", \"AREALAND\": 1.210000, \"AREAWATER\": 0.064000, \"POP_CL\": 6, \"POP2000\": 17073, \"WHITE\": 8241, \"BLACK\": 235, \"AMERI_ES\": 32, \"ASIAN\": 7016, \"HAWN_PI\": 5, \"OTHER\": 991, \"MULT_RACE\": 553, \"HISPANIC\": 2813, \"MALES\": 8497, \"FEMALES\": 8576, \"AGE_UNDER5\": 1152, \"AGE_5_17\": 2160, \"AGE_18_21\": 802, \"AGE_22_29\": 2385, \"AGE_30_39\": 3466, \"AGE_40_49\": 2385, \"AGE_50_64\": 2662, \"AGE_65_UP\": 2061, \"MED_AGE\": 35.600000, \"MED_AGE_M\": 34.800000, \"MED_AGE_F\": 36.400000, \"HOUSEHOLDS\": 6247, \"AVE_HH_SZ\": 2.730000, \"HSEHLD_1_M\": 617, \"HSEHLD_1_F\": 812, \"MARHH_CHD\": 1598, \"MARHH_NO_C\": 1831, \"MHH_CHILD\": 77, \"FHH_CHILD\": 236, \"FAMILIES\": 4445, \"AVE_FAM_SZ\": 3.200000, \"HSE_UNITS\": 6386, \"VACANT\": 139, \"OWNER_OCC\": 2326, \"RENTER_OCC\": 3921 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.994913427176684, 40.845748836378242 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Paramus\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"55950\", \"CAPITAL\": \"N\", \"AREALAND\": 10.472000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 25737, \"WHITE\": 20380, \"BLACK\": 291, \"AMERI_ES\": 12, \"ASIAN\": 4434, \"HAWN_PI\": 3, \"OTHER\": 229, \"MULT_RACE\": 388, \"HISPANIC\": 1253, \"MALES\": 12497, \"FEMALES\": 13240, \"AGE_UNDER5\": 1331, \"AGE_5_17\": 4651, \"AGE_18_21\": 845, \"AGE_22_29\": 1516, \"AGE_30_39\": 3277, \"AGE_40_49\": 4093, \"AGE_50_64\": 4493, \"AGE_65_UP\": 5531, \"MED_AGE\": 42.900000, \"MED_AGE_M\": 41.700000, \"MED_AGE_F\": 44.100000, \"HOUSEHOLDS\": 8082, \"AVE_HH_SZ\": 3.000000, \"HSEHLD_1_M\": 375, \"HSEHLD_1_F\": 789, \"MARHH_CHD\": 2721, \"MARHH_NO_C\": 3203, \"MHH_CHILD\": 58, \"FHH_CHILD\": 212, \"FAMILIES\": 6779, \"AVE_FAM_SZ\": 3.320000, \"HSE_UNITS\": 8209, \"VACANT\": 127, \"OWNER_OCC\": 7331, \"RENTER_OCC\": 751 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.07058565415312, 40.94711350832381 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Passaic\", \"CLASS\": \"city\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"56550\", \"CAPITAL\": \"N\", \"AREALAND\": 3.112000, \"AREAWATER\": 0.100000, \"POP_CL\": 7, \"POP2000\": 67861, \"WHITE\": 24044, \"BLACK\": 9385, \"AMERI_ES\": 531, \"ASIAN\": 3740, \"HAWN_PI\": 29, \"OTHER\": 26709, \"MULT_RACE\": 3423, \"HISPANIC\": 42387, \"MALES\": 33852, \"FEMALES\": 34009, \"AGE_UNDER5\": 6525, \"AGE_5_17\": 14374, \"AGE_18_21\": 4834, \"AGE_22_29\": 9876, \"AGE_30_39\": 10602, \"AGE_40_49\": 8383, \"AGE_50_64\": 7754, \"AGE_65_UP\": 5513, \"MED_AGE\": 28.600000, \"MED_AGE_M\": 27.600000, \"MED_AGE_F\": 29.800000, \"HOUSEHOLDS\": 19458, \"AVE_HH_SZ\": 3.460000, \"HSEHLD_1_M\": 1671, \"HSEHLD_1_F\": 2274, \"MARHH_CHD\": 4976, \"MARHH_NO_C\": 3521, \"MHH_CHILD\": 760, \"FHH_CHILD\": 2427, \"FAMILIES\": 14456, \"AVE_FAM_SZ\": 3.930000, \"HSE_UNITS\": 20194, \"VACANT\": 736, \"OWNER_OCC\": 5250, \"RENTER_OCC\": 14208 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.129107675781981, 40.857390248175243 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Paterson\", \"CLASS\": \"city\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"57000\", \"CAPITAL\": \"N\", \"AREALAND\": 8.442000, \"AREAWATER\": 0.291000, \"POP_CL\": 8, \"POP2000\": 149222, \"WHITE\": 45913, \"BLACK\": 49095, \"AMERI_ES\": 901, \"ASIAN\": 2831, \"HAWN_PI\": 84, \"OTHER\": 41184, \"MULT_RACE\": 9214, \"HISPANIC\": 74774, \"MALES\": 72473, \"FEMALES\": 76749, \"AGE_UNDER5\": 12578, \"AGE_5_17\": 31859, \"AGE_18_21\": 9610, \"AGE_22_29\": 19362, \"AGE_30_39\": 24650, \"AGE_40_49\": 19649, \"AGE_50_64\": 19115, \"AGE_65_UP\": 12399, \"MED_AGE\": 30.500000, \"MED_AGE_M\": 29.500000, \"MED_AGE_F\": 31.500000, \"HOUSEHOLDS\": 44710, \"AVE_HH_SZ\": 3.250000, \"HSEHLD_1_M\": 4017, \"HSEHLD_1_F\": 5126, \"MARHH_CHD\": 9524, \"MARHH_NO_C\": 8107, \"MHH_CHILD\": 1742, \"FHH_CHILD\": 7004, \"FAMILIES\": 33351, \"AVE_FAM_SZ\": 3.710000, \"HSE_UNITS\": 47169, \"VACANT\": 2459, \"OWNER_OCC\": 14084, \"RENTER_OCC\": 30626 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.163036154798235, 40.91550411118304 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pennsauken\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"57690\", \"CAPITAL\": \"N\", \"AREALAND\": 10.534000, \"AREAWATER\": 1.655000, \"POP_CL\": 6, \"POP2000\": 35737, \"WHITE\": 21479, \"BLACK\": 8641, \"AMERI_ES\": 124, \"ASIAN\": 1636, \"HAWN_PI\": 7, \"OTHER\": 2954, \"MULT_RACE\": 896, \"HISPANIC\": 5126, \"MALES\": 17116, \"FEMALES\": 18621, \"AGE_UNDER5\": 2212, \"AGE_5_17\": 7600, \"AGE_18_21\": 1656, \"AGE_22_29\": 3182, \"AGE_30_39\": 5514, \"AGE_40_49\": 5483, \"AGE_50_64\": 5025, \"AGE_65_UP\": 5065, \"MED_AGE\": 36.100000, \"MED_AGE_M\": 34.800000, \"MED_AGE_F\": 37.300000, \"HOUSEHOLDS\": 12389, \"AVE_HH_SZ\": 2.830000, \"HSEHLD_1_M\": 1205, \"HSEHLD_1_F\": 1660, \"MARHH_CHD\": 3102, \"MARHH_NO_C\": 3294, \"MHH_CHILD\": 355, \"FHH_CHILD\": 1066, \"FAMILIES\": 9097, \"AVE_FAM_SZ\": 3.340000, \"HSE_UNITS\": 12945, \"VACANT\": 556, \"OWNER_OCC\": 9963, \"RENTER_OCC\": 2426 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.055982383898296, 39.956565184055705 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pennsville\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"57840\", \"CAPITAL\": \"N\", \"AREALAND\": 10.477000, \"AREAWATER\": 0.110000, \"POP_CL\": 6, \"POP2000\": 11657, \"WHITE\": 11320, \"BLACK\": 79, \"AMERI_ES\": 19, \"ASIAN\": 103, \"HAWN_PI\": 2, \"OTHER\": 44, \"MULT_RACE\": 90, \"HISPANIC\": 185, \"MALES\": 5590, \"FEMALES\": 6067, \"AGE_UNDER5\": 672, \"AGE_5_17\": 2049, \"AGE_18_21\": 531, \"AGE_22_29\": 1041, \"AGE_30_39\": 1702, \"AGE_40_49\": 1768, \"AGE_50_64\": 2124, \"AGE_65_UP\": 1770, \"MED_AGE\": 39.100000, \"MED_AGE_M\": 37.800000, \"MED_AGE_F\": 40.200000, \"HOUSEHOLDS\": 4684, \"AVE_HH_SZ\": 2.490000, \"HSEHLD_1_M\": 458, \"HSEHLD_1_F\": 731, \"MARHH_CHD\": 1039, \"MARHH_NO_C\": 1574, \"MHH_CHILD\": 104, \"FHH_CHILD\": 253, \"FAMILIES\": 3293, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 4930, \"VACANT\": 246, \"OWNER_OCC\": 3604, \"RENTER_OCC\": 1080 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.517155136683542, 39.655995211304834 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Perth Amboy\", \"CLASS\": \"city\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"58200\", \"CAPITAL\": \"N\", \"AREALAND\": 4.782000, \"AREAWATER\": 1.198000, \"POP_CL\": 6, \"POP2000\": 47303, \"WHITE\": 21951, \"BLACK\": 4749, \"AMERI_ES\": 330, \"ASIAN\": 723, \"HAWN_PI\": 60, \"OTHER\": 16834, \"MULT_RACE\": 2656, \"HISPANIC\": 33033, \"MALES\": 23441, \"FEMALES\": 23862, \"AGE_UNDER5\": 3805, \"AGE_5_17\": 9667, \"AGE_18_21\": 3045, \"AGE_22_29\": 6177, \"AGE_30_39\": 7744, \"AGE_40_49\": 6226, \"AGE_50_64\": 5819, \"AGE_65_UP\": 4820, \"MED_AGE\": 31.200000, \"MED_AGE_M\": 29.900000, \"MED_AGE_F\": 32.500000, \"HOUSEHOLDS\": 14562, \"AVE_HH_SZ\": 3.200000, \"HSEHLD_1_M\": 1288, \"HSEHLD_1_F\": 1705, \"MARHH_CHD\": 3472, \"MARHH_NO_C\": 3017, \"MHH_CHILD\": 619, \"FHH_CHILD\": 1773, \"FAMILIES\": 10768, \"AVE_FAM_SZ\": 3.630000, \"HSE_UNITS\": 15236, \"VACANT\": 674, \"OWNER_OCC\": 5898, \"RENTER_OCC\": 8664 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.275426565862219, 40.519460627042882 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Phillipsburg\", \"CLASS\": \"town\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"58350\", \"CAPITAL\": \"N\", \"AREALAND\": 3.224000, \"AREAWATER\": 0.114000, \"POP_CL\": 6, \"POP2000\": 15166, \"WHITE\": 13928, \"BLACK\": 527, \"AMERI_ES\": 18, \"ASIAN\": 126, \"HAWN_PI\": 2, \"OTHER\": 306, \"MULT_RACE\": 259, \"HISPANIC\": 816, \"MALES\": 7226, \"FEMALES\": 7940, \"AGE_UNDER5\": 1090, \"AGE_5_17\": 2948, \"AGE_18_21\": 744, \"AGE_22_29\": 1385, \"AGE_30_39\": 2411, \"AGE_40_49\": 2223, \"AGE_50_64\": 2054, \"AGE_65_UP\": 2311, \"MED_AGE\": 36.000000, \"MED_AGE_M\": 34.100000, \"MED_AGE_F\": 37.800000, \"HOUSEHOLDS\": 6044, \"AVE_HH_SZ\": 2.490000, \"HSEHLD_1_M\": 695, \"HSEHLD_1_F\": 1098, \"MARHH_CHD\": 1146, \"MARHH_NO_C\": 1475, \"MHH_CHILD\": 185, \"FHH_CHILD\": 600, \"FAMILIES\": 3945, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 6651, \"VACANT\": 607, \"OWNER_OCC\": 3448, \"RENTER_OCC\": 2596 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.185402896277353, 40.689476905876184 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pine Hill\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"58770\", \"CAPITAL\": \"N\", \"AREALAND\": 3.930000, \"AREAWATER\": 0.030000, \"POP_CL\": 6, \"POP2000\": 10880, \"WHITE\": 8355, \"BLACK\": 1996, \"AMERI_ES\": 30, \"ASIAN\": 153, \"HAWN_PI\": 2, \"OTHER\": 132, \"MULT_RACE\": 212, \"HISPANIC\": 396, \"MALES\": 5161, \"FEMALES\": 5719, \"AGE_UNDER5\": 811, \"AGE_5_17\": 2152, \"AGE_18_21\": 567, \"AGE_22_29\": 1278, \"AGE_30_39\": 2061, \"AGE_40_49\": 1686, \"AGE_50_64\": 1402, \"AGE_65_UP\": 923, \"MED_AGE\": 33.300000, \"MED_AGE_M\": 32.800000, \"MED_AGE_F\": 34.000000, \"HOUSEHOLDS\": 4214, \"AVE_HH_SZ\": 2.580000, \"HSEHLD_1_M\": 486, \"HSEHLD_1_F\": 686, \"MARHH_CHD\": 952, \"MARHH_NO_C\": 856, \"MHH_CHILD\": 119, \"FHH_CHILD\": 426, \"FAMILIES\": 2742, \"AVE_FAM_SZ\": 3.180000, \"HSE_UNITS\": 4444, \"VACANT\": 230, \"OWNER_OCC\": 2607, \"RENTER_OCC\": 1607 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.985589128682093, 39.785017349854094 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Plainfield\", \"CLASS\": \"city\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"59190\", \"CAPITAL\": \"N\", \"AREALAND\": 6.038000, \"AREAWATER\": 0.001000, \"POP_CL\": 6, \"POP2000\": 47829, \"WHITE\": 10258, \"BLACK\": 29550, \"AMERI_ES\": 195, \"ASIAN\": 447, \"HAWN_PI\": 46, \"OTHER\": 5156, \"MULT_RACE\": 2177, \"HISPANIC\": 12033, \"MALES\": 23393, \"FEMALES\": 24436, \"AGE_UNDER5\": 3770, \"AGE_5_17\": 9397, \"AGE_18_21\": 2713, \"AGE_22_29\": 5815, \"AGE_30_39\": 8246, \"AGE_40_49\": 6643, \"AGE_50_64\": 6843, \"AGE_65_UP\": 4402, \"MED_AGE\": 32.800000, \"MED_AGE_M\": 31.100000, \"MED_AGE_F\": 34.400000, \"HOUSEHOLDS\": 15137, \"AVE_HH_SZ\": 3.100000, \"HSEHLD_1_M\": 1335, \"HSEHLD_1_F\": 1859, \"MARHH_CHD\": 2848, \"MARHH_NO_C\": 3104, \"MHH_CHILD\": 562, \"FHH_CHILD\": 1964, \"FAMILIES\": 10898, \"AVE_FAM_SZ\": 3.490000, \"HSE_UNITS\": 16180, \"VACANT\": 1043, \"OWNER_OCC\": 7579, \"RENTER_OCC\": 7558 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.416164060408462, 40.615357111579861 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pleasantville\", \"CLASS\": \"city\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"59640\", \"CAPITAL\": \"N\", \"AREALAND\": 5.776000, \"AREAWATER\": 1.547000, \"POP_CL\": 6, \"POP2000\": 19012, \"WHITE\": 4755, \"BLACK\": 10969, \"AMERI_ES\": 54, \"ASIAN\": 371, \"HAWN_PI\": 5, \"OTHER\": 2084, \"MULT_RACE\": 774, \"HISPANIC\": 4158, \"MALES\": 8925, \"FEMALES\": 10087, \"AGE_UNDER5\": 1481, \"AGE_5_17\": 4297, \"AGE_18_21\": 992, \"AGE_22_29\": 1988, \"AGE_30_39\": 3044, \"AGE_40_49\": 2574, \"AGE_50_64\": 2512, \"AGE_65_UP\": 2124, \"MED_AGE\": 32.700000, \"MED_AGE_M\": 30.900000, \"MED_AGE_F\": 34.300000, \"HOUSEHOLDS\": 6402, \"AVE_HH_SZ\": 2.900000, \"HSEHLD_1_M\": 672, \"HSEHLD_1_F\": 896, \"MARHH_CHD\": 1063, \"MARHH_NO_C\": 1175, \"MHH_CHILD\": 291, \"FHH_CHILD\": 958, \"FAMILIES\": 4365, \"AVE_FAM_SZ\": 3.440000, \"HSE_UNITS\": 7042, \"VACANT\": 640, \"OWNER_OCC\": 3605, \"RENTER_OCC\": 2797 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.523038375178288, 39.395570654350671 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Point Pleasant\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"59880\", \"CAPITAL\": \"N\", \"AREALAND\": 3.535000, \"AREAWATER\": 0.628000, \"POP_CL\": 6, \"POP2000\": 19306, \"WHITE\": 18887, \"BLACK\": 56, \"AMERI_ES\": 27, \"ASIAN\": 105, \"HAWN_PI\": 2, \"OTHER\": 96, \"MULT_RACE\": 133, \"HISPANIC\": 465, \"MALES\": 9279, \"FEMALES\": 10027, \"AGE_UNDER5\": 1150, \"AGE_5_17\": 3427, \"AGE_18_21\": 683, \"AGE_22_29\": 1491, \"AGE_30_39\": 3123, \"AGE_40_49\": 3324, \"AGE_50_64\": 3225, \"AGE_65_UP\": 2883, \"MED_AGE\": 39.400000, \"MED_AGE_M\": 38.200000, \"MED_AGE_F\": 40.500000, \"HOUSEHOLDS\": 7560, \"AVE_HH_SZ\": 2.520000, \"HSEHLD_1_M\": 808, \"HSEHLD_1_F\": 1133, \"MARHH_CHD\": 1932, \"MARHH_NO_C\": 2211, \"MHH_CHILD\": 91, \"FHH_CHILD\": 406, \"FAMILIES\": 5228, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 8350, \"VACANT\": 790, \"OWNER_OCC\": 6033, \"RENTER_OCC\": 1527 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.070527706580421, 40.079648420343688 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pompton Lakes\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"60090\", \"CAPITAL\": \"N\", \"AREALAND\": 2.967000, \"AREAWATER\": 0.189000, \"POP_CL\": 6, \"POP2000\": 10640, \"WHITE\": 9896, \"BLACK\": 129, \"AMERI_ES\": 20, \"ASIAN\": 322, \"HAWN_PI\": 1, \"OTHER\": 167, \"MULT_RACE\": 105, \"HISPANIC\": 611, \"MALES\": 5119, \"FEMALES\": 5521, \"AGE_UNDER5\": 738, \"AGE_5_17\": 1841, \"AGE_18_21\": 408, \"AGE_22_29\": 978, \"AGE_30_39\": 1861, \"AGE_40_49\": 1744, \"AGE_50_64\": 1645, \"AGE_65_UP\": 1425, \"MED_AGE\": 37.200000, \"MED_AGE_M\": 35.800000, \"MED_AGE_F\": 38.600000, \"HOUSEHOLDS\": 3949, \"AVE_HH_SZ\": 2.690000, \"HSEHLD_1_M\": 350, \"HSEHLD_1_F\": 589, \"MARHH_CHD\": 1120, \"MARHH_NO_C\": 1163, \"MHH_CHILD\": 46, \"FHH_CHILD\": 163, \"FAMILIES\": 2805, \"AVE_FAM_SZ\": 3.240000, \"HSE_UNITS\": 4024, \"VACANT\": 75, \"OWNER_OCC\": 3046, \"RENTER_OCC\": 903 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.286323985257837, 41.000452623255939 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Princeton\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"60900\", \"CAPITAL\": \"N\", \"AREALAND\": 1.848000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14203, \"WHITE\": 11399, \"BLACK\": 908, \"AMERI_ES\": 40, \"ASIAN\": 1060, \"HAWN_PI\": 20, \"OTHER\": 355, \"MULT_RACE\": 421, \"HISPANIC\": 1009, \"MALES\": 7380, \"FEMALES\": 6823, \"AGE_UNDER5\": 446, \"AGE_5_17\": 983, \"AGE_18_21\": 4345, \"AGE_22_29\": 3174, \"AGE_30_39\": 1581, \"AGE_40_49\": 1101, \"AGE_50_64\": 1252, \"AGE_65_UP\": 1321, \"MED_AGE\": 24.700000, \"MED_AGE_M\": 24.100000, \"MED_AGE_F\": 25.700000, \"HOUSEHOLDS\": 3326, \"AVE_HH_SZ\": 2.200000, \"HSEHLD_1_M\": 584, \"HSEHLD_1_F\": 750, \"MARHH_CHD\": 601, \"MARHH_NO_C\": 812, \"MHH_CHILD\": 23, \"FHH_CHILD\": 118, \"FAMILIES\": 1693, \"AVE_FAM_SZ\": 2.920000, \"HSE_UNITS\": 3495, \"VACANT\": 169, \"OWNER_OCC\": 1557, \"RENTER_OCC\": 1769 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.657152594241481, 40.352210293901067 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Princeton Meadows\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"60975\", \"CAPITAL\": \"N\", \"AREALAND\": 2.172000, \"AREAWATER\": 0.019000, \"POP_CL\": 6, \"POP2000\": 13436, \"WHITE\": 7546, \"BLACK\": 1295, \"AMERI_ES\": 18, \"ASIAN\": 4037, \"HAWN_PI\": 0, \"OTHER\": 230, \"MULT_RACE\": 310, \"HISPANIC\": 708, \"MALES\": 6818, \"FEMALES\": 6618, \"AGE_UNDER5\": 910, \"AGE_5_17\": 2352, \"AGE_18_21\": 339, \"AGE_22_29\": 2521, \"AGE_30_39\": 3363, \"AGE_40_49\": 2366, \"AGE_50_64\": 1266, \"AGE_65_UP\": 319, \"MED_AGE\": 31.600000, \"MED_AGE_M\": 31.500000, \"MED_AGE_F\": 31.700000, \"HOUSEHOLDS\": 6017, \"AVE_HH_SZ\": 2.220000, \"HSEHLD_1_M\": 1248, \"HSEHLD_1_F\": 984, \"MARHH_CHD\": 1560, \"MARHH_NO_C\": 1130, \"MHH_CHILD\": 57, \"FHH_CHILD\": 332, \"FAMILIES\": 3254, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 6205, \"VACANT\": 188, \"OWNER_OCC\": 2016, \"RENTER_OCC\": 4001 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.562240647112205, 40.331595593705522 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Rahway\", \"CLASS\": \"city\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"61530\", \"CAPITAL\": \"N\", \"AREALAND\": 3.989000, \"AREAWATER\": 0.050000, \"POP_CL\": 6, \"POP2000\": 26500, \"WHITE\": 15950, \"BLACK\": 7173, \"AMERI_ES\": 42, \"ASIAN\": 950, \"HAWN_PI\": 14, \"OTHER\": 1489, \"MULT_RACE\": 882, \"HISPANIC\": 3675, \"MALES\": 12639, \"FEMALES\": 13861, \"AGE_UNDER5\": 1660, \"AGE_5_17\": 4670, \"AGE_18_21\": 1164, \"AGE_22_29\": 2727, \"AGE_30_39\": 4412, \"AGE_40_49\": 4171, \"AGE_50_64\": 3860, \"AGE_65_UP\": 3836, \"MED_AGE\": 37.100000, \"MED_AGE_M\": 35.500000, \"MED_AGE_F\": 38.600000, \"HOUSEHOLDS\": 10028, \"AVE_HH_SZ\": 2.630000, \"HSEHLD_1_M\": 1132, \"HSEHLD_1_F\": 1674, \"MARHH_CHD\": 2083, \"MARHH_NO_C\": 2599, \"MHH_CHILD\": 183, \"FHH_CHILD\": 741, \"FAMILIES\": 6727, \"AVE_FAM_SZ\": 3.240000, \"HSE_UNITS\": 10381, \"VACANT\": 353, \"OWNER_OCC\": 6288, \"RENTER_OCC\": 3740 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.281098814718774, 40.607108612399045 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ramsey\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"61680\", \"CAPITAL\": \"N\", \"AREALAND\": 5.555000, \"AREAWATER\": 0.049000, \"POP_CL\": 6, \"POP2000\": 14351, \"WHITE\": 13148, \"BLACK\": 112, \"AMERI_ES\": 14, \"ASIAN\": 840, \"HAWN_PI\": 1, \"OTHER\": 78, \"MULT_RACE\": 158, \"HISPANIC\": 420, \"MALES\": 6928, \"FEMALES\": 7423, \"AGE_UNDER5\": 1088, \"AGE_5_17\": 2789, \"AGE_18_21\": 381, \"AGE_22_29\": 910, \"AGE_30_39\": 2410, \"AGE_40_49\": 2564, \"AGE_50_64\": 2595, \"AGE_65_UP\": 1614, \"MED_AGE\": 38.600000, \"MED_AGE_M\": 37.700000, \"MED_AGE_F\": 39.300000, \"HOUSEHOLDS\": 5313, \"AVE_HH_SZ\": 2.680000, \"HSEHLD_1_M\": 413, \"HSEHLD_1_F\": 787, \"MARHH_CHD\": 1778, \"MARHH_NO_C\": 1644, \"MHH_CHILD\": 43, \"FHH_CHILD\": 180, \"FAMILIES\": 3945, \"AVE_FAM_SZ\": 3.180000, \"HSE_UNITS\": 5400, \"VACANT\": 87, \"OWNER_OCC\": 4475, \"RENTER_OCC\": 838 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.142493268065067, 41.058825209597074 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Red Bank\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"62430\", \"CAPITAL\": \"N\", \"AREALAND\": 1.784000, \"AREAWATER\": 0.374000, \"POP_CL\": 6, \"POP2000\": 11844, \"WHITE\": 8077, \"BLACK\": 2375, \"AMERI_ES\": 41, \"ASIAN\": 259, \"HAWN_PI\": 10, \"OTHER\": 797, \"MULT_RACE\": 285, \"HISPANIC\": 2027, \"MALES\": 5670, \"FEMALES\": 6174, \"AGE_UNDER5\": 682, \"AGE_5_17\": 1392, \"AGE_18_21\": 552, \"AGE_22_29\": 1614, \"AGE_30_39\": 2148, \"AGE_40_49\": 1613, \"AGE_50_64\": 1670, \"AGE_65_UP\": 2173, \"MED_AGE\": 37.500000, \"MED_AGE_M\": 34.700000, \"MED_AGE_F\": 40.900000, \"HOUSEHOLDS\": 5201, \"AVE_HH_SZ\": 2.200000, \"HSEHLD_1_M\": 873, \"HSEHLD_1_F\": 1360, \"MARHH_CHD\": 586, \"MARHH_NO_C\": 1091, \"MHH_CHILD\": 79, \"FHH_CHILD\": 272, \"FAMILIES\": 2504, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 5450, \"VACANT\": 249, \"OWNER_OCC\": 2478, \"RENTER_OCC\": 2723 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.067191719290221, 40.347498463318885 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ridgefield\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"62910\", \"CAPITAL\": \"N\", \"AREALAND\": 2.610000, \"AREAWATER\": 0.256000, \"POP_CL\": 6, \"POP2000\": 10830, \"WHITE\": 8217, \"BLACK\": 83, \"AMERI_ES\": 9, \"ASIAN\": 1887, \"HAWN_PI\": 4, \"OTHER\": 379, \"MULT_RACE\": 251, \"HISPANIC\": 1494, \"MALES\": 5240, \"FEMALES\": 5590, \"AGE_UNDER5\": 567, \"AGE_5_17\": 1798, \"AGE_18_21\": 360, \"AGE_22_29\": 981, \"AGE_30_39\": 1801, \"AGE_40_49\": 1659, \"AGE_50_64\": 1811, \"AGE_65_UP\": 1853, \"MED_AGE\": 39.500000, \"MED_AGE_M\": 38.000000, \"MED_AGE_F\": 40.800000, \"HOUSEHOLDS\": 4020, \"AVE_HH_SZ\": 2.690000, \"HSEHLD_1_M\": 312, \"HSEHLD_1_F\": 613, \"MARHH_CHD\": 1101, \"MARHH_NO_C\": 1300, \"MHH_CHILD\": 46, \"FHH_CHILD\": 144, \"FAMILIES\": 2967, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 4120, \"VACANT\": 100, \"OWNER_OCC\": 2305, \"RENTER_OCC\": 1715 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.00507772315548, 40.832596788825377 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ridgefield Park\", \"CLASS\": \"village\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"62940\", \"CAPITAL\": \"N\", \"AREALAND\": 1.731000, \"AREAWATER\": 0.192000, \"POP_CL\": 6, \"POP2000\": 12873, \"WHITE\": 10067, \"BLACK\": 528, \"AMERI_ES\": 28, \"ASIAN\": 1011, \"HAWN_PI\": 4, \"OTHER\": 837, \"MULT_RACE\": 398, \"HISPANIC\": 2863, \"MALES\": 6150, \"FEMALES\": 6723, \"AGE_UNDER5\": 755, \"AGE_5_17\": 2123, \"AGE_18_21\": 488, \"AGE_22_29\": 1380, \"AGE_30_39\": 2407, \"AGE_40_49\": 2018, \"AGE_50_64\": 2047, \"AGE_65_UP\": 1655, \"MED_AGE\": 37.200000, \"MED_AGE_M\": 36.400000, \"MED_AGE_F\": 37.900000, \"HOUSEHOLDS\": 5012, \"AVE_HH_SZ\": 2.560000, \"HSEHLD_1_M\": 590, \"HSEHLD_1_F\": 894, \"MARHH_CHD\": 1165, \"MARHH_NO_C\": 1326, \"MHH_CHILD\": 66, \"FHH_CHILD\": 256, \"FAMILIES\": 3243, \"AVE_FAM_SZ\": 3.240000, \"HSE_UNITS\": 5134, \"VACANT\": 122, \"OWNER_OCC\": 2669, \"RENTER_OCC\": 2343 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.024388746166707, 40.857125704257392 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ridgewood\", \"CLASS\": \"village\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"63000\", \"CAPITAL\": \"N\", \"AREALAND\": 5.787000, \"AREAWATER\": 0.046000, \"POP_CL\": 6, \"POP2000\": 24936, \"WHITE\": 21899, \"BLACK\": 409, \"AMERI_ES\": 11, \"ASIAN\": 2162, \"HAWN_PI\": 0, \"OTHER\": 148, \"MULT_RACE\": 307, \"HISPANIC\": 942, \"MALES\": 12002, \"FEMALES\": 12934, \"AGE_UNDER5\": 1938, \"AGE_5_17\": 5537, \"AGE_18_21\": 668, \"AGE_22_29\": 1280, \"AGE_30_39\": 3671, \"AGE_40_49\": 4581, \"AGE_50_64\": 4230, \"AGE_65_UP\": 3031, \"MED_AGE\": 38.600000, \"MED_AGE_M\": 37.500000, \"MED_AGE_F\": 39.600000, \"HOUSEHOLDS\": 8603, \"AVE_HH_SZ\": 2.870000, \"HSEHLD_1_M\": 527, \"HSEHLD_1_F\": 1065, \"MARHH_CHD\": 3442, \"MARHH_NO_C\": 2526, \"MHH_CHILD\": 58, \"FHH_CHILD\": 308, \"FAMILIES\": 6777, \"AVE_FAM_SZ\": 3.300000, \"HSE_UNITS\": 8802, \"VACANT\": 199, \"OWNER_OCC\": 6875, \"RENTER_OCC\": 1728 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.114498363454928, 40.984003321770224 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ringwood\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"63150\", \"CAPITAL\": \"N\", \"AREALAND\": 25.248000, \"AREAWATER\": 2.781000, \"POP_CL\": 6, \"POP2000\": 12396, \"WHITE\": 11636, \"BLACK\": 199, \"AMERI_ES\": 179, \"ASIAN\": 148, \"HAWN_PI\": 1, \"OTHER\": 83, \"MULT_RACE\": 150, \"HISPANIC\": 527, \"MALES\": 6201, \"FEMALES\": 6195, \"AGE_UNDER5\": 935, \"AGE_5_17\": 2483, \"AGE_18_21\": 431, \"AGE_22_29\": 847, \"AGE_30_39\": 2120, \"AGE_40_49\": 2313, \"AGE_50_64\": 2285, \"AGE_65_UP\": 982, \"MED_AGE\": 37.400000, \"MED_AGE_M\": 36.700000, \"MED_AGE_F\": 38.000000, \"HOUSEHOLDS\": 4108, \"AVE_HH_SZ\": 3.000000, \"HSEHLD_1_M\": 227, \"HSEHLD_1_F\": 269, \"MARHH_CHD\": 1553, \"MARHH_NO_C\": 1468, \"MHH_CHILD\": 42, \"FHH_CHILD\": 134, \"FAMILIES\": 3446, \"AVE_FAM_SZ\": 3.280000, \"HSE_UNITS\": 4221, \"VACANT\": 113, \"OWNER_OCC\": 3878, \"RENTER_OCC\": 230 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.260228982960825, 41.096100732612378 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"River Edge\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"63360\", \"CAPITAL\": \"N\", \"AREALAND\": 1.886000, \"AREAWATER\": 0.019000, \"POP_CL\": 6, \"POP2000\": 10946, \"WHITE\": 9208, \"BLACK\": 116, \"AMERI_ES\": 9, \"ASIAN\": 1379, \"HAWN_PI\": 1, \"OTHER\": 89, \"MULT_RACE\": 144, \"HISPANIC\": 581, \"MALES\": 5211, \"FEMALES\": 5735, \"AGE_UNDER5\": 781, \"AGE_5_17\": 1853, \"AGE_18_21\": 307, \"AGE_22_29\": 755, \"AGE_30_39\": 1771, \"AGE_40_49\": 1836, \"AGE_50_64\": 1784, \"AGE_65_UP\": 1859, \"MED_AGE\": 40.000000, \"MED_AGE_M\": 38.800000, \"MED_AGE_F\": 41.300000, \"HOUSEHOLDS\": 4165, \"AVE_HH_SZ\": 2.620000, \"HSEHLD_1_M\": 310, \"HSEHLD_1_F\": 637, \"MARHH_CHD\": 1307, \"MARHH_NO_C\": 1375, \"MHH_CHILD\": 26, \"FHH_CHILD\": 126, \"FAMILIES\": 3105, \"AVE_FAM_SZ\": 3.110000, \"HSE_UNITS\": 4210, \"VACANT\": 45, \"OWNER_OCC\": 3096, \"RENTER_OCC\": 1069 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.037510464775394, 40.927585652575999 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Roselle\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"64620\", \"CAPITAL\": \"N\", \"AREALAND\": 2.643000, \"AREAWATER\": 0.010000, \"POP_CL\": 6, \"POP2000\": 21274, \"WHITE\": 7570, \"BLACK\": 10917, \"AMERI_ES\": 67, \"ASIAN\": 577, \"HAWN_PI\": 15, \"OTHER\": 1291, \"MULT_RACE\": 837, \"HISPANIC\": 3641, \"MALES\": 9950, \"FEMALES\": 11324, \"AGE_UNDER5\": 1410, \"AGE_5_17\": 4023, \"AGE_18_21\": 1142, \"AGE_22_29\": 2343, \"AGE_30_39\": 3354, \"AGE_40_49\": 3177, \"AGE_50_64\": 3263, \"AGE_65_UP\": 2562, \"MED_AGE\": 35.300000, \"MED_AGE_M\": 33.000000, \"MED_AGE_F\": 37.000000, \"HOUSEHOLDS\": 7520, \"AVE_HH_SZ\": 2.820000, \"HSEHLD_1_M\": 710, \"HSEHLD_1_F\": 1185, \"MARHH_CHD\": 1613, \"MARHH_NO_C\": 1796, \"MHH_CHILD\": 137, \"FHH_CHILD\": 674, \"FAMILIES\": 5223, \"AVE_FAM_SZ\": 3.410000, \"HSE_UNITS\": 7870, \"VACANT\": 350, \"OWNER_OCC\": 4583, \"RENTER_OCC\": 2937 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.260686171122117, 40.653507695476286 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Roselle Park\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"64650\", \"CAPITAL\": \"N\", \"AREALAND\": 1.223000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 13281, \"WHITE\": 10740, \"BLACK\": 322, \"AMERI_ES\": 14, \"ASIAN\": 1214, \"HAWN_PI\": 2, \"OTHER\": 650, \"MULT_RACE\": 339, \"HISPANIC\": 2170, \"MALES\": 6469, \"FEMALES\": 6812, \"AGE_UNDER5\": 781, \"AGE_5_17\": 2172, \"AGE_18_21\": 610, \"AGE_22_29\": 1572, \"AGE_30_39\": 2297, \"AGE_40_49\": 2149, \"AGE_50_64\": 2020, \"AGE_65_UP\": 1680, \"MED_AGE\": 36.700000, \"MED_AGE_M\": 35.400000, \"MED_AGE_F\": 37.800000, \"HOUSEHOLDS\": 5137, \"AVE_HH_SZ\": 2.580000, \"HSEHLD_1_M\": 652, \"HSEHLD_1_F\": 796, \"MARHH_CHD\": 1224, \"MARHH_NO_C\": 1386, \"MHH_CHILD\": 73, \"FHH_CHILD\": 251, \"FAMILIES\": 3415, \"AVE_FAM_SZ\": 3.220000, \"HSE_UNITS\": 5258, \"VACANT\": 121, \"OWNER_OCC\": 3021, \"RENTER_OCC\": 2116 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.268811818418072, 40.665357664775946 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Rutherford\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"65280\", \"CAPITAL\": \"N\", \"AREALAND\": 2.807000, \"AREAWATER\": 0.116000, \"POP_CL\": 6, \"POP2000\": 18110, \"WHITE\": 14849, \"BLACK\": 489, \"AMERI_ES\": 8, \"ASIAN\": 2054, \"HAWN_PI\": 5, \"OTHER\": 337, \"MULT_RACE\": 368, \"HISPANIC\": 1555, \"MALES\": 8699, \"FEMALES\": 9411, \"AGE_UNDER5\": 946, \"AGE_5_17\": 2815, \"AGE_18_21\": 713, \"AGE_22_29\": 1952, \"AGE_30_39\": 3008, \"AGE_40_49\": 3005, \"AGE_50_64\": 3034, \"AGE_65_UP\": 2637, \"MED_AGE\": 38.800000, \"MED_AGE_M\": 37.900000, \"MED_AGE_F\": 39.700000, \"HOUSEHOLDS\": 7055, \"AVE_HH_SZ\": 2.520000, \"HSEHLD_1_M\": 784, \"HSEHLD_1_F\": 1214, \"MARHH_CHD\": 1733, \"MARHH_NO_C\": 2044, \"MHH_CHILD\": 67, \"FHH_CHILD\": 230, \"FAMILIES\": 4672, \"AVE_FAM_SZ\": 3.160000, \"HSE_UNITS\": 7214, \"VACANT\": 159, \"OWNER_OCC\": 4623, \"RENTER_OCC\": 2432 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.110755525942579, 40.828928323532793 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Saddle Brook\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"65370\", \"CAPITAL\": \"N\", \"AREALAND\": 2.723000, \"AREAWATER\": 0.008000, \"POP_CL\": 6, \"POP2000\": 13155, \"WHITE\": 11936, \"BLACK\": 183, \"AMERI_ES\": 5, \"ASIAN\": 623, \"HAWN_PI\": 0, \"OTHER\": 223, \"MULT_RACE\": 185, \"HISPANIC\": 825, \"MALES\": 6210, \"FEMALES\": 6945, \"AGE_UNDER5\": 744, \"AGE_5_17\": 1912, \"AGE_18_21\": 483, \"AGE_22_29\": 1255, \"AGE_30_39\": 2099, \"AGE_40_49\": 2147, \"AGE_50_64\": 2147, \"AGE_65_UP\": 2368, \"MED_AGE\": 40.300000, \"MED_AGE_M\": 39.100000, \"MED_AGE_F\": 41.500000, \"HOUSEHOLDS\": 5062, \"AVE_HH_SZ\": 2.580000, \"HSEHLD_1_M\": 471, \"HSEHLD_1_F\": 792, \"MARHH_CHD\": 1221, \"MARHH_NO_C\": 1697, \"MHH_CHILD\": 46, \"FHH_CHILD\": 133, \"FAMILIES\": 3579, \"AVE_FAM_SZ\": 3.110000, \"HSE_UNITS\": 5161, \"VACANT\": 99, \"OWNER_OCC\": 3773, \"RENTER_OCC\": 1289 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.094854949360894, 40.904137398793516 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sayreville\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"65790\", \"CAPITAL\": \"N\", \"AREALAND\": 15.900000, \"AREAWATER\": 2.849000, \"POP_CL\": 6, \"POP2000\": 40377, \"WHITE\": 30875, \"BLACK\": 3481, \"AMERI_ES\": 53, \"ASIAN\": 4265, \"HAWN_PI\": 8, \"OTHER\": 855, \"MULT_RACE\": 840, \"HISPANIC\": 2942, \"MALES\": 19803, \"FEMALES\": 20574, \"AGE_UNDER5\": 2712, \"AGE_5_17\": 6802, \"AGE_18_21\": 1594, \"AGE_22_29\": 4448, \"AGE_30_39\": 7208, \"AGE_40_49\": 6482, \"AGE_50_64\": 6127, \"AGE_65_UP\": 5004, \"MED_AGE\": 36.500000, \"MED_AGE_M\": 35.400000, \"MED_AGE_F\": 37.600000, \"HOUSEHOLDS\": 14955, \"AVE_HH_SZ\": 2.680000, \"HSEHLD_1_M\": 1406, \"HSEHLD_1_F\": 1936, \"MARHH_CHD\": 4140, \"MARHH_NO_C\": 4457, \"MHH_CHILD\": 243, \"FHH_CHILD\": 754, \"FAMILIES\": 10923, \"AVE_FAM_SZ\": 3.170000, \"HSE_UNITS\": 15235, \"VACANT\": 280, \"OWNER_OCC\": 10125, \"RENTER_OCC\": 4830 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.324140744584128, 40.465774437138592 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Scotch Plains\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"66090\", \"CAPITAL\": \"N\", \"AREALAND\": 9.081000, \"AREAWATER\": 0.014000, \"POP_CL\": 6, \"POP2000\": 22732, \"WHITE\": 17931, \"BLACK\": 2568, \"AMERI_ES\": 21, \"ASIAN\": 1648, \"HAWN_PI\": 3, \"OTHER\": 216, \"MULT_RACE\": 345, \"HISPANIC\": 895, \"MALES\": 10890, \"FEMALES\": 11842, \"AGE_UNDER5\": 1777, \"AGE_5_17\": 3988, \"AGE_18_21\": 549, \"AGE_22_29\": 1730, \"AGE_30_39\": 3958, \"AGE_40_49\": 3802, \"AGE_50_64\": 3714, \"AGE_65_UP\": 3214, \"MED_AGE\": 38.600000, \"MED_AGE_M\": 37.800000, \"MED_AGE_F\": 39.200000, \"HOUSEHOLDS\": 8349, \"AVE_HH_SZ\": 2.710000, \"HSEHLD_1_M\": 653, \"HSEHLD_1_F\": 1084, \"MARHH_CHD\": 2689, \"MARHH_NO_C\": 2687, \"MHH_CHILD\": 69, \"FHH_CHILD\": 264, \"FAMILIES\": 6291, \"AVE_FAM_SZ\": 3.160000, \"HSE_UNITS\": 8479, \"VACANT\": 130, \"OWNER_OCC\": 6548, \"RENTER_OCC\": 1801 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.374010273937557, 40.638257265637279 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Secaucus\", \"CLASS\": \"town\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"66570\", \"CAPITAL\": \"N\", \"AREALAND\": 5.886000, \"AREAWATER\": 0.631000, \"POP_CL\": 6, \"POP2000\": 15931, \"WHITE\": 12512, \"BLACK\": 709, \"AMERI_ES\": 18, \"ASIAN\": 1880, \"HAWN_PI\": 7, \"OTHER\": 445, \"MULT_RACE\": 360, \"HISPANIC\": 1953, \"MALES\": 7879, \"FEMALES\": 8052, \"AGE_UNDER5\": 825, \"AGE_5_17\": 2240, \"AGE_18_21\": 554, \"AGE_22_29\": 1618, \"AGE_30_39\": 2889, \"AGE_40_49\": 2433, \"AGE_50_64\": 2801, \"AGE_65_UP\": 2571, \"MED_AGE\": 39.500000, \"MED_AGE_M\": 37.500000, \"MED_AGE_F\": 41.700000, \"HOUSEHOLDS\": 6214, \"AVE_HH_SZ\": 2.410000, \"HSEHLD_1_M\": 805, \"HSEHLD_1_F\": 1157, \"MARHH_CHD\": 1272, \"MARHH_NO_C\": 1785, \"MHH_CHILD\": 64, \"FHH_CHILD\": 263, \"FAMILIES\": 3948, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 6385, \"VACANT\": 171, \"OWNER_OCC\": 3789, \"RENTER_OCC\": 2425 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.061898054949907, 40.787606531002943 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Somerset\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"68370\", \"CAPITAL\": \"N\", \"AREALAND\": 5.330000, \"AREAWATER\": 0.028000, \"POP_CL\": 6, \"POP2000\": 23040, \"WHITE\": 10124, \"BLACK\": 8881, \"AMERI_ES\": 59, \"ASIAN\": 1896, \"HAWN_PI\": 11, \"OTHER\": 1391, \"MULT_RACE\": 678, \"HISPANIC\": 2764, \"MALES\": 11183, \"FEMALES\": 11857, \"AGE_UNDER5\": 1531, \"AGE_5_17\": 4009, \"AGE_18_21\": 981, \"AGE_22_29\": 2799, \"AGE_30_39\": 3917, \"AGE_40_49\": 3504, \"AGE_50_64\": 3672, \"AGE_65_UP\": 2627, \"MED_AGE\": 35.600000, \"MED_AGE_M\": 34.500000, \"MED_AGE_F\": 36.700000, \"HOUSEHOLDS\": 8238, \"AVE_HH_SZ\": 2.780000, \"HSEHLD_1_M\": 826, \"HSEHLD_1_F\": 1053, \"MARHH_CHD\": 1936, \"MARHH_NO_C\": 2399, \"MHH_CHILD\": 151, \"FHH_CHILD\": 484, \"FAMILIES\": 5797, \"AVE_FAM_SZ\": 3.290000, \"HSE_UNITS\": 8424, \"VACANT\": 186, \"OWNER_OCC\": 5578, \"RENTER_OCC\": 2660 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.483905152247758, 40.498458866542258 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Somers Point\", \"CLASS\": \"city\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"68430\", \"CAPITAL\": \"N\", \"AREALAND\": 4.028000, \"AREAWATER\": 1.137000, \"POP_CL\": 6, \"POP2000\": 11614, \"WHITE\": 9948, \"BLACK\": 814, \"AMERI_ES\": 29, \"ASIAN\": 368, \"HAWN_PI\": 4, \"OTHER\": 261, \"MULT_RACE\": 190, \"HISPANIC\": 696, \"MALES\": 5460, \"FEMALES\": 6154, \"AGE_UNDER5\": 699, \"AGE_5_17\": 2016, \"AGE_18_21\": 437, \"AGE_22_29\": 1174, \"AGE_30_39\": 1831, \"AGE_40_49\": 1908, \"AGE_50_64\": 1801, \"AGE_65_UP\": 1748, \"MED_AGE\": 38.400000, \"MED_AGE_M\": 36.600000, \"MED_AGE_F\": 40.000000, \"HOUSEHOLDS\": 4920, \"AVE_HH_SZ\": 2.320000, \"HSEHLD_1_M\": 655, \"HSEHLD_1_F\": 966, \"MARHH_CHD\": 896, \"MARHH_NO_C\": 1130, \"MHH_CHILD\": 119, \"FHH_CHILD\": 430, \"FAMILIES\": 2952, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 5402, \"VACANT\": 482, \"OWNER_OCC\": 2824, \"RENTER_OCC\": 2096 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.600378711304302, 39.319169401684647 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Somerville\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"68460\", \"CAPITAL\": \"N\", \"AREALAND\": 2.361000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12423, \"WHITE\": 8847, \"BLACK\": 1606, \"AMERI_ES\": 23, \"ASIAN\": 913, \"HAWN_PI\": 3, \"OTHER\": 634, \"MULT_RACE\": 397, \"HISPANIC\": 2112, \"MALES\": 6249, \"FEMALES\": 6174, \"AGE_UNDER5\": 869, \"AGE_5_17\": 1856, \"AGE_18_21\": 565, \"AGE_22_29\": 1594, \"AGE_30_39\": 2332, \"AGE_40_49\": 1820, \"AGE_50_64\": 1649, \"AGE_65_UP\": 1738, \"MED_AGE\": 35.600000, \"MED_AGE_M\": 34.300000, \"MED_AGE_F\": 37.200000, \"HOUSEHOLDS\": 4743, \"AVE_HH_SZ\": 2.490000, \"HSEHLD_1_M\": 625, \"HSEHLD_1_F\": 864, \"MARHH_CHD\": 990, \"MARHH_NO_C\": 1119, \"MHH_CHILD\": 72, \"FHH_CHILD\": 294, \"FAMILIES\": 2891, \"AVE_FAM_SZ\": 3.150000, \"HSE_UNITS\": 4882, \"VACANT\": 139, \"OWNER_OCC\": 2306, \"RENTER_OCC\": 2437 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.605428987276497, 40.570835469040809 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"South Orange\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"69255\", \"CAPITAL\": \"N\", \"AREALAND\": 2.853000, \"AREAWATER\": 0.004000, \"POP_CL\": 6, \"POP2000\": 16964, \"WHITE\": 10248, \"BLACK\": 5309, \"AMERI_ES\": 16, \"ASIAN\": 660, \"HAWN_PI\": 5, \"OTHER\": 266, \"MULT_RACE\": 460, \"HISPANIC\": 837, \"MALES\": 8142, \"FEMALES\": 8822, \"AGE_UNDER5\": 988, \"AGE_5_17\": 2789, \"AGE_18_21\": 2276, \"AGE_22_29\": 1480, \"AGE_30_39\": 2234, \"AGE_40_49\": 2672, \"AGE_50_64\": 2501, \"AGE_65_UP\": 2024, \"MED_AGE\": 34.700000, \"MED_AGE_M\": 33.300000, \"MED_AGE_F\": 36.000000, \"HOUSEHOLDS\": 5522, \"AVE_HH_SZ\": 2.690000, \"HSEHLD_1_M\": 560, \"HSEHLD_1_F\": 833, \"MARHH_CHD\": 1529, \"MARHH_NO_C\": 1520, \"MHH_CHILD\": 76, \"FHH_CHILD\": 260, \"FAMILIES\": 3768, \"AVE_FAM_SZ\": 3.260000, \"HSE_UNITS\": 5671, \"VACANT\": 149, \"OWNER_OCC\": 3982, \"RENTER_OCC\": 1540 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.258913855460705, 40.747655710162746 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"South Plainfield\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"69390\", \"CAPITAL\": \"N\", \"AREALAND\": 8.357000, \"AREAWATER\": 0.037000, \"POP_CL\": 6, \"POP2000\": 21810, \"WHITE\": 16956, \"BLACK\": 1866, \"AMERI_ES\": 49, \"ASIAN\": 1652, \"HAWN_PI\": 1, \"OTHER\": 759, \"MULT_RACE\": 527, \"HISPANIC\": 1888, \"MALES\": 10690, \"FEMALES\": 11120, \"AGE_UNDER5\": 1344, \"AGE_5_17\": 4141, \"AGE_18_21\": 896, \"AGE_22_29\": 1801, \"AGE_30_39\": 3502, \"AGE_40_49\": 3616, \"AGE_50_64\": 3439, \"AGE_65_UP\": 3071, \"MED_AGE\": 38.000000, \"MED_AGE_M\": 36.800000, \"MED_AGE_F\": 39.000000, \"HOUSEHOLDS\": 7151, \"AVE_HH_SZ\": 3.010000, \"HSEHLD_1_M\": 456, \"HSEHLD_1_F\": 638, \"MARHH_CHD\": 2294, \"MARHH_NO_C\": 2486, \"MHH_CHILD\": 88, \"FHH_CHILD\": 304, \"FAMILIES\": 5858, \"AVE_FAM_SZ\": 3.350000, \"HSE_UNITS\": 7307, \"VACANT\": 156, \"OWNER_OCC\": 6368, \"RENTER_OCC\": 783 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.414108959909072, 40.58070811643649 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"South River\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"69420\", \"CAPITAL\": \"N\", \"AREALAND\": 2.814000, \"AREAWATER\": 0.126000, \"POP_CL\": 6, \"POP2000\": 15322, \"WHITE\": 12801, \"BLACK\": 929, \"AMERI_ES\": 18, \"ASIAN\": 542, \"HAWN_PI\": 8, \"OTHER\": 587, \"MULT_RACE\": 437, \"HISPANIC\": 1480, \"MALES\": 7574, \"FEMALES\": 7748, \"AGE_UNDER5\": 1008, \"AGE_5_17\": 2521, \"AGE_18_21\": 695, \"AGE_22_29\": 1741, \"AGE_30_39\": 2648, \"AGE_40_49\": 2342, \"AGE_50_64\": 2136, \"AGE_65_UP\": 2231, \"MED_AGE\": 36.400000, \"MED_AGE_M\": 35.000000, \"MED_AGE_F\": 38.000000, \"HOUSEHOLDS\": 5606, \"AVE_HH_SZ\": 2.720000, \"HSEHLD_1_M\": 521, \"HSEHLD_1_F\": 785, \"MARHH_CHD\": 1468, \"MARHH_NO_C\": 1626, \"MHH_CHILD\": 93, \"FHH_CHILD\": 250, \"FAMILIES\": 3985, \"AVE_FAM_SZ\": 3.230000, \"HSE_UNITS\": 5769, \"VACANT\": 163, \"OWNER_OCC\": 3882, \"RENTER_OCC\": 1724 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.381850743055168, 40.444361222479877 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Springdale\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"69900\", \"CAPITAL\": \"N\", \"AREALAND\": 5.391000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14409, \"WHITE\": 12639, \"BLACK\": 346, \"AMERI_ES\": 7, \"ASIAN\": 1302, \"HAWN_PI\": 1, \"OTHER\": 16, \"MULT_RACE\": 98, \"HISPANIC\": 176, \"MALES\": 6896, \"FEMALES\": 7513, \"AGE_UNDER5\": 743, \"AGE_5_17\": 2776, \"AGE_18_21\": 360, \"AGE_22_29\": 802, \"AGE_30_39\": 1659, \"AGE_40_49\": 2469, \"AGE_50_64\": 3365, \"AGE_65_UP\": 2235, \"MED_AGE\": 43.600000, \"MED_AGE_M\": 42.400000, \"MED_AGE_F\": 44.800000, \"HOUSEHOLDS\": 5186, \"AVE_HH_SZ\": 2.690000, \"HSEHLD_1_M\": 293, \"HSEHLD_1_F\": 625, \"MARHH_CHD\": 1662, \"MARHH_NO_C\": 2071, \"MHH_CHILD\": 37, \"FHH_CHILD\": 164, \"FAMILIES\": 4137, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 5318, \"VACANT\": 132, \"OWNER_OCC\": 4585, \"RENTER_OCC\": 601 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.969740084024309, 39.876391393845715 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Springfield\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"70050\", \"CAPITAL\": \"N\", \"AREALAND\": 5.150000, \"AREAWATER\": 0.004000, \"POP_CL\": 6, \"POP2000\": 14429, \"WHITE\": 12946, \"BLACK\": 537, \"AMERI_ES\": 3, \"ASIAN\": 676, \"HAWN_PI\": 0, \"OTHER\": 139, \"MULT_RACE\": 128, \"HISPANIC\": 597, \"MALES\": 6805, \"FEMALES\": 7624, \"AGE_UNDER5\": 893, \"AGE_5_17\": 2073, \"AGE_18_21\": 378, \"AGE_22_29\": 1075, \"AGE_30_39\": 2265, \"AGE_40_49\": 2302, \"AGE_50_64\": 2471, \"AGE_65_UP\": 2972, \"MED_AGE\": 42.100000, \"MED_AGE_M\": 40.200000, \"MED_AGE_F\": 44.000000, \"HOUSEHOLDS\": 6001, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 561, \"HSEHLD_1_F\": 1163, \"MARHH_CHD\": 1435, \"MARHH_NO_C\": 1979, \"MHH_CHILD\": 36, \"FHH_CHILD\": 147, \"FAMILIES\": 4015, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 6204, \"VACANT\": 203, \"OWNER_OCC\": 4444, \"RENTER_OCC\": 1557 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.322267271196239, 40.701806462811042 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Succasunna-Kenvil\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"71385\", \"CAPITAL\": \"N\", \"AREALAND\": 6.670000, \"AREAWATER\": 0.115000, \"POP_CL\": 6, \"POP2000\": 12569, \"WHITE\": 11687, \"BLACK\": 168, \"AMERI_ES\": 11, \"ASIAN\": 517, \"HAWN_PI\": 0, \"OTHER\": 84, \"MULT_RACE\": 102, \"HISPANIC\": 487, \"MALES\": 6218, \"FEMALES\": 6351, \"AGE_UNDER5\": 861, \"AGE_5_17\": 2709, \"AGE_18_21\": 454, \"AGE_22_29\": 790, \"AGE_30_39\": 2057, \"AGE_40_49\": 2308, \"AGE_50_64\": 2185, \"AGE_65_UP\": 1205, \"MED_AGE\": 37.800000, \"MED_AGE_M\": 36.900000, \"MED_AGE_F\": 38.700000, \"HOUSEHOLDS\": 4138, \"AVE_HH_SZ\": 3.020000, \"HSEHLD_1_M\": 200, \"HSEHLD_1_F\": 349, \"MARHH_CHD\": 1656, \"MARHH_NO_C\": 1426, \"MHH_CHILD\": 35, \"FHH_CHILD\": 112, \"FAMILIES\": 3475, \"AVE_FAM_SZ\": 3.330000, \"HSE_UNITS\": 4184, \"VACANT\": 46, \"OWNER_OCC\": 3820, \"RENTER_OCC\": 318 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.646687671077615, 40.861500354617263 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Summit\", \"CLASS\": \"city\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"71430\", \"CAPITAL\": \"N\", \"AREALAND\": 6.053000, \"AREAWATER\": 0.021000, \"POP_CL\": 6, \"POP2000\": 21131, \"WHITE\": 18546, \"BLACK\": 914, \"AMERI_ES\": 19, \"ASIAN\": 941, \"HAWN_PI\": 3, \"OTHER\": 360, \"MULT_RACE\": 348, \"HISPANIC\": 2150, \"MALES\": 10225, \"FEMALES\": 10906, \"AGE_UNDER5\": 1815, \"AGE_5_17\": 3882, \"AGE_18_21\": 485, \"AGE_22_29\": 1637, \"AGE_30_39\": 3860, \"AGE_40_49\": 3399, \"AGE_50_64\": 3284, \"AGE_65_UP\": 2769, \"MED_AGE\": 37.300000, \"MED_AGE_M\": 36.200000, \"MED_AGE_F\": 38.300000, \"HOUSEHOLDS\": 7897, \"AVE_HH_SZ\": 2.670000, \"HSEHLD_1_M\": 665, \"HSEHLD_1_F\": 1222, \"MARHH_CHD\": 2492, \"MARHH_NO_C\": 2333, \"MHH_CHILD\": 50, \"FHH_CHILD\": 278, \"FAMILIES\": 5610, \"AVE_FAM_SZ\": 3.180000, \"HSE_UNITS\": 8146, \"VACANT\": 249, \"OWNER_OCC\": 5378, \"RENTER_OCC\": 2519 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.3625563109795, 40.716206313510654 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Teaneck\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"72390\", \"CAPITAL\": \"N\", \"AREALAND\": 6.053000, \"AREAWATER\": 0.198000, \"POP_CL\": 6, \"POP2000\": 39260, \"WHITE\": 22082, \"BLACK\": 11298, \"AMERI_ES\": 59, \"ASIAN\": 2798, \"HAWN_PI\": 11, \"OTHER\": 1633, \"MULT_RACE\": 1379, \"HISPANIC\": 4103, \"MALES\": 18584, \"FEMALES\": 20676, \"AGE_UNDER5\": 2521, \"AGE_5_17\": 7600, \"AGE_18_21\": 2080, \"AGE_22_29\": 3078, \"AGE_30_39\": 5345, \"AGE_40_49\": 6100, \"AGE_50_64\": 6952, \"AGE_65_UP\": 5584, \"MED_AGE\": 38.400000, \"MED_AGE_M\": 36.600000, \"MED_AGE_F\": 39.800000, \"HOUSEHOLDS\": 13418, \"AVE_HH_SZ\": 2.860000, \"HSEHLD_1_M\": 949, \"HSEHLD_1_F\": 1889, \"MARHH_CHD\": 3854, \"MARHH_NO_C\": 4109, \"MHH_CHILD\": 138, \"FHH_CHILD\": 690, \"FAMILIES\": 10071, \"AVE_FAM_SZ\": 3.340000, \"HSE_UNITS\": 13719, \"VACANT\": 301, \"OWNER_OCC\": 10409, \"RENTER_OCC\": 3009 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.01127376857508, 40.890970766728024 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Tenafly\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"72420\", \"CAPITAL\": \"N\", \"AREALAND\": 4.612000, \"AREAWATER\": 0.583000, \"POP_CL\": 6, \"POP2000\": 13806, \"WHITE\": 10601, \"BLACK\": 132, \"AMERI_ES\": 13, \"ASIAN\": 2634, \"HAWN_PI\": 3, \"OTHER\": 193, \"MULT_RACE\": 230, \"HISPANIC\": 642, \"MALES\": 6649, \"FEMALES\": 7157, \"AGE_UNDER5\": 904, \"AGE_5_17\": 3002, \"AGE_18_21\": 420, \"AGE_22_29\": 585, \"AGE_30_39\": 1751, \"AGE_40_49\": 2634, \"AGE_50_64\": 2418, \"AGE_65_UP\": 2092, \"MED_AGE\": 40.900000, \"MED_AGE_M\": 39.700000, \"MED_AGE_F\": 41.800000, \"HOUSEHOLDS\": 4774, \"AVE_HH_SZ\": 2.860000, \"HSEHLD_1_M\": 254, \"HSEHLD_1_F\": 547, \"MARHH_CHD\": 1847, \"MARHH_NO_C\": 1524, \"MHH_CHILD\": 40, \"FHH_CHILD\": 211, \"FAMILIES\": 3868, \"AVE_FAM_SZ\": 3.210000, \"HSE_UNITS\": 4897, \"VACANT\": 123, \"OWNER_OCC\": 3847, \"RENTER_OCC\": 927 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.963892864039678, 40.922145987103512 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Tinton Falls\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"73020\", \"CAPITAL\": \"N\", \"AREALAND\": 15.588000, \"AREAWATER\": 0.032000, \"POP_CL\": 6, \"POP2000\": 15053, \"WHITE\": 11862, \"BLACK\": 1963, \"AMERI_ES\": 36, \"ASIAN\": 747, \"HAWN_PI\": 2, \"OTHER\": 157, \"MULT_RACE\": 286, \"HISPANIC\": 707, \"MALES\": 7157, \"FEMALES\": 7896, \"AGE_UNDER5\": 1184, \"AGE_5_17\": 2654, \"AGE_18_21\": 418, \"AGE_22_29\": 1355, \"AGE_30_39\": 2971, \"AGE_40_49\": 2672, \"AGE_50_64\": 2166, \"AGE_65_UP\": 1633, \"MED_AGE\": 36.800000, \"MED_AGE_M\": 35.800000, \"MED_AGE_F\": 37.600000, \"HOUSEHOLDS\": 5883, \"AVE_HH_SZ\": 2.510000, \"HSEHLD_1_M\": 599, \"HSEHLD_1_F\": 1003, \"MARHH_CHD\": 1683, \"MARHH_NO_C\": 1613, \"MHH_CHILD\": 62, \"FHH_CHILD\": 264, \"FAMILIES\": 3977, \"AVE_FAM_SZ\": 3.110000, \"HSE_UNITS\": 6211, \"VACANT\": 328, \"OWNER_OCC\": 4873, \"RENTER_OCC\": 1010 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.089806977672495, 40.277959358819025 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Toms River\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"73110\", \"CAPITAL\": \"N\", \"AREALAND\": 39.370000, \"AREAWATER\": 1.237000, \"POP_CL\": 7, \"POP2000\": 86327, \"WHITE\": 80598, \"BLACK\": 1565, \"AMERI_ES\": 110, \"ASIAN\": 2194, \"HAWN_PI\": 21, \"OTHER\": 849, \"MULT_RACE\": 990, \"HISPANIC\": 4010, \"MALES\": 41539, \"FEMALES\": 44788, \"AGE_UNDER5\": 4869, \"AGE_5_17\": 15661, \"AGE_18_21\": 3779, \"AGE_22_29\": 7038, \"AGE_30_39\": 12242, \"AGE_40_49\": 13415, \"AGE_50_64\": 14957, \"AGE_65_UP\": 14366, \"MED_AGE\": 39.700000, \"MED_AGE_M\": 38.200000, \"MED_AGE_F\": 41.100000, \"HOUSEHOLDS\": 31674, \"AVE_HH_SZ\": 2.660000, \"HSEHLD_1_M\": 2479, \"HSEHLD_1_F\": 4329, \"MARHH_CHD\": 8182, \"MARHH_NO_C\": 10843, \"MHH_CHILD\": 467, \"FHH_CHILD\": 1593, \"FAMILIES\": 23475, \"AVE_FAM_SZ\": 3.110000, \"HSE_UNITS\": 34375, \"VACANT\": 2701, \"OWNER_OCC\": 26522, \"RENTER_OCC\": 5152 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.167614786577346, 39.979276004253052 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Trenton\", \"CLASS\": \"city\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"74000\", \"CAPITAL\": \"Y\", \"AREALAND\": 7.657000, \"AREAWATER\": 0.489000, \"POP_CL\": 7, \"POP2000\": 85403, \"WHITE\": 27802, \"BLACK\": 44465, \"AMERI_ES\": 300, \"ASIAN\": 716, \"HAWN_PI\": 199, \"OTHER\": 9190, \"MULT_RACE\": 2731, \"HISPANIC\": 18391, \"MALES\": 42180, \"FEMALES\": 43223, \"AGE_UNDER5\": 6468, \"AGE_5_17\": 17178, \"AGE_18_21\": 4877, \"AGE_22_29\": 10971, \"AGE_30_39\": 13754, \"AGE_40_49\": 11662, \"AGE_50_64\": 10777, \"AGE_65_UP\": 9716, \"MED_AGE\": 32.200000, \"MED_AGE_M\": 31.300000, \"MED_AGE_F\": 33.300000, \"HOUSEHOLDS\": 29437, \"AVE_HH_SZ\": 2.750000, \"HSEHLD_1_M\": 3842, \"HSEHLD_1_F\": 4914, \"MARHH_CHD\": 3922, \"MARHH_NO_C\": 4602, \"MHH_CHILD\": 975, \"FHH_CHILD\": 4634, \"FAMILIES\": 18695, \"AVE_FAM_SZ\": 3.380000, \"HSE_UNITS\": 33843, \"VACANT\": 4406, \"OWNER_OCC\": 13386, \"RENTER_OCC\": 16051 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.756214812830905, 40.221744990220721 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Union\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"74510\", \"CAPITAL\": \"N\", \"AREALAND\": 9.116000, \"AREAWATER\": 0.001000, \"POP_CL\": 7, \"POP2000\": 54405, \"WHITE\": 36809, \"BLACK\": 10752, \"AMERI_ES\": 80, \"ASIAN\": 4201, \"HAWN_PI\": 13, \"OTHER\": 1329, \"MULT_RACE\": 1221, \"HISPANIC\": 4861, \"MALES\": 25446, \"FEMALES\": 28959, \"AGE_UNDER5\": 2994, \"AGE_5_17\": 9125, \"AGE_18_21\": 2942, \"AGE_22_29\": 4949, \"AGE_30_39\": 8423, \"AGE_40_49\": 8275, \"AGE_50_64\": 8270, \"AGE_65_UP\": 9427, \"MED_AGE\": 38.700000, \"MED_AGE_M\": 37.000000, \"MED_AGE_F\": 40.200000, \"HOUSEHOLDS\": 19534, \"AVE_HH_SZ\": 2.710000, \"HSEHLD_1_M\": 1500, \"HSEHLD_1_F\": 3156, \"MARHH_CHD\": 5046, \"MARHH_NO_C\": 5788, \"MHH_CHILD\": 224, \"FHH_CHILD\": 979, \"FAMILIES\": 14164, \"AVE_FAM_SZ\": 3.250000, \"HSE_UNITS\": 20001, \"VACANT\": 467, \"OWNER_OCC\": 14942, \"RENTER_OCC\": 4592 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.27054092491872, 40.696956660635891 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Union City\", \"CLASS\": \"city\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"74630\", \"CAPITAL\": \"N\", \"AREALAND\": 1.266000, \"AREAWATER\": 0.000000, \"POP_CL\": 7, \"POP2000\": 67088, \"WHITE\": 39167, \"BLACK\": 2442, \"AMERI_ES\": 467, \"ASIAN\": 1441, \"HAWN_PI\": 54, \"OTHER\": 18911, \"MULT_RACE\": 4606, \"HISPANIC\": 55226, \"MALES\": 33639, \"FEMALES\": 33449, \"AGE_UNDER5\": 4945, \"AGE_5_17\": 12026, \"AGE_18_21\": 3986, \"AGE_22_29\": 9575, \"AGE_30_39\": 11810, \"AGE_40_49\": 9130, \"AGE_50_64\": 8922, \"AGE_65_UP\": 6694, \"MED_AGE\": 32.500000, \"MED_AGE_M\": 31.300000, \"MED_AGE_F\": 34.000000, \"HOUSEHOLDS\": 22872, \"AVE_HH_SZ\": 2.920000, \"HSEHLD_1_M\": 2714, \"HSEHLD_1_F\": 2545, \"MARHH_CHD\": 5048, \"MARHH_NO_C\": 4648, \"MHH_CHILD\": 782, \"FHH_CHILD\": 2543, \"FAMILIES\": 16067, \"AVE_FAM_SZ\": 3.400000, \"HSE_UNITS\": 23741, \"VACANT\": 869, \"OWNER_OCC\": 4160, \"RENTER_OCC\": 18712 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.031948667976792, 40.767657661433134 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ventnor City\", \"CLASS\": \"city\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"75620\", \"CAPITAL\": \"N\", \"AREALAND\": 2.143000, \"AREAWATER\": 1.403000, \"POP_CL\": 6, \"POP2000\": 12910, \"WHITE\": 9953, \"BLACK\": 379, \"AMERI_ES\": 24, \"ASIAN\": 962, \"HAWN_PI\": 4, \"OTHER\": 1210, \"MULT_RACE\": 378, \"HISPANIC\": 2213, \"MALES\": 6152, \"FEMALES\": 6758, \"AGE_UNDER5\": 721, \"AGE_5_17\": 1861, \"AGE_18_21\": 466, \"AGE_22_29\": 1297, \"AGE_30_39\": 1975, \"AGE_40_49\": 1896, \"AGE_50_64\": 2144, \"AGE_65_UP\": 2550, \"MED_AGE\": 40.600000, \"MED_AGE_M\": 38.500000, \"MED_AGE_F\": 42.800000, \"HOUSEHOLDS\": 5480, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 695, \"HSEHLD_1_F\": 1142, \"MARHH_CHD\": 841, \"MARHH_NO_C\": 1490, \"MHH_CHILD\": 115, \"FHH_CHILD\": 302, \"FAMILIES\": 3256, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 8009, \"VACANT\": 2529, \"OWNER_OCC\": 3330, \"RENTER_OCC\": 2150 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.482005871770582, 39.342303785539606 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Verona\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"75800\", \"CAPITAL\": \"N\", \"AREALAND\": 2.752000, \"AREAWATER\": 0.022000, \"POP_CL\": 6, \"POP2000\": 13533, \"WHITE\": 12585, \"BLACK\": 207, \"AMERI_ES\": 3, \"ASIAN\": 462, \"HAWN_PI\": 8, \"OTHER\": 96, \"MULT_RACE\": 172, \"HISPANIC\": 467, \"MALES\": 6376, \"FEMALES\": 7157, \"AGE_UNDER5\": 888, \"AGE_5_17\": 2155, \"AGE_18_21\": 337, \"AGE_22_29\": 872, \"AGE_30_39\": 2193, \"AGE_40_49\": 2165, \"AGE_50_64\": 2309, \"AGE_65_UP\": 2614, \"MED_AGE\": 41.400000, \"MED_AGE_M\": 39.600000, \"MED_AGE_F\": 43.300000, \"HOUSEHOLDS\": 5585, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 510, \"HSEHLD_1_F\": 1168, \"MARHH_CHD\": 1440, \"MARHH_NO_C\": 1703, \"MHH_CHILD\": 41, \"FHH_CHILD\": 160, \"FAMILIES\": 3695, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 5719, \"VACANT\": 134, \"OWNER_OCC\": 4307, \"RENTER_OCC\": 1278 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.242380272059989, 40.832454782254459 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Vineland\", \"CLASS\": \"city\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"76070\", \"CAPITAL\": \"N\", \"AREALAND\": 68.689000, \"AREAWATER\": 0.285000, \"POP_CL\": 7, \"POP2000\": 56271, \"WHITE\": 37964, \"BLACK\": 7664, \"AMERI_ES\": 304, \"ASIAN\": 655, \"HAWN_PI\": 43, \"OTHER\": 7881, \"MULT_RACE\": 1760, \"HISPANIC\": 16880, \"MALES\": 26967, \"FEMALES\": 29304, \"AGE_UNDER5\": 3477, \"AGE_5_17\": 10986, \"AGE_18_21\": 2796, \"AGE_22_29\": 5469, \"AGE_30_39\": 8407, \"AGE_40_49\": 8300, \"AGE_50_64\": 8860, \"AGE_65_UP\": 7976, \"MED_AGE\": 36.500000, \"MED_AGE_M\": 34.400000, \"MED_AGE_F\": 38.700000, \"HOUSEHOLDS\": 19930, \"AVE_HH_SZ\": 2.700000, \"HSEHLD_1_M\": 1797, \"HSEHLD_1_F\": 2934, \"MARHH_CHD\": 4263, \"MARHH_NO_C\": 5467, \"MHH_CHILD\": 589, \"FHH_CHILD\": 1906, \"FAMILIES\": 14201, \"AVE_FAM_SZ\": 3.170000, \"HSE_UNITS\": 20958, \"VACANT\": 1028, \"OWNER_OCC\": 13203, \"RENTER_OCC\": 6727 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.014076856072634, 39.480418265565383 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wallington\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"76490\", \"CAPITAL\": \"N\", \"AREALAND\": 0.996000, \"AREAWATER\": 0.042000, \"POP_CL\": 6, \"POP2000\": 11583, \"WHITE\": 10147, \"BLACK\": 309, \"AMERI_ES\": 11, \"ASIAN\": 577, \"HAWN_PI\": 2, \"OTHER\": 269, \"MULT_RACE\": 268, \"HISPANIC\": 776, \"MALES\": 5582, \"FEMALES\": 6001, \"AGE_UNDER5\": 611, \"AGE_5_17\": 1521, \"AGE_18_21\": 521, \"AGE_22_29\": 1529, \"AGE_30_39\": 1938, \"AGE_40_49\": 1844, \"AGE_50_64\": 1862, \"AGE_65_UP\": 1757, \"MED_AGE\": 38.200000, \"MED_AGE_M\": 36.500000, \"MED_AGE_F\": 40.100000, \"HOUSEHOLDS\": 4752, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 552, \"HSEHLD_1_F\": 863, \"MARHH_CHD\": 984, \"MARHH_NO_C\": 1309, \"MHH_CHILD\": 53, \"FHH_CHILD\": 185, \"FAMILIES\": 3043, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 4906, \"VACANT\": 154, \"OWNER_OCC\": 1968, \"RENTER_OCC\": 2784 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.109362768160224, 40.852937331715232 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wanaque\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"76730\", \"CAPITAL\": \"N\", \"AREALAND\": 7.978000, \"AREAWATER\": 1.230000, \"POP_CL\": 6, \"POP2000\": 10266, \"WHITE\": 9308, \"BLACK\": 155, \"AMERI_ES\": 35, \"ASIAN\": 372, \"HAWN_PI\": 3, \"OTHER\": 211, \"MULT_RACE\": 182, \"HISPANIC\": 554, \"MALES\": 4956, \"FEMALES\": 5310, \"AGE_UNDER5\": 689, \"AGE_5_17\": 1812, \"AGE_18_21\": 390, \"AGE_22_29\": 937, \"AGE_30_39\": 1757, \"AGE_40_49\": 1676, \"AGE_50_64\": 1772, \"AGE_65_UP\": 1233, \"MED_AGE\": 37.600000, \"MED_AGE_M\": 36.700000, \"MED_AGE_F\": 38.600000, \"HOUSEHOLDS\": 3444, \"AVE_HH_SZ\": 2.860000, \"HSEHLD_1_M\": 254, \"HSEHLD_1_F\": 321, \"MARHH_CHD\": 1063, \"MARHH_NO_C\": 1112, \"MHH_CHILD\": 58, \"FHH_CHILD\": 183, \"FAMILIES\": 2689, \"AVE_FAM_SZ\": 3.230000, \"HSE_UNITS\": 3500, \"VACANT\": 56, \"OWNER_OCC\": 2755, \"RENTER_OCC\": 689 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.289426064940344, 41.039651614200565 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wayne\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"77870\", \"CAPITAL\": \"N\", \"AREALAND\": 23.824000, \"AREAWATER\": 1.365000, \"POP_CL\": 7, \"POP2000\": 54069, \"WHITE\": 48687, \"BLACK\": 895, \"AMERI_ES\": 54, \"ASIAN\": 3066, \"HAWN_PI\": 11, \"OTHER\": 631, \"MULT_RACE\": 725, \"HISPANIC\": 2754, \"MALES\": 25699, \"FEMALES\": 28370, \"AGE_UNDER5\": 3313, \"AGE_5_17\": 9213, \"AGE_18_21\": 2941, \"AGE_22_29\": 3748, \"AGE_30_39\": 7865, \"AGE_40_49\": 8817, \"AGE_50_64\": 9407, \"AGE_65_UP\": 8765, \"MED_AGE\": 40.000000, \"MED_AGE_M\": 39.000000, \"MED_AGE_F\": 41.000000, \"HOUSEHOLDS\": 18755, \"AVE_HH_SZ\": 2.740000, \"HSEHLD_1_M\": 1325, \"HSEHLD_1_F\": 2472, \"MARHH_CHD\": 5787, \"MARHH_NO_C\": 6658, \"MHH_CHILD\": 158, \"FHH_CHILD\": 500, \"FAMILIES\": 14370, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 19218, \"VACANT\": 463, \"OWNER_OCC\": 15371, \"RENTER_OCC\": 3384 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.250556528557979, 40.942086758750129 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"West Caldwell\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"78500\", \"CAPITAL\": \"N\", \"AREALAND\": 5.050000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11233, \"WHITE\": 10541, \"BLACK\": 100, \"AMERI_ES\": 4, \"ASIAN\": 432, \"HAWN_PI\": 4, \"OTHER\": 68, \"MULT_RACE\": 84, \"HISPANIC\": 314, \"MALES\": 5330, \"FEMALES\": 5903, \"AGE_UNDER5\": 813, \"AGE_5_17\": 1957, \"AGE_18_21\": 278, \"AGE_22_29\": 660, \"AGE_30_39\": 1710, \"AGE_40_49\": 1761, \"AGE_50_64\": 1912, \"AGE_65_UP\": 2142, \"MED_AGE\": 41.000000, \"MED_AGE_M\": 39.700000, \"MED_AGE_F\": 42.100000, \"HOUSEHOLDS\": 3990, \"AVE_HH_SZ\": 2.750000, \"HSEHLD_1_M\": 259, \"HSEHLD_1_F\": 508, \"MARHH_CHD\": 1295, \"MARHH_NO_C\": 1424, \"MHH_CHILD\": 29, \"FHH_CHILD\": 86, \"FAMILIES\": 3114, \"AVE_FAM_SZ\": 3.170000, \"HSE_UNITS\": 4044, \"VACANT\": 54, \"OWNER_OCC\": 3441, \"RENTER_OCC\": 549 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.289071894097077, 40.848354600912316 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Westfield\", \"CLASS\": \"town\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"79040\", \"CAPITAL\": \"N\", \"AREALAND\": 6.732000, \"AREAWATER\": 0.015000, \"POP_CL\": 6, \"POP2000\": 29644, \"WHITE\": 26675, \"BLACK\": 1151, \"AMERI_ES\": 27, \"ASIAN\": 1208, \"HAWN_PI\": 3, \"OTHER\": 185, \"MULT_RACE\": 395, \"HISPANIC\": 836, \"MALES\": 14209, \"FEMALES\": 15435, \"AGE_UNDER5\": 2369, \"AGE_5_17\": 6040, \"AGE_18_21\": 662, \"AGE_22_29\": 1694, \"AGE_30_39\": 4903, \"AGE_40_49\": 5174, \"AGE_50_64\": 4787, \"AGE_65_UP\": 4015, \"MED_AGE\": 38.600000, \"MED_AGE_M\": 37.600000, \"MED_AGE_F\": 39.400000, \"HOUSEHOLDS\": 10622, \"AVE_HH_SZ\": 2.770000, \"HSEHLD_1_M\": 691, \"HSEHLD_1_F\": 1361, \"MARHH_CHD\": 3905, \"MARHH_NO_C\": 3317, \"MHH_CHILD\": 81, \"FHH_CHILD\": 344, \"FAMILIES\": 8181, \"AVE_FAM_SZ\": 3.200000, \"HSE_UNITS\": 10819, \"VACANT\": 197, \"OWNER_OCC\": 8674, \"RENTER_OCC\": 1948 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.343280886757469, 40.649874379999076 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"West Freehold\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"79100\", \"CAPITAL\": \"N\", \"AREALAND\": 5.867000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12498, \"WHITE\": 11333, \"BLACK\": 308, \"AMERI_ES\": 19, \"ASIAN\": 535, \"HAWN_PI\": 3, \"OTHER\": 141, \"MULT_RACE\": 159, \"HISPANIC\": 673, \"MALES\": 5994, \"FEMALES\": 6504, \"AGE_UNDER5\": 747, \"AGE_5_17\": 2224, \"AGE_18_21\": 374, \"AGE_22_29\": 941, \"AGE_30_39\": 1968, \"AGE_40_49\": 2009, \"AGE_50_64\": 2561, \"AGE_65_UP\": 1674, \"MED_AGE\": 40.000000, \"MED_AGE_M\": 39.000000, \"MED_AGE_F\": 41.100000, \"HOUSEHOLDS\": 4659, \"AVE_HH_SZ\": 2.620000, \"HSEHLD_1_M\": 418, \"HSEHLD_1_F\": 637, \"MARHH_CHD\": 1343, \"MARHH_NO_C\": 1595, \"MHH_CHILD\": 40, \"FHH_CHILD\": 151, \"FAMILIES\": 3431, \"AVE_FAM_SZ\": 3.100000, \"HSE_UNITS\": 4740, \"VACANT\": 81, \"OWNER_OCC\": 4011, \"RENTER_OCC\": 648 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.295233791343435, 40.233026526872884 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"West Milford\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"79430\", \"CAPITAL\": \"N\", \"AREALAND\": 75.437000, \"AREAWATER\": 4.971000, \"POP_CL\": 6, \"POP2000\": 26410, \"WHITE\": 25110, \"BLACK\": 326, \"AMERI_ES\": 159, \"ASIAN\": 269, \"HAWN_PI\": 4, \"OTHER\": 160, \"MULT_RACE\": 382, \"HISPANIC\": 893, \"MALES\": 13224, \"FEMALES\": 13186, \"AGE_UNDER5\": 1863, \"AGE_5_17\": 5325, \"AGE_18_21\": 930, \"AGE_22_29\": 1932, \"AGE_30_39\": 4818, \"AGE_40_49\": 4991, \"AGE_50_64\": 4339, \"AGE_65_UP\": 2212, \"MED_AGE\": 37.000000, \"MED_AGE_M\": 36.700000, \"MED_AGE_F\": 37.300000, \"HOUSEHOLDS\": 9190, \"AVE_HH_SZ\": 2.840000, \"HSEHLD_1_M\": 779, \"HSEHLD_1_F\": 757, \"MARHH_CHD\": 3189, \"MARHH_NO_C\": 3000, \"MHH_CHILD\": 119, \"FHH_CHILD\": 358, \"FAMILIES\": 7186, \"AVE_FAM_SZ\": 3.230000, \"HSE_UNITS\": 9909, \"VACANT\": 719, \"OWNER_OCC\": 8232, \"RENTER_OCC\": 958 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.383729635797962, 41.118596263954117 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"West New York\", \"CLASS\": \"town\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"79610\", \"CAPITAL\": \"N\", \"AREALAND\": 1.017000, \"AREAWATER\": 0.306000, \"POP_CL\": 6, \"POP2000\": 45768, \"WHITE\": 27503, \"BLACK\": 1626, \"AMERI_ES\": 305, \"ASIAN\": 1339, \"HAWN_PI\": 15, \"OTHER\": 11515, \"MULT_RACE\": 3465, \"HISPANIC\": 36038, \"MALES\": 22470, \"FEMALES\": 23298, \"AGE_UNDER5\": 3049, \"AGE_5_17\": 7157, \"AGE_18_21\": 2641, \"AGE_22_29\": 6692, \"AGE_30_39\": 8033, \"AGE_40_49\": 5971, \"AGE_50_64\": 6397, \"AGE_65_UP\": 5828, \"MED_AGE\": 34.000000, \"MED_AGE_M\": 32.400000, \"MED_AGE_F\": 35.900000, \"HOUSEHOLDS\": 16719, \"AVE_HH_SZ\": 2.740000, \"HSEHLD_1_M\": 1910, \"HSEHLD_1_F\": 2683, \"MARHH_CHD\": 3321, \"MARHH_NO_C\": 3676, \"MHH_CHILD\": 457, \"FHH_CHILD\": 1421, \"FAMILIES\": 11042, \"AVE_FAM_SZ\": 3.300000, \"HSE_UNITS\": 17360, \"VACANT\": 641, \"OWNER_OCC\": 3334, \"RENTER_OCC\": 13385 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.01320692360386, 40.788406747552443 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"West Orange\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"79790\", \"CAPITAL\": \"N\", \"AREALAND\": 12.118000, \"AREAWATER\": 0.112000, \"POP_CL\": 6, \"POP2000\": 44943, \"WHITE\": 30359, \"BLACK\": 7848, \"AMERI_ES\": 63, \"ASIAN\": 3635, \"HAWN_PI\": 17, \"OTHER\": 1584, \"MULT_RACE\": 1437, \"HISPANIC\": 4514, \"MALES\": 21110, \"FEMALES\": 23833, \"AGE_UNDER5\": 2988, \"AGE_5_17\": 7478, \"AGE_18_21\": 1534, \"AGE_22_29\": 3750, \"AGE_30_39\": 7173, \"AGE_40_49\": 6998, \"AGE_50_64\": 7204, \"AGE_65_UP\": 7818, \"MED_AGE\": 39.400000, \"MED_AGE_M\": 37.400000, \"MED_AGE_F\": 41.200000, \"HOUSEHOLDS\": 16480, \"AVE_HH_SZ\": 2.660000, \"HSEHLD_1_M\": 1417, \"HSEHLD_1_F\": 2633, \"MARHH_CHD\": 4276, \"MARHH_NO_C\": 4957, \"MHH_CHILD\": 228, \"FHH_CHILD\": 800, \"FAMILIES\": 11682, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 16901, \"VACANT\": 421, \"OWNER_OCC\": 11601, \"RENTER_OCC\": 4879 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.255519293560241, 40.788655726828772 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"West Paterson\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"79820\", \"CAPITAL\": \"N\", \"AREALAND\": 2.957000, \"AREAWATER\": 0.135000, \"POP_CL\": 6, \"POP2000\": 10987, \"WHITE\": 9507, \"BLACK\": 347, \"AMERI_ES\": 9, \"ASIAN\": 421, \"HAWN_PI\": 4, \"OTHER\": 348, \"MULT_RACE\": 351, \"HISPANIC\": 1105, \"MALES\": 5288, \"FEMALES\": 5699, \"AGE_UNDER5\": 669, \"AGE_5_17\": 1484, \"AGE_18_21\": 436, \"AGE_22_29\": 1325, \"AGE_30_39\": 1972, \"AGE_40_49\": 1620, \"AGE_50_64\": 1801, \"AGE_65_UP\": 1680, \"MED_AGE\": 38.100000, \"MED_AGE_M\": 37.300000, \"MED_AGE_F\": 38.900000, \"HOUSEHOLDS\": 4397, \"AVE_HH_SZ\": 2.490000, \"HSEHLD_1_M\": 508, \"HSEHLD_1_F\": 613, \"MARHH_CHD\": 927, \"MARHH_NO_C\": 1442, \"MHH_CHILD\": 61, \"FHH_CHILD\": 194, \"FAMILIES\": 3025, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 4497, \"VACANT\": 100, \"OWNER_OCC\": 2534, \"RENTER_OCC\": 1863 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.199011018713747, 40.893703961464475 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Westwood\", \"CLASS\": \"borough\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"80270\", \"CAPITAL\": \"N\", \"AREALAND\": 2.318000, \"AREAWATER\": 0.004000, \"POP_CL\": 6, \"POP2000\": 10999, \"WHITE\": 9525, \"BLACK\": 629, \"AMERI_ES\": 15, \"ASIAN\": 483, \"HAWN_PI\": 1, \"OTHER\": 184, \"MULT_RACE\": 162, \"HISPANIC\": 660, \"MALES\": 5218, \"FEMALES\": 5781, \"AGE_UNDER5\": 762, \"AGE_5_17\": 1606, \"AGE_18_21\": 315, \"AGE_22_29\": 1035, \"AGE_30_39\": 2037, \"AGE_40_49\": 1675, \"AGE_50_64\": 1817, \"AGE_65_UP\": 1752, \"MED_AGE\": 38.600000, \"MED_AGE_M\": 36.800000, \"MED_AGE_F\": 40.600000, \"HOUSEHOLDS\": 4485, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 502, \"HSEHLD_1_F\": 893, \"MARHH_CHD\": 1092, \"MARHH_NO_C\": 1300, \"MHH_CHILD\": 41, \"FHH_CHILD\": 140, \"FAMILIES\": 2878, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 4610, \"VACANT\": 125, \"OWNER_OCC\": 2781, \"RENTER_OCC\": 1704 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.030864290295042, 40.988554688255462 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Williamstown\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"81380\", \"CAPITAL\": \"N\", \"AREALAND\": 6.163000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11812, \"WHITE\": 10120, \"BLACK\": 1223, \"AMERI_ES\": 35, \"ASIAN\": 113, \"HAWN_PI\": 7, \"OTHER\": 117, \"MULT_RACE\": 197, \"HISPANIC\": 339, \"MALES\": 5613, \"FEMALES\": 6199, \"AGE_UNDER5\": 773, \"AGE_5_17\": 2205, \"AGE_18_21\": 551, \"AGE_22_29\": 1155, \"AGE_30_39\": 1781, \"AGE_40_49\": 1647, \"AGE_50_64\": 1944, \"AGE_65_UP\": 1756, \"MED_AGE\": 36.800000, \"MED_AGE_M\": 35.000000, \"MED_AGE_F\": 38.700000, \"HOUSEHOLDS\": 4484, \"AVE_HH_SZ\": 2.630000, \"HSEHLD_1_M\": 377, \"HSEHLD_1_F\": 690, \"MARHH_CHD\": 1053, \"MARHH_NO_C\": 1441, \"MHH_CHILD\": 100, \"FHH_CHILD\": 309, \"FAMILIES\": 3224, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 4764, \"VACANT\": 280, \"OWNER_OCC\": 3279, \"RENTER_OCC\": 1205 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.99153050129415, 39.686427330598285 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Woodbridge\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"81950\", \"CAPITAL\": \"N\", \"AREALAND\": 3.873000, \"AREAWATER\": 0.006000, \"POP_CL\": 6, \"POP2000\": 18309, \"WHITE\": 13629, \"BLACK\": 1399, \"AMERI_ES\": 22, \"ASIAN\": 2353, \"HAWN_PI\": 4, \"OTHER\": 542, \"MULT_RACE\": 360, \"HISPANIC\": 1801, \"MALES\": 8777, \"FEMALES\": 9532, \"AGE_UNDER5\": 1199, \"AGE_5_17\": 2724, \"AGE_18_21\": 690, \"AGE_22_29\": 2325, \"AGE_30_39\": 3414, \"AGE_40_49\": 2792, \"AGE_50_64\": 2664, \"AGE_65_UP\": 2501, \"MED_AGE\": 36.500000, \"MED_AGE_M\": 34.800000, \"MED_AGE_F\": 38.100000, \"HOUSEHOLDS\": 7290, \"AVE_HH_SZ\": 2.490000, \"HSEHLD_1_M\": 771, \"HSEHLD_1_F\": 1211, \"MARHH_CHD\": 1657, \"MARHH_NO_C\": 2050, \"MHH_CHILD\": 106, \"FHH_CHILD\": 375, \"FAMILIES\": 4848, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 7512, \"VACANT\": 222, \"OWNER_OCC\": 4508, \"RENTER_OCC\": 2782 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.283262393075759, 40.5571095999519 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Woodbury\", \"CLASS\": \"city\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"82120\", \"CAPITAL\": \"N\", \"AREALAND\": 2.077000, \"AREAWATER\": 0.039000, \"POP_CL\": 6, \"POP2000\": 10307, \"WHITE\": 7467, \"BLACK\": 2353, \"AMERI_ES\": 23, \"ASIAN\": 102, \"HAWN_PI\": 14, \"OTHER\": 132, \"MULT_RACE\": 216, \"HISPANIC\": 406, \"MALES\": 4815, \"FEMALES\": 5492, \"AGE_UNDER5\": 669, \"AGE_5_17\": 1884, \"AGE_18_21\": 500, \"AGE_22_29\": 1010, \"AGE_30_39\": 1588, \"AGE_40_49\": 1571, \"AGE_50_64\": 1383, \"AGE_65_UP\": 1702, \"MED_AGE\": 37.000000, \"MED_AGE_M\": 35.200000, \"MED_AGE_F\": 38.900000, \"HOUSEHOLDS\": 4051, \"AVE_HH_SZ\": 2.430000, \"HSEHLD_1_M\": 456, \"HSEHLD_1_F\": 827, \"MARHH_CHD\": 750, \"MARHH_NO_C\": 929, \"MHH_CHILD\": 84, \"FHH_CHILD\": 475, \"FAMILIES\": 2588, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 4310, \"VACANT\": 259, \"OWNER_OCC\": 2432, \"RENTER_OCC\": 1619 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.153116637104276, 39.837365952714137 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wyckoff\", \"CLASS\": \"CDP\", \"ST\": \"NJ\", \"STFIPS\": \"34\", \"PLACEFIP\": \"83080\", \"CAPITAL\": \"N\", \"AREALAND\": 6.547000, \"AREAWATER\": 0.024000, \"POP_CL\": 6, \"POP2000\": 16508, \"WHITE\": 15607, \"BLACK\": 77, \"AMERI_ES\": 25, \"ASIAN\": 611, \"HAWN_PI\": 2, \"OTHER\": 74, \"MULT_RACE\": 112, \"HISPANIC\": 376, \"MALES\": 7880, \"FEMALES\": 8628, \"AGE_UNDER5\": 1185, \"AGE_5_17\": 3486, \"AGE_18_21\": 408, \"AGE_22_29\": 710, \"AGE_30_39\": 2187, \"AGE_40_49\": 2999, \"AGE_50_64\": 2930, \"AGE_65_UP\": 2603, \"MED_AGE\": 40.900000, \"MED_AGE_M\": 40.100000, \"MED_AGE_F\": 41.600000, \"HOUSEHOLDS\": 5541, \"AVE_HH_SZ\": 2.890000, \"HSEHLD_1_M\": 237, \"HSEHLD_1_F\": 582, \"MARHH_CHD\": 2185, \"MARHH_NO_C\": 2007, \"MHH_CHILD\": 35, \"FHH_CHILD\": 132, \"FAMILIES\": 4634, \"AVE_FAM_SZ\": 3.220000, \"HSE_UNITS\": 5638, \"VACANT\": 97, \"OWNER_OCC\": 5141, \"RENTER_OCC\": 400 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.167213470537789, 40.998589101027562 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Alamogordo\", \"CLASS\": \"city\", \"ST\": \"NM\", \"STFIPS\": \"35\", \"PLACEFIP\": \"01780\", \"CAPITAL\": \"N\", \"AREALAND\": 19.348000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 35582, \"WHITE\": 26812, \"BLACK\": 1985, \"AMERI_ES\": 374, \"ASIAN\": 545, \"HAWN_PI\": 59, \"OTHER\": 4295, \"MULT_RACE\": 1512, \"HISPANIC\": 11383, \"MALES\": 17571, \"FEMALES\": 18011, \"AGE_UNDER5\": 2706, \"AGE_5_17\": 7490, \"AGE_18_21\": 1789, \"AGE_22_29\": 4032, \"AGE_30_39\": 5382, \"AGE_40_49\": 4762, \"AGE_50_64\": 4917, \"AGE_65_UP\": 4504, \"MED_AGE\": 33.500000, \"MED_AGE_M\": 32.300000, \"MED_AGE_F\": 34.800000, \"HOUSEHOLDS\": 13704, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 1784, \"HSEHLD_1_F\": 1673, \"MARHH_CHD\": 3526, \"MARHH_NO_C\": 4092, \"MHH_CHILD\": 328, \"FHH_CHILD\": 1117, \"FAMILIES\": 9728, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 15920, \"VACANT\": 2216, \"OWNER_OCC\": 8313, \"RENTER_OCC\": 5391 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -105.952132501663485, 32.895939937593994 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Albuquerque\", \"CLASS\": \"city\", \"ST\": \"NM\", \"STFIPS\": \"35\", \"PLACEFIP\": \"02000\", \"CAPITAL\": \"N\", \"AREALAND\": 180.641000, \"AREAWATER\": 0.637000, \"POP_CL\": 8, \"POP2000\": 448607, \"WHITE\": 321179, \"BLACK\": 13854, \"AMERI_ES\": 17444, \"ASIAN\": 10068, \"HAWN_PI\": 452, \"OTHER\": 66292, \"MULT_RACE\": 19318, \"HISPANIC\": 179075, \"MALES\": 217887, \"FEMALES\": 230720, \"AGE_UNDER5\": 30883, \"AGE_5_17\": 79209, \"AGE_18_21\": 27624, \"AGE_22_29\": 54114, \"AGE_30_39\": 69437, \"AGE_40_49\": 68294, \"AGE_50_64\": 65376, \"AGE_65_UP\": 53670, \"MED_AGE\": 34.900000, \"MED_AGE_M\": 33.600000, \"MED_AGE_F\": 36.100000, \"HOUSEHOLDS\": 183236, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 25464, \"HSEHLD_1_F\": 30340, \"MARHH_CHD\": 35480, \"MARHH_NO_C\": 44435, \"MHH_CHILD\": 5211, \"FHH_CHILD\": 14709, \"FAMILIES\": 112623, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 198465, \"VACANT\": 15229, \"OWNER_OCC\": 110606, \"RENTER_OCC\": 72630 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -106.60998795121985, 35.110702941567851 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Artesia\", \"CLASS\": \"city\", \"ST\": \"NM\", \"STFIPS\": \"35\", \"PLACEFIP\": \"05220\", \"CAPITAL\": \"N\", \"AREALAND\": 7.971000, \"AREAWATER\": 0.013000, \"POP_CL\": 6, \"POP2000\": 10692, \"WHITE\": 7725, \"BLACK\": 154, \"AMERI_ES\": 165, \"ASIAN\": 21, \"HAWN_PI\": 16, \"OTHER\": 2305, \"MULT_RACE\": 306, \"HISPANIC\": 4809, \"MALES\": 5124, \"FEMALES\": 5568, \"AGE_UNDER5\": 858, \"AGE_5_17\": 2380, \"AGE_18_21\": 631, \"AGE_22_29\": 861, \"AGE_30_39\": 1341, \"AGE_40_49\": 1551, \"AGE_50_64\": 1454, \"AGE_65_UP\": 1616, \"MED_AGE\": 35.100000, \"MED_AGE_M\": 33.700000, \"MED_AGE_F\": 36.300000, \"HOUSEHOLDS\": 4080, \"AVE_HH_SZ\": 2.610000, \"HSEHLD_1_M\": 447, \"HSEHLD_1_F\": 639, \"MARHH_CHD\": 1004, \"MARHH_NO_C\": 1150, \"MHH_CHILD\": 108, \"FHH_CHILD\": 385, \"FAMILIES\": 2895, \"AVE_FAM_SZ\": 3.150000, \"HSE_UNITS\": 4593, \"VACANT\": 513, \"OWNER_OCC\": 2835, \"RENTER_OCC\": 1245 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -104.412314599882976, 32.842743945474091 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Carlsbad\", \"CLASS\": \"city\", \"ST\": \"NM\", \"STFIPS\": \"35\", \"PLACEFIP\": \"12150\", \"CAPITAL\": \"N\", \"AREALAND\": 28.367000, \"AREAWATER\": 0.045000, \"POP_CL\": 6, \"POP2000\": 25625, \"WHITE\": 19834, \"BLACK\": 563, \"AMERI_ES\": 321, \"ASIAN\": 181, \"HAWN_PI\": 20, \"OTHER\": 4060, \"MULT_RACE\": 646, \"HISPANIC\": 9417, \"MALES\": 12343, \"FEMALES\": 13282, \"AGE_UNDER5\": 1879, \"AGE_5_17\": 5078, \"AGE_18_21\": 1352, \"AGE_22_29\": 2188, \"AGE_30_39\": 3109, \"AGE_40_49\": 3735, \"AGE_50_64\": 3897, \"AGE_65_UP\": 4387, \"MED_AGE\": 37.700000, \"MED_AGE_M\": 36.000000, \"MED_AGE_F\": 39.100000, \"HOUSEHOLDS\": 9957, \"AVE_HH_SZ\": 2.510000, \"HSEHLD_1_M\": 1108, \"HSEHLD_1_F\": 1542, \"MARHH_CHD\": 2137, \"MARHH_NO_C\": 3047, \"MHH_CHILD\": 292, \"FHH_CHILD\": 844, \"FAMILIES\": 6951, \"AVE_FAM_SZ\": 3.030000, \"HSE_UNITS\": 11421, \"VACANT\": 1464, \"OWNER_OCC\": 7120, \"RENTER_OCC\": 2837 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -104.236276678991743, 32.411892950202585 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Clovis\", \"CLASS\": \"city\", \"ST\": \"NM\", \"STFIPS\": \"35\", \"PLACEFIP\": \"16420\", \"CAPITAL\": \"N\", \"AREALAND\": 22.391000, \"AREAWATER\": 0.098000, \"POP_CL\": 6, \"POP2000\": 32667, \"WHITE\": 23293, \"BLACK\": 2392, \"AMERI_ES\": 332, \"ASIAN\": 528, \"HAWN_PI\": 41, \"OTHER\": 4895, \"MULT_RACE\": 1186, \"HISPANIC\": 10924, \"MALES\": 15693, \"FEMALES\": 16974, \"AGE_UNDER5\": 2697, \"AGE_5_17\": 7094, \"AGE_18_21\": 1766, \"AGE_22_29\": 3427, \"AGE_30_39\": 4700, \"AGE_40_49\": 4340, \"AGE_50_64\": 4385, \"AGE_65_UP\": 4258, \"MED_AGE\": 33.100000, \"MED_AGE_M\": 31.400000, \"MED_AGE_F\": 34.500000, \"HOUSEHOLDS\": 12458, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 1459, \"HSEHLD_1_F\": 1875, \"MARHH_CHD\": 2878, \"MARHH_NO_C\": 3322, \"MHH_CHILD\": 348, \"FHH_CHILD\": 1299, \"FAMILIES\": 8598, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 14269, \"VACANT\": 1811, \"OWNER_OCC\": 7767, \"RENTER_OCC\": 4691 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -103.204610852234978, 34.41250896057776 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Deming\", \"CLASS\": \"city\", \"ST\": \"NM\", \"STFIPS\": \"35\", \"PLACEFIP\": \"20270\", \"CAPITAL\": \"N\", \"AREALAND\": 9.336000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14116, \"WHITE\": 9833, \"BLACK\": 173, \"AMERI_ES\": 193, \"ASIAN\": 68, \"HAWN_PI\": 1, \"OTHER\": 3414, \"MULT_RACE\": 434, \"HISPANIC\": 9116, \"MALES\": 6675, \"FEMALES\": 7441, \"AGE_UNDER5\": 1180, \"AGE_5_17\": 3180, \"AGE_18_21\": 699, \"AGE_22_29\": 1212, \"AGE_30_39\": 1658, \"AGE_40_49\": 1574, \"AGE_50_64\": 1988, \"AGE_65_UP\": 2625, \"MED_AGE\": 34.900000, \"MED_AGE_M\": 33.700000, \"MED_AGE_F\": 36.000000, \"HOUSEHOLDS\": 5267, \"AVE_HH_SZ\": 2.630000, \"HSEHLD_1_M\": 611, \"HSEHLD_1_F\": 852, \"MARHH_CHD\": 1146, \"MARHH_NO_C\": 1437, \"MHH_CHILD\": 143, \"FHH_CHILD\": 549, \"FAMILIES\": 3628, \"AVE_FAM_SZ\": 3.230000, \"HSE_UNITS\": 6192, \"VACANT\": 925, \"OWNER_OCC\": 3597, \"RENTER_OCC\": 1670 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -107.755851743474011, 32.261137085576117 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Farmington\", \"CLASS\": \"city\", \"ST\": \"NM\", \"STFIPS\": \"35\", \"PLACEFIP\": \"25800\", \"CAPITAL\": \"N\", \"AREALAND\": 26.566000, \"AREAWATER\": 0.416000, \"POP_CL\": 6, \"POP2000\": 37844, \"WHITE\": 26771, \"BLACK\": 316, \"AMERI_ES\": 6419, \"ASIAN\": 197, \"HAWN_PI\": 24, \"OTHER\": 2942, \"MULT_RACE\": 1175, \"HISPANIC\": 6684, \"MALES\": 18558, \"FEMALES\": 19286, \"AGE_UNDER5\": 2867, \"AGE_5_17\": 8224, \"AGE_18_21\": 2273, \"AGE_22_29\": 3886, \"AGE_30_39\": 5187, \"AGE_40_49\": 6069, \"AGE_50_64\": 5284, \"AGE_65_UP\": 4054, \"MED_AGE\": 33.600000, \"MED_AGE_M\": 32.300000, \"MED_AGE_F\": 34.700000, \"HOUSEHOLDS\": 13982, \"AVE_HH_SZ\": 2.670000, \"HSEHLD_1_M\": 1408, \"HSEHLD_1_F\": 1757, \"MARHH_CHD\": 3624, \"MARHH_NO_C\": 3975, \"MHH_CHILD\": 498, \"FHH_CHILD\": 1177, \"FAMILIES\": 10099, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 15077, \"VACANT\": 1095, \"OWNER_OCC\": 9563, \"RENTER_OCC\": 4419 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -108.189757737834995, 36.751549176635983 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Gallup\", \"CLASS\": \"city\", \"ST\": \"NM\", \"STFIPS\": \"35\", \"PLACEFIP\": \"28460\", \"CAPITAL\": \"N\", \"AREALAND\": 13.350000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 20209, \"WHITE\": 8106, \"BLACK\": 219, \"AMERI_ES\": 7404, \"ASIAN\": 289, \"HAWN_PI\": 19, \"OTHER\": 2985, \"MULT_RACE\": 1187, \"HISPANIC\": 6699, \"MALES\": 9628, \"FEMALES\": 10581, \"AGE_UNDER5\": 1654, \"AGE_5_17\": 4961, \"AGE_18_21\": 1112, \"AGE_22_29\": 2047, \"AGE_30_39\": 2899, \"AGE_40_49\": 3025, \"AGE_50_64\": 2706, \"AGE_65_UP\": 1805, \"MED_AGE\": 31.100000, \"MED_AGE_M\": 29.800000, \"MED_AGE_F\": 32.300000, \"HOUSEHOLDS\": 6810, \"AVE_HH_SZ\": 2.850000, \"HSEHLD_1_M\": 692, \"HSEHLD_1_F\": 928, \"MARHH_CHD\": 1635, \"MARHH_NO_C\": 1452, \"MHH_CHILD\": 276, \"FHH_CHILD\": 891, \"FAMILIES\": 4870, \"AVE_FAM_SZ\": 3.390000, \"HSE_UNITS\": 7349, \"VACANT\": 539, \"OWNER_OCC\": 4104, \"RENTER_OCC\": 2706 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -108.734074879057616, 35.523750394862283 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hobbs\", \"CLASS\": \"city\", \"ST\": \"NM\", \"STFIPS\": \"35\", \"PLACEFIP\": \"32520\", \"CAPITAL\": \"N\", \"AREALAND\": 18.927000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 28657, \"WHITE\": 18203, \"BLACK\": 1945, \"AMERI_ES\": 308, \"ASIAN\": 123, \"HAWN_PI\": 12, \"OTHER\": 6997, \"MULT_RACE\": 1069, \"HISPANIC\": 12088, \"MALES\": 14340, \"FEMALES\": 14317, \"AGE_UNDER5\": 2319, \"AGE_5_17\": 6387, \"AGE_18_21\": 1763, \"AGE_22_29\": 3066, \"AGE_30_39\": 4036, \"AGE_40_49\": 3938, \"AGE_50_64\": 3738, \"AGE_65_UP\": 3410, \"MED_AGE\": 32.100000, \"MED_AGE_M\": 31.300000, \"MED_AGE_F\": 33.100000, \"HOUSEHOLDS\": 10040, \"AVE_HH_SZ\": 2.720000, \"HSEHLD_1_M\": 969, \"HSEHLD_1_F\": 1385, \"MARHH_CHD\": 2697, \"MARHH_NO_C\": 2739, \"MHH_CHILD\": 303, \"FHH_CHILD\": 999, \"FAMILIES\": 7373, \"AVE_FAM_SZ\": 3.220000, \"HSE_UNITS\": 11968, \"VACANT\": 1928, \"OWNER_OCC\": 6816, \"RENTER_OCC\": 3224 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -103.140680892764252, 32.712239966887367 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Las Cruces\", \"CLASS\": \"city\", \"ST\": \"NM\", \"STFIPS\": \"35\", \"PLACEFIP\": \"39380\", \"CAPITAL\": \"N\", \"AREALAND\": 52.092000, \"AREAWATER\": 0.129000, \"POP_CL\": 7, \"POP2000\": 74267, \"WHITE\": 51248, \"BLACK\": 1738, \"AMERI_ES\": 1289, \"ASIAN\": 863, \"HAWN_PI\": 55, \"OTHER\": 16031, \"MULT_RACE\": 3043, \"HISPANIC\": 38421, \"MALES\": 36036, \"FEMALES\": 38231, \"AGE_UNDER5\": 5195, \"AGE_5_17\": 13454, \"AGE_18_21\": 7165, \"AGE_22_29\": 10165, \"AGE_30_39\": 9613, \"AGE_40_49\": 9382, \"AGE_50_64\": 9572, \"AGE_65_UP\": 9721, \"MED_AGE\": 31.200000, \"MED_AGE_M\": 29.500000, \"MED_AGE_F\": 33.000000, \"HOUSEHOLDS\": 29184, \"AVE_HH_SZ\": 2.460000, \"HSEHLD_1_M\": 3557, \"HSEHLD_1_F\": 4581, \"MARHH_CHD\": 5241, \"MARHH_NO_C\": 7114, \"MHH_CHILD\": 750, \"FHH_CHILD\": 2890, \"FAMILIES\": 18130, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 31682, \"VACANT\": 2498, \"OWNER_OCC\": 16960, \"RENTER_OCC\": 12224 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -106.765154374657712, 32.319692970666281 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Las Vegas\", \"CLASS\": \"city\", \"ST\": \"NM\", \"STFIPS\": \"35\", \"PLACEFIP\": \"39940\", \"CAPITAL\": \"N\", \"AREALAND\": 7.515000, \"AREAWATER\": 0.004000, \"POP_CL\": 6, \"POP2000\": 14565, \"WHITE\": 7895, \"BLACK\": 144, \"AMERI_ES\": 285, \"ASIAN\": 89, \"HAWN_PI\": 14, \"OTHER\": 5417, \"MULT_RACE\": 721, \"HISPANIC\": 12080, \"MALES\": 6914, \"FEMALES\": 7651, \"AGE_UNDER5\": 969, \"AGE_5_17\": 2873, \"AGE_18_21\": 1241, \"AGE_22_29\": 1572, \"AGE_30_39\": 1825, \"AGE_40_49\": 2008, \"AGE_50_64\": 2206, \"AGE_65_UP\": 1871, \"MED_AGE\": 34.000000, \"MED_AGE_M\": 32.600000, \"MED_AGE_F\": 35.200000, \"HOUSEHOLDS\": 5588, \"AVE_HH_SZ\": 2.480000, \"HSEHLD_1_M\": 788, \"HSEHLD_1_F\": 909, \"MARHH_CHD\": 900, \"MARHH_NO_C\": 1109, \"MHH_CHILD\": 231, \"FHH_CHILD\": 711, \"FAMILIES\": 3561, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 6366, \"VACANT\": 778, \"OWNER_OCC\": 3554, \"RENTER_OCC\": 2034 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -105.222587904523209, 35.597030916823641 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Los Alamos\", \"CLASS\": \"CDP\", \"ST\": \"NM\", \"STFIPS\": \"35\", \"PLACEFIP\": \"42320\", \"CAPITAL\": \"N\", \"AREALAND\": 10.864000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11909, \"WHITE\": 10614, \"BLACK\": 52, \"AMERI_ES\": 67, \"ASIAN\": 532, \"HAWN_PI\": 5, \"OTHER\": 359, \"MULT_RACE\": 280, \"HISPANIC\": 1454, \"MALES\": 5993, \"FEMALES\": 5916, \"AGE_UNDER5\": 652, \"AGE_5_17\": 2307, \"AGE_18_21\": 360, \"AGE_22_29\": 777, \"AGE_30_39\": 1822, \"AGE_40_49\": 2166, \"AGE_50_64\": 2286, \"AGE_65_UP\": 1539, \"MED_AGE\": 40.200000, \"MED_AGE_M\": 39.700000, \"MED_AGE_F\": 40.700000, \"HOUSEHOLDS\": 5110, \"AVE_HH_SZ\": 2.310000, \"HSEHLD_1_M\": 828, \"HSEHLD_1_F\": 696, \"MARHH_CHD\": 1244, \"MARHH_NO_C\": 1639, \"MHH_CHILD\": 113, \"FHH_CHILD\": 248, \"FAMILIES\": 3371, \"AVE_FAM_SZ\": 2.890000, \"HSE_UNITS\": 5463, \"VACANT\": 353, \"OWNER_OCC\": 3653, \"RENTER_OCC\": 1457 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -106.297724399414733, 35.891085920720613 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Los Lunas\", \"CLASS\": \"village\", \"ST\": \"NM\", \"STFIPS\": \"35\", \"PLACEFIP\": \"43370\", \"CAPITAL\": \"N\", \"AREALAND\": 10.046000, \"AREAWATER\": 0.002000, \"POP_CL\": 6, \"POP2000\": 10034, \"WHITE\": 6436, \"BLACK\": 116, \"AMERI_ES\": 263, \"ASIAN\": 50, \"HAWN_PI\": 6, \"OTHER\": 2772, \"MULT_RACE\": 391, \"HISPANIC\": 5894, \"MALES\": 4888, \"FEMALES\": 5146, \"AGE_UNDER5\": 870, \"AGE_5_17\": 2254, \"AGE_18_21\": 560, \"AGE_22_29\": 1025, \"AGE_30_39\": 1606, \"AGE_40_49\": 1490, \"AGE_50_64\": 1338, \"AGE_65_UP\": 891, \"MED_AGE\": 31.800000, \"MED_AGE_M\": 30.600000, \"MED_AGE_F\": 33.100000, \"HOUSEHOLDS\": 3601, \"AVE_HH_SZ\": 2.750000, \"HSEHLD_1_M\": 323, \"HSEHLD_1_F\": 423, \"MARHH_CHD\": 950, \"MARHH_NO_C\": 915, \"MHH_CHILD\": 162, \"FHH_CHILD\": 397, \"FAMILIES\": 2691, \"AVE_FAM_SZ\": 3.160000, \"HSE_UNITS\": 3845, \"VACANT\": 244, \"OWNER_OCC\": 2786, \"RENTER_OCC\": 815 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -106.735243751608039, 34.809335951785421 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"North Valley\", \"CLASS\": \"CDP\", \"ST\": \"NM\", \"STFIPS\": \"35\", \"PLACEFIP\": \"52750\", \"CAPITAL\": \"N\", \"AREALAND\": 7.247000, \"AREAWATER\": 0.024000, \"POP_CL\": 6, \"POP2000\": 11923, \"WHITE\": 8778, \"BLACK\": 124, \"AMERI_ES\": 347, \"ASIAN\": 49, \"HAWN_PI\": 7, \"OTHER\": 2169, \"MULT_RACE\": 449, \"HISPANIC\": 6773, \"MALES\": 5943, \"FEMALES\": 5980, \"AGE_UNDER5\": 674, \"AGE_5_17\": 2373, \"AGE_18_21\": 632, \"AGE_22_29\": 962, \"AGE_30_39\": 1483, \"AGE_40_49\": 1998, \"AGE_50_64\": 2116, \"AGE_65_UP\": 1685, \"MED_AGE\": 39.100000, \"MED_AGE_M\": 37.800000, \"MED_AGE_F\": 40.500000, \"HOUSEHOLDS\": 4467, \"AVE_HH_SZ\": 2.590000, \"HSEHLD_1_M\": 524, \"HSEHLD_1_F\": 578, \"MARHH_CHD\": 894, \"MARHH_NO_C\": 1344, \"MHH_CHILD\": 139, \"FHH_CHILD\": 306, \"FAMILIES\": 3097, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 4772, \"VACANT\": 305, \"OWNER_OCC\": 3544, \"RENTER_OCC\": 923 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -106.623252904750956, 35.171490941725104 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Portales\", \"CLASS\": \"city\", \"ST\": \"NM\", \"STFIPS\": \"35\", \"PLACEFIP\": \"59260\", \"CAPITAL\": \"N\", \"AREALAND\": 6.850000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11131, \"WHITE\": 7658, \"BLACK\": 254, \"AMERI_ES\": 125, \"ASIAN\": 107, \"HAWN_PI\": 10, \"OTHER\": 2604, \"MULT_RACE\": 373, \"HISPANIC\": 4244, \"MALES\": 5381, \"FEMALES\": 5750, \"AGE_UNDER5\": 870, \"AGE_5_17\": 2061, \"AGE_18_21\": 1465, \"AGE_22_29\": 1578, \"AGE_30_39\": 1370, \"AGE_40_49\": 1168, \"AGE_50_64\": 1258, \"AGE_65_UP\": 1361, \"MED_AGE\": 27.300000, \"MED_AGE_M\": 25.800000, \"MED_AGE_F\": 29.200000, \"HOUSEHOLDS\": 4188, \"AVE_HH_SZ\": 2.490000, \"HSEHLD_1_M\": 459, \"HSEHLD_1_F\": 707, \"MARHH_CHD\": 925, \"MARHH_NO_C\": 973, \"MHH_CHILD\": 94, \"FHH_CHILD\": 388, \"FAMILIES\": 2658, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 4862, \"VACANT\": 674, \"OWNER_OCC\": 2292, \"RENTER_OCC\": 1896 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -103.338736835086976, 34.182183958911857 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Rio Rancho\", \"CLASS\": \"city\", \"ST\": \"NM\", \"STFIPS\": \"35\", \"PLACEFIP\": \"63460\", \"CAPITAL\": \"N\", \"AREALAND\": 73.424000, \"AREAWATER\": 0.077000, \"POP_CL\": 7, \"POP2000\": 51765, \"WHITE\": 40563, \"BLACK\": 1376, \"AMERI_ES\": 1226, \"ASIAN\": 758, \"HAWN_PI\": 89, \"OTHER\": 5618, \"MULT_RACE\": 2135, \"HISPANIC\": 14329, \"MALES\": 25106, \"FEMALES\": 26659, \"AGE_UNDER5\": 3861, \"AGE_5_17\": 11245, \"AGE_18_21\": 2265, \"AGE_22_29\": 4554, \"AGE_30_39\": 8613, \"AGE_40_49\": 8655, \"AGE_50_64\": 6514, \"AGE_65_UP\": 6058, \"MED_AGE\": 35.100000, \"MED_AGE_M\": 33.800000, \"MED_AGE_F\": 36.100000, \"HOUSEHOLDS\": 18995, \"AVE_HH_SZ\": 2.700000, \"HSEHLD_1_M\": 1605, \"HSEHLD_1_F\": 2339, \"MARHH_CHD\": 5871, \"MARHH_NO_C\": 5412, \"MHH_CHILD\": 542, \"FHH_CHILD\": 1238, \"FAMILIES\": 14112, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 20209, \"VACANT\": 1214, \"OWNER_OCC\": 15474, \"RENTER_OCC\": 3521 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -106.670656763466013, 35.28618494335619 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Roswell\", \"CLASS\": \"city\", \"ST\": \"NM\", \"STFIPS\": \"35\", \"PLACEFIP\": \"64930\", \"CAPITAL\": \"N\", \"AREALAND\": 28.937000, \"AREAWATER\": 0.018000, \"POP_CL\": 6, \"POP2000\": 45293, \"WHITE\": 32141, \"BLACK\": 1117, \"AMERI_ES\": 578, \"ASIAN\": 293, \"HAWN_PI\": 23, \"OTHER\": 9643, \"MULT_RACE\": 1498, \"HISPANIC\": 20084, \"MALES\": 21840, \"FEMALES\": 23453, \"AGE_UNDER5\": 3341, \"AGE_5_17\": 9545, \"AGE_18_21\": 2913, \"AGE_22_29\": 4176, \"AGE_30_39\": 5673, \"AGE_40_49\": 6040, \"AGE_50_64\": 6343, \"AGE_65_UP\": 7262, \"MED_AGE\": 35.200000, \"MED_AGE_M\": 33.000000, \"MED_AGE_F\": 37.100000, \"HOUSEHOLDS\": 17068, \"AVE_HH_SZ\": 2.580000, \"HSEHLD_1_M\": 1809, \"HSEHLD_1_F\": 2814, \"MARHH_CHD\": 3711, \"MARHH_NO_C\": 4669, \"MHH_CHILD\": 521, \"FHH_CHILD\": 1654, \"FAMILIES\": 11747, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 19327, \"VACANT\": 2259, \"OWNER_OCC\": 11683, \"RENTER_OCC\": 5385 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -104.528115524930982, 33.387159940927766 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Santa Fe\", \"CLASS\": \"city\", \"ST\": \"NM\", \"STFIPS\": \"35\", \"PLACEFIP\": \"70500\", \"CAPITAL\": \"Y\", \"AREALAND\": 37.334000, \"AREAWATER\": 0.075000, \"POP_CL\": 7, \"POP2000\": 62203, \"WHITE\": 47459, \"BLACK\": 409, \"AMERI_ES\": 1373, \"ASIAN\": 791, \"HAWN_PI\": 49, \"OTHER\": 9508, \"MULT_RACE\": 2614, \"HISPANIC\": 29744, \"MALES\": 29758, \"FEMALES\": 32445, \"AGE_UNDER5\": 3348, \"AGE_5_17\": 9266, \"AGE_18_21\": 3232, \"AGE_22_29\": 6450, \"AGE_30_39\": 9028, \"AGE_40_49\": 10192, \"AGE_50_64\": 12039, \"AGE_65_UP\": 8648, \"MED_AGE\": 39.800000, \"MED_AGE_M\": 37.600000, \"MED_AGE_F\": 41.800000, \"HOUSEHOLDS\": 27569, \"AVE_HH_SZ\": 2.200000, \"HSEHLD_1_M\": 3997, \"HSEHLD_1_F\": 6032, \"MARHH_CHD\": 4023, \"MARHH_NO_C\": 6350, \"MHH_CHILD\": 693, \"FHH_CHILD\": 1931, \"FAMILIES\": 14982, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 30533, \"VACANT\": 2964, \"OWNER_OCC\": 16052, \"RENTER_OCC\": 11517 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -105.964573017029139, 35.667230915718399 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Silver City\", \"CLASS\": \"town\", \"ST\": \"NM\", \"STFIPS\": \"35\", \"PLACEFIP\": \"73260\", \"CAPITAL\": \"N\", \"AREALAND\": 10.138000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10545, \"WHITE\": 7563, \"BLACK\": 91, \"AMERI_ES\": 120, \"ASIAN\": 47, \"HAWN_PI\": 5, \"OTHER\": 2364, \"MULT_RACE\": 355, \"HISPANIC\": 5529, \"MALES\": 5023, \"FEMALES\": 5522, \"AGE_UNDER5\": 713, \"AGE_5_17\": 1928, \"AGE_18_21\": 781, \"AGE_22_29\": 1026, \"AGE_30_39\": 1257, \"AGE_40_49\": 1413, \"AGE_50_64\": 1712, \"AGE_65_UP\": 1715, \"MED_AGE\": 36.900000, \"MED_AGE_M\": 34.400000, \"MED_AGE_F\": 38.800000, \"HOUSEHOLDS\": 4227, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 513, \"HSEHLD_1_F\": 767, \"MARHH_CHD\": 726, \"MARHH_NO_C\": 1161, \"MHH_CHILD\": 110, \"FHH_CHILD\": 430, \"FAMILIES\": 2729, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 4757, \"VACANT\": 530, \"OWNER_OCC\": 2674, \"RENTER_OCC\": 1553 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -108.274265227486879, 32.777943209424741 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"South Valley\", \"CLASS\": \"CDP\", \"ST\": \"NM\", \"STFIPS\": \"35\", \"PLACEFIP\": \"74520\", \"CAPITAL\": \"N\", \"AREALAND\": 29.518000, \"AREAWATER\": 0.708000, \"POP_CL\": 6, \"POP2000\": 39060, \"WHITE\": 22337, \"BLACK\": 447, \"AMERI_ES\": 782, \"ASIAN\": 128, \"HAWN_PI\": 48, \"OTHER\": 13658, \"MULT_RACE\": 1660, \"HISPANIC\": 30307, \"MALES\": 19430, \"FEMALES\": 19630, \"AGE_UNDER5\": 3075, \"AGE_5_17\": 8584, \"AGE_18_21\": 2374, \"AGE_22_29\": 3955, \"AGE_30_39\": 5704, \"AGE_40_49\": 5756, \"AGE_50_64\": 5680, \"AGE_65_UP\": 3932, \"MED_AGE\": 33.100000, \"MED_AGE_M\": 32.200000, \"MED_AGE_F\": 33.900000, \"HOUSEHOLDS\": 12820, \"AVE_HH_SZ\": 3.030000, \"HSEHLD_1_M\": 1223, \"HSEHLD_1_F\": 1162, \"MARHH_CHD\": 3161, \"MARHH_NO_C\": 3394, \"MHH_CHILD\": 530, \"FHH_CHILD\": 1135, \"FAMILIES\": 9754, \"AVE_FAM_SZ\": 3.440000, \"HSE_UNITS\": 13722, \"VACANT\": 902, \"OWNER_OCC\": 9551, \"RENTER_OCC\": 3269 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -106.68409380853177, 35.02221494664709 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sunland Park\", \"CLASS\": \"city\", \"ST\": \"NM\", \"STFIPS\": \"35\", \"PLACEFIP\": \"75640\", \"CAPITAL\": \"N\", \"AREALAND\": 10.558000, \"AREAWATER\": 0.250000, \"POP_CL\": 6, \"POP2000\": 13309, \"WHITE\": 9290, \"BLACK\": 71, \"AMERI_ES\": 108, \"ASIAN\": 9, \"HAWN_PI\": 1, \"OTHER\": 3463, \"MULT_RACE\": 367, \"HISPANIC\": 12835, \"MALES\": 6430, \"FEMALES\": 6879, \"AGE_UNDER5\": 1311, \"AGE_5_17\": 3674, \"AGE_18_21\": 954, \"AGE_22_29\": 1572, \"AGE_30_39\": 1714, \"AGE_40_49\": 1642, \"AGE_50_64\": 1440, \"AGE_65_UP\": 1002, \"MED_AGE\": 25.400000, \"MED_AGE_M\": 24.000000, \"MED_AGE_F\": 26.600000, \"HOUSEHOLDS\": 3355, \"AVE_HH_SZ\": 3.950000, \"HSEHLD_1_M\": 175, \"HSEHLD_1_F\": 156, \"MARHH_CHD\": 1330, \"MARHH_NO_C\": 782, \"MHH_CHILD\": 82, \"FHH_CHILD\": 438, \"FAMILIES\": 2968, \"AVE_FAM_SZ\": 4.240000, \"HSE_UNITS\": 3617, \"VACANT\": 262, \"OWNER_OCC\": 2301, \"RENTER_OCC\": 1054 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -106.579982825190754, 31.806718962695616 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Boulder City\", \"CLASS\": \"city\", \"ST\": \"NV\", \"STFIPS\": \"32\", \"PLACEFIP\": \"06500\", \"CAPITAL\": \"N\", \"AREALAND\": 202.640000, \"AREAWATER\": 0.021000, \"POP_CL\": 6, \"POP2000\": 14966, \"WHITE\": 14149, \"BLACK\": 107, \"AMERI_ES\": 108, \"ASIAN\": 107, \"HAWN_PI\": 24, \"OTHER\": 190, \"MULT_RACE\": 281, \"HISPANIC\": 650, \"MALES\": 7401, \"FEMALES\": 7565, \"AGE_UNDER5\": 573, \"AGE_5_17\": 2473, \"AGE_18_21\": 516, \"AGE_22_29\": 781, \"AGE_30_39\": 1615, \"AGE_40_49\": 2175, \"AGE_50_64\": 3283, \"AGE_65_UP\": 3550, \"MED_AGE\": 47.000000, \"MED_AGE_M\": 46.600000, \"MED_AGE_F\": 47.400000, \"HOUSEHOLDS\": 6385, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 866, \"HSEHLD_1_F\": 897, \"MARHH_CHD\": 1100, \"MARHH_NO_C\": 2465, \"MHH_CHILD\": 140, \"FHH_CHILD\": 267, \"FAMILIES\": 4277, \"AVE_FAM_SZ\": 2.790000, \"HSE_UNITS\": 6979, \"VACANT\": 594, \"OWNER_OCC\": 4861, \"RENTER_OCC\": 1524 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -114.885100616919686, 35.940159608118442 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Carson\", \"CLASS\": \"city\", \"ST\": \"NV\", \"STFIPS\": \"32\", \"PLACEFIP\": \"09700\", \"CAPITAL\": \"Y\", \"AREALAND\": 143.354000, \"AREAWATER\": 12.306000, \"POP_CL\": 7, \"POP2000\": 52457, \"WHITE\": 44744, \"BLACK\": 946, \"AMERI_ES\": 1259, \"ASIAN\": 930, \"HAWN_PI\": 76, \"OTHER\": 3391, \"MULT_RACE\": 1111, \"HISPANIC\": 7466, \"MALES\": 27102, \"FEMALES\": 25355, \"AGE_UNDER5\": 3289, \"AGE_5_17\": 8982, \"AGE_18_21\": 2365, \"AGE_22_29\": 4973, \"AGE_30_39\": 7710, \"AGE_40_49\": 8238, \"AGE_50_64\": 9063, \"AGE_65_UP\": 7837, \"MED_AGE\": 38.700000, \"MED_AGE_M\": 37.600000, \"MED_AGE_F\": 40.100000, \"HOUSEHOLDS\": 20171, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 2513, \"HSEHLD_1_F\": 3096, \"MARHH_CHD\": 4088, \"MARHH_NO_C\": 5992, \"MHH_CHILD\": 579, \"FHH_CHILD\": 1348, \"FAMILIES\": 13256, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 21283, \"VACANT\": 1112, \"OWNER_OCC\": 12724, \"RENTER_OCC\": 7447 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -119.750746317891583, 39.161303513195023 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Elko\", \"CLASS\": \"city\", \"ST\": \"NV\", \"STFIPS\": \"32\", \"PLACEFIP\": \"22500\", \"CAPITAL\": \"N\", \"AREALAND\": 14.487000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 16708, \"WHITE\": 13894, \"BLACK\": 62, \"AMERI_ES\": 445, \"ASIAN\": 187, \"HAWN_PI\": 20, \"OTHER\": 1609, \"MULT_RACE\": 491, \"HISPANIC\": 3528, \"MALES\": 8543, \"FEMALES\": 8165, \"AGE_UNDER5\": 1480, \"AGE_5_17\": 3587, \"AGE_18_21\": 951, \"AGE_22_29\": 1897, \"AGE_30_39\": 2613, \"AGE_40_49\": 2651, \"AGE_50_64\": 2261, \"AGE_65_UP\": 1268, \"MED_AGE\": 31.600000, \"MED_AGE_M\": 31.700000, \"MED_AGE_F\": 31.600000, \"HOUSEHOLDS\": 6200, \"AVE_HH_SZ\": 2.660000, \"HSEHLD_1_M\": 905, \"HSEHLD_1_F\": 669, \"MARHH_CHD\": 1839, \"MARHH_NO_C\": 1476, \"MHH_CHILD\": 200, \"FHH_CHILD\": 393, \"FAMILIES\": 4218, \"AVE_FAM_SZ\": 3.240000, \"HSE_UNITS\": 6948, \"VACANT\": 748, \"OWNER_OCC\": 3880, \"RENTER_OCC\": 2320 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -115.764837675338441, 40.836454915681642 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Enterprise\", \"CLASS\": \"CDP\", \"ST\": \"NV\", \"STFIPS\": \"32\", \"PLACEFIP\": \"23770\", \"CAPITAL\": \"N\", \"AREALAND\": 48.604000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14676, \"WHITE\": 12078, \"BLACK\": 464, \"AMERI_ES\": 118, \"ASIAN\": 762, \"HAWN_PI\": 80, \"OTHER\": 593, \"MULT_RACE\": 581, \"HISPANIC\": 1766, \"MALES\": 7506, \"FEMALES\": 7170, \"AGE_UNDER5\": 808, \"AGE_5_17\": 2195, \"AGE_18_21\": 709, \"AGE_22_29\": 1695, \"AGE_30_39\": 2212, \"AGE_40_49\": 2401, \"AGE_50_64\": 2989, \"AGE_65_UP\": 1667, \"MED_AGE\": 38.800000, \"MED_AGE_M\": 38.700000, \"MED_AGE_F\": 39.000000, \"HOUSEHOLDS\": 5917, \"AVE_HH_SZ\": 2.470000, \"HSEHLD_1_M\": 846, \"HSEHLD_1_F\": 631, \"MARHH_CHD\": 1089, \"MARHH_NO_C\": 1969, \"MHH_CHILD\": 139, \"FHH_CHILD\": 260, \"FAMILIES\": 3806, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 6609, \"VACANT\": 692, \"OWNER_OCC\": 3794, \"RENTER_OCC\": 2123 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -115.197707569519352, 36.031497515688656 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Gardnerville Ranchos\", \"CLASS\": \"CDP\", \"ST\": \"NV\", \"STFIPS\": \"32\", \"PLACEFIP\": \"26500\", \"CAPITAL\": \"N\", \"AREALAND\": 14.739000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11054, \"WHITE\": 10141, \"BLACK\": 30, \"AMERI_ES\": 241, \"ASIAN\": 111, \"HAWN_PI\": 14, \"OTHER\": 230, \"MULT_RACE\": 287, \"HISPANIC\": 830, \"MALES\": 5522, \"FEMALES\": 5532, \"AGE_UNDER5\": 712, \"AGE_5_17\": 2556, \"AGE_18_21\": 423, \"AGE_22_29\": 740, \"AGE_30_39\": 1658, \"AGE_40_49\": 1927, \"AGE_50_64\": 1721, \"AGE_65_UP\": 1317, \"MED_AGE\": 37.200000, \"MED_AGE_M\": 36.800000, \"MED_AGE_F\": 37.500000, \"HOUSEHOLDS\": 4003, \"AVE_HH_SZ\": 2.750000, \"HSEHLD_1_M\": 314, \"HSEHLD_1_F\": 322, \"MARHH_CHD\": 1183, \"MARHH_NO_C\": 1332, \"MHH_CHILD\": 142, \"FHH_CHILD\": 310, \"FAMILIES\": 3147, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 4123, \"VACANT\": 120, \"OWNER_OCC\": 2789, \"RENTER_OCC\": 1214 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -119.731423560254598, 38.896211037252115 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Henderson\", \"CLASS\": \"city\", \"ST\": \"NV\", \"STFIPS\": \"32\", \"PLACEFIP\": \"31900\", \"CAPITAL\": \"N\", \"AREALAND\": 79.688000, \"AREAWATER\": 0.000000, \"POP_CL\": 8, \"POP2000\": 175381, \"WHITE\": 148181, \"BLACK\": 6590, \"AMERI_ES\": 1236, \"ASIAN\": 6983, \"HAWN_PI\": 728, \"OTHER\": 5549, \"MULT_RACE\": 6114, \"HISPANIC\": 18785, \"MALES\": 87001, \"FEMALES\": 88380, \"AGE_UNDER5\": 11939, \"AGE_5_17\": 32073, \"AGE_18_21\": 7729, \"AGE_22_29\": 18842, \"AGE_30_39\": 29772, \"AGE_40_49\": 27468, \"AGE_50_64\": 29780, \"AGE_65_UP\": 17778, \"MED_AGE\": 35.900000, \"MED_AGE_M\": 35.300000, \"MED_AGE_F\": 36.400000, \"HOUSEHOLDS\": 66331, \"AVE_HH_SZ\": 2.630000, \"HSEHLD_1_M\": 6530, \"HSEHLD_1_F\": 6912, \"MARHH_CHD\": 16132, \"MARHH_NO_C\": 21254, \"MHH_CHILD\": 1748, \"FHH_CHILD\": 4013, \"FAMILIES\": 47111, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 71149, \"VACANT\": 4818, \"OWNER_OCC\": 46781, \"RENTER_OCC\": 19550 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -115.024919135553446, 36.029284201703497 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Las Vegas\", \"CLASS\": \"city\", \"ST\": \"NV\", \"STFIPS\": \"32\", \"PLACEFIP\": \"40000\", \"CAPITAL\": \"N\", \"AREALAND\": 113.305000, \"AREAWATER\": 0.051000, \"POP_CL\": 8, \"POP2000\": 478434, \"WHITE\": 334230, \"BLACK\": 49570, \"AMERI_ES\": 3570, \"ASIAN\": 22879, \"HAWN_PI\": 2145, \"OTHER\": 46643, \"MULT_RACE\": 19397, \"HISPANIC\": 112962, \"MALES\": 243077, \"FEMALES\": 235357, \"AGE_UNDER5\": 36900, \"AGE_5_17\": 87155, \"AGE_18_21\": 23072, \"AGE_22_29\": 56303, \"AGE_30_39\": 79933, \"AGE_40_49\": 67278, \"AGE_50_64\": 72496, \"AGE_65_UP\": 55297, \"MED_AGE\": 34.500000, \"MED_AGE_M\": 33.900000, \"MED_AGE_F\": 35.100000, \"HOUSEHOLDS\": 176750, \"AVE_HH_SZ\": 2.660000, \"HSEHLD_1_M\": 22607, \"HSEHLD_1_F\": 21664, \"MARHH_CHD\": 38108, \"MARHH_NO_C\": 47251, \"MHH_CHILD\": 5309, \"FHH_CHILD\": 12946, \"FAMILIES\": 117466, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 190724, \"VACANT\": 13974, \"OWNER_OCC\": 104481, \"RENTER_OCC\": 72269 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -115.221654885956411, 36.194207218520773 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"North Las Vegas\", \"CLASS\": \"city\", \"ST\": \"NV\", \"STFIPS\": \"32\", \"PLACEFIP\": \"51800\", \"CAPITAL\": \"N\", \"AREALAND\": 78.510000, \"AREAWATER\": 0.000000, \"POP_CL\": 8, \"POP2000\": 115488, \"WHITE\": 64591, \"BLACK\": 21970, \"AMERI_ES\": 943, \"ASIAN\": 3740, \"HAWN_PI\": 610, \"OTHER\": 18224, \"MULT_RACE\": 5410, \"HISPANIC\": 43435, \"MALES\": 58947, \"FEMALES\": 56541, \"AGE_UNDER5\": 11966, \"AGE_5_17\": 27224, \"AGE_18_21\": 5988, \"AGE_22_29\": 15382, \"AGE_30_39\": 21333, \"AGE_40_49\": 14378, \"AGE_50_64\": 12537, \"AGE_65_UP\": 6680, \"MED_AGE\": 28.800000, \"MED_AGE_M\": 28.500000, \"MED_AGE_F\": 29.100000, \"HOUSEHOLDS\": 34018, \"AVE_HH_SZ\": 3.360000, \"HSEHLD_1_M\": 2522, \"HSEHLD_1_F\": 2106, \"MARHH_CHD\": 11575, \"MARHH_NO_C\": 7925, \"MHH_CHILD\": 1363, \"FHH_CHILD\": 3308, \"FAMILIES\": 27119, \"AVE_FAM_SZ\": 3.670000, \"HSE_UNITS\": 36600, \"VACANT\": 2582, \"OWNER_OCC\": 23839, \"RENTER_OCC\": 10179 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -115.146200391912572, 36.228548759523555 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pahrump\", \"CLASS\": \"CDP\", \"ST\": \"NV\", \"STFIPS\": \"32\", \"PLACEFIP\": \"53800\", \"CAPITAL\": \"N\", \"AREALAND\": 297.874000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 24631, \"WHITE\": 22419, \"BLACK\": 321, \"AMERI_ES\": 318, \"ASIAN\": 210, \"HAWN_PI\": 92, \"OTHER\": 560, \"MULT_RACE\": 711, \"HISPANIC\": 1879, \"MALES\": 12461, \"FEMALES\": 12170, \"AGE_UNDER5\": 1359, \"AGE_5_17\": 4129, \"AGE_18_21\": 776, \"AGE_22_29\": 1347, \"AGE_30_39\": 2914, \"AGE_40_49\": 3380, \"AGE_50_64\": 5489, \"AGE_65_UP\": 5237, \"MED_AGE\": 45.100000, \"MED_AGE_M\": 45.100000, \"MED_AGE_F\": 45.100000, \"HOUSEHOLDS\": 10153, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 1322, \"HSEHLD_1_F\": 1066, \"MARHH_CHD\": 1775, \"MARHH_NO_C\": 4132, \"MHH_CHILD\": 257, \"FHH_CHILD\": 428, \"FAMILIES\": 7123, \"AVE_FAM_SZ\": 2.830000, \"HSE_UNITS\": 11651, \"VACANT\": 1498, \"OWNER_OCC\": 8143, \"RENTER_OCC\": 2010 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -116.011497525523311, 36.2087275326476 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Paradise\", \"CLASS\": \"CDP\", \"ST\": \"NV\", \"STFIPS\": \"32\", \"PLACEFIP\": \"54600\", \"CAPITAL\": \"N\", \"AREALAND\": 47.138000, \"AREAWATER\": 0.000000, \"POP_CL\": 8, \"POP2000\": 186070, \"WHITE\": 134927, \"BLACK\": 12260, \"AMERI_ES\": 1424, \"ASIAN\": 12135, \"HAWN_PI\": 1097, \"OTHER\": 15568, \"MULT_RACE\": 8659, \"HISPANIC\": 43663, \"MALES\": 97081, \"FEMALES\": 88989, \"AGE_UNDER5\": 12237, \"AGE_5_17\": 27128, \"AGE_18_21\": 10700, \"AGE_22_29\": 25967, \"AGE_30_39\": 31303, \"AGE_40_49\": 26954, \"AGE_50_64\": 31165, \"AGE_65_UP\": 20616, \"MED_AGE\": 35.300000, \"MED_AGE_M\": 34.900000, \"MED_AGE_F\": 35.800000, \"HOUSEHOLDS\": 77209, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 14442, \"HSEHLD_1_F\": 10199, \"MARHH_CHD\": 12463, \"MARHH_NO_C\": 18203, \"MHH_CHILD\": 2068, \"FHH_CHILD\": 4430, \"FAMILIES\": 43348, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 85398, \"VACANT\": 8189, \"OWNER_OCC\": 34705, \"RENTER_OCC\": 42504 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -115.12426904918425, 36.082110141847657 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Reno\", \"CLASS\": \"city\", \"ST\": \"NV\", \"STFIPS\": \"32\", \"PLACEFIP\": \"60600\", \"CAPITAL\": \"N\", \"AREALAND\": 69.113000, \"AREAWATER\": 0.225000, \"POP_CL\": 8, \"POP2000\": 180480, \"WHITE\": 139793, \"BLACK\": 4651, \"AMERI_ES\": 2271, \"ASIAN\": 9555, \"HAWN_PI\": 1004, \"OTHER\": 16712, \"MULT_RACE\": 6494, \"HISPANIC\": 34616, \"MALES\": 92254, \"FEMALES\": 88226, \"AGE_UNDER5\": 12626, \"AGE_5_17\": 29203, \"AGE_18_21\": 12224, \"AGE_22_29\": 23499, \"AGE_30_39\": 28287, \"AGE_40_49\": 27061, \"AGE_50_64\": 26977, \"AGE_65_UP\": 20603, \"MED_AGE\": 34.500000, \"MED_AGE_M\": 33.900000, \"MED_AGE_F\": 35.100000, \"HOUSEHOLDS\": 73904, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 12561, \"HSEHLD_1_F\": 11506, \"MARHH_CHD\": 13417, \"MARHH_NO_C\": 16540, \"MHH_CHILD\": 2019, \"FHH_CHILD\": 4974, \"FAMILIES\": 41647, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 79453, \"VACANT\": 5549, \"OWNER_OCC\": 35134, \"RENTER_OCC\": 38770 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -119.818530119548868, 39.527478481618772 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sparks\", \"CLASS\": \"city\", \"ST\": \"NV\", \"STFIPS\": \"32\", \"PLACEFIP\": \"68400\", \"CAPITAL\": \"N\", \"AREALAND\": 23.920000, \"AREAWATER\": 0.062000, \"POP_CL\": 7, \"POP2000\": 66346, \"WHITE\": 52001, \"BLACK\": 1591, \"AMERI_ES\": 780, \"ASIAN\": 3308, \"HAWN_PI\": 330, \"OTHER\": 6041, \"MULT_RACE\": 2295, \"HISPANIC\": 13068, \"MALES\": 32784, \"FEMALES\": 33562, \"AGE_UNDER5\": 4917, \"AGE_5_17\": 12921, \"AGE_18_21\": 3467, \"AGE_22_29\": 7200, \"AGE_30_39\": 10869, \"AGE_40_49\": 10375, \"AGE_50_64\": 9808, \"AGE_65_UP\": 6789, \"MED_AGE\": 34.500000, \"MED_AGE_M\": 33.500000, \"MED_AGE_F\": 35.500000, \"HOUSEHOLDS\": 24601, \"AVE_HH_SZ\": 2.670000, \"HSEHLD_1_M\": 2796, \"HSEHLD_1_F\": 3194, \"MARHH_CHD\": 6113, \"MARHH_NO_C\": 6196, \"MHH_CHILD\": 765, \"FHH_CHILD\": 1788, \"FAMILIES\": 16637, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 26025, \"VACANT\": 1424, \"OWNER_OCC\": 14698, \"RENTER_OCC\": 9903 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -119.732461599722782, 39.554898528844454 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Spring Creek\", \"CLASS\": \"CDP\", \"ST\": \"NV\", \"STFIPS\": \"32\", \"PLACEFIP\": \"68550\", \"CAPITAL\": \"N\", \"AREALAND\": 58.655000, \"AREAWATER\": 0.046000, \"POP_CL\": 6, \"POP2000\": 10548, \"WHITE\": 9816, \"BLACK\": 22, \"AMERI_ES\": 166, \"ASIAN\": 34, \"HAWN_PI\": 18, \"OTHER\": 240, \"MULT_RACE\": 252, \"HISPANIC\": 690, \"MALES\": 5403, \"FEMALES\": 5145, \"AGE_UNDER5\": 859, \"AGE_5_17\": 2847, \"AGE_18_21\": 402, \"AGE_22_29\": 859, \"AGE_30_39\": 1882, \"AGE_40_49\": 1909, \"AGE_50_64\": 1450, \"AGE_65_UP\": 340, \"MED_AGE\": 31.900000, \"MED_AGE_M\": 32.600000, \"MED_AGE_F\": 31.200000, \"HOUSEHOLDS\": 3399, \"AVE_HH_SZ\": 3.100000, \"HSEHLD_1_M\": 249, \"HSEHLD_1_F\": 126, \"MARHH_CHD\": 1489, \"MARHH_NO_C\": 1067, \"MHH_CHILD\": 123, \"FHH_CHILD\": 124, \"FAMILIES\": 2888, \"AVE_FAM_SZ\": 3.350000, \"HSE_UNITS\": 3660, \"VACANT\": 261, \"OWNER_OCC\": 3008, \"RENTER_OCC\": 391 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -115.592126642262016, 40.746648867509606 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Spring Valley\", \"CLASS\": \"CDP\", \"ST\": \"NV\", \"STFIPS\": \"32\", \"PLACEFIP\": \"68585\", \"CAPITAL\": \"N\", \"AREALAND\": 33.355000, \"AREAWATER\": 0.000000, \"POP_CL\": 8, \"POP2000\": 117390, \"WHITE\": 85224, \"BLACK\": 6214, \"AMERI_ES\": 701, \"ASIAN\": 13164, \"HAWN_PI\": 567, \"OTHER\": 6036, \"MULT_RACE\": 5484, \"HISPANIC\": 16165, \"MALES\": 58567, \"FEMALES\": 58823, \"AGE_UNDER5\": 7226, \"AGE_5_17\": 17628, \"AGE_18_21\": 5693, \"AGE_22_29\": 15507, \"AGE_30_39\": 20008, \"AGE_40_49\": 18239, \"AGE_50_64\": 20489, \"AGE_65_UP\": 12600, \"MED_AGE\": 36.300000, \"MED_AGE_M\": 35.800000, \"MED_AGE_F\": 36.800000, \"HOUSEHOLDS\": 47964, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 6181, \"HSEHLD_1_F\": 6257, \"MARHH_CHD\": 9043, \"MARHH_NO_C\": 13366, \"MHH_CHILD\": 1200, \"FHH_CHILD\": 2719, \"FAMILIES\": 29947, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 52870, \"VACANT\": 4906, \"OWNER_OCC\": 27324, \"RENTER_OCC\": 20640 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -115.249790030412868, 36.112559679737672 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sunrise Manor\", \"CLASS\": \"CDP\", \"ST\": \"NV\", \"STFIPS\": \"32\", \"PLACEFIP\": \"71400\", \"CAPITAL\": \"N\", \"AREALAND\": 38.248000, \"AREAWATER\": 0.000000, \"POP_CL\": 8, \"POP2000\": 156120, \"WHITE\": 102212, \"BLACK\": 20117, \"AMERI_ES\": 1529, \"ASIAN\": 8445, \"HAWN_PI\": 713, \"OTHER\": 15814, \"MULT_RACE\": 7290, \"HISPANIC\": 40619, \"MALES\": 77838, \"FEMALES\": 78282, \"AGE_UNDER5\": 13605, \"AGE_5_17\": 32802, \"AGE_18_21\": 8458, \"AGE_22_29\": 19093, \"AGE_30_39\": 25192, \"AGE_40_49\": 21003, \"AGE_50_64\": 21562, \"AGE_65_UP\": 14405, \"MED_AGE\": 31.600000, \"MED_AGE_M\": 31.000000, \"MED_AGE_F\": 32.200000, \"HOUSEHOLDS\": 53745, \"AVE_HH_SZ\": 2.880000, \"HSEHLD_1_M\": 5730, \"HSEHLD_1_F\": 5183, \"MARHH_CHD\": 12848, \"MARHH_NO_C\": 13664, \"MHH_CHILD\": 2041, \"FHH_CHILD\": 5499, \"FAMILIES\": 38551, \"AVE_FAM_SZ\": 3.320000, \"HSE_UNITS\": 58410, \"VACANT\": 4665, \"OWNER_OCC\": 33242, \"RENTER_OCC\": 20503 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -115.059330717518193, 36.175481023758714 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sun Valley\", \"CLASS\": \"CDP\", \"ST\": \"NV\", \"STFIPS\": \"32\", \"PLACEFIP\": \"71600\", \"CAPITAL\": \"N\", \"AREALAND\": 15.003000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 19461, \"WHITE\": 15526, \"BLACK\": 429, \"AMERI_ES\": 376, \"ASIAN\": 431, \"HAWN_PI\": 121, \"OTHER\": 1850, \"MULT_RACE\": 728, \"HISPANIC\": 4113, \"MALES\": 9830, \"FEMALES\": 9631, \"AGE_UNDER5\": 1720, \"AGE_5_17\": 4274, \"AGE_18_21\": 940, \"AGE_22_29\": 2154, \"AGE_30_39\": 3364, \"AGE_40_49\": 2808, \"AGE_50_64\": 2737, \"AGE_65_UP\": 1464, \"MED_AGE\": 32.000000, \"MED_AGE_M\": 31.600000, \"MED_AGE_F\": 32.500000, \"HOUSEHOLDS\": 6380, \"AVE_HH_SZ\": 3.050000, \"HSEHLD_1_M\": 489, \"HSEHLD_1_F\": 504, \"MARHH_CHD\": 1776, \"MARHH_NO_C\": 1688, \"MHH_CHILD\": 289, \"FHH_CHILD\": 533, \"FAMILIES\": 4817, \"AVE_FAM_SZ\": 3.390000, \"HSE_UNITS\": 6703, \"VACANT\": 323, \"OWNER_OCC\": 5163, \"RENTER_OCC\": 1217 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -119.771108668501, 39.59675181198503 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Whitney\", \"CLASS\": \"CDP\", \"ST\": \"NV\", \"STFIPS\": \"32\", \"PLACEFIP\": \"83800\", \"CAPITAL\": \"N\", \"AREALAND\": 7.492000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 18273, \"WHITE\": 13200, \"BLACK\": 1247, \"AMERI_ES\": 203, \"ASIAN\": 697, \"HAWN_PI\": 82, \"OTHER\": 2017, \"MULT_RACE\": 827, \"HISPANIC\": 4622, \"MALES\": 9349, \"FEMALES\": 8924, \"AGE_UNDER5\": 1377, \"AGE_5_17\": 3202, \"AGE_18_21\": 914, \"AGE_22_29\": 2065, \"AGE_30_39\": 3046, \"AGE_40_49\": 2636, \"AGE_50_64\": 3016, \"AGE_65_UP\": 2017, \"MED_AGE\": 35.100000, \"MED_AGE_M\": 34.500000, \"MED_AGE_F\": 35.800000, \"HOUSEHOLDS\": 7090, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 1169, \"HSEHLD_1_F\": 801, \"MARHH_CHD\": 1252, \"MARHH_NO_C\": 1782, \"MHH_CHILD\": 223, \"FHH_CHILD\": 562, \"FAMILIES\": 4505, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 7849, \"VACANT\": 759, \"OWNER_OCC\": 4669, \"RENTER_OCC\": 2421 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -115.043915302184715, 36.096509636819249 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Winchester\", \"CLASS\": \"CDP\", \"ST\": \"NV\", \"STFIPS\": \"32\", \"PLACEFIP\": \"84600\", \"CAPITAL\": \"N\", \"AREALAND\": 4.311000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 26958, \"WHITE\": 19364, \"BLACK\": 1895, \"AMERI_ES\": 234, \"ASIAN\": 1445, \"HAWN_PI\": 119, \"OTHER\": 2605, \"MULT_RACE\": 1296, \"HISPANIC\": 7820, \"MALES\": 13897, \"FEMALES\": 13061, \"AGE_UNDER5\": 1650, \"AGE_5_17\": 3692, \"AGE_18_21\": 1262, \"AGE_22_29\": 3052, \"AGE_30_39\": 4014, \"AGE_40_49\": 3785, \"AGE_50_64\": 4788, \"AGE_65_UP\": 4715, \"MED_AGE\": 39.500000, \"MED_AGE_M\": 38.100000, \"MED_AGE_F\": 41.100000, \"HOUSEHOLDS\": 11986, \"AVE_HH_SZ\": 2.240000, \"HSEHLD_1_M\": 2445, \"HSEHLD_1_F\": 2195, \"MARHH_CHD\": 1405, \"MARHH_NO_C\": 2583, \"MHH_CHILD\": 279, \"FHH_CHILD\": 739, \"FAMILIES\": 6047, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 13535, \"VACANT\": 1549, \"OWNER_OCC\": 4931, \"RENTER_OCC\": 7055 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -115.120470299438011, 36.13600813848565 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Albany\", \"CLASS\": \"city\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"01000\", \"CAPITAL\": \"Y\", \"AREALAND\": 21.378000, \"AREAWATER\": 0.465000, \"POP_CL\": 7, \"POP2000\": 95658, \"WHITE\": 60383, \"BLACK\": 26915, \"AMERI_ES\": 301, \"ASIAN\": 3116, \"HAWN_PI\": 34, \"OTHER\": 2060, \"MULT_RACE\": 2849, \"HISPANIC\": 5349, \"MALES\": 45467, \"FEMALES\": 50191, \"AGE_UNDER5\": 5384, \"AGE_5_17\": 13701, \"AGE_18_21\": 12106, \"AGE_22_29\": 14316, \"AGE_30_39\": 13930, \"AGE_40_49\": 11808, \"AGE_50_64\": 11632, \"AGE_65_UP\": 12781, \"MED_AGE\": 31.400000, \"MED_AGE_M\": 30.200000, \"MED_AGE_F\": 32.800000, \"HOUSEHOLDS\": 40709, \"AVE_HH_SZ\": 2.110000, \"HSEHLD_1_M\": 7812, \"HSEHLD_1_F\": 9263, \"MARHH_CHD\": 3963, \"MARHH_NO_C\": 6338, \"MHH_CHILD\": 713, \"FHH_CHILD\": 4285, \"FAMILIES\": 18397, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 45288, \"VACANT\": 4579, \"OWNER_OCC\": 15306, \"RENTER_OCC\": 25403 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.781485638339532, 42.659837067890912 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Amsterdam\", \"CLASS\": \"city\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"02066\", \"CAPITAL\": \"N\", \"AREALAND\": 5.947000, \"AREAWATER\": 0.339000, \"POP_CL\": 6, \"POP2000\": 18355, \"WHITE\": 16522, \"BLACK\": 399, \"AMERI_ES\": 50, \"ASIAN\": 131, \"HAWN_PI\": 4, \"OTHER\": 880, \"MULT_RACE\": 369, \"HISPANIC\": 2941, \"MALES\": 8416, \"FEMALES\": 9939, \"AGE_UNDER5\": 1218, \"AGE_5_17\": 3242, \"AGE_18_21\": 798, \"AGE_22_29\": 1660, \"AGE_30_39\": 2442, \"AGE_40_49\": 2418, \"AGE_50_64\": 2503, \"AGE_65_UP\": 4074, \"MED_AGE\": 39.200000, \"MED_AGE_M\": 37.000000, \"MED_AGE_F\": 41.600000, \"HOUSEHOLDS\": 7983, \"AVE_HH_SZ\": 2.260000, \"HSEHLD_1_M\": 1077, \"HSEHLD_1_F\": 1811, \"MARHH_CHD\": 1211, \"MARHH_NO_C\": 1931, \"MHH_CHILD\": 197, \"FHH_CHILD\": 722, \"FAMILIES\": 4689, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 9277, \"VACANT\": 1294, \"OWNER_OCC\": 4107, \"RENTER_OCC\": 3876 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.19043114259938, 42.943356143222601 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Arlington\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"02616\", \"CAPITAL\": \"N\", \"AREALAND\": 4.890000, \"AREAWATER\": 0.011000, \"POP_CL\": 6, \"POP2000\": 12481, \"WHITE\": 9611, \"BLACK\": 1532, \"AMERI_ES\": 23, \"ASIAN\": 760, \"HAWN_PI\": 5, \"OTHER\": 234, \"MULT_RACE\": 316, \"HISPANIC\": 672, \"MALES\": 5772, \"FEMALES\": 6709, \"AGE_UNDER5\": 663, \"AGE_5_17\": 1754, \"AGE_18_21\": 2410, \"AGE_22_29\": 1362, \"AGE_30_39\": 1714, \"AGE_40_49\": 1504, \"AGE_50_64\": 1515, \"AGE_65_UP\": 1559, \"MED_AGE\": 30.300000, \"MED_AGE_M\": 29.800000, \"MED_AGE_F\": 30.800000, \"HOUSEHOLDS\": 4362, \"AVE_HH_SZ\": 2.330000, \"HSEHLD_1_M\": 594, \"HSEHLD_1_F\": 882, \"MARHH_CHD\": 832, \"MARHH_NO_C\": 987, \"MHH_CHILD\": 97, \"FHH_CHILD\": 286, \"FAMILIES\": 2515, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 4590, \"VACANT\": 228, \"OWNER_OCC\": 2022, \"RENTER_OCC\": 2340 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.89218522318113, 41.694950408690453 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Auburn\", \"CLASS\": \"city\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"03078\", \"CAPITAL\": \"N\", \"AREALAND\": 8.391000, \"AREAWATER\": 0.038000, \"POP_CL\": 6, \"POP2000\": 28574, \"WHITE\": 25307, \"BLACK\": 2170, \"AMERI_ES\": 84, \"ASIAN\": 162, \"HAWN_PI\": 6, \"OTHER\": 403, \"MULT_RACE\": 442, \"HISPANIC\": 806, \"MALES\": 14212, \"FEMALES\": 14362, \"AGE_UNDER5\": 1806, \"AGE_5_17\": 4702, \"AGE_18_21\": 1481, \"AGE_22_29\": 3256, \"AGE_30_39\": 4345, \"AGE_40_49\": 4210, \"AGE_50_64\": 3678, \"AGE_65_UP\": 5096, \"MED_AGE\": 36.900000, \"MED_AGE_M\": 34.600000, \"MED_AGE_F\": 40.200000, \"HOUSEHOLDS\": 11411, \"AVE_HH_SZ\": 2.270000, \"HSEHLD_1_M\": 1568, \"HSEHLD_1_F\": 2571, \"MARHH_CHD\": 1794, \"MARHH_NO_C\": 2461, \"MHH_CHILD\": 324, \"FHH_CHILD\": 1091, \"FAMILIES\": 6536, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 12637, \"VACANT\": 1226, \"OWNER_OCC\": 5923, \"RENTER_OCC\": 5488 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.56480332012822, 42.931660817525739 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Babylon\", \"CLASS\": \"village\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"03408\", \"CAPITAL\": \"N\", \"AREALAND\": 2.414000, \"AREAWATER\": 0.345000, \"POP_CL\": 6, \"POP2000\": 12615, \"WHITE\": 11664, \"BLACK\": 339, \"AMERI_ES\": 13, \"ASIAN\": 183, \"HAWN_PI\": 1, \"OTHER\": 188, \"MULT_RACE\": 227, \"HISPANIC\": 644, \"MALES\": 6098, \"FEMALES\": 6517, \"AGE_UNDER5\": 891, \"AGE_5_17\": 2347, \"AGE_18_21\": 394, \"AGE_22_29\": 1003, \"AGE_30_39\": 2235, \"AGE_40_49\": 2274, \"AGE_50_64\": 1909, \"AGE_65_UP\": 1562, \"MED_AGE\": 37.700000, \"MED_AGE_M\": 37.000000, \"MED_AGE_F\": 38.400000, \"HOUSEHOLDS\": 4554, \"AVE_HH_SZ\": 2.710000, \"HSEHLD_1_M\": 397, \"HSEHLD_1_F\": 585, \"MARHH_CHD\": 1358, \"MARHH_NO_C\": 1355, \"MHH_CHILD\": 58, \"FHH_CHILD\": 195, \"FAMILIES\": 3325, \"AVE_FAM_SZ\": 3.200000, \"HSE_UNITS\": 4680, \"VACANT\": 126, \"OWNER_OCC\": 3470, \"RENTER_OCC\": 1084 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.329596683083096, 40.694529471602628 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Baldwin\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"04143\", \"CAPITAL\": \"N\", \"AREALAND\": 2.949000, \"AREAWATER\": 0.011000, \"POP_CL\": 6, \"POP2000\": 23455, \"WHITE\": 15442, \"BLACK\": 5368, \"AMERI_ES\": 76, \"ASIAN\": 775, \"HAWN_PI\": 6, \"OTHER\": 1078, \"MULT_RACE\": 710, \"HISPANIC\": 2721, \"MALES\": 11105, \"FEMALES\": 12350, \"AGE_UNDER5\": 1587, \"AGE_5_17\": 4530, \"AGE_18_21\": 1003, \"AGE_22_29\": 1952, \"AGE_30_39\": 3864, \"AGE_40_49\": 3870, \"AGE_50_64\": 3831, \"AGE_65_UP\": 2818, \"MED_AGE\": 37.400000, \"MED_AGE_M\": 35.900000, \"MED_AGE_F\": 38.600000, \"HOUSEHOLDS\": 7868, \"AVE_HH_SZ\": 2.980000, \"HSEHLD_1_M\": 451, \"HSEHLD_1_F\": 1005, \"MARHH_CHD\": 2473, \"MARHH_NO_C\": 2323, \"MHH_CHILD\": 100, \"FHH_CHILD\": 442, \"FAMILIES\": 6083, \"AVE_FAM_SZ\": 3.400000, \"HSE_UNITS\": 7999, \"VACANT\": 131, \"OWNER_OCC\": 6554, \"RENTER_OCC\": 1314 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.610760119238293, 40.66335476135194 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Batavia\", \"CLASS\": \"city\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"04715\", \"CAPITAL\": \"N\", \"AREALAND\": 5.187000, \"AREAWATER\": 0.065000, \"POP_CL\": 6, \"POP2000\": 16256, \"WHITE\": 14667, \"BLACK\": 883, \"AMERI_ES\": 78, \"ASIAN\": 142, \"HAWN_PI\": 4, \"OTHER\": 173, \"MULT_RACE\": 309, \"HISPANIC\": 399, \"MALES\": 7840, \"FEMALES\": 8416, \"AGE_UNDER5\": 966, \"AGE_5_17\": 2845, \"AGE_18_21\": 845, \"AGE_22_29\": 1620, \"AGE_30_39\": 2372, \"AGE_40_49\": 2306, \"AGE_50_64\": 2274, \"AGE_65_UP\": 3028, \"MED_AGE\": 37.900000, \"MED_AGE_M\": 35.800000, \"MED_AGE_F\": 39.900000, \"HOUSEHOLDS\": 6457, \"AVE_HH_SZ\": 2.340000, \"HSEHLD_1_M\": 779, \"HSEHLD_1_F\": 1396, \"MARHH_CHD\": 1194, \"MARHH_NO_C\": 1549, \"MHH_CHILD\": 155, \"FHH_CHILD\": 549, \"FAMILIES\": 3868, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 6924, \"VACANT\": 467, \"OWNER_OCC\": 3580, \"RENTER_OCC\": 2877 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -78.184128489521783, 42.998571980394729 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bay Shore\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"04935\", \"CAPITAL\": \"N\", \"AREALAND\": 5.272000, \"AREAWATER\": 0.814000, \"POP_CL\": 6, \"POP2000\": 23852, \"WHITE\": 16419, \"BLACK\": 4091, \"AMERI_ES\": 108, \"ASIAN\": 560, \"HAWN_PI\": 7, \"OTHER\": 1716, \"MULT_RACE\": 951, \"HISPANIC\": 4738, \"MALES\": 11680, \"FEMALES\": 12172, \"AGE_UNDER5\": 1634, \"AGE_5_17\": 4536, \"AGE_18_21\": 1308, \"AGE_22_29\": 2443, \"AGE_30_39\": 4060, \"AGE_40_49\": 3694, \"AGE_50_64\": 3457, \"AGE_65_UP\": 2720, \"MED_AGE\": 35.300000, \"MED_AGE_M\": 33.900000, \"MED_AGE_F\": 36.600000, \"HOUSEHOLDS\": 8194, \"AVE_HH_SZ\": 2.830000, \"HSEHLD_1_M\": 892, \"HSEHLD_1_F\": 1229, \"MARHH_CHD\": 1850, \"MARHH_NO_C\": 1986, \"MHH_CHILD\": 186, \"FHH_CHILD\": 668, \"FAMILIES\": 5533, \"AVE_FAM_SZ\": 3.400000, \"HSE_UNITS\": 8639, \"VACANT\": 445, \"OWNER_OCC\": 4892, \"RENTER_OCC\": 3302 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.253892251409866, 40.72986798343058 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Beacon\", \"CLASS\": \"city\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"05100\", \"CAPITAL\": \"N\", \"AREALAND\": 4.775000, \"AREAWATER\": 0.114000, \"POP_CL\": 6, \"POP2000\": 13808, \"WHITE\": 9440, \"BLACK\": 2713, \"AMERI_ES\": 43, \"ASIAN\": 181, \"HAWN_PI\": 0, \"OTHER\": 956, \"MULT_RACE\": 475, \"HISPANIC\": 2334, \"MALES\": 6551, \"FEMALES\": 7257, \"AGE_UNDER5\": 964, \"AGE_5_17\": 2779, \"AGE_18_21\": 544, \"AGE_22_29\": 1206, \"AGE_30_39\": 2364, \"AGE_40_49\": 2268, \"AGE_50_64\": 1993, \"AGE_65_UP\": 1690, \"MED_AGE\": 36.400000, \"MED_AGE_M\": 35.700000, \"MED_AGE_F\": 36.900000, \"HOUSEHOLDS\": 5091, \"AVE_HH_SZ\": 2.610000, \"HSEHLD_1_M\": 646, \"HSEHLD_1_F\": 810, \"MARHH_CHD\": 1114, \"MARHH_NO_C\": 1156, \"MHH_CHILD\": 117, \"FHH_CHILD\": 535, \"FAMILIES\": 3359, \"AVE_FAM_SZ\": 3.230000, \"HSE_UNITS\": 5406, \"VACANT\": 315, \"OWNER_OCC\": 2896, \"RENTER_OCC\": 2195 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.965701024635322, 41.50425003707808 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bellmore\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"05738\", \"CAPITAL\": \"N\", \"AREALAND\": 2.476000, \"AREAWATER\": 0.525000, \"POP_CL\": 6, \"POP2000\": 16441, \"WHITE\": 15784, \"BLACK\": 77, \"AMERI_ES\": 20, \"ASIAN\": 330, \"HAWN_PI\": 4, \"OTHER\": 85, \"MULT_RACE\": 141, \"HISPANIC\": 515, \"MALES\": 8039, \"FEMALES\": 8402, \"AGE_UNDER5\": 1111, \"AGE_5_17\": 3047, \"AGE_18_21\": 532, \"AGE_22_29\": 1184, \"AGE_30_39\": 2704, \"AGE_40_49\": 2754, \"AGE_50_64\": 2927, \"AGE_65_UP\": 2182, \"MED_AGE\": 38.900000, \"MED_AGE_M\": 38.000000, \"MED_AGE_F\": 39.800000, \"HOUSEHOLDS\": 5643, \"AVE_HH_SZ\": 2.910000, \"HSEHLD_1_M\": 339, \"HSEHLD_1_F\": 553, \"MARHH_CHD\": 1887, \"MARHH_NO_C\": 2019, \"MHH_CHILD\": 47, \"FHH_CHILD\": 182, \"FAMILIES\": 4602, \"AVE_FAM_SZ\": 3.260000, \"HSE_UNITS\": 5724, \"VACANT\": 81, \"OWNER_OCC\": 4979, \"RENTER_OCC\": 664 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.529152995359567, 40.661197229389373 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bethpage\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"06387\", \"CAPITAL\": \"N\", \"AREALAND\": 3.624000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 16543, \"WHITE\": 15578, \"BLACK\": 48, \"AMERI_ES\": 4, \"ASIAN\": 494, \"HAWN_PI\": 0, \"OTHER\": 165, \"MULT_RACE\": 254, \"HISPANIC\": 785, \"MALES\": 7972, \"FEMALES\": 8571, \"AGE_UNDER5\": 1016, \"AGE_5_17\": 2737, \"AGE_18_21\": 575, \"AGE_22_29\": 1312, \"AGE_30_39\": 2617, \"AGE_40_49\": 2493, \"AGE_50_64\": 2688, \"AGE_65_UP\": 3105, \"MED_AGE\": 40.100000, \"MED_AGE_M\": 38.300000, \"MED_AGE_F\": 41.800000, \"HOUSEHOLDS\": 5710, \"AVE_HH_SZ\": 2.890000, \"HSEHLD_1_M\": 298, \"HSEHLD_1_F\": 726, \"MARHH_CHD\": 1616, \"MARHH_NO_C\": 2151, \"MHH_CHILD\": 36, \"FHH_CHILD\": 170, \"FAMILIES\": 4519, \"AVE_FAM_SZ\": 3.270000, \"HSE_UNITS\": 5788, \"VACANT\": 78, \"OWNER_OCC\": 5011, \"RENTER_OCC\": 699 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.484470099415091, 40.746708508702348 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Binghamton\", \"CLASS\": \"city\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"06607\", \"CAPITAL\": \"N\", \"AREALAND\": 10.438000, \"AREAWATER\": 0.601000, \"POP_CL\": 6, \"POP2000\": 47380, \"WHITE\": 39412, \"BLACK\": 3987, \"AMERI_ES\": 121, \"ASIAN\": 1579, \"HAWN_PI\": 18, \"OTHER\": 810, \"MULT_RACE\": 1453, \"HISPANIC\": 1849, \"MALES\": 22432, \"FEMALES\": 24948, \"AGE_UNDER5\": 2882, \"AGE_5_17\": 7324, \"AGE_18_21\": 3769, \"AGE_22_29\": 5686, \"AGE_30_39\": 6153, \"AGE_40_49\": 6413, \"AGE_50_64\": 6811, \"AGE_65_UP\": 8342, \"MED_AGE\": 36.700000, \"MED_AGE_M\": 34.800000, \"MED_AGE_F\": 38.600000, \"HOUSEHOLDS\": 21089, \"AVE_HH_SZ\": 2.190000, \"HSEHLD_1_M\": 3561, \"HSEHLD_1_F\": 4934, \"MARHH_CHD\": 2667, \"MARHH_NO_C\": 3999, \"MHH_CHILD\": 415, \"FHH_CHILD\": 1838, \"FAMILIES\": 10419, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 23971, \"VACANT\": 2882, \"OWNER_OCC\": 9072, \"RENTER_OCC\": 12017 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.911843002805696, 42.102226589768748 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Brentwood\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"08026\", \"CAPITAL\": \"N\", \"AREALAND\": 10.064000, \"AREAWATER\": 0.000000, \"POP_CL\": 7, \"POP2000\": 53917, \"WHITE\": 25736, \"BLACK\": 9735, \"AMERI_ES\": 310, \"ASIAN\": 1084, \"HAWN_PI\": 61, \"OTHER\": 13719, \"MULT_RACE\": 3272, \"HISPANIC\": 29251, \"MALES\": 26979, \"FEMALES\": 26938, \"AGE_UNDER5\": 4284, \"AGE_5_17\": 11828, \"AGE_18_21\": 3236, \"AGE_22_29\": 6701, \"AGE_30_39\": 9346, \"AGE_40_49\": 7270, \"AGE_50_64\": 6805, \"AGE_65_UP\": 4447, \"MED_AGE\": 31.000000, \"MED_AGE_M\": 30.000000, \"MED_AGE_F\": 32.200000, \"HOUSEHOLDS\": 12580, \"AVE_HH_SZ\": 4.230000, \"HSEHLD_1_M\": 542, \"HSEHLD_1_F\": 659, \"MARHH_CHD\": 4350, \"MARHH_NO_C\": 3355, \"MHH_CHILD\": 471, \"FHH_CHILD\": 1040, \"FAMILIES\": 10892, \"AVE_FAM_SZ\": 4.190000, \"HSE_UNITS\": 13039, \"VACANT\": 459, \"OWNER_OCC\": 9900, \"RENTER_OCC\": 2680 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.244231594708339, 40.781816059561237 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Brighton\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"08257\", \"CAPITAL\": \"N\", \"AREALAND\": 15.447000, \"AREAWATER\": 0.172000, \"POP_CL\": 6, \"POP2000\": 35584, \"WHITE\": 30635, \"BLACK\": 1315, \"AMERI_ES\": 35, \"ASIAN\": 2892, \"HAWN_PI\": 10, \"OTHER\": 223, \"MULT_RACE\": 474, \"HISPANIC\": 831, \"MALES\": 16738, \"FEMALES\": 18846, \"AGE_UNDER5\": 1892, \"AGE_5_17\": 5225, \"AGE_18_21\": 1154, \"AGE_22_29\": 4361, \"AGE_30_39\": 5180, \"AGE_40_49\": 5300, \"AGE_50_64\": 5659, \"AGE_65_UP\": 6813, \"MED_AGE\": 40.000000, \"MED_AGE_M\": 36.900000, \"MED_AGE_F\": 42.800000, \"HOUSEHOLDS\": 15852, \"AVE_HH_SZ\": 2.140000, \"HSEHLD_1_M\": 2122, \"HSEHLD_1_F\": 3633, \"MARHH_CHD\": 3114, \"MARHH_NO_C\": 4162, \"MHH_CHILD\": 166, \"FHH_CHILD\": 641, \"FAMILIES\": 8681, \"AVE_FAM_SZ\": 2.860000, \"HSE_UNITS\": 16703, \"VACANT\": 851, \"OWNER_OCC\": 9069, \"RENTER_OCC\": 6783 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.568133518920661, 43.123363170693267 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Buffalo\", \"CLASS\": \"city\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"11000\", \"CAPITAL\": \"N\", \"AREALAND\": 40.613000, \"AREAWATER\": 11.900000, \"POP_CL\": 8, \"POP2000\": 292648, \"WHITE\": 159300, \"BLACK\": 108951, \"AMERI_ES\": 2250, \"ASIAN\": 4093, \"HAWN_PI\": 120, \"OTHER\": 10755, \"MULT_RACE\": 7179, \"HISPANIC\": 22076, \"MALES\": 137443, \"FEMALES\": 155205, \"AGE_UNDER5\": 20768, \"AGE_5_17\": 56189, \"AGE_18_21\": 19079, \"AGE_22_29\": 35293, \"AGE_30_39\": 42584, \"AGE_40_49\": 41300, \"AGE_50_64\": 38108, \"AGE_65_UP\": 39327, \"MED_AGE\": 33.600000, \"MED_AGE_M\": 31.600000, \"MED_AGE_F\": 35.300000, \"HOUSEHOLDS\": 122720, \"AVE_HH_SZ\": 2.290000, \"HSEHLD_1_M\": 20970, \"HSEHLD_1_F\": 25255, \"MARHH_CHD\": 14707, \"MARHH_NO_C\": 19181, \"MHH_CHILD\": 2677, \"FHH_CHILD\": 17687, \"FAMILIES\": 67053, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 145574, \"VACANT\": 22854, \"OWNER_OCC\": 53323, \"RENTER_OCC\": 69397 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -78.849413033881433, 42.904656876925948 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Canandaigua\", \"CLASS\": \"city\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"12144\", \"CAPITAL\": \"N\", \"AREALAND\": 4.602000, \"AREAWATER\": 0.234000, \"POP_CL\": 6, \"POP2000\": 11264, \"WHITE\": 10818, \"BLACK\": 172, \"AMERI_ES\": 25, \"ASIAN\": 74, \"HAWN_PI\": 7, \"OTHER\": 29, \"MULT_RACE\": 139, \"HISPANIC\": 115, \"MALES\": 5392, \"FEMALES\": 5872, \"AGE_UNDER5\": 655, \"AGE_5_17\": 1966, \"AGE_18_21\": 532, \"AGE_22_29\": 1091, \"AGE_30_39\": 1517, \"AGE_40_49\": 1652, \"AGE_50_64\": 1720, \"AGE_65_UP\": 2131, \"MED_AGE\": 39.300000, \"MED_AGE_M\": 37.500000, \"MED_AGE_F\": 41.000000, \"HOUSEHOLDS\": 4762, \"AVE_HH_SZ\": 2.250000, \"HSEHLD_1_M\": 611, \"HSEHLD_1_F\": 1074, \"MARHH_CHD\": 856, \"MARHH_NO_C\": 1081, \"MHH_CHILD\": 92, \"FHH_CHILD\": 344, \"FAMILIES\": 2669, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 5066, \"VACANT\": 304, \"OWNER_OCC\": 2396, \"RENTER_OCC\": 2366 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.281677742938655, 42.88611130888448 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Centereach\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"13376\", \"CAPITAL\": \"N\", \"AREALAND\": 7.956000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 27285, \"WHITE\": 25072, \"BLACK\": 539, \"AMERI_ES\": 49, \"ASIAN\": 864, \"HAWN_PI\": 2, \"OTHER\": 371, \"MULT_RACE\": 388, \"HISPANIC\": 1932, \"MALES\": 13538, \"FEMALES\": 13747, \"AGE_UNDER5\": 1870, \"AGE_5_17\": 5512, \"AGE_18_21\": 1301, \"AGE_22_29\": 2669, \"AGE_30_39\": 4689, \"AGE_40_49\": 4312, \"AGE_50_64\": 4408, \"AGE_65_UP\": 2524, \"MED_AGE\": 35.400000, \"MED_AGE_M\": 34.200000, \"MED_AGE_F\": 36.600000, \"HOUSEHOLDS\": 8176, \"AVE_HH_SZ\": 3.270000, \"HSEHLD_1_M\": 379, \"HSEHLD_1_F\": 463, \"MARHH_CHD\": 3072, \"MARHH_NO_C\": 2699, \"MHH_CHILD\": 115, \"FHH_CHILD\": 354, \"FAMILIES\": 7001, \"AVE_FAM_SZ\": 3.490000, \"HSE_UNITS\": 8329, \"VACANT\": 153, \"OWNER_OCC\": 7217, \"RENTER_OCC\": 959 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.080887858392984, 40.872187248576672 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Central Islip\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"13552\", \"CAPITAL\": \"N\", \"AREALAND\": 7.264000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 31950, \"WHITE\": 15269, \"BLACK\": 8769, \"AMERI_ES\": 167, \"ASIAN\": 991, \"HAWN_PI\": 37, \"OTHER\": 5116, \"MULT_RACE\": 1601, \"HISPANIC\": 11452, \"MALES\": 15774, \"FEMALES\": 16176, \"AGE_UNDER5\": 2476, \"AGE_5_17\": 6853, \"AGE_18_21\": 2127, \"AGE_22_29\": 3760, \"AGE_30_39\": 5455, \"AGE_40_49\": 4562, \"AGE_50_64\": 4347, \"AGE_65_UP\": 2370, \"MED_AGE\": 31.600000, \"MED_AGE_M\": 30.200000, \"MED_AGE_F\": 32.900000, \"HOUSEHOLDS\": 8792, \"AVE_HH_SZ\": 3.560000, \"HSEHLD_1_M\": 562, \"HSEHLD_1_F\": 912, \"MARHH_CHD\": 2558, \"MARHH_NO_C\": 2144, \"MHH_CHILD\": 253, \"FHH_CHILD\": 778, \"FAMILIES\": 6817, \"AVE_FAM_SZ\": 3.870000, \"HSE_UNITS\": 9189, \"VACANT\": 397, \"OWNER_OCC\": 6424, \"RENTER_OCC\": 2368 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.199237444752967, 40.784205372095784 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cheektowaga\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"15000\", \"CAPITAL\": \"N\", \"AREALAND\": 25.450000, \"AREAWATER\": 0.000000, \"POP_CL\": 7, \"POP2000\": 79988, \"WHITE\": 75487, \"BLACK\": 2683, \"AMERI_ES\": 135, \"ASIAN\": 829, \"HAWN_PI\": 6, \"OTHER\": 220, \"MULT_RACE\": 628, \"HISPANIC\": 793, \"MALES\": 37430, \"FEMALES\": 42558, \"AGE_UNDER5\": 4398, \"AGE_5_17\": 12068, \"AGE_18_21\": 3196, \"AGE_22_29\": 7526, \"AGE_30_39\": 11823, \"AGE_40_49\": 11525, \"AGE_50_64\": 12967, \"AGE_65_UP\": 16485, \"MED_AGE\": 40.800000, \"MED_AGE_M\": 38.500000, \"MED_AGE_F\": 43.000000, \"HOUSEHOLDS\": 34188, \"AVE_HH_SZ\": 2.310000, \"HSEHLD_1_M\": 3747, \"HSEHLD_1_F\": 6801, \"MARHH_CHD\": 6386, \"MARHH_NO_C\": 10420, \"MHH_CHILD\": 488, \"FHH_CHILD\": 1845, \"FAMILIES\": 21920, \"AVE_FAM_SZ\": 2.910000, \"HSE_UNITS\": 35829, \"VACANT\": 1641, \"OWNER_OCC\": 24266, \"RENTER_OCC\": 9922 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -78.759687533619328, 42.911957886363787 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cohoes\", \"CLASS\": \"city\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"16749\", \"CAPITAL\": \"N\", \"AREALAND\": 3.744000, \"AREAWATER\": 0.499000, \"POP_CL\": 6, \"POP2000\": 15521, \"WHITE\": 14767, \"BLACK\": 335, \"AMERI_ES\": 25, \"ASIAN\": 106, \"HAWN_PI\": 6, \"OTHER\": 91, \"MULT_RACE\": 191, \"HISPANIC\": 315, \"MALES\": 7182, \"FEMALES\": 8339, \"AGE_UNDER5\": 965, \"AGE_5_17\": 2519, \"AGE_18_21\": 714, \"AGE_22_29\": 1769, \"AGE_30_39\": 2288, \"AGE_40_49\": 2178, \"AGE_50_64\": 2401, \"AGE_65_UP\": 2687, \"MED_AGE\": 37.800000, \"MED_AGE_M\": 35.300000, \"MED_AGE_F\": 40.200000, \"HOUSEHOLDS\": 6932, \"AVE_HH_SZ\": 2.200000, \"HSEHLD_1_M\": 1003, \"HSEHLD_1_F\": 1629, \"MARHH_CHD\": 970, \"MARHH_NO_C\": 1554, \"MHH_CHILD\": 149, \"FHH_CHILD\": 678, \"FAMILIES\": 3863, \"AVE_FAM_SZ\": 2.910000, \"HSE_UNITS\": 7689, \"VACANT\": 757, \"OWNER_OCC\": 3109, \"RENTER_OCC\": 3823 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.703263463604827, 42.773258503953095 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Commack\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"17530\", \"CAPITAL\": \"N\", \"AREALAND\": 12.062000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 36367, \"WHITE\": 34343, \"BLACK\": 231, \"AMERI_ES\": 14, \"ASIAN\": 1367, \"HAWN_PI\": 0, \"OTHER\": 173, \"MULT_RACE\": 239, \"HISPANIC\": 1055, \"MALES\": 17759, \"FEMALES\": 18608, \"AGE_UNDER5\": 2794, \"AGE_5_17\": 6787, \"AGE_18_21\": 1083, \"AGE_22_29\": 2293, \"AGE_30_39\": 6146, \"AGE_40_49\": 5755, \"AGE_50_64\": 6393, \"AGE_65_UP\": 5116, \"MED_AGE\": 38.700000, \"MED_AGE_M\": 38.000000, \"MED_AGE_F\": 39.500000, \"HOUSEHOLDS\": 11697, \"AVE_HH_SZ\": 3.060000, \"HSEHLD_1_M\": 438, \"HSEHLD_1_F\": 804, \"MARHH_CHD\": 4390, \"MARHH_NO_C\": 4580, \"MHH_CHILD\": 81, \"FHH_CHILD\": 295, \"FAMILIES\": 10172, \"AVE_FAM_SZ\": 3.290000, \"HSE_UNITS\": 11824, \"VACANT\": 127, \"OWNER_OCC\": 10887, \"RENTER_OCC\": 810 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.283364969014158, 40.84504780607557 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Copiague\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"18146\", \"CAPITAL\": \"N\", \"AREALAND\": 3.190000, \"AREAWATER\": 0.485000, \"POP_CL\": 6, \"POP2000\": 21922, \"WHITE\": 17976, \"BLACK\": 960, \"AMERI_ES\": 42, \"ASIAN\": 382, \"HAWN_PI\": 16, \"OTHER\": 1859, \"MULT_RACE\": 687, \"HISPANIC\": 4489, \"MALES\": 10929, \"FEMALES\": 10993, \"AGE_UNDER5\": 1426, \"AGE_5_17\": 3672, \"AGE_18_21\": 1010, \"AGE_22_29\": 2411, \"AGE_30_39\": 3811, \"AGE_40_49\": 3583, \"AGE_50_64\": 3382, \"AGE_65_UP\": 2627, \"MED_AGE\": 36.600000, \"MED_AGE_M\": 35.600000, \"MED_AGE_F\": 37.700000, \"HOUSEHOLDS\": 7210, \"AVE_HH_SZ\": 3.030000, \"HSEHLD_1_M\": 593, \"HSEHLD_1_F\": 816, \"MARHH_CHD\": 1885, \"MARHH_NO_C\": 2195, \"MHH_CHILD\": 118, \"FHH_CHILD\": 338, \"FAMILIES\": 5341, \"AVE_FAM_SZ\": 3.420000, \"HSE_UNITS\": 7415, \"VACANT\": 205, \"OWNER_OCC\": 5507, \"RENTER_OCC\": 1703 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.393393423326017, 40.674710058168607 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Coram\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"18157\", \"CAPITAL\": \"N\", \"AREALAND\": 13.792000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 34923, \"WHITE\": 28757, \"BLACK\": 3024, \"AMERI_ES\": 93, \"ASIAN\": 1161, \"HAWN_PI\": 7, \"OTHER\": 1089, \"MULT_RACE\": 792, \"HISPANIC\": 3314, \"MALES\": 16834, \"FEMALES\": 18089, \"AGE_UNDER5\": 2643, \"AGE_5_17\": 6110, \"AGE_18_21\": 1443, \"AGE_22_29\": 3995, \"AGE_30_39\": 6281, \"AGE_40_49\": 5274, \"AGE_50_64\": 5918, \"AGE_65_UP\": 3259, \"MED_AGE\": 35.200000, \"MED_AGE_M\": 34.200000, \"MED_AGE_F\": 36.100000, \"HOUSEHOLDS\": 12530, \"AVE_HH_SZ\": 2.750000, \"HSEHLD_1_M\": 1101, \"HSEHLD_1_F\": 1563, \"MARHH_CHD\": 3524, \"MARHH_NO_C\": 3735, \"MHH_CHILD\": 187, \"FHH_CHILD\": 714, \"FAMILIES\": 9128, \"AVE_FAM_SZ\": 3.220000, \"HSE_UNITS\": 12880, \"VACANT\": 350, \"OWNER_OCC\": 8641, \"RENTER_OCC\": 3889 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.01062855913537, 40.890451788483453 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Corning\", \"CLASS\": \"city\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"18256\", \"CAPITAL\": \"N\", \"AREALAND\": 3.107000, \"AREAWATER\": 0.170000, \"POP_CL\": 6, \"POP2000\": 10842, \"WHITE\": 10185, \"BLACK\": 308, \"AMERI_ES\": 37, \"ASIAN\": 162, \"HAWN_PI\": 1, \"OTHER\": 26, \"MULT_RACE\": 123, \"HISPANIC\": 86, \"MALES\": 5059, \"FEMALES\": 5783, \"AGE_UNDER5\": 705, \"AGE_5_17\": 1817, \"AGE_18_21\": 506, \"AGE_22_29\": 1175, \"AGE_30_39\": 1617, \"AGE_40_49\": 1557, \"AGE_50_64\": 1530, \"AGE_65_UP\": 1935, \"MED_AGE\": 37.500000, \"MED_AGE_M\": 35.700000, \"MED_AGE_F\": 39.200000, \"HOUSEHOLDS\": 4996, \"AVE_HH_SZ\": 2.140000, \"HSEHLD_1_M\": 830, \"HSEHLD_1_F\": 1174, \"MARHH_CHD\": 788, \"MARHH_NO_C\": 1090, \"MHH_CHILD\": 112, \"FHH_CHILD\": 408, \"FAMILIES\": 2669, \"AVE_FAM_SZ\": 2.890000, \"HSE_UNITS\": 5509, \"VACANT\": 513, \"OWNER_OCC\": 2615, \"RENTER_OCC\": 2381 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.056993798583775, 42.148142451315699 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cortland\", \"CLASS\": \"city\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"18388\", \"CAPITAL\": \"N\", \"AREALAND\": 3.922000, \"AREAWATER\": 0.015000, \"POP_CL\": 6, \"POP2000\": 18740, \"WHITE\": 17937, \"BLACK\": 292, \"AMERI_ES\": 46, \"ASIAN\": 107, \"HAWN_PI\": 3, \"OTHER\": 105, \"MULT_RACE\": 250, \"HISPANIC\": 322, \"MALES\": 8792, \"FEMALES\": 9948, \"AGE_UNDER5\": 998, \"AGE_5_17\": 2434, \"AGE_18_21\": 3897, \"AGE_22_29\": 2538, \"AGE_30_39\": 2234, \"AGE_40_49\": 2122, \"AGE_50_64\": 2099, \"AGE_65_UP\": 2418, \"MED_AGE\": 27.800000, \"MED_AGE_M\": 27.000000, \"MED_AGE_F\": 28.500000, \"HOUSEHOLDS\": 6922, \"AVE_HH_SZ\": 2.280000, \"HSEHLD_1_M\": 992, \"HSEHLD_1_F\": 1502, \"MARHH_CHD\": 1020, \"MARHH_NO_C\": 1382, \"MHH_CHILD\": 177, \"FHH_CHILD\": 521, \"FAMILIES\": 3457, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 7550, \"VACANT\": 628, \"OWNER_OCC\": 3023, \"RENTER_OCC\": 3899 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.181324711530635, 42.600659228864188 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Deer Park\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"19972\", \"CAPITAL\": \"N\", \"AREALAND\": 6.258000, \"AREAWATER\": 0.004000, \"POP_CL\": 6, \"POP2000\": 28316, \"WHITE\": 23618, \"BLACK\": 2577, \"AMERI_ES\": 63, \"ASIAN\": 814, \"HAWN_PI\": 3, \"OTHER\": 588, \"MULT_RACE\": 653, \"HISPANIC\": 2139, \"MALES\": 13740, \"FEMALES\": 14576, \"AGE_UNDER5\": 1974, \"AGE_5_17\": 5163, \"AGE_18_21\": 1050, \"AGE_22_29\": 2565, \"AGE_30_39\": 5051, \"AGE_40_49\": 4063, \"AGE_50_64\": 4430, \"AGE_65_UP\": 4020, \"MED_AGE\": 37.000000, \"MED_AGE_M\": 35.400000, \"MED_AGE_F\": 38.400000, \"HOUSEHOLDS\": 9516, \"AVE_HH_SZ\": 2.970000, \"HSEHLD_1_M\": 597, \"HSEHLD_1_F\": 1124, \"MARHH_CHD\": 2761, \"MARHH_NO_C\": 3202, \"MHH_CHILD\": 111, \"FHH_CHILD\": 395, \"FAMILIES\": 7427, \"AVE_FAM_SZ\": 3.370000, \"HSE_UNITS\": 9698, \"VACANT\": 182, \"OWNER_OCC\": 7751, \"RENTER_OCC\": 1765 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.330236284645224, 40.760708479592168 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Depew\", \"CLASS\": \"village\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"20313\", \"CAPITAL\": \"N\", \"AREALAND\": 5.067000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 16629, \"WHITE\": 16286, \"BLACK\": 105, \"AMERI_ES\": 32, \"ASIAN\": 67, \"HAWN_PI\": 2, \"OTHER\": 30, \"MULT_RACE\": 107, \"HISPANIC\": 122, \"MALES\": 8005, \"FEMALES\": 8624, \"AGE_UNDER5\": 906, \"AGE_5_17\": 2754, \"AGE_18_21\": 679, \"AGE_22_29\": 1527, \"AGE_30_39\": 2503, \"AGE_40_49\": 2499, \"AGE_50_64\": 2890, \"AGE_65_UP\": 2871, \"MED_AGE\": 39.800000, \"MED_AGE_M\": 38.100000, \"MED_AGE_F\": 41.300000, \"HOUSEHOLDS\": 6832, \"AVE_HH_SZ\": 2.430000, \"HSEHLD_1_M\": 763, \"HSEHLD_1_F\": 1101, \"MARHH_CHD\": 1372, \"MARHH_NO_C\": 2158, \"MHH_CHILD\": 111, \"FHH_CHILD\": 386, \"FAMILIES\": 4623, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 7101, \"VACANT\": 269, \"OWNER_OCC\": 4980, \"RENTER_OCC\": 1852 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -78.701608869061999, 42.911757893220972 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Dix Hills\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"20687\", \"CAPITAL\": \"N\", \"AREALAND\": 15.945000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 26024, \"WHITE\": 22566, \"BLACK\": 846, \"AMERI_ES\": 14, \"ASIAN\": 1916, \"HAWN_PI\": 4, \"OTHER\": 218, \"MULT_RACE\": 460, \"HISPANIC\": 995, \"MALES\": 12894, \"FEMALES\": 13130, \"AGE_UNDER5\": 1903, \"AGE_5_17\": 5502, \"AGE_18_21\": 840, \"AGE_22_29\": 1593, \"AGE_30_39\": 3669, \"AGE_40_49\": 4529, \"AGE_50_64\": 5351, \"AGE_65_UP\": 2637, \"MED_AGE\": 39.000000, \"MED_AGE_M\": 38.500000, \"MED_AGE_F\": 39.300000, \"HOUSEHOLDS\": 7952, \"AVE_HH_SZ\": 3.250000, \"HSEHLD_1_M\": 230, \"HSEHLD_1_F\": 335, \"MARHH_CHD\": 3290, \"MARHH_NO_C\": 3238, \"MHH_CHILD\": 77, \"FHH_CHILD\": 199, \"FAMILIES\": 7236, \"AVE_FAM_SZ\": 3.390000, \"HSE_UNITS\": 8057, \"VACANT\": 105, \"OWNER_OCC\": 7667, \"RENTER_OCC\": 285 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.334590281464457, 40.796075457574965 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Dobbs Ferry\", \"CLASS\": \"village\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"20698\", \"CAPITAL\": \"N\", \"AREALAND\": 2.442000, \"AREAWATER\": 0.727000, \"POP_CL\": 6, \"POP2000\": 10622, \"WHITE\": 8572, \"BLACK\": 784, \"AMERI_ES\": 8, \"ASIAN\": 803, \"HAWN_PI\": 10, \"OTHER\": 205, \"MULT_RACE\": 240, \"HISPANIC\": 744, \"MALES\": 5193, \"FEMALES\": 5429, \"AGE_UNDER5\": 565, \"AGE_5_17\": 2194, \"AGE_18_21\": 482, \"AGE_22_29\": 829, \"AGE_30_39\": 1469, \"AGE_40_49\": 1791, \"AGE_50_64\": 1682, \"AGE_65_UP\": 1610, \"MED_AGE\": 38.600000, \"MED_AGE_M\": 36.300000, \"MED_AGE_F\": 40.700000, \"HOUSEHOLDS\": 3792, \"AVE_HH_SZ\": 2.550000, \"HSEHLD_1_M\": 438, \"HSEHLD_1_F\": 607, \"MARHH_CHD\": 1058, \"MARHH_NO_C\": 1019, \"MHH_CHILD\": 48, \"FHH_CHILD\": 202, \"FAMILIES\": 2570, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 3941, \"VACANT\": 149, \"OWNER_OCC\": 2219, \"RENTER_OCC\": 1573 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.866153686249547, 41.012736464094957 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Dunkirk\", \"CLASS\": \"city\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"21105\", \"CAPITAL\": \"N\", \"AREALAND\": 4.529000, \"AREAWATER\": 0.043000, \"POP_CL\": 6, \"POP2000\": 13131, \"WHITE\": 10857, \"BLACK\": 665, \"AMERI_ES\": 68, \"ASIAN\": 30, \"HAWN_PI\": 5, \"OTHER\": 1200, \"MULT_RACE\": 306, \"HISPANIC\": 2608, \"MALES\": 6251, \"FEMALES\": 6880, \"AGE_UNDER5\": 834, \"AGE_5_17\": 2490, \"AGE_18_21\": 696, \"AGE_22_29\": 1264, \"AGE_30_39\": 1746, \"AGE_40_49\": 1887, \"AGE_50_64\": 1897, \"AGE_65_UP\": 2317, \"MED_AGE\": 37.300000, \"MED_AGE_M\": 35.100000, \"MED_AGE_F\": 39.500000, \"HOUSEHOLDS\": 5477, \"AVE_HH_SZ\": 2.370000, \"HSEHLD_1_M\": 717, \"HSEHLD_1_F\": 1110, \"MARHH_CHD\": 875, \"MARHH_NO_C\": 1283, \"MHH_CHILD\": 121, \"FHH_CHILD\": 548, \"FAMILIES\": 3338, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 6071, \"VACANT\": 594, \"OWNER_OCC\": 3345, \"RENTER_OCC\": 2132 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.329823636868653, 42.482958849915981 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Eastchester\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"21809\", \"CAPITAL\": \"N\", \"AREALAND\": 3.349000, \"AREAWATER\": 0.096000, \"POP_CL\": 6, \"POP2000\": 18564, \"WHITE\": 16748, \"BLACK\": 175, \"AMERI_ES\": 12, \"ASIAN\": 1222, \"HAWN_PI\": 4, \"OTHER\": 175, \"MULT_RACE\": 228, \"HISPANIC\": 661, \"MALES\": 8631, \"FEMALES\": 9933, \"AGE_UNDER5\": 1212, \"AGE_5_17\": 2904, \"AGE_18_21\": 482, \"AGE_22_29\": 1213, \"AGE_30_39\": 2934, \"AGE_40_49\": 2941, \"AGE_50_64\": 3253, \"AGE_65_UP\": 3625, \"MED_AGE\": 41.600000, \"MED_AGE_M\": 40.000000, \"MED_AGE_F\": 43.100000, \"HOUSEHOLDS\": 7687, \"AVE_HH_SZ\": 2.410000, \"HSEHLD_1_M\": 712, \"HSEHLD_1_F\": 1618, \"MARHH_CHD\": 1926, \"MARHH_NO_C\": 2384, \"MHH_CHILD\": 55, \"FHH_CHILD\": 239, \"FAMILIES\": 5127, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 7919, \"VACANT\": 232, \"OWNER_OCC\": 6002, \"RENTER_OCC\": 1685 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.80885000006532, 40.95843374374315 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"East Islip\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"22315\", \"CAPITAL\": \"N\", \"AREALAND\": 4.106000, \"AREAWATER\": 0.252000, \"POP_CL\": 6, \"POP2000\": 14078, \"WHITE\": 13543, \"BLACK\": 80, \"AMERI_ES\": 9, \"ASIAN\": 198, \"HAWN_PI\": 3, \"OTHER\": 135, \"MULT_RACE\": 110, \"HISPANIC\": 547, \"MALES\": 6866, \"FEMALES\": 7212, \"AGE_UNDER5\": 1027, \"AGE_5_17\": 2985, \"AGE_18_21\": 517, \"AGE_22_29\": 988, \"AGE_30_39\": 2489, \"AGE_40_49\": 2440, \"AGE_50_64\": 1967, \"AGE_65_UP\": 1665, \"MED_AGE\": 36.600000, \"MED_AGE_M\": 36.000000, \"MED_AGE_F\": 37.100000, \"HOUSEHOLDS\": 4578, \"AVE_HH_SZ\": 3.030000, \"HSEHLD_1_M\": 264, \"HSEHLD_1_F\": 433, \"MARHH_CHD\": 1705, \"MARHH_NO_C\": 1408, \"MHH_CHILD\": 59, \"FHH_CHILD\": 201, \"FAMILIES\": 3732, \"AVE_FAM_SZ\": 3.380000, \"HSE_UNITS\": 4661, \"VACANT\": 83, \"OWNER_OCC\": 3898, \"RENTER_OCC\": 680 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.185311091501347, 40.731949459504797 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"East Massapequa\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"22480\", \"CAPITAL\": \"N\", \"AREALAND\": 3.498000, \"AREAWATER\": 0.089000, \"POP_CL\": 6, \"POP2000\": 19565, \"WHITE\": 15812, \"BLACK\": 2415, \"AMERI_ES\": 40, \"ASIAN\": 437, \"HAWN_PI\": 5, \"OTHER\": 484, \"MULT_RACE\": 372, \"HISPANIC\": 1466, \"MALES\": 9450, \"FEMALES\": 10115, \"AGE_UNDER5\": 1355, \"AGE_5_17\": 3558, \"AGE_18_21\": 694, \"AGE_22_29\": 1695, \"AGE_30_39\": 3279, \"AGE_40_49\": 3091, \"AGE_50_64\": 3105, \"AGE_65_UP\": 2788, \"MED_AGE\": 37.800000, \"MED_AGE_M\": 36.400000, \"MED_AGE_F\": 39.100000, \"HOUSEHOLDS\": 6432, \"AVE_HH_SZ\": 3.000000, \"HSEHLD_1_M\": 371, \"HSEHLD_1_F\": 682, \"MARHH_CHD\": 2016, \"MARHH_NO_C\": 2139, \"MHH_CHILD\": 71, \"FHH_CHILD\": 264, \"FAMILIES\": 5106, \"AVE_FAM_SZ\": 3.370000, \"HSE_UNITS\": 6535, \"VACANT\": 103, \"OWNER_OCC\": 5441, \"RENTER_OCC\": 991 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.4361181051936, 40.674015791357192 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"East Meadow\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"22502\", \"CAPITAL\": \"N\", \"AREALAND\": 6.291000, \"AREAWATER\": 0.012000, \"POP_CL\": 6, \"POP2000\": 37461, \"WHITE\": 31949, \"BLACK\": 1617, \"AMERI_ES\": 55, \"ASIAN\": 2503, \"HAWN_PI\": 14, \"OTHER\": 734, \"MULT_RACE\": 589, \"HISPANIC\": 2626, \"MALES\": 18594, \"FEMALES\": 18867, \"AGE_UNDER5\": 2264, \"AGE_5_17\": 6494, \"AGE_18_21\": 1642, \"AGE_22_29\": 3328, \"AGE_30_39\": 5917, \"AGE_40_49\": 6266, \"AGE_50_64\": 5451, \"AGE_65_UP\": 6099, \"MED_AGE\": 38.600000, \"MED_AGE_M\": 36.900000, \"MED_AGE_F\": 40.400000, \"HOUSEHOLDS\": 12186, \"AVE_HH_SZ\": 2.940000, \"HSEHLD_1_M\": 640, \"HSEHLD_1_F\": 1536, \"MARHH_CHD\": 3928, \"MARHH_NO_C\": 4261, \"MHH_CHILD\": 78, \"FHH_CHILD\": 359, \"FAMILIES\": 9649, \"AVE_FAM_SZ\": 3.340000, \"HSE_UNITS\": 12375, \"VACANT\": 189, \"OWNER_OCC\": 10706, \"RENTER_OCC\": 1480 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.555969499395161, 40.71374808131074 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"East Northport\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"22612\", \"CAPITAL\": \"N\", \"AREALAND\": 5.861000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 20845, \"WHITE\": 19745, \"BLACK\": 189, \"AMERI_ES\": 26, \"ASIAN\": 475, \"HAWN_PI\": 6, \"OTHER\": 146, \"MULT_RACE\": 258, \"HISPANIC\": 814, \"MALES\": 10291, \"FEMALES\": 10554, \"AGE_UNDER5\": 1604, \"AGE_5_17\": 3714, \"AGE_18_21\": 614, \"AGE_22_29\": 1580, \"AGE_30_39\": 3713, \"AGE_40_49\": 3419, \"AGE_50_64\": 3330, \"AGE_65_UP\": 2871, \"MED_AGE\": 38.100000, \"MED_AGE_M\": 37.400000, \"MED_AGE_F\": 38.800000, \"HOUSEHOLDS\": 6967, \"AVE_HH_SZ\": 2.900000, \"HSEHLD_1_M\": 435, \"HSEHLD_1_F\": 662, \"MARHH_CHD\": 2304, \"MARHH_NO_C\": 2315, \"MHH_CHILD\": 82, \"FHH_CHILD\": 270, \"FAMILIES\": 5554, \"AVE_FAM_SZ\": 3.240000, \"HSE_UNITS\": 7086, \"VACANT\": 119, \"OWNER_OCC\": 5950, \"RENTER_OCC\": 1017 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.32429894135727, 40.879258540143574 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"East Patchogue\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"22733\", \"CAPITAL\": \"N\", \"AREALAND\": 8.317000, \"AREAWATER\": 0.156000, \"POP_CL\": 6, \"POP2000\": 20824, \"WHITE\": 18633, \"BLACK\": 665, \"AMERI_ES\": 29, \"ASIAN\": 405, \"HAWN_PI\": 3, \"OTHER\": 676, \"MULT_RACE\": 413, \"HISPANIC\": 1895, \"MALES\": 10132, \"FEMALES\": 10692, \"AGE_UNDER5\": 1300, \"AGE_5_17\": 3516, \"AGE_18_21\": 846, \"AGE_22_29\": 2150, \"AGE_30_39\": 3314, \"AGE_40_49\": 3181, \"AGE_50_64\": 3415, \"AGE_65_UP\": 3102, \"MED_AGE\": 38.100000, \"MED_AGE_M\": 36.500000, \"MED_AGE_F\": 39.700000, \"HOUSEHOLDS\": 7493, \"AVE_HH_SZ\": 2.710000, \"HSEHLD_1_M\": 619, \"HSEHLD_1_F\": 1130, \"MARHH_CHD\": 1912, \"MARHH_NO_C\": 2331, \"MHH_CHILD\": 117, \"FHH_CHILD\": 326, \"FAMILIES\": 5294, \"AVE_FAM_SZ\": 3.210000, \"HSE_UNITS\": 7760, \"VACANT\": 267, \"OWNER_OCC\": 4992, \"RENTER_OCC\": 2501 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -72.983337715167437, 40.768421973242951 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"East Rockaway\", \"CLASS\": \"village\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"22876\", \"CAPITAL\": \"N\", \"AREALAND\": 1.022000, \"AREAWATER\": 0.006000, \"POP_CL\": 6, \"POP2000\": 10414, \"WHITE\": 9960, \"BLACK\": 64, \"AMERI_ES\": 3, \"ASIAN\": 178, \"HAWN_PI\": 1, \"OTHER\": 113, \"MULT_RACE\": 95, \"HISPANIC\": 603, \"MALES\": 4941, \"FEMALES\": 5473, \"AGE_UNDER5\": 674, \"AGE_5_17\": 1798, \"AGE_18_21\": 367, \"AGE_22_29\": 814, \"AGE_30_39\": 1763, \"AGE_40_49\": 1685, \"AGE_50_64\": 1706, \"AGE_65_UP\": 1607, \"MED_AGE\": 38.900000, \"MED_AGE_M\": 37.800000, \"MED_AGE_F\": 39.800000, \"HOUSEHOLDS\": 3926, \"AVE_HH_SZ\": 2.620000, \"HSEHLD_1_M\": 369, \"HSEHLD_1_F\": 646, \"MARHH_CHD\": 1101, \"MARHH_NO_C\": 1233, \"MHH_CHILD\": 38, \"FHH_CHILD\": 140, \"FAMILIES\": 2786, \"AVE_FAM_SZ\": 3.200000, \"HSE_UNITS\": 4003, \"VACANT\": 77, \"OWNER_OCC\": 2799, \"RENTER_OCC\": 1127 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.66706401230546, 40.643750447329033 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Elmira\", \"CLASS\": \"city\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"24229\", \"CAPITAL\": \"N\", \"AREALAND\": 7.315000, \"AREAWATER\": 0.269000, \"POP_CL\": 6, \"POP2000\": 30940, \"WHITE\": 25379, \"BLACK\": 4039, \"AMERI_ES\": 120, \"ASIAN\": 151, \"HAWN_PI\": 9, \"OTHER\": 425, \"MULT_RACE\": 817, \"HISPANIC\": 970, \"MALES\": 15564, \"FEMALES\": 15376, \"AGE_UNDER5\": 2168, \"AGE_5_17\": 5595, \"AGE_18_21\": 2540, \"AGE_22_29\": 3611, \"AGE_30_39\": 4745, \"AGE_40_49\": 4287, \"AGE_50_64\": 3724, \"AGE_65_UP\": 4270, \"MED_AGE\": 33.400000, \"MED_AGE_M\": 32.100000, \"MED_AGE_F\": 35.400000, \"HOUSEHOLDS\": 11475, \"AVE_HH_SZ\": 2.370000, \"HSEHLD_1_M\": 1602, \"HSEHLD_1_F\": 2356, \"MARHH_CHD\": 1773, \"MARHH_NO_C\": 2279, \"MHH_CHILD\": 324, \"FHH_CHILD\": 1469, \"FAMILIES\": 6701, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 12895, \"VACANT\": 1420, \"OWNER_OCC\": 5546, \"RENTER_OCC\": 5929 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.809586462159729, 42.089874624085404 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Elmont\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"24273\", \"CAPITAL\": \"N\", \"AREALAND\": 3.405000, \"AREAWATER\": 0.003000, \"POP_CL\": 6, \"POP2000\": 32657, \"WHITE\": 14878, \"BLACK\": 11329, \"AMERI_ES\": 142, \"ASIAN\": 2968, \"HAWN_PI\": 27, \"OTHER\": 1859, \"MULT_RACE\": 1454, \"HISPANIC\": 4672, \"MALES\": 15494, \"FEMALES\": 17163, \"AGE_UNDER5\": 2052, \"AGE_5_17\": 6583, \"AGE_18_21\": 1650, \"AGE_22_29\": 3207, \"AGE_30_39\": 5166, \"AGE_40_49\": 5174, \"AGE_50_64\": 4740, \"AGE_65_UP\": 4085, \"MED_AGE\": 35.900000, \"MED_AGE_M\": 34.100000, \"MED_AGE_F\": 37.300000, \"HOUSEHOLDS\": 9902, \"AVE_HH_SZ\": 3.290000, \"HSEHLD_1_M\": 647, \"HSEHLD_1_F\": 1075, \"MARHH_CHD\": 2991, \"MARHH_NO_C\": 2647, \"MHH_CHILD\": 174, \"FHH_CHILD\": 718, \"FAMILIES\": 7838, \"AVE_FAM_SZ\": 3.680000, \"HSE_UNITS\": 10151, \"VACANT\": 249, \"OWNER_OCC\": 7735, \"RENTER_OCC\": 2167 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.702594055591788, 40.701649263808626 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Elwood\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"24405\", \"CAPITAL\": \"N\", \"AREALAND\": 4.825000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10916, \"WHITE\": 9390, \"BLACK\": 612, \"AMERI_ES\": 24, \"ASIAN\": 611, \"HAWN_PI\": 3, \"OTHER\": 148, \"MULT_RACE\": 128, \"HISPANIC\": 550, \"MALES\": 5332, \"FEMALES\": 5584, \"AGE_UNDER5\": 815, \"AGE_5_17\": 2029, \"AGE_18_21\": 353, \"AGE_22_29\": 768, \"AGE_30_39\": 1857, \"AGE_40_49\": 1746, \"AGE_50_64\": 1924, \"AGE_65_UP\": 1424, \"MED_AGE\": 38.300000, \"MED_AGE_M\": 37.500000, \"MED_AGE_F\": 39.000000, \"HOUSEHOLDS\": 3435, \"AVE_HH_SZ\": 3.150000, \"HSEHLD_1_M\": 146, \"HSEHLD_1_F\": 202, \"MARHH_CHD\": 1217, \"MARHH_NO_C\": 1355, \"MHH_CHILD\": 28, \"FHH_CHILD\": 109, \"FAMILIES\": 2984, \"AVE_FAM_SZ\": 3.360000, \"HSE_UNITS\": 3493, \"VACANT\": 58, \"OWNER_OCC\": 3219, \"RENTER_OCC\": 216 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.335349709375791, 40.845675461589813 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Endicott\", \"CLASS\": \"village\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"24515\", \"CAPITAL\": \"N\", \"AREALAND\": 3.137000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 13038, \"WHITE\": 11949, \"BLACK\": 489, \"AMERI_ES\": 33, \"ASIAN\": 255, \"HAWN_PI\": 9, \"OTHER\": 87, \"MULT_RACE\": 216, \"HISPANIC\": 218, \"MALES\": 6149, \"FEMALES\": 6889, \"AGE_UNDER5\": 812, \"AGE_5_17\": 2036, \"AGE_18_21\": 639, \"AGE_22_29\": 1591, \"AGE_30_39\": 1995, \"AGE_40_49\": 1773, \"AGE_50_64\": 1745, \"AGE_65_UP\": 2447, \"MED_AGE\": 37.400000, \"MED_AGE_M\": 35.400000, \"MED_AGE_F\": 39.400000, \"HOUSEHOLDS\": 5996, \"AVE_HH_SZ\": 2.090000, \"HSEHLD_1_M\": 1100, \"HSEHLD_1_F\": 1397, \"MARHH_CHD\": 804, \"MARHH_NO_C\": 1137, \"MHH_CHILD\": 158, \"FHH_CHILD\": 513, \"FAMILIES\": 3017, \"AVE_FAM_SZ\": 2.880000, \"HSE_UNITS\": 6686, \"VACANT\": 690, \"OWNER_OCC\": 2452, \"RENTER_OCC\": 3544 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.054729457641017, 42.103075392615452 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Endwell\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"24526\", \"CAPITAL\": \"N\", \"AREALAND\": 3.682000, \"AREAWATER\": 0.061000, \"POP_CL\": 6, \"POP2000\": 11706, \"WHITE\": 11177, \"BLACK\": 155, \"AMERI_ES\": 10, \"ASIAN\": 201, \"HAWN_PI\": 1, \"OTHER\": 55, \"MULT_RACE\": 107, \"HISPANIC\": 149, \"MALES\": 5554, \"FEMALES\": 6152, \"AGE_UNDER5\": 606, \"AGE_5_17\": 1853, \"AGE_18_21\": 405, \"AGE_22_29\": 908, \"AGE_30_39\": 1627, \"AGE_40_49\": 1707, \"AGE_50_64\": 2086, \"AGE_65_UP\": 2514, \"MED_AGE\": 42.500000, \"MED_AGE_M\": 40.500000, \"MED_AGE_F\": 44.600000, \"HOUSEHOLDS\": 5187, \"AVE_HH_SZ\": 2.250000, \"HSEHLD_1_M\": 602, \"HSEHLD_1_F\": 1013, \"MARHH_CHD\": 991, \"MARHH_NO_C\": 1754, \"MHH_CHILD\": 65, \"FHH_CHILD\": 259, \"FAMILIES\": 3338, \"AVE_FAM_SZ\": 2.830000, \"HSE_UNITS\": 5414, \"VACANT\": 227, \"OWNER_OCC\": 3796, \"RENTER_OCC\": 1391 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.026034180419472, 42.114975430618976 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fairmount\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"25043\", \"CAPITAL\": \"N\", \"AREALAND\": 3.368000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10795, \"WHITE\": 10336, \"BLACK\": 139, \"AMERI_ES\": 33, \"ASIAN\": 146, \"HAWN_PI\": 3, \"OTHER\": 31, \"MULT_RACE\": 107, \"HISPANIC\": 115, \"MALES\": 5085, \"FEMALES\": 5710, \"AGE_UNDER5\": 602, \"AGE_5_17\": 1888, \"AGE_18_21\": 329, \"AGE_22_29\": 788, \"AGE_30_39\": 1539, \"AGE_40_49\": 1623, \"AGE_50_64\": 1739, \"AGE_65_UP\": 2287, \"MED_AGE\": 41.400000, \"MED_AGE_M\": 39.600000, \"MED_AGE_F\": 42.900000, \"HOUSEHOLDS\": 4397, \"AVE_HH_SZ\": 2.460000, \"HSEHLD_1_M\": 334, \"HSEHLD_1_F\": 789, \"MARHH_CHD\": 967, \"MARHH_NO_C\": 1574, \"MHH_CHILD\": 55, \"FHH_CHILD\": 238, \"FAMILIES\": 3109, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 4536, \"VACANT\": 139, \"OWNER_OCC\": 3508, \"RENTER_OCC\": 889 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.245502283664862, 43.043617148006007 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Farmingville\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"25417\", \"CAPITAL\": \"N\", \"AREALAND\": 4.518000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 16458, \"WHITE\": 15396, \"BLACK\": 204, \"AMERI_ES\": 23, \"ASIAN\": 292, \"HAWN_PI\": 0, \"OTHER\": 243, \"MULT_RACE\": 300, \"HISPANIC\": 1336, \"MALES\": 8291, \"FEMALES\": 8167, \"AGE_UNDER5\": 1204, \"AGE_5_17\": 3458, \"AGE_18_21\": 769, \"AGE_22_29\": 1662, \"AGE_30_39\": 3076, \"AGE_40_49\": 2639, \"AGE_50_64\": 2550, \"AGE_65_UP\": 1100, \"MED_AGE\": 34.100000, \"MED_AGE_M\": 33.600000, \"MED_AGE_F\": 34.600000, \"HOUSEHOLDS\": 5041, \"AVE_HH_SZ\": 3.260000, \"HSEHLD_1_M\": 290, \"HSEHLD_1_F\": 305, \"MARHH_CHD\": 1916, \"MARHH_NO_C\": 1591, \"MHH_CHILD\": 94, \"FHH_CHILD\": 239, \"FAMILIES\": 4228, \"AVE_FAM_SZ\": 3.510000, \"HSE_UNITS\": 5170, \"VACANT\": 129, \"OWNER_OCC\": 4168, \"RENTER_OCC\": 873 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.043934911696297, 40.842614521225876 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Floral Park\", \"CLASS\": \"village\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"26264\", \"CAPITAL\": \"N\", \"AREALAND\": 1.372000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 15967, \"WHITE\": 14938, \"BLACK\": 74, \"AMERI_ES\": 9, \"ASIAN\": 620, \"HAWN_PI\": 5, \"OTHER\": 164, \"MULT_RACE\": 157, \"HISPANIC\": 859, \"MALES\": 7531, \"FEMALES\": 8436, \"AGE_UNDER5\": 999, \"AGE_5_17\": 2905, \"AGE_18_21\": 563, \"AGE_22_29\": 1252, \"AGE_30_39\": 2294, \"AGE_40_49\": 2817, \"AGE_50_64\": 2648, \"AGE_65_UP\": 2489, \"MED_AGE\": 39.900000, \"MED_AGE_M\": 38.700000, \"MED_AGE_F\": 40.900000, \"HOUSEHOLDS\": 5770, \"AVE_HH_SZ\": 2.760000, \"HSEHLD_1_M\": 436, \"HSEHLD_1_F\": 895, \"MARHH_CHD\": 1749, \"MARHH_NO_C\": 1763, \"MHH_CHILD\": 30, \"FHH_CHILD\": 181, \"FAMILIES\": 4257, \"AVE_FAM_SZ\": 3.300000, \"HSE_UNITS\": 5892, \"VACANT\": 122, \"OWNER_OCC\": 4544, \"RENTER_OCC\": 1226 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.703343175932062, 40.722435262639436 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fort Drum\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"26759\", \"CAPITAL\": \"N\", \"AREALAND\": 25.265000, \"AREAWATER\": 0.085000, \"POP_CL\": 6, \"POP2000\": 12123, \"WHITE\": 7779, \"BLACK\": 2398, \"AMERI_ES\": 101, \"ASIAN\": 291, \"HAWN_PI\": 84, \"OTHER\": 922, \"MULT_RACE\": 548, \"HISPANIC\": 1609, \"MALES\": 7897, \"FEMALES\": 4226, \"AGE_UNDER5\": 1400, \"AGE_5_17\": 1614, \"AGE_18_21\": 2694, \"AGE_22_29\": 3834, \"AGE_30_39\": 2046, \"AGE_40_49\": 475, \"AGE_50_64\": 52, \"AGE_65_UP\": 8, \"MED_AGE\": 22.500000, \"MED_AGE_M\": 22.600000, \"MED_AGE_F\": 22.100000, \"HOUSEHOLDS\": 2253, \"AVE_HH_SZ\": 3.330000, \"HSEHLD_1_M\": 30, \"HSEHLD_1_F\": 15, \"MARHH_CHD\": 1574, \"MARHH_NO_C\": 496, \"MHH_CHILD\": 29, \"FHH_CHILD\": 93, \"FAMILIES\": 2203, \"AVE_FAM_SZ\": 3.360000, \"HSE_UNITS\": 2280, \"VACANT\": 27, \"OWNER_OCC\": 11, \"RENTER_OCC\": 2242 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.757989997460399, 44.038031817052833 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Franklin Square\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"27309\", \"CAPITAL\": \"N\", \"AREALAND\": 2.885000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 29342, \"WHITE\": 26987, \"BLACK\": 290, \"AMERI_ES\": 33, \"ASIAN\": 1112, \"HAWN_PI\": 3, \"OTHER\": 513, \"MULT_RACE\": 404, \"HISPANIC\": 2023, \"MALES\": 13887, \"FEMALES\": 15455, \"AGE_UNDER5\": 1778, \"AGE_5_17\": 4671, \"AGE_18_21\": 1117, \"AGE_22_29\": 2760, \"AGE_30_39\": 4659, \"AGE_40_49\": 4379, \"AGE_50_64\": 4535, \"AGE_65_UP\": 5443, \"MED_AGE\": 39.400000, \"MED_AGE_M\": 37.700000, \"MED_AGE_F\": 40.900000, \"HOUSEHOLDS\": 10187, \"AVE_HH_SZ\": 2.870000, \"HSEHLD_1_M\": 650, \"HSEHLD_1_F\": 1374, \"MARHH_CHD\": 2824, \"MARHH_NO_C\": 3587, \"MHH_CHILD\": 81, \"FHH_CHILD\": 294, \"FAMILIES\": 7837, \"AVE_FAM_SZ\": 3.300000, \"HSE_UNITS\": 10364, \"VACANT\": 177, \"OWNER_OCC\": 8256, \"RENTER_OCC\": 1931 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.676686833133516, 40.701730403232048 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fredonia\", \"CLASS\": \"village\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"27419\", \"CAPITAL\": \"N\", \"AREALAND\": 5.193000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10706, \"WHITE\": 10316, \"BLACK\": 109, \"AMERI_ES\": 34, \"ASIAN\": 113, \"HAWN_PI\": 2, \"OTHER\": 53, \"MULT_RACE\": 79, \"HISPANIC\": 181, \"MALES\": 4855, \"FEMALES\": 5851, \"AGE_UNDER5\": 366, \"AGE_5_17\": 1319, \"AGE_18_21\": 3207, \"AGE_22_29\": 1336, \"AGE_30_39\": 865, \"AGE_40_49\": 1210, \"AGE_50_64\": 1146, \"AGE_65_UP\": 1257, \"MED_AGE\": 22.900000, \"MED_AGE_M\": 23.400000, \"MED_AGE_F\": 22.700000, \"HOUSEHOLDS\": 3641, \"AVE_HH_SZ\": 2.330000, \"HSEHLD_1_M\": 412, \"HSEHLD_1_F\": 692, \"MARHH_CHD\": 632, \"MARHH_NO_C\": 888, \"MHH_CHILD\": 57, \"FHH_CHILD\": 217, \"FAMILIES\": 1950, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 3829, \"VACANT\": 188, \"OWNER_OCC\": 1962, \"RENTER_OCC\": 1679 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.333818605863584, 42.440844850344995 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Freeport\", \"CLASS\": \"village\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"27485\", \"CAPITAL\": \"N\", \"AREALAND\": 4.594000, \"AREAWATER\": 0.236000, \"POP_CL\": 6, \"POP2000\": 43783, \"WHITE\": 18791, \"BLACK\": 14258, \"AMERI_ES\": 201, \"ASIAN\": 604, \"HAWN_PI\": 24, \"OTHER\": 7537, \"MULT_RACE\": 2368, \"HISPANIC\": 14648, \"MALES\": 21051, \"FEMALES\": 22732, \"AGE_UNDER5\": 3013, \"AGE_5_17\": 8530, \"AGE_18_21\": 2274, \"AGE_22_29\": 4815, \"AGE_30_39\": 7383, \"AGE_40_49\": 6633, \"AGE_50_64\": 6548, \"AGE_65_UP\": 4587, \"MED_AGE\": 34.600000, \"MED_AGE_M\": 33.100000, \"MED_AGE_F\": 35.900000, \"HOUSEHOLDS\": 13504, \"AVE_HH_SZ\": 3.200000, \"HSEHLD_1_M\": 1148, \"HSEHLD_1_F\": 1717, \"MARHH_CHD\": 3378, \"MARHH_NO_C\": 3335, \"MHH_CHILD\": 327, \"FHH_CHILD\": 1212, \"FAMILIES\": 9917, \"AVE_FAM_SZ\": 3.650000, \"HSE_UNITS\": 13819, \"VACANT\": 315, \"OWNER_OCC\": 8801, \"RENTER_OCC\": 4703 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.587148720723803, 40.653943893318846 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fulton\", \"CLASS\": \"city\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"27815\", \"CAPITAL\": \"N\", \"AREALAND\": 3.821000, \"AREAWATER\": 0.935000, \"POP_CL\": 6, \"POP2000\": 11855, \"WHITE\": 11476, \"BLACK\": 88, \"AMERI_ES\": 44, \"ASIAN\": 39, \"HAWN_PI\": 3, \"OTHER\": 104, \"MULT_RACE\": 101, \"HISPANIC\": 228, \"MALES\": 5585, \"FEMALES\": 6270, \"AGE_UNDER5\": 872, \"AGE_5_17\": 2348, \"AGE_18_21\": 587, \"AGE_22_29\": 1223, \"AGE_30_39\": 1674, \"AGE_40_49\": 1653, \"AGE_50_64\": 1601, \"AGE_65_UP\": 1897, \"MED_AGE\": 35.600000, \"MED_AGE_M\": 33.600000, \"MED_AGE_F\": 37.500000, \"HOUSEHOLDS\": 4923, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 616, \"HSEHLD_1_F\": 1038, \"MARHH_CHD\": 898, \"MARHH_NO_C\": 1116, \"MHH_CHILD\": 145, \"FHH_CHILD\": 523, \"FAMILIES\": 2975, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 5501, \"VACANT\": 578, \"OWNER_OCC\": 2545, \"RENTER_OCC\": 2378 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.413261190630067, 43.319878960317673 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Garden City\", \"CLASS\": \"village\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"28178\", \"CAPITAL\": \"N\", \"AREALAND\": 5.339000, \"AREAWATER\": 0.005000, \"POP_CL\": 6, \"POP2000\": 21672, \"WHITE\": 20418, \"BLACK\": 266, \"AMERI_ES\": 15, \"ASIAN\": 715, \"HAWN_PI\": 7, \"OTHER\": 79, \"MULT_RACE\": 172, \"HISPANIC\": 600, \"MALES\": 10297, \"FEMALES\": 11375, \"AGE_UNDER5\": 1441, \"AGE_5_17\": 4307, \"AGE_18_21\": 1133, \"AGE_22_29\": 1208, \"AGE_30_39\": 2494, \"AGE_40_49\": 3487, \"AGE_50_64\": 3965, \"AGE_65_UP\": 3637, \"MED_AGE\": 40.700000, \"MED_AGE_M\": 39.600000, \"MED_AGE_F\": 41.600000, \"HOUSEHOLDS\": 7386, \"AVE_HH_SZ\": 2.830000, \"HSEHLD_1_M\": 365, \"HSEHLD_1_F\": 1053, \"MARHH_CHD\": 2444, \"MARHH_NO_C\": 2715, \"MHH_CHILD\": 37, \"FHH_CHILD\": 186, \"FAMILIES\": 5859, \"AVE_FAM_SZ\": 3.270000, \"HSE_UNITS\": 7555, \"VACANT\": 169, \"OWNER_OCC\": 6886, \"RENTER_OCC\": 500 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.649859908160821, 40.726893553274692 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Gates-North Gates\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"28458\", \"CAPITAL\": \"N\", \"AREALAND\": 4.654000, \"AREAWATER\": 0.041000, \"POP_CL\": 6, \"POP2000\": 15138, \"WHITE\": 13300, \"BLACK\": 929, \"AMERI_ES\": 26, \"ASIAN\": 426, \"HAWN_PI\": 5, \"OTHER\": 221, \"MULT_RACE\": 231, \"HISPANIC\": 497, \"MALES\": 7231, \"FEMALES\": 7907, \"AGE_UNDER5\": 849, \"AGE_5_17\": 2614, \"AGE_18_21\": 598, \"AGE_22_29\": 1341, \"AGE_30_39\": 2416, \"AGE_40_49\": 2183, \"AGE_50_64\": 2493, \"AGE_65_UP\": 2644, \"MED_AGE\": 39.000000, \"MED_AGE_M\": 37.400000, \"MED_AGE_F\": 40.500000, \"HOUSEHOLDS\": 6202, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 669, \"HSEHLD_1_F\": 1103, \"MARHH_CHD\": 1262, \"MARHH_NO_C\": 1908, \"MHH_CHILD\": 128, \"FHH_CHILD\": 378, \"FAMILIES\": 4142, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 6361, \"VACANT\": 159, \"OWNER_OCC\": 4512, \"RENTER_OCC\": 1690 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.698292132710435, 43.166295119361102 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Geneva\", \"CLASS\": \"city\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"28640\", \"CAPITAL\": \"N\", \"AREALAND\": 4.256000, \"AREAWATER\": 1.590000, \"POP_CL\": 6, \"POP2000\": 13617, \"WHITE\": 11101, \"BLACK\": 1391, \"AMERI_ES\": 34, \"ASIAN\": 168, \"HAWN_PI\": 7, \"OTHER\": 461, \"MULT_RACE\": 455, \"HISPANIC\": 1157, \"MALES\": 6349, \"FEMALES\": 7268, \"AGE_UNDER5\": 840, \"AGE_5_17\": 2321, \"AGE_18_21\": 1917, \"AGE_22_29\": 1455, \"AGE_30_39\": 1640, \"AGE_40_49\": 1687, \"AGE_50_64\": 1648, \"AGE_65_UP\": 2109, \"MED_AGE\": 31.800000, \"MED_AGE_M\": 30.400000, \"MED_AGE_F\": 33.100000, \"HOUSEHOLDS\": 5014, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 697, \"HSEHLD_1_F\": 1012, \"MARHH_CHD\": 831, \"MARHH_NO_C\": 1104, \"MHH_CHILD\": 115, \"FHH_CHILD\": 534, \"FAMILIES\": 2933, \"AVE_FAM_SZ\": 3.030000, \"HSE_UNITS\": 5564, \"VACANT\": 550, \"OWNER_OCC\": 2682, \"RENTER_OCC\": 2332 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.988842887911687, 42.869561483453417 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Glen Cove\", \"CLASS\": \"city\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"29113\", \"CAPITAL\": \"N\", \"AREALAND\": 6.645000, \"AREAWATER\": 12.605000, \"POP_CL\": 6, \"POP2000\": 26622, \"WHITE\": 21373, \"BLACK\": 1703, \"AMERI_ES\": 77, \"ASIAN\": 1094, \"HAWN_PI\": 14, \"OTHER\": 1523, \"MULT_RACE\": 838, \"HISPANIC\": 5336, \"MALES\": 12814, \"FEMALES\": 13808, \"AGE_UNDER5\": 1650, \"AGE_5_17\": 3993, \"AGE_18_21\": 1196, \"AGE_22_29\": 2763, \"AGE_30_39\": 4338, \"AGE_40_49\": 3803, \"AGE_50_64\": 4220, \"AGE_65_UP\": 4659, \"MED_AGE\": 38.600000, \"MED_AGE_M\": 36.200000, \"MED_AGE_F\": 40.900000, \"HOUSEHOLDS\": 9461, \"AVE_HH_SZ\": 2.720000, \"HSEHLD_1_M\": 895, \"HSEHLD_1_F\": 1389, \"MARHH_CHD\": 2208, \"MARHH_NO_C\": 2852, \"MHH_CHILD\": 112, \"FHH_CHILD\": 512, \"FAMILIES\": 6652, \"AVE_FAM_SZ\": 3.220000, \"HSE_UNITS\": 9734, \"VACANT\": 273, \"OWNER_OCC\": 5533, \"RENTER_OCC\": 3928 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.627880656480826, 40.867334695085098 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Glens Falls\", \"CLASS\": \"city\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"29333\", \"CAPITAL\": \"N\", \"AREALAND\": 3.825000, \"AREAWATER\": 0.103000, \"POP_CL\": 6, \"POP2000\": 14354, \"WHITE\": 13857, \"BLACK\": 186, \"AMERI_ES\": 22, \"ASIAN\": 61, \"HAWN_PI\": 2, \"OTHER\": 48, \"MULT_RACE\": 178, \"HISPANIC\": 199, \"MALES\": 6894, \"FEMALES\": 7460, \"AGE_UNDER5\": 841, \"AGE_5_17\": 2663, \"AGE_18_21\": 696, \"AGE_22_29\": 1670, \"AGE_30_39\": 2386, \"AGE_40_49\": 2169, \"AGE_50_64\": 1968, \"AGE_65_UP\": 1961, \"MED_AGE\": 35.600000, \"MED_AGE_M\": 33.600000, \"MED_AGE_F\": 37.300000, \"HOUSEHOLDS\": 6267, \"AVE_HH_SZ\": 2.250000, \"HSEHLD_1_M\": 978, \"HSEHLD_1_F\": 1324, \"MARHH_CHD\": 1100, \"MARHH_NO_C\": 1178, \"MHH_CHILD\": 170, \"FHH_CHILD\": 547, \"FAMILIES\": 3418, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 6811, \"VACANT\": 544, \"OWNER_OCC\": 3014, \"RENTER_OCC\": 3253 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.648412492105521, 43.312112867850495 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Gloversville\", \"CLASS\": \"city\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"29443\", \"CAPITAL\": \"N\", \"AREALAND\": 5.092000, \"AREAWATER\": 0.005000, \"POP_CL\": 6, \"POP2000\": 15413, \"WHITE\": 14699, \"BLACK\": 286, \"AMERI_ES\": 30, \"ASIAN\": 93, \"HAWN_PI\": 4, \"OTHER\": 85, \"MULT_RACE\": 216, \"HISPANIC\": 258, \"MALES\": 7245, \"FEMALES\": 8168, \"AGE_UNDER5\": 1069, \"AGE_5_17\": 2808, \"AGE_18_21\": 751, \"AGE_22_29\": 1501, \"AGE_30_39\": 2181, \"AGE_40_49\": 2114, \"AGE_50_64\": 2235, \"AGE_65_UP\": 2754, \"MED_AGE\": 37.300000, \"MED_AGE_M\": 35.400000, \"MED_AGE_F\": 39.300000, \"HOUSEHOLDS\": 6500, \"AVE_HH_SZ\": 2.320000, \"HSEHLD_1_M\": 845, \"HSEHLD_1_F\": 1355, \"MARHH_CHD\": 1048, \"MARHH_NO_C\": 1501, \"MHH_CHILD\": 238, \"FHH_CHILD\": 597, \"FAMILIES\": 3826, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 7540, \"VACANT\": 1040, \"OWNER_OCC\": 3515, \"RENTER_OCC\": 2985 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.342910718913643, 43.052481529431276 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Greece\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"30279\", \"CAPITAL\": \"N\", \"AREALAND\": 4.331000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14614, \"WHITE\": 13746, \"BLACK\": 366, \"AMERI_ES\": 26, \"ASIAN\": 241, \"HAWN_PI\": 4, \"OTHER\": 105, \"MULT_RACE\": 126, \"HISPANIC\": 357, \"MALES\": 6922, \"FEMALES\": 7692, \"AGE_UNDER5\": 723, \"AGE_5_17\": 2450, \"AGE_18_21\": 562, \"AGE_22_29\": 1138, \"AGE_30_39\": 1904, \"AGE_40_49\": 2228, \"AGE_50_64\": 2655, \"AGE_65_UP\": 2954, \"MED_AGE\": 42.400000, \"MED_AGE_M\": 39.900000, \"MED_AGE_F\": 44.500000, \"HOUSEHOLDS\": 6004, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 606, \"HSEHLD_1_F\": 1135, \"MARHH_CHD\": 1221, \"MARHH_NO_C\": 2001, \"MHH_CHILD\": 105, \"FHH_CHILD\": 265, \"FAMILIES\": 4010, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 6170, \"VACANT\": 166, \"OWNER_OCC\": 4586, \"RENTER_OCC\": 1418 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.700358154529027, 43.209112117826074 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Greenlawn\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"30543\", \"CAPITAL\": \"N\", \"AREALAND\": 3.670000, \"AREAWATER\": 0.003000, \"POP_CL\": 6, \"POP2000\": 13286, \"WHITE\": 10269, \"BLACK\": 2027, \"AMERI_ES\": 33, \"ASIAN\": 372, \"HAWN_PI\": 4, \"OTHER\": 314, \"MULT_RACE\": 267, \"HISPANIC\": 905, \"MALES\": 6244, \"FEMALES\": 7042, \"AGE_UNDER5\": 909, \"AGE_5_17\": 2547, \"AGE_18_21\": 457, \"AGE_22_29\": 926, \"AGE_30_39\": 2050, \"AGE_40_49\": 2179, \"AGE_50_64\": 2142, \"AGE_65_UP\": 2076, \"MED_AGE\": 39.000000, \"MED_AGE_M\": 36.900000, \"MED_AGE_F\": 40.700000, \"HOUSEHOLDS\": 4499, \"AVE_HH_SZ\": 2.890000, \"HSEHLD_1_M\": 288, \"HSEHLD_1_F\": 683, \"MARHH_CHD\": 1333, \"MARHH_NO_C\": 1333, \"MHH_CHILD\": 41, \"FHH_CHILD\": 237, \"FAMILIES\": 3346, \"AVE_FAM_SZ\": 3.380000, \"HSE_UNITS\": 4644, \"VACANT\": 145, \"OWNER_OCC\": 3524, \"RENTER_OCC\": 975 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.366094349152945, 40.857658264349681 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hamburg\", \"CLASS\": \"village\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"31643\", \"CAPITAL\": \"N\", \"AREALAND\": 2.513000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10116, \"WHITE\": 9978, \"BLACK\": 20, \"AMERI_ES\": 15, \"ASIAN\": 40, \"HAWN_PI\": 0, \"OTHER\": 15, \"MULT_RACE\": 48, \"HISPANIC\": 76, \"MALES\": 4718, \"FEMALES\": 5398, \"AGE_UNDER5\": 671, \"AGE_5_17\": 1998, \"AGE_18_21\": 371, \"AGE_22_29\": 752, \"AGE_30_39\": 1443, \"AGE_40_49\": 1565, \"AGE_50_64\": 1652, \"AGE_65_UP\": 1664, \"MED_AGE\": 38.800000, \"MED_AGE_M\": 36.500000, \"MED_AGE_F\": 40.700000, \"HOUSEHOLDS\": 4010, \"AVE_HH_SZ\": 2.500000, \"HSEHLD_1_M\": 335, \"HSEHLD_1_F\": 817, \"MARHH_CHD\": 1071, \"MARHH_NO_C\": 1152, \"MHH_CHILD\": 59, \"FHH_CHILD\": 213, \"FAMILIES\": 2696, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 4144, \"VACANT\": 134, \"OWNER_OCC\": 2875, \"RENTER_OCC\": 1135 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -78.833861025640232, 42.722758881386859 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hampton Bays\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"31896\", \"CAPITAL\": \"N\", \"AREALAND\": 12.042000, \"AREAWATER\": 9.642000, \"POP_CL\": 6, \"POP2000\": 12236, \"WHITE\": 11373, \"BLACK\": 107, \"AMERI_ES\": 16, \"ASIAN\": 86, \"HAWN_PI\": 12, \"OTHER\": 452, \"MULT_RACE\": 190, \"HISPANIC\": 1529, \"MALES\": 6075, \"FEMALES\": 6161, \"AGE_UNDER5\": 762, \"AGE_5_17\": 1778, \"AGE_18_21\": 513, \"AGE_22_29\": 1227, \"AGE_30_39\": 2068, \"AGE_40_49\": 1830, \"AGE_50_64\": 2045, \"AGE_65_UP\": 2013, \"MED_AGE\": 38.800000, \"MED_AGE_M\": 37.600000, \"MED_AGE_F\": 40.400000, \"HOUSEHOLDS\": 4877, \"AVE_HH_SZ\": 2.480000, \"HSEHLD_1_M\": 561, \"HSEHLD_1_F\": 829, \"MARHH_CHD\": 1008, \"MARHH_NO_C\": 1454, \"MHH_CHILD\": 88, \"FHH_CHILD\": 193, \"FAMILIES\": 3090, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 6875, \"VACANT\": 1998, \"OWNER_OCC\": 3426, \"RENTER_OCC\": 1451 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -72.521411544695681, 40.873957108434574 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Harrison\", \"CLASS\": \"village\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"32402\", \"CAPITAL\": \"N\", \"AREALAND\": 16.829000, \"AREAWATER\": 0.560000, \"POP_CL\": 6, \"POP2000\": 24154, \"WHITE\": 21686, \"BLACK\": 345, \"AMERI_ES\": 21, \"ASIAN\": 1314, \"HAWN_PI\": 2, \"OTHER\": 383, \"MULT_RACE\": 403, \"HISPANIC\": 1618, \"MALES\": 11386, \"FEMALES\": 12768, \"AGE_UNDER5\": 1618, \"AGE_5_17\": 4298, \"AGE_18_21\": 1623, \"AGE_22_29\": 1953, \"AGE_30_39\": 3772, \"AGE_40_49\": 3684, \"AGE_50_64\": 3669, \"AGE_65_UP\": 3537, \"MED_AGE\": 37.200000, \"MED_AGE_M\": 36.800000, \"MED_AGE_F\": 37.500000, \"HOUSEHOLDS\": 8394, \"AVE_HH_SZ\": 2.720000, \"HSEHLD_1_M\": 679, \"HSEHLD_1_F\": 1175, \"MARHH_CHD\": 2566, \"MARHH_NO_C\": 2673, \"MHH_CHILD\": 80, \"FHH_CHILD\": 319, \"FAMILIES\": 6187, \"AVE_FAM_SZ\": 3.200000, \"HSE_UNITS\": 8680, \"VACANT\": 286, \"OWNER_OCC\": 5389, \"RENTER_OCC\": 3005 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.718194503692089, 41.006995221073808 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hauppauge\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"32732\", \"CAPITAL\": \"N\", \"AREALAND\": 10.806000, \"AREAWATER\": 0.150000, \"POP_CL\": 6, \"POP2000\": 20100, \"WHITE\": 18743, \"BLACK\": 230, \"AMERI_ES\": 7, \"ASIAN\": 721, \"HAWN_PI\": 6, \"OTHER\": 153, \"MULT_RACE\": 240, \"HISPANIC\": 887, \"MALES\": 9958, \"FEMALES\": 10142, \"AGE_UNDER5\": 1374, \"AGE_5_17\": 3458, \"AGE_18_21\": 664, \"AGE_22_29\": 1711, \"AGE_30_39\": 3455, \"AGE_40_49\": 3141, \"AGE_50_64\": 4095, \"AGE_65_UP\": 2202, \"MED_AGE\": 38.300000, \"MED_AGE_M\": 37.600000, \"MED_AGE_F\": 38.900000, \"HOUSEHOLDS\": 7006, \"AVE_HH_SZ\": 2.850000, \"HSEHLD_1_M\": 516, \"HSEHLD_1_F\": 636, \"MARHH_CHD\": 2107, \"MARHH_NO_C\": 2696, \"MHH_CHILD\": 56, \"FHH_CHILD\": 232, \"FAMILIES\": 5599, \"AVE_FAM_SZ\": 3.210000, \"HSE_UNITS\": 7153, \"VACANT\": 147, \"OWNER_OCC\": 5778, \"RENTER_OCC\": 1228 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.207053131246653, 40.818216324164339 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Haverstraw\", \"CLASS\": \"village\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"32754\", \"CAPITAL\": \"N\", \"AREALAND\": 1.992000, \"AREAWATER\": 3.076000, \"POP_CL\": 6, \"POP2000\": 10117, \"WHITE\": 4656, \"BLACK\": 1221, \"AMERI_ES\": 37, \"ASIAN\": 110, \"HAWN_PI\": 13, \"OTHER\": 3511, \"MULT_RACE\": 569, \"HISPANIC\": 5998, \"MALES\": 4875, \"FEMALES\": 5242, \"AGE_UNDER5\": 728, \"AGE_5_17\": 2163, \"AGE_18_21\": 648, \"AGE_22_29\": 1214, \"AGE_30_39\": 1646, \"AGE_40_49\": 1331, \"AGE_50_64\": 1289, \"AGE_65_UP\": 1098, \"MED_AGE\": 32.000000, \"MED_AGE_M\": 30.300000, \"MED_AGE_F\": 33.600000, \"HOUSEHOLDS\": 2816, \"AVE_HH_SZ\": 3.420000, \"HSEHLD_1_M\": 198, \"HSEHLD_1_F\": 306, \"MARHH_CHD\": 733, \"MARHH_NO_C\": 593, \"MHH_CHILD\": 86, \"FHH_CHILD\": 407, \"FAMILIES\": 2169, \"AVE_FAM_SZ\": 3.820000, \"HSE_UNITS\": 2925, \"VACANT\": 109, \"OWNER_OCC\": 1255, \"RENTER_OCC\": 1561 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.966962681289104, 41.196501001004584 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hempstead\", \"CLASS\": \"village\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"33139\", \"CAPITAL\": \"N\", \"AREALAND\": 3.680000, \"AREAWATER\": 0.004000, \"POP_CL\": 7, \"POP2000\": 56554, \"WHITE\": 14515, \"BLACK\": 29678, \"AMERI_ES\": 298, \"ASIAN\": 745, \"HAWN_PI\": 33, \"OTHER\": 8605, \"MULT_RACE\": 2680, \"HISPANIC\": 17991, \"MALES\": 27035, \"FEMALES\": 29519, \"AGE_UNDER5\": 4445, \"AGE_5_17\": 10400, \"AGE_18_21\": 6056, \"AGE_22_29\": 8031, \"AGE_30_39\": 9185, \"AGE_40_49\": 6785, \"AGE_50_64\": 6851, \"AGE_65_UP\": 4801, \"MED_AGE\": 29.400000, \"MED_AGE_M\": 27.600000, \"MED_AGE_F\": 31.100000, \"HOUSEHOLDS\": 15188, \"AVE_HH_SZ\": 3.410000, \"HSEHLD_1_M\": 1205, \"HSEHLD_1_F\": 1952, \"MARHH_CHD\": 3131, \"MARHH_NO_C\": 2795, \"MHH_CHILD\": 487, \"FHH_CHILD\": 2256, \"FAMILIES\": 11175, \"AVE_FAM_SZ\": 3.760000, \"HSE_UNITS\": 15579, \"VACANT\": 391, \"OWNER_OCC\": 6563, \"RENTER_OCC\": 8625 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.617504999115454, 40.704970729676958 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hicksville\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"34374\", \"CAPITAL\": \"N\", \"AREALAND\": 6.812000, \"AREAWATER\": 0.005000, \"POP_CL\": 6, \"POP2000\": 41260, \"WHITE\": 34891, \"BLACK\": 562, \"AMERI_ES\": 44, \"ASIAN\": 3731, \"HAWN_PI\": 14, \"OTHER\": 1258, \"MULT_RACE\": 760, \"HISPANIC\": 3819, \"MALES\": 20150, \"FEMALES\": 21110, \"AGE_UNDER5\": 2506, \"AGE_5_17\": 6795, \"AGE_18_21\": 1709, \"AGE_22_29\": 3845, \"AGE_30_39\": 6581, \"AGE_40_49\": 6719, \"AGE_50_64\": 6455, \"AGE_65_UP\": 6650, \"MED_AGE\": 38.900000, \"MED_AGE_M\": 37.600000, \"MED_AGE_F\": 40.200000, \"HOUSEHOLDS\": 13710, \"AVE_HH_SZ\": 3.000000, \"HSEHLD_1_M\": 855, \"HSEHLD_1_F\": 1457, \"MARHH_CHD\": 3997, \"MARHH_NO_C\": 4842, \"MHH_CHILD\": 130, \"FHH_CHILD\": 421, \"FAMILIES\": 10846, \"AVE_FAM_SZ\": 3.360000, \"HSE_UNITS\": 13912, \"VACANT\": 202, \"OWNER_OCC\": 11724, \"RENTER_OCC\": 1986 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.523380339536715, 40.763364279462849 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Holbrook\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"35056\", \"CAPITAL\": \"N\", \"AREALAND\": 6.823000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 27512, \"WHITE\": 25847, \"BLACK\": 363, \"AMERI_ES\": 23, \"ASIAN\": 789, \"HAWN_PI\": 12, \"OTHER\": 189, \"MULT_RACE\": 289, \"HISPANIC\": 1616, \"MALES\": 13376, \"FEMALES\": 14136, \"AGE_UNDER5\": 1968, \"AGE_5_17\": 5107, \"AGE_18_21\": 1245, \"AGE_22_29\": 2927, \"AGE_30_39\": 4734, \"AGE_40_49\": 4371, \"AGE_50_64\": 5102, \"AGE_65_UP\": 2058, \"MED_AGE\": 35.300000, \"MED_AGE_M\": 34.400000, \"MED_AGE_F\": 36.000000, \"HOUSEHOLDS\": 9019, \"AVE_HH_SZ\": 3.040000, \"HSEHLD_1_M\": 534, \"HSEHLD_1_F\": 759, \"MARHH_CHD\": 3046, \"MARHH_NO_C\": 3155, \"MHH_CHILD\": 111, \"FHH_CHILD\": 369, \"FAMILIES\": 7347, \"AVE_FAM_SZ\": 3.380000, \"HSE_UNITS\": 9157, \"VACANT\": 138, \"OWNER_OCC\": 7149, \"RENTER_OCC\": 1870 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.075803511875478, 40.799662270719715 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Holtsville\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"35254\", \"CAPITAL\": \"N\", \"AREALAND\": 6.957000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 17006, \"WHITE\": 16049, \"BLACK\": 189, \"AMERI_ES\": 31, \"ASIAN\": 296, \"HAWN_PI\": 1, \"OTHER\": 205, \"MULT_RACE\": 235, \"HISPANIC\": 1200, \"MALES\": 8332, \"FEMALES\": 8674, \"AGE_UNDER5\": 1385, \"AGE_5_17\": 3416, \"AGE_18_21\": 708, \"AGE_22_29\": 1647, \"AGE_30_39\": 3199, \"AGE_40_49\": 2658, \"AGE_50_64\": 2820, \"AGE_65_UP\": 1173, \"MED_AGE\": 34.500000, \"MED_AGE_M\": 33.800000, \"MED_AGE_F\": 35.200000, \"HOUSEHOLDS\": 5316, \"AVE_HH_SZ\": 3.190000, \"HSEHLD_1_M\": 263, \"HSEHLD_1_F\": 374, \"MARHH_CHD\": 2030, \"MARHH_NO_C\": 1712, \"MHH_CHILD\": 72, \"FHH_CHILD\": 219, \"FAMILIES\": 4456, \"AVE_FAM_SZ\": 3.470000, \"HSE_UNITS\": 5418, \"VACANT\": 102, \"OWNER_OCC\": 4551, \"RENTER_OCC\": 765 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.047364265102757, 40.813406488521473 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Huntington\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"36233\", \"CAPITAL\": \"N\", \"AREALAND\": 7.534000, \"AREAWATER\": 0.144000, \"POP_CL\": 6, \"POP2000\": 18403, \"WHITE\": 17245, \"BLACK\": 385, \"AMERI_ES\": 21, \"ASIAN\": 332, \"HAWN_PI\": 2, \"OTHER\": 210, \"MULT_RACE\": 208, \"HISPANIC\": 658, \"MALES\": 8944, \"FEMALES\": 9459, \"AGE_UNDER5\": 1329, \"AGE_5_17\": 2931, \"AGE_18_21\": 484, \"AGE_22_29\": 1365, \"AGE_30_39\": 3169, \"AGE_40_49\": 3274, \"AGE_50_64\": 3263, \"AGE_65_UP\": 2588, \"MED_AGE\": 39.800000, \"MED_AGE_M\": 38.800000, \"MED_AGE_F\": 40.700000, \"HOUSEHOLDS\": 7052, \"AVE_HH_SZ\": 2.590000, \"HSEHLD_1_M\": 650, \"HSEHLD_1_F\": 1001, \"MARHH_CHD\": 1968, \"MARHH_NO_C\": 2311, \"MHH_CHILD\": 70, \"FHH_CHILD\": 197, \"FAMILIES\": 4992, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 7273, \"VACANT\": 221, \"OWNER_OCC\": 5737, \"RENTER_OCC\": 1315 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.413845758193418, 40.877807964492192 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Huntington Station\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"37044\", \"CAPITAL\": \"N\", \"AREALAND\": 5.431000, \"AREAWATER\": 0.004000, \"POP_CL\": 6, \"POP2000\": 29910, \"WHITE\": 21401, \"BLACK\": 3459, \"AMERI_ES\": 106, \"ASIAN\": 924, \"HAWN_PI\": 4, \"OTHER\": 3002, \"MULT_RACE\": 1014, \"HISPANIC\": 6802, \"MALES\": 14966, \"FEMALES\": 14944, \"AGE_UNDER5\": 2321, \"AGE_5_17\": 5383, \"AGE_18_21\": 1419, \"AGE_22_29\": 3332, \"AGE_30_39\": 5519, \"AGE_40_49\": 4706, \"AGE_50_64\": 4054, \"AGE_65_UP\": 3176, \"MED_AGE\": 34.700000, \"MED_AGE_M\": 33.300000, \"MED_AGE_F\": 36.000000, \"HOUSEHOLDS\": 9731, \"AVE_HH_SZ\": 3.060000, \"HSEHLD_1_M\": 784, \"HSEHLD_1_F\": 1086, \"MARHH_CHD\": 2680, \"MARHH_NO_C\": 2616, \"MHH_CHILD\": 194, \"FHH_CHILD\": 689, \"FAMILIES\": 7190, \"AVE_FAM_SZ\": 3.420000, \"HSE_UNITS\": 10028, \"VACANT\": 297, \"OWNER_OCC\": 6830, \"RENTER_OCC\": 2901 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.40757493513766, 40.844707998264482 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Irondequoit\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"37737\", \"CAPITAL\": \"N\", \"AREALAND\": 15.186000, \"AREAWATER\": 1.633000, \"POP_CL\": 7, \"POP2000\": 52354, \"WHITE\": 48707, \"BLACK\": 1857, \"AMERI_ES\": 79, \"ASIAN\": 514, \"HAWN_PI\": 10, \"OTHER\": 533, \"MULT_RACE\": 654, \"HISPANIC\": 1602, \"MALES\": 24109, \"FEMALES\": 28245, \"AGE_UNDER5\": 2773, \"AGE_5_17\": 8708, \"AGE_18_21\": 1644, \"AGE_22_29\": 3514, \"AGE_30_39\": 7419, \"AGE_40_49\": 8131, \"AGE_50_64\": 8395, \"AGE_65_UP\": 11770, \"MED_AGE\": 42.600000, \"MED_AGE_M\": 40.500000, \"MED_AGE_F\": 44.600000, \"HOUSEHOLDS\": 22247, \"AVE_HH_SZ\": 2.320000, \"HSEHLD_1_M\": 2193, \"HSEHLD_1_F\": 4664, \"MARHH_CHD\": 4412, \"MARHH_NO_C\": 6877, \"MHH_CHILD\": 325, \"FHH_CHILD\": 1203, \"FAMILIES\": 14324, \"AVE_FAM_SZ\": 2.910000, \"HSE_UNITS\": 23037, \"VACANT\": 790, \"OWNER_OCC\": 17635, \"RENTER_OCC\": 4612 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.575220531463856, 43.20801316624209 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Islip\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"37869\", \"CAPITAL\": \"N\", \"AREALAND\": 5.402000, \"AREAWATER\": 0.355000, \"POP_CL\": 6, \"POP2000\": 20575, \"WHITE\": 18038, \"BLACK\": 1008, \"AMERI_ES\": 21, \"ASIAN\": 425, \"HAWN_PI\": 6, \"OTHER\": 621, \"MULT_RACE\": 456, \"HISPANIC\": 2195, \"MALES\": 9990, \"FEMALES\": 10585, \"AGE_UNDER5\": 1587, \"AGE_5_17\": 4053, \"AGE_18_21\": 732, \"AGE_22_29\": 1845, \"AGE_30_39\": 3625, \"AGE_40_49\": 3238, \"AGE_50_64\": 3207, \"AGE_65_UP\": 2288, \"MED_AGE\": 36.100000, \"MED_AGE_M\": 35.100000, \"MED_AGE_F\": 37.100000, \"HOUSEHOLDS\": 6868, \"AVE_HH_SZ\": 2.970000, \"HSEHLD_1_M\": 512, \"HSEHLD_1_F\": 755, \"MARHH_CHD\": 2155, \"MARHH_NO_C\": 2060, \"MHH_CHILD\": 90, \"FHH_CHILD\": 395, \"FAMILIES\": 5300, \"AVE_FAM_SZ\": 3.380000, \"HSE_UNITS\": 7026, \"VACANT\": 158, \"OWNER_OCC\": 5084, \"RENTER_OCC\": 1784 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.219716210840232, 40.73777521988039 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ithaca\", \"CLASS\": \"city\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"38077\", \"CAPITAL\": \"N\", \"AREALAND\": 5.463000, \"AREAWATER\": 0.607000, \"POP_CL\": 6, \"POP2000\": 29287, \"WHITE\": 21663, \"BLACK\": 1965, \"AMERI_ES\": 114, \"ASIAN\": 3998, \"HAWN_PI\": 16, \"OTHER\": 546, \"MULT_RACE\": 985, \"HISPANIC\": 1555, \"MALES\": 14830, \"FEMALES\": 14457, \"AGE_UNDER5\": 727, \"AGE_5_17\": 1978, \"AGE_18_21\": 12086, \"AGE_22_29\": 6031, \"AGE_30_39\": 2473, \"AGE_40_49\": 2167, \"AGE_50_64\": 1989, \"AGE_65_UP\": 1836, \"MED_AGE\": 22.000000, \"MED_AGE_M\": 21.900000, \"MED_AGE_F\": 22.100000, \"HOUSEHOLDS\": 10287, \"AVE_HH_SZ\": 2.130000, \"HSEHLD_1_M\": 2137, \"HSEHLD_1_F\": 2314, \"MARHH_CHD\": 818, \"MARHH_NO_C\": 1133, \"MHH_CHILD\": 117, \"FHH_CHILD\": 524, \"FAMILIES\": 2958, \"AVE_FAM_SZ\": 2.810000, \"HSE_UNITS\": 10736, \"VACANT\": 449, \"OWNER_OCC\": 2671, \"RENTER_OCC\": 7616 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.500126605519597, 42.443603885240208 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Jamestown\", \"CLASS\": \"city\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"38264\", \"CAPITAL\": \"N\", \"AREALAND\": 8.977000, \"AREAWATER\": 0.084000, \"POP_CL\": 6, \"POP2000\": 31730, \"WHITE\": 29040, \"BLACK\": 1075, \"AMERI_ES\": 204, \"ASIAN\": 141, \"HAWN_PI\": 16, \"OTHER\": 570, \"MULT_RACE\": 684, \"HISPANIC\": 1567, \"MALES\": 15121, \"FEMALES\": 16609, \"AGE_UNDER5\": 2396, \"AGE_5_17\": 5794, \"AGE_18_21\": 1670, \"AGE_22_29\": 3398, \"AGE_30_39\": 4390, \"AGE_40_49\": 4525, \"AGE_50_64\": 4481, \"AGE_65_UP\": 5076, \"MED_AGE\": 36.200000, \"MED_AGE_M\": 35.000000, \"MED_AGE_F\": 37.400000, \"HOUSEHOLDS\": 13558, \"AVE_HH_SZ\": 2.290000, \"HSEHLD_1_M\": 2047, \"HSEHLD_1_F\": 2692, \"MARHH_CHD\": 2189, \"MARHH_NO_C\": 3112, \"MHH_CHILD\": 386, \"FHH_CHILD\": 1413, \"FAMILIES\": 7901, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 15027, \"VACANT\": 1469, \"OWNER_OCC\": 6962, \"RENTER_OCC\": 6596 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.238624853540912, 42.095456859931041 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Jefferson Valley-Yorktown\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"38500\", \"CAPITAL\": \"N\", \"AREALAND\": 6.913000, \"AREAWATER\": 0.080000, \"POP_CL\": 6, \"POP2000\": 14891, \"WHITE\": 13746, \"BLACK\": 347, \"AMERI_ES\": 16, \"ASIAN\": 480, \"HAWN_PI\": 1, \"OTHER\": 158, \"MULT_RACE\": 143, \"HISPANIC\": 699, \"MALES\": 7027, \"FEMALES\": 7864, \"AGE_UNDER5\": 1003, \"AGE_5_17\": 2956, \"AGE_18_21\": 409, \"AGE_22_29\": 743, \"AGE_30_39\": 2178, \"AGE_40_49\": 2572, \"AGE_50_64\": 2545, \"AGE_65_UP\": 2485, \"MED_AGE\": 40.600000, \"MED_AGE_M\": 39.500000, \"MED_AGE_F\": 41.500000, \"HOUSEHOLDS\": 5420, \"AVE_HH_SZ\": 2.740000, \"HSEHLD_1_M\": 301, \"HSEHLD_1_F\": 860, \"MARHH_CHD\": 1883, \"MARHH_NO_C\": 1845, \"MHH_CHILD\": 33, \"FHH_CHILD\": 143, \"FAMILIES\": 4153, \"AVE_FAM_SZ\": 3.220000, \"HSE_UNITS\": 5526, \"VACANT\": 106, \"OWNER_OCC\": 4936, \"RENTER_OCC\": 484 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.801856306756846, 41.316881821421084 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Jericho\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"38539\", \"CAPITAL\": \"N\", \"AREALAND\": 4.059000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 13045, \"WHITE\": 11266, \"BLACK\": 185, \"AMERI_ES\": 4, \"ASIAN\": 1394, \"HAWN_PI\": 1, \"OTHER\": 67, \"MULT_RACE\": 128, \"HISPANIC\": 318, \"MALES\": 6332, \"FEMALES\": 6713, \"AGE_UNDER5\": 818, \"AGE_5_17\": 2480, \"AGE_18_21\": 331, \"AGE_22_29\": 687, \"AGE_30_39\": 1682, \"AGE_40_49\": 2274, \"AGE_50_64\": 2640, \"AGE_65_UP\": 2133, \"MED_AGE\": 42.200000, \"MED_AGE_M\": 41.900000, \"MED_AGE_F\": 42.500000, \"HOUSEHOLDS\": 4545, \"AVE_HH_SZ\": 2.810000, \"HSEHLD_1_M\": 245, \"HSEHLD_1_F\": 376, \"MARHH_CHD\": 1571, \"MARHH_NO_C\": 1830, \"MHH_CHILD\": 34, \"FHH_CHILD\": 148, \"FAMILIES\": 3814, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 4600, \"VACANT\": 55, \"OWNER_OCC\": 3883, \"RENTER_OCC\": 662 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.536905546495731, 40.786553203571415 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Johnson City\", \"CLASS\": \"village\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"38748\", \"CAPITAL\": \"N\", \"AREALAND\": 4.442000, \"AREAWATER\": 0.135000, \"POP_CL\": 6, \"POP2000\": 15535, \"WHITE\": 13805, \"BLACK\": 480, \"AMERI_ES\": 29, \"ASIAN\": 766, \"HAWN_PI\": 8, \"OTHER\": 131, \"MULT_RACE\": 316, \"HISPANIC\": 347, \"MALES\": 7176, \"FEMALES\": 8359, \"AGE_UNDER5\": 897, \"AGE_5_17\": 2211, \"AGE_18_21\": 962, \"AGE_22_29\": 1782, \"AGE_30_39\": 2076, \"AGE_40_49\": 2098, \"AGE_50_64\": 2151, \"AGE_65_UP\": 3358, \"MED_AGE\": 39.300000, \"MED_AGE_M\": 36.500000, \"MED_AGE_F\": 42.000000, \"HOUSEHOLDS\": 6981, \"AVE_HH_SZ\": 2.120000, \"HSEHLD_1_M\": 1171, \"HSEHLD_1_F\": 1640, \"MARHH_CHD\": 956, \"MARHH_NO_C\": 1631, \"MHH_CHILD\": 131, \"FHH_CHILD\": 492, \"FAMILIES\": 3653, \"AVE_FAM_SZ\": 2.880000, \"HSE_UNITS\": 7650, \"VACANT\": 669, \"OWNER_OCC\": 3569, \"RENTER_OCC\": 3412 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.959366833221253, 42.11669552200221 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Kenmore\", \"CLASS\": \"village\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"39232\", \"CAPITAL\": \"N\", \"AREALAND\": 1.436000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 16426, \"WHITE\": 15909, \"BLACK\": 163, \"AMERI_ES\": 57, \"ASIAN\": 95, \"HAWN_PI\": 7, \"OTHER\": 58, \"MULT_RACE\": 137, \"HISPANIC\": 213, \"MALES\": 7607, \"FEMALES\": 8819, \"AGE_UNDER5\": 1020, \"AGE_5_17\": 2801, \"AGE_18_21\": 694, \"AGE_22_29\": 1524, \"AGE_30_39\": 2569, \"AGE_40_49\": 2749, \"AGE_50_64\": 2378, \"AGE_65_UP\": 2691, \"MED_AGE\": 38.500000, \"MED_AGE_M\": 36.600000, \"MED_AGE_F\": 40.500000, \"HOUSEHOLDS\": 7071, \"AVE_HH_SZ\": 2.310000, \"HSEHLD_1_M\": 838, \"HSEHLD_1_F\": 1624, \"MARHH_CHD\": 1477, \"MARHH_NO_C\": 1728, \"MHH_CHILD\": 93, \"FHH_CHILD\": 462, \"FAMILIES\": 4234, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 7459, \"VACANT\": 388, \"OWNER_OCC\": 4711, \"RENTER_OCC\": 2360 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -78.871686944762587, 42.964906873792465 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Kings Park\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"39672\", \"CAPITAL\": \"N\", \"AREALAND\": 5.892000, \"AREAWATER\": 0.386000, \"POP_CL\": 6, \"POP2000\": 16146, \"WHITE\": 15411, \"BLACK\": 136, \"AMERI_ES\": 21, \"ASIAN\": 305, \"HAWN_PI\": 5, \"OTHER\": 100, \"MULT_RACE\": 168, \"HISPANIC\": 538, \"MALES\": 7861, \"FEMALES\": 8285, \"AGE_UNDER5\": 1214, \"AGE_5_17\": 2861, \"AGE_18_21\": 533, \"AGE_22_29\": 1243, \"AGE_30_39\": 2935, \"AGE_40_49\": 2423, \"AGE_50_64\": 2698, \"AGE_65_UP\": 2239, \"MED_AGE\": 37.800000, \"MED_AGE_M\": 36.800000, \"MED_AGE_F\": 38.600000, \"HOUSEHOLDS\": 5480, \"AVE_HH_SZ\": 2.860000, \"HSEHLD_1_M\": 416, \"HSEHLD_1_F\": 683, \"MARHH_CHD\": 1744, \"MARHH_NO_C\": 1824, \"MHH_CHILD\": 53, \"FHH_CHILD\": 195, \"FAMILIES\": 4196, \"AVE_FAM_SZ\": 3.320000, \"HSE_UNITS\": 5574, \"VACANT\": 94, \"OWNER_OCC\": 4376, \"RENTER_OCC\": 1104 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.242754819402023, 40.888508090388889 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Kingston\", \"CLASS\": \"city\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"39727\", \"CAPITAL\": \"N\", \"AREALAND\": 7.354000, \"AREAWATER\": 1.298000, \"POP_CL\": 6, \"POP2000\": 23456, \"WHITE\": 18853, \"BLACK\": 2995, \"AMERI_ES\": 70, \"ASIAN\": 358, \"HAWN_PI\": 1, \"OTHER\": 446, \"MULT_RACE\": 733, \"HISPANIC\": 1516, \"MALES\": 11049, \"FEMALES\": 12407, \"AGE_UNDER5\": 1510, \"AGE_5_17\": 4097, \"AGE_18_21\": 1081, \"AGE_22_29\": 2270, \"AGE_30_39\": 3509, \"AGE_40_49\": 3541, \"AGE_50_64\": 3445, \"AGE_65_UP\": 4003, \"MED_AGE\": 38.100000, \"MED_AGE_M\": 36.200000, \"MED_AGE_F\": 39.900000, \"HOUSEHOLDS\": 9871, \"AVE_HH_SZ\": 2.280000, \"HSEHLD_1_M\": 1442, \"HSEHLD_1_F\": 2195, \"MARHH_CHD\": 1467, \"MARHH_NO_C\": 2006, \"MHH_CHILD\": 231, \"FHH_CHILD\": 971, \"FAMILIES\": 5497, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 10637, \"VACANT\": 766, \"OWNER_OCC\": 4660, \"RENTER_OCC\": 5211 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.004213695930517, 41.928883896022263 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Kiryas Joel\", \"CLASS\": \"village\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"39853\", \"CAPITAL\": \"N\", \"AREALAND\": 1.098000, \"AREAWATER\": 0.005000, \"POP_CL\": 6, \"POP2000\": 13138, \"WHITE\": 13009, \"BLACK\": 27, \"AMERI_ES\": 0, \"ASIAN\": 3, \"HAWN_PI\": 0, \"OTHER\": 16, \"MULT_RACE\": 83, \"HISPANIC\": 122, \"MALES\": 7064, \"FEMALES\": 6074, \"AGE_UNDER5\": 2677, \"AGE_5_17\": 4880, \"AGE_18_21\": 1492, \"AGE_22_29\": 1714, \"AGE_30_39\": 828, \"AGE_40_49\": 861, \"AGE_50_64\": 482, \"AGE_65_UP\": 204, \"MED_AGE\": 15.000000, \"MED_AGE_M\": 15.100000, \"MED_AGE_F\": 14.800000, \"HOUSEHOLDS\": 2229, \"AVE_HH_SZ\": 5.740000, \"HSEHLD_1_M\": 16, \"HSEHLD_1_F\": 47, \"MARHH_CHD\": 1728, \"MARHH_NO_C\": 349, \"MHH_CHILD\": 16, \"FHH_CHILD\": 28, \"FAMILIES\": 2138, \"AVE_FAM_SZ\": 5.840000, \"HSE_UNITS\": 2233, \"VACANT\": 4, \"OWNER_OCC\": 698, \"RENTER_OCC\": 1531 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.167340730007595, 41.340026128926972 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lackawanna\", \"CLASS\": \"city\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"40189\", \"CAPITAL\": \"N\", \"AREALAND\": 6.122000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 19064, \"WHITE\": 16011, \"BLACK\": 1812, \"AMERI_ES\": 76, \"ASIAN\": 59, \"HAWN_PI\": 1, \"OTHER\": 439, \"MULT_RACE\": 666, \"HISPANIC\": 969, \"MALES\": 9152, \"FEMALES\": 9912, \"AGE_UNDER5\": 1326, \"AGE_5_17\": 3351, \"AGE_18_21\": 919, \"AGE_22_29\": 1922, \"AGE_30_39\": 2742, \"AGE_40_49\": 2461, \"AGE_50_64\": 2815, \"AGE_65_UP\": 3528, \"MED_AGE\": 37.500000, \"MED_AGE_M\": 35.400000, \"MED_AGE_F\": 39.500000, \"HOUSEHOLDS\": 8192, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 1287, \"HSEHLD_1_F\": 1745, \"MARHH_CHD\": 1225, \"MARHH_NO_C\": 1821, \"MHH_CHILD\": 143, \"FHH_CHILD\": 758, \"FAMILIES\": 4778, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 8951, \"VACANT\": 759, \"OWNER_OCC\": 4666, \"RENTER_OCC\": 3526 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -78.825645119129078, 42.819390880695103 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lake Grove\", \"CLASS\": \"village\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"40530\", \"CAPITAL\": \"N\", \"AREALAND\": 2.982000, \"AREAWATER\": 0.001000, \"POP_CL\": 6, \"POP2000\": 10250, \"WHITE\": 9359, \"BLACK\": 148, \"AMERI_ES\": 9, \"ASIAN\": 505, \"HAWN_PI\": 0, \"OTHER\": 102, \"MULT_RACE\": 127, \"HISPANIC\": 496, \"MALES\": 5075, \"FEMALES\": 5175, \"AGE_UNDER5\": 771, \"AGE_5_17\": 1925, \"AGE_18_21\": 446, \"AGE_22_29\": 1051, \"AGE_30_39\": 1905, \"AGE_40_49\": 1552, \"AGE_50_64\": 1673, \"AGE_65_UP\": 927, \"MED_AGE\": 35.100000, \"MED_AGE_M\": 34.200000, \"MED_AGE_F\": 36.000000, \"HOUSEHOLDS\": 3419, \"AVE_HH_SZ\": 2.980000, \"HSEHLD_1_M\": 207, \"HSEHLD_1_F\": 284, \"MARHH_CHD\": 1142, \"MARHH_NO_C\": 1142, \"MHH_CHILD\": 45, \"FHH_CHILD\": 136, \"FAMILIES\": 2742, \"AVE_FAM_SZ\": 3.310000, \"HSE_UNITS\": 3509, \"VACANT\": 90, \"OWNER_OCC\": 2689, \"RENTER_OCC\": 730 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.116748448753683, 40.856330979297269 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lake Ronkonkoma\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"40838\", \"CAPITAL\": \"N\", \"AREALAND\": 4.913000, \"AREAWATER\": 0.003000, \"POP_CL\": 6, \"POP2000\": 19701, \"WHITE\": 18427, \"BLACK\": 267, \"AMERI_ES\": 30, \"ASIAN\": 474, \"HAWN_PI\": 5, \"OTHER\": 247, \"MULT_RACE\": 251, \"HISPANIC\": 1153, \"MALES\": 9517, \"FEMALES\": 10184, \"AGE_UNDER5\": 1380, \"AGE_5_17\": 3479, \"AGE_18_21\": 831, \"AGE_22_29\": 1883, \"AGE_30_39\": 3506, \"AGE_40_49\": 3071, \"AGE_50_64\": 3149, \"AGE_65_UP\": 2402, \"MED_AGE\": 36.700000, \"MED_AGE_M\": 35.300000, \"MED_AGE_F\": 38.100000, \"HOUSEHOLDS\": 6700, \"AVE_HH_SZ\": 2.860000, \"HSEHLD_1_M\": 516, \"HSEHLD_1_F\": 843, \"MARHH_CHD\": 1986, \"MARHH_NO_C\": 2022, \"MHH_CHILD\": 92, \"FHH_CHILD\": 309, \"FAMILIES\": 5011, \"AVE_FAM_SZ\": 3.320000, \"HSE_UNITS\": 6949, \"VACANT\": 249, \"OWNER_OCC\": 4973, \"RENTER_OCC\": 1727 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.113198474663079, 40.829720999696903 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lancaster\", \"CLASS\": \"village\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"41135\", \"CAPITAL\": \"N\", \"AREALAND\": 2.693000, \"AREAWATER\": 0.029000, \"POP_CL\": 6, \"POP2000\": 11188, \"WHITE\": 11034, \"BLACK\": 36, \"AMERI_ES\": 29, \"ASIAN\": 15, \"HAWN_PI\": 1, \"OTHER\": 20, \"MULT_RACE\": 53, \"HISPANIC\": 91, \"MALES\": 5333, \"FEMALES\": 5855, \"AGE_UNDER5\": 653, \"AGE_5_17\": 1876, \"AGE_18_21\": 456, \"AGE_22_29\": 1050, \"AGE_30_39\": 1731, \"AGE_40_49\": 1742, \"AGE_50_64\": 1691, \"AGE_65_UP\": 1989, \"MED_AGE\": 39.200000, \"MED_AGE_M\": 36.600000, \"MED_AGE_F\": 41.300000, \"HOUSEHOLDS\": 4726, \"AVE_HH_SZ\": 2.340000, \"HSEHLD_1_M\": 561, \"HSEHLD_1_F\": 993, \"MARHH_CHD\": 965, \"MARHH_NO_C\": 1367, \"MHH_CHILD\": 69, \"FHH_CHILD\": 259, \"FAMILIES\": 2960, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 4908, \"VACANT\": 182, \"OWNER_OCC\": 3273, \"RENTER_OCC\": 1453 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -78.673039032041061, 42.900407896980681 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Levittown\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"42081\", \"CAPITAL\": \"N\", \"AREALAND\": 6.876000, \"AREAWATER\": 0.000000, \"POP_CL\": 7, \"POP2000\": 53067, \"WHITE\": 49962, \"BLACK\": 266, \"AMERI_ES\": 36, \"ASIAN\": 1511, \"HAWN_PI\": 10, \"OTHER\": 673, \"MULT_RACE\": 609, \"HISPANIC\": 3601, \"MALES\": 25794, \"FEMALES\": 27273, \"AGE_UNDER5\": 3540, \"AGE_5_17\": 10104, \"AGE_18_21\": 2137, \"AGE_22_29\": 4392, \"AGE_30_39\": 8922, \"AGE_40_49\": 8988, \"AGE_50_64\": 8129, \"AGE_65_UP\": 6855, \"MED_AGE\": 37.400000, \"MED_AGE_M\": 36.300000, \"MED_AGE_F\": 38.400000, \"HOUSEHOLDS\": 17207, \"AVE_HH_SZ\": 3.080000, \"HSEHLD_1_M\": 896, \"HSEHLD_1_F\": 1574, \"MARHH_CHD\": 5672, \"MARHH_NO_C\": 5836, \"MHH_CHILD\": 184, \"FHH_CHILD\": 644, \"FAMILIES\": 14115, \"AVE_FAM_SZ\": 3.400000, \"HSE_UNITS\": 17410, \"VACANT\": 203, \"OWNER_OCC\": 15439, \"RENTER_OCC\": 1768 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.511340883271643, 40.724477344527436 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lindenhurst\", \"CLASS\": \"village\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"42554\", \"CAPITAL\": \"N\", \"AREALAND\": 3.753000, \"AREAWATER\": 0.060000, \"POP_CL\": 6, \"POP2000\": 27819, \"WHITE\": 26213, \"BLACK\": 233, \"AMERI_ES\": 32, \"ASIAN\": 382, \"HAWN_PI\": 3, \"OTHER\": 469, \"MULT_RACE\": 487, \"HISPANIC\": 1813, \"MALES\": 13518, \"FEMALES\": 14301, \"AGE_UNDER5\": 1923, \"AGE_5_17\": 5509, \"AGE_18_21\": 1113, \"AGE_22_29\": 2577, \"AGE_30_39\": 5125, \"AGE_40_49\": 4682, \"AGE_50_64\": 3807, \"AGE_65_UP\": 3083, \"MED_AGE\": 35.800000, \"MED_AGE_M\": 35.100000, \"MED_AGE_F\": 36.600000, \"HOUSEHOLDS\": 9061, \"AVE_HH_SZ\": 3.060000, \"HSEHLD_1_M\": 649, \"HSEHLD_1_F\": 890, \"MARHH_CHD\": 2997, \"MARHH_NO_C\": 2622, \"MHH_CHILD\": 139, \"FHH_CHILD\": 444, \"FAMILIES\": 7081, \"AVE_FAM_SZ\": 3.430000, \"HSE_UNITS\": 9277, \"VACANT\": 216, \"OWNER_OCC\": 7305, \"RENTER_OCC\": 1756 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.372388178219651, 40.685410193459781 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lockport\", \"CLASS\": \"city\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"43082\", \"CAPITAL\": \"N\", \"AREALAND\": 8.528000, \"AREAWATER\": 0.120000, \"POP_CL\": 6, \"POP2000\": 22279, \"WHITE\": 20282, \"BLACK\": 1287, \"AMERI_ES\": 105, \"ASIAN\": 108, \"HAWN_PI\": 2, \"OTHER\": 112, \"MULT_RACE\": 383, \"HISPANIC\": 460, \"MALES\": 10660, \"FEMALES\": 11619, \"AGE_UNDER5\": 1553, \"AGE_5_17\": 4190, \"AGE_18_21\": 1086, \"AGE_22_29\": 2285, \"AGE_30_39\": 3508, \"AGE_40_49\": 3368, \"AGE_50_64\": 3114, \"AGE_65_UP\": 3175, \"MED_AGE\": 35.900000, \"MED_AGE_M\": 34.400000, \"MED_AGE_F\": 37.500000, \"HOUSEHOLDS\": 9459, \"AVE_HH_SZ\": 2.330000, \"HSEHLD_1_M\": 1413, \"HSEHLD_1_F\": 1874, \"MARHH_CHD\": 1819, \"MARHH_NO_C\": 2094, \"MHH_CHILD\": 232, \"FHH_CHILD\": 834, \"FAMILIES\": 5611, \"AVE_FAM_SZ\": 3.030000, \"HSE_UNITS\": 10341, \"VACANT\": 882, \"OWNER_OCC\": 5353, \"RENTER_OCC\": 4106 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -78.690996075383481, 43.169756890333844 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Long Beach\", \"CLASS\": \"city\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"43335\", \"CAPITAL\": \"N\", \"AREALAND\": 2.137000, \"AREAWATER\": 1.757000, \"POP_CL\": 6, \"POP2000\": 35462, \"WHITE\": 29860, \"BLACK\": 2190, \"AMERI_ES\": 75, \"ASIAN\": 822, \"HAWN_PI\": 29, \"OTHER\": 1683, \"MULT_RACE\": 803, \"HISPANIC\": 4540, \"MALES\": 17060, \"FEMALES\": 18402, \"AGE_UNDER5\": 1734, \"AGE_5_17\": 4843, \"AGE_18_21\": 1174, \"AGE_22_29\": 3764, \"AGE_30_39\": 6461, \"AGE_40_49\": 5978, \"AGE_50_64\": 5597, \"AGE_65_UP\": 5911, \"MED_AGE\": 39.600000, \"MED_AGE_M\": 37.600000, \"MED_AGE_F\": 41.400000, \"HOUSEHOLDS\": 14923, \"AVE_HH_SZ\": 2.260000, \"HSEHLD_1_M\": 2453, \"HSEHLD_1_F\": 3025, \"MARHH_CHD\": 2307, \"MARHH_NO_C\": 3657, \"MHH_CHILD\": 187, \"FHH_CHILD\": 735, \"FAMILIES\": 8106, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 16128, \"VACANT\": 1205, \"OWNER_OCC\": 7968, \"RENTER_OCC\": 6955 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.668236466169489, 40.588165433044139 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lynbrook\", \"CLASS\": \"village\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"43874\", \"CAPITAL\": \"N\", \"AREALAND\": 1.999000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 19911, \"WHITE\": 18334, \"BLACK\": 183, \"AMERI_ES\": 11, \"ASIAN\": 596, \"HAWN_PI\": 0, \"OTHER\": 500, \"MULT_RACE\": 287, \"HISPANIC\": 1648, \"MALES\": 9414, \"FEMALES\": 10497, \"AGE_UNDER5\": 1179, \"AGE_5_17\": 3294, \"AGE_18_21\": 672, \"AGE_22_29\": 1697, \"AGE_30_39\": 3228, \"AGE_40_49\": 3149, \"AGE_50_64\": 3177, \"AGE_65_UP\": 3515, \"MED_AGE\": 39.700000, \"MED_AGE_M\": 38.100000, \"MED_AGE_F\": 41.100000, \"HOUSEHOLDS\": 7369, \"AVE_HH_SZ\": 2.660000, \"HSEHLD_1_M\": 671, \"HSEHLD_1_F\": 1159, \"MARHH_CHD\": 1938, \"MARHH_NO_C\": 2365, \"MHH_CHILD\": 59, \"FHH_CHILD\": 250, \"FAMILIES\": 5243, \"AVE_FAM_SZ\": 3.200000, \"HSE_UNITS\": 7570, \"VACANT\": 201, \"OWNER_OCC\": 5364, \"RENTER_OCC\": 2005 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.672921729130053, 40.658205417545354 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mamaroneck\", \"CLASS\": \"village\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"44831\", \"CAPITAL\": \"N\", \"AREALAND\": 3.233000, \"AREAWATER\": 3.459000, \"POP_CL\": 6, \"POP2000\": 18752, \"WHITE\": 15859, \"BLACK\": 778, \"AMERI_ES\": 46, \"ASIAN\": 660, \"HAWN_PI\": 12, \"OTHER\": 909, \"MULT_RACE\": 488, \"HISPANIC\": 3284, \"MALES\": 8987, \"FEMALES\": 9765, \"AGE_UNDER5\": 1191, \"AGE_5_17\": 3163, \"AGE_18_21\": 676, \"AGE_22_29\": 1761, \"AGE_30_39\": 3224, \"AGE_40_49\": 2959, \"AGE_50_64\": 2765, \"AGE_65_UP\": 3013, \"MED_AGE\": 38.100000, \"MED_AGE_M\": 36.500000, \"MED_AGE_F\": 39.800000, \"HOUSEHOLDS\": 7096, \"AVE_HH_SZ\": 2.600000, \"HSEHLD_1_M\": 693, \"HSEHLD_1_F\": 1195, \"MARHH_CHD\": 1870, \"MARHH_NO_C\": 2046, \"MHH_CHILD\": 86, \"FHH_CHILD\": 327, \"FAMILIES\": 4876, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 7353, \"VACANT\": 257, \"OWNER_OCC\": 4189, \"RENTER_OCC\": 2907 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.733655968292979, 40.949068131578812 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Manorville\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"45139\", \"CAPITAL\": \"N\", \"AREALAND\": 25.358000, \"AREAWATER\": 0.042000, \"POP_CL\": 6, \"POP2000\": 11131, \"WHITE\": 10728, \"BLACK\": 131, \"AMERI_ES\": 13, \"ASIAN\": 73, \"HAWN_PI\": 4, \"OTHER\": 83, \"MULT_RACE\": 99, \"HISPANIC\": 461, \"MALES\": 5522, \"FEMALES\": 5609, \"AGE_UNDER5\": 912, \"AGE_5_17\": 2156, \"AGE_18_21\": 329, \"AGE_22_29\": 782, \"AGE_30_39\": 2149, \"AGE_40_49\": 1785, \"AGE_50_64\": 1545, \"AGE_65_UP\": 1473, \"MED_AGE\": 36.700000, \"MED_AGE_M\": 36.200000, \"MED_AGE_F\": 37.200000, \"HOUSEHOLDS\": 4122, \"AVE_HH_SZ\": 2.690000, \"HSEHLD_1_M\": 439, \"HSEHLD_1_F\": 567, \"MARHH_CHD\": 1331, \"MARHH_NO_C\": 1284, \"MHH_CHILD\": 33, \"FHH_CHILD\": 135, \"FAMILIES\": 2939, \"AVE_FAM_SZ\": 3.250000, \"HSE_UNITS\": 4243, \"VACANT\": 121, \"OWNER_OCC\": 3192, \"RENTER_OCC\": 930 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -72.794134349040846, 40.848206557517827 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Massapequa\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"45986\", \"CAPITAL\": \"N\", \"AREALAND\": 3.649000, \"AREAWATER\": 0.368000, \"POP_CL\": 6, \"POP2000\": 22652, \"WHITE\": 22067, \"BLACK\": 38, \"AMERI_ES\": 5, \"ASIAN\": 287, \"HAWN_PI\": 6, \"OTHER\": 84, \"MULT_RACE\": 165, \"HISPANIC\": 587, \"MALES\": 11029, \"FEMALES\": 11623, \"AGE_UNDER5\": 1556, \"AGE_5_17\": 4233, \"AGE_18_21\": 750, \"AGE_22_29\": 1573, \"AGE_30_39\": 3621, \"AGE_40_49\": 3808, \"AGE_50_64\": 3862, \"AGE_65_UP\": 3249, \"MED_AGE\": 39.100000, \"MED_AGE_M\": 38.100000, \"MED_AGE_F\": 40.000000, \"HOUSEHOLDS\": 7417, \"AVE_HH_SZ\": 3.050000, \"HSEHLD_1_M\": 321, \"HSEHLD_1_F\": 608, \"MARHH_CHD\": 2614, \"MARHH_NO_C\": 2828, \"MHH_CHILD\": 54, \"FHH_CHILD\": 176, \"FAMILIES\": 6295, \"AVE_FAM_SZ\": 3.330000, \"HSE_UNITS\": 7514, \"VACANT\": 97, \"OWNER_OCC\": 6971, \"RENTER_OCC\": 446 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.471302392173058, 40.670412575690989 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Massapequa Park\", \"CLASS\": \"village\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"45997\", \"CAPITAL\": \"N\", \"AREALAND\": 2.159000, \"AREAWATER\": 0.045000, \"POP_CL\": 6, \"POP2000\": 17499, \"WHITE\": 17039, \"BLACK\": 38, \"AMERI_ES\": 4, \"ASIAN\": 246, \"HAWN_PI\": 4, \"OTHER\": 69, \"MULT_RACE\": 99, \"HISPANIC\": 525, \"MALES\": 8516, \"FEMALES\": 8983, \"AGE_UNDER5\": 1282, \"AGE_5_17\": 3144, \"AGE_18_21\": 567, \"AGE_22_29\": 1216, \"AGE_30_39\": 2779, \"AGE_40_49\": 2740, \"AGE_50_64\": 2973, \"AGE_65_UP\": 2798, \"MED_AGE\": 39.200000, \"MED_AGE_M\": 38.000000, \"MED_AGE_F\": 40.300000, \"HOUSEHOLDS\": 5762, \"AVE_HH_SZ\": 3.030000, \"HSEHLD_1_M\": 209, \"HSEHLD_1_F\": 524, \"MARHH_CHD\": 1960, \"MARHH_NO_C\": 2309, \"MHH_CHILD\": 26, \"FHH_CHILD\": 118, \"FAMILIES\": 4932, \"AVE_FAM_SZ\": 3.320000, \"HSE_UNITS\": 5809, \"VACANT\": 47, \"OWNER_OCC\": 5564, \"RENTER_OCC\": 198 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.44964716756148, 40.684521709946473 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Massena\", \"CLASS\": \"village\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"46019\", \"CAPITAL\": \"N\", \"AREALAND\": 4.533000, \"AREAWATER\": 0.181000, \"POP_CL\": 6, \"POP2000\": 11209, \"WHITE\": 10703, \"BLACK\": 40, \"AMERI_ES\": 237, \"ASIAN\": 82, \"HAWN_PI\": 4, \"OTHER\": 27, \"MULT_RACE\": 116, \"HISPANIC\": 133, \"MALES\": 5260, \"FEMALES\": 5949, \"AGE_UNDER5\": 695, \"AGE_5_17\": 2001, \"AGE_18_21\": 459, \"AGE_22_29\": 947, \"AGE_30_39\": 1560, \"AGE_40_49\": 1766, \"AGE_50_64\": 1657, \"AGE_65_UP\": 2124, \"MED_AGE\": 39.700000, \"MED_AGE_M\": 37.700000, \"MED_AGE_F\": 41.700000, \"HOUSEHOLDS\": 4793, \"AVE_HH_SZ\": 2.290000, \"HSEHLD_1_M\": 589, \"HSEHLD_1_F\": 979, \"MARHH_CHD\": 897, \"MARHH_NO_C\": 1276, \"MHH_CHILD\": 125, \"FHH_CHILD\": 385, \"FAMILIES\": 2936, \"AVE_FAM_SZ\": 2.890000, \"HSE_UNITS\": 5103, \"VACANT\": 310, \"OWNER_OCC\": 2951, \"RENTER_OCC\": 1842 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.891044775223222, 44.93032773585508 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mastic\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"46074\", \"CAPITAL\": \"N\", \"AREALAND\": 4.481000, \"AREAWATER\": 0.340000, \"POP_CL\": 6, \"POP2000\": 15436, \"WHITE\": 13161, \"BLACK\": 934, \"AMERI_ES\": 265, \"ASIAN\": 173, \"HAWN_PI\": 1, \"OTHER\": 554, \"MULT_RACE\": 348, \"HISPANIC\": 1875, \"MALES\": 7678, \"FEMALES\": 7758, \"AGE_UNDER5\": 1203, \"AGE_5_17\": 3843, \"AGE_18_21\": 835, \"AGE_22_29\": 1650, \"AGE_30_39\": 2629, \"AGE_40_49\": 2450, \"AGE_50_64\": 1971, \"AGE_65_UP\": 855, \"MED_AGE\": 30.800000, \"MED_AGE_M\": 30.100000, \"MED_AGE_F\": 31.800000, \"HOUSEHOLDS\": 4451, \"AVE_HH_SZ\": 3.450000, \"HSEHLD_1_M\": 245, \"HSEHLD_1_F\": 240, \"MARHH_CHD\": 1628, \"MARHH_NO_C\": 1127, \"MHH_CHILD\": 136, \"FHH_CHILD\": 453, \"FAMILIES\": 3762, \"AVE_FAM_SZ\": 3.670000, \"HSE_UNITS\": 4732, \"VACANT\": 281, \"OWNER_OCC\": 3530, \"RENTER_OCC\": 921 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -72.844161678374036, 40.802104116527268 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mastic Beach\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"46085\", \"CAPITAL\": \"N\", \"AREALAND\": 4.231000, \"AREAWATER\": 1.080000, \"POP_CL\": 6, \"POP2000\": 11543, \"WHITE\": 10176, \"BLACK\": 580, \"AMERI_ES\": 56, \"ASIAN\": 105, \"HAWN_PI\": 1, \"OTHER\": 305, \"MULT_RACE\": 320, \"HISPANIC\": 1222, \"MALES\": 5765, \"FEMALES\": 5778, \"AGE_UNDER5\": 974, \"AGE_5_17\": 2696, \"AGE_18_21\": 575, \"AGE_22_29\": 1180, \"AGE_30_39\": 1936, \"AGE_40_49\": 1823, \"AGE_50_64\": 1489, \"AGE_65_UP\": 870, \"MED_AGE\": 32.100000, \"MED_AGE_M\": 31.100000, \"MED_AGE_F\": 32.900000, \"HOUSEHOLDS\": 3755, \"AVE_HH_SZ\": 3.070000, \"HSEHLD_1_M\": 367, \"HSEHLD_1_F\": 325, \"MARHH_CHD\": 1062, \"MARHH_NO_C\": 865, \"MHH_CHILD\": 150, \"FHH_CHILD\": 386, \"FAMILIES\": 2794, \"AVE_FAM_SZ\": 3.490000, \"HSE_UNITS\": 4375, \"VACANT\": 620, \"OWNER_OCC\": 2727, \"RENTER_OCC\": 1028 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -72.846566930677426, 40.761336085525734 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Medford\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"46404\", \"CAPITAL\": \"N\", \"AREALAND\": 10.527000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 21985, \"WHITE\": 19607, \"BLACK\": 875, \"AMERI_ES\": 56, \"ASIAN\": 303, \"HAWN_PI\": 5, \"OTHER\": 683, \"MULT_RACE\": 456, \"HISPANIC\": 2373, \"MALES\": 10815, \"FEMALES\": 11170, \"AGE_UNDER5\": 1553, \"AGE_5_17\": 4536, \"AGE_18_21\": 1097, \"AGE_22_29\": 2228, \"AGE_30_39\": 3538, \"AGE_40_49\": 3552, \"AGE_50_64\": 3757, \"AGE_65_UP\": 1724, \"MED_AGE\": 34.900000, \"MED_AGE_M\": 34.000000, \"MED_AGE_F\": 35.700000, \"HOUSEHOLDS\": 6791, \"AVE_HH_SZ\": 3.230000, \"HSEHLD_1_M\": 345, \"HSEHLD_1_F\": 551, \"MARHH_CHD\": 2449, \"MARHH_NO_C\": 2181, \"MHH_CHILD\": 120, \"FHH_CHILD\": 321, \"FAMILIES\": 5627, \"AVE_FAM_SZ\": 3.520000, \"HSE_UNITS\": 6939, \"VACANT\": 148, \"OWNER_OCC\": 6062, \"RENTER_OCC\": 729 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -72.986320007525691, 40.817745961481343 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Melville\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"46514\", \"CAPITAL\": \"N\", \"AREALAND\": 11.319000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14533, \"WHITE\": 13070, \"BLACK\": 300, \"AMERI_ES\": 5, \"ASIAN\": 787, \"HAWN_PI\": 10, \"OTHER\": 151, \"MULT_RACE\": 210, \"HISPANIC\": 540, \"MALES\": 7066, \"FEMALES\": 7467, \"AGE_UNDER5\": 1114, \"AGE_5_17\": 2596, \"AGE_18_21\": 410, \"AGE_22_29\": 1036, \"AGE_30_39\": 2334, \"AGE_40_49\": 2284, \"AGE_50_64\": 2707, \"AGE_65_UP\": 2052, \"MED_AGE\": 39.100000, \"MED_AGE_M\": 38.500000, \"MED_AGE_F\": 39.800000, \"HOUSEHOLDS\": 4930, \"AVE_HH_SZ\": 2.880000, \"HSEHLD_1_M\": 306, \"HSEHLD_1_F\": 466, \"MARHH_CHD\": 1709, \"MARHH_NO_C\": 1851, \"MHH_CHILD\": 43, \"FHH_CHILD\": 126, \"FAMILIES\": 3994, \"AVE_FAM_SZ\": 3.230000, \"HSE_UNITS\": 5141, \"VACANT\": 211, \"OWNER_OCC\": 4242, \"RENTER_OCC\": 688 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.405597583879299, 40.791603001611229 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Merrick\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"46668\", \"CAPITAL\": \"N\", \"AREALAND\": 4.197000, \"AREAWATER\": 0.997000, \"POP_CL\": 6, \"POP2000\": 22764, \"WHITE\": 21666, \"BLACK\": 127, \"AMERI_ES\": 23, \"ASIAN\": 510, \"HAWN_PI\": 2, \"OTHER\": 214, \"MULT_RACE\": 222, \"HISPANIC\": 842, \"MALES\": 10980, \"FEMALES\": 11784, \"AGE_UNDER5\": 1602, \"AGE_5_17\": 4663, \"AGE_18_21\": 692, \"AGE_22_29\": 1381, \"AGE_30_39\": 3251, \"AGE_40_49\": 4239, \"AGE_50_64\": 4051, \"AGE_65_UP\": 2885, \"MED_AGE\": 39.500000, \"MED_AGE_M\": 39.300000, \"MED_AGE_F\": 39.800000, \"HOUSEHOLDS\": 7524, \"AVE_HH_SZ\": 3.020000, \"HSEHLD_1_M\": 288, \"HSEHLD_1_F\": 582, \"MARHH_CHD\": 2940, \"MARHH_NO_C\": 2781, \"MHH_CHILD\": 55, \"FHH_CHILD\": 233, \"FAMILIES\": 6478, \"AVE_FAM_SZ\": 3.270000, \"HSE_UNITS\": 7602, \"VACANT\": 78, \"OWNER_OCC\": 7090, \"RENTER_OCC\": 434 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.55375418028315, 40.65948408574377 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Middletown\", \"CLASS\": \"city\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"47042\", \"CAPITAL\": \"N\", \"AREALAND\": 5.140000, \"AREAWATER\": 0.013000, \"POP_CL\": 6, \"POP2000\": 25388, \"WHITE\": 17437, \"BLACK\": 3840, \"AMERI_ES\": 190, \"ASIAN\": 429, \"HAWN_PI\": 7, \"OTHER\": 2369, \"MULT_RACE\": 1116, \"HISPANIC\": 6375, \"MALES\": 12264, \"FEMALES\": 13124, \"AGE_UNDER5\": 1998, \"AGE_5_17\": 5057, \"AGE_18_21\": 1368, \"AGE_22_29\": 2954, \"AGE_30_39\": 4030, \"AGE_40_49\": 3518, \"AGE_50_64\": 3427, \"AGE_65_UP\": 3036, \"MED_AGE\": 33.400000, \"MED_AGE_M\": 31.800000, \"MED_AGE_F\": 34.700000, \"HOUSEHOLDS\": 9466, \"AVE_HH_SZ\": 2.620000, \"HSEHLD_1_M\": 1156, \"HSEHLD_1_F\": 1684, \"MARHH_CHD\": 1894, \"MARHH_NO_C\": 1895, \"MHH_CHILD\": 307, \"FHH_CHILD\": 1020, \"FAMILIES\": 5963, \"AVE_FAM_SZ\": 3.270000, \"HSE_UNITS\": 10124, \"VACANT\": 658, \"OWNER_OCC\": 4329, \"RENTER_OCC\": 5137 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.422164609314152, 41.445759144732989 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Miller Place\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"47306\", \"CAPITAL\": \"N\", \"AREALAND\": 7.207000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10580, \"WHITE\": 10237, \"BLACK\": 45, \"AMERI_ES\": 20, \"ASIAN\": 143, \"HAWN_PI\": 0, \"OTHER\": 52, \"MULT_RACE\": 83, \"HISPANIC\": 339, \"MALES\": 5233, \"FEMALES\": 5347, \"AGE_UNDER5\": 814, \"AGE_5_17\": 2384, \"AGE_18_21\": 397, \"AGE_22_29\": 734, \"AGE_30_39\": 1753, \"AGE_40_49\": 1963, \"AGE_50_64\": 1766, \"AGE_65_UP\": 769, \"MED_AGE\": 36.200000, \"MED_AGE_M\": 35.700000, \"MED_AGE_F\": 36.600000, \"HOUSEHOLDS\": 3397, \"AVE_HH_SZ\": 3.100000, \"HSEHLD_1_M\": 194, \"HSEHLD_1_F\": 246, \"MARHH_CHD\": 1431, \"MARHH_NO_C\": 1083, \"MHH_CHILD\": 36, \"FHH_CHILD\": 120, \"FAMILIES\": 2834, \"AVE_FAM_SZ\": 3.420000, \"HSE_UNITS\": 3512, \"VACANT\": 115, \"OWNER_OCC\": 3091, \"RENTER_OCC\": 306 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -72.993282847489553, 40.946636936870519 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mineola\", \"CLASS\": \"village\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"47636\", \"CAPITAL\": \"N\", \"AREALAND\": 1.861000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 19234, \"WHITE\": 16617, \"BLACK\": 199, \"AMERI_ES\": 56, \"ASIAN\": 870, \"HAWN_PI\": 8, \"OTHER\": 755, \"MULT_RACE\": 729, \"HISPANIC\": 2507, \"MALES\": 9244, \"FEMALES\": 9990, \"AGE_UNDER5\": 1162, \"AGE_5_17\": 2722, \"AGE_18_21\": 759, \"AGE_22_29\": 2112, \"AGE_30_39\": 3457, \"AGE_40_49\": 3043, \"AGE_50_64\": 2957, \"AGE_65_UP\": 3022, \"MED_AGE\": 38.200000, \"MED_AGE_M\": 36.500000, \"MED_AGE_F\": 40.000000, \"HOUSEHOLDS\": 7473, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 772, \"HSEHLD_1_F\": 1404, \"MARHH_CHD\": 1750, \"MARHH_NO_C\": 2226, \"MHH_CHILD\": 59, \"FHH_CHILD\": 206, \"FAMILIES\": 4955, \"AVE_FAM_SZ\": 3.200000, \"HSE_UNITS\": 7650, \"VACANT\": 177, \"OWNER_OCC\": 4689, \"RENTER_OCC\": 2784 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.63822889661455, 40.747196620388316 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Monsey\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"48010\", \"CAPITAL\": \"N\", \"AREALAND\": 2.213000, \"AREAWATER\": 0.020000, \"POP_CL\": 6, \"POP2000\": 14504, \"WHITE\": 13462, \"BLACK\": 626, \"AMERI_ES\": 5, \"ASIAN\": 152, \"HAWN_PI\": 2, \"OTHER\": 101, \"MULT_RACE\": 156, \"HISPANIC\": 415, \"MALES\": 7491, \"FEMALES\": 7013, \"AGE_UNDER5\": 1819, \"AGE_5_17\": 5228, \"AGE_18_21\": 1024, \"AGE_22_29\": 1212, \"AGE_30_39\": 1207, \"AGE_40_49\": 1534, \"AGE_50_64\": 1545, \"AGE_65_UP\": 935, \"MED_AGE\": 18.600000, \"MED_AGE_M\": 18.600000, \"MED_AGE_F\": 18.700000, \"HOUSEHOLDS\": 2981, \"AVE_HH_SZ\": 4.740000, \"HSEHLD_1_M\": 141, \"HSEHLD_1_F\": 176, \"MARHH_CHD\": 1610, \"MARHH_NO_C\": 714, \"MHH_CHILD\": 47, \"FHH_CHILD\": 98, \"FAMILIES\": 2597, \"AVE_FAM_SZ\": 5.160000, \"HSE_UNITS\": 3098, \"VACANT\": 117, \"OWNER_OCC\": 1620, \"RENTER_OCC\": 1361 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.066082117147317, 41.119503544257711 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mount Vernon\", \"CLASS\": \"city\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"49121\", \"CAPITAL\": \"N\", \"AREALAND\": 4.358000, \"AREAWATER\": 0.019000, \"POP_CL\": 7, \"POP2000\": 68381, \"WHITE\": 19577, \"BLACK\": 40743, \"AMERI_ES\": 219, \"ASIAN\": 1448, \"HAWN_PI\": 43, \"OTHER\": 3316, \"MULT_RACE\": 3035, \"HISPANIC\": 7083, \"MALES\": 30861, \"FEMALES\": 37520, \"AGE_UNDER5\": 4827, \"AGE_5_17\": 12491, \"AGE_18_21\": 3181, \"AGE_22_29\": 7084, \"AGE_30_39\": 11434, \"AGE_40_49\": 9758, \"AGE_50_64\": 10763, \"AGE_65_UP\": 8843, \"MED_AGE\": 35.800000, \"MED_AGE_M\": 34.100000, \"MED_AGE_F\": 37.400000, \"HOUSEHOLDS\": 25729, \"AVE_HH_SZ\": 2.630000, \"HSEHLD_1_M\": 2962, \"HSEHLD_1_F\": 4757, \"MARHH_CHD\": 4321, \"MARHH_NO_C\": 5166, \"MHH_CHILD\": 513, \"FHH_CHILD\": 3170, \"FAMILIES\": 16669, \"AVE_FAM_SZ\": 3.270000, \"HSE_UNITS\": 27048, \"VACANT\": 1319, \"OWNER_OCC\": 9390, \"RENTER_OCC\": 16339 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.830636224741966, 40.91406762876349 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Nanuet\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"49407\", \"CAPITAL\": \"N\", \"AREALAND\": 5.424000, \"AREAWATER\": 0.003000, \"POP_CL\": 6, \"POP2000\": 16707, \"WHITE\": 11993, \"BLACK\": 2228, \"AMERI_ES\": 38, \"ASIAN\": 1620, \"HAWN_PI\": 14, \"OTHER\": 385, \"MULT_RACE\": 429, \"HISPANIC\": 1364, \"MALES\": 7985, \"FEMALES\": 8722, \"AGE_UNDER5\": 1098, \"AGE_5_17\": 2855, \"AGE_18_21\": 689, \"AGE_22_29\": 1553, \"AGE_30_39\": 2840, \"AGE_40_49\": 2541, \"AGE_50_64\": 2974, \"AGE_65_UP\": 2157, \"MED_AGE\": 37.600000, \"MED_AGE_M\": 36.000000, \"MED_AGE_F\": 39.300000, \"HOUSEHOLDS\": 5975, \"AVE_HH_SZ\": 2.710000, \"HSEHLD_1_M\": 530, \"HSEHLD_1_F\": 872, \"MARHH_CHD\": 1624, \"MARHH_NO_C\": 1873, \"MHH_CHILD\": 72, \"FHH_CHILD\": 265, \"FAMILIES\": 4303, \"AVE_FAM_SZ\": 3.230000, \"HSE_UNITS\": 6134, \"VACANT\": 159, \"OWNER_OCC\": 4238, \"RENTER_OCC\": 1737 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.015740957446724, 41.095302766806888 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Nesconset\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"49825\", \"CAPITAL\": \"N\", \"AREALAND\": 3.827000, \"AREAWATER\": 0.004000, \"POP_CL\": 6, \"POP2000\": 11992, \"WHITE\": 11317, \"BLACK\": 115, \"AMERI_ES\": 13, \"ASIAN\": 373, \"HAWN_PI\": 8, \"OTHER\": 68, \"MULT_RACE\": 98, \"HISPANIC\": 403, \"MALES\": 5875, \"FEMALES\": 6117, \"AGE_UNDER5\": 858, \"AGE_5_17\": 2219, \"AGE_18_21\": 414, \"AGE_22_29\": 1096, \"AGE_30_39\": 2174, \"AGE_40_49\": 1812, \"AGE_50_64\": 2263, \"AGE_65_UP\": 1156, \"MED_AGE\": 36.700000, \"MED_AGE_M\": 35.800000, \"MED_AGE_F\": 37.600000, \"HOUSEHOLDS\": 3964, \"AVE_HH_SZ\": 2.970000, \"HSEHLD_1_M\": 274, \"HSEHLD_1_F\": 310, \"MARHH_CHD\": 1422, \"MARHH_NO_C\": 1414, \"MHH_CHILD\": 34, \"FHH_CHILD\": 118, \"FAMILIES\": 3226, \"AVE_FAM_SZ\": 3.310000, \"HSE_UNITS\": 4227, \"VACANT\": 263, \"OWNER_OCC\": 3165, \"RENTER_OCC\": 799 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.15075331982446, 40.84610172970801 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Newburgh\", \"CLASS\": \"city\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"50034\", \"CAPITAL\": \"N\", \"AREALAND\": 3.822000, \"AREAWATER\": 0.959000, \"POP_CL\": 6, \"POP2000\": 28259, \"WHITE\": 11962, \"BLACK\": 9314, \"AMERI_ES\": 201, \"ASIAN\": 215, \"HAWN_PI\": 16, \"OTHER\": 5119, \"MULT_RACE\": 1432, \"HISPANIC\": 10257, \"MALES\": 13382, \"FEMALES\": 14877, \"AGE_UNDER5\": 2766, \"AGE_5_17\": 6613, \"AGE_18_21\": 2275, \"AGE_22_29\": 3440, \"AGE_30_39\": 4174, \"AGE_40_49\": 3296, \"AGE_50_64\": 3098, \"AGE_65_UP\": 2597, \"MED_AGE\": 27.800000, \"MED_AGE_M\": 26.600000, \"MED_AGE_F\": 28.900000, \"HOUSEHOLDS\": 9144, \"AVE_HH_SZ\": 2.970000, \"HSEHLD_1_M\": 1060, \"HSEHLD_1_F\": 1414, \"MARHH_CHD\": 1741, \"MARHH_NO_C\": 1381, \"MHH_CHILD\": 344, \"FHH_CHILD\": 1575, \"FAMILIES\": 6078, \"AVE_FAM_SZ\": 3.620000, \"HSE_UNITS\": 10476, \"VACANT\": 1332, \"OWNER_OCC\": 2810, \"RENTER_OCC\": 6334 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.019757634942948, 41.503199786976694 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"New Cassel\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"50067\", \"CAPITAL\": \"N\", \"AREALAND\": 1.466000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 13298, \"WHITE\": 4207, \"BLACK\": 6292, \"AMERI_ES\": 60, \"ASIAN\": 188, \"HAWN_PI\": 6, \"OTHER\": 1674, \"MULT_RACE\": 871, \"HISPANIC\": 5467, \"MALES\": 6615, \"FEMALES\": 6683, \"AGE_UNDER5\": 1093, \"AGE_5_17\": 2744, \"AGE_18_21\": 896, \"AGE_22_29\": 1983, \"AGE_30_39\": 2223, \"AGE_40_49\": 1597, \"AGE_50_64\": 1628, \"AGE_65_UP\": 1134, \"MED_AGE\": 29.800000, \"MED_AGE_M\": 28.600000, \"MED_AGE_F\": 31.200000, \"HOUSEHOLDS\": 2972, \"AVE_HH_SZ\": 4.460000, \"HSEHLD_1_M\": 156, \"HSEHLD_1_F\": 222, \"MARHH_CHD\": 819, \"MARHH_NO_C\": 673, \"MHH_CHILD\": 112, \"FHH_CHILD\": 277, \"FAMILIES\": 2449, \"AVE_FAM_SZ\": 4.400000, \"HSE_UNITS\": 3067, \"VACANT\": 95, \"OWNER_OCC\": 1856, \"RENTER_OCC\": 1116 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.566885119307955, 40.760702025446989 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"New City\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"50100\", \"CAPITAL\": \"N\", \"AREALAND\": 15.602000, \"AREAWATER\": 0.696000, \"POP_CL\": 6, \"POP2000\": 34038, \"WHITE\": 28963, \"BLACK\": 1591, \"AMERI_ES\": 28, \"ASIAN\": 2378, \"HAWN_PI\": 7, \"OTHER\": 616, \"MULT_RACE\": 455, \"HISPANIC\": 1999, \"MALES\": 16671, \"FEMALES\": 17367, \"AGE_UNDER5\": 2121, \"AGE_5_17\": 6612, \"AGE_18_21\": 1162, \"AGE_22_29\": 2293, \"AGE_30_39\": 4709, \"AGE_40_49\": 5648, \"AGE_50_64\": 7429, \"AGE_65_UP\": 4064, \"MED_AGE\": 40.200000, \"MED_AGE_M\": 39.100000, \"MED_AGE_F\": 41.200000, \"HOUSEHOLDS\": 11030, \"AVE_HH_SZ\": 3.020000, \"HSEHLD_1_M\": 448, \"HSEHLD_1_F\": 837, \"MARHH_CHD\": 3976, \"MARHH_NO_C\": 4419, \"MHH_CHILD\": 99, \"FHH_CHILD\": 355, \"FAMILIES\": 9500, \"AVE_FAM_SZ\": 3.270000, \"HSE_UNITS\": 11161, \"VACANT\": 131, \"OWNER_OCC\": 10008, \"RENTER_OCC\": 1022 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.995021578649144, 41.145501866158959 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"New Rochelle\", \"CLASS\": \"city\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"50617\", \"CAPITAL\": \"N\", \"AREALAND\": 10.351000, \"AREAWATER\": 2.877000, \"POP_CL\": 7, \"POP2000\": 72182, \"WHITE\": 49001, \"BLACK\": 13848, \"AMERI_ES\": 141, \"ASIAN\": 2334, \"HAWN_PI\": 35, \"OTHER\": 4535, \"MULT_RACE\": 2288, \"HISPANIC\": 14492, \"MALES\": 34322, \"FEMALES\": 37860, \"AGE_UNDER5\": 4879, \"AGE_5_17\": 12472, \"AGE_18_21\": 3796, \"AGE_22_29\": 7139, \"AGE_30_39\": 11225, \"AGE_40_49\": 10409, \"AGE_50_64\": 11077, \"AGE_65_UP\": 11185, \"MED_AGE\": 37.000000, \"MED_AGE_M\": 35.200000, \"MED_AGE_F\": 38.700000, \"HOUSEHOLDS\": 26189, \"AVE_HH_SZ\": 2.680000, \"HSEHLD_1_M\": 2688, \"HSEHLD_1_F\": 4635, \"MARHH_CHD\": 6626, \"MARHH_NO_C\": 6609, \"MHH_CHILD\": 376, \"FHH_CHILD\": 1564, \"FAMILIES\": 17541, \"AVE_FAM_SZ\": 3.290000, \"HSE_UNITS\": 26995, \"VACANT\": 806, \"OWNER_OCC\": 13176, \"RENTER_OCC\": 13013 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.784362386173697, 40.928591865002169 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"New York\", \"CLASS\": \"city\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"51000\", \"CAPITAL\": \"N\", \"AREALAND\": 303.309000, \"AREAWATER\": 165.563000, \"POP_CL\": 10, \"POP2000\": 8008278, \"WHITE\": 3576385, \"BLACK\": 2129762, \"AMERI_ES\": 41289, \"ASIAN\": 787047, \"HAWN_PI\": 5430, \"OTHER\": 1074406, \"MULT_RACE\": 393959, \"HISPANIC\": 2160554, \"MALES\": 3794204, \"FEMALES\": 4214074, \"AGE_UNDER5\": 540878, \"AGE_5_17\": 1399391, \"AGE_18_21\": 433490, \"AGE_22_29\": 1050181, \"AGE_30_39\": 1348263, \"AGE_40_49\": 1133497, \"AGE_50_64\": 1164721, \"AGE_65_UP\": 937857, \"MED_AGE\": 34.200000, \"MED_AGE_M\": 32.700000, \"MED_AGE_F\": 35.600000, \"HOUSEHOLDS\": 3021588, \"AVE_HH_SZ\": 2.590000, \"HSEHLD_1_M\": 404976, \"HSEHLD_1_F\": 557648, \"MARHH_CHD\": 532402, \"MARHH_NO_C\": 591903, \"MHH_CHILD\": 52854, \"FHH_CHILD\": 312600, \"FAMILIES\": 1853223, \"AVE_FAM_SZ\": 3.320000, \"HSE_UNITS\": 3200912, \"VACANT\": 179324, \"OWNER_OCC\": 912296, \"RENTER_OCC\": 2109292 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.918049081815809, 40.704241178547157 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Niagara Falls\", \"CLASS\": \"city\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"51055\", \"CAPITAL\": \"N\", \"AREALAND\": 14.054000, \"AREAWATER\": 2.749000, \"POP_CL\": 7, \"POP2000\": 55593, \"WHITE\": 42370, \"BLACK\": 10409, \"AMERI_ES\": 911, \"ASIAN\": 394, \"HAWN_PI\": 26, \"OTHER\": 378, \"MULT_RACE\": 1105, \"HISPANIC\": 1114, \"MALES\": 26002, \"FEMALES\": 29591, \"AGE_UNDER5\": 3578, \"AGE_5_17\": 10163, \"AGE_18_21\": 2833, \"AGE_22_29\": 5217, \"AGE_30_39\": 7728, \"AGE_40_49\": 8148, \"AGE_50_64\": 7606, \"AGE_65_UP\": 10320, \"MED_AGE\": 38.000000, \"MED_AGE_M\": 36.500000, \"MED_AGE_F\": 39.400000, \"HOUSEHOLDS\": 24099, \"AVE_HH_SZ\": 2.270000, \"HSEHLD_1_M\": 3719, \"HSEHLD_1_F\": 4929, \"MARHH_CHD\": 3441, \"MARHH_NO_C\": 5276, \"MHH_CHILD\": 524, \"FHH_CHILD\": 2736, \"FAMILIES\": 14258, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 27837, \"VACANT\": 3738, \"OWNER_OCC\": 13888, \"RENTER_OCC\": 10211 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.01734626055314, 43.094304859269734 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"North Amityville\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"51396\", \"CAPITAL\": \"N\", \"AREALAND\": 2.433000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 16572, \"WHITE\": 3091, \"BLACK\": 11386, \"AMERI_ES\": 183, \"ASIAN\": 173, \"HAWN_PI\": 12, \"OTHER\": 939, \"MULT_RACE\": 788, \"HISPANIC\": 2242, \"MALES\": 7498, \"FEMALES\": 9074, \"AGE_UNDER5\": 1224, \"AGE_5_17\": 3716, \"AGE_18_21\": 897, \"AGE_22_29\": 1739, \"AGE_30_39\": 2561, \"AGE_40_49\": 2186, \"AGE_50_64\": 2291, \"AGE_65_UP\": 1958, \"MED_AGE\": 32.800000, \"MED_AGE_M\": 30.300000, \"MED_AGE_F\": 35.000000, \"HOUSEHOLDS\": 5045, \"AVE_HH_SZ\": 3.240000, \"HSEHLD_1_M\": 463, \"HSEHLD_1_F\": 834, \"MARHH_CHD\": 933, \"MARHH_NO_C\": 959, \"MHH_CHILD\": 124, \"FHH_CHILD\": 640, \"FAMILIES\": 3462, \"AVE_FAM_SZ\": 3.840000, \"HSE_UNITS\": 5308, \"VACANT\": 263, \"OWNER_OCC\": 3102, \"RENTER_OCC\": 1943 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.412960139970366, 40.700152939679072 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"North Babylon\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"51440\", \"CAPITAL\": \"N\", \"AREALAND\": 3.367000, \"AREAWATER\": 0.053000, \"POP_CL\": 6, \"POP2000\": 17877, \"WHITE\": 16456, \"BLACK\": 371, \"AMERI_ES\": 31, \"ASIAN\": 373, \"HAWN_PI\": 6, \"OTHER\": 348, \"MULT_RACE\": 292, \"HISPANIC\": 1313, \"MALES\": 8597, \"FEMALES\": 9280, \"AGE_UNDER5\": 1218, \"AGE_5_17\": 2991, \"AGE_18_21\": 633, \"AGE_22_29\": 1704, \"AGE_30_39\": 3225, \"AGE_40_49\": 2858, \"AGE_50_64\": 2733, \"AGE_65_UP\": 2515, \"MED_AGE\": 37.700000, \"MED_AGE_M\": 36.700000, \"MED_AGE_F\": 38.500000, \"HOUSEHOLDS\": 6146, \"AVE_HH_SZ\": 2.900000, \"HSEHLD_1_M\": 404, \"HSEHLD_1_F\": 709, \"MARHH_CHD\": 1771, \"MARHH_NO_C\": 2057, \"MHH_CHILD\": 77, \"FHH_CHILD\": 206, \"FAMILIES\": 4708, \"AVE_FAM_SZ\": 3.300000, \"HSE_UNITS\": 6271, \"VACANT\": 125, \"OWNER_OCC\": 4985, \"RENTER_OCC\": 1161 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.321551690181138, 40.730608530990068 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"North Bay Shore\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"51495\", \"CAPITAL\": \"N\", \"AREALAND\": 2.977000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14992, \"WHITE\": 7269, \"BLACK\": 2821, \"AMERI_ES\": 95, \"ASIAN\": 306, \"HAWN_PI\": 12, \"OTHER\": 3491, \"MULT_RACE\": 998, \"HISPANIC\": 7608, \"MALES\": 7552, \"FEMALES\": 7440, \"AGE_UNDER5\": 1241, \"AGE_5_17\": 3217, \"AGE_18_21\": 957, \"AGE_22_29\": 1914, \"AGE_30_39\": 2656, \"AGE_40_49\": 2080, \"AGE_50_64\": 1890, \"AGE_65_UP\": 1037, \"MED_AGE\": 30.600000, \"MED_AGE_M\": 29.500000, \"MED_AGE_F\": 32.000000, \"HOUSEHOLDS\": 3794, \"AVE_HH_SZ\": 3.950000, \"HSEHLD_1_M\": 182, \"HSEHLD_1_F\": 212, \"MARHH_CHD\": 1250, \"MARHH_NO_C\": 1004, \"MHH_CHILD\": 117, \"FHH_CHILD\": 361, \"FAMILIES\": 3220, \"AVE_FAM_SZ\": 3.980000, \"HSE_UNITS\": 3992, \"VACANT\": 198, \"OWNER_OCC\": 2850, \"RENTER_OCC\": 944 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.260708981386529, 40.75913294275761 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"North Bellmore\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"51517\", \"CAPITAL\": \"N\", \"AREALAND\": 2.609000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 20079, \"WHITE\": 18530, \"BLACK\": 430, \"AMERI_ES\": 13, \"ASIAN\": 633, \"HAWN_PI\": 5, \"OTHER\": 205, \"MULT_RACE\": 263, \"HISPANIC\": 913, \"MALES\": 9748, \"FEMALES\": 10331, \"AGE_UNDER5\": 1379, \"AGE_5_17\": 3735, \"AGE_18_21\": 768, \"AGE_22_29\": 1483, \"AGE_30_39\": 3170, \"AGE_40_49\": 3514, \"AGE_50_64\": 3078, \"AGE_65_UP\": 2952, \"MED_AGE\": 38.600000, \"MED_AGE_M\": 37.600000, \"MED_AGE_F\": 39.600000, \"HOUSEHOLDS\": 6555, \"AVE_HH_SZ\": 3.040000, \"HSEHLD_1_M\": 353, \"HSEHLD_1_F\": 579, \"MARHH_CHD\": 2286, \"MARHH_NO_C\": 2311, \"MHH_CHILD\": 58, \"FHH_CHILD\": 215, \"FAMILIES\": 5406, \"AVE_FAM_SZ\": 3.360000, \"HSE_UNITS\": 6634, \"VACANT\": 79, \"OWNER_OCC\": 5877, \"RENTER_OCC\": 678 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.538057594117646, 40.689499181715021 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"North Lindenhurst\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"53198\", \"CAPITAL\": \"N\", \"AREALAND\": 1.898000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11767, \"WHITE\": 10387, \"BLACK\": 459, \"AMERI_ES\": 23, \"ASIAN\": 251, \"HAWN_PI\": 6, \"OTHER\": 411, \"MULT_RACE\": 230, \"HISPANIC\": 1372, \"MALES\": 5774, \"FEMALES\": 5993, \"AGE_UNDER5\": 822, \"AGE_5_17\": 2187, \"AGE_18_21\": 486, \"AGE_22_29\": 1169, \"AGE_30_39\": 2145, \"AGE_40_49\": 1899, \"AGE_50_64\": 1674, \"AGE_65_UP\": 1385, \"MED_AGE\": 35.800000, \"MED_AGE_M\": 34.600000, \"MED_AGE_F\": 37.100000, \"HOUSEHOLDS\": 3808, \"AVE_HH_SZ\": 3.060000, \"HSEHLD_1_M\": 284, \"HSEHLD_1_F\": 391, \"MARHH_CHD\": 1166, \"MARHH_NO_C\": 1152, \"MHH_CHILD\": 67, \"FHH_CHILD\": 186, \"FAMILIES\": 2974, \"AVE_FAM_SZ\": 3.440000, \"HSE_UNITS\": 3883, \"VACANT\": 75, \"OWNER_OCC\": 2680, \"RENTER_OCC\": 1128 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.385170377934571, 40.706976115914316 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"North Massapequa\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"53253\", \"CAPITAL\": \"N\", \"AREALAND\": 3.024000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 19152, \"WHITE\": 18639, \"BLACK\": 42, \"AMERI_ES\": 3, \"ASIAN\": 221, \"HAWN_PI\": 0, \"OTHER\": 105, \"MULT_RACE\": 142, \"HISPANIC\": 619, \"MALES\": 9236, \"FEMALES\": 9916, \"AGE_UNDER5\": 1312, \"AGE_5_17\": 3362, \"AGE_18_21\": 695, \"AGE_22_29\": 1444, \"AGE_30_39\": 3248, \"AGE_40_49\": 2989, \"AGE_50_64\": 2959, \"AGE_65_UP\": 3143, \"MED_AGE\": 38.600000, \"MED_AGE_M\": 38.000000, \"MED_AGE_F\": 39.300000, \"HOUSEHOLDS\": 6281, \"AVE_HH_SZ\": 3.050000, \"HSEHLD_1_M\": 280, \"HSEHLD_1_F\": 548, \"MARHH_CHD\": 2093, \"MARHH_NO_C\": 2420, \"MHH_CHILD\": 44, \"FHH_CHILD\": 155, \"FAMILIES\": 5290, \"AVE_FAM_SZ\": 3.330000, \"HSE_UNITS\": 6333, \"VACANT\": 52, \"OWNER_OCC\": 5758, \"RENTER_OCC\": 523 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.469070872681485, 40.704209594809981 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"North Merrick\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"53264\", \"CAPITAL\": \"N\", \"AREALAND\": 1.770000, \"AREAWATER\": 0.009000, \"POP_CL\": 6, \"POP2000\": 11844, \"WHITE\": 11083, \"BLACK\": 127, \"AMERI_ES\": 11, \"ASIAN\": 378, \"HAWN_PI\": 6, \"OTHER\": 84, \"MULT_RACE\": 155, \"HISPANIC\": 436, \"MALES\": 5766, \"FEMALES\": 6078, \"AGE_UNDER5\": 807, \"AGE_5_17\": 2173, \"AGE_18_21\": 422, \"AGE_22_29\": 808, \"AGE_30_39\": 1898, \"AGE_40_49\": 2065, \"AGE_50_64\": 1842, \"AGE_65_UP\": 1829, \"MED_AGE\": 39.200000, \"MED_AGE_M\": 37.600000, \"MED_AGE_F\": 40.500000, \"HOUSEHOLDS\": 3963, \"AVE_HH_SZ\": 2.990000, \"HSEHLD_1_M\": 167, \"HSEHLD_1_F\": 391, \"MARHH_CHD\": 1383, \"MARHH_NO_C\": 1375, \"MHH_CHILD\": 33, \"FHH_CHILD\": 100, \"FAMILIES\": 3287, \"AVE_FAM_SZ\": 3.300000, \"HSE_UNITS\": 4004, \"VACANT\": 41, \"OWNER_OCC\": 3691, \"RENTER_OCC\": 272 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.558262084322237, 40.68570006372925 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"North New Hyde Park\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"53275\", \"CAPITAL\": \"N\", \"AREALAND\": 1.978000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14542, \"WHITE\": 11980, \"BLACK\": 48, \"AMERI_ES\": 21, \"ASIAN\": 2157, \"HAWN_PI\": 3, \"OTHER\": 177, \"MULT_RACE\": 156, \"HISPANIC\": 707, \"MALES\": 6885, \"FEMALES\": 7657, \"AGE_UNDER5\": 769, \"AGE_5_17\": 2427, \"AGE_18_21\": 567, \"AGE_22_29\": 1060, \"AGE_30_39\": 1830, \"AGE_40_49\": 2339, \"AGE_50_64\": 2688, \"AGE_65_UP\": 2862, \"MED_AGE\": 42.700000, \"MED_AGE_M\": 41.300000, \"MED_AGE_F\": 43.900000, \"HOUSEHOLDS\": 5032, \"AVE_HH_SZ\": 2.890000, \"HSEHLD_1_M\": 248, \"HSEHLD_1_F\": 655, \"MARHH_CHD\": 1517, \"MARHH_NO_C\": 1952, \"MHH_CHILD\": 15, \"FHH_CHILD\": 101, \"FAMILIES\": 4057, \"AVE_FAM_SZ\": 3.280000, \"HSE_UNITS\": 5116, \"VACANT\": 84, \"OWNER_OCC\": 4712, \"RENTER_OCC\": 320 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.688222403060536, 40.745499346943674 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"North Tonawanda\", \"CLASS\": \"city\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"53682\", \"CAPITAL\": \"N\", \"AREALAND\": 10.100000, \"AREAWATER\": 0.839000, \"POP_CL\": 6, \"POP2000\": 33262, \"WHITE\": 32549, \"BLACK\": 98, \"AMERI_ES\": 114, \"ASIAN\": 177, \"HAWN_PI\": 2, \"OTHER\": 95, \"MULT_RACE\": 227, \"HISPANIC\": 362, \"MALES\": 16173, \"FEMALES\": 17089, \"AGE_UNDER5\": 1887, \"AGE_5_17\": 6008, \"AGE_18_21\": 1749, \"AGE_22_29\": 3000, \"AGE_30_39\": 4853, \"AGE_40_49\": 5511, \"AGE_50_64\": 5061, \"AGE_65_UP\": 5193, \"MED_AGE\": 38.400000, \"MED_AGE_M\": 36.800000, \"MED_AGE_F\": 39.900000, \"HOUSEHOLDS\": 13671, \"AVE_HH_SZ\": 2.430000, \"HSEHLD_1_M\": 1657, \"HSEHLD_1_F\": 2378, \"MARHH_CHD\": 3004, \"MARHH_NO_C\": 3945, \"MHH_CHILD\": 270, \"FHH_CHILD\": 858, \"FAMILIES\": 8987, \"AVE_FAM_SZ\": 3.030000, \"HSE_UNITS\": 14425, \"VACANT\": 754, \"OWNER_OCC\": 9386, \"RENTER_OCC\": 4285 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -78.868927997340137, 43.041005872863131 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"North Valley Stream\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"53748\", \"CAPITAL\": \"N\", \"AREALAND\": 1.883000, \"AREAWATER\": 0.003000, \"POP_CL\": 6, \"POP2000\": 15789, \"WHITE\": 7062, \"BLACK\": 5854, \"AMERI_ES\": 43, \"ASIAN\": 1426, \"HAWN_PI\": 10, \"OTHER\": 741, \"MULT_RACE\": 653, \"HISPANIC\": 1709, \"MALES\": 7331, \"FEMALES\": 8458, \"AGE_UNDER5\": 998, \"AGE_5_17\": 3107, \"AGE_18_21\": 767, \"AGE_22_29\": 1424, \"AGE_30_39\": 2315, \"AGE_40_49\": 2589, \"AGE_50_64\": 2372, \"AGE_65_UP\": 2217, \"MED_AGE\": 37.000000, \"MED_AGE_M\": 35.700000, \"MED_AGE_F\": 38.100000, \"HOUSEHOLDS\": 4860, \"AVE_HH_SZ\": 3.210000, \"HSEHLD_1_M\": 277, \"HSEHLD_1_F\": 505, \"MARHH_CHD\": 1554, \"MARHH_NO_C\": 1453, \"MHH_CHILD\": 77, \"FHH_CHILD\": 292, \"FAMILIES\": 3945, \"AVE_FAM_SZ\": 3.570000, \"HSE_UNITS\": 4951, \"VACANT\": 91, \"OWNER_OCC\": 4357, \"RENTER_OCC\": 503 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.709581427088864, 40.683051224017198 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"North Wantagh\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"53792\", \"CAPITAL\": \"N\", \"AREALAND\": 1.844000, \"AREAWATER\": 0.006000, \"POP_CL\": 6, \"POP2000\": 12156, \"WHITE\": 11670, \"BLACK\": 55, \"AMERI_ES\": 1, \"ASIAN\": 221, \"HAWN_PI\": 1, \"OTHER\": 97, \"MULT_RACE\": 111, \"HISPANIC\": 556, \"MALES\": 5803, \"FEMALES\": 6353, \"AGE_UNDER5\": 836, \"AGE_5_17\": 2028, \"AGE_18_21\": 435, \"AGE_22_29\": 872, \"AGE_30_39\": 1960, \"AGE_40_49\": 2049, \"AGE_50_64\": 2003, \"AGE_65_UP\": 1973, \"MED_AGE\": 39.800000, \"MED_AGE_M\": 38.600000, \"MED_AGE_F\": 41.000000, \"HOUSEHOLDS\": 4332, \"AVE_HH_SZ\": 2.800000, \"HSEHLD_1_M\": 235, \"HSEHLD_1_F\": 580, \"MARHH_CHD\": 1354, \"MARHH_NO_C\": 1552, \"MHH_CHILD\": 24, \"FHH_CHILD\": 95, \"FAMILIES\": 3406, \"AVE_FAM_SZ\": 3.200000, \"HSE_UNITS\": 4374, \"VACANT\": 42, \"OWNER_OCC\": 3951, \"RENTER_OCC\": 381 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.505898048050824, 40.697921372603197 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Oceanside\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"54441\", \"CAPITAL\": \"N\", \"AREALAND\": 5.018000, \"AREAWATER\": 0.404000, \"POP_CL\": 6, \"POP2000\": 32733, \"WHITE\": 31079, \"BLACK\": 184, \"AMERI_ES\": 22, \"ASIAN\": 600, \"HAWN_PI\": 3, \"OTHER\": 518, \"MULT_RACE\": 327, \"HISPANIC\": 1931, \"MALES\": 15836, \"FEMALES\": 16897, \"AGE_UNDER5\": 1949, \"AGE_5_17\": 6228, \"AGE_18_21\": 1141, \"AGE_22_29\": 2209, \"AGE_30_39\": 4746, \"AGE_40_49\": 5594, \"AGE_50_64\": 5758, \"AGE_65_UP\": 5108, \"MED_AGE\": 40.200000, \"MED_AGE_M\": 39.200000, \"MED_AGE_F\": 41.000000, \"HOUSEHOLDS\": 11224, \"AVE_HH_SZ\": 2.900000, \"HSEHLD_1_M\": 577, \"HSEHLD_1_F\": 1235, \"MARHH_CHD\": 3672, \"MARHH_NO_C\": 4124, \"MHH_CHILD\": 105, \"FHH_CHILD\": 361, \"FAMILIES\": 9127, \"AVE_FAM_SZ\": 3.250000, \"HSE_UNITS\": 11396, \"VACANT\": 172, \"OWNER_OCC\": 9913, \"RENTER_OCC\": 1311 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.637544001160762, 40.636294608169663 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ogdensburg\", \"CLASS\": \"city\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"54485\", \"CAPITAL\": \"N\", \"AREALAND\": 5.067000, \"AREAWATER\": 3.088000, \"POP_CL\": 6, \"POP2000\": 12364, \"WHITE\": 10515, \"BLACK\": 1227, \"AMERI_ES\": 99, \"ASIAN\": 85, \"HAWN_PI\": 7, \"OTHER\": 348, \"MULT_RACE\": 83, \"HISPANIC\": 769, \"MALES\": 6932, \"FEMALES\": 5432, \"AGE_UNDER5\": 588, \"AGE_5_17\": 2049, \"AGE_18_21\": 590, \"AGE_22_29\": 1547, \"AGE_30_39\": 2262, \"AGE_40_49\": 2061, \"AGE_50_64\": 1729, \"AGE_65_UP\": 1538, \"MED_AGE\": 36.500000, \"MED_AGE_M\": 34.900000, \"MED_AGE_F\": 39.600000, \"HOUSEHOLDS\": 4181, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 481, \"HSEHLD_1_F\": 870, \"MARHH_CHD\": 753, \"MARHH_NO_C\": 981, \"MHH_CHILD\": 143, \"FHH_CHILD\": 405, \"FAMILIES\": 2582, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 4531, \"VACANT\": 350, \"OWNER_OCC\": 2499, \"RENTER_OCC\": 1682 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.481276545402622, 44.700549314097579 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Olean\", \"CLASS\": \"city\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"54716\", \"CAPITAL\": \"N\", \"AREALAND\": 5.930000, \"AREAWATER\": 0.231000, \"POP_CL\": 6, \"POP2000\": 15347, \"WHITE\": 14321, \"BLACK\": 532, \"AMERI_ES\": 66, \"ASIAN\": 136, \"HAWN_PI\": 4, \"OTHER\": 66, \"MULT_RACE\": 222, \"HISPANIC\": 190, \"MALES\": 7186, \"FEMALES\": 8161, \"AGE_UNDER5\": 988, \"AGE_5_17\": 2794, \"AGE_18_21\": 672, \"AGE_22_29\": 1573, \"AGE_30_39\": 1981, \"AGE_40_49\": 2353, \"AGE_50_64\": 2242, \"AGE_65_UP\": 2744, \"MED_AGE\": 38.300000, \"MED_AGE_M\": 36.200000, \"MED_AGE_F\": 40.300000, \"HOUSEHOLDS\": 6446, \"AVE_HH_SZ\": 2.290000, \"HSEHLD_1_M\": 917, \"HSEHLD_1_F\": 1356, \"MARHH_CHD\": 1166, \"MARHH_NO_C\": 1540, \"MHH_CHILD\": 162, \"FHH_CHILD\": 548, \"FAMILIES\": 3806, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 7121, \"VACANT\": 675, \"OWNER_OCC\": 3799, \"RENTER_OCC\": 2647 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -78.430975055396274, 42.082639947102592 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Oneida\", \"CLASS\": \"city\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"54837\", \"CAPITAL\": \"N\", \"AREALAND\": 22.030000, \"AREAWATER\": 0.047000, \"POP_CL\": 6, \"POP2000\": 10987, \"WHITE\": 10579, \"BLACK\": 88, \"AMERI_ES\": 153, \"ASIAN\": 51, \"HAWN_PI\": 2, \"OTHER\": 20, \"MULT_RACE\": 94, \"HISPANIC\": 92, \"MALES\": 5280, \"FEMALES\": 5707, \"AGE_UNDER5\": 673, \"AGE_5_17\": 2083, \"AGE_18_21\": 494, \"AGE_22_29\": 1012, \"AGE_30_39\": 1755, \"AGE_40_49\": 1679, \"AGE_50_64\": 1645, \"AGE_65_UP\": 1646, \"MED_AGE\": 36.900000, \"MED_AGE_M\": 35.000000, \"MED_AGE_F\": 38.800000, \"HOUSEHOLDS\": 4430, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 529, \"HSEHLD_1_F\": 888, \"MARHH_CHD\": 936, \"MARHH_NO_C\": 1073, \"MHH_CHILD\": 117, \"FHH_CHILD\": 368, \"FAMILIES\": 2726, \"AVE_FAM_SZ\": 3.030000, \"HSE_UNITS\": 4672, \"VACANT\": 242, \"OWNER_OCC\": 2615, \"RENTER_OCC\": 1815 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.653431235024954, 43.084962997904512 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Oneonta\", \"CLASS\": \"city\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"54881\", \"CAPITAL\": \"N\", \"AREALAND\": 4.383000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 13292, \"WHITE\": 12204, \"BLACK\": 515, \"AMERI_ES\": 28, \"ASIAN\": 183, \"HAWN_PI\": 12, \"OTHER\": 126, \"MULT_RACE\": 224, \"HISPANIC\": 475, \"MALES\": 6022, \"FEMALES\": 7270, \"AGE_UNDER5\": 424, \"AGE_5_17\": 1385, \"AGE_18_21\": 4408, \"AGE_22_29\": 1981, \"AGE_30_39\": 1084, \"AGE_40_49\": 1263, \"AGE_50_64\": 1178, \"AGE_65_UP\": 1569, \"MED_AGE\": 22.600000, \"MED_AGE_M\": 22.700000, \"MED_AGE_F\": 22.300000, \"HOUSEHOLDS\": 4253, \"AVE_HH_SZ\": 2.200000, \"HSEHLD_1_M\": 604, \"HSEHLD_1_F\": 946, \"MARHH_CHD\": 579, \"MARHH_NO_C\": 755, \"MHH_CHILD\": 81, \"FHH_CHILD\": 279, \"FAMILIES\": 1915, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 4574, \"VACANT\": 321, \"OWNER_OCC\": 1822, \"RENTER_OCC\": 2431 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.062376723730509, 42.45600623837759 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ossining\", \"CLASS\": \"village\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"55530\", \"CAPITAL\": \"N\", \"AREALAND\": 3.216000, \"AREAWATER\": 3.127000, \"POP_CL\": 6, \"POP2000\": 24010, \"WHITE\": 14520, \"BLACK\": 4858, \"AMERI_ES\": 115, \"ASIAN\": 1004, \"HAWN_PI\": 3, \"OTHER\": 2506, \"MULT_RACE\": 1004, \"HISPANIC\": 6654, \"MALES\": 12976, \"FEMALES\": 11034, \"AGE_UNDER5\": 1488, \"AGE_5_17\": 3474, \"AGE_18_21\": 959, \"AGE_22_29\": 3262, \"AGE_30_39\": 5025, \"AGE_40_49\": 3750, \"AGE_50_64\": 3399, \"AGE_65_UP\": 2653, \"MED_AGE\": 35.700000, \"MED_AGE_M\": 34.400000, \"MED_AGE_F\": 37.700000, \"HOUSEHOLDS\": 8227, \"AVE_HH_SZ\": 2.610000, \"HSEHLD_1_M\": 927, \"HSEHLD_1_F\": 1449, \"MARHH_CHD\": 1814, \"MARHH_NO_C\": 2050, \"MHH_CHILD\": 159, \"FHH_CHILD\": 553, \"FAMILIES\": 5343, \"AVE_FAM_SZ\": 3.170000, \"HSE_UNITS\": 8515, \"VACANT\": 288, \"OWNER_OCC\": 4281, \"RENTER_OCC\": 3946 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.856823465268803, 41.165150527270086 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Oswego\", \"CLASS\": \"city\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"55574\", \"CAPITAL\": \"N\", \"AREALAND\": 7.662000, \"AREAWATER\": 3.575000, \"POP_CL\": 6, \"POP2000\": 17954, \"WHITE\": 17114, \"BLACK\": 186, \"AMERI_ES\": 59, \"ASIAN\": 147, \"HAWN_PI\": 0, \"OTHER\": 193, \"MULT_RACE\": 255, \"HISPANIC\": 503, \"MALES\": 8393, \"FEMALES\": 9561, \"AGE_UNDER5\": 988, \"AGE_5_17\": 3002, \"AGE_18_21\": 1684, \"AGE_22_29\": 2262, \"AGE_30_39\": 2347, \"AGE_40_49\": 2341, \"AGE_50_64\": 2250, \"AGE_65_UP\": 3080, \"MED_AGE\": 34.900000, \"MED_AGE_M\": 31.800000, \"MED_AGE_F\": 37.200000, \"HOUSEHOLDS\": 7338, \"AVE_HH_SZ\": 2.330000, \"HSEHLD_1_M\": 958, \"HSEHLD_1_F\": 1554, \"MARHH_CHD\": 1277, \"MARHH_NO_C\": 1530, \"MHH_CHILD\": 137, \"FHH_CHILD\": 583, \"FAMILIES\": 3975, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 8080, \"VACANT\": 742, \"OWNER_OCC\": 3836, \"RENTER_OCC\": 3502 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.50662351942816, 43.454612864957731 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Patchogue\", \"CLASS\": \"village\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"56660\", \"CAPITAL\": \"N\", \"AREALAND\": 2.248000, \"AREAWATER\": 0.270000, \"POP_CL\": 6, \"POP2000\": 11919, \"WHITE\": 9687, \"BLACK\": 464, \"AMERI_ES\": 41, \"ASIAN\": 166, \"HAWN_PI\": 2, \"OTHER\": 1100, \"MULT_RACE\": 459, \"HISPANIC\": 2842, \"MALES\": 5972, \"FEMALES\": 5947, \"AGE_UNDER5\": 866, \"AGE_5_17\": 1817, \"AGE_18_21\": 545, \"AGE_22_29\": 1597, \"AGE_30_39\": 2299, \"AGE_40_49\": 1917, \"AGE_50_64\": 1627, \"AGE_65_UP\": 1251, \"MED_AGE\": 34.900000, \"MED_AGE_M\": 33.900000, \"MED_AGE_F\": 35.900000, \"HOUSEHOLDS\": 4636, \"AVE_HH_SZ\": 2.540000, \"HSEHLD_1_M\": 644, \"HSEHLD_1_F\": 832, \"MARHH_CHD\": 903, \"MARHH_NO_C\": 965, \"MHH_CHILD\": 109, \"FHH_CHILD\": 356, \"FAMILIES\": 2748, \"AVE_FAM_SZ\": 3.200000, \"HSE_UNITS\": 4902, \"VACANT\": 266, \"OWNER_OCC\": 2254, \"RENTER_OCC\": 2382 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.01805940537669, 40.763382701639244 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pearl River\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"56902\", \"CAPITAL\": \"N\", \"AREALAND\": 6.842000, \"AREAWATER\": 0.352000, \"POP_CL\": 6, \"POP2000\": 15553, \"WHITE\": 14796, \"BLACK\": 61, \"AMERI_ES\": 8, \"ASIAN\": 491, \"HAWN_PI\": 3, \"OTHER\": 88, \"MULT_RACE\": 106, \"HISPANIC\": 535, \"MALES\": 7518, \"FEMALES\": 8035, \"AGE_UNDER5\": 1034, \"AGE_5_17\": 2901, \"AGE_18_21\": 493, \"AGE_22_29\": 1203, \"AGE_30_39\": 2524, \"AGE_40_49\": 2366, \"AGE_50_64\": 2759, \"AGE_65_UP\": 2273, \"MED_AGE\": 38.700000, \"MED_AGE_M\": 38.100000, \"MED_AGE_F\": 39.300000, \"HOUSEHOLDS\": 5539, \"AVE_HH_SZ\": 2.790000, \"HSEHLD_1_M\": 439, \"HSEHLD_1_F\": 706, \"MARHH_CHD\": 1664, \"MARHH_NO_C\": 1901, \"MHH_CHILD\": 34, \"FHH_CHILD\": 161, \"FAMILIES\": 4211, \"AVE_FAM_SZ\": 3.260000, \"HSE_UNITS\": 5636, \"VACANT\": 97, \"OWNER_OCC\": 4330, \"RENTER_OCC\": 1209 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.01041705570583, 41.064002787879417 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Peekskill\", \"CLASS\": \"city\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"56979\", \"CAPITAL\": \"N\", \"AREALAND\": 4.324000, \"AREAWATER\": 1.152000, \"POP_CL\": 6, \"POP2000\": 22441, \"WHITE\": 12819, \"BLACK\": 5732, \"AMERI_ES\": 95, \"ASIAN\": 535, \"HAWN_PI\": 13, \"OTHER\": 2206, \"MULT_RACE\": 1041, \"HISPANIC\": 4920, \"MALES\": 10887, \"FEMALES\": 11554, \"AGE_UNDER5\": 1706, \"AGE_5_17\": 3765, \"AGE_18_21\": 937, \"AGE_22_29\": 2699, \"AGE_30_39\": 4189, \"AGE_40_49\": 3505, \"AGE_50_64\": 3055, \"AGE_65_UP\": 2585, \"MED_AGE\": 35.200000, \"MED_AGE_M\": 33.900000, \"MED_AGE_F\": 36.300000, \"HOUSEHOLDS\": 8696, \"AVE_HH_SZ\": 2.550000, \"HSEHLD_1_M\": 1106, \"HSEHLD_1_F\": 1620, \"MARHH_CHD\": 1618, \"MARHH_NO_C\": 1834, \"MHH_CHILD\": 192, \"FHH_CHILD\": 846, \"FAMILIES\": 5344, \"AVE_FAM_SZ\": 3.180000, \"HSE_UNITS\": 9053, \"VACANT\": 357, \"OWNER_OCC\": 4044, \"RENTER_OCC\": 4652 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.920113320704047, 41.288910231996894 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Plainview\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"58442\", \"CAPITAL\": \"N\", \"AREALAND\": 5.725000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 25637, \"WHITE\": 23984, \"BLACK\": 98, \"AMERI_ES\": 4, \"ASIAN\": 1229, \"HAWN_PI\": 1, \"OTHER\": 101, \"MULT_RACE\": 220, \"HISPANIC\": 658, \"MALES\": 12442, \"FEMALES\": 13195, \"AGE_UNDER5\": 1683, \"AGE_5_17\": 4740, \"AGE_18_21\": 781, \"AGE_22_29\": 1493, \"AGE_30_39\": 3528, \"AGE_40_49\": 4561, \"AGE_50_64\": 4503, \"AGE_65_UP\": 4348, \"MED_AGE\": 41.400000, \"MED_AGE_M\": 40.100000, \"MED_AGE_F\": 42.600000, \"HOUSEHOLDS\": 8556, \"AVE_HH_SZ\": 2.950000, \"HSEHLD_1_M\": 295, \"HSEHLD_1_F\": 822, \"MARHH_CHD\": 3124, \"MARHH_NO_C\": 3399, \"MHH_CHILD\": 44, \"FHH_CHILD\": 196, \"FAMILIES\": 7313, \"AVE_FAM_SZ\": 3.220000, \"HSE_UNITS\": 8638, \"VACANT\": 82, \"OWNER_OCC\": 8017, \"RENTER_OCC\": 539 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.479635769930184, 40.779920543252466 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Plattsburgh\", \"CLASS\": \"city\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"58574\", \"CAPITAL\": \"N\", \"AREALAND\": 5.047000, \"AREAWATER\": 1.537000, \"POP_CL\": 6, \"POP2000\": 18816, \"WHITE\": 17576, \"BLACK\": 463, \"AMERI_ES\": 98, \"ASIAN\": 281, \"HAWN_PI\": 10, \"OTHER\": 128, \"MULT_RACE\": 260, \"HISPANIC\": 399, \"MALES\": 8720, \"FEMALES\": 10096, \"AGE_UNDER5\": 785, \"AGE_5_17\": 2314, \"AGE_18_21\": 3633, \"AGE_22_29\": 2769, \"AGE_30_39\": 2122, \"AGE_40_49\": 2156, \"AGE_50_64\": 2375, \"AGE_65_UP\": 2662, \"MED_AGE\": 29.600000, \"MED_AGE_M\": 27.600000, \"MED_AGE_F\": 31.800000, \"HOUSEHOLDS\": 7600, \"AVE_HH_SZ\": 2.100000, \"HSEHLD_1_M\": 1235, \"HSEHLD_1_F\": 1836, \"MARHH_CHD\": 968, \"MARHH_NO_C\": 1397, \"MHH_CHILD\": 145, \"FHH_CHILD\": 582, \"FAMILIES\": 3472, \"AVE_FAM_SZ\": 2.830000, \"HSE_UNITS\": 8010, \"VACANT\": 410, \"OWNER_OCC\": 2834, \"RENTER_OCC\": 4766 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.458785106498681, 44.695375166223293 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Port Chester\", \"CLASS\": \"village\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"59223\", \"CAPITAL\": \"N\", \"AREALAND\": 2.357000, \"AREAWATER\": 0.132000, \"POP_CL\": 6, \"POP2000\": 27867, \"WHITE\": 16914, \"BLACK\": 1949, \"AMERI_ES\": 112, \"ASIAN\": 573, \"HAWN_PI\": 11, \"OTHER\": 6405, \"MULT_RACE\": 1903, \"HISPANIC\": 12884, \"MALES\": 14103, \"FEMALES\": 13764, \"AGE_UNDER5\": 1947, \"AGE_5_17\": 4320, \"AGE_18_21\": 1557, \"AGE_22_29\": 4033, \"AGE_30_39\": 5132, \"AGE_40_49\": 3836, \"AGE_50_64\": 3439, \"AGE_65_UP\": 3603, \"MED_AGE\": 34.000000, \"MED_AGE_M\": 32.200000, \"MED_AGE_F\": 36.100000, \"HOUSEHOLDS\": 9531, \"AVE_HH_SZ\": 2.890000, \"HSEHLD_1_M\": 987, \"HSEHLD_1_F\": 1556, \"MARHH_CHD\": 2232, \"MARHH_NO_C\": 2245, \"MHH_CHILD\": 201, \"FHH_CHILD\": 592, \"FAMILIES\": 6374, \"AVE_FAM_SZ\": 3.440000, \"HSE_UNITS\": 9772, \"VACANT\": 241, \"OWNER_OCC\": 4121, \"RENTER_OCC\": 5410 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.668962918858028, 41.00510748689328 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Port Washington\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"59520\", \"CAPITAL\": \"N\", \"AREALAND\": 4.210000, \"AREAWATER\": 1.421000, \"POP_CL\": 6, \"POP2000\": 15215, \"WHITE\": 13081, \"BLACK\": 427, \"AMERI_ES\": 17, \"ASIAN\": 924, \"HAWN_PI\": 3, \"OTHER\": 480, \"MULT_RACE\": 283, \"HISPANIC\": 1704, \"MALES\": 7243, \"FEMALES\": 7972, \"AGE_UNDER5\": 1124, \"AGE_5_17\": 2720, \"AGE_18_21\": 429, \"AGE_22_29\": 975, \"AGE_30_39\": 2347, \"AGE_40_49\": 2596, \"AGE_50_64\": 2749, \"AGE_65_UP\": 2275, \"MED_AGE\": 40.000000, \"MED_AGE_M\": 38.600000, \"MED_AGE_F\": 41.400000, \"HOUSEHOLDS\": 5521, \"AVE_HH_SZ\": 2.730000, \"HSEHLD_1_M\": 359, \"HSEHLD_1_F\": 770, \"MARHH_CHD\": 1722, \"MARHH_NO_C\": 1749, \"MHH_CHILD\": 46, \"FHH_CHILD\": 234, \"FAMILIES\": 4170, \"AVE_FAM_SZ\": 3.150000, \"HSE_UNITS\": 5662, \"VACANT\": 141, \"OWNER_OCC\": 4064, \"RENTER_OCC\": 1457 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.686826194097179, 40.828956365882775 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Poughkeepsie\", \"CLASS\": \"city\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"59641\", \"CAPITAL\": \"N\", \"AREALAND\": 5.145000, \"AREAWATER\": 0.553000, \"POP_CL\": 6, \"POP2000\": 29871, \"WHITE\": 15785, \"BLACK\": 10666, \"AMERI_ES\": 117, \"ASIAN\": 485, \"HAWN_PI\": 14, \"OTHER\": 1579, \"MULT_RACE\": 1225, \"HISPANIC\": 3177, \"MALES\": 14292, \"FEMALES\": 15579, \"AGE_UNDER5\": 2273, \"AGE_5_17\": 5477, \"AGE_18_21\": 2032, \"AGE_22_29\": 3908, \"AGE_30_39\": 4387, \"AGE_40_49\": 3827, \"AGE_50_64\": 3911, \"AGE_65_UP\": 4056, \"MED_AGE\": 32.700000, \"MED_AGE_M\": 30.700000, \"MED_AGE_F\": 34.700000, \"HOUSEHOLDS\": 12014, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 1790, \"HSEHLD_1_F\": 2459, \"MARHH_CHD\": 1517, \"MARHH_NO_C\": 2064, \"MHH_CHILD\": 294, \"FHH_CHILD\": 1594, \"FAMILIES\": 6557, \"AVE_FAM_SZ\": 3.150000, \"HSE_UNITS\": 13153, \"VACANT\": 1139, \"OWNER_OCC\": 4427, \"RENTER_OCC\": 7587 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.923034233408231, 41.700100259022349 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ridge\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"61665\", \"CAPITAL\": \"N\", \"AREALAND\": 13.466000, \"AREAWATER\": 0.094000, \"POP_CL\": 6, \"POP2000\": 13380, \"WHITE\": 12442, \"BLACK\": 462, \"AMERI_ES\": 38, \"ASIAN\": 120, \"HAWN_PI\": 4, \"OTHER\": 101, \"MULT_RACE\": 213, \"HISPANIC\": 469, \"MALES\": 6065, \"FEMALES\": 7315, \"AGE_UNDER5\": 770, \"AGE_5_17\": 2340, \"AGE_18_21\": 463, \"AGE_22_29\": 750, \"AGE_30_39\": 1773, \"AGE_40_49\": 1890, \"AGE_50_64\": 1503, \"AGE_65_UP\": 3891, \"MED_AGE\": 43.000000, \"MED_AGE_M\": 40.000000, \"MED_AGE_F\": 45.800000, \"HOUSEHOLDS\": 5545, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 410, \"HSEHLD_1_F\": 1495, \"MARHH_CHD\": 1255, \"MARHH_NO_C\": 1680, \"MHH_CHILD\": 65, \"FHH_CHILD\": 199, \"FAMILIES\": 3476, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 5922, \"VACANT\": 377, \"OWNER_OCC\": 4811, \"RENTER_OCC\": 734 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -72.883115080191303, 40.90714181702652 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Riverhead\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"61973\", \"CAPITAL\": \"N\", \"AREALAND\": 15.095000, \"AREAWATER\": 0.355000, \"POP_CL\": 6, \"POP2000\": 10513, \"WHITE\": 7357, \"BLACK\": 2504, \"AMERI_ES\": 58, \"ASIAN\": 119, \"HAWN_PI\": 8, \"OTHER\": 226, \"MULT_RACE\": 241, \"HISPANIC\": 949, \"MALES\": 5005, \"FEMALES\": 5508, \"AGE_UNDER5\": 673, \"AGE_5_17\": 1860, \"AGE_18_21\": 428, \"AGE_22_29\": 946, \"AGE_30_39\": 1479, \"AGE_40_49\": 1541, \"AGE_50_64\": 1559, \"AGE_65_UP\": 2027, \"MED_AGE\": 39.100000, \"MED_AGE_M\": 36.700000, \"MED_AGE_F\": 41.200000, \"HOUSEHOLDS\": 3878, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 364, \"HSEHLD_1_F\": 701, \"MARHH_CHD\": 685, \"MARHH_NO_C\": 1021, \"MHH_CHILD\": 81, \"FHH_CHILD\": 375, \"FAMILIES\": 2548, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 4167, \"VACANT\": 289, \"OWNER_OCC\": 2235, \"RENTER_OCC\": 1643 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -72.662421399265384, 40.928378764816692 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Rochester\", \"CLASS\": \"city\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"63000\", \"CAPITAL\": \"N\", \"AREALAND\": 35.835000, \"AREAWATER\": 1.266000, \"POP_CL\": 8, \"POP2000\": 219773, \"WHITE\": 106161, \"BLACK\": 84717, \"AMERI_ES\": 1033, \"ASIAN\": 4943, \"HAWN_PI\": 104, \"OTHER\": 14452, \"MULT_RACE\": 8363, \"HISPANIC\": 28032, \"MALES\": 105083, \"FEMALES\": 114690, \"AGE_UNDER5\": 17227, \"AGE_5_17\": 44508, \"AGE_18_21\": 14342, \"AGE_22_29\": 30726, \"AGE_30_39\": 35610, \"AGE_40_49\": 29065, \"AGE_50_64\": 26318, \"AGE_65_UP\": 21977, \"MED_AGE\": 30.800000, \"MED_AGE_M\": 29.800000, \"MED_AGE_F\": 31.800000, \"HOUSEHOLDS\": 88999, \"AVE_HH_SZ\": 2.360000, \"HSEHLD_1_M\": 15856, \"HSEHLD_1_F\": 17138, \"MARHH_CHD\": 10042, \"MARHH_NO_C\": 12256, \"MHH_CHILD\": 2108, \"FHH_CHILD\": 14583, \"FAMILIES\": 47165, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 99789, \"VACANT\": 10790, \"OWNER_OCC\": 35747, \"RENTER_OCC\": 53252 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.611522076022908, 43.165496152408501 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Rockville Centre\", \"CLASS\": \"village\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"63264\", \"CAPITAL\": \"N\", \"AREALAND\": 3.277000, \"AREAWATER\": 0.083000, \"POP_CL\": 6, \"POP2000\": 24568, \"WHITE\": 22327, \"BLACK\": 914, \"AMERI_ES\": 19, \"ASIAN\": 348, \"HAWN_PI\": 10, \"OTHER\": 696, \"MULT_RACE\": 254, \"HISPANIC\": 1896, \"MALES\": 11492, \"FEMALES\": 13076, \"AGE_UNDER5\": 1625, \"AGE_5_17\": 4715, \"AGE_18_21\": 767, \"AGE_22_29\": 1676, \"AGE_30_39\": 3405, \"AGE_40_49\": 4057, \"AGE_50_64\": 4324, \"AGE_65_UP\": 3999, \"MED_AGE\": 40.200000, \"MED_AGE_M\": 38.200000, \"MED_AGE_F\": 42.200000, \"HOUSEHOLDS\": 9201, \"AVE_HH_SZ\": 2.640000, \"HSEHLD_1_M\": 731, \"HSEHLD_1_F\": 1742, \"MARHH_CHD\": 2716, \"MARHH_NO_C\": 2720, \"MHH_CHILD\": 73, \"FHH_CHILD\": 333, \"FAMILIES\": 6470, \"AVE_FAM_SZ\": 3.250000, \"HSE_UNITS\": 9419, \"VACANT\": 218, \"OWNER_OCC\": 6584, \"RENTER_OCC\": 2617 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.636971271700588, 40.663398615274978 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Rocky Point\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"63319\", \"CAPITAL\": \"N\", \"AREALAND\": 10.346000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10185, \"WHITE\": 9737, \"BLACK\": 69, \"AMERI_ES\": 16, \"ASIAN\": 123, \"HAWN_PI\": 1, \"OTHER\": 81, \"MULT_RACE\": 158, \"HISPANIC\": 511, \"MALES\": 5091, \"FEMALES\": 5094, \"AGE_UNDER5\": 933, \"AGE_5_17\": 2149, \"AGE_18_21\": 350, \"AGE_22_29\": 994, \"AGE_30_39\": 2130, \"AGE_40_49\": 1622, \"AGE_50_64\": 1171, \"AGE_65_UP\": 836, \"MED_AGE\": 33.300000, \"MED_AGE_M\": 32.700000, \"MED_AGE_F\": 33.800000, \"HOUSEHOLDS\": 3557, \"AVE_HH_SZ\": 2.850000, \"HSEHLD_1_M\": 364, \"HSEHLD_1_F\": 387, \"MARHH_CHD\": 1198, \"MARHH_NO_C\": 828, \"MHH_CHILD\": 87, \"FHH_CHILD\": 229, \"FAMILIES\": 2592, \"AVE_FAM_SZ\": 3.320000, \"HSE_UNITS\": 3949, \"VACANT\": 392, \"OWNER_OCC\": 2674, \"RENTER_OCC\": 883 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -72.927461272703042, 40.953719464217698 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Rome\", \"CLASS\": \"city\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"63418\", \"CAPITAL\": \"N\", \"AREALAND\": 74.933000, \"AREAWATER\": 0.747000, \"POP_CL\": 6, \"POP2000\": 34950, \"WHITE\": 30704, \"BLACK\": 2650, \"AMERI_ES\": 93, \"ASIAN\": 309, \"HAWN_PI\": 6, \"OTHER\": 473, \"MULT_RACE\": 715, \"HISPANIC\": 1648, \"MALES\": 17909, \"FEMALES\": 17041, \"AGE_UNDER5\": 2045, \"AGE_5_17\": 5681, \"AGE_18_21\": 1627, \"AGE_22_29\": 3746, \"AGE_30_39\": 5405, \"AGE_40_49\": 5095, \"AGE_50_64\": 5355, \"AGE_65_UP\": 5996, \"MED_AGE\": 38.200000, \"MED_AGE_M\": 36.100000, \"MED_AGE_F\": 41.000000, \"HOUSEHOLDS\": 13653, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 1864, \"HSEHLD_1_F\": 2669, \"MARHH_CHD\": 2218, \"MARHH_NO_C\": 3602, \"MHH_CHILD\": 370, \"FHH_CHILD\": 1255, \"FAMILIES\": 8332, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 16272, \"VACANT\": 2619, \"OWNER_OCC\": 7792, \"RENTER_OCC\": 5861 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.463392880638693, 43.219471350265003 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ronkonkoma\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"63473\", \"CAPITAL\": \"N\", \"AREALAND\": 8.174000, \"AREAWATER\": 0.353000, \"POP_CL\": 6, \"POP2000\": 20029, \"WHITE\": 18798, \"BLACK\": 180, \"AMERI_ES\": 12, \"ASIAN\": 479, \"HAWN_PI\": 8, \"OTHER\": 224, \"MULT_RACE\": 328, \"HISPANIC\": 1269, \"MALES\": 9881, \"FEMALES\": 10148, \"AGE_UNDER5\": 1395, \"AGE_5_17\": 3771, \"AGE_18_21\": 862, \"AGE_22_29\": 2098, \"AGE_30_39\": 3698, \"AGE_40_49\": 3208, \"AGE_50_64\": 3493, \"AGE_65_UP\": 1504, \"MED_AGE\": 35.200000, \"MED_AGE_M\": 34.000000, \"MED_AGE_F\": 36.300000, \"HOUSEHOLDS\": 6550, \"AVE_HH_SZ\": 3.060000, \"HSEHLD_1_M\": 458, \"HSEHLD_1_F\": 613, \"MARHH_CHD\": 2152, \"MARHH_NO_C\": 2137, \"MHH_CHILD\": 104, \"FHH_CHILD\": 278, \"FAMILIES\": 5200, \"AVE_FAM_SZ\": 3.430000, \"HSE_UNITS\": 6660, \"VACANT\": 110, \"OWNER_OCC\": 5253, \"RENTER_OCC\": 1297 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.12861992861842, 40.813973883436603 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Roosevelt\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"63506\", \"CAPITAL\": \"N\", \"AREALAND\": 1.778000, \"AREAWATER\": 0.013000, \"POP_CL\": 6, \"POP2000\": 15854, \"WHITE\": 1263, \"BLACK\": 12528, \"AMERI_ES\": 73, \"ASIAN\": 77, \"HAWN_PI\": 8, \"OTHER\": 1320, \"MULT_RACE\": 585, \"HISPANIC\": 2572, \"MALES\": 7455, \"FEMALES\": 8399, \"AGE_UNDER5\": 1283, \"AGE_5_17\": 3547, \"AGE_18_21\": 881, \"AGE_22_29\": 1823, \"AGE_30_39\": 2634, \"AGE_40_49\": 2048, \"AGE_50_64\": 2356, \"AGE_65_UP\": 1282, \"MED_AGE\": 31.500000, \"MED_AGE_M\": 29.900000, \"MED_AGE_F\": 33.100000, \"HOUSEHOLDS\": 4061, \"AVE_HH_SZ\": 3.880000, \"HSEHLD_1_M\": 179, \"HSEHLD_1_F\": 307, \"MARHH_CHD\": 864, \"MARHH_NO_C\": 931, \"MHH_CHILD\": 142, \"FHH_CHILD\": 550, \"FAMILIES\": 3361, \"AVE_FAM_SZ\": 3.980000, \"HSE_UNITS\": 4234, \"VACANT\": 173, \"OWNER_OCC\": 2998, \"RENTER_OCC\": 1063 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.585615050697101, 40.679180905857265 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Rotterdam\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"63924\", \"CAPITAL\": \"N\", \"AREALAND\": 6.930000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 20536, \"WHITE\": 19935, \"BLACK\": 218, \"AMERI_ES\": 32, \"ASIAN\": 113, \"HAWN_PI\": 4, \"OTHER\": 43, \"MULT_RACE\": 191, \"HISPANIC\": 212, \"MALES\": 9801, \"FEMALES\": 10735, \"AGE_UNDER5\": 1087, \"AGE_5_17\": 3606, \"AGE_18_21\": 687, \"AGE_22_29\": 1472, \"AGE_30_39\": 3020, \"AGE_40_49\": 3056, \"AGE_50_64\": 3271, \"AGE_65_UP\": 4337, \"MED_AGE\": 41.200000, \"MED_AGE_M\": 39.700000, \"MED_AGE_F\": 42.700000, \"HOUSEHOLDS\": 8492, \"AVE_HH_SZ\": 2.410000, \"HSEHLD_1_M\": 843, \"HSEHLD_1_F\": 1453, \"MARHH_CHD\": 1729, \"MARHH_NO_C\": 2813, \"MHH_CHILD\": 176, \"FHH_CHILD\": 535, \"FAMILIES\": 5876, \"AVE_FAM_SZ\": 2.910000, \"HSE_UNITS\": 8825, \"VACANT\": 333, \"OWNER_OCC\": 6983, \"RENTER_OCC\": 1509 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.957396146303097, 42.782783187406075 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Rye\", \"CLASS\": \"city\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"64309\", \"CAPITAL\": \"N\", \"AREALAND\": 5.777000, \"AREAWATER\": 14.242000, \"POP_CL\": 6, \"POP2000\": 14955, \"WHITE\": 13401, \"BLACK\": 190, \"AMERI_ES\": 16, \"ASIAN\": 971, \"HAWN_PI\": 1, \"OTHER\": 190, \"MULT_RACE\": 186, \"HISPANIC\": 718, \"MALES\": 7203, \"FEMALES\": 7752, \"AGE_UNDER5\": 1300, \"AGE_5_17\": 3152, \"AGE_18_21\": 298, \"AGE_22_29\": 796, \"AGE_30_39\": 2507, \"AGE_40_49\": 2474, \"AGE_50_64\": 2416, \"AGE_65_UP\": 2012, \"MED_AGE\": 38.100000, \"MED_AGE_M\": 37.300000, \"MED_AGE_F\": 38.700000, \"HOUSEHOLDS\": 5377, \"AVE_HH_SZ\": 2.780000, \"HSEHLD_1_M\": 347, \"HSEHLD_1_F\": 803, \"MARHH_CHD\": 1968, \"MARHH_NO_C\": 1613, \"MHH_CHILD\": 52, \"FHH_CHILD\": 136, \"FAMILIES\": 4027, \"AVE_FAM_SZ\": 3.260000, \"HSE_UNITS\": 5559, \"VACANT\": 182, \"OWNER_OCC\": 4027, \"RENTER_OCC\": 1350 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.688574253483608, 40.970459375450723 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"St. James\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"64584\", \"CAPITAL\": \"N\", \"AREALAND\": 4.537000, \"AREAWATER\": 0.001000, \"POP_CL\": 6, \"POP2000\": 13268, \"WHITE\": 12918, \"BLACK\": 36, \"AMERI_ES\": 7, \"ASIAN\": 164, \"HAWN_PI\": 1, \"OTHER\": 73, \"MULT_RACE\": 69, \"HISPANIC\": 458, \"MALES\": 6225, \"FEMALES\": 7043, \"AGE_UNDER5\": 952, \"AGE_5_17\": 2481, \"AGE_18_21\": 408, \"AGE_22_29\": 827, \"AGE_30_39\": 2207, \"AGE_40_49\": 2054, \"AGE_50_64\": 1931, \"AGE_65_UP\": 2408, \"MED_AGE\": 39.100000, \"MED_AGE_M\": 37.400000, \"MED_AGE_F\": 40.600000, \"HOUSEHOLDS\": 4555, \"AVE_HH_SZ\": 2.810000, \"HSEHLD_1_M\": 270, \"HSEHLD_1_F\": 670, \"MARHH_CHD\": 1507, \"MARHH_NO_C\": 1521, \"MHH_CHILD\": 27, \"FHH_CHILD\": 134, \"FAMILIES\": 3465, \"AVE_FAM_SZ\": 3.270000, \"HSE_UNITS\": 4674, \"VACANT\": 119, \"OWNER_OCC\": 4064, \"RENTER_OCC\": 491 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.155440242178969, 40.877213702384822 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Salisbury\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"64842\", \"CAPITAL\": \"N\", \"AREALAND\": 1.723000, \"AREAWATER\": 0.013000, \"POP_CL\": 6, \"POP2000\": 12341, \"WHITE\": 10728, \"BLACK\": 127, \"AMERI_ES\": 17, \"ASIAN\": 1108, \"HAWN_PI\": 1, \"OTHER\": 198, \"MULT_RACE\": 162, \"HISPANIC\": 1056, \"MALES\": 5947, \"FEMALES\": 6394, \"AGE_UNDER5\": 737, \"AGE_5_17\": 2270, \"AGE_18_21\": 500, \"AGE_22_29\": 989, \"AGE_30_39\": 1809, \"AGE_40_49\": 2093, \"AGE_50_64\": 2023, \"AGE_65_UP\": 1920, \"MED_AGE\": 39.400000, \"MED_AGE_M\": 38.300000, \"MED_AGE_F\": 40.600000, \"HOUSEHOLDS\": 4015, \"AVE_HH_SZ\": 3.060000, \"HSEHLD_1_M\": 164, \"HSEHLD_1_F\": 394, \"MARHH_CHD\": 1345, \"MARHH_NO_C\": 1463, \"MHH_CHILD\": 36, \"FHH_CHILD\": 114, \"FAMILIES\": 3341, \"AVE_FAM_SZ\": 3.350000, \"HSE_UNITS\": 4052, \"VACANT\": 37, \"OWNER_OCC\": 3707, \"RENTER_OCC\": 308 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.559710505138924, 40.745219064495146 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Saratoga Springs\", \"CLASS\": \"city\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"65255\", \"CAPITAL\": \"N\", \"AREALAND\": 28.428000, \"AREAWATER\": 0.632000, \"POP_CL\": 6, \"POP2000\": 26186, \"WHITE\": 24493, \"BLACK\": 815, \"AMERI_ES\": 63, \"ASIAN\": 271, \"HAWN_PI\": 8, \"OTHER\": 168, \"MULT_RACE\": 368, \"HISPANIC\": 485, \"MALES\": 12433, \"FEMALES\": 13753, \"AGE_UNDER5\": 1395, \"AGE_5_17\": 3672, \"AGE_18_21\": 2919, \"AGE_22_29\": 2845, \"AGE_30_39\": 3640, \"AGE_40_49\": 3695, \"AGE_50_64\": 4281, \"AGE_65_UP\": 3739, \"MED_AGE\": 36.300000, \"MED_AGE_M\": 34.600000, \"MED_AGE_F\": 38.000000, \"HOUSEHOLDS\": 10784, \"AVE_HH_SZ\": 2.210000, \"HSEHLD_1_M\": 1562, \"HSEHLD_1_F\": 2210, \"MARHH_CHD\": 1954, \"MARHH_NO_C\": 2698, \"MHH_CHILD\": 161, \"FHH_CHILD\": 612, \"FAMILIES\": 5982, \"AVE_FAM_SZ\": 2.880000, \"HSE_UNITS\": 11584, \"VACANT\": 800, \"OWNER_OCC\": 6014, \"RENTER_OCC\": 4770 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.782571997904512, 43.075345100147317 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sayville\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"65409\", \"CAPITAL\": \"N\", \"AREALAND\": 5.526000, \"AREAWATER\": 0.064000, \"POP_CL\": 6, \"POP2000\": 16735, \"WHITE\": 16033, \"BLACK\": 121, \"AMERI_ES\": 7, \"ASIAN\": 340, \"HAWN_PI\": 0, \"OTHER\": 80, \"MULT_RACE\": 154, \"HISPANIC\": 505, \"MALES\": 8045, \"FEMALES\": 8690, \"AGE_UNDER5\": 1172, \"AGE_5_17\": 3378, \"AGE_18_21\": 585, \"AGE_22_29\": 1265, \"AGE_30_39\": 2804, \"AGE_40_49\": 2838, \"AGE_50_64\": 2726, \"AGE_65_UP\": 1967, \"MED_AGE\": 37.400000, \"MED_AGE_M\": 36.300000, \"MED_AGE_F\": 38.300000, \"HOUSEHOLDS\": 5603, \"AVE_HH_SZ\": 2.920000, \"HSEHLD_1_M\": 353, \"HSEHLD_1_F\": 630, \"MARHH_CHD\": 1941, \"MARHH_NO_C\": 1711, \"MHH_CHILD\": 69, \"FHH_CHILD\": 247, \"FAMILIES\": 4353, \"AVE_FAM_SZ\": 3.340000, \"HSE_UNITS\": 5721, \"VACANT\": 118, \"OWNER_OCC\": 4659, \"RENTER_OCC\": 944 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.081297420497421, 40.746294217821266 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Scarsdale\", \"CLASS\": \"village\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"65431\", \"CAPITAL\": \"N\", \"AREALAND\": 6.636000, \"AREAWATER\": 0.007000, \"POP_CL\": 6, \"POP2000\": 17823, \"WHITE\": 14989, \"BLACK\": 271, \"AMERI_ES\": 3, \"ASIAN\": 2242, \"HAWN_PI\": 3, \"OTHER\": 71, \"MULT_RACE\": 244, \"HISPANIC\": 467, \"MALES\": 8655, \"FEMALES\": 9168, \"AGE_UNDER5\": 1357, \"AGE_5_17\": 4481, \"AGE_18_21\": 460, \"AGE_22_29\": 590, \"AGE_30_39\": 2089, \"AGE_40_49\": 3288, \"AGE_50_64\": 3482, \"AGE_65_UP\": 2076, \"MED_AGE\": 39.800000, \"MED_AGE_M\": 39.400000, \"MED_AGE_F\": 40.200000, \"HOUSEHOLDS\": 5662, \"AVE_HH_SZ\": 3.140000, \"HSEHLD_1_M\": 170, \"HSEHLD_1_F\": 428, \"MARHH_CHD\": 2706, \"MARHH_NO_C\": 1924, \"MHH_CHILD\": 35, \"FHH_CHILD\": 147, \"FAMILIES\": 4996, \"AVE_FAM_SZ\": 3.350000, \"HSE_UNITS\": 5795, \"VACANT\": 133, \"OWNER_OCC\": 5152, \"RENTER_OCC\": 510 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.787173705034562, 40.992128858356445 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Schenectady\", \"CLASS\": \"city\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"65508\", \"CAPITAL\": \"N\", \"AREALAND\": 10.848000, \"AREAWATER\": 0.140000, \"POP_CL\": 7, \"POP2000\": 61821, \"WHITE\": 47460, \"BLACK\": 9132, \"AMERI_ES\": 222, \"ASIAN\": 1239, \"HAWN_PI\": 24, \"OTHER\": 1559, \"MULT_RACE\": 2185, \"HISPANIC\": 3632, \"MALES\": 29539, \"FEMALES\": 32282, \"AGE_UNDER5\": 4358, \"AGE_5_17\": 10682, \"AGE_18_21\": 4494, \"AGE_22_29\": 7049, \"AGE_30_39\": 9455, \"AGE_40_49\": 8451, \"AGE_50_64\": 7919, \"AGE_65_UP\": 9413, \"MED_AGE\": 34.800000, \"MED_AGE_M\": 33.000000, \"MED_AGE_F\": 36.300000, \"HOUSEHOLDS\": 26265, \"AVE_HH_SZ\": 2.230000, \"HSEHLD_1_M\": 4416, \"HSEHLD_1_F\": 5726, \"MARHH_CHD\": 3515, \"MARHH_NO_C\": 4883, \"MHH_CHILD\": 719, \"FHH_CHILD\": 2916, \"FAMILIES\": 14054, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 30272, \"VACANT\": 4007, \"OWNER_OCC\": 11747, \"RENTER_OCC\": 14518 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.929426232507382, 42.804083325156768 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Seaford\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"66058\", \"CAPITAL\": \"N\", \"AREALAND\": 2.600000, \"AREAWATER\": 0.014000, \"POP_CL\": 6, \"POP2000\": 15791, \"WHITE\": 15286, \"BLACK\": 49, \"AMERI_ES\": 10, \"ASIAN\": 265, \"HAWN_PI\": 3, \"OTHER\": 85, \"MULT_RACE\": 93, \"HISPANIC\": 586, \"MALES\": 7714, \"FEMALES\": 8077, \"AGE_UNDER5\": 1081, \"AGE_5_17\": 2906, \"AGE_18_21\": 650, \"AGE_22_29\": 1193, \"AGE_30_39\": 2585, \"AGE_40_49\": 2744, \"AGE_50_64\": 2472, \"AGE_65_UP\": 2160, \"MED_AGE\": 38.200000, \"MED_AGE_M\": 37.400000, \"MED_AGE_F\": 39.000000, \"HOUSEHOLDS\": 5257, \"AVE_HH_SZ\": 3.000000, \"HSEHLD_1_M\": 332, \"HSEHLD_1_F\": 525, \"MARHH_CHD\": 1768, \"MARHH_NO_C\": 1826, \"MHH_CHILD\": 48, \"FHH_CHILD\": 139, \"FAMILIES\": 4198, \"AVE_FAM_SZ\": 3.380000, \"HSE_UNITS\": 5358, \"VACANT\": 101, \"OWNER_OCC\": 4699, \"RENTER_OCC\": 558 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.492609774578511, 40.668711447147636 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Selden\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"66212\", \"CAPITAL\": \"N\", \"AREALAND\": 4.656000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 21861, \"WHITE\": 20103, \"BLACK\": 410, \"AMERI_ES\": 41, \"ASIAN\": 537, \"HAWN_PI\": 4, \"OTHER\": 389, \"MULT_RACE\": 377, \"HISPANIC\": 1799, \"MALES\": 10767, \"FEMALES\": 11094, \"AGE_UNDER5\": 1611, \"AGE_5_17\": 4587, \"AGE_18_21\": 1051, \"AGE_22_29\": 2212, \"AGE_30_39\": 4017, \"AGE_40_49\": 3316, \"AGE_50_64\": 3179, \"AGE_65_UP\": 1888, \"MED_AGE\": 34.000000, \"MED_AGE_M\": 32.600000, \"MED_AGE_F\": 35.200000, \"HOUSEHOLDS\": 6809, \"AVE_HH_SZ\": 3.210000, \"HSEHLD_1_M\": 356, \"HSEHLD_1_F\": 663, \"MARHH_CHD\": 2474, \"MARHH_NO_C\": 1968, \"MHH_CHILD\": 120, \"FHH_CHILD\": 335, \"FAMILIES\": 5520, \"AVE_FAM_SZ\": 3.540000, \"HSE_UNITS\": 7083, \"VACANT\": 274, \"OWNER_OCC\": 5529, \"RENTER_OCC\": 1280 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.047209930099044, 40.870926502619341 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Setauket-East Setauket\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"66481\", \"CAPITAL\": \"N\", \"AREALAND\": 8.464000, \"AREAWATER\": 0.796000, \"POP_CL\": 6, \"POP2000\": 15931, \"WHITE\": 13981, \"BLACK\": 203, \"AMERI_ES\": 27, \"ASIAN\": 1402, \"HAWN_PI\": 6, \"OTHER\": 97, \"MULT_RACE\": 215, \"HISPANIC\": 546, \"MALES\": 7831, \"FEMALES\": 8100, \"AGE_UNDER5\": 1047, \"AGE_5_17\": 3235, \"AGE_18_21\": 590, \"AGE_22_29\": 1507, \"AGE_30_39\": 2364, \"AGE_40_49\": 2656, \"AGE_50_64\": 3042, \"AGE_65_UP\": 1490, \"MED_AGE\": 37.000000, \"MED_AGE_M\": 36.400000, \"MED_AGE_F\": 37.700000, \"HOUSEHOLDS\": 5521, \"AVE_HH_SZ\": 2.880000, \"HSEHLD_1_M\": 420, \"HSEHLD_1_F\": 528, \"MARHH_CHD\": 1916, \"MARHH_NO_C\": 1874, \"MHH_CHILD\": 57, \"FHH_CHILD\": 193, \"FAMILIES\": 4288, \"AVE_FAM_SZ\": 3.260000, \"HSE_UNITS\": 5632, \"VACANT\": 111, \"OWNER_OCC\": 4575, \"RENTER_OCC\": 946 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.102266561490552, 40.930019101831491 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Shirley\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"67070\", \"CAPITAL\": \"N\", \"AREALAND\": 11.126000, \"AREAWATER\": 0.325000, \"POP_CL\": 6, \"POP2000\": 25395, \"WHITE\": 22778, \"BLACK\": 845, \"AMERI_ES\": 82, \"ASIAN\": 312, \"HAWN_PI\": 8, \"OTHER\": 721, \"MULT_RACE\": 649, \"HISPANIC\": 2749, \"MALES\": 12653, \"FEMALES\": 12742, \"AGE_UNDER5\": 1888, \"AGE_5_17\": 6029, \"AGE_18_21\": 1424, \"AGE_22_29\": 2684, \"AGE_30_39\": 4259, \"AGE_40_49\": 4147, \"AGE_50_64\": 3372, \"AGE_65_UP\": 1592, \"MED_AGE\": 31.900000, \"MED_AGE_M\": 30.800000, \"MED_AGE_F\": 33.000000, \"HOUSEHOLDS\": 7353, \"AVE_HH_SZ\": 3.430000, \"HSEHLD_1_M\": 408, \"HSEHLD_1_F\": 442, \"MARHH_CHD\": 2686, \"MARHH_NO_C\": 2053, \"MHH_CHILD\": 214, \"FHH_CHILD\": 573, \"FAMILIES\": 6177, \"AVE_FAM_SZ\": 3.670000, \"HSE_UNITS\": 7774, \"VACANT\": 421, \"OWNER_OCC\": 6172, \"RENTER_OCC\": 1181 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -72.871225910604522, 40.796927887954325 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Smithtown\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"67851\", \"CAPITAL\": \"N\", \"AREALAND\": 11.873000, \"AREAWATER\": 0.490000, \"POP_CL\": 6, \"POP2000\": 26901, \"WHITE\": 25918, \"BLACK\": 165, \"AMERI_ES\": 11, \"ASIAN\": 475, \"HAWN_PI\": 3, \"OTHER\": 143, \"MULT_RACE\": 186, \"HISPANIC\": 910, \"MALES\": 12973, \"FEMALES\": 13928, \"AGE_UNDER5\": 2073, \"AGE_5_17\": 4936, \"AGE_18_21\": 789, \"AGE_22_29\": 1813, \"AGE_30_39\": 4474, \"AGE_40_49\": 4185, \"AGE_50_64\": 4700, \"AGE_65_UP\": 3931, \"MED_AGE\": 38.800000, \"MED_AGE_M\": 37.600000, \"MED_AGE_F\": 39.900000, \"HOUSEHOLDS\": 8815, \"AVE_HH_SZ\": 2.960000, \"HSEHLD_1_M\": 492, \"HSEHLD_1_F\": 819, \"MARHH_CHD\": 3058, \"MARHH_NO_C\": 3308, \"MHH_CHILD\": 74, \"FHH_CHILD\": 246, \"FAMILIES\": 7249, \"AVE_FAM_SZ\": 3.290000, \"HSE_UNITS\": 8956, \"VACANT\": 141, \"OWNER_OCC\": 7773, \"RENTER_OCC\": 1042 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.21478186255267, 40.855805277662895 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"South Farmingdale\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"69001\", \"CAPITAL\": \"N\", \"AREALAND\": 2.187000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 15061, \"WHITE\": 14008, \"BLACK\": 119, \"AMERI_ES\": 12, \"ASIAN\": 479, \"HAWN_PI\": 4, \"OTHER\": 278, \"MULT_RACE\": 161, \"HISPANIC\": 888, \"MALES\": 7397, \"FEMALES\": 7664, \"AGE_UNDER5\": 1073, \"AGE_5_17\": 2705, \"AGE_18_21\": 518, \"AGE_22_29\": 1167, \"AGE_30_39\": 2568, \"AGE_40_49\": 2394, \"AGE_50_64\": 2192, \"AGE_65_UP\": 2444, \"MED_AGE\": 38.200000, \"MED_AGE_M\": 36.900000, \"MED_AGE_F\": 39.400000, \"HOUSEHOLDS\": 4899, \"AVE_HH_SZ\": 3.070000, \"HSEHLD_1_M\": 236, \"HSEHLD_1_F\": 424, \"MARHH_CHD\": 1593, \"MARHH_NO_C\": 1829, \"MHH_CHILD\": 26, \"FHH_CHILD\": 160, \"FAMILIES\": 4096, \"AVE_FAM_SZ\": 3.370000, \"HSE_UNITS\": 4950, \"VACANT\": 51, \"OWNER_OCC\": 4433, \"RENTER_OCC\": 466 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.445712782600864, 40.718204739754988 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Spring Valley\", \"CLASS\": \"village\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"70420\", \"CAPITAL\": \"N\", \"AREALAND\": 2.101000, \"AREAWATER\": 0.012000, \"POP_CL\": 6, \"POP2000\": 25464, \"WHITE\": 9734, \"BLACK\": 11200, \"AMERI_ES\": 101, \"ASIAN\": 1415, \"HAWN_PI\": 63, \"OTHER\": 1358, \"MULT_RACE\": 1593, \"HISPANIC\": 3921, \"MALES\": 12647, \"FEMALES\": 12817, \"AGE_UNDER5\": 2433, \"AGE_5_17\": 5740, \"AGE_18_21\": 1515, \"AGE_22_29\": 3297, \"AGE_30_39\": 4148, \"AGE_40_49\": 3455, \"AGE_50_64\": 3170, \"AGE_65_UP\": 1706, \"MED_AGE\": 29.400000, \"MED_AGE_M\": 27.700000, \"MED_AGE_F\": 31.100000, \"HOUSEHOLDS\": 7566, \"AVE_HH_SZ\": 3.330000, \"HSEHLD_1_M\": 647, \"HSEHLD_1_F\": 912, \"MARHH_CHD\": 1980, \"MARHH_NO_C\": 1379, \"MHH_CHILD\": 221, \"FHH_CHILD\": 995, \"FAMILIES\": 5525, \"AVE_FAM_SZ\": 3.790000, \"HSE_UNITS\": 7812, \"VACANT\": 246, \"OWNER_OCC\": 2373, \"RENTER_OCC\": 5193 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.0478881625681, 41.114451624331394 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Stony Brook\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"71608\", \"CAPITAL\": \"N\", \"AREALAND\": 5.742000, \"AREAWATER\": 0.429000, \"POP_CL\": 6, \"POP2000\": 13727, \"WHITE\": 12604, \"BLACK\": 169, \"AMERI_ES\": 5, \"ASIAN\": 782, \"HAWN_PI\": 3, \"OTHER\": 35, \"MULT_RACE\": 129, \"HISPANIC\": 334, \"MALES\": 6696, \"FEMALES\": 7031, \"AGE_UNDER5\": 989, \"AGE_5_17\": 2709, \"AGE_18_21\": 452, \"AGE_22_29\": 891, \"AGE_30_39\": 2122, \"AGE_40_49\": 2241, \"AGE_50_64\": 2578, \"AGE_65_UP\": 1745, \"MED_AGE\": 38.800000, \"MED_AGE_M\": 37.700000, \"MED_AGE_F\": 39.900000, \"HOUSEHOLDS\": 4758, \"AVE_HH_SZ\": 2.880000, \"HSEHLD_1_M\": 247, \"HSEHLD_1_F\": 525, \"MARHH_CHD\": 1693, \"MARHH_NO_C\": 1700, \"MHH_CHILD\": 45, \"FHH_CHILD\": 126, \"FAMILIES\": 3789, \"AVE_FAM_SZ\": 3.220000, \"HSE_UNITS\": 4970, \"VACANT\": 212, \"OWNER_OCC\": 4378, \"RENTER_OCC\": 380 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.12862593495106, 40.906410902893541 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Stony Point\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"71663\", \"CAPITAL\": \"N\", \"AREALAND\": 5.501000, \"AREAWATER\": 1.259000, \"POP_CL\": 6, \"POP2000\": 11744, \"WHITE\": 11069, \"BLACK\": 161, \"AMERI_ES\": 16, \"ASIAN\": 163, \"HAWN_PI\": 3, \"OTHER\": 189, \"MULT_RACE\": 143, \"HISPANIC\": 829, \"MALES\": 5824, \"FEMALES\": 5920, \"AGE_UNDER5\": 803, \"AGE_5_17\": 2238, \"AGE_18_21\": 427, \"AGE_22_29\": 895, \"AGE_30_39\": 1877, \"AGE_40_49\": 2000, \"AGE_50_64\": 2062, \"AGE_65_UP\": 1442, \"MED_AGE\": 38.300000, \"MED_AGE_M\": 37.700000, \"MED_AGE_F\": 39.000000, \"HOUSEHOLDS\": 3991, \"AVE_HH_SZ\": 2.910000, \"HSEHLD_1_M\": 306, \"HSEHLD_1_F\": 390, \"MARHH_CHD\": 1299, \"MARHH_NO_C\": 1339, \"MHH_CHILD\": 57, \"FHH_CHILD\": 165, \"FAMILIES\": 3161, \"AVE_FAM_SZ\": 3.310000, \"HSE_UNITS\": 4074, \"VACANT\": 83, \"OWNER_OCC\": 3378, \"RENTER_OCC\": 613 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.993051284491031, 41.226367883137904 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Suffern\", \"CLASS\": \"village\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"71894\", \"CAPITAL\": \"N\", \"AREALAND\": 2.090000, \"AREAWATER\": 0.035000, \"POP_CL\": 6, \"POP2000\": 11006, \"WHITE\": 9557, \"BLACK\": 388, \"AMERI_ES\": 29, \"ASIAN\": 311, \"HAWN_PI\": 10, \"OTHER\": 498, \"MULT_RACE\": 213, \"HISPANIC\": 1416, \"MALES\": 5277, \"FEMALES\": 5729, \"AGE_UNDER5\": 617, \"AGE_5_17\": 1596, \"AGE_18_21\": 418, \"AGE_22_29\": 1220, \"AGE_30_39\": 1877, \"AGE_40_49\": 1639, \"AGE_50_64\": 2000, \"AGE_65_UP\": 1639, \"MED_AGE\": 38.800000, \"MED_AGE_M\": 36.700000, \"MED_AGE_F\": 40.900000, \"HOUSEHOLDS\": 4634, \"AVE_HH_SZ\": 2.360000, \"HSEHLD_1_M\": 566, \"HSEHLD_1_F\": 942, \"MARHH_CHD\": 895, \"MARHH_NO_C\": 1313, \"MHH_CHILD\": 48, \"FHH_CHILD\": 226, \"FAMILIES\": 2838, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 4762, \"VACANT\": 128, \"OWNER_OCC\": 3050, \"RENTER_OCC\": 1584 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.145907428915535, 41.111834199796796 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Syosset\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"72554\", \"CAPITAL\": \"N\", \"AREALAND\": 4.985000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 18544, \"WHITE\": 15810, \"BLACK\": 93, \"AMERI_ES\": 7, \"ASIAN\": 2347, \"HAWN_PI\": 2, \"OTHER\": 104, \"MULT_RACE\": 181, \"HISPANIC\": 542, \"MALES\": 9093, \"FEMALES\": 9451, \"AGE_UNDER5\": 1218, \"AGE_5_17\": 3603, \"AGE_18_21\": 599, \"AGE_22_29\": 1114, \"AGE_30_39\": 2527, \"AGE_40_49\": 3271, \"AGE_50_64\": 3431, \"AGE_65_UP\": 2781, \"MED_AGE\": 40.600000, \"MED_AGE_M\": 39.300000, \"MED_AGE_F\": 41.600000, \"HOUSEHOLDS\": 6281, \"AVE_HH_SZ\": 2.920000, \"HSEHLD_1_M\": 284, \"HSEHLD_1_F\": 579, \"MARHH_CHD\": 2269, \"MARHH_NO_C\": 2421, \"MHH_CHILD\": 36, \"FHH_CHILD\": 182, \"FAMILIES\": 5310, \"AVE_FAM_SZ\": 3.210000, \"HSE_UNITS\": 6354, \"VACANT\": 73, \"OWNER_OCC\": 5812, \"RENTER_OCC\": 469 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.501100450856242, 40.812752419543479 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Syracuse\", \"CLASS\": \"city\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"73000\", \"CAPITAL\": \"N\", \"AREALAND\": 25.090000, \"AREAWATER\": 0.551000, \"POP_CL\": 8, \"POP2000\": 147306, \"WHITE\": 94663, \"BLACK\": 37336, \"AMERI_ES\": 1670, \"ASIAN\": 4961, \"HAWN_PI\": 72, \"OTHER\": 3284, \"MULT_RACE\": 5320, \"HISPANIC\": 7768, \"MALES\": 69308, \"FEMALES\": 77998, \"AGE_UNDER5\": 10209, \"AGE_5_17\": 26576, \"AGE_18_21\": 16227, \"AGE_22_29\": 19611, \"AGE_30_39\": 20301, \"AGE_40_49\": 18464, \"AGE_50_64\": 16970, \"AGE_65_UP\": 18948, \"MED_AGE\": 30.500000, \"MED_AGE_M\": 29.200000, \"MED_AGE_F\": 31.700000, \"HOUSEHOLDS\": 59482, \"AVE_HH_SZ\": 2.290000, \"HSEHLD_1_M\": 10087, \"HSEHLD_1_F\": 12649, \"MARHH_CHD\": 7071, \"MARHH_NO_C\": 9278, \"MHH_CHILD\": 1342, \"FHH_CHILD\": 7925, \"FAMILIES\": 30351, \"AVE_FAM_SZ\": 3.110000, \"HSE_UNITS\": 68192, \"VACANT\": 8710, \"OWNER_OCC\": 23991, \"RENTER_OCC\": 35491 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.144465667220629, 43.046900269784409 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Tarrytown\", \"CLASS\": \"village\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"73176\", \"CAPITAL\": \"N\", \"AREALAND\": 2.977000, \"AREAWATER\": 2.701000, \"POP_CL\": 6, \"POP2000\": 11090, \"WHITE\": 8588, \"BLACK\": 781, \"AMERI_ES\": 24, \"ASIAN\": 720, \"HAWN_PI\": 5, \"OTHER\": 587, \"MULT_RACE\": 385, \"HISPANIC\": 1793, \"MALES\": 5014, \"FEMALES\": 6076, \"AGE_UNDER5\": 732, \"AGE_5_17\": 1450, \"AGE_18_21\": 553, \"AGE_22_29\": 1334, \"AGE_30_39\": 2078, \"AGE_40_49\": 1599, \"AGE_50_64\": 1752, \"AGE_65_UP\": 1592, \"MED_AGE\": 37.000000, \"MED_AGE_M\": 36.000000, \"MED_AGE_F\": 38.000000, \"HOUSEHOLDS\": 4533, \"AVE_HH_SZ\": 2.330000, \"HSEHLD_1_M\": 462, \"HSEHLD_1_F\": 954, \"MARHH_CHD\": 931, \"MARHH_NO_C\": 1267, \"MHH_CHILD\": 49, \"FHH_CHILD\": 224, \"FAMILIES\": 2763, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 4688, \"VACANT\": 155, \"OWNER_OCC\": 2375, \"RENTER_OCC\": 2158 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.85990152382665, 41.069115501267312 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Terryville\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"73352\", \"CAPITAL\": \"N\", \"AREALAND\": 3.213000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10589, \"WHITE\": 9722, \"BLACK\": 172, \"AMERI_ES\": 11, \"ASIAN\": 242, \"HAWN_PI\": 1, \"OTHER\": 283, \"MULT_RACE\": 158, \"HISPANIC\": 1007, \"MALES\": 5233, \"FEMALES\": 5356, \"AGE_UNDER5\": 829, \"AGE_5_17\": 2076, \"AGE_18_21\": 426, \"AGE_22_29\": 1043, \"AGE_30_39\": 2011, \"AGE_40_49\": 1520, \"AGE_50_64\": 1792, \"AGE_65_UP\": 892, \"MED_AGE\": 34.700000, \"MED_AGE_M\": 34.100000, \"MED_AGE_F\": 35.300000, \"HOUSEHOLDS\": 3313, \"AVE_HH_SZ\": 3.180000, \"HSEHLD_1_M\": 176, \"HSEHLD_1_F\": 275, \"MARHH_CHD\": 1202, \"MARHH_NO_C\": 1152, \"MHH_CHILD\": 41, \"FHH_CHILD\": 129, \"FAMILIES\": 2739, \"AVE_FAM_SZ\": 3.490000, \"HSE_UNITS\": 3437, \"VACANT\": 124, \"OWNER_OCC\": 2845, \"RENTER_OCC\": 468 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.048791173139634, 40.905293498247161 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Tonawanda\", \"CLASS\": \"city\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"74166\", \"CAPITAL\": \"N\", \"AREALAND\": 3.794000, \"AREAWATER\": 0.299000, \"POP_CL\": 6, \"POP2000\": 16136, \"WHITE\": 15826, \"BLACK\": 67, \"AMERI_ES\": 75, \"ASIAN\": 63, \"HAWN_PI\": 2, \"OTHER\": 28, \"MULT_RACE\": 75, \"HISPANIC\": 144, \"MALES\": 7835, \"FEMALES\": 8301, \"AGE_UNDER5\": 923, \"AGE_5_17\": 2934, \"AGE_18_21\": 713, \"AGE_22_29\": 1370, \"AGE_30_39\": 2410, \"AGE_40_49\": 2671, \"AGE_50_64\": 2406, \"AGE_65_UP\": 2709, \"MED_AGE\": 38.900000, \"MED_AGE_M\": 37.300000, \"MED_AGE_F\": 40.600000, \"HOUSEHOLDS\": 6741, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 855, \"HSEHLD_1_F\": 1245, \"MARHH_CHD\": 1427, \"MARHH_NO_C\": 1940, \"MHH_CHILD\": 136, \"FHH_CHILD\": 387, \"FAMILIES\": 4364, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 7119, \"VACANT\": 378, \"OWNER_OCC\": 4888, \"RENTER_OCC\": 1853 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -78.877406937249049, 43.011189872517775 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Tonawanda\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"74183\", \"CAPITAL\": \"N\", \"AREALAND\": 17.368000, \"AREAWATER\": 1.560000, \"POP_CL\": 7, \"POP2000\": 61729, \"WHITE\": 59099, \"BLACK\": 940, \"AMERI_ES\": 153, \"ASIAN\": 802, \"HAWN_PI\": 8, \"OTHER\": 223, \"MULT_RACE\": 504, \"HISPANIC\": 802, \"MALES\": 28959, \"FEMALES\": 32770, \"AGE_UNDER5\": 3167, \"AGE_5_17\": 10111, \"AGE_18_21\": 2541, \"AGE_22_29\": 5171, \"AGE_30_39\": 8052, \"AGE_40_49\": 9707, \"AGE_50_64\": 9353, \"AGE_65_UP\": 13627, \"MED_AGE\": 41.800000, \"MED_AGE_M\": 39.800000, \"MED_AGE_F\": 43.500000, \"HOUSEHOLDS\": 26207, \"AVE_HH_SZ\": 2.330000, \"HSEHLD_1_M\": 2841, \"HSEHLD_1_F\": 5263, \"MARHH_CHD\": 5223, \"MARHH_NO_C\": 8186, \"MHH_CHILD\": 366, \"FHH_CHILD\": 1306, \"FAMILIES\": 16932, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 27175, \"VACANT\": 968, \"OWNER_OCC\": 19556, \"RENTER_OCC\": 6651 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -78.852135059780196, 42.985306875381454 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Troy\", \"CLASS\": \"city\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"75484\", \"CAPITAL\": \"N\", \"AREALAND\": 10.413000, \"AREAWATER\": 0.603000, \"POP_CL\": 6, \"POP2000\": 49170, \"WHITE\": 39443, \"BLACK\": 5612, \"AMERI_ES\": 140, \"ASIAN\": 1717, \"HAWN_PI\": 20, \"OTHER\": 1083, \"MULT_RACE\": 1155, \"HISPANIC\": 2131, \"MALES\": 24335, \"FEMALES\": 24835, \"AGE_UNDER5\": 3139, \"AGE_5_17\": 7726, \"AGE_18_21\": 5877, \"AGE_22_29\": 6581, \"AGE_30_39\": 6985, \"AGE_40_49\": 6052, \"AGE_50_64\": 6081, \"AGE_65_UP\": 6729, \"MED_AGE\": 31.700000, \"MED_AGE_M\": 29.200000, \"MED_AGE_F\": 34.700000, \"HOUSEHOLDS\": 19996, \"AVE_HH_SZ\": 2.260000, \"HSEHLD_1_M\": 3231, \"HSEHLD_1_F\": 4092, \"MARHH_CHD\": 2710, \"MARHH_NO_C\": 3810, \"MHH_CHILD\": 521, \"FHH_CHILD\": 2173, \"FAMILIES\": 10729, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 23093, \"VACANT\": 3097, \"OWNER_OCC\": 8020, \"RENTER_OCC\": 11976 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.680963877221288, 42.738286625044346 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Uniondale\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"76089\", \"CAPITAL\": \"N\", \"AREALAND\": 2.652000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 23011, \"WHITE\": 6207, \"BLACK\": 12779, \"AMERI_ES\": 81, \"ASIAN\": 484, \"HAWN_PI\": 18, \"OTHER\": 2289, \"MULT_RACE\": 1153, \"HISPANIC\": 5261, \"MALES\": 10899, \"FEMALES\": 12112, \"AGE_UNDER5\": 1535, \"AGE_5_17\": 4563, \"AGE_18_21\": 1217, \"AGE_22_29\": 2608, \"AGE_30_39\": 3489, \"AGE_40_49\": 3234, \"AGE_50_64\": 3471, \"AGE_65_UP\": 2894, \"MED_AGE\": 34.900000, \"MED_AGE_M\": 32.300000, \"MED_AGE_F\": 36.900000, \"HOUSEHOLDS\": 6026, \"AVE_HH_SZ\": 3.660000, \"HSEHLD_1_M\": 329, \"HSEHLD_1_F\": 634, \"MARHH_CHD\": 1680, \"MARHH_NO_C\": 1509, \"MHH_CHILD\": 131, \"FHH_CHILD\": 557, \"FAMILIES\": 4829, \"AVE_FAM_SZ\": 3.950000, \"HSE_UNITS\": 6201, \"VACANT\": 175, \"OWNER_OCC\": 4750, \"RENTER_OCC\": 1276 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.591213857410452, 40.703105877624409 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Utica\", \"CLASS\": \"city\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"76540\", \"CAPITAL\": \"N\", \"AREALAND\": 16.348000, \"AREAWATER\": 0.261000, \"POP_CL\": 7, \"POP2000\": 60651, \"WHITE\": 48166, \"BLACK\": 7838, \"AMERI_ES\": 170, \"ASIAN\": 1341, \"HAWN_PI\": 29, \"OTHER\": 1309, \"MULT_RACE\": 1798, \"HISPANIC\": 3510, \"MALES\": 28512, \"FEMALES\": 32139, \"AGE_UNDER5\": 4087, \"AGE_5_17\": 10533, \"AGE_18_21\": 3750, \"AGE_22_29\": 6188, \"AGE_30_39\": 8380, \"AGE_40_49\": 7737, \"AGE_50_64\": 8555, \"AGE_65_UP\": 11421, \"MED_AGE\": 37.000000, \"MED_AGE_M\": 35.000000, \"MED_AGE_F\": 39.000000, \"HOUSEHOLDS\": 25100, \"AVE_HH_SZ\": 2.280000, \"HSEHLD_1_M\": 3933, \"HSEHLD_1_F\": 5459, \"MARHH_CHD\": 3608, \"MARHH_NO_C\": 5315, \"MHH_CHILD\": 491, \"FHH_CHILD\": 2674, \"FAMILIES\": 14224, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 29186, \"VACANT\": 4086, \"OWNER_OCC\": 12261, \"RENTER_OCC\": 12839 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.231957780552463, 43.096571840983508 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Valley Stream\", \"CLASS\": \"village\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"76705\", \"CAPITAL\": \"N\", \"AREALAND\": 3.441000, \"AREAWATER\": 0.025000, \"POP_CL\": 6, \"POP2000\": 36368, \"WHITE\": 28654, \"BLACK\": 2714, \"AMERI_ES\": 54, \"ASIAN\": 2496, \"HAWN_PI\": 17, \"OTHER\": 1509, \"MULT_RACE\": 924, \"HISPANIC\": 4463, \"MALES\": 17363, \"FEMALES\": 19005, \"AGE_UNDER5\": 2111, \"AGE_5_17\": 6448, \"AGE_18_21\": 1598, \"AGE_22_29\": 3244, \"AGE_30_39\": 5408, \"AGE_40_49\": 5944, \"AGE_50_64\": 5695, \"AGE_65_UP\": 5920, \"MED_AGE\": 39.000000, \"MED_AGE_M\": 37.200000, \"MED_AGE_F\": 40.500000, \"HOUSEHOLDS\": 12484, \"AVE_HH_SZ\": 2.910000, \"HSEHLD_1_M\": 836, \"HSEHLD_1_F\": 1681, \"MARHH_CHD\": 3566, \"MARHH_NO_C\": 4115, \"MHH_CHILD\": 143, \"FHH_CHILD\": 519, \"FAMILIES\": 9599, \"AVE_FAM_SZ\": 3.370000, \"HSE_UNITS\": 12688, \"VACANT\": 204, \"OWNER_OCC\": 10029, \"RENTER_OCC\": 2455 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.703462692626687, 40.664788254125064 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wantagh\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"78146\", \"CAPITAL\": \"N\", \"AREALAND\": 3.843000, \"AREAWATER\": 0.297000, \"POP_CL\": 6, \"POP2000\": 18971, \"WHITE\": 18354, \"BLACK\": 37, \"AMERI_ES\": 7, \"ASIAN\": 359, \"HAWN_PI\": 0, \"OTHER\": 65, \"MULT_RACE\": 149, \"HISPANIC\": 619, \"MALES\": 9243, \"FEMALES\": 9728, \"AGE_UNDER5\": 1505, \"AGE_5_17\": 3668, \"AGE_18_21\": 629, \"AGE_22_29\": 1247, \"AGE_30_39\": 2980, \"AGE_40_49\": 3292, \"AGE_50_64\": 3130, \"AGE_65_UP\": 2520, \"MED_AGE\": 38.500000, \"MED_AGE_M\": 37.700000, \"MED_AGE_F\": 39.300000, \"HOUSEHOLDS\": 6179, \"AVE_HH_SZ\": 3.060000, \"HSEHLD_1_M\": 269, \"HSEHLD_1_F\": 548, \"MARHH_CHD\": 2350, \"MARHH_NO_C\": 2211, \"MHH_CHILD\": 38, \"FHH_CHILD\": 156, \"FAMILIES\": 5213, \"AVE_FAM_SZ\": 3.370000, \"HSE_UNITS\": 6250, \"VACANT\": 71, \"OWNER_OCC\": 5792, \"RENTER_OCC\": 387 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.510697480905606, 40.674706340381611 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Watertown\", \"CLASS\": \"city\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"78608\", \"CAPITAL\": \"N\", \"AREALAND\": 8.957000, \"AREAWATER\": 0.318000, \"POP_CL\": 6, \"POP2000\": 26705, \"WHITE\": 23801, \"BLACK\": 1321, \"AMERI_ES\": 144, \"ASIAN\": 309, \"HAWN_PI\": 30, \"OTHER\": 446, \"MULT_RACE\": 654, \"HISPANIC\": 960, \"MALES\": 12688, \"FEMALES\": 14017, \"AGE_UNDER5\": 2076, \"AGE_5_17\": 4847, \"AGE_18_21\": 1512, \"AGE_22_29\": 3341, \"AGE_30_39\": 3960, \"AGE_40_49\": 3462, \"AGE_50_64\": 3367, \"AGE_65_UP\": 4140, \"MED_AGE\": 34.000000, \"MED_AGE_M\": 31.700000, \"MED_AGE_F\": 36.300000, \"HOUSEHOLDS\": 11036, \"AVE_HH_SZ\": 2.320000, \"HSEHLD_1_M\": 1514, \"HSEHLD_1_F\": 2289, \"MARHH_CHD\": 2127, \"MARHH_NO_C\": 2360, \"MHH_CHILD\": 281, \"FHH_CHILD\": 1112, \"FAMILIES\": 6503, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 12450, \"VACANT\": 1414, \"OWNER_OCC\": 4740, \"RENTER_OCC\": 6296 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.906502391600242, 43.975555585560912 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Watervliet\", \"CLASS\": \"city\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"78674\", \"CAPITAL\": \"N\", \"AREALAND\": 1.342000, \"AREAWATER\": 0.152000, \"POP_CL\": 6, \"POP2000\": 10207, \"WHITE\": 9390, \"BLACK\": 395, \"AMERI_ES\": 18, \"ASIAN\": 137, \"HAWN_PI\": 8, \"OTHER\": 123, \"MULT_RACE\": 136, \"HISPANIC\": 369, \"MALES\": 4781, \"FEMALES\": 5426, \"AGE_UNDER5\": 670, \"AGE_5_17\": 1747, \"AGE_18_21\": 525, \"AGE_22_29\": 1308, \"AGE_30_39\": 1575, \"AGE_40_49\": 1395, \"AGE_50_64\": 1351, \"AGE_65_UP\": 1636, \"MED_AGE\": 35.100000, \"MED_AGE_M\": 33.000000, \"MED_AGE_F\": 37.400000, \"HOUSEHOLDS\": 4665, \"AVE_HH_SZ\": 2.180000, \"HSEHLD_1_M\": 711, \"HSEHLD_1_F\": 1074, \"MARHH_CHD\": 628, \"MARHH_NO_C\": 907, \"MHH_CHILD\": 117, \"FHH_CHILD\": 508, \"FAMILIES\": 2549, \"AVE_FAM_SZ\": 2.910000, \"HSE_UNITS\": 5116, \"VACANT\": 451, \"OWNER_OCC\": 1926, \"RENTER_OCC\": 2739 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.706314813143365, 42.724636482139204 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"West Babylon\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"79246\", \"CAPITAL\": \"N\", \"AREALAND\": 7.706000, \"AREAWATER\": 0.311000, \"POP_CL\": 6, \"POP2000\": 43452, \"WHITE\": 36407, \"BLACK\": 4483, \"AMERI_ES\": 53, \"ASIAN\": 825, \"HAWN_PI\": 8, \"OTHER\": 883, \"MULT_RACE\": 793, \"HISPANIC\": 3344, \"MALES\": 20763, \"FEMALES\": 22689, \"AGE_UNDER5\": 3022, \"AGE_5_17\": 8091, \"AGE_18_21\": 1785, \"AGE_22_29\": 4067, \"AGE_30_39\": 7518, \"AGE_40_49\": 6771, \"AGE_50_64\": 6480, \"AGE_65_UP\": 5718, \"MED_AGE\": 36.500000, \"MED_AGE_M\": 35.300000, \"MED_AGE_F\": 37.600000, \"HOUSEHOLDS\": 14268, \"AVE_HH_SZ\": 3.000000, \"HSEHLD_1_M\": 984, \"HSEHLD_1_F\": 1648, \"MARHH_CHD\": 4180, \"MARHH_NO_C\": 4295, \"MHH_CHILD\": 240, \"FHH_CHILD\": 743, \"FAMILIES\": 10944, \"AVE_FAM_SZ\": 3.420000, \"HSE_UNITS\": 14571, \"VACANT\": 303, \"OWNER_OCC\": 10683, \"RENTER_OCC\": 3585 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.357267650045273, 40.713409295484759 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Westbury\", \"CLASS\": \"village\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"79444\", \"CAPITAL\": \"N\", \"AREALAND\": 2.386000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14263, \"WHITE\": 8789, \"BLACK\": 3230, \"AMERI_ES\": 34, \"ASIAN\": 673, \"HAWN_PI\": 15, \"OTHER\": 848, \"MULT_RACE\": 674, \"HISPANIC\": 2689, \"MALES\": 7050, \"FEMALES\": 7213, \"AGE_UNDER5\": 881, \"AGE_5_17\": 2293, \"AGE_18_21\": 674, \"AGE_22_29\": 1687, \"AGE_30_39\": 2224, \"AGE_40_49\": 2197, \"AGE_50_64\": 2367, \"AGE_65_UP\": 1940, \"MED_AGE\": 37.200000, \"MED_AGE_M\": 35.600000, \"MED_AGE_F\": 38.700000, \"HOUSEHOLDS\": 4638, \"AVE_HH_SZ\": 3.070000, \"HSEHLD_1_M\": 386, \"HSEHLD_1_F\": 533, \"MARHH_CHD\": 1198, \"MARHH_NO_C\": 1470, \"MHH_CHILD\": 59, \"FHH_CHILD\": 169, \"FAMILIES\": 3443, \"AVE_FAM_SZ\": 3.490000, \"HSE_UNITS\": 4714, \"VACANT\": 76, \"OWNER_OCC\": 3577, \"RENTER_OCC\": 1061 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.58831755219947, 40.758938902433258 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"West Haverstraw\", \"CLASS\": \"village\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"80203\", \"CAPITAL\": \"N\", \"AREALAND\": 1.543000, \"AREAWATER\": 0.006000, \"POP_CL\": 6, \"POP2000\": 10295, \"WHITE\": 6676, \"BLACK\": 1318, \"AMERI_ES\": 57, \"ASIAN\": 427, \"HAWN_PI\": 10, \"OTHER\": 1304, \"MULT_RACE\": 503, \"HISPANIC\": 3127, \"MALES\": 4938, \"FEMALES\": 5357, \"AGE_UNDER5\": 747, \"AGE_5_17\": 2074, \"AGE_18_21\": 436, \"AGE_22_29\": 1022, \"AGE_30_39\": 1770, \"AGE_40_49\": 1533, \"AGE_50_64\": 1484, \"AGE_65_UP\": 1229, \"MED_AGE\": 35.200000, \"MED_AGE_M\": 33.400000, \"MED_AGE_F\": 36.700000, \"HOUSEHOLDS\": 3542, \"AVE_HH_SZ\": 2.870000, \"HSEHLD_1_M\": 302, \"HSEHLD_1_F\": 554, \"MARHH_CHD\": 971, \"MARHH_NO_C\": 876, \"MHH_CHILD\": 74, \"FHH_CHILD\": 272, \"FAMILIES\": 2521, \"AVE_FAM_SZ\": 3.450000, \"HSE_UNITS\": 3634, \"VACANT\": 92, \"OWNER_OCC\": 2086, \"RENTER_OCC\": 1456 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.990786266226422, 41.20460089143004 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"West Hempstead\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"80225\", \"CAPITAL\": \"N\", \"AREALAND\": 2.658000, \"AREAWATER\": 0.095000, \"POP_CL\": 6, \"POP2000\": 18713, \"WHITE\": 15473, \"BLACK\": 1111, \"AMERI_ES\": 32, \"ASIAN\": 951, \"HAWN_PI\": 4, \"OTHER\": 601, \"MULT_RACE\": 541, \"HISPANIC\": 1860, \"MALES\": 9143, \"FEMALES\": 9570, \"AGE_UNDER5\": 1284, \"AGE_5_17\": 3621, \"AGE_18_21\": 806, \"AGE_22_29\": 1571, \"AGE_30_39\": 2894, \"AGE_40_49\": 2880, \"AGE_50_64\": 2968, \"AGE_65_UP\": 2689, \"MED_AGE\": 37.400000, \"MED_AGE_M\": 35.900000, \"MED_AGE_F\": 39.000000, \"HOUSEHOLDS\": 6024, \"AVE_HH_SZ\": 3.090000, \"HSEHLD_1_M\": 325, \"HSEHLD_1_F\": 630, \"MARHH_CHD\": 2004, \"MARHH_NO_C\": 1988, \"MHH_CHILD\": 53, \"FHH_CHILD\": 236, \"FAMILIES\": 4870, \"AVE_FAM_SZ\": 3.470000, \"HSE_UNITS\": 6110, \"VACANT\": 86, \"OWNER_OCC\": 5293, \"RENTER_OCC\": 731 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.652661454802924, 40.696417533537684 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"West Islip\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"80302\", \"CAPITAL\": \"N\", \"AREALAND\": 6.196000, \"AREAWATER\": 0.431000, \"POP_CL\": 6, \"POP2000\": 28907, \"WHITE\": 28009, \"BLACK\": 115, \"AMERI_ES\": 16, \"ASIAN\": 316, \"HAWN_PI\": 3, \"OTHER\": 146, \"MULT_RACE\": 302, \"HISPANIC\": 1018, \"MALES\": 14191, \"FEMALES\": 14716, \"AGE_UNDER5\": 2130, \"AGE_5_17\": 6095, \"AGE_18_21\": 970, \"AGE_22_29\": 2040, \"AGE_30_39\": 5024, \"AGE_40_49\": 4825, \"AGE_50_64\": 4301, \"AGE_65_UP\": 3522, \"MED_AGE\": 36.900000, \"MED_AGE_M\": 35.900000, \"MED_AGE_F\": 37.800000, \"HOUSEHOLDS\": 8883, \"AVE_HH_SZ\": 3.210000, \"HSEHLD_1_M\": 441, \"HSEHLD_1_F\": 570, \"MARHH_CHD\": 3419, \"MARHH_NO_C\": 3010, \"MHH_CHILD\": 94, \"FHH_CHILD\": 334, \"FAMILIES\": 7591, \"AVE_FAM_SZ\": 3.470000, \"HSE_UNITS\": 9044, \"VACANT\": 161, \"OWNER_OCC\": 8258, \"RENTER_OCC\": 625 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.297912460566948, 40.715018684325514 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"West Seneca\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"80907\", \"CAPITAL\": \"N\", \"AREALAND\": 21.382000, \"AREAWATER\": 0.022000, \"POP_CL\": 6, \"POP2000\": 45943, \"WHITE\": 45074, \"BLACK\": 213, \"AMERI_ES\": 80, \"ASIAN\": 229, \"HAWN_PI\": 4, \"OTHER\": 86, \"MULT_RACE\": 257, \"HISPANIC\": 405, \"MALES\": 21892, \"FEMALES\": 24051, \"AGE_UNDER5\": 2389, \"AGE_5_17\": 7849, \"AGE_18_21\": 1910, \"AGE_22_29\": 3486, \"AGE_30_39\": 6471, \"AGE_40_49\": 7188, \"AGE_50_64\": 8270, \"AGE_65_UP\": 8380, \"MED_AGE\": 41.100000, \"MED_AGE_M\": 39.700000, \"MED_AGE_F\": 42.400000, \"HOUSEHOLDS\": 18337, \"AVE_HH_SZ\": 2.470000, \"HSEHLD_1_M\": 1823, \"HSEHLD_1_F\": 3048, \"MARHH_CHD\": 4121, \"MARHH_NO_C\": 6187, \"MHH_CHILD\": 225, \"FHH_CHILD\": 828, \"FAMILIES\": 12751, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 18993, \"VACANT\": 656, \"OWNER_OCC\": 14377, \"RENTER_OCC\": 3960 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -78.760933487776825, 42.839057887397367 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"White Plains\", \"CLASS\": \"city\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"81677\", \"CAPITAL\": \"N\", \"AREALAND\": 9.801000, \"AREAWATER\": 0.091000, \"POP_CL\": 7, \"POP2000\": 53077, \"WHITE\": 34465, \"BLACK\": 8444, \"AMERI_ES\": 182, \"ASIAN\": 2389, \"HAWN_PI\": 37, \"OTHER\": 5502, \"MULT_RACE\": 2058, \"HISPANIC\": 12476, \"MALES\": 25110, \"FEMALES\": 27967, \"AGE_UNDER5\": 3317, \"AGE_5_17\": 7945, \"AGE_18_21\": 2032, \"AGE_22_29\": 5865, \"AGE_30_39\": 9063, \"AGE_40_49\": 8106, \"AGE_50_64\": 8691, \"AGE_65_UP\": 8058, \"MED_AGE\": 38.100000, \"MED_AGE_M\": 35.900000, \"MED_AGE_F\": 40.300000, \"HOUSEHOLDS\": 20921, \"AVE_HH_SZ\": 2.470000, \"HSEHLD_1_M\": 2548, \"HSEHLD_1_F\": 4441, \"MARHH_CHD\": 4301, \"MARHH_NO_C\": 5265, \"MHH_CHILD\": 268, \"FHH_CHILD\": 1062, \"FAMILIES\": 12704, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 21576, \"VACANT\": 655, \"OWNER_OCC\": 10928, \"RENTER_OCC\": 9993 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.761977649019514, 41.023471992453125 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Woodmere\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"82942\", \"CAPITAL\": \"N\", \"AREALAND\": 2.555000, \"AREAWATER\": 0.141000, \"POP_CL\": 6, \"POP2000\": 16447, \"WHITE\": 15210, \"BLACK\": 274, \"AMERI_ES\": 4, \"ASIAN\": 613, \"HAWN_PI\": 1, \"OTHER\": 198, \"MULT_RACE\": 147, \"HISPANIC\": 587, \"MALES\": 8028, \"FEMALES\": 8419, \"AGE_UNDER5\": 1204, \"AGE_5_17\": 3396, \"AGE_18_21\": 592, \"AGE_22_29\": 975, \"AGE_30_39\": 1917, \"AGE_40_49\": 2574, \"AGE_50_64\": 2937, \"AGE_65_UP\": 2852, \"MED_AGE\": 40.600000, \"MED_AGE_M\": 39.800000, \"MED_AGE_F\": 41.300000, \"HOUSEHOLDS\": 5349, \"AVE_HH_SZ\": 3.010000, \"HSEHLD_1_M\": 245, \"HSEHLD_1_F\": 490, \"MARHH_CHD\": 1907, \"MARHH_NO_C\": 2184, \"MHH_CHILD\": 40, \"FHH_CHILD\": 128, \"FAMILIES\": 4523, \"AVE_FAM_SZ\": 3.320000, \"HSE_UNITS\": 5462, \"VACANT\": 113, \"OWNER_OCC\": 4853, \"RENTER_OCC\": 496 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.719676360793699, 40.636244164115929 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wyandanch\", \"CLASS\": \"CDP\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"83294\", \"CAPITAL\": \"N\", \"AREALAND\": 4.374000, \"AREAWATER\": 0.003000, \"POP_CL\": 6, \"POP2000\": 10546, \"WHITE\": 1077, \"BLACK\": 8196, \"AMERI_ES\": 79, \"ASIAN\": 60, \"HAWN_PI\": 3, \"OTHER\": 660, \"MULT_RACE\": 471, \"HISPANIC\": 1724, \"MALES\": 4971, \"FEMALES\": 5575, \"AGE_UNDER5\": 947, \"AGE_5_17\": 2806, \"AGE_18_21\": 651, \"AGE_22_29\": 1225, \"AGE_30_39\": 1605, \"AGE_40_49\": 1299, \"AGE_50_64\": 1329, \"AGE_65_UP\": 684, \"MED_AGE\": 27.800000, \"MED_AGE_M\": 26.100000, \"MED_AGE_F\": 29.300000, \"HOUSEHOLDS\": 2525, \"AVE_HH_SZ\": 4.140000, \"HSEHLD_1_M\": 131, \"HSEHLD_1_F\": 146, \"MARHH_CHD\": 553, \"MARHH_NO_C\": 450, \"MHH_CHILD\": 90, \"FHH_CHILD\": 541, \"FAMILIES\": 2113, \"AVE_FAM_SZ\": 4.250000, \"HSE_UNITS\": 2776, \"VACANT\": 251, \"OWNER_OCC\": 1460, \"RENTER_OCC\": 1065 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.368436088623184, 40.747108229756435 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Yonkers\", \"CLASS\": \"city\", \"ST\": \"NY\", \"STFIPS\": \"36\", \"PLACEFIP\": \"84000\", \"CAPITAL\": \"N\", \"AREALAND\": 18.077000, \"AREAWATER\": 2.239000, \"POP_CL\": 8, \"POP2000\": 196086, \"WHITE\": 118007, \"BLACK\": 32575, \"AMERI_ES\": 861, \"ASIAN\": 9526, \"HAWN_PI\": 98, \"OTHER\": 26349, \"MULT_RACE\": 8670, \"HISPANIC\": 50852, \"MALES\": 92132, \"FEMALES\": 103954, \"AGE_UNDER5\": 13702, \"AGE_5_17\": 34012, \"AGE_18_21\": 9569, \"AGE_22_29\": 22346, \"AGE_30_39\": 31480, \"AGE_40_49\": 26351, \"AGE_50_64\": 29249, \"AGE_65_UP\": 29377, \"MED_AGE\": 35.800000, \"MED_AGE_M\": 34.300000, \"MED_AGE_F\": 37.300000, \"HOUSEHOLDS\": 74351, \"AVE_HH_SZ\": 2.610000, \"HSEHLD_1_M\": 8233, \"HSEHLD_1_F\": 13454, \"MARHH_CHD\": 14517, \"MARHH_NO_C\": 18368, \"MHH_CHILD\": 1284, \"FHH_CHILD\": 7200, \"FAMILIES\": 49290, \"AVE_FAM_SZ\": 3.230000, \"HSE_UNITS\": 77589, \"VACANT\": 3238, \"OWNER_OCC\": 32140, \"RENTER_OCC\": 42211 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.864492246811707, 40.941485464140733 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Akron\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"01000\", \"CAPITAL\": \"N\", \"AREALAND\": 62.069000, \"AREAWATER\": 0.339000, \"POP_CL\": 8, \"POP2000\": 217074, \"WHITE\": 145924, \"BLACK\": 61827, \"AMERI_ES\": 575, \"ASIAN\": 3257, \"HAWN_PI\": 48, \"OTHER\": 940, \"MULT_RACE\": 4503, \"HISPANIC\": 2513, \"MALES\": 103670, \"FEMALES\": 113404, \"AGE_UNDER5\": 15661, \"AGE_5_17\": 39305, \"AGE_18_21\": 13107, \"AGE_22_29\": 26731, \"AGE_30_39\": 32493, \"AGE_40_49\": 31006, \"AGE_50_64\": 29446, \"AGE_65_UP\": 29325, \"MED_AGE\": 34.200000, \"MED_AGE_M\": 32.600000, \"MED_AGE_F\": 35.700000, \"HOUSEHOLDS\": 90116, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 12969, \"HSEHLD_1_F\": 16818, \"MARHH_CHD\": 13852, \"MARHH_NO_C\": 19960, \"MHH_CHILD\": 1988, \"FHH_CHILD\": 9840, \"FAMILIES\": 53716, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 97315, \"VACANT\": 7199, \"OWNER_OCC\": 53500, \"RENTER_OCC\": 36616 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.517900966794031, 41.073154892707713 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Alliance\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"01420\", \"CAPITAL\": \"N\", \"AREALAND\": 8.612000, \"AREAWATER\": 0.002000, \"POP_CL\": 6, \"POP2000\": 23253, \"WHITE\": 19884, \"BLACK\": 2602, \"AMERI_ES\": 39, \"ASIAN\": 180, \"HAWN_PI\": 4, \"OTHER\": 96, \"MULT_RACE\": 448, \"HISPANIC\": 271, \"MALES\": 10851, \"FEMALES\": 12402, \"AGE_UNDER5\": 1563, \"AGE_5_17\": 3893, \"AGE_18_21\": 2552, \"AGE_22_29\": 2524, \"AGE_30_39\": 2804, \"AGE_40_49\": 2941, \"AGE_50_64\": 3204, \"AGE_65_UP\": 3772, \"MED_AGE\": 34.000000, \"MED_AGE_M\": 31.900000, \"MED_AGE_F\": 36.000000, \"HOUSEHOLDS\": 8908, \"AVE_HH_SZ\": 2.410000, \"HSEHLD_1_M\": 1043, \"HSEHLD_1_F\": 1702, \"MARHH_CHD\": 1538, \"MARHH_NO_C\": 2395, \"MHH_CHILD\": 215, \"FHH_CHILD\": 790, \"FAMILIES\": 5668, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 9730, \"VACANT\": 822, \"OWNER_OCC\": 5382, \"RENTER_OCC\": 3526 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.108095336880709, 40.913357879966398 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Amherst\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"01798\", \"CAPITAL\": \"N\", \"AREALAND\": 7.166000, \"AREAWATER\": 0.006000, \"POP_CL\": 6, \"POP2000\": 11797, \"WHITE\": 11424, \"BLACK\": 62, \"AMERI_ES\": 16, \"ASIAN\": 86, \"HAWN_PI\": 1, \"OTHER\": 92, \"MULT_RACE\": 116, \"HISPANIC\": 346, \"MALES\": 5660, \"FEMALES\": 6137, \"AGE_UNDER5\": 646, \"AGE_5_17\": 2418, \"AGE_18_21\": 427, \"AGE_22_29\": 688, \"AGE_30_39\": 1674, \"AGE_40_49\": 2013, \"AGE_50_64\": 2077, \"AGE_65_UP\": 1854, \"MED_AGE\": 40.200000, \"MED_AGE_M\": 39.200000, \"MED_AGE_F\": 41.000000, \"HOUSEHOLDS\": 4459, \"AVE_HH_SZ\": 2.610000, \"HSEHLD_1_M\": 340, \"HSEHLD_1_F\": 622, \"MARHH_CHD\": 1284, \"MARHH_NO_C\": 1639, \"MHH_CHILD\": 61, \"FHH_CHILD\": 189, \"FAMILIES\": 3388, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 4603, \"VACANT\": 144, \"OWNER_OCC\": 3806, \"RENTER_OCC\": 653 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.226201538102444, 41.399992916130479 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ashland\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"02568\", \"CAPITAL\": \"N\", \"AREALAND\": 10.357000, \"AREAWATER\": 0.038000, \"POP_CL\": 6, \"POP2000\": 21249, \"WHITE\": 20473, \"BLACK\": 253, \"AMERI_ES\": 28, \"ASIAN\": 224, \"HAWN_PI\": 10, \"OTHER\": 67, \"MULT_RACE\": 194, \"HISPANIC\": 181, \"MALES\": 9901, \"FEMALES\": 11348, \"AGE_UNDER5\": 1392, \"AGE_5_17\": 3413, \"AGE_18_21\": 2293, \"AGE_22_29\": 2318, \"AGE_30_39\": 2578, \"AGE_40_49\": 2822, \"AGE_50_64\": 2899, \"AGE_65_UP\": 3534, \"MED_AGE\": 34.800000, \"MED_AGE_M\": 32.300000, \"MED_AGE_F\": 36.900000, \"HOUSEHOLDS\": 8327, \"AVE_HH_SZ\": 2.320000, \"HSEHLD_1_M\": 953, \"HSEHLD_1_F\": 1691, \"MARHH_CHD\": 1597, \"MARHH_NO_C\": 2421, \"MHH_CHILD\": 176, \"FHH_CHILD\": 648, \"FAMILIES\": 5263, \"AVE_FAM_SZ\": 2.920000, \"HSE_UNITS\": 8870, \"VACANT\": 543, \"OWNER_OCC\": 5315, \"RENTER_OCC\": 3012 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.315146475103987, 40.867015921742926 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ashtabula\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"02638\", \"CAPITAL\": \"N\", \"AREALAND\": 7.551000, \"AREAWATER\": 0.172000, \"POP_CL\": 6, \"POP2000\": 20962, \"WHITE\": 17753, \"BLACK\": 2053, \"AMERI_ES\": 60, \"ASIAN\": 84, \"HAWN_PI\": 11, \"OTHER\": 527, \"MULT_RACE\": 474, \"HISPANIC\": 1115, \"MALES\": 9820, \"FEMALES\": 11142, \"AGE_UNDER5\": 1660, \"AGE_5_17\": 4120, \"AGE_18_21\": 1076, \"AGE_22_29\": 2224, \"AGE_30_39\": 2941, \"AGE_40_49\": 2929, \"AGE_50_64\": 2863, \"AGE_65_UP\": 3149, \"MED_AGE\": 34.900000, \"MED_AGE_M\": 33.000000, \"MED_AGE_F\": 36.300000, \"HOUSEHOLDS\": 8435, \"AVE_HH_SZ\": 2.450000, \"HSEHLD_1_M\": 1017, \"HSEHLD_1_F\": 1565, \"MARHH_CHD\": 1524, \"MARHH_NO_C\": 2013, \"MHH_CHILD\": 242, \"FHH_CHILD\": 982, \"FAMILIES\": 5421, \"AVE_FAM_SZ\": 3.030000, \"HSE_UNITS\": 9151, \"VACANT\": 716, \"OWNER_OCC\": 4922, \"RENTER_OCC\": 3513 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.796977838735216, 41.877137861908011 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Athens\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"02736\", \"CAPITAL\": \"N\", \"AREALAND\": 8.335000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 21342, \"WHITE\": 19028, \"BLACK\": 816, \"AMERI_ES\": 32, \"ASIAN\": 954, \"HAWN_PI\": 12, \"OTHER\": 128, \"MULT_RACE\": 372, \"HISPANIC\": 301, \"MALES\": 9999, \"FEMALES\": 11343, \"AGE_UNDER5\": 416, \"AGE_5_17\": 1004, \"AGE_18_21\": 10648, \"AGE_22_29\": 4824, \"AGE_30_39\": 1157, \"AGE_40_49\": 1098, \"AGE_50_64\": 1143, \"AGE_65_UP\": 1052, \"MED_AGE\": 21.500000, \"MED_AGE_M\": 21.800000, \"MED_AGE_F\": 21.300000, \"HOUSEHOLDS\": 6271, \"AVE_HH_SZ\": 2.250000, \"HSEHLD_1_M\": 926, \"HSEHLD_1_F\": 1239, \"MARHH_CHD\": 545, \"MARHH_NO_C\": 892, \"MHH_CHILD\": 46, \"FHH_CHILD\": 219, \"FAMILIES\": 1906, \"AVE_FAM_SZ\": 2.720000, \"HSE_UNITS\": 6715, \"VACANT\": 444, \"OWNER_OCC\": 1870, \"RENTER_OCC\": 4401 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.096237505223499, 39.329426922480053 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Aurora\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"03086\", \"CAPITAL\": \"N\", \"AREALAND\": 23.221000, \"AREAWATER\": 0.872000, \"POP_CL\": 6, \"POP2000\": 13556, \"WHITE\": 12969, \"BLACK\": 293, \"AMERI_ES\": 14, \"ASIAN\": 168, \"HAWN_PI\": 2, \"OTHER\": 17, \"MULT_RACE\": 93, \"HISPANIC\": 78, \"MALES\": 6529, \"FEMALES\": 7027, \"AGE_UNDER5\": 898, \"AGE_5_17\": 2592, \"AGE_18_21\": 372, \"AGE_22_29\": 770, \"AGE_30_39\": 1952, \"AGE_40_49\": 2342, \"AGE_50_64\": 2535, \"AGE_65_UP\": 2095, \"MED_AGE\": 40.800000, \"MED_AGE_M\": 40.200000, \"MED_AGE_F\": 41.400000, \"HOUSEHOLDS\": 5047, \"AVE_HH_SZ\": 2.630000, \"HSEHLD_1_M\": 386, \"HSEHLD_1_F\": 575, \"MARHH_CHD\": 1548, \"MARHH_NO_C\": 1927, \"MHH_CHILD\": 51, \"FHH_CHILD\": 177, \"FAMILIES\": 3903, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 5361, \"VACANT\": 314, \"OWNER_OCC\": 4134, \"RENTER_OCC\": 913 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.355860127264577, 41.319253885233323 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Austintown\", \"CLASS\": \"CDP\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"03184\", \"CAPITAL\": \"N\", \"AREALAND\": 11.673000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 31627, \"WHITE\": 29258, \"BLACK\": 1610, \"AMERI_ES\": 45, \"ASIAN\": 186, \"HAWN_PI\": 8, \"OTHER\": 136, \"MULT_RACE\": 384, \"HISPANIC\": 578, \"MALES\": 15048, \"FEMALES\": 16579, \"AGE_UNDER5\": 1843, \"AGE_5_17\": 4765, \"AGE_18_21\": 1587, \"AGE_22_29\": 3309, \"AGE_30_39\": 4258, \"AGE_40_49\": 4774, \"AGE_50_64\": 5636, \"AGE_65_UP\": 5455, \"MED_AGE\": 40.100000, \"MED_AGE_M\": 38.200000, \"MED_AGE_F\": 41.900000, \"HOUSEHOLDS\": 13419, \"AVE_HH_SZ\": 2.320000, \"HSEHLD_1_M\": 1687, \"HSEHLD_1_F\": 2364, \"MARHH_CHD\": 2416, \"MARHH_NO_C\": 4241, \"MHH_CHILD\": 217, \"FHH_CHILD\": 833, \"FAMILIES\": 8765, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 14179, \"VACANT\": 760, \"OWNER_OCC\": 8898, \"RENTER_OCC\": 4521 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.738104817388233, 41.091742867416791 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Avon\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"03352\", \"CAPITAL\": \"N\", \"AREALAND\": 20.872000, \"AREAWATER\": 0.016000, \"POP_CL\": 6, \"POP2000\": 11446, \"WHITE\": 11105, \"BLACK\": 82, \"AMERI_ES\": 20, \"ASIAN\": 118, \"HAWN_PI\": 0, \"OTHER\": 28, \"MULT_RACE\": 93, \"HISPANIC\": 147, \"MALES\": 5572, \"FEMALES\": 5874, \"AGE_UNDER5\": 998, \"AGE_5_17\": 2166, \"AGE_18_21\": 342, \"AGE_22_29\": 723, \"AGE_30_39\": 2067, \"AGE_40_49\": 1918, \"AGE_50_64\": 1816, \"AGE_65_UP\": 1416, \"MED_AGE\": 37.600000, \"MED_AGE_M\": 37.300000, \"MED_AGE_F\": 37.800000, \"HOUSEHOLDS\": 4088, \"AVE_HH_SZ\": 2.720000, \"HSEHLD_1_M\": 360, \"HSEHLD_1_F\": 445, \"MARHH_CHD\": 1349, \"MARHH_NO_C\": 1420, \"MHH_CHILD\": 51, \"FHH_CHILD\": 151, \"FAMILIES\": 3144, \"AVE_FAM_SZ\": 3.150000, \"HSE_UNITS\": 4291, \"VACANT\": 203, \"OWNER_OCC\": 3609, \"RENTER_OCC\": 479 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.02167064743206, 41.450537908576429 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Avon Lake\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"03464\", \"CAPITAL\": \"N\", \"AREALAND\": 11.132000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 18145, \"WHITE\": 17656, \"BLACK\": 82, \"AMERI_ES\": 29, \"ASIAN\": 175, \"HAWN_PI\": 7, \"OTHER\": 45, \"MULT_RACE\": 151, \"HISPANIC\": 226, \"MALES\": 8863, \"FEMALES\": 9282, \"AGE_UNDER5\": 1273, \"AGE_5_17\": 3968, \"AGE_18_21\": 595, \"AGE_22_29\": 988, \"AGE_30_39\": 2808, \"AGE_40_49\": 3484, \"AGE_50_64\": 2926, \"AGE_65_UP\": 2103, \"MED_AGE\": 38.400000, \"MED_AGE_M\": 37.400000, \"MED_AGE_F\": 39.300000, \"HOUSEHOLDS\": 6711, \"AVE_HH_SZ\": 2.700000, \"HSEHLD_1_M\": 481, \"HSEHLD_1_F\": 883, \"MARHH_CHD\": 2201, \"MARHH_NO_C\": 2281, \"MHH_CHILD\": 95, \"FHH_CHILD\": 281, \"FAMILIES\": 5134, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 6934, \"VACANT\": 223, \"OWNER_OCC\": 5837, \"RENTER_OCC\": 874 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.006309658873008, 41.501594907743836 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Barberton\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"03828\", \"CAPITAL\": \"N\", \"AREALAND\": 9.014000, \"AREAWATER\": 0.219000, \"POP_CL\": 6, \"POP2000\": 27899, \"WHITE\": 25787, \"BLACK\": 1488, \"AMERI_ES\": 74, \"ASIAN\": 102, \"HAWN_PI\": 2, \"OTHER\": 66, \"MULT_RACE\": 380, \"HISPANIC\": 179, \"MALES\": 13018, \"FEMALES\": 14881, \"AGE_UNDER5\": 2147, \"AGE_5_17\": 4771, \"AGE_18_21\": 1314, \"AGE_22_29\": 2924, \"AGE_30_39\": 3938, \"AGE_40_49\": 3941, \"AGE_50_64\": 4050, \"AGE_65_UP\": 4814, \"MED_AGE\": 37.200000, \"MED_AGE_M\": 35.100000, \"MED_AGE_F\": 39.000000, \"HOUSEHOLDS\": 11523, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 1273, \"HSEHLD_1_F\": 2196, \"MARHH_CHD\": 2081, \"MARHH_NO_C\": 3097, \"MHH_CHILD\": 247, \"FHH_CHILD\": 1066, \"FAMILIES\": 7449, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 12163, \"VACANT\": 640, \"OWNER_OCC\": 7499, \"RENTER_OCC\": 4024 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.605897893838971, 41.015804896207612 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bay Village\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"04416\", \"CAPITAL\": \"N\", \"AREALAND\": 4.631000, \"AREAWATER\": 2.454000, \"POP_CL\": 6, \"POP2000\": 16087, \"WHITE\": 15773, \"BLACK\": 43, \"AMERI_ES\": 4, \"ASIAN\": 116, \"HAWN_PI\": 1, \"OTHER\": 34, \"MULT_RACE\": 116, \"HISPANIC\": 157, \"MALES\": 7711, \"FEMALES\": 8376, \"AGE_UNDER5\": 1001, \"AGE_5_17\": 3162, \"AGE_18_21\": 464, \"AGE_22_29\": 881, \"AGE_30_39\": 2241, \"AGE_40_49\": 2870, \"AGE_50_64\": 3152, \"AGE_65_UP\": 2316, \"MED_AGE\": 41.100000, \"MED_AGE_M\": 39.700000, \"MED_AGE_F\": 42.300000, \"HOUSEHOLDS\": 6239, \"AVE_HH_SZ\": 2.550000, \"HSEHLD_1_M\": 463, \"HSEHLD_1_F\": 917, \"MARHH_CHD\": 1848, \"MARHH_NO_C\": 2255, \"MHH_CHILD\": 56, \"FHH_CHILD\": 226, \"FAMILIES\": 4683, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 6401, \"VACANT\": 162, \"OWNER_OCC\": 5752, \"RENTER_OCC\": 487 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.926581705233161, 41.48419290493424 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Beachwood\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"04500\", \"CAPITAL\": \"N\", \"AREALAND\": 5.281000, \"AREAWATER\": 0.012000, \"POP_CL\": 6, \"POP2000\": 12186, \"WHITE\": 10541, \"BLACK\": 1106, \"AMERI_ES\": 10, \"ASIAN\": 391, \"HAWN_PI\": 2, \"OTHER\": 18, \"MULT_RACE\": 118, \"HISPANIC\": 95, \"MALES\": 5369, \"FEMALES\": 6817, \"AGE_UNDER5\": 422, \"AGE_5_17\": 1977, \"AGE_18_21\": 222, \"AGE_22_29\": 420, \"AGE_30_39\": 1042, \"AGE_40_49\": 1721, \"AGE_50_64\": 2063, \"AGE_65_UP\": 4319, \"MED_AGE\": 51.600000, \"MED_AGE_M\": 48.200000, \"MED_AGE_F\": 55.400000, \"HOUSEHOLDS\": 5074, \"AVE_HH_SZ\": 2.200000, \"HSEHLD_1_M\": 476, \"HSEHLD_1_F\": 1310, \"MARHH_CHD\": 1041, \"MARHH_NO_C\": 1802, \"MHH_CHILD\": 44, \"FHH_CHILD\": 140, \"FAMILIES\": 3180, \"AVE_FAM_SZ\": 2.860000, \"HSE_UNITS\": 5447, \"VACANT\": 373, \"OWNER_OCC\": 3266, \"RENTER_OCC\": 1808 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.50400200974083, 41.482225889421137 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Beavercreek\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"04720\", \"CAPITAL\": \"N\", \"AREALAND\": 26.392000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 37984, \"WHITE\": 35495, \"BLACK\": 540, \"AMERI_ES\": 63, \"ASIAN\": 1330, \"HAWN_PI\": 8, \"OTHER\": 117, \"MULT_RACE\": 431, \"HISPANIC\": 433, \"MALES\": 18774, \"FEMALES\": 19210, \"AGE_UNDER5\": 1967, \"AGE_5_17\": 7637, \"AGE_18_21\": 1488, \"AGE_22_29\": 2421, \"AGE_30_39\": 5164, \"AGE_40_49\": 6831, \"AGE_50_64\": 7835, \"AGE_65_UP\": 4641, \"MED_AGE\": 40.500000, \"MED_AGE_M\": 39.900000, \"MED_AGE_F\": 41.000000, \"HOUSEHOLDS\": 14071, \"AVE_HH_SZ\": 2.660000, \"HSEHLD_1_M\": 1169, \"HSEHLD_1_F\": 1295, \"MARHH_CHD\": 4332, \"MARHH_NO_C\": 5617, \"MHH_CHILD\": 150, \"FHH_CHILD\": 475, \"FAMILIES\": 11094, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 14769, \"VACANT\": 698, \"OWNER_OCC\": 11883, \"RENTER_OCC\": 2188 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.062310072877594, 39.729358970398771 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bedford\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"04878\", \"CAPITAL\": \"N\", \"AREALAND\": 5.357000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14214, \"WHITE\": 11231, \"BLACK\": 2506, \"AMERI_ES\": 24, \"ASIAN\": 154, \"HAWN_PI\": 2, \"OTHER\": 67, \"MULT_RACE\": 230, \"HISPANIC\": 152, \"MALES\": 6704, \"FEMALES\": 7510, \"AGE_UNDER5\": 821, \"AGE_5_17\": 2091, \"AGE_18_21\": 512, \"AGE_22_29\": 1568, \"AGE_30_39\": 2358, \"AGE_40_49\": 2172, \"AGE_50_64\": 2029, \"AGE_65_UP\": 2663, \"MED_AGE\": 39.000000, \"MED_AGE_M\": 37.500000, \"MED_AGE_F\": 40.700000, \"HOUSEHOLDS\": 6659, \"AVE_HH_SZ\": 2.130000, \"HSEHLD_1_M\": 1078, \"HSEHLD_1_F\": 1520, \"MARHH_CHD\": 1007, \"MARHH_NO_C\": 1617, \"MHH_CHILD\": 106, \"FHH_CHILD\": 426, \"FAMILIES\": 3685, \"AVE_FAM_SZ\": 2.850000, \"HSE_UNITS\": 7062, \"VACANT\": 403, \"OWNER_OCC\": 3999, \"RENTER_OCC\": 2660 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.534441977610868, 41.39240389113845 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bedford Heights\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"04920\", \"CAPITAL\": \"N\", \"AREALAND\": 4.537000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11375, \"WHITE\": 3173, \"BLACK\": 7669, \"AMERI_ES\": 23, \"ASIAN\": 216, \"HAWN_PI\": 1, \"OTHER\": 61, \"MULT_RACE\": 232, \"HISPANIC\": 182, \"MALES\": 5288, \"FEMALES\": 6087, \"AGE_UNDER5\": 592, \"AGE_5_17\": 1897, \"AGE_18_21\": 545, \"AGE_22_29\": 1229, \"AGE_30_39\": 1651, \"AGE_40_49\": 1847, \"AGE_50_64\": 2107, \"AGE_65_UP\": 1507, \"MED_AGE\": 38.700000, \"MED_AGE_M\": 37.000000, \"MED_AGE_F\": 40.200000, \"HOUSEHOLDS\": 5119, \"AVE_HH_SZ\": 2.210000, \"HSEHLD_1_M\": 813, \"HSEHLD_1_F\": 1031, \"MARHH_CHD\": 621, \"MARHH_NO_C\": 1246, \"MHH_CHILD\": 103, \"FHH_CHILD\": 547, \"FAMILIES\": 3004, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 5577, \"VACANT\": 458, \"OWNER_OCC\": 2719, \"RENTER_OCC\": 2400 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.506410001718365, 41.404820890035651 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bellefontaine\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"05130\", \"CAPITAL\": \"N\", \"AREALAND\": 8.764000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 13069, \"WHITE\": 11869, \"BLACK\": 670, \"AMERI_ES\": 20, \"ASIAN\": 122, \"HAWN_PI\": 5, \"OTHER\": 69, \"MULT_RACE\": 314, \"HISPANIC\": 146, \"MALES\": 6222, \"FEMALES\": 6847, \"AGE_UNDER5\": 1116, \"AGE_5_17\": 2556, \"AGE_18_21\": 709, \"AGE_22_29\": 1576, \"AGE_30_39\": 1869, \"AGE_40_49\": 1811, \"AGE_50_64\": 1749, \"AGE_65_UP\": 1683, \"MED_AGE\": 33.300000, \"MED_AGE_M\": 31.700000, \"MED_AGE_F\": 34.900000, \"HOUSEHOLDS\": 5319, \"AVE_HH_SZ\": 2.430000, \"HSEHLD_1_M\": 639, \"HSEHLD_1_F\": 982, \"MARHH_CHD\": 1113, \"MARHH_NO_C\": 1319, \"MHH_CHILD\": 171, \"FHH_CHILD\": 528, \"FAMILIES\": 3438, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 5722, \"VACANT\": 403, \"OWNER_OCC\": 3111, \"RENTER_OCC\": 2208 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.758126109336857, 40.360877963200466 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Berea\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"05690\", \"CAPITAL\": \"N\", \"AREALAND\": 5.458000, \"AREAWATER\": 0.108000, \"POP_CL\": 6, \"POP2000\": 18970, \"WHITE\": 17353, \"BLACK\": 974, \"AMERI_ES\": 46, \"ASIAN\": 170, \"HAWN_PI\": 6, \"OTHER\": 116, \"MULT_RACE\": 305, \"HISPANIC\": 301, \"MALES\": 9009, \"FEMALES\": 9961, \"AGE_UNDER5\": 950, \"AGE_5_17\": 3128, \"AGE_18_21\": 2291, \"AGE_22_29\": 1732, \"AGE_30_39\": 2508, \"AGE_40_49\": 2930, \"AGE_50_64\": 2717, \"AGE_65_UP\": 2714, \"MED_AGE\": 35.900000, \"MED_AGE_M\": 33.800000, \"MED_AGE_F\": 37.600000, \"HOUSEHOLDS\": 7173, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 922, \"HSEHLD_1_F\": 1393, \"MARHH_CHD\": 1502, \"MARHH_NO_C\": 1949, \"MHH_CHILD\": 108, \"FHH_CHILD\": 388, \"FAMILIES\": 4469, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 7449, \"VACANT\": 276, \"OWNER_OCC\": 5109, \"RENTER_OCC\": 2064 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.862591738613602, 41.369949903254167 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bexley\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"06278\", \"CAPITAL\": \"N\", \"AREALAND\": 2.446000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 13203, \"WHITE\": 12206, \"BLACK\": 592, \"AMERI_ES\": 22, \"ASIAN\": 131, \"HAWN_PI\": 6, \"OTHER\": 62, \"MULT_RACE\": 184, \"HISPANIC\": 121, \"MALES\": 6202, \"FEMALES\": 7001, \"AGE_UNDER5\": 788, \"AGE_5_17\": 2819, \"AGE_18_21\": 1345, \"AGE_22_29\": 785, \"AGE_30_39\": 1627, \"AGE_40_49\": 2293, \"AGE_50_64\": 2118, \"AGE_65_UP\": 1428, \"MED_AGE\": 35.700000, \"MED_AGE_M\": 34.600000, \"MED_AGE_F\": 36.700000, \"HOUSEHOLDS\": 4705, \"AVE_HH_SZ\": 2.590000, \"HSEHLD_1_M\": 384, \"HSEHLD_1_F\": 729, \"MARHH_CHD\": 1535, \"MARHH_NO_C\": 1283, \"MHH_CHILD\": 80, \"FHH_CHILD\": 310, \"FAMILIES\": 3386, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 4974, \"VACANT\": 269, \"OWNER_OCC\": 3643, \"RENTER_OCC\": 1062 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.93264924496458, 39.964563944230754 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Blue Ash\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"07300\", \"CAPITAL\": \"N\", \"AREALAND\": 7.655000, \"AREAWATER\": 0.014000, \"POP_CL\": 6, \"POP2000\": 12513, \"WHITE\": 10897, \"BLACK\": 627, \"AMERI_ES\": 31, \"ASIAN\": 800, \"HAWN_PI\": 2, \"OTHER\": 36, \"MULT_RACE\": 120, \"HISPANIC\": 122, \"MALES\": 6052, \"FEMALES\": 6461, \"AGE_UNDER5\": 657, \"AGE_5_17\": 2527, \"AGE_18_21\": 438, \"AGE_22_29\": 1112, \"AGE_30_39\": 1637, \"AGE_40_49\": 2281, \"AGE_50_64\": 2084, \"AGE_65_UP\": 1777, \"MED_AGE\": 39.400000, \"MED_AGE_M\": 38.000000, \"MED_AGE_F\": 40.600000, \"HOUSEHOLDS\": 4990, \"AVE_HH_SZ\": 2.480000, \"HSEHLD_1_M\": 505, \"HSEHLD_1_F\": 755, \"MARHH_CHD\": 1303, \"MARHH_NO_C\": 1553, \"MHH_CHILD\": 62, \"FHH_CHILD\": 265, \"FAMILIES\": 3469, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 5251, \"VACANT\": 261, \"OWNER_OCC\": 3707, \"RENTER_OCC\": 1283 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.376038047638275, 39.247108976365077 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Boardman\", \"CLASS\": \"CDP\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"07454\", \"CAPITAL\": \"N\", \"AREALAND\": 15.933000, \"AREAWATER\": 0.101000, \"POP_CL\": 6, \"POP2000\": 37215, \"WHITE\": 35448, \"BLACK\": 951, \"AMERI_ES\": 33, \"ASIAN\": 302, \"HAWN_PI\": 8, \"OTHER\": 155, \"MULT_RACE\": 318, \"HISPANIC\": 670, \"MALES\": 17432, \"FEMALES\": 19783, \"AGE_UNDER5\": 1863, \"AGE_5_17\": 5836, \"AGE_18_21\": 1682, \"AGE_22_29\": 3292, \"AGE_30_39\": 4776, \"AGE_40_49\": 6047, \"AGE_50_64\": 6132, \"AGE_65_UP\": 7587, \"MED_AGE\": 42.000000, \"MED_AGE_M\": 40.100000, \"MED_AGE_F\": 43.600000, \"HOUSEHOLDS\": 15955, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 1967, \"HSEHLD_1_F\": 3192, \"MARHH_CHD\": 3230, \"MARHH_NO_C\": 4997, \"MHH_CHILD\": 185, \"FHH_CHILD\": 708, \"FAMILIES\": 10215, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 16801, \"VACANT\": 846, \"OWNER_OCC\": 11351, \"RENTER_OCC\": 4604 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.665396915579691, 41.03895786603325 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bowling Green\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"07972\", \"CAPITAL\": \"N\", \"AREALAND\": 10.153000, \"AREAWATER\": 0.033000, \"POP_CL\": 6, \"POP2000\": 29636, \"WHITE\": 27219, \"BLACK\": 837, \"AMERI_ES\": 62, \"ASIAN\": 543, \"HAWN_PI\": 5, \"OTHER\": 537, \"MULT_RACE\": 433, \"HISPANIC\": 1031, \"MALES\": 13865, \"FEMALES\": 15771, \"AGE_UNDER5\": 1089, \"AGE_5_17\": 2791, \"AGE_18_21\": 10115, \"AGE_22_29\": 5729, \"AGE_30_39\": 2439, \"AGE_40_49\": 2602, \"AGE_50_64\": 2605, \"AGE_65_UP\": 2266, \"MED_AGE\": 22.400000, \"MED_AGE_M\": 22.700000, \"MED_AGE_F\": 22.200000, \"HOUSEHOLDS\": 10266, \"AVE_HH_SZ\": 2.210000, \"HSEHLD_1_M\": 1564, \"HSEHLD_1_F\": 1954, \"MARHH_CHD\": 1419, \"MARHH_NO_C\": 1988, \"MHH_CHILD\": 132, \"FHH_CHILD\": 525, \"FAMILIES\": 4438, \"AVE_FAM_SZ\": 2.840000, \"HSE_UNITS\": 10667, \"VACANT\": 401, \"OWNER_OCC\": 4334, \"RENTER_OCC\": 5932 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.650873135593727, 41.373941958556458 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Brecksville\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"08364\", \"CAPITAL\": \"N\", \"AREALAND\": 19.611000, \"AREAWATER\": 0.005000, \"POP_CL\": 6, \"POP2000\": 13382, \"WHITE\": 12695, \"BLACK\": 255, \"AMERI_ES\": 4, \"ASIAN\": 342, \"HAWN_PI\": 1, \"OTHER\": 14, \"MULT_RACE\": 71, \"HISPANIC\": 136, \"MALES\": 6675, \"FEMALES\": 6707, \"AGE_UNDER5\": 647, \"AGE_5_17\": 2546, \"AGE_18_21\": 364, \"AGE_22_29\": 523, \"AGE_30_39\": 1517, \"AGE_40_49\": 2718, \"AGE_50_64\": 2651, \"AGE_65_UP\": 2416, \"MED_AGE\": 44.100000, \"MED_AGE_M\": 44.100000, \"MED_AGE_F\": 44.000000, \"HOUSEHOLDS\": 5033, \"AVE_HH_SZ\": 2.550000, \"HSEHLD_1_M\": 421, \"HSEHLD_1_F\": 714, \"MARHH_CHD\": 1452, \"MARHH_NO_C\": 1880, \"MHH_CHILD\": 42, \"FHH_CHILD\": 137, \"FAMILIES\": 3755, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 5206, \"VACANT\": 173, \"OWNER_OCC\": 4449, \"RENTER_OCC\": 584 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.628894897273852, 41.30990389511539 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bridgetown North\", \"CLASS\": \"CDP\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"08605\", \"CAPITAL\": \"N\", \"AREALAND\": 3.365000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12569, \"WHITE\": 12368, \"BLACK\": 45, \"AMERI_ES\": 7, \"ASIAN\": 66, \"HAWN_PI\": 3, \"OTHER\": 15, \"MULT_RACE\": 65, \"HISPANIC\": 63, \"MALES\": 5919, \"FEMALES\": 6650, \"AGE_UNDER5\": 763, \"AGE_5_17\": 2444, \"AGE_18_21\": 528, \"AGE_22_29\": 988, \"AGE_30_39\": 1864, \"AGE_40_49\": 1689, \"AGE_50_64\": 1699, \"AGE_65_UP\": 2594, \"MED_AGE\": 38.600000, \"MED_AGE_M\": 36.400000, \"MED_AGE_F\": 40.500000, \"HOUSEHOLDS\": 5079, \"AVE_HH_SZ\": 2.470000, \"HSEHLD_1_M\": 441, \"HSEHLD_1_F\": 1005, \"MARHH_CHD\": 1238, \"MARHH_NO_C\": 1595, \"MHH_CHILD\": 68, \"FHH_CHILD\": 269, \"FAMILIES\": 3512, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 5240, \"VACANT\": 161, \"OWNER_OCC\": 4406, \"RENTER_OCC\": 673 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.630697034423847, 39.157208980090246 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Broadview Heights\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"09064\", \"CAPITAL\": \"N\", \"AREALAND\": 13.059000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 15967, \"WHITE\": 15170, \"BLACK\": 126, \"AMERI_ES\": 12, \"ASIAN\": 480, \"HAWN_PI\": 1, \"OTHER\": 53, \"MULT_RACE\": 125, \"HISPANIC\": 147, \"MALES\": 7690, \"FEMALES\": 8277, \"AGE_UNDER5\": 997, \"AGE_5_17\": 2977, \"AGE_18_21\": 518, \"AGE_22_29\": 1302, \"AGE_30_39\": 2434, \"AGE_40_49\": 2846, \"AGE_50_64\": 2501, \"AGE_65_UP\": 2392, \"MED_AGE\": 39.200000, \"MED_AGE_M\": 38.300000, \"MED_AGE_F\": 40.000000, \"HOUSEHOLDS\": 6411, \"AVE_HH_SZ\": 2.460000, \"HSEHLD_1_M\": 691, \"HSEHLD_1_F\": 1058, \"MARHH_CHD\": 1689, \"MARHH_NO_C\": 2024, \"MHH_CHILD\": 82, \"FHH_CHILD\": 269, \"FAMILIES\": 4376, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 6803, \"VACANT\": 392, \"OWNER_OCC\": 4959, \"RENTER_OCC\": 1452 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.676595862610029, 41.321826896772727 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Brooklyn\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"09246\", \"CAPITAL\": \"N\", \"AREALAND\": 4.284000, \"AREAWATER\": 0.018000, \"POP_CL\": 6, \"POP2000\": 11586, \"WHITE\": 10736, \"BLACK\": 196, \"AMERI_ES\": 12, \"ASIAN\": 264, \"HAWN_PI\": 1, \"OTHER\": 189, \"MULT_RACE\": 188, \"HISPANIC\": 449, \"MALES\": 5555, \"FEMALES\": 6031, \"AGE_UNDER5\": 574, \"AGE_5_17\": 1619, \"AGE_18_21\": 463, \"AGE_22_29\": 1142, \"AGE_30_39\": 1686, \"AGE_40_49\": 1654, \"AGE_50_64\": 1907, \"AGE_65_UP\": 2541, \"MED_AGE\": 41.800000, \"MED_AGE_M\": 39.100000, \"MED_AGE_F\": 44.200000, \"HOUSEHOLDS\": 5348, \"AVE_HH_SZ\": 2.160000, \"HSEHLD_1_M\": 772, \"HSEHLD_1_F\": 1179, \"MARHH_CHD\": 826, \"MARHH_NO_C\": 1544, \"MHH_CHILD\": 81, \"FHH_CHILD\": 277, \"FAMILIES\": 3172, \"AVE_FAM_SZ\": 2.840000, \"HSE_UNITS\": 5521, \"VACANT\": 173, \"OWNER_OCC\": 3320, \"RENTER_OCC\": 2028 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.744457821567181, 41.435356898545841 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Brook Park\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"09288\", \"CAPITAL\": \"N\", \"AREALAND\": 7.537000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 21218, \"WHITE\": 20048, \"BLACK\": 414, \"AMERI_ES\": 48, \"ASIAN\": 268, \"HAWN_PI\": 0, \"OTHER\": 164, \"MULT_RACE\": 276, \"HISPANIC\": 423, \"MALES\": 10360, \"FEMALES\": 10858, \"AGE_UNDER5\": 1060, \"AGE_5_17\": 3769, \"AGE_18_21\": 957, \"AGE_22_29\": 1675, \"AGE_30_39\": 3122, \"AGE_40_49\": 3260, \"AGE_50_64\": 3752, \"AGE_65_UP\": 3623, \"MED_AGE\": 40.100000, \"MED_AGE_M\": 38.500000, \"MED_AGE_F\": 41.600000, \"HOUSEHOLDS\": 8193, \"AVE_HH_SZ\": 2.580000, \"HSEHLD_1_M\": 746, \"HSEHLD_1_F\": 1185, \"MARHH_CHD\": 1811, \"MARHH_NO_C\": 2884, \"MHH_CHILD\": 127, \"FHH_CHILD\": 435, \"FAMILIES\": 5990, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 8370, \"VACANT\": 177, \"OWNER_OCC\": 6850, \"RENTER_OCC\": 1343 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.818423769026154, 41.399549901470166 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Brunswick\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"09680\", \"CAPITAL\": \"N\", \"AREALAND\": 12.541000, \"AREAWATER\": 0.042000, \"POP_CL\": 6, \"POP2000\": 33388, \"WHITE\": 32418, \"BLACK\": 246, \"AMERI_ES\": 44, \"ASIAN\": 286, \"HAWN_PI\": 8, \"OTHER\": 126, \"MULT_RACE\": 260, \"HISPANIC\": 454, \"MALES\": 16395, \"FEMALES\": 16993, \"AGE_UNDER5\": 2424, \"AGE_5_17\": 6835, \"AGE_18_21\": 1583, \"AGE_22_29\": 3326, \"AGE_30_39\": 5828, \"AGE_40_49\": 5321, \"AGE_50_64\": 5324, \"AGE_65_UP\": 2747, \"MED_AGE\": 34.600000, \"MED_AGE_M\": 33.900000, \"MED_AGE_F\": 35.200000, \"HOUSEHOLDS\": 11883, \"AVE_HH_SZ\": 2.790000, \"HSEHLD_1_M\": 981, \"HSEHLD_1_F\": 1125, \"MARHH_CHD\": 3815, \"MARHH_NO_C\": 3943, \"MHH_CHILD\": 214, \"FHH_CHILD\": 644, \"FAMILIES\": 9277, \"AVE_FAM_SZ\": 3.180000, \"HSE_UNITS\": 12251, \"VACANT\": 368, \"OWNER_OCC\": 9583, \"RENTER_OCC\": 2300 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.828360753115504, 41.244050902752136 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bucyrus\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"10030\", \"CAPITAL\": \"N\", \"AREALAND\": 7.298000, \"AREAWATER\": 0.015000, \"POP_CL\": 6, \"POP2000\": 13224, \"WHITE\": 12877, \"BLACK\": 103, \"AMERI_ES\": 36, \"ASIAN\": 68, \"HAWN_PI\": 2, \"OTHER\": 35, \"MULT_RACE\": 103, \"HISPANIC\": 130, \"MALES\": 6259, \"FEMALES\": 6965, \"AGE_UNDER5\": 929, \"AGE_5_17\": 2280, \"AGE_18_21\": 703, \"AGE_22_29\": 1352, \"AGE_30_39\": 1734, \"AGE_40_49\": 1927, \"AGE_50_64\": 2177, \"AGE_65_UP\": 2122, \"MED_AGE\": 38.000000, \"MED_AGE_M\": 35.700000, \"MED_AGE_F\": 40.000000, \"HOUSEHOLDS\": 5559, \"AVE_HH_SZ\": 2.330000, \"HSEHLD_1_M\": 671, \"HSEHLD_1_F\": 1046, \"MARHH_CHD\": 1051, \"MARHH_NO_C\": 1537, \"MHH_CHILD\": 137, \"FHH_CHILD\": 460, \"FAMILIES\": 3551, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 5955, \"VACANT\": 396, \"OWNER_OCC\": 3568, \"RENTER_OCC\": 1991 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.97316925484175, 40.806013942467388 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cambridge\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"10996\", \"CAPITAL\": \"N\", \"AREALAND\": 5.606000, \"AREAWATER\": 0.004000, \"POP_CL\": 6, \"POP2000\": 11520, \"WHITE\": 10695, \"BLACK\": 451, \"AMERI_ES\": 38, \"ASIAN\": 43, \"HAWN_PI\": 0, \"OTHER\": 54, \"MULT_RACE\": 239, \"HISPANIC\": 111, \"MALES\": 5321, \"FEMALES\": 6199, \"AGE_UNDER5\": 840, \"AGE_5_17\": 2141, \"AGE_18_21\": 643, \"AGE_22_29\": 1158, \"AGE_30_39\": 1518, \"AGE_40_49\": 1548, \"AGE_50_64\": 1660, \"AGE_65_UP\": 2012, \"MED_AGE\": 36.400000, \"MED_AGE_M\": 33.800000, \"MED_AGE_F\": 39.100000, \"HOUSEHOLDS\": 4924, \"AVE_HH_SZ\": 2.280000, \"HSEHLD_1_M\": 610, \"HSEHLD_1_F\": 1130, \"MARHH_CHD\": 824, \"MARHH_NO_C\": 1105, \"MHH_CHILD\": 159, \"FHH_CHILD\": 521, \"FAMILIES\": 2956, \"AVE_FAM_SZ\": 2.920000, \"HSE_UNITS\": 5585, \"VACANT\": 661, \"OWNER_OCC\": 2636, \"RENTER_OCC\": 2288 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.586776837677249, 40.025117902132429 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Canton\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"12000\", \"CAPITAL\": \"N\", \"AREALAND\": 20.546000, \"AREAWATER\": 0.014000, \"POP_CL\": 7, \"POP2000\": 80806, \"WHITE\": 60164, \"BLACK\": 16999, \"AMERI_ES\": 396, \"ASIAN\": 257, \"HAWN_PI\": 24, \"OTHER\": 492, \"MULT_RACE\": 2474, \"HISPANIC\": 1006, \"MALES\": 37700, \"FEMALES\": 43106, \"AGE_UNDER5\": 6309, \"AGE_5_17\": 15185, \"AGE_18_21\": 4711, \"AGE_22_29\": 9137, \"AGE_30_39\": 11521, \"AGE_40_49\": 11632, \"AGE_50_64\": 10755, \"AGE_65_UP\": 11556, \"MED_AGE\": 34.400000, \"MED_AGE_M\": 32.600000, \"MED_AGE_F\": 36.200000, \"HOUSEHOLDS\": 32489, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 4396, \"HSEHLD_1_F\": 6331, \"MARHH_CHD\": 5006, \"MARHH_NO_C\": 7044, \"MHH_CHILD\": 796, \"FHH_CHILD\": 3939, \"FAMILIES\": 19772, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 35502, \"VACANT\": 3013, \"OWNER_OCC\": 19394, \"RENTER_OCC\": 13095 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.375793065265924, 40.804957889666376 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Celina\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"12868\", \"CAPITAL\": \"N\", \"AREALAND\": 4.390000, \"AREAWATER\": 0.045000, \"POP_CL\": 6, \"POP2000\": 10303, \"WHITE\": 9998, \"BLACK\": 19, \"AMERI_ES\": 38, \"ASIAN\": 69, \"HAWN_PI\": 2, \"OTHER\": 64, \"MULT_RACE\": 113, \"HISPANIC\": 220, \"MALES\": 4922, \"FEMALES\": 5381, \"AGE_UNDER5\": 736, \"AGE_5_17\": 2070, \"AGE_18_21\": 552, \"AGE_22_29\": 1045, \"AGE_30_39\": 1259, \"AGE_40_49\": 1613, \"AGE_50_64\": 1379, \"AGE_65_UP\": 1649, \"MED_AGE\": 36.200000, \"MED_AGE_M\": 33.300000, \"MED_AGE_F\": 38.900000, \"HOUSEHOLDS\": 4191, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 455, \"HSEHLD_1_F\": 823, \"MARHH_CHD\": 972, \"MARHH_NO_C\": 1134, \"MHH_CHILD\": 100, \"FHH_CHILD\": 340, \"FAMILIES\": 2746, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 4466, \"VACANT\": 275, \"OWNER_OCC\": 2792, \"RENTER_OCC\": 1399 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.570057044346555, 40.551458977452299 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Centerville\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"13190\", \"CAPITAL\": \"N\", \"AREALAND\": 10.200000, \"AREAWATER\": 0.019000, \"POP_CL\": 6, \"POP2000\": 23024, \"WHITE\": 21258, \"BLACK\": 678, \"AMERI_ES\": 29, \"ASIAN\": 730, \"HAWN_PI\": 14, \"OTHER\": 61, \"MULT_RACE\": 254, \"HISPANIC\": 272, \"MALES\": 10689, \"FEMALES\": 12335, \"AGE_UNDER5\": 1305, \"AGE_5_17\": 3666, \"AGE_18_21\": 772, \"AGE_22_29\": 1914, \"AGE_30_39\": 3022, \"AGE_40_49\": 3365, \"AGE_50_64\": 4624, \"AGE_65_UP\": 4356, \"MED_AGE\": 42.600000, \"MED_AGE_M\": 41.100000, \"MED_AGE_F\": 43.900000, \"HOUSEHOLDS\": 9996, \"AVE_HH_SZ\": 2.260000, \"HSEHLD_1_M\": 1030, \"HSEHLD_1_F\": 1969, \"MARHH_CHD\": 2054, \"MARHH_NO_C\": 3544, \"MHH_CHILD\": 92, \"FHH_CHILD\": 503, \"FAMILIES\": 6595, \"AVE_FAM_SZ\": 2.820000, \"HSE_UNITS\": 10422, \"VACANT\": 426, \"OWNER_OCC\": 7352, \"RENTER_OCC\": 2644 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.148087065374114, 39.638708972064002 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Chillicothe\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"14184\", \"CAPITAL\": \"N\", \"AREALAND\": 9.544000, \"AREAWATER\": 0.198000, \"POP_CL\": 6, \"POP2000\": 21796, \"WHITE\": 19445, \"BLACK\": 1637, \"AMERI_ES\": 74, \"ASIAN\": 121, \"HAWN_PI\": 8, \"OTHER\": 76, \"MULT_RACE\": 435, \"HISPANIC\": 182, \"MALES\": 10206, \"FEMALES\": 11590, \"AGE_UNDER5\": 1296, \"AGE_5_17\": 3534, \"AGE_18_21\": 1033, \"AGE_22_29\": 2143, \"AGE_30_39\": 2894, \"AGE_40_49\": 3273, \"AGE_50_64\": 3654, \"AGE_65_UP\": 3969, \"MED_AGE\": 40.000000, \"MED_AGE_M\": 37.300000, \"MED_AGE_F\": 42.400000, \"HOUSEHOLDS\": 9481, \"AVE_HH_SZ\": 2.240000, \"HSEHLD_1_M\": 1174, \"HSEHLD_1_F\": 2076, \"MARHH_CHD\": 1508, \"MARHH_NO_C\": 2618, \"MHH_CHILD\": 204, \"FHH_CHILD\": 733, \"FAMILIES\": 5752, \"AVE_FAM_SZ\": 2.850000, \"HSE_UNITS\": 10303, \"VACANT\": 822, \"OWNER_OCC\": 5830, \"RENTER_OCC\": 3651 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.98382221891174, 39.33652494776296 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cincinnati\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"15000\", \"CAPITAL\": \"N\", \"AREALAND\": 77.967000, \"AREAWATER\": 1.599000, \"POP_CL\": 8, \"POP2000\": 331285, \"WHITE\": 175492, \"BLACK\": 142176, \"AMERI_ES\": 709, \"ASIAN\": 5132, \"HAWN_PI\": 130, \"OTHER\": 2093, \"MULT_RACE\": 5553, \"HISPANIC\": 4230, \"MALES\": 156357, \"FEMALES\": 174928, \"AGE_UNDER5\": 23862, \"AGE_5_17\": 57282, \"AGE_18_21\": 24392, \"AGE_22_29\": 48329, \"AGE_30_39\": 50409, \"AGE_40_49\": 45974, \"AGE_50_64\": 40383, \"AGE_65_UP\": 40654, \"MED_AGE\": 32.100000, \"MED_AGE_M\": 30.700000, \"MED_AGE_F\": 33.700000, \"HOUSEHOLDS\": 148095, \"AVE_HH_SZ\": 2.150000, \"HSEHLD_1_M\": 28386, \"HSEHLD_1_F\": 34967, \"MARHH_CHD\": 16099, \"MARHH_NO_C\": 23315, \"MHH_CHILD\": 2813, \"FHH_CHILD\": 18316, \"FAMILIES\": 72496, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 166012, \"VACANT\": 17917, \"OWNER_OCC\": 57715, \"RENTER_OCC\": 90380 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.50308804022724, 39.136159978375744 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Circleville\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"15070\", \"CAPITAL\": \"N\", \"AREALAND\": 6.619000, \"AREAWATER\": 0.117000, \"POP_CL\": 6, \"POP2000\": 13485, \"WHITE\": 12859, \"BLACK\": 342, \"AMERI_ES\": 27, \"ASIAN\": 66, \"HAWN_PI\": 8, \"OTHER\": 37, \"MULT_RACE\": 146, \"HISPANIC\": 111, \"MALES\": 6563, \"FEMALES\": 6922, \"AGE_UNDER5\": 947, \"AGE_5_17\": 2658, \"AGE_18_21\": 643, \"AGE_22_29\": 1451, \"AGE_30_39\": 1749, \"AGE_40_49\": 1715, \"AGE_50_64\": 2156, \"AGE_65_UP\": 2166, \"MED_AGE\": 36.000000, \"MED_AGE_M\": 33.000000, \"MED_AGE_F\": 39.100000, \"HOUSEHOLDS\": 5378, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 560, \"HSEHLD_1_F\": 1001, \"MARHH_CHD\": 1087, \"MARHH_NO_C\": 1589, \"MHH_CHILD\": 145, \"FHH_CHILD\": 440, \"FAMILIES\": 3584, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 5706, \"VACANT\": 328, \"OWNER_OCC\": 3185, \"RENTER_OCC\": 2193 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.939272234936098, 39.602989945674437 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Clayton\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"15644\", \"CAPITAL\": \"N\", \"AREALAND\": 18.443000, \"AREAWATER\": 0.113000, \"POP_CL\": 6, \"POP2000\": 13347, \"WHITE\": 11631, \"BLACK\": 1318, \"AMERI_ES\": 20, \"ASIAN\": 194, \"HAWN_PI\": 6, \"OTHER\": 40, \"MULT_RACE\": 138, \"HISPANIC\": 120, \"MALES\": 6602, \"FEMALES\": 6745, \"AGE_UNDER5\": 749, \"AGE_5_17\": 2837, \"AGE_18_21\": 580, \"AGE_22_29\": 920, \"AGE_30_39\": 1768, \"AGE_40_49\": 2445, \"AGE_50_64\": 2548, \"AGE_65_UP\": 1500, \"MED_AGE\": 39.200000, \"MED_AGE_M\": 38.600000, \"MED_AGE_F\": 39.900000, \"HOUSEHOLDS\": 4975, \"AVE_HH_SZ\": 2.660000, \"HSEHLD_1_M\": 437, \"HSEHLD_1_F\": 520, \"MARHH_CHD\": 1424, \"MARHH_NO_C\": 1828, \"MHH_CHILD\": 101, \"FHH_CHILD\": 251, \"FAMILIES\": 3851, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 5193, \"VACANT\": 218, \"OWNER_OCC\": 4215, \"RENTER_OCC\": 760 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.311212055477583, 39.851460974430971 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cleveland\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"16000\", \"CAPITAL\": \"N\", \"AREALAND\": 77.580000, \"AREAWATER\": 4.844000, \"POP_CL\": 8, \"POP2000\": 478403, \"WHITE\": 198510, \"BLACK\": 243939, \"AMERI_ES\": 1458, \"ASIAN\": 6444, \"HAWN_PI\": 178, \"OTHER\": 17173, \"MULT_RACE\": 10701, \"HISPANIC\": 34728, \"MALES\": 226550, \"FEMALES\": 251853, \"AGE_UNDER5\": 38594, \"AGE_5_17\": 97809, \"AGE_18_21\": 26503, \"AGE_22_29\": 54460, \"AGE_30_39\": 73469, \"AGE_40_49\": 66989, \"AGE_50_64\": 60600, \"AGE_65_UP\": 59979, \"MED_AGE\": 33.000000, \"MED_AGE_M\": 31.600000, \"MED_AGE_F\": 34.300000, \"HOUSEHOLDS\": 190638, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 31756, \"HSEHLD_1_F\": 35421, \"MARHH_CHD\": 23177, \"MARHH_NO_C\": 31067, \"MHH_CHILD\": 4781, \"FHH_CHILD\": 29119, \"FAMILIES\": 111998, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 215856, \"VACANT\": 25218, \"OWNER_OCC\": 92535, \"RENTER_OCC\": 98103 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.669718878612869, 41.482300895505645 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cleveland Heights\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"16014\", \"CAPITAL\": \"N\", \"AREALAND\": 8.110000, \"AREAWATER\": 0.015000, \"POP_CL\": 6, \"POP2000\": 49958, \"WHITE\": 26229, \"BLACK\": 20873, \"AMERI_ES\": 81, \"ASIAN\": 1280, \"HAWN_PI\": 5, \"OTHER\": 338, \"MULT_RACE\": 1152, \"HISPANIC\": 791, \"MALES\": 23320, \"FEMALES\": 26638, \"AGE_UNDER5\": 3084, \"AGE_5_17\": 8841, \"AGE_18_21\": 2151, \"AGE_22_29\": 6898, \"AGE_30_39\": 7417, \"AGE_40_49\": 7822, \"AGE_50_64\": 7891, \"AGE_65_UP\": 5854, \"MED_AGE\": 35.200000, \"MED_AGE_M\": 32.800000, \"MED_AGE_F\": 37.300000, \"HOUSEHOLDS\": 20913, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 2659, \"HSEHLD_1_F\": 4151, \"MARHH_CHD\": 3770, \"MARHH_NO_C\": 4852, \"MHH_CHILD\": 228, \"FHH_CHILD\": 1611, \"FAMILIES\": 12174, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 21798, \"VACANT\": 885, \"OWNER_OCC\": 12989, \"RENTER_OCC\": 7924 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.563301962981086, 41.509651891411039 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Columbus\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"18000\", \"CAPITAL\": \"Y\", \"AREALAND\": 210.267000, \"AREAWATER\": 2.281000, \"POP_CL\": 9, \"POP2000\": 711470, \"WHITE\": 483332, \"BLACK\": 174065, \"AMERI_ES\": 2090, \"ASIAN\": 24495, \"HAWN_PI\": 367, \"OTHER\": 8292, \"MULT_RACE\": 18829, \"HISPANIC\": 17471, \"MALES\": 345878, \"FEMALES\": 365592, \"AGE_UNDER5\": 53347, \"AGE_5_17\": 118521, \"AGE_18_21\": 54053, \"AGE_22_29\": 120265, \"AGE_30_39\": 122670, \"AGE_40_49\": 96458, \"AGE_50_64\": 83125, \"AGE_65_UP\": 63031, \"MED_AGE\": 30.600000, \"MED_AGE_M\": 29.800000, \"MED_AGE_F\": 31.600000, \"HOUSEHOLDS\": 301534, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 47365, \"HSEHLD_1_F\": 55535, \"MARHH_CHD\": 49808, \"MARHH_NO_C\": 58900, \"MHH_CHILD\": 6621, \"FHH_CHILD\": 28083, \"FAMILIES\": 165380, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 327175, \"VACANT\": 25641, \"OWNER_OCC\": 148004, \"RENTER_OCC\": 153530 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.991460231796893, 39.98978294573935 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Conneaut\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"18350\", \"CAPITAL\": \"N\", \"AREALAND\": 26.373000, \"AREAWATER\": 0.057000, \"POP_CL\": 6, \"POP2000\": 12485, \"WHITE\": 12027, \"BLACK\": 140, \"AMERI_ES\": 23, \"ASIAN\": 59, \"HAWN_PI\": 6, \"OTHER\": 29, \"MULT_RACE\": 201, \"HISPANIC\": 132, \"MALES\": 6057, \"FEMALES\": 6428, \"AGE_UNDER5\": 774, \"AGE_5_17\": 2367, \"AGE_18_21\": 556, \"AGE_22_29\": 1172, \"AGE_30_39\": 1751, \"AGE_40_49\": 1789, \"AGE_50_64\": 1934, \"AGE_65_UP\": 2142, \"MED_AGE\": 37.900000, \"MED_AGE_M\": 36.400000, \"MED_AGE_F\": 39.400000, \"HOUSEHOLDS\": 5038, \"AVE_HH_SZ\": 2.450000, \"HSEHLD_1_M\": 569, \"HSEHLD_1_F\": 838, \"MARHH_CHD\": 1051, \"MARHH_NO_C\": 1582, \"MHH_CHILD\": 112, \"FHH_CHILD\": 369, \"FAMILIES\": 3413, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 5710, \"VACANT\": 672, \"OWNER_OCC\": 3526, \"RENTER_OCC\": 1512 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.569478202747121, 41.943312854832229 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Coshocton\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"18868\", \"CAPITAL\": \"N\", \"AREALAND\": 7.478000, \"AREAWATER\": 0.111000, \"POP_CL\": 6, \"POP2000\": 11682, \"WHITE\": 11220, \"BLACK\": 190, \"AMERI_ES\": 19, \"ASIAN\": 92, \"HAWN_PI\": 2, \"OTHER\": 39, \"MULT_RACE\": 120, \"HISPANIC\": 69, \"MALES\": 5406, \"FEMALES\": 6276, \"AGE_UNDER5\": 713, \"AGE_5_17\": 2000, \"AGE_18_21\": 542, \"AGE_22_29\": 1008, \"AGE_30_39\": 1466, \"AGE_40_49\": 1628, \"AGE_50_64\": 1980, \"AGE_65_UP\": 2345, \"MED_AGE\": 40.700000, \"MED_AGE_M\": 37.900000, \"MED_AGE_F\": 42.900000, \"HOUSEHOLDS\": 5048, \"AVE_HH_SZ\": 2.270000, \"HSEHLD_1_M\": 558, \"HSEHLD_1_F\": 1133, \"MARHH_CHD\": 962, \"MARHH_NO_C\": 1484, \"MHH_CHILD\": 115, \"FHH_CHILD\": 338, \"FAMILIES\": 3162, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 5471, \"VACANT\": 423, \"OWNER_OCC\": 3251, \"RENTER_OCC\": 1797 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.856628678166317, 40.267785909525799 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cuyahoga Falls\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"19778\", \"CAPITAL\": \"N\", \"AREALAND\": 25.544000, \"AREAWATER\": 0.094000, \"POP_CL\": 6, \"POP2000\": 49374, \"WHITE\": 47300, \"BLACK\": 923, \"AMERI_ES\": 99, \"ASIAN\": 520, \"HAWN_PI\": 6, \"OTHER\": 75, \"MULT_RACE\": 451, \"HISPANIC\": 309, \"MALES\": 23428, \"FEMALES\": 25946, \"AGE_UNDER5\": 3221, \"AGE_5_17\": 7866, \"AGE_18_21\": 1950, \"AGE_22_29\": 5934, \"AGE_30_39\": 7911, \"AGE_40_49\": 7421, \"AGE_50_64\": 7108, \"AGE_65_UP\": 7963, \"MED_AGE\": 37.200000, \"MED_AGE_M\": 35.600000, \"MED_AGE_F\": 38.900000, \"HOUSEHOLDS\": 21655, \"AVE_HH_SZ\": 2.260000, \"HSEHLD_1_M\": 2696, \"HSEHLD_1_F\": 4366, \"MARHH_CHD\": 4271, \"MARHH_NO_C\": 6196, \"MHH_CHILD\": 339, \"FHH_CHILD\": 1243, \"FAMILIES\": 13307, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 22727, \"VACANT\": 1072, \"OWNER_OCC\": 14234, \"RENTER_OCC\": 7421 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.496685989697028, 41.145555891459964 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Dayton\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"21000\", \"CAPITAL\": \"N\", \"AREALAND\": 55.776000, \"AREAWATER\": 0.851000, \"POP_CL\": 8, \"POP2000\": 166179, \"WHITE\": 88676, \"BLACK\": 71668, \"AMERI_ES\": 500, \"ASIAN\": 1075, \"HAWN_PI\": 63, \"OTHER\": 1160, \"MULT_RACE\": 3037, \"HISPANIC\": 2626, \"MALES\": 80142, \"FEMALES\": 86037, \"AGE_UNDER5\": 11786, \"AGE_5_17\": 29946, \"AGE_18_21\": 15367, \"AGE_22_29\": 20300, \"AGE_30_39\": 23753, \"AGE_40_49\": 23451, \"AGE_50_64\": 21616, \"AGE_65_UP\": 19960, \"MED_AGE\": 32.400000, \"MED_AGE_M\": 30.800000, \"MED_AGE_F\": 34.100000, \"HOUSEHOLDS\": 67409, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 11342, \"HSEHLD_1_F\": 13443, \"MARHH_CHD\": 8285, \"MARHH_NO_C\": 12054, \"MHH_CHILD\": 1725, \"FHH_CHILD\": 8370, \"FAMILIES\": 37615, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 77321, \"VACANT\": 9912, \"OWNER_OCC\": 35565, \"RENTER_OCC\": 31844 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.196665062729053, 39.76270797268063 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Defiance\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"21308\", \"CAPITAL\": \"N\", \"AREALAND\": 10.538000, \"AREAWATER\": 0.488000, \"POP_CL\": 6, \"POP2000\": 16465, \"WHITE\": 14349, \"BLACK\": 567, \"AMERI_ES\": 53, \"ASIAN\": 64, \"HAWN_PI\": 8, \"OTHER\": 1070, \"MULT_RACE\": 354, \"HISPANIC\": 2100, \"MALES\": 7982, \"FEMALES\": 8483, \"AGE_UNDER5\": 1272, \"AGE_5_17\": 2956, \"AGE_18_21\": 1127, \"AGE_22_29\": 1826, \"AGE_30_39\": 2051, \"AGE_40_49\": 2477, \"AGE_50_64\": 2524, \"AGE_65_UP\": 2232, \"MED_AGE\": 35.200000, \"MED_AGE_M\": 33.100000, \"MED_AGE_F\": 37.200000, \"HOUSEHOLDS\": 6572, \"AVE_HH_SZ\": 2.430000, \"HSEHLD_1_M\": 776, \"HSEHLD_1_F\": 1036, \"MARHH_CHD\": 1380, \"MARHH_NO_C\": 1921, \"MHH_CHILD\": 195, \"FHH_CHILD\": 595, \"FAMILIES\": 4423, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 7061, \"VACANT\": 489, \"OWNER_OCC\": 4624, \"RENTER_OCC\": 1948 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.362856061468094, 41.281890973137358 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Delaware\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"21434\", \"CAPITAL\": \"N\", \"AREALAND\": 15.000000, \"AREAWATER\": 0.100000, \"POP_CL\": 6, \"POP2000\": 25243, \"WHITE\": 23435, \"BLACK\": 968, \"AMERI_ES\": 48, \"ASIAN\": 211, \"HAWN_PI\": 24, \"OTHER\": 138, \"MULT_RACE\": 419, \"HISPANIC\": 312, \"MALES\": 12061, \"FEMALES\": 13182, \"AGE_UNDER5\": 2002, \"AGE_5_17\": 4223, \"AGE_18_21\": 2442, \"AGE_22_29\": 3215, \"AGE_30_39\": 4029, \"AGE_40_49\": 3445, \"AGE_50_64\": 3136, \"AGE_65_UP\": 2751, \"MED_AGE\": 31.600000, \"MED_AGE_M\": 30.400000, \"MED_AGE_F\": 33.000000, \"HOUSEHOLDS\": 9520, \"AVE_HH_SZ\": 2.450000, \"HSEHLD_1_M\": 974, \"HSEHLD_1_F\": 1591, \"MARHH_CHD\": 2384, \"MARHH_NO_C\": 2580, \"MHH_CHILD\": 206, \"FHH_CHILD\": 711, \"FAMILIES\": 6355, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 10208, \"VACANT\": 688, \"OWNER_OCC\": 5743, \"RENTER_OCC\": 3777 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.07200722055812, 40.298897946881723 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Dover\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"22456\", \"CAPITAL\": \"N\", \"AREALAND\": 5.264000, \"AREAWATER\": 0.069000, \"POP_CL\": 6, \"POP2000\": 12210, \"WHITE\": 11855, \"BLACK\": 155, \"AMERI_ES\": 30, \"ASIAN\": 62, \"HAWN_PI\": 3, \"OTHER\": 25, \"MULT_RACE\": 80, \"HISPANIC\": 73, \"MALES\": 5676, \"FEMALES\": 6534, \"AGE_UNDER5\": 736, \"AGE_5_17\": 2204, \"AGE_18_21\": 484, \"AGE_22_29\": 1032, \"AGE_30_39\": 1587, \"AGE_40_49\": 1890, \"AGE_50_64\": 1845, \"AGE_65_UP\": 2432, \"MED_AGE\": 40.300000, \"MED_AGE_M\": 38.200000, \"MED_AGE_F\": 42.100000, \"HOUSEHOLDS\": 4996, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 504, \"HSEHLD_1_F\": 934, \"MARHH_CHD\": 1141, \"MARHH_NO_C\": 1575, \"MHH_CHILD\": 77, \"FHH_CHILD\": 291, \"FAMILIES\": 3360, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 5233, \"VACANT\": 237, \"OWNER_OCC\": 3592, \"RENTER_OCC\": 1404 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.47776995705091, 40.526544895097622 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Dublin\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"22694\", \"CAPITAL\": \"N\", \"AREALAND\": 21.123000, \"AREAWATER\": 0.018000, \"POP_CL\": 6, \"POP2000\": 31392, \"WHITE\": 28146, \"BLACK\": 543, \"AMERI_ES\": 25, \"ASIAN\": 2312, \"HAWN_PI\": 6, \"OTHER\": 62, \"MULT_RACE\": 298, \"HISPANIC\": 317, \"MALES\": 15543, \"FEMALES\": 15849, \"AGE_UNDER5\": 2580, \"AGE_5_17\": 7503, \"AGE_18_21\": 860, \"AGE_22_29\": 2168, \"AGE_30_39\": 5511, \"AGE_40_49\": 6549, \"AGE_50_64\": 4535, \"AGE_65_UP\": 1686, \"MED_AGE\": 35.400000, \"MED_AGE_M\": 35.200000, \"MED_AGE_F\": 35.600000, \"HOUSEHOLDS\": 11209, \"AVE_HH_SZ\": 2.800000, \"HSEHLD_1_M\": 950, \"HSEHLD_1_F\": 1125, \"MARHH_CHD\": 4709, \"MARHH_NO_C\": 3218, \"MHH_CHILD\": 118, \"FHH_CHILD\": 396, \"FAMILIES\": 8680, \"AVE_FAM_SZ\": 3.240000, \"HSE_UNITS\": 12038, \"VACANT\": 829, \"OWNER_OCC\": 8612, \"RENTER_OCC\": 2597 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.140247202329022, 40.109261949285781 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"East Cleveland\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"23380\", \"CAPITAL\": \"N\", \"AREALAND\": 3.106000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 27217, \"WHITE\": 1240, \"BLACK\": 25418, \"AMERI_ES\": 59, \"ASIAN\": 61, \"HAWN_PI\": 4, \"OTHER\": 45, \"MULT_RACE\": 390, \"HISPANIC\": 207, \"MALES\": 12065, \"FEMALES\": 15152, \"AGE_UNDER5\": 2001, \"AGE_5_17\": 6080, \"AGE_18_21\": 1472, \"AGE_22_29\": 2781, \"AGE_30_39\": 3406, \"AGE_40_49\": 3888, \"AGE_50_64\": 3973, \"AGE_65_UP\": 3616, \"MED_AGE\": 33.900000, \"MED_AGE_M\": 30.600000, \"MED_AGE_F\": 36.300000, \"HOUSEHOLDS\": 11210, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 1847, \"HSEHLD_1_F\": 2418, \"MARHH_CHD\": 826, \"MARHH_NO_C\": 1554, \"MHH_CHILD\": 286, \"FHH_CHILD\": 2086, \"FAMILIES\": 6419, \"AVE_FAM_SZ\": 3.200000, \"HSE_UNITS\": 13491, \"VACANT\": 2281, \"OWNER_OCC\": 3984, \"RENTER_OCC\": 7226 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.581948949662845, 41.531700891952205 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Eastlake\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"23618\", \"CAPITAL\": \"N\", \"AREALAND\": 6.397000, \"AREAWATER\": 0.121000, \"POP_CL\": 6, \"POP2000\": 20255, \"WHITE\": 19737, \"BLACK\": 110, \"AMERI_ES\": 32, \"ASIAN\": 196, \"HAWN_PI\": 2, \"OTHER\": 30, \"MULT_RACE\": 148, \"HISPANIC\": 141, \"MALES\": 9884, \"FEMALES\": 10371, \"AGE_UNDER5\": 1174, \"AGE_5_17\": 3655, \"AGE_18_21\": 962, \"AGE_22_29\": 1931, \"AGE_30_39\": 3172, \"AGE_40_49\": 3243, \"AGE_50_64\": 3677, \"AGE_65_UP\": 2441, \"MED_AGE\": 37.800000, \"MED_AGE_M\": 36.500000, \"MED_AGE_F\": 39.000000, \"HOUSEHOLDS\": 8055, \"AVE_HH_SZ\": 2.510000, \"HSEHLD_1_M\": 951, \"HSEHLD_1_F\": 1168, \"MARHH_CHD\": 1845, \"MARHH_NO_C\": 2450, \"MHH_CHILD\": 165, \"FHH_CHILD\": 454, \"FAMILIES\": 5554, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 8310, \"VACANT\": 255, \"OWNER_OCC\": 6280, \"RENTER_OCC\": 1775 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.43540908358932, 41.661045885672173 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"East Liverpool\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"23730\", \"CAPITAL\": \"N\", \"AREALAND\": 4.348000, \"AREAWATER\": 0.181000, \"POP_CL\": 6, \"POP2000\": 13089, \"WHITE\": 12153, \"BLACK\": 630, \"AMERI_ES\": 31, \"ASIAN\": 11, \"HAWN_PI\": 6, \"OTHER\": 27, \"MULT_RACE\": 231, \"HISPANIC\": 94, \"MALES\": 6070, \"FEMALES\": 7019, \"AGE_UNDER5\": 976, \"AGE_5_17\": 2570, \"AGE_18_21\": 640, \"AGE_22_29\": 1419, \"AGE_30_39\": 1727, \"AGE_40_49\": 1829, \"AGE_50_64\": 1828, \"AGE_65_UP\": 2100, \"MED_AGE\": 35.700000, \"MED_AGE_M\": 33.500000, \"MED_AGE_F\": 37.500000, \"HOUSEHOLDS\": 5261, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 572, \"HSEHLD_1_F\": 1020, \"MARHH_CHD\": 1011, \"MARHH_NO_C\": 1276, \"MHH_CHILD\": 160, \"FHH_CHILD\": 562, \"FAMILIES\": 3427, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 5743, \"VACANT\": 482, \"OWNER_OCC\": 3132, \"RENTER_OCC\": 2129 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.56906500099592, 40.628509867819965 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Elyria\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"25256\", \"CAPITAL\": \"N\", \"AREALAND\": 19.886000, \"AREAWATER\": 0.026000, \"POP_CL\": 7, \"POP2000\": 55953, \"WHITE\": 45517, \"BLACK\": 7928, \"AMERI_ES\": 150, \"ASIAN\": 340, \"HAWN_PI\": 11, \"OTHER\": 532, \"MULT_RACE\": 1475, \"HISPANIC\": 1553, \"MALES\": 26875, \"FEMALES\": 29078, \"AGE_UNDER5\": 4419, \"AGE_5_17\": 10448, \"AGE_18_21\": 2763, \"AGE_22_29\": 6352, \"AGE_30_39\": 8479, \"AGE_40_49\": 8181, \"AGE_50_64\": 8062, \"AGE_65_UP\": 7249, \"MED_AGE\": 34.800000, \"MED_AGE_M\": 33.500000, \"MED_AGE_F\": 36.100000, \"HOUSEHOLDS\": 22409, \"AVE_HH_SZ\": 2.460000, \"HSEHLD_1_M\": 2703, \"HSEHLD_1_F\": 3684, \"MARHH_CHD\": 4417, \"MARHH_NO_C\": 5981, \"MHH_CHILD\": 562, \"FHH_CHILD\": 2179, \"FAMILIES\": 14827, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 23841, \"VACANT\": 1432, \"OWNER_OCC\": 14485, \"RENTER_OCC\": 7924 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.101692599717509, 41.37339591185777 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Englewood\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"25396\", \"CAPITAL\": \"N\", \"AREALAND\": 6.560000, \"AREAWATER\": 0.045000, \"POP_CL\": 6, \"POP2000\": 12235, \"WHITE\": 11318, \"BLACK\": 564, \"AMERI_ES\": 26, \"ASIAN\": 159, \"HAWN_PI\": 2, \"OTHER\": 46, \"MULT_RACE\": 120, \"HISPANIC\": 106, \"MALES\": 5773, \"FEMALES\": 6462, \"AGE_UNDER5\": 774, \"AGE_5_17\": 2169, \"AGE_18_21\": 531, \"AGE_22_29\": 1071, \"AGE_30_39\": 1684, \"AGE_40_49\": 1868, \"AGE_50_64\": 2124, \"AGE_65_UP\": 2014, \"MED_AGE\": 39.400000, \"MED_AGE_M\": 37.100000, \"MED_AGE_F\": 41.300000, \"HOUSEHOLDS\": 5062, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 499, \"HSEHLD_1_F\": 904, \"MARHH_CHD\": 1154, \"MARHH_NO_C\": 1629, \"MHH_CHILD\": 106, \"FHH_CHILD\": 308, \"FAMILIES\": 3440, \"AVE_FAM_SZ\": 2.910000, \"HSE_UNITS\": 5310, \"VACANT\": 248, \"OWNER_OCC\": 3685, \"RENTER_OCC\": 1377 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.304044056026257, 39.863354974296492 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Euclid\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"25704\", \"CAPITAL\": \"N\", \"AREALAND\": 10.708000, \"AREAWATER\": 0.858000, \"POP_CL\": 7, \"POP2000\": 52717, \"WHITE\": 34985, \"BLACK\": 16116, \"AMERI_ES\": 62, \"ASIAN\": 493, \"HAWN_PI\": 13, \"OTHER\": 184, \"MULT_RACE\": 864, \"HISPANIC\": 604, \"MALES\": 24074, \"FEMALES\": 28643, \"AGE_UNDER5\": 3327, \"AGE_5_17\": 8453, \"AGE_18_21\": 1971, \"AGE_22_29\": 5240, \"AGE_30_39\": 8299, \"AGE_40_49\": 7977, \"AGE_50_64\": 7338, \"AGE_65_UP\": 10112, \"MED_AGE\": 38.900000, \"MED_AGE_M\": 36.600000, \"MED_AGE_F\": 41.000000, \"HOUSEHOLDS\": 24353, \"AVE_HH_SZ\": 2.140000, \"HSEHLD_1_M\": 3728, \"HSEHLD_1_F\": 5949, \"MARHH_CHD\": 3586, \"MARHH_NO_C\": 5245, \"MHH_CHILD\": 396, \"FHH_CHILD\": 2089, \"FAMILIES\": 13484, \"AVE_FAM_SZ\": 2.890000, \"HSE_UNITS\": 26123, \"VACANT\": 1770, \"OWNER_OCC\": 14478, \"RENTER_OCC\": 9875 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.51917700576368, 41.595562889211045 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fairborn\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"25914\", \"CAPITAL\": \"N\", \"AREALAND\": 13.064000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 32052, \"WHITE\": 27976, \"BLACK\": 2010, \"AMERI_ES\": 127, \"ASIAN\": 1064, \"HAWN_PI\": 20, \"OTHER\": 169, \"MULT_RACE\": 686, \"HISPANIC\": 542, \"MALES\": 15592, \"FEMALES\": 16460, \"AGE_UNDER5\": 1917, \"AGE_5_17\": 4828, \"AGE_18_21\": 3578, \"AGE_22_29\": 5116, \"AGE_30_39\": 4369, \"AGE_40_49\": 4184, \"AGE_50_64\": 4340, \"AGE_65_UP\": 3720, \"MED_AGE\": 31.300000, \"MED_AGE_M\": 29.900000, \"MED_AGE_F\": 33.100000, \"HOUSEHOLDS\": 13615, \"AVE_HH_SZ\": 2.280000, \"HSEHLD_1_M\": 1932, \"HSEHLD_1_F\": 2290, \"MARHH_CHD\": 2291, \"MARHH_NO_C\": 3540, \"MHH_CHILD\": 272, \"FHH_CHILD\": 1070, \"FAMILIES\": 8018, \"AVE_FAM_SZ\": 2.860000, \"HSE_UNITS\": 14419, \"VACANT\": 804, \"OWNER_OCC\": 7034, \"RENTER_OCC\": 6581 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.021983076970486, 39.807908969522941 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fairfield\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"25970\", \"CAPITAL\": \"N\", \"AREALAND\": 20.990000, \"AREAWATER\": 0.087000, \"POP_CL\": 6, \"POP2000\": 42097, \"WHITE\": 37830, \"BLACK\": 2557, \"AMERI_ES\": 56, \"ASIAN\": 948, \"HAWN_PI\": 15, \"OTHER\": 215, \"MULT_RACE\": 476, \"HISPANIC\": 646, \"MALES\": 20494, \"FEMALES\": 21603, \"AGE_UNDER5\": 2667, \"AGE_5_17\": 7590, \"AGE_18_21\": 2071, \"AGE_22_29\": 5401, \"AGE_30_39\": 6587, \"AGE_40_49\": 6692, \"AGE_50_64\": 6591, \"AGE_65_UP\": 4498, \"MED_AGE\": 35.200000, \"MED_AGE_M\": 33.900000, \"MED_AGE_F\": 36.400000, \"HOUSEHOLDS\": 16960, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 2018, \"HSEHLD_1_F\": 2497, \"MARHH_CHD\": 4088, \"MARHH_NO_C\": 5025, \"MHH_CHILD\": 343, \"FHH_CHILD\": 1073, \"FAMILIES\": 11361, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 17789, \"VACANT\": 829, \"OWNER_OCC\": 11087, \"RENTER_OCC\": 5873 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.542842039316966, 39.33115597866815 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fairview Park\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"26446\", \"CAPITAL\": \"N\", \"AREALAND\": 4.696000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 17572, \"WHITE\": 16864, \"BLACK\": 113, \"AMERI_ES\": 18, \"ASIAN\": 276, \"HAWN_PI\": 4, \"OTHER\": 64, \"MULT_RACE\": 233, \"HISPANIC\": 264, \"MALES\": 8261, \"FEMALES\": 9311, \"AGE_UNDER5\": 1039, \"AGE_5_17\": 2863, \"AGE_18_21\": 596, \"AGE_22_29\": 1431, \"AGE_30_39\": 2609, \"AGE_40_49\": 2850, \"AGE_50_64\": 2828, \"AGE_65_UP\": 3356, \"MED_AGE\": 40.900000, \"MED_AGE_M\": 39.000000, \"MED_AGE_F\": 42.400000, \"HOUSEHOLDS\": 7856, \"AVE_HH_SZ\": 2.240000, \"HSEHLD_1_M\": 1018, \"HSEHLD_1_F\": 1807, \"MARHH_CHD\": 1612, \"MARHH_NO_C\": 2205, \"MHH_CHILD\": 83, \"FHH_CHILD\": 323, \"FAMILIES\": 4717, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 8152, \"VACANT\": 296, \"OWNER_OCC\": 5753, \"RENTER_OCC\": 2103 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.85738074617521, 41.441696902646953 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Findlay\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"27048\", \"CAPITAL\": \"N\", \"AREALAND\": 17.194000, \"AREAWATER\": 0.110000, \"POP_CL\": 6, \"POP2000\": 38967, \"WHITE\": 36513, \"BLACK\": 546, \"AMERI_ES\": 74, \"ASIAN\": 686, \"HAWN_PI\": 10, \"OTHER\": 648, \"MULT_RACE\": 490, \"HISPANIC\": 1539, \"MALES\": 18597, \"FEMALES\": 20370, \"AGE_UNDER5\": 2719, \"AGE_5_17\": 6551, \"AGE_18_21\": 2887, \"AGE_22_29\": 4581, \"AGE_30_39\": 5488, \"AGE_40_49\": 5386, \"AGE_50_64\": 5841, \"AGE_65_UP\": 5514, \"MED_AGE\": 35.100000, \"MED_AGE_M\": 33.800000, \"MED_AGE_F\": 36.600000, \"HOUSEHOLDS\": 15905, \"AVE_HH_SZ\": 2.360000, \"HSEHLD_1_M\": 2031, \"HSEHLD_1_F\": 2769, \"MARHH_CHD\": 3245, \"MARHH_NO_C\": 4603, \"MHH_CHILD\": 356, \"FHH_CHILD\": 1049, \"FAMILIES\": 10006, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 17152, \"VACANT\": 1247, \"OWNER_OCC\": 10308, \"RENTER_OCC\": 5597 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.642216132520957, 41.042842959110175 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Finneytown\", \"CLASS\": \"CDP\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"27104\", \"CAPITAL\": \"N\", \"AREALAND\": 3.988000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 13492, \"WHITE\": 9843, \"BLACK\": 3215, \"AMERI_ES\": 22, \"ASIAN\": 149, \"HAWN_PI\": 2, \"OTHER\": 61, \"MULT_RACE\": 200, \"HISPANIC\": 108, \"MALES\": 6310, \"FEMALES\": 7182, \"AGE_UNDER5\": 818, \"AGE_5_17\": 2912, \"AGE_18_21\": 553, \"AGE_22_29\": 971, \"AGE_30_39\": 1807, \"AGE_40_49\": 2027, \"AGE_50_64\": 2103, \"AGE_65_UP\": 2301, \"MED_AGE\": 38.500000, \"MED_AGE_M\": 36.200000, \"MED_AGE_F\": 40.300000, \"HOUSEHOLDS\": 5194, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 368, \"HSEHLD_1_F\": 871, \"MARHH_CHD\": 1250, \"MARHH_NO_C\": 1644, \"MHH_CHILD\": 83, \"FHH_CHILD\": 462, \"FAMILIES\": 3808, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 5336, \"VACANT\": 142, \"OWNER_OCC\": 4179, \"RENTER_OCC\": 1015 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.521513039754012, 39.217058978523717 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Forest Park\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"27706\", \"CAPITAL\": \"N\", \"AREALAND\": 6.508000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 19463, \"WHITE\": 7142, \"BLACK\": 10949, \"AMERI_ES\": 22, \"ASIAN\": 715, \"HAWN_PI\": 15, \"OTHER\": 192, \"MULT_RACE\": 428, \"HISPANIC\": 289, \"MALES\": 9344, \"FEMALES\": 10119, \"AGE_UNDER5\": 1278, \"AGE_5_17\": 3998, \"AGE_18_21\": 911, \"AGE_22_29\": 2314, \"AGE_30_39\": 3132, \"AGE_40_49\": 2894, \"AGE_50_64\": 3165, \"AGE_65_UP\": 1771, \"MED_AGE\": 33.900000, \"MED_AGE_M\": 32.200000, \"MED_AGE_F\": 35.500000, \"HOUSEHOLDS\": 7505, \"AVE_HH_SZ\": 2.580000, \"HSEHLD_1_M\": 822, \"HSEHLD_1_F\": 1045, \"MARHH_CHD\": 1723, \"MARHH_NO_C\": 2058, \"MHH_CHILD\": 159, \"FHH_CHILD\": 666, \"FAMILIES\": 5240, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 7748, \"VACANT\": 243, \"OWNER_OCC\": 4690, \"RENTER_OCC\": 2815 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.5203630401802, 39.286407978413088 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Forestville\", \"CLASS\": \"CDP\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"27776\", \"CAPITAL\": \"N\", \"AREALAND\": 3.682000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10978, \"WHITE\": 10508, \"BLACK\": 96, \"AMERI_ES\": 5, \"ASIAN\": 244, \"HAWN_PI\": 1, \"OTHER\": 34, \"MULT_RACE\": 90, \"HISPANIC\": 116, \"MALES\": 5096, \"FEMALES\": 5882, \"AGE_UNDER5\": 726, \"AGE_5_17\": 2250, \"AGE_18_21\": 401, \"AGE_22_29\": 736, \"AGE_30_39\": 1514, \"AGE_40_49\": 1887, \"AGE_50_64\": 1712, \"AGE_65_UP\": 1752, \"MED_AGE\": 39.300000, \"MED_AGE_M\": 37.600000, \"MED_AGE_F\": 40.600000, \"HOUSEHOLDS\": 4368, \"AVE_HH_SZ\": 2.490000, \"HSEHLD_1_M\": 386, \"HSEHLD_1_F\": 897, \"MARHH_CHD\": 1258, \"MARHH_NO_C\": 1245, \"MHH_CHILD\": 47, \"FHH_CHILD\": 190, \"FAMILIES\": 2948, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 4503, \"VACANT\": 135, \"OWNER_OCC\": 3230, \"RENTER_OCC\": 1138 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.337037048794272, 39.070852976043177 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fostoria\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"28014\", \"CAPITAL\": \"N\", \"AREALAND\": 7.265000, \"AREAWATER\": 0.218000, \"POP_CL\": 6, \"POP2000\": 13931, \"WHITE\": 12165, \"BLACK\": 801, \"AMERI_ES\": 27, \"ASIAN\": 67, \"HAWN_PI\": 0, \"OTHER\": 501, \"MULT_RACE\": 370, \"HISPANIC\": 1104, \"MALES\": 6612, \"FEMALES\": 7319, \"AGE_UNDER5\": 972, \"AGE_5_17\": 2796, \"AGE_18_21\": 700, \"AGE_22_29\": 1518, \"AGE_30_39\": 1808, \"AGE_40_49\": 2033, \"AGE_50_64\": 1937, \"AGE_65_UP\": 2167, \"MED_AGE\": 35.600000, \"MED_AGE_M\": 33.400000, \"MED_AGE_F\": 37.700000, \"HOUSEHOLDS\": 5565, \"AVE_HH_SZ\": 2.460000, \"HSEHLD_1_M\": 688, \"HSEHLD_1_F\": 960, \"MARHH_CHD\": 1065, \"MARHH_NO_C\": 1431, \"MHH_CHILD\": 179, \"FHH_CHILD\": 535, \"FAMILIES\": 3627, \"AVE_FAM_SZ\": 3.030000, \"HSE_UNITS\": 6024, \"VACANT\": 459, \"OWNER_OCC\": 3920, \"RENTER_OCC\": 1645 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.415239169515431, 41.159242953334179 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Franklin\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"28476\", \"CAPITAL\": \"N\", \"AREALAND\": 9.110000, \"AREAWATER\": 0.214000, \"POP_CL\": 6, \"POP2000\": 11396, \"WHITE\": 11112, \"BLACK\": 93, \"AMERI_ES\": 14, \"ASIAN\": 46, \"HAWN_PI\": 0, \"OTHER\": 37, \"MULT_RACE\": 94, \"HISPANIC\": 81, \"MALES\": 5412, \"FEMALES\": 5984, \"AGE_UNDER5\": 912, \"AGE_5_17\": 2118, \"AGE_18_21\": 593, \"AGE_22_29\": 1369, \"AGE_30_39\": 1828, \"AGE_40_49\": 1570, \"AGE_50_64\": 1667, \"AGE_65_UP\": 1339, \"MED_AGE\": 34.000000, \"MED_AGE_M\": 33.100000, \"MED_AGE_F\": 34.900000, \"HOUSEHOLDS\": 4553, \"AVE_HH_SZ\": 2.480000, \"HSEHLD_1_M\": 488, \"HSEHLD_1_F\": 711, \"MARHH_CHD\": 1036, \"MARHH_NO_C\": 1288, \"MHH_CHILD\": 122, \"FHH_CHILD\": 386, \"FAMILIES\": 3156, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 4802, \"VACANT\": 249, \"OWNER_OCC\": 2712, \"RENTER_OCC\": 1841 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.301575054159642, 39.561249974729591 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fremont\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"28826\", \"CAPITAL\": \"N\", \"AREALAND\": 7.511000, \"AREAWATER\": 0.218000, \"POP_CL\": 6, \"POP2000\": 17375, \"WHITE\": 14290, \"BLACK\": 1441, \"AMERI_ES\": 32, \"ASIAN\": 41, \"HAWN_PI\": 0, \"OTHER\": 1016, \"MULT_RACE\": 555, \"HISPANIC\": 2140, \"MALES\": 8226, \"FEMALES\": 9149, \"AGE_UNDER5\": 1402, \"AGE_5_17\": 3395, \"AGE_18_21\": 979, \"AGE_22_29\": 2014, \"AGE_30_39\": 2364, \"AGE_40_49\": 2494, \"AGE_50_64\": 2225, \"AGE_65_UP\": 2502, \"MED_AGE\": 33.800000, \"MED_AGE_M\": 31.900000, \"MED_AGE_F\": 35.800000, \"HOUSEHOLDS\": 6856, \"AVE_HH_SZ\": 2.460000, \"HSEHLD_1_M\": 873, \"HSEHLD_1_F\": 1211, \"MARHH_CHD\": 1329, \"MARHH_NO_C\": 1585, \"MHH_CHILD\": 204, \"FHH_CHILD\": 773, \"FAMILIES\": 4373, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 7368, \"VACANT\": 512, \"OWNER_OCC\": 4024, \"RENTER_OCC\": 2832 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.117123232524264, 41.348908944808194 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Gahanna\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"29106\", \"CAPITAL\": \"N\", \"AREALAND\": 12.396000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 32636, \"WHITE\": 28216, \"BLACK\": 2657, \"AMERI_ES\": 65, \"ASIAN\": 1062, \"HAWN_PI\": 9, \"OTHER\": 156, \"MULT_RACE\": 471, \"HISPANIC\": 430, \"MALES\": 15830, \"FEMALES\": 16806, \"AGE_UNDER5\": 2211, \"AGE_5_17\": 7206, \"AGE_18_21\": 1249, \"AGE_22_29\": 2595, \"AGE_30_39\": 5299, \"AGE_40_49\": 6222, \"AGE_50_64\": 5015, \"AGE_65_UP\": 2839, \"MED_AGE\": 36.500000, \"MED_AGE_M\": 35.400000, \"MED_AGE_F\": 37.400000, \"HOUSEHOLDS\": 11990, \"AVE_HH_SZ\": 2.700000, \"HSEHLD_1_M\": 948, \"HSEHLD_1_F\": 1555, \"MARHH_CHD\": 3985, \"MARHH_NO_C\": 3495, \"MHH_CHILD\": 195, \"FHH_CHILD\": 669, \"FAMILIES\": 8930, \"AVE_FAM_SZ\": 3.170000, \"HSE_UNITS\": 12390, \"VACANT\": 400, \"OWNER_OCC\": 9315, \"RENTER_OCC\": 2675 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.869131262152393, 40.026712942254832 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Galion\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"29162\", \"CAPITAL\": \"N\", \"AREALAND\": 4.960000, \"AREAWATER\": 0.011000, \"POP_CL\": 6, \"POP2000\": 11341, \"WHITE\": 11146, \"BLACK\": 25, \"AMERI_ES\": 35, \"ASIAN\": 30, \"HAWN_PI\": 1, \"OTHER\": 40, \"MULT_RACE\": 64, \"HISPANIC\": 105, \"MALES\": 5232, \"FEMALES\": 6109, \"AGE_UNDER5\": 825, \"AGE_5_17\": 2063, \"AGE_18_21\": 502, \"AGE_22_29\": 1246, \"AGE_30_39\": 1551, \"AGE_40_49\": 1602, \"AGE_50_64\": 1738, \"AGE_65_UP\": 1814, \"MED_AGE\": 36.700000, \"MED_AGE_M\": 34.900000, \"MED_AGE_F\": 38.300000, \"HOUSEHOLDS\": 4791, \"AVE_HH_SZ\": 2.340000, \"HSEHLD_1_M\": 538, \"HSEHLD_1_F\": 933, \"MARHH_CHD\": 959, \"MARHH_NO_C\": 1354, \"MHH_CHILD\": 127, \"FHH_CHILD\": 401, \"FAMILIES\": 3089, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 5150, \"VACANT\": 359, \"OWNER_OCC\": 3026, \"RENTER_OCC\": 1765 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.78858630243036, 40.733163937328484 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Garfield Heights\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"29428\", \"CAPITAL\": \"N\", \"AREALAND\": 7.226000, \"AREAWATER\": 0.081000, \"POP_CL\": 6, \"POP2000\": 30734, \"WHITE\": 24807, \"BLACK\": 5164, \"AMERI_ES\": 48, \"ASIAN\": 286, \"HAWN_PI\": 3, \"OTHER\": 132, \"MULT_RACE\": 294, \"HISPANIC\": 388, \"MALES\": 14351, \"FEMALES\": 16383, \"AGE_UNDER5\": 1940, \"AGE_5_17\": 5452, \"AGE_18_21\": 1312, \"AGE_22_29\": 2842, \"AGE_30_39\": 4686, \"AGE_40_49\": 4578, \"AGE_50_64\": 4200, \"AGE_65_UP\": 5724, \"MED_AGE\": 38.300000, \"MED_AGE_M\": 36.100000, \"MED_AGE_F\": 40.200000, \"HOUSEHOLDS\": 12452, \"AVE_HH_SZ\": 2.430000, \"HSEHLD_1_M\": 1439, \"HSEHLD_1_F\": 2302, \"MARHH_CHD\": 2449, \"MARHH_NO_C\": 3345, \"MHH_CHILD\": 218, \"FHH_CHILD\": 929, \"FAMILIES\": 8212, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 12998, \"VACANT\": 546, \"OWNER_OCC\": 9950, \"RENTER_OCC\": 2502 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.602682925329475, 41.421422893435675 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Girard\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"30198\", \"CAPITAL\": \"N\", \"AREALAND\": 6.113000, \"AREAWATER\": 0.485000, \"POP_CL\": 6, \"POP2000\": 10902, \"WHITE\": 10421, \"BLACK\": 266, \"AMERI_ES\": 28, \"ASIAN\": 38, \"HAWN_PI\": 2, \"OTHER\": 22, \"MULT_RACE\": 125, \"HISPANIC\": 79, \"MALES\": 5121, \"FEMALES\": 5781, \"AGE_UNDER5\": 630, \"AGE_5_17\": 1912, \"AGE_18_21\": 508, \"AGE_22_29\": 997, \"AGE_30_39\": 1527, \"AGE_40_49\": 1711, \"AGE_50_64\": 1613, \"AGE_65_UP\": 2004, \"MED_AGE\": 39.300000, \"MED_AGE_M\": 37.000000, \"MED_AGE_F\": 41.000000, \"HOUSEHOLDS\": 4631, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 542, \"HSEHLD_1_F\": 945, \"MARHH_CHD\": 861, \"MARHH_NO_C\": 1292, \"MHH_CHILD\": 92, \"FHH_CHILD\": 328, \"FAMILIES\": 2958, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 4937, \"VACANT\": 306, \"OWNER_OCC\": 3147, \"RENTER_OCC\": 1484 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.695559887992772, 41.158606865663629 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Green\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"31860\", \"CAPITAL\": \"N\", \"AREALAND\": 32.060000, \"AREAWATER\": 1.471000, \"POP_CL\": 6, \"POP2000\": 22817, \"WHITE\": 22250, \"BLACK\": 165, \"AMERI_ES\": 34, \"ASIAN\": 178, \"HAWN_PI\": 5, \"OTHER\": 28, \"MULT_RACE\": 157, \"HISPANIC\": 111, \"MALES\": 11268, \"FEMALES\": 11549, \"AGE_UNDER5\": 1395, \"AGE_5_17\": 4551, \"AGE_18_21\": 964, \"AGE_22_29\": 1568, \"AGE_30_39\": 3335, \"AGE_40_49\": 4137, \"AGE_50_64\": 3988, \"AGE_65_UP\": 2879, \"MED_AGE\": 39.000000, \"MED_AGE_M\": 38.300000, \"MED_AGE_F\": 39.600000, \"HOUSEHOLDS\": 8742, \"AVE_HH_SZ\": 2.590000, \"HSEHLD_1_M\": 850, \"HSEHLD_1_F\": 1082, \"MARHH_CHD\": 2372, \"MARHH_NO_C\": 2986, \"MHH_CHILD\": 166, \"FHH_CHILD\": 449, \"FAMILIES\": 6425, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 9180, \"VACANT\": 438, \"OWNER_OCC\": 7006, \"RENTER_OCC\": 1736 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.481218987749315, 40.956718892219548 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Greenville\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"32340\", \"CAPITAL\": \"N\", \"AREALAND\": 6.025000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 13294, \"WHITE\": 12937, \"BLACK\": 75, \"AMERI_ES\": 22, \"ASIAN\": 70, \"HAWN_PI\": 2, \"OTHER\": 59, \"MULT_RACE\": 129, \"HISPANIC\": 152, \"MALES\": 6074, \"FEMALES\": 7220, \"AGE_UNDER5\": 881, \"AGE_5_17\": 2138, \"AGE_18_21\": 640, \"AGE_22_29\": 1278, \"AGE_30_39\": 1643, \"AGE_40_49\": 1742, \"AGE_50_64\": 1959, \"AGE_65_UP\": 3013, \"MED_AGE\": 40.400000, \"MED_AGE_M\": 36.800000, \"MED_AGE_F\": 43.700000, \"HOUSEHOLDS\": 5649, \"AVE_HH_SZ\": 2.230000, \"HSEHLD_1_M\": 635, \"HSEHLD_1_F\": 1310, \"MARHH_CHD\": 999, \"MARHH_NO_C\": 1630, \"MHH_CHILD\": 139, \"FHH_CHILD\": 403, \"FAMILIES\": 3462, \"AVE_FAM_SZ\": 2.850000, \"HSE_UNITS\": 6030, \"VACANT\": 381, \"OWNER_OCC\": 3565, \"RENTER_OCC\": 2084 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.627985039123473, 40.102473978861411 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Grove City\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"32592\", \"CAPITAL\": \"N\", \"AREALAND\": 13.948000, \"AREAWATER\": 0.011000, \"POP_CL\": 6, \"POP2000\": 27075, \"WHITE\": 26039, \"BLACK\": 418, \"AMERI_ES\": 60, \"ASIAN\": 163, \"HAWN_PI\": 3, \"OTHER\": 91, \"MULT_RACE\": 301, \"HISPANIC\": 318, \"MALES\": 13151, \"FEMALES\": 13924, \"AGE_UNDER5\": 2094, \"AGE_5_17\": 5557, \"AGE_18_21\": 1177, \"AGE_22_29\": 2509, \"AGE_30_39\": 4642, \"AGE_40_49\": 4153, \"AGE_50_64\": 3946, \"AGE_65_UP\": 2997, \"MED_AGE\": 35.000000, \"MED_AGE_M\": 33.700000, \"MED_AGE_F\": 36.200000, \"HOUSEHOLDS\": 10265, \"AVE_HH_SZ\": 2.610000, \"HSEHLD_1_M\": 872, \"HSEHLD_1_F\": 1423, \"MARHH_CHD\": 2988, \"MARHH_NO_C\": 3118, \"MHH_CHILD\": 233, \"FHH_CHILD\": 661, \"FAMILIES\": 7543, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 10712, \"VACANT\": 447, \"OWNER_OCC\": 7439, \"RENTER_OCC\": 2826 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.078157210420898, 39.878029948406194 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hamilton\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"33012\", \"CAPITAL\": \"N\", \"AREALAND\": 21.612000, \"AREAWATER\": 0.465000, \"POP_CL\": 7, \"POP2000\": 60690, \"WHITE\": 53975, \"BLACK\": 4581, \"AMERI_ES\": 173, \"ASIAN\": 275, \"HAWN_PI\": 23, \"OTHER\": 889, \"MULT_RACE\": 774, \"HISPANIC\": 1566, \"MALES\": 29183, \"FEMALES\": 31507, \"AGE_UNDER5\": 4545, \"AGE_5_17\": 11100, \"AGE_18_21\": 3416, \"AGE_22_29\": 7083, \"AGE_30_39\": 8990, \"AGE_40_49\": 8686, \"AGE_50_64\": 8188, \"AGE_65_UP\": 8682, \"MED_AGE\": 34.900000, \"MED_AGE_M\": 32.900000, \"MED_AGE_F\": 36.700000, \"HOUSEHOLDS\": 24188, \"AVE_HH_SZ\": 2.450000, \"HSEHLD_1_M\": 2882, \"HSEHLD_1_F\": 4193, \"MARHH_CHD\": 4701, \"MARHH_NO_C\": 6302, \"MHH_CHILD\": 655, \"FHH_CHILD\": 2265, \"FAMILIES\": 15862, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 25913, \"VACANT\": 1725, \"OWNER_OCC\": 14693, \"RENTER_OCC\": 9495 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.564920038590728, 39.395805978889726 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hilliard\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"35476\", \"CAPITAL\": \"N\", \"AREALAND\": 11.141000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 24230, \"WHITE\": 22489, \"BLACK\": 357, \"AMERI_ES\": 42, \"ASIAN\": 844, \"HAWN_PI\": 4, \"OTHER\": 175, \"MULT_RACE\": 319, \"HISPANIC\": 426, \"MALES\": 11901, \"FEMALES\": 12329, \"AGE_UNDER5\": 2269, \"AGE_5_17\": 5519, \"AGE_18_21\": 759, \"AGE_22_29\": 2103, \"AGE_30_39\": 5142, \"AGE_40_49\": 4175, \"AGE_50_64\": 2529, \"AGE_65_UP\": 1734, \"MED_AGE\": 33.300000, \"MED_AGE_M\": 32.400000, \"MED_AGE_F\": 34.100000, \"HOUSEHOLDS\": 8577, \"AVE_HH_SZ\": 2.800000, \"HSEHLD_1_M\": 695, \"HSEHLD_1_F\": 978, \"MARHH_CHD\": 3378, \"MARHH_NO_C\": 2172, \"MHH_CHILD\": 173, \"FHH_CHILD\": 422, \"FAMILIES\": 6493, \"AVE_FAM_SZ\": 3.260000, \"HSE_UNITS\": 8957, \"VACANT\": 380, \"OWNER_OCC\": 6498, \"RENTER_OCC\": 2079 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.142678200357011, 40.034309949582635 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Huber Heights\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"36610\", \"CAPITAL\": \"N\", \"AREALAND\": 21.027000, \"AREAWATER\": 0.095000, \"POP_CL\": 6, \"POP2000\": 38212, \"WHITE\": 32433, \"BLACK\": 3737, \"AMERI_ES\": 106, \"ASIAN\": 832, \"HAWN_PI\": 23, \"OTHER\": 223, \"MULT_RACE\": 858, \"HISPANIC\": 635, \"MALES\": 18618, \"FEMALES\": 19594, \"AGE_UNDER5\": 2803, \"AGE_5_17\": 7668, \"AGE_18_21\": 1816, \"AGE_22_29\": 4169, \"AGE_30_39\": 6128, \"AGE_40_49\": 5916, \"AGE_50_64\": 6156, \"AGE_65_UP\": 3556, \"MED_AGE\": 34.400000, \"MED_AGE_M\": 33.400000, \"MED_AGE_F\": 35.300000, \"HOUSEHOLDS\": 14392, \"AVE_HH_SZ\": 2.640000, \"HSEHLD_1_M\": 1280, \"HSEHLD_1_F\": 1676, \"MARHH_CHD\": 3876, \"MARHH_NO_C\": 4565, \"MHH_CHILD\": 361, \"FHH_CHILD\": 1080, \"FAMILIES\": 10773, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 14938, \"VACANT\": 546, \"OWNER_OCC\": 10366, \"RENTER_OCC\": 4026 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.127608068616951, 39.850742971340004 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hudson\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"36651\", \"CAPITAL\": \"N\", \"AREALAND\": 25.588000, \"AREAWATER\": 0.266000, \"POP_CL\": 6, \"POP2000\": 22439, \"WHITE\": 21239, \"BLACK\": 333, \"AMERI_ES\": 20, \"ASIAN\": 633, \"HAWN_PI\": 1, \"OTHER\": 44, \"MULT_RACE\": 169, \"HISPANIC\": 184, \"MALES\": 11132, \"FEMALES\": 11307, \"AGE_UNDER5\": 1467, \"AGE_5_17\": 6043, \"AGE_18_21\": 681, \"AGE_22_29\": 655, \"AGE_30_39\": 2849, \"AGE_40_49\": 4812, \"AGE_50_64\": 3833, \"AGE_65_UP\": 2099, \"MED_AGE\": 38.900000, \"MED_AGE_M\": 38.100000, \"MED_AGE_F\": 39.400000, \"HOUSEHOLDS\": 7357, \"AVE_HH_SZ\": 3.010000, \"HSEHLD_1_M\": 302, \"HSEHLD_1_F\": 606, \"MARHH_CHD\": 3360, \"MARHH_NO_C\": 2505, \"MHH_CHILD\": 59, \"FHH_CHILD\": 225, \"FAMILIES\": 6348, \"AVE_FAM_SZ\": 3.300000, \"HSE_UNITS\": 7636, \"VACANT\": 279, \"OWNER_OCC\": 6653, \"RENTER_OCC\": 704 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.438983046312416, 41.243355888727969 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ironton\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"37464\", \"CAPITAL\": \"N\", \"AREALAND\": 4.135000, \"AREAWATER\": 0.263000, \"POP_CL\": 6, \"POP2000\": 11211, \"WHITE\": 10463, \"BLACK\": 587, \"AMERI_ES\": 10, \"ASIAN\": 28, \"HAWN_PI\": 2, \"OTHER\": 10, \"MULT_RACE\": 111, \"HISPANIC\": 57, \"MALES\": 5058, \"FEMALES\": 6153, \"AGE_UNDER5\": 610, \"AGE_5_17\": 1839, \"AGE_18_21\": 538, \"AGE_22_29\": 956, \"AGE_30_39\": 1364, \"AGE_40_49\": 1570, \"AGE_50_64\": 1955, \"AGE_65_UP\": 2379, \"MED_AGE\": 42.000000, \"MED_AGE_M\": 38.900000, \"MED_AGE_F\": 44.500000, \"HOUSEHOLDS\": 4906, \"AVE_HH_SZ\": 2.220000, \"HSEHLD_1_M\": 594, \"HSEHLD_1_F\": 1137, \"MARHH_CHD\": 796, \"MARHH_NO_C\": 1344, \"MHH_CHILD\": 85, \"FHH_CHILD\": 392, \"FAMILIES\": 3023, \"AVE_FAM_SZ\": 2.850000, \"HSE_UNITS\": 5507, \"VACANT\": 601, \"OWNER_OCC\": 3092, \"RENTER_OCC\": 1814 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.678309271916504, 38.530719942787236 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Kent\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"39872\", \"CAPITAL\": \"N\", \"AREALAND\": 8.687000, \"AREAWATER\": 0.021000, \"POP_CL\": 6, \"POP2000\": 27906, \"WHITE\": 24018, \"BLACK\": 2541, \"AMERI_ES\": 53, \"ASIAN\": 599, \"HAWN_PI\": 9, \"OTHER\": 124, \"MULT_RACE\": 562, \"HISPANIC\": 357, \"MALES\": 12793, \"FEMALES\": 15113, \"AGE_UNDER5\": 1397, \"AGE_5_17\": 3172, \"AGE_18_21\": 7957, \"AGE_22_29\": 5389, \"AGE_30_39\": 2836, \"AGE_40_49\": 2757, \"AGE_50_64\": 2293, \"AGE_65_UP\": 2105, \"MED_AGE\": 22.900000, \"MED_AGE_M\": 23.400000, \"MED_AGE_F\": 22.600000, \"HOUSEHOLDS\": 9772, \"AVE_HH_SZ\": 2.270000, \"HSEHLD_1_M\": 1364, \"HSEHLD_1_F\": 1805, \"MARHH_CHD\": 1412, \"MARHH_NO_C\": 1793, \"MHH_CHILD\": 165, \"FHH_CHILD\": 942, \"FAMILIES\": 4801, \"AVE_FAM_SZ\": 2.890000, \"HSE_UNITS\": 10435, \"VACANT\": 663, \"OWNER_OCC\": 3697, \"RENTER_OCC\": 6075 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.361110107861421, 41.150422886646588 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Kettering\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"40040\", \"CAPITAL\": \"N\", \"AREALAND\": 18.685000, \"AREAWATER\": 0.000000, \"POP_CL\": 7, \"POP2000\": 57502, \"WHITE\": 54757, \"BLACK\": 955, \"AMERI_ES\": 105, \"ASIAN\": 795, \"HAWN_PI\": 14, \"OTHER\": 189, \"MULT_RACE\": 687, \"HISPANIC\": 640, \"MALES\": 27324, \"FEMALES\": 30178, \"AGE_UNDER5\": 3363, \"AGE_5_17\": 9576, \"AGE_18_21\": 2311, \"AGE_22_29\": 6045, \"AGE_30_39\": 8424, \"AGE_40_49\": 8543, \"AGE_50_64\": 8742, \"AGE_65_UP\": 10498, \"MED_AGE\": 38.900000, \"MED_AGE_M\": 37.000000, \"MED_AGE_F\": 40.600000, \"HOUSEHOLDS\": 25657, \"AVE_HH_SZ\": 2.220000, \"HSEHLD_1_M\": 3428, \"HSEHLD_1_F\": 5133, \"MARHH_CHD\": 4977, \"MARHH_NO_C\": 7529, \"MHH_CHILD\": 433, \"FHH_CHILD\": 1501, \"FAMILIES\": 15715, \"AVE_FAM_SZ\": 2.850000, \"HSE_UNITS\": 26936, \"VACANT\": 1279, \"OWNER_OCC\": 17088, \"RENTER_OCC\": 8569 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.152314065510993, 39.697325972035358 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lakewood\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"41664\", \"CAPITAL\": \"N\", \"AREALAND\": 5.549000, \"AREAWATER\": 1.150000, \"POP_CL\": 7, \"POP2000\": 56646, \"WHITE\": 52723, \"BLACK\": 1116, \"AMERI_ES\": 139, \"ASIAN\": 800, \"HAWN_PI\": 15, \"OTHER\": 349, \"MULT_RACE\": 1504, \"HISPANIC\": 1269, \"MALES\": 27275, \"FEMALES\": 29371, \"AGE_UNDER5\": 3340, \"AGE_5_17\": 8573, \"AGE_18_21\": 2574, \"AGE_22_29\": 9230, \"AGE_30_39\": 10016, \"AGE_40_49\": 8715, \"AGE_50_64\": 7310, \"AGE_65_UP\": 6888, \"MED_AGE\": 34.200000, \"MED_AGE_M\": 32.800000, \"MED_AGE_F\": 35.600000, \"HOUSEHOLDS\": 26693, \"AVE_HH_SZ\": 2.090000, \"HSEHLD_1_M\": 5074, \"HSEHLD_1_F\": 6572, \"MARHH_CHD\": 4230, \"MARHH_NO_C\": 4854, \"MHH_CHILD\": 379, \"FHH_CHILD\": 1539, \"FAMILIES\": 12556, \"AVE_FAM_SZ\": 3.030000, \"HSE_UNITS\": 28416, \"VACANT\": 1723, \"OWNER_OCC\": 12063, \"RENTER_OCC\": 14630 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.800360786057951, 41.4808809003246 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lancaster\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"41720\", \"CAPITAL\": \"N\", \"AREALAND\": 18.066000, \"AREAWATER\": 0.010000, \"POP_CL\": 6, \"POP2000\": 35335, \"WHITE\": 34409, \"BLACK\": 214, \"AMERI_ES\": 107, \"ASIAN\": 166, \"HAWN_PI\": 13, \"OTHER\": 62, \"MULT_RACE\": 364, \"HISPANIC\": 291, \"MALES\": 16724, \"FEMALES\": 18611, \"AGE_UNDER5\": 2712, \"AGE_5_17\": 5982, \"AGE_18_21\": 1798, \"AGE_22_29\": 4192, \"AGE_30_39\": 5088, \"AGE_40_49\": 4674, \"AGE_50_64\": 5244, \"AGE_65_UP\": 5645, \"MED_AGE\": 35.900000, \"MED_AGE_M\": 33.700000, \"MED_AGE_F\": 38.100000, \"HOUSEHOLDS\": 14852, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 1701, \"HSEHLD_1_F\": 2797, \"MARHH_CHD\": 3002, \"MARHH_NO_C\": 4105, \"MHH_CHILD\": 323, \"FHH_CHILD\": 1201, \"FAMILIES\": 9568, \"AVE_FAM_SZ\": 2.910000, \"HSE_UNITS\": 15891, \"VACANT\": 1039, \"OWNER_OCC\": 8825, \"RENTER_OCC\": 6027 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.605293327779563, 39.719296935915317 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Landen\", \"CLASS\": \"CDP\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"41755\", \"CAPITAL\": \"N\", \"AREALAND\": 4.677000, \"AREAWATER\": 0.083000, \"POP_CL\": 6, \"POP2000\": 12766, \"WHITE\": 11982, \"BLACK\": 189, \"AMERI_ES\": 12, \"ASIAN\": 345, \"HAWN_PI\": 13, \"OTHER\": 99, \"MULT_RACE\": 126, \"HISPANIC\": 278, \"MALES\": 6359, \"FEMALES\": 6407, \"AGE_UNDER5\": 993, \"AGE_5_17\": 2747, \"AGE_18_21\": 412, \"AGE_22_29\": 1438, \"AGE_30_39\": 2569, \"AGE_40_49\": 2354, \"AGE_50_64\": 1600, \"AGE_65_UP\": 653, \"MED_AGE\": 33.500000, \"MED_AGE_M\": 32.800000, \"MED_AGE_F\": 34.000000, \"HOUSEHOLDS\": 4905, \"AVE_HH_SZ\": 2.600000, \"HSEHLD_1_M\": 529, \"HSEHLD_1_F\": 626, \"MARHH_CHD\": 1675, \"MARHH_NO_C\": 1321, \"MHH_CHILD\": 77, \"FHH_CHILD\": 213, \"FAMILIES\": 3450, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 5162, \"VACANT\": 257, \"OWNER_OCC\": 3435, \"RENTER_OCC\": 1470 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.284739053538004, 39.309066974860976 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lebanon\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"42364\", \"CAPITAL\": \"N\", \"AREALAND\": 11.774000, \"AREAWATER\": 0.005000, \"POP_CL\": 6, \"POP2000\": 16962, \"WHITE\": 15432, \"BLACK\": 1079, \"AMERI_ES\": 54, \"ASIAN\": 109, \"HAWN_PI\": 3, \"OTHER\": 62, \"MULT_RACE\": 223, \"HISPANIC\": 191, \"MALES\": 8887, \"FEMALES\": 8075, \"AGE_UNDER5\": 1442, \"AGE_5_17\": 3165, \"AGE_18_21\": 892, \"AGE_22_29\": 2342, \"AGE_30_39\": 3423, \"AGE_40_49\": 2341, \"AGE_50_64\": 1850, \"AGE_65_UP\": 1507, \"MED_AGE\": 31.900000, \"MED_AGE_M\": 31.200000, \"MED_AGE_F\": 33.000000, \"HOUSEHOLDS\": 5887, \"AVE_HH_SZ\": 2.580000, \"HSEHLD_1_M\": 582, \"HSEHLD_1_F\": 847, \"MARHH_CHD\": 1712, \"MARHH_NO_C\": 1514, \"MHH_CHILD\": 140, \"FHH_CHILD\": 543, \"FAMILIES\": 4207, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 6218, \"VACANT\": 331, \"OWNER_OCC\": 3470, \"RENTER_OCC\": 2417 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.21263105912962, 39.426723973507769 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lima\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"43554\", \"CAPITAL\": \"N\", \"AREALAND\": 12.785000, \"AREAWATER\": 0.097000, \"POP_CL\": 6, \"POP2000\": 40081, \"WHITE\": 27776, \"BLACK\": 10614, \"AMERI_ES\": 124, \"ASIAN\": 205, \"HAWN_PI\": 4, \"OTHER\": 388, \"MULT_RACE\": 970, \"HISPANIC\": 789, \"MALES\": 20101, \"FEMALES\": 19980, \"AGE_UNDER5\": 3257, \"AGE_5_17\": 7632, \"AGE_18_21\": 2806, \"AGE_22_29\": 4737, \"AGE_30_39\": 5571, \"AGE_40_49\": 5536, \"AGE_50_64\": 5230, \"AGE_65_UP\": 5312, \"MED_AGE\": 32.900000, \"MED_AGE_M\": 31.300000, \"MED_AGE_F\": 34.700000, \"HOUSEHOLDS\": 15410, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 2065, \"HSEHLD_1_F\": 2887, \"MARHH_CHD\": 2396, \"MARHH_NO_C\": 3352, \"MHH_CHILD\": 430, \"FHH_CHILD\": 2084, \"FAMILIES\": 9567, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 17631, \"VACANT\": 2221, \"OWNER_OCC\": 8758, \"RENTER_OCC\": 6652 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.114997076889921, 40.740699969562442 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lorain\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"44856\", \"CAPITAL\": \"N\", \"AREALAND\": 24.016000, \"AREAWATER\": 0.231000, \"POP_CL\": 7, \"POP2000\": 68652, \"WHITE\": 47848, \"BLACK\": 10943, \"AMERI_ES\": 304, \"ASIAN\": 227, \"HAWN_PI\": 24, \"OTHER\": 6565, \"MULT_RACE\": 2741, \"HISPANIC\": 14438, \"MALES\": 32549, \"FEMALES\": 36103, \"AGE_UNDER5\": 5473, \"AGE_5_17\": 13981, \"AGE_18_21\": 3576, \"AGE_22_29\": 7290, \"AGE_30_39\": 9609, \"AGE_40_49\": 9634, \"AGE_50_64\": 9507, \"AGE_65_UP\": 9582, \"MED_AGE\": 34.400000, \"MED_AGE_M\": 32.900000, \"MED_AGE_F\": 35.700000, \"HOUSEHOLDS\": 26434, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 3109, \"HSEHLD_1_F\": 4132, \"MARHH_CHD\": 4731, \"MARHH_NO_C\": 6802, \"MHH_CHILD\": 740, \"FHH_CHILD\": 3326, \"FAMILIES\": 17981, \"AVE_FAM_SZ\": 3.110000, \"HSE_UNITS\": 28231, \"VACANT\": 1797, \"OWNER_OCC\": 16184, \"RENTER_OCC\": 10250 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.168862568533342, 41.448240913866066 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Loveland\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"45108\", \"CAPITAL\": \"N\", \"AREALAND\": 4.646000, \"AREAWATER\": 0.055000, \"POP_CL\": 6, \"POP2000\": 11677, \"WHITE\": 11170, \"BLACK\": 182, \"AMERI_ES\": 6, \"ASIAN\": 123, \"HAWN_PI\": 0, \"OTHER\": 49, \"MULT_RACE\": 147, \"HISPANIC\": 131, \"MALES\": 5562, \"FEMALES\": 6115, \"AGE_UNDER5\": 979, \"AGE_5_17\": 2423, \"AGE_18_21\": 483, \"AGE_22_29\": 971, \"AGE_30_39\": 1874, \"AGE_40_49\": 1977, \"AGE_50_64\": 1689, \"AGE_65_UP\": 1281, \"MED_AGE\": 35.800000, \"MED_AGE_M\": 34.500000, \"MED_AGE_F\": 36.800000, \"HOUSEHOLDS\": 4497, \"AVE_HH_SZ\": 2.580000, \"HSEHLD_1_M\": 398, \"HSEHLD_1_F\": 730, \"MARHH_CHD\": 1345, \"MARHH_NO_C\": 1245, \"MHH_CHILD\": 76, \"FHH_CHILD\": 336, \"FAMILIES\": 3223, \"AVE_FAM_SZ\": 3.110000, \"HSE_UNITS\": 4653, \"VACANT\": 156, \"OWNER_OCC\": 3353, \"RENTER_OCC\": 1144 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.27039705417782, 39.268758974698521 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lyndhurst\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"45556\", \"CAPITAL\": \"N\", \"AREALAND\": 4.390000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 15279, \"WHITE\": 14778, \"BLACK\": 196, \"AMERI_ES\": 1, \"ASIAN\": 182, \"HAWN_PI\": 2, \"OTHER\": 30, \"MULT_RACE\": 90, \"HISPANIC\": 104, \"MALES\": 7040, \"FEMALES\": 8239, \"AGE_UNDER5\": 861, \"AGE_5_17\": 2173, \"AGE_18_21\": 416, \"AGE_22_29\": 1100, \"AGE_30_39\": 2012, \"AGE_40_49\": 2227, \"AGE_50_64\": 2464, \"AGE_65_UP\": 4026, \"MED_AGE\": 44.700000, \"MED_AGE_M\": 42.300000, \"MED_AGE_F\": 47.100000, \"HOUSEHOLDS\": 6642, \"AVE_HH_SZ\": 2.270000, \"HSEHLD_1_M\": 607, \"HSEHLD_1_F\": 1458, \"MARHH_CHD\": 1367, \"MARHH_NO_C\": 2390, \"MHH_CHILD\": 50, \"FHH_CHILD\": 190, \"FAMILIES\": 4396, \"AVE_FAM_SZ\": 2.850000, \"HSE_UNITS\": 6855, \"VACANT\": 213, \"OWNER_OCC\": 5846, \"RENTER_OCC\": 796 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.490142024532588, 41.521351888647295 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mansfield\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"47138\", \"CAPITAL\": \"N\", \"AREALAND\": 29.905000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 49346, \"WHITE\": 37885, \"BLACK\": 9695, \"AMERI_ES\": 137, \"ASIAN\": 311, \"HAWN_PI\": 20, \"OTHER\": 275, \"MULT_RACE\": 1023, \"HISPANIC\": 605, \"MALES\": 24481, \"FEMALES\": 24865, \"AGE_UNDER5\": 3553, \"AGE_5_17\": 8246, \"AGE_18_21\": 2507, \"AGE_22_29\": 5701, \"AGE_30_39\": 7225, \"AGE_40_49\": 7182, \"AGE_50_64\": 7299, \"AGE_65_UP\": 7633, \"MED_AGE\": 36.400000, \"MED_AGE_M\": 34.500000, \"MED_AGE_F\": 38.800000, \"HOUSEHOLDS\": 20182, \"AVE_HH_SZ\": 2.280000, \"HSEHLD_1_M\": 2785, \"HSEHLD_1_F\": 4233, \"MARHH_CHD\": 3117, \"MARHH_NO_C\": 5057, \"MHH_CHILD\": 442, \"FHH_CHILD\": 1956, \"FAMILIES\": 12035, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 22267, \"VACANT\": 2085, \"OWNER_OCC\": 11619, \"RENTER_OCC\": 8563 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.522855388999915, 40.754855929028416 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Maple Heights\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"47306\", \"CAPITAL\": \"N\", \"AREALAND\": 5.191000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 26156, \"WHITE\": 13509, \"BLACK\": 11598, \"AMERI_ES\": 33, \"ASIAN\": 452, \"HAWN_PI\": 6, \"OTHER\": 124, \"MULT_RACE\": 434, \"HISPANIC\": 316, \"MALES\": 12227, \"FEMALES\": 13929, \"AGE_UNDER5\": 1651, \"AGE_5_17\": 5075, \"AGE_18_21\": 1117, \"AGE_22_29\": 2200, \"AGE_30_39\": 4301, \"AGE_40_49\": 4042, \"AGE_50_64\": 3446, \"AGE_65_UP\": 4324, \"MED_AGE\": 37.400000, \"MED_AGE_M\": 35.700000, \"MED_AGE_F\": 38.900000, \"HOUSEHOLDS\": 10489, \"AVE_HH_SZ\": 2.470000, \"HSEHLD_1_M\": 1271, \"HSEHLD_1_F\": 1867, \"MARHH_CHD\": 2094, \"MARHH_NO_C\": 2649, \"MHH_CHILD\": 210, \"FHH_CHILD\": 933, \"FAMILIES\": 6969, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 10935, \"VACANT\": 446, \"OWNER_OCC\": 8785, \"RENTER_OCC\": 1704 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.559593958732492, 41.412352891921124 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Marietta\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"47628\", \"CAPITAL\": \"N\", \"AREALAND\": 8.308000, \"AREAWATER\": 0.264000, \"POP_CL\": 6, \"POP2000\": 14515, \"WHITE\": 13979, \"BLACK\": 157, \"AMERI_ES\": 67, \"ASIAN\": 103, \"HAWN_PI\": 8, \"OTHER\": 40, \"MULT_RACE\": 161, \"HISPANIC\": 114, \"MALES\": 6757, \"FEMALES\": 7758, \"AGE_UNDER5\": 788, \"AGE_5_17\": 2251, \"AGE_18_21\": 1408, \"AGE_22_29\": 1442, \"AGE_30_39\": 1669, \"AGE_40_49\": 2246, \"AGE_50_64\": 2138, \"AGE_65_UP\": 2573, \"MED_AGE\": 38.400000, \"MED_AGE_M\": 36.100000, \"MED_AGE_F\": 40.400000, \"HOUSEHOLDS\": 5904, \"AVE_HH_SZ\": 2.210000, \"HSEHLD_1_M\": 793, \"HSEHLD_1_F\": 1282, \"MARHH_CHD\": 999, \"MARHH_NO_C\": 1503, \"MHH_CHILD\": 126, \"FHH_CHILD\": 480, \"FAMILIES\": 3503, \"AVE_FAM_SZ\": 2.860000, \"HSE_UNITS\": 6609, \"VACANT\": 705, \"OWNER_OCC\": 3493, \"RENTER_OCC\": 2411 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.450506892818098, 39.420823902012806 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Marion\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"47754\", \"CAPITAL\": \"N\", \"AREALAND\": 11.346000, \"AREAWATER\": 0.044000, \"POP_CL\": 6, \"POP2000\": 35318, \"WHITE\": 31926, \"BLACK\": 2475, \"AMERI_ES\": 69, \"ASIAN\": 192, \"HAWN_PI\": 4, \"OTHER\": 227, \"MULT_RACE\": 425, \"HISPANIC\": 474, \"MALES\": 17860, \"FEMALES\": 17458, \"AGE_UNDER5\": 2475, \"AGE_5_17\": 6429, \"AGE_18_21\": 1843, \"AGE_22_29\": 4128, \"AGE_30_39\": 5418, \"AGE_40_49\": 5245, \"AGE_50_64\": 5101, \"AGE_65_UP\": 4679, \"MED_AGE\": 35.200000, \"MED_AGE_M\": 33.900000, \"MED_AGE_F\": 37.000000, \"HOUSEHOLDS\": 13551, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 1539, \"HSEHLD_1_F\": 2430, \"MARHH_CHD\": 2680, \"MARHH_NO_C\": 3589, \"MHH_CHILD\": 417, \"FHH_CHILD\": 1189, \"FAMILIES\": 8826, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 14713, \"VACANT\": 1162, \"OWNER_OCC\": 8606, \"RENTER_OCC\": 4945 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.126404214783221, 40.586578947429601 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Marysville\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"48160\", \"CAPITAL\": \"N\", \"AREALAND\": 15.526000, \"AREAWATER\": 0.076000, \"POP_CL\": 6, \"POP2000\": 15942, \"WHITE\": 14559, \"BLACK\": 981, \"AMERI_ES\": 25, \"ASIAN\": 154, \"HAWN_PI\": 4, \"OTHER\": 39, \"MULT_RACE\": 180, \"HISPANIC\": 167, \"MALES\": 6928, \"FEMALES\": 9014, \"AGE_UNDER5\": 1410, \"AGE_5_17\": 2770, \"AGE_18_21\": 756, \"AGE_22_29\": 2348, \"AGE_30_39\": 3227, \"AGE_40_49\": 2249, \"AGE_50_64\": 1738, \"AGE_65_UP\": 1444, \"MED_AGE\": 31.900000, \"MED_AGE_M\": 30.300000, \"MED_AGE_F\": 33.000000, \"HOUSEHOLDS\": 5563, \"AVE_HH_SZ\": 2.510000, \"HSEHLD_1_M\": 632, \"HSEHLD_1_F\": 840, \"MARHH_CHD\": 1579, \"MARHH_NO_C\": 1412, \"MHH_CHILD\": 140, \"FHH_CHILD\": 415, \"FAMILIES\": 3788, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 5976, \"VACANT\": 413, \"OWNER_OCC\": 3588, \"RENTER_OCC\": 1975 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.366353162906591, 40.233880954604288 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mason\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"48188\", \"CAPITAL\": \"N\", \"AREALAND\": 17.613000, \"AREAWATER\": 0.037000, \"POP_CL\": 6, \"POP2000\": 22016, \"WHITE\": 20868, \"BLACK\": 354, \"AMERI_ES\": 42, \"ASIAN\": 481, \"HAWN_PI\": 2, \"OTHER\": 65, \"MULT_RACE\": 204, \"HISPANIC\": 213, \"MALES\": 10768, \"FEMALES\": 11248, \"AGE_UNDER5\": 2029, \"AGE_5_17\": 5031, \"AGE_18_21\": 693, \"AGE_22_29\": 1607, \"AGE_30_39\": 4382, \"AGE_40_49\": 3804, \"AGE_50_64\": 2620, \"AGE_65_UP\": 1850, \"MED_AGE\": 34.500000, \"MED_AGE_M\": 34.000000, \"MED_AGE_F\": 35.000000, \"HOUSEHOLDS\": 7789, \"AVE_HH_SZ\": 2.800000, \"HSEHLD_1_M\": 610, \"HSEHLD_1_F\": 946, \"MARHH_CHD\": 3063, \"MARHH_NO_C\": 2191, \"MHH_CHILD\": 129, \"FHH_CHILD\": 332, \"FAMILIES\": 5982, \"AVE_FAM_SZ\": 3.270000, \"HSE_UNITS\": 8111, \"VACANT\": 322, \"OWNER_OCC\": 6599, \"RENTER_OCC\": 1190 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.311822052167898, 39.358008975209444 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Massillon\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"48244\", \"CAPITAL\": \"N\", \"AREALAND\": 16.749000, \"AREAWATER\": 0.144000, \"POP_CL\": 6, \"POP2000\": 31325, \"WHITE\": 27622, \"BLACK\": 2942, \"AMERI_ES\": 71, \"ASIAN\": 79, \"HAWN_PI\": 1, \"OTHER\": 108, \"MULT_RACE\": 502, \"HISPANIC\": 301, \"MALES\": 15057, \"FEMALES\": 16268, \"AGE_UNDER5\": 2058, \"AGE_5_17\": 5864, \"AGE_18_21\": 1454, \"AGE_22_29\": 3019, \"AGE_30_39\": 4403, \"AGE_40_49\": 4600, \"AGE_50_64\": 4876, \"AGE_65_UP\": 5051, \"MED_AGE\": 37.600000, \"MED_AGE_M\": 34.800000, \"MED_AGE_F\": 40.100000, \"HOUSEHOLDS\": 12677, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 1403, \"HSEHLD_1_F\": 2353, \"MARHH_CHD\": 2457, \"MARHH_NO_C\": 3599, \"MHH_CHILD\": 294, \"FHH_CHILD\": 1029, \"FAMILIES\": 8324, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 13567, \"VACANT\": 890, \"OWNER_OCC\": 8743, \"RENTER_OCC\": 3934 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.522896941730181, 40.795269894779437 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Maumee\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"48342\", \"CAPITAL\": \"N\", \"AREALAND\": 9.935000, \"AREAWATER\": 0.604000, \"POP_CL\": 6, \"POP2000\": 15237, \"WHITE\": 14720, \"BLACK\": 160, \"AMERI_ES\": 8, \"ASIAN\": 109, \"HAWN_PI\": 5, \"OTHER\": 89, \"MULT_RACE\": 146, \"HISPANIC\": 277, \"MALES\": 7344, \"FEMALES\": 7893, \"AGE_UNDER5\": 776, \"AGE_5_17\": 2954, \"AGE_18_21\": 652, \"AGE_22_29\": 1515, \"AGE_30_39\": 2174, \"AGE_40_49\": 2658, \"AGE_50_64\": 2536, \"AGE_65_UP\": 1972, \"MED_AGE\": 38.200000, \"MED_AGE_M\": 36.500000, \"MED_AGE_F\": 39.600000, \"HOUSEHOLDS\": 6340, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 767, \"HSEHLD_1_F\": 1098, \"MARHH_CHD\": 1513, \"MARHH_NO_C\": 1934, \"MHH_CHILD\": 85, \"FHH_CHILD\": 332, \"FAMILIES\": 4212, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 6613, \"VACANT\": 273, \"OWNER_OCC\": 4648, \"RENTER_OCC\": 1692 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.652503137910344, 41.570544958151508 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mayfield Heights\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"48482\", \"CAPITAL\": \"N\", \"AREALAND\": 4.218000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 19386, \"WHITE\": 17806, \"BLACK\": 577, \"AMERI_ES\": 5, \"ASIAN\": 782, \"HAWN_PI\": 1, \"OTHER\": 34, \"MULT_RACE\": 181, \"HISPANIC\": 201, \"MALES\": 8744, \"FEMALES\": 10642, \"AGE_UNDER5\": 849, \"AGE_5_17\": 2271, \"AGE_18_21\": 555, \"AGE_22_29\": 2189, \"AGE_30_39\": 2763, \"AGE_40_49\": 2487, \"AGE_50_64\": 2922, \"AGE_65_UP\": 5350, \"MED_AGE\": 43.800000, \"MED_AGE_M\": 40.200000, \"MED_AGE_F\": 47.800000, \"HOUSEHOLDS\": 9848, \"AVE_HH_SZ\": 1.950000, \"HSEHLD_1_M\": 1480, \"HSEHLD_1_F\": 2904, \"MARHH_CHD\": 1329, \"MARHH_NO_C\": 2618, \"MHH_CHILD\": 92, \"FHH_CHILD\": 344, \"FAMILIES\": 5046, \"AVE_FAM_SZ\": 2.750000, \"HSE_UNITS\": 10461, \"VACANT\": 613, \"OWNER_OCC\": 5002, \"RENTER_OCC\": 4846 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.455890053774041, 41.517401887422572 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Medina\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"48790\", \"CAPITAL\": \"N\", \"AREALAND\": 11.126000, \"AREAWATER\": 0.194000, \"POP_CL\": 6, \"POP2000\": 25139, \"WHITE\": 23781, \"BLACK\": 697, \"AMERI_ES\": 48, \"ASIAN\": 186, \"HAWN_PI\": 7, \"OTHER\": 65, \"MULT_RACE\": 355, \"HISPANIC\": 252, \"MALES\": 12051, \"FEMALES\": 13088, \"AGE_UNDER5\": 2319, \"AGE_5_17\": 5207, \"AGE_18_21\": 998, \"AGE_22_29\": 2635, \"AGE_30_39\": 4591, \"AGE_40_49\": 3806, \"AGE_50_64\": 3008, \"AGE_65_UP\": 2575, \"MED_AGE\": 33.200000, \"MED_AGE_M\": 32.300000, \"MED_AGE_F\": 34.100000, \"HOUSEHOLDS\": 9467, \"AVE_HH_SZ\": 2.600000, \"HSEHLD_1_M\": 951, \"HSEHLD_1_F\": 1421, \"MARHH_CHD\": 2972, \"MARHH_NO_C\": 2468, \"MHH_CHILD\": 151, \"FHH_CHILD\": 694, \"FAMILIES\": 6688, \"AVE_FAM_SZ\": 3.150000, \"HSE_UNITS\": 9924, \"VACANT\": 457, \"OWNER_OCC\": 6275, \"RENTER_OCC\": 3192 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.8640697239709, 41.135898904670846 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mentor\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"49056\", \"CAPITAL\": \"N\", \"AREALAND\": 26.769000, \"AREAWATER\": 1.307000, \"POP_CL\": 7, \"POP2000\": 50278, \"WHITE\": 48920, \"BLACK\": 324, \"AMERI_ES\": 24, \"ASIAN\": 597, \"HAWN_PI\": 16, \"OTHER\": 91, \"MULT_RACE\": 306, \"HISPANIC\": 363, \"MALES\": 24383, \"FEMALES\": 25895, \"AGE_UNDER5\": 3026, \"AGE_5_17\": 10005, \"AGE_18_21\": 2048, \"AGE_22_29\": 3516, \"AGE_30_39\": 7557, \"AGE_40_49\": 9196, \"AGE_50_64\": 8761, \"AGE_65_UP\": 6169, \"MED_AGE\": 38.900000, \"MED_AGE_M\": 37.900000, \"MED_AGE_F\": 39.800000, \"HOUSEHOLDS\": 18797, \"AVE_HH_SZ\": 2.650000, \"HSEHLD_1_M\": 1570, \"HSEHLD_1_F\": 2291, \"MARHH_CHD\": 5589, \"MARHH_NO_C\": 6368, \"MHH_CHILD\": 289, \"FHH_CHILD\": 860, \"FAMILIES\": 14235, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 19301, \"VACANT\": 504, \"OWNER_OCC\": 16438, \"RENTER_OCC\": 2359 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.341956172919367, 41.691244882030865 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Miamisburg\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"49434\", \"CAPITAL\": \"N\", \"AREALAND\": 11.190000, \"AREAWATER\": 0.189000, \"POP_CL\": 6, \"POP2000\": 19489, \"WHITE\": 18699, \"BLACK\": 310, \"AMERI_ES\": 26, \"ASIAN\": 143, \"HAWN_PI\": 7, \"OTHER\": 53, \"MULT_RACE\": 251, \"HISPANIC\": 165, \"MALES\": 9349, \"FEMALES\": 10140, \"AGE_UNDER5\": 1378, \"AGE_5_17\": 3660, \"AGE_18_21\": 835, \"AGE_22_29\": 1711, \"AGE_30_39\": 2978, \"AGE_40_49\": 3033, \"AGE_50_64\": 2913, \"AGE_65_UP\": 2981, \"MED_AGE\": 37.500000, \"MED_AGE_M\": 35.900000, \"MED_AGE_F\": 38.800000, \"HOUSEHOLDS\": 7449, \"AVE_HH_SZ\": 2.530000, \"HSEHLD_1_M\": 725, \"HSEHLD_1_F\": 1013, \"MARHH_CHD\": 1980, \"MARHH_NO_C\": 2357, \"MHH_CHILD\": 150, \"FHH_CHILD\": 475, \"FAMILIES\": 5390, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 7905, \"VACANT\": 456, \"OWNER_OCC\": 5342, \"RENTER_OCC\": 2107 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.27528005639283, 39.638524974185103 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Middleburg Heights\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"49644\", \"CAPITAL\": \"N\", \"AREALAND\": 8.074000, \"AREAWATER\": 0.016000, \"POP_CL\": 6, \"POP2000\": 15542, \"WHITE\": 14708, \"BLACK\": 206, \"AMERI_ES\": 24, \"ASIAN\": 351, \"HAWN_PI\": 11, \"OTHER\": 43, \"MULT_RACE\": 199, \"HISPANIC\": 197, \"MALES\": 7367, \"FEMALES\": 8175, \"AGE_UNDER5\": 653, \"AGE_5_17\": 2094, \"AGE_18_21\": 568, \"AGE_22_29\": 1564, \"AGE_30_39\": 2075, \"AGE_40_49\": 2297, \"AGE_50_64\": 2924, \"AGE_65_UP\": 3367, \"MED_AGE\": 43.300000, \"MED_AGE_M\": 41.600000, \"MED_AGE_F\": 45.000000, \"HOUSEHOLDS\": 6705, \"AVE_HH_SZ\": 2.250000, \"HSEHLD_1_M\": 845, \"HSEHLD_1_F\": 1288, \"MARHH_CHD\": 1141, \"MARHH_NO_C\": 2343, \"MHH_CHILD\": 78, \"FHH_CHILD\": 219, \"FAMILIES\": 4255, \"AVE_FAM_SZ\": 2.840000, \"HSE_UNITS\": 7094, \"VACANT\": 389, \"OWNER_OCC\": 4905, \"RENTER_OCC\": 1800 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.808893773328663, 41.366724901317411 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Middletown\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"49840\", \"CAPITAL\": \"N\", \"AREALAND\": 25.657000, \"AREAWATER\": 0.144000, \"POP_CL\": 7, \"POP2000\": 51605, \"WHITE\": 44886, \"BLACK\": 5467, \"AMERI_ES\": 128, \"ASIAN\": 190, \"HAWN_PI\": 18, \"OTHER\": 185, \"MULT_RACE\": 731, \"HISPANIC\": 460, \"MALES\": 24647, \"FEMALES\": 26958, \"AGE_UNDER5\": 3707, \"AGE_5_17\": 9205, \"AGE_18_21\": 2688, \"AGE_22_29\": 5800, \"AGE_30_39\": 7379, \"AGE_40_49\": 7629, \"AGE_50_64\": 7495, \"AGE_65_UP\": 7702, \"MED_AGE\": 36.200000, \"MED_AGE_M\": 34.500000, \"MED_AGE_F\": 37.800000, \"HOUSEHOLDS\": 21469, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 2729, \"HSEHLD_1_F\": 3631, \"MARHH_CHD\": 3990, \"MARHH_NO_C\": 5861, \"MHH_CHILD\": 520, \"FHH_CHILD\": 1919, \"FAMILIES\": 13930, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 23144, \"VACANT\": 1675, \"OWNER_OCC\": 12895, \"RENTER_OCC\": 8574 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.375885049246548, 39.506006975975026 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Montgomery\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"51716\", \"CAPITAL\": \"N\", \"AREALAND\": 5.325000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10163, \"WHITE\": 9553, \"BLACK\": 160, \"AMERI_ES\": 5, \"ASIAN\": 331, \"HAWN_PI\": 0, \"OTHER\": 10, \"MULT_RACE\": 104, \"HISPANIC\": 78, \"MALES\": 4908, \"FEMALES\": 5255, \"AGE_UNDER5\": 590, \"AGE_5_17\": 2269, \"AGE_18_21\": 287, \"AGE_22_29\": 342, \"AGE_30_39\": 1130, \"AGE_40_49\": 1859, \"AGE_50_64\": 2108, \"AGE_65_UP\": 1578, \"MED_AGE\": 42.600000, \"MED_AGE_M\": 41.600000, \"MED_AGE_F\": 43.500000, \"HOUSEHOLDS\": 3616, \"AVE_HH_SZ\": 2.750000, \"HSEHLD_1_M\": 182, \"HSEHLD_1_F\": 421, \"MARHH_CHD\": 1283, \"MARHH_NO_C\": 1420, \"MHH_CHILD\": 36, \"FHH_CHILD\": 93, \"FAMILIES\": 2942, \"AVE_FAM_SZ\": 3.110000, \"HSE_UNITS\": 3716, \"VACANT\": 100, \"OWNER_OCC\": 3290, \"RENTER_OCC\": 326 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.347556049294937, 39.247358975932627 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mount Vernon\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"53102\", \"CAPITAL\": \"N\", \"AREALAND\": 8.404000, \"AREAWATER\": 0.040000, \"POP_CL\": 6, \"POP2000\": 14375, \"WHITE\": 13895, \"BLACK\": 166, \"AMERI_ES\": 45, \"ASIAN\": 78, \"HAWN_PI\": 0, \"OTHER\": 41, \"MULT_RACE\": 150, \"HISPANIC\": 125, \"MALES\": 6655, \"FEMALES\": 7720, \"AGE_UNDER5\": 988, \"AGE_5_17\": 2425, \"AGE_18_21\": 811, \"AGE_22_29\": 1652, \"AGE_30_39\": 1873, \"AGE_40_49\": 1951, \"AGE_50_64\": 2048, \"AGE_65_UP\": 2627, \"MED_AGE\": 37.100000, \"MED_AGE_M\": 33.900000, \"MED_AGE_F\": 40.000000, \"HOUSEHOLDS\": 6187, \"AVE_HH_SZ\": 2.250000, \"HSEHLD_1_M\": 704, \"HSEHLD_1_F\": 1413, \"MARHH_CHD\": 1079, \"MARHH_NO_C\": 1630, \"MHH_CHILD\": 144, \"FHH_CHILD\": 509, \"FAMILIES\": 3729, \"AVE_FAM_SZ\": 2.880000, \"HSE_UNITS\": 6713, \"VACANT\": 526, \"OWNER_OCC\": 3541, \"RENTER_OCC\": 2646 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.481151391584689, 40.392737929281857 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Newark\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"54040\", \"CAPITAL\": \"N\", \"AREALAND\": 19.554000, \"AREAWATER\": 0.245000, \"POP_CL\": 6, \"POP2000\": 46279, \"WHITE\": 43560, \"BLACK\": 1435, \"AMERI_ES\": 140, \"ASIAN\": 278, \"HAWN_PI\": 14, \"OTHER\": 155, \"MULT_RACE\": 697, \"HISPANIC\": 390, \"MALES\": 21883, \"FEMALES\": 24396, \"AGE_UNDER5\": 3481, \"AGE_5_17\": 8255, \"AGE_18_21\": 2553, \"AGE_22_29\": 5080, \"AGE_30_39\": 6655, \"AGE_40_49\": 6690, \"AGE_50_64\": 6676, \"AGE_65_UP\": 6889, \"MED_AGE\": 35.900000, \"MED_AGE_M\": 34.200000, \"MED_AGE_F\": 37.500000, \"HOUSEHOLDS\": 19312, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 2373, \"HSEHLD_1_F\": 3704, \"MARHH_CHD\": 3778, \"MARHH_NO_C\": 5009, \"MHH_CHILD\": 449, \"FHH_CHILD\": 1728, \"FAMILIES\": 12103, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 20625, \"VACANT\": 1313, \"OWNER_OCC\": 11241, \"RENTER_OCC\": 8071 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.41677940345258, 40.063013928752042 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"New Philadelphia\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"55216\", \"CAPITAL\": \"N\", \"AREALAND\": 7.795000, \"AREAWATER\": 0.140000, \"POP_CL\": 6, \"POP2000\": 17056, \"WHITE\": 16525, \"BLACK\": 165, \"AMERI_ES\": 30, \"ASIAN\": 84, \"HAWN_PI\": 10, \"OTHER\": 83, \"MULT_RACE\": 159, \"HISPANIC\": 227, \"MALES\": 8111, \"FEMALES\": 8945, \"AGE_UNDER5\": 1106, \"AGE_5_17\": 2820, \"AGE_18_21\": 924, \"AGE_22_29\": 1824, \"AGE_30_39\": 2312, \"AGE_40_49\": 2578, \"AGE_50_64\": 2800, \"AGE_65_UP\": 2692, \"MED_AGE\": 38.100000, \"MED_AGE_M\": 35.800000, \"MED_AGE_F\": 40.200000, \"HOUSEHOLDS\": 7338, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 916, \"HSEHLD_1_F\": 1409, \"MARHH_CHD\": 1423, \"MARHH_NO_C\": 2164, \"MHH_CHILD\": 138, \"FHH_CHILD\": 493, \"FAMILIES\": 4660, \"AVE_FAM_SZ\": 2.880000, \"HSE_UNITS\": 7796, \"VACANT\": 458, \"OWNER_OCC\": 4828, \"RENTER_OCC\": 2510 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.447324978755432, 40.489410894339073 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Niles\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"55916\", \"CAPITAL\": \"N\", \"AREALAND\": 8.552000, \"AREAWATER\": 0.018000, \"POP_CL\": 6, \"POP2000\": 20932, \"WHITE\": 20090, \"BLACK\": 475, \"AMERI_ES\": 39, \"ASIAN\": 69, \"HAWN_PI\": 2, \"OTHER\": 47, \"MULT_RACE\": 210, \"HISPANIC\": 174, \"MALES\": 9882, \"FEMALES\": 11050, \"AGE_UNDER5\": 1147, \"AGE_5_17\": 3512, \"AGE_18_21\": 930, \"AGE_22_29\": 2155, \"AGE_30_39\": 2900, \"AGE_40_49\": 3110, \"AGE_50_64\": 3427, \"AGE_65_UP\": 3751, \"MED_AGE\": 39.500000, \"MED_AGE_M\": 37.000000, \"MED_AGE_F\": 41.600000, \"HOUSEHOLDS\": 8859, \"AVE_HH_SZ\": 2.310000, \"HSEHLD_1_M\": 1185, \"HSEHLD_1_F\": 1729, \"MARHH_CHD\": 1554, \"MARHH_NO_C\": 2439, \"MHH_CHILD\": 170, \"FHH_CHILD\": 643, \"FAMILIES\": 5522, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 9516, \"VACANT\": 657, \"OWNER_OCC\": 5620, \"RENTER_OCC\": 3239 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.757224803011553, 41.185323867066479 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Northbrook\", \"CLASS\": \"CDP\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"56280\", \"CAPITAL\": \"N\", \"AREALAND\": 1.939000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11076, \"WHITE\": 9099, \"BLACK\": 1568, \"AMERI_ES\": 39, \"ASIAN\": 107, \"HAWN_PI\": 10, \"OTHER\": 63, \"MULT_RACE\": 190, \"HISPANIC\": 173, \"MALES\": 5241, \"FEMALES\": 5835, \"AGE_UNDER5\": 796, \"AGE_5_17\": 2381, \"AGE_18_21\": 528, \"AGE_22_29\": 1068, \"AGE_30_39\": 1833, \"AGE_40_49\": 1543, \"AGE_50_64\": 1629, \"AGE_65_UP\": 1298, \"MED_AGE\": 34.300000, \"MED_AGE_M\": 32.700000, \"MED_AGE_F\": 35.700000, \"HOUSEHOLDS\": 4179, \"AVE_HH_SZ\": 2.650000, \"HSEHLD_1_M\": 346, \"HSEHLD_1_F\": 648, \"MARHH_CHD\": 963, \"MARHH_NO_C\": 1170, \"MHH_CHILD\": 118, \"FHH_CHILD\": 368, \"FAMILIES\": 2998, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 4290, \"VACANT\": 111, \"OWNER_OCC\": 3285, \"RENTER_OCC\": 894 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.579306037151184, 39.245157979286027 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"North Canton\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"56294\", \"CAPITAL\": \"N\", \"AREALAND\": 6.069000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 16369, \"WHITE\": 15862, \"BLACK\": 183, \"AMERI_ES\": 11, \"ASIAN\": 170, \"HAWN_PI\": 0, \"OTHER\": 30, \"MULT_RACE\": 113, \"HISPANIC\": 134, \"MALES\": 7638, \"FEMALES\": 8731, \"AGE_UNDER5\": 805, \"AGE_5_17\": 2353, \"AGE_18_21\": 961, \"AGE_22_29\": 1580, \"AGE_30_39\": 1968, \"AGE_40_49\": 2312, \"AGE_50_64\": 2694, \"AGE_65_UP\": 3696, \"MED_AGE\": 42.300000, \"MED_AGE_M\": 39.400000, \"MED_AGE_F\": 44.600000, \"HOUSEHOLDS\": 7114, \"AVE_HH_SZ\": 2.180000, \"HSEHLD_1_M\": 858, \"HSEHLD_1_F\": 1547, \"MARHH_CHD\": 1301, \"MARHH_NO_C\": 2380, \"MHH_CHILD\": 73, \"FHH_CHILD\": 298, \"FAMILIES\": 4381, \"AVE_FAM_SZ\": 2.800000, \"HSE_UNITS\": 7506, \"VACANT\": 392, \"OWNER_OCC\": 4855, \"RENTER_OCC\": 2259 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.401054049020487, 40.875006890021929 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"North College Hill\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"56322\", \"CAPITAL\": \"N\", \"AREALAND\": 1.836000, \"AREAWATER\": 0.001000, \"POP_CL\": 6, \"POP2000\": 10082, \"WHITE\": 7682, \"BLACK\": 2187, \"AMERI_ES\": 23, \"ASIAN\": 26, \"HAWN_PI\": 1, \"OTHER\": 47, \"MULT_RACE\": 116, \"HISPANIC\": 59, \"MALES\": 4640, \"FEMALES\": 5442, \"AGE_UNDER5\": 655, \"AGE_5_17\": 1913, \"AGE_18_21\": 406, \"AGE_22_29\": 1075, \"AGE_30_39\": 1663, \"AGE_40_49\": 1447, \"AGE_50_64\": 1104, \"AGE_65_UP\": 1819, \"MED_AGE\": 36.000000, \"MED_AGE_M\": 33.500000, \"MED_AGE_F\": 38.200000, \"HOUSEHOLDS\": 4191, \"AVE_HH_SZ\": 2.330000, \"HSEHLD_1_M\": 537, \"HSEHLD_1_F\": 903, \"MARHH_CHD\": 804, \"MARHH_NO_C\": 966, \"MHH_CHILD\": 75, \"FHH_CHILD\": 387, \"FAMILIES\": 2537, \"AVE_FAM_SZ\": 3.030000, \"HSE_UNITS\": 4488, \"VACANT\": 297, \"OWNER_OCC\": 2882, \"RENTER_OCC\": 1309 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.552637038255426, 39.21710497895684 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"North Olmsted\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"56882\", \"CAPITAL\": \"N\", \"AREALAND\": 11.631000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 34113, \"WHITE\": 32055, \"BLACK\": 346, \"AMERI_ES\": 43, \"ASIAN\": 936, \"HAWN_PI\": 4, \"OTHER\": 155, \"MULT_RACE\": 574, \"HISPANIC\": 575, \"MALES\": 16463, \"FEMALES\": 17650, \"AGE_UNDER5\": 1865, \"AGE_5_17\": 6209, \"AGE_18_21\": 1443, \"AGE_22_29\": 2818, \"AGE_30_39\": 4775, \"AGE_40_49\": 5672, \"AGE_50_64\": 6225, \"AGE_65_UP\": 5106, \"MED_AGE\": 39.900000, \"MED_AGE_M\": 38.400000, \"MED_AGE_F\": 41.300000, \"HOUSEHOLDS\": 13517, \"AVE_HH_SZ\": 2.500000, \"HSEHLD_1_M\": 1431, \"HSEHLD_1_F\": 2155, \"MARHH_CHD\": 3285, \"MARHH_NO_C\": 4478, \"MHH_CHILD\": 177, \"FHH_CHILD\": 534, \"FAMILIES\": 9361, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 14059, \"VACANT\": 542, \"OWNER_OCC\": 10773, \"RENTER_OCC\": 2744 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.914366708832048, 41.415096904879029 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"North Ridgeville\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"56966\", \"CAPITAL\": \"N\", \"AREALAND\": 23.370000, \"AREAWATER\": 0.141000, \"POP_CL\": 6, \"POP2000\": 22338, \"WHITE\": 21526, \"BLACK\": 192, \"AMERI_ES\": 48, \"ASIAN\": 206, \"HAWN_PI\": 1, \"OTHER\": 109, \"MULT_RACE\": 256, \"HISPANIC\": 445, \"MALES\": 10965, \"FEMALES\": 11373, \"AGE_UNDER5\": 1452, \"AGE_5_17\": 4002, \"AGE_18_21\": 972, \"AGE_22_29\": 1882, \"AGE_30_39\": 3599, \"AGE_40_49\": 3752, \"AGE_50_64\": 4288, \"AGE_65_UP\": 2391, \"MED_AGE\": 38.100000, \"MED_AGE_M\": 37.300000, \"MED_AGE_F\": 38.900000, \"HOUSEHOLDS\": 8356, \"AVE_HH_SZ\": 2.650000, \"HSEHLD_1_M\": 743, \"HSEHLD_1_F\": 875, \"MARHH_CHD\": 2236, \"MARHH_NO_C\": 3205, \"MHH_CHILD\": 151, \"FHH_CHILD\": 360, \"FAMILIES\": 6432, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 8587, \"VACANT\": 231, \"OWNER_OCC\": 7417, \"RENTER_OCC\": 939 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.004605653958876, 41.389545908290316 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"North Royalton\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"57008\", \"CAPITAL\": \"N\", \"AREALAND\": 21.286000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 28648, \"WHITE\": 27553, \"BLACK\": 203, \"AMERI_ES\": 33, \"ASIAN\": 570, \"HAWN_PI\": 6, \"OTHER\": 45, \"MULT_RACE\": 238, \"HISPANIC\": 273, \"MALES\": 13975, \"FEMALES\": 14673, \"AGE_UNDER5\": 1552, \"AGE_5_17\": 5402, \"AGE_18_21\": 1129, \"AGE_22_29\": 2800, \"AGE_30_39\": 4157, \"AGE_40_49\": 5519, \"AGE_50_64\": 4654, \"AGE_65_UP\": 3435, \"MED_AGE\": 38.600000, \"MED_AGE_M\": 37.800000, \"MED_AGE_F\": 39.400000, \"HOUSEHOLDS\": 11250, \"AVE_HH_SZ\": 2.510000, \"HSEHLD_1_M\": 1303, \"HSEHLD_1_F\": 1703, \"MARHH_CHD\": 3003, \"MARHH_NO_C\": 3562, \"MHH_CHILD\": 129, \"FHH_CHILD\": 415, \"FAMILIES\": 7696, \"AVE_FAM_SZ\": 3.110000, \"HSE_UNITS\": 11754, \"VACANT\": 504, \"OWNER_OCC\": 8430, \"RENTER_OCC\": 2820 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.746393812936503, 41.322275899309645 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Norton\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"57260\", \"CAPITAL\": \"N\", \"AREALAND\": 20.116000, \"AREAWATER\": 0.330000, \"POP_CL\": 6, \"POP2000\": 11523, \"WHITE\": 11218, \"BLACK\": 154, \"AMERI_ES\": 20, \"ASIAN\": 32, \"HAWN_PI\": 4, \"OTHER\": 16, \"MULT_RACE\": 79, \"HISPANIC\": 47, \"MALES\": 5662, \"FEMALES\": 5861, \"AGE_UNDER5\": 593, \"AGE_5_17\": 2234, \"AGE_18_21\": 510, \"AGE_22_29\": 764, \"AGE_30_39\": 1604, \"AGE_40_49\": 2003, \"AGE_50_64\": 2051, \"AGE_65_UP\": 1764, \"MED_AGE\": 40.300000, \"MED_AGE_M\": 39.700000, \"MED_AGE_F\": 40.800000, \"HOUSEHOLDS\": 4343, \"AVE_HH_SZ\": 2.640000, \"HSEHLD_1_M\": 385, \"HSEHLD_1_F\": 455, \"MARHH_CHD\": 1121, \"MARHH_NO_C\": 1739, \"MHH_CHILD\": 59, \"FHH_CHILD\": 168, \"FAMILIES\": 3363, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 4523, \"VACANT\": 180, \"OWNER_OCC\": 3874, \"RENTER_OCC\": 469 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.643786866325598, 41.025282897489738 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Norwalk\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"57302\", \"CAPITAL\": \"N\", \"AREALAND\": 8.326000, \"AREAWATER\": 0.248000, \"POP_CL\": 6, \"POP2000\": 16238, \"WHITE\": 15350, \"BLACK\": 316, \"AMERI_ES\": 35, \"ASIAN\": 52, \"HAWN_PI\": 0, \"OTHER\": 302, \"MULT_RACE\": 183, \"HISPANIC\": 620, \"MALES\": 7758, \"FEMALES\": 8480, \"AGE_UNDER5\": 1310, \"AGE_5_17\": 3228, \"AGE_18_21\": 820, \"AGE_22_29\": 1863, \"AGE_30_39\": 2275, \"AGE_40_49\": 2295, \"AGE_50_64\": 2139, \"AGE_65_UP\": 2308, \"MED_AGE\": 34.200000, \"MED_AGE_M\": 31.700000, \"MED_AGE_F\": 36.300000, \"HOUSEHOLDS\": 6377, \"AVE_HH_SZ\": 2.490000, \"HSEHLD_1_M\": 682, \"HSEHLD_1_F\": 1133, \"MARHH_CHD\": 1521, \"MARHH_NO_C\": 1664, \"MHH_CHILD\": 144, \"FHH_CHILD\": 548, \"FAMILIES\": 4234, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 6687, \"VACANT\": 310, \"OWNER_OCC\": 3945, \"RENTER_OCC\": 2432 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.611371373763362, 41.243023929834976 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Norwood\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"57386\", \"CAPITAL\": \"N\", \"AREALAND\": 3.116000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 21675, \"WHITE\": 20429, \"BLACK\": 509, \"AMERI_ES\": 80, \"ASIAN\": 167, \"HAWN_PI\": 4, \"OTHER\": 190, \"MULT_RACE\": 296, \"HISPANIC\": 401, \"MALES\": 10554, \"FEMALES\": 11121, \"AGE_UNDER5\": 1304, \"AGE_5_17\": 3768, \"AGE_18_21\": 1480, \"AGE_22_29\": 2875, \"AGE_30_39\": 3508, \"AGE_40_49\": 3146, \"AGE_50_64\": 2861, \"AGE_65_UP\": 2733, \"MED_AGE\": 34.100000, \"MED_AGE_M\": 32.500000, \"MED_AGE_F\": 35.800000, \"HOUSEHOLDS\": 9270, \"AVE_HH_SZ\": 2.310000, \"HSEHLD_1_M\": 1580, \"HSEHLD_1_F\": 1788, \"MARHH_CHD\": 1532, \"MARHH_NO_C\": 1876, \"MHH_CHILD\": 265, \"FHH_CHILD\": 680, \"FAMILIES\": 5158, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 10044, \"VACANT\": 774, \"OWNER_OCC\": 4771, \"RENTER_OCC\": 4499 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.455074042800732, 39.160059977657895 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Oregon\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"58730\", \"CAPITAL\": \"N\", \"AREALAND\": 29.379000, \"AREAWATER\": 8.712000, \"POP_CL\": 6, \"POP2000\": 19355, \"WHITE\": 18369, \"BLACK\": 193, \"AMERI_ES\": 28, \"ASIAN\": 136, \"HAWN_PI\": 2, \"OTHER\": 333, \"MULT_RACE\": 294, \"HISPANIC\": 922, \"MALES\": 9268, \"FEMALES\": 10087, \"AGE_UNDER5\": 1101, \"AGE_5_17\": 3564, \"AGE_18_21\": 915, \"AGE_22_29\": 1633, \"AGE_30_39\": 2619, \"AGE_40_49\": 3011, \"AGE_50_64\": 3325, \"AGE_65_UP\": 3187, \"MED_AGE\": 39.600000, \"MED_AGE_M\": 38.200000, \"MED_AGE_F\": 40.900000, \"HOUSEHOLDS\": 7708, \"AVE_HH_SZ\": 2.470000, \"HSEHLD_1_M\": 789, \"HSEHLD_1_F\": 1291, \"MARHH_CHD\": 1752, \"MARHH_NO_C\": 2519, \"MHH_CHILD\": 153, \"FHH_CHILD\": 447, \"FAMILIES\": 5317, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 8025, \"VACANT\": 317, \"OWNER_OCC\": 5707, \"RENTER_OCC\": 2001 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.461514169212052, 41.649093953256639 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Oxford\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"59234\", \"CAPITAL\": \"N\", \"AREALAND\": 5.876000, \"AREAWATER\": 0.003000, \"POP_CL\": 6, \"POP2000\": 21943, \"WHITE\": 20013, \"BLACK\": 947, \"AMERI_ES\": 38, \"ASIAN\": 530, \"HAWN_PI\": 5, \"OTHER\": 105, \"MULT_RACE\": 305, \"HISPANIC\": 317, \"MALES\": 10261, \"FEMALES\": 11682, \"AGE_UNDER5\": 461, \"AGE_5_17\": 1351, \"AGE_18_21\": 11529, \"AGE_22_29\": 4076, \"AGE_30_39\": 1033, \"AGE_40_49\": 1184, \"AGE_50_64\": 1259, \"AGE_65_UP\": 1050, \"MED_AGE\": 21.300000, \"MED_AGE_M\": 21.400000, \"MED_AGE_F\": 21.100000, \"HOUSEHOLDS\": 5870, \"AVE_HH_SZ\": 2.430000, \"HSEHLD_1_M\": 876, \"HSEHLD_1_F\": 1001, \"MARHH_CHD\": 661, \"MARHH_NO_C\": 913, \"MHH_CHILD\": 58, \"FHH_CHILD\": 249, \"FAMILIES\": 2068, \"AVE_FAM_SZ\": 2.850000, \"HSE_UNITS\": 6134, \"VACANT\": 264, \"OWNER_OCC\": 1933, \"RENTER_OCC\": 3937 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.746552031207131, 39.507451981170384 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Painesville\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"59416\", \"CAPITAL\": \"N\", \"AREALAND\": 5.976000, \"AREAWATER\": 0.710000, \"POP_CL\": 6, \"POP2000\": 17503, \"WHITE\": 13475, \"BLACK\": 2264, \"AMERI_ES\": 51, \"ASIAN\": 74, \"HAWN_PI\": 1, \"OTHER\": 1138, \"MULT_RACE\": 500, \"HISPANIC\": 2256, \"MALES\": 8616, \"FEMALES\": 8887, \"AGE_UNDER5\": 1640, \"AGE_5_17\": 3217, \"AGE_18_21\": 1221, \"AGE_22_29\": 2505, \"AGE_30_39\": 2796, \"AGE_40_49\": 2306, \"AGE_50_64\": 2024, \"AGE_65_UP\": 1794, \"MED_AGE\": 30.500000, \"MED_AGE_M\": 29.600000, \"MED_AGE_F\": 31.400000, \"HOUSEHOLDS\": 6525, \"AVE_HH_SZ\": 2.550000, \"HSEHLD_1_M\": 903, \"HSEHLD_1_F\": 1133, \"MARHH_CHD\": 1321, \"MARHH_NO_C\": 1312, \"MHH_CHILD\": 176, \"FHH_CHILD\": 745, \"FAMILIES\": 4031, \"AVE_FAM_SZ\": 3.220000, \"HSE_UNITS\": 6933, \"VACANT\": 408, \"OWNER_OCC\": 3402, \"RENTER_OCC\": 3123 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.249598267752418, 41.722792878451578 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Parma\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"61000\", \"CAPITAL\": \"N\", \"AREALAND\": 19.960000, \"AREAWATER\": 0.017000, \"POP_CL\": 7, \"POP2000\": 85655, \"WHITE\": 81948, \"BLACK\": 905, \"AMERI_ES\": 118, \"ASIAN\": 1349, \"HAWN_PI\": 17, \"OTHER\": 384, \"MULT_RACE\": 934, \"HISPANIC\": 1323, \"MALES\": 40846, \"FEMALES\": 44809, \"AGE_UNDER5\": 4957, \"AGE_5_17\": 14128, \"AGE_18_21\": 3430, \"AGE_22_29\": 8134, \"AGE_30_39\": 13073, \"AGE_40_49\": 12536, \"AGE_50_64\": 12604, \"AGE_65_UP\": 16793, \"MED_AGE\": 39.400000, \"MED_AGE_M\": 37.700000, \"MED_AGE_F\": 41.100000, \"HOUSEHOLDS\": 35126, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 4109, \"HSEHLD_1_F\": 6160, \"MARHH_CHD\": 7588, \"MARHH_NO_C\": 10910, \"MHH_CHILD\": 486, \"FHH_CHILD\": 1625, \"FAMILIES\": 23333, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 36414, \"VACANT\": 1288, \"OWNER_OCC\": 27212, \"RENTER_OCC\": 7914 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.728502829965421, 41.391851898228737 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Parma Heights\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"61028\", \"CAPITAL\": \"N\", \"AREALAND\": 4.199000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 21659, \"WHITE\": 20523, \"BLACK\": 253, \"AMERI_ES\": 29, \"ASIAN\": 505, \"HAWN_PI\": 3, \"OTHER\": 98, \"MULT_RACE\": 248, \"HISPANIC\": 351, \"MALES\": 10015, \"FEMALES\": 11644, \"AGE_UNDER5\": 1181, \"AGE_5_17\": 2957, \"AGE_18_21\": 847, \"AGE_22_29\": 2054, \"AGE_30_39\": 3011, \"AGE_40_49\": 3131, \"AGE_50_64\": 3046, \"AGE_65_UP\": 5432, \"MED_AGE\": 42.400000, \"MED_AGE_M\": 39.300000, \"MED_AGE_F\": 45.500000, \"HOUSEHOLDS\": 9823, \"AVE_HH_SZ\": 2.180000, \"HSEHLD_1_M\": 1187, \"HSEHLD_1_F\": 2401, \"MARHH_CHD\": 1664, \"MARHH_NO_C\": 2859, \"MHH_CHILD\": 149, \"FHH_CHILD\": 405, \"FAMILIES\": 5823, \"AVE_FAM_SZ\": 2.860000, \"HSE_UNITS\": 10263, \"VACANT\": 440, \"OWNER_OCC\": 5884, \"RENTER_OCC\": 3939 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.763459805225224, 41.386050899542575 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pataskala\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"61112\", \"CAPITAL\": \"N\", \"AREALAND\": 28.507000, \"AREAWATER\": 0.022000, \"POP_CL\": 6, \"POP2000\": 10249, \"WHITE\": 9693, \"BLACK\": 303, \"AMERI_ES\": 35, \"ASIAN\": 55, \"HAWN_PI\": 1, \"OTHER\": 57, \"MULT_RACE\": 105, \"HISPANIC\": 104, \"MALES\": 5013, \"FEMALES\": 5236, \"AGE_UNDER5\": 890, \"AGE_5_17\": 1963, \"AGE_18_21\": 399, \"AGE_22_29\": 1120, \"AGE_30_39\": 1749, \"AGE_40_49\": 1559, \"AGE_50_64\": 1594, \"AGE_65_UP\": 975, \"MED_AGE\": 34.300000, \"MED_AGE_M\": 33.700000, \"MED_AGE_F\": 34.800000, \"HOUSEHOLDS\": 3922, \"AVE_HH_SZ\": 2.590000, \"HSEHLD_1_M\": 363, \"HSEHLD_1_F\": 457, \"MARHH_CHD\": 1083, \"MARHH_NO_C\": 1268, \"MHH_CHILD\": 102, \"FHH_CHILD\": 310, \"FAMILIES\": 2914, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 4132, \"VACANT\": 210, \"OWNER_OCC\": 2929, \"RENTER_OCC\": 993 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.697411308331766, 39.997889937466873 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Perrysburg\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"62148\", \"CAPITAL\": \"N\", \"AREALAND\": 8.922000, \"AREAWATER\": 0.212000, \"POP_CL\": 6, \"POP2000\": 16945, \"WHITE\": 16156, \"BLACK\": 174, \"AMERI_ES\": 17, \"ASIAN\": 300, \"HAWN_PI\": 4, \"OTHER\": 152, \"MULT_RACE\": 142, \"HISPANIC\": 348, \"MALES\": 8153, \"FEMALES\": 8792, \"AGE_UNDER5\": 1156, \"AGE_5_17\": 3752, \"AGE_18_21\": 574, \"AGE_22_29\": 1166, \"AGE_30_39\": 2499, \"AGE_40_49\": 3040, \"AGE_50_64\": 2547, \"AGE_65_UP\": 2211, \"MED_AGE\": 37.700000, \"MED_AGE_M\": 36.000000, \"MED_AGE_F\": 39.300000, \"HOUSEHOLDS\": 6592, \"AVE_HH_SZ\": 2.550000, \"HSEHLD_1_M\": 607, \"HSEHLD_1_F\": 1225, \"MARHH_CHD\": 2172, \"MARHH_NO_C\": 1853, \"MHH_CHILD\": 59, \"FHH_CHILD\": 276, \"FAMILIES\": 4559, \"AVE_FAM_SZ\": 3.180000, \"HSE_UNITS\": 6964, \"VACANT\": 372, \"OWNER_OCC\": 4927, \"RENTER_OCC\": 1665 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.629913140931848, 41.550217957659846 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Piqua\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"62848\", \"CAPITAL\": \"N\", \"AREALAND\": 10.694000, \"AREAWATER\": 0.241000, \"POP_CL\": 6, \"POP2000\": 20738, \"WHITE\": 19537, \"BLACK\": 700, \"AMERI_ES\": 69, \"ASIAN\": 92, \"HAWN_PI\": 0, \"OTHER\": 56, \"MULT_RACE\": 284, \"HISPANIC\": 153, \"MALES\": 9905, \"FEMALES\": 10833, \"AGE_UNDER5\": 1508, \"AGE_5_17\": 3984, \"AGE_18_21\": 1045, \"AGE_22_29\": 2296, \"AGE_30_39\": 3008, \"AGE_40_49\": 2869, \"AGE_50_64\": 3059, \"AGE_65_UP\": 2969, \"MED_AGE\": 35.300000, \"MED_AGE_M\": 33.200000, \"MED_AGE_F\": 37.200000, \"HOUSEHOLDS\": 8263, \"AVE_HH_SZ\": 2.470000, \"HSEHLD_1_M\": 862, \"HSEHLD_1_F\": 1392, \"MARHH_CHD\": 1774, \"MARHH_NO_C\": 2387, \"MHH_CHILD\": 219, \"FHH_CHILD\": 709, \"FAMILIES\": 5587, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 8886, \"VACANT\": 623, \"OWNER_OCC\": 5229, \"RENTER_OCC\": 3034 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.247968061845384, 40.147473972916949 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Portsmouth\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"64304\", \"CAPITAL\": \"N\", \"AREALAND\": 10.770000, \"AREAWATER\": 0.288000, \"POP_CL\": 6, \"POP2000\": 20909, \"WHITE\": 19131, \"BLACK\": 1046, \"AMERI_ES\": 132, \"ASIAN\": 127, \"HAWN_PI\": 4, \"OTHER\": 67, \"MULT_RACE\": 402, \"HISPANIC\": 195, \"MALES\": 9532, \"FEMALES\": 11377, \"AGE_UNDER5\": 1341, \"AGE_5_17\": 3262, \"AGE_18_21\": 1457, \"AGE_22_29\": 2326, \"AGE_30_39\": 2568, \"AGE_40_49\": 2752, \"AGE_50_64\": 3112, \"AGE_65_UP\": 4091, \"MED_AGE\": 38.200000, \"MED_AGE_M\": 34.900000, \"MED_AGE_F\": 41.000000, \"HOUSEHOLDS\": 9120, \"AVE_HH_SZ\": 2.190000, \"HSEHLD_1_M\": 1172, \"HSEHLD_1_F\": 2229, \"MARHH_CHD\": 1354, \"MARHH_NO_C\": 2106, \"MHH_CHILD\": 178, \"FHH_CHILD\": 827, \"FAMILIES\": 5219, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 10248, \"VACANT\": 1128, \"OWNER_OCC\": 4853, \"RENTER_OCC\": 4267 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.965436209700059, 38.743185949336166 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ravenna\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"65592\", \"CAPITAL\": \"N\", \"AREALAND\": 5.352000, \"AREAWATER\": 0.012000, \"POP_CL\": 6, \"POP2000\": 11771, \"WHITE\": 10950, \"BLACK\": 520, \"AMERI_ES\": 30, \"ASIAN\": 46, \"HAWN_PI\": 2, \"OTHER\": 27, \"MULT_RACE\": 196, \"HISPANIC\": 107, \"MALES\": 5574, \"FEMALES\": 6197, \"AGE_UNDER5\": 821, \"AGE_5_17\": 1974, \"AGE_18_21\": 590, \"AGE_22_29\": 1394, \"AGE_30_39\": 1738, \"AGE_40_49\": 1707, \"AGE_50_64\": 1644, \"AGE_65_UP\": 1903, \"MED_AGE\": 36.400000, \"MED_AGE_M\": 34.700000, \"MED_AGE_F\": 38.300000, \"HOUSEHOLDS\": 4980, \"AVE_HH_SZ\": 2.310000, \"HSEHLD_1_M\": 677, \"HSEHLD_1_F\": 991, \"MARHH_CHD\": 899, \"MARHH_NO_C\": 1241, \"MHH_CHILD\": 118, \"FHH_CHILD\": 390, \"FAMILIES\": 2997, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 5313, \"VACANT\": 333, \"OWNER_OCC\": 2720, \"RENTER_OCC\": 2260 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.243275220962516, 41.158655882513749 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Reading\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"65732\", \"CAPITAL\": \"N\", \"AREALAND\": 2.920000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11292, \"WHITE\": 10579, \"BLACK\": 361, \"AMERI_ES\": 18, \"ASIAN\": 133, \"HAWN_PI\": 2, \"OTHER\": 58, \"MULT_RACE\": 141, \"HISPANIC\": 89, \"MALES\": 5496, \"FEMALES\": 5796, \"AGE_UNDER5\": 655, \"AGE_5_17\": 1884, \"AGE_18_21\": 609, \"AGE_22_29\": 1208, \"AGE_30_39\": 1771, \"AGE_40_49\": 1770, \"AGE_50_64\": 1583, \"AGE_65_UP\": 1812, \"MED_AGE\": 37.600000, \"MED_AGE_M\": 36.100000, \"MED_AGE_F\": 39.000000, \"HOUSEHOLDS\": 4885, \"AVE_HH_SZ\": 2.270000, \"HSEHLD_1_M\": 768, \"HSEHLD_1_F\": 909, \"MARHH_CHD\": 917, \"MARHH_NO_C\": 1265, \"MHH_CHILD\": 114, \"FHH_CHILD\": 293, \"FAMILIES\": 2919, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 5128, \"VACANT\": 243, \"OWNER_OCC\": 2894, \"RENTER_OCC\": 1991 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.43903604400667, 39.222708977335436 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Reynoldsburg\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"66390\", \"CAPITAL\": \"N\", \"AREALAND\": 10.584000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 32069, \"WHITE\": 27261, \"BLACK\": 3347, \"AMERI_ES\": 86, \"ASIAN\": 541, \"HAWN_PI\": 15, \"OTHER\": 238, \"MULT_RACE\": 581, \"HISPANIC\": 578, \"MALES\": 15278, \"FEMALES\": 16791, \"AGE_UNDER5\": 2284, \"AGE_5_17\": 6255, \"AGE_18_21\": 1465, \"AGE_22_29\": 3362, \"AGE_30_39\": 5241, \"AGE_40_49\": 5210, \"AGE_50_64\": 5002, \"AGE_65_UP\": 3250, \"MED_AGE\": 35.400000, \"MED_AGE_M\": 33.800000, \"MED_AGE_F\": 36.600000, \"HOUSEHOLDS\": 12849, \"AVE_HH_SZ\": 2.490000, \"HSEHLD_1_M\": 1319, \"HSEHLD_1_F\": 1990, \"MARHH_CHD\": 3177, \"MARHH_NO_C\": 3605, \"MHH_CHILD\": 273, \"FHH_CHILD\": 1018, \"FAMILIES\": 8807, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 13434, \"VACANT\": 585, \"OWNER_OCC\": 8366, \"RENTER_OCC\": 4483 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.801290278145331, 39.95991294059403 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Richmond Heights\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"66894\", \"CAPITAL\": \"N\", \"AREALAND\": 4.370000, \"AREAWATER\": 0.006000, \"POP_CL\": 6, \"POP2000\": 10944, \"WHITE\": 7549, \"BLACK\": 2612, \"AMERI_ES\": 6, \"ASIAN\": 519, \"HAWN_PI\": 4, \"OTHER\": 71, \"MULT_RACE\": 183, \"HISPANIC\": 173, \"MALES\": 5167, \"FEMALES\": 5777, \"AGE_UNDER5\": 579, \"AGE_5_17\": 1580, \"AGE_18_21\": 429, \"AGE_22_29\": 1197, \"AGE_30_39\": 1561, \"AGE_40_49\": 1773, \"AGE_50_64\": 1888, \"AGE_65_UP\": 1937, \"MED_AGE\": 40.700000, \"MED_AGE_M\": 38.600000, \"MED_AGE_F\": 42.400000, \"HOUSEHOLDS\": 4864, \"AVE_HH_SZ\": 2.220000, \"HSEHLD_1_M\": 717, \"HSEHLD_1_F\": 930, \"MARHH_CHD\": 814, \"MARHH_NO_C\": 1408, \"MHH_CHILD\": 51, \"FHH_CHILD\": 305, \"FAMILIES\": 2970, \"AVE_FAM_SZ\": 2.850000, \"HSE_UNITS\": 5060, \"VACANT\": 196, \"OWNER_OCC\": 3070, \"RENTER_OCC\": 1794 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.503652015943558, 41.55818288889197 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Riverside\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"67468\", \"CAPITAL\": \"N\", \"AREALAND\": 7.857000, \"AREAWATER\": 0.041000, \"POP_CL\": 6, \"POP2000\": 23545, \"WHITE\": 21532, \"BLACK\": 1003, \"AMERI_ES\": 50, \"ASIAN\": 414, \"HAWN_PI\": 11, \"OTHER\": 143, \"MULT_RACE\": 392, \"HISPANIC\": 364, \"MALES\": 11440, \"FEMALES\": 12105, \"AGE_UNDER5\": 1375, \"AGE_5_17\": 4158, \"AGE_18_21\": 1472, \"AGE_22_29\": 2470, \"AGE_30_39\": 3381, \"AGE_40_49\": 3370, \"AGE_50_64\": 3813, \"AGE_65_UP\": 3506, \"MED_AGE\": 37.000000, \"MED_AGE_M\": 35.900000, \"MED_AGE_F\": 38.400000, \"HOUSEHOLDS\": 9768, \"AVE_HH_SZ\": 2.410000, \"HSEHLD_1_M\": 1173, \"HSEHLD_1_F\": 1549, \"MARHH_CHD\": 1876, \"MARHH_NO_C\": 2940, \"MHH_CHILD\": 219, \"FHH_CHILD\": 670, \"FAMILIES\": 6432, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 10289, \"VACANT\": 521, \"OWNER_OCC\": 6464, \"RENTER_OCC\": 3304 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.123094068396256, 39.778857971386756 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Rocky River\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"68056\", \"CAPITAL\": \"N\", \"AREALAND\": 4.755000, \"AREAWATER\": 0.873000, \"POP_CL\": 6, \"POP2000\": 20735, \"WHITE\": 20077, \"BLACK\": 84, \"AMERI_ES\": 14, \"ASIAN\": 276, \"HAWN_PI\": 4, \"OTHER\": 57, \"MULT_RACE\": 223, \"HISPANIC\": 248, \"MALES\": 9340, \"FEMALES\": 11395, \"AGE_UNDER5\": 1122, \"AGE_5_17\": 3221, \"AGE_18_21\": 450, \"AGE_22_29\": 1447, \"AGE_30_39\": 2800, \"AGE_40_49\": 3080, \"AGE_50_64\": 3588, \"AGE_65_UP\": 5027, \"MED_AGE\": 44.200000, \"MED_AGE_M\": 41.700000, \"MED_AGE_F\": 46.400000, \"HOUSEHOLDS\": 9709, \"AVE_HH_SZ\": 2.110000, \"HSEHLD_1_M\": 1226, \"HSEHLD_1_F\": 2690, \"MARHH_CHD\": 1805, \"MARHH_NO_C\": 2782, \"MHH_CHILD\": 65, \"FHH_CHILD\": 314, \"FAMILIES\": 5441, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 10166, \"VACANT\": 457, \"OWNER_OCC\": 6912, \"RENTER_OCC\": 2797 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.845759755682309, 41.475296902025342 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Salem\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"69834\", \"CAPITAL\": \"N\", \"AREALAND\": 5.474000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12197, \"WHITE\": 11996, \"BLACK\": 63, \"AMERI_ES\": 11, \"ASIAN\": 42, \"HAWN_PI\": 3, \"OTHER\": 10, \"MULT_RACE\": 72, \"HISPANIC\": 66, \"MALES\": 5601, \"FEMALES\": 6596, \"AGE_UNDER5\": 732, \"AGE_5_17\": 2048, \"AGE_18_21\": 579, \"AGE_22_29\": 1193, \"AGE_30_39\": 1630, \"AGE_40_49\": 1771, \"AGE_50_64\": 1793, \"AGE_65_UP\": 2451, \"MED_AGE\": 39.500000, \"MED_AGE_M\": 36.800000, \"MED_AGE_F\": 42.200000, \"HOUSEHOLDS\": 5146, \"AVE_HH_SZ\": 2.310000, \"HSEHLD_1_M\": 580, \"HSEHLD_1_F\": 1108, \"MARHH_CHD\": 1028, \"MARHH_NO_C\": 1476, \"MHH_CHILD\": 113, \"FHH_CHILD\": 303, \"FAMILIES\": 3249, \"AVE_FAM_SZ\": 2.920000, \"HSE_UNITS\": 5505, \"VACANT\": 359, \"OWNER_OCC\": 3370, \"RENTER_OCC\": 1776 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.852832637219493, 40.900884872327133 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sandusky\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"70380\", \"CAPITAL\": \"N\", \"AREALAND\": 10.050000, \"AREAWATER\": 11.937000, \"POP_CL\": 6, \"POP2000\": 27844, \"WHITE\": 20745, \"BLACK\": 5870, \"AMERI_ES\": 80, \"ASIAN\": 73, \"HAWN_PI\": 4, \"OTHER\": 270, \"MULT_RACE\": 802, \"HISPANIC\": 859, \"MALES\": 13139, \"FEMALES\": 14705, \"AGE_UNDER5\": 1993, \"AGE_5_17\": 5190, \"AGE_18_21\": 1473, \"AGE_22_29\": 3040, \"AGE_30_39\": 3808, \"AGE_40_49\": 4076, \"AGE_50_64\": 4055, \"AGE_65_UP\": 4209, \"MED_AGE\": 36.200000, \"MED_AGE_M\": 34.800000, \"MED_AGE_F\": 37.600000, \"HOUSEHOLDS\": 11851, \"AVE_HH_SZ\": 2.310000, \"HSEHLD_1_M\": 1803, \"HSEHLD_1_F\": 2332, \"MARHH_CHD\": 1865, \"MARHH_NO_C\": 2720, \"MHH_CHILD\": 296, \"FHH_CHILD\": 1266, \"FAMILIES\": 7036, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 13323, \"VACANT\": 1472, \"OWNER_OCC\": 6692, \"RENTER_OCC\": 5159 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.709092347111337, 41.446740932171657 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Seven Hills\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"71416\", \"CAPITAL\": \"N\", \"AREALAND\": 5.009000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12080, \"WHITE\": 11739, \"BLACK\": 18, \"AMERI_ES\": 3, \"ASIAN\": 256, \"HAWN_PI\": 0, \"OTHER\": 13, \"MULT_RACE\": 51, \"HISPANIC\": 92, \"MALES\": 5824, \"FEMALES\": 6256, \"AGE_UNDER5\": 520, \"AGE_5_17\": 1676, \"AGE_18_21\": 377, \"AGE_22_29\": 716, \"AGE_30_39\": 1442, \"AGE_40_49\": 1779, \"AGE_50_64\": 2448, \"AGE_65_UP\": 3122, \"MED_AGE\": 47.300000, \"MED_AGE_M\": 45.800000, \"MED_AGE_F\": 48.700000, \"HOUSEHOLDS\": 4787, \"AVE_HH_SZ\": 2.520000, \"HSEHLD_1_M\": 337, \"HSEHLD_1_F\": 592, \"MARHH_CHD\": 975, \"MARHH_NO_C\": 2289, \"MHH_CHILD\": 27, \"FHH_CHILD\": 85, \"FAMILIES\": 3759, \"AVE_FAM_SZ\": 2.890000, \"HSE_UNITS\": 4883, \"VACANT\": 96, \"OWNER_OCC\": 4625, \"RENTER_OCC\": 162 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.675350867996883, 41.387702896310572 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Shaker Heights\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"71682\", \"CAPITAL\": \"N\", \"AREALAND\": 6.276000, \"AREAWATER\": 0.043000, \"POP_CL\": 6, \"POP2000\": 29405, \"WHITE\": 17624, \"BLACK\": 10030, \"AMERI_ES\": 19, \"ASIAN\": 928, \"HAWN_PI\": 4, \"OTHER\": 147, \"MULT_RACE\": 653, \"HISPANIC\": 339, \"MALES\": 13389, \"FEMALES\": 16016, \"AGE_UNDER5\": 1833, \"AGE_5_17\": 5874, \"AGE_18_21\": 900, \"AGE_22_29\": 2180, \"AGE_30_39\": 4080, \"AGE_40_49\": 4856, \"AGE_50_64\": 5093, \"AGE_65_UP\": 4589, \"MED_AGE\": 39.600000, \"MED_AGE_M\": 38.000000, \"MED_AGE_F\": 40.900000, \"HOUSEHOLDS\": 12220, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 1221, \"HSEHLD_1_F\": 2473, \"MARHH_CHD\": 2868, \"MARHH_NO_C\": 3255, \"MHH_CHILD\": 165, \"FHH_CHILD\": 895, \"FAMILIES\": 8037, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 12982, \"VACANT\": 762, \"OWNER_OCC\": 7935, \"RENTER_OCC\": 4285 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.55162096995771, 41.476501891202489 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sharonville\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"71892\", \"CAPITAL\": \"N\", \"AREALAND\": 9.806000, \"AREAWATER\": 0.055000, \"POP_CL\": 6, \"POP2000\": 13804, \"WHITE\": 12250, \"BLACK\": 666, \"AMERI_ES\": 16, \"ASIAN\": 524, \"HAWN_PI\": 3, \"OTHER\": 133, \"MULT_RACE\": 212, \"HISPANIC\": 317, \"MALES\": 6641, \"FEMALES\": 7163, \"AGE_UNDER5\": 834, \"AGE_5_17\": 2006, \"AGE_18_21\": 529, \"AGE_22_29\": 1624, \"AGE_30_39\": 2095, \"AGE_40_49\": 2057, \"AGE_50_64\": 2303, \"AGE_65_UP\": 2356, \"MED_AGE\": 39.100000, \"MED_AGE_M\": 36.800000, \"MED_AGE_F\": 41.500000, \"HOUSEHOLDS\": 6211, \"AVE_HH_SZ\": 2.170000, \"HSEHLD_1_M\": 950, \"HSEHLD_1_F\": 1318, \"MARHH_CHD\": 1075, \"MARHH_NO_C\": 1719, \"MHH_CHILD\": 114, \"FHH_CHILD\": 318, \"FAMILIES\": 3587, \"AVE_FAM_SZ\": 2.850000, \"HSE_UNITS\": 6526, \"VACANT\": 315, \"OWNER_OCC\": 3949, \"RENTER_OCC\": 2262 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.397253046642817, 39.281258976632678 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Shiloh\", \"CLASS\": \"CDP\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"72284\", \"CAPITAL\": \"N\", \"AREALAND\": 3.838000, \"AREAWATER\": 0.052000, \"POP_CL\": 6, \"POP2000\": 11272, \"WHITE\": 6949, \"BLACK\": 3937, \"AMERI_ES\": 22, \"ASIAN\": 78, \"HAWN_PI\": 5, \"OTHER\": 56, \"MULT_RACE\": 225, \"HISPANIC\": 130, \"MALES\": 5153, \"FEMALES\": 6119, \"AGE_UNDER5\": 608, \"AGE_5_17\": 1341, \"AGE_18_21\": 487, \"AGE_22_29\": 1149, \"AGE_30_39\": 1568, \"AGE_40_49\": 1681, \"AGE_50_64\": 2065, \"AGE_65_UP\": 2373, \"MED_AGE\": 42.900000, \"MED_AGE_M\": 39.900000, \"MED_AGE_F\": 45.500000, \"HOUSEHOLDS\": 5700, \"AVE_HH_SZ\": 1.910000, \"HSEHLD_1_M\": 1009, \"HSEHLD_1_F\": 1586, \"MARHH_CHD\": 597, \"MARHH_NO_C\": 1313, \"MHH_CHILD\": 86, \"FHH_CHILD\": 389, \"FAMILIES\": 2737, \"AVE_FAM_SZ\": 2.680000, \"HSE_UNITS\": 6209, \"VACANT\": 509, \"OWNER_OCC\": 3034, \"RENTER_OCC\": 2666 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.225323061013412, 39.80865697308684 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sidney\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"72424\", \"CAPITAL\": \"N\", \"AREALAND\": 10.426000, \"AREAWATER\": 0.068000, \"POP_CL\": 6, \"POP2000\": 20211, \"WHITE\": 18717, \"BLACK\": 618, \"AMERI_ES\": 49, \"ASIAN\": 377, \"HAWN_PI\": 21, \"OTHER\": 80, \"MULT_RACE\": 349, \"HISPANIC\": 262, \"MALES\": 9868, \"FEMALES\": 10343, \"AGE_UNDER5\": 1632, \"AGE_5_17\": 4038, \"AGE_18_21\": 1040, \"AGE_22_29\": 2237, \"AGE_30_39\": 3017, \"AGE_40_49\": 2963, \"AGE_50_64\": 2882, \"AGE_65_UP\": 2402, \"MED_AGE\": 33.900000, \"MED_AGE_M\": 32.700000, \"MED_AGE_F\": 35.200000, \"HOUSEHOLDS\": 7981, \"AVE_HH_SZ\": 2.500000, \"HSEHLD_1_M\": 910, \"HSEHLD_1_F\": 1280, \"MARHH_CHD\": 1826, \"MARHH_NO_C\": 2151, \"MHH_CHILD\": 229, \"FHH_CHILD\": 710, \"FAMILIES\": 5374, \"AVE_FAM_SZ\": 3.030000, \"HSE_UNITS\": 8557, \"VACANT\": 576, \"OWNER_OCC\": 4958, \"RENTER_OCC\": 3023 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.161040069452596, 40.289682971173903 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Solon\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"72928\", \"CAPITAL\": \"N\", \"AREALAND\": 20.552000, \"AREAWATER\": 0.043000, \"POP_CL\": 6, \"POP2000\": 21802, \"WHITE\": 19140, \"BLACK\": 1334, \"AMERI_ES\": 8, \"ASIAN\": 1070, \"HAWN_PI\": 2, \"OTHER\": 37, \"MULT_RACE\": 211, \"HISPANIC\": 153, \"MALES\": 10687, \"FEMALES\": 11115, \"AGE_UNDER5\": 1290, \"AGE_5_17\": 5368, \"AGE_18_21\": 701, \"AGE_22_29\": 985, \"AGE_30_39\": 2764, \"AGE_40_49\": 4539, \"AGE_50_64\": 3836, \"AGE_65_UP\": 2319, \"MED_AGE\": 39.400000, \"MED_AGE_M\": 38.900000, \"MED_AGE_F\": 39.800000, \"HOUSEHOLDS\": 7554, \"AVE_HH_SZ\": 2.890000, \"HSEHLD_1_M\": 495, \"HSEHLD_1_F\": 702, \"MARHH_CHD\": 2985, \"MARHH_NO_C\": 2442, \"MHH_CHILD\": 81, \"FHH_CHILD\": 314, \"FAMILIES\": 6168, \"AVE_FAM_SZ\": 3.260000, \"HSE_UNITS\": 7801, \"VACANT\": 247, \"OWNER_OCC\": 6631, \"RENTER_OCC\": 923 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.44233105530104, 41.389870887819832 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"South Euclid\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"73264\", \"CAPITAL\": \"N\", \"AREALAND\": 4.689000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 23537, \"WHITE\": 17709, \"BLACK\": 5032, \"AMERI_ES\": 24, \"ASIAN\": 353, \"HAWN_PI\": 3, \"OTHER\": 99, \"MULT_RACE\": 317, \"HISPANIC\": 241, \"MALES\": 10831, \"FEMALES\": 12706, \"AGE_UNDER5\": 1523, \"AGE_5_17\": 4371, \"AGE_18_21\": 918, \"AGE_22_29\": 2072, \"AGE_30_39\": 3662, \"AGE_40_49\": 3983, \"AGE_50_64\": 3407, \"AGE_65_UP\": 3601, \"MED_AGE\": 38.000000, \"MED_AGE_M\": 35.700000, \"MED_AGE_F\": 39.800000, \"HOUSEHOLDS\": 9542, \"AVE_HH_SZ\": 2.450000, \"HSEHLD_1_M\": 866, \"HSEHLD_1_F\": 1819, \"MARHH_CHD\": 2273, \"MARHH_NO_C\": 2586, \"MHH_CHILD\": 108, \"FHH_CHILD\": 695, \"FAMILIES\": 6419, \"AVE_FAM_SZ\": 3.030000, \"HSE_UNITS\": 9854, \"VACANT\": 312, \"OWNER_OCC\": 8002, \"RENTER_OCC\": 1540 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.527677993042047, 41.522070890018931 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Springboro\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"74076\", \"CAPITAL\": \"N\", \"AREALAND\": 8.810000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12380, \"WHITE\": 11885, \"BLACK\": 123, \"AMERI_ES\": 20, \"ASIAN\": 198, \"HAWN_PI\": 4, \"OTHER\": 36, \"MULT_RACE\": 114, \"HISPANIC\": 124, \"MALES\": 6058, \"FEMALES\": 6322, \"AGE_UNDER5\": 1244, \"AGE_5_17\": 2760, \"AGE_18_21\": 385, \"AGE_22_29\": 903, \"AGE_30_39\": 2387, \"AGE_40_49\": 2146, \"AGE_50_64\": 1782, \"AGE_65_UP\": 773, \"MED_AGE\": 34.100000, \"MED_AGE_M\": 34.100000, \"MED_AGE_F\": 34.200000, \"HOUSEHOLDS\": 4261, \"AVE_HH_SZ\": 2.900000, \"HSEHLD_1_M\": 216, \"HSEHLD_1_F\": 336, \"MARHH_CHD\": 1782, \"MARHH_NO_C\": 1405, \"MHH_CHILD\": 62, \"FHH_CHILD\": 208, \"FAMILIES\": 3601, \"AVE_FAM_SZ\": 3.180000, \"HSE_UNITS\": 4423, \"VACANT\": 162, \"OWNER_OCC\": 3692, \"RENTER_OCC\": 569 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.228014059059319, 39.563929973533916 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Springdale\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"74104\", \"CAPITAL\": \"N\", \"AREALAND\": 4.957000, \"AREAWATER\": 0.012000, \"POP_CL\": 6, \"POP2000\": 10563, \"WHITE\": 7223, \"BLACK\": 2707, \"AMERI_ES\": 12, \"ASIAN\": 267, \"HAWN_PI\": 2, \"OTHER\": 158, \"MULT_RACE\": 194, \"HISPANIC\": 384, \"MALES\": 4788, \"FEMALES\": 5775, \"AGE_UNDER5\": 641, \"AGE_5_17\": 1890, \"AGE_18_21\": 438, \"AGE_22_29\": 983, \"AGE_30_39\": 1462, \"AGE_40_49\": 1484, \"AGE_50_64\": 1691, \"AGE_65_UP\": 1974, \"MED_AGE\": 39.100000, \"MED_AGE_M\": 36.100000, \"MED_AGE_F\": 41.800000, \"HOUSEHOLDS\": 4421, \"AVE_HH_SZ\": 2.330000, \"HSEHLD_1_M\": 425, \"HSEHLD_1_F\": 989, \"MARHH_CHD\": 806, \"MARHH_NO_C\": 1257, \"MHH_CHILD\": 80, \"FHH_CHILD\": 398, \"FAMILIES\": 2818, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 4607, \"VACANT\": 186, \"OWNER_OCC\": 2669, \"RENTER_OCC\": 1752 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.483003042099185, 39.29303697787239 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Springfield\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"74118\", \"CAPITAL\": \"N\", \"AREALAND\": 22.473000, \"AREAWATER\": 0.045000, \"POP_CL\": 7, \"POP2000\": 65358, \"WHITE\": 51007, \"BLACK\": 11909, \"AMERI_ES\": 223, \"ASIAN\": 455, \"HAWN_PI\": 14, \"OTHER\": 354, \"MULT_RACE\": 1396, \"HISPANIC\": 770, \"MALES\": 30826, \"FEMALES\": 34532, \"AGE_UNDER5\": 4920, \"AGE_5_17\": 11792, \"AGE_18_21\": 4902, \"AGE_22_29\": 7083, \"AGE_30_39\": 8707, \"AGE_40_49\": 8802, \"AGE_50_64\": 9229, \"AGE_65_UP\": 9923, \"MED_AGE\": 34.500000, \"MED_AGE_M\": 32.500000, \"MED_AGE_F\": 36.500000, \"HOUSEHOLDS\": 26254, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 3344, \"HSEHLD_1_F\": 5106, \"MARHH_CHD\": 4396, \"MARHH_NO_C\": 6241, \"MHH_CHILD\": 705, \"FHH_CHILD\": 2755, \"FAMILIES\": 16212, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 29309, \"VACANT\": 3055, \"OWNER_OCC\": 15011, \"RENTER_OCC\": 11243 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.804131099302538, 39.92706696508742 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Steubenville\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"74608\", \"CAPITAL\": \"N\", \"AREALAND\": 10.322000, \"AREAWATER\": 0.005000, \"POP_CL\": 6, \"POP2000\": 19015, \"WHITE\": 15127, \"BLACK\": 3281, \"AMERI_ES\": 42, \"ASIAN\": 139, \"HAWN_PI\": 2, \"OTHER\": 100, \"MULT_RACE\": 324, \"HISPANIC\": 185, \"MALES\": 8770, \"FEMALES\": 10245, \"AGE_UNDER5\": 1050, \"AGE_5_17\": 2977, \"AGE_18_21\": 864, \"AGE_22_29\": 1714, \"AGE_30_39\": 2176, \"AGE_40_49\": 2839, \"AGE_50_64\": 3166, \"AGE_65_UP\": 4229, \"MED_AGE\": 42.700000, \"MED_AGE_M\": 40.500000, \"MED_AGE_F\": 44.600000, \"HOUSEHOLDS\": 8342, \"AVE_HH_SZ\": 2.190000, \"HSEHLD_1_M\": 1122, \"HSEHLD_1_F\": 1916, \"MARHH_CHD\": 1155, \"MARHH_NO_C\": 2198, \"MHH_CHILD\": 113, \"FHH_CHILD\": 682, \"FAMILIES\": 4881, \"AVE_FAM_SZ\": 2.860000, \"HSE_UNITS\": 9449, \"VACANT\": 1107, \"OWNER_OCC\": 4933, \"RENTER_OCC\": 3409 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.631484868665879, 40.365534871748054 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Stow\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"74944\", \"CAPITAL\": \"N\", \"AREALAND\": 17.112000, \"AREAWATER\": 0.230000, \"POP_CL\": 6, \"POP2000\": 32139, \"WHITE\": 30596, \"BLACK\": 495, \"AMERI_ES\": 35, \"ASIAN\": 615, \"HAWN_PI\": 4, \"OTHER\": 95, \"MULT_RACE\": 299, \"HISPANIC\": 291, \"MALES\": 15557, \"FEMALES\": 16582, \"AGE_UNDER5\": 2126, \"AGE_5_17\": 6240, \"AGE_18_21\": 1348, \"AGE_22_29\": 3053, \"AGE_30_39\": 5017, \"AGE_40_49\": 5621, \"AGE_50_64\": 4892, \"AGE_65_UP\": 3842, \"MED_AGE\": 36.900000, \"MED_AGE_M\": 35.500000, \"MED_AGE_F\": 38.100000, \"HOUSEHOLDS\": 12317, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 1172, \"HSEHLD_1_F\": 1753, \"MARHH_CHD\": 3565, \"MARHH_NO_C\": 3799, \"MHH_CHILD\": 180, \"FHH_CHILD\": 607, \"FAMILIES\": 8747, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 12852, \"VACANT\": 535, \"OWNER_OCC\": 8881, \"RENTER_OCC\": 3436 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.436232043273691, 41.17662288910018 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Streetsboro\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"75014\", \"CAPITAL\": \"N\", \"AREALAND\": 24.017000, \"AREAWATER\": 0.362000, \"POP_CL\": 6, \"POP2000\": 12311, \"WHITE\": 11744, \"BLACK\": 241, \"AMERI_ES\": 11, \"ASIAN\": 169, \"HAWN_PI\": 2, \"OTHER\": 18, \"MULT_RACE\": 126, \"HISPANIC\": 96, \"MALES\": 6051, \"FEMALES\": 6260, \"AGE_UNDER5\": 844, \"AGE_5_17\": 2147, \"AGE_18_21\": 539, \"AGE_22_29\": 1558, \"AGE_30_39\": 2271, \"AGE_40_49\": 1884, \"AGE_50_64\": 1862, \"AGE_65_UP\": 1206, \"MED_AGE\": 34.500000, \"MED_AGE_M\": 33.500000, \"MED_AGE_F\": 35.400000, \"HOUSEHOLDS\": 4908, \"AVE_HH_SZ\": 2.490000, \"HSEHLD_1_M\": 586, \"HSEHLD_1_F\": 648, \"MARHH_CHD\": 1147, \"MARHH_NO_C\": 1565, \"MHH_CHILD\": 93, \"FHH_CHILD\": 284, \"FAMILIES\": 3381, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 5244, \"VACANT\": 336, \"OWNER_OCC\": 3464, \"RENTER_OCC\": 1444 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.34912512684329, 41.242454885555581 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Strongsville\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"75098\", \"CAPITAL\": \"N\", \"AREALAND\": 24.645000, \"AREAWATER\": 0.007000, \"POP_CL\": 6, \"POP2000\": 43858, \"WHITE\": 41304, \"BLACK\": 551, \"AMERI_ES\": 21, \"ASIAN\": 1406, \"HAWN_PI\": 4, \"OTHER\": 122, \"MULT_RACE\": 450, \"HISPANIC\": 557, \"MALES\": 21406, \"FEMALES\": 22452, \"AGE_UNDER5\": 2737, \"AGE_5_17\": 8791, \"AGE_18_21\": 1555, \"AGE_22_29\": 3145, \"AGE_30_39\": 6471, \"AGE_40_49\": 7970, \"AGE_50_64\": 8205, \"AGE_65_UP\": 4984, \"MED_AGE\": 39.100000, \"MED_AGE_M\": 38.400000, \"MED_AGE_F\": 39.700000, \"HOUSEHOLDS\": 16209, \"AVE_HH_SZ\": 2.690000, \"HSEHLD_1_M\": 1353, \"HSEHLD_1_F\": 1879, \"MARHH_CHD\": 5106, \"MARHH_NO_C\": 5841, \"MHH_CHILD\": 168, \"FHH_CHILD\": 539, \"FAMILIES\": 12389, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 16863, \"VACANT\": 654, \"OWNER_OCC\": 13403, \"RENTER_OCC\": 2806 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.831976754902598, 41.31275190247689 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Struthers\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"75126\", \"CAPITAL\": \"N\", \"AREALAND\": 3.732000, \"AREAWATER\": 0.013000, \"POP_CL\": 6, \"POP2000\": 11756, \"WHITE\": 11360, \"BLACK\": 209, \"AMERI_ES\": 22, \"ASIAN\": 22, \"HAWN_PI\": 1, \"OTHER\": 55, \"MULT_RACE\": 87, \"HISPANIC\": 237, \"MALES\": 5514, \"FEMALES\": 6242, \"AGE_UNDER5\": 659, \"AGE_5_17\": 2082, \"AGE_18_21\": 631, \"AGE_22_29\": 1018, \"AGE_30_39\": 1601, \"AGE_40_49\": 1734, \"AGE_50_64\": 1572, \"AGE_65_UP\": 2459, \"MED_AGE\": 39.500000, \"MED_AGE_M\": 37.200000, \"MED_AGE_F\": 41.500000, \"HOUSEHOLDS\": 4704, \"AVE_HH_SZ\": 2.490000, \"HSEHLD_1_M\": 443, \"HSEHLD_1_F\": 847, \"MARHH_CHD\": 988, \"MARHH_NO_C\": 1425, \"MHH_CHILD\": 83, \"FHH_CHILD\": 322, \"FAMILIES\": 3255, \"AVE_FAM_SZ\": 3.030000, \"HSE_UNITS\": 4982, \"VACANT\": 278, \"OWNER_OCC\": 3640, \"RENTER_OCC\": 1064 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.593593026959965, 41.052254864171417 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sylvania\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"76022\", \"CAPITAL\": \"N\", \"AREALAND\": 5.792000, \"AREAWATER\": 0.045000, \"POP_CL\": 6, \"POP2000\": 18670, \"WHITE\": 17774, \"BLACK\": 186, \"AMERI_ES\": 18, \"ASIAN\": 392, \"HAWN_PI\": 1, \"OTHER\": 120, \"MULT_RACE\": 179, \"HISPANIC\": 304, \"MALES\": 8880, \"FEMALES\": 9790, \"AGE_UNDER5\": 1149, \"AGE_5_17\": 4124, \"AGE_18_21\": 805, \"AGE_22_29\": 1254, \"AGE_30_39\": 2473, \"AGE_40_49\": 3397, \"AGE_50_64\": 2988, \"AGE_65_UP\": 2480, \"MED_AGE\": 38.500000, \"MED_AGE_M\": 37.100000, \"MED_AGE_F\": 39.700000, \"HOUSEHOLDS\": 7151, \"AVE_HH_SZ\": 2.590000, \"HSEHLD_1_M\": 655, \"HSEHLD_1_F\": 1185, \"MARHH_CHD\": 2155, \"MARHH_NO_C\": 2122, \"MHH_CHILD\": 100, \"FHH_CHILD\": 408, \"FAMILIES\": 5071, \"AVE_FAM_SZ\": 3.160000, \"HSE_UNITS\": 7392, \"VACANT\": 241, \"OWNER_OCC\": 5379, \"RENTER_OCC\": 1772 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.70321013251764, 41.711449959035576 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Tallmadge\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"76106\", \"CAPITAL\": \"N\", \"AREALAND\": 13.962000, \"AREAWATER\": 0.023000, \"POP_CL\": 6, \"POP2000\": 16390, \"WHITE\": 15698, \"BLACK\": 341, \"AMERI_ES\": 19, \"ASIAN\": 142, \"HAWN_PI\": 5, \"OTHER\": 13, \"MULT_RACE\": 172, \"HISPANIC\": 94, \"MALES\": 7901, \"FEMALES\": 8489, \"AGE_UNDER5\": 879, \"AGE_5_17\": 3053, \"AGE_18_21\": 701, \"AGE_22_29\": 1013, \"AGE_30_39\": 2156, \"AGE_40_49\": 2854, \"AGE_50_64\": 2778, \"AGE_65_UP\": 2956, \"MED_AGE\": 41.400000, \"MED_AGE_M\": 40.200000, \"MED_AGE_F\": 42.600000, \"HOUSEHOLDS\": 6273, \"AVE_HH_SZ\": 2.560000, \"HSEHLD_1_M\": 473, \"HSEHLD_1_F\": 862, \"MARHH_CHD\": 1604, \"MARHH_NO_C\": 2347, \"MHH_CHILD\": 97, \"FHH_CHILD\": 309, \"FAMILIES\": 4713, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 6494, \"VACANT\": 221, \"OWNER_OCC\": 5005, \"RENTER_OCC\": 1268 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.424034047347277, 41.096955889233847 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Tiffin\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"76778\", \"CAPITAL\": \"N\", \"AREALAND\": 6.494000, \"AREAWATER\": 0.142000, \"POP_CL\": 6, \"POP2000\": 18135, \"WHITE\": 17457, \"BLACK\": 264, \"AMERI_ES\": 31, \"ASIAN\": 92, \"HAWN_PI\": 3, \"OTHER\": 107, \"MULT_RACE\": 181, \"HISPANIC\": 380, \"MALES\": 8867, \"FEMALES\": 9268, \"AGE_UNDER5\": 1082, \"AGE_5_17\": 2965, \"AGE_18_21\": 1899, \"AGE_22_29\": 1951, \"AGE_30_39\": 2315, \"AGE_40_49\": 2562, \"AGE_50_64\": 2490, \"AGE_65_UP\": 2871, \"MED_AGE\": 35.500000, \"MED_AGE_M\": 32.700000, \"MED_AGE_F\": 37.500000, \"HOUSEHOLDS\": 7330, \"AVE_HH_SZ\": 2.310000, \"HSEHLD_1_M\": 987, \"HSEHLD_1_F\": 1401, \"MARHH_CHD\": 1384, \"MARHH_NO_C\": 2001, \"MHH_CHILD\": 166, \"FHH_CHILD\": 533, \"FAMILIES\": 4468, \"AVE_FAM_SZ\": 2.920000, \"HSE_UNITS\": 7862, \"VACANT\": 532, \"OWNER_OCC\": 4726, \"RENTER_OCC\": 2604 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.179003214176504, 41.116833947234262 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Toledo\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"77000\", \"CAPITAL\": \"N\", \"AREALAND\": 80.622000, \"AREAWATER\": 3.453000, \"POP_CL\": 8, \"POP2000\": 313619, \"WHITE\": 220261, \"BLACK\": 73854, \"AMERI_ES\": 970, \"ASIAN\": 3233, \"HAWN_PI\": 76, \"OTHER\": 7166, \"MULT_RACE\": 8059, \"HISPANIC\": 17141, \"MALES\": 150204, \"FEMALES\": 163415, \"AGE_UNDER5\": 22849, \"AGE_5_17\": 59282, \"AGE_18_21\": 19783, \"AGE_22_29\": 40102, \"AGE_30_39\": 45261, \"AGE_40_49\": 43431, \"AGE_50_64\": 41711, \"AGE_65_UP\": 41200, \"MED_AGE\": 33.200000, \"MED_AGE_M\": 31.600000, \"MED_AGE_F\": 34.800000, \"HOUSEHOLDS\": 128925, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 19009, \"HSEHLD_1_F\": 23315, \"MARHH_CHD\": 20983, \"MARHH_NO_C\": 28272, \"MHH_CHILD\": 3193, \"FHH_CHILD\": 14189, \"FAMILIES\": 77378, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 139871, \"VACANT\": 10946, \"OWNER_OCC\": 77062, \"RENTER_OCC\": 51863 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.575337150766146, 41.665681956070891 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Trotwood\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"77504\", \"CAPITAL\": \"N\", \"AREALAND\": 30.530000, \"AREAWATER\": 0.014000, \"POP_CL\": 6, \"POP2000\": 27420, \"WHITE\": 10600, \"BLACK\": 15998, \"AMERI_ES\": 88, \"ASIAN\": 67, \"HAWN_PI\": 4, \"OTHER\": 119, \"MULT_RACE\": 544, \"HISPANIC\": 224, \"MALES\": 12490, \"FEMALES\": 14930, \"AGE_UNDER5\": 1688, \"AGE_5_17\": 5499, \"AGE_18_21\": 1248, \"AGE_22_29\": 2371, \"AGE_30_39\": 3545, \"AGE_40_49\": 4111, \"AGE_50_64\": 4603, \"AGE_65_UP\": 4355, \"MED_AGE\": 38.400000, \"MED_AGE_M\": 35.200000, \"MED_AGE_F\": 40.500000, \"HOUSEHOLDS\": 11110, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 1254, \"HSEHLD_1_F\": 2061, \"MARHH_CHD\": 1623, \"MARHH_NO_C\": 2852, \"MHH_CHILD\": 273, \"FHH_CHILD\": 1471, \"FAMILIES\": 7348, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 12020, \"VACANT\": 910, \"OWNER_OCC\": 6952, \"RENTER_OCC\": 4158 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.289892056495333, 39.79480697417435 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Troy\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"77588\", \"CAPITAL\": \"N\", \"AREALAND\": 9.701000, \"AREAWATER\": 0.067000, \"POP_CL\": 6, \"POP2000\": 21999, \"WHITE\": 20140, \"BLACK\": 1051, \"AMERI_ES\": 46, \"ASIAN\": 366, \"HAWN_PI\": 2, \"OTHER\": 65, \"MULT_RACE\": 329, \"HISPANIC\": 170, \"MALES\": 10679, \"FEMALES\": 11320, \"AGE_UNDER5\": 1591, \"AGE_5_17\": 4044, \"AGE_18_21\": 1033, \"AGE_22_29\": 2514, \"AGE_30_39\": 3405, \"AGE_40_49\": 3208, \"AGE_50_64\": 3236, \"AGE_65_UP\": 2968, \"MED_AGE\": 35.200000, \"MED_AGE_M\": 33.300000, \"MED_AGE_F\": 37.400000, \"HOUSEHOLDS\": 8920, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 1074, \"HSEHLD_1_F\": 1523, \"MARHH_CHD\": 1936, \"MARHH_NO_C\": 2506, \"MHH_CHILD\": 192, \"FHH_CHILD\": 742, \"FAMILIES\": 5883, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 9497, \"VACANT\": 577, \"OWNER_OCC\": 5378, \"RENTER_OCC\": 3542 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.208627063928489, 40.041620972419906 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Twinsburg\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"78050\", \"CAPITAL\": \"N\", \"AREALAND\": 12.443000, \"AREAWATER\": 0.032000, \"POP_CL\": 6, \"POP2000\": 17006, \"WHITE\": 14783, \"BLACK\": 1484, \"AMERI_ES\": 19, \"ASIAN\": 502, \"HAWN_PI\": 2, \"OTHER\": 53, \"MULT_RACE\": 163, \"HISPANIC\": 176, \"MALES\": 8150, \"FEMALES\": 8856, \"AGE_UNDER5\": 1359, \"AGE_5_17\": 3185, \"AGE_18_21\": 471, \"AGE_22_29\": 1406, \"AGE_30_39\": 3424, \"AGE_40_49\": 2787, \"AGE_50_64\": 2469, \"AGE_65_UP\": 1905, \"MED_AGE\": 36.400000, \"MED_AGE_M\": 35.700000, \"MED_AGE_F\": 37.000000, \"HOUSEHOLDS\": 6641, \"AVE_HH_SZ\": 2.540000, \"HSEHLD_1_M\": 605, \"HSEHLD_1_F\": 1051, \"MARHH_CHD\": 2019, \"MARHH_NO_C\": 2009, \"MHH_CHILD\": 71, \"FHH_CHILD\": 267, \"FAMILIES\": 4692, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 6871, \"VACANT\": 230, \"OWNER_OCC\": 5135, \"RENTER_OCC\": 1506 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.452705040963735, 41.324121888652613 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"University Heights\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"78932\", \"CAPITAL\": \"N\", \"AREALAND\": 1.834000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14146, \"WHITE\": 10671, \"BLACK\": 2916, \"AMERI_ES\": 14, \"ASIAN\": 240, \"HAWN_PI\": 6, \"OTHER\": 88, \"MULT_RACE\": 211, \"HISPANIC\": 221, \"MALES\": 6671, \"FEMALES\": 7475, \"AGE_UNDER5\": 1039, \"AGE_5_17\": 1901, \"AGE_18_21\": 2185, \"AGE_22_29\": 1382, \"AGE_30_39\": 2140, \"AGE_40_49\": 1757, \"AGE_50_64\": 1841, \"AGE_65_UP\": 1901, \"MED_AGE\": 32.100000, \"MED_AGE_M\": 31.000000, \"MED_AGE_F\": 33.300000, \"HOUSEHOLDS\": 5163, \"AVE_HH_SZ\": 2.370000, \"HSEHLD_1_M\": 545, \"HSEHLD_1_F\": 997, \"MARHH_CHD\": 1228, \"MARHH_NO_C\": 1503, \"MHH_CHILD\": 44, \"FHH_CHILD\": 239, \"FAMILIES\": 3322, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 5350, \"VACANT\": 187, \"OWNER_OCC\": 3879, \"RENTER_OCC\": 1284 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.536864983402637, 41.495018890537743 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Upper Arlington\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"79002\", \"CAPITAL\": \"N\", \"AREALAND\": 9.763000, \"AREAWATER\": 0.022000, \"POP_CL\": 6, \"POP2000\": 33686, \"WHITE\": 31906, \"BLACK\": 200, \"AMERI_ES\": 35, \"ASIAN\": 1185, \"HAWN_PI\": 3, \"OTHER\": 90, \"MULT_RACE\": 267, \"HISPANIC\": 330, \"MALES\": 15884, \"FEMALES\": 17802, \"AGE_UNDER5\": 1850, \"AGE_5_17\": 6525, \"AGE_18_21\": 911, \"AGE_22_29\": 1966, \"AGE_30_39\": 4183, \"AGE_40_49\": 5808, \"AGE_50_64\": 6189, \"AGE_65_UP\": 6254, \"MED_AGE\": 42.600000, \"MED_AGE_M\": 41.100000, \"MED_AGE_F\": 43.700000, \"HOUSEHOLDS\": 13985, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 1272, \"HSEHLD_1_F\": 2678, \"MARHH_CHD\": 3756, \"MARHH_NO_C\": 4510, \"MHH_CHILD\": 146, \"FHH_CHILD\": 557, \"FAMILIES\": 9512, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 14432, \"VACANT\": 447, \"OWNER_OCC\": 11367, \"RENTER_OCC\": 2618 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.066520215870497, 40.020612947638199 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Urbana\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"79072\", \"CAPITAL\": \"N\", \"AREALAND\": 6.822000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11613, \"WHITE\": 10571, \"BLACK\": 691, \"AMERI_ES\": 39, \"ASIAN\": 35, \"HAWN_PI\": 3, \"OTHER\": 56, \"MULT_RACE\": 218, \"HISPANIC\": 126, \"MALES\": 5410, \"FEMALES\": 6203, \"AGE_UNDER5\": 804, \"AGE_5_17\": 1951, \"AGE_18_21\": 702, \"AGE_22_29\": 1168, \"AGE_30_39\": 1630, \"AGE_40_49\": 1582, \"AGE_50_64\": 1891, \"AGE_65_UP\": 1885, \"MED_AGE\": 37.300000, \"MED_AGE_M\": 35.000000, \"MED_AGE_F\": 39.500000, \"HOUSEHOLDS\": 4859, \"AVE_HH_SZ\": 2.290000, \"HSEHLD_1_M\": 602, \"HSEHLD_1_F\": 1023, \"MARHH_CHD\": 932, \"MARHH_NO_C\": 1314, \"MHH_CHILD\": 123, \"FHH_CHILD\": 352, \"FAMILIES\": 2999, \"AVE_FAM_SZ\": 2.920000, \"HSE_UNITS\": 5210, \"VACANT\": 351, \"OWNER_OCC\": 2942, \"RENTER_OCC\": 1917 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.751463107251965, 40.110936963606861 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Vandalia\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"79492\", \"CAPITAL\": \"N\", \"AREALAND\": 11.810000, \"AREAWATER\": 0.072000, \"POP_CL\": 6, \"POP2000\": 14603, \"WHITE\": 14031, \"BLACK\": 187, \"AMERI_ES\": 19, \"ASIAN\": 179, \"HAWN_PI\": 4, \"OTHER\": 51, \"MULT_RACE\": 132, \"HISPANIC\": 130, \"MALES\": 7093, \"FEMALES\": 7510, \"AGE_UNDER5\": 881, \"AGE_5_17\": 2567, \"AGE_18_21\": 663, \"AGE_22_29\": 1429, \"AGE_30_39\": 2241, \"AGE_40_49\": 2264, \"AGE_50_64\": 2577, \"AGE_65_UP\": 1981, \"MED_AGE\": 38.100000, \"MED_AGE_M\": 36.800000, \"MED_AGE_F\": 39.200000, \"HOUSEHOLDS\": 6235, \"AVE_HH_SZ\": 2.320000, \"HSEHLD_1_M\": 830, \"HSEHLD_1_F\": 1026, \"MARHH_CHD\": 1350, \"MARHH_NO_C\": 1891, \"MHH_CHILD\": 121, \"FHH_CHILD\": 406, \"FAMILIES\": 4091, \"AVE_FAM_SZ\": 2.880000, \"HSE_UNITS\": 6489, \"VACANT\": 254, \"OWNER_OCC\": 4059, \"RENTER_OCC\": 2176 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.193599063828287, 39.879855972432317 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Van Wert\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"79562\", \"CAPITAL\": \"N\", \"AREALAND\": 5.926000, \"AREAWATER\": 0.182000, \"POP_CL\": 6, \"POP2000\": 10690, \"WHITE\": 10270, \"BLACK\": 160, \"AMERI_ES\": 12, \"ASIAN\": 37, \"HAWN_PI\": 0, \"OTHER\": 116, \"MULT_RACE\": 95, \"HISPANIC\": 241, \"MALES\": 5027, \"FEMALES\": 5663, \"AGE_UNDER5\": 671, \"AGE_5_17\": 1904, \"AGE_18_21\": 594, \"AGE_22_29\": 1129, \"AGE_30_39\": 1360, \"AGE_40_49\": 1517, \"AGE_50_64\": 1622, \"AGE_65_UP\": 1893, \"MED_AGE\": 37.800000, \"MED_AGE_M\": 36.000000, \"MED_AGE_F\": 39.700000, \"HOUSEHOLDS\": 4556, \"AVE_HH_SZ\": 2.310000, \"HSEHLD_1_M\": 525, \"HSEHLD_1_F\": 889, \"MARHH_CHD\": 918, \"MARHH_NO_C\": 1366, \"MHH_CHILD\": 102, \"FHH_CHILD\": 314, \"FAMILIES\": 2946, \"AVE_FAM_SZ\": 2.880000, \"HSE_UNITS\": 4927, \"VACANT\": 371, \"OWNER_OCC\": 3268, \"RENTER_OCC\": 1288 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.583461045289894, 40.867862977247732 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Vermilion\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"79716\", \"CAPITAL\": \"N\", \"AREALAND\": 10.791000, \"AREAWATER\": 0.052000, \"POP_CL\": 6, \"POP2000\": 10927, \"WHITE\": 10724, \"BLACK\": 19, \"AMERI_ES\": 10, \"ASIAN\": 23, \"HAWN_PI\": 0, \"OTHER\": 37, \"MULT_RACE\": 114, \"HISPANIC\": 190, \"MALES\": 5288, \"FEMALES\": 5639, \"AGE_UNDER5\": 626, \"AGE_5_17\": 2143, \"AGE_18_21\": 453, \"AGE_22_29\": 929, \"AGE_30_39\": 1521, \"AGE_40_49\": 1752, \"AGE_50_64\": 2122, \"AGE_65_UP\": 1381, \"MED_AGE\": 38.700000, \"MED_AGE_M\": 37.800000, \"MED_AGE_F\": 39.700000, \"HOUSEHOLDS\": 4254, \"AVE_HH_SZ\": 2.540000, \"HSEHLD_1_M\": 428, \"HSEHLD_1_F\": 527, \"MARHH_CHD\": 1028, \"MARHH_NO_C\": 1514, \"MHH_CHILD\": 91, \"FHH_CHILD\": 259, \"FAMILIES\": 3116, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 4713, \"VACANT\": 459, \"OWNER_OCC\": 3204, \"RENTER_OCC\": 1050 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.344351484588472, 41.417655920159177 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wadsworth\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"80304\", \"CAPITAL\": \"N\", \"AREALAND\": 9.501000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 18437, \"WHITE\": 18040, \"BLACK\": 72, \"AMERI_ES\": 45, \"ASIAN\": 113, \"HAWN_PI\": 2, \"OTHER\": 35, \"MULT_RACE\": 130, \"HISPANIC\": 125, \"MALES\": 8858, \"FEMALES\": 9579, \"AGE_UNDER5\": 1303, \"AGE_5_17\": 3551, \"AGE_18_21\": 708, \"AGE_22_29\": 1531, \"AGE_30_39\": 2844, \"AGE_40_49\": 2741, \"AGE_50_64\": 2759, \"AGE_65_UP\": 3000, \"MED_AGE\": 37.700000, \"MED_AGE_M\": 36.200000, \"MED_AGE_F\": 39.000000, \"HOUSEHOLDS\": 7276, \"AVE_HH_SZ\": 2.510000, \"HSEHLD_1_M\": 682, \"HSEHLD_1_F\": 1188, \"MARHH_CHD\": 1998, \"MARHH_NO_C\": 2334, \"MHH_CHILD\": 113, \"FHH_CHILD\": 359, \"FAMILIES\": 5144, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 7613, \"VACANT\": 337, \"OWNER_OCC\": 5382, \"RENTER_OCC\": 1894 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.72976880543257, 41.02786690052983 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Warren\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"80892\", \"CAPITAL\": \"N\", \"AREALAND\": 16.085000, \"AREAWATER\": 0.027000, \"POP_CL\": 6, \"POP2000\": 46832, \"WHITE\": 33690, \"BLACK\": 11802, \"AMERI_ES\": 62, \"ASIAN\": 195, \"HAWN_PI\": 16, \"OTHER\": 142, \"MULT_RACE\": 925, \"HISPANIC\": 485, \"MALES\": 21755, \"FEMALES\": 25077, \"AGE_UNDER5\": 3705, \"AGE_5_17\": 8617, \"AGE_18_21\": 2343, \"AGE_22_29\": 4886, \"AGE_30_39\": 6257, \"AGE_40_49\": 6300, \"AGE_50_64\": 6861, \"AGE_65_UP\": 7863, \"MED_AGE\": 36.300000, \"MED_AGE_M\": 34.300000, \"MED_AGE_F\": 38.100000, \"HOUSEHOLDS\": 19288, \"AVE_HH_SZ\": 2.370000, \"HSEHLD_1_M\": 2518, \"HSEHLD_1_F\": 3826, \"MARHH_CHD\": 2852, \"MARHH_NO_C\": 4559, \"MHH_CHILD\": 454, \"FHH_CHILD\": 2387, \"FAMILIES\": 12035, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 21279, \"VACANT\": 1991, \"OWNER_OCC\": 11267, \"RENTER_OCC\": 8021 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.814555730681221, 41.238205868197184 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Warrensville Heights\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"80990\", \"CAPITAL\": \"N\", \"AREALAND\": 4.127000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 15109, \"WHITE\": 993, \"BLACK\": 13660, \"AMERI_ES\": 26, \"ASIAN\": 138, \"HAWN_PI\": 6, \"OTHER\": 48, \"MULT_RACE\": 238, \"HISPANIC\": 113, \"MALES\": 6409, \"FEMALES\": 8700, \"AGE_UNDER5\": 1002, \"AGE_5_17\": 2861, \"AGE_18_21\": 697, \"AGE_22_29\": 1522, \"AGE_30_39\": 1913, \"AGE_40_49\": 2160, \"AGE_50_64\": 2778, \"AGE_65_UP\": 2176, \"MED_AGE\": 37.700000, \"MED_AGE_M\": 34.300000, \"MED_AGE_F\": 40.000000, \"HOUSEHOLDS\": 6325, \"AVE_HH_SZ\": 2.340000, \"HSEHLD_1_M\": 726, \"HSEHLD_1_F\": 1323, \"MARHH_CHD\": 684, \"MARHH_NO_C\": 1352, \"MHH_CHILD\": 122, \"FHH_CHILD\": 1001, \"FAMILIES\": 4046, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 6741, \"VACANT\": 416, \"OWNER_OCC\": 3036, \"RENTER_OCC\": 3289 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.523262990320134, 41.438652890419618 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Washington\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"81214\", \"CAPITAL\": \"N\", \"AREALAND\": 6.438000, \"AREAWATER\": 0.066000, \"POP_CL\": 6, \"POP2000\": 13524, \"WHITE\": 12783, \"BLACK\": 367, \"AMERI_ES\": 21, \"ASIAN\": 111, \"HAWN_PI\": 2, \"OTHER\": 89, \"MULT_RACE\": 151, \"HISPANIC\": 187, \"MALES\": 6507, \"FEMALES\": 7017, \"AGE_UNDER5\": 988, \"AGE_5_17\": 2393, \"AGE_18_21\": 608, \"AGE_22_29\": 1444, \"AGE_30_39\": 1892, \"AGE_40_49\": 1874, \"AGE_50_64\": 2062, \"AGE_65_UP\": 2263, \"MED_AGE\": 37.100000, \"MED_AGE_M\": 34.800000, \"MED_AGE_F\": 39.200000, \"HOUSEHOLDS\": 5483, \"AVE_HH_SZ\": 2.370000, \"HSEHLD_1_M\": 633, \"HSEHLD_1_F\": 1052, \"MARHH_CHD\": 1085, \"MARHH_NO_C\": 1466, \"MHH_CHILD\": 138, \"FHH_CHILD\": 482, \"FAMILIES\": 3534, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 5961, \"VACANT\": 478, \"OWNER_OCC\": 3109, \"RENTER_OCC\": 2374 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.435631141105048, 39.536295958116526 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"West Carrollton City\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"83111\", \"CAPITAL\": \"N\", \"AREALAND\": 6.308000, \"AREAWATER\": 0.197000, \"POP_CL\": 6, \"POP2000\": 13818, \"WHITE\": 12794, \"BLACK\": 582, \"AMERI_ES\": 29, \"ASIAN\": 163, \"HAWN_PI\": 1, \"OTHER\": 70, \"MULT_RACE\": 179, \"HISPANIC\": 199, \"MALES\": 6634, \"FEMALES\": 7184, \"AGE_UNDER5\": 944, \"AGE_5_17\": 2126, \"AGE_18_21\": 720, \"AGE_22_29\": 2006, \"AGE_30_39\": 2205, \"AGE_40_49\": 1892, \"AGE_50_64\": 2207, \"AGE_65_UP\": 1718, \"MED_AGE\": 34.900000, \"MED_AGE_M\": 33.500000, \"MED_AGE_F\": 36.400000, \"HOUSEHOLDS\": 6134, \"AVE_HH_SZ\": 2.240000, \"HSEHLD_1_M\": 828, \"HSEHLD_1_F\": 1136, \"MARHH_CHD\": 1087, \"MARHH_NO_C\": 1674, \"MHH_CHILD\": 138, \"FHH_CHILD\": 456, \"FAMILIES\": 3708, \"AVE_FAM_SZ\": 2.830000, \"HSE_UNITS\": 6562, \"VACANT\": 428, \"OWNER_OCC\": 3620, \"RENTER_OCC\": 2514 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.247991058431595, 39.668049973692455 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Westerville\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"83342\", \"CAPITAL\": \"N\", \"AREALAND\": 12.387000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 35318, \"WHITE\": 33035, \"BLACK\": 1131, \"AMERI_ES\": 46, \"ASIAN\": 549, \"HAWN_PI\": 10, \"OTHER\": 127, \"MULT_RACE\": 420, \"HISPANIC\": 379, \"MALES\": 16757, \"FEMALES\": 18561, \"AGE_UNDER5\": 2138, \"AGE_5_17\": 7349, \"AGE_18_21\": 2307, \"AGE_22_29\": 2458, \"AGE_30_39\": 4768, \"AGE_40_49\": 6493, \"AGE_50_64\": 6117, \"AGE_65_UP\": 3688, \"MED_AGE\": 37.800000, \"MED_AGE_M\": 36.300000, \"MED_AGE_F\": 38.900000, \"HOUSEHOLDS\": 12663, \"AVE_HH_SZ\": 2.670000, \"HSEHLD_1_M\": 790, \"HSEHLD_1_F\": 1861, \"MARHH_CHD\": 4120, \"MARHH_NO_C\": 4091, \"MHH_CHILD\": 158, \"FHH_CHILD\": 695, \"FAMILIES\": 9550, \"AVE_FAM_SZ\": 3.110000, \"HSE_UNITS\": 13143, \"VACANT\": 480, \"OWNER_OCC\": 10023, \"RENTER_OCC\": 2640 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.92143225146279, 40.123495943364695 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Westlake\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"83622\", \"CAPITAL\": \"N\", \"AREALAND\": 15.898000, \"AREAWATER\": 0.004000, \"POP_CL\": 6, \"POP2000\": 31719, \"WHITE\": 29477, \"BLACK\": 301, \"AMERI_ES\": 18, \"ASIAN\": 1332, \"HAWN_PI\": 5, \"OTHER\": 106, \"MULT_RACE\": 480, \"HISPANIC\": 402, \"MALES\": 14973, \"FEMALES\": 16746, \"AGE_UNDER5\": 1619, \"AGE_5_17\": 5615, \"AGE_18_21\": 985, \"AGE_22_29\": 2451, \"AGE_30_39\": 4091, \"AGE_40_49\": 5517, \"AGE_50_64\": 5662, \"AGE_65_UP\": 5779, \"MED_AGE\": 42.000000, \"MED_AGE_M\": 40.600000, \"MED_AGE_F\": 43.400000, \"HOUSEHOLDS\": 12826, \"AVE_HH_SZ\": 2.370000, \"HSEHLD_1_M\": 1547, \"HSEHLD_1_F\": 2557, \"MARHH_CHD\": 3161, \"MARHH_NO_C\": 4010, \"MHH_CHILD\": 119, \"FHH_CHILD\": 371, \"FAMILIES\": 8195, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 13648, \"VACANT\": 822, \"OWNER_OCC\": 9595, \"RENTER_OCC\": 3231 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.92865770230172, 41.45443890517739 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Whitehall\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"84742\", \"CAPITAL\": \"N\", \"AREALAND\": 5.215000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 19201, \"WHITE\": 14285, \"BLACK\": 3678, \"AMERI_ES\": 74, \"ASIAN\": 391, \"HAWN_PI\": 6, \"OTHER\": 233, \"MULT_RACE\": 534, \"HISPANIC\": 566, \"MALES\": 9297, \"FEMALES\": 9904, \"AGE_UNDER5\": 1389, \"AGE_5_17\": 3478, \"AGE_18_21\": 1042, \"AGE_22_29\": 2293, \"AGE_30_39\": 3077, \"AGE_40_49\": 2933, \"AGE_50_64\": 2685, \"AGE_65_UP\": 2304, \"MED_AGE\": 34.600000, \"MED_AGE_M\": 32.900000, \"MED_AGE_F\": 36.200000, \"HOUSEHOLDS\": 8343, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 1319, \"HSEHLD_1_F\": 1597, \"MARHH_CHD\": 1321, \"MARHH_NO_C\": 1794, \"MHH_CHILD\": 246, \"FHH_CHILD\": 857, \"FAMILIES\": 4928, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 8997, \"VACANT\": 654, \"OWNER_OCC\": 3788, \"RENTER_OCC\": 4555 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.882374257248188, 39.963663942850516 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"White Oak\", \"CLASS\": \"CDP\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"84812\", \"CAPITAL\": \"N\", \"AREALAND\": 4.094000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 13277, \"WHITE\": 12464, \"BLACK\": 471, \"AMERI_ES\": 22, \"ASIAN\": 145, \"HAWN_PI\": 0, \"OTHER\": 54, \"MULT_RACE\": 121, \"HISPANIC\": 143, \"MALES\": 6436, \"FEMALES\": 6841, \"AGE_UNDER5\": 889, \"AGE_5_17\": 2625, \"AGE_18_21\": 627, \"AGE_22_29\": 1279, \"AGE_30_39\": 1932, \"AGE_40_49\": 2059, \"AGE_50_64\": 1934, \"AGE_65_UP\": 1932, \"MED_AGE\": 36.800000, \"MED_AGE_M\": 34.900000, \"MED_AGE_F\": 38.500000, \"HOUSEHOLDS\": 5263, \"AVE_HH_SZ\": 2.520000, \"HSEHLD_1_M\": 523, \"HSEHLD_1_F\": 864, \"MARHH_CHD\": 1330, \"MARHH_NO_C\": 1567, \"MHH_CHILD\": 92, \"FHH_CHILD\": 349, \"FAMILIES\": 3645, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 5464, \"VACANT\": 201, \"OWNER_OCC\": 3742, \"RENTER_OCC\": 1521 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.596903036192572, 39.213992979565631 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wickliffe\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"85036\", \"CAPITAL\": \"N\", \"AREALAND\": 4.653000, \"AREAWATER\": 0.003000, \"POP_CL\": 6, \"POP2000\": 13484, \"WHITE\": 12860, \"BLACK\": 384, \"AMERI_ES\": 6, \"ASIAN\": 106, \"HAWN_PI\": 2, \"OTHER\": 12, \"MULT_RACE\": 114, \"HISPANIC\": 72, \"MALES\": 6556, \"FEMALES\": 6928, \"AGE_UNDER5\": 706, \"AGE_5_17\": 2010, \"AGE_18_21\": 550, \"AGE_22_29\": 1125, \"AGE_30_39\": 1889, \"AGE_40_49\": 1939, \"AGE_50_64\": 2170, \"AGE_65_UP\": 3095, \"MED_AGE\": 42.300000, \"MED_AGE_M\": 39.900000, \"MED_AGE_F\": 44.700000, \"HOUSEHOLDS\": 5604, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 643, \"HSEHLD_1_F\": 980, \"MARHH_CHD\": 1003, \"MARHH_NO_C\": 1977, \"MHH_CHILD\": 69, \"FHH_CHILD\": 229, \"FAMILIES\": 3753, \"AVE_FAM_SZ\": 2.920000, \"HSE_UNITS\": 5787, \"VACANT\": 183, \"OWNER_OCC\": 4730, \"RENTER_OCC\": 874 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.472906046331275, 41.609397887410786 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Willoughby\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"85484\", \"CAPITAL\": \"N\", \"AREALAND\": 10.166000, \"AREAWATER\": 0.064000, \"POP_CL\": 6, \"POP2000\": 22621, \"WHITE\": 21822, \"BLACK\": 258, \"AMERI_ES\": 38, \"ASIAN\": 261, \"HAWN_PI\": 14, \"OTHER\": 25, \"MULT_RACE\": 203, \"HISPANIC\": 161, \"MALES\": 10418, \"FEMALES\": 12203, \"AGE_UNDER5\": 1294, \"AGE_5_17\": 3485, \"AGE_18_21\": 840, \"AGE_22_29\": 2494, \"AGE_30_39\": 3568, \"AGE_40_49\": 3492, \"AGE_50_64\": 3479, \"AGE_65_UP\": 3969, \"MED_AGE\": 39.100000, \"MED_AGE_M\": 36.900000, \"MED_AGE_F\": 40.700000, \"HOUSEHOLDS\": 10265, \"AVE_HH_SZ\": 2.170000, \"HSEHLD_1_M\": 1431, \"HSEHLD_1_F\": 2330, \"MARHH_CHD\": 1737, \"MARHH_NO_C\": 2659, \"MHH_CHILD\": 193, \"FHH_CHILD\": 660, \"FAMILIES\": 5897, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 10700, \"VACANT\": 435, \"OWNER_OCC\": 6142, \"RENTER_OCC\": 4123 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.408516107014393, 41.650196884759715 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Willowick\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"85638\", \"CAPITAL\": \"N\", \"AREALAND\": 2.515000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14361, \"WHITE\": 14052, \"BLACK\": 107, \"AMERI_ES\": 7, \"ASIAN\": 88, \"HAWN_PI\": 0, \"OTHER\": 5, \"MULT_RACE\": 102, \"HISPANIC\": 102, \"MALES\": 6873, \"FEMALES\": 7488, \"AGE_UNDER5\": 738, \"AGE_5_17\": 2306, \"AGE_18_21\": 504, \"AGE_22_29\": 1241, \"AGE_30_39\": 2198, \"AGE_40_49\": 2123, \"AGE_50_64\": 2101, \"AGE_65_UP\": 3150, \"MED_AGE\": 40.900000, \"MED_AGE_M\": 39.000000, \"MED_AGE_F\": 42.700000, \"HOUSEHOLDS\": 6101, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 658, \"HSEHLD_1_F\": 1071, \"MARHH_CHD\": 1182, \"MARHH_NO_C\": 2024, \"MHH_CHILD\": 87, \"FHH_CHILD\": 280, \"FAMILIES\": 4112, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 6272, \"VACANT\": 171, \"OWNER_OCC\": 5076, \"RENTER_OCC\": 1025 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.468291052402179, 41.635079887064066 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wilmington\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"85792\", \"CAPITAL\": \"N\", \"AREALAND\": 7.451000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11921, \"WHITE\": 10807, \"BLACK\": 801, \"AMERI_ES\": 27, \"ASIAN\": 77, \"HAWN_PI\": 1, \"OTHER\": 30, \"MULT_RACE\": 178, \"HISPANIC\": 100, \"MALES\": 5644, \"FEMALES\": 6277, \"AGE_UNDER5\": 902, \"AGE_5_17\": 1927, \"AGE_18_21\": 1314, \"AGE_22_29\": 1434, \"AGE_30_39\": 1538, \"AGE_40_49\": 1605, \"AGE_50_64\": 1524, \"AGE_65_UP\": 1677, \"MED_AGE\": 32.300000, \"MED_AGE_M\": 30.100000, \"MED_AGE_F\": 34.800000, \"HOUSEHOLDS\": 4867, \"AVE_HH_SZ\": 2.280000, \"HSEHLD_1_M\": 607, \"HSEHLD_1_F\": 1034, \"MARHH_CHD\": 877, \"MARHH_NO_C\": 1200, \"MHH_CHILD\": 111, \"FHH_CHILD\": 477, \"FAMILIES\": 2932, \"AVE_FAM_SZ\": 2.920000, \"HSE_UNITS\": 5284, \"VACANT\": 417, \"OWNER_OCC\": 2465, \"RENTER_OCC\": 2402 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.829128091565082, 39.445912966603913 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wooster\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"86548\", \"CAPITAL\": \"N\", \"AREALAND\": 14.374000, \"AREAWATER\": 0.017000, \"POP_CL\": 6, \"POP2000\": 24811, \"WHITE\": 22972, \"BLACK\": 947, \"AMERI_ES\": 64, \"ASIAN\": 383, \"HAWN_PI\": 2, \"OTHER\": 90, \"MULT_RACE\": 353, \"HISPANIC\": 266, \"MALES\": 11843, \"FEMALES\": 12968, \"AGE_UNDER5\": 1550, \"AGE_5_17\": 3901, \"AGE_18_21\": 2532, \"AGE_22_29\": 2716, \"AGE_30_39\": 3076, \"AGE_40_49\": 3565, \"AGE_50_64\": 3787, \"AGE_65_UP\": 3684, \"MED_AGE\": 35.700000, \"MED_AGE_M\": 33.700000, \"MED_AGE_F\": 37.600000, \"HOUSEHOLDS\": 10040, \"AVE_HH_SZ\": 2.280000, \"HSEHLD_1_M\": 1289, \"HSEHLD_1_F\": 1962, \"MARHH_CHD\": 1897, \"MARHH_NO_C\": 2815, \"MHH_CHILD\": 195, \"FHH_CHILD\": 757, \"FAMILIES\": 6171, \"AVE_FAM_SZ\": 2.880000, \"HSE_UNITS\": 10674, \"VACANT\": 634, \"OWNER_OCC\": 5993, \"RENTER_OCC\": 4047 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.937258661520758, 40.809300909131473 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Worthington\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"86604\", \"CAPITAL\": \"N\", \"AREALAND\": 5.662000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14125, \"WHITE\": 13273, \"BLACK\": 241, \"AMERI_ES\": 17, \"ASIAN\": 391, \"HAWN_PI\": 1, \"OTHER\": 31, \"MULT_RACE\": 171, \"HISPANIC\": 138, \"MALES\": 6619, \"FEMALES\": 7506, \"AGE_UNDER5\": 752, \"AGE_5_17\": 2629, \"AGE_18_21\": 448, \"AGE_22_29\": 756, \"AGE_30_39\": 1626, \"AGE_40_49\": 2415, \"AGE_50_64\": 2897, \"AGE_65_UP\": 2602, \"MED_AGE\": 43.900000, \"MED_AGE_M\": 42.000000, \"MED_AGE_F\": 45.500000, \"HOUSEHOLDS\": 5692, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 412, \"HSEHLD_1_F\": 1049, \"MARHH_CHD\": 1469, \"MARHH_NO_C\": 2062, \"MHH_CHILD\": 65, \"FHH_CHILD\": 251, \"FAMILIES\": 4055, \"AVE_FAM_SZ\": 2.920000, \"HSE_UNITS\": 5845, \"VACANT\": 153, \"OWNER_OCC\": 4788, \"RENTER_OCC\": 904 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.020905227396781, 40.091512946189596 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Xenia\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"86772\", \"CAPITAL\": \"N\", \"AREALAND\": 12.147000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 24164, \"WHITE\": 20128, \"BLACK\": 3265, \"AMERI_ES\": 83, \"ASIAN\": 70, \"HAWN_PI\": 12, \"OTHER\": 128, \"MULT_RACE\": 478, \"HISPANIC\": 264, \"MALES\": 11481, \"FEMALES\": 12683, \"AGE_UNDER5\": 1895, \"AGE_5_17\": 4661, \"AGE_18_21\": 1336, \"AGE_22_29\": 2609, \"AGE_30_39\": 3549, \"AGE_40_49\": 3308, \"AGE_50_64\": 3544, \"AGE_65_UP\": 3262, \"MED_AGE\": 34.500000, \"MED_AGE_M\": 32.400000, \"MED_AGE_F\": 36.600000, \"HOUSEHOLDS\": 9378, \"AVE_HH_SZ\": 2.510000, \"HSEHLD_1_M\": 895, \"HSEHLD_1_F\": 1558, \"MARHH_CHD\": 2069, \"MARHH_NO_C\": 2638, \"MHH_CHILD\": 213, \"FHH_CHILD\": 929, \"FAMILIES\": 6523, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 9924, \"VACANT\": 546, \"OWNER_OCC\": 6200, \"RENTER_OCC\": 3178 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.938064083371074, 39.683706968201825 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Youngstown\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"88000\", \"CAPITAL\": \"N\", \"AREALAND\": 33.896000, \"AREAWATER\": 0.350000, \"POP_CL\": 7, \"POP2000\": 82026, \"WHITE\": 41737, \"BLACK\": 35937, \"AMERI_ES\": 246, \"ASIAN\": 267, \"HAWN_PI\": 29, \"OTHER\": 1797, \"MULT_RACE\": 2013, \"HISPANIC\": 4282, \"MALES\": 39278, \"FEMALES\": 42748, \"AGE_UNDER5\": 5851, \"AGE_5_17\": 15312, \"AGE_18_21\": 5005, \"AGE_22_29\": 8503, \"AGE_30_39\": 10138, \"AGE_40_49\": 11901, \"AGE_50_64\": 11017, \"AGE_65_UP\": 14299, \"MED_AGE\": 36.400000, \"MED_AGE_M\": 33.900000, \"MED_AGE_F\": 38.800000, \"HOUSEHOLDS\": 32177, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 4727, \"HSEHLD_1_F\": 6210, \"MARHH_CHD\": 3820, \"MARHH_NO_C\": 6871, \"MHH_CHILD\": 663, \"FHH_CHILD\": 4259, \"FAMILIES\": 19729, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 37159, \"VACANT\": 4982, \"OWNER_OCC\": 20605, \"RENTER_OCC\": 11572 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.64930094792463, 41.096257865081945 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Zanesville\", \"CLASS\": \"city\", \"ST\": \"OH\", \"STFIPS\": \"39\", \"PLACEFIP\": \"88084\", \"CAPITAL\": \"N\", \"AREALAND\": 11.237000, \"AREAWATER\": 0.262000, \"POP_CL\": 6, \"POP2000\": 25586, \"WHITE\": 21870, \"BLACK\": 2753, \"AMERI_ES\": 102, \"ASIAN\": 59, \"HAWN_PI\": 5, \"OTHER\": 107, \"MULT_RACE\": 690, \"HISPANIC\": 202, \"MALES\": 11781, \"FEMALES\": 13805, \"AGE_UNDER5\": 2085, \"AGE_5_17\": 4769, \"AGE_18_21\": 1368, \"AGE_22_29\": 2900, \"AGE_30_39\": 3547, \"AGE_40_49\": 3304, \"AGE_50_64\": 3642, \"AGE_65_UP\": 3971, \"MED_AGE\": 34.800000, \"MED_AGE_M\": 32.400000, \"MED_AGE_F\": 36.700000, \"HOUSEHOLDS\": 10572, \"AVE_HH_SZ\": 2.360000, \"HSEHLD_1_M\": 1254, \"HSEHLD_1_F\": 2274, \"MARHH_CHD\": 1695, \"MARHH_NO_C\": 2373, \"MHH_CHILD\": 275, \"FHH_CHILD\": 1275, \"FAMILIES\": 6438, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 11662, \"VACANT\": 1090, \"OWNER_OCC\": 5772, \"RENTER_OCC\": 4800 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.01215057549895, 39.946048916486248 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ada\", \"CLASS\": \"city\", \"ST\": \"OK\", \"STFIPS\": \"40\", \"PLACEFIP\": \"00200\", \"CAPITAL\": \"N\", \"AREALAND\": 15.701000, \"AREAWATER\": 0.072000, \"POP_CL\": 6, \"POP2000\": 15691, \"WHITE\": 11582, \"BLACK\": 555, \"AMERI_ES\": 2370, \"ASIAN\": 130, \"HAWN_PI\": 2, \"OTHER\": 140, \"MULT_RACE\": 912, \"HISPANIC\": 453, \"MALES\": 7361, \"FEMALES\": 8330, \"AGE_UNDER5\": 1019, \"AGE_5_17\": 2481, \"AGE_18_21\": 1693, \"AGE_22_29\": 2138, \"AGE_30_39\": 1790, \"AGE_40_49\": 1782, \"AGE_50_64\": 2122, \"AGE_65_UP\": 2666, \"MED_AGE\": 32.900000, \"MED_AGE_M\": 28.800000, \"MED_AGE_F\": 37.300000, \"HOUSEHOLDS\": 6697, \"AVE_HH_SZ\": 2.200000, \"HSEHLD_1_M\": 838, \"HSEHLD_1_F\": 1646, \"MARHH_CHD\": 1090, \"MARHH_NO_C\": 1627, \"MHH_CHILD\": 128, \"FHH_CHILD\": 519, \"FAMILIES\": 3801, \"AVE_FAM_SZ\": 2.910000, \"HSE_UNITS\": 7472, \"VACANT\": 775, \"OWNER_OCC\": 3397, \"RENTER_OCC\": 3300 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.668214000067422, 34.76366099988725 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Altus\", \"CLASS\": \"city\", \"ST\": \"OK\", \"STFIPS\": \"40\", \"PLACEFIP\": \"01700\", \"CAPITAL\": \"N\", \"AREALAND\": 16.833000, \"AREAWATER\": 0.201000, \"POP_CL\": 6, \"POP2000\": 21447, \"WHITE\": 15574, \"BLACK\": 2233, \"AMERI_ES\": 318, \"ASIAN\": 295, \"HAWN_PI\": 42, \"OTHER\": 2214, \"MULT_RACE\": 771, \"HISPANIC\": 3699, \"MALES\": 10664, \"FEMALES\": 10783, \"AGE_UNDER5\": 1866, \"AGE_5_17\": 4523, \"AGE_18_21\": 1418, \"AGE_22_29\": 2427, \"AGE_30_39\": 3348, \"AGE_40_49\": 2767, \"AGE_50_64\": 2634, \"AGE_65_UP\": 2464, \"MED_AGE\": 31.600000, \"MED_AGE_M\": 29.900000, \"MED_AGE_F\": 33.400000, \"HOUSEHOLDS\": 7896, \"AVE_HH_SZ\": 2.620000, \"HSEHLD_1_M\": 925, \"HSEHLD_1_F\": 1055, \"MARHH_CHD\": 2212, \"MARHH_NO_C\": 2180, \"MHH_CHILD\": 207, \"FHH_CHILD\": 651, \"FAMILIES\": 5627, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 9264, \"VACANT\": 1368, \"OWNER_OCC\": 4264, \"RENTER_OCC\": 3632 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -99.326603000624885, 34.64375399714374 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ardmore\", \"CLASS\": \"city\", \"ST\": \"OK\", \"STFIPS\": \"40\", \"PLACEFIP\": \"02600\", \"CAPITAL\": \"N\", \"AREALAND\": 49.116000, \"AREAWATER\": 0.870000, \"POP_CL\": 6, \"POP2000\": 23711, \"WHITE\": 17313, \"BLACK\": 2672, \"AMERI_ES\": 2083, \"ASIAN\": 234, \"HAWN_PI\": 4, \"OTHER\": 368, \"MULT_RACE\": 1037, \"HISPANIC\": 877, \"MALES\": 11127, \"FEMALES\": 12584, \"AGE_UNDER5\": 1678, \"AGE_5_17\": 4281, \"AGE_18_21\": 1044, \"AGE_22_29\": 2303, \"AGE_30_39\": 2930, \"AGE_40_49\": 3475, \"AGE_50_64\": 3548, \"AGE_65_UP\": 4452, \"MED_AGE\": 38.900000, \"MED_AGE_M\": 36.800000, \"MED_AGE_F\": 40.900000, \"HOUSEHOLDS\": 9646, \"AVE_HH_SZ\": 2.360000, \"HSEHLD_1_M\": 1022, \"HSEHLD_1_F\": 1985, \"MARHH_CHD\": 1858, \"MARHH_NO_C\": 2715, \"MHH_CHILD\": 212, \"FHH_CHILD\": 828, \"FAMILIES\": 6305, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 10926, \"VACANT\": 1280, \"OWNER_OCC\": 6151, \"RENTER_OCC\": 3495 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.129363000143712, 34.181239999783216 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bartlesville\", \"CLASS\": \"city\", \"ST\": \"OK\", \"STFIPS\": \"40\", \"PLACEFIP\": \"04450\", \"CAPITAL\": \"N\", \"AREALAND\": 21.105000, \"AREAWATER\": 0.022000, \"POP_CL\": 6, \"POP2000\": 34748, \"WHITE\": 28524, \"BLACK\": 1112, \"AMERI_ES\": 2496, \"ASIAN\": 332, \"HAWN_PI\": 6, \"OTHER\": 353, \"MULT_RACE\": 1925, \"HISPANIC\": 1049, \"MALES\": 16484, \"FEMALES\": 18264, \"AGE_UNDER5\": 2148, \"AGE_5_17\": 6518, \"AGE_18_21\": 1752, \"AGE_22_29\": 2946, \"AGE_30_39\": 4023, \"AGE_40_49\": 5279, \"AGE_50_64\": 5645, \"AGE_65_UP\": 6437, \"MED_AGE\": 40.000000, \"MED_AGE_M\": 37.700000, \"MED_AGE_F\": 41.900000, \"HOUSEHOLDS\": 14565, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 1531, \"HSEHLD_1_F\": 2769, \"MARHH_CHD\": 3217, \"MARHH_NO_C\": 4779, \"MHH_CHILD\": 254, \"FHH_CHILD\": 920, \"FAMILIES\": 9830, \"AVE_FAM_SZ\": 2.890000, \"HSE_UNITS\": 16091, \"VACANT\": 1526, \"OWNER_OCC\": 10259, \"RENTER_OCC\": 4306 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.959498000014946, 36.747192999962287 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bethany\", \"CLASS\": \"city\", \"ST\": \"OK\", \"STFIPS\": \"40\", \"PLACEFIP\": \"05700\", \"CAPITAL\": \"N\", \"AREALAND\": 5.211000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 20307, \"WHITE\": 17422, \"BLACK\": 886, \"AMERI_ES\": 583, \"ASIAN\": 281, \"HAWN_PI\": 11, \"OTHER\": 442, \"MULT_RACE\": 682, \"HISPANIC\": 1178, \"MALES\": 9601, \"FEMALES\": 10706, \"AGE_UNDER5\": 1259, \"AGE_5_17\": 3415, \"AGE_18_21\": 1727, \"AGE_22_29\": 2123, \"AGE_30_39\": 2620, \"AGE_40_49\": 2687, \"AGE_50_64\": 3079, \"AGE_65_UP\": 3397, \"MED_AGE\": 36.400000, \"MED_AGE_M\": 33.800000, \"MED_AGE_F\": 38.800000, \"HOUSEHOLDS\": 8161, \"AVE_HH_SZ\": 2.330000, \"HSEHLD_1_M\": 979, \"HSEHLD_1_F\": 1551, \"MARHH_CHD\": 1513, \"MARHH_NO_C\": 2485, \"MHH_CHILD\": 159, \"FHH_CHILD\": 619, \"FAMILIES\": 5277, \"AVE_FAM_SZ\": 2.910000, \"HSE_UNITS\": 8874, \"VACANT\": 713, \"OWNER_OCC\": 5000, \"RENTER_OCC\": 3161 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.638818000236057, 35.504606999514003 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bixby\", \"CLASS\": \"city\", \"ST\": \"OK\", \"STFIPS\": \"40\", \"PLACEFIP\": \"06400\", \"CAPITAL\": \"N\", \"AREALAND\": 24.052000, \"AREAWATER\": 1.041000, \"POP_CL\": 6, \"POP2000\": 13336, \"WHITE\": 11590, \"BLACK\": 125, \"AMERI_ES\": 765, \"ASIAN\": 65, \"HAWN_PI\": 2, \"OTHER\": 261, \"MULT_RACE\": 528, \"HISPANIC\": 530, \"MALES\": 6611, \"FEMALES\": 6725, \"AGE_UNDER5\": 1025, \"AGE_5_17\": 2822, \"AGE_18_21\": 603, \"AGE_22_29\": 1460, \"AGE_30_39\": 2132, \"AGE_40_49\": 2012, \"AGE_50_64\": 1976, \"AGE_65_UP\": 1306, \"MED_AGE\": 33.700000, \"MED_AGE_M\": 32.700000, \"MED_AGE_F\": 34.700000, \"HOUSEHOLDS\": 4903, \"AVE_HH_SZ\": 2.700000, \"HSEHLD_1_M\": 404, \"HSEHLD_1_F\": 498, \"MARHH_CHD\": 1574, \"MARHH_NO_C\": 1618, \"MHH_CHILD\": 128, \"FHH_CHILD\": 285, \"FAMILIES\": 3819, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 5287, \"VACANT\": 384, \"OWNER_OCC\": 3696, \"RENTER_OCC\": 1207 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.878258000013403, 35.960897999969859 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Broken Arrow\", \"CLASS\": \"city\", \"ST\": \"OK\", \"STFIPS\": \"40\", \"PLACEFIP\": \"09050\", \"CAPITAL\": \"N\", \"AREALAND\": 44.988000, \"AREAWATER\": 0.609000, \"POP_CL\": 7, \"POP2000\": 74859, \"WHITE\": 63886, \"BLACK\": 2793, \"AMERI_ES\": 3007, \"ASIAN\": 1425, \"HAWN_PI\": 39, \"OTHER\": 912, \"MULT_RACE\": 2797, \"HISPANIC\": 2664, \"MALES\": 36498, \"FEMALES\": 38361, \"AGE_UNDER5\": 5954, \"AGE_5_17\": 17134, \"AGE_18_21\": 3504, \"AGE_22_29\": 7054, \"AGE_30_39\": 12654, \"AGE_40_49\": 12890, \"AGE_50_64\": 10044, \"AGE_65_UP\": 5625, \"MED_AGE\": 33.300000, \"MED_AGE_M\": 32.300000, \"MED_AGE_F\": 34.100000, \"HOUSEHOLDS\": 26159, \"AVE_HH_SZ\": 2.840000, \"HSEHLD_1_M\": 1621, \"HSEHLD_1_F\": 2490, \"MARHH_CHD\": 9645, \"MARHH_NO_C\": 8156, \"MHH_CHILD\": 510, \"FHH_CHILD\": 1746, \"FAMILIES\": 21167, \"AVE_FAM_SZ\": 3.180000, \"HSE_UNITS\": 27085, \"VACANT\": 926, \"OWNER_OCC\": 20584, \"RENTER_OCC\": 5575 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.783616000010738, 36.036304999974931 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Chickasha\", \"CLASS\": \"city\", \"ST\": \"OK\", \"STFIPS\": \"40\", \"PLACEFIP\": \"13950\", \"CAPITAL\": \"N\", \"AREALAND\": 18.062000, \"AREAWATER\": 0.048000, \"POP_CL\": 6, \"POP2000\": 15850, \"WHITE\": 12870, \"BLACK\": 1339, \"AMERI_ES\": 750, \"ASIAN\": 115, \"HAWN_PI\": 1, \"OTHER\": 241, \"MULT_RACE\": 534, \"HISPANIC\": 596, \"MALES\": 7328, \"FEMALES\": 8522, \"AGE_UNDER5\": 1099, \"AGE_5_17\": 2754, \"AGE_18_21\": 1214, \"AGE_22_29\": 1653, \"AGE_30_39\": 2041, \"AGE_40_49\": 2159, \"AGE_50_64\": 2197, \"AGE_65_UP\": 2733, \"MED_AGE\": 36.300000, \"MED_AGE_M\": 34.000000, \"MED_AGE_F\": 38.500000, \"HOUSEHOLDS\": 6434, \"AVE_HH_SZ\": 2.340000, \"HSEHLD_1_M\": 712, \"HSEHLD_1_F\": 1333, \"MARHH_CHD\": 1234, \"MARHH_NO_C\": 1767, \"MHH_CHILD\": 120, \"FHH_CHILD\": 549, \"FAMILIES\": 4113, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 7424, \"VACANT\": 990, \"OWNER_OCC\": 3986, \"RENTER_OCC\": 2448 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.946021000343919, 35.038430999314677 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Claremore\", \"CLASS\": \"city\", \"ST\": \"OK\", \"STFIPS\": \"40\", \"PLACEFIP\": \"14700\", \"CAPITAL\": \"N\", \"AREALAND\": 12.030000, \"AREAWATER\": 0.245000, \"POP_CL\": 6, \"POP2000\": 15873, \"WHITE\": 12015, \"BLACK\": 316, \"AMERI_ES\": 2271, \"ASIAN\": 70, \"HAWN_PI\": 4, \"OTHER\": 178, \"MULT_RACE\": 1019, \"HISPANIC\": 479, \"MALES\": 7498, \"FEMALES\": 8375, \"AGE_UNDER5\": 1156, \"AGE_5_17\": 3087, \"AGE_18_21\": 892, \"AGE_22_29\": 1635, \"AGE_30_39\": 2192, \"AGE_40_49\": 2026, \"AGE_50_64\": 2201, \"AGE_65_UP\": 2684, \"MED_AGE\": 35.700000, \"MED_AGE_M\": 34.000000, \"MED_AGE_F\": 37.200000, \"HOUSEHOLDS\": 6283, \"AVE_HH_SZ\": 2.430000, \"HSEHLD_1_M\": 641, \"HSEHLD_1_F\": 1224, \"MARHH_CHD\": 1465, \"MARHH_NO_C\": 1652, \"MHH_CHILD\": 155, \"FHH_CHILD\": 488, \"FAMILIES\": 4164, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 6784, \"VACANT\": 501, \"OWNER_OCC\": 3909, \"RENTER_OCC\": 2374 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.612784000006982, 36.315180999981997 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Del City\", \"CLASS\": \"city\", \"ST\": \"OK\", \"STFIPS\": \"40\", \"PLACEFIP\": \"19900\", \"CAPITAL\": \"N\", \"AREALAND\": 7.537000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 22128, \"WHITE\": 16427, \"BLACK\": 3106, \"AMERI_ES\": 942, \"ASIAN\": 349, \"HAWN_PI\": 25, \"OTHER\": 406, \"MULT_RACE\": 873, \"HISPANIC\": 1043, \"MALES\": 10499, \"FEMALES\": 11629, \"AGE_UNDER5\": 1636, \"AGE_5_17\": 4183, \"AGE_18_21\": 1373, \"AGE_22_29\": 2539, \"AGE_30_39\": 2898, \"AGE_40_49\": 2978, \"AGE_50_64\": 3281, \"AGE_65_UP\": 3240, \"MED_AGE\": 34.700000, \"MED_AGE_M\": 32.800000, \"MED_AGE_F\": 36.300000, \"HOUSEHOLDS\": 9045, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 1020, \"HSEHLD_1_F\": 1440, \"MARHH_CHD\": 1689, \"MARHH_NO_C\": 2530, \"MHH_CHILD\": 249, \"FHH_CHILD\": 926, \"FAMILIES\": 6185, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 9725, \"VACANT\": 680, \"OWNER_OCC\": 5744, \"RENTER_OCC\": 3301 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.441149000190123, 35.442710999627046 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Duncan\", \"CLASS\": \"city\", \"ST\": \"OK\", \"STFIPS\": \"40\", \"PLACEFIP\": \"21900\", \"CAPITAL\": \"N\", \"AREALAND\": 38.791000, \"AREAWATER\": 7.208000, \"POP_CL\": 6, \"POP2000\": 22505, \"WHITE\": 19462, \"BLACK\": 915, \"AMERI_ES\": 889, \"ASIAN\": 106, \"HAWN_PI\": 10, \"OTHER\": 531, \"MULT_RACE\": 592, \"HISPANIC\": 1349, \"MALES\": 10647, \"FEMALES\": 11858, \"AGE_UNDER5\": 1494, \"AGE_5_17\": 3930, \"AGE_18_21\": 1080, \"AGE_22_29\": 2005, \"AGE_30_39\": 2647, \"AGE_40_49\": 3293, \"AGE_50_64\": 3515, \"AGE_65_UP\": 4541, \"MED_AGE\": 40.300000, \"MED_AGE_M\": 38.100000, \"MED_AGE_F\": 42.100000, \"HOUSEHOLDS\": 9406, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 974, \"HSEHLD_1_F\": 1741, \"MARHH_CHD\": 1974, \"MARHH_NO_C\": 3164, \"MHH_CHILD\": 156, \"FHH_CHILD\": 576, \"FAMILIES\": 6420, \"AVE_FAM_SZ\": 2.880000, \"HSE_UNITS\": 10795, \"VACANT\": 1389, \"OWNER_OCC\": 6560, \"RENTER_OCC\": 2846 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.949377000371527, 34.516618999341809 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Durant\", \"CLASS\": \"city\", \"ST\": \"OK\", \"STFIPS\": \"40\", \"PLACEFIP\": \"22050\", \"CAPITAL\": \"N\", \"AREALAND\": 19.026000, \"AREAWATER\": 0.031000, \"POP_CL\": 6, \"POP2000\": 13549, \"WHITE\": 10702, \"BLACK\": 209, \"AMERI_ES\": 1663, \"ASIAN\": 122, \"HAWN_PI\": 6, \"OTHER\": 213, \"MULT_RACE\": 634, \"HISPANIC\": 483, \"MALES\": 6436, \"FEMALES\": 7113, \"AGE_UNDER5\": 922, \"AGE_5_17\": 2219, \"AGE_18_21\": 1506, \"AGE_22_29\": 1953, \"AGE_30_39\": 1578, \"AGE_40_49\": 1500, \"AGE_50_64\": 1691, \"AGE_65_UP\": 2180, \"MED_AGE\": 31.000000, \"MED_AGE_M\": 28.500000, \"MED_AGE_F\": 34.200000, \"HOUSEHOLDS\": 5488, \"AVE_HH_SZ\": 2.320000, \"HSEHLD_1_M\": 668, \"HSEHLD_1_F\": 1136, \"MARHH_CHD\": 993, \"MARHH_NO_C\": 1357, \"MHH_CHILD\": 113, \"FHH_CHILD\": 455, \"FAMILIES\": 3310, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 6082, \"VACANT\": 594, \"OWNER_OCC\": 2825, \"RENTER_OCC\": 2663 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.384825000043293, 33.999833999934609 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Edmond\", \"CLASS\": \"city\", \"ST\": \"OK\", \"STFIPS\": \"40\", \"PLACEFIP\": \"23200\", \"CAPITAL\": \"N\", \"AREALAND\": 85.136000, \"AREAWATER\": 2.813000, \"POP_CL\": 7, \"POP2000\": 68315, \"WHITE\": 59144, \"BLACK\": 2760, \"AMERI_ES\": 1554, \"ASIAN\": 2225, \"HAWN_PI\": 53, \"OTHER\": 617, \"MULT_RACE\": 1962, \"HISPANIC\": 1881, \"MALES\": 33046, \"FEMALES\": 35269, \"AGE_UNDER5\": 4750, \"AGE_5_17\": 14034, \"AGE_18_21\": 4797, \"AGE_22_29\": 7388, \"AGE_30_39\": 9731, \"AGE_40_49\": 11602, \"AGE_50_64\": 10001, \"AGE_65_UP\": 6012, \"MED_AGE\": 33.600000, \"MED_AGE_M\": 32.100000, \"MED_AGE_F\": 35.000000, \"HOUSEHOLDS\": 25256, \"AVE_HH_SZ\": 2.630000, \"HSEHLD_1_M\": 2026, \"HSEHLD_1_F\": 3175, \"MARHH_CHD\": 7994, \"MARHH_NO_C\": 7640, \"MHH_CHILD\": 356, \"FHH_CHILD\": 1583, \"FAMILIES\": 18597, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 26380, \"VACANT\": 1124, \"OWNER_OCC\": 18390, \"RENTER_OCC\": 6866 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.464916000190271, 35.65715399960817 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Elk City\", \"CLASS\": \"city\", \"ST\": \"OK\", \"STFIPS\": \"40\", \"PLACEFIP\": \"23500\", \"CAPITAL\": \"N\", \"AREALAND\": 14.621000, \"AREAWATER\": 0.278000, \"POP_CL\": 6, \"POP2000\": 10510, \"WHITE\": 9349, \"BLACK\": 322, \"AMERI_ES\": 317, \"ASIAN\": 57, \"HAWN_PI\": 3, \"OTHER\": 236, \"MULT_RACE\": 226, \"HISPANIC\": 626, \"MALES\": 5043, \"FEMALES\": 5467, \"AGE_UNDER5\": 779, \"AGE_5_17\": 2083, \"AGE_18_21\": 579, \"AGE_22_29\": 1079, \"AGE_30_39\": 1405, \"AGE_40_49\": 1543, \"AGE_50_64\": 1414, \"AGE_65_UP\": 1628, \"MED_AGE\": 35.800000, \"MED_AGE_M\": 34.000000, \"MED_AGE_F\": 37.200000, \"HOUSEHOLDS\": 4159, \"AVE_HH_SZ\": 2.470000, \"HSEHLD_1_M\": 462, \"HSEHLD_1_F\": 707, \"MARHH_CHD\": 985, \"MARHH_NO_C\": 1153, \"MHH_CHILD\": 123, \"FHH_CHILD\": 324, \"FAMILIES\": 2821, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 4973, \"VACANT\": 814, \"OWNER_OCC\": 2767, \"RENTER_OCC\": 1392 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -99.423812000253179, 35.402693996674422 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"El Reno\", \"CLASS\": \"city\", \"ST\": \"OK\", \"STFIPS\": \"40\", \"PLACEFIP\": \"23700\", \"CAPITAL\": \"N\", \"AREALAND\": 79.975000, \"AREAWATER\": 0.450000, \"POP_CL\": 6, \"POP2000\": 16212, \"WHITE\": 12384, \"BLACK\": 1273, \"AMERI_ES\": 1594, \"ASIAN\": 103, \"HAWN_PI\": 3, \"OTHER\": 377, \"MULT_RACE\": 478, \"HISPANIC\": 1219, \"MALES\": 8661, \"FEMALES\": 7551, \"AGE_UNDER5\": 1045, \"AGE_5_17\": 2883, \"AGE_18_21\": 993, \"AGE_22_29\": 2018, \"AGE_30_39\": 2444, \"AGE_40_49\": 2339, \"AGE_50_64\": 2319, \"AGE_65_UP\": 2171, \"MED_AGE\": 35.200000, \"MED_AGE_M\": 33.800000, \"MED_AGE_F\": 37.000000, \"HOUSEHOLDS\": 5727, \"AVE_HH_SZ\": 2.500000, \"HSEHLD_1_M\": 648, \"HSEHLD_1_F\": 984, \"MARHH_CHD\": 1216, \"MARHH_NO_C\": 1650, \"MHH_CHILD\": 151, \"FHH_CHILD\": 447, \"FAMILIES\": 3842, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 6484, \"VACANT\": 757, \"OWNER_OCC\": 3718, \"RENTER_OCC\": 2009 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.957529000321074, 35.530260999276315 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Enid\", \"CLASS\": \"city\", \"ST\": \"OK\", \"STFIPS\": \"40\", \"PLACEFIP\": \"23950\", \"CAPITAL\": \"N\", \"AREALAND\": 73.974000, \"AREAWATER\": 0.086000, \"POP_CL\": 6, \"POP2000\": 47045, \"WHITE\": 41015, \"BLACK\": 1840, \"AMERI_ES\": 999, \"ASIAN\": 472, \"HAWN_PI\": 271, \"OTHER\": 1112, \"MULT_RACE\": 1336, \"HISPANIC\": 2232, \"MALES\": 22683, \"FEMALES\": 24362, \"AGE_UNDER5\": 3266, \"AGE_5_17\": 8391, \"AGE_18_21\": 2513, \"AGE_22_29\": 5055, \"AGE_30_39\": 6330, \"AGE_40_49\": 6921, \"AGE_50_64\": 6854, \"AGE_65_UP\": 7715, \"MED_AGE\": 37.200000, \"MED_AGE_M\": 35.200000, \"MED_AGE_F\": 39.000000, \"HOUSEHOLDS\": 18955, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 2224, \"HSEHLD_1_F\": 3286, \"MARHH_CHD\": 4081, \"MARHH_NO_C\": 5698, \"MHH_CHILD\": 420, \"FHH_CHILD\": 1356, \"FAMILIES\": 12565, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 21255, \"VACANT\": 2300, \"OWNER_OCC\": 12738, \"RENTER_OCC\": 6217 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.880784000255673, 36.400582999293434 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Guymon\", \"CLASS\": \"city\", \"ST\": \"OK\", \"STFIPS\": \"40\", \"PLACEFIP\": \"31750\", \"CAPITAL\": \"N\", \"AREALAND\": 7.307000, \"AREAWATER\": 0.016000, \"POP_CL\": 6, \"POP2000\": 10472, \"WHITE\": 7376, \"BLACK\": 88, \"AMERI_ES\": 138, \"ASIAN\": 89, \"HAWN_PI\": 18, \"OTHER\": 2457, \"MULT_RACE\": 306, \"HISPANIC\": 4018, \"MALES\": 5391, \"FEMALES\": 5081, \"AGE_UNDER5\": 944, \"AGE_5_17\": 2105, \"AGE_18_21\": 696, \"AGE_22_29\": 1494, \"AGE_30_39\": 1537, \"AGE_40_49\": 1385, \"AGE_50_64\": 1265, \"AGE_65_UP\": 1046, \"MED_AGE\": 30.000000, \"MED_AGE_M\": 29.400000, \"MED_AGE_F\": 30.700000, \"HOUSEHOLDS\": 3651, \"AVE_HH_SZ\": 2.820000, \"HSEHLD_1_M\": 346, \"HSEHLD_1_F\": 439, \"MARHH_CHD\": 1137, \"MARHH_NO_C\": 1017, \"MHH_CHILD\": 94, \"FHH_CHILD\": 221, \"FAMILIES\": 2634, \"AVE_FAM_SZ\": 3.260000, \"HSE_UNITS\": 3941, \"VACANT\": 290, \"OWNER_OCC\": 2310, \"RENTER_OCC\": 1341 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -101.479581972999895, 36.685382981953005 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lawton\", \"CLASS\": \"city\", \"ST\": \"OK\", \"STFIPS\": \"40\", \"PLACEFIP\": \"41850\", \"CAPITAL\": \"N\", \"AREALAND\": 75.140000, \"AREAWATER\": 0.000000, \"POP_CL\": 7, \"POP2000\": 92757, \"WHITE\": 56897, \"BLACK\": 21388, \"AMERI_ES\": 3534, \"ASIAN\": 2285, \"HAWN_PI\": 407, \"OTHER\": 3675, \"MULT_RACE\": 4571, \"HISPANIC\": 8719, \"MALES\": 48335, \"FEMALES\": 44422, \"AGE_UNDER5\": 7751, \"AGE_5_17\": 18063, \"AGE_18_21\": 8586, \"AGE_22_29\": 13798, \"AGE_30_39\": 14397, \"AGE_40_49\": 11615, \"AGE_50_64\": 9938, \"AGE_65_UP\": 8609, \"MED_AGE\": 28.900000, \"MED_AGE_M\": 27.300000, \"MED_AGE_F\": 30.900000, \"HOUSEHOLDS\": 31778, \"AVE_HH_SZ\": 2.610000, \"HSEHLD_1_M\": 3646, \"HSEHLD_1_F\": 4156, \"MARHH_CHD\": 8528, \"MARHH_NO_C\": 7906, \"MHH_CHILD\": 748, \"FHH_CHILD\": 3323, \"FAMILIES\": 22521, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 36433, \"VACANT\": 4655, \"OWNER_OCC\": 17397, \"RENTER_OCC\": 14381 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -98.417781000541339, 34.609423998863093 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"McAlester\", \"CLASS\": \"city\", \"ST\": \"OK\", \"STFIPS\": \"40\", \"PLACEFIP\": \"44800\", \"CAPITAL\": \"N\", \"AREALAND\": 15.693000, \"AREAWATER\": 0.139000, \"POP_CL\": 6, \"POP2000\": 17783, \"WHITE\": 13288, \"BLACK\": 1544, \"AMERI_ES\": 1863, \"ASIAN\": 70, \"HAWN_PI\": 9, \"OTHER\": 230, \"MULT_RACE\": 779, \"HISPANIC\": 541, \"MALES\": 9226, \"FEMALES\": 8557, \"AGE_UNDER5\": 1041, \"AGE_5_17\": 2906, \"AGE_18_21\": 824, \"AGE_22_29\": 1980, \"AGE_30_39\": 2759, \"AGE_40_49\": 2522, \"AGE_50_64\": 2545, \"AGE_65_UP\": 3206, \"MED_AGE\": 37.900000, \"MED_AGE_M\": 34.900000, \"MED_AGE_F\": 42.100000, \"HOUSEHOLDS\": 6584, \"AVE_HH_SZ\": 2.310000, \"HSEHLD_1_M\": 744, \"HSEHLD_1_F\": 1477, \"MARHH_CHD\": 1249, \"MARHH_NO_C\": 1817, \"MHH_CHILD\": 123, \"FHH_CHILD\": 543, \"FAMILIES\": 4190, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 7374, \"VACANT\": 790, \"OWNER_OCC\": 4368, \"RENTER_OCC\": 2216 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.766363000011225, 34.933015999978018 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Miami\", \"CLASS\": \"city\", \"ST\": \"OK\", \"STFIPS\": \"40\", \"PLACEFIP\": \"48000\", \"CAPITAL\": \"N\", \"AREALAND\": 9.714000, \"AREAWATER\": 0.084000, \"POP_CL\": 6, \"POP2000\": 13704, \"WHITE\": 10329, \"BLACK\": 164, \"AMERI_ES\": 2100, \"ASIAN\": 64, \"HAWN_PI\": 30, \"OTHER\": 128, \"MULT_RACE\": 889, \"HISPANIC\": 322, \"MALES\": 6438, \"FEMALES\": 7266, \"AGE_UNDER5\": 903, \"AGE_5_17\": 2416, \"AGE_18_21\": 1181, \"AGE_22_29\": 1319, \"AGE_30_39\": 1653, \"AGE_40_49\": 1608, \"AGE_50_64\": 1965, \"AGE_65_UP\": 2659, \"MED_AGE\": 36.500000, \"MED_AGE_M\": 33.100000, \"MED_AGE_F\": 39.300000, \"HOUSEHOLDS\": 5580, \"AVE_HH_SZ\": 2.310000, \"HSEHLD_1_M\": 588, \"HSEHLD_1_F\": 1235, \"MARHH_CHD\": 1065, \"MARHH_NO_C\": 1626, \"MHH_CHILD\": 113, \"FHH_CHILD\": 429, \"FAMILIES\": 3568, \"AVE_FAM_SZ\": 2.920000, \"HSE_UNITS\": 6111, \"VACANT\": 531, \"OWNER_OCC\": 3671, \"RENTER_OCC\": 1909 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.876018000000727, 36.883538999996063 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Midwest City\", \"CLASS\": \"city\", \"ST\": \"OK\", \"STFIPS\": \"40\", \"PLACEFIP\": \"48350\", \"CAPITAL\": \"N\", \"AREALAND\": 24.594000, \"AREAWATER\": 0.004000, \"POP_CL\": 7, \"POP2000\": 54088, \"WHITE\": 37568, \"BLACK\": 10573, \"AMERI_ES\": 1887, \"ASIAN\": 892, \"HAWN_PI\": 66, \"OTHER\": 835, \"MULT_RACE\": 2267, \"HISPANIC\": 2192, \"MALES\": 25836, \"FEMALES\": 28252, \"AGE_UNDER5\": 3970, \"AGE_5_17\": 10349, \"AGE_18_21\": 3283, \"AGE_22_29\": 6546, \"AGE_30_39\": 7420, \"AGE_40_49\": 7853, \"AGE_50_64\": 7536, \"AGE_65_UP\": 7131, \"MED_AGE\": 34.200000, \"MED_AGE_M\": 31.900000, \"MED_AGE_F\": 36.100000, \"HOUSEHOLDS\": 22161, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 2755, \"HSEHLD_1_F\": 3593, \"MARHH_CHD\": 4199, \"MARHH_NO_C\": 6034, \"MHH_CHILD\": 503, \"FHH_CHILD\": 2346, \"FAMILIES\": 14761, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 23853, \"VACANT\": 1692, \"OWNER_OCC\": 13564, \"RENTER_OCC\": 8597 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.384292000177069, 35.462243999654071 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Moore\", \"CLASS\": \"city\", \"ST\": \"OK\", \"STFIPS\": \"40\", \"PLACEFIP\": \"49200\", \"CAPITAL\": \"N\", \"AREALAND\": 21.734000, \"AREAWATER\": 0.139000, \"POP_CL\": 6, \"POP2000\": 41138, \"WHITE\": 34814, \"BLACK\": 1201, \"AMERI_ES\": 1704, \"ASIAN\": 667, \"HAWN_PI\": 20, \"OTHER\": 720, \"MULT_RACE\": 2012, \"HISPANIC\": 2098, \"MALES\": 19896, \"FEMALES\": 21242, \"AGE_UNDER5\": 3161, \"AGE_5_17\": 8949, \"AGE_18_21\": 2286, \"AGE_22_29\": 4863, \"AGE_30_39\": 6693, \"AGE_40_49\": 6332, \"AGE_50_64\": 5877, \"AGE_65_UP\": 2977, \"MED_AGE\": 32.000000, \"MED_AGE_M\": 31.000000, \"MED_AGE_F\": 33.000000, \"HOUSEHOLDS\": 14848, \"AVE_HH_SZ\": 2.750000, \"HSEHLD_1_M\": 1117, \"HSEHLD_1_F\": 1578, \"MARHH_CHD\": 4529, \"MARHH_NO_C\": 4444, \"MHH_CHILD\": 381, \"FHH_CHILD\": 1299, \"FAMILIES\": 11565, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 15801, \"VACANT\": 953, \"OWNER_OCC\": 11249, \"RENTER_OCC\": 3599 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.487584000203498, 35.338812999606574 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Muskogee\", \"CLASS\": \"city\", \"ST\": \"OK\", \"STFIPS\": \"40\", \"PLACEFIP\": \"50050\", \"CAPITAL\": \"N\", \"AREALAND\": 37.338000, \"AREAWATER\": 1.426000, \"POP_CL\": 6, \"POP2000\": 38310, \"WHITE\": 23414, \"BLACK\": 6856, \"AMERI_ES\": 4727, \"ASIAN\": 343, \"HAWN_PI\": 8, \"OTHER\": 601, \"MULT_RACE\": 2361, \"HISPANIC\": 1258, \"MALES\": 18019, \"FEMALES\": 20291, \"AGE_UNDER5\": 2870, \"AGE_5_17\": 6983, \"AGE_18_21\": 2197, \"AGE_22_29\": 3932, \"AGE_30_39\": 4766, \"AGE_40_49\": 5248, \"AGE_50_64\": 5657, \"AGE_65_UP\": 6657, \"MED_AGE\": 36.900000, \"MED_AGE_M\": 34.100000, \"MED_AGE_F\": 39.400000, \"HOUSEHOLDS\": 15523, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 1809, \"HSEHLD_1_F\": 3123, \"MARHH_CHD\": 2854, \"MARHH_NO_C\": 4155, \"MHH_CHILD\": 288, \"FHH_CHILD\": 1404, \"FAMILIES\": 9951, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 17517, \"VACANT\": 1994, \"OWNER_OCC\": 9612, \"RENTER_OCC\": 5911 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.368047000003841, 35.746616999989918 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mustang\", \"CLASS\": \"city\", \"ST\": \"OK\", \"STFIPS\": \"40\", \"PLACEFIP\": \"50100\", \"CAPITAL\": \"N\", \"AREALAND\": 12.005000, \"AREAWATER\": 0.028000, \"POP_CL\": 6, \"POP2000\": 13156, \"WHITE\": 12055, \"BLACK\": 77, \"AMERI_ES\": 438, \"ASIAN\": 66, \"HAWN_PI\": 12, \"OTHER\": 103, \"MULT_RACE\": 405, \"HISPANIC\": 396, \"MALES\": 6403, \"FEMALES\": 6753, \"AGE_UNDER5\": 949, \"AGE_5_17\": 2940, \"AGE_18_21\": 601, \"AGE_22_29\": 1280, \"AGE_30_39\": 2130, \"AGE_40_49\": 2089, \"AGE_50_64\": 2041, \"AGE_65_UP\": 1126, \"MED_AGE\": 34.300000, \"MED_AGE_M\": 32.900000, \"MED_AGE_F\": 35.300000, \"HOUSEHOLDS\": 4721, \"AVE_HH_SZ\": 2.760000, \"HSEHLD_1_M\": 288, \"HSEHLD_1_F\": 483, \"MARHH_CHD\": 1554, \"MARHH_NO_C\": 1592, \"MHH_CHILD\": 121, \"FHH_CHILD\": 338, \"FAMILIES\": 3799, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 4930, \"VACANT\": 209, \"OWNER_OCC\": 3651, \"RENTER_OCC\": 1070 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.722905000262088, 35.392643999463999 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Norman\", \"CLASS\": \"city\", \"ST\": \"OK\", \"STFIPS\": \"40\", \"PLACEFIP\": \"52500\", \"CAPITAL\": \"N\", \"AREALAND\": 177.006000, \"AREAWATER\": 12.498000, \"POP_CL\": 7, \"POP2000\": 95694, \"WHITE\": 78812, \"BLACK\": 4080, \"AMERI_ES\": 4262, \"ASIAN\": 3342, \"HAWN_PI\": 48, \"OTHER\": 1313, \"MULT_RACE\": 3837, \"HISPANIC\": 3723, \"MALES\": 48085, \"FEMALES\": 47609, \"AGE_UNDER5\": 5673, \"AGE_5_17\": 14656, \"AGE_18_21\": 12639, \"AGE_22_29\": 15901, \"AGE_30_39\": 12983, \"AGE_40_49\": 13141, \"AGE_50_64\": 12107, \"AGE_65_UP\": 8594, \"MED_AGE\": 29.300000, \"MED_AGE_M\": 28.000000, \"MED_AGE_F\": 30.900000, \"HOUSEHOLDS\": 38834, \"AVE_HH_SZ\": 2.310000, \"HSEHLD_1_M\": 5571, \"HSEHLD_1_F\": 6207, \"MARHH_CHD\": 7886, \"MARHH_NO_C\": 9621, \"MHH_CHILD\": 636, \"FHH_CHILD\": 2241, \"FAMILIES\": 22560, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 41547, \"VACANT\": 2713, \"OWNER_OCC\": 21441, \"RENTER_OCC\": 17393 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.418236000189921, 35.221616999644958 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Oklahoma City\", \"CLASS\": \"city\", \"ST\": \"OK\", \"STFIPS\": \"40\", \"PLACEFIP\": \"55000\", \"CAPITAL\": \"Y\", \"AREALAND\": 606.983000, \"AREAWATER\": 14.163000, \"POP_CL\": 9, \"POP2000\": 506132, \"WHITE\": 346226, \"BLACK\": 77810, \"AMERI_ES\": 17743, \"ASIAN\": 17595, \"HAWN_PI\": 360, \"OTHER\": 26705, \"MULT_RACE\": 19693, \"HISPANIC\": 51368, \"MALES\": 247313, \"FEMALES\": 258819, \"AGE_UNDER5\": 37194, \"AGE_5_17\": 92080, \"AGE_18_21\": 30345, \"AGE_22_29\": 64229, \"AGE_30_39\": 75784, \"AGE_40_49\": 75598, \"AGE_50_64\": 72804, \"AGE_65_UP\": 58098, \"MED_AGE\": 34.000000, \"MED_AGE_M\": 32.700000, \"MED_AGE_F\": 35.300000, \"HOUSEHOLDS\": 204434, \"AVE_HH_SZ\": 2.410000, \"HSEHLD_1_M\": 28658, \"HSEHLD_1_F\": 34149, \"MARHH_CHD\": 41319, \"MARHH_NO_C\": 52328, \"MHH_CHILD\": 4540, \"FHH_CHILD\": 17093, \"FAMILIES\": 129360, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 228149, \"VACANT\": 23715, \"OWNER_OCC\": 121528, \"RENTER_OCC\": 82906 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.534994000211071, 35.482308999576134 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Okmulgee\", \"CLASS\": \"city\", \"ST\": \"OK\", \"STFIPS\": \"40\", \"PLACEFIP\": \"55150\", \"CAPITAL\": \"N\", \"AREALAND\": 12.821000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 13022, \"WHITE\": 7663, \"BLACK\": 2773, \"AMERI_ES\": 1772, \"ASIAN\": 38, \"HAWN_PI\": 3, \"OTHER\": 69, \"MULT_RACE\": 704, \"HISPANIC\": 238, \"MALES\": 6287, \"FEMALES\": 6735, \"AGE_UNDER5\": 951, \"AGE_5_17\": 2356, \"AGE_18_21\": 1111, \"AGE_22_29\": 1308, \"AGE_30_39\": 1497, \"AGE_40_49\": 1646, \"AGE_50_64\": 2003, \"AGE_65_UP\": 2150, \"MED_AGE\": 35.500000, \"MED_AGE_M\": 31.300000, \"MED_AGE_F\": 39.500000, \"HOUSEHOLDS\": 5135, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 678, \"HSEHLD_1_F\": 968, \"MARHH_CHD\": 867, \"MARHH_NO_C\": 1325, \"MHH_CHILD\": 113, \"FHH_CHILD\": 558, \"FAMILIES\": 3292, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 5948, \"VACANT\": 813, \"OWNER_OCC\": 3151, \"RENTER_OCC\": 1984 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.963254000016576, 35.624557999965347 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Owasso\", \"CLASS\": \"city\", \"ST\": \"OK\", \"STFIPS\": \"40\", \"PLACEFIP\": \"56650\", \"CAPITAL\": \"N\", \"AREALAND\": 10.032000, \"AREAWATER\": 0.014000, \"POP_CL\": 6, \"POP2000\": 18502, \"WHITE\": 16033, \"BLACK\": 296, \"AMERI_ES\": 932, \"ASIAN\": 194, \"HAWN_PI\": 1, \"OTHER\": 309, \"MULT_RACE\": 737, \"HISPANIC\": 729, \"MALES\": 8931, \"FEMALES\": 9571, \"AGE_UNDER5\": 1660, \"AGE_5_17\": 4319, \"AGE_18_21\": 843, \"AGE_22_29\": 1844, \"AGE_30_39\": 3369, \"AGE_40_49\": 2818, \"AGE_50_64\": 2019, \"AGE_65_UP\": 1630, \"MED_AGE\": 31.700000, \"MED_AGE_M\": 30.800000, \"MED_AGE_F\": 32.700000, \"HOUSEHOLDS\": 6595, \"AVE_HH_SZ\": 2.760000, \"HSEHLD_1_M\": 560, \"HSEHLD_1_F\": 726, \"MARHH_CHD\": 2377, \"MARHH_NO_C\": 1797, \"MHH_CHILD\": 152, \"FHH_CHILD\": 534, \"FAMILIES\": 5120, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 7004, \"VACANT\": 409, \"OWNER_OCC\": 4764, \"RENTER_OCC\": 1831 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.82864000001166, 36.29037299997195 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ponca City\", \"CLASS\": \"city\", \"ST\": \"OK\", \"STFIPS\": \"40\", \"PLACEFIP\": \"59850\", \"CAPITAL\": \"N\", \"AREALAND\": 18.113000, \"AREAWATER\": 1.209000, \"POP_CL\": 6, \"POP2000\": 25919, \"WHITE\": 21818, \"BLACK\": 774, \"AMERI_ES\": 1626, \"ASIAN\": 181, \"HAWN_PI\": 8, \"OTHER\": 540, \"MULT_RACE\": 972, \"HISPANIC\": 1149, \"MALES\": 12326, \"FEMALES\": 13593, \"AGE_UNDER5\": 1856, \"AGE_5_17\": 4942, \"AGE_18_21\": 1302, \"AGE_22_29\": 2347, \"AGE_30_39\": 3227, \"AGE_40_49\": 3773, \"AGE_50_64\": 3897, \"AGE_65_UP\": 4575, \"MED_AGE\": 38.200000, \"MED_AGE_M\": 36.100000, \"MED_AGE_F\": 39.900000, \"HOUSEHOLDS\": 10636, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 1236, \"HSEHLD_1_F\": 1953, \"MARHH_CHD\": 2289, \"MARHH_NO_C\": 3168, \"MHH_CHILD\": 248, \"FHH_CHILD\": 798, \"FAMILIES\": 7025, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 11871, \"VACANT\": 1235, \"OWNER_OCC\": 7241, \"RENTER_OCC\": 3395 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.072431000101375, 36.71242199975385 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sand Springs\", \"CLASS\": \"city\", \"ST\": \"OK\", \"STFIPS\": \"40\", \"PLACEFIP\": \"65300\", \"CAPITAL\": \"N\", \"AREALAND\": 18.680000, \"AREAWATER\": 2.267000, \"POP_CL\": 6, \"POP2000\": 17451, \"WHITE\": 14981, \"BLACK\": 323, \"AMERI_ES\": 1245, \"ASIAN\": 76, \"HAWN_PI\": 3, \"OTHER\": 82, \"MULT_RACE\": 741, \"HISPANIC\": 360, \"MALES\": 8393, \"FEMALES\": 9058, \"AGE_UNDER5\": 1183, \"AGE_5_17\": 3776, \"AGE_18_21\": 892, \"AGE_22_29\": 1574, \"AGE_30_39\": 2626, \"AGE_40_49\": 2676, \"AGE_50_64\": 2587, \"AGE_65_UP\": 2137, \"MED_AGE\": 35.100000, \"MED_AGE_M\": 33.100000, \"MED_AGE_F\": 36.800000, \"HOUSEHOLDS\": 6564, \"AVE_HH_SZ\": 2.590000, \"HSEHLD_1_M\": 537, \"HSEHLD_1_F\": 950, \"MARHH_CHD\": 1832, \"MARHH_NO_C\": 1992, \"MHH_CHILD\": 140, \"FHH_CHILD\": 529, \"FAMILIES\": 4869, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 6979, \"VACANT\": 415, \"OWNER_OCC\": 4832, \"RENTER_OCC\": 1732 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.120796000022082, 36.138379999951148 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sapulpa\", \"CLASS\": \"city\", \"ST\": \"OK\", \"STFIPS\": \"40\", \"PLACEFIP\": \"65400\", \"CAPITAL\": \"N\", \"AREALAND\": 18.634000, \"AREAWATER\": 0.022000, \"POP_CL\": 6, \"POP2000\": 19166, \"WHITE\": 15514, \"BLACK\": 719, \"AMERI_ES\": 1666, \"ASIAN\": 77, \"HAWN_PI\": 6, \"OTHER\": 189, \"MULT_RACE\": 995, \"HISPANIC\": 470, \"MALES\": 9143, \"FEMALES\": 10023, \"AGE_UNDER5\": 1361, \"AGE_5_17\": 3633, \"AGE_18_21\": 877, \"AGE_22_29\": 1857, \"AGE_30_39\": 2615, \"AGE_40_49\": 2783, \"AGE_50_64\": 3196, \"AGE_65_UP\": 2844, \"MED_AGE\": 37.300000, \"MED_AGE_M\": 35.100000, \"MED_AGE_F\": 39.400000, \"HOUSEHOLDS\": 7430, \"AVE_HH_SZ\": 2.540000, \"HSEHLD_1_M\": 660, \"HSEHLD_1_F\": 1136, \"MARHH_CHD\": 1715, \"MARHH_NO_C\": 2360, \"MHH_CHILD\": 169, \"FHH_CHILD\": 532, \"FAMILIES\": 5358, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 8114, \"VACANT\": 684, \"OWNER_OCC\": 5256, \"RENTER_OCC\": 2174 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.104822000021613, 36.003535999953115 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Shawnee\", \"CLASS\": \"city\", \"ST\": \"OK\", \"STFIPS\": \"40\", \"PLACEFIP\": \"66800\", \"CAPITAL\": \"N\", \"AREALAND\": 42.264000, \"AREAWATER\": 2.405000, \"POP_CL\": 6, \"POP2000\": 28692, \"WHITE\": 22101, \"BLACK\": 1164, \"AMERI_ES\": 3679, \"ASIAN\": 273, \"HAWN_PI\": 14, \"OTHER\": 208, \"MULT_RACE\": 1253, \"HISPANIC\": 781, \"MALES\": 13800, \"FEMALES\": 14892, \"AGE_UNDER5\": 2128, \"AGE_5_17\": 4855, \"AGE_18_21\": 2901, \"AGE_22_29\": 3381, \"AGE_30_39\": 3599, \"AGE_40_49\": 3496, \"AGE_50_64\": 3931, \"AGE_65_UP\": 4401, \"MED_AGE\": 33.300000, \"MED_AGE_M\": 30.100000, \"MED_AGE_F\": 36.300000, \"HOUSEHOLDS\": 11311, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 1330, \"HSEHLD_1_F\": 2107, \"MARHH_CHD\": 2120, \"MARHH_NO_C\": 3110, \"MHH_CHILD\": 249, \"FHH_CHILD\": 996, \"FAMILIES\": 7306, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 12651, \"VACANT\": 1340, \"OWNER_OCC\": 6775, \"RENTER_OCC\": 4536 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.933775000097356, 35.342473999820513 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Stillwater\", \"CLASS\": \"city\", \"ST\": \"OK\", \"STFIPS\": \"40\", \"PLACEFIP\": \"70300\", \"CAPITAL\": \"N\", \"AREALAND\": 27.850000, \"AREAWATER\": 0.456000, \"POP_CL\": 6, \"POP2000\": 39065, \"WHITE\": 32220, \"BLACK\": 1681, \"AMERI_ES\": 1519, \"ASIAN\": 1974, \"HAWN_PI\": 14, \"OTHER\": 345, \"MULT_RACE\": 1312, \"HISPANIC\": 976, \"MALES\": 19797, \"FEMALES\": 19268, \"AGE_UNDER5\": 1836, \"AGE_5_17\": 4106, \"AGE_18_21\": 9498, \"AGE_22_29\": 8950, \"AGE_30_39\": 4103, \"AGE_40_49\": 3704, \"AGE_50_64\": 3481, \"AGE_65_UP\": 3387, \"MED_AGE\": 23.900000, \"MED_AGE_M\": 23.800000, \"MED_AGE_F\": 24.100000, \"HOUSEHOLDS\": 15604, \"AVE_HH_SZ\": 2.130000, \"HSEHLD_1_M\": 2575, \"HSEHLD_1_F\": 2830, \"MARHH_CHD\": 2320, \"MARHH_NO_C\": 3310, \"MHH_CHILD\": 192, \"FHH_CHILD\": 741, \"FAMILIES\": 7317, \"AVE_FAM_SZ\": 2.810000, \"HSE_UNITS\": 16827, \"VACANT\": 1223, \"OWNER_OCC\": 6526, \"RENTER_OCC\": 9078 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.06853700010862, 36.121537999766261 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Tahlequah\", \"CLASS\": \"city\", \"ST\": \"OK\", \"STFIPS\": \"40\", \"PLACEFIP\": \"72100\", \"CAPITAL\": \"N\", \"AREALAND\": 12.021000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14458, \"WHITE\": 8532, \"BLACK\": 366, \"AMERI_ES\": 3884, \"ASIAN\": 76, \"HAWN_PI\": 5, \"OTHER\": 593, \"MULT_RACE\": 1002, \"HISPANIC\": 1049, \"MALES\": 6794, \"FEMALES\": 7664, \"AGE_UNDER5\": 960, \"AGE_5_17\": 2254, \"AGE_18_21\": 2357, \"AGE_22_29\": 2360, \"AGE_30_39\": 1525, \"AGE_40_49\": 1546, \"AGE_50_64\": 1577, \"AGE_65_UP\": 1879, \"MED_AGE\": 26.400000, \"MED_AGE_M\": 25.000000, \"MED_AGE_F\": 28.400000, \"HOUSEHOLDS\": 5703, \"AVE_HH_SZ\": 2.280000, \"HSEHLD_1_M\": 728, \"HSEHLD_1_F\": 1220, \"MARHH_CHD\": 931, \"MARHH_NO_C\": 1211, \"MHH_CHILD\": 119, \"FHH_CHILD\": 476, \"FAMILIES\": 3123, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 6245, \"VACANT\": 542, \"OWNER_OCC\": 2416, \"RENTER_OCC\": 3287 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.97152600000112, 35.912868999995695 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"The Village\", \"CLASS\": \"city\", \"ST\": \"OK\", \"STFIPS\": \"40\", \"PLACEFIP\": \"73250\", \"CAPITAL\": \"N\", \"AREALAND\": 2.539000, \"AREAWATER\": 0.010000, \"POP_CL\": 6, \"POP2000\": 10157, \"WHITE\": 8145, \"BLACK\": 1063, \"AMERI_ES\": 258, \"ASIAN\": 194, \"HAWN_PI\": 3, \"OTHER\": 115, \"MULT_RACE\": 379, \"HISPANIC\": 383, \"MALES\": 4719, \"FEMALES\": 5438, \"AGE_UNDER5\": 784, \"AGE_5_17\": 1265, \"AGE_18_21\": 471, \"AGE_22_29\": 1747, \"AGE_30_39\": 1615, \"AGE_40_49\": 1338, \"AGE_50_64\": 1282, \"AGE_65_UP\": 1655, \"MED_AGE\": 34.800000, \"MED_AGE_M\": 33.000000, \"MED_AGE_F\": 36.800000, \"HOUSEHOLDS\": 4778, \"AVE_HH_SZ\": 2.120000, \"HSEHLD_1_M\": 621, \"HSEHLD_1_F\": 1061, \"MARHH_CHD\": 792, \"MARHH_NO_C\": 1253, \"MHH_CHILD\": 78, \"FHH_CHILD\": 288, \"FAMILIES\": 2723, \"AVE_FAM_SZ\": 2.760000, \"HSE_UNITS\": 4997, \"VACANT\": 219, \"OWNER_OCC\": 3185, \"RENTER_OCC\": 1593 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.556600000213805, 35.568722999560848 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Tulsa\", \"CLASS\": \"city\", \"ST\": \"OK\", \"STFIPS\": \"40\", \"PLACEFIP\": \"75000\", \"CAPITAL\": \"N\", \"AREALAND\": 182.645000, \"AREAWATER\": 4.192000, \"POP_CL\": 8, \"POP2000\": 393049, \"WHITE\": 275488, \"BLACK\": 60794, \"AMERI_ES\": 18551, \"ASIAN\": 7150, \"HAWN_PI\": 202, \"OTHER\": 13564, \"MULT_RACE\": 17300, \"HISPANIC\": 28111, \"MALES\": 189937, \"FEMALES\": 203112, \"AGE_UNDER5\": 28318, \"AGE_5_17\": 69022, \"AGE_18_21\": 24286, \"AGE_22_29\": 49622, \"AGE_30_39\": 56595, \"AGE_40_49\": 58198, \"AGE_50_64\": 56500, \"AGE_65_UP\": 50508, \"MED_AGE\": 34.500000, \"MED_AGE_M\": 32.600000, \"MED_AGE_F\": 36.400000, \"HOUSEHOLDS\": 165743, \"AVE_HH_SZ\": 2.310000, \"HSEHLD_1_M\": 24653, \"HSEHLD_1_F\": 31531, \"MARHH_CHD\": 30396, \"MARHH_NO_C\": 41045, \"MHH_CHILD\": 3279, \"FHH_CHILD\": 13596, \"FAMILIES\": 99094, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 179405, \"VACANT\": 13662, \"OWNER_OCC\": 92234, \"RENTER_OCC\": 73509 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.937332000015033, 36.131293999965635 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Woodward\", \"CLASS\": \"city\", \"ST\": \"OK\", \"STFIPS\": \"40\", \"PLACEFIP\": \"82150\", \"CAPITAL\": \"N\", \"AREALAND\": 13.119000, \"AREAWATER\": 0.069000, \"POP_CL\": 6, \"POP2000\": 11853, \"WHITE\": 10902, \"BLACK\": 30, \"AMERI_ES\": 232, \"ASIAN\": 80, \"HAWN_PI\": 2, \"OTHER\": 386, \"MULT_RACE\": 221, \"HISPANIC\": 718, \"MALES\": 5706, \"FEMALES\": 6147, \"AGE_UNDER5\": 869, \"AGE_5_17\": 2317, \"AGE_18_21\": 683, \"AGE_22_29\": 1137, \"AGE_30_39\": 1572, \"AGE_40_49\": 1869, \"AGE_50_64\": 1725, \"AGE_65_UP\": 1681, \"MED_AGE\": 36.300000, \"MED_AGE_M\": 34.800000, \"MED_AGE_F\": 37.700000, \"HOUSEHOLDS\": 4787, \"AVE_HH_SZ\": 2.430000, \"HSEHLD_1_M\": 544, \"HSEHLD_1_F\": 808, \"MARHH_CHD\": 1182, \"MARHH_NO_C\": 1430, \"MHH_CHILD\": 118, \"FHH_CHILD\": 307, \"FAMILIES\": 3247, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 5561, \"VACANT\": 774, \"OWNER_OCC\": 3161, \"RENTER_OCC\": 1626 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -99.39774499983389, 36.433058996480511 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Yukon\", \"CLASS\": \"city\", \"ST\": \"OK\", \"STFIPS\": \"40\", \"PLACEFIP\": \"82950\", \"CAPITAL\": \"N\", \"AREALAND\": 25.763000, \"AREAWATER\": 0.011000, \"POP_CL\": 6, \"POP2000\": 21043, \"WHITE\": 19135, \"BLACK\": 176, \"AMERI_ES\": 564, \"ASIAN\": 394, \"HAWN_PI\": 10, \"OTHER\": 257, \"MULT_RACE\": 507, \"HISPANIC\": 633, \"MALES\": 10037, \"FEMALES\": 11006, \"AGE_UNDER5\": 1378, \"AGE_5_17\": 4450, \"AGE_18_21\": 1107, \"AGE_22_29\": 1891, \"AGE_30_39\": 3119, \"AGE_40_49\": 3510, \"AGE_50_64\": 3332, \"AGE_65_UP\": 2256, \"MED_AGE\": 36.100000, \"MED_AGE_M\": 34.800000, \"MED_AGE_F\": 37.200000, \"HOUSEHOLDS\": 7830, \"AVE_HH_SZ\": 2.650000, \"HSEHLD_1_M\": 596, \"HSEHLD_1_F\": 1027, \"MARHH_CHD\": 2370, \"MARHH_NO_C\": 2489, \"MHH_CHILD\": 184, \"FHH_CHILD\": 558, \"FAMILIES\": 5993, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 8135, \"VACANT\": 305, \"OWNER_OCC\": 5934, \"RENTER_OCC\": 1896 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.749120000264952, 35.502254999441007 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Albany\", \"CLASS\": \"city\", \"ST\": \"OR\", \"STFIPS\": \"41\", \"PLACEFIP\": \"01000\", \"CAPITAL\": \"N\", \"AREALAND\": 15.884000, \"AREAWATER\": 0.190000, \"POP_CL\": 6, \"POP2000\": 40852, \"WHITE\": 37453, \"BLACK\": 217, \"AMERI_ES\": 500, \"ASIAN\": 465, \"HAWN_PI\": 86, \"OTHER\": 1084, \"MULT_RACE\": 1047, \"HISPANIC\": 2489, \"MALES\": 19853, \"FEMALES\": 20999, \"AGE_UNDER5\": 3108, \"AGE_5_17\": 7677, \"AGE_18_21\": 2326, \"AGE_22_29\": 4571, \"AGE_30_39\": 6055, \"AGE_40_49\": 6009, \"AGE_50_64\": 5906, \"AGE_65_UP\": 5200, \"MED_AGE\": 34.600000, \"MED_AGE_M\": 33.000000, \"MED_AGE_F\": 36.100000, \"HOUSEHOLDS\": 16108, \"AVE_HH_SZ\": 2.490000, \"HSEHLD_1_M\": 1733, \"HSEHLD_1_F\": 2467, \"MARHH_CHD\": 3617, \"MARHH_NO_C\": 4616, \"MHH_CHILD\": 473, \"FHH_CHILD\": 1275, \"FAMILIES\": 10809, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 17374, \"VACANT\": 1266, \"OWNER_OCC\": 9581, \"RENTER_OCC\": 6527 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -123.081934852762245, 44.631719870731004 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Aloha\", \"CLASS\": \"CDP\", \"ST\": \"OR\", \"STFIPS\": \"41\", \"PLACEFIP\": \"01650\", \"CAPITAL\": \"N\", \"AREALAND\": 7.374000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 41741, \"WHITE\": 33143, \"BLACK\": 563, \"AMERI_ES\": 324, \"ASIAN\": 3208, \"HAWN_PI\": 155, \"OTHER\": 2796, \"MULT_RACE\": 1552, \"HISPANIC\": 5396, \"MALES\": 21031, \"FEMALES\": 20710, \"AGE_UNDER5\": 3677, \"AGE_5_17\": 8773, \"AGE_18_21\": 2110, \"AGE_22_29\": 5340, \"AGE_30_39\": 7367, \"AGE_40_49\": 6654, \"AGE_50_64\": 5445, \"AGE_65_UP\": 2375, \"MED_AGE\": 31.200000, \"MED_AGE_M\": 30.500000, \"MED_AGE_F\": 31.900000, \"HOUSEHOLDS\": 14228, \"AVE_HH_SZ\": 2.920000, \"HSEHLD_1_M\": 1168, \"HSEHLD_1_F\": 1243, \"MARHH_CHD\": 4571, \"MARHH_NO_C\": 3887, \"MHH_CHILD\": 400, \"FHH_CHILD\": 1130, \"FAMILIES\": 10838, \"AVE_FAM_SZ\": 3.280000, \"HSE_UNITS\": 14851, \"VACANT\": 623, \"OWNER_OCC\": 9564, \"RENTER_OCC\": 4664 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.858460611281828, 45.4916640877776 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Altamont\", \"CLASS\": \"CDP\", \"ST\": \"OR\", \"STFIPS\": \"41\", \"PLACEFIP\": \"01850\", \"CAPITAL\": \"N\", \"AREALAND\": 8.718000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 19603, \"WHITE\": 17378, \"BLACK\": 125, \"AMERI_ES\": 691, \"ASIAN\": 150, \"HAWN_PI\": 27, \"OTHER\": 552, \"MULT_RACE\": 680, \"HISPANIC\": 1326, \"MALES\": 9547, \"FEMALES\": 10056, \"AGE_UNDER5\": 1329, \"AGE_5_17\": 3908, \"AGE_18_21\": 850, \"AGE_22_29\": 1801, \"AGE_30_39\": 2523, \"AGE_40_49\": 2750, \"AGE_50_64\": 3144, \"AGE_65_UP\": 3298, \"MED_AGE\": 37.800000, \"MED_AGE_M\": 36.300000, \"MED_AGE_F\": 39.200000, \"HOUSEHOLDS\": 7777, \"AVE_HH_SZ\": 2.510000, \"HSEHLD_1_M\": 789, \"HSEHLD_1_F\": 1159, \"MARHH_CHD\": 1628, \"MARHH_NO_C\": 2531, \"MHH_CHILD\": 221, \"FHH_CHILD\": 603, \"FAMILIES\": 5421, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 8315, \"VACANT\": 538, \"OWNER_OCC\": 5594, \"RENTER_OCC\": 2183 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.718762139243623, 42.203482415930061 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ashland\", \"CLASS\": \"city\", \"ST\": \"OR\", \"STFIPS\": \"41\", \"PLACEFIP\": \"03050\", \"CAPITAL\": \"N\", \"AREALAND\": 6.501000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 19522, \"WHITE\": 17873, \"BLACK\": 118, \"AMERI_ES\": 199, \"ASIAN\": 365, \"HAWN_PI\": 26, \"OTHER\": 333, \"MULT_RACE\": 608, \"HISPANIC\": 695, \"MALES\": 9003, \"FEMALES\": 10519, \"AGE_UNDER5\": 802, \"AGE_5_17\": 2874, \"AGE_18_21\": 2190, \"AGE_22_29\": 2462, \"AGE_30_39\": 1883, \"AGE_40_49\": 3109, \"AGE_50_64\": 3306, \"AGE_65_UP\": 2896, \"MED_AGE\": 37.900000, \"MED_AGE_M\": 34.800000, \"MED_AGE_F\": 39.800000, \"HOUSEHOLDS\": 8537, \"AVE_HH_SZ\": 2.140000, \"HSEHLD_1_M\": 1094, \"HSEHLD_1_F\": 1745, \"MARHH_CHD\": 1244, \"MARHH_NO_C\": 1949, \"MHH_CHILD\": 188, \"FHH_CHILD\": 727, \"FAMILIES\": 4479, \"AVE_FAM_SZ\": 2.720000, \"HSE_UNITS\": 9050, \"VACANT\": 513, \"OWNER_OCC\": 4456, \"RENTER_OCC\": 4081 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.689914802461644, 42.192652109588465 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Beaverton\", \"CLASS\": \"city\", \"ST\": \"OR\", \"STFIPS\": \"41\", \"PLACEFIP\": \"05350\", \"CAPITAL\": \"N\", \"AREALAND\": 16.321000, \"AREAWATER\": 0.000000, \"POP_CL\": 7, \"POP2000\": 76129, \"WHITE\": 59615, \"BLACK\": 1324, \"AMERI_ES\": 507, \"ASIAN\": 7349, \"HAWN_PI\": 272, \"OTHER\": 4211, \"MULT_RACE\": 2851, \"HISPANIC\": 8463, \"MALES\": 37582, \"FEMALES\": 38547, \"AGE_UNDER5\": 5497, \"AGE_5_17\": 13500, \"AGE_18_21\": 3976, \"AGE_22_29\": 11451, \"AGE_30_39\": 13051, \"AGE_40_49\": 11997, \"AGE_50_64\": 9823, \"AGE_65_UP\": 6834, \"MED_AGE\": 32.600000, \"MED_AGE_M\": 31.200000, \"MED_AGE_F\": 34.300000, \"HOUSEHOLDS\": 30821, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 4004, \"HSEHLD_1_F\": 5159, \"MARHH_CHD\": 7376, \"MARHH_NO_C\": 7057, \"MHH_CHILD\": 642, \"FHH_CHILD\": 1937, \"FAMILIES\": 18656, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 32500, \"VACANT\": 1679, \"OWNER_OCC\": 14714, \"RENTER_OCC\": 16107 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.796703894233772, 45.481077163942693 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bend\", \"CLASS\": \"city\", \"ST\": \"OR\", \"STFIPS\": \"41\", \"PLACEFIP\": \"05800\", \"CAPITAL\": \"N\", \"AREALAND\": 32.022000, \"AREAWATER\": 0.216000, \"POP_CL\": 7, \"POP2000\": 52029, \"WHITE\": 48897, \"BLACK\": 145, \"AMERI_ES\": 412, \"ASIAN\": 521, \"HAWN_PI\": 42, \"OTHER\": 910, \"MULT_RACE\": 1102, \"HISPANIC\": 2396, \"MALES\": 25633, \"FEMALES\": 26396, \"AGE_UNDER5\": 3572, \"AGE_5_17\": 9154, \"AGE_18_21\": 2976, \"AGE_22_29\": 6558, \"AGE_30_39\": 7823, \"AGE_40_49\": 8253, \"AGE_50_64\": 7262, \"AGE_65_UP\": 6431, \"MED_AGE\": 34.800000, \"MED_AGE_M\": 33.400000, \"MED_AGE_F\": 36.200000, \"HOUSEHOLDS\": 21062, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 2357, \"HSEHLD_1_F\": 3140, \"MARHH_CHD\": 4731, \"MARHH_NO_C\": 5832, \"MHH_CHILD\": 505, \"FHH_CHILD\": 1486, \"FAMILIES\": 13396, \"AVE_FAM_SZ\": 2.920000, \"HSE_UNITS\": 22507, \"VACANT\": 1445, \"OWNER_OCC\": 13244, \"RENTER_OCC\": 7818 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.300828155670217, 44.05718555281635 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Canby\", \"CLASS\": \"city\", \"ST\": \"OR\", \"STFIPS\": \"41\", \"PLACEFIP\": \"10750\", \"CAPITAL\": \"N\", \"AREALAND\": 3.773000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12790, \"WHITE\": 11309, \"BLACK\": 60, \"AMERI_ES\": 98, \"ASIAN\": 128, \"HAWN_PI\": 17, \"OTHER\": 956, \"MULT_RACE\": 222, \"HISPANIC\": 1985, \"MALES\": 6233, \"FEMALES\": 6557, \"AGE_UNDER5\": 1080, \"AGE_5_17\": 2832, \"AGE_18_21\": 627, \"AGE_22_29\": 1271, \"AGE_30_39\": 2035, \"AGE_40_49\": 1803, \"AGE_50_64\": 1657, \"AGE_65_UP\": 1485, \"MED_AGE\": 32.900000, \"MED_AGE_M\": 31.300000, \"MED_AGE_F\": 34.500000, \"HOUSEHOLDS\": 4489, \"AVE_HH_SZ\": 2.830000, \"HSEHLD_1_M\": 297, \"HSEHLD_1_F\": 653, \"MARHH_CHD\": 1388, \"MARHH_NO_C\": 1318, \"MHH_CHILD\": 115, \"FHH_CHILD\": 320, \"FAMILIES\": 3368, \"AVE_FAM_SZ\": 3.270000, \"HSE_UNITS\": 4743, \"VACANT\": 254, \"OWNER_OCC\": 3016, \"RENTER_OCC\": 1473 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.678080369768225, 45.267326090336169 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cedar Mill\", \"CLASS\": \"CDP\", \"ST\": \"OR\", \"STFIPS\": \"41\", \"PLACEFIP\": \"12150\", \"CAPITAL\": \"N\", \"AREALAND\": 3.718000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12597, \"WHITE\": 10760, \"BLACK\": 108, \"AMERI_ES\": 52, \"ASIAN\": 941, \"HAWN_PI\": 26, \"OTHER\": 340, \"MULT_RACE\": 370, \"HISPANIC\": 767, \"MALES\": 6288, \"FEMALES\": 6309, \"AGE_UNDER5\": 953, \"AGE_5_17\": 2628, \"AGE_18_21\": 498, \"AGE_22_29\": 1074, \"AGE_30_39\": 2017, \"AGE_40_49\": 2380, \"AGE_50_64\": 2031, \"AGE_65_UP\": 1016, \"MED_AGE\": 36.200000, \"MED_AGE_M\": 35.700000, \"MED_AGE_F\": 36.800000, \"HOUSEHOLDS\": 4723, \"AVE_HH_SZ\": 2.670000, \"HSEHLD_1_M\": 464, \"HSEHLD_1_F\": 526, \"MARHH_CHD\": 1500, \"MARHH_NO_C\": 1370, \"MHH_CHILD\": 92, \"FHH_CHILD\": 270, \"FAMILIES\": 3430, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 4951, \"VACANT\": 228, \"OWNER_OCC\": 3210, \"RENTER_OCC\": 1513 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.790879209501824, 45.53207811726319 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Central Point\", \"CLASS\": \"city\", \"ST\": \"OR\", \"STFIPS\": \"41\", \"PLACEFIP\": \"12400\", \"CAPITAL\": \"N\", \"AREALAND\": 3.067000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12493, \"WHITE\": 11743, \"BLACK\": 31, \"AMERI_ES\": 110, \"ASIAN\": 91, \"HAWN_PI\": 24, \"OTHER\": 158, \"MULT_RACE\": 336, \"HISPANIC\": 527, \"MALES\": 5982, \"FEMALES\": 6511, \"AGE_UNDER5\": 976, \"AGE_5_17\": 2596, \"AGE_18_21\": 564, \"AGE_22_29\": 1283, \"AGE_30_39\": 1869, \"AGE_40_49\": 1709, \"AGE_50_64\": 1725, \"AGE_65_UP\": 1771, \"MED_AGE\": 34.400000, \"MED_AGE_M\": 33.300000, \"MED_AGE_F\": 35.500000, \"HOUSEHOLDS\": 4613, \"AVE_HH_SZ\": 2.690000, \"HSEHLD_1_M\": 335, \"HSEHLD_1_F\": 589, \"MARHH_CHD\": 1261, \"MARHH_NO_C\": 1472, \"MHH_CHILD\": 119, \"FHH_CHILD\": 349, \"FAMILIES\": 3451, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 4760, \"VACANT\": 147, \"OWNER_OCC\": 3249, \"RENTER_OCC\": 1364 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.900309204118471, 42.376215038626306 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"City of The Dalles\", \"CLASS\": \"city\", \"ST\": \"OR\", \"STFIPS\": \"41\", \"PLACEFIP\": \"13425\", \"CAPITAL\": \"N\", \"AREALAND\": 5.259000, \"AREAWATER\": 0.290000, \"POP_CL\": 6, \"POP2000\": 12156, \"WHITE\": 10677, \"BLACK\": 48, \"AMERI_ES\": 146, \"ASIAN\": 117, \"HAWN_PI\": 93, \"OTHER\": 757, \"MULT_RACE\": 318, \"HISPANIC\": 1276, \"MALES\": 5913, \"FEMALES\": 6243, \"AGE_UNDER5\": 813, \"AGE_5_17\": 2203, \"AGE_18_21\": 571, \"AGE_22_29\": 1093, \"AGE_30_39\": 1515, \"AGE_40_49\": 1840, \"AGE_50_64\": 1926, \"AGE_65_UP\": 2195, \"MED_AGE\": 39.300000, \"MED_AGE_M\": 37.400000, \"MED_AGE_F\": 40.700000, \"HOUSEHOLDS\": 4896, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 531, \"HSEHLD_1_F\": 898, \"MARHH_CHD\": 1012, \"MARHH_NO_C\": 1491, \"MHH_CHILD\": 122, \"FHH_CHILD\": 333, \"FAMILIES\": 3225, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 5227, \"VACANT\": 331, \"OWNER_OCC\": 3089, \"RENTER_OCC\": 1807 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.175304197505525, 45.601950402551005 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Coos Bay\", \"CLASS\": \"city\", \"ST\": \"OR\", \"STFIPS\": \"41\", \"PLACEFIP\": \"15250\", \"CAPITAL\": \"N\", \"AREALAND\": 10.589000, \"AREAWATER\": 5.342000, \"POP_CL\": 6, \"POP2000\": 15374, \"WHITE\": 13952, \"BLACK\": 57, \"AMERI_ES\": 349, \"ASIAN\": 221, \"HAWN_PI\": 48, \"OTHER\": 207, \"MULT_RACE\": 540, \"HISPANIC\": 691, \"MALES\": 7464, \"FEMALES\": 7910, \"AGE_UNDER5\": 884, \"AGE_5_17\": 2592, \"AGE_18_21\": 943, \"AGE_22_29\": 1302, \"AGE_30_39\": 1943, \"AGE_40_49\": 2180, \"AGE_50_64\": 2579, \"AGE_65_UP\": 2951, \"MED_AGE\": 40.100000, \"MED_AGE_M\": 38.300000, \"MED_AGE_F\": 42.000000, \"HOUSEHOLDS\": 6497, \"AVE_HH_SZ\": 2.290000, \"HSEHLD_1_M\": 829, \"HSEHLD_1_F\": 1164, \"MARHH_CHD\": 1104, \"MARHH_NO_C\": 1904, \"MHH_CHILD\": 166, \"FHH_CHILD\": 489, \"FAMILIES\": 4031, \"AVE_FAM_SZ\": 2.830000, \"HSE_UNITS\": 7094, \"VACANT\": 597, \"OWNER_OCC\": 3876, \"RENTER_OCC\": 2621 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -124.217569498963783, 43.378758545444462 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Corvallis\", \"CLASS\": \"city\", \"ST\": \"OR\", \"STFIPS\": \"41\", \"PLACEFIP\": \"15800\", \"CAPITAL\": \"N\", \"AREALAND\": 13.604000, \"AREAWATER\": 0.171000, \"POP_CL\": 6, \"POP2000\": 49322, \"WHITE\": 42433, \"BLACK\": 570, \"AMERI_ES\": 376, \"ASIAN\": 3168, \"HAWN_PI\": 141, \"OTHER\": 1244, \"MULT_RACE\": 1390, \"HISPANIC\": 2820, \"MALES\": 24564, \"FEMALES\": 24758, \"AGE_UNDER5\": 2396, \"AGE_5_17\": 6330, \"AGE_18_21\": 9203, \"AGE_22_29\": 9095, \"AGE_30_39\": 5944, \"AGE_40_49\": 6163, \"AGE_50_64\": 5221, \"AGE_65_UP\": 4970, \"MED_AGE\": 27.000000, \"MED_AGE_M\": 25.800000, \"MED_AGE_F\": 28.600000, \"HOUSEHOLDS\": 19630, \"AVE_HH_SZ\": 2.260000, \"HSEHLD_1_M\": 2756, \"HSEHLD_1_F\": 3428, \"MARHH_CHD\": 3524, \"MARHH_NO_C\": 4478, \"MHH_CHILD\": 265, \"FHH_CHILD\": 921, \"FAMILIES\": 9969, \"AVE_FAM_SZ\": 2.880000, \"HSE_UNITS\": 20909, \"VACANT\": 1279, \"OWNER_OCC\": 8809, \"RENTER_OCC\": 10821 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -123.261080811082962, 44.572419226265545 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Dallas\", \"CLASS\": \"city\", \"ST\": \"OR\", \"STFIPS\": \"41\", \"PLACEFIP\": \"17700\", \"CAPITAL\": \"N\", \"AREALAND\": 4.453000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12459, \"WHITE\": 11621, \"BLACK\": 22, \"AMERI_ES\": 222, \"ASIAN\": 69, \"HAWN_PI\": 13, \"OTHER\": 173, \"MULT_RACE\": 339, \"HISPANIC\": 500, \"MALES\": 5983, \"FEMALES\": 6476, \"AGE_UNDER5\": 930, \"AGE_5_17\": 2542, \"AGE_18_21\": 556, \"AGE_22_29\": 1156, \"AGE_30_39\": 1670, \"AGE_40_49\": 1660, \"AGE_50_64\": 1763, \"AGE_65_UP\": 2182, \"MED_AGE\": 36.300000, \"MED_AGE_M\": 33.700000, \"MED_AGE_F\": 38.800000, \"HOUSEHOLDS\": 4672, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 373, \"HSEHLD_1_F\": 761, \"MARHH_CHD\": 1140, \"MARHH_NO_C\": 1431, \"MHH_CHILD\": 125, \"FHH_CHILD\": 406, \"FAMILIES\": 3325, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 4912, \"VACANT\": 240, \"OWNER_OCC\": 3085, \"RENTER_OCC\": 1587 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -123.300959869772541, 44.922818323500834 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Eugene\", \"CLASS\": \"city\", \"ST\": \"OR\", \"STFIPS\": \"41\", \"PLACEFIP\": \"23850\", \"CAPITAL\": \"N\", \"AREALAND\": 40.519000, \"AREAWATER\": 0.041000, \"POP_CL\": 8, \"POP2000\": 137893, \"WHITE\": 121546, \"BLACK\": 1729, \"AMERI_ES\": 1281, \"ASIAN\": 4916, \"HAWN_PI\": 294, \"OTHER\": 3003, \"MULT_RACE\": 5124, \"HISPANIC\": 6843, \"MALES\": 67540, \"FEMALES\": 70353, \"AGE_UNDER5\": 7367, \"AGE_5_17\": 20686, \"AGE_18_21\": 14492, \"AGE_22_29\": 20716, \"AGE_30_39\": 18377, \"AGE_40_49\": 20323, \"AGE_50_64\": 19275, \"AGE_65_UP\": 16657, \"MED_AGE\": 33.000000, \"MED_AGE_M\": 31.200000, \"MED_AGE_F\": 34.900000, \"HOUSEHOLDS\": 58110, \"AVE_HH_SZ\": 2.270000, \"HSEHLD_1_M\": 7999, \"HSEHLD_1_F\": 10429, \"MARHH_CHD\": 9983, \"MARHH_NO_C\": 13582, \"MHH_CHILD\": 1233, \"FHH_CHILD\": 3794, \"FAMILIES\": 31297, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 61444, \"VACANT\": 3334, \"OWNER_OCC\": 30105, \"RENTER_OCC\": 28005 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -123.096605361842094, 44.059188107294908 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Forest Grove\", \"CLASS\": \"city\", \"ST\": \"OR\", \"STFIPS\": \"41\", \"PLACEFIP\": \"26200\", \"CAPITAL\": \"N\", \"AREALAND\": 4.599000, \"AREAWATER\": 0.130000, \"POP_CL\": 6, \"POP2000\": 17708, \"WHITE\": 14425, \"BLACK\": 77, \"AMERI_ES\": 158, \"ASIAN\": 374, \"HAWN_PI\": 42, \"OTHER\": 2017, \"MULT_RACE\": 615, \"HISPANIC\": 3065, \"MALES\": 8398, \"FEMALES\": 9310, \"AGE_UNDER5\": 1433, \"AGE_5_17\": 3423, \"AGE_18_21\": 1518, \"AGE_22_29\": 2155, \"AGE_30_39\": 2567, \"AGE_40_49\": 2257, \"AGE_50_64\": 1939, \"AGE_65_UP\": 2416, \"MED_AGE\": 31.300000, \"MED_AGE_M\": 30.300000, \"MED_AGE_F\": 32.400000, \"HOUSEHOLDS\": 6336, \"AVE_HH_SZ\": 2.640000, \"HSEHLD_1_M\": 609, \"HSEHLD_1_F\": 1156, \"MARHH_CHD\": 1653, \"MARHH_NO_C\": 1531, \"MHH_CHILD\": 191, \"FHH_CHILD\": 433, \"FAMILIES\": 4128, \"AVE_FAM_SZ\": 3.240000, \"HSE_UNITS\": 6702, \"VACANT\": 366, \"OWNER_OCC\": 3479, \"RENTER_OCC\": 2857 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -123.094030625916659, 45.522933484070727 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Four Corners\", \"CLASS\": \"CDP\", \"ST\": \"OR\", \"STFIPS\": \"41\", \"PLACEFIP\": \"26750\", \"CAPITAL\": \"N\", \"AREALAND\": 2.758000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 13922, \"WHITE\": 10968, \"BLACK\": 184, \"AMERI_ES\": 278, \"ASIAN\": 258, \"HAWN_PI\": 133, \"OTHER\": 1584, \"MULT_RACE\": 517, \"HISPANIC\": 2513, \"MALES\": 6782, \"FEMALES\": 7140, \"AGE_UNDER5\": 1230, \"AGE_5_17\": 2982, \"AGE_18_21\": 703, \"AGE_22_29\": 1654, \"AGE_30_39\": 2009, \"AGE_40_49\": 1773, \"AGE_50_64\": 1931, \"AGE_65_UP\": 1640, \"MED_AGE\": 31.800000, \"MED_AGE_M\": 31.000000, \"MED_AGE_F\": 32.800000, \"HOUSEHOLDS\": 5088, \"AVE_HH_SZ\": 2.730000, \"HSEHLD_1_M\": 488, \"HSEHLD_1_F\": 757, \"MARHH_CHD\": 1211, \"MARHH_NO_C\": 1332, \"MHH_CHILD\": 169, \"FHH_CHILD\": 439, \"FAMILIES\": 3476, \"AVE_FAM_SZ\": 3.250000, \"HSE_UNITS\": 5403, \"VACANT\": 315, \"OWNER_OCC\": 2850, \"RENTER_OCC\": 2238 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.958720068721675, 44.930310176249648 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Gladstone\", \"CLASS\": \"city\", \"ST\": \"OR\", \"STFIPS\": \"41\", \"PLACEFIP\": \"29000\", \"CAPITAL\": \"N\", \"AREALAND\": 2.476000, \"AREAWATER\": 0.048000, \"POP_CL\": 6, \"POP2000\": 11438, \"WHITE\": 10342, \"BLACK\": 82, \"AMERI_ES\": 70, \"ASIAN\": 241, \"HAWN_PI\": 33, \"OTHER\": 348, \"MULT_RACE\": 322, \"HISPANIC\": 700, \"MALES\": 5539, \"FEMALES\": 5899, \"AGE_UNDER5\": 764, \"AGE_5_17\": 2277, \"AGE_18_21\": 648, \"AGE_22_29\": 1169, \"AGE_30_39\": 1665, \"AGE_40_49\": 1835, \"AGE_50_64\": 1767, \"AGE_65_UP\": 1313, \"MED_AGE\": 35.500000, \"MED_AGE_M\": 34.000000, \"MED_AGE_F\": 36.900000, \"HOUSEHOLDS\": 4246, \"AVE_HH_SZ\": 2.660000, \"HSEHLD_1_M\": 363, \"HSEHLD_1_F\": 555, \"MARHH_CHD\": 1064, \"MARHH_NO_C\": 1210, \"MHH_CHILD\": 111, \"FHH_CHILD\": 352, \"FAMILIES\": 3013, \"AVE_FAM_SZ\": 3.110000, \"HSE_UNITS\": 4419, \"VACANT\": 173, \"OWNER_OCC\": 2741, \"RENTER_OCC\": 1505 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.58049787833373, 45.386919103286374 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Grants Pass\", \"CLASS\": \"city\", \"ST\": \"OR\", \"STFIPS\": \"41\", \"PLACEFIP\": \"30550\", \"CAPITAL\": \"N\", \"AREALAND\": 7.585000, \"AREAWATER\": 0.117000, \"POP_CL\": 6, \"POP2000\": 23003, \"WHITE\": 21386, \"BLACK\": 76, \"AMERI_ES\": 251, \"ASIAN\": 226, \"HAWN_PI\": 27, \"OTHER\": 375, \"MULT_RACE\": 662, \"HISPANIC\": 1236, \"MALES\": 10690, \"FEMALES\": 12313, \"AGE_UNDER5\": 1613, \"AGE_5_17\": 4377, \"AGE_18_21\": 1113, \"AGE_22_29\": 2120, \"AGE_30_39\": 2967, \"AGE_40_49\": 3143, \"AGE_50_64\": 3206, \"AGE_65_UP\": 4464, \"MED_AGE\": 37.900000, \"MED_AGE_M\": 35.000000, \"MED_AGE_F\": 40.200000, \"HOUSEHOLDS\": 9376, \"AVE_HH_SZ\": 2.360000, \"HSEHLD_1_M\": 963, \"HSEHLD_1_F\": 1961, \"MARHH_CHD\": 1787, \"MARHH_NO_C\": 2387, \"MHH_CHILD\": 225, \"FHH_CHILD\": 907, \"FAMILIES\": 5924, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 9885, \"VACANT\": 509, \"OWNER_OCC\": 4986, \"RENTER_OCC\": 4390 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -123.31459518572143, 42.440575066439699 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Gresham\", \"CLASS\": \"city\", \"ST\": \"OR\", \"STFIPS\": \"41\", \"PLACEFIP\": \"31250\", \"CAPITAL\": \"N\", \"AREALAND\": 22.155000, \"AREAWATER\": 0.094000, \"POP_CL\": 7, \"POP2000\": 90205, \"WHITE\": 74619, \"BLACK\": 1707, \"AMERI_ES\": 848, \"ASIAN\": 3007, \"HAWN_PI\": 243, \"OTHER\": 6335, \"MULT_RACE\": 3446, \"HISPANIC\": 10732, \"MALES\": 44593, \"FEMALES\": 45612, \"AGE_UNDER5\": 7179, \"AGE_5_17\": 17672, \"AGE_18_21\": 5725, \"AGE_22_29\": 11203, \"AGE_30_39\": 13320, \"AGE_40_49\": 13850, \"AGE_50_64\": 12416, \"AGE_65_UP\": 8840, \"MED_AGE\": 32.500000, \"MED_AGE_M\": 31.100000, \"MED_AGE_F\": 34.100000, \"HOUSEHOLDS\": 33327, \"AVE_HH_SZ\": 2.670000, \"HSEHLD_1_M\": 3460, \"HSEHLD_1_F\": 4655, \"MARHH_CHD\": 8418, \"MARHH_NO_C\": 8560, \"MHH_CHILD\": 998, \"FHH_CHILD\": 2635, \"FAMILIES\": 22683, \"AVE_FAM_SZ\": 3.170000, \"HSE_UNITS\": 35309, \"VACANT\": 1982, \"OWNER_OCC\": 18282, \"RENTER_OCC\": 15045 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.427774388874155, 45.50489729298657 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hayesville\", \"CLASS\": \"CDP\", \"ST\": \"OR\", \"STFIPS\": \"41\", \"PLACEFIP\": \"32850\", \"CAPITAL\": \"N\", \"AREALAND\": 3.931000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 18222, \"WHITE\": 13997, \"BLACK\": 173, \"AMERI_ES\": 313, \"ASIAN\": 638, \"HAWN_PI\": 129, \"OTHER\": 2277, \"MULT_RACE\": 695, \"HISPANIC\": 3601, \"MALES\": 9130, \"FEMALES\": 9092, \"AGE_UNDER5\": 1649, \"AGE_5_17\": 3390, \"AGE_18_21\": 1351, \"AGE_22_29\": 2362, \"AGE_30_39\": 2555, \"AGE_40_49\": 2354, \"AGE_50_64\": 2678, \"AGE_65_UP\": 1883, \"MED_AGE\": 31.300000, \"MED_AGE_M\": 30.000000, \"MED_AGE_F\": 32.900000, \"HOUSEHOLDS\": 6655, \"AVE_HH_SZ\": 2.710000, \"HSEHLD_1_M\": 606, \"HSEHLD_1_F\": 839, \"MARHH_CHD\": 1595, \"MARHH_NO_C\": 1856, \"MHH_CHILD\": 221, \"FHH_CHILD\": 554, \"FAMILIES\": 4632, \"AVE_FAM_SZ\": 3.150000, \"HSE_UNITS\": 6951, \"VACANT\": 296, \"OWNER_OCC\": 3714, \"RENTER_OCC\": 2941 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.958656263338113, 44.982455399598521 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hermiston\", \"CLASS\": \"city\", \"ST\": \"OR\", \"STFIPS\": \"41\", \"PLACEFIP\": \"33700\", \"CAPITAL\": \"N\", \"AREALAND\": 6.463000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 13154, \"WHITE\": 10382, \"BLACK\": 122, \"AMERI_ES\": 119, \"ASIAN\": 208, \"HAWN_PI\": 5, \"OTHER\": 1982, \"MULT_RACE\": 336, \"HISPANIC\": 3168, \"MALES\": 6391, \"FEMALES\": 6763, \"AGE_UNDER5\": 1168, \"AGE_5_17\": 2759, \"AGE_18_21\": 803, \"AGE_22_29\": 1541, \"AGE_30_39\": 1799, \"AGE_40_49\": 1812, \"AGE_50_64\": 1760, \"AGE_65_UP\": 1512, \"MED_AGE\": 31.500000, \"MED_AGE_M\": 30.500000, \"MED_AGE_F\": 32.900000, \"HOUSEHOLDS\": 4964, \"AVE_HH_SZ\": 2.630000, \"HSEHLD_1_M\": 552, \"HSEHLD_1_F\": 782, \"MARHH_CHD\": 1180, \"MARHH_NO_C\": 1252, \"MHH_CHILD\": 160, \"FHH_CHILD\": 505, \"FAMILIES\": 3361, \"AVE_FAM_SZ\": 3.180000, \"HSE_UNITS\": 5383, \"VACANT\": 419, \"OWNER_OCC\": 2731, \"RENTER_OCC\": 2233 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -119.287980367637203, 45.841324952531856 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hillsboro\", \"CLASS\": \"city\", \"ST\": \"OR\", \"STFIPS\": \"41\", \"PLACEFIP\": \"34100\", \"CAPITAL\": \"N\", \"AREALAND\": 21.571000, \"AREAWATER\": 0.013000, \"POP_CL\": 7, \"POP2000\": 70186, \"WHITE\": 54391, \"BLACK\": 858, \"AMERI_ES\": 577, \"ASIAN\": 4585, \"HAWN_PI\": 177, \"OTHER\": 7285, \"MULT_RACE\": 2313, \"HISPANIC\": 13262, \"MALES\": 36047, \"FEMALES\": 34139, \"AGE_UNDER5\": 6523, \"AGE_5_17\": 13370, \"AGE_18_21\": 4070, \"AGE_22_29\": 11706, \"AGE_30_39\": 12975, \"AGE_40_49\": 9605, \"AGE_50_64\": 7537, \"AGE_65_UP\": 4400, \"MED_AGE\": 29.700000, \"MED_AGE_M\": 29.200000, \"MED_AGE_F\": 30.100000, \"HOUSEHOLDS\": 25079, \"AVE_HH_SZ\": 2.760000, \"HSEHLD_1_M\": 2888, \"HSEHLD_1_F\": 2993, \"MARHH_CHD\": 7351, \"MARHH_NO_C\": 6372, \"MHH_CHILD\": 598, \"FHH_CHILD\": 1560, \"FAMILIES\": 17083, \"AVE_FAM_SZ\": 3.280000, \"HSE_UNITS\": 27211, \"VACANT\": 2132, \"OWNER_OCC\": 13117, \"RENTER_OCC\": 11962 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.928958776748232, 45.525241241969773 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Keizer\", \"CLASS\": \"city\", \"ST\": \"OR\", \"STFIPS\": \"41\", \"PLACEFIP\": \"38500\", \"CAPITAL\": \"N\", \"AREALAND\": 7.227000, \"AREAWATER\": 0.150000, \"POP_CL\": 6, \"POP2000\": 32203, \"WHITE\": 27539, \"BLACK\": 242, \"AMERI_ES\": 444, \"ASIAN\": 480, \"HAWN_PI\": 66, \"OTHER\": 2325, \"MULT_RACE\": 1107, \"HISPANIC\": 3950, \"MALES\": 15629, \"FEMALES\": 16574, \"AGE_UNDER5\": 2593, \"AGE_5_17\": 6337, \"AGE_18_21\": 1486, \"AGE_22_29\": 3514, \"AGE_30_39\": 4885, \"AGE_40_49\": 4712, \"AGE_50_64\": 4760, \"AGE_65_UP\": 3916, \"MED_AGE\": 34.400000, \"MED_AGE_M\": 33.200000, \"MED_AGE_F\": 35.600000, \"HOUSEHOLDS\": 12110, \"AVE_HH_SZ\": 2.640000, \"HSEHLD_1_M\": 1034, \"HSEHLD_1_F\": 1679, \"MARHH_CHD\": 3102, \"MARHH_NO_C\": 3653, \"MHH_CHILD\": 331, \"FHH_CHILD\": 878, \"FAMILIES\": 8642, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 12774, \"VACANT\": 664, \"OWNER_OCC\": 7840, \"RENTER_OCC\": 4270 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -123.007939751913895, 45.001989081290063 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Klamath Falls\", \"CLASS\": \"city\", \"ST\": \"OR\", \"STFIPS\": \"41\", \"PLACEFIP\": \"39700\", \"CAPITAL\": \"N\", \"AREALAND\": 17.863000, \"AREAWATER\": 0.848000, \"POP_CL\": 6, \"POP2000\": 19462, \"WHITE\": 16566, \"BLACK\": 198, \"AMERI_ES\": 864, \"ASIAN\": 256, \"HAWN_PI\": 26, \"OTHER\": 807, \"MULT_RACE\": 745, \"HISPANIC\": 1814, \"MALES\": 9821, \"FEMALES\": 9641, \"AGE_UNDER5\": 1367, \"AGE_5_17\": 3591, \"AGE_18_21\": 1546, \"AGE_22_29\": 2418, \"AGE_30_39\": 2492, \"AGE_40_49\": 2850, \"AGE_50_64\": 2715, \"AGE_65_UP\": 2483, \"MED_AGE\": 33.400000, \"MED_AGE_M\": 31.600000, \"MED_AGE_F\": 35.300000, \"HOUSEHOLDS\": 7916, \"AVE_HH_SZ\": 2.360000, \"HSEHLD_1_M\": 1245, \"HSEHLD_1_F\": 1323, \"MARHH_CHD\": 1454, \"MARHH_NO_C\": 1890, \"MHH_CHILD\": 255, \"FHH_CHILD\": 669, \"FAMILIES\": 4670, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 8722, \"VACANT\": 806, \"OWNER_OCC\": 3906, \"RENTER_OCC\": 4010 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.769750513010067, 42.224316411229971 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"La Grande\", \"CLASS\": \"city\", \"ST\": \"OR\", \"STFIPS\": \"41\", \"PLACEFIP\": \"40350\", \"CAPITAL\": \"N\", \"AREALAND\": 4.350000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12327, \"WHITE\": 11454, \"BLACK\": 84, \"AMERI_ES\": 96, \"ASIAN\": 155, \"HAWN_PI\": 111, \"OTHER\": 172, \"MULT_RACE\": 255, \"HISPANIC\": 342, \"MALES\": 5849, \"FEMALES\": 6478, \"AGE_UNDER5\": 775, \"AGE_5_17\": 2134, \"AGE_18_21\": 1192, \"AGE_22_29\": 1599, \"AGE_30_39\": 1361, \"AGE_40_49\": 1731, \"AGE_50_64\": 1732, \"AGE_65_UP\": 1803, \"MED_AGE\": 33.700000, \"MED_AGE_M\": 31.500000, \"MED_AGE_F\": 35.700000, \"HOUSEHOLDS\": 5124, \"AVE_HH_SZ\": 2.320000, \"HSEHLD_1_M\": 640, \"HSEHLD_1_F\": 1009, \"MARHH_CHD\": 972, \"MARHH_NO_C\": 1337, \"MHH_CHILD\": 108, \"FHH_CHILD\": 355, \"FAMILIES\": 2983, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 5483, \"VACANT\": 359, \"OWNER_OCC\": 2827, \"RENTER_OCC\": 2297 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.090955482370092, 45.327382313322232 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lake Oswego\", \"CLASS\": \"city\", \"ST\": \"OR\", \"STFIPS\": \"41\", \"PLACEFIP\": \"40550\", \"CAPITAL\": \"N\", \"AREALAND\": 10.346000, \"AREAWATER\": 0.607000, \"POP_CL\": 6, \"POP2000\": 35278, \"WHITE\": 32149, \"BLACK\": 226, \"AMERI_ES\": 113, \"ASIAN\": 1612, \"HAWN_PI\": 58, \"OTHER\": 250, \"MULT_RACE\": 870, \"HISPANIC\": 820, \"MALES\": 16986, \"FEMALES\": 18292, \"AGE_UNDER5\": 1746, \"AGE_5_17\": 6993, \"AGE_18_21\": 1169, \"AGE_22_29\": 2661, \"AGE_30_39\": 4314, \"AGE_40_49\": 7245, \"AGE_50_64\": 7132, \"AGE_65_UP\": 4018, \"MED_AGE\": 41.200000, \"MED_AGE_M\": 40.100000, \"MED_AGE_F\": 42.100000, \"HOUSEHOLDS\": 14769, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 1459, \"HSEHLD_1_F\": 2662, \"MARHH_CHD\": 3918, \"MARHH_NO_C\": 4377, \"MHH_CHILD\": 169, \"FHH_CHILD\": 635, \"FAMILIES\": 9665, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 15741, \"VACANT\": 972, \"OWNER_OCC\": 10423, \"RENTER_OCC\": 4346 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.684550832852082, 45.414438494358187 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lebanon\", \"CLASS\": \"city\", \"ST\": \"OR\", \"STFIPS\": \"41\", \"PLACEFIP\": \"41650\", \"CAPITAL\": \"N\", \"AREALAND\": 5.248000, \"AREAWATER\": 0.159000, \"POP_CL\": 6, \"POP2000\": 12950, \"WHITE\": 12170, \"BLACK\": 22, \"AMERI_ES\": 133, \"ASIAN\": 124, \"HAWN_PI\": 11, \"OTHER\": 183, \"MULT_RACE\": 307, \"HISPANIC\": 478, \"MALES\": 6175, \"FEMALES\": 6775, \"AGE_UNDER5\": 1021, \"AGE_5_17\": 2472, \"AGE_18_21\": 627, \"AGE_22_29\": 1343, \"AGE_30_39\": 1783, \"AGE_40_49\": 1637, \"AGE_50_64\": 1768, \"AGE_65_UP\": 2299, \"MED_AGE\": 35.900000, \"MED_AGE_M\": 34.200000, \"MED_AGE_F\": 37.500000, \"HOUSEHOLDS\": 5078, \"AVE_HH_SZ\": 2.510000, \"HSEHLD_1_M\": 497, \"HSEHLD_1_F\": 902, \"MARHH_CHD\": 1093, \"MARHH_NO_C\": 1455, \"MHH_CHILD\": 148, \"FHH_CHILD\": 438, \"FAMILIES\": 3444, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 5457, \"VACANT\": 379, \"OWNER_OCC\": 3070, \"RENTER_OCC\": 2008 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.89469263986345, 44.534555797751885 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"McMinnville\", \"CLASS\": \"city\", \"ST\": \"OR\", \"STFIPS\": \"41\", \"PLACEFIP\": \"45000\", \"CAPITAL\": \"N\", \"AREALAND\": 9.903000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 26499, \"WHITE\": 22892, \"BLACK\": 179, \"AMERI_ES\": 368, \"ASIAN\": 331, \"HAWN_PI\": 47, \"OTHER\": 1924, \"MULT_RACE\": 758, \"HISPANIC\": 3879, \"MALES\": 12819, \"FEMALES\": 13680, \"AGE_UNDER5\": 2010, \"AGE_5_17\": 4950, \"AGE_18_21\": 2569, \"AGE_22_29\": 3125, \"AGE_30_39\": 3593, \"AGE_40_49\": 3327, \"AGE_50_64\": 3146, \"AGE_65_UP\": 3779, \"MED_AGE\": 31.500000, \"MED_AGE_M\": 30.200000, \"MED_AGE_F\": 32.900000, \"HOUSEHOLDS\": 9367, \"AVE_HH_SZ\": 2.660000, \"HSEHLD_1_M\": 764, \"HSEHLD_1_F\": 1472, \"MARHH_CHD\": 2349, \"MARHH_NO_C\": 2663, \"MHH_CHILD\": 270, \"FHH_CHILD\": 701, \"FAMILIES\": 6462, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 9834, \"VACANT\": 467, \"OWNER_OCC\": 5659, \"RENTER_OCC\": 3708 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -123.182311542613292, 45.213369507077552 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Medford\", \"CLASS\": \"city\", \"ST\": \"OR\", \"STFIPS\": \"41\", \"PLACEFIP\": \"47000\", \"CAPITAL\": \"N\", \"AREALAND\": 21.698000, \"AREAWATER\": 0.000000, \"POP_CL\": 7, \"POP2000\": 63154, \"WHITE\": 56834, \"BLACK\": 313, \"AMERI_ES\": 677, \"ASIAN\": 720, \"HAWN_PI\": 163, \"OTHER\": 2442, \"MULT_RACE\": 2005, \"HISPANIC\": 5841, \"MALES\": 30262, \"FEMALES\": 32892, \"AGE_UNDER5\": 4398, \"AGE_5_17\": 11901, \"AGE_18_21\": 3094, \"AGE_22_29\": 6282, \"AGE_30_39\": 8651, \"AGE_40_49\": 9161, \"AGE_50_64\": 9232, \"AGE_65_UP\": 10435, \"MED_AGE\": 37.000000, \"MED_AGE_M\": 35.300000, \"MED_AGE_F\": 38.500000, \"HOUSEHOLDS\": 25093, \"AVE_HH_SZ\": 2.470000, \"HSEHLD_1_M\": 2618, \"HSEHLD_1_F\": 4324, \"MARHH_CHD\": 5306, \"MARHH_NO_C\": 7306, \"MHH_CHILD\": 617, \"FHH_CHILD\": 2019, \"FAMILIES\": 16518, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 26297, \"VACANT\": 1204, \"OWNER_OCC\": 14372, \"RENTER_OCC\": 10721 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.850324430076029, 42.333338657824029 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Milwaukie\", \"CLASS\": \"city\", \"ST\": \"OR\", \"STFIPS\": \"41\", \"PLACEFIP\": \"48650\", \"CAPITAL\": \"N\", \"AREALAND\": 4.814000, \"AREAWATER\": 0.019000, \"POP_CL\": 6, \"POP2000\": 20490, \"WHITE\": 18637, \"BLACK\": 194, \"AMERI_ES\": 193, \"ASIAN\": 484, \"HAWN_PI\": 52, \"OTHER\": 327, \"MULT_RACE\": 603, \"HISPANIC\": 813, \"MALES\": 9917, \"FEMALES\": 10573, \"AGE_UNDER5\": 1306, \"AGE_5_17\": 3373, \"AGE_18_21\": 967, \"AGE_22_29\": 2143, \"AGE_30_39\": 3256, \"AGE_40_49\": 3383, \"AGE_50_64\": 3246, \"AGE_65_UP\": 2816, \"MED_AGE\": 37.700000, \"MED_AGE_M\": 35.700000, \"MED_AGE_F\": 39.500000, \"HOUSEHOLDS\": 8561, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 1060, \"HSEHLD_1_F\": 1535, \"MARHH_CHD\": 1634, \"MARHH_NO_C\": 2285, \"MHH_CHILD\": 231, \"FHH_CHILD\": 556, \"FAMILIES\": 5283, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 8988, \"VACANT\": 427, \"OWNER_OCC\": 5157, \"RENTER_OCC\": 3404 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.610959217202549, 45.446784563441753 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Newberg\", \"CLASS\": \"city\", \"ST\": \"OR\", \"STFIPS\": \"41\", \"PLACEFIP\": \"52100\", \"CAPITAL\": \"N\", \"AREALAND\": 5.019000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 18064, \"WHITE\": 16347, \"BLACK\": 64, \"AMERI_ES\": 115, \"ASIAN\": 188, \"HAWN_PI\": 31, \"OTHER\": 914, \"MULT_RACE\": 405, \"HISPANIC\": 1901, \"MALES\": 8740, \"FEMALES\": 9324, \"AGE_UNDER5\": 1442, \"AGE_5_17\": 3553, \"AGE_18_21\": 1858, \"AGE_22_29\": 2162, \"AGE_30_39\": 2708, \"AGE_40_49\": 2553, \"AGE_50_64\": 1876, \"AGE_65_UP\": 1912, \"MED_AGE\": 30.100000, \"MED_AGE_M\": 29.200000, \"MED_AGE_F\": 30.900000, \"HOUSEHOLDS\": 6099, \"AVE_HH_SZ\": 2.760000, \"HSEHLD_1_M\": 521, \"HSEHLD_1_F\": 805, \"MARHH_CHD\": 1747, \"MARHH_NO_C\": 1580, \"MHH_CHILD\": 186, \"FHH_CHILD\": 520, \"FAMILIES\": 4348, \"AVE_FAM_SZ\": 3.200000, \"HSE_UNITS\": 6435, \"VACANT\": 336, \"OWNER_OCC\": 3823, \"RENTER_OCC\": 2276 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.953477938447151, 45.30642413787298 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Oak Grove\", \"CLASS\": \"CDP\", \"ST\": \"OR\", \"STFIPS\": \"41\", \"PLACEFIP\": \"53900\", \"CAPITAL\": \"N\", \"AREALAND\": 2.924000, \"AREAWATER\": 0.241000, \"POP_CL\": 6, \"POP2000\": 12808, \"WHITE\": 11715, \"BLACK\": 72, \"AMERI_ES\": 100, \"ASIAN\": 229, \"HAWN_PI\": 13, \"OTHER\": 327, \"MULT_RACE\": 352, \"HISPANIC\": 755, \"MALES\": 6030, \"FEMALES\": 6778, \"AGE_UNDER5\": 793, \"AGE_5_17\": 1962, \"AGE_18_21\": 534, \"AGE_22_29\": 1235, \"AGE_30_39\": 1833, \"AGE_40_49\": 1834, \"AGE_50_64\": 2034, \"AGE_65_UP\": 2583, \"MED_AGE\": 40.300000, \"MED_AGE_M\": 37.800000, \"MED_AGE_F\": 42.900000, \"HOUSEHOLDS\": 5641, \"AVE_HH_SZ\": 2.240000, \"HSEHLD_1_M\": 702, \"HSEHLD_1_F\": 1284, \"MARHH_CHD\": 912, \"MARHH_NO_C\": 1562, \"MHH_CHILD\": 127, \"FHH_CHILD\": 354, \"FAMILIES\": 3251, \"AVE_FAM_SZ\": 2.890000, \"HSE_UNITS\": 6015, \"VACANT\": 374, \"OWNER_OCC\": 3208, \"RENTER_OCC\": 2433 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.626458385216154, 45.417941816999246 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Oatfield\", \"CLASS\": \"CDP\", \"ST\": \"OR\", \"STFIPS\": \"41\", \"PLACEFIP\": \"54325\", \"CAPITAL\": \"N\", \"AREALAND\": 4.365000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 15750, \"WHITE\": 14716, \"BLACK\": 74, \"AMERI_ES\": 84, \"ASIAN\": 314, \"HAWN_PI\": 19, \"OTHER\": 146, \"MULT_RACE\": 397, \"HISPANIC\": 416, \"MALES\": 7681, \"FEMALES\": 8069, \"AGE_UNDER5\": 827, \"AGE_5_17\": 2825, \"AGE_18_21\": 683, \"AGE_22_29\": 1072, \"AGE_30_39\": 1875, \"AGE_40_49\": 2904, \"AGE_50_64\": 3299, \"AGE_65_UP\": 2265, \"MED_AGE\": 42.300000, \"MED_AGE_M\": 41.100000, \"MED_AGE_F\": 43.400000, \"HOUSEHOLDS\": 5903, \"AVE_HH_SZ\": 2.650000, \"HSEHLD_1_M\": 405, \"HSEHLD_1_F\": 645, \"MARHH_CHD\": 1457, \"MARHH_NO_C\": 2433, \"MHH_CHILD\": 88, \"FHH_CHILD\": 259, \"FAMILIES\": 4563, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 6110, \"VACANT\": 207, \"OWNER_OCC\": 5140, \"RENTER_OCC\": 763 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.584366221138495, 45.412891548554981 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ontario\", \"CLASS\": \"city\", \"ST\": \"OR\", \"STFIPS\": \"41\", \"PLACEFIP\": \"54900\", \"CAPITAL\": \"N\", \"AREALAND\": 4.467000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10985, \"WHITE\": 7609, \"BLACK\": 60, \"AMERI_ES\": 97, \"ASIAN\": 295, \"HAWN_PI\": 16, \"OTHER\": 2536, \"MULT_RACE\": 372, \"HISPANIC\": 3521, \"MALES\": 5193, \"FEMALES\": 5792, \"AGE_UNDER5\": 1041, \"AGE_5_17\": 2312, \"AGE_18_21\": 740, \"AGE_22_29\": 1250, \"AGE_30_39\": 1295, \"AGE_40_49\": 1277, \"AGE_50_64\": 1375, \"AGE_65_UP\": 1695, \"MED_AGE\": 30.900000, \"MED_AGE_M\": 28.900000, \"MED_AGE_F\": 33.300000, \"HOUSEHOLDS\": 4084, \"AVE_HH_SZ\": 2.630000, \"HSEHLD_1_M\": 432, \"HSEHLD_1_F\": 809, \"MARHH_CHD\": 951, \"MARHH_NO_C\": 985, \"MHH_CHILD\": 101, \"FHH_CHILD\": 403, \"FAMILIES\": 2633, \"AVE_FAM_SZ\": 3.300000, \"HSE_UNITS\": 4436, \"VACANT\": 352, \"OWNER_OCC\": 2215, \"RENTER_OCC\": 1869 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -116.967313885595161, 44.026949897928468 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Oregon City\", \"CLASS\": \"city\", \"ST\": \"OR\", \"STFIPS\": \"41\", \"PLACEFIP\": \"55200\", \"CAPITAL\": \"N\", \"AREALAND\": 8.140000, \"AREAWATER\": 0.208000, \"POP_CL\": 6, \"POP2000\": 25754, \"WHITE\": 23807, \"BLACK\": 150, \"AMERI_ES\": 277, \"ASIAN\": 288, \"HAWN_PI\": 28, \"OTHER\": 553, \"MULT_RACE\": 651, \"HISPANIC\": 1283, \"MALES\": 12670, \"FEMALES\": 13084, \"AGE_UNDER5\": 2160, \"AGE_5_17\": 4786, \"AGE_18_21\": 1495, \"AGE_22_29\": 3214, \"AGE_30_39\": 4371, \"AGE_40_49\": 3774, \"AGE_50_64\": 3443, \"AGE_65_UP\": 2511, \"MED_AGE\": 32.700000, \"MED_AGE_M\": 31.600000, \"MED_AGE_F\": 33.900000, \"HOUSEHOLDS\": 9471, \"AVE_HH_SZ\": 2.620000, \"HSEHLD_1_M\": 871, \"HSEHLD_1_F\": 1253, \"MARHH_CHD\": 2410, \"MARHH_NO_C\": 2614, \"MHH_CHILD\": 290, \"FHH_CHILD\": 769, \"FAMILIES\": 6669, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 10110, \"VACANT\": 639, \"OWNER_OCC\": 5661, \"RENTER_OCC\": 3810 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.585651764534518, 45.348671908779153 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pendleton\", \"CLASS\": \"city\", \"ST\": \"OR\", \"STFIPS\": \"41\", \"PLACEFIP\": \"57150\", \"CAPITAL\": \"N\", \"AREALAND\": 10.050000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 16354, \"WHITE\": 14580, \"BLACK\": 250, \"AMERI_ES\": 412, \"ASIAN\": 154, \"HAWN_PI\": 10, \"OTHER\": 602, \"MULT_RACE\": 346, \"HISPANIC\": 981, \"MALES\": 8728, \"FEMALES\": 7626, \"AGE_UNDER5\": 1057, \"AGE_5_17\": 2782, \"AGE_18_21\": 1032, \"AGE_22_29\": 1958, \"AGE_30_39\": 2591, \"AGE_40_49\": 2573, \"AGE_50_64\": 2299, \"AGE_65_UP\": 2062, \"MED_AGE\": 35.500000, \"MED_AGE_M\": 34.400000, \"MED_AGE_F\": 37.000000, \"HOUSEHOLDS\": 5964, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 815, \"HSEHLD_1_F\": 996, \"MARHH_CHD\": 1252, \"MARHH_NO_C\": 1572, \"MHH_CHILD\": 178, \"FHH_CHILD\": 463, \"FAMILIES\": 3730, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 6352, \"VACANT\": 388, \"OWNER_OCC\": 3392, \"RENTER_OCC\": 2572 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.795056205756936, 45.67057569678262 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Portland\", \"CLASS\": \"city\", \"ST\": \"OR\", \"STFIPS\": \"41\", \"PLACEFIP\": \"59000\", \"CAPITAL\": \"N\", \"AREALAND\": 134.320000, \"AREAWATER\": 11.048000, \"POP_CL\": 9, \"POP2000\": 529121, \"WHITE\": 412241, \"BLACK\": 35115, \"AMERI_ES\": 5587, \"ASIAN\": 33470, \"HAWN_PI\": 1993, \"OTHER\": 18760, \"MULT_RACE\": 21955, \"HISPANIC\": 36058, \"MALES\": 261565, \"FEMALES\": 267556, \"AGE_UNDER5\": 32300, \"AGE_5_17\": 79154, \"AGE_18_21\": 28764, \"AGE_22_29\": 75573, \"AGE_30_39\": 90929, \"AGE_40_49\": 85738, \"AGE_50_64\": 75500, \"AGE_65_UP\": 61163, \"MED_AGE\": 35.200000, \"MED_AGE_M\": 34.200000, \"MED_AGE_F\": 36.200000, \"HOUSEHOLDS\": 223737, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 35621, \"HSEHLD_1_F\": 41715, \"MARHH_CHD\": 36193, \"MARHH_NO_C\": 49084, \"MHH_CHILD\": 4457, \"FHH_CHILD\": 14090, \"FAMILIES\": 118447, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 237307, \"VACANT\": 13570, \"OWNER_OCC\": 124767, \"RENTER_OCC\": 98970 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.627642769311137, 45.524343557831436 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Redmond\", \"CLASS\": \"city\", \"ST\": \"OR\", \"STFIPS\": \"41\", \"PLACEFIP\": \"61200\", \"CAPITAL\": \"N\", \"AREALAND\": 10.238000, \"AREAWATER\": 0.004000, \"POP_CL\": 6, \"POP2000\": 13481, \"WHITE\": 12634, \"BLACK\": 12, \"AMERI_ES\": 157, \"ASIAN\": 87, \"HAWN_PI\": 22, \"OTHER\": 288, \"MULT_RACE\": 281, \"HISPANIC\": 739, \"MALES\": 6501, \"FEMALES\": 6980, \"AGE_UNDER5\": 1129, \"AGE_5_17\": 2862, \"AGE_18_21\": 646, \"AGE_22_29\": 1483, \"AGE_30_39\": 2175, \"AGE_40_49\": 1757, \"AGE_50_64\": 1677, \"AGE_65_UP\": 1752, \"MED_AGE\": 32.700000, \"MED_AGE_M\": 31.200000, \"MED_AGE_F\": 34.300000, \"HOUSEHOLDS\": 5260, \"AVE_HH_SZ\": 2.540000, \"HSEHLD_1_M\": 502, \"HSEHLD_1_F\": 791, \"MARHH_CHD\": 1339, \"MARHH_NO_C\": 1408, \"MHH_CHILD\": 164, \"FHH_CHILD\": 500, \"FAMILIES\": 3618, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 5584, \"VACANT\": 324, \"OWNER_OCC\": 3185, \"RENTER_OCC\": 2075 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.176477877877346, 44.269695270003638 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Roseburg\", \"CLASS\": \"city\", \"ST\": \"OR\", \"STFIPS\": \"41\", \"PLACEFIP\": \"63650\", \"CAPITAL\": \"N\", \"AREALAND\": 9.220000, \"AREAWATER\": 0.186000, \"POP_CL\": 6, \"POP2000\": 20017, \"WHITE\": 18728, \"BLACK\": 61, \"AMERI_ES\": 260, \"ASIAN\": 198, \"HAWN_PI\": 20, \"OTHER\": 253, \"MULT_RACE\": 497, \"HISPANIC\": 746, \"MALES\": 9683, \"FEMALES\": 10334, \"AGE_UNDER5\": 1240, \"AGE_5_17\": 3410, \"AGE_18_21\": 1064, \"AGE_22_29\": 1900, \"AGE_30_39\": 2628, \"AGE_40_49\": 3001, \"AGE_50_64\": 2985, \"AGE_65_UP\": 3789, \"MED_AGE\": 39.200000, \"MED_AGE_M\": 37.800000, \"MED_AGE_F\": 40.600000, \"HOUSEHOLDS\": 8237, \"AVE_HH_SZ\": 2.320000, \"HSEHLD_1_M\": 1034, \"HSEHLD_1_F\": 1570, \"MARHH_CHD\": 1505, \"MARHH_NO_C\": 2302, \"MHH_CHILD\": 200, \"FHH_CHILD\": 675, \"FAMILIES\": 5097, \"AVE_FAM_SZ\": 2.880000, \"HSE_UNITS\": 8838, \"VACANT\": 601, \"OWNER_OCC\": 4658, \"RENTER_OCC\": 3579 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -123.341701742084112, 43.219612844571301 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"St. Helens\", \"CLASS\": \"city\", \"ST\": \"OR\", \"STFIPS\": \"41\", \"PLACEFIP\": \"64600\", \"CAPITAL\": \"N\", \"AREALAND\": 4.346000, \"AREAWATER\": 0.967000, \"POP_CL\": 6, \"POP2000\": 10019, \"WHITE\": 9292, \"BLACK\": 34, \"AMERI_ES\": 168, \"ASIAN\": 63, \"HAWN_PI\": 15, \"OTHER\": 135, \"MULT_RACE\": 312, \"HISPANIC\": 406, \"MALES\": 4981, \"FEMALES\": 5038, \"AGE_UNDER5\": 861, \"AGE_5_17\": 2165, \"AGE_18_21\": 502, \"AGE_22_29\": 1143, \"AGE_30_39\": 1676, \"AGE_40_49\": 1400, \"AGE_50_64\": 1310, \"AGE_65_UP\": 962, \"MED_AGE\": 31.800000, \"MED_AGE_M\": 31.300000, \"MED_AGE_F\": 32.300000, \"HOUSEHOLDS\": 3722, \"AVE_HH_SZ\": 2.650000, \"HSEHLD_1_M\": 438, \"HSEHLD_1_F\": 461, \"MARHH_CHD\": 963, \"MARHH_NO_C\": 955, \"MHH_CHILD\": 149, \"FHH_CHILD\": 349, \"FAMILIES\": 2581, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 4032, \"VACANT\": 310, \"OWNER_OCC\": 2320, \"RENTER_OCC\": 1402 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.803481957761818, 45.860759864986051 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Salem\", \"CLASS\": \"city\", \"ST\": \"OR\", \"STFIPS\": \"41\", \"PLACEFIP\": \"64900\", \"CAPITAL\": \"Y\", \"AREALAND\": 45.733000, \"AREAWATER\": 0.635000, \"POP_CL\": 8, \"POP2000\": 136924, \"WHITE\": 113746, \"BLACK\": 1750, \"AMERI_ES\": 2064, \"ASIAN\": 3304, \"HAWN_PI\": 643, \"OTHER\": 10820, \"MULT_RACE\": 4597, \"HISPANIC\": 19973, \"MALES\": 68752, \"FEMALES\": 68172, \"AGE_UNDER5\": 10190, \"AGE_5_17\": 24629, \"AGE_18_21\": 9099, \"AGE_22_29\": 17155, \"AGE_30_39\": 20289, \"AGE_40_49\": 20114, \"AGE_50_64\": 18409, \"AGE_65_UP\": 17039, \"MED_AGE\": 33.600000, \"MED_AGE_M\": 32.100000, \"MED_AGE_F\": 35.400000, \"HOUSEHOLDS\": 50676, \"AVE_HH_SZ\": 2.530000, \"HSEHLD_1_M\": 5506, \"HSEHLD_1_F\": 8846, \"MARHH_CHD\": 11167, \"MARHH_NO_C\": 13030, \"MHH_CHILD\": 1301, \"FHH_CHILD\": 3937, \"FAMILIES\": 32336, \"AVE_FAM_SZ\": 3.100000, \"HSE_UNITS\": 53817, \"VACANT\": 3141, \"OWNER_OCC\": 28917, \"RENTER_OCC\": 21759 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -123.015224575160929, 44.932609581413708 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sherwood\", \"CLASS\": \"city\", \"ST\": \"OR\", \"STFIPS\": \"41\", \"PLACEFIP\": \"67100\", \"CAPITAL\": \"N\", \"AREALAND\": 4.072000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11791, \"WHITE\": 10890, \"BLACK\": 51, \"AMERI_ES\": 60, \"ASIAN\": 262, \"HAWN_PI\": 5, \"OTHER\": 208, \"MULT_RACE\": 315, \"HISPANIC\": 557, \"MALES\": 5758, \"FEMALES\": 6033, \"AGE_UNDER5\": 1351, \"AGE_5_17\": 2383, \"AGE_18_21\": 333, \"AGE_22_29\": 1364, \"AGE_30_39\": 2868, \"AGE_40_49\": 1648, \"AGE_50_64\": 1221, \"AGE_65_UP\": 623, \"MED_AGE\": 31.400000, \"MED_AGE_M\": 31.300000, \"MED_AGE_F\": 31.500000, \"HOUSEHOLDS\": 4253, \"AVE_HH_SZ\": 2.770000, \"HSEHLD_1_M\": 285, \"HSEHLD_1_F\": 440, \"MARHH_CHD\": 1636, \"MARHH_NO_C\": 1160, \"MHH_CHILD\": 81, \"FHH_CHILD\": 254, \"FAMILIES\": 3299, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 4412, \"VACANT\": 159, \"OWNER_OCC\": 3350, \"RENTER_OCC\": 903 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.829933002033528, 45.358430506770958 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Springfield\", \"CLASS\": \"city\", \"ST\": \"OR\", \"STFIPS\": \"41\", \"PLACEFIP\": \"69600\", \"CAPITAL\": \"N\", \"AREALAND\": 14.402000, \"AREAWATER\": 0.000000, \"POP_CL\": 7, \"POP2000\": 52864, \"WHITE\": 47386, \"BLACK\": 374, \"AMERI_ES\": 730, \"ASIAN\": 588, \"HAWN_PI\": 162, \"OTHER\": 1632, \"MULT_RACE\": 1992, \"HISPANIC\": 3651, \"MALES\": 25862, \"FEMALES\": 27002, \"AGE_UNDER5\": 4327, \"AGE_5_17\": 10069, \"AGE_18_21\": 3251, \"AGE_22_29\": 7001, \"AGE_30_39\": 8255, \"AGE_40_49\": 7770, \"AGE_50_64\": 6768, \"AGE_65_UP\": 5423, \"MED_AGE\": 32.100000, \"MED_AGE_M\": 31.100000, \"MED_AGE_F\": 33.300000, \"HOUSEHOLDS\": 20514, \"AVE_HH_SZ\": 2.550000, \"HSEHLD_1_M\": 2275, \"HSEHLD_1_F\": 2931, \"MARHH_CHD\": 4461, \"MARHH_NO_C\": 4912, \"MHH_CHILD\": 733, \"FHH_CHILD\": 2051, \"FAMILIES\": 13479, \"AVE_FAM_SZ\": 3.030000, \"HSE_UNITS\": 21500, \"VACANT\": 986, \"OWNER_OCC\": 10987, \"RENTER_OCC\": 9527 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.977872431637806, 44.054520841931605 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Tigard\", \"CLASS\": \"city\", \"ST\": \"OR\", \"STFIPS\": \"41\", \"PLACEFIP\": \"73650\", \"CAPITAL\": \"N\", \"AREALAND\": 10.861000, \"AREAWATER\": 0.005000, \"POP_CL\": 6, \"POP2000\": 41223, \"WHITE\": 35195, \"BLACK\": 468, \"AMERI_ES\": 253, \"ASIAN\": 2298, \"HAWN_PI\": 220, \"OTHER\": 1552, \"MULT_RACE\": 1237, \"HISPANIC\": 3686, \"MALES\": 20195, \"FEMALES\": 21028, \"AGE_UNDER5\": 3189, \"AGE_5_17\": 7342, \"AGE_18_21\": 1884, \"AGE_22_29\": 5163, \"AGE_30_39\": 7131, \"AGE_40_49\": 6803, \"AGE_50_64\": 5574, \"AGE_65_UP\": 4137, \"MED_AGE\": 34.500000, \"MED_AGE_M\": 33.300000, \"MED_AGE_F\": 35.700000, \"HOUSEHOLDS\": 16507, \"AVE_HH_SZ\": 2.480000, \"HSEHLD_1_M\": 1773, \"HSEHLD_1_F\": 2640, \"MARHH_CHD\": 4163, \"MARHH_NO_C\": 4427, \"MHH_CHILD\": 331, \"FHH_CHILD\": 1038, \"FAMILIES\": 10739, \"AVE_FAM_SZ\": 3.030000, \"HSE_UNITS\": 17369, \"VACANT\": 862, \"OWNER_OCC\": 9627, \"RENTER_OCC\": 6880 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.765898203082656, 45.429013527580295 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Troutdale\", \"CLASS\": \"city\", \"ST\": \"OR\", \"STFIPS\": \"41\", \"PLACEFIP\": \"74850\", \"CAPITAL\": \"N\", \"AREALAND\": 4.990000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 13777, \"WHITE\": 12061, \"BLACK\": 262, \"AMERI_ES\": 127, \"ASIAN\": 571, \"HAWN_PI\": 34, \"OTHER\": 235, \"MULT_RACE\": 487, \"HISPANIC\": 636, \"MALES\": 6903, \"FEMALES\": 6874, \"AGE_UNDER5\": 1179, \"AGE_5_17\": 2965, \"AGE_18_21\": 718, \"AGE_22_29\": 1555, \"AGE_30_39\": 2553, \"AGE_40_49\": 2461, \"AGE_50_64\": 1736, \"AGE_65_UP\": 610, \"MED_AGE\": 31.800000, \"MED_AGE_M\": 31.900000, \"MED_AGE_F\": 31.800000, \"HOUSEHOLDS\": 4671, \"AVE_HH_SZ\": 2.890000, \"HSEHLD_1_M\": 352, \"HSEHLD_1_F\": 298, \"MARHH_CHD\": 1606, \"MARHH_NO_C\": 1410, \"MHH_CHILD\": 115, \"FHH_CHILD\": 346, \"FAMILIES\": 3692, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 4865, \"VACANT\": 194, \"OWNER_OCC\": 3458, \"RENTER_OCC\": 1213 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.380099134546327, 45.53073444607648 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Tualatin\", \"CLASS\": \"city\", \"ST\": \"OR\", \"STFIPS\": \"41\", \"PLACEFIP\": \"74950\", \"CAPITAL\": \"N\", \"AREALAND\": 7.783000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 22791, \"WHITE\": 19803, \"BLACK\": 181, \"AMERI_ES\": 157, \"ASIAN\": 824, \"HAWN_PI\": 84, \"OTHER\": 1102, \"MULT_RACE\": 640, \"HISPANIC\": 2701, \"MALES\": 11347, \"FEMALES\": 11444, \"AGE_UNDER5\": 1730, \"AGE_5_17\": 4707, \"AGE_18_21\": 1117, \"AGE_22_29\": 3023, \"AGE_30_39\": 3974, \"AGE_40_49\": 4070, \"AGE_50_64\": 2843, \"AGE_65_UP\": 1327, \"MED_AGE\": 31.900000, \"MED_AGE_M\": 31.200000, \"MED_AGE_F\": 32.800000, \"HOUSEHOLDS\": 8651, \"AVE_HH_SZ\": 2.620000, \"HSEHLD_1_M\": 1037, \"HSEHLD_1_F\": 1085, \"MARHH_CHD\": 2609, \"MARHH_NO_C\": 2067, \"MHH_CHILD\": 204, \"FHH_CHILD\": 566, \"FAMILIES\": 5809, \"AVE_FAM_SZ\": 3.170000, \"HSE_UNITS\": 9218, \"VACANT\": 567, \"OWNER_OCC\": 4773, \"RENTER_OCC\": 3878 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.757064043013756, 45.376175698181733 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"West Linn\", \"CLASS\": \"city\", \"ST\": \"OR\", \"STFIPS\": \"41\", \"PLACEFIP\": \"80150\", \"CAPITAL\": \"N\", \"AREALAND\": 7.387000, \"AREAWATER\": 0.523000, \"POP_CL\": 6, \"POP2000\": 22261, \"WHITE\": 20775, \"BLACK\": 120, \"AMERI_ES\": 78, \"ASIAN\": 647, \"HAWN_PI\": 18, \"OTHER\": 165, \"MULT_RACE\": 458, \"HISPANIC\": 638, \"MALES\": 11073, \"FEMALES\": 11188, \"AGE_UNDER5\": 1468, \"AGE_5_17\": 4995, \"AGE_18_21\": 822, \"AGE_22_29\": 1429, \"AGE_30_39\": 3197, \"AGE_40_49\": 4650, \"AGE_50_64\": 3970, \"AGE_65_UP\": 1730, \"MED_AGE\": 38.100000, \"MED_AGE_M\": 37.400000, \"MED_AGE_F\": 38.800000, \"HOUSEHOLDS\": 8161, \"AVE_HH_SZ\": 2.720000, \"HSEHLD_1_M\": 628, \"HSEHLD_1_F\": 841, \"MARHH_CHD\": 2787, \"MARHH_NO_C\": 2559, \"MHH_CHILD\": 138, \"FHH_CHILD\": 461, \"FAMILIES\": 6273, \"AVE_FAM_SZ\": 3.110000, \"HSE_UNITS\": 8697, \"VACANT\": 536, \"OWNER_OCC\": 6412, \"RENTER_OCC\": 1749 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.628600173525228, 45.366501859434905 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wilsonville\", \"CLASS\": \"city\", \"ST\": \"OR\", \"STFIPS\": \"41\", \"PLACEFIP\": \"82800\", \"CAPITAL\": \"N\", \"AREALAND\": 6.709000, \"AREAWATER\": 0.194000, \"POP_CL\": 6, \"POP2000\": 13991, \"WHITE\": 12655, \"BLACK\": 92, \"AMERI_ES\": 98, \"ASIAN\": 311, \"HAWN_PI\": 23, \"OTHER\": 441, \"MULT_RACE\": 371, \"HISPANIC\": 971, \"MALES\": 6796, \"FEMALES\": 7195, \"AGE_UNDER5\": 1059, \"AGE_5_17\": 2377, \"AGE_18_21\": 653, \"AGE_22_29\": 1801, \"AGE_30_39\": 2164, \"AGE_40_49\": 2033, \"AGE_50_64\": 1884, \"AGE_65_UP\": 2020, \"MED_AGE\": 35.000000, \"MED_AGE_M\": 33.800000, \"MED_AGE_F\": 36.100000, \"HOUSEHOLDS\": 5937, \"AVE_HH_SZ\": 2.340000, \"HSEHLD_1_M\": 696, \"HSEHLD_1_F\": 987, \"MARHH_CHD\": 1326, \"MARHH_NO_C\": 1733, \"MHH_CHILD\": 145, \"FHH_CHILD\": 336, \"FAMILIES\": 3774, \"AVE_FAM_SZ\": 2.890000, \"HSE_UNITS\": 6407, \"VACANT\": 470, \"OWNER_OCC\": 3199, \"RENTER_OCC\": 2738 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.753475023474039, 45.308169335994997 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Woodburn\", \"CLASS\": \"city\", \"ST\": \"OR\", \"STFIPS\": \"41\", \"PLACEFIP\": \"83750\", \"CAPITAL\": \"N\", \"AREALAND\": 5.199000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 20100, \"WHITE\": 11682, \"BLACK\": 90, \"AMERI_ES\": 236, \"ASIAN\": 107, \"HAWN_PI\": 15, \"OTHER\": 7167, \"MULT_RACE\": 803, \"HISPANIC\": 10064, \"MALES\": 10401, \"FEMALES\": 9699, \"AGE_UNDER5\": 1797, \"AGE_5_17\": 4235, \"AGE_18_21\": 1394, \"AGE_22_29\": 2510, \"AGE_30_39\": 2574, \"AGE_40_49\": 1916, \"AGE_50_64\": 2038, \"AGE_65_UP\": 3636, \"MED_AGE\": 30.300000, \"MED_AGE_M\": 28.100000, \"MED_AGE_F\": 33.500000, \"HOUSEHOLDS\": 6274, \"AVE_HH_SZ\": 3.110000, \"HSEHLD_1_M\": 415, \"HSEHLD_1_F\": 1082, \"MARHH_CHD\": 1706, \"MARHH_NO_C\": 1937, \"MHH_CHILD\": 138, \"FHH_CHILD\": 324, \"FAMILIES\": 4490, \"AVE_FAM_SZ\": 3.630000, \"HSE_UNITS\": 6824, \"VACANT\": 550, \"OWNER_OCC\": 4215, \"RENTER_OCC\": 2059 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.845169162058014, 45.148668124988134 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Aliquippa\", \"CLASS\": \"city\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"00820\", \"CAPITAL\": \"N\", \"AREALAND\": 4.092000, \"AREAWATER\": 0.385000, \"POP_CL\": 6, \"POP2000\": 11734, \"WHITE\": 7344, \"BLACK\": 4168, \"AMERI_ES\": 8, \"ASIAN\": 21, \"HAWN_PI\": 4, \"OTHER\": 21, \"MULT_RACE\": 168, \"HISPANIC\": 117, \"MALES\": 5312, \"FEMALES\": 6422, \"AGE_UNDER5\": 778, \"AGE_5_17\": 1984, \"AGE_18_21\": 516, \"AGE_22_29\": 1054, \"AGE_30_39\": 1496, \"AGE_40_49\": 1532, \"AGE_50_64\": 1733, \"AGE_65_UP\": 2641, \"MED_AGE\": 40.200000, \"MED_AGE_M\": 37.600000, \"MED_AGE_F\": 42.500000, \"HOUSEHOLDS\": 5124, \"AVE_HH_SZ\": 2.270000, \"HSEHLD_1_M\": 673, \"HSEHLD_1_F\": 1118, \"MARHH_CHD\": 574, \"MARHH_NO_C\": 1253, \"MHH_CHILD\": 87, \"FHH_CHILD\": 590, \"FAMILIES\": 3179, \"AVE_FAM_SZ\": 2.920000, \"HSE_UNITS\": 5843, \"VACANT\": 719, \"OWNER_OCC\": 3089, \"RENTER_OCC\": 2035 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.263061523538013, 40.615065862946238 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Allentown\", \"CLASS\": \"city\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"02000\", \"CAPITAL\": \"N\", \"AREALAND\": 17.738000, \"AREAWATER\": 0.237000, \"POP_CL\": 8, \"POP2000\": 106632, \"WHITE\": 77361, \"BLACK\": 8370, \"AMERI_ES\": 356, \"ASIAN\": 2421, \"HAWN_PI\": 78, \"OTHER\": 14260, \"MULT_RACE\": 3786, \"HISPANIC\": 26058, \"MALES\": 51037, \"FEMALES\": 55595, \"AGE_UNDER5\": 7586, \"AGE_5_17\": 18808, \"AGE_18_21\": 7117, \"AGE_22_29\": 12627, \"AGE_30_39\": 16164, \"AGE_40_49\": 14386, \"AGE_50_64\": 13803, \"AGE_65_UP\": 16141, \"MED_AGE\": 34.500000, \"MED_AGE_M\": 33.000000, \"MED_AGE_F\": 36.000000, \"HOUSEHOLDS\": 42032, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 5910, \"HSEHLD_1_F\": 8004, \"MARHH_CHD\": 6840, \"MARHH_NO_C\": 9725, \"MHH_CHILD\": 1232, \"FHH_CHILD\": 4054, \"FAMILIES\": 25127, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 45960, \"VACANT\": 3928, \"OWNER_OCC\": 22284, \"RENTER_OCC\": 19748 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.47738136521275, 40.601699301738556 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Altoona\", \"CLASS\": \"city\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"02184\", \"CAPITAL\": \"N\", \"AREALAND\": 9.768000, \"AREAWATER\": 0.003000, \"POP_CL\": 6, \"POP2000\": 49523, \"WHITE\": 47545, \"BLACK\": 1231, \"AMERI_ES\": 51, \"ASIAN\": 156, \"HAWN_PI\": 8, \"OTHER\": 121, \"MULT_RACE\": 411, \"HISPANIC\": 367, \"MALES\": 23229, \"FEMALES\": 26294, \"AGE_UNDER5\": 3123, \"AGE_5_17\": 8235, \"AGE_18_21\": 3743, \"AGE_22_29\": 4764, \"AGE_30_39\": 6712, \"AGE_40_49\": 7193, \"AGE_50_64\": 7435, \"AGE_65_UP\": 8318, \"MED_AGE\": 37.400000, \"MED_AGE_M\": 35.200000, \"MED_AGE_F\": 39.600000, \"HOUSEHOLDS\": 20059, \"AVE_HH_SZ\": 2.370000, \"HSEHLD_1_M\": 2339, \"HSEHLD_1_F\": 3999, \"MARHH_CHD\": 3672, \"MARHH_NO_C\": 5265, \"MHH_CHILD\": 504, \"FHH_CHILD\": 1528, \"FAMILIES\": 12583, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 21681, \"VACANT\": 1622, \"OWNER_OCC\": 13219, \"RENTER_OCC\": 6840 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -78.39976724470624, 40.510719979312974 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ardmore\", \"CLASS\": \"CDP\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"02896\", \"CAPITAL\": \"N\", \"AREALAND\": 1.915000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12616, \"WHITE\": 10536, \"BLACK\": 1447, \"AMERI_ES\": 15, \"ASIAN\": 325, \"HAWN_PI\": 16, \"OTHER\": 75, \"MULT_RACE\": 202, \"HISPANIC\": 259, \"MALES\": 5867, \"FEMALES\": 6749, \"AGE_UNDER5\": 688, \"AGE_5_17\": 1875, \"AGE_18_21\": 450, \"AGE_22_29\": 1627, \"AGE_30_39\": 1980, \"AGE_40_49\": 1915, \"AGE_50_64\": 1940, \"AGE_65_UP\": 2141, \"MED_AGE\": 38.300000, \"MED_AGE_M\": 36.300000, \"MED_AGE_F\": 40.100000, \"HOUSEHOLDS\": 5529, \"AVE_HH_SZ\": 2.270000, \"HSEHLD_1_M\": 673, \"HSEHLD_1_F\": 1247, \"MARHH_CHD\": 1027, \"MARHH_NO_C\": 1348, \"MHH_CHILD\": 45, \"FHH_CHILD\": 251, \"FAMILIES\": 3129, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 5711, \"VACANT\": 182, \"OWNER_OCC\": 3478, \"RENTER_OCC\": 2051 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.295236738065512, 40.001413649210633 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Back Mountain\", \"CLASS\": \"CDP\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"03714\", \"CAPITAL\": \"N\", \"AREALAND\": 106.958000, \"AREAWATER\": 2.241000, \"POP_CL\": 6, \"POP2000\": 26690, \"WHITE\": 25209, \"BLACK\": 1148, \"AMERI_ES\": 27, \"ASIAN\": 139, \"HAWN_PI\": 5, \"OTHER\": 47, \"MULT_RACE\": 115, \"HISPANIC\": 281, \"MALES\": 13808, \"FEMALES\": 12882, \"AGE_UNDER5\": 1309, \"AGE_5_17\": 4430, \"AGE_18_21\": 1506, \"AGE_22_29\": 2124, \"AGE_30_39\": 3915, \"AGE_40_49\": 4725, \"AGE_50_64\": 4800, \"AGE_65_UP\": 3881, \"MED_AGE\": 40.100000, \"MED_AGE_M\": 39.100000, \"MED_AGE_F\": 41.400000, \"HOUSEHOLDS\": 9267, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 824, \"HSEHLD_1_F\": 1207, \"MARHH_CHD\": 2567, \"MARHH_NO_C\": 3283, \"MHH_CHILD\": 134, \"FHH_CHILD\": 315, \"FAMILIES\": 6892, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 9997, \"VACANT\": 730, \"OWNER_OCC\": 7928, \"RENTER_OCC\": 1339 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.972687393512999, 41.320231506092313 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Baldwin\", \"CLASS\": \"borough\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"03928\", \"CAPITAL\": \"N\", \"AREALAND\": 5.771000, \"AREAWATER\": 0.152000, \"POP_CL\": 6, \"POP2000\": 19999, \"WHITE\": 19239, \"BLACK\": 483, \"AMERI_ES\": 9, \"ASIAN\": 112, \"HAWN_PI\": 1, \"OTHER\": 34, \"MULT_RACE\": 121, \"HISPANIC\": 129, \"MALES\": 9478, \"FEMALES\": 10521, \"AGE_UNDER5\": 959, \"AGE_5_17\": 3252, \"AGE_18_21\": 769, \"AGE_22_29\": 1452, \"AGE_30_39\": 2670, \"AGE_40_49\": 3228, \"AGE_50_64\": 3479, \"AGE_65_UP\": 4190, \"MED_AGE\": 42.600000, \"MED_AGE_M\": 41.000000, \"MED_AGE_F\": 44.200000, \"HOUSEHOLDS\": 8193, \"AVE_HH_SZ\": 2.410000, \"HSEHLD_1_M\": 717, \"HSEHLD_1_F\": 1442, \"MARHH_CHD\": 1746, \"MARHH_NO_C\": 2900, \"MHH_CHILD\": 97, \"FHH_CHILD\": 390, \"FAMILIES\": 5776, \"AVE_FAM_SZ\": 2.920000, \"HSE_UNITS\": 8883, \"VACANT\": 690, \"OWNER_OCC\": 6761, \"RENTER_OCC\": 1432 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.969452079640874, 40.357196864700477 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Berwick\", \"CLASS\": \"borough\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"05888\", \"CAPITAL\": \"N\", \"AREALAND\": 3.099000, \"AREAWATER\": 0.150000, \"POP_CL\": 6, \"POP2000\": 10774, \"WHITE\": 10462, \"BLACK\": 95, \"AMERI_ES\": 30, \"ASIAN\": 46, \"HAWN_PI\": 5, \"OTHER\": 66, \"MULT_RACE\": 70, \"HISPANIC\": 175, \"MALES\": 5037, \"FEMALES\": 5737, \"AGE_UNDER5\": 595, \"AGE_5_17\": 1890, \"AGE_18_21\": 470, \"AGE_22_29\": 1005, \"AGE_30_39\": 1504, \"AGE_40_49\": 1421, \"AGE_50_64\": 1660, \"AGE_65_UP\": 2229, \"MED_AGE\": 39.500000, \"MED_AGE_M\": 37.500000, \"MED_AGE_F\": 41.800000, \"HOUSEHOLDS\": 4595, \"AVE_HH_SZ\": 2.280000, \"HSEHLD_1_M\": 581, \"HSEHLD_1_F\": 962, \"MARHH_CHD\": 751, \"MARHH_NO_C\": 1261, \"MHH_CHILD\": 126, \"FHH_CHILD\": 335, \"FAMILIES\": 2805, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 4992, \"VACANT\": 397, \"OWNER_OCC\": 2820, \"RENTER_OCC\": 1775 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.247767680854267, 41.056844163134784 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bethel Park\", \"CLASS\": \"borough\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"06064\", \"CAPITAL\": \"N\", \"AREALAND\": 11.693000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 33556, \"WHITE\": 32584, \"BLACK\": 343, \"AMERI_ES\": 10, \"ASIAN\": 371, \"HAWN_PI\": 9, \"OTHER\": 45, \"MULT_RACE\": 194, \"HISPANIC\": 164, \"MALES\": 16069, \"FEMALES\": 17487, \"AGE_UNDER5\": 1772, \"AGE_5_17\": 6170, \"AGE_18_21\": 1000, \"AGE_22_29\": 2049, \"AGE_30_39\": 4479, \"AGE_40_49\": 5941, \"AGE_50_64\": 6063, \"AGE_65_UP\": 6082, \"MED_AGE\": 42.100000, \"MED_AGE_M\": 40.800000, \"MED_AGE_F\": 43.300000, \"HOUSEHOLDS\": 13362, \"AVE_HH_SZ\": 2.480000, \"HSEHLD_1_M\": 1229, \"HSEHLD_1_F\": 2254, \"MARHH_CHD\": 3531, \"MARHH_NO_C\": 4755, \"MHH_CHILD\": 103, \"FHH_CHILD\": 412, \"FAMILIES\": 9539, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 13871, \"VACANT\": 509, \"OWNER_OCC\": 10680, \"RENTER_OCC\": 2682 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.037493922352169, 40.327101864946293 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bethlehem\", \"CLASS\": \"city\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"06088\", \"CAPITAL\": \"N\", \"AREALAND\": 19.255000, \"AREAWATER\": 0.167000, \"POP_CL\": 7, \"POP2000\": 71329, \"WHITE\": 58382, \"BLACK\": 2596, \"AMERI_ES\": 183, \"ASIAN\": 1585, \"HAWN_PI\": 24, \"OTHER\": 6732, \"MULT_RACE\": 1827, \"HISPANIC\": 13002, \"MALES\": 34091, \"FEMALES\": 37238, \"AGE_UNDER5\": 3865, \"AGE_5_17\": 11084, \"AGE_18_21\": 7115, \"AGE_22_29\": 7766, \"AGE_30_39\": 9478, \"AGE_40_49\": 9439, \"AGE_50_64\": 9801, \"AGE_65_UP\": 12781, \"MED_AGE\": 36.200000, \"MED_AGE_M\": 33.400000, \"MED_AGE_F\": 38.900000, \"HOUSEHOLDS\": 28116, \"AVE_HH_SZ\": 2.340000, \"HSEHLD_1_M\": 3380, \"HSEHLD_1_F\": 5701, \"MARHH_CHD\": 4728, \"MARHH_NO_C\": 7682, \"MHH_CHILD\": 547, \"FHH_CHILD\": 2130, \"FAMILIES\": 17090, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 29631, \"VACANT\": 1515, \"OWNER_OCC\": 16327, \"RENTER_OCC\": 11789 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.3757295022466, 40.626200499328689 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bloomsburg\", \"CLASS\": \"town\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"07128\", \"CAPITAL\": \"N\", \"AREALAND\": 4.391000, \"AREAWATER\": 0.232000, \"POP_CL\": 6, \"POP2000\": 12375, \"WHITE\": 11684, \"BLACK\": 322, \"AMERI_ES\": 25, \"ASIAN\": 137, \"HAWN_PI\": 5, \"OTHER\": 89, \"MULT_RACE\": 113, \"HISPANIC\": 215, \"MALES\": 5402, \"FEMALES\": 6973, \"AGE_UNDER5\": 407, \"AGE_5_17\": 1113, \"AGE_18_21\": 4345, \"AGE_22_29\": 2036, \"AGE_30_39\": 1057, \"AGE_40_49\": 1015, \"AGE_50_64\": 1045, \"AGE_65_UP\": 1357, \"MED_AGE\": 22.400000, \"MED_AGE_M\": 23.000000, \"MED_AGE_F\": 22.000000, \"HOUSEHOLDS\": 4080, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 559, \"HSEHLD_1_F\": 894, \"MARHH_CHD\": 490, \"MARHH_NO_C\": 781, \"MHH_CHILD\": 73, \"FHH_CHILD\": 242, \"FAMILIES\": 1793, \"AVE_FAM_SZ\": 2.830000, \"HSE_UNITS\": 4399, \"VACANT\": 319, \"OWNER_OCC\": 1602, \"RENTER_OCC\": 2478 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.453981579159844, 41.000614946044777 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Brentwood\", \"CLASS\": \"borough\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"08416\", \"CAPITAL\": \"N\", \"AREALAND\": 1.446000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10466, \"WHITE\": 10251, \"BLACK\": 56, \"AMERI_ES\": 25, \"ASIAN\": 57, \"HAWN_PI\": 1, \"OTHER\": 22, \"MULT_RACE\": 54, \"HISPANIC\": 72, \"MALES\": 4978, \"FEMALES\": 5488, \"AGE_UNDER5\": 557, \"AGE_5_17\": 1662, \"AGE_18_21\": 475, \"AGE_22_29\": 1164, \"AGE_30_39\": 1605, \"AGE_40_49\": 1658, \"AGE_50_64\": 1478, \"AGE_65_UP\": 1867, \"MED_AGE\": 38.800000, \"MED_AGE_M\": 35.900000, \"MED_AGE_F\": 41.000000, \"HOUSEHOLDS\": 4658, \"AVE_HH_SZ\": 2.240000, \"HSEHLD_1_M\": 613, \"HSEHLD_1_F\": 1058, \"MARHH_CHD\": 891, \"MARHH_NO_C\": 1188, \"MHH_CHILD\": 73, \"FHH_CHILD\": 251, \"FAMILIES\": 2763, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 4895, \"VACANT\": 237, \"OWNER_OCC\": 2949, \"RENTER_OCC\": 1709 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.976182068367123, 40.374468864470771 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Broomall\", \"CLASS\": \"CDP\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"09248\", \"CAPITAL\": \"N\", \"AREALAND\": 2.901000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11046, \"WHITE\": 10097, \"BLACK\": 70, \"AMERI_ES\": 11, \"ASIAN\": 792, \"HAWN_PI\": 0, \"OTHER\": 18, \"MULT_RACE\": 58, \"HISPANIC\": 69, \"MALES\": 5295, \"FEMALES\": 5751, \"AGE_UNDER5\": 566, \"AGE_5_17\": 1799, \"AGE_18_21\": 388, \"AGE_22_29\": 831, \"AGE_30_39\": 1476, \"AGE_40_49\": 1755, \"AGE_50_64\": 1886, \"AGE_65_UP\": 2345, \"MED_AGE\": 42.600000, \"MED_AGE_M\": 41.000000, \"MED_AGE_F\": 44.100000, \"HOUSEHOLDS\": 4260, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 322, \"HSEHLD_1_F\": 650, \"MARHH_CHD\": 1038, \"MARHH_NO_C\": 1612, \"MHH_CHILD\": 37, \"FHH_CHILD\": 133, \"FAMILIES\": 3148, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 4339, \"VACANT\": 79, \"OWNER_OCC\": 3454, \"RENTER_OCC\": 806 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.354728823654, 39.971563526942049 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Butler\", \"CLASS\": \"city\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"10464\", \"CAPITAL\": \"N\", \"AREALAND\": 2.695000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 15121, \"WHITE\": 14444, \"BLACK\": 335, \"AMERI_ES\": 21, \"ASIAN\": 66, \"HAWN_PI\": 4, \"OTHER\": 79, \"MULT_RACE\": 172, \"HISPANIC\": 215, \"MALES\": 7083, \"FEMALES\": 8038, \"AGE_UNDER5\": 1088, \"AGE_5_17\": 2492, \"AGE_18_21\": 801, \"AGE_22_29\": 1825, \"AGE_30_39\": 2254, \"AGE_40_49\": 2142, \"AGE_50_64\": 2082, \"AGE_65_UP\": 2437, \"MED_AGE\": 35.800000, \"MED_AGE_M\": 33.600000, \"MED_AGE_F\": 38.100000, \"HOUSEHOLDS\": 6740, \"AVE_HH_SZ\": 2.180000, \"HSEHLD_1_M\": 1083, \"HSEHLD_1_F\": 1661, \"MARHH_CHD\": 1004, \"MARHH_NO_C\": 1358, \"MHH_CHILD\": 165, \"FHH_CHILD\": 635, \"FAMILIES\": 3624, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 7402, \"VACANT\": 662, \"OWNER_OCC\": 3068, \"RENTER_OCC\": 3672 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.894799374917739, 40.860678858884548 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Carlisle\", \"CLASS\": \"borough\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"11272\", \"CAPITAL\": \"N\", \"AREALAND\": 5.431000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 17970, \"WHITE\": 15980, \"BLACK\": 1243, \"AMERI_ES\": 26, \"ASIAN\": 288, \"HAWN_PI\": 3, \"OTHER\": 127, \"MULT_RACE\": 303, \"HISPANIC\": 352, \"MALES\": 8214, \"FEMALES\": 9756, \"AGE_UNDER5\": 896, \"AGE_5_17\": 2439, \"AGE_18_21\": 2128, \"AGE_22_29\": 2246, \"AGE_30_39\": 2107, \"AGE_40_49\": 2324, \"AGE_50_64\": 2630, \"AGE_65_UP\": 3200, \"MED_AGE\": 35.900000, \"MED_AGE_M\": 34.000000, \"MED_AGE_F\": 37.500000, \"HOUSEHOLDS\": 7426, \"AVE_HH_SZ\": 2.100000, \"HSEHLD_1_M\": 1205, \"HSEHLD_1_F\": 1717, \"MARHH_CHD\": 1093, \"MARHH_NO_C\": 1900, \"MHH_CHILD\": 111, \"FHH_CHILD\": 524, \"FAMILIES\": 4012, \"AVE_FAM_SZ\": 2.810000, \"HSE_UNITS\": 8032, \"VACANT\": 606, \"OWNER_OCC\": 3659, \"RENTER_OCC\": 3767 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.195035332930885, 40.202553399432823 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Carnot-Moon\", \"CLASS\": \"CDP\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"11348\", \"CAPITAL\": \"N\", \"AREALAND\": 5.969000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10637, \"WHITE\": 9607, \"BLACK\": 565, \"AMERI_ES\": 12, \"ASIAN\": 286, \"HAWN_PI\": 5, \"OTHER\": 34, \"MULT_RACE\": 128, \"HISPANIC\": 112, \"MALES\": 5352, \"FEMALES\": 5285, \"AGE_UNDER5\": 508, \"AGE_5_17\": 1412, \"AGE_18_21\": 1283, \"AGE_22_29\": 1240, \"AGE_30_39\": 1638, \"AGE_40_49\": 1562, \"AGE_50_64\": 1703, \"AGE_65_UP\": 1291, \"MED_AGE\": 35.400000, \"MED_AGE_M\": 34.500000, \"MED_AGE_F\": 36.400000, \"HOUSEHOLDS\": 4327, \"AVE_HH_SZ\": 2.190000, \"HSEHLD_1_M\": 755, \"HSEHLD_1_F\": 740, \"MARHH_CHD\": 810, \"MARHH_NO_C\": 1277, \"MHH_CHILD\": 53, \"FHH_CHILD\": 176, \"FAMILIES\": 2543, \"AVE_FAM_SZ\": 2.850000, \"HSE_UNITS\": 4943, \"VACANT\": 616, \"OWNER_OCC\": 2501, \"RENTER_OCC\": 1826 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.211651603853184, 40.517799863522427 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Chambersburg\", \"CLASS\": \"borough\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"12536\", \"CAPITAL\": \"N\", \"AREALAND\": 6.867000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 17862, \"WHITE\": 15439, \"BLACK\": 1350, \"AMERI_ES\": 33, \"ASIAN\": 155, \"HAWN_PI\": 9, \"OTHER\": 550, \"MULT_RACE\": 326, \"HISPANIC\": 1140, \"MALES\": 8034, \"FEMALES\": 9828, \"AGE_UNDER5\": 1088, \"AGE_5_17\": 2628, \"AGE_18_21\": 947, \"AGE_22_29\": 1987, \"AGE_30_39\": 2281, \"AGE_40_49\": 2322, \"AGE_50_64\": 2551, \"AGE_65_UP\": 4058, \"MED_AGE\": 40.000000, \"MED_AGE_M\": 37.300000, \"MED_AGE_F\": 42.300000, \"HOUSEHOLDS\": 7722, \"AVE_HH_SZ\": 2.160000, \"HSEHLD_1_M\": 1060, \"HSEHLD_1_F\": 1832, \"MARHH_CHD\": 1129, \"MARHH_NO_C\": 2050, \"MHH_CHILD\": 166, \"FHH_CHILD\": 567, \"FAMILIES\": 4385, \"AVE_FAM_SZ\": 2.830000, \"HSE_UNITS\": 8305, \"VACANT\": 583, \"OWNER_OCC\": 3892, \"RENTER_OCC\": 3830 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.656366293702277, 39.934813190878266 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Chester\", \"CLASS\": \"city\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"13208\", \"CAPITAL\": \"N\", \"AREALAND\": 4.846000, \"AREAWATER\": 1.167000, \"POP_CL\": 6, \"POP2000\": 36854, \"WHITE\": 6980, \"BLACK\": 27897, \"AMERI_ES\": 75, \"ASIAN\": 226, \"HAWN_PI\": 4, \"OTHER\": 1116, \"MULT_RACE\": 556, \"HISPANIC\": 1986, \"MALES\": 17362, \"FEMALES\": 19492, \"AGE_UNDER5\": 3090, \"AGE_5_17\": 7879, \"AGE_18_21\": 3019, \"AGE_22_29\": 4123, \"AGE_30_39\": 4957, \"AGE_40_49\": 4834, \"AGE_50_64\": 4609, \"AGE_65_UP\": 4343, \"MED_AGE\": 30.600000, \"MED_AGE_M\": 28.500000, \"MED_AGE_F\": 32.500000, \"HOUSEHOLDS\": 12814, \"AVE_HH_SZ\": 2.640000, \"HSEHLD_1_M\": 1752, \"HSEHLD_1_F\": 2247, \"MARHH_CHD\": 1346, \"MARHH_NO_C\": 1835, \"MHH_CHILD\": 391, \"FHH_CHILD\": 2447, \"FAMILIES\": 8126, \"AVE_FAM_SZ\": 3.340000, \"HSE_UNITS\": 14976, \"VACANT\": 2162, \"OWNER_OCC\": 6107, \"RENTER_OCC\": 6707 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.372725853418871, 39.847114487994475 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Coatesville\", \"CLASS\": \"city\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"14712\", \"CAPITAL\": \"N\", \"AREALAND\": 1.853000, \"AREAWATER\": 0.012000, \"POP_CL\": 6, \"POP2000\": 10838, \"WHITE\": 4542, \"BLACK\": 5327, \"AMERI_ES\": 39, \"ASIAN\": 57, \"HAWN_PI\": 3, \"OTHER\": 499, \"MULT_RACE\": 371, \"HISPANIC\": 1165, \"MALES\": 5061, \"FEMALES\": 5777, \"AGE_UNDER5\": 928, \"AGE_5_17\": 2511, \"AGE_18_21\": 596, \"AGE_22_29\": 1140, \"AGE_30_39\": 1590, \"AGE_40_49\": 1466, \"AGE_50_64\": 1290, \"AGE_65_UP\": 1317, \"MED_AGE\": 31.400000, \"MED_AGE_M\": 29.700000, \"MED_AGE_F\": 32.900000, \"HOUSEHOLDS\": 3940, \"AVE_HH_SZ\": 2.700000, \"HSEHLD_1_M\": 467, \"HSEHLD_1_F\": 707, \"MARHH_CHD\": 553, \"MARHH_NO_C\": 655, \"MHH_CHILD\": 108, \"FHH_CHILD\": 733, \"FAMILIES\": 2582, \"AVE_FAM_SZ\": 3.330000, \"HSE_UNITS\": 4360, \"VACANT\": 420, \"OWNER_OCC\": 1801, \"RENTER_OCC\": 2139 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.816683507670106, 39.983557725109819 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Colonial Park\", \"CLASS\": \"CDP\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"15328\", \"CAPITAL\": \"N\", \"AREALAND\": 4.692000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 13259, \"WHITE\": 11030, \"BLACK\": 1293, \"AMERI_ES\": 11, \"ASIAN\": 509, \"HAWN_PI\": 2, \"OTHER\": 201, \"MULT_RACE\": 213, \"HISPANIC\": 414, \"MALES\": 6346, \"FEMALES\": 6913, \"AGE_UNDER5\": 735, \"AGE_5_17\": 1761, \"AGE_18_21\": 539, \"AGE_22_29\": 1906, \"AGE_30_39\": 1964, \"AGE_40_49\": 1860, \"AGE_50_64\": 2038, \"AGE_65_UP\": 2456, \"MED_AGE\": 38.600000, \"MED_AGE_M\": 36.200000, \"MED_AGE_F\": 41.100000, \"HOUSEHOLDS\": 6134, \"AVE_HH_SZ\": 2.120000, \"HSEHLD_1_M\": 955, \"HSEHLD_1_F\": 1262, \"MARHH_CHD\": 924, \"MARHH_NO_C\": 1711, \"MHH_CHILD\": 101, \"FHH_CHILD\": 329, \"FAMILIES\": 3475, \"AVE_FAM_SZ\": 2.780000, \"HSE_UNITS\": 6484, \"VACANT\": 350, \"OWNER_OCC\": 3046, \"RENTER_OCC\": 3088 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.809091516746236, 40.298789647933162 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Columbia\", \"CLASS\": \"borough\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"15384\", \"CAPITAL\": \"N\", \"AREALAND\": 2.439000, \"AREAWATER\": 0.232000, \"POP_CL\": 6, \"POP2000\": 10311, \"WHITE\": 9418, \"BLACK\": 456, \"AMERI_ES\": 19, \"ASIAN\": 42, \"HAWN_PI\": 5, \"OTHER\": 175, \"MULT_RACE\": 196, \"HISPANIC\": 463, \"MALES\": 4863, \"FEMALES\": 5448, \"AGE_UNDER5\": 680, \"AGE_5_17\": 1829, \"AGE_18_21\": 498, \"AGE_22_29\": 1114, \"AGE_30_39\": 1513, \"AGE_40_49\": 1495, \"AGE_50_64\": 1405, \"AGE_65_UP\": 1777, \"MED_AGE\": 36.800000, \"MED_AGE_M\": 35.200000, \"MED_AGE_F\": 38.600000, \"HOUSEHOLDS\": 4287, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 563, \"HSEHLD_1_F\": 880, \"MARHH_CHD\": 722, \"MARHH_NO_C\": 1058, \"MHH_CHILD\": 154, \"FHH_CHILD\": 339, \"FAMILIES\": 2590, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 4595, \"VACANT\": 308, \"OWNER_OCC\": 2598, \"RENTER_OCC\": 1689 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.496830934230886, 40.033197912174728 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Darby\", \"CLASS\": \"borough\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"18152\", \"CAPITAL\": \"N\", \"AREALAND\": 0.816000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10299, \"WHITE\": 3746, \"BLACK\": 6179, \"AMERI_ES\": 14, \"ASIAN\": 90, \"HAWN_PI\": 7, \"OTHER\": 53, \"MULT_RACE\": 210, \"HISPANIC\": 98, \"MALES\": 4752, \"FEMALES\": 5547, \"AGE_UNDER5\": 787, \"AGE_5_17\": 2650, \"AGE_18_21\": 478, \"AGE_22_29\": 891, \"AGE_30_39\": 1537, \"AGE_40_49\": 1427, \"AGE_50_64\": 1127, \"AGE_65_UP\": 1402, \"MED_AGE\": 32.500000, \"MED_AGE_M\": 28.700000, \"MED_AGE_F\": 35.200000, \"HOUSEHOLDS\": 3405, \"AVE_HH_SZ\": 2.880000, \"HSEHLD_1_M\": 390, \"HSEHLD_1_F\": 481, \"MARHH_CHD\": 629, \"MARHH_NO_C\": 531, \"MHH_CHILD\": 109, \"FHH_CHILD\": 669, \"FAMILIES\": 2395, \"AVE_FAM_SZ\": 3.450000, \"HSE_UNITS\": 3999, \"VACANT\": 594, \"OWNER_OCC\": 2165, \"RENTER_OCC\": 1240 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.258417576168767, 39.918314724277835 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Drexel Hill\", \"CLASS\": \"CDP\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"19920\", \"CAPITAL\": \"N\", \"AREALAND\": 3.222000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 29364, \"WHITE\": 27322, \"BLACK\": 581, \"AMERI_ES\": 28, \"ASIAN\": 1130, \"HAWN_PI\": 4, \"OTHER\": 76, \"MULT_RACE\": 223, \"HISPANIC\": 285, \"MALES\": 13928, \"FEMALES\": 15436, \"AGE_UNDER5\": 1944, \"AGE_5_17\": 5197, \"AGE_18_21\": 1178, \"AGE_22_29\": 3224, \"AGE_30_39\": 4816, \"AGE_40_49\": 4581, \"AGE_50_64\": 3881, \"AGE_65_UP\": 4543, \"MED_AGE\": 36.600000, \"MED_AGE_M\": 35.200000, \"MED_AGE_F\": 37.900000, \"HOUSEHOLDS\": 11896, \"AVE_HH_SZ\": 2.460000, \"HSEHLD_1_M\": 1472, \"HSEHLD_1_F\": 2336, \"MARHH_CHD\": 2862, \"MARHH_NO_C\": 3043, \"MHH_CHILD\": 173, \"FHH_CHILD\": 523, \"FAMILIES\": 7501, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 12328, \"VACANT\": 432, \"OWNER_OCC\": 7710, \"RENTER_OCC\": 4186 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.30189734625084, 39.949964633977181 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Dunmore\", \"CLASS\": \"borough\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"20352\", \"CAPITAL\": \"N\", \"AREALAND\": 8.741000, \"AREAWATER\": 0.072000, \"POP_CL\": 6, \"POP2000\": 14018, \"WHITE\": 13801, \"BLACK\": 69, \"AMERI_ES\": 8, \"ASIAN\": 62, \"HAWN_PI\": 2, \"OTHER\": 25, \"MULT_RACE\": 51, \"HISPANIC\": 123, \"MALES\": 6569, \"FEMALES\": 7449, \"AGE_UNDER5\": 724, \"AGE_5_17\": 2199, \"AGE_18_21\": 559, \"AGE_22_29\": 1258, \"AGE_30_39\": 2007, \"AGE_40_49\": 1958, \"AGE_50_64\": 2190, \"AGE_65_UP\": 3123, \"MED_AGE\": 41.100000, \"MED_AGE_M\": 39.300000, \"MED_AGE_F\": 43.200000, \"HOUSEHOLDS\": 6141, \"AVE_HH_SZ\": 2.260000, \"HSEHLD_1_M\": 816, \"HSEHLD_1_F\": 1306, \"MARHH_CHD\": 1095, \"MARHH_NO_C\": 1737, \"MHH_CHILD\": 67, \"FHH_CHILD\": 313, \"FAMILIES\": 3791, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 6528, \"VACANT\": 387, \"OWNER_OCC\": 3840, \"RENTER_OCC\": 2301 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.624483774484588, 41.417532045077827 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"East Norriton\", \"CLASS\": \"CDP\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"21608\", \"CAPITAL\": \"N\", \"AREALAND\": 6.080000, \"AREAWATER\": 0.007000, \"POP_CL\": 6, \"POP2000\": 13211, \"WHITE\": 11730, \"BLACK\": 800, \"AMERI_ES\": 17, \"ASIAN\": 507, \"HAWN_PI\": 0, \"OTHER\": 51, \"MULT_RACE\": 106, \"HISPANIC\": 154, \"MALES\": 6287, \"FEMALES\": 6924, \"AGE_UNDER5\": 686, \"AGE_5_17\": 1797, \"AGE_18_21\": 387, \"AGE_22_29\": 1306, \"AGE_30_39\": 1976, \"AGE_40_49\": 1986, \"AGE_50_64\": 2375, \"AGE_65_UP\": 2698, \"MED_AGE\": 42.200000, \"MED_AGE_M\": 39.900000, \"MED_AGE_F\": 44.600000, \"HOUSEHOLDS\": 5156, \"AVE_HH_SZ\": 2.450000, \"HSEHLD_1_M\": 495, \"HSEHLD_1_F\": 813, \"MARHH_CHD\": 1086, \"MARHH_NO_C\": 1925, \"MHH_CHILD\": 65, \"FHH_CHILD\": 120, \"FAMILIES\": 3547, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 5310, \"VACANT\": 154, \"OWNER_OCC\": 3963, \"RENTER_OCC\": 1193 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.332966111879969, 40.148746575320665 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Easton\", \"CLASS\": \"city\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"21648\", \"CAPITAL\": \"N\", \"AREALAND\": 4.258000, \"AREAWATER\": 0.390000, \"POP_CL\": 6, \"POP2000\": 26263, \"WHITE\": 20610, \"BLACK\": 3338, \"AMERI_ES\": 63, \"ASIAN\": 437, \"HAWN_PI\": 28, \"OTHER\": 965, \"MULT_RACE\": 822, \"HISPANIC\": 2570, \"MALES\": 12956, \"FEMALES\": 13307, \"AGE_UNDER5\": 1619, \"AGE_5_17\": 4489, \"AGE_18_21\": 3062, \"AGE_22_29\": 3182, \"AGE_30_39\": 3985, \"AGE_40_49\": 3600, \"AGE_50_64\": 3196, \"AGE_65_UP\": 3130, \"MED_AGE\": 32.000000, \"MED_AGE_M\": 30.900000, \"MED_AGE_F\": 33.200000, \"HOUSEHOLDS\": 9544, \"AVE_HH_SZ\": 2.460000, \"HSEHLD_1_M\": 1415, \"HSEHLD_1_F\": 1603, \"MARHH_CHD\": 1674, \"MARHH_NO_C\": 1925, \"MHH_CHILD\": 274, \"FHH_CHILD\": 959, \"FAMILIES\": 5738, \"AVE_FAM_SZ\": 3.100000, \"HSE_UNITS\": 10545, \"VACANT\": 1001, \"OWNER_OCC\": 4632, \"RENTER_OCC\": 4912 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.216519843235233, 40.688250836245665 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Elizabethtown\", \"CLASS\": \"borough\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"23016\", \"CAPITAL\": \"N\", \"AREALAND\": 2.603000, \"AREAWATER\": 0.007000, \"POP_CL\": 6, \"POP2000\": 11887, \"WHITE\": 11450, \"BLACK\": 107, \"AMERI_ES\": 21, \"ASIAN\": 146, \"HAWN_PI\": 5, \"OTHER\": 54, \"MULT_RACE\": 104, \"HISPANIC\": 172, \"MALES\": 5362, \"FEMALES\": 6525, \"AGE_UNDER5\": 619, \"AGE_5_17\": 1672, \"AGE_18_21\": 1649, \"AGE_22_29\": 1433, \"AGE_30_39\": 1579, \"AGE_40_49\": 1435, \"AGE_50_64\": 1342, \"AGE_65_UP\": 2158, \"MED_AGE\": 33.600000, \"MED_AGE_M\": 32.700000, \"MED_AGE_F\": 34.400000, \"HOUSEHOLDS\": 4271, \"AVE_HH_SZ\": 2.310000, \"HSEHLD_1_M\": 524, \"HSEHLD_1_F\": 793, \"MARHH_CHD\": 902, \"MARHH_NO_C\": 1284, \"MHH_CHILD\": 87, \"FHH_CHILD\": 229, \"FAMILIES\": 2704, \"AVE_FAM_SZ\": 2.880000, \"HSE_UNITS\": 4483, \"VACANT\": 212, \"OWNER_OCC\": 2525, \"RENTER_OCC\": 1746 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.600458453949855, 40.153207817805615 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Emmaus\", \"CLASS\": \"borough\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"23584\", \"CAPITAL\": \"N\", \"AREALAND\": 2.887000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11313, \"WHITE\": 10848, \"BLACK\": 79, \"AMERI_ES\": 7, \"ASIAN\": 205, \"HAWN_PI\": 3, \"OTHER\": 100, \"MULT_RACE\": 71, \"HISPANIC\": 171, \"MALES\": 5412, \"FEMALES\": 5901, \"AGE_UNDER5\": 590, \"AGE_5_17\": 1806, \"AGE_18_21\": 378, \"AGE_22_29\": 1184, \"AGE_30_39\": 1772, \"AGE_40_49\": 1723, \"AGE_50_64\": 1694, \"AGE_65_UP\": 2166, \"MED_AGE\": 39.600000, \"MED_AGE_M\": 37.900000, \"MED_AGE_F\": 41.300000, \"HOUSEHOLDS\": 4985, \"AVE_HH_SZ\": 2.260000, \"HSEHLD_1_M\": 631, \"HSEHLD_1_F\": 941, \"MARHH_CHD\": 959, \"MARHH_NO_C\": 1577, \"MHH_CHILD\": 92, \"FHH_CHILD\": 266, \"FAMILIES\": 3155, \"AVE_FAM_SZ\": 2.850000, \"HSE_UNITS\": 5186, \"VACANT\": 201, \"OWNER_OCC\": 3180, \"RENTER_OCC\": 1805 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.495828612747331, 40.536999266319974 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ephrata\", \"CLASS\": \"borough\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"23832\", \"CAPITAL\": \"N\", \"AREALAND\": 3.598000, \"AREAWATER\": 0.010000, \"POP_CL\": 6, \"POP2000\": 13213, \"WHITE\": 12698, \"BLACK\": 84, \"AMERI_ES\": 35, \"ASIAN\": 140, \"HAWN_PI\": 18, \"OTHER\": 109, \"MULT_RACE\": 129, \"HISPANIC\": 364, \"MALES\": 6459, \"FEMALES\": 6754, \"AGE_UNDER5\": 880, \"AGE_5_17\": 2288, \"AGE_18_21\": 578, \"AGE_22_29\": 1599, \"AGE_30_39\": 2109, \"AGE_40_49\": 1967, \"AGE_50_64\": 1960, \"AGE_65_UP\": 1832, \"MED_AGE\": 36.000000, \"MED_AGE_M\": 34.700000, \"MED_AGE_F\": 37.300000, \"HOUSEHOLDS\": 5477, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 662, \"HSEHLD_1_F\": 907, \"MARHH_CHD\": 1254, \"MARHH_NO_C\": 1628, \"MHH_CHILD\": 121, \"FHH_CHILD\": 275, \"FAMILIES\": 3564, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 5672, \"VACANT\": 195, \"OWNER_OCC\": 3334, \"RENTER_OCC\": 2143 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.182462016339571, 40.180745241414002 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Erie\", \"CLASS\": \"city\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"24000\", \"CAPITAL\": \"N\", \"AREALAND\": 21.960000, \"AREAWATER\": 6.033000, \"POP_CL\": 8, \"POP2000\": 103717, \"WHITE\": 83550, \"BLACK\": 14724, \"AMERI_ES\": 232, \"ASIAN\": 776, \"HAWN_PI\": 42, \"OTHER\": 1991, \"MULT_RACE\": 2402, \"HISPANIC\": 4572, \"MALES\": 49355, \"FEMALES\": 54362, \"AGE_UNDER5\": 7489, \"AGE_5_17\": 18853, \"AGE_18_21\": 7463, \"AGE_22_29\": 12084, \"AGE_30_39\": 14573, \"AGE_40_49\": 14167, \"AGE_50_64\": 13157, \"AGE_65_UP\": 15931, \"MED_AGE\": 34.100000, \"MED_AGE_M\": 32.300000, \"MED_AGE_F\": 35.800000, \"HOUSEHOLDS\": 40938, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 5672, \"HSEHLD_1_F\": 8004, \"MARHH_CHD\": 6633, \"MARHH_NO_C\": 9008, \"MHH_CHILD\": 1013, \"FHH_CHILD\": 4318, \"FAMILIES\": 24493, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 44971, \"VACANT\": 4033, \"OWNER_OCC\": 22997, \"RENTER_OCC\": 17941 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.076216227536079, 42.114506844122026 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fernway\", \"CLASS\": \"CDP\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"25752\", \"CAPITAL\": \"N\", \"AREALAND\": 5.329000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12188, \"WHITE\": 11829, \"BLACK\": 129, \"AMERI_ES\": 4, \"ASIAN\": 130, \"HAWN_PI\": 1, \"OTHER\": 22, \"MULT_RACE\": 73, \"HISPANIC\": 77, \"MALES\": 5990, \"FEMALES\": 6198, \"AGE_UNDER5\": 1094, \"AGE_5_17\": 2755, \"AGE_18_21\": 426, \"AGE_22_29\": 904, \"AGE_30_39\": 2489, \"AGE_40_49\": 2344, \"AGE_50_64\": 1549, \"AGE_65_UP\": 627, \"MED_AGE\": 34.000000, \"MED_AGE_M\": 33.600000, \"MED_AGE_F\": 34.400000, \"HOUSEHOLDS\": 4224, \"AVE_HH_SZ\": 2.880000, \"HSEHLD_1_M\": 264, \"HSEHLD_1_F\": 379, \"MARHH_CHD\": 1722, \"MARHH_NO_C\": 1285, \"MHH_CHILD\": 53, \"FHH_CHILD\": 215, \"FAMILIES\": 3450, \"AVE_FAM_SZ\": 3.240000, \"HSE_UNITS\": 4338, \"VACANT\": 114, \"OWNER_OCC\": 3868, \"RENTER_OCC\": 356 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.129037805067512, 40.689900860973445 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Franklin Park\", \"CLASS\": \"borough\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"27552\", \"CAPITAL\": \"N\", \"AREALAND\": 13.584000, \"AREAWATER\": 0.004000, \"POP_CL\": 6, \"POP2000\": 11364, \"WHITE\": 10801, \"BLACK\": 116, \"AMERI_ES\": 5, \"ASIAN\": 328, \"HAWN_PI\": 22, \"OTHER\": 19, \"MULT_RACE\": 73, \"HISPANIC\": 61, \"MALES\": 5616, \"FEMALES\": 5748, \"AGE_UNDER5\": 783, \"AGE_5_17\": 2712, \"AGE_18_21\": 342, \"AGE_22_29\": 416, \"AGE_30_39\": 1423, \"AGE_40_49\": 2512, \"AGE_50_64\": 2106, \"AGE_65_UP\": 1070, \"MED_AGE\": 40.000000, \"MED_AGE_M\": 40.000000, \"MED_AGE_F\": 40.000000, \"HOUSEHOLDS\": 3866, \"AVE_HH_SZ\": 2.930000, \"HSEHLD_1_M\": 199, \"HSEHLD_1_F\": 312, \"MARHH_CHD\": 1602, \"MARHH_NO_C\": 1415, \"MHH_CHILD\": 33, \"FHH_CHILD\": 111, \"FAMILIES\": 3284, \"AVE_FAM_SZ\": 3.230000, \"HSE_UNITS\": 3973, \"VACANT\": 107, \"OWNER_OCC\": 3699, \"RENTER_OCC\": 167 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.092048862099062, 40.590458861953955 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fullerton\", \"CLASS\": \"CDP\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"28144\", \"CAPITAL\": \"N\", \"AREALAND\": 3.739000, \"AREAWATER\": 0.005000, \"POP_CL\": 6, \"POP2000\": 14268, \"WHITE\": 12284, \"BLACK\": 554, \"AMERI_ES\": 23, \"ASIAN\": 788, \"HAWN_PI\": 10, \"OTHER\": 367, \"MULT_RACE\": 242, \"HISPANIC\": 878, \"MALES\": 6849, \"FEMALES\": 7419, \"AGE_UNDER5\": 826, \"AGE_5_17\": 1976, \"AGE_18_21\": 545, \"AGE_22_29\": 1777, \"AGE_30_39\": 2217, \"AGE_40_49\": 2018, \"AGE_50_64\": 2191, \"AGE_65_UP\": 2718, \"MED_AGE\": 39.100000, \"MED_AGE_M\": 37.400000, \"MED_AGE_F\": 40.700000, \"HOUSEHOLDS\": 6224, \"AVE_HH_SZ\": 2.270000, \"HSEHLD_1_M\": 838, \"HSEHLD_1_F\": 1138, \"MARHH_CHD\": 1129, \"MARHH_NO_C\": 1904, \"MHH_CHILD\": 99, \"FHH_CHILD\": 276, \"FAMILIES\": 3828, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 6484, \"VACANT\": 260, \"OWNER_OCC\": 3354, \"RENTER_OCC\": 2870 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.480268380155778, 40.631299296782949 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Greensburg\", \"CLASS\": \"city\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"31200\", \"CAPITAL\": \"N\", \"AREALAND\": 4.242000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 15889, \"WHITE\": 14845, \"BLACK\": 621, \"AMERI_ES\": 14, \"ASIAN\": 112, \"HAWN_PI\": 2, \"OTHER\": 61, \"MULT_RACE\": 234, \"HISPANIC\": 172, \"MALES\": 7142, \"FEMALES\": 8747, \"AGE_UNDER5\": 869, \"AGE_5_17\": 2338, \"AGE_18_21\": 930, \"AGE_22_29\": 1761, \"AGE_30_39\": 2191, \"AGE_40_49\": 2361, \"AGE_50_64\": 2372, \"AGE_65_UP\": 3067, \"MED_AGE\": 39.300000, \"MED_AGE_M\": 36.700000, \"MED_AGE_F\": 41.600000, \"HOUSEHOLDS\": 7144, \"AVE_HH_SZ\": 2.110000, \"HSEHLD_1_M\": 1028, \"HSEHLD_1_F\": 1772, \"MARHH_CHD\": 1088, \"MARHH_NO_C\": 1719, \"MHH_CHILD\": 92, \"FHH_CHILD\": 544, \"FAMILIES\": 3923, \"AVE_FAM_SZ\": 2.850000, \"HSE_UNITS\": 7734, \"VACANT\": 590, \"OWNER_OCC\": 3726, \"RENTER_OCC\": 3418 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.54451517183233, 40.304460872427057 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hampton Township\", \"CLASS\": \"CDP\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"32334\", \"CAPITAL\": \"N\", \"AREALAND\": 16.038000, \"AREAWATER\": 0.008000, \"POP_CL\": 6, \"POP2000\": 17526, \"WHITE\": 17116, \"BLACK\": 118, \"AMERI_ES\": 8, \"ASIAN\": 215, \"HAWN_PI\": 1, \"OTHER\": 21, \"MULT_RACE\": 47, \"HISPANIC\": 93, \"MALES\": 8570, \"FEMALES\": 8956, \"AGE_UNDER5\": 1101, \"AGE_5_17\": 3820, \"AGE_18_21\": 551, \"AGE_22_29\": 927, \"AGE_30_39\": 2444, \"AGE_40_49\": 3373, \"AGE_50_64\": 3006, \"AGE_65_UP\": 2304, \"MED_AGE\": 39.800000, \"MED_AGE_M\": 39.100000, \"MED_AGE_F\": 40.300000, \"HOUSEHOLDS\": 6253, \"AVE_HH_SZ\": 2.760000, \"HSEHLD_1_M\": 461, \"HSEHLD_1_F\": 715, \"MARHH_CHD\": 2107, \"MARHH_NO_C\": 2197, \"MHH_CHILD\": 73, \"FHH_CHILD\": 230, \"FAMILIES\": 4899, \"AVE_FAM_SZ\": 3.180000, \"HSE_UNITS\": 6627, \"VACANT\": 374, \"OWNER_OCC\": 5551, \"RENTER_OCC\": 702 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.956586161209202, 40.583095862009209 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hanover\", \"CLASS\": \"borough\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"32448\", \"CAPITAL\": \"N\", \"AREALAND\": 3.650000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14535, \"WHITE\": 14092, \"BLACK\": 75, \"AMERI_ES\": 27, \"ASIAN\": 127, \"HAWN_PI\": 8, \"OTHER\": 107, \"MULT_RACE\": 99, \"HISPANIC\": 298, \"MALES\": 6940, \"FEMALES\": 7595, \"AGE_UNDER5\": 836, \"AGE_5_17\": 2091, \"AGE_18_21\": 611, \"AGE_22_29\": 1552, \"AGE_30_39\": 2073, \"AGE_40_49\": 1991, \"AGE_50_64\": 2303, \"AGE_65_UP\": 3078, \"MED_AGE\": 40.500000, \"MED_AGE_M\": 37.900000, \"MED_AGE_F\": 43.200000, \"HOUSEHOLDS\": 6605, \"AVE_HH_SZ\": 2.160000, \"HSEHLD_1_M\": 958, \"HSEHLD_1_F\": 1442, \"MARHH_CHD\": 1047, \"MARHH_NO_C\": 1901, \"MHH_CHILD\": 151, \"FHH_CHILD\": 345, \"FAMILIES\": 3819, \"AVE_FAM_SZ\": 2.810000, \"HSE_UNITS\": 6982, \"VACANT\": 377, \"OWNER_OCC\": 3666, \"RENTER_OCC\": 2939 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.984768368945737, 39.807297530759179 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Harrisburg\", \"CLASS\": \"city\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"32800\", \"CAPITAL\": \"Y\", \"AREALAND\": 8.110000, \"AREAWATER\": 3.329000, \"POP_CL\": 6, \"POP2000\": 48950, \"WHITE\": 15527, \"BLACK\": 26841, \"AMERI_ES\": 183, \"ASIAN\": 1384, \"HAWN_PI\": 35, \"OTHER\": 3199, \"MULT_RACE\": 1781, \"HISPANIC\": 5724, \"MALES\": 23006, \"FEMALES\": 25944, \"AGE_UNDER5\": 3968, \"AGE_5_17\": 9838, \"AGE_18_21\": 2515, \"AGE_22_29\": 5848, \"AGE_30_39\": 7598, \"AGE_40_49\": 7149, \"AGE_50_64\": 6714, \"AGE_65_UP\": 5320, \"MED_AGE\": 33.000000, \"MED_AGE_M\": 32.300000, \"MED_AGE_F\": 33.600000, \"HOUSEHOLDS\": 20561, \"AVE_HH_SZ\": 2.320000, \"HSEHLD_1_M\": 3866, \"HSEHLD_1_F\": 4208, \"MARHH_CHD\": 1991, \"MARHH_NO_C\": 2826, \"MHH_CHILD\": 588, \"FHH_CHILD\": 3286, \"FAMILIES\": 10912, \"AVE_FAM_SZ\": 3.150000, \"HSE_UNITS\": 24314, \"VACANT\": 3753, \"OWNER_OCC\": 8703, \"RENTER_OCC\": 11858 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.875636522919194, 40.269789599741848 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Harrison Township\", \"CLASS\": \"CDP\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"32868\", \"CAPITAL\": \"N\", \"AREALAND\": 7.272000, \"AREAWATER\": 0.458000, \"POP_CL\": 6, \"POP2000\": 10934, \"WHITE\": 10367, \"BLACK\": 404, \"AMERI_ES\": 6, \"ASIAN\": 45, \"HAWN_PI\": 0, \"OTHER\": 12, \"MULT_RACE\": 100, \"HISPANIC\": 60, \"MALES\": 5055, \"FEMALES\": 5879, \"AGE_UNDER5\": 617, \"AGE_5_17\": 1675, \"AGE_18_21\": 441, \"AGE_22_29\": 874, \"AGE_30_39\": 1366, \"AGE_40_49\": 1817, \"AGE_50_64\": 1729, \"AGE_65_UP\": 2415, \"MED_AGE\": 42.600000, \"MED_AGE_M\": 40.600000, \"MED_AGE_F\": 44.400000, \"HOUSEHOLDS\": 4796, \"AVE_HH_SZ\": 2.270000, \"HSEHLD_1_M\": 518, \"HSEHLD_1_F\": 1000, \"MARHH_CHD\": 835, \"MARHH_NO_C\": 1485, \"MHH_CHILD\": 75, \"FHH_CHILD\": 333, \"FAMILIES\": 3126, \"AVE_FAM_SZ\": 2.830000, \"HSE_UNITS\": 5246, \"VACANT\": 450, \"OWNER_OCC\": 3465, \"RENTER_OCC\": 1331 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.724800753469694, 40.62682586377673 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hazleton\", \"CLASS\": \"city\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"33408\", \"CAPITAL\": \"N\", \"AREALAND\": 5.975000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 23329, \"WHITE\": 22092, \"BLACK\": 192, \"AMERI_ES\": 38, \"ASIAN\": 152, \"HAWN_PI\": 3, \"OTHER\": 645, \"MULT_RACE\": 207, \"HISPANIC\": 1132, \"MALES\": 10898, \"FEMALES\": 12431, \"AGE_UNDER5\": 1187, \"AGE_5_17\": 3720, \"AGE_18_21\": 1050, \"AGE_22_29\": 2189, \"AGE_30_39\": 3257, \"AGE_40_49\": 3013, \"AGE_50_64\": 3730, \"AGE_65_UP\": 5183, \"MED_AGE\": 40.800000, \"MED_AGE_M\": 37.700000, \"MED_AGE_F\": 44.000000, \"HOUSEHOLDS\": 10281, \"AVE_HH_SZ\": 2.230000, \"HSEHLD_1_M\": 1430, \"HSEHLD_1_F\": 2375, \"MARHH_CHD\": 1530, \"MARHH_NO_C\": 2591, \"MHH_CHILD\": 221, \"FHH_CHILD\": 715, \"FAMILIES\": 5999, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 11556, \"VACANT\": 1275, \"OWNER_OCC\": 6065, \"RENTER_OCC\": 4216 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.974587404958925, 40.958835503853635 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hermitage\", \"CLASS\": \"city\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"34064\", \"CAPITAL\": \"N\", \"AREALAND\": 29.469000, \"AREAWATER\": 0.110000, \"POP_CL\": 6, \"POP2000\": 16157, \"WHITE\": 15344, \"BLACK\": 500, \"AMERI_ES\": 7, \"ASIAN\": 130, \"HAWN_PI\": 1, \"OTHER\": 37, \"MULT_RACE\": 138, \"HISPANIC\": 107, \"MALES\": 7560, \"FEMALES\": 8597, \"AGE_UNDER5\": 787, \"AGE_5_17\": 2711, \"AGE_18_21\": 509, \"AGE_22_29\": 1068, \"AGE_30_39\": 1871, \"AGE_40_49\": 2614, \"AGE_50_64\": 2789, \"AGE_65_UP\": 3808, \"MED_AGE\": 44.100000, \"MED_AGE_M\": 42.500000, \"MED_AGE_F\": 45.400000, \"HOUSEHOLDS\": 6809, \"AVE_HH_SZ\": 2.320000, \"HSEHLD_1_M\": 724, \"HSEHLD_1_F\": 1279, \"MARHH_CHD\": 1354, \"MARHH_NO_C\": 2386, \"MHH_CHILD\": 68, \"FHH_CHILD\": 373, \"FAMILIES\": 4618, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 7104, \"VACANT\": 295, \"OWNER_OCC\": 5092, \"RENTER_OCC\": 1717 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.460466274650088, 41.232455859462554 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hershey\", \"CLASS\": \"CDP\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"34144\", \"CAPITAL\": \"N\", \"AREALAND\": 14.406000, \"AREAWATER\": 0.047000, \"POP_CL\": 6, \"POP2000\": 12771, \"WHITE\": 11631, \"BLACK\": 271, \"AMERI_ES\": 8, \"ASIAN\": 622, \"HAWN_PI\": 1, \"OTHER\": 62, \"MULT_RACE\": 176, \"HISPANIC\": 198, \"MALES\": 5916, \"FEMALES\": 6855, \"AGE_UNDER5\": 624, \"AGE_5_17\": 1973, \"AGE_18_21\": 392, \"AGE_22_29\": 1409, \"AGE_30_39\": 1667, \"AGE_40_49\": 1804, \"AGE_50_64\": 1895, \"AGE_65_UP\": 3007, \"MED_AGE\": 41.800000, \"MED_AGE_M\": 39.500000, \"MED_AGE_F\": 43.800000, \"HOUSEHOLDS\": 5451, \"AVE_HH_SZ\": 2.220000, \"HSEHLD_1_M\": 641, \"HSEHLD_1_F\": 1194, \"MARHH_CHD\": 1073, \"MARHH_NO_C\": 1704, \"MHH_CHILD\": 64, \"FHH_CHILD\": 213, \"FAMILIES\": 3300, \"AVE_FAM_SZ\": 2.860000, \"HSE_UNITS\": 5887, \"VACANT\": 436, \"OWNER_OCC\": 2987, \"RENTER_OCC\": 2464 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.651266869561567, 40.278423773307793 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Horsham\", \"CLASS\": \"CDP\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"35800\", \"CAPITAL\": \"N\", \"AREALAND\": 5.464000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14779, \"WHITE\": 13316, \"BLACK\": 560, \"AMERI_ES\": 28, \"ASIAN\": 641, \"HAWN_PI\": 0, \"OTHER\": 89, \"MULT_RACE\": 145, \"HISPANIC\": 214, \"MALES\": 7246, \"FEMALES\": 7533, \"AGE_UNDER5\": 932, \"AGE_5_17\": 2809, \"AGE_18_21\": 540, \"AGE_22_29\": 1479, \"AGE_30_39\": 2741, \"AGE_40_49\": 2566, \"AGE_50_64\": 2104, \"AGE_65_UP\": 1608, \"MED_AGE\": 36.200000, \"MED_AGE_M\": 35.500000, \"MED_AGE_F\": 36.900000, \"HOUSEHOLDS\": 5798, \"AVE_HH_SZ\": 2.540000, \"HSEHLD_1_M\": 688, \"HSEHLD_1_F\": 849, \"MARHH_CHD\": 1538, \"MARHH_NO_C\": 1623, \"MHH_CHILD\": 99, \"FHH_CHILD\": 304, \"FAMILIES\": 3910, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 5917, \"VACANT\": 119, \"OWNER_OCC\": 4181, \"RENTER_OCC\": 1617 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.134440617980175, 40.18239400718069 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Indiana\", \"CLASS\": \"borough\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"36816\", \"CAPITAL\": \"N\", \"AREALAND\": 1.765000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14895, \"WHITE\": 13630, \"BLACK\": 773, \"AMERI_ES\": 10, \"ASIAN\": 281, \"HAWN_PI\": 3, \"OTHER\": 65, \"MULT_RACE\": 133, \"HISPANIC\": 178, \"MALES\": 6792, \"FEMALES\": 8103, \"AGE_UNDER5\": 273, \"AGE_5_17\": 951, \"AGE_18_21\": 6684, \"AGE_22_29\": 2826, \"AGE_30_39\": 898, \"AGE_40_49\": 1011, \"AGE_50_64\": 1032, \"AGE_65_UP\": 1220, \"MED_AGE\": 21.800000, \"MED_AGE_M\": 22.100000, \"MED_AGE_F\": 21.500000, \"HOUSEHOLDS\": 4804, \"AVE_HH_SZ\": 2.290000, \"HSEHLD_1_M\": 677, \"HSEHLD_1_F\": 959, \"MARHH_CHD\": 487, \"MARHH_NO_C\": 787, \"MHH_CHILD\": 28, \"FHH_CHILD\": 161, \"FAMILIES\": 1669, \"AVE_FAM_SZ\": 2.810000, \"HSE_UNITS\": 5096, \"VACANT\": 292, \"OWNER_OCC\": 1766, \"RENTER_OCC\": 3038 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.154908607708094, 40.621083886894276 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Jeannette\", \"CLASS\": \"city\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"37784\", \"CAPITAL\": \"N\", \"AREALAND\": 2.413000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10654, \"WHITE\": 9888, \"BLACK\": 553, \"AMERI_ES\": 9, \"ASIAN\": 10, \"HAWN_PI\": 4, \"OTHER\": 20, \"MULT_RACE\": 170, \"HISPANIC\": 53, \"MALES\": 4974, \"FEMALES\": 5680, \"AGE_UNDER5\": 585, \"AGE_5_17\": 1772, \"AGE_18_21\": 439, \"AGE_22_29\": 996, \"AGE_30_39\": 1511, \"AGE_40_49\": 1624, \"AGE_50_64\": 1600, \"AGE_65_UP\": 2127, \"MED_AGE\": 40.100000, \"MED_AGE_M\": 38.300000, \"MED_AGE_F\": 41.600000, \"HOUSEHOLDS\": 4630, \"AVE_HH_SZ\": 2.290000, \"HSEHLD_1_M\": 593, \"HSEHLD_1_F\": 907, \"MARHH_CHD\": 802, \"MARHH_NO_C\": 1295, \"MHH_CHILD\": 75, \"FHH_CHILD\": 360, \"FAMILIES\": 2948, \"AVE_FAM_SZ\": 2.890000, \"HSE_UNITS\": 5139, \"VACANT\": 509, \"OWNER_OCC\": 3052, \"RENTER_OCC\": 1578 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.614000977069892, 40.328772870092422 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Johnstown\", \"CLASS\": \"city\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"38288\", \"CAPITAL\": \"N\", \"AREALAND\": 5.835000, \"AREAWATER\": 0.248000, \"POP_CL\": 6, \"POP2000\": 23906, \"WHITE\": 20627, \"BLACK\": 2561, \"AMERI_ES\": 31, \"ASIAN\": 68, \"HAWN_PI\": 12, \"OTHER\": 147, \"MULT_RACE\": 460, \"HISPANIC\": 380, \"MALES\": 10939, \"FEMALES\": 12967, \"AGE_UNDER5\": 1427, \"AGE_5_17\": 3659, \"AGE_18_21\": 1014, \"AGE_22_29\": 2409, \"AGE_30_39\": 2926, \"AGE_40_49\": 3345, \"AGE_50_64\": 3854, \"AGE_65_UP\": 5272, \"MED_AGE\": 41.500000, \"MED_AGE_M\": 38.700000, \"MED_AGE_F\": 44.300000, \"HOUSEHOLDS\": 11134, \"AVE_HH_SZ\": 2.110000, \"HSEHLD_1_M\": 1754, \"HSEHLD_1_F\": 2867, \"MARHH_CHD\": 1299, \"MARHH_NO_C\": 2496, \"MHH_CHILD\": 238, \"FHH_CHILD\": 959, \"FAMILIES\": 6049, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 12802, \"VACANT\": 1668, \"OWNER_OCC\": 5564, \"RENTER_OCC\": 5570 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -78.920960446024409, 40.325173910605677 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"King of Prussia\", \"CLASS\": \"CDP\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"39736\", \"CAPITAL\": \"N\", \"AREALAND\": 8.405000, \"AREAWATER\": 0.070000, \"POP_CL\": 6, \"POP2000\": 18511, \"WHITE\": 15308, \"BLACK\": 788, \"AMERI_ES\": 30, \"ASIAN\": 1965, \"HAWN_PI\": 7, \"OTHER\": 155, \"MULT_RACE\": 258, \"HISPANIC\": 354, \"MALES\": 9141, \"FEMALES\": 9370, \"AGE_UNDER5\": 978, \"AGE_5_17\": 2287, \"AGE_18_21\": 558, \"AGE_22_29\": 2961, \"AGE_30_39\": 3298, \"AGE_40_49\": 2415, \"AGE_50_64\": 2926, \"AGE_65_UP\": 3088, \"MED_AGE\": 37.200000, \"MED_AGE_M\": 36.000000, \"MED_AGE_F\": 38.700000, \"HOUSEHOLDS\": 8245, \"AVE_HH_SZ\": 2.220000, \"HSEHLD_1_M\": 1317, \"HSEHLD_1_F\": 1412, \"MARHH_CHD\": 1471, \"MARHH_NO_C\": 2588, \"MHH_CHILD\": 78, \"FHH_CHILD\": 190, \"FAMILIES\": 4775, \"AVE_FAM_SZ\": 2.890000, \"HSE_UNITS\": 8705, \"VACANT\": 460, \"OWNER_OCC\": 4907, \"RENTER_OCC\": 3338 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.378130557281025, 40.094610483301985 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Kingston\", \"CLASS\": \"borough\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"39784\", \"CAPITAL\": \"N\", \"AREALAND\": 2.144000, \"AREAWATER\": 0.061000, \"POP_CL\": 6, \"POP2000\": 13855, \"WHITE\": 13417, \"BLACK\": 106, \"AMERI_ES\": 10, \"ASIAN\": 212, \"HAWN_PI\": 1, \"OTHER\": 40, \"MULT_RACE\": 69, \"HISPANIC\": 111, \"MALES\": 6320, \"FEMALES\": 7535, \"AGE_UNDER5\": 628, \"AGE_5_17\": 2103, \"AGE_18_21\": 588, \"AGE_22_29\": 1268, \"AGE_30_39\": 1736, \"AGE_40_49\": 2074, \"AGE_50_64\": 2072, \"AGE_65_UP\": 3386, \"MED_AGE\": 43.000000, \"MED_AGE_M\": 39.300000, \"MED_AGE_F\": 46.400000, \"HOUSEHOLDS\": 6065, \"AVE_HH_SZ\": 2.160000, \"HSEHLD_1_M\": 882, \"HSEHLD_1_F\": 1551, \"MARHH_CHD\": 997, \"MARHH_NO_C\": 1471, \"MHH_CHILD\": 100, \"FHH_CHILD\": 305, \"FAMILIES\": 3371, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 6555, \"VACANT\": 490, \"OWNER_OCC\": 3323, \"RENTER_OCC\": 2742 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.889522271104411, 41.266482623604475 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lancaster\", \"CLASS\": \"city\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"41216\", \"CAPITAL\": \"N\", \"AREALAND\": 7.398000, \"AREAWATER\": 0.006000, \"POP_CL\": 7, \"POP2000\": 56348, \"WHITE\": 34683, \"BLACK\": 7939, \"AMERI_ES\": 247, \"ASIAN\": 1386, \"HAWN_PI\": 47, \"OTHER\": 9826, \"MULT_RACE\": 2220, \"HISPANIC\": 17331, \"MALES\": 27474, \"FEMALES\": 28874, \"AGE_UNDER5\": 4445, \"AGE_5_17\": 11033, \"AGE_18_21\": 4893, \"AGE_22_29\": 7439, \"AGE_30_39\": 8661, \"AGE_40_49\": 7290, \"AGE_50_64\": 6654, \"AGE_65_UP\": 5933, \"MED_AGE\": 30.400000, \"MED_AGE_M\": 29.200000, \"MED_AGE_F\": 31.700000, \"HOUSEHOLDS\": 20933, \"AVE_HH_SZ\": 2.520000, \"HSEHLD_1_M\": 3116, \"HSEHLD_1_F\": 3819, \"MARHH_CHD\": 3229, \"MARHH_NO_C\": 3762, \"MHH_CHILD\": 677, \"FHH_CHILD\": 2706, \"FAMILIES\": 12156, \"AVE_FAM_SZ\": 3.230000, \"HSE_UNITS\": 23024, \"VACANT\": 2091, \"OWNER_OCC\": 9752, \"RENTER_OCC\": 11181 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.304398354125226, 40.039861105092321 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lansdale\", \"CLASS\": \"borough\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"41432\", \"CAPITAL\": \"N\", \"AREALAND\": 3.064000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 16071, \"WHITE\": 13725, \"BLACK\": 634, \"AMERI_ES\": 15, \"ASIAN\": 1282, \"HAWN_PI\": 25, \"OTHER\": 118, \"MULT_RACE\": 272, \"HISPANIC\": 466, \"MALES\": 7738, \"FEMALES\": 8333, \"AGE_UNDER5\": 1017, \"AGE_5_17\": 2549, \"AGE_18_21\": 736, \"AGE_22_29\": 1857, \"AGE_30_39\": 2731, \"AGE_40_49\": 2482, \"AGE_50_64\": 2194, \"AGE_65_UP\": 2505, \"MED_AGE\": 37.000000, \"MED_AGE_M\": 35.400000, \"MED_AGE_F\": 38.300000, \"HOUSEHOLDS\": 6620, \"AVE_HH_SZ\": 2.360000, \"HSEHLD_1_M\": 964, \"HSEHLD_1_F\": 1187, \"MARHH_CHD\": 1374, \"MARHH_NO_C\": 1722, \"MHH_CHILD\": 115, \"FHH_CHILD\": 360, \"FAMILIES\": 4052, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 6893, \"VACANT\": 273, \"OWNER_OCC\": 3805, \"RENTER_OCC\": 2815 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.284140965375059, 40.241958678828034 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lansdowne\", \"CLASS\": \"borough\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"41440\", \"CAPITAL\": \"N\", \"AREALAND\": 1.177000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11044, \"WHITE\": 8311, \"BLACK\": 2096, \"AMERI_ES\": 10, \"ASIAN\": 317, \"HAWN_PI\": 1, \"OTHER\": 47, \"MULT_RACE\": 262, \"HISPANIC\": 163, \"MALES\": 5177, \"FEMALES\": 5867, \"AGE_UNDER5\": 730, \"AGE_5_17\": 1805, \"AGE_18_21\": 387, \"AGE_22_29\": 1136, \"AGE_30_39\": 1853, \"AGE_40_49\": 1872, \"AGE_50_64\": 1724, \"AGE_65_UP\": 1537, \"MED_AGE\": 38.000000, \"MED_AGE_M\": 36.400000, \"MED_AGE_F\": 39.400000, \"HOUSEHOLDS\": 4724, \"AVE_HH_SZ\": 2.330000, \"HSEHLD_1_M\": 596, \"HSEHLD_1_F\": 1051, \"MARHH_CHD\": 942, \"MARHH_NO_C\": 1075, \"MHH_CHILD\": 67, \"FHH_CHILD\": 267, \"FAMILIES\": 2748, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 4999, \"VACANT\": 275, \"OWNER_OCC\": 3024, \"RENTER_OCC\": 1700 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.275400132189318, 39.941347689035872 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lebanon\", \"CLASS\": \"city\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"42168\", \"CAPITAL\": \"N\", \"AREALAND\": 4.185000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 24461, \"WHITE\": 20915, \"BLACK\": 790, \"AMERI_ES\": 69, \"ASIAN\": 249, \"HAWN_PI\": 25, \"OTHER\": 1983, \"MULT_RACE\": 430, \"HISPANIC\": 4019, \"MALES\": 11857, \"FEMALES\": 12604, \"AGE_UNDER5\": 1805, \"AGE_5_17\": 4321, \"AGE_18_21\": 1151, \"AGE_22_29\": 2692, \"AGE_30_39\": 3651, \"AGE_40_49\": 3350, \"AGE_50_64\": 3422, \"AGE_65_UP\": 4069, \"MED_AGE\": 36.300000, \"MED_AGE_M\": 35.000000, \"MED_AGE_F\": 37.800000, \"HOUSEHOLDS\": 10266, \"AVE_HH_SZ\": 2.320000, \"HSEHLD_1_M\": 1582, \"HSEHLD_1_F\": 2057, \"MARHH_CHD\": 1633, \"MARHH_NO_C\": 2342, \"MHH_CHILD\": 295, \"FHH_CHILD\": 991, \"FAMILIES\": 6061, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 11220, \"VACANT\": 954, \"OWNER_OCC\": 5150, \"RENTER_OCC\": 5116 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.42088385470413, 40.341529983555091 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Levittown\", \"CLASS\": \"CDP\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"42928\", \"CAPITAL\": \"N\", \"AREALAND\": 10.164000, \"AREAWATER\": 0.062000, \"POP_CL\": 7, \"POP2000\": 53966, \"WHITE\": 50922, \"BLACK\": 1321, \"AMERI_ES\": 88, \"ASIAN\": 520, \"HAWN_PI\": 22, \"OTHER\": 462, \"MULT_RACE\": 631, \"HISPANIC\": 1199, \"MALES\": 26471, \"FEMALES\": 27495, \"AGE_UNDER5\": 3327, \"AGE_5_17\": 10911, \"AGE_18_21\": 2613, \"AGE_22_29\": 4562, \"AGE_30_39\": 8583, \"AGE_40_49\": 8826, \"AGE_50_64\": 7293, \"AGE_65_UP\": 7851, \"MED_AGE\": 37.000000, \"MED_AGE_M\": 35.900000, \"MED_AGE_F\": 38.000000, \"HOUSEHOLDS\": 18603, \"AVE_HH_SZ\": 2.890000, \"HSEHLD_1_M\": 1373, \"HSEHLD_1_F\": 1945, \"MARHH_CHD\": 5245, \"MARHH_NO_C\": 6047, \"MHH_CHILD\": 442, \"FHH_CHILD\": 978, \"FAMILIES\": 14506, \"AVE_FAM_SZ\": 3.280000, \"HSE_UNITS\": 19044, \"VACANT\": 441, \"OWNER_OCC\": 15933, \"RENTER_OCC\": 2670 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.849828785494083, 40.154112722790479 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lower Burrell\", \"CLASS\": \"city\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"44864\", \"CAPITAL\": \"N\", \"AREALAND\": 11.548000, \"AREAWATER\": 0.273000, \"POP_CL\": 6, \"POP2000\": 12608, \"WHITE\": 12349, \"BLACK\": 117, \"AMERI_ES\": 4, \"ASIAN\": 45, \"HAWN_PI\": 2, \"OTHER\": 13, \"MULT_RACE\": 78, \"HISPANIC\": 56, \"MALES\": 5937, \"FEMALES\": 6671, \"AGE_UNDER5\": 577, \"AGE_5_17\": 2132, \"AGE_18_21\": 409, \"AGE_22_29\": 861, \"AGE_30_39\": 1601, \"AGE_40_49\": 2058, \"AGE_50_64\": 2103, \"AGE_65_UP\": 2867, \"MED_AGE\": 43.300000, \"MED_AGE_M\": 41.700000, \"MED_AGE_F\": 44.800000, \"HOUSEHOLDS\": 5133, \"AVE_HH_SZ\": 2.410000, \"HSEHLD_1_M\": 428, \"HSEHLD_1_F\": 895, \"MARHH_CHD\": 1108, \"MARHH_NO_C\": 1901, \"MHH_CHILD\": 78, \"FHH_CHILD\": 230, \"FAMILIES\": 3654, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 5324, \"VACANT\": 191, \"OWNER_OCC\": 4169, \"RENTER_OCC\": 964 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.721951749512186, 40.583965864382236 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"McCandless Township\", \"CLASS\": \"CDP\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"45904\", \"CAPITAL\": \"N\", \"AREALAND\": 16.543000, \"AREAWATER\": 0.112000, \"POP_CL\": 6, \"POP2000\": 29022, \"WHITE\": 27449, \"BLACK\": 375, \"AMERI_ES\": 15, \"ASIAN\": 926, \"HAWN_PI\": 2, \"OTHER\": 41, \"MULT_RACE\": 214, \"HISPANIC\": 202, \"MALES\": 13803, \"FEMALES\": 15219, \"AGE_UNDER5\": 1709, \"AGE_5_17\": 5137, \"AGE_18_21\": 1159, \"AGE_22_29\": 2362, \"AGE_30_39\": 4006, \"AGE_40_49\": 5046, \"AGE_50_64\": 4941, \"AGE_65_UP\": 4662, \"MED_AGE\": 40.300000, \"MED_AGE_M\": 38.700000, \"MED_AGE_F\": 41.500000, \"HOUSEHOLDS\": 11159, \"AVE_HH_SZ\": 2.490000, \"HSEHLD_1_M\": 1071, \"HSEHLD_1_F\": 1721, \"MARHH_CHD\": 3144, \"MARHH_NO_C\": 3863, \"MHH_CHILD\": 105, \"FHH_CHILD\": 339, \"FAMILIES\": 7921, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 11697, \"VACANT\": 538, \"OWNER_OCC\": 8722, \"RENTER_OCC\": 2437 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.029294995043216, 40.576509861988605 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"McKeesport\", \"CLASS\": \"city\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"46256\", \"CAPITAL\": \"N\", \"AREALAND\": 5.001000, \"AREAWATER\": 0.379000, \"POP_CL\": 6, \"POP2000\": 24040, \"WHITE\": 17406, \"BLACK\": 5881, \"AMERI_ES\": 66, \"ASIAN\": 30, \"HAWN_PI\": 2, \"OTHER\": 141, \"MULT_RACE\": 514, \"HISPANIC\": 361, \"MALES\": 11034, \"FEMALES\": 13006, \"AGE_UNDER5\": 1657, \"AGE_5_17\": 4454, \"AGE_18_21\": 1056, \"AGE_22_29\": 2091, \"AGE_30_39\": 2857, \"AGE_40_49\": 3500, \"AGE_50_64\": 3402, \"AGE_65_UP\": 5023, \"MED_AGE\": 39.700000, \"MED_AGE_M\": 36.700000, \"MED_AGE_F\": 42.100000, \"HOUSEHOLDS\": 9655, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 1332, \"HSEHLD_1_F\": 1945, \"MARHH_CHD\": 1246, \"MARHH_NO_C\": 2103, \"MHH_CHILD\": 235, \"FHH_CHILD\": 1278, \"FAMILIES\": 5973, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 11124, \"VACANT\": 1469, \"OWNER_OCC\": 5793, \"RENTER_OCC\": 3862 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.848847360569408, 40.343918865680742 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Meadville\", \"CLASS\": \"city\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"48360\", \"CAPITAL\": \"N\", \"AREALAND\": 4.351000, \"AREAWATER\": 0.004000, \"POP_CL\": 6, \"POP2000\": 13685, \"WHITE\": 12587, \"BLACK\": 686, \"AMERI_ES\": 24, \"ASIAN\": 86, \"HAWN_PI\": 6, \"OTHER\": 46, \"MULT_RACE\": 250, \"HISPANIC\": 152, \"MALES\": 6152, \"FEMALES\": 7533, \"AGE_UNDER5\": 757, \"AGE_5_17\": 1895, \"AGE_18_21\": 2044, \"AGE_22_29\": 1447, \"AGE_30_39\": 1451, \"AGE_40_49\": 1631, \"AGE_50_64\": 1902, \"AGE_65_UP\": 2558, \"MED_AGE\": 34.700000, \"MED_AGE_M\": 31.800000, \"MED_AGE_F\": 37.700000, \"HOUSEHOLDS\": 5436, \"AVE_HH_SZ\": 2.180000, \"HSEHLD_1_M\": 802, \"HSEHLD_1_F\": 1288, \"MARHH_CHD\": 763, \"MARHH_NO_C\": 1219, \"MHH_CHILD\": 107, \"FHH_CHILD\": 479, \"FAMILIES\": 2891, \"AVE_FAM_SZ\": 2.860000, \"HSE_UNITS\": 5985, \"VACANT\": 549, \"OWNER_OCC\": 2497, \"RENTER_OCC\": 2939 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.147443963459608, 41.642132850198806 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Montgomeryville\", \"CLASS\": \"CDP\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"50672\", \"CAPITAL\": \"N\", \"AREALAND\": 4.771000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12031, \"WHITE\": 10533, \"BLACK\": 392, \"AMERI_ES\": 7, \"ASIAN\": 933, \"HAWN_PI\": 3, \"OTHER\": 48, \"MULT_RACE\": 115, \"HISPANIC\": 165, \"MALES\": 5926, \"FEMALES\": 6105, \"AGE_UNDER5\": 1012, \"AGE_5_17\": 2581, \"AGE_18_21\": 342, \"AGE_22_29\": 847, \"AGE_30_39\": 2202, \"AGE_40_49\": 2174, \"AGE_50_64\": 1837, \"AGE_65_UP\": 1036, \"MED_AGE\": 36.100000, \"MED_AGE_M\": 35.400000, \"MED_AGE_F\": 36.600000, \"HOUSEHOLDS\": 4114, \"AVE_HH_SZ\": 2.870000, \"HSEHLD_1_M\": 271, \"HSEHLD_1_F\": 395, \"MARHH_CHD\": 1606, \"MARHH_NO_C\": 1302, \"MHH_CHILD\": 49, \"FHH_CHILD\": 131, \"FAMILIES\": 3279, \"AVE_FAM_SZ\": 3.260000, \"HSE_UNITS\": 4158, \"VACANT\": 44, \"OWNER_OCC\": 3801, \"RENTER_OCC\": 313 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.237878470338003, 40.250390777887375 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Morrisville\", \"CLASS\": \"borough\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"51144\", \"CAPITAL\": \"N\", \"AREALAND\": 1.771000, \"AREAWATER\": 0.199000, \"POP_CL\": 6, \"POP2000\": 10023, \"WHITE\": 7615, \"BLACK\": 1918, \"AMERI_ES\": 18, \"ASIAN\": 120, \"HAWN_PI\": 0, \"OTHER\": 208, \"MULT_RACE\": 144, \"HISPANIC\": 483, \"MALES\": 4792, \"FEMALES\": 5231, \"AGE_UNDER5\": 737, \"AGE_5_17\": 1741, \"AGE_18_21\": 407, \"AGE_22_29\": 1134, \"AGE_30_39\": 1814, \"AGE_40_49\": 1612, \"AGE_50_64\": 1374, \"AGE_65_UP\": 1204, \"MED_AGE\": 35.700000, \"MED_AGE_M\": 35.200000, \"MED_AGE_F\": 36.200000, \"HOUSEHOLDS\": 4154, \"AVE_HH_SZ\": 2.410000, \"HSEHLD_1_M\": 541, \"HSEHLD_1_F\": 707, \"MARHH_CHD\": 813, \"MARHH_NO_C\": 959, \"MHH_CHILD\": 112, \"FHH_CHILD\": 383, \"FAMILIES\": 2612, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 4313, \"VACANT\": 159, \"OWNER_OCC\": 2346, \"RENTER_OCC\": 1808 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -74.779993784939464, 40.207461920971696 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mountain Top\", \"CLASS\": \"CDP\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"51384\", \"CAPITAL\": \"N\", \"AREALAND\": 68.168000, \"AREAWATER\": 0.844000, \"POP_CL\": 6, \"POP2000\": 15269, \"WHITE\": 14814, \"BLACK\": 82, \"AMERI_ES\": 4, \"ASIAN\": 248, \"HAWN_PI\": 0, \"OTHER\": 36, \"MULT_RACE\": 85, \"HISPANIC\": 165, \"MALES\": 7459, \"FEMALES\": 7810, \"AGE_UNDER5\": 904, \"AGE_5_17\": 3068, \"AGE_18_21\": 592, \"AGE_22_29\": 992, \"AGE_30_39\": 2304, \"AGE_40_49\": 2664, \"AGE_50_64\": 2671, \"AGE_65_UP\": 2074, \"MED_AGE\": 39.200000, \"MED_AGE_M\": 38.600000, \"MED_AGE_F\": 39.700000, \"HOUSEHOLDS\": 5556, \"AVE_HH_SZ\": 2.720000, \"HSEHLD_1_M\": 421, \"HSEHLD_1_F\": 601, \"MARHH_CHD\": 1742, \"MARHH_NO_C\": 2048, \"MHH_CHILD\": 74, \"FHH_CHILD\": 229, \"FAMILIES\": 4397, \"AVE_FAM_SZ\": 3.100000, \"HSE_UNITS\": 5774, \"VACANT\": 218, \"OWNER_OCC\": 4942, \"RENTER_OCC\": 614 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.931676893926976, 41.138083563315931 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mount Lebanon\", \"CLASS\": \"CDP\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"51704\", \"CAPITAL\": \"N\", \"AREALAND\": 6.050000, \"AREAWATER\": 0.004000, \"POP_CL\": 6, \"POP2000\": 33017, \"WHITE\": 31766, \"BLACK\": 202, \"AMERI_ES\": 23, \"ASIAN\": 757, \"HAWN_PI\": 4, \"OTHER\": 61, \"MULT_RACE\": 204, \"HISPANIC\": 263, \"MALES\": 15370, \"FEMALES\": 17647, \"AGE_UNDER5\": 1998, \"AGE_5_17\": 6201, \"AGE_18_21\": 750, \"AGE_22_29\": 1972, \"AGE_30_39\": 4570, \"AGE_40_49\": 5677, \"AGE_50_64\": 5627, \"AGE_65_UP\": 6222, \"MED_AGE\": 41.800000, \"MED_AGE_M\": 39.900000, \"MED_AGE_F\": 43.300000, \"HOUSEHOLDS\": 13610, \"AVE_HH_SZ\": 2.370000, \"HSEHLD_1_M\": 1365, \"HSEHLD_1_F\": 2806, \"MARHH_CHD\": 3645, \"MARHH_NO_C\": 4150, \"MHH_CHILD\": 100, \"FHH_CHILD\": 514, \"FAMILIES\": 9023, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 14089, \"VACANT\": 479, \"OWNER_OCC\": 10255, \"RENTER_OCC\": 3355 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.049112908098621, 40.376768864364443 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Munhall\", \"CLASS\": \"borough\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"52320\", \"CAPITAL\": \"N\", \"AREALAND\": 2.309000, \"AREAWATER\": 0.110000, \"POP_CL\": 6, \"POP2000\": 12264, \"WHITE\": 11624, \"BLACK\": 415, \"AMERI_ES\": 2, \"ASIAN\": 75, \"HAWN_PI\": 0, \"OTHER\": 35, \"MULT_RACE\": 113, \"HISPANIC\": 98, \"MALES\": 5634, \"FEMALES\": 6630, \"AGE_UNDER5\": 646, \"AGE_5_17\": 1898, \"AGE_18_21\": 483, \"AGE_22_29\": 1036, \"AGE_30_39\": 1671, \"AGE_40_49\": 1868, \"AGE_50_64\": 1923, \"AGE_65_UP\": 2739, \"MED_AGE\": 42.200000, \"MED_AGE_M\": 39.700000, \"MED_AGE_F\": 44.600000, \"HOUSEHOLDS\": 5364, \"AVE_HH_SZ\": 2.250000, \"HSEHLD_1_M\": 669, \"HSEHLD_1_F\": 1246, \"MARHH_CHD\": 909, \"MARHH_NO_C\": 1423, \"MHH_CHILD\": 78, \"FHH_CHILD\": 329, \"FAMILIES\": 3239, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 5780, \"VACANT\": 416, \"OWNER_OCC\": 3719, \"RENTER_OCC\": 1645 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.90122424583447, 40.391201864640735 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Municipality of Monroeville\", \"CLASS\": \"borough\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"52330\", \"CAPITAL\": \"N\", \"AREALAND\": 19.790000, \"AREAWATER\": 0.010000, \"POP_CL\": 6, \"POP2000\": 29349, \"WHITE\": 25118, \"BLACK\": 2432, \"AMERI_ES\": 41, \"ASIAN\": 1294, \"HAWN_PI\": 13, \"OTHER\": 89, \"MULT_RACE\": 362, \"HISPANIC\": 225, \"MALES\": 13782, \"FEMALES\": 15567, \"AGE_UNDER5\": 1447, \"AGE_5_17\": 4532, \"AGE_18_21\": 1002, \"AGE_22_29\": 2470, \"AGE_30_39\": 3942, \"AGE_40_49\": 4752, \"AGE_50_64\": 5256, \"AGE_65_UP\": 5948, \"MED_AGE\": 42.600000, \"MED_AGE_M\": 40.700000, \"MED_AGE_F\": 44.500000, \"HOUSEHOLDS\": 12376, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 1520, \"HSEHLD_1_F\": 2296, \"MARHH_CHD\": 2481, \"MARHH_NO_C\": 4037, \"MHH_CHILD\": 124, \"FHH_CHILD\": 592, \"FAMILIES\": 8044, \"AVE_FAM_SZ\": 2.890000, \"HSE_UNITS\": 13159, \"VACANT\": 783, \"OWNER_OCC\": 8620, \"RENTER_OCC\": 3756 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.76527059375546, 40.431033865642689 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Municipality of Murrysville\", \"CLASS\": \"borough\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"52332\", \"CAPITAL\": \"N\", \"AREALAND\": 36.934000, \"AREAWATER\": 0.007000, \"POP_CL\": 6, \"POP2000\": 18872, \"WHITE\": 18000, \"BLACK\": 116, \"AMERI_ES\": 9, \"ASIAN\": 619, \"HAWN_PI\": 2, \"OTHER\": 31, \"MULT_RACE\": 95, \"HISPANIC\": 106, \"MALES\": 9336, \"FEMALES\": 9536, \"AGE_UNDER5\": 966, \"AGE_5_17\": 3726, \"AGE_18_21\": 605, \"AGE_22_29\": 813, \"AGE_30_39\": 2327, \"AGE_40_49\": 3527, \"AGE_50_64\": 3970, \"AGE_65_UP\": 2938, \"MED_AGE\": 42.800000, \"MED_AGE_M\": 41.900000, \"MED_AGE_F\": 43.700000, \"HOUSEHOLDS\": 7083, \"AVE_HH_SZ\": 2.630000, \"HSEHLD_1_M\": 527, \"HSEHLD_1_F\": 777, \"MARHH_CHD\": 2194, \"MARHH_NO_C\": 2891, \"MHH_CHILD\": 66, \"FHH_CHILD\": 182, \"FAMILIES\": 5630, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 7396, \"VACANT\": 313, \"OWNER_OCC\": 6445, \"RENTER_OCC\": 638 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.656727887139354, 40.434827867644259 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Nanticoke\", \"CLASS\": \"city\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"52584\", \"CAPITAL\": \"N\", \"AREALAND\": 3.507000, \"AREAWATER\": 0.105000, \"POP_CL\": 6, \"POP2000\": 10955, \"WHITE\": 10828, \"BLACK\": 30, \"AMERI_ES\": 11, \"ASIAN\": 28, \"HAWN_PI\": 1, \"OTHER\": 17, \"MULT_RACE\": 40, \"HISPANIC\": 49, \"MALES\": 5116, \"FEMALES\": 5839, \"AGE_UNDER5\": 517, \"AGE_5_17\": 1639, \"AGE_18_21\": 483, \"AGE_22_29\": 984, \"AGE_30_39\": 1468, \"AGE_40_49\": 1404, \"AGE_50_64\": 1904, \"AGE_65_UP\": 2556, \"MED_AGE\": 42.700000, \"MED_AGE_M\": 39.400000, \"MED_AGE_F\": 46.100000, \"HOUSEHOLDS\": 4850, \"AVE_HH_SZ\": 2.210000, \"HSEHLD_1_M\": 630, \"HSEHLD_1_F\": 1100, \"MARHH_CHD\": 758, \"MARHH_NO_C\": 1307, \"MHH_CHILD\": 98, \"FHH_CHILD\": 282, \"FAMILIES\": 2906, \"AVE_FAM_SZ\": 2.880000, \"HSE_UNITS\": 5487, \"VACANT\": 637, \"OWNER_OCC\": 3003, \"RENTER_OCC\": 1847 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.999160454876957, 41.199515470291416 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Nether Providence Township\", \"CLASS\": \"CDP\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"53112\", \"CAPITAL\": \"N\", \"AREALAND\": 4.709000, \"AREAWATER\": 0.011000, \"POP_CL\": 6, \"POP2000\": 13456, \"WHITE\": 12121, \"BLACK\": 824, \"AMERI_ES\": 13, \"ASIAN\": 315, \"HAWN_PI\": 5, \"OTHER\": 36, \"MULT_RACE\": 142, \"HISPANIC\": 152, \"MALES\": 6404, \"FEMALES\": 7052, \"AGE_UNDER5\": 750, \"AGE_5_17\": 2673, \"AGE_18_21\": 375, \"AGE_22_29\": 754, \"AGE_30_39\": 1812, \"AGE_40_49\": 2363, \"AGE_50_64\": 2369, \"AGE_65_UP\": 2360, \"MED_AGE\": 41.600000, \"MED_AGE_M\": 40.000000, \"MED_AGE_F\": 43.000000, \"HOUSEHOLDS\": 5007, \"AVE_HH_SZ\": 2.620000, \"HSEHLD_1_M\": 375, \"HSEHLD_1_F\": 711, \"MARHH_CHD\": 1417, \"MARHH_NO_C\": 1703, \"MHH_CHILD\": 58, \"FHH_CHILD\": 250, \"FAMILIES\": 3755, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 5125, \"VACANT\": 118, \"OWNER_OCC\": 4409, \"RENTER_OCC\": 598 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.373758988544395, 39.894614487145716 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"New Castle\", \"CLASS\": \"city\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"53368\", \"CAPITAL\": \"N\", \"AREALAND\": 8.536000, \"AREAWATER\": 0.045000, \"POP_CL\": 6, \"POP2000\": 26309, \"WHITE\": 22829, \"BLACK\": 2839, \"AMERI_ES\": 28, \"ASIAN\": 46, \"HAWN_PI\": 2, \"OTHER\": 78, \"MULT_RACE\": 487, \"HISPANIC\": 199, \"MALES\": 12114, \"FEMALES\": 14195, \"AGE_UNDER5\": 1756, \"AGE_5_17\": 4510, \"AGE_18_21\": 1218, \"AGE_22_29\": 2525, \"AGE_30_39\": 3363, \"AGE_40_49\": 3663, \"AGE_50_64\": 3817, \"AGE_65_UP\": 5457, \"MED_AGE\": 39.400000, \"MED_AGE_M\": 36.300000, \"MED_AGE_F\": 42.100000, \"HOUSEHOLDS\": 10727, \"AVE_HH_SZ\": 2.360000, \"HSEHLD_1_M\": 1264, \"HSEHLD_1_F\": 2329, \"MARHH_CHD\": 1662, \"MARHH_NO_C\": 2757, \"MHH_CHILD\": 221, \"FHH_CHILD\": 1011, \"FAMILIES\": 6722, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 11709, \"VACANT\": 982, \"OWNER_OCC\": 6930, \"RENTER_OCC\": 3797 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.344558441287901, 40.997324859866467 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"New Kensington\", \"CLASS\": \"city\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"53736\", \"CAPITAL\": \"N\", \"AREALAND\": 3.969000, \"AREAWATER\": 0.273000, \"POP_CL\": 6, \"POP2000\": 14701, \"WHITE\": 12915, \"BLACK\": 1447, \"AMERI_ES\": 18, \"ASIAN\": 34, \"HAWN_PI\": 1, \"OTHER\": 54, \"MULT_RACE\": 232, \"HISPANIC\": 106, \"MALES\": 6899, \"FEMALES\": 7802, \"AGE_UNDER5\": 784, \"AGE_5_17\": 2414, \"AGE_18_21\": 522, \"AGE_22_29\": 1205, \"AGE_30_39\": 1985, \"AGE_40_49\": 2262, \"AGE_50_64\": 2349, \"AGE_65_UP\": 3180, \"MED_AGE\": 41.800000, \"MED_AGE_M\": 39.700000, \"MED_AGE_F\": 44.000000, \"HOUSEHOLDS\": 6519, \"AVE_HH_SZ\": 2.240000, \"HSEHLD_1_M\": 866, \"HSEHLD_1_F\": 1411, \"MARHH_CHD\": 1021, \"MARHH_NO_C\": 1870, \"MHH_CHILD\": 97, \"FHH_CHILD\": 434, \"FAMILIES\": 3962, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 7309, \"VACANT\": 790, \"OWNER_OCC\": 4048, \"RENTER_OCC\": 2471 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.758336648218332, 40.568366863987393 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Norristown\", \"CLASS\": \"borough\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"54656\", \"CAPITAL\": \"N\", \"AREALAND\": 3.526000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 31282, \"WHITE\": 16992, \"BLACK\": 10887, \"AMERI_ES\": 63, \"ASIAN\": 926, \"HAWN_PI\": 10, \"OTHER\": 1443, \"MULT_RACE\": 961, \"HISPANIC\": 3282, \"MALES\": 15231, \"FEMALES\": 16051, \"AGE_UNDER5\": 2148, \"AGE_5_17\": 5699, \"AGE_18_21\": 1698, \"AGE_22_29\": 4189, \"AGE_30_39\": 5200, \"AGE_40_49\": 4359, \"AGE_50_64\": 4295, \"AGE_65_UP\": 3694, \"MED_AGE\": 33.700000, \"MED_AGE_M\": 32.100000, \"MED_AGE_F\": 35.300000, \"HOUSEHOLDS\": 12028, \"AVE_HH_SZ\": 2.520000, \"HSEHLD_1_M\": 1828, \"HSEHLD_1_F\": 2101, \"MARHH_CHD\": 1776, \"MARHH_NO_C\": 2277, \"MHH_CHILD\": 290, \"FHH_CHILD\": 1390, \"FAMILIES\": 7148, \"AVE_FAM_SZ\": 3.220000, \"HSE_UNITS\": 13531, \"VACANT\": 1503, \"OWNER_OCC\": 5786, \"RENTER_OCC\": 6242 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.341756740831698, 40.119886556748831 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"North Versailles\", \"CLASS\": \"CDP\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"55496\", \"CAPITAL\": \"N\", \"AREALAND\": 8.109000, \"AREAWATER\": 0.162000, \"POP_CL\": 6, \"POP2000\": 11125, \"WHITE\": 9769, \"BLACK\": 1087, \"AMERI_ES\": 7, \"ASIAN\": 85, \"HAWN_PI\": 3, \"OTHER\": 24, \"MULT_RACE\": 150, \"HISPANIC\": 54, \"MALES\": 5250, \"FEMALES\": 5875, \"AGE_UNDER5\": 578, \"AGE_5_17\": 1637, \"AGE_18_21\": 469, \"AGE_22_29\": 956, \"AGE_30_39\": 1543, \"AGE_40_49\": 1734, \"AGE_50_64\": 1830, \"AGE_65_UP\": 2378, \"MED_AGE\": 42.300000, \"MED_AGE_M\": 40.600000, \"MED_AGE_F\": 43.600000, \"HOUSEHOLDS\": 4933, \"AVE_HH_SZ\": 2.230000, \"HSEHLD_1_M\": 648, \"HSEHLD_1_F\": 964, \"MARHH_CHD\": 712, \"MARHH_NO_C\": 1494, \"MHH_CHILD\": 92, \"FHH_CHILD\": 346, \"FAMILIES\": 3101, \"AVE_FAM_SZ\": 2.820000, \"HSE_UNITS\": 5227, \"VACANT\": 294, \"OWNER_OCC\": 3520, \"RENTER_OCC\": 1413 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.810181465692168, 40.380218865665775 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Oil City\", \"CLASS\": \"city\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"56456\", \"CAPITAL\": \"N\", \"AREALAND\": 4.514000, \"AREAWATER\": 0.216000, \"POP_CL\": 6, \"POP2000\": 11504, \"WHITE\": 11256, \"BLACK\": 102, \"AMERI_ES\": 30, \"ASIAN\": 33, \"HAWN_PI\": 5, \"OTHER\": 13, \"MULT_RACE\": 65, \"HISPANIC\": 72, \"MALES\": 5468, \"FEMALES\": 6036, \"AGE_UNDER5\": 731, \"AGE_5_17\": 2239, \"AGE_18_21\": 527, \"AGE_22_29\": 1050, \"AGE_30_39\": 1576, \"AGE_40_49\": 1730, \"AGE_50_64\": 1641, \"AGE_65_UP\": 2010, \"MED_AGE\": 37.900000, \"MED_AGE_M\": 35.400000, \"MED_AGE_F\": 40.100000, \"HOUSEHOLDS\": 4762, \"AVE_HH_SZ\": 2.370000, \"HSEHLD_1_M\": 559, \"HSEHLD_1_F\": 1000, \"MARHH_CHD\": 906, \"MARHH_NO_C\": 1225, \"MHH_CHILD\": 158, \"FHH_CHILD\": 372, \"FAMILIES\": 2983, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 5276, \"VACANT\": 514, \"OWNER_OCC\": 2977, \"RENTER_OCC\": 1785 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.707331023494177, 41.428279853627579 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Penn Hills\", \"CLASS\": \"CDP\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"59040\", \"CAPITAL\": \"N\", \"AREALAND\": 19.027000, \"AREAWATER\": 0.269000, \"POP_CL\": 6, \"POP2000\": 46809, \"WHITE\": 34443, \"BLACK\": 11347, \"AMERI_ES\": 62, \"ASIAN\": 255, \"HAWN_PI\": 5, \"OTHER\": 157, \"MULT_RACE\": 540, \"HISPANIC\": 297, \"MALES\": 21987, \"FEMALES\": 24822, \"AGE_UNDER5\": 2594, \"AGE_5_17\": 7546, \"AGE_18_21\": 1719, \"AGE_22_29\": 3607, \"AGE_30_39\": 6416, \"AGE_40_49\": 7599, \"AGE_50_64\": 8097, \"AGE_65_UP\": 9231, \"MED_AGE\": 41.900000, \"MED_AGE_M\": 40.100000, \"MED_AGE_F\": 43.700000, \"HOUSEHOLDS\": 19490, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 2017, \"HSEHLD_1_F\": 3485, \"MARHH_CHD\": 3586, \"MARHH_NO_C\": 6369, \"MHH_CHILD\": 266, \"FHH_CHILD\": 1280, \"FAMILIES\": 13277, \"AVE_FAM_SZ\": 2.910000, \"HSE_UNITS\": 20355, \"VACANT\": 865, \"OWNER_OCC\": 15540, \"RENTER_OCC\": 3950 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.833305432071043, 40.476217864186694 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Philadelphia\", \"CLASS\": \"city\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"60000\", \"CAPITAL\": \"N\", \"AREALAND\": 135.089000, \"AREAWATER\": 7.546000, \"POP_CL\": 10, \"POP2000\": 1517550, \"WHITE\": 683267, \"BLACK\": 655824, \"AMERI_ES\": 4073, \"ASIAN\": 67654, \"HAWN_PI\": 729, \"OTHER\": 72429, \"MULT_RACE\": 33574, \"HISPANIC\": 128928, \"MALES\": 705107, \"FEMALES\": 812443, \"AGE_UNDER5\": 98161, \"AGE_5_17\": 285308, \"AGE_18_21\": 99908, \"AGE_22_29\": 182284, \"AGE_30_39\": 221352, \"AGE_40_49\": 206084, \"AGE_50_64\": 210731, \"AGE_65_UP\": 213722, \"MED_AGE\": 34.200000, \"MED_AGE_M\": 32.100000, \"MED_AGE_F\": 36.000000, \"HOUSEHOLDS\": 590071, \"AVE_HH_SZ\": 2.480000, \"HSEHLD_1_M\": 83769, \"HSEHLD_1_F\": 115746, \"MARHH_CHD\": 79879, \"MARHH_NO_C\": 109412, \"MHH_CHILD\": 13295, \"FHH_CHILD\": 69731, \"FAMILIES\": 352331, \"AVE_FAM_SZ\": 3.220000, \"HSE_UNITS\": 661958, \"VACANT\": 71887, \"OWNER_OCC\": 349633, \"RENTER_OCC\": 240438 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.144854539552995, 39.998014977081034 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Phoenixville\", \"CLASS\": \"borough\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"60120\", \"CAPITAL\": \"N\", \"AREALAND\": 3.589000, \"AREAWATER\": 0.163000, \"POP_CL\": 6, \"POP2000\": 14788, \"WHITE\": 12857, \"BLACK\": 1133, \"AMERI_ES\": 22, \"ASIAN\": 358, \"HAWN_PI\": 3, \"OTHER\": 173, \"MULT_RACE\": 242, \"HISPANIC\": 432, \"MALES\": 7139, \"FEMALES\": 7649, \"AGE_UNDER5\": 989, \"AGE_5_17\": 2332, \"AGE_18_21\": 498, \"AGE_22_29\": 2027, \"AGE_30_39\": 2734, \"AGE_40_49\": 2260, \"AGE_50_64\": 1900, \"AGE_65_UP\": 2048, \"MED_AGE\": 35.800000, \"MED_AGE_M\": 34.800000, \"MED_AGE_F\": 36.900000, \"HOUSEHOLDS\": 6460, \"AVE_HH_SZ\": 2.250000, \"HSEHLD_1_M\": 998, \"HSEHLD_1_F\": 1306, \"MARHH_CHD\": 1172, \"MARHH_NO_C\": 1502, \"MHH_CHILD\": 145, \"FHH_CHILD\": 391, \"FAMILIES\": 3673, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 6793, \"VACANT\": 333, \"OWNER_OCC\": 3619, \"RENTER_OCC\": 2841 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.519111617471452, 40.130821216945122 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pittsburgh\", \"CLASS\": \"city\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"61000\", \"CAPITAL\": \"N\", \"AREALAND\": 55.584000, \"AREAWATER\": 2.767000, \"POP_CL\": 8, \"POP2000\": 334563, \"WHITE\": 226258, \"BLACK\": 90750, \"AMERI_ES\": 628, \"ASIAN\": 9195, \"HAWN_PI\": 111, \"OTHER\": 2218, \"MULT_RACE\": 5403, \"HISPANIC\": 4425, \"MALES\": 159119, \"FEMALES\": 175444, \"AGE_UNDER5\": 17607, \"AGE_5_17\": 48901, \"AGE_18_21\": 31195, \"AGE_22_29\": 44045, \"AGE_30_39\": 46222, \"AGE_40_49\": 46094, \"AGE_50_64\": 45465, \"AGE_65_UP\": 55034, \"MED_AGE\": 35.500000, \"MED_AGE_M\": 33.100000, \"MED_AGE_F\": 37.900000, \"HOUSEHOLDS\": 143739, \"AVE_HH_SZ\": 2.170000, \"HSEHLD_1_M\": 24150, \"HSEHLD_1_F\": 32412, \"MARHH_CHD\": 16396, \"MARHH_NO_C\": 28380, \"MHH_CHILD\": 2135, \"FHH_CHILD\": 12927, \"FAMILIES\": 74104, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 163366, \"VACANT\": 19627, \"OWNER_OCC\": 74927, \"RENTER_OCC\": 68812 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.977295081115628, 40.441418863660957 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Plum\", \"CLASS\": \"borough\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"61536\", \"CAPITAL\": \"N\", \"AREALAND\": 28.628000, \"AREAWATER\": 0.385000, \"POP_CL\": 6, \"POP2000\": 26940, \"WHITE\": 25754, \"BLACK\": 743, \"AMERI_ES\": 23, \"ASIAN\": 231, \"HAWN_PI\": 7, \"OTHER\": 45, \"MULT_RACE\": 137, \"HISPANIC\": 167, \"MALES\": 13151, \"FEMALES\": 13789, \"AGE_UNDER5\": 1696, \"AGE_5_17\": 4997, \"AGE_18_21\": 968, \"AGE_22_29\": 2229, \"AGE_30_39\": 4363, \"AGE_40_49\": 4522, \"AGE_50_64\": 4614, \"AGE_65_UP\": 3551, \"MED_AGE\": 38.400000, \"MED_AGE_M\": 37.400000, \"MED_AGE_F\": 39.300000, \"HOUSEHOLDS\": 10270, \"AVE_HH_SZ\": 2.600000, \"HSEHLD_1_M\": 912, \"HSEHLD_1_F\": 1296, \"MARHH_CHD\": 2936, \"MARHH_NO_C\": 3594, \"MHH_CHILD\": 128, \"FHH_CHILD\": 441, \"FAMILIES\": 7691, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 10624, \"VACANT\": 354, \"OWNER_OCC\": 8198, \"RENTER_OCC\": 2072 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.754480638650989, 40.494109865000823 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pottstown\", \"CLASS\": \"borough\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"62416\", \"CAPITAL\": \"N\", \"AREALAND\": 4.829000, \"AREAWATER\": 0.090000, \"POP_CL\": 6, \"POP2000\": 21859, \"WHITE\": 17343, \"BLACK\": 3291, \"AMERI_ES\": 50, \"ASIAN\": 142, \"HAWN_PI\": 19, \"OTHER\": 413, \"MULT_RACE\": 601, \"HISPANIC\": 990, \"MALES\": 10386, \"FEMALES\": 11473, \"AGE_UNDER5\": 1644, \"AGE_5_17\": 3955, \"AGE_18_21\": 927, \"AGE_22_29\": 2251, \"AGE_30_39\": 3551, \"AGE_40_49\": 2986, \"AGE_50_64\": 2997, \"AGE_65_UP\": 3548, \"MED_AGE\": 36.100000, \"MED_AGE_M\": 34.300000, \"MED_AGE_F\": 38.000000, \"HOUSEHOLDS\": 9146, \"AVE_HH_SZ\": 2.360000, \"HSEHLD_1_M\": 1264, \"HSEHLD_1_F\": 1800, \"MARHH_CHD\": 1643, \"MARHH_NO_C\": 2133, \"MHH_CHILD\": 237, \"FHH_CHILD\": 786, \"FAMILIES\": 5534, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 9973, \"VACANT\": 827, \"OWNER_OCC\": 5142, \"RENTER_OCC\": 4004 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.640309704646086, 40.249692007223871 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pottsville\", \"CLASS\": \"city\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"62432\", \"CAPITAL\": \"N\", \"AREALAND\": 4.205000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 15549, \"WHITE\": 14885, \"BLACK\": 352, \"AMERI_ES\": 19, \"ASIAN\": 79, \"HAWN_PI\": 1, \"OTHER\": 82, \"MULT_RACE\": 131, \"HISPANIC\": 190, \"MALES\": 7247, \"FEMALES\": 8302, \"AGE_UNDER5\": 896, \"AGE_5_17\": 2611, \"AGE_18_21\": 662, \"AGE_22_29\": 1406, \"AGE_30_39\": 2083, \"AGE_40_49\": 2289, \"AGE_50_64\": 2351, \"AGE_65_UP\": 3251, \"MED_AGE\": 40.500000, \"MED_AGE_M\": 37.600000, \"MED_AGE_F\": 42.800000, \"HOUSEHOLDS\": 6399, \"AVE_HH_SZ\": 2.290000, \"HSEHLD_1_M\": 835, \"HSEHLD_1_F\": 1400, \"MARHH_CHD\": 1095, \"MARHH_NO_C\": 1574, \"MHH_CHILD\": 146, \"FHH_CHILD\": 503, \"FAMILIES\": 3875, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 7343, \"VACANT\": 944, \"OWNER_OCC\": 3993, \"RENTER_OCC\": 2406 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.202782756590906, 40.685059216548382 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Radnor Township\", \"CLASS\": \"CDP\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"63268\", \"CAPITAL\": \"N\", \"AREALAND\": 13.759000, \"AREAWATER\": 0.009000, \"POP_CL\": 6, \"POP2000\": 30878, \"WHITE\": 27652, \"BLACK\": 953, \"AMERI_ES\": 24, \"ASIAN\": 1750, \"HAWN_PI\": 5, \"OTHER\": 190, \"MULT_RACE\": 304, \"HISPANIC\": 628, \"MALES\": 14384, \"FEMALES\": 16494, \"AGE_UNDER5\": 1528, \"AGE_5_17\": 4484, \"AGE_18_21\": 6274, \"AGE_22_29\": 2601, \"AGE_30_39\": 3486, \"AGE_40_49\": 3938, \"AGE_50_64\": 4424, \"AGE_65_UP\": 4143, \"MED_AGE\": 31.700000, \"MED_AGE_M\": 30.000000, \"MED_AGE_F\": 33.500000, \"HOUSEHOLDS\": 10347, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 1102, \"HSEHLD_1_F\": 2112, \"MARHH_CHD\": 2643, \"MARHH_NO_C\": 2834, \"MHH_CHILD\": 68, \"FHH_CHILD\": 328, \"FAMILIES\": 6375, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 10731, \"VACANT\": 384, \"OWNER_OCC\": 6545, \"RENTER_OCC\": 3802 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.371897528829365, 40.033435494218324 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Reading\", \"CLASS\": \"city\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"63624\", \"CAPITAL\": \"N\", \"AREALAND\": 9.819000, \"AREAWATER\": 0.244000, \"POP_CL\": 7, \"POP2000\": 81207, \"WHITE\": 48059, \"BLACK\": 9947, \"AMERI_ES\": 356, \"ASIAN\": 1296, \"HAWN_PI\": 32, \"OTHER\": 18125, \"MULT_RACE\": 3392, \"HISPANIC\": 30302, \"MALES\": 39205, \"FEMALES\": 42002, \"AGE_UNDER5\": 7037, \"AGE_5_17\": 17257, \"AGE_18_21\": 5770, \"AGE_22_29\": 9814, \"AGE_30_39\": 12185, \"AGE_40_49\": 9619, \"AGE_50_64\": 9457, \"AGE_65_UP\": 10068, \"MED_AGE\": 30.600000, \"MED_AGE_M\": 29.300000, \"MED_AGE_F\": 31.900000, \"HOUSEHOLDS\": 30113, \"AVE_HH_SZ\": 2.630000, \"HSEHLD_1_M\": 4303, \"HSEHLD_1_F\": 5235, \"MARHH_CHD\": 4919, \"MARHH_NO_C\": 5430, \"MHH_CHILD\": 1162, \"FHH_CHILD\": 4057, \"FAMILIES\": 18423, \"AVE_FAM_SZ\": 3.330000, \"HSE_UNITS\": 34314, \"VACANT\": 4201, \"OWNER_OCC\": 15355, \"RENTER_OCC\": 14758 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.92634190829105, 40.341693569286221 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Robinson Township\", \"CLASS\": \"CDP\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"65378\", \"CAPITAL\": \"N\", \"AREALAND\": 14.749000, \"AREAWATER\": 0.183000, \"POP_CL\": 6, \"POP2000\": 12289, \"WHITE\": 11705, \"BLACK\": 234, \"AMERI_ES\": 7, \"ASIAN\": 251, \"HAWN_PI\": 3, \"OTHER\": 17, \"MULT_RACE\": 72, \"HISPANIC\": 90, \"MALES\": 6044, \"FEMALES\": 6245, \"AGE_UNDER5\": 678, \"AGE_5_17\": 2123, \"AGE_18_21\": 380, \"AGE_22_29\": 1071, \"AGE_30_39\": 1921, \"AGE_40_49\": 2305, \"AGE_50_64\": 2111, \"AGE_65_UP\": 1700, \"MED_AGE\": 39.900000, \"MED_AGE_M\": 39.400000, \"MED_AGE_F\": 40.300000, \"HOUSEHOLDS\": 4828, \"AVE_HH_SZ\": 2.450000, \"HSEHLD_1_M\": 596, \"HSEHLD_1_F\": 707, \"MARHH_CHD\": 1221, \"MARHH_NO_C\": 1588, \"MHH_CHILD\": 42, \"FHH_CHILD\": 189, \"FAMILIES\": 3314, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 5158, \"VACANT\": 330, \"OWNER_OCC\": 3801, \"RENTER_OCC\": 1027 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.128261758835947, 40.458007863640077 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ross Township\", \"CLASS\": \"CDP\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"66356\", \"CAPITAL\": \"N\", \"AREALAND\": 14.433000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 32551, \"WHITE\": 31225, \"BLACK\": 463, \"AMERI_ES\": 27, \"ASIAN\": 586, \"HAWN_PI\": 21, \"OTHER\": 65, \"MULT_RACE\": 164, \"HISPANIC\": 237, \"MALES\": 15169, \"FEMALES\": 17382, \"AGE_UNDER5\": 1601, \"AGE_5_17\": 4704, \"AGE_18_21\": 1016, \"AGE_22_29\": 2842, \"AGE_30_39\": 4614, \"AGE_40_49\": 5299, \"AGE_50_64\": 5600, \"AGE_65_UP\": 6875, \"MED_AGE\": 42.700000, \"MED_AGE_M\": 40.400000, \"MED_AGE_F\": 44.800000, \"HOUSEHOLDS\": 13892, \"AVE_HH_SZ\": 2.260000, \"HSEHLD_1_M\": 1565, \"HSEHLD_1_F\": 2853, \"MARHH_CHD\": 2833, \"MARHH_NO_C\": 4584, \"MHH_CHILD\": 116, \"FHH_CHILD\": 426, \"FAMILIES\": 8811, \"AVE_FAM_SZ\": 2.890000, \"HSE_UNITS\": 14422, \"VACANT\": 530, \"OWNER_OCC\": 10410, \"RENTER_OCC\": 3482 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.021826000480402, 40.526417862582434 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"St. Marys\", \"CLASS\": \"city\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"67344\", \"CAPITAL\": \"N\", \"AREALAND\": 99.322000, \"AREAWATER\": 0.158000, \"POP_CL\": 6, \"POP2000\": 14502, \"WHITE\": 14321, \"BLACK\": 33, \"AMERI_ES\": 11, \"ASIAN\": 61, \"HAWN_PI\": 13, \"OTHER\": 18, \"MULT_RACE\": 45, \"HISPANIC\": 44, \"MALES\": 7089, \"FEMALES\": 7413, \"AGE_UNDER5\": 803, \"AGE_5_17\": 2691, \"AGE_18_21\": 539, \"AGE_22_29\": 1158, \"AGE_30_39\": 2195, \"AGE_40_49\": 2203, \"AGE_50_64\": 2266, \"AGE_65_UP\": 2647, \"MED_AGE\": 39.400000, \"MED_AGE_M\": 37.900000, \"MED_AGE_F\": 40.900000, \"HOUSEHOLDS\": 5723, \"AVE_HH_SZ\": 2.480000, \"HSEHLD_1_M\": 605, \"HSEHLD_1_F\": 937, \"MARHH_CHD\": 1468, \"MARHH_NO_C\": 1807, \"MHH_CHILD\": 90, \"FHH_CHILD\": 281, \"FAMILIES\": 4001, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 6092, \"VACANT\": 369, \"OWNER_OCC\": 4431, \"RENTER_OCC\": 1292 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -78.542732959980356, 41.437599939707972 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Scott Township\", \"CLASS\": \"CDP\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"68464\", \"CAPITAL\": \"N\", \"AREALAND\": 3.974000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 17288, \"WHITE\": 15792, \"BLACK\": 198, \"AMERI_ES\": 14, \"ASIAN\": 1067, \"HAWN_PI\": 2, \"OTHER\": 40, \"MULT_RACE\": 175, \"HISPANIC\": 117, \"MALES\": 8136, \"FEMALES\": 9152, \"AGE_UNDER5\": 929, \"AGE_5_17\": 2287, \"AGE_18_21\": 434, \"AGE_22_29\": 1764, \"AGE_30_39\": 2830, \"AGE_40_49\": 2453, \"AGE_50_64\": 2771, \"AGE_65_UP\": 3820, \"MED_AGE\": 41.500000, \"MED_AGE_M\": 38.800000, \"MED_AGE_F\": 44.100000, \"HOUSEHOLDS\": 7835, \"AVE_HH_SZ\": 2.140000, \"HSEHLD_1_M\": 1109, \"HSEHLD_1_F\": 1778, \"MARHH_CHD\": 1405, \"MARHH_NO_C\": 2377, \"MHH_CHILD\": 70, \"FHH_CHILD\": 285, \"FAMILIES\": 4582, \"AVE_FAM_SZ\": 2.830000, \"HSE_UNITS\": 8163, \"VACANT\": 328, \"OWNER_OCC\": 5257, \"RENTER_OCC\": 2578 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.079659846136551, 40.391468864238824 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Scranton\", \"CLASS\": \"city\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"69000\", \"CAPITAL\": \"N\", \"AREALAND\": 25.226000, \"AREAWATER\": 0.214000, \"POP_CL\": 7, \"POP2000\": 76415, \"WHITE\": 71480, \"BLACK\": 2304, \"AMERI_ES\": 85, \"ASIAN\": 823, \"HAWN_PI\": 15, \"OTHER\": 890, \"MULT_RACE\": 818, \"HISPANIC\": 1999, \"MALES\": 35543, \"FEMALES\": 40872, \"AGE_UNDER5\": 4035, \"AGE_5_17\": 11842, \"AGE_18_21\": 6451, \"AGE_22_29\": 7371, \"AGE_30_39\": 9876, \"AGE_40_49\": 10328, \"AGE_50_64\": 11149, \"AGE_65_UP\": 15363, \"MED_AGE\": 38.800000, \"MED_AGE_M\": 36.500000, \"MED_AGE_F\": 41.000000, \"HOUSEHOLDS\": 31303, \"AVE_HH_SZ\": 2.290000, \"HSEHLD_1_M\": 4406, \"HSEHLD_1_F\": 7097, \"MARHH_CHD\": 4952, \"MARHH_NO_C\": 7508, \"MHH_CHILD\": 530, \"FHH_CHILD\": 2165, \"FAMILIES\": 18112, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 35336, \"VACANT\": 4033, \"OWNER_OCC\": 17072, \"RENTER_OCC\": 14231 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.667461538871194, 41.410630971623789 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Shaler Township\", \"CLASS\": \"CDP\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"69596\", \"CAPITAL\": \"N\", \"AREALAND\": 11.006000, \"AREAWATER\": 0.187000, \"POP_CL\": 6, \"POP2000\": 29757, \"WHITE\": 29139, \"BLACK\": 122, \"AMERI_ES\": 18, \"ASIAN\": 268, \"HAWN_PI\": 7, \"OTHER\": 35, \"MULT_RACE\": 168, \"HISPANIC\": 155, \"MALES\": 14193, \"FEMALES\": 15564, \"AGE_UNDER5\": 1577, \"AGE_5_17\": 4974, \"AGE_18_21\": 962, \"AGE_22_29\": 2091, \"AGE_30_39\": 4387, \"AGE_40_49\": 4888, \"AGE_50_64\": 5363, \"AGE_65_UP\": 5515, \"MED_AGE\": 41.700000, \"MED_AGE_M\": 40.300000, \"MED_AGE_F\": 43.100000, \"HOUSEHOLDS\": 11932, \"AVE_HH_SZ\": 2.480000, \"HSEHLD_1_M\": 1026, \"HSEHLD_1_F\": 1884, \"MARHH_CHD\": 2934, \"MARHH_NO_C\": 4470, \"MHH_CHILD\": 115, \"FHH_CHILD\": 359, \"FAMILIES\": 8687, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 12334, \"VACANT\": 402, \"OWNER_OCC\": 10247, \"RENTER_OCC\": 1685 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.963787130190411, 40.520925862739759 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sharon\", \"CLASS\": \"city\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"69720\", \"CAPITAL\": \"N\", \"AREALAND\": 3.760000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 16328, \"WHITE\": 14114, \"BLACK\": 1771, \"AMERI_ES\": 29, \"ASIAN\": 34, \"HAWN_PI\": 4, \"OTHER\": 37, \"MULT_RACE\": 339, \"HISPANIC\": 144, \"MALES\": 7656, \"FEMALES\": 8672, \"AGE_UNDER5\": 1101, \"AGE_5_17\": 2878, \"AGE_18_21\": 742, \"AGE_22_29\": 1640, \"AGE_30_39\": 2145, \"AGE_40_49\": 2422, \"AGE_50_64\": 2380, \"AGE_65_UP\": 3020, \"MED_AGE\": 38.400000, \"MED_AGE_M\": 36.400000, \"MED_AGE_F\": 40.300000, \"HOUSEHOLDS\": 6791, \"AVE_HH_SZ\": 2.330000, \"HSEHLD_1_M\": 929, \"HSEHLD_1_F\": 1361, \"MARHH_CHD\": 1087, \"MARHH_NO_C\": 1676, \"MHH_CHILD\": 152, \"FHH_CHILD\": 672, \"FAMILIES\": 4189, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 7388, \"VACANT\": 597, \"OWNER_OCC\": 4269, \"RENTER_OCC\": 2522 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.49896220843722, 41.230105860283984 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Shiloh\", \"CLASS\": \"CDP\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"70256\", \"CAPITAL\": \"N\", \"AREALAND\": 4.207000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10192, \"WHITE\": 9722, \"BLACK\": 174, \"AMERI_ES\": 8, \"ASIAN\": 151, \"HAWN_PI\": 0, \"OTHER\": 31, \"MULT_RACE\": 106, \"HISPANIC\": 108, \"MALES\": 4755, \"FEMALES\": 5437, \"AGE_UNDER5\": 478, \"AGE_5_17\": 1633, \"AGE_18_21\": 303, \"AGE_22_29\": 744, \"AGE_30_39\": 1423, \"AGE_40_49\": 1641, \"AGE_50_64\": 1751, \"AGE_65_UP\": 2219, \"MED_AGE\": 43.100000, \"MED_AGE_M\": 40.800000, \"MED_AGE_F\": 45.300000, \"HOUSEHOLDS\": 4143, \"AVE_HH_SZ\": 2.340000, \"HSEHLD_1_M\": 380, \"HSEHLD_1_F\": 751, \"MARHH_CHD\": 922, \"MARHH_NO_C\": 1482, \"MHH_CHILD\": 57, \"FHH_CHILD\": 169, \"FAMILIES\": 2795, \"AVE_FAM_SZ\": 2.860000, \"HSE_UNITS\": 4262, \"VACANT\": 119, \"OWNER_OCC\": 3098, \"RENTER_OCC\": 1045 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.795618184230264, 39.972697661381474 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"South Park Township\", \"CLASS\": \"CDP\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"72403\", \"CAPITAL\": \"N\", \"AREALAND\": 9.171000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14340, \"WHITE\": 13645, \"BLACK\": 460, \"AMERI_ES\": 9, \"ASIAN\": 109, \"HAWN_PI\": 6, \"OTHER\": 17, \"MULT_RACE\": 94, \"HISPANIC\": 79, \"MALES\": 7032, \"FEMALES\": 7308, \"AGE_UNDER5\": 945, \"AGE_5_17\": 2722, \"AGE_18_21\": 591, \"AGE_22_29\": 1238, \"AGE_30_39\": 2304, \"AGE_40_49\": 2555, \"AGE_50_64\": 2505, \"AGE_65_UP\": 1480, \"MED_AGE\": 37.600000, \"MED_AGE_M\": 36.600000, \"MED_AGE_F\": 38.400000, \"HOUSEHOLDS\": 5422, \"AVE_HH_SZ\": 2.630000, \"HSEHLD_1_M\": 558, \"HSEHLD_1_F\": 628, \"MARHH_CHD\": 1565, \"MARHH_NO_C\": 1795, \"MHH_CHILD\": 64, \"FHH_CHILD\": 283, \"FAMILIES\": 4028, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 5616, \"VACANT\": 194, \"OWNER_OCC\": 4188, \"RENTER_OCC\": 1234 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.002099993327747, 40.298381865320621 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Springfield\", \"CLASS\": \"CDP\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"73040\", \"CAPITAL\": \"N\", \"AREALAND\": 6.360000, \"AREAWATER\": 0.011000, \"POP_CL\": 6, \"POP2000\": 23677, \"WHITE\": 22868, \"BLACK\": 170, \"AMERI_ES\": 13, \"ASIAN\": 466, \"HAWN_PI\": 3, \"OTHER\": 29, \"MULT_RACE\": 128, \"HISPANIC\": 146, \"MALES\": 11332, \"FEMALES\": 12345, \"AGE_UNDER5\": 1279, \"AGE_5_17\": 4401, \"AGE_18_21\": 871, \"AGE_22_29\": 1608, \"AGE_30_39\": 2954, \"AGE_40_49\": 3811, \"AGE_50_64\": 3938, \"AGE_65_UP\": 4815, \"MED_AGE\": 41.900000, \"MED_AGE_M\": 40.400000, \"MED_AGE_F\": 43.100000, \"HOUSEHOLDS\": 8618, \"AVE_HH_SZ\": 2.730000, \"HSEHLD_1_M\": 530, \"HSEHLD_1_F\": 1129, \"MARHH_CHD\": 2490, \"MARHH_NO_C\": 3310, \"MHH_CHILD\": 82, \"FHH_CHILD\": 242, \"FAMILIES\": 6792, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 8800, \"VACANT\": 182, \"OWNER_OCC\": 7956, \"RENTER_OCC\": 662 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.335286249093258, 39.926963564974677 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"State College\", \"CLASS\": \"borough\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"73808\", \"CAPITAL\": \"N\", \"AREALAND\": 4.542000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 38420, \"WHITE\": 32392, \"BLACK\": 1417, \"AMERI_ES\": 58, \"ASIAN\": 3368, \"HAWN_PI\": 50, \"OTHER\": 529, \"MULT_RACE\": 606, \"HISPANIC\": 1159, \"MALES\": 20011, \"FEMALES\": 18409, \"AGE_UNDER5\": 697, \"AGE_5_17\": 1515, \"AGE_18_21\": 18240, \"AGE_22_29\": 9757, \"AGE_30_39\": 2576, \"AGE_40_49\": 1608, \"AGE_50_64\": 1780, \"AGE_65_UP\": 2247, \"MED_AGE\": 21.800000, \"MED_AGE_M\": 22.000000, \"MED_AGE_F\": 21.600000, \"HOUSEHOLDS\": 12024, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 2084, \"HSEHLD_1_F\": 1950, \"MARHH_CHD\": 994, \"MARHH_NO_C\": 1700, \"MHH_CHILD\": 59, \"FHH_CHILD\": 212, \"FAMILIES\": 3303, \"AVE_FAM_SZ\": 2.690000, \"HSE_UNITS\": 12488, \"VACANT\": 464, \"OWNER_OCC\": 2743, \"RENTER_OCC\": 9281 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.858753339509448, 40.791261107102109 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sunbury\", \"CLASS\": \"city\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"75304\", \"CAPITAL\": \"N\", \"AREALAND\": 2.123000, \"AREAWATER\": 0.030000, \"POP_CL\": 6, \"POP2000\": 10610, \"WHITE\": 10107, \"BLACK\": 137, \"AMERI_ES\": 15, \"ASIAN\": 28, \"HAWN_PI\": 2, \"OTHER\": 203, \"MULT_RACE\": 118, \"HISPANIC\": 328, \"MALES\": 4953, \"FEMALES\": 5657, \"AGE_UNDER5\": 651, \"AGE_5_17\": 1883, \"AGE_18_21\": 468, \"AGE_22_29\": 1219, \"AGE_30_39\": 1608, \"AGE_40_49\": 1402, \"AGE_50_64\": 1534, \"AGE_65_UP\": 1845, \"MED_AGE\": 36.700000, \"MED_AGE_M\": 34.500000, \"MED_AGE_F\": 39.100000, \"HOUSEHOLDS\": 4540, \"AVE_HH_SZ\": 2.240000, \"HSEHLD_1_M\": 610, \"HSEHLD_1_F\": 1037, \"MARHH_CHD\": 751, \"MARHH_NO_C\": 1027, \"MHH_CHILD\": 125, \"FHH_CHILD\": 426, \"FAMILIES\": 2637, \"AVE_FAM_SZ\": 2.910000, \"HSE_UNITS\": 5072, \"VACANT\": 532, \"OWNER_OCC\": 2050, \"RENTER_OCC\": 2490 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.7891997366292, 40.863894656451386 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Uniontown\", \"CLASS\": \"city\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"78528\", \"CAPITAL\": \"N\", \"AREALAND\": 2.037000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12422, \"WHITE\": 10455, \"BLACK\": 1686, \"AMERI_ES\": 12, \"ASIAN\": 50, \"HAWN_PI\": 4, \"OTHER\": 35, \"MULT_RACE\": 180, \"HISPANIC\": 68, \"MALES\": 5752, \"FEMALES\": 6670, \"AGE_UNDER5\": 719, \"AGE_5_17\": 1883, \"AGE_18_21\": 616, \"AGE_22_29\": 1179, \"AGE_30_39\": 1574, \"AGE_40_49\": 1832, \"AGE_50_64\": 1880, \"AGE_65_UP\": 2739, \"MED_AGE\": 41.300000, \"MED_AGE_M\": 38.000000, \"MED_AGE_F\": 44.300000, \"HOUSEHOLDS\": 5423, \"AVE_HH_SZ\": 2.170000, \"HSEHLD_1_M\": 769, \"HSEHLD_1_F\": 1384, \"MARHH_CHD\": 696, \"MARHH_NO_C\": 1243, \"MHH_CHILD\": 111, \"FHH_CHILD\": 477, \"FAMILIES\": 3033, \"AVE_FAM_SZ\": 2.910000, \"HSE_UNITS\": 6320, \"VACANT\": 897, \"OWNER_OCC\": 2675, \"RENTER_OCC\": 2748 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.724481558481884, 39.900039873162996 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Upper Providence Township\", \"CLASS\": \"CDP\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"79260\", \"CAPITAL\": \"N\", \"AREALAND\": 5.591000, \"AREAWATER\": 0.250000, \"POP_CL\": 6, \"POP2000\": 10509, \"WHITE\": 9650, \"BLACK\": 410, \"AMERI_ES\": 8, \"ASIAN\": 321, \"HAWN_PI\": 0, \"OTHER\": 31, \"MULT_RACE\": 89, \"HISPANIC\": 112, \"MALES\": 5160, \"FEMALES\": 5349, \"AGE_UNDER5\": 640, \"AGE_5_17\": 1959, \"AGE_18_21\": 334, \"AGE_22_29\": 842, \"AGE_30_39\": 1463, \"AGE_40_49\": 2020, \"AGE_50_64\": 1932, \"AGE_65_UP\": 1319, \"MED_AGE\": 40.100000, \"MED_AGE_M\": 39.600000, \"MED_AGE_F\": 40.500000, \"HOUSEHOLDS\": 4075, \"AVE_HH_SZ\": 2.560000, \"HSEHLD_1_M\": 486, \"HSEHLD_1_F\": 558, \"MARHH_CHD\": 1146, \"MARHH_NO_C\": 1290, \"MHH_CHILD\": 34, \"FHH_CHILD\": 142, \"FAMILIES\": 2828, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 4299, \"VACANT\": 224, \"OWNER_OCC\": 3081, \"RENTER_OCC\": 994 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.395071494901586, 39.932763446208313 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Upper St. Clair\", \"CLASS\": \"CDP\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"79277\", \"CAPITAL\": \"N\", \"AREALAND\": 9.755000, \"AREAWATER\": 0.008000, \"POP_CL\": 6, \"POP2000\": 20053, \"WHITE\": 18962, \"BLACK\": 136, \"AMERI_ES\": 5, \"ASIAN\": 806, \"HAWN_PI\": 5, \"OTHER\": 15, \"MULT_RACE\": 124, \"HISPANIC\": 157, \"MALES\": 9701, \"FEMALES\": 10352, \"AGE_UNDER5\": 1210, \"AGE_5_17\": 4474, \"AGE_18_21\": 571, \"AGE_22_29\": 758, \"AGE_30_39\": 2341, \"AGE_40_49\": 3604, \"AGE_50_64\": 3804, \"AGE_65_UP\": 3291, \"MED_AGE\": 42.000000, \"MED_AGE_M\": 41.100000, \"MED_AGE_F\": 42.900000, \"HOUSEHOLDS\": 6966, \"AVE_HH_SZ\": 2.810000, \"HSEHLD_1_M\": 317, \"HSEHLD_1_F\": 728, \"MARHH_CHD\": 2577, \"MARHH_NO_C\": 2738, \"MHH_CHILD\": 60, \"FHH_CHILD\": 205, \"FAMILIES\": 5821, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 7091, \"VACANT\": 125, \"OWNER_OCC\": 6448, \"RENTER_OCC\": 518 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.079723834150897, 40.335635864890975 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Warren\", \"CLASS\": \"city\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"81000\", \"CAPITAL\": \"N\", \"AREALAND\": 2.924000, \"AREAWATER\": 0.189000, \"POP_CL\": 6, \"POP2000\": 10259, \"WHITE\": 10108, \"BLACK\": 21, \"AMERI_ES\": 21, \"ASIAN\": 37, \"HAWN_PI\": 2, \"OTHER\": 13, \"MULT_RACE\": 57, \"HISPANIC\": 40, \"MALES\": 4817, \"FEMALES\": 5442, \"AGE_UNDER5\": 627, \"AGE_5_17\": 1747, \"AGE_18_21\": 381, \"AGE_22_29\": 1026, \"AGE_30_39\": 1451, \"AGE_40_49\": 1527, \"AGE_50_64\": 1646, \"AGE_65_UP\": 1854, \"MED_AGE\": 39.200000, \"MED_AGE_M\": 36.700000, \"MED_AGE_F\": 41.600000, \"HOUSEHOLDS\": 4565, \"AVE_HH_SZ\": 2.170000, \"HSEHLD_1_M\": 640, \"HSEHLD_1_F\": 1075, \"MARHH_CHD\": 829, \"MARHH_NO_C\": 1133, \"MHH_CHILD\": 96, \"FHH_CHILD\": 317, \"FAMILIES\": 2606, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 5046, \"VACANT\": 481, \"OWNER_OCC\": 2751, \"RENTER_OCC\": 1814 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.142449150749115, 41.844132869381177 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Washington\", \"CLASS\": \"city\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"81328\", \"CAPITAL\": \"N\", \"AREALAND\": 2.937000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 15268, \"WHITE\": 12501, \"BLACK\": 2229, \"AMERI_ES\": 23, \"ASIAN\": 69, \"HAWN_PI\": 3, \"OTHER\": 93, \"MULT_RACE\": 350, \"HISPANIC\": 144, \"MALES\": 7160, \"FEMALES\": 8108, \"AGE_UNDER5\": 924, \"AGE_5_17\": 2312, \"AGE_18_21\": 1354, \"AGE_22_29\": 1699, \"AGE_30_39\": 2126, \"AGE_40_49\": 2130, \"AGE_50_64\": 2167, \"AGE_65_UP\": 2556, \"MED_AGE\": 36.200000, \"MED_AGE_M\": 33.900000, \"MED_AGE_F\": 38.600000, \"HOUSEHOLDS\": 6259, \"AVE_HH_SZ\": 2.200000, \"HSEHLD_1_M\": 954, \"HSEHLD_1_F\": 1422, \"MARHH_CHD\": 791, \"MARHH_NO_C\": 1380, \"MHH_CHILD\": 111, \"FHH_CHILD\": 617, \"FAMILIES\": 3486, \"AVE_FAM_SZ\": 2.910000, \"HSE_UNITS\": 7111, \"VACANT\": 852, \"OWNER_OCC\": 2901, \"RENTER_OCC\": 3358 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.250636464153672, 40.174958867684076 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Weigelstown\", \"CLASS\": \"CDP\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"82008\", \"CAPITAL\": \"N\", \"AREALAND\": 5.812000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10117, \"WHITE\": 9757, \"BLACK\": 123, \"AMERI_ES\": 22, \"ASIAN\": 57, \"HAWN_PI\": 1, \"OTHER\": 76, \"MULT_RACE\": 81, \"HISPANIC\": 144, \"MALES\": 4917, \"FEMALES\": 5200, \"AGE_UNDER5\": 602, \"AGE_5_17\": 1862, \"AGE_18_21\": 382, \"AGE_22_29\": 1022, \"AGE_30_39\": 1557, \"AGE_40_49\": 1492, \"AGE_50_64\": 1736, \"AGE_65_UP\": 1464, \"MED_AGE\": 37.600000, \"MED_AGE_M\": 36.400000, \"MED_AGE_F\": 38.800000, \"HOUSEHOLDS\": 3933, \"AVE_HH_SZ\": 2.520000, \"HSEHLD_1_M\": 359, \"HSEHLD_1_F\": 490, \"MARHH_CHD\": 979, \"MARHH_NO_C\": 1384, \"MHH_CHILD\": 113, \"FHH_CHILD\": 217, \"FAMILIES\": 2889, \"AVE_FAM_SZ\": 2.920000, \"HSE_UNITS\": 4069, \"VACANT\": 136, \"OWNER_OCC\": 3228, \"RENTER_OCC\": 705 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.829379722836237, 39.983847636211195 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"West Chester\", \"CLASS\": \"borough\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"82704\", \"CAPITAL\": \"N\", \"AREALAND\": 1.841000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 17861, \"WHITE\": 13475, \"BLACK\": 3050, \"AMERI_ES\": 55, \"ASIAN\": 261, \"HAWN_PI\": 13, \"OTHER\": 650, \"MULT_RACE\": 357, \"HISPANIC\": 1596, \"MALES\": 8382, \"FEMALES\": 9479, \"AGE_UNDER5\": 748, \"AGE_5_17\": 1641, \"AGE_18_21\": 4817, \"AGE_22_29\": 3581, \"AGE_30_39\": 2192, \"AGE_40_49\": 1693, \"AGE_50_64\": 1578, \"AGE_65_UP\": 1611, \"MED_AGE\": 24.600000, \"MED_AGE_M\": 25.500000, \"MED_AGE_F\": 23.700000, \"HOUSEHOLDS\": 6265, \"AVE_HH_SZ\": 2.310000, \"HSEHLD_1_M\": 1014, \"HSEHLD_1_F\": 1198, \"MARHH_CHD\": 702, \"MARHH_NO_C\": 974, \"MHH_CHILD\": 89, \"FHH_CHILD\": 404, \"FAMILIES\": 2660, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 6541, \"VACANT\": 276, \"OWNER_OCC\": 2331, \"RENTER_OCC\": 3934 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.605099739707697, 39.958680062757658 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"West Mifflin\", \"CLASS\": \"borough\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"83512\", \"CAPITAL\": \"N\", \"AREALAND\": 14.162000, \"AREAWATER\": 0.262000, \"POP_CL\": 6, \"POP2000\": 22464, \"WHITE\": 20137, \"BLACK\": 1987, \"AMERI_ES\": 26, \"ASIAN\": 56, \"HAWN_PI\": 13, \"OTHER\": 57, \"MULT_RACE\": 188, \"HISPANIC\": 127, \"MALES\": 10601, \"FEMALES\": 11863, \"AGE_UNDER5\": 1187, \"AGE_5_17\": 3646, \"AGE_18_21\": 867, \"AGE_22_29\": 1826, \"AGE_30_39\": 2876, \"AGE_40_49\": 3543, \"AGE_50_64\": 3668, \"AGE_65_UP\": 4851, \"MED_AGE\": 42.200000, \"MED_AGE_M\": 40.400000, \"MED_AGE_F\": 43.800000, \"HOUSEHOLDS\": 9509, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 1033, \"HSEHLD_1_F\": 1729, \"MARHH_CHD\": 1735, \"MARHH_NO_C\": 3075, \"MHH_CHILD\": 134, \"FHH_CHILD\": 675, \"FAMILIES\": 6475, \"AVE_FAM_SZ\": 2.890000, \"HSE_UNITS\": 9966, \"VACANT\": 457, \"OWNER_OCC\": 7477, \"RENTER_OCC\": 2032 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.897636248803963, 40.368088864951289 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"West Norriton\", \"CLASS\": \"CDP\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"83704\", \"CAPITAL\": \"N\", \"AREALAND\": 5.857000, \"AREAWATER\": 0.305000, \"POP_CL\": 6, \"POP2000\": 14901, \"WHITE\": 13335, \"BLACK\": 909, \"AMERI_ES\": 11, \"ASIAN\": 407, \"HAWN_PI\": 8, \"OTHER\": 72, \"MULT_RACE\": 159, \"HISPANIC\": 236, \"MALES\": 7138, \"FEMALES\": 7763, \"AGE_UNDER5\": 850, \"AGE_5_17\": 1980, \"AGE_18_21\": 511, \"AGE_22_29\": 1728, \"AGE_30_39\": 2714, \"AGE_40_49\": 2371, \"AGE_50_64\": 2432, \"AGE_65_UP\": 2315, \"MED_AGE\": 38.700000, \"MED_AGE_M\": 36.700000, \"MED_AGE_F\": 40.400000, \"HOUSEHOLDS\": 6614, \"AVE_HH_SZ\": 2.230000, \"HSEHLD_1_M\": 807, \"HSEHLD_1_F\": 1394, \"MARHH_CHD\": 1188, \"MARHH_NO_C\": 1967, \"MHH_CHILD\": 75, \"FHH_CHILD\": 206, \"FAMILIES\": 3842, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 6890, \"VACANT\": 276, \"OWNER_OCC\": 4759, \"RENTER_OCC\": 1855 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.377166711649224, 40.130509486037461 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Whitehall\", \"CLASS\": \"borough\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"84512\", \"CAPITAL\": \"N\", \"AREALAND\": 3.284000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14444, \"WHITE\": 13953, \"BLACK\": 205, \"AMERI_ES\": 3, \"ASIAN\": 134, \"HAWN_PI\": 2, \"OTHER\": 40, \"MULT_RACE\": 107, \"HISPANIC\": 96, \"MALES\": 6708, \"FEMALES\": 7736, \"AGE_UNDER5\": 681, \"AGE_5_17\": 2118, \"AGE_18_21\": 550, \"AGE_22_29\": 1085, \"AGE_30_39\": 1904, \"AGE_40_49\": 2241, \"AGE_50_64\": 2364, \"AGE_65_UP\": 3501, \"MED_AGE\": 43.800000, \"MED_AGE_M\": 41.100000, \"MED_AGE_F\": 46.400000, \"HOUSEHOLDS\": 6294, \"AVE_HH_SZ\": 2.230000, \"HSEHLD_1_M\": 768, \"HSEHLD_1_F\": 1335, \"MARHH_CHD\": 1248, \"MARHH_NO_C\": 2093, \"MHH_CHILD\": 48, \"FHH_CHILD\": 215, \"FAMILIES\": 3961, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 6519, \"VACANT\": 225, \"OWNER_OCC\": 4553, \"RENTER_OCC\": 1741 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.98627404244975, 40.360291864613707 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wilkes-Barre\", \"CLASS\": \"city\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"85152\", \"CAPITAL\": \"N\", \"AREALAND\": 6.849000, \"AREAWATER\": 0.332000, \"POP_CL\": 6, \"POP2000\": 43123, \"WHITE\": 39801, \"BLACK\": 2193, \"AMERI_ES\": 48, \"ASIAN\": 342, \"HAWN_PI\": 14, \"OTHER\": 228, \"MULT_RACE\": 497, \"HISPANIC\": 683, \"MALES\": 20799, \"FEMALES\": 22324, \"AGE_UNDER5\": 2113, \"AGE_5_17\": 6461, \"AGE_18_21\": 3594, \"AGE_22_29\": 4419, \"AGE_30_39\": 5699, \"AGE_40_49\": 5724, \"AGE_50_64\": 6229, \"AGE_65_UP\": 8884, \"MED_AGE\": 38.800000, \"MED_AGE_M\": 35.900000, \"MED_AGE_F\": 41.800000, \"HOUSEHOLDS\": 17961, \"AVE_HH_SZ\": 2.200000, \"HSEHLD_1_M\": 2894, \"HSEHLD_1_F\": 4112, \"MARHH_CHD\": 2527, \"MARHH_NO_C\": 4036, \"MHH_CHILD\": 321, \"FHH_CHILD\": 1286, \"FAMILIES\": 9877, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 20294, \"VACANT\": 2333, \"OWNER_OCC\": 9617, \"RENTER_OCC\": 8344 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.877962498079697, 41.244582640437088 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wilkinsburg\", \"CLASS\": \"borough\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"85188\", \"CAPITAL\": \"N\", \"AREALAND\": 2.303000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 19196, \"WHITE\": 5615, \"BLACK\": 12768, \"AMERI_ES\": 72, \"ASIAN\": 156, \"HAWN_PI\": 12, \"OTHER\": 105, \"MULT_RACE\": 468, \"HISPANIC\": 216, \"MALES\": 8439, \"FEMALES\": 10757, \"AGE_UNDER5\": 1266, \"AGE_5_17\": 3219, \"AGE_18_21\": 782, \"AGE_22_29\": 2113, \"AGE_30_39\": 2841, \"AGE_40_49\": 2968, \"AGE_50_64\": 2968, \"AGE_65_UP\": 3039, \"MED_AGE\": 37.800000, \"MED_AGE_M\": 35.200000, \"MED_AGE_F\": 40.000000, \"HOUSEHOLDS\": 9138, \"AVE_HH_SZ\": 2.060000, \"HSEHLD_1_M\": 1592, \"HSEHLD_1_F\": 2478, \"MARHH_CHD\": 769, \"MARHH_NO_C\": 1453, \"MHH_CHILD\": 178, \"FHH_CHILD\": 1120, \"FAMILIES\": 4481, \"AVE_FAM_SZ\": 2.910000, \"HSE_UNITS\": 10696, \"VACANT\": 1558, \"OWNER_OCC\": 3801, \"RENTER_OCC\": 5337 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.877374315736759, 40.443826864172586 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Williamsport\", \"CLASS\": \"city\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"85312\", \"CAPITAL\": \"N\", \"AREALAND\": 8.884000, \"AREAWATER\": 0.656000, \"POP_CL\": 6, \"POP2000\": 30706, \"WHITE\": 25827, \"BLACK\": 3910, \"AMERI_ES\": 111, \"ASIAN\": 175, \"HAWN_PI\": 4, \"OTHER\": 147, \"MULT_RACE\": 532, \"HISPANIC\": 340, \"MALES\": 15175, \"FEMALES\": 15531, \"AGE_UNDER5\": 1832, \"AGE_5_17\": 5069, \"AGE_18_21\": 4023, \"AGE_22_29\": 3490, \"AGE_30_39\": 4082, \"AGE_40_49\": 4141, \"AGE_50_64\": 3936, \"AGE_65_UP\": 4133, \"MED_AGE\": 32.400000, \"MED_AGE_M\": 29.300000, \"MED_AGE_F\": 35.800000, \"HOUSEHOLDS\": 12219, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 1828, \"HSEHLD_1_F\": 2464, \"MARHH_CHD\": 1723, \"MARHH_NO_C\": 2537, \"MHH_CHILD\": 367, \"FHH_CHILD\": 1255, \"FAMILIES\": 6728, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 13524, \"VACANT\": 1305, \"OWNER_OCC\": 5476, \"RENTER_OCC\": 6743 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.018761010475544, 41.244428489892542 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Willow Grove\", \"CLASS\": \"CDP\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"85408\", \"CAPITAL\": \"N\", \"AREALAND\": 3.619000, \"AREAWATER\": 0.006000, \"POP_CL\": 6, \"POP2000\": 16234, \"WHITE\": 14378, \"BLACK\": 1068, \"AMERI_ES\": 14, \"ASIAN\": 496, \"HAWN_PI\": 4, \"OTHER\": 78, \"MULT_RACE\": 196, \"HISPANIC\": 255, \"MALES\": 7659, \"FEMALES\": 8575, \"AGE_UNDER5\": 1045, \"AGE_5_17\": 2678, \"AGE_18_21\": 569, \"AGE_22_29\": 1575, \"AGE_30_39\": 2672, \"AGE_40_49\": 2567, \"AGE_50_64\": 2298, \"AGE_65_UP\": 2830, \"MED_AGE\": 38.400000, \"MED_AGE_M\": 36.800000, \"MED_AGE_F\": 40.000000, \"HOUSEHOLDS\": 6389, \"AVE_HH_SZ\": 2.460000, \"HSEHLD_1_M\": 731, \"HSEHLD_1_F\": 1062, \"MARHH_CHD\": 1561, \"MARHH_NO_C\": 1844, \"MHH_CHILD\": 74, \"FHH_CHILD\": 284, \"FAMILIES\": 4258, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 6582, \"VACANT\": 193, \"OWNER_OCC\": 4214, \"RENTER_OCC\": 2175 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.116704073519259, 40.146112047090398 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Woodlyn\", \"CLASS\": \"CDP\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"86288\", \"CAPITAL\": \"N\", \"AREALAND\": 1.645000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10036, \"WHITE\": 8820, \"BLACK\": 918, \"AMERI_ES\": 15, \"ASIAN\": 118, \"HAWN_PI\": 7, \"OTHER\": 34, \"MULT_RACE\": 124, \"HISPANIC\": 138, \"MALES\": 4811, \"FEMALES\": 5225, \"AGE_UNDER5\": 646, \"AGE_5_17\": 1923, \"AGE_18_21\": 421, \"AGE_22_29\": 892, \"AGE_30_39\": 1572, \"AGE_40_49\": 1530, \"AGE_50_64\": 1363, \"AGE_65_UP\": 1689, \"MED_AGE\": 37.600000, \"MED_AGE_M\": 36.000000, \"MED_AGE_F\": 38.900000, \"HOUSEHOLDS\": 3960, \"AVE_HH_SZ\": 2.530000, \"HSEHLD_1_M\": 474, \"HSEHLD_1_F\": 672, \"MARHH_CHD\": 847, \"MARHH_NO_C\": 1068, \"MHH_CHILD\": 87, \"FHH_CHILD\": 290, \"FAMILIES\": 2636, \"AVE_FAM_SZ\": 3.160000, \"HSE_UNITS\": 4132, \"VACANT\": 172, \"OWNER_OCC\": 2782, \"RENTER_OCC\": 1178 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.342292864208162, 39.877814549522697 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Yeadon\", \"CLASS\": \"borough\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"86968\", \"CAPITAL\": \"N\", \"AREALAND\": 1.612000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11762, \"WHITE\": 1830, \"BLACK\": 9500, \"AMERI_ES\": 25, \"ASIAN\": 105, \"HAWN_PI\": 1, \"OTHER\": 48, \"MULT_RACE\": 253, \"HISPANIC\": 120, \"MALES\": 5217, \"FEMALES\": 6545, \"AGE_UNDER5\": 754, \"AGE_5_17\": 2122, \"AGE_18_21\": 520, \"AGE_22_29\": 1077, \"AGE_30_39\": 1737, \"AGE_40_49\": 2032, \"AGE_50_64\": 1706, \"AGE_65_UP\": 1814, \"MED_AGE\": 38.100000, \"MED_AGE_M\": 36.100000, \"MED_AGE_F\": 39.700000, \"HOUSEHOLDS\": 4696, \"AVE_HH_SZ\": 2.430000, \"HSEHLD_1_M\": 592, \"HSEHLD_1_F\": 921, \"MARHH_CHD\": 838, \"MARHH_NO_C\": 928, \"MHH_CHILD\": 130, \"FHH_CHILD\": 497, \"FAMILIES\": 2970, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 4958, \"VACANT\": 262, \"OWNER_OCC\": 2946, \"RENTER_OCC\": 1750 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -75.251597843794016, 39.932864739238092 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"York\", \"CLASS\": \"city\", \"ST\": \"PA\", \"STFIPS\": \"42\", \"PLACEFIP\": \"87048\", \"CAPITAL\": \"N\", \"AREALAND\": 5.204000, \"AREAWATER\": 0.055000, \"POP_CL\": 6, \"POP2000\": 40862, \"WHITE\": 24416, \"BLACK\": 10270, \"AMERI_ES\": 172, \"ASIAN\": 574, \"HAWN_PI\": 28, \"OTHER\": 3839, \"MULT_RACE\": 1563, \"HISPANIC\": 7026, \"MALES\": 19687, \"FEMALES\": 21175, \"AGE_UNDER5\": 3268, \"AGE_5_17\": 8351, \"AGE_18_21\": 2737, \"AGE_22_29\": 5200, \"AGE_30_39\": 6224, \"AGE_40_49\": 5290, \"AGE_50_64\": 5324, \"AGE_65_UP\": 4468, \"MED_AGE\": 31.300000, \"MED_AGE_M\": 30.200000, \"MED_AGE_F\": 32.500000, \"HOUSEHOLDS\": 16137, \"AVE_HH_SZ\": 2.480000, \"HSEHLD_1_M\": 2448, \"HSEHLD_1_F\": 2900, \"MARHH_CHD\": 2143, \"MARHH_NO_C\": 2854, \"MHH_CHILD\": 555, \"FHH_CHILD\": 2281, \"FAMILIES\": 9249, \"AVE_FAM_SZ\": 3.170000, \"HSE_UNITS\": 18534, \"VACANT\": 2397, \"OWNER_OCC\": 7550, \"RENTER_OCC\": 8587 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.728068152162479, 39.962692713538253 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Barrington\", \"CLASS\": \"CDP\", \"ST\": \"RI\", \"STFIPS\": \"44\", \"PLACEFIP\": \"04960\", \"CAPITAL\": \"N\", \"AREALAND\": 8.418000, \"AREAWATER\": 7.006000, \"POP_CL\": 6, \"POP2000\": 16819, \"WHITE\": 16209, \"BLACK\": 115, \"AMERI_ES\": 19, \"ASIAN\": 297, \"HAWN_PI\": 0, \"OTHER\": 43, \"MULT_RACE\": 136, \"HISPANIC\": 177, \"MALES\": 8197, \"FEMALES\": 8622, \"AGE_UNDER5\": 996, \"AGE_5_17\": 3749, \"AGE_18_21\": 584, \"AGE_22_29\": 805, \"AGE_30_39\": 2220, \"AGE_40_49\": 3208, \"AGE_50_64\": 2786, \"AGE_65_UP\": 2471, \"MED_AGE\": 40.200000, \"MED_AGE_M\": 39.000000, \"MED_AGE_F\": 41.200000, \"HOUSEHOLDS\": 6011, \"AVE_HH_SZ\": 2.730000, \"HSEHLD_1_M\": 361, \"HSEHLD_1_F\": 772, \"MARHH_CHD\": 2103, \"MARHH_NO_C\": 2024, \"MHH_CHILD\": 58, \"FHH_CHILD\": 260, \"FAMILIES\": 4714, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 6199, \"VACANT\": 188, \"OWNER_OCC\": 5311, \"RENTER_OCC\": 700 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.318641564834508, 41.745235123869058 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bristol\", \"CLASS\": \"CDP\", \"ST\": \"RI\", \"STFIPS\": \"44\", \"PLACEFIP\": \"09460\", \"CAPITAL\": \"N\", \"AREALAND\": 10.111000, \"AREAWATER\": 10.523000, \"POP_CL\": 6, \"POP2000\": 22469, \"WHITE\": 21826, \"BLACK\": 140, \"AMERI_ES\": 37, \"ASIAN\": 151, \"HAWN_PI\": 10, \"OTHER\": 74, \"MULT_RACE\": 231, \"HISPANIC\": 289, \"MALES\": 10834, \"FEMALES\": 11635, \"AGE_UNDER5\": 1166, \"AGE_5_17\": 3233, \"AGE_18_21\": 2302, \"AGE_22_29\": 2055, \"AGE_30_39\": 3102, \"AGE_40_49\": 3212, \"AGE_50_64\": 3430, \"AGE_65_UP\": 3969, \"MED_AGE\": 38.200000, \"MED_AGE_M\": 36.800000, \"MED_AGE_F\": 39.400000, \"HOUSEHOLDS\": 8314, \"AVE_HH_SZ\": 2.450000, \"HSEHLD_1_M\": 813, \"HSEHLD_1_F\": 1376, \"MARHH_CHD\": 1812, \"MARHH_NO_C\": 2742, \"MHH_CHILD\": 102, \"FHH_CHILD\": 431, \"FAMILIES\": 5650, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 8705, \"VACANT\": 391, \"OWNER_OCC\": 5490, \"RENTER_OCC\": 2824 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.269126104434662, 41.684235004342135 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Central Falls\", \"CLASS\": \"city\", \"ST\": \"RI\", \"STFIPS\": \"44\", \"PLACEFIP\": \"14140\", \"CAPITAL\": \"N\", \"AREALAND\": 1.209000, \"AREAWATER\": 0.082000, \"POP_CL\": 6, \"POP2000\": 18928, \"WHITE\": 10820, \"BLACK\": 1101, \"AMERI_ES\": 108, \"ASIAN\": 128, \"HAWN_PI\": 8, \"OTHER\": 5367, \"MULT_RACE\": 1396, \"HISPANIC\": 9041, \"MALES\": 9404, \"FEMALES\": 9524, \"AGE_UNDER5\": 1644, \"AGE_5_17\": 3887, \"AGE_18_21\": 1241, \"AGE_22_29\": 2615, \"AGE_30_39\": 3113, \"AGE_40_49\": 2268, \"AGE_50_64\": 1983, \"AGE_65_UP\": 2177, \"MED_AGE\": 30.200000, \"MED_AGE_M\": 28.900000, \"MED_AGE_F\": 31.800000, \"HOUSEHOLDS\": 6696, \"AVE_HH_SZ\": 2.740000, \"HSEHLD_1_M\": 910, \"HSEHLD_1_F\": 1049, \"MARHH_CHD\": 1340, \"MARHH_NO_C\": 1098, \"MHH_CHILD\": 216, \"FHH_CHILD\": 1051, \"FAMILIES\": 4356, \"AVE_FAM_SZ\": 3.380000, \"HSE_UNITS\": 7270, \"VACANT\": 574, \"OWNER_OCC\": 1460, \"RENTER_OCC\": 5236 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.393043293992548, 41.889895868316586 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cranston\", \"CLASS\": \"city\", \"ST\": \"RI\", \"STFIPS\": \"44\", \"PLACEFIP\": \"19180\", \"CAPITAL\": \"N\", \"AREALAND\": 28.569000, \"AREAWATER\": 1.363000, \"POP_CL\": 7, \"POP2000\": 79269, \"WHITE\": 70703, \"BLACK\": 2926, \"AMERI_ES\": 236, \"ASIAN\": 2599, \"HAWN_PI\": 33, \"OTHER\": 1528, \"MULT_RACE\": 1244, \"HISPANIC\": 3613, \"MALES\": 38800, \"FEMALES\": 40469, \"AGE_UNDER5\": 4180, \"AGE_5_17\": 12918, \"AGE_18_21\": 3630, \"AGE_22_29\": 7433, \"AGE_30_39\": 12888, \"AGE_40_49\": 12959, \"AGE_50_64\": 11550, \"AGE_65_UP\": 13711, \"MED_AGE\": 39.000000, \"MED_AGE_M\": 36.900000, \"MED_AGE_F\": 40.900000, \"HOUSEHOLDS\": 30954, \"AVE_HH_SZ\": 2.410000, \"HSEHLD_1_M\": 3303, \"HSEHLD_1_F\": 5806, \"MARHH_CHD\": 6466, \"MARHH_NO_C\": 8778, \"MHH_CHILD\": 455, \"FHH_CHILD\": 1952, \"FAMILIES\": 20238, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 32068, \"VACANT\": 1114, \"OWNER_OCC\": 20703, \"RENTER_OCC\": 10251 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.453711661413024, 41.773231736096271 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"East Providence\", \"CLASS\": \"city\", \"ST\": \"RI\", \"STFIPS\": \"44\", \"PLACEFIP\": \"22960\", \"CAPITAL\": \"N\", \"AREALAND\": 13.405000, \"AREAWATER\": 3.208000, \"POP_CL\": 6, \"POP2000\": 48688, \"WHITE\": 42111, \"BLACK\": 2445, \"AMERI_ES\": 225, \"ASIAN\": 559, \"HAWN_PI\": 23, \"OTHER\": 1361, \"MULT_RACE\": 1964, \"HISPANIC\": 922, \"MALES\": 22629, \"FEMALES\": 26059, \"AGE_UNDER5\": 2625, \"AGE_5_17\": 7921, \"AGE_18_21\": 2037, \"AGE_22_29\": 4633, \"AGE_30_39\": 7435, \"AGE_40_49\": 7281, \"AGE_50_64\": 7553, \"AGE_65_UP\": 9203, \"MED_AGE\": 39.600000, \"MED_AGE_M\": 37.800000, \"MED_AGE_F\": 41.500000, \"HOUSEHOLDS\": 20530, \"AVE_HH_SZ\": 2.330000, \"HSEHLD_1_M\": 2521, \"HSEHLD_1_F\": 4140, \"MARHH_CHD\": 3842, \"MARHH_NO_C\": 5658, \"MHH_CHILD\": 306, \"FHH_CHILD\": 1414, \"FAMILIES\": 12850, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 21309, \"VACANT\": 779, \"OWNER_OCC\": 12096, \"RENTER_OCC\": 8434 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.361265418848205, 41.801533383415631 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Newport\", \"CLASS\": \"city\", \"ST\": \"RI\", \"STFIPS\": \"44\", \"PLACEFIP\": \"49960\", \"CAPITAL\": \"N\", \"AREALAND\": 7.935000, \"AREAWATER\": 3.536000, \"POP_CL\": 6, \"POP2000\": 26475, \"WHITE\": 22272, \"BLACK\": 2053, \"AMERI_ES\": 225, \"ASIAN\": 353, \"HAWN_PI\": 23, \"OTHER\": 638, \"MULT_RACE\": 911, \"HISPANIC\": 1467, \"MALES\": 12751, \"FEMALES\": 13724, \"AGE_UNDER5\": 1526, \"AGE_5_17\": 3673, \"AGE_18_21\": 2443, \"AGE_22_29\": 3545, \"AGE_30_39\": 4213, \"AGE_40_49\": 3805, \"AGE_50_64\": 3862, \"AGE_65_UP\": 3408, \"MED_AGE\": 34.900000, \"MED_AGE_M\": 34.000000, \"MED_AGE_F\": 35.900000, \"HOUSEHOLDS\": 11566, \"AVE_HH_SZ\": 2.110000, \"HSEHLD_1_M\": 2053, \"HSEHLD_1_F\": 2509, \"MARHH_CHD\": 1439, \"MARHH_NO_C\": 2295, \"MHH_CHILD\": 148, \"FHH_CHILD\": 1056, \"FAMILIES\": 5646, \"AVE_FAM_SZ\": 2.860000, \"HSE_UNITS\": 13226, \"VACANT\": 1660, \"OWNER_OCC\": 4843, \"RENTER_OCC\": 6723 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.31306518543137, 41.488036059018711 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Newport East\", \"CLASS\": \"CDP\", \"ST\": \"RI\", \"STFIPS\": \"44\", \"PLACEFIP\": \"50140\", \"CAPITAL\": \"N\", \"AREALAND\": 5.677000, \"AREAWATER\": 0.188000, \"POP_CL\": 6, \"POP2000\": 11463, \"WHITE\": 10369, \"BLACK\": 463, \"AMERI_ES\": 42, \"ASIAN\": 213, \"HAWN_PI\": 13, \"OTHER\": 98, \"MULT_RACE\": 265, \"HISPANIC\": 249, \"MALES\": 5449, \"FEMALES\": 6014, \"AGE_UNDER5\": 599, \"AGE_5_17\": 1876, \"AGE_18_21\": 398, \"AGE_22_29\": 897, \"AGE_30_39\": 1728, \"AGE_40_49\": 1874, \"AGE_50_64\": 2002, \"AGE_65_UP\": 2089, \"MED_AGE\": 41.200000, \"MED_AGE_M\": 39.200000, \"MED_AGE_F\": 43.100000, \"HOUSEHOLDS\": 4905, \"AVE_HH_SZ\": 2.280000, \"HSEHLD_1_M\": 671, \"HSEHLD_1_F\": 942, \"MARHH_CHD\": 926, \"MARHH_NO_C\": 1389, \"MHH_CHILD\": 66, \"FHH_CHILD\": 330, \"FAMILIES\": 3014, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 5206, \"VACANT\": 301, \"OWNER_OCC\": 2902, \"RENTER_OCC\": 2003 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.288541636716857, 41.508636524879734 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"North Providence\", \"CLASS\": \"CDP\", \"ST\": \"RI\", \"STFIPS\": \"44\", \"PLACEFIP\": \"51940\", \"CAPITAL\": \"N\", \"AREALAND\": 5.666000, \"AREAWATER\": 0.124000, \"POP_CL\": 6, \"POP2000\": 32411, \"WHITE\": 29812, \"BLACK\": 859, \"AMERI_ES\": 55, \"ASIAN\": 598, \"HAWN_PI\": 7, \"OTHER\": 511, \"MULT_RACE\": 569, \"HISPANIC\": 1247, \"MALES\": 15117, \"FEMALES\": 17294, \"AGE_UNDER5\": 1453, \"AGE_5_17\": 4483, \"AGE_18_21\": 1313, \"AGE_22_29\": 3322, \"AGE_30_39\": 4988, \"AGE_40_49\": 5018, \"AGE_50_64\": 5439, \"AGE_65_UP\": 6395, \"MED_AGE\": 41.200000, \"MED_AGE_M\": 39.000000, \"MED_AGE_F\": 43.200000, \"HOUSEHOLDS\": 14351, \"AVE_HH_SZ\": 2.230000, \"HSEHLD_1_M\": 1965, \"HSEHLD_1_F\": 3035, \"MARHH_CHD\": 2280, \"MARHH_NO_C\": 4109, \"MHH_CHILD\": 185, \"FHH_CHILD\": 749, \"FAMILIES\": 8546, \"AVE_FAM_SZ\": 2.910000, \"HSE_UNITS\": 14867, \"VACANT\": 516, \"OWNER_OCC\": 8650, \"RENTER_OCC\": 5701 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.456736151876584, 41.860013734752499 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pawtucket\", \"CLASS\": \"city\", \"ST\": \"RI\", \"STFIPS\": \"44\", \"PLACEFIP\": \"54640\", \"CAPITAL\": \"N\", \"AREALAND\": 8.736000, \"AREAWATER\": 0.259000, \"POP_CL\": 7, \"POP2000\": 72958, \"WHITE\": 55004, \"BLACK\": 5334, \"AMERI_ES\": 217, \"ASIAN\": 621, \"HAWN_PI\": 42, \"OTHER\": 7841, \"MULT_RACE\": 3899, \"HISPANIC\": 10141, \"MALES\": 34600, \"FEMALES\": 38358, \"AGE_UNDER5\": 4918, \"AGE_5_17\": 13233, \"AGE_18_21\": 3642, \"AGE_22_29\": 8337, \"AGE_30_39\": 11883, \"AGE_40_49\": 10437, \"AGE_50_64\": 9680, \"AGE_65_UP\": 10828, \"MED_AGE\": 35.400000, \"MED_AGE_M\": 34.100000, \"MED_AGE_F\": 36.600000, \"HOUSEHOLDS\": 30047, \"AVE_HH_SZ\": 2.410000, \"HSEHLD_1_M\": 4177, \"HSEHLD_1_F\": 5523, \"MARHH_CHD\": 5183, \"MARHH_NO_C\": 6740, \"MHH_CHILD\": 754, \"FHH_CHILD\": 3242, \"FAMILIES\": 18520, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 31819, \"VACANT\": 1772, \"OWNER_OCC\": 13331, \"RENTER_OCC\": 16716 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.376421236204138, 41.875532156478734 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Providence\", \"CLASS\": \"city\", \"ST\": \"RI\", \"STFIPS\": \"44\", \"PLACEFIP\": \"59000\", \"CAPITAL\": \"Y\", \"AREALAND\": 18.467000, \"AREAWATER\": 2.065000, \"POP_CL\": 8, \"POP2000\": 173618, \"WHITE\": 94666, \"BLACK\": 25243, \"AMERI_ES\": 1975, \"ASIAN\": 10432, \"HAWN_PI\": 270, \"OTHER\": 30477, \"MULT_RACE\": 10555, \"HISPANIC\": 52146, \"MALES\": 83035, \"FEMALES\": 90583, \"AGE_UNDER5\": 12607, \"AGE_5_17\": 32670, \"AGE_18_21\": 22396, \"AGE_22_29\": 24462, \"AGE_30_39\": 24997, \"AGE_40_49\": 20025, \"AGE_50_64\": 18306, \"AGE_65_UP\": 18155, \"MED_AGE\": 28.100000, \"MED_AGE_M\": 27.000000, \"MED_AGE_F\": 29.100000, \"HOUSEHOLDS\": 62389, \"AVE_HH_SZ\": 2.560000, \"HSEHLD_1_M\": 9223, \"HSEHLD_1_F\": 10900, \"MARHH_CHD\": 9811, \"MARHH_NO_C\": 10072, \"MHH_CHILD\": 1476, \"FHH_CHILD\": 8887, \"FAMILIES\": 35859, \"AVE_FAM_SZ\": 3.330000, \"HSE_UNITS\": 67915, \"VACANT\": 5526, \"OWNER_OCC\": 21588, \"RENTER_OCC\": 40801 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.422561886560487, 41.823582307338064 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Valley Falls\", \"CLASS\": \"CDP\", \"ST\": \"RI\", \"STFIPS\": \"44\", \"PLACEFIP\": \"72500\", \"CAPITAL\": \"N\", \"AREALAND\": 3.548000, \"AREAWATER\": 0.111000, \"POP_CL\": 6, \"POP2000\": 11599, \"WHITE\": 11121, \"BLACK\": 96, \"AMERI_ES\": 13, \"ASIAN\": 60, \"HAWN_PI\": 0, \"OTHER\": 165, \"MULT_RACE\": 144, \"HISPANIC\": 457, \"MALES\": 5505, \"FEMALES\": 6094, \"AGE_UNDER5\": 658, \"AGE_5_17\": 2040, \"AGE_18_21\": 515, \"AGE_22_29\": 992, \"AGE_30_39\": 1831, \"AGE_40_49\": 1850, \"AGE_50_64\": 1793, \"AGE_65_UP\": 1920, \"MED_AGE\": 38.900000, \"MED_AGE_M\": 38.000000, \"MED_AGE_F\": 39.700000, \"HOUSEHOLDS\": 4494, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 412, \"HSEHLD_1_F\": 643, \"MARHH_CHD\": 1092, \"MARHH_NO_C\": 1484, \"MHH_CHILD\": 66, \"FHH_CHILD\": 289, \"FAMILIES\": 3260, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 4668, \"VACANT\": 174, \"OWNER_OCC\": 3081, \"RENTER_OCC\": 1413 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.392791019677077, 41.917398889387385 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Warwick\", \"CLASS\": \"city\", \"ST\": \"RI\", \"STFIPS\": \"44\", \"PLACEFIP\": \"74300\", \"CAPITAL\": \"N\", \"AREALAND\": 35.498000, \"AREAWATER\": 14.121000, \"POP_CL\": 7, \"POP2000\": 85808, \"WHITE\": 81695, \"BLACK\": 996, \"AMERI_ES\": 213, \"ASIAN\": 1281, \"HAWN_PI\": 15, \"OTHER\": 506, \"MULT_RACE\": 1102, \"HISPANIC\": 1372, \"MALES\": 40835, \"FEMALES\": 44973, \"AGE_UNDER5\": 4640, \"AGE_5_17\": 14140, \"AGE_18_21\": 3341, \"AGE_22_29\": 7300, \"AGE_30_39\": 13551, \"AGE_40_49\": 14047, \"AGE_50_64\": 14231, \"AGE_65_UP\": 14558, \"MED_AGE\": 40.000000, \"MED_AGE_M\": 38.400000, \"MED_AGE_F\": 41.400000, \"HOUSEHOLDS\": 35517, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 3982, \"HSEHLD_1_F\": 6590, \"MARHH_CHD\": 7386, \"MARHH_NO_C\": 10626, \"MHH_CHILD\": 588, \"FHH_CHILD\": 1757, \"FAMILIES\": 22971, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 37085, \"VACANT\": 1568, \"OWNER_OCC\": 25805, \"RENTER_OCC\": 9712 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.41565567434337, 41.718146364991789 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Westerly\", \"CLASS\": \"CDP\", \"ST\": \"RI\", \"STFIPS\": \"44\", \"PLACEFIP\": \"76820\", \"CAPITAL\": \"N\", \"AREALAND\": 15.973000, \"AREAWATER\": 0.518000, \"POP_CL\": 6, \"POP2000\": 17682, \"WHITE\": 16736, \"BLACK\": 145, \"AMERI_ES\": 97, \"ASIAN\": 424, \"HAWN_PI\": 0, \"OTHER\": 61, \"MULT_RACE\": 219, \"HISPANIC\": 205, \"MALES\": 8488, \"FEMALES\": 9194, \"AGE_UNDER5\": 1081, \"AGE_5_17\": 2937, \"AGE_18_21\": 723, \"AGE_22_29\": 1603, \"AGE_30_39\": 2759, \"AGE_40_49\": 2687, \"AGE_50_64\": 2730, \"AGE_65_UP\": 3162, \"MED_AGE\": 39.100000, \"MED_AGE_M\": 37.500000, \"MED_AGE_F\": 40.700000, \"HOUSEHOLDS\": 7346, \"AVE_HH_SZ\": 2.360000, \"HSEHLD_1_M\": 882, \"HSEHLD_1_F\": 1364, \"MARHH_CHD\": 1485, \"MARHH_NO_C\": 2068, \"MHH_CHILD\": 133, \"FHH_CHILD\": 491, \"FAMILIES\": 4661, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 7812, \"VACANT\": 466, \"OWNER_OCC\": 4452, \"RENTER_OCC\": 2894 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.819079657981163, 41.374832769222678 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"West Warwick\", \"CLASS\": \"CDP\", \"ST\": \"RI\", \"STFIPS\": \"44\", \"PLACEFIP\": \"78260\", \"CAPITAL\": \"N\", \"AREALAND\": 7.933000, \"AREAWATER\": 0.180000, \"POP_CL\": 6, \"POP2000\": 29581, \"WHITE\": 27740, \"BLACK\": 328, \"AMERI_ES\": 105, \"ASIAN\": 420, \"HAWN_PI\": 7, \"OTHER\": 425, \"MULT_RACE\": 556, \"HISPANIC\": 918, \"MALES\": 14230, \"FEMALES\": 15351, \"AGE_UNDER5\": 1936, \"AGE_5_17\": 4696, \"AGE_18_21\": 1457, \"AGE_22_29\": 3698, \"AGE_30_39\": 4728, \"AGE_40_49\": 4510, \"AGE_50_64\": 4391, \"AGE_65_UP\": 4165, \"MED_AGE\": 36.400000, \"MED_AGE_M\": 34.900000, \"MED_AGE_F\": 37.800000, \"HOUSEHOLDS\": 12498, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 1745, \"HSEHLD_1_F\": 2153, \"MARHH_CHD\": 2242, \"MARHH_NO_C\": 3311, \"MHH_CHILD\": 273, \"FHH_CHILD\": 981, \"FAMILIES\": 7700, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 13186, \"VACANT\": 688, \"OWNER_OCC\": 6796, \"RENTER_OCC\": 5702 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.518987713375992, 41.703780588616176 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Woonsocket\", \"CLASS\": \"city\", \"ST\": \"RI\", \"STFIPS\": \"44\", \"PLACEFIP\": \"80780\", \"CAPITAL\": \"N\", \"AREALAND\": 7.706000, \"AREAWATER\": 0.249000, \"POP_CL\": 6, \"POP2000\": 43224, \"WHITE\": 35935, \"BLACK\": 1920, \"AMERI_ES\": 139, \"ASIAN\": 1755, \"HAWN_PI\": 14, \"OTHER\": 2102, \"MULT_RACE\": 1359, \"HISPANIC\": 4030, \"MALES\": 20622, \"FEMALES\": 22602, \"AGE_UNDER5\": 3287, \"AGE_5_17\": 7868, \"AGE_18_21\": 2194, \"AGE_22_29\": 5140, \"AGE_30_39\": 6534, \"AGE_40_49\": 5807, \"AGE_50_64\": 5805, \"AGE_65_UP\": 6589, \"MED_AGE\": 34.800000, \"MED_AGE_M\": 33.500000, \"MED_AGE_F\": 36.000000, \"HOUSEHOLDS\": 17750, \"AVE_HH_SZ\": 2.370000, \"HSEHLD_1_M\": 2571, \"HSEHLD_1_F\": 3232, \"MARHH_CHD\": 2934, \"MARHH_NO_C\": 4060, \"MHH_CHILD\": 508, \"FHH_CHILD\": 2090, \"FAMILIES\": 10768, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 18757, \"VACANT\": 1007, \"OWNER_OCC\": 6214, \"RENTER_OCC\": 11536 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -71.507640779272748, 42.001761946807527 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Aiken\", \"CLASS\": \"city\", \"ST\": \"SC\", \"STFIPS\": \"45\", \"PLACEFIP\": \"00550\", \"CAPITAL\": \"N\", \"AREALAND\": 16.176000, \"AREAWATER\": 0.015000, \"POP_CL\": 6, \"POP2000\": 25337, \"WHITE\": 16881, \"BLACK\": 7678, \"AMERI_ES\": 64, \"ASIAN\": 324, \"HAWN_PI\": 3, \"OTHER\": 111, \"MULT_RACE\": 276, \"HISPANIC\": 378, \"MALES\": 11803, \"FEMALES\": 13534, \"AGE_UNDER5\": 1478, \"AGE_5_17\": 4408, \"AGE_18_21\": 1561, \"AGE_22_29\": 2240, \"AGE_30_39\": 3153, \"AGE_40_49\": 3817, \"AGE_50_64\": 4165, \"AGE_65_UP\": 4515, \"MED_AGE\": 39.500000, \"MED_AGE_M\": 37.700000, \"MED_AGE_F\": 41.000000, \"HOUSEHOLDS\": 10287, \"AVE_HH_SZ\": 2.340000, \"HSEHLD_1_M\": 1207, \"HSEHLD_1_F\": 1834, \"MARHH_CHD\": 1898, \"MARHH_NO_C\": 3133, \"MHH_CHILD\": 142, \"FHH_CHILD\": 846, \"FAMILIES\": 6759, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 11373, \"VACANT\": 1086, \"OWNER_OCC\": 6804, \"RENTER_OCC\": 3483 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.72068938511066, 33.549396944261026 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Anderson\", \"CLASS\": \"city\", \"ST\": \"SC\", \"STFIPS\": \"45\", \"PLACEFIP\": \"01360\", \"CAPITAL\": \"N\", \"AREALAND\": 13.839000, \"AREAWATER\": 0.008000, \"POP_CL\": 6, \"POP2000\": 25514, \"WHITE\": 16105, \"BLACK\": 8678, \"AMERI_ES\": 55, \"ASIAN\": 199, \"HAWN_PI\": 9, \"OTHER\": 173, \"MULT_RACE\": 295, \"HISPANIC\": 377, \"MALES\": 11522, \"FEMALES\": 13992, \"AGE_UNDER5\": 1705, \"AGE_5_17\": 3951, \"AGE_18_21\": 1689, \"AGE_22_29\": 2775, \"AGE_30_39\": 3289, \"AGE_40_49\": 3299, \"AGE_50_64\": 3591, \"AGE_65_UP\": 5215, \"MED_AGE\": 38.000000, \"MED_AGE_M\": 34.900000, \"MED_AGE_F\": 41.100000, \"HOUSEHOLDS\": 10641, \"AVE_HH_SZ\": 2.220000, \"HSEHLD_1_M\": 1411, \"HSEHLD_1_F\": 2420, \"MARHH_CHD\": 1394, \"MARHH_NO_C\": 2528, \"MHH_CHILD\": 162, \"FHH_CHILD\": 1148, \"FAMILIES\": 6304, \"AVE_FAM_SZ\": 2.890000, \"HSE_UNITS\": 12068, \"VACANT\": 1427, \"OWNER_OCC\": 5686, \"RENTER_OCC\": 4955 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.648944174701185, 34.514505957517315 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Beaufort\", \"CLASS\": \"city\", \"ST\": \"SC\", \"STFIPS\": \"45\", \"PLACEFIP\": \"04690\", \"CAPITAL\": \"N\", \"AREALAND\": 18.614000, \"AREAWATER\": 4.819000, \"POP_CL\": 6, \"POP2000\": 12950, \"WHITE\": 8988, \"BLACK\": 3256, \"AMERI_ES\": 41, \"ASIAN\": 138, \"HAWN_PI\": 16, \"OTHER\": 257, \"MULT_RACE\": 254, \"HISPANIC\": 568, \"MALES\": 6907, \"FEMALES\": 6043, \"AGE_UNDER5\": 911, \"AGE_5_17\": 1885, \"AGE_18_21\": 1394, \"AGE_22_29\": 2256, \"AGE_30_39\": 1831, \"AGE_40_49\": 1545, \"AGE_50_64\": 1543, \"AGE_65_UP\": 1585, \"MED_AGE\": 30.100000, \"MED_AGE_M\": 26.900000, \"MED_AGE_F\": 35.400000, \"HOUSEHOLDS\": 4598, \"AVE_HH_SZ\": 2.370000, \"HSEHLD_1_M\": 492, \"HSEHLD_1_F\": 823, \"MARHH_CHD\": 924, \"MARHH_NO_C\": 1265, \"MHH_CHILD\": 95, \"FHH_CHILD\": 442, \"FAMILIES\": 3036, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 5080, \"VACANT\": 482, \"OWNER_OCC\": 2692, \"RENTER_OCC\": 1906 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.689515845509177, 32.431852937684646 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Berea\", \"CLASS\": \"CDP\", \"ST\": \"SC\", \"STFIPS\": \"45\", \"PLACEFIP\": \"05770\", \"CAPITAL\": \"N\", \"AREALAND\": 7.605000, \"AREAWATER\": 0.241000, \"POP_CL\": 6, \"POP2000\": 14158, \"WHITE\": 10717, \"BLACK\": 2257, \"AMERI_ES\": 23, \"ASIAN\": 207, \"HAWN_PI\": 1, \"OTHER\": 696, \"MULT_RACE\": 257, \"HISPANIC\": 1902, \"MALES\": 6709, \"FEMALES\": 7449, \"AGE_UNDER5\": 973, \"AGE_5_17\": 2304, \"AGE_18_21\": 816, \"AGE_22_29\": 1731, \"AGE_30_39\": 2107, \"AGE_40_49\": 1860, \"AGE_50_64\": 2271, \"AGE_65_UP\": 2096, \"MED_AGE\": 35.800000, \"MED_AGE_M\": 33.800000, \"MED_AGE_F\": 37.900000, \"HOUSEHOLDS\": 5630, \"AVE_HH_SZ\": 2.470000, \"HSEHLD_1_M\": 597, \"HSEHLD_1_F\": 907, \"MARHH_CHD\": 1074, \"MARHH_NO_C\": 1658, \"MHH_CHILD\": 112, \"FHH_CHILD\": 519, \"FAMILIES\": 3824, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 5994, \"VACANT\": 364, \"OWNER_OCC\": 3554, \"RENTER_OCC\": 2076 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.460751221836063, 34.878844952492003 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cayce\", \"CLASS\": \"city\", \"ST\": \"SC\", \"STFIPS\": \"45\", \"PLACEFIP\": \"12655\", \"CAPITAL\": \"N\", \"AREALAND\": 10.901000, \"AREAWATER\": 0.358000, \"POP_CL\": 6, \"POP2000\": 12150, \"WHITE\": 9058, \"BLACK\": 2734, \"AMERI_ES\": 31, \"ASIAN\": 131, \"HAWN_PI\": 18, \"OTHER\": 81, \"MULT_RACE\": 97, \"HISPANIC\": 155, \"MALES\": 5626, \"FEMALES\": 6524, \"AGE_UNDER5\": 670, \"AGE_5_17\": 1846, \"AGE_18_21\": 1061, \"AGE_22_29\": 1512, \"AGE_30_39\": 1701, \"AGE_40_49\": 1731, \"AGE_50_64\": 1838, \"AGE_65_UP\": 1791, \"MED_AGE\": 36.100000, \"MED_AGE_M\": 34.600000, \"MED_AGE_F\": 37.400000, \"HOUSEHOLDS\": 5133, \"AVE_HH_SZ\": 2.360000, \"HSEHLD_1_M\": 569, \"HSEHLD_1_F\": 922, \"MARHH_CHD\": 773, \"MARHH_NO_C\": 1374, \"MHH_CHILD\": 68, \"FHH_CHILD\": 414, \"FAMILIES\": 3081, \"AVE_FAM_SZ\": 2.890000, \"HSE_UNITS\": 5517, \"VACANT\": 384, \"OWNER_OCC\": 3364, \"RENTER_OCC\": 1769 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.066596725506344, 33.963202931738927 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Charleston\", \"CLASS\": \"city\", \"ST\": \"SC\", \"STFIPS\": \"45\", \"PLACEFIP\": \"13330\", \"CAPITAL\": \"N\", \"AREALAND\": 96.991000, \"AREAWATER\": 17.109000, \"POP_CL\": 7, \"POP2000\": 96650, \"WHITE\": 60964, \"BLACK\": 32864, \"AMERI_ES\": 145, \"ASIAN\": 1197, \"HAWN_PI\": 55, \"OTHER\": 518, \"MULT_RACE\": 907, \"HISPANIC\": 1462, \"MALES\": 45758, \"FEMALES\": 50892, \"AGE_UNDER5\": 5252, \"AGE_5_17\": 14065, \"AGE_18_21\": 10527, \"AGE_22_29\": 14187, \"AGE_30_39\": 13303, \"AGE_40_49\": 12811, \"AGE_50_64\": 13473, \"AGE_65_UP\": 13032, \"MED_AGE\": 33.200000, \"MED_AGE_M\": 31.100000, \"MED_AGE_F\": 35.200000, \"HOUSEHOLDS\": 40791, \"AVE_HH_SZ\": 2.230000, \"HSEHLD_1_M\": 5667, \"HSEHLD_1_F\": 8073, \"MARHH_CHD\": 5601, \"MARHH_NO_C\": 9075, \"MHH_CHILD\": 448, \"FHH_CHILD\": 3430, \"FAMILIES\": 22159, \"AVE_FAM_SZ\": 2.920000, \"HSE_UNITS\": 44563, \"VACANT\": 3772, \"OWNER_OCC\": 20837, \"RENTER_OCC\": 19954 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.986256555539896, 32.789294939284922 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Clemson\", \"CLASS\": \"city\", \"ST\": \"SC\", \"STFIPS\": \"45\", \"PLACEFIP\": \"14950\", \"CAPITAL\": \"N\", \"AREALAND\": 7.367000, \"AREAWATER\": 0.418000, \"POP_CL\": 6, \"POP2000\": 11939, \"WHITE\": 9668, \"BLACK\": 1359, \"AMERI_ES\": 13, \"ASIAN\": 684, \"HAWN_PI\": 3, \"OTHER\": 87, \"MULT_RACE\": 125, \"HISPANIC\": 217, \"MALES\": 6154, \"FEMALES\": 5785, \"AGE_UNDER5\": 421, \"AGE_5_17\": 1309, \"AGE_18_21\": 2432, \"AGE_22_29\": 2802, \"AGE_30_39\": 1020, \"AGE_40_49\": 1132, \"AGE_50_64\": 1301, \"AGE_65_UP\": 1522, \"MED_AGE\": 24.600000, \"MED_AGE_M\": 24.200000, \"MED_AGE_F\": 25.800000, \"HOUSEHOLDS\": 5061, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 697, \"HSEHLD_1_F\": 750, \"MARHH_CHD\": 705, \"MARHH_NO_C\": 1076, \"MHH_CHILD\": 36, \"FHH_CHILD\": 158, \"FAMILIES\": 2197, \"AVE_FAM_SZ\": 2.840000, \"HSE_UNITS\": 5679, \"VACANT\": 618, \"OWNER_OCC\": 2324, \"RENTER_OCC\": 2737 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.814777150267844, 34.684929960033088 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Columbia\", \"CLASS\": \"city\", \"ST\": \"SC\", \"STFIPS\": \"45\", \"PLACEFIP\": \"16000\", \"CAPITAL\": \"Y\", \"AREALAND\": 125.223000, \"AREAWATER\": 2.492000, \"POP_CL\": 8, \"POP2000\": 116278, \"WHITE\": 57236, \"BLACK\": 53465, \"AMERI_ES\": 296, \"ASIAN\": 2008, \"HAWN_PI\": 104, \"OTHER\": 1582, \"MULT_RACE\": 1587, \"HISPANIC\": 3520, \"MALES\": 56999, \"FEMALES\": 59279, \"AGE_UNDER5\": 6478, \"AGE_5_17\": 16892, \"AGE_18_21\": 17812, \"AGE_22_29\": 19830, \"AGE_30_39\": 16582, \"AGE_40_49\": 14216, \"AGE_50_64\": 12486, \"AGE_65_UP\": 11982, \"MED_AGE\": 28.600000, \"MED_AGE_M\": 27.600000, \"MED_AGE_F\": 29.700000, \"HOUSEHOLDS\": 42245, \"AVE_HH_SZ\": 2.210000, \"HSEHLD_1_M\": 6527, \"HSEHLD_1_F\": 9106, \"MARHH_CHD\": 5633, \"MARHH_NO_C\": 7671, \"MHH_CHILD\": 551, \"FHH_CHILD\": 4548, \"FAMILIES\": 22136, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 46142, \"VACANT\": 3897, \"OWNER_OCC\": 19282, \"RENTER_OCC\": 22963 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.010759765560024, 34.017104930704612 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Conway\", \"CLASS\": \"city\", \"ST\": \"SC\", \"STFIPS\": \"45\", \"PLACEFIP\": \"16405\", \"CAPITAL\": \"N\", \"AREALAND\": 12.705000, \"AREAWATER\": 0.683000, \"POP_CL\": 6, \"POP2000\": 11788, \"WHITE\": 6580, \"BLACK\": 4933, \"AMERI_ES\": 25, \"ASIAN\": 87, \"HAWN_PI\": 3, \"OTHER\": 75, \"MULT_RACE\": 85, \"HISPANIC\": 221, \"MALES\": 5353, \"FEMALES\": 6435, \"AGE_UNDER5\": 777, \"AGE_5_17\": 2179, \"AGE_18_21\": 1345, \"AGE_22_29\": 1155, \"AGE_30_39\": 1539, \"AGE_40_49\": 1549, \"AGE_50_64\": 1642, \"AGE_65_UP\": 1602, \"MED_AGE\": 33.100000, \"MED_AGE_M\": 29.900000, \"MED_AGE_F\": 35.600000, \"HOUSEHOLDS\": 4259, \"AVE_HH_SZ\": 2.520000, \"HSEHLD_1_M\": 393, \"HSEHLD_1_F\": 745, \"MARHH_CHD\": 750, \"MARHH_NO_C\": 1050, \"MHH_CHILD\": 64, \"FHH_CHILD\": 584, \"FAMILIES\": 2943, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 4783, \"VACANT\": 524, \"OWNER_OCC\": 2589, \"RENTER_OCC\": 1670 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.056104452317854, 33.838092974996357 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Dentsville\", \"CLASS\": \"CDP\", \"ST\": \"SC\", \"STFIPS\": \"45\", \"PLACEFIP\": \"19285\", \"CAPITAL\": \"N\", \"AREALAND\": 7.052000, \"AREAWATER\": 0.169000, \"POP_CL\": 6, \"POP2000\": 13009, \"WHITE\": 4690, \"BLACK\": 7581, \"AMERI_ES\": 27, \"ASIAN\": 330, \"HAWN_PI\": 6, \"OTHER\": 169, \"MULT_RACE\": 206, \"HISPANIC\": 377, \"MALES\": 5809, \"FEMALES\": 7200, \"AGE_UNDER5\": 721, \"AGE_5_17\": 2086, \"AGE_18_21\": 592, \"AGE_22_29\": 2008, \"AGE_30_39\": 2100, \"AGE_40_49\": 1982, \"AGE_50_64\": 1943, \"AGE_65_UP\": 1577, \"MED_AGE\": 35.100000, \"MED_AGE_M\": 33.100000, \"MED_AGE_F\": 36.900000, \"HOUSEHOLDS\": 5376, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 740, \"HSEHLD_1_F\": 989, \"MARHH_CHD\": 766, \"MARHH_NO_C\": 1281, \"MHH_CHILD\": 107, \"FHH_CHILD\": 571, \"FAMILIES\": 3292, \"AVE_FAM_SZ\": 2.910000, \"HSE_UNITS\": 5797, \"VACANT\": 421, \"OWNER_OCC\": 2542, \"RENTER_OCC\": 2834 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.955207807714018, 34.07540292967866 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Easley\", \"CLASS\": \"city\", \"ST\": \"SC\", \"STFIPS\": \"45\", \"PLACEFIP\": \"21985\", \"CAPITAL\": \"N\", \"AREALAND\": 10.639000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 17754, \"WHITE\": 15153, \"BLACK\": 2096, \"AMERI_ES\": 25, \"ASIAN\": 93, \"HAWN_PI\": 6, \"OTHER\": 222, \"MULT_RACE\": 159, \"HISPANIC\": 501, \"MALES\": 8511, \"FEMALES\": 9243, \"AGE_UNDER5\": 1205, \"AGE_5_17\": 2974, \"AGE_18_21\": 811, \"AGE_22_29\": 1989, \"AGE_30_39\": 2698, \"AGE_40_49\": 2532, \"AGE_50_64\": 2939, \"AGE_65_UP\": 2606, \"MED_AGE\": 37.100000, \"MED_AGE_M\": 35.200000, \"MED_AGE_F\": 38.800000, \"HOUSEHOLDS\": 7227, \"AVE_HH_SZ\": 2.430000, \"HSEHLD_1_M\": 701, \"HSEHLD_1_F\": 1154, \"MARHH_CHD\": 1581, \"MARHH_NO_C\": 2313, \"MHH_CHILD\": 128, \"FHH_CHILD\": 501, \"FAMILIES\": 5060, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 7932, \"VACANT\": 705, \"OWNER_OCC\": 4936, \"RENTER_OCC\": 2291 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.590394193219652, 34.823370955271002 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Florence\", \"CLASS\": \"city\", \"ST\": \"SC\", \"STFIPS\": \"45\", \"PLACEFIP\": \"25810\", \"CAPITAL\": \"N\", \"AREALAND\": 17.695000, \"AREAWATER\": 0.029000, \"POP_CL\": 6, \"POP2000\": 30248, \"WHITE\": 16020, \"BLACK\": 13541, \"AMERI_ES\": 54, \"ASIAN\": 352, \"HAWN_PI\": 4, \"OTHER\": 63, \"MULT_RACE\": 214, \"HISPANIC\": 229, \"MALES\": 13701, \"FEMALES\": 16547, \"AGE_UNDER5\": 1936, \"AGE_5_17\": 5632, \"AGE_18_21\": 1487, \"AGE_22_29\": 3244, \"AGE_30_39\": 4206, \"AGE_40_49\": 4525, \"AGE_50_64\": 4661, \"AGE_65_UP\": 4557, \"MED_AGE\": 36.800000, \"MED_AGE_M\": 35.000000, \"MED_AGE_F\": 38.500000, \"HOUSEHOLDS\": 11925, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 1330, \"HSEHLD_1_F\": 2189, \"MARHH_CHD\": 2114, \"MARHH_NO_C\": 2880, \"MHH_CHILD\": 162, \"FHH_CHILD\": 1320, \"FAMILIES\": 7878, \"AVE_FAM_SZ\": 3.030000, \"HSE_UNITS\": 13090, \"VACANT\": 1165, \"OWNER_OCC\": 7325, \"RENTER_OCC\": 4600 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.774149103084042, 34.184087934091174 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Forest Acres\", \"CLASS\": \"city\", \"ST\": \"SC\", \"STFIPS\": \"45\", \"PLACEFIP\": \"26305\", \"CAPITAL\": \"N\", \"AREALAND\": 4.589000, \"AREAWATER\": 0.412000, \"POP_CL\": 6, \"POP2000\": 10558, \"WHITE\": 8538, \"BLACK\": 1639, \"AMERI_ES\": 20, \"ASIAN\": 123, \"HAWN_PI\": 1, \"OTHER\": 108, \"MULT_RACE\": 129, \"HISPANIC\": 268, \"MALES\": 4730, \"FEMALES\": 5828, \"AGE_UNDER5\": 592, \"AGE_5_17\": 1513, \"AGE_18_21\": 351, \"AGE_22_29\": 1054, \"AGE_30_39\": 1374, \"AGE_40_49\": 1646, \"AGE_50_64\": 1686, \"AGE_65_UP\": 2342, \"MED_AGE\": 42.500000, \"MED_AGE_M\": 39.800000, \"MED_AGE_F\": 44.600000, \"HOUSEHOLDS\": 4987, \"AVE_HH_SZ\": 2.090000, \"HSEHLD_1_M\": 588, \"HSEHLD_1_F\": 1274, \"MARHH_CHD\": 807, \"MARHH_NO_C\": 1388, \"MHH_CHILD\": 46, \"FHH_CHILD\": 275, \"FAMILIES\": 2842, \"AVE_FAM_SZ\": 2.760000, \"HSE_UNITS\": 5232, \"VACANT\": 245, \"OWNER_OCC\": 3617, \"RENTER_OCC\": 1370 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.967446796211519, 34.038686930055988 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Gaffney\", \"CLASS\": \"city\", \"ST\": \"SC\", \"STFIPS\": \"45\", \"PLACEFIP\": \"28060\", \"CAPITAL\": \"N\", \"AREALAND\": 7.861000, \"AREAWATER\": 0.026000, \"POP_CL\": 6, \"POP2000\": 12968, \"WHITE\": 6935, \"BLACK\": 5730, \"AMERI_ES\": 19, \"ASIAN\": 59, \"HAWN_PI\": 4, \"OTHER\": 129, \"MULT_RACE\": 92, \"HISPANIC\": 257, \"MALES\": 5847, \"FEMALES\": 7121, \"AGE_UNDER5\": 805, \"AGE_5_17\": 2228, \"AGE_18_21\": 898, \"AGE_22_29\": 1363, \"AGE_30_39\": 1594, \"AGE_40_49\": 1767, \"AGE_50_64\": 2039, \"AGE_65_UP\": 2274, \"MED_AGE\": 37.500000, \"MED_AGE_M\": 35.000000, \"MED_AGE_F\": 40.100000, \"HOUSEHOLDS\": 5304, \"AVE_HH_SZ\": 2.320000, \"HSEHLD_1_M\": 675, \"HSEHLD_1_F\": 1091, \"MARHH_CHD\": 677, \"MARHH_NO_C\": 1289, \"MHH_CHILD\": 91, \"FHH_CHILD\": 651, \"FAMILIES\": 3335, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 5765, \"VACANT\": 461, \"OWNER_OCC\": 3222, \"RENTER_OCC\": 2082 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.653005488801597, 35.071937935019498 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Gantt\", \"CLASS\": \"CDP\", \"ST\": \"SC\", \"STFIPS\": \"45\", \"PLACEFIP\": \"28375\", \"CAPITAL\": \"N\", \"AREALAND\": 10.063000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 13962, \"WHITE\": 4728, \"BLACK\": 8810, \"AMERI_ES\": 20, \"ASIAN\": 47, \"HAWN_PI\": 7, \"OTHER\": 196, \"MULT_RACE\": 154, \"HISPANIC\": 419, \"MALES\": 6603, \"FEMALES\": 7359, \"AGE_UNDER5\": 981, \"AGE_5_17\": 2874, \"AGE_18_21\": 689, \"AGE_22_29\": 1363, \"AGE_30_39\": 2035, \"AGE_40_49\": 2168, \"AGE_50_64\": 2286, \"AGE_65_UP\": 1566, \"MED_AGE\": 35.600000, \"MED_AGE_M\": 34.100000, \"MED_AGE_F\": 36.800000, \"HOUSEHOLDS\": 5361, \"AVE_HH_SZ\": 2.600000, \"HSEHLD_1_M\": 585, \"HSEHLD_1_F\": 705, \"MARHH_CHD\": 939, \"MARHH_NO_C\": 1343, \"MHH_CHILD\": 147, \"FHH_CHILD\": 712, \"FAMILIES\": 3857, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 5793, \"VACANT\": 432, \"OWNER_OCC\": 3713, \"RENTER_OCC\": 1648 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.397938233327352, 34.781917951622717 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Goose Creek\", \"CLASS\": \"city\", \"ST\": \"SC\", \"STFIPS\": \"45\", \"PLACEFIP\": \"29815\", \"CAPITAL\": \"N\", \"AREALAND\": 31.692000, \"AREAWATER\": 0.773000, \"POP_CL\": 6, \"POP2000\": 29208, \"WHITE\": 22929, \"BLACK\": 4153, \"AMERI_ES\": 171, \"ASIAN\": 776, \"HAWN_PI\": 34, \"OTHER\": 455, \"MULT_RACE\": 690, \"HISPANIC\": 1182, \"MALES\": 15669, \"FEMALES\": 13539, \"AGE_UNDER5\": 2499, \"AGE_5_17\": 6143, \"AGE_18_21\": 3925, \"AGE_22_29\": 3859, \"AGE_30_39\": 4945, \"AGE_40_49\": 3674, \"AGE_50_64\": 2921, \"AGE_65_UP\": 1242, \"MED_AGE\": 26.300000, \"MED_AGE_M\": 23.500000, \"MED_AGE_F\": 29.400000, \"HOUSEHOLDS\": 8947, \"AVE_HH_SZ\": 2.940000, \"HSEHLD_1_M\": 545, \"HSEHLD_1_F\": 613, \"MARHH_CHD\": 3556, \"MARHH_NO_C\": 2608, \"MHH_CHILD\": 207, \"FHH_CHILD\": 680, \"FAMILIES\": 7443, \"AVE_FAM_SZ\": 3.220000, \"HSE_UNITS\": 9482, \"VACANT\": 535, \"OWNER_OCC\": 5677, \"RENTER_OCC\": 3270 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.028916536367575, 32.995521937237328 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Greenville\", \"CLASS\": \"city\", \"ST\": \"SC\", \"STFIPS\": \"45\", \"PLACEFIP\": \"30850\", \"CAPITAL\": \"N\", \"AREALAND\": 26.071000, \"AREAWATER\": 0.055000, \"POP_CL\": 7, \"POP2000\": 56002, \"WHITE\": 34788, \"BLACK\": 19008, \"AMERI_ES\": 77, \"ASIAN\": 709, \"HAWN_PI\": 35, \"OTHER\": 766, \"MULT_RACE\": 619, \"HISPANIC\": 1927, \"MALES\": 26506, \"FEMALES\": 29496, \"AGE_UNDER5\": 3140, \"AGE_5_17\": 8036, \"AGE_18_21\": 4581, \"AGE_22_29\": 8306, \"AGE_30_39\": 8398, \"AGE_40_49\": 7869, \"AGE_50_64\": 7591, \"AGE_65_UP\": 8081, \"MED_AGE\": 34.600000, \"MED_AGE_M\": 32.500000, \"MED_AGE_F\": 36.700000, \"HOUSEHOLDS\": 24382, \"AVE_HH_SZ\": 2.110000, \"HSEHLD_1_M\": 4086, \"HSEHLD_1_F\": 5871, \"MARHH_CHD\": 2995, \"MARHH_NO_C\": 4989, \"MHH_CHILD\": 295, \"FHH_CHILD\": 2137, \"FAMILIES\": 12573, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 27295, \"VACANT\": 2913, \"OWNER_OCC\": 11453, \"RENTER_OCC\": 12929 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.385428238095301, 34.844312951118198 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Greenwood\", \"CLASS\": \"city\", \"ST\": \"SC\", \"STFIPS\": \"45\", \"PLACEFIP\": \"30895\", \"CAPITAL\": \"N\", \"AREALAND\": 13.691000, \"AREAWATER\": 0.010000, \"POP_CL\": 6, \"POP2000\": 22071, \"WHITE\": 11057, \"BLACK\": 10044, \"AMERI_ES\": 43, \"ASIAN\": 191, \"HAWN_PI\": 15, \"OTHER\": 533, \"MULT_RACE\": 188, \"HISPANIC\": 1440, \"MALES\": 10244, \"FEMALES\": 11827, \"AGE_UNDER5\": 1609, \"AGE_5_17\": 3843, \"AGE_18_21\": 2153, \"AGE_22_29\": 2933, \"AGE_30_39\": 2908, \"AGE_40_49\": 2594, \"AGE_50_64\": 2676, \"AGE_65_UP\": 3355, \"MED_AGE\": 31.600000, \"MED_AGE_M\": 29.800000, \"MED_AGE_F\": 33.400000, \"HOUSEHOLDS\": 8496, \"AVE_HH_SZ\": 2.410000, \"HSEHLD_1_M\": 1111, \"HSEHLD_1_F\": 1640, \"MARHH_CHD\": 1200, \"MARHH_NO_C\": 1728, \"MHH_CHILD\": 167, \"FHH_CHILD\": 1059, \"FAMILIES\": 5172, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 9373, \"VACANT\": 877, \"OWNER_OCC\": 4329, \"RENTER_OCC\": 4167 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.154816275286365, 34.18975594932656 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Greer\", \"CLASS\": \"city\", \"ST\": \"SC\", \"STFIPS\": \"45\", \"PLACEFIP\": \"30985\", \"CAPITAL\": \"N\", \"AREALAND\": 16.126000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 16843, \"WHITE\": 12361, \"BLACK\": 3283, \"AMERI_ES\": 37, \"ASIAN\": 195, \"HAWN_PI\": 10, \"OTHER\": 744, \"MULT_RACE\": 213, \"HISPANIC\": 1377, \"MALES\": 8006, \"FEMALES\": 8837, \"AGE_UNDER5\": 1309, \"AGE_5_17\": 2873, \"AGE_18_21\": 851, \"AGE_22_29\": 2285, \"AGE_30_39\": 2847, \"AGE_40_49\": 2128, \"AGE_50_64\": 2259, \"AGE_65_UP\": 2291, \"MED_AGE\": 33.700000, \"MED_AGE_M\": 31.900000, \"MED_AGE_F\": 35.500000, \"HOUSEHOLDS\": 6714, \"AVE_HH_SZ\": 2.470000, \"HSEHLD_1_M\": 709, \"HSEHLD_1_F\": 1164, \"MARHH_CHD\": 1428, \"MARHH_NO_C\": 1731, \"MHH_CHILD\": 133, \"FHH_CHILD\": 577, \"FAMILIES\": 4510, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 7386, \"VACANT\": 672, \"OWNER_OCC\": 4111, \"RENTER_OCC\": 2603 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.225052281604547, 34.930303947489094 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hanahan\", \"CLASS\": \"city\", \"ST\": \"SC\", \"STFIPS\": \"45\", \"PLACEFIP\": \"32065\", \"CAPITAL\": \"N\", \"AREALAND\": 10.070000, \"AREAWATER\": 0.625000, \"POP_CL\": 6, \"POP2000\": 12937, \"WHITE\": 10563, \"BLACK\": 1645, \"AMERI_ES\": 46, \"ASIAN\": 264, \"HAWN_PI\": 6, \"OTHER\": 169, \"MULT_RACE\": 244, \"HISPANIC\": 410, \"MALES\": 6845, \"FEMALES\": 6092, \"AGE_UNDER5\": 681, \"AGE_5_17\": 2030, \"AGE_18_21\": 1013, \"AGE_22_29\": 1834, \"AGE_30_39\": 1944, \"AGE_40_49\": 1918, \"AGE_50_64\": 2034, \"AGE_65_UP\": 1483, \"MED_AGE\": 35.000000, \"MED_AGE_M\": 32.200000, \"MED_AGE_F\": 37.600000, \"HOUSEHOLDS\": 5243, \"AVE_HH_SZ\": 2.340000, \"HSEHLD_1_M\": 735, \"HSEHLD_1_F\": 717, \"MARHH_CHD\": 912, \"MARHH_NO_C\": 1503, \"MHH_CHILD\": 133, \"FHH_CHILD\": 419, \"FAMILIES\": 3339, \"AVE_FAM_SZ\": 2.840000, \"HSE_UNITS\": 5698, \"VACANT\": 455, \"OWNER_OCC\": 3007, \"RENTER_OCC\": 2236 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.99594856401383, 32.91694993829654 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hilton Head Island\", \"CLASS\": \"town\", \"ST\": \"SC\", \"STFIPS\": \"45\", \"PLACEFIP\": \"34045\", \"CAPITAL\": \"N\", \"AREALAND\": 42.061000, \"AREAWATER\": 13.493000, \"POP_CL\": 6, \"POP2000\": 33862, \"WHITE\": 28893, \"BLACK\": 2797, \"AMERI_ES\": 49, \"ASIAN\": 187, \"HAWN_PI\": 8, \"OTHER\": 1518, \"MULT_RACE\": 410, \"HISPANIC\": 3886, \"MALES\": 16947, \"FEMALES\": 16915, \"AGE_UNDER5\": 1502, \"AGE_5_17\": 4356, \"AGE_18_21\": 1250, \"AGE_22_29\": 3071, \"AGE_30_39\": 4183, \"AGE_40_49\": 4259, \"AGE_50_64\": 7091, \"AGE_65_UP\": 8150, \"MED_AGE\": 46.000000, \"MED_AGE_M\": 43.400000, \"MED_AGE_F\": 48.500000, \"HOUSEHOLDS\": 14408, \"AVE_HH_SZ\": 2.320000, \"HSEHLD_1_M\": 1246, \"HSEHLD_1_F\": 2188, \"MARHH_CHD\": 2315, \"MARHH_NO_C\": 6279, \"MHH_CHILD\": 170, \"FHH_CHILD\": 523, \"FAMILIES\": 9899, \"AVE_FAM_SZ\": 2.680000, \"HSE_UNITS\": 24647, \"VACANT\": 10239, \"OWNER_OCC\": 11191, \"RENTER_OCC\": 3217 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.74294778558162, 32.178827939335676 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Irmo\", \"CLASS\": \"town\", \"ST\": \"SC\", \"STFIPS\": \"45\", \"PLACEFIP\": \"35890\", \"CAPITAL\": \"N\", \"AREALAND\": 4.134000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11039, \"WHITE\": 8473, \"BLACK\": 2225, \"AMERI_ES\": 28, \"ASIAN\": 158, \"HAWN_PI\": 9, \"OTHER\": 49, \"MULT_RACE\": 97, \"HISPANIC\": 157, \"MALES\": 5338, \"FEMALES\": 5701, \"AGE_UNDER5\": 821, \"AGE_5_17\": 2564, \"AGE_18_21\": 459, \"AGE_22_29\": 931, \"AGE_30_39\": 2017, \"AGE_40_49\": 2110, \"AGE_50_64\": 1612, \"AGE_65_UP\": 525, \"MED_AGE\": 34.200000, \"MED_AGE_M\": 33.100000, \"MED_AGE_F\": 35.000000, \"HOUSEHOLDS\": 3911, \"AVE_HH_SZ\": 2.810000, \"HSEHLD_1_M\": 235, \"HSEHLD_1_F\": 366, \"MARHH_CHD\": 1451, \"MARHH_NO_C\": 1125, \"MHH_CHILD\": 70, \"FHH_CHILD\": 345, \"FAMILIES\": 3164, \"AVE_FAM_SZ\": 3.150000, \"HSE_UNITS\": 4066, \"VACANT\": 155, \"OWNER_OCC\": 3347, \"RENTER_OCC\": 564 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.18607366358907, 34.092628932574655 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ladson\", \"CLASS\": \"CDP\", \"ST\": \"SC\", \"STFIPS\": \"45\", \"PLACEFIP\": \"39220\", \"CAPITAL\": \"N\", \"AREALAND\": 8.608000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 13264, \"WHITE\": 9510, \"BLACK\": 2926, \"AMERI_ES\": 129, \"ASIAN\": 271, \"HAWN_PI\": 9, \"OTHER\": 172, \"MULT_RACE\": 247, \"HISPANIC\": 394, \"MALES\": 6608, \"FEMALES\": 6656, \"AGE_UNDER5\": 1004, \"AGE_5_17\": 3107, \"AGE_18_21\": 748, \"AGE_22_29\": 1513, \"AGE_30_39\": 2295, \"AGE_40_49\": 2159, \"AGE_50_64\": 1791, \"AGE_65_UP\": 647, \"MED_AGE\": 31.000000, \"MED_AGE_M\": 30.100000, \"MED_AGE_F\": 32.200000, \"HOUSEHOLDS\": 4571, \"AVE_HH_SZ\": 2.900000, \"HSEHLD_1_M\": 404, \"HSEHLD_1_F\": 321, \"MARHH_CHD\": 1368, \"MARHH_NO_C\": 1212, \"MHH_CHILD\": 158, \"FHH_CHILD\": 499, \"FAMILIES\": 3562, \"AVE_FAM_SZ\": 3.220000, \"HSE_UNITS\": 4863, \"VACANT\": 292, \"OWNER_OCC\": 3309, \"RENTER_OCC\": 1262 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.105554448466677, 33.009562936053655 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mauldin\", \"CLASS\": \"city\", \"ST\": \"SC\", \"STFIPS\": \"45\", \"PLACEFIP\": \"45115\", \"CAPITAL\": \"N\", \"AREALAND\": 8.615000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 15224, \"WHITE\": 11304, \"BLACK\": 3169, \"AMERI_ES\": 45, \"ASIAN\": 341, \"HAWN_PI\": 17, \"OTHER\": 149, \"MULT_RACE\": 199, \"HISPANIC\": 416, \"MALES\": 7346, \"FEMALES\": 7878, \"AGE_UNDER5\": 1102, \"AGE_5_17\": 2698, \"AGE_18_21\": 654, \"AGE_22_29\": 1856, \"AGE_30_39\": 2616, \"AGE_40_49\": 2385, \"AGE_50_64\": 2495, \"AGE_65_UP\": 1418, \"MED_AGE\": 34.800000, \"MED_AGE_M\": 33.800000, \"MED_AGE_F\": 35.900000, \"HOUSEHOLDS\": 6131, \"AVE_HH_SZ\": 2.460000, \"HSEHLD_1_M\": 705, \"HSEHLD_1_F\": 889, \"MARHH_CHD\": 1564, \"MARHH_NO_C\": 1855, \"MHH_CHILD\": 106, \"FHH_CHILD\": 410, \"FAMILIES\": 4241, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 6500, \"VACANT\": 369, \"OWNER_OCC\": 3957, \"RENTER_OCC\": 2174 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.300517256877967, 34.780853949670131 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mount Pleasant\", \"CLASS\": \"town\", \"ST\": \"SC\", \"STFIPS\": \"45\", \"PLACEFIP\": \"48535\", \"CAPITAL\": \"N\", \"AREALAND\": 41.891000, \"AREAWATER\": 7.647000, \"POP_CL\": 6, \"POP2000\": 47609, \"WHITE\": 42928, \"BLACK\": 3453, \"AMERI_ES\": 80, \"ASIAN\": 562, \"HAWN_PI\": 10, \"OTHER\": 187, \"MULT_RACE\": 389, \"HISPANIC\": 635, \"MALES\": 22811, \"FEMALES\": 24798, \"AGE_UNDER5\": 3548, \"AGE_5_17\": 8393, \"AGE_18_21\": 1468, \"AGE_22_29\": 5339, \"AGE_30_39\": 8780, \"AGE_40_49\": 8153, \"AGE_50_64\": 7028, \"AGE_65_UP\": 4900, \"MED_AGE\": 35.900000, \"MED_AGE_M\": 35.100000, \"MED_AGE_F\": 36.700000, \"HOUSEHOLDS\": 19025, \"AVE_HH_SZ\": 2.470000, \"HSEHLD_1_M\": 1803, \"HSEHLD_1_F\": 2774, \"MARHH_CHD\": 5294, \"MARHH_NO_C\": 5537, \"MHH_CHILD\": 211, \"FHH_CHILD\": 943, \"FAMILIES\": 12852, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 20197, \"VACANT\": 1172, \"OWNER_OCC\": 14069, \"RENTER_OCC\": 4956 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.845478741585211, 32.823188942016955 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Myrtle Beach\", \"CLASS\": \"city\", \"ST\": \"SC\", \"STFIPS\": \"45\", \"PLACEFIP\": \"49075\", \"CAPITAL\": \"N\", \"AREALAND\": 16.780000, \"AREAWATER\": 0.023000, \"POP_CL\": 6, \"POP2000\": 22759, \"WHITE\": 18472, \"BLACK\": 2903, \"AMERI_ES\": 95, \"ASIAN\": 291, \"HAWN_PI\": 29, \"OTHER\": 540, \"MULT_RACE\": 429, \"HISPANIC\": 1062, \"MALES\": 11547, \"FEMALES\": 11212, \"AGE_UNDER5\": 1154, \"AGE_5_17\": 2941, \"AGE_18_21\": 1204, \"AGE_22_29\": 3394, \"AGE_30_39\": 3837, \"AGE_40_49\": 3258, \"AGE_50_64\": 3558, \"AGE_65_UP\": 3413, \"MED_AGE\": 36.900000, \"MED_AGE_M\": 34.900000, \"MED_AGE_F\": 39.400000, \"HOUSEHOLDS\": 10413, \"AVE_HH_SZ\": 2.170000, \"HSEHLD_1_M\": 1626, \"HSEHLD_1_F\": 1927, \"MARHH_CHD\": 1264, \"MARHH_NO_C\": 2573, \"MHH_CHILD\": 187, \"FHH_CHILD\": 661, \"FAMILIES\": 5410, \"AVE_FAM_SZ\": 2.790000, \"HSE_UNITS\": 14658, \"VACANT\": 4245, \"OWNER_OCC\": 5399, \"RENTER_OCC\": 5014 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -78.875456876783943, 33.704237992661227 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Newberry\", \"CLASS\": \"town\", \"ST\": \"SC\", \"STFIPS\": \"45\", \"PLACEFIP\": \"49570\", \"CAPITAL\": \"N\", \"AREALAND\": 6.575000, \"AREAWATER\": 0.004000, \"POP_CL\": 6, \"POP2000\": 10580, \"WHITE\": 5592, \"BLACK\": 4376, \"AMERI_ES\": 50, \"ASIAN\": 64, \"HAWN_PI\": 13, \"OTHER\": 305, \"MULT_RACE\": 180, \"HISPANIC\": 1004, \"MALES\": 4902, \"FEMALES\": 5678, \"AGE_UNDER5\": 747, \"AGE_5_17\": 1723, \"AGE_18_21\": 1087, \"AGE_22_29\": 1267, \"AGE_30_39\": 1292, \"AGE_40_49\": 1248, \"AGE_50_64\": 1358, \"AGE_65_UP\": 1858, \"MED_AGE\": 33.800000, \"MED_AGE_M\": 29.800000, \"MED_AGE_F\": 37.600000, \"HOUSEHOLDS\": 3970, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 403, \"HSEHLD_1_F\": 856, \"MARHH_CHD\": 545, \"MARHH_NO_C\": 905, \"MHH_CHILD\": 69, \"FHH_CHILD\": 564, \"FAMILIES\": 2529, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 4388, \"VACANT\": 418, \"OWNER_OCC\": 2299, \"RENTER_OCC\": 1671 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.616560461881477, 34.277654938675639 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"North Augusta\", \"CLASS\": \"city\", \"ST\": \"SC\", \"STFIPS\": \"45\", \"PLACEFIP\": \"50695\", \"CAPITAL\": \"N\", \"AREALAND\": 17.201000, \"AREAWATER\": 0.362000, \"POP_CL\": 6, \"POP2000\": 17574, \"WHITE\": 13647, \"BLACK\": 3299, \"AMERI_ES\": 49, \"ASIAN\": 207, \"HAWN_PI\": 9, \"OTHER\": 178, \"MULT_RACE\": 185, \"HISPANIC\": 424, \"MALES\": 8252, \"FEMALES\": 9322, \"AGE_UNDER5\": 1282, \"AGE_5_17\": 3149, \"AGE_18_21\": 781, \"AGE_22_29\": 1933, \"AGE_30_39\": 2801, \"AGE_40_49\": 2649, \"AGE_50_64\": 2483, \"AGE_65_UP\": 2496, \"MED_AGE\": 35.900000, \"MED_AGE_M\": 34.800000, \"MED_AGE_F\": 37.000000, \"HOUSEHOLDS\": 7330, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 896, \"HSEHLD_1_F\": 1336, \"MARHH_CHD\": 1629, \"MARHH_NO_C\": 1947, \"MHH_CHILD\": 126, \"FHH_CHILD\": 625, \"FAMILIES\": 4763, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 7923, \"VACANT\": 593, \"OWNER_OCC\": 4794, \"RENTER_OCC\": 2536 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.96264030474336, 33.512934948721224 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"North Charleston\", \"CLASS\": \"city\", \"ST\": \"SC\", \"STFIPS\": \"45\", \"PLACEFIP\": \"50875\", \"CAPITAL\": \"N\", \"AREALAND\": 58.535000, \"AREAWATER\": 3.540000, \"POP_CL\": 7, \"POP2000\": 79641, \"WHITE\": 35651, \"BLACK\": 39348, \"AMERI_ES\": 349, \"ASIAN\": 1263, \"HAWN_PI\": 75, \"OTHER\": 1417, \"MULT_RACE\": 1538, \"HISPANIC\": 3163, \"MALES\": 39435, \"FEMALES\": 40206, \"AGE_UNDER5\": 6404, \"AGE_5_17\": 15792, \"AGE_18_21\": 6021, \"AGE_22_29\": 11764, \"AGE_30_39\": 12642, \"AGE_40_49\": 10544, \"AGE_50_64\": 9269, \"AGE_65_UP\": 7205, \"MED_AGE\": 29.900000, \"MED_AGE_M\": 28.800000, \"MED_AGE_F\": 31.000000, \"HOUSEHOLDS\": 29783, \"AVE_HH_SZ\": 2.510000, \"HSEHLD_1_M\": 4331, \"HSEHLD_1_F\": 4177, \"MARHH_CHD\": 4936, \"MARHH_NO_C\": 5786, \"MHH_CHILD\": 726, \"FHH_CHILD\": 4571, \"FAMILIES\": 18980, \"AVE_FAM_SZ\": 3.100000, \"HSE_UNITS\": 33631, \"VACANT\": 3848, \"OWNER_OCC\": 13821, \"RENTER_OCC\": 15962 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.016882533612005, 32.885378938148804 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"North Myrtle Beach\", \"CLASS\": \"city\", \"ST\": \"SC\", \"STFIPS\": \"45\", \"PLACEFIP\": \"51280\", \"CAPITAL\": \"N\", \"AREALAND\": 13.039000, \"AREAWATER\": 0.468000, \"POP_CL\": 6, \"POP2000\": 10974, \"WHITE\": 10370, \"BLACK\": 253, \"AMERI_ES\": 52, \"ASIAN\": 70, \"HAWN_PI\": 15, \"OTHER\": 116, \"MULT_RACE\": 98, \"HISPANIC\": 259, \"MALES\": 5473, \"FEMALES\": 5501, \"AGE_UNDER5\": 433, \"AGE_5_17\": 1076, \"AGE_18_21\": 355, \"AGE_22_29\": 979, \"AGE_30_39\": 1447, \"AGE_40_49\": 1504, \"AGE_50_64\": 2817, \"AGE_65_UP\": 2363, \"MED_AGE\": 48.100000, \"MED_AGE_M\": 46.200000, \"MED_AGE_F\": 49.700000, \"HOUSEHOLDS\": 5406, \"AVE_HH_SZ\": 2.030000, \"HSEHLD_1_M\": 848, \"HSEHLD_1_F\": 949, \"MARHH_CHD\": 556, \"MARHH_NO_C\": 2013, \"MHH_CHILD\": 81, \"FHH_CHILD\": 181, \"FAMILIES\": 3129, \"AVE_FAM_SZ\": 2.530000, \"HSE_UNITS\": 18091, \"VACANT\": 12685, \"OWNER_OCC\": 3892, \"RENTER_OCC\": 1514 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -78.680978489861758, 33.822216014278986 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Orangeburg\", \"CLASS\": \"city\", \"ST\": \"SC\", \"STFIPS\": \"45\", \"PLACEFIP\": \"53080\", \"CAPITAL\": \"N\", \"AREALAND\": 8.294000, \"AREAWATER\": 0.010000, \"POP_CL\": 6, \"POP2000\": 12765, \"WHITE\": 3801, \"BLACK\": 8618, \"AMERI_ES\": 17, \"ASIAN\": 145, \"HAWN_PI\": 5, \"OTHER\": 101, \"MULT_RACE\": 78, \"HISPANIC\": 165, \"MALES\": 5519, \"FEMALES\": 7246, \"AGE_UNDER5\": 699, \"AGE_5_17\": 1559, \"AGE_18_21\": 2668, \"AGE_22_29\": 1789, \"AGE_30_39\": 1233, \"AGE_40_49\": 1260, \"AGE_50_64\": 1618, \"AGE_65_UP\": 1939, \"MED_AGE\": 27.700000, \"MED_AGE_M\": 27.400000, \"MED_AGE_F\": 27.900000, \"HOUSEHOLDS\": 4512, \"AVE_HH_SZ\": 2.230000, \"HSEHLD_1_M\": 592, \"HSEHLD_1_F\": 995, \"MARHH_CHD\": 534, \"MARHH_NO_C\": 978, \"MHH_CHILD\": 59, \"FHH_CHILD\": 481, \"FAMILIES\": 2527, \"AVE_FAM_SZ\": 2.880000, \"HSE_UNITS\": 5168, \"VACANT\": 656, \"OWNER_OCC\": 2383, \"RENTER_OCC\": 2129 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.862206821099008, 33.496842932436486 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Parker\", \"CLASS\": \"CDP\", \"ST\": \"SC\", \"STFIPS\": \"45\", \"PLACEFIP\": \"54535\", \"CAPITAL\": \"N\", \"AREALAND\": 6.899000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10760, \"WHITE\": 8493, \"BLACK\": 1788, \"AMERI_ES\": 30, \"ASIAN\": 32, \"HAWN_PI\": 6, \"OTHER\": 258, \"MULT_RACE\": 153, \"HISPANIC\": 684, \"MALES\": 5136, \"FEMALES\": 5624, \"AGE_UNDER5\": 733, \"AGE_5_17\": 1933, \"AGE_18_21\": 574, \"AGE_22_29\": 1242, \"AGE_30_39\": 1580, \"AGE_40_49\": 1429, \"AGE_50_64\": 1608, \"AGE_65_UP\": 1661, \"MED_AGE\": 35.700000, \"MED_AGE_M\": 33.800000, \"MED_AGE_F\": 37.800000, \"HOUSEHOLDS\": 4255, \"AVE_HH_SZ\": 2.480000, \"HSEHLD_1_M\": 485, \"HSEHLD_1_F\": 723, \"MARHH_CHD\": 727, \"MARHH_NO_C\": 1072, \"MHH_CHILD\": 150, \"FHH_CHILD\": 353, \"FAMILIES\": 2821, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 4824, \"VACANT\": 569, \"OWNER_OCC\": 2658, \"RENTER_OCC\": 1597 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.439776225820864, 34.853636952172025 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Red Hill\", \"CLASS\": \"CDP\", \"ST\": \"SC\", \"STFIPS\": \"45\", \"PLACEFIP\": \"59190\", \"CAPITAL\": \"N\", \"AREALAND\": 10.931000, \"AREAWATER\": 0.087000, \"POP_CL\": 6, \"POP2000\": 10509, \"WHITE\": 9321, \"BLACK\": 771, \"AMERI_ES\": 62, \"ASIAN\": 82, \"HAWN_PI\": 8, \"OTHER\": 128, \"MULT_RACE\": 137, \"HISPANIC\": 327, \"MALES\": 5115, \"FEMALES\": 5394, \"AGE_UNDER5\": 628, \"AGE_5_17\": 1846, \"AGE_18_21\": 592, \"AGE_22_29\": 1030, \"AGE_30_39\": 1640, \"AGE_40_49\": 1429, \"AGE_50_64\": 1795, \"AGE_65_UP\": 1549, \"MED_AGE\": 37.300000, \"MED_AGE_M\": 36.100000, \"MED_AGE_F\": 38.200000, \"HOUSEHOLDS\": 4189, \"AVE_HH_SZ\": 2.500000, \"HSEHLD_1_M\": 337, \"HSEHLD_1_F\": 477, \"MARHH_CHD\": 907, \"MARHH_NO_C\": 1528, \"MHH_CHILD\": 83, \"FHH_CHILD\": 323, \"FAMILIES\": 3067, \"AVE_FAM_SZ\": 2.830000, \"HSE_UNITS\": 5026, \"VACANT\": 837, \"OWNER_OCC\": 3296, \"RENTER_OCC\": 893 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.013718542067167, 33.78836797896605 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Rock Hill\", \"CLASS\": \"city\", \"ST\": \"SC\", \"STFIPS\": \"45\", \"PLACEFIP\": \"61405\", \"CAPITAL\": \"N\", \"AREALAND\": 31.028000, \"AREAWATER\": 0.030000, \"POP_CL\": 6, \"POP2000\": 49765, \"WHITE\": 29230, \"BLACK\": 18578, \"AMERI_ES\": 248, \"ASIAN\": 690, \"HAWN_PI\": 13, \"OTHER\": 509, \"MULT_RACE\": 497, \"HISPANIC\": 1236, \"MALES\": 22790, \"FEMALES\": 26975, \"AGE_UNDER5\": 3507, \"AGE_5_17\": 8965, \"AGE_18_21\": 4629, \"AGE_22_29\": 6933, \"AGE_30_39\": 7566, \"AGE_40_49\": 6464, \"AGE_50_64\": 6094, \"AGE_65_UP\": 5607, \"MED_AGE\": 31.000000, \"MED_AGE_M\": 30.200000, \"MED_AGE_F\": 31.800000, \"HOUSEHOLDS\": 18750, \"AVE_HH_SZ\": 2.490000, \"HSEHLD_1_M\": 2073, \"HSEHLD_1_F\": 3081, \"MARHH_CHD\": 3544, \"MARHH_NO_C\": 4265, \"MHH_CHILD\": 397, \"FHH_CHILD\": 2086, \"FAMILIES\": 12100, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 20287, \"VACANT\": 1537, \"OWNER_OCC\": 10008, \"RENTER_OCC\": 8742 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.026080833231134, 34.938093924807731 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"St. Andrews\", \"CLASS\": \"CDP\", \"ST\": \"SC\", \"STFIPS\": \"45\", \"PLACEFIP\": \"62395\", \"CAPITAL\": \"N\", \"AREALAND\": 6.886000, \"AREAWATER\": 0.007000, \"POP_CL\": 6, \"POP2000\": 21814, \"WHITE\": 9392, \"BLACK\": 11493, \"AMERI_ES\": 55, \"ASIAN\": 400, \"HAWN_PI\": 15, \"OTHER\": 181, \"MULT_RACE\": 278, \"HISPANIC\": 431, \"MALES\": 10106, \"FEMALES\": 11708, \"AGE_UNDER5\": 1502, \"AGE_5_17\": 3132, \"AGE_18_21\": 1563, \"AGE_22_29\": 4696, \"AGE_30_39\": 3703, \"AGE_40_49\": 2865, \"AGE_50_64\": 2484, \"AGE_65_UP\": 1869, \"MED_AGE\": 30.000000, \"MED_AGE_M\": 29.300000, \"MED_AGE_F\": 30.700000, \"HOUSEHOLDS\": 10497, \"AVE_HH_SZ\": 2.070000, \"HSEHLD_1_M\": 1840, \"HSEHLD_1_F\": 2409, \"MARHH_CHD\": 1194, \"MARHH_NO_C\": 1827, \"MHH_CHILD\": 200, \"FHH_CHILD\": 1134, \"FAMILIES\": 5095, \"AVE_FAM_SZ\": 2.830000, \"HSE_UNITS\": 11398, \"VACANT\": 901, \"OWNER_OCC\": 3755, \"RENTER_OCC\": 6742 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.097854712446818, 34.043550931646912 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Seven Oaks\", \"CLASS\": \"CDP\", \"ST\": \"SC\", \"STFIPS\": \"45\", \"PLACEFIP\": \"65207\", \"CAPITAL\": \"N\", \"AREALAND\": 7.847000, \"AREAWATER\": 0.107000, \"POP_CL\": 6, \"POP2000\": 15755, \"WHITE\": 11582, \"BLACK\": 3388, \"AMERI_ES\": 52, \"ASIAN\": 442, \"HAWN_PI\": 9, \"OTHER\": 92, \"MULT_RACE\": 190, \"HISPANIC\": 298, \"MALES\": 7418, \"FEMALES\": 8337, \"AGE_UNDER5\": 1017, \"AGE_5_17\": 2654, \"AGE_18_21\": 732, \"AGE_22_29\": 2023, \"AGE_30_39\": 2399, \"AGE_40_49\": 2317, \"AGE_50_64\": 2833, \"AGE_65_UP\": 1780, \"MED_AGE\": 36.200000, \"MED_AGE_M\": 34.800000, \"MED_AGE_F\": 37.600000, \"HOUSEHOLDS\": 6633, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 676, \"HSEHLD_1_F\": 1174, \"MARHH_CHD\": 1428, \"MARHH_NO_C\": 1924, \"MHH_CHILD\": 91, \"FHH_CHILD\": 495, \"FAMILIES\": 4328, \"AVE_FAM_SZ\": 2.890000, \"HSE_UNITS\": 6979, \"VACANT\": 346, \"OWNER_OCC\": 4046, \"RENTER_OCC\": 2587 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.141948686226542, 34.049199932213114 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Simpsonville\", \"CLASS\": \"city\", \"ST\": \"SC\", \"STFIPS\": \"45\", \"PLACEFIP\": \"66580\", \"CAPITAL\": \"N\", \"AREALAND\": 6.224000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14352, \"WHITE\": 11867, \"BLACK\": 1975, \"AMERI_ES\": 33, \"ASIAN\": 113, \"HAWN_PI\": 6, \"OTHER\": 176, \"MULT_RACE\": 182, \"HISPANIC\": 667, \"MALES\": 7065, \"FEMALES\": 7287, \"AGE_UNDER5\": 1107, \"AGE_5_17\": 2962, \"AGE_18_21\": 668, \"AGE_22_29\": 1572, \"AGE_30_39\": 2620, \"AGE_40_49\": 2319, \"AGE_50_64\": 2022, \"AGE_65_UP\": 1082, \"MED_AGE\": 33.500000, \"MED_AGE_M\": 32.500000, \"MED_AGE_F\": 34.500000, \"HOUSEHOLDS\": 5391, \"AVE_HH_SZ\": 2.660000, \"HSEHLD_1_M\": 544, \"HSEHLD_1_F\": 583, \"MARHH_CHD\": 1623, \"MARHH_NO_C\": 1537, \"MHH_CHILD\": 113, \"FHH_CHILD\": 417, \"FAMILIES\": 4021, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 5636, \"VACANT\": 245, \"OWNER_OCC\": 3798, \"RENTER_OCC\": 1593 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.260001265722906, 34.733374949055388 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Socastee\", \"CLASS\": \"CDP\", \"ST\": \"SC\", \"STFIPS\": \"45\", \"PLACEFIP\": \"67390\", \"CAPITAL\": \"N\", \"AREALAND\": 13.371000, \"AREAWATER\": 0.531000, \"POP_CL\": 6, \"POP2000\": 14295, \"WHITE\": 12410, \"BLACK\": 1002, \"AMERI_ES\": 50, \"ASIAN\": 300, \"HAWN_PI\": 18, \"OTHER\": 288, \"MULT_RACE\": 227, \"HISPANIC\": 666, \"MALES\": 7217, \"FEMALES\": 7078, \"AGE_UNDER5\": 916, \"AGE_5_17\": 2563, \"AGE_18_21\": 766, \"AGE_22_29\": 1821, \"AGE_30_39\": 2628, \"AGE_40_49\": 2242, \"AGE_50_64\": 2163, \"AGE_65_UP\": 1196, \"MED_AGE\": 34.200000, \"MED_AGE_M\": 33.500000, \"MED_AGE_F\": 35.000000, \"HOUSEHOLDS\": 5593, \"AVE_HH_SZ\": 2.540000, \"HSEHLD_1_M\": 638, \"HSEHLD_1_F\": 629, \"MARHH_CHD\": 1280, \"MARHH_NO_C\": 1653, \"MHH_CHILD\": 159, \"FHH_CHILD\": 415, \"FAMILIES\": 3819, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 6356, \"VACANT\": 763, \"OWNER_OCC\": 4011, \"RENTER_OCC\": 1582 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -78.99259156201866, 33.686243981515716 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Spartanburg\", \"CLASS\": \"city\", \"ST\": \"SC\", \"STFIPS\": \"45\", \"PLACEFIP\": \"68290\", \"CAPITAL\": \"N\", \"AREALAND\": 19.154000, \"AREAWATER\": 0.094000, \"POP_CL\": 6, \"POP2000\": 39673, \"WHITE\": 18707, \"BLACK\": 19658, \"AMERI_ES\": 73, \"ASIAN\": 528, \"HAWN_PI\": 22, \"OTHER\": 303, \"MULT_RACE\": 382, \"HISPANIC\": 706, \"MALES\": 17585, \"FEMALES\": 22088, \"AGE_UNDER5\": 2588, \"AGE_5_17\": 7422, \"AGE_18_21\": 3174, \"AGE_22_29\": 4258, \"AGE_30_39\": 5182, \"AGE_40_49\": 5517, \"AGE_50_64\": 5408, \"AGE_65_UP\": 6124, \"MED_AGE\": 34.700000, \"MED_AGE_M\": 32.600000, \"MED_AGE_F\": 36.300000, \"HOUSEHOLDS\": 15989, \"AVE_HH_SZ\": 2.330000, \"HSEHLD_1_M\": 1989, \"HSEHLD_1_F\": 3449, \"MARHH_CHD\": 2070, \"MARHH_NO_C\": 3366, \"MHH_CHILD\": 274, \"FHH_CHILD\": 2281, \"FAMILIES\": 9717, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 17696, \"VACANT\": 1707, \"OWNER_OCC\": 7961, \"RENTER_OCC\": 8028 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.927603374484818, 34.946770941278523 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Summerville\", \"CLASS\": \"town\", \"ST\": \"SC\", \"STFIPS\": \"45\", \"PLACEFIP\": \"70270\", \"CAPITAL\": \"N\", \"AREALAND\": 15.360000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 27752, \"WHITE\": 21421, \"BLACK\": 5379, \"AMERI_ES\": 129, \"ASIAN\": 248, \"HAWN_PI\": 16, \"OTHER\": 186, \"MULT_RACE\": 373, \"HISPANIC\": 547, \"MALES\": 13156, \"FEMALES\": 14596, \"AGE_UNDER5\": 1932, \"AGE_5_17\": 6037, \"AGE_18_21\": 1240, \"AGE_22_29\": 2796, \"AGE_30_39\": 4534, \"AGE_40_49\": 4353, \"AGE_50_64\": 3920, \"AGE_65_UP\": 2940, \"MED_AGE\": 34.400000, \"MED_AGE_M\": 32.700000, \"MED_AGE_F\": 35.800000, \"HOUSEHOLDS\": 10391, \"AVE_HH_SZ\": 2.610000, \"HSEHLD_1_M\": 911, \"HSEHLD_1_F\": 1482, \"MARHH_CHD\": 2876, \"MARHH_NO_C\": 2842, \"MHH_CHILD\": 215, \"FHH_CHILD\": 972, \"FAMILIES\": 7525, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 11087, \"VACANT\": 696, \"OWNER_OCC\": 6827, \"RENTER_OCC\": 3564 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.182892362080509, 33.008153935198344 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sumter\", \"CLASS\": \"city\", \"ST\": \"SC\", \"STFIPS\": \"45\", \"PLACEFIP\": \"70405\", \"CAPITAL\": \"N\", \"AREALAND\": 26.585000, \"AREAWATER\": 0.165000, \"POP_CL\": 6, \"POP2000\": 39643, \"WHITE\": 19655, \"BLACK\": 18357, \"AMERI_ES\": 93, \"ASIAN\": 505, \"HAWN_PI\": 28, \"OTHER\": 445, \"MULT_RACE\": 560, \"HISPANIC\": 938, \"MALES\": 18693, \"FEMALES\": 20950, \"AGE_UNDER5\": 3213, \"AGE_5_17\": 7826, \"AGE_18_21\": 2983, \"AGE_22_29\": 4698, \"AGE_30_39\": 5778, \"AGE_40_49\": 4969, \"AGE_50_64\": 4817, \"AGE_65_UP\": 5359, \"MED_AGE\": 31.900000, \"MED_AGE_M\": 29.600000, \"MED_AGE_F\": 34.100000, \"HOUSEHOLDS\": 14564, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 1555, \"HSEHLD_1_F\": 2426, \"MARHH_CHD\": 3294, \"MARHH_NO_C\": 3404, \"MHH_CHILD\": 259, \"FHH_CHILD\": 1628, \"FAMILIES\": 10052, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 16032, \"VACANT\": 1468, \"OWNER_OCC\": 7734, \"RENTER_OCC\": 6830 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.363542295546239, 33.926941927697989 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Taylors\", \"CLASS\": \"CDP\", \"ST\": \"SC\", \"STFIPS\": \"45\", \"PLACEFIP\": \"71395\", \"CAPITAL\": \"N\", \"AREALAND\": 10.856000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 20125, \"WHITE\": 16420, \"BLACK\": 2856, \"AMERI_ES\": 49, \"ASIAN\": 305, \"HAWN_PI\": 7, \"OTHER\": 224, \"MULT_RACE\": 264, \"HISPANIC\": 586, \"MALES\": 9743, \"FEMALES\": 10382, \"AGE_UNDER5\": 1398, \"AGE_5_17\": 3779, \"AGE_18_21\": 855, \"AGE_22_29\": 2337, \"AGE_30_39\": 3147, \"AGE_40_49\": 3186, \"AGE_50_64\": 3329, \"AGE_65_UP\": 2094, \"MED_AGE\": 35.600000, \"MED_AGE_M\": 34.500000, \"MED_AGE_F\": 36.600000, \"HOUSEHOLDS\": 7978, \"AVE_HH_SZ\": 2.520000, \"HSEHLD_1_M\": 767, \"HSEHLD_1_F\": 1098, \"MARHH_CHD\": 1968, \"MARHH_NO_C\": 2535, \"MHH_CHILD\": 90, \"FHH_CHILD\": 677, \"FAMILIES\": 5719, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 8550, \"VACANT\": 572, \"OWNER_OCC\": 5501, \"RENTER_OCC\": 2477 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.310817258471189, 34.913235949319272 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wade Hampton\", \"CLASS\": \"CDP\", \"ST\": \"SC\", \"STFIPS\": \"45\", \"PLACEFIP\": \"73870\", \"CAPITAL\": \"N\", \"AREALAND\": 8.775000, \"AREAWATER\": 0.049000, \"POP_CL\": 6, \"POP2000\": 20458, \"WHITE\": 17359, \"BLACK\": 1652, \"AMERI_ES\": 36, \"ASIAN\": 683, \"HAWN_PI\": 13, \"OTHER\": 488, \"MULT_RACE\": 227, \"HISPANIC\": 1255, \"MALES\": 9901, \"FEMALES\": 10557, \"AGE_UNDER5\": 1053, \"AGE_5_17\": 2825, \"AGE_18_21\": 973, \"AGE_22_29\": 2613, \"AGE_30_39\": 2827, \"AGE_40_49\": 2892, \"AGE_50_64\": 3555, \"AGE_65_UP\": 3720, \"MED_AGE\": 39.800000, \"MED_AGE_M\": 37.100000, \"MED_AGE_F\": 42.200000, \"HOUSEHOLDS\": 9210, \"AVE_HH_SZ\": 2.210000, \"HSEHLD_1_M\": 1191, \"HSEHLD_1_F\": 1820, \"MARHH_CHD\": 1557, \"MARHH_NO_C\": 2992, \"MHH_CHILD\": 114, \"FHH_CHILD\": 434, \"FAMILIES\": 5649, \"AVE_FAM_SZ\": 2.810000, \"HSE_UNITS\": 9793, \"VACANT\": 583, \"OWNER_OCC\": 5518, \"RENTER_OCC\": 3692 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.333227251906081, 34.883083949902364 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"West Columbia\", \"CLASS\": \"city\", \"ST\": \"SC\", \"STFIPS\": \"45\", \"PLACEFIP\": \"75850\", \"CAPITAL\": \"N\", \"AREALAND\": 6.075000, \"AREAWATER\": 0.201000, \"POP_CL\": 6, \"POP2000\": 13064, \"WHITE\": 9738, \"BLACK\": 2588, \"AMERI_ES\": 36, \"ASIAN\": 223, \"HAWN_PI\": 2, \"OTHER\": 267, \"MULT_RACE\": 210, \"HISPANIC\": 609, \"MALES\": 6135, \"FEMALES\": 6929, \"AGE_UNDER5\": 797, \"AGE_5_17\": 1657, \"AGE_18_21\": 631, \"AGE_22_29\": 1807, \"AGE_30_39\": 1895, \"AGE_40_49\": 1761, \"AGE_50_64\": 2033, \"AGE_65_UP\": 2483, \"MED_AGE\": 38.700000, \"MED_AGE_M\": 36.500000, \"MED_AGE_F\": 41.200000, \"HOUSEHOLDS\": 5968, \"AVE_HH_SZ\": 2.130000, \"HSEHLD_1_M\": 854, \"HSEHLD_1_F\": 1302, \"MARHH_CHD\": 713, \"MARHH_NO_C\": 1526, \"MHH_CHILD\": 81, \"FHH_CHILD\": 516, \"FAMILIES\": 3302, \"AVE_FAM_SZ\": 2.760000, \"HSE_UNITS\": 6436, \"VACANT\": 468, \"OWNER_OCC\": 3239, \"RENTER_OCC\": 2729 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.079765719332983, 33.988802931749305 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Aberdeen\", \"CLASS\": \"city\", \"ST\": \"SD\", \"STFIPS\": \"46\", \"PLACEFIP\": \"00100\", \"CAPITAL\": \"N\", \"AREALAND\": 12.964000, \"AREAWATER\": 0.067000, \"POP_CL\": 6, \"POP2000\": 24658, \"WHITE\": 23328, \"BLACK\": 92, \"AMERI_ES\": 782, \"ASIAN\": 133, \"HAWN_PI\": 31, \"OTHER\": 48, \"MULT_RACE\": 244, \"HISPANIC\": 196, \"MALES\": 11625, \"FEMALES\": 13033, \"AGE_UNDER5\": 1543, \"AGE_5_17\": 3841, \"AGE_18_21\": 2238, \"AGE_22_29\": 2809, \"AGE_30_39\": 3130, \"AGE_40_49\": 3467, \"AGE_50_64\": 3379, \"AGE_65_UP\": 4251, \"MED_AGE\": 36.500000, \"MED_AGE_M\": 34.500000, \"MED_AGE_F\": 38.200000, \"HOUSEHOLDS\": 10553, \"AVE_HH_SZ\": 2.210000, \"HSEHLD_1_M\": 1452, \"HSEHLD_1_F\": 2232, \"MARHH_CHD\": 2076, \"MARHH_NO_C\": 2887, \"MHH_CHILD\": 172, \"FHH_CHILD\": 636, \"FAMILIES\": 6179, \"AVE_FAM_SZ\": 2.860000, \"HSE_UNITS\": 11259, \"VACANT\": 706, \"OWNER_OCC\": 6249, \"RENTER_OCC\": 4304 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -98.481290998956425, 45.463707997688054 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Brookings\", \"CLASS\": \"city\", \"ST\": \"SD\", \"STFIPS\": \"46\", \"PLACEFIP\": \"07580\", \"CAPITAL\": \"N\", \"AREALAND\": 11.941000, \"AREAWATER\": 0.069000, \"POP_CL\": 6, \"POP2000\": 18504, \"WHITE\": 17670, \"BLACK\": 81, \"AMERI_ES\": 184, \"ASIAN\": 348, \"HAWN_PI\": 10, \"OTHER\": 49, \"MULT_RACE\": 162, \"HISPANIC\": 139, \"MALES\": 9240, \"FEMALES\": 9264, \"AGE_UNDER5\": 959, \"AGE_5_17\": 2266, \"AGE_18_21\": 4626, \"AGE_22_29\": 3433, \"AGE_30_39\": 1818, \"AGE_40_49\": 1918, \"AGE_50_64\": 1650, \"AGE_65_UP\": 1834, \"MED_AGE\": 23.500000, \"MED_AGE_M\": 23.400000, \"MED_AGE_F\": 23.600000, \"HOUSEHOLDS\": 6971, \"AVE_HH_SZ\": 2.260000, \"HSEHLD_1_M\": 1123, \"HSEHLD_1_F\": 1278, \"MARHH_CHD\": 1286, \"MARHH_NO_C\": 1468, \"MHH_CHILD\": 87, \"FHH_CHILD\": 366, \"FAMILIES\": 3420, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 7359, \"VACANT\": 388, \"OWNER_OCC\": 3238, \"RENTER_OCC\": 3733 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.788104999999234, 44.306252999750349 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Huron\", \"CLASS\": \"city\", \"ST\": \"SD\", \"STFIPS\": \"46\", \"PLACEFIP\": \"31060\", \"CAPITAL\": \"N\", \"AREALAND\": 8.210000, \"AREAWATER\": 0.127000, \"POP_CL\": 6, \"POP2000\": 11893, \"WHITE\": 11408, \"BLACK\": 114, \"AMERI_ES\": 153, \"ASIAN\": 50, \"HAWN_PI\": 3, \"OTHER\": 42, \"MULT_RACE\": 123, \"HISPANIC\": 143, \"MALES\": 5687, \"FEMALES\": 6206, \"AGE_UNDER5\": 670, \"AGE_5_17\": 2107, \"AGE_18_21\": 657, \"AGE_22_29\": 994, \"AGE_30_39\": 1460, \"AGE_40_49\": 1718, \"AGE_50_64\": 1789, \"AGE_65_UP\": 2498, \"MED_AGE\": 40.300000, \"MED_AGE_M\": 38.300000, \"MED_AGE_F\": 42.200000, \"HOUSEHOLDS\": 5263, \"AVE_HH_SZ\": 2.180000, \"HSEHLD_1_M\": 792, \"HSEHLD_1_F\": 1170, \"MARHH_CHD\": 995, \"MARHH_NO_C\": 1456, \"MHH_CHILD\": 98, \"FHH_CHILD\": 297, \"FAMILIES\": 3049, \"AVE_FAM_SZ\": 2.860000, \"HSE_UNITS\": 5872, \"VACANT\": 609, \"OWNER_OCC\": 3311, \"RENTER_OCC\": 1952 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -98.218151999497422, 44.359144998339133 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mitchell\", \"CLASS\": \"city\", \"ST\": \"SD\", \"STFIPS\": \"46\", \"PLACEFIP\": \"43100\", \"CAPITAL\": \"N\", \"AREALAND\": 9.865000, \"AREAWATER\": 1.006000, \"POP_CL\": 6, \"POP2000\": 14558, \"WHITE\": 13922, \"BLACK\": 47, \"AMERI_ES\": 350, \"ASIAN\": 66, \"HAWN_PI\": 4, \"OTHER\": 42, \"MULT_RACE\": 127, \"HISPANIC\": 112, \"MALES\": 6973, \"FEMALES\": 7585, \"AGE_UNDER5\": 965, \"AGE_5_17\": 2537, \"AGE_18_21\": 1275, \"AGE_22_29\": 1575, \"AGE_30_39\": 1761, \"AGE_40_49\": 2005, \"AGE_50_64\": 1875, \"AGE_65_UP\": 2565, \"MED_AGE\": 35.700000, \"MED_AGE_M\": 32.500000, \"MED_AGE_F\": 38.600000, \"HOUSEHOLDS\": 6121, \"AVE_HH_SZ\": 2.270000, \"HSEHLD_1_M\": 824, \"HSEHLD_1_F\": 1273, \"MARHH_CHD\": 1247, \"MARHH_NO_C\": 1606, \"MHH_CHILD\": 132, \"FHH_CHILD\": 387, \"FAMILIES\": 3600, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 6555, \"VACANT\": 434, \"OWNER_OCC\": 3459, \"RENTER_OCC\": 2662 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -98.026281999725001, 43.713895998703713 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pierre\", \"CLASS\": \"city\", \"ST\": \"SD\", \"STFIPS\": \"46\", \"PLACEFIP\": \"49600\", \"CAPITAL\": \"Y\", \"AREALAND\": 13.019000, \"AREAWATER\": 0.012000, \"POP_CL\": 6, \"POP2000\": 13876, \"WHITE\": 12337, \"BLACK\": 28, \"AMERI_ES\": 1188, \"ASIAN\": 64, \"HAWN_PI\": 3, \"OTHER\": 40, \"MULT_RACE\": 216, \"HISPANIC\": 173, \"MALES\": 6592, \"FEMALES\": 7284, \"AGE_UNDER5\": 909, \"AGE_5_17\": 2865, \"AGE_18_21\": 530, \"AGE_22_29\": 1198, \"AGE_30_39\": 1978, \"AGE_40_49\": 2287, \"AGE_50_64\": 2154, \"AGE_65_UP\": 1955, \"MED_AGE\": 37.600000, \"MED_AGE_M\": 36.400000, \"MED_AGE_F\": 38.500000, \"HOUSEHOLDS\": 5567, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 731, \"HSEHLD_1_F\": 1020, \"MARHH_CHD\": 1313, \"MARHH_NO_C\": 1562, \"MHH_CHILD\": 122, \"FHH_CHILD\": 394, \"FAMILIES\": 3576, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 5949, \"VACANT\": 382, \"OWNER_OCC\": 3517, \"RENTER_OCC\": 2050 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -100.336377983039199, 44.367965987709354 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Rapid City\", \"CLASS\": \"city\", \"ST\": \"SD\", \"STFIPS\": \"46\", \"PLACEFIP\": \"52980\", \"CAPITAL\": \"N\", \"AREALAND\": 44.592000, \"AREAWATER\": 0.062000, \"POP_CL\": 7, \"POP2000\": 59607, \"WHITE\": 50266, \"BLACK\": 579, \"AMERI_ES\": 6046, \"ASIAN\": 594, \"HAWN_PI\": 35, \"OTHER\": 434, \"MULT_RACE\": 1653, \"HISPANIC\": 1650, \"MALES\": 29224, \"FEMALES\": 30383, \"AGE_UNDER5\": 4169, \"AGE_5_17\": 10894, \"AGE_18_21\": 4207, \"AGE_22_29\": 7085, \"AGE_30_39\": 8082, \"AGE_40_49\": 9082, \"AGE_50_64\": 8200, \"AGE_65_UP\": 7888, \"MED_AGE\": 34.800000, \"MED_AGE_M\": 32.700000, \"MED_AGE_F\": 36.500000, \"HOUSEHOLDS\": 23969, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 2944, \"HSEHLD_1_F\": 4094, \"MARHH_CHD\": 4776, \"MARHH_NO_C\": 6427, \"MHH_CHILD\": 591, \"FHH_CHILD\": 2100, \"FAMILIES\": 15211, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 25096, \"VACANT\": 1127, \"OWNER_OCC\": 14211, \"RENTER_OCC\": 9758 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -103.22829859730696, 44.076187924950055 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sioux Falls\", \"CLASS\": \"city\", \"ST\": \"SD\", \"STFIPS\": \"46\", \"PLACEFIP\": \"59020\", \"CAPITAL\": \"N\", \"AREALAND\": 56.317000, \"AREAWATER\": 0.018000, \"POP_CL\": 8, \"POP2000\": 123975, \"WHITE\": 113938, \"BLACK\": 2226, \"AMERI_ES\": 2627, \"ASIAN\": 1479, \"HAWN_PI\": 68, \"OTHER\": 1521, \"MULT_RACE\": 2116, \"HISPANIC\": 3087, \"MALES\": 61120, \"FEMALES\": 62855, \"AGE_UNDER5\": 9072, \"AGE_5_17\": 22166, \"AGE_18_21\": 8232, \"AGE_22_29\": 16591, \"AGE_30_39\": 20047, \"AGE_40_49\": 18422, \"AGE_50_64\": 15713, \"AGE_65_UP\": 13732, \"MED_AGE\": 33.000000, \"MED_AGE_M\": 31.900000, \"MED_AGE_F\": 34.300000, \"HOUSEHOLDS\": 49731, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 6136, \"HSEHLD_1_F\": 8701, \"MARHH_CHD\": 11472, \"MARHH_NO_C\": 12592, \"MHH_CHILD\": 1028, \"FHH_CHILD\": 3460, \"FAMILIES\": 30801, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 51680, \"VACANT\": 1949, \"OWNER_OCC\": 30370, \"RENTER_OCC\": 19361 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.731780000007248, 43.536284999778694 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Watertown\", \"CLASS\": \"city\", \"ST\": \"SD\", \"STFIPS\": \"46\", \"PLACEFIP\": \"69300\", \"CAPITAL\": \"N\", \"AREALAND\": 15.228000, \"AREAWATER\": 7.863000, \"POP_CL\": 6, \"POP2000\": 20237, \"WHITE\": 19479, \"BLACK\": 28, \"AMERI_ES\": 333, \"ASIAN\": 67, \"HAWN_PI\": 4, \"OTHER\": 144, \"MULT_RACE\": 182, \"HISPANIC\": 259, \"MALES\": 9942, \"FEMALES\": 10295, \"AGE_UNDER5\": 1409, \"AGE_5_17\": 3828, \"AGE_18_21\": 1447, \"AGE_22_29\": 2177, \"AGE_30_39\": 2745, \"AGE_40_49\": 3012, \"AGE_50_64\": 2580, \"AGE_65_UP\": 3039, \"MED_AGE\": 35.100000, \"MED_AGE_M\": 33.100000, \"MED_AGE_F\": 36.800000, \"HOUSEHOLDS\": 8385, \"AVE_HH_SZ\": 2.370000, \"HSEHLD_1_M\": 1093, \"HSEHLD_1_F\": 1466, \"MARHH_CHD\": 1968, \"MARHH_NO_C\": 2277, \"MHH_CHILD\": 184, \"FHH_CHILD\": 521, \"FAMILIES\": 5291, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 9193, \"VACANT\": 808, \"OWNER_OCC\": 5549, \"RENTER_OCC\": 2836 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.120436999969456, 44.90343299958127 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Yankton\", \"CLASS\": \"city\", \"ST\": \"SD\", \"STFIPS\": \"46\", \"PLACEFIP\": \"73060\", \"CAPITAL\": \"N\", \"AREALAND\": 7.760000, \"AREAWATER\": 0.242000, \"POP_CL\": 6, \"POP2000\": 13528, \"WHITE\": 12764, \"BLACK\": 222, \"AMERI_ES\": 214, \"ASIAN\": 68, \"HAWN_PI\": 4, \"OTHER\": 122, \"MULT_RACE\": 134, \"HISPANIC\": 333, \"MALES\": 6631, \"FEMALES\": 6897, \"AGE_UNDER5\": 815, \"AGE_5_17\": 2355, \"AGE_18_21\": 784, \"AGE_22_29\": 1419, \"AGE_30_39\": 1860, \"AGE_40_49\": 2069, \"AGE_50_64\": 1902, \"AGE_65_UP\": 2324, \"MED_AGE\": 37.600000, \"MED_AGE_M\": 36.200000, \"MED_AGE_F\": 39.400000, \"HOUSEHOLDS\": 5369, \"AVE_HH_SZ\": 2.270000, \"HSEHLD_1_M\": 695, \"HSEHLD_1_F\": 1180, \"MARHH_CHD\": 1123, \"MARHH_NO_C\": 1425, \"MHH_CHILD\": 94, \"FHH_CHILD\": 369, \"FAMILIES\": 3232, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 5735, \"VACANT\": 366, \"OWNER_OCC\": 3322, \"RENTER_OCC\": 2047 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.392484999983537, 42.881646999437969 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Athens\", \"CLASS\": \"city\", \"ST\": \"TN\", \"STFIPS\": \"47\", \"PLACEFIP\": \"02320\", \"CAPITAL\": \"N\", \"AREALAND\": 13.541000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 13220, \"WHITE\": 11413, \"BLACK\": 1232, \"AMERI_ES\": 31, \"ASIAN\": 182, \"HAWN_PI\": 9, \"OTHER\": 177, \"MULT_RACE\": 176, \"HISPANIC\": 398, \"MALES\": 6066, \"FEMALES\": 7154, \"AGE_UNDER5\": 905, \"AGE_5_17\": 2258, \"AGE_18_21\": 804, \"AGE_22_29\": 1420, \"AGE_30_39\": 1840, \"AGE_40_49\": 1862, \"AGE_50_64\": 1971, \"AGE_65_UP\": 2160, \"MED_AGE\": 36.500000, \"MED_AGE_M\": 34.100000, \"MED_AGE_F\": 38.700000, \"HOUSEHOLDS\": 5550, \"AVE_HH_SZ\": 2.290000, \"HSEHLD_1_M\": 633, \"HSEHLD_1_F\": 1129, \"MARHH_CHD\": 1089, \"MARHH_NO_C\": 1528, \"MHH_CHILD\": 74, \"FHH_CHILD\": 504, \"FAMILIES\": 3592, \"AVE_FAM_SZ\": 2.890000, \"HSE_UNITS\": 6086, \"VACANT\": 536, \"OWNER_OCC\": 3379, \"RENTER_OCC\": 2171 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.602069018945372, 35.448170984445255 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bartlett\", \"CLASS\": \"city\", \"ST\": \"TN\", \"STFIPS\": \"47\", \"PLACEFIP\": \"03440\", \"CAPITAL\": \"N\", \"AREALAND\": 19.083000, \"AREAWATER\": 0.007000, \"POP_CL\": 6, \"POP2000\": 40543, \"WHITE\": 37476, \"BLACK\": 1971, \"AMERI_ES\": 112, \"ASIAN\": 502, \"HAWN_PI\": 18, \"OTHER\": 151, \"MULT_RACE\": 313, \"HISPANIC\": 462, \"MALES\": 19792, \"FEMALES\": 20751, \"AGE_UNDER5\": 2693, \"AGE_5_17\": 9092, \"AGE_18_21\": 1847, \"AGE_22_29\": 2705, \"AGE_30_39\": 6479, \"AGE_40_49\": 7538, \"AGE_50_64\": 6706, \"AGE_65_UP\": 3483, \"MED_AGE\": 36.600000, \"MED_AGE_M\": 35.800000, \"MED_AGE_F\": 37.300000, \"HOUSEHOLDS\": 13773, \"AVE_HH_SZ\": 2.920000, \"HSEHLD_1_M\": 638, \"HSEHLD_1_F\": 1033, \"MARHH_CHD\": 5228, \"MARHH_NO_C\": 5044, \"MHH_CHILD\": 176, \"FHH_CHILD\": 654, \"FAMILIES\": 11811, \"AVE_FAM_SZ\": 3.180000, \"HSE_UNITS\": 14021, \"VACANT\": 248, \"OWNER_OCC\": 12699, \"RENTER_OCC\": 1074 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.841169999974312, 35.222989999951452 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bloomingdale\", \"CLASS\": \"CDP\", \"ST\": \"TN\", \"STFIPS\": \"47\", \"PLACEFIP\": \"06640\", \"CAPITAL\": \"N\", \"AREALAND\": 10.308000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10350, \"WHITE\": 10198, \"BLACK\": 29, \"AMERI_ES\": 33, \"ASIAN\": 10, \"HAWN_PI\": 1, \"OTHER\": 18, \"MULT_RACE\": 61, \"HISPANIC\": 81, \"MALES\": 5048, \"FEMALES\": 5302, \"AGE_UNDER5\": 570, \"AGE_5_17\": 1704, \"AGE_18_21\": 429, \"AGE_22_29\": 1020, \"AGE_30_39\": 1518, \"AGE_40_49\": 1492, \"AGE_50_64\": 2080, \"AGE_65_UP\": 1537, \"MED_AGE\": 39.500000, \"MED_AGE_M\": 38.400000, \"MED_AGE_F\": 40.600000, \"HOUSEHOLDS\": 4264, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 409, \"HSEHLD_1_F\": 565, \"MARHH_CHD\": 917, \"MARHH_NO_C\": 1618, \"MHH_CHILD\": 70, \"FHH_CHILD\": 247, \"FAMILIES\": 3178, \"AVE_FAM_SZ\": 2.830000, \"HSE_UNITS\": 4594, \"VACANT\": 330, \"OWNER_OCC\": 3406, \"RENTER_OCC\": 858 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.506291260026899, 36.578066946550138 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Brentwood\", \"CLASS\": \"city\", \"ST\": \"TN\", \"STFIPS\": \"47\", \"PLACEFIP\": \"08280\", \"CAPITAL\": \"N\", \"AREALAND\": 34.646000, \"AREAWATER\": 0.024000, \"POP_CL\": 6, \"POP2000\": 23445, \"WHITE\": 22187, \"BLACK\": 442, \"AMERI_ES\": 37, \"ASIAN\": 585, \"HAWN_PI\": 0, \"OTHER\": 44, \"MULT_RACE\": 150, \"HISPANIC\": 259, \"MALES\": 11550, \"FEMALES\": 11895, \"AGE_UNDER5\": 1339, \"AGE_5_17\": 6056, \"AGE_18_21\": 712, \"AGE_22_29\": 744, \"AGE_30_39\": 2512, \"AGE_40_49\": 5175, \"AGE_50_64\": 4981, \"AGE_65_UP\": 1926, \"MED_AGE\": 40.800000, \"MED_AGE_M\": 40.800000, \"MED_AGE_F\": 40.800000, \"HOUSEHOLDS\": 7693, \"AVE_HH_SZ\": 3.020000, \"HSEHLD_1_M\": 290, \"HSEHLD_1_F\": 476, \"MARHH_CHD\": 3410, \"MARHH_NO_C\": 2916, \"MHH_CHILD\": 64, \"FHH_CHILD\": 233, \"FAMILIES\": 6812, \"AVE_FAM_SZ\": 3.240000, \"HSE_UNITS\": 7889, \"VACANT\": 196, \"OWNER_OCC\": 7338, \"RENTER_OCC\": 355 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.79261899977277, 35.998193997150217 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bristol\", \"CLASS\": \"city\", \"ST\": \"TN\", \"STFIPS\": \"47\", \"PLACEFIP\": \"08540\", \"CAPITAL\": \"N\", \"AREALAND\": 29.348000, \"AREAWATER\": 0.128000, \"POP_CL\": 6, \"POP2000\": 24821, \"WHITE\": 23617, \"BLACK\": 736, \"AMERI_ES\": 78, \"ASIAN\": 158, \"HAWN_PI\": 2, \"OTHER\": 56, \"MULT_RACE\": 174, \"HISPANIC\": 170, \"MALES\": 11798, \"FEMALES\": 13023, \"AGE_UNDER5\": 1358, \"AGE_5_17\": 3882, \"AGE_18_21\": 1356, \"AGE_22_29\": 2477, \"AGE_30_39\": 3363, \"AGE_40_49\": 3633, \"AGE_50_64\": 4300, \"AGE_65_UP\": 4452, \"MED_AGE\": 39.900000, \"MED_AGE_M\": 37.900000, \"MED_AGE_F\": 41.900000, \"HOUSEHOLDS\": 10648, \"AVE_HH_SZ\": 2.260000, \"HSEHLD_1_M\": 1352, \"HSEHLD_1_F\": 2066, \"MARHH_CHD\": 1992, \"MARHH_NO_C\": 3225, \"MHH_CHILD\": 178, \"FHH_CHILD\": 623, \"FAMILIES\": 6829, \"AVE_FAM_SZ\": 2.840000, \"HSE_UNITS\": 11511, \"VACANT\": 863, \"OWNER_OCC\": 7265, \"RENTER_OCC\": 3383 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.197489349118484, 36.569134939314281 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Brownsville\", \"CLASS\": \"city\", \"ST\": \"TN\", \"STFIPS\": \"47\", \"PLACEFIP\": \"08920\", \"CAPITAL\": \"N\", \"AREALAND\": 9.123000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10748, \"WHITE\": 3925, \"BLACK\": 6526, \"AMERI_ES\": 15, \"ASIAN\": 11, \"HAWN_PI\": 8, \"OTHER\": 197, \"MULT_RACE\": 66, \"HISPANIC\": 388, \"MALES\": 4782, \"FEMALES\": 5966, \"AGE_UNDER5\": 850, \"AGE_5_17\": 2324, \"AGE_18_21\": 670, \"AGE_22_29\": 1097, \"AGE_30_39\": 1483, \"AGE_40_49\": 1533, \"AGE_50_64\": 1330, \"AGE_65_UP\": 1461, \"MED_AGE\": 32.700000, \"MED_AGE_M\": 30.200000, \"MED_AGE_F\": 34.800000, \"HOUSEHOLDS\": 4105, \"AVE_HH_SZ\": 2.580000, \"HSEHLD_1_M\": 403, \"HSEHLD_1_F\": 707, \"MARHH_CHD\": 686, \"MARHH_NO_C\": 907, \"MHH_CHILD\": 70, \"FHH_CHILD\": 699, \"FAMILIES\": 2865, \"AVE_FAM_SZ\": 3.110000, \"HSE_UNITS\": 4372, \"VACANT\": 267, \"OWNER_OCC\": 2337, \"RENTER_OCC\": 1768 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.260901999929558, 35.590557999864487 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Chattanooga\", \"CLASS\": \"city\", \"ST\": \"TN\", \"STFIPS\": \"47\", \"PLACEFIP\": \"14000\", \"CAPITAL\": \"N\", \"AREALAND\": 135.208000, \"AREAWATER\": 7.959000, \"POP_CL\": 8, \"POP2000\": 155554, \"WHITE\": 92874, \"BLACK\": 56086, \"AMERI_ES\": 446, \"ASIAN\": 2396, \"HAWN_PI\": 164, \"OTHER\": 1571, \"MULT_RACE\": 2017, \"HISPANIC\": 3281, \"MALES\": 73370, \"FEMALES\": 82184, \"AGE_UNDER5\": 9449, \"AGE_5_17\": 25407, \"AGE_18_21\": 9869, \"AGE_22_29\": 18457, \"AGE_30_39\": 21673, \"AGE_40_49\": 22637, \"AGE_50_64\": 24367, \"AGE_65_UP\": 23695, \"MED_AGE\": 36.800000, \"MED_AGE_M\": 34.500000, \"MED_AGE_F\": 39.000000, \"HOUSEHOLDS\": 65499, \"AVE_HH_SZ\": 2.290000, \"HSEHLD_1_M\": 8969, \"HSEHLD_1_F\": 12970, \"MARHH_CHD\": 9154, \"MARHH_NO_C\": 16533, \"MHH_CHILD\": 1109, \"FHH_CHILD\": 6279, \"FAMILIES\": 39650, \"AVE_FAM_SZ\": 2.920000, \"HSE_UNITS\": 72108, \"VACANT\": 6609, \"OWNER_OCC\": 35946, \"RENTER_OCC\": 29553 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.267255005576629, 35.045472990530527 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Clarksville\", \"CLASS\": \"city\", \"ST\": \"TN\", \"STFIPS\": \"47\", \"PLACEFIP\": \"15160\", \"CAPITAL\": \"N\", \"AREALAND\": 94.860000, \"AREAWATER\": 0.683000, \"POP_CL\": 8, \"POP2000\": 103455, \"WHITE\": 70254, \"BLACK\": 24030, \"AMERI_ES\": 560, \"ASIAN\": 2233, \"HAWN_PI\": 262, \"OTHER\": 2705, \"MULT_RACE\": 3411, \"HISPANIC\": 6241, \"MALES\": 51950, \"FEMALES\": 51505, \"AGE_UNDER5\": 9295, \"AGE_5_17\": 20510, \"AGE_18_21\": 7677, \"AGE_22_29\": 16935, \"AGE_30_39\": 17871, \"AGE_40_49\": 13139, \"AGE_50_64\": 10515, \"AGE_65_UP\": 7513, \"MED_AGE\": 28.800000, \"MED_AGE_M\": 27.800000, \"MED_AGE_F\": 29.800000, \"HOUSEHOLDS\": 36969, \"AVE_HH_SZ\": 2.690000, \"HSEHLD_1_M\": 3786, \"HSEHLD_1_F\": 4006, \"MARHH_CHD\": 11139, \"MARHH_NO_C\": 9695, \"MHH_CHILD\": 784, \"FHH_CHILD\": 3340, \"FAMILIES\": 26965, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 40041, \"VACANT\": 3072, \"OWNER_OCC\": 21275, \"RENTER_OCC\": 15694 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.358260999680127, 36.559382998308266 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cleveland\", \"CLASS\": \"city\", \"ST\": \"TN\", \"STFIPS\": \"47\", \"PLACEFIP\": \"15400\", \"CAPITAL\": \"N\", \"AREALAND\": 24.946000, \"AREAWATER\": 0.003000, \"POP_CL\": 6, \"POP2000\": 37192, \"WHITE\": 33102, \"BLACK\": 2608, \"AMERI_ES\": 86, \"ASIAN\": 359, \"HAWN_PI\": 12, \"OTHER\": 481, \"MULT_RACE\": 544, \"HISPANIC\": 1066, \"MALES\": 17564, \"FEMALES\": 19628, \"AGE_UNDER5\": 2405, \"AGE_5_17\": 5750, \"AGE_18_21\": 3669, \"AGE_22_29\": 4768, \"AGE_30_39\": 5051, \"AGE_40_49\": 4753, \"AGE_50_64\": 5628, \"AGE_65_UP\": 5168, \"MED_AGE\": 34.000000, \"MED_AGE_M\": 31.700000, \"MED_AGE_F\": 36.200000, \"HOUSEHOLDS\": 15037, \"AVE_HH_SZ\": 2.330000, \"HSEHLD_1_M\": 1782, \"HSEHLD_1_F\": 2783, \"MARHH_CHD\": 2842, \"MARHH_NO_C\": 4164, \"MHH_CHILD\": 256, \"FHH_CHILD\": 1165, \"FAMILIES\": 9511, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 16431, \"VACANT\": 1394, \"OWNER_OCC\": 7790, \"RENTER_OCC\": 7247 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.87106701173019, 35.171482987310846 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Collierville\", \"CLASS\": \"town\", \"ST\": \"TN\", \"STFIPS\": \"47\", \"PLACEFIP\": \"16420\", \"CAPITAL\": \"N\", \"AREALAND\": 24.548000, \"AREAWATER\": 0.103000, \"POP_CL\": 6, \"POP2000\": 31872, \"WHITE\": 28643, \"BLACK\": 2337, \"AMERI_ES\": 62, \"ASIAN\": 467, \"HAWN_PI\": 4, \"OTHER\": 106, \"MULT_RACE\": 253, \"HISPANIC\": 481, \"MALES\": 15741, \"FEMALES\": 16131, \"AGE_UNDER5\": 2417, \"AGE_5_17\": 8237, \"AGE_18_21\": 1212, \"AGE_22_29\": 1830, \"AGE_30_39\": 5582, \"AGE_40_49\": 6400, \"AGE_50_64\": 4269, \"AGE_65_UP\": 1925, \"MED_AGE\": 35.200000, \"MED_AGE_M\": 34.500000, \"MED_AGE_F\": 35.700000, \"HOUSEHOLDS\": 10368, \"AVE_HH_SZ\": 3.060000, \"HSEHLD_1_M\": 498, \"HSEHLD_1_F\": 728, \"MARHH_CHD\": 4793, \"MARHH_NO_C\": 3093, \"MHH_CHILD\": 136, \"FHH_CHILD\": 506, \"FAMILIES\": 8934, \"AVE_FAM_SZ\": 3.340000, \"HSE_UNITS\": 10770, \"VACANT\": 402, \"OWNER_OCC\": 8956, \"RENTER_OCC\": 1412 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.682305999964555, 35.054365999936181 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Columbia\", \"CLASS\": \"city\", \"ST\": \"TN\", \"STFIPS\": \"47\", \"PLACEFIP\": \"16540\", \"CAPITAL\": \"N\", \"AREALAND\": 29.599000, \"AREAWATER\": 0.011000, \"POP_CL\": 6, \"POP2000\": 33055, \"WHITE\": 24669, \"BLACK\": 6984, \"AMERI_ES\": 92, \"ASIAN\": 137, \"HAWN_PI\": 9, \"OTHER\": 680, \"MULT_RACE\": 484, \"HISPANIC\": 1554, \"MALES\": 15653, \"FEMALES\": 17402, \"AGE_UNDER5\": 2474, \"AGE_5_17\": 6052, \"AGE_18_21\": 1889, \"AGE_22_29\": 3566, \"AGE_30_39\": 4643, \"AGE_40_49\": 4848, \"AGE_50_64\": 4665, \"AGE_65_UP\": 4918, \"MED_AGE\": 35.700000, \"MED_AGE_M\": 33.300000, \"MED_AGE_F\": 37.800000, \"HOUSEHOLDS\": 13059, \"AVE_HH_SZ\": 2.460000, \"HSEHLD_1_M\": 1415, \"HSEHLD_1_F\": 2219, \"MARHH_CHD\": 2665, \"MARHH_NO_C\": 3441, \"MHH_CHILD\": 271, \"FHH_CHILD\": 1293, \"FAMILIES\": 8807, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 14322, \"VACANT\": 1263, \"OWNER_OCC\": 8298, \"RENTER_OCC\": 4761 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.044463999541435, 35.615021997834631 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cookeville\", \"CLASS\": \"city\", \"ST\": \"TN\", \"STFIPS\": \"47\", \"PLACEFIP\": \"16920\", \"CAPITAL\": \"N\", \"AREALAND\": 21.857000, \"AREAWATER\": 0.169000, \"POP_CL\": 6, \"POP2000\": 23923, \"WHITE\": 21797, \"BLACK\": 697, \"AMERI_ES\": 38, \"ASIAN\": 449, \"HAWN_PI\": 50, \"OTHER\": 624, \"MULT_RACE\": 268, \"HISPANIC\": 1009, \"MALES\": 12046, \"FEMALES\": 11877, \"AGE_UNDER5\": 1279, \"AGE_5_17\": 3016, \"AGE_18_21\": 3794, \"AGE_22_29\": 4192, \"AGE_30_39\": 2725, \"AGE_40_49\": 2511, \"AGE_50_64\": 3122, \"AGE_65_UP\": 3284, \"MED_AGE\": 29.000000, \"MED_AGE_M\": 26.500000, \"MED_AGE_F\": 33.100000, \"HOUSEHOLDS\": 9938, \"AVE_HH_SZ\": 2.190000, \"HSEHLD_1_M\": 1456, \"HSEHLD_1_F\": 2004, \"MARHH_CHD\": 1512, \"MARHH_NO_C\": 2438, \"MHH_CHILD\": 147, \"FHH_CHILD\": 594, \"FAMILIES\": 5312, \"AVE_FAM_SZ\": 2.830000, \"HSE_UNITS\": 10746, \"VACANT\": 808, \"OWNER_OCC\": 4521, \"RENTER_OCC\": 5417 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.504295005127872, 36.164201991343283 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Dickson\", \"CLASS\": \"city\", \"ST\": \"TN\", \"STFIPS\": \"47\", \"PLACEFIP\": \"20620\", \"CAPITAL\": \"N\", \"AREALAND\": 16.469000, \"AREAWATER\": 0.061000, \"POP_CL\": 6, \"POP2000\": 12244, \"WHITE\": 10757, \"BLACK\": 1081, \"AMERI_ES\": 56, \"ASIAN\": 68, \"HAWN_PI\": 0, \"OTHER\": 94, \"MULT_RACE\": 188, \"HISPANIC\": 238, \"MALES\": 5685, \"FEMALES\": 6559, \"AGE_UNDER5\": 964, \"AGE_5_17\": 2362, \"AGE_18_21\": 620, \"AGE_22_29\": 1331, \"AGE_30_39\": 1794, \"AGE_40_49\": 1678, \"AGE_50_64\": 1733, \"AGE_65_UP\": 1762, \"MED_AGE\": 34.700000, \"MED_AGE_M\": 32.300000, \"MED_AGE_F\": 36.900000, \"HOUSEHOLDS\": 4934, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 536, \"HSEHLD_1_F\": 899, \"MARHH_CHD\": 1013, \"MARHH_NO_C\": 1279, \"MHH_CHILD\": 117, \"FHH_CHILD\": 557, \"FAMILIES\": 3301, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 5280, \"VACANT\": 346, \"OWNER_OCC\": 2969, \"RENTER_OCC\": 1965 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.374538999601285, 36.071484998398226 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Dyersburg\", \"CLASS\": \"city\", \"ST\": \"TN\", \"STFIPS\": \"47\", \"PLACEFIP\": \"22200\", \"CAPITAL\": \"N\", \"AREALAND\": 15.061000, \"AREAWATER\": 0.082000, \"POP_CL\": 6, \"POP2000\": 17452, \"WHITE\": 13208, \"BLACK\": 3843, \"AMERI_ES\": 36, \"ASIAN\": 95, \"HAWN_PI\": 4, \"OTHER\": 93, \"MULT_RACE\": 173, \"HISPANIC\": 237, \"MALES\": 8094, \"FEMALES\": 9358, \"AGE_UNDER5\": 1279, \"AGE_5_17\": 3319, \"AGE_18_21\": 946, \"AGE_22_29\": 1911, \"AGE_30_39\": 2423, \"AGE_40_49\": 2336, \"AGE_50_64\": 2616, \"AGE_65_UP\": 2622, \"MED_AGE\": 35.500000, \"MED_AGE_M\": 33.300000, \"MED_AGE_F\": 37.400000, \"HOUSEHOLDS\": 7036, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 825, \"HSEHLD_1_F\": 1351, \"MARHH_CHD\": 1277, \"MARHH_NO_C\": 1705, \"MHH_CHILD\": 143, \"FHH_CHILD\": 797, \"FAMILIES\": 4520, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 7885, \"VACANT\": 849, \"OWNER_OCC\": 3735, \"RENTER_OCC\": 3301 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.382765999944681, 36.039439999884507 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"East Brainerd\", \"CLASS\": \"CDP\", \"ST\": \"TN\", \"STFIPS\": \"47\", \"PLACEFIP\": \"22440\", \"CAPITAL\": \"N\", \"AREALAND\": 8.657000, \"AREAWATER\": 0.026000, \"POP_CL\": 6, \"POP2000\": 14132, \"WHITE\": 12490, \"BLACK\": 1101, \"AMERI_ES\": 18, \"ASIAN\": 319, \"HAWN_PI\": 1, \"OTHER\": 65, \"MULT_RACE\": 138, \"HISPANIC\": 193, \"MALES\": 6932, \"FEMALES\": 7200, \"AGE_UNDER5\": 793, \"AGE_5_17\": 3092, \"AGE_18_21\": 610, \"AGE_22_29\": 895, \"AGE_30_39\": 1975, \"AGE_40_49\": 2730, \"AGE_50_64\": 2801, \"AGE_65_UP\": 1236, \"MED_AGE\": 38.800000, \"MED_AGE_M\": 38.200000, \"MED_AGE_F\": 39.300000, \"HOUSEHOLDS\": 4839, \"AVE_HH_SZ\": 2.890000, \"HSEHLD_1_M\": 237, \"HSEHLD_1_F\": 333, \"MARHH_CHD\": 1792, \"MARHH_NO_C\": 1900, \"MHH_CHILD\": 50, \"FHH_CHILD\": 185, \"FAMILIES\": 4150, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 4982, \"VACANT\": 143, \"OWNER_OCC\": 4463, \"RENTER_OCC\": 376 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.108803007452678, 35.013982989401427 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"East Ridge\", \"CLASS\": \"city\", \"ST\": \"TN\", \"STFIPS\": \"47\", \"PLACEFIP\": \"22720\", \"CAPITAL\": \"N\", \"AREALAND\": 8.265000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 20640, \"WHITE\": 19262, \"BLACK\": 662, \"AMERI_ES\": 64, \"ASIAN\": 347, \"HAWN_PI\": 7, \"OTHER\": 88, \"MULT_RACE\": 210, \"HISPANIC\": 225, \"MALES\": 9660, \"FEMALES\": 10980, \"AGE_UNDER5\": 1081, \"AGE_5_17\": 2950, \"AGE_18_21\": 952, \"AGE_22_29\": 2377, \"AGE_30_39\": 2972, \"AGE_40_49\": 2952, \"AGE_50_64\": 3430, \"AGE_65_UP\": 3926, \"MED_AGE\": 40.000000, \"MED_AGE_M\": 37.300000, \"MED_AGE_F\": 42.400000, \"HOUSEHOLDS\": 9288, \"AVE_HH_SZ\": 2.200000, \"HSEHLD_1_M\": 1142, \"HSEHLD_1_F\": 1946, \"MARHH_CHD\": 1527, \"MARHH_NO_C\": 2848, \"MHH_CHILD\": 137, \"FHH_CHILD\": 577, \"FAMILIES\": 5742, \"AVE_FAM_SZ\": 2.800000, \"HSE_UNITS\": 9876, \"VACANT\": 588, \"OWNER_OCC\": 5682, \"RENTER_OCC\": 3606 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.237482005812311, 34.996673990359362 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Elizabethton\", \"CLASS\": \"city\", \"ST\": \"TN\", \"STFIPS\": \"47\", \"PLACEFIP\": \"23500\", \"CAPITAL\": \"N\", \"AREALAND\": 9.163000, \"AREAWATER\": 0.220000, \"POP_CL\": 6, \"POP2000\": 13372, \"WHITE\": 12744, \"BLACK\": 330, \"AMERI_ES\": 22, \"ASIAN\": 73, \"HAWN_PI\": 1, \"OTHER\": 65, \"MULT_RACE\": 137, \"HISPANIC\": 158, \"MALES\": 6038, \"FEMALES\": 7334, \"AGE_UNDER5\": 714, \"AGE_5_17\": 2029, \"AGE_18_21\": 980, \"AGE_22_29\": 1257, \"AGE_30_39\": 1652, \"AGE_40_49\": 1680, \"AGE_50_64\": 2255, \"AGE_65_UP\": 2805, \"MED_AGE\": 40.300000, \"MED_AGE_M\": 36.900000, \"MED_AGE_F\": 43.400000, \"HOUSEHOLDS\": 5454, \"AVE_HH_SZ\": 2.240000, \"HSEHLD_1_M\": 546, \"HSEHLD_1_F\": 1233, \"MARHH_CHD\": 925, \"MARHH_NO_C\": 1614, \"MHH_CHILD\": 73, \"FHH_CHILD\": 452, \"FAMILIES\": 3514, \"AVE_FAM_SZ\": 2.820000, \"HSE_UNITS\": 5964, \"VACANT\": 510, \"OWNER_OCC\": 3482, \"RENTER_OCC\": 1972 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.239038327177369, 36.336526941400038 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Farragut\", \"CLASS\": \"town\", \"ST\": \"TN\", \"STFIPS\": \"47\", \"PLACEFIP\": \"25760\", \"CAPITAL\": \"N\", \"AREALAND\": 16.088000, \"AREAWATER\": 0.166000, \"POP_CL\": 6, \"POP2000\": 17720, \"WHITE\": 16635, \"BLACK\": 319, \"AMERI_ES\": 26, \"ASIAN\": 560, \"HAWN_PI\": 0, \"OTHER\": 58, \"MULT_RACE\": 122, \"HISPANIC\": 189, \"MALES\": 8762, \"FEMALES\": 8958, \"AGE_UNDER5\": 879, \"AGE_5_17\": 3848, \"AGE_18_21\": 631, \"AGE_22_29\": 772, \"AGE_30_39\": 2133, \"AGE_40_49\": 3679, \"AGE_50_64\": 3765, \"AGE_65_UP\": 2013, \"MED_AGE\": 41.800000, \"MED_AGE_M\": 41.400000, \"MED_AGE_F\": 42.200000, \"HOUSEHOLDS\": 6333, \"AVE_HH_SZ\": 2.760000, \"HSEHLD_1_M\": 402, \"HSEHLD_1_F\": 559, \"MARHH_CHD\": 2248, \"MARHH_NO_C\": 2565, \"MHH_CHILD\": 59, \"FHH_CHILD\": 188, \"FAMILIES\": 5234, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 6628, \"VACANT\": 295, \"OWNER_OCC\": 5647, \"RENTER_OCC\": 686 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.17354803701862, 35.877510978868663 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Franklin\", \"CLASS\": \"city\", \"ST\": \"TN\", \"STFIPS\": \"47\", \"PLACEFIP\": \"27740\", \"CAPITAL\": \"N\", \"AREALAND\": 30.031000, \"AREAWATER\": 0.081000, \"POP_CL\": 6, \"POP2000\": 41842, \"WHITE\": 35368, \"BLACK\": 4330, \"AMERI_ES\": 99, \"ASIAN\": 674, \"HAWN_PI\": 19, \"OTHER\": 908, \"MULT_RACE\": 444, \"HISPANIC\": 2025, \"MALES\": 20224, \"FEMALES\": 21618, \"AGE_UNDER5\": 3558, \"AGE_5_17\": 8105, \"AGE_18_21\": 1616, \"AGE_22_29\": 5175, \"AGE_30_39\": 8404, \"AGE_40_49\": 6952, \"AGE_50_64\": 4939, \"AGE_65_UP\": 3093, \"MED_AGE\": 33.000000, \"MED_AGE_M\": 32.100000, \"MED_AGE_F\": 33.900000, \"HOUSEHOLDS\": 16128, \"AVE_HH_SZ\": 2.550000, \"HSEHLD_1_M\": 1621, \"HSEHLD_1_F\": 2418, \"MARHH_CHD\": 4941, \"MARHH_NO_C\": 4128, \"MHH_CHILD\": 198, \"FHH_CHILD\": 1080, \"FAMILIES\": 11232, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 17296, \"VACANT\": 1168, \"OWNER_OCC\": 10249, \"RENTER_OCC\": 5879 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.857401999703541, 35.9290739973355 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Gallatin\", \"CLASS\": \"city\", \"ST\": \"TN\", \"STFIPS\": \"47\", \"PLACEFIP\": \"28540\", \"CAPITAL\": \"N\", \"AREALAND\": 21.971000, \"AREAWATER\": 0.487000, \"POP_CL\": 6, \"POP2000\": 23230, \"WHITE\": 18189, \"BLACK\": 4081, \"AMERI_ES\": 70, \"ASIAN\": 98, \"HAWN_PI\": 16, \"OTHER\": 469, \"MULT_RACE\": 307, \"HISPANIC\": 801, \"MALES\": 11051, \"FEMALES\": 12179, \"AGE_UNDER5\": 1700, \"AGE_5_17\": 4195, \"AGE_18_21\": 1298, \"AGE_22_29\": 2567, \"AGE_30_39\": 3479, \"AGE_40_49\": 3317, \"AGE_50_64\": 3496, \"AGE_65_UP\": 3178, \"MED_AGE\": 35.500000, \"MED_AGE_M\": 33.500000, \"MED_AGE_F\": 37.300000, \"HOUSEHOLDS\": 8963, \"AVE_HH_SZ\": 2.500000, \"HSEHLD_1_M\": 906, \"HSEHLD_1_F\": 1466, \"MARHH_CHD\": 1836, \"MARHH_NO_C\": 2464, \"MHH_CHILD\": 233, \"FHH_CHILD\": 847, \"FAMILIES\": 6197, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 9600, \"VACANT\": 637, \"OWNER_OCC\": 5625, \"RENTER_OCC\": 3338 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.45131500041802, 36.381369995980513 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Germantown\", \"CLASS\": \"city\", \"ST\": \"TN\", \"STFIPS\": \"47\", \"PLACEFIP\": \"28960\", \"CAPITAL\": \"N\", \"AREALAND\": 17.583000, \"AREAWATER\": 0.034000, \"POP_CL\": 6, \"POP2000\": 37348, \"WHITE\": 34712, \"BLACK\": 869, \"AMERI_ES\": 60, \"ASIAN\": 1306, \"HAWN_PI\": 13, \"OTHER\": 62, \"MULT_RACE\": 326, \"HISPANIC\": 407, \"MALES\": 18195, \"FEMALES\": 19153, \"AGE_UNDER5\": 1951, \"AGE_5_17\": 8515, \"AGE_18_21\": 1457, \"AGE_22_29\": 1688, \"AGE_30_39\": 4181, \"AGE_40_49\": 7744, \"AGE_50_64\": 8363, \"AGE_65_UP\": 3449, \"MED_AGE\": 41.300000, \"MED_AGE_M\": 41.000000, \"MED_AGE_F\": 41.500000, \"HOUSEHOLDS\": 13220, \"AVE_HH_SZ\": 2.820000, \"HSEHLD_1_M\": 683, \"HSEHLD_1_F\": 1249, \"MARHH_CHD\": 4853, \"MARHH_NO_C\": 5157, \"MHH_CHILD\": 142, \"FHH_CHILD\": 458, \"FAMILIES\": 11064, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 13676, \"VACANT\": 456, \"OWNER_OCC\": 11761, \"RENTER_OCC\": 1459 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.793996999971498, 35.089022999947652 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Goodlettsville\", \"CLASS\": \"city\", \"ST\": \"TN\", \"STFIPS\": \"47\", \"PLACEFIP\": \"29920\", \"CAPITAL\": \"N\", \"AREALAND\": 13.968000, \"AREAWATER\": 0.126000, \"POP_CL\": 6, \"POP2000\": 13780, \"WHITE\": 11909, \"BLACK\": 1354, \"AMERI_ES\": 30, \"ASIAN\": 226, \"HAWN_PI\": 2, \"OTHER\": 90, \"MULT_RACE\": 169, \"HISPANIC\": 204, \"MALES\": 6552, \"FEMALES\": 7228, \"AGE_UNDER5\": 918, \"AGE_5_17\": 2343, \"AGE_18_21\": 623, \"AGE_22_29\": 1568, \"AGE_30_39\": 2138, \"AGE_40_49\": 2177, \"AGE_50_64\": 2370, \"AGE_65_UP\": 1643, \"MED_AGE\": 37.000000, \"MED_AGE_M\": 35.200000, \"MED_AGE_F\": 38.300000, \"HOUSEHOLDS\": 5601, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 563, \"HSEHLD_1_F\": 864, \"MARHH_CHD\": 1216, \"MARHH_NO_C\": 1736, \"MHH_CHILD\": 76, \"FHH_CHILD\": 399, \"FAMILIES\": 3824, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 5853, \"VACANT\": 252, \"OWNER_OCC\": 3469, \"RENTER_OCC\": 2132 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.704284999980899, 36.326967996823534 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Greeneville\", \"CLASS\": \"town\", \"ST\": \"TN\", \"STFIPS\": \"47\", \"PLACEFIP\": \"30980\", \"CAPITAL\": \"N\", \"AREALAND\": 14.042000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 15198, \"WHITE\": 13986, \"BLACK\": 873, \"AMERI_ES\": 29, \"ASIAN\": 82, \"HAWN_PI\": 3, \"OTHER\": 134, \"MULT_RACE\": 91, \"HISPANIC\": 226, \"MALES\": 6958, \"FEMALES\": 8240, \"AGE_UNDER5\": 845, \"AGE_5_17\": 2388, \"AGE_18_21\": 704, \"AGE_22_29\": 1430, \"AGE_30_39\": 2027, \"AGE_40_49\": 2041, \"AGE_50_64\": 2664, \"AGE_65_UP\": 3099, \"MED_AGE\": 41.000000, \"MED_AGE_M\": 37.800000, \"MED_AGE_F\": 44.400000, \"HOUSEHOLDS\": 6641, \"AVE_HH_SZ\": 2.180000, \"HSEHLD_1_M\": 765, \"HSEHLD_1_F\": 1529, \"MARHH_CHD\": 1043, \"MARHH_NO_C\": 1916, \"MHH_CHILD\": 115, \"FHH_CHILD\": 538, \"FAMILIES\": 4096, \"AVE_FAM_SZ\": 2.780000, \"HSE_UNITS\": 7212, \"VACANT\": 571, \"OWNER_OCC\": 4040, \"RENTER_OCC\": 2601 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.822474180629925, 36.168239955102912 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hendersonville\", \"CLASS\": \"city\", \"ST\": \"TN\", \"STFIPS\": \"47\", \"PLACEFIP\": \"33280\", \"CAPITAL\": \"N\", \"AREALAND\": 27.327000, \"AREAWATER\": 5.568000, \"POP_CL\": 6, \"POP2000\": 40620, \"WHITE\": 37749, \"BLACK\": 1673, \"AMERI_ES\": 108, \"ASIAN\": 447, \"HAWN_PI\": 12, \"OTHER\": 266, \"MULT_RACE\": 365, \"HISPANIC\": 696, \"MALES\": 19781, \"FEMALES\": 20839, \"AGE_UNDER5\": 2667, \"AGE_5_17\": 7813, \"AGE_18_21\": 1876, \"AGE_22_29\": 3965, \"AGE_30_39\": 6717, \"AGE_40_49\": 6553, \"AGE_50_64\": 6904, \"AGE_65_UP\": 4125, \"MED_AGE\": 36.200000, \"MED_AGE_M\": 34.700000, \"MED_AGE_F\": 37.600000, \"HOUSEHOLDS\": 15823, \"AVE_HH_SZ\": 2.550000, \"HSEHLD_1_M\": 1438, \"HSEHLD_1_F\": 2098, \"MARHH_CHD\": 4335, \"MARHH_NO_C\": 5042, \"MHH_CHILD\": 277, \"FHH_CHILD\": 1036, \"FAMILIES\": 11572, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 16507, \"VACANT\": 684, \"OWNER_OCC\": 11291, \"RENTER_OCC\": 4532 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.606109000100886, 36.300083996528265 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Jackson\", \"CLASS\": \"city\", \"ST\": \"TN\", \"STFIPS\": \"47\", \"PLACEFIP\": \"37640\", \"CAPITAL\": \"N\", \"AREALAND\": 49.487000, \"AREAWATER\": 0.000000, \"POP_CL\": 7, \"POP2000\": 59643, \"WHITE\": 32883, \"BLACK\": 25091, \"AMERI_ES\": 92, \"ASIAN\": 470, \"HAWN_PI\": 6, \"OTHER\": 525, \"MULT_RACE\": 576, \"HISPANIC\": 1289, \"MALES\": 27822, \"FEMALES\": 31821, \"AGE_UNDER5\": 4324, \"AGE_5_17\": 11103, \"AGE_18_21\": 4735, \"AGE_22_29\": 7307, \"AGE_30_39\": 8454, \"AGE_40_49\": 8171, \"AGE_50_64\": 7701, \"AGE_65_UP\": 7848, \"MED_AGE\": 32.800000, \"MED_AGE_M\": 30.600000, \"MED_AGE_F\": 34.900000, \"HOUSEHOLDS\": 23503, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 2832, \"HSEHLD_1_F\": 4291, \"MARHH_CHD\": 4175, \"MARHH_NO_C\": 5573, \"MHH_CHILD\": 403, \"FHH_CHILD\": 2957, \"FAMILIES\": 15141, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 25501, \"VACANT\": 1998, \"OWNER_OCC\": 13326, \"RENTER_OCC\": 10177 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.820804999866468, 35.633131999736342 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Johnson City\", \"CLASS\": \"city\", \"ST\": \"TN\", \"STFIPS\": \"47\", \"PLACEFIP\": \"38320\", \"CAPITAL\": \"N\", \"AREALAND\": 39.273000, \"AREAWATER\": 0.308000, \"POP_CL\": 7, \"POP2000\": 55469, \"WHITE\": 49973, \"BLACK\": 3549, \"AMERI_ES\": 143, \"ASIAN\": 678, \"HAWN_PI\": 12, \"OTHER\": 382, \"MULT_RACE\": 732, \"HISPANIC\": 1048, \"MALES\": 26448, \"FEMALES\": 29021, \"AGE_UNDER5\": 3047, \"AGE_5_17\": 7955, \"AGE_18_21\": 4559, \"AGE_22_29\": 7119, \"AGE_30_39\": 7396, \"AGE_40_49\": 7955, \"AGE_50_64\": 8638, \"AGE_65_UP\": 8800, \"MED_AGE\": 36.900000, \"MED_AGE_M\": 35.300000, \"MED_AGE_F\": 38.500000, \"HOUSEHOLDS\": 23720, \"AVE_HH_SZ\": 2.200000, \"HSEHLD_1_M\": 3308, \"HSEHLD_1_F\": 4735, \"MARHH_CHD\": 3996, \"MARHH_NO_C\": 6469, \"MHH_CHILD\": 355, \"FHH_CHILD\": 1570, \"FAMILIES\": 14013, \"AVE_FAM_SZ\": 2.820000, \"HSE_UNITS\": 25730, \"VACANT\": 2010, \"OWNER_OCC\": 13556, \"RENTER_OCC\": 10164 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.372760287894508, 36.335398944508384 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Kingsport\", \"CLASS\": \"city\", \"ST\": \"TN\", \"STFIPS\": \"47\", \"PLACEFIP\": \"39560\", \"CAPITAL\": \"N\", \"AREALAND\": 44.072000, \"AREAWATER\": 0.935000, \"POP_CL\": 6, \"POP2000\": 44905, \"WHITE\": 41906, \"BLACK\": 1897, \"AMERI_ES\": 106, \"ASIAN\": 356, \"HAWN_PI\": 10, \"OTHER\": 153, \"MULT_RACE\": 477, \"HISPANIC\": 471, \"MALES\": 20507, \"FEMALES\": 24398, \"AGE_UNDER5\": 2573, \"AGE_5_17\": 7167, \"AGE_18_21\": 1643, \"AGE_22_29\": 3940, \"AGE_30_39\": 5945, \"AGE_40_49\": 6280, \"AGE_50_64\": 8240, \"AGE_65_UP\": 9117, \"MED_AGE\": 41.900000, \"MED_AGE_M\": 39.300000, \"MED_AGE_F\": 44.000000, \"HOUSEHOLDS\": 19662, \"AVE_HH_SZ\": 2.220000, \"HSEHLD_1_M\": 2145, \"HSEHLD_1_F\": 4239, \"MARHH_CHD\": 3532, \"MARHH_NO_C\": 6007, \"MHH_CHILD\": 292, \"FHH_CHILD\": 1391, \"FAMILIES\": 12638, \"AVE_FAM_SZ\": 2.800000, \"HSE_UNITS\": 21796, \"VACANT\": 2134, \"OWNER_OCC\": 12740, \"RENTER_OCC\": 6922 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.542123249892455, 36.536850947544444 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Knoxville\", \"CLASS\": \"city\", \"ST\": \"TN\", \"STFIPS\": \"47\", \"PLACEFIP\": \"40000\", \"CAPITAL\": \"N\", \"AREALAND\": 92.657000, \"AREAWATER\": 5.429000, \"POP_CL\": 8, \"POP2000\": 173890, \"WHITE\": 138611, \"BLACK\": 28171, \"AMERI_ES\": 541, \"ASIAN\": 2525, \"HAWN_PI\": 60, \"OTHER\": 1257, \"MULT_RACE\": 2725, \"HISPANIC\": 2751, \"MALES\": 82390, \"FEMALES\": 91500, \"AGE_UNDER5\": 10296, \"AGE_5_17\": 23901, \"AGE_18_21\": 18160, \"AGE_22_29\": 25810, \"AGE_30_39\": 24683, \"AGE_40_49\": 23000, \"AGE_50_64\": 23046, \"AGE_65_UP\": 24994, \"MED_AGE\": 33.400000, \"MED_AGE_M\": 31.300000, \"MED_AGE_F\": 35.600000, \"HOUSEHOLDS\": 76650, \"AVE_HH_SZ\": 2.120000, \"HSEHLD_1_M\": 12523, \"HSEHLD_1_F\": 16864, \"MARHH_CHD\": 10194, \"MARHH_NO_C\": 16845, \"MHH_CHILD\": 1174, \"FHH_CHILD\": 6138, \"FAMILIES\": 40193, \"AVE_FAM_SZ\": 2.840000, \"HSE_UNITS\": 84981, \"VACANT\": 8331, \"OWNER_OCC\": 39208, \"RENTER_OCC\": 37442 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.942161050326007, 35.972881975536303 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"La Vergne\", \"CLASS\": \"city\", \"ST\": \"TN\", \"STFIPS\": \"47\", \"PLACEFIP\": \"41200\", \"CAPITAL\": \"N\", \"AREALAND\": 24.795000, \"AREAWATER\": 0.305000, \"POP_CL\": 6, \"POP2000\": 18687, \"WHITE\": 15790, \"BLACK\": 2059, \"AMERI_ES\": 81, \"ASIAN\": 246, \"HAWN_PI\": 13, \"OTHER\": 239, \"MULT_RACE\": 259, \"HISPANIC\": 661, \"MALES\": 9215, \"FEMALES\": 9472, \"AGE_UNDER5\": 1857, \"AGE_5_17\": 4002, \"AGE_18_21\": 793, \"AGE_22_29\": 2362, \"AGE_30_39\": 4006, \"AGE_40_49\": 2670, \"AGE_50_64\": 2162, \"AGE_65_UP\": 835, \"MED_AGE\": 30.800000, \"MED_AGE_M\": 30.700000, \"MED_AGE_F\": 30.800000, \"HOUSEHOLDS\": 6536, \"AVE_HH_SZ\": 2.860000, \"HSEHLD_1_M\": 506, \"HSEHLD_1_F\": 492, \"MARHH_CHD\": 2254, \"MARHH_NO_C\": 1790, \"MHH_CHILD\": 213, \"FHH_CHILD\": 566, \"FAMILIES\": 5191, \"AVE_FAM_SZ\": 3.170000, \"HSE_UNITS\": 6994, \"VACANT\": 458, \"OWNER_OCC\": 5502, \"RENTER_OCC\": 1034 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.562682000035693, 36.013329996466481 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lawrenceburg\", \"CLASS\": \"city\", \"ST\": \"TN\", \"STFIPS\": \"47\", \"PLACEFIP\": \"41340\", \"CAPITAL\": \"N\", \"AREALAND\": 12.588000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10796, \"WHITE\": 10072, \"BLACK\": 425, \"AMERI_ES\": 46, \"ASIAN\": 42, \"HAWN_PI\": 3, \"OTHER\": 91, \"MULT_RACE\": 117, \"HISPANIC\": 180, \"MALES\": 4939, \"FEMALES\": 5857, \"AGE_UNDER5\": 626, \"AGE_5_17\": 1817, \"AGE_18_21\": 590, \"AGE_22_29\": 1016, \"AGE_30_39\": 1393, \"AGE_40_49\": 1376, \"AGE_50_64\": 1848, \"AGE_65_UP\": 2130, \"MED_AGE\": 39.700000, \"MED_AGE_M\": 36.300000, \"MED_AGE_F\": 42.700000, \"HOUSEHOLDS\": 4718, \"AVE_HH_SZ\": 2.240000, \"HSEHLD_1_M\": 507, \"HSEHLD_1_F\": 1082, \"MARHH_CHD\": 788, \"MARHH_NO_C\": 1345, \"MHH_CHILD\": 81, \"FHH_CHILD\": 415, \"FAMILIES\": 2969, \"AVE_FAM_SZ\": 2.840000, \"HSE_UNITS\": 5166, \"VACANT\": 448, \"OWNER_OCC\": 2946, \"RENTER_OCC\": 1772 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.334562999469625, 35.243490998436656 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lebanon\", \"CLASS\": \"city\", \"ST\": \"TN\", \"STFIPS\": \"47\", \"PLACEFIP\": \"41520\", \"CAPITAL\": \"N\", \"AREALAND\": 29.242000, \"AREAWATER\": 0.008000, \"POP_CL\": 6, \"POP2000\": 20235, \"WHITE\": 16773, \"BLACK\": 2789, \"AMERI_ES\": 66, \"ASIAN\": 165, \"HAWN_PI\": 7, \"OTHER\": 203, \"MULT_RACE\": 232, \"HISPANIC\": 457, \"MALES\": 9621, \"FEMALES\": 10614, \"AGE_UNDER5\": 1414, \"AGE_5_17\": 3427, \"AGE_18_21\": 1306, \"AGE_22_29\": 2436, \"AGE_30_39\": 2965, \"AGE_40_49\": 2684, \"AGE_50_64\": 3122, \"AGE_65_UP\": 2881, \"MED_AGE\": 35.400000, \"MED_AGE_M\": 33.000000, \"MED_AGE_F\": 37.500000, \"HOUSEHOLDS\": 7987, \"AVE_HH_SZ\": 2.410000, \"HSEHLD_1_M\": 902, \"HSEHLD_1_F\": 1377, \"MARHH_CHD\": 1582, \"MARHH_NO_C\": 2224, \"MHH_CHILD\": 177, \"FHH_CHILD\": 710, \"FAMILIES\": 5321, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 8693, \"VACANT\": 706, \"OWNER_OCC\": 4760, \"RENTER_OCC\": 3227 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.326300000609791, 36.207990995569226 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lewisburg\", \"CLASS\": \"city\", \"ST\": \"TN\", \"STFIPS\": \"47\", \"PLACEFIP\": \"41860\", \"CAPITAL\": \"N\", \"AREALAND\": 11.681000, \"AREAWATER\": 0.009000, \"POP_CL\": 6, \"POP2000\": 10413, \"WHITE\": 8326, \"BLACK\": 1608, \"AMERI_ES\": 20, \"ASIAN\": 49, \"HAWN_PI\": 3, \"OTHER\": 297, \"MULT_RACE\": 110, \"HISPANIC\": 536, \"MALES\": 4933, \"FEMALES\": 5480, \"AGE_UNDER5\": 679, \"AGE_5_17\": 1836, \"AGE_18_21\": 603, \"AGE_22_29\": 1168, \"AGE_30_39\": 1384, \"AGE_40_49\": 1459, \"AGE_50_64\": 1590, \"AGE_65_UP\": 1694, \"MED_AGE\": 36.700000, \"MED_AGE_M\": 34.500000, \"MED_AGE_F\": 39.300000, \"HOUSEHOLDS\": 4242, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 493, \"HSEHLD_1_F\": 824, \"MARHH_CHD\": 722, \"MARHH_NO_C\": 1118, \"MHH_CHILD\": 86, \"FHH_CHILD\": 431, \"FAMILIES\": 2742, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 4584, \"VACANT\": 342, \"OWNER_OCC\": 2452, \"RENTER_OCC\": 1790 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.793111999589001, 35.449033997272842 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"McMinnville\", \"CLASS\": \"city\", \"ST\": \"TN\", \"STFIPS\": \"47\", \"PLACEFIP\": \"45100\", \"CAPITAL\": \"N\", \"AREALAND\": 10.012000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12749, \"WHITE\": 11273, \"BLACK\": 529, \"AMERI_ES\": 20, \"ASIAN\": 119, \"HAWN_PI\": 7, \"OTHER\": 638, \"MULT_RACE\": 163, \"HISPANIC\": 868, \"MALES\": 5943, \"FEMALES\": 6806, \"AGE_UNDER5\": 927, \"AGE_5_17\": 2063, \"AGE_18_21\": 699, \"AGE_22_29\": 1503, \"AGE_30_39\": 1808, \"AGE_40_49\": 1542, \"AGE_50_64\": 1908, \"AGE_65_UP\": 2299, \"MED_AGE\": 36.500000, \"MED_AGE_M\": 33.500000, \"MED_AGE_F\": 39.300000, \"HOUSEHOLDS\": 5419, \"AVE_HH_SZ\": 2.260000, \"HSEHLD_1_M\": 666, \"HSEHLD_1_F\": 1170, \"MARHH_CHD\": 931, \"MARHH_NO_C\": 1380, \"MHH_CHILD\": 118, \"FHH_CHILD\": 500, \"FAMILIES\": 3335, \"AVE_FAM_SZ\": 2.860000, \"HSE_UNITS\": 5961, \"VACANT\": 542, \"OWNER_OCC\": 2942, \"RENTER_OCC\": 2477 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.779309002361558, 35.686707993273252 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Martin\", \"CLASS\": \"city\", \"ST\": \"TN\", \"STFIPS\": \"47\", \"PLACEFIP\": \"46240\", \"CAPITAL\": \"N\", \"AREALAND\": 12.386000, \"AREAWATER\": 0.038000, \"POP_CL\": 6, \"POP2000\": 10515, \"WHITE\": 8235, \"BLACK\": 1642, \"AMERI_ES\": 8, \"ASIAN\": 434, \"HAWN_PI\": 0, \"OTHER\": 102, \"MULT_RACE\": 94, \"HISPANIC\": 191, \"MALES\": 4978, \"FEMALES\": 5537, \"AGE_UNDER5\": 499, \"AGE_5_17\": 1260, \"AGE_18_21\": 2503, \"AGE_22_29\": 1606, \"AGE_30_39\": 1009, \"AGE_40_49\": 1108, \"AGE_50_64\": 1178, \"AGE_65_UP\": 1352, \"MED_AGE\": 25.500000, \"MED_AGE_M\": 24.700000, \"MED_AGE_F\": 26.700000, \"HOUSEHOLDS\": 3773, \"AVE_HH_SZ\": 2.200000, \"HSEHLD_1_M\": 529, \"HSEHLD_1_F\": 758, \"MARHH_CHD\": 615, \"MARHH_NO_C\": 936, \"MHH_CHILD\": 55, \"FHH_CHILD\": 234, \"FAMILIES\": 2030, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 4106, \"VACANT\": 333, \"OWNER_OCC\": 1969, \"RENTER_OCC\": 1804 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.85164699988232, 36.341835999733007 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Maryville\", \"CLASS\": \"city\", \"ST\": \"TN\", \"STFIPS\": \"47\", \"PLACEFIP\": \"46380\", \"CAPITAL\": \"N\", \"AREALAND\": 15.918000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 23120, \"WHITE\": 21637, \"BLACK\": 681, \"AMERI_ES\": 50, \"ASIAN\": 358, \"HAWN_PI\": 8, \"OTHER\": 122, \"MULT_RACE\": 264, \"HISPANIC\": 318, \"MALES\": 10667, \"FEMALES\": 12453, \"AGE_UNDER5\": 1280, \"AGE_5_17\": 4236, \"AGE_18_21\": 1563, \"AGE_22_29\": 1891, \"AGE_30_39\": 3238, \"AGE_40_49\": 3424, \"AGE_50_64\": 3409, \"AGE_65_UP\": 4079, \"MED_AGE\": 38.300000, \"MED_AGE_M\": 36.200000, \"MED_AGE_F\": 40.200000, \"HOUSEHOLDS\": 9050, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 873, \"HSEHLD_1_F\": 1822, \"MARHH_CHD\": 2144, \"MARHH_NO_C\": 2587, \"MHH_CHILD\": 124, \"FHH_CHILD\": 641, \"FAMILIES\": 6046, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 9795, \"VACANT\": 745, \"OWNER_OCC\": 5865, \"RENTER_OCC\": 3185 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.975805046560495, 35.74985697643055 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Memphis\", \"CLASS\": \"city\", \"ST\": \"TN\", \"STFIPS\": \"47\", \"PLACEFIP\": \"48000\", \"CAPITAL\": \"N\", \"AREALAND\": 279.318000, \"AREAWATER\": 15.443000, \"POP_CL\": 9, \"POP2000\": 650100, \"WHITE\": 223728, \"BLACK\": 399208, \"AMERI_ES\": 1217, \"ASIAN\": 9482, \"HAWN_PI\": 239, \"OTHER\": 9438, \"MULT_RACE\": 6788, \"HISPANIC\": 19317, \"MALES\": 307643, \"FEMALES\": 342457, \"AGE_UNDER5\": 50396, \"AGE_5_17\": 130899, \"AGE_18_21\": 39896, \"AGE_22_29\": 84543, \"AGE_30_39\": 97155, \"AGE_40_49\": 92747, \"AGE_50_64\": 83438, \"AGE_65_UP\": 71026, \"MED_AGE\": 31.900000, \"MED_AGE_M\": 30.100000, \"MED_AGE_F\": 33.800000, \"HOUSEHOLDS\": 250721, \"AVE_HH_SZ\": 2.520000, \"HSEHLD_1_M\": 33643, \"HSEHLD_1_F\": 42931, \"MARHH_CHD\": 37081, \"MARHH_NO_C\": 48377, \"MHH_CHILD\": 5833, \"FHH_CHILD\": 35650, \"FAMILIES\": 158458, \"AVE_FAM_SZ\": 3.180000, \"HSE_UNITS\": 271552, \"VACANT\": 20831, \"OWNER_OCC\": 139985, \"RENTER_OCC\": 110736 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.97106799998015, 35.117364999962334 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Middle Valley\", \"CLASS\": \"CDP\", \"ST\": \"TN\", \"STFIPS\": \"47\", \"PLACEFIP\": \"48360\", \"CAPITAL\": \"N\", \"AREALAND\": 12.132000, \"AREAWATER\": 1.691000, \"POP_CL\": 6, \"POP2000\": 11854, \"WHITE\": 11368, \"BLACK\": 222, \"AMERI_ES\": 32, \"ASIAN\": 123, \"HAWN_PI\": 3, \"OTHER\": 31, \"MULT_RACE\": 75, \"HISPANIC\": 95, \"MALES\": 5787, \"FEMALES\": 6067, \"AGE_UNDER5\": 709, \"AGE_5_17\": 2338, \"AGE_18_21\": 554, \"AGE_22_29\": 998, \"AGE_30_39\": 1747, \"AGE_40_49\": 2126, \"AGE_50_64\": 2252, \"AGE_65_UP\": 1130, \"MED_AGE\": 38.000000, \"MED_AGE_M\": 37.200000, \"MED_AGE_F\": 38.500000, \"HOUSEHOLDS\": 4294, \"AVE_HH_SZ\": 2.760000, \"HSEHLD_1_M\": 251, \"HSEHLD_1_F\": 364, \"MARHH_CHD\": 1326, \"MARHH_NO_C\": 1711, \"MHH_CHILD\": 73, \"FHH_CHILD\": 213, \"FAMILIES\": 3572, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 4459, \"VACANT\": 165, \"OWNER_OCC\": 3786, \"RENTER_OCC\": 508 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.191060006768197, 35.189119989870647 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Millington\", \"CLASS\": \"city\", \"ST\": \"TN\", \"STFIPS\": \"47\", \"PLACEFIP\": \"49060\", \"CAPITAL\": \"N\", \"AREALAND\": 15.568000, \"AREAWATER\": 0.019000, \"POP_CL\": 6, \"POP2000\": 10433, \"WHITE\": 7383, \"BLACK\": 2305, \"AMERI_ES\": 75, \"ASIAN\": 262, \"HAWN_PI\": 16, \"OTHER\": 147, \"MULT_RACE\": 245, \"HISPANIC\": 486, \"MALES\": 5206, \"FEMALES\": 5227, \"AGE_UNDER5\": 968, \"AGE_5_17\": 2096, \"AGE_18_21\": 565, \"AGE_22_29\": 1233, \"AGE_30_39\": 1912, \"AGE_40_49\": 1324, \"AGE_50_64\": 1359, \"AGE_65_UP\": 976, \"MED_AGE\": 32.100000, \"MED_AGE_M\": 31.200000, \"MED_AGE_F\": 32.700000, \"HOUSEHOLDS\": 3633, \"AVE_HH_SZ\": 2.720000, \"HSEHLD_1_M\": 322, \"HSEHLD_1_F\": 462, \"MARHH_CHD\": 1025, \"MARHH_NO_C\": 959, \"MHH_CHILD\": 97, \"FHH_CHILD\": 371, \"FAMILIES\": 2698, \"AVE_FAM_SZ\": 3.170000, \"HSE_UNITS\": 4019, \"VACANT\": 386, \"OWNER_OCC\": 1707, \"RENTER_OCC\": 1926 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.902131999977485, 35.33656599995625 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Morristown\", \"CLASS\": \"city\", \"ST\": \"TN\", \"STFIPS\": \"47\", \"PLACEFIP\": \"50280\", \"CAPITAL\": \"N\", \"AREALAND\": 20.897000, \"AREAWATER\": 0.002000, \"POP_CL\": 6, \"POP2000\": 24965, \"WHITE\": 20903, \"BLACK\": 1870, \"AMERI_ES\": 74, \"ASIAN\": 171, \"HAWN_PI\": 26, \"OTHER\": 1575, \"MULT_RACE\": 346, \"HISPANIC\": 2603, \"MALES\": 12041, \"FEMALES\": 12924, \"AGE_UNDER5\": 1739, \"AGE_5_17\": 3904, \"AGE_18_21\": 1541, \"AGE_22_29\": 3157, \"AGE_30_39\": 3464, \"AGE_40_49\": 3123, \"AGE_50_64\": 3988, \"AGE_65_UP\": 4049, \"MED_AGE\": 36.100000, \"MED_AGE_M\": 33.000000, \"MED_AGE_F\": 39.400000, \"HOUSEHOLDS\": 10270, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 1218, \"HSEHLD_1_F\": 2042, \"MARHH_CHD\": 1759, \"MARHH_NO_C\": 2785, \"MHH_CHILD\": 211, \"FHH_CHILD\": 873, \"FAMILIES\": 6536, \"AVE_FAM_SZ\": 2.910000, \"HSE_UNITS\": 11036, \"VACANT\": 766, \"OWNER_OCC\": 6031, \"RENTER_OCC\": 4239 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.296141110038207, 36.210614964352587 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mount Juliet\", \"CLASS\": \"city\", \"ST\": \"TN\", \"STFIPS\": \"47\", \"PLACEFIP\": \"50780\", \"CAPITAL\": \"N\", \"AREALAND\": 16.246000, \"AREAWATER\": 0.333000, \"POP_CL\": 6, \"POP2000\": 12366, \"WHITE\": 11607, \"BLACK\": 486, \"AMERI_ES\": 48, \"ASIAN\": 64, \"HAWN_PI\": 1, \"OTHER\": 36, \"MULT_RACE\": 124, \"HISPANIC\": 145, \"MALES\": 6037, \"FEMALES\": 6329, \"AGE_UNDER5\": 966, \"AGE_5_17\": 2808, \"AGE_18_21\": 484, \"AGE_22_29\": 1139, \"AGE_30_39\": 2321, \"AGE_40_49\": 2237, \"AGE_50_64\": 1634, \"AGE_65_UP\": 777, \"MED_AGE\": 33.900000, \"MED_AGE_M\": 33.300000, \"MED_AGE_F\": 34.400000, \"HOUSEHOLDS\": 4341, \"AVE_HH_SZ\": 2.820000, \"HSEHLD_1_M\": 266, \"HSEHLD_1_F\": 332, \"MARHH_CHD\": 1559, \"MARHH_NO_C\": 1364, \"MHH_CHILD\": 104, \"FHH_CHILD\": 335, \"FAMILIES\": 3577, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 4673, \"VACANT\": 332, \"OWNER_OCC\": 3748, \"RENTER_OCC\": 593 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.513583000204946, 36.202653996250952 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Murfreesboro\", \"CLASS\": \"city\", \"ST\": \"TN\", \"STFIPS\": \"47\", \"PLACEFIP\": \"51560\", \"CAPITAL\": \"N\", \"AREALAND\": 38.991000, \"AREAWATER\": 0.211000, \"POP_CL\": 7, \"POP2000\": 68816, \"WHITE\": 54947, \"BLACK\": 9560, \"AMERI_ES\": 192, \"ASIAN\": 1853, \"HAWN_PI\": 18, \"OTHER\": 1295, \"MULT_RACE\": 951, \"HISPANIC\": 2430, \"MALES\": 34184, \"FEMALES\": 34632, \"AGE_UNDER5\": 4476, \"AGE_5_17\": 11141, \"AGE_18_21\": 8621, \"AGE_22_29\": 11719, \"AGE_30_39\": 10150, \"AGE_40_49\": 8902, \"AGE_50_64\": 7749, \"AGE_65_UP\": 6058, \"MED_AGE\": 28.700000, \"MED_AGE_M\": 27.600000, \"MED_AGE_F\": 29.900000, \"HOUSEHOLDS\": 26511, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 3331, \"HSEHLD_1_F\": 4172, \"MARHH_CHD\": 5606, \"MARHH_NO_C\": 6003, \"MHH_CHILD\": 443, \"FHH_CHILD\": 2079, \"FAMILIES\": 15748, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 28815, \"VACANT\": 2304, \"OWNER_OCC\": 13815, \"RENTER_OCC\": 12696 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.394725000246268, 35.85769999594018 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Nashville-Davidson County\", \"CLASS\": \"city (consolidated, balance)\", \"ST\": \"TN\", \"STFIPS\": \"47\", \"PLACEFIP\": \"52006\", \"CAPITAL\": \"Y\", \"AREALAND\": 473.315000, \"AREAWATER\": 23.689000, \"POP_CL\": 9, \"POP2000\": 545524, \"WHITE\": 359581, \"BLACK\": 146235, \"AMERI_ES\": 1639, \"ASIAN\": 12992, \"HAWN_PI\": 400, \"OTHER\": 13677, \"MULT_RACE\": 11000, \"HISPANIC\": 25774, \"MALES\": 264095, \"FEMALES\": 281429, \"AGE_UNDER5\": 36335, \"AGE_5_17\": 84334, \"AGE_18_21\": 36882, \"AGE_22_29\": 78869, \"AGE_30_39\": 92515, \"AGE_40_49\": 82149, \"AGE_50_64\": 74561, \"AGE_65_UP\": 59879, \"MED_AGE\": 33.900000, \"MED_AGE_M\": 32.500000, \"MED_AGE_F\": 35.300000, \"HOUSEHOLDS\": 227403, \"AVE_HH_SZ\": 2.290000, \"HSEHLD_1_M\": 33157, \"HSEHLD_1_F\": 43642, \"MARHH_CHD\": 36743, \"MARHH_NO_C\": 52235, \"MHH_CHILD\": 4003, \"FHH_CHILD\": 19499, \"FAMILIES\": 131100, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 242451, \"VACANT\": 15048, \"OWNER_OCC\": 124036, \"RENTER_OCC\": 103367 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.762140999854381, 36.154837997030974 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Oak Ridge\", \"CLASS\": \"city\", \"ST\": \"TN\", \"STFIPS\": \"47\", \"PLACEFIP\": \"55120\", \"CAPITAL\": \"N\", \"AREALAND\": 85.548000, \"AREAWATER\": 4.373000, \"POP_CL\": 6, \"POP2000\": 27387, \"WHITE\": 23815, \"BLACK\": 2239, \"AMERI_ES\": 83, \"ASIAN\": 576, \"HAWN_PI\": 6, \"OTHER\": 209, \"MULT_RACE\": 459, \"HISPANIC\": 529, \"MALES\": 12826, \"FEMALES\": 14561, \"AGE_UNDER5\": 1304, \"AGE_5_17\": 4841, \"AGE_18_21\": 1064, \"AGE_22_29\": 1960, \"AGE_30_39\": 3143, \"AGE_40_49\": 4404, \"AGE_50_64\": 4904, \"AGE_65_UP\": 5767, \"MED_AGE\": 43.400000, \"MED_AGE_M\": 41.600000, \"MED_AGE_F\": 44.800000, \"HOUSEHOLDS\": 12062, \"AVE_HH_SZ\": 2.240000, \"HSEHLD_1_M\": 1469, \"HSEHLD_1_F\": 2481, \"MARHH_CHD\": 2223, \"MARHH_NO_C\": 3769, \"MHH_CHILD\": 195, \"FHH_CHILD\": 820, \"FAMILIES\": 7701, \"AVE_FAM_SZ\": 2.830000, \"HSE_UNITS\": 13417, \"VACANT\": 1355, \"OWNER_OCC\": 8246, \"RENTER_OCC\": 3816 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -84.286312032583098, 35.988229980124153 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Red Bank\", \"CLASS\": \"city\", \"ST\": \"TN\", \"STFIPS\": \"47\", \"PLACEFIP\": \"61960\", \"CAPITAL\": \"N\", \"AREALAND\": 6.441000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12418, \"WHITE\": 10879, \"BLACK\": 1023, \"AMERI_ES\": 64, \"ASIAN\": 110, \"HAWN_PI\": 7, \"OTHER\": 148, \"MULT_RACE\": 187, \"HISPANIC\": 352, \"MALES\": 5921, \"FEMALES\": 6497, \"AGE_UNDER5\": 800, \"AGE_5_17\": 1686, \"AGE_18_21\": 729, \"AGE_22_29\": 1822, \"AGE_30_39\": 1854, \"AGE_40_49\": 1714, \"AGE_50_64\": 1905, \"AGE_65_UP\": 1908, \"MED_AGE\": 36.300000, \"MED_AGE_M\": 34.300000, \"MED_AGE_F\": 38.500000, \"HOUSEHOLDS\": 5897, \"AVE_HH_SZ\": 2.100000, \"HSEHLD_1_M\": 937, \"HSEHLD_1_F\": 1298, \"MARHH_CHD\": 795, \"MARHH_NO_C\": 1514, \"MHH_CHILD\": 117, \"FHH_CHILD\": 435, \"FAMILIES\": 3290, \"AVE_FAM_SZ\": 2.770000, \"HSE_UNITS\": 6443, \"VACANT\": 546, \"OWNER_OCC\": 3259, \"RENTER_OCC\": 2638 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.297048005379324, 35.110371990687725 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sevierville\", \"CLASS\": \"city\", \"ST\": \"TN\", \"STFIPS\": \"47\", \"PLACEFIP\": \"67120\", \"CAPITAL\": \"N\", \"AREALAND\": 19.889000, \"AREAWATER\": 0.099000, \"POP_CL\": 6, \"POP2000\": 11757, \"WHITE\": 11244, \"BLACK\": 137, \"AMERI_ES\": 43, \"ASIAN\": 109, \"HAWN_PI\": 2, \"OTHER\": 86, \"MULT_RACE\": 136, \"HISPANIC\": 190, \"MALES\": 5535, \"FEMALES\": 6222, \"AGE_UNDER5\": 764, \"AGE_5_17\": 1838, \"AGE_18_21\": 668, \"AGE_22_29\": 1367, \"AGE_30_39\": 1725, \"AGE_40_49\": 1579, \"AGE_50_64\": 1939, \"AGE_65_UP\": 1877, \"MED_AGE\": 37.200000, \"MED_AGE_M\": 34.800000, \"MED_AGE_F\": 40.000000, \"HOUSEHOLDS\": 5002, \"AVE_HH_SZ\": 2.270000, \"HSEHLD_1_M\": 535, \"HSEHLD_1_F\": 985, \"MARHH_CHD\": 918, \"MARHH_NO_C\": 1448, \"MHH_CHILD\": 106, \"FHH_CHILD\": 401, \"FAMILIES\": 3206, \"AVE_FAM_SZ\": 2.820000, \"HSE_UNITS\": 5787, \"VACANT\": 785, \"OWNER_OCC\": 2574, \"RENTER_OCC\": 2428 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -83.569927077234937, 35.877559969992269 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Shelbyville\", \"CLASS\": \"city\", \"ST\": \"TN\", \"STFIPS\": \"47\", \"PLACEFIP\": \"67760\", \"CAPITAL\": \"N\", \"AREALAND\": 15.466000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 16105, \"WHITE\": 12423, \"BLACK\": 2412, \"AMERI_ES\": 56, \"ASIAN\": 112, \"HAWN_PI\": 8, \"OTHER\": 808, \"MULT_RACE\": 286, \"HISPANIC\": 2343, \"MALES\": 7820, \"FEMALES\": 8285, \"AGE_UNDER5\": 1320, \"AGE_5_17\": 2740, \"AGE_18_21\": 1097, \"AGE_22_29\": 2077, \"AGE_30_39\": 2267, \"AGE_40_49\": 2006, \"AGE_50_64\": 2155, \"AGE_65_UP\": 2443, \"MED_AGE\": 33.500000, \"MED_AGE_M\": 31.000000, \"MED_AGE_F\": 36.100000, \"HOUSEHOLDS\": 6066, \"AVE_HH_SZ\": 2.590000, \"HSEHLD_1_M\": 562, \"HSEHLD_1_F\": 1046, \"MARHH_CHD\": 1154, \"MARHH_NO_C\": 1634, \"MHH_CHILD\": 170, \"FHH_CHILD\": 599, \"FAMILIES\": 4156, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 6550, \"VACANT\": 484, \"OWNER_OCC\": 3551, \"RENTER_OCC\": 2515 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.452352999947948, 35.488987996254274 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Smyrna\", \"CLASS\": \"town\", \"ST\": \"TN\", \"STFIPS\": \"47\", \"PLACEFIP\": \"69420\", \"CAPITAL\": \"N\", \"AREALAND\": 22.834000, \"AREAWATER\": 0.135000, \"POP_CL\": 6, \"POP2000\": 25569, \"WHITE\": 22303, \"BLACK\": 1999, \"AMERI_ES\": 73, \"ASIAN\": 310, \"HAWN_PI\": 20, \"OTHER\": 464, \"MULT_RACE\": 400, \"HISPANIC\": 1101, \"MALES\": 12516, \"FEMALES\": 13053, \"AGE_UNDER5\": 2202, \"AGE_5_17\": 4859, \"AGE_18_21\": 1591, \"AGE_22_29\": 3331, \"AGE_30_39\": 4623, \"AGE_40_49\": 3877, \"AGE_50_64\": 3339, \"AGE_65_UP\": 1747, \"MED_AGE\": 31.700000, \"MED_AGE_M\": 30.800000, \"MED_AGE_F\": 32.700000, \"HOUSEHOLDS\": 9608, \"AVE_HH_SZ\": 2.620000, \"HSEHLD_1_M\": 933, \"HSEHLD_1_F\": 1093, \"MARHH_CHD\": 2645, \"MARHH_NO_C\": 2635, \"MHH_CHILD\": 243, \"FHH_CHILD\": 938, \"FAMILIES\": 7062, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 10016, \"VACANT\": 408, \"OWNER_OCC\": 6194, \"RENTER_OCC\": 3414 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.521108000083359, 35.979573996340065 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Soddy-Daisy\", \"CLASS\": \"city\", \"ST\": \"TN\", \"STFIPS\": \"47\", \"PLACEFIP\": \"69560\", \"CAPITAL\": \"N\", \"AREALAND\": 23.034000, \"AREAWATER\": 0.790000, \"POP_CL\": 6, \"POP2000\": 11530, \"WHITE\": 11317, \"BLACK\": 69, \"AMERI_ES\": 28, \"ASIAN\": 22, \"HAWN_PI\": 1, \"OTHER\": 20, \"MULT_RACE\": 73, \"HISPANIC\": 92, \"MALES\": 5564, \"FEMALES\": 5966, \"AGE_UNDER5\": 774, \"AGE_5_17\": 1883, \"AGE_18_21\": 531, \"AGE_22_29\": 1293, \"AGE_30_39\": 1629, \"AGE_40_49\": 1770, \"AGE_50_64\": 2089, \"AGE_65_UP\": 1561, \"MED_AGE\": 37.700000, \"MED_AGE_M\": 35.900000, \"MED_AGE_F\": 39.700000, \"HOUSEHOLDS\": 4511, \"AVE_HH_SZ\": 2.530000, \"HSEHLD_1_M\": 389, \"HSEHLD_1_F\": 594, \"MARHH_CHD\": 1096, \"MARHH_NO_C\": 1604, \"MHH_CHILD\": 91, \"FHH_CHILD\": 239, \"FAMILIES\": 3392, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 4809, \"VACANT\": 298, \"OWNER_OCC\": 3569, \"RENTER_OCC\": 942 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -85.176996007098651, 35.258537989709417 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Springfield\", \"CLASS\": \"city\", \"ST\": \"TN\", \"STFIPS\": \"47\", \"PLACEFIP\": \"70500\", \"CAPITAL\": \"N\", \"AREALAND\": 12.206000, \"AREAWATER\": 0.003000, \"POP_CL\": 6, \"POP2000\": 14329, \"WHITE\": 10111, \"BLACK\": 3712, \"AMERI_ES\": 53, \"ASIAN\": 80, \"HAWN_PI\": 5, \"OTHER\": 252, \"MULT_RACE\": 116, \"HISPANIC\": 995, \"MALES\": 6901, \"FEMALES\": 7428, \"AGE_UNDER5\": 1084, \"AGE_5_17\": 2471, \"AGE_18_21\": 917, \"AGE_22_29\": 1721, \"AGE_30_39\": 2104, \"AGE_40_49\": 1979, \"AGE_50_64\": 1966, \"AGE_65_UP\": 2087, \"MED_AGE\": 34.700000, \"MED_AGE_M\": 31.900000, \"MED_AGE_F\": 37.100000, \"HOUSEHOLDS\": 5453, \"AVE_HH_SZ\": 2.550000, \"HSEHLD_1_M\": 509, \"HSEHLD_1_F\": 898, \"MARHH_CHD\": 1001, \"MARHH_NO_C\": 1490, \"MHH_CHILD\": 127, \"FHH_CHILD\": 606, \"FAMILIES\": 3777, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 5836, \"VACANT\": 383, \"OWNER_OCC\": 3169, \"RENTER_OCC\": 2284 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.878716999866754, 36.499507997272325 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Tullahoma\", \"CLASS\": \"city\", \"ST\": \"TN\", \"STFIPS\": \"47\", \"PLACEFIP\": \"75320\", \"CAPITAL\": \"N\", \"AREALAND\": 22.227000, \"AREAWATER\": 0.098000, \"POP_CL\": 6, \"POP2000\": 17994, \"WHITE\": 16139, \"BLACK\": 1216, \"AMERI_ES\": 51, \"ASIAN\": 181, \"HAWN_PI\": 9, \"OTHER\": 116, \"MULT_RACE\": 282, \"HISPANIC\": 307, \"MALES\": 8548, \"FEMALES\": 9446, \"AGE_UNDER5\": 1201, \"AGE_5_17\": 3370, \"AGE_18_21\": 926, \"AGE_22_29\": 1699, \"AGE_30_39\": 2328, \"AGE_40_49\": 2676, \"AGE_50_64\": 2904, \"AGE_65_UP\": 2890, \"MED_AGE\": 38.100000, \"MED_AGE_M\": 36.300000, \"MED_AGE_F\": 39.600000, \"HOUSEHOLDS\": 7336, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 784, \"HSEHLD_1_F\": 1222, \"MARHH_CHD\": 1583, \"MARHH_NO_C\": 2223, \"MHH_CHILD\": 147, \"FHH_CHILD\": 638, \"FAMILIES\": 5043, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 7890, \"VACANT\": 554, \"OWNER_OCC\": 4824, \"RENTER_OCC\": 2512 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -86.213258000348929, 35.368510995424344 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Union City\", \"CLASS\": \"city\", \"ST\": \"TN\", \"STFIPS\": \"47\", \"PLACEFIP\": \"75940\", \"CAPITAL\": \"N\", \"AREALAND\": 10.662000, \"AREAWATER\": 0.005000, \"POP_CL\": 6, \"POP2000\": 10876, \"WHITE\": 8205, \"BLACK\": 2316, \"AMERI_ES\": 24, \"ASIAN\": 31, \"HAWN_PI\": 14, \"OTHER\": 173, \"MULT_RACE\": 113, \"HISPANIC\": 371, \"MALES\": 5080, \"FEMALES\": 5796, \"AGE_UNDER5\": 739, \"AGE_5_17\": 1823, \"AGE_18_21\": 593, \"AGE_22_29\": 1231, \"AGE_30_39\": 1366, \"AGE_40_49\": 1554, \"AGE_50_64\": 1672, \"AGE_65_UP\": 1898, \"MED_AGE\": 37.800000, \"MED_AGE_M\": 34.500000, \"MED_AGE_F\": 40.600000, \"HOUSEHOLDS\": 4568, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 512, \"HSEHLD_1_F\": 983, \"MARHH_CHD\": 813, \"MARHH_NO_C\": 1224, \"MHH_CHILD\": 97, \"FHH_CHILD\": 448, \"FAMILIES\": 2903, \"AVE_FAM_SZ\": 2.890000, \"HSE_UNITS\": 5013, \"VACANT\": 445, \"OWNER_OCC\": 2517, \"RENTER_OCC\": 2051 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.050849999911364, 36.424394999799489 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Abilene\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"01000\", \"CAPITAL\": \"N\", \"AREALAND\": 105.131000, \"AREAWATER\": 5.479000, \"POP_CL\": 8, \"POP2000\": 115930, \"WHITE\": 90502, \"BLACK\": 10215, \"AMERI_ES\": 642, \"ASIAN\": 1543, \"HAWN_PI\": 81, \"OTHER\": 10117, \"MULT_RACE\": 2830, \"HISPANIC\": 22548, \"MALES\": 58529, \"FEMALES\": 57401, \"AGE_UNDER5\": 8283, \"AGE_5_17\": 21440, \"AGE_18_21\": 10692, \"AGE_22_29\": 15762, \"AGE_30_39\": 16300, \"AGE_40_49\": 15593, \"AGE_50_64\": 13936, \"AGE_65_UP\": 13924, \"MED_AGE\": 31.100000, \"MED_AGE_M\": 29.600000, \"MED_AGE_F\": 33.000000, \"HOUSEHOLDS\": 41570, \"AVE_HH_SZ\": 2.530000, \"HSEHLD_1_M\": 4595, \"HSEHLD_1_F\": 6445, \"MARHH_CHD\": 10080, \"MARHH_NO_C\": 11548, \"MHH_CHILD\": 940, \"FHH_CHILD\": 3202, \"FAMILIES\": 28081, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 45618, \"VACANT\": 4048, \"OWNER_OCC\": 24363, \"RENTER_OCC\": 17207 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -99.745482001393242, 32.446424996571857 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Addison\", \"CLASS\": \"town\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"01240\", \"CAPITAL\": \"N\", \"AREALAND\": 4.427000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14166, \"WHITE\": 9603, \"BLACK\": 1364, \"AMERI_ES\": 58, \"ASIAN\": 1107, \"HAWN_PI\": 15, \"OTHER\": 1529, \"MULT_RACE\": 490, \"HISPANIC\": 3406, \"MALES\": 7392, \"FEMALES\": 6774, \"AGE_UNDER5\": 937, \"AGE_5_17\": 1327, \"AGE_18_21\": 683, \"AGE_22_29\": 3429, \"AGE_30_39\": 3336, \"AGE_40_49\": 1942, \"AGE_50_64\": 1850, \"AGE_65_UP\": 662, \"MED_AGE\": 31.600000, \"MED_AGE_M\": 31.500000, \"MED_AGE_F\": 31.600000, \"HOUSEHOLDS\": 7621, \"AVE_HH_SZ\": 1.860000, \"HSEHLD_1_M\": 2073, \"HSEHLD_1_F\": 1673, \"MARHH_CHD\": 818, \"MARHH_NO_C\": 1383, \"MHH_CHILD\": 125, \"FHH_CHILD\": 365, \"FAMILIES\": 3077, \"AVE_FAM_SZ\": 2.740000, \"HSE_UNITS\": 8205, \"VACANT\": 584, \"OWNER_OCC\": 1576, \"RENTER_OCC\": 6045 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.835132000100543, 32.95772699987549 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Alamo\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"01576\", \"CAPITAL\": \"N\", \"AREALAND\": 5.719000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14760, \"WHITE\": 12341, \"BLACK\": 31, \"AMERI_ES\": 63, \"ASIAN\": 13, \"HAWN_PI\": 0, \"OTHER\": 2026, \"MULT_RACE\": 286, \"HISPANIC\": 11528, \"MALES\": 7127, \"FEMALES\": 7633, \"AGE_UNDER5\": 1253, \"AGE_5_17\": 3174, \"AGE_18_21\": 850, \"AGE_22_29\": 1576, \"AGE_30_39\": 1647, \"AGE_40_49\": 1473, \"AGE_50_64\": 1870, \"AGE_65_UP\": 2917, \"MED_AGE\": 33.000000, \"MED_AGE_M\": 30.900000, \"MED_AGE_F\": 34.900000, \"HOUSEHOLDS\": 4621, \"AVE_HH_SZ\": 3.190000, \"HSEHLD_1_M\": 271, \"HSEHLD_1_F\": 425, \"MARHH_CHD\": 1273, \"MARHH_NO_C\": 1788, \"MHH_CHILD\": 70, \"FHH_CHILD\": 342, \"FAMILIES\": 3827, \"AVE_FAM_SZ\": 3.570000, \"HSE_UNITS\": 6208, \"VACANT\": 1587, \"OWNER_OCC\": 3695, \"RENTER_OCC\": 926 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -98.117892000700991, 26.185112999666007 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Aldine\", \"CLASS\": \"CDP\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"01696\", \"CAPITAL\": \"N\", \"AREALAND\": 8.095000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 13979, \"WHITE\": 8289, \"BLACK\": 816, \"AMERI_ES\": 97, \"ASIAN\": 477, \"HAWN_PI\": 10, \"OTHER\": 3856, \"MULT_RACE\": 434, \"HISPANIC\": 7875, \"MALES\": 7249, \"FEMALES\": 6730, \"AGE_UNDER5\": 1287, \"AGE_5_17\": 3336, \"AGE_18_21\": 957, \"AGE_22_29\": 1707, \"AGE_30_39\": 2184, \"AGE_40_49\": 1876, \"AGE_50_64\": 1611, \"AGE_65_UP\": 1021, \"MED_AGE\": 28.500000, \"MED_AGE_M\": 28.100000, \"MED_AGE_F\": 29.000000, \"HOUSEHOLDS\": 4007, \"AVE_HH_SZ\": 3.440000, \"HSEHLD_1_M\": 356, \"HSEHLD_1_F\": 307, \"MARHH_CHD\": 1416, \"MARHH_NO_C\": 1024, \"MHH_CHILD\": 123, \"FHH_CHILD\": 270, \"FAMILIES\": 3193, \"AVE_FAM_SZ\": 3.860000, \"HSE_UNITS\": 4403, \"VACANT\": 396, \"OWNER_OCC\": 2862, \"RENTER_OCC\": 1145 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.379834000005516, 29.9191359999942 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Alice\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"01852\", \"CAPITAL\": \"N\", \"AREALAND\": 11.900000, \"AREAWATER\": 0.400000, \"POP_CL\": 6, \"POP2000\": 19010, \"WHITE\": 14722, \"BLACK\": 164, \"AMERI_ES\": 100, \"ASIAN\": 143, \"HAWN_PI\": 16, \"OTHER\": 3406, \"MULT_RACE\": 459, \"HISPANIC\": 14837, \"MALES\": 9055, \"FEMALES\": 9955, \"AGE_UNDER5\": 1589, \"AGE_5_17\": 4175, \"AGE_18_21\": 1063, \"AGE_22_29\": 1960, \"AGE_30_39\": 2439, \"AGE_40_49\": 2526, \"AGE_50_64\": 2654, \"AGE_65_UP\": 2604, \"MED_AGE\": 32.900000, \"MED_AGE_M\": 30.900000, \"MED_AGE_F\": 34.800000, \"HOUSEHOLDS\": 6400, \"AVE_HH_SZ\": 2.920000, \"HSEHLD_1_M\": 522, \"HSEHLD_1_F\": 818, \"MARHH_CHD\": 1723, \"MARHH_NO_C\": 1763, \"MHH_CHILD\": 143, \"FHH_CHILD\": 629, \"FAMILIES\": 4913, \"AVE_FAM_SZ\": 3.390000, \"HSE_UNITS\": 6998, \"VACANT\": 598, \"OWNER_OCC\": 4423, \"RENTER_OCC\": 1977 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -98.070460000659338, 27.750651999619581 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Allen\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"01924\", \"CAPITAL\": \"N\", \"AREALAND\": 26.338000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 43554, \"WHITE\": 37953, \"BLACK\": 1915, \"AMERI_ES\": 228, \"ASIAN\": 1625, \"HAWN_PI\": 20, \"OTHER\": 1051, \"MULT_RACE\": 762, \"HISPANIC\": 3038, \"MALES\": 21743, \"FEMALES\": 21811, \"AGE_UNDER5\": 4648, \"AGE_5_17\": 10562, \"AGE_18_21\": 1462, \"AGE_22_29\": 3926, \"AGE_30_39\": 10138, \"AGE_40_49\": 7545, \"AGE_50_64\": 4045, \"AGE_65_UP\": 1228, \"MED_AGE\": 31.400000, \"MED_AGE_M\": 31.300000, \"MED_AGE_F\": 31.500000, \"HOUSEHOLDS\": 14205, \"AVE_HH_SZ\": 3.070000, \"HSEHLD_1_M\": 858, \"HSEHLD_1_F\": 836, \"MARHH_CHD\": 6893, \"MARHH_NO_C\": 3705, \"MHH_CHILD\": 262, \"FHH_CHILD\": 731, \"FAMILIES\": 12045, \"AVE_FAM_SZ\": 3.350000, \"HSE_UNITS\": 15227, \"VACANT\": 1022, \"OWNER_OCC\": 12172, \"RENTER_OCC\": 2033 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.662922000075028, 33.09974799990399 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Alvin\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"02272\", \"CAPITAL\": \"N\", \"AREALAND\": 16.435000, \"AREAWATER\": 0.906000, \"POP_CL\": 6, \"POP2000\": 21413, \"WHITE\": 17618, \"BLACK\": 452, \"AMERI_ES\": 105, \"ASIAN\": 170, \"HAWN_PI\": 12, \"OTHER\": 2329, \"MULT_RACE\": 727, \"HISPANIC\": 6014, \"MALES\": 10516, \"FEMALES\": 10897, \"AGE_UNDER5\": 1892, \"AGE_5_17\": 4477, \"AGE_18_21\": 1339, \"AGE_22_29\": 2744, \"AGE_30_39\": 3239, \"AGE_40_49\": 2929, \"AGE_50_64\": 2786, \"AGE_65_UP\": 2007, \"MED_AGE\": 30.700000, \"MED_AGE_M\": 29.600000, \"MED_AGE_F\": 31.900000, \"HOUSEHOLDS\": 7826, \"AVE_HH_SZ\": 2.710000, \"HSEHLD_1_M\": 830, \"HSEHLD_1_F\": 1003, \"MARHH_CHD\": 2155, \"MARHH_NO_C\": 1909, \"MHH_CHILD\": 267, \"FHH_CHILD\": 656, \"FAMILIES\": 5600, \"AVE_FAM_SZ\": 3.220000, \"HSE_UNITS\": 8442, \"VACANT\": 616, \"OWNER_OCC\": 4292, \"RENTER_OCC\": 3534 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.271588000004172, 29.393697999995684 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Amarillo\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"03000\", \"CAPITAL\": \"N\", \"AREALAND\": 89.863000, \"AREAWATER\": 0.446000, \"POP_CL\": 8, \"POP2000\": 173627, \"WHITE\": 134563, \"BLACK\": 10358, \"AMERI_ES\": 1346, \"ASIAN\": 3563, \"HAWN_PI\": 64, \"OTHER\": 19663, \"MULT_RACE\": 4070, \"HISPANIC\": 37947, \"MALES\": 83370, \"FEMALES\": 90257, \"AGE_UNDER5\": 13911, \"AGE_5_17\": 34512, \"AGE_18_21\": 10285, \"AGE_22_29\": 19862, \"AGE_30_39\": 24381, \"AGE_40_49\": 25152, \"AGE_50_64\": 23629, \"AGE_65_UP\": 21895, \"MED_AGE\": 33.500000, \"MED_AGE_M\": 32.100000, \"MED_AGE_F\": 34.800000, \"HOUSEHOLDS\": 67699, \"AVE_HH_SZ\": 2.530000, \"HSEHLD_1_M\": 7872, \"HSEHLD_1_F\": 10848, \"MARHH_CHD\": 15903, \"MARHH_NO_C\": 18366, \"MHH_CHILD\": 1597, \"FHH_CHILD\": 5462, \"FAMILIES\": 45768, \"AVE_FAM_SZ\": 3.100000, \"HSE_UNITS\": 72408, \"VACANT\": 4709, \"OWNER_OCC\": 42866, \"RENTER_OCC\": 24833 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -101.845162966397339, 35.199251979740481 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Angleton\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"03264\", \"CAPITAL\": \"N\", \"AREALAND\": 10.563000, \"AREAWATER\": 0.021000, \"POP_CL\": 6, \"POP2000\": 18130, \"WHITE\": 13636, \"BLACK\": 2063, \"AMERI_ES\": 85, \"ASIAN\": 203, \"HAWN_PI\": 7, \"OTHER\": 1746, \"MULT_RACE\": 390, \"HISPANIC\": 4205, \"MALES\": 8783, \"FEMALES\": 9347, \"AGE_UNDER5\": 1403, \"AGE_5_17\": 4007, \"AGE_18_21\": 933, \"AGE_22_29\": 1930, \"AGE_30_39\": 2750, \"AGE_40_49\": 2841, \"AGE_50_64\": 2309, \"AGE_65_UP\": 1957, \"MED_AGE\": 33.300000, \"MED_AGE_M\": 32.000000, \"MED_AGE_F\": 34.500000, \"HOUSEHOLDS\": 6508, \"AVE_HH_SZ\": 2.750000, \"HSEHLD_1_M\": 588, \"HSEHLD_1_F\": 793, \"MARHH_CHD\": 1898, \"MARHH_NO_C\": 1778, \"MHH_CHILD\": 178, \"FHH_CHILD\": 590, \"FAMILIES\": 4891, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 7220, \"VACANT\": 712, \"OWNER_OCC\": 4499, \"RENTER_OCC\": 2009 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.428122000006439, 29.166477999994076 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Arlington\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"04000\", \"CAPITAL\": \"N\", \"AREALAND\": 95.818000, \"AREAWATER\": 3.206000, \"POP_CL\": 8, \"POP2000\": 332969, \"WHITE\": 225379, \"BLACK\": 45727, \"AMERI_ES\": 1817, \"ASIAN\": 20015, \"HAWN_PI\": 475, \"OTHER\": 29763, \"MULT_RACE\": 9793, \"HISPANIC\": 60817, \"MALES\": 166465, \"FEMALES\": 166504, \"AGE_UNDER5\": 27755, \"AGE_5_17\": 66443, \"AGE_18_21\": 20158, \"AGE_22_29\": 47688, \"AGE_30_39\": 60796, \"AGE_40_49\": 49202, \"AGE_50_64\": 40488, \"AGE_65_UP\": 20439, \"MED_AGE\": 30.700000, \"MED_AGE_M\": 30.200000, \"MED_AGE_F\": 31.200000, \"HOUSEHOLDS\": 124686, \"AVE_HH_SZ\": 2.650000, \"HSEHLD_1_M\": 15801, \"HSEHLD_1_F\": 14982, \"MARHH_CHD\": 34413, \"MARHH_NO_C\": 29958, \"MHH_CHILD\": 2953, \"FHH_CHILD\": 10000, \"FAMILIES\": 85000, \"AVE_FAM_SZ\": 3.200000, \"HSE_UNITS\": 130628, \"VACANT\": 5942, \"OWNER_OCC\": 68256, \"RENTER_OCC\": 56430 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.122839000158592, 32.70503299981285 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Atascocita\", \"CLASS\": \"CDP\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"04462\", \"CAPITAL\": \"N\", \"AREALAND\": 27.583000, \"AREAWATER\": 0.007000, \"POP_CL\": 6, \"POP2000\": 35757, \"WHITE\": 27876, \"BLACK\": 4648, \"AMERI_ES\": 114, \"ASIAN\": 874, \"HAWN_PI\": 15, \"OTHER\": 1444, \"MULT_RACE\": 786, \"HISPANIC\": 4297, \"MALES\": 18877, \"FEMALES\": 16880, \"AGE_UNDER5\": 2707, \"AGE_5_17\": 8009, \"AGE_18_21\": 1995, \"AGE_22_29\": 3676, \"AGE_30_39\": 6782, \"AGE_40_49\": 6575, \"AGE_50_64\": 4671, \"AGE_65_UP\": 1342, \"MED_AGE\": 32.300000, \"MED_AGE_M\": 31.700000, \"MED_AGE_F\": 33.000000, \"HOUSEHOLDS\": 11006, \"AVE_HH_SZ\": 3.030000, \"HSEHLD_1_M\": 606, \"HSEHLD_1_F\": 632, \"MARHH_CHD\": 4656, \"MARHH_NO_C\": 3468, \"MHH_CHILD\": 206, \"FHH_CHILD\": 647, \"FAMILIES\": 9431, \"AVE_FAM_SZ\": 3.280000, \"HSE_UNITS\": 11342, \"VACANT\": 336, \"OWNER_OCC\": 9612, \"RENTER_OCC\": 1394 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.182054000003149, 29.993364999996242 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Athens\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"04504\", \"CAPITAL\": \"N\", \"AREALAND\": 14.618000, \"AREAWATER\": 2.350000, \"POP_CL\": 6, \"POP2000\": 11297, \"WHITE\": 8150, \"BLACK\": 2172, \"AMERI_ES\": 35, \"ASIAN\": 72, \"HAWN_PI\": 7, \"OTHER\": 697, \"MULT_RACE\": 164, \"HISPANIC\": 1962, \"MALES\": 5356, \"FEMALES\": 5941, \"AGE_UNDER5\": 894, \"AGE_5_17\": 2089, \"AGE_18_21\": 869, \"AGE_22_29\": 1126, \"AGE_30_39\": 1466, \"AGE_40_49\": 1328, \"AGE_50_64\": 1502, \"AGE_65_UP\": 2023, \"MED_AGE\": 34.700000, \"MED_AGE_M\": 31.400000, \"MED_AGE_F\": 38.300000, \"HOUSEHOLDS\": 4110, \"AVE_HH_SZ\": 2.550000, \"HSEHLD_1_M\": 375, \"HSEHLD_1_F\": 801, \"MARHH_CHD\": 892, \"MARHH_NO_C\": 1127, \"MHH_CHILD\": 86, \"FHH_CHILD\": 365, \"FAMILIES\": 2807, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 4549, \"VACANT\": 439, \"OWNER_OCC\": 2431, \"RENTER_OCC\": 1679 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.849140000015936, 32.202781999979926 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Austin\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"05000\", \"CAPITAL\": \"Y\", \"AREALAND\": 251.518000, \"AREAWATER\": 6.908000, \"POP_CL\": 9, \"POP2000\": 656562, \"WHITE\": 429100, \"BLACK\": 65956, \"AMERI_ES\": 3889, \"ASIAN\": 30960, \"HAWN_PI\": 469, \"OTHER\": 106538, \"MULT_RACE\": 19650, \"HISPANIC\": 200579, \"MALES\": 337569, \"FEMALES\": 318993, \"AGE_UNDER5\": 46715, \"AGE_5_17\": 100833, \"AGE_18_21\": 60135, \"AGE_22_29\": 126084, \"AGE_30_39\": 116970, \"AGE_40_49\": 92253, \"AGE_50_64\": 69667, \"AGE_65_UP\": 43905, \"MED_AGE\": 29.600000, \"MED_AGE_M\": 29.100000, \"MED_AGE_F\": 30.200000, \"HOUSEHOLDS\": 265649, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 44640, \"HSEHLD_1_F\": 42386, \"MARHH_CHD\": 49148, \"MARHH_NO_C\": 51950, \"MHH_CHILD\": 4745, \"FHH_CHILD\": 17387, \"FAMILIES\": 141589, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 276842, \"VACANT\": 11193, \"OWNER_OCC\": 119102, \"RENTER_OCC\": 146547 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.747247000416635, 30.30047399965942 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Balch Springs\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"05372\", \"CAPITAL\": \"N\", \"AREALAND\": 8.057000, \"AREAWATER\": 0.007000, \"POP_CL\": 6, \"POP2000\": 19375, \"WHITE\": 12186, \"BLACK\": 3589, \"AMERI_ES\": 189, \"ASIAN\": 123, \"HAWN_PI\": 5, \"OTHER\": 2723, \"MULT_RACE\": 560, \"HISPANIC\": 4983, \"MALES\": 9494, \"FEMALES\": 9881, \"AGE_UNDER5\": 1735, \"AGE_5_17\": 4881, \"AGE_18_21\": 1263, \"AGE_22_29\": 2363, \"AGE_30_39\": 3143, \"AGE_40_49\": 2695, \"AGE_50_64\": 2172, \"AGE_65_UP\": 1123, \"MED_AGE\": 28.400000, \"MED_AGE_M\": 27.400000, \"MED_AGE_F\": 29.200000, \"HOUSEHOLDS\": 6175, \"AVE_HH_SZ\": 3.130000, \"HSEHLD_1_M\": 536, \"HSEHLD_1_F\": 493, \"MARHH_CHD\": 1827, \"MARHH_NO_C\": 1311, \"MHH_CHILD\": 233, \"FHH_CHILD\": 815, \"FAMILIES\": 4830, \"AVE_FAM_SZ\": 3.490000, \"HSE_UNITS\": 6504, \"VACANT\": 329, \"OWNER_OCC\": 3633, \"RENTER_OCC\": 2542 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.615154000070675, 32.717380999914432 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bay City\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"05984\", \"CAPITAL\": \"N\", \"AREALAND\": 8.500000, \"AREAWATER\": 0.011000, \"POP_CL\": 6, \"POP2000\": 18667, \"WHITE\": 11502, \"BLACK\": 3221, \"AMERI_ES\": 139, \"ASIAN\": 165, \"HAWN_PI\": 13, \"OTHER\": 3143, \"MULT_RACE\": 484, \"HISPANIC\": 6484, \"MALES\": 9092, \"FEMALES\": 9575, \"AGE_UNDER5\": 1514, \"AGE_5_17\": 4260, \"AGE_18_21\": 1110, \"AGE_22_29\": 1908, \"AGE_30_39\": 2596, \"AGE_40_49\": 2742, \"AGE_50_64\": 2469, \"AGE_65_UP\": 2068, \"MED_AGE\": 32.300000, \"MED_AGE_M\": 31.100000, \"MED_AGE_F\": 33.400000, \"HOUSEHOLDS\": 6912, \"AVE_HH_SZ\": 2.660000, \"HSEHLD_1_M\": 850, \"HSEHLD_1_F\": 1025, \"MARHH_CHD\": 1714, \"MARHH_NO_C\": 1605, \"MHH_CHILD\": 183, \"FHH_CHILD\": 726, \"FAMILIES\": 4768, \"AVE_FAM_SZ\": 3.250000, \"HSE_UNITS\": 8113, \"VACANT\": 1201, \"OWNER_OCC\": 3635, \"RENTER_OCC\": 3277 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.964459000023041, 28.980765999982275 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Baytown\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"06128\", \"CAPITAL\": \"N\", \"AREALAND\": 32.654000, \"AREAWATER\": 0.496000, \"POP_CL\": 7, \"POP2000\": 66430, \"WHITE\": 45088, \"BLACK\": 8888, \"AMERI_ES\": 337, \"ASIAN\": 651, \"HAWN_PI\": 51, \"OTHER\": 9578, \"MULT_RACE\": 1837, \"HISPANIC\": 22748, \"MALES\": 32250, \"FEMALES\": 34180, \"AGE_UNDER5\": 5799, \"AGE_5_17\": 14121, \"AGE_18_21\": 4305, \"AGE_22_29\": 8376, \"AGE_30_39\": 9554, \"AGE_40_49\": 9143, \"AGE_50_64\": 8503, \"AGE_65_UP\": 6629, \"MED_AGE\": 30.600000, \"MED_AGE_M\": 29.900000, \"MED_AGE_F\": 31.400000, \"HOUSEHOLDS\": 23483, \"AVE_HH_SZ\": 2.800000, \"HSEHLD_1_M\": 2486, \"HSEHLD_1_F\": 2908, \"MARHH_CHD\": 6393, \"MARHH_NO_C\": 6041, \"MHH_CHILD\": 679, \"FHH_CHILD\": 2124, \"FAMILIES\": 17020, \"AVE_FAM_SZ\": 3.320000, \"HSE_UNITS\": 26203, \"VACANT\": 2720, \"OWNER_OCC\": 13988, \"RENTER_OCC\": 9495 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.965767000001648, 29.743751999997698 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Beaumont\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"07000\", \"CAPITAL\": \"N\", \"AREALAND\": 85.014000, \"AREAWATER\": 0.921000, \"POP_CL\": 8, \"POP2000\": 113866, \"WHITE\": 52826, \"BLACK\": 52206, \"AMERI_ES\": 269, \"ASIAN\": 2827, \"HAWN_PI\": 46, \"OTHER\": 4038, \"MULT_RACE\": 1654, \"HISPANIC\": 9028, \"MALES\": 54142, \"FEMALES\": 59724, \"AGE_UNDER5\": 8107, \"AGE_5_17\": 22745, \"AGE_18_21\": 6977, \"AGE_22_29\": 12333, \"AGE_30_39\": 15725, \"AGE_40_49\": 16695, \"AGE_50_64\": 16065, \"AGE_65_UP\": 15219, \"MED_AGE\": 34.500000, \"MED_AGE_M\": 32.600000, \"MED_AGE_F\": 36.200000, \"HOUSEHOLDS\": 44361, \"AVE_HH_SZ\": 2.500000, \"HSEHLD_1_M\": 5667, \"HSEHLD_1_F\": 7436, \"MARHH_CHD\": 8441, \"MARHH_NO_C\": 10850, \"MHH_CHILD\": 819, \"FHH_CHILD\": 4851, \"FAMILIES\": 29113, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 48815, \"VACANT\": 4454, \"OWNER_OCC\": 26557, \"RENTER_OCC\": 17804 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.126653, 30.079911999999201 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bedford\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"07132\", \"CAPITAL\": \"N\", \"AREALAND\": 10.003000, \"AREAWATER\": 0.007000, \"POP_CL\": 6, \"POP2000\": 47152, \"WHITE\": 41320, \"BLACK\": 1722, \"AMERI_ES\": 239, \"ASIAN\": 1708, \"HAWN_PI\": 119, \"OTHER\": 1151, \"MULT_RACE\": 893, \"HISPANIC\": 3403, \"MALES\": 22718, \"FEMALES\": 24434, \"AGE_UNDER5\": 2789, \"AGE_5_17\": 7839, \"AGE_18_21\": 2485, \"AGE_22_29\": 5950, \"AGE_30_39\": 7576, \"AGE_40_49\": 8116, \"AGE_50_64\": 8291, \"AGE_65_UP\": 4106, \"MED_AGE\": 36.200000, \"MED_AGE_M\": 35.200000, \"MED_AGE_F\": 37.100000, \"HOUSEHOLDS\": 20251, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 2936, \"HSEHLD_1_F\": 3466, \"MARHH_CHD\": 4394, \"MARHH_NO_C\": 5698, \"MHH_CHILD\": 350, \"FHH_CHILD\": 1129, \"FAMILIES\": 12517, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 21113, \"VACANT\": 862, \"OWNER_OCC\": 11142, \"RENTER_OCC\": 9109 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.139630000161034, 32.846789999805608 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Beeville\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"07192\", \"CAPITAL\": \"N\", \"AREALAND\": 6.107000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 13129, \"WHITE\": 9464, \"BLACK\": 377, \"AMERI_ES\": 78, \"ASIAN\": 90, \"HAWN_PI\": 6, \"OTHER\": 2708, \"MULT_RACE\": 406, \"HISPANIC\": 8884, \"MALES\": 6187, \"FEMALES\": 6942, \"AGE_UNDER5\": 1198, \"AGE_5_17\": 2887, \"AGE_18_21\": 900, \"AGE_22_29\": 1427, \"AGE_30_39\": 1738, \"AGE_40_49\": 1694, \"AGE_50_64\": 1742, \"AGE_65_UP\": 1543, \"MED_AGE\": 30.900000, \"MED_AGE_M\": 29.400000, \"MED_AGE_F\": 32.600000, \"HOUSEHOLDS\": 4697, \"AVE_HH_SZ\": 2.730000, \"HSEHLD_1_M\": 465, \"HSEHLD_1_F\": 762, \"MARHH_CHD\": 1114, \"MARHH_NO_C\": 1024, \"MHH_CHILD\": 149, \"FHH_CHILD\": 588, \"FAMILIES\": 3288, \"AVE_FAM_SZ\": 3.300000, \"HSE_UNITS\": 5539, \"VACANT\": 842, \"OWNER_OCC\": 2637, \"RENTER_OCC\": 2060 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.750757000443585, 28.405497999723341 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bellaire\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"07300\", \"CAPITAL\": \"N\", \"AREALAND\": 3.622000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 15642, \"WHITE\": 13939, \"BLACK\": 131, \"AMERI_ES\": 43, \"ASIAN\": 993, \"HAWN_PI\": 10, \"OTHER\": 289, \"MULT_RACE\": 237, \"HISPANIC\": 1221, \"MALES\": 7531, \"FEMALES\": 8111, \"AGE_UNDER5\": 1147, \"AGE_5_17\": 3163, \"AGE_18_21\": 365, \"AGE_22_29\": 917, \"AGE_30_39\": 2283, \"AGE_40_49\": 3368, \"AGE_50_64\": 2537, \"AGE_65_UP\": 1862, \"MED_AGE\": 39.800000, \"MED_AGE_M\": 38.800000, \"MED_AGE_F\": 40.600000, \"HOUSEHOLDS\": 6019, \"AVE_HH_SZ\": 2.580000, \"HSEHLD_1_M\": 521, \"HSEHLD_1_F\": 891, \"MARHH_CHD\": 1989, \"MARHH_NO_C\": 1698, \"MHH_CHILD\": 70, \"FHH_CHILD\": 278, \"FAMILIES\": 4319, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 6315, \"VACANT\": 296, \"OWNER_OCC\": 5006, \"RENTER_OCC\": 1013 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.463370000006918, 29.704029999993192 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Belton\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"07492\", \"CAPITAL\": \"N\", \"AREALAND\": 12.485000, \"AREAWATER\": 0.671000, \"POP_CL\": 6, \"POP2000\": 14623, \"WHITE\": 10627, \"BLACK\": 1184, \"AMERI_ES\": 93, \"ASIAN\": 139, \"HAWN_PI\": 15, \"OTHER\": 2169, \"MULT_RACE\": 396, \"HISPANIC\": 3675, \"MALES\": 7125, \"FEMALES\": 7498, \"AGE_UNDER5\": 1089, \"AGE_5_17\": 2840, \"AGE_18_21\": 1892, \"AGE_22_29\": 1816, \"AGE_30_39\": 1872, \"AGE_40_49\": 1769, \"AGE_50_64\": 1721, \"AGE_65_UP\": 1624, \"MED_AGE\": 28.400000, \"MED_AGE_M\": 27.100000, \"MED_AGE_F\": 30.000000, \"HOUSEHOLDS\": 4742, \"AVE_HH_SZ\": 2.690000, \"HSEHLD_1_M\": 428, \"HSEHLD_1_F\": 738, \"MARHH_CHD\": 1138, \"MARHH_NO_C\": 1227, \"MHH_CHILD\": 102, \"FHH_CHILD\": 531, \"FAMILIES\": 3321, \"AVE_FAM_SZ\": 3.230000, \"HSE_UNITS\": 5089, \"VACANT\": 347, \"OWNER_OCC\": 2662, \"RENTER_OCC\": 2080 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.463382000279509, 31.058903999745091 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Benbrook\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"07552\", \"CAPITAL\": \"N\", \"AREALAND\": 11.453000, \"AREAWATER\": 0.601000, \"POP_CL\": 6, \"POP2000\": 20208, \"WHITE\": 17844, \"BLACK\": 894, \"AMERI_ES\": 102, \"ASIAN\": 433, \"HAWN_PI\": 9, \"OTHER\": 548, \"MULT_RACE\": 378, \"HISPANIC\": 1406, \"MALES\": 9579, \"FEMALES\": 10629, \"AGE_UNDER5\": 1198, \"AGE_5_17\": 3305, \"AGE_18_21\": 829, \"AGE_22_29\": 2016, \"AGE_30_39\": 3028, \"AGE_40_49\": 3218, \"AGE_50_64\": 3644, \"AGE_65_UP\": 2970, \"MED_AGE\": 39.200000, \"MED_AGE_M\": 38.300000, \"MED_AGE_F\": 40.100000, \"HOUSEHOLDS\": 8599, \"AVE_HH_SZ\": 2.330000, \"HSEHLD_1_M\": 987, \"HSEHLD_1_F\": 1428, \"MARHH_CHD\": 1884, \"MARHH_NO_C\": 2929, \"MHH_CHILD\": 127, \"FHH_CHILD\": 436, \"FAMILIES\": 5781, \"AVE_FAM_SZ\": 2.860000, \"HSE_UNITS\": 8914, \"VACANT\": 315, \"OWNER_OCC\": 5674, \"RENTER_OCC\": 2925 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.45669200025182, 32.684657999702452 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Big Spring\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"08236\", \"CAPITAL\": \"N\", \"AREALAND\": 19.109000, \"AREAWATER\": 0.078000, \"POP_CL\": 6, \"POP2000\": 25233, \"WHITE\": 19352, \"BLACK\": 1339, \"AMERI_ES\": 150, \"ASIAN\": 159, \"HAWN_PI\": 4, \"OTHER\": 3635, \"MULT_RACE\": 594, \"HISPANIC\": 11265, \"MALES\": 14030, \"FEMALES\": 11203, \"AGE_UNDER5\": 1550, \"AGE_5_17\": 4409, \"AGE_18_21\": 1411, \"AGE_22_29\": 3061, \"AGE_30_39\": 4291, \"AGE_40_49\": 3657, \"AGE_50_64\": 3297, \"AGE_65_UP\": 3557, \"MED_AGE\": 35.100000, \"MED_AGE_M\": 34.000000, \"MED_AGE_F\": 37.500000, \"HOUSEHOLDS\": 8155, \"AVE_HH_SZ\": 2.510000, \"HSEHLD_1_M\": 881, \"HSEHLD_1_F\": 1498, \"MARHH_CHD\": 1738, \"MARHH_NO_C\": 2201, \"MHH_CHILD\": 228, \"FHH_CHILD\": 707, \"FAMILIES\": 5463, \"AVE_FAM_SZ\": 3.100000, \"HSE_UNITS\": 9865, \"VACANT\": 1710, \"OWNER_OCC\": 5190, \"RENTER_OCC\": 2965 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -101.475230991222958, 32.243197987525917 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Borger\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"09556\", \"CAPITAL\": \"N\", \"AREALAND\": 8.732000, \"AREAWATER\": 0.006000, \"POP_CL\": 6, \"POP2000\": 14302, \"WHITE\": 11835, \"BLACK\": 523, \"AMERI_ES\": 190, \"ASIAN\": 62, \"HAWN_PI\": 4, \"OTHER\": 1339, \"MULT_RACE\": 349, \"HISPANIC\": 2817, \"MALES\": 6978, \"FEMALES\": 7324, \"AGE_UNDER5\": 1104, \"AGE_5_17\": 2866, \"AGE_18_21\": 895, \"AGE_22_29\": 1412, \"AGE_30_39\": 1669, \"AGE_40_49\": 2050, \"AGE_50_64\": 1999, \"AGE_65_UP\": 2307, \"MED_AGE\": 36.000000, \"MED_AGE_M\": 33.900000, \"MED_AGE_F\": 37.400000, \"HOUSEHOLDS\": 5591, \"AVE_HH_SZ\": 2.520000, \"HSEHLD_1_M\": 606, \"HSEHLD_1_F\": 873, \"MARHH_CHD\": 1475, \"MARHH_NO_C\": 1764, \"MHH_CHILD\": 129, \"FHH_CHILD\": 346, \"FAMILIES\": 3996, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 6462, \"VACANT\": 871, \"OWNER_OCC\": 4170, \"RENTER_OCC\": 1421 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -101.401564980072209, 35.662788984141734 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Brenham\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"10156\", \"CAPITAL\": \"N\", \"AREALAND\": 8.762000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 13507, \"WHITE\": 9454, \"BLACK\": 2960, \"AMERI_ES\": 34, \"ASIAN\": 251, \"HAWN_PI\": 1, \"OTHER\": 642, \"MULT_RACE\": 165, \"HISPANIC\": 1384, \"MALES\": 6366, \"FEMALES\": 7141, \"AGE_UNDER5\": 830, \"AGE_5_17\": 2208, \"AGE_18_21\": 1653, \"AGE_22_29\": 1321, \"AGE_30_39\": 1649, \"AGE_40_49\": 1694, \"AGE_50_64\": 1700, \"AGE_65_UP\": 2452, \"MED_AGE\": 34.700000, \"MED_AGE_M\": 31.400000, \"MED_AGE_F\": 37.900000, \"HOUSEHOLDS\": 4907, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 525, \"HSEHLD_1_F\": 979, \"MARHH_CHD\": 950, \"MARHH_NO_C\": 1291, \"MHH_CHILD\": 73, \"FHH_CHILD\": 449, \"FAMILIES\": 3116, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 5317, \"VACANT\": 410, \"OWNER_OCC\": 2950, \"RENTER_OCC\": 1957 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.397004000053116, 30.161900999954796 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Brownsville\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"10768\", \"CAPITAL\": \"N\", \"AREALAND\": 80.399000, \"AREAWATER\": 2.619000, \"POP_CL\": 8, \"POP2000\": 139722, \"WHITE\": 114083, \"BLACK\": 575, \"AMERI_ES\": 580, \"ASIAN\": 752, \"HAWN_PI\": 46, \"OTHER\": 20486, \"MULT_RACE\": 3200, \"HISPANIC\": 127535, \"MALES\": 65783, \"FEMALES\": 73939, \"AGE_UNDER5\": 13801, \"AGE_5_17\": 34598, \"AGE_18_21\": 9222, \"AGE_22_29\": 17101, \"AGE_30_39\": 18899, \"AGE_40_49\": 16806, \"AGE_50_64\": 16013, \"AGE_65_UP\": 13282, \"MED_AGE\": 27.700000, \"MED_AGE_M\": 25.900000, \"MED_AGE_F\": 29.300000, \"HOUSEHOLDS\": 38174, \"AVE_HH_SZ\": 3.620000, \"HSEHLD_1_M\": 2068, \"HSEHLD_1_F\": 3157, \"MARHH_CHD\": 13903, \"MARHH_NO_C\": 8742, \"MHH_CHILD\": 712, \"FHH_CHILD\": 4495, \"FAMILIES\": 32188, \"AVE_FAM_SZ\": 3.990000, \"HSE_UNITS\": 42323, \"VACANT\": 4149, \"OWNER_OCC\": 23361, \"RENTER_OCC\": 14813 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.484424000316366, 25.930306999856089 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Brownwood\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"10780\", \"CAPITAL\": \"N\", \"AREALAND\": 12.599000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 18813, \"WHITE\": 15565, \"BLACK\": 1037, \"AMERI_ES\": 115, \"ASIAN\": 112, \"HAWN_PI\": 0, \"OTHER\": 1594, \"MULT_RACE\": 390, \"HISPANIC\": 4014, \"MALES\": 8943, \"FEMALES\": 9870, \"AGE_UNDER5\": 1288, \"AGE_5_17\": 3886, \"AGE_18_21\": 1623, \"AGE_22_29\": 1879, \"AGE_30_39\": 2279, \"AGE_40_49\": 2273, \"AGE_50_64\": 2533, \"AGE_65_UP\": 3052, \"MED_AGE\": 33.400000, \"MED_AGE_M\": 30.600000, \"MED_AGE_F\": 36.200000, \"HOUSEHOLDS\": 7110, \"AVE_HH_SZ\": 2.460000, \"HSEHLD_1_M\": 803, \"HSEHLD_1_F\": 1337, \"MARHH_CHD\": 1516, \"MARHH_NO_C\": 1932, \"MHH_CHILD\": 150, \"FHH_CHILD\": 620, \"FAMILIES\": 4667, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 8169, \"VACANT\": 1059, \"OWNER_OCC\": 4462, \"RENTER_OCC\": 2648 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -98.982372001247271, 31.707919998428622 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Brushy Creek\", \"CLASS\": \"CDP\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"10897\", \"CAPITAL\": \"N\", \"AREALAND\": 8.710000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 15371, \"WHITE\": 12751, \"BLACK\": 627, \"AMERI_ES\": 41, \"ASIAN\": 1047, \"HAWN_PI\": 13, \"OTHER\": 570, \"MULT_RACE\": 322, \"HISPANIC\": 1572, \"MALES\": 7540, \"FEMALES\": 7831, \"AGE_UNDER5\": 1603, \"AGE_5_17\": 3783, \"AGE_18_21\": 480, \"AGE_22_29\": 1088, \"AGE_30_39\": 3540, \"AGE_40_49\": 2708, \"AGE_50_64\": 1547, \"AGE_65_UP\": 622, \"MED_AGE\": 32.400000, \"MED_AGE_M\": 32.300000, \"MED_AGE_F\": 32.500000, \"HOUSEHOLDS\": 4805, \"AVE_HH_SZ\": 3.180000, \"HSEHLD_1_M\": 188, \"HSEHLD_1_F\": 223, \"MARHH_CHD\": 2494, \"MARHH_NO_C\": 1360, \"MHH_CHILD\": 49, \"FHH_CHILD\": 241, \"FAMILIES\": 4254, \"AVE_FAM_SZ\": 3.390000, \"HSE_UNITS\": 4919, \"VACANT\": 114, \"OWNER_OCC\": 4525, \"RENTER_OCC\": 280 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.734697000406427, 30.510969999657153 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bryan\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"10912\", \"CAPITAL\": \"N\", \"AREALAND\": 43.335000, \"AREAWATER\": 0.085000, \"POP_CL\": 7, \"POP2000\": 65660, \"WHITE\": 42452, \"BLACK\": 11635, \"AMERI_ES\": 265, \"ASIAN\": 1084, \"HAWN_PI\": 52, \"OTHER\": 8747, \"MULT_RACE\": 1425, \"HISPANIC\": 18271, \"MALES\": 32701, \"FEMALES\": 32959, \"AGE_UNDER5\": 5246, \"AGE_5_17\": 12485, \"AGE_18_21\": 6675, \"AGE_22_29\": 11273, \"AGE_30_39\": 9322, \"AGE_40_49\": 7641, \"AGE_50_64\": 6899, \"AGE_65_UP\": 6119, \"MED_AGE\": 27.600000, \"MED_AGE_M\": 26.000000, \"MED_AGE_F\": 29.200000, \"HOUSEHOLDS\": 23759, \"AVE_HH_SZ\": 2.650000, \"HSEHLD_1_M\": 2662, \"HSEHLD_1_F\": 3528, \"MARHH_CHD\": 5136, \"MARHH_NO_C\": 5374, \"MHH_CHILD\": 433, \"FHH_CHILD\": 2101, \"FAMILIES\": 14877, \"AVE_FAM_SZ\": 3.270000, \"HSE_UNITS\": 25703, \"VACANT\": 1944, \"OWNER_OCC\": 12065, \"RENTER_OCC\": 11694 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.366745000049377, 30.665546999954671 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Burkburnett\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"11368\", \"CAPITAL\": \"N\", \"AREALAND\": 9.505000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10927, \"WHITE\": 9908, \"BLACK\": 315, \"AMERI_ES\": 116, \"ASIAN\": 70, \"HAWN_PI\": 8, \"OTHER\": 291, \"MULT_RACE\": 219, \"HISPANIC\": 677, \"MALES\": 5284, \"FEMALES\": 5643, \"AGE_UNDER5\": 757, \"AGE_5_17\": 2292, \"AGE_18_21\": 537, \"AGE_22_29\": 885, \"AGE_30_39\": 1579, \"AGE_40_49\": 1701, \"AGE_50_64\": 1666, \"AGE_65_UP\": 1510, \"MED_AGE\": 36.800000, \"MED_AGE_M\": 35.400000, \"MED_AGE_F\": 37.800000, \"HOUSEHOLDS\": 4139, \"AVE_HH_SZ\": 2.620000, \"HSEHLD_1_M\": 363, \"HSEHLD_1_F\": 562, \"MARHH_CHD\": 1144, \"MARHH_NO_C\": 1360, \"MHH_CHILD\": 82, \"FHH_CHILD\": 291, \"FAMILIES\": 3108, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 4449, \"VACANT\": 310, \"OWNER_OCC\": 3160, \"RENTER_OCC\": 979 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -98.568217000659402, 34.082662998721638 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Burleson\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"11428\", \"CAPITAL\": \"N\", \"AREALAND\": 19.645000, \"AREAWATER\": 0.061000, \"POP_CL\": 6, \"POP2000\": 20976, \"WHITE\": 20058, \"BLACK\": 84, \"AMERI_ES\": 109, \"ASIAN\": 112, \"HAWN_PI\": 10, \"OTHER\": 306, \"MULT_RACE\": 297, \"HISPANIC\": 1135, \"MALES\": 10185, \"FEMALES\": 10791, \"AGE_UNDER5\": 1688, \"AGE_5_17\": 4411, \"AGE_18_21\": 1001, \"AGE_22_29\": 2038, \"AGE_30_39\": 3494, \"AGE_40_49\": 3191, \"AGE_50_64\": 3025, \"AGE_65_UP\": 2128, \"MED_AGE\": 34.100000, \"MED_AGE_M\": 32.700000, \"MED_AGE_F\": 35.300000, \"HOUSEHOLDS\": 7610, \"AVE_HH_SZ\": 2.740000, \"HSEHLD_1_M\": 520, \"HSEHLD_1_F\": 875, \"MARHH_CHD\": 2470, \"MARHH_NO_C\": 2404, \"MHH_CHILD\": 156, \"FHH_CHILD\": 514, \"FAMILIES\": 5981, \"AVE_FAM_SZ\": 3.110000, \"HSE_UNITS\": 7794, \"VACANT\": 184, \"OWNER_OCC\": 5763, \"RENTER_OCC\": 1847 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.32725700021399, 32.535938999754123 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Canyon\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"12532\", \"CAPITAL\": \"N\", \"AREALAND\": 4.952000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12875, \"WHITE\": 11372, \"BLACK\": 247, \"AMERI_ES\": 69, \"ASIAN\": 264, \"HAWN_PI\": 5, \"OTHER\": 733, \"MULT_RACE\": 185, \"HISPANIC\": 1382, \"MALES\": 6224, \"FEMALES\": 6651, \"AGE_UNDER5\": 865, \"AGE_5_17\": 2193, \"AGE_18_21\": 2222, \"AGE_22_29\": 2040, \"AGE_30_39\": 1592, \"AGE_40_49\": 1436, \"AGE_50_64\": 1292, \"AGE_65_UP\": 1235, \"MED_AGE\": 25.400000, \"MED_AGE_M\": 24.600000, \"MED_AGE_F\": 26.700000, \"HOUSEHOLDS\": 4802, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 562, \"HSEHLD_1_F\": 868, \"MARHH_CHD\": 1179, \"MARHH_NO_C\": 1117, \"MHH_CHILD\": 57, \"FHH_CHILD\": 352, \"FAMILIES\": 2926, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 5091, \"VACANT\": 289, \"OWNER_OCC\": 2540, \"RENTER_OCC\": 2262 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -101.925848964106606, 34.979325979098171 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Canyon Lake\", \"CLASS\": \"CDP\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"12580\", \"CAPITAL\": \"N\", \"AREALAND\": 144.254000, \"AREAWATER\": 12.617000, \"POP_CL\": 6, \"POP2000\": 16870, \"WHITE\": 16003, \"BLACK\": 53, \"AMERI_ES\": 96, \"ASIAN\": 31, \"HAWN_PI\": 5, \"OTHER\": 420, \"MULT_RACE\": 262, \"HISPANIC\": 1648, \"MALES\": 8387, \"FEMALES\": 8483, \"AGE_UNDER5\": 859, \"AGE_5_17\": 2921, \"AGE_18_21\": 577, \"AGE_22_29\": 1023, \"AGE_30_39\": 2289, \"AGE_40_49\": 2865, \"AGE_50_64\": 3390, \"AGE_65_UP\": 2946, \"MED_AGE\": 42.500000, \"MED_AGE_M\": 42.100000, \"MED_AGE_F\": 42.900000, \"HOUSEHOLDS\": 6906, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 731, \"HSEHLD_1_F\": 790, \"MARHH_CHD\": 1417, \"MARHH_NO_C\": 2868, \"MHH_CHILD\": 138, \"FHH_CHILD\": 307, \"FAMILIES\": 5057, \"AVE_FAM_SZ\": 2.810000, \"HSE_UNITS\": 8693, \"VACANT\": 1787, \"OWNER_OCC\": 5845, \"RENTER_OCC\": 1061 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -98.267460000769191, 29.881461999391494 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Carrollton\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"13024\", \"CAPITAL\": \"N\", \"AREALAND\": 36.468000, \"AREAWATER\": 0.176000, \"POP_CL\": 8, \"POP2000\": 109576, \"WHITE\": 78758, \"BLACK\": 6862, \"AMERI_ES\": 503, \"ASIAN\": 11944, \"HAWN_PI\": 75, \"OTHER\": 8451, \"MULT_RACE\": 2983, \"HISPANIC\": 21400, \"MALES\": 54275, \"FEMALES\": 55301, \"AGE_UNDER5\": 8693, \"AGE_5_17\": 22270, \"AGE_18_21\": 4765, \"AGE_22_29\": 12864, \"AGE_30_39\": 21226, \"AGE_40_49\": 19102, \"AGE_50_64\": 14945, \"AGE_65_UP\": 5711, \"MED_AGE\": 33.000000, \"MED_AGE_M\": 32.300000, \"MED_AGE_F\": 33.800000, \"HOUSEHOLDS\": 39136, \"AVE_HH_SZ\": 2.780000, \"HSEHLD_1_M\": 3573, \"HSEHLD_1_F\": 4295, \"MARHH_CHD\": 13012, \"MARHH_NO_C\": 10505, \"MHH_CHILD\": 678, \"FHH_CHILD\": 2475, \"FAMILIES\": 28932, \"AVE_FAM_SZ\": 3.250000, \"HSE_UNITS\": 40458, \"VACANT\": 1322, \"OWNER_OCC\": 25710, \"RENTER_OCC\": 13426 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.893277000110032, 32.990091999863367 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cedar Hill\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"13492\", \"CAPITAL\": \"N\", \"AREALAND\": 35.152000, \"AREAWATER\": 0.089000, \"POP_CL\": 6, \"POP2000\": 32093, \"WHITE\": 18186, \"BLACK\": 10788, \"AMERI_ES\": 160, \"ASIAN\": 636, \"HAWN_PI\": 16, \"OTHER\": 1564, \"MULT_RACE\": 743, \"HISPANIC\": 3822, \"MALES\": 15305, \"FEMALES\": 16788, \"AGE_UNDER5\": 2743, \"AGE_5_17\": 7730, \"AGE_18_21\": 1584, \"AGE_22_29\": 3111, \"AGE_30_39\": 6157, \"AGE_40_49\": 5598, \"AGE_50_64\": 3687, \"AGE_65_UP\": 1483, \"MED_AGE\": 31.500000, \"MED_AGE_M\": 30.600000, \"MED_AGE_F\": 32.400000, \"HOUSEHOLDS\": 10748, \"AVE_HH_SZ\": 2.960000, \"HSEHLD_1_M\": 623, \"HSEHLD_1_F\": 985, \"MARHH_CHD\": 4056, \"MARHH_NO_C\": 2803, \"MHH_CHILD\": 205, \"FHH_CHILD\": 1061, \"FAMILIES\": 8736, \"AVE_FAM_SZ\": 3.300000, \"HSE_UNITS\": 11075, \"VACANT\": 327, \"OWNER_OCC\": 8708, \"RENTER_OCC\": 2040 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.947325000122646, 32.588453999857329 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cedar Park\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"13552\", \"CAPITAL\": \"N\", \"AREALAND\": 16.970000, \"AREAWATER\": 0.145000, \"POP_CL\": 6, \"POP2000\": 26049, \"WHITE\": 22510, \"BLACK\": 865, \"AMERI_ES\": 88, \"ASIAN\": 679, \"HAWN_PI\": 15, \"OTHER\": 1329, \"MULT_RACE\": 563, \"HISPANIC\": 3516, \"MALES\": 12859, \"FEMALES\": 13190, \"AGE_UNDER5\": 2853, \"AGE_5_17\": 5879, \"AGE_18_21\": 922, \"AGE_22_29\": 2695, \"AGE_30_39\": 6029, \"AGE_40_49\": 4162, \"AGE_50_64\": 2392, \"AGE_65_UP\": 1117, \"MED_AGE\": 31.100000, \"MED_AGE_M\": 30.800000, \"MED_AGE_F\": 31.400000, \"HOUSEHOLDS\": 8621, \"AVE_HH_SZ\": 3.000000, \"HSEHLD_1_M\": 540, \"HSEHLD_1_F\": 541, \"MARHH_CHD\": 3809, \"MARHH_NO_C\": 2248, \"MHH_CHILD\": 167, \"FHH_CHILD\": 579, \"FAMILIES\": 7159, \"AVE_FAM_SZ\": 3.290000, \"HSE_UNITS\": 8914, \"VACANT\": 293, \"OWNER_OCC\": 7273, \"RENTER_OCC\": 1348 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.830317000456702, 30.506619999613562 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Channelview\", \"CLASS\": \"CDP\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"14236\", \"CAPITAL\": \"N\", \"AREALAND\": 16.211000, \"AREAWATER\": 1.758000, \"POP_CL\": 6, \"POP2000\": 29685, \"WHITE\": 18746, \"BLACK\": 3867, \"AMERI_ES\": 163, \"ASIAN\": 603, \"HAWN_PI\": 19, \"OTHER\": 5430, \"MULT_RACE\": 857, \"HISPANIC\": 11017, \"MALES\": 14888, \"FEMALES\": 14797, \"AGE_UNDER5\": 2759, \"AGE_5_17\": 7258, \"AGE_18_21\": 1839, \"AGE_22_29\": 3625, \"AGE_30_39\": 4775, \"AGE_40_49\": 4475, \"AGE_50_64\": 3415, \"AGE_65_UP\": 1539, \"MED_AGE\": 28.800000, \"MED_AGE_M\": 28.400000, \"MED_AGE_F\": 29.100000, \"HOUSEHOLDS\": 9189, \"AVE_HH_SZ\": 3.220000, \"HSEHLD_1_M\": 793, \"HSEHLD_1_F\": 654, \"MARHH_CHD\": 3397, \"MARHH_NO_C\": 2156, \"MHH_CHILD\": 282, \"FHH_CHILD\": 784, \"FAMILIES\": 7370, \"AVE_FAM_SZ\": 3.600000, \"HSE_UNITS\": 9874, \"VACANT\": 685, \"OWNER_OCC\": 6565, \"RENTER_OCC\": 2624 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.122149000002665, 29.786655999996768 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cinco Ranch\", \"CLASS\": \"CDP\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"14929\", \"CAPITAL\": \"N\", \"AREALAND\": 4.932000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11196, \"WHITE\": 9843, \"BLACK\": 319, \"AMERI_ES\": 26, \"ASIAN\": 742, \"HAWN_PI\": 2, \"OTHER\": 119, \"MULT_RACE\": 145, \"HISPANIC\": 654, \"MALES\": 5595, \"FEMALES\": 5601, \"AGE_UNDER5\": 796, \"AGE_5_17\": 3487, \"AGE_18_21\": 303, \"AGE_22_29\": 401, \"AGE_30_39\": 1695, \"AGE_40_49\": 2837, \"AGE_50_64\": 1315, \"AGE_65_UP\": 362, \"MED_AGE\": 35.200000, \"MED_AGE_M\": 35.500000, \"MED_AGE_F\": 35.000000, \"HOUSEHOLDS\": 3375, \"AVE_HH_SZ\": 3.320000, \"HSEHLD_1_M\": 126, \"HSEHLD_1_F\": 127, \"MARHH_CHD\": 2004, \"MARHH_NO_C\": 863, \"MHH_CHILD\": 52, \"FHH_CHILD\": 95, \"FAMILIES\": 3066, \"AVE_FAM_SZ\": 3.520000, \"HSE_UNITS\": 3594, \"VACANT\": 219, \"OWNER_OCC\": 3105, \"RENTER_OCC\": 270 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.758343000014236, 29.74152199998721 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cleburne\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"15364\", \"CAPITAL\": \"N\", \"AREALAND\": 27.785000, \"AREAWATER\": 2.674000, \"POP_CL\": 6, \"POP2000\": 26005, \"WHITE\": 22448, \"BLACK\": 1154, \"AMERI_ES\": 122, \"ASIAN\": 108, \"HAWN_PI\": 55, \"OTHER\": 1669, \"MULT_RACE\": 449, \"HISPANIC\": 5175, \"MALES\": 12613, \"FEMALES\": 13392, \"AGE_UNDER5\": 2143, \"AGE_5_17\": 5119, \"AGE_18_21\": 1479, \"AGE_22_29\": 3063, \"AGE_30_39\": 3609, \"AGE_40_49\": 3523, \"AGE_50_64\": 3488, \"AGE_65_UP\": 3581, \"MED_AGE\": 33.200000, \"MED_AGE_M\": 31.600000, \"MED_AGE_F\": 35.200000, \"HOUSEHOLDS\": 9335, \"AVE_HH_SZ\": 2.710000, \"HSEHLD_1_M\": 799, \"HSEHLD_1_F\": 1437, \"MARHH_CHD\": 2518, \"MARHH_NO_C\": 2732, \"MHH_CHILD\": 211, \"FHH_CHILD\": 613, \"FAMILIES\": 6764, \"AVE_FAM_SZ\": 3.200000, \"HSE_UNITS\": 9910, \"VACANT\": 575, \"OWNER_OCC\": 6236, \"RENTER_OCC\": 3099 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.392596000236566, 32.351546999735866 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cloverleaf\", \"CLASS\": \"CDP\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"15628\", \"CAPITAL\": \"N\", \"AREALAND\": 3.568000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 23508, \"WHITE\": 13816, \"BLACK\": 3787, \"AMERI_ES\": 139, \"ASIAN\": 354, \"HAWN_PI\": 11, \"OTHER\": 4765, \"MULT_RACE\": 636, \"HISPANIC\": 10423, \"MALES\": 11860, \"FEMALES\": 11648, \"AGE_UNDER5\": 2302, \"AGE_5_17\": 5623, \"AGE_18_21\": 1602, \"AGE_22_29\": 2960, \"AGE_30_39\": 3554, \"AGE_40_49\": 3365, \"AGE_50_64\": 2729, \"AGE_65_UP\": 1373, \"MED_AGE\": 28.000000, \"MED_AGE_M\": 27.600000, \"MED_AGE_F\": 28.500000, \"HOUSEHOLDS\": 7287, \"AVE_HH_SZ\": 3.230000, \"HSEHLD_1_M\": 611, \"HSEHLD_1_F\": 561, \"MARHH_CHD\": 2465, \"MARHH_NO_C\": 1757, \"MHH_CHILD\": 270, \"FHH_CHILD\": 669, \"FAMILIES\": 5800, \"AVE_FAM_SZ\": 3.610000, \"HSE_UNITS\": 7865, \"VACANT\": 578, \"OWNER_OCC\": 4386, \"RENTER_OCC\": 2901 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.172959000003104, 29.784675999996388 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Clute\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"15652\", \"CAPITAL\": \"N\", \"AREALAND\": 5.348000, \"AREAWATER\": 0.288000, \"POP_CL\": 6, \"POP2000\": 10424, \"WHITE\": 6694, \"BLACK\": 798, \"AMERI_ES\": 79, \"ASIAN\": 100, \"HAWN_PI\": 1, \"OTHER\": 2401, \"MULT_RACE\": 351, \"HISPANIC\": 5013, \"MALES\": 5256, \"FEMALES\": 5168, \"AGE_UNDER5\": 1033, \"AGE_5_17\": 2238, \"AGE_18_21\": 789, \"AGE_22_29\": 1606, \"AGE_30_39\": 1524, \"AGE_40_49\": 1314, \"AGE_50_64\": 1123, \"AGE_65_UP\": 797, \"MED_AGE\": 27.600000, \"MED_AGE_M\": 27.100000, \"MED_AGE_F\": 28.100000, \"HOUSEHOLDS\": 3674, \"AVE_HH_SZ\": 2.790000, \"HSEHLD_1_M\": 488, \"HSEHLD_1_F\": 393, \"MARHH_CHD\": 1003, \"MARHH_NO_C\": 808, \"MHH_CHILD\": 128, \"FHH_CHILD\": 376, \"FAMILIES\": 2564, \"AVE_FAM_SZ\": 3.350000, \"HSE_UNITS\": 4142, \"VACANT\": 468, \"OWNER_OCC\": 1605, \"RENTER_OCC\": 2069 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.394539000005892, 29.026059999994576 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"College Station\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"15976\", \"CAPITAL\": \"N\", \"AREALAND\": 40.255000, \"AREAWATER\": 0.039000, \"POP_CL\": 7, \"POP2000\": 67890, \"WHITE\": 54673, \"BLACK\": 3698, \"AMERI_ES\": 206, \"ASIAN\": 4951, \"HAWN_PI\": 44, \"OTHER\": 3036, \"MULT_RACE\": 1282, \"HISPANIC\": 6759, \"MALES\": 34667, \"FEMALES\": 33223, \"AGE_UNDER5\": 3032, \"AGE_5_17\": 6757, \"AGE_18_21\": 24918, \"AGE_22_29\": 15149, \"AGE_30_39\": 6470, \"AGE_40_49\": 4996, \"AGE_50_64\": 4107, \"AGE_65_UP\": 2461, \"MED_AGE\": 21.900000, \"MED_AGE_M\": 22.100000, \"MED_AGE_F\": 21.700000, \"HOUSEHOLDS\": 24691, \"AVE_HH_SZ\": 2.320000, \"HSEHLD_1_M\": 3537, \"HSEHLD_1_F\": 3154, \"MARHH_CHD\": 4043, \"MARHH_NO_C\": 3911, \"MHH_CHILD\": 182, \"FHH_CHILD\": 967, \"FAMILIES\": 10368, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 26054, \"VACANT\": 1363, \"OWNER_OCC\": 7546, \"RENTER_OCC\": 17145 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.314464000044808, 30.601432999958973 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Colleyville\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"15988\", \"CAPITAL\": \"N\", \"AREALAND\": 13.094000, \"AREAWATER\": 0.006000, \"POP_CL\": 6, \"POP2000\": 19636, \"WHITE\": 18289, \"BLACK\": 257, \"AMERI_ES\": 76, \"ASIAN\": 619, \"HAWN_PI\": 6, \"OTHER\": 115, \"MULT_RACE\": 274, \"HISPANIC\": 634, \"MALES\": 9737, \"FEMALES\": 9899, \"AGE_UNDER5\": 1060, \"AGE_5_17\": 5148, \"AGE_18_21\": 645, \"AGE_22_29\": 552, \"AGE_30_39\": 2400, \"AGE_40_49\": 4701, \"AGE_50_64\": 4030, \"AGE_65_UP\": 1100, \"MED_AGE\": 40.000000, \"MED_AGE_M\": 40.500000, \"MED_AGE_F\": 39.500000, \"HOUSEHOLDS\": 6406, \"AVE_HH_SZ\": 3.060000, \"HSEHLD_1_M\": 219, \"HSEHLD_1_F\": 272, \"MARHH_CHD\": 2969, \"MARHH_NO_C\": 2504, \"MHH_CHILD\": 56, \"FHH_CHILD\": 168, \"FAMILIES\": 5820, \"AVE_FAM_SZ\": 3.240000, \"HSE_UNITS\": 6549, \"VACANT\": 143, \"OWNER_OCC\": 6186, \"RENTER_OCC\": 220 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.14923300016288, 32.885061999802168 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Conroe\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"16432\", \"CAPITAL\": \"N\", \"AREALAND\": 37.791000, \"AREAWATER\": 0.076000, \"POP_CL\": 6, \"POP2000\": 36811, \"WHITE\": 26193, \"BLACK\": 4097, \"AMERI_ES\": 149, \"ASIAN\": 348, \"HAWN_PI\": 18, \"OTHER\": 4926, \"MULT_RACE\": 1080, \"HISPANIC\": 12006, \"MALES\": 18517, \"FEMALES\": 18294, \"AGE_UNDER5\": 3217, \"AGE_5_17\": 7129, \"AGE_18_21\": 2737, \"AGE_22_29\": 5708, \"AGE_30_39\": 5629, \"AGE_40_49\": 4632, \"AGE_50_64\": 4200, \"AGE_65_UP\": 3559, \"MED_AGE\": 29.400000, \"MED_AGE_M\": 28.200000, \"MED_AGE_F\": 30.900000, \"HOUSEHOLDS\": 13145, \"AVE_HH_SZ\": 2.730000, \"HSEHLD_1_M\": 1379, \"HSEHLD_1_F\": 2193, \"MARHH_CHD\": 3174, \"MARHH_NO_C\": 3068, \"MHH_CHILD\": 328, \"FHH_CHILD\": 1142, \"FAMILIES\": 8726, \"AVE_FAM_SZ\": 3.330000, \"HSE_UNITS\": 14378, \"VACANT\": 1233, \"OWNER_OCC\": 6221, \"RENTER_OCC\": 6924 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.458801000006687, 30.316123999992794 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Converse\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"16468\", \"CAPITAL\": \"N\", \"AREALAND\": 6.329000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11508, \"WHITE\": 7985, \"BLACK\": 1499, \"AMERI_ES\": 64, \"ASIAN\": 253, \"HAWN_PI\": 16, \"OTHER\": 1226, \"MULT_RACE\": 465, \"HISPANIC\": 3388, \"MALES\": 5623, \"FEMALES\": 5885, \"AGE_UNDER5\": 897, \"AGE_5_17\": 2667, \"AGE_18_21\": 556, \"AGE_22_29\": 1203, \"AGE_30_39\": 2064, \"AGE_40_49\": 1858, \"AGE_50_64\": 1529, \"AGE_65_UP\": 734, \"MED_AGE\": 32.500000, \"MED_AGE_M\": 31.200000, \"MED_AGE_F\": 33.600000, \"HOUSEHOLDS\": 3837, \"AVE_HH_SZ\": 2.940000, \"HSEHLD_1_M\": 276, \"HSEHLD_1_F\": 320, \"MARHH_CHD\": 1247, \"MARHH_NO_C\": 1111, \"MHH_CHILD\": 94, \"FHH_CHILD\": 370, \"FAMILIES\": 3077, \"AVE_FAM_SZ\": 3.260000, \"HSE_UNITS\": 4009, \"VACANT\": 172, \"OWNER_OCC\": 2770, \"RENTER_OCC\": 1067 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -98.31380400082088, 29.517279999383327 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Coppell\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"16612\", \"CAPITAL\": \"N\", \"AREALAND\": 14.868000, \"AREAWATER\": 0.027000, \"POP_CL\": 6, \"POP2000\": 35958, \"WHITE\": 29929, \"BLACK\": 1174, \"AMERI_ES\": 122, \"ASIAN\": 3343, \"HAWN_PI\": 8, \"OTHER\": 675, \"MULT_RACE\": 707, \"HISPANIC\": 2490, \"MALES\": 17731, \"FEMALES\": 18227, \"AGE_UNDER5\": 3409, \"AGE_5_17\": 9075, \"AGE_18_21\": 975, \"AGE_22_29\": 2479, \"AGE_30_39\": 7670, \"AGE_40_49\": 7676, \"AGE_50_64\": 3756, \"AGE_65_UP\": 918, \"MED_AGE\": 33.500000, \"MED_AGE_M\": 33.200000, \"MED_AGE_F\": 33.700000, \"HOUSEHOLDS\": 12211, \"AVE_HH_SZ\": 2.940000, \"HSEHLD_1_M\": 913, \"HSEHLD_1_F\": 1054, \"MARHH_CHD\": 5720, \"MARHH_NO_C\": 2787, \"MHH_CHILD\": 186, \"FHH_CHILD\": 756, \"FAMILIES\": 9787, \"AVE_FAM_SZ\": 3.340000, \"HSE_UNITS\": 12587, \"VACANT\": 376, \"OWNER_OCC\": 9425, \"RENTER_OCC\": 2786 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.986564000127302, 32.967340999842975 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Copperas Cove\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"16624\", \"CAPITAL\": \"N\", \"AREALAND\": 13.926000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 29592, \"WHITE\": 19340, \"BLACK\": 6047, \"AMERI_ES\": 257, \"ASIAN\": 798, \"HAWN_PI\": 171, \"OTHER\": 1474, \"MULT_RACE\": 1505, \"HISPANIC\": 3460, \"MALES\": 14649, \"FEMALES\": 14943, \"AGE_UNDER5\": 3030, \"AGE_5_17\": 6437, \"AGE_18_21\": 2234, \"AGE_22_29\": 4837, \"AGE_30_39\": 4846, \"AGE_40_49\": 3682, \"AGE_50_64\": 3031, \"AGE_65_UP\": 1495, \"MED_AGE\": 26.900000, \"MED_AGE_M\": 26.300000, \"MED_AGE_F\": 27.700000, \"HOUSEHOLDS\": 10273, \"AVE_HH_SZ\": 2.850000, \"HSEHLD_1_M\": 873, \"HSEHLD_1_F\": 840, \"MARHH_CHD\": 3610, \"MARHH_NO_C\": 2779, \"MHH_CHILD\": 234, \"FHH_CHILD\": 1017, \"FAMILIES\": 8028, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 11120, \"VACANT\": 847, \"OWNER_OCC\": 5568, \"RENTER_OCC\": 4705 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.901749000481118, 31.11969999954994 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Corinth\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"16696\", \"CAPITAL\": \"N\", \"AREALAND\": 7.858000, \"AREAWATER\": 0.045000, \"POP_CL\": 6, \"POP2000\": 11325, \"WHITE\": 10031, \"BLACK\": 475, \"AMERI_ES\": 75, \"ASIAN\": 270, \"HAWN_PI\": 6, \"OTHER\": 255, \"MULT_RACE\": 213, \"HISPANIC\": 690, \"MALES\": 5702, \"FEMALES\": 5623, \"AGE_UNDER5\": 1237, \"AGE_5_17\": 2213, \"AGE_18_21\": 309, \"AGE_22_29\": 1287, \"AGE_30_39\": 2733, \"AGE_40_49\": 1791, \"AGE_50_64\": 1380, \"AGE_65_UP\": 375, \"MED_AGE\": 32.000000, \"MED_AGE_M\": 32.500000, \"MED_AGE_F\": 31.600000, \"HOUSEHOLDS\": 3879, \"AVE_HH_SZ\": 2.920000, \"HSEHLD_1_M\": 193, \"HSEHLD_1_F\": 155, \"MARHH_CHD\": 1646, \"MARHH_NO_C\": 1425, \"MHH_CHILD\": 65, \"FHH_CHILD\": 111, \"FAMILIES\": 3359, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 4100, \"VACANT\": 221, \"OWNER_OCC\": 3702, \"RENTER_OCC\": 177 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.072194000143071, 33.14395199981869 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Corpus Christi\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"17000\", \"CAPITAL\": \"N\", \"AREALAND\": 154.638000, \"AREAWATER\": 305.596000, \"POP_CL\": 8, \"POP2000\": 277454, \"WHITE\": 198714, \"BLACK\": 12969, \"AMERI_ES\": 1766, \"ASIAN\": 3551, \"HAWN_PI\": 212, \"OTHER\": 51552, \"MULT_RACE\": 8690, \"HISPANIC\": 150737, \"MALES\": 135572, \"FEMALES\": 141882, \"AGE_UNDER5\": 21544, \"AGE_5_17\": 56518, \"AGE_18_21\": 17402, \"AGE_22_29\": 31472, \"AGE_30_39\": 39786, \"AGE_40_49\": 41722, \"AGE_50_64\": 38208, \"AGE_65_UP\": 30802, \"MED_AGE\": 33.200000, \"MED_AGE_M\": 31.900000, \"MED_AGE_F\": 34.400000, \"HOUSEHOLDS\": 98791, \"AVE_HH_SZ\": 2.750000, \"HSEHLD_1_M\": 10811, \"HSEHLD_1_F\": 12145, \"MARHH_CHD\": 24165, \"MARHH_NO_C\": 26088, \"MHH_CHILD\": 2636, \"FHH_CHILD\": 8836, \"FAMILIES\": 70465, \"AVE_FAM_SZ\": 3.270000, \"HSE_UNITS\": 107831, \"VACANT\": 9040, \"OWNER_OCC\": 58912, \"RENTER_OCC\": 39879 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.401927000282086, 27.742856999838853 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Corsicana\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"17060\", \"CAPITAL\": \"N\", \"AREALAND\": 20.743000, \"AREAWATER\": 0.962000, \"POP_CL\": 6, \"POP2000\": 24485, \"WHITE\": 14515, \"BLACK\": 5775, \"AMERI_ES\": 120, \"ASIAN\": 155, \"HAWN_PI\": 114, \"OTHER\": 3339, \"MULT_RACE\": 467, \"HISPANIC\": 5502, \"MALES\": 11874, \"FEMALES\": 12611, \"AGE_UNDER5\": 1926, \"AGE_5_17\": 4747, \"AGE_18_21\": 2123, \"AGE_22_29\": 2636, \"AGE_30_39\": 3265, \"AGE_40_49\": 2995, \"AGE_50_64\": 3120, \"AGE_65_UP\": 3673, \"MED_AGE\": 32.400000, \"MED_AGE_M\": 29.500000, \"MED_AGE_F\": 35.700000, \"HOUSEHOLDS\": 8762, \"AVE_HH_SZ\": 2.640000, \"HSEHLD_1_M\": 836, \"HSEHLD_1_F\": 1558, \"MARHH_CHD\": 1986, \"MARHH_NO_C\": 2269, \"MHH_CHILD\": 214, \"FHH_CHILD\": 793, \"FAMILIES\": 5968, \"AVE_FAM_SZ\": 3.210000, \"HSE_UNITS\": 9552, \"VACANT\": 790, \"OWNER_OCC\": 5274, \"RENTER_OCC\": 3488 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.46940700005635, 32.092479999937041 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Dallas\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"19000\", \"CAPITAL\": \"N\", \"AREALAND\": 342.542000, \"AREAWATER\": 42.456000, \"POP_CL\": 10, \"POP2000\": 1188580, \"WHITE\": 604209, \"BLACK\": 307957, \"AMERI_ES\": 6472, \"ASIAN\": 32118, \"HAWN_PI\": 590, \"OTHER\": 204883, \"MULT_RACE\": 32351, \"HISPANIC\": 422587, \"MALES\": 598991, \"FEMALES\": 589589, \"AGE_UNDER5\": 98785, \"AGE_5_17\": 216791, \"AGE_18_21\": 72341, \"AGE_22_29\": 194619, \"AGE_30_39\": 208079, \"AGE_40_49\": 157720, \"AGE_50_64\": 137944, \"AGE_65_UP\": 102301, \"MED_AGE\": 30.500000, \"MED_AGE_M\": 29.800000, \"MED_AGE_F\": 31.300000, \"HOUSEHOLDS\": 451833, \"AVE_HH_SZ\": 2.580000, \"HSEHLD_1_M\": 71311, \"HSEHLD_1_F\": 77541, \"MARHH_CHD\": 87783, \"MARHH_NO_C\": 87469, \"MHH_CHILD\": 9400, \"FHH_CHILD\": 39743, \"FAMILIES\": 266789, \"AVE_FAM_SZ\": 3.370000, \"HSE_UNITS\": 484117, \"VACANT\": 32284, \"OWNER_OCC\": 195335, \"RENTER_OCC\": 256498 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.787166000093919, 32.799527999886251 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Deer Park\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"19624\", \"CAPITAL\": \"N\", \"AREALAND\": 10.361000, \"AREAWATER\": 0.001000, \"POP_CL\": 6, \"POP2000\": 28520, \"WHITE\": 25672, \"BLACK\": 374, \"AMERI_ES\": 118, \"ASIAN\": 321, \"HAWN_PI\": 37, \"OTHER\": 1496, \"MULT_RACE\": 502, \"HISPANIC\": 4341, \"MALES\": 14167, \"FEMALES\": 14353, \"AGE_UNDER5\": 1797, \"AGE_5_17\": 6476, \"AGE_18_21\": 1730, \"AGE_22_29\": 2554, \"AGE_30_39\": 4272, \"AGE_40_49\": 5247, \"AGE_50_64\": 4334, \"AGE_65_UP\": 2110, \"MED_AGE\": 34.700000, \"MED_AGE_M\": 33.600000, \"MED_AGE_F\": 35.600000, \"HOUSEHOLDS\": 9615, \"AVE_HH_SZ\": 2.930000, \"HSEHLD_1_M\": 637, \"HSEHLD_1_F\": 710, \"MARHH_CHD\": 3265, \"MARHH_NO_C\": 3161, \"MHH_CHILD\": 238, \"FHH_CHILD\": 687, \"FAMILIES\": 7939, \"AVE_FAM_SZ\": 3.230000, \"HSE_UNITS\": 9921, \"VACANT\": 306, \"OWNER_OCC\": 7628, \"RENTER_OCC\": 1987 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.118108000002664, 29.692002999996831 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Del Rio\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"19792\", \"CAPITAL\": \"N\", \"AREALAND\": 15.436000, \"AREAWATER\": 0.011000, \"POP_CL\": 6, \"POP2000\": 33867, \"WHITE\": 26105, \"BLACK\": 409, \"AMERI_ES\": 236, \"ASIAN\": 166, \"HAWN_PI\": 20, \"OTHER\": 6024, \"MULT_RACE\": 907, \"HISPANIC\": 27446, \"MALES\": 16411, \"FEMALES\": 17456, \"AGE_UNDER5\": 2915, \"AGE_5_17\": 7835, \"AGE_18_21\": 1756, \"AGE_22_29\": 3601, \"AGE_30_39\": 4881, \"AGE_40_49\": 4027, \"AGE_50_64\": 4892, \"AGE_65_UP\": 3960, \"MED_AGE\": 31.700000, \"MED_AGE_M\": 30.400000, \"MED_AGE_F\": 32.900000, \"HOUSEHOLDS\": 10778, \"AVE_HH_SZ\": 3.090000, \"HSEHLD_1_M\": 870, \"HSEHLD_1_F\": 1146, \"MARHH_CHD\": 3345, \"MARHH_NO_C\": 3046, \"MHH_CHILD\": 205, \"FHH_CHILD\": 975, \"FAMILIES\": 8513, \"AVE_FAM_SZ\": 3.560000, \"HSE_UNITS\": 11895, \"VACANT\": 1117, \"OWNER_OCC\": 6965, \"RENTER_OCC\": 3813 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -100.895839002432993, 29.37071599360069 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Denison\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"19900\", \"CAPITAL\": \"N\", \"AREALAND\": 22.591000, \"AREAWATER\": 0.323000, \"POP_CL\": 6, \"POP2000\": 22773, \"WHITE\": 19134, \"BLACK\": 1964, \"AMERI_ES\": 380, \"ASIAN\": 104, \"HAWN_PI\": 14, \"OTHER\": 499, \"MULT_RACE\": 678, \"HISPANIC\": 1190, \"MALES\": 10719, \"FEMALES\": 12054, \"AGE_UNDER5\": 1503, \"AGE_5_17\": 4103, \"AGE_18_21\": 1239, \"AGE_22_29\": 2125, \"AGE_30_39\": 2965, \"AGE_40_49\": 3307, \"AGE_50_64\": 3561, \"AGE_65_UP\": 3970, \"MED_AGE\": 38.500000, \"MED_AGE_M\": 35.900000, \"MED_AGE_F\": 40.700000, \"HOUSEHOLDS\": 9185, \"AVE_HH_SZ\": 2.430000, \"HSEHLD_1_M\": 958, \"HSEHLD_1_F\": 1715, \"MARHH_CHD\": 1797, \"MARHH_NO_C\": 2618, \"MHH_CHILD\": 233, \"FHH_CHILD\": 711, \"FAMILIES\": 6136, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 10309, \"VACANT\": 1124, \"OWNER_OCC\": 6093, \"RENTER_OCC\": 3092 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.557393000060088, 33.749702999914206 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Denton\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"19972\", \"CAPITAL\": \"N\", \"AREALAND\": 61.494000, \"AREAWATER\": 0.831000, \"POP_CL\": 7, \"POP2000\": 80537, \"WHITE\": 60900, \"BLACK\": 7344, \"AMERI_ES\": 464, \"ASIAN\": 2731, \"HAWN_PI\": 43, \"OTHER\": 7126, \"MULT_RACE\": 1929, \"HISPANIC\": 13188, \"MALES\": 39594, \"FEMALES\": 40943, \"AGE_UNDER5\": 4974, \"AGE_5_17\": 11675, \"AGE_18_21\": 11696, \"AGE_22_29\": 16985, \"AGE_30_39\": 11123, \"AGE_40_49\": 9445, \"AGE_50_64\": 8275, \"AGE_65_UP\": 6364, \"MED_AGE\": 26.800000, \"MED_AGE_M\": 26.800000, \"MED_AGE_F\": 26.900000, \"HOUSEHOLDS\": 30895, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 4347, \"HSEHLD_1_F\": 5390, \"MARHH_CHD\": 5779, \"MARHH_NO_C\": 6528, \"MHH_CHILD\": 486, \"FHH_CHILD\": 1814, \"FAMILIES\": 16407, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 32716, \"VACANT\": 1821, \"OWNER_OCC\": 12960, \"RENTER_OCC\": 17935 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.129194000154726, 33.216295999801652 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"DeSoto\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"20092\", \"CAPITAL\": \"N\", \"AREALAND\": 21.580000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 37646, \"WHITE\": 18382, \"BLACK\": 17142, \"AMERI_ES\": 118, \"ASIAN\": 484, \"HAWN_PI\": 13, \"OTHER\": 964, \"MULT_RACE\": 543, \"HISPANIC\": 2750, \"MALES\": 17697, \"FEMALES\": 19949, \"AGE_UNDER5\": 2653, \"AGE_5_17\": 7959, \"AGE_18_21\": 1794, \"AGE_22_29\": 3226, \"AGE_30_39\": 5747, \"AGE_40_49\": 6647, \"AGE_50_64\": 6121, \"AGE_65_UP\": 3499, \"MED_AGE\": 36.100000, \"MED_AGE_M\": 34.600000, \"MED_AGE_F\": 37.300000, \"HOUSEHOLDS\": 13709, \"AVE_HH_SZ\": 2.710000, \"HSEHLD_1_M\": 990, \"HSEHLD_1_F\": 1839, \"MARHH_CHD\": 3928, \"MARHH_NO_C\": 4132, \"MHH_CHILD\": 240, \"FHH_CHILD\": 1248, \"FAMILIES\": 10464, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 14069, \"VACANT\": 360, \"OWNER_OCC\": 9904, \"RENTER_OCC\": 3805 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.858828000106641, 32.599285999875249 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Dickinson\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"20344\", \"CAPITAL\": \"N\", \"AREALAND\": 9.653000, \"AREAWATER\": 0.148000, \"POP_CL\": 6, \"POP2000\": 17093, \"WHITE\": 12367, \"BLACK\": 1798, \"AMERI_ES\": 109, \"ASIAN\": 206, \"HAWN_PI\": 6, \"OTHER\": 2191, \"MULT_RACE\": 416, \"HISPANIC\": 4256, \"MALES\": 8533, \"FEMALES\": 8560, \"AGE_UNDER5\": 1363, \"AGE_5_17\": 3501, \"AGE_18_21\": 947, \"AGE_22_29\": 1882, \"AGE_30_39\": 2694, \"AGE_40_49\": 2594, \"AGE_50_64\": 2478, \"AGE_65_UP\": 1634, \"MED_AGE\": 33.500000, \"MED_AGE_M\": 32.800000, \"MED_AGE_F\": 34.200000, \"HOUSEHOLDS\": 6162, \"AVE_HH_SZ\": 2.760000, \"HSEHLD_1_M\": 645, \"HSEHLD_1_F\": 687, \"MARHH_CHD\": 1627, \"MARHH_NO_C\": 1786, \"MHH_CHILD\": 154, \"FHH_CHILD\": 473, \"FAMILIES\": 4520, \"AVE_FAM_SZ\": 3.220000, \"HSE_UNITS\": 6556, \"VACANT\": 394, \"OWNER_OCC\": 4109, \"RENTER_OCC\": 2053 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.053856000002199, 29.460466999997315 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Donna\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"20884\", \"CAPITAL\": \"N\", \"AREALAND\": 5.041000, \"AREAWATER\": 0.011000, \"POP_CL\": 6, \"POP2000\": 14768, \"WHITE\": 11233, \"BLACK\": 54, \"AMERI_ES\": 88, \"ASIAN\": 27, \"HAWN_PI\": 0, \"OTHER\": 3012, \"MULT_RACE\": 354, \"HISPANIC\": 12886, \"MALES\": 7076, \"FEMALES\": 7692, \"AGE_UNDER5\": 1415, \"AGE_5_17\": 3619, \"AGE_18_21\": 944, \"AGE_22_29\": 1613, \"AGE_30_39\": 1726, \"AGE_40_49\": 1585, \"AGE_50_64\": 1766, \"AGE_65_UP\": 2100, \"MED_AGE\": 28.900000, \"MED_AGE_M\": 26.800000, \"MED_AGE_F\": 30.700000, \"HOUSEHOLDS\": 4167, \"AVE_HH_SZ\": 3.540000, \"HSEHLD_1_M\": 209, \"HSEHLD_1_F\": 358, \"MARHH_CHD\": 1246, \"MARHH_NO_C\": 1256, \"MHH_CHILD\": 88, \"FHH_CHILD\": 460, \"FAMILIES\": 3524, \"AVE_FAM_SZ\": 3.910000, \"HSE_UNITS\": 5734, \"VACANT\": 1567, \"OWNER_OCC\": 3010, \"RENTER_OCC\": 1157 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -98.049037000647147, 26.170335999693204 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Dumas\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"21556\", \"CAPITAL\": \"N\", \"AREALAND\": 5.128000, \"AREAWATER\": 0.019000, \"POP_CL\": 6, \"POP2000\": 13747, \"WHITE\": 9361, \"BLACK\": 99, \"AMERI_ES\": 81, \"ASIAN\": 160, \"HAWN_PI\": 3, \"OTHER\": 3675, \"MULT_RACE\": 368, \"HISPANIC\": 5876, \"MALES\": 6761, \"FEMALES\": 6986, \"AGE_UNDER5\": 1262, \"AGE_5_17\": 3181, \"AGE_18_21\": 701, \"AGE_22_29\": 1426, \"AGE_30_39\": 1997, \"AGE_40_49\": 1816, \"AGE_50_64\": 1699, \"AGE_65_UP\": 1665, \"MED_AGE\": 31.400000, \"MED_AGE_M\": 30.900000, \"MED_AGE_F\": 31.800000, \"HOUSEHOLDS\": 4755, \"AVE_HH_SZ\": 2.850000, \"HSEHLD_1_M\": 380, \"HSEHLD_1_F\": 559, \"MARHH_CHD\": 1568, \"MARHH_NO_C\": 1457, \"MHH_CHILD\": 151, \"FHH_CHILD\": 308, \"FAMILIES\": 3674, \"AVE_FAM_SZ\": 3.290000, \"HSE_UNITS\": 5119, \"VACANT\": 364, \"OWNER_OCC\": 3313, \"RENTER_OCC\": 1442 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -101.966930955845086, 35.862477977018912 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Duncanville\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"21628\", \"CAPITAL\": \"N\", \"AREALAND\": 11.287000, \"AREAWATER\": 0.003000, \"POP_CL\": 6, \"POP2000\": 36081, \"WHITE\": 23055, \"BLACK\": 8934, \"AMERI_ES\": 117, \"ASIAN\": 717, \"HAWN_PI\": 31, \"OTHER\": 2466, \"MULT_RACE\": 761, \"HISPANIC\": 5522, \"MALES\": 17093, \"FEMALES\": 18988, \"AGE_UNDER5\": 2344, \"AGE_5_17\": 7796, \"AGE_18_21\": 1871, \"AGE_22_29\": 3343, \"AGE_30_39\": 4988, \"AGE_40_49\": 5853, \"AGE_50_64\": 6422, \"AGE_65_UP\": 3464, \"MED_AGE\": 35.800000, \"MED_AGE_M\": 34.000000, \"MED_AGE_F\": 37.200000, \"HOUSEHOLDS\": 12896, \"AVE_HH_SZ\": 2.790000, \"HSEHLD_1_M\": 806, \"HSEHLD_1_F\": 1463, \"MARHH_CHD\": 3426, \"MARHH_NO_C\": 4222, \"MHH_CHILD\": 285, \"FHH_CHILD\": 1244, \"FAMILIES\": 10234, \"AVE_FAM_SZ\": 3.150000, \"HSE_UNITS\": 13290, \"VACANT\": 394, \"OWNER_OCC\": 9243, \"RENTER_OCC\": 3653 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.911309000115551, 32.646332999864143 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Eagle Pass\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"21892\", \"CAPITAL\": \"N\", \"AREALAND\": 7.396000, \"AREAWATER\": 0.033000, \"POP_CL\": 6, \"POP2000\": 22413, \"WHITE\": 16302, \"BLACK\": 60, \"AMERI_ES\": 88, \"ASIAN\": 171, \"HAWN_PI\": 1, \"OTHER\": 5089, \"MULT_RACE\": 702, \"HISPANIC\": 21269, \"MALES\": 10520, \"FEMALES\": 11893, \"AGE_UNDER5\": 1897, \"AGE_5_17\": 5433, \"AGE_18_21\": 1184, \"AGE_22_29\": 2182, \"AGE_30_39\": 2887, \"AGE_40_49\": 2869, \"AGE_50_64\": 3018, \"AGE_65_UP\": 2943, \"MED_AGE\": 31.800000, \"MED_AGE_M\": 29.400000, \"MED_AGE_F\": 33.800000, \"HOUSEHOLDS\": 6925, \"AVE_HH_SZ\": 3.220000, \"HSEHLD_1_M\": 456, \"HSEHLD_1_F\": 771, \"MARHH_CHD\": 2273, \"MARHH_NO_C\": 1813, \"MHH_CHILD\": 94, \"FHH_CHILD\": 646, \"FAMILIES\": 5591, \"AVE_FAM_SZ\": 3.690000, \"HSE_UNITS\": 7613, \"VACANT\": 688, \"OWNER_OCC\": 4056, \"RENTER_OCC\": 2869 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -100.489331003451696, 28.71062199559077 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Edinburg\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"22660\", \"CAPITAL\": \"N\", \"AREALAND\": 37.369000, \"AREAWATER\": 0.045000, \"POP_CL\": 6, \"POP2000\": 48465, \"WHITE\": 35533, \"BLACK\": 281, \"AMERI_ES\": 230, \"ASIAN\": 315, \"HAWN_PI\": 19, \"OTHER\": 10986, \"MULT_RACE\": 1101, \"HISPANIC\": 42981, \"MALES\": 23655, \"FEMALES\": 24810, \"AGE_UNDER5\": 4749, \"AGE_5_17\": 11254, \"AGE_18_21\": 3784, \"AGE_22_29\": 6763, \"AGE_30_39\": 7151, \"AGE_40_49\": 5706, \"AGE_50_64\": 5077, \"AGE_65_UP\": 3981, \"MED_AGE\": 27.200000, \"MED_AGE_M\": 26.000000, \"MED_AGE_F\": 28.500000, \"HOUSEHOLDS\": 14183, \"AVE_HH_SZ\": 3.290000, \"HSEHLD_1_M\": 949, \"HSEHLD_1_F\": 1241, \"MARHH_CHD\": 4786, \"MARHH_NO_C\": 3287, \"MHH_CHILD\": 273, \"FHH_CHILD\": 1596, \"FAMILIES\": 11412, \"AVE_FAM_SZ\": 3.710000, \"HSE_UNITS\": 16031, \"VACANT\": 1848, \"OWNER_OCC\": 8750, \"RENTER_OCC\": 5433 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -98.163751000739083, 26.304224999642088 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"El Campo\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"22864\", \"CAPITAL\": \"N\", \"AREALAND\": 7.467000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10945, \"WHITE\": 7560, \"BLACK\": 1300, \"AMERI_ES\": 36, \"ASIAN\": 31, \"HAWN_PI\": 1, \"OTHER\": 1823, \"MULT_RACE\": 194, \"HISPANIC\": 4234, \"MALES\": 5245, \"FEMALES\": 5700, \"AGE_UNDER5\": 874, \"AGE_5_17\": 2424, \"AGE_18_21\": 640, \"AGE_22_29\": 1030, \"AGE_30_39\": 1414, \"AGE_40_49\": 1549, \"AGE_50_64\": 1391, \"AGE_65_UP\": 1623, \"MED_AGE\": 34.100000, \"MED_AGE_M\": 31.800000, \"MED_AGE_F\": 35.900000, \"HOUSEHOLDS\": 3931, \"AVE_HH_SZ\": 2.740000, \"HSEHLD_1_M\": 346, \"HSEHLD_1_F\": 668, \"MARHH_CHD\": 1045, \"MARHH_NO_C\": 1041, \"MHH_CHILD\": 99, \"FHH_CHILD\": 322, \"FAMILIES\": 2810, \"AVE_FAM_SZ\": 3.310000, \"HSE_UNITS\": 4312, \"VACANT\": 381, \"OWNER_OCC\": 2476, \"RENTER_OCC\": 1455 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.273471000043074, 29.196610999967501 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"El Paso\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"24000\", \"CAPITAL\": \"N\", \"AREALAND\": 249.075000, \"AREAWATER\": 1.456000, \"POP_CL\": 9, \"POP2000\": 563662, \"WHITE\": 413061, \"BLACK\": 17586, \"AMERI_ES\": 4601, \"ASIAN\": 6321, \"HAWN_PI\": 583, \"OTHER\": 102320, \"MULT_RACE\": 19190, \"HISPANIC\": 431875, \"MALES\": 267651, \"FEMALES\": 296011, \"AGE_UNDER5\": 47646, \"AGE_5_17\": 127289, \"AGE_18_21\": 33200, \"AGE_22_29\": 64289, \"AGE_30_39\": 81651, \"AGE_40_49\": 76964, \"AGE_50_64\": 72502, \"AGE_65_UP\": 60121, \"MED_AGE\": 31.100000, \"MED_AGE_M\": 29.400000, \"MED_AGE_F\": 32.800000, \"HOUSEHOLDS\": 182063, \"AVE_HH_SZ\": 3.070000, \"HSEHLD_1_M\": 15490, \"HSEHLD_1_F\": 19528, \"MARHH_CHD\": 54116, \"MARHH_NO_C\": 45284, \"MHH_CHILD\": 3707, \"FHH_CHILD\": 19355, \"FAMILIES\": 141071, \"AVE_FAM_SZ\": 3.540000, \"HSE_UNITS\": 193663, \"VACANT\": 11600, \"OWNER_OCC\": 111750, \"RENTER_OCC\": 70313 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -106.423240071680169, 31.790207956060311 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ennis\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"24348\", \"CAPITAL\": \"N\", \"AREALAND\": 17.993000, \"AREAWATER\": 0.404000, \"POP_CL\": 6, \"POP2000\": 16045, \"WHITE\": 10681, \"BLACK\": 2360, \"AMERI_ES\": 75, \"ASIAN\": 46, \"HAWN_PI\": 1, \"OTHER\": 2556, \"MULT_RACE\": 326, \"HISPANIC\": 5325, \"MALES\": 7846, \"FEMALES\": 8199, \"AGE_UNDER5\": 1375, \"AGE_5_17\": 3503, \"AGE_18_21\": 982, \"AGE_22_29\": 1842, \"AGE_30_39\": 2220, \"AGE_40_49\": 2041, \"AGE_50_64\": 2021, \"AGE_65_UP\": 2061, \"MED_AGE\": 31.400000, \"MED_AGE_M\": 29.400000, \"MED_AGE_F\": 33.800000, \"HOUSEHOLDS\": 5335, \"AVE_HH_SZ\": 2.950000, \"HSEHLD_1_M\": 410, \"HSEHLD_1_F\": 809, \"MARHH_CHD\": 1451, \"MARHH_NO_C\": 1449, \"MHH_CHILD\": 120, \"FHH_CHILD\": 462, \"FAMILIES\": 3950, \"AVE_FAM_SZ\": 3.450000, \"HSE_UNITS\": 5618, \"VACANT\": 283, \"OWNER_OCC\": 3265, \"RENTER_OCC\": 2070 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.624030000073262, 32.332295999916418 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Euless\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"24768\", \"CAPITAL\": \"N\", \"AREALAND\": 16.266000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 46005, \"WHITE\": 34743, \"BLACK\": 2987, \"AMERI_ES\": 294, \"ASIAN\": 3288, \"HAWN_PI\": 856, \"OTHER\": 2475, \"MULT_RACE\": 1362, \"HISPANIC\": 6125, \"MALES\": 22837, \"FEMALES\": 23168, \"AGE_UNDER5\": 3421, \"AGE_5_17\": 8061, \"AGE_18_21\": 2225, \"AGE_22_29\": 7093, \"AGE_30_39\": 9342, \"AGE_40_49\": 7207, \"AGE_50_64\": 5977, \"AGE_65_UP\": 2679, \"MED_AGE\": 32.200000, \"MED_AGE_M\": 31.900000, \"MED_AGE_F\": 32.500000, \"HOUSEHOLDS\": 19218, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 3053, \"HSEHLD_1_F\": 2908, \"MARHH_CHD\": 4245, \"MARHH_NO_C\": 4455, \"MHH_CHILD\": 417, \"FHH_CHILD\": 1406, \"FAMILIES\": 11634, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 20136, \"VACANT\": 918, \"OWNER_OCC\": 8427, \"RENTER_OCC\": 10791 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.091782000150161, 32.848252999818627 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Farmers Branch\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"25452\", \"CAPITAL\": \"N\", \"AREALAND\": 12.002000, \"AREAWATER\": 0.011000, \"POP_CL\": 6, \"POP2000\": 27508, \"WHITE\": 21560, \"BLACK\": 661, \"AMERI_ES\": 150, \"ASIAN\": 804, \"HAWN_PI\": 9, \"OTHER\": 3579, \"MULT_RACE\": 745, \"HISPANIC\": 10241, \"MALES\": 13849, \"FEMALES\": 13659, \"AGE_UNDER5\": 1997, \"AGE_5_17\": 5056, \"AGE_18_21\": 1504, \"AGE_22_29\": 3305, \"AGE_30_39\": 4245, \"AGE_40_49\": 3930, \"AGE_50_64\": 4132, \"AGE_65_UP\": 3339, \"MED_AGE\": 34.700000, \"MED_AGE_M\": 32.800000, \"MED_AGE_F\": 36.600000, \"HOUSEHOLDS\": 9766, \"AVE_HH_SZ\": 2.800000, \"HSEHLD_1_M\": 866, \"HSEHLD_1_F\": 1370, \"MARHH_CHD\": 2449, \"MARHH_NO_C\": 3070, \"MHH_CHILD\": 188, \"FHH_CHILD\": 499, \"FAMILIES\": 6938, \"AVE_FAM_SZ\": 3.310000, \"HSE_UNITS\": 10115, \"VACANT\": 349, \"OWNER_OCC\": 6642, \"RENTER_OCC\": 3124 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.87753000010774, 32.928924999867419 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Flower Mound\", \"CLASS\": \"town\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"26232\", \"CAPITAL\": \"N\", \"AREALAND\": 40.875000, \"AREAWATER\": 2.499000, \"POP_CL\": 7, \"POP2000\": 50702, \"WHITE\": 45753, \"BLACK\": 1482, \"AMERI_ES\": 178, \"ASIAN\": 1547, \"HAWN_PI\": 27, \"OTHER\": 898, \"MULT_RACE\": 817, \"HISPANIC\": 2855, \"MALES\": 25243, \"FEMALES\": 25459, \"AGE_UNDER5\": 5444, \"AGE_5_17\": 12219, \"AGE_18_21\": 1475, \"AGE_22_29\": 3089, \"AGE_30_39\": 11883, \"AGE_40_49\": 9718, \"AGE_50_64\": 5527, \"AGE_65_UP\": 1347, \"MED_AGE\": 33.300000, \"MED_AGE_M\": 33.400000, \"MED_AGE_F\": 33.200000, \"HOUSEHOLDS\": 16179, \"AVE_HH_SZ\": 3.120000, \"HSEHLD_1_M\": 716, \"HSEHLD_1_F\": 759, \"MARHH_CHD\": 8369, \"MARHH_NO_C\": 4673, \"MHH_CHILD\": 225, \"FHH_CHILD\": 601, \"FAMILIES\": 14262, \"AVE_FAM_SZ\": 3.340000, \"HSE_UNITS\": 16833, \"VACANT\": 654, \"OWNER_OCC\": 15024, \"RENTER_OCC\": 1155 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.078818000145574, 33.031740999818872 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Forest Hill\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"26544\", \"CAPITAL\": \"N\", \"AREALAND\": 4.246000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12949, \"WHITE\": 4354, \"BLACK\": 7389, \"AMERI_ES\": 54, \"ASIAN\": 147, \"HAWN_PI\": 1, \"OTHER\": 820, \"MULT_RACE\": 184, \"HISPANIC\": 2349, \"MALES\": 6919, \"FEMALES\": 6030, \"AGE_UNDER5\": 831, \"AGE_5_17\": 2581, \"AGE_18_21\": 717, \"AGE_22_29\": 1377, \"AGE_30_39\": 2024, \"AGE_40_49\": 2061, \"AGE_50_64\": 2185, \"AGE_65_UP\": 1173, \"MED_AGE\": 35.100000, \"MED_AGE_M\": 35.100000, \"MED_AGE_F\": 35.100000, \"HOUSEHOLDS\": 3699, \"AVE_HH_SZ\": 3.040000, \"HSEHLD_1_M\": 258, \"HSEHLD_1_F\": 374, \"MARHH_CHD\": 874, \"MARHH_NO_C\": 1095, \"MHH_CHILD\": 82, \"FHH_CHILD\": 407, \"FAMILIES\": 2946, \"AVE_FAM_SZ\": 3.420000, \"HSE_UNITS\": 3876, \"VACANT\": 177, \"OWNER_OCC\": 3075, \"RENTER_OCC\": 624 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.268292000195643, 32.663382999770675 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fort Hood\", \"CLASS\": \"CDP\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"26736\", \"CAPITAL\": \"N\", \"AREALAND\": 14.945000, \"AREAWATER\": 0.053000, \"POP_CL\": 6, \"POP2000\": 33711, \"WHITE\": 17103, \"BLACK\": 10651, \"AMERI_ES\": 407, \"ASIAN\": 719, \"HAWN_PI\": 284, \"OTHER\": 2938, \"MULT_RACE\": 1609, \"HISPANIC\": 5630, \"MALES\": 20911, \"FEMALES\": 12800, \"AGE_UNDER5\": 3947, \"AGE_5_17\": 7287, \"AGE_18_21\": 6757, \"AGE_22_29\": 8776, \"AGE_30_39\": 5615, \"AGE_40_49\": 1174, \"AGE_50_64\": 119, \"AGE_65_UP\": 36, \"MED_AGE\": 21.400000, \"MED_AGE_M\": 21.600000, \"MED_AGE_F\": 20.900000, \"HOUSEHOLDS\": 5819, \"AVE_HH_SZ\": 3.920000, \"HSEHLD_1_M\": 80, \"HSEHLD_1_F\": 38, \"MARHH_CHD\": 4509, \"MARHH_NO_C\": 560, \"MHH_CHILD\": 126, \"FHH_CHILD\": 465, \"FAMILIES\": 5680, \"AVE_FAM_SZ\": 3.950000, \"HSE_UNITS\": 5941, \"VACANT\": 122, \"OWNER_OCC\": 83, \"RENTER_OCC\": 5736 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.780260000416519, 31.13007199961244 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fort Worth\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"27000\", \"CAPITAL\": \"N\", \"AREALAND\": 292.539000, \"AREAWATER\": 6.354000, \"POP_CL\": 9, \"POP2000\": 534694, \"WHITE\": 319159, \"BLACK\": 108310, \"AMERI_ES\": 3144, \"ASIAN\": 14105, \"HAWN_PI\": 341, \"OTHER\": 75100, \"MULT_RACE\": 14535, \"HISPANIC\": 159368, \"MALES\": 263720, \"FEMALES\": 270974, \"AGE_UNDER5\": 45452, \"AGE_5_17\": 105615, \"AGE_18_21\": 34105, \"AGE_22_29\": 72965, \"AGE_30_39\": 87946, \"AGE_40_49\": 73698, \"AGE_50_64\": 63451, \"AGE_65_UP\": 51462, \"MED_AGE\": 30.900000, \"MED_AGE_M\": 30.100000, \"MED_AGE_F\": 31.900000, \"HOUSEHOLDS\": 195078, \"AVE_HH_SZ\": 2.670000, \"HSEHLD_1_M\": 25584, \"HSEHLD_1_F\": 30173, \"MARHH_CHD\": 46157, \"MARHH_NO_C\": 43213, \"MHH_CHILD\": 4480, \"FHH_CHILD\": 17068, \"FAMILIES\": 127530, \"AVE_FAM_SZ\": 3.330000, \"HSE_UNITS\": 211035, \"VACANT\": 15957, \"OWNER_OCC\": 109072, \"RENTER_OCC\": 86006 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.333790000213014, 32.738880999746968 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Freeport\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"27420\", \"CAPITAL\": \"N\", \"AREALAND\": 11.881000, \"AREAWATER\": 1.395000, \"POP_CL\": 6, \"POP2000\": 12708, \"WHITE\": 7822, \"BLACK\": 1700, \"AMERI_ES\": 71, \"ASIAN\": 45, \"HAWN_PI\": 1, \"OTHER\": 2657, \"MULT_RACE\": 412, \"HISPANIC\": 6614, \"MALES\": 6353, \"FEMALES\": 6355, \"AGE_UNDER5\": 1274, \"AGE_5_17\": 3262, \"AGE_18_21\": 851, \"AGE_22_29\": 1476, \"AGE_30_39\": 1787, \"AGE_40_49\": 1682, \"AGE_50_64\": 1346, \"AGE_65_UP\": 1030, \"MED_AGE\": 27.400000, \"MED_AGE_M\": 26.800000, \"MED_AGE_F\": 27.900000, \"HOUSEHOLDS\": 4163, \"AVE_HH_SZ\": 3.050000, \"HSEHLD_1_M\": 490, \"HSEHLD_1_F\": 411, \"MARHH_CHD\": 1281, \"MARHH_NO_C\": 869, \"MHH_CHILD\": 154, \"FHH_CHILD\": 476, \"FAMILIES\": 3099, \"AVE_FAM_SZ\": 3.590000, \"HSE_UNITS\": 4841, \"VACANT\": 678, \"OWNER_OCC\": 2373, \"RENTER_OCC\": 1790 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.356941000005364, 28.959526999995042 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Friendswood\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"27648\", \"CAPITAL\": \"N\", \"AREALAND\": 21.022000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 29037, \"WHITE\": 26158, \"BLACK\": 783, \"AMERI_ES\": 115, \"ASIAN\": 695, \"HAWN_PI\": 4, \"OTHER\": 809, \"MULT_RACE\": 473, \"HISPANIC\": 2553, \"MALES\": 14050, \"FEMALES\": 14987, \"AGE_UNDER5\": 1908, \"AGE_5_17\": 6811, \"AGE_18_21\": 1144, \"AGE_22_29\": 1923, \"AGE_30_39\": 4307, \"AGE_40_49\": 5530, \"AGE_50_64\": 4905, \"AGE_65_UP\": 2509, \"MED_AGE\": 37.200000, \"MED_AGE_M\": 36.500000, \"MED_AGE_F\": 37.700000, \"HOUSEHOLDS\": 10107, \"AVE_HH_SZ\": 2.850000, \"HSEHLD_1_M\": 646, \"HSEHLD_1_F\": 1072, \"MARHH_CHD\": 3722, \"MARHH_NO_C\": 3197, \"MHH_CHILD\": 147, \"FHH_CHILD\": 549, \"FAMILIES\": 8081, \"AVE_FAM_SZ\": 3.230000, \"HSE_UNITS\": 10405, \"VACANT\": 298, \"OWNER_OCC\": 8095, \"RENTER_OCC\": 2012 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.197933000003374, 29.512531999996295 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Frisco\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"27684\", \"CAPITAL\": \"N\", \"AREALAND\": 69.881000, \"AREAWATER\": 0.163000, \"POP_CL\": 6, \"POP2000\": 33714, \"WHITE\": 29417, \"BLACK\": 1268, \"AMERI_ES\": 128, \"ASIAN\": 791, \"HAWN_PI\": 10, \"OTHER\": 1464, \"MULT_RACE\": 636, \"HISPANIC\": 3716, \"MALES\": 16700, \"FEMALES\": 17014, \"AGE_UNDER5\": 4312, \"AGE_5_17\": 6055, \"AGE_18_21\": 882, \"AGE_22_29\": 4575, \"AGE_30_39\": 9155, \"AGE_40_49\": 4335, \"AGE_50_64\": 3184, \"AGE_65_UP\": 1216, \"MED_AGE\": 30.900000, \"MED_AGE_M\": 31.100000, \"MED_AGE_F\": 30.800000, \"HOUSEHOLDS\": 12065, \"AVE_HH_SZ\": 2.780000, \"HSEHLD_1_M\": 881, \"HSEHLD_1_F\": 1006, \"MARHH_CHD\": 4957, \"MARHH_NO_C\": 3644, \"MHH_CHILD\": 164, \"FHH_CHILD\": 515, \"FAMILIES\": 9652, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 13683, \"VACANT\": 1618, \"OWNER_OCC\": 9811, \"RENTER_OCC\": 2254 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.81312000009595, 33.141262999877547 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Gainesville\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"27984\", \"CAPITAL\": \"N\", \"AREALAND\": 16.998000, \"AREAWATER\": 0.027000, \"POP_CL\": 6, \"POP2000\": 15538, \"WHITE\": 12550, \"BLACK\": 933, \"AMERI_ES\": 207, \"ASIAN\": 85, \"HAWN_PI\": 3, \"OTHER\": 1413, \"MULT_RACE\": 347, \"HISPANIC\": 2714, \"MALES\": 7272, \"FEMALES\": 8266, \"AGE_UNDER5\": 1237, \"AGE_5_17\": 2982, \"AGE_18_21\": 1023, \"AGE_22_29\": 1716, \"AGE_30_39\": 1920, \"AGE_40_49\": 2000, \"AGE_50_64\": 2044, \"AGE_65_UP\": 2616, \"MED_AGE\": 34.100000, \"MED_AGE_M\": 31.400000, \"MED_AGE_F\": 36.800000, \"HOUSEHOLDS\": 5969, \"AVE_HH_SZ\": 2.520000, \"HSEHLD_1_M\": 578, \"HSEHLD_1_F\": 1170, \"MARHH_CHD\": 1356, \"MARHH_NO_C\": 1583, \"MHH_CHILD\": 109, \"FHH_CHILD\": 514, \"FAMILIES\": 4008, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 6423, \"VACANT\": 454, \"OWNER_OCC\": 3492, \"RENTER_OCC\": 2477 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.140323000152549, 33.6303599997905 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Galena Park\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"27996\", \"CAPITAL\": \"N\", \"AREALAND\": 4.987000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10592, \"WHITE\": 6710, \"BLACK\": 810, \"AMERI_ES\": 60, \"ASIAN\": 42, \"HAWN_PI\": 1, \"OTHER\": 2579, \"MULT_RACE\": 390, \"HISPANIC\": 7343, \"MALES\": 5273, \"FEMALES\": 5319, \"AGE_UNDER5\": 989, \"AGE_5_17\": 2590, \"AGE_18_21\": 744, \"AGE_22_29\": 1282, \"AGE_30_39\": 1435, \"AGE_40_49\": 1390, \"AGE_50_64\": 1110, \"AGE_65_UP\": 1052, \"MED_AGE\": 28.000000, \"MED_AGE_M\": 27.200000, \"MED_AGE_F\": 29.100000, \"HOUSEHOLDS\": 3054, \"AVE_HH_SZ\": 3.470000, \"HSEHLD_1_M\": 198, \"HSEHLD_1_F\": 322, \"MARHH_CHD\": 1163, \"MARHH_NO_C\": 728, \"MHH_CHILD\": 73, \"FHH_CHILD\": 197, \"FAMILIES\": 2461, \"AVE_FAM_SZ\": 3.920000, \"HSE_UNITS\": 3207, \"VACANT\": 153, \"OWNER_OCC\": 2227, \"RENTER_OCC\": 827 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.237211000003754, 29.738927999995859 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Galveston\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"28068\", \"CAPITAL\": \"N\", \"AREALAND\": 46.151000, \"AREAWATER\": 162.193000, \"POP_CL\": 7, \"POP2000\": 57247, \"WHITE\": 33582, \"BLACK\": 14592, \"AMERI_ES\": 243, \"ASIAN\": 1839, \"HAWN_PI\": 42, \"OTHER\": 5571, \"MULT_RACE\": 1378, \"HISPANIC\": 14753, \"MALES\": 27649, \"FEMALES\": 29598, \"AGE_UNDER5\": 3795, \"AGE_5_17\": 9584, \"AGE_18_21\": 3723, \"AGE_22_29\": 7262, \"AGE_30_39\": 8345, \"AGE_40_49\": 8285, \"AGE_50_64\": 8404, \"AGE_65_UP\": 7849, \"MED_AGE\": 35.500000, \"MED_AGE_M\": 34.300000, \"MED_AGE_F\": 36.600000, \"HOUSEHOLDS\": 23842, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 3945, \"HSEHLD_1_F\": 4553, \"MARHH_CHD\": 3524, \"MARHH_NO_C\": 5206, \"MHH_CHILD\": 438, \"FHH_CHILD\": 2299, \"FAMILIES\": 13744, \"AVE_FAM_SZ\": 3.030000, \"HSE_UNITS\": 30017, \"VACANT\": 6175, \"OWNER_OCC\": 10399, \"RENTER_OCC\": 13443 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.825945000001056, 29.281136999998331 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Garland\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"29000\", \"CAPITAL\": \"N\", \"AREALAND\": 57.110000, \"AREAWATER\": 0.002000, \"POP_CL\": 8, \"POP2000\": 215768, \"WHITE\": 140835, \"BLACK\": 25609, \"AMERI_ES\": 1284, \"ASIAN\": 15806, \"HAWN_PI\": 141, \"OTHER\": 25862, \"MULT_RACE\": 6231, \"HISPANIC\": 55192, \"MALES\": 106937, \"FEMALES\": 108831, \"AGE_UNDER5\": 17780, \"AGE_5_17\": 46553, \"AGE_18_21\": 11920, \"AGE_22_29\": 25703, \"AGE_30_39\": 36416, \"AGE_40_49\": 32890, \"AGE_50_64\": 29190, \"AGE_65_UP\": 15316, \"MED_AGE\": 31.700000, \"MED_AGE_M\": 30.400000, \"MED_AGE_F\": 32.900000, \"HOUSEHOLDS\": 73241, \"AVE_HH_SZ\": 2.930000, \"HSEHLD_1_M\": 6159, \"HSEHLD_1_F\": 8330, \"MARHH_CHD\": 22408, \"MARHH_NO_C\": 19133, \"MHH_CHILD\": 1837, \"FHH_CHILD\": 6191, \"FAMILIES\": 55415, \"AVE_FAM_SZ\": 3.370000, \"HSE_UNITS\": 75300, \"VACANT\": 2059, \"OWNER_OCC\": 48038, \"RENTER_OCC\": 25203 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.635197000072395, 32.907324999909932 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Gatesville\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"29168\", \"CAPITAL\": \"N\", \"AREALAND\": 8.690000, \"AREAWATER\": 0.008000, \"POP_CL\": 6, \"POP2000\": 15591, \"WHITE\": 9854, \"BLACK\": 4210, \"AMERI_ES\": 53, \"ASIAN\": 54, \"HAWN_PI\": 8, \"OTHER\": 1324, \"MULT_RACE\": 88, \"HISPANIC\": 2297, \"MALES\": 6072, \"FEMALES\": 9519, \"AGE_UNDER5\": 452, \"AGE_5_17\": 1373, \"AGE_18_21\": 701, \"AGE_22_29\": 2909, \"AGE_30_39\": 4593, \"AGE_40_49\": 2948, \"AGE_50_64\": 1407, \"AGE_65_UP\": 1208, \"MED_AGE\": 35.400000, \"MED_AGE_M\": 34.000000, \"MED_AGE_F\": 36.200000, \"HOUSEHOLDS\": 2640, \"AVE_HH_SZ\": 2.460000, \"HSEHLD_1_M\": 244, \"HSEHLD_1_F\": 545, \"MARHH_CHD\": 580, \"MARHH_NO_C\": 718, \"MHH_CHILD\": 51, \"FHH_CHILD\": 226, \"FAMILIES\": 1753, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 2963, \"VACANT\": 323, \"OWNER_OCC\": 1618, \"RENTER_OCC\": 1022 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.735257000387605, 31.436754999622078 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Georgetown\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"29336\", \"CAPITAL\": \"N\", \"AREALAND\": 22.830000, \"AREAWATER\": 2.097000, \"POP_CL\": 6, \"POP2000\": 28339, \"WHITE\": 24200, \"BLACK\": 960, \"AMERI_ES\": 100, \"ASIAN\": 190, \"HAWN_PI\": 15, \"OTHER\": 2355, \"MULT_RACE\": 519, \"HISPANIC\": 5121, \"MALES\": 13807, \"FEMALES\": 14532, \"AGE_UNDER5\": 1814, \"AGE_5_17\": 4830, \"AGE_18_21\": 2213, \"AGE_22_29\": 2624, \"AGE_30_39\": 3940, \"AGE_40_49\": 3648, \"AGE_50_64\": 4268, \"AGE_65_UP\": 5002, \"MED_AGE\": 36.900000, \"MED_AGE_M\": 34.900000, \"MED_AGE_F\": 38.800000, \"HOUSEHOLDS\": 10393, \"AVE_HH_SZ\": 2.520000, \"HSEHLD_1_M\": 793, \"HSEHLD_1_F\": 1446, \"MARHH_CHD\": 2514, \"MARHH_NO_C\": 3886, \"MHH_CHILD\": 161, \"FHH_CHILD\": 632, \"FAMILIES\": 7715, \"AVE_FAM_SZ\": 2.920000, \"HSE_UNITS\": 10902, \"VACANT\": 509, \"OWNER_OCC\": 7143, \"RENTER_OCC\": 3250 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.681333000377847, 30.651186999674909 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Grand Prairie\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"30464\", \"CAPITAL\": \"N\", \"AREALAND\": 71.403000, \"AREAWATER\": 10.136000, \"POP_CL\": 8, \"POP2000\": 127427, \"WHITE\": 78970, \"BLACK\": 17242, \"AMERI_ES\": 982, \"ASIAN\": 5632, \"HAWN_PI\": 74, \"OTHER\": 20265, \"MULT_RACE\": 4262, \"HISPANIC\": 42038, \"MALES\": 63058, \"FEMALES\": 64369, \"AGE_UNDER5\": 11299, \"AGE_5_17\": 27621, \"AGE_18_21\": 7160, \"AGE_22_29\": 16518, \"AGE_30_39\": 22454, \"AGE_40_49\": 18596, \"AGE_50_64\": 15686, \"AGE_65_UP\": 8093, \"MED_AGE\": 30.500000, \"MED_AGE_M\": 29.900000, \"MED_AGE_F\": 31.000000, \"HOUSEHOLDS\": 43791, \"AVE_HH_SZ\": 2.900000, \"HSEHLD_1_M\": 4358, \"HSEHLD_1_F\": 4715, \"MARHH_CHD\": 13035, \"MARHH_NO_C\": 11013, \"MHH_CHILD\": 1226, \"FHH_CHILD\": 3835, \"FAMILIES\": 32333, \"AVE_FAM_SZ\": 3.380000, \"HSE_UNITS\": 46425, \"VACANT\": 2634, \"OWNER_OCC\": 26812, \"RENTER_OCC\": 16979 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.016864000135385, 32.715265999839673 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Grapevine\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"30644\", \"CAPITAL\": \"N\", \"AREALAND\": 32.279000, \"AREAWATER\": 3.576000, \"POP_CL\": 6, \"POP2000\": 42059, \"WHITE\": 37081, \"BLACK\": 1001, \"AMERI_ES\": 232, \"ASIAN\": 1075, \"HAWN_PI\": 31, \"OTHER\": 1927, \"MULT_RACE\": 712, \"HISPANIC\": 4860, \"MALES\": 21077, \"FEMALES\": 20982, \"AGE_UNDER5\": 3094, \"AGE_5_17\": 9199, \"AGE_18_21\": 1799, \"AGE_22_29\": 4162, \"AGE_30_39\": 7966, \"AGE_40_49\": 8395, \"AGE_50_64\": 5435, \"AGE_65_UP\": 2009, \"MED_AGE\": 34.300000, \"MED_AGE_M\": 33.400000, \"MED_AGE_F\": 35.100000, \"HOUSEHOLDS\": 15712, \"AVE_HH_SZ\": 2.660000, \"HSEHLD_1_M\": 1734, \"HSEHLD_1_F\": 1756, \"MARHH_CHD\": 5259, \"MARHH_NO_C\": 4001, \"MHH_CHILD\": 296, \"FHH_CHILD\": 1067, \"FAMILIES\": 11318, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 16486, \"VACANT\": 774, \"OWNER_OCC\": 10210, \"RENTER_OCC\": 5502 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.08578400014801, 32.935024999818708 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Greenville\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"30920\", \"CAPITAL\": \"N\", \"AREALAND\": 33.913000, \"AREAWATER\": 0.796000, \"POP_CL\": 6, \"POP2000\": 23960, \"WHITE\": 16702, \"BLACK\": 4518, \"AMERI_ES\": 116, \"ASIAN\": 146, \"HAWN_PI\": 9, \"OTHER\": 1963, \"MULT_RACE\": 506, \"HISPANIC\": 3511, \"MALES\": 11623, \"FEMALES\": 12337, \"AGE_UNDER5\": 1768, \"AGE_5_17\": 4703, \"AGE_18_21\": 1414, \"AGE_22_29\": 2649, \"AGE_30_39\": 3327, \"AGE_40_49\": 3227, \"AGE_50_64\": 3359, \"AGE_65_UP\": 3513, \"MED_AGE\": 34.600000, \"MED_AGE_M\": 32.400000, \"MED_AGE_F\": 36.500000, \"HOUSEHOLDS\": 9156, \"AVE_HH_SZ\": 2.560000, \"HSEHLD_1_M\": 1079, \"HSEHLD_1_F\": 1544, \"MARHH_CHD\": 1976, \"MARHH_NO_C\": 2551, \"MHH_CHILD\": 185, \"FHH_CHILD\": 746, \"FAMILIES\": 6172, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 9977, \"VACANT\": 821, \"OWNER_OCC\": 5205, \"RENTER_OCC\": 3951 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.10970300002667, 33.126003999963416 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Groves\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"31328\", \"CAPITAL\": \"N\", \"AREALAND\": 5.181000, \"AREAWATER\": 0.007000, \"POP_CL\": 6, \"POP2000\": 15733, \"WHITE\": 14704, \"BLACK\": 208, \"AMERI_ES\": 41, \"ASIAN\": 260, \"HAWN_PI\": 5, \"OTHER\": 312, \"MULT_RACE\": 203, \"HISPANIC\": 1231, \"MALES\": 7560, \"FEMALES\": 8173, \"AGE_UNDER5\": 952, \"AGE_5_17\": 2802, \"AGE_18_21\": 815, \"AGE_22_29\": 1360, \"AGE_30_39\": 2129, \"AGE_40_49\": 2428, \"AGE_50_64\": 2238, \"AGE_65_UP\": 3009, \"MED_AGE\": 39.200000, \"MED_AGE_M\": 37.800000, \"MED_AGE_F\": 40.600000, \"HOUSEHOLDS\": 6182, \"AVE_HH_SZ\": 2.520000, \"HSEHLD_1_M\": 589, \"HSEHLD_1_F\": 901, \"MARHH_CHD\": 1521, \"MARHH_NO_C\": 2175, \"MHH_CHILD\": 105, \"FHH_CHILD\": 325, \"FAMILIES\": 4511, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 6570, \"VACANT\": 388, \"OWNER_OCC\": 4887, \"RENTER_OCC\": 1295 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.915829, 29.947112999999252 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Haltom City\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"31928\", \"CAPITAL\": \"N\", \"AREALAND\": 12.393000, \"AREAWATER\": 0.017000, \"POP_CL\": 6, \"POP2000\": 39018, \"WHITE\": 29973, \"BLACK\": 1088, \"AMERI_ES\": 285, \"ASIAN\": 3010, \"HAWN_PI\": 45, \"OTHER\": 3600, \"MULT_RACE\": 1017, \"HISPANIC\": 7771, \"MALES\": 19587, \"FEMALES\": 19431, \"AGE_UNDER5\": 3206, \"AGE_5_17\": 7355, \"AGE_18_21\": 2234, \"AGE_22_29\": 5160, \"AGE_30_39\": 6432, \"AGE_40_49\": 5504, \"AGE_50_64\": 5070, \"AGE_65_UP\": 4057, \"MED_AGE\": 32.300000, \"MED_AGE_M\": 31.300000, \"MED_AGE_F\": 33.400000, \"HOUSEHOLDS\": 14922, \"AVE_HH_SZ\": 2.610000, \"HSEHLD_1_M\": 2030, \"HSEHLD_1_F\": 2020, \"MARHH_CHD\": 3574, \"MARHH_NO_C\": 3804, \"MHH_CHILD\": 429, \"FHH_CHILD\": 1021, \"FAMILIES\": 9998, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 15716, \"VACANT\": 794, \"OWNER_OCC\": 8884, \"RENTER_OCC\": 6038 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.271634000194581, 32.816128999766171 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Harker Heights\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"32312\", \"CAPITAL\": \"N\", \"AREALAND\": 12.760000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 17308, \"WHITE\": 12269, \"BLACK\": 2585, \"AMERI_ES\": 135, \"ASIAN\": 620, \"HAWN_PI\": 70, \"OTHER\": 1002, \"MULT_RACE\": 627, \"HISPANIC\": 2153, \"MALES\": 8696, \"FEMALES\": 8612, \"AGE_UNDER5\": 1631, \"AGE_5_17\": 3630, \"AGE_18_21\": 934, \"AGE_22_29\": 2383, \"AGE_30_39\": 3137, \"AGE_40_49\": 2471, \"AGE_50_64\": 2043, \"AGE_65_UP\": 1079, \"MED_AGE\": 30.300000, \"MED_AGE_M\": 29.500000, \"MED_AGE_F\": 31.100000, \"HOUSEHOLDS\": 6200, \"AVE_HH_SZ\": 2.770000, \"HSEHLD_1_M\": 623, \"HSEHLD_1_F\": 495, \"MARHH_CHD\": 2013, \"MARHH_NO_C\": 1792, \"MHH_CHILD\": 151, \"FHH_CHILD\": 488, \"FAMILIES\": 4710, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 6823, \"VACANT\": 623, \"OWNER_OCC\": 3637, \"RENTER_OCC\": 2563 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.655524000358398, 31.068458999671414 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Harlingen\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"32372\", \"CAPITAL\": \"N\", \"AREALAND\": 34.070000, \"AREAWATER\": 0.255000, \"POP_CL\": 7, \"POP2000\": 57564, \"WHITE\": 45290, \"BLACK\": 528, \"AMERI_ES\": 301, \"ASIAN\": 506, \"HAWN_PI\": 16, \"OTHER\": 9435, \"MULT_RACE\": 1488, \"HISPANIC\": 41881, \"MALES\": 27402, \"FEMALES\": 30162, \"AGE_UNDER5\": 5211, \"AGE_5_17\": 12489, \"AGE_18_21\": 3213, \"AGE_22_29\": 6420, \"AGE_30_39\": 7601, \"AGE_40_49\": 6928, \"AGE_50_64\": 7039, \"AGE_65_UP\": 8663, \"MED_AGE\": 31.800000, \"MED_AGE_M\": 29.900000, \"MED_AGE_F\": 33.700000, \"HOUSEHOLDS\": 19021, \"AVE_HH_SZ\": 2.940000, \"HSEHLD_1_M\": 1579, \"HSEHLD_1_F\": 2404, \"MARHH_CHD\": 5184, \"MARHH_NO_C\": 5392, \"MHH_CHILD\": 354, \"FHH_CHILD\": 1801, \"FAMILIES\": 14358, \"AVE_FAM_SZ\": 3.440000, \"HSE_UNITS\": 23008, \"VACANT\": 3987, \"OWNER_OCC\": 11619, \"RENTER_OCC\": 7402 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.696275000419675, 26.192202999802653 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Henderson\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"33212\", \"CAPITAL\": \"N\", \"AREALAND\": 11.897000, \"AREAWATER\": 0.115000, \"POP_CL\": 6, \"POP2000\": 11273, \"WHITE\": 7776, \"BLACK\": 2518, \"AMERI_ES\": 31, \"ASIAN\": 53, \"HAWN_PI\": 1, \"OTHER\": 767, \"MULT_RACE\": 127, \"HISPANIC\": 1330, \"MALES\": 5253, \"FEMALES\": 6020, \"AGE_UNDER5\": 796, \"AGE_5_17\": 2234, \"AGE_18_21\": 625, \"AGE_22_29\": 1073, \"AGE_30_39\": 1426, \"AGE_40_49\": 1482, \"AGE_50_64\": 1523, \"AGE_65_UP\": 2114, \"MED_AGE\": 36.700000, \"MED_AGE_M\": 33.700000, \"MED_AGE_F\": 39.100000, \"HOUSEHOLDS\": 4350, \"AVE_HH_SZ\": 2.520000, \"HSEHLD_1_M\": 379, \"HSEHLD_1_F\": 876, \"MARHH_CHD\": 1014, \"MARHH_NO_C\": 1216, \"MHH_CHILD\": 75, \"FHH_CHILD\": 328, \"FAMILIES\": 2969, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 4831, \"VACANT\": 481, \"OWNER_OCC\": 2999, \"RENTER_OCC\": 1351 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.80273200000083, 32.153937999997915 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hereford\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"33320\", \"CAPITAL\": \"N\", \"AREALAND\": 5.613000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14597, \"WHITE\": 10198, \"BLACK\": 257, \"AMERI_ES\": 119, \"ASIAN\": 38, \"HAWN_PI\": 17, \"OTHER\": 3616, \"MULT_RACE\": 352, \"HISPANIC\": 8958, \"MALES\": 7022, \"FEMALES\": 7575, \"AGE_UNDER5\": 1388, \"AGE_5_17\": 3573, \"AGE_18_21\": 881, \"AGE_22_29\": 1513, \"AGE_30_39\": 1910, \"AGE_40_49\": 1702, \"AGE_50_64\": 1821, \"AGE_65_UP\": 1809, \"MED_AGE\": 29.700000, \"MED_AGE_M\": 27.800000, \"MED_AGE_F\": 31.400000, \"HOUSEHOLDS\": 4839, \"AVE_HH_SZ\": 2.960000, \"HSEHLD_1_M\": 354, \"HSEHLD_1_F\": 650, \"MARHH_CHD\": 1454, \"MARHH_NO_C\": 1370, \"MHH_CHILD\": 121, \"FHH_CHILD\": 467, \"FAMILIES\": 3731, \"AVE_FAM_SZ\": 3.440000, \"HSE_UNITS\": 5323, \"VACANT\": 484, \"OWNER_OCC\": 3174, \"RENTER_OCC\": 1665 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -102.398616936723897, 34.82196097289512 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hewitt\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"33428\", \"CAPITAL\": \"N\", \"AREALAND\": 6.894000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11085, \"WHITE\": 9320, \"BLACK\": 853, \"AMERI_ES\": 47, \"ASIAN\": 260, \"HAWN_PI\": 7, \"OTHER\": 446, \"MULT_RACE\": 152, \"HISPANIC\": 1029, \"MALES\": 5397, \"FEMALES\": 5688, \"AGE_UNDER5\": 860, \"AGE_5_17\": 2458, \"AGE_18_21\": 530, \"AGE_22_29\": 1095, \"AGE_30_39\": 1886, \"AGE_40_49\": 1879, \"AGE_50_64\": 1634, \"AGE_65_UP\": 743, \"MED_AGE\": 33.400000, \"MED_AGE_M\": 32.300000, \"MED_AGE_F\": 34.200000, \"HOUSEHOLDS\": 3931, \"AVE_HH_SZ\": 2.820000, \"HSEHLD_1_M\": 236, \"HSEHLD_1_F\": 323, \"MARHH_CHD\": 1417, \"MARHH_NO_C\": 1269, \"MHH_CHILD\": 75, \"FHH_CHILD\": 300, \"FAMILIES\": 3222, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 4018, \"VACANT\": 87, \"OWNER_OCC\": 2770, \"RENTER_OCC\": 1161 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.195023000188812, 31.453788999816847 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Highland Village\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"33848\", \"CAPITAL\": \"N\", \"AREALAND\": 5.517000, \"AREAWATER\": 0.893000, \"POP_CL\": 6, \"POP2000\": 12173, \"WHITE\": 11468, \"BLACK\": 179, \"AMERI_ES\": 49, \"ASIAN\": 234, \"HAWN_PI\": 2, \"OTHER\": 97, \"MULT_RACE\": 144, \"HISPANIC\": 421, \"MALES\": 6084, \"FEMALES\": 6089, \"AGE_UNDER5\": 781, \"AGE_5_17\": 3226, \"AGE_18_21\": 446, \"AGE_22_29\": 421, \"AGE_30_39\": 1826, \"AGE_40_49\": 2863, \"AGE_50_64\": 2124, \"AGE_65_UP\": 486, \"MED_AGE\": 37.700000, \"MED_AGE_M\": 38.200000, \"MED_AGE_F\": 37.400000, \"HOUSEHOLDS\": 3874, \"AVE_HH_SZ\": 3.140000, \"HSEHLD_1_M\": 130, \"HSEHLD_1_F\": 127, \"MARHH_CHD\": 1900, \"MARHH_NO_C\": 1404, \"MHH_CHILD\": 47, \"FHH_CHILD\": 117, \"FAMILIES\": 3552, \"AVE_FAM_SZ\": 3.290000, \"HSE_UNITS\": 4009, \"VACANT\": 135, \"OWNER_OCC\": 3750, \"RENTER_OCC\": 124 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.055874000140193, 33.087939999823938 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Houston\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"35000\", \"CAPITAL\": \"N\", \"AREALAND\": 579.413000, \"AREAWATER\": 22.277000, \"POP_CL\": 10, \"POP2000\": 1953631, \"WHITE\": 962610, \"BLACK\": 494496, \"AMERI_ES\": 8568, \"ASIAN\": 103694, \"HAWN_PI\": 1182, \"OTHER\": 321603, \"MULT_RACE\": 61478, \"HISPANIC\": 730865, \"MALES\": 975551, \"FEMALES\": 978080, \"AGE_UNDER5\": 160797, \"AGE_5_17\": 375861, \"AGE_18_21\": 117621, \"AGE_22_29\": 288621, \"AGE_30_39\": 324687, \"AGE_40_49\": 276105, \"AGE_50_64\": 245874, \"AGE_65_UP\": 164065, \"MED_AGE\": 30.900000, \"MED_AGE_M\": 30.200000, \"MED_AGE_F\": 31.800000, \"HOUSEHOLDS\": 717945, \"AVE_HH_SZ\": 2.670000, \"HSEHLD_1_M\": 103336, \"HSEHLD_1_F\": 109382, \"MARHH_CHD\": 159315, \"MARHH_NO_C\": 150751, \"MHH_CHILD\": 15142, \"FHH_CHILD\": 63252, \"FAMILIES\": 457549, \"AVE_FAM_SZ\": 3.390000, \"HSE_UNITS\": 782009, \"VACANT\": 64064, \"OWNER_OCC\": 328741, \"RENTER_OCC\": 389204 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.383173000005584, 29.762894999994266 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Humble\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"35348\", \"CAPITAL\": \"N\", \"AREALAND\": 9.867000, \"AREAWATER\": 0.013000, \"POP_CL\": 6, \"POP2000\": 14579, \"WHITE\": 10094, \"BLACK\": 2113, \"AMERI_ES\": 99, \"ASIAN\": 470, \"HAWN_PI\": 38, \"OTHER\": 1322, \"MULT_RACE\": 443, \"HISPANIC\": 3406, \"MALES\": 7144, \"FEMALES\": 7435, \"AGE_UNDER5\": 1269, \"AGE_5_17\": 2812, \"AGE_18_21\": 975, \"AGE_22_29\": 2112, \"AGE_30_39\": 2300, \"AGE_40_49\": 2039, \"AGE_50_64\": 1830, \"AGE_65_UP\": 1242, \"MED_AGE\": 30.500000, \"MED_AGE_M\": 28.900000, \"MED_AGE_F\": 32.000000, \"HOUSEHOLDS\": 5460, \"AVE_HH_SZ\": 2.620000, \"HSEHLD_1_M\": 683, \"HSEHLD_1_F\": 755, \"MARHH_CHD\": 1244, \"MARHH_NO_C\": 1192, \"MHH_CHILD\": 143, \"FHH_CHILD\": 634, \"FAMILIES\": 3651, \"AVE_FAM_SZ\": 3.180000, \"HSE_UNITS\": 5908, \"VACANT\": 448, \"OWNER_OCC\": 2455, \"RENTER_OCC\": 3005 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.264873000004002, 29.994919999995471 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Huntsville\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"35528\", \"CAPITAL\": \"N\", \"AREALAND\": 30.903000, \"AREAWATER\": 0.341000, \"POP_CL\": 6, \"POP2000\": 35078, \"WHITE\": 23075, \"BLACK\": 9169, \"AMERI_ES\": 117, \"ASIAN\": 391, \"HAWN_PI\": 24, \"OTHER\": 1724, \"MULT_RACE\": 578, \"HISPANIC\": 5689, \"MALES\": 21210, \"FEMALES\": 13868, \"AGE_UNDER5\": 1604, \"AGE_5_17\": 3684, \"AGE_18_21\": 6982, \"AGE_22_29\": 6159, \"AGE_30_39\": 5214, \"AGE_40_49\": 4734, \"AGE_50_64\": 3711, \"AGE_65_UP\": 2990, \"MED_AGE\": 28.300000, \"MED_AGE_M\": 30.500000, \"MED_AGE_F\": 24.500000, \"HOUSEHOLDS\": 10266, \"AVE_HH_SZ\": 2.310000, \"HSEHLD_1_M\": 1410, \"HSEHLD_1_F\": 1752, \"MARHH_CHD\": 1606, \"MARHH_NO_C\": 2195, \"MHH_CHILD\": 165, \"FHH_CHILD\": 826, \"FAMILIES\": 5474, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 11508, \"VACANT\": 1242, \"OWNER_OCC\": 4463, \"RENTER_OCC\": 5803 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.548373000008283, 30.711253999990859 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hurst\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"35576\", \"CAPITAL\": \"N\", \"AREALAND\": 9.903000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 36273, \"WHITE\": 31189, \"BLACK\": 1499, \"AMERI_ES\": 231, \"ASIAN\": 663, \"HAWN_PI\": 106, \"OTHER\": 1886, \"MULT_RACE\": 699, \"HISPANIC\": 3999, \"MALES\": 17632, \"FEMALES\": 18641, \"AGE_UNDER5\": 2620, \"AGE_5_17\": 6612, \"AGE_18_21\": 1765, \"AGE_22_29\": 3547, \"AGE_30_39\": 5683, \"AGE_40_49\": 5524, \"AGE_50_64\": 6013, \"AGE_65_UP\": 4509, \"MED_AGE\": 36.600000, \"MED_AGE_M\": 35.200000, \"MED_AGE_F\": 37.900000, \"HOUSEHOLDS\": 14076, \"AVE_HH_SZ\": 2.560000, \"HSEHLD_1_M\": 1268, \"HSEHLD_1_F\": 1881, \"MARHH_CHD\": 3448, \"MARHH_NO_C\": 4606, \"MHH_CHILD\": 297, \"FHH_CHILD\": 964, \"FAMILIES\": 10265, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 14729, \"VACANT\": 653, \"OWNER_OCC\": 9310, \"RENTER_OCC\": 4766 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.180172000170856, 32.835628999794167 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Irving\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"37000\", \"CAPITAL\": \"N\", \"AREALAND\": 67.227000, \"AREAWATER\": 0.443000, \"POP_CL\": 8, \"POP2000\": 191615, \"WHITE\": 123019, \"BLACK\": 19583, \"AMERI_ES\": 1244, \"ASIAN\": 15784, \"HAWN_PI\": 248, \"OTHER\": 25608, \"MULT_RACE\": 6129, \"HISPANIC\": 59838, \"MALES\": 97687, \"FEMALES\": 93928, \"AGE_UNDER5\": 15549, \"AGE_5_17\": 32669, \"AGE_18_21\": 11197, \"AGE_22_29\": 35036, \"AGE_30_39\": 37642, \"AGE_40_49\": 25846, \"AGE_50_64\": 21979, \"AGE_65_UP\": 11697, \"MED_AGE\": 30.300000, \"MED_AGE_M\": 29.900000, \"MED_AGE_F\": 30.800000, \"HOUSEHOLDS\": 76241, \"AVE_HH_SZ\": 2.500000, \"HSEHLD_1_M\": 12010, \"HSEHLD_1_F\": 11835, \"MARHH_CHD\": 16649, \"MARHH_NO_C\": 16964, \"MHH_CHILD\": 1792, \"FHH_CHILD\": 5400, \"FAMILIES\": 46168, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 80293, \"VACANT\": 4052, \"OWNER_OCC\": 28396, \"RENTER_OCC\": 47845 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.966255000124335, 32.847127999849441 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Jacinto City\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"37156\", \"CAPITAL\": \"N\", \"AREALAND\": 1.859000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10302, \"WHITE\": 7024, \"BLACK\": 127, \"AMERI_ES\": 92, \"ASIAN\": 24, \"HAWN_PI\": 1, \"OTHER\": 2644, \"MULT_RACE\": 390, \"HISPANIC\": 7767, \"MALES\": 5151, \"FEMALES\": 5151, \"AGE_UNDER5\": 1013, \"AGE_5_17\": 2419, \"AGE_18_21\": 722, \"AGE_22_29\": 1327, \"AGE_30_39\": 1431, \"AGE_40_49\": 1309, \"AGE_50_64\": 1129, \"AGE_65_UP\": 952, \"MED_AGE\": 28.000000, \"MED_AGE_M\": 27.600000, \"MED_AGE_F\": 28.500000, \"HOUSEHOLDS\": 2947, \"AVE_HH_SZ\": 3.450000, \"HSEHLD_1_M\": 220, \"HSEHLD_1_F\": 254, \"MARHH_CHD\": 1173, \"MARHH_NO_C\": 692, \"MHH_CHILD\": 78, \"FHH_CHILD\": 184, \"FAMILIES\": 2392, \"AVE_FAM_SZ\": 3.880000, \"HSE_UNITS\": 3124, \"VACANT\": 177, \"OWNER_OCC\": 2014, \"RENTER_OCC\": 933 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.240332000003761, 29.76552699999581 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Jacksonville\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"37216\", \"CAPITAL\": \"N\", \"AREALAND\": 14.137000, \"AREAWATER\": 0.013000, \"POP_CL\": 6, \"POP2000\": 13868, \"WHITE\": 8682, \"BLACK\": 3009, \"AMERI_ES\": 67, \"ASIAN\": 94, \"HAWN_PI\": 18, \"OTHER\": 1764, \"MULT_RACE\": 234, \"HISPANIC\": 3195, \"MALES\": 6565, \"FEMALES\": 7303, \"AGE_UNDER5\": 1227, \"AGE_5_17\": 2829, \"AGE_18_21\": 1044, \"AGE_22_29\": 1576, \"AGE_30_39\": 1671, \"AGE_40_49\": 1706, \"AGE_50_64\": 1662, \"AGE_65_UP\": 2153, \"MED_AGE\": 31.400000, \"MED_AGE_M\": 28.400000, \"MED_AGE_F\": 34.700000, \"HOUSEHOLDS\": 4882, \"AVE_HH_SZ\": 2.710000, \"HSEHLD_1_M\": 427, \"HSEHLD_1_F\": 926, \"MARHH_CHD\": 1075, \"MARHH_NO_C\": 1193, \"MHH_CHILD\": 108, \"FHH_CHILD\": 553, \"FAMILIES\": 3359, \"AVE_FAM_SZ\": 3.280000, \"HSE_UNITS\": 5397, \"VACANT\": 515, \"OWNER_OCC\": 2809, \"RENTER_OCC\": 2073 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.268629000003699, 31.963524999994394 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Jollyville\", \"CLASS\": \"CDP\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"37936\", \"CAPITAL\": \"N\", \"AREALAND\": 5.897000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 15813, \"WHITE\": 12621, \"BLACK\": 742, \"AMERI_ES\": 49, \"ASIAN\": 1348, \"HAWN_PI\": 3, \"OTHER\": 689, \"MULT_RACE\": 361, \"HISPANIC\": 1808, \"MALES\": 7899, \"FEMALES\": 7914, \"AGE_UNDER5\": 1258, \"AGE_5_17\": 3275, \"AGE_18_21\": 692, \"AGE_22_29\": 2146, \"AGE_30_39\": 3386, \"AGE_40_49\": 2930, \"AGE_50_64\": 1654, \"AGE_65_UP\": 472, \"MED_AGE\": 31.500000, \"MED_AGE_M\": 31.100000, \"MED_AGE_F\": 31.900000, \"HOUSEHOLDS\": 5897, \"AVE_HH_SZ\": 2.680000, \"HSEHLD_1_M\": 647, \"HSEHLD_1_F\": 562, \"MARHH_CHD\": 1966, \"MARHH_NO_C\": 1405, \"MHH_CHILD\": 124, \"FHH_CHILD\": 400, \"FAMILIES\": 4146, \"AVE_FAM_SZ\": 3.170000, \"HSE_UNITS\": 5993, \"VACANT\": 96, \"OWNER_OCC\": 3943, \"RENTER_OCC\": 1954 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.762381000421627, 30.453287999647106 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Katy\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"38476\", \"CAPITAL\": \"N\", \"AREALAND\": 10.668000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11775, \"WHITE\": 9889, \"BLACK\": 499, \"AMERI_ES\": 66, \"ASIAN\": 59, \"HAWN_PI\": 5, \"OTHER\": 1018, \"MULT_RACE\": 239, \"HISPANIC\": 2797, \"MALES\": 5845, \"FEMALES\": 5930, \"AGE_UNDER5\": 887, \"AGE_5_17\": 2828, \"AGE_18_21\": 623, \"AGE_22_29\": 1104, \"AGE_30_39\": 1867, \"AGE_40_49\": 1965, \"AGE_50_64\": 1542, \"AGE_65_UP\": 959, \"MED_AGE\": 32.700000, \"MED_AGE_M\": 31.500000, \"MED_AGE_F\": 34.000000, \"HOUSEHOLDS\": 3888, \"AVE_HH_SZ\": 3.000000, \"HSEHLD_1_M\": 293, \"HSEHLD_1_F\": 384, \"MARHH_CHD\": 1395, \"MARHH_NO_C\": 1088, \"MHH_CHILD\": 102, \"FHH_CHILD\": 280, \"FAMILIES\": 3083, \"AVE_FAM_SZ\": 3.370000, \"HSE_UNITS\": 4072, \"VACANT\": 184, \"OWNER_OCC\": 2835, \"RENTER_OCC\": 1053 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.822436000016452, 29.792581999985323 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Keller\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"38632\", \"CAPITAL\": \"N\", \"AREALAND\": 18.438000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 27345, \"WHITE\": 25634, \"BLACK\": 392, \"AMERI_ES\": 106, \"ASIAN\": 483, \"HAWN_PI\": 10, \"OTHER\": 324, \"MULT_RACE\": 396, \"HISPANIC\": 1234, \"MALES\": 13597, \"FEMALES\": 13748, \"AGE_UNDER5\": 2351, \"AGE_5_17\": 6877, \"AGE_18_21\": 880, \"AGE_22_29\": 1498, \"AGE_30_39\": 5353, \"AGE_40_49\": 5312, \"AGE_50_64\": 3885, \"AGE_65_UP\": 1189, \"MED_AGE\": 35.000000, \"MED_AGE_M\": 35.100000, \"MED_AGE_F\": 34.900000, \"HOUSEHOLDS\": 8827, \"AVE_HH_SZ\": 3.090000, \"HSEHLD_1_M\": 372, \"HSEHLD_1_F\": 415, \"MARHH_CHD\": 4241, \"MARHH_NO_C\": 2931, \"MHH_CHILD\": 125, \"FHH_CHILD\": 333, \"FAMILIES\": 7853, \"AVE_FAM_SZ\": 3.300000, \"HSE_UNITS\": 9216, \"VACANT\": 389, \"OWNER_OCC\": 8179, \"RENTER_OCC\": 648 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.235995000183763, 32.92753299977521 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Kerrville\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"39040\", \"CAPITAL\": \"N\", \"AREALAND\": 16.708000, \"AREAWATER\": 0.232000, \"POP_CL\": 6, \"POP2000\": 20425, \"WHITE\": 17543, \"BLACK\": 610, \"AMERI_ES\": 112, \"ASIAN\": 117, \"HAWN_PI\": 16, \"OTHER\": 1674, \"MULT_RACE\": 353, \"HISPANIC\": 4643, \"MALES\": 9531, \"FEMALES\": 10894, \"AGE_UNDER5\": 1057, \"AGE_5_17\": 3228, \"AGE_18_21\": 1001, \"AGE_22_29\": 1567, \"AGE_30_39\": 2177, \"AGE_40_49\": 2348, \"AGE_50_64\": 3065, \"AGE_65_UP\": 5982, \"MED_AGE\": 44.700000, \"MED_AGE_M\": 41.400000, \"MED_AGE_F\": 48.300000, \"HOUSEHOLDS\": 8563, \"AVE_HH_SZ\": 2.210000, \"HSEHLD_1_M\": 891, \"HSEHLD_1_F\": 1945, \"MARHH_CHD\": 1307, \"MARHH_NO_C\": 2960, \"MHH_CHILD\": 160, \"FHH_CHILD\": 495, \"FAMILIES\": 5409, \"AVE_FAM_SZ\": 2.790000, \"HSE_UNITS\": 9477, \"VACANT\": 914, \"OWNER_OCC\": 5424, \"RENTER_OCC\": 3139 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -99.140498001656411, 30.046486998446333 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Kilgore\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"39124\", \"CAPITAL\": \"N\", \"AREALAND\": 15.391000, \"AREAWATER\": 0.035000, \"POP_CL\": 6, \"POP2000\": 11301, \"WHITE\": 8840, \"BLACK\": 1394, \"AMERI_ES\": 46, \"ASIAN\": 77, \"HAWN_PI\": 3, \"OTHER\": 785, \"MULT_RACE\": 156, \"HISPANIC\": 1256, \"MALES\": 5486, \"FEMALES\": 5815, \"AGE_UNDER5\": 717, \"AGE_5_17\": 2067, \"AGE_18_21\": 927, \"AGE_22_29\": 1188, \"AGE_30_39\": 1481, \"AGE_40_49\": 1463, \"AGE_50_64\": 1595, \"AGE_65_UP\": 1863, \"MED_AGE\": 35.600000, \"MED_AGE_M\": 33.500000, \"MED_AGE_F\": 37.300000, \"HOUSEHOLDS\": 4403, \"AVE_HH_SZ\": 2.480000, \"HSEHLD_1_M\": 483, \"HSEHLD_1_F\": 731, \"MARHH_CHD\": 927, \"MARHH_NO_C\": 1295, \"MHH_CHILD\": 102, \"FHH_CHILD\": 302, \"FAMILIES\": 2965, \"AVE_FAM_SZ\": 3.030000, \"HSE_UNITS\": 4766, \"VACANT\": 363, \"OWNER_OCC\": 2986, \"RENTER_OCC\": 1417 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.86850200000103, 32.385533999997577 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Killeen\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"39148\", \"CAPITAL\": \"N\", \"AREALAND\": 35.346000, \"AREAWATER\": 0.053000, \"POP_CL\": 7, \"POP2000\": 86911, \"WHITE\": 39788, \"BLACK\": 29109, \"AMERI_ES\": 680, \"ASIAN\": 3759, \"HAWN_PI\": 787, \"OTHER\": 7814, \"MULT_RACE\": 4974, \"HISPANIC\": 15469, \"MALES\": 43603, \"FEMALES\": 43308, \"AGE_UNDER5\": 8736, \"AGE_5_17\": 17235, \"AGE_18_21\": 7102, \"AGE_22_29\": 17085, \"AGE_30_39\": 14712, \"AGE_40_49\": 10484, \"AGE_50_64\": 7336, \"AGE_65_UP\": 4221, \"MED_AGE\": 26.700000, \"MED_AGE_M\": 26.400000, \"MED_AGE_F\": 26.900000, \"HOUSEHOLDS\": 32447, \"AVE_HH_SZ\": 2.670000, \"HSEHLD_1_M\": 4268, \"HSEHLD_1_F\": 2953, \"MARHH_CHD\": 9581, \"MARHH_NO_C\": 7923, \"MHH_CHILD\": 732, \"FHH_CHILD\": 3329, \"FAMILIES\": 22984, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 35343, \"VACANT\": 2896, \"OWNER_OCC\": 15058, \"RENTER_OCC\": 17389 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.726586000390711, 31.105590999638746 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Kingsville\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"39352\", \"CAPITAL\": \"N\", \"AREALAND\": 13.833000, \"AREAWATER\": 0.034000, \"POP_CL\": 6, \"POP2000\": 25575, \"WHITE\": 18185, \"BLACK\": 1111, \"AMERI_ES\": 160, \"ASIAN\": 443, \"HAWN_PI\": 17, \"OTHER\": 4811, \"MULT_RACE\": 848, \"HISPANIC\": 17151, \"MALES\": 12771, \"FEMALES\": 12804, \"AGE_UNDER5\": 2037, \"AGE_5_17\": 4821, \"AGE_18_21\": 2695, \"AGE_22_29\": 3914, \"AGE_30_39\": 3312, \"AGE_40_49\": 2869, \"AGE_50_64\": 3242, \"AGE_65_UP\": 2685, \"MED_AGE\": 28.400000, \"MED_AGE_M\": 26.800000, \"MED_AGE_F\": 30.300000, \"HOUSEHOLDS\": 8943, \"AVE_HH_SZ\": 2.730000, \"HSEHLD_1_M\": 983, \"HSEHLD_1_F\": 1119, \"MARHH_CHD\": 2095, \"MARHH_NO_C\": 2295, \"MHH_CHILD\": 185, \"FHH_CHILD\": 802, \"FAMILIES\": 6136, \"AVE_FAM_SZ\": 3.280000, \"HSE_UNITS\": 10427, \"VACANT\": 1484, \"OWNER_OCC\": 4919, \"RENTER_OCC\": 4024 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.865507000518136, 27.515023999712078 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"La Homa\", \"CLASS\": \"CDP\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"40342\", \"CAPITAL\": \"N\", \"AREALAND\": 6.857000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10433, \"WHITE\": 9170, \"BLACK\": 12, \"AMERI_ES\": 2, \"ASIAN\": 7, \"HAWN_PI\": 0, \"OTHER\": 1196, \"MULT_RACE\": 46, \"HISPANIC\": 10196, \"MALES\": 5205, \"FEMALES\": 5228, \"AGE_UNDER5\": 1381, \"AGE_5_17\": 3126, \"AGE_18_21\": 759, \"AGE_22_29\": 1391, \"AGE_30_39\": 1535, \"AGE_40_49\": 1010, \"AGE_50_64\": 796, \"AGE_65_UP\": 435, \"MED_AGE\": 21.700000, \"MED_AGE_M\": 21.000000, \"MED_AGE_F\": 22.500000, \"HOUSEHOLDS\": 2381, \"AVE_HH_SZ\": 4.370000, \"HSEHLD_1_M\": 88, \"HSEHLD_1_F\": 55, \"MARHH_CHD\": 1330, \"MARHH_NO_C\": 473, \"MHH_CHILD\": 40, \"FHH_CHILD\": 226, \"FAMILIES\": 2212, \"AVE_FAM_SZ\": 4.520000, \"HSE_UNITS\": 2856, \"VACANT\": 475, \"OWNER_OCC\": 1985, \"RENTER_OCC\": 396 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -98.358892000916583, 26.275972999552145 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lake Jackson\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"40588\", \"CAPITAL\": \"N\", \"AREALAND\": 19.038000, \"AREAWATER\": 0.760000, \"POP_CL\": 6, \"POP2000\": 26386, \"WHITE\": 22754, \"BLACK\": 1023, \"AMERI_ES\": 102, \"ASIAN\": 660, \"HAWN_PI\": 5, \"OTHER\": 1370, \"MULT_RACE\": 472, \"HISPANIC\": 3879, \"MALES\": 12879, \"FEMALES\": 13507, \"AGE_UNDER5\": 1946, \"AGE_5_17\": 6118, \"AGE_18_21\": 1190, \"AGE_22_29\": 2318, \"AGE_30_39\": 3971, \"AGE_40_49\": 4609, \"AGE_50_64\": 3624, \"AGE_65_UP\": 2610, \"MED_AGE\": 34.500000, \"MED_AGE_M\": 34.000000, \"MED_AGE_F\": 35.000000, \"HOUSEHOLDS\": 9588, \"AVE_HH_SZ\": 2.740000, \"HSEHLD_1_M\": 875, \"HSEHLD_1_F\": 1039, \"MARHH_CHD\": 3311, \"MARHH_NO_C\": 2896, \"MHH_CHILD\": 221, \"FHH_CHILD\": 555, \"FAMILIES\": 7344, \"AVE_FAM_SZ\": 3.180000, \"HSE_UNITS\": 10475, \"VACANT\": 887, \"OWNER_OCC\": 6821, \"RENTER_OCC\": 2767 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.438339000006636, 29.036836999994033 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"La Marque\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"41116\", \"CAPITAL\": \"N\", \"AREALAND\": 14.223000, \"AREAWATER\": 0.039000, \"POP_CL\": 6, \"POP2000\": 13682, \"WHITE\": 7640, \"BLACK\": 4746, \"AMERI_ES\": 63, \"ASIAN\": 64, \"HAWN_PI\": 4, \"OTHER\": 849, \"MULT_RACE\": 316, \"HISPANIC\": 2111, \"MALES\": 6497, \"FEMALES\": 7185, \"AGE_UNDER5\": 935, \"AGE_5_17\": 2588, \"AGE_18_21\": 737, \"AGE_22_29\": 1304, \"AGE_30_39\": 1726, \"AGE_40_49\": 2102, \"AGE_50_64\": 2162, \"AGE_65_UP\": 2128, \"MED_AGE\": 37.700000, \"MED_AGE_M\": 36.500000, \"MED_AGE_F\": 38.800000, \"HOUSEHOLDS\": 5237, \"AVE_HH_SZ\": 2.580000, \"HSEHLD_1_M\": 573, \"HSEHLD_1_F\": 721, \"MARHH_CHD\": 970, \"MARHH_NO_C\": 1560, \"MHH_CHILD\": 138, \"FHH_CHILD\": 482, \"FAMILIES\": 3713, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 5732, \"VACANT\": 495, \"OWNER_OCC\": 3830, \"RENTER_OCC\": 1407 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.973922000001721, 29.366683999997747 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lancaster\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"41212\", \"CAPITAL\": \"N\", \"AREALAND\": 29.293000, \"AREAWATER\": 0.011000, \"POP_CL\": 6, \"POP2000\": 25894, \"WHITE\": 9744, \"BLACK\": 13725, \"AMERI_ES\": 126, \"ASIAN\": 100, \"HAWN_PI\": 14, \"OTHER\": 1705, \"MULT_RACE\": 480, \"HISPANIC\": 3001, \"MALES\": 11949, \"FEMALES\": 13945, \"AGE_UNDER5\": 2131, \"AGE_5_17\": 5759, \"AGE_18_21\": 1301, \"AGE_22_29\": 2854, \"AGE_30_39\": 4268, \"AGE_40_49\": 3996, \"AGE_50_64\": 3252, \"AGE_65_UP\": 2333, \"MED_AGE\": 32.300000, \"MED_AGE_M\": 30.500000, \"MED_AGE_F\": 33.600000, \"HOUSEHOLDS\": 9182, \"AVE_HH_SZ\": 2.770000, \"HSEHLD_1_M\": 742, \"HSEHLD_1_F\": 1212, \"MARHH_CHD\": 2269, \"MARHH_NO_C\": 2271, \"MHH_CHILD\": 236, \"FHH_CHILD\": 1227, \"FAMILIES\": 6895, \"AVE_FAM_SZ\": 3.220000, \"HSE_UNITS\": 9590, \"VACANT\": 408, \"OWNER_OCC\": 6023, \"RENTER_OCC\": 3159 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.774990000093112, 32.602235999890539 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"La Porte\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"41440\", \"CAPITAL\": \"N\", \"AREALAND\": 18.939000, \"AREAWATER\": 1.028000, \"POP_CL\": 6, \"POP2000\": 31880, \"WHITE\": 25946, \"BLACK\": 1993, \"AMERI_ES\": 154, \"ASIAN\": 359, \"HAWN_PI\": 25, \"OTHER\": 2717, \"MULT_RACE\": 686, \"HISPANIC\": 6520, \"MALES\": 15817, \"FEMALES\": 16063, \"AGE_UNDER5\": 2519, \"AGE_5_17\": 6949, \"AGE_18_21\": 1709, \"AGE_22_29\": 3435, \"AGE_30_39\": 5263, \"AGE_40_49\": 5577, \"AGE_50_64\": 4222, \"AGE_65_UP\": 2206, \"MED_AGE\": 32.600000, \"MED_AGE_M\": 32.000000, \"MED_AGE_F\": 33.200000, \"HOUSEHOLDS\": 10928, \"AVE_HH_SZ\": 2.900000, \"HSEHLD_1_M\": 984, \"HSEHLD_1_F\": 919, \"MARHH_CHD\": 3673, \"MARHH_NO_C\": 3189, \"MHH_CHILD\": 285, \"FHH_CHILD\": 764, \"FAMILIES\": 8575, \"AVE_FAM_SZ\": 3.280000, \"HSE_UNITS\": 11720, \"VACANT\": 792, \"OWNER_OCC\": 8438, \"RENTER_OCC\": 2490 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.04082400000209, 29.664767999997334 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Laredo\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"41464\", \"CAPITAL\": \"N\", \"AREALAND\": 78.459000, \"AREAWATER\": 1.090000, \"POP_CL\": 8, \"POP2000\": 176576, \"WHITE\": 145267, \"BLACK\": 652, \"AMERI_ES\": 784, \"ASIAN\": 820, \"HAWN_PI\": 47, \"OTHER\": 24611, \"MULT_RACE\": 4395, \"HISPANIC\": 166216, \"MALES\": 84704, \"FEMALES\": 91872, \"AGE_UNDER5\": 18516, \"AGE_5_17\": 44146, \"AGE_18_21\": 11896, \"AGE_22_29\": 23076, \"AGE_30_39\": 26153, \"AGE_40_49\": 20412, \"AGE_50_64\": 18595, \"AGE_65_UP\": 13782, \"MED_AGE\": 26.900000, \"MED_AGE_M\": 25.600000, \"MED_AGE_F\": 28.100000, \"HOUSEHOLDS\": 46852, \"AVE_HH_SZ\": 3.700000, \"HSEHLD_1_M\": 2558, \"HSEHLD_1_F\": 3382, \"MARHH_CHD\": 18814, \"MARHH_NO_C\": 10240, \"MHH_CHILD\": 906, \"FHH_CHILD\": 4782, \"FAMILIES\": 39983, \"AVE_FAM_SZ\": 4.050000, \"HSE_UNITS\": 50319, \"VACANT\": 3467, \"OWNER_OCC\": 30162, \"RENTER_OCC\": 16690 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -99.49059300247805, 27.52444499834013 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"League City\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"41980\", \"CAPITAL\": \"N\", \"AREALAND\": 51.240000, \"AREAWATER\": 1.113000, \"POP_CL\": 6, \"POP2000\": 45444, \"WHITE\": 38170, \"BLACK\": 2311, \"AMERI_ES\": 168, \"ASIAN\": 1439, \"HAWN_PI\": 24, \"OTHER\": 2404, \"MULT_RACE\": 928, \"HISPANIC\": 6130, \"MALES\": 22610, \"FEMALES\": 22834, \"AGE_UNDER5\": 3685, \"AGE_5_17\": 9695, \"AGE_18_21\": 1864, \"AGE_22_29\": 4104, \"AGE_30_39\": 8659, \"AGE_40_49\": 8513, \"AGE_50_64\": 6242, \"AGE_65_UP\": 2682, \"MED_AGE\": 34.400000, \"MED_AGE_M\": 34.200000, \"MED_AGE_F\": 34.500000, \"HOUSEHOLDS\": 16189, \"AVE_HH_SZ\": 2.780000, \"HSEHLD_1_M\": 1616, \"HSEHLD_1_F\": 1357, \"MARHH_CHD\": 5661, \"MARHH_NO_C\": 4925, \"MHH_CHILD\": 348, \"FHH_CHILD\": 894, \"FAMILIES\": 12471, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 17280, \"VACANT\": 1091, \"OWNER_OCC\": 12466, \"RENTER_OCC\": 3723 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.089784000002439, 29.499796999997084 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Levelland\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"42448\", \"CAPITAL\": \"N\", \"AREALAND\": 9.923000, \"AREAWATER\": 0.017000, \"POP_CL\": 6, \"POP2000\": 12866, \"WHITE\": 9050, \"BLACK\": 690, \"AMERI_ES\": 122, \"ASIAN\": 23, \"HAWN_PI\": 6, \"OTHER\": 2691, \"MULT_RACE\": 284, \"HISPANIC\": 5045, \"MALES\": 6198, \"FEMALES\": 6668, \"AGE_UNDER5\": 917, \"AGE_5_17\": 2633, \"AGE_18_21\": 1327, \"AGE_22_29\": 1199, \"AGE_30_39\": 1548, \"AGE_40_49\": 1703, \"AGE_50_64\": 1747, \"AGE_65_UP\": 1792, \"MED_AGE\": 32.700000, \"MED_AGE_M\": 29.700000, \"MED_AGE_F\": 35.200000, \"HOUSEHOLDS\": 4574, \"AVE_HH_SZ\": 2.680000, \"HSEHLD_1_M\": 399, \"HSEHLD_1_F\": 662, \"MARHH_CHD\": 1175, \"MARHH_NO_C\": 1382, \"MHH_CHILD\": 120, \"FHH_CHILD\": 363, \"FAMILIES\": 3364, \"AVE_FAM_SZ\": 3.170000, \"HSE_UNITS\": 5186, \"VACANT\": 612, \"OWNER_OCC\": 3270, \"RENTER_OCC\": 1304 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -102.372274950517138, 33.584700975907182 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lewisville\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"42508\", \"CAPITAL\": \"N\", \"AREALAND\": 36.793000, \"AREAWATER\": 5.544000, \"POP_CL\": 7, \"POP2000\": 77737, \"WHITE\": 60015, \"BLACK\": 5747, \"AMERI_ES\": 544, \"ASIAN\": 3028, \"HAWN_PI\": 25, \"OTHER\": 6468, \"MULT_RACE\": 1910, \"HISPANIC\": 13799, \"MALES\": 38855, \"FEMALES\": 38882, \"AGE_UNDER5\": 7075, \"AGE_5_17\": 13592, \"AGE_18_21\": 4411, \"AGE_22_29\": 14284, \"AGE_30_39\": 16605, \"AGE_40_49\": 10354, \"AGE_50_64\": 8105, \"AGE_65_UP\": 3311, \"MED_AGE\": 29.800000, \"MED_AGE_M\": 29.600000, \"MED_AGE_F\": 29.900000, \"HOUSEHOLDS\": 30043, \"AVE_HH_SZ\": 2.580000, \"HSEHLD_1_M\": 3674, \"HSEHLD_1_F\": 3907, \"MARHH_CHD\": 8347, \"MARHH_NO_C\": 7357, \"MHH_CHILD\": 601, \"FHH_CHILD\": 1915, \"FAMILIES\": 19815, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 31764, \"VACANT\": 1721, \"OWNER_OCC\": 16184, \"RENTER_OCC\": 13859 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.006232000130552, 33.038315999837195 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lockhart\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"43240\", \"CAPITAL\": \"N\", \"AREALAND\": 11.247000, \"AREAWATER\": 0.016000, \"POP_CL\": 6, \"POP2000\": 11615, \"WHITE\": 7598, \"BLACK\": 1473, \"AMERI_ES\": 78, \"ASIAN\": 40, \"HAWN_PI\": 7, \"OTHER\": 2091, \"MULT_RACE\": 328, \"HISPANIC\": 5507, \"MALES\": 5597, \"FEMALES\": 6018, \"AGE_UNDER5\": 791, \"AGE_5_17\": 2290, \"AGE_18_21\": 576, \"AGE_22_29\": 1412, \"AGE_30_39\": 1886, \"AGE_40_49\": 1715, \"AGE_50_64\": 1411, \"AGE_65_UP\": 1534, \"MED_AGE\": 33.900000, \"MED_AGE_M\": 32.000000, \"MED_AGE_F\": 35.800000, \"HOUSEHOLDS\": 3627, \"AVE_HH_SZ\": 2.810000, \"HSEHLD_1_M\": 294, \"HSEHLD_1_F\": 500, \"MARHH_CHD\": 912, \"MARHH_NO_C\": 973, \"MHH_CHILD\": 101, \"FHH_CHILD\": 367, \"FAMILIES\": 2693, \"AVE_FAM_SZ\": 3.280000, \"HSE_UNITS\": 3871, \"VACANT\": 244, \"OWNER_OCC\": 2164, \"RENTER_OCC\": 1463 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.676040000387445, 29.881869999702861 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Longview\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"43888\", \"CAPITAL\": \"N\", \"AREALAND\": 54.660000, \"AREAWATER\": 0.101000, \"POP_CL\": 7, \"POP2000\": 73344, \"WHITE\": 51417, \"BLACK\": 16214, \"AMERI_ES\": 369, \"ASIAN\": 609, \"HAWN_PI\": 16, \"OTHER\": 3608, \"MULT_RACE\": 1111, \"HISPANIC\": 7564, \"MALES\": 35347, \"FEMALES\": 37997, \"AGE_UNDER5\": 5391, \"AGE_5_17\": 14215, \"AGE_18_21\": 4737, \"AGE_22_29\": 8352, \"AGE_30_39\": 10257, \"AGE_40_49\": 10582, \"AGE_50_64\": 10049, \"AGE_65_UP\": 9761, \"MED_AGE\": 34.000000, \"MED_AGE_M\": 31.900000, \"MED_AGE_F\": 36.100000, \"HOUSEHOLDS\": 28363, \"AVE_HH_SZ\": 2.500000, \"HSEHLD_1_M\": 3155, \"HSEHLD_1_F\": 4764, \"MARHH_CHD\": 6239, \"MARHH_NO_C\": 7641, \"MHH_CHILD\": 579, \"FHH_CHILD\": 2589, \"FAMILIES\": 19109, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 30726, \"VACANT\": 2363, \"OWNER_OCC\": 16530, \"RENTER_OCC\": 11833 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.753909000000675, 32.50914699999803 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lubbock\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"45000\", \"CAPITAL\": \"N\", \"AREALAND\": 114.808000, \"AREAWATER\": 0.101000, \"POP_CL\": 8, \"POP2000\": 199564, \"WHITE\": 145426, \"BLACK\": 17292, \"AMERI_ES\": 1118, \"ASIAN\": 3078, \"HAWN_PI\": 65, \"OTHER\": 28571, \"MULT_RACE\": 4014, \"HISPANIC\": 54786, \"MALES\": 97023, \"FEMALES\": 102541, \"AGE_UNDER5\": 14272, \"AGE_5_17\": 35429, \"AGE_18_21\": 21728, \"AGE_22_29\": 29273, \"AGE_30_39\": 26476, \"AGE_40_49\": 25797, \"AGE_50_64\": 24361, \"AGE_65_UP\": 22228, \"MED_AGE\": 29.700000, \"MED_AGE_M\": 28.100000, \"MED_AGE_F\": 31.300000, \"HOUSEHOLDS\": 77527, \"AVE_HH_SZ\": 2.470000, \"HSEHLD_1_M\": 9536, \"HSEHLD_1_F\": 12429, \"MARHH_CHD\": 15849, \"MARHH_NO_C\": 19494, \"MHH_CHILD\": 1565, \"FHH_CHILD\": 6044, \"FAMILIES\": 48547, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 84066, \"VACANT\": 6539, \"OWNER_OCC\": 43290, \"RENTER_OCC\": 34237 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -101.877792974807519, 33.564734981953052 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lufkin\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"45072\", \"CAPITAL\": \"N\", \"AREALAND\": 26.699000, \"AREAWATER\": 0.131000, \"POP_CL\": 6, \"POP2000\": 32709, \"WHITE\": 19599, \"BLACK\": 8693, \"AMERI_ES\": 84, \"ASIAN\": 451, \"HAWN_PI\": 6, \"OTHER\": 3373, \"MULT_RACE\": 503, \"HISPANIC\": 5754, \"MALES\": 15393, \"FEMALES\": 17316, \"AGE_UNDER5\": 2610, \"AGE_5_17\": 6208, \"AGE_18_21\": 2019, \"AGE_22_29\": 3719, \"AGE_30_39\": 4360, \"AGE_40_49\": 4358, \"AGE_50_64\": 4490, \"AGE_65_UP\": 4945, \"MED_AGE\": 34.000000, \"MED_AGE_M\": 32.000000, \"MED_AGE_F\": 36.100000, \"HOUSEHOLDS\": 12247, \"AVE_HH_SZ\": 2.580000, \"HSEHLD_1_M\": 1271, \"HSEHLD_1_F\": 2144, \"MARHH_CHD\": 2728, \"MARHH_NO_C\": 3323, \"MHH_CHILD\": 250, \"FHH_CHILD\": 1055, \"FAMILIES\": 8361, \"AVE_FAM_SZ\": 3.170000, \"HSE_UNITS\": 13402, \"VACANT\": 1155, \"OWNER_OCC\": 7350, \"RENTER_OCC\": 4897 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.730374000000666, 31.336873999998318 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"McAllen\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"45384\", \"CAPITAL\": \"N\", \"AREALAND\": 45.974000, \"AREAWATER\": 0.286000, \"POP_CL\": 8, \"POP2000\": 106414, \"WHITE\": 83491, \"BLACK\": 647, \"AMERI_ES\": 429, \"ASIAN\": 2059, \"HAWN_PI\": 41, \"OTHER\": 16864, \"MULT_RACE\": 2883, \"HISPANIC\": 85427, \"MALES\": 50438, \"FEMALES\": 55976, \"AGE_UNDER5\": 9263, \"AGE_5_17\": 23474, \"AGE_18_21\": 6509, \"AGE_22_29\": 13158, \"AGE_30_39\": 15574, \"AGE_40_49\": 13914, \"AGE_50_64\": 13427, \"AGE_65_UP\": 11095, \"MED_AGE\": 30.500000, \"MED_AGE_M\": 29.100000, \"MED_AGE_F\": 31.700000, \"HOUSEHOLDS\": 33151, \"AVE_HH_SZ\": 3.180000, \"HSEHLD_1_M\": 2593, \"HSEHLD_1_F\": 3334, \"MARHH_CHD\": 10845, \"MARHH_NO_C\": 8723, \"MHH_CHILD\": 502, \"FHH_CHILD\": 2983, \"FAMILIES\": 26092, \"AVE_FAM_SZ\": 3.640000, \"HSE_UNITS\": 37922, \"VACANT\": 4771, \"OWNER_OCC\": 20983, \"RENTER_OCC\": 12168 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -98.236385000801562, 26.21626299961418 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"McKinney\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"45744\", \"CAPITAL\": \"N\", \"AREALAND\": 58.026000, \"AREAWATER\": 0.476000, \"POP_CL\": 7, \"POP2000\": 54369, \"WHITE\": 42628, \"BLACK\": 3913, \"AMERI_ES\": 293, \"ASIAN\": 811, \"HAWN_PI\": 35, \"OTHER\": 5562, \"MULT_RACE\": 1127, \"HISPANIC\": 9876, \"MALES\": 27501, \"FEMALES\": 26868, \"AGE_UNDER5\": 5474, \"AGE_5_17\": 11353, \"AGE_18_21\": 2976, \"AGE_22_29\": 6733, \"AGE_30_39\": 10704, \"AGE_40_49\": 7646, \"AGE_50_64\": 5804, \"AGE_65_UP\": 3679, \"MED_AGE\": 30.600000, \"MED_AGE_M\": 29.700000, \"MED_AGE_F\": 31.600000, \"HOUSEHOLDS\": 18186, \"AVE_HH_SZ\": 2.890000, \"HSEHLD_1_M\": 1457, \"HSEHLD_1_F\": 1999, \"MARHH_CHD\": 6698, \"MARHH_NO_C\": 4872, \"MHH_CHILD\": 322, \"FHH_CHILD\": 1184, \"FAMILIES\": 13974, \"AVE_FAM_SZ\": 3.290000, \"HSE_UNITS\": 19462, \"VACANT\": 1276, \"OWNER_OCC\": 12768, \"RENTER_OCC\": 5418 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.639751000071712, 33.197209999906683 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mansfield\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"46452\", \"CAPITAL\": \"N\", \"AREALAND\": 36.477000, \"AREAWATER\": 0.036000, \"POP_CL\": 6, \"POP2000\": 28031, \"WHITE\": 24221, \"BLACK\": 1232, \"AMERI_ES\": 159, \"ASIAN\": 346, \"HAWN_PI\": 5, \"OTHER\": 1590, \"MULT_RACE\": 478, \"HISPANIC\": 3574, \"MALES\": 14205, \"FEMALES\": 13826, \"AGE_UNDER5\": 2346, \"AGE_5_17\": 6568, \"AGE_18_21\": 1352, \"AGE_22_29\": 2685, \"AGE_30_39\": 5197, \"AGE_40_49\": 4599, \"AGE_50_64\": 3681, \"AGE_65_UP\": 1603, \"MED_AGE\": 32.300000, \"MED_AGE_M\": 31.800000, \"MED_AGE_F\": 32.800000, \"HOUSEHOLDS\": 8881, \"AVE_HH_SZ\": 3.080000, \"HSEHLD_1_M\": 452, \"HSEHLD_1_F\": 518, \"MARHH_CHD\": 3827, \"MARHH_NO_C\": 2790, \"MHH_CHILD\": 155, \"FHH_CHILD\": 494, \"FAMILIES\": 7650, \"AVE_FAM_SZ\": 3.320000, \"HSE_UNITS\": 9172, \"VACANT\": 291, \"OWNER_OCC\": 7695, \"RENTER_OCC\": 1186 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.126699000160741, 32.577086999814142 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Marshall\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"46776\", \"CAPITAL\": \"N\", \"AREALAND\": 29.566000, \"AREAWATER\": 0.078000, \"POP_CL\": 6, \"POP2000\": 23935, \"WHITE\": 13082, \"BLACK\": 9237, \"AMERI_ES\": 93, \"ASIAN\": 132, \"HAWN_PI\": 10, \"OTHER\": 1155, \"MULT_RACE\": 226, \"HISPANIC\": 2069, \"MALES\": 11200, \"FEMALES\": 12735, \"AGE_UNDER5\": 1629, \"AGE_5_17\": 4620, \"AGE_18_21\": 2134, \"AGE_22_29\": 2479, \"AGE_30_39\": 2863, \"AGE_40_49\": 3149, \"AGE_50_64\": 3348, \"AGE_65_UP\": 3713, \"MED_AGE\": 34.100000, \"MED_AGE_M\": 31.300000, \"MED_AGE_F\": 36.300000, \"HOUSEHOLDS\": 8730, \"AVE_HH_SZ\": 2.550000, \"HSEHLD_1_M\": 851, \"HSEHLD_1_F\": 1596, \"MARHH_CHD\": 1720, \"MARHH_NO_C\": 2331, \"MHH_CHILD\": 150, \"FHH_CHILD\": 943, \"FAMILIES\": 6029, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 9923, \"VACANT\": 1193, \"OWNER_OCC\": 5727, \"RENTER_OCC\": 3003 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.363727000000111, 32.542896999998874 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mercedes\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"47700\", \"CAPITAL\": \"N\", \"AREALAND\": 8.578000, \"AREAWATER\": 0.062000, \"POP_CL\": 6, \"POP2000\": 13649, \"WHITE\": 10840, \"BLACK\": 49, \"AMERI_ES\": 122, \"ASIAN\": 9, \"HAWN_PI\": 1, \"OTHER\": 2313, \"MULT_RACE\": 315, \"HISPANIC\": 12286, \"MALES\": 6413, \"FEMALES\": 7236, \"AGE_UNDER5\": 1314, \"AGE_5_17\": 3176, \"AGE_18_21\": 954, \"AGE_22_29\": 1491, \"AGE_30_39\": 1497, \"AGE_40_49\": 1510, \"AGE_50_64\": 1740, \"AGE_65_UP\": 1967, \"MED_AGE\": 29.400000, \"MED_AGE_M\": 26.800000, \"MED_AGE_F\": 31.900000, \"HOUSEHOLDS\": 4170, \"AVE_HH_SZ\": 3.270000, \"HSEHLD_1_M\": 260, \"HSEHLD_1_F\": 491, \"MARHH_CHD\": 1137, \"MARHH_NO_C\": 1144, \"MHH_CHILD\": 76, \"FHH_CHILD\": 501, \"FAMILIES\": 3350, \"AVE_FAM_SZ\": 3.750000, \"HSE_UNITS\": 5455, \"VACANT\": 1285, \"OWNER_OCC\": 2664, \"RENTER_OCC\": 1506 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.918675000553961, 26.149314999739364 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mesquite\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"47892\", \"CAPITAL\": \"N\", \"AREALAND\": 43.416000, \"AREAWATER\": 0.048000, \"POP_CL\": 8, \"POP2000\": 124523, \"WHITE\": 91572, \"BLACK\": 16585, \"AMERI_ES\": 750, \"ASIAN\": 4665, \"HAWN_PI\": 65, \"OTHER\": 8009, \"MULT_RACE\": 2877, \"HISPANIC\": 19500, \"MALES\": 59987, \"FEMALES\": 64536, \"AGE_UNDER5\": 9634, \"AGE_5_17\": 28347, \"AGE_18_21\": 6800, \"AGE_22_29\": 13629, \"AGE_30_39\": 22006, \"AGE_40_49\": 19887, \"AGE_50_64\": 15328, \"AGE_65_UP\": 8892, \"MED_AGE\": 31.900000, \"MED_AGE_M\": 30.800000, \"MED_AGE_F\": 32.900000, \"HOUSEHOLDS\": 43926, \"AVE_HH_SZ\": 2.820000, \"HSEHLD_1_M\": 3814, \"HSEHLD_1_F\": 5220, \"MARHH_CHD\": 13850, \"MARHH_NO_C\": 10926, \"MHH_CHILD\": 1113, \"FHH_CHILD\": 3952, \"FAMILIES\": 32898, \"AVE_FAM_SZ\": 3.270000, \"HSE_UNITS\": 46245, \"VACANT\": 2319, \"OWNER_OCC\": 28762, \"RENTER_OCC\": 15164 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.609862000069796, 32.782877999914625 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Midland\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"48072\", \"CAPITAL\": \"N\", \"AREALAND\": 66.608000, \"AREAWATER\": 0.185000, \"POP_CL\": 7, \"POP2000\": 94996, \"WHITE\": 71735, \"BLACK\": 7948, \"AMERI_ES\": 602, \"ASIAN\": 956, \"HAWN_PI\": 29, \"OTHER\": 11862, \"MULT_RACE\": 1864, \"HISPANIC\": 27543, \"MALES\": 45575, \"FEMALES\": 49421, \"AGE_UNDER5\": 7170, \"AGE_5_17\": 21235, \"AGE_18_21\": 5313, \"AGE_22_29\": 9059, \"AGE_30_39\": 12755, \"AGE_40_49\": 15359, \"AGE_50_64\": 12407, \"AGE_65_UP\": 11698, \"MED_AGE\": 34.100000, \"MED_AGE_M\": 32.400000, \"MED_AGE_F\": 35.600000, \"HOUSEHOLDS\": 35674, \"AVE_HH_SZ\": 2.620000, \"HSEHLD_1_M\": 3917, \"HSEHLD_1_F\": 5291, \"MARHH_CHD\": 10037, \"MARHH_NO_C\": 9709, \"MHH_CHILD\": 725, \"FHH_CHILD\": 2766, \"FAMILIES\": 25209, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 39855, \"VACANT\": 4181, \"OWNER_OCC\": 23565, \"RENTER_OCC\": 12109 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -102.099238975778704, 32.005071982020532 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mineral Wells\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"48684\", \"CAPITAL\": \"N\", \"AREALAND\": 20.452000, \"AREAWATER\": 0.730000, \"POP_CL\": 6, \"POP2000\": 16946, \"WHITE\": 13165, \"BLACK\": 1487, \"AMERI_ES\": 92, \"ASIAN\": 110, \"HAWN_PI\": 1, \"OTHER\": 1779, \"MULT_RACE\": 312, \"HISPANIC\": 3265, \"MALES\": 9252, \"FEMALES\": 7694, \"AGE_UNDER5\": 1134, \"AGE_5_17\": 2953, \"AGE_18_21\": 917, \"AGE_22_29\": 2118, \"AGE_30_39\": 2694, \"AGE_40_49\": 2415, \"AGE_50_64\": 2246, \"AGE_65_UP\": 2469, \"MED_AGE\": 35.300000, \"MED_AGE_M\": 33.600000, \"MED_AGE_F\": 37.800000, \"HOUSEHOLDS\": 5707, \"AVE_HH_SZ\": 2.560000, \"HSEHLD_1_M\": 589, \"HSEHLD_1_F\": 1024, \"MARHH_CHD\": 1211, \"MARHH_NO_C\": 1613, \"MHH_CHILD\": 167, \"FHH_CHILD\": 430, \"FAMILIES\": 3858, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 6386, \"VACANT\": 679, \"OWNER_OCC\": 3541, \"RENTER_OCC\": 2166 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -98.101859000526076, 32.808593999324167 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mission\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"48768\", \"CAPITAL\": \"N\", \"AREALAND\": 24.129000, \"AREAWATER\": 0.007000, \"POP_CL\": 6, \"POP2000\": 45408, \"WHITE\": 35249, \"BLACK\": 168, \"AMERI_ES\": 174, \"ASIAN\": 288, \"HAWN_PI\": 3, \"OTHER\": 8465, \"MULT_RACE\": 1061, \"HISPANIC\": 36794, \"MALES\": 21642, \"FEMALES\": 23766, \"AGE_UNDER5\": 4188, \"AGE_5_17\": 10391, \"AGE_18_21\": 2628, \"AGE_22_29\": 5156, \"AGE_30_39\": 5930, \"AGE_40_49\": 5405, \"AGE_50_64\": 5259, \"AGE_65_UP\": 6451, \"MED_AGE\": 30.500000, \"MED_AGE_M\": 29.200000, \"MED_AGE_F\": 32.000000, \"HOUSEHOLDS\": 13766, \"AVE_HH_SZ\": 3.290000, \"HSEHLD_1_M\": 786, \"HSEHLD_1_F\": 1319, \"MARHH_CHD\": 4643, \"MARHH_NO_C\": 4278, \"MHH_CHILD\": 204, \"FHH_CHILD\": 1124, \"FAMILIES\": 11385, \"AVE_FAM_SZ\": 3.680000, \"HSE_UNITS\": 17723, \"VACANT\": 3957, \"OWNER_OCC\": 10316, \"RENTER_OCC\": 3450 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -98.321277000879903, 26.211401999574392 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mission Bend\", \"CLASS\": \"CDP\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"48772\", \"CAPITAL\": \"N\", \"AREALAND\": 5.225000, \"AREAWATER\": 0.032000, \"POP_CL\": 6, \"POP2000\": 30831, \"WHITE\": 14281, \"BLACK\": 6628, \"AMERI_ES\": 96, \"ASIAN\": 5229, \"HAWN_PI\": 25, \"OTHER\": 3277, \"MULT_RACE\": 1295, \"HISPANIC\": 8343, \"MALES\": 15197, \"FEMALES\": 15634, \"AGE_UNDER5\": 2335, \"AGE_5_17\": 8055, \"AGE_18_21\": 1599, \"AGE_22_29\": 2586, \"AGE_30_39\": 5225, \"AGE_40_49\": 6010, \"AGE_50_64\": 3827, \"AGE_65_UP\": 1194, \"MED_AGE\": 31.900000, \"MED_AGE_M\": 30.800000, \"MED_AGE_F\": 32.900000, \"HOUSEHOLDS\": 8978, \"AVE_HH_SZ\": 3.430000, \"HSEHLD_1_M\": 415, \"HSEHLD_1_F\": 438, \"MARHH_CHD\": 4075, \"MARHH_NO_C\": 2251, \"MHH_CHILD\": 200, \"FHH_CHILD\": 726, \"FAMILIES\": 7861, \"AVE_FAM_SZ\": 3.670000, \"HSE_UNITS\": 9202, \"VACANT\": 224, \"OWNER_OCC\": 7640, \"RENTER_OCC\": 1338 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.661721000011354, 29.693666999989588 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Missouri City\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"48804\", \"CAPITAL\": \"N\", \"AREALAND\": 29.698000, \"AREAWATER\": 0.717000, \"POP_CL\": 7, \"POP2000\": 52913, \"WHITE\": 23435, \"BLACK\": 20290, \"AMERI_ES\": 107, \"ASIAN\": 5610, \"HAWN_PI\": 21, \"OTHER\": 2360, \"MULT_RACE\": 1090, \"HISPANIC\": 5755, \"MALES\": 25633, \"FEMALES\": 27280, \"AGE_UNDER5\": 3852, \"AGE_5_17\": 12458, \"AGE_18_21\": 2483, \"AGE_22_29\": 3661, \"AGE_30_39\": 8436, \"AGE_40_49\": 10768, \"AGE_50_64\": 8399, \"AGE_65_UP\": 2856, \"MED_AGE\": 35.500000, \"MED_AGE_M\": 34.600000, \"MED_AGE_F\": 36.200000, \"HOUSEHOLDS\": 17069, \"AVE_HH_SZ\": 3.090000, \"HSEHLD_1_M\": 835, \"HSEHLD_1_F\": 1188, \"MARHH_CHD\": 6772, \"MARHH_NO_C\": 5215, \"MHH_CHILD\": 275, \"FHH_CHILD\": 1245, \"FAMILIES\": 14645, \"AVE_FAM_SZ\": 3.360000, \"HSE_UNITS\": 17481, \"VACANT\": 412, \"OWNER_OCC\": 15491, \"RENTER_OCC\": 1578 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.539423000008441, 29.582798999992082 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mount Pleasant\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"49800\", \"CAPITAL\": \"N\", \"AREALAND\": 12.531000, \"AREAWATER\": 0.200000, \"POP_CL\": 6, \"POP2000\": 13935, \"WHITE\": 7901, \"BLACK\": 2230, \"AMERI_ES\": 77, \"ASIAN\": 117, \"HAWN_PI\": 1, \"OTHER\": 3285, \"MULT_RACE\": 324, \"HISPANIC\": 5664, \"MALES\": 6780, \"FEMALES\": 7155, \"AGE_UNDER5\": 1321, \"AGE_5_17\": 3021, \"AGE_18_21\": 869, \"AGE_22_29\": 1779, \"AGE_30_39\": 1945, \"AGE_40_49\": 1575, \"AGE_50_64\": 1526, \"AGE_65_UP\": 1899, \"MED_AGE\": 29.900000, \"MED_AGE_M\": 28.200000, \"MED_AGE_F\": 32.200000, \"HOUSEHOLDS\": 4558, \"AVE_HH_SZ\": 2.930000, \"HSEHLD_1_M\": 382, \"HSEHLD_1_F\": 812, \"MARHH_CHD\": 1270, \"MARHH_NO_C\": 1049, \"MHH_CHILD\": 109, \"FHH_CHILD\": 413, \"FAMILIES\": 3209, \"AVE_FAM_SZ\": 3.550000, \"HSE_UNITS\": 5029, \"VACANT\": 471, \"OWNER_OCC\": 2843, \"RENTER_OCC\": 1715 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.970084000001364, 33.157890999996745 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Nacogdoches\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"50256\", \"CAPITAL\": \"N\", \"AREALAND\": 25.226000, \"AREAWATER\": 0.063000, \"POP_CL\": 6, \"POP2000\": 29914, \"WHITE\": 19736, \"BLACK\": 7495, \"AMERI_ES\": 102, \"ASIAN\": 337, \"HAWN_PI\": 32, \"OTHER\": 1748, \"MULT_RACE\": 464, \"HISPANIC\": 3236, \"MALES\": 13978, \"FEMALES\": 15936, \"AGE_UNDER5\": 1748, \"AGE_5_17\": 4309, \"AGE_18_21\": 6324, \"AGE_22_29\": 4968, \"AGE_30_39\": 3129, \"AGE_40_49\": 3004, \"AGE_50_64\": 3120, \"AGE_65_UP\": 3312, \"MED_AGE\": 24.400000, \"MED_AGE_M\": 24.400000, \"MED_AGE_F\": 24.500000, \"HOUSEHOLDS\": 11220, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 1609, \"HSEHLD_1_F\": 2153, \"MARHH_CHD\": 1728, \"MARHH_NO_C\": 2272, \"MHH_CHILD\": 143, \"FHH_CHILD\": 970, \"FAMILIES\": 5932, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 12329, \"VACANT\": 1109, \"OWNER_OCC\": 4884, \"RENTER_OCC\": 6336 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.650862000000487, 31.608854999998506 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Nederland\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"50580\", \"CAPITAL\": \"N\", \"AREALAND\": 5.688000, \"AREAWATER\": 0.009000, \"POP_CL\": 6, \"POP2000\": 17422, \"WHITE\": 16291, \"BLACK\": 155, \"AMERI_ES\": 58, \"ASIAN\": 352, \"HAWN_PI\": 7, \"OTHER\": 351, \"MULT_RACE\": 208, \"HISPANIC\": 1089, \"MALES\": 8501, \"FEMALES\": 8921, \"AGE_UNDER5\": 1128, \"AGE_5_17\": 3432, \"AGE_18_21\": 893, \"AGE_22_29\": 1679, \"AGE_30_39\": 2514, \"AGE_40_49\": 2781, \"AGE_50_64\": 2551, \"AGE_65_UP\": 2444, \"MED_AGE\": 36.700000, \"MED_AGE_M\": 35.700000, \"MED_AGE_F\": 37.800000, \"HOUSEHOLDS\": 6858, \"AVE_HH_SZ\": 2.540000, \"HSEHLD_1_M\": 690, \"HSEHLD_1_F\": 927, \"MARHH_CHD\": 1830, \"MARHH_NO_C\": 2205, \"MHH_CHILD\": 161, \"FHH_CHILD\": 435, \"FAMILIES\": 5021, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 7226, \"VACANT\": 368, \"OWNER_OCC\": 5168, \"RENTER_OCC\": 1690 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.996715, 29.973112999999238 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"New Braunfels\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"50820\", \"CAPITAL\": \"N\", \"AREALAND\": 29.248000, \"AREAWATER\": 0.149000, \"POP_CL\": 6, \"POP2000\": 36494, \"WHITE\": 30763, \"BLACK\": 501, \"AMERI_ES\": 201, \"ASIAN\": 211, \"HAWN_PI\": 11, \"OTHER\": 3988, \"MULT_RACE\": 819, \"HISPANIC\": 12599, \"MALES\": 17472, \"FEMALES\": 19022, \"AGE_UNDER5\": 2574, \"AGE_5_17\": 6795, \"AGE_18_21\": 1795, \"AGE_22_29\": 3938, \"AGE_30_39\": 5199, \"AGE_40_49\": 4936, \"AGE_50_64\": 5102, \"AGE_65_UP\": 6155, \"MED_AGE\": 36.200000, \"MED_AGE_M\": 34.400000, \"MED_AGE_F\": 38.000000, \"HOUSEHOLDS\": 13558, \"AVE_HH_SZ\": 2.600000, \"HSEHLD_1_M\": 1200, \"HSEHLD_1_F\": 2160, \"MARHH_CHD\": 3328, \"MARHH_NO_C\": 4180, \"MHH_CHILD\": 277, \"FHH_CHILD\": 922, \"FAMILIES\": 9599, \"AVE_FAM_SZ\": 3.110000, \"HSE_UNITS\": 14896, \"VACANT\": 1338, \"OWNER_OCC\": 8735, \"RENTER_OCC\": 4823 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -98.123559000663761, 29.70172399949486 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"New Territory\", \"CLASS\": \"CDP\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"51366\", \"CAPITAL\": \"N\", \"AREALAND\": 5.047000, \"AREAWATER\": 0.045000, \"POP_CL\": 6, \"POP2000\": 13861, \"WHITE\": 7979, \"BLACK\": 1389, \"AMERI_ES\": 31, \"ASIAN\": 3614, \"HAWN_PI\": 6, \"OTHER\": 435, \"MULT_RACE\": 407, \"HISPANIC\": 1157, \"MALES\": 7474, \"FEMALES\": 6387, \"AGE_UNDER5\": 1342, \"AGE_5_17\": 3485, \"AGE_18_21\": 521, \"AGE_22_29\": 1365, \"AGE_30_39\": 2939, \"AGE_40_49\": 2678, \"AGE_50_64\": 1183, \"AGE_65_UP\": 348, \"MED_AGE\": 30.900000, \"MED_AGE_M\": 29.500000, \"MED_AGE_F\": 32.200000, \"HOUSEHOLDS\": 3708, \"AVE_HH_SZ\": 3.470000, \"HSEHLD_1_M\": 102, \"HSEHLD_1_F\": 139, \"MARHH_CHD\": 2344, \"MARHH_NO_C\": 841, \"MHH_CHILD\": 48, \"FHH_CHILD\": 114, \"FAMILIES\": 3421, \"AVE_FAM_SZ\": 3.630000, \"HSE_UNITS\": 3805, \"VACANT\": 97, \"OWNER_OCC\": 3418, \"RENTER_OCC\": 290 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.677561000011835, 29.594656999989368 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"North Richland Hills\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"52356\", \"CAPITAL\": \"N\", \"AREALAND\": 18.206000, \"AREAWATER\": 0.026000, \"POP_CL\": 7, \"POP2000\": 55635, \"WHITE\": 49224, \"BLACK\": 1501, \"AMERI_ES\": 303, \"ASIAN\": 1475, \"HAWN_PI\": 93, \"OTHER\": 1885, \"MULT_RACE\": 1154, \"HISPANIC\": 5276, \"MALES\": 27364, \"FEMALES\": 28271, \"AGE_UNDER5\": 3923, \"AGE_5_17\": 11228, \"AGE_18_21\": 2961, \"AGE_22_29\": 5707, \"AGE_30_39\": 9358, \"AGE_40_49\": 9357, \"AGE_50_64\": 8179, \"AGE_65_UP\": 4922, \"MED_AGE\": 34.700000, \"MED_AGE_M\": 33.500000, \"MED_AGE_F\": 35.700000, \"HOUSEHOLDS\": 20793, \"AVE_HH_SZ\": 2.660000, \"HSEHLD_1_M\": 1854, \"HSEHLD_1_F\": 2387, \"MARHH_CHD\": 6143, \"MARHH_NO_C\": 6302, \"MHH_CHILD\": 441, \"FHH_CHILD\": 1319, \"FAMILIES\": 15416, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 21600, \"VACANT\": 807, \"OWNER_OCC\": 13943, \"RENTER_OCC\": 6850 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.218184000180074, 32.855665999782303 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Odessa\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"53388\", \"CAPITAL\": \"N\", \"AREALAND\": 36.797000, \"AREAWATER\": 0.073000, \"POP_CL\": 7, \"POP2000\": 90943, \"WHITE\": 66781, \"BLACK\": 5347, \"AMERI_ES\": 702, \"ASIAN\": 797, \"HAWN_PI\": 37, \"OTHER\": 14611, \"MULT_RACE\": 2668, \"HISPANIC\": 37671, \"MALES\": 43864, \"FEMALES\": 47079, \"AGE_UNDER5\": 7286, \"AGE_5_17\": 19843, \"AGE_18_21\": 5908, \"AGE_22_29\": 9713, \"AGE_30_39\": 12323, \"AGE_40_49\": 13186, \"AGE_50_64\": 11993, \"AGE_65_UP\": 10691, \"MED_AGE\": 32.300000, \"MED_AGE_M\": 30.700000, \"MED_AGE_F\": 33.900000, \"HOUSEHOLDS\": 33661, \"AVE_HH_SZ\": 2.650000, \"HSEHLD_1_M\": 3745, \"HSEHLD_1_F\": 4922, \"MARHH_CHD\": 8662, \"MARHH_NO_C\": 8707, \"MHH_CHILD\": 889, \"FHH_CHILD\": 3216, \"FAMILIES\": 23707, \"AVE_FAM_SZ\": 3.210000, \"HSE_UNITS\": 37966, \"VACANT\": 4305, \"OWNER_OCC\": 21578, \"RENTER_OCC\": 12083 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -102.365489965326475, 31.863293979327775 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Orange\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"54132\", \"CAPITAL\": \"N\", \"AREALAND\": 20.078000, \"AREAWATER\": 0.687000, \"POP_CL\": 6, \"POP2000\": 18643, \"WHITE\": 11295, \"BLACK\": 6593, \"AMERI_ES\": 70, \"ASIAN\": 218, \"HAWN_PI\": 15, \"OTHER\": 201, \"MULT_RACE\": 251, \"HISPANIC\": 675, \"MALES\": 8952, \"FEMALES\": 9691, \"AGE_UNDER5\": 1340, \"AGE_5_17\": 3764, \"AGE_18_21\": 935, \"AGE_22_29\": 1849, \"AGE_30_39\": 2419, \"AGE_40_49\": 2591, \"AGE_50_64\": 2801, \"AGE_65_UP\": 2944, \"MED_AGE\": 36.100000, \"MED_AGE_M\": 34.000000, \"MED_AGE_F\": 37.900000, \"HOUSEHOLDS\": 7310, \"AVE_HH_SZ\": 2.470000, \"HSEHLD_1_M\": 867, \"HSEHLD_1_F\": 1202, \"MARHH_CHD\": 1313, \"MARHH_NO_C\": 2083, \"MHH_CHILD\": 162, \"FHH_CHILD\": 838, \"FAMILIES\": 5021, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 8364, \"VACANT\": 1054, \"OWNER_OCC\": 4356, \"RENTER_OCC\": 2954 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.759133, 30.109216999999248 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Palestine\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"54708\", \"CAPITAL\": \"N\", \"AREALAND\": 17.699000, \"AREAWATER\": 0.183000, \"POP_CL\": 6, \"POP2000\": 17598, \"WHITE\": 11369, \"BLACK\": 4359, \"AMERI_ES\": 86, \"ASIAN\": 139, \"HAWN_PI\": 13, \"OTHER\": 1391, \"MULT_RACE\": 241, \"HISPANIC\": 2619, \"MALES\": 8076, \"FEMALES\": 9522, \"AGE_UNDER5\": 1458, \"AGE_5_17\": 3659, \"AGE_18_21\": 930, \"AGE_22_29\": 1834, \"AGE_30_39\": 2204, \"AGE_40_49\": 2343, \"AGE_50_64\": 2320, \"AGE_65_UP\": 2850, \"MED_AGE\": 34.400000, \"MED_AGE_M\": 31.600000, \"MED_AGE_F\": 36.800000, \"HOUSEHOLDS\": 6641, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 587, \"HSEHLD_1_F\": 1271, \"MARHH_CHD\": 1428, \"MARHH_NO_C\": 1707, \"MHH_CHILD\": 136, \"FHH_CHILD\": 754, \"FAMILIES\": 4579, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 7668, \"VACANT\": 1027, \"OWNER_OCC\": 4126, \"RENTER_OCC\": 2515 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.638473000009924, 31.757924999987601 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pampa\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"54912\", \"CAPITAL\": \"N\", \"AREALAND\": 8.725000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 17887, \"WHITE\": 14969, \"BLACK\": 689, \"AMERI_ES\": 191, \"ASIAN\": 74, \"HAWN_PI\": 5, \"OTHER\": 1470, \"MULT_RACE\": 489, \"HISPANIC\": 2454, \"MALES\": 8522, \"FEMALES\": 9365, \"AGE_UNDER5\": 1166, \"AGE_5_17\": 3462, \"AGE_18_21\": 792, \"AGE_22_29\": 1475, \"AGE_30_39\": 2246, \"AGE_40_49\": 2564, \"AGE_50_64\": 2831, \"AGE_65_UP\": 3351, \"MED_AGE\": 39.300000, \"MED_AGE_M\": 37.800000, \"MED_AGE_F\": 40.600000, \"HOUSEHOLDS\": 7387, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 812, \"HSEHLD_1_F\": 1314, \"MARHH_CHD\": 1666, \"MARHH_NO_C\": 2463, \"MHH_CHILD\": 125, \"FHH_CHILD\": 458, \"FAMILIES\": 5072, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 8785, \"VACANT\": 1398, \"OWNER_OCC\": 5622, \"RENTER_OCC\": 1765 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -100.964743990140988, 35.543004988347541 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Paris\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"55080\", \"CAPITAL\": \"N\", \"AREALAND\": 42.754000, \"AREAWATER\": 1.663000, \"POP_CL\": 6, \"POP2000\": 25898, \"WHITE\": 18884, \"BLACK\": 5766, \"AMERI_ES\": 245, \"ASIAN\": 172, \"HAWN_PI\": 7, \"OTHER\": 403, \"MULT_RACE\": 421, \"HISPANIC\": 1068, \"MALES\": 11982, \"FEMALES\": 13916, \"AGE_UNDER5\": 1923, \"AGE_5_17\": 4646, \"AGE_18_21\": 1624, \"AGE_22_29\": 2618, \"AGE_30_39\": 3342, \"AGE_40_49\": 3250, \"AGE_50_64\": 3843, \"AGE_65_UP\": 4652, \"MED_AGE\": 36.500000, \"MED_AGE_M\": 33.900000, \"MED_AGE_F\": 38.800000, \"HOUSEHOLDS\": 10570, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 1295, \"HSEHLD_1_F\": 2138, \"MARHH_CHD\": 1794, \"MARHH_NO_C\": 2724, \"MHH_CHILD\": 204, \"FHH_CHILD\": 1113, \"FAMILIES\": 6716, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 11777, \"VACANT\": 1207, \"OWNER_OCC\": 5742, \"RENTER_OCC\": 4828 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.547692000007146, 33.662507999987682 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pasadena\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"56000\", \"CAPITAL\": \"N\", \"AREALAND\": 44.162000, \"AREAWATER\": 0.359000, \"POP_CL\": 8, \"POP2000\": 141674, \"WHITE\": 101219, \"BLACK\": 2316, \"AMERI_ES\": 957, \"ASIAN\": 2589, \"HAWN_PI\": 58, \"OTHER\": 30173, \"MULT_RACE\": 4362, \"HISPANIC\": 68348, \"MALES\": 70767, \"FEMALES\": 70907, \"AGE_UNDER5\": 13148, \"AGE_5_17\": 31579, \"AGE_18_21\": 9208, \"AGE_22_29\": 18718, \"AGE_30_39\": 21711, \"AGE_40_49\": 19854, \"AGE_50_64\": 16243, \"AGE_65_UP\": 11213, \"MED_AGE\": 29.200000, \"MED_AGE_M\": 28.600000, \"MED_AGE_F\": 29.800000, \"HOUSEHOLDS\": 47031, \"AVE_HH_SZ\": 2.990000, \"HSEHLD_1_M\": 4699, \"HSEHLD_1_F\": 4893, \"MARHH_CHD\": 14948, \"MARHH_NO_C\": 11303, \"MHH_CHILD\": 1445, \"FHH_CHILD\": 3897, \"FAMILIES\": 35183, \"AVE_FAM_SZ\": 3.480000, \"HSE_UNITS\": 50367, \"VACANT\": 3336, \"OWNER_OCC\": 26385, \"RENTER_OCC\": 20646 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.173845000003112, 29.676195999996427 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pearland\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"56348\", \"CAPITAL\": \"N\", \"AREALAND\": 39.330000, \"AREAWATER\": 0.033000, \"POP_CL\": 6, \"POP2000\": 37640, \"WHITE\": 31100, \"BLACK\": 2006, \"AMERI_ES\": 157, \"ASIAN\": 1373, \"HAWN_PI\": 14, \"OTHER\": 2305, \"MULT_RACE\": 685, \"HISPANIC\": 6107, \"MALES\": 18468, \"FEMALES\": 19172, \"AGE_UNDER5\": 2996, \"AGE_5_17\": 7859, \"AGE_18_21\": 1714, \"AGE_22_29\": 3612, \"AGE_30_39\": 6800, \"AGE_40_49\": 6370, \"AGE_50_64\": 5130, \"AGE_65_UP\": 3159, \"MED_AGE\": 34.300000, \"MED_AGE_M\": 33.700000, \"MED_AGE_F\": 34.800000, \"HOUSEHOLDS\": 13192, \"AVE_HH_SZ\": 2.840000, \"HSEHLD_1_M\": 984, \"HSEHLD_1_F\": 1100, \"MARHH_CHD\": 4679, \"MARHH_NO_C\": 4241, \"MHH_CHILD\": 241, \"FHH_CHILD\": 773, \"FAMILIES\": 10654, \"AVE_FAM_SZ\": 3.170000, \"HSE_UNITS\": 13922, \"VACANT\": 730, \"OWNER_OCC\": 10480, \"RENTER_OCC\": 2712 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.295959000004444, 29.554348999995366 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pecan Grove\", \"CLASS\": \"CDP\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"56482\", \"CAPITAL\": \"N\", \"AREALAND\": 8.730000, \"AREAWATER\": 0.025000, \"POP_CL\": 6, \"POP2000\": 13551, \"WHITE\": 12371, \"BLACK\": 446, \"AMERI_ES\": 26, \"ASIAN\": 181, \"HAWN_PI\": 0, \"OTHER\": 340, \"MULT_RACE\": 187, \"HISPANIC\": 1230, \"MALES\": 6716, \"FEMALES\": 6835, \"AGE_UNDER5\": 963, \"AGE_5_17\": 3562, \"AGE_18_21\": 493, \"AGE_22_29\": 793, \"AGE_30_39\": 2065, \"AGE_40_49\": 3090, \"AGE_50_64\": 1936, \"AGE_65_UP\": 649, \"MED_AGE\": 35.400000, \"MED_AGE_M\": 35.300000, \"MED_AGE_F\": 35.500000, \"HOUSEHOLDS\": 4516, \"AVE_HH_SZ\": 3.000000, \"HSEHLD_1_M\": 278, \"HSEHLD_1_F\": 298, \"MARHH_CHD\": 2081, \"MARHH_NO_C\": 1364, \"MHH_CHILD\": 57, \"FHH_CHILD\": 235, \"FAMILIES\": 3847, \"AVE_FAM_SZ\": 3.290000, \"HSE_UNITS\": 4662, \"VACANT\": 146, \"OWNER_OCC\": 3767, \"RENTER_OCC\": 749 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.73159100001341, 29.626059999988048 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pflugerville\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"57176\", \"CAPITAL\": \"N\", \"AREALAND\": 11.339000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 16335, \"WHITE\": 12607, \"BLACK\": 1545, \"AMERI_ES\": 39, \"ASIAN\": 704, \"HAWN_PI\": 14, \"OTHER\": 979, \"MULT_RACE\": 447, \"HISPANIC\": 2727, \"MALES\": 8055, \"FEMALES\": 8280, \"AGE_UNDER5\": 1524, \"AGE_5_17\": 4126, \"AGE_18_21\": 622, \"AGE_22_29\": 1388, \"AGE_30_39\": 3552, \"AGE_40_49\": 3024, \"AGE_50_64\": 1489, \"AGE_65_UP\": 610, \"MED_AGE\": 31.600000, \"MED_AGE_M\": 31.000000, \"MED_AGE_F\": 32.200000, \"HOUSEHOLDS\": 5146, \"AVE_HH_SZ\": 3.150000, \"HSEHLD_1_M\": 263, \"HSEHLD_1_F\": 256, \"MARHH_CHD\": 2404, \"MARHH_NO_C\": 1322, \"MHH_CHILD\": 111, \"FHH_CHILD\": 385, \"FAMILIES\": 4428, \"AVE_FAM_SZ\": 3.390000, \"HSE_UNITS\": 5239, \"VACANT\": 93, \"OWNER_OCC\": 4609, \"RENTER_OCC\": 537 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.623989000354555, 30.446121999704644 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pharr\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"57200\", \"CAPITAL\": \"N\", \"AREALAND\": 20.828000, \"AREAWATER\": 0.006000, \"POP_CL\": 6, \"POP2000\": 46660, \"WHITE\": 37075, \"BLACK\": 110, \"AMERI_ES\": 335, \"ASIAN\": 109, \"HAWN_PI\": 13, \"OTHER\": 8068, \"MULT_RACE\": 950, \"HISPANIC\": 42282, \"MALES\": 22218, \"FEMALES\": 24442, \"AGE_UNDER5\": 4940, \"AGE_5_17\": 11279, \"AGE_18_21\": 3004, \"AGE_22_29\": 5905, \"AGE_30_39\": 6031, \"AGE_40_49\": 4840, \"AGE_50_64\": 5114, \"AGE_65_UP\": 5547, \"MED_AGE\": 27.400000, \"MED_AGE_M\": 26.200000, \"MED_AGE_F\": 28.600000, \"HOUSEHOLDS\": 12798, \"AVE_HH_SZ\": 3.640000, \"HSEHLD_1_M\": 616, \"HSEHLD_1_F\": 1085, \"MARHH_CHD\": 4611, \"MARHH_NO_C\": 3599, \"MHH_CHILD\": 215, \"FHH_CHILD\": 1200, \"FAMILIES\": 10878, \"AVE_FAM_SZ\": 4.020000, \"HSE_UNITS\": 16537, \"VACANT\": 3739, \"OWNER_OCC\": 9363, \"RENTER_OCC\": 3435 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -98.185174000756859, 26.206333999637199 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Plainview\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"57980\", \"CAPITAL\": \"N\", \"AREALAND\": 13.779000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 22336, \"WHITE\": 14118, \"BLACK\": 1312, \"AMERI_ES\": 253, \"ASIAN\": 95, \"HAWN_PI\": 14, \"OTHER\": 5926, \"MULT_RACE\": 618, \"HISPANIC\": 11131, \"MALES\": 10684, \"FEMALES\": 11652, \"AGE_UNDER5\": 1993, \"AGE_5_17\": 4942, \"AGE_18_21\": 1658, \"AGE_22_29\": 2346, \"AGE_30_39\": 2905, \"AGE_40_49\": 2712, \"AGE_50_64\": 2770, \"AGE_65_UP\": 3010, \"MED_AGE\": 30.800000, \"MED_AGE_M\": 29.300000, \"MED_AGE_F\": 32.300000, \"HOUSEHOLDS\": 7626, \"AVE_HH_SZ\": 2.820000, \"HSEHLD_1_M\": 654, \"HSEHLD_1_F\": 1074, \"MARHH_CHD\": 2200, \"MARHH_NO_C\": 2160, \"MHH_CHILD\": 182, \"FHH_CHILD\": 674, \"FAMILIES\": 5668, \"AVE_FAM_SZ\": 3.330000, \"HSE_UNITS\": 8471, \"VACANT\": 845, \"OWNER_OCC\": 4724, \"RENTER_OCC\": 2902 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -101.718805977002802, 34.191203982747567 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Plano\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"58016\", \"CAPITAL\": \"N\", \"AREALAND\": 71.566000, \"AREAWATER\": 0.062000, \"POP_CL\": 8, \"POP2000\": 222030, \"WHITE\": 173761, \"BLACK\": 11155, \"AMERI_ES\": 803, \"ASIAN\": 22594, \"HAWN_PI\": 98, \"OTHER\": 8565, \"MULT_RACE\": 5054, \"HISPANIC\": 22357, \"MALES\": 110619, \"FEMALES\": 111411, \"AGE_UNDER5\": 18379, \"AGE_5_17\": 45367, \"AGE_18_21\": 8704, \"AGE_22_29\": 22730, \"AGE_30_39\": 43340, \"AGE_40_49\": 40192, \"AGE_50_64\": 32407, \"AGE_65_UP\": 10911, \"MED_AGE\": 34.100000, \"MED_AGE_M\": 33.500000, \"MED_AGE_F\": 34.600000, \"HOUSEHOLDS\": 80875, \"AVE_HH_SZ\": 2.730000, \"HSEHLD_1_M\": 7618, \"HSEHLD_1_F\": 8741, \"MARHH_CHD\": 28802, \"MARHH_NO_C\": 23227, \"MHH_CHILD\": 1249, \"FHH_CHILD\": 3922, \"FAMILIES\": 60578, \"AVE_FAM_SZ\": 3.180000, \"HSE_UNITS\": 86078, \"VACANT\": 5203, \"OWNER_OCC\": 55625, \"RENTER_OCC\": 25250 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.745935000086476, 33.050373999890809 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Port Arthur\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"58820\", \"CAPITAL\": \"N\", \"AREALAND\": 82.919000, \"AREAWATER\": 60.838000, \"POP_CL\": 7, \"POP2000\": 57755, \"WHITE\": 22528, \"BLACK\": 25240, \"AMERI_ES\": 260, \"ASIAN\": 3404, \"HAWN_PI\": 9, \"OTHER\": 5127, \"MULT_RACE\": 1187, \"HISPANIC\": 10081, \"MALES\": 27525, \"FEMALES\": 30230, \"AGE_UNDER5\": 4513, \"AGE_5_17\": 12036, \"AGE_18_21\": 3376, \"AGE_22_29\": 5730, \"AGE_30_39\": 7489, \"AGE_40_49\": 7900, \"AGE_50_64\": 7733, \"AGE_65_UP\": 8978, \"MED_AGE\": 34.600000, \"MED_AGE_M\": 32.800000, \"MED_AGE_F\": 36.300000, \"HOUSEHOLDS\": 21839, \"AVE_HH_SZ\": 2.610000, \"HSEHLD_1_M\": 2729, \"HSEHLD_1_F\": 3692, \"MARHH_CHD\": 4200, \"MARHH_NO_C\": 5110, \"MHH_CHILD\": 439, \"FHH_CHILD\": 2606, \"FAMILIES\": 14665, \"AVE_FAM_SZ\": 3.250000, \"HSE_UNITS\": 24713, \"VACANT\": 2874, \"OWNER_OCC\": 13578, \"RENTER_OCC\": 8261 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.939902, 29.884863999999244 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Portland\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"58904\", \"CAPITAL\": \"N\", \"AREALAND\": 6.976000, \"AREAWATER\": 2.639000, \"POP_CL\": 6, \"POP2000\": 14827, \"WHITE\": 12424, \"BLACK\": 610, \"AMERI_ES\": 84, \"ASIAN\": 156, \"HAWN_PI\": 30, \"OTHER\": 1102, \"MULT_RACE\": 421, \"HISPANIC\": 3870, \"MALES\": 7344, \"FEMALES\": 7483, \"AGE_UNDER5\": 1209, \"AGE_5_17\": 3629, \"AGE_18_21\": 741, \"AGE_22_29\": 1432, \"AGE_30_39\": 2514, \"AGE_40_49\": 2179, \"AGE_50_64\": 1947, \"AGE_65_UP\": 1176, \"MED_AGE\": 31.800000, \"MED_AGE_M\": 30.800000, \"MED_AGE_F\": 32.900000, \"HOUSEHOLDS\": 5021, \"AVE_HH_SZ\": 2.940000, \"HSEHLD_1_M\": 375, \"HSEHLD_1_F\": 435, \"MARHH_CHD\": 1968, \"MARHH_NO_C\": 1478, \"MHH_CHILD\": 103, \"FHH_CHILD\": 315, \"FAMILIES\": 4053, \"AVE_FAM_SZ\": 3.300000, \"HSE_UNITS\": 5351, \"VACANT\": 330, \"OWNER_OCC\": 3179, \"RENTER_OCC\": 1842 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.320466000251145, 27.883116999853623 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Port Lavaca\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"58916\", \"CAPITAL\": \"N\", \"AREALAND\": 9.786000, \"AREAWATER\": 3.851000, \"POP_CL\": 6, \"POP2000\": 12035, \"WHITE\": 8659, \"BLACK\": 488, \"AMERI_ES\": 56, \"ASIAN\": 476, \"HAWN_PI\": 10, \"OTHER\": 2036, \"MULT_RACE\": 310, \"HISPANIC\": 6272, \"MALES\": 5992, \"FEMALES\": 6043, \"AGE_UNDER5\": 1046, \"AGE_5_17\": 2599, \"AGE_18_21\": 705, \"AGE_22_29\": 1292, \"AGE_30_39\": 1751, \"AGE_40_49\": 1547, \"AGE_50_64\": 1640, \"AGE_65_UP\": 1455, \"MED_AGE\": 32.100000, \"MED_AGE_M\": 31.300000, \"MED_AGE_F\": 33.100000, \"HOUSEHOLDS\": 4189, \"AVE_HH_SZ\": 2.830000, \"HSEHLD_1_M\": 447, \"HSEHLD_1_F\": 443, \"MARHH_CHD\": 1168, \"MARHH_NO_C\": 1199, \"MHH_CHILD\": 101, \"FHH_CHILD\": 363, \"FAMILIES\": 3134, \"AVE_FAM_SZ\": 3.310000, \"HSE_UNITS\": 4791, \"VACANT\": 602, \"OWNER_OCC\": 2743, \"RENTER_OCC\": 1446 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.629741000083854, 28.61563499994395 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Port Neches\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"58940\", \"CAPITAL\": \"N\", \"AREALAND\": 9.126000, \"AREAWATER\": 0.072000, \"POP_CL\": 6, \"POP2000\": 13601, \"WHITE\": 12887, \"BLACK\": 126, \"AMERI_ES\": 64, \"ASIAN\": 214, \"HAWN_PI\": 1, \"OTHER\": 161, \"MULT_RACE\": 148, \"HISPANIC\": 690, \"MALES\": 6679, \"FEMALES\": 6922, \"AGE_UNDER5\": 794, \"AGE_5_17\": 2680, \"AGE_18_21\": 760, \"AGE_22_29\": 1117, \"AGE_30_39\": 1793, \"AGE_40_49\": 2279, \"AGE_50_64\": 2239, \"AGE_65_UP\": 1939, \"MED_AGE\": 38.400000, \"MED_AGE_M\": 37.500000, \"MED_AGE_F\": 39.000000, \"HOUSEHOLDS\": 5280, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 493, \"HSEHLD_1_F\": 636, \"MARHH_CHD\": 1411, \"MARHH_NO_C\": 1840, \"MHH_CHILD\": 112, \"FHH_CHILD\": 310, \"FAMILIES\": 3978, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 5656, \"VACANT\": 376, \"OWNER_OCC\": 4119, \"RENTER_OCC\": 1161 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.960382, 29.980862999999239 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Richardson\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"61796\", \"CAPITAL\": \"N\", \"AREALAND\": 28.564000, \"AREAWATER\": 0.003000, \"POP_CL\": 7, \"POP2000\": 91802, \"WHITE\": 69209, \"BLACK\": 5675, \"AMERI_ES\": 409, \"ASIAN\": 10709, \"HAWN_PI\": 58, \"OTHER\": 3351, \"MULT_RACE\": 2391, \"HISPANIC\": 9420, \"MALES\": 45347, \"FEMALES\": 46455, \"AGE_UNDER5\": 6180, \"AGE_5_17\": 16576, \"AGE_18_21\": 4423, \"AGE_22_29\": 10185, \"AGE_30_39\": 15390, \"AGE_40_49\": 14931, \"AGE_50_64\": 14967, \"AGE_65_UP\": 9150, \"MED_AGE\": 35.800000, \"MED_AGE_M\": 34.500000, \"MED_AGE_F\": 37.100000, \"HOUSEHOLDS\": 35191, \"AVE_HH_SZ\": 2.590000, \"HSEHLD_1_M\": 3657, \"HSEHLD_1_F\": 4399, \"MARHH_CHD\": 9486, \"MARHH_NO_C\": 10973, \"MHH_CHILD\": 540, \"FHH_CHILD\": 1847, \"FAMILIES\": 24778, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 36530, \"VACANT\": 1339, \"OWNER_OCC\": 22672, \"RENTER_OCC\": 12519 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.715707000082659, 32.965627999896796 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Richmond\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"61892\", \"CAPITAL\": \"N\", \"AREALAND\": 3.724000, \"AREAWATER\": 0.218000, \"POP_CL\": 6, \"POP2000\": 11081, \"WHITE\": 5674, \"BLACK\": 1501, \"AMERI_ES\": 70, \"ASIAN\": 59, \"HAWN_PI\": 8, \"OTHER\": 3435, \"MULT_RACE\": 334, \"HISPANIC\": 6506, \"MALES\": 5486, \"FEMALES\": 5595, \"AGE_UNDER5\": 925, \"AGE_5_17\": 2582, \"AGE_18_21\": 710, \"AGE_22_29\": 1391, \"AGE_30_39\": 1530, \"AGE_40_49\": 1464, \"AGE_50_64\": 1362, \"AGE_65_UP\": 1117, \"MED_AGE\": 29.600000, \"MED_AGE_M\": 28.500000, \"MED_AGE_F\": 30.900000, \"HOUSEHOLDS\": 3413, \"AVE_HH_SZ\": 3.160000, \"HSEHLD_1_M\": 277, \"HSEHLD_1_F\": 361, \"MARHH_CHD\": 908, \"MARHH_NO_C\": 920, \"MHH_CHILD\": 115, \"FHH_CHILD\": 328, \"FAMILIES\": 2629, \"AVE_FAM_SZ\": 3.600000, \"HSE_UNITS\": 3595, \"VACANT\": 182, \"OWNER_OCC\": 1954, \"RENTER_OCC\": 1459 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.763000000014472, 29.580920999987317 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Rio Grande City\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"62168\", \"CAPITAL\": \"N\", \"AREALAND\": 7.587000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11923, \"WHITE\": 9893, \"BLACK\": 36, \"AMERI_ES\": 52, \"ASIAN\": 132, \"HAWN_PI\": 1, \"OTHER\": 1491, \"MULT_RACE\": 318, \"HISPANIC\": 11433, \"MALES\": 5758, \"FEMALES\": 6165, \"AGE_UNDER5\": 1092, \"AGE_5_17\": 2855, \"AGE_18_21\": 825, \"AGE_22_29\": 1401, \"AGE_30_39\": 1610, \"AGE_40_49\": 1417, \"AGE_50_64\": 1393, \"AGE_65_UP\": 1330, \"MED_AGE\": 28.800000, \"MED_AGE_M\": 26.800000, \"MED_AGE_F\": 30.800000, \"HOUSEHOLDS\": 3333, \"AVE_HH_SZ\": 3.470000, \"HSEHLD_1_M\": 156, \"HSEHLD_1_F\": 330, \"MARHH_CHD\": 1186, \"MARHH_NO_C\": 817, \"MHH_CHILD\": 51, \"FHH_CHILD\": 331, \"FAMILIES\": 2797, \"AVE_FAM_SZ\": 3.860000, \"HSE_UNITS\": 3846, \"VACANT\": 513, \"OWNER_OCC\": 2420, \"RENTER_OCC\": 913 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -98.818364001454242, 26.380666999248962 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Robstown\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"62600\", \"CAPITAL\": \"N\", \"AREALAND\": 12.068000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12727, \"WHITE\": 8523, \"BLACK\": 180, \"AMERI_ES\": 76, \"ASIAN\": 19, \"HAWN_PI\": 8, \"OTHER\": 3452, \"MULT_RACE\": 469, \"HISPANIC\": 11848, \"MALES\": 6150, \"FEMALES\": 6577, \"AGE_UNDER5\": 1153, \"AGE_5_17\": 3109, \"AGE_18_21\": 875, \"AGE_22_29\": 1344, \"AGE_30_39\": 1643, \"AGE_40_49\": 1531, \"AGE_50_64\": 1603, \"AGE_65_UP\": 1469, \"MED_AGE\": 29.300000, \"MED_AGE_M\": 27.400000, \"MED_AGE_F\": 30.800000, \"HOUSEHOLDS\": 3644, \"AVE_HH_SZ\": 3.470000, \"HSEHLD_1_M\": 212, \"HSEHLD_1_F\": 340, \"MARHH_CHD\": 975, \"MARHH_NO_C\": 961, \"MHH_CHILD\": 95, \"FHH_CHILD\": 474, \"FAMILIES\": 3038, \"AVE_FAM_SZ\": 3.850000, \"HSE_UNITS\": 4063, \"VACANT\": 419, \"OWNER_OCC\": 2479, \"RENTER_OCC\": 1165 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.669386000403662, 27.79261499976819 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Rockwall\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"62828\", \"CAPITAL\": \"N\", \"AREALAND\": 22.279000, \"AREAWATER\": 0.371000, \"POP_CL\": 6, \"POP2000\": 17976, \"WHITE\": 16421, \"BLACK\": 539, \"AMERI_ES\": 69, \"ASIAN\": 249, \"HAWN_PI\": 6, \"OTHER\": 462, \"MULT_RACE\": 230, \"HISPANIC\": 1157, \"MALES\": 8783, \"FEMALES\": 9193, \"AGE_UNDER5\": 1263, \"AGE_5_17\": 3673, \"AGE_18_21\": 748, \"AGE_22_29\": 1471, \"AGE_30_39\": 2935, \"AGE_40_49\": 3083, \"AGE_50_64\": 3064, \"AGE_65_UP\": 1739, \"MED_AGE\": 36.600000, \"MED_AGE_M\": 35.800000, \"MED_AGE_F\": 37.500000, \"HOUSEHOLDS\": 6605, \"AVE_HH_SZ\": 2.680000, \"HSEHLD_1_M\": 499, \"HSEHLD_1_F\": 729, \"MARHH_CHD\": 2128, \"MARHH_NO_C\": 2282, \"MHH_CHILD\": 121, \"FHH_CHILD\": 354, \"FAMILIES\": 5158, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 7089, \"VACANT\": 484, \"OWNER_OCC\": 5055, \"RENTER_OCC\": 1550 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.459715000053066, 32.920013999932777 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Rosenberg\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"63284\", \"CAPITAL\": \"N\", \"AREALAND\": 21.245000, \"AREAWATER\": 0.010000, \"POP_CL\": 6, \"POP2000\": 24043, \"WHITE\": 15793, \"BLACK\": 2052, \"AMERI_ES\": 90, \"ASIAN\": 91, \"HAWN_PI\": 10, \"OTHER\": 5331, \"MULT_RACE\": 676, \"HISPANIC\": 13215, \"MALES\": 11939, \"FEMALES\": 12104, \"AGE_UNDER5\": 2120, \"AGE_5_17\": 5315, \"AGE_18_21\": 1477, \"AGE_22_29\": 3031, \"AGE_30_39\": 3619, \"AGE_40_49\": 3136, \"AGE_50_64\": 3000, \"AGE_65_UP\": 2345, \"MED_AGE\": 30.200000, \"MED_AGE_M\": 29.100000, \"MED_AGE_F\": 31.300000, \"HOUSEHOLDS\": 7933, \"AVE_HH_SZ\": 3.000000, \"HSEHLD_1_M\": 695, \"HSEHLD_1_F\": 954, \"MARHH_CHD\": 2254, \"MARHH_NO_C\": 1980, \"MHH_CHILD\": 232, \"FHH_CHILD\": 791, \"FAMILIES\": 5976, \"AVE_FAM_SZ\": 3.480000, \"HSE_UNITS\": 8438, \"VACANT\": 505, \"OWNER_OCC\": 4526, \"RENTER_OCC\": 3407 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.804899000015936, 29.55238799998623 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Round Rock\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"63500\", \"CAPITAL\": \"N\", \"AREALAND\": 26.137000, \"AREAWATER\": 0.127000, \"POP_CL\": 7, \"POP2000\": 61136, \"WHITE\": 46927, \"BLACK\": 4718, \"AMERI_ES\": 305, \"ASIAN\": 1767, \"HAWN_PI\": 59, \"OTHER\": 5792, \"MULT_RACE\": 1568, \"HISPANIC\": 13511, \"MALES\": 30425, \"FEMALES\": 30711, \"AGE_UNDER5\": 5942, \"AGE_5_17\": 13588, \"AGE_18_21\": 2723, \"AGE_22_29\": 8183, \"AGE_30_39\": 12747, \"AGE_40_49\": 9349, \"AGE_50_64\": 5875, \"AGE_65_UP\": 2729, \"MED_AGE\": 30.100000, \"MED_AGE_M\": 29.700000, \"MED_AGE_F\": 30.500000, \"HOUSEHOLDS\": 21076, \"AVE_HH_SZ\": 2.870000, \"HSEHLD_1_M\": 1899, \"HSEHLD_1_F\": 1907, \"MARHH_CHD\": 7808, \"MARHH_NO_C\": 4944, \"MHH_CHILD\": 508, \"FHH_CHILD\": 1697, \"FAMILIES\": 15931, \"AVE_FAM_SZ\": 3.290000, \"HSE_UNITS\": 21766, \"VACANT\": 690, \"OWNER_OCC\": 13765, \"RENTER_OCC\": 7311 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.672561000376021, 30.514864999683176 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Rowlett\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"63572\", \"CAPITAL\": \"N\", \"AREALAND\": 20.227000, \"AREAWATER\": 0.018000, \"POP_CL\": 6, \"POP2000\": 44503, \"WHITE\": 36406, \"BLACK\": 4010, \"AMERI_ES\": 220, \"ASIAN\": 1481, \"HAWN_PI\": 25, \"OTHER\": 1570, \"MULT_RACE\": 791, \"HISPANIC\": 3899, \"MALES\": 21998, \"FEMALES\": 22505, \"AGE_UNDER5\": 3868, \"AGE_5_17\": 11026, \"AGE_18_21\": 1592, \"AGE_22_29\": 3595, \"AGE_30_39\": 9174, \"AGE_40_49\": 8016, \"AGE_50_64\": 4918, \"AGE_65_UP\": 2314, \"MED_AGE\": 32.800000, \"MED_AGE_M\": 32.400000, \"MED_AGE_F\": 33.100000, \"HOUSEHOLDS\": 14266, \"AVE_HH_SZ\": 3.090000, \"HSEHLD_1_M\": 694, \"HSEHLD_1_F\": 823, \"MARHH_CHD\": 6614, \"MARHH_NO_C\": 4129, \"MHH_CHILD\": 294, \"FHH_CHILD\": 768, \"FAMILIES\": 12353, \"AVE_FAM_SZ\": 3.330000, \"HSE_UNITS\": 14580, \"VACANT\": 314, \"OWNER_OCC\": 13148, \"RENTER_OCC\": 1118 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.547415000062145, 32.90701999992212 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Saginaw\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"64112\", \"CAPITAL\": \"N\", \"AREALAND\": 7.503000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12374, \"WHITE\": 10844, \"BLACK\": 239, \"AMERI_ES\": 113, \"ASIAN\": 154, \"HAWN_PI\": 0, \"OTHER\": 753, \"MULT_RACE\": 271, \"HISPANIC\": 1823, \"MALES\": 6103, \"FEMALES\": 6271, \"AGE_UNDER5\": 1062, \"AGE_5_17\": 2892, \"AGE_18_21\": 566, \"AGE_22_29\": 1251, \"AGE_30_39\": 2367, \"AGE_40_49\": 1928, \"AGE_50_64\": 1600, \"AGE_65_UP\": 708, \"MED_AGE\": 31.700000, \"MED_AGE_M\": 31.100000, \"MED_AGE_F\": 32.200000, \"HOUSEHOLDS\": 4229, \"AVE_HH_SZ\": 2.930000, \"HSEHLD_1_M\": 284, \"HSEHLD_1_F\": 354, \"MARHH_CHD\": 1561, \"MARHH_NO_C\": 1224, \"MHH_CHILD\": 114, \"FHH_CHILD\": 316, \"FAMILIES\": 3452, \"AVE_FAM_SZ\": 3.260000, \"HSE_UNITS\": 4339, \"VACANT\": 110, \"OWNER_OCC\": 3345, \"RENTER_OCC\": 884 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.366621000220761, 32.861788999732141 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"San Angelo\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"64472\", \"CAPITAL\": \"N\", \"AREALAND\": 55.895000, \"AREAWATER\": 2.349000, \"POP_CL\": 7, \"POP2000\": 88439, \"WHITE\": 68183, \"BLACK\": 4185, \"AMERI_ES\": 579, \"ASIAN\": 844, \"HAWN_PI\": 70, \"OTHER\": 12344, \"MULT_RACE\": 2234, \"HISPANIC\": 29321, \"MALES\": 42395, \"FEMALES\": 46044, \"AGE_UNDER5\": 6239, \"AGE_5_17\": 16611, \"AGE_18_21\": 7760, \"AGE_22_29\": 10492, \"AGE_30_39\": 11789, \"AGE_40_49\": 11659, \"AGE_50_64\": 11678, \"AGE_65_UP\": 12211, \"MED_AGE\": 32.800000, \"MED_AGE_M\": 30.700000, \"MED_AGE_F\": 34.900000, \"HOUSEHOLDS\": 34006, \"AVE_HH_SZ\": 2.480000, \"HSEHLD_1_M\": 3905, \"HSEHLD_1_F\": 5901, \"MARHH_CHD\": 7588, \"MARHH_NO_C\": 9239, \"MHH_CHILD\": 757, \"FHH_CHILD\": 2655, \"FAMILIES\": 22414, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 37699, \"VACANT\": 3693, \"OWNER_OCC\": 20677, \"RENTER_OCC\": 13329 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -100.452502001319459, 31.453112994410866 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"San Antonio\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"65000\", \"CAPITAL\": \"N\", \"AREALAND\": 407.557000, \"AREAWATER\": 4.514000, \"POP_CL\": 10, \"POP2000\": 1144646, \"WHITE\": 774708, \"BLACK\": 78120, \"AMERI_ES\": 9584, \"ASIAN\": 17934, \"HAWN_PI\": 1067, \"OTHER\": 221362, \"MULT_RACE\": 41871, \"HISPANIC\": 671394, \"MALES\": 553245, \"FEMALES\": 591401, \"AGE_UNDER5\": 92446, \"AGE_5_17\": 234211, \"AGE_18_21\": 70941, \"AGE_22_29\": 143970, \"AGE_30_39\": 177249, \"AGE_40_49\": 158471, \"AGE_50_64\": 147996, \"AGE_65_UP\": 119362, \"MED_AGE\": 31.700000, \"MED_AGE_M\": 30.500000, \"MED_AGE_F\": 32.900000, \"HOUSEHOLDS\": 405474, \"AVE_HH_SZ\": 2.770000, \"HSEHLD_1_M\": 45282, \"HSEHLD_1_F\": 56352, \"MARHH_CHD\": 97670, \"MARHH_NO_C\": 97202, \"MHH_CHILD\": 9421, \"FHH_CHILD\": 38552, \"FAMILIES\": 280828, \"AVE_FAM_SZ\": 3.360000, \"HSE_UNITS\": 433122, \"VACANT\": 27648, \"OWNER_OCC\": 235699, \"RENTER_OCC\": 169775 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -98.512682001006596, 29.451531999236085 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"San Benito\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"65036\", \"CAPITAL\": \"N\", \"AREALAND\": 11.005000, \"AREAWATER\": 0.208000, \"POP_CL\": 6, \"POP2000\": 23444, \"WHITE\": 17854, \"BLACK\": 74, \"AMERI_ES\": 97, \"ASIAN\": 58, \"HAWN_PI\": 1, \"OTHER\": 4802, \"MULT_RACE\": 558, \"HISPANIC\": 20380, \"MALES\": 11117, \"FEMALES\": 12327, \"AGE_UNDER5\": 2194, \"AGE_5_17\": 5609, \"AGE_18_21\": 1482, \"AGE_22_29\": 2523, \"AGE_30_39\": 2967, \"AGE_40_49\": 2538, \"AGE_50_64\": 2932, \"AGE_65_UP\": 3199, \"MED_AGE\": 29.700000, \"MED_AGE_M\": 27.400000, \"MED_AGE_F\": 31.600000, \"HOUSEHOLDS\": 7065, \"AVE_HH_SZ\": 3.300000, \"HSEHLD_1_M\": 431, \"HSEHLD_1_F\": 756, \"MARHH_CHD\": 2022, \"MARHH_NO_C\": 1977, \"MHH_CHILD\": 166, \"FHH_CHILD\": 738, \"FAMILIES\": 5719, \"AVE_FAM_SZ\": 3.720000, \"HSE_UNITS\": 9120, \"VACANT\": 2055, \"OWNER_OCC\": 4905, \"RENTER_OCC\": 2160 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.635878000387891, 26.136602999818969 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"San Elizario\", \"CLASS\": \"CDP\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"65360\", \"CAPITAL\": \"N\", \"AREALAND\": 9.927000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11046, \"WHITE\": 10420, \"BLACK\": 17, \"AMERI_ES\": 61, \"ASIAN\": 1, \"HAWN_PI\": 1, \"OTHER\": 462, \"MULT_RACE\": 84, \"HISPANIC\": 10812, \"MALES\": 5505, \"FEMALES\": 5541, \"AGE_UNDER5\": 1148, \"AGE_5_17\": 3524, \"AGE_18_21\": 783, \"AGE_22_29\": 1200, \"AGE_30_39\": 1648, \"AGE_40_49\": 1285, \"AGE_50_64\": 944, \"AGE_65_UP\": 514, \"MED_AGE\": 22.500000, \"MED_AGE_M\": 21.300000, \"MED_AGE_F\": 23.800000, \"HOUSEHOLDS\": 2624, \"AVE_HH_SZ\": 4.210000, \"HSEHLD_1_M\": 97, \"HSEHLD_1_F\": 67, \"MARHH_CHD\": 1433, \"MARHH_NO_C\": 504, \"MHH_CHILD\": 51, \"FHH_CHILD\": 283, \"FAMILIES\": 2440, \"AVE_FAM_SZ\": 4.400000, \"HSE_UNITS\": 2809, \"VACANT\": 185, \"OWNER_OCC\": 2252, \"RENTER_OCC\": 372 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -106.265701327408635, 31.582872951780839 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"San Juan\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"65516\", \"CAPITAL\": \"N\", \"AREALAND\": 11.007000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 26229, \"WHITE\": 21293, \"BLACK\": 88, \"AMERI_ES\": 143, \"ASIAN\": 23, \"HAWN_PI\": 9, \"OTHER\": 4177, \"MULT_RACE\": 496, \"HISPANIC\": 24950, \"MALES\": 12677, \"FEMALES\": 13552, \"AGE_UNDER5\": 2746, \"AGE_5_17\": 7064, \"AGE_18_21\": 1806, \"AGE_22_29\": 3369, \"AGE_30_39\": 3609, \"AGE_40_49\": 2873, \"AGE_50_64\": 2721, \"AGE_65_UP\": 2041, \"MED_AGE\": 25.500000, \"MED_AGE_M\": 24.200000, \"MED_AGE_F\": 26.700000, \"HOUSEHOLDS\": 6606, \"AVE_HH_SZ\": 3.950000, \"HSEHLD_1_M\": 238, \"HSEHLD_1_F\": 329, \"MARHH_CHD\": 2932, \"MARHH_NO_C\": 1624, \"MHH_CHILD\": 119, \"FHH_CHILD\": 692, \"FAMILIES\": 5955, \"AVE_FAM_SZ\": 4.190000, \"HSE_UNITS\": 7719, \"VACANT\": 1113, \"OWNER_OCC\": 5065, \"RENTER_OCC\": 1541 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -98.15270800072949, 26.192450999651506 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"San Marcos\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"65600\", \"CAPITAL\": \"N\", \"AREALAND\": 18.209000, \"AREAWATER\": 0.113000, \"POP_CL\": 6, \"POP2000\": 34733, \"WHITE\": 25200, \"BLACK\": 1921, \"AMERI_ES\": 227, \"ASIAN\": 426, \"HAWN_PI\": 38, \"OTHER\": 5914, \"MULT_RACE\": 1007, \"HISPANIC\": 12676, \"MALES\": 17082, \"FEMALES\": 17651, \"AGE_UNDER5\": 1718, \"AGE_5_17\": 3627, \"AGE_18_21\": 8866, \"AGE_22_29\": 9282, \"AGE_30_39\": 3613, \"AGE_40_49\": 2615, \"AGE_50_64\": 2505, \"AGE_65_UP\": 2507, \"MED_AGE\": 23.300000, \"MED_AGE_M\": 23.800000, \"MED_AGE_F\": 22.900000, \"HOUSEHOLDS\": 12660, \"AVE_HH_SZ\": 2.310000, \"HSEHLD_1_M\": 1912, \"HSEHLD_1_F\": 2015, \"MARHH_CHD\": 1556, \"MARHH_NO_C\": 1978, \"MHH_CHILD\": 203, \"FHH_CHILD\": 672, \"FAMILIES\": 5385, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 13340, \"VACANT\": 680, \"OWNER_OCC\": 3824, \"RENTER_OCC\": 8836 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.9388290005339, 29.879386999587151 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Schertz\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"66128\", \"CAPITAL\": \"N\", \"AREALAND\": 24.731000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 18694, \"WHITE\": 15336, \"BLACK\": 1228, \"AMERI_ES\": 90, \"ASIAN\": 330, \"HAWN_PI\": 34, \"OTHER\": 1034, \"MULT_RACE\": 642, \"HISPANIC\": 3640, \"MALES\": 9053, \"FEMALES\": 9641, \"AGE_UNDER5\": 1403, \"AGE_5_17\": 4080, \"AGE_18_21\": 785, \"AGE_22_29\": 1576, \"AGE_30_39\": 3267, \"AGE_40_49\": 3206, \"AGE_50_64\": 2733, \"AGE_65_UP\": 1644, \"MED_AGE\": 35.100000, \"MED_AGE_M\": 34.500000, \"MED_AGE_F\": 35.600000, \"HOUSEHOLDS\": 6604, \"AVE_HH_SZ\": 2.820000, \"HSEHLD_1_M\": 480, \"HSEHLD_1_F\": 623, \"MARHH_CHD\": 2259, \"MARHH_NO_C\": 2179, \"MHH_CHILD\": 107, \"FHH_CHILD\": 415, \"FAMILIES\": 5284, \"AVE_FAM_SZ\": 3.170000, \"HSE_UNITS\": 7009, \"VACANT\": 405, \"OWNER_OCC\": 5265, \"RENTER_OCC\": 1339 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -98.264339000777611, 29.566727999413956 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Seagoville\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"66428\", \"CAPITAL\": \"N\", \"AREALAND\": 16.244000, \"AREAWATER\": 0.048000, \"POP_CL\": 6, \"POP2000\": 10823, \"WHITE\": 8524, \"BLACK\": 1041, \"AMERI_ES\": 81, \"ASIAN\": 61, \"HAWN_PI\": 8, \"OTHER\": 842, \"MULT_RACE\": 266, \"HISPANIC\": 1905, \"MALES\": 5853, \"FEMALES\": 4970, \"AGE_UNDER5\": 751, \"AGE_5_17\": 2042, \"AGE_18_21\": 589, \"AGE_22_29\": 1461, \"AGE_30_39\": 1935, \"AGE_40_49\": 1679, \"AGE_50_64\": 1390, \"AGE_65_UP\": 976, \"MED_AGE\": 32.900000, \"MED_AGE_M\": 32.700000, \"MED_AGE_F\": 33.300000, \"HOUSEHOLDS\": 3308, \"AVE_HH_SZ\": 2.840000, \"HSEHLD_1_M\": 258, \"HSEHLD_1_F\": 436, \"MARHH_CHD\": 905, \"MARHH_NO_C\": 888, \"MHH_CHILD\": 89, \"FHH_CHILD\": 281, \"FAMILIES\": 2463, \"AVE_FAM_SZ\": 3.290000, \"HSE_UNITS\": 3608, \"VACANT\": 300, \"OWNER_OCC\": 2563, \"RENTER_OCC\": 745 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.550033000063308, 32.65191999992367 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Seguin\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"66644\", \"CAPITAL\": \"N\", \"AREALAND\": 19.020000, \"AREAWATER\": 0.170000, \"POP_CL\": 6, \"POP2000\": 22011, \"WHITE\": 14397, \"BLACK\": 2002, \"AMERI_ES\": 134, \"ASIAN\": 190, \"HAWN_PI\": 12, \"OTHER\": 4478, \"MULT_RACE\": 798, \"HISPANIC\": 11669, \"MALES\": 10470, \"FEMALES\": 11541, \"AGE_UNDER5\": 1641, \"AGE_5_17\": 4391, \"AGE_18_21\": 1993, \"AGE_22_29\": 2328, \"AGE_30_39\": 2747, \"AGE_40_49\": 2662, \"AGE_50_64\": 2872, \"AGE_65_UP\": 3377, \"MED_AGE\": 32.600000, \"MED_AGE_M\": 30.600000, \"MED_AGE_F\": 34.400000, \"HOUSEHOLDS\": 7526, \"AVE_HH_SZ\": 2.730000, \"HSEHLD_1_M\": 755, \"HSEHLD_1_F\": 1197, \"MARHH_CHD\": 1565, \"MARHH_NO_C\": 1962, \"MHH_CHILD\": 219, \"FHH_CHILD\": 768, \"FAMILIES\": 5235, \"AVE_FAM_SZ\": 3.290000, \"HSE_UNITS\": 8164, \"VACANT\": 638, \"OWNER_OCC\": 4452, \"RENTER_OCC\": 3074 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.965332000557225, 29.574328999587632 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sherman\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"67496\", \"CAPITAL\": \"N\", \"AREALAND\": 38.550000, \"AREAWATER\": 0.068000, \"POP_CL\": 6, \"POP2000\": 35082, \"WHITE\": 27526, \"BLACK\": 3938, \"AMERI_ES\": 468, \"ASIAN\": 372, \"HAWN_PI\": 12, \"OTHER\": 1847, \"MULT_RACE\": 919, \"HISPANIC\": 4260, \"MALES\": 16815, \"FEMALES\": 18267, \"AGE_UNDER5\": 2539, \"AGE_5_17\": 6082, \"AGE_18_21\": 2979, \"AGE_22_29\": 4203, \"AGE_30_39\": 4702, \"AGE_40_49\": 4659, \"AGE_50_64\": 4605, \"AGE_65_UP\": 5313, \"MED_AGE\": 34.000000, \"MED_AGE_M\": 31.800000, \"MED_AGE_F\": 35.800000, \"HOUSEHOLDS\": 13739, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 1692, \"HSEHLD_1_F\": 2483, \"MARHH_CHD\": 2818, \"MARHH_NO_C\": 3602, \"MHH_CHILD\": 291, \"FHH_CHILD\": 1133, \"FAMILIES\": 8824, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 14926, \"VACANT\": 1187, \"OWNER_OCC\": 7746, \"RENTER_OCC\": 5993 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.609991000066273, 33.641076999907341 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Snyder\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"68624\", \"CAPITAL\": \"N\", \"AREALAND\": 8.580000, \"AREAWATER\": 0.020000, \"POP_CL\": 6, \"POP2000\": 10783, \"WHITE\": 8519, \"BLACK\": 506, \"AMERI_ES\": 61, \"ASIAN\": 27, \"HAWN_PI\": 0, \"OTHER\": 1475, \"MULT_RACE\": 195, \"HISPANIC\": 3427, \"MALES\": 5025, \"FEMALES\": 5758, \"AGE_UNDER5\": 796, \"AGE_5_17\": 2200, \"AGE_18_21\": 777, \"AGE_22_29\": 940, \"AGE_30_39\": 1241, \"AGE_40_49\": 1531, \"AGE_50_64\": 1471, \"AGE_65_UP\": 1827, \"MED_AGE\": 36.000000, \"MED_AGE_M\": 33.700000, \"MED_AGE_F\": 37.800000, \"HOUSEHOLDS\": 4068, \"AVE_HH_SZ\": 2.560000, \"HSEHLD_1_M\": 355, \"HSEHLD_1_F\": 721, \"MARHH_CHD\": 1023, \"MARHH_NO_C\": 1225, \"MHH_CHILD\": 100, \"FHH_CHILD\": 297, \"FAMILIES\": 2880, \"AVE_FAM_SZ\": 3.100000, \"HSE_UNITS\": 5013, \"VACANT\": 945, \"OWNER_OCC\": 2883, \"RENTER_OCC\": 1185 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -100.914318997190506, 32.715536991142265 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Socorro\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"68636\", \"CAPITAL\": \"N\", \"AREALAND\": 17.507000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 27152, \"WHITE\": 19932, \"BLACK\": 96, \"AMERI_ES\": 365, \"ASIAN\": 20, \"HAWN_PI\": 4, \"OTHER\": 5981, \"MULT_RACE\": 754, \"HISPANIC\": 26183, \"MALES\": 13146, \"FEMALES\": 14006, \"AGE_UNDER5\": 2507, \"AGE_5_17\": 7296, \"AGE_18_21\": 1866, \"AGE_22_29\": 3202, \"AGE_30_39\": 3658, \"AGE_40_49\": 3699, \"AGE_50_64\": 3198, \"AGE_65_UP\": 1726, \"MED_AGE\": 26.600000, \"MED_AGE_M\": 25.700000, \"MED_AGE_F\": 27.500000, \"HOUSEHOLDS\": 6756, \"AVE_HH_SZ\": 4.020000, \"HSEHLD_1_M\": 247, \"HSEHLD_1_F\": 233, \"MARHH_CHD\": 2997, \"MARHH_NO_C\": 1693, \"MHH_CHILD\": 176, \"FHH_CHILD\": 670, \"FAMILIES\": 6191, \"AVE_FAM_SZ\": 4.200000, \"HSE_UNITS\": 7140, \"VACANT\": 384, \"OWNER_OCC\": 5480, \"RENTER_OCC\": 1276 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -106.274754305479448, 31.641339951774334 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"South Houston\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"69020\", \"CAPITAL\": \"N\", \"AREALAND\": 3.027000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 15833, \"WHITE\": 10344, \"BLACK\": 165, \"AMERI_ES\": 95, \"ASIAN\": 111, \"HAWN_PI\": 8, \"OTHER\": 4392, \"MULT_RACE\": 718, \"HISPANIC\": 12338, \"MALES\": 8077, \"FEMALES\": 7756, \"AGE_UNDER5\": 1638, \"AGE_5_17\": 3767, \"AGE_18_21\": 1071, \"AGE_22_29\": 2072, \"AGE_30_39\": 2511, \"AGE_40_49\": 1942, \"AGE_50_64\": 1748, \"AGE_65_UP\": 1084, \"MED_AGE\": 27.500000, \"MED_AGE_M\": 27.200000, \"MED_AGE_F\": 27.800000, \"HOUSEHOLDS\": 4593, \"AVE_HH_SZ\": 3.450000, \"HSEHLD_1_M\": 355, \"HSEHLD_1_F\": 352, \"MARHH_CHD\": 1704, \"MARHH_NO_C\": 1057, \"MHH_CHILD\": 120, \"FHH_CHILD\": 367, \"FAMILIES\": 3696, \"AVE_FAM_SZ\": 3.860000, \"HSE_UNITS\": 4947, \"VACANT\": 354, \"OWNER_OCC\": 2704, \"RENTER_OCC\": 1889 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.229787000003682, 29.660979999995963 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Southlake\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"69032\", \"CAPITAL\": \"N\", \"AREALAND\": 21.892000, \"AREAWATER\": 0.555000, \"POP_CL\": 6, \"POP2000\": 21519, \"WHITE\": 20345, \"BLACK\": 299, \"AMERI_ES\": 53, \"ASIAN\": 386, \"HAWN_PI\": 2, \"OTHER\": 175, \"MULT_RACE\": 259, \"HISPANIC\": 789, \"MALES\": 10792, \"FEMALES\": 10727, \"AGE_UNDER5\": 1632, \"AGE_5_17\": 6346, \"AGE_18_21\": 643, \"AGE_22_29\": 574, \"AGE_30_39\": 3228, \"AGE_40_49\": 5309, \"AGE_50_64\": 3123, \"AGE_65_UP\": 664, \"MED_AGE\": 36.700000, \"MED_AGE_M\": 37.100000, \"MED_AGE_F\": 36.400000, \"HOUSEHOLDS\": 6414, \"AVE_HH_SZ\": 3.350000, \"HSEHLD_1_M\": 171, \"HSEHLD_1_F\": 177, \"MARHH_CHD\": 3661, \"MARHH_NO_C\": 1982, \"MHH_CHILD\": 64, \"FHH_CHILD\": 153, \"FAMILIES\": 5961, \"AVE_FAM_SZ\": 3.480000, \"HSE_UNITS\": 6614, \"VACANT\": 200, \"OWNER_OCC\": 6145, \"RENTER_OCC\": 269 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.145230000161291, 32.946677999802141 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Spring\", \"CLASS\": \"CDP\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"69596\", \"CAPITAL\": \"N\", \"AREALAND\": 23.937000, \"AREAWATER\": 0.028000, \"POP_CL\": 6, \"POP2000\": 36385, \"WHITE\": 30203, \"BLACK\": 2544, \"AMERI_ES\": 186, \"ASIAN\": 518, \"HAWN_PI\": 48, \"OTHER\": 2046, \"MULT_RACE\": 840, \"HISPANIC\": 5844, \"MALES\": 17730, \"FEMALES\": 18655, \"AGE_UNDER5\": 2717, \"AGE_5_17\": 8570, \"AGE_18_21\": 1891, \"AGE_22_29\": 3997, \"AGE_30_39\": 6336, \"AGE_40_49\": 6159, \"AGE_50_64\": 5072, \"AGE_65_UP\": 1643, \"MED_AGE\": 31.700000, \"MED_AGE_M\": 30.800000, \"MED_AGE_F\": 32.600000, \"HOUSEHOLDS\": 12302, \"AVE_HH_SZ\": 2.960000, \"HSEHLD_1_M\": 839, \"HSEHLD_1_F\": 1056, \"MARHH_CHD\": 4328, \"MARHH_NO_C\": 3410, \"MHH_CHILD\": 339, \"FHH_CHILD\": 1018, \"FAMILIES\": 9831, \"AVE_FAM_SZ\": 3.300000, \"HSE_UNITS\": 12714, \"VACANT\": 412, \"OWNER_OCC\": 9297, \"RENTER_OCC\": 3005 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.38699100000558, 30.054126999994029 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Stafford\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"69908\", \"CAPITAL\": \"N\", \"AREALAND\": 6.978000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 15681, \"WHITE\": 7362, \"BLACK\": 2956, \"AMERI_ES\": 67, \"ASIAN\": 3105, \"HAWN_PI\": 9, \"OTHER\": 1651, \"MULT_RACE\": 531, \"HISPANIC\": 3653, \"MALES\": 7737, \"FEMALES\": 7944, \"AGE_UNDER5\": 1185, \"AGE_5_17\": 3187, \"AGE_18_21\": 773, \"AGE_22_29\": 2444, \"AGE_30_39\": 2995, \"AGE_40_49\": 2502, \"AGE_50_64\": 1825, \"AGE_65_UP\": 770, \"MED_AGE\": 30.700000, \"MED_AGE_M\": 30.300000, \"MED_AGE_F\": 31.300000, \"HOUSEHOLDS\": 5865, \"AVE_HH_SZ\": 2.670000, \"HSEHLD_1_M\": 770, \"HSEHLD_1_F\": 722, \"MARHH_CHD\": 1669, \"MARHH_NO_C\": 1430, \"MHH_CHILD\": 92, \"FHH_CHILD\": 498, \"FAMILIES\": 4033, \"AVE_FAM_SZ\": 3.270000, \"HSE_UNITS\": 6390, \"VACANT\": 525, \"OWNER_OCC\": 2784, \"RENTER_OCC\": 3081 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.563359000008958, 29.624185999991624 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Stephenville\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"70208\", \"CAPITAL\": \"N\", \"AREALAND\": 10.026000, \"AREAWATER\": 0.019000, \"POP_CL\": 6, \"POP2000\": 14921, \"WHITE\": 13554, \"BLACK\": 219, \"AMERI_ES\": 86, \"ASIAN\": 97, \"HAWN_PI\": 8, \"OTHER\": 671, \"MULT_RACE\": 286, \"HISPANIC\": 1725, \"MALES\": 7104, \"FEMALES\": 7817, \"AGE_UNDER5\": 874, \"AGE_5_17\": 2152, \"AGE_18_21\": 2478, \"AGE_22_29\": 2429, \"AGE_30_39\": 1676, \"AGE_40_49\": 1582, \"AGE_50_64\": 1557, \"AGE_65_UP\": 2173, \"MED_AGE\": 27.700000, \"MED_AGE_M\": 26.200000, \"MED_AGE_F\": 29.600000, \"HOUSEHOLDS\": 5906, \"AVE_HH_SZ\": 2.240000, \"HSEHLD_1_M\": 787, \"HSEHLD_1_F\": 1281, \"MARHH_CHD\": 1157, \"MARHH_NO_C\": 1376, \"MHH_CHILD\": 92, \"FHH_CHILD\": 289, \"FAMILIES\": 3196, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 6632, \"VACANT\": 726, \"OWNER_OCC\": 3069, \"RENTER_OCC\": 2837 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -98.213630000621649, 32.220167999272924 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sugar Land\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"70808\", \"CAPITAL\": \"N\", \"AREALAND\": 24.087000, \"AREAWATER\": 0.832000, \"POP_CL\": 7, \"POP2000\": 63328, \"WHITE\": 41798, \"BLACK\": 3294, \"AMERI_ES\": 149, \"ASIAN\": 15072, \"HAWN_PI\": 18, \"OTHER\": 1470, \"MULT_RACE\": 1527, \"HISPANIC\": 5053, \"MALES\": 30983, \"FEMALES\": 32345, \"AGE_UNDER5\": 3894, \"AGE_5_17\": 15844, \"AGE_18_21\": 2560, \"AGE_22_29\": 3785, \"AGE_30_39\": 8477, \"AGE_40_49\": 14444, \"AGE_50_64\": 10068, \"AGE_65_UP\": 4256, \"MED_AGE\": 37.400000, \"MED_AGE_M\": 36.800000, \"MED_AGE_F\": 38.000000, \"HOUSEHOLDS\": 20515, \"AVE_HH_SZ\": 3.060000, \"HSEHLD_1_M\": 1117, \"HSEHLD_1_F\": 1463, \"MARHH_CHD\": 9124, \"MARHH_NO_C\": 6160, \"MHH_CHILD\": 257, \"FHH_CHILD\": 1115, \"FAMILIES\": 17524, \"AVE_FAM_SZ\": 3.360000, \"HSE_UNITS\": 21090, \"VACANT\": 575, \"OWNER_OCC\": 17262, \"RENTER_OCC\": 3253 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.614089000010154, 29.599579999990691 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sulphur Springs\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"70904\", \"CAPITAL\": \"N\", \"AREALAND\": 17.859000, \"AREAWATER\": 3.181000, \"POP_CL\": 6, \"POP2000\": 14551, \"WHITE\": 11570, \"BLACK\": 2076, \"AMERI_ES\": 101, \"ASIAN\": 58, \"HAWN_PI\": 9, \"OTHER\": 537, \"MULT_RACE\": 200, \"HISPANIC\": 1191, \"MALES\": 6810, \"FEMALES\": 7741, \"AGE_UNDER5\": 984, \"AGE_5_17\": 2788, \"AGE_18_21\": 783, \"AGE_22_29\": 1516, \"AGE_30_39\": 1917, \"AGE_40_49\": 1886, \"AGE_50_64\": 2124, \"AGE_65_UP\": 2553, \"MED_AGE\": 36.400000, \"MED_AGE_M\": 33.500000, \"MED_AGE_F\": 39.400000, \"HOUSEHOLDS\": 5780, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 562, \"HSEHLD_1_F\": 1138, \"MARHH_CHD\": 1262, \"MARHH_NO_C\": 1627, \"MHH_CHILD\": 119, \"FHH_CHILD\": 438, \"FAMILIES\": 3858, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 6492, \"VACANT\": 712, \"OWNER_OCC\": 3484, \"RENTER_OCC\": 2296 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.601965000008448, 33.134063999986843 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sweetwater\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"71540\", \"CAPITAL\": \"N\", \"AREALAND\": 10.019000, \"AREAWATER\": 0.001000, \"POP_CL\": 6, \"POP2000\": 11415, \"WHITE\": 8594, \"BLACK\": 666, \"AMERI_ES\": 66, \"ASIAN\": 36, \"HAWN_PI\": 8, \"OTHER\": 1793, \"MULT_RACE\": 252, \"HISPANIC\": 3618, \"MALES\": 5441, \"FEMALES\": 5974, \"AGE_UNDER5\": 839, \"AGE_5_17\": 2364, \"AGE_18_21\": 648, \"AGE_22_29\": 1095, \"AGE_30_39\": 1413, \"AGE_40_49\": 1577, \"AGE_50_64\": 1670, \"AGE_65_UP\": 1809, \"MED_AGE\": 35.600000, \"MED_AGE_M\": 33.600000, \"MED_AGE_F\": 37.400000, \"HOUSEHOLDS\": 4545, \"AVE_HH_SZ\": 2.450000, \"HSEHLD_1_M\": 541, \"HSEHLD_1_F\": 809, \"MARHH_CHD\": 940, \"MARHH_NO_C\": 1230, \"MHH_CHILD\": 101, \"FHH_CHILD\": 450, \"FAMILIES\": 3018, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 5202, \"VACANT\": 657, \"OWNER_OCC\": 2831, \"RENTER_OCC\": 1714 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -100.40712500040847, 32.468146994073763 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Taylor\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"71948\", \"CAPITAL\": \"N\", \"AREALAND\": 13.532000, \"AREAWATER\": 0.030000, \"POP_CL\": 6, \"POP2000\": 13575, \"WHITE\": 9212, \"BLACK\": 1929, \"AMERI_ES\": 70, \"ASIAN\": 46, \"HAWN_PI\": 7, \"OTHER\": 2032, \"MULT_RACE\": 279, \"HISPANIC\": 4626, \"MALES\": 6692, \"FEMALES\": 6883, \"AGE_UNDER5\": 1075, \"AGE_5_17\": 2821, \"AGE_18_21\": 684, \"AGE_22_29\": 1555, \"AGE_30_39\": 1981, \"AGE_40_49\": 1863, \"AGE_50_64\": 1686, \"AGE_65_UP\": 1910, \"MED_AGE\": 33.400000, \"MED_AGE_M\": 31.600000, \"MED_AGE_F\": 35.400000, \"HOUSEHOLDS\": 4730, \"AVE_HH_SZ\": 2.740000, \"HSEHLD_1_M\": 388, \"HSEHLD_1_F\": 725, \"MARHH_CHD\": 1192, \"MARHH_NO_C\": 1294, \"MHH_CHILD\": 133, \"FHH_CHILD\": 420, \"FAMILIES\": 3429, \"AVE_FAM_SZ\": 3.240000, \"HSE_UNITS\": 5079, \"VACANT\": 349, \"OWNER_OCC\": 3152, \"RENTER_OCC\": 1578 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.416546000268113, 30.572370999772769 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Temple\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"72176\", \"CAPITAL\": \"N\", \"AREALAND\": 65.351000, \"AREAWATER\": 0.092000, \"POP_CL\": 7, \"POP2000\": 54514, \"WHITE\": 38030, \"BLACK\": 8988, \"AMERI_ES\": 280, \"ASIAN\": 833, \"HAWN_PI\": 50, \"OTHER\": 5030, \"MULT_RACE\": 1303, \"HISPANIC\": 9716, \"MALES\": 26082, \"FEMALES\": 28432, \"AGE_UNDER5\": 4230, \"AGE_5_17\": 10088, \"AGE_18_21\": 2925, \"AGE_22_29\": 6088, \"AGE_30_39\": 7622, \"AGE_40_49\": 7507, \"AGE_50_64\": 7419, \"AGE_65_UP\": 8635, \"MED_AGE\": 35.200000, \"MED_AGE_M\": 33.700000, \"MED_AGE_F\": 36.700000, \"HOUSEHOLDS\": 21543, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 2652, \"HSEHLD_1_F\": 3785, \"MARHH_CHD\": 4619, \"MARHH_NO_C\": 5805, \"MHH_CHILD\": 383, \"FHH_CHILD\": 1908, \"FAMILIES\": 14110, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 23511, \"VACANT\": 1968, \"OWNER_OCC\": 12042, \"RENTER_OCC\": 9501 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.362202000243229, 31.093677999777043 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Terrell\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"72284\", \"CAPITAL\": \"N\", \"AREALAND\": 18.315000, \"AREAWATER\": 0.336000, \"POP_CL\": 6, \"POP2000\": 13606, \"WHITE\": 7532, \"BLACK\": 4386, \"AMERI_ES\": 49, \"ASIAN\": 76, \"HAWN_PI\": 3, \"OTHER\": 1325, \"MULT_RACE\": 235, \"HISPANIC\": 2390, \"MALES\": 6531, \"FEMALES\": 7075, \"AGE_UNDER5\": 1068, \"AGE_5_17\": 2805, \"AGE_18_21\": 872, \"AGE_22_29\": 1521, \"AGE_30_39\": 1911, \"AGE_40_49\": 1756, \"AGE_50_64\": 1909, \"AGE_65_UP\": 1764, \"MED_AGE\": 32.800000, \"MED_AGE_M\": 30.700000, \"MED_AGE_F\": 35.200000, \"HOUSEHOLDS\": 4605, \"AVE_HH_SZ\": 2.770000, \"HSEHLD_1_M\": 402, \"HSEHLD_1_F\": 748, \"MARHH_CHD\": 1018, \"MARHH_NO_C\": 1167, \"MHH_CHILD\": 123, \"FHH_CHILD\": 494, \"FAMILIES\": 3291, \"AVE_FAM_SZ\": 3.300000, \"HSE_UNITS\": 5032, \"VACANT\": 427, \"OWNER_OCC\": 2675, \"RENTER_OCC\": 1930 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.28244400003841, 32.73752499995161 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Texarkana\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"72368\", \"CAPITAL\": \"N\", \"AREALAND\": 25.626000, \"AREAWATER\": 0.102000, \"POP_CL\": 6, \"POP2000\": 34782, \"WHITE\": 20583, \"BLACK\": 12885, \"AMERI_ES\": 119, \"ASIAN\": 254, \"HAWN_PI\": 17, \"OTHER\": 498, \"MULT_RACE\": 426, \"HISPANIC\": 1012, \"MALES\": 16380, \"FEMALES\": 18402, \"AGE_UNDER5\": 2462, \"AGE_5_17\": 6578, \"AGE_18_21\": 2101, \"AGE_22_29\": 3679, \"AGE_30_39\": 4766, \"AGE_40_49\": 4801, \"AGE_50_64\": 4922, \"AGE_65_UP\": 5473, \"MED_AGE\": 35.700000, \"MED_AGE_M\": 33.300000, \"MED_AGE_F\": 37.800000, \"HOUSEHOLDS\": 13569, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 1551, \"HSEHLD_1_F\": 2503, \"MARHH_CHD\": 2380, \"MARHH_NO_C\": 3393, \"MHH_CHILD\": 264, \"FHH_CHILD\": 1633, \"FAMILIES\": 8947, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 15105, \"VACANT\": 1536, \"OWNER_OCC\": 7970, \"RENTER_OCC\": 5599 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.067394, 33.437169999998972 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Texas City\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"72392\", \"CAPITAL\": \"N\", \"AREALAND\": 62.370000, \"AREAWATER\": 104.863000, \"POP_CL\": 6, \"POP2000\": 41521, \"WHITE\": 25224, \"BLACK\": 11407, \"AMERI_ES\": 207, \"ASIAN\": 365, \"HAWN_PI\": 20, \"OTHER\": 3417, \"MULT_RACE\": 881, \"HISPANIC\": 8520, \"MALES\": 19601, \"FEMALES\": 21920, \"AGE_UNDER5\": 2838, \"AGE_5_17\": 8267, \"AGE_18_21\": 2410, \"AGE_22_29\": 4262, \"AGE_30_39\": 5660, \"AGE_40_49\": 6374, \"AGE_50_64\": 6159, \"AGE_65_UP\": 5551, \"MED_AGE\": 35.500000, \"MED_AGE_M\": 34.100000, \"MED_AGE_F\": 36.700000, \"HOUSEHOLDS\": 15479, \"AVE_HH_SZ\": 2.620000, \"HSEHLD_1_M\": 1674, \"HSEHLD_1_F\": 2163, \"MARHH_CHD\": 3214, \"MARHH_NO_C\": 4303, \"MHH_CHILD\": 388, \"FHH_CHILD\": 1524, \"FAMILIES\": 10967, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 16715, \"VACANT\": 1236, \"OWNER_OCC\": 9803, \"RENTER_OCC\": 5676 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -94.933851000001511, 29.399982999997913 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"The Colony\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"72530\", \"CAPITAL\": \"N\", \"AREALAND\": 13.661000, \"AREAWATER\": 2.074000, \"POP_CL\": 6, \"POP2000\": 26531, \"WHITE\": 22409, \"BLACK\": 1375, \"AMERI_ES\": 188, \"ASIAN\": 447, \"HAWN_PI\": 12, \"OTHER\": 1405, \"MULT_RACE\": 695, \"HISPANIC\": 3519, \"MALES\": 13184, \"FEMALES\": 13347, \"AGE_UNDER5\": 2231, \"AGE_5_17\": 6783, \"AGE_18_21\": 1216, \"AGE_22_29\": 2670, \"AGE_30_39\": 5404, \"AGE_40_49\": 4753, \"AGE_50_64\": 2705, \"AGE_65_UP\": 769, \"MED_AGE\": 30.800000, \"MED_AGE_M\": 30.500000, \"MED_AGE_F\": 31.000000, \"HOUSEHOLDS\": 8462, \"AVE_HH_SZ\": 3.140000, \"HSEHLD_1_M\": 475, \"HSEHLD_1_F\": 493, \"MARHH_CHD\": 3707, \"MARHH_NO_C\": 2190, \"MHH_CHILD\": 230, \"FHH_CHILD\": 604, \"FAMILIES\": 7138, \"AVE_FAM_SZ\": 3.410000, \"HSE_UNITS\": 8812, \"VACANT\": 350, \"OWNER_OCC\": 6984, \"RENTER_OCC\": 1478 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.884659000107874, 33.090873999863859 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"The Woodlands\", \"CLASS\": \"CDP\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"72656\", \"CAPITAL\": \"N\", \"AREALAND\": 23.409000, \"AREAWATER\": 0.472000, \"POP_CL\": 7, \"POP2000\": 55649, \"WHITE\": 51399, \"BLACK\": 973, \"AMERI_ES\": 160, \"ASIAN\": 1556, \"HAWN_PI\": 30, \"OTHER\": 795, \"MULT_RACE\": 736, \"HISPANIC\": 3697, \"MALES\": 26796, \"FEMALES\": 28853, \"AGE_UNDER5\": 4091, \"AGE_5_17\": 13618, \"AGE_18_21\": 1749, \"AGE_22_29\": 3269, \"AGE_30_39\": 8462, \"AGE_40_49\": 11944, \"AGE_50_64\": 8307, \"AGE_65_UP\": 4209, \"MED_AGE\": 36.900000, \"MED_AGE_M\": 36.200000, \"MED_AGE_F\": 37.400000, \"HOUSEHOLDS\": 19881, \"AVE_HH_SZ\": 2.780000, \"HSEHLD_1_M\": 1315, \"HSEHLD_1_F\": 2474, \"MARHH_CHD\": 8114, \"MARHH_NO_C\": 5640, \"MHH_CHILD\": 229, \"FHH_CHILD\": 1019, \"FAMILIES\": 15551, \"AVE_FAM_SZ\": 3.210000, \"HSE_UNITS\": 21014, \"VACANT\": 1133, \"OWNER_OCC\": 15621, \"RENTER_OCC\": 4260 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.503795000007543, 30.177429999992171 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Tyler\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"74144\", \"CAPITAL\": \"N\", \"AREALAND\": 49.302000, \"AREAWATER\": 0.114000, \"POP_CL\": 7, \"POP2000\": 83650, \"WHITE\": 51795, \"BLACK\": 22275, \"AMERI_ES\": 287, \"ASIAN\": 806, \"HAWN_PI\": 32, \"OTHER\": 7076, \"MULT_RACE\": 1379, \"HISPANIC\": 13234, \"MALES\": 39184, \"FEMALES\": 44466, \"AGE_UNDER5\": 6183, \"AGE_5_17\": 15655, \"AGE_18_21\": 6021, \"AGE_22_29\": 9707, \"AGE_30_39\": 10756, \"AGE_40_49\": 11314, \"AGE_50_64\": 11273, \"AGE_65_UP\": 12741, \"MED_AGE\": 34.100000, \"MED_AGE_M\": 31.600000, \"MED_AGE_F\": 36.200000, \"HOUSEHOLDS\": 32525, \"AVE_HH_SZ\": 2.480000, \"HSEHLD_1_M\": 3592, \"HSEHLD_1_F\": 6234, \"MARHH_CHD\": 6652, \"MARHH_NO_C\": 8545, \"MHH_CHILD\": 526, \"FHH_CHILD\": 2847, \"FAMILIES\": 21064, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 35337, \"VACANT\": 2812, \"OWNER_OCC\": 18283, \"RENTER_OCC\": 14242 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.299927000003976, 32.334248999993754 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Universal City\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"74408\", \"CAPITAL\": \"N\", \"AREALAND\": 5.650000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14849, \"WHITE\": 11960, \"BLACK\": 954, \"AMERI_ES\": 112, \"ASIAN\": 428, \"HAWN_PI\": 40, \"OTHER\": 832, \"MULT_RACE\": 523, \"HISPANIC\": 3206, \"MALES\": 7296, \"FEMALES\": 7553, \"AGE_UNDER5\": 943, \"AGE_5_17\": 2727, \"AGE_18_21\": 723, \"AGE_22_29\": 1507, \"AGE_30_39\": 2222, \"AGE_40_49\": 2264, \"AGE_50_64\": 2680, \"AGE_65_UP\": 1783, \"MED_AGE\": 37.200000, \"MED_AGE_M\": 36.300000, \"MED_AGE_F\": 38.100000, \"HOUSEHOLDS\": 5995, \"AVE_HH_SZ\": 2.470000, \"HSEHLD_1_M\": 719, \"HSEHLD_1_F\": 759, \"MARHH_CHD\": 1308, \"MARHH_NO_C\": 2006, \"MHH_CHILD\": 126, \"FHH_CHILD\": 450, \"FAMILIES\": 4223, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 6331, \"VACANT\": 336, \"OWNER_OCC\": 3562, \"RENTER_OCC\": 2433 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -98.303228000810648, 29.552147999388374 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"University Park\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"74492\", \"CAPITAL\": \"N\", \"AREALAND\": 3.720000, \"AREAWATER\": 0.006000, \"POP_CL\": 6, \"POP2000\": 23324, \"WHITE\": 22002, \"BLACK\": 333, \"AMERI_ES\": 52, \"ASIAN\": 520, \"HAWN_PI\": 4, \"OTHER\": 217, \"MULT_RACE\": 196, \"HISPANIC\": 723, \"MALES\": 10863, \"FEMALES\": 12461, \"AGE_UNDER5\": 1422, \"AGE_5_17\": 5148, \"AGE_18_21\": 3131, \"AGE_22_29\": 1674, \"AGE_30_39\": 2946, \"AGE_40_49\": 4108, \"AGE_50_64\": 3052, \"AGE_65_UP\": 1843, \"MED_AGE\": 31.200000, \"MED_AGE_M\": 30.000000, \"MED_AGE_F\": 32.000000, \"HOUSEHOLDS\": 8005, \"AVE_HH_SZ\": 2.590000, \"HSEHLD_1_M\": 746, \"HSEHLD_1_F\": 1461, \"MARHH_CHD\": 2741, \"MARHH_NO_C\": 1798, \"MHH_CHILD\": 89, \"FHH_CHILD\": 437, \"FAMILIES\": 5292, \"AVE_FAM_SZ\": 3.260000, \"HSE_UNITS\": 8492, \"VACANT\": 487, \"OWNER_OCC\": 5487, \"RENTER_OCC\": 2518 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.79199100009437, 32.849543999884816 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Uvalde\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"74588\", \"CAPITAL\": \"N\", \"AREALAND\": 6.724000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14929, \"WHITE\": 10938, \"BLACK\": 70, \"AMERI_ES\": 93, \"ASIAN\": 72, \"HAWN_PI\": 10, \"OTHER\": 3302, \"MULT_RACE\": 444, \"HISPANIC\": 11268, \"MALES\": 7083, \"FEMALES\": 7846, \"AGE_UNDER5\": 1341, \"AGE_5_17\": 3494, \"AGE_18_21\": 897, \"AGE_22_29\": 1498, \"AGE_30_39\": 1946, \"AGE_40_49\": 1751, \"AGE_50_64\": 1908, \"AGE_65_UP\": 2094, \"MED_AGE\": 31.000000, \"MED_AGE_M\": 29.500000, \"MED_AGE_F\": 32.700000, \"HOUSEHOLDS\": 4796, \"AVE_HH_SZ\": 3.020000, \"HSEHLD_1_M\": 355, \"HSEHLD_1_F\": 607, \"MARHH_CHD\": 1404, \"MARHH_NO_C\": 1263, \"MHH_CHILD\": 138, \"FHH_CHILD\": 461, \"FAMILIES\": 3715, \"AVE_FAM_SZ\": 3.500000, \"HSE_UNITS\": 5313, \"VACANT\": 517, \"OWNER_OCC\": 3175, \"RENTER_OCC\": 1621 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -99.789644002648004, 29.214312997403532 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Vernon\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"75308\", \"CAPITAL\": \"N\", \"AREALAND\": 8.102000, \"AREAWATER\": 0.007000, \"POP_CL\": 6, \"POP2000\": 11660, \"WHITE\": 8900, \"BLACK\": 1125, \"AMERI_ES\": 80, \"ASIAN\": 83, \"HAWN_PI\": 2, \"OTHER\": 1250, \"MULT_RACE\": 220, \"HISPANIC\": 2611, \"MALES\": 5599, \"FEMALES\": 6061, \"AGE_UNDER5\": 806, \"AGE_5_17\": 2296, \"AGE_18_21\": 759, \"AGE_22_29\": 1102, \"AGE_30_39\": 1433, \"AGE_40_49\": 1545, \"AGE_50_64\": 1710, \"AGE_65_UP\": 2009, \"MED_AGE\": 36.400000, \"MED_AGE_M\": 34.300000, \"MED_AGE_F\": 38.600000, \"HOUSEHOLDS\": 4506, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 504, \"HSEHLD_1_F\": 900, \"MARHH_CHD\": 969, \"MARHH_NO_C\": 1270, \"MHH_CHILD\": 109, \"FHH_CHILD\": 334, \"FAMILIES\": 2947, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 5166, \"VACANT\": 660, \"OWNER_OCC\": 2890, \"RENTER_OCC\": 1616 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -99.290473000803885, 34.15111599735198 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Victoria\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"75428\", \"CAPITAL\": \"N\", \"AREALAND\": 32.967000, \"AREAWATER\": 0.152000, \"POP_CL\": 7, \"POP2000\": 60603, \"WHITE\": 43140, \"BLACK\": 4599, \"AMERI_ES\": 312, \"ASIAN\": 612, \"HAWN_PI\": 24, \"OTHER\": 10490, \"MULT_RACE\": 1426, \"HISPANIC\": 26012, \"MALES\": 29140, \"FEMALES\": 31463, \"AGE_UNDER5\": 4763, \"AGE_5_17\": 12677, \"AGE_18_21\": 3472, \"AGE_22_29\": 6380, \"AGE_30_39\": 8368, \"AGE_40_49\": 8828, \"AGE_50_64\": 8480, \"AGE_65_UP\": 7635, \"MED_AGE\": 33.900000, \"MED_AGE_M\": 32.300000, \"MED_AGE_F\": 35.300000, \"HOUSEHOLDS\": 22129, \"AVE_HH_SZ\": 2.680000, \"HSEHLD_1_M\": 2159, \"HSEHLD_1_F\": 3271, \"MARHH_CHD\": 5412, \"MARHH_NO_C\": 6184, \"MHH_CHILD\": 549, \"FHH_CHILD\": 2033, \"FAMILIES\": 15756, \"AVE_FAM_SZ\": 3.210000, \"HSE_UNITS\": 24192, \"VACANT\": 2063, \"OWNER_OCC\": 13461, \"RENTER_OCC\": 8668 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.993462000152064, 28.816865999898205 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Vidor\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"75476\", \"CAPITAL\": \"N\", \"AREALAND\": 10.557000, \"AREAWATER\": 0.013000, \"POP_CL\": 6, \"POP2000\": 11440, \"WHITE\": 11135, \"BLACK\": 8, \"AMERI_ES\": 59, \"ASIAN\": 22, \"HAWN_PI\": 3, \"OTHER\": 75, \"MULT_RACE\": 138, \"HISPANIC\": 399, \"MALES\": 5467, \"FEMALES\": 5973, \"AGE_UNDER5\": 802, \"AGE_5_17\": 2255, \"AGE_18_21\": 687, \"AGE_22_29\": 1172, \"AGE_30_39\": 1567, \"AGE_40_49\": 1634, \"AGE_50_64\": 1715, \"AGE_65_UP\": 1608, \"MED_AGE\": 35.400000, \"MED_AGE_M\": 33.300000, \"MED_AGE_F\": 37.200000, \"HOUSEHOLDS\": 4222, \"AVE_HH_SZ\": 2.660000, \"HSEHLD_1_M\": 337, \"HSEHLD_1_F\": 590, \"MARHH_CHD\": 1033, \"MARHH_NO_C\": 1346, \"MHH_CHILD\": 115, \"FHH_CHILD\": 319, \"FAMILIES\": 3160, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 4652, \"VACANT\": 430, \"OWNER_OCC\": 3203, \"RENTER_OCC\": 1019 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -93.996292, 30.131491999999234 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Waco\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"76000\", \"CAPITAL\": \"N\", \"AREALAND\": 84.201000, \"AREAWATER\": 11.322000, \"POP_CL\": 8, \"POP2000\": 113726, \"WHITE\": 69119, \"BLACK\": 25754, \"AMERI_ES\": 576, \"ASIAN\": 1567, \"HAWN_PI\": 61, \"OTHER\": 14084, \"MULT_RACE\": 2565, \"HISPANIC\": 26885, \"MALES\": 54295, \"FEMALES\": 59431, \"AGE_UNDER5\": 8611, \"AGE_5_17\": 20249, \"AGE_18_21\": 15734, \"AGE_22_29\": 15455, \"AGE_30_39\": 13624, \"AGE_40_49\": 12639, \"AGE_50_64\": 12165, \"AGE_65_UP\": 15249, \"MED_AGE\": 27.900000, \"MED_AGE_M\": 26.400000, \"MED_AGE_F\": 29.600000, \"HOUSEHOLDS\": 42279, \"AVE_HH_SZ\": 2.490000, \"HSEHLD_1_M\": 5438, \"HSEHLD_1_F\": 7728, \"MARHH_CHD\": 7339, \"MARHH_NO_C\": 8902, \"MHH_CHILD\": 813, \"FHH_CHILD\": 4307, \"FAMILIES\": 24794, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 45819, \"VACANT\": 3540, \"OWNER_OCC\": 19608, \"RENTER_OCC\": 22671 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.155930000177506, 31.551515999825089 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Watauga\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"76672\", \"CAPITAL\": \"N\", \"AREALAND\": 4.167000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 21908, \"WHITE\": 19072, \"BLACK\": 498, \"AMERI_ES\": 140, \"ASIAN\": 809, \"HAWN_PI\": 43, \"OTHER\": 857, \"MULT_RACE\": 489, \"HISPANIC\": 2335, \"MALES\": 10840, \"FEMALES\": 11068, \"AGE_UNDER5\": 1881, \"AGE_5_17\": 5195, \"AGE_18_21\": 961, \"AGE_22_29\": 2230, \"AGE_30_39\": 4375, \"AGE_40_49\": 3553, \"AGE_50_64\": 2682, \"AGE_65_UP\": 1031, \"MED_AGE\": 31.600000, \"MED_AGE_M\": 31.200000, \"MED_AGE_F\": 31.900000, \"HOUSEHOLDS\": 7145, \"AVE_HH_SZ\": 3.040000, \"HSEHLD_1_M\": 440, \"HSEHLD_1_F\": 473, \"MARHH_CHD\": 2940, \"MARHH_NO_C\": 1975, \"MHH_CHILD\": 175, \"FHH_CHILD\": 437, \"FAMILIES\": 5946, \"AVE_FAM_SZ\": 3.330000, \"HSE_UNITS\": 7275, \"VACANT\": 130, \"OWNER_OCC\": 6106, \"RENTER_OCC\": 1039 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.249122000187867, 32.871415999772246 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Waxahachie\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"76816\", \"CAPITAL\": \"N\", \"AREALAND\": 39.965000, \"AREAWATER\": 1.203000, \"POP_CL\": 6, \"POP2000\": 21426, \"WHITE\": 15094, \"BLACK\": 3663, \"AMERI_ES\": 163, \"ASIAN\": 85, \"HAWN_PI\": 1, \"OTHER\": 2000, \"MULT_RACE\": 420, \"HISPANIC\": 4229, \"MALES\": 10372, \"FEMALES\": 11054, \"AGE_UNDER5\": 1616, \"AGE_5_17\": 4152, \"AGE_18_21\": 1766, \"AGE_22_29\": 2684, \"AGE_30_39\": 2899, \"AGE_40_49\": 2806, \"AGE_50_64\": 2860, \"AGE_65_UP\": 2643, \"MED_AGE\": 31.700000, \"MED_AGE_M\": 30.200000, \"MED_AGE_F\": 33.500000, \"HOUSEHOLDS\": 7325, \"AVE_HH_SZ\": 2.730000, \"HSEHLD_1_M\": 594, \"HSEHLD_1_F\": 1009, \"MARHH_CHD\": 1853, \"MARHH_NO_C\": 2152, \"MHH_CHILD\": 168, \"FHH_CHILD\": 624, \"FAMILIES\": 5401, \"AVE_FAM_SZ\": 3.180000, \"HSE_UNITS\": 7909, \"VACANT\": 584, \"OWNER_OCC\": 4495, \"RENTER_OCC\": 2830 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.847291000105855, 32.399860999879856 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Weatherford\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"76864\", \"CAPITAL\": \"N\", \"AREALAND\": 20.881000, \"AREAWATER\": 1.781000, \"POP_CL\": 6, \"POP2000\": 19000, \"WHITE\": 17271, \"BLACK\": 394, \"AMERI_ES\": 163, \"ASIAN\": 128, \"HAWN_PI\": 5, \"OTHER\": 771, \"MULT_RACE\": 268, \"HISPANIC\": 1943, \"MALES\": 9043, \"FEMALES\": 9957, \"AGE_UNDER5\": 1260, \"AGE_5_17\": 3481, \"AGE_18_21\": 1339, \"AGE_22_29\": 1840, \"AGE_30_39\": 2526, \"AGE_40_49\": 2544, \"AGE_50_64\": 2887, \"AGE_65_UP\": 3123, \"MED_AGE\": 36.400000, \"MED_AGE_M\": 33.400000, \"MED_AGE_F\": 39.200000, \"HOUSEHOLDS\": 7442, \"AVE_HH_SZ\": 2.450000, \"HSEHLD_1_M\": 692, \"HSEHLD_1_F\": 1385, \"MARHH_CHD\": 1696, \"MARHH_NO_C\": 2238, \"MHH_CHILD\": 146, \"FHH_CHILD\": 517, \"FAMILIES\": 5043, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 8232, \"VACANT\": 790, \"OWNER_OCC\": 4746, \"RENTER_OCC\": 2696 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.784997000374844, 32.759237999541504 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wells Branch\", \"CLASS\": \"CDP\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"77196\", \"CAPITAL\": \"N\", \"AREALAND\": 2.529000, \"AREAWATER\": 0.006000, \"POP_CL\": 6, \"POP2000\": 11271, \"WHITE\": 8036, \"BLACK\": 1088, \"AMERI_ES\": 45, \"ASIAN\": 1081, \"HAWN_PI\": 19, \"OTHER\": 668, \"MULT_RACE\": 334, \"HISPANIC\": 1880, \"MALES\": 5666, \"FEMALES\": 5605, \"AGE_UNDER5\": 801, \"AGE_5_17\": 1448, \"AGE_18_21\": 595, \"AGE_22_29\": 2995, \"AGE_30_39\": 2684, \"AGE_40_49\": 1632, \"AGE_50_64\": 865, \"AGE_65_UP\": 251, \"MED_AGE\": 29.500000, \"MED_AGE_M\": 29.500000, \"MED_AGE_F\": 29.500000, \"HOUSEHOLDS\": 5490, \"AVE_HH_SZ\": 2.050000, \"HSEHLD_1_M\": 1224, \"HSEHLD_1_F\": 1023, \"MARHH_CHD\": 968, \"MARHH_NO_C\": 999, \"MHH_CHILD\": 71, \"FHH_CHILD\": 325, \"FAMILIES\": 2579, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 5625, \"VACANT\": 135, \"OWNER_OCC\": 1807, \"RENTER_OCC\": 3683 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.678469000380019, 30.443996999683179 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Weslaco\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"77272\", \"CAPITAL\": \"N\", \"AREALAND\": 12.687000, \"AREAWATER\": 0.070000, \"POP_CL\": 6, \"POP2000\": 26935, \"WHITE\": 20179, \"BLACK\": 72, \"AMERI_ES\": 133, \"ASIAN\": 308, \"HAWN_PI\": 15, \"OTHER\": 5638, \"MULT_RACE\": 590, \"HISPANIC\": 22560, \"MALES\": 12598, \"FEMALES\": 14337, \"AGE_UNDER5\": 2550, \"AGE_5_17\": 6008, \"AGE_18_21\": 1541, \"AGE_22_29\": 3052, \"AGE_30_39\": 3536, \"AGE_40_49\": 2974, \"AGE_50_64\": 3198, \"AGE_65_UP\": 4076, \"MED_AGE\": 30.800000, \"MED_AGE_M\": 29.200000, \"MED_AGE_F\": 32.100000, \"HOUSEHOLDS\": 8295, \"AVE_HH_SZ\": 3.210000, \"HSEHLD_1_M\": 529, \"HSEHLD_1_F\": 1001, \"MARHH_CHD\": 2522, \"MARHH_NO_C\": 2385, \"MHH_CHILD\": 134, \"FHH_CHILD\": 753, \"FAMILIES\": 6606, \"AVE_FAM_SZ\": 3.680000, \"HSE_UNITS\": 10230, \"VACANT\": 1935, \"OWNER_OCC\": 5423, \"RENTER_OCC\": 2872 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.987374000601676, 26.15912999971588 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"West Odessa\", \"CLASS\": \"CDP\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"77728\", \"CAPITAL\": \"N\", \"AREALAND\": 62.449000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 17799, \"WHITE\": 12751, \"BLACK\": 131, \"AMERI_ES\": 193, \"ASIAN\": 16, \"HAWN_PI\": 11, \"OTHER\": 4250, \"MULT_RACE\": 447, \"HISPANIC\": 8552, \"MALES\": 8883, \"FEMALES\": 8916, \"AGE_UNDER5\": 1428, \"AGE_5_17\": 4466, \"AGE_18_21\": 1101, \"AGE_22_29\": 1800, \"AGE_30_39\": 2537, \"AGE_40_49\": 2690, \"AGE_50_64\": 2403, \"AGE_65_UP\": 1374, \"MED_AGE\": 30.500000, \"MED_AGE_M\": 30.000000, \"MED_AGE_F\": 30.900000, \"HOUSEHOLDS\": 5742, \"AVE_HH_SZ\": 3.090000, \"HSEHLD_1_M\": 491, \"HSEHLD_1_F\": 427, \"MARHH_CHD\": 2033, \"MARHH_NO_C\": 1740, \"MHH_CHILD\": 179, \"FHH_CHILD\": 371, \"FAMILIES\": 4657, \"AVE_FAM_SZ\": 3.460000, \"HSE_UNITS\": 6393, \"VACANT\": 651, \"OWNER_OCC\": 4925, \"RENTER_OCC\": 817 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -102.482743959363333, 31.841977977991561 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"West University Place\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"77956\", \"CAPITAL\": \"N\", \"AREALAND\": 2.010000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14211, \"WHITE\": 13126, \"BLACK\": 71, \"AMERI_ES\": 10, \"ASIAN\": 673, \"HAWN_PI\": 3, \"OTHER\": 128, \"MULT_RACE\": 200, \"HISPANIC\": 671, \"MALES\": 6935, \"FEMALES\": 7276, \"AGE_UNDER5\": 1224, \"AGE_5_17\": 3013, \"AGE_18_21\": 274, \"AGE_22_29\": 637, \"AGE_30_39\": 2148, \"AGE_40_49\": 3205, \"AGE_50_64\": 2632, \"AGE_65_UP\": 1078, \"MED_AGE\": 39.300000, \"MED_AGE_M\": 38.800000, \"MED_AGE_F\": 39.700000, \"HOUSEHOLDS\": 5286, \"AVE_HH_SZ\": 2.690000, \"HSEHLD_1_M\": 377, \"HSEHLD_1_F\": 646, \"MARHH_CHD\": 2029, \"MARHH_NO_C\": 1617, \"MHH_CHILD\": 52, \"FHH_CHILD\": 190, \"FAMILIES\": 4059, \"AVE_FAM_SZ\": 3.110000, \"HSE_UNITS\": 5543, \"VACANT\": 257, \"OWNER_OCC\": 4790, \"RENTER_OCC\": 496 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -95.432992000006394, 29.715928999993626 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"White Settlement\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"78544\", \"CAPITAL\": \"N\", \"AREALAND\": 4.872000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14831, \"WHITE\": 12730, \"BLACK\": 600, \"AMERI_ES\": 86, \"ASIAN\": 217, \"HAWN_PI\": 11, \"OTHER\": 669, \"MULT_RACE\": 518, \"HISPANIC\": 2017, \"MALES\": 7155, \"FEMALES\": 7676, \"AGE_UNDER5\": 1135, \"AGE_5_17\": 2915, \"AGE_18_21\": 873, \"AGE_22_29\": 1711, \"AGE_30_39\": 2217, \"AGE_40_49\": 2124, \"AGE_50_64\": 2013, \"AGE_65_UP\": 1843, \"MED_AGE\": 33.800000, \"MED_AGE_M\": 32.200000, \"MED_AGE_F\": 35.300000, \"HOUSEHOLDS\": 5614, \"AVE_HH_SZ\": 2.550000, \"HSEHLD_1_M\": 696, \"HSEHLD_1_F\": 810, \"MARHH_CHD\": 1205, \"MARHH_NO_C\": 1340, \"MHH_CHILD\": 173, \"FHH_CHILD\": 579, \"FAMILIES\": 3791, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 6027, \"VACANT\": 413, \"OWNER_OCC\": 3140, \"RENTER_OCC\": 2474 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -97.460442000251703, 32.759279999698784 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wichita Falls\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"79000\", \"CAPITAL\": \"N\", \"AREALAND\": 70.686000, \"AREAWATER\": 0.024000, \"POP_CL\": 8, \"POP2000\": 104197, \"WHITE\": 78258, \"BLACK\": 12920, \"AMERI_ES\": 897, \"ASIAN\": 2288, \"HAWN_PI\": 103, \"OTHER\": 6656, \"MULT_RACE\": 3075, \"HISPANIC\": 14570, \"MALES\": 53657, \"FEMALES\": 50540, \"AGE_UNDER5\": 7449, \"AGE_5_17\": 18244, \"AGE_18_21\": 10347, \"AGE_22_29\": 13259, \"AGE_30_39\": 15324, \"AGE_40_49\": 14018, \"AGE_50_64\": 12748, \"AGE_65_UP\": 12808, \"MED_AGE\": 31.900000, \"MED_AGE_M\": 29.800000, \"MED_AGE_F\": 34.600000, \"HOUSEHOLDS\": 37970, \"AVE_HH_SZ\": 2.460000, \"HSEHLD_1_M\": 4647, \"HSEHLD_1_F\": 6240, \"MARHH_CHD\": 8729, \"MARHH_NO_C\": 10146, \"MHH_CHILD\": 799, \"FHH_CHILD\": 3035, \"FAMILIES\": 25003, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 41916, \"VACANT\": 3946, \"OWNER_OCC\": 21934, \"RENTER_OCC\": 16036 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -98.514881000656771, 33.89704699881235 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wylie\", \"CLASS\": \"city\", \"ST\": \"TX\", \"STFIPS\": \"48\", \"PLACEFIP\": \"80356\", \"CAPITAL\": \"N\", \"AREALAND\": 19.369000, \"AREAWATER\": 13.932000, \"POP_CL\": 6, \"POP2000\": 15132, \"WHITE\": 13687, \"BLACK\": 313, \"AMERI_ES\": 106, \"ASIAN\": 91, \"HAWN_PI\": 4, \"OTHER\": 650, \"MULT_RACE\": 281, \"HISPANIC\": 1580, \"MALES\": 7468, \"FEMALES\": 7664, \"AGE_UNDER5\": 1418, \"AGE_5_17\": 3636, \"AGE_18_21\": 645, \"AGE_22_29\": 1674, \"AGE_30_39\": 3146, \"AGE_40_49\": 2215, \"AGE_50_64\": 1512, \"AGE_65_UP\": 886, \"MED_AGE\": 30.700000, \"MED_AGE_M\": 30.300000, \"MED_AGE_F\": 31.000000, \"HOUSEHOLDS\": 5085, \"AVE_HH_SZ\": 2.960000, \"HSEHLD_1_M\": 364, \"HSEHLD_1_F\": 414, \"MARHH_CHD\": 2052, \"MARHH_NO_C\": 1248, \"MHH_CHILD\": 148, \"FHH_CHILD\": 376, \"FAMILIES\": 4107, \"AVE_FAM_SZ\": 3.290000, \"HSE_UNITS\": 5326, \"VACANT\": 241, \"OWNER_OCC\": 4207, \"RENTER_OCC\": 878 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -96.528910000059753, 33.018726999923665 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"American Fork\", \"CLASS\": \"city\", \"ST\": \"UT\", \"STFIPS\": \"49\", \"PLACEFIP\": \"01310\", \"CAPITAL\": \"N\", \"AREALAND\": 7.538000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 21941, \"WHITE\": 20896, \"BLACK\": 35, \"AMERI_ES\": 92, \"ASIAN\": 143, \"HAWN_PI\": 53, \"OTHER\": 423, \"MULT_RACE\": 299, \"HISPANIC\": 1011, \"MALES\": 10970, \"FEMALES\": 10971, \"AGE_UNDER5\": 2648, \"AGE_5_17\": 5760, \"AGE_18_21\": 1488, \"AGE_22_29\": 2770, \"AGE_30_39\": 3083, \"AGE_40_49\": 2405, \"AGE_50_64\": 2073, \"AGE_65_UP\": 1714, \"MED_AGE\": 24.900000, \"MED_AGE_M\": 24.000000, \"MED_AGE_F\": 25.700000, \"HOUSEHOLDS\": 5934, \"AVE_HH_SZ\": 3.640000, \"HSEHLD_1_M\": 242, \"HSEHLD_1_F\": 453, \"MARHH_CHD\": 2835, \"MARHH_NO_C\": 1626, \"MHH_CHILD\": 80, \"FHH_CHILD\": 306, \"FAMILIES\": 5111, \"AVE_FAM_SZ\": 3.980000, \"HSE_UNITS\": 6108, \"VACANT\": 174, \"OWNER_OCC\": 4622, \"RENTER_OCC\": 1312 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.79185975692674, 40.384205879841332 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bountiful\", \"CLASS\": \"city\", \"ST\": \"UT\", \"STFIPS\": \"49\", \"PLACEFIP\": \"07690\", \"CAPITAL\": \"N\", \"AREALAND\": 13.474000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 41301, \"WHITE\": 39469, \"BLACK\": 98, \"AMERI_ES\": 113, \"ASIAN\": 474, \"HAWN_PI\": 133, \"OTHER\": 461, \"MULT_RACE\": 553, \"HISPANIC\": 1197, \"MALES\": 20056, \"FEMALES\": 21245, \"AGE_UNDER5\": 3303, \"AGE_5_17\": 8943, \"AGE_18_21\": 2717, \"AGE_22_29\": 4595, \"AGE_30_39\": 4654, \"AGE_40_49\": 5135, \"AGE_50_64\": 6036, \"AGE_65_UP\": 5918, \"MED_AGE\": 32.500000, \"MED_AGE_M\": 30.600000, \"MED_AGE_F\": 34.400000, \"HOUSEHOLDS\": 13341, \"AVE_HH_SZ\": 3.050000, \"HSEHLD_1_M\": 776, \"HSEHLD_1_F\": 1447, \"MARHH_CHD\": 4301, \"MARHH_NO_C\": 4949, \"MHH_CHILD\": 163, \"FHH_CHILD\": 624, \"FAMILIES\": 10766, \"AVE_FAM_SZ\": 3.460000, \"HSE_UNITS\": 13819, \"VACANT\": 478, \"OWNER_OCC\": 10363, \"RENTER_OCC\": 2978 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.871442143452555, 40.879651252524361 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Brigham City\", \"CLASS\": \"city\", \"ST\": \"UT\", \"STFIPS\": \"49\", \"PLACEFIP\": \"08460\", \"CAPITAL\": \"N\", \"AREALAND\": 14.314000, \"AREAWATER\": 0.022000, \"POP_CL\": 6, \"POP2000\": 17411, \"WHITE\": 15890, \"BLACK\": 41, \"AMERI_ES\": 283, \"ASIAN\": 134, \"HAWN_PI\": 18, \"OTHER\": 709, \"MULT_RACE\": 336, \"HISPANIC\": 1335, \"MALES\": 8745, \"FEMALES\": 8666, \"AGE_UNDER5\": 1607, \"AGE_5_17\": 4353, \"AGE_18_21\": 1168, \"AGE_22_29\": 1826, \"AGE_30_39\": 2161, \"AGE_40_49\": 2148, \"AGE_50_64\": 2033, \"AGE_65_UP\": 2115, \"MED_AGE\": 28.800000, \"MED_AGE_M\": 27.700000, \"MED_AGE_F\": 30.200000, \"HOUSEHOLDS\": 5526, \"AVE_HH_SZ\": 3.090000, \"HSEHLD_1_M\": 412, \"HSEHLD_1_F\": 582, \"MARHH_CHD\": 1980, \"MARHH_NO_C\": 1687, \"MHH_CHILD\": 133, \"FHH_CHILD\": 358, \"FAMILIES\": 4410, \"AVE_FAM_SZ\": 3.530000, \"HSE_UNITS\": 5838, \"VACANT\": 312, \"OWNER_OCC\": 4142, \"RENTER_OCC\": 1384 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -112.014887156060269, 41.510198946986414 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Canyon Rim\", \"CLASS\": \"CDP\", \"ST\": \"UT\", \"STFIPS\": \"49\", \"PLACEFIP\": \"10390\", \"CAPITAL\": \"N\", \"AREALAND\": 2.072000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10428, \"WHITE\": 9946, \"BLACK\": 56, \"AMERI_ES\": 29, \"ASIAN\": 163, \"HAWN_PI\": 33, \"OTHER\": 77, \"MULT_RACE\": 124, \"HISPANIC\": 250, \"MALES\": 5100, \"FEMALES\": 5328, \"AGE_UNDER5\": 782, \"AGE_5_17\": 1836, \"AGE_18_21\": 556, \"AGE_22_29\": 1318, \"AGE_30_39\": 1491, \"AGE_40_49\": 1402, \"AGE_50_64\": 1245, \"AGE_65_UP\": 1798, \"MED_AGE\": 34.800000, \"MED_AGE_M\": 32.800000, \"MED_AGE_F\": 37.000000, \"HOUSEHOLDS\": 3936, \"AVE_HH_SZ\": 2.650000, \"HSEHLD_1_M\": 305, \"HSEHLD_1_F\": 591, \"MARHH_CHD\": 972, \"MARHH_NO_C\": 1304, \"MHH_CHILD\": 44, \"FHH_CHILD\": 170, \"FAMILIES\": 2773, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 4091, \"VACANT\": 155, \"OWNER_OCC\": 3008, \"RENTER_OCC\": 928 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.825092878315246, 40.706510043702906 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cedar City\", \"CLASS\": \"city\", \"ST\": \"UT\", \"STFIPS\": \"49\", \"PLACEFIP\": \"11320\", \"CAPITAL\": \"N\", \"AREALAND\": 20.089000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 20527, \"WHITE\": 18897, \"BLACK\": 97, \"AMERI_ES\": 519, \"ASIAN\": 227, \"HAWN_PI\": 67, \"OTHER\": 339, \"MULT_RACE\": 381, \"HISPANIC\": 850, \"MALES\": 10033, \"FEMALES\": 10494, \"AGE_UNDER5\": 1824, \"AGE_5_17\": 3969, \"AGE_18_21\": 3414, \"AGE_22_29\": 3845, \"AGE_30_39\": 1975, \"AGE_40_49\": 1997, \"AGE_50_64\": 1894, \"AGE_65_UP\": 1609, \"MED_AGE\": 23.300000, \"MED_AGE_M\": 23.700000, \"MED_AGE_F\": 22.700000, \"HOUSEHOLDS\": 6486, \"AVE_HH_SZ\": 3.070000, \"HSEHLD_1_M\": 467, \"HSEHLD_1_F\": 589, \"MARHH_CHD\": 2029, \"MARHH_NO_C\": 1849, \"MHH_CHILD\": 111, \"FHH_CHILD\": 391, \"FAMILIES\": 4683, \"AVE_FAM_SZ\": 3.370000, \"HSE_UNITS\": 7109, \"VACANT\": 623, \"OWNER_OCC\": 3573, \"RENTER_OCC\": 2913 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -113.074237227291192, 37.682618519899883 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Centerville\", \"CLASS\": \"city\", \"ST\": \"UT\", \"STFIPS\": \"49\", \"PLACEFIP\": \"11980\", \"CAPITAL\": \"N\", \"AREALAND\": 6.037000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14585, \"WHITE\": 14156, \"BLACK\": 33, \"AMERI_ES\": 23, \"ASIAN\": 109, \"HAWN_PI\": 34, \"OTHER\": 88, \"MULT_RACE\": 142, \"HISPANIC\": 285, \"MALES\": 7255, \"FEMALES\": 7330, \"AGE_UNDER5\": 1186, \"AGE_5_17\": 4056, \"AGE_18_21\": 1060, \"AGE_22_29\": 1424, \"AGE_30_39\": 1722, \"AGE_40_49\": 2222, \"AGE_50_64\": 1891, \"AGE_65_UP\": 1024, \"MED_AGE\": 27.300000, \"MED_AGE_M\": 25.400000, \"MED_AGE_F\": 29.200000, \"HOUSEHOLDS\": 4138, \"AVE_HH_SZ\": 3.520000, \"HSEHLD_1_M\": 169, \"HSEHLD_1_F\": 340, \"MARHH_CHD\": 1922, \"MARHH_NO_C\": 1227, \"MHH_CHILD\": 45, \"FHH_CHILD\": 164, \"FAMILIES\": 3546, \"AVE_FAM_SZ\": 3.880000, \"HSE_UNITS\": 4280, \"VACANT\": 142, \"OWNER_OCC\": 3700, \"RENTER_OCC\": 438 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.879974340124562, 40.926830293015371 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Clearfield\", \"CLASS\": \"city\", \"ST\": \"UT\", \"STFIPS\": \"49\", \"PLACEFIP\": \"13850\", \"CAPITAL\": \"N\", \"AREALAND\": 7.749000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 25974, \"WHITE\": 21605, \"BLACK\": 938, \"AMERI_ES\": 418, \"ASIAN\": 731, \"HAWN_PI\": 74, \"OTHER\": 1256, \"MULT_RACE\": 952, \"HISPANIC\": 2747, \"MALES\": 13178, \"FEMALES\": 12796, \"AGE_UNDER5\": 3156, \"AGE_5_17\": 6241, \"AGE_18_21\": 2427, \"AGE_22_29\": 4306, \"AGE_30_39\": 3914, \"AGE_40_49\": 2606, \"AGE_50_64\": 1841, \"AGE_65_UP\": 1483, \"MED_AGE\": 24.000000, \"MED_AGE_M\": 23.400000, \"MED_AGE_F\": 24.600000, \"HOUSEHOLDS\": 7921, \"AVE_HH_SZ\": 3.120000, \"HSEHLD_1_M\": 661, \"HSEHLD_1_F\": 627, \"MARHH_CHD\": 3045, \"MARHH_NO_C\": 1739, \"MHH_CHILD\": 244, \"FHH_CHILD\": 845, \"FAMILIES\": 6262, \"AVE_FAM_SZ\": 3.510000, \"HSE_UNITS\": 8374, \"VACANT\": 453, \"OWNER_OCC\": 4362, \"RENTER_OCC\": 3559 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -112.024060532052928, 41.106517950220677 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Clinton\", \"CLASS\": \"city\", \"ST\": \"UT\", \"STFIPS\": \"49\", \"PLACEFIP\": \"14290\", \"CAPITAL\": \"N\", \"AREALAND\": 5.505000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12585, \"WHITE\": 11370, \"BLACK\": 127, \"AMERI_ES\": 79, \"ASIAN\": 224, \"HAWN_PI\": 39, \"OTHER\": 456, \"MULT_RACE\": 290, \"HISPANIC\": 1011, \"MALES\": 6353, \"FEMALES\": 6232, \"AGE_UNDER5\": 1429, \"AGE_5_17\": 3322, \"AGE_18_21\": 808, \"AGE_22_29\": 1842, \"AGE_30_39\": 1946, \"AGE_40_49\": 1636, \"AGE_50_64\": 1102, \"AGE_65_UP\": 500, \"MED_AGE\": 25.300000, \"MED_AGE_M\": 25.100000, \"MED_AGE_F\": 25.500000, \"HOUSEHOLDS\": 3529, \"AVE_HH_SZ\": 3.550000, \"HSEHLD_1_M\": 161, \"HSEHLD_1_F\": 141, \"MARHH_CHD\": 1821, \"MARHH_NO_C\": 943, \"MHH_CHILD\": 63, \"FHH_CHILD\": 186, \"FAMILIES\": 3136, \"AVE_FAM_SZ\": 3.760000, \"HSE_UNITS\": 3643, \"VACANT\": 114, \"OWNER_OCC\": 3215, \"RENTER_OCC\": 314 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -112.053111486840265, 41.139396089284581 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cottonwood Heights\", \"CLASS\": \"CDP\", \"ST\": \"UT\", \"STFIPS\": \"49\", \"PLACEFIP\": \"16270\", \"CAPITAL\": \"N\", \"AREALAND\": 6.802000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 27569, \"WHITE\": 25797, \"BLACK\": 193, \"AMERI_ES\": 74, \"ASIAN\": 629, \"HAWN_PI\": 88, \"OTHER\": 306, \"MULT_RACE\": 482, \"HISPANIC\": 846, \"MALES\": 13913, \"FEMALES\": 13656, \"AGE_UNDER5\": 1758, \"AGE_5_17\": 5533, \"AGE_18_21\": 1916, \"AGE_22_29\": 3688, \"AGE_30_39\": 3538, \"AGE_40_49\": 4032, \"AGE_50_64\": 4941, \"AGE_65_UP\": 2163, \"MED_AGE\": 32.400000, \"MED_AGE_M\": 31.400000, \"MED_AGE_F\": 33.700000, \"HOUSEHOLDS\": 9439, \"AVE_HH_SZ\": 2.920000, \"HSEHLD_1_M\": 772, \"HSEHLD_1_F\": 749, \"MARHH_CHD\": 2719, \"MARHH_NO_C\": 3271, \"MHH_CHILD\": 170, \"FHH_CHILD\": 530, \"FAMILIES\": 7246, \"AVE_FAM_SZ\": 3.310000, \"HSE_UNITS\": 9932, \"VACANT\": 493, \"OWNER_OCC\": 6855, \"RENTER_OCC\": 2584 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.820254726634033, 40.617153015854186 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cottonwood West\", \"CLASS\": \"CDP\", \"ST\": \"UT\", \"STFIPS\": \"49\", \"PLACEFIP\": \"16395\", \"CAPITAL\": \"N\", \"AREALAND\": 4.023000, \"AREAWATER\": 0.002000, \"POP_CL\": 6, \"POP2000\": 18727, \"WHITE\": 17431, \"BLACK\": 146, \"AMERI_ES\": 86, \"ASIAN\": 441, \"HAWN_PI\": 33, \"OTHER\": 241, \"MULT_RACE\": 349, \"HISPANIC\": 787, \"MALES\": 8868, \"FEMALES\": 9859, \"AGE_UNDER5\": 1026, \"AGE_5_17\": 2805, \"AGE_18_21\": 1092, \"AGE_22_29\": 2387, \"AGE_30_39\": 2172, \"AGE_40_49\": 2457, \"AGE_50_64\": 3337, \"AGE_65_UP\": 3451, \"MED_AGE\": 39.500000, \"MED_AGE_M\": 37.000000, \"MED_AGE_F\": 41.600000, \"HOUSEHOLDS\": 7853, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 789, \"HSEHLD_1_F\": 1430, \"MARHH_CHD\": 1441, \"MARHH_NO_C\": 2621, \"MHH_CHILD\": 121, \"FHH_CHILD\": 367, \"FAMILIES\": 5100, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 8248, \"VACANT\": 395, \"OWNER_OCC\": 5481, \"RENTER_OCC\": 2372 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.848457990872362, 40.645653134716284 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Draper\", \"CLASS\": \"city\", \"ST\": \"UT\", \"STFIPS\": \"49\", \"PLACEFIP\": \"20120\", \"CAPITAL\": \"N\", \"AREALAND\": 30.343000, \"AREAWATER\": 0.006000, \"POP_CL\": 6, \"POP2000\": 25220, \"WHITE\": 23013, \"BLACK\": 384, \"AMERI_ES\": 189, \"ASIAN\": 329, \"HAWN_PI\": 92, \"OTHER\": 684, \"MULT_RACE\": 529, \"HISPANIC\": 1469, \"MALES\": 14248, \"FEMALES\": 10972, \"AGE_UNDER5\": 2640, \"AGE_5_17\": 5425, \"AGE_18_21\": 1420, \"AGE_22_29\": 3890, \"AGE_30_39\": 5169, \"AGE_40_49\": 3457, \"AGE_50_64\": 2293, \"AGE_65_UP\": 926, \"MED_AGE\": 28.600000, \"MED_AGE_M\": 29.400000, \"MED_AGE_F\": 27.400000, \"HOUSEHOLDS\": 6305, \"AVE_HH_SZ\": 3.400000, \"HSEHLD_1_M\": 358, \"HSEHLD_1_F\": 311, \"MARHH_CHD\": 3105, \"MARHH_NO_C\": 1799, \"MHH_CHILD\": 102, \"FHH_CHILD\": 242, \"FAMILIES\": 5426, \"AVE_FAM_SZ\": 3.690000, \"HSE_UNITS\": 6588, \"VACANT\": 283, \"OWNER_OCC\": 5285, \"RENTER_OCC\": 1020 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.872831509042044, 40.514849224243676 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"East Millcreek\", \"CLASS\": \"CDP\", \"ST\": \"UT\", \"STFIPS\": \"49\", \"PLACEFIP\": \"21550\", \"CAPITAL\": \"N\", \"AREALAND\": 4.454000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 21385, \"WHITE\": 20324, \"BLACK\": 91, \"AMERI_ES\": 31, \"ASIAN\": 311, \"HAWN_PI\": 56, \"OTHER\": 231, \"MULT_RACE\": 341, \"HISPANIC\": 586, \"MALES\": 10380, \"FEMALES\": 11005, \"AGE_UNDER5\": 1417, \"AGE_5_17\": 4313, \"AGE_18_21\": 1224, \"AGE_22_29\": 2109, \"AGE_30_39\": 2310, \"AGE_40_49\": 3032, \"AGE_50_64\": 3071, \"AGE_65_UP\": 3909, \"MED_AGE\": 37.500000, \"MED_AGE_M\": 35.300000, \"MED_AGE_F\": 39.500000, \"HOUSEHOLDS\": 7479, \"AVE_HH_SZ\": 2.820000, \"HSEHLD_1_M\": 569, \"HSEHLD_1_F\": 979, \"MARHH_CHD\": 2071, \"MARHH_NO_C\": 2579, \"MHH_CHILD\": 92, \"FHH_CHILD\": 322, \"FAMILIES\": 5568, \"AVE_FAM_SZ\": 3.310000, \"HSE_UNITS\": 7707, \"VACANT\": 228, \"OWNER_OCC\": 6113, \"RENTER_OCC\": 1366 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.820353262419204, 40.687503022570006 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Farmington\", \"CLASS\": \"city\", \"ST\": \"UT\", \"STFIPS\": \"49\", \"PLACEFIP\": \"24740\", \"CAPITAL\": \"N\", \"AREALAND\": 7.755000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12081, \"WHITE\": 11557, \"BLACK\": 44, \"AMERI_ES\": 74, \"ASIAN\": 102, \"HAWN_PI\": 20, \"OTHER\": 155, \"MULT_RACE\": 129, \"HISPANIC\": 360, \"MALES\": 6305, \"FEMALES\": 5776, \"AGE_UNDER5\": 960, \"AGE_5_17\": 3511, \"AGE_18_21\": 894, \"AGE_22_29\": 1217, \"AGE_30_39\": 1508, \"AGE_40_49\": 1879, \"AGE_50_64\": 1455, \"AGE_65_UP\": 657, \"MED_AGE\": 26.300000, \"MED_AGE_M\": 25.300000, \"MED_AGE_F\": 27.600000, \"HOUSEHOLDS\": 3087, \"AVE_HH_SZ\": 3.720000, \"HSEHLD_1_M\": 110, \"HSEHLD_1_F\": 146, \"MARHH_CHD\": 1575, \"MARHH_NO_C\": 918, \"MHH_CHILD\": 36, \"FHH_CHILD\": 135, \"FAMILIES\": 2770, \"AVE_FAM_SZ\": 3.970000, \"HSE_UNITS\": 3216, \"VACANT\": 129, \"OWNER_OCC\": 2696, \"RENTER_OCC\": 391 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.89904383901073, 40.9866003801136 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Holladay\", \"CLASS\": \"city\", \"ST\": \"UT\", \"STFIPS\": \"49\", \"PLACEFIP\": \"36070\", \"CAPITAL\": \"N\", \"AREALAND\": 5.341000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14561, \"WHITE\": 13901, \"BLACK\": 67, \"AMERI_ES\": 27, \"ASIAN\": 240, \"HAWN_PI\": 29, \"OTHER\": 81, \"MULT_RACE\": 216, \"HISPANIC\": 272, \"MALES\": 7058, \"FEMALES\": 7503, \"AGE_UNDER5\": 916, \"AGE_5_17\": 2977, \"AGE_18_21\": 934, \"AGE_22_29\": 1420, \"AGE_30_39\": 1540, \"AGE_40_49\": 2159, \"AGE_50_64\": 2396, \"AGE_65_UP\": 2219, \"MED_AGE\": 37.200000, \"MED_AGE_M\": 35.400000, \"MED_AGE_F\": 38.600000, \"HOUSEHOLDS\": 5096, \"AVE_HH_SZ\": 2.840000, \"HSEHLD_1_M\": 375, \"HSEHLD_1_F\": 659, \"MARHH_CHD\": 1450, \"MARHH_NO_C\": 1775, \"MHH_CHILD\": 65, \"FHH_CHILD\": 214, \"FAMILIES\": 3806, \"AVE_FAM_SZ\": 3.330000, \"HSE_UNITS\": 5338, \"VACANT\": 242, \"OWNER_OCC\": 4174, \"RENTER_OCC\": 922 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.819319522583939, 40.656286015549206 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Kaysville\", \"CLASS\": \"city\", \"ST\": \"UT\", \"STFIPS\": \"49\", \"PLACEFIP\": \"40360\", \"CAPITAL\": \"N\", \"AREALAND\": 10.094000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 20351, \"WHITE\": 19653, \"BLACK\": 63, \"AMERI_ES\": 57, \"ASIAN\": 134, \"HAWN_PI\": 37, \"OTHER\": 184, \"MULT_RACE\": 223, \"HISPANIC\": 606, \"MALES\": 10133, \"FEMALES\": 10218, \"AGE_UNDER5\": 2076, \"AGE_5_17\": 6177, \"AGE_18_21\": 1229, \"AGE_22_29\": 1827, \"AGE_30_39\": 2918, \"AGE_40_49\": 2681, \"AGE_50_64\": 2050, \"AGE_65_UP\": 1393, \"MED_AGE\": 24.800000, \"MED_AGE_M\": 23.200000, \"MED_AGE_F\": 26.300000, \"HOUSEHOLDS\": 5496, \"AVE_HH_SZ\": 3.690000, \"HSEHLD_1_M\": 194, \"HSEHLD_1_F\": 416, \"MARHH_CHD\": 2802, \"MARHH_NO_C\": 1461, \"MHH_CHILD\": 68, \"FHH_CHILD\": 290, \"FAMILIES\": 4813, \"AVE_FAM_SZ\": 4.020000, \"HSE_UNITS\": 5638, \"VACANT\": 142, \"OWNER_OCC\": 4589, \"RENTER_OCC\": 907 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.936119354618654, 41.033147545889555 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Kearns\", \"CLASS\": \"CDP\", \"ST\": \"UT\", \"STFIPS\": \"49\", \"PLACEFIP\": \"40470\", \"CAPITAL\": \"N\", \"AREALAND\": 4.812000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 33659, \"WHITE\": 27525, \"BLACK\": 221, \"AMERI_ES\": 343, \"ASIAN\": 568, \"HAWN_PI\": 787, \"OTHER\": 3306, \"MULT_RACE\": 909, \"HISPANIC\": 6604, \"MALES\": 17034, \"FEMALES\": 16625, \"AGE_UNDER5\": 3592, \"AGE_5_17\": 8914, \"AGE_18_21\": 2153, \"AGE_22_29\": 4503, \"AGE_30_39\": 5392, \"AGE_40_49\": 4297, \"AGE_50_64\": 2702, \"AGE_65_UP\": 2106, \"MED_AGE\": 26.100000, \"MED_AGE_M\": 25.400000, \"MED_AGE_F\": 26.700000, \"HOUSEHOLDS\": 9203, \"AVE_HH_SZ\": 3.650000, \"HSEHLD_1_M\": 414, \"HSEHLD_1_F\": 548, \"MARHH_CHD\": 3978, \"MARHH_NO_C\": 2215, \"MHH_CHILD\": 301, \"FHH_CHILD\": 698, \"FAMILIES\": 7930, \"AVE_FAM_SZ\": 3.880000, \"HSE_UNITS\": 9413, \"VACANT\": 210, \"OWNER_OCC\": 8168, \"RENTER_OCC\": 1035 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -112.006645858747689, 40.653185823243938 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Layton\", \"CLASS\": \"city\", \"ST\": \"UT\", \"STFIPS\": \"49\", \"PLACEFIP\": \"43660\", \"CAPITAL\": \"N\", \"AREALAND\": 20.707000, \"AREAWATER\": 0.133000, \"POP_CL\": 7, \"POP2000\": 58474, \"WHITE\": 52573, \"BLACK\": 943, \"AMERI_ES\": 307, \"ASIAN\": 1216, \"HAWN_PI\": 159, \"OTHER\": 1804, \"MULT_RACE\": 1472, \"HISPANIC\": 4068, \"MALES\": 29487, \"FEMALES\": 28987, \"AGE_UNDER5\": 6050, \"AGE_5_17\": 14462, \"AGE_18_21\": 4163, \"AGE_22_29\": 7539, \"AGE_30_39\": 8812, \"AGE_40_49\": 8062, \"AGE_50_64\": 6055, \"AGE_65_UP\": 3331, \"MED_AGE\": 26.800000, \"MED_AGE_M\": 26.600000, \"MED_AGE_F\": 27.000000, \"HOUSEHOLDS\": 18282, \"AVE_HH_SZ\": 3.190000, \"HSEHLD_1_M\": 1536, \"HSEHLD_1_F\": 1241, \"MARHH_CHD\": 7343, \"MARHH_NO_C\": 4980, \"MHH_CHILD\": 392, \"FHH_CHILD\": 1200, \"FAMILIES\": 14769, \"AVE_FAM_SZ\": 3.590000, \"HSE_UNITS\": 19145, \"VACANT\": 863, \"OWNER_OCC\": 13616, \"RENTER_OCC\": 4666 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.955210909633223, 41.077925634668034 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lehi\", \"CLASS\": \"city\", \"ST\": \"UT\", \"STFIPS\": \"49\", \"PLACEFIP\": \"44320\", \"CAPITAL\": \"N\", \"AREALAND\": 20.324000, \"AREAWATER\": 0.244000, \"POP_CL\": 6, \"POP2000\": 19028, \"WHITE\": 18206, \"BLACK\": 47, \"AMERI_ES\": 110, \"ASIAN\": 89, \"HAWN_PI\": 82, \"OTHER\": 254, \"MULT_RACE\": 240, \"HISPANIC\": 569, \"MALES\": 9531, \"FEMALES\": 9497, \"AGE_UNDER5\": 2987, \"AGE_5_17\": 4814, \"AGE_18_21\": 1141, \"AGE_22_29\": 2985, \"AGE_30_39\": 3060, \"AGE_40_49\": 1648, \"AGE_50_64\": 1410, \"AGE_65_UP\": 983, \"MED_AGE\": 23.600000, \"MED_AGE_M\": 23.200000, \"MED_AGE_F\": 24.000000, \"HOUSEHOLDS\": 5125, \"AVE_HH_SZ\": 3.700000, \"HSEHLD_1_M\": 180, \"HSEHLD_1_F\": 275, \"MARHH_CHD\": 2814, \"MARHH_NO_C\": 1287, \"MHH_CHILD\": 82, \"FHH_CHILD\": 253, \"FAMILIES\": 4603, \"AVE_FAM_SZ\": 3.940000, \"HSE_UNITS\": 5280, \"VACANT\": 155, \"OWNER_OCC\": 4175, \"RENTER_OCC\": 950 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.858520049721136, 40.401668153472343 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Logan\", \"CLASS\": \"city\", \"ST\": \"UT\", \"STFIPS\": \"49\", \"PLACEFIP\": \"45860\", \"CAPITAL\": \"N\", \"AREALAND\": 16.518000, \"AREAWATER\": 0.536000, \"POP_CL\": 6, \"POP2000\": 42670, \"WHITE\": 37947, \"BLACK\": 272, \"AMERI_ES\": 361, \"ASIAN\": 1537, \"HAWN_PI\": 125, \"OTHER\": 1740, \"MULT_RACE\": 688, \"HISPANIC\": 3509, \"MALES\": 20459, \"FEMALES\": 22211, \"AGE_UNDER5\": 4055, \"AGE_5_17\": 5949, \"AGE_18_21\": 7746, \"AGE_22_29\": 12085, \"AGE_30_39\": 4053, \"AGE_40_49\": 3136, \"AGE_50_64\": 2621, \"AGE_65_UP\": 3025, \"MED_AGE\": 23.500000, \"MED_AGE_M\": 24.200000, \"MED_AGE_F\": 22.700000, \"HOUSEHOLDS\": 13902, \"AVE_HH_SZ\": 2.920000, \"HSEHLD_1_M\": 1092, \"HSEHLD_1_F\": 1400, \"MARHH_CHD\": 3785, \"MARHH_NO_C\": 3878, \"MHH_CHILD\": 201, \"FHH_CHILD\": 654, \"FAMILIES\": 9174, \"AVE_FAM_SZ\": 3.200000, \"HSE_UNITS\": 14692, \"VACANT\": 790, \"OWNER_OCC\": 6112, \"RENTER_OCC\": 7790 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.830731721055088, 41.737884151899323 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Magna\", \"CLASS\": \"CDP\", \"ST\": \"UT\", \"STFIPS\": \"49\", \"PLACEFIP\": \"47290\", \"CAPITAL\": \"N\", \"AREALAND\": 7.426000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 22770, \"WHITE\": 19642, \"BLACK\": 145, \"AMERI_ES\": 204, \"ASIAN\": 136, \"HAWN_PI\": 320, \"OTHER\": 1775, \"MULT_RACE\": 548, \"HISPANIC\": 3416, \"MALES\": 11486, \"FEMALES\": 11284, \"AGE_UNDER5\": 2477, \"AGE_5_17\": 5767, \"AGE_18_21\": 1581, \"AGE_22_29\": 3299, \"AGE_30_39\": 3374, \"AGE_40_49\": 2981, \"AGE_50_64\": 1930, \"AGE_65_UP\": 1361, \"MED_AGE\": 25.800000, \"MED_AGE_M\": 25.500000, \"MED_AGE_F\": 26.000000, \"HOUSEHOLDS\": 6562, \"AVE_HH_SZ\": 3.460000, \"HSEHLD_1_M\": 420, \"HSEHLD_1_F\": 441, \"MARHH_CHD\": 2715, \"MARHH_NO_C\": 1607, \"MHH_CHILD\": 239, \"FHH_CHILD\": 453, \"FAMILIES\": 5446, \"AVE_FAM_SZ\": 3.770000, \"HSE_UNITS\": 6799, \"VACANT\": 237, \"OWNER_OCC\": 5603, \"RENTER_OCC\": 959 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -112.085751702796713, 40.701586196296411 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Midvale\", \"CLASS\": \"city\", \"ST\": \"UT\", \"STFIPS\": \"49\", \"PLACEFIP\": \"49710\", \"CAPITAL\": \"N\", \"AREALAND\": 5.841000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 27029, \"WHITE\": 22283, \"BLACK\": 319, \"AMERI_ES\": 348, \"ASIAN\": 500, \"HAWN_PI\": 156, \"OTHER\": 2691, \"MULT_RACE\": 732, \"HISPANIC\": 5613, \"MALES\": 13698, \"FEMALES\": 13331, \"AGE_UNDER5\": 2569, \"AGE_5_17\": 4397, \"AGE_18_21\": 2279, \"AGE_22_29\": 5337, \"AGE_30_39\": 3934, \"AGE_40_49\": 3005, \"AGE_50_64\": 3069, \"AGE_65_UP\": 2439, \"MED_AGE\": 28.100000, \"MED_AGE_M\": 27.600000, \"MED_AGE_F\": 28.800000, \"HOUSEHOLDS\": 10089, \"AVE_HH_SZ\": 2.660000, \"HSEHLD_1_M\": 1205, \"HSEHLD_1_F\": 1348, \"MARHH_CHD\": 2184, \"MARHH_NO_C\": 2639, \"MHH_CHILD\": 254, \"FHH_CHILD\": 758, \"FAMILIES\": 6635, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 10730, \"VACANT\": 641, \"OWNER_OCC\": 4848, \"RENTER_OCC\": 5241 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.88810399090697, 40.613996298326668 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Millcreek\", \"CLASS\": \"CDP\", \"ST\": \"UT\", \"STFIPS\": \"49\", \"PLACEFIP\": \"50150\", \"CAPITAL\": \"N\", \"AREALAND\": 4.931000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 30377, \"WHITE\": 26448, \"BLACK\": 476, \"AMERI_ES\": 377, \"ASIAN\": 944, \"HAWN_PI\": 194, \"OTHER\": 1014, \"MULT_RACE\": 924, \"HISPANIC\": 2780, \"MALES\": 14447, \"FEMALES\": 15930, \"AGE_UNDER5\": 2591, \"AGE_5_17\": 4403, \"AGE_18_21\": 2081, \"AGE_22_29\": 5527, \"AGE_30_39\": 4339, \"AGE_40_49\": 3451, \"AGE_50_64\": 3487, \"AGE_65_UP\": 4498, \"MED_AGE\": 31.100000, \"MED_AGE_M\": 29.900000, \"MED_AGE_F\": 32.600000, \"HOUSEHOLDS\": 12545, \"AVE_HH_SZ\": 2.340000, \"HSEHLD_1_M\": 1610, \"HSEHLD_1_F\": 2398, \"MARHH_CHD\": 2239, \"MARHH_NO_C\": 2874, \"MHH_CHILD\": 292, \"FHH_CHILD\": 982, \"FAMILIES\": 7360, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 13403, \"VACANT\": 858, \"OWNER_OCC\": 5602, \"RENTER_OCC\": 6943 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.863885863957719, 40.686220202909176 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Murray\", \"CLASS\": \"city\", \"ST\": \"UT\", \"STFIPS\": \"49\", \"PLACEFIP\": \"53230\", \"CAPITAL\": \"N\", \"AREALAND\": 9.605000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 34024, \"WHITE\": 31153, \"BLACK\": 336, \"AMERI_ES\": 213, \"ASIAN\": 624, \"HAWN_PI\": 112, \"OTHER\": 942, \"MULT_RACE\": 644, \"HISPANIC\": 2549, \"MALES\": 16636, \"FEMALES\": 17388, \"AGE_UNDER5\": 2539, \"AGE_5_17\": 6725, \"AGE_18_21\": 2464, \"AGE_22_29\": 4772, \"AGE_30_39\": 4428, \"AGE_40_49\": 4987, \"AGE_50_64\": 4248, \"AGE_65_UP\": 3861, \"MED_AGE\": 31.000000, \"MED_AGE_M\": 29.900000, \"MED_AGE_F\": 32.500000, \"HOUSEHOLDS\": 12673, \"AVE_HH_SZ\": 2.680000, \"HSEHLD_1_M\": 1326, \"HSEHLD_1_F\": 1794, \"MARHH_CHD\": 3238, \"MARHH_NO_C\": 3511, \"MHH_CHILD\": 283, \"FHH_CHILD\": 805, \"FAMILIES\": 8720, \"AVE_FAM_SZ\": 3.240000, \"HSE_UNITS\": 13327, \"VACANT\": 654, \"OWNER_OCC\": 8448, \"RENTER_OCC\": 4225 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.893118449030709, 40.65240332336144 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"North Ogden\", \"CLASS\": \"city\", \"ST\": \"UT\", \"STFIPS\": \"49\", \"PLACEFIP\": \"55100\", \"CAPITAL\": \"N\", \"AREALAND\": 6.504000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 15026, \"WHITE\": 14412, \"BLACK\": 55, \"AMERI_ES\": 51, \"ASIAN\": 118, \"HAWN_PI\": 10, \"OTHER\": 243, \"MULT_RACE\": 137, \"HISPANIC\": 577, \"MALES\": 7543, \"FEMALES\": 7483, \"AGE_UNDER5\": 1263, \"AGE_5_17\": 4027, \"AGE_18_21\": 1019, \"AGE_22_29\": 1284, \"AGE_30_39\": 2038, \"AGE_40_49\": 2179, \"AGE_50_64\": 1985, \"AGE_65_UP\": 1231, \"MED_AGE\": 29.500000, \"MED_AGE_M\": 28.200000, \"MED_AGE_F\": 30.400000, \"HOUSEHOLDS\": 4416, \"AVE_HH_SZ\": 3.400000, \"HSEHLD_1_M\": 190, \"HSEHLD_1_F\": 294, \"MARHH_CHD\": 1940, \"MARHH_NO_C\": 1498, \"MHH_CHILD\": 69, \"FHH_CHILD\": 183, \"FAMILIES\": 3859, \"AVE_FAM_SZ\": 3.680000, \"HSE_UNITS\": 4562, \"VACANT\": 146, \"OWNER_OCC\": 3993, \"RENTER_OCC\": 423 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.95881605386387, 41.310048672488321 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ogden\", \"CLASS\": \"city\", \"ST\": \"UT\", \"STFIPS\": \"49\", \"PLACEFIP\": \"55980\", \"CAPITAL\": \"N\", \"AREALAND\": 26.637000, \"AREAWATER\": 0.003000, \"POP_CL\": 7, \"POP2000\": 77226, \"WHITE\": 61016, \"BLACK\": 1785, \"AMERI_ES\": 927, \"ASIAN\": 1105, \"HAWN_PI\": 133, \"OTHER\": 9997, \"MULT_RACE\": 2263, \"HISPANIC\": 18253, \"MALES\": 39050, \"FEMALES\": 38176, \"AGE_UNDER5\": 7586, \"AGE_5_17\": 14622, \"AGE_18_21\": 6149, \"AGE_22_29\": 12082, \"AGE_30_39\": 10473, \"AGE_40_49\": 9285, \"AGE_50_64\": 8302, \"AGE_65_UP\": 8727, \"MED_AGE\": 28.600000, \"MED_AGE_M\": 28.100000, \"MED_AGE_F\": 29.200000, \"HOUSEHOLDS\": 27384, \"AVE_HH_SZ\": 2.730000, \"HSEHLD_1_M\": 3347, \"HSEHLD_1_F\": 3818, \"MARHH_CHD\": 6616, \"MARHH_NO_C\": 6645, \"MHH_CHILD\": 806, \"FHH_CHILD\": 2229, \"FAMILIES\": 18405, \"AVE_FAM_SZ\": 3.320000, \"HSE_UNITS\": 29763, \"VACANT\": 2379, \"OWNER_OCC\": 16752, \"RENTER_OCC\": 10632 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.961074500422555, 41.227750674988314 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Oquirrh\", \"CLASS\": \"CDP\", \"ST\": \"UT\", \"STFIPS\": \"49\", \"PLACEFIP\": \"56800\", \"CAPITAL\": \"N\", \"AREALAND\": 1.746000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10390, \"WHITE\": 9102, \"BLACK\": 72, \"AMERI_ES\": 43, \"ASIAN\": 141, \"HAWN_PI\": 168, \"OTHER\": 642, \"MULT_RACE\": 222, \"HISPANIC\": 1307, \"MALES\": 5193, \"FEMALES\": 5197, \"AGE_UNDER5\": 1433, \"AGE_5_17\": 3031, \"AGE_18_21\": 584, \"AGE_22_29\": 1477, \"AGE_30_39\": 2105, \"AGE_40_49\": 1188, \"AGE_50_64\": 442, \"AGE_65_UP\": 130, \"MED_AGE\": 23.000000, \"MED_AGE_M\": 22.300000, \"MED_AGE_F\": 23.700000, \"HOUSEHOLDS\": 2683, \"AVE_HH_SZ\": 3.870000, \"HSEHLD_1_M\": 91, \"HSEHLD_1_F\": 90, \"MARHH_CHD\": 1573, \"MARHH_NO_C\": 439, \"MHH_CHILD\": 74, \"FHH_CHILD\": 211, \"FAMILIES\": 2429, \"AVE_FAM_SZ\": 4.030000, \"HSE_UNITS\": 2728, \"VACANT\": 45, \"OWNER_OCC\": 2532, \"RENTER_OCC\": 151 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -112.015557493186719, 40.63005286134797 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Orem\", \"CLASS\": \"city\", \"ST\": \"UT\", \"STFIPS\": \"49\", \"PLACEFIP\": \"57300\", \"CAPITAL\": \"N\", \"AREALAND\": 18.441000, \"AREAWATER\": 0.000000, \"POP_CL\": 7, \"POP2000\": 84324, \"WHITE\": 76567, \"BLACK\": 280, \"AMERI_ES\": 615, \"ASIAN\": 1226, \"HAWN_PI\": 721, \"OTHER\": 3073, \"MULT_RACE\": 1842, \"HISPANIC\": 7217, \"MALES\": 41879, \"FEMALES\": 42445, \"AGE_UNDER5\": 8901, \"AGE_5_17\": 20931, \"AGE_18_21\": 7939, \"AGE_22_29\": 14288, \"AGE_30_39\": 9509, \"AGE_40_49\": 8945, \"AGE_50_64\": 7951, \"AGE_65_UP\": 5860, \"MED_AGE\": 23.900000, \"MED_AGE_M\": 23.700000, \"MED_AGE_F\": 24.200000, \"HOUSEHOLDS\": 23382, \"AVE_HH_SZ\": 3.570000, \"HSEHLD_1_M\": 1074, \"HSEHLD_1_F\": 1837, \"MARHH_CHD\": 9844, \"MARHH_NO_C\": 6298, \"MHH_CHILD\": 292, \"FHH_CHILD\": 1271, \"FAMILIES\": 19085, \"AVE_FAM_SZ\": 3.930000, \"HSE_UNITS\": 24166, \"VACANT\": 784, \"OWNER_OCC\": 15685, \"RENTER_OCC\": 7697 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.696388231361681, 40.298758500726798 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Payson\", \"CLASS\": \"city\", \"ST\": \"UT\", \"STFIPS\": \"49\", \"PLACEFIP\": \"58730\", \"CAPITAL\": \"N\", \"AREALAND\": 6.793000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12716, \"WHITE\": 11956, \"BLACK\": 16, \"AMERI_ES\": 49, \"ASIAN\": 48, \"HAWN_PI\": 30, \"OTHER\": 448, \"MULT_RACE\": 169, \"HISPANIC\": 864, \"MALES\": 6416, \"FEMALES\": 6300, \"AGE_UNDER5\": 1517, \"AGE_5_17\": 3351, \"AGE_18_21\": 955, \"AGE_22_29\": 1656, \"AGE_30_39\": 1632, \"AGE_40_49\": 1345, \"AGE_50_64\": 1223, \"AGE_65_UP\": 1037, \"MED_AGE\": 24.400000, \"MED_AGE_M\": 23.300000, \"MED_AGE_F\": 25.400000, \"HOUSEHOLDS\": 3654, \"AVE_HH_SZ\": 3.470000, \"HSEHLD_1_M\": 200, \"HSEHLD_1_F\": 322, \"MARHH_CHD\": 1601, \"MARHH_NO_C\": 986, \"MHH_CHILD\": 74, \"FHH_CHILD\": 219, \"FAMILIES\": 3057, \"AVE_FAM_SZ\": 3.870000, \"HSE_UNITS\": 3855, \"VACANT\": 201, \"OWNER_OCC\": 2835, \"RENTER_OCC\": 819 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.733048969170994, 40.038840617653264 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pleasant Grove\", \"CLASS\": \"city\", \"ST\": \"UT\", \"STFIPS\": \"49\", \"PLACEFIP\": \"60930\", \"CAPITAL\": \"N\", \"AREALAND\": 8.719000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 23468, \"WHITE\": 22330, \"BLACK\": 68, \"AMERI_ES\": 90, \"ASIAN\": 126, \"HAWN_PI\": 92, \"OTHER\": 410, \"MULT_RACE\": 352, \"HISPANIC\": 1069, \"MALES\": 11778, \"FEMALES\": 11690, \"AGE_UNDER5\": 3089, \"AGE_5_17\": 6528, \"AGE_18_21\": 1513, \"AGE_22_29\": 3027, \"AGE_30_39\": 3380, \"AGE_40_49\": 2482, \"AGE_50_64\": 2072, \"AGE_65_UP\": 1377, \"MED_AGE\": 23.600000, \"MED_AGE_M\": 22.800000, \"MED_AGE_F\": 24.200000, \"HOUSEHOLDS\": 6109, \"AVE_HH_SZ\": 3.830000, \"HSEHLD_1_M\": 231, \"HSEHLD_1_F\": 334, \"MARHH_CHD\": 3142, \"MARHH_NO_C\": 1564, \"MHH_CHILD\": 83, \"FHH_CHILD\": 319, \"FAMILIES\": 5391, \"AVE_FAM_SZ\": 4.110000, \"HSE_UNITS\": 6334, \"VACANT\": 225, \"OWNER_OCC\": 4751, \"RENTER_OCC\": 1358 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.731410005825239, 40.370256640784739 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Provo\", \"CLASS\": \"city\", \"ST\": \"UT\", \"STFIPS\": \"49\", \"PLACEFIP\": \"62470\", \"CAPITAL\": \"N\", \"AREALAND\": 39.636000, \"AREAWATER\": 2.149000, \"POP_CL\": 8, \"POP2000\": 105166, \"WHITE\": 93094, \"BLACK\": 486, \"AMERI_ES\": 846, \"ASIAN\": 1924, \"HAWN_PI\": 882, \"OTHER\": 5368, \"MULT_RACE\": 2566, \"HISPANIC\": 11013, \"MALES\": 50572, \"FEMALES\": 54594, \"AGE_UNDER5\": 9139, \"AGE_5_17\": 14269, \"AGE_18_21\": 23330, \"AGE_22_29\": 31107, \"AGE_30_39\": 8934, \"AGE_40_49\": 6156, \"AGE_50_64\": 6211, \"AGE_65_UP\": 6020, \"MED_AGE\": 22.900000, \"MED_AGE_M\": 23.500000, \"MED_AGE_F\": 22.000000, \"HOUSEHOLDS\": 29192, \"AVE_HH_SZ\": 3.340000, \"HSEHLD_1_M\": 1363, \"HSEHLD_1_F\": 2084, \"MARHH_CHD\": 8393, \"MARHH_NO_C\": 8235, \"MHH_CHILD\": 324, \"FHH_CHILD\": 1139, \"FAMILIES\": 19948, \"AVE_FAM_SZ\": 3.400000, \"HSE_UNITS\": 30374, \"VACANT\": 1182, \"OWNER_OCC\": 12440, \"RENTER_OCC\": 16752 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.660708342212118, 40.244426362642677 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Riverton\", \"CLASS\": \"city\", \"ST\": \"UT\", \"STFIPS\": \"49\", \"PLACEFIP\": \"64340\", \"CAPITAL\": \"N\", \"AREALAND\": 12.570000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 25011, \"WHITE\": 24123, \"BLACK\": 54, \"AMERI_ES\": 61, \"ASIAN\": 163, \"HAWN_PI\": 59, \"OTHER\": 256, \"MULT_RACE\": 295, \"HISPANIC\": 793, \"MALES\": 12589, \"FEMALES\": 12422, \"AGE_UNDER5\": 3104, \"AGE_5_17\": 7544, \"AGE_18_21\": 1354, \"AGE_22_29\": 2661, \"AGE_30_39\": 4429, \"AGE_40_49\": 3188, \"AGE_50_64\": 1905, \"AGE_65_UP\": 826, \"MED_AGE\": 23.700000, \"MED_AGE_M\": 23.300000, \"MED_AGE_F\": 24.200000, \"HOUSEHOLDS\": 6348, \"AVE_HH_SZ\": 3.930000, \"HSEHLD_1_M\": 185, \"HSEHLD_1_F\": 184, \"MARHH_CHD\": 3792, \"MARHH_NO_C\": 1564, \"MHH_CHILD\": 105, \"FHH_CHILD\": 251, \"FAMILIES\": 5885, \"AVE_FAM_SZ\": 4.090000, \"HSE_UNITS\": 6555, \"VACANT\": 207, \"OWNER_OCC\": 5966, \"RENTER_OCC\": 382 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.955157810846487, 40.520591578970503 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Roy\", \"CLASS\": \"city\", \"ST\": \"UT\", \"STFIPS\": \"49\", \"PLACEFIP\": \"65110\", \"CAPITAL\": \"N\", \"AREALAND\": 7.595000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 32885, \"WHITE\": 29842, \"BLACK\": 383, \"AMERI_ES\": 193, \"ASIAN\": 590, \"HAWN_PI\": 37, \"OTHER\": 1197, \"MULT_RACE\": 643, \"HISPANIC\": 2526, \"MALES\": 16265, \"FEMALES\": 16620, \"AGE_UNDER5\": 3314, \"AGE_5_17\": 7687, \"AGE_18_21\": 2094, \"AGE_22_29\": 4538, \"AGE_30_39\": 4977, \"AGE_40_49\": 4093, \"AGE_50_64\": 3441, \"AGE_65_UP\": 2741, \"MED_AGE\": 28.000000, \"MED_AGE_M\": 27.600000, \"MED_AGE_F\": 28.400000, \"HOUSEHOLDS\": 10689, \"AVE_HH_SZ\": 3.060000, \"HSEHLD_1_M\": 704, \"HSEHLD_1_F\": 985, \"MARHH_CHD\": 3992, \"MARHH_NO_C\": 3043, \"MHH_CHILD\": 277, \"FHH_CHILD\": 698, \"FAMILIES\": 8606, \"AVE_FAM_SZ\": 3.430000, \"HSE_UNITS\": 11053, \"VACANT\": 364, \"OWNER_OCC\": 9010, \"RENTER_OCC\": 1679 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -112.048550541463669, 41.170621071026979 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"St. George\", \"CLASS\": \"city\", \"ST\": \"UT\", \"STFIPS\": \"49\", \"PLACEFIP\": \"65330\", \"CAPITAL\": \"N\", \"AREALAND\": 64.397000, \"AREAWATER\": 0.471000, \"POP_CL\": 6, \"POP2000\": 49663, \"WHITE\": 45823, \"BLACK\": 120, \"AMERI_ES\": 812, \"ASIAN\": 282, \"HAWN_PI\": 293, \"OTHER\": 1426, \"MULT_RACE\": 907, \"HISPANIC\": 3337, \"MALES\": 24134, \"FEMALES\": 25529, \"AGE_UNDER5\": 4286, \"AGE_5_17\": 9805, \"AGE_18_21\": 4398, \"AGE_22_29\": 5518, \"AGE_30_39\": 5188, \"AGE_40_49\": 4895, \"AGE_50_64\": 6007, \"AGE_65_UP\": 9566, \"MED_AGE\": 31.400000, \"MED_AGE_M\": 30.000000, \"MED_AGE_F\": 33.100000, \"HOUSEHOLDS\": 17367, \"AVE_HH_SZ\": 2.810000, \"HSEHLD_1_M\": 1232, \"HSEHLD_1_F\": 2139, \"MARHH_CHD\": 4672, \"MARHH_NO_C\": 6378, \"MHH_CHILD\": 265, \"FHH_CHILD\": 995, \"FAMILIES\": 13041, \"AVE_FAM_SZ\": 3.210000, \"HSE_UNITS\": 21083, \"VACANT\": 3716, \"OWNER_OCC\": 11795, \"RENTER_OCC\": 5572 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -113.577949094365522, 37.09529552546168 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Salt Lake City\", \"CLASS\": \"city\", \"ST\": \"UT\", \"STFIPS\": \"49\", \"PLACEFIP\": \"67000\", \"CAPITAL\": \"Y\", \"AREALAND\": 109.081000, \"AREAWATER\": 1.291000, \"POP_CL\": 8, \"POP2000\": 181743, \"WHITE\": 143933, \"BLACK\": 3433, \"AMERI_ES\": 2442, \"ASIAN\": 6579, \"HAWN_PI\": 3437, \"OTHER\": 15482, \"MULT_RACE\": 6437, \"HISPANIC\": 34254, \"MALES\": 92045, \"FEMALES\": 89698, \"AGE_UNDER5\": 14432, \"AGE_5_17\": 28538, \"AGE_18_21\": 14116, \"AGE_22_29\": 33839, \"AGE_30_39\": 28503, \"AGE_40_49\": 23010, \"AGE_50_64\": 19384, \"AGE_65_UP\": 19921, \"MED_AGE\": 30.000000, \"MED_AGE_M\": 29.500000, \"MED_AGE_F\": 30.600000, \"HOUSEHOLDS\": 71461, \"AVE_HH_SZ\": 2.480000, \"HSEHLD_1_M\": 11214, \"HSEHLD_1_F\": 12510, \"MARHH_CHD\": 13861, \"MARHH_NO_C\": 15499, \"MHH_CHILD\": 1283, \"FHH_CHILD\": 4173, \"FAMILIES\": 39830, \"AVE_FAM_SZ\": 3.240000, \"HSE_UNITS\": 77054, \"VACANT\": 5593, \"OWNER_OCC\": 36592, \"RENTER_OCC\": 34869 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.892510791071487, 40.75470633051998 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sandy\", \"CLASS\": \"city\", \"ST\": \"UT\", \"STFIPS\": \"49\", \"PLACEFIP\": \"67440\", \"CAPITAL\": \"N\", \"AREALAND\": 22.325000, \"AREAWATER\": 0.021000, \"POP_CL\": 7, \"POP2000\": 88418, \"WHITE\": 82685, \"BLACK\": 445, \"AMERI_ES\": 311, \"ASIAN\": 1916, \"HAWN_PI\": 275, \"OTHER\": 1326, \"MULT_RACE\": 1460, \"HISPANIC\": 3875, \"MALES\": 44405, \"FEMALES\": 44013, \"AGE_UNDER5\": 7000, \"AGE_5_17\": 23461, \"AGE_18_21\": 6231, \"AGE_22_29\": 8398, \"AGE_30_39\": 12062, \"AGE_40_49\": 14640, \"AGE_50_64\": 11993, \"AGE_65_UP\": 4633, \"MED_AGE\": 29.100000, \"MED_AGE_M\": 27.700000, \"MED_AGE_F\": 30.400000, \"HOUSEHOLDS\": 25737, \"AVE_HH_SZ\": 3.420000, \"HSEHLD_1_M\": 1387, \"HSEHLD_1_F\": 1592, \"MARHH_CHD\": 11326, \"MARHH_NO_C\": 7441, \"MHH_CHILD\": 465, \"FHH_CHILD\": 1412, \"FAMILIES\": 21786, \"AVE_FAM_SZ\": 3.730000, \"HSE_UNITS\": 26579, \"VACANT\": 842, \"OWNER_OCC\": 21708, \"RENTER_OCC\": 4029 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.859501864873792, 40.572421173894554 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"South Jordan\", \"CLASS\": \"city\", \"ST\": \"UT\", \"STFIPS\": \"49\", \"PLACEFIP\": \"70850\", \"CAPITAL\": \"N\", \"AREALAND\": 20.868000, \"AREAWATER\": 0.165000, \"POP_CL\": 6, \"POP2000\": 29437, \"WHITE\": 28115, \"BLACK\": 88, \"AMERI_ES\": 30, \"ASIAN\": 298, \"HAWN_PI\": 140, \"OTHER\": 380, \"MULT_RACE\": 386, \"HISPANIC\": 962, \"MALES\": 14765, \"FEMALES\": 14672, \"AGE_UNDER5\": 2473, \"AGE_5_17\": 9076, \"AGE_18_21\": 2142, \"AGE_22_29\": 2355, \"AGE_30_39\": 3912, \"AGE_40_49\": 4820, \"AGE_50_64\": 3272, \"AGE_65_UP\": 1387, \"MED_AGE\": 25.300000, \"MED_AGE_M\": 24.000000, \"MED_AGE_F\": 26.600000, \"HOUSEHOLDS\": 7507, \"AVE_HH_SZ\": 3.920000, \"HSEHLD_1_M\": 249, \"HSEHLD_1_F\": 344, \"MARHH_CHD\": 4090, \"MARHH_NO_C\": 2164, \"MHH_CHILD\": 73, \"FHH_CHILD\": 240, \"FAMILIES\": 6771, \"AVE_FAM_SZ\": 4.160000, \"HSE_UNITS\": 7721, \"VACANT\": 214, \"OWNER_OCC\": 6734, \"RENTER_OCC\": 773 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.960775200451351, 40.561604608012004 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"South Ogden\", \"CLASS\": \"city\", \"ST\": \"UT\", \"STFIPS\": \"49\", \"PLACEFIP\": \"70960\", \"CAPITAL\": \"N\", \"AREALAND\": 3.670000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14377, \"WHITE\": 13157, \"BLACK\": 106, \"AMERI_ES\": 100, \"ASIAN\": 209, \"HAWN_PI\": 39, \"OTHER\": 457, \"MULT_RACE\": 309, \"HISPANIC\": 1056, \"MALES\": 7079, \"FEMALES\": 7298, \"AGE_UNDER5\": 1158, \"AGE_5_17\": 2760, \"AGE_18_21\": 936, \"AGE_22_29\": 1758, \"AGE_30_39\": 1659, \"AGE_40_49\": 1868, \"AGE_50_64\": 1973, \"AGE_65_UP\": 2265, \"MED_AGE\": 33.700000, \"MED_AGE_M\": 31.500000, \"MED_AGE_F\": 35.800000, \"HOUSEHOLDS\": 5193, \"AVE_HH_SZ\": 2.730000, \"HSEHLD_1_M\": 433, \"HSEHLD_1_F\": 652, \"MARHH_CHD\": 1379, \"MARHH_NO_C\": 1732, \"MHH_CHILD\": 117, \"FHH_CHILD\": 314, \"FAMILIES\": 3876, \"AVE_FAM_SZ\": 3.180000, \"HSE_UNITS\": 5459, \"VACANT\": 266, \"OWNER_OCC\": 3984, \"RENTER_OCC\": 1209 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.957297102113444, 41.174783653126475 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"South Salt Lake\", \"CLASS\": \"city\", \"ST\": \"UT\", \"STFIPS\": \"49\", \"PLACEFIP\": \"71070\", \"CAPITAL\": \"N\", \"AREALAND\": 6.907000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 22038, \"WHITE\": 16582, \"BLACK\": 642, \"AMERI_ES\": 662, \"ASIAN\": 584, \"HAWN_PI\": 266, \"OTHER\": 2356, \"MULT_RACE\": 946, \"HISPANIC\": 4932, \"MALES\": 12067, \"FEMALES\": 9971, \"AGE_UNDER5\": 2040, \"AGE_5_17\": 3247, \"AGE_18_21\": 1907, \"AGE_22_29\": 4397, \"AGE_30_39\": 3870, \"AGE_40_49\": 2894, \"AGE_50_64\": 2004, \"AGE_65_UP\": 1679, \"MED_AGE\": 28.900000, \"MED_AGE_M\": 29.000000, \"MED_AGE_F\": 28.700000, \"HOUSEHOLDS\": 8022, \"AVE_HH_SZ\": 2.470000, \"HSEHLD_1_M\": 1452, \"HSEHLD_1_F\": 1158, \"MARHH_CHD\": 1497, \"MARHH_NO_C\": 1528, \"MHH_CHILD\": 257, \"FHH_CHILD\": 700, \"FAMILIES\": 4592, \"AVE_FAM_SZ\": 3.170000, \"HSE_UNITS\": 8742, \"VACANT\": 720, \"OWNER_OCC\": 3050, \"RENTER_OCC\": 4972 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.888957309193202, 40.707901310932726 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Spanish Fork\", \"CLASS\": \"city\", \"ST\": \"UT\", \"STFIPS\": \"49\", \"PLACEFIP\": \"71290\", \"CAPITAL\": \"N\", \"AREALAND\": 13.239000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 20246, \"WHITE\": 19295, \"BLACK\": 41, \"AMERI_ES\": 114, \"ASIAN\": 62, \"HAWN_PI\": 58, \"OTHER\": 405, \"MULT_RACE\": 271, \"HISPANIC\": 861, \"MALES\": 10237, \"FEMALES\": 10009, \"AGE_UNDER5\": 2728, \"AGE_5_17\": 5304, \"AGE_18_21\": 1371, \"AGE_22_29\": 2922, \"AGE_30_39\": 2997, \"AGE_40_49\": 2088, \"AGE_50_64\": 1556, \"AGE_65_UP\": 1280, \"MED_AGE\": 24.100000, \"MED_AGE_M\": 23.700000, \"MED_AGE_F\": 24.500000, \"HOUSEHOLDS\": 5534, \"AVE_HH_SZ\": 3.590000, \"HSEHLD_1_M\": 270, \"HSEHLD_1_F\": 390, \"MARHH_CHD\": 2789, \"MARHH_NO_C\": 1382, \"MHH_CHILD\": 79, \"FHH_CHILD\": 276, \"FAMILIES\": 4777, \"AVE_FAM_SZ\": 3.910000, \"HSE_UNITS\": 5808, \"VACANT\": 274, \"OWNER_OCC\": 4345, \"RENTER_OCC\": 1189 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.639860193502031, 40.104551274486987 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Springville\", \"CLASS\": \"city\", \"ST\": \"UT\", \"STFIPS\": \"49\", \"PLACEFIP\": \"72280\", \"CAPITAL\": \"N\", \"AREALAND\": 11.536000, \"AREAWATER\": 0.006000, \"POP_CL\": 6, \"POP2000\": 20424, \"WHITE\": 19317, \"BLACK\": 22, \"AMERI_ES\": 126, \"ASIAN\": 72, \"HAWN_PI\": 58, \"OTHER\": 456, \"MULT_RACE\": 373, \"HISPANIC\": 975, \"MALES\": 10135, \"FEMALES\": 10289, \"AGE_UNDER5\": 2649, \"AGE_5_17\": 4982, \"AGE_18_21\": 1383, \"AGE_22_29\": 2967, \"AGE_30_39\": 2788, \"AGE_40_49\": 2139, \"AGE_50_64\": 1894, \"AGE_65_UP\": 1622, \"MED_AGE\": 25.000000, \"MED_AGE_M\": 24.400000, \"MED_AGE_F\": 25.500000, \"HOUSEHOLDS\": 5975, \"AVE_HH_SZ\": 3.410000, \"HSEHLD_1_M\": 282, \"HSEHLD_1_F\": 509, \"MARHH_CHD\": 2661, \"MARHH_NO_C\": 1662, \"MHH_CHILD\": 89, \"FHH_CHILD\": 326, \"FAMILIES\": 5025, \"AVE_FAM_SZ\": 3.760000, \"HSE_UNITS\": 6229, \"VACANT\": 254, \"OWNER_OCC\": 4411, \"RENTER_OCC\": 1564 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.604148577831737, 40.162773150182112 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Taylorsville\", \"CLASS\": \"city\", \"ST\": \"UT\", \"STFIPS\": \"49\", \"PLACEFIP\": \"75360\", \"CAPITAL\": \"N\", \"AREALAND\": 10.684000, \"AREAWATER\": 0.000000, \"POP_CL\": 7, \"POP2000\": 57439, \"WHITE\": 49139, \"BLACK\": 508, \"AMERI_ES\": 589, \"ASIAN\": 1745, \"HAWN_PI\": 904, \"OTHER\": 3087, \"MULT_RACE\": 1467, \"HISPANIC\": 7022, \"MALES\": 28731, \"FEMALES\": 28708, \"AGE_UNDER5\": 4806, \"AGE_5_17\": 12801, \"AGE_18_21\": 4846, \"AGE_22_29\": 8303, \"AGE_30_39\": 7761, \"AGE_40_49\": 8122, \"AGE_50_64\": 7176, \"AGE_65_UP\": 3624, \"MED_AGE\": 27.800000, \"MED_AGE_M\": 26.900000, \"MED_AGE_F\": 28.700000, \"HOUSEHOLDS\": 18530, \"AVE_HH_SZ\": 3.090000, \"HSEHLD_1_M\": 1496, \"HSEHLD_1_F\": 1759, \"MARHH_CHD\": 5951, \"MARHH_NO_C\": 5067, \"MHH_CHILD\": 500, \"FHH_CHILD\": 1369, \"FAMILIES\": 14164, \"AVE_FAM_SZ\": 3.520000, \"HSE_UNITS\": 19159, \"VACANT\": 629, \"OWNER_OCC\": 13202, \"RENTER_OCC\": 5328 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.949340213583241, 40.654936567148432 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Tooele\", \"CLASS\": \"city\", \"ST\": \"UT\", \"STFIPS\": \"49\", \"PLACEFIP\": \"76680\", \"CAPITAL\": \"N\", \"AREALAND\": 21.140000, \"AREAWATER\": 0.018000, \"POP_CL\": 6, \"POP2000\": 22502, \"WHITE\": 20468, \"BLACK\": 166, \"AMERI_ES\": 296, \"ASIAN\": 126, \"HAWN_PI\": 33, \"OTHER\": 865, \"MULT_RACE\": 548, \"HISPANIC\": 2271, \"MALES\": 11155, \"FEMALES\": 11347, \"AGE_UNDER5\": 2739, \"AGE_5_17\": 4943, \"AGE_18_21\": 1342, \"AGE_22_29\": 3312, \"AGE_30_39\": 3379, \"AGE_40_49\": 2504, \"AGE_50_64\": 2374, \"AGE_65_UP\": 1909, \"MED_AGE\": 27.500000, \"MED_AGE_M\": 27.500000, \"MED_AGE_F\": 27.400000, \"HOUSEHOLDS\": 7459, \"AVE_HH_SZ\": 2.980000, \"HSEHLD_1_M\": 626, \"HSEHLD_1_F\": 730, \"MARHH_CHD\": 2675, \"MARHH_NO_C\": 1998, \"MHH_CHILD\": 203, \"FHH_CHILD\": 559, \"FAMILIES\": 5822, \"AVE_FAM_SZ\": 3.390000, \"HSE_UNITS\": 7923, \"VACANT\": 464, \"OWNER_OCC\": 5957, \"RENTER_OCC\": 1502 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -112.297640288687333, 40.536419242225719 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"West Jordan\", \"CLASS\": \"city\", \"ST\": \"UT\", \"STFIPS\": \"49\", \"PLACEFIP\": \"82950\", \"CAPITAL\": \"N\", \"AREALAND\": 30.902000, \"AREAWATER\": 0.000000, \"POP_CL\": 7, \"POP2000\": 68336, \"WHITE\": 60653, \"BLACK\": 434, \"AMERI_ES\": 385, \"ASIAN\": 1393, \"HAWN_PI\": 644, \"OTHER\": 3250, \"MULT_RACE\": 1577, \"HISPANIC\": 6882, \"MALES\": 34309, \"FEMALES\": 34027, \"AGE_UNDER5\": 7692, \"AGE_5_17\": 18143, \"AGE_18_21\": 4848, \"AGE_22_29\": 9385, \"AGE_30_39\": 11052, \"AGE_40_49\": 8999, \"AGE_50_64\": 6053, \"AGE_65_UP\": 2164, \"MED_AGE\": 25.000000, \"MED_AGE_M\": 24.600000, \"MED_AGE_F\": 25.400000, \"HOUSEHOLDS\": 18897, \"AVE_HH_SZ\": 3.600000, \"HSEHLD_1_M\": 967, \"HSEHLD_1_F\": 962, \"MARHH_CHD\": 9090, \"MARHH_NO_C\": 4524, \"MHH_CHILD\": 446, \"FHH_CHILD\": 1295, \"FAMILIES\": 16240, \"AVE_FAM_SZ\": 3.870000, \"HSE_UNITS\": 19597, \"VACANT\": 700, \"OWNER_OCC\": 15478, \"RENTER_OCC\": 3419 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.976101993806125, 40.606391680751599 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"West Valley City\", \"CLASS\": \"city\", \"ST\": \"UT\", \"STFIPS\": \"49\", \"PLACEFIP\": \"83470\", \"CAPITAL\": \"N\", \"AREALAND\": 35.399000, \"AREAWATER\": 0.056000, \"POP_CL\": 8, \"POP2000\": 108896, \"WHITE\": 85172, \"BLACK\": 1247, \"AMERI_ES\": 1273, \"ASIAN\": 4671, \"HAWN_PI\": 3157, \"OTHER\": 9528, \"MULT_RACE\": 3848, \"HISPANIC\": 20126, \"MALES\": 55078, \"FEMALES\": 53818, \"AGE_UNDER5\": 11524, \"AGE_5_17\": 25123, \"AGE_18_21\": 7946, \"AGE_22_29\": 16143, \"AGE_30_39\": 16165, \"AGE_40_49\": 13444, \"AGE_50_64\": 12693, \"AGE_65_UP\": 5858, \"MED_AGE\": 26.800000, \"MED_AGE_M\": 26.400000, \"MED_AGE_F\": 27.300000, \"HOUSEHOLDS\": 32253, \"AVE_HH_SZ\": 3.360000, \"HSEHLD_1_M\": 2257, \"HSEHLD_1_F\": 2479, \"MARHH_CHD\": 11532, \"MARHH_NO_C\": 8243, \"MHH_CHILD\": 1017, \"FHH_CHILD\": 2647, \"FAMILIES\": 25932, \"AVE_FAM_SZ\": 3.710000, \"HSE_UNITS\": 33488, \"VACANT\": 1235, \"OWNER_OCC\": 23418, \"RENTER_OCC\": 8835 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -111.993750368311467, 40.689187768642078 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Alexandria\", \"CLASS\": \"city\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"01000\", \"CAPITAL\": \"N\", \"AREALAND\": 15.178000, \"AREAWATER\": 0.230000, \"POP_CL\": 8, \"POP2000\": 128283, \"WHITE\": 76702, \"BLACK\": 28915, \"AMERI_ES\": 355, \"ASIAN\": 7249, \"HAWN_PI\": 112, \"OTHER\": 9467, \"MULT_RACE\": 5483, \"HISPANIC\": 18882, \"MALES\": 61974, \"FEMALES\": 66309, \"AGE_UNDER5\": 7962, \"AGE_5_17\": 13575, \"AGE_18_21\": 4295, \"AGE_22_29\": 23942, \"AGE_30_39\": 29028, \"AGE_40_49\": 19261, \"AGE_50_64\": 18615, \"AGE_65_UP\": 11605, \"MED_AGE\": 34.400000, \"MED_AGE_M\": 33.900000, \"MED_AGE_F\": 34.900000, \"HOUSEHOLDS\": 61889, \"AVE_HH_SZ\": 2.040000, \"HSEHLD_1_M\": 11431, \"HSEHLD_1_F\": 15459, \"MARHH_CHD\": 7666, \"MARHH_NO_C\": 12239, \"MHH_CHILD\": 721, \"FHH_CHILD\": 3100, \"FAMILIES\": 27749, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 64251, \"VACANT\": 2362, \"OWNER_OCC\": 24745, \"RENTER_OCC\": 37144 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.071300942927309, 38.816242486692559 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Annandale\", \"CLASS\": \"CDP\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"01912\", \"CAPITAL\": \"N\", \"AREALAND\": 13.802000, \"AREAWATER\": 0.008000, \"POP_CL\": 7, \"POP2000\": 54994, \"WHITE\": 35473, \"BLACK\": 3224, \"AMERI_ES\": 165, \"ASIAN\": 10647, \"HAWN_PI\": 41, \"OTHER\": 3266, \"MULT_RACE\": 2178, \"HISPANIC\": 7966, \"MALES\": 26816, \"FEMALES\": 28178, \"AGE_UNDER5\": 3550, \"AGE_5_17\": 8889, \"AGE_18_21\": 2076, \"AGE_22_29\": 6033, \"AGE_30_39\": 8947, \"AGE_40_49\": 9180, \"AGE_50_64\": 9849, \"AGE_65_UP\": 6470, \"MED_AGE\": 37.900000, \"MED_AGE_M\": 36.700000, \"MED_AGE_F\": 39.200000, \"HOUSEHOLDS\": 19927, \"AVE_HH_SZ\": 2.730000, \"HSEHLD_1_M\": 1715, \"HSEHLD_1_F\": 2630, \"MARHH_CHD\": 5287, \"MARHH_NO_C\": 6222, \"MHH_CHILD\": 240, \"FHH_CHILD\": 869, \"FAMILIES\": 14090, \"AVE_FAM_SZ\": 3.180000, \"HSE_UNITS\": 20243, \"VACANT\": 316, \"OWNER_OCC\": 13438, \"RENTER_OCC\": 6489 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.211294421489271, 38.834134407125468 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Arlington\", \"CLASS\": \"CDP\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"03000\", \"CAPITAL\": \"N\", \"AREALAND\": 25.870000, \"AREAWATER\": 0.094000, \"POP_CL\": 8, \"POP2000\": 189453, \"WHITE\": 130601, \"BLACK\": 17705, \"AMERI_ES\": 662, \"ASIAN\": 16327, \"HAWN_PI\": 143, \"OTHER\": 15786, \"MULT_RACE\": 8229, \"HISPANIC\": 35268, \"MALES\": 95443, \"FEMALES\": 94010, \"AGE_UNDER5\": 10397, \"AGE_5_17\": 20842, \"AGE_18_21\": 7107, \"AGE_22_29\": 38183, \"AGE_30_39\": 40005, \"AGE_40_49\": 28140, \"AGE_50_64\": 27017, \"AGE_65_UP\": 17762, \"MED_AGE\": 34.000000, \"MED_AGE_M\": 33.500000, \"MED_AGE_F\": 34.700000, \"HOUSEHOLDS\": 86352, \"AVE_HH_SZ\": 2.150000, \"HSEHLD_1_M\": 16042, \"HSEHLD_1_F\": 19174, \"MARHH_CHD\": 12800, \"MARHH_NO_C\": 17722, \"MHH_CHILD\": 880, \"FHH_CHILD\": 2945, \"FAMILIES\": 39322, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 90426, \"VACANT\": 4074, \"OWNER_OCC\": 37370, \"RENTER_OCC\": 48982 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.108278607651684, 38.880344464276924 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bailey's Crossroads\", \"CLASS\": \"CDP\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"04088\", \"CAPITAL\": \"N\", \"AREALAND\": 2.054000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 23166, \"WHITE\": 11096, \"BLACK\": 2514, \"AMERI_ES\": 126, \"ASIAN\": 2865, \"HAWN_PI\": 21, \"OTHER\": 4340, \"MULT_RACE\": 2204, \"HISPANIC\": 8596, \"MALES\": 11938, \"FEMALES\": 11228, \"AGE_UNDER5\": 1812, \"AGE_5_17\": 3518, \"AGE_18_21\": 1189, \"AGE_22_29\": 3577, \"AGE_30_39\": 4454, \"AGE_40_49\": 3285, \"AGE_50_64\": 2936, \"AGE_65_UP\": 2395, \"MED_AGE\": 33.100000, \"MED_AGE_M\": 31.700000, \"MED_AGE_F\": 34.700000, \"HOUSEHOLDS\": 8547, \"AVE_HH_SZ\": 2.700000, \"HSEHLD_1_M\": 1168, \"HSEHLD_1_F\": 1677, \"MARHH_CHD\": 1813, \"MARHH_NO_C\": 1642, \"MHH_CHILD\": 170, \"FHH_CHILD\": 535, \"FAMILIES\": 4968, \"AVE_FAM_SZ\": 3.400000, \"HSE_UNITS\": 8813, \"VACANT\": 266, \"OWNER_OCC\": 3541, \"RENTER_OCC\": 5006 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.129111334212922, 38.849474452541308 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Blacksburg\", \"CLASS\": \"town\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"07784\", \"CAPITAL\": \"N\", \"AREALAND\": 19.358000, \"AREAWATER\": 0.015000, \"POP_CL\": 6, \"POP2000\": 39573, \"WHITE\": 33394, \"BLACK\": 1738, \"AMERI_ES\": 45, \"ASIAN\": 3087, \"HAWN_PI\": 22, \"OTHER\": 355, \"MULT_RACE\": 932, \"HISPANIC\": 920, \"MALES\": 22140, \"FEMALES\": 17433, \"AGE_UNDER5\": 1157, \"AGE_5_17\": 2664, \"AGE_18_21\": 16296, \"AGE_22_29\": 9516, \"AGE_30_39\": 3119, \"AGE_40_49\": 2461, \"AGE_50_64\": 2410, \"AGE_65_UP\": 1950, \"MED_AGE\": 21.900000, \"MED_AGE_M\": 21.900000, \"MED_AGE_F\": 22.000000, \"HOUSEHOLDS\": 13162, \"AVE_HH_SZ\": 2.370000, \"HSEHLD_1_M\": 1835, \"HSEHLD_1_F\": 1661, \"MARHH_CHD\": 1625, \"MARHH_NO_C\": 2148, \"MHH_CHILD\": 98, \"FHH_CHILD\": 418, \"FAMILIES\": 4779, \"AVE_FAM_SZ\": 2.790000, \"HSE_UNITS\": 13732, \"VACANT\": 570, \"OWNER_OCC\": 4003, \"RENTER_OCC\": 9159 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.417695701163169, 37.229873899542504 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bon Air\", \"CLASS\": \"CDP\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"08472\", \"CAPITAL\": \"N\", \"AREALAND\": 8.840000, \"AREAWATER\": 0.022000, \"POP_CL\": 6, \"POP2000\": 16213, \"WHITE\": 14090, \"BLACK\": 1366, \"AMERI_ES\": 26, \"ASIAN\": 410, \"HAWN_PI\": 6, \"OTHER\": 137, \"MULT_RACE\": 178, \"HISPANIC\": 281, \"MALES\": 7822, \"FEMALES\": 8391, \"AGE_UNDER5\": 819, \"AGE_5_17\": 3498, \"AGE_18_21\": 605, \"AGE_22_29\": 1031, \"AGE_30_39\": 2150, \"AGE_40_49\": 2832, \"AGE_50_64\": 3057, \"AGE_65_UP\": 2221, \"MED_AGE\": 40.000000, \"MED_AGE_M\": 37.600000, \"MED_AGE_F\": 41.900000, \"HOUSEHOLDS\": 6308, \"AVE_HH_SZ\": 2.470000, \"HSEHLD_1_M\": 490, \"HSEHLD_1_F\": 1067, \"MARHH_CHD\": 1640, \"MARHH_NO_C\": 2054, \"MHH_CHILD\": 82, \"FHH_CHILD\": 345, \"FAMILIES\": 4458, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 6502, \"VACANT\": 194, \"OWNER_OCC\": 5236, \"RENTER_OCC\": 1072 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.568780686756128, 37.519947254920915 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bristol\", \"CLASS\": \"city\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"09816\", \"CAPITAL\": \"N\", \"AREALAND\": 12.899000, \"AREAWATER\": 0.266000, \"POP_CL\": 6, \"POP2000\": 17367, \"WHITE\": 16072, \"BLACK\": 967, \"AMERI_ES\": 43, \"ASIAN\": 64, \"HAWN_PI\": 2, \"OTHER\": 32, \"MULT_RACE\": 187, \"HISPANIC\": 169, \"MALES\": 7825, \"FEMALES\": 9542, \"AGE_UNDER5\": 929, \"AGE_5_17\": 2601, \"AGE_18_21\": 911, \"AGE_22_29\": 1652, \"AGE_30_39\": 2272, \"AGE_40_49\": 2414, \"AGE_50_64\": 3021, \"AGE_65_UP\": 3567, \"MED_AGE\": 41.300000, \"MED_AGE_M\": 38.100000, \"MED_AGE_F\": 44.200000, \"HOUSEHOLDS\": 7678, \"AVE_HH_SZ\": 2.180000, \"HSEHLD_1_M\": 814, \"HSEHLD_1_F\": 1818, \"MARHH_CHD\": 1252, \"MARHH_NO_C\": 2286, \"MHH_CHILD\": 101, \"FHH_CHILD\": 550, \"FAMILIES\": 4795, \"AVE_FAM_SZ\": 2.780000, \"HSE_UNITS\": 8469, \"VACANT\": 791, \"OWNER_OCC\": 4997, \"RENTER_OCC\": 2681 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.176193357800912, 36.611115938600463 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bull Run\", \"CLASS\": \"CDP\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"11230\", \"CAPITAL\": \"N\", \"AREALAND\": 2.675000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11337, \"WHITE\": 7193, \"BLACK\": 2151, \"AMERI_ES\": 31, \"ASIAN\": 619, \"HAWN_PI\": 9, \"OTHER\": 911, \"MULT_RACE\": 423, \"HISPANIC\": 1817, \"MALES\": 5585, \"FEMALES\": 5752, \"AGE_UNDER5\": 1225, \"AGE_5_17\": 1778, \"AGE_18_21\": 624, \"AGE_22_29\": 2328, \"AGE_30_39\": 2605, \"AGE_40_49\": 1394, \"AGE_50_64\": 929, \"AGE_65_UP\": 454, \"MED_AGE\": 29.100000, \"MED_AGE_M\": 28.600000, \"MED_AGE_F\": 29.600000, \"HOUSEHOLDS\": 4728, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 696, \"HSEHLD_1_F\": 819, \"MARHH_CHD\": 947, \"MARHH_NO_C\": 767, \"MHH_CHILD\": 117, \"FHH_CHILD\": 566, \"FAMILIES\": 2711, \"AVE_FAM_SZ\": 3.030000, \"HSE_UNITS\": 4948, \"VACANT\": 220, \"OWNER_OCC\": 1762, \"RENTER_OCC\": 2966 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.523591323189336, 38.785090259540013 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Burke\", \"CLASS\": \"CDP\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"11464\", \"CAPITAL\": \"N\", \"AREALAND\": 11.529000, \"AREAWATER\": 0.122000, \"POP_CL\": 7, \"POP2000\": 57737, \"WHITE\": 42936, \"BLACK\": 2910, \"AMERI_ES\": 124, \"ASIAN\": 8462, \"HAWN_PI\": 47, \"OTHER\": 1370, \"MULT_RACE\": 1888, \"HISPANIC\": 4291, \"MALES\": 28142, \"FEMALES\": 29595, \"AGE_UNDER5\": 3420, \"AGE_5_17\": 12688, \"AGE_18_21\": 2532, \"AGE_22_29\": 4457, \"AGE_30_39\": 8173, \"AGE_40_49\": 11341, \"AGE_50_64\": 11953, \"AGE_65_UP\": 3173, \"MED_AGE\": 37.600000, \"MED_AGE_M\": 36.500000, \"MED_AGE_F\": 38.500000, \"HOUSEHOLDS\": 19215, \"AVE_HH_SZ\": 2.990000, \"HSEHLD_1_M\": 897, \"HSEHLD_1_F\": 1679, \"MARHH_CHD\": 7267, \"MARHH_NO_C\": 6306, \"MHH_CHILD\": 215, \"FHH_CHILD\": 979, \"FAMILIES\": 15751, \"AVE_FAM_SZ\": 3.300000, \"HSE_UNITS\": 19367, \"VACANT\": 152, \"OWNER_OCC\": 16006, \"RENTER_OCC\": 3209 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.270766737222871, 38.78148037651124 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cave Spring\", \"CLASS\": \"CDP\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"13720\", \"CAPITAL\": \"N\", \"AREALAND\": 11.831000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 24941, \"WHITE\": 23186, \"BLACK\": 605, \"AMERI_ES\": 21, \"ASIAN\": 738, \"HAWN_PI\": 6, \"OTHER\": 111, \"MULT_RACE\": 274, \"HISPANIC\": 376, \"MALES\": 11800, \"FEMALES\": 13141, \"AGE_UNDER5\": 1281, \"AGE_5_17\": 4221, \"AGE_18_21\": 853, \"AGE_22_29\": 2377, \"AGE_30_39\": 3389, \"AGE_40_49\": 4159, \"AGE_50_64\": 4721, \"AGE_65_UP\": 3940, \"MED_AGE\": 40.900000, \"MED_AGE_M\": 39.500000, \"MED_AGE_F\": 42.200000, \"HOUSEHOLDS\": 10997, \"AVE_HH_SZ\": 2.260000, \"HSEHLD_1_M\": 1268, \"HSEHLD_1_F\": 2086, \"MARHH_CHD\": 2425, \"MARHH_NO_C\": 3536, \"MHH_CHILD\": 134, \"FHH_CHILD\": 475, \"FAMILIES\": 7085, \"AVE_FAM_SZ\": 2.840000, \"HSE_UNITS\": 11556, \"VACANT\": 559, \"OWNER_OCC\": 7656, \"RENTER_OCC\": 3341 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.006254332075898, 37.233169900373802 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Centreville\", \"CLASS\": \"CDP\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"14440\", \"CAPITAL\": \"N\", \"AREALAND\": 9.730000, \"AREAWATER\": 0.001000, \"POP_CL\": 6, \"POP2000\": 48661, \"WHITE\": 33816, \"BLACK\": 4322, \"AMERI_ES\": 143, \"ASIAN\": 6934, \"HAWN_PI\": 25, \"OTHER\": 1776, \"MULT_RACE\": 1645, \"HISPANIC\": 4461, \"MALES\": 24037, \"FEMALES\": 24624, \"AGE_UNDER5\": 4362, \"AGE_5_17\": 9467, \"AGE_18_21\": 1818, \"AGE_22_29\": 7331, \"AGE_30_39\": 11560, \"AGE_40_49\": 7910, \"AGE_50_64\": 4624, \"AGE_65_UP\": 1589, \"MED_AGE\": 31.100000, \"MED_AGE_M\": 30.600000, \"MED_AGE_F\": 31.600000, \"HOUSEHOLDS\": 17789, \"AVE_HH_SZ\": 2.740000, \"HSEHLD_1_M\": 1759, \"HSEHLD_1_F\": 2067, \"MARHH_CHD\": 5838, \"MARHH_NO_C\": 3766, \"MHH_CHILD\": 301, \"FHH_CHILD\": 1250, \"FAMILIES\": 12099, \"AVE_FAM_SZ\": 3.270000, \"HSE_UNITS\": 18176, \"VACANT\": 387, \"OWNER_OCC\": 11689, \"RENTER_OCC\": 6100 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.442636122850772, 38.842470293696813 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Chantilly\", \"CLASS\": \"CDP\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"14744\", \"CAPITAL\": \"N\", \"AREALAND\": 11.661000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 41041, \"WHITE\": 30098, \"BLACK\": 2046, \"AMERI_ES\": 117, \"ASIAN\": 6716, \"HAWN_PI\": 24, \"OTHER\": 826, \"MULT_RACE\": 1214, \"HISPANIC\": 2818, \"MALES\": 20351, \"FEMALES\": 20690, \"AGE_UNDER5\": 3065, \"AGE_5_17\": 7634, \"AGE_18_21\": 1423, \"AGE_22_29\": 5548, \"AGE_30_39\": 8012, \"AGE_40_49\": 7292, \"AGE_50_64\": 6111, \"AGE_65_UP\": 1956, \"MED_AGE\": 33.800000, \"MED_AGE_M\": 33.200000, \"MED_AGE_F\": 34.400000, \"HOUSEHOLDS\": 14840, \"AVE_HH_SZ\": 2.750000, \"HSEHLD_1_M\": 1337, \"HSEHLD_1_F\": 1657, \"MARHH_CHD\": 4838, \"MARHH_NO_C\": 4159, \"MHH_CHILD\": 173, \"FHH_CHILD\": 648, \"FAMILIES\": 10519, \"AVE_FAM_SZ\": 3.240000, \"HSE_UNITS\": 15173, \"VACANT\": 333, \"OWNER_OCC\": 10956, \"RENTER_OCC\": 3884 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.402637537189563, 38.87497231142266 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Charlottesville\", \"CLASS\": \"city\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"14968\", \"CAPITAL\": \"N\", \"AREALAND\": 10.262000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 45049, \"WHITE\": 31337, \"BLACK\": 10009, \"AMERI_ES\": 49, \"ASIAN\": 2223, \"HAWN_PI\": 15, \"OTHER\": 458, \"MULT_RACE\": 958, \"HISPANIC\": 1102, \"MALES\": 21021, \"FEMALES\": 24028, \"AGE_UNDER5\": 1981, \"AGE_5_17\": 4854, \"AGE_18_21\": 11354, \"AGE_22_29\": 7548, \"AGE_30_39\": 5500, \"AGE_40_49\": 4646, \"AGE_50_64\": 4618, \"AGE_65_UP\": 4548, \"MED_AGE\": 25.600000, \"MED_AGE_M\": 25.000000, \"MED_AGE_F\": 26.100000, \"HOUSEHOLDS\": 16851, \"AVE_HH_SZ\": 2.270000, \"HSEHLD_1_M\": 2503, \"HSEHLD_1_F\": 3385, \"MARHH_CHD\": 1840, \"MARHH_NO_C\": 3087, \"MHH_CHILD\": 220, \"FHH_CHILD\": 1393, \"FAMILIES\": 7626, \"AVE_FAM_SZ\": 2.850000, \"HSE_UNITS\": 17591, \"VACANT\": 740, \"OWNER_OCC\": 6882, \"RENTER_OCC\": 9969 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -78.486481290863011, 38.03450600177564 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Chesapeake\", \"CLASS\": \"city\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"16000\", \"CAPITAL\": \"N\", \"AREALAND\": 340.717000, \"AREAWATER\": 10.180000, \"POP_CL\": 8, \"POP2000\": 199184, \"WHITE\": 133193, \"BLACK\": 56823, \"AMERI_ES\": 770, \"ASIAN\": 3673, \"HAWN_PI\": 101, \"OTHER\": 1400, \"MULT_RACE\": 3224, \"HISPANIC\": 4076, \"MALES\": 96728, \"FEMALES\": 102456, \"AGE_UNDER5\": 14272, \"AGE_5_17\": 43011, \"AGE_18_21\": 9668, \"AGE_22_29\": 18708, \"AGE_30_39\": 33872, \"AGE_40_49\": 33727, \"AGE_50_64\": 28082, \"AGE_65_UP\": 17844, \"MED_AGE\": 34.700000, \"MED_AGE_M\": 33.600000, \"MED_AGE_F\": 35.700000, \"HOUSEHOLDS\": 69900, \"AVE_HH_SZ\": 2.790000, \"HSEHLD_1_M\": 5159, \"HSEHLD_1_F\": 7409, \"MARHH_CHD\": 21175, \"MARHH_NO_C\": 20527, \"MHH_CHILD\": 1428, \"FHH_CHILD\": 6054, \"FAMILIES\": 54158, \"AVE_FAM_SZ\": 3.170000, \"HSE_UNITS\": 72672, \"VACANT\": 2772, \"OWNER_OCC\": 52335, \"RENTER_OCC\": 17565 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.28743098620636, 36.767399103056022 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Chester\", \"CLASS\": \"CDP\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"16096\", \"CAPITAL\": \"N\", \"AREALAND\": 12.991000, \"AREAWATER\": 0.124000, \"POP_CL\": 6, \"POP2000\": 17890, \"WHITE\": 14541, \"BLACK\": 2403, \"AMERI_ES\": 78, \"ASIAN\": 386, \"HAWN_PI\": 19, \"OTHER\": 188, \"MULT_RACE\": 275, \"HISPANIC\": 547, \"MALES\": 8710, \"FEMALES\": 9180, \"AGE_UNDER5\": 1335, \"AGE_5_17\": 3723, \"AGE_18_21\": 863, \"AGE_22_29\": 1667, \"AGE_30_39\": 2877, \"AGE_40_49\": 3033, \"AGE_50_64\": 2905, \"AGE_65_UP\": 1487, \"MED_AGE\": 35.200000, \"MED_AGE_M\": 35.000000, \"MED_AGE_F\": 35.400000, \"HOUSEHOLDS\": 6727, \"AVE_HH_SZ\": 2.660000, \"HSEHLD_1_M\": 634, \"HSEHLD_1_F\": 647, \"MARHH_CHD\": 1871, \"MARHH_NO_C\": 2047, \"MHH_CHILD\": 143, \"FHH_CHILD\": 676, \"FAMILIES\": 5116, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 6951, \"VACANT\": 224, \"OWNER_OCC\": 5109, \"RENTER_OCC\": 1618 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.435780613853495, 37.35344931138264 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Christiansburg\", \"CLASS\": \"town\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"16608\", \"CAPITAL\": \"N\", \"AREALAND\": 13.925000, \"AREAWATER\": 0.015000, \"POP_CL\": 6, \"POP2000\": 16947, \"WHITE\": 15783, \"BLACK\": 819, \"AMERI_ES\": 36, \"ASIAN\": 70, \"HAWN_PI\": 3, \"OTHER\": 81, \"MULT_RACE\": 155, \"HISPANIC\": 168, \"MALES\": 8151, \"FEMALES\": 8796, \"AGE_UNDER5\": 1252, \"AGE_5_17\": 2780, \"AGE_18_21\": 678, \"AGE_22_29\": 2214, \"AGE_30_39\": 2865, \"AGE_40_49\": 2462, \"AGE_50_64\": 2648, \"AGE_65_UP\": 2048, \"MED_AGE\": 35.200000, \"MED_AGE_M\": 33.700000, \"MED_AGE_F\": 36.700000, \"HOUSEHOLDS\": 7093, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 723, \"HSEHLD_1_F\": 1194, \"MARHH_CHD\": 1595, \"MARHH_NO_C\": 2137, \"MHH_CHILD\": 118, \"FHH_CHILD\": 501, \"FAMILIES\": 4764, \"AVE_FAM_SZ\": 2.860000, \"HSE_UNITS\": 7430, \"VACANT\": 337, \"OWNER_OCC\": 4747, \"RENTER_OCC\": 2346 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.407701700991012, 37.14116390033665 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Colonial Heights\", \"CLASS\": \"city\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"18448\", \"CAPITAL\": \"N\", \"AREALAND\": 7.476000, \"AREAWATER\": 0.310000, \"POP_CL\": 6, \"POP2000\": 16897, \"WHITE\": 15052, \"BLACK\": 1059, \"AMERI_ES\": 32, \"ASIAN\": 459, \"HAWN_PI\": 14, \"OTHER\": 108, \"MULT_RACE\": 173, \"HISPANIC\": 274, \"MALES\": 7901, \"FEMALES\": 8996, \"AGE_UNDER5\": 895, \"AGE_5_17\": 2920, \"AGE_18_21\": 841, \"AGE_22_29\": 1568, \"AGE_30_39\": 2244, \"AGE_40_49\": 2372, \"AGE_50_64\": 2913, \"AGE_65_UP\": 3144, \"MED_AGE\": 39.900000, \"MED_AGE_M\": 37.100000, \"MED_AGE_F\": 42.200000, \"HOUSEHOLDS\": 7027, \"AVE_HH_SZ\": 2.370000, \"HSEHLD_1_M\": 661, \"HSEHLD_1_F\": 1276, \"MARHH_CHD\": 1361, \"MARHH_NO_C\": 2173, \"MHH_CHILD\": 138, \"FHH_CHILD\": 543, \"FAMILIES\": 4720, \"AVE_FAM_SZ\": 2.880000, \"HSE_UNITS\": 7340, \"VACANT\": 313, \"OWNER_OCC\": 4871, \"RENTER_OCC\": 2156 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.402741800898127, 37.262257326633993 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Dale City\", \"CLASS\": \"CDP\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"21088\", \"CAPITAL\": \"N\", \"AREALAND\": 15.041000, \"AREAWATER\": 0.000000, \"POP_CL\": 7, \"POP2000\": 55971, \"WHITE\": 31818, \"BLACK\": 16099, \"AMERI_ES\": 235, \"ASIAN\": 2840, \"HAWN_PI\": 107, \"OTHER\": 2392, \"MULT_RACE\": 2480, \"HISPANIC\": 5534, \"MALES\": 27662, \"FEMALES\": 28309, \"AGE_UNDER5\": 4496, \"AGE_5_17\": 13808, \"AGE_18_21\": 2760, \"AGE_22_29\": 5656, \"AGE_30_39\": 10475, \"AGE_40_49\": 9457, \"AGE_50_64\": 7211, \"AGE_65_UP\": 2108, \"MED_AGE\": 31.400000, \"MED_AGE_M\": 30.700000, \"MED_AGE_F\": 32.000000, \"HOUSEHOLDS\": 17623, \"AVE_HH_SZ\": 3.170000, \"HSEHLD_1_M\": 1148, \"HSEHLD_1_F\": 1242, \"MARHH_CHD\": 6528, \"MARHH_NO_C\": 4684, \"MHH_CHILD\": 494, \"FHH_CHILD\": 1557, \"FAMILIES\": 14336, \"AVE_FAM_SZ\": 3.480000, \"HSE_UNITS\": 18171, \"VACANT\": 548, \"OWNER_OCC\": 13712, \"RENTER_OCC\": 3911 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.342365866189681, 38.648284342380876 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Danville\", \"CLASS\": \"city\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"21344\", \"CAPITAL\": \"N\", \"AREALAND\": 43.061000, \"AREAWATER\": 0.876000, \"POP_CL\": 6, \"POP2000\": 48411, \"WHITE\": 26075, \"BLACK\": 21352, \"AMERI_ES\": 81, \"ASIAN\": 291, \"HAWN_PI\": 14, \"OTHER\": 219, \"MULT_RACE\": 379, \"HISPANIC\": 612, \"MALES\": 22024, \"FEMALES\": 26387, \"AGE_UNDER5\": 2910, \"AGE_5_17\": 8362, \"AGE_18_21\": 2330, \"AGE_22_29\": 4250, \"AGE_30_39\": 6009, \"AGE_40_49\": 7110, \"AGE_50_64\": 7938, \"AGE_65_UP\": 9502, \"MED_AGE\": 40.500000, \"MED_AGE_M\": 37.500000, \"MED_AGE_F\": 42.800000, \"HOUSEHOLDS\": 20607, \"AVE_HH_SZ\": 2.270000, \"HSEHLD_1_M\": 2545, \"HSEHLD_1_F\": 4438, \"MARHH_CHD\": 2752, \"MARHH_NO_C\": 5331, \"MHH_CHILD\": 337, \"FHH_CHILD\": 2297, \"FAMILIES\": 12931, \"AVE_FAM_SZ\": 2.890000, \"HSE_UNITS\": 23108, \"VACANT\": 2501, \"OWNER_OCC\": 11975, \"RENTER_OCC\": 8632 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.404407435722092, 36.587237925555243 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"East Highland Park\", \"CLASS\": \"CDP\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"24496\", \"CAPITAL\": \"N\", \"AREALAND\": 8.964000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12488, \"WHITE\": 2307, \"BLACK\": 9910, \"AMERI_ES\": 36, \"ASIAN\": 49, \"HAWN_PI\": 1, \"OTHER\": 42, \"MULT_RACE\": 143, \"HISPANIC\": 125, \"MALES\": 5722, \"FEMALES\": 6766, \"AGE_UNDER5\": 721, \"AGE_5_17\": 2421, \"AGE_18_21\": 582, \"AGE_22_29\": 1133, \"AGE_30_39\": 1898, \"AGE_40_49\": 1988, \"AGE_50_64\": 2196, \"AGE_65_UP\": 1549, \"MED_AGE\": 37.400000, \"MED_AGE_M\": 35.300000, \"MED_AGE_F\": 39.300000, \"HOUSEHOLDS\": 4960, \"AVE_HH_SZ\": 2.480000, \"HSEHLD_1_M\": 579, \"HSEHLD_1_F\": 828, \"MARHH_CHD\": 754, \"MARHH_NO_C\": 1176, \"MHH_CHILD\": 109, \"FHH_CHILD\": 608, \"FAMILIES\": 3314, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 5226, \"VACANT\": 266, \"OWNER_OCC\": 3563, \"RENTER_OCC\": 1397 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.396669178747956, 37.57094532708593 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fairfax\", \"CLASS\": \"city\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"26496\", \"CAPITAL\": \"N\", \"AREALAND\": 6.310000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 21498, \"WHITE\": 15675, \"BLACK\": 1090, \"AMERI_ES\": 73, \"ASIAN\": 2617, \"HAWN_PI\": 16, \"OTHER\": 1326, \"MULT_RACE\": 701, \"HISPANIC\": 2932, \"MALES\": 10484, \"FEMALES\": 11014, \"AGE_UNDER5\": 1289, \"AGE_5_17\": 3127, \"AGE_18_21\": 1009, \"AGE_22_29\": 2706, \"AGE_30_39\": 3797, \"AGE_40_49\": 3221, \"AGE_50_64\": 3596, \"AGE_65_UP\": 2753, \"MED_AGE\": 37.000000, \"MED_AGE_M\": 35.600000, \"MED_AGE_F\": 38.400000, \"HOUSEHOLDS\": 8035, \"AVE_HH_SZ\": 2.610000, \"HSEHLD_1_M\": 755, \"HSEHLD_1_F\": 1124, \"MARHH_CHD\": 1841, \"MARHH_NO_C\": 2541, \"MHH_CHILD\": 77, \"FHH_CHILD\": 331, \"FAMILIES\": 5407, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 8204, \"VACANT\": 169, \"OWNER_OCC\": 5550, \"RENTER_OCC\": 2485 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.304393478949137, 38.852612358761533 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Falls Church\", \"CLASS\": \"city\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"27200\", \"CAPITAL\": \"N\", \"AREALAND\": 1.986000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10377, \"WHITE\": 8817, \"BLACK\": 340, \"AMERI_ES\": 25, \"ASIAN\": 675, \"HAWN_PI\": 7, \"OTHER\": 261, \"MULT_RACE\": 252, \"HISPANIC\": 876, \"MALES\": 5049, \"FEMALES\": 5328, \"AGE_UNDER5\": 571, \"AGE_5_17\": 1859, \"AGE_18_21\": 260, \"AGE_22_29\": 974, \"AGE_30_39\": 1579, \"AGE_40_49\": 1976, \"AGE_50_64\": 1896, \"AGE_65_UP\": 1262, \"MED_AGE\": 39.700000, \"MED_AGE_M\": 38.100000, \"MED_AGE_F\": 41.300000, \"HOUSEHOLDS\": 4471, \"AVE_HH_SZ\": 2.310000, \"HSEHLD_1_M\": 644, \"HSEHLD_1_F\": 867, \"MARHH_CHD\": 1053, \"MARHH_NO_C\": 1054, \"MHH_CHILD\": 69, \"FHH_CHILD\": 222, \"FAMILIES\": 2622, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 4725, \"VACANT\": 254, \"OWNER_OCC\": 2708, \"RENTER_OCC\": 1763 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.176172861589194, 38.884481425733547 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fort Hunt\", \"CLASS\": \"CDP\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"29136\", \"CAPITAL\": \"N\", \"AREALAND\": 5.090000, \"AREAWATER\": 0.509000, \"POP_CL\": 6, \"POP2000\": 12923, \"WHITE\": 11997, \"BLACK\": 306, \"AMERI_ES\": 22, \"ASIAN\": 331, \"HAWN_PI\": 6, \"OTHER\": 63, \"MULT_RACE\": 198, \"HISPANIC\": 342, \"MALES\": 6274, \"FEMALES\": 6649, \"AGE_UNDER5\": 855, \"AGE_5_17\": 2355, \"AGE_18_21\": 216, \"AGE_22_29\": 365, \"AGE_30_39\": 1603, \"AGE_40_49\": 2333, \"AGE_50_64\": 2722, \"AGE_65_UP\": 2474, \"MED_AGE\": 44.600000, \"MED_AGE_M\": 44.200000, \"MED_AGE_F\": 45.000000, \"HOUSEHOLDS\": 4974, \"AVE_HH_SZ\": 2.580000, \"HSEHLD_1_M\": 320, \"HSEHLD_1_F\": 571, \"MARHH_CHD\": 1501, \"MARHH_NO_C\": 2039, \"MHH_CHILD\": 37, \"FHH_CHILD\": 105, \"FAMILIES\": 3911, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 5050, \"VACANT\": 76, \"OWNER_OCC\": 4641, \"RENTER_OCC\": 333 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.058084982651309, 38.732814495358134 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Franconia\", \"CLASS\": \"CDP\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"29552\", \"CAPITAL\": \"N\", \"AREALAND\": 7.145000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 31907, \"WHITE\": 22099, \"BLACK\": 4329, \"AMERI_ES\": 95, \"ASIAN\": 3419, \"HAWN_PI\": 35, \"OTHER\": 727, \"MULT_RACE\": 1203, \"HISPANIC\": 2337, \"MALES\": 15337, \"FEMALES\": 16570, \"AGE_UNDER5\": 2340, \"AGE_5_17\": 4632, \"AGE_18_21\": 878, \"AGE_22_29\": 4101, \"AGE_30_39\": 7436, \"AGE_40_49\": 6247, \"AGE_50_64\": 4761, \"AGE_65_UP\": 1512, \"MED_AGE\": 35.400000, \"MED_AGE_M\": 35.000000, \"MED_AGE_F\": 35.800000, \"HOUSEHOLDS\": 13284, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 1492, \"HSEHLD_1_F\": 2289, \"MARHH_CHD\": 3170, \"MARHH_NO_C\": 3529, \"MHH_CHILD\": 161, \"FHH_CHILD\": 603, \"FAMILIES\": 8186, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 13509, \"VACANT\": 225, \"OWNER_OCC\": 9411, \"RENTER_OCC\": 3873 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.150345989499044, 38.763351441310462 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fredericksburg\", \"CLASS\": \"city\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"29744\", \"CAPITAL\": \"N\", \"AREALAND\": 10.518000, \"AREAWATER\": 0.004000, \"POP_CL\": 6, \"POP2000\": 19279, \"WHITE\": 14108, \"BLACK\": 3935, \"AMERI_ES\": 65, \"ASIAN\": 291, \"HAWN_PI\": 11, \"OTHER\": 494, \"MULT_RACE\": 375, \"HISPANIC\": 945, \"MALES\": 8677, \"FEMALES\": 10602, \"AGE_UNDER5\": 1127, \"AGE_5_17\": 2301, \"AGE_18_21\": 3289, \"AGE_22_29\": 2816, \"AGE_30_39\": 2566, \"AGE_40_49\": 2249, \"AGE_50_64\": 2461, \"AGE_65_UP\": 2470, \"MED_AGE\": 30.300000, \"MED_AGE_M\": 30.700000, \"MED_AGE_F\": 29.800000, \"HOUSEHOLDS\": 8102, \"AVE_HH_SZ\": 2.090000, \"HSEHLD_1_M\": 1264, \"HSEHLD_1_F\": 1914, \"MARHH_CHD\": 931, \"MARHH_NO_C\": 1644, \"MHH_CHILD\": 137, \"FHH_CHILD\": 681, \"FAMILIES\": 3925, \"AVE_FAM_SZ\": 2.810000, \"HSE_UNITS\": 8888, \"VACANT\": 786, \"OWNER_OCC\": 2882, \"RENTER_OCC\": 5220 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.470792292716041, 38.301829287499977 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Front Royal\", \"CLASS\": \"town\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"29968\", \"CAPITAL\": \"N\", \"AREALAND\": 9.276000, \"AREAWATER\": 0.238000, \"POP_CL\": 6, \"POP2000\": 13589, \"WHITE\": 12000, \"BLACK\": 1180, \"AMERI_ES\": 38, \"ASIAN\": 85, \"HAWN_PI\": 6, \"OTHER\": 90, \"MULT_RACE\": 190, \"HISPANIC\": 290, \"MALES\": 6435, \"FEMALES\": 7154, \"AGE_UNDER5\": 969, \"AGE_5_17\": 2518, \"AGE_18_21\": 631, \"AGE_22_29\": 1377, \"AGE_30_39\": 2037, \"AGE_40_49\": 1864, \"AGE_50_64\": 2206, \"AGE_65_UP\": 1987, \"MED_AGE\": 36.600000, \"MED_AGE_M\": 35.000000, \"MED_AGE_F\": 38.200000, \"HOUSEHOLDS\": 5425, \"AVE_HH_SZ\": 2.460000, \"HSEHLD_1_M\": 585, \"HSEHLD_1_F\": 981, \"MARHH_CHD\": 1119, \"MARHH_NO_C\": 1419, \"MHH_CHILD\": 163, \"FHH_CHILD\": 466, \"FAMILIES\": 3584, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 5752, \"VACANT\": 327, \"OWNER_OCC\": 3250, \"RENTER_OCC\": 2175 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -78.191923461019812, 38.925768047053403 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Glen Allen\", \"CLASS\": \"CDP\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"31200\", \"CAPITAL\": \"N\", \"AREALAND\": 8.846000, \"AREAWATER\": 0.009000, \"POP_CL\": 6, \"POP2000\": 12562, \"WHITE\": 9412, \"BLACK\": 2454, \"AMERI_ES\": 52, \"ASIAN\": 387, \"HAWN_PI\": 8, \"OTHER\": 101, \"MULT_RACE\": 148, \"HISPANIC\": 217, \"MALES\": 5956, \"FEMALES\": 6606, \"AGE_UNDER5\": 893, \"AGE_5_17\": 2226, \"AGE_18_21\": 431, \"AGE_22_29\": 1469, \"AGE_30_39\": 2479, \"AGE_40_49\": 2199, \"AGE_50_64\": 1817, \"AGE_65_UP\": 1048, \"MED_AGE\": 35.300000, \"MED_AGE_M\": 34.200000, \"MED_AGE_F\": 36.200000, \"HOUSEHOLDS\": 5131, \"AVE_HH_SZ\": 2.450000, \"HSEHLD_1_M\": 505, \"HSEHLD_1_F\": 839, \"MARHH_CHD\": 1336, \"MARHH_NO_C\": 1487, \"MHH_CHILD\": 71, \"FHH_CHILD\": 314, \"FAMILIES\": 3505, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 5297, \"VACANT\": 166, \"OWNER_OCC\": 4133, \"RENTER_OCC\": 998 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.485647505326781, 37.660094287473605 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Groveton\", \"CLASS\": \"CDP\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"33584\", \"CAPITAL\": \"N\", \"AREALAND\": 6.151000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 21296, \"WHITE\": 12491, \"BLACK\": 4125, \"AMERI_ES\": 66, \"ASIAN\": 1650, \"HAWN_PI\": 21, \"OTHER\": 1994, \"MULT_RACE\": 949, \"HISPANIC\": 3955, \"MALES\": 10583, \"FEMALES\": 10713, \"AGE_UNDER5\": 1611, \"AGE_5_17\": 3612, \"AGE_18_21\": 943, \"AGE_22_29\": 2625, \"AGE_30_39\": 4128, \"AGE_40_49\": 3521, \"AGE_50_64\": 3082, \"AGE_65_UP\": 1774, \"MED_AGE\": 34.700000, \"MED_AGE_M\": 34.200000, \"MED_AGE_F\": 35.200000, \"HOUSEHOLDS\": 8076, \"AVE_HH_SZ\": 2.630000, \"HSEHLD_1_M\": 961, \"HSEHLD_1_F\": 1142, \"MARHH_CHD\": 1886, \"MARHH_NO_C\": 2001, \"MHH_CHILD\": 161, \"FHH_CHILD\": 581, \"FAMILIES\": 5297, \"AVE_FAM_SZ\": 3.170000, \"HSE_UNITS\": 8275, \"VACANT\": 199, \"OWNER_OCC\": 4568, \"RENTER_OCC\": 3508 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.08767070037284, 38.773946477335841 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hampton\", \"CLASS\": \"city\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"35000\", \"CAPITAL\": \"N\", \"AREALAND\": 51.781000, \"AREAWATER\": 84.448000, \"POP_CL\": 8, \"POP2000\": 146437, \"WHITE\": 72556, \"BLACK\": 65428, \"AMERI_ES\": 616, \"ASIAN\": 2694, \"HAWN_PI\": 136, \"OTHER\": 1505, \"MULT_RACE\": 3502, \"HISPANIC\": 4153, \"MALES\": 72579, \"FEMALES\": 73858, \"AGE_UNDER5\": 9242, \"AGE_5_17\": 26255, \"AGE_18_21\": 11141, \"AGE_22_29\": 18021, \"AGE_30_39\": 24357, \"AGE_40_49\": 22319, \"AGE_50_64\": 19959, \"AGE_65_UP\": 15143, \"MED_AGE\": 34.000000, \"MED_AGE_M\": 33.100000, \"MED_AGE_F\": 35.000000, \"HOUSEHOLDS\": 53887, \"AVE_HH_SZ\": 2.490000, \"HSEHLD_1_M\": 6415, \"HSEHLD_1_F\": 7905, \"MARHH_CHD\": 10871, \"MARHH_NO_C\": 14036, \"MHH_CHILD\": 1111, \"FHH_CHILD\": 5534, \"FAMILIES\": 35911, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 57311, \"VACANT\": 3424, \"OWNER_OCC\": 31570, \"RENTER_OCC\": 22317 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.36015140711595, 37.034947035159554 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Harrisonburg\", \"CLASS\": \"city\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"35624\", \"CAPITAL\": \"N\", \"AREALAND\": 17.561000, \"AREAWATER\": 0.029000, \"POP_CL\": 6, \"POP2000\": 40468, \"WHITE\": 34334, \"BLACK\": 2394, \"AMERI_ES\": 76, \"ASIAN\": 1257, \"HAWN_PI\": 10, \"OTHER\": 1355, \"MULT_RACE\": 1042, \"HISPANIC\": 3580, \"MALES\": 19171, \"FEMALES\": 21297, \"AGE_UNDER5\": 1905, \"AGE_5_17\": 4332, \"AGE_18_21\": 12534, \"AGE_22_29\": 6499, \"AGE_30_39\": 4136, \"AGE_40_49\": 3705, \"AGE_50_64\": 3590, \"AGE_65_UP\": 3767, \"MED_AGE\": 22.600000, \"MED_AGE_M\": 22.900000, \"MED_AGE_F\": 22.400000, \"HOUSEHOLDS\": 13133, \"AVE_HH_SZ\": 2.530000, \"HSEHLD_1_M\": 1521, \"HSEHLD_1_F\": 2201, \"MARHH_CHD\": 2074, \"MARHH_NO_C\": 2704, \"MHH_CHILD\": 234, \"FHH_CHILD\": 752, \"FAMILIES\": 6442, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 13689, \"VACANT\": 556, \"OWNER_OCC\": 5125, \"RENTER_OCC\": 8008 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -78.872764797285996, 38.443278943414384 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Herndon\", \"CLASS\": \"town\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"36648\", \"CAPITAL\": \"N\", \"AREALAND\": 4.221000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 21655, \"WHITE\": 12535, \"BLACK\": 2060, \"AMERI_ES\": 91, \"ASIAN\": 3002, \"HAWN_PI\": 10, \"OTHER\": 2805, \"MULT_RACE\": 1152, \"HISPANIC\": 5633, \"MALES\": 11413, \"FEMALES\": 10242, \"AGE_UNDER5\": 1711, \"AGE_5_17\": 4156, \"AGE_18_21\": 1145, \"AGE_22_29\": 3145, \"AGE_30_39\": 4226, \"AGE_40_49\": 3764, \"AGE_50_64\": 2659, \"AGE_65_UP\": 849, \"MED_AGE\": 31.500000, \"MED_AGE_M\": 30.600000, \"MED_AGE_F\": 32.500000, \"HOUSEHOLDS\": 6962, \"AVE_HH_SZ\": 3.110000, \"HSEHLD_1_M\": 739, \"HSEHLD_1_F\": 696, \"MARHH_CHD\": 2356, \"MARHH_NO_C\": 1599, \"MHH_CHILD\": 149, \"FHH_CHILD\": 395, \"FAMILIES\": 4968, \"AVE_FAM_SZ\": 3.540000, \"HSE_UNITS\": 7190, \"VACANT\": 228, \"OWNER_OCC\": 4585, \"RENTER_OCC\": 2377 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.388690779112451, 38.97147831673545 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Highland Springs\", \"CLASS\": \"CDP\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"37032\", \"CAPITAL\": \"N\", \"AREALAND\": 8.518000, \"AREAWATER\": 0.006000, \"POP_CL\": 6, \"POP2000\": 15137, \"WHITE\": 6733, \"BLACK\": 7845, \"AMERI_ES\": 94, \"ASIAN\": 97, \"HAWN_PI\": 1, \"OTHER\": 121, \"MULT_RACE\": 246, \"HISPANIC\": 235, \"MALES\": 6914, \"FEMALES\": 8223, \"AGE_UNDER5\": 1168, \"AGE_5_17\": 3231, \"AGE_18_21\": 737, \"AGE_22_29\": 1597, \"AGE_30_39\": 2404, \"AGE_40_49\": 2369, \"AGE_50_64\": 2093, \"AGE_65_UP\": 1538, \"MED_AGE\": 33.500000, \"MED_AGE_M\": 31.200000, \"MED_AGE_F\": 35.400000, \"HOUSEHOLDS\": 5788, \"AVE_HH_SZ\": 2.590000, \"HSEHLD_1_M\": 545, \"HSEHLD_1_F\": 807, \"MARHH_CHD\": 1070, \"MARHH_NO_C\": 1314, \"MHH_CHILD\": 154, \"FHH_CHILD\": 969, \"FAMILIES\": 4132, \"AVE_FAM_SZ\": 3.030000, \"HSE_UNITS\": 6040, \"VACANT\": 252, \"OWNER_OCC\": 3759, \"RENTER_OCC\": 2029 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.328538761183822, 37.545445358945898 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hollins\", \"CLASS\": \"CDP\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"37880\", \"CAPITAL\": \"N\", \"AREALAND\": 8.671000, \"AREAWATER\": 0.005000, \"POP_CL\": 6, \"POP2000\": 14309, \"WHITE\": 12975, \"BLACK\": 855, \"AMERI_ES\": 26, \"ASIAN\": 266, \"HAWN_PI\": 1, \"OTHER\": 56, \"MULT_RACE\": 130, \"HISPANIC\": 147, \"MALES\": 6258, \"FEMALES\": 8051, \"AGE_UNDER5\": 656, \"AGE_5_17\": 2082, \"AGE_18_21\": 918, \"AGE_22_29\": 1164, \"AGE_30_39\": 1728, \"AGE_40_49\": 2026, \"AGE_50_64\": 2535, \"AGE_65_UP\": 3200, \"MED_AGE\": 43.000000, \"MED_AGE_M\": 41.200000, \"MED_AGE_F\": 44.800000, \"HOUSEHOLDS\": 5722, \"AVE_HH_SZ\": 2.260000, \"HSEHLD_1_M\": 533, \"HSEHLD_1_F\": 1221, \"MARHH_CHD\": 1143, \"MARHH_NO_C\": 1949, \"MHH_CHILD\": 85, \"FHH_CHILD\": 269, \"FAMILIES\": 3783, \"AVE_FAM_SZ\": 2.800000, \"HSE_UNITS\": 5947, \"VACANT\": 225, \"OWNER_OCC\": 4115, \"RENTER_OCC\": 1607 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.953071449361914, 37.339600899884196 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hopewell\", \"CLASS\": \"city\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"38424\", \"CAPITAL\": \"N\", \"AREALAND\": 10.243000, \"AREAWATER\": 0.580000, \"POP_CL\": 6, \"POP2000\": 22354, \"WHITE\": 13924, \"BLACK\": 7484, \"AMERI_ES\": 79, \"ASIAN\": 180, \"HAWN_PI\": 16, \"OTHER\": 275, \"MULT_RACE\": 396, \"HISPANIC\": 651, \"MALES\": 10447, \"FEMALES\": 11907, \"AGE_UNDER5\": 1667, \"AGE_5_17\": 4298, \"AGE_18_21\": 1182, \"AGE_22_29\": 2485, \"AGE_30_39\": 3171, \"AGE_40_49\": 2955, \"AGE_50_64\": 3330, \"AGE_65_UP\": 3266, \"MED_AGE\": 35.000000, \"MED_AGE_M\": 33.000000, \"MED_AGE_F\": 36.800000, \"HOUSEHOLDS\": 9055, \"AVE_HH_SZ\": 2.430000, \"HSEHLD_1_M\": 1019, \"HSEHLD_1_F\": 1482, \"MARHH_CHD\": 1385, \"MARHH_NO_C\": 2295, \"MHH_CHILD\": 259, \"FHH_CHILD\": 1260, \"FAMILIES\": 6073, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 9749, \"VACANT\": 694, \"OWNER_OCC\": 5067, \"RENTER_OCC\": 3988 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.303385707949317, 37.290399372717225 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hybla Valley\", \"CLASS\": \"CDP\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"39304\", \"CAPITAL\": \"N\", \"AREALAND\": 3.050000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 16721, \"WHITE\": 8357, \"BLACK\": 4770, \"AMERI_ES\": 97, \"ASIAN\": 1340, \"HAWN_PI\": 10, \"OTHER\": 1517, \"MULT_RACE\": 630, \"HISPANIC\": 3213, \"MALES\": 8060, \"FEMALES\": 8661, \"AGE_UNDER5\": 1290, \"AGE_5_17\": 3088, \"AGE_18_21\": 769, \"AGE_22_29\": 2072, \"AGE_30_39\": 2907, \"AGE_40_49\": 2397, \"AGE_50_64\": 2452, \"AGE_65_UP\": 1746, \"MED_AGE\": 33.800000, \"MED_AGE_M\": 32.600000, \"MED_AGE_F\": 35.400000, \"HOUSEHOLDS\": 6362, \"AVE_HH_SZ\": 2.610000, \"HSEHLD_1_M\": 699, \"HSEHLD_1_F\": 1042, \"MARHH_CHD\": 1338, \"MARHH_NO_C\": 1509, \"MHH_CHILD\": 133, \"FHH_CHILD\": 645, \"FAMILIES\": 4214, \"AVE_FAM_SZ\": 3.180000, \"HSE_UNITS\": 6515, \"VACANT\": 153, \"OWNER_OCC\": 3303, \"RENTER_OCC\": 3059 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.076982785684777, 38.746864483909896 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Idylwood\", \"CLASS\": \"CDP\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"39448\", \"CAPITAL\": \"N\", \"AREALAND\": 2.849000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 16005, \"WHITE\": 10034, \"BLACK\": 1109, \"AMERI_ES\": 51, \"ASIAN\": 3074, \"HAWN_PI\": 9, \"OTHER\": 1134, \"MULT_RACE\": 594, \"HISPANIC\": 2621, \"MALES\": 8025, \"FEMALES\": 7980, \"AGE_UNDER5\": 1037, \"AGE_5_17\": 2116, \"AGE_18_21\": 536, \"AGE_22_29\": 3056, \"AGE_30_39\": 3360, \"AGE_40_49\": 2465, \"AGE_50_64\": 2284, \"AGE_65_UP\": 1151, \"MED_AGE\": 33.300000, \"MED_AGE_M\": 32.500000, \"MED_AGE_F\": 34.100000, \"HOUSEHOLDS\": 6560, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 863, \"HSEHLD_1_F\": 1040, \"MARHH_CHD\": 1378, \"MARHH_NO_C\": 1626, \"MHH_CHILD\": 83, \"FHH_CHILD\": 283, \"FAMILIES\": 3833, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 6727, \"VACANT\": 167, \"OWNER_OCC\": 3323, \"RENTER_OCC\": 3237 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.205937547307741, 38.889722409434789 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Jefferson\", \"CLASS\": \"CDP\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"40584\", \"CAPITAL\": \"N\", \"AREALAND\": 5.055000, \"AREAWATER\": 0.028000, \"POP_CL\": 6, \"POP2000\": 27422, \"WHITE\": 16823, \"BLACK\": 1245, \"AMERI_ES\": 94, \"ASIAN\": 5253, \"HAWN_PI\": 8, \"OTHER\": 2895, \"MULT_RACE\": 1104, \"HISPANIC\": 6351, \"MALES\": 13771, \"FEMALES\": 13651, \"AGE_UNDER5\": 1887, \"AGE_5_17\": 4076, \"AGE_18_21\": 1119, \"AGE_22_29\": 3933, \"AGE_30_39\": 5468, \"AGE_40_49\": 4263, \"AGE_50_64\": 4210, \"AGE_65_UP\": 2466, \"MED_AGE\": 34.800000, \"MED_AGE_M\": 33.800000, \"MED_AGE_F\": 35.800000, \"HOUSEHOLDS\": 10016, \"AVE_HH_SZ\": 2.740000, \"HSEHLD_1_M\": 1034, \"HSEHLD_1_F\": 1553, \"MARHH_CHD\": 2397, \"MARHH_NO_C\": 2691, \"MHH_CHILD\": 128, \"FHH_CHILD\": 431, \"FAMILIES\": 6467, \"AVE_FAM_SZ\": 3.300000, \"HSE_UNITS\": 10227, \"VACANT\": 211, \"OWNER_OCC\": 6586, \"RENTER_OCC\": 3430 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.185468739247696, 38.867250420794058 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lake Ridge\", \"CLASS\": \"CDP\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"43432\", \"CAPITAL\": \"N\", \"AREALAND\": 8.240000, \"AREAWATER\": 0.397000, \"POP_CL\": 6, \"POP2000\": 30404, \"WHITE\": 22615, \"BLACK\": 4872, \"AMERI_ES\": 73, \"ASIAN\": 1072, \"HAWN_PI\": 39, \"OTHER\": 669, \"MULT_RACE\": 1064, \"HISPANIC\": 2161, \"MALES\": 14598, \"FEMALES\": 15806, \"AGE_UNDER5\": 2218, \"AGE_5_17\": 6764, \"AGE_18_21\": 1268, \"AGE_22_29\": 3179, \"AGE_30_39\": 5367, \"AGE_40_49\": 5538, \"AGE_50_64\": 4549, \"AGE_65_UP\": 1521, \"MED_AGE\": 33.700000, \"MED_AGE_M\": 32.400000, \"MED_AGE_F\": 34.600000, \"HOUSEHOLDS\": 10980, \"AVE_HH_SZ\": 2.760000, \"HSEHLD_1_M\": 834, \"HSEHLD_1_F\": 1375, \"MARHH_CHD\": 3581, \"MARHH_NO_C\": 2891, \"MHH_CHILD\": 226, \"FHH_CHILD\": 867, \"FAMILIES\": 8102, \"AVE_FAM_SZ\": 3.210000, \"HSE_UNITS\": 11265, \"VACANT\": 285, \"OWNER_OCC\": 7983, \"RENTER_OCC\": 2997 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.308969241489535, 38.688190358270894 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lakeside\", \"CLASS\": \"CDP\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"43464\", \"CAPITAL\": \"N\", \"AREALAND\": 4.199000, \"AREAWATER\": 0.029000, \"POP_CL\": 6, \"POP2000\": 11157, \"WHITE\": 9613, \"BLACK\": 976, \"AMERI_ES\": 68, \"ASIAN\": 160, \"HAWN_PI\": 8, \"OTHER\": 136, \"MULT_RACE\": 196, \"HISPANIC\": 273, \"MALES\": 5201, \"FEMALES\": 5956, \"AGE_UNDER5\": 673, \"AGE_5_17\": 1579, \"AGE_18_21\": 343, \"AGE_22_29\": 1282, \"AGE_30_39\": 2028, \"AGE_40_49\": 1675, \"AGE_50_64\": 1617, \"AGE_65_UP\": 1960, \"MED_AGE\": 38.400000, \"MED_AGE_M\": 36.600000, \"MED_AGE_F\": 40.300000, \"HOUSEHOLDS\": 4982, \"AVE_HH_SZ\": 2.190000, \"HSEHLD_1_M\": 654, \"HSEHLD_1_F\": 1033, \"MARHH_CHD\": 787, \"MARHH_NO_C\": 1308, \"MHH_CHILD\": 84, \"FHH_CHILD\": 331, \"FAMILIES\": 2908, \"AVE_FAM_SZ\": 2.800000, \"HSE_UNITS\": 5177, \"VACANT\": 195, \"OWNER_OCC\": 3455, \"RENTER_OCC\": 1527 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.475760538643698, 37.610695292090597 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Laurel\", \"CLASS\": \"CDP\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"44280\", \"CAPITAL\": \"N\", \"AREALAND\": 5.482000, \"AREAWATER\": 0.019000, \"POP_CL\": 6, \"POP2000\": 14875, \"WHITE\": 9666, \"BLACK\": 3615, \"AMERI_ES\": 49, \"ASIAN\": 917, \"HAWN_PI\": 8, \"OTHER\": 310, \"MULT_RACE\": 310, \"HISPANIC\": 618, \"MALES\": 7183, \"FEMALES\": 7692, \"AGE_UNDER5\": 914, \"AGE_5_17\": 2096, \"AGE_18_21\": 758, \"AGE_22_29\": 2433, \"AGE_30_39\": 2983, \"AGE_40_49\": 2078, \"AGE_50_64\": 1982, \"AGE_65_UP\": 1631, \"MED_AGE\": 34.100000, \"MED_AGE_M\": 32.600000, \"MED_AGE_F\": 35.600000, \"HOUSEHOLDS\": 6288, \"AVE_HH_SZ\": 2.240000, \"HSEHLD_1_M\": 811, \"HSEHLD_1_F\": 1251, \"MARHH_CHD\": 1157, \"MARHH_NO_C\": 1487, \"MHH_CHILD\": 104, \"FHH_CHILD\": 449, \"FAMILIES\": 3633, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 6522, \"VACANT\": 234, \"OWNER_OCC\": 3663, \"RENTER_OCC\": 2625 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.506674303272092, 37.634012278923649 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Leesburg\", \"CLASS\": \"town\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"44984\", \"CAPITAL\": \"N\", \"AREALAND\": 11.602000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 28311, \"WHITE\": 23580, \"BLACK\": 2604, \"AMERI_ES\": 53, \"ASIAN\": 739, \"HAWN_PI\": 9, \"OTHER\": 716, \"MULT_RACE\": 610, \"HISPANIC\": 1667, \"MALES\": 13907, \"FEMALES\": 14404, \"AGE_UNDER5\": 2776, \"AGE_5_17\": 5535, \"AGE_18_21\": 926, \"AGE_22_29\": 3106, \"AGE_30_39\": 6184, \"AGE_40_49\": 4557, \"AGE_50_64\": 3488, \"AGE_65_UP\": 1739, \"MED_AGE\": 33.100000, \"MED_AGE_M\": 32.500000, \"MED_AGE_F\": 33.800000, \"HOUSEHOLDS\": 10325, \"AVE_HH_SZ\": 2.690000, \"HSEHLD_1_M\": 1007, \"HSEHLD_1_F\": 1354, \"MARHH_CHD\": 3418, \"MARHH_NO_C\": 2495, \"MHH_CHILD\": 170, \"FHH_CHILD\": 663, \"FAMILIES\": 7258, \"AVE_FAM_SZ\": 3.200000, \"HSE_UNITS\": 10671, \"VACANT\": 346, \"OWNER_OCC\": 7008, \"RENTER_OCC\": 3317 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.557882348404092, 39.109219241283633 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lincolnia\", \"CLASS\": \"CDP\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"45784\", \"CAPITAL\": \"N\", \"AREALAND\": 2.940000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 15788, \"WHITE\": 7519, \"BLACK\": 2971, \"AMERI_ES\": 35, \"ASIAN\": 2369, \"HAWN_PI\": 3, \"OTHER\": 1812, \"MULT_RACE\": 1079, \"HISPANIC\": 3532, \"MALES\": 8047, \"FEMALES\": 7741, \"AGE_UNDER5\": 1262, \"AGE_5_17\": 2727, \"AGE_18_21\": 758, \"AGE_22_29\": 2206, \"AGE_30_39\": 2864, \"AGE_40_49\": 2466, \"AGE_50_64\": 2250, \"AGE_65_UP\": 1255, \"MED_AGE\": 33.300000, \"MED_AGE_M\": 32.200000, \"MED_AGE_F\": 34.500000, \"HOUSEHOLDS\": 5166, \"AVE_HH_SZ\": 3.030000, \"HSEHLD_1_M\": 439, \"HSEHLD_1_F\": 606, \"MARHH_CHD\": 1494, \"MARHH_NO_C\": 1331, \"MHH_CHILD\": 90, \"FHH_CHILD\": 310, \"FAMILIES\": 3705, \"AVE_FAM_SZ\": 3.450000, \"HSE_UNITS\": 5255, \"VACANT\": 89, \"OWNER_OCC\": 2757, \"RENTER_OCC\": 2409 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.150006071886978, 38.825003440912027 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lorton\", \"CLASS\": \"CDP\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"47064\", \"CAPITAL\": \"N\", \"AREALAND\": 12.380000, \"AREAWATER\": 0.086000, \"POP_CL\": 6, \"POP2000\": 17786, \"WHITE\": 8706, \"BLACK\": 6165, \"AMERI_ES\": 52, \"ASIAN\": 1357, \"HAWN_PI\": 23, \"OTHER\": 697, \"MULT_RACE\": 786, \"HISPANIC\": 1732, \"MALES\": 9891, \"FEMALES\": 7895, \"AGE_UNDER5\": 1338, \"AGE_5_17\": 3152, \"AGE_18_21\": 692, \"AGE_22_29\": 2543, \"AGE_30_39\": 4312, \"AGE_40_49\": 3451, \"AGE_50_64\": 1836, \"AGE_65_UP\": 462, \"MED_AGE\": 32.900000, \"MED_AGE_M\": 33.400000, \"MED_AGE_F\": 32.200000, \"HOUSEHOLDS\": 5663, \"AVE_HH_SZ\": 2.680000, \"HSEHLD_1_M\": 611, \"HSEHLD_1_F\": 706, \"MARHH_CHD\": 1694, \"MARHH_NO_C\": 1107, \"MHH_CHILD\": 120, \"FHH_CHILD\": 593, \"FAMILIES\": 3883, \"AVE_FAM_SZ\": 3.210000, \"HSE_UNITS\": 5892, \"VACANT\": 229, \"OWNER_OCC\": 3596, \"RENTER_OCC\": 2067 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.233590029072332, 38.70491539658844 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lynchburg\", \"CLASS\": \"city\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"47672\", \"CAPITAL\": \"N\", \"AREALAND\": 49.391000, \"AREAWATER\": 0.366000, \"POP_CL\": 7, \"POP2000\": 65269, \"WHITE\": 43487, \"BLACK\": 19382, \"AMERI_ES\": 169, \"ASIAN\": 838, \"HAWN_PI\": 28, \"OTHER\": 413, \"MULT_RACE\": 952, \"HISPANIC\": 878, \"MALES\": 29841, \"FEMALES\": 35428, \"AGE_UNDER5\": 3817, \"AGE_5_17\": 10640, \"AGE_18_21\": 6975, \"AGE_22_29\": 7235, \"AGE_30_39\": 8062, \"AGE_40_49\": 8540, \"AGE_50_64\": 9355, \"AGE_65_UP\": 10645, \"MED_AGE\": 35.100000, \"MED_AGE_M\": 33.000000, \"MED_AGE_F\": 36.900000, \"HOUSEHOLDS\": 25477, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 3184, \"HSEHLD_1_F\": 5150, \"MARHH_CHD\": 4142, \"MARHH_NO_C\": 6455, \"MHH_CHILD\": 463, \"FHH_CHILD\": 2466, \"FAMILIES\": 15588, \"AVE_FAM_SZ\": 2.920000, \"HSE_UNITS\": 27640, \"VACANT\": 2163, \"OWNER_OCC\": 14914, \"RENTER_OCC\": 10563 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.170209344716852, 37.403671930496216 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"McLean\", \"CLASS\": \"CDP\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"48376\", \"CAPITAL\": \"N\", \"AREALAND\": 18.495000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 38929, \"WHITE\": 32918, \"BLACK\": 616, \"AMERI_ES\": 37, \"ASIAN\": 4129, \"HAWN_PI\": 12, \"OTHER\": 267, \"MULT_RACE\": 950, \"HISPANIC\": 1564, \"MALES\": 18748, \"FEMALES\": 20181, \"AGE_UNDER5\": 2290, \"AGE_5_17\": 7587, \"AGE_18_21\": 897, \"AGE_22_29\": 1968, \"AGE_30_39\": 4463, \"AGE_40_49\": 6905, \"AGE_50_64\": 8593, \"AGE_65_UP\": 6226, \"MED_AGE\": 43.400000, \"MED_AGE_M\": 42.700000, \"MED_AGE_F\": 44.000000, \"HOUSEHOLDS\": 14374, \"AVE_HH_SZ\": 2.700000, \"HSEHLD_1_M\": 866, \"HSEHLD_1_F\": 1813, \"MARHH_CHD\": 4647, \"MARHH_NO_C\": 5171, \"MHH_CHILD\": 110, \"FHH_CHILD\": 450, \"FAMILIES\": 11051, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 14735, \"VACANT\": 361, \"OWNER_OCC\": 12248, \"RENTER_OCC\": 2126 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.175368925679265, 38.928344425732412 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Madison Heights\", \"CLASS\": \"CDP\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"48520\", \"CAPITAL\": \"N\", \"AREALAND\": 19.283000, \"AREAWATER\": 0.253000, \"POP_CL\": 6, \"POP2000\": 11584, \"WHITE\": 9012, \"BLACK\": 2267, \"AMERI_ES\": 77, \"ASIAN\": 52, \"HAWN_PI\": 0, \"OTHER\": 67, \"MULT_RACE\": 109, \"HISPANIC\": 103, \"MALES\": 5547, \"FEMALES\": 6037, \"AGE_UNDER5\": 673, \"AGE_5_17\": 1867, \"AGE_18_21\": 513, \"AGE_22_29\": 1083, \"AGE_30_39\": 1757, \"AGE_40_49\": 1813, \"AGE_50_64\": 2119, \"AGE_65_UP\": 1759, \"MED_AGE\": 39.500000, \"MED_AGE_M\": 38.700000, \"MED_AGE_F\": 40.300000, \"HOUSEHOLDS\": 4451, \"AVE_HH_SZ\": 2.450000, \"HSEHLD_1_M\": 427, \"HSEHLD_1_F\": 654, \"MARHH_CHD\": 900, \"MARHH_NO_C\": 1469, \"MHH_CHILD\": 93, \"FHH_CHILD\": 347, \"FAMILIES\": 3181, \"AVE_FAM_SZ\": 2.880000, \"HSE_UNITS\": 4656, \"VACANT\": 205, \"OWNER_OCC\": 3232, \"RENTER_OCC\": 1219 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.11726352224855, 37.439405934078373 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Manassas\", \"CLASS\": \"city\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"48952\", \"CAPITAL\": \"N\", \"AREALAND\": 9.934000, \"AREAWATER\": 0.022000, \"POP_CL\": 6, \"POP2000\": 35135, \"WHITE\": 25316, \"BLACK\": 4535, \"AMERI_ES\": 128, \"ASIAN\": 1206, \"HAWN_PI\": 31, \"OTHER\": 2773, \"MULT_RACE\": 1146, \"HISPANIC\": 5316, \"MALES\": 17868, \"FEMALES\": 17267, \"AGE_UNDER5\": 3020, \"AGE_5_17\": 7367, \"AGE_18_21\": 1948, \"AGE_22_29\": 4334, \"AGE_30_39\": 6720, \"AGE_40_49\": 5483, \"AGE_50_64\": 4361, \"AGE_65_UP\": 1902, \"MED_AGE\": 31.300000, \"MED_AGE_M\": 30.700000, \"MED_AGE_F\": 32.100000, \"HOUSEHOLDS\": 11757, \"AVE_HH_SZ\": 2.920000, \"HSEHLD_1_M\": 1170, \"HSEHLD_1_F\": 1305, \"MARHH_CHD\": 3804, \"MARHH_NO_C\": 2752, \"MHH_CHILD\": 307, \"FHH_CHILD\": 858, \"FAMILIES\": 8437, \"AVE_FAM_SZ\": 3.390000, \"HSE_UNITS\": 12114, \"VACANT\": 357, \"OWNER_OCC\": 8203, \"RENTER_OCC\": 3554 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.476410713616403, 38.751415279965549 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Manassas Park\", \"CLASS\": \"city\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"48968\", \"CAPITAL\": \"N\", \"AREALAND\": 2.492000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10290, \"WHITE\": 7490, \"BLACK\": 1149, \"AMERI_ES\": 45, \"ASIAN\": 418, \"HAWN_PI\": 7, \"OTHER\": 838, \"MULT_RACE\": 343, \"HISPANIC\": 1544, \"MALES\": 5242, \"FEMALES\": 5048, \"AGE_UNDER5\": 1024, \"AGE_5_17\": 2167, \"AGE_18_21\": 462, \"AGE_22_29\": 1418, \"AGE_30_39\": 2268, \"AGE_40_49\": 1440, \"AGE_50_64\": 1069, \"AGE_65_UP\": 442, \"MED_AGE\": 30.300000, \"MED_AGE_M\": 30.000000, \"MED_AGE_F\": 30.700000, \"HOUSEHOLDS\": 3254, \"AVE_HH_SZ\": 3.160000, \"HSEHLD_1_M\": 231, \"HSEHLD_1_F\": 238, \"MARHH_CHD\": 1137, \"MARHH_NO_C\": 813, \"MHH_CHILD\": 108, \"FHH_CHILD\": 232, \"FAMILIES\": 2558, \"AVE_FAM_SZ\": 3.470000, \"HSE_UNITS\": 3365, \"VACANT\": 111, \"OWNER_OCC\": 2560, \"RENTER_OCC\": 694 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.453556947202358, 38.773564289681239 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Martinsville\", \"CLASS\": \"city\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"49784\", \"CAPITAL\": \"N\", \"AREALAND\": 10.956000, \"AREAWATER\": 0.052000, \"POP_CL\": 6, \"POP2000\": 15416, \"WHITE\": 8537, \"BLACK\": 6559, \"AMERI_ES\": 16, \"ASIAN\": 72, \"HAWN_PI\": 0, \"OTHER\": 107, \"MULT_RACE\": 125, \"HISPANIC\": 358, \"MALES\": 6966, \"FEMALES\": 8450, \"AGE_UNDER5\": 867, \"AGE_5_17\": 2611, \"AGE_18_21\": 610, \"AGE_22_29\": 1315, \"AGE_30_39\": 2101, \"AGE_40_49\": 2232, \"AGE_50_64\": 2501, \"AGE_65_UP\": 3179, \"MED_AGE\": 40.800000, \"MED_AGE_M\": 38.500000, \"MED_AGE_F\": 43.000000, \"HOUSEHOLDS\": 6498, \"AVE_HH_SZ\": 2.270000, \"HSEHLD_1_M\": 797, \"HSEHLD_1_F\": 1425, \"MARHH_CHD\": 916, \"MARHH_NO_C\": 1617, \"MHH_CHILD\": 101, \"FHH_CHILD\": 694, \"FAMILIES\": 4025, \"AVE_FAM_SZ\": 2.890000, \"HSE_UNITS\": 7249, \"VACANT\": 751, \"OWNER_OCC\": 3914, \"RENTER_OCC\": 2584 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.869173464463188, 36.686142908279599 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mechanicsville\", \"CLASS\": \"CDP\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"50856\", \"CAPITAL\": \"N\", \"AREALAND\": 28.384000, \"AREAWATER\": 0.081000, \"POP_CL\": 6, \"POP2000\": 30464, \"WHITE\": 27660, \"BLACK\": 1951, \"AMERI_ES\": 130, \"ASIAN\": 275, \"HAWN_PI\": 4, \"OTHER\": 149, \"MULT_RACE\": 295, \"HISPANIC\": 359, \"MALES\": 14660, \"FEMALES\": 15804, \"AGE_UNDER5\": 2126, \"AGE_5_17\": 6073, \"AGE_18_21\": 1012, \"AGE_22_29\": 2715, \"AGE_30_39\": 5548, \"AGE_40_49\": 4940, \"AGE_50_64\": 4635, \"AGE_65_UP\": 3415, \"MED_AGE\": 36.200000, \"MED_AGE_M\": 35.300000, \"MED_AGE_F\": 37.000000, \"HOUSEHOLDS\": 11607, \"AVE_HH_SZ\": 2.610000, \"HSEHLD_1_M\": 875, \"HSEHLD_1_F\": 1414, \"MARHH_CHD\": 3597, \"MARHH_NO_C\": 3678, \"MHH_CHILD\": 182, \"FHH_CHILD\": 789, \"FAMILIES\": 8831, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 11915, \"VACANT\": 308, \"OWNER_OCC\": 9486, \"RENTER_OCC\": 2121 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.355027601669207, 37.619168345876282 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Merrifield\", \"CLASS\": \"CDP\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"51192\", \"CAPITAL\": \"N\", \"AREALAND\": 2.720000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11170, \"WHITE\": 6107, \"BLACK\": 663, \"AMERI_ES\": 28, \"ASIAN\": 3344, \"HAWN_PI\": 11, \"OTHER\": 558, \"MULT_RACE\": 459, \"HISPANIC\": 1442, \"MALES\": 5650, \"FEMALES\": 5520, \"AGE_UNDER5\": 790, \"AGE_5_17\": 1380, \"AGE_18_21\": 470, \"AGE_22_29\": 2150, \"AGE_30_39\": 2416, \"AGE_40_49\": 1748, \"AGE_50_64\": 1528, \"AGE_65_UP\": 688, \"MED_AGE\": 32.800000, \"MED_AGE_M\": 32.500000, \"MED_AGE_F\": 33.200000, \"HOUSEHOLDS\": 4396, \"AVE_HH_SZ\": 2.540000, \"HSEHLD_1_M\": 527, \"HSEHLD_1_F\": 570, \"MARHH_CHD\": 1000, \"MARHH_NO_C\": 1142, \"MHH_CHILD\": 56, \"FHH_CHILD\": 181, \"FAMILIES\": 2725, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 4534, \"VACANT\": 138, \"OWNER_OCC\": 2218, \"RENTER_OCC\": 2178 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.243011134753942, 38.873144389903551 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Montclair\", \"CLASS\": \"CDP\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"52658\", \"CAPITAL\": \"N\", \"AREALAND\": 6.038000, \"AREAWATER\": 0.131000, \"POP_CL\": 6, \"POP2000\": 15728, \"WHITE\": 12210, \"BLACK\": 2314, \"AMERI_ES\": 64, \"ASIAN\": 475, \"HAWN_PI\": 32, \"OTHER\": 170, \"MULT_RACE\": 463, \"HISPANIC\": 709, \"MALES\": 7742, \"FEMALES\": 7986, \"AGE_UNDER5\": 1159, \"AGE_5_17\": 3933, \"AGE_18_21\": 680, \"AGE_22_29\": 1225, \"AGE_30_39\": 2601, \"AGE_40_49\": 3106, \"AGE_50_64\": 2493, \"AGE_65_UP\": 531, \"MED_AGE\": 34.000000, \"MED_AGE_M\": 33.100000, \"MED_AGE_F\": 34.700000, \"HOUSEHOLDS\": 5084, \"AVE_HH_SZ\": 3.090000, \"HSEHLD_1_M\": 218, \"HSEHLD_1_F\": 342, \"MARHH_CHD\": 2162, \"MARHH_NO_C\": 1539, \"MHH_CHILD\": 84, \"FHH_CHILD\": 345, \"FAMILIES\": 4326, \"AVE_FAM_SZ\": 3.350000, \"HSE_UNITS\": 5184, \"VACANT\": 100, \"OWNER_OCC\": 4373, \"RENTER_OCC\": 711 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.343057822641256, 38.615881342395056 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mount Vernon\", \"CLASS\": \"CDP\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"54144\", \"CAPITAL\": \"N\", \"AREALAND\": 7.610000, \"AREAWATER\": 0.803000, \"POP_CL\": 6, \"POP2000\": 28582, \"WHITE\": 15554, \"BLACK\": 7904, \"AMERI_ES\": 95, \"ASIAN\": 1810, \"HAWN_PI\": 36, \"OTHER\": 1965, \"MULT_RACE\": 1218, \"HISPANIC\": 4145, \"MALES\": 13870, \"FEMALES\": 14712, \"AGE_UNDER5\": 2079, \"AGE_5_17\": 5439, \"AGE_18_21\": 1186, \"AGE_22_29\": 3098, \"AGE_30_39\": 4638, \"AGE_40_49\": 4868, \"AGE_50_64\": 4694, \"AGE_65_UP\": 2580, \"MED_AGE\": 35.800000, \"MED_AGE_M\": 35.100000, \"MED_AGE_F\": 36.500000, \"HOUSEHOLDS\": 10575, \"AVE_HH_SZ\": 2.700000, \"HSEHLD_1_M\": 1019, \"HSEHLD_1_F\": 1374, \"MARHH_CHD\": 2421, \"MARHH_NO_C\": 2975, \"MHH_CHILD\": 235, \"FHH_CHILD\": 984, \"FAMILIES\": 7488, \"AVE_FAM_SZ\": 3.160000, \"HSE_UNITS\": 10926, \"VACANT\": 351, \"OWNER_OCC\": 6777, \"RENTER_OCC\": 3798 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.107367415008866, 38.725214466231222 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Newington\", \"CLASS\": \"CDP\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"55752\", \"CAPITAL\": \"N\", \"AREALAND\": 6.644000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 19784, \"WHITE\": 13413, \"BLACK\": 2538, \"AMERI_ES\": 52, \"ASIAN\": 2307, \"HAWN_PI\": 16, \"OTHER\": 526, \"MULT_RACE\": 932, \"HISPANIC\": 1578, \"MALES\": 9695, \"FEMALES\": 10089, \"AGE_UNDER5\": 1470, \"AGE_5_17\": 4177, \"AGE_18_21\": 732, \"AGE_22_29\": 1561, \"AGE_30_39\": 3432, \"AGE_40_49\": 3745, \"AGE_50_64\": 3330, \"AGE_65_UP\": 1337, \"MED_AGE\": 36.300000, \"MED_AGE_M\": 35.700000, \"MED_AGE_F\": 36.800000, \"HOUSEHOLDS\": 6710, \"AVE_HH_SZ\": 2.930000, \"HSEHLD_1_M\": 421, \"HSEHLD_1_F\": 630, \"MARHH_CHD\": 2405, \"MARHH_NO_C\": 2064, \"MHH_CHILD\": 95, \"FHH_CHILD\": 412, \"FAMILIES\": 5322, \"AVE_FAM_SZ\": 3.280000, \"HSE_UNITS\": 6793, \"VACANT\": 83, \"OWNER_OCC\": 5264, \"RENTER_OCC\": 1446 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.203575381545775, 38.735414412270416 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Newport News\", \"CLASS\": \"city\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"56000\", \"CAPITAL\": \"N\", \"AREALAND\": 68.294000, \"AREAWATER\": 50.756000, \"POP_CL\": 8, \"POP2000\": 180150, \"WHITE\": 96383, \"BLACK\": 70388, \"AMERI_ES\": 752, \"ASIAN\": 4195, \"HAWN_PI\": 214, \"OTHER\": 3225, \"MULT_RACE\": 4993, \"HISPANIC\": 7595, \"MALES\": 87178, \"FEMALES\": 92972, \"AGE_UNDER5\": 14228, \"AGE_5_17\": 35297, \"AGE_18_21\": 11648, \"AGE_22_29\": 23368, \"AGE_30_39\": 29547, \"AGE_40_49\": 25290, \"AGE_50_64\": 22619, \"AGE_65_UP\": 18153, \"MED_AGE\": 32.000000, \"MED_AGE_M\": 30.400000, \"MED_AGE_F\": 33.500000, \"HOUSEHOLDS\": 69686, \"AVE_HH_SZ\": 2.500000, \"HSEHLD_1_M\": 8440, \"HSEHLD_1_F\": 10368, \"MARHH_CHD\": 14917, \"MARHH_NO_C\": 16167, \"MHH_CHILD\": 1530, \"FHH_CHILD\": 8414, \"FAMILIES\": 46358, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 74117, \"VACANT\": 4431, \"OWNER_OCC\": 36513, \"RENTER_OCC\": 33173 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.48458068620856, 37.071046920478551 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Norfolk\", \"CLASS\": \"city\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"57000\", \"CAPITAL\": \"N\", \"AREALAND\": 53.728000, \"AREAWATER\": 42.576000, \"POP_CL\": 8, \"POP2000\": 234403, \"WHITE\": 113358, \"BLACK\": 103387, \"AMERI_ES\": 1071, \"ASIAN\": 6593, \"HAWN_PI\": 251, \"OTHER\": 3923, \"MULT_RACE\": 5820, \"HISPANIC\": 8915, \"MALES\": 119830, \"FEMALES\": 114573, \"AGE_UNDER5\": 16546, \"AGE_5_17\": 39806, \"AGE_18_21\": 25643, \"AGE_22_29\": 36913, \"AGE_30_39\": 34155, \"AGE_40_49\": 30000, \"AGE_50_64\": 25808, \"AGE_65_UP\": 25532, \"MED_AGE\": 29.600000, \"MED_AGE_M\": 27.400000, \"MED_AGE_F\": 32.300000, \"HOUSEHOLDS\": 86210, \"AVE_HH_SZ\": 2.450000, \"HSEHLD_1_M\": 12172, \"HSEHLD_1_F\": 13831, \"MARHH_CHD\": 14122, \"MARHH_NO_C\": 17691, \"MHH_CHILD\": 1920, \"FHH_CHILD\": 10086, \"FAMILIES\": 51915, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 94416, \"VACANT\": 8206, \"OWNER_OCC\": 39238, \"RENTER_OCC\": 46972 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.259926636758479, 36.885748132942332 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Oakton\", \"CLASS\": \"CDP\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"58472\", \"CAPITAL\": \"N\", \"AREALAND\": 9.705000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 29348, \"WHITE\": 21853, \"BLACK\": 1407, \"AMERI_ES\": 58, \"ASIAN\": 4060, \"HAWN_PI\": 23, \"OTHER\": 903, \"MULT_RACE\": 1044, \"HISPANIC\": 2831, \"MALES\": 14487, \"FEMALES\": 14861, \"AGE_UNDER5\": 1926, \"AGE_5_17\": 4920, \"AGE_18_21\": 1058, \"AGE_22_29\": 3697, \"AGE_30_39\": 5128, \"AGE_40_49\": 5033, \"AGE_50_64\": 5376, \"AGE_65_UP\": 2210, \"MED_AGE\": 36.100000, \"MED_AGE_M\": 35.000000, \"MED_AGE_F\": 37.100000, \"HOUSEHOLDS\": 11118, \"AVE_HH_SZ\": 2.630000, \"HSEHLD_1_M\": 977, \"HSEHLD_1_F\": 1437, \"MARHH_CHD\": 3057, \"MARHH_NO_C\": 3372, \"MHH_CHILD\": 118, \"FHH_CHILD\": 465, \"FAMILIES\": 7648, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 11392, \"VACANT\": 274, \"OWNER_OCC\": 7300, \"RENTER_OCC\": 3818 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.289916661748919, 38.883050365684781 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Petersburg\", \"CLASS\": \"city\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"61832\", \"CAPITAL\": \"N\", \"AREALAND\": 22.881000, \"AREAWATER\": 0.305000, \"POP_CL\": 6, \"POP2000\": 33740, \"WHITE\": 6249, \"BLACK\": 26643, \"AMERI_ES\": 67, \"ASIAN\": 236, \"HAWN_PI\": 9, \"OTHER\": 198, \"MULT_RACE\": 338, \"HISPANIC\": 463, \"MALES\": 15426, \"FEMALES\": 18314, \"AGE_UNDER5\": 2165, \"AGE_5_17\": 6319, \"AGE_18_21\": 1738, \"AGE_22_29\": 3313, \"AGE_30_39\": 4770, \"AGE_40_49\": 4820, \"AGE_50_64\": 5368, \"AGE_65_UP\": 5247, \"MED_AGE\": 36.900000, \"MED_AGE_M\": 34.800000, \"MED_AGE_F\": 38.900000, \"HOUSEHOLDS\": 13799, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 1806, \"HSEHLD_1_F\": 2632, \"MARHH_CHD\": 1409, \"MARHH_NO_C\": 2741, \"MHH_CHILD\": 327, \"FHH_CHILD\": 2070, \"FAMILIES\": 8508, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 15955, \"VACANT\": 2156, \"OWNER_OCC\": 7107, \"RENTER_OCC\": 6692 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.400430769169944, 37.212950328003018 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Poquoson\", \"CLASS\": \"city\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"63768\", \"CAPITAL\": \"N\", \"AREALAND\": 15.516000, \"AREAWATER\": 62.909000, \"POP_CL\": 6, \"POP2000\": 11566, \"WHITE\": 11134, \"BLACK\": 78, \"AMERI_ES\": 27, \"ASIAN\": 182, \"HAWN_PI\": 4, \"OTHER\": 31, \"MULT_RACE\": 110, \"HISPANIC\": 122, \"MALES\": 5789, \"FEMALES\": 5777, \"AGE_UNDER5\": 587, \"AGE_5_17\": 2515, \"AGE_18_21\": 480, \"AGE_22_29\": 710, \"AGE_30_39\": 1601, \"AGE_40_49\": 2026, \"AGE_50_64\": 2333, \"AGE_65_UP\": 1314, \"MED_AGE\": 39.500000, \"MED_AGE_M\": 37.800000, \"MED_AGE_F\": 41.000000, \"HOUSEHOLDS\": 4166, \"AVE_HH_SZ\": 2.750000, \"HSEHLD_1_M\": 270, \"HSEHLD_1_F\": 391, \"MARHH_CHD\": 1347, \"MARHH_NO_C\": 1545, \"MHH_CHILD\": 80, \"FHH_CHILD\": 203, \"FAMILIES\": 3370, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 4300, \"VACANT\": 134, \"OWNER_OCC\": 3503, \"RENTER_OCC\": 663 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.37390638695652, 37.133154023088458 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Portsmouth\", \"CLASS\": \"city\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"64000\", \"CAPITAL\": \"N\", \"AREALAND\": 33.160000, \"AREAWATER\": 13.461000, \"POP_CL\": 8, \"POP2000\": 100565, \"WHITE\": 46096, \"BLACK\": 50899, \"AMERI_ES\": 478, \"ASIAN\": 775, \"HAWN_PI\": 67, \"OTHER\": 618, \"MULT_RACE\": 1632, \"HISPANIC\": 1748, \"MALES\": 48583, \"FEMALES\": 51982, \"AGE_UNDER5\": 7171, \"AGE_5_17\": 18683, \"AGE_18_21\": 6589, \"AGE_22_29\": 11570, \"AGE_30_39\": 14777, \"AGE_40_49\": 14192, \"AGE_50_64\": 13729, \"AGE_65_UP\": 13854, \"MED_AGE\": 34.500000, \"MED_AGE_M\": 32.000000, \"MED_AGE_F\": 36.800000, \"HOUSEHOLDS\": 38170, \"AVE_HH_SZ\": 2.510000, \"HSEHLD_1_M\": 4373, \"HSEHLD_1_F\": 6130, \"MARHH_CHD\": 6259, \"MARHH_NO_C\": 9445, \"MHH_CHILD\": 848, \"FHH_CHILD\": 4591, \"FAMILIES\": 25482, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 41605, \"VACANT\": 3435, \"OWNER_OCC\": 22356, \"RENTER_OCC\": 15814 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.345666239629281, 36.831299046501606 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Radford\", \"CLASS\": \"city\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"65392\", \"CAPITAL\": \"N\", \"AREALAND\": 9.818000, \"AREAWATER\": 0.371000, \"POP_CL\": 6, \"POP2000\": 15859, \"WHITE\": 13990, \"BLACK\": 1284, \"AMERI_ES\": 39, \"ASIAN\": 226, \"HAWN_PI\": 4, \"OTHER\": 77, \"MULT_RACE\": 239, \"HISPANIC\": 184, \"MALES\": 7215, \"FEMALES\": 8644, \"AGE_UNDER5\": 561, \"AGE_5_17\": 1488, \"AGE_18_21\": 5138, \"AGE_22_29\": 2876, \"AGE_30_39\": 1353, \"AGE_40_49\": 1381, \"AGE_50_64\": 1597, \"AGE_65_UP\": 1465, \"MED_AGE\": 22.800000, \"MED_AGE_M\": 23.600000, \"MED_AGE_F\": 22.200000, \"HOUSEHOLDS\": 5809, \"AVE_HH_SZ\": 2.250000, \"HSEHLD_1_M\": 808, \"HSEHLD_1_F\": 1050, \"MARHH_CHD\": 732, \"MARHH_NO_C\": 1240, \"MHH_CHILD\": 60, \"FHH_CHILD\": 299, \"FAMILIES\": 2644, \"AVE_FAM_SZ\": 2.780000, \"HSE_UNITS\": 6137, \"VACANT\": 328, \"OWNER_OCC\": 2588, \"RENTER_OCC\": 3221 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.569524496172363, 37.127584901697524 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Reston\", \"CLASS\": \"CDP\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"66672\", \"CAPITAL\": \"N\", \"AREALAND\": 17.152000, \"AREAWATER\": 0.213000, \"POP_CL\": 7, \"POP2000\": 56407, \"WHITE\": 41528, \"BLACK\": 5145, \"AMERI_ES\": 141, \"ASIAN\": 5427, \"HAWN_PI\": 22, \"OTHER\": 2323, \"MULT_RACE\": 1821, \"HISPANIC\": 5699, \"MALES\": 27565, \"FEMALES\": 28842, \"AGE_UNDER5\": 3932, \"AGE_5_17\": 8762, \"AGE_18_21\": 1808, \"AGE_22_29\": 6938, \"AGE_30_39\": 10784, \"AGE_40_49\": 9218, \"AGE_50_64\": 10842, \"AGE_65_UP\": 4123, \"MED_AGE\": 36.200000, \"MED_AGE_M\": 34.900000, \"MED_AGE_F\": 37.400000, \"HOUSEHOLDS\": 23320, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 2955, \"HSEHLD_1_F\": 3877, \"MARHH_CHD\": 5331, \"MARHH_NO_C\": 6370, \"MHH_CHILD\": 315, \"FHH_CHILD\": 1250, \"FAMILIES\": 14489, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 24210, \"VACANT\": 890, \"OWNER_OCC\": 15557, \"RENTER_OCC\": 7763 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.346373176112465, 38.95457733701231 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Richmond\", \"CLASS\": \"city\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"67000\", \"CAPITAL\": \"Y\", \"AREALAND\": 60.070000, \"AREAWATER\": 2.478000, \"POP_CL\": 8, \"POP2000\": 197790, \"WHITE\": 75744, \"BLACK\": 113108, \"AMERI_ES\": 479, \"ASIAN\": 2471, \"HAWN_PI\": 157, \"OTHER\": 2948, \"MULT_RACE\": 2883, \"HISPANIC\": 5074, \"MALES\": 92068, \"FEMALES\": 105722, \"AGE_UNDER5\": 12376, \"AGE_5_17\": 30802, \"AGE_18_21\": 15358, \"AGE_22_29\": 27788, \"AGE_30_39\": 30835, \"AGE_40_49\": 28240, \"AGE_50_64\": 26262, \"AGE_65_UP\": 26129, \"MED_AGE\": 33.900000, \"MED_AGE_M\": 32.400000, \"MED_AGE_F\": 35.400000, \"HOUSEHOLDS\": 84549, \"AVE_HH_SZ\": 2.210000, \"HSEHLD_1_M\": 13332, \"HSEHLD_1_F\": 18491, \"MARHH_CHD\": 8140, \"MARHH_NO_C\": 14758, \"MHH_CHILD\": 1355, \"FHH_CHILD\": 10046, \"FAMILIES\": 43649, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 92282, \"VACANT\": 7733, \"OWNER_OCC\": 39008, \"RENTER_OCC\": 45541 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.46152058535219, 37.538346298782429 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Roanoke\", \"CLASS\": \"city\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"68000\", \"CAPITAL\": \"N\", \"AREALAND\": 42.884000, \"AREAWATER\": 0.028000, \"POP_CL\": 7, \"POP2000\": 94911, \"WHITE\": 65848, \"BLACK\": 25380, \"AMERI_ES\": 190, \"ASIAN\": 1096, \"HAWN_PI\": 23, \"OTHER\": 685, \"MULT_RACE\": 1689, \"HISPANIC\": 1405, \"MALES\": 44501, \"FEMALES\": 50410, \"AGE_UNDER5\": 6200, \"AGE_5_17\": 15257, \"AGE_18_21\": 4075, \"AGE_22_29\": 11003, \"AGE_30_39\": 14311, \"AGE_40_49\": 14177, \"AGE_50_64\": 14328, \"AGE_65_UP\": 15560, \"MED_AGE\": 37.600000, \"MED_AGE_M\": 35.900000, \"MED_AGE_F\": 39.400000, \"HOUSEHOLDS\": 42003, \"AVE_HH_SZ\": 2.200000, \"HSEHLD_1_M\": 6079, \"HSEHLD_1_F\": 9010, \"MARHH_CHD\": 5813, \"MARHH_NO_C\": 9761, \"MHH_CHILD\": 826, \"FHH_CHILD\": 4059, \"FAMILIES\": 24255, \"AVE_FAM_SZ\": 2.860000, \"HSE_UNITS\": 45257, \"VACANT\": 3254, \"OWNER_OCC\": 23637, \"RENTER_OCC\": 18366 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.955713431414438, 37.276894900527793 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Rose Hill\", \"CLASS\": \"CDP\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"68880\", \"CAPITAL\": \"N\", \"AREALAND\": 4.600000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 15058, \"WHITE\": 11070, \"BLACK\": 1434, \"AMERI_ES\": 41, \"ASIAN\": 1277, \"HAWN_PI\": 8, \"OTHER\": 663, \"MULT_RACE\": 565, \"HISPANIC\": 1604, \"MALES\": 7399, \"FEMALES\": 7659, \"AGE_UNDER5\": 1032, \"AGE_5_17\": 2392, \"AGE_18_21\": 472, \"AGE_22_29\": 1331, \"AGE_30_39\": 2779, \"AGE_40_49\": 2687, \"AGE_50_64\": 2814, \"AGE_65_UP\": 1551, \"MED_AGE\": 38.400000, \"MED_AGE_M\": 37.900000, \"MED_AGE_F\": 38.800000, \"HOUSEHOLDS\": 5683, \"AVE_HH_SZ\": 2.650000, \"HSEHLD_1_M\": 500, \"HSEHLD_1_F\": 696, \"MARHH_CHD\": 1512, \"MARHH_NO_C\": 1936, \"MHH_CHILD\": 75, \"FHH_CHILD\": 201, \"FAMILIES\": 4081, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 5783, \"VACANT\": 100, \"OWNER_OCC\": 4670, \"RENTER_OCC\": 1013 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.108989480495921, 38.789263464710004 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Salem\", \"CLASS\": \"city\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"70000\", \"CAPITAL\": \"N\", \"AREALAND\": 14.588000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 24747, \"WHITE\": 22738, \"BLACK\": 1455, \"AMERI_ES\": 32, \"ASIAN\": 241, \"HAWN_PI\": 6, \"OTHER\": 61, \"MULT_RACE\": 214, \"HISPANIC\": 205, \"MALES\": 11677, \"FEMALES\": 13070, \"AGE_UNDER5\": 1212, \"AGE_5_17\": 3950, \"AGE_18_21\": 1989, \"AGE_22_29\": 2316, \"AGE_30_39\": 3226, \"AGE_40_49\": 3768, \"AGE_50_64\": 4138, \"AGE_65_UP\": 4148, \"MED_AGE\": 39.200000, \"MED_AGE_M\": 37.400000, \"MED_AGE_F\": 40.700000, \"HOUSEHOLDS\": 9954, \"AVE_HH_SZ\": 2.320000, \"HSEHLD_1_M\": 1023, \"HSEHLD_1_F\": 1867, \"MARHH_CHD\": 1993, \"MARHH_NO_C\": 3077, \"MHH_CHILD\": 173, \"FHH_CHILD\": 641, \"FAMILIES\": 6544, \"AVE_FAM_SZ\": 2.840000, \"HSE_UNITS\": 10403, \"VACANT\": 449, \"OWNER_OCC\": 6730, \"RENTER_OCC\": 3224 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.055838256941783, 37.286894899317105 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Springfield\", \"CLASS\": \"CDP\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"74592\", \"CAPITAL\": \"N\", \"AREALAND\": 9.756000, \"AREAWATER\": 0.031000, \"POP_CL\": 6, \"POP2000\": 30417, \"WHITE\": 17572, \"BLACK\": 2722, \"AMERI_ES\": 92, \"ASIAN\": 6251, \"HAWN_PI\": 17, \"OTHER\": 2356, \"MULT_RACE\": 1407, \"HISPANIC\": 5373, \"MALES\": 15144, \"FEMALES\": 15273, \"AGE_UNDER5\": 2097, \"AGE_5_17\": 5038, \"AGE_18_21\": 1336, \"AGE_22_29\": 3393, \"AGE_30_39\": 5453, \"AGE_40_49\": 5030, \"AGE_50_64\": 4671, \"AGE_65_UP\": 3399, \"MED_AGE\": 36.200000, \"MED_AGE_M\": 35.200000, \"MED_AGE_F\": 37.300000, \"HOUSEHOLDS\": 10495, \"AVE_HH_SZ\": 2.880000, \"HSEHLD_1_M\": 904, \"HSEHLD_1_F\": 1414, \"MARHH_CHD\": 2836, \"MARHH_NO_C\": 3247, \"MHH_CHILD\": 165, \"FHH_CHILD\": 453, \"FAMILIES\": 7476, \"AVE_FAM_SZ\": 3.370000, \"HSE_UNITS\": 10832, \"VACANT\": 337, \"OWNER_OCC\": 7464, \"RENTER_OCC\": 3031 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.179380706449223, 38.788713424919209 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Staunton\", \"CLASS\": \"city\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"75216\", \"CAPITAL\": \"N\", \"AREALAND\": 19.708000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 23853, \"WHITE\": 19866, \"BLACK\": 3328, \"AMERI_ES\": 52, \"ASIAN\": 110, \"HAWN_PI\": 2, \"OTHER\": 125, \"MULT_RACE\": 370, \"HISPANIC\": 265, \"MALES\": 11237, \"FEMALES\": 12616, \"AGE_UNDER5\": 1241, \"AGE_5_17\": 3488, \"AGE_18_21\": 1547, \"AGE_22_29\": 2413, \"AGE_30_39\": 3320, \"AGE_40_49\": 3530, \"AGE_50_64\": 4014, \"AGE_65_UP\": 4300, \"MED_AGE\": 39.800000, \"MED_AGE_M\": 38.500000, \"MED_AGE_F\": 41.200000, \"HOUSEHOLDS\": 9676, \"AVE_HH_SZ\": 2.190000, \"HSEHLD_1_M\": 1284, \"HSEHLD_1_F\": 2073, \"MARHH_CHD\": 1562, \"MARHH_NO_C\": 2735, \"MHH_CHILD\": 179, \"FHH_CHILD\": 667, \"FAMILIES\": 5766, \"AVE_FAM_SZ\": 2.810000, \"HSE_UNITS\": 10427, \"VACANT\": 751, \"OWNER_OCC\": 5939, \"RENTER_OCC\": 3737 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.076454927590135, 38.157919928039654 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Suffolk\", \"CLASS\": \"city\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"76432\", \"CAPITAL\": \"N\", \"AREALAND\": 400.018000, \"AREAWATER\": 29.048000, \"POP_CL\": 7, \"POP2000\": 63677, \"WHITE\": 34271, \"BLACK\": 27718, \"AMERI_ES\": 191, \"ASIAN\": 491, \"HAWN_PI\": 15, \"OTHER\": 233, \"MULT_RACE\": 758, \"HISPANIC\": 809, \"MALES\": 30410, \"FEMALES\": 33267, \"AGE_UNDER5\": 4618, \"AGE_5_17\": 13115, \"AGE_18_21\": 2687, \"AGE_22_29\": 5563, \"AGE_30_39\": 10628, \"AGE_40_49\": 9922, \"AGE_50_64\": 9876, \"AGE_65_UP\": 7268, \"MED_AGE\": 36.000000, \"MED_AGE_M\": 35.100000, \"MED_AGE_F\": 36.600000, \"HOUSEHOLDS\": 23283, \"AVE_HH_SZ\": 2.690000, \"HSEHLD_1_M\": 1971, \"HSEHLD_1_F\": 2725, \"MARHH_CHD\": 5824, \"MARHH_NO_C\": 7009, \"MHH_CHILD\": 462, \"FHH_CHILD\": 2240, \"FAMILIES\": 17730, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 24704, \"VACANT\": 1421, \"OWNER_OCC\": 16815, \"RENTER_OCC\": 6468 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.609902464967803, 36.741347811987694 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Timberlake\", \"CLASS\": \"CDP\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"78688\", \"CAPITAL\": \"N\", \"AREALAND\": 8.816000, \"AREAWATER\": 0.093000, \"POP_CL\": 6, \"POP2000\": 10683, \"WHITE\": 9735, \"BLACK\": 579, \"AMERI_ES\": 30, \"ASIAN\": 183, \"HAWN_PI\": 2, \"OTHER\": 50, \"MULT_RACE\": 104, \"HISPANIC\": 108, \"MALES\": 5140, \"FEMALES\": 5543, \"AGE_UNDER5\": 590, \"AGE_5_17\": 1831, \"AGE_18_21\": 452, \"AGE_22_29\": 1224, \"AGE_30_39\": 1559, \"AGE_40_49\": 1553, \"AGE_50_64\": 2036, \"AGE_65_UP\": 1438, \"MED_AGE\": 38.200000, \"MED_AGE_M\": 37.300000, \"MED_AGE_F\": 39.100000, \"HOUSEHOLDS\": 4523, \"AVE_HH_SZ\": 2.360000, \"HSEHLD_1_M\": 466, \"HSEHLD_1_F\": 680, \"MARHH_CHD\": 1015, \"MARHH_NO_C\": 1566, \"MHH_CHILD\": 65, \"FHH_CHILD\": 258, \"FAMILIES\": 3151, \"AVE_FAM_SZ\": 2.830000, \"HSE_UNITS\": 4707, \"VACANT\": 184, \"OWNER_OCC\": 3313, \"RENTER_OCC\": 1210 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.247908088818846, 37.33148192599797 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Tuckahoe\", \"CLASS\": \"CDP\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"79560\", \"CAPITAL\": \"N\", \"AREALAND\": 20.565000, \"AREAWATER\": 1.065000, \"POP_CL\": 6, \"POP2000\": 43242, \"WHITE\": 38393, \"BLACK\": 2499, \"AMERI_ES\": 72, \"ASIAN\": 1484, \"HAWN_PI\": 14, \"OTHER\": 290, \"MULT_RACE\": 490, \"HISPANIC\": 923, \"MALES\": 20159, \"FEMALES\": 23083, \"AGE_UNDER5\": 2427, \"AGE_5_17\": 7626, \"AGE_18_21\": 1446, \"AGE_22_29\": 4097, \"AGE_30_39\": 5769, \"AGE_40_49\": 6978, \"AGE_50_64\": 7223, \"AGE_65_UP\": 7676, \"MED_AGE\": 40.400000, \"MED_AGE_M\": 38.300000, \"MED_AGE_F\": 42.000000, \"HOUSEHOLDS\": 18126, \"AVE_HH_SZ\": 2.360000, \"HSEHLD_1_M\": 1643, \"HSEHLD_1_F\": 3500, \"MARHH_CHD\": 4285, \"MARHH_NO_C\": 5677, \"MHH_CHILD\": 210, \"FHH_CHILD\": 911, \"FAMILIES\": 11957, \"AVE_FAM_SZ\": 2.920000, \"HSE_UNITS\": 18647, \"VACANT\": 521, \"OWNER_OCC\": 12353, \"RENTER_OCC\": 5773 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.575949702332679, 37.595896251409151 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Tysons Corner\", \"CLASS\": \"CDP\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"79952\", \"CAPITAL\": \"N\", \"AREALAND\": 4.901000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 18540, \"WHITE\": 13201, \"BLACK\": 716, \"AMERI_ES\": 25, \"ASIAN\": 3287, \"HAWN_PI\": 13, \"OTHER\": 233, \"MULT_RACE\": 1065, \"HISPANIC\": 1140, \"MALES\": 8910, \"FEMALES\": 9630, \"AGE_UNDER5\": 1078, \"AGE_5_17\": 2224, \"AGE_18_21\": 505, \"AGE_22_29\": 3200, \"AGE_30_39\": 3692, \"AGE_40_49\": 2902, \"AGE_50_64\": 3048, \"AGE_65_UP\": 1891, \"MED_AGE\": 35.800000, \"MED_AGE_M\": 34.900000, \"MED_AGE_F\": 36.700000, \"HOUSEHOLDS\": 8814, \"AVE_HH_SZ\": 2.100000, \"HSEHLD_1_M\": 1500, \"HSEHLD_1_F\": 1939, \"MARHH_CHD\": 1495, \"MARHH_NO_C\": 2208, \"MHH_CHILD\": 58, \"FHH_CHILD\": 283, \"FAMILIES\": 4512, \"AVE_FAM_SZ\": 2.860000, \"HSE_UNITS\": 9474, \"VACANT\": 660, \"OWNER_OCC\": 4140, \"RENTER_OCC\": 4674 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.229850328437266, 38.918485396351464 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Vienna\", \"CLASS\": \"town\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"81072\", \"CAPITAL\": \"N\", \"AREALAND\": 4.442000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14453, \"WHITE\": 11722, \"BLACK\": 497, \"AMERI_ES\": 27, \"ASIAN\": 1368, \"HAWN_PI\": 0, \"OTHER\": 392, \"MULT_RACE\": 447, \"HISPANIC\": 1068, \"MALES\": 7205, \"FEMALES\": 7248, \"AGE_UNDER5\": 941, \"AGE_5_17\": 2468, \"AGE_18_21\": 428, \"AGE_22_29\": 1046, \"AGE_30_39\": 2334, \"AGE_40_49\": 2549, \"AGE_50_64\": 2716, \"AGE_65_UP\": 1971, \"MED_AGE\": 40.000000, \"MED_AGE_M\": 39.000000, \"MED_AGE_F\": 41.000000, \"HOUSEHOLDS\": 5331, \"AVE_HH_SZ\": 2.710000, \"HSEHLD_1_M\": 388, \"HSEHLD_1_F\": 640, \"MARHH_CHD\": 1535, \"MARHH_NO_C\": 1885, \"MHH_CHILD\": 65, \"FHH_CHILD\": 162, \"FAMILIES\": 3980, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 5438, \"VACANT\": 107, \"OWNER_OCC\": 4625, \"RENTER_OCC\": 706 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.260688981850564, 38.899161380429568 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Virginia Beach\", \"CLASS\": \"city\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"82000\", \"CAPITAL\": \"N\", \"AREALAND\": 248.291000, \"AREAWATER\": 249.033000, \"POP_CL\": 8, \"POP2000\": 425257, \"WHITE\": 303681, \"BLACK\": 80593, \"AMERI_ES\": 1619, \"ASIAN\": 20869, \"HAWN_PI\": 416, \"OTHER\": 6402, \"MULT_RACE\": 11677, \"HISPANIC\": 17770, \"MALES\": 210524, \"FEMALES\": 214733, \"AGE_UNDER5\": 30616, \"AGE_5_17\": 86272, \"AGE_18_21\": 23178, \"AGE_22_29\": 53670, \"AGE_30_39\": 75791, \"AGE_40_49\": 65038, \"AGE_50_64\": 54759, \"AGE_65_UP\": 35933, \"MED_AGE\": 32.700000, \"MED_AGE_M\": 31.300000, \"MED_AGE_F\": 34.100000, \"HOUSEHOLDS\": 154455, \"AVE_HH_SZ\": 2.700000, \"HSEHLD_1_M\": 14013, \"HSEHLD_1_F\": 17433, \"MARHH_CHD\": 44182, \"MARHH_NO_C\": 41800, \"MHH_CHILD\": 3350, \"FHH_CHILD\": 12413, \"FAMILIES\": 110953, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 162277, \"VACANT\": 7822, \"OWNER_OCC\": 101308, \"RENTER_OCC\": 53147 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.087208316958566, 36.834499320377731 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Waynesboro\", \"CLASS\": \"city\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"83680\", \"CAPITAL\": \"N\", \"AREALAND\": 15.360000, \"AREAWATER\": 0.019000, \"POP_CL\": 6, \"POP2000\": 19520, \"WHITE\": 16877, \"BLACK\": 1945, \"AMERI_ES\": 61, \"ASIAN\": 112, \"HAWN_PI\": 6, \"OTHER\": 213, \"MULT_RACE\": 306, \"HISPANIC\": 643, \"MALES\": 9140, \"FEMALES\": 10380, \"AGE_UNDER5\": 1282, \"AGE_5_17\": 3382, \"AGE_18_21\": 858, \"AGE_22_29\": 1876, \"AGE_30_39\": 2678, \"AGE_40_49\": 2690, \"AGE_50_64\": 3313, \"AGE_65_UP\": 3441, \"MED_AGE\": 38.900000, \"MED_AGE_M\": 36.800000, \"MED_AGE_F\": 40.700000, \"HOUSEHOLDS\": 8332, \"AVE_HH_SZ\": 2.310000, \"HSEHLD_1_M\": 950, \"HSEHLD_1_F\": 1561, \"MARHH_CHD\": 1449, \"MARHH_NO_C\": 2429, \"MHH_CHILD\": 191, \"FHH_CHILD\": 772, \"FAMILIES\": 5434, \"AVE_FAM_SZ\": 2.850000, \"HSE_UNITS\": 8863, \"VACANT\": 531, \"OWNER_OCC\": 5103, \"RENTER_OCC\": 3229 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -78.894522548669713, 38.069873946243106 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"West Springfield\", \"CLASS\": \"CDP\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"84976\", \"CAPITAL\": \"N\", \"AREALAND\": 6.824000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 28378, \"WHITE\": 21371, \"BLACK\": 1387, \"AMERI_ES\": 79, \"ASIAN\": 3946, \"HAWN_PI\": 17, \"OTHER\": 724, \"MULT_RACE\": 854, \"HISPANIC\": 2081, \"MALES\": 13845, \"FEMALES\": 14533, \"AGE_UNDER5\": 1658, \"AGE_5_17\": 5611, \"AGE_18_21\": 1020, \"AGE_22_29\": 2134, \"AGE_30_39\": 4311, \"AGE_40_49\": 5192, \"AGE_50_64\": 5642, \"AGE_65_UP\": 2810, \"MED_AGE\": 39.000000, \"MED_AGE_M\": 38.200000, \"MED_AGE_F\": 39.800000, \"HOUSEHOLDS\": 10289, \"AVE_HH_SZ\": 2.760000, \"HSEHLD_1_M\": 700, \"HSEHLD_1_F\": 1231, \"MARHH_CHD\": 3172, \"MARHH_NO_C\": 3452, \"MHH_CHILD\": 123, \"FHH_CHILD\": 496, \"FAMILIES\": 7839, \"AVE_FAM_SZ\": 3.160000, \"HSE_UNITS\": 10425, \"VACANT\": 136, \"OWNER_OCC\": 8544, \"RENTER_OCC\": 1745 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.232819138556366, 38.788436396145173 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Williamsburg\", \"CLASS\": \"city\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"86160\", \"CAPITAL\": \"N\", \"AREALAND\": 8.545000, \"AREAWATER\": 0.129000, \"POP_CL\": 6, \"POP2000\": 11998, \"WHITE\": 9543, \"BLACK\": 1601, \"AMERI_ES\": 32, \"ASIAN\": 549, \"HAWN_PI\": 7, \"OTHER\": 90, \"MULT_RACE\": 176, \"HISPANIC\": 302, \"MALES\": 5382, \"FEMALES\": 6616, \"AGE_UNDER5\": 326, \"AGE_5_17\": 822, \"AGE_18_21\": 4434, \"AGE_22_29\": 1757, \"AGE_30_39\": 967, \"AGE_40_49\": 955, \"AGE_50_64\": 1333, \"AGE_65_UP\": 1404, \"MED_AGE\": 22.600000, \"MED_AGE_M\": 23.000000, \"MED_AGE_F\": 22.300000, \"HOUSEHOLDS\": 3619, \"AVE_HH_SZ\": 2.070000, \"HSEHLD_1_M\": 496, \"HSEHLD_1_F\": 803, \"MARHH_CHD\": 375, \"MARHH_NO_C\": 973, \"MHH_CHILD\": 36, \"FHH_CHILD\": 186, \"FAMILIES\": 1787, \"AVE_FAM_SZ\": 2.660000, \"HSE_UNITS\": 3880, \"VACANT\": 261, \"OWNER_OCC\": 1602, \"RENTER_OCC\": 2017 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -76.708360067068554, 37.27488273789713 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Winchester\", \"CLASS\": \"city\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"86720\", \"CAPITAL\": \"N\", \"AREALAND\": 9.334000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 23585, \"WHITE\": 19355, \"BLACK\": 2470, \"AMERI_ES\": 56, \"ASIAN\": 375, \"HAWN_PI\": 8, \"OTHER\": 817, \"MULT_RACE\": 504, \"HISPANIC\": 1527, \"MALES\": 11434, \"FEMALES\": 12151, \"AGE_UNDER5\": 1432, \"AGE_5_17\": 3680, \"AGE_18_21\": 1828, \"AGE_22_29\": 3098, \"AGE_30_39\": 3472, \"AGE_40_49\": 3286, \"AGE_50_64\": 3358, \"AGE_65_UP\": 3431, \"MED_AGE\": 35.200000, \"MED_AGE_M\": 33.800000, \"MED_AGE_F\": 36.600000, \"HOUSEHOLDS\": 10001, \"AVE_HH_SZ\": 2.280000, \"HSEHLD_1_M\": 1446, \"HSEHLD_1_F\": 1997, \"MARHH_CHD\": 1661, \"MARHH_NO_C\": 2385, \"MHH_CHILD\": 212, \"FHH_CHILD\": 684, \"FAMILIES\": 5649, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 10587, \"VACANT\": 586, \"OWNER_OCC\": 4567, \"RENTER_OCC\": 5434 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -78.166780794779243, 39.178355049077183 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wolf Trap\", \"CLASS\": \"CDP\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"87240\", \"CAPITAL\": \"N\", \"AREALAND\": 9.258000, \"AREAWATER\": 0.014000, \"POP_CL\": 6, \"POP2000\": 14001, \"WHITE\": 12104, \"BLACK\": 250, \"AMERI_ES\": 18, \"ASIAN\": 1170, \"HAWN_PI\": 0, \"OTHER\": 90, \"MULT_RACE\": 369, \"HISPANIC\": 368, \"MALES\": 6974, \"FEMALES\": 7027, \"AGE_UNDER5\": 1017, \"AGE_5_17\": 3048, \"AGE_18_21\": 373, \"AGE_22_29\": 525, \"AGE_30_39\": 1716, \"AGE_40_49\": 2572, \"AGE_50_64\": 3527, \"AGE_65_UP\": 1223, \"MED_AGE\": 41.200000, \"MED_AGE_M\": 41.200000, \"MED_AGE_F\": 41.100000, \"HOUSEHOLDS\": 4566, \"AVE_HH_SZ\": 3.070000, \"HSEHLD_1_M\": 112, \"HSEHLD_1_F\": 177, \"MARHH_CHD\": 1957, \"MARHH_NO_C\": 1975, \"MHH_CHILD\": 27, \"FHH_CHILD\": 91, \"FAMILIES\": 4172, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 4606, \"VACANT\": 40, \"OWNER_OCC\": 4357, \"RENTER_OCC\": 209 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.276526858964019, 38.933477371921292 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Woodbridge\", \"CLASS\": \"CDP\", \"ST\": \"VA\", \"STFIPS\": \"51\", \"PLACEFIP\": \"87312\", \"CAPITAL\": \"N\", \"AREALAND\": 10.480000, \"AREAWATER\": 0.314000, \"POP_CL\": 6, \"POP2000\": 31941, \"WHITE\": 17996, \"BLACK\": 7490, \"AMERI_ES\": 177, \"ASIAN\": 1566, \"HAWN_PI\": 54, \"OTHER\": 3074, \"MULT_RACE\": 1584, \"HISPANIC\": 6091, \"MALES\": 16166, \"FEMALES\": 15775, \"AGE_UNDER5\": 2862, \"AGE_5_17\": 6716, \"AGE_18_21\": 1876, \"AGE_22_29\": 4321, \"AGE_30_39\": 6092, \"AGE_40_49\": 4419, \"AGE_50_64\": 3519, \"AGE_65_UP\": 2136, \"MED_AGE\": 30.300000, \"MED_AGE_M\": 29.600000, \"MED_AGE_F\": 31.100000, \"HOUSEHOLDS\": 10687, \"AVE_HH_SZ\": 2.960000, \"HSEHLD_1_M\": 1105, \"HSEHLD_1_F\": 1077, \"MARHH_CHD\": 3119, \"MARHH_NO_C\": 2470, \"MHH_CHILD\": 342, \"FHH_CHILD\": 976, \"FAMILIES\": 7769, \"AVE_FAM_SZ\": 3.400000, \"HSE_UNITS\": 11026, \"VACANT\": 339, \"OWNER_OCC\": 6293, \"RENTER_OCC\": 4394 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.260859674275096, 38.643517383019557 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Burlington\", \"CLASS\": \"city\", \"ST\": \"VT\", \"STFIPS\": \"50\", \"PLACEFIP\": \"10675\", \"CAPITAL\": \"N\", \"AREALAND\": 10.562000, \"AREAWATER\": 4.921000, \"POP_CL\": 6, \"POP2000\": 38889, \"WHITE\": 35883, \"BLACK\": 693, \"AMERI_ES\": 182, \"ASIAN\": 1031, \"HAWN_PI\": 8, \"OTHER\": 211, \"MULT_RACE\": 881, \"HISPANIC\": 546, \"MALES\": 18764, \"FEMALES\": 20125, \"AGE_UNDER5\": 1788, \"AGE_5_17\": 4543, \"AGE_18_21\": 6450, \"AGE_22_29\": 7277, \"AGE_30_39\": 5733, \"AGE_40_49\": 4667, \"AGE_50_64\": 4339, \"AGE_65_UP\": 4092, \"MED_AGE\": 29.200000, \"MED_AGE_M\": 28.600000, \"MED_AGE_F\": 30.000000, \"HOUSEHOLDS\": 15885, \"AVE_HH_SZ\": 2.190000, \"HSEHLD_1_M\": 2539, \"HSEHLD_1_F\": 3110, \"MARHH_CHD\": 2061, \"MARHH_NO_C\": 2929, \"MHH_CHILD\": 246, \"FHH_CHILD\": 1078, \"FAMILIES\": 7055, \"AVE_FAM_SZ\": 2.860000, \"HSE_UNITS\": 16395, \"VACANT\": 510, \"OWNER_OCC\": 6590, \"RENTER_OCC\": 9295 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.223370238102831, 44.484759782679184 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Montpelier\", \"CLASS\": \"city\", \"ST\": \"VT\", \"STFIPS\": \"50\", \"PLACEFIP\": \"46000\", \"CAPITAL\": \"Y\", \"AREALAND\": 10.249000, \"AREAWATER\": 0.010000, \"POP_CL\": 5, \"POP2000\": 8035, \"WHITE\": 7758, \"BLACK\": 52, \"AMERI_ES\": 19, \"ASIAN\": 66, \"HAWN_PI\": 1, \"OTHER\": 31, \"MULT_RACE\": 108, \"HISPANIC\": 113, \"MALES\": 3673, \"FEMALES\": 4362, \"AGE_UNDER5\": 364, \"AGE_5_17\": 1346, \"AGE_18_21\": 359, \"AGE_22_29\": 814, \"AGE_30_39\": 1075, \"AGE_40_49\": 1467, \"AGE_50_64\": 1410, \"AGE_65_UP\": 1200, \"MED_AGE\": 40.500000, \"MED_AGE_M\": 38.900000, \"MED_AGE_F\": 41.800000, \"HOUSEHOLDS\": 3739, \"AVE_HH_SZ\": 2.090000, \"HSEHLD_1_M\": 519, \"HSEHLD_1_F\": 956, \"MARHH_CHD\": 647, \"MARHH_NO_C\": 791, \"MHH_CHILD\": 79, \"FHH_CHILD\": 246, \"FAMILIES\": 1940, \"AVE_FAM_SZ\": 2.840000, \"HSE_UNITS\": 3899, \"VACANT\": 160, \"OWNER_OCC\": 2044, \"RENTER_OCC\": 1695 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -72.573050033843387, 44.261369475310332 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Rutland\", \"CLASS\": \"city\", \"ST\": \"VT\", \"STFIPS\": \"50\", \"PLACEFIP\": \"61225\", \"CAPITAL\": \"N\", \"AREALAND\": 7.638000, \"AREAWATER\": 0.043000, \"POP_CL\": 6, \"POP2000\": 17292, \"WHITE\": 16912, \"BLACK\": 76, \"AMERI_ES\": 42, \"ASIAN\": 74, \"HAWN_PI\": 9, \"OTHER\": 22, \"MULT_RACE\": 157, \"HISPANIC\": 156, \"MALES\": 8183, \"FEMALES\": 9109, \"AGE_UNDER5\": 996, \"AGE_5_17\": 2923, \"AGE_18_21\": 781, \"AGE_22_29\": 1599, \"AGE_30_39\": 2541, \"AGE_40_49\": 2699, \"AGE_50_64\": 2609, \"AGE_65_UP\": 3144, \"MED_AGE\": 39.300000, \"MED_AGE_M\": 37.300000, \"MED_AGE_F\": 41.200000, \"HOUSEHOLDS\": 7452, \"AVE_HH_SZ\": 2.220000, \"HSEHLD_1_M\": 1089, \"HSEHLD_1_F\": 1604, \"MARHH_CHD\": 1278, \"MARHH_NO_C\": 1690, \"MHH_CHILD\": 182, \"FHH_CHILD\": 592, \"FAMILIES\": 4209, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 7919, \"VACANT\": 467, \"OWNER_OCC\": 3980, \"RENTER_OCC\": 3472 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -72.974305711570281, 43.607679615763111 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"South Burlington\", \"CLASS\": \"city\", \"ST\": \"VT\", \"STFIPS\": \"50\", \"PLACEFIP\": \"66175\", \"CAPITAL\": \"N\", \"AREALAND\": 16.643000, \"AREAWATER\": 12.976000, \"POP_CL\": 6, \"POP2000\": 15814, \"WHITE\": 14831, \"BLACK\": 132, \"AMERI_ES\": 29, \"ASIAN\": 530, \"HAWN_PI\": 2, \"OTHER\": 65, \"MULT_RACE\": 225, \"HISPANIC\": 192, \"MALES\": 7444, \"FEMALES\": 8370, \"AGE_UNDER5\": 776, \"AGE_5_17\": 2639, \"AGE_18_21\": 1459, \"AGE_22_29\": 1552, \"AGE_30_39\": 2482, \"AGE_40_49\": 2541, \"AGE_50_64\": 2298, \"AGE_65_UP\": 2067, \"MED_AGE\": 36.200000, \"MED_AGE_M\": 34.500000, \"MED_AGE_F\": 37.700000, \"HOUSEHOLDS\": 6332, \"AVE_HH_SZ\": 2.310000, \"HSEHLD_1_M\": 611, \"HSEHLD_1_F\": 1313, \"MARHH_CHD\": 1381, \"MARHH_NO_C\": 1641, \"MHH_CHILD\": 112, \"FHH_CHILD\": 355, \"FAMILIES\": 3785, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 6501, \"VACANT\": 169, \"OWNER_OCC\": 4351, \"RENTER_OCC\": 1981 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -73.181927210770027, 44.451858088692397 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Aberdeen\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"00100\", \"CAPITAL\": \"N\", \"AREALAND\": 10.628000, \"AREAWATER\": 1.550000, \"POP_CL\": 6, \"POP2000\": 16461, \"WHITE\": 13971, \"BLACK\": 77, \"AMERI_ES\": 609, \"ASIAN\": 345, \"HAWN_PI\": 23, \"OTHER\": 848, \"MULT_RACE\": 588, \"HISPANIC\": 1518, \"MALES\": 8148, \"FEMALES\": 8313, \"AGE_UNDER5\": 1237, \"AGE_5_17\": 3171, \"AGE_18_21\": 1038, \"AGE_22_29\": 1733, \"AGE_30_39\": 2180, \"AGE_40_49\": 2334, \"AGE_50_64\": 2468, \"AGE_65_UP\": 2300, \"MED_AGE\": 34.900000, \"MED_AGE_M\": 33.400000, \"MED_AGE_F\": 36.400000, \"HOUSEHOLDS\": 6517, \"AVE_HH_SZ\": 2.490000, \"HSEHLD_1_M\": 903, \"HSEHLD_1_F\": 1019, \"MARHH_CHD\": 1257, \"MARHH_NO_C\": 1604, \"MHH_CHILD\": 213, \"FHH_CHILD\": 605, \"FAMILIES\": 4109, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 7536, \"VACANT\": 1019, \"OWNER_OCC\": 3807, \"RENTER_OCC\": 2710 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -123.798591471595714, 46.977919008593091 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Alderwood Manor\", \"CLASS\": \"CDP\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"01185\", \"CAPITAL\": \"N\", \"AREALAND\": 4.798000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 15329, \"WHITE\": 12588, \"BLACK\": 249, \"AMERI_ES\": 132, \"ASIAN\": 1505, \"HAWN_PI\": 71, \"OTHER\": 243, \"MULT_RACE\": 541, \"HISPANIC\": 609, \"MALES\": 7599, \"FEMALES\": 7730, \"AGE_UNDER5\": 1109, \"AGE_5_17\": 3194, \"AGE_18_21\": 652, \"AGE_22_29\": 1422, \"AGE_30_39\": 2811, \"AGE_40_49\": 2738, \"AGE_50_64\": 2072, \"AGE_65_UP\": 1331, \"MED_AGE\": 34.900000, \"MED_AGE_M\": 34.400000, \"MED_AGE_F\": 35.400000, \"HOUSEHOLDS\": 5558, \"AVE_HH_SZ\": 2.750000, \"HSEHLD_1_M\": 506, \"HSEHLD_1_F\": 572, \"MARHH_CHD\": 1782, \"MARHH_NO_C\": 1577, \"MHH_CHILD\": 136, \"FHH_CHILD\": 339, \"FAMILIES\": 4092, \"AVE_FAM_SZ\": 3.170000, \"HSE_UNITS\": 5743, \"VACANT\": 185, \"OWNER_OCC\": 4449, \"RENTER_OCC\": 1109 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.246500691791212, 47.803541319818251 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Anacortes\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"01990\", \"CAPITAL\": \"N\", \"AREALAND\": 11.778000, \"AREAWATER\": 2.401000, \"POP_CL\": 6, \"POP2000\": 14557, \"WHITE\": 13489, \"BLACK\": 46, \"AMERI_ES\": 166, \"ASIAN\": 239, \"HAWN_PI\": 19, \"OTHER\": 215, \"MULT_RACE\": 383, \"HISPANIC\": 459, \"MALES\": 7030, \"FEMALES\": 7527, \"AGE_UNDER5\": 802, \"AGE_5_17\": 2608, \"AGE_18_21\": 509, \"AGE_22_29\": 989, \"AGE_30_39\": 1784, \"AGE_40_49\": 2274, \"AGE_50_64\": 2563, \"AGE_65_UP\": 3028, \"MED_AGE\": 42.600000, \"MED_AGE_M\": 41.100000, \"MED_AGE_F\": 43.900000, \"HOUSEHOLDS\": 6086, \"AVE_HH_SZ\": 2.370000, \"HSEHLD_1_M\": 645, \"HSEHLD_1_F\": 973, \"MARHH_CHD\": 1249, \"MARHH_NO_C\": 2171, \"MHH_CHILD\": 104, \"FHH_CHILD\": 370, \"FAMILIES\": 4162, \"AVE_FAM_SZ\": 2.840000, \"HSE_UNITS\": 6551, \"VACANT\": 465, \"OWNER_OCC\": 4190, \"RENTER_OCC\": 1896 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.609535698405793, 48.503356630107319 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Arlington\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"02585\", \"CAPITAL\": \"N\", \"AREALAND\": 7.565000, \"AREAWATER\": 0.004000, \"POP_CL\": 6, \"POP2000\": 11713, \"WHITE\": 10543, \"BLACK\": 132, \"AMERI_ES\": 122, \"ASIAN\": 258, \"HAWN_PI\": 38, \"OTHER\": 289, \"MULT_RACE\": 331, \"HISPANIC\": 683, \"MALES\": 5653, \"FEMALES\": 6060, \"AGE_UNDER5\": 1080, \"AGE_5_17\": 2615, \"AGE_18_21\": 508, \"AGE_22_29\": 1321, \"AGE_30_39\": 2056, \"AGE_40_49\": 1557, \"AGE_50_64\": 1454, \"AGE_65_UP\": 1122, \"MED_AGE\": 31.600000, \"MED_AGE_M\": 31.200000, \"MED_AGE_F\": 32.000000, \"HOUSEHOLDS\": 4281, \"AVE_HH_SZ\": 2.720000, \"HSEHLD_1_M\": 417, \"HSEHLD_1_F\": 555, \"MARHH_CHD\": 1325, \"MARHH_NO_C\": 1104, \"MHH_CHILD\": 126, \"FHH_CHILD\": 373, \"FAMILIES\": 3097, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 4516, \"VACANT\": 235, \"OWNER_OCC\": 2668, \"RENTER_OCC\": 1613 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.127145626076739, 48.182209641365397 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Auburn\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"03180\", \"CAPITAL\": \"N\", \"AREALAND\": 21.263000, \"AREAWATER\": 0.006000, \"POP_CL\": 6, \"POP2000\": 40314, \"WHITE\": 33382, \"BLACK\": 977, \"AMERI_ES\": 1024, \"ASIAN\": 1410, \"HAWN_PI\": 204, \"OTHER\": 1477, \"MULT_RACE\": 1840, \"HISPANIC\": 3019, \"MALES\": 20005, \"FEMALES\": 20309, \"AGE_UNDER5\": 3100, \"AGE_5_17\": 7634, \"AGE_18_21\": 2142, \"AGE_22_29\": 4620, \"AGE_30_39\": 6620, \"AGE_40_49\": 5941, \"AGE_50_64\": 5594, \"AGE_65_UP\": 4663, \"MED_AGE\": 34.100000, \"MED_AGE_M\": 32.900000, \"MED_AGE_F\": 35.400000, \"HOUSEHOLDS\": 16108, \"AVE_HH_SZ\": 2.470000, \"HSEHLD_1_M\": 2218, \"HSEHLD_1_F\": 2467, \"MARHH_CHD\": 3285, \"MARHH_NO_C\": 3759, \"MHH_CHILD\": 532, \"FHH_CHILD\": 1472, \"FAMILIES\": 10055, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 16767, \"VACANT\": 659, \"OWNER_OCC\": 8731, \"RENTER_OCC\": 7377 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.203100963627861, 47.303453003470089 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bainbridge Island\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"03736\", \"CAPITAL\": \"N\", \"AREALAND\": 27.606000, \"AREAWATER\": 37.907000, \"POP_CL\": 6, \"POP2000\": 20308, \"WHITE\": 18863, \"BLACK\": 57, \"AMERI_ES\": 125, \"ASIAN\": 487, \"HAWN_PI\": 22, \"OTHER\": 152, \"MULT_RACE\": 602, \"HISPANIC\": 440, \"MALES\": 9865, \"FEMALES\": 10443, \"AGE_UNDER5\": 1036, \"AGE_5_17\": 4388, \"AGE_18_21\": 532, \"AGE_22_29\": 733, \"AGE_30_39\": 2296, \"AGE_40_49\": 4254, \"AGE_50_64\": 4474, \"AGE_65_UP\": 2595, \"MED_AGE\": 43.000000, \"MED_AGE_M\": 42.400000, \"MED_AGE_F\": 43.500000, \"HOUSEHOLDS\": 7979, \"AVE_HH_SZ\": 2.520000, \"HSEHLD_1_M\": 684, \"HSEHLD_1_F\": 1118, \"MARHH_CHD\": 2458, \"MARHH_NO_C\": 2580, \"MHH_CHILD\": 119, \"FHH_CHILD\": 359, \"FAMILIES\": 5785, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 8517, \"VACANT\": 538, \"OWNER_OCC\": 6250, \"RENTER_OCC\": 1729 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.521808184270384, 47.656547294363968 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bellevue\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"05210\", \"CAPITAL\": \"N\", \"AREALAND\": 30.747000, \"AREAWATER\": 3.150000, \"POP_CL\": 8, \"POP2000\": 109569, \"WHITE\": 81441, \"BLACK\": 2183, \"AMERI_ES\": 356, \"ASIAN\": 19056, \"HAWN_PI\": 257, \"OTHER\": 2785, \"MULT_RACE\": 3491, \"HISPANIC\": 5827, \"MALES\": 54347, \"FEMALES\": 55222, \"AGE_UNDER5\": 6182, \"AGE_5_17\": 16960, \"AGE_18_21\": 4252, \"AGE_22_29\": 13210, \"AGE_30_39\": 17597, \"AGE_40_49\": 17558, \"AGE_50_64\": 19121, \"AGE_65_UP\": 14689, \"MED_AGE\": 38.200000, \"MED_AGE_M\": 36.300000, \"MED_AGE_F\": 39.900000, \"HOUSEHOLDS\": 45836, \"AVE_HH_SZ\": 2.370000, \"HSEHLD_1_M\": 5791, \"HSEHLD_1_F\": 7219, \"MARHH_CHD\": 10177, \"MARHH_NO_C\": 14103, \"MHH_CHILD\": 537, \"FHH_CHILD\": 1871, \"FAMILIES\": 29069, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 48396, \"VACANT\": 2560, \"OWNER_OCC\": 28189, \"RENTER_OCC\": 17647 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.14764539499987, 47.598664399843997 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bellingham\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"05280\", \"CAPITAL\": \"N\", \"AREALAND\": 25.644000, \"AREAWATER\": 6.094000, \"POP_CL\": 7, \"POP2000\": 67171, \"WHITE\": 59031, \"BLACK\": 655, \"AMERI_ES\": 997, \"ASIAN\": 2853, \"HAWN_PI\": 116, \"OTHER\": 1450, \"MULT_RACE\": 2069, \"HISPANIC\": 3111, \"MALES\": 32291, \"FEMALES\": 34880, \"AGE_UNDER5\": 3502, \"AGE_5_17\": 8383, \"AGE_18_21\": 10254, \"AGE_22_29\": 11061, \"AGE_30_39\": 8369, \"AGE_40_49\": 8765, \"AGE_50_64\": 8480, \"AGE_65_UP\": 8357, \"MED_AGE\": 30.400000, \"MED_AGE_M\": 29.500000, \"MED_AGE_F\": 31.400000, \"HOUSEHOLDS\": 27999, \"AVE_HH_SZ\": 2.240000, \"HSEHLD_1_M\": 3970, \"HSEHLD_1_F\": 5281, \"MARHH_CHD\": 4253, \"MARHH_NO_C\": 6259, \"MHH_CHILD\": 482, \"FHH_CHILD\": 1727, \"FAMILIES\": 13990, \"AVE_FAM_SZ\": 2.830000, \"HSE_UNITS\": 29474, \"VACANT\": 1475, \"OWNER_OCC\": 13487, \"RENTER_OCC\": 14512 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.461358154251343, 48.751450048282834 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bothell\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"07380\", \"CAPITAL\": \"N\", \"AREALAND\": 12.052000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 30150, \"WHITE\": 26316, \"BLACK\": 350, \"AMERI_ES\": 188, \"ASIAN\": 1797, \"HAWN_PI\": 63, \"OTHER\": 531, \"MULT_RACE\": 905, \"HISPANIC\": 1338, \"MALES\": 14772, \"FEMALES\": 15378, \"AGE_UNDER5\": 1801, \"AGE_5_17\": 5800, \"AGE_18_21\": 1409, \"AGE_22_29\": 3154, \"AGE_30_39\": 5030, \"AGE_40_49\": 5453, \"AGE_50_64\": 4624, \"AGE_65_UP\": 2879, \"MED_AGE\": 36.000000, \"MED_AGE_M\": 35.100000, \"MED_AGE_F\": 37.100000, \"HOUSEHOLDS\": 11923, \"AVE_HH_SZ\": 2.510000, \"HSEHLD_1_M\": 1394, \"HSEHLD_1_F\": 1674, \"MARHH_CHD\": 3147, \"MARHH_NO_C\": 3277, \"MHH_CHILD\": 245, \"FHH_CHILD\": 644, \"FAMILIES\": 7930, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 12303, \"VACANT\": 380, \"OWNER_OCC\": 8105, \"RENTER_OCC\": 3818 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.192545307999268, 47.772802545501769 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bremerton\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"07695\", \"CAPITAL\": \"N\", \"AREALAND\": 22.661000, \"AREAWATER\": 3.384000, \"POP_CL\": 6, \"POP2000\": 37259, \"WHITE\": 27932, \"BLACK\": 2793, \"AMERI_ES\": 726, \"ASIAN\": 2061, \"HAWN_PI\": 345, \"OTHER\": 956, \"MULT_RACE\": 2446, \"HISPANIC\": 2457, \"MALES\": 18969, \"FEMALES\": 18290, \"AGE_UNDER5\": 3015, \"AGE_5_17\": 6103, \"AGE_18_21\": 3291, \"AGE_22_29\": 5581, \"AGE_30_39\": 5724, \"AGE_40_49\": 4656, \"AGE_50_64\": 4213, \"AGE_65_UP\": 4676, \"MED_AGE\": 30.900000, \"MED_AGE_M\": 29.300000, \"MED_AGE_F\": 33.200000, \"HOUSEHOLDS\": 15096, \"AVE_HH_SZ\": 2.300000, \"HSEHLD_1_M\": 2552, \"HSEHLD_1_F\": 2791, \"MARHH_CHD\": 2693, \"MARHH_NO_C\": 3108, \"MHH_CHILD\": 439, \"FHH_CHILD\": 1426, \"FAMILIES\": 8469, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 16631, \"VACANT\": 1535, \"OWNER_OCC\": 6255, \"RENTER_OCC\": 8841 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.63884346629078, 47.571363159780688 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bryn Mawr-Skyway\", \"CLASS\": \"CDP\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"08552\", \"CAPITAL\": \"N\", \"AREALAND\": 3.171000, \"AREAWATER\": 0.170000, \"POP_CL\": 6, \"POP2000\": 13977, \"WHITE\": 6183, \"BLACK\": 3541, \"AMERI_ES\": 113, \"ASIAN\": 3050, \"HAWN_PI\": 71, \"OTHER\": 306, \"MULT_RACE\": 713, \"HISPANIC\": 635, \"MALES\": 6905, \"FEMALES\": 7072, \"AGE_UNDER5\": 814, \"AGE_5_17\": 2373, \"AGE_18_21\": 613, \"AGE_22_29\": 1455, \"AGE_30_39\": 2179, \"AGE_40_49\": 2315, \"AGE_50_64\": 2287, \"AGE_65_UP\": 1941, \"MED_AGE\": 38.000000, \"MED_AGE_M\": 37.200000, \"MED_AGE_F\": 38.600000, \"HOUSEHOLDS\": 5574, \"AVE_HH_SZ\": 2.500000, \"HSEHLD_1_M\": 740, \"HSEHLD_1_F\": 813, \"MARHH_CHD\": 981, \"MARHH_NO_C\": 1558, \"MHH_CHILD\": 126, \"FHH_CHILD\": 464, \"FAMILIES\": 3576, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 5785, \"VACANT\": 211, \"OWNER_OCC\": 3717, \"RENTER_OCC\": 1857 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.224689300430938, 47.495714316592981 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Burien\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"08850\", \"CAPITAL\": \"N\", \"AREALAND\": 7.437000, \"AREAWATER\": 5.788000, \"POP_CL\": 6, \"POP2000\": 31881, \"WHITE\": 24146, \"BLACK\": 1638, \"AMERI_ES\": 411, \"ASIAN\": 2232, \"HAWN_PI\": 370, \"OTHER\": 1720, \"MULT_RACE\": 1364, \"HISPANIC\": 3397, \"MALES\": 15655, \"FEMALES\": 16226, \"AGE_UNDER5\": 1932, \"AGE_5_17\": 5329, \"AGE_18_21\": 1515, \"AGE_22_29\": 3152, \"AGE_30_39\": 4860, \"AGE_40_49\": 5499, \"AGE_50_64\": 5209, \"AGE_65_UP\": 4385, \"MED_AGE\": 38.400000, \"MED_AGE_M\": 37.300000, \"MED_AGE_F\": 39.400000, \"HOUSEHOLDS\": 13399, \"AVE_HH_SZ\": 2.360000, \"HSEHLD_1_M\": 1944, \"HSEHLD_1_F\": 2397, \"MARHH_CHD\": 2330, \"MARHH_NO_C\": 3504, \"MHH_CHILD\": 351, \"FHH_CHILD\": 948, \"FAMILIES\": 8064, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 13898, \"VACANT\": 499, \"OWNER_OCC\": 7552, \"RENTER_OCC\": 5847 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.333172552726126, 47.469413850717721 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Camano\", \"CLASS\": \"CDP\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"09365\", \"CAPITAL\": \"N\", \"AREALAND\": 39.766000, \"AREAWATER\": 55.183000, \"POP_CL\": 6, \"POP2000\": 13347, \"WHITE\": 12761, \"BLACK\": 33, \"AMERI_ES\": 111, \"ASIAN\": 87, \"HAWN_PI\": 34, \"OTHER\": 75, \"MULT_RACE\": 246, \"HISPANIC\": 275, \"MALES\": 6658, \"FEMALES\": 6689, \"AGE_UNDER5\": 709, \"AGE_5_17\": 2504, \"AGE_18_21\": 380, \"AGE_22_29\": 743, \"AGE_30_39\": 1778, \"AGE_40_49\": 2122, \"AGE_50_64\": 2672, \"AGE_65_UP\": 2439, \"MED_AGE\": 42.600000, \"MED_AGE_M\": 42.000000, \"MED_AGE_F\": 43.200000, \"HOUSEHOLDS\": 5357, \"AVE_HH_SZ\": 2.490000, \"HSEHLD_1_M\": 491, \"HSEHLD_1_F\": 592, \"MARHH_CHD\": 1235, \"MARHH_NO_C\": 2302, \"MHH_CHILD\": 95, \"FHH_CHILD\": 212, \"FAMILIES\": 4031, \"AVE_FAM_SZ\": 2.860000, \"HSE_UNITS\": 6709, \"VACANT\": 1352, \"OWNER_OCC\": 4728, \"RENTER_OCC\": 629 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.473063857693504, 48.194876599403287 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Camas\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"09480\", \"CAPITAL\": \"N\", \"AREALAND\": 10.905000, \"AREAWATER\": 1.669000, \"POP_CL\": 6, \"POP2000\": 12534, \"WHITE\": 11532, \"BLACK\": 86, \"AMERI_ES\": 87, \"ASIAN\": 428, \"HAWN_PI\": 18, \"OTHER\": 100, \"MULT_RACE\": 283, \"HISPANIC\": 359, \"MALES\": 6145, \"FEMALES\": 6389, \"AGE_UNDER5\": 1105, \"AGE_5_17\": 2801, \"AGE_18_21\": 487, \"AGE_22_29\": 1029, \"AGE_30_39\": 2220, \"AGE_40_49\": 2074, \"AGE_50_64\": 1725, \"AGE_65_UP\": 1093, \"MED_AGE\": 34.200000, \"MED_AGE_M\": 34.300000, \"MED_AGE_F\": 34.200000, \"HOUSEHOLDS\": 4480, \"AVE_HH_SZ\": 2.780000, \"HSEHLD_1_M\": 390, \"HSEHLD_1_F\": 444, \"MARHH_CHD\": 1529, \"MARHH_NO_C\": 1332, \"MHH_CHILD\": 120, \"FHH_CHILD\": 259, \"FAMILIES\": 3421, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 4736, \"VACANT\": 256, \"OWNER_OCC\": 3414, \"RENTER_OCC\": 1066 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.400517697373417, 45.592202076788347 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cascade-Fairwood\", \"CLASS\": \"CDP\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"10372\", \"CAPITAL\": \"N\", \"AREALAND\": 8.870000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 34580, \"WHITE\": 25227, \"BLACK\": 2107, \"AMERI_ES\": 206, \"ASIAN\": 4670, \"HAWN_PI\": 160, \"OTHER\": 651, \"MULT_RACE\": 1559, \"HISPANIC\": 1420, \"MALES\": 17165, \"FEMALES\": 17415, \"AGE_UNDER5\": 2377, \"AGE_5_17\": 6689, \"AGE_18_21\": 1635, \"AGE_22_29\": 3657, \"AGE_30_39\": 5873, \"AGE_40_49\": 6044, \"AGE_50_64\": 5690, \"AGE_65_UP\": 2615, \"MED_AGE\": 35.400000, \"MED_AGE_M\": 34.800000, \"MED_AGE_F\": 35.900000, \"HOUSEHOLDS\": 13065, \"AVE_HH_SZ\": 2.650000, \"HSEHLD_1_M\": 1406, \"HSEHLD_1_F\": 1527, \"MARHH_CHD\": 3558, \"MARHH_NO_C\": 3835, \"MHH_CHILD\": 264, \"FHH_CHILD\": 805, \"FAMILIES\": 9203, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 13456, \"VACANT\": 391, \"OWNER_OCC\": 9167, \"RENTER_OCC\": 3898 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.157794997739359, 47.449985910424502 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Centralia\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"11160\", \"CAPITAL\": \"N\", \"AREALAND\": 7.406000, \"AREAWATER\": 0.049000, \"POP_CL\": 6, \"POP2000\": 14742, \"WHITE\": 13232, \"BLACK\": 65, \"AMERI_ES\": 184, \"ASIAN\": 138, \"HAWN_PI\": 44, \"OTHER\": 728, \"MULT_RACE\": 351, \"HISPANIC\": 1506, \"MALES\": 6975, \"FEMALES\": 7767, \"AGE_UNDER5\": 1142, \"AGE_5_17\": 2571, \"AGE_18_21\": 918, \"AGE_22_29\": 1599, \"AGE_30_39\": 1808, \"AGE_40_49\": 1945, \"AGE_50_64\": 1931, \"AGE_65_UP\": 2828, \"MED_AGE\": 36.600000, \"MED_AGE_M\": 33.700000, \"MED_AGE_F\": 39.100000, \"HOUSEHOLDS\": 5943, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 718, \"HSEHLD_1_F\": 1225, \"MARHH_CHD\": 1040, \"MARHH_NO_C\": 1439, \"MHH_CHILD\": 197, \"FHH_CHILD\": 512, \"FAMILIES\": 3566, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 6510, \"VACANT\": 567, \"OWNER_OCC\": 3288, \"RENTER_OCC\": 2655 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.946646010303624, 46.721984906172551 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cottage Lake\", \"CLASS\": \"CDP\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"14940\", \"CAPITAL\": \"N\", \"AREALAND\": 22.812000, \"AREAWATER\": 0.141000, \"POP_CL\": 6, \"POP2000\": 24330, \"WHITE\": 22158, \"BLACK\": 154, \"AMERI_ES\": 83, \"ASIAN\": 917, \"HAWN_PI\": 44, \"OTHER\": 329, \"MULT_RACE\": 645, \"HISPANIC\": 721, \"MALES\": 12301, \"FEMALES\": 12029, \"AGE_UNDER5\": 1534, \"AGE_5_17\": 6487, \"AGE_18_21\": 925, \"AGE_22_29\": 1072, \"AGE_30_39\": 3413, \"AGE_40_49\": 5537, \"AGE_50_64\": 4272, \"AGE_65_UP\": 1090, \"MED_AGE\": 37.300000, \"MED_AGE_M\": 37.200000, \"MED_AGE_F\": 37.400000, \"HOUSEHOLDS\": 7772, \"AVE_HH_SZ\": 3.130000, \"HSEHLD_1_M\": 392, \"HSEHLD_1_F\": 327, \"MARHH_CHD\": 3627, \"MARHH_NO_C\": 2570, \"MHH_CHILD\": 117, \"FHH_CHILD\": 284, \"FAMILIES\": 6797, \"AVE_FAM_SZ\": 3.340000, \"HSE_UNITS\": 7916, \"VACANT\": 144, \"OWNER_OCC\": 7084, \"RENTER_OCC\": 688 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.071313411222917, 47.745971187077643 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Covington\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"15290\", \"CAPITAL\": \"N\", \"AREALAND\": 5.767000, \"AREAWATER\": 0.035000, \"POP_CL\": 6, \"POP2000\": 13783, \"WHITE\": 12112, \"BLACK\": 336, \"AMERI_ES\": 140, \"ASIAN\": 430, \"HAWN_PI\": 31, \"OTHER\": 248, \"MULT_RACE\": 486, \"HISPANIC\": 617, \"MALES\": 7004, \"FEMALES\": 6779, \"AGE_UNDER5\": 1092, \"AGE_5_17\": 3569, \"AGE_18_21\": 617, \"AGE_22_29\": 1140, \"AGE_30_39\": 2782, \"AGE_40_49\": 2518, \"AGE_50_64\": 1550, \"AGE_65_UP\": 515, \"MED_AGE\": 32.100000, \"MED_AGE_M\": 31.700000, \"MED_AGE_F\": 32.300000, \"HOUSEHOLDS\": 4398, \"AVE_HH_SZ\": 3.130000, \"HSEHLD_1_M\": 309, \"HSEHLD_1_F\": 193, \"MARHH_CHD\": 1865, \"MARHH_NO_C\": 1216, \"MHH_CHILD\": 124, \"FHH_CHILD\": 306, \"FAMILIES\": 3692, \"AVE_FAM_SZ\": 3.370000, \"HSE_UNITS\": 4473, \"VACANT\": 75, \"OWNER_OCC\": 3954, \"RENTER_OCC\": 444 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.08896774938087, 47.366861941398355 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Des Moines\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"17635\", \"CAPITAL\": \"N\", \"AREALAND\": 6.340000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 29267, \"WHITE\": 21702, \"BLACK\": 2106, \"AMERI_ES\": 280, \"ASIAN\": 2422, \"HAWN_PI\": 393, \"OTHER\": 972, \"MULT_RACE\": 1392, \"HISPANIC\": 1936, \"MALES\": 14101, \"FEMALES\": 15166, \"AGE_UNDER5\": 1924, \"AGE_5_17\": 5039, \"AGE_18_21\": 1405, \"AGE_22_29\": 3020, \"AGE_30_39\": 4739, \"AGE_40_49\": 4508, \"AGE_50_64\": 4285, \"AGE_65_UP\": 4347, \"MED_AGE\": 37.000000, \"MED_AGE_M\": 35.900000, \"MED_AGE_F\": 38.100000, \"HOUSEHOLDS\": 11337, \"AVE_HH_SZ\": 2.470000, \"HSEHLD_1_M\": 1502, \"HSEHLD_1_F\": 1653, \"MARHH_CHD\": 2222, \"MARHH_NO_C\": 3123, \"MHH_CHILD\": 298, \"FHH_CHILD\": 925, \"FAMILIES\": 7291, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 11777, \"VACANT\": 440, \"OWNER_OCC\": 6918, \"RENTER_OCC\": 4419 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.305822842651978, 47.39529903771362 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Dishman\", \"CLASS\": \"CDP\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"17985\", \"CAPITAL\": \"N\", \"AREALAND\": 3.378000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10031, \"WHITE\": 9322, \"BLACK\": 81, \"AMERI_ES\": 182, \"ASIAN\": 133, \"HAWN_PI\": 3, \"OTHER\": 110, \"MULT_RACE\": 200, \"HISPANIC\": 290, \"MALES\": 4941, \"FEMALES\": 5090, \"AGE_UNDER5\": 694, \"AGE_5_17\": 1769, \"AGE_18_21\": 551, \"AGE_22_29\": 1119, \"AGE_30_39\": 1435, \"AGE_40_49\": 1457, \"AGE_50_64\": 1450, \"AGE_65_UP\": 1556, \"MED_AGE\": 36.600000, \"MED_AGE_M\": 34.600000, \"MED_AGE_F\": 38.200000, \"HOUSEHOLDS\": 4151, \"AVE_HH_SZ\": 2.360000, \"HSEHLD_1_M\": 598, \"HSEHLD_1_F\": 697, \"MARHH_CHD\": 752, \"MARHH_NO_C\": 1096, \"MHH_CHILD\": 131, \"FHH_CHILD\": 345, \"FAMILIES\": 2564, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 4408, \"VACANT\": 257, \"OWNER_OCC\": 2635, \"RENTER_OCC\": 1516 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.275977523200453, 47.65668103866799 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"East Hill-Meridian\", \"CLASS\": \"CDP\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"19515\", \"CAPITAL\": \"N\", \"AREALAND\": 8.929000, \"AREAWATER\": 0.043000, \"POP_CL\": 6, \"POP2000\": 29308, \"WHITE\": 21516, \"BLACK\": 1364, \"AMERI_ES\": 177, \"ASIAN\": 4262, \"HAWN_PI\": 191, \"OTHER\": 498, \"MULT_RACE\": 1300, \"HISPANIC\": 1116, \"MALES\": 14610, \"FEMALES\": 14698, \"AGE_UNDER5\": 2097, \"AGE_5_17\": 6770, \"AGE_18_21\": 1247, \"AGE_22_29\": 2352, \"AGE_30_39\": 5112, \"AGE_40_49\": 5192, \"AGE_50_64\": 4389, \"AGE_65_UP\": 2149, \"MED_AGE\": 34.900000, \"MED_AGE_M\": 34.600000, \"MED_AGE_F\": 35.200000, \"HOUSEHOLDS\": 9845, \"AVE_HH_SZ\": 2.970000, \"HSEHLD_1_M\": 698, \"HSEHLD_1_F\": 789, \"MARHH_CHD\": 3483, \"MARHH_NO_C\": 2986, \"MHH_CHILD\": 228, \"FHH_CHILD\": 633, \"FAMILIES\": 7853, \"AVE_FAM_SZ\": 3.310000, \"HSE_UNITS\": 10084, \"VACANT\": 239, \"OWNER_OCC\": 7969, \"RENTER_OCC\": 1876 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.171548235506663, 47.411007453196255 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"East Renton Highlands\", \"CLASS\": \"CDP\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"19857\", \"CAPITAL\": \"N\", \"AREALAND\": 12.571000, \"AREAWATER\": 0.088000, \"POP_CL\": 6, \"POP2000\": 13264, \"WHITE\": 12038, \"BLACK\": 193, \"AMERI_ES\": 114, \"ASIAN\": 411, \"HAWN_PI\": 14, \"OTHER\": 134, \"MULT_RACE\": 360, \"HISPANIC\": 455, \"MALES\": 6763, \"FEMALES\": 6501, \"AGE_UNDER5\": 776, \"AGE_5_17\": 2764, \"AGE_18_21\": 556, \"AGE_22_29\": 865, \"AGE_30_39\": 2172, \"AGE_40_49\": 2431, \"AGE_50_64\": 2664, \"AGE_65_UP\": 1036, \"MED_AGE\": 38.200000, \"MED_AGE_M\": 37.900000, \"MED_AGE_F\": 38.600000, \"HOUSEHOLDS\": 4668, \"AVE_HH_SZ\": 2.830000, \"HSEHLD_1_M\": 363, \"HSEHLD_1_F\": 310, \"MARHH_CHD\": 1468, \"MARHH_NO_C\": 1722, \"MHH_CHILD\": 90, \"FHH_CHILD\": 213, \"FAMILIES\": 3746, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 4760, \"VACANT\": 92, \"OWNER_OCC\": 4237, \"RENTER_OCC\": 431 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.107229010710427, 47.482113292480001 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"East Wenatchee Bench\", \"CLASS\": \"CDP\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"20190\", \"CAPITAL\": \"N\", \"AREALAND\": 8.419000, \"AREAWATER\": 0.611000, \"POP_CL\": 6, \"POP2000\": 13658, \"WHITE\": 12256, \"BLACK\": 29, \"AMERI_ES\": 124, \"ASIAN\": 83, \"HAWN_PI\": 9, \"OTHER\": 912, \"MULT_RACE\": 245, \"HISPANIC\": 1727, \"MALES\": 6633, \"FEMALES\": 7025, \"AGE_UNDER5\": 999, \"AGE_5_17\": 3004, \"AGE_18_21\": 693, \"AGE_22_29\": 1121, \"AGE_30_39\": 1943, \"AGE_40_49\": 2227, \"AGE_50_64\": 2034, \"AGE_65_UP\": 1637, \"MED_AGE\": 35.900000, \"MED_AGE_M\": 35.100000, \"MED_AGE_F\": 36.600000, \"HOUSEHOLDS\": 4834, \"AVE_HH_SZ\": 2.790000, \"HSEHLD_1_M\": 334, \"HSEHLD_1_F\": 515, \"MARHH_CHD\": 1441, \"MARHH_NO_C\": 1583, \"MHH_CHILD\": 128, \"FHH_CHILD\": 367, \"FAMILIES\": 3768, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 5048, \"VACANT\": 214, \"OWNER_OCC\": 3659, \"RENTER_OCC\": 1175 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -120.26952371751716, 47.417057139273147 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Edmonds\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"20750\", \"CAPITAL\": \"N\", \"AREALAND\": 8.905000, \"AREAWATER\": 9.533000, \"POP_CL\": 6, \"POP2000\": 39515, \"WHITE\": 34666, \"BLACK\": 530, \"AMERI_ES\": 317, \"ASIAN\": 2199, \"HAWN_PI\": 102, \"OTHER\": 497, \"MULT_RACE\": 1204, \"HISPANIC\": 1312, \"MALES\": 18699, \"FEMALES\": 20816, \"AGE_UNDER5\": 1973, \"AGE_5_17\": 6184, \"AGE_18_21\": 1579, \"AGE_22_29\": 3319, \"AGE_30_39\": 5453, \"AGE_40_49\": 6718, \"AGE_50_64\": 7730, \"AGE_65_UP\": 6559, \"MED_AGE\": 42.000000, \"MED_AGE_M\": 40.200000, \"MED_AGE_F\": 43.500000, \"HOUSEHOLDS\": 16904, \"AVE_HH_SZ\": 2.320000, \"HSEHLD_1_M\": 1765, \"HSEHLD_1_F\": 3141, \"MARHH_CHD\": 3337, \"MARHH_NO_C\": 5461, \"MHH_CHILD\": 271, \"FHH_CHILD\": 798, \"FAMILIES\": 10815, \"AVE_FAM_SZ\": 2.850000, \"HSE_UNITS\": 17508, \"VACANT\": 604, \"OWNER_OCC\": 11514, \"RENTER_OCC\": 5390 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.347567060820211, 47.809072376147469 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Elk Plain\", \"CLASS\": \"CDP\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"21205\", \"CAPITAL\": \"N\", \"AREALAND\": 9.567000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 15697, \"WHITE\": 12647, \"BLACK\": 848, \"AMERI_ES\": 193, \"ASIAN\": 636, \"HAWN_PI\": 215, \"OTHER\": 233, \"MULT_RACE\": 925, \"HISPANIC\": 743, \"MALES\": 7923, \"FEMALES\": 7774, \"AGE_UNDER5\": 1207, \"AGE_5_17\": 3950, \"AGE_18_21\": 793, \"AGE_22_29\": 1365, \"AGE_30_39\": 2918, \"AGE_40_49\": 2646, \"AGE_50_64\": 1977, \"AGE_65_UP\": 841, \"MED_AGE\": 32.100000, \"MED_AGE_M\": 32.400000, \"MED_AGE_F\": 31.800000, \"HOUSEHOLDS\": 4990, \"AVE_HH_SZ\": 3.120000, \"HSEHLD_1_M\": 342, \"HSEHLD_1_F\": 264, \"MARHH_CHD\": 1872, \"MARHH_NO_C\": 1468, \"MHH_CHILD\": 214, \"FHH_CHILD\": 351, \"FAMILIES\": 4168, \"AVE_FAM_SZ\": 3.340000, \"HSE_UNITS\": 5211, \"VACANT\": 221, \"OWNER_OCC\": 4224, \"RENTER_OCC\": 766 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.354629674315049, 47.046008711208593 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ellensburg\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"21240\", \"CAPITAL\": \"N\", \"AREALAND\": 6.590000, \"AREAWATER\": 0.046000, \"POP_CL\": 6, \"POP2000\": 15414, \"WHITE\": 13575, \"BLACK\": 181, \"AMERI_ES\": 146, \"ASIAN\": 631, \"HAWN_PI\": 25, \"OTHER\": 441, \"MULT_RACE\": 415, \"HISPANIC\": 976, \"MALES\": 7511, \"FEMALES\": 7903, \"AGE_UNDER5\": 759, \"AGE_5_17\": 1675, \"AGE_18_21\": 3801, \"AGE_22_29\": 3572, \"AGE_30_39\": 1501, \"AGE_40_49\": 1323, \"AGE_50_64\": 1330, \"AGE_65_UP\": 1453, \"MED_AGE\": 23.600000, \"MED_AGE_M\": 23.600000, \"MED_AGE_F\": 23.600000, \"HOUSEHOLDS\": 6249, \"AVE_HH_SZ\": 2.120000, \"HSEHLD_1_M\": 915, \"HSEHLD_1_F\": 1305, \"MARHH_CHD\": 833, \"MARHH_NO_C\": 1128, \"MHH_CHILD\": 92, \"FHH_CHILD\": 374, \"FAMILIES\": 2650, \"AVE_FAM_SZ\": 2.840000, \"HSE_UNITS\": 6732, \"VACANT\": 483, \"OWNER_OCC\": 2163, \"RENTER_OCC\": 4086 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -120.538814221481289, 46.997638642717767 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Enumclaw\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"22045\", \"CAPITAL\": \"N\", \"AREALAND\": 3.910000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11116, \"WHITE\": 10477, \"BLACK\": 33, \"AMERI_ES\": 88, \"ASIAN\": 87, \"HAWN_PI\": 12, \"OTHER\": 128, \"MULT_RACE\": 291, \"HISPANIC\": 380, \"MALES\": 5310, \"FEMALES\": 5806, \"AGE_UNDER5\": 803, \"AGE_5_17\": 2442, \"AGE_18_21\": 513, \"AGE_22_29\": 1000, \"AGE_30_39\": 1776, \"AGE_40_49\": 1678, \"AGE_50_64\": 1290, \"AGE_65_UP\": 1614, \"MED_AGE\": 35.100000, \"MED_AGE_M\": 33.000000, \"MED_AGE_F\": 36.800000, \"HOUSEHOLDS\": 4317, \"AVE_HH_SZ\": 2.520000, \"HSEHLD_1_M\": 458, \"HSEHLD_1_F\": 805, \"MARHH_CHD\": 1149, \"MARHH_NO_C\": 1009, \"MHH_CHILD\": 132, \"FHH_CHILD\": 336, \"FAMILIES\": 2839, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 4456, \"VACANT\": 139, \"OWNER_OCC\": 2809, \"RENTER_OCC\": 1508 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.983292123396751, 47.203436480389342 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Everett\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"22640\", \"CAPITAL\": \"N\", \"AREALAND\": 32.504000, \"AREAWATER\": 15.149000, \"POP_CL\": 7, \"POP2000\": 91488, \"WHITE\": 74152, \"BLACK\": 3061, \"AMERI_ES\": 1423, \"ASIAN\": 5773, \"HAWN_PI\": 330, \"OTHER\": 2865, \"MULT_RACE\": 3884, \"HISPANIC\": 6539, \"MALES\": 46526, \"FEMALES\": 44962, \"AGE_UNDER5\": 7136, \"AGE_5_17\": 15843, \"AGE_18_21\": 6268, \"AGE_22_29\": 12902, \"AGE_30_39\": 15515, \"AGE_40_49\": 13236, \"AGE_50_64\": 11173, \"AGE_65_UP\": 9415, \"MED_AGE\": 32.200000, \"MED_AGE_M\": 31.100000, \"MED_AGE_F\": 33.600000, \"HOUSEHOLDS\": 36325, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 5690, \"HSEHLD_1_F\": 5819, \"MARHH_CHD\": 7344, \"MARHH_NO_C\": 7932, \"MHH_CHILD\": 1109, \"FHH_CHILD\": 3130, \"FAMILIES\": 21616, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 38512, \"VACANT\": 2187, \"OWNER_OCC\": 16701, \"RENTER_OCC\": 19624 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.188569342765987, 47.964567205704711 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Federal Way\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"23515\", \"CAPITAL\": \"N\", \"AREALAND\": 21.028000, \"AREAWATER\": 0.126000, \"POP_CL\": 7, \"POP2000\": 83259, \"WHITE\": 57318, \"BLACK\": 6609, \"AMERI_ES\": 740, \"ASIAN\": 10232, \"HAWN_PI\": 852, \"OTHER\": 3055, \"MULT_RACE\": 4453, \"HISPANIC\": 6266, \"MALES\": 40944, \"FEMALES\": 42315, \"AGE_UNDER5\": 6508, \"AGE_5_17\": 17003, \"AGE_18_21\": 4648, \"AGE_22_29\": 10009, \"AGE_30_39\": 13965, \"AGE_40_49\": 13135, \"AGE_50_64\": 11625, \"AGE_65_UP\": 6366, \"MED_AGE\": 32.500000, \"MED_AGE_M\": 31.800000, \"MED_AGE_F\": 33.200000, \"HOUSEHOLDS\": 31437, \"AVE_HH_SZ\": 2.630000, \"HSEHLD_1_M\": 3558, \"HSEHLD_1_F\": 4173, \"MARHH_CHD\": 8062, \"MARHH_NO_C\": 7858, \"MHH_CHILD\": 903, \"FHH_CHILD\": 2659, \"FAMILIES\": 21259, \"AVE_FAM_SZ\": 3.170000, \"HSE_UNITS\": 32581, \"VACANT\": 1144, \"OWNER_OCC\": 17612, \"RENTER_OCC\": 13825 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.326965189656633, 47.314147716527998 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Five Corners\", \"CLASS\": \"CDP\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"24188\", \"CAPITAL\": \"N\", \"AREALAND\": 6.172000, \"AREAWATER\": 0.001000, \"POP_CL\": 6, \"POP2000\": 12207, \"WHITE\": 10821, \"BLACK\": 201, \"AMERI_ES\": 107, \"ASIAN\": 487, \"HAWN_PI\": 76, \"OTHER\": 186, \"MULT_RACE\": 329, \"HISPANIC\": 505, \"MALES\": 6088, \"FEMALES\": 6119, \"AGE_UNDER5\": 1004, \"AGE_5_17\": 2680, \"AGE_18_21\": 554, \"AGE_22_29\": 1191, \"AGE_30_39\": 2197, \"AGE_40_49\": 1989, \"AGE_50_64\": 1866, \"AGE_65_UP\": 726, \"MED_AGE\": 33.300000, \"MED_AGE_M\": 33.100000, \"MED_AGE_F\": 33.600000, \"HOUSEHOLDS\": 4100, \"AVE_HH_SZ\": 2.960000, \"HSEHLD_1_M\": 325, \"HSEHLD_1_F\": 293, \"MARHH_CHD\": 1320, \"MARHH_NO_C\": 1283, \"MHH_CHILD\": 108, \"FHH_CHILD\": 238, \"FAMILIES\": 3222, \"AVE_FAM_SZ\": 3.290000, \"HSE_UNITS\": 4306, \"VACANT\": 206, \"OWNER_OCC\": 3338, \"RENTER_OCC\": 762 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.557015680194652, 45.683441215628591 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fort Lewis\", \"CLASS\": \"CDP\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"24915\", \"CAPITAL\": \"N\", \"AREALAND\": 15.289000, \"AREAWATER\": 0.597000, \"POP_CL\": 6, \"POP2000\": 19089, \"WHITE\": 11537, \"BLACK\": 3882, \"AMERI_ES\": 259, \"ASIAN\": 650, \"HAWN_PI\": 342, \"OTHER\": 1189, \"MULT_RACE\": 1230, \"HISPANIC\": 2507, \"MALES\": 11973, \"FEMALES\": 7116, \"AGE_UNDER5\": 2391, \"AGE_5_17\": 3740, \"AGE_18_21\": 3076, \"AGE_22_29\": 5351, \"AGE_30_39\": 3500, \"AGE_40_49\": 802, \"AGE_50_64\": 151, \"AGE_65_UP\": 78, \"MED_AGE\": 22.400000, \"MED_AGE_M\": 22.400000, \"MED_AGE_F\": 22.400000, \"HOUSEHOLDS\": 3476, \"AVE_HH_SZ\": 3.750000, \"HSEHLD_1_M\": 46, \"HSEHLD_1_F\": 23, \"MARHH_CHD\": 2697, \"MARHH_NO_C\": 407, \"MHH_CHILD\": 63, \"FHH_CHILD\": 223, \"FAMILIES\": 3399, \"AVE_FAM_SZ\": 3.780000, \"HSE_UNITS\": 3560, \"VACANT\": 84, \"OWNER_OCC\": 51, \"RENTER_OCC\": 3425 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.551487863715764, 47.115662811312838 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Inglewood-Finn Hill\", \"CLASS\": \"CDP\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"33380\", \"CAPITAL\": \"N\", \"AREALAND\": 5.777000, \"AREAWATER\": 2.182000, \"POP_CL\": 6, \"POP2000\": 22661, \"WHITE\": 19666, \"BLACK\": 316, \"AMERI_ES\": 108, \"ASIAN\": 1446, \"HAWN_PI\": 42, \"OTHER\": 297, \"MULT_RACE\": 786, \"HISPANIC\": 860, \"MALES\": 11384, \"FEMALES\": 11277, \"AGE_UNDER5\": 1607, \"AGE_5_17\": 4325, \"AGE_18_21\": 1018, \"AGE_22_29\": 2199, \"AGE_30_39\": 4143, \"AGE_40_49\": 4182, \"AGE_50_64\": 3833, \"AGE_65_UP\": 1354, \"MED_AGE\": 35.500000, \"MED_AGE_M\": 34.900000, \"MED_AGE_F\": 36.100000, \"HOUSEHOLDS\": 8306, \"AVE_HH_SZ\": 2.710000, \"HSEHLD_1_M\": 687, \"HSEHLD_1_F\": 785, \"MARHH_CHD\": 2591, \"MARHH_NO_C\": 2541, \"MHH_CHILD\": 165, \"FHH_CHILD\": 454, \"FAMILIES\": 6165, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 8553, \"VACANT\": 247, \"OWNER_OCC\": 6380, \"RENTER_OCC\": 1926 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.208025287191447, 47.723758849375329 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Issaquah\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"33805\", \"CAPITAL\": \"N\", \"AREALAND\": 8.424000, \"AREAWATER\": 0.028000, \"POP_CL\": 6, \"POP2000\": 11212, \"WHITE\": 9861, \"BLACK\": 99, \"AMERI_ES\": 71, \"ASIAN\": 677, \"HAWN_PI\": 12, \"OTHER\": 164, \"MULT_RACE\": 328, \"HISPANIC\": 555, \"MALES\": 5369, \"FEMALES\": 5843, \"AGE_UNDER5\": 682, \"AGE_5_17\": 1802, \"AGE_18_21\": 453, \"AGE_22_29\": 1260, \"AGE_30_39\": 2096, \"AGE_40_49\": 2037, \"AGE_50_64\": 1757, \"AGE_65_UP\": 1125, \"MED_AGE\": 37.000000, \"MED_AGE_M\": 35.500000, \"MED_AGE_F\": 38.300000, \"HOUSEHOLDS\": 4840, \"AVE_HH_SZ\": 2.270000, \"HSEHLD_1_M\": 590, \"HSEHLD_1_F\": 908, \"MARHH_CHD\": 1039, \"MARHH_NO_C\": 1252, \"MHH_CHILD\": 79, \"FHH_CHILD\": 308, \"FAMILIES\": 2909, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 5195, \"VACANT\": 355, \"OWNER_OCC\": 2832, \"RENTER_OCC\": 2008 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.032195367294264, 47.536633009280479 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Kelso\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"35065\", \"CAPITAL\": \"N\", \"AREALAND\": 8.083000, \"AREAWATER\": 0.286000, \"POP_CL\": 6, \"POP2000\": 11895, \"WHITE\": 10722, \"BLACK\": 98, \"AMERI_ES\": 244, \"ASIAN\": 112, \"HAWN_PI\": 25, \"OTHER\": 371, \"MULT_RACE\": 323, \"HISPANIC\": 824, \"MALES\": 5936, \"FEMALES\": 5959, \"AGE_UNDER5\": 881, \"AGE_5_17\": 2486, \"AGE_18_21\": 737, \"AGE_22_29\": 1351, \"AGE_30_39\": 1744, \"AGE_40_49\": 1673, \"AGE_50_64\": 1555, \"AGE_65_UP\": 1468, \"MED_AGE\": 32.900000, \"MED_AGE_M\": 31.800000, \"MED_AGE_F\": 34.100000, \"HOUSEHOLDS\": 4616, \"AVE_HH_SZ\": 2.520000, \"HSEHLD_1_M\": 629, \"HSEHLD_1_F\": 677, \"MARHH_CHD\": 850, \"MARHH_NO_C\": 1133, \"MHH_CHILD\": 175, \"FHH_CHILD\": 525, \"FAMILIES\": 2989, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 5067, \"VACANT\": 451, \"OWNER_OCC\": 2378, \"RENTER_OCC\": 2238 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.891900202808699, 46.143490741487064 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Kenmore\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"35170\", \"CAPITAL\": \"N\", \"AREALAND\": 6.167000, \"AREAWATER\": 0.096000, \"POP_CL\": 6, \"POP2000\": 18678, \"WHITE\": 16194, \"BLACK\": 259, \"AMERI_ES\": 69, \"ASIAN\": 1338, \"HAWN_PI\": 34, \"OTHER\": 231, \"MULT_RACE\": 553, \"HISPANIC\": 655, \"MALES\": 9277, \"FEMALES\": 9401, \"AGE_UNDER5\": 1069, \"AGE_5_17\": 3502, \"AGE_18_21\": 802, \"AGE_22_29\": 1803, \"AGE_30_39\": 2971, \"AGE_40_49\": 3525, \"AGE_50_64\": 3076, \"AGE_65_UP\": 1930, \"MED_AGE\": 37.500000, \"MED_AGE_M\": 36.800000, \"MED_AGE_F\": 38.200000, \"HOUSEHOLDS\": 7307, \"AVE_HH_SZ\": 2.540000, \"HSEHLD_1_M\": 813, \"HSEHLD_1_F\": 949, \"MARHH_CHD\": 1928, \"MARHH_NO_C\": 2170, \"MHH_CHILD\": 124, \"FHH_CHILD\": 398, \"FAMILIES\": 4959, \"AVE_FAM_SZ\": 3.030000, \"HSE_UNITS\": 7562, \"VACANT\": 255, \"OWNER_OCC\": 5264, \"RENTER_OCC\": 2043 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.235312574966756, 47.754021575448284 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Kennewick\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"35275\", \"CAPITAL\": \"N\", \"AREALAND\": 22.933000, \"AREAWATER\": 1.384000, \"POP_CL\": 7, \"POP2000\": 54693, \"WHITE\": 45355, \"BLACK\": 624, \"AMERI_ES\": 507, \"ASIAN\": 1161, \"HAWN_PI\": 59, \"OTHER\": 5142, \"MULT_RACE\": 1845, \"HISPANIC\": 8503, \"MALES\": 27109, \"FEMALES\": 27584, \"AGE_UNDER5\": 4574, \"AGE_5_17\": 11597, \"AGE_18_21\": 3340, \"AGE_22_29\": 6084, \"AGE_30_39\": 7895, \"AGE_40_49\": 8286, \"AGE_50_64\": 7350, \"AGE_65_UP\": 5567, \"MED_AGE\": 32.300000, \"MED_AGE_M\": 31.000000, \"MED_AGE_F\": 33.500000, \"HOUSEHOLDS\": 20786, \"AVE_HH_SZ\": 2.600000, \"HSEHLD_1_M\": 2485, \"HSEHLD_1_F\": 2939, \"MARHH_CHD\": 5327, \"MARHH_NO_C\": 5373, \"MHH_CHILD\": 648, \"FHH_CHILD\": 1843, \"FAMILIES\": 14177, \"AVE_FAM_SZ\": 3.150000, \"HSE_UNITS\": 22043, \"VACANT\": 1257, \"OWNER_OCC\": 12403, \"RENTER_OCC\": 8383 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -119.155660865397437, 46.203790881579252 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Kent\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"35415\", \"CAPITAL\": \"N\", \"AREALAND\": 28.034000, \"AREAWATER\": 0.238000, \"POP_CL\": 7, \"POP2000\": 79524, \"WHITE\": 56307, \"BLACK\": 6547, \"AMERI_ES\": 777, \"ASIAN\": 7489, \"HAWN_PI\": 608, \"OTHER\": 3525, \"MULT_RACE\": 4271, \"HISPANIC\": 6466, \"MALES\": 39440, \"FEMALES\": 40084, \"AGE_UNDER5\": 6676, \"AGE_5_17\": 15335, \"AGE_18_21\": 4492, \"AGE_22_29\": 10535, \"AGE_30_39\": 14386, \"AGE_40_49\": 12081, \"AGE_50_64\": 10181, \"AGE_65_UP\": 5838, \"MED_AGE\": 31.800000, \"MED_AGE_M\": 31.400000, \"MED_AGE_F\": 32.300000, \"HOUSEHOLDS\": 31113, \"AVE_HH_SZ\": 2.530000, \"HSEHLD_1_M\": 4476, \"HSEHLD_1_F\": 4395, \"MARHH_CHD\": 7268, \"MARHH_NO_C\": 6768, \"MHH_CHILD\": 914, \"FHH_CHILD\": 2875, \"FAMILIES\": 19591, \"AVE_FAM_SZ\": 3.150000, \"HSE_UNITS\": 32488, \"VACANT\": 1375, \"OWNER_OCC\": 15178, \"RENTER_OCC\": 15935 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.215250915435959, 47.383826545422018 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Kingsgate\", \"CLASS\": \"CDP\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"35835\", \"CAPITAL\": \"N\", \"AREALAND\": 2.325000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12222, \"WHITE\": 9771, \"BLACK\": 199, \"AMERI_ES\": 75, \"ASIAN\": 1422, \"HAWN_PI\": 29, \"OTHER\": 222, \"MULT_RACE\": 504, \"HISPANIC\": 690, \"MALES\": 6037, \"FEMALES\": 6185, \"AGE_UNDER5\": 836, \"AGE_5_17\": 2569, \"AGE_18_21\": 590, \"AGE_22_29\": 1215, \"AGE_30_39\": 2249, \"AGE_40_49\": 1949, \"AGE_50_64\": 1985, \"AGE_65_UP\": 829, \"MED_AGE\": 33.800000, \"MED_AGE_M\": 32.400000, \"MED_AGE_F\": 35.300000, \"HOUSEHOLDS\": 4314, \"AVE_HH_SZ\": 2.830000, \"HSEHLD_1_M\": 338, \"HSEHLD_1_F\": 525, \"MARHH_CHD\": 1268, \"MARHH_NO_C\": 1236, \"MHH_CHILD\": 74, \"FHH_CHILD\": 292, \"FAMILIES\": 3159, \"AVE_FAM_SZ\": 3.260000, \"HSE_UNITS\": 4424, \"VACANT\": 110, \"OWNER_OCC\": 3316, \"RENTER_OCC\": 998 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.162457617475638, 47.727438584232274 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Kirkland\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"35940\", \"CAPITAL\": \"N\", \"AREALAND\": 10.676000, \"AREAWATER\": 0.332000, \"POP_CL\": 6, \"POP2000\": 45054, \"WHITE\": 38420, \"BLACK\": 717, \"AMERI_ES\": 238, \"ASIAN\": 3512, \"HAWN_PI\": 89, \"OTHER\": 761, \"MULT_RACE\": 1317, \"HISPANIC\": 1852, \"MALES\": 21921, \"FEMALES\": 23133, \"AGE_UNDER5\": 2474, \"AGE_5_17\": 5848, \"AGE_18_21\": 2069, \"AGE_22_29\": 6599, \"AGE_30_39\": 8765, \"AGE_40_49\": 7467, \"AGE_50_64\": 7220, \"AGE_65_UP\": 4612, \"MED_AGE\": 36.100000, \"MED_AGE_M\": 35.100000, \"MED_AGE_F\": 37.200000, \"HOUSEHOLDS\": 20736, \"AVE_HH_SZ\": 2.130000, \"HSEHLD_1_M\": 3304, \"HSEHLD_1_F\": 4081, \"MARHH_CHD\": 3494, \"MARHH_NO_C\": 5210, \"MHH_CHILD\": 338, \"FHH_CHILD\": 1002, \"FAMILIES\": 11035, \"AVE_FAM_SZ\": 2.800000, \"HSE_UNITS\": 21831, \"VACANT\": 1095, \"OWNER_OCC\": 11813, \"RENTER_OCC\": 8923 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.179950302022633, 47.68694681796881 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lacey\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"36745\", \"CAPITAL\": \"N\", \"AREALAND\": 15.950000, \"AREAWATER\": 0.374000, \"POP_CL\": 6, \"POP2000\": 31226, \"WHITE\": 24417, \"BLACK\": 1490, \"AMERI_ES\": 416, \"ASIAN\": 2423, \"HAWN_PI\": 330, \"OTHER\": 676, \"MULT_RACE\": 1474, \"HISPANIC\": 1843, \"MALES\": 14918, \"FEMALES\": 16308, \"AGE_UNDER5\": 2412, \"AGE_5_17\": 5814, \"AGE_18_21\": 1744, \"AGE_22_29\": 3608, \"AGE_30_39\": 4936, \"AGE_40_49\": 4509, \"AGE_50_64\": 4044, \"AGE_65_UP\": 4159, \"MED_AGE\": 34.200000, \"MED_AGE_M\": 32.600000, \"MED_AGE_F\": 35.700000, \"HOUSEHOLDS\": 12459, \"AVE_HH_SZ\": 2.470000, \"HSEHLD_1_M\": 1327, \"HSEHLD_1_F\": 2189, \"MARHH_CHD\": 2937, \"MARHH_NO_C\": 3304, \"MHH_CHILD\": 302, \"FHH_CHILD\": 1006, \"FAMILIES\": 8149, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 13160, \"VACANT\": 701, \"OWNER_OCC\": 6919, \"RENTER_OCC\": 5540 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.792967315767811, 47.027787823528648 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lake Forest Park\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"37270\", \"CAPITAL\": \"N\", \"AREALAND\": 3.536000, \"AREAWATER\": 0.121000, \"POP_CL\": 6, \"POP2000\": 13142, \"WHITE\": 11213, \"BLACK\": 216, \"AMERI_ES\": 56, \"ASIAN\": 1043, \"HAWN_PI\": 15, \"OTHER\": 121, \"MULT_RACE\": 478, \"HISPANIC\": 294, \"MALES\": 6497, \"FEMALES\": 6645, \"AGE_UNDER5\": 617, \"AGE_5_17\": 2324, \"AGE_18_21\": 541, \"AGE_22_29\": 897, \"AGE_30_39\": 1685, \"AGE_40_49\": 2617, \"AGE_50_64\": 2752, \"AGE_65_UP\": 1709, \"MED_AGE\": 42.100000, \"MED_AGE_M\": 41.400000, \"MED_AGE_F\": 42.900000, \"HOUSEHOLDS\": 5029, \"AVE_HH_SZ\": 2.550000, \"HSEHLD_1_M\": 420, \"HSEHLD_1_F\": 645, \"MARHH_CHD\": 1356, \"MARHH_NO_C\": 1719, \"MHH_CHILD\": 61, \"FHH_CHILD\": 180, \"FAMILIES\": 3603, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 5168, \"VACANT\": 139, \"OWNER_OCC\": 4013, \"RENTER_OCC\": 1016 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.277448261384279, 47.757890912543196 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lakeland North\", \"CLASS\": \"CDP\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"37420\", \"CAPITAL\": \"N\", \"AREALAND\": 5.309000, \"AREAWATER\": 0.142000, \"POP_CL\": 6, \"POP2000\": 15085, \"WHITE\": 12438, \"BLACK\": 514, \"AMERI_ES\": 161, \"ASIAN\": 1048, \"HAWN_PI\": 75, \"OTHER\": 245, \"MULT_RACE\": 604, \"HISPANIC\": 537, \"MALES\": 7485, \"FEMALES\": 7600, \"AGE_UNDER5\": 995, \"AGE_5_17\": 3536, \"AGE_18_21\": 695, \"AGE_22_29\": 1090, \"AGE_30_39\": 2461, \"AGE_40_49\": 2815, \"AGE_50_64\": 2470, \"AGE_65_UP\": 1023, \"MED_AGE\": 35.800000, \"MED_AGE_M\": 35.800000, \"MED_AGE_F\": 35.900000, \"HOUSEHOLDS\": 4978, \"AVE_HH_SZ\": 3.030000, \"HSEHLD_1_M\": 308, \"HSEHLD_1_F\": 287, \"MARHH_CHD\": 1760, \"MARHH_NO_C\": 1665, \"MHH_CHILD\": 137, \"FHH_CHILD\": 258, \"FAMILIES\": 4100, \"AVE_FAM_SZ\": 3.290000, \"HSE_UNITS\": 5067, \"VACANT\": 89, \"OWNER_OCC\": 4248, \"RENTER_OCC\": 730 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.265043522364678, 47.333981397536704 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lakeland South\", \"CLASS\": \"CDP\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"37430\", \"CAPITAL\": \"N\", \"AREALAND\": 5.412000, \"AREAWATER\": 0.130000, \"POP_CL\": 6, \"POP2000\": 11436, \"WHITE\": 9599, \"BLACK\": 422, \"AMERI_ES\": 100, \"ASIAN\": 697, \"HAWN_PI\": 48, \"OTHER\": 132, \"MULT_RACE\": 438, \"HISPANIC\": 381, \"MALES\": 5713, \"FEMALES\": 5723, \"AGE_UNDER5\": 781, \"AGE_5_17\": 2378, \"AGE_18_21\": 522, \"AGE_22_29\": 871, \"AGE_30_39\": 2002, \"AGE_40_49\": 2105, \"AGE_50_64\": 1742, \"AGE_65_UP\": 1035, \"MED_AGE\": 36.500000, \"MED_AGE_M\": 36.700000, \"MED_AGE_F\": 36.300000, \"HOUSEHOLDS\": 4135, \"AVE_HH_SZ\": 2.760000, \"HSEHLD_1_M\": 374, \"HSEHLD_1_F\": 345, \"MARHH_CHD\": 1269, \"MARHH_NO_C\": 1398, \"MHH_CHILD\": 85, \"FHH_CHILD\": 226, \"FAMILIES\": 3165, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 4241, \"VACANT\": 106, \"OWNER_OCC\": 3500, \"RENTER_OCC\": 635 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.271885827230463, 47.278423739754636 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lakewood\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"38038\", \"CAPITAL\": \"N\", \"AREALAND\": 17.114000, \"AREAWATER\": 1.858000, \"POP_CL\": 7, \"POP2000\": 58211, \"WHITE\": 37734, \"BLACK\": 7132, \"AMERI_ES\": 902, \"ASIAN\": 5208, \"HAWN_PI\": 1070, \"OTHER\": 2068, \"MULT_RACE\": 4097, \"HISPANIC\": 4941, \"MALES\": 28484, \"FEMALES\": 29727, \"AGE_UNDER5\": 4245, \"AGE_5_17\": 9968, \"AGE_18_21\": 3713, \"AGE_22_29\": 7168, \"AGE_30_39\": 8320, \"AGE_40_49\": 8433, \"AGE_50_64\": 8659, \"AGE_65_UP\": 7705, \"MED_AGE\": 35.000000, \"MED_AGE_M\": 34.200000, \"MED_AGE_F\": 36.000000, \"HOUSEHOLDS\": 23792, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 3364, \"HSEHLD_1_F\": 3688, \"MARHH_CHD\": 4171, \"MARHH_NO_C\": 6386, \"MHH_CHILD\": 626, \"FHH_CHILD\": 2373, \"FAMILIES\": 15076, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 25396, \"VACANT\": 1604, \"OWNER_OCC\": 11357, \"RENTER_OCC\": 12435 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.513056571703601, 47.165195306656052 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lea Hill\", \"CLASS\": \"CDP\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"38815\", \"CAPITAL\": \"N\", \"AREALAND\": 5.860000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10871, \"WHITE\": 9366, \"BLACK\": 242, \"AMERI_ES\": 103, \"ASIAN\": 486, \"HAWN_PI\": 19, \"OTHER\": 210, \"MULT_RACE\": 445, \"HISPANIC\": 536, \"MALES\": 5435, \"FEMALES\": 5436, \"AGE_UNDER5\": 867, \"AGE_5_17\": 2560, \"AGE_18_21\": 575, \"AGE_22_29\": 1009, \"AGE_30_39\": 2003, \"AGE_40_49\": 1781, \"AGE_50_64\": 1498, \"AGE_65_UP\": 578, \"MED_AGE\": 32.600000, \"MED_AGE_M\": 32.100000, \"MED_AGE_F\": 33.000000, \"HOUSEHOLDS\": 3644, \"AVE_HH_SZ\": 2.980000, \"HSEHLD_1_M\": 236, \"HSEHLD_1_F\": 254, \"MARHH_CHD\": 1320, \"MARHH_NO_C\": 1047, \"MHH_CHILD\": 100, \"FHH_CHILD\": 247, \"FAMILIES\": 2879, \"AVE_FAM_SZ\": 3.290000, \"HSE_UNITS\": 3754, \"VACANT\": 110, \"OWNER_OCC\": 2904, \"RENTER_OCC\": 740 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.17623573277784, 47.32711739297099 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Longview\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"40245\", \"CAPITAL\": \"N\", \"AREALAND\": 13.699000, \"AREAWATER\": 0.405000, \"POP_CL\": 6, \"POP2000\": 34660, \"WHITE\": 30967, \"BLACK\": 248, \"AMERI_ES\": 610, \"ASIAN\": 753, \"HAWN_PI\": 45, \"OTHER\": 1025, \"MULT_RACE\": 1012, \"HISPANIC\": 2017, \"MALES\": 16720, \"FEMALES\": 17940, \"AGE_UNDER5\": 2465, \"AGE_5_17\": 6530, \"AGE_18_21\": 1827, \"AGE_22_29\": 3495, \"AGE_30_39\": 4673, \"AGE_40_49\": 4946, \"AGE_50_64\": 5374, \"AGE_65_UP\": 5350, \"MED_AGE\": 36.600000, \"MED_AGE_M\": 34.900000, \"MED_AGE_F\": 38.100000, \"HOUSEHOLDS\": 14066, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 1734, \"HSEHLD_1_F\": 2497, \"MARHH_CHD\": 2679, \"MARHH_NO_C\": 3860, \"MHH_CHILD\": 433, \"FHH_CHILD\": 1232, \"FAMILIES\": 8938, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 15225, \"VACANT\": 1159, \"OWNER_OCC\": 8129, \"RENTER_OCC\": 5937 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.941263033353778, 46.144218852117518 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Lynnwood\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"40840\", \"CAPITAL\": \"N\", \"AREALAND\": 7.638000, \"AREAWATER\": 0.016000, \"POP_CL\": 6, \"POP2000\": 33847, \"WHITE\": 25138, \"BLACK\": 1110, \"AMERI_ES\": 346, \"ASIAN\": 4696, \"HAWN_PI\": 136, \"OTHER\": 948, \"MULT_RACE\": 1473, \"HISPANIC\": 2356, \"MALES\": 16494, \"FEMALES\": 17353, \"AGE_UNDER5\": 2392, \"AGE_5_17\": 5872, \"AGE_18_21\": 2068, \"AGE_22_29\": 4024, \"AGE_30_39\": 5547, \"AGE_40_49\": 5130, \"AGE_50_64\": 4818, \"AGE_65_UP\": 3996, \"MED_AGE\": 34.900000, \"MED_AGE_M\": 33.200000, \"MED_AGE_F\": 36.500000, \"HOUSEHOLDS\": 13328, \"AVE_HH_SZ\": 2.500000, \"HSEHLD_1_M\": 1662, \"HSEHLD_1_F\": 2239, \"MARHH_CHD\": 3020, \"MARHH_NO_C\": 3155, \"MHH_CHILD\": 327, \"FHH_CHILD\": 934, \"FAMILIES\": 8335, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 13808, \"VACANT\": 480, \"OWNER_OCC\": 7062, \"RENTER_OCC\": 6266 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.293054486914869, 47.829047085688181 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Maple Valley\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"43150\", \"CAPITAL\": \"N\", \"AREALAND\": 5.428000, \"AREAWATER\": 0.166000, \"POP_CL\": 6, \"POP2000\": 14209, \"WHITE\": 12876, \"BLACK\": 158, \"AMERI_ES\": 94, \"ASIAN\": 349, \"HAWN_PI\": 22, \"OTHER\": 193, \"MULT_RACE\": 517, \"HISPANIC\": 506, \"MALES\": 7077, \"FEMALES\": 7132, \"AGE_UNDER5\": 1312, \"AGE_5_17\": 3494, \"AGE_18_21\": 487, \"AGE_22_29\": 1164, \"AGE_30_39\": 3195, \"AGE_40_49\": 2385, \"AGE_50_64\": 1532, \"AGE_65_UP\": 640, \"MED_AGE\": 32.300000, \"MED_AGE_M\": 32.000000, \"MED_AGE_F\": 32.600000, \"HOUSEHOLDS\": 4809, \"AVE_HH_SZ\": 2.950000, \"HSEHLD_1_M\": 317, \"HSEHLD_1_F\": 336, \"MARHH_CHD\": 2045, \"MARHH_NO_C\": 1317, \"MHH_CHILD\": 114, \"FHH_CHILD\": 325, \"FAMILIES\": 3954, \"AVE_FAM_SZ\": 3.260000, \"HSE_UNITS\": 4922, \"VACANT\": 113, \"OWNER_OCC\": 4187, \"RENTER_OCC\": 622 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.033665839127423, 47.367218494241506 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Martha Lake\", \"CLASS\": \"CDP\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"43815\", \"CAPITAL\": \"N\", \"AREALAND\": 4.760000, \"AREAWATER\": 0.082000, \"POP_CL\": 6, \"POP2000\": 12633, \"WHITE\": 10586, \"BLACK\": 192, \"AMERI_ES\": 100, \"ASIAN\": 1090, \"HAWN_PI\": 29, \"OTHER\": 164, \"MULT_RACE\": 472, \"HISPANIC\": 467, \"MALES\": 6297, \"FEMALES\": 6336, \"AGE_UNDER5\": 1002, \"AGE_5_17\": 2409, \"AGE_18_21\": 632, \"AGE_22_29\": 1501, \"AGE_30_39\": 2262, \"AGE_40_49\": 2114, \"AGE_50_64\": 1882, \"AGE_65_UP\": 831, \"MED_AGE\": 33.500000, \"MED_AGE_M\": 33.200000, \"MED_AGE_F\": 33.900000, \"HOUSEHOLDS\": 4602, \"AVE_HH_SZ\": 2.740000, \"HSEHLD_1_M\": 404, \"HSEHLD_1_F\": 408, \"MARHH_CHD\": 1351, \"MARHH_NO_C\": 1423, \"MHH_CHILD\": 114, \"FHH_CHILD\": 295, \"FAMILIES\": 3419, \"AVE_FAM_SZ\": 3.100000, \"HSE_UNITS\": 4808, \"VACANT\": 206, \"OWNER_OCC\": 3146, \"RENTER_OCC\": 1456 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.227231969178945, 47.851951186947765 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Marysville\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"43955\", \"CAPITAL\": \"N\", \"AREALAND\": 9.589000, \"AREAWATER\": 0.188000, \"POP_CL\": 6, \"POP2000\": 25315, \"WHITE\": 22331, \"BLACK\": 257, \"AMERI_ES\": 406, \"ASIAN\": 967, \"HAWN_PI\": 90, \"OTHER\": 478, \"MULT_RACE\": 786, \"HISPANIC\": 1222, \"MALES\": 12347, \"FEMALES\": 12968, \"AGE_UNDER5\": 2085, \"AGE_5_17\": 5546, \"AGE_18_21\": 1136, \"AGE_22_29\": 2577, \"AGE_30_39\": 4607, \"AGE_40_49\": 3601, \"AGE_50_64\": 2896, \"AGE_65_UP\": 2867, \"MED_AGE\": 33.000000, \"MED_AGE_M\": 31.900000, \"MED_AGE_F\": 34.000000, \"HOUSEHOLDS\": 9400, \"AVE_HH_SZ\": 2.660000, \"HSEHLD_1_M\": 842, \"HSEHLD_1_F\": 1371, \"MARHH_CHD\": 2756, \"MARHH_NO_C\": 2327, \"MHH_CHILD\": 291, \"FHH_CHILD\": 758, \"FAMILIES\": 6609, \"AVE_FAM_SZ\": 3.150000, \"HSE_UNITS\": 9730, \"VACANT\": 330, \"OWNER_OCC\": 5964, \"RENTER_OCC\": 3436 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.151480300890782, 48.06386093553683 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mercer Island\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"45005\", \"CAPITAL\": \"N\", \"AREALAND\": 6.383000, \"AREAWATER\": 6.726000, \"POP_CL\": 6, \"POP2000\": 22036, \"WHITE\": 18530, \"BLACK\": 251, \"AMERI_ES\": 35, \"ASIAN\": 2615, \"HAWN_PI\": 16, \"OTHER\": 114, \"MULT_RACE\": 475, \"HISPANIC\": 410, \"MALES\": 10598, \"FEMALES\": 11438, \"AGE_UNDER5\": 997, \"AGE_5_17\": 4727, \"AGE_18_21\": 602, \"AGE_22_29\": 915, \"AGE_30_39\": 2087, \"AGE_40_49\": 4111, \"AGE_50_64\": 4483, \"AGE_65_UP\": 4114, \"MED_AGE\": 44.300000, \"MED_AGE_M\": 43.600000, \"MED_AGE_F\": 44.900000, \"HOUSEHOLDS\": 8437, \"AVE_HH_SZ\": 2.580000, \"HSEHLD_1_M\": 663, \"HSEHLD_1_F\": 1198, \"MARHH_CHD\": 2547, \"MARHH_NO_C\": 2991, \"MHH_CHILD\": 102, \"FHH_CHILD\": 345, \"FAMILIES\": 6273, \"AVE_FAM_SZ\": 3.030000, \"HSE_UNITS\": 8806, \"VACANT\": 369, \"OWNER_OCC\": 6790, \"RENTER_OCC\": 1647 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.220448352230619, 47.570413411576077 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mill Creek\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"45865\", \"CAPITAL\": \"N\", \"AREALAND\": 3.567000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11525, \"WHITE\": 9392, \"BLACK\": 163, \"AMERI_ES\": 50, \"ASIAN\": 1457, \"HAWN_PI\": 29, \"OTHER\": 129, \"MULT_RACE\": 305, \"HISPANIC\": 375, \"MALES\": 5577, \"FEMALES\": 5948, \"AGE_UNDER5\": 679, \"AGE_5_17\": 2127, \"AGE_18_21\": 537, \"AGE_22_29\": 1088, \"AGE_30_39\": 1604, \"AGE_40_49\": 1991, \"AGE_50_64\": 2147, \"AGE_65_UP\": 1352, \"MED_AGE\": 38.600000, \"MED_AGE_M\": 37.700000, \"MED_AGE_F\": 39.300000, \"HOUSEHOLDS\": 4631, \"AVE_HH_SZ\": 2.480000, \"HSEHLD_1_M\": 408, \"HSEHLD_1_F\": 702, \"MARHH_CHD\": 1269, \"MARHH_NO_C\": 1591, \"MHH_CHILD\": 68, \"FHH_CHILD\": 180, \"FAMILIES\": 3252, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 4769, \"VACANT\": 138, \"OWNER_OCC\": 3103, \"RENTER_OCC\": 1528 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.192486133486852, 47.862896673841234 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Monroe\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"46685\", \"CAPITAL\": \"N\", \"AREALAND\": 5.776000, \"AREAWATER\": 0.034000, \"POP_CL\": 6, \"POP2000\": 13795, \"WHITE\": 11882, \"BLACK\": 434, \"AMERI_ES\": 182, \"ASIAN\": 328, \"HAWN_PI\": 43, \"OTHER\": 553, \"MULT_RACE\": 373, \"HISPANIC\": 1332, \"MALES\": 7711, \"FEMALES\": 6084, \"AGE_UNDER5\": 1332, \"AGE_5_17\": 2454, \"AGE_18_21\": 658, \"AGE_22_29\": 2021, \"AGE_30_39\": 3102, \"AGE_40_49\": 1945, \"AGE_50_64\": 1177, \"AGE_65_UP\": 1106, \"MED_AGE\": 31.200000, \"MED_AGE_M\": 31.700000, \"MED_AGE_F\": 30.500000, \"HOUSEHOLDS\": 4173, \"AVE_HH_SZ\": 2.830000, \"HSEHLD_1_M\": 333, \"HSEHLD_1_F\": 526, \"MARHH_CHD\": 1464, \"MARHH_NO_C\": 947, \"MHH_CHILD\": 120, \"FHH_CHILD\": 325, \"FAMILIES\": 3060, \"AVE_FAM_SZ\": 3.260000, \"HSE_UNITS\": 4427, \"VACANT\": 254, \"OWNER_OCC\": 2576, \"RENTER_OCC\": 1597 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -121.977322791432329, 47.858763006340382 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Moses Lake\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"47245\", \"CAPITAL\": \"N\", \"AREALAND\": 10.182000, \"AREAWATER\": 1.755000, \"POP_CL\": 6, \"POP2000\": 14953, \"WHITE\": 11537, \"BLACK\": 253, \"AMERI_ES\": 152, \"ASIAN\": 214, \"HAWN_PI\": 10, \"OTHER\": 2309, \"MULT_RACE\": 478, \"HISPANIC\": 3800, \"MALES\": 7336, \"FEMALES\": 7617, \"AGE_UNDER5\": 1311, \"AGE_5_17\": 2997, \"AGE_18_21\": 957, \"AGE_22_29\": 1717, \"AGE_30_39\": 2090, \"AGE_40_49\": 1965, \"AGE_50_64\": 1898, \"AGE_65_UP\": 2018, \"MED_AGE\": 32.300000, \"MED_AGE_M\": 31.300000, \"MED_AGE_F\": 33.400000, \"HOUSEHOLDS\": 5642, \"AVE_HH_SZ\": 2.600000, \"HSEHLD_1_M\": 702, \"HSEHLD_1_F\": 846, \"MARHH_CHD\": 1387, \"MARHH_NO_C\": 1451, \"MHH_CHILD\": 151, \"FHH_CHILD\": 443, \"FAMILIES\": 3740, \"AVE_FAM_SZ\": 3.200000, \"HSE_UNITS\": 6263, \"VACANT\": 621, \"OWNER_OCC\": 3510, \"RENTER_OCC\": 2132 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -119.284509986796863, 47.121446929965153 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mountlake Terrace\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"47490\", \"CAPITAL\": \"N\", \"AREALAND\": 4.043000, \"AREAWATER\": 0.107000, \"POP_CL\": 6, \"POP2000\": 20362, \"WHITE\": 15821, \"BLACK\": 514, \"AMERI_ES\": 219, \"ASIAN\": 2167, \"HAWN_PI\": 119, \"OTHER\": 531, \"MULT_RACE\": 991, \"HISPANIC\": 1151, \"MALES\": 10078, \"FEMALES\": 10284, \"AGE_UNDER5\": 1314, \"AGE_5_17\": 3830, \"AGE_18_21\": 1100, \"AGE_22_29\": 2634, \"AGE_30_39\": 3750, \"AGE_40_49\": 3246, \"AGE_50_64\": 2621, \"AGE_65_UP\": 1867, \"MED_AGE\": 33.500000, \"MED_AGE_M\": 32.600000, \"MED_AGE_F\": 34.400000, \"HOUSEHOLDS\": 7962, \"AVE_HH_SZ\": 2.540000, \"HSEHLD_1_M\": 939, \"HSEHLD_1_F\": 1150, \"MARHH_CHD\": 1788, \"MARHH_NO_C\": 1888, \"MHH_CHILD\": 203, \"FHH_CHILD\": 617, \"FAMILIES\": 5018, \"AVE_FAM_SZ\": 3.110000, \"HSE_UNITS\": 8217, \"VACANT\": 255, \"OWNER_OCC\": 4751, \"RENTER_OCC\": 3211 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.294313693040763, 47.792148176569924 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mount Vernon\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"47560\", \"CAPITAL\": \"N\", \"AREALAND\": 11.112000, \"AREAWATER\": 0.260000, \"POP_CL\": 6, \"POP2000\": 26232, \"WHITE\": 19789, \"BLACK\": 192, \"AMERI_ES\": 268, \"ASIAN\": 676, \"HAWN_PI\": 40, \"OTHER\": 4494, \"MULT_RACE\": 773, \"HISPANIC\": 6589, \"MALES\": 12859, \"FEMALES\": 13373, \"AGE_UNDER5\": 2192, \"AGE_5_17\": 5405, \"AGE_18_21\": 1856, \"AGE_22_29\": 3142, \"AGE_30_39\": 3972, \"AGE_40_49\": 3361, \"AGE_50_64\": 3019, \"AGE_65_UP\": 3285, \"MED_AGE\": 31.100000, \"MED_AGE_M\": 29.700000, \"MED_AGE_F\": 32.700000, \"HOUSEHOLDS\": 9276, \"AVE_HH_SZ\": 2.750000, \"HSEHLD_1_M\": 901, \"HSEHLD_1_F\": 1523, \"MARHH_CHD\": 2404, \"MARHH_NO_C\": 2357, \"MHH_CHILD\": 223, \"FHH_CHILD\": 758, \"FAMILIES\": 6210, \"AVE_FAM_SZ\": 3.320000, \"HSE_UNITS\": 9686, \"VACANT\": 410, \"OWNER_OCC\": 5315, \"RENTER_OCC\": 3961 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.313235849165139, 48.421333139121629 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mukilteo\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"47735\", \"CAPITAL\": \"N\", \"AREALAND\": 6.339000, \"AREAWATER\": 3.104000, \"POP_CL\": 6, \"POP2000\": 18019, \"WHITE\": 14787, \"BLACK\": 266, \"AMERI_ES\": 143, \"ASIAN\": 1977, \"HAWN_PI\": 45, \"OTHER\": 204, \"MULT_RACE\": 597, \"HISPANIC\": 522, \"MALES\": 8948, \"FEMALES\": 9071, \"AGE_UNDER5\": 1061, \"AGE_5_17\": 4027, \"AGE_18_21\": 808, \"AGE_22_29\": 1508, \"AGE_30_39\": 2748, \"AGE_40_49\": 3698, \"AGE_50_64\": 2980, \"AGE_65_UP\": 1189, \"MED_AGE\": 36.500000, \"MED_AGE_M\": 36.100000, \"MED_AGE_F\": 36.900000, \"HOUSEHOLDS\": 6759, \"AVE_HH_SZ\": 2.660000, \"HSEHLD_1_M\": 678, \"HSEHLD_1_F\": 657, \"MARHH_CHD\": 2142, \"MARHH_NO_C\": 2038, \"MHH_CHILD\": 146, \"FHH_CHILD\": 424, \"FAMILIES\": 4984, \"AVE_FAM_SZ\": 3.100000, \"HSE_UNITS\": 7146, \"VACANT\": 387, \"OWNER_OCC\": 4638, \"RENTER_OCC\": 2121 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.290566241296858, 47.917327100719746 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"North Creek\", \"CLASS\": \"CDP\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"49665\", \"CAPITAL\": \"N\", \"AREALAND\": 13.585000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 25742, \"WHITE\": 22659, \"BLACK\": 260, \"AMERI_ES\": 166, \"ASIAN\": 1445, \"HAWN_PI\": 74, \"OTHER\": 369, \"MULT_RACE\": 769, \"HISPANIC\": 1137, \"MALES\": 12908, \"FEMALES\": 12834, \"AGE_UNDER5\": 1901, \"AGE_5_17\": 5541, \"AGE_18_21\": 1212, \"AGE_22_29\": 2805, \"AGE_30_39\": 4722, \"AGE_40_49\": 4862, \"AGE_50_64\": 3478, \"AGE_65_UP\": 1221, \"MED_AGE\": 33.100000, \"MED_AGE_M\": 32.500000, \"MED_AGE_F\": 33.700000, \"HOUSEHOLDS\": 9167, \"AVE_HH_SZ\": 2.810000, \"HSEHLD_1_M\": 788, \"HSEHLD_1_F\": 780, \"MARHH_CHD\": 3117, \"MARHH_NO_C\": 2577, \"MHH_CHILD\": 221, \"FHH_CHILD\": 570, \"FAMILIES\": 6879, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 9599, \"VACANT\": 432, \"OWNER_OCC\": 6939, \"RENTER_OCC\": 2228 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.18640473350338, 47.82421546148975 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"North Marysville\", \"CLASS\": \"CDP\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"49992\", \"CAPITAL\": \"N\", \"AREALAND\": 13.745000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 21161, \"WHITE\": 19011, \"BLACK\": 150, \"AMERI_ES\": 268, \"ASIAN\": 708, \"HAWN_PI\": 36, \"OTHER\": 371, \"MULT_RACE\": 617, \"HISPANIC\": 973, \"MALES\": 10586, \"FEMALES\": 10575, \"AGE_UNDER5\": 1535, \"AGE_5_17\": 5011, \"AGE_18_21\": 998, \"AGE_22_29\": 1865, \"AGE_30_39\": 3766, \"AGE_40_49\": 3490, \"AGE_50_64\": 2876, \"AGE_65_UP\": 1620, \"MED_AGE\": 33.500000, \"MED_AGE_M\": 33.200000, \"MED_AGE_F\": 33.900000, \"HOUSEHOLDS\": 7031, \"AVE_HH_SZ\": 3.010000, \"HSEHLD_1_M\": 468, \"HSEHLD_1_F\": 469, \"MARHH_CHD\": 2479, \"MARHH_NO_C\": 2247, \"MHH_CHILD\": 211, \"FHH_CHILD\": 446, \"FAMILIES\": 5743, \"AVE_FAM_SZ\": 3.270000, \"HSE_UNITS\": 7186, \"VACANT\": 155, \"OWNER_OCC\": 5882, \"RENTER_OCC\": 1149 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.143300428781984, 48.097891737171857 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Oak Harbor\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"50360\", \"CAPITAL\": \"N\", \"AREALAND\": 9.101000, \"AREAWATER\": 0.043000, \"POP_CL\": 6, \"POP2000\": 19795, \"WHITE\": 14833, \"BLACK\": 1078, \"AMERI_ES\": 242, \"ASIAN\": 1905, \"HAWN_PI\": 152, \"OTHER\": 480, \"MULT_RACE\": 1105, \"HISPANIC\": 1309, \"MALES\": 9833, \"FEMALES\": 9962, \"AGE_UNDER5\": 2062, \"AGE_5_17\": 4195, \"AGE_18_21\": 1143, \"AGE_22_29\": 3170, \"AGE_30_39\": 3489, \"AGE_40_49\": 2180, \"AGE_50_64\": 1772, \"AGE_65_UP\": 1784, \"MED_AGE\": 28.300000, \"MED_AGE_M\": 27.600000, \"MED_AGE_F\": 29.300000, \"HOUSEHOLDS\": 7333, \"AVE_HH_SZ\": 2.680000, \"HSEHLD_1_M\": 772, \"HSEHLD_1_F\": 859, \"MARHH_CHD\": 2473, \"MARHH_NO_C\": 1857, \"MHH_CHILD\": 161, \"FHH_CHILD\": 545, \"FAMILIES\": 5262, \"AVE_FAM_SZ\": 3.180000, \"HSE_UNITS\": 7772, \"VACANT\": 439, \"OWNER_OCC\": 3172, \"RENTER_OCC\": 4161 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.644306628276013, 48.296496058948854 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Olympia\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"51300\", \"CAPITAL\": \"Y\", \"AREALAND\": 16.709000, \"AREAWATER\": 1.813000, \"POP_CL\": 6, \"POP2000\": 42514, \"WHITE\": 36246, \"BLACK\": 805, \"AMERI_ES\": 553, \"ASIAN\": 2473, \"HAWN_PI\": 125, \"OTHER\": 713, \"MULT_RACE\": 1599, \"HISPANIC\": 1863, \"MALES\": 20319, \"FEMALES\": 22195, \"AGE_UNDER5\": 2307, \"AGE_5_17\": 6813, \"AGE_18_21\": 2656, \"AGE_22_29\": 5840, \"AGE_30_39\": 6092, \"AGE_40_49\": 6826, \"AGE_50_64\": 6308, \"AGE_65_UP\": 5672, \"MED_AGE\": 36.000000, \"MED_AGE_M\": 33.900000, \"MED_AGE_F\": 38.100000, \"HOUSEHOLDS\": 18670, \"AVE_HH_SZ\": 2.210000, \"HSEHLD_1_M\": 2653, \"HSEHLD_1_F\": 3926, \"MARHH_CHD\": 3287, \"MARHH_NO_C\": 4109, \"MHH_CHILD\": 366, \"FHH_CHILD\": 1349, \"FAMILIES\": 9968, \"AVE_FAM_SZ\": 2.880000, \"HSE_UNITS\": 19738, \"VACANT\": 1068, \"OWNER_OCC\": 9395, \"RENTER_OCC\": 9275 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.87843275187916, 47.043885969239007 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Opportunity\", \"CLASS\": \"CDP\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"51515\", \"CAPITAL\": \"N\", \"AREALAND\": 6.690000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 25065, \"WHITE\": 23440, \"BLACK\": 252, \"AMERI_ES\": 252, \"ASIAN\": 324, \"HAWN_PI\": 26, \"OTHER\": 157, \"MULT_RACE\": 614, \"HISPANIC\": 670, \"MALES\": 11976, \"FEMALES\": 13089, \"AGE_UNDER5\": 1742, \"AGE_5_17\": 4690, \"AGE_18_21\": 1414, \"AGE_22_29\": 2729, \"AGE_30_39\": 3447, \"AGE_40_49\": 3638, \"AGE_50_64\": 3694, \"AGE_65_UP\": 3711, \"MED_AGE\": 35.800000, \"MED_AGE_M\": 34.000000, \"MED_AGE_F\": 37.500000, \"HOUSEHOLDS\": 10242, \"AVE_HH_SZ\": 2.420000, \"HSEHLD_1_M\": 1142, \"HSEHLD_1_F\": 1808, \"MARHH_CHD\": 2118, \"MARHH_NO_C\": 2872, \"MHH_CHILD\": 289, \"FHH_CHILD\": 854, \"FAMILIES\": 6664, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 10827, \"VACANT\": 585, \"OWNER_OCC\": 5831, \"RENTER_OCC\": 4411 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.239260519590516, 47.647128667621587 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Orchards\", \"CLASS\": \"CDP\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"51795\", \"CAPITAL\": \"N\", \"AREALAND\": 6.862000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 17852, \"WHITE\": 15601, \"BLACK\": 312, \"AMERI_ES\": 157, \"ASIAN\": 733, \"HAWN_PI\": 106, \"OTHER\": 328, \"MULT_RACE\": 615, \"HISPANIC\": 809, \"MALES\": 8917, \"FEMALES\": 8935, \"AGE_UNDER5\": 1888, \"AGE_5_17\": 4219, \"AGE_18_21\": 814, \"AGE_22_29\": 2295, \"AGE_30_39\": 3494, \"AGE_40_49\": 2585, \"AGE_50_64\": 1822, \"AGE_65_UP\": 735, \"MED_AGE\": 29.300000, \"MED_AGE_M\": 29.400000, \"MED_AGE_F\": 29.300000, \"HOUSEHOLDS\": 5918, \"AVE_HH_SZ\": 3.020000, \"HSEHLD_1_M\": 444, \"HSEHLD_1_F\": 403, \"MARHH_CHD\": 2227, \"MARHH_NO_C\": 1464, \"MHH_CHILD\": 230, \"FHH_CHILD\": 479, \"FAMILIES\": 4702, \"AVE_FAM_SZ\": 3.340000, \"HSE_UNITS\": 6175, \"VACANT\": 257, \"OWNER_OCC\": 4391, \"RENTER_OCC\": 1527 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.5171412617361, 45.685124602662469 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Paine Field-Lake Stickney\", \"CLASS\": \"CDP\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"52765\", \"CAPITAL\": \"N\", \"AREALAND\": 7.373000, \"AREAWATER\": 0.028000, \"POP_CL\": 6, \"POP2000\": 24383, \"WHITE\": 19077, \"BLACK\": 955, \"AMERI_ES\": 313, \"ASIAN\": 1796, \"HAWN_PI\": 121, \"OTHER\": 1039, \"MULT_RACE\": 1082, \"HISPANIC\": 2065, \"MALES\": 12327, \"FEMALES\": 12056, \"AGE_UNDER5\": 1993, \"AGE_5_17\": 4477, \"AGE_18_21\": 1517, \"AGE_22_29\": 3857, \"AGE_30_39\": 4537, \"AGE_40_49\": 3475, \"AGE_50_64\": 2670, \"AGE_65_UP\": 1857, \"MED_AGE\": 30.700000, \"MED_AGE_M\": 30.200000, \"MED_AGE_F\": 31.300000, \"HOUSEHOLDS\": 9978, \"AVE_HH_SZ\": 2.430000, \"HSEHLD_1_M\": 1554, \"HSEHLD_1_F\": 1480, \"MARHH_CHD\": 2021, \"MARHH_NO_C\": 1985, \"MHH_CHILD\": 351, \"FHH_CHILD\": 951, \"FAMILIES\": 5899, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 10703, \"VACANT\": 725, \"OWNER_OCC\": 4498, \"RENTER_OCC\": 5480 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.238382297770954, 47.895615818562305 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Parkland\", \"CLASS\": \"CDP\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"53335\", \"CAPITAL\": \"N\", \"AREALAND\": 7.362000, \"AREAWATER\": 0.029000, \"POP_CL\": 6, \"POP2000\": 24053, \"WHITE\": 17778, \"BLACK\": 1940, \"AMERI_ES\": 251, \"ASIAN\": 1597, \"HAWN_PI\": 435, \"OTHER\": 496, \"MULT_RACE\": 1556, \"HISPANIC\": 1281, \"MALES\": 11665, \"FEMALES\": 12388, \"AGE_UNDER5\": 1601, \"AGE_5_17\": 4408, \"AGE_18_21\": 2755, \"AGE_22_29\": 2846, \"AGE_30_39\": 3495, \"AGE_40_49\": 3293, \"AGE_50_64\": 3233, \"AGE_65_UP\": 2422, \"MED_AGE\": 31.200000, \"MED_AGE_M\": 30.800000, \"MED_AGE_F\": 31.600000, \"HOUSEHOLDS\": 8869, \"AVE_HH_SZ\": 2.550000, \"HSEHLD_1_M\": 1098, \"HSEHLD_1_F\": 1231, \"MARHH_CHD\": 1768, \"MARHH_NO_C\": 2295, \"MHH_CHILD\": 282, \"FHH_CHILD\": 841, \"FAMILIES\": 5782, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 9340, \"VACANT\": 471, \"OWNER_OCC\": 5097, \"RENTER_OCC\": 3772 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.425202417596395, 47.142452818746122 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pasco\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"53545\", \"CAPITAL\": \"N\", \"AREALAND\": 28.082000, \"AREAWATER\": 2.139000, \"POP_CL\": 6, \"POP2000\": 32066, \"WHITE\": 16919, \"BLACK\": 1033, \"AMERI_ES\": 248, \"ASIAN\": 567, \"HAWN_PI\": 46, \"OTHER\": 12004, \"MULT_RACE\": 1249, \"HISPANIC\": 18041, \"MALES\": 16550, \"FEMALES\": 15516, \"AGE_UNDER5\": 3555, \"AGE_5_17\": 7838, \"AGE_18_21\": 2194, \"AGE_22_29\": 4230, \"AGE_30_39\": 4540, \"AGE_40_49\": 3698, \"AGE_50_64\": 3226, \"AGE_65_UP\": 2785, \"MED_AGE\": 26.600000, \"MED_AGE_M\": 25.800000, \"MED_AGE_F\": 27.400000, \"HOUSEHOLDS\": 9619, \"AVE_HH_SZ\": 3.300000, \"HSEHLD_1_M\": 921, \"HSEHLD_1_F\": 1009, \"MARHH_CHD\": 3074, \"MARHH_NO_C\": 2188, \"MHH_CHILD\": 351, \"FHH_CHILD\": 957, \"FAMILIES\": 7258, \"AVE_FAM_SZ\": 3.790000, \"HSE_UNITS\": 10341, \"VACANT\": 722, \"OWNER_OCC\": 5768, \"RENTER_OCC\": 3851 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -119.104988849597447, 46.238816115637185 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Picnic Point-North Lynnwood\", \"CLASS\": \"CDP\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"54215\", \"CAPITAL\": \"N\", \"AREALAND\": 7.369000, \"AREAWATER\": 0.067000, \"POP_CL\": 6, \"POP2000\": 22953, \"WHITE\": 18182, \"BLACK\": 504, \"AMERI_ES\": 201, \"ASIAN\": 2531, \"HAWN_PI\": 71, \"OTHER\": 463, \"MULT_RACE\": 1001, \"HISPANIC\": 1097, \"MALES\": 11453, \"FEMALES\": 11500, \"AGE_UNDER5\": 1688, \"AGE_5_17\": 4358, \"AGE_18_21\": 1333, \"AGE_22_29\": 3012, \"AGE_30_39\": 3815, \"AGE_40_49\": 3904, \"AGE_50_64\": 3382, \"AGE_65_UP\": 1461, \"MED_AGE\": 32.800000, \"MED_AGE_M\": 32.300000, \"MED_AGE_F\": 33.300000, \"HOUSEHOLDS\": 8698, \"AVE_HH_SZ\": 2.630000, \"HSEHLD_1_M\": 958, \"HSEHLD_1_F\": 927, \"MARHH_CHD\": 2334, \"MARHH_NO_C\": 2327, \"MHH_CHILD\": 214, \"FHH_CHILD\": 607, \"FAMILIES\": 5994, \"AVE_FAM_SZ\": 3.110000, \"HSE_UNITS\": 9160, \"VACANT\": 462, \"OWNER_OCC\": 5128, \"RENTER_OCC\": 3570 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.282238440130314, 47.861401502700744 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Port Angeles\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"55365\", \"CAPITAL\": \"N\", \"AREALAND\": 10.091000, \"AREAWATER\": 52.966000, \"POP_CL\": 6, \"POP2000\": 18397, \"WHITE\": 16806, \"BLACK\": 127, \"AMERI_ES\": 600, \"ASIAN\": 238, \"HAWN_PI\": 32, \"OTHER\": 70, \"MULT_RACE\": 524, \"HISPANIC\": 430, \"MALES\": 8821, \"FEMALES\": 9576, \"AGE_UNDER5\": 1105, \"AGE_5_17\": 3260, \"AGE_18_21\": 1028, \"AGE_22_29\": 1585, \"AGE_30_39\": 2264, \"AGE_40_49\": 2810, \"AGE_50_64\": 2963, \"AGE_65_UP\": 3382, \"MED_AGE\": 39.900000, \"MED_AGE_M\": 37.700000, \"MED_AGE_F\": 41.800000, \"HOUSEHOLDS\": 8053, \"AVE_HH_SZ\": 2.240000, \"HSEHLD_1_M\": 1034, \"HSEHLD_1_F\": 1701, \"MARHH_CHD\": 1361, \"MARHH_NO_C\": 2180, \"MHH_CHILD\": 212, \"FHH_CHILD\": 686, \"FAMILIES\": 4831, \"AVE_FAM_SZ\": 2.840000, \"HSE_UNITS\": 8682, \"VACANT\": 629, \"OWNER_OCC\": 4707, \"RENTER_OCC\": 3346 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -123.422177308078389, 48.114801858775706 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Prairie Ridge\", \"CLASS\": \"CDP\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"56170\", \"CAPITAL\": \"N\", \"AREALAND\": 4.260000, \"AREAWATER\": 0.015000, \"POP_CL\": 6, \"POP2000\": 11688, \"WHITE\": 10914, \"BLACK\": 63, \"AMERI_ES\": 137, \"ASIAN\": 106, \"HAWN_PI\": 44, \"OTHER\": 92, \"MULT_RACE\": 332, \"HISPANIC\": 393, \"MALES\": 5929, \"FEMALES\": 5759, \"AGE_UNDER5\": 938, \"AGE_5_17\": 2940, \"AGE_18_21\": 479, \"AGE_22_29\": 966, \"AGE_30_39\": 2475, \"AGE_40_49\": 1954, \"AGE_50_64\": 1258, \"AGE_65_UP\": 678, \"MED_AGE\": 32.400000, \"MED_AGE_M\": 32.600000, \"MED_AGE_F\": 32.200000, \"HOUSEHOLDS\": 3902, \"AVE_HH_SZ\": 3.000000, \"HSEHLD_1_M\": 312, \"HSEHLD_1_F\": 223, \"MARHH_CHD\": 1442, \"MARHH_NO_C\": 1070, \"MHH_CHILD\": 150, \"FHH_CHILD\": 254, \"FAMILIES\": 3109, \"AVE_FAM_SZ\": 3.290000, \"HSE_UNITS\": 4038, \"VACANT\": 136, \"OWNER_OCC\": 3450, \"RENTER_OCC\": 452 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.136902287232388, 47.146425686933767 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pullman\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"56625\", \"CAPITAL\": \"N\", \"AREALAND\": 9.003000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 24675, \"WHITE\": 20505, \"BLACK\": 591, \"AMERI_ES\": 165, \"ASIAN\": 2093, \"HAWN_PI\": 93, \"OTHER\": 390, \"MULT_RACE\": 838, \"HISPANIC\": 953, \"MALES\": 12617, \"FEMALES\": 12058, \"AGE_UNDER5\": 1046, \"AGE_5_17\": 2191, \"AGE_18_21\": 8160, \"AGE_22_29\": 6353, \"AGE_30_39\": 2355, \"AGE_40_49\": 1817, \"AGE_50_64\": 1649, \"AGE_65_UP\": 1104, \"MED_AGE\": 22.500000, \"MED_AGE_M\": 22.700000, \"MED_AGE_F\": 22.200000, \"HOUSEHOLDS\": 8828, \"AVE_HH_SZ\": 2.230000, \"HSEHLD_1_M\": 1365, \"HSEHLD_1_F\": 1377, \"MARHH_CHD\": 1332, \"MARHH_NO_C\": 1580, \"MHH_CHILD\": 78, \"FHH_CHILD\": 359, \"FAMILIES\": 3606, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 9398, \"VACANT\": 570, \"OWNER_OCC\": 2713, \"RENTER_OCC\": 6115 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.170107602710786, 46.732743044979635 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Puyallup\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"56695\", \"CAPITAL\": \"N\", \"AREALAND\": 12.140000, \"AREAWATER\": 0.078000, \"POP_CL\": 6, \"POP2000\": 33011, \"WHITE\": 29010, \"BLACK\": 496, \"AMERI_ES\": 334, \"ASIAN\": 1079, \"HAWN_PI\": 112, \"OTHER\": 640, \"MULT_RACE\": 1340, \"HISPANIC\": 1542, \"MALES\": 15950, \"FEMALES\": 17061, \"AGE_UNDER5\": 2292, \"AGE_5_17\": 6709, \"AGE_18_21\": 1964, \"AGE_22_29\": 3557, \"AGE_30_39\": 5199, \"AGE_40_49\": 5327, \"AGE_50_64\": 4374, \"AGE_65_UP\": 3589, \"MED_AGE\": 34.100000, \"MED_AGE_M\": 32.900000, \"MED_AGE_F\": 35.100000, \"HOUSEHOLDS\": 12870, \"AVE_HH_SZ\": 2.530000, \"HSEHLD_1_M\": 1504, \"HSEHLD_1_F\": 1956, \"MARHH_CHD\": 3195, \"MARHH_NO_C\": 3202, \"MHH_CHILD\": 389, \"FHH_CHILD\": 1050, \"FAMILIES\": 8520, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 13467, \"VACANT\": 597, \"OWNER_OCC\": 7064, \"RENTER_OCC\": 5806 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.280284082997923, 47.186034263011443 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Redmond\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"57535\", \"CAPITAL\": \"N\", \"AREALAND\": 15.886000, \"AREAWATER\": 0.672000, \"POP_CL\": 6, \"POP2000\": 45256, \"WHITE\": 35868, \"BLACK\": 687, \"AMERI_ES\": 203, \"ASIAN\": 5893, \"HAWN_PI\": 82, \"OTHER\": 1114, \"MULT_RACE\": 1409, \"HISPANIC\": 2538, \"MALES\": 22674, \"FEMALES\": 22582, \"AGE_UNDER5\": 2888, \"AGE_5_17\": 6820, \"AGE_18_21\": 1972, \"AGE_22_29\": 7105, \"AGE_30_39\": 8661, \"AGE_40_49\": 6960, \"AGE_50_64\": 6631, \"AGE_65_UP\": 4219, \"MED_AGE\": 34.000000, \"MED_AGE_M\": 32.500000, \"MED_AGE_F\": 36.000000, \"HOUSEHOLDS\": 19102, \"AVE_HH_SZ\": 2.330000, \"HSEHLD_1_M\": 2863, \"HSEHLD_1_F\": 2935, \"MARHH_CHD\": 4272, \"MARHH_NO_C\": 5064, \"MHH_CHILD\": 275, \"FHH_CHILD\": 889, \"FAMILIES\": 11347, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 20248, \"VACANT\": 1146, \"OWNER_OCC\": 10520, \"RENTER_OCC\": 8582 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.112383944524453, 47.670509933206333 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Renton\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"57745\", \"CAPITAL\": \"N\", \"AREALAND\": 17.026000, \"AREAWATER\": 0.276000, \"POP_CL\": 7, \"POP2000\": 50052, \"WHITE\": 34105, \"BLACK\": 4238, \"AMERI_ES\": 358, \"ASIAN\": 6692, \"HAWN_PI\": 250, \"OTHER\": 2122, \"MULT_RACE\": 2287, \"HISPANIC\": 3818, \"MALES\": 24886, \"FEMALES\": 25166, \"AGE_UNDER5\": 3521, \"AGE_5_17\": 7392, \"AGE_18_21\": 2560, \"AGE_22_29\": 7562, \"AGE_30_39\": 9455, \"AGE_40_49\": 7431, \"AGE_50_64\": 7008, \"AGE_65_UP\": 5123, \"MED_AGE\": 34.000000, \"MED_AGE_M\": 33.200000, \"MED_AGE_F\": 35.000000, \"HOUSEHOLDS\": 21708, \"AVE_HH_SZ\": 2.290000, \"HSEHLD_1_M\": 3591, \"HSEHLD_1_F\": 3780, \"MARHH_CHD\": 3790, \"MARHH_NO_C\": 5091, \"MHH_CHILD\": 515, \"FHH_CHILD\": 1508, \"FAMILIES\": 12234, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 22676, \"VACANT\": 968, \"OWNER_OCC\": 10848, \"RENTER_OCC\": 10860 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.18347170327641, 47.48774676161252 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Richland\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"58235\", \"CAPITAL\": \"N\", \"AREALAND\": 34.817000, \"AREAWATER\": 2.944000, \"POP_CL\": 6, \"POP2000\": 38708, \"WHITE\": 34662, \"BLACK\": 530, \"AMERI_ES\": 293, \"ASIAN\": 1571, \"HAWN_PI\": 41, \"OTHER\": 718, \"MULT_RACE\": 893, \"HISPANIC\": 1826, \"MALES\": 18960, \"FEMALES\": 19748, \"AGE_UNDER5\": 2540, \"AGE_5_17\": 7990, \"AGE_18_21\": 1726, \"AGE_22_29\": 3210, \"AGE_30_39\": 5315, \"AGE_40_49\": 6182, \"AGE_50_64\": 6786, \"AGE_65_UP\": 4959, \"MED_AGE\": 37.700000, \"MED_AGE_M\": 36.900000, \"MED_AGE_F\": 38.400000, \"HOUSEHOLDS\": 15549, \"AVE_HH_SZ\": 2.480000, \"HSEHLD_1_M\": 1922, \"HSEHLD_1_F\": 2308, \"MARHH_CHD\": 3896, \"MARHH_NO_C\": 4804, \"MHH_CHILD\": 368, \"FHH_CHILD\": 1035, \"FAMILIES\": 10687, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 16458, \"VACANT\": 909, \"OWNER_OCC\": 10315, \"RENTER_OCC\": 5234 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -119.277581508860038, 46.279990419358271 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Riverton-Boulevard Park\", \"CLASS\": \"CDP\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"58878\", \"CAPITAL\": \"N\", \"AREALAND\": 2.726000, \"AREAWATER\": 0.062000, \"POP_CL\": 6, \"POP2000\": 11188, \"WHITE\": 6842, \"BLACK\": 929, \"AMERI_ES\": 162, \"ASIAN\": 1342, \"HAWN_PI\": 192, \"OTHER\": 1077, \"MULT_RACE\": 644, \"HISPANIC\": 1755, \"MALES\": 5714, \"FEMALES\": 5474, \"AGE_UNDER5\": 830, \"AGE_5_17\": 1970, \"AGE_18_21\": 605, \"AGE_22_29\": 1521, \"AGE_30_39\": 1903, \"AGE_40_49\": 1618, \"AGE_50_64\": 1561, \"AGE_65_UP\": 1180, \"MED_AGE\": 33.300000, \"MED_AGE_M\": 33.200000, \"MED_AGE_F\": 33.400000, \"HOUSEHOLDS\": 4440, \"AVE_HH_SZ\": 2.510000, \"HSEHLD_1_M\": 763, \"HSEHLD_1_F\": 678, \"MARHH_CHD\": 817, \"MARHH_NO_C\": 931, \"MHH_CHILD\": 134, \"FHH_CHILD\": 361, \"FAMILIES\": 2580, \"AVE_FAM_SZ\": 3.210000, \"HSE_UNITS\": 4662, \"VACANT\": 222, \"OWNER_OCC\": 2277, \"RENTER_OCC\": 2163 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.299129101587596, 47.50874853106717 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Salmon Creek\", \"CLASS\": \"CDP\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"61000\", \"CAPITAL\": \"N\", \"AREALAND\": 6.271000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 16767, \"WHITE\": 15312, \"BLACK\": 211, \"AMERI_ES\": 90, \"ASIAN\": 417, \"HAWN_PI\": 23, \"OTHER\": 225, \"MULT_RACE\": 489, \"HISPANIC\": 806, \"MALES\": 8182, \"FEMALES\": 8585, \"AGE_UNDER5\": 1094, \"AGE_5_17\": 3610, \"AGE_18_21\": 816, \"AGE_22_29\": 1214, \"AGE_30_39\": 2497, \"AGE_40_49\": 3000, \"AGE_50_64\": 2960, \"AGE_65_UP\": 1576, \"MED_AGE\": 37.000000, \"MED_AGE_M\": 36.300000, \"MED_AGE_F\": 37.600000, \"HOUSEHOLDS\": 6439, \"AVE_HH_SZ\": 2.600000, \"HSEHLD_1_M\": 630, \"HSEHLD_1_F\": 807, \"MARHH_CHD\": 1775, \"MARHH_NO_C\": 1951, \"MHH_CHILD\": 167, \"FHH_CHILD\": 485, \"FAMILIES\": 4644, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 6756, \"VACANT\": 317, \"OWNER_OCC\": 4676, \"RENTER_OCC\": 1763 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.648587597587493, 45.706255872805478 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sammamish\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"61115\", \"CAPITAL\": \"N\", \"AREALAND\": 18.054000, \"AREAWATER\": 0.250000, \"POP_CL\": 6, \"POP2000\": 34104, \"WHITE\": 29950, \"BLACK\": 289, \"AMERI_ES\": 99, \"ASIAN\": 2690, \"HAWN_PI\": 30, \"OTHER\": 206, \"MULT_RACE\": 840, \"HISPANIC\": 853, \"MALES\": 17192, \"FEMALES\": 16912, \"AGE_UNDER5\": 2851, \"AGE_5_17\": 8535, \"AGE_18_21\": 1096, \"AGE_22_29\": 1878, \"AGE_30_39\": 6130, \"AGE_40_49\": 7364, \"AGE_50_64\": 4890, \"AGE_65_UP\": 1360, \"MED_AGE\": 35.300000, \"MED_AGE_M\": 35.000000, \"MED_AGE_F\": 35.600000, \"HOUSEHOLDS\": 11131, \"AVE_HH_SZ\": 3.060000, \"HSEHLD_1_M\": 557, \"HSEHLD_1_F\": 494, \"MARHH_CHD\": 5400, \"MARHH_NO_C\": 3449, \"MHH_CHILD\": 119, \"FHH_CHILD\": 414, \"FAMILIES\": 9655, \"AVE_FAM_SZ\": 3.290000, \"HSE_UNITS\": 11599, \"VACANT\": 468, \"OWNER_OCC\": 10029, \"RENTER_OCC\": 1102 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.0311658467093, 47.609902483773396 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"SeaTac\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"62288\", \"CAPITAL\": \"N\", \"AREALAND\": 9.964000, \"AREAWATER\": 0.168000, \"POP_CL\": 6, \"POP2000\": 25496, \"WHITE\": 16027, \"BLACK\": 2334, \"AMERI_ES\": 382, \"ASIAN\": 2822, \"HAWN_PI\": 677, \"OTHER\": 1634, \"MULT_RACE\": 1620, \"HISPANIC\": 3302, \"MALES\": 13394, \"FEMALES\": 12102, \"AGE_UNDER5\": 1831, \"AGE_5_17\": 4386, \"AGE_18_21\": 1410, \"AGE_22_29\": 3375, \"AGE_30_39\": 4460, \"AGE_40_49\": 4046, \"AGE_50_64\": 3514, \"AGE_65_UP\": 2474, \"MED_AGE\": 33.900000, \"MED_AGE_M\": 33.500000, \"MED_AGE_F\": 34.300000, \"HOUSEHOLDS\": 9708, \"AVE_HH_SZ\": 2.530000, \"HSEHLD_1_M\": 1664, \"HSEHLD_1_F\": 1264, \"MARHH_CHD\": 1925, \"MARHH_NO_C\": 2232, \"MHH_CHILD\": 301, \"FHH_CHILD\": 753, \"FAMILIES\": 5958, \"AVE_FAM_SZ\": 3.170000, \"HSE_UNITS\": 10176, \"VACANT\": 468, \"OWNER_OCC\": 5281, \"RENTER_OCC\": 4427 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.280998223378958, 47.442574234299329 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Seattle\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"63000\", \"CAPITAL\": \"N\", \"AREALAND\": 83.872000, \"AREAWATER\": 58.671000, \"POP_CL\": 9, \"POP2000\": 563374, \"WHITE\": 394889, \"BLACK\": 47541, \"AMERI_ES\": 5659, \"ASIAN\": 73910, \"HAWN_PI\": 2804, \"OTHER\": 13423, \"MULT_RACE\": 25148, \"HISPANIC\": 29719, \"MALES\": 280973, \"FEMALES\": 282401, \"AGE_UNDER5\": 26215, \"AGE_5_17\": 61612, \"AGE_18_21\": 35704, \"AGE_22_29\": 93039, \"AGE_30_39\": 109922, \"AGE_40_49\": 89573, \"AGE_50_64\": 79502, \"AGE_65_UP\": 67807, \"MED_AGE\": 35.400000, \"MED_AGE_M\": 34.700000, \"MED_AGE_F\": 36.300000, \"HOUSEHOLDS\": 258499, \"AVE_HH_SZ\": 2.080000, \"HSEHLD_1_M\": 49537, \"HSEHLD_1_F\": 56005, \"MARHH_CHD\": 32349, \"MARHH_NO_C\": 52299, \"MHH_CHILD\": 3012, \"FHH_CHILD\": 10949, \"FAMILIES\": 113400, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 270524, \"VACANT\": 12025, \"OWNER_OCC\": 125165, \"RENTER_OCC\": 133334 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.320794314918004, 47.627542273239442 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Seattle Hill-Silver Firs\", \"CLASS\": \"CDP\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"63052\", \"CAPITAL\": \"N\", \"AREALAND\": 13.953000, \"AREAWATER\": 0.027000, \"POP_CL\": 6, \"POP2000\": 35311, \"WHITE\": 30385, \"BLACK\": 408, \"AMERI_ES\": 221, \"ASIAN\": 2658, \"HAWN_PI\": 76, \"OTHER\": 450, \"MULT_RACE\": 1113, \"HISPANIC\": 1065, \"MALES\": 17650, \"FEMALES\": 17661, \"AGE_UNDER5\": 2864, \"AGE_5_17\": 8113, \"AGE_18_21\": 1341, \"AGE_22_29\": 2524, \"AGE_30_39\": 6981, \"AGE_40_49\": 6669, \"AGE_50_64\": 4667, \"AGE_65_UP\": 2152, \"MED_AGE\": 34.600000, \"MED_AGE_M\": 34.500000, \"MED_AGE_F\": 34.800000, \"HOUSEHOLDS\": 11633, \"AVE_HH_SZ\": 3.030000, \"HSEHLD_1_M\": 617, \"HSEHLD_1_F\": 683, \"MARHH_CHD\": 4886, \"MARHH_NO_C\": 3773, \"MHH_CHILD\": 208, \"FHH_CHILD\": 494, \"FAMILIES\": 9792, \"AVE_FAM_SZ\": 3.280000, \"HSE_UNITS\": 11893, \"VACANT\": 260, \"OWNER_OCC\": 10671, \"RENTER_OCC\": 962 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.16687322761274, 47.882132503091697 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Shoreline\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"63960\", \"CAPITAL\": \"N\", \"AREALAND\": 11.664000, \"AREAWATER\": 0.023000, \"POP_CL\": 7, \"POP2000\": 53025, \"WHITE\": 40824, \"BLACK\": 1467, \"AMERI_ES\": 485, \"ASIAN\": 7016, \"HAWN_PI\": 168, \"OTHER\": 799, \"MULT_RACE\": 2266, \"HISPANIC\": 2054, \"MALES\": 25580, \"FEMALES\": 27445, \"AGE_UNDER5\": 2769, \"AGE_5_17\": 9151, \"AGE_18_21\": 2372, \"AGE_22_29\": 4881, \"AGE_30_39\": 8040, \"AGE_40_49\": 9661, \"AGE_50_64\": 8437, \"AGE_65_UP\": 7714, \"MED_AGE\": 39.300000, \"MED_AGE_M\": 37.700000, \"MED_AGE_F\": 40.600000, \"HOUSEHOLDS\": 20716, \"AVE_HH_SZ\": 2.500000, \"HSEHLD_1_M\": 2183, \"HSEHLD_1_F\": 3276, \"MARHH_CHD\": 4813, \"MARHH_NO_C\": 5793, \"MHH_CHILD\": 386, \"FHH_CHILD\": 1142, \"FAMILIES\": 13485, \"AVE_FAM_SZ\": 3.030000, \"HSE_UNITS\": 21338, \"VACANT\": 622, \"OWNER_OCC\": 14097, \"RENTER_OCC\": 6619 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.327208977019865, 47.757713072510647 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Silverdale\", \"CLASS\": \"CDP\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"64365\", \"CAPITAL\": \"N\", \"AREALAND\": 6.943000, \"AREAWATER\": 0.942000, \"POP_CL\": 6, \"POP2000\": 15816, \"WHITE\": 12206, \"BLACK\": 550, \"AMERI_ES\": 132, \"ASIAN\": 1739, \"HAWN_PI\": 168, \"OTHER\": 229, \"MULT_RACE\": 792, \"HISPANIC\": 690, \"MALES\": 7782, \"FEMALES\": 8034, \"AGE_UNDER5\": 1092, \"AGE_5_17\": 3329, \"AGE_18_21\": 1057, \"AGE_22_29\": 2105, \"AGE_30_39\": 2415, \"AGE_40_49\": 2439, \"AGE_50_64\": 1950, \"AGE_65_UP\": 1429, \"MED_AGE\": 31.500000, \"MED_AGE_M\": 29.700000, \"MED_AGE_F\": 33.300000, \"HOUSEHOLDS\": 5867, \"AVE_HH_SZ\": 2.640000, \"HSEHLD_1_M\": 628, \"HSEHLD_1_F\": 703, \"MARHH_CHD\": 1756, \"MARHH_NO_C\": 1564, \"MHH_CHILD\": 135, \"FHH_CHILD\": 417, \"FAMILIES\": 4062, \"AVE_FAM_SZ\": 3.140000, \"HSE_UNITS\": 6246, \"VACANT\": 379, \"OWNER_OCC\": 3056, \"RENTER_OCC\": 2811 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.662678332997601, 47.660770156084098 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"South Hill\", \"CLASS\": \"CDP\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"65922\", \"CAPITAL\": \"N\", \"AREALAND\": 18.005000, \"AREAWATER\": 0.066000, \"POP_CL\": 6, \"POP2000\": 31623, \"WHITE\": 27641, \"BLACK\": 766, \"AMERI_ES\": 297, \"ASIAN\": 1061, \"HAWN_PI\": 155, \"OTHER\": 458, \"MULT_RACE\": 1245, \"HISPANIC\": 1307, \"MALES\": 15607, \"FEMALES\": 16016, \"AGE_UNDER5\": 2432, \"AGE_5_17\": 7463, \"AGE_18_21\": 1463, \"AGE_22_29\": 2921, \"AGE_30_39\": 5825, \"AGE_40_49\": 5240, \"AGE_50_64\": 4085, \"AGE_65_UP\": 2194, \"MED_AGE\": 32.900000, \"MED_AGE_M\": 32.300000, \"MED_AGE_F\": 33.300000, \"HOUSEHOLDS\": 10929, \"AVE_HH_SZ\": 2.890000, \"HSEHLD_1_M\": 748, \"HSEHLD_1_F\": 903, \"MARHH_CHD\": 3901, \"MARHH_NO_C\": 3235, \"MHH_CHILD\": 329, \"FHH_CHILD\": 767, \"FAMILIES\": 8722, \"AVE_FAM_SZ\": 3.200000, \"HSE_UNITS\": 11398, \"VACANT\": 469, \"OWNER_OCC\": 8633, \"RENTER_OCC\": 2296 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.278606878394768, 47.122242570878463 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Spanaway\", \"CLASS\": \"CDP\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"66255\", \"CAPITAL\": \"N\", \"AREALAND\": 8.329000, \"AREAWATER\": 0.375000, \"POP_CL\": 6, \"POP2000\": 21588, \"WHITE\": 15355, \"BLACK\": 1966, \"AMERI_ES\": 347, \"ASIAN\": 1368, \"HAWN_PI\": 458, \"OTHER\": 465, \"MULT_RACE\": 1629, \"HISPANIC\": 1185, \"MALES\": 10754, \"FEMALES\": 10834, \"AGE_UNDER5\": 1588, \"AGE_5_17\": 4889, \"AGE_18_21\": 1103, \"AGE_22_29\": 2191, \"AGE_30_39\": 3708, \"AGE_40_49\": 3430, \"AGE_50_64\": 3094, \"AGE_65_UP\": 1585, \"MED_AGE\": 32.900000, \"MED_AGE_M\": 32.300000, \"MED_AGE_F\": 33.500000, \"HOUSEHOLDS\": 7659, \"AVE_HH_SZ\": 2.820000, \"HSEHLD_1_M\": 723, \"HSEHLD_1_F\": 670, \"MARHH_CHD\": 2125, \"MARHH_NO_C\": 2245, \"MHH_CHILD\": 274, \"FHH_CHILD\": 695, \"FAMILIES\": 5823, \"AVE_FAM_SZ\": 3.170000, \"HSE_UNITS\": 7963, \"VACANT\": 304, \"OWNER_OCC\": 5473, \"RENTER_OCC\": 2186 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.411556706245236, 47.09911157782237 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Spokane\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"67000\", \"CAPITAL\": \"N\", \"AREALAND\": 57.758000, \"AREAWATER\": 0.764000, \"POP_CL\": 8, \"POP2000\": 195629, \"WHITE\": 175018, \"BLACK\": 4052, \"AMERI_ES\": 3444, \"ASIAN\": 4399, \"HAWN_PI\": 372, \"OTHER\": 1727, \"MULT_RACE\": 6617, \"HISPANIC\": 5857, \"MALES\": 94267, \"FEMALES\": 101362, \"AGE_UNDER5\": 13676, \"AGE_5_17\": 34848, \"AGE_18_21\": 12686, \"AGE_22_29\": 23674, \"AGE_30_39\": 28441, \"AGE_40_49\": 28885, \"AGE_50_64\": 26118, \"AGE_65_UP\": 27301, \"MED_AGE\": 34.700000, \"MED_AGE_M\": 32.900000, \"MED_AGE_F\": 36.300000, \"HOUSEHOLDS\": 81512, \"AVE_HH_SZ\": 2.320000, \"HSEHLD_1_M\": 11834, \"HSEHLD_1_F\": 15801, \"MARHH_CHD\": 14987, \"MARHH_NO_C\": 18717, \"MHH_CHILD\": 2144, \"FHH_CHILD\": 6806, \"FAMILIES\": 47256, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 87941, \"VACANT\": 6429, \"OWNER_OCC\": 47915, \"RENTER_OCC\": 33597 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -117.408336750616314, 47.673486876176177 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sunnyside\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"68750\", \"CAPITAL\": \"N\", \"AREALAND\": 5.941000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 13905, \"WHITE\": 5925, \"BLACK\": 55, \"AMERI_ES\": 87, \"ASIAN\": 96, \"HAWN_PI\": 12, \"OTHER\": 7311, \"MULT_RACE\": 419, \"HISPANIC\": 10158, \"MALES\": 6916, \"FEMALES\": 6989, \"AGE_UNDER5\": 1707, \"AGE_5_17\": 3595, \"AGE_18_21\": 890, \"AGE_22_29\": 1899, \"AGE_30_39\": 1799, \"AGE_40_49\": 1370, \"AGE_50_64\": 1312, \"AGE_65_UP\": 1333, \"MED_AGE\": 25.100000, \"MED_AGE_M\": 24.200000, \"MED_AGE_F\": 26.200000, \"HOUSEHOLDS\": 3827, \"AVE_HH_SZ\": 3.580000, \"HSEHLD_1_M\": 234, \"HSEHLD_1_F\": 477, \"MARHH_CHD\": 1293, \"MARHH_NO_C\": 814, \"MHH_CHILD\": 161, \"FHH_CHILD\": 469, \"FAMILIES\": 3000, \"AVE_FAM_SZ\": 4.020000, \"HSE_UNITS\": 4070, \"VACANT\": 243, \"OWNER_OCC\": 2208, \"RENTER_OCC\": 1619 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -120.007216659593709, 46.321253960926107 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Tacoma\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"70000\", \"CAPITAL\": \"N\", \"AREALAND\": 50.080000, \"AREAWATER\": 12.531000, \"POP_CL\": 8, \"POP2000\": 193556, \"WHITE\": 133704, \"BLACK\": 21757, \"AMERI_ES\": 3794, \"ASIAN\": 14656, \"HAWN_PI\": 1798, \"OTHER\": 5695, \"MULT_RACE\": 12152, \"HISPANIC\": 13262, \"MALES\": 94419, \"FEMALES\": 99137, \"AGE_UNDER5\": 13593, \"AGE_5_17\": 36297, \"AGE_18_21\": 11907, \"AGE_22_29\": 22888, \"AGE_30_39\": 31178, \"AGE_40_49\": 28863, \"AGE_50_64\": 25836, \"AGE_65_UP\": 22994, \"MED_AGE\": 33.900000, \"MED_AGE_M\": 32.700000, \"MED_AGE_F\": 35.200000, \"HOUSEHOLDS\": 76152, \"AVE_HH_SZ\": 2.450000, \"HSEHLD_1_M\": 10944, \"HSEHLD_1_F\": 13204, \"MARHH_CHD\": 14505, \"MARHH_NO_C\": 17194, \"MHH_CHILD\": 2123, \"FHH_CHILD\": 6890, \"FAMILIES\": 45924, \"AVE_FAM_SZ\": 3.100000, \"HSE_UNITS\": 81102, \"VACANT\": 4950, \"OWNER_OCC\": 41676, \"RENTER_OCC\": 34476 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.446693733460606, 47.242614787947623 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Tukwila\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"72625\", \"CAPITAL\": \"N\", \"AREALAND\": 8.916000, \"AREAWATER\": 0.153000, \"POP_CL\": 6, \"POP2000\": 17181, \"WHITE\": 10074, \"BLACK\": 2198, \"AMERI_ES\": 223, \"ASIAN\": 1870, \"HAWN_PI\": 312, \"OTHER\": 1385, \"MULT_RACE\": 1119, \"HISPANIC\": 2329, \"MALES\": 8971, \"FEMALES\": 8210, \"AGE_UNDER5\": 1233, \"AGE_5_17\": 2891, \"AGE_18_21\": 904, \"AGE_22_29\": 2450, \"AGE_30_39\": 3289, \"AGE_40_49\": 2749, \"AGE_50_64\": 2320, \"AGE_65_UP\": 1345, \"MED_AGE\": 33.400000, \"MED_AGE_M\": 33.000000, \"MED_AGE_F\": 34.000000, \"HOUSEHOLDS\": 7186, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 1371, \"HSEHLD_1_F\": 1097, \"MARHH_CHD\": 1240, \"MARHH_NO_C\": 1376, \"MHH_CHILD\": 212, \"FHH_CHILD\": 574, \"FAMILIES\": 3952, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 7725, \"VACANT\": 539, \"OWNER_OCC\": 3045, \"RENTER_OCC\": 4141 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.263408860104136, 47.479403677751755 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Tumwater\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"72905\", \"CAPITAL\": \"N\", \"AREALAND\": 9.951000, \"AREAWATER\": 0.131000, \"POP_CL\": 6, \"POP2000\": 12698, \"WHITE\": 11226, \"BLACK\": 176, \"AMERI_ES\": 157, \"ASIAN\": 495, \"HAWN_PI\": 46, \"OTHER\": 191, \"MULT_RACE\": 407, \"HISPANIC\": 518, \"MALES\": 6007, \"FEMALES\": 6691, \"AGE_UNDER5\": 760, \"AGE_5_17\": 2183, \"AGE_18_21\": 768, \"AGE_22_29\": 1550, \"AGE_30_39\": 1830, \"AGE_40_49\": 1981, \"AGE_50_64\": 1906, \"AGE_65_UP\": 1720, \"MED_AGE\": 36.200000, \"MED_AGE_M\": 33.900000, \"MED_AGE_F\": 38.100000, \"HOUSEHOLDS\": 5659, \"AVE_HH_SZ\": 2.200000, \"HSEHLD_1_M\": 748, \"HSEHLD_1_F\": 1161, \"MARHH_CHD\": 965, \"MARHH_NO_C\": 1384, \"MHH_CHILD\": 137, \"FHH_CHILD\": 501, \"FAMILIES\": 3254, \"AVE_FAM_SZ\": 2.820000, \"HSE_UNITS\": 5953, \"VACANT\": 294, \"OWNER_OCC\": 2729, \"RENTER_OCC\": 2930 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.896360414554337, 47.009245539814273 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Union Hill-Novelty Hill\", \"CLASS\": \"CDP\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"73307\", \"CAPITAL\": \"N\", \"AREALAND\": 24.336000, \"AREAWATER\": 0.055000, \"POP_CL\": 6, \"POP2000\": 11265, \"WHITE\": 10225, \"BLACK\": 88, \"AMERI_ES\": 44, \"ASIAN\": 479, \"HAWN_PI\": 7, \"OTHER\": 146, \"MULT_RACE\": 276, \"HISPANIC\": 389, \"MALES\": 5815, \"FEMALES\": 5450, \"AGE_UNDER5\": 823, \"AGE_5_17\": 2932, \"AGE_18_21\": 414, \"AGE_22_29\": 462, \"AGE_30_39\": 1823, \"AGE_40_49\": 2617, \"AGE_50_64\": 1711, \"AGE_65_UP\": 483, \"MED_AGE\": 36.500000, \"MED_AGE_M\": 35.900000, \"MED_AGE_F\": 37.000000, \"HOUSEHOLDS\": 3584, \"AVE_HH_SZ\": 3.140000, \"HSEHLD_1_M\": 188, \"HSEHLD_1_F\": 136, \"MARHH_CHD\": 1746, \"MARHH_NO_C\": 1074, \"MHH_CHILD\": 56, \"FHH_CHILD\": 112, \"FAMILIES\": 3103, \"AVE_FAM_SZ\": 3.370000, \"HSE_UNITS\": 3677, \"VACANT\": 93, \"OWNER_OCC\": 3358, \"RENTER_OCC\": 226 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.038002668135178, 47.67973822238514 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"University Place\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"73465\", \"CAPITAL\": \"N\", \"AREALAND\": 8.387000, \"AREAWATER\": 0.074000, \"POP_CL\": 6, \"POP2000\": 29933, \"WHITE\": 22711, \"BLACK\": 2617, \"AMERI_ES\": 217, \"ASIAN\": 2236, \"HAWN_PI\": 167, \"OTHER\": 403, \"MULT_RACE\": 1582, \"HISPANIC\": 1150, \"MALES\": 14264, \"FEMALES\": 15669, \"AGE_UNDER5\": 1899, \"AGE_5_17\": 5877, \"AGE_18_21\": 1618, \"AGE_22_29\": 3058, \"AGE_30_39\": 4104, \"AGE_40_49\": 5038, \"AGE_50_64\": 4974, \"AGE_65_UP\": 3365, \"MED_AGE\": 36.500000, \"MED_AGE_M\": 35.100000, \"MED_AGE_F\": 37.600000, \"HOUSEHOLDS\": 12149, \"AVE_HH_SZ\": 2.450000, \"HSEHLD_1_M\": 1334, \"HSEHLD_1_F\": 1841, \"MARHH_CHD\": 2846, \"MARHH_NO_C\": 3421, \"MHH_CHILD\": 238, \"FHH_CHILD\": 1127, \"FAMILIES\": 8210, \"AVE_FAM_SZ\": 2.970000, \"HSE_UNITS\": 12684, \"VACANT\": 535, \"OWNER_OCC\": 7024, \"RENTER_OCC\": 5125 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.528555552829232, 47.220828949636008 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Vancouver\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"74060\", \"CAPITAL\": \"N\", \"AREALAND\": 42.793000, \"AREAWATER\": 3.341000, \"POP_CL\": 8, \"POP2000\": 143560, \"WHITE\": 121752, \"BLACK\": 3593, \"AMERI_ES\": 1399, \"ASIAN\": 6470, \"HAWN_PI\": 779, \"OTHER\": 4112, \"MULT_RACE\": 5455, \"HISPANIC\": 9035, \"MALES\": 70644, \"FEMALES\": 72916, \"AGE_UNDER5\": 11497, \"AGE_5_17\": 26851, \"AGE_18_21\": 7735, \"AGE_22_29\": 18192, \"AGE_30_39\": 23138, \"AGE_40_49\": 21200, \"AGE_50_64\": 19530, \"AGE_65_UP\": 15417, \"MED_AGE\": 33.100000, \"MED_AGE_M\": 32.200000, \"MED_AGE_F\": 34.100000, \"HOUSEHOLDS\": 56628, \"AVE_HH_SZ\": 2.500000, \"HSEHLD_1_M\": 7056, \"HSEHLD_1_F\": 8550, \"MARHH_CHD\": 12632, \"MARHH_NO_C\": 14176, \"MHH_CHILD\": 1581, \"FHH_CHILD\": 4690, \"FAMILIES\": 36308, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 60039, \"VACANT\": 3411, \"OWNER_OCC\": 29945, \"RENTER_OCC\": 26683 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.590596565178529, 45.635030040237687 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Vashon\", \"CLASS\": \"CDP\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"74305\", \"CAPITAL\": \"N\", \"AREALAND\": 36.965000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10123, \"WHITE\": 9476, \"BLACK\": 46, \"AMERI_ES\": 71, \"ASIAN\": 158, \"HAWN_PI\": 6, \"OTHER\": 88, \"MULT_RACE\": 278, \"HISPANIC\": 259, \"MALES\": 4918, \"FEMALES\": 5205, \"AGE_UNDER5\": 484, \"AGE_5_17\": 1862, \"AGE_18_21\": 300, \"AGE_22_29\": 440, \"AGE_30_39\": 1264, \"AGE_40_49\": 2234, \"AGE_50_64\": 2212, \"AGE_65_UP\": 1327, \"MED_AGE\": 43.600000, \"MED_AGE_M\": 43.300000, \"MED_AGE_F\": 43.900000, \"HOUSEHOLDS\": 4193, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 408, \"HSEHLD_1_F\": 591, \"MARHH_CHD\": 965, \"MARHH_NO_C\": 1391, \"MHH_CHILD\": 106, \"FHH_CHILD\": 226, \"FAMILIES\": 2839, \"AVE_FAM_SZ\": 2.860000, \"HSE_UNITS\": 4867, \"VACANT\": 674, \"OWNER_OCC\": 3343, \"RENTER_OCC\": 850 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.455378322149087, 47.41744869184302 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Walla Walla\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"75775\", \"CAPITAL\": \"N\", \"AREALAND\": 10.815000, \"AREAWATER\": 0.019000, \"POP_CL\": 6, \"POP2000\": 29686, \"WHITE\": 24875, \"BLACK\": 765, \"AMERI_ES\": 313, \"ASIAN\": 368, \"HAWN_PI\": 68, \"OTHER\": 2451, \"MULT_RACE\": 846, \"HISPANIC\": 5170, \"MALES\": 15439, \"FEMALES\": 14247, \"AGE_UNDER5\": 1787, \"AGE_5_17\": 4995, \"AGE_18_21\": 3024, \"AGE_22_29\": 3468, \"AGE_30_39\": 4098, \"AGE_40_49\": 4033, \"AGE_50_64\": 3812, \"AGE_65_UP\": 4469, \"MED_AGE\": 33.800000, \"MED_AGE_M\": 31.700000, \"MED_AGE_F\": 36.600000, \"HOUSEHOLDS\": 10596, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 1272, \"HSEHLD_1_F\": 2111, \"MARHH_CHD\": 2167, \"MARHH_NO_C\": 2752, \"MHH_CHILD\": 273, \"FHH_CHILD\": 799, \"FAMILIES\": 6523, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 11400, \"VACANT\": 804, \"OWNER_OCC\": 6258, \"RENTER_OCC\": 4338 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -118.327569810749949, 46.065312471425344 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wenatchee\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"77105\", \"CAPITAL\": \"N\", \"AREALAND\": 6.879000, \"AREAWATER\": 0.450000, \"POP_CL\": 6, \"POP2000\": 27856, \"WHITE\": 22543, \"BLACK\": 109, \"AMERI_ES\": 315, \"ASIAN\": 264, \"HAWN_PI\": 36, \"OTHER\": 3897, \"MULT_RACE\": 692, \"HISPANIC\": 5996, \"MALES\": 13615, \"FEMALES\": 14241, \"AGE_UNDER5\": 2240, \"AGE_5_17\": 5394, \"AGE_18_21\": 1688, \"AGE_22_29\": 3015, \"AGE_30_39\": 3956, \"AGE_40_49\": 3927, \"AGE_50_64\": 3468, \"AGE_65_UP\": 4168, \"MED_AGE\": 34.000000, \"MED_AGE_M\": 32.400000, \"MED_AGE_F\": 35.800000, \"HOUSEHOLDS\": 10741, \"AVE_HH_SZ\": 2.530000, \"HSEHLD_1_M\": 1260, \"HSEHLD_1_F\": 1969, \"MARHH_CHD\": 2574, \"MARHH_NO_C\": 2736, \"MHH_CHILD\": 298, \"FHH_CHILD\": 718, \"FAMILIES\": 6881, \"AVE_FAM_SZ\": 3.170000, \"HSE_UNITS\": 11486, \"VACANT\": 745, \"OWNER_OCC\": 6197, \"RENTER_OCC\": 4544 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -120.319356091831409, 47.423843066040753 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"West Lake Stevens\", \"CLASS\": \"CDP\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"77542\", \"CAPITAL\": \"N\", \"AREALAND\": 9.682000, \"AREAWATER\": 1.587000, \"POP_CL\": 6, \"POP2000\": 18071, \"WHITE\": 16447, \"BLACK\": 187, \"AMERI_ES\": 152, \"ASIAN\": 354, \"HAWN_PI\": 30, \"OTHER\": 314, \"MULT_RACE\": 587, \"HISPANIC\": 794, \"MALES\": 9016, \"FEMALES\": 9055, \"AGE_UNDER5\": 1638, \"AGE_5_17\": 4196, \"AGE_18_21\": 731, \"AGE_22_29\": 1926, \"AGE_30_39\": 3745, \"AGE_40_49\": 2737, \"AGE_50_64\": 1958, \"AGE_65_UP\": 1140, \"MED_AGE\": 31.400000, \"MED_AGE_M\": 31.200000, \"MED_AGE_F\": 31.600000, \"HOUSEHOLDS\": 6255, \"AVE_HH_SZ\": 2.890000, \"HSEHLD_1_M\": 509, \"HSEHLD_1_F\": 518, \"MARHH_CHD\": 2226, \"MARHH_NO_C\": 1600, \"MHH_CHILD\": 217, \"FHH_CHILD\": 496, \"FAMILIES\": 4829, \"AVE_FAM_SZ\": 3.230000, \"HSE_UNITS\": 6504, \"VACANT\": 249, \"OWNER_OCC\": 4899, \"RENTER_OCC\": 1356 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.090251767108455, 47.997015374719084 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"West Valley\", \"CLASS\": \"CDP\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"77885\", \"CAPITAL\": \"N\", \"AREALAND\": 7.204000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10433, \"WHITE\": 9348, \"BLACK\": 86, \"AMERI_ES\": 94, \"ASIAN\": 213, \"HAWN_PI\": 14, \"OTHER\": 405, \"MULT_RACE\": 273, \"HISPANIC\": 910, \"MALES\": 5045, \"FEMALES\": 5388, \"AGE_UNDER5\": 755, \"AGE_5_17\": 2291, \"AGE_18_21\": 434, \"AGE_22_29\": 867, \"AGE_30_39\": 1526, \"AGE_40_49\": 1599, \"AGE_50_64\": 1847, \"AGE_65_UP\": 1114, \"MED_AGE\": 36.200000, \"MED_AGE_M\": 35.400000, \"MED_AGE_F\": 36.900000, \"HOUSEHOLDS\": 3862, \"AVE_HH_SZ\": 2.700000, \"HSEHLD_1_M\": 241, \"HSEHLD_1_F\": 417, \"MARHH_CHD\": 1163, \"MARHH_NO_C\": 1340, \"MHH_CHILD\": 85, \"FHH_CHILD\": 294, \"FAMILIES\": 3019, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 3964, \"VACANT\": 102, \"OWNER_OCC\": 2996, \"RENTER_OCC\": 866 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -120.596684549492693, 46.59931665593485 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"White Center\", \"CLASS\": \"CDP\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"78225\", \"CAPITAL\": \"N\", \"AREALAND\": 3.386000, \"AREAWATER\": 0.014000, \"POP_CL\": 6, \"POP2000\": 20975, \"WHITE\": 11527, \"BLACK\": 1344, \"AMERI_ES\": 422, \"ASIAN\": 4424, \"HAWN_PI\": 545, \"OTHER\": 1445, \"MULT_RACE\": 1268, \"HISPANIC\": 2513, \"MALES\": 10543, \"FEMALES\": 10432, \"AGE_UNDER5\": 1607, \"AGE_5_17\": 4086, \"AGE_18_21\": 1213, \"AGE_22_29\": 2428, \"AGE_30_39\": 3358, \"AGE_40_49\": 3362, \"AGE_50_64\": 3037, \"AGE_65_UP\": 1884, \"MED_AGE\": 33.400000, \"MED_AGE_M\": 32.700000, \"MED_AGE_F\": 34.300000, \"HOUSEHOLDS\": 7542, \"AVE_HH_SZ\": 2.780000, \"HSEHLD_1_M\": 909, \"HSEHLD_1_F\": 858, \"MARHH_CHD\": 1690, \"MARHH_NO_C\": 1727, \"MHH_CHILD\": 234, \"FHH_CHILD\": 762, \"FAMILIES\": 5146, \"AVE_FAM_SZ\": 3.290000, \"HSE_UNITS\": 7775, \"VACANT\": 233, \"OWNER_OCC\": 4218, \"RENTER_OCC\": 3324 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -122.33503726366574, 47.508564281829003 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Yakima\", \"CLASS\": \"city\", \"ST\": \"WA\", \"STFIPS\": \"53\", \"PLACEFIP\": \"80010\", \"CAPITAL\": \"N\", \"AREALAND\": 20.125000, \"AREAWATER\": 0.479000, \"POP_CL\": 7, \"POP2000\": 71845, \"WHITE\": 49409, \"BLACK\": 1433, \"AMERI_ES\": 1435, \"ASIAN\": 860, \"HAWN_PI\": 102, \"OTHER\": 15787, \"MULT_RACE\": 2819, \"HISPANIC\": 24213, \"MALES\": 35125, \"FEMALES\": 36720, \"AGE_UNDER5\": 6392, \"AGE_5_17\": 14749, \"AGE_18_21\": 4496, \"AGE_22_29\": 8741, \"AGE_30_39\": 9720, \"AGE_40_49\": 8850, \"AGE_50_64\": 8821, \"AGE_65_UP\": 10076, \"MED_AGE\": 31.400000, \"MED_AGE_M\": 30.100000, \"MED_AGE_F\": 33.200000, \"HOUSEHOLDS\": 26498, \"AVE_HH_SZ\": 2.630000, \"HSEHLD_1_M\": 3120, \"HSEHLD_1_F\": 4909, \"MARHH_CHD\": 5605, \"MARHH_NO_C\": 6112, \"MHH_CHILD\": 836, \"FHH_CHILD\": 2670, \"FAMILIES\": 16836, \"AVE_FAM_SZ\": 3.290000, \"HSE_UNITS\": 28643, \"VACANT\": 2145, \"OWNER_OCC\": 14108, \"RENTER_OCC\": 12390 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -120.523500041895829, 46.597296126091045 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Allouez\", \"CLASS\": \"village\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"01150\", \"CAPITAL\": \"N\", \"AREALAND\": 4.625000, \"AREAWATER\": 0.529000, \"POP_CL\": 6, \"POP2000\": 15443, \"WHITE\": 14218, \"BLACK\": 717, \"AMERI_ES\": 178, \"ASIAN\": 130, \"HAWN_PI\": 1, \"OTHER\": 95, \"MULT_RACE\": 104, \"HISPANIC\": 199, \"MALES\": 8276, \"FEMALES\": 7167, \"AGE_UNDER5\": 808, \"AGE_5_17\": 2612, \"AGE_18_21\": 821, \"AGE_22_29\": 1633, \"AGE_30_39\": 2475, \"AGE_40_49\": 2389, \"AGE_50_64\": 2437, \"AGE_65_UP\": 2268, \"MED_AGE\": 37.600000, \"MED_AGE_M\": 34.300000, \"MED_AGE_F\": 41.500000, \"HOUSEHOLDS\": 5397, \"AVE_HH_SZ\": 2.450000, \"HSEHLD_1_M\": 423, \"HSEHLD_1_F\": 890, \"MARHH_CHD\": 1426, \"MARHH_NO_C\": 1891, \"MHH_CHILD\": 67, \"FHH_CHILD\": 242, \"FAMILIES\": 3817, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 5512, \"VACANT\": 115, \"OWNER_OCC\": 4586, \"RENTER_OCC\": 811 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.024870000299771, 44.473691998742673 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Appleton\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"02375\", \"CAPITAL\": \"N\", \"AREALAND\": 20.885000, \"AREAWATER\": 0.474000, \"POP_CL\": 7, \"POP2000\": 70087, \"WHITE\": 64116, \"BLACK\": 695, \"AMERI_ES\": 401, \"ASIAN\": 3231, \"HAWN_PI\": 21, \"OTHER\": 733, \"MULT_RACE\": 890, \"HISPANIC\": 1775, \"MALES\": 34448, \"FEMALES\": 35639, \"AGE_UNDER5\": 4834, \"AGE_5_17\": 14377, \"AGE_18_21\": 4126, \"AGE_22_29\": 7584, \"AGE_30_39\": 11403, \"AGE_40_49\": 11065, \"AGE_50_64\": 8774, \"AGE_65_UP\": 7924, \"MED_AGE\": 33.800000, \"MED_AGE_M\": 32.600000, \"MED_AGE_F\": 35.000000, \"HOUSEHOLDS\": 26864, \"AVE_HH_SZ\": 2.520000, \"HSEHLD_1_M\": 3066, \"HSEHLD_1_F\": 4360, \"MARHH_CHD\": 7314, \"MARHH_NO_C\": 7162, \"MHH_CHILD\": 516, \"FHH_CHILD\": 1564, \"FAMILIES\": 17665, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 27736, \"VACANT\": 872, \"OWNER_OCC\": 18455, \"RENTER_OCC\": 8409 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.401655000106615, 44.265535999218002 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Ashwaubenon\", \"CLASS\": \"village\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"03425\", \"CAPITAL\": \"N\", \"AREALAND\": 12.370000, \"AREAWATER\": 0.372000, \"POP_CL\": 6, \"POP2000\": 17634, \"WHITE\": 16764, \"BLACK\": 114, \"AMERI_ES\": 221, \"ASIAN\": 320, \"HAWN_PI\": 4, \"OTHER\": 82, \"MULT_RACE\": 129, \"HISPANIC\": 202, \"MALES\": 8553, \"FEMALES\": 9081, \"AGE_UNDER5\": 1013, \"AGE_5_17\": 3446, \"AGE_18_21\": 887, \"AGE_22_29\": 1922, \"AGE_30_39\": 2727, \"AGE_40_49\": 2883, \"AGE_50_64\": 2803, \"AGE_65_UP\": 1953, \"MED_AGE\": 36.300000, \"MED_AGE_M\": 35.000000, \"MED_AGE_F\": 37.100000, \"HOUSEHOLDS\": 7137, \"AVE_HH_SZ\": 2.410000, \"HSEHLD_1_M\": 894, \"HSEHLD_1_F\": 1128, \"MARHH_CHD\": 1817, \"MARHH_NO_C\": 2030, \"MHH_CHILD\": 133, \"FHH_CHILD\": 439, \"FAMILIES\": 4670, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 7260, \"VACANT\": 123, \"OWNER_OCC\": 4347, \"RENTER_OCC\": 2790 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.083284000262125, 44.487157998827115 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Baraboo\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"04625\", \"CAPITAL\": \"N\", \"AREALAND\": 5.276000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10711, \"WHITE\": 10402, \"BLACK\": 55, \"AMERI_ES\": 83, \"ASIAN\": 56, \"HAWN_PI\": 0, \"OTHER\": 44, \"MULT_RACE\": 71, \"HISPANIC\": 168, \"MALES\": 5160, \"FEMALES\": 5551, \"AGE_UNDER5\": 722, \"AGE_5_17\": 1944, \"AGE_18_21\": 557, \"AGE_22_29\": 1187, \"AGE_30_39\": 1650, \"AGE_40_49\": 1511, \"AGE_50_64\": 1455, \"AGE_65_UP\": 1685, \"MED_AGE\": 35.800000, \"MED_AGE_M\": 33.800000, \"MED_AGE_F\": 37.800000, \"HOUSEHOLDS\": 4467, \"AVE_HH_SZ\": 2.330000, \"HSEHLD_1_M\": 561, \"HSEHLD_1_F\": 872, \"MARHH_CHD\": 951, \"MARHH_NO_C\": 1145, \"MHH_CHILD\": 100, \"FHH_CHILD\": 333, \"FAMILIES\": 2735, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 4718, \"VACANT\": 251, \"OWNER_OCC\": 2846, \"RENTER_OCC\": 1621 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.741572999992769, 43.471360999899396 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Beaver Dam\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"05900\", \"CAPITAL\": \"N\", \"AREALAND\": 5.222000, \"AREAWATER\": 1.338000, \"POP_CL\": 6, \"POP2000\": 15169, \"WHITE\": 14555, \"BLACK\": 66, \"AMERI_ES\": 48, \"ASIAN\": 92, \"HAWN_PI\": 7, \"OTHER\": 244, \"MULT_RACE\": 157, \"HISPANIC\": 640, \"MALES\": 7318, \"FEMALES\": 7851, \"AGE_UNDER5\": 1017, \"AGE_5_17\": 2770, \"AGE_18_21\": 702, \"AGE_22_29\": 1537, \"AGE_30_39\": 2255, \"AGE_40_49\": 2257, \"AGE_50_64\": 2130, \"AGE_65_UP\": 2501, \"MED_AGE\": 37.300000, \"MED_AGE_M\": 35.300000, \"MED_AGE_F\": 38.900000, \"HOUSEHOLDS\": 6349, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 782, \"HSEHLD_1_F\": 1204, \"MARHH_CHD\": 1408, \"MARHH_NO_C\": 1705, \"MHH_CHILD\": 135, \"FHH_CHILD\": 446, \"FAMILIES\": 4003, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 6685, \"VACANT\": 336, \"OWNER_OCC\": 3885, \"RENTER_OCC\": 2464 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.836066000008145, 43.459966999579613 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bellevue Town\", \"CLASS\": \"CDP\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"06362\", \"CAPITAL\": \"N\", \"AREALAND\": 14.268000, \"AREAWATER\": 0.053000, \"POP_CL\": 6, \"POP2000\": 11828, \"WHITE\": 11284, \"BLACK\": 60, \"AMERI_ES\": 99, \"ASIAN\": 160, \"HAWN_PI\": 2, \"OTHER\": 130, \"MULT_RACE\": 93, \"HISPANIC\": 310, \"MALES\": 5858, \"FEMALES\": 5970, \"AGE_UNDER5\": 900, \"AGE_5_17\": 2284, \"AGE_18_21\": 567, \"AGE_22_29\": 1616, \"AGE_30_39\": 2125, \"AGE_40_49\": 2001, \"AGE_50_64\": 1483, \"AGE_65_UP\": 852, \"MED_AGE\": 32.900000, \"MED_AGE_M\": 32.900000, \"MED_AGE_F\": 32.800000, \"HOUSEHOLDS\": 4624, \"AVE_HH_SZ\": 2.540000, \"HSEHLD_1_M\": 500, \"HSEHLD_1_F\": 569, \"MARHH_CHD\": 1354, \"MARHH_NO_C\": 1246, \"MHH_CHILD\": 99, \"FHH_CHILD\": 243, \"FAMILIES\": 3111, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 4759, \"VACANT\": 135, \"OWNER_OCC\": 3166, \"RENTER_OCC\": 1458 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.965106000343226, 44.463877998650943 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Beloit\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"06500\", \"CAPITAL\": \"N\", \"AREALAND\": 16.436000, \"AREAWATER\": 0.229000, \"POP_CL\": 6, \"POP2000\": 35775, \"WHITE\": 27034, \"BLACK\": 5497, \"AMERI_ES\": 135, \"ASIAN\": 415, \"HAWN_PI\": 24, \"OTHER\": 1652, \"MULT_RACE\": 1018, \"HISPANIC\": 3257, \"MALES\": 17148, \"FEMALES\": 18627, \"AGE_UNDER5\": 2746, \"AGE_5_17\": 7149, \"AGE_18_21\": 2632, \"AGE_22_29\": 4027, \"AGE_30_39\": 5113, \"AGE_40_49\": 4846, \"AGE_50_64\": 4629, \"AGE_65_UP\": 4633, \"MED_AGE\": 32.700000, \"MED_AGE_M\": 30.900000, \"MED_AGE_F\": 34.400000, \"HOUSEHOLDS\": 13370, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 1468, \"HSEHLD_1_F\": 2211, \"MARHH_CHD\": 2605, \"MARHH_NO_C\": 3351, \"MHH_CHILD\": 411, \"FHH_CHILD\": 1533, \"FAMILIES\": 8908, \"AVE_FAM_SZ\": 3.100000, \"HSE_UNITS\": 14262, \"VACANT\": 892, \"OWNER_OCC\": 8277, \"RENTER_OCC\": 5093 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.029963999984858, 42.51656399969626 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Brookfield\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"10025\", \"CAPITAL\": \"N\", \"AREALAND\": 27.197000, \"AREAWATER\": 0.071000, \"POP_CL\": 6, \"POP2000\": 38649, \"WHITE\": 36407, \"BLACK\": 321, \"AMERI_ES\": 35, \"ASIAN\": 1479, \"HAWN_PI\": 7, \"OTHER\": 87, \"MULT_RACE\": 313, \"HISPANIC\": 453, \"MALES\": 18698, \"FEMALES\": 19951, \"AGE_UNDER5\": 2072, \"AGE_5_17\": 8289, \"AGE_18_21\": 1158, \"AGE_22_29\": 1637, \"AGE_30_39\": 4434, \"AGE_40_49\": 7074, \"AGE_50_64\": 7177, \"AGE_65_UP\": 6808, \"MED_AGE\": 42.500000, \"MED_AGE_M\": 41.800000, \"MED_AGE_F\": 43.300000, \"HOUSEHOLDS\": 13891, \"AVE_HH_SZ\": 2.740000, \"HSEHLD_1_M\": 776, \"HSEHLD_1_F\": 1540, \"MARHH_CHD\": 4531, \"MARHH_NO_C\": 5629, \"MHH_CHILD\": 131, \"FHH_CHILD\": 357, \"FAMILIES\": 11220, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 14208, \"VACANT\": 317, \"OWNER_OCC\": 12482, \"RENTER_OCC\": 1409 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.114638000149242, 43.058110998935405 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Brown Deer\", \"CLASS\": \"village\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"10375\", \"CAPITAL\": \"N\", \"AREALAND\": 4.396000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 12170, \"WHITE\": 9984, \"BLACK\": 1522, \"AMERI_ES\": 31, \"ASIAN\": 319, \"HAWN_PI\": 5, \"OTHER\": 80, \"MULT_RACE\": 229, \"HISPANIC\": 260, \"MALES\": 5795, \"FEMALES\": 6375, \"AGE_UNDER5\": 575, \"AGE_5_17\": 1813, \"AGE_18_21\": 473, \"AGE_22_29\": 1095, \"AGE_30_39\": 1692, \"AGE_40_49\": 1980, \"AGE_50_64\": 2275, \"AGE_65_UP\": 2267, \"MED_AGE\": 42.200000, \"MED_AGE_M\": 40.200000, \"MED_AGE_F\": 44.000000, \"HOUSEHOLDS\": 5134, \"AVE_HH_SZ\": 2.270000, \"HSEHLD_1_M\": 651, \"HSEHLD_1_F\": 952, \"MARHH_CHD\": 1042, \"MARHH_NO_C\": 1667, \"MHH_CHILD\": 66, \"FHH_CHILD\": 205, \"FAMILIES\": 3249, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 5335, \"VACANT\": 201, \"OWNER_OCC\": 3656, \"RENTER_OCC\": 1478 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.977899000228064, 43.172857998739552 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cedarburg\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"13375\", \"CAPITAL\": \"N\", \"AREALAND\": 3.685000, \"AREAWATER\": 0.036000, \"POP_CL\": 6, \"POP2000\": 10908, \"WHITE\": 10708, \"BLACK\": 27, \"AMERI_ES\": 14, \"ASIAN\": 80, \"HAWN_PI\": 2, \"OTHER\": 14, \"MULT_RACE\": 63, \"HISPANIC\": 94, \"MALES\": 5213, \"FEMALES\": 5695, \"AGE_UNDER5\": 754, \"AGE_5_17\": 2215, \"AGE_18_21\": 329, \"AGE_22_29\": 679, \"AGE_30_39\": 1699, \"AGE_40_49\": 1949, \"AGE_50_64\": 1687, \"AGE_65_UP\": 1596, \"MED_AGE\": 39.000000, \"MED_AGE_M\": 38.000000, \"MED_AGE_F\": 39.800000, \"HOUSEHOLDS\": 4432, \"AVE_HH_SZ\": 2.450000, \"HSEHLD_1_M\": 462, \"HSEHLD_1_F\": 783, \"MARHH_CHD\": 1288, \"MARHH_NO_C\": 1308, \"MHH_CHILD\": 48, \"FHH_CHILD\": 224, \"FAMILIES\": 3024, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 4593, \"VACANT\": 161, \"OWNER_OCC\": 2891, \"RENTER_OCC\": 1541 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.987209000232653, 43.298959998746469 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Chippewa Falls\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"14575\", \"CAPITAL\": \"N\", \"AREALAND\": 10.850000, \"AREAWATER\": 0.532000, \"POP_CL\": 6, \"POP2000\": 12925, \"WHITE\": 12618, \"BLACK\": 39, \"AMERI_ES\": 59, \"ASIAN\": 87, \"HAWN_PI\": 1, \"OTHER\": 21, \"MULT_RACE\": 100, \"HISPANIC\": 82, \"MALES\": 6104, \"FEMALES\": 6821, \"AGE_UNDER5\": 833, \"AGE_5_17\": 2289, \"AGE_18_21\": 665, \"AGE_22_29\": 1405, \"AGE_30_39\": 1787, \"AGE_40_49\": 1924, \"AGE_50_64\": 1703, \"AGE_65_UP\": 2319, \"MED_AGE\": 37.300000, \"MED_AGE_M\": 35.500000, \"MED_AGE_F\": 39.500000, \"HOUSEHOLDS\": 5638, \"AVE_HH_SZ\": 2.200000, \"HSEHLD_1_M\": 759, \"HSEHLD_1_F\": 1300, \"MARHH_CHD\": 1030, \"MARHH_NO_C\": 1363, \"MHH_CHILD\": 130, \"FHH_CHILD\": 462, \"FAMILIES\": 3245, \"AVE_FAM_SZ\": 2.890000, \"HSE_UNITS\": 5905, \"VACANT\": 267, \"OWNER_OCC\": 3284, \"RENTER_OCC\": 2354 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -91.393228, 44.934109999992486 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cudahy\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"17975\", \"CAPITAL\": \"N\", \"AREALAND\": 4.750000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 18429, \"WHITE\": 17303, \"BLACK\": 175, \"AMERI_ES\": 150, \"ASIAN\": 154, \"HAWN_PI\": 6, \"OTHER\": 267, \"MULT_RACE\": 374, \"HISPANIC\": 872, \"MALES\": 9009, \"FEMALES\": 9420, \"AGE_UNDER5\": 1176, \"AGE_5_17\": 3066, \"AGE_18_21\": 836, \"AGE_22_29\": 1894, \"AGE_30_39\": 2986, \"AGE_40_49\": 2895, \"AGE_50_64\": 2671, \"AGE_65_UP\": 2905, \"MED_AGE\": 37.700000, \"MED_AGE_M\": 36.600000, \"MED_AGE_F\": 38.800000, \"HOUSEHOLDS\": 7888, \"AVE_HH_SZ\": 2.320000, \"HSEHLD_1_M\": 1205, \"HSEHLD_1_F\": 1360, \"MARHH_CHD\": 1511, \"MARHH_NO_C\": 2162, \"MHH_CHILD\": 157, \"FHH_CHILD\": 541, \"FAMILIES\": 4894, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 8273, \"VACANT\": 385, \"OWNER_OCC\": 4696, \"RENTER_OCC\": 3192 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.861010000285106, 42.948415998569629 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"De Pere\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"19775\", \"CAPITAL\": \"N\", \"AREALAND\": 10.606000, \"AREAWATER\": 0.714000, \"POP_CL\": 6, \"POP2000\": 20559, \"WHITE\": 19883, \"BLACK\": 110, \"AMERI_ES\": 189, \"ASIAN\": 155, \"HAWN_PI\": 7, \"OTHER\": 39, \"MULT_RACE\": 176, \"HISPANIC\": 202, \"MALES\": 9942, \"FEMALES\": 10617, \"AGE_UNDER5\": 1401, \"AGE_5_17\": 3640, \"AGE_18_21\": 2041, \"AGE_22_29\": 2407, \"AGE_30_39\": 3352, \"AGE_40_49\": 2979, \"AGE_50_64\": 2401, \"AGE_65_UP\": 2338, \"MED_AGE\": 32.500000, \"MED_AGE_M\": 31.800000, \"MED_AGE_F\": 33.100000, \"HOUSEHOLDS\": 7724, \"AVE_HH_SZ\": 2.460000, \"HSEHLD_1_M\": 820, \"HSEHLD_1_F\": 1309, \"MARHH_CHD\": 2060, \"MARHH_NO_C\": 2129, \"MHH_CHILD\": 138, \"FHH_CHILD\": 424, \"FAMILIES\": 5023, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 7993, \"VACANT\": 269, \"OWNER_OCC\": 5045, \"RENTER_OCC\": 2679 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.068429000268281, 44.441040998808027 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Eau Claire\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"22300\", \"CAPITAL\": \"N\", \"AREALAND\": 30.280000, \"AREAWATER\": 2.085000, \"POP_CL\": 7, \"POP2000\": 61704, \"WHITE\": 57657, \"BLACK\": 429, \"AMERI_ES\": 337, \"ASIAN\": 2259, \"HAWN_PI\": 23, \"OTHER\": 209, \"MULT_RACE\": 790, \"HISPANIC\": 619, \"MALES\": 29342, \"FEMALES\": 32362, \"AGE_UNDER5\": 3574, \"AGE_5_17\": 9784, \"AGE_18_21\": 8924, \"AGE_22_29\": 9046, \"AGE_30_39\": 7774, \"AGE_40_49\": 7917, \"AGE_50_64\": 7317, \"AGE_65_UP\": 7368, \"MED_AGE\": 29.400000, \"MED_AGE_M\": 28.700000, \"MED_AGE_F\": 30.200000, \"HOUSEHOLDS\": 24016, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 2874, \"HSEHLD_1_F\": 4328, \"MARHH_CHD\": 4763, \"MARHH_NO_C\": 5901, \"MHH_CHILD\": 382, \"FHH_CHILD\": 1513, \"FAMILIES\": 13567, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 24895, \"VACANT\": 879, \"OWNER_OCC\": 13759, \"RENTER_OCC\": 10257 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -91.492677, 44.814626999993074 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fitchburg\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"25950\", \"CAPITAL\": \"N\", \"AREALAND\": 34.820000, \"AREAWATER\": 0.043000, \"POP_CL\": 6, \"POP2000\": 20501, \"WHITE\": 16849, \"BLACK\": 1771, \"AMERI_ES\": 87, \"ASIAN\": 654, \"HAWN_PI\": 8, \"OTHER\": 626, \"MULT_RACE\": 506, \"HISPANIC\": 1329, \"MALES\": 10633, \"FEMALES\": 9868, \"AGE_UNDER5\": 1449, \"AGE_5_17\": 3450, \"AGE_18_21\": 1093, \"AGE_22_29\": 3775, \"AGE_30_39\": 3637, \"AGE_40_49\": 3358, \"AGE_50_64\": 2686, \"AGE_65_UP\": 1053, \"MED_AGE\": 31.300000, \"MED_AGE_M\": 30.700000, \"MED_AGE_F\": 32.100000, \"HOUSEHOLDS\": 8262, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 1099, \"HSEHLD_1_F\": 1218, \"MARHH_CHD\": 1860, \"MARHH_NO_C\": 1876, \"MHH_CHILD\": 164, \"FHH_CHILD\": 563, \"FAMILIES\": 4821, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 8604, \"VACANT\": 342, \"OWNER_OCC\": 3738, \"RENTER_OCC\": 4524 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.431501999988555, 43.006346999833696 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fond du Lac\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"26275\", \"CAPITAL\": \"N\", \"AREALAND\": 16.872000, \"AREAWATER\": 1.331000, \"POP_CL\": 6, \"POP2000\": 42203, \"WHITE\": 39496, \"BLACK\": 783, \"AMERI_ES\": 217, \"ASIAN\": 640, \"HAWN_PI\": 6, \"OTHER\": 535, \"MULT_RACE\": 526, \"HISPANIC\": 1232, \"MALES\": 19837, \"FEMALES\": 22366, \"AGE_UNDER5\": 2753, \"AGE_5_17\": 7441, \"AGE_18_21\": 2709, \"AGE_22_29\": 4754, \"AGE_30_39\": 6244, \"AGE_40_49\": 6214, \"AGE_50_64\": 5618, \"AGE_65_UP\": 6470, \"MED_AGE\": 35.700000, \"MED_AGE_M\": 33.700000, \"MED_AGE_F\": 37.300000, \"HOUSEHOLDS\": 16638, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 2119, \"HSEHLD_1_F\": 3030, \"MARHH_CHD\": 3623, \"MARHH_NO_C\": 4423, \"MHH_CHILD\": 349, \"FHH_CHILD\": 1120, \"FAMILIES\": 10285, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 17519, \"VACANT\": 881, \"OWNER_OCC\": 10270, \"RENTER_OCC\": 6368 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.44490700007529, 43.775138999275079 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fort Atkinson\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"26675\", \"CAPITAL\": \"N\", \"AREALAND\": 5.393000, \"AREAWATER\": 0.095000, \"POP_CL\": 6, \"POP2000\": 11621, \"WHITE\": 11167, \"BLACK\": 40, \"AMERI_ES\": 34, \"ASIAN\": 70, \"HAWN_PI\": 1, \"OTHER\": 217, \"MULT_RACE\": 92, \"HISPANIC\": 508, \"MALES\": 5612, \"FEMALES\": 6009, \"AGE_UNDER5\": 754, \"AGE_5_17\": 2062, \"AGE_18_21\": 553, \"AGE_22_29\": 1273, \"AGE_30_39\": 1815, \"AGE_40_49\": 1824, \"AGE_50_64\": 1660, \"AGE_65_UP\": 1680, \"MED_AGE\": 36.500000, \"MED_AGE_M\": 35.100000, \"MED_AGE_F\": 38.400000, \"HOUSEHOLDS\": 4760, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 509, \"HSEHLD_1_F\": 891, \"MARHH_CHD\": 1115, \"MARHH_NO_C\": 1371, \"MHH_CHILD\": 77, \"FHH_CHILD\": 302, \"FAMILIES\": 3070, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 4983, \"VACANT\": 223, \"OWNER_OCC\": 3047, \"RENTER_OCC\": 1713 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.840445999997669, 42.927090999592096 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Franklin\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"27300\", \"CAPITAL\": \"N\", \"AREALAND\": 34.626000, \"AREAWATER\": 0.093000, \"POP_CL\": 6, \"POP2000\": 29494, \"WHITE\": 26775, \"BLACK\": 1520, \"AMERI_ES\": 106, \"ASIAN\": 619, \"HAWN_PI\": 10, \"OTHER\": 197, \"MULT_RACE\": 267, \"HISPANIC\": 780, \"MALES\": 15394, \"FEMALES\": 14100, \"AGE_UNDER5\": 1663, \"AGE_5_17\": 5239, \"AGE_18_21\": 1500, \"AGE_22_29\": 2617, \"AGE_30_39\": 4985, \"AGE_40_49\": 5721, \"AGE_50_64\": 4849, \"AGE_65_UP\": 2920, \"MED_AGE\": 37.900000, \"MED_AGE_M\": 36.700000, \"MED_AGE_F\": 39.000000, \"HOUSEHOLDS\": 10602, \"AVE_HH_SZ\": 2.580000, \"HSEHLD_1_M\": 1024, \"HSEHLD_1_F\": 1364, \"MARHH_CHD\": 3053, \"MARHH_NO_C\": 3646, \"MHH_CHILD\": 141, \"FHH_CHILD\": 391, \"FAMILIES\": 7700, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 10936, \"VACANT\": 334, \"OWNER_OCC\": 8313, \"RENTER_OCC\": 2289 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.002204000192421, 42.89916599879021 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Germantown\", \"CLASS\": \"village\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"28875\", \"CAPITAL\": \"N\", \"AREALAND\": 34.421000, \"AREAWATER\": 0.038000, \"POP_CL\": 6, \"POP2000\": 18260, \"WHITE\": 17498, \"BLACK\": 247, \"AMERI_ES\": 45, \"ASIAN\": 292, \"HAWN_PI\": 7, \"OTHER\": 62, \"MULT_RACE\": 109, \"HISPANIC\": 205, \"MALES\": 8995, \"FEMALES\": 9265, \"AGE_UNDER5\": 1327, \"AGE_5_17\": 3618, \"AGE_18_21\": 677, \"AGE_22_29\": 1570, \"AGE_30_39\": 3317, \"AGE_40_49\": 3241, \"AGE_50_64\": 2796, \"AGE_65_UP\": 1714, \"MED_AGE\": 36.400000, \"MED_AGE_M\": 35.800000, \"MED_AGE_F\": 37.000000, \"HOUSEHOLDS\": 6904, \"AVE_HH_SZ\": 2.630000, \"HSEHLD_1_M\": 575, \"HSEHLD_1_F\": 836, \"MARHH_CHD\": 2172, \"MARHH_NO_C\": 2241, \"MHH_CHILD\": 104, \"FHH_CHILD\": 305, \"FAMILIES\": 5130, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 7075, \"VACANT\": 171, \"OWNER_OCC\": 5390, \"RENTER_OCC\": 1514 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.12043300015749, 43.223205998935128 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Glendale\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"29400\", \"CAPITAL\": \"N\", \"AREALAND\": 5.793000, \"AREAWATER\": 0.192000, \"POP_CL\": 6, \"POP2000\": 13367, \"WHITE\": 11597, \"BLACK\": 1087, \"AMERI_ES\": 31, \"ASIAN\": 395, \"HAWN_PI\": 13, \"OTHER\": 66, \"MULT_RACE\": 178, \"HISPANIC\": 236, \"MALES\": 6208, \"FEMALES\": 7159, \"AGE_UNDER5\": 578, \"AGE_5_17\": 2014, \"AGE_18_21\": 382, \"AGE_22_29\": 993, \"AGE_30_39\": 1573, \"AGE_40_49\": 2121, \"AGE_50_64\": 2397, \"AGE_65_UP\": 3309, \"MED_AGE\": 45.600000, \"MED_AGE_M\": 43.200000, \"MED_AGE_F\": 47.800000, \"HOUSEHOLDS\": 5772, \"AVE_HH_SZ\": 2.200000, \"HSEHLD_1_M\": 648, \"HSEHLD_1_F\": 1290, \"MARHH_CHD\": 1073, \"MARHH_NO_C\": 1814, \"MHH_CHILD\": 76, \"FHH_CHILD\": 252, \"FAMILIES\": 3517, \"AVE_FAM_SZ\": 2.840000, \"HSE_UNITS\": 5974, \"VACANT\": 202, \"OWNER_OCC\": 4220, \"RENTER_OCC\": 1552 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.927719000255934, 43.130059998665523 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Grafton\", \"CLASS\": \"village\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"30000\", \"CAPITAL\": \"N\", \"AREALAND\": 4.041000, \"AREAWATER\": 0.039000, \"POP_CL\": 6, \"POP2000\": 10312, \"WHITE\": 10077, \"BLACK\": 29, \"AMERI_ES\": 25, \"ASIAN\": 77, \"HAWN_PI\": 1, \"OTHER\": 38, \"MULT_RACE\": 65, \"HISPANIC\": 165, \"MALES\": 5064, \"FEMALES\": 5248, \"AGE_UNDER5\": 661, \"AGE_5_17\": 2054, \"AGE_18_21\": 428, \"AGE_22_29\": 871, \"AGE_30_39\": 1690, \"AGE_40_49\": 1779, \"AGE_50_64\": 1621, \"AGE_65_UP\": 1208, \"MED_AGE\": 37.300000, \"MED_AGE_M\": 36.000000, \"MED_AGE_F\": 38.500000, \"HOUSEHOLDS\": 4048, \"AVE_HH_SZ\": 2.540000, \"HSEHLD_1_M\": 408, \"HSEHLD_1_F\": 573, \"MARHH_CHD\": 1177, \"MARHH_NO_C\": 1309, \"MHH_CHILD\": 50, \"FHH_CHILD\": 170, \"FAMILIES\": 2880, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 4165, \"VACANT\": 117, \"OWNER_OCC\": 2792, \"RENTER_OCC\": 1256 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.954113000254935, 43.317903998695492 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Green Bay\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"31000\", \"CAPITAL\": \"N\", \"AREALAND\": 43.871000, \"AREAWATER\": 10.452000, \"POP_CL\": 8, \"POP2000\": 102313, \"WHITE\": 87841, \"BLACK\": 1407, \"AMERI_ES\": 3355, \"ASIAN\": 3845, \"HAWN_PI\": 36, \"OTHER\": 3809, \"MULT_RACE\": 2020, \"HISPANIC\": 7294, \"MALES\": 50433, \"FEMALES\": 51880, \"AGE_UNDER5\": 7359, \"AGE_5_17\": 18673, \"AGE_18_21\": 6752, \"AGE_22_29\": 13222, \"AGE_30_39\": 16300, \"AGE_40_49\": 15083, \"AGE_50_64\": 12882, \"AGE_65_UP\": 12042, \"MED_AGE\": 33.200000, \"MED_AGE_M\": 32.100000, \"MED_AGE_F\": 34.500000, \"HOUSEHOLDS\": 41591, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 5821, \"HSEHLD_1_F\": 7338, \"MARHH_CHD\": 8539, \"MARHH_NO_C\": 9811, \"MHH_CHILD\": 1018, \"FHH_CHILD\": 3179, \"FAMILIES\": 24652, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 43123, \"VACANT\": 1532, \"OWNER_OCC\": 23281, \"RENTER_OCC\": 18310 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.015787000309231, 44.513441998727096 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Greendale\", \"CLASS\": \"village\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"31125\", \"CAPITAL\": \"N\", \"AREALAND\": 5.601000, \"AREAWATER\": 0.006000, \"POP_CL\": 6, \"POP2000\": 14405, \"WHITE\": 13855, \"BLACK\": 41, \"AMERI_ES\": 23, \"ASIAN\": 296, \"HAWN_PI\": 1, \"OTHER\": 81, \"MULT_RACE\": 108, \"HISPANIC\": 340, \"MALES\": 6786, \"FEMALES\": 7619, \"AGE_UNDER5\": 727, \"AGE_5_17\": 2495, \"AGE_18_21\": 519, \"AGE_22_29\": 914, \"AGE_30_39\": 1706, \"AGE_40_49\": 2236, \"AGE_50_64\": 2915, \"AGE_65_UP\": 2893, \"MED_AGE\": 43.600000, \"MED_AGE_M\": 41.900000, \"MED_AGE_F\": 45.200000, \"HOUSEHOLDS\": 6011, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 490, \"HSEHLD_1_F\": 1126, \"MARHH_CHD\": 1283, \"MARHH_NO_C\": 2234, \"MHH_CHILD\": 75, \"FHH_CHILD\": 308, \"FAMILIES\": 4208, \"AVE_FAM_SZ\": 2.880000, \"HSE_UNITS\": 6165, \"VACANT\": 154, \"OWNER_OCC\": 4191, \"RENTER_OCC\": 1820 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.996884000198307, 42.937614998780425 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Greenfield\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"31175\", \"CAPITAL\": \"N\", \"AREALAND\": 11.546000, \"AREAWATER\": 0.006000, \"POP_CL\": 6, \"POP2000\": 35476, \"WHITE\": 33247, \"BLACK\": 348, \"AMERI_ES\": 155, \"ASIAN\": 802, \"HAWN_PI\": 7, \"OTHER\": 464, \"MULT_RACE\": 453, \"HISPANIC\": 1376, \"MALES\": 16641, \"FEMALES\": 18835, \"AGE_UNDER5\": 1591, \"AGE_5_17\": 5112, \"AGE_18_21\": 1498, \"AGE_22_29\": 3723, \"AGE_30_39\": 4860, \"AGE_40_49\": 5476, \"AGE_50_64\": 5948, \"AGE_65_UP\": 7268, \"MED_AGE\": 41.700000, \"MED_AGE_M\": 39.500000, \"MED_AGE_F\": 44.000000, \"HOUSEHOLDS\": 15697, \"AVE_HH_SZ\": 2.200000, \"HSEHLD_1_M\": 1960, \"HSEHLD_1_F\": 3479, \"MARHH_CHD\": 2719, \"MARHH_NO_C\": 4709, \"MHH_CHILD\": 219, \"FHH_CHILD\": 603, \"FAMILIES\": 9163, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 16203, \"VACANT\": 506, \"OWNER_OCC\": 9341, \"RENTER_OCC\": 6356 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.995943000200825, 42.963033998777668 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Hartford\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"33000\", \"CAPITAL\": \"N\", \"AREALAND\": 5.990000, \"AREAWATER\": 0.052000, \"POP_CL\": 6, \"POP2000\": 10905, \"WHITE\": 10545, \"BLACK\": 29, \"AMERI_ES\": 38, \"ASIAN\": 50, \"HAWN_PI\": 5, \"OTHER\": 134, \"MULT_RACE\": 104, \"HISPANIC\": 326, \"MALES\": 5418, \"FEMALES\": 5487, \"AGE_UNDER5\": 841, \"AGE_5_17\": 2166, \"AGE_18_21\": 527, \"AGE_22_29\": 1205, \"AGE_30_39\": 2047, \"AGE_40_49\": 1468, \"AGE_50_64\": 1259, \"AGE_65_UP\": 1392, \"MED_AGE\": 33.500000, \"MED_AGE_M\": 32.300000, \"MED_AGE_F\": 34.600000, \"HOUSEHOLDS\": 4279, \"AVE_HH_SZ\": 2.510000, \"HSEHLD_1_M\": 500, \"HSEHLD_1_F\": 623, \"MARHH_CHD\": 1139, \"MARHH_NO_C\": 1151, \"MHH_CHILD\": 108, \"FHH_CHILD\": 308, \"FAMILIES\": 2881, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 4434, \"VACANT\": 155, \"OWNER_OCC\": 2627, \"RENTER_OCC\": 1652 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.378808000073434, 43.318360999225632 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Howard\", \"CLASS\": \"village\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"35950\", \"CAPITAL\": \"N\", \"AREALAND\": 17.974000, \"AREAWATER\": 4.969000, \"POP_CL\": 6, \"POP2000\": 13546, \"WHITE\": 13026, \"BLACK\": 99, \"AMERI_ES\": 122, \"ASIAN\": 106, \"HAWN_PI\": 1, \"OTHER\": 43, \"MULT_RACE\": 149, \"HISPANIC\": 147, \"MALES\": 6656, \"FEMALES\": 6890, \"AGE_UNDER5\": 982, \"AGE_5_17\": 2789, \"AGE_18_21\": 629, \"AGE_22_29\": 1495, \"AGE_30_39\": 2480, \"AGE_40_49\": 2296, \"AGE_50_64\": 1860, \"AGE_65_UP\": 1015, \"MED_AGE\": 33.800000, \"MED_AGE_M\": 33.300000, \"MED_AGE_F\": 34.400000, \"HOUSEHOLDS\": 5236, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 493, \"HSEHLD_1_F\": 644, \"MARHH_CHD\": 1500, \"MARHH_NO_C\": 1520, \"MHH_CHILD\": 131, \"FHH_CHILD\": 368, \"FAMILIES\": 3693, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 5350, \"VACANT\": 114, \"OWNER_OCC\": 3342, \"RENTER_OCC\": 1894 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.08185600026826, 44.563090998821721 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Janesville\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"37825\", \"CAPITAL\": \"N\", \"AREALAND\": 27.537000, \"AREAWATER\": 0.587000, \"POP_CL\": 7, \"POP2000\": 59498, \"WHITE\": 56682, \"BLACK\": 748, \"AMERI_ES\": 146, \"ASIAN\": 573, \"HAWN_PI\": 19, \"OTHER\": 605, \"MULT_RACE\": 725, \"HISPANIC\": 1569, \"MALES\": 29073, \"FEMALES\": 30425, \"AGE_UNDER5\": 4176, \"AGE_5_17\": 11407, \"AGE_18_21\": 2706, \"AGE_22_29\": 6506, \"AGE_30_39\": 9469, \"AGE_40_49\": 8898, \"AGE_50_64\": 8668, \"AGE_65_UP\": 7668, \"MED_AGE\": 35.300000, \"MED_AGE_M\": 34.100000, \"MED_AGE_F\": 36.500000, \"HOUSEHOLDS\": 23894, \"AVE_HH_SZ\": 2.450000, \"HSEHLD_1_M\": 2827, \"HSEHLD_1_F\": 3722, \"MARHH_CHD\": 5451, \"MARHH_NO_C\": 6762, \"MHH_CHILD\": 634, \"FHH_CHILD\": 1727, \"FAMILIES\": 15743, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 25083, \"VACANT\": 1189, \"OWNER_OCC\": 16289, \"RENTER_OCC\": 7605 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.016653999987327, 42.684109999687699 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Kaukauna\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"38800\", \"CAPITAL\": \"N\", \"AREALAND\": 6.204000, \"AREAWATER\": 0.465000, \"POP_CL\": 6, \"POP2000\": 12983, \"WHITE\": 12396, \"BLACK\": 35, \"AMERI_ES\": 98, \"ASIAN\": 288, \"HAWN_PI\": 9, \"OTHER\": 39, \"MULT_RACE\": 118, \"HISPANIC\": 103, \"MALES\": 6393, \"FEMALES\": 6590, \"AGE_UNDER5\": 845, \"AGE_5_17\": 2755, \"AGE_18_21\": 646, \"AGE_22_29\": 1257, \"AGE_30_39\": 2130, \"AGE_40_49\": 1952, \"AGE_50_64\": 1613, \"AGE_65_UP\": 1785, \"MED_AGE\": 35.100000, \"MED_AGE_M\": 33.500000, \"MED_AGE_F\": 36.400000, \"HOUSEHOLDS\": 4971, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 569, \"HSEHLD_1_F\": 752, \"MARHH_CHD\": 1358, \"MARHH_NO_C\": 1377, \"MHH_CHILD\": 124, \"FHH_CHILD\": 282, \"FAMILIES\": 3364, \"AVE_FAM_SZ\": 3.160000, \"HSE_UNITS\": 5142, \"VACANT\": 171, \"OWNER_OCC\": 3553, \"RENTER_OCC\": 1418 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.27151300015349, 44.2777369990769 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Kenosha\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"39225\", \"CAPITAL\": \"N\", \"AREALAND\": 23.807000, \"AREAWATER\": 0.154000, \"POP_CL\": 7, \"POP2000\": 90352, \"WHITE\": 75566, \"BLACK\": 6943, \"AMERI_ES\": 398, \"ASIAN\": 893, \"HAWN_PI\": 40, \"OTHER\": 4366, \"MULT_RACE\": 2146, \"HISPANIC\": 9003, \"MALES\": 44422, \"FEMALES\": 45930, \"AGE_UNDER5\": 6800, \"AGE_5_17\": 17798, \"AGE_18_21\": 5527, \"AGE_22_29\": 10226, \"AGE_30_39\": 14761, \"AGE_40_49\": 12965, \"AGE_50_64\": 11269, \"AGE_65_UP\": 11006, \"MED_AGE\": 33.600000, \"MED_AGE_M\": 32.200000, \"MED_AGE_F\": 34.900000, \"HOUSEHOLDS\": 34411, \"AVE_HH_SZ\": 2.540000, \"HSEHLD_1_M\": 4262, \"HSEHLD_1_F\": 5510, \"MARHH_CHD\": 7735, \"MARHH_NO_C\": 8479, \"MHH_CHILD\": 863, \"FHH_CHILD\": 3141, \"FAMILIES\": 22546, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 36004, \"VACANT\": 1593, \"OWNER_OCC\": 21388, \"RENTER_OCC\": 13023 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.845624000259932, 42.582219998568306 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"La Crosse\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"40775\", \"CAPITAL\": \"N\", \"AREALAND\": 20.136000, \"AREAWATER\": 2.024000, \"POP_CL\": 7, \"POP2000\": 51818, \"WHITE\": 47454, \"BLACK\": 806, \"AMERI_ES\": 266, \"ASIAN\": 2410, \"HAWN_PI\": 18, \"OTHER\": 185, \"MULT_RACE\": 679, \"HISPANIC\": 592, \"MALES\": 24396, \"FEMALES\": 27422, \"AGE_UNDER5\": 2496, \"AGE_5_17\": 7266, \"AGE_18_21\": 8475, \"AGE_22_29\": 7591, \"AGE_30_39\": 6250, \"AGE_40_49\": 6183, \"AGE_50_64\": 5856, \"AGE_65_UP\": 7701, \"MED_AGE\": 30.100000, \"MED_AGE_M\": 29.100000, \"MED_AGE_F\": 31.400000, \"HOUSEHOLDS\": 21110, \"AVE_HH_SZ\": 2.230000, \"HSEHLD_1_M\": 3198, \"HSEHLD_1_F\": 4611, \"MARHH_CHD\": 3046, \"MARHH_NO_C\": 4579, \"MHH_CHILD\": 334, \"FHH_CHILD\": 1265, \"FAMILIES\": 10214, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 22233, \"VACANT\": 1123, \"OWNER_OCC\": 10746, \"RENTER_OCC\": 10364 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -91.23311, 43.813215999992444 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Little Chute\", \"CLASS\": \"village\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"44950\", \"CAPITAL\": \"N\", \"AREALAND\": 4.128000, \"AREAWATER\": 0.360000, \"POP_CL\": 6, \"POP2000\": 10476, \"WHITE\": 10158, \"BLACK\": 10, \"AMERI_ES\": 57, \"ASIAN\": 81, \"HAWN_PI\": 3, \"OTHER\": 89, \"MULT_RACE\": 78, \"HISPANIC\": 175, \"MALES\": 5128, \"FEMALES\": 5348, \"AGE_UNDER5\": 785, \"AGE_5_17\": 2265, \"AGE_18_21\": 495, \"AGE_22_29\": 1202, \"AGE_30_39\": 1757, \"AGE_40_49\": 1561, \"AGE_50_64\": 1321, \"AGE_65_UP\": 1090, \"MED_AGE\": 32.900000, \"MED_AGE_M\": 32.300000, \"MED_AGE_F\": 33.800000, \"HOUSEHOLDS\": 3878, \"AVE_HH_SZ\": 2.680000, \"HSEHLD_1_M\": 362, \"HSEHLD_1_F\": 494, \"MARHH_CHD\": 1158, \"MARHH_NO_C\": 1159, \"MHH_CHILD\": 77, \"FHH_CHILD\": 252, \"FAMILIES\": 2805, \"AVE_FAM_SZ\": 3.170000, \"HSE_UNITS\": 3956, \"VACANT\": 78, \"OWNER_OCC\": 2778, \"RENTER_OCC\": 1100 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.313629000137325, 44.284086999124362 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Madison\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"48000\", \"CAPITAL\": \"Y\", \"AREALAND\": 68.672000, \"AREAWATER\": 16.005000, \"POP_CL\": 8, \"POP2000\": 208054, \"WHITE\": 174689, \"BLACK\": 12155, \"AMERI_ES\": 759, \"ASIAN\": 12065, \"HAWN_PI\": 77, \"OTHER\": 3474, \"MULT_RACE\": 4835, \"HISPANIC\": 8512, \"MALES\": 102248, \"FEMALES\": 105806, \"AGE_UNDER5\": 10815, \"AGE_5_17\": 26446, \"AGE_18_21\": 27907, \"AGE_22_29\": 36473, \"AGE_30_39\": 32513, \"AGE_40_49\": 29082, \"AGE_50_64\": 25634, \"AGE_65_UP\": 19184, \"MED_AGE\": 30.600000, \"MED_AGE_M\": 29.900000, \"MED_AGE_F\": 31.500000, \"HOUSEHOLDS\": 89019, \"AVE_HH_SZ\": 2.190000, \"HSEHLD_1_M\": 13962, \"HSEHLD_1_F\": 17479, \"MARHH_CHD\": 13988, \"MARHH_NO_C\": 18965, \"MHH_CHILD\": 1231, \"FHH_CHILD\": 4451, \"FAMILIES\": 42458, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 92394, \"VACANT\": 3375, \"OWNER_OCC\": 42496, \"RENTER_OCC\": 46523 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.394756999988843, 43.074612999822882 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Manitowoc\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"48500\", \"CAPITAL\": \"N\", \"AREALAND\": 16.868000, \"AREAWATER\": 0.317000, \"POP_CL\": 6, \"POP2000\": 34053, \"WHITE\": 31713, \"BLACK\": 202, \"AMERI_ES\": 188, \"ASIAN\": 1283, \"HAWN_PI\": 25, \"OTHER\": 306, \"MULT_RACE\": 336, \"HISPANIC\": 859, \"MALES\": 16489, \"FEMALES\": 17564, \"AGE_UNDER5\": 2097, \"AGE_5_17\": 6117, \"AGE_18_21\": 1638, \"AGE_22_29\": 3106, \"AGE_30_39\": 4768, \"AGE_40_49\": 5188, \"AGE_50_64\": 4875, \"AGE_65_UP\": 6264, \"MED_AGE\": 38.600000, \"MED_AGE_M\": 36.600000, \"MED_AGE_F\": 40.500000, \"HOUSEHOLDS\": 14235, \"AVE_HH_SZ\": 2.320000, \"HSEHLD_1_M\": 1866, \"HSEHLD_1_F\": 2767, \"MARHH_CHD\": 2892, \"MARHH_NO_C\": 4089, \"MHH_CHILD\": 313, \"FHH_CHILD\": 865, \"FAMILIES\": 8811, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 15007, \"VACANT\": 772, \"OWNER_OCC\": 9626, \"RENTER_OCC\": 4609 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.675002000595711, 44.096460998146227 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Marinette\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"49300\", \"CAPITAL\": \"N\", \"AREALAND\": 6.758000, \"AREAWATER\": 1.204000, \"POP_CL\": 6, \"POP2000\": 11749, \"WHITE\": 11447, \"BLACK\": 44, \"AMERI_ES\": 76, \"ASIAN\": 41, \"HAWN_PI\": 1, \"OTHER\": 34, \"MULT_RACE\": 106, \"HISPANIC\": 123, \"MALES\": 5542, \"FEMALES\": 6207, \"AGE_UNDER5\": 640, \"AGE_5_17\": 2143, \"AGE_18_21\": 638, \"AGE_22_29\": 1044, \"AGE_30_39\": 1622, \"AGE_40_49\": 1776, \"AGE_50_64\": 1691, \"AGE_65_UP\": 2195, \"MED_AGE\": 38.800000, \"MED_AGE_M\": 36.200000, \"MED_AGE_F\": 41.300000, \"HOUSEHOLDS\": 5095, \"AVE_HH_SZ\": 2.240000, \"HSEHLD_1_M\": 704, \"HSEHLD_1_F\": 1163, \"MARHH_CHD\": 982, \"MARHH_NO_C\": 1282, \"MHH_CHILD\": 113, \"FHH_CHILD\": 368, \"FAMILIES\": 2973, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 5553, \"VACANT\": 458, \"OWNER_OCC\": 3485, \"RENTER_OCC\": 1610 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.628714000794105, 45.091982997975201 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Marshfield\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"49675\", \"CAPITAL\": \"N\", \"AREALAND\": 12.721000, \"AREAWATER\": 0.027000, \"POP_CL\": 6, \"POP2000\": 18800, \"WHITE\": 18259, \"BLACK\": 74, \"AMERI_ES\": 44, \"ASIAN\": 260, \"HAWN_PI\": 1, \"OTHER\": 41, \"MULT_RACE\": 121, \"HISPANIC\": 146, \"MALES\": 8915, \"FEMALES\": 9885, \"AGE_UNDER5\": 1117, \"AGE_5_17\": 3182, \"AGE_18_21\": 974, \"AGE_22_29\": 1875, \"AGE_30_39\": 2643, \"AGE_40_49\": 2887, \"AGE_50_64\": 2775, \"AGE_65_UP\": 3347, \"MED_AGE\": 38.700000, \"MED_AGE_M\": 36.800000, \"MED_AGE_F\": 40.400000, \"HOUSEHOLDS\": 8235, \"AVE_HH_SZ\": 2.240000, \"HSEHLD_1_M\": 1074, \"HSEHLD_1_F\": 1828, \"MARHH_CHD\": 1708, \"MARHH_NO_C\": 2265, \"MHH_CHILD\": 132, \"FHH_CHILD\": 446, \"FAMILIES\": 4864, \"AVE_FAM_SZ\": 2.910000, \"HSE_UNITS\": 8617, \"VACANT\": 382, \"OWNER_OCC\": 5056, \"RENTER_OCC\": 3179 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -90.175960999997542, 44.664878999951604 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Menasha\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"50825\", \"CAPITAL\": \"N\", \"AREALAND\": 5.256000, \"AREAWATER\": 1.418000, \"POP_CL\": 6, \"POP2000\": 16331, \"WHITE\": 15481, \"BLACK\": 88, \"AMERI_ES\": 99, \"ASIAN\": 264, \"HAWN_PI\": 4, \"OTHER\": 225, \"MULT_RACE\": 170, \"HISPANIC\": 590, \"MALES\": 8028, \"FEMALES\": 8303, \"AGE_UNDER5\": 1149, \"AGE_5_17\": 3038, \"AGE_18_21\": 808, \"AGE_22_29\": 2105, \"AGE_30_39\": 2804, \"AGE_40_49\": 2463, \"AGE_50_64\": 2033, \"AGE_65_UP\": 1931, \"MED_AGE\": 34.000000, \"MED_AGE_M\": 33.000000, \"MED_AGE_F\": 35.000000, \"HOUSEHOLDS\": 6951, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 993, \"HSEHLD_1_F\": 1214, \"MARHH_CHD\": 1526, \"MARHH_NO_C\": 1677, \"MHH_CHILD\": 159, \"FHH_CHILD\": 520, \"FAMILIES\": 4235, \"AVE_FAM_SZ\": 2.990000, \"HSE_UNITS\": 7271, \"VACANT\": 320, \"OWNER_OCC\": 4273, \"RENTER_OCC\": 2678 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.436182000094391, 44.212852999253705 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Menomonee Falls\", \"CLASS\": \"village\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"51000\", \"CAPITAL\": \"N\", \"AREALAND\": 33.276000, \"AREAWATER\": 0.007000, \"POP_CL\": 6, \"POP2000\": 32647, \"WHITE\": 31504, \"BLACK\": 479, \"AMERI_ES\": 53, \"ASIAN\": 288, \"HAWN_PI\": 7, \"OTHER\": 78, \"MULT_RACE\": 238, \"HISPANIC\": 377, \"MALES\": 15789, \"FEMALES\": 16858, \"AGE_UNDER5\": 2161, \"AGE_5_17\": 6001, \"AGE_18_21\": 1034, \"AGE_22_29\": 2271, \"AGE_30_39\": 5404, \"AGE_40_49\": 5455, \"AGE_50_64\": 5197, \"AGE_65_UP\": 5124, \"MED_AGE\": 39.200000, \"MED_AGE_M\": 38.300000, \"MED_AGE_F\": 40.000000, \"HOUSEHOLDS\": 12844, \"AVE_HH_SZ\": 2.520000, \"HSEHLD_1_M\": 1104, \"HSEHLD_1_F\": 1945, \"MARHH_CHD\": 3595, \"MARHH_NO_C\": 4568, \"MHH_CHILD\": 155, \"FHH_CHILD\": 411, \"FAMILIES\": 9298, \"AVE_FAM_SZ\": 3.010000, \"HSE_UNITS\": 13140, \"VACANT\": 296, \"OWNER_OCC\": 9939, \"RENTER_OCC\": 2905 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.110346000157293, 43.151182998925414 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Menomonie\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"51025\", \"CAPITAL\": \"N\", \"AREALAND\": 12.869000, \"AREAWATER\": 1.738000, \"POP_CL\": 6, \"POP2000\": 14937, \"WHITE\": 14009, \"BLACK\": 114, \"AMERI_ES\": 61, \"ASIAN\": 479, \"HAWN_PI\": 2, \"OTHER\": 95, \"MULT_RACE\": 177, \"HISPANIC\": 170, \"MALES\": 7436, \"FEMALES\": 7501, \"AGE_UNDER5\": 674, \"AGE_5_17\": 1645, \"AGE_18_21\": 4063, \"AGE_22_29\": 3003, \"AGE_30_39\": 1335, \"AGE_40_49\": 1336, \"AGE_50_64\": 1196, \"AGE_65_UP\": 1685, \"MED_AGE\": 23.200000, \"MED_AGE_M\": 23.000000, \"MED_AGE_F\": 23.400000, \"HOUSEHOLDS\": 5119, \"AVE_HH_SZ\": 2.350000, \"HSEHLD_1_M\": 660, \"HSEHLD_1_F\": 1013, \"MARHH_CHD\": 810, \"MARHH_NO_C\": 1034, \"MHH_CHILD\": 81, \"FHH_CHILD\": 267, \"FAMILIES\": 2371, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 5441, \"VACANT\": 322, \"OWNER_OCC\": 2241, \"RENTER_OCC\": 2878 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -91.918333000000104, 44.879335999993863 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Mequon\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"51150\", \"CAPITAL\": \"N\", \"AREALAND\": 46.183000, \"AREAWATER\": 0.635000, \"POP_CL\": 6, \"POP2000\": 21823, \"WHITE\": 20549, \"BLACK\": 492, \"AMERI_ES\": 21, \"ASIAN\": 522, \"HAWN_PI\": 6, \"OTHER\": 51, \"MULT_RACE\": 182, \"HISPANIC\": 261, \"MALES\": 10767, \"FEMALES\": 11056, \"AGE_UNDER5\": 1202, \"AGE_5_17\": 4922, \"AGE_18_21\": 579, \"AGE_22_29\": 817, \"AGE_30_39\": 2393, \"AGE_40_49\": 4347, \"AGE_50_64\": 4590, \"AGE_65_UP\": 2973, \"MED_AGE\": 42.500000, \"MED_AGE_M\": 42.000000, \"MED_AGE_F\": 43.000000, \"HOUSEHOLDS\": 7861, \"AVE_HH_SZ\": 2.750000, \"HSEHLD_1_M\": 463, \"HSEHLD_1_F\": 801, \"MARHH_CHD\": 2711, \"MARHH_NO_C\": 3172, \"MHH_CHILD\": 74, \"FHH_CHILD\": 205, \"FAMILIES\": 6404, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 8162, \"VACANT\": 301, \"OWNER_OCC\": 7175, \"RENTER_OCC\": 686 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.960094000243231, 43.224242998709919 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Merrill\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"51250\", \"CAPITAL\": \"N\", \"AREALAND\": 7.038000, \"AREAWATER\": 0.493000, \"POP_CL\": 6, \"POP2000\": 10146, \"WHITE\": 9920, \"BLACK\": 20, \"AMERI_ES\": 55, \"ASIAN\": 43, \"HAWN_PI\": 4, \"OTHER\": 37, \"MULT_RACE\": 67, \"HISPANIC\": 104, \"MALES\": 4800, \"FEMALES\": 5346, \"AGE_UNDER5\": 657, \"AGE_5_17\": 1906, \"AGE_18_21\": 501, \"AGE_22_29\": 1010, \"AGE_30_39\": 1396, \"AGE_40_49\": 1347, \"AGE_50_64\": 1330, \"AGE_65_UP\": 1999, \"MED_AGE\": 37.300000, \"MED_AGE_M\": 34.600000, \"MED_AGE_F\": 40.100000, \"HOUSEHOLDS\": 4183, \"AVE_HH_SZ\": 2.340000, \"HSEHLD_1_M\": 504, \"HSEHLD_1_F\": 847, \"MARHH_CHD\": 849, \"MARHH_NO_C\": 1124, \"MHH_CHILD\": 114, \"FHH_CHILD\": 335, \"FAMILIES\": 2631, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 4397, \"VACANT\": 214, \"OWNER_OCC\": 2732, \"RENTER_OCC\": 1451 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.695589999998234, 45.182568999882506 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Middleton\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"51575\", \"CAPITAL\": \"N\", \"AREALAND\": 8.074000, \"AREAWATER\": 0.015000, \"POP_CL\": 6, \"POP2000\": 15770, \"WHITE\": 14521, \"BLACK\": 311, \"AMERI_ES\": 71, \"ASIAN\": 419, \"HAWN_PI\": 4, \"OTHER\": 201, \"MULT_RACE\": 243, \"HISPANIC\": 444, \"MALES\": 7559, \"FEMALES\": 8211, \"AGE_UNDER5\": 882, \"AGE_5_17\": 2702, \"AGE_18_21\": 610, \"AGE_22_29\": 2119, \"AGE_30_39\": 2540, \"AGE_40_49\": 2757, \"AGE_50_64\": 2542, \"AGE_65_UP\": 1618, \"MED_AGE\": 36.200000, \"MED_AGE_M\": 34.800000, \"MED_AGE_F\": 37.500000, \"HOUSEHOLDS\": 7095, \"AVE_HH_SZ\": 2.210000, \"HSEHLD_1_M\": 959, \"HSEHLD_1_F\": 1486, \"MARHH_CHD\": 1468, \"MARHH_NO_C\": 1763, \"MHH_CHILD\": 90, \"FHH_CHILD\": 425, \"FAMILIES\": 3977, \"AVE_FAM_SZ\": 2.900000, \"HSE_UNITS\": 7397, \"VACANT\": 302, \"OWNER_OCC\": 3672, \"RENTER_OCC\": 3423 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.499547999989517, 43.101644999850642 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Milwaukee\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"53000\", \"CAPITAL\": \"N\", \"AREALAND\": 96.064000, \"AREAWATER\": 0.850000, \"POP_CL\": 9, \"POP2000\": 596974, \"WHITE\": 298379, \"BLACK\": 222933, \"AMERI_ES\": 5212, \"ASIAN\": 17571, \"HAWN_PI\": 301, \"OTHER\": 36428, \"MULT_RACE\": 16150, \"HISPANIC\": 71646, \"MALES\": 285363, \"FEMALES\": 311611, \"AGE_UNDER5\": 47545, \"AGE_5_17\": 123439, \"AGE_18_21\": 42943, \"AGE_22_29\": 78933, \"AGE_30_39\": 89138, \"AGE_40_49\": 79547, \"AGE_50_64\": 70306, \"AGE_65_UP\": 65123, \"MED_AGE\": 30.600000, \"MED_AGE_M\": 29.400000, \"MED_AGE_F\": 31.800000, \"HOUSEHOLDS\": 232188, \"AVE_HH_SZ\": 2.500000, \"HSEHLD_1_M\": 35560, \"HSEHLD_1_F\": 42212, \"MARHH_CHD\": 33292, \"MARHH_NO_C\": 41502, \"MHH_CHILD\": 5355, \"FHH_CHILD\": 32251, \"FAMILIES\": 135189, \"AVE_FAM_SZ\": 3.250000, \"HSE_UNITS\": 249225, \"VACANT\": 17037, \"OWNER_OCC\": 105235, \"RENTER_OCC\": 126953 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.95591000023137, 43.052161998713373 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Monroe\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"53750\", \"CAPITAL\": \"N\", \"AREALAND\": 4.340000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10843, \"WHITE\": 10596, \"BLACK\": 38, \"AMERI_ES\": 37, \"ASIAN\": 34, \"HAWN_PI\": 0, \"OTHER\": 59, \"MULT_RACE\": 79, \"HISPANIC\": 158, \"MALES\": 5138, \"FEMALES\": 5705, \"AGE_UNDER5\": 662, \"AGE_5_17\": 1997, \"AGE_18_21\": 475, \"AGE_22_29\": 1017, \"AGE_30_39\": 1495, \"AGE_40_49\": 1645, \"AGE_50_64\": 1538, \"AGE_65_UP\": 2014, \"MED_AGE\": 38.900000, \"MED_AGE_M\": 36.600000, \"MED_AGE_F\": 40.800000, \"HOUSEHOLDS\": 4710, \"AVE_HH_SZ\": 2.250000, \"HSEHLD_1_M\": 566, \"HSEHLD_1_F\": 1058, \"MARHH_CHD\": 947, \"MARHH_NO_C\": 1270, \"MHH_CHILD\": 112, \"FHH_CHILD\": 308, \"FAMILIES\": 2824, \"AVE_FAM_SZ\": 2.910000, \"HSE_UNITS\": 4943, \"VACANT\": 233, \"OWNER_OCC\": 2998, \"RENTER_OCC\": 1712 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.641018999988702, 42.598912999885265 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Muskego\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"55275\", \"CAPITAL\": \"N\", \"AREALAND\": 31.225000, \"AREAWATER\": 4.656000, \"POP_CL\": 6, \"POP2000\": 21397, \"WHITE\": 20992, \"BLACK\": 34, \"AMERI_ES\": 46, \"ASIAN\": 97, \"HAWN_PI\": 5, \"OTHER\": 76, \"MULT_RACE\": 147, \"HISPANIC\": 281, \"MALES\": 10587, \"FEMALES\": 10810, \"AGE_UNDER5\": 1431, \"AGE_5_17\": 4456, \"AGE_18_21\": 806, \"AGE_22_29\": 1502, \"AGE_30_39\": 3584, \"AGE_40_49\": 4004, \"AGE_50_64\": 3481, \"AGE_65_UP\": 2133, \"MED_AGE\": 37.500000, \"MED_AGE_M\": 37.000000, \"MED_AGE_F\": 38.000000, \"HOUSEHOLDS\": 7533, \"AVE_HH_SZ\": 2.800000, \"HSEHLD_1_M\": 528, \"HSEHLD_1_F\": 583, \"MARHH_CHD\": 2602, \"MARHH_NO_C\": 2780, \"MHH_CHILD\": 107, \"FHH_CHILD\": 282, \"FAMILIES\": 6109, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 7699, \"VACANT\": 166, \"OWNER_OCC\": 6228, \"RENTER_OCC\": 1305 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.124640000134789, 42.901234998955672 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Neenah\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"55750\", \"CAPITAL\": \"N\", \"AREALAND\": 8.247000, \"AREAWATER\": 0.327000, \"POP_CL\": 6, \"POP2000\": 24507, \"WHITE\": 23547, \"BLACK\": 84, \"AMERI_ES\": 134, \"ASIAN\": 235, \"HAWN_PI\": 1, \"OTHER\": 211, \"MULT_RACE\": 295, \"HISPANIC\": 495, \"MALES\": 11912, \"FEMALES\": 12595, \"AGE_UNDER5\": 1701, \"AGE_5_17\": 5048, \"AGE_18_21\": 1081, \"AGE_22_29\": 2395, \"AGE_30_39\": 4049, \"AGE_40_49\": 3995, \"AGE_50_64\": 3182, \"AGE_65_UP\": 3056, \"MED_AGE\": 35.400000, \"MED_AGE_M\": 34.400000, \"MED_AGE_F\": 36.300000, \"HOUSEHOLDS\": 9834, \"AVE_HH_SZ\": 2.470000, \"HSEHLD_1_M\": 1153, \"HSEHLD_1_F\": 1549, \"MARHH_CHD\": 2550, \"MARHH_NO_C\": 2738, \"MHH_CHILD\": 198, \"FHH_CHILD\": 689, \"FAMILIES\": 6576, \"AVE_FAM_SZ\": 3.030000, \"HSE_UNITS\": 10198, \"VACANT\": 364, \"OWNER_OCC\": 6879, \"RENTER_OCC\": 2955 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.468508000084213, 44.174034999285588 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"New Berlin\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"56375\", \"CAPITAL\": \"N\", \"AREALAND\": 36.841000, \"AREAWATER\": 0.083000, \"POP_CL\": 6, \"POP2000\": 38220, \"WHITE\": 36631, \"BLACK\": 169, \"AMERI_ES\": 82, \"ASIAN\": 883, \"HAWN_PI\": 6, \"OTHER\": 173, \"MULT_RACE\": 276, \"HISPANIC\": 595, \"MALES\": 18806, \"FEMALES\": 19414, \"AGE_UNDER5\": 2275, \"AGE_5_17\": 7198, \"AGE_18_21\": 1429, \"AGE_22_29\": 2750, \"AGE_30_39\": 5575, \"AGE_40_49\": 7293, \"AGE_50_64\": 6857, \"AGE_65_UP\": 4843, \"MED_AGE\": 39.800000, \"MED_AGE_M\": 39.200000, \"MED_AGE_F\": 40.400000, \"HOUSEHOLDS\": 14495, \"AVE_HH_SZ\": 2.620000, \"HSEHLD_1_M\": 1125, \"HSEHLD_1_F\": 1628, \"MARHH_CHD\": 4362, \"MARHH_NO_C\": 5491, \"MHH_CHILD\": 150, \"FHH_CHILD\": 415, \"FAMILIES\": 11040, \"AVE_FAM_SZ\": 3.030000, \"HSE_UNITS\": 14921, \"VACANT\": 426, \"OWNER_OCC\": 11778, \"RENTER_OCC\": 2717 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.109188000146432, 42.979062998932115 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Oak Creek\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"58800\", \"CAPITAL\": \"N\", \"AREALAND\": 28.618000, \"AREAWATER\": 0.009000, \"POP_CL\": 6, \"POP2000\": 28456, \"WHITE\": 26169, \"BLACK\": 519, \"AMERI_ES\": 169, \"ASIAN\": 680, \"HAWN_PI\": 1, \"OTHER\": 484, \"MULT_RACE\": 434, \"HISPANIC\": 1267, \"MALES\": 14180, \"FEMALES\": 14276, \"AGE_UNDER5\": 1912, \"AGE_5_17\": 5195, \"AGE_18_21\": 1393, \"AGE_22_29\": 3556, \"AGE_30_39\": 5160, \"AGE_40_49\": 4733, \"AGE_50_64\": 3988, \"AGE_65_UP\": 2519, \"MED_AGE\": 34.500000, \"MED_AGE_M\": 34.100000, \"MED_AGE_F\": 35.000000, \"HOUSEHOLDS\": 11239, \"AVE_HH_SZ\": 2.520000, \"HSEHLD_1_M\": 1314, \"HSEHLD_1_F\": 1530, \"MARHH_CHD\": 3054, \"MARHH_NO_C\": 3283, \"MHH_CHILD\": 205, \"FHH_CHILD\": 484, \"FAMILIES\": 7525, \"AVE_FAM_SZ\": 3.100000, \"HSE_UNITS\": 11897, \"VACANT\": 658, \"OWNER_OCC\": 6847, \"RENTER_OCC\": 4392 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.899209000252625, 42.884346998635486 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Oconomowoc\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"59250\", \"CAPITAL\": \"N\", \"AREALAND\": 6.709000, \"AREAWATER\": 0.493000, \"POP_CL\": 6, \"POP2000\": 12382, \"WHITE\": 12098, \"BLACK\": 38, \"AMERI_ES\": 35, \"ASIAN\": 66, \"HAWN_PI\": 1, \"OTHER\": 58, \"MULT_RACE\": 86, \"HISPANIC\": 204, \"MALES\": 5857, \"FEMALES\": 6525, \"AGE_UNDER5\": 781, \"AGE_5_17\": 2276, \"AGE_18_21\": 509, \"AGE_22_29\": 1215, \"AGE_30_39\": 1849, \"AGE_40_49\": 1834, \"AGE_50_64\": 1826, \"AGE_65_UP\": 2092, \"MED_AGE\": 38.000000, \"MED_AGE_M\": 36.000000, \"MED_AGE_F\": 39.600000, \"HOUSEHOLDS\": 4968, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 499, \"HSEHLD_1_F\": 921, \"MARHH_CHD\": 1186, \"MARHH_NO_C\": 1532, \"MHH_CHILD\": 95, \"FHH_CHILD\": 244, \"FAMILIES\": 3294, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 5239, \"VACANT\": 271, \"OWNER_OCC\": 3102, \"RENTER_OCC\": 1866 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.497019000039927, 43.108813999342054 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Onalaska\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"59925\", \"CAPITAL\": \"N\", \"AREALAND\": 9.095000, \"AREAWATER\": 0.582000, \"POP_CL\": 6, \"POP2000\": 14839, \"WHITE\": 14123, \"BLACK\": 93, \"AMERI_ES\": 29, \"ASIAN\": 416, \"HAWN_PI\": 0, \"OTHER\": 37, \"MULT_RACE\": 141, \"HISPANIC\": 141, \"MALES\": 7181, \"FEMALES\": 7658, \"AGE_UNDER5\": 1015, \"AGE_5_17\": 2868, \"AGE_18_21\": 730, \"AGE_22_29\": 1677, \"AGE_30_39\": 2107, \"AGE_40_49\": 2457, \"AGE_50_64\": 2315, \"AGE_65_UP\": 1670, \"MED_AGE\": 35.500000, \"MED_AGE_M\": 34.400000, \"MED_AGE_F\": 36.700000, \"HOUSEHOLDS\": 5893, \"AVE_HH_SZ\": 2.500000, \"HSEHLD_1_M\": 560, \"HSEHLD_1_F\": 880, \"MARHH_CHD\": 1536, \"MARHH_NO_C\": 1823, \"MHH_CHILD\": 109, \"FHH_CHILD\": 349, \"FAMILIES\": 4035, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 6070, \"VACANT\": 177, \"OWNER_OCC\": 4015, \"RENTER_OCC\": 1878 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -91.218624, 43.88826599999225 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Oshkosh\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"60500\", \"CAPITAL\": \"N\", \"AREALAND\": 23.633000, \"AREAWATER\": 0.780000, \"POP_CL\": 7, \"POP2000\": 62916, \"WHITE\": 58339, \"BLACK\": 1376, \"AMERI_ES\": 326, \"ASIAN\": 1908, \"HAWN_PI\": 17, \"OTHER\": 334, \"MULT_RACE\": 616, \"HISPANIC\": 1062, \"MALES\": 31449, \"FEMALES\": 31467, \"AGE_UNDER5\": 3421, \"AGE_5_17\": 9624, \"AGE_18_21\": 7230, \"AGE_22_29\": 9035, \"AGE_30_39\": 9309, \"AGE_40_49\": 8523, \"AGE_50_64\": 7537, \"AGE_65_UP\": 8237, \"MED_AGE\": 32.400000, \"MED_AGE_M\": 31.400000, \"MED_AGE_F\": 33.600000, \"HOUSEHOLDS\": 24082, \"AVE_HH_SZ\": 2.310000, \"HSEHLD_1_M\": 3215, \"HSEHLD_1_F\": 4580, \"MARHH_CHD\": 4654, \"MARHH_NO_C\": 6003, \"MHH_CHILD\": 463, \"FHH_CHILD\": 1468, \"FAMILIES\": 13653, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 25420, \"VACANT\": 1338, \"OWNER_OCC\": 13851, \"RENTER_OCC\": 10231 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.55133600006009, 44.024982999363353 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pewaukee\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"62240\", \"CAPITAL\": \"N\", \"AREALAND\": 21.769000, \"AREAWATER\": 1.451000, \"POP_CL\": 6, \"POP2000\": 11783, \"WHITE\": 11455, \"BLACK\": 41, \"AMERI_ES\": 9, \"ASIAN\": 126, \"HAWN_PI\": 1, \"OTHER\": 52, \"MULT_RACE\": 99, \"HISPANIC\": 153, \"MALES\": 5877, \"FEMALES\": 5906, \"AGE_UNDER5\": 669, \"AGE_5_17\": 2049, \"AGE_18_21\": 380, \"AGE_22_29\": 844, \"AGE_30_39\": 1857, \"AGE_40_49\": 2242, \"AGE_50_64\": 2473, \"AGE_65_UP\": 1269, \"MED_AGE\": 40.400000, \"MED_AGE_M\": 40.100000, \"MED_AGE_F\": 40.700000, \"HOUSEHOLDS\": 4553, \"AVE_HH_SZ\": 2.570000, \"HSEHLD_1_M\": 376, \"HSEHLD_1_F\": 418, \"MARHH_CHD\": 1271, \"MARHH_NO_C\": 1880, \"MHH_CHILD\": 51, \"FHH_CHILD\": 113, \"FAMILIES\": 3498, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 4761, \"VACANT\": 208, \"OWNER_OCC\": 3826, \"RENTER_OCC\": 727 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.249484000098477, 43.061407999098179 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Pleasant Prairie\", \"CLASS\": \"village\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"63300\", \"CAPITAL\": \"N\", \"AREALAND\": 33.453000, \"AREAWATER\": 0.126000, \"POP_CL\": 6, \"POP2000\": 16136, \"WHITE\": 15181, \"BLACK\": 234, \"AMERI_ES\": 63, \"ASIAN\": 223, \"HAWN_PI\": 4, \"OTHER\": 167, \"MULT_RACE\": 264, \"HISPANIC\": 544, \"MALES\": 8013, \"FEMALES\": 8123, \"AGE_UNDER5\": 1002, \"AGE_5_17\": 3387, \"AGE_18_21\": 620, \"AGE_22_29\": 1279, \"AGE_30_39\": 2704, \"AGE_40_49\": 2845, \"AGE_50_64\": 2584, \"AGE_65_UP\": 1715, \"MED_AGE\": 37.000000, \"MED_AGE_M\": 36.400000, \"MED_AGE_F\": 37.500000, \"HOUSEHOLDS\": 5819, \"AVE_HH_SZ\": 2.730000, \"HSEHLD_1_M\": 518, \"HSEHLD_1_F\": 587, \"MARHH_CHD\": 1814, \"MARHH_NO_C\": 1971, \"MHH_CHILD\": 120, \"FHH_CHILD\": 219, \"FAMILIES\": 4394, \"AVE_FAM_SZ\": 3.150000, \"HSE_UNITS\": 6050, \"VACANT\": 231, \"OWNER_OCC\": 4805, \"RENTER_OCC\": 1014 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.870229000239192, 42.53881999861121 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Plover\", \"CLASS\": \"village\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"63525\", \"CAPITAL\": \"N\", \"AREALAND\": 8.496000, \"AREAWATER\": 0.384000, \"POP_CL\": 6, \"POP2000\": 10520, \"WHITE\": 10185, \"BLACK\": 45, \"AMERI_ES\": 44, \"ASIAN\": 100, \"HAWN_PI\": 4, \"OTHER\": 43, \"MULT_RACE\": 99, \"HISPANIC\": 142, \"MALES\": 5217, \"FEMALES\": 5303, \"AGE_UNDER5\": 786, \"AGE_5_17\": 2245, \"AGE_18_21\": 534, \"AGE_22_29\": 1254, \"AGE_30_39\": 1683, \"AGE_40_49\": 1824, \"AGE_50_64\": 1511, \"AGE_65_UP\": 683, \"MED_AGE\": 32.900000, \"MED_AGE_M\": 32.400000, \"MED_AGE_F\": 33.300000, \"HOUSEHOLDS\": 3985, \"AVE_HH_SZ\": 2.630000, \"HSEHLD_1_M\": 414, \"HSEHLD_1_F\": 416, \"MARHH_CHD\": 1255, \"MARHH_NO_C\": 1131, \"MHH_CHILD\": 85, \"FHH_CHILD\": 234, \"FAMILIES\": 2846, \"AVE_FAM_SZ\": 3.110000, \"HSE_UNITS\": 4133, \"VACANT\": 148, \"OWNER_OCC\": 2676, \"RENTER_OCC\": 1309 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.543706999996289, 44.466182999852492 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Port Washington\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"64450\", \"CAPITAL\": \"N\", \"AREALAND\": 3.846000, \"AREAWATER\": 0.105000, \"POP_CL\": 6, \"POP2000\": 10467, \"WHITE\": 10150, \"BLACK\": 73, \"AMERI_ES\": 39, \"ASIAN\": 49, \"HAWN_PI\": 0, \"OTHER\": 63, \"MULT_RACE\": 93, \"HISPANIC\": 168, \"MALES\": 5185, \"FEMALES\": 5282, \"AGE_UNDER5\": 722, \"AGE_5_17\": 1977, \"AGE_18_21\": 463, \"AGE_22_29\": 1078, \"AGE_30_39\": 1725, \"AGE_40_49\": 1709, \"AGE_50_64\": 1461, \"AGE_65_UP\": 1332, \"MED_AGE\": 36.000000, \"MED_AGE_M\": 35.000000, \"MED_AGE_F\": 37.000000, \"HOUSEHOLDS\": 4071, \"AVE_HH_SZ\": 2.480000, \"HSEHLD_1_M\": 449, \"HSEHLD_1_F\": 624, \"MARHH_CHD\": 1102, \"MARHH_NO_C\": 1202, \"MHH_CHILD\": 80, \"FHH_CHILD\": 219, \"FAMILIES\": 2755, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 4252, \"VACANT\": 181, \"OWNER_OCC\": 2577, \"RENTER_OCC\": 1494 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.881053000313003, 43.393249998574795 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Racine\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"66000\", \"CAPITAL\": \"N\", \"AREALAND\": 15.539000, \"AREAWATER\": 3.130000, \"POP_CL\": 7, \"POP2000\": 81855, \"WHITE\": 56408, \"BLACK\": 16634, \"AMERI_ES\": 328, \"ASIAN\": 497, \"HAWN_PI\": 42, \"OTHER\": 5841, \"MULT_RACE\": 2105, \"HISPANIC\": 11422, \"MALES\": 39869, \"FEMALES\": 41986, \"AGE_UNDER5\": 6565, \"AGE_5_17\": 16965, \"AGE_18_21\": 4868, \"AGE_22_29\": 8923, \"AGE_30_39\": 12432, \"AGE_40_49\": 11732, \"AGE_50_64\": 10345, \"AGE_65_UP\": 10025, \"MED_AGE\": 33.100000, \"MED_AGE_M\": 31.400000, \"MED_AGE_F\": 34.700000, \"HOUSEHOLDS\": 31449, \"AVE_HH_SZ\": 2.540000, \"HSEHLD_1_M\": 4073, \"HSEHLD_1_F\": 5172, \"MARHH_CHD\": 6040, \"MARHH_NO_C\": 7231, \"MHH_CHILD\": 831, \"FHH_CHILD\": 3794, \"FAMILIES\": 20405, \"AVE_FAM_SZ\": 3.150000, \"HSE_UNITS\": 33414, \"VACANT\": 1965, \"OWNER_OCC\": 18972, \"RENTER_OCC\": 12477 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.805873000303734, 42.726051998491542 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"River Falls\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"68275\", \"CAPITAL\": \"N\", \"AREALAND\": 4.976000, \"AREAWATER\": 0.044000, \"POP_CL\": 6, \"POP2000\": 12560, \"WHITE\": 12129, \"BLACK\": 66, \"AMERI_ES\": 45, \"ASIAN\": 128, \"HAWN_PI\": 11, \"OTHER\": 40, \"MULT_RACE\": 141, \"HISPANIC\": 119, \"MALES\": 5715, \"FEMALES\": 6845, \"AGE_UNDER5\": 596, \"AGE_5_17\": 1654, \"AGE_18_21\": 3223, \"AGE_22_29\": 2074, \"AGE_30_39\": 1376, \"AGE_40_49\": 1409, \"AGE_50_64\": 1151, \"AGE_65_UP\": 1077, \"MED_AGE\": 23.600000, \"MED_AGE_M\": 24.500000, \"MED_AGE_F\": 22.900000, \"HOUSEHOLDS\": 4269, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 485, \"HSEHLD_1_F\": 699, \"MARHH_CHD\": 913, \"MARHH_NO_C\": 909, \"MHH_CHILD\": 66, \"FHH_CHILD\": 264, \"FAMILIES\": 2337, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 4345, \"VACANT\": 76, \"OWNER_OCC\": 2177, \"RENTER_OCC\": 2092 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -92.625097, 44.858700999994021 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sheboygan\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"72975\", \"CAPITAL\": \"N\", \"AREALAND\": 13.907000, \"AREAWATER\": 0.146000, \"POP_CL\": 7, \"POP2000\": 50792, \"WHITE\": 44507, \"BLACK\": 436, \"AMERI_ES\": 242, \"ASIAN\": 3290, \"HAWN_PI\": 18, \"OTHER\": 1447, \"MULT_RACE\": 852, \"HISPANIC\": 3034, \"MALES\": 24874, \"FEMALES\": 25918, \"AGE_UNDER5\": 3566, \"AGE_5_17\": 9457, \"AGE_18_21\": 2608, \"AGE_22_29\": 5748, \"AGE_30_39\": 7667, \"AGE_40_49\": 7134, \"AGE_50_64\": 6600, \"AGE_65_UP\": 8012, \"MED_AGE\": 35.400000, \"MED_AGE_M\": 33.800000, \"MED_AGE_F\": 37.000000, \"HOUSEHOLDS\": 20779, \"AVE_HH_SZ\": 2.390000, \"HSEHLD_1_M\": 2925, \"HSEHLD_1_F\": 3773, \"MARHH_CHD\": 4368, \"MARHH_NO_C\": 5654, \"MHH_CHILD\": 477, \"FHH_CHILD\": 1331, \"FAMILIES\": 12795, \"AVE_FAM_SZ\": 3.050000, \"HSE_UNITS\": 21762, \"VACANT\": 983, \"OWNER_OCC\": 12698, \"RENTER_OCC\": 8081 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.725013000493973, 43.749693998271383 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Shorewood\", \"CLASS\": \"village\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"73725\", \"CAPITAL\": \"N\", \"AREALAND\": 1.600000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 13763, \"WHITE\": 12584, \"BLACK\": 332, \"AMERI_ES\": 32, \"ASIAN\": 439, \"HAWN_PI\": 5, \"OTHER\": 116, \"MULT_RACE\": 255, \"HISPANIC\": 345, \"MALES\": 6328, \"FEMALES\": 7435, \"AGE_UNDER5\": 668, \"AGE_5_17\": 2219, \"AGE_18_21\": 534, \"AGE_22_29\": 1784, \"AGE_30_39\": 2110, \"AGE_40_49\": 2283, \"AGE_50_64\": 2167, \"AGE_65_UP\": 1998, \"MED_AGE\": 37.800000, \"MED_AGE_M\": 36.100000, \"MED_AGE_F\": 39.600000, \"HOUSEHOLDS\": 6539, \"AVE_HH_SZ\": 2.080000, \"HSEHLD_1_M\": 873, \"HSEHLD_1_F\": 1712, \"MARHH_CHD\": 1236, \"MARHH_NO_C\": 1434, \"MHH_CHILD\": 74, \"FHH_CHILD\": 345, \"FAMILIES\": 3328, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 6696, \"VACANT\": 157, \"OWNER_OCC\": 3110, \"RENTER_OCC\": 3429 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.886333000280729, 43.092060998601994 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"South Milwaukee\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"75125\", \"CAPITAL\": \"N\", \"AREALAND\": 4.779000, \"AREAWATER\": 0.007000, \"POP_CL\": 6, \"POP2000\": 21256, \"WHITE\": 20153, \"BLACK\": 222, \"AMERI_ES\": 123, \"ASIAN\": 147, \"HAWN_PI\": 9, \"OTHER\": 289, \"MULT_RACE\": 313, \"HISPANIC\": 852, \"MALES\": 10325, \"FEMALES\": 10931, \"AGE_UNDER5\": 1295, \"AGE_5_17\": 3795, \"AGE_18_21\": 1027, \"AGE_22_29\": 1888, \"AGE_30_39\": 3338, \"AGE_40_49\": 3503, \"AGE_50_64\": 2881, \"AGE_65_UP\": 3529, \"MED_AGE\": 38.100000, \"MED_AGE_M\": 37.300000, \"MED_AGE_F\": 39.000000, \"HOUSEHOLDS\": 8694, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 1197, \"HSEHLD_1_F\": 1418, \"MARHH_CHD\": 1882, \"MARHH_NO_C\": 2451, \"MHH_CHILD\": 184, \"FHH_CHILD\": 557, \"FAMILIES\": 5620, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 9122, \"VACANT\": 428, \"OWNER_OCC\": 5380, \"RENTER_OCC\": 3314 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.864030000279314, 42.911015998577014 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Stevens Point\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"77200\", \"CAPITAL\": \"N\", \"AREALAND\": 15.314000, \"AREAWATER\": 0.912000, \"POP_CL\": 6, \"POP2000\": 24551, \"WHITE\": 22718, \"BLACK\": 115, \"AMERI_ES\": 112, \"ASIAN\": 1174, \"HAWN_PI\": 23, \"OTHER\": 118, \"MULT_RACE\": 291, \"HISPANIC\": 395, \"MALES\": 11812, \"FEMALES\": 12739, \"AGE_UNDER5\": 1236, \"AGE_5_17\": 3242, \"AGE_18_21\": 5052, \"AGE_22_29\": 4222, \"AGE_30_39\": 2804, \"AGE_40_49\": 2583, \"AGE_50_64\": 2432, \"AGE_65_UP\": 2980, \"MED_AGE\": 25.600000, \"MED_AGE_M\": 25.000000, \"MED_AGE_F\": 26.300000, \"HOUSEHOLDS\": 9305, \"AVE_HH_SZ\": 2.290000, \"HSEHLD_1_M\": 1263, \"HSEHLD_1_F\": 1841, \"MARHH_CHD\": 1479, \"MARHH_NO_C\": 2038, \"MHH_CHILD\": 171, \"FHH_CHILD\": 548, \"FAMILIES\": 4652, \"AVE_FAM_SZ\": 2.950000, \"HSE_UNITS\": 9749, \"VACANT\": 444, \"OWNER_OCC\": 4869, \"RENTER_OCC\": 4436 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.560320999996449, 44.52303599985617 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Stoughton\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"77675\", \"CAPITAL\": \"N\", \"AREALAND\": 3.964000, \"AREAWATER\": 0.144000, \"POP_CL\": 6, \"POP2000\": 12354, \"WHITE\": 11941, \"BLACK\": 114, \"AMERI_ES\": 36, \"ASIAN\": 87, \"HAWN_PI\": 2, \"OTHER\": 44, \"MULT_RACE\": 130, \"HISPANIC\": 153, \"MALES\": 5830, \"FEMALES\": 6524, \"AGE_UNDER5\": 966, \"AGE_5_17\": 2525, \"AGE_18_21\": 453, \"AGE_22_29\": 1150, \"AGE_30_39\": 2185, \"AGE_40_49\": 1923, \"AGE_50_64\": 1383, \"AGE_65_UP\": 1769, \"MED_AGE\": 35.200000, \"MED_AGE_M\": 33.900000, \"MED_AGE_F\": 36.200000, \"HOUSEHOLDS\": 4734, \"AVE_HH_SZ\": 2.520000, \"HSEHLD_1_M\": 477, \"HSEHLD_1_F\": 764, \"MARHH_CHD\": 1311, \"MARHH_NO_C\": 1227, \"MHH_CHILD\": 116, \"FHH_CHILD\": 349, \"FAMILIES\": 3185, \"AVE_FAM_SZ\": 3.060000, \"HSE_UNITS\": 4890, \"VACANT\": 156, \"OWNER_OCC\": 3071, \"RENTER_OCC\": 1663 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.224368999987689, 42.92108899976958 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sun Prairie\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"78600\", \"CAPITAL\": \"N\", \"AREALAND\": 9.546000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 20369, \"WHITE\": 18877, \"BLACK\": 631, \"AMERI_ES\": 60, \"ASIAN\": 273, \"HAWN_PI\": 7, \"OTHER\": 199, \"MULT_RACE\": 322, \"HISPANIC\": 555, \"MALES\": 9804, \"FEMALES\": 10565, \"AGE_UNDER5\": 1666, \"AGE_5_17\": 4146, \"AGE_18_21\": 961, \"AGE_22_29\": 2441, \"AGE_30_39\": 3499, \"AGE_40_49\": 3193, \"AGE_50_64\": 2565, \"AGE_65_UP\": 1898, \"MED_AGE\": 32.900000, \"MED_AGE_M\": 31.800000, \"MED_AGE_F\": 33.900000, \"HOUSEHOLDS\": 7881, \"AVE_HH_SZ\": 2.560000, \"HSEHLD_1_M\": 705, \"HSEHLD_1_F\": 1168, \"MARHH_CHD\": 2195, \"MARHH_NO_C\": 2109, \"MHH_CHILD\": 180, \"FHH_CHILD\": 643, \"FAMILIES\": 5435, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 8198, \"VACANT\": 317, \"OWNER_OCC\": 4792, \"RENTER_OCC\": 3089 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.232952999990061, 43.188027999769801 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Superior\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"78650\", \"CAPITAL\": \"N\", \"AREALAND\": 36.939000, \"AREAWATER\": 18.492000, \"POP_CL\": 6, \"POP2000\": 27368, \"WHITE\": 25797, \"BLACK\": 186, \"AMERI_ES\": 611, \"ASIAN\": 230, \"HAWN_PI\": 10, \"OTHER\": 72, \"MULT_RACE\": 462, \"HISPANIC\": 226, \"MALES\": 13140, \"FEMALES\": 14228, \"AGE_UNDER5\": 1651, \"AGE_5_17\": 4560, \"AGE_18_21\": 2177, \"AGE_22_29\": 3229, \"AGE_30_39\": 3659, \"AGE_40_49\": 4146, \"AGE_50_64\": 3832, \"AGE_65_UP\": 4114, \"MED_AGE\": 35.900000, \"MED_AGE_M\": 34.100000, \"MED_AGE_F\": 37.600000, \"HOUSEHOLDS\": 11609, \"AVE_HH_SZ\": 2.260000, \"HSEHLD_1_M\": 1631, \"HSEHLD_1_F\": 2340, \"MARHH_CHD\": 1981, \"MARHH_NO_C\": 2810, \"MHH_CHILD\": 273, \"FHH_CHILD\": 981, \"FAMILIES\": 6696, \"AVE_FAM_SZ\": 2.910000, \"HSE_UNITS\": 12196, \"VACANT\": 587, \"OWNER_OCC\": 7159, \"RENTER_OCC\": 4450 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -92.085255000000117, 46.706881999992085 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Two Rivers\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"81325\", \"CAPITAL\": \"N\", \"AREALAND\": 5.667000, \"AREAWATER\": 0.407000, \"POP_CL\": 6, \"POP2000\": 12639, \"WHITE\": 12100, \"BLACK\": 20, \"AMERI_ES\": 56, \"ASIAN\": 281, \"HAWN_PI\": 7, \"OTHER\": 69, \"MULT_RACE\": 106, \"HISPANIC\": 170, \"MALES\": 6212, \"FEMALES\": 6427, \"AGE_UNDER5\": 691, \"AGE_5_17\": 2540, \"AGE_18_21\": 572, \"AGE_22_29\": 1072, \"AGE_30_39\": 1802, \"AGE_40_49\": 1919, \"AGE_50_64\": 1915, \"AGE_65_UP\": 2128, \"MED_AGE\": 38.200000, \"MED_AGE_M\": 36.500000, \"MED_AGE_F\": 40.100000, \"HOUSEHOLDS\": 5221, \"AVE_HH_SZ\": 2.400000, \"HSEHLD_1_M\": 624, \"HSEHLD_1_F\": 911, \"MARHH_CHD\": 1176, \"MARHH_NO_C\": 1581, \"MHH_CHILD\": 117, \"FHH_CHILD\": 310, \"FAMILIES\": 3413, \"AVE_FAM_SZ\": 2.980000, \"HSE_UNITS\": 5547, \"VACANT\": 326, \"OWNER_OCC\": 3810, \"RENTER_OCC\": 1411 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.576420000739589, 44.154927997928702 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Watertown\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"83975\", \"CAPITAL\": \"N\", \"AREALAND\": 10.940000, \"AREAWATER\": 0.387000, \"POP_CL\": 6, \"POP2000\": 21598, \"WHITE\": 20712, \"BLACK\": 55, \"AMERI_ES\": 84, \"ASIAN\": 131, \"HAWN_PI\": 7, \"OTHER\": 366, \"MULT_RACE\": 243, \"HISPANIC\": 1067, \"MALES\": 10457, \"FEMALES\": 11141, \"AGE_UNDER5\": 1460, \"AGE_5_17\": 4151, \"AGE_18_21\": 1374, \"AGE_22_29\": 2294, \"AGE_30_39\": 3268, \"AGE_40_49\": 3076, \"AGE_50_64\": 2795, \"AGE_65_UP\": 3180, \"MED_AGE\": 34.700000, \"MED_AGE_M\": 33.300000, \"MED_AGE_F\": 36.400000, \"HOUSEHOLDS\": 8022, \"AVE_HH_SZ\": 2.550000, \"HSEHLD_1_M\": 763, \"HSEHLD_1_F\": 1285, \"MARHH_CHD\": 2116, \"MARHH_NO_C\": 2389, \"MHH_CHILD\": 184, \"FHH_CHILD\": 498, \"FAMILIES\": 5565, \"AVE_FAM_SZ\": 3.070000, \"HSE_UNITS\": 8330, \"VACANT\": 308, \"OWNER_OCC\": 5091, \"RENTER_OCC\": 2931 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.723774000012057, 43.19306599951372 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Waukesha\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"84250\", \"CAPITAL\": \"N\", \"AREALAND\": 21.605000, \"AREAWATER\": 0.073000, \"POP_CL\": 7, \"POP2000\": 64825, \"WHITE\": 59133, \"BLACK\": 831, \"AMERI_ES\": 216, \"ASIAN\": 1407, \"HAWN_PI\": 23, \"OTHER\": 2144, \"MULT_RACE\": 1071, \"HISPANIC\": 5563, \"MALES\": 31683, \"FEMALES\": 33142, \"AGE_UNDER5\": 4792, \"AGE_5_17\": 11212, \"AGE_18_21\": 3985, \"AGE_22_29\": 8617, \"AGE_30_39\": 11018, \"AGE_40_49\": 9661, \"AGE_50_64\": 8646, \"AGE_65_UP\": 6894, \"MED_AGE\": 33.400000, \"MED_AGE_M\": 32.300000, \"MED_AGE_F\": 34.500000, \"HOUSEHOLDS\": 25663, \"AVE_HH_SZ\": 2.430000, \"HSEHLD_1_M\": 3216, \"HSEHLD_1_F\": 4239, \"MARHH_CHD\": 6175, \"MARHH_NO_C\": 6697, \"MHH_CHILD\": 492, \"FHH_CHILD\": 1671, \"FAMILIES\": 16288, \"AVE_FAM_SZ\": 3.040000, \"HSE_UNITS\": 26856, \"VACANT\": 1193, \"OWNER_OCC\": 14508, \"RENTER_OCC\": 11155 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.237436000099663, 43.009945999086611 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Waupun\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"84425\", \"CAPITAL\": \"N\", \"AREALAND\": 3.688000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10718, \"WHITE\": 9224, \"BLACK\": 1266, \"AMERI_ES\": 97, \"ASIAN\": 28, \"HAWN_PI\": 5, \"OTHER\": 55, \"MULT_RACE\": 43, \"HISPANIC\": 304, \"MALES\": 6430, \"FEMALES\": 4288, \"AGE_UNDER5\": 524, \"AGE_5_17\": 1613, \"AGE_18_21\": 684, \"AGE_22_29\": 1576, \"AGE_30_39\": 1941, \"AGE_40_49\": 1669, \"AGE_50_64\": 1273, \"AGE_65_UP\": 1438, \"MED_AGE\": 35.000000, \"MED_AGE_M\": 33.300000, \"MED_AGE_F\": 38.600000, \"HOUSEHOLDS\": 3351, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 387, \"HSEHLD_1_F\": 604, \"MARHH_CHD\": 782, \"MARHH_NO_C\": 1031, \"MHH_CHILD\": 72, \"FHH_CHILD\": 224, \"FAMILIES\": 2230, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 3512, \"VACANT\": 161, \"OWNER_OCC\": 2295, \"RENTER_OCC\": 1056 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.735835000020998, 43.631576999512554 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wausau\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"84475\", \"CAPITAL\": \"N\", \"AREALAND\": 16.487000, \"AREAWATER\": 1.265000, \"POP_CL\": 6, \"POP2000\": 38426, \"WHITE\": 33010, \"BLACK\": 208, \"AMERI_ES\": 228, \"ASIAN\": 4383, \"HAWN_PI\": 15, \"OTHER\": 117, \"MULT_RACE\": 465, \"HISPANIC\": 398, \"MALES\": 18461, \"FEMALES\": 19965, \"AGE_UNDER5\": 2394, \"AGE_5_17\": 7362, \"AGE_18_21\": 2194, \"AGE_22_29\": 3954, \"AGE_30_39\": 5268, \"AGE_40_49\": 5499, \"AGE_50_64\": 5173, \"AGE_65_UP\": 6582, \"MED_AGE\": 36.500000, \"MED_AGE_M\": 34.100000, \"MED_AGE_F\": 38.900000, \"HOUSEHOLDS\": 15678, \"AVE_HH_SZ\": 2.370000, \"HSEHLD_1_M\": 1993, \"HSEHLD_1_F\": 3281, \"MARHH_CHD\": 3099, \"MARHH_NO_C\": 4215, \"MHH_CHILD\": 324, \"FHH_CHILD\": 939, \"FAMILIES\": 9336, \"AVE_FAM_SZ\": 3.080000, \"HSE_UNITS\": 16668, \"VACANT\": 990, \"OWNER_OCC\": 9676, \"RENTER_OCC\": 6002 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.638820999997776, 44.961167999871719 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wauwatosa\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"84675\", \"CAPITAL\": \"N\", \"AREALAND\": 13.239000, \"AREAWATER\": 0.003000, \"POP_CL\": 6, \"POP2000\": 47271, \"WHITE\": 44422, \"BLACK\": 965, \"AMERI_ES\": 128, \"ASIAN\": 918, \"HAWN_PI\": 31, \"OTHER\": 254, \"MULT_RACE\": 553, \"HISPANIC\": 813, \"MALES\": 21900, \"FEMALES\": 25371, \"AGE_UNDER5\": 3053, \"AGE_5_17\": 7961, \"AGE_18_21\": 1354, \"AGE_22_29\": 4454, \"AGE_30_39\": 7501, \"AGE_40_49\": 7729, \"AGE_50_64\": 6628, \"AGE_65_UP\": 8591, \"MED_AGE\": 39.100000, \"MED_AGE_M\": 36.900000, \"MED_AGE_F\": 41.000000, \"HOUSEHOLDS\": 20388, \"AVE_HH_SZ\": 2.270000, \"HSEHLD_1_M\": 2208, \"HSEHLD_1_F\": 4697, \"MARHH_CHD\": 4677, \"MARHH_NO_C\": 5516, \"MHH_CHILD\": 239, \"FHH_CHILD\": 856, \"FAMILIES\": 12314, \"AVE_FAM_SZ\": 2.960000, \"HSE_UNITS\": 20917, \"VACANT\": 529, \"OWNER_OCC\": 13819, \"RENTER_OCC\": 6569 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.026162000191931, 43.058861998815743 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"West Allis\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"85300\", \"CAPITAL\": \"N\", \"AREALAND\": 11.348000, \"AREAWATER\": 0.023000, \"POP_CL\": 7, \"POP2000\": 61254, \"WHITE\": 57600, \"BLACK\": 818, \"AMERI_ES\": 428, \"ASIAN\": 812, \"HAWN_PI\": 12, \"OTHER\": 720, \"MULT_RACE\": 864, \"HISPANIC\": 2155, \"MALES\": 29519, \"FEMALES\": 31735, \"AGE_UNDER5\": 3560, \"AGE_5_17\": 9607, \"AGE_18_21\": 2765, \"AGE_22_29\": 6981, \"AGE_30_39\": 10112, \"AGE_40_49\": 9500, \"AGE_50_64\": 8165, \"AGE_65_UP\": 10564, \"MED_AGE\": 37.800000, \"MED_AGE_M\": 36.300000, \"MED_AGE_F\": 39.400000, \"HOUSEHOLDS\": 27604, \"AVE_HH_SZ\": 2.190000, \"HSEHLD_1_M\": 4509, \"HSEHLD_1_F\": 5786, \"MARHH_CHD\": 4744, \"MARHH_NO_C\": 6617, \"MHH_CHILD\": 545, \"FHH_CHILD\": 1750, \"FAMILIES\": 15367, \"AVE_FAM_SZ\": 2.920000, \"HSE_UNITS\": 28708, \"VACANT\": 1104, \"OWNER_OCC\": 16031, \"RENTER_OCC\": 11573 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.018353000192235, 43.008113998807367 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"West Bend\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"85350\", \"CAPITAL\": \"N\", \"AREALAND\": 12.691000, \"AREAWATER\": 0.238000, \"POP_CL\": 6, \"POP2000\": 28152, \"WHITE\": 27391, \"BLACK\": 96, \"AMERI_ES\": 119, \"ASIAN\": 148, \"HAWN_PI\": 2, \"OTHER\": 173, \"MULT_RACE\": 223, \"HISPANIC\": 519, \"MALES\": 13574, \"FEMALES\": 14578, \"AGE_UNDER5\": 2031, \"AGE_5_17\": 5147, \"AGE_18_21\": 1374, \"AGE_22_29\": 3106, \"AGE_30_39\": 4612, \"AGE_40_49\": 3955, \"AGE_50_64\": 3860, \"AGE_65_UP\": 4067, \"MED_AGE\": 35.300000, \"MED_AGE_M\": 33.800000, \"MED_AGE_F\": 36.900000, \"HOUSEHOLDS\": 11375, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 1127, \"HSEHLD_1_F\": 2005, \"MARHH_CHD\": 2799, \"MARHH_NO_C\": 3269, \"MHH_CHILD\": 228, \"FHH_CHILD\": 691, \"FAMILIES\": 7522, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 11926, \"VACANT\": 551, \"OWNER_OCC\": 7080, \"RENTER_OCC\": 4295 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.182933000142896, 43.421430999004997 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Weston\", \"CLASS\": \"village\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"86025\", \"CAPITAL\": \"N\", \"AREALAND\": 21.297000, \"AREAWATER\": 0.026000, \"POP_CL\": 6, \"POP2000\": 12079, \"WHITE\": 11247, \"BLACK\": 36, \"AMERI_ES\": 48, \"ASIAN\": 590, \"HAWN_PI\": 2, \"OTHER\": 39, \"MULT_RACE\": 117, \"HISPANIC\": 84, \"MALES\": 5988, \"FEMALES\": 6091, \"AGE_UNDER5\": 994, \"AGE_5_17\": 2440, \"AGE_18_21\": 587, \"AGE_22_29\": 1576, \"AGE_30_39\": 2050, \"AGE_40_49\": 1756, \"AGE_50_64\": 1572, \"AGE_65_UP\": 1104, \"MED_AGE\": 32.200000, \"MED_AGE_M\": 31.600000, \"MED_AGE_F\": 32.800000, \"HOUSEHOLDS\": 4572, \"AVE_HH_SZ\": 2.610000, \"HSEHLD_1_M\": 509, \"HSEHLD_1_F\": 505, \"MARHH_CHD\": 1287, \"MARHH_NO_C\": 1298, \"MHH_CHILD\": 123, \"FHH_CHILD\": 328, \"FAMILIES\": 3214, \"AVE_FAM_SZ\": 3.100000, \"HSE_UNITS\": 4806, \"VACANT\": 234, \"OWNER_OCC\": 3056, \"RENTER_OCC\": 1516 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.567542999998111, 44.903767999855674 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Whitefish Bay\", \"CLASS\": \"village\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"86700\", \"CAPITAL\": \"N\", \"AREALAND\": 2.142000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 14163, \"WHITE\": 13467, \"BLACK\": 139, \"AMERI_ES\": 10, \"ASIAN\": 366, \"HAWN_PI\": 8, \"OTHER\": 37, \"MULT_RACE\": 136, \"HISPANIC\": 221, \"MALES\": 6800, \"FEMALES\": 7363, \"AGE_UNDER5\": 1119, \"AGE_5_17\": 3048, \"AGE_18_21\": 327, \"AGE_22_29\": 784, \"AGE_30_39\": 2232, \"AGE_40_49\": 2701, \"AGE_50_64\": 2275, \"AGE_65_UP\": 1677, \"MED_AGE\": 38.200000, \"MED_AGE_M\": 36.800000, \"MED_AGE_F\": 39.500000, \"HOUSEHOLDS\": 5457, \"AVE_HH_SZ\": 2.590000, \"HSEHLD_1_M\": 403, \"HSEHLD_1_F\": 847, \"MARHH_CHD\": 1912, \"MARHH_NO_C\": 1620, \"MHH_CHILD\": 58, \"FHH_CHILD\": 219, \"FAMILIES\": 4019, \"AVE_FAM_SZ\": 3.090000, \"HSE_UNITS\": 5553, \"VACANT\": 96, \"OWNER_OCC\": 4617, \"RENTER_OCC\": 840 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -87.900762000272465, 43.111710998624012 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Whitewater\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"86925\", \"CAPITAL\": \"N\", \"AREALAND\": 6.986000, \"AREAWATER\": 0.293000, \"POP_CL\": 6, \"POP2000\": 13437, \"WHITE\": 12395, \"BLACK\": 315, \"AMERI_ES\": 36, \"ASIAN\": 197, \"HAWN_PI\": 2, \"OTHER\": 333, \"MULT_RACE\": 159, \"HISPANIC\": 873, \"MALES\": 6569, \"FEMALES\": 6868, \"AGE_UNDER5\": 427, \"AGE_5_17\": 1229, \"AGE_18_21\": 5224, \"AGE_22_29\": 2617, \"AGE_30_39\": 926, \"AGE_40_49\": 921, \"AGE_50_64\": 894, \"AGE_65_UP\": 1199, \"MED_AGE\": 21.900000, \"MED_AGE_M\": 21.900000, \"MED_AGE_F\": 21.800000, \"HOUSEHOLDS\": 4132, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 567, \"HSEHLD_1_F\": 784, \"MARHH_CHD\": 542, \"MARHH_NO_C\": 717, \"MHH_CHILD\": 63, \"FHH_CHILD\": 193, \"FAMILIES\": 1686, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 4340, \"VACANT\": 208, \"OWNER_OCC\": 1495, \"RENTER_OCC\": 2637 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -88.736119000002674, 42.834949999529698 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wisconsin Rapids\", \"CLASS\": \"city\", \"ST\": \"WI\", \"STFIPS\": \"55\", \"PLACEFIP\": \"88200\", \"CAPITAL\": \"N\", \"AREALAND\": 13.263000, \"AREAWATER\": 0.851000, \"POP_CL\": 6, \"POP2000\": 18435, \"WHITE\": 17337, \"BLACK\": 63, \"AMERI_ES\": 148, \"ASIAN\": 638, \"HAWN_PI\": 3, \"OTHER\": 68, \"MULT_RACE\": 178, \"HISPANIC\": 242, \"MALES\": 8736, \"FEMALES\": 9699, \"AGE_UNDER5\": 1238, \"AGE_5_17\": 3321, \"AGE_18_21\": 898, \"AGE_22_29\": 1884, \"AGE_30_39\": 2520, \"AGE_40_49\": 2515, \"AGE_50_64\": 2483, \"AGE_65_UP\": 3576, \"MED_AGE\": 37.600000, \"MED_AGE_M\": 35.400000, \"MED_AGE_F\": 39.800000, \"HOUSEHOLDS\": 7970, \"AVE_HH_SZ\": 2.260000, \"HSEHLD_1_M\": 1051, \"HSEHLD_1_F\": 1721, \"MARHH_CHD\": 1468, \"MARHH_NO_C\": 2195, \"MHH_CHILD\": 173, \"FHH_CHILD\": 589, \"FAMILIES\": 4780, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 8426, \"VACANT\": 456, \"OWNER_OCC\": 5135, \"RENTER_OCC\": 2835 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -89.823077999995746, 44.386804999909053 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Beckley\", \"CLASS\": \"city\", \"ST\": \"WV\", \"STFIPS\": \"54\", \"PLACEFIP\": \"05332\", \"CAPITAL\": \"N\", \"AREALAND\": 9.202000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 17254, \"WHITE\": 12705, \"BLACK\": 3949, \"AMERI_ES\": 25, \"ASIAN\": 326, \"HAWN_PI\": 3, \"OTHER\": 36, \"MULT_RACE\": 210, \"HISPANIC\": 128, \"MALES\": 7775, \"FEMALES\": 9479, \"AGE_UNDER5\": 947, \"AGE_5_17\": 2820, \"AGE_18_21\": 835, \"AGE_22_29\": 1563, \"AGE_30_39\": 2000, \"AGE_40_49\": 2802, \"AGE_50_64\": 2807, \"AGE_65_UP\": 3480, \"MED_AGE\": 41.600000, \"MED_AGE_M\": 39.400000, \"MED_AGE_F\": 43.500000, \"HOUSEHOLDS\": 7651, \"AVE_HH_SZ\": 2.180000, \"HSEHLD_1_M\": 927, \"HSEHLD_1_F\": 1795, \"MARHH_CHD\": 1117, \"MARHH_NO_C\": 2011, \"MHH_CHILD\": 103, \"FHH_CHILD\": 697, \"FAMILIES\": 4591, \"AVE_FAM_SZ\": 2.830000, \"HSE_UNITS\": 8731, \"VACANT\": 1080, \"OWNER_OCC\": 4842, \"RENTER_OCC\": 2809 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.183193964985549, 37.779763906930619 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Bluefield\", \"CLASS\": \"city\", \"ST\": \"WV\", \"STFIPS\": \"54\", \"PLACEFIP\": \"08524\", \"CAPITAL\": \"N\", \"AREALAND\": 8.732000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 11451, \"WHITE\": 8684, \"BLACK\": 2535, \"AMERI_ES\": 14, \"ASIAN\": 64, \"HAWN_PI\": 1, \"OTHER\": 24, \"MULT_RACE\": 129, \"HISPANIC\": 60, \"MALES\": 5241, \"FEMALES\": 6210, \"AGE_UNDER5\": 660, \"AGE_5_17\": 1798, \"AGE_18_21\": 597, \"AGE_22_29\": 1049, \"AGE_30_39\": 1278, \"AGE_40_49\": 1713, \"AGE_50_64\": 1893, \"AGE_65_UP\": 2463, \"MED_AGE\": 42.200000, \"MED_AGE_M\": 39.800000, \"MED_AGE_F\": 44.300000, \"HOUSEHOLDS\": 5038, \"AVE_HH_SZ\": 2.230000, \"HSEHLD_1_M\": 615, \"HSEHLD_1_F\": 1144, \"MARHH_CHD\": 778, \"MARHH_NO_C\": 1416, \"MHH_CHILD\": 76, \"FHH_CHILD\": 391, \"FAMILIES\": 3080, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 5966, \"VACANT\": 928, \"OWNER_OCC\": 3339, \"RENTER_OCC\": 1699 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.218674892636955, 37.262218911614021 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Charleston\", \"CLASS\": \"city\", \"ST\": \"WV\", \"STFIPS\": \"54\", \"PLACEFIP\": \"14600\", \"CAPITAL\": \"Y\", \"AREALAND\": 31.603000, \"AREAWATER\": 1.103000, \"POP_CL\": 7, \"POP2000\": 53421, \"WHITE\": 43072, \"BLACK\": 8048, \"AMERI_ES\": 127, \"ASIAN\": 979, \"HAWN_PI\": 16, \"OTHER\": 158, \"MULT_RACE\": 1021, \"HISPANIC\": 432, \"MALES\": 24906, \"FEMALES\": 28515, \"AGE_UNDER5\": 2961, \"AGE_5_17\": 8082, \"AGE_18_21\": 2595, \"AGE_22_29\": 5304, \"AGE_30_39\": 7076, \"AGE_40_49\": 9008, \"AGE_50_64\": 8972, \"AGE_65_UP\": 9423, \"MED_AGE\": 40.800000, \"MED_AGE_M\": 38.800000, \"MED_AGE_F\": 42.500000, \"HOUSEHOLDS\": 24505, \"AVE_HH_SZ\": 2.110000, \"HSEHLD_1_M\": 3689, \"HSEHLD_1_F\": 5848, \"MARHH_CHD\": 3512, \"MARHH_NO_C\": 6021, \"MHH_CHILD\": 355, \"FHH_CHILD\": 1932, \"FAMILIES\": 13616, \"AVE_FAM_SZ\": 2.820000, \"HSE_UNITS\": 27131, \"VACANT\": 2626, \"OWNER_OCC\": 14230, \"RENTER_OCC\": 10275 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.63329469417765, 38.349496914588833 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Clarksburg\", \"CLASS\": \"city\", \"ST\": \"WV\", \"STFIPS\": \"54\", \"PLACEFIP\": \"15628\", \"CAPITAL\": \"N\", \"AREALAND\": 9.522000, \"AREAWATER\": 0.004000, \"POP_CL\": 6, \"POP2000\": 16743, \"WHITE\": 15715, \"BLACK\": 641, \"AMERI_ES\": 21, \"ASIAN\": 60, \"HAWN_PI\": 8, \"OTHER\": 74, \"MULT_RACE\": 224, \"HISPANIC\": 177, \"MALES\": 7752, \"FEMALES\": 8991, \"AGE_UNDER5\": 934, \"AGE_5_17\": 2598, \"AGE_18_21\": 782, \"AGE_22_29\": 1719, \"AGE_30_39\": 2207, \"AGE_40_49\": 2445, \"AGE_50_64\": 2597, \"AGE_65_UP\": 3461, \"MED_AGE\": 40.500000, \"MED_AGE_M\": 37.300000, \"MED_AGE_F\": 43.300000, \"HOUSEHOLDS\": 7447, \"AVE_HH_SZ\": 2.200000, \"HSEHLD_1_M\": 1006, \"HSEHLD_1_F\": 1724, \"MARHH_CHD\": 1176, \"MARHH_NO_C\": 1919, \"MHH_CHILD\": 165, \"FHH_CHILD\": 523, \"FAMILIES\": 4382, \"AVE_FAM_SZ\": 2.870000, \"HSE_UNITS\": 8662, \"VACANT\": 1215, \"OWNER_OCC\": 4704, \"RENTER_OCC\": 2743 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.336908153002526, 39.283400878133854 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cross Lanes\", \"CLASS\": \"CDP\", \"ST\": \"WV\", \"STFIPS\": \"54\", \"PLACEFIP\": \"19108\", \"CAPITAL\": \"N\", \"AREALAND\": 6.493000, \"AREAWATER\": 0.033000, \"POP_CL\": 6, \"POP2000\": 10353, \"WHITE\": 9694, \"BLACK\": 398, \"AMERI_ES\": 22, \"ASIAN\": 128, \"HAWN_PI\": 2, \"OTHER\": 10, \"MULT_RACE\": 99, \"HISPANIC\": 59, \"MALES\": 4995, \"FEMALES\": 5358, \"AGE_UNDER5\": 598, \"AGE_5_17\": 1892, \"AGE_18_21\": 476, \"AGE_22_29\": 1117, \"AGE_30_39\": 1616, \"AGE_40_49\": 1802, \"AGE_50_64\": 1696, \"AGE_65_UP\": 1156, \"MED_AGE\": 36.900000, \"MED_AGE_M\": 36.100000, \"MED_AGE_F\": 37.700000, \"HOUSEHOLDS\": 4231, \"AVE_HH_SZ\": 2.440000, \"HSEHLD_1_M\": 469, \"HSEHLD_1_F\": 596, \"MARHH_CHD\": 1047, \"MARHH_NO_C\": 1344, \"MHH_CHILD\": 69, \"FHH_CHILD\": 279, \"FAMILIES\": 2990, \"AVE_FAM_SZ\": 2.920000, \"HSE_UNITS\": 4481, \"VACANT\": 250, \"OWNER_OCC\": 3162, \"RENTER_OCC\": 1069 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.775854617670788, 38.429095918119067 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fairmont\", \"CLASS\": \"city\", \"ST\": \"WV\", \"STFIPS\": \"54\", \"PLACEFIP\": \"26452\", \"CAPITAL\": \"N\", \"AREALAND\": 7.831000, \"AREAWATER\": 0.361000, \"POP_CL\": 6, \"POP2000\": 19097, \"WHITE\": 17217, \"BLACK\": 1386, \"AMERI_ES\": 49, \"ASIAN\": 117, \"HAWN_PI\": 4, \"OTHER\": 39, \"MULT_RACE\": 285, \"HISPANIC\": 157, \"MALES\": 8887, \"FEMALES\": 10210, \"AGE_UNDER5\": 916, \"AGE_5_17\": 2598, \"AGE_18_21\": 1868, \"AGE_22_29\": 2149, \"AGE_30_39\": 2161, \"AGE_40_49\": 2537, \"AGE_50_64\": 2978, \"AGE_65_UP\": 3890, \"MED_AGE\": 39.300000, \"MED_AGE_M\": 35.700000, \"MED_AGE_F\": 42.200000, \"HOUSEHOLDS\": 8447, \"AVE_HH_SZ\": 2.160000, \"HSEHLD_1_M\": 1075, \"HSEHLD_1_F\": 1998, \"MARHH_CHD\": 1214, \"MARHH_NO_C\": 2185, \"MHH_CHILD\": 116, \"FHH_CHILD\": 477, \"FAMILIES\": 4673, \"AVE_FAM_SZ\": 2.830000, \"HSE_UNITS\": 9755, \"VACANT\": 1308, \"OWNER_OCC\": 5355, \"RENTER_OCC\": 3092 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.143455531452958, 39.481252874849432 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Huntington\", \"CLASS\": \"city\", \"ST\": \"WV\", \"STFIPS\": \"54\", \"PLACEFIP\": \"39460\", \"CAPITAL\": \"N\", \"AREALAND\": 15.916000, \"AREAWATER\": 2.072000, \"POP_CL\": 7, \"POP2000\": 51475, \"WHITE\": 46127, \"BLACK\": 3858, \"AMERI_ES\": 101, \"ASIAN\": 422, \"HAWN_PI\": 25, \"OTHER\": 155, \"MULT_RACE\": 787, \"HISPANIC\": 437, \"MALES\": 24199, \"FEMALES\": 27276, \"AGE_UNDER5\": 2499, \"AGE_5_17\": 6632, \"AGE_18_21\": 5848, \"AGE_22_29\": 6793, \"AGE_30_39\": 5944, \"AGE_40_49\": 6761, \"AGE_50_64\": 7726, \"AGE_65_UP\": 9272, \"MED_AGE\": 36.700000, \"MED_AGE_M\": 33.800000, \"MED_AGE_F\": 39.600000, \"HOUSEHOLDS\": 22955, \"AVE_HH_SZ\": 2.120000, \"HSEHLD_1_M\": 3445, \"HSEHLD_1_F\": 5195, \"MARHH_CHD\": 2924, \"MARHH_NO_C\": 5551, \"MHH_CHILD\": 300, \"FHH_CHILD\": 1515, \"FAMILIES\": 12230, \"AVE_FAM_SZ\": 2.800000, \"HSE_UNITS\": 25888, \"VACANT\": 2933, \"OWNER_OCC\": 12539, \"RENTER_OCC\": 10416 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -82.433642339310623, 38.41303293674089 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Martinsburg\", \"CLASS\": \"city\", \"ST\": \"WV\", \"STFIPS\": \"54\", \"PLACEFIP\": \"52060\", \"CAPITAL\": \"N\", \"AREALAND\": 5.028000, \"AREAWATER\": 0.017000, \"POP_CL\": 6, \"POP2000\": 14972, \"WHITE\": 12561, \"BLACK\": 1741, \"AMERI_ES\": 60, \"ASIAN\": 94, \"HAWN_PI\": 3, \"OTHER\": 188, \"MULT_RACE\": 325, \"HISPANIC\": 436, \"MALES\": 7135, \"FEMALES\": 7837, \"AGE_UNDER5\": 1051, \"AGE_5_17\": 2405, \"AGE_18_21\": 761, \"AGE_22_29\": 1773, \"AGE_30_39\": 2106, \"AGE_40_49\": 2109, \"AGE_50_64\": 2315, \"AGE_65_UP\": 2452, \"MED_AGE\": 37.000000, \"MED_AGE_M\": 35.700000, \"MED_AGE_F\": 38.400000, \"HOUSEHOLDS\": 6684, \"AVE_HH_SZ\": 2.210000, \"HSEHLD_1_M\": 1049, \"HSEHLD_1_F\": 1467, \"MARHH_CHD\": 932, \"MARHH_NO_C\": 1520, \"MHH_CHILD\": 174, \"FHH_CHILD\": 561, \"FAMILIES\": 3691, \"AVE_FAM_SZ\": 2.920000, \"HSE_UNITS\": 7432, \"VACANT\": 748, \"OWNER_OCC\": 3331, \"RENTER_OCC\": 3353 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -77.967825358115761, 39.459207096077797 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Morgantown\", \"CLASS\": \"city\", \"ST\": \"WV\", \"STFIPS\": \"54\", \"PLACEFIP\": \"55756\", \"CAPITAL\": \"N\", \"AREALAND\": 9.799000, \"AREAWATER\": 0.319000, \"POP_CL\": 6, \"POP2000\": 26809, \"WHITE\": 23990, \"BLACK\": 1113, \"AMERI_ES\": 45, \"ASIAN\": 1113, \"HAWN_PI\": 13, \"OTHER\": 138, \"MULT_RACE\": 397, \"HISPANIC\": 412, \"MALES\": 13711, \"FEMALES\": 13098, \"AGE_UNDER5\": 793, \"AGE_5_17\": 2170, \"AGE_18_21\": 8712, \"AGE_22_29\": 5262, \"AGE_30_39\": 2354, \"AGE_40_49\": 2374, \"AGE_50_64\": 2365, \"AGE_65_UP\": 2779, \"MED_AGE\": 23.100000, \"MED_AGE_M\": 22.800000, \"MED_AGE_F\": 23.700000, \"HOUSEHOLDS\": 10782, \"AVE_HH_SZ\": 2.080000, \"HSEHLD_1_M\": 1741, \"HSEHLD_1_F\": 2283, \"MARHH_CHD\": 1172, \"MARHH_NO_C\": 1966, \"MHH_CHILD\": 84, \"FHH_CHILD\": 360, \"FAMILIES\": 4188, \"AVE_FAM_SZ\": 2.760000, \"HSE_UNITS\": 11721, \"VACANT\": 939, \"OWNER_OCC\": 4498, \"RENTER_OCC\": 6284 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.950672956311493, 39.633695873508742 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Parkersburg\", \"CLASS\": \"city\", \"ST\": \"WV\", \"STFIPS\": \"54\", \"PLACEFIP\": \"62140\", \"CAPITAL\": \"N\", \"AREALAND\": 11.819000, \"AREAWATER\": 0.389000, \"POP_CL\": 6, \"POP2000\": 33099, \"WHITE\": 31894, \"BLACK\": 579, \"AMERI_ES\": 67, \"ASIAN\": 138, \"HAWN_PI\": 18, \"OTHER\": 71, \"MULT_RACE\": 332, \"HISPANIC\": 269, \"MALES\": 15455, \"FEMALES\": 17644, \"AGE_UNDER5\": 1867, \"AGE_5_17\": 5147, \"AGE_18_21\": 1799, \"AGE_22_29\": 3404, \"AGE_30_39\": 4390, \"AGE_40_49\": 4816, \"AGE_50_64\": 5424, \"AGE_65_UP\": 6252, \"MED_AGE\": 39.900000, \"MED_AGE_M\": 37.700000, \"MED_AGE_F\": 41.900000, \"HOUSEHOLDS\": 14467, \"AVE_HH_SZ\": 2.230000, \"HSEHLD_1_M\": 1786, \"HSEHLD_1_F\": 3134, \"MARHH_CHD\": 2226, \"MARHH_NO_C\": 4022, \"MHH_CHILD\": 277, \"FHH_CHILD\": 1111, \"FAMILIES\": 8769, \"AVE_FAM_SZ\": 2.830000, \"HSE_UNITS\": 16100, \"VACANT\": 1633, \"OWNER_OCC\": 8969, \"RENTER_OCC\": 5498 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.542139815223194, 39.266174905854676 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"St. Albans\", \"CLASS\": \"city\", \"ST\": \"WV\", \"STFIPS\": \"54\", \"PLACEFIP\": \"71212\", \"CAPITAL\": \"N\", \"AREALAND\": 3.619000, \"AREAWATER\": 0.077000, \"POP_CL\": 6, \"POP2000\": 11567, \"WHITE\": 11031, \"BLACK\": 329, \"AMERI_ES\": 15, \"ASIAN\": 50, \"HAWN_PI\": 0, \"OTHER\": 21, \"MULT_RACE\": 121, \"HISPANIC\": 73, \"MALES\": 5334, \"FEMALES\": 6233, \"AGE_UNDER5\": 605, \"AGE_5_17\": 1613, \"AGE_18_21\": 433, \"AGE_22_29\": 1058, \"AGE_30_39\": 1359, \"AGE_40_49\": 1785, \"AGE_50_64\": 1983, \"AGE_65_UP\": 2731, \"MED_AGE\": 44.300000, \"MED_AGE_M\": 41.800000, \"MED_AGE_F\": 46.200000, \"HOUSEHOLDS\": 5185, \"AVE_HH_SZ\": 2.210000, \"HSEHLD_1_M\": 499, \"HSEHLD_1_F\": 1128, \"MARHH_CHD\": 860, \"MARHH_NO_C\": 1815, \"MHH_CHILD\": 88, \"FHH_CHILD\": 273, \"FAMILIES\": 3389, \"AVE_FAM_SZ\": 2.750000, \"HSE_UNITS\": 5467, \"VACANT\": 282, \"OWNER_OCC\": 3910, \"RENTER_OCC\": 1275 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.819712591589607, 38.380364919661723 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"South Charleston\", \"CLASS\": \"city\", \"ST\": \"WV\", \"STFIPS\": \"54\", \"PLACEFIP\": \"75292\", \"CAPITAL\": \"N\", \"AREALAND\": 7.427000, \"AREAWATER\": 0.877000, \"POP_CL\": 6, \"POP2000\": 13390, \"WHITE\": 12165, \"BLACK\": 893, \"AMERI_ES\": 20, \"ASIAN\": 108, \"HAWN_PI\": 0, \"OTHER\": 32, \"MULT_RACE\": 172, \"HISPANIC\": 75, \"MALES\": 6084, \"FEMALES\": 7306, \"AGE_UNDER5\": 675, \"AGE_5_17\": 1888, \"AGE_18_21\": 523, \"AGE_22_29\": 1308, \"AGE_30_39\": 1799, \"AGE_40_49\": 2185, \"AGE_50_64\": 2335, \"AGE_65_UP\": 2677, \"MED_AGE\": 42.400000, \"MED_AGE_M\": 40.200000, \"MED_AGE_F\": 44.200000, \"HOUSEHOLDS\": 6316, \"AVE_HH_SZ\": 2.110000, \"HSEHLD_1_M\": 748, \"HSEHLD_1_F\": 1521, \"MARHH_CHD\": 913, \"MARHH_NO_C\": 1857, \"MHH_CHILD\": 87, \"FHH_CHILD\": 442, \"FAMILIES\": 3762, \"AVE_FAM_SZ\": 2.720000, \"HSE_UNITS\": 6770, \"VACANT\": 454, \"OWNER_OCC\": 4222, \"RENTER_OCC\": 2094 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.712001648481305, 38.352454916781255 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Teays Valley\", \"CLASS\": \"CDP\", \"ST\": \"WV\", \"STFIPS\": \"54\", \"PLACEFIP\": \"79545\", \"CAPITAL\": \"N\", \"AREALAND\": 7.343000, \"AREAWATER\": 0.081000, \"POP_CL\": 6, \"POP2000\": 12704, \"WHITE\": 12246, \"BLACK\": 119, \"AMERI_ES\": 14, \"ASIAN\": 202, \"HAWN_PI\": 2, \"OTHER\": 32, \"MULT_RACE\": 89, \"HISPANIC\": 98, \"MALES\": 6086, \"FEMALES\": 6618, \"AGE_UNDER5\": 899, \"AGE_5_17\": 2551, \"AGE_18_21\": 471, \"AGE_22_29\": 1025, \"AGE_30_39\": 1931, \"AGE_40_49\": 2244, \"AGE_50_64\": 2003, \"AGE_65_UP\": 1580, \"MED_AGE\": 37.700000, \"MED_AGE_M\": 36.800000, \"MED_AGE_F\": 38.500000, \"HOUSEHOLDS\": 4789, \"AVE_HH_SZ\": 2.620000, \"HSEHLD_1_M\": 336, \"HSEHLD_1_F\": 581, \"MARHH_CHD\": 1562, \"MARHH_NO_C\": 1660, \"MHH_CHILD\": 53, \"FHH_CHILD\": 283, \"FAMILIES\": 3749, \"AVE_FAM_SZ\": 3.000000, \"HSE_UNITS\": 5062, \"VACANT\": 273, \"OWNER_OCC\": 3913, \"RENTER_OCC\": 876 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.937324536393859, 38.447203922628944 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Vienna\", \"CLASS\": \"city\", \"ST\": \"WV\", \"STFIPS\": \"54\", \"PLACEFIP\": \"83500\", \"CAPITAL\": \"N\", \"AREALAND\": 3.751000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 10861, \"WHITE\": 10503, \"BLACK\": 103, \"AMERI_ES\": 18, \"ASIAN\": 146, \"HAWN_PI\": 2, \"OTHER\": 15, \"MULT_RACE\": 74, \"HISPANIC\": 54, \"MALES\": 5081, \"FEMALES\": 5780, \"AGE_UNDER5\": 546, \"AGE_5_17\": 1754, \"AGE_18_21\": 435, \"AGE_22_29\": 862, \"AGE_30_39\": 1366, \"AGE_40_49\": 1714, \"AGE_50_64\": 2109, \"AGE_65_UP\": 2075, \"MED_AGE\": 42.700000, \"MED_AGE_M\": 40.800000, \"MED_AGE_F\": 44.500000, \"HOUSEHOLDS\": 4733, \"AVE_HH_SZ\": 2.290000, \"HSEHLD_1_M\": 468, \"HSEHLD_1_F\": 967, \"MARHH_CHD\": 984, \"MARHH_NO_C\": 1631, \"MHH_CHILD\": 54, \"FHH_CHILD\": 216, \"FAMILIES\": 3154, \"AVE_FAM_SZ\": 2.840000, \"HSE_UNITS\": 5074, \"VACANT\": 341, \"OWNER_OCC\": 3624, \"RENTER_OCC\": 1109 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -81.542845818951321, 39.325323905473752 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Weirton\", \"CLASS\": \"city\", \"ST\": \"WV\", \"STFIPS\": \"54\", \"PLACEFIP\": \"85156\", \"CAPITAL\": \"N\", \"AREALAND\": 17.870000, \"AREAWATER\": 1.391000, \"POP_CL\": 6, \"POP2000\": 20411, \"WHITE\": 19293, \"BLACK\": 787, \"AMERI_ES\": 22, \"ASIAN\": 120, \"HAWN_PI\": 3, \"OTHER\": 29, \"MULT_RACE\": 157, \"HISPANIC\": 138, \"MALES\": 9586, \"FEMALES\": 10825, \"AGE_UNDER5\": 1004, \"AGE_5_17\": 2921, \"AGE_18_21\": 752, \"AGE_22_29\": 1769, \"AGE_30_39\": 2587, \"AGE_40_49\": 3294, \"AGE_50_64\": 3538, \"AGE_65_UP\": 4546, \"MED_AGE\": 43.500000, \"MED_AGE_M\": 42.000000, \"MED_AGE_F\": 44.900000, \"HOUSEHOLDS\": 8958, \"AVE_HH_SZ\": 2.250000, \"HSEHLD_1_M\": 1048, \"HSEHLD_1_F\": 1709, \"MARHH_CHD\": 1547, \"MARHH_NO_C\": 3054, \"MHH_CHILD\": 135, \"FHH_CHILD\": 447, \"FAMILIES\": 5881, \"AVE_FAM_SZ\": 2.790000, \"HSE_UNITS\": 9546, \"VACANT\": 588, \"OWNER_OCC\": 6455, \"RENTER_OCC\": 2503 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.575960957259866, 40.408566870149016 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Wheeling\", \"CLASS\": \"city\", \"ST\": \"WV\", \"STFIPS\": \"54\", \"PLACEFIP\": \"86452\", \"CAPITAL\": \"N\", \"AREALAND\": 13.912000, \"AREAWATER\": 1.906000, \"POP_CL\": 6, \"POP2000\": 31419, \"WHITE\": 29133, \"BLACK\": 1567, \"AMERI_ES\": 31, \"ASIAN\": 287, \"HAWN_PI\": 9, \"OTHER\": 51, \"MULT_RACE\": 341, \"HISPANIC\": 181, \"MALES\": 14353, \"FEMALES\": 17066, \"AGE_UNDER5\": 1543, \"AGE_5_17\": 4929, \"AGE_18_21\": 1808, \"AGE_22_29\": 2667, \"AGE_30_39\": 3671, \"AGE_40_49\": 4796, \"AGE_50_64\": 5219, \"AGE_65_UP\": 6786, \"MED_AGE\": 42.400000, \"MED_AGE_M\": 40.200000, \"MED_AGE_F\": 44.400000, \"HOUSEHOLDS\": 13719, \"AVE_HH_SZ\": 2.170000, \"HSEHLD_1_M\": 1924, \"HSEHLD_1_F\": 3324, \"MARHH_CHD\": 2126, \"MARHH_NO_C\": 3605, \"MHH_CHILD\": 207, \"FHH_CHILD\": 881, \"FAMILIES\": 7808, \"AVE_FAM_SZ\": 2.890000, \"HSE_UNITS\": 15706, \"VACANT\": 1987, \"OWNER_OCC\": 8605, \"RENTER_OCC\": 5114 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -80.698605733089266, 40.070347876070265 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Casper\", \"CLASS\": \"city\", \"ST\": \"WY\", \"STFIPS\": \"56\", \"PLACEFIP\": \"13150\", \"CAPITAL\": \"N\", \"AREALAND\": 23.945000, \"AREAWATER\": 0.316000, \"POP_CL\": 6, \"POP2000\": 49644, \"WHITE\": 46680, \"BLACK\": 428, \"AMERI_ES\": 495, \"ASIAN\": 245, \"HAWN_PI\": 10, \"OTHER\": 1011, \"MULT_RACE\": 775, \"HISPANIC\": 2656, \"MALES\": 24191, \"FEMALES\": 25453, \"AGE_UNDER5\": 3264, \"AGE_5_17\": 9578, \"AGE_18_21\": 3294, \"AGE_22_29\": 4980, \"AGE_30_39\": 6541, \"AGE_40_49\": 8020, \"AGE_50_64\": 7213, \"AGE_65_UP\": 6754, \"MED_AGE\": 36.100000, \"MED_AGE_M\": 34.700000, \"MED_AGE_F\": 37.300000, \"HOUSEHOLDS\": 20343, \"AVE_HH_SZ\": 2.380000, \"HSEHLD_1_M\": 2699, \"HSEHLD_1_F\": 3215, \"MARHH_CHD\": 4362, \"MARHH_NO_C\": 5722, \"MHH_CHILD\": 515, \"FHH_CHILD\": 1601, \"FAMILIES\": 13139, \"AVE_FAM_SZ\": 2.940000, \"HSE_UNITS\": 21872, \"VACANT\": 1529, \"OWNER_OCC\": 13616, \"RENTER_OCC\": 6727 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -106.325057474231343, 42.834664835828235 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Cheyenne\", \"CLASS\": \"city\", \"ST\": \"WY\", \"STFIPS\": \"56\", \"PLACEFIP\": \"13900\", \"CAPITAL\": \"Y\", \"AREALAND\": 21.108000, \"AREAWATER\": 0.082000, \"POP_CL\": 7, \"POP2000\": 53011, \"WHITE\": 46707, \"BLACK\": 1472, \"AMERI_ES\": 430, \"ASIAN\": 561, \"HAWN_PI\": 59, \"OTHER\": 2356, \"MULT_RACE\": 1426, \"HISPANIC\": 6646, \"MALES\": 25870, \"FEMALES\": 27141, \"AGE_UNDER5\": 3422, \"AGE_5_17\": 9791, \"AGE_18_21\": 2597, \"AGE_22_29\": 5697, \"AGE_30_39\": 7904, \"AGE_40_49\": 8204, \"AGE_50_64\": 8083, \"AGE_65_UP\": 7313, \"MED_AGE\": 36.600000, \"MED_AGE_M\": 35.100000, \"MED_AGE_F\": 37.900000, \"HOUSEHOLDS\": 22324, \"AVE_HH_SZ\": 2.330000, \"HSEHLD_1_M\": 3141, \"HSEHLD_1_F\": 3845, \"MARHH_CHD\": 4686, \"MARHH_NO_C\": 6299, \"MHH_CHILD\": 490, \"FHH_CHILD\": 1610, \"FAMILIES\": 14174, \"AVE_FAM_SZ\": 2.930000, \"HSE_UNITS\": 23782, \"VACANT\": 1458, \"OWNER_OCC\": 14739, \"RENTER_OCC\": 7585 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -104.802040734459979, 41.145547881077526 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Evanston\", \"CLASS\": \"city\", \"ST\": \"WY\", \"STFIPS\": \"56\", \"PLACEFIP\": \"25620\", \"CAPITAL\": \"N\", \"AREALAND\": 10.245000, \"AREAWATER\": 0.044000, \"POP_CL\": 6, \"POP2000\": 11507, \"WHITE\": 10620, \"BLACK\": 18, \"AMERI_ES\": 122, \"ASIAN\": 46, \"HAWN_PI\": 9, \"OTHER\": 477, \"MULT_RACE\": 215, \"HISPANIC\": 839, \"MALES\": 5788, \"FEMALES\": 5719, \"AGE_UNDER5\": 1000, \"AGE_5_17\": 2840, \"AGE_18_21\": 700, \"AGE_22_29\": 1106, \"AGE_30_39\": 1648, \"AGE_40_49\": 2006, \"AGE_50_64\": 1381, \"AGE_65_UP\": 826, \"MED_AGE\": 30.700000, \"MED_AGE_M\": 29.700000, \"MED_AGE_F\": 31.700000, \"HOUSEHOLDS\": 4058, \"AVE_HH_SZ\": 2.770000, \"HSEHLD_1_M\": 471, \"HSEHLD_1_F\": 478, \"MARHH_CHD\": 1308, \"MARHH_NO_C\": 976, \"MHH_CHILD\": 139, \"FHH_CHILD\": 369, \"FAMILIES\": 2940, \"AVE_FAM_SZ\": 3.300000, \"HSE_UNITS\": 4665, \"VACANT\": 607, \"OWNER_OCC\": 2805, \"RENTER_OCC\": 1253 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -110.964545375844978, 41.263305278251217 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Gillette\", \"CLASS\": \"city\", \"ST\": \"WY\", \"STFIPS\": \"56\", \"PLACEFIP\": \"31855\", \"CAPITAL\": \"N\", \"AREALAND\": 13.369000, \"AREAWATER\": 0.025000, \"POP_CL\": 6, \"POP2000\": 19646, \"WHITE\": 18762, \"BLACK\": 39, \"AMERI_ES\": 188, \"ASIAN\": 82, \"HAWN_PI\": 20, \"OTHER\": 258, \"MULT_RACE\": 297, \"HISPANIC\": 774, \"MALES\": 9978, \"FEMALES\": 9668, \"AGE_UNDER5\": 1500, \"AGE_5_17\": 4430, \"AGE_18_21\": 1206, \"AGE_22_29\": 2267, \"AGE_30_39\": 2783, \"AGE_40_49\": 3781, \"AGE_50_64\": 2489, \"AGE_65_UP\": 1190, \"MED_AGE\": 31.700000, \"MED_AGE_M\": 31.000000, \"MED_AGE_F\": 32.600000, \"HOUSEHOLDS\": 7390, \"AVE_HH_SZ\": 2.620000, \"HSEHLD_1_M\": 947, \"HSEHLD_1_F\": 824, \"MARHH_CHD\": 2152, \"MARHH_NO_C\": 1791, \"MHH_CHILD\": 269, \"FHH_CHILD\": 627, \"FAMILIES\": 5117, \"AVE_FAM_SZ\": 3.120000, \"HSE_UNITS\": 7931, \"VACANT\": 541, \"OWNER_OCC\": 4867, \"RENTER_OCC\": 2523 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -105.505253276102735, 44.282659830484391 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Green River\", \"CLASS\": \"city\", \"ST\": \"WY\", \"STFIPS\": \"56\", \"PLACEFIP\": \"33740\", \"CAPITAL\": \"N\", \"AREALAND\": 13.706000, \"AREAWATER\": 0.315000, \"POP_CL\": 6, \"POP2000\": 11808, \"WHITE\": 10879, \"BLACK\": 32, \"AMERI_ES\": 160, \"ASIAN\": 38, \"HAWN_PI\": 7, \"OTHER\": 500, \"MULT_RACE\": 192, \"HISPANIC\": 1206, \"MALES\": 5986, \"FEMALES\": 5822, \"AGE_UNDER5\": 813, \"AGE_5_17\": 2855, \"AGE_18_21\": 715, \"AGE_22_29\": 980, \"AGE_30_39\": 1527, \"AGE_40_49\": 2384, \"AGE_50_64\": 1765, \"AGE_65_UP\": 769, \"MED_AGE\": 34.100000, \"MED_AGE_M\": 33.600000, \"MED_AGE_F\": 34.500000, \"HOUSEHOLDS\": 4177, \"AVE_HH_SZ\": 2.800000, \"HSEHLD_1_M\": 439, \"HSEHLD_1_F\": 369, \"MARHH_CHD\": 1413, \"MARHH_NO_C\": 1278, \"MHH_CHILD\": 113, \"FHH_CHILD\": 251, \"FAMILIES\": 3214, \"AVE_FAM_SZ\": 3.220000, \"HSE_UNITS\": 4426, \"VACANT\": 249, \"OWNER_OCC\": 3169, \"RENTER_OCC\": 1008 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -109.464894882905483, 41.514189863460118 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Laramie\", \"CLASS\": \"city\", \"ST\": \"WY\", \"STFIPS\": \"56\", \"PLACEFIP\": \"45050\", \"CAPITAL\": \"N\", \"AREALAND\": 11.138000, \"AREAWATER\": 0.019000, \"POP_CL\": 6, \"POP2000\": 27204, \"WHITE\": 24704, \"BLACK\": 337, \"AMERI_ES\": 241, \"ASIAN\": 522, \"HAWN_PI\": 16, \"OTHER\": 787, \"MULT_RACE\": 597, \"HISPANIC\": 2161, \"MALES\": 14065, \"FEMALES\": 13139, \"AGE_UNDER5\": 1388, \"AGE_5_17\": 3382, \"AGE_18_21\": 5469, \"AGE_22_29\": 5662, \"AGE_30_39\": 2966, \"AGE_40_49\": 3267, \"AGE_50_64\": 2879, \"AGE_65_UP\": 2191, \"MED_AGE\": 25.300000, \"MED_AGE_M\": 24.700000, \"MED_AGE_F\": 26.300000, \"HOUSEHOLDS\": 11336, \"AVE_HH_SZ\": 2.190000, \"HSEHLD_1_M\": 1903, \"HSEHLD_1_F\": 1864, \"MARHH_CHD\": 1843, \"MARHH_NO_C\": 2496, \"MHH_CHILD\": 174, \"FHH_CHILD\": 587, \"FAMILIES\": 5608, \"AVE_FAM_SZ\": 2.830000, \"HSE_UNITS\": 11994, \"VACANT\": 658, \"OWNER_OCC\": 5379, \"RENTER_OCC\": 5957 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -105.587248627487128, 41.312926857695665 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Rock Springs\", \"CLASS\": \"city\", \"ST\": \"WY\", \"STFIPS\": \"56\", \"PLACEFIP\": \"67235\", \"CAPITAL\": \"N\", \"AREALAND\": 18.441000, \"AREAWATER\": 0.000000, \"POP_CL\": 6, \"POP2000\": 18708, \"WHITE\": 17164, \"BLACK\": 201, \"AMERI_ES\": 160, \"ASIAN\": 191, \"HAWN_PI\": 6, \"OTHER\": 570, \"MULT_RACE\": 416, \"HISPANIC\": 1676, \"MALES\": 9315, \"FEMALES\": 9393, \"AGE_UNDER5\": 1279, \"AGE_5_17\": 3797, \"AGE_18_21\": 1348, \"AGE_22_29\": 1963, \"AGE_30_39\": 2538, \"AGE_40_49\": 3299, \"AGE_50_64\": 2627, \"AGE_65_UP\": 1857, \"MED_AGE\": 34.500000, \"MED_AGE_M\": 34.500000, \"MED_AGE_F\": 34.400000, \"HOUSEHOLDS\": 7348, \"AVE_HH_SZ\": 2.480000, \"HSEHLD_1_M\": 1094, \"HSEHLD_1_F\": 919, \"MARHH_CHD\": 1843, \"MARHH_NO_C\": 2012, \"MHH_CHILD\": 220, \"FHH_CHILD\": 536, \"FAMILIES\": 4931, \"AVE_FAM_SZ\": 3.020000, \"HSE_UNITS\": 8359, \"VACANT\": 1011, \"OWNER_OCC\": 5274, \"RENTER_OCC\": 2074 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -109.222370865515074, 41.590930655892997 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Sheridan\", \"CLASS\": \"city\", \"ST\": \"WY\", \"STFIPS\": \"56\", \"PLACEFIP\": \"69845\", \"CAPITAL\": \"N\", \"AREALAND\": 8.486000, \"AREAWATER\": 0.018000, \"POP_CL\": 6, \"POP2000\": 15804, \"WHITE\": 15161, \"BLACK\": 34, \"AMERI_ES\": 154, \"ASIAN\": 73, \"HAWN_PI\": 31, \"OTHER\": 134, \"MULT_RACE\": 217, \"HISPANIC\": 417, \"MALES\": 7602, \"FEMALES\": 8202, \"AGE_UNDER5\": 930, \"AGE_5_17\": 2715, \"AGE_18_21\": 956, \"AGE_22_29\": 1497, \"AGE_30_39\": 1950, \"AGE_40_49\": 2527, \"AGE_50_64\": 2552, \"AGE_65_UP\": 2677, \"MED_AGE\": 39.300000, \"MED_AGE_M\": 37.500000, \"MED_AGE_F\": 40.800000, \"HOUSEHOLDS\": 7005, \"AVE_HH_SZ\": 2.210000, \"HSEHLD_1_M\": 1044, \"HSEHLD_1_F\": 1464, \"MARHH_CHD\": 1270, \"MARHH_NO_C\": 1882, \"MHH_CHILD\": 146, \"FHH_CHILD\": 456, \"FAMILIES\": 4061, \"AVE_FAM_SZ\": 2.880000, \"HSE_UNITS\": 7413, \"VACANT\": 408, \"OWNER_OCC\": 4446, \"RENTER_OCC\": 2559 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -106.958962086951402, 44.796719832768282 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Anchorage\", \"CLASS\": \"municipality\", \"ST\": \"AK\", \"STFIPS\": \"02\", \"PLACEFIP\": \"03000\", \"CAPITAL\": \"N\", \"AREALAND\": 1697.205000, \"AREAWATER\": 263.878000, \"POP_CL\": 8, \"POP2000\": 260283, \"WHITE\": 188009, \"BLACK\": 15199, \"AMERI_ES\": 18941, \"ASIAN\": 14433, \"HAWN_PI\": 2423, \"OTHER\": 5703, \"MULT_RACE\": 15575, \"HISPANIC\": 14799, \"MALES\": 131668, \"FEMALES\": 128615, \"AGE_UNDER5\": 20033, \"AGE_5_17\": 55838, \"AGE_18_21\": 14365, \"AGE_22_29\": 30269, \"AGE_30_39\": 44337, \"AGE_40_49\": 45923, \"AGE_50_64\": 35276, \"AGE_65_UP\": 14242, \"MED_AGE\": 32.400000, \"MED_AGE_M\": 31.900000, \"MED_AGE_F\": 32.800000, \"HOUSEHOLDS\": 94822, \"AVE_HH_SZ\": 2.670000, \"HSEHLD_1_M\": 11787, \"HSEHLD_1_F\": 10355, \"MARHH_CHD\": 25932, \"MARHH_NO_C\": 22489, \"MHH_CHILD\": 3097, \"FHH_CHILD\": 7839, \"FAMILIES\": 64131, \"AVE_FAM_SZ\": 3.190000, \"HSE_UNITS\": 100368, \"VACANT\": 5546, \"OWNER_OCC\": 56953, \"RENTER_OCC\": 37869 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -79.373203516632941, 69.207766170424819 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"College\", \"CLASS\": \"CDP\", \"ST\": \"AK\", \"STFIPS\": \"02\", \"PLACEFIP\": \"16750\", \"CAPITAL\": \"N\", \"AREALAND\": 18.670000, \"AREAWATER\": 0.407000, \"POP_CL\": 6, \"POP2000\": 11402, \"WHITE\": 8876, \"BLACK\": 355, \"AMERI_ES\": 1020, \"ASIAN\": 364, \"HAWN_PI\": 9, \"OTHER\": 124, \"MULT_RACE\": 654, \"HISPANIC\": 396, \"MALES\": 5910, \"FEMALES\": 5492, \"AGE_UNDER5\": 678, \"AGE_5_17\": 2363, \"AGE_18_21\": 1227, \"AGE_22_29\": 1508, \"AGE_30_39\": 1590, \"AGE_40_49\": 1915, \"AGE_50_64\": 1580, \"AGE_65_UP\": 541, \"MED_AGE\": 29.600000, \"MED_AGE_M\": 29.100000, \"MED_AGE_F\": 30.100000, \"HOUSEHOLDS\": 4104, \"AVE_HH_SZ\": 2.600000, \"HSEHLD_1_M\": 649, \"HSEHLD_1_F\": 407, \"MARHH_CHD\": 1032, \"MARHH_NO_C\": 936, \"MHH_CHILD\": 152, \"FHH_CHILD\": 339, \"FAMILIES\": 2640, \"AVE_FAM_SZ\": 3.130000, \"HSE_UNITS\": 4501, \"VACANT\": 397, \"OWNER_OCC\": 2395, \"RENTER_OCC\": 1709 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -104.074239525445236, 69.044152562657928 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Fairbanks\", \"CLASS\": \"city\", \"ST\": \"AK\", \"STFIPS\": \"02\", \"PLACEFIP\": \"24230\", \"CAPITAL\": \"N\", \"AREALAND\": 31.857000, \"AREAWATER\": 0.815000, \"POP_CL\": 6, \"POP2000\": 30224, \"WHITE\": 20150, \"BLACK\": 3370, \"AMERI_ES\": 2994, \"ASIAN\": 821, \"HAWN_PI\": 164, \"OTHER\": 740, \"MULT_RACE\": 1985, \"HISPANIC\": 1854, \"MALES\": 15501, \"FEMALES\": 14723, \"AGE_UNDER5\": 2908, \"AGE_5_17\": 5992, \"AGE_18_21\": 2396, \"AGE_22_29\": 5281, \"AGE_30_39\": 4614, \"AGE_40_49\": 3896, \"AGE_50_64\": 3151, \"AGE_65_UP\": 1986, \"MED_AGE\": 27.600000, \"MED_AGE_M\": 27.400000, \"MED_AGE_F\": 27.900000, \"HOUSEHOLDS\": 11075, \"AVE_HH_SZ\": 2.560000, \"HSEHLD_1_M\": 1626, \"HSEHLD_1_F\": 1410, \"MARHH_CHD\": 2971, \"MARHH_NO_C\": 2259, \"MHH_CHILD\": 395, \"FHH_CHILD\": 1058, \"FAMILIES\": 7187, \"AVE_FAM_SZ\": 3.150000, \"HSE_UNITS\": 12357, \"VACANT\": 1282, \"OWNER_OCC\": 3863, \"RENTER_OCC\": 7212 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -105.237517531629663, 68.908532165268937 ] } },\n{ \"type\": \"Feature\", \"properties\": { \"AREANAME\": \"Juneau\", \"CLASS\": \"city and borough\", \"ST\": \"AK\", \"STFIPS\": \"02\", \"PLACEFIP\": \"36400\", \"CAPITAL\": \"Y\", \"AREALAND\": 2716.654000, \"AREAWATER\": 538.340000, \"POP_CL\": 6, \"POP2000\": 30711, \"WHITE\": 22969, \"BLACK\": 248, \"AMERI_ES\": 3496, \"ASIAN\": 1438, \"HAWN_PI\": 116, \"OTHER\": 323, \"MULT_RACE\": 2121, \"HISPANIC\": 1040, \"MALES\": 15469, \"FEMALES\": 15242, \"AGE_UNDER5\": 2003, \"AGE_5_17\": 6414, \"AGE_18_21\": 1459, \"AGE_22_29\": 2943, \"AGE_30_39\": 5145, \"AGE_40_49\": 6034, \"AGE_50_64\": 4845, \"AGE_65_UP\": 1868, \"MED_AGE\": 35.300000, \"MED_AGE_M\": 35.100000, \"MED_AGE_F\": 35.600000, \"HOUSEHOLDS\": 11543, \"AVE_HH_SZ\": 2.600000, \"HSEHLD_1_M\": 1439, \"HSEHLD_1_F\": 1380, \"MARHH_CHD\": 3038, \"MARHH_NO_C\": 2872, \"MHH_CHILD\": 359, \"FHH_CHILD\": 840, \"FAMILIES\": 7638, \"AVE_FAM_SZ\": 3.100000, \"HSE_UNITS\": 12282, \"VACANT\": 739, \"OWNER_OCC\": 7356, \"RENTER_OCC\": 4187 }, \"geometry\": { \"type\": \"Point\", \"coordinates\": [ -133.671338424471912, 58.432663280282078 ] } }\n]\n}\n"
  },
  {
    "path": "bench/shapes/counties.json",
    "content": "{\n\t\"type\": \"FeatureCollection\",\n\t\"features\": [{\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01001\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"001\",\n\t\t\t\t\"NAME\": \"Autauga\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 594.436000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.496774, 32.344437],\n\t\t\t\t\t\t[-86.717897, 32.402814],\n\t\t\t\t\t\t[-86.814912, 32.340803],\n\t\t\t\t\t\t[-86.890581, 32.502974],\n\t\t\t\t\t\t[-86.917595, 32.664169],\n\t\t\t\t\t\t[-86.713390, 32.661732],\n\t\t\t\t\t\t[-86.714219, 32.705694],\n\t\t\t\t\t\t[-86.413116, 32.707386],\n\t\t\t\t\t\t[-86.411172, 32.409937],\n\t\t\t\t\t\t[-86.496774, 32.344437]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01009\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"009\",\n\t\t\t\t\"NAME\": \"Blount\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 644.776000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.577799, 33.765316],\n\t\t\t\t\t\t[-86.759144, 33.840617],\n\t\t\t\t\t\t[-86.953664, 33.815297],\n\t\t\t\t\t\t[-86.954305, 33.844862],\n\t\t\t\t\t\t[-86.962960, 33.844865],\n\t\t\t\t\t\t[-86.963358, 33.858221],\n\t\t\t\t\t\t[-86.924387, 33.909222],\n\t\t\t\t\t\t[-86.793914, 33.952059],\n\t\t\t\t\t\t[-86.685365, 34.059140],\n\t\t\t\t\t\t[-86.692061, 34.092654],\n\t\t\t\t\t\t[-86.599632, 34.119914],\n\t\t\t\t\t\t[-86.514881, 34.254370],\n\t\t\t\t\t\t[-86.453020, 34.259317],\n\t\t\t\t\t\t[-86.303516, 34.099073],\n\t\t\t\t\t\t[-86.332723, 33.986109],\n\t\t\t\t\t\t[-86.370152, 33.939770],\n\t\t\t\t\t\t[-86.325622, 33.940147],\n\t\t\t\t\t\t[-86.377532, 33.861706],\n\t\t\t\t\t\t[-86.577528, 33.801977],\n\t\t\t\t\t\t[-86.577799, 33.765316]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01017\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"017\",\n\t\t\t\t\"NAME\": \"Chambers\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 596.531000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.184131, 32.870525],\n\t\t\t\t\t\t[-85.123421, 32.772248],\n\t\t\t\t\t\t[-85.132040, 32.764211],\n\t\t\t\t\t\t[-85.136776, 32.746512],\n\t\t\t\t\t\t[-85.285043, 32.730731],\n\t\t\t\t\t\t[-85.593151, 32.728530],\n\t\t\t\t\t\t[-85.593177, 33.107340],\n\t\t\t\t\t\t[-85.232378, 33.108077],\n\t\t\t\t\t\t[-85.223261, 33.062580],\n\t\t\t\t\t\t[-85.221868, 33.055538],\n\t\t\t\t\t\t[-85.184131, 32.870525]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01021\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"021\",\n\t\t\t\t\"NAME\": \"Chilton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 692.854000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.517344, 33.020566],\n\t\t\t\t\t\t[-86.515959, 32.929361],\n\t\t\t\t\t\t[-86.457015, 32.813899],\n\t\t\t\t\t\t[-86.374974, 32.753580],\n\t\t\t\t\t\t[-86.413335, 32.750591],\n\t\t\t\t\t\t[-86.413116, 32.707386],\n\t\t\t\t\t\t[-86.714219, 32.705694],\n\t\t\t\t\t\t[-86.713390, 32.661732],\n\t\t\t\t\t\t[-86.917595, 32.664169],\n\t\t\t\t\t\t[-87.017660, 32.663269],\n\t\t\t\t\t\t[-87.017762, 32.729532],\n\t\t\t\t\t\t[-87.019157, 32.837034],\n\t\t\t\t\t\t[-86.876118, 32.836264],\n\t\t\t\t\t\t[-86.881182, 33.049901],\n\t\t\t\t\t\t[-86.881638, 33.071861],\n\t\t\t\t\t\t[-86.610003, 33.070003],\n\t\t\t\t\t\t[-86.517344, 33.020566]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01033\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"033\",\n\t\t\t\t\"NAME\": \"Colbert\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 592.619000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.139988, 34.581703],\n\t\t\t\t\t\t[-88.139246, 34.587795],\n\t\t\t\t\t\t[-88.138719, 34.589215],\n\t\t\t\t\t\t[-88.118407, 34.724292],\n\t\t\t\t\t\t[-88.097888, 34.892202],\n\t\t\t\t\t\t[-87.973222, 34.882550],\n\t\t\t\t\t\t[-87.835833, 34.741239],\n\t\t\t\t\t\t[-87.524363, 34.832384],\n\t\t\t\t\t\t[-87.426510, 34.800022],\n\t\t\t\t\t\t[-87.416484, 34.767544],\n\t\t\t\t\t\t[-87.529667, 34.567081],\n\t\t\t\t\t\t[-88.139988, 34.581703]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01045\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"045\",\n\t\t\t\t\"NAME\": \"Dale\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 561.150000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.416437, 31.619466],\n\t\t\t\t\t\t[-85.417434, 31.314973],\n\t\t\t\t\t\t[-85.485854, 31.246096],\n\t\t\t\t\t\t[-85.659985, 31.270889],\n\t\t\t\t\t\t[-85.710866, 31.195179],\n\t\t\t\t\t\t[-85.791402, 31.196349],\n\t\t\t\t\t\t[-85.789142, 31.617964],\n\t\t\t\t\t\t[-85.749941, 31.617914],\n\t\t\t\t\t\t[-85.748251, 31.618048],\n\t\t\t\t\t\t[-85.416437, 31.619466]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01051\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"051\",\n\t\t\t\t\"NAME\": \"Elmore\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 618.485000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.336776, 32.767469],\n\t\t\t\t\t\t[-86.319480, 32.753698],\n\t\t\t\t\t\t[-86.007187, 32.754984],\n\t\t\t\t\t\t[-85.879860, 32.754528],\n\t\t\t\t\t\t[-85.886148, 32.493053],\n\t\t\t\t\t\t[-85.894420, 32.447578],\n\t\t\t\t\t\t[-86.023012, 32.419978],\n\t\t\t\t\t\t[-86.192284, 32.436130],\n\t\t\t\t\t\t[-86.237068, 32.494980],\n\t\t\t\t\t\t[-86.411172, 32.409937],\n\t\t\t\t\t\t[-86.413116, 32.707386],\n\t\t\t\t\t\t[-86.413335, 32.750591],\n\t\t\t\t\t\t[-86.374974, 32.753580],\n\t\t\t\t\t\t[-86.336768, 32.753783],\n\t\t\t\t\t\t[-86.336776, 32.767469]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01065\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"065\",\n\t\t\t\t\"NAME\": \"Hale\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 643.943000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.421200, 32.874508],\n\t\t\t\t\t\t[-87.472174, 32.830620],\n\t\t\t\t\t\t[-87.473915, 32.655867],\n\t\t\t\t\t\t[-87.525198, 32.655713],\n\t\t\t\t\t\t[-87.524485, 32.482028],\n\t\t\t\t\t\t[-87.728744, 32.480918],\n\t\t\t\t\t\t[-87.812559, 32.524560],\n\t\t\t\t\t\t[-87.736786, 32.589190],\n\t\t\t\t\t\t[-87.813401, 32.633875],\n\t\t\t\t\t\t[-87.796043, 32.715632],\n\t\t\t\t\t\t[-87.828542, 32.768903],\n\t\t\t\t\t\t[-87.870464, 32.762442],\n\t\t\t\t\t\t[-87.715709, 33.006824],\n\t\t\t\t\t\t[-87.421936, 33.003379],\n\t\t\t\t\t\t[-87.420132, 32.902605],\n\t\t\t\t\t\t[-87.421200, 32.874508]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01079\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"079\",\n\t\t\t\t\"NAME\": \"Lawrence\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 690.678000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.105073, 34.686037],\n\t\t\t\t\t\t[-87.105913, 34.587643],\n\t\t\t\t\t\t[-87.110111, 34.313799],\n\t\t\t\t\t\t[-87.109911, 34.299299],\n\t\t\t\t\t\t[-87.529722, 34.304598],\n\t\t\t\t\t\t[-87.529667, 34.567081],\n\t\t\t\t\t\t[-87.416484, 34.767544],\n\t\t\t\t\t\t[-87.426510, 34.800022],\n\t\t\t\t\t\t[-87.260676, 34.758626],\n\t\t\t\t\t\t[-87.105073, 34.686037]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01083\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"083\",\n\t\t\t\t\"NAME\": \"Limestone\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 559.936000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.836306, 34.991764],\n\t\t\t\t\t\t[-86.820657, 34.991764],\n\t\t\t\t\t\t[-86.783648, 34.991925],\n\t\t\t\t\t\t[-86.783628, 34.991925],\n\t\t\t\t\t\t[-86.790056, 34.550790],\n\t\t\t\t\t\t[-86.942899, 34.598053],\n\t\t\t\t\t\t[-87.105073, 34.686037],\n\t\t\t\t\t\t[-87.260676, 34.758626],\n\t\t\t\t\t\t[-87.214914, 34.816011],\n\t\t\t\t\t\t[-87.210759, 34.999024],\n\t\t\t\t\t\t[-87.011174, 34.995162],\n\t\t\t\t\t\t[-87.000007, 34.995121],\n\t\t\t\t\t\t[-86.974412, 34.994513],\n\t\t\t\t\t\t[-86.972613, 34.994610],\n\t\t\t\t\t\t[-86.970236, 34.994546],\n\t\t\t\t\t\t[-86.967120, 34.994400],\n\t\t\t\t\t\t[-86.862147, 34.991956],\n\t\t\t\t\t\t[-86.849794, 34.991924],\n\t\t\t\t\t\t[-86.846466, 34.991860],\n\t\t\t\t\t\t[-86.836370, 34.991764],\n\t\t\t\t\t\t[-86.836306, 34.991764]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01099\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"099\",\n\t\t\t\t\"NAME\": \"Monroe\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1025.675000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.905899, 31.753035],\n\t\t\t\t\t\t[-87.052284, 31.716761],\n\t\t\t\t\t\t[-87.135051, 31.642417],\n\t\t\t\t\t\t[-87.166581, 31.519561],\n\t\t\t\t\t\t[-87.427455, 31.260386],\n\t\t\t\t\t\t[-87.615890, 31.244458],\n\t\t\t\t\t\t[-87.765152, 31.297346],\n\t\t\t\t\t\t[-87.784796, 31.324672],\n\t\t\t\t\t\t[-87.665572, 31.423166],\n\t\t\t\t\t\t[-87.603137, 31.409556],\n\t\t\t\t\t\t[-87.565413, 31.553573],\n\t\t\t\t\t\t[-87.566841, 31.697115],\n\t\t\t\t\t\t[-87.516131, 31.697824],\n\t\t\t\t\t\t[-87.500930, 31.829251],\n\t\t\t\t\t\t[-86.906899, 31.830628],\n\t\t\t\t\t\t[-86.905899, 31.753035]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01107\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"107\",\n\t\t\t\t\"NAME\": \"Pickens\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 881.408000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.291127, 33.399061],\n\t\t\t\t\t\t[-88.277421, 33.512436],\n\t\t\t\t\t\t[-88.276805, 33.516463],\n\t\t\t\t\t\t[-88.274619, 33.534008],\n\t\t\t\t\t\t[-87.946519, 33.524065],\n\t\t\t\t\t\t[-87.858560, 33.525326],\n\t\t\t\t\t\t[-87.840683, 33.524839],\n\t\t\t\t\t\t[-87.837521, 33.153637],\n\t\t\t\t\t\t[-88.026971, 33.063602],\n\t\t\t\t\t\t[-88.171852, 32.995860],\n\t\t\t\t\t\t[-88.340432, 32.991199],\n\t\t\t\t\t\t[-88.304514, 33.288320],\n\t\t\t\t\t\t[-88.291127, 33.399061]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01121\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"121\",\n\t\t\t\t\"NAME\": \"Talladega\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 736.775000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.174370, 33.104394],\n\t\t\t\t\t\t[-86.226271, 33.104115],\n\t\t\t\t\t\t[-86.491029, 33.102944],\n\t\t\t\t\t\t[-86.503127, 33.179144],\n\t\t\t\t\t\t[-86.357340, 33.296917],\n\t\t\t\t\t\t[-86.378665, 33.390983],\n\t\t\t\t\t\t[-86.281999, 33.509895],\n\t\t\t\t\t\t[-86.235328, 33.494532],\n\t\t\t\t\t\t[-86.145562, 33.679098],\n\t\t\t\t\t\t[-86.050669, 33.674590],\n\t\t\t\t\t\t[-85.994935, 33.586475],\n\t\t\t\t\t\t[-85.794559, 33.585565],\n\t\t\t\t\t\t[-85.796054, 33.556220],\n\t\t\t\t\t\t[-85.796852, 33.541849],\n\t\t\t\t\t\t[-85.851890, 33.498742],\n\t\t\t\t\t\t[-85.904909, 33.498655],\n\t\t\t\t\t\t[-85.923762, 33.396206],\n\t\t\t\t\t\t[-85.976525, 33.381870],\n\t\t\t\t\t\t[-85.980293, 33.294190],\n\t\t\t\t\t\t[-86.118198, 33.296320],\n\t\t\t\t\t\t[-86.120567, 33.194511],\n\t\t\t\t\t\t[-86.172830, 33.195681],\n\t\t\t\t\t\t[-86.174370, 33.104394]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US02050\",\n\t\t\t\t\"STATE\": \"02\",\n\t\t\t\t\"COUNTY\": \"050\",\n\t\t\t\t\"NAME\": \"Bethel\",\n\t\t\t\t\"LSAD\": \"CA\",\n\t\t\t\t\"CENSUSAREA\": 40570.004000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-173.116905, 60.516005],\n\t\t\t\t\t\t\t[-173.098092, 60.533367],\n\t\t\t\t\t\t\t[-173.098094, 60.573993],\n\t\t\t\t\t\t\t[-173.041847, 60.611497],\n\t\t\t\t\t\t\t[-172.999659, 60.611498],\n\t\t\t\t\t\t\t[-172.971530, 60.605249],\n\t\t\t\t\t\t\t[-172.915274, 60.527122],\n\t\t\t\t\t\t\t[-172.915273, 60.514621],\n\t\t\t\t\t\t\t[-172.895349, 60.499750],\n\t\t\t\t\t\t\t[-172.715261, 60.429864],\n\t\t\t\t\t\t\t[-172.706472, 60.425179],\n\t\t\t\t\t\t\t[-172.480536, 60.400184],\n\t\t\t\t\t\t\t[-172.352622, 60.381435],\n\t\t\t\t\t\t\t[-172.341399, 60.373145],\n\t\t\t\t\t\t\t[-172.333051, 60.364359],\n\t\t\t\t\t\t\t[-172.269754, 60.333887],\n\t\t\t\t\t\t\t[-172.254821, 60.334082],\n\t\t\t\t\t\t\t[-172.254821, 60.326466],\n\t\t\t\t\t\t\t[-172.291289, 60.321193],\n\t\t\t\t\t\t\t[-172.435476, 60.332653],\n\t\t\t\t\t\t\t[-172.491531, 60.334874],\n\t\t\t\t\t\t\t[-172.505544, 60.330428],\n\t\t\t\t\t\t\t[-172.519558, 60.323758],\n\t\t\t\t\t\t\t[-172.547585, 60.317088],\n\t\t\t\t\t\t\t[-172.589625, 60.314863],\n\t\t\t\t\t\t\t[-172.612982, 60.319309],\n\t\t\t\t\t\t\t[-172.622325, 60.330424],\n\t\t\t\t\t\t\t[-172.757794, 60.374881],\n\t\t\t\t\t\t\t[-172.811529, 60.406621],\n\t\t\t\t\t\t\t[-172.951477, 60.478649],\n\t\t\t\t\t\t\t[-172.959056, 60.479695],\n\t\t\t\t\t\t\t[-172.966515, 60.478167],\n\t\t\t\t\t\t\t[-172.990296, 60.478702],\n\t\t\t\t\t\t\t[-173.119005, 60.500067],\n\t\t\t\t\t\t\t[-173.120769, 60.513010],\n\t\t\t\t\t\t\t[-173.116905, 60.516005]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-165.721389, 60.169620],\n\t\t\t\t\t\t\t[-165.723168, 60.156603],\n\t\t\t\t\t\t\t[-165.719120, 60.153521],\n\t\t\t\t\t\t\t[-165.702411, 60.151285],\n\t\t\t\t\t\t\t[-165.697273, 60.153592],\n\t\t\t\t\t\t\t[-165.683507, 60.154221],\n\t\t\t\t\t\t\t[-165.675374, 60.149360],\n\t\t\t\t\t\t\t[-165.667863, 60.114676],\n\t\t\t\t\t\t\t[-165.671567, 60.096877],\n\t\t\t\t\t\t\t[-165.680612, 60.089962],\n\t\t\t\t\t\t\t[-165.684585, 60.055237],\n\t\t\t\t\t\t\t[-165.649318, 59.991837],\n\t\t\t\t\t\t\t[-165.588873, 59.966005],\n\t\t\t\t\t\t\t[-165.539367, 59.965175],\n\t\t\t\t\t\t\t[-165.534482, 59.951276],\n\t\t\t\t\t\t\t[-165.543456, 59.930376],\n\t\t\t\t\t\t\t[-165.550405, 59.920007],\n\t\t\t\t\t\t\t[-165.575815, 59.904672],\n\t\t\t\t\t\t\t[-165.695981, 59.893513],\n\t\t\t\t\t\t\t[-165.712875, 59.895364],\n\t\t\t\t\t\t\t[-165.717549, 59.899137],\n\t\t\t\t\t\t\t[-165.722458, 59.899813],\n\t\t\t\t\t\t\t[-165.751851, 59.899947],\n\t\t\t\t\t\t\t[-165.905471, 59.871937],\n\t\t\t\t\t\t\t[-166.010201, 59.847061],\n\t\t\t\t\t\t\t[-166.060952, 59.820508],\n\t\t\t\t\t\t\t[-166.072465, 59.805462],\n\t\t\t\t\t\t\t[-166.058096, 59.787110],\n\t\t\t\t\t\t\t[-166.042089, 59.776212],\n\t\t\t\t\t\t\t[-166.032277, 59.773729],\n\t\t\t\t\t\t\t[-166.030813, 59.770600],\n\t\t\t\t\t\t\t[-166.036947, 59.757859],\n\t\t\t\t\t\t\t[-166.062854, 59.748586],\n\t\t\t\t\t\t\t[-166.157071, 59.748886],\n\t\t\t\t\t\t\t[-166.180920, 59.763728],\n\t\t\t\t\t\t\t[-166.176669, 59.766495],\n\t\t\t\t\t\t\t[-166.174820, 59.770681],\n\t\t\t\t\t\t\t[-166.184234, 59.779432],\n\t\t\t\t\t\t\t[-166.203293, 59.791676],\n\t\t\t\t\t\t\t[-166.251528, 59.809807],\n\t\t\t\t\t\t\t[-166.381986, 59.849087],\n\t\t\t\t\t\t\t[-166.407290, 59.854604],\n\t\t\t\t\t\t\t[-166.439746, 59.857816],\n\t\t\t\t\t\t\t[-166.512223, 59.849939],\n\t\t\t\t\t\t\t[-166.583297, 59.848705],\n\t\t\t\t\t\t\t[-166.616849, 59.850711],\n\t\t\t\t\t\t\t[-166.621473, 59.856438],\n\t\t\t\t\t\t\t[-166.648076, 59.871100],\n\t\t\t\t\t\t\t[-166.678200, 59.881248],\n\t\t\t\t\t\t\t[-166.716563, 59.889011],\n\t\t\t\t\t\t\t[-166.764183, 59.892061],\n\t\t\t\t\t\t\t[-166.801634, 59.916321],\n\t\t\t\t\t\t\t[-166.866530, 59.949544],\n\t\t\t\t\t\t\t[-166.892330, 59.960507],\n\t\t\t\t\t\t\t[-166.995748, 59.993495],\n\t\t\t\t\t\t\t[-167.067602, 59.992295],\n\t\t\t\t\t\t\t[-167.111785, 59.989349],\n\t\t\t\t\t\t\t[-167.124867, 59.991700],\n\t\t\t\t\t\t\t[-167.133258, 59.994695],\n\t\t\t\t\t\t\t[-167.220210, 60.040133],\n\t\t\t\t\t\t\t[-167.247627, 60.058862],\n\t\t\t\t\t\t\t[-167.281357, 60.063892],\n\t\t\t\t\t\t\t[-167.310664, 60.064874],\n\t\t\t\t\t\t\t[-167.339109, 60.070159],\n\t\t\t\t\t\t\t[-167.342702, 60.072395],\n\t\t\t\t\t\t\t[-167.342885, 60.074979],\n\t\t\t\t\t\t\t[-167.334050, 60.088609],\n\t\t\t\t\t\t\t[-167.333860, 60.094065],\n\t\t\t\t\t\t\t[-167.343303, 60.123181],\n\t\t\t\t\t\t\t[-167.347866, 60.131140],\n\t\t\t\t\t\t\t[-167.362783, 60.147556],\n\t\t\t\t\t\t\t[-167.423053, 60.195072],\n\t\t\t\t\t\t\t[-167.421489, 60.205431],\n\t\t\t\t\t\t\t[-167.369927, 60.225496],\n\t\t\t\t\t\t\t[-167.312616, 60.238454],\n\t\t\t\t\t\t\t[-167.201940, 60.237822],\n\t\t\t\t\t\t\t[-167.105975, 60.232895],\n\t\t\t\t\t\t\t[-167.081935, 60.225765],\n\t\t\t\t\t\t\t[-167.045820, 60.219088],\n\t\t\t\t\t\t\t[-166.937970, 60.205870],\n\t\t\t\t\t\t\t[-166.909802, 60.206513],\n\t\t\t\t\t\t\t[-166.847438, 60.213592],\n\t\t\t\t\t\t\t[-166.812484, 60.227780],\n\t\t\t\t\t\t\t[-166.803469, 60.242802],\n\t\t\t\t\t\t\t[-166.809546, 60.259658],\n\t\t\t\t\t\t\t[-166.826169, 60.268644],\n\t\t\t\t\t\t\t[-166.834966, 60.271406],\n\t\t\t\t\t\t\t[-166.832877, 60.275449],\n\t\t\t\t\t\t\t[-166.814979, 60.286283],\n\t\t\t\t\t\t\t[-166.762522, 60.309837],\n\t\t\t\t\t\t\t[-166.738323, 60.314301],\n\t\t\t\t\t\t\t[-166.662112, 60.322993],\n\t\t\t\t\t\t\t[-166.608896, 60.321250],\n\t\t\t\t\t\t\t[-166.578305, 60.321850],\n\t\t\t\t\t\t\t[-166.569828, 60.325955],\n\t\t\t\t\t\t\t[-166.562081, 60.359022],\n\t\t\t\t\t\t\t[-166.493543, 60.392389],\n\t\t\t\t\t\t\t[-166.414570, 60.371870],\n\t\t\t\t\t\t\t[-166.408546, 60.365899],\n\t\t\t\t\t\t\t[-166.387184, 60.359671],\n\t\t\t\t\t\t\t[-166.366596, 60.358227],\n\t\t\t\t\t\t\t[-166.310655, 60.377611],\n\t\t\t\t\t\t\t[-166.200019, 60.393404],\n\t\t\t\t\t\t\t[-166.174906, 60.401003],\n\t\t\t\t\t\t\t[-166.171187, 60.428854],\n\t\t\t\t\t\t\t[-166.163203, 60.432641],\n\t\t\t\t\t\t\t[-166.135704, 60.424510],\n\t\t\t\t\t\t\t[-166.124379, 60.414253],\n\t\t\t\t\t\t\t[-166.124231, 60.409953],\n\t\t\t\t\t\t\t[-166.134927, 60.400129],\n\t\t\t\t\t\t\t[-166.123805, 60.378116],\n\t\t\t\t\t\t\t[-166.084791, 60.325288],\n\t\t\t\t\t\t\t[-166.012169, 60.317691],\n\t\t\t\t\t\t\t[-165.987336, 60.317833],\n\t\t\t\t\t\t\t[-165.927956, 60.321592],\n\t\t\t\t\t\t\t[-165.924640, 60.325249],\n\t\t\t\t\t\t\t[-165.923572, 60.330503],\n\t\t\t\t\t\t\t[-165.920794, 60.335398],\n\t\t\t\t\t\t\t[-165.916828, 60.338002],\n\t\t\t\t\t\t\t[-165.883458, 60.343902],\n\t\t\t\t\t\t\t[-165.786573, 60.326821],\n\t\t\t\t\t\t\t[-165.714510, 60.310496],\n\t\t\t\t\t\t\t[-165.697326, 60.297238],\n\t\t\t\t\t\t\t[-165.685751, 60.277564],\n\t\t\t\t\t\t\t[-165.686143, 60.267811],\n\t\t\t\t\t\t\t[-165.698339, 60.210676],\n\t\t\t\t\t\t\t[-165.708863, 60.189125],\n\t\t\t\t\t\t\t[-165.721389, 60.169620]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-160.534142, 61.947257],\n\t\t\t\t\t\t\t[-159.265098, 61.945564],\n\t\t\t\t\t\t\t[-159.260950, 62.032026],\n\t\t\t\t\t\t\t[-158.531113, 62.031708],\n\t\t\t\t\t\t\t[-158.532398, 62.118595],\n\t\t\t\t\t\t\t[-157.517020, 62.123543],\n\t\t\t\t\t\t\t[-157.074237, 62.129913],\n\t\t\t\t\t\t\t[-157.073592, 62.029567],\n\t\t\t\t\t\t\t[-155.107471, 62.029371],\n\t\t\t\t\t\t\t[-153.735846, 62.029370],\n\t\t\t\t\t\t\t[-153.740629, 62.121565],\n\t\t\t\t\t\t\t[-153.395401, 62.124776],\n\t\t\t\t\t\t\t[-153.394320, 62.209115],\n\t\t\t\t\t\t\t[-153.070317, 62.208517],\n\t\t\t\t\t\t\t[-153.067697, 62.295211],\n\t\t\t\t\t\t\t[-153.001262, 62.295331],\n\t\t\t\t\t\t\t[-153.001288, 62.106276],\n\t\t\t\t\t\t\t[-153.002181, 61.425686],\n\t\t\t\t\t\t\t[-153.469729, 61.428123],\n\t\t\t\t\t\t\t[-153.475316, 61.136887],\n\t\t\t\t\t\t\t[-153.430404, 61.135740],\n\t\t\t\t\t\t\t[-153.436195, 60.908538],\n\t\t\t\t\t\t\t[-154.422064, 60.906969],\n\t\t\t\t\t\t\t[-155.961100, 60.907602],\n\t\t\t\t\t\t\t[-157.168288, 60.912221],\n\t\t\t\t\t\t\t[-157.169511, 61.000170],\n\t\t\t\t\t\t\t[-157.522531, 61.000515],\n\t\t\t\t\t\t\t[-157.521885, 60.911337],\n\t\t\t\t\t\t\t[-157.700869, 60.911315],\n\t\t\t\t\t\t\t[-157.697905, 60.823585],\n\t\t\t\t\t\t\t[-157.880745, 60.824769],\n\t\t\t\t\t\t\t[-157.883552, 60.903711],\n\t\t\t\t\t\t\t[-158.944656, 60.903462],\n\t\t\t\t\t\t\t[-158.948931, 60.823175],\n\t\t\t\t\t\t\t[-159.014091, 60.823452],\n\t\t\t\t\t\t\t[-159.015920, 60.731938],\n\t\t\t\t\t\t\t[-159.182993, 60.731079],\n\t\t\t\t\t\t\t[-159.185163, 60.644578],\n\t\t\t\t\t\t\t[-159.367249, 60.644339],\n\t\t\t\t\t\t\t[-159.369629, 60.471130],\n\t\t\t\t\t\t\t[-159.432729, 60.471029],\n\t\t\t\t\t\t\t[-159.437007, 60.387176],\n\t\t\t\t\t\t\t[-159.613611, 60.387800],\n\t\t\t\t\t\t\t[-159.613392, 60.214585],\n\t\t\t\t\t\t\t[-159.784540, 60.213265],\n\t\t\t\t\t\t\t[-159.786890, 60.128139],\n\t\t\t\t\t\t\t[-159.850294, 60.128439],\n\t\t\t\t\t\t\t[-159.855289, 59.963691],\n\t\t\t\t\t\t\t[-160.015226, 59.958912],\n\t\t\t\t\t\t\t[-160.019425, 59.786831],\n\t\t\t\t\t\t\t[-160.248182, 59.784524],\n\t\t\t\t\t\t\t[-160.250662, 59.611298],\n\t\t\t\t\t\t\t[-160.424450, 59.611507],\n\t\t\t\t\t\t\t[-160.424977, 59.435910],\n\t\t\t\t\t\t\t[-160.481711, 59.436228],\n\t\t\t\t\t\t\t[-160.480547, 59.352217],\n\t\t\t\t\t\t\t[-160.650795, 59.349182],\n\t\t\t\t\t\t\t[-160.650275, 59.262230],\n\t\t\t\t\t\t\t[-160.820877, 59.261519],\n\t\t\t\t\t\t\t[-160.819137, 59.084859],\n\t\t\t\t\t\t\t[-160.875869, 59.084046],\n\t\t\t\t\t\t\t[-160.874299, 59.003658],\n\t\t\t\t\t\t\t[-161.034851, 59.003419],\n\t\t\t\t\t\t\t[-161.034520, 58.843894],\n\t\t\t\t\t\t\t[-161.094249, 58.821979],\n\t\t\t\t\t\t\t[-161.183380, 58.789276],\n\t\t\t\t\t\t\t[-161.337982, 58.742912],\n\t\t\t\t\t\t\t[-161.345396, 58.735450],\n\t\t\t\t\t\t\t[-161.372711, 58.707958],\n\t\t\t\t\t\t\t[-161.372314, 58.666172],\n\t\t\t\t\t\t\t[-161.521347, 58.633141],\n\t\t\t\t\t\t\t[-161.550537, 58.611160],\n\t\t\t\t\t\t\t[-161.626450, 58.602581],\n\t\t\t\t\t\t\t[-161.682907, 58.564671],\n\t\t\t\t\t\t\t[-161.751999, 58.551842],\n\t\t\t\t\t\t\t[-161.766296, 58.599224],\n\t\t\t\t\t\t\t[-161.871216, 58.637478],\n\t\t\t\t\t\t\t[-162.066269, 58.620800],\n\t\t\t\t\t\t\t[-162.171722, 58.648441],\n\t\t\t\t\t\t\t[-161.994644, 58.688828],\n\t\t\t\t\t\t\t[-161.939163, 58.655613],\n\t\t\t\t\t\t\t[-161.877213, 58.666138],\n\t\t\t\t\t\t\t[-161.859055, 58.708637],\n\t\t\t\t\t\t\t[-161.769501, 58.774937],\n\t\t\t\t\t\t\t[-161.756622, 58.826477],\n\t\t\t\t\t\t\t[-161.783981, 58.969421],\n\t\t\t\t\t\t\t[-161.828171, 59.062702],\n\t\t\t\t\t\t\t[-161.981964, 59.150997],\n\t\t\t\t\t\t\t[-162.048584, 59.254177],\n\t\t\t\t\t\t\t[-162.018982, 59.292278],\n\t\t\t\t\t\t\t[-161.942993, 59.263828],\n\t\t\t\t\t\t\t[-161.956528, 59.361771],\n\t\t\t\t\t\t\t[-161.904053, 59.387341],\n\t\t\t\t\t\t\t[-161.837936, 59.423836],\n\t\t\t\t\t\t\t[-161.828125, 59.428188],\n\t\t\t\t\t\t\t[-161.790375, 59.468197],\n\t\t\t\t\t\t\t[-161.738312, 59.467010],\n\t\t\t\t\t\t\t[-161.702530, 59.490906],\n\t\t\t\t\t\t\t[-161.757980, 59.557152],\n\t\t\t\t\t\t\t[-161.854752, 59.646214],\n\t\t\t\t\t\t\t[-161.911163, 59.741741],\n\t\t\t\t\t\t\t[-162.017059, 59.829426],\n\t\t\t\t\t\t\t[-162.092361, 59.881104],\n\t\t\t\t\t\t\t[-162.100708, 59.944675],\n\t\t\t\t\t\t\t[-162.108560, 59.953861],\n\t\t\t\t\t\t\t[-162.121072, 59.965241],\n\t\t\t\t\t\t\t[-162.143049, 59.967506],\n\t\t\t\t\t\t\t[-162.171759, 59.984163],\n\t\t\t\t\t\t\t[-162.190616, 60.002030],\n\t\t\t\t\t\t\t[-162.207225, 60.021834],\n\t\t\t\t\t\t\t[-162.228371, 60.056313],\n\t\t\t\t\t\t\t[-162.234642, 60.077333],\n\t\t\t\t\t\t\t[-162.234043, 60.091345],\n\t\t\t\t\t\t\t[-162.231426, 60.095297],\n\t\t\t\t\t\t\t[-162.220054, 60.101078],\n\t\t\t\t\t\t\t[-162.202141, 60.116450],\n\t\t\t\t\t\t\t[-162.186148, 60.149605],\n\t\t\t\t\t\t\t[-162.188441, 60.156509],\n\t\t\t\t\t\t\t[-162.216366, 60.174190],\n\t\t\t\t\t\t\t[-162.239267, 60.180100],\n\t\t\t\t\t\t\t[-162.252564, 60.178623],\n\t\t\t\t\t\t\t[-162.258105, 60.172713],\n\t\t\t\t\t\t\t[-162.257318, 60.163353],\n\t\t\t\t\t\t\t[-162.258328, 60.157939],\n\t\t\t\t\t\t\t[-162.287089, 60.122173],\n\t\t\t\t\t\t\t[-162.293850, 60.116580],\n\t\t\t\t\t\t\t[-162.301090, 60.112146],\n\t\t\t\t\t\t\t[-162.316922, 60.107590],\n\t\t\t\t\t\t\t[-162.321481, 60.107970],\n\t\t\t\t\t\t\t[-162.360185, 60.147360],\n\t\t\t\t\t\t\t[-162.371131, 60.169019],\n\t\t\t\t\t\t\t[-162.371870, 60.173451],\n\t\t\t\t\t\t\t[-162.371032, 60.178616],\n\t\t\t\t\t\t\t[-162.402270, 60.186425],\n\t\t\t\t\t\t\t[-162.426344, 60.185331],\n\t\t\t\t\t\t\t[-162.445727, 60.176448],\n\t\t\t\t\t\t\t[-162.447904, 60.170480],\n\t\t\t\t\t\t\t[-162.463026, 60.153020],\n\t\t\t\t\t\t\t[-162.476214, 60.145536],\n\t\t\t\t\t\t\t[-162.484234, 60.137964],\n\t\t\t\t\t\t\t[-162.492346, 60.121804],\n\t\t\t\t\t\t\t[-162.494327, 60.110675],\n\t\t\t\t\t\t\t[-162.481175, 60.087544],\n\t\t\t\t\t\t\t[-162.476759, 60.047690],\n\t\t\t\t\t\t\t[-162.503647, 59.999230],\n\t\t\t\t\t\t\t[-162.530118, 59.990110],\n\t\t\t\t\t\t\t[-162.585518, 59.977230],\n\t\t\t\t\t\t\t[-162.622569, 59.971809],\n\t\t\t\t\t\t\t[-162.644231, 59.972954],\n\t\t\t\t\t\t\t[-162.682717, 59.979432],\n\t\t\t\t\t\t\t[-162.738592, 59.976321],\n\t\t\t\t\t\t\t[-162.740059, 59.968797],\n\t\t\t\t\t\t\t[-162.748554, 59.962664],\n\t\t\t\t\t\t\t[-162.760007, 59.958013],\n\t\t\t\t\t\t\t[-162.828585, 59.939142],\n\t\t\t\t\t\t\t[-162.907260, 59.923682],\n\t\t\t\t\t\t\t[-162.974977, 59.906443],\n\t\t\t\t\t\t\t[-163.033128, 59.884135],\n\t\t\t\t\t\t\t[-163.109595, 59.861633],\n\t\t\t\t\t\t\t[-163.172633, 59.845058],\n\t\t\t\t\t\t\t[-163.349027, 59.819890],\n\t\t\t\t\t\t\t[-163.387670, 59.815880],\n\t\t\t\t\t\t\t[-163.559148, 59.801391],\n\t\t\t\t\t\t\t[-163.662607, 59.795710],\n\t\t\t\t\t\t\t[-163.704795, 59.794805],\n\t\t\t\t\t\t\t[-163.772229, 59.795624],\n\t\t\t\t\t\t\t[-163.930798, 59.803853],\n\t\t\t\t\t\t\t[-164.079837, 59.828034],\n\t\t\t\t\t\t\t[-164.115117, 59.836688],\n\t\t\t\t\t\t\t[-164.133393, 59.845612],\n\t\t\t\t\t\t\t[-164.160319, 59.864679],\n\t\t\t\t\t\t\t[-164.201811, 59.916119],\n\t\t\t\t\t\t\t[-164.208475, 59.934461],\n\t\t\t\t\t\t\t[-164.209843, 59.942874],\n\t\t\t\t\t\t\t[-164.208306, 59.949046],\n\t\t\t\t\t\t\t[-164.198545, 59.955109],\n\t\t\t\t\t\t\t[-164.178705, 59.961810],\n\t\t\t\t\t\t\t[-164.161024, 59.964076],\n\t\t\t\t\t\t\t[-164.125430, 59.964626],\n\t\t\t\t\t\t\t[-164.115080, 59.973166],\n\t\t\t\t\t\t\t[-164.131810, 59.991177],\n\t\t\t\t\t\t\t[-164.191600, 60.024496],\n\t\t\t\t\t\t\t[-164.302968, 60.054233],\n\t\t\t\t\t\t\t[-164.336111, 60.055527],\n\t\t\t\t\t\t\t[-164.385471, 60.077190],\n\t\t\t\t\t\t\t[-164.461194, 60.137824],\n\t\t\t\t\t\t\t[-164.498556, 60.170546],\n\t\t\t\t\t\t\t[-164.493861, 60.177397],\n\t\t\t\t\t\t\t[-164.494317, 60.184833],\n\t\t\t\t\t\t\t[-164.505677, 60.194304],\n\t\t\t\t\t\t\t[-164.517647, 60.199493],\n\t\t\t\t\t\t\t[-164.541699, 60.205279],\n\t\t\t\t\t\t\t[-164.558343, 60.207042],\n\t\t\t\t\t\t\t[-164.596070, 60.222874],\n\t\t\t\t\t\t\t[-164.619501, 60.234938],\n\t\t\t\t\t\t\t[-164.634362, 60.242980],\n\t\t\t\t\t\t\t[-164.646332, 60.253303],\n\t\t\t\t\t\t\t[-164.651996, 60.262745],\n\t\t\t\t\t\t\t[-164.653098, 60.267902],\n\t\t\t\t\t\t\t[-164.698889, 60.296298],\n\t\t\t\t\t\t\t[-164.726570, 60.291475],\n\t\t\t\t\t\t\t[-164.777233, 60.293833],\n\t\t\t\t\t\t\t[-164.850355, 60.303615],\n\t\t\t\t\t\t\t[-164.899296, 60.316787],\n\t\t\t\t\t\t\t[-164.962678, 60.339660],\n\t\t\t\t\t\t\t[-165.005576, 60.359812],\n\t\t\t\t\t\t\t[-165.057585, 60.386287],\n\t\t\t\t\t\t\t[-165.129403, 60.433707],\n\t\t\t\t\t\t\t[-165.132893, 60.438867],\n\t\t\t\t\t\t\t[-165.124792, 60.449191],\n\t\t\t\t\t\t\t[-165.120728, 60.451196],\n\t\t\t\t\t\t\t[-165.069693, 60.460893],\n\t\t\t\t\t\t\t[-165.049070, 60.461516],\n\t\t\t\t\t\t\t[-165.015155, 60.471414],\n\t\t\t\t\t\t\t[-164.997870, 60.480459],\n\t\t\t\t\t\t\t[-164.961439, 60.508391],\n\t\t\t\t\t\t\t[-164.956788, 60.527837],\n\t\t\t\t\t\t\t[-164.960843, 60.533845],\n\t\t\t\t\t\t\t[-164.965488, 60.536701],\n\t\t\t\t\t\t\t[-164.971280, 60.539558],\n\t\t\t\t\t\t\t[-164.986952, 60.542406],\n\t\t\t\t\t\t\t[-165.057440, 60.544631],\n\t\t\t\t\t\t\t[-165.190449, 60.498001],\n\t\t\t\t\t\t\t[-165.244442, 60.496298],\n\t\t\t\t\t\t\t[-165.362975, 60.506866],\n\t\t\t\t\t\t\t[-165.377559, 60.513164],\n\t\t\t\t\t\t\t[-165.405071, 60.534650],\n\t\t\t\t\t\t\t[-165.420349, 60.550692],\n\t\t\t\t\t\t\t[-165.419788, 60.552418],\n\t\t\t\t\t\t\t[-165.415193, 60.558160],\n\t\t\t\t\t\t\t[-165.381052, 60.577987],\n\t\t\t\t\t\t\t[-165.367676, 60.581158],\n\t\t\t\t\t\t\t[-165.346721, 60.580603],\n\t\t\t\t\t\t\t[-165.312937, 60.576313],\n\t\t\t\t\t\t\t[-165.289651, 60.575755],\n\t\t\t\t\t\t\t[-165.268717, 60.579488],\n\t\t\t\t\t\t\t[-165.178617, 60.623927],\n\t\t\t\t\t\t\t[-165.170458, 60.629091],\n\t\t\t\t\t\t\t[-165.147184, 60.651160],\n\t\t\t\t\t\t\t[-165.063148, 60.688645],\n\t\t\t\t\t\t\t[-165.052642, 60.690068],\n\t\t\t\t\t\t\t[-165.043300, 60.687468],\n\t\t\t\t\t\t\t[-165.027535, 60.686008],\n\t\t\t\t\t\t\t[-164.991665, 60.698840],\n\t\t\t\t\t\t\t[-164.971250, 60.711434],\n\t\t\t\t\t\t\t[-164.966591, 60.717438],\n\t\t\t\t\t\t\t[-164.965410, 60.724306],\n\t\t\t\t\t\t\t[-164.971839, 60.729730],\n\t\t\t\t\t\t\t[-165.010452, 60.744789],\n\t\t\t\t\t\t\t[-165.023904, 60.753128],\n\t\t\t\t\t\t\t[-165.032074, 60.760022],\n\t\t\t\t\t\t\t[-165.040843, 60.772660],\n\t\t\t\t\t\t\t[-165.042584, 60.784430],\n\t\t\t\t\t\t\t[-165.037889, 60.789010],\n\t\t\t\t\t\t\t[-165.032615, 60.786704],\n\t\t\t\t\t\t\t[-165.020309, 60.785539],\n\t\t\t\t\t\t\t[-164.977663, 60.790360],\n\t\t\t\t\t\t\t[-164.944914, 60.800379],\n\t\t\t\t\t\t\t[-164.924180, 60.809331],\n\t\t\t\t\t\t\t[-164.939313, 60.823463],\n\t\t\t\t\t\t\t[-165.009703, 60.815060],\n\t\t\t\t\t\t\t[-165.021430, 60.815086],\n\t\t\t\t\t\t\t[-165.029620, 60.826001],\n\t\t\t\t\t\t\t[-165.030183, 60.838050],\n\t\t\t\t\t\t\t[-165.003679, 60.875580],\n\t\t\t\t\t\t\t[-164.945958, 60.921060],\n\t\t\t\t\t\t\t[-164.939496, 60.924774],\n\t\t\t\t\t\t\t[-164.925994, 60.925063],\n\t\t\t\t\t\t\t[-164.917542, 60.928144],\n\t\t\t\t\t\t\t[-164.903903, 60.942213],\n\t\t\t\t\t\t\t[-164.921256, 60.946509],\n\t\t\t\t\t\t\t[-164.940065, 60.945369],\n\t\t\t\t\t\t\t[-165.007096, 60.922058],\n\t\t\t\t\t\t\t[-165.032040, 60.903986],\n\t\t\t\t\t\t\t[-165.016941, 60.891071],\n\t\t\t\t\t\t\t[-165.080907, 60.860224],\n\t\t\t\t\t\t\t[-165.132488, 60.850145],\n\t\t\t\t\t\t\t[-165.176774, 60.847149],\n\t\t\t\t\t\t\t[-165.177531, 60.858865],\n\t\t\t\t\t\t\t[-165.223480, 60.896450],\n\t\t\t\t\t\t\t[-165.216942, 60.914322],\n\t\t\t\t\t\t\t[-165.157111, 60.917363],\n\t\t\t\t\t\t\t[-164.797619, 60.982487],\n\t\t\t\t\t\t\t[-164.616585, 60.979049],\n\t\t\t\t\t\t\t[-164.529911, 60.940796],\n\t\t\t\t\t\t\t[-164.234986, 60.988241],\n\t\t\t\t\t\t\t[-164.154702, 61.022625],\n\t\t\t\t\t\t\t[-164.211781, 61.082262],\n\t\t\t\t\t\t\t[-164.201874, 61.151613],\n\t\t\t\t\t\t\t[-164.121482, 61.127000],\n\t\t\t\t\t\t\t[-163.947420, 61.205621],\n\t\t\t\t\t\t\t[-163.992760, 61.371763],\n\t\t\t\t\t\t\t[-163.541623, 61.349559],\n\t\t\t\t\t\t\t[-163.531412, 61.401454],\n\t\t\t\t\t\t\t[-163.431258, 61.484107],\n\t\t\t\t\t\t\t[-163.171354, 61.449071],\n\t\t\t\t\t\t\t[-163.061999, 61.479931],\n\t\t\t\t\t\t\t[-162.847199, 61.498736],\n\t\t\t\t\t\t\t[-162.753980, 61.542666],\n\t\t\t\t\t\t\t[-162.505761, 61.556426],\n\t\t\t\t\t\t\t[-162.476189, 61.503959],\n\t\t\t\t\t\t\t[-162.328294, 61.518376],\n\t\t\t\t\t\t\t[-162.013438, 61.477057],\n\t\t\t\t\t\t\t[-161.885286, 61.482810],\n\t\t\t\t\t\t\t[-161.697058, 61.530087],\n\t\t\t\t\t\t\t[-161.449611, 61.568838],\n\t\t\t\t\t\t\t[-161.126812, 61.599540],\n\t\t\t\t\t\t\t[-160.953961, 61.685669],\n\t\t\t\t\t\t\t[-160.775244, 61.738527],\n\t\t\t\t\t\t\t[-160.597733, 61.760156],\n\t\t\t\t\t\t\t[-160.350140, 61.819071],\n\t\t\t\t\t\t\t[-160.186660, 61.831693],\n\t\t\t\t\t\t\t[-160.469477, 61.869348],\n\t\t\t\t\t\t\t[-160.534142, 61.947257]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US02105\",\n\t\t\t\t\"STATE\": \"02\",\n\t\t\t\t\"COUNTY\": \"105\",\n\t\t\t\t\"NAME\": \"Hoonah-Angoon\",\n\t\t\t\t\"LSAD\": \"CA\",\n\t\t\t\t\"CENSUSAREA\": 7524.915000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-134.713987, 58.220748],\n\t\t\t\t\t\t\t[-134.772720, 58.164862],\n\t\t\t\t\t\t\t[-134.761940, 58.078090],\n\t\t\t\t\t\t\t[-134.672702, 58.027243],\n\t\t\t\t\t\t\t[-134.553923, 58.053616],\n\t\t\t\t\t\t\t[-134.531804, 58.096726],\n\t\t\t\t\t\t\t[-134.177467, 58.159640],\n\t\t\t\t\t\t\t[-134.166332, 58.132558],\n\t\t\t\t\t\t\t[-134.167257, 58.128577],\n\t\t\t\t\t\t\t[-134.174352, 58.125284],\n\t\t\t\t\t\t\t[-134.192724, 58.107685],\n\t\t\t\t\t\t\t[-134.189370, 58.083444],\n\t\t\t\t\t\t\t[-134.183983, 58.077295],\n\t\t\t\t\t\t\t[-134.169743, 58.066845],\n\t\t\t\t\t\t\t[-134.138231, 58.047103],\n\t\t\t\t\t\t\t[-134.098652, 58.018748],\n\t\t\t\t\t\t\t[-134.091885, 58.010777],\n\t\t\t\t\t\t\t[-134.087461, 58.001685],\n\t\t\t\t\t\t\t[-134.087572, 57.996475],\n\t\t\t\t\t\t\t[-134.101549, 57.988716],\n\t\t\t\t\t\t\t[-134.101125, 57.984070],\n\t\t\t\t\t\t\t[-134.089575, 57.974357],\n\t\t\t\t\t\t\t[-134.068949, 57.961083],\n\t\t\t\t\t\t\t[-134.016873, 57.930006],\n\t\t\t\t\t\t\t[-133.999948, 57.914810],\n\t\t\t\t\t\t\t[-133.996340, 57.904167],\n\t\t\t\t\t\t\t[-133.995977, 57.895632],\n\t\t\t\t\t\t\t[-133.963791, 57.854628],\n\t\t\t\t\t\t\t[-133.934735, 57.837626],\n\t\t\t\t\t\t\t[-133.904874, 57.807406],\n\t\t\t\t\t\t\t[-133.902695, 57.797797],\n\t\t\t\t\t\t\t[-133.903854, 57.794818],\n\t\t\t\t\t\t\t[-133.908085, 57.791670],\n\t\t\t\t\t\t\t[-133.909890, 57.780628],\n\t\t\t\t\t\t\t[-133.896846, 57.685524],\n\t\t\t\t\t\t\t[-133.868134, 57.660137],\n\t\t\t\t\t\t\t[-133.837424, 57.638486],\n\t\t\t\t\t\t\t[-133.832895, 57.635733],\n\t\t\t\t\t\t\t[-133.821673, 57.633887],\n\t\t\t\t\t\t\t[-133.817662, 57.629764],\n\t\t\t\t\t\t\t[-133.808285, 57.609604],\n\t\t\t\t\t\t\t[-133.806003, 57.583457],\n\t\t\t\t\t\t\t[-133.807133, 57.578770],\n\t\t\t\t\t\t\t[-133.811640, 57.572365],\n\t\t\t\t\t\t\t[-133.817600, 57.568353],\n\t\t\t\t\t\t\t[-133.840838, 57.576865],\n\t\t\t\t\t\t\t[-133.859635, 57.605325],\n\t\t\t\t\t\t\t[-133.858010, 57.616940],\n\t\t\t\t\t\t\t[-133.863112, 57.623701],\n\t\t\t\t\t\t\t[-133.911329, 57.663562],\n\t\t\t\t\t\t\t[-133.962582, 57.689887],\n\t\t\t\t\t\t\t[-133.970087, 57.695342],\n\t\t\t\t\t\t\t[-133.994964, 57.719821],\n\t\t\t\t\t\t\t[-134.010728, 57.759392],\n\t\t\t\t\t\t\t[-134.013144, 57.789393],\n\t\t\t\t\t\t\t[-134.030820, 57.818646],\n\t\t\t\t\t\t\t[-134.061833, 57.829808],\n\t\t\t\t\t\t\t[-134.098628, 57.850550],\n\t\t\t\t\t\t\t[-134.121337, 57.871236],\n\t\t\t\t\t\t\t[-134.119210, 57.872917],\n\t\t\t\t\t\t\t[-134.121904, 57.882520],\n\t\t\t\t\t\t\t[-134.126105, 57.890260],\n\t\t\t\t\t\t\t[-134.132146, 57.896189],\n\t\t\t\t\t\t\t[-134.151127, 57.903209],\n\t\t\t\t\t\t\t[-134.176606, 57.909725],\n\t\t\t\t\t\t\t[-134.202353, 57.906330],\n\t\t\t\t\t\t\t[-134.206874, 57.895901],\n\t\t\t\t\t\t\t[-134.163120, 57.848669],\n\t\t\t\t\t\t\t[-134.112948, 57.809263],\n\t\t\t\t\t\t\t[-134.105408, 57.795974],\n\t\t\t\t\t\t\t[-134.099782, 57.780261],\n\t\t\t\t\t\t\t[-134.100899, 57.776779],\n\t\t\t\t\t\t\t[-134.146342, 57.760258],\n\t\t\t\t\t\t\t[-134.127700, 57.739216],\n\t\t\t\t\t\t\t[-134.116097, 57.727582],\n\t\t\t\t\t\t\t[-134.020169, 57.656734],\n\t\t\t\t\t\t\t[-134.013367, 57.655898],\n\t\t\t\t\t\t\t[-133.993974, 57.649095],\n\t\t\t\t\t\t\t[-133.958454, 57.629537],\n\t\t\t\t\t\t\t[-133.935976, 57.614414],\n\t\t\t\t\t\t\t[-133.934361, 57.601765],\n\t\t\t\t\t\t\t[-133.945156, 57.569841],\n\t\t\t\t\t\t\t[-133.943417, 57.561555],\n\t\t\t\t\t\t\t[-133.933216, 57.544450],\n\t\t\t\t\t\t\t[-133.920557, 57.530088],\n\t\t\t\t\t\t\t[-133.901074, 57.517219],\n\t\t\t\t\t\t\t[-133.886269, 57.504999],\n\t\t\t\t\t\t\t[-133.857368, 57.463964],\n\t\t\t\t\t\t\t[-133.927539, 57.469570],\n\t\t\t\t\t\t\t[-133.925527, 57.456650],\n\t\t\t\t\t\t\t[-133.870327, 57.381298],\n\t\t\t\t\t\t\t[-133.866931, 57.367869],\n\t\t\t\t\t\t\t[-133.867279, 57.362060],\n\t\t\t\t\t\t\t[-133.870657, 57.358287],\n\t\t\t\t\t\t\t[-133.962897, 57.305425],\n\t\t\t\t\t\t\t[-133.968495, 57.303937],\n\t\t\t\t\t\t\t[-133.983501, 57.302838],\n\t\t\t\t\t\t\t[-134.008394, 57.317522],\n\t\t\t\t\t\t\t[-134.034563, 57.327638],\n\t\t\t\t\t\t\t[-134.055618, 57.330194],\n\t\t\t\t\t\t\t[-134.094891, 57.326401],\n\t\t\t\t\t\t\t[-134.100587, 57.321738],\n\t\t\t\t\t\t\t[-134.084374, 57.303963],\n\t\t\t\t\t\t\t[-134.080495, 57.297678],\n\t\t\t\t\t\t\t[-134.110315, 57.249948],\n\t\t\t\t\t\t\t[-134.155390, 57.208003],\n\t\t\t\t\t\t\t[-134.193629, 57.184879],\n\t\t\t\t\t\t\t[-134.292760, 57.137049],\n\t\t\t\t\t\t\t[-134.302721, 57.136562],\n\t\t\t\t\t\t\t[-134.349602, 57.124638],\n\t\t\t\t\t\t\t[-134.378359, 57.115016],\n\t\t\t\t\t\t\t[-134.370797, 57.099924],\n\t\t\t\t\t\t\t[-134.386052, 57.087392],\n\t\t\t\t\t\t\t[-134.481167, 57.046006],\n\t\t\t\t\t\t\t[-134.484288, 57.036481],\n\t\t\t\t\t\t\t[-134.497718, 57.031194],\n\t\t\t\t\t\t\t[-134.565687, 57.023737],\n\t\t\t\t\t\t\t[-134.601407, 57.033812],\n\t\t\t\t\t\t\t[-134.634565, 57.109863],\n\t\t\t\t\t\t\t[-134.646773, 57.226327],\n\t\t\t\t\t\t\t[-134.640169, 57.239852],\n\t\t\t\t\t\t\t[-134.605032, 57.273000],\n\t\t\t\t\t\t\t[-134.570954, 57.294624],\n\t\t\t\t\t\t\t[-134.517279, 57.314567],\n\t\t\t\t\t\t\t[-134.543385, 57.337414],\n\t\t\t\t\t\t\t[-134.559794, 57.336138],\n\t\t\t\t\t\t\t[-134.574114, 57.341172],\n\t\t\t\t\t\t\t[-134.575492, 57.343694],\n\t\t\t\t\t\t\t[-134.578511, 57.400291],\n\t\t\t\t\t\t\t[-134.555540, 57.407428],\n\t\t\t\t\t\t\t[-134.527594, 57.405331],\n\t\t\t\t\t\t\t[-134.525997, 57.397845],\n\t\t\t\t\t\t\t[-134.527759, 57.393940],\n\t\t\t\t\t\t\t[-134.527873, 57.389874],\n\t\t\t\t\t\t\t[-134.486023, 57.372492],\n\t\t\t\t\t\t\t[-134.477240, 57.374401],\n\t\t\t\t\t\t\t[-134.464032, 57.392184],\n\t\t\t\t\t\t\t[-134.544853, 57.457872],\n\t\t\t\t\t\t\t[-134.607557, 57.513042],\n\t\t\t\t\t\t\t[-134.598452, 57.522395],\n\t\t\t\t\t\t\t[-134.595981, 57.534107],\n\t\t\t\t\t\t\t[-134.611177, 57.563137],\n\t\t\t\t\t\t\t[-134.665337, 57.605701],\n\t\t\t\t\t\t\t[-134.674438, 57.614409],\n\t\t\t\t\t\t\t[-134.695428, 57.685335],\n\t\t\t\t\t\t\t[-134.700518, 57.695966],\n\t\t\t\t\t\t\t[-134.704859, 57.701457],\n\t\t\t\t\t\t\t[-134.720351, 57.707052],\n\t\t\t\t\t\t\t[-134.731798, 57.721921],\n\t\t\t\t\t\t\t[-134.728792, 57.756640],\n\t\t\t\t\t\t\t[-134.709024, 57.780498],\n\t\t\t\t\t\t\t[-134.705869, 57.828929],\n\t\t\t\t\t\t\t[-134.727077, 57.877098],\n\t\t\t\t\t\t\t[-134.737475, 57.890790],\n\t\t\t\t\t\t\t[-134.746108, 57.898529],\n\t\t\t\t\t\t\t[-134.758833, 57.980212],\n\t\t\t\t\t\t\t[-134.765290, 57.993762],\n\t\t\t\t\t\t\t[-134.777022, 58.004679],\n\t\t\t\t\t\t\t[-134.796804, 58.058855],\n\t\t\t\t\t\t\t[-134.783772, 58.082292],\n\t\t\t\t\t\t\t[-134.784927, 58.096793],\n\t\t\t\t\t\t\t[-134.820663, 58.141465],\n\t\t\t\t\t\t\t[-134.857221, 58.176288],\n\t\t\t\t\t\t\t[-134.864299, 58.180489],\n\t\t\t\t\t\t\t[-134.877918, 58.181535],\n\t\t\t\t\t\t\t[-134.885857, 58.184031],\n\t\t\t\t\t\t\t[-134.899665, 58.194320],\n\t\t\t\t\t\t\t[-134.914857, 58.214932],\n\t\t\t\t\t\t\t[-134.948327, 58.281316],\n\t\t\t\t\t\t\t[-134.969189, 58.367542],\n\t\t\t\t\t\t\t[-134.960502, 58.403758],\n\t\t\t\t\t\t\t[-134.955902, 58.410297],\n\t\t\t\t\t\t\t[-134.897292, 58.376890],\n\t\t\t\t\t\t\t[-134.806116, 58.321284],\n\t\t\t\t\t\t\t[-134.803831, 58.316567],\n\t\t\t\t\t\t\t[-134.802388, 58.301070],\n\t\t\t\t\t\t\t[-134.779354, 58.281279],\n\t\t\t\t\t\t\t[-134.760052, 58.275251],\n\t\t\t\t\t\t\t[-134.729861, 58.273512],\n\t\t\t\t\t\t\t[-134.724463, 58.268277],\n\t\t\t\t\t\t\t[-134.713987, 58.220748]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-132.367984, 57.348685],\n\t\t\t\t\t\t\t[-132.487307, 57.354227],\n\t\t\t\t\t\t\t[-132.644590, 57.426343],\n\t\t\t\t\t\t\t[-132.986359, 57.330823],\n\t\t\t\t\t\t\t[-133.029298, 57.235539],\n\t\t\t\t\t\t\t[-133.126997, 57.186322],\n\t\t\t\t\t\t\t[-133.299692, 57.237727],\n\t\t\t\t\t\t\t[-133.517194, 57.177775],\n\t\t\t\t\t\t\t[-133.517197, 57.177776],\n\t\t\t\t\t\t\t[-133.544817, 57.242570],\n\t\t\t\t\t\t\t[-133.542565, 57.250682],\n\t\t\t\t\t\t\t[-133.522837, 57.278580],\n\t\t\t\t\t\t\t[-133.489738, 57.305192],\n\t\t\t\t\t\t\t[-133.475890, 57.307982],\n\t\t\t\t\t\t\t[-133.455936, 57.303970],\n\t\t\t\t\t\t\t[-133.444958, 57.297729],\n\t\t\t\t\t\t\t[-133.442436, 57.289978],\n\t\t\t\t\t\t\t[-133.425948, 57.285995],\n\t\t\t\t\t\t\t[-133.371591, 57.286713],\n\t\t\t\t\t\t\t[-133.307565, 57.290052],\n\t\t\t\t\t\t\t[-133.287052, 57.302920],\n\t\t\t\t\t\t\t[-133.274829, 57.330625],\n\t\t\t\t\t\t\t[-133.283510, 57.333119],\n\t\t\t\t\t\t\t[-133.342070, 57.336798],\n\t\t\t\t\t\t\t[-133.354720, 57.333253],\n\t\t\t\t\t\t\t[-133.403868, 57.342685],\n\t\t\t\t\t\t\t[-133.442682, 57.352845],\n\t\t\t\t\t\t\t[-133.453783, 57.356240],\n\t\t\t\t\t\t\t[-133.468267, 57.364217],\n\t\t\t\t\t\t\t[-133.472039, 57.368651],\n\t\t\t\t\t\t\t[-133.475998, 57.380394],\n\t\t\t\t\t\t\t[-133.472454, 57.388446],\n\t\t\t\t\t\t\t[-133.461179, 57.394577],\n\t\t\t\t\t\t\t[-133.503115, 57.453528],\n\t\t\t\t\t\t\t[-133.525140, 57.490344],\n\t\t\t\t\t\t\t[-133.525830, 57.501777],\n\t\t\t\t\t\t\t[-133.516749, 57.543911],\n\t\t\t\t\t\t\t[-133.510806, 57.548139],\n\t\t\t\t\t\t\t[-133.496365, 57.548772],\n\t\t\t\t\t\t\t[-133.488197, 57.551387],\n\t\t\t\t\t\t\t[-133.478086, 57.561730],\n\t\t\t\t\t\t\t[-133.481221, 57.571470],\n\t\t\t\t\t\t\t[-133.505982, 57.578459],\n\t\t\t\t\t\t\t[-133.528313, 57.573944],\n\t\t\t\t\t\t\t[-133.531905, 57.569466],\n\t\t\t\t\t\t\t[-133.537860, 57.567292],\n\t\t\t\t\t\t\t[-133.565478, 57.563095],\n\t\t\t\t\t\t\t[-133.578948, 57.565094],\n\t\t\t\t\t\t\t[-133.620760, 57.578919],\n\t\t\t\t\t\t\t[-133.664390, 57.611707],\n\t\t\t\t\t\t\t[-133.676449, 57.625192],\n\t\t\t\t\t\t\t[-133.680963, 57.648265],\n\t\t\t\t\t\t\t[-133.658550, 57.707924],\n\t\t\t\t\t\t\t[-133.654530, 57.713689],\n\t\t\t\t\t\t\t[-133.582212, 57.715095],\n\t\t\t\t\t\t\t[-133.543928, 57.696454],\n\t\t\t\t\t\t\t[-133.530957, 57.686914],\n\t\t\t\t\t\t\t[-133.522243, 57.683663],\n\t\t\t\t\t\t\t[-133.489677, 57.677141],\n\t\t\t\t\t\t\t[-133.441215, 57.672013],\n\t\t\t\t\t\t\t[-133.404980, 57.663783],\n\t\t\t\t\t\t\t[-133.234598, 57.608749],\n\t\t\t\t\t\t\t[-133.188864, 57.589071],\n\t\t\t\t\t\t\t[-133.179062, 57.587147],\n\t\t\t\t\t\t\t[-133.162464, 57.599796],\n\t\t\t\t\t\t\t[-133.174032, 57.610062],\n\t\t\t\t\t\t\t[-133.251126, 57.649966],\n\t\t\t\t\t\t\t[-133.278209, 57.661859],\n\t\t\t\t\t\t\t[-133.291062, 57.665358],\n\t\t\t\t\t\t\t[-133.322532, 57.665830],\n\t\t\t\t\t\t\t[-133.485403, 57.738677],\n\t\t\t\t\t\t\t[-133.545031, 57.767970],\n\t\t\t\t\t\t\t[-133.559889, 57.777457],\n\t\t\t\t\t\t\t[-133.556097, 57.788830],\n\t\t\t\t\t\t\t[-133.569787, 57.859365],\n\t\t\t\t\t\t\t[-133.602032, 57.860394],\n\t\t\t\t\t\t\t[-133.569210, 57.885350],\n\t\t\t\t\t\t\t[-133.176444, 58.150151],\n\t\t\t\t\t\t\t[-133.076421, 57.999762],\n\t\t\t\t\t\t\t[-132.869318, 57.842941],\n\t\t\t\t\t\t\t[-132.756813, 57.705093],\n\t\t\t\t\t\t\t[-132.658124, 57.619486],\n\t\t\t\t\t\t\t[-132.559178, 57.503927],\n\t\t\t\t\t\t\t[-132.367984, 57.348685]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-135.587961, 57.897320],\n\t\t\t\t\t\t\t[-135.899839, 58.001387],\n\t\t\t\t\t\t\t[-135.906742, 58.001266],\n\t\t\t\t\t\t\t[-136.026713, 57.835869],\n\t\t\t\t\t\t\t[-136.370705, 57.831668],\n\t\t\t\t\t\t\t[-136.372377, 57.832587],\n\t\t\t\t\t\t\t[-136.391157, 57.832653],\n\t\t\t\t\t\t\t[-136.458829, 57.853901],\n\t\t\t\t\t\t\t[-136.474424, 57.871648],\n\t\t\t\t\t\t\t[-136.484259, 57.896460],\n\t\t\t\t\t\t\t[-136.534201, 57.913938],\n\t\t\t\t\t\t\t[-136.557651, 57.912135],\n\t\t\t\t\t\t\t[-136.572045, 57.918469],\n\t\t\t\t\t\t\t[-136.573288, 57.926844],\n\t\t\t\t\t\t\t[-136.563223, 58.035052],\n\t\t\t\t\t\t\t[-136.559999, 58.063358],\n\t\t\t\t\t\t\t[-136.556247, 58.077019],\n\t\t\t\t\t\t\t[-136.538708, 58.093482],\n\t\t\t\t\t\t\t[-136.500119, 58.104787],\n\t\t\t\t\t\t\t[-136.475811, 58.101294],\n\t\t\t\t\t\t\t[-136.469272, 58.096868],\n\t\t\t\t\t\t\t[-136.420449, 58.131857],\n\t\t\t\t\t\t\t[-136.375338, 58.208714],\n\t\t\t\t\t\t\t[-136.387114, 58.252414],\n\t\t\t\t\t\t\t[-136.377329, 58.268328],\n\t\t\t\t\t\t\t[-136.311596, 58.270388],\n\t\t\t\t\t\t\t[-136.287765, 58.267373],\n\t\t\t\t\t\t\t[-136.286263, 58.259741],\n\t\t\t\t\t\t\t[-136.289842, 58.249086],\n\t\t\t\t\t\t\t[-136.283886, 58.223685],\n\t\t\t\t\t\t\t[-136.277477, 58.208856],\n\t\t\t\t\t\t\t[-136.235246, 58.154416],\n\t\t\t\t\t\t\t[-136.190155, 58.161301],\n\t\t\t\t\t\t\t[-136.190382, 58.164473],\n\t\t\t\t\t\t\t[-136.194557, 58.171811],\n\t\t\t\t\t\t\t[-136.199498, 58.172086],\n\t\t\t\t\t\t\t[-136.203642, 58.174416],\n\t\t\t\t\t\t\t[-136.199854, 58.180871],\n\t\t\t\t\t\t\t[-136.162108, 58.218724],\n\t\t\t\t\t\t\t[-136.139007, 58.224393],\n\t\t\t\t\t\t\t[-136.036160, 58.219210],\n\t\t\t\t\t\t\t[-136.033030, 58.205462],\n\t\t\t\t\t\t\t[-135.976386, 58.202029],\n\t\t\t\t\t\t\t[-135.966119, 58.211386],\n\t\t\t\t\t\t\t[-135.914178, 58.244073],\n\t\t\t\t\t\t\t[-135.823562, 58.282975],\n\t\t\t\t\t\t\t[-135.801133, 58.287716],\n\t\t\t\t\t\t\t[-135.783380, 58.286709],\n\t\t\t\t\t\t\t[-135.764372, 58.266276],\n\t\t\t\t\t\t\t[-135.735100, 58.240213],\n\t\t\t\t\t\t\t[-135.712398, 58.231892],\n\t\t\t\t\t\t\t[-135.630521, 58.222933],\n\t\t\t\t\t\t\t[-135.589198, 58.213677],\n\t\t\t\t\t\t\t[-135.522646, 58.185909],\n\t\t\t\t\t\t\t[-135.504671, 58.174914],\n\t\t\t\t\t\t\t[-135.497911, 58.168882],\n\t\t\t\t\t\t\t[-135.524668, 58.120750],\n\t\t\t\t\t\t\t[-135.540712, 58.101750],\n\t\t\t\t\t\t\t[-135.586820, 58.081670],\n\t\t\t\t\t\t\t[-135.651368, 58.036484],\n\t\t\t\t\t\t\t[-135.638490, 57.994508],\n\t\t\t\t\t\t\t[-135.621582, 57.984623],\n\t\t\t\t\t\t\t[-135.593287, 57.989636],\n\t\t\t\t\t\t\t[-135.581753, 57.997568],\n\t\t\t\t\t\t\t[-135.564307, 58.015007],\n\t\t\t\t\t\t\t[-135.567817, 58.023420],\n\t\t\t\t\t\t\t[-135.565443, 58.041120],\n\t\t\t\t\t\t\t[-135.563434, 58.043491],\n\t\t\t\t\t\t\t[-135.544529, 58.060880],\n\t\t\t\t\t\t\t[-135.496739, 58.086212],\n\t\t\t\t\t\t\t[-135.451444, 58.134348],\n\t\t\t\t\t\t\t[-135.420107, 58.144202],\n\t\t\t\t\t\t\t[-135.411777, 58.145473],\n\t\t\t\t\t\t\t[-135.397518, 58.144155],\n\t\t\t\t\t\t\t[-135.275797, 58.097024],\n\t\t\t\t\t\t\t[-135.260951, 58.097323],\n\t\t\t\t\t\t\t[-135.108896, 58.088270],\n\t\t\t\t\t\t\t[-135.084832, 58.080869],\n\t\t\t\t\t\t\t[-135.082981, 58.074737],\n\t\t\t\t\t\t\t[-135.070700, 58.061242],\n\t\t\t\t\t\t\t[-134.977183, 58.049943],\n\t\t\t\t\t\t\t[-134.967723, 58.047625],\n\t\t\t\t\t\t\t[-134.950844, 58.036993],\n\t\t\t\t\t\t\t[-134.935005, 58.021639],\n\t\t\t\t\t\t\t[-134.912854, 57.979287],\n\t\t\t\t\t\t\t[-134.921104, 57.935298],\n\t\t\t\t\t\t\t[-134.926395, 57.921919],\n\t\t\t\t\t\t\t[-135.004952, 57.884338],\n\t\t\t\t\t\t\t[-135.140674, 57.926114],\n\t\t\t\t\t\t\t[-135.173712, 57.919399],\n\t\t\t\t\t\t\t[-135.165220, 57.901524],\n\t\t\t\t\t\t\t[-135.146717, 57.891656],\n\t\t\t\t\t\t\t[-135.131957, 57.885241],\n\t\t\t\t\t\t\t[-135.065720, 57.869451],\n\t\t\t\t\t\t\t[-134.991819, 57.835436],\n\t\t\t\t\t\t\t[-134.954547, 57.815785],\n\t\t\t\t\t\t\t[-134.949436, 57.805027],\n\t\t\t\t\t\t\t[-135.023370, 57.780537],\n\t\t\t\t\t\t\t[-135.198960, 57.775092],\n\t\t\t\t\t\t\t[-135.225158, 57.777783],\n\t\t\t\t\t\t\t[-135.313776, 57.805739],\n\t\t\t\t\t\t\t[-135.343991, 57.821444],\n\t\t\t\t\t\t\t[-135.389894, 57.850991],\n\t\t\t\t\t\t\t[-135.418517, 57.860506],\n\t\t\t\t\t\t\t[-135.514151, 57.885371],\n\t\t\t\t\t\t\t[-135.552802, 57.902711],\n\t\t\t\t\t\t\t[-135.581326, 57.903056],\n\t\t\t\t\t\t\t[-135.587961, 57.897320]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-135.447381, 58.399891],\n\t\t\t\t\t\t\t[-135.461296, 58.399884],\n\t\t\t\t\t\t\t[-135.466083, 58.394328],\n\t\t\t\t\t\t\t[-135.512402, 58.385759],\n\t\t\t\t\t\t\t[-135.521358, 58.391449],\n\t\t\t\t\t\t\t[-135.556066, 58.407740],\n\t\t\t\t\t\t\t[-135.622105, 58.428186],\n\t\t\t\t\t\t\t[-135.630425, 58.428580],\n\t\t\t\t\t\t\t[-135.728054, 58.397067],\n\t\t\t\t\t\t\t[-135.826079, 58.390246],\n\t\t\t\t\t\t\t[-135.907310, 58.380839],\n\t\t\t\t\t\t\t[-135.917917, 58.381237],\n\t\t\t\t\t\t\t[-135.921134, 58.385772],\n\t\t\t\t\t\t\t[-135.920299, 58.389084],\n\t\t\t\t\t\t\t[-135.897255, 58.416132],\n\t\t\t\t\t\t\t[-135.897169, 58.450001],\n\t\t\t\t\t\t\t[-135.916112, 58.463858],\n\t\t\t\t\t\t\t[-135.923268, 58.462919],\n\t\t\t\t\t\t\t[-135.934547, 58.451953],\n\t\t\t\t\t\t\t[-135.939926, 58.451600],\n\t\t\t\t\t\t\t[-135.987564, 58.464420],\n\t\t\t\t\t\t\t[-135.997418, 58.470375],\n\t\t\t\t\t\t\t[-135.999530, 58.480281],\n\t\t\t\t\t\t\t[-135.990948, 58.487315],\n\t\t\t\t\t\t\t[-135.968087, 58.494669],\n\t\t\t\t\t\t\t[-135.955625, 58.492765],\n\t\t\t\t\t\t\t[-135.945121, 58.494836],\n\t\t\t\t\t\t\t[-135.906941, 58.505810],\n\t\t\t\t\t\t\t[-135.893152, 58.513929],\n\t\t\t\t\t\t\t[-135.895088, 58.534077],\n\t\t\t\t\t\t\t[-135.914003, 58.540583],\n\t\t\t\t\t\t\t[-135.928572, 58.572925],\n\t\t\t\t\t\t\t[-135.912187, 58.618800],\n\t\t\t\t\t\t\t[-136.012226, 58.712247],\n\t\t\t\t\t\t\t[-136.015761, 58.722600],\n\t\t\t\t\t\t\t[-136.008929, 58.731910],\n\t\t\t\t\t\t\t[-136.011669, 58.743276],\n\t\t\t\t\t\t\t[-136.046172, 58.781796],\n\t\t\t\t\t\t\t[-136.082937, 58.808383],\n\t\t\t\t\t\t\t[-136.089603, 58.815729],\n\t\t\t\t\t\t\t[-136.077276, 58.824983],\n\t\t\t\t\t\t\t[-136.045279, 58.836074],\n\t\t\t\t\t\t\t[-136.050351, 58.913433],\n\t\t\t\t\t\t\t[-136.060728, 58.927580],\n\t\t\t\t\t\t\t[-136.120307, 58.968418],\n\t\t\t\t\t\t\t[-136.145306, 58.976705],\n\t\t\t\t\t\t\t[-136.162725, 58.977261],\n\t\t\t\t\t\t\t[-136.163648, 58.973204],\n\t\t\t\t\t\t\t[-136.160293, 58.961999],\n\t\t\t\t\t\t\t[-136.150300, 58.947111],\n\t\t\t\t\t\t\t[-136.124491, 58.924542],\n\t\t\t\t\t\t\t[-136.106997, 58.864441],\n\t\t\t\t\t\t\t[-136.150772, 58.757266],\n\t\t\t\t\t\t\t[-136.161943, 58.752171],\n\t\t\t\t\t\t\t[-136.213660, 58.751153],\n\t\t\t\t\t\t\t[-136.247343, 58.752935],\n\t\t\t\t\t\t\t[-136.397322, 58.813019],\n\t\t\t\t\t\t\t[-136.431055, 58.818416],\n\t\t\t\t\t\t\t[-136.474735, 58.830788],\n\t\t\t\t\t\t\t[-136.493716, 58.838963],\n\t\t\t\t\t\t\t[-136.528161, 58.928484],\n\t\t\t\t\t\t\t[-136.526520, 58.954523],\n\t\t\t\t\t\t\t[-136.544899, 58.967314],\n\t\t\t\t\t\t\t[-136.559836, 58.963414],\n\t\t\t\t\t\t\t[-136.572163, 58.957292],\n\t\t\t\t\t\t\t[-136.575516, 58.946600],\n\t\t\t\t\t\t\t[-136.575541, 58.928941],\n\t\t\t\t\t\t\t[-136.586289, 58.909364],\n\t\t\t\t\t\t\t[-136.630497, 58.890256],\n\t\t\t\t\t\t\t[-136.670412, 58.893224],\n\t\t\t\t\t\t\t[-136.676898, 58.894973],\n\t\t\t\t\t\t\t[-136.694600, 58.904081],\n\t\t\t\t\t\t\t[-136.704848, 58.914395],\n\t\t\t\t\t\t\t[-136.724994, 58.923514],\n\t\t\t\t\t\t\t[-136.750422, 58.930439],\n\t\t\t\t\t\t\t[-136.782908, 58.936659],\n\t\t\t\t\t\t\t[-136.788710, 58.936318],\n\t\t\t\t\t\t\t[-136.802832, 58.923118],\n\t\t\t\t\t\t\t[-136.840986, 58.919742],\n\t\t\t\t\t\t\t[-136.860014, 58.931997],\n\t\t\t\t\t\t\t[-136.857823, 58.942868],\n\t\t\t\t\t\t\t[-136.877826, 58.962392],\n\t\t\t\t\t\t\t[-136.918530, 58.947217],\n\t\t\t\t\t\t\t[-136.915995, 58.938384],\n\t\t\t\t\t\t\t[-136.932352, 58.916252],\n\t\t\t\t\t\t\t[-136.934841, 58.916345],\n\t\t\t\t\t\t\t[-136.933458, 58.908558],\n\t\t\t\t\t\t\t[-136.928643, 58.900131],\n\t\t\t\t\t\t\t[-136.868184, 58.885243],\n\t\t\t\t\t\t\t[-136.767930, 58.870608],\n\t\t\t\t\t\t\t[-136.744507, 58.876626],\n\t\t\t\t\t\t\t[-136.676388, 58.856348],\n\t\t\t\t\t\t\t[-136.612807, 58.846227],\n\t\t\t\t\t\t\t[-136.583430, 58.838826],\n\t\t\t\t\t\t\t[-136.538029, 58.819777],\n\t\t\t\t\t\t\t[-136.463258, 58.781607],\n\t\t\t\t\t\t\t[-136.356786, 58.692581],\n\t\t\t\t\t\t\t[-136.354222, 58.684304],\n\t\t\t\t\t\t\t[-136.372775, 58.667410],\n\t\t\t\t\t\t\t[-136.396076, 58.654421],\n\t\t\t\t\t\t\t[-136.409876, 58.649250],\n\t\t\t\t\t\t\t[-136.422309, 58.647412],\n\t\t\t\t\t\t\t[-136.449827, 58.637816],\n\t\t\t\t\t\t\t[-136.482395, 58.616739],\n\t\t\t\t\t\t\t[-136.459436, 58.607880],\n\t\t\t\t\t\t\t[-136.383327, 58.629987],\n\t\t\t\t\t\t\t[-136.342827, 58.645030],\n\t\t\t\t\t\t\t[-136.331366, 58.663545],\n\t\t\t\t\t\t\t[-136.317193, 58.671231],\n\t\t\t\t\t\t\t[-136.246368, 58.663185],\n\t\t\t\t\t\t\t[-136.232481, 58.677144],\n\t\t\t\t\t\t\t[-136.223308, 58.675028],\n\t\t\t\t\t\t\t[-136.213659, 58.665054],\n\t\t\t\t\t\t\t[-136.194207, 58.581731],\n\t\t\t\t\t\t\t[-136.181596, 58.535019],\n\t\t\t\t\t\t\t[-136.170498, 58.527323],\n\t\t\t\t\t\t\t[-136.100303, 58.500673],\n\t\t\t\t\t\t\t[-136.103925, 58.478001],\n\t\t\t\t\t\t\t[-136.083551, 58.447115],\n\t\t\t\t\t\t\t[-136.062165, 58.435795],\n\t\t\t\t\t\t\t[-136.053028, 58.417375],\n\t\t\t\t\t\t\t[-136.041818, 58.380161],\n\t\t\t\t\t\t\t[-136.092646, 58.348990],\n\t\t\t\t\t\t\t[-136.111930, 58.342530],\n\t\t\t\t\t\t\t[-136.265906, 58.314499],\n\t\t\t\t\t\t\t[-136.276769, 58.313894],\n\t\t\t\t\t\t\t[-136.288255, 58.316144],\n\t\t\t\t\t\t\t[-136.296281, 58.318447],\n\t\t\t\t\t\t\t[-136.304158, 58.323450],\n\t\t\t\t\t\t\t[-136.305121, 58.328691],\n\t\t\t\t\t\t\t[-136.303092, 58.336277],\n\t\t\t\t\t\t\t[-136.298718, 58.342941],\n\t\t\t\t\t\t\t[-136.290055, 58.351447],\n\t\t\t\t\t\t\t[-136.281631, 58.353090],\n\t\t\t\t\t\t\t[-136.273929, 58.363409],\n\t\t\t\t\t\t\t[-136.282604, 58.367261],\n\t\t\t\t\t\t\t[-136.288867, 58.369649],\n\t\t\t\t\t\t\t[-136.336728, 58.377570],\n\t\t\t\t\t\t\t[-136.382035, 58.362694],\n\t\t\t\t\t\t\t[-136.365148, 58.346663],\n\t\t\t\t\t\t\t[-136.360416, 58.344077],\n\t\t\t\t\t\t\t[-136.357115, 58.328838],\n\t\t\t\t\t\t\t[-136.370979, 58.301643],\n\t\t\t\t\t\t\t[-136.376464, 58.298625],\n\t\t\t\t\t\t\t[-136.389964, 58.297070],\n\t\t\t\t\t\t\t[-136.472020, 58.306356],\n\t\t\t\t\t\t\t[-136.532824, 58.334072],\n\t\t\t\t\t\t\t[-136.550003, 58.340371],\n\t\t\t\t\t\t\t[-136.593029, 58.349793],\n\t\t\t\t\t\t\t[-136.613500, 58.347889],\n\t\t\t\t\t\t\t[-136.630425, 58.340607],\n\t\t\t\t\t\t\t[-136.638634, 58.328458],\n\t\t\t\t\t\t\t[-136.626345, 58.320590],\n\t\t\t\t\t\t\t[-136.576799, 58.277951],\n\t\t\t\t\t\t\t[-136.569831, 58.268700],\n\t\t\t\t\t\t\t[-136.567956, 58.245153],\n\t\t\t\t\t\t\t[-136.591924, 58.217886],\n\t\t\t\t\t\t\t[-136.597198, 58.215006],\n\t\t\t\t\t\t\t[-136.619824, 58.209899],\n\t\t\t\t\t\t\t[-136.658638, 58.207323],\n\t\t\t\t\t\t\t[-136.701250, 58.219416],\n\t\t\t\t\t\t\t[-136.723391, 58.244926],\n\t\t\t\t\t\t\t[-136.730885, 58.256496],\n\t\t\t\t\t\t\t[-136.717093, 58.273508],\n\t\t\t\t\t\t\t[-136.730218, 58.286153],\n\t\t\t\t\t\t\t[-136.762198, 58.286765],\n\t\t\t\t\t\t\t[-136.784326, 58.290497],\n\t\t\t\t\t\t\t[-136.857605, 58.316360],\n\t\t\t\t\t\t\t[-136.848992, 58.328994],\n\t\t\t\t\t\t\t[-136.946663, 58.393185],\n\t\t\t\t\t\t\t[-136.986384, 58.404043],\n\t\t\t\t\t\t\t[-137.009415, 58.408877],\n\t\t\t\t\t\t\t[-137.018409, 58.409141],\n\t\t\t\t\t\t\t[-137.078109, 58.397474],\n\t\t\t\t\t\t\t[-137.111802, 58.392594],\n\t\t\t\t\t\t\t[-137.134453, 58.406596],\n\t\t\t\t\t\t\t[-137.180029, 58.429939],\n\t\t\t\t\t\t\t[-137.239366, 58.453159],\n\t\t\t\t\t\t\t[-137.252710, 58.456338],\n\t\t\t\t\t\t\t[-137.278612, 58.459484],\n\t\t\t\t\t\t\t[-137.295788, 58.466179],\n\t\t\t\t\t\t\t[-137.408758, 58.515822],\n\t\t\t\t\t\t\t[-137.497002, 58.557721],\n\t\t\t\t\t\t\t[-137.568216, 58.587989],\n\t\t\t\t\t\t\t[-137.608804, 58.601234],\n\t\t\t\t\t\t\t[-137.632889, 58.599982],\n\t\t\t\t\t\t\t[-137.671690, 58.615523],\n\t\t\t\t\t\t\t[-137.680811, 58.621835],\n\t\t\t\t\t\t\t[-137.676857, 58.646770],\n\t\t\t\t\t\t\t[-137.683516, 58.660267],\n\t\t\t\t\t\t\t[-137.687627, 58.664989],\n\t\t\t\t\t\t\t[-137.795037, 58.724855],\n\t\t\t\t\t\t\t[-137.875350, 58.757232],\n\t\t\t\t\t\t\t[-137.901675, 58.765316],\n\t\t\t\t\t\t\t[-137.928156, 58.780533],\n\t\t\t\t\t\t\t[-137.941828, 58.794322],\n\t\t\t\t\t\t\t[-137.944259, 58.802349],\n\t\t\t\t\t\t\t[-137.525295, 58.906872],\n\t\t\t\t\t\t\t[-137.447383, 58.909513],\n\t\t\t\t\t\t\t[-137.264752, 59.002352],\n\t\t\t\t\t\t\t[-136.863896, 59.138472],\n\t\t\t\t\t\t\t[-136.826633, 59.158389],\n\t\t\t\t\t\t\t[-136.581521, 59.164909],\n\t\t\t\t\t\t\t[-136.486609, 59.261108],\n\t\t\t\t\t\t\t[-136.368850, 59.232652],\n\t\t\t\t\t\t\t[-136.122285, 59.207775],\n\t\t\t\t\t\t\t[-136.053534, 59.177538],\n\t\t\t\t\t\t\t[-135.892056, 59.172783],\n\t\t\t\t\t\t\t[-135.701868, 59.104076],\n\t\t\t\t\t\t\t[-135.688248, 59.016726],\n\t\t\t\t\t\t\t[-135.585301, 58.986033],\n\t\t\t\t\t\t\t[-135.604265, 58.909481],\n\t\t\t\t\t\t\t[-135.522232, 58.889400],\n\t\t\t\t\t\t\t[-135.682038, 58.858190],\n\t\t\t\t\t\t\t[-135.757086, 58.742314],\n\t\t\t\t\t\t\t[-135.548348, 58.698345],\n\t\t\t\t\t\t\t[-135.528150, 58.655985],\n\t\t\t\t\t\t\t[-135.401945, 58.616146],\n\t\t\t\t\t\t\t[-135.413387, 58.584665],\n\t\t\t\t\t\t\t[-135.318523, 58.500523],\n\t\t\t\t\t\t\t[-135.496814, 58.498602],\n\t\t\t\t\t\t\t[-135.447381, 58.399891]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US02122\",\n\t\t\t\t\"STATE\": \"02\",\n\t\t\t\t\"COUNTY\": \"122\",\n\t\t\t\t\"NAME\": \"Kenai Peninsula\",\n\t\t\t\t\"LSAD\": \"Borough\",\n\t\t\t\t\"CENSUSAREA\": 16075.331000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-148.745578, 60.733881],\n\t\t\t\t\t\t\t[-148.655444, 60.734542],\n\t\t\t\t\t\t\t[-148.666606, 60.423056],\n\t\t\t\t\t\t\t[-148.562368, 60.422593],\n\t\t\t\t\t\t\t[-148.583640, 59.961477],\n\t\t\t\t\t\t\t[-148.673822, 59.944828],\n\t\t\t\t\t\t\t[-148.676172, 59.947216],\n\t\t\t\t\t\t\t[-148.675485, 59.952070],\n\t\t\t\t\t\t\t[-148.664283, 59.965128],\n\t\t\t\t\t\t\t[-148.661876, 59.967436],\n\t\t\t\t\t\t\t[-148.660830, 59.969735],\n\t\t\t\t\t\t\t[-148.662712, 59.971825],\n\t\t\t\t\t\t\t[-148.668146, 59.973497],\n\t\t\t\t\t\t\t[-148.674841, 59.972699],\n\t\t\t\t\t\t\t[-148.688758, 59.968006],\n\t\t\t\t\t\t\t[-148.715511, 59.962120],\n\t\t\t\t\t\t\t[-148.725872, 59.963727],\n\t\t\t\t\t\t\t[-148.727688, 59.965050],\n\t\t\t\t\t\t\t[-148.729731, 59.972376],\n\t\t\t\t\t\t\t[-148.737453, 59.980879],\n\t\t\t\t\t\t\t[-148.743229, 59.985389],\n\t\t\t\t\t\t\t[-148.749742, 59.988497],\n\t\t\t\t\t\t\t[-148.755366, 59.989237],\n\t\t\t\t\t\t\t[-148.759807, 59.988941],\n\t\t\t\t\t\t\t[-148.763803, 59.987905],\n\t\t\t\t\t\t\t[-148.766911, 59.986869],\n\t\t\t\t\t\t\t[-148.769871, 59.983464],\n\t\t\t\t\t\t\t[-148.797927, 59.977400],\n\t\t\t\t\t\t\t[-148.801223, 59.975844],\n\t\t\t\t\t\t\t[-148.810654, 59.963105],\n\t\t\t\t\t\t\t[-148.838304, 59.949900],\n\t\t\t\t\t\t\t[-148.872181, 59.950321],\n\t\t\t\t\t\t\t[-148.884265, 59.955388],\n\t\t\t\t\t\t\t[-148.888537, 59.966362],\n\t\t\t\t\t\t\t[-148.901981, 59.973319],\n\t\t\t\t\t\t\t[-148.913089, 59.983207],\n\t\t\t\t\t\t\t[-148.914569, 59.986891],\n\t\t\t\t\t\t\t[-148.912676, 59.992894],\n\t\t\t\t\t\t\t[-148.917819, 59.995595],\n\t\t\t\t\t\t\t[-148.938327, 59.999074],\n\t\t\t\t\t\t\t[-148.957554, 59.998371],\n\t\t\t\t\t\t\t[-148.977589, 59.989881],\n\t\t\t\t\t\t\t[-148.990301, 59.981013],\n\t\t\t\t\t\t\t[-149.016790, 59.976134],\n\t\t\t\t\t\t\t[-149.028418, 59.978821],\n\t\t\t\t\t\t\t[-149.029394, 59.984098],\n\t\t\t\t\t\t\t[-149.027274, 59.991698],\n\t\t\t\t\t\t\t[-149.031273, 59.998492],\n\t\t\t\t\t\t\t[-149.043265, 59.999115],\n\t\t\t\t\t\t\t[-149.067833, 59.982177],\n\t\t\t\t\t\t\t[-149.095070, 59.983019],\n\t\t\t\t\t\t\t[-149.100687, 59.985727],\n\t\t\t\t\t\t\t[-149.101785, 59.990943],\n\t\t\t\t\t\t\t[-149.102321, 59.993149],\n\t\t\t\t\t\t\t[-149.101717, 59.994155],\n\t\t\t\t\t\t\t[-149.098699, 59.996167],\n\t\t\t\t\t\t\t[-149.095278, 59.997374],\n\t\t\t\t\t\t\t[-149.090072, 59.999445],\n\t\t\t\t\t\t\t[-149.089077, 60.004504],\n\t\t\t\t\t\t\t[-149.072716, 60.019653],\n\t\t\t\t\t\t\t[-149.041599, 60.030726],\n\t\t\t\t\t\t\t[-149.037439, 60.040530],\n\t\t\t\t\t\t\t[-149.040358, 60.048744],\n\t\t\t\t\t\t\t[-149.049290, 60.058700],\n\t\t\t\t\t\t\t[-149.058700, 60.061419],\n\t\t\t\t\t\t\t[-149.096621, 60.044631],\n\t\t\t\t\t\t\t[-149.133115, 60.044918],\n\t\t\t\t\t\t\t[-149.204853, 60.009212],\n\t\t\t\t\t\t\t[-149.223781, 59.982763],\n\t\t\t\t\t\t\t[-149.235390, 59.938792],\n\t\t\t\t\t\t\t[-149.287588, 59.906506],\n\t\t\t\t\t\t\t[-149.327029, 59.987029],\n\t\t\t\t\t\t\t[-149.325822, 60.001033],\n\t\t\t\t\t\t\t[-149.341584, 60.076762],\n\t\t\t\t\t\t\t[-149.360414, 60.101665],\n\t\t\t\t\t\t\t[-149.393171, 60.099845],\n\t\t\t\t\t\t\t[-149.416829, 60.088926],\n\t\t\t\t\t\t\t[-149.416829, 59.997934],\n\t\t\t\t\t\t\t[-149.427748, 59.996114],\n\t\t\t\t\t\t\t[-149.435027, 59.990655],\n\t\t\t\t\t\t\t[-149.462855, 59.950151],\n\t\t\t\t\t\t\t[-149.475659, 59.952698],\n\t\t\t\t\t\t\t[-149.507429, 59.964519],\n\t\t\t\t\t\t\t[-149.549677, 59.919681],\n\t\t\t\t\t\t\t[-149.584254, 59.866905],\n\t\t\t\t\t\t\t[-149.542398, 59.823229],\n\t\t\t\t\t\t\t[-149.511461, 59.806851],\n\t\t\t\t\t\t\t[-149.527839, 59.750436],\n\t\t\t\t\t\t\t[-149.598813, 59.755895],\n\t\t\t\t\t\t\t[-149.640669, 59.799571],\n\t\t\t\t\t\t\t[-149.666147, 59.850527],\n\t\t\t\t\t\t\t[-149.706184, 59.910582],\n\t\t\t\t\t\t\t[-149.753500, 59.861446],\n\t\t\t\t\t\t\t[-149.738941, 59.732237],\n\t\t\t\t\t\t\t[-149.751680, 59.717678],\n\t\t\t\t\t\t\t[-149.759110, 59.697825],\n\t\t\t\t\t\t\t[-149.778024, 59.685930],\n\t\t\t\t\t\t\t[-149.798304, 59.677545],\n\t\t\t\t\t\t\t[-149.842672, 59.701300],\n\t\t\t\t\t\t\t[-149.839032, 59.752255],\n\t\t\t\t\t\t\t[-149.889988, 59.785013],\n\t\t\t\t\t\t\t[-149.977340, 59.801391],\n\t\t\t\t\t\t\t[-150.028296, 59.788652],\n\t\t\t\t\t\t\t[-150.042854, 59.772274],\n\t\t\t\t\t\t\t[-150.015557, 59.754075],\n\t\t\t\t\t\t\t[-149.979160, 59.744976],\n\t\t\t\t\t\t\t[-149.948223, 59.717678],\n\t\t\t\t\t\t\t[-149.962781, 59.697660],\n\t\t\t\t\t\t\t[-150.002818, 59.683101],\n\t\t\t\t\t\t\t[-150.022836, 59.655804],\n\t\t\t\t\t\t\t[-150.031935, 59.613947],\n\t\t\t\t\t\t\t[-150.068332, 59.637605],\n\t\t\t\t\t\t\t[-150.095630, 59.648524],\n\t\t\t\t\t\t\t[-150.108369, 59.603028],\n\t\t\t\t\t\t\t[-150.168424, 59.561172],\n\t\t\t\t\t\t\t[-150.223019, 59.539334],\n\t\t\t\t\t\t\t[-150.253956, 59.521136],\n\t\t\t\t\t\t\t[-150.310371, 59.508397],\n\t\t\t\t\t\t\t[-150.343128, 59.512036],\n\t\t\t\t\t\t\t[-150.334029, 59.541154],\n\t\t\t\t\t\t\t[-150.315831, 59.562992],\n\t\t\t\t\t\t\t[-150.317651, 59.599389],\n\t\t\t\t\t\t\t[-150.347696, 59.600928],\n\t\t\t\t\t\t\t[-150.355493, 59.598412],\n\t\t\t\t\t\t\t[-150.412448, 59.554628],\n\t\t\t\t\t\t\t[-150.431518, 59.514287],\n\t\t\t\t\t\t\t[-150.478742, 59.458498],\n\t\t\t\t\t\t\t[-150.498900, 59.456298],\n\t\t\t\t\t\t\t[-150.516317, 59.462326],\n\t\t\t\t\t\t\t[-150.521537, 59.467924],\n\t\t\t\t\t\t\t[-150.521626, 59.474672],\n\t\t\t\t\t\t\t[-150.518382, 59.477136],\n\t\t\t\t\t\t\t[-150.515867, 59.482167],\n\t\t\t\t\t\t\t[-150.516286, 59.486778],\n\t\t\t\t\t\t\t[-150.522994, 59.494744],\n\t\t\t\t\t\t\t[-150.536119, 59.498457],\n\t\t\t\t\t\t\t[-150.543537, 59.510256],\n\t\t\t\t\t\t\t[-150.550245, 59.527026],\n\t\t\t\t\t\t\t[-150.549825, 59.538764],\n\t\t\t\t\t\t\t[-150.533056, 59.563080],\n\t\t\t\t\t\t\t[-150.537248, 59.581108],\n\t\t\t\t\t\t\t[-150.541860, 59.586977],\n\t\t\t\t\t\t\t[-150.547729, 59.590331],\n\t\t\t\t\t\t\t[-150.556114, 59.590331],\n\t\t\t\t\t\t\t[-150.575818, 59.579431],\n\t\t\t\t\t\t\t[-150.589315, 59.565154],\n\t\t\t\t\t\t\t[-150.594543, 59.553167],\n\t\t\t\t\t\t\t[-150.602230, 59.545891],\n\t\t\t\t\t\t\t[-150.614808, 59.545472],\n\t\t\t\t\t\t\t[-150.631158, 59.549245],\n\t\t\t\t\t\t\t[-150.639543, 59.547149],\n\t\t\t\t\t\t\t[-150.638704, 59.532056],\n\t\t\t\t\t\t\t[-150.631577, 59.521575],\n\t\t\t\t\t\t\t[-150.615152, 59.510199],\n\t\t\t\t\t\t\t[-150.595056, 59.499777],\n\t\t\t\t\t\t\t[-150.589645, 59.500083],\n\t\t\t\t\t\t\t[-150.584636, 59.494510],\n\t\t\t\t\t\t\t[-150.579595, 59.479540],\n\t\t\t\t\t\t\t[-150.579869, 59.475709],\n\t\t\t\t\t\t\t[-150.584342, 59.467715],\n\t\t\t\t\t\t\t[-150.585567, 59.450057],\n\t\t\t\t\t\t\t[-150.581182, 59.445233],\n\t\t\t\t\t\t\t[-150.601162, 59.425657],\n\t\t\t\t\t\t\t[-150.650046, 59.420885],\n\t\t\t\t\t\t\t[-150.651586, 59.421751],\n\t\t\t\t\t\t\t[-150.654010, 59.445458],\n\t\t\t\t\t\t\t[-150.656329, 59.454437],\n\t\t\t\t\t\t\t[-150.667211, 59.457900],\n\t\t\t\t\t\t\t[-150.683235, 59.458541],\n\t\t\t\t\t\t\t[-150.716564, 59.450849],\n\t\t\t\t\t\t\t[-150.729062, 59.442197],\n\t\t\t\t\t\t\t[-150.739958, 59.425211],\n\t\t\t\t\t\t\t[-150.745004, 59.400729],\n\t\t\t\t\t\t\t[-150.769853, 59.372966],\n\t\t\t\t\t\t\t[-150.795470, 59.362845],\n\t\t\t\t\t\t\t[-150.819565, 59.357276],\n\t\t\t\t\t\t\t[-150.834627, 59.351980],\n\t\t\t\t\t\t\t[-150.877447, 59.318120],\n\t\t\t\t\t\t\t[-150.911598, 59.311614],\n\t\t\t\t\t\t\t[-150.912817, 59.305214],\n\t\t\t\t\t\t\t[-150.895552, 59.286227],\n\t\t\t\t\t\t\t[-150.887825, 59.273526],\n\t\t\t\t\t\t\t[-150.887821, 59.267920],\n\t\t\t\t\t\t\t[-150.897808, 59.255648],\n\t\t\t\t\t\t\t[-150.942212, 59.233136],\n\t\t\t\t\t\t\t[-150.959531, 59.232537],\n\t\t\t\t\t\t\t[-150.975164, 59.236141],\n\t\t\t\t\t\t\t[-150.988397, 59.230549],\n\t\t\t\t\t\t\t[-150.995406, 59.224149],\n\t\t\t\t\t\t\t[-151.001196, 59.224149],\n\t\t\t\t\t\t\t[-151.006682, 59.233292],\n\t\t\t\t\t\t\t[-151.008815, 59.245787],\n\t\t\t\t\t\t\t[-151.007292, 59.251577],\n\t\t\t\t\t\t\t[-150.996808, 59.257739],\n\t\t\t\t\t\t\t[-150.999063, 59.271082],\n\t\t\t\t\t\t\t[-151.023097, 59.269045],\n\t\t\t\t\t\t\t[-151.032430, 59.275762],\n\t\t\t\t\t\t\t[-151.044411, 59.293611],\n\t\t\t\t\t\t\t[-151.046100, 59.299359],\n\t\t\t\t\t\t\t[-151.057756, 59.301721],\n\t\t\t\t\t\t\t[-151.070305, 59.287852],\n\t\t\t\t\t\t\t[-151.068166, 59.284102],\n\t\t\t\t\t\t\t[-151.071902, 59.281058],\n\t\t\t\t\t\t\t[-151.087319, 59.268790],\n\t\t\t\t\t\t\t[-151.091532, 59.269187],\n\t\t\t\t\t\t\t[-151.105635, 59.263143],\n\t\t\t\t\t\t\t[-151.101102, 59.240605],\n\t\t\t\t\t\t\t[-151.102395, 59.228713],\n\t\t\t\t\t\t\t[-151.107558, 59.217792],\n\t\t\t\t\t\t\t[-151.126247, 59.209923],\n\t\t\t\t\t\t\t[-151.163408, 59.202636],\n\t\t\t\t\t\t\t[-151.186254, 59.202813],\n\t\t\t\t\t\t\t[-151.190948, 59.206632],\n\t\t\t\t\t\t\t[-151.192634, 59.211208],\n\t\t\t\t\t\t\t[-151.206053, 59.219319],\n\t\t\t\t\t\t\t[-151.223629, 59.224347],\n\t\t\t\t\t\t\t[-151.261636, 59.220304],\n\t\t\t\t\t\t\t[-151.273779, 59.229663],\n\t\t\t\t\t\t\t[-151.280544, 59.230476],\n\t\t\t\t\t\t\t[-151.284880, 59.227586],\n\t\t\t\t\t\t\t[-151.287063, 59.224789],\n\t\t\t\t\t\t\t[-151.287771, 59.219417],\n\t\t\t\t\t\t\t[-151.292812, 59.214273],\n\t\t\t\t\t\t\t[-151.305724, 59.209544],\n\t\t\t\t\t\t\t[-151.341601, 59.222231],\n\t\t\t\t\t\t\t[-151.379612, 59.242024],\n\t\t\t\t\t\t\t[-151.387261, 59.250450],\n\t\t\t\t\t\t\t[-151.390544, 59.264917],\n\t\t\t\t\t\t\t[-151.399549, 59.276005],\n\t\t\t\t\t\t\t[-151.407203, 59.279349],\n\t\t\t\t\t\t\t[-151.429415, 59.268552],\n\t\t\t\t\t\t\t[-151.437695, 59.253989],\n\t\t\t\t\t\t\t[-151.449207, 59.248457],\n\t\t\t\t\t\t\t[-151.488612, 59.237714],\n\t\t\t\t\t\t\t[-151.509551, 59.234395],\n\t\t\t\t\t\t\t[-151.518488, 59.230309],\n\t\t\t\t\t\t\t[-151.525127, 59.224947],\n\t\t\t\t\t\t\t[-151.520245, 59.216930],\n\t\t\t\t\t\t\t[-151.504699, 59.212690],\n\t\t\t\t\t\t\t[-151.499592, 59.207839],\n\t\t\t\t\t\t\t[-151.497805, 59.204264],\n\t\t\t\t\t\t\t[-151.498826, 59.200178],\n\t\t\t\t\t\t\t[-151.502657, 59.195071],\n\t\t\t\t\t\t\t[-151.521455, 59.195483],\n\t\t\t\t\t\t\t[-151.558151, 59.200085],\n\t\t\t\t\t\t\t[-151.574664, 59.195327],\n\t\t\t\t\t\t\t[-151.579261, 59.187666],\n\t\t\t\t\t\t\t[-151.576452, 59.172601],\n\t\t\t\t\t\t\t[-151.580351, 59.165233],\n\t\t\t\t\t\t\t[-151.590729, 59.161725],\n\t\t\t\t\t\t\t[-151.698875, 59.163081],\n\t\t\t\t\t\t\t[-151.710625, 59.158097],\n\t\t\t\t\t\t\t[-151.720931, 59.156078],\n\t\t\t\t\t\t\t[-151.739068, 59.156005],\n\t\t\t\t\t\t\t[-151.748451, 59.158601],\n\t\t\t\t\t\t\t[-151.764908, 59.175510],\n\t\t\t\t\t\t\t[-151.761451, 59.205235],\n\t\t\t\t\t\t\t[-151.758530, 59.215743],\n\t\t\t\t\t\t\t[-151.761301, 59.221327],\n\t\t\t\t\t\t\t[-151.838335, 59.209135],\n\t\t\t\t\t\t\t[-151.874356, 59.211931],\n\t\t\t\t\t\t\t[-151.915684, 59.227522],\n\t\t\t\t\t\t\t[-151.917248, 59.231254],\n\t\t\t\t\t\t\t[-151.910958, 59.236707],\n\t\t\t\t\t\t\t[-151.906191, 59.237963],\n\t\t\t\t\t\t\t[-151.905106, 59.247075],\n\t\t\t\t\t\t\t[-151.925051, 59.254428],\n\t\t\t\t\t\t\t[-151.952723, 59.250447],\n\t\t\t\t\t\t\t[-151.959279, 59.247625],\n\t\t\t\t\t\t\t[-151.978748, 59.253779],\n\t\t\t\t\t\t\t[-151.991618, 59.313617],\n\t\t\t\t\t\t\t[-151.963130, 59.344958],\n\t\t\t\t\t\t\t[-151.952705, 59.349413],\n\t\t\t\t\t\t\t[-151.924018, 59.354417],\n\t\t\t\t\t\t\t[-151.903021, 59.360454],\n\t\t\t\t\t\t\t[-151.890738, 59.373156],\n\t\t\t\t\t\t\t[-151.887102, 59.382532],\n\t\t\t\t\t\t\t[-151.908015, 59.395274],\n\t\t\t\t\t\t\t[-151.905153, 59.401035],\n\t\t\t\t\t\t\t[-151.886513, 59.421033],\n\t\t\t\t\t\t\t[-151.826047, 59.439049],\n\t\t\t\t\t\t\t[-151.770875, 59.447917],\n\t\t\t\t\t\t\t[-151.751420, 59.446554],\n\t\t\t\t\t\t\t[-151.740538, 59.438432],\n\t\t\t\t\t\t\t[-151.728486, 59.439679],\n\t\t\t\t\t\t\t[-151.720421, 59.443117],\n\t\t\t\t\t\t\t[-151.706462, 59.462811],\n\t\t\t\t\t\t\t[-151.694726, 59.468370],\n\t\t\t\t\t\t\t[-151.634472, 59.482443],\n\t\t\t\t\t\t\t[-151.570032, 59.468945],\n\t\t\t\t\t\t\t[-151.542349, 59.467061],\n\t\t\t\t\t\t\t[-151.528493, 59.472338],\n\t\t\t\t\t\t\t[-151.505890, 59.477048],\n\t\t\t\t\t\t\t[-151.485624, 59.475459],\n\t\t\t\t\t\t\t[-151.470992, 59.472250],\n\t\t\t\t\t\t\t[-151.466272, 59.484050],\n\t\t\t\t\t\t\t[-151.469630, 59.502811],\n\t\t\t\t\t\t\t[-151.436359, 59.530329],\n\t\t\t\t\t\t\t[-151.420966, 59.537728],\n\t\t\t\t\t\t\t[-151.365776, 59.541255],\n\t\t\t\t\t\t\t[-151.323670, 59.550943],\n\t\t\t\t\t\t\t[-151.272459, 59.555823],\n\t\t\t\t\t\t\t[-151.266733, 59.562632],\n\t\t\t\t\t\t\t[-151.264811, 59.568598],\n\t\t\t\t\t\t\t[-151.271737, 59.576468],\n\t\t\t\t\t\t\t[-151.278905, 59.589029],\n\t\t\t\t\t\t\t[-151.278827, 59.592980],\n\t\t\t\t\t\t\t[-151.274795, 59.596986],\n\t\t\t\t\t\t\t[-151.201678, 59.591503],\n\t\t\t\t\t\t\t[-151.203835, 59.577961],\n\t\t\t\t\t\t\t[-151.209130, 59.573623],\n\t\t\t\t\t\t\t[-151.208364, 59.562061],\n\t\t\t\t\t\t\t[-151.192803, 59.562432],\n\t\t\t\t\t\t\t[-151.164259, 59.587013],\n\t\t\t\t\t\t\t[-151.158254, 59.594141],\n\t\t\t\t\t\t\t[-151.165427, 59.601329],\n\t\t\t\t\t\t\t[-151.188032, 59.608687],\n\t\t\t\t\t\t\t[-151.205459, 59.630284],\n\t\t\t\t\t\t\t[-151.207639, 59.640670],\n\t\t\t\t\t\t\t[-151.203186, 59.645989],\n\t\t\t\t\t\t\t[-151.173984, 59.651793],\n\t\t\t\t\t\t\t[-151.126122, 59.668336],\n\t\t\t\t\t\t\t[-151.121362, 59.674735],\n\t\t\t\t\t\t\t[-151.122791, 59.677782],\n\t\t\t\t\t\t\t[-151.116490, 59.696132],\n\t\t\t\t\t\t\t[-151.098253, 59.709442],\n\t\t\t\t\t\t\t[-151.018888, 59.756593],\n\t\t\t\t\t\t\t[-150.927312, 59.793431],\n\t\t\t\t\t\t\t[-150.948132, 59.792194],\n\t\t\t\t\t\t\t[-150.982996, 59.783543],\n\t\t\t\t\t\t\t[-151.001663, 59.788391],\n\t\t\t\t\t\t\t[-151.006717, 59.792986],\n\t\t\t\t\t\t\t[-151.027756, 59.796196],\n\t\t\t\t\t\t\t[-151.063758, 59.793146],\n\t\t\t\t\t\t\t[-151.113845, 59.777231],\n\t\t\t\t\t\t\t[-151.172439, 59.751346],\n\t\t\t\t\t\t\t[-151.214539, 59.729847],\n\t\t\t\t\t\t\t[-151.329812, 59.683644],\n\t\t\t\t\t\t\t[-151.377054, 59.681313],\n\t\t\t\t\t\t\t[-151.424840, 59.670521],\n\t\t\t\t\t\t\t[-151.436610, 59.666360],\n\t\t\t\t\t\t\t[-151.439187, 59.663247],\n\t\t\t\t\t\t\t[-151.441127, 59.653543],\n\t\t\t\t\t\t\t[-151.448669, 59.648171],\n\t\t\t\t\t\t\t[-151.461253, 59.643039],\n\t\t\t\t\t\t\t[-151.503822, 59.633662],\n\t\t\t\t\t\t\t[-151.643061, 59.646966],\n\t\t\t\t\t\t\t[-151.686486, 59.660864],\n\t\t\t\t\t\t\t[-151.746815, 59.686234],\n\t\t\t\t\t\t\t[-151.796300, 59.704156],\n\t\t\t\t\t\t\t[-151.829137, 59.720151],\n\t\t\t\t\t\t\t[-151.850272, 59.739035],\n\t\t\t\t\t\t\t[-151.859327, 59.749567],\n\t\t\t\t\t\t\t[-151.869468, 59.769159],\n\t\t\t\t\t\t\t[-151.867713, 59.778411],\n\t\t\t\t\t\t\t[-151.857339, 59.791145],\n\t\t\t\t\t\t\t[-151.833340, 59.814129],\n\t\t\t\t\t\t\t[-151.813619, 59.844297],\n\t\t\t\t\t\t\t[-151.803059, 59.878533],\n\t\t\t\t\t\t\t[-151.792594, 59.888810],\n\t\t\t\t\t\t\t[-151.777855, 59.897493],\n\t\t\t\t\t\t\t[-151.757693, 59.917637],\n\t\t\t\t\t\t\t[-151.742742, 59.944626],\n\t\t\t\t\t\t\t[-151.718010, 60.009473],\n\t\t\t\t\t\t\t[-151.702898, 60.032253],\n\t\t\t\t\t\t\t[-151.661437, 60.057139],\n\t\t\t\t\t\t\t[-151.623799, 60.088033],\n\t\t\t\t\t\t\t[-151.606881, 60.099558],\n\t\t\t\t\t\t\t[-151.545579, 60.128394],\n\t\t\t\t\t\t\t[-151.517887, 60.145008],\n\t\t\t\t\t\t\t[-151.488721, 60.167616],\n\t\t\t\t\t\t\t[-151.421702, 60.212931],\n\t\t\t\t\t\t\t[-151.406607, 60.228183],\n\t\t\t\t\t\t\t[-151.387919, 60.267066],\n\t\t\t\t\t\t\t[-151.381959, 60.296951],\n\t\t\t\t\t\t\t[-151.383231, 60.326348],\n\t\t\t\t\t\t\t[-151.381604, 60.358728],\n\t\t\t\t\t\t\t[-151.377281, 60.365522],\n\t\t\t\t\t\t\t[-151.366874, 60.372655],\n\t\t\t\t\t\t\t[-151.306090, 60.387257],\n\t\t\t\t\t\t\t[-151.301868, 60.384712],\n\t\t\t\t\t\t\t[-151.299782, 60.385481],\n\t\t\t\t\t\t\t[-151.293074, 60.416163],\n\t\t\t\t\t\t\t[-151.286819, 60.434648],\n\t\t\t\t\t\t\t[-151.283967, 60.452196],\n\t\t\t\t\t\t\t[-151.280992, 60.512627],\n\t\t\t\t\t\t\t[-151.278810, 60.520107],\n\t\t\t\t\t\t\t[-151.264461, 60.543263],\n\t\t\t\t\t\t\t[-151.268373, 60.548977],\n\t\t\t\t\t\t\t[-151.303125, 60.561326],\n\t\t\t\t\t\t\t[-151.323951, 60.574135],\n\t\t\t\t\t\t\t[-151.330409, 60.580539],\n\t\t\t\t\t\t\t[-151.339069, 60.594244],\n\t\t\t\t\t\t\t[-151.344477, 60.613458],\n\t\t\t\t\t\t\t[-151.345508, 60.622954],\n\t\t\t\t\t\t\t[-151.350154, 60.634660],\n\t\t\t\t\t\t\t[-151.362397, 60.653526],\n\t\t\t\t\t\t\t[-151.387839, 60.674501],\n\t\t\t\t\t\t\t[-151.404451, 60.695004],\n\t\t\t\t\t\t\t[-151.410273, 60.711023],\n\t\t\t\t\t\t\t[-151.409270, 60.720558],\n\t\t\t\t\t\t\t[-151.384800, 60.729946],\n\t\t\t\t\t\t\t[-151.370515, 60.733572],\n\t\t\t\t\t\t\t[-151.309230, 60.740724],\n\t\t\t\t\t\t\t[-151.279635, 60.747676],\n\t\t\t\t\t\t\t[-151.270505, 60.751286],\n\t\t\t\t\t\t\t[-151.261383, 60.757768],\n\t\t\t\t\t\t\t[-151.259343, 60.762896],\n\t\t\t\t\t\t\t[-151.261319, 60.769801],\n\t\t\t\t\t\t\t[-151.252902, 60.773993],\n\t\t\t\t\t\t\t[-151.212186, 60.780342],\n\t\t\t\t\t\t\t[-151.106079, 60.783749],\n\t\t\t\t\t\t\t[-151.062558, 60.787429],\n\t\t\t\t\t\t\t[-151.037007, 60.793649],\n\t\t\t\t\t\t\t[-151.025634, 60.797497],\n\t\t\t\t\t\t\t[-151.024799, 60.801787],\n\t\t\t\t\t\t\t[-151.012016, 60.809340],\n\t\t\t\t\t\t\t[-150.895508, 60.853166],\n\t\t\t\t\t\t\t[-150.886964, 60.858187],\n\t\t\t\t\t\t\t[-150.883774, 60.861865],\n\t\t\t\t\t\t\t[-150.845731, 60.877893],\n\t\t\t\t\t\t\t[-150.808418, 60.891336],\n\t\t\t\t\t\t\t[-150.770594, 60.911362],\n\t\t\t\t\t\t\t[-150.705812, 60.937792],\n\t\t\t\t\t\t\t[-150.678438, 60.958267],\n\t\t\t\t\t\t\t[-150.603069, 60.974434],\n\t\t\t\t\t\t\t[-150.582471, 60.982095],\n\t\t\t\t\t\t\t[-150.515058, 60.999443],\n\t\t\t\t\t\t\t[-150.511099, 61.005145],\n\t\t\t\t\t\t\t[-150.501923, 61.007957],\n\t\t\t\t\t\t\t[-150.454661, 61.016566],\n\t\t\t\t\t\t\t[-150.431873, 61.023939],\n\t\t\t\t\t\t\t[-150.401859, 61.036227],\n\t\t\t\t\t\t\t[-150.377171, 61.039144],\n\t\t\t\t\t\t\t[-150.353702, 61.031822],\n\t\t\t\t\t\t\t[-150.341709, 61.024201],\n\t\t\t\t\t\t\t[-150.310334, 60.989547],\n\t\t\t\t\t\t\t[-150.286369, 60.966696],\n\t\t\t\t\t\t\t[-150.262096, 60.947839],\n\t\t\t\t\t\t\t[-150.244072, 60.938585],\n\t\t\t\t\t\t\t[-150.217179, 60.930001],\n\t\t\t\t\t\t\t[-150.187657, 60.924796],\n\t\t\t\t\t\t\t[-150.085166, 60.914020],\n\t\t\t\t\t\t\t[-150.070289, 60.913679],\n\t\t\t\t\t\t\t[-150.045570, 60.910004],\n\t\t\t\t\t\t\t[-150.049148, 60.915816],\n\t\t\t\t\t\t\t[-150.047088, 60.918924],\n\t\t\t\t\t\t\t[-150.039866, 60.920777],\n\t\t\t\t\t\t\t[-149.952655, 60.930393],\n\t\t\t\t\t\t\t[-149.912166, 60.937843],\n\t\t\t\t\t\t\t[-149.875188, 60.960244],\n\t\t\t\t\t\t\t[-149.853693, 60.967395],\n\t\t\t\t\t\t\t[-149.835580, 60.968855],\n\t\t\t\t\t\t\t[-149.816817, 60.966947],\n\t\t\t\t\t\t\t[-149.770264, 60.967607],\n\t\t\t\t\t\t\t[-149.764966, 60.963412],\n\t\t\t\t\t\t\t[-149.753082, 60.962059],\n\t\t\t\t\t\t\t[-149.735376, 60.987813],\n\t\t\t\t\t\t\t[-149.736395, 60.994692],\n\t\t\t\t\t\t\t[-149.373299, 60.907624],\n\t\t\t\t\t\t\t[-149.188571, 60.905486],\n\t\t\t\t\t\t\t[-149.038568, 60.849342],\n\t\t\t\t\t\t\t[-149.042881, 60.734797],\n\t\t\t\t\t\t\t[-148.745578, 60.733881]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-153.002181, 61.425686],\n\t\t\t\t\t\t\t[-151.334175, 61.424601],\n\t\t\t\t\t\t\t[-151.332978, 61.254634],\n\t\t\t\t\t\t\t[-150.972661, 61.253489],\n\t\t\t\t\t\t\t[-150.971775, 61.192041],\n\t\t\t\t\t\t\t[-150.990086, 61.188907],\n\t\t\t\t\t\t\t[-151.012620, 61.183258],\n\t\t\t\t\t\t\t[-151.024905, 61.178391],\n\t\t\t\t\t\t\t[-151.072775, 61.141669],\n\t\t\t\t\t\t\t[-151.078500, 61.133381],\n\t\t\t\t\t\t\t[-151.119722, 61.091117],\n\t\t\t\t\t\t\t[-151.121692, 61.083574],\n\t\t\t\t\t\t\t[-151.127357, 61.076896],\n\t\t\t\t\t\t\t[-151.142587, 61.062778],\n\t\t\t\t\t\t\t[-151.166606, 61.046404],\n\t\t\t\t\t\t\t[-151.190318, 61.042737],\n\t\t\t\t\t\t\t[-151.252384, 61.039968],\n\t\t\t\t\t\t\t[-151.293622, 61.035715],\n\t\t\t\t\t\t\t[-151.307796, 61.031008],\n\t\t\t\t\t\t\t[-151.312653, 61.026364],\n\t\t\t\t\t\t\t[-151.330920, 61.015124],\n\t\t\t\t\t\t\t[-151.349004, 61.010004],\n\t\t\t\t\t\t\t[-151.362243, 61.009412],\n\t\t\t\t\t\t\t[-151.425120, 61.013107],\n\t\t\t\t\t\t\t[-151.467851, 61.012423],\n\t\t\t\t\t\t\t[-151.480300, 61.010902],\n\t\t\t\t\t\t\t[-151.538227, 60.991835],\n\t\t\t\t\t\t\t[-151.573698, 60.975876],\n\t\t\t\t\t\t\t[-151.621005, 60.957453],\n\t\t\t\t\t\t\t[-151.637346, 60.946727],\n\t\t\t\t\t\t\t[-151.641066, 60.942177],\n\t\t\t\t\t\t\t[-151.679518, 60.922491],\n\t\t\t\t\t\t\t[-151.692644, 60.917743],\n\t\t\t\t\t\t\t[-151.713913, 60.916546],\n\t\t\t\t\t\t\t[-151.720815, 60.904257],\n\t\t\t\t\t\t\t[-151.736015, 60.891507],\n\t\t\t\t\t\t\t[-151.783271, 60.868713],\n\t\t\t\t\t\t\t[-151.791698, 60.863060],\n\t\t\t\t\t\t\t[-151.800264, 60.853672],\n\t\t\t\t\t\t\t[-151.796723, 60.838734],\n\t\t\t\t\t\t\t[-151.787394, 60.822307],\n\t\t\t\t\t\t\t[-151.777310, 60.810461],\n\t\t\t\t\t\t\t[-151.751817, 60.788729],\n\t\t\t\t\t\t\t[-151.703802, 60.732376],\n\t\t\t\t\t\t\t[-151.702833, 60.727778],\n\t\t\t\t\t\t\t[-151.705553, 60.718052],\n\t\t\t\t\t\t\t[-151.710444, 60.712657],\n\t\t\t\t\t\t\t[-151.716379, 60.710415],\n\t\t\t\t\t\t\t[-151.744321, 60.712403],\n\t\t\t\t\t\t\t[-151.749493, 60.714175],\n\t\t\t\t\t\t\t[-151.760301, 60.721441],\n\t\t\t\t\t\t\t[-151.784039, 60.726814],\n\t\t\t\t\t\t\t[-151.803814, 60.729004],\n\t\t\t\t\t\t\t[-151.811286, 60.732222],\n\t\t\t\t\t\t\t[-151.822596, 60.742352],\n\t\t\t\t\t\t\t[-151.831185, 60.747303],\n\t\t\t\t\t\t\t[-151.851967, 60.754074],\n\t\t\t\t\t\t\t[-151.860179, 60.753282],\n\t\t\t\t\t\t\t[-151.864958, 60.750458],\n\t\t\t\t\t\t\t[-151.849634, 60.738286],\n\t\t\t\t\t\t\t[-151.847965, 60.735694],\n\t\t\t\t\t\t\t[-151.848614, 60.733976],\n\t\t\t\t\t\t\t[-151.870471, 60.727284],\n\t\t\t\t\t\t\t[-151.916914, 60.717916],\n\t\t\t\t\t\t\t[-151.917922, 60.722809],\n\t\t\t\t\t\t\t[-151.915911, 60.730245],\n\t\t\t\t\t\t\t[-151.918758, 60.732270],\n\t\t\t\t\t\t\t[-151.923384, 60.733735],\n\t\t\t\t\t\t\t[-151.944439, 60.733050],\n\t\t\t\t\t\t\t[-151.944599, 60.728176],\n\t\t\t\t\t\t\t[-151.948287, 60.722476],\n\t\t\t\t\t\t\t[-151.961757, 60.721431],\n\t\t\t\t\t\t\t[-151.968381, 60.728340],\n\t\t\t\t\t\t\t[-152.079433, 60.692804],\n\t\t\t\t\t\t\t[-152.114140, 60.634069],\n\t\t\t\t\t\t\t[-152.136160, 60.578475],\n\t\t\t\t\t\t\t[-152.148434, 60.575977],\n\t\t\t\t\t\t\t[-152.163517, 60.576934],\n\t\t\t\t\t\t\t[-152.195084, 60.569675],\n\t\t\t\t\t\t\t[-152.261497, 60.538237],\n\t\t\t\t\t\t\t[-152.309221, 60.506384],\n\t\t\t\t\t\t\t[-152.315149, 60.499824],\n\t\t\t\t\t\t\t[-152.331365, 60.473525],\n\t\t\t\t\t\t\t[-152.333375, 60.460641],\n\t\t\t\t\t\t\t[-152.330263, 60.443134],\n\t\t\t\t\t\t\t[-152.325821, 60.434806],\n\t\t\t\t\t\t\t[-152.312226, 60.420397],\n\t\t\t\t\t\t\t[-152.301950, 60.414328],\n\t\t\t\t\t\t\t[-152.234199, 60.393888],\n\t\t\t\t\t\t\t[-152.300622, 60.369604],\n\t\t\t\t\t\t\t[-152.307615, 60.366489],\n\t\t\t\t\t\t\t[-152.315855, 60.359071],\n\t\t\t\t\t\t\t[-152.352294, 60.356101],\n\t\t\t\t\t\t\t[-152.366213, 60.353304],\n\t\t\t\t\t\t\t[-152.371475, 60.350176],\n\t\t\t\t\t\t\t[-152.376743, 60.345613],\n\t\t\t\t\t\t\t[-152.386334, 60.327889],\n\t\t\t\t\t\t\t[-152.385979, 60.315845],\n\t\t\t\t\t\t\t[-152.392009, 60.302108],\n\t\t\t\t\t\t\t[-152.411281, 60.287864],\n\t\t\t\t\t\t\t[-152.421130, 60.285331],\n\t\t\t\t\t\t\t[-152.444165, 60.285717],\n\t\t\t\t\t\t\t[-152.456291, 60.284042],\n\t\t\t\t\t\t\t[-152.481794, 60.274681],\n\t\t\t\t\t\t\t[-152.528206, 60.251346],\n\t\t\t\t\t\t\t[-152.539843, 60.241644],\n\t\t\t\t\t\t\t[-152.549236, 60.227631],\n\t\t\t\t\t\t\t[-152.556752, 60.224217],\n\t\t\t\t\t\t\t[-152.624648, 60.218687],\n\t\t\t\t\t\t\t[-152.626275, 60.220852],\n\t\t\t\t\t\t\t[-152.626901, 60.222728],\n\t\t\t\t\t\t\t[-152.627683, 60.225700],\n\t\t\t\t\t\t\t[-152.642361, 60.228766],\n\t\t\t\t\t\t\t[-152.660055, 60.242004],\n\t\t\t\t\t\t\t[-152.670403, 60.244320],\n\t\t\t\t\t\t\t[-152.698634, 60.240661],\n\t\t\t\t\t\t\t[-152.715881, 60.241274],\n\t\t\t\t\t\t\t[-152.747026, 60.233311],\n\t\t\t\t\t\t\t[-152.743388, 60.224323],\n\t\t\t\t\t\t\t[-152.754884, 60.210910],\n\t\t\t\t\t\t\t[-152.754884, 60.202901],\n\t\t\t\t\t\t\t[-152.749545, 60.189552],\n\t\t\t\t\t\t\t[-152.734251, 60.174801],\n\t\t\t\t\t\t\t[-152.699879, 60.165272],\n\t\t\t\t\t\t\t[-152.688392, 60.165820],\n\t\t\t\t\t\t\t[-152.678085, 60.163504],\n\t\t\t\t\t\t\t[-152.674176, 60.151731],\n\t\t\t\t\t\t\t[-152.687485, 60.140305],\n\t\t\t\t\t\t\t[-152.686373, 60.137717],\n\t\t\t\t\t\t\t[-152.658418, 60.121591],\n\t\t\t\t\t\t\t[-152.634972, 60.115799],\n\t\t\t\t\t\t\t[-152.596784, 60.101071],\n\t\t\t\t\t\t\t[-152.575271, 60.082363],\n\t\t\t\t\t\t\t[-152.569121, 60.071748],\n\t\t\t\t\t\t\t[-152.575153, 60.048260],\n\t\t\t\t\t\t\t[-152.590169, 60.035978],\n\t\t\t\t\t\t\t[-152.608599, 60.025429],\n\t\t\t\t\t\t\t[-152.612721, 60.015115],\n\t\t\t\t\t\t\t[-152.611651, 60.008521],\n\t\t\t\t\t\t\t[-152.649479, 59.988253],\n\t\t\t\t\t\t\t[-152.679402, 59.968054],\n\t\t\t\t\t\t\t[-152.693674, 59.932773],\n\t\t\t\t\t\t\t[-152.700822, 59.920309],\n\t\t\t\t\t\t\t[-152.706431, 59.915284],\n\t\t\t\t\t\t\t[-152.745083, 59.904232],\n\t\t\t\t\t\t\t[-152.793584, 59.896720],\n\t\t\t\t\t\t\t[-152.806934, 59.888029],\n\t\t\t\t\t\t\t[-152.810058, 59.878322],\n\t\t\t\t\t\t\t[-152.860867, 59.875033],\n\t\t\t\t\t\t\t[-152.875167, 59.877471],\n\t\t\t\t\t\t\t[-152.882672, 59.881986],\n\t\t\t\t\t\t\t[-152.900414, 59.881812],\n\t\t\t\t\t\t\t[-152.920417, 59.877741],\n\t\t\t\t\t\t\t[-152.950662, 59.876759],\n\t\t\t\t\t\t\t[-152.967267, 59.881494],\n\t\t\t\t\t\t\t[-153.002521, 59.886726],\n\t\t\t\t\t\t\t[-153.019977, 59.886230],\n\t\t\t\t\t\t\t[-153.046986, 59.882425],\n\t\t\t\t\t\t\t[-153.079187, 59.871103],\n\t\t\t\t\t\t\t[-153.144747, 59.859829],\n\t\t\t\t\t\t\t[-153.212865, 59.862784],\n\t\t\t\t\t\t\t[-153.225937, 59.858343],\n\t\t\t\t\t\t\t[-153.228615, 59.853355],\n\t\t\t\t\t\t\t[-153.256944, 59.836490],\n\t\t\t\t\t\t\t[-153.278808, 59.828066],\n\t\t\t\t\t\t\t[-153.285802, 59.820535],\n\t\t\t\t\t\t\t[-153.285412, 59.816755],\n\t\t\t\t\t\t\t[-153.278535, 59.810924],\n\t\t\t\t\t\t\t[-153.257736, 59.810807],\n\t\t\t\t\t\t\t[-153.236556, 59.821867],\n\t\t\t\t\t\t\t[-153.217481, 59.824721],\n\t\t\t\t\t\t\t[-153.197352, 59.824827],\n\t\t\t\t\t\t\t[-153.182307, 59.822389],\n\t\t\t\t\t\t\t[-153.144372, 59.807616],\n\t\t\t\t\t\t\t[-153.113586, 59.815631],\n\t\t\t\t\t\t\t[-153.088515, 59.833376],\n\t\t\t\t\t\t\t[-153.021945, 59.834133],\n\t\t\t\t\t\t\t[-153.009084, 59.830643],\n\t\t\t\t\t\t\t[-153.003964, 59.826747],\n\t\t\t\t\t\t\t[-152.992126, 59.810027],\n\t\t\t\t\t\t\t[-152.994466, 59.791261],\n\t\t\t\t\t\t\t[-153.031319, 59.723625],\n\t\t\t\t\t\t\t[-153.051559, 59.691562],\n\t\t\t\t\t\t\t[-153.108940, 59.678316],\n\t\t\t\t\t\t\t[-153.121740, 59.678009],\n\t\t\t\t\t\t\t[-153.155019, 59.654344],\n\t\t\t\t\t\t\t[-153.214156, 59.634271],\n\t\t\t\t\t\t\t[-153.240018, 59.632426],\n\t\t\t\t\t\t\t[-153.253408, 59.638415],\n\t\t\t\t\t\t\t[-153.262740, 59.643426],\n\t\t\t\t\t\t\t[-153.275175, 59.667303],\n\t\t\t\t\t\t\t[-153.286525, 59.670251],\n\t\t\t\t\t\t\t[-153.301687, 59.668717],\n\t\t\t\t\t\t\t[-153.314002, 59.666336],\n\t\t\t\t\t\t\t[-153.315123, 59.664896],\n\t\t\t\t\t\t\t[-153.315083, 59.662490],\n\t\t\t\t\t\t\t[-153.307199, 59.653954],\n\t\t\t\t\t\t\t[-153.298205, 59.636345],\n\t\t\t\t\t\t\t[-153.298047, 59.632502],\n\t\t\t\t\t\t\t[-153.302756, 59.627679],\n\t\t\t\t\t\t\t[-153.308837, 59.625706],\n\t\t\t\t\t\t\t[-153.342938, 59.621312],\n\t\t\t\t\t\t\t[-153.366613, 59.633729],\n\t\t\t\t\t\t\t[-153.381595, 59.638032],\n\t\t\t\t\t\t\t[-153.392022, 59.638856],\n\t\t\t\t\t\t\t[-153.409422, 59.636328],\n\t\t\t\t\t\t\t[-153.414898, 59.638600],\n\t\t\t\t\t\t\t[-153.418099, 59.642147],\n\t\t\t\t\t\t\t[-153.415507, 59.650918],\n\t\t\t\t\t\t\t[-153.393849, 59.658847],\n\t\t\t\t\t\t\t[-153.384886, 59.667188],\n\t\t\t\t\t\t\t[-153.378235, 59.688936],\n\t\t\t\t\t\t\t[-153.374778, 59.731587],\n\t\t\t\t\t\t\t[-153.439977, 59.784652],\n\t\t\t\t\t\t\t[-153.454972, 59.792099],\n\t\t\t\t\t\t\t[-153.458549, 59.764467],\n\t\t\t\t\t\t\t[-153.449620, 59.743810],\n\t\t\t\t\t\t\t[-153.445336, 59.728865],\n\t\t\t\t\t\t\t[-153.442219, 59.717420],\n\t\t\t\t\t\t\t[-153.441214, 59.701316],\n\t\t\t\t\t\t\t[-153.444003, 59.689957],\n\t\t\t\t\t\t\t[-153.464556, 59.651712],\n\t\t\t\t\t\t\t[-153.476098, 59.642730],\n\t\t\t\t\t\t\t[-153.542466, 59.630236],\n\t\t\t\t\t\t\t[-153.563866, 59.638903],\n\t\t\t\t\t\t\t[-153.586518, 59.651541],\n\t\t\t\t\t\t\t[-153.604813, 59.638734],\n\t\t\t\t\t\t\t[-153.610739, 59.628341],\n\t\t\t\t\t\t\t[-153.609253, 59.621640],\n\t\t\t\t\t\t\t[-153.592193, 59.610842],\n\t\t\t\t\t\t\t[-153.558292, 59.605790],\n\t\t\t\t\t\t\t[-153.553163, 59.597046],\n\t\t\t\t\t\t\t[-153.555148, 59.587858],\n\t\t\t\t\t\t\t[-153.577828, 59.555991],\n\t\t\t\t\t\t\t[-153.585406, 59.551475],\n\t\t\t\t\t\t\t[-153.618151, 59.552571],\n\t\t\t\t\t\t\t[-153.635262, 59.555694],\n\t\t\t\t\t\t\t[-153.650943, 59.555427],\n\t\t\t\t\t\t\t[-153.719309, 59.550264],\n\t\t\t\t\t\t\t[-153.761480, 59.543411],\n\t\t\t\t\t\t\t[-153.766242, 59.522342],\n\t\t\t\t\t\t\t[-153.733853, 59.505754],\n\t\t\t\t\t\t\t[-153.706419, 59.477994],\n\t\t\t\t\t\t\t[-153.699025, 59.463603],\n\t\t\t\t\t\t\t[-153.727546, 59.435346],\n\t\t\t\t\t\t\t[-153.747201, 59.429657],\n\t\t\t\t\t\t\t[-153.807119, 59.419466],\n\t\t\t\t\t\t\t[-153.823384, 59.418035],\n\t\t\t\t\t\t\t[-153.862199, 59.424124],\n\t\t\t\t\t\t\t[-153.896576, 59.418486],\n\t\t\t\t\t\t\t[-153.911268, 59.413732],\n\t\t\t\t\t\t\t[-153.925307, 59.405254],\n\t\t\t\t\t\t\t[-153.945539, 59.386061],\n\t\t\t\t\t\t\t[-153.951389, 59.387017],\n\t\t\t\t\t\t\t[-153.954717, 59.392532],\n\t\t\t\t\t\t\t[-153.959893, 59.396850],\n\t\t\t\t\t\t\t[-153.990003, 59.396777],\n\t\t\t\t\t\t\t[-153.993994, 59.394049],\n\t\t\t\t\t\t\t[-153.996261, 59.390820],\n\t\t\t\t\t\t\t[-153.998506, 59.384723],\n\t\t\t\t\t\t\t[-154.007207, 59.382528],\n\t\t\t\t\t\t\t[-154.025696, 59.381521],\n\t\t\t\t\t\t\t[-154.035965, 59.386362],\n\t\t\t\t\t\t\t[-154.044563, 59.388295],\n\t\t\t\t\t\t\t[-154.052150, 59.387138],\n\t\t\t\t\t\t\t[-154.062453, 59.382753],\n\t\t\t\t\t\t\t[-154.087803, 59.367967],\n\t\t\t\t\t\t\t[-154.100989, 59.366016],\n\t\t\t\t\t\t\t[-154.117672, 59.365508],\n\t\t\t\t\t\t\t[-154.121808, 59.360544],\n\t\t\t\t\t\t\t[-154.121394, 59.353099],\n\t\t\t\t\t\t\t[-154.103014, 59.342719],\n\t\t\t\t\t\t\t[-154.033703, 59.343999],\n\t\t\t\t\t\t\t[-154.028739, 59.337381],\n\t\t\t\t\t\t\t[-154.030807, 59.327040],\n\t\t\t\t\t\t\t[-154.077942, 59.313364],\n\t\t\t\t\t\t\t[-154.113577, 59.299627],\n\t\t\t\t\t\t\t[-154.122681, 59.287622],\n\t\t\t\t\t\t\t[-154.136840, 59.262666],\n\t\t\t\t\t\t\t[-154.141192, 59.216598],\n\t\t\t\t\t\t\t[-154.130585, 59.210503],\n\t\t\t\t\t\t\t[-154.172944, 59.172496],\n\t\t\t\t\t\t\t[-154.214818, 59.151562],\n\t\t\t\t\t\t\t[-154.244220, 59.144161],\n\t\t\t\t\t\t\t[-154.260121, 59.143020],\n\t\t\t\t\t\t\t[-154.263291, 59.138462],\n\t\t\t\t\t\t\t[-154.256528, 59.118462],\n\t\t\t\t\t\t\t[-154.251233, 59.111239],\n\t\t\t\t\t\t\t[-154.243785, 59.114868],\n\t\t\t\t\t\t\t[-154.239842, 59.119324],\n\t\t\t\t\t\t\t[-154.227238, 59.125407],\n\t\t\t\t\t\t\t[-154.180691, 59.123235],\n\t\t\t\t\t\t\t[-154.173669, 59.120200],\n\t\t\t\t\t\t\t[-154.166745, 59.100548],\n\t\t\t\t\t\t\t[-154.166406, 59.090582],\n\t\t\t\t\t\t\t[-154.171502, 59.083423],\n\t\t\t\t\t\t\t[-154.195271, 59.069491],\n\t\t\t\t\t\t\t[-154.197422, 59.061155],\n\t\t\t\t\t\t\t[-154.189580, 59.044207],\n\t\t\t\t\t\t\t[-154.171462, 59.021963],\n\t\t\t\t\t\t\t[-154.159835, 59.010595],\n\t\t\t\t\t\t\t[-154.158207, 59.017853],\n\t\t\t\t\t\t\t[-154.132449, 59.024745],\n\t\t\t\t\t\t\t[-154.108278, 59.036827],\n\t\t\t\t\t\t\t[-154.063489, 59.072140],\n\t\t\t\t\t\t\t[-154.031822, 59.073681],\n\t\t\t\t\t\t\t[-154.008547, 59.072904],\n\t\t\t\t\t\t\t[-153.949958, 59.066782],\n\t\t\t\t\t\t\t[-153.932824, 59.062677],\n\t\t\t\t\t\t\t[-153.850238, 59.052917],\n\t\t\t\t\t\t\t[-153.838180, 59.055296],\n\t\t\t\t\t\t\t[-153.815724, 59.064851],\n\t\t\t\t\t\t\t[-153.809866, 59.070797],\n\t\t\t\t\t\t\t[-153.802782, 59.072224],\n\t\t\t\t\t\t\t[-153.793972, 59.071416],\n\t\t\t\t\t\t\t[-153.750936, 59.052840],\n\t\t\t\t\t\t\t[-153.748680, 59.058729],\n\t\t\t\t\t\t\t[-153.746201, 59.065199],\n\t\t\t\t\t\t\t[-153.704162, 59.075780],\n\t\t\t\t\t\t\t[-153.695664, 59.073994],\n\t\t\t\t\t\t\t[-153.648029, 59.028924],\n\t\t\t\t\t\t\t[-153.616066, 59.006737],\n\t\t\t\t\t\t\t[-153.547283, 58.983716],\n\t\t\t\t\t\t\t[-153.523522, 58.979221],\n\t\t\t\t\t\t\t[-153.505618, 58.981734],\n\t\t\t\t\t\t\t[-153.479939, 58.995286],\n\t\t\t\t\t\t\t[-153.463266, 58.986903],\n\t\t\t\t\t\t\t[-153.450672, 58.976119],\n\t\t\t\t\t\t\t[-153.438144, 58.969911],\n\t\t\t\t\t\t\t[-153.422015, 58.970648],\n\t\t\t\t\t\t\t[-153.398479, 58.966056],\n\t\t\t\t\t\t\t[-153.393101, 58.951097],\n\t\t\t\t\t\t\t[-153.388765, 58.945337],\n\t\t\t\t\t\t\t[-153.365371, 58.927753],\n\t\t\t\t\t\t\t[-153.352283, 58.921705],\n\t\t\t\t\t\t\t[-153.334780, 58.920521],\n\t\t\t\t\t\t\t[-153.322843, 58.907849],\n\t\t\t\t\t\t\t[-153.304788, 58.878919],\n\t\t\t\t\t\t\t[-153.305216, 58.874637],\n\t\t\t\t\t\t\t[-153.302433, 58.871212],\n\t\t\t\t\t\t\t[-153.294726, 58.865432],\n\t\t\t\t\t\t\t[-153.286163, 58.863077],\n\t\t\t\t\t\t\t[-153.267407, 58.867218],\n\t\t\t\t\t\t\t[-153.254798, 58.861756],\n\t\t\t\t\t\t\t[-153.252250, 58.855850],\n\t\t\t\t\t\t\t[-153.252662, 58.855797],\n\t\t\t\t\t\t\t[-153.455102, 58.855665],\n\t\t\t\t\t\t\t[-153.452198, 58.734773],\n\t\t\t\t\t\t\t[-153.816565, 58.734254],\n\t\t\t\t\t\t\t[-153.815055, 58.647216],\n\t\t\t\t\t\t\t[-154.305926, 58.646822],\n\t\t\t\t\t\t\t[-154.637270, 58.646810],\n\t\t\t\t\t\t\t[-154.639420, 58.734693],\n\t\t\t\t\t\t\t[-154.692714, 58.734598],\n\t\t\t\t\t\t\t[-154.692093, 59.075956],\n\t\t\t\t\t\t\t[-154.745361, 59.076992],\n\t\t\t\t\t\t\t[-154.747693, 59.253095],\n\t\t\t\t\t\t\t[-154.409316, 59.254640],\n\t\t\t\t\t\t\t[-154.414557, 59.428681],\n\t\t\t\t\t\t\t[-154.121269, 59.431295],\n\t\t\t\t\t\t\t[-154.124374, 59.519551],\n\t\t\t\t\t\t\t[-153.954485, 59.520073],\n\t\t\t\t\t\t\t[-153.955889, 59.696099],\n\t\t\t\t\t\t\t[-153.783649, 59.696598],\n\t\t\t\t\t\t\t[-153.782943, 59.785049],\n\t\t\t\t\t\t\t[-153.654893, 59.784914],\n\t\t\t\t\t\t\t[-153.656579, 60.121433],\n\t\t\t\t\t\t\t[-153.531136, 60.122545],\n\t\t\t\t\t\t\t[-153.528484, 60.470611],\n\t\t\t\t\t\t\t[-153.394293, 60.472296],\n\t\t\t\t\t\t\t[-153.395016, 60.823291],\n\t\t\t\t\t\t\t[-153.436195, 60.908538],\n\t\t\t\t\t\t\t[-153.430404, 61.135740],\n\t\t\t\t\t\t\t[-153.475316, 61.136887],\n\t\t\t\t\t\t\t[-153.469729, 61.428123],\n\t\t\t\t\t\t\t[-153.002181, 61.425686]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US02150\",\n\t\t\t\t\"STATE\": \"02\",\n\t\t\t\t\"COUNTY\": \"150\",\n\t\t\t\t\"NAME\": \"Kodiak Island\",\n\t\t\t\t\"LSAD\": \"Borough\",\n\t\t\t\t\"CENSUSAREA\": 6549.579000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-156.355401, 57.159679],\n\t\t\t\t\t\t\t[-156.750815, 57.162878],\n\t\t\t\t\t\t\t[-156.750780, 57.235795],\n\t\t\t\t\t\t\t[-156.672751, 57.234909],\n\t\t\t\t\t\t\t[-156.617395, 57.334942],\n\t\t\t\t\t\t\t[-156.502226, 57.362606],\n\t\t\t\t\t\t\t[-156.508759, 57.434831],\n\t\t\t\t\t\t\t[-156.458121, 57.478905],\n\t\t\t\t\t\t\t[-156.370235, 57.522368],\n\t\t\t\t\t\t\t[-156.132032, 57.509692],\n\t\t\t\t\t\t\t[-156.071148, 57.584424],\n\t\t\t\t\t\t\t[-155.952772, 57.598213],\n\t\t\t\t\t\t\t[-155.921548, 57.554334],\n\t\t\t\t\t\t\t[-155.871990, 57.599963],\n\t\t\t\t\t\t\t[-155.898455, 57.668100],\n\t\t\t\t\t\t\t[-155.768022, 57.668261],\n\t\t\t\t\t\t\t[-155.693773, 57.797987],\n\t\t\t\t\t\t\t[-155.538830, 57.799806],\n\t\t\t\t\t\t\t[-155.446251, 57.827094],\n\t\t\t\t\t\t\t[-155.446020, 57.871459],\n\t\t\t\t\t\t\t[-155.330245, 57.876343],\n\t\t\t\t\t\t\t[-155.331678, 58.048211],\n\t\t\t\t\t\t\t[-155.280169, 58.108591],\n\t\t\t\t\t\t\t[-155.331999, 58.107967],\n\t\t\t\t\t\t\t[-155.331945, 58.193283],\n\t\t\t\t\t\t\t[-155.221313, 58.193193],\n\t\t\t\t\t\t\t[-155.221463, 58.236408],\n\t\t\t\t\t\t\t[-155.057741, 58.236209],\n\t\t\t\t\t\t\t[-155.008132, 58.290905],\n\t\t\t\t\t\t\t[-154.730369, 58.304669],\n\t\t\t\t\t\t\t[-154.729769, 58.332837],\n\t\t\t\t\t\t\t[-154.570107, 58.333055],\n\t\t\t\t\t\t\t[-154.465741, 58.361356],\n\t\t\t\t\t\t\t[-154.432332, 58.418998],\n\t\t\t\t\t\t\t[-154.303447, 58.460385],\n\t\t\t\t\t\t\t[-154.305926, 58.646822],\n\t\t\t\t\t\t\t[-153.815055, 58.647216],\n\t\t\t\t\t\t\t[-153.816565, 58.734254],\n\t\t\t\t\t\t\t[-153.452198, 58.734773],\n\t\t\t\t\t\t\t[-153.455102, 58.855665],\n\t\t\t\t\t\t\t[-153.252662, 58.855797],\n\t\t\t\t\t\t\t[-153.317823, 58.847441],\n\t\t\t\t\t\t\t[-153.326138, 58.849320],\n\t\t\t\t\t\t\t[-153.336826, 58.848878],\n\t\t\t\t\t\t\t[-153.344830, 58.846953],\n\t\t\t\t\t\t\t[-153.350964, 58.843551],\n\t\t\t\t\t\t\t[-153.358917, 58.836767],\n\t\t\t\t\t\t\t[-153.369389, 58.821255],\n\t\t\t\t\t\t\t[-153.370730, 58.799301],\n\t\t\t\t\t\t\t[-153.385126, 58.766173],\n\t\t\t\t\t\t\t[-153.402472, 58.742607],\n\t\t\t\t\t\t\t[-153.426641, 58.721127],\n\t\t\t\t\t\t\t[-153.445002, 58.709310],\n\t\t\t\t\t\t\t[-153.458816, 58.708561],\n\t\t\t\t\t\t\t[-153.468963, 58.712234],\n\t\t\t\t\t\t\t[-153.477755, 58.712767],\n\t\t\t\t\t\t\t[-153.552650, 58.687176],\n\t\t\t\t\t\t\t[-153.577544, 58.670532],\n\t\t\t\t\t\t\t[-153.587799, 58.651742],\n\t\t\t\t\t\t\t[-153.591635, 58.640084],\n\t\t\t\t\t\t\t[-153.601257, 58.634633],\n\t\t\t\t\t\t\t[-153.677597, 58.611603],\n\t\t\t\t\t\t\t[-153.771636, 58.605639],\n\t\t\t\t\t\t\t[-153.806232, 58.606595],\n\t\t\t\t\t\t\t[-153.832837, 58.611671],\n\t\t\t\t\t\t\t[-153.851432, 58.611872],\n\t\t\t\t\t\t\t[-153.897155, 58.606237],\n\t\t\t\t\t\t\t[-153.902558, 58.597377],\n\t\t\t\t\t\t\t[-153.919134, 58.516659],\n\t\t\t\t\t\t\t[-153.909588, 58.514562],\n\t\t\t\t\t\t\t[-153.930473, 58.497482],\n\t\t\t\t\t\t\t[-153.934852, 58.494414],\n\t\t\t\t\t\t\t[-153.960370, 58.487831],\n\t\t\t\t\t\t\t[-153.974020, 58.488348],\n\t\t\t\t\t\t\t[-153.977617, 58.491931],\n\t\t\t\t\t\t\t[-154.001918, 58.492346],\n\t\t\t\t\t\t\t[-154.056526, 58.489222],\n\t\t\t\t\t\t\t[-154.065121, 58.486430],\n\t\t\t\t\t\t\t[-154.073032, 58.478259],\n\t\t\t\t\t\t\t[-154.075051, 58.472188],\n\t\t\t\t\t\t\t[-154.075235, 58.458106],\n\t\t\t\t\t\t\t[-154.073592, 58.446866],\n\t\t\t\t\t\t\t[-154.070660, 58.440018],\n\t\t\t\t\t\t\t[-154.055759, 58.418782],\n\t\t\t\t\t\t\t[-154.040013, 58.404297],\n\t\t\t\t\t\t\t[-154.034147, 58.402638],\n\t\t\t\t\t\t\t[-154.023713, 58.403952],\n\t\t\t\t\t\t\t[-154.007305, 58.402187],\n\t\t\t\t\t\t\t[-153.985416, 58.390877],\n\t\t\t\t\t\t\t[-153.999323, 58.376372],\n\t\t\t\t\t\t\t[-154.097254, 58.345322],\n\t\t\t\t\t\t\t[-154.133866, 58.350632],\n\t\t\t\t\t\t\t[-154.139223, 58.354108],\n\t\t\t\t\t\t\t[-154.150373, 58.357581],\n\t\t\t\t\t\t\t[-154.167997, 58.358378],\n\t\t\t\t\t\t\t[-154.175194, 58.344527],\n\t\t\t\t\t\t\t[-154.177161, 58.321470],\n\t\t\t\t\t\t\t[-154.174999, 58.320107],\n\t\t\t\t\t\t\t[-154.166648, 58.320569],\n\t\t\t\t\t\t\t[-154.149073, 58.314539],\n\t\t\t\t\t\t\t[-154.103412, 58.280161],\n\t\t\t\t\t\t\t[-154.145277, 58.210931],\n\t\t\t\t\t\t\t[-154.177652, 58.189832],\n\t\t\t\t\t\t\t[-154.219755, 58.184631],\n\t\t\t\t\t\t\t[-154.241874, 58.156328],\n\t\t\t\t\t\t\t[-154.216250, 58.142849],\n\t\t\t\t\t\t\t[-154.210078, 58.136062],\n\t\t\t\t\t\t\t[-154.222465, 58.132566],\n\t\t\t\t\t\t\t[-154.269027, 58.128770],\n\t\t\t\t\t\t\t[-154.291163, 58.135680],\n\t\t\t\t\t\t\t[-154.340449, 58.090921],\n\t\t\t\t\t\t\t[-154.384327, 58.120823],\n\t\t\t\t\t\t\t[-154.426570, 58.144901],\n\t\t\t\t\t\t\t[-154.436518, 58.148294],\n\t\t\t\t\t\t\t[-154.460121, 58.146067],\n\t\t\t\t\t\t\t[-154.466436, 58.142328],\n\t\t\t\t\t\t\t[-154.459389, 58.129089],\n\t\t\t\t\t\t\t[-154.452096, 58.121582],\n\t\t\t\t\t\t\t[-154.449212, 58.093218],\n\t\t\t\t\t\t\t[-154.462929, 58.058350],\n\t\t\t\t\t\t\t[-154.477979, 58.052379],\n\t\t\t\t\t\t\t[-154.501246, 58.050112],\n\t\t\t\t\t\t\t[-154.539367, 58.055887],\n\t\t\t\t\t\t\t[-154.568627, 58.025787],\n\t\t\t\t\t\t\t[-154.581547, 58.019285],\n\t\t\t\t\t\t\t[-154.643965, 58.033147],\n\t\t\t\t\t\t\t[-154.650618, 58.045387],\n\t\t\t\t\t\t\t[-154.644666, 58.056433],\n\t\t\t\t\t\t\t[-154.646223, 58.060141],\n\t\t\t\t\t\t\t[-154.653383, 58.064037],\n\t\t\t\t\t\t\t[-154.668895, 58.065272],\n\t\t\t\t\t\t\t[-154.676108, 58.065114],\n\t\t\t\t\t\t\t[-154.716162, 58.055256],\n\t\t\t\t\t\t\t[-154.721884, 58.050544],\n\t\t\t\t\t\t\t[-154.728980, 58.038455],\n\t\t\t\t\t\t\t[-154.731059, 58.028454],\n\t\t\t\t\t\t\t[-154.730726, 58.021837],\n\t\t\t\t\t\t\t[-154.745581, 58.012220],\n\t\t\t\t\t\t\t[-154.765287, 58.003710],\n\t\t\t\t\t\t\t[-154.774719, 58.002168],\n\t\t\t\t\t\t\t[-154.807767, 58.000939],\n\t\t\t\t\t\t\t[-154.819518, 58.003494],\n\t\t\t\t\t\t\t[-154.823518, 58.009348],\n\t\t\t\t\t\t\t[-154.825051, 58.016586],\n\t\t\t\t\t\t\t[-154.828230, 58.018849],\n\t\t\t\t\t\t\t[-154.876559, 58.027722],\n\t\t\t\t\t\t\t[-154.891812, 58.027676],\n\t\t\t\t\t\t\t[-154.990431, 58.013424],\n\t\t\t\t\t\t\t[-155.026275, 57.999302],\n\t\t\t\t\t\t\t[-155.118648, 57.953925],\n\t\t\t\t\t\t\t[-155.094686, 57.929280],\n\t\t\t\t\t\t\t[-155.072566, 57.911968],\n\t\t\t\t\t\t\t[-155.064199, 57.909294],\n\t\t\t\t\t\t\t[-155.061806, 57.904330],\n\t\t\t\t\t\t\t[-155.068148, 57.883773],\n\t\t\t\t\t\t\t[-155.082139, 57.872248],\n\t\t\t\t\t\t\t[-155.097095, 57.865356],\n\t\t\t\t\t\t\t[-155.152420, 57.855375],\n\t\t\t\t\t\t\t[-155.237933, 57.827131],\n\t\t\t\t\t\t\t[-155.272917, 57.823981],\n\t\t\t\t\t\t\t[-155.298385, 57.826020],\n\t\t\t\t\t\t\t[-155.303044, 57.828454],\n\t\t\t\t\t\t\t[-155.326369, 57.830545],\n\t\t\t\t\t\t\t[-155.338153, 57.825384],\n\t\t\t\t\t\t\t[-155.341235, 57.819644],\n\t\t\t\t\t\t\t[-155.334944, 57.780692],\n\t\t\t\t\t\t\t[-155.310981, 57.764811],\n\t\t\t\t\t\t\t[-155.302789, 57.761658],\n\t\t\t\t\t\t\t[-155.285339, 57.758726],\n\t\t\t\t\t\t\t[-155.284691, 57.757388],\n\t\t\t\t\t\t\t[-155.291651, 57.735809],\n\t\t\t\t\t\t\t[-155.305814, 57.724050],\n\t\t\t\t\t\t\t[-155.378610, 57.710766],\n\t\t\t\t\t\t\t[-155.468287, 57.744637],\n\t\t\t\t\t\t\t[-155.506533, 57.760970],\n\t\t\t\t\t\t\t[-155.533627, 57.776880],\n\t\t\t\t\t\t\t[-155.539766, 57.783942],\n\t\t\t\t\t\t\t[-155.545676, 57.786769],\n\t\t\t\t\t\t\t[-155.568437, 57.789511],\n\t\t\t\t\t\t\t[-155.585411, 57.786981],\n\t\t\t\t\t\t\t[-155.596857, 57.783539],\n\t\t\t\t\t\t\t[-155.609353, 57.777699],\n\t\t\t\t\t\t\t[-155.617188, 57.769715],\n\t\t\t\t\t\t\t[-155.635323, 57.715441],\n\t\t\t\t\t\t\t[-155.634543, 57.704764],\n\t\t\t\t\t\t\t[-155.626373, 57.693623],\n\t\t\t\t\t\t\t[-155.615203, 57.688074],\n\t\t\t\t\t\t\t[-155.629912, 57.656376],\n\t\t\t\t\t\t\t[-155.699986, 57.642085],\n\t\t\t\t\t\t\t[-155.724167, 57.633445],\n\t\t\t\t\t\t\t[-155.735509, 57.594149],\n\t\t\t\t\t\t\t[-155.730951, 57.588562],\n\t\t\t\t\t\t\t[-155.731412, 57.555546],\n\t\t\t\t\t\t\t[-155.732779, 57.549732],\n\t\t\t\t\t\t\t[-155.786939, 57.547007],\n\t\t\t\t\t\t\t[-155.877856, 57.547173],\n\t\t\t\t\t\t\t[-155.915261, 57.535331],\n\t\t\t\t\t\t\t[-155.945812, 57.539249],\n\t\t\t\t\t\t\t[-155.967890, 57.544429],\n\t\t\t\t\t\t\t[-155.985988, 57.553721],\n\t\t\t\t\t\t\t[-155.988113, 57.558328],\n\t\t\t\t\t\t\t[-156.010818, 57.571379],\n\t\t\t\t\t\t\t[-156.033806, 57.569883],\n\t\t\t\t\t\t\t[-156.044031, 57.564455],\n\t\t\t\t\t\t\t[-156.048584, 57.500808],\n\t\t\t\t\t\t\t[-156.045324, 57.487037],\n\t\t\t\t\t\t\t[-156.036722, 57.470941],\n\t\t\t\t\t\t\t[-156.014396, 57.455285],\n\t\t\t\t\t\t\t[-156.012841, 57.451394],\n\t\t\t\t\t\t\t[-156.021875, 57.439660],\n\t\t\t\t\t\t\t[-156.091668, 57.439829],\n\t\t\t\t\t\t\t[-156.099067, 57.443691],\n\t\t\t\t\t\t\t[-156.137480, 57.471734],\n\t\t\t\t\t\t\t[-156.183932, 57.482112],\n\t\t\t\t\t\t\t[-156.195740, 57.480059],\n\t\t\t\t\t\t\t[-156.210883, 57.474409],\n\t\t\t\t\t\t\t[-156.211485, 57.459475],\n\t\t\t\t\t\t\t[-156.220105, 57.445295],\n\t\t\t\t\t\t\t[-156.226886, 57.440667],\n\t\t\t\t\t\t\t[-156.254462, 57.438961],\n\t\t\t\t\t\t\t[-156.339425, 57.417641],\n\t\t\t\t\t\t\t[-156.362039, 57.400474],\n\t\t\t\t\t\t\t[-156.377439, 57.390865],\n\t\t\t\t\t\t\t[-156.481632, 57.338705],\n\t\t\t\t\t\t\t[-156.511412, 57.335020],\n\t\t\t\t\t\t\t[-156.533544, 57.328527],\n\t\t\t\t\t\t\t[-156.539718, 57.320059],\n\t\t\t\t\t\t\t[-156.551239, 57.290800],\n\t\t\t\t\t\t\t[-156.538684, 57.283041],\n\t\t\t\t\t\t\t[-156.507301, 57.281164],\n\t\t\t\t\t\t\t[-156.420864, 57.311142],\n\t\t\t\t\t\t\t[-156.336427, 57.336081],\n\t\t\t\t\t\t\t[-156.321910, 57.293369],\n\t\t\t\t\t\t\t[-156.332718, 57.265192],\n\t\t\t\t\t\t\t[-156.342943, 57.248056],\n\t\t\t\t\t\t\t[-156.358139, 57.252188],\n\t\t\t\t\t\t\t[-156.376507, 57.252284],\n\t\t\t\t\t\t\t[-156.399423, 57.241627],\n\t\t\t\t\t\t\t[-156.401488, 57.233169],\n\t\t\t\t\t\t\t[-156.398751, 57.214756],\n\t\t\t\t\t\t\t[-156.388592, 57.206620],\n\t\t\t\t\t\t\t[-156.355756, 57.192844],\n\t\t\t\t\t\t\t[-156.341300, 57.191857],\n\t\t\t\t\t\t\t[-156.338430, 57.190325],\n\t\t\t\t\t\t\t[-156.334404, 57.182300],\n\t\t\t\t\t\t\t[-156.355401, 57.159679]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-155.620560, 55.907509],\n\t\t\t\t\t\t\t[-155.568207, 55.907509],\n\t\t\t\t\t\t\t[-155.560593, 55.897041],\n\t\t\t\t\t\t\t[-155.559895, 55.882898],\n\t\t\t\t\t\t\t[-155.584396, 55.848499],\n\t\t\t\t\t\t\t[-155.564407, 55.809475],\n\t\t\t\t\t\t\t[-155.566315, 55.789490],\n\t\t\t\t\t\t\t[-155.589157, 55.761887],\n\t\t\t\t\t\t\t[-155.611038, 55.759983],\n\t\t\t\t\t\t\t[-155.649109, 55.776165],\n\t\t\t\t\t\t\t[-155.718597, 55.772358],\n\t\t\t\t\t\t\t[-155.728104, 55.779018],\n\t\t\t\t\t\t\t[-155.750000, 55.821850],\n\t\t\t\t\t\t\t[-155.743125, 55.831488],\n\t\t\t\t\t\t\t[-155.663374, 55.860488],\n\t\t\t\t\t\t\t[-155.637695, 55.894184],\n\t\t\t\t\t\t\t[-155.620560, 55.907509]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-154.404015, 56.572287],\n\t\t\t\t\t\t\t[-154.393868, 56.562388],\n\t\t\t\t\t\t\t[-154.391294, 56.557931],\n\t\t\t\t\t\t\t[-154.392480, 56.554053],\n\t\t\t\t\t\t\t[-154.436794, 56.534556],\n\t\t\t\t\t\t\t[-154.529507, 56.502655],\n\t\t\t\t\t\t\t[-154.571701, 56.494165],\n\t\t\t\t\t\t\t[-154.633586, 56.471817],\n\t\t\t\t\t\t\t[-154.668517, 56.452544],\n\t\t\t\t\t\t\t[-154.691485, 56.436711],\n\t\t\t\t\t\t\t[-154.704129, 56.424230],\n\t\t\t\t\t\t\t[-154.736550, 56.403848],\n\t\t\t\t\t\t\t[-154.742887, 56.401678],\n\t\t\t\t\t\t\t[-154.765021, 56.401361],\n\t\t\t\t\t\t\t[-154.775766, 56.404075],\n\t\t\t\t\t\t\t[-154.789003, 56.411015],\n\t\t\t\t\t\t\t[-154.799907, 56.419387],\n\t\t\t\t\t\t\t[-154.805481, 56.427488],\n\t\t\t\t\t\t\t[-154.806114, 56.434182],\n\t\t\t\t\t\t\t[-154.777505, 56.462199],\n\t\t\t\t\t\t\t[-154.739644, 56.496332],\n\t\t\t\t\t\t\t[-154.706140, 56.521273],\n\t\t\t\t\t\t\t[-154.534726, 56.600540],\n\t\t\t\t\t\t\t[-154.524629, 56.603925],\n\t\t\t\t\t\t\t[-154.514078, 56.604059],\n\t\t\t\t\t\t\t[-154.449965, 56.600361],\n\t\t\t\t\t\t\t[-154.413435, 56.586768],\n\t\t\t\t\t\t\t[-154.402289, 56.580543],\n\t\t\t\t\t\t\t[-154.399389, 56.576411],\n\t\t\t\t\t\t\t[-154.404015, 56.572287]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-153.940505, 56.558317],\n\t\t\t\t\t\t\t[-153.915288, 56.564921],\n\t\t\t\t\t\t\t[-153.878764, 56.565925],\n\t\t\t\t\t\t\t[-153.870804, 56.558015],\n\t\t\t\t\t\t\t[-153.868461, 56.551493],\n\t\t\t\t\t\t\t[-153.887678, 56.533637],\n\t\t\t\t\t\t\t[-153.952958, 56.507174],\n\t\t\t\t\t\t\t[-153.993909, 56.501796],\n\t\t\t\t\t\t\t[-154.120244, 56.501838],\n\t\t\t\t\t\t\t[-154.143711, 56.506172],\n\t\t\t\t\t\t\t[-154.163987, 56.507844],\n\t\t\t\t\t\t\t[-154.197280, 56.502002],\n\t\t\t\t\t\t\t[-154.232464, 56.491052],\n\t\t\t\t\t\t\t[-154.304371, 56.502322],\n\t\t\t\t\t\t\t[-154.343096, 56.510171],\n\t\t\t\t\t\t\t[-154.347400, 56.512046],\n\t\t\t\t\t\t\t[-154.361378, 56.525640],\n\t\t\t\t\t\t\t[-154.362361, 56.542512],\n\t\t\t\t\t\t\t[-154.341401, 56.563705],\n\t\t\t\t\t\t\t[-154.310913, 56.585447],\n\t\t\t\t\t\t\t[-154.290020, 56.595376],\n\t\t\t\t\t\t\t[-154.244234, 56.609194],\n\t\t\t\t\t\t\t[-154.223759, 56.612955],\n\t\t\t\t\t\t\t[-154.210336, 56.609684],\n\t\t\t\t\t\t\t[-154.206001, 56.606908],\n\t\t\t\t\t\t\t[-154.184819, 56.603773],\n\t\t\t\t\t\t\t[-154.136739, 56.609350],\n\t\t\t\t\t\t\t[-154.113397, 56.616745],\n\t\t\t\t\t\t\t[-154.103243, 56.617695],\n\t\t\t\t\t\t\t[-154.095833, 56.617786],\n\t\t\t\t\t\t\t[-154.090014, 56.614798],\n\t\t\t\t\t\t\t[-154.081829, 56.603716],\n\t\t\t\t\t\t\t[-154.079016, 56.589977],\n\t\t\t\t\t\t\t[-154.075187, 56.583745],\n\t\t\t\t\t\t\t[-154.041572, 56.556209],\n\t\t\t\t\t\t\t[-154.025334, 56.551763],\n\t\t\t\t\t\t\t[-154.009274, 56.551445],\n\t\t\t\t\t\t\t[-153.940505, 56.558317]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-152.417424, 57.815464],\n\t\t\t\t\t\t\t[-152.364079, 57.829372],\n\t\t\t\t\t\t\t[-152.351152, 57.834768],\n\t\t\t\t\t\t\t[-152.324284, 57.824444],\n\t\t\t\t\t\t\t[-152.310927, 57.783452],\n\t\t\t\t\t\t\t[-152.317267, 57.771987],\n\t\t\t\t\t\t\t[-152.322172, 57.768315],\n\t\t\t\t\t\t\t[-152.342674, 57.762306],\n\t\t\t\t\t\t\t[-152.348644, 57.764393],\n\t\t\t\t\t\t\t[-152.349169, 57.768480],\n\t\t\t\t\t\t\t[-152.357233, 57.773918],\n\t\t\t\t\t\t\t[-152.381076, 57.776744],\n\t\t\t\t\t\t\t[-152.443786, 57.776142],\n\t\t\t\t\t\t\t[-152.465550, 57.767169],\n\t\t\t\t\t\t\t[-152.471000, 57.763466],\n\t\t\t\t\t\t\t[-152.497314, 57.738596],\n\t\t\t\t\t\t\t[-152.497056, 57.734387],\n\t\t\t\t\t\t\t[-152.467679, 57.681390],\n\t\t\t\t\t\t\t[-152.443030, 57.668049],\n\t\t\t\t\t\t\t[-152.401492, 57.686513],\n\t\t\t\t\t\t\t[-152.398569, 57.687210],\n\t\t\t\t\t\t\t[-152.394474, 57.684665],\n\t\t\t\t\t\t\t[-152.428946, 57.642162],\n\t\t\t\t\t\t\t[-152.461018, 57.606311],\n\t\t\t\t\t\t\t[-152.468172, 57.600996],\n\t\t\t\t\t\t\t[-152.467756, 57.598221],\n\t\t\t\t\t\t\t[-152.459929, 57.594373],\n\t\t\t\t\t\t\t[-152.439667, 57.590399],\n\t\t\t\t\t\t\t[-152.426062, 57.593357],\n\t\t\t\t\t\t\t[-152.402470, 57.607981],\n\t\t\t\t\t\t\t[-152.387140, 57.612428],\n\t\t\t\t\t\t\t[-152.361903, 57.618800],\n\t\t\t\t\t\t\t[-152.322733, 57.623402],\n\t\t\t\t\t\t\t[-152.265346, 57.626430],\n\t\t\t\t\t\t\t[-152.179531, 57.624809],\n\t\t\t\t\t\t\t[-152.161617, 57.623287],\n\t\t\t\t\t\t\t[-152.152393, 57.619485],\n\t\t\t\t\t\t\t[-152.159677, 57.593614],\n\t\t\t\t\t\t\t[-152.163996, 57.584607],\n\t\t\t\t\t\t\t[-152.259641, 57.527156],\n\t\t\t\t\t\t\t[-152.291470, 57.517103],\n\t\t\t\t\t\t\t[-152.314889, 57.486065],\n\t\t\t\t\t\t\t[-152.323683, 57.467861],\n\t\t\t\t\t\t\t[-152.326134, 57.441514],\n\t\t\t\t\t\t\t[-152.361592, 57.427761],\n\t\t\t\t\t\t\t[-152.416473, 57.435293],\n\t\t\t\t\t\t\t[-152.495215, 57.452379],\n\t\t\t\t\t\t\t[-152.517004, 57.432184],\n\t\t\t\t\t\t\t[-152.570527, 57.448909],\n\t\t\t\t\t\t\t[-152.600375, 57.468833],\n\t\t\t\t\t\t\t[-152.646017, 57.466134],\n\t\t\t\t\t\t\t[-152.662831, 57.463679],\n\t\t\t\t\t\t\t[-152.684413, 57.466597],\n\t\t\t\t\t\t\t[-152.716765, 57.478467],\n\t\t\t\t\t\t\t[-152.720471, 57.481572],\n\t\t\t\t\t\t\t[-152.719447, 57.488028],\n\t\t\t\t\t\t\t[-152.722846, 57.494087],\n\t\t\t\t\t\t\t[-152.743084, 57.505710],\n\t\t\t\t\t\t\t[-152.770196, 57.504290],\n\t\t\t\t\t\t\t[-152.798914, 57.494255],\n\t\t\t\t\t\t\t[-152.809036, 57.494505],\n\t\t\t\t\t\t\t[-152.825515, 57.497048],\n\t\t\t\t\t\t\t[-152.838905, 57.502270],\n\t\t\t\t\t\t\t[-152.886205, 57.510697],\n\t\t\t\t\t\t\t[-152.939629, 57.520088],\n\t\t\t\t\t\t\t[-152.954939, 57.520449],\n\t\t\t\t\t\t\t[-152.966300, 57.512170],\n\t\t\t\t\t\t\t[-152.967222, 57.509993],\n\t\t\t\t\t\t\t[-152.949010, 57.498212],\n\t\t\t\t\t\t\t[-152.939573, 57.497763],\n\t\t\t\t\t\t\t[-152.921748, 57.501397],\n\t\t\t\t\t\t\t[-152.890173, 57.486705],\n\t\t\t\t\t\t\t[-152.762676, 57.457560],\n\t\t\t\t\t\t\t[-152.742678, 57.447852],\n\t\t\t\t\t\t\t[-152.722651, 57.433352],\n\t\t\t\t\t\t\t[-152.673250, 57.413246],\n\t\t\t\t\t\t\t[-152.630018, 57.405573],\n\t\t\t\t\t\t\t[-152.620377, 57.401601],\n\t\t\t\t\t\t\t[-152.601148, 57.382165],\n\t\t\t\t\t\t\t[-152.606522, 57.363660],\n\t\t\t\t\t\t\t[-152.630441, 57.322668],\n\t\t\t\t\t\t\t[-152.657569, 57.303551],\n\t\t\t\t\t\t\t[-152.695698, 57.281318],\n\t\t\t\t\t\t\t[-152.707768, 57.276046],\n\t\t\t\t\t\t\t[-152.712008, 57.278120],\n\t\t\t\t\t\t\t[-152.774155, 57.290432],\n\t\t\t\t\t\t\t[-152.787994, 57.279905],\n\t\t\t\t\t\t\t[-152.818187, 57.265368],\n\t\t\t\t\t\t\t[-152.886384, 57.291337],\n\t\t\t\t\t\t\t[-152.900688, 57.302976],\n\t\t\t\t\t\t\t[-152.909051, 57.324222],\n\t\t\t\t\t\t\t[-152.984715, 57.339918],\n\t\t\t\t\t\t\t[-153.008525, 57.339733],\n\t\t\t\t\t\t\t[-153.056007, 57.329229],\n\t\t\t\t\t\t\t[-153.079288, 57.321960],\n\t\t\t\t\t\t\t[-153.099040, 57.310513],\n\t\t\t\t\t\t\t[-153.116280, 57.297312],\n\t\t\t\t\t\t\t[-153.101322, 57.286901],\n\t\t\t\t\t\t\t[-153.096133, 57.286866],\n\t\t\t\t\t\t\t[-153.039134, 57.293314],\n\t\t\t\t\t\t\t[-153.017643, 57.297715],\n\t\t\t\t\t\t\t[-153.015994, 57.300231],\n\t\t\t\t\t\t\t[-153.012992, 57.299453],\n\t\t\t\t\t\t\t[-152.970910, 57.282624],\n\t\t\t\t\t\t\t[-152.944201, 57.259083],\n\t\t\t\t\t\t\t[-152.943463, 57.256956],\n\t\t\t\t\t\t\t[-152.950982, 57.248991],\n\t\t\t\t\t\t\t[-152.997739, 57.231176],\n\t\t\t\t\t\t\t[-153.056971, 57.214756],\n\t\t\t\t\t\t\t[-153.077916, 57.211444],\n\t\t\t\t\t\t\t[-153.125477, 57.211841],\n\t\t\t\t\t\t\t[-153.163333, 57.216713],\n\t\t\t\t\t\t\t[-153.169724, 57.220236],\n\t\t\t\t\t\t\t[-153.201722, 57.221679],\n\t\t\t\t\t\t\t[-153.209732, 57.218773],\n\t\t\t\t\t\t\t[-153.215107, 57.213356],\n\t\t\t\t\t\t\t[-153.215967, 57.209297],\n\t\t\t\t\t\t\t[-153.213802, 57.205059],\n\t\t\t\t\t\t\t[-153.166002, 57.180643],\n\t\t\t\t\t\t\t[-153.123865, 57.175445],\n\t\t\t\t\t\t\t[-153.097019, 57.183289],\n\t\t\t\t\t\t\t[-153.073982, 57.187091],\n\t\t\t\t\t\t\t[-152.949333, 57.187346],\n\t\t\t\t\t\t\t[-152.880321, 57.164798],\n\t\t\t\t\t\t\t[-152.874839, 57.160950],\n\t\t\t\t\t\t\t[-152.869797, 57.150849],\n\t\t\t\t\t\t\t[-152.900540, 57.132076],\n\t\t\t\t\t\t\t[-152.911371, 57.126813],\n\t\t\t\t\t\t\t[-152.950736, 57.119788],\n\t\t\t\t\t\t\t[-152.997246, 57.119491],\n\t\t\t\t\t\t\t[-153.118673, 57.091033],\n\t\t\t\t\t\t\t[-153.128881, 57.092571],\n\t\t\t\t\t\t\t[-153.132708, 57.094936],\n\t\t\t\t\t\t\t[-153.133988, 57.099351],\n\t\t\t\t\t\t\t[-153.146361, 57.100883],\n\t\t\t\t\t\t\t[-153.180010, 57.094523],\n\t\t\t\t\t\t\t[-153.215440, 57.075943],\n\t\t\t\t\t\t\t[-153.220953, 57.068239],\n\t\t\t\t\t\t\t[-153.222240, 57.061798],\n\t\t\t\t\t\t\t[-153.221204, 57.060367],\n\t\t\t\t\t\t\t[-153.213318, 57.055891],\n\t\t\t\t\t\t\t[-153.205384, 57.056148],\n\t\t\t\t\t\t\t[-153.200217, 57.042039],\n\t\t\t\t\t\t\t[-153.204319, 57.033640],\n\t\t\t\t\t\t\t[-153.235282, 57.007398],\n\t\t\t\t\t\t\t[-153.301142, 56.991192],\n\t\t\t\t\t\t\t[-153.312583, 56.991486],\n\t\t\t\t\t\t\t[-153.348707, 57.008373],\n\t\t\t\t\t\t\t[-153.349037, 57.011196],\n\t\t\t\t\t\t\t[-153.320929, 57.036838],\n\t\t\t\t\t\t\t[-153.324265, 57.043308],\n\t\t\t\t\t\t\t[-153.365239, 57.072080],\n\t\t\t\t\t\t\t[-153.396921, 57.060399],\n\t\t\t\t\t\t\t[-153.402608, 57.070092],\n\t\t\t\t\t\t\t[-153.404263, 57.080511],\n\t\t\t\t\t\t\t[-153.384699, 57.115354],\n\t\t\t\t\t\t\t[-153.380389, 57.120468],\n\t\t\t\t\t\t\t[-153.345533, 57.139565],\n\t\t\t\t\t\t\t[-153.328206, 57.141993],\n\t\t\t\t\t\t\t[-153.284012, 57.173867],\n\t\t\t\t\t\t\t[-153.282735, 57.175815],\n\t\t\t\t\t\t\t[-153.286351, 57.184288],\n\t\t\t\t\t\t\t[-153.310143, 57.194426],\n\t\t\t\t\t\t\t[-153.350266, 57.192339],\n\t\t\t\t\t\t\t[-153.368180, 57.185337],\n\t\t\t\t\t\t\t[-153.368921, 57.180832],\n\t\t\t\t\t\t\t[-153.366525, 57.176708],\n\t\t\t\t\t\t\t[-153.486520, 57.085915],\n\t\t\t\t\t\t\t[-153.489600, 57.074702],\n\t\t\t\t\t\t\t[-153.498850, 57.065363],\n\t\t\t\t\t\t\t[-153.535942, 57.077988],\n\t\t\t\t\t\t\t[-153.563562, 57.089769],\n\t\t\t\t\t\t\t[-153.577006, 57.093177],\n\t\t\t\t\t\t\t[-153.654497, 57.084602],\n\t\t\t\t\t\t\t[-153.675981, 57.069830],\n\t\t\t\t\t\t\t[-153.675736, 57.054778],\n\t\t\t\t\t\t\t[-153.663810, 57.053694],\n\t\t\t\t\t\t\t[-153.601294, 57.056656],\n\t\t\t\t\t\t\t[-153.595819, 57.056309],\n\t\t\t\t\t\t\t[-153.580831, 57.049048],\n\t\t\t\t\t\t\t[-153.543429, 56.995245],\n\t\t\t\t\t\t\t[-153.556762, 56.968862],\n\t\t\t\t\t\t\t[-153.600664, 56.942629],\n\t\t\t\t\t\t\t[-153.627483, 56.937127],\n\t\t\t\t\t\t\t[-153.671317, 56.932926],\n\t\t\t\t\t\t\t[-153.701197, 56.926394],\n\t\t\t\t\t\t\t[-153.730713, 56.893996],\n\t\t\t\t\t\t\t[-153.715263, 56.878442],\n\t\t\t\t\t\t\t[-153.704603, 56.878046],\n\t\t\t\t\t\t\t[-153.695896, 56.881009],\n\t\t\t\t\t\t\t[-153.688713, 56.871975],\n\t\t\t\t\t\t\t[-153.696693, 56.861519],\n\t\t\t\t\t\t\t[-153.714644, 56.852925],\n\t\t\t\t\t\t\t[-153.778199, 56.834386],\n\t\t\t\t\t\t\t[-153.796111, 56.842655],\n\t\t\t\t\t\t\t[-153.800935, 56.846894],\n\t\t\t\t\t\t\t[-153.807353, 56.848584],\n\t\t\t\t\t\t\t[-153.817978, 56.848651],\n\t\t\t\t\t\t\t[-153.849289, 56.838915],\n\t\t\t\t\t\t\t[-153.854196, 56.836412],\n\t\t\t\t\t\t\t[-153.903580, 56.793418],\n\t\t\t\t\t\t\t[-153.924041, 56.767216],\n\t\t\t\t\t\t\t[-153.963274, 56.747600],\n\t\t\t\t\t\t\t[-153.971780, 56.744861],\n\t\t\t\t\t\t\t[-153.990158, 56.743263],\n\t\t\t\t\t\t\t[-154.016213, 56.743466],\n\t\t\t\t\t\t\t[-154.022610, 56.755946],\n\t\t\t\t\t\t\t[-154.037153, 56.763414],\n\t\t\t\t\t\t\t[-154.050518, 56.763523],\n\t\t\t\t\t\t\t[-154.064292, 56.760091],\n\t\t\t\t\t\t\t[-154.085088, 56.751193],\n\t\t\t\t\t\t\t[-154.106565, 56.745572],\n\t\t\t\t\t\t\t[-154.129017, 56.742168],\n\t\t\t\t\t\t\t[-154.136965, 56.742359],\n\t\t\t\t\t\t\t[-154.148745, 56.745677],\n\t\t\t\t\t\t\t[-154.125431, 56.783298],\n\t\t\t\t\t\t\t[-154.072878, 56.841099],\n\t\t\t\t\t\t\t[-154.067425, 56.845303],\n\t\t\t\t\t\t\t[-154.055228, 56.850465],\n\t\t\t\t\t\t\t[-154.040948, 56.854135],\n\t\t\t\t\t\t\t[-154.030502, 56.855052],\n\t\t\t\t\t\t\t[-153.984547, 56.889626],\n\t\t\t\t\t\t\t[-153.935992, 56.915772],\n\t\t\t\t\t\t\t[-153.894564, 56.926986],\n\t\t\t\t\t\t\t[-153.862954, 56.944374],\n\t\t\t\t\t\t\t[-153.850464, 56.957278],\n\t\t\t\t\t\t\t[-153.873411, 56.963403],\n\t\t\t\t\t\t\t[-153.902802, 56.968445],\n\t\t\t\t\t\t\t[-153.913627, 56.965391],\n\t\t\t\t\t\t\t[-153.917703, 56.962169],\n\t\t\t\t\t\t\t[-153.934781, 56.958928],\n\t\t\t\t\t\t\t[-153.976871, 56.955144],\n\t\t\t\t\t\t\t[-153.979743, 56.962189],\n\t\t\t\t\t\t\t[-153.976869, 56.996831],\n\t\t\t\t\t\t\t[-153.932221, 57.062970],\n\t\t\t\t\t\t\t[-153.887461, 57.086958],\n\t\t\t\t\t\t\t[-153.875356, 57.089802],\n\t\t\t\t\t\t\t[-153.858891, 57.088844],\n\t\t\t\t\t\t\t[-153.804787, 57.113158],\n\t\t\t\t\t\t\t[-153.783465, 57.131822],\n\t\t\t\t\t\t\t[-153.776707, 57.142858],\n\t\t\t\t\t\t\t[-153.779087, 57.158821],\n\t\t\t\t\t\t\t[-153.788521, 57.161381],\n\t\t\t\t\t\t\t[-153.806290, 57.157424],\n\t\t\t\t\t\t\t[-153.822875, 57.142372],\n\t\t\t\t\t\t\t[-153.823978, 57.139790],\n\t\t\t\t\t\t\t[-153.861711, 57.119224],\n\t\t\t\t\t\t\t[-153.982792, 57.066277],\n\t\t\t\t\t\t\t[-153.993807, 57.050502],\n\t\t\t\t\t\t\t[-154.024288, 57.016608],\n\t\t\t\t\t\t\t[-154.055554, 56.987209],\n\t\t\t\t\t\t\t[-154.076623, 56.970589],\n\t\t\t\t\t\t\t[-154.123489, 56.956170],\n\t\t\t\t\t\t\t[-154.145167, 56.945034],\n\t\t\t\t\t\t\t[-154.159014, 56.945323],\n\t\t\t\t\t\t\t[-154.165409, 56.943244],\n\t\t\t\t\t\t\t[-154.212110, 56.909749],\n\t\t\t\t\t\t\t[-154.223560, 56.896064],\n\t\t\t\t\t\t\t[-154.227193, 56.883026],\n\t\t\t\t\t\t\t[-154.226494, 56.876257],\n\t\t\t\t\t\t\t[-154.231771, 56.872294],\n\t\t\t\t\t\t\t[-154.276739, 56.853648],\n\t\t\t\t\t\t\t[-154.298965, 56.846479],\n\t\t\t\t\t\t\t[-154.305713, 56.846871],\n\t\t\t\t\t\t\t[-154.300193, 56.852023],\n\t\t\t\t\t\t\t[-154.298422, 56.863176],\n\t\t\t\t\t\t\t[-154.300002, 56.892252],\n\t\t\t\t\t\t\t[-154.306936, 56.911783],\n\t\t\t\t\t\t\t[-154.312888, 56.918673],\n\t\t\t\t\t\t\t[-154.385285, 56.959767],\n\t\t\t\t\t\t\t[-154.407490, 56.968334],\n\t\t\t\t\t\t\t[-154.476315, 56.984204],\n\t\t\t\t\t\t\t[-154.511672, 56.988548],\n\t\t\t\t\t\t\t[-154.524695, 56.991623],\n\t\t\t\t\t\t\t[-154.528538, 57.001892],\n\t\t\t\t\t\t\t[-154.516842, 57.030312],\n\t\t\t\t\t\t\t[-154.515213, 57.077985],\n\t\t\t\t\t\t\t[-154.529844, 57.168882],\n\t\t\t\t\t\t\t[-154.533699, 57.183513],\n\t\t\t\t\t\t\t[-154.539552, 57.196351],\n\t\t\t\t\t\t\t[-154.574343, 57.239919],\n\t\t\t\t\t\t\t[-154.594977, 57.257161],\n\t\t\t\t\t\t\t[-154.613723, 57.267800],\n\t\t\t\t\t\t\t[-154.691855, 57.284110],\n\t\t\t\t\t\t\t[-154.698264, 57.284294],\n\t\t\t\t\t\t\t[-154.740161, 57.276517],\n\t\t\t\t\t\t\t[-154.777368, 57.280008],\n\t\t\t\t\t\t\t[-154.792054, 57.286696],\n\t\t\t\t\t\t\t[-154.793840, 57.288862],\n\t\t\t\t\t\t\t[-154.751537, 57.307781],\n\t\t\t\t\t\t\t[-154.743090, 57.314770],\n\t\t\t\t\t\t\t[-154.700598, 57.401162],\n\t\t\t\t\t\t\t[-154.699629, 57.412873],\n\t\t\t\t\t\t\t[-154.702588, 57.420528],\n\t\t\t\t\t\t\t[-154.693310, 57.446085],\n\t\t\t\t\t\t\t[-154.629678, 57.510197],\n\t\t\t\t\t\t\t[-154.618704, 57.514972],\n\t\t\t\t\t\t\t[-154.602546, 57.518751],\n\t\t\t\t\t\t\t[-154.591678, 57.518597],\n\t\t\t\t\t\t\t[-154.540923, 57.539621],\n\t\t\t\t\t\t\t[-154.522060, 57.577786],\n\t\t\t\t\t\t\t[-154.511233, 57.578646],\n\t\t\t\t\t\t\t[-154.500282, 57.574423],\n\t\t\t\t\t\t\t[-154.468328, 57.570339],\n\t\t\t\t\t\t\t[-154.431841, 57.584783],\n\t\t\t\t\t\t\t[-154.411385, 57.598452],\n\t\t\t\t\t\t\t[-154.344244, 57.630901],\n\t\t\t\t\t\t\t[-154.225660, 57.661366],\n\t\t\t\t\t\t\t[-154.196959, 57.664639],\n\t\t\t\t\t\t\t[-154.186597, 57.658578],\n\t\t\t\t\t\t\t[-154.086130, 57.649054],\n\t\t\t\t\t\t\t[-154.056226, 57.652430],\n\t\t\t\t\t\t\t[-154.031592, 57.660854],\n\t\t\t\t\t\t\t[-153.994572, 57.656905],\n\t\t\t\t\t\t\t[-153.983015, 57.649835],\n\t\t\t\t\t\t\t[-153.982581, 57.648251],\n\t\t\t\t\t\t\t[-153.984847, 57.604595],\n\t\t\t\t\t\t\t[-153.982199, 57.553156],\n\t\t\t\t\t\t\t[-153.971114, 57.539436],\n\t\t\t\t\t\t\t[-153.947550, 57.540244],\n\t\t\t\t\t\t\t[-153.939099, 57.538271],\n\t\t\t\t\t\t\t[-153.929265, 57.533253],\n\t\t\t\t\t\t\t[-153.925905, 57.529051],\n\t\t\t\t\t\t\t[-153.922982, 57.520153],\n\t\t\t\t\t\t\t[-153.922183, 57.499036],\n\t\t\t\t\t\t\t[-153.919897, 57.485202],\n\t\t\t\t\t\t\t[-153.909415, 57.442413],\n\t\t\t\t\t\t\t[-153.895800, 57.422108],\n\t\t\t\t\t\t\t[-153.802932, 57.350896],\n\t\t\t\t\t\t\t[-153.795299, 57.349047],\n\t\t\t\t\t\t\t[-153.774275, 57.360243],\n\t\t\t\t\t\t\t[-153.773191, 57.372442],\n\t\t\t\t\t\t\t[-153.811506, 57.412375],\n\t\t\t\t\t\t\t[-153.872922, 57.445743],\n\t\t\t\t\t\t\t[-153.874177, 57.447817],\n\t\t\t\t\t\t\t[-153.888891, 57.504682],\n\t\t\t\t\t\t\t[-153.875950, 57.542769],\n\t\t\t\t\t\t\t[-153.869096, 57.551844],\n\t\t\t\t\t\t\t[-153.848082, 57.560589],\n\t\t\t\t\t\t\t[-153.824823, 57.577617],\n\t\t\t\t\t\t\t[-153.813136, 57.588581],\n\t\t\t\t\t\t\t[-153.823753, 57.597651],\n\t\t\t\t\t\t\t[-153.846828, 57.612648],\n\t\t\t\t\t\t\t[-153.852502, 57.613517],\n\t\t\t\t\t\t\t[-153.877756, 57.629529],\n\t\t\t\t\t\t\t[-153.879943, 57.634072],\n\t\t\t\t\t\t\t[-153.874286, 57.646110],\n\t\t\t\t\t\t\t[-153.868275, 57.649688],\n\t\t\t\t\t\t\t[-153.858545, 57.651138],\n\t\t\t\t\t\t\t[-153.749178, 57.646224],\n\t\t\t\t\t\t\t[-153.705322, 57.640923],\n\t\t\t\t\t\t\t[-153.667261, 57.639008],\n\t\t\t\t\t\t\t[-153.663007, 57.639858],\n\t\t\t\t\t\t\t[-153.648693, 57.654125],\n\t\t\t\t\t\t\t[-153.658008, 57.661480],\n\t\t\t\t\t\t\t[-153.676721, 57.669663],\n\t\t\t\t\t\t\t[-153.797971, 57.696508],\n\t\t\t\t\t\t\t[-153.862886, 57.706943],\n\t\t\t\t\t\t\t[-153.888099, 57.705447],\n\t\t\t\t\t\t\t[-153.918344, 57.695663],\n\t\t\t\t\t\t\t[-153.930279, 57.696791],\n\t\t\t\t\t\t\t[-153.932964, 57.703778],\n\t\t\t\t\t\t\t[-153.935220, 57.813047],\n\t\t\t\t\t\t\t[-153.823385, 57.865013],\n\t\t\t\t\t\t\t[-153.755054, 57.883565],\n\t\t\t\t\t\t\t[-153.721176, 57.890615],\n\t\t\t\t\t\t\t[-153.648798, 57.880103],\n\t\t\t\t\t\t\t[-153.571362, 57.832101],\n\t\t\t\t\t\t\t[-153.550823, 57.786890],\n\t\t\t\t\t\t\t[-153.551088, 57.763110],\n\t\t\t\t\t\t\t[-153.553251, 57.759512],\n\t\t\t\t\t\t\t[-153.557647, 57.734741],\n\t\t\t\t\t\t\t[-153.554226, 57.722450],\n\t\t\t\t\t\t\t[-153.549605, 57.717967],\n\t\t\t\t\t\t\t[-153.515205, 57.716505],\n\t\t\t\t\t\t\t[-153.493401, 57.728316],\n\t\t\t\t\t\t\t[-153.469892, 57.766536],\n\t\t\t\t\t\t\t[-153.462463, 57.795292],\n\t\t\t\t\t\t\t[-153.480377, 57.814665],\n\t\t\t\t\t\t\t[-153.487350, 57.834274],\n\t\t\t\t\t\t\t[-153.479457, 57.842020],\n\t\t\t\t\t\t\t[-153.451560, 57.839284],\n\t\t\t\t\t\t\t[-153.406716, 57.828663],\n\t\t\t\t\t\t\t[-153.353580, 57.809731],\n\t\t\t\t\t\t\t[-153.343408, 57.810866],\n\t\t\t\t\t\t\t[-153.324872, 57.831048],\n\t\t\t\t\t\t\t[-153.322687, 57.836190],\n\t\t\t\t\t\t\t[-153.324881, 57.848421],\n\t\t\t\t\t\t\t[-153.328137, 57.849851],\n\t\t\t\t\t\t\t[-153.395813, 57.858772],\n\t\t\t\t\t\t\t[-153.446406, 57.875035],\n\t\t\t\t\t\t\t[-153.462011, 57.880588],\n\t\t\t\t\t\t\t[-153.512024, 57.909156],\n\t\t\t\t\t\t\t[-153.528697, 57.921717],\n\t\t\t\t\t\t\t[-153.536524, 57.930770],\n\t\t\t\t\t\t\t[-153.533204, 57.941117],\n\t\t\t\t\t\t\t[-153.520392, 57.963387],\n\t\t\t\t\t\t\t[-153.513347, 57.968751],\n\t\t\t\t\t\t\t[-153.484603, 57.976500],\n\t\t\t\t\t\t\t[-153.469421, 57.977282],\n\t\t\t\t\t\t\t[-153.461113, 57.972769],\n\t\t\t\t\t\t\t[-153.452645, 57.963509],\n\t\t\t\t\t\t\t[-153.273676, 57.890408],\n\t\t\t\t\t\t\t[-153.268149, 57.888741],\n\t\t\t\t\t\t\t[-153.236952, 57.891818],\n\t\t\t\t\t\t\t[-153.127278, 57.856748],\n\t\t\t\t\t\t\t[-153.122513, 57.856639],\n\t\t\t\t\t\t\t[-153.093420, 57.861569],\n\t\t\t\t\t\t\t[-153.089419, 57.865233],\n\t\t\t\t\t\t\t[-153.198618, 57.929923],\n\t\t\t\t\t\t\t[-153.233229, 57.940993],\n\t\t\t\t\t\t\t[-153.270325, 57.958566],\n\t\t\t\t\t\t\t[-153.299009, 57.985626],\n\t\t\t\t\t\t\t[-153.302198, 57.991706],\n\t\t\t\t\t\t\t[-153.297756, 57.996425],\n\t\t\t\t\t\t\t[-153.276536, 57.998447],\n\t\t\t\t\t\t\t[-153.234730, 57.996972],\n\t\t\t\t\t\t\t[-153.221576, 57.989319],\n\t\t\t\t\t\t\t[-153.217306, 57.983659],\n\t\t\t\t\t\t\t[-153.129494, 57.946551],\n\t\t\t\t\t\t\t[-153.069857, 57.934428],\n\t\t\t\t\t\t\t[-153.052671, 57.936711],\n\t\t\t\t\t\t\t[-153.050941, 57.939998],\n\t\t\t\t\t\t\t[-153.024425, 57.956954],\n\t\t\t\t\t\t\t[-152.876197, 57.932446],\n\t\t\t\t\t\t\t[-152.871663, 57.933279],\n\t\t\t\t\t\t\t[-152.856284, 57.947385],\n\t\t\t\t\t\t\t[-152.852785, 57.974583],\n\t\t\t\t\t\t\t[-152.855096, 57.994501],\n\t\t\t\t\t\t\t[-152.840896, 57.996759],\n\t\t\t\t\t\t\t[-152.723425, 57.991720],\n\t\t\t\t\t\t\t[-152.722524, 57.987364],\n\t\t\t\t\t\t\t[-152.739766, 57.944798],\n\t\t\t\t\t\t\t[-152.751978, 57.933466],\n\t\t\t\t\t\t\t[-152.804807, 57.899175],\n\t\t\t\t\t\t\t[-152.823299, 57.890928],\n\t\t\t\t\t\t\t[-152.892517, 57.842525],\n\t\t\t\t\t\t\t[-152.902633, 57.830146],\n\t\t\t\t\t\t\t[-152.909791, 57.810405],\n\t\t\t\t\t\t\t[-152.916334, 57.771216],\n\t\t\t\t\t\t\t[-152.904312, 57.750825],\n\t\t\t\t\t\t\t[-152.892875, 57.742012],\n\t\t\t\t\t\t\t[-152.881998, 57.738320],\n\t\t\t\t\t\t\t[-152.874498, 57.737961],\n\t\t\t\t\t\t\t[-152.850336, 57.740041],\n\t\t\t\t\t\t\t[-152.847811, 57.746625],\n\t\t\t\t\t\t\t[-152.852269, 57.752318],\n\t\t\t\t\t\t\t[-152.854718, 57.770271],\n\t\t\t\t\t\t\t[-152.849997, 57.821462],\n\t\t\t\t\t\t\t[-152.841361, 57.830221],\n\t\t\t\t\t\t\t[-152.822543, 57.843203],\n\t\t\t\t\t\t\t[-152.790211, 57.858058],\n\t\t\t\t\t\t\t[-152.758168, 57.840272],\n\t\t\t\t\t\t\t[-152.753437, 57.834452],\n\t\t\t\t\t\t\t[-152.725302, 57.835400],\n\t\t\t\t\t\t\t[-152.650456, 57.863721],\n\t\t\t\t\t\t\t[-152.625607, 57.881232],\n\t\t\t\t\t\t\t[-152.626441, 57.890450],\n\t\t\t\t\t\t\t[-152.639887, 57.899688],\n\t\t\t\t\t\t\t[-152.641805, 57.902499],\n\t\t\t\t\t\t\t[-152.639375, 57.914220],\n\t\t\t\t\t\t\t[-152.635378, 57.918610],\n\t\t\t\t\t\t\t[-152.587705, 57.926961],\n\t\t\t\t\t\t\t[-152.585985, 57.908101],\n\t\t\t\t\t\t\t[-152.567395, 57.900358],\n\t\t\t\t\t\t\t[-152.549661, 57.900137],\n\t\t\t\t\t\t\t[-152.526283, 57.913266],\n\t\t\t\t\t\t\t[-152.487666, 57.941968],\n\t\t\t\t\t\t\t[-152.470336, 57.962099],\n\t\t\t\t\t\t\t[-152.432608, 57.976029],\n\t\t\t\t\t\t\t[-152.421408, 57.975683],\n\t\t\t\t\t\t\t[-152.415177, 57.973081],\n\t\t\t\t\t\t\t[-152.411618, 57.969282],\n\t\t\t\t\t\t\t[-152.422573, 57.948662],\n\t\t\t\t\t\t\t[-152.437604, 57.939834],\n\t\t\t\t\t\t\t[-152.437416, 57.936978],\n\t\t\t\t\t\t\t[-152.426458, 57.930851],\n\t\t\t\t\t\t\t[-152.388626, 57.924486],\n\t\t\t\t\t\t\t[-152.362161, 57.926200],\n\t\t\t\t\t\t\t[-152.324103, 57.916604],\n\t\t\t\t\t\t\t[-152.333209, 57.902550],\n\t\t\t\t\t\t\t[-152.364777, 57.883921],\n\t\t\t\t\t\t\t[-152.377063, 57.886728],\n\t\t\t\t\t\t\t[-152.386130, 57.890706],\n\t\t\t\t\t\t\t[-152.394750, 57.894602],\n\t\t\t\t\t\t\t[-152.403700, 57.901146],\n\t\t\t\t\t\t\t[-152.414977, 57.902231],\n\t\t\t\t\t\t\t[-152.448240, 57.902605],\n\t\t\t\t\t\t\t[-152.468511, 57.888621],\n\t\t\t\t\t\t\t[-152.433653, 57.824314],\n\t\t\t\t\t\t\t[-152.429326, 57.820114],\n\t\t\t\t\t\t\t[-152.417424, 57.815464]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-152.242890, 58.241192],\n\t\t\t\t\t\t\t[-152.280629, 58.242344],\n\t\t\t\t\t\t\t[-152.311415, 58.221115],\n\t\t\t\t\t\t\t[-152.265111, 58.135732],\n\t\t\t\t\t\t\t[-152.273605, 58.125630],\n\t\t\t\t\t\t\t[-152.343522, 58.119174],\n\t\t\t\t\t\t\t[-152.401892, 58.120755],\n\t\t\t\t\t\t\t[-152.425391, 58.127614],\n\t\t\t\t\t\t\t[-152.482674, 58.129813],\n\t\t\t\t\t\t\t[-152.514794, 58.114321],\n\t\t\t\t\t\t\t[-152.529036, 58.093779],\n\t\t\t\t\t\t\t[-152.530388, 58.087766],\n\t\t\t\t\t\t\t[-152.541533, 58.083666],\n\t\t\t\t\t\t\t[-152.554461, 58.084620],\n\t\t\t\t\t\t\t[-152.557237, 58.086462],\n\t\t\t\t\t\t\t[-152.569595, 58.114800],\n\t\t\t\t\t\t\t[-152.557497, 58.160683],\n\t\t\t\t\t\t\t[-152.559884, 58.170941],\n\t\t\t\t\t\t\t[-152.562829, 58.177979],\n\t\t\t\t\t\t\t[-152.584222, 58.187477],\n\t\t\t\t\t\t\t[-152.597506, 58.179686],\n\t\t\t\t\t\t\t[-152.615103, 58.116224],\n\t\t\t\t\t\t\t[-152.631214, 58.081924],\n\t\t\t\t\t\t\t[-152.656801, 58.061049],\n\t\t\t\t\t\t\t[-152.706831, 58.050577],\n\t\t\t\t\t\t\t[-152.771303, 58.046883],\n\t\t\t\t\t\t\t[-152.777906, 58.050364],\n\t\t\t\t\t\t\t[-152.779473, 58.065269],\n\t\t\t\t\t\t\t[-152.792041, 58.072665],\n\t\t\t\t\t\t\t[-152.809062, 58.078917],\n\t\t\t\t\t\t\t[-152.882423, 58.096074],\n\t\t\t\t\t\t\t[-152.958680, 58.116441],\n\t\t\t\t\t\t\t[-152.973149, 58.125427],\n\t\t\t\t\t\t\t[-152.983857, 58.134358],\n\t\t\t\t\t\t\t[-152.997340, 58.134341],\n\t\t\t\t\t\t\t[-153.075746, 58.099571],\n\t\t\t\t\t\t\t[-153.076485, 58.096077],\n\t\t\t\t\t\t\t[-153.057201, 58.073576],\n\t\t\t\t\t\t\t[-153.036131, 58.055619],\n\t\t\t\t\t\t\t[-153.020589, 58.045202],\n\t\t\t\t\t\t\t[-152.964700, 58.034650],\n\t\t\t\t\t\t\t[-152.876788, 58.002307],\n\t\t\t\t\t\t\t[-152.871836, 57.999275],\n\t\t\t\t\t\t\t[-152.871416, 57.997157],\n\t\t\t\t\t\t\t[-152.947547, 57.983519],\n\t\t\t\t\t\t\t[-152.982406, 57.984697],\n\t\t\t\t\t\t\t[-153.097462, 58.004516],\n\t\t\t\t\t\t\t[-153.202525, 58.030122],\n\t\t\t\t\t\t\t[-153.209885, 58.034925],\n\t\t\t\t\t\t\t[-153.214568, 58.042418],\n\t\t\t\t\t\t\t[-153.218115, 58.043909],\n\t\t\t\t\t\t\t[-153.289701, 58.050330],\n\t\t\t\t\t\t\t[-153.344807, 58.040619],\n\t\t\t\t\t\t\t[-153.365574, 58.039052],\n\t\t\t\t\t\t\t[-153.419783, 58.059638],\n\t\t\t\t\t\t\t[-153.418343, 58.064053],\n\t\t\t\t\t\t\t[-153.412933, 58.069811],\n\t\t\t\t\t\t\t[-153.316127, 58.140390],\n\t\t\t\t\t\t\t[-153.281874, 58.147555],\n\t\t\t\t\t\t\t[-153.274215, 58.148102],\n\t\t\t\t\t\t\t[-153.262643, 58.145099],\n\t\t\t\t\t\t\t[-153.227567, 58.123364],\n\t\t\t\t\t\t\t[-153.199117, 58.102005],\n\t\t\t\t\t\t\t[-153.168617, 58.088385],\n\t\t\t\t\t\t\t[-153.156402, 58.090087],\n\t\t\t\t\t\t\t[-153.148740, 58.106121],\n\t\t\t\t\t\t\t[-153.167605, 58.127818],\n\t\t\t\t\t\t\t[-153.209672, 58.150350],\n\t\t\t\t\t\t\t[-153.223709, 58.162120],\n\t\t\t\t\t\t\t[-153.202801, 58.208080],\n\t\t\t\t\t\t\t[-153.170101, 58.216704],\n\t\t\t\t\t\t\t[-153.073927, 58.195107],\n\t\t\t\t\t\t\t[-153.060846, 58.194502],\n\t\t\t\t\t\t\t[-153.036662, 58.199235],\n\t\t\t\t\t\t\t[-153.000579, 58.211768],\n\t\t\t\t\t\t\t[-152.998094, 58.214122],\n\t\t\t\t\t\t\t[-153.006979, 58.221847],\n\t\t\t\t\t\t\t[-153.061678, 58.235649],\n\t\t\t\t\t\t\t[-153.082507, 58.244495],\n\t\t\t\t\t\t\t[-153.101841, 58.257938],\n\t\t\t\t\t\t\t[-153.102410, 58.260344],\n\t\t\t\t\t\t\t[-153.099284, 58.264065],\n\t\t\t\t\t\t\t[-153.044316, 58.306336],\n\t\t\t\t\t\t\t[-153.004390, 58.300135],\n\t\t\t\t\t\t\t[-152.993217, 58.296254],\n\t\t\t\t\t\t\t[-152.982356, 58.287495],\n\t\t\t\t\t\t\t[-152.941270, 58.279614],\n\t\t\t\t\t\t\t[-152.888204, 58.283100],\n\t\t\t\t\t\t\t[-152.878858, 58.288533],\n\t\t\t\t\t\t\t[-152.869811, 58.304906],\n\t\t\t\t\t\t\t[-152.884023, 58.307087],\n\t\t\t\t\t\t\t[-152.912450, 58.307191],\n\t\t\t\t\t\t\t[-152.921122, 58.313268],\n\t\t\t\t\t\t\t[-152.936757, 58.330513],\n\t\t\t\t\t\t\t[-152.936440, 58.334923],\n\t\t\t\t\t\t\t[-152.925586, 58.339686],\n\t\t\t\t\t\t\t[-152.895407, 58.345305],\n\t\t\t\t\t\t\t[-152.870555, 58.335743],\n\t\t\t\t\t\t\t[-152.821964, 58.328501],\n\t\t\t\t\t\t\t[-152.804789, 58.339510],\n\t\t\t\t\t\t\t[-152.774048, 58.366826],\n\t\t\t\t\t\t\t[-152.787420, 58.369015],\n\t\t\t\t\t\t\t[-152.839234, 58.372477],\n\t\t\t\t\t\t\t[-152.883107, 58.400443],\n\t\t\t\t\t\t\t[-152.888860, 58.409384],\n\t\t\t\t\t\t\t[-152.886358, 58.410585],\n\t\t\t\t\t\t\t[-152.864939, 58.404340],\n\t\t\t\t\t\t\t[-152.844173, 58.402842],\n\t\t\t\t\t\t\t[-152.812207, 58.403464],\n\t\t\t\t\t\t\t[-152.787776, 58.411313],\n\t\t\t\t\t\t\t[-152.774509, 58.419721],\n\t\t\t\t\t\t\t[-152.771106, 58.429515],\n\t\t\t\t\t\t\t[-152.733845, 58.460662],\n\t\t\t\t\t\t\t[-152.723169, 58.462080],\n\t\t\t\t\t\t\t[-152.689940, 58.459861],\n\t\t\t\t\t\t\t[-152.610955, 58.475775],\n\t\t\t\t\t\t\t[-152.601666, 58.490423],\n\t\t\t\t\t\t\t[-152.600534, 58.494946],\n\t\t\t\t\t\t\t[-152.609030, 58.496167],\n\t\t\t\t\t\t\t[-152.619197, 58.493674],\n\t\t\t\t\t\t\t[-152.622794, 58.494189],\n\t\t\t\t\t\t\t[-152.653673, 58.506572],\n\t\t\t\t\t\t\t[-152.666220, 58.544087],\n\t\t\t\t\t\t\t[-152.665999, 58.564493],\n\t\t\t\t\t\t\t[-152.638569, 58.587448],\n\t\t\t\t\t\t\t[-152.616130, 58.601852],\n\t\t\t\t\t\t\t[-152.567710, 58.621304],\n\t\t\t\t\t\t\t[-152.560171, 58.619680],\n\t\t\t\t\t\t\t[-152.550418, 58.610996],\n\t\t\t\t\t\t\t[-152.549635, 58.601024],\n\t\t\t\t\t\t\t[-152.545009, 58.594253],\n\t\t\t\t\t\t\t[-152.502820, 58.593451],\n\t\t\t\t\t\t\t[-152.453817, 58.618515],\n\t\t\t\t\t\t\t[-152.354709, 58.638280],\n\t\t\t\t\t\t\t[-152.337964, 58.637404],\n\t\t\t\t\t\t\t[-152.329835, 58.632102],\n\t\t\t\t\t\t\t[-152.337212, 58.589095],\n\t\t\t\t\t\t\t[-152.372317, 58.531175],\n\t\t\t\t\t\t\t[-152.387610, 58.522870],\n\t\t\t\t\t\t\t[-152.418267, 58.515244],\n\t\t\t\t\t\t\t[-152.467197, 58.476609],\n\t\t\t\t\t\t\t[-152.498571, 58.449538],\n\t\t\t\t\t\t\t[-152.505516, 58.441876],\n\t\t\t\t\t\t\t[-152.512483, 58.427349],\n\t\t\t\t\t\t\t[-152.493991, 58.354684],\n\t\t\t\t\t\t\t[-152.476814, 58.350955],\n\t\t\t\t\t\t\t[-152.387343, 58.359499],\n\t\t\t\t\t\t\t[-152.364682, 58.364613],\n\t\t\t\t\t\t\t[-152.344860, 58.391630],\n\t\t\t\t\t\t\t[-152.348389, 58.401502],\n\t\t\t\t\t\t\t[-152.355073, 58.413052],\n\t\t\t\t\t\t\t[-152.358724, 58.415585],\n\t\t\t\t\t\t\t[-152.356090, 58.423470],\n\t\t\t\t\t\t\t[-152.328063, 58.434372],\n\t\t\t\t\t\t\t[-152.320554, 58.433829],\n\t\t\t\t\t\t\t[-152.301713, 58.428697],\n\t\t\t\t\t\t\t[-152.279508, 58.415872],\n\t\t\t\t\t\t\t[-152.227835, 58.376424],\n\t\t\t\t\t\t\t[-152.234718, 58.362024],\n\t\t\t\t\t\t\t[-152.224965, 58.357372],\n\t\t\t\t\t\t\t[-152.200953, 58.355332],\n\t\t\t\t\t\t\t[-152.129257, 58.396414],\n\t\t\t\t\t\t\t[-152.125339, 58.396396],\n\t\t\t\t\t\t\t[-152.090437, 58.372628],\n\t\t\t\t\t\t\t[-152.089250, 58.367644],\n\t\t\t\t\t\t\t[-152.119530, 58.329770],\n\t\t\t\t\t\t\t[-152.138294, 58.295712],\n\t\t\t\t\t\t\t[-152.147142, 58.266992],\n\t\t\t\t\t\t\t[-152.146519, 58.249120],\n\t\t\t\t\t\t\t[-152.116569, 58.248537],\n\t\t\t\t\t\t\t[-152.107962, 58.260525],\n\t\t\t\t\t\t\t[-152.107635, 58.280240],\n\t\t\t\t\t\t\t[-152.082342, 58.309945],\n\t\t\t\t\t\t\t[-151.986171, 58.350413],\n\t\t\t\t\t\t\t[-151.981781, 58.347971],\n\t\t\t\t\t\t\t[-151.966218, 58.332737],\n\t\t\t\t\t\t\t[-151.963817, 58.328999],\n\t\t\t\t\t\t\t[-151.964103, 58.269049],\n\t\t\t\t\t\t\t[-151.972053, 58.230702],\n\t\t\t\t\t\t\t[-151.986127, 58.213774],\n\t\t\t\t\t\t\t[-152.081083, 58.154275],\n\t\t\t\t\t\t\t[-152.112205, 58.148559],\n\t\t\t\t\t\t\t[-152.194827, 58.174128],\n\t\t\t\t\t\t\t[-152.223175, 58.194794],\n\t\t\t\t\t\t\t[-152.224439, 58.202365],\n\t\t\t\t\t\t\t[-152.219826, 58.206289],\n\t\t\t\t\t\t\t[-152.207488, 58.206284],\n\t\t\t\t\t\t\t[-152.203699, 58.212055],\n\t\t\t\t\t\t\t[-152.233830, 58.243329],\n\t\t\t\t\t\t\t[-152.242890, 58.241192]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US02164\",\n\t\t\t\t\"STATE\": \"02\",\n\t\t\t\t\"COUNTY\": \"164\",\n\t\t\t\t\"NAME\": \"Lake and Peninsula\",\n\t\t\t\t\"LSAD\": \"Borough\",\n\t\t\t\t\"CENSUSAREA\": 23652.009000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-157.026070, 56.559757],\n\t\t\t\t\t\t\t[-156.990969, 56.547939],\n\t\t\t\t\t\t\t[-156.975549, 56.540446],\n\t\t\t\t\t\t\t[-156.972896, 56.536505],\n\t\t\t\t\t\t\t[-156.986090, 56.532749],\n\t\t\t\t\t\t\t[-157.003409, 56.535639],\n\t\t\t\t\t\t\t[-157.006523, 56.538910],\n\t\t\t\t\t\t\t[-157.017711, 56.543081],\n\t\t\t\t\t\t\t[-157.053384, 56.550425],\n\t\t\t\t\t\t\t[-157.113193, 56.552658],\n\t\t\t\t\t\t\t[-157.121393, 56.551963],\n\t\t\t\t\t\t\t[-157.142219, 56.542390],\n\t\t\t\t\t\t\t[-157.150309, 56.533600],\n\t\t\t\t\t\t\t[-157.168777, 56.530210],\n\t\t\t\t\t\t\t[-157.326059, 56.525169],\n\t\t\t\t\t\t\t[-157.328898, 56.528155],\n\t\t\t\t\t\t\t[-157.326110, 56.540375],\n\t\t\t\t\t\t\t[-157.298635, 56.560051],\n\t\t\t\t\t\t\t[-157.288702, 56.566039],\n\t\t\t\t\t\t\t[-157.250098, 56.582142],\n\t\t\t\t\t\t\t[-157.146636, 56.583651],\n\t\t\t\t\t\t\t[-157.091146, 56.581134],\n\t\t\t\t\t\t\t[-157.077383, 56.579035],\n\t\t\t\t\t\t\t[-157.026070, 56.559757]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-154.305926, 58.646822],\n\t\t\t\t\t\t\t[-154.303447, 58.460385],\n\t\t\t\t\t\t\t[-154.432332, 58.418998],\n\t\t\t\t\t\t\t[-154.465741, 58.361356],\n\t\t\t\t\t\t\t[-154.570107, 58.333055],\n\t\t\t\t\t\t\t[-154.729769, 58.332837],\n\t\t\t\t\t\t\t[-154.730369, 58.304669],\n\t\t\t\t\t\t\t[-155.008132, 58.290905],\n\t\t\t\t\t\t\t[-155.057741, 58.236209],\n\t\t\t\t\t\t\t[-155.221463, 58.236408],\n\t\t\t\t\t\t\t[-155.221313, 58.193193],\n\t\t\t\t\t\t\t[-155.331945, 58.193283],\n\t\t\t\t\t\t\t[-155.331999, 58.107967],\n\t\t\t\t\t\t\t[-155.280169, 58.108591],\n\t\t\t\t\t\t\t[-155.331678, 58.048211],\n\t\t\t\t\t\t\t[-155.330245, 57.876343],\n\t\t\t\t\t\t\t[-155.446020, 57.871459],\n\t\t\t\t\t\t\t[-155.446251, 57.827094],\n\t\t\t\t\t\t\t[-155.538830, 57.799806],\n\t\t\t\t\t\t\t[-155.693773, 57.797987],\n\t\t\t\t\t\t\t[-155.768022, 57.668261],\n\t\t\t\t\t\t\t[-155.898455, 57.668100],\n\t\t\t\t\t\t\t[-155.871990, 57.599963],\n\t\t\t\t\t\t\t[-155.921548, 57.554334],\n\t\t\t\t\t\t\t[-155.952772, 57.598213],\n\t\t\t\t\t\t\t[-156.071148, 57.584424],\n\t\t\t\t\t\t\t[-156.132032, 57.509692],\n\t\t\t\t\t\t\t[-156.370235, 57.522368],\n\t\t\t\t\t\t\t[-156.458121, 57.478905],\n\t\t\t\t\t\t\t[-156.508759, 57.434831],\n\t\t\t\t\t\t\t[-156.502226, 57.362606],\n\t\t\t\t\t\t\t[-156.617395, 57.334942],\n\t\t\t\t\t\t\t[-156.672751, 57.234909],\n\t\t\t\t\t\t\t[-156.750780, 57.235795],\n\t\t\t\t\t\t\t[-156.750815, 57.162878],\n\t\t\t\t\t\t\t[-156.355401, 57.159679],\n\t\t\t\t\t\t\t[-156.357358, 57.157570],\n\t\t\t\t\t\t\t[-156.368524, 57.149986],\n\t\t\t\t\t\t\t[-156.435110, 57.127430],\n\t\t\t\t\t\t\t[-156.456497, 57.106041],\n\t\t\t\t\t\t\t[-156.444610, 57.100087],\n\t\t\t\t\t\t\t[-156.441566, 57.094698],\n\t\t\t\t\t\t\t[-156.441599, 57.085158],\n\t\t\t\t\t\t\t[-156.509239, 57.054911],\n\t\t\t\t\t\t\t[-156.535587, 57.047905],\n\t\t\t\t\t\t\t[-156.562827, 57.020314],\n\t\t\t\t\t\t\t[-156.547667, 57.004629],\n\t\t\t\t\t\t\t[-156.547200, 56.986488],\n\t\t\t\t\t\t\t[-156.550520, 56.984610],\n\t\t\t\t\t\t\t[-156.555077, 56.983550],\n\t\t\t\t\t\t\t[-156.637840, 56.993905],\n\t\t\t\t\t\t\t[-156.753642, 56.991225],\n\t\t\t\t\t\t\t[-156.762718, 56.986342],\n\t\t\t\t\t\t\t[-156.781421, 56.971879],\n\t\t\t\t\t\t\t[-156.786900, 56.965035],\n\t\t\t\t\t\t\t[-156.788341, 56.960693],\n\t\t\t\t\t\t\t[-156.786802, 56.941443],\n\t\t\t\t\t\t\t[-156.797310, 56.911717],\n\t\t\t\t\t\t\t[-156.804432, 56.905881],\n\t\t\t\t\t\t\t[-156.825982, 56.897667],\n\t\t\t\t\t\t\t[-156.839322, 56.901854],\n\t\t\t\t\t\t\t[-156.876316, 56.942828],\n\t\t\t\t\t\t\t[-156.885372, 56.953284],\n\t\t\t\t\t\t\t[-156.885686, 56.957965],\n\t\t\t\t\t\t\t[-156.882464, 56.960072],\n\t\t\t\t\t\t\t[-156.882893, 56.962582],\n\t\t\t\t\t\t\t[-156.886307, 56.964869],\n\t\t\t\t\t\t\t[-156.893683, 56.965965],\n\t\t\t\t\t\t\t[-156.909725, 56.965581],\n\t\t\t\t\t\t\t[-156.918796, 56.963583],\n\t\t\t\t\t\t\t[-156.935692, 56.954873],\n\t\t\t\t\t\t\t[-156.935629, 56.920087],\n\t\t\t\t\t\t\t[-156.986171, 56.911131],\n\t\t\t\t\t\t\t[-157.005950, 56.904220],\n\t\t\t\t\t\t\t[-157.015665, 56.898486],\n\t\t\t\t\t\t\t[-157.034624, 56.884487],\n\t\t\t\t\t\t\t[-157.073453, 56.838345],\n\t\t\t\t\t\t\t[-157.159494, 56.833477],\n\t\t\t\t\t\t\t[-157.163811, 56.826066],\n\t\t\t\t\t\t\t[-157.163272, 56.823542],\n\t\t\t\t\t\t\t[-157.140990, 56.802275],\n\t\t\t\t\t\t\t[-157.140277, 56.790874],\n\t\t\t\t\t\t\t[-157.161372, 56.774134],\n\t\t\t\t\t\t\t[-157.183636, 56.769079],\n\t\t\t\t\t\t\t[-157.201724, 56.767511],\n\t\t\t\t\t\t\t[-157.283764, 56.800766],\n\t\t\t\t\t\t\t[-157.290511, 56.804713],\n\t\t\t\t\t\t\t[-157.291231, 56.811077],\n\t\t\t\t\t\t\t[-157.298283, 56.818567],\n\t\t\t\t\t\t\t[-157.332735, 56.838398],\n\t\t\t\t\t\t\t[-157.378771, 56.861696],\n\t\t\t\t\t\t\t[-157.394663, 56.864426],\n\t\t\t\t\t\t\t[-157.405679, 56.864216],\n\t\t\t\t\t\t\t[-157.436932, 56.858522],\n\t\t\t\t\t\t\t[-157.457590, 56.848204],\n\t\t\t\t\t\t\t[-157.472407, 56.833356],\n\t\t\t\t\t\t\t[-157.469925, 56.824889],\n\t\t\t\t\t\t\t[-157.462361, 56.809603],\n\t\t\t\t\t\t\t[-157.457622, 56.804291],\n\t\t\t\t\t\t\t[-157.447768, 56.801246],\n\t\t\t\t\t\t\t[-157.436358, 56.803781],\n\t\t\t\t\t\t\t[-157.421120, 56.801691],\n\t\t\t\t\t\t\t[-157.418560, 56.799821],\n\t\t\t\t\t\t\t[-157.411488, 56.778351],\n\t\t\t\t\t\t\t[-157.413440, 56.769185],\n\t\t\t\t\t\t\t[-157.517478, 56.760839],\n\t\t\t\t\t\t\t[-157.530765, 56.753775],\n\t\t\t\t\t\t\t[-157.544855, 56.738945],\n\t\t\t\t\t\t\t[-157.551196, 56.730314],\n\t\t\t\t\t\t\t[-157.563802, 56.703426],\n\t\t\t\t\t\t\t[-157.550792, 56.681029],\n\t\t\t\t\t\t\t[-157.542295, 56.675320],\n\t\t\t\t\t\t\t[-157.507589, 56.667169],\n\t\t\t\t\t\t\t[-157.498689, 56.667285],\n\t\t\t\t\t\t\t[-157.480990, 56.671419],\n\t\t\t\t\t\t\t[-157.479153, 56.670080],\n\t\t\t\t\t\t\t[-157.452160, 56.643220],\n\t\t\t\t\t\t\t[-157.452196, 56.638863],\n\t\t\t\t\t\t\t[-157.454860, 56.634748],\n\t\t\t\t\t\t\t[-157.462105, 56.625685],\n\t\t\t\t\t\t\t[-157.466497, 56.623266],\n\t\t\t\t\t\t\t[-157.496523, 56.616897],\n\t\t\t\t\t\t\t[-157.536486, 56.615317],\n\t\t\t\t\t\t\t[-157.546085, 56.619025],\n\t\t\t\t\t\t\t[-157.589315, 56.622262],\n\t\t\t\t\t\t\t[-157.605231, 56.621315],\n\t\t\t\t\t\t\t[-157.615041, 56.620020],\n\t\t\t\t\t\t\t[-157.636018, 56.612838],\n\t\t\t\t\t\t\t[-157.674587, 56.609507],\n\t\t\t\t\t\t\t[-157.705382, 56.628780],\n\t\t\t\t\t\t\t[-157.714280, 56.640575],\n\t\t\t\t\t\t\t[-157.715998, 56.648492],\n\t\t\t\t\t\t\t[-157.719048, 56.653084],\n\t\t\t\t\t\t\t[-157.736799, 56.675616],\n\t\t\t\t\t\t\t[-157.754141, 56.679468],\n\t\t\t\t\t\t\t[-157.763698, 56.679247],\n\t\t\t\t\t\t\t[-157.920045, 56.658636],\n\t\t\t\t\t\t\t[-157.933988, 56.654571],\n\t\t\t\t\t\t\t[-158.042012, 56.596744],\n\t\t\t\t\t\t\t[-158.042839, 56.581850],\n\t\t\t\t\t\t\t[-158.039356, 56.574884],\n\t\t\t\t\t\t\t[-158.001041, 56.572097],\n\t\t\t\t\t\t\t[-157.975222, 56.585722],\n\t\t\t\t\t\t\t[-157.958745, 56.588304],\n\t\t\t\t\t\t\t[-157.906647, 56.590925],\n\t\t\t\t\t\t\t[-157.838420, 56.560760],\n\t\t\t\t\t\t\t[-157.828139, 56.546332],\n\t\t\t\t\t\t\t[-157.817826, 56.514210],\n\t\t\t\t\t\t\t[-157.823072, 56.501982],\n\t\t\t\t\t\t\t[-157.859766, 56.483668],\n\t\t\t\t\t\t\t[-157.865642, 56.483285],\n\t\t\t\t\t\t\t[-157.886126, 56.487805],\n\t\t\t\t\t\t\t[-157.954625, 56.515845],\n\t\t\t\t\t\t\t[-158.027621, 56.511779],\n\t\t\t\t\t\t\t[-158.112276, 56.521322],\n\t\t\t\t\t\t\t[-158.119570, 56.518346],\n\t\t\t\t\t\t\t[-158.131729, 56.501944],\n\t\t\t\t\t\t\t[-158.123352, 56.496457],\n\t\t\t\t\t\t\t[-158.113709, 56.493001],\n\t\t\t\t\t\t\t[-158.111603, 56.490110],\n\t\t\t\t\t\t\t[-158.118682, 56.466558],\n\t\t\t\t\t\t\t[-158.127440, 56.460805],\n\t\t\t\t\t\t\t[-158.246144, 56.466124],\n\t\t\t\t\t\t\t[-158.284699, 56.481089],\n\t\t\t\t\t\t\t[-158.328798, 56.484208],\n\t\t\t\t\t\t\t[-158.402954, 56.455193],\n\t\t\t\t\t\t\t[-158.498837, 56.380110],\n\t\t\t\t\t\t\t[-158.501705, 56.375860],\n\t\t\t\t\t\t\t[-158.502040, 56.365178],\n\t\t\t\t\t\t\t[-158.489546, 56.341865],\n\t\t\t\t\t\t\t[-158.432795, 56.343505],\n\t\t\t\t\t\t\t[-158.397337, 56.328921],\n\t\t\t\t\t\t\t[-158.338137, 56.323923],\n\t\t\t\t\t\t\t[-158.329735, 56.326028],\n\t\t\t\t\t\t\t[-158.322563, 56.325242],\n\t\t\t\t\t\t\t[-158.207387, 56.294354],\n\t\t\t\t\t\t\t[-158.203083, 56.283833],\n\t\t\t\t\t\t\t[-158.216540, 56.269451],\n\t\t\t\t\t\t\t[-158.253331, 56.253125],\n\t\t\t\t\t\t\t[-158.276842, 56.248698],\n\t\t\t\t\t\t\t[-158.334506, 56.232940],\n\t\t\t\t\t\t\t[-158.339765, 56.217807],\n\t\t\t\t\t\t\t[-158.331039, 56.213609],\n\t\t\t\t\t\t\t[-158.264792, 56.209597],\n\t\t\t\t\t\t\t[-158.190960, 56.226407],\n\t\t\t\t\t\t\t[-158.174930, 56.236227],\n\t\t\t\t\t\t\t[-158.119493, 56.241995],\n\t\t\t\t\t\t\t[-158.115282, 56.242102],\n\t\t\t\t\t\t\t[-158.112718, 56.240286],\n\t\t\t\t\t\t\t[-158.117797, 56.230742],\n\t\t\t\t\t\t\t[-158.237025, 56.187387],\n\t\t\t\t\t\t\t[-158.314128, 56.163697],\n\t\t\t\t\t\t\t[-158.374324, 56.134522],\n\t\t\t\t\t\t\t[-158.395996, 56.109834],\n\t\t\t\t\t\t\t[-158.394388, 56.091949],\n\t\t\t\t\t\t\t[-158.394922, 56.064721],\n\t\t\t\t\t\t\t[-158.398324, 56.062957],\n\t\t\t\t\t\t\t[-158.424451, 56.068899],\n\t\t\t\t\t\t\t[-158.438644, 56.093672],\n\t\t\t\t\t\t\t[-158.438315, 56.095702],\n\t\t\t\t\t\t\t[-158.431105, 56.100264],\n\t\t\t\t\t\t\t[-158.432229, 56.102881],\n\t\t\t\t\t\t\t[-158.439944, 56.107780],\n\t\t\t\t\t\t\t[-158.455297, 56.108742],\n\t\t\t\t\t\t\t[-158.461810, 56.106644],\n\t\t\t\t\t\t\t[-158.475258, 56.093405],\n\t\t\t\t\t\t\t[-158.472706, 56.087583],\n\t\t\t\t\t\t\t[-158.448413, 56.055278],\n\t\t\t\t\t\t\t[-158.417889, 56.036796],\n\t\t\t\t\t\t\t[-158.407723, 56.014521],\n\t\t\t\t\t\t\t[-158.413645, 56.004951],\n\t\t\t\t\t\t\t[-158.431471, 55.994452],\n\t\t\t\t\t\t\t[-158.439330, 55.993620],\n\t\t\t\t\t\t\t[-158.445696, 55.997580],\n\t\t\t\t\t\t\t[-158.467335, 56.027219],\n\t\t\t\t\t\t\t[-158.475543, 56.028366],\n\t\t\t\t\t\t\t[-158.501967, 56.025170],\n\t\t\t\t\t\t\t[-158.504850, 56.015544],\n\t\t\t\t\t\t\t[-158.496366, 56.010601],\n\t\t\t\t\t\t\t[-158.494015, 56.007320],\n\t\t\t\t\t\t\t[-158.495114, 55.989207],\n\t\t\t\t\t\t\t[-158.499050, 55.981685],\n\t\t\t\t\t\t\t[-158.509840, 55.979617],\n\t\t\t\t\t\t\t[-158.595620, 56.045252],\n\t\t\t\t\t\t\t[-158.598367, 56.048822],\n\t\t\t\t\t\t\t[-158.594188, 56.110445],\n\t\t\t\t\t\t\t[-158.584362, 56.115657],\n\t\t\t\t\t\t\t[-158.574659, 56.118640],\n\t\t\t\t\t\t\t[-158.575042, 56.121129],\n\t\t\t\t\t\t\t[-158.600405, 56.130444],\n\t\t\t\t\t\t\t[-158.628303, 56.120943],\n\t\t\t\t\t\t\t[-158.640447, 56.114079],\n\t\t\t\t\t\t\t[-158.659738, 56.098553],\n\t\t\t\t\t\t\t[-158.666818, 56.078415],\n\t\t\t\t\t\t\t[-158.660914, 56.034928],\n\t\t\t\t\t\t\t[-158.651674, 56.031358],\n\t\t\t\t\t\t\t[-158.643216, 56.023415],\n\t\t\t\t\t\t\t[-158.638704, 56.015932],\n\t\t\t\t\t\t\t[-158.636689, 56.005007],\n\t\t\t\t\t\t\t[-158.639497, 55.986070],\n\t\t\t\t\t\t\t[-158.653214, 55.958615],\n\t\t\t\t\t\t\t[-158.673246, 55.951485],\n\t\t\t\t\t\t\t[-158.737009, 55.953313],\n\t\t\t\t\t\t\t[-158.748560, 55.959365],\n\t\t\t\t\t\t\t[-158.751215, 55.963759],\n\t\t\t\t\t\t\t[-158.735348, 55.996208],\n\t\t\t\t\t\t\t[-158.729567, 56.002854],\n\t\t\t\t\t\t\t[-158.747305, 56.009908],\n\t\t\t\t\t\t\t[-158.854132, 56.003343],\n\t\t\t\t\t\t\t[-158.898116, 55.951041],\n\t\t\t\t\t\t\t[-158.909396, 55.934887],\n\t\t\t\t\t\t\t[-158.999598, 55.927011],\n\t\t\t\t\t\t\t[-159.138748, 55.909320],\n\t\t\t\t\t\t\t[-159.271514, 55.890704],\n\t\t\t\t\t\t\t[-159.347681, 55.877802],\n\t\t\t\t\t\t\t[-159.374842, 55.871522],\n\t\t\t\t\t\t\t[-159.396400, 55.856767],\n\t\t\t\t\t\t\t[-159.400096, 55.852357],\n\t\t\t\t\t\t\t[-159.406126, 55.831956],\n\t\t\t\t\t\t\t[-159.409380, 55.810434],\n\t\t\t\t\t\t\t[-159.404326, 55.796992],\n\t\t\t\t\t\t\t[-159.411505, 55.788911],\n\t\t\t\t\t\t\t[-159.423468, 55.789025],\n\t\t\t\t\t\t\t[-159.434787, 55.792909],\n\t\t\t\t\t\t\t[-159.470216, 55.828911],\n\t\t\t\t\t\t\t[-159.472801, 55.839050],\n\t\t\t\t\t\t\t[-159.471973, 55.843506],\n\t\t\t\t\t\t\t[-159.465282, 55.852845],\n\t\t\t\t\t\t\t[-159.453945, 55.896820],\n\t\t\t\t\t\t\t[-159.482226, 55.901826],\n\t\t\t\t\t\t\t[-159.493883, 55.900109],\n\t\t\t\t\t\t\t[-159.528349, 55.888458],\n\t\t\t\t\t\t\t[-159.534415, 55.881299],\n\t\t\t\t\t\t\t[-159.498022, 55.855299],\n\t\t\t\t\t\t\t[-159.494404, 55.765798],\n\t\t\t\t\t\t\t[-159.503768, 55.747878],\n\t\t\t\t\t\t\t[-159.521589, 55.736021],\n\t\t\t\t\t\t\t[-159.537152, 55.728459],\n\t\t\t\t\t\t\t[-159.551432, 55.711543],\n\t\t\t\t\t\t\t[-159.552016, 55.704794],\n\t\t\t\t\t\t\t[-159.535961, 55.689831],\n\t\t\t\t\t\t\t[-159.530117, 55.665394],\n\t\t\t\t\t\t\t[-159.545115, 55.646517],\n\t\t\t\t\t\t\t[-159.564413, 55.633045],\n\t\t\t\t\t\t\t[-159.564669, 55.888484],\n\t\t\t\t\t\t\t[-159.868099, 55.888481],\n\t\t\t\t\t\t\t[-159.867858, 55.982594],\n\t\t\t\t\t\t\t[-159.805267, 55.982595],\n\t\t\t\t\t\t\t[-159.809651, 56.321694],\n\t\t\t\t\t\t\t[-159.903652, 56.322594],\n\t\t\t\t\t\t\t[-159.899424, 56.491981],\n\t\t\t\t\t\t\t[-159.593410, 56.494524],\n\t\t\t\t\t\t\t[-159.592657, 56.580917],\n\t\t\t\t\t\t\t[-159.275491, 56.580921],\n\t\t\t\t\t\t\t[-159.275496, 56.671762],\n\t\t\t\t\t\t\t[-159.028589, 56.669419],\n\t\t\t\t\t\t\t[-159.028594, 56.754058],\n\t\t\t\t\t\t\t[-158.891034, 56.754220],\n\t\t\t\t\t\t\t[-158.893211, 56.805788],\n\t\t\t\t\t\t\t[-158.868797, 56.796648],\n\t\t\t\t\t\t\t[-158.853294, 56.792620],\n\t\t\t\t\t\t\t[-158.783590, 56.780750],\n\t\t\t\t\t\t\t[-158.660298, 56.789015],\n\t\t\t\t\t\t\t[-158.642293, 56.812850],\n\t\t\t\t\t\t\t[-158.642845, 56.836608],\n\t\t\t\t\t\t\t[-158.646812, 56.846992],\n\t\t\t\t\t\t\t[-158.663659, 56.857055],\n\t\t\t\t\t\t\t[-158.699788, 56.927362],\n\t\t\t\t\t\t\t[-158.679293, 56.988625],\n\t\t\t\t\t\t\t[-158.659945, 57.034585],\n\t\t\t\t\t\t\t[-158.637364, 57.061364],\n\t\t\t\t\t\t\t[-158.518429, 57.160550],\n\t\t\t\t\t\t\t[-158.453711, 57.211790],\n\t\t\t\t\t\t\t[-158.376249, 57.265542],\n\t\t\t\t\t\t\t[-158.355066, 57.274850],\n\t\t\t\t\t\t\t[-158.229883, 57.321534],\n\t\t\t\t\t\t\t[-158.149710, 57.344916],\n\t\t\t\t\t\t\t[-158.067030, 57.382915],\n\t\t\t\t\t\t\t[-158.060041, 57.387456],\n\t\t\t\t\t\t\t[-158.049932, 57.390141],\n\t\t\t\t\t\t\t[-158.034246, 57.390230],\n\t\t\t\t\t\t\t[-158.010538, 57.401456],\n\t\t\t\t\t\t\t[-157.994670, 57.414234],\n\t\t\t\t\t\t\t[-157.956239, 57.449383],\n\t\t\t\t\t\t\t[-157.937241, 57.472048],\n\t\t\t\t\t\t\t[-157.931624, 57.476208],\n\t\t\t\t\t\t\t[-157.786046, 57.542189],\n\t\t\t\t\t\t\t[-157.772496, 57.547055],\n\t\t\t\t\t\t\t[-157.703852, 57.563455],\n\t\t\t\t\t\t\t[-157.678891, 57.563888],\n\t\t\t\t\t\t\t[-157.684833, 57.557746],\n\t\t\t\t\t\t\t[-157.680416, 57.537727],\n\t\t\t\t\t\t\t[-157.649389, 57.500331],\n\t\t\t\t\t\t\t[-157.615137, 57.488691],\n\t\t\t\t\t\t\t[-157.586910, 57.487156],\n\t\t\t\t\t\t\t[-157.573129, 57.514525],\n\t\t\t\t\t\t\t[-157.573472, 57.522732],\n\t\t\t\t\t\t\t[-157.588339, 57.582152],\n\t\t\t\t\t\t\t[-157.599644, 57.607950],\n\t\t\t\t\t\t\t[-157.607387, 57.612537],\n\t\t\t\t\t\t\t[-157.652202, 57.614794],\n\t\t\t\t\t\t\t[-157.684282, 57.609974],\n\t\t\t\t\t\t\t[-157.691291, 57.611131],\n\t\t\t\t\t\t\t[-157.710645, 57.639946],\n\t\t\t\t\t\t\t[-157.703782, 57.721768],\n\t\t\t\t\t\t\t[-157.671061, 57.772866],\n\t\t\t\t\t\t\t[-157.642226, 57.868777],\n\t\t\t\t\t\t\t[-157.623886, 57.960502],\n\t\t\t\t\t\t\t[-157.611802, 58.034263],\n\t\t\t\t\t\t\t[-157.596601, 58.088670],\n\t\t\t\t\t\t\t[-157.583636, 58.124307],\n\t\t\t\t\t\t\t[-157.580924, 58.128096],\n\t\t\t\t\t\t\t[-157.556556, 58.148445],\n\t\t\t\t\t\t\t[-157.533329, 58.160335],\n\t\t\t\t\t\t\t[-157.514474, 58.162978],\n\t\t\t\t\t\t\t[-157.493784, 58.162148],\n\t\t\t\t\t\t\t[-157.397350, 58.173383],\n\t\t\t\t\t\t\t[-157.383099, 58.184607],\n\t\t\t\t\t\t\t[-157.352316, 58.219097],\n\t\t\t\t\t\t\t[-157.366928, 58.232669],\n\t\t\t\t\t\t\t[-157.374511, 58.232117],\n\t\t\t\t\t\t\t[-157.389237, 58.228091],\n\t\t\t\t\t\t\t[-157.407918, 58.211871],\n\t\t\t\t\t\t\t[-157.423325, 58.211360],\n\t\t\t\t\t\t\t[-157.442712, 58.218875],\n\t\t\t\t\t\t\t[-157.515475, 58.255638],\n\t\t\t\t\t\t\t[-157.541564, 58.271883],\n\t\t\t\t\t\t\t[-157.547209, 58.277535],\n\t\t\t\t\t\t\t[-157.556343, 58.303749],\n\t\t\t\t\t\t\t[-157.556865, 58.330715],\n\t\t\t\t\t\t\t[-157.536176, 58.391597],\n\t\t\t\t\t\t\t[-157.524477, 58.414506],\n\t\t\t\t\t\t\t[-157.488108, 58.471705],\n\t\t\t\t\t\t\t[-157.481487, 58.480771],\n\t\t\t\t\t\t\t[-157.460880, 58.499693],\n\t\t\t\t\t\t\t[-157.451918, 58.505618],\n\t\t\t\t\t\t\t[-157.397197, 58.527333],\n\t\t\t\t\t\t\t[-157.380259, 58.524398],\n\t\t\t\t\t\t\t[-157.358487, 58.533876],\n\t\t\t\t\t\t\t[-157.330683, 58.551516],\n\t\t\t\t\t\t\t[-157.313572, 58.565043],\n\t\t\t\t\t\t\t[-157.281327, 58.600236],\n\t\t\t\t\t\t\t[-157.267437, 58.609794],\n\t\t\t\t\t\t\t[-156.317671, 58.609610],\n\t\t\t\t\t\t\t[-156.318135, 58.894948],\n\t\t\t\t\t\t\t[-156.985833, 58.888654],\n\t\t\t\t\t\t\t[-156.980888, 58.891031],\n\t\t\t\t\t\t\t[-156.966649, 58.904074],\n\t\t\t\t\t\t\t[-156.975946, 58.940896],\n\t\t\t\t\t\t\t[-157.029517, 58.956203],\n\t\t\t\t\t\t\t[-157.039206, 58.945921],\n\t\t\t\t\t\t\t[-157.040625, 58.913391],\n\t\t\t\t\t\t\t[-157.070584, 58.887816],\n\t\t\t\t\t\t\t[-157.070601, 58.887808],\n\t\t\t\t\t\t\t[-157.116866, 58.867533],\n\t\t\t\t\t\t\t[-157.158008, 58.860227],\n\t\t\t\t\t\t\t[-157.244151, 59.246208],\n\t\t\t\t\t\t\t[-157.074194, 59.244404],\n\t\t\t\t\t\t\t[-157.073256, 59.331538],\n\t\t\t\t\t\t\t[-156.729373, 59.328803],\n\t\t\t\t\t\t\t[-156.731184, 59.416170],\n\t\t\t\t\t\t\t[-156.635005, 59.415108],\n\t\t\t\t\t\t\t[-156.634489, 59.503988],\n\t\t\t\t\t\t\t[-156.464896, 59.502988],\n\t\t\t\t\t\t\t[-156.464798, 59.589388],\n\t\t\t\t\t\t\t[-156.123307, 59.588205],\n\t\t\t\t\t\t\t[-156.122050, 59.675185],\n\t\t\t\t\t\t\t[-155.955850, 59.677305],\n\t\t\t\t\t\t\t[-155.953624, 60.106238],\n\t\t\t\t\t\t\t[-155.961100, 60.907602],\n\t\t\t\t\t\t\t[-154.422064, 60.906969],\n\t\t\t\t\t\t\t[-153.436195, 60.908538],\n\t\t\t\t\t\t\t[-153.395016, 60.823291],\n\t\t\t\t\t\t\t[-153.394293, 60.472296],\n\t\t\t\t\t\t\t[-153.528484, 60.470611],\n\t\t\t\t\t\t\t[-153.531136, 60.122545],\n\t\t\t\t\t\t\t[-153.656579, 60.121433],\n\t\t\t\t\t\t\t[-153.654893, 59.784914],\n\t\t\t\t\t\t\t[-153.782943, 59.785049],\n\t\t\t\t\t\t\t[-153.783649, 59.696598],\n\t\t\t\t\t\t\t[-153.955889, 59.696099],\n\t\t\t\t\t\t\t[-153.954485, 59.520073],\n\t\t\t\t\t\t\t[-154.124374, 59.519551],\n\t\t\t\t\t\t\t[-154.121269, 59.431295],\n\t\t\t\t\t\t\t[-154.414557, 59.428681],\n\t\t\t\t\t\t\t[-154.409316, 59.254640],\n\t\t\t\t\t\t\t[-154.747693, 59.253095],\n\t\t\t\t\t\t\t[-154.745361, 59.076992],\n\t\t\t\t\t\t\t[-154.692093, 59.075956],\n\t\t\t\t\t\t\t[-154.692714, 58.734598],\n\t\t\t\t\t\t\t[-154.639420, 58.734693],\n\t\t\t\t\t\t\t[-154.637270, 58.646810],\n\t\t\t\t\t\t\t[-154.305926, 58.646822]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US02180\",\n\t\t\t\t\"STATE\": \"02\",\n\t\t\t\t\"COUNTY\": \"180\",\n\t\t\t\t\"NAME\": \"Nome\",\n\t\t\t\t\"LSAD\": \"CA\",\n\t\t\t\t\"CENSUSAREA\": 22961.761000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-169.267598, 63.343995],\n\t\t\t\t\t\t\t[-169.101961, 63.338022],\n\t\t\t\t\t\t\t[-169.087914, 63.340937],\n\t\t\t\t\t\t\t[-169.051950, 63.343127],\n\t\t\t\t\t\t\t[-168.999241, 63.341249],\n\t\t\t\t\t\t\t[-168.937385, 63.333789],\n\t\t\t\t\t\t\t[-168.936333, 63.330622],\n\t\t\t\t\t\t\t[-168.932623, 63.329140],\n\t\t\t\t\t\t\t[-168.796086, 63.308781],\n\t\t\t\t\t\t\t[-168.692939, 63.302282],\n\t\t\t\t\t\t\t[-168.685145, 63.296427],\n\t\t\t\t\t\t\t[-168.686675, 63.293022],\n\t\t\t\t\t\t\t[-168.716872, 63.256316],\n\t\t\t\t\t\t\t[-168.751537, 63.217962],\n\t\t\t\t\t\t\t[-168.783239, 63.184131],\n\t\t\t\t\t\t\t[-168.789266, 63.179646],\n\t\t\t\t\t\t\t[-168.818344, 63.163224],\n\t\t\t\t\t\t\t[-168.858750, 63.146958],\n\t\t\t\t\t\t\t[-168.871465, 63.146009],\n\t\t\t\t\t\t\t[-168.889683, 63.147708],\n\t\t\t\t\t\t\t[-168.950091, 63.160895],\n\t\t\t\t\t\t\t[-168.963577, 63.167104],\n\t\t\t\t\t\t\t[-168.983024, 63.169671],\n\t\t\t\t\t\t\t[-169.042674, 63.176511],\n\t\t\t\t\t\t\t[-169.105808, 63.178803],\n\t\t\t\t\t\t\t[-169.198398, 63.176011],\n\t\t\t\t\t\t\t[-169.262039, 63.169936],\n\t\t\t\t\t\t\t[-169.303477, 63.164439],\n\t\t\t\t\t\t\t[-169.375667, 63.151269],\n\t\t\t\t\t\t\t[-169.396308, 63.136617],\n\t\t\t\t\t\t\t[-169.436748, 63.113579],\n\t\t\t\t\t\t\t[-169.471949, 63.098565],\n\t\t\t\t\t\t\t[-169.513650, 63.084717],\n\t\t\t\t\t\t\t[-169.534984, 63.074355],\n\t\t\t\t\t\t\t[-169.561131, 63.055178],\n\t\t\t\t\t\t\t[-169.575873, 63.036450],\n\t\t\t\t\t\t\t[-169.576965, 63.027025],\n\t\t\t\t\t\t\t[-169.572777, 63.022118],\n\t\t\t\t\t\t\t[-169.568016, 62.976879],\n\t\t\t\t\t\t\t[-169.638309, 62.937527],\n\t\t\t\t\t\t\t[-169.746736, 62.955991],\n\t\t\t\t\t\t\t[-169.757249, 62.960087],\n\t\t\t\t\t\t\t[-169.757514, 62.963722],\n\t\t\t\t\t\t\t[-169.734938, 62.974468],\n\t\t\t\t\t\t\t[-169.734938, 62.976617],\n\t\t\t\t\t\t\t[-169.788466, 63.043015],\n\t\t\t\t\t\t\t[-169.829912, 63.078550],\n\t\t\t\t\t\t\t[-169.838511, 63.084339],\n\t\t\t\t\t\t\t[-169.881230, 63.105848],\n\t\t\t\t\t\t\t[-169.944056, 63.132360],\n\t\t\t\t\t\t\t[-169.987936, 63.142975],\n\t\t\t\t\t\t\t[-170.006196, 63.144540],\n\t\t\t\t\t\t\t[-170.021208, 63.149500],\n\t\t\t\t\t\t\t[-170.049622, 63.163377],\n\t\t\t\t\t\t\t[-170.051062, 63.167489],\n\t\t\t\t\t\t\t[-170.053402, 63.168858],\n\t\t\t\t\t\t\t[-170.101301, 63.179300],\n\t\t\t\t\t\t\t[-170.124354, 63.183665],\n\t\t\t\t\t\t\t[-170.154072, 63.186402],\n\t\t\t\t\t\t\t[-170.174421, 63.185464],\n\t\t\t\t\t\t\t[-170.186485, 63.181618],\n\t\t\t\t\t\t\t[-170.181985, 63.178804],\n\t\t\t\t\t\t\t[-170.193695, 63.177434],\n\t\t\t\t\t\t\t[-170.263032, 63.179147],\n\t\t\t\t\t\t\t[-170.281388, 63.186821],\n\t\t\t\t\t\t\t[-170.285648, 63.194570],\n\t\t\t\t\t\t\t[-170.279881, 63.197108],\n\t\t\t\t\t\t\t[-170.277915, 63.200239],\n\t\t\t\t\t\t\t[-170.277721, 63.208819],\n\t\t\t\t\t\t\t[-170.303630, 63.238692],\n\t\t\t\t\t\t\t[-170.337275, 63.266308],\n\t\t\t\t\t\t\t[-170.364806, 63.285596],\n\t\t\t\t\t\t\t[-170.430656, 63.314284],\n\t\t\t\t\t\t\t[-170.512102, 63.341881],\n\t\t\t\t\t\t\t[-170.558950, 63.354989],\n\t\t\t\t\t\t\t[-170.712572, 63.385975],\n\t\t\t\t\t\t\t[-170.865412, 63.414229],\n\t\t\t\t\t\t\t[-170.923450, 63.420859],\n\t\t\t\t\t\t\t[-170.967475, 63.423730],\n\t\t\t\t\t\t\t[-171.067663, 63.424579],\n\t\t\t\t\t\t\t[-171.100855, 63.423420],\n\t\t\t\t\t\t\t[-171.269249, 63.385386],\n\t\t\t\t\t\t\t[-171.280185, 63.381543],\n\t\t\t\t\t\t\t[-171.287157, 63.376642],\n\t\t\t\t\t\t\t[-171.288265, 63.374833],\n\t\t\t\t\t\t\t[-171.285411, 63.366464],\n\t\t\t\t\t\t\t[-171.290324, 63.355383],\n\t\t\t\t\t\t\t[-171.333089, 63.335393],\n\t\t\t\t\t\t\t[-171.433319, 63.307578],\n\t\t\t\t\t\t\t[-171.464455, 63.306915],\n\t\t\t\t\t\t\t[-171.562263, 63.334591],\n\t\t\t\t\t\t\t[-171.667115, 63.356166],\n\t\t\t\t\t\t\t[-171.739321, 63.366114],\n\t\t\t\t\t\t\t[-171.795297, 63.407853],\n\t\t\t\t\t\t\t[-171.818259, 63.429452],\n\t\t\t\t\t\t\t[-171.824872, 63.437141],\n\t\t\t\t\t\t\t[-171.849984, 63.485039],\n\t\t\t\t\t\t\t[-171.840382, 63.547724],\n\t\t\t\t\t\t\t[-171.833681, 63.580074],\n\t\t\t\t\t\t\t[-171.791881, 63.620625],\n\t\t\t\t\t\t\t[-171.757081, 63.640252],\n\t\t\t\t\t\t\t[-171.743979, 63.654905],\n\t\t\t\t\t\t\t[-171.742338, 63.665494],\n\t\t\t\t\t\t\t[-171.755552, 63.701173],\n\t\t\t\t\t\t\t[-171.754336, 63.718960],\n\t\t\t\t\t\t\t[-171.739918, 63.717096],\n\t\t\t\t\t\t\t[-171.733206, 63.720327],\n\t\t\t\t\t\t\t[-171.727986, 63.726791],\n\t\t\t\t\t\t\t[-171.725748, 63.734745],\n\t\t\t\t\t\t\t[-171.727986, 63.744938],\n\t\t\t\t\t\t\t[-171.737432, 63.760350],\n\t\t\t\t\t\t\t[-171.743398, 63.782971],\n\t\t\t\t\t\t\t[-171.738178, 63.784711],\n\t\t\t\t\t\t\t[-171.699647, 63.781728],\n\t\t\t\t\t\t\t[-171.692686, 63.782598],\n\t\t\t\t\t\t\t[-171.682494, 63.787570],\n\t\t\t\t\t\t\t[-171.673296, 63.788067],\n\t\t\t\t\t\t\t[-171.667330, 63.785581],\n\t\t\t\t\t\t\t[-171.659873, 63.775762],\n\t\t\t\t\t\t\t[-171.643963, 63.770791],\n\t\t\t\t\t\t\t[-171.638991, 63.759231],\n\t\t\t\t\t\t\t[-171.638246, 63.749536],\n\t\t\t\t\t\t\t[-171.641477, 63.745559],\n\t\t\t\t\t\t\t[-171.652912, 63.739220],\n\t\t\t\t\t\t\t[-171.652664, 63.736610],\n\t\t\t\t\t\t\t[-171.648935, 63.734870],\n\t\t\t\t\t\t\t[-171.646692, 63.729425],\n\t\t\t\t\t\t\t[-171.652630, 63.708523],\n\t\t\t\t\t\t\t[-171.649923, 63.702540],\n\t\t\t\t\t\t\t[-171.640027, 63.693430],\n\t\t\t\t\t\t\t[-171.632194, 63.688601],\n\t\t\t\t\t\t\t[-171.609439, 63.679832],\n\t\t\t\t\t\t\t[-171.521859, 63.658797],\n\t\t\t\t\t\t\t[-171.381677, 63.630646],\n\t\t\t\t\t\t\t[-171.202557, 63.606897],\n\t\t\t\t\t\t\t[-171.103558, 63.589268],\n\t\t\t\t\t\t\t[-171.044486, 63.580431],\n\t\t\t\t\t\t\t[-170.950817, 63.570127],\n\t\t\t\t\t\t\t[-170.907197, 63.572107],\n\t\t\t\t\t\t\t[-170.897581, 63.574676],\n\t\t\t\t\t\t\t[-170.859032, 63.587503],\n\t\t\t\t\t\t\t[-170.816581, 63.606329],\n\t\t\t\t\t\t\t[-170.698156, 63.646778],\n\t\t\t\t\t\t\t[-170.606282, 63.672732],\n\t\t\t\t\t\t\t[-170.488192, 63.696723],\n\t\t\t\t\t\t\t[-170.472181, 63.698677],\n\t\t\t\t\t\t\t[-170.462947, 63.698022],\n\t\t\t\t\t\t\t[-170.441066, 63.691981],\n\t\t\t\t\t\t\t[-170.373871, 63.687322],\n\t\t\t\t\t\t\t[-170.359363, 63.687321],\n\t\t\t\t\t\t\t[-170.354527, 63.691924],\n\t\t\t\t\t\t\t[-170.344855, 63.694225],\n\t\t\t\t\t\t\t[-170.315839, 63.691923],\n\t\t\t\t\t\t\t[-170.281988, 63.685020],\n\t\t\t\t\t\t\t[-170.267480, 63.675816],\n\t\t\t\t\t\t\t[-170.257808, 63.666611],\n\t\t\t\t\t\t\t[-170.176413, 63.625489],\n\t\t\t\t\t\t\t[-170.154754, 63.619072],\n\t\t\t\t\t\t\t[-170.140040, 63.616696],\n\t\t\t\t\t\t\t[-170.113066, 63.616245],\n\t\t\t\t\t\t\t[-170.095833, 63.612701],\n\t\t\t\t\t\t\t[-170.076689, 63.587988],\n\t\t\t\t\t\t\t[-170.040919, 63.523411],\n\t\t\t\t\t\t\t[-170.047114, 63.490135],\n\t\t\t\t\t\t\t[-170.026953, 63.480702],\n\t\t\t\t\t\t\t[-170.007943, 63.475428],\n\t\t\t\t\t\t\t[-169.974858, 63.470618],\n\t\t\t\t\t\t\t[-169.906304, 63.457519],\n\t\t\t\t\t\t\t[-169.857078, 63.441975],\n\t\t\t\t\t\t\t[-169.747634, 63.432756],\n\t\t\t\t\t\t\t[-169.656474, 63.429929],\n\t\t\t\t\t\t\t[-169.643167, 63.427802],\n\t\t\t\t\t\t\t[-169.579892, 63.402870],\n\t\t\t\t\t\t\t[-169.566562, 63.388725],\n\t\t\t\t\t\t\t[-169.565439, 63.385563],\n\t\t\t\t\t\t\t[-169.554375, 63.377158],\n\t\t\t\t\t\t\t[-169.546934, 63.372792],\n\t\t\t\t\t\t\t[-169.520524, 63.365941],\n\t\t\t\t\t\t\t[-169.415329, 63.355943],\n\t\t\t\t\t\t\t[-169.384080, 63.356733],\n\t\t\t\t\t\t\t[-169.312970, 63.353335],\n\t\t\t\t\t\t\t[-169.281422, 63.348381],\n\t\t\t\t\t\t\t[-169.267598, 63.343995]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-162.614621, 63.621832],\n\t\t\t\t\t\t\t[-162.587527, 63.625115],\n\t\t\t\t\t\t\t[-162.558234, 63.634308],\n\t\t\t\t\t\t\t[-162.541389, 63.635727],\n\t\t\t\t\t\t\t[-162.512298, 63.629784],\n\t\t\t\t\t\t\t[-162.498175, 63.622069],\n\t\t\t\t\t\t\t[-162.451929, 63.621270],\n\t\t\t\t\t\t\t[-162.440229, 63.622491],\n\t\t\t\t\t\t\t[-162.430304, 63.625745],\n\t\t\t\t\t\t\t[-162.425419, 63.629950],\n\t\t\t\t\t\t\t[-162.425265, 63.631654],\n\t\t\t\t\t\t\t[-162.427696, 63.633134],\n\t\t\t\t\t\t\t[-162.424205, 63.636215],\n\t\t\t\t\t\t\t[-162.401203, 63.634367],\n\t\t\t\t\t\t\t[-162.374243, 63.626425],\n\t\t\t\t\t\t\t[-162.341892, 63.594062],\n\t\t\t\t\t\t\t[-162.345179, 63.551785],\n\t\t\t\t\t\t\t[-162.377988, 63.543813],\n\t\t\t\t\t\t\t[-162.416802, 63.547389],\n\t\t\t\t\t\t\t[-162.470029, 63.547500],\n\t\t\t\t\t\t\t[-162.552701, 63.540951],\n\t\t\t\t\t\t\t[-162.562007, 63.537105],\n\t\t\t\t\t\t\t[-162.614949, 63.540601],\n\t\t\t\t\t\t\t[-162.676581, 63.555648],\n\t\t\t\t\t\t\t[-162.680973, 63.556859],\n\t\t\t\t\t\t\t[-162.707559, 63.577607],\n\t\t\t\t\t\t\t[-162.682629, 63.584066],\n\t\t\t\t\t\t\t[-162.644513, 63.602599],\n\t\t\t\t\t\t\t[-162.614621, 63.621832]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-168.210120, 64.998960],\n\t\t\t\t\t\t\t[-168.207906, 65.003291],\n\t\t\t\t\t\t\t[-168.169090, 65.024067],\n\t\t\t\t\t\t\t[-168.156162, 65.029174],\n\t\t\t\t\t\t\t[-168.129109, 65.034565],\n\t\t\t\t\t\t\t[-168.076108, 65.043289],\n\t\t\t\t\t\t\t[-168.004872, 65.038897],\n\t\t\t\t\t\t\t[-167.972262, 65.030534],\n\t\t\t\t\t\t\t[-167.953076, 65.023479],\n\t\t\t\t\t\t\t[-167.924296, 65.002728],\n\t\t\t\t\t\t\t[-167.916447, 64.988618],\n\t\t\t\t\t\t\t[-167.913829, 64.969943],\n\t\t\t\t\t\t\t[-167.919060, 64.960813],\n\t\t\t\t\t\t\t[-167.953094, 64.932994],\n\t\t\t\t\t\t\t[-167.976149, 64.922872],\n\t\t\t\t\t\t\t[-168.037032, 64.909284],\n\t\t\t\t\t\t\t[-168.090879, 64.911113],\n\t\t\t\t\t\t\t[-168.137033, 64.918432],\n\t\t\t\t\t\t\t[-168.187035, 64.934902],\n\t\t\t\t\t\t\t[-168.210114, 64.951372],\n\t\t\t\t\t\t\t[-168.213962, 64.967845],\n\t\t\t\t\t\t\t[-168.213963, 64.984318],\n\t\t\t\t\t\t\t[-168.210120, 64.998960]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-168.952766, 65.758911],\n\t\t\t\t\t\t\t[-168.947278, 65.763817],\n\t\t\t\t\t\t\t[-168.937240, 65.767116],\n\t\t\t\t\t\t\t[-168.915518, 65.770484],\n\t\t\t\t\t\t\t[-168.902235, 65.769665],\n\t\t\t\t\t\t\t[-168.893219, 65.744705],\n\t\t\t\t\t\t\t[-168.898754, 65.739709],\n\t\t\t\t\t\t\t[-168.903439, 65.738454],\n\t\t\t\t\t\t\t[-168.931220, 65.738940],\n\t\t\t\t\t\t\t[-168.940760, 65.742714],\n\t\t\t\t\t\t\t[-168.951388, 65.749319],\n\t\t\t\t\t\t\t[-168.954515, 65.757144],\n\t\t\t\t\t\t\t[-168.952766, 65.758911]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-166.031870, 66.264639],\n\t\t\t\t\t\t\t[-166.031342, 66.264631],\n\t\t\t\t\t\t\t[-166.019921, 66.252754],\n\t\t\t\t\t\t\t[-166.066397, 66.246531],\n\t\t\t\t\t\t\t[-166.096969, 66.237833],\n\t\t\t\t\t\t\t[-166.121659, 66.214773],\n\t\t\t\t\t\t\t[-166.138390, 66.210089],\n\t\t\t\t\t\t\t[-166.153012, 66.212289],\n\t\t\t\t\t\t\t[-166.170909, 66.218437],\n\t\t\t\t\t\t\t[-166.172071, 66.219909],\n\t\t\t\t\t\t\t[-166.178474, 66.228016],\n\t\t\t\t\t\t\t[-166.177606, 66.234732],\n\t\t\t\t\t\t\t[-166.165412, 66.239084],\n\t\t\t\t\t\t\t[-166.152374, 66.246373],\n\t\t\t\t\t\t\t[-166.129652, 66.252813],\n\t\t\t\t\t\t\t[-166.101781, 66.258743],\n\t\t\t\t\t\t\t[-166.066097, 66.263721],\n\t\t\t\t\t\t\t[-166.053153, 66.264944],\n\t\t\t\t\t\t\t[-166.031870, 66.264639]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-160.851144, 63.012689],\n\t\t\t\t\t\t\t[-161.990906, 63.012675],\n\t\t\t\t\t\t\t[-161.990032, 63.096024],\n\t\t\t\t\t\t\t[-162.177514, 63.096467],\n\t\t\t\t\t\t\t[-162.184665, 63.186448],\n\t\t\t\t\t\t\t[-162.374087, 63.186423],\n\t\t\t\t\t\t\t[-162.377710, 63.272891],\n\t\t\t\t\t\t\t[-162.587754, 63.275727],\n\t\t\t\t\t\t\t[-162.571695, 63.285556],\n\t\t\t\t\t\t\t[-162.437059, 63.377836],\n\t\t\t\t\t\t\t[-162.432169, 63.382606],\n\t\t\t\t\t\t\t[-162.426095, 63.393651],\n\t\t\t\t\t\t\t[-162.428744, 63.401055],\n\t\t\t\t\t\t\t[-162.421530, 63.409014],\n\t\t\t\t\t\t\t[-162.384625, 63.435797],\n\t\t\t\t\t\t\t[-162.352274, 63.454069],\n\t\t\t\t\t\t\t[-162.301869, 63.473422],\n\t\t\t\t\t\t\t[-162.271089, 63.487711],\n\t\t\t\t\t\t\t[-162.268242, 63.490799],\n\t\t\t\t\t\t\t[-162.267833, 63.495084],\n\t\t\t\t\t\t\t[-162.288532, 63.526412],\n\t\t\t\t\t\t\t[-162.301471, 63.537350],\n\t\t\t\t\t\t\t[-162.296731, 63.540108],\n\t\t\t\t\t\t\t[-162.252411, 63.541753],\n\t\t\t\t\t\t\t[-162.190145, 63.529886],\n\t\t\t\t\t\t\t[-162.151574, 63.517952],\n\t\t\t\t\t\t\t[-162.123249, 63.512807],\n\t\t\t\t\t\t\t[-162.108597, 63.511927],\n\t\t\t\t\t\t\t[-162.073156, 63.513768],\n\t\t\t\t\t\t\t[-162.041687, 63.489650],\n\t\t\t\t\t\t\t[-162.045709, 63.475434],\n\t\t\t\t\t\t\t[-162.050132, 63.472850],\n\t\t\t\t\t\t\t[-162.050543, 63.470589],\n\t\t\t\t\t\t\t[-162.039444, 63.458930],\n\t\t\t\t\t\t\t[-162.025552, 63.447539],\n\t\t\t\t\t\t\t[-161.930714, 63.444843],\n\t\t\t\t\t\t\t[-161.839897, 63.447313],\n\t\t\t\t\t\t\t[-161.765832, 63.453803],\n\t\t\t\t\t\t\t[-161.705630, 63.464061],\n\t\t\t\t\t\t\t[-161.676526, 63.465003],\n\t\t\t\t\t\t\t[-161.591632, 63.454244],\n\t\t\t\t\t\t\t[-161.583772, 63.447857],\n\t\t\t\t\t\t\t[-161.553077, 63.449217],\n\t\t\t\t\t\t\t[-161.450463, 63.457178],\n\t\t\t\t\t\t\t[-161.310181, 63.471312],\n\t\t\t\t\t\t\t[-161.191163, 63.490072],\n\t\t\t\t\t\t\t[-161.136758, 63.504525],\n\t\t\t\t\t\t\t[-161.134230, 63.506735],\n\t\t\t\t\t\t\t[-161.119964, 63.532544],\n\t\t\t\t\t\t\t[-161.102721, 63.547800],\n\t\t\t\t\t\t\t[-161.036049, 63.579566],\n\t\t\t\t\t\t\t[-160.924877, 63.644814],\n\t\t\t\t\t\t\t[-160.904353, 63.658024],\n\t\t\t\t\t\t\t[-160.809089, 63.731332],\n\t\t\t\t\t\t\t[-160.783304, 63.752893],\n\t\t\t\t\t\t\t[-160.765560, 63.773552],\n\t\t\t\t\t\t\t[-160.761974, 63.793453],\n\t\t\t\t\t\t\t[-160.766291, 63.835189],\n\t\t\t\t\t\t\t[-160.787624, 63.869196],\n\t\t\t\t\t\t\t[-160.810798, 63.904646],\n\t\t\t\t\t\t\t[-160.851979, 63.954409],\n\t\t\t\t\t\t\t[-160.877686, 63.977265],\n\t\t\t\t\t\t\t[-160.892455, 63.985943],\n\t\t\t\t\t\t\t[-160.933740, 64.049729],\n\t\t\t\t\t\t\t[-160.951641, 64.090067],\n\t\t\t\t\t\t\t[-160.955132, 64.138030],\n\t\t\t\t\t\t\t[-160.956425, 64.191732],\n\t\t\t\t\t\t\t[-160.953596, 64.197775],\n\t\t\t\t\t\t\t[-160.946857, 64.204158],\n\t\t\t\t\t\t\t[-160.976038, 64.235761],\n\t\t\t\t\t\t\t[-161.228941, 64.370747],\n\t\t\t\t\t\t\t[-161.263519, 64.398166],\n\t\t\t\t\t\t\t[-161.313668, 64.400874],\n\t\t\t\t\t\t\t[-161.410382, 64.422107],\n\t\t\t\t\t\t\t[-161.463026, 64.420074],\n\t\t\t\t\t\t\t[-161.470182, 64.418814],\n\t\t\t\t\t\t\t[-161.492926, 64.407851],\n\t\t\t\t\t\t\t[-161.504903, 64.423074],\n\t\t\t\t\t\t\t[-161.479093, 64.486401],\n\t\t\t\t\t\t\t[-161.469046, 64.506575],\n\t\t\t\t\t\t\t[-161.388621, 64.532783],\n\t\t\t\t\t\t\t[-161.373572, 64.535028],\n\t\t\t\t\t\t\t[-161.362901, 64.526913],\n\t\t\t\t\t\t\t[-161.351145, 64.521382],\n\t\t\t\t\t\t\t[-161.321343, 64.513865],\n\t\t\t\t\t\t\t[-161.234092, 64.500365],\n\t\t\t\t\t\t\t[-161.198029, 64.496626],\n\t\t\t\t\t\t\t[-161.155518, 64.494687],\n\t\t\t\t\t\t\t[-161.078031, 64.494094],\n\t\t\t\t\t\t\t[-161.024185, 64.499719],\n\t\t\t\t\t\t\t[-161.015095, 64.502124],\n\t\t\t\t\t\t\t[-161.013228, 64.507521],\n\t\t\t\t\t\t\t[-161.017140, 64.517124],\n\t\t\t\t\t\t\t[-161.037534, 64.522246],\n\t\t\t\t\t\t\t[-161.045947, 64.524948],\n\t\t\t\t\t\t\t[-161.053060, 64.528504],\n\t\t\t\t\t\t\t[-161.055549, 64.532416],\n\t\t\t\t\t\t\t[-161.052348, 64.537395],\n\t\t\t\t\t\t\t[-161.049148, 64.540952],\n\t\t\t\t\t\t\t[-160.992894, 64.541295],\n\t\t\t\t\t\t\t[-160.970555, 64.543884],\n\t\t\t\t\t\t\t[-160.940493, 64.550000],\n\t\t\t\t\t\t\t[-160.802048, 64.610352],\n\t\t\t\t\t\t\t[-160.793356, 64.619317],\n\t\t\t\t\t\t\t[-160.791614, 64.623055],\n\t\t\t\t\t\t\t[-160.783570, 64.680581],\n\t\t\t\t\t\t\t[-160.783398, 64.717160],\n\t\t\t\t\t\t\t[-160.869571, 64.783797],\n\t\t\t\t\t\t\t[-160.935974, 64.822370],\n\t\t\t\t\t\t\t[-160.986417, 64.833984],\n\t\t\t\t\t\t\t[-161.079718, 64.869549],\n\t\t\t\t\t\t\t[-161.102755, 64.880661],\n\t\t\t\t\t\t\t[-161.133062, 64.898219],\n\t\t\t\t\t\t\t[-161.149655, 64.911985],\n\t\t\t\t\t\t\t[-161.149366, 64.916558],\n\t\t\t\t\t\t\t[-161.145725, 64.920534],\n\t\t\t\t\t\t\t[-161.176009, 64.927161],\n\t\t\t\t\t\t\t[-161.192120, 64.921366],\n\t\t\t\t\t\t\t[-161.195202, 64.918178],\n\t\t\t\t\t\t\t[-161.200893, 64.905796],\n\t\t\t\t\t\t\t[-161.200964, 64.898659],\n\t\t\t\t\t\t\t[-161.198586, 64.894403],\n\t\t\t\t\t\t\t[-161.213756, 64.883324],\n\t\t\t\t\t\t\t[-161.264283, 64.861970],\n\t\t\t\t\t\t\t[-161.293049, 64.853243],\n\t\t\t\t\t\t\t[-161.327848, 64.829836],\n\t\t\t\t\t\t\t[-161.357867, 64.805922],\n\t\t\t\t\t\t\t[-161.366808, 64.793777],\n\t\t\t\t\t\t\t[-161.364438, 64.782099],\n\t\t\t\t\t\t\t[-161.367483, 64.778907],\n\t\t\t\t\t\t\t[-161.376985, 64.773036],\n\t\t\t\t\t\t\t[-161.413493, 64.762723],\n\t\t\t\t\t\t\t[-161.429860, 64.759027],\n\t\t\t\t\t\t\t[-161.518211, 64.753250],\n\t\t\t\t\t\t\t[-161.595506, 64.764478],\n\t\t\t\t\t\t\t[-161.630287, 64.771290],\n\t\t\t\t\t\t\t[-161.645520, 64.776452],\n\t\t\t\t\t\t\t[-161.667261, 64.788981],\n\t\t\t\t\t\t\t[-161.878363, 64.709476],\n\t\t\t\t\t\t\t[-161.902429, 64.703851],\n\t\t\t\t\t\t\t[-161.939279, 64.699119],\n\t\t\t\t\t\t\t[-162.096528, 64.690983],\n\t\t\t\t\t\t\t[-162.138832, 64.685934],\n\t\t\t\t\t\t\t[-162.168516, 64.680290],\n\t\t\t\t\t\t\t[-162.188146, 64.672395],\n\t\t\t\t\t\t\t[-162.216620, 64.656213],\n\t\t\t\t\t\t\t[-162.219718, 64.644176],\n\t\t\t\t\t\t\t[-162.234477, 64.619336],\n\t\t\t\t\t\t\t[-162.270025, 64.608710],\n\t\t\t\t\t\t\t[-162.290571, 64.605496],\n\t\t\t\t\t\t\t[-162.342308, 64.592240],\n\t\t\t\t\t\t\t[-162.539996, 64.530931],\n\t\t\t\t\t\t\t[-162.554875, 64.520341],\n\t\t\t\t\t\t\t[-162.614220, 64.470702],\n\t\t\t\t\t\t\t[-162.615452, 64.467077],\n\t\t\t\t\t\t\t[-162.602178, 64.456869],\n\t\t\t\t\t\t\t[-162.603020, 64.448666],\n\t\t\t\t\t\t\t[-162.632242, 64.385734],\n\t\t\t\t\t\t\t[-162.645156, 64.379783],\n\t\t\t\t\t\t\t[-162.667680, 64.375356],\n\t\t\t\t\t\t\t[-162.719218, 64.359971],\n\t\t\t\t\t\t\t[-162.768424, 64.333516],\n\t\t\t\t\t\t\t[-162.790167, 64.325182],\n\t\t\t\t\t\t\t[-162.795636, 64.327716],\n\t\t\t\t\t\t\t[-162.805385, 64.336023],\n\t\t\t\t\t\t\t[-162.810004, 64.352647],\n\t\t\t\t\t\t\t[-162.807205, 64.364643],\n\t\t\t\t\t\t\t[-162.800350, 64.374695],\n\t\t\t\t\t\t\t[-162.802266, 64.395327],\n\t\t\t\t\t\t\t[-162.806612, 64.405608],\n\t\t\t\t\t\t\t[-162.836540, 64.436702],\n\t\t\t\t\t\t\t[-162.858556, 64.474864],\n\t\t\t\t\t\t\t[-162.857562, 64.499780],\n\t\t\t\t\t\t\t[-162.940776, 64.542417],\n\t\t\t\t\t\t\t[-162.969250, 64.546870],\n\t\t\t\t\t\t\t[-163.030657, 64.542353],\n\t\t\t\t\t\t\t[-163.042618, 64.540046],\n\t\t\t\t\t\t\t[-163.032057, 64.525608],\n\t\t\t\t\t\t\t[-163.028887, 64.511908],\n\t\t\t\t\t\t\t[-163.027158, 64.477945],\n\t\t\t\t\t\t\t[-163.091486, 64.437736],\n\t\t\t\t\t\t\t[-163.107459, 64.409192],\n\t\t\t\t\t\t\t[-163.119450, 64.403808],\n\t\t\t\t\t\t\t[-163.150789, 64.397249],\n\t\t\t\t\t\t\t[-163.175336, 64.399334],\n\t\t\t\t\t\t\t[-163.229206, 64.430019],\n\t\t\t\t\t\t\t[-163.249092, 64.456223],\n\t\t\t\t\t\t\t[-163.253027, 64.469501],\n\t\t\t\t\t\t\t[-163.350926, 64.505859],\n\t\t\t\t\t\t\t[-163.412900, 64.524986],\n\t\t\t\t\t\t\t[-163.451482, 64.534820],\n\t\t\t\t\t\t\t[-163.597834, 64.563356],\n\t\t\t\t\t\t\t[-163.651943, 64.567299],\n\t\t\t\t\t\t\t[-163.829739, 64.574965],\n\t\t\t\t\t\t\t[-163.875774, 64.572935],\n\t\t\t\t\t\t\t[-163.896180, 64.564483],\n\t\t\t\t\t\t\t[-163.974352, 64.551370],\n\t\t\t\t\t\t\t[-163.994532, 64.551742],\n\t\t\t\t\t\t\t[-164.044839, 64.559167],\n\t\t\t\t\t\t\t[-164.071997, 64.561280],\n\t\t\t\t\t\t\t[-164.147059, 64.564552],\n\t\t\t\t\t\t\t[-164.260064, 64.564220],\n\t\t\t\t\t\t\t[-164.307273, 64.561488],\n\t\t\t\t\t\t\t[-164.421871, 64.545256],\n\t\t\t\t\t\t\t[-164.491327, 64.529824],\n\t\t\t\t\t\t\t[-164.548298, 64.516738],\n\t\t\t\t\t\t\t[-164.807747, 64.449432],\n\t\t\t\t\t\t\t[-164.835679, 64.444917],\n\t\t\t\t\t\t\t[-164.874421, 64.441195],\n\t\t\t\t\t\t\t[-165.001961, 64.433917],\n\t\t\t\t\t\t\t[-165.016519, 64.434392],\n\t\t\t\t\t\t\t[-165.214182, 64.469726],\n\t\t\t\t\t\t\t[-165.413443, 64.497939],\n\t\t\t\t\t\t\t[-165.550573, 64.512235],\n\t\t\t\t\t\t\t[-165.751093, 64.536437],\n\t\t\t\t\t\t\t[-165.819595, 64.540171],\n\t\t\t\t\t\t\t[-165.919704, 64.548660],\n\t\t\t\t\t\t\t[-166.189546, 64.575798],\n\t\t\t\t\t\t\t[-166.236939, 64.583558],\n\t\t\t\t\t\t\t[-166.392403, 64.638161],\n\t\t\t\t\t\t\t[-166.413926, 64.651229],\n\t\t\t\t\t\t\t[-166.451788, 64.691761],\n\t\t\t\t\t\t\t[-166.474714, 64.719267],\n\t\t\t\t\t\t\t[-166.483801, 64.733419],\n\t\t\t\t\t\t\t[-166.481076, 64.786156],\n\t\t\t\t\t\t\t[-166.478978, 64.797036],\n\t\t\t\t\t\t\t[-166.430516, 64.807715],\n\t\t\t\t\t\t\t[-166.417028, 64.818740],\n\t\t\t\t\t\t\t[-166.410198, 64.827968],\n\t\t\t\t\t\t\t[-166.407303, 64.834278],\n\t\t\t\t\t\t\t[-166.407315, 64.852281],\n\t\t\t\t\t\t\t[-166.409331, 64.859755],\n\t\t\t\t\t\t\t[-166.415624, 64.871928],\n\t\t\t\t\t\t\t[-166.432246, 64.883160],\n\t\t\t\t\t\t\t[-166.530518, 64.937114],\n\t\t\t\t\t\t\t[-166.586066, 64.955712],\n\t\t\t\t\t\t\t[-166.615110, 64.964330],\n\t\t\t\t\t\t\t[-166.636843, 64.968113],\n\t\t\t\t\t\t\t[-166.690814, 64.985372],\n\t\t\t\t\t\t\t[-166.704830, 64.997051],\n\t\t\t\t\t\t\t[-166.705283, 64.999846],\n\t\t\t\t\t\t\t[-166.695206, 65.005184],\n\t\t\t\t\t\t\t[-166.688762, 65.018029],\n\t\t\t\t\t\t\t[-166.692426, 65.029629],\n\t\t\t\t\t\t\t[-166.696453, 65.035857],\n\t\t\t\t\t\t\t[-166.732794, 65.053498],\n\t\t\t\t\t\t\t[-166.820910, 65.077053],\n\t\t\t\t\t\t\t[-166.860402, 65.090866],\n\t\t\t\t\t\t\t[-166.885451, 65.105856],\n\t\t\t\t\t\t\t[-166.911922, 65.125965],\n\t\t\t\t\t\t\t[-166.910131, 65.134024],\n\t\t\t\t\t\t\t[-166.906687, 65.136320],\n\t\t\t\t\t\t\t[-166.897720, 65.139028],\n\t\t\t\t\t\t\t[-166.886677, 65.138763],\n\t\t\t\t\t\t\t[-166.872666, 65.136928],\n\t\t\t\t\t\t\t[-166.837496, 65.128146],\n\t\t\t\t\t\t\t[-166.826753, 65.119778],\n\t\t\t\t\t\t\t[-166.816790, 65.117089],\n\t\t\t\t\t\t\t[-166.755554, 65.110585],\n\t\t\t\t\t\t\t[-166.670320, 65.109720],\n\t\t\t\t\t\t\t[-166.638411, 65.113586],\n\t\t\t\t\t\t\t[-166.634449, 65.125873],\n\t\t\t\t\t\t\t[-166.606070, 65.135992],\n\t\t\t\t\t\t\t[-166.521506, 65.149242],\n\t\t\t\t\t\t\t[-166.509566, 65.152719],\n\t\t\t\t\t\t\t[-166.479913, 65.167249],\n\t\t\t\t\t\t\t[-166.464192, 65.177086],\n\t\t\t\t\t\t\t[-166.459984, 65.183284],\n\t\t\t\t\t\t\t[-166.460050, 65.189897],\n\t\t\t\t\t\t\t[-166.465342, 65.194818],\n\t\t\t\t\t\t\t[-166.474839, 65.217663],\n\t\t\t\t\t\t\t[-166.475297, 65.224335],\n\t\t\t\t\t\t\t[-166.451711, 65.236178],\n\t\t\t\t\t\t\t[-166.386271, 65.254143],\n\t\t\t\t\t\t\t[-166.347189, 65.276341],\n\t\t\t\t\t\t\t[-166.360618, 65.288631],\n\t\t\t\t\t\t\t[-166.377721, 65.297983],\n\t\t\t\t\t\t\t[-166.439404, 65.319058],\n\t\t\t\t\t\t\t[-166.485968, 65.330900],\n\t\t\t\t\t\t\t[-166.518640, 65.335824],\n\t\t\t\t\t\t\t[-166.551097, 65.338406],\n\t\t\t\t\t\t\t[-166.572735, 65.338155],\n\t\t\t\t\t\t\t[-166.596964, 65.336246],\n\t\t\t\t\t\t\t[-166.625987, 65.325121],\n\t\t\t\t\t\t\t[-166.655179, 65.324938],\n\t\t\t\t\t\t\t[-166.679717, 65.326856],\n\t\t\t\t\t\t\t[-166.796001, 65.337184],\n\t\t\t\t\t\t\t[-166.851646, 65.348485],\n\t\t\t\t\t\t\t[-166.899681, 65.360642],\n\t\t\t\t\t\t\t[-167.026782, 65.381967],\n\t\t\t\t\t\t\t[-167.101860, 65.387737],\n\t\t\t\t\t\t\t[-167.170465, 65.389269],\n\t\t\t\t\t\t\t[-167.398458, 65.400259],\n\t\t\t\t\t\t\t[-167.474024, 65.412744],\n\t\t\t\t\t\t\t[-167.574639, 65.444979],\n\t\t\t\t\t\t\t[-167.620388, 65.463463],\n\t\t\t\t\t\t\t[-167.621371, 65.466589],\n\t\t\t\t\t\t\t[-167.710888, 65.498524],\n\t\t\t\t\t\t\t[-167.841836, 65.530249],\n\t\t\t\t\t\t\t[-167.851234, 65.538181],\n\t\t\t\t\t\t\t[-167.909599, 65.550876],\n\t\t\t\t\t\t\t[-167.967065, 65.558599],\n\t\t\t\t\t\t\t[-167.997178, 65.559346],\n\t\t\t\t\t\t\t[-168.047620, 65.569149],\n\t\t\t\t\t\t\t[-168.075200, 65.576355],\n\t\t\t\t\t\t\t[-168.099046, 65.592239],\n\t\t\t\t\t\t\t[-168.099356, 65.599045],\n\t\t\t\t\t\t\t[-168.096140, 65.600882],\n\t\t\t\t\t\t\t[-168.100003, 65.610972],\n\t\t\t\t\t\t\t[-168.127044, 65.626584],\n\t\t\t\t\t\t\t[-168.134663, 65.640840],\n\t\t\t\t\t\t\t[-168.128930, 65.655744],\n\t\t\t\t\t\t\t[-168.103708, 65.685552],\n\t\t\t\t\t\t\t[-167.979889, 65.727972],\n\t\t\t\t\t\t\t[-167.857216, 65.754341],\n\t\t\t\t\t\t\t[-167.735690, 65.776124],\n\t\t\t\t\t\t\t[-167.539643, 65.820836],\n\t\t\t\t\t\t\t[-167.314935, 65.885039],\n\t\t\t\t\t\t\t[-167.246146, 65.911408],\n\t\t\t\t\t\t\t[-167.139524, 65.948095],\n\t\t\t\t\t\t\t[-166.977872, 65.996247],\n\t\t\t\t\t\t\t[-166.956089, 66.007711],\n\t\t\t\t\t\t\t[-166.827684, 66.051277],\n\t\t\t\t\t\t\t[-166.597243, 66.118919],\n\t\t\t\t\t\t\t[-166.526162, 66.141849],\n\t\t\t\t\t\t\t[-166.330971, 66.189514],\n\t\t\t\t\t\t\t[-166.308287, 66.180287],\n\t\t\t\t\t\t\t[-166.282123, 66.177089],\n\t\t\t\t\t\t\t[-166.245693, 66.169920],\n\t\t\t\t\t\t\t[-166.223186, 66.171033],\n\t\t\t\t\t\t\t[-166.190692, 66.167410],\n\t\t\t\t\t\t\t[-166.181579, 66.164626],\n\t\t\t\t\t\t\t[-166.143876, 66.159265],\n\t\t\t\t\t\t\t[-166.127228, 66.155204],\n\t\t\t\t\t\t\t[-166.122248, 66.152622],\n\t\t\t\t\t\t\t[-166.122486, 66.149417],\n\t\t\t\t\t\t\t[-166.139023, 66.146991],\n\t\t\t\t\t\t\t[-166.149870, 66.141303],\n\t\t\t\t\t\t\t[-166.148866, 66.137747],\n\t\t\t\t\t\t\t[-166.138305, 66.131966],\n\t\t\t\t\t\t\t[-166.101618, 66.125198],\n\t\t\t\t\t\t\t[-166.087392, 66.119610],\n\t\t\t\t\t\t\t[-166.085179, 66.115369],\n\t\t\t\t\t\t\t[-166.080015, 66.112602],\n\t\t\t\t\t\t\t[-166.046471, 66.107833],\n\t\t\t\t\t\t\t[-166.009898, 66.110750],\n\t\t\t\t\t\t\t[-165.959741, 66.109410],\n\t\t\t\t\t\t\t[-165.925101, 66.111066],\n\t\t\t\t\t\t\t[-165.892999, 66.115767],\n\t\t\t\t\t\t\t[-165.876740, 66.114802],\n\t\t\t\t\t\t\t[-165.845082, 66.107971],\n\t\t\t\t\t\t\t[-165.799096, 66.100823],\n\t\t\t\t\t\t\t[-165.763510, 66.098885],\n\t\t\t\t\t\t\t[-165.758784, 66.092915],\n\t\t\t\t\t\t\t[-165.733616, 66.096231],\n\t\t\t\t\t\t\t[-165.697845, 66.104041],\n\t\t\t\t\t\t\t[-165.693048, 66.103303],\n\t\t\t\t\t\t\t[-165.661901, 66.117944],\n\t\t\t\t\t\t\t[-165.649344, 66.119562],\n\t\t\t\t\t\t\t[-165.646741, 66.118152],\n\t\t\t\t\t\t\t[-165.650220, 66.114746],\n\t\t\t\t\t\t\t[-165.647717, 66.113487],\n\t\t\t\t\t\t\t[-165.630793, 66.117643],\n\t\t\t\t\t\t\t[-165.607237, 66.119397],\n\t\t\t\t\t\t\t[-165.599803, 66.117686],\n\t\t\t\t\t\t\t[-165.588512, 66.119695],\n\t\t\t\t\t\t\t[-165.584292, 66.129489],\n\t\t\t\t\t\t\t[-165.544886, 66.142901],\n\t\t\t\t\t\t\t[-165.544660, 66.151933],\n\t\t\t\t\t\t\t[-165.551682, 66.161584],\n\t\t\t\t\t\t\t[-165.578906, 66.163270],\n\t\t\t\t\t\t\t[-165.594386, 66.168083],\n\t\t\t\t\t\t\t[-165.620879, 66.180572],\n\t\t\t\t\t\t\t[-165.653814, 66.192453],\n\t\t\t\t\t\t\t[-165.690509, 66.202029],\n\t\t\t\t\t\t\t[-165.760518, 66.209561],\n\t\t\t\t\t\t\t[-165.813473, 66.207174],\n\t\t\t\t\t\t\t[-165.848314, 66.211367],\n\t\t\t\t\t\t\t[-165.853291, 66.212684],\n\t\t\t\t\t\t\t[-165.867148, 66.220871],\n\t\t\t\t\t\t\t[-165.874462, 66.227999],\n\t\t\t\t\t\t\t[-165.877514, 66.240309],\n\t\t\t\t\t\t\t[-165.866468, 66.247073],\n\t\t\t\t\t\t\t[-165.853577, 66.263185],\n\t\t\t\t\t\t\t[-165.859933, 66.274220],\n\t\t\t\t\t\t\t[-165.872497, 66.284271],\n\t\t\t\t\t\t\t[-165.880454, 66.295160],\n\t\t\t\t\t\t\t[-165.882129, 66.299766],\n\t\t\t\t\t\t\t[-165.882496, 66.311603],\n\t\t\t\t\t\t\t[-165.869233, 66.316112],\n\t\t\t\t\t\t\t[-165.805030, 66.333310],\n\t\t\t\t\t\t\t[-165.668600, 66.361971],\n\t\t\t\t\t\t\t[-165.407204, 66.420441],\n\t\t\t\t\t\t\t[-165.187082, 66.465154],\n\t\t\t\t\t\t\t[-165.124026, 66.473179],\n\t\t\t\t\t\t\t[-164.711009, 66.542541],\n\t\t\t\t\t\t\t[-164.400727, 66.581110],\n\t\t\t\t\t\t\t[-164.396644, 66.476291],\n\t\t\t\t\t\t\t[-164.319703, 66.475975],\n\t\t\t\t\t\t\t[-164.317790, 66.130579],\n\t\t\t\t\t\t\t[-164.244449, 66.129158],\n\t\t\t\t\t\t\t[-164.246706, 65.782440],\n\t\t\t\t\t\t\t[-163.970931, 65.782923],\n\t\t\t\t\t\t\t[-163.971115, 65.608348],\n\t\t\t\t\t\t\t[-163.758871, 65.608055],\n\t\t\t\t\t\t\t[-163.758001, 65.436206],\n\t\t\t\t\t\t\t[-162.032746, 65.438390],\n\t\t\t\t\t\t\t[-159.804395, 65.435857],\n\t\t\t\t\t\t\t[-159.801012, 65.522686],\n\t\t\t\t\t\t\t[-159.593576, 65.522689],\n\t\t\t\t\t\t\t[-159.386712, 65.523140],\n\t\t\t\t\t\t\t[-159.384765, 65.261674],\n\t\t\t\t\t\t\t[-159.578562, 65.262692],\n\t\t\t\t\t\t\t[-159.576911, 64.923743],\n\t\t\t\t\t\t\t[-159.777177, 64.923088],\n\t\t\t\t\t\t\t[-159.773803, 64.750296],\n\t\t\t\t\t\t\t[-159.978098, 64.748491],\n\t\t\t\t\t\t\t[-159.956447, 64.051022],\n\t\t\t\t\t\t\t[-159.731224, 64.052366],\n\t\t\t\t\t\t\t[-159.699291, 63.792346],\n\t\t\t\t\t\t\t[-159.930773, 63.793808],\n\t\t\t\t\t\t\t[-159.929244, 63.703494],\n\t\t\t\t\t\t\t[-160.103703, 63.702263],\n\t\t\t\t\t\t\t[-160.097874, 63.614393],\n\t\t\t\t\t\t\t[-160.493465, 63.613655],\n\t\t\t\t\t\t\t[-160.494971, 63.537148],\n\t\t\t\t\t\t\t[-160.692051, 63.536618],\n\t\t\t\t\t\t\t[-160.671305, 63.270830],\n\t\t\t\t\t\t\t[-160.847328, 63.269229],\n\t\t\t\t\t\t\t[-160.851144, 63.012689]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US02188\",\n\t\t\t\t\"STATE\": \"02\",\n\t\t\t\t\"COUNTY\": \"188\",\n\t\t\t\t\"NAME\": \"Northwest Arctic\",\n\t\t\t\t\"LSAD\": \"Borough\",\n\t\t\t\t\"CENSUSAREA\": 35572.584000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-159.593576, 65.522689],\n\t\t\t\t\t\t[-159.801012, 65.522686],\n\t\t\t\t\t\t[-159.804395, 65.435857],\n\t\t\t\t\t\t[-162.032746, 65.438390],\n\t\t\t\t\t\t[-163.758001, 65.436206],\n\t\t\t\t\t\t[-163.758871, 65.608055],\n\t\t\t\t\t\t[-163.971115, 65.608348],\n\t\t\t\t\t\t[-163.970931, 65.782923],\n\t\t\t\t\t\t[-164.246706, 65.782440],\n\t\t\t\t\t\t[-164.244449, 66.129158],\n\t\t\t\t\t\t[-164.317790, 66.130579],\n\t\t\t\t\t\t[-164.319703, 66.475975],\n\t\t\t\t\t\t[-164.396644, 66.476291],\n\t\t\t\t\t\t[-164.400727, 66.581110],\n\t\t\t\t\t\t[-164.400724, 66.581110],\n\t\t\t\t\t\t[-164.345015, 66.580834],\n\t\t\t\t\t\t[-164.094554, 66.592281],\n\t\t\t\t\t\t[-163.979581, 66.593953],\n\t\t\t\t\t\t[-163.978095, 66.592616],\n\t\t\t\t\t\t[-163.978492, 66.591012],\n\t\t\t\t\t\t[-163.985713, 66.576085],\n\t\t\t\t\t\t[-163.908341, 66.555970],\n\t\t\t\t\t\t[-163.875235, 66.558248],\n\t\t\t\t\t\t[-163.850476, 66.563102],\n\t\t\t\t\t\t[-163.754171, 66.551284],\n\t\t\t\t\t\t[-163.727179, 66.516388],\n\t\t\t\t\t\t[-163.728308, 66.498552],\n\t\t\t\t\t\t[-163.730247, 66.491372],\n\t\t\t\t\t\t[-163.761967, 66.454874],\n\t\t\t\t\t\t[-163.798687, 66.436875],\n\t\t\t\t\t\t[-163.844221, 66.418978],\n\t\t\t\t\t\t[-163.856359, 66.409296],\n\t\t\t\t\t\t[-163.873106, 66.389015],\n\t\t\t\t\t\t[-163.873096, 66.328550],\n\t\t\t\t\t\t[-163.849163, 66.307639],\n\t\t\t\t\t\t[-163.839825, 66.304079],\n\t\t\t\t\t\t[-163.829977, 66.280398],\n\t\t\t\t\t\t[-163.830077, 66.272000],\n\t\t\t\t\t\t[-163.843108, 66.259869],\n\t\t\t\t\t\t[-163.904813, 66.230303],\n\t\t\t\t\t\t[-163.955901, 66.217170],\n\t\t\t\t\t\t[-164.046937, 66.209404],\n\t\t\t\t\t\t[-164.078765, 66.201764],\n\t\t\t\t\t\t[-164.092715, 66.184537],\n\t\t\t\t\t\t[-164.089237, 66.182338],\n\t\t\t\t\t\t[-164.078677, 66.181019],\n\t\t\t\t\t\t[-164.007503, 66.179386],\n\t\t\t\t\t\t[-163.916551, 66.190494],\n\t\t\t\t\t\t[-163.878306, 66.160279],\n\t\t\t\t\t\t[-163.861406, 66.136665],\n\t\t\t\t\t\t[-163.847401, 66.122106],\n\t\t\t\t\t\t[-163.803580, 66.100059],\n\t\t\t\t\t\t[-163.772467, 66.081922],\n\t\t\t\t\t\t[-163.768357, 66.073662],\n\t\t\t\t\t\t[-163.767510, 66.060803],\n\t\t\t\t\t\t[-163.623921, 66.058281],\n\t\t\t\t\t\t[-163.540115, 66.069921],\n\t\t\t\t\t\t[-163.502704, 66.081165],\n\t\t\t\t\t\t[-163.495845, 66.085388],\n\t\t\t\t\t\t[-163.344759, 66.084937],\n\t\t\t\t\t\t[-163.313843, 66.075287],\n\t\t\t\t\t\t[-163.287768, 66.069229],\n\t\t\t\t\t\t[-163.168568, 66.059290],\n\t\t\t\t\t\t[-163.146726, 66.059487],\n\t\t\t\t\t\t[-163.093003, 66.062960],\n\t\t\t\t\t\t[-163.047140, 66.068327],\n\t\t\t\t\t\t[-162.997473, 66.076845],\n\t\t\t\t\t\t[-162.876016, 66.082833],\n\t\t\t\t\t\t[-162.791232, 66.089138],\n\t\t\t\t\t\t[-162.750705, 66.090160],\n\t\t\t\t\t\t[-162.681304, 66.061574],\n\t\t\t\t\t\t[-162.680204, 66.058129],\n\t\t\t\t\t\t[-162.673584, 66.053685],\n\t\t\t\t\t\t[-162.635985, 66.040366],\n\t\t\t\t\t\t[-162.622284, 66.039526],\n\t\t\t\t\t\t[-162.530755, 66.045062],\n\t\t\t\t\t\t[-162.457670, 66.058579],\n\t\t\t\t\t\t[-162.423726, 66.048984],\n\t\t\t\t\t\t[-162.413452, 66.035085],\n\t\t\t\t\t\t[-162.391892, 66.028724],\n\t\t\t\t\t\t[-162.372147, 66.027985],\n\t\t\t\t\t\t[-162.331284, 66.031403],\n\t\t\t\t\t\t[-162.269670, 66.042104],\n\t\t\t\t\t\t[-162.205889, 66.056753],\n\t\t\t\t\t\t[-162.139516, 66.078819],\n\t\t\t\t\t\t[-162.137424, 66.078547],\n\t\t\t\t\t\t[-162.129709, 66.069487],\n\t\t\t\t\t\t[-162.121788, 66.067391],\n\t\t\t\t\t\t[-162.025701, 66.062829],\n\t\t\t\t\t\t[-161.950043, 66.040302],\n\t\t\t\t\t\t[-161.838018, 66.022582],\n\t\t\t\t\t\t[-161.817091, 66.033089],\n\t\t\t\t\t\t[-161.812306, 66.041688],\n\t\t\t\t\t\t[-161.798585, 66.055317],\n\t\t\t\t\t\t[-161.775537, 66.073732],\n\t\t\t\t\t\t[-161.680577, 66.111588],\n\t\t\t\t\t\t[-161.665300, 66.122177],\n\t\t\t\t\t\t[-161.627008, 66.153194],\n\t\t\t\t\t\t[-161.623983, 66.162082],\n\t\t\t\t\t\t[-161.613943, 66.176693],\n\t\t\t\t\t\t[-161.548429, 66.239912],\n\t\t\t\t\t\t[-161.484539, 66.262426],\n\t\t\t\t\t\t[-161.367875, 66.258653],\n\t\t\t\t\t\t[-161.341189, 66.255100],\n\t\t\t\t\t\t[-161.337269, 66.243163],\n\t\t\t\t\t\t[-161.332120, 66.236431],\n\t\t\t\t\t\t[-161.320778, 66.223591],\n\t\t\t\t\t\t[-161.313025, 66.221051],\n\t\t\t\t\t\t[-161.263655, 66.214154],\n\t\t\t\t\t\t[-161.198971, 66.210949],\n\t\t\t\t\t\t[-161.145397, 66.220179],\n\t\t\t\t\t\t[-161.087342, 66.234208],\n\t\t\t\t\t\t[-161.067871, 66.235164],\n\t\t\t\t\t\t[-161.052732, 66.231018],\n\t\t\t\t\t\t[-161.035866, 66.229437],\n\t\t\t\t\t\t[-161.000026, 66.233126],\n\t\t\t\t\t\t[-160.993965, 66.234444],\n\t\t\t\t\t\t[-160.991066, 66.236816],\n\t\t\t\t\t\t[-160.990275, 66.239715],\n\t\t\t\t\t\t[-160.995905, 66.251962],\n\t\t\t\t\t\t[-160.998540, 66.254935],\n\t\t\t\t\t\t[-161.061034, 66.283804],\n\t\t\t\t\t\t[-161.079328, 66.307126],\n\t\t\t\t\t\t[-161.089161, 66.315140],\n\t\t\t\t\t\t[-161.107995, 66.328367],\n\t\t\t\t\t\t[-161.129512, 66.336248],\n\t\t\t\t\t\t[-161.163100, 66.342291],\n\t\t\t\t\t\t[-161.219834, 66.348918],\n\t\t\t\t\t\t[-161.360743, 66.375943],\n\t\t\t\t\t\t[-161.525554, 66.397046],\n\t\t\t\t\t\t[-161.694404, 66.396174],\n\t\t\t\t\t\t[-161.817538, 66.360815],\n\t\t\t\t\t\t[-161.912946, 66.344436],\n\t\t\t\t\t\t[-161.916309, 66.349481],\n\t\t\t\t\t\t[-161.880900, 66.398763],\n\t\t\t\t\t\t[-161.872447, 66.414132],\n\t\t\t\t\t\t[-161.863387, 66.440783],\n\t\t\t\t\t\t[-161.864156, 66.488195],\n\t\t\t\t\t\t[-161.874880, 66.511446],\n\t\t\t\t\t\t[-162.029043, 66.586504],\n\t\t\t\t\t\t[-162.091453, 66.605963],\n\t\t\t\t\t\t[-162.097910, 66.609863],\n\t\t\t\t\t\t[-162.105641, 66.622584],\n\t\t\t\t\t\t[-162.113311, 66.639596],\n\t\t\t\t\t\t[-162.124348, 66.651291],\n\t\t\t\t\t\t[-162.140377, 66.664737],\n\t\t\t\t\t\t[-162.175398, 66.687789],\n\t\t\t\t\t\t[-162.228635, 66.709770],\n\t\t\t\t\t\t[-162.268767, 66.717905],\n\t\t\t\t\t\t[-162.349774, 66.726713],\n\t\t\t\t\t\t[-162.422414, 66.731581],\n\t\t\t\t\t\t[-162.501415, 66.742503],\n\t\t\t\t\t\t[-162.500520, 66.749751],\n\t\t\t\t\t\t[-162.502502, 66.758875],\n\t\t\t\t\t\t[-162.512617, 66.777733],\n\t\t\t\t\t\t[-162.544381, 66.804872],\n\t\t\t\t\t\t[-162.572224, 66.825364],\n\t\t\t\t\t\t[-162.594237, 66.837647],\n\t\t\t\t\t\t[-162.614738, 66.846476],\n\t\t\t\t\t\t[-162.621564, 66.850860],\n\t\t\t\t\t\t[-162.624945, 66.855031],\n\t\t\t\t\t\t[-162.626696, 66.859572],\n\t\t\t\t\t\t[-162.623054, 66.874325],\n\t\t\t\t\t\t[-162.614590, 66.885941],\n\t\t\t\t\t\t[-162.601052, 66.898455],\n\t\t\t\t\t\t[-162.582856, 66.904292],\n\t\t\t\t\t\t[-162.497438, 66.919860],\n\t\t\t\t\t\t[-162.346352, 66.934792],\n\t\t\t\t\t\t[-162.281116, 66.915679],\n\t\t\t\t\t\t[-162.271769, 66.904144],\n\t\t\t\t\t\t[-162.228675, 66.866623],\n\t\t\t\t\t\t[-162.117304, 66.798482],\n\t\t\t\t\t\t[-162.096878, 66.788500],\n\t\t\t\t\t\t[-162.073714, 66.783324],\n\t\t\t\t\t\t[-162.049123, 66.780639],\n\t\t\t\t\t\t[-162.013623, 66.779406],\n\t\t\t\t\t\t[-162.011455, 66.759063],\n\t\t\t\t\t\t[-162.029615, 66.734580],\n\t\t\t\t\t\t[-162.041314, 66.723764],\n\t\t\t\t\t\t[-162.058825, 66.716253],\n\t\t\t\t\t\t[-162.068253, 66.709857],\n\t\t\t\t\t\t[-162.074634, 66.703681],\n\t\t\t\t\t\t[-162.081515, 66.693052],\n\t\t\t\t\t\t[-162.078010, 66.664048],\n\t\t\t\t\t\t[-162.073620, 66.651217],\n\t\t\t\t\t\t[-162.069068, 66.645700],\n\t\t\t\t\t\t[-162.033156, 66.631585],\n\t\t\t\t\t\t[-161.968863, 66.602611],\n\t\t\t\t\t\t[-161.953413, 66.592365],\n\t\t\t\t\t\t[-161.932642, 66.572547],\n\t\t\t\t\t\t[-161.925440, 66.561215],\n\t\t\t\t\t\t[-161.915856, 66.551339],\n\t\t\t\t\t\t[-161.877098, 66.536877],\n\t\t\t\t\t\t[-161.765368, 66.496934],\n\t\t\t\t\t\t[-161.624334, 66.450143],\n\t\t\t\t\t\t[-161.574129, 66.438566],\n\t\t\t\t\t\t[-161.516449, 66.441839],\n\t\t\t\t\t\t[-161.435312, 66.454162],\n\t\t\t\t\t\t[-161.326349, 66.478371],\n\t\t\t\t\t\t[-161.279803, 66.505179],\n\t\t\t\t\t\t[-161.293210, 66.520591],\n\t\t\t\t\t\t[-161.399006, 66.523529],\n\t\t\t\t\t\t[-161.454092, 66.522205],\n\t\t\t\t\t\t[-161.469227, 66.522843],\n\t\t\t\t\t\t[-161.483604, 66.525626],\n\t\t\t\t\t\t[-161.493509, 66.530977],\n\t\t\t\t\t\t[-161.494988, 66.534443],\n\t\t\t\t\t\t[-161.486308, 66.538037],\n\t\t\t\t\t\t[-161.482869, 66.543724],\n\t\t\t\t\t\t[-161.490400, 66.560844],\n\t\t\t\t\t\t[-161.541756, 66.581379],\n\t\t\t\t\t\t[-161.598953, 66.593181],\n\t\t\t\t\t\t[-161.665368, 66.610433],\n\t\t\t\t\t\t[-161.693125, 66.620562],\n\t\t\t\t\t\t[-161.866180, 66.704978],\n\t\t\t\t\t\t[-161.881671, 66.716796],\n\t\t\t\t\t\t[-161.861540, 66.797076],\n\t\t\t\t\t\t[-161.846258, 66.813647],\n\t\t\t\t\t\t[-161.824170, 66.817889],\n\t\t\t\t\t\t[-161.796307, 66.833126],\n\t\t\t\t\t\t[-161.785495, 66.846547],\n\t\t\t\t\t\t[-161.782218, 66.859956],\n\t\t\t\t\t\t[-161.719587, 66.916898],\n\t\t\t\t\t\t[-161.692146, 66.945033],\n\t\t\t\t\t\t[-161.685775, 66.955794],\n\t\t\t\t\t\t[-161.688506, 66.959799],\n\t\t\t\t\t\t[-161.686280, 66.961367],\n\t\t\t\t\t\t[-161.674359, 66.961965],\n\t\t\t\t\t\t[-161.566678, 66.934775],\n\t\t\t\t\t\t[-161.489169, 66.936950],\n\t\t\t\t\t\t[-161.485121, 66.945647],\n\t\t\t\t\t\t[-161.485383, 66.960818],\n\t\t\t\t\t\t[-161.505747, 66.974314],\n\t\t\t\t\t\t[-161.530525, 66.984951],\n\t\t\t\t\t\t[-161.622160, 67.008146],\n\t\t\t\t\t\t[-161.697392, 67.010849],\n\t\t\t\t\t\t[-161.711715, 67.001044],\n\t\t\t\t\t\t[-161.759641, 67.030572],\n\t\t\t\t\t\t[-161.799175, 67.047502],\n\t\t\t\t\t\t[-161.810256, 67.050281],\n\t\t\t\t\t\t[-161.836325, 67.051777],\n\t\t\t\t\t\t[-161.850188, 67.052186],\n\t\t\t\t\t\t[-161.893702, 67.049075],\n\t\t\t\t\t\t[-162.123181, 67.025790],\n\t\t\t\t\t\t[-162.211633, 67.006710],\n\t\t\t\t\t\t[-162.233964, 66.999568],\n\t\t\t\t\t\t[-162.234302, 66.994581],\n\t\t\t\t\t\t[-162.239230, 66.993814],\n\t\t\t\t\t\t[-162.353954, 66.995128],\n\t\t\t\t\t\t[-162.385074, 66.991235],\n\t\t\t\t\t\t[-162.415866, 66.984710],\n\t\t\t\t\t\t[-162.432615, 66.985089],\n\t\t\t\t\t\t[-162.449219, 66.988391],\n\t\t\t\t\t\t[-162.462616, 66.994323],\n\t\t\t\t\t\t[-162.466855, 66.999339],\n\t\t\t\t\t\t[-162.461822, 67.004426],\n\t\t\t\t\t\t[-162.465522, 67.026629],\n\t\t\t\t\t\t[-162.472765, 67.038368],\n\t\t\t\t\t\t[-162.481257, 67.043113],\n\t\t\t\t\t\t[-162.490552, 67.043331],\n\t\t\t\t\t\t[-162.504523, 67.039629],\n\t\t\t\t\t\t[-162.514878, 67.031069],\n\t\t\t\t\t\t[-162.519046, 67.016552],\n\t\t\t\t\t\t[-162.603562, 67.010490],\n\t\t\t\t\t\t[-162.640260, 67.010869],\n\t\t\t\t\t\t[-162.654094, 67.013099],\n\t\t\t\t\t\t[-162.661661, 67.018890],\n\t\t\t\t\t\t[-162.660733, 67.026771],\n\t\t\t\t\t\t[-162.658706, 67.030335],\n\t\t\t\t\t\t[-162.660740, 67.033884],\n\t\t\t\t\t\t[-162.676656, 67.046789],\n\t\t\t\t\t\t[-162.699069, 67.055476],\n\t\t\t\t\t\t[-162.782401, 67.044467],\n\t\t\t\t\t\t[-162.830420, 67.036173],\n\t\t\t\t\t\t[-162.839402, 67.032956],\n\t\t\t\t\t\t[-162.850964, 67.017922],\n\t\t\t\t\t\t[-162.865944, 67.012543],\n\t\t\t\t\t\t[-162.901348, 67.006833],\n\t\t\t\t\t\t[-163.097854, 67.041191],\n\t\t\t\t\t\t[-163.299266, 67.060748],\n\t\t\t\t\t\t[-163.399048, 67.074167],\n\t\t\t\t\t\t[-163.441198, 67.081459],\n\t\t\t\t\t\t[-163.495201, 67.087503],\n\t\t\t\t\t\t[-163.577010, 67.092491],\n\t\t\t\t\t\t[-163.624959, 67.099391],\n\t\t\t\t\t\t[-163.698870, 67.114443],\n\t\t\t\t\t\t[-163.730671, 67.123774],\n\t\t\t\t\t\t[-163.741345, 67.129123],\n\t\t\t\t\t\t[-163.737724, 67.136802],\n\t\t\t\t\t\t[-163.736901, 67.163230],\n\t\t\t\t\t\t[-163.737464, 67.184754],\n\t\t\t\t\t\t[-163.740820, 67.209960],\n\t\t\t\t\t\t[-163.758588, 67.256439],\n\t\t\t\t\t\t[-163.822185, 67.349812],\n\t\t\t\t\t\t[-163.853584, 67.388101],\n\t\t\t\t\t\t[-163.878781, 67.416125],\n\t\t\t\t\t\t[-164.007032, 67.535699],\n\t\t\t\t\t\t[-164.079514, 67.585856],\n\t\t\t\t\t\t[-164.108716, 67.601993],\n\t\t\t\t\t\t[-164.144380, 67.617228],\n\t\t\t\t\t\t[-164.209816, 67.639079],\n\t\t\t\t\t\t[-164.533937, 67.725606],\n\t\t\t\t\t\t[-164.778331, 67.820866],\n\t\t\t\t\t\t[-164.907297, 67.867844],\n\t\t\t\t\t\t[-165.057516, 67.921694],\n\t\t\t\t\t\t[-165.129567, 67.941833],\n\t\t\t\t\t\t[-165.190915, 67.966071],\n\t\t\t\t\t\t[-165.227228, 67.985322],\n\t\t\t\t\t\t[-165.231620, 67.994512],\n\t\t\t\t\t\t[-165.240848, 67.998714],\n\t\t\t\t\t\t[-165.359980, 68.028054],\n\t\t\t\t\t\t[-164.494202, 68.024330],\n\t\t\t\t\t\t[-164.499871, 68.227513],\n\t\t\t\t\t\t[-163.045230, 68.228721],\n\t\t\t\t\t\t[-162.719806, 68.232729],\n\t\t\t\t\t\t[-162.720616, 68.301027],\n\t\t\t\t\t\t[-161.995486, 68.292164],\n\t\t\t\t\t\t[-161.993148, 68.223274],\n\t\t\t\t\t\t[-161.516254, 68.220812],\n\t\t\t\t\t\t[-161.519964, 68.289554],\n\t\t\t\t\t\t[-161.095913, 68.289368],\n\t\t\t\t\t\t[-161.089535, 68.221231],\n\t\t\t\t\t\t[-160.118340, 68.220066],\n\t\t\t\t\t\t[-160.127816, 68.287308],\n\t\t\t\t\t\t[-159.722546, 68.284089],\n\t\t\t\t\t\t[-159.716147, 68.216796],\n\t\t\t\t\t\t[-158.274727, 68.211915],\n\t\t\t\t\t\t[-158.100103, 68.217807],\n\t\t\t\t\t\t[-157.155836, 68.210442],\n\t\t\t\t\t\t[-157.150299, 68.120781],\n\t\t\t\t\t\t[-156.238107, 68.130761],\n\t\t\t\t\t\t[-156.235534, 68.028751],\n\t\t\t\t\t\t[-155.299012, 68.029941],\n\t\t\t\t\t\t[-155.298020, 68.001771],\n\t\t\t\t\t\t[-155.306992, 67.864033],\n\t\t\t\t\t\t[-155.352249, 67.775553],\n\t\t\t\t\t\t[-155.129726, 67.774970],\n\t\t\t\t\t\t[-155.132355, 67.686612],\n\t\t\t\t\t\t[-154.904736, 67.688032],\n\t\t\t\t\t\t[-154.911027, 67.601857],\n\t\t\t\t\t\t[-154.686696, 67.602173],\n\t\t\t\t\t\t[-154.688359, 67.512481],\n\t\t\t\t\t\t[-154.747501, 67.512680],\n\t\t\t\t\t\t[-154.748759, 67.254419],\n\t\t\t\t\t\t[-154.306093, 67.251225],\n\t\t\t\t\t\t[-154.302303, 67.160767],\n\t\t\t\t\t\t[-154.145220, 67.161925],\n\t\t\t\t\t\t[-154.141599, 66.804853],\n\t\t\t\t\t\t[-154.201542, 66.804621],\n\t\t\t\t\t\t[-154.202144, 66.716586],\n\t\t\t\t\t\t[-154.862595, 66.716910],\n\t\t\t\t\t\t[-154.865962, 66.567723],\n\t\t\t\t\t\t[-155.513931, 66.569279],\n\t\t\t\t\t\t[-155.554608, 66.481912],\n\t\t\t\t\t\t[-155.562430, 66.309487],\n\t\t\t\t\t\t[-155.981123, 66.310448],\n\t\t\t\t\t\t[-155.981539, 66.398030],\n\t\t\t\t\t\t[-156.197173, 66.394758],\n\t\t\t\t\t\t[-156.196191, 66.479446],\n\t\t\t\t\t\t[-156.624296, 66.478785],\n\t\t\t\t\t\t[-156.626712, 66.304931],\n\t\t\t\t\t\t[-157.051530, 66.302054],\n\t\t\t\t\t\t[-157.051694, 66.478750],\n\t\t\t\t\t\t[-157.892416, 66.476795],\n\t\t\t\t\t\t[-157.894181, 66.125284],\n\t\t\t\t\t\t[-158.965461, 66.123439],\n\t\t\t\t\t\t[-158.966298, 65.957306],\n\t\t\t\t\t\t[-159.595187, 65.958090],\n\t\t\t\t\t\t[-159.593576, 65.522689]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US02198\",\n\t\t\t\t\"STATE\": \"02\",\n\t\t\t\t\"COUNTY\": \"198\",\n\t\t\t\t\"NAME\": \"Prince of Wales-Hyder\",\n\t\t\t\t\"LSAD\": \"CA\",\n\t\t\t\t\"CENSUSAREA\": 3922.873000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-131.569560, 55.284114],\n\t\t\t\t\t\t\t[-131.562650, 55.284012],\n\t\t\t\t\t\t\t[-131.550916, 55.280915],\n\t\t\t\t\t\t\t[-131.516651, 55.261645],\n\t\t\t\t\t\t\t[-131.492640, 55.257749],\n\t\t\t\t\t\t\t[-131.482252, 55.254110],\n\t\t\t\t\t\t\t[-131.481522, 55.244448],\n\t\t\t\t\t\t\t[-131.462701, 55.223438],\n\t\t\t\t\t\t\t[-131.445293, 55.216977],\n\t\t\t\t\t\t\t[-131.430501, 55.218175],\n\t\t\t\t\t\t\t[-131.416951, 55.217298],\n\t\t\t\t\t\t\t[-131.397690, 55.210916],\n\t\t\t\t\t\t\t[-131.355642, 55.182945],\n\t\t\t\t\t\t\t[-131.341407, 55.165659],\n\t\t\t\t\t\t\t[-131.352654, 55.164822],\n\t\t\t\t\t\t\t[-131.362319, 55.155896],\n\t\t\t\t\t\t\t[-131.350575, 55.067042],\n\t\t\t\t\t\t\t[-131.356314, 55.041211],\n\t\t\t\t\t\t\t[-131.378572, 55.017308],\n\t\t\t\t\t\t\t[-131.388569, 55.012222],\n\t\t\t\t\t\t\t[-131.484995, 55.010454],\n\t\t\t\t\t\t\t[-131.498863, 55.016138],\n\t\t\t\t\t\t\t[-131.507590, 55.025427],\n\t\t\t\t\t\t\t[-131.508449, 55.029166],\n\t\t\t\t\t\t\t[-131.532140, 55.037945],\n\t\t\t\t\t\t\t[-131.579882, 55.017576],\n\t\t\t\t\t\t\t[-131.590063, 55.007745],\n\t\t\t\t\t\t\t[-131.605661, 55.004403],\n\t\t\t\t\t\t\t[-131.615632, 55.006999],\n\t\t\t\t\t\t\t[-131.641035, 55.026585],\n\t\t\t\t\t\t\t[-131.646276, 55.035579],\n\t\t\t\t\t\t\t[-131.620745, 55.049259],\n\t\t\t\t\t\t\t[-131.589387, 55.088940],\n\t\t\t\t\t\t\t[-131.605302, 55.107436],\n\t\t\t\t\t\t\t[-131.594978, 55.125502],\n\t\t\t\t\t\t\t[-131.577773, 55.131094],\n\t\t\t\t\t\t\t[-131.558603, 55.125508],\n\t\t\t\t\t\t\t[-131.548093, 55.143138],\n\t\t\t\t\t\t\t[-131.565677, 55.155354],\n\t\t\t\t\t\t\t[-131.588368, 55.169961],\n\t\t\t\t\t\t\t[-131.598454, 55.179566],\n\t\t\t\t\t\t\t[-131.607383, 55.240437],\n\t\t\t\t\t\t\t[-131.589070, 55.273951],\n\t\t\t\t\t\t\t[-131.569560, 55.284114]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-133.344847, 55.569327],\n\t\t\t\t\t\t\t[-133.307406, 55.542249],\n\t\t\t\t\t\t\t[-133.292346, 55.539736],\n\t\t\t\t\t\t\t[-133.285317, 55.535315],\n\t\t\t\t\t\t\t[-133.281917, 55.524486],\n\t\t\t\t\t\t\t[-133.289854, 55.501870],\n\t\t\t\t\t\t\t[-133.305747, 55.484115],\n\t\t\t\t\t\t\t[-133.358993, 55.453832],\n\t\t\t\t\t\t\t[-133.373595, 55.460656],\n\t\t\t\t\t\t\t[-133.391243, 55.471979],\n\t\t\t\t\t\t\t[-133.396511, 55.473169],\n\t\t\t\t\t\t\t[-133.426516, 55.466702],\n\t\t\t\t\t\t\t[-133.474054, 55.437155],\n\t\t\t\t\t\t\t[-133.465300, 55.423370],\n\t\t\t\t\t\t\t[-133.425823, 55.425511],\n\t\t\t\t\t\t\t[-133.416649, 55.422146],\n\t\t\t\t\t\t\t[-133.412524, 55.417560],\n\t\t\t\t\t\t\t[-133.411582, 55.406683],\n\t\t\t\t\t\t\t[-133.419384, 55.386105],\n\t\t\t\t\t\t\t[-133.427366, 55.381832],\n\t\t\t\t\t\t\t[-133.446281, 55.382175],\n\t\t\t\t\t\t\t[-133.497028, 55.368159],\n\t\t\t\t\t\t\t[-133.576808, 55.324795],\n\t\t\t\t\t\t\t[-133.595805, 55.293766],\n\t\t\t\t\t\t\t[-133.603491, 55.271739],\n\t\t\t\t\t\t\t[-133.609073, 55.241486],\n\t\t\t\t\t\t\t[-133.612780, 55.239737],\n\t\t\t\t\t\t\t[-133.623457, 55.242571],\n\t\t\t\t\t\t\t[-133.634509, 55.250043],\n\t\t\t\t\t\t\t[-133.690174, 55.304409],\n\t\t\t\t\t\t\t[-133.690944, 55.308703],\n\t\t\t\t\t\t\t[-133.689159, 55.320285],\n\t\t\t\t\t\t\t[-133.672243, 55.326765],\n\t\t\t\t\t\t\t[-133.647725, 55.345480],\n\t\t\t\t\t\t\t[-133.633006, 55.361299],\n\t\t\t\t\t\t\t[-133.622422, 55.396474],\n\t\t\t\t\t\t\t[-133.636291, 55.428423],\n\t\t\t\t\t\t\t[-133.739077, 55.472323],\n\t\t\t\t\t\t\t[-133.749371, 55.471818],\n\t\t\t\t\t\t\t[-133.764347, 55.468593],\n\t\t\t\t\t\t\t[-133.789055, 55.457892],\n\t\t\t\t\t\t\t[-133.759130, 55.537371],\n\t\t\t\t\t\t\t[-133.752870, 55.544282],\n\t\t\t\t\t\t\t[-133.733029, 55.558757],\n\t\t\t\t\t\t\t[-133.615623, 55.550776],\n\t\t\t\t\t\t\t[-133.584326, 55.539707],\n\t\t\t\t\t\t\t[-133.582005, 55.537363],\n\t\t\t\t\t\t\t[-133.590163, 55.507236],\n\t\t\t\t\t\t\t[-133.595632, 55.501483],\n\t\t\t\t\t\t\t[-133.611671, 55.495585],\n\t\t\t\t\t\t\t[-133.624912, 55.494674],\n\t\t\t\t\t\t\t[-133.632978, 55.491664],\n\t\t\t\t\t\t\t[-133.644202, 55.470815],\n\t\t\t\t\t\t\t[-133.644565, 55.464680],\n\t\t\t\t\t\t\t[-133.638673, 55.458902],\n\t\t\t\t\t\t\t[-133.618367, 55.457045],\n\t\t\t\t\t\t\t[-133.573698, 55.472083],\n\t\t\t\t\t\t\t[-133.544088, 55.491784],\n\t\t\t\t\t\t\t[-133.542322, 55.507084],\n\t\t\t\t\t\t\t[-133.529120, 55.527700],\n\t\t\t\t\t\t\t[-133.525646, 55.529097],\n\t\t\t\t\t\t\t[-133.480965, 55.512738],\n\t\t\t\t\t\t\t[-133.443670, 55.518639],\n\t\t\t\t\t\t\t[-133.454576, 55.532423],\n\t\t\t\t\t\t\t[-133.442660, 55.553012],\n\t\t\t\t\t\t\t[-133.436102, 55.560872],\n\t\t\t\t\t\t\t[-133.413499, 55.570384],\n\t\t\t\t\t\t\t[-133.344847, 55.569327]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-133.624918, 56.343906],\n\t\t\t\t\t\t\t[-133.593728, 56.352192],\n\t\t\t\t\t\t\t[-133.582116, 56.352506],\n\t\t\t\t\t\t\t[-133.418370, 56.332132],\n\t\t\t\t\t\t\t[-133.328577, 56.332797],\n\t\t\t\t\t\t\t[-133.284826, 56.327118],\n\t\t\t\t\t\t\t[-133.235354, 56.324275],\n\t\t\t\t\t\t\t[-133.197009, 56.333016],\n\t\t\t\t\t\t\t[-133.163212, 56.317445],\n\t\t\t\t\t\t\t[-133.094977, 56.250583],\n\t\t\t\t\t\t\t[-133.078230, 56.246802],\n\t\t\t\t\t\t\t[-133.071435, 56.238484],\n\t\t\t\t\t\t\t[-133.040979, 56.184536],\n\t\t\t\t\t\t\t[-133.052004, 56.155585],\n\t\t\t\t\t\t\t[-133.059994, 56.150761],\n\t\t\t\t\t\t\t[-133.062175, 56.141163],\n\t\t\t\t\t\t\t[-133.061465, 56.135305],\n\t\t\t\t\t\t\t[-133.055520, 56.125258],\n\t\t\t\t\t\t\t[-132.927305, 56.034459],\n\t\t\t\t\t\t\t[-132.897675, 56.020166],\n\t\t\t\t\t\t\t[-132.837592, 56.024327],\n\t\t\t\t\t\t\t[-132.635291, 55.921766],\n\t\t\t\t\t\t\t[-132.618464, 55.911476],\n\t\t\t\t\t\t\t[-132.615103, 55.908082],\n\t\t\t\t\t\t\t[-132.614757, 55.899635],\n\t\t\t\t\t\t\t[-132.592085, 55.877152],\n\t\t\t\t\t\t\t[-132.543398, 55.845927],\n\t\t\t\t\t\t\t[-132.504800, 55.815166],\n\t\t\t\t\t\t\t[-132.470697, 55.782162],\n\t\t\t\t\t\t\t[-132.461281, 55.683400],\n\t\t\t\t\t\t\t[-132.462531, 55.673854],\n\t\t\t\t\t\t\t[-132.448855, 55.667337],\n\t\t\t\t\t\t\t[-132.415237, 55.667263],\n\t\t\t\t\t\t\t[-132.394266, 55.669114],\n\t\t\t\t\t\t\t[-132.382505, 55.665336],\n\t\t\t\t\t\t\t[-132.358558, 55.648759],\n\t\t\t\t\t\t\t[-132.332401, 55.595071],\n\t\t\t\t\t\t\t[-132.329280, 55.578936],\n\t\t\t\t\t\t\t[-132.301119, 55.550960],\n\t\t\t\t\t\t\t[-132.240921, 55.526533],\n\t\t\t\t\t\t\t[-132.198289, 55.513045],\n\t\t\t\t\t\t\t[-132.188771, 55.508443],\n\t\t\t\t\t\t\t[-132.146062, 55.470346],\n\t\t\t\t\t\t\t[-132.142649, 55.460967],\n\t\t\t\t\t\t\t[-132.142945, 55.457941],\n\t\t\t\t\t\t\t[-132.164757, 55.451213],\n\t\t\t\t\t\t\t[-132.178610, 55.452829],\n\t\t\t\t\t\t\t[-132.219413, 55.472211],\n\t\t\t\t\t\t\t[-132.230752, 55.479944],\n\t\t\t\t\t\t\t[-132.231936, 55.483960],\n\t\t\t\t\t\t\t[-132.247327, 55.492951],\n\t\t\t\t\t\t\t[-132.315773, 55.514547],\n\t\t\t\t\t\t\t[-132.325728, 55.515395],\n\t\t\t\t\t\t\t[-132.342101, 55.504670],\n\t\t\t\t\t\t\t[-132.318570, 55.469208],\n\t\t\t\t\t\t\t[-132.288585, 55.451365],\n\t\t\t\t\t\t\t[-132.281269, 55.444189],\n\t\t\t\t\t\t\t[-132.284442, 55.442173],\n\t\t\t\t\t\t\t[-132.303329, 55.438268],\n\t\t\t\t\t\t\t[-132.419340, 55.432054],\n\t\t\t\t\t\t\t[-132.470036, 55.427028],\n\t\t\t\t\t\t\t[-132.479688, 55.420918],\n\t\t\t\t\t\t\t[-132.475532, 55.418062],\n\t\t\t\t\t\t\t[-132.454974, 55.413600],\n\t\t\t\t\t\t\t[-132.390782, 55.401739],\n\t\t\t\t\t\t\t[-132.273503, 55.419189],\n\t\t\t\t\t\t\t[-132.258056, 55.416142],\n\t\t\t\t\t\t\t[-132.225960, 55.374919],\n\t\t\t\t\t\t\t[-132.166857, 55.363039],\n\t\t\t\t\t\t\t[-132.149864, 55.328637],\n\t\t\t\t\t\t\t[-132.126398, 55.288418],\n\t\t\t\t\t\t\t[-132.115561, 55.281237],\n\t\t\t\t\t\t\t[-132.098531, 55.280560],\n\t\t\t\t\t\t\t[-132.102716, 55.268175],\n\t\t\t\t\t\t\t[-132.109531, 55.260240],\n\t\t\t\t\t\t\t[-132.142742, 55.238212],\n\t\t\t\t\t\t\t[-132.164031, 55.237617],\n\t\t\t\t\t\t\t[-132.214912, 55.245700],\n\t\t\t\t\t\t\t[-132.229963, 55.238080],\n\t\t\t\t\t\t\t[-132.214353, 55.222562],\n\t\t\t\t\t\t\t[-132.207431, 55.218273],\n\t\t\t\t\t\t\t[-132.127370, 55.199570],\n\t\t\t\t\t\t\t[-132.104376, 55.200899],\n\t\t\t\t\t\t\t[-132.088127, 55.206516],\n\t\t\t\t\t\t\t[-132.075095, 55.222390],\n\t\t\t\t\t\t\t[-132.072751, 55.233718],\n\t\t\t\t\t\t\t[-132.078869, 55.240335],\n\t\t\t\t\t\t\t[-132.075924, 55.246276],\n\t\t\t\t\t\t\t[-132.061625, 55.260052],\n\t\t\t\t\t\t\t[-132.037122, 55.275144],\n\t\t\t\t\t\t\t[-132.028163, 55.276950],\n\t\t\t\t\t\t\t[-132.003500, 55.265254],\n\t\t\t\t\t\t\t[-131.995908, 55.259054],\n\t\t\t\t\t\t\t[-131.979818, 55.211787],\n\t\t\t\t\t\t\t[-131.977397, 55.180949],\n\t\t\t\t\t\t\t[-131.988815, 55.165464],\n\t\t\t\t\t\t\t[-132.031417, 55.151671],\n\t\t\t\t\t\t\t[-132.039009, 55.144070],\n\t\t\t\t\t\t\t[-132.040874, 55.127326],\n\t\t\t\t\t\t\t[-132.038978, 55.125011],\n\t\t\t\t\t\t\t[-132.016932, 55.120971],\n\t\t\t\t\t\t\t[-132.039002, 55.086962],\n\t\t\t\t\t\t\t[-132.094024, 55.039452],\n\t\t\t\t\t\t\t[-132.154061, 55.018197],\n\t\t\t\t\t\t\t[-132.168076, 55.015574],\n\t\t\t\t\t\t\t[-132.180334, 55.015557],\n\t\t\t\t\t\t\t[-132.196215, 55.008047],\n\t\t\t\t\t\t\t[-132.197614, 55.005158],\n\t\t\t\t\t\t\t[-132.192581, 54.989655],\n\t\t\t\t\t\t\t[-132.143263, 54.984633],\n\t\t\t\t\t\t\t[-132.135544, 54.985976],\n\t\t\t\t\t\t\t[-132.072544, 55.016956],\n\t\t\t\t\t\t\t[-132.039217, 55.036765],\n\t\t\t\t\t\t\t[-132.028288, 55.038672],\n\t\t\t\t\t\t\t[-132.000449, 55.035712],\n\t\t\t\t\t\t\t[-131.984592, 55.027978],\n\t\t\t\t\t\t\t[-131.982890, 54.853068],\n\t\t\t\t\t\t\t[-131.976847, 54.848894],\n\t\t\t\t\t\t\t[-131.965904, 54.835539],\n\t\t\t\t\t\t\t[-131.957382, 54.804279],\n\t\t\t\t\t\t\t[-131.957914, 54.791239],\n\t\t\t\t\t\t\t[-131.999591, 54.731975],\n\t\t\t\t\t\t\t[-132.018657, 54.710109],\n\t\t\t\t\t\t\t[-132.029747, 54.701189],\n\t\t\t\t\t\t\t[-132.142277, 54.691674],\n\t\t\t\t\t\t\t[-132.165182, 54.694050],\n\t\t\t\t\t\t\t[-132.179635, 54.705898],\n\t\t\t\t\t\t\t[-132.199566, 54.715444],\n\t\t\t\t\t\t\t[-132.256092, 54.734617],\n\t\t\t\t\t\t\t[-132.263100, 54.734312],\n\t\t\t\t\t\t\t[-132.279597, 54.728230],\n\t\t\t\t\t\t\t[-132.280701, 54.726184],\n\t\t\t\t\t\t\t[-132.280103, 54.715988],\n\t\t\t\t\t\t\t[-132.281803, 54.715290],\n\t\t\t\t\t\t\t[-132.307943, 54.718714],\n\t\t\t\t\t\t\t[-132.351004, 54.818182],\n\t\t\t\t\t\t\t[-132.350629, 54.821314],\n\t\t\t\t\t\t\t[-132.341009, 54.826718],\n\t\t\t\t\t\t\t[-132.332661, 54.826322],\n\t\t\t\t\t\t\t[-132.314146, 54.835120],\n\t\t\t\t\t\t\t[-132.309213, 54.847534],\n\t\t\t\t\t\t\t[-132.387494, 54.913664],\n\t\t\t\t\t\t\t[-132.484579, 54.899301],\n\t\t\t\t\t\t\t[-132.558390, 54.932612],\n\t\t\t\t\t\t\t[-132.581367, 54.946005],\n\t\t\t\t\t\t\t[-132.609786, 54.965728],\n\t\t\t\t\t\t\t[-132.612531, 54.969924],\n\t\t\t\t\t\t\t[-132.614836, 54.980095],\n\t\t\t\t\t\t\t[-132.609900, 54.991517],\n\t\t\t\t\t\t\t[-132.598557, 54.990301],\n\t\t\t\t\t\t\t[-132.577830, 54.994234],\n\t\t\t\t\t\t\t[-132.575001, 54.998317],\n\t\t\t\t\t\t\t[-132.541802, 55.097764],\n\t\t\t\t\t\t\t[-132.548994, 55.113556],\n\t\t\t\t\t\t\t[-132.550502, 55.114247],\n\t\t\t\t\t\t\t[-132.561819, 55.114897],\n\t\t\t\t\t\t\t[-132.594568, 55.105378],\n\t\t\t\t\t\t\t[-132.619912, 55.069094],\n\t\t\t\t\t\t\t[-132.624575, 55.061352],\n\t\t\t\t\t\t\t[-132.624296, 55.056163],\n\t\t\t\t\t\t\t[-132.626687, 55.053314],\n\t\t\t\t\t\t\t[-132.630865, 55.052946],\n\t\t\t\t\t\t\t[-132.633305, 55.054954],\n\t\t\t\t\t\t\t[-132.637866, 55.073602],\n\t\t\t\t\t\t\t[-132.624518, 55.114419],\n\t\t\t\t\t\t\t[-132.606895, 55.141722],\n\t\t\t\t\t\t\t[-132.598675, 55.150482],\n\t\t\t\t\t\t\t[-132.591084, 55.155695],\n\t\t\t\t\t\t\t[-132.587868, 55.155971],\n\t\t\t\t\t\t\t[-132.581133, 55.166076],\n\t\t\t\t\t\t\t[-132.605219, 55.194064],\n\t\t\t\t\t\t\t[-132.620123, 55.199617],\n\t\t\t\t\t\t\t[-132.637926, 55.186077],\n\t\t\t\t\t\t\t[-132.630049, 55.177618],\n\t\t\t\t\t\t\t[-132.629643, 55.174232],\n\t\t\t\t\t\t\t[-132.635758, 55.152514],\n\t\t\t\t\t\t\t[-132.663719, 55.143932],\n\t\t\t\t\t\t\t[-132.695227, 55.137711],\n\t\t\t\t\t\t\t[-132.735645, 55.134218],\n\t\t\t\t\t\t\t[-132.712195, 55.098736],\n\t\t\t\t\t\t\t[-132.684005, 55.045604],\n\t\t\t\t\t\t\t[-132.689667, 55.027901],\n\t\t\t\t\t\t\t[-132.692917, 55.025060],\n\t\t\t\t\t\t\t[-132.748854, 54.996007],\n\t\t\t\t\t\t\t[-132.813743, 55.010987],\n\t\t\t\t\t\t\t[-132.864117, 55.024833],\n\t\t\t\t\t\t\t[-132.916414, 55.044465],\n\t\t\t\t\t\t\t[-132.926772, 55.055023],\n\t\t\t\t\t\t\t[-132.932293, 55.070199],\n\t\t\t\t\t\t\t[-132.931172, 55.074154],\n\t\t\t\t\t\t\t[-132.909355, 55.081277],\n\t\t\t\t\t\t\t[-132.881083, 55.110375],\n\t\t\t\t\t\t\t[-132.869827, 55.124104],\n\t\t\t\t\t\t\t[-132.873408, 55.134241],\n\t\t\t\t\t\t\t[-132.894283, 55.169373],\n\t\t\t\t\t\t\t[-132.935449, 55.209898],\n\t\t\t\t\t\t\t[-132.939845, 55.211481],\n\t\t\t\t\t\t\t[-132.982166, 55.215882],\n\t\t\t\t\t\t\t[-133.008156, 55.205700],\n\t\t\t\t\t\t\t[-133.040748, 55.232969],\n\t\t\t\t\t\t\t[-133.043938, 55.248569],\n\t\t\t\t\t\t\t[-133.104708, 55.263800],\n\t\t\t\t\t\t\t[-133.119294, 55.251405],\n\t\t\t\t\t\t\t[-133.073381, 55.184492],\n\t\t\t\t\t\t\t[-133.012275, 55.128056],\n\t\t\t\t\t\t\t[-132.990860, 55.079112],\n\t\t\t\t\t\t\t[-132.990395, 55.066730],\n\t\t\t\t\t\t\t[-133.011351, 55.056849],\n\t\t\t\t\t\t\t[-133.019740, 55.048366],\n\t\t\t\t\t\t\t[-133.014178, 55.035502],\n\t\t\t\t\t\t\t[-132.959508, 55.021045],\n\t\t\t\t\t\t\t[-132.909706, 54.923594],\n\t\t\t\t\t\t\t[-132.914650, 54.914009],\n\t\t\t\t\t\t\t[-132.889474, 54.896619],\n\t\t\t\t\t\t\t[-132.828340, 54.868747],\n\t\t\t\t\t\t\t[-132.804525, 54.870938],\n\t\t\t\t\t\t\t[-132.803014, 54.873725],\n\t\t\t\t\t\t\t[-132.803742, 54.897206],\n\t\t\t\t\t\t\t[-132.807952, 54.904378],\n\t\t\t\t\t\t\t[-132.814282, 54.909356],\n\t\t\t\t\t\t\t[-132.817385, 54.923640],\n\t\t\t\t\t\t\t[-132.800784, 54.933783],\n\t\t\t\t\t\t\t[-132.730931, 54.939483],\n\t\t\t\t\t\t\t[-132.650001, 54.904387],\n\t\t\t\t\t\t\t[-132.628612, 54.883316],\n\t\t\t\t\t\t\t[-132.625563, 54.807503],\n\t\t\t\t\t\t\t[-132.614851, 54.777170],\n\t\t\t\t\t\t\t[-132.619024, 54.766565],\n\t\t\t\t\t\t\t[-132.639032, 54.753251],\n\t\t\t\t\t\t\t[-132.667250, 54.763369],\n\t\t\t\t\t\t\t[-132.681165, 54.773697],\n\t\t\t\t\t\t\t[-132.701203, 54.798446],\n\t\t\t\t\t\t\t[-132.701153, 54.811012],\n\t\t\t\t\t\t\t[-132.709267, 54.817521],\n\t\t\t\t\t\t\t[-132.723538, 54.825128],\n\t\t\t\t\t\t\t[-132.729369, 54.826981],\n\t\t\t\t\t\t\t[-132.754875, 54.821236],\n\t\t\t\t\t\t\t[-132.759779, 54.816998],\n\t\t\t\t\t\t\t[-132.759364, 54.808277],\n\t\t\t\t\t\t\t[-132.747451, 54.800743],\n\t\t\t\t\t\t\t[-132.722011, 54.763259],\n\t\t\t\t\t\t\t[-132.676226, 54.680865],\n\t\t\t\t\t\t\t[-132.674324, 54.674652],\n\t\t\t\t\t\t\t[-132.675868, 54.672812],\n\t\t\t\t\t\t\t[-132.693970, 54.669064],\n\t\t\t\t\t\t\t[-132.775733, 54.674844],\n\t\t\t\t\t\t\t[-132.866355, 54.700386],\n\t\t\t\t\t\t\t[-132.869604, 54.702416],\n\t\t\t\t\t\t\t[-132.864084, 54.716917],\n\t\t\t\t\t\t\t[-132.865598, 54.728908],\n\t\t\t\t\t\t\t[-132.877210, 54.753772],\n\t\t\t\t\t\t\t[-132.891553, 54.768191],\n\t\t\t\t\t\t\t[-132.909517, 54.780516],\n\t\t\t\t\t\t\t[-132.918751, 54.783253],\n\t\t\t\t\t\t\t[-132.940485, 54.783831],\n\t\t\t\t\t\t\t[-132.950250, 54.788333],\n\t\t\t\t\t\t\t[-133.032752, 54.855055],\n\t\t\t\t\t\t\t[-133.099047, 54.919007],\n\t\t\t\t\t\t\t[-133.123941, 54.940065],\n\t\t\t\t\t\t\t[-133.159756, 54.958760],\n\t\t\t\t\t\t\t[-133.164788, 54.976909],\n\t\t\t\t\t\t\t[-133.157326, 55.000365],\n\t\t\t\t\t\t\t[-133.168931, 55.030889],\n\t\t\t\t\t\t\t[-133.172360, 55.032745],\n\t\t\t\t\t\t\t[-133.197719, 55.033404],\n\t\t\t\t\t\t\t[-133.210420, 55.040269],\n\t\t\t\t\t\t\t[-133.239695, 55.092415],\n\t\t\t\t\t\t\t[-133.223923, 55.099986],\n\t\t\t\t\t\t\t[-133.218101, 55.101042],\n\t\t\t\t\t\t\t[-133.144954, 55.099155],\n\t\t\t\t\t\t\t[-133.134987, 55.099473],\n\t\t\t\t\t\t\t[-133.128705, 55.101429],\n\t\t\t\t\t\t\t[-133.154780, 55.128110],\n\t\t\t\t\t\t\t[-133.186809, 55.136372],\n\t\t\t\t\t\t\t[-133.193242, 55.134108],\n\t\t\t\t\t\t\t[-133.201053, 55.134099],\n\t\t\t\t\t\t\t[-133.207702, 55.134220],\n\t\t\t\t\t\t\t[-133.215086, 55.136876],\n\t\t\t\t\t\t\t[-133.236908, 55.183326],\n\t\t\t\t\t\t\t[-133.187745, 55.193639],\n\t\t\t\t\t\t\t[-133.182520, 55.201964],\n\t\t\t\t\t\t\t[-133.223791, 55.229317],\n\t\t\t\t\t\t\t[-133.254478, 55.231149],\n\t\t\t\t\t\t\t[-133.281979, 55.217117],\n\t\t\t\t\t\t\t[-133.323021, 55.207030],\n\t\t\t\t\t\t\t[-133.341259, 55.205701],\n\t\t\t\t\t\t\t[-133.353719, 55.221215],\n\t\t\t\t\t\t\t[-133.361562, 55.225560],\n\t\t\t\t\t\t\t[-133.376615, 55.228288],\n\t\t\t\t\t\t\t[-133.404497, 55.214992],\n\t\t\t\t\t\t\t[-133.415257, 55.212159],\n\t\t\t\t\t\t\t[-133.422869, 55.210659],\n\t\t\t\t\t\t\t[-133.441074, 55.211654],\n\t\t\t\t\t\t\t[-133.453777, 55.218497],\n\t\t\t\t\t\t\t[-133.471938, 55.247527],\n\t\t\t\t\t\t\t[-133.473593, 55.255547],\n\t\t\t\t\t\t\t[-133.472866, 55.267873],\n\t\t\t\t\t\t\t[-133.459753, 55.306780],\n\t\t\t\t\t\t\t[-133.452818, 55.319980],\n\t\t\t\t\t\t\t[-133.436350, 55.330158],\n\t\t\t\t\t\t\t[-133.395371, 55.341753],\n\t\t\t\t\t\t\t[-133.352083, 55.347381],\n\t\t\t\t\t\t\t[-133.332360, 55.345357],\n\t\t\t\t\t\t\t[-133.313491, 55.331557],\n\t\t\t\t\t\t\t[-133.310529, 55.320257],\n\t\t\t\t\t\t\t[-133.311114, 55.317301],\n\t\t\t\t\t\t\t[-133.292402, 55.291377],\n\t\t\t\t\t\t\t[-133.268999, 55.286971],\n\t\t\t\t\t\t\t[-133.244343, 55.291865],\n\t\t\t\t\t\t\t[-133.235129, 55.304162],\n\t\t\t\t\t\t\t[-133.233572, 55.308822],\n\t\t\t\t\t\t\t[-133.254639, 55.318806],\n\t\t\t\t\t\t\t[-133.279271, 55.333264],\n\t\t\t\t\t\t\t[-133.280701, 55.341536],\n\t\t\t\t\t\t\t[-133.278443, 55.349184],\n\t\t\t\t\t\t\t[-133.269068, 55.359341],\n\t\t\t\t\t\t\t[-133.257734, 55.367026],\n\t\t\t\t\t\t\t[-133.226844, 55.381850],\n\t\t\t\t\t\t\t[-133.208794, 55.384237],\n\t\t\t\t\t\t\t[-133.183280, 55.379392],\n\t\t\t\t\t\t\t[-133.121513, 55.414536],\n\t\t\t\t\t\t\t[-133.104304, 55.426907],\n\t\t\t\t\t\t\t[-133.138129, 55.458373],\n\t\t\t\t\t\t\t[-133.157704, 55.497782],\n\t\t\t\t\t\t\t[-133.133293, 55.502508],\n\t\t\t\t\t\t\t[-133.132409, 55.513579],\n\t\t\t\t\t\t\t[-133.156566, 55.563589],\n\t\t\t\t\t\t\t[-133.176760, 55.586722],\n\t\t\t\t\t\t\t[-133.263042, 55.568793],\n\t\t\t\t\t\t\t[-133.275972, 55.580188],\n\t\t\t\t\t\t\t[-133.294158, 55.588680],\n\t\t\t\t\t\t\t[-133.386900, 55.619346],\n\t\t\t\t\t\t\t[-133.438180, 55.643862],\n\t\t\t\t\t\t\t[-133.438933, 55.645167],\n\t\t\t\t\t\t\t[-133.408432, 55.667925],\n\t\t\t\t\t\t\t[-133.399885, 55.665133],\n\t\t\t\t\t\t\t[-133.394486, 55.666881],\n\t\t\t\t\t\t\t[-133.386432, 55.693365],\n\t\t\t\t\t\t\t[-133.416549, 55.739647],\n\t\t\t\t\t\t\t[-133.438619, 55.748366],\n\t\t\t\t\t\t\t[-133.491430, 55.764082],\n\t\t\t\t\t\t\t[-133.512632, 55.755898],\n\t\t\t\t\t\t\t[-133.509704, 55.744183],\n\t\t\t\t\t\t\t[-133.496509, 55.733258],\n\t\t\t\t\t\t\t[-133.494087, 55.733158],\n\t\t\t\t\t\t\t[-133.490882, 55.726576],\n\t\t\t\t\t\t\t[-133.489253, 55.713081],\n\t\t\t\t\t\t\t[-133.492438, 55.706525],\n\t\t\t\t\t\t\t[-133.527387, 55.695108],\n\t\t\t\t\t\t\t[-133.554504, 55.698354],\n\t\t\t\t\t\t\t[-133.583297, 55.705338],\n\t\t\t\t\t\t\t[-133.625120, 55.719927],\n\t\t\t\t\t\t\t[-133.643324, 55.729037],\n\t\t\t\t\t\t\t[-133.694546, 55.780599],\n\t\t\t\t\t\t\t[-133.695749, 55.783118],\n\t\t\t\t\t\t\t[-133.646377, 55.823413],\n\t\t\t\t\t\t\t[-133.627534, 55.831630],\n\t\t\t\t\t\t\t[-133.561973, 55.835543],\n\t\t\t\t\t\t\t[-133.550028, 55.832181],\n\t\t\t\t\t\t\t[-133.447875, 55.791738],\n\t\t\t\t\t\t\t[-133.422064, 55.788821],\n\t\t\t\t\t\t\t[-133.347915, 55.803943],\n\t\t\t\t\t\t\t[-133.342058, 55.805764],\n\t\t\t\t\t\t\t[-133.323664, 55.818632],\n\t\t\t\t\t\t\t[-133.335139, 55.866118],\n\t\t\t\t\t\t\t[-133.346569, 55.875809],\n\t\t\t\t\t\t\t[-133.379472, 55.880716],\n\t\t\t\t\t\t\t[-133.391026, 55.878751],\n\t\t\t\t\t\t\t[-133.418797, 55.883278],\n\t\t\t\t\t\t\t[-133.471044, 55.947381],\n\t\t\t\t\t\t\t[-133.495052, 56.017089],\n\t\t\t\t\t\t\t[-133.541041, 55.977322],\n\t\t\t\t\t\t\t[-133.638122, 55.920982],\n\t\t\t\t\t\t\t[-133.699900, 55.912206],\n\t\t\t\t\t\t\t[-133.799931, 55.925349],\n\t\t\t\t\t\t\t[-133.826236, 55.948750],\n\t\t\t\t\t\t\t[-133.834370, 55.963578],\n\t\t\t\t\t\t\t[-133.812770, 55.974135],\n\t\t\t\t\t\t\t[-133.798092, 55.975096],\n\t\t\t\t\t\t\t[-133.777846, 55.982876],\n\t\t\t\t\t\t\t[-133.748803, 56.009536],\n\t\t\t\t\t\t\t[-133.693765, 56.070562],\n\t\t\t\t\t\t\t[-133.684209, 56.075507],\n\t\t\t\t\t\t\t[-133.659241, 56.083818],\n\t\t\t\t\t\t\t[-133.548802, 56.142840],\n\t\t\t\t\t\t\t[-133.542830, 56.160794],\n\t\t\t\t\t\t\t[-133.553454, 56.169015],\n\t\t\t\t\t\t\t[-133.601500, 56.191925],\n\t\t\t\t\t\t\t[-133.639282, 56.198813],\n\t\t\t\t\t\t\t[-133.664218, 56.310504],\n\t\t\t\t\t\t\t[-133.656415, 56.326909],\n\t\t\t\t\t\t\t[-133.649916, 56.326792],\n\t\t\t\t\t\t\t[-133.643182, 56.324459],\n\t\t\t\t\t\t\t[-133.624658, 56.337070],\n\t\t\t\t\t\t\t[-133.625121, 56.339847],\n\t\t\t\t\t\t\t[-133.624918, 56.343906]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-133.846128, 55.904622],\n\t\t\t\t\t\t\t[-133.840833, 55.892726],\n\t\t\t\t\t\t\t[-133.840298, 55.886770],\n\t\t\t\t\t\t\t[-133.847565, 55.869599],\n\t\t\t\t\t\t\t[-133.861039, 55.848844],\n\t\t\t\t\t\t\t[-133.866988, 55.845886],\n\t\t\t\t\t\t\t[-133.894706, 55.845641],\n\t\t\t\t\t\t\t[-133.903184, 55.848101],\n\t\t\t\t\t\t\t[-133.920250, 55.860295],\n\t\t\t\t\t\t\t[-133.929325, 55.869538],\n\t\t\t\t\t\t\t[-133.945619, 55.896216],\n\t\t\t\t\t\t\t[-133.943499, 55.912446],\n\t\t\t\t\t\t\t[-133.940298, 55.917506],\n\t\t\t\t\t\t\t[-133.935016, 55.920689],\n\t\t\t\t\t\t\t[-133.891851, 55.936680],\n\t\t\t\t\t\t\t[-133.876494, 55.937683],\n\t\t\t\t\t\t\t[-133.864099, 55.936286],\n\t\t\t\t\t\t\t[-133.854291, 55.931581],\n\t\t\t\t\t\t\t[-133.846763, 55.911670],\n\t\t\t\t\t\t\t[-133.846128, 55.904622]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-130.245540, 56.096876],\n\t\t\t\t\t\t\t[-130.102761, 56.116696],\n\t\t\t\t\t\t\t[-130.031573, 56.036791],\n\t\t\t\t\t\t\t[-130.016874, 56.017323],\n\t\t\t\t\t\t\t[-130.004260, 55.993379],\n\t\t\t\t\t\t\t[-130.013198, 55.916382],\n\t\t\t\t\t\t\t[-130.084510, 55.823997],\n\t\t\t\t\t\t\t[-130.123720, 55.807040],\n\t\t\t\t\t\t\t[-130.128538, 55.802148],\n\t\t\t\t\t\t\t[-130.150595, 55.767031],\n\t\t\t\t\t\t\t[-130.234649, 55.814310],\n\t\t\t\t\t\t\t[-130.388737, 55.943318],\n\t\t\t\t\t\t\t[-130.285132, 55.997546],\n\t\t\t\t\t\t\t[-130.220064, 55.998912],\n\t\t\t\t\t\t\t[-130.291117, 56.054246],\n\t\t\t\t\t\t\t[-130.245540, 56.096876]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05141\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"141\",\n\t\t\t\t\"NAME\": \"Van Buren\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 708.143000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.850624, 35.462950],\n\t\t\t\t\t\t[-92.813417, 35.549000],\n\t\t\t\t\t\t[-92.809763, 35.722401],\n\t\t\t\t\t\t[-92.631207, 35.718365],\n\t\t\t\t\t\t[-92.629837, 35.790823],\n\t\t\t\t\t\t[-92.416719, 35.788590],\n\t\t\t\t\t\t[-92.418408, 35.716046],\n\t\t\t\t\t\t[-92.240520, 35.712190],\n\t\t\t\t\t\t[-92.252759, 35.363718],\n\t\t\t\t\t\t[-92.481469, 35.368392],\n\t\t\t\t\t\t[-92.479268, 35.455357],\n\t\t\t\t\t\t[-92.850624, 35.462950]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05145\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"145\",\n\t\t\t\t\"NAME\": \"White\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1035.075000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.465114, 35.089454],\n\t\t\t\t\t\t[-91.584005, 35.091584],\n\t\t\t\t\t\t[-91.585100, 35.025234],\n\t\t\t\t\t\t[-91.695463, 35.062344],\n\t\t\t\t\t\t[-91.802505, 35.030425],\n\t\t\t\t\t\t[-91.878880, 35.024577],\n\t\t\t\t\t\t[-92.013056, 35.076317],\n\t\t\t\t\t\t[-92.119719, 35.066493],\n\t\t\t\t\t\t[-92.111463, 35.362725],\n\t\t\t\t\t\t[-91.851958, 35.358287],\n\t\t\t\t\t\t[-91.850144, 35.436442],\n\t\t\t\t\t\t[-91.795855, 35.455574],\n\t\t\t\t\t\t[-91.793958, 35.534114],\n\t\t\t\t\t\t[-91.581880, 35.530447],\n\t\t\t\t\t\t[-91.584687, 35.442311],\n\t\t\t\t\t\t[-91.347257, 35.439106],\n\t\t\t\t\t\t[-91.438202, 35.369378],\n\t\t\t\t\t\t[-91.390375, 35.251624],\n\t\t\t\t\t\t[-91.371035, 35.262981],\n\t\t\t\t\t\t[-91.465114, 35.089454]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06005\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"005\",\n\t\t\t\t\"NAME\": \"Amador\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 594.583000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-120.995497, 38.225405],\n\t\t\t\t\t\t[-121.027084, 38.300252],\n\t\t\t\t\t\t[-121.027507, 38.508292],\n\t\t\t\t\t\t[-120.813554, 38.562193],\n\t\t\t\t\t\t[-120.627604, 38.503143],\n\t\t\t\t\t\t[-120.510596, 38.511467],\n\t\t\t\t\t\t[-120.301721, 38.549109],\n\t\t\t\t\t\t[-120.098322, 38.709029],\n\t\t\t\t\t\t[-120.072392, 38.702767],\n\t\t\t\t\t\t[-120.072484, 38.509869],\n\t\t\t\t\t\t[-120.380707, 38.461042],\n\t\t\t\t\t\t[-120.423215, 38.473322],\n\t\t\t\t\t\t[-120.893792, 38.221277],\n\t\t\t\t\t\t[-120.995497, 38.225405]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06021\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"021\",\n\t\t\t\t\"NAME\": \"Glenn\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1313.947000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-122.937654, 39.798156],\n\t\t\t\t\t\t[-122.046471, 39.797648],\n\t\t\t\t\t\t[-121.950951, 39.715004],\n\t\t\t\t\t\t[-121.994021, 39.533926],\n\t\t\t\t\t\t[-121.856532, 39.536904],\n\t\t\t\t\t\t[-121.890013, 39.383864],\n\t\t\t\t\t\t[-122.136161, 39.414499],\n\t\t\t\t\t\t[-122.136006, 39.385494],\n\t\t\t\t\t\t[-122.739062, 39.383266],\n\t\t\t\t\t\t[-122.735639, 39.580668],\n\t\t\t\t\t\t[-122.885352, 39.580108],\n\t\t\t\t\t\t[-122.892676, 39.708898],\n\t\t\t\t\t\t[-122.937654, 39.798156]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06033\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"033\",\n\t\t\t\t\"NAME\": \"Lake\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1256.464000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-122.627396, 38.667506],\n\t\t\t\t\t\t[-122.821592, 38.850140],\n\t\t\t\t\t\t[-122.948865, 38.900220],\n\t\t\t\t\t\t[-122.986640, 38.997283],\n\t\t\t\t\t\t[-123.028035, 38.996593],\n\t\t\t\t\t\t[-123.093013, 39.071994],\n\t\t\t\t\t\t[-123.077812, 39.173791],\n\t\t\t\t\t\t[-122.994839, 39.235924],\n\t\t\t\t\t\t[-123.075114, 39.407683],\n\t\t\t\t\t\t[-123.063181, 39.503539],\n\t\t\t\t\t\t[-122.890310, 39.529014],\n\t\t\t\t\t\t[-122.885352, 39.580108],\n\t\t\t\t\t\t[-122.735639, 39.580668],\n\t\t\t\t\t\t[-122.739062, 39.383266],\n\t\t\t\t\t\t[-122.785090, 39.382975],\n\t\t\t\t\t\t[-122.775043, 39.311778],\n\t\t\t\t\t\t[-122.680927, 39.238726],\n\t\t\t\t\t\t[-122.476083, 39.172609],\n\t\t\t\t\t\t[-122.492215, 39.054092],\n\t\t\t\t\t\t[-122.340172, 38.924246],\n\t\t\t\t\t\t[-122.395056, 38.864245],\n\t\t\t\t\t\t[-122.463890, 38.705203],\n\t\t\t\t\t\t[-122.627396, 38.667506]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06043\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"043\",\n\t\t\t\t\"NAME\": \"Mariposa\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1448.816000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-120.387670, 37.633364],\n\t\t\t\t\t\t[-120.387329, 37.633499],\n\t\t\t\t\t\t[-120.387613, 37.633704],\n\t\t\t\t\t\t[-120.391931, 37.683559],\n\t\t\t\t\t\t[-120.325943, 37.648966],\n\t\t\t\t\t\t[-120.345437, 37.724787],\n\t\t\t\t\t\t[-120.127226, 37.781566],\n\t\t\t\t\t\t[-120.079508, 37.828808],\n\t\t\t\t\t\t[-119.907013, 37.757926],\n\t\t\t\t\t\t[-119.809409, 37.755025],\n\t\t\t\t\t\t[-119.667203, 37.801224],\n\t\t\t\t\t\t[-119.646203, 37.846823],\n\t\t\t\t\t\t[-119.535699, 37.904122],\n\t\t\t\t\t\t[-119.308995, 37.777986],\n\t\t\t\t\t\t[-119.583585, 37.560335],\n\t\t\t\t\t\t[-119.584220, 37.494696],\n\t\t\t\t\t\t[-119.651172, 37.461351],\n\t\t\t\t\t\t[-119.651191, 37.417832],\n\t\t\t\t\t\t[-119.761809, 37.417114],\n\t\t\t\t\t\t[-120.052055, 37.183108],\n\t\t\t\t\t\t[-120.143826, 37.239192],\n\t\t\t\t\t\t[-120.266010, 37.400607],\n\t\t\t\t\t\t[-120.387670, 37.633364]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06055\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"055\",\n\t\t\t\t\"NAME\": \"Napa\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 748.362000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-122.103281, 38.513348],\n\t\t\t\t\t\t[-122.088835, 38.384151],\n\t\t\t\t\t\t[-122.064779, 38.315912],\n\t\t\t\t\t\t[-122.205982, 38.315713],\n\t\t\t\t\t\t[-122.195380, 38.155017],\n\t\t\t\t\t\t[-122.406786, 38.155632],\n\t\t\t\t\t\t[-122.378987, 38.250714],\n\t\t\t\t\t\t[-122.543893, 38.519966],\n\t\t\t\t\t\t[-122.646268, 38.599120],\n\t\t\t\t\t\t[-122.627396, 38.667506],\n\t\t\t\t\t\t[-122.463890, 38.705203],\n\t\t\t\t\t\t[-122.395056, 38.864245],\n\t\t\t\t\t\t[-122.287999, 38.839932],\n\t\t\t\t\t\t[-122.164944, 38.642462],\n\t\t\t\t\t\t[-122.168349, 38.619297],\n\t\t\t\t\t\t[-122.151772, 38.625297],\n\t\t\t\t\t\t[-122.128123, 38.583697],\n\t\t\t\t\t\t[-122.111563, 38.524051],\n\t\t\t\t\t\t[-122.103281, 38.513348]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06089\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"089\",\n\t\t\t\t\"NAME\": \"Shasta\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 3775.402000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-123.065426, 40.286971],\n\t\t\t\t\t\t[-123.068789, 40.332233],\n\t\t\t\t\t\t[-122.998682, 40.418142],\n\t\t\t\t\t\t[-122.903738, 40.445071],\n\t\t\t\t\t\t[-122.845954, 40.505181],\n\t\t\t\t\t\t[-122.695298, 40.572514],\n\t\t\t\t\t\t[-122.752266, 40.689642],\n\t\t\t\t\t\t[-122.445453, 41.157930],\n\t\t\t\t\t\t[-122.498376, 41.182675],\n\t\t\t\t\t\t[-122.376123, 41.182904],\n\t\t\t\t\t\t[-121.446495, 41.183484],\n\t\t\t\t\t\t[-121.331786, 41.183886],\n\t\t\t\t\t\t[-121.319972, 40.905886],\n\t\t\t\t\t\t[-121.327826, 40.445367],\n\t\t\t\t\t\t[-121.497635, 40.445591],\n\t\t\t\t\t\t[-121.646330, 40.434726],\n\t\t\t\t\t\t[-121.806539, 40.444950],\n\t\t\t\t\t\t[-121.940989, 40.415331],\n\t\t\t\t\t\t[-122.010316, 40.426558],\n\t\t\t\t\t\t[-122.310412, 40.371064],\n\t\t\t\t\t\t[-122.445021, 40.373398],\n\t\t\t\t\t\t[-122.523997, 40.394500],\n\t\t\t\t\t\t[-122.651341, 40.328288],\n\t\t\t\t\t\t[-122.872769, 40.348848],\n\t\t\t\t\t\t[-122.918472, 40.306758],\n\t\t\t\t\t\t[-123.065426, 40.286971]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06099\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"099\",\n\t\t\t\t\"NAME\": \"Stanislaus\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1494.827000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-120.931374, 37.421753],\n\t\t\t\t\t\t[-120.964223, 37.345782],\n\t\t\t\t\t\t[-121.226804, 37.134774],\n\t\t\t\t\t\t[-121.282271, 37.183675],\n\t\t\t\t\t\t[-121.404636, 37.155989],\n\t\t\t\t\t\t[-121.459051, 37.282739],\n\t\t\t\t\t\t[-121.405753, 37.310990],\n\t\t\t\t\t\t[-121.472648, 37.482170],\n\t\t\t\t\t\t[-121.471925, 37.481783],\n\t\t\t\t\t\t[-121.333388, 37.591050],\n\t\t\t\t\t\t[-121.273751, 37.638330],\n\t\t\t\t\t\t[-121.258171, 37.653495],\n\t\t\t\t\t\t[-121.155849, 37.719844],\n\t\t\t\t\t\t[-120.995754, 37.760152],\n\t\t\t\t\t\t[-120.920665, 37.738392],\n\t\t\t\t\t\t[-120.926449, 38.077421],\n\t\t\t\t\t\t[-120.652673, 37.831422],\n\t\t\t\t\t\t[-120.387613, 37.633704],\n\t\t\t\t\t\t[-120.387329, 37.633499],\n\t\t\t\t\t\t[-120.387670, 37.633364],\n\t\t\t\t\t\t[-120.931374, 37.421753]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06115\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"115\",\n\t\t\t\t\"NAME\": \"Yuba\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 631.839000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-121.333427, 39.468729],\n\t\t\t\t\t\t[-121.305122, 39.519585],\n\t\t\t\t\t\t[-121.149907, 39.526446],\n\t\t\t\t\t\t[-121.076695, 39.597264],\n\t\t\t\t\t\t[-121.052670, 39.612334],\n\t\t\t\t\t\t[-121.050922, 39.613801],\n\t\t\t\t\t\t[-121.009477, 39.639459],\n\t\t\t\t\t\t[-121.034406, 39.514509],\n\t\t\t\t\t\t[-121.022085, 39.391558],\n\t\t\t\t\t\t[-121.127481, 39.380237],\n\t\t\t\t\t\t[-121.266911, 39.271609],\n\t\t\t\t\t\t[-121.279533, 39.034618],\n\t\t\t\t\t\t[-121.414885, 38.996429],\n\t\t\t\t\t\t[-121.571297, 38.938918],\n\t\t\t\t\t\t[-121.623760, 39.295621],\n\t\t\t\t\t\t[-121.407527, 39.339754],\n\t\t\t\t\t\t[-121.333427, 39.468729]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08003\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"003\",\n\t\t\t\t\"NAME\": \"Alamosa\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 722.643000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-105.485516, 37.577899],\n\t\t\t\t\t\t[-105.743339, 37.356798],\n\t\t\t\t\t\t[-106.038912, 37.356953],\n\t\t\t\t\t\t[-106.039331, 37.400852],\n\t\t\t\t\t\t[-106.038413, 37.748353],\n\t\t\t\t\t\t[-105.457255, 37.751464],\n\t\t\t\t\t\t[-105.485516, 37.577899]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08013\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"013\",\n\t\t\t\t\"NAME\": \"Boulder\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 726.289000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-105.055089, 40.261793],\n\t\t\t\t\t\t[-105.055375, 40.144929],\n\t\t\t\t\t\t[-105.055376, 40.144692],\n\t\t\t\t\t\t[-105.055432, 40.000251],\n\t\t\t\t\t\t[-105.052823, 40.000260],\n\t\t\t\t\t\t[-105.052774, 39.986398],\n\t\t\t\t\t\t[-105.052792, 39.979489],\n\t\t\t\t\t\t[-105.052793, 39.978790],\n\t\t\t\t\t\t[-105.052794, 39.978581],\n\t\t\t\t\t\t[-105.052797, 39.977574],\n\t\t\t\t\t\t[-105.054688, 39.976889],\n\t\t\t\t\t\t[-105.057654, 39.975860],\n\t\t\t\t\t\t[-105.057840, 39.975787],\n\t\t\t\t\t\t[-105.058567, 39.975502],\n\t\t\t\t\t\t[-105.060445, 39.974768],\n\t\t\t\t\t\t[-105.060968, 39.974563],\n\t\t\t\t\t\t[-105.063527, 39.973444],\n\t\t\t\t\t\t[-105.066609, 39.971925],\n\t\t\t\t\t\t[-105.067420, 39.971289],\n\t\t\t\t\t\t[-105.069605, 39.970227],\n\t\t\t\t\t\t[-105.070468, 39.969721],\n\t\t\t\t\t\t[-105.071886, 39.968544],\n\t\t\t\t\t\t[-105.073059, 39.967308],\n\t\t\t\t\t\t[-105.074735, 39.965752],\n\t\t\t\t\t\t[-105.075700, 39.964623],\n\t\t\t\t\t\t[-105.078632, 39.962182],\n\t\t\t\t\t\t[-105.079885, 39.961657],\n\t\t\t\t\t\t[-105.079990, 39.961613],\n\t\t\t\t\t\t[-105.080562, 39.961373],\n\t\t\t\t\t\t[-105.081957, 39.961003],\n\t\t\t\t\t\t[-105.082093, 39.960967],\n\t\t\t\t\t\t[-105.084027, 39.960454],\n\t\t\t\t\t\t[-105.085583, 39.960123],\n\t\t\t\t\t\t[-105.085764, 39.960084],\n\t\t\t\t\t\t[-105.085877, 39.960061],\n\t\t\t\t\t\t[-105.085942, 39.960055],\n\t\t\t\t\t\t[-105.085950, 39.960055],\n\t\t\t\t\t\t[-105.085961, 39.960054],\n\t\t\t\t\t\t[-105.085982, 39.960052],\n\t\t\t\t\t\t[-105.086002, 39.960050],\n\t\t\t\t\t\t[-105.086082, 39.960043],\n\t\t\t\t\t\t[-105.086858, 39.959972],\n\t\t\t\t\t\t[-105.086951, 39.959741],\n\t\t\t\t\t\t[-105.087033, 39.959538],\n\t\t\t\t\t\t[-105.087310, 39.959551],\n\t\t\t\t\t\t[-105.087393, 39.959555],\n\t\t\t\t\t\t[-105.087748, 39.959571],\n\t\t\t\t\t\t[-105.087748, 39.958880],\n\t\t\t\t\t\t[-105.087748, 39.958707],\n\t\t\t\t\t\t[-105.087748, 39.958197],\n\t\t\t\t\t\t[-105.088636, 39.958182],\n\t\t\t\t\t\t[-105.088616, 39.958052],\n\t\t\t\t\t\t[-105.088615, 39.958042],\n\t\t\t\t\t\t[-105.088614, 39.958037],\n\t\t\t\t\t\t[-105.088613, 39.958030],\n\t\t\t\t\t\t[-105.088597, 39.957919],\n\t\t\t\t\t\t[-105.088588, 39.957865],\n\t\t\t\t\t\t[-105.088441, 39.957858],\n\t\t\t\t\t\t[-105.088332, 39.957853],\n\t\t\t\t\t\t[-105.088298, 39.957851],\n\t\t\t\t\t\t[-105.087870, 39.957840],\n\t\t\t\t\t\t[-105.087841, 39.957839],\n\t\t\t\t\t\t[-105.087834, 39.957839],\n\t\t\t\t\t\t[-105.087724, 39.957838],\n\t\t\t\t\t\t[-105.087315, 39.957833],\n\t\t\t\t\t\t[-105.086948, 39.957843],\n\t\t\t\t\t\t[-105.086861, 39.957849],\n\t\t\t\t\t\t[-105.085846, 39.957893],\n\t\t\t\t\t\t[-105.085794, 39.957938],\n\t\t\t\t\t\t[-105.085754, 39.957971],\n\t\t\t\t\t\t[-105.085734, 39.957988],\n\t\t\t\t\t\t[-105.085717, 39.958003],\n\t\t\t\t\t\t[-105.085702, 39.958016],\n\t\t\t\t\t\t[-105.085683, 39.958020],\n\t\t\t\t\t\t[-105.085673, 39.958022],\n\t\t\t\t\t\t[-105.085663, 39.958024],\n\t\t\t\t\t\t[-105.085650, 39.958027],\n\t\t\t\t\t\t[-105.085638, 39.958030],\n\t\t\t\t\t\t[-105.085611, 39.958036],\n\t\t\t\t\t\t[-105.085550, 39.958050],\n\t\t\t\t\t\t[-105.085476, 39.958066],\n\t\t\t\t\t\t[-105.085410, 39.958081],\n\t\t\t\t\t\t[-105.085379, 39.958088],\n\t\t\t\t\t\t[-105.084891, 39.958201],\n\t\t\t\t\t\t[-105.083963, 39.958302],\n\t\t\t\t\t\t[-105.083267, 39.958267],\n\t\t\t\t\t\t[-105.083261, 39.957915],\n\t\t\t\t\t\t[-105.082801, 39.957912],\n\t\t\t\t\t\t[-105.082768, 39.957912],\n\t\t\t\t\t\t[-105.082756, 39.957912],\n\t\t\t\t\t\t[-105.082534, 39.957911],\n\t\t\t\t\t\t[-105.082463, 39.957908],\n\t\t\t\t\t\t[-105.082455, 39.957908],\n\t\t\t\t\t\t[-105.082448, 39.957908],\n\t\t\t\t\t\t[-105.080966, 39.957839],\n\t\t\t\t\t\t[-105.080602, 39.957822],\n\t\t\t\t\t\t[-105.080305, 39.957808],\n\t\t\t\t\t\t[-105.080028, 39.957847],\n\t\t\t\t\t\t[-105.079729, 39.957840],\n\t\t\t\t\t\t[-105.079302, 39.957829],\n\t\t\t\t\t\t[-105.079166, 39.957826],\n\t\t\t\t\t\t[-105.077331, 39.957810],\n\t\t\t\t\t\t[-105.076823, 39.957805],\n\t\t\t\t\t\t[-105.076586, 39.957805],\n\t\t\t\t\t\t[-105.075858, 39.957803],\n\t\t\t\t\t\t[-105.075312, 39.957802],\n\t\t\t\t\t\t[-105.074639, 39.957800],\n\t\t\t\t\t\t[-105.072278, 39.957787],\n\t\t\t\t\t\t[-105.071933, 39.957785],\n\t\t\t\t\t\t[-105.071916, 39.957785],\n\t\t\t\t\t\t[-105.071854, 39.957785],\n\t\t\t\t\t\t[-105.071780, 39.957785],\n\t\t\t\t\t\t[-105.071778, 39.957502],\n\t\t\t\t\t\t[-105.071738, 39.950585],\n\t\t\t\t\t\t[-105.071893, 39.950585],\n\t\t\t\t\t\t[-105.072241, 39.950586],\n\t\t\t\t\t\t[-105.072518, 39.950586],\n\t\t\t\t\t\t[-105.075827, 39.950592],\n\t\t\t\t\t\t[-105.076104, 39.950592],\n\t\t\t\t\t\t[-105.076102, 39.947539],\n\t\t\t\t\t\t[-105.076102, 39.947048],\n\t\t\t\t\t\t[-105.076102, 39.946892],\n\t\t\t\t\t\t[-105.076102, 39.946353],\n\t\t\t\t\t\t[-105.076101, 39.944607],\n\t\t\t\t\t\t[-105.076101, 39.943904],\n\t\t\t\t\t\t[-105.076101, 39.943726],\n\t\t\t\t\t\t[-105.076101, 39.943456],\n\t\t\t\t\t\t[-105.076101, 39.943185],\n\t\t\t\t\t\t[-105.085739, 39.943185],\n\t\t\t\t\t\t[-105.090305, 39.943137],\n\t\t\t\t\t\t[-105.090324, 39.943137],\n\t\t\t\t\t\t[-105.090532, 39.943137],\n\t\t\t\t\t\t[-105.090541, 39.943137],\n\t\t\t\t\t\t[-105.090677, 39.943135],\n\t\t\t\t\t\t[-105.090897, 39.943134],\n\t\t\t\t\t\t[-105.090912, 39.941583],\n\t\t\t\t\t\t[-105.090799, 39.941546],\n\t\t\t\t\t\t[-105.090849, 39.939979],\n\t\t\t\t\t\t[-105.090819, 39.939971],\n\t\t\t\t\t\t[-105.090798, 39.939966],\n\t\t\t\t\t\t[-105.090782, 39.939962],\n\t\t\t\t\t\t[-105.090787, 39.939887],\n\t\t\t\t\t\t[-105.090787, 39.939879],\n\t\t\t\t\t\t[-105.090830, 39.938827],\n\t\t\t\t\t\t[-105.090851, 39.937836],\n\t\t\t\t\t\t[-105.090854, 39.936386],\n\t\t\t\t\t\t[-105.090944, 39.936387],\n\t\t\t\t\t\t[-105.090990, 39.936387],\n\t\t\t\t\t\t[-105.091010, 39.936386],\n\t\t\t\t\t\t[-105.093793, 39.936385],\n\t\t\t\t\t\t[-105.102719, 39.936386],\n\t\t\t\t\t\t[-105.102808, 39.936386],\n\t\t\t\t\t\t[-105.107539, 39.936386],\n\t\t\t\t\t\t[-105.107886, 39.936411],\n\t\t\t\t\t\t[-105.107985, 39.936417],\n\t\t\t\t\t\t[-105.108020, 39.936419],\n\t\t\t\t\t\t[-105.108678, 39.936461],\n\t\t\t\t\t\t[-105.108704, 39.936463],\n\t\t\t\t\t\t[-105.108727, 39.936464],\n\t\t\t\t\t\t[-105.108746, 39.936465],\n\t\t\t\t\t\t[-105.108790, 39.936468],\n\t\t\t\t\t\t[-105.109036, 39.936484],\n\t\t\t\t\t\t[-105.109038, 39.936134],\n\t\t\t\t\t\t[-105.109038, 39.936124],\n\t\t\t\t\t\t[-105.109039, 39.936119],\n\t\t\t\t\t\t[-105.109039, 39.936114],\n\t\t\t\t\t\t[-105.109039, 39.936095],\n\t\t\t\t\t\t[-105.109039, 39.936061],\n\t\t\t\t\t\t[-105.109041, 39.935754],\n\t\t\t\t\t\t[-105.109041, 39.935664],\n\t\t\t\t\t\t[-105.109224, 39.935546],\n\t\t\t\t\t\t[-105.109358, 39.935463],\n\t\t\t\t\t\t[-105.109979, 39.935062],\n\t\t\t\t\t\t[-105.110014, 39.935039],\n\t\t\t\t\t\t[-105.112293, 39.933567],\n\t\t\t\t\t\t[-105.112311, 39.933555],\n\t\t\t\t\t\t[-105.112368, 39.933518],\n\t\t\t\t\t\t[-105.112504, 39.933426],\n\t\t\t\t\t\t[-105.112775, 39.933219],\n\t\t\t\t\t\t[-105.112874, 39.933133],\n\t\t\t\t\t\t[-105.112975, 39.933034],\n\t\t\t\t\t\t[-105.113155, 39.932830],\n\t\t\t\t\t\t[-105.113232, 39.932731],\n\t\t\t\t\t\t[-105.113301, 39.932627],\n\t\t\t\t\t\t[-105.113388, 39.932479],\n\t\t\t\t\t\t[-105.113488, 39.932275],\n\t\t\t\t\t\t[-105.113541, 39.932126],\n\t\t\t\t\t\t[-105.113544, 39.932118],\n\t\t\t\t\t\t[-105.113566, 39.932055],\n\t\t\t\t\t\t[-105.113597, 39.931942],\n\t\t\t\t\t\t[-105.113626, 39.931805],\n\t\t\t\t\t\t[-105.113652, 39.931597],\n\t\t\t\t\t\t[-105.113657, 39.931440],\n\t\t\t\t\t\t[-105.113650, 39.931279],\n\t\t\t\t\t\t[-105.113636, 39.931163],\n\t\t\t\t\t\t[-105.113606, 39.930994],\n\t\t\t\t\t\t[-105.113579, 39.930895],\n\t\t\t\t\t\t[-105.113575, 39.930882],\n\t\t\t\t\t\t[-105.113569, 39.930862],\n\t\t\t\t\t\t[-105.113515, 39.930702],\n\t\t\t\t\t\t[-105.113446, 39.930541],\n\t\t\t\t\t\t[-105.113296, 39.930249],\n\t\t\t\t\t\t[-105.112408, 39.928626],\n\t\t\t\t\t\t[-105.112407, 39.928625],\n\t\t\t\t\t\t[-105.112269, 39.928399],\n\t\t\t\t\t\t[-105.112190, 39.928284],\n\t\t\t\t\t\t[-105.112132, 39.928200],\n\t\t\t\t\t\t[-105.112120, 39.928185],\n\t\t\t\t\t\t[-105.111966, 39.927989],\n\t\t\t\t\t\t[-105.111784, 39.927785],\n\t\t\t\t\t\t[-105.111558, 39.927560],\n\t\t\t\t\t\t[-105.111479, 39.927488],\n\t\t\t\t\t\t[-105.111189, 39.927252],\n\t\t\t\t\t\t[-105.110917, 39.927058],\n\t\t\t\t\t\t[-105.110584, 39.926850],\n\t\t\t\t\t\t[-105.109267, 39.926027],\n\t\t\t\t\t\t[-105.109259, 39.926022],\n\t\t\t\t\t\t[-105.109023, 39.925874],\n\t\t\t\t\t\t[-105.109043, 39.925744],\n\t\t\t\t\t\t[-105.109052, 39.925619],\n\t\t\t\t\t\t[-105.109141, 39.924586],\n\t\t\t\t\t\t[-105.109142, 39.924356],\n\t\t\t\t\t\t[-105.109412, 39.924438],\n\t\t\t\t\t\t[-105.109527, 39.924473],\n\t\t\t\t\t\t[-105.109641, 39.924507],\n\t\t\t\t\t\t[-105.109826, 39.924575],\n\t\t\t\t\t\t[-105.109921, 39.924620],\n\t\t\t\t\t\t[-105.109965, 39.924641],\n\t\t\t\t\t\t[-105.109980, 39.924648],\n\t\t\t\t\t\t[-105.110027, 39.924671],\n\t\t\t\t\t\t[-105.110043, 39.924680],\n\t\t\t\t\t\t[-105.110061, 39.924690],\n\t\t\t\t\t\t[-105.110070, 39.924695],\n\t\t\t\t\t\t[-105.110077, 39.924698],\n\t\t\t\t\t\t[-105.110214, 39.924770],\n\t\t\t\t\t\t[-105.110454, 39.924908],\n\t\t\t\t\t\t[-105.110628, 39.925009],\n\t\t\t\t\t\t[-105.110747, 39.925082],\n\t\t\t\t\t\t[-105.110767, 39.925094],\n\t\t\t\t\t\t[-105.110782, 39.925103],\n\t\t\t\t\t\t[-105.110794, 39.925110],\n\t\t\t\t\t\t[-105.110800, 39.925114],\n\t\t\t\t\t\t[-105.110870, 39.925157],\n\t\t\t\t\t\t[-105.110903, 39.925177],\n\t\t\t\t\t\t[-105.110958, 39.925211],\n\t\t\t\t\t\t[-105.110974, 39.925221],\n\t\t\t\t\t\t[-105.110983, 39.925227],\n\t\t\t\t\t\t[-105.110993, 39.925233],\n\t\t\t\t\t\t[-105.111315, 39.925433],\n\t\t\t\t\t\t[-105.111376, 39.925471],\n\t\t\t\t\t\t[-105.111383, 39.925475],\n\t\t\t\t\t\t[-105.111475, 39.925532],\n\t\t\t\t\t\t[-105.111631, 39.925636],\n\t\t\t\t\t\t[-105.111645, 39.925645],\n\t\t\t\t\t\t[-105.111659, 39.925654],\n\t\t\t\t\t\t[-105.111682, 39.925669],\n\t\t\t\t\t\t[-105.111823, 39.925771],\n\t\t\t\t\t\t[-105.111845, 39.925787],\n\t\t\t\t\t\t[-105.111851, 39.925791],\n\t\t\t\t\t\t[-105.111921, 39.925841],\n\t\t\t\t\t\t[-105.112246, 39.926106],\n\t\t\t\t\t\t[-105.112265, 39.926122],\n\t\t\t\t\t\t[-105.112274, 39.926129],\n\t\t\t\t\t\t[-105.112355, 39.926195],\n\t\t\t\t\t\t[-105.112362, 39.926201],\n\t\t\t\t\t\t[-105.112369, 39.926207],\n\t\t\t\t\t\t[-105.112653, 39.926453],\n\t\t\t\t\t\t[-105.112755, 39.926541],\n\t\t\t\t\t\t[-105.112799, 39.926579],\n\t\t\t\t\t\t[-105.112883, 39.926656],\n\t\t\t\t\t\t[-105.112887, 39.926660],\n\t\t\t\t\t\t[-105.112897, 39.926669],\n\t\t\t\t\t\t[-105.112903, 39.926674],\n\t\t\t\t\t\t[-105.112934, 39.926702],\n\t\t\t\t\t\t[-105.112980, 39.926744],\n\t\t\t\t\t\t[-105.112985, 39.926748],\n\t\t\t\t\t\t[-105.113051, 39.926808],\n\t\t\t\t\t\t[-105.113159, 39.926912],\n\t\t\t\t\t\t[-105.113212, 39.926969],\n\t\t\t\t\t\t[-105.113261, 39.927021],\n\t\t\t\t\t\t[-105.113325, 39.927097],\n\t\t\t\t\t\t[-105.113403, 39.927204],\n\t\t\t\t\t\t[-105.113472, 39.927321],\n\t\t\t\t\t\t[-105.113523, 39.927430],\n\t\t\t\t\t\t[-105.113529, 39.927449],\n\t\t\t\t\t\t[-105.113532, 39.927457],\n\t\t\t\t\t\t[-105.113542, 39.927488],\n\t\t\t\t\t\t[-105.113586, 39.927621],\n\t\t\t\t\t\t[-105.113594, 39.927659],\n\t\t\t\t\t\t[-105.113595, 39.927665],\n\t\t\t\t\t\t[-105.113597, 39.927673],\n\t\t\t\t\t\t[-105.113599, 39.927681],\n\t\t\t\t\t\t[-105.113665, 39.927993],\n\t\t\t\t\t\t[-105.113690, 39.928108],\n\t\t\t\t\t\t[-105.113691, 39.928115],\n\t\t\t\t\t\t[-105.113707, 39.928188],\n\t\t\t\t\t\t[-105.113759, 39.928362],\n\t\t\t\t\t\t[-105.113771, 39.928394],\n\t\t\t\t\t\t[-105.113808, 39.928493],\n\t\t\t\t\t\t[-105.113827, 39.928538],\n\t\t\t\t\t\t[-105.113830, 39.928545],\n\t\t\t\t\t\t[-105.113833, 39.928551],\n\t\t\t\t\t\t[-105.113835, 39.928556],\n\t\t\t\t\t\t[-105.113859, 39.928611],\n\t\t\t\t\t\t[-105.113867, 39.928629],\n\t\t\t\t\t\t[-105.113969, 39.928841],\n\t\t\t\t\t\t[-105.114036, 39.928981],\n\t\t\t\t\t\t[-105.114072, 39.929052],\n\t\t\t\t\t\t[-105.114064, 39.929181],\n\t\t\t\t\t\t[-105.114057, 39.929400],\n\t\t\t\t\t\t[-105.114437, 39.930166],\n\t\t\t\t\t\t[-105.116589, 39.931964],\n\t\t\t\t\t\t[-105.116795, 39.932137],\n\t\t\t\t\t\t[-105.116828, 39.932164],\n\t\t\t\t\t\t[-105.117035, 39.932337],\n\t\t\t\t\t\t[-105.118828, 39.933841],\n\t\t\t\t\t\t[-105.118947, 39.933783],\n\t\t\t\t\t\t[-105.118946, 39.933833],\n\t\t\t\t\t\t[-105.118946, 39.933841],\n\t\t\t\t\t\t[-105.118934, 39.933940],\n\t\t\t\t\t\t[-105.118904, 39.934077],\n\t\t\t\t\t\t[-105.118861, 39.934198],\n\t\t\t\t\t\t[-105.118801, 39.934323],\n\t\t\t\t\t\t[-105.118730, 39.934449],\n\t\t\t\t\t\t[-105.118727, 39.934454],\n\t\t\t\t\t\t[-105.118507, 39.934844],\n\t\t\t\t\t\t[-105.118468, 39.934947],\n\t\t\t\t\t\t[-105.118459, 39.934996],\n\t\t\t\t\t\t[-105.118449, 39.935048],\n\t\t\t\t\t\t[-105.118448, 39.935068],\n\t\t\t\t\t\t[-105.118446, 39.935113],\n\t\t\t\t\t\t[-105.118466, 39.935216],\n\t\t\t\t\t\t[-105.118480, 39.935249],\n\t\t\t\t\t\t[-105.118482, 39.935254],\n\t\t\t\t\t\t[-105.118545, 39.935402],\n\t\t\t\t\t\t[-105.118569, 39.935451],\n\t\t\t\t\t\t[-105.118593, 39.935500],\n\t\t\t\t\t\t[-105.118598, 39.935510],\n\t\t\t\t\t\t[-105.118601, 39.935517],\n\t\t\t\t\t\t[-105.118607, 39.935530],\n\t\t\t\t\t\t[-105.118659, 39.935640],\n\t\t\t\t\t\t[-105.118671, 39.935671],\n\t\t\t\t\t\t[-105.118674, 39.935679],\n\t\t\t\t\t\t[-105.118676, 39.935685],\n\t\t\t\t\t\t[-105.118694, 39.935730],\n\t\t\t\t\t\t[-105.118714, 39.935780],\n\t\t\t\t\t\t[-105.118729, 39.935834],\n\t\t\t\t\t\t[-105.118730, 39.935839],\n\t\t\t\t\t\t[-105.118732, 39.935845],\n\t\t\t\t\t\t[-105.118734, 39.935851],\n\t\t\t\t\t\t[-105.118735, 39.935856],\n\t\t\t\t\t\t[-105.118738, 39.935874],\n\t\t\t\t\t\t[-105.118743, 39.935910],\n\t\t\t\t\t\t[-105.118745, 39.935979],\n\t\t\t\t\t\t[-105.118752, 39.936194],\n\t\t\t\t\t\t[-105.118752, 39.936199],\n\t\t\t\t\t\t[-105.118747, 39.936383],\n\t\t\t\t\t\t[-105.118735, 39.936811],\n\t\t\t\t\t\t[-105.118722, 39.937324],\n\t\t\t\t\t\t[-105.118722, 39.937527],\n\t\t\t\t\t\t[-105.118722, 39.938463],\n\t\t\t\t\t\t[-105.118721, 39.939033],\n\t\t\t\t\t\t[-105.118721, 39.939174],\n\t\t\t\t\t\t[-105.118721, 39.939248],\n\t\t\t\t\t\t[-105.118721, 39.939269],\n\t\t\t\t\t\t[-105.118721, 39.939338],\n\t\t\t\t\t\t[-105.118718, 39.941225],\n\t\t\t\t\t\t[-105.118712, 39.942004],\n\t\t\t\t\t\t[-105.118711, 39.942011],\n\t\t\t\t\t\t[-105.118711, 39.942018],\n\t\t\t\t\t\t[-105.118711, 39.942029],\n\t\t\t\t\t\t[-105.118711, 39.942047],\n\t\t\t\t\t\t[-105.118711, 39.942071],\n\t\t\t\t\t\t[-105.118711, 39.942096],\n\t\t\t\t\t\t[-105.118704, 39.942904],\n\t\t\t\t\t\t[-105.118708, 39.943013],\n\t\t\t\t\t\t[-105.118715, 39.943061],\n\t\t\t\t\t\t[-105.118733, 39.943110],\n\t\t\t\t\t\t[-105.118770, 39.943165],\n\t\t\t\t\t\t[-105.118774, 39.943169],\n\t\t\t\t\t\t[-105.118792, 39.943187],\n\t\t\t\t\t\t[-105.118557, 39.943213],\n\t\t\t\t\t\t[-105.118377, 39.943213],\n\t\t\t\t\t\t[-105.110274, 39.943204],\n\t\t\t\t\t\t[-105.110094, 39.943204],\n\t\t\t\t\t\t[-105.109353, 39.943190],\n\t\t\t\t\t\t[-105.109338, 39.943190],\n\t\t\t\t\t\t[-105.109329, 39.943190],\n\t\t\t\t\t\t[-105.109309, 39.943189],\n\t\t\t\t\t\t[-105.109261, 39.943188],\n\t\t\t\t\t\t[-105.109057, 39.943184],\n\t\t\t\t\t\t[-105.109060, 39.943255],\n\t\t\t\t\t\t[-105.109103, 39.944125],\n\t\t\t\t\t\t[-105.109110, 39.944152],\n\t\t\t\t\t\t[-105.109321, 39.945021],\n\t\t\t\t\t\t[-105.109322, 39.945026],\n\t\t\t\t\t\t[-105.109323, 39.945031],\n\t\t\t\t\t\t[-105.109327, 39.945048],\n\t\t\t\t\t\t[-105.109337, 39.945088],\n\t\t\t\t\t\t[-105.109361, 39.945185],\n\t\t\t\t\t\t[-105.109360, 39.945481],\n\t\t\t\t\t\t[-105.109360, 39.945571],\n\t\t\t\t\t\t[-105.109358, 39.946050],\n\t\t\t\t\t\t[-105.109354, 39.946216],\n\t\t\t\t\t\t[-105.109354, 39.946225],\n\t\t\t\t\t\t[-105.109353, 39.946231],\n\t\t\t\t\t\t[-105.109353, 39.946244],\n\t\t\t\t\t\t[-105.109352, 39.946282],\n\t\t\t\t\t\t[-105.109330, 39.947210],\n\t\t\t\t\t\t[-105.109329, 39.947465],\n\t\t\t\t\t\t[-105.109329, 39.947478],\n\t\t\t\t\t\t[-105.109328, 39.947569],\n\t\t\t\t\t\t[-105.109328, 39.947658],\n\t\t\t\t\t\t[-105.109327, 39.947800],\n\t\t\t\t\t\t[-105.109327, 39.947889],\n\t\t\t\t\t\t[-105.109323, 39.948834],\n\t\t\t\t\t\t[-105.109323, 39.948924],\n\t\t\t\t\t\t[-105.109323, 39.948953],\n\t\t\t\t\t\t[-105.109323, 39.948989],\n\t\t\t\t\t\t[-105.109323, 39.949032],\n\t\t\t\t\t\t[-105.109323, 39.949082],\n\t\t\t\t\t\t[-105.109323, 39.949137],\n\t\t\t\t\t\t[-105.109323, 39.949194],\n\t\t\t\t\t\t[-105.109323, 39.949220],\n\t\t\t\t\t\t[-105.109323, 39.949235],\n\t\t\t\t\t\t[-105.109323, 39.949242],\n\t\t\t\t\t\t[-105.109323, 39.949247],\n\t\t\t\t\t\t[-105.109320, 39.949529],\n\t\t\t\t\t\t[-105.109321, 39.950183],\n\t\t\t\t\t\t[-105.109321, 39.950264],\n\t\t\t\t\t\t[-105.109321, 39.950311],\n\t\t\t\t\t\t[-105.109321, 39.950341],\n\t\t\t\t\t\t[-105.109321, 39.950363],\n\t\t\t\t\t\t[-105.109321, 39.950379],\n\t\t\t\t\t\t[-105.109321, 39.950391],\n\t\t\t\t\t\t[-105.109321, 39.950401],\n\t\t\t\t\t\t[-105.109321, 39.950409],\n\t\t\t\t\t\t[-105.109321, 39.950415],\n\t\t\t\t\t\t[-105.109321, 39.950421],\n\t\t\t\t\t\t[-105.109321, 39.950426],\n\t\t\t\t\t\t[-105.109321, 39.950433],\n\t\t\t\t\t\t[-105.109321, 39.950439],\n\t\t\t\t\t\t[-105.109321, 39.950445],\n\t\t\t\t\t\t[-105.109321, 39.950451],\n\t\t\t\t\t\t[-105.109321, 39.950456],\n\t\t\t\t\t\t[-105.109321, 39.950461],\n\t\t\t\t\t\t[-105.109322, 39.950485],\n\t\t\t\t\t\t[-105.109435, 39.950486],\n\t\t\t\t\t\t[-105.109446, 39.950486],\n\t\t\t\t\t\t[-105.115419, 39.950539],\n\t\t\t\t\t\t[-105.115430, 39.950539],\n\t\t\t\t\t\t[-105.117017, 39.950553],\n\t\t\t\t\t\t[-105.118366, 39.950566],\n\t\t\t\t\t\t[-105.118577, 39.950568],\n\t\t\t\t\t\t[-105.118671, 39.950569],\n\t\t\t\t\t\t[-105.118701, 39.950569],\n\t\t\t\t\t\t[-105.118708, 39.950569],\n\t\t\t\t\t\t[-105.118715, 39.950569],\n\t\t\t\t\t\t[-105.118732, 39.950570],\n\t\t\t\t\t\t[-105.118749, 39.950570],\n\t\t\t\t\t\t[-105.118761, 39.950570],\n\t\t\t\t\t\t[-105.118833, 39.950571],\n\t\t\t\t\t\t[-105.118983, 39.950572],\n\t\t\t\t\t\t[-105.120336, 39.950585],\n\t\t\t\t\t\t[-105.120347, 39.950585],\n\t\t\t\t\t\t[-105.120532, 39.950569],\n\t\t\t\t\t\t[-105.120541, 39.950568],\n\t\t\t\t\t\t[-105.120776, 39.950548],\n\t\t\t\t\t\t[-105.121037, 39.951248],\n\t\t\t\t\t\t[-105.121045, 39.951269],\n\t\t\t\t\t\t[-105.121047, 39.951275],\n\t\t\t\t\t\t[-105.121050, 39.951283],\n\t\t\t\t\t\t[-105.121058, 39.951305],\n\t\t\t\t\t\t[-105.121089, 39.951387],\n\t\t\t\t\t\t[-105.120845, 39.951538],\n\t\t\t\t\t\t[-105.120738, 39.951613],\n\t\t\t\t\t\t[-105.120568, 39.951732],\n\t\t\t\t\t\t[-105.119781, 39.952167],\n\t\t\t\t\t\t[-105.119650, 39.952223],\n\t\t\t\t\t\t[-105.119624, 39.952234],\n\t\t\t\t\t\t[-105.119614, 39.952238],\n\t\t\t\t\t\t[-105.119574, 39.952255],\n\t\t\t\t\t\t[-105.119554, 39.952264],\n\t\t\t\t\t\t[-105.119477, 39.952297],\n\t\t\t\t\t\t[-105.119347, 39.952353],\n\t\t\t\t\t\t[-105.117840, 39.953034],\n\t\t\t\t\t\t[-105.117640, 39.953104],\n\t\t\t\t\t\t[-105.116061, 39.953657],\n\t\t\t\t\t\t[-105.113353, 39.954548],\n\t\t\t\t\t\t[-105.111034, 39.955378],\n\t\t\t\t\t\t[-105.109342, 39.955974],\n\t\t\t\t\t\t[-105.109372, 39.956506],\n\t\t\t\t\t\t[-105.109385, 39.956740],\n\t\t\t\t\t\t[-105.109391, 39.956849],\n\t\t\t\t\t\t[-105.109685, 39.956752],\n\t\t\t\t\t\t[-105.109693, 39.956749],\n\t\t\t\t\t\t[-105.110913, 39.956348],\n\t\t\t\t\t\t[-105.111782, 39.956051],\n\t\t\t\t\t\t[-105.113390, 39.955583],\n\t\t\t\t\t\t[-105.114622, 39.955152],\n\t\t\t\t\t\t[-105.115301, 39.954903],\n\t\t\t\t\t\t[-105.117838, 39.953889],\n\t\t\t\t\t\t[-105.117945, 39.953849],\n\t\t\t\t\t\t[-105.118697, 39.953543],\n\t\t\t\t\t\t[-105.118706, 39.953539],\n\t\t\t\t\t\t[-105.119345, 39.953279],\n\t\t\t\t\t\t[-105.120574, 39.952709],\n\t\t\t\t\t\t[-105.121061, 39.952481],\n\t\t\t\t\t\t[-105.121069, 39.952477],\n\t\t\t\t\t\t[-105.121241, 39.952397],\n\t\t\t\t\t\t[-105.121437, 39.952305],\n\t\t\t\t\t\t[-105.122141, 39.954166],\n\t\t\t\t\t\t[-105.122294, 39.954571],\n\t\t\t\t\t\t[-105.127321, 39.954533],\n\t\t\t\t\t\t[-105.127598, 39.954533],\n\t\t\t\t\t\t[-105.127597, 39.954179],\n\t\t\t\t\t\t[-105.127597, 39.954062],\n\t\t\t\t\t\t[-105.127593, 39.952407],\n\t\t\t\t\t\t[-105.127593, 39.952290],\n\t\t\t\t\t\t[-105.127589, 39.950717],\n\t\t\t\t\t\t[-105.127586, 39.949522],\n\t\t\t\t\t\t[-105.127579, 39.948868],\n\t\t\t\t\t\t[-105.127565, 39.947484],\n\t\t\t\t\t\t[-105.127562, 39.946850],\n\t\t\t\t\t\t[-105.127559, 39.946280],\n\t\t\t\t\t\t[-105.127557, 39.945758],\n\t\t\t\t\t\t[-105.127555, 39.945459],\n\t\t\t\t\t\t[-105.127555, 39.945363],\n\t\t\t\t\t\t[-105.127554, 39.945143],\n\t\t\t\t\t\t[-105.127553, 39.945138],\n\t\t\t\t\t\t[-105.127553, 39.945133],\n\t\t\t\t\t\t[-105.127553, 39.945123],\n\t\t\t\t\t\t[-105.127553, 39.945108],\n\t\t\t\t\t\t[-105.127553, 39.945089],\n\t\t\t\t\t\t[-105.127553, 39.945070],\n\t\t\t\t\t\t[-105.127551, 39.944610],\n\t\t\t\t\t\t[-105.127551, 39.944596],\n\t\t\t\t\t\t[-105.127545, 39.943301],\n\t\t\t\t\t\t[-105.127544, 39.943283],\n\t\t\t\t\t\t[-105.127544, 39.943266],\n\t\t\t\t\t\t[-105.127533, 39.943045],\n\t\t\t\t\t\t[-105.127532, 39.943025],\n\t\t\t\t\t\t[-105.127426, 39.940910],\n\t\t\t\t\t\t[-105.127421, 39.940817],\n\t\t\t\t\t\t[-105.127419, 39.940795],\n\t\t\t\t\t\t[-105.127410, 39.940716],\n\t\t\t\t\t\t[-105.127428, 39.939981],\n\t\t\t\t\t\t[-105.127435, 39.939818],\n\t\t\t\t\t\t[-105.127679, 39.939823],\n\t\t\t\t\t\t[-105.127884, 39.939823],\n\t\t\t\t\t\t[-105.136859, 39.939855],\n\t\t\t\t\t\t[-105.137572, 39.939858],\n\t\t\t\t\t\t[-105.137579, 39.939688],\n\t\t\t\t\t\t[-105.137592, 39.939543],\n\t\t\t\t\t\t[-105.137593, 39.939443],\n\t\t\t\t\t\t[-105.137603, 39.939249],\n\t\t\t\t\t\t[-105.137578, 39.937109],\n\t\t\t\t\t\t[-105.137631, 39.929825],\n\t\t\t\t\t\t[-105.137604, 39.928931],\n\t\t\t\t\t\t[-105.138407, 39.928938],\n\t\t\t\t\t\t[-105.138417, 39.928938],\n\t\t\t\t\t\t[-105.138625, 39.928935],\n\t\t\t\t\t\t[-105.138894, 39.928935],\n\t\t\t\t\t\t[-105.139722, 39.928935],\n\t\t\t\t\t\t[-105.141792, 39.928930],\n\t\t\t\t\t\t[-105.141848, 39.928930],\n\t\t\t\t\t\t[-105.142258, 39.928929],\n\t\t\t\t\t\t[-105.142350, 39.928929],\n\t\t\t\t\t\t[-105.142428, 39.928929],\n\t\t\t\t\t\t[-105.142523, 39.928929],\n\t\t\t\t\t\t[-105.143251, 39.928930],\n\t\t\t\t\t\t[-105.143875, 39.928931],\n\t\t\t\t\t\t[-105.146805, 39.928937],\n\t\t\t\t\t\t[-105.147015, 39.928938],\n\t\t\t\t\t\t[-105.147120, 39.928939],\n\t\t\t\t\t\t[-105.147127, 39.928939],\n\t\t\t\t\t\t[-105.147129, 39.928817],\n\t\t\t\t\t\t[-105.147134, 39.928479],\n\t\t\t\t\t\t[-105.147134, 39.928467],\n\t\t\t\t\t\t[-105.147134, 39.928453],\n\t\t\t\t\t\t[-105.147137, 39.928230],\n\t\t\t\t\t\t[-105.147147, 39.927419],\n\t\t\t\t\t\t[-105.147149, 39.927309],\n\t\t\t\t\t\t[-105.147159, 39.926641],\n\t\t\t\t\t\t[-105.147159, 39.926636],\n\t\t\t\t\t\t[-105.147179, 39.925204],\n\t\t\t\t\t\t[-105.147214, 39.922788],\n\t\t\t\t\t\t[-105.147340, 39.913991],\n\t\t\t\t\t\t[-105.147342, 39.913886],\n\t\t\t\t\t\t[-105.397849, 39.912886],\n\t\t\t\t\t\t[-105.397971, 39.934867],\n\t\t\t\t\t\t[-105.675798, 39.932445],\n\t\t\t\t\t\t[-105.638797, 40.038787],\n\t\t\t\t\t\t[-105.653321, 40.260457],\n\t\t\t\t\t\t[-105.196476, 40.261085],\n\t\t\t\t\t\t[-105.055089, 40.261793]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08014\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"014\",\n\t\t\t\t\"NAME\": \"Broomfield\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 33.034000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-105.147342, 39.913886],\n\t\t\t\t\t\t[-105.147340, 39.913991],\n\t\t\t\t\t\t[-105.147214, 39.922788],\n\t\t\t\t\t\t[-105.147179, 39.925204],\n\t\t\t\t\t\t[-105.147159, 39.926636],\n\t\t\t\t\t\t[-105.147159, 39.926641],\n\t\t\t\t\t\t[-105.147149, 39.927309],\n\t\t\t\t\t\t[-105.147147, 39.927419],\n\t\t\t\t\t\t[-105.147137, 39.928230],\n\t\t\t\t\t\t[-105.147134, 39.928453],\n\t\t\t\t\t\t[-105.147134, 39.928467],\n\t\t\t\t\t\t[-105.147134, 39.928479],\n\t\t\t\t\t\t[-105.147129, 39.928817],\n\t\t\t\t\t\t[-105.147127, 39.928939],\n\t\t\t\t\t\t[-105.147120, 39.928939],\n\t\t\t\t\t\t[-105.147015, 39.928938],\n\t\t\t\t\t\t[-105.146805, 39.928937],\n\t\t\t\t\t\t[-105.143875, 39.928931],\n\t\t\t\t\t\t[-105.143251, 39.928930],\n\t\t\t\t\t\t[-105.142523, 39.928929],\n\t\t\t\t\t\t[-105.142428, 39.928929],\n\t\t\t\t\t\t[-105.142350, 39.928929],\n\t\t\t\t\t\t[-105.142258, 39.928929],\n\t\t\t\t\t\t[-105.141848, 39.928930],\n\t\t\t\t\t\t[-105.141792, 39.928930],\n\t\t\t\t\t\t[-105.139722, 39.928935],\n\t\t\t\t\t\t[-105.138894, 39.928935],\n\t\t\t\t\t\t[-105.138625, 39.928935],\n\t\t\t\t\t\t[-105.138417, 39.928938],\n\t\t\t\t\t\t[-105.138407, 39.928938],\n\t\t\t\t\t\t[-105.137604, 39.928931],\n\t\t\t\t\t\t[-105.137631, 39.929825],\n\t\t\t\t\t\t[-105.137578, 39.937109],\n\t\t\t\t\t\t[-105.137603, 39.939249],\n\t\t\t\t\t\t[-105.137593, 39.939443],\n\t\t\t\t\t\t[-105.137592, 39.939543],\n\t\t\t\t\t\t[-105.137579, 39.939688],\n\t\t\t\t\t\t[-105.137572, 39.939858],\n\t\t\t\t\t\t[-105.136859, 39.939855],\n\t\t\t\t\t\t[-105.127884, 39.939823],\n\t\t\t\t\t\t[-105.127679, 39.939823],\n\t\t\t\t\t\t[-105.127435, 39.939818],\n\t\t\t\t\t\t[-105.127428, 39.939981],\n\t\t\t\t\t\t[-105.127410, 39.940716],\n\t\t\t\t\t\t[-105.127419, 39.940795],\n\t\t\t\t\t\t[-105.127421, 39.940817],\n\t\t\t\t\t\t[-105.127426, 39.940910],\n\t\t\t\t\t\t[-105.127532, 39.943025],\n\t\t\t\t\t\t[-105.127533, 39.943045],\n\t\t\t\t\t\t[-105.127544, 39.943266],\n\t\t\t\t\t\t[-105.127544, 39.943283],\n\t\t\t\t\t\t[-105.127545, 39.943301],\n\t\t\t\t\t\t[-105.127551, 39.944596],\n\t\t\t\t\t\t[-105.127551, 39.944610],\n\t\t\t\t\t\t[-105.127553, 39.945070],\n\t\t\t\t\t\t[-105.127553, 39.945089],\n\t\t\t\t\t\t[-105.127553, 39.945108],\n\t\t\t\t\t\t[-105.127553, 39.945123],\n\t\t\t\t\t\t[-105.127553, 39.945133],\n\t\t\t\t\t\t[-105.127553, 39.945138],\n\t\t\t\t\t\t[-105.127554, 39.945143],\n\t\t\t\t\t\t[-105.127555, 39.945363],\n\t\t\t\t\t\t[-105.127555, 39.945459],\n\t\t\t\t\t\t[-105.127557, 39.945758],\n\t\t\t\t\t\t[-105.127559, 39.946280],\n\t\t\t\t\t\t[-105.127562, 39.946850],\n\t\t\t\t\t\t[-105.127565, 39.947484],\n\t\t\t\t\t\t[-105.127579, 39.948868],\n\t\t\t\t\t\t[-105.127586, 39.949522],\n\t\t\t\t\t\t[-105.127589, 39.950717],\n\t\t\t\t\t\t[-105.127593, 39.952290],\n\t\t\t\t\t\t[-105.127593, 39.952407],\n\t\t\t\t\t\t[-105.127597, 39.954062],\n\t\t\t\t\t\t[-105.127597, 39.954179],\n\t\t\t\t\t\t[-105.127598, 39.954533],\n\t\t\t\t\t\t[-105.127321, 39.954533],\n\t\t\t\t\t\t[-105.122294, 39.954571],\n\t\t\t\t\t\t[-105.122141, 39.954166],\n\t\t\t\t\t\t[-105.121437, 39.952305],\n\t\t\t\t\t\t[-105.121241, 39.952397],\n\t\t\t\t\t\t[-105.121069, 39.952477],\n\t\t\t\t\t\t[-105.121061, 39.952481],\n\t\t\t\t\t\t[-105.120574, 39.952709],\n\t\t\t\t\t\t[-105.119345, 39.953279],\n\t\t\t\t\t\t[-105.118706, 39.953539],\n\t\t\t\t\t\t[-105.118697, 39.953543],\n\t\t\t\t\t\t[-105.117945, 39.953849],\n\t\t\t\t\t\t[-105.117838, 39.953889],\n\t\t\t\t\t\t[-105.115301, 39.954903],\n\t\t\t\t\t\t[-105.114622, 39.955152],\n\t\t\t\t\t\t[-105.113390, 39.955583],\n\t\t\t\t\t\t[-105.111782, 39.956051],\n\t\t\t\t\t\t[-105.110913, 39.956348],\n\t\t\t\t\t\t[-105.109693, 39.956749],\n\t\t\t\t\t\t[-105.109685, 39.956752],\n\t\t\t\t\t\t[-105.109391, 39.956849],\n\t\t\t\t\t\t[-105.109385, 39.956740],\n\t\t\t\t\t\t[-105.109372, 39.956506],\n\t\t\t\t\t\t[-105.109342, 39.955974],\n\t\t\t\t\t\t[-105.111034, 39.955378],\n\t\t\t\t\t\t[-105.113353, 39.954548],\n\t\t\t\t\t\t[-105.116061, 39.953657],\n\t\t\t\t\t\t[-105.117640, 39.953104],\n\t\t\t\t\t\t[-105.117840, 39.953034],\n\t\t\t\t\t\t[-105.119347, 39.952353],\n\t\t\t\t\t\t[-105.119477, 39.952297],\n\t\t\t\t\t\t[-105.119554, 39.952264],\n\t\t\t\t\t\t[-105.119574, 39.952255],\n\t\t\t\t\t\t[-105.119614, 39.952238],\n\t\t\t\t\t\t[-105.119624, 39.952234],\n\t\t\t\t\t\t[-105.119650, 39.952223],\n\t\t\t\t\t\t[-105.119781, 39.952167],\n\t\t\t\t\t\t[-105.120568, 39.951732],\n\t\t\t\t\t\t[-105.120738, 39.951613],\n\t\t\t\t\t\t[-105.120845, 39.951538],\n\t\t\t\t\t\t[-105.121089, 39.951387],\n\t\t\t\t\t\t[-105.121058, 39.951305],\n\t\t\t\t\t\t[-105.121050, 39.951283],\n\t\t\t\t\t\t[-105.121047, 39.951275],\n\t\t\t\t\t\t[-105.121045, 39.951269],\n\t\t\t\t\t\t[-105.121037, 39.951248],\n\t\t\t\t\t\t[-105.120776, 39.950548],\n\t\t\t\t\t\t[-105.120541, 39.950568],\n\t\t\t\t\t\t[-105.120532, 39.950569],\n\t\t\t\t\t\t[-105.120347, 39.950585],\n\t\t\t\t\t\t[-105.120336, 39.950585],\n\t\t\t\t\t\t[-105.118983, 39.950572],\n\t\t\t\t\t\t[-105.118833, 39.950571],\n\t\t\t\t\t\t[-105.118761, 39.950570],\n\t\t\t\t\t\t[-105.118749, 39.950570],\n\t\t\t\t\t\t[-105.118732, 39.950570],\n\t\t\t\t\t\t[-105.118715, 39.950569],\n\t\t\t\t\t\t[-105.118708, 39.950569],\n\t\t\t\t\t\t[-105.118701, 39.950569],\n\t\t\t\t\t\t[-105.118671, 39.950569],\n\t\t\t\t\t\t[-105.118577, 39.950568],\n\t\t\t\t\t\t[-105.118366, 39.950566],\n\t\t\t\t\t\t[-105.117017, 39.950553],\n\t\t\t\t\t\t[-105.115430, 39.950539],\n\t\t\t\t\t\t[-105.115419, 39.950539],\n\t\t\t\t\t\t[-105.109446, 39.950486],\n\t\t\t\t\t\t[-105.109435, 39.950486],\n\t\t\t\t\t\t[-105.109322, 39.950485],\n\t\t\t\t\t\t[-105.109321, 39.950461],\n\t\t\t\t\t\t[-105.109321, 39.950456],\n\t\t\t\t\t\t[-105.109321, 39.950451],\n\t\t\t\t\t\t[-105.109321, 39.950445],\n\t\t\t\t\t\t[-105.109321, 39.950439],\n\t\t\t\t\t\t[-105.109321, 39.950433],\n\t\t\t\t\t\t[-105.109321, 39.950426],\n\t\t\t\t\t\t[-105.109321, 39.950421],\n\t\t\t\t\t\t[-105.109321, 39.950415],\n\t\t\t\t\t\t[-105.109321, 39.950409],\n\t\t\t\t\t\t[-105.109321, 39.950401],\n\t\t\t\t\t\t[-105.109321, 39.950391],\n\t\t\t\t\t\t[-105.109321, 39.950379],\n\t\t\t\t\t\t[-105.109321, 39.950363],\n\t\t\t\t\t\t[-105.109321, 39.950341],\n\t\t\t\t\t\t[-105.109321, 39.950311],\n\t\t\t\t\t\t[-105.109321, 39.950264],\n\t\t\t\t\t\t[-105.109321, 39.950183],\n\t\t\t\t\t\t[-105.109320, 39.949529],\n\t\t\t\t\t\t[-105.109323, 39.949247],\n\t\t\t\t\t\t[-105.109323, 39.949242],\n\t\t\t\t\t\t[-105.109323, 39.949235],\n\t\t\t\t\t\t[-105.109323, 39.949220],\n\t\t\t\t\t\t[-105.109323, 39.949194],\n\t\t\t\t\t\t[-105.109323, 39.949137],\n\t\t\t\t\t\t[-105.109323, 39.949082],\n\t\t\t\t\t\t[-105.109323, 39.949032],\n\t\t\t\t\t\t[-105.109323, 39.948989],\n\t\t\t\t\t\t[-105.109323, 39.948953],\n\t\t\t\t\t\t[-105.109323, 39.948924],\n\t\t\t\t\t\t[-105.109323, 39.948834],\n\t\t\t\t\t\t[-105.109327, 39.947889],\n\t\t\t\t\t\t[-105.109327, 39.947800],\n\t\t\t\t\t\t[-105.109328, 39.947658],\n\t\t\t\t\t\t[-105.109328, 39.947569],\n\t\t\t\t\t\t[-105.109329, 39.947478],\n\t\t\t\t\t\t[-105.109329, 39.947465],\n\t\t\t\t\t\t[-105.109330, 39.947210],\n\t\t\t\t\t\t[-105.109352, 39.946282],\n\t\t\t\t\t\t[-105.109353, 39.946244],\n\t\t\t\t\t\t[-105.109353, 39.946231],\n\t\t\t\t\t\t[-105.109354, 39.946225],\n\t\t\t\t\t\t[-105.109354, 39.946216],\n\t\t\t\t\t\t[-105.109358, 39.946050],\n\t\t\t\t\t\t[-105.109360, 39.945571],\n\t\t\t\t\t\t[-105.109360, 39.945481],\n\t\t\t\t\t\t[-105.109361, 39.945185],\n\t\t\t\t\t\t[-105.109337, 39.945088],\n\t\t\t\t\t\t[-105.109327, 39.945048],\n\t\t\t\t\t\t[-105.109323, 39.945031],\n\t\t\t\t\t\t[-105.109322, 39.945026],\n\t\t\t\t\t\t[-105.109321, 39.945021],\n\t\t\t\t\t\t[-105.109110, 39.944152],\n\t\t\t\t\t\t[-105.109103, 39.944125],\n\t\t\t\t\t\t[-105.109060, 39.943255],\n\t\t\t\t\t\t[-105.109057, 39.943184],\n\t\t\t\t\t\t[-105.109261, 39.943188],\n\t\t\t\t\t\t[-105.109309, 39.943189],\n\t\t\t\t\t\t[-105.109329, 39.943190],\n\t\t\t\t\t\t[-105.109338, 39.943190],\n\t\t\t\t\t\t[-105.109353, 39.943190],\n\t\t\t\t\t\t[-105.110094, 39.943204],\n\t\t\t\t\t\t[-105.110274, 39.943204],\n\t\t\t\t\t\t[-105.118377, 39.943213],\n\t\t\t\t\t\t[-105.118557, 39.943213],\n\t\t\t\t\t\t[-105.118792, 39.943187],\n\t\t\t\t\t\t[-105.118774, 39.943169],\n\t\t\t\t\t\t[-105.118770, 39.943165],\n\t\t\t\t\t\t[-105.118733, 39.943110],\n\t\t\t\t\t\t[-105.118715, 39.943061],\n\t\t\t\t\t\t[-105.118708, 39.943013],\n\t\t\t\t\t\t[-105.118704, 39.942904],\n\t\t\t\t\t\t[-105.118711, 39.942096],\n\t\t\t\t\t\t[-105.118711, 39.942071],\n\t\t\t\t\t\t[-105.118711, 39.942047],\n\t\t\t\t\t\t[-105.118711, 39.942029],\n\t\t\t\t\t\t[-105.118711, 39.942018],\n\t\t\t\t\t\t[-105.118711, 39.942011],\n\t\t\t\t\t\t[-105.118712, 39.942004],\n\t\t\t\t\t\t[-105.118718, 39.941225],\n\t\t\t\t\t\t[-105.118721, 39.939338],\n\t\t\t\t\t\t[-105.118721, 39.939269],\n\t\t\t\t\t\t[-105.118721, 39.939248],\n\t\t\t\t\t\t[-105.118721, 39.939174],\n\t\t\t\t\t\t[-105.118721, 39.939033],\n\t\t\t\t\t\t[-105.118722, 39.938463],\n\t\t\t\t\t\t[-105.118722, 39.937527],\n\t\t\t\t\t\t[-105.118722, 39.937324],\n\t\t\t\t\t\t[-105.118735, 39.936811],\n\t\t\t\t\t\t[-105.118747, 39.936383],\n\t\t\t\t\t\t[-105.118752, 39.936199],\n\t\t\t\t\t\t[-105.118752, 39.936194],\n\t\t\t\t\t\t[-105.118745, 39.935979],\n\t\t\t\t\t\t[-105.118743, 39.935910],\n\t\t\t\t\t\t[-105.118738, 39.935874],\n\t\t\t\t\t\t[-105.118735, 39.935856],\n\t\t\t\t\t\t[-105.118734, 39.935851],\n\t\t\t\t\t\t[-105.118732, 39.935845],\n\t\t\t\t\t\t[-105.118730, 39.935839],\n\t\t\t\t\t\t[-105.118729, 39.935834],\n\t\t\t\t\t\t[-105.118714, 39.935780],\n\t\t\t\t\t\t[-105.118694, 39.935730],\n\t\t\t\t\t\t[-105.118676, 39.935685],\n\t\t\t\t\t\t[-105.118674, 39.935679],\n\t\t\t\t\t\t[-105.118671, 39.935671],\n\t\t\t\t\t\t[-105.118659, 39.935640],\n\t\t\t\t\t\t[-105.118607, 39.935530],\n\t\t\t\t\t\t[-105.118601, 39.935517],\n\t\t\t\t\t\t[-105.118598, 39.935510],\n\t\t\t\t\t\t[-105.118593, 39.935500],\n\t\t\t\t\t\t[-105.118569, 39.935451],\n\t\t\t\t\t\t[-105.118545, 39.935402],\n\t\t\t\t\t\t[-105.118482, 39.935254],\n\t\t\t\t\t\t[-105.118480, 39.935249],\n\t\t\t\t\t\t[-105.118466, 39.935216],\n\t\t\t\t\t\t[-105.118446, 39.935113],\n\t\t\t\t\t\t[-105.118448, 39.935068],\n\t\t\t\t\t\t[-105.118449, 39.935048],\n\t\t\t\t\t\t[-105.118459, 39.934996],\n\t\t\t\t\t\t[-105.118468, 39.934947],\n\t\t\t\t\t\t[-105.118507, 39.934844],\n\t\t\t\t\t\t[-105.118727, 39.934454],\n\t\t\t\t\t\t[-105.118730, 39.934449],\n\t\t\t\t\t\t[-105.118801, 39.934323],\n\t\t\t\t\t\t[-105.118861, 39.934198],\n\t\t\t\t\t\t[-105.118904, 39.934077],\n\t\t\t\t\t\t[-105.118934, 39.933940],\n\t\t\t\t\t\t[-105.118946, 39.933841],\n\t\t\t\t\t\t[-105.118946, 39.933833],\n\t\t\t\t\t\t[-105.118947, 39.933783],\n\t\t\t\t\t\t[-105.118828, 39.933841],\n\t\t\t\t\t\t[-105.117035, 39.932337],\n\t\t\t\t\t\t[-105.116828, 39.932164],\n\t\t\t\t\t\t[-105.116795, 39.932137],\n\t\t\t\t\t\t[-105.116589, 39.931964],\n\t\t\t\t\t\t[-105.114437, 39.930166],\n\t\t\t\t\t\t[-105.114057, 39.929400],\n\t\t\t\t\t\t[-105.114064, 39.929181],\n\t\t\t\t\t\t[-105.114072, 39.929052],\n\t\t\t\t\t\t[-105.114036, 39.928981],\n\t\t\t\t\t\t[-105.113969, 39.928841],\n\t\t\t\t\t\t[-105.113867, 39.928629],\n\t\t\t\t\t\t[-105.113859, 39.928611],\n\t\t\t\t\t\t[-105.113835, 39.928556],\n\t\t\t\t\t\t[-105.113833, 39.928551],\n\t\t\t\t\t\t[-105.113830, 39.928545],\n\t\t\t\t\t\t[-105.113827, 39.928538],\n\t\t\t\t\t\t[-105.113808, 39.928493],\n\t\t\t\t\t\t[-105.113771, 39.928394],\n\t\t\t\t\t\t[-105.113759, 39.928362],\n\t\t\t\t\t\t[-105.113707, 39.928188],\n\t\t\t\t\t\t[-105.113691, 39.928115],\n\t\t\t\t\t\t[-105.113690, 39.928108],\n\t\t\t\t\t\t[-105.113665, 39.927993],\n\t\t\t\t\t\t[-105.113599, 39.927681],\n\t\t\t\t\t\t[-105.113597, 39.927673],\n\t\t\t\t\t\t[-105.113595, 39.927665],\n\t\t\t\t\t\t[-105.113594, 39.927659],\n\t\t\t\t\t\t[-105.113586, 39.927621],\n\t\t\t\t\t\t[-105.113542, 39.927488],\n\t\t\t\t\t\t[-105.113532, 39.927457],\n\t\t\t\t\t\t[-105.113529, 39.927449],\n\t\t\t\t\t\t[-105.113523, 39.927430],\n\t\t\t\t\t\t[-105.113472, 39.927321],\n\t\t\t\t\t\t[-105.113403, 39.927204],\n\t\t\t\t\t\t[-105.113325, 39.927097],\n\t\t\t\t\t\t[-105.113261, 39.927021],\n\t\t\t\t\t\t[-105.113212, 39.926969],\n\t\t\t\t\t\t[-105.113159, 39.926912],\n\t\t\t\t\t\t[-105.113051, 39.926808],\n\t\t\t\t\t\t[-105.112985, 39.926748],\n\t\t\t\t\t\t[-105.112980, 39.926744],\n\t\t\t\t\t\t[-105.112934, 39.926702],\n\t\t\t\t\t\t[-105.112903, 39.926674],\n\t\t\t\t\t\t[-105.112897, 39.926669],\n\t\t\t\t\t\t[-105.112887, 39.926660],\n\t\t\t\t\t\t[-105.112883, 39.926656],\n\t\t\t\t\t\t[-105.112799, 39.926579],\n\t\t\t\t\t\t[-105.112755, 39.926541],\n\t\t\t\t\t\t[-105.112653, 39.926453],\n\t\t\t\t\t\t[-105.112369, 39.926207],\n\t\t\t\t\t\t[-105.112362, 39.926201],\n\t\t\t\t\t\t[-105.112355, 39.926195],\n\t\t\t\t\t\t[-105.112274, 39.926129],\n\t\t\t\t\t\t[-105.112265, 39.926122],\n\t\t\t\t\t\t[-105.112246, 39.926106],\n\t\t\t\t\t\t[-105.111921, 39.925841],\n\t\t\t\t\t\t[-105.111851, 39.925791],\n\t\t\t\t\t\t[-105.111845, 39.925787],\n\t\t\t\t\t\t[-105.111823, 39.925771],\n\t\t\t\t\t\t[-105.111682, 39.925669],\n\t\t\t\t\t\t[-105.111659, 39.925654],\n\t\t\t\t\t\t[-105.111645, 39.925645],\n\t\t\t\t\t\t[-105.111631, 39.925636],\n\t\t\t\t\t\t[-105.111475, 39.925532],\n\t\t\t\t\t\t[-105.111383, 39.925475],\n\t\t\t\t\t\t[-105.111376, 39.925471],\n\t\t\t\t\t\t[-105.111315, 39.925433],\n\t\t\t\t\t\t[-105.110993, 39.925233],\n\t\t\t\t\t\t[-105.110983, 39.925227],\n\t\t\t\t\t\t[-105.110974, 39.925221],\n\t\t\t\t\t\t[-105.110958, 39.925211],\n\t\t\t\t\t\t[-105.110903, 39.925177],\n\t\t\t\t\t\t[-105.110870, 39.925157],\n\t\t\t\t\t\t[-105.110800, 39.925114],\n\t\t\t\t\t\t[-105.110794, 39.925110],\n\t\t\t\t\t\t[-105.110782, 39.925103],\n\t\t\t\t\t\t[-105.110767, 39.925094],\n\t\t\t\t\t\t[-105.110747, 39.925082],\n\t\t\t\t\t\t[-105.110628, 39.925009],\n\t\t\t\t\t\t[-105.110454, 39.924908],\n\t\t\t\t\t\t[-105.110214, 39.924770],\n\t\t\t\t\t\t[-105.110077, 39.924698],\n\t\t\t\t\t\t[-105.110070, 39.924695],\n\t\t\t\t\t\t[-105.110061, 39.924690],\n\t\t\t\t\t\t[-105.110043, 39.924680],\n\t\t\t\t\t\t[-105.110027, 39.924671],\n\t\t\t\t\t\t[-105.109980, 39.924648],\n\t\t\t\t\t\t[-105.109965, 39.924641],\n\t\t\t\t\t\t[-105.109921, 39.924620],\n\t\t\t\t\t\t[-105.109826, 39.924575],\n\t\t\t\t\t\t[-105.109641, 39.924507],\n\t\t\t\t\t\t[-105.109527, 39.924473],\n\t\t\t\t\t\t[-105.109412, 39.924438],\n\t\t\t\t\t\t[-105.109142, 39.924356],\n\t\t\t\t\t\t[-105.109141, 39.924586],\n\t\t\t\t\t\t[-105.109052, 39.925619],\n\t\t\t\t\t\t[-105.109043, 39.925744],\n\t\t\t\t\t\t[-105.109023, 39.925874],\n\t\t\t\t\t\t[-105.109259, 39.926022],\n\t\t\t\t\t\t[-105.109267, 39.926027],\n\t\t\t\t\t\t[-105.110584, 39.926850],\n\t\t\t\t\t\t[-105.110917, 39.927058],\n\t\t\t\t\t\t[-105.111189, 39.927252],\n\t\t\t\t\t\t[-105.111479, 39.927488],\n\t\t\t\t\t\t[-105.111558, 39.927560],\n\t\t\t\t\t\t[-105.111784, 39.927785],\n\t\t\t\t\t\t[-105.111966, 39.927989],\n\t\t\t\t\t\t[-105.112120, 39.928185],\n\t\t\t\t\t\t[-105.112132, 39.928200],\n\t\t\t\t\t\t[-105.112190, 39.928284],\n\t\t\t\t\t\t[-105.112269, 39.928399],\n\t\t\t\t\t\t[-105.112407, 39.928625],\n\t\t\t\t\t\t[-105.112408, 39.928626],\n\t\t\t\t\t\t[-105.113296, 39.930249],\n\t\t\t\t\t\t[-105.113446, 39.930541],\n\t\t\t\t\t\t[-105.113515, 39.930702],\n\t\t\t\t\t\t[-105.113569, 39.930862],\n\t\t\t\t\t\t[-105.113575, 39.930882],\n\t\t\t\t\t\t[-105.113579, 39.930895],\n\t\t\t\t\t\t[-105.113606, 39.930994],\n\t\t\t\t\t\t[-105.113636, 39.931163],\n\t\t\t\t\t\t[-105.113650, 39.931279],\n\t\t\t\t\t\t[-105.113657, 39.931440],\n\t\t\t\t\t\t[-105.113652, 39.931597],\n\t\t\t\t\t\t[-105.113626, 39.931805],\n\t\t\t\t\t\t[-105.113597, 39.931942],\n\t\t\t\t\t\t[-105.113566, 39.932055],\n\t\t\t\t\t\t[-105.113544, 39.932118],\n\t\t\t\t\t\t[-105.113541, 39.932126],\n\t\t\t\t\t\t[-105.113488, 39.932275],\n\t\t\t\t\t\t[-105.113388, 39.932479],\n\t\t\t\t\t\t[-105.113301, 39.932627],\n\t\t\t\t\t\t[-105.113232, 39.932731],\n\t\t\t\t\t\t[-105.113155, 39.932830],\n\t\t\t\t\t\t[-105.112975, 39.933034],\n\t\t\t\t\t\t[-105.112874, 39.933133],\n\t\t\t\t\t\t[-105.112775, 39.933219],\n\t\t\t\t\t\t[-105.112504, 39.933426],\n\t\t\t\t\t\t[-105.112368, 39.933518],\n\t\t\t\t\t\t[-105.112311, 39.933555],\n\t\t\t\t\t\t[-105.112293, 39.933567],\n\t\t\t\t\t\t[-105.110014, 39.935039],\n\t\t\t\t\t\t[-105.109979, 39.935062],\n\t\t\t\t\t\t[-105.109358, 39.935463],\n\t\t\t\t\t\t[-105.109224, 39.935546],\n\t\t\t\t\t\t[-105.109041, 39.935664],\n\t\t\t\t\t\t[-105.109041, 39.935754],\n\t\t\t\t\t\t[-105.109039, 39.936061],\n\t\t\t\t\t\t[-105.109039, 39.936095],\n\t\t\t\t\t\t[-105.109039, 39.936114],\n\t\t\t\t\t\t[-105.109039, 39.936119],\n\t\t\t\t\t\t[-105.109038, 39.936124],\n\t\t\t\t\t\t[-105.109038, 39.936134],\n\t\t\t\t\t\t[-105.109036, 39.936484],\n\t\t\t\t\t\t[-105.108790, 39.936468],\n\t\t\t\t\t\t[-105.108746, 39.936465],\n\t\t\t\t\t\t[-105.108727, 39.936464],\n\t\t\t\t\t\t[-105.108704, 39.936463],\n\t\t\t\t\t\t[-105.108678, 39.936461],\n\t\t\t\t\t\t[-105.108020, 39.936419],\n\t\t\t\t\t\t[-105.107985, 39.936417],\n\t\t\t\t\t\t[-105.107886, 39.936411],\n\t\t\t\t\t\t[-105.107539, 39.936386],\n\t\t\t\t\t\t[-105.102808, 39.936386],\n\t\t\t\t\t\t[-105.102719, 39.936386],\n\t\t\t\t\t\t[-105.093793, 39.936385],\n\t\t\t\t\t\t[-105.091010, 39.936386],\n\t\t\t\t\t\t[-105.090990, 39.936387],\n\t\t\t\t\t\t[-105.090944, 39.936387],\n\t\t\t\t\t\t[-105.090854, 39.936386],\n\t\t\t\t\t\t[-105.090851, 39.937836],\n\t\t\t\t\t\t[-105.090830, 39.938827],\n\t\t\t\t\t\t[-105.090787, 39.939879],\n\t\t\t\t\t\t[-105.090787, 39.939887],\n\t\t\t\t\t\t[-105.090782, 39.939962],\n\t\t\t\t\t\t[-105.090798, 39.939966],\n\t\t\t\t\t\t[-105.090819, 39.939971],\n\t\t\t\t\t\t[-105.090849, 39.939979],\n\t\t\t\t\t\t[-105.090799, 39.941546],\n\t\t\t\t\t\t[-105.090912, 39.941583],\n\t\t\t\t\t\t[-105.090897, 39.943134],\n\t\t\t\t\t\t[-105.090677, 39.943135],\n\t\t\t\t\t\t[-105.090541, 39.943137],\n\t\t\t\t\t\t[-105.090532, 39.943137],\n\t\t\t\t\t\t[-105.090324, 39.943137],\n\t\t\t\t\t\t[-105.090305, 39.943137],\n\t\t\t\t\t\t[-105.085739, 39.943185],\n\t\t\t\t\t\t[-105.076101, 39.943185],\n\t\t\t\t\t\t[-105.076101, 39.943456],\n\t\t\t\t\t\t[-105.076101, 39.943726],\n\t\t\t\t\t\t[-105.076101, 39.943904],\n\t\t\t\t\t\t[-105.076101, 39.944607],\n\t\t\t\t\t\t[-105.076102, 39.946353],\n\t\t\t\t\t\t[-105.076102, 39.946892],\n\t\t\t\t\t\t[-105.076102, 39.947048],\n\t\t\t\t\t\t[-105.076102, 39.947539],\n\t\t\t\t\t\t[-105.076104, 39.950592],\n\t\t\t\t\t\t[-105.075827, 39.950592],\n\t\t\t\t\t\t[-105.072518, 39.950586],\n\t\t\t\t\t\t[-105.072241, 39.950586],\n\t\t\t\t\t\t[-105.071893, 39.950585],\n\t\t\t\t\t\t[-105.071738, 39.950585],\n\t\t\t\t\t\t[-105.071778, 39.957502],\n\t\t\t\t\t\t[-105.071780, 39.957785],\n\t\t\t\t\t\t[-105.071854, 39.957785],\n\t\t\t\t\t\t[-105.071916, 39.957785],\n\t\t\t\t\t\t[-105.071933, 39.957785],\n\t\t\t\t\t\t[-105.072278, 39.957787],\n\t\t\t\t\t\t[-105.074639, 39.957800],\n\t\t\t\t\t\t[-105.075312, 39.957802],\n\t\t\t\t\t\t[-105.075858, 39.957803],\n\t\t\t\t\t\t[-105.076586, 39.957805],\n\t\t\t\t\t\t[-105.076823, 39.957805],\n\t\t\t\t\t\t[-105.077331, 39.957810],\n\t\t\t\t\t\t[-105.079166, 39.957826],\n\t\t\t\t\t\t[-105.079302, 39.957829],\n\t\t\t\t\t\t[-105.079729, 39.957840],\n\t\t\t\t\t\t[-105.080028, 39.957847],\n\t\t\t\t\t\t[-105.080305, 39.957808],\n\t\t\t\t\t\t[-105.080602, 39.957822],\n\t\t\t\t\t\t[-105.080966, 39.957839],\n\t\t\t\t\t\t[-105.082448, 39.957908],\n\t\t\t\t\t\t[-105.082455, 39.957908],\n\t\t\t\t\t\t[-105.082463, 39.957908],\n\t\t\t\t\t\t[-105.082534, 39.957911],\n\t\t\t\t\t\t[-105.082756, 39.957912],\n\t\t\t\t\t\t[-105.082768, 39.957912],\n\t\t\t\t\t\t[-105.082801, 39.957912],\n\t\t\t\t\t\t[-105.083261, 39.957915],\n\t\t\t\t\t\t[-105.083267, 39.958267],\n\t\t\t\t\t\t[-105.083963, 39.958302],\n\t\t\t\t\t\t[-105.084891, 39.958201],\n\t\t\t\t\t\t[-105.085379, 39.958088],\n\t\t\t\t\t\t[-105.085410, 39.958081],\n\t\t\t\t\t\t[-105.085476, 39.958066],\n\t\t\t\t\t\t[-105.085550, 39.958050],\n\t\t\t\t\t\t[-105.085611, 39.958036],\n\t\t\t\t\t\t[-105.085638, 39.958030],\n\t\t\t\t\t\t[-105.085650, 39.958027],\n\t\t\t\t\t\t[-105.085663, 39.958024],\n\t\t\t\t\t\t[-105.085673, 39.958022],\n\t\t\t\t\t\t[-105.085683, 39.958020],\n\t\t\t\t\t\t[-105.085702, 39.958016],\n\t\t\t\t\t\t[-105.085717, 39.958003],\n\t\t\t\t\t\t[-105.085734, 39.957988],\n\t\t\t\t\t\t[-105.085754, 39.957971],\n\t\t\t\t\t\t[-105.085794, 39.957938],\n\t\t\t\t\t\t[-105.085846, 39.957893],\n\t\t\t\t\t\t[-105.086861, 39.957849],\n\t\t\t\t\t\t[-105.086948, 39.957843],\n\t\t\t\t\t\t[-105.087315, 39.957833],\n\t\t\t\t\t\t[-105.087724, 39.957838],\n\t\t\t\t\t\t[-105.087834, 39.957839],\n\t\t\t\t\t\t[-105.087841, 39.957839],\n\t\t\t\t\t\t[-105.087870, 39.957840],\n\t\t\t\t\t\t[-105.088298, 39.957851],\n\t\t\t\t\t\t[-105.088332, 39.957853],\n\t\t\t\t\t\t[-105.088441, 39.957858],\n\t\t\t\t\t\t[-105.088588, 39.957865],\n\t\t\t\t\t\t[-105.088597, 39.957919],\n\t\t\t\t\t\t[-105.088613, 39.958030],\n\t\t\t\t\t\t[-105.088614, 39.958037],\n\t\t\t\t\t\t[-105.088615, 39.958042],\n\t\t\t\t\t\t[-105.088616, 39.958052],\n\t\t\t\t\t\t[-105.088636, 39.958182],\n\t\t\t\t\t\t[-105.087748, 39.958197],\n\t\t\t\t\t\t[-105.087748, 39.958707],\n\t\t\t\t\t\t[-105.087748, 39.958880],\n\t\t\t\t\t\t[-105.087748, 39.959571],\n\t\t\t\t\t\t[-105.087393, 39.959555],\n\t\t\t\t\t\t[-105.087310, 39.959551],\n\t\t\t\t\t\t[-105.087033, 39.959538],\n\t\t\t\t\t\t[-105.086951, 39.959741],\n\t\t\t\t\t\t[-105.086858, 39.959972],\n\t\t\t\t\t\t[-105.086082, 39.960043],\n\t\t\t\t\t\t[-105.086002, 39.960050],\n\t\t\t\t\t\t[-105.085982, 39.960052],\n\t\t\t\t\t\t[-105.085961, 39.960054],\n\t\t\t\t\t\t[-105.085950, 39.960055],\n\t\t\t\t\t\t[-105.085942, 39.960055],\n\t\t\t\t\t\t[-105.085877, 39.960061],\n\t\t\t\t\t\t[-105.085764, 39.960084],\n\t\t\t\t\t\t[-105.085583, 39.960123],\n\t\t\t\t\t\t[-105.084027, 39.960454],\n\t\t\t\t\t\t[-105.082093, 39.960967],\n\t\t\t\t\t\t[-105.081957, 39.961003],\n\t\t\t\t\t\t[-105.080562, 39.961373],\n\t\t\t\t\t\t[-105.079990, 39.961613],\n\t\t\t\t\t\t[-105.079885, 39.961657],\n\t\t\t\t\t\t[-105.078632, 39.962182],\n\t\t\t\t\t\t[-105.075700, 39.964623],\n\t\t\t\t\t\t[-105.074735, 39.965752],\n\t\t\t\t\t\t[-105.073059, 39.967308],\n\t\t\t\t\t\t[-105.071886, 39.968544],\n\t\t\t\t\t\t[-105.070468, 39.969721],\n\t\t\t\t\t\t[-105.069605, 39.970227],\n\t\t\t\t\t\t[-105.067420, 39.971289],\n\t\t\t\t\t\t[-105.066609, 39.971925],\n\t\t\t\t\t\t[-105.063527, 39.973444],\n\t\t\t\t\t\t[-105.060968, 39.974563],\n\t\t\t\t\t\t[-105.060445, 39.974768],\n\t\t\t\t\t\t[-105.058567, 39.975502],\n\t\t\t\t\t\t[-105.057840, 39.975787],\n\t\t\t\t\t\t[-105.057654, 39.975860],\n\t\t\t\t\t\t[-105.054688, 39.976889],\n\t\t\t\t\t\t[-105.052797, 39.977574],\n\t\t\t\t\t\t[-105.052794, 39.978581],\n\t\t\t\t\t\t[-105.052793, 39.978790],\n\t\t\t\t\t\t[-105.052792, 39.979489],\n\t\t\t\t\t\t[-105.052774, 39.986398],\n\t\t\t\t\t\t[-105.052823, 40.000260],\n\t\t\t\t\t\t[-105.052809, 40.000260],\n\t\t\t\t\t\t[-105.047106, 40.000264],\n\t\t\t\t\t\t[-105.046237, 40.000265],\n\t\t\t\t\t\t[-105.046049, 40.000265],\n\t\t\t\t\t\t[-105.045672, 40.000266],\n\t\t\t\t\t\t[-105.044051, 40.000267],\n\t\t\t\t\t\t[-105.043920, 40.000267],\n\t\t\t\t\t\t[-105.041853, 40.000267],\n\t\t\t\t\t\t[-105.038601, 40.000268],\n\t\t\t\t\t\t[-105.037075, 40.000280],\n\t\t\t\t\t\t[-105.027620, 40.000263],\n\t\t\t\t\t\t[-105.022384, 40.000286],\n\t\t\t\t\t\t[-105.017772, 40.000307],\n\t\t\t\t\t\t[-105.017365, 40.000307],\n\t\t\t\t\t\t[-105.016009, 40.000308],\n\t\t\t\t\t\t[-105.015186, 40.000290],\n\t\t\t\t\t\t[-105.014591, 40.000285],\n\t\t\t\t\t\t[-105.011790, 40.000292],\n\t\t\t\t\t\t[-105.011684, 40.000292],\n\t\t\t\t\t\t[-105.011008, 40.000294],\n\t\t\t\t\t\t[-105.010347, 40.000289],\n\t\t\t\t\t\t[-105.010221, 40.000288],\n\t\t\t\t\t\t[-105.009432, 40.000289],\n\t\t\t\t\t\t[-105.008903, 40.000290],\n\t\t\t\t\t\t[-105.008926, 40.002527],\n\t\t\t\t\t\t[-105.008928, 40.002694],\n\t\t\t\t\t\t[-105.008930, 40.002954],\n\t\t\t\t\t\t[-105.008944, 40.004260],\n\t\t\t\t\t\t[-105.008961, 40.005764],\n\t\t\t\t\t\t[-105.008979, 40.007435],\n\t\t\t\t\t\t[-105.008555, 40.007444],\n\t\t\t\t\t\t[-105.008475, 40.007445],\n\t\t\t\t\t\t[-105.008426, 40.005772],\n\t\t\t\t\t\t[-105.008402, 40.002531],\n\t\t\t\t\t\t[-105.008402, 40.000290],\n\t\t\t\t\t\t[-105.007904, 40.000292],\n\t\t\t\t\t\t[-105.007929, 40.002536],\n\t\t\t\t\t\t[-105.007954, 40.005780],\n\t\t\t\t\t\t[-105.007999, 40.007455],\n\t\t\t\t\t\t[-104.999082, 40.007648],\n\t\t\t\t\t\t[-104.998528, 40.007646],\n\t\t\t\t\t\t[-104.998519, 40.007646],\n\t\t\t\t\t\t[-104.998486, 40.007646],\n\t\t\t\t\t\t[-104.996945, 40.007653],\n\t\t\t\t\t\t[-104.996885, 40.007653],\n\t\t\t\t\t\t[-104.996879, 40.007653],\n\t\t\t\t\t\t[-104.996858, 40.007653],\n\t\t\t\t\t\t[-104.996849, 40.007653],\n\t\t\t\t\t\t[-104.996841, 40.007654],\n\t\t\t\t\t\t[-104.996822, 40.007654],\n\t\t\t\t\t\t[-104.996810, 40.007654],\n\t\t\t\t\t\t[-104.996801, 40.007654],\n\t\t\t\t\t\t[-104.996779, 40.007654],\n\t\t\t\t\t\t[-104.996716, 40.007654],\n\t\t\t\t\t\t[-104.996653, 40.007654],\n\t\t\t\t\t\t[-104.996609, 40.007654],\n\t\t\t\t\t\t[-104.996576, 40.007654],\n\t\t\t\t\t\t[-104.996551, 40.007654],\n\t\t\t\t\t\t[-104.996532, 40.007654],\n\t\t\t\t\t\t[-104.996517, 40.007654],\n\t\t\t\t\t\t[-104.996506, 40.007654],\n\t\t\t\t\t\t[-104.996497, 40.007654],\n\t\t\t\t\t\t[-104.996490, 40.007654],\n\t\t\t\t\t\t[-104.996484, 40.007654],\n\t\t\t\t\t\t[-104.995974, 40.007651],\n\t\t\t\t\t\t[-104.995175, 40.007656],\n\t\t\t\t\t\t[-104.994335, 40.007655],\n\t\t\t\t\t\t[-104.992009, 40.007666],\n\t\t\t\t\t\t[-104.989819, 40.007681],\n\t\t\t\t\t\t[-104.989727, 40.007680],\n\t\t\t\t\t\t[-104.989647, 40.007679],\n\t\t\t\t\t\t[-104.989645, 40.007971],\n\t\t\t\t\t\t[-104.989614, 40.014890],\n\t\t\t\t\t\t[-104.992735, 40.014899],\n\t\t\t\t\t\t[-104.997215, 40.014887],\n\t\t\t\t\t\t[-104.999065, 40.014887],\n\t\t\t\t\t\t[-104.999073, 40.015907],\n\t\t\t\t\t\t[-104.999073, 40.015939],\n\t\t\t\t\t\t[-104.999001, 40.015997],\n\t\t\t\t\t\t[-104.998990, 40.016004],\n\t\t\t\t\t\t[-104.998787, 40.016129],\n\t\t\t\t\t\t[-104.998566, 40.016393],\n\t\t\t\t\t\t[-104.998452, 40.016519],\n\t\t\t\t\t\t[-104.998016, 40.016789],\n\t\t\t\t\t\t[-104.997888, 40.016943],\n\t\t\t\t\t\t[-104.997874, 40.017107],\n\t\t\t\t\t\t[-104.997788, 40.017333],\n\t\t\t\t\t\t[-104.997746, 40.017668],\n\t\t\t\t\t\t[-104.997603, 40.017832],\n\t\t\t\t\t\t[-104.997389, 40.017986],\n\t\t\t\t\t\t[-104.996989, 40.018283],\n\t\t\t\t\t\t[-104.996868, 40.018393],\n\t\t\t\t\t\t[-104.996718, 40.018640],\n\t\t\t\t\t\t[-104.996611, 40.018745],\n\t\t\t\t\t\t[-104.996404, 40.018981],\n\t\t\t\t\t\t[-104.996225, 40.019157],\n\t\t\t\t\t\t[-104.996118, 40.019366],\n\t\t\t\t\t\t[-104.995983, 40.019553],\n\t\t\t\t\t\t[-104.995897, 40.019761],\n\t\t\t\t\t\t[-104.995819, 40.019926],\n\t\t\t\t\t\t[-104.995719, 40.020052],\n\t\t\t\t\t\t[-104.995633, 40.020195],\n\t\t\t\t\t\t[-104.995683, 40.020437],\n\t\t\t\t\t\t[-104.995826, 40.020574],\n\t\t\t\t\t\t[-104.995984, 40.020624],\n\t\t\t\t\t\t[-104.996248, 40.020640],\n\t\t\t\t\t\t[-104.996627, 40.020585],\n\t\t\t\t\t\t[-104.997168, 40.020598],\n\t\t\t\t\t\t[-104.997284, 40.020600],\n\t\t\t\t\t\t[-104.997312, 40.020601],\n\t\t\t\t\t\t[-104.997391, 40.020625],\n\t\t\t\t\t\t[-104.997415, 40.020633],\n\t\t\t\t\t\t[-104.997816, 40.020631],\n\t\t\t\t\t\t[-104.999047, 40.020627],\n\t\t\t\t\t\t[-104.999110, 40.020633],\n\t\t\t\t\t\t[-104.999109, 40.021002],\n\t\t\t\t\t\t[-104.998729, 40.021001],\n\t\t\t\t\t\t[-104.998587, 40.020911],\n\t\t\t\t\t\t[-104.997427, 40.020935],\n\t\t\t\t\t\t[-104.997428, 40.020946],\n\t\t\t\t\t\t[-104.997391, 40.020936],\n\t\t\t\t\t\t[-104.996769, 40.020950],\n\t\t\t\t\t\t[-104.996753, 40.022423],\n\t\t\t\t\t\t[-104.996742, 40.023509],\n\t\t\t\t\t\t[-104.997354, 40.023511],\n\t\t\t\t\t\t[-104.997537, 40.023510],\n\t\t\t\t\t\t[-104.999116, 40.023509],\n\t\t\t\t\t\t[-104.999116, 40.023657],\n\t\t\t\t\t\t[-104.999117, 40.023998],\n\t\t\t\t\t\t[-104.999117, 40.025288],\n\t\t\t\t\t\t[-104.999122, 40.025928],\n\t\t\t\t\t\t[-104.994836, 40.025954],\n\t\t\t\t\t\t[-104.994802, 40.025954],\n\t\t\t\t\t\t[-104.994559, 40.025956],\n\t\t\t\t\t\t[-104.994316, 40.025958],\n\t\t\t\t\t\t[-104.991594, 40.025973],\n\t\t\t\t\t\t[-104.991419, 40.025974],\n\t\t\t\t\t\t[-104.991244, 40.025975],\n\t\t\t\t\t\t[-104.989739, 40.025984],\n\t\t\t\t\t\t[-104.986513, 40.026003],\n\t\t\t\t\t\t[-104.986523, 40.028536],\n\t\t\t\t\t\t[-104.986482, 40.028536],\n\t\t\t\t\t\t[-104.986503, 40.029405],\n\t\t\t\t\t\t[-104.986048, 40.029406],\n\t\t\t\t\t\t[-104.985420, 40.029407],\n\t\t\t\t\t\t[-104.981995, 40.029412],\n\t\t\t\t\t\t[-104.980994, 40.029409],\n\t\t\t\t\t\t[-104.980653, 40.029406],\n\t\t\t\t\t\t[-104.980629, 40.029406],\n\t\t\t\t\t\t[-104.980330, 40.029407],\n\t\t\t\t\t\t[-104.980196, 40.029409],\n\t\t\t\t\t\t[-104.980048, 40.029411],\n\t\t\t\t\t\t[-104.980049, 40.029647],\n\t\t\t\t\t\t[-104.980051, 40.029704],\n\t\t\t\t\t\t[-104.980071, 40.030420],\n\t\t\t\t\t\t[-104.980072, 40.031203],\n\t\t\t\t\t\t[-104.980059, 40.032420],\n\t\t\t\t\t\t[-104.980058, 40.032708],\n\t\t\t\t\t\t[-104.980058, 40.032882],\n\t\t\t\t\t\t[-104.980054, 40.035048],\n\t\t\t\t\t\t[-104.980054, 40.035136],\n\t\t\t\t\t\t[-104.980054, 40.035179],\n\t\t\t\t\t\t[-104.980051, 40.036828],\n\t\t\t\t\t\t[-104.980050, 40.037516],\n\t\t\t\t\t\t[-104.980048, 40.038342],\n\t\t\t\t\t\t[-104.980047, 40.038969],\n\t\t\t\t\t\t[-104.980046, 40.039173],\n\t\t\t\t\t\t[-104.980044, 40.039560],\n\t\t\t\t\t\t[-104.980041, 40.040316],\n\t\t\t\t\t\t[-104.980037, 40.041142],\n\t\t\t\t\t\t[-104.980037, 40.041206],\n\t\t\t\t\t\t[-104.980028, 40.041676],\n\t\t\t\t\t\t[-104.980001, 40.041976],\n\t\t\t\t\t\t[-104.979967, 40.042160],\n\t\t\t\t\t\t[-104.979914, 40.042353],\n\t\t\t\t\t\t[-104.979427, 40.043679],\n\t\t\t\t\t\t[-104.979344, 40.043951],\n\t\t\t\t\t\t[-104.976919, 40.043987],\n\t\t\t\t\t\t[-104.976435, 40.043994],\n\t\t\t\t\t\t[-104.973879, 40.044033],\n\t\t\t\t\t\t[-104.973448, 40.044039],\n\t\t\t\t\t\t[-104.972908, 40.044040],\n\t\t\t\t\t\t[-104.971161, 40.044061],\n\t\t\t\t\t\t[-104.970727, 40.044069],\n\t\t\t\t\t\t[-104.969589, 40.044089],\n\t\t\t\t\t\t[-104.968129, 40.044096],\n\t\t\t\t\t\t[-104.967371, 40.044109],\n\t\t\t\t\t\t[-104.966526, 40.044123],\n\t\t\t\t\t\t[-104.964109, 40.044169],\n\t\t\t\t\t\t[-104.961158, 40.044227],\n\t\t\t\t\t\t[-104.961156, 40.043999],\n\t\t\t\t\t\t[-104.961151, 40.043651],\n\t\t\t\t\t\t[-104.961195, 40.041298],\n\t\t\t\t\t\t[-104.961207, 40.040774],\n\t\t\t\t\t\t[-104.961233, 40.039603],\n\t\t\t\t\t\t[-104.961249, 40.039093],\n\t\t\t\t\t\t[-104.961296, 40.037638],\n\t\t\t\t\t\t[-104.961342, 40.035757],\n\t\t\t\t\t\t[-104.961358, 40.034687],\n\t\t\t\t\t\t[-104.961375, 40.033481],\n\t\t\t\t\t\t[-104.961392, 40.030224],\n\t\t\t\t\t\t[-104.961401, 40.029459],\n\t\t\t\t\t\t[-104.961394, 40.028348],\n\t\t\t\t\t\t[-104.961393, 40.026667],\n\t\t\t\t\t\t[-104.961401, 40.026273],\n\t\t\t\t\t\t[-104.961404, 40.024959],\n\t\t\t\t\t\t[-104.961389, 40.023669],\n\t\t\t\t\t\t[-104.961388, 40.023611],\n\t\t\t\t\t\t[-104.961385, 40.021967],\n\t\t\t\t\t\t[-104.961373, 40.015292],\n\t\t\t\t\t\t[-104.961360, 40.015230],\n\t\t\t\t\t\t[-104.961325, 40.015151],\n\t\t\t\t\t\t[-104.961320, 40.014982],\n\t\t\t\t\t\t[-104.961315, 40.014770],\n\t\t\t\t\t\t[-104.961313, 40.014677],\n\t\t\t\t\t\t[-104.961312, 40.014644],\n\t\t\t\t\t\t[-104.961306, 40.014533],\n\t\t\t\t\t\t[-104.961300, 40.014321],\n\t\t\t\t\t\t[-104.961291, 40.014055],\n\t\t\t\t\t\t[-104.961291, 40.014052],\n\t\t\t\t\t\t[-104.961265, 40.013729],\n\t\t\t\t\t\t[-104.961296, 40.013687],\n\t\t\t\t\t\t[-104.961344, 40.013606],\n\t\t\t\t\t\t[-104.961375, 40.013511],\n\t\t\t\t\t\t[-104.961391, 40.013431],\n\t\t\t\t\t\t[-104.961399, 40.013205],\n\t\t\t\t\t\t[-104.961402, 40.012901],\n\t\t\t\t\t\t[-104.961398, 40.012227],\n\t\t\t\t\t\t[-104.961411, 40.010341],\n\t\t\t\t\t\t[-104.961415, 40.009766],\n\t\t\t\t\t\t[-104.961416, 40.007610],\n\t\t\t\t\t\t[-104.961426, 40.006441],\n\t\t\t\t\t\t[-104.961426, 40.005019],\n\t\t\t\t\t\t[-104.961427, 40.002654],\n\t\t\t\t\t\t[-104.961427, 40.001777],\n\t\t\t\t\t\t[-104.961413, 40.000939],\n\t\t\t\t\t\t[-104.961408, 40.000337],\n\t\t\t\t\t\t[-105.052884, 39.913795],\n\t\t\t\t\t\t[-105.147342, 39.913886]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08025\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"025\",\n\t\t\t\t\"NAME\": \"Crowley\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 787.421000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-103.501764, 38.265016],\n\t\t\t\t\t\t[-103.509364, 38.172514],\n\t\t\t\t\t\t[-103.619283, 38.171455],\n\t\t\t\t\t\t[-103.619172, 38.113355],\n\t\t\t\t\t\t[-103.835616, 38.113340],\n\t\t\t\t\t\t[-104.058242, 38.146492],\n\t\t\t\t\t\t[-104.053921, 38.522393],\n\t\t\t\t\t\t[-103.504666, 38.516409],\n\t\t\t\t\t\t[-103.501764, 38.265016]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08031\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"031\",\n\t\t\t\t\"NAME\": \"Denver\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 153.000000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-105.053439, 39.621423],\n\t\t\t\t\t\t[-105.059305, 39.614337],\n\t\t\t\t\t\t[-105.096909, 39.614423],\n\t\t\t\t\t\t[-105.092839, 39.618327],\n\t\t\t\t\t\t[-105.092543, 39.618328],\n\t\t\t\t\t\t[-105.091657, 39.618333],\n\t\t\t\t\t\t[-105.091362, 39.618336],\n\t\t\t\t\t\t[-105.091123, 39.618331],\n\t\t\t\t\t\t[-105.090115, 39.618312],\n\t\t\t\t\t\t[-105.087826, 39.618319],\n\t\t\t\t\t\t[-105.087252, 39.618317],\n\t\t\t\t\t\t[-105.087031, 39.618339],\n\t\t\t\t\t\t[-105.086820, 39.618412],\n\t\t\t\t\t\t[-105.086680, 39.618478],\n\t\t\t\t\t\t[-105.086553, 39.618580],\n\t\t\t\t\t\t[-105.086314, 39.618808],\n\t\t\t\t\t\t[-105.086115, 39.618979],\n\t\t\t\t\t\t[-105.085928, 39.618668],\n\t\t\t\t\t\t[-105.085262, 39.618283],\n\t\t\t\t\t\t[-105.084839, 39.618411],\n\t\t\t\t\t\t[-105.084573, 39.618526],\n\t\t\t\t\t\t[-105.084221, 39.618568],\n\t\t\t\t\t\t[-105.084043, 39.618568],\n\t\t\t\t\t\t[-105.083827, 39.618569],\n\t\t\t\t\t\t[-105.083616, 39.618569],\n\t\t\t\t\t\t[-105.082983, 39.618571],\n\t\t\t\t\t\t[-105.082773, 39.618573],\n\t\t\t\t\t\t[-105.082643, 39.618574],\n\t\t\t\t\t\t[-105.082476, 39.618504],\n\t\t\t\t\t\t[-105.079398, 39.618473],\n\t\t\t\t\t\t[-105.077553, 39.618485],\n\t\t\t\t\t\t[-105.075873, 39.618508],\n\t\t\t\t\t\t[-105.074796, 39.618511],\n\t\t\t\t\t\t[-105.074518, 39.618520],\n\t\t\t\t\t\t[-105.073364, 39.618559],\n\t\t\t\t\t\t[-105.073332, 39.618559],\n\t\t\t\t\t\t[-105.072844, 39.618555],\n\t\t\t\t\t\t[-105.072819, 39.618549],\n\t\t\t\t\t\t[-105.072799, 39.618546],\n\t\t\t\t\t\t[-105.072783, 39.618546],\n\t\t\t\t\t\t[-105.072763, 39.618548],\n\t\t\t\t\t\t[-105.072746, 39.618552],\n\t\t\t\t\t\t[-105.072703, 39.618568],\n\t\t\t\t\t\t[-105.072687, 39.618573],\n\t\t\t\t\t\t[-105.072673, 39.618576],\n\t\t\t\t\t\t[-105.072655, 39.618577],\n\t\t\t\t\t\t[-105.072638, 39.618577],\n\t\t\t\t\t\t[-105.072626, 39.618576],\n\t\t\t\t\t\t[-105.072611, 39.618573],\n\t\t\t\t\t\t[-105.072508, 39.618549],\n\t\t\t\t\t\t[-105.069229, 39.618571],\n\t\t\t\t\t\t[-105.068107, 39.618589],\n\t\t\t\t\t\t[-105.067880, 39.618590],\n\t\t\t\t\t\t[-105.066937, 39.618585],\n\t\t\t\t\t\t[-105.066206, 39.618575],\n\t\t\t\t\t\t[-105.065638, 39.618590],\n\t\t\t\t\t\t[-105.065572, 39.618592],\n\t\t\t\t\t\t[-105.065519, 39.618592],\n\t\t\t\t\t\t[-105.065492, 39.618588],\n\t\t\t\t\t\t[-105.065467, 39.618588],\n\t\t\t\t\t\t[-105.065420, 39.618583],\n\t\t\t\t\t\t[-105.065141, 39.618585],\n\t\t\t\t\t\t[-105.065115, 39.619430],\n\t\t\t\t\t\t[-105.065086, 39.619588],\n\t\t\t\t\t\t[-105.065050, 39.619779],\n\t\t\t\t\t\t[-105.065039, 39.619842],\n\t\t\t\t\t\t[-105.064966, 39.620238],\n\t\t\t\t\t\t[-105.065739, 39.620586],\n\t\t\t\t\t\t[-105.065746, 39.620588],\n\t\t\t\t\t\t[-105.066141, 39.620731],\n\t\t\t\t\t\t[-105.075952, 39.624143],\n\t\t\t\t\t\t[-105.076578, 39.624365],\n\t\t\t\t\t\t[-105.076594, 39.624378],\n\t\t\t\t\t\t[-105.076072, 39.624426],\n\t\t\t\t\t\t[-105.075132, 39.624510],\n\t\t\t\t\t\t[-105.075940, 39.625274],\n\t\t\t\t\t\t[-105.076240, 39.625587],\n\t\t\t\t\t\t[-105.080240, 39.630402],\n\t\t\t\t\t\t[-105.080309, 39.630486],\n\t\t\t\t\t\t[-105.081450, 39.631858],\n\t\t\t\t\t\t[-105.081514, 39.631863],\n\t\t\t\t\t\t[-105.081639, 39.631873],\n\t\t\t\t\t\t[-105.081685, 39.631872],\n\t\t\t\t\t\t[-105.081779, 39.631873],\n\t\t\t\t\t\t[-105.083556, 39.631872],\n\t\t\t\t\t\t[-105.083546, 39.631387],\n\t\t\t\t\t\t[-105.083535, 39.630848],\n\t\t\t\t\t\t[-105.083529, 39.630155],\n\t\t\t\t\t\t[-105.083274, 39.630154],\n\t\t\t\t\t\t[-105.082510, 39.630153],\n\t\t\t\t\t\t[-105.082256, 39.630153],\n\t\t\t\t\t\t[-105.082176, 39.630152],\n\t\t\t\t\t\t[-105.081936, 39.630150],\n\t\t\t\t\t\t[-105.081856, 39.630150],\n\t\t\t\t\t\t[-105.081693, 39.630149],\n\t\t\t\t\t\t[-105.081693, 39.630115],\n\t\t\t\t\t\t[-105.081695, 39.630037],\n\t\t\t\t\t\t[-105.081701, 39.629738],\n\t\t\t\t\t\t[-105.081730, 39.628225],\n\t\t\t\t\t\t[-105.081730, 39.628168],\n\t\t\t\t\t\t[-105.081733, 39.627999],\n\t\t\t\t\t\t[-105.081735, 39.627943],\n\t\t\t\t\t\t[-105.081735, 39.627879],\n\t\t\t\t\t\t[-105.081738, 39.627687],\n\t\t\t\t\t\t[-105.081740, 39.627624],\n\t\t\t\t\t\t[-105.081740, 39.627612],\n\t\t\t\t\t\t[-105.081740, 39.627579],\n\t\t\t\t\t\t[-105.081741, 39.627568],\n\t\t\t\t\t\t[-105.082334, 39.627571],\n\t\t\t\t\t\t[-105.083897, 39.627582],\n\t\t\t\t\t\t[-105.083881, 39.627799],\n\t\t\t\t\t\t[-105.083840, 39.628391],\n\t\t\t\t\t\t[-105.083894, 39.628877],\n\t\t\t\t\t\t[-105.083939, 39.629282],\n\t\t\t\t\t\t[-105.084999, 39.629237],\n\t\t\t\t\t\t[-105.085489, 39.629217],\n\t\t\t\t\t\t[-105.085496, 39.628501],\n\t\t\t\t\t\t[-105.085508, 39.627488],\n\t\t\t\t\t\t[-105.085500, 39.626465],\n\t\t\t\t\t\t[-105.085608, 39.626465],\n\t\t\t\t\t\t[-105.086324, 39.626468],\n\t\t\t\t\t\t[-105.086449, 39.626467],\n\t\t\t\t\t\t[-105.086823, 39.626465],\n\t\t\t\t\t\t[-105.086949, 39.626465],\n\t\t\t\t\t\t[-105.087395, 39.626463],\n\t\t\t\t\t\t[-105.087647, 39.626463],\n\t\t\t\t\t\t[-105.087662, 39.627143],\n\t\t\t\t\t\t[-105.087666, 39.627320],\n\t\t\t\t\t\t[-105.087894, 39.627308],\n\t\t\t\t\t\t[-105.088340, 39.627287],\n\t\t\t\t\t\t[-105.088690, 39.627287],\n\t\t\t\t\t\t[-105.089354, 39.627286],\n\t\t\t\t\t\t[-105.089654, 39.627287],\n\t\t\t\t\t\t[-105.089902, 39.627287],\n\t\t\t\t\t\t[-105.089988, 39.627286],\n\t\t\t\t\t\t[-105.090745, 39.627288],\n\t\t\t\t\t\t[-105.091210, 39.627291],\n\t\t\t\t\t\t[-105.091214, 39.625898],\n\t\t\t\t\t\t[-105.091216, 39.624983],\n\t\t\t\t\t\t[-105.091243, 39.624593],\n\t\t\t\t\t\t[-105.091253, 39.624341],\n\t\t\t\t\t\t[-105.091256, 39.624198],\n\t\t\t\t\t\t[-105.092998, 39.624197],\n\t\t\t\t\t\t[-105.093213, 39.624197],\n\t\t\t\t\t\t[-105.093228, 39.624196],\n\t\t\t\t\t\t[-105.094461, 39.624195],\n\t\t\t\t\t\t[-105.094598, 39.624195],\n\t\t\t\t\t\t[-105.094649, 39.624196],\n\t\t\t\t\t\t[-105.094910, 39.624197],\n\t\t\t\t\t\t[-105.095563, 39.624202],\n\t\t\t\t\t\t[-105.095694, 39.624203],\n\t\t\t\t\t\t[-105.095956, 39.624205],\n\t\t\t\t\t\t[-105.096253, 39.624207],\n\t\t\t\t\t\t[-105.097144, 39.624213],\n\t\t\t\t\t\t[-105.097441, 39.624215],\n\t\t\t\t\t\t[-105.097656, 39.624216],\n\t\t\t\t\t\t[-105.098301, 39.624220],\n\t\t\t\t\t\t[-105.098516, 39.624222],\n\t\t\t\t\t\t[-105.098700, 39.624222],\n\t\t\t\t\t\t[-105.099252, 39.624222],\n\t\t\t\t\t\t[-105.099437, 39.624222],\n\t\t\t\t\t\t[-105.099738, 39.624222],\n\t\t\t\t\t\t[-105.100642, 39.624222],\n\t\t\t\t\t\t[-105.100944, 39.624223],\n\t\t\t\t\t\t[-105.101170, 39.624223],\n\t\t\t\t\t\t[-105.101848, 39.624223],\n\t\t\t\t\t\t[-105.102075, 39.624224],\n\t\t\t\t\t\t[-105.102129, 39.624224],\n\t\t\t\t\t\t[-105.102291, 39.624224],\n\t\t\t\t\t\t[-105.102346, 39.624224],\n\t\t\t\t\t\t[-105.102373, 39.624224],\n\t\t\t\t\t\t[-105.102454, 39.624224],\n\t\t\t\t\t\t[-105.102482, 39.624224],\n\t\t\t\t\t\t[-105.102524, 39.624224],\n\t\t\t\t\t\t[-105.102650, 39.624224],\n\t\t\t\t\t\t[-105.102693, 39.624224],\n\t\t\t\t\t\t[-105.103020, 39.624223],\n\t\t\t\t\t\t[-105.104002, 39.624222],\n\t\t\t\t\t\t[-105.104330, 39.624222],\n\t\t\t\t\t\t[-105.104612, 39.624221],\n\t\t\t\t\t\t[-105.105458, 39.624220],\n\t\t\t\t\t\t[-105.105741, 39.624220],\n\t\t\t\t\t\t[-105.106931, 39.624218],\n\t\t\t\t\t\t[-105.107496, 39.624218],\n\t\t\t\t\t\t[-105.107537, 39.624218],\n\t\t\t\t\t\t[-105.107894, 39.624208],\n\t\t\t\t\t\t[-105.107924, 39.624208],\n\t\t\t\t\t\t[-105.107942, 39.624208],\n\t\t\t\t\t\t[-105.108374, 39.624205],\n\t\t\t\t\t\t[-105.108376, 39.624205],\n\t\t\t\t\t\t[-105.108377, 39.624205],\n\t\t\t\t\t\t[-105.108600, 39.624208],\n\t\t\t\t\t\t[-105.108599, 39.624262],\n\t\t\t\t\t\t[-105.108597, 39.624914],\n\t\t\t\t\t\t[-105.108590, 39.626987],\n\t\t\t\t\t\t[-105.108740, 39.626987],\n\t\t\t\t\t\t[-105.109192, 39.626988],\n\t\t\t\t\t\t[-105.109343, 39.626989],\n\t\t\t\t\t\t[-105.109927, 39.626988],\n\t\t\t\t\t\t[-105.109926, 39.627080],\n\t\t\t\t\t\t[-105.109925, 39.627100],\n\t\t\t\t\t\t[-105.109922, 39.627345],\n\t\t\t\t\t\t[-105.109885, 39.629741],\n\t\t\t\t\t\t[-105.109883, 39.629897],\n\t\t\t\t\t\t[-105.109889, 39.631412],\n\t\t\t\t\t\t[-105.109893, 39.632105],\n\t\t\t\t\t\t[-105.109893, 39.632676],\n\t\t\t\t\t\t[-105.109901, 39.634040],\n\t\t\t\t\t\t[-105.109902, 39.634263],\n\t\t\t\t\t\t[-105.109901, 39.634272],\n\t\t\t\t\t\t[-105.109887, 39.634485],\n\t\t\t\t\t\t[-105.109875, 39.635069],\n\t\t\t\t\t\t[-105.109875, 39.635070],\n\t\t\t\t\t\t[-105.109875, 39.635072],\n\t\t\t\t\t\t[-105.109874, 39.635186],\n\t\t\t\t\t\t[-105.109814, 39.635188],\n\t\t\t\t\t\t[-105.101427, 39.635187],\n\t\t\t\t\t\t[-105.100841, 39.635187],\n\t\t\t\t\t\t[-105.100611, 39.635148],\n\t\t\t\t\t\t[-105.100541, 39.635136],\n\t\t\t\t\t\t[-105.099958, 39.635038],\n\t\t\t\t\t\t[-105.099708, 39.635011],\n\t\t\t\t\t\t[-105.099641, 39.634987],\n\t\t\t\t\t\t[-105.099019, 39.635037],\n\t\t\t\t\t\t[-105.098527, 39.635075],\n\t\t\t\t\t\t[-105.097052, 39.635108],\n\t\t\t\t\t\t[-105.095546, 39.635121],\n\t\t\t\t\t\t[-105.095462, 39.635121],\n\t\t\t\t\t\t[-105.093134, 39.635158],\n\t\t\t\t\t\t[-105.091582, 39.635178],\n\t\t\t\t\t\t[-105.091617, 39.635458],\n\t\t\t\t\t\t[-105.091609, 39.636546],\n\t\t\t\t\t\t[-105.091600, 39.637331],\n\t\t\t\t\t\t[-105.091598, 39.637574],\n\t\t\t\t\t\t[-105.091593, 39.638086],\n\t\t\t\t\t\t[-105.091577, 39.638729],\n\t\t\t\t\t\t[-105.091258, 39.638722],\n\t\t\t\t\t\t[-105.091100, 39.638719],\n\t\t\t\t\t\t[-105.091023, 39.638718],\n\t\t\t\t\t\t[-105.088969, 39.638703],\n\t\t\t\t\t\t[-105.088490, 39.638700],\n\t\t\t\t\t\t[-105.088349, 39.638698],\n\t\t\t\t\t\t[-105.088094, 39.638696],\n\t\t\t\t\t\t[-105.087975, 39.638696],\n\t\t\t\t\t\t[-105.087853, 39.638695],\n\t\t\t\t\t\t[-105.087804, 39.638695],\n\t\t\t\t\t\t[-105.087597, 39.638694],\n\t\t\t\t\t\t[-105.087553, 39.638693],\n\t\t\t\t\t\t[-105.087423, 39.638692],\n\t\t\t\t\t\t[-105.087380, 39.638692],\n\t\t\t\t\t\t[-105.086885, 39.638696],\n\t\t\t\t\t\t[-105.086220, 39.638703],\n\t\t\t\t\t\t[-105.085402, 39.638698],\n\t\t\t\t\t\t[-105.084908, 39.638695],\n\t\t\t\t\t\t[-105.084809, 39.638694],\n\t\t\t\t\t\t[-105.084512, 39.638693],\n\t\t\t\t\t\t[-105.084414, 39.638693],\n\t\t\t\t\t\t[-105.083866, 39.638705],\n\t\t\t\t\t\t[-105.082223, 39.638745],\n\t\t\t\t\t\t[-105.081676, 39.638759],\n\t\t\t\t\t\t[-105.081578, 39.638667],\n\t\t\t\t\t\t[-105.081589, 39.638469],\n\t\t\t\t\t\t[-105.081646, 39.637479],\n\t\t\t\t\t\t[-105.081646, 39.637475],\n\t\t\t\t\t\t[-105.081682, 39.637145],\n\t\t\t\t\t\t[-105.081683, 39.637127],\n\t\t\t\t\t\t[-105.081688, 39.637076],\n\t\t\t\t\t\t[-105.081690, 39.637059],\n\t\t\t\t\t\t[-105.081693, 39.637031],\n\t\t\t\t\t\t[-105.081702, 39.636953],\n\t\t\t\t\t\t[-105.081702, 39.636950],\n\t\t\t\t\t\t[-105.081706, 39.636924],\n\t\t\t\t\t\t[-105.081716, 39.636867],\n\t\t\t\t\t\t[-105.081657, 39.636302],\n\t\t\t\t\t\t[-105.081507, 39.636377],\n\t\t\t\t\t\t[-105.080629, 39.636800],\n\t\t\t\t\t\t[-105.078087, 39.636644],\n\t\t\t\t\t\t[-105.077240, 39.636593],\n\t\t\t\t\t\t[-105.073951, 39.636831],\n\t\t\t\t\t\t[-105.073985, 39.638739],\n\t\t\t\t\t\t[-105.074358, 39.638742],\n\t\t\t\t\t\t[-105.074846, 39.638744],\n\t\t\t\t\t\t[-105.074866, 39.638745],\n\t\t\t\t\t\t[-105.076313, 39.638737],\n\t\t\t\t\t\t[-105.076803, 39.638735],\n\t\t\t\t\t\t[-105.076807, 39.638967],\n\t\t\t\t\t\t[-105.076797, 39.639153],\n\t\t\t\t\t\t[-105.076773, 39.639353],\n\t\t\t\t\t\t[-105.076722, 39.639549],\n\t\t\t\t\t\t[-105.076653, 39.639713],\n\t\t\t\t\t\t[-105.076546, 39.639906],\n\t\t\t\t\t\t[-105.076098, 39.640739],\n\t\t\t\t\t\t[-105.076010, 39.640913],\n\t\t\t\t\t\t[-105.075946, 39.641058],\n\t\t\t\t\t\t[-105.075897, 39.641180],\n\t\t\t\t\t\t[-105.075897, 39.641182],\n\t\t\t\t\t\t[-105.075872, 39.641277],\n\t\t\t\t\t\t[-105.075857, 39.641359],\n\t\t\t\t\t\t[-105.075837, 39.641689],\n\t\t\t\t\t\t[-105.075819, 39.641842],\n\t\t\t\t\t\t[-105.075789, 39.641968],\n\t\t\t\t\t\t[-105.075760, 39.642050],\n\t\t\t\t\t\t[-105.075679, 39.642203],\n\t\t\t\t\t\t[-105.075393, 39.642666],\n\t\t\t\t\t\t[-105.075363, 39.642709],\n\t\t\t\t\t\t[-105.074860, 39.643460],\n\t\t\t\t\t\t[-105.074690, 39.643727],\n\t\t\t\t\t\t[-105.074563, 39.643945],\n\t\t\t\t\t\t[-105.074454, 39.644104],\n\t\t\t\t\t\t[-105.074292, 39.644274],\n\t\t\t\t\t\t[-105.074145, 39.644403],\n\t\t\t\t\t\t[-105.073998, 39.644513],\n\t\t\t\t\t\t[-105.073816, 39.644628],\n\t\t\t\t\t\t[-105.073665, 39.644709],\n\t\t\t\t\t\t[-105.073285, 39.644872],\n\t\t\t\t\t\t[-105.072902, 39.645038],\n\t\t\t\t\t\t[-105.072523, 39.645220],\n\t\t\t\t\t\t[-105.072434, 39.645271],\n\t\t\t\t\t\t[-105.072326, 39.645350],\n\t\t\t\t\t\t[-105.072189, 39.645493],\n\t\t\t\t\t\t[-105.072133, 39.645574],\n\t\t\t\t\t\t[-105.072093, 39.645647],\n\t\t\t\t\t\t[-105.072060, 39.645751],\n\t\t\t\t\t\t[-105.072053, 39.645789],\n\t\t\t\t\t\t[-105.072049, 39.645815],\n\t\t\t\t\t\t[-105.072044, 39.646033],\n\t\t\t\t\t\t[-105.072042, 39.646090],\n\t\t\t\t\t\t[-105.068940, 39.646087],\n\t\t\t\t\t\t[-105.063539, 39.645988],\n\t\t\t\t\t\t[-105.063539, 39.646188],\n\t\t\t\t\t\t[-105.063532, 39.646404],\n\t\t\t\t\t\t[-105.063522, 39.646672],\n\t\t\t\t\t\t[-105.063520, 39.646749],\n\t\t\t\t\t\t[-105.063503, 39.647236],\n\t\t\t\t\t\t[-105.063454, 39.648699],\n\t\t\t\t\t\t[-105.063439, 39.649187],\n\t\t\t\t\t\t[-105.063435, 39.649273],\n\t\t\t\t\t\t[-105.063425, 39.649532],\n\t\t\t\t\t\t[-105.063422, 39.649619],\n\t\t\t\t\t\t[-105.063399, 39.650080],\n\t\t\t\t\t\t[-105.062614, 39.650086],\n\t\t\t\t\t\t[-105.061679, 39.650068],\n\t\t\t\t\t\t[-105.061578, 39.650066],\n\t\t\t\t\t\t[-105.061452, 39.650063],\n\t\t\t\t\t\t[-105.057345, 39.649984],\n\t\t\t\t\t\t[-105.057257, 39.651723],\n\t\t\t\t\t\t[-105.055521, 39.651737],\n\t\t\t\t\t\t[-105.054513, 39.651760],\n\t\t\t\t\t\t[-105.054654, 39.651798],\n\t\t\t\t\t\t[-105.054703, 39.651812],\n\t\t\t\t\t\t[-105.054882, 39.651895],\n\t\t\t\t\t\t[-105.055042, 39.652003],\n\t\t\t\t\t\t[-105.055061, 39.652016],\n\t\t\t\t\t\t[-105.055136, 39.652115],\n\t\t\t\t\t\t[-105.057266, 39.652086],\n\t\t\t\t\t\t[-105.057336, 39.652085],\n\t\t\t\t\t\t[-105.057319, 39.652201],\n\t\t\t\t\t\t[-105.057240, 39.652759],\n\t\t\t\t\t\t[-105.057215, 39.652946],\n\t\t\t\t\t\t[-105.057820, 39.652948],\n\t\t\t\t\t\t[-105.057873, 39.652948],\n\t\t\t\t\t\t[-105.058031, 39.652959],\n\t\t\t\t\t\t[-105.058311, 39.652979],\n\t\t\t\t\t\t[-105.058399, 39.652982],\n\t\t\t\t\t\t[-105.058543, 39.652979],\n\t\t\t\t\t\t[-105.058527, 39.652781],\n\t\t\t\t\t\t[-105.058465, 39.652008],\n\t\t\t\t\t\t[-105.058439, 39.651687],\n\t\t\t\t\t\t[-105.058939, 39.651687],\n\t\t\t\t\t\t[-105.058839, 39.651387],\n\t\t\t\t\t\t[-105.059209, 39.651386],\n\t\t\t\t\t\t[-105.059977, 39.651386],\n\t\t\t\t\t\t[-105.060321, 39.651385],\n\t\t\t\t\t\t[-105.060648, 39.651385],\n\t\t\t\t\t\t[-105.060692, 39.651385],\n\t\t\t\t\t\t[-105.061555, 39.651385],\n\t\t\t\t\t\t[-105.062137, 39.651384],\n\t\t\t\t\t\t[-105.062133, 39.651791],\n\t\t\t\t\t\t[-105.062586, 39.651899],\n\t\t\t\t\t\t[-105.062586, 39.651859],\n\t\t\t\t\t\t[-105.062606, 39.651077],\n\t\t\t\t\t\t[-105.062606, 39.651070],\n\t\t\t\t\t\t[-105.062610, 39.650598],\n\t\t\t\t\t\t[-105.063938, 39.650486],\n\t\t\t\t\t\t[-105.063939, 39.649887],\n\t\t\t\t\t\t[-105.063926, 39.649620],\n\t\t\t\t\t\t[-105.063924, 39.649566],\n\t\t\t\t\t\t[-105.071029, 39.649579],\n\t\t\t\t\t\t[-105.071034, 39.649731],\n\t\t\t\t\t\t[-105.071040, 39.649887],\n\t\t\t\t\t\t[-105.070953, 39.650411],\n\t\t\t\t\t\t[-105.070940, 39.650486],\n\t\t\t\t\t\t[-105.070352, 39.650413],\n\t\t\t\t\t\t[-105.070140, 39.650386],\n\t\t\t\t\t\t[-105.068840, 39.651587],\n\t\t\t\t\t\t[-105.068137, 39.652364],\n\t\t\t\t\t\t[-105.067979, 39.652444],\n\t\t\t\t\t\t[-105.067921, 39.652471],\n\t\t\t\t\t\t[-105.067681, 39.652589],\n\t\t\t\t\t\t[-105.067481, 39.652641],\n\t\t\t\t\t\t[-105.067307, 39.652752],\n\t\t\t\t\t\t[-105.067283, 39.652785],\n\t\t\t\t\t\t[-105.067144, 39.652981],\n\t\t\t\t\t\t[-105.067140, 39.652987],\n\t\t\t\t\t\t[-105.067137, 39.652996],\n\t\t\t\t\t\t[-105.067089, 39.653140],\n\t\t\t\t\t\t[-105.067057, 39.653233],\n\t\t\t\t\t\t[-105.067026, 39.653327],\n\t\t\t\t\t\t[-105.066970, 39.653494],\n\t\t\t\t\t\t[-105.066941, 39.653594],\n\t\t\t\t\t\t[-105.066956, 39.654029],\n\t\t\t\t\t\t[-105.067045, 39.656587],\n\t\t\t\t\t\t[-105.068556, 39.656591],\n\t\t\t\t\t\t[-105.069183, 39.656591],\n\t\t\t\t\t\t[-105.069505, 39.656592],\n\t\t\t\t\t\t[-105.070727, 39.656594],\n\t\t\t\t\t\t[-105.070768, 39.658220],\n\t\t\t\t\t\t[-105.070793, 39.659170],\n\t\t\t\t\t\t[-105.070923, 39.659193],\n\t\t\t\t\t\t[-105.071314, 39.659265],\n\t\t\t\t\t\t[-105.071445, 39.659289],\n\t\t\t\t\t\t[-105.071479, 39.659430],\n\t\t\t\t\t\t[-105.071582, 39.659853],\n\t\t\t\t\t\t[-105.071617, 39.659995],\n\t\t\t\t\t\t[-105.073240, 39.659787],\n\t\t\t\t\t\t[-105.074427, 39.659515],\n\t\t\t\t\t\t[-105.075423, 39.659286],\n\t\t\t\t\t\t[-105.076255, 39.659096],\n\t\t\t\t\t\t[-105.077642, 39.658779],\n\t\t\t\t\t\t[-105.077479, 39.659644],\n\t\t\t\t\t\t[-105.077342, 39.660374],\n\t\t\t\t\t\t[-105.077338, 39.660389],\n\t\t\t\t\t\t[-105.077863, 39.661004],\n\t\t\t\t\t\t[-105.079070, 39.661521],\n\t\t\t\t\t\t[-105.079071, 39.661521],\n\t\t\t\t\t\t[-105.079086, 39.661526],\n\t\t\t\t\t\t[-105.079534, 39.661814],\n\t\t\t\t\t\t[-105.079733, 39.662061],\n\t\t\t\t\t\t[-105.079771, 39.662163],\n\t\t\t\t\t\t[-105.079822, 39.662160],\n\t\t\t\t\t\t[-105.079822, 39.662164],\n\t\t\t\t\t\t[-105.081454, 39.662074],\n\t\t\t\t\t\t[-105.081454, 39.662896],\n\t\t\t\t\t\t[-105.081454, 39.664987],\n\t\t\t\t\t\t[-105.081449, 39.665055],\n\t\t\t\t\t\t[-105.081455, 39.665498],\n\t\t\t\t\t\t[-105.081455, 39.665551],\n\t\t\t\t\t\t[-105.081451, 39.667743],\n\t\t\t\t\t\t[-105.081454, 39.668215],\n\t\t\t\t\t\t[-105.081457, 39.668577],\n\t\t\t\t\t\t[-105.081434, 39.669103],\n\t\t\t\t\t\t[-105.081389, 39.669628],\n\t\t\t\t\t\t[-105.081350, 39.670099],\n\t\t\t\t\t\t[-105.081192, 39.670074],\n\t\t\t\t\t\t[-105.080948, 39.670010],\n\t\t\t\t\t\t[-105.080528, 39.669902],\n\t\t\t\t\t\t[-105.080157, 39.669826],\n\t\t\t\t\t\t[-105.079876, 39.669782],\n\t\t\t\t\t\t[-105.079739, 39.669765],\n\t\t\t\t\t\t[-105.079651, 39.669755],\n\t\t\t\t\t\t[-105.079345, 39.669740],\n\t\t\t\t\t\t[-105.079329, 39.669739],\n\t\t\t\t\t\t[-105.079299, 39.669738],\n\t\t\t\t\t\t[-105.079212, 39.669738],\n\t\t\t\t\t\t[-105.079183, 39.669738],\n\t\t\t\t\t\t[-105.079175, 39.669601],\n\t\t\t\t\t\t[-105.079164, 39.669358],\n\t\t\t\t\t\t[-105.077500, 39.669330],\n\t\t\t\t\t\t[-105.076938, 39.669320],\n\t\t\t\t\t\t[-105.076939, 39.669520],\n\t\t\t\t\t\t[-105.076939, 39.669523],\n\t\t\t\t\t\t[-105.076939, 39.669686],\n\t\t\t\t\t\t[-105.076039, 39.669587],\n\t\t\t\t\t\t[-105.076140, 39.669987],\n\t\t\t\t\t\t[-105.074940, 39.670687],\n\t\t\t\t\t\t[-105.073340, 39.670013],\n\t\t\t\t\t\t[-105.073280, 39.669987],\n\t\t\t\t\t\t[-105.073253, 39.669976],\n\t\t\t\t\t\t[-105.073100, 39.669912],\n\t\t\t\t\t\t[-105.073040, 39.669887],\n\t\t\t\t\t\t[-105.072872, 39.669813],\n\t\t\t\t\t\t[-105.072371, 39.669594],\n\t\t\t\t\t\t[-105.072204, 39.669521],\n\t\t\t\t\t\t[-105.072203, 39.669499],\n\t\t\t\t\t\t[-105.072202, 39.669435],\n\t\t\t\t\t\t[-105.072202, 39.669414],\n\t\t\t\t\t\t[-105.072197, 39.669083],\n\t\t\t\t\t\t[-105.072197, 39.669058],\n\t\t\t\t\t\t[-105.072186, 39.668280],\n\t\t\t\t\t\t[-105.072183, 39.668093],\n\t\t\t\t\t\t[-105.072179, 39.667763],\n\t\t\t\t\t\t[-105.072044, 39.667763],\n\t\t\t\t\t\t[-105.071643, 39.667763],\n\t\t\t\t\t\t[-105.071509, 39.667764],\n\t\t\t\t\t\t[-105.071483, 39.667764],\n\t\t\t\t\t\t[-105.071450, 39.667764],\n\t\t\t\t\t\t[-105.071406, 39.667764],\n\t\t\t\t\t\t[-105.071381, 39.667764],\n\t\t\t\t\t\t[-105.070805, 39.667765],\n\t\t\t\t\t\t[-105.069080, 39.667769],\n\t\t\t\t\t\t[-105.068505, 39.667771],\n\t\t\t\t\t\t[-105.068263, 39.667771],\n\t\t\t\t\t\t[-105.067538, 39.667774],\n\t\t\t\t\t\t[-105.067297, 39.667775],\n\t\t\t\t\t\t[-105.067149, 39.667775],\n\t\t\t\t\t\t[-105.066705, 39.667775],\n\t\t\t\t\t\t[-105.066558, 39.667776],\n\t\t\t\t\t\t[-105.066480, 39.667776],\n\t\t\t\t\t\t[-105.066247, 39.667776],\n\t\t\t\t\t\t[-105.066170, 39.667777],\n\t\t\t\t\t\t[-105.066151, 39.667777],\n\t\t\t\t\t\t[-105.066097, 39.667777],\n\t\t\t\t\t\t[-105.066079, 39.667777],\n\t\t\t\t\t\t[-105.065885, 39.667777],\n\t\t\t\t\t\t[-105.065304, 39.667777],\n\t\t\t\t\t\t[-105.065111, 39.667778],\n\t\t\t\t\t\t[-105.064897, 39.667778],\n\t\t\t\t\t\t[-105.064257, 39.667779],\n\t\t\t\t\t\t[-105.064044, 39.667780],\n\t\t\t\t\t\t[-105.064027, 39.667780],\n\t\t\t\t\t\t[-105.063976, 39.667780],\n\t\t\t\t\t\t[-105.063959, 39.667780],\n\t\t\t\t\t\t[-105.063759, 39.667780],\n\t\t\t\t\t\t[-105.063161, 39.667782],\n\t\t\t\t\t\t[-105.062962, 39.667783],\n\t\t\t\t\t\t[-105.062534, 39.667782],\n\t\t\t\t\t\t[-105.061250, 39.667780],\n\t\t\t\t\t\t[-105.060844, 39.667780],\n\t\t\t\t\t\t[-105.060823, 39.667780],\n\t\t\t\t\t\t[-105.060680, 39.667780],\n\t\t\t\t\t\t[-105.060252, 39.667780],\n\t\t\t\t\t\t[-105.060110, 39.667780],\n\t\t\t\t\t\t[-105.059894, 39.667779],\n\t\t\t\t\t\t[-105.059248, 39.667778],\n\t\t\t\t\t\t[-105.059033, 39.667778],\n\t\t\t\t\t\t[-105.058821, 39.667778],\n\t\t\t\t\t\t[-105.058185, 39.667782],\n\t\t\t\t\t\t[-105.057974, 39.667784],\n\t\t\t\t\t\t[-105.057765, 39.667784],\n\t\t\t\t\t\t[-105.057140, 39.667784],\n\t\t\t\t\t\t[-105.056932, 39.667785],\n\t\t\t\t\t\t[-105.056725, 39.667784],\n\t\t\t\t\t\t[-105.056104, 39.667781],\n\t\t\t\t\t\t[-105.055898, 39.667781],\n\t\t\t\t\t\t[-105.055691, 39.667781],\n\t\t\t\t\t\t[-105.055072, 39.667784],\n\t\t\t\t\t\t[-105.054866, 39.667785],\n\t\t\t\t\t\t[-105.054676, 39.667785],\n\t\t\t\t\t\t[-105.054106, 39.667785],\n\t\t\t\t\t\t[-105.053916, 39.667785],\n\t\t\t\t\t\t[-105.053784, 39.667785],\n\t\t\t\t\t\t[-105.053388, 39.667785],\n\t\t\t\t\t\t[-105.053256, 39.667785],\n\t\t\t\t\t\t[-105.053257, 39.668604],\n\t\t\t\t\t\t[-105.053257, 39.669076],\n\t\t\t\t\t\t[-105.053260, 39.671063],\n\t\t\t\t\t\t[-105.053262, 39.671883],\n\t\t\t\t\t\t[-105.053262, 39.671896],\n\t\t\t\t\t\t[-105.053262, 39.671935],\n\t\t\t\t\t\t[-105.053262, 39.671949],\n\t\t\t\t\t\t[-105.053262, 39.672255],\n\t\t\t\t\t\t[-105.053251, 39.673116],\n\t\t\t\t\t\t[-105.053261, 39.673271],\n\t\t\t\t\t\t[-105.053261, 39.673280],\n\t\t\t\t\t\t[-105.053255, 39.673483],\n\t\t\t\t\t\t[-105.053247, 39.673778],\n\t\t\t\t\t\t[-105.053239, 39.674095],\n\t\t\t\t\t\t[-105.053234, 39.674299],\n\t\t\t\t\t\t[-105.053237, 39.674437],\n\t\t\t\t\t\t[-105.053246, 39.674851],\n\t\t\t\t\t\t[-105.053250, 39.674989],\n\t\t\t\t\t\t[-105.054053, 39.674969],\n\t\t\t\t\t\t[-105.056462, 39.674909],\n\t\t\t\t\t\t[-105.057265, 39.674889],\n\t\t\t\t\t\t[-105.057573, 39.674888],\n\t\t\t\t\t\t[-105.058500, 39.674887],\n\t\t\t\t\t\t[-105.058809, 39.674887],\n\t\t\t\t\t\t[-105.058955, 39.674887],\n\t\t\t\t\t\t[-105.059393, 39.674887],\n\t\t\t\t\t\t[-105.059539, 39.674887],\n\t\t\t\t\t\t[-105.060047, 39.674903],\n\t\t\t\t\t\t[-105.061573, 39.674952],\n\t\t\t\t\t\t[-105.062082, 39.674969],\n\t\t\t\t\t\t[-105.062245, 39.674973],\n\t\t\t\t\t\t[-105.062638, 39.674985],\n\t\t\t\t\t\t[-105.062734, 39.674985],\n\t\t\t\t\t\t[-105.062898, 39.674987],\n\t\t\t\t\t\t[-105.062897, 39.675082],\n\t\t\t\t\t\t[-105.062894, 39.675369],\n\t\t\t\t\t\t[-105.062894, 39.675465],\n\t\t\t\t\t\t[-105.062891, 39.675853],\n\t\t\t\t\t\t[-105.062887, 39.676224],\n\t\t\t\t\t\t[-105.062772, 39.677608],\n\t\t\t\t\t\t[-105.062835, 39.678446],\n\t\t\t\t\t\t[-105.062907, 39.679223],\n\t\t\t\t\t\t[-105.062929, 39.679259],\n\t\t\t\t\t\t[-105.062991, 39.679363],\n\t\t\t\t\t\t[-105.063177, 39.679681],\n\t\t\t\t\t\t[-105.062777, 39.679441],\n\t\t\t\t\t\t[-105.062580, 39.679293],\n\t\t\t\t\t\t[-105.062442, 39.679190],\n\t\t\t\t\t\t[-105.062086, 39.679063],\n\t\t\t\t\t\t[-105.060732, 39.678279],\n\t\t\t\t\t\t[-105.058505, 39.678615],\n\t\t\t\t\t\t[-105.058175, 39.678666],\n\t\t\t\t\t\t[-105.058060, 39.680649],\n\t\t\t\t\t\t[-105.058049, 39.681817],\n\t\t\t\t\t\t[-105.058054, 39.681825],\n\t\t\t\t\t\t[-105.058044, 39.682270],\n\t\t\t\t\t\t[-105.058034, 39.682275],\n\t\t\t\t\t\t[-105.058033, 39.682275],\n\t\t\t\t\t\t[-105.057913, 39.682277],\n\t\t\t\t\t\t[-105.057912, 39.682276],\n\t\t\t\t\t\t[-105.057783, 39.682272],\n\t\t\t\t\t\t[-105.057265, 39.682272],\n\t\t\t\t\t\t[-105.057200, 39.682271],\n\t\t\t\t\t\t[-105.056518, 39.682265],\n\t\t\t\t\t\t[-105.055588, 39.682260],\n\t\t\t\t\t\t[-105.053221, 39.682291],\n\t\t\t\t\t\t[-105.053191, 39.682397],\n\t\t\t\t\t\t[-105.053183, 39.683498],\n\t\t\t\t\t\t[-105.053183, 39.683528],\n\t\t\t\t\t\t[-105.053195, 39.684380],\n\t\t\t\t\t\t[-105.053197, 39.685563],\n\t\t\t\t\t\t[-105.053196, 39.685650],\n\t\t\t\t\t\t[-105.053194, 39.685911],\n\t\t\t\t\t\t[-105.053194, 39.685999],\n\t\t\t\t\t\t[-105.053193, 39.686347],\n\t\t\t\t\t\t[-105.053193, 39.686873],\n\t\t\t\t\t\t[-105.053208, 39.687353],\n\t\t\t\t\t\t[-105.053212, 39.687390],\n\t\t\t\t\t\t[-105.053248, 39.687654],\n\t\t\t\t\t\t[-105.053254, 39.687736],\n\t\t\t\t\t\t[-105.053264, 39.687883],\n\t\t\t\t\t\t[-105.053264, 39.688100],\n\t\t\t\t\t\t[-105.053265, 39.689194],\n\t\t\t\t\t\t[-105.053266, 39.689559],\n\t\t\t\t\t\t[-105.053251, 39.689919],\n\t\t\t\t\t\t[-105.053208, 39.691002],\n\t\t\t\t\t\t[-105.053194, 39.691364],\n\t\t\t\t\t\t[-105.053198, 39.691586],\n\t\t\t\t\t\t[-105.053210, 39.692252],\n\t\t\t\t\t\t[-105.053215, 39.692475],\n\t\t\t\t\t\t[-105.053212, 39.692542],\n\t\t\t\t\t\t[-105.053207, 39.692745],\n\t\t\t\t\t\t[-105.053205, 39.692813],\n\t\t\t\t\t\t[-105.053202, 39.692885],\n\t\t\t\t\t\t[-105.053196, 39.693103],\n\t\t\t\t\t\t[-105.053194, 39.693176],\n\t\t\t\t\t\t[-105.053198, 39.693538],\n\t\t\t\t\t\t[-105.053213, 39.694625],\n\t\t\t\t\t\t[-105.053218, 39.694988],\n\t\t\t\t\t\t[-105.053219, 39.695344],\n\t\t\t\t\t\t[-105.053223, 39.696412],\n\t\t\t\t\t\t[-105.053225, 39.696769],\n\t\t\t\t\t\t[-105.053225, 39.696779],\n\t\t\t\t\t\t[-105.053225, 39.696809],\n\t\t\t\t\t\t[-105.053225, 39.696820],\n\t\t\t\t\t\t[-105.053225, 39.696889],\n\t\t\t\t\t\t[-105.053236, 39.699078],\n\t\t\t\t\t\t[-105.053241, 39.699910],\n\t\t\t\t\t\t[-105.053245, 39.700438],\n\t\t\t\t\t\t[-105.053245, 39.702269],\n\t\t\t\t\t\t[-105.053249, 39.702562],\n\t\t\t\t\t\t[-105.053247, 39.702703],\n\t\t\t\t\t\t[-105.053245, 39.703126],\n\t\t\t\t\t\t[-105.053245, 39.703268],\n\t\t\t\t\t\t[-105.053247, 39.703985],\n\t\t\t\t\t\t[-105.053252, 39.704542],\n\t\t\t\t\t\t[-105.053258, 39.705050],\n\t\t\t\t\t\t[-105.053246, 39.705814],\n\t\t\t\t\t\t[-105.053246, 39.705921],\n\t\t\t\t\t\t[-105.053246, 39.706029],\n\t\t\t\t\t\t[-105.053249, 39.706674],\n\t\t\t\t\t\t[-105.053250, 39.706889],\n\t\t\t\t\t\t[-105.053250, 39.707054],\n\t\t\t\t\t\t[-105.053251, 39.707550],\n\t\t\t\t\t\t[-105.053252, 39.707716],\n\t\t\t\t\t\t[-105.053253, 39.707902],\n\t\t\t\t\t\t[-105.053258, 39.708463],\n\t\t\t\t\t\t[-105.053260, 39.708650],\n\t\t\t\t\t\t[-105.053259, 39.708841],\n\t\t\t\t\t\t[-105.053257, 39.709416],\n\t\t\t\t\t\t[-105.053257, 39.709608],\n\t\t\t\t\t\t[-105.053258, 39.709746],\n\t\t\t\t\t\t[-105.053262, 39.710161],\n\t\t\t\t\t\t[-105.053264, 39.710300],\n\t\t\t\t\t\t[-105.053250, 39.711343],\n\t\t\t\t\t\t[-105.053263, 39.713181],\n\t\t\t\t\t\t[-105.053271, 39.715004],\n\t\t\t\t\t\t[-105.053270, 39.716630],\n\t\t\t\t\t\t[-105.053270, 39.716647],\n\t\t\t\t\t\t[-105.053279, 39.718233],\n\t\t\t\t\t\t[-105.053278, 39.718627],\n\t\t\t\t\t\t[-105.053276, 39.718984],\n\t\t\t\t\t\t[-105.053275, 39.719071],\n\t\t\t\t\t\t[-105.053272, 39.720056],\n\t\t\t\t\t\t[-105.053271, 39.720414],\n\t\t\t\t\t\t[-105.053270, 39.720544],\n\t\t\t\t\t\t[-105.053270, 39.720933],\n\t\t\t\t\t\t[-105.053270, 39.721064],\n\t\t\t\t\t\t[-105.053268, 39.721477],\n\t\t\t\t\t\t[-105.053264, 39.722719],\n\t\t\t\t\t\t[-105.053263, 39.723133],\n\t\t\t\t\t\t[-105.053259, 39.724083],\n\t\t\t\t\t\t[-105.053240, 39.725441],\n\t\t\t\t\t\t[-105.053253, 39.725800],\n\t\t\t\t\t\t[-105.053253, 39.725828],\n\t\t\t\t\t\t[-105.053253, 39.725899],\n\t\t\t\t\t\t[-105.053253, 39.725951],\n\t\t\t\t\t\t[-105.053252, 39.726112],\n\t\t\t\t\t\t[-105.053252, 39.726184],\n\t\t\t\t\t\t[-105.053254, 39.727233],\n\t\t\t\t\t\t[-105.053254, 39.727349],\n\t\t\t\t\t\t[-105.053252, 39.727772],\n\t\t\t\t\t\t[-105.053251, 39.728522],\n\t\t\t\t\t\t[-105.053246, 39.728968],\n\t\t\t\t\t\t[-105.053244, 39.729539],\n\t\t\t\t\t\t[-105.053242, 39.729890],\n\t\t\t\t\t\t[-105.053239, 39.730942],\n\t\t\t\t\t\t[-105.053238, 39.731294],\n\t\t\t\t\t\t[-105.053235, 39.731657],\n\t\t\t\t\t\t[-105.053228, 39.732746],\n\t\t\t\t\t\t[-105.053227, 39.733110],\n\t\t\t\t\t\t[-105.053404, 39.733108],\n\t\t\t\t\t\t[-105.053935, 39.733104],\n\t\t\t\t\t\t[-105.054113, 39.733103],\n\t\t\t\t\t\t[-105.054170, 39.733102],\n\t\t\t\t\t\t[-105.054340, 39.733102],\n\t\t\t\t\t\t[-105.054398, 39.733102],\n\t\t\t\t\t\t[-105.054400, 39.733172],\n\t\t\t\t\t\t[-105.054406, 39.733384],\n\t\t\t\t\t\t[-105.054409, 39.733455],\n\t\t\t\t\t\t[-105.054411, 39.733541],\n\t\t\t\t\t\t[-105.054418, 39.733720],\n\t\t\t\t\t\t[-105.054499, 39.733706],\n\t\t\t\t\t\t[-105.054585, 39.733693],\n\t\t\t\t\t\t[-105.054587, 39.733734],\n\t\t\t\t\t\t[-105.054593, 39.733860],\n\t\t\t\t\t\t[-105.054595, 39.733902],\n\t\t\t\t\t\t[-105.054671, 39.733900],\n\t\t\t\t\t\t[-105.054903, 39.733897],\n\t\t\t\t\t\t[-105.054980, 39.733896],\n\t\t\t\t\t\t[-105.054979, 39.733854],\n\t\t\t\t\t\t[-105.054977, 39.733728],\n\t\t\t\t\t\t[-105.054977, 39.733687],\n\t\t\t\t\t\t[-105.054975, 39.733569],\n\t\t\t\t\t\t[-105.054969, 39.733217],\n\t\t\t\t\t\t[-105.054968, 39.733100],\n\t\t\t\t\t\t[-105.055082, 39.733099],\n\t\t\t\t\t\t[-105.055424, 39.733098],\n\t\t\t\t\t\t[-105.055539, 39.733098],\n\t\t\t\t\t\t[-105.055539, 39.733215],\n\t\t\t\t\t\t[-105.055539, 39.733569],\n\t\t\t\t\t\t[-105.055539, 39.733687],\n\t\t\t\t\t\t[-105.055574, 39.734508],\n\t\t\t\t\t\t[-105.055585, 39.734707],\n\t\t\t\t\t\t[-105.055586, 39.734740],\n\t\t\t\t\t\t[-105.055567, 39.734977],\n\t\t\t\t\t\t[-105.053228, 39.734965],\n\t\t\t\t\t\t[-105.053231, 39.735161],\n\t\t\t\t\t\t[-105.053230, 39.735185],\n\t\t\t\t\t\t[-105.053227, 39.735259],\n\t\t\t\t\t\t[-105.053227, 39.735284],\n\t\t\t\t\t\t[-105.053227, 39.735349],\n\t\t\t\t\t\t[-105.053227, 39.735544],\n\t\t\t\t\t\t[-105.053227, 39.735609],\n\t\t\t\t\t\t[-105.053227, 39.735841],\n\t\t\t\t\t\t[-105.053227, 39.736537],\n\t\t\t\t\t\t[-105.053227, 39.736770],\n\t\t\t\t\t\t[-105.053223, 39.737115],\n\t\t\t\t\t\t[-105.053210, 39.738152],\n\t\t\t\t\t\t[-105.053207, 39.738498],\n\t\t\t\t\t\t[-105.053206, 39.738870],\n\t\t\t\t\t\t[-105.053206, 39.739987],\n\t\t\t\t\t\t[-105.053206, 39.740360],\n\t\t\t\t\t\t[-105.053201, 39.741935],\n\t\t\t\t\t\t[-105.053200, 39.741935],\n\t\t\t\t\t\t[-105.053195, 39.741938],\n\t\t\t\t\t\t[-105.053199, 39.742204],\n\t\t\t\t\t\t[-105.053204, 39.742203],\n\t\t\t\t\t\t[-105.053209, 39.742697],\n\t\t\t\t\t\t[-105.053209, 39.742781],\n\t\t\t\t\t\t[-105.053210, 39.743339],\n\t\t\t\t\t\t[-105.053211, 39.743486],\n\t\t\t\t\t\t[-105.053211, 39.743584],\n\t\t\t\t\t\t[-105.053211, 39.743881],\n\t\t\t\t\t\t[-105.053212, 39.743980],\n\t\t\t\t\t\t[-105.053214, 39.745187],\n\t\t\t\t\t\t[-105.053226, 39.745680],\n\t\t\t\t\t\t[-105.053219, 39.747616],\n\t\t\t\t\t\t[-105.053219, 39.747687],\n\t\t\t\t\t\t[-105.053217, 39.748157],\n\t\t\t\t\t\t[-105.053213, 39.749458],\n\t\t\t\t\t\t[-105.053215, 39.749816],\n\t\t\t\t\t\t[-105.053224, 39.750890],\n\t\t\t\t\t\t[-105.053227, 39.751249],\n\t\t\t\t\t\t[-105.053227, 39.751608],\n\t\t\t\t\t\t[-105.053230, 39.752686],\n\t\t\t\t\t\t[-105.053231, 39.753046],\n\t\t\t\t\t\t[-105.053236, 39.754848],\n\t\t\t\t\t\t[-105.053236, 39.755553],\n\t\t\t\t\t\t[-105.053237, 39.755787],\n\t\t\t\t\t\t[-105.053238, 39.756939],\n\t\t\t\t\t\t[-105.053238, 39.757245],\n\t\t\t\t\t\t[-105.053238, 39.758165],\n\t\t\t\t\t\t[-105.053239, 39.758472],\n\t\t\t\t\t\t[-105.053239, 39.758836],\n\t\t\t\t\t\t[-105.053240, 39.759928],\n\t\t\t\t\t\t[-105.053241, 39.760293],\n\t\t\t\t\t\t[-105.053241, 39.760651],\n\t\t\t\t\t\t[-105.053243, 39.761725],\n\t\t\t\t\t\t[-105.053244, 39.762084],\n\t\t\t\t\t\t[-105.053243, 39.762265],\n\t\t\t\t\t\t[-105.053241, 39.762807],\n\t\t\t\t\t\t[-105.053241, 39.762989],\n\t\t\t\t\t\t[-105.053241, 39.763171],\n\t\t\t\t\t\t[-105.053241, 39.763720],\n\t\t\t\t\t\t[-105.053241, 39.763903],\n\t\t\t\t\t\t[-105.053241, 39.764085],\n\t\t\t\t\t\t[-105.053242, 39.764631],\n\t\t\t\t\t\t[-105.053243, 39.764814],\n\t\t\t\t\t\t[-105.053240, 39.764991],\n\t\t\t\t\t\t[-105.053232, 39.765521],\n\t\t\t\t\t\t[-105.053230, 39.765699],\n\t\t\t\t\t\t[-105.053242, 39.766622],\n\t\t\t\t\t\t[-105.053243, 39.767278],\n\t\t\t\t\t\t[-105.053241, 39.767409],\n\t\t\t\t\t\t[-105.053241, 39.767512],\n\t\t\t\t\t\t[-105.053240, 39.767876],\n\t\t\t\t\t\t[-105.053240, 39.768968],\n\t\t\t\t\t\t[-105.053240, 39.769333],\n\t\t\t\t\t\t[-105.053241, 39.769435],\n\t\t\t\t\t\t[-105.053245, 39.769741],\n\t\t\t\t\t\t[-105.053247, 39.769844],\n\t\t\t\t\t\t[-105.053250, 39.770102],\n\t\t\t\t\t\t[-105.053261, 39.770876],\n\t\t\t\t\t\t[-105.053265, 39.771134],\n\t\t\t\t\t\t[-105.053260, 39.771494],\n\t\t\t\t\t\t[-105.053245, 39.772577],\n\t\t\t\t\t\t[-105.053241, 39.772938],\n\t\t\t\t\t\t[-105.053241, 39.773303],\n\t\t\t\t\t\t[-105.053241, 39.774398],\n\t\t\t\t\t\t[-105.053241, 39.774763],\n\t\t\t\t\t\t[-105.053241, 39.775127],\n\t\t\t\t\t\t[-105.053244, 39.776219],\n\t\t\t\t\t\t[-105.053245, 39.776583],\n\t\t\t\t\t\t[-105.053244, 39.776943],\n\t\t\t\t\t\t[-105.053242, 39.778023],\n\t\t\t\t\t\t[-105.053242, 39.778384],\n\t\t\t\t\t\t[-105.053235, 39.778748],\n\t\t\t\t\t\t[-105.053214, 39.779840],\n\t\t\t\t\t\t[-105.053208, 39.780205],\n\t\t\t\t\t\t[-105.053214, 39.780502],\n\t\t\t\t\t\t[-105.053235, 39.781393],\n\t\t\t\t\t\t[-105.053243, 39.781690],\n\t\t\t\t\t\t[-105.053243, 39.781732],\n\t\t\t\t\t\t[-105.053243, 39.781861],\n\t\t\t\t\t\t[-105.053243, 39.781904],\n\t\t\t\t\t\t[-105.053243, 39.782075],\n\t\t\t\t\t\t[-105.053243, 39.782190],\n\t\t\t\t\t\t[-105.053211, 39.782588],\n\t\t\t\t\t\t[-105.053198, 39.782759],\n\t\t\t\t\t\t[-105.053196, 39.782852],\n\t\t\t\t\t\t[-105.053190, 39.783134],\n\t\t\t\t\t\t[-105.053189, 39.783228],\n\t\t\t\t\t\t[-105.053187, 39.783288],\n\t\t\t\t\t\t[-105.053185, 39.783435],\n\t\t\t\t\t\t[-105.053184, 39.783471],\n\t\t\t\t\t\t[-105.053184, 39.783533],\n\t\t\t\t\t\t[-105.053184, 39.783585],\n\t\t\t\t\t\t[-105.053184, 39.783687],\n\t\t\t\t\t\t[-105.053183, 39.783744],\n\t\t\t\t\t\t[-105.053183, 39.783797],\n\t\t\t\t\t\t[-105.054442, 39.783814],\n\t\t\t\t\t\t[-105.055588, 39.783818],\n\t\t\t\t\t\t[-105.056742, 39.783821],\n\t\t\t\t\t\t[-105.056750, 39.783822],\n\t\t\t\t\t\t[-105.057894, 39.783830],\n\t\t\t\t\t\t[-105.057912, 39.783831],\n\t\t\t\t\t\t[-105.058863, 39.783830],\n\t\t\t\t\t\t[-105.059054, 39.783830],\n\t\t\t\t\t\t[-105.059628, 39.783830],\n\t\t\t\t\t\t[-105.059820, 39.783830],\n\t\t\t\t\t\t[-105.060009, 39.783832],\n\t\t\t\t\t\t[-105.060346, 39.783836],\n\t\t\t\t\t\t[-105.060576, 39.783839],\n\t\t\t\t\t\t[-105.060765, 39.783842],\n\t\t\t\t\t\t[-105.061711, 39.783845],\n\t\t\t\t\t\t[-105.061848, 39.783845],\n\t\t\t\t\t\t[-105.062176, 39.783846],\n\t\t\t\t\t\t[-105.062425, 39.783847],\n\t\t\t\t\t\t[-105.062659, 39.783847],\n\t\t\t\t\t\t[-105.062659, 39.783900],\n\t\t\t\t\t\t[-105.062659, 39.784059],\n\t\t\t\t\t\t[-105.062659, 39.784112],\n\t\t\t\t\t\t[-105.062656, 39.785666],\n\t\t\t\t\t\t[-105.062655, 39.785822],\n\t\t\t\t\t\t[-105.062655, 39.786187],\n\t\t\t\t\t\t[-105.062653, 39.787000],\n\t\t\t\t\t\t[-105.062653, 39.787193],\n\t\t\t\t\t\t[-105.062556, 39.787408],\n\t\t\t\t\t\t[-105.062546, 39.787425],\n\t\t\t\t\t\t[-105.062451, 39.787597],\n\t\t\t\t\t\t[-105.062865, 39.788011],\n\t\t\t\t\t\t[-105.062944, 39.788087],\n\t\t\t\t\t\t[-105.065083, 39.788086],\n\t\t\t\t\t\t[-105.065106, 39.788813],\n\t\t\t\t\t\t[-105.065123, 39.789269],\n\t\t\t\t\t\t[-105.065115, 39.789680],\n\t\t\t\t\t\t[-105.064777, 39.789691],\n\t\t\t\t\t\t[-105.064559, 39.789695],\n\t\t\t\t\t\t[-105.064552, 39.789999],\n\t\t\t\t\t\t[-105.064545, 39.790686],\n\t\t\t\t\t\t[-105.064542, 39.790989],\n\t\t\t\t\t\t[-105.064541, 39.791080],\n\t\t\t\t\t\t[-105.064243, 39.791079],\n\t\t\t\t\t\t[-105.064203, 39.791079],\n\t\t\t\t\t\t[-105.064161, 39.791079],\n\t\t\t\t\t\t[-105.063382, 39.791077],\n\t\t\t\t\t\t[-105.063306, 39.791077],\n\t\t\t\t\t\t[-105.063304, 39.790775],\n\t\t\t\t\t\t[-105.063303, 39.790737],\n\t\t\t\t\t\t[-105.063302, 39.790568],\n\t\t\t\t\t\t[-105.063302, 39.790494],\n\t\t\t\t\t\t[-105.063301, 39.790476],\n\t\t\t\t\t\t[-105.063301, 39.790445],\n\t\t\t\t\t\t[-105.063298, 39.790081],\n\t\t\t\t\t\t[-105.063059, 39.790084],\n\t\t\t\t\t\t[-105.062966, 39.790086],\n\t\t\t\t\t\t[-105.061917, 39.790083],\n\t\t\t\t\t\t[-105.061899, 39.790083],\n\t\t\t\t\t\t[-105.061722, 39.790582],\n\t\t\t\t\t\t[-105.061608, 39.790928],\n\t\t\t\t\t\t[-105.061480, 39.791075],\n\t\t\t\t\t\t[-105.060678, 39.791073],\n\t\t\t\t\t\t[-105.060417, 39.791073],\n\t\t\t\t\t\t[-105.059696, 39.791072],\n\t\t\t\t\t\t[-105.059338, 39.791072],\n\t\t\t\t\t\t[-105.056630, 39.791067],\n\t\t\t\t\t\t[-105.056162, 39.791067],\n\t\t\t\t\t\t[-105.055627, 39.791066],\n\t\t\t\t\t\t[-105.055272, 39.791065],\n\t\t\t\t\t\t[-105.055083, 39.791065],\n\t\t\t\t\t\t[-105.053246, 39.791063],\n\t\t\t\t\t\t[-104.790910, 39.798250],\n\t\t\t\t\t\t[-104.692934, 39.914183],\n\t\t\t\t\t\t[-104.600435, 39.899459],\n\t\t\t\t\t\t[-104.619906, 39.826633],\n\t\t\t\t\t\t[-104.762470, 39.822980],\n\t\t\t\t\t\t[-104.734601, 39.769181],\n\t\t\t\t\t\t[-104.856377, 39.768673],\n\t\t\t\t\t\t[-104.884646, 39.740156],\n\t\t\t\t\t\t[-104.848332, 39.659161],\n\t\t\t\t\t\t[-104.848336, 39.657891],\n\t\t\t\t\t\t[-104.848048, 39.657842],\n\t\t\t\t\t\t[-104.847940, 39.657824],\n\t\t\t\t\t\t[-104.847730, 39.657789],\n\t\t\t\t\t\t[-104.847730, 39.657239],\n\t\t\t\t\t\t[-104.847731, 39.656927],\n\t\t\t\t\t\t[-104.847733, 39.656788],\n\t\t\t\t\t\t[-104.847604, 39.656786],\n\t\t\t\t\t\t[-104.847536, 39.656785],\n\t\t\t\t\t\t[-104.847449, 39.656783],\n\t\t\t\t\t\t[-104.847119, 39.656780],\n\t\t\t\t\t\t[-104.847639, 39.656712],\n\t\t\t\t\t\t[-104.847697, 39.656704],\n\t\t\t\t\t\t[-104.848120, 39.656648],\n\t\t\t\t\t\t[-104.848967, 39.656538],\n\t\t\t\t\t\t[-104.849397, 39.656482],\n\t\t\t\t\t\t[-104.850762, 39.656305],\n\t\t\t\t\t\t[-104.852944, 39.655706],\n\t\t\t\t\t\t[-104.854474, 39.655011],\n\t\t\t\t\t\t[-104.854747, 39.654888],\n\t\t\t\t\t\t[-104.856038, 39.654178],\n\t\t\t\t\t\t[-104.856753, 39.653456],\n\t\t\t\t\t\t[-104.856830, 39.653419],\n\t\t\t\t\t\t[-104.857203, 39.653246],\n\t\t\t\t\t\t[-104.875552, 39.644617],\n\t\t\t\t\t\t[-104.876224, 39.644301],\n\t\t\t\t\t\t[-104.876130, 39.646499],\n\t\t\t\t\t\t[-104.876149, 39.647004],\n\t\t\t\t\t\t[-104.876151, 39.647061],\n\t\t\t\t\t\t[-104.876195, 39.648583],\n\t\t\t\t\t\t[-104.876195, 39.648600],\n\t\t\t\t\t\t[-104.876240, 39.650110],\n\t\t\t\t\t\t[-104.876281, 39.651459],\n\t\t\t\t\t\t[-104.876297, 39.652021],\n\t\t\t\t\t\t[-104.876306, 39.652295],\n\t\t\t\t\t\t[-104.877218, 39.652875],\n\t\t\t\t\t\t[-104.877497, 39.653052],\n\t\t\t\t\t\t[-104.877498, 39.653051],\n\t\t\t\t\t\t[-104.878034, 39.653051],\n\t\t\t\t\t\t[-104.880078, 39.653055],\n\t\t\t\t\t\t[-104.880140, 39.653057],\n\t\t\t\t\t\t[-104.880086, 39.650773],\n\t\t\t\t\t\t[-104.880228, 39.647994],\n\t\t\t\t\t\t[-104.880246, 39.647751],\n\t\t\t\t\t\t[-104.880246, 39.646530],\n\t\t\t\t\t\t[-104.880239, 39.646068],\n\t\t\t\t\t\t[-104.880239, 39.645993],\n\t\t\t\t\t\t[-104.880313, 39.645902],\n\t\t\t\t\t\t[-104.880313, 39.643949],\n\t\t\t\t\t\t[-104.880372, 39.642605],\n\t\t\t\t\t\t[-104.880381, 39.642475],\n\t\t\t\t\t\t[-104.880368, 39.642193],\n\t\t\t\t\t\t[-104.880340, 39.641993],\n\t\t\t\t\t\t[-104.880338, 39.641955],\n\t\t\t\t\t\t[-104.880326, 39.641819],\n\t\t\t\t\t\t[-104.880326, 39.641730],\n\t\t\t\t\t\t[-104.880322, 39.641651],\n\t\t\t\t\t\t[-104.880329, 39.641491],\n\t\t\t\t\t\t[-104.880929, 39.641216],\n\t\t\t\t\t\t[-104.882827, 39.640345],\n\t\t\t\t\t\t[-104.882917, 39.640301],\n\t\t\t\t\t\t[-104.883680, 39.639939],\n\t\t\t\t\t\t[-104.884765, 39.639425],\n\t\t\t\t\t\t[-104.884936, 39.639344],\n\t\t\t\t\t\t[-104.885112, 39.639262],\n\t\t\t\t\t\t[-104.885119, 39.638961],\n\t\t\t\t\t\t[-104.885129, 39.638788],\n\t\t\t\t\t\t[-104.885128, 39.638637],\n\t\t\t\t\t\t[-104.885124, 39.638444],\n\t\t\t\t\t\t[-104.885121, 39.638283],\n\t\t\t\t\t\t[-104.885132, 39.638093],\n\t\t\t\t\t\t[-104.885167, 39.636493],\n\t\t\t\t\t\t[-104.885173, 39.636268],\n\t\t\t\t\t\t[-104.885156, 39.633467],\n\t\t\t\t\t\t[-104.885231, 39.631345],\n\t\t\t\t\t\t[-104.885218, 39.629513],\n\t\t\t\t\t\t[-104.885213, 39.629087],\n\t\t\t\t\t\t[-104.885280, 39.627128],\n\t\t\t\t\t\t[-104.885282, 39.624129],\n\t\t\t\t\t\t[-104.887773, 39.624116],\n\t\t\t\t\t\t[-104.888331, 39.624143],\n\t\t\t\t\t\t[-104.888758, 39.624165],\n\t\t\t\t\t\t[-104.889037, 39.624176],\n\t\t\t\t\t\t[-104.889661, 39.624200],\n\t\t\t\t\t\t[-104.889813, 39.624191],\n\t\t\t\t\t\t[-104.891733, 39.624115],\n\t\t\t\t\t\t[-104.892667, 39.624135],\n\t\t\t\t\t\t[-104.894522, 39.624175],\n\t\t\t\t\t\t[-104.894642, 39.624173],\n\t\t\t\t\t\t[-104.897084, 39.624127],\n\t\t\t\t\t\t[-104.898639, 39.624099],\n\t\t\t\t\t\t[-104.899263, 39.624097],\n\t\t\t\t\t\t[-104.899339, 39.624097],\n\t\t\t\t\t\t[-104.899371, 39.624097],\n\t\t\t\t\t\t[-104.900933, 39.623906],\n\t\t\t\t\t\t[-104.901561, 39.623905],\n\t\t\t\t\t\t[-104.901719, 39.623905],\n\t\t\t\t\t\t[-104.901763, 39.623907],\n\t\t\t\t\t\t[-104.902451, 39.623939],\n\t\t\t\t\t\t[-104.904030, 39.623995],\n\t\t\t\t\t\t[-104.905490, 39.624158],\n\t\t\t\t\t\t[-104.906394, 39.624259],\n\t\t\t\t\t\t[-104.906942, 39.624268],\n\t\t\t\t\t\t[-104.908587, 39.624297],\n\t\t\t\t\t\t[-104.908862, 39.624301],\n\t\t\t\t\t\t[-104.911686, 39.624342],\n\t\t\t\t\t\t[-104.911935, 39.624346],\n\t\t\t\t\t\t[-104.913341, 39.624213],\n\t\t\t\t\t\t[-104.931703, 39.653044],\n\t\t\t\t\t\t[-105.015696, 39.678684],\n\t\t\t\t\t\t[-105.032038, 39.657087],\n\t\t\t\t\t\t[-105.034822, 39.627809],\n\t\t\t\t\t\t[-105.053411, 39.631586],\n\t\t\t\t\t\t[-105.053439, 39.621423]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[-105.081564, 39.634728],\n\t\t\t\t\t\t[-105.080803, 39.634723],\n\t\t\t\t\t\t[-105.080907, 39.635605],\n\t\t\t\t\t\t[-105.081959, 39.635170],\n\t\t\t\t\t\t[-105.081564, 39.634728]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08035\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"035\",\n\t\t\t\t\"NAME\": \"Douglas\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 840.248000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-105.048740, 39.566088],\n\t\t\t\t\t\t[-104.660626, 39.565909],\n\t\t\t\t\t\t[-104.662896, 39.129527],\n\t\t\t\t\t\t[-105.033544, 39.129819],\n\t\t\t\t\t\t[-105.329220, 39.129689],\n\t\t\t\t\t\t[-105.260054, 39.210445],\n\t\t\t\t\t\t[-105.048740, 39.566088]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08047\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"047\",\n\t\t\t\t\"NAME\": \"Gilpin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 149.896000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-105.397849, 39.912886],\n\t\t\t\t\t\t[-105.397649, 39.883187],\n\t\t\t\t\t\t[-105.398043, 39.872186],\n\t\t\t\t\t\t[-105.397568, 39.866061],\n\t\t\t\t\t\t[-105.397949, 39.860387],\n\t\t\t\t\t\t[-105.397450, 39.853697],\n\t\t\t\t\t\t[-105.397934, 39.841137],\n\t\t\t\t\t\t[-105.397949, 39.747087],\n\t\t\t\t\t\t[-105.545076, 39.773635],\n\t\t\t\t\t\t[-105.690348, 39.851996],\n\t\t\t\t\t\t[-105.675798, 39.932445],\n\t\t\t\t\t\t[-105.397971, 39.934867],\n\t\t\t\t\t\t[-105.397849, 39.912886]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12083\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"083\",\n\t\t\t\t\"NAME\": \"Marion\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1584.546000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.311697, 28.960391],\n\t\t\t\t\t\t[-82.426997, 29.021385],\n\t\t\t\t\t\t[-82.535591, 29.044855],\n\t\t\t\t\t\t[-82.534860, 29.214680],\n\t\t\t\t\t\t[-82.403237, 29.215623],\n\t\t\t\t\t\t[-82.404594, 29.278860],\n\t\t\t\t\t\t[-82.405152, 29.330260],\n\t\t\t\t\t\t[-82.406620, 29.485048],\n\t\t\t\t\t\t[-82.225010, 29.484298],\n\t\t\t\t\t\t[-82.213245, 29.431764],\n\t\t\t\t\t\t[-82.105688, 29.435966],\n\t\t\t\t\t\t[-82.055899, 29.471232],\n\t\t\t\t\t\t[-81.843009, 29.521004],\n\t\t\t\t\t\t[-81.776205, 29.487448],\n\t\t\t\t\t\t[-81.741422, 29.371049],\n\t\t\t\t\t\t[-81.680903, 29.324430],\n\t\t\t\t\t\t[-81.675523, 29.310628],\n\t\t\t\t\t\t[-81.667885, 29.301488],\n\t\t\t\t\t\t[-81.655677, 29.299940],\n\t\t\t\t\t\t[-81.648438, 29.290173],\n\t\t\t\t\t\t[-81.641916, 29.276766],\n\t\t\t\t\t\t[-81.640517, 29.131600],\n\t\t\t\t\t\t[-81.639151, 29.062880],\n\t\t\t\t\t\t[-81.658698, 28.960345],\n\t\t\t\t\t\t[-81.842194, 28.961024],\n\t\t\t\t\t\t[-81.843025, 28.959884],\n\t\t\t\t\t\t[-81.954190, 28.960053],\n\t\t\t\t\t\t[-82.311697, 28.960391]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12087\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"087\",\n\t\t\t\t\"NAME\": \"Monroe\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 983.282000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-80.250581, 25.341930],\n\t\t\t\t\t\t\t[-80.254916, 25.336336],\n\t\t\t\t\t\t\t[-80.260137, 25.324641],\n\t\t\t\t\t\t\t[-80.268138, 25.320675],\n\t\t\t\t\t\t\t[-80.288184, 25.282835],\n\t\t\t\t\t\t\t[-80.307584, 25.257561],\n\t\t\t\t\t\t\t[-80.351399, 25.190615],\n\t\t\t\t\t\t\t[-80.354019, 25.184306],\n\t\t\t\t\t\t\t[-80.349855, 25.168825],\n\t\t\t\t\t\t\t[-80.358570, 25.154073],\n\t\t\t\t\t\t\t[-80.377084, 25.130487],\n\t\t\t\t\t\t\t[-80.399767, 25.108536],\n\t\t\t\t\t\t\t[-80.428318, 25.095547],\n\t\t\t\t\t\t\t[-80.431032, 25.089250],\n\t\t\t\t\t\t\t[-80.443375, 25.076084],\n\t\t\t\t\t\t\t[-80.462011, 25.069935],\n\t\t\t\t\t\t\t[-80.473870, 25.060253],\n\t\t\t\t\t\t\t[-80.493881, 25.038502],\n\t\t\t\t\t\t\t[-80.489120, 25.031301],\n\t\t\t\t\t\t\t[-80.494781, 25.023019],\n\t\t\t\t\t\t\t[-80.537995, 24.990244],\n\t\t\t\t\t\t\t[-80.565831, 24.958155],\n\t\t\t\t\t\t\t[-80.571668, 24.953659],\n\t\t\t\t\t\t\t[-80.588272, 24.951153],\n\t\t\t\t\t\t\t[-80.596073, 24.948173],\n\t\t\t\t\t\t\t[-80.611693, 24.938420],\n\t\t\t\t\t\t\t[-80.635571, 24.913003],\n\t\t\t\t\t\t\t[-80.659395, 24.897433],\n\t\t\t\t\t\t\t[-80.661280, 24.899704],\n\t\t\t\t\t\t\t[-80.660198, 24.904980],\n\t\t\t\t\t\t\t[-80.650765, 24.908121],\n\t\t\t\t\t\t\t[-80.641306, 24.914311],\n\t\t\t\t\t\t\t[-80.623866, 24.931236],\n\t\t\t\t\t\t\t[-80.622896, 24.935587],\n\t\t\t\t\t\t\t[-80.624172, 24.939058],\n\t\t\t\t\t\t\t[-80.621658, 24.944265],\n\t\t\t\t\t\t\t[-80.597074, 24.958492],\n\t\t\t\t\t\t\t[-80.581131, 24.964738],\n\t\t\t\t\t\t\t[-80.578185, 24.962811],\n\t\t\t\t\t\t\t[-80.570813, 24.962215],\n\t\t\t\t\t\t\t[-80.558785, 24.971505],\n\t\t\t\t\t\t\t[-80.544110, 24.999916],\n\t\t\t\t\t\t\t[-80.543254, 25.007337],\n\t\t\t\t\t\t\t[-80.545971, 25.014770],\n\t\t\t\t\t\t\t[-80.524498, 25.016945],\n\t\t\t\t\t\t\t[-80.509136, 25.028317],\n\t\t\t\t\t\t\t[-80.501326, 25.041436],\n\t\t\t\t\t\t\t[-80.495569, 25.047497],\n\t\t\t\t\t\t\t[-80.488900, 25.050110],\n\t\t\t\t\t\t\t[-80.481197, 25.056604],\n\t\t\t\t\t\t\t[-80.460652, 25.078904],\n\t\t\t\t\t\t\t[-80.465496, 25.086609],\n\t\t\t\t\t\t\t[-80.470211, 25.089438],\n\t\t\t\t\t\t\t[-80.481763, 25.091905],\n\t\t\t\t\t\t\t[-80.494715, 25.102269],\n\t\t\t\t\t\t\t[-80.484188, 25.109430],\n\t\t\t\t\t\t\t[-80.477480, 25.107407],\n\t\t\t\t\t\t\t[-80.476174, 25.099454],\n\t\t\t\t\t\t\t[-80.463987, 25.093210],\n\t\t\t\t\t\t\t[-80.450399, 25.088751],\n\t\t\t\t\t\t\t[-80.444887, 25.092966],\n\t\t\t\t\t\t\t[-80.433575, 25.106317],\n\t\t\t\t\t\t\t[-80.433499, 25.114665],\n\t\t\t\t\t\t\t[-80.447659, 25.147729],\n\t\t\t\t\t\t\t[-80.446473, 25.151287],\n\t\t\t\t\t\t\t[-80.413260, 25.137053],\n\t\t\t\t\t\t\t[-80.403177, 25.141798],\n\t\t\t\t\t\t\t[-80.395467, 25.150694],\n\t\t\t\t\t\t\t[-80.387164, 25.170859],\n\t\t\t\t\t\t\t[-80.388350, 25.182721],\n\t\t\t\t\t\t\t[-80.391909, 25.192210],\n\t\t\t\t\t\t\t[-80.387164, 25.198141],\n\t\t\t\t\t\t\t[-80.369965, 25.206444],\n\t\t\t\t\t\t\t[-80.358696, 25.207037],\n\t\t\t\t\t\t\t[-80.349800, 25.210595],\n\t\t\t\t\t\t\t[-80.337345, 25.231353],\n\t\t\t\t\t\t\t[-80.333787, 25.253891],\n\t\t\t\t\t\t\t[-80.336159, 25.261601],\n\t\t\t\t\t\t\t[-80.342683, 25.268125],\n\t\t\t\t\t\t\t[-80.368186, 25.282359],\n\t\t\t\t\t\t\t[-80.364034, 25.286510],\n\t\t\t\t\t\t\t[-80.339421, 25.290069],\n\t\t\t\t\t\t\t[-80.334676, 25.285917],\n\t\t\t\t\t\t\t[-80.328746, 25.286510],\n\t\t\t\t\t\t\t[-80.315698, 25.294220],\n\t\t\t\t\t\t\t[-80.292567, 25.314385],\n\t\t\t\t\t\t\t[-80.289602, 25.325061],\n\t\t\t\t\t\t\t[-80.275961, 25.344039],\n\t\t\t\t\t\t\t[-80.264614, 25.354322],\n\t\t\t\t\t\t\t[-80.256982, 25.361239],\n\t\t\t\t\t\t\t[-80.254610, 25.380810],\n\t\t\t\t\t\t\t[-80.251052, 25.391486],\n\t\t\t\t\t\t\t[-80.246307, 25.398603],\n\t\t\t\t\t\t\t[-80.226142, 25.406313],\n\t\t\t\t\t\t\t[-80.219025, 25.411058],\n\t\t\t\t\t\t\t[-80.214280, 25.416988],\n\t\t\t\t\t\t\t[-80.206570, 25.434188],\n\t\t\t\t\t\t\t[-80.199453, 25.458504],\n\t\t\t\t\t\t\t[-80.192336, 25.473331],\n\t\t\t\t\t\t\t[-80.189964, 25.485786],\n\t\t\t\t\t\t\t[-80.191743, 25.495275],\n\t\t\t\t\t\t\t[-80.188778, 25.507730],\n\t\t\t\t\t\t\t[-80.179288, 25.518999],\n\t\t\t\t\t\t\t[-80.174544, 25.518406],\n\t\t\t\t\t\t\t[-80.173951, 25.482821],\n\t\t\t\t\t\t\t[-80.184033, 25.468587],\n\t\t\t\t\t\t\t[-80.204198, 25.412244],\n\t\t\t\t\t\t\t[-80.221991, 25.397417],\n\t\t\t\t\t\t\t[-80.238004, 25.361832],\n\t\t\t\t\t\t\t[-80.240376, 25.347005],\n\t\t\t\t\t\t\t[-80.249865, 25.342853],\n\t\t\t\t\t\t\t[-80.250581, 25.341930]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-81.582923, 24.658732],\n\t\t\t\t\t\t\t[-81.580534, 24.669140],\n\t\t\t\t\t\t\t[-81.562917, 24.692912],\n\t\t\t\t\t\t\t[-81.557610, 24.692488],\n\t\t\t\t\t\t\t[-81.542116, 24.681026],\n\t\t\t\t\t\t\t[-81.535323, 24.679540],\n\t\t\t\t\t\t\t[-81.518980, 24.687818],\n\t\t\t\t\t\t\t[-81.516433, 24.700341],\n\t\t\t\t\t\t\t[-81.512400, 24.703737],\n\t\t\t\t\t\t\t[-81.490962, 24.710105],\n\t\t\t\t\t\t\t[-81.476642, 24.711244],\n\t\t\t\t\t\t\t[-81.474186, 24.706332],\n\t\t\t\t\t\t\t[-81.469275, 24.704286],\n\t\t\t\t\t\t\t[-81.459043, 24.707355],\n\t\t\t\t\t\t\t[-81.454132, 24.710834],\n\t\t\t\t\t\t\t[-81.451881, 24.714518],\n\t\t\t\t\t\t\t[-81.452700, 24.736209],\n\t\t\t\t\t\t\t[-81.456588, 24.740097],\n\t\t\t\t\t\t\t[-81.451267, 24.747464],\n\t\t\t\t\t\t\t[-81.440831, 24.735390],\n\t\t\t\t\t\t\t[-81.438580, 24.727000],\n\t\t\t\t\t\t\t[-81.435715, 24.723931],\n\t\t\t\t\t\t\t[-81.432032, 24.722908],\n\t\t\t\t\t\t\t[-81.423028, 24.731911],\n\t\t\t\t\t\t\t[-81.421595, 24.737641],\n\t\t\t\t\t\t\t[-81.427121, 24.745827],\n\t\t\t\t\t\t\t[-81.430599, 24.747259],\n\t\t\t\t\t\t\t[-81.431009, 24.751761],\n\t\t\t\t\t\t\t[-81.425483, 24.752989],\n\t\t\t\t\t\t\t[-81.402769, 24.749101],\n\t\t\t\t\t\t\t[-81.392947, 24.743371],\n\t\t\t\t\t\t\t[-81.390287, 24.738460],\n\t\t\t\t\t\t\t[-81.389468, 24.731298],\n\t\t\t\t\t\t\t[-81.385580, 24.726182],\n\t\t\t\t\t\t\t[-81.360410, 24.708788],\n\t\t\t\t\t\t\t[-81.345881, 24.707560],\n\t\t\t\t\t\t\t[-81.319282, 24.701238],\n\t\t\t\t\t\t\t[-81.314787, 24.691764],\n\t\t\t\t\t\t\t[-81.313933, 24.680707],\n\t\t\t\t\t\t\t[-81.309664, 24.665017],\n\t\t\t\t\t\t\t[-81.298028, 24.656774],\n\t\t\t\t\t\t\t[-81.298369, 24.654326],\n\t\t\t\t\t\t\t[-81.303113, 24.651665],\n\t\t\t\t\t\t\t[-81.332831, 24.639528],\n\t\t\t\t\t\t\t[-81.395096, 24.621062],\n\t\t\t\t\t\t\t[-81.401946, 24.623564],\n\t\t\t\t\t\t\t[-81.403319, 24.640294],\n\t\t\t\t\t\t\t[-81.414187, 24.647167],\n\t\t\t\t\t\t\t[-81.432315, 24.645949],\n\t\t\t\t\t\t\t[-81.448623, 24.640172],\n\t\t\t\t\t\t\t[-81.470411, 24.641985],\n\t\t\t\t\t\t\t[-81.480951, 24.645121],\n\t\t\t\t\t\t\t[-81.481830, 24.647369],\n\t\t\t\t\t\t\t[-81.477915, 24.649893],\n\t\t\t\t\t\t\t[-81.476410, 24.653197],\n\t\t\t\t\t\t\t[-81.480504, 24.659757],\n\t\t\t\t\t\t\t[-81.498580, 24.664980],\n\t\t\t\t\t\t\t[-81.502992, 24.660877],\n\t\t\t\t\t\t\t[-81.505585, 24.654609],\n\t\t\t\t\t\t\t[-81.508740, 24.644210],\n\t\t\t\t\t\t\t[-81.509028, 24.631516],\n\t\t\t\t\t\t\t[-81.511165, 24.625135],\n\t\t\t\t\t\t\t[-81.518595, 24.620304],\n\t\t\t\t\t\t\t[-81.546450, 24.614895],\n\t\t\t\t\t\t\t[-81.602998, 24.586444],\n\t\t\t\t\t\t\t[-81.664209, 24.573143],\n\t\t\t\t\t\t\t[-81.674694, 24.564359],\n\t\t\t\t\t\t\t[-81.685278, 24.558739],\n\t\t\t\t\t\t\t[-81.691575, 24.559886],\n\t\t\t\t\t\t\t[-81.732511, 24.556423],\n\t\t\t\t\t\t\t[-81.765993, 24.552103],\n\t\t\t\t\t\t\t[-81.786157, 24.546580],\n\t\t\t\t\t\t\t[-81.810333, 24.544701],\n\t\t\t\t\t\t\t[-81.812890, 24.546468],\n\t\t\t\t\t\t\t[-81.814446, 24.563580],\n\t\t\t\t\t\t\t[-81.811386, 24.569750],\n\t\t\t\t\t\t\t[-81.800676, 24.570989],\n\t\t\t\t\t\t\t[-81.794057, 24.586000],\n\t\t\t\t\t\t\t[-81.773808, 24.584977],\n\t\t\t\t\t\t\t[-81.748071, 24.590199],\n\t\t\t\t\t\t\t[-81.739241, 24.589973],\n\t\t\t\t\t\t\t[-81.734573, 24.584148],\n\t\t\t\t\t\t\t[-81.730473, 24.581960],\n\t\t\t\t\t\t\t[-81.715944, 24.587956],\n\t\t\t\t\t\t\t[-81.715480, 24.592498],\n\t\t\t\t\t\t\t[-81.705364, 24.597647],\n\t\t\t\t\t\t\t[-81.699349, 24.597647],\n\t\t\t\t\t\t\t[-81.694235, 24.591932],\n\t\t\t\t\t\t\t[-81.687017, 24.592534],\n\t\t\t\t\t\t\t[-81.678595, 24.597647],\n\t\t\t\t\t\t\t[-81.668970, 24.607873],\n\t\t\t\t\t\t\t[-81.655735, 24.616295],\n\t\t\t\t\t\t\t[-81.637087, 24.621408],\n\t\t\t\t\t\t\t[-81.614829, 24.642764],\n\t\t\t\t\t\t\t[-81.614529, 24.650584],\n\t\t\t\t\t\t\t[-81.597685, 24.655397],\n\t\t\t\t\t\t\t[-81.587759, 24.655998],\n\t\t\t\t\t\t\t[-81.582923, 24.658732]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-82.150680, 24.576331],\n\t\t\t\t\t\t\t[-82.143075, 24.593395],\n\t\t\t\t\t\t\t[-82.135423, 24.596879],\n\t\t\t\t\t\t\t[-82.125268, 24.597426],\n\t\t\t\t\t\t\t[-82.104187, 24.588256],\n\t\t\t\t\t\t\t[-82.101051, 24.584679],\n\t\t\t\t\t\t\t[-82.099417, 24.572522],\n\t\t\t\t\t\t\t[-82.104429, 24.561167],\n\t\t\t\t\t\t\t[-82.116787, 24.549144],\n\t\t\t\t\t\t\t[-82.159439, 24.548212],\n\t\t\t\t\t\t\t[-82.165206, 24.552159],\n\t\t\t\t\t\t\t[-82.164426, 24.563375],\n\t\t\t\t\t\t\t[-82.150680, 24.576331]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-81.249799, 24.673357],\n\t\t\t\t\t\t\t[-81.246095, 24.675832],\n\t\t\t\t\t\t\t[-81.243232, 24.673998],\n\t\t\t\t\t\t\t[-81.244761, 24.669202],\n\t\t\t\t\t\t\t[-81.281778, 24.653750],\n\t\t\t\t\t\t\t[-81.278312, 24.660448],\n\t\t\t\t\t\t\t[-81.260006, 24.674848],\n\t\t\t\t\t\t\t[-81.249799, 24.673357]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-80.909954, 24.781154],\n\t\t\t\t\t\t\t[-80.906288, 24.769867],\n\t\t\t\t\t\t\t[-80.912042, 24.765050],\n\t\t\t\t\t\t\t[-80.938543, 24.767535],\n\t\t\t\t\t\t\t[-81.015933, 24.719881],\n\t\t\t\t\t\t\t[-81.023794, 24.716901],\n\t\t\t\t\t\t\t[-81.028616, 24.720618],\n\t\t\t\t\t\t\t[-81.032447, 24.727323],\n\t\t\t\t\t\t\t[-81.034290, 24.727341],\n\t\t\t\t\t\t\t[-81.064554, 24.715453],\n\t\t\t\t\t\t\t[-81.071034, 24.711722],\n\t\t\t\t\t\t\t[-81.075855, 24.704266],\n\t\t\t\t\t\t\t[-81.078716, 24.696557],\n\t\t\t\t\t\t\t[-81.078439, 24.692382],\n\t\t\t\t\t\t\t[-81.108041, 24.688592],\n\t\t\t\t\t\t\t[-81.124094, 24.704873],\n\t\t\t\t\t\t\t[-81.125371, 24.708291],\n\t\t\t\t\t\t\t[-81.107355, 24.712760],\n\t\t\t\t\t\t\t[-81.105287, 24.711280],\n\t\t\t\t\t\t\t[-81.099135, 24.711993],\n\t\t\t\t\t\t\t[-81.066816, 24.723926],\n\t\t\t\t\t\t\t[-81.050570, 24.737581],\n\t\t\t\t\t\t\t[-81.041797, 24.742965],\n\t\t\t\t\t\t\t[-81.036698, 24.742827],\n\t\t\t\t\t\t\t[-81.035192, 24.739982],\n\t\t\t\t\t\t\t[-81.022170, 24.733091],\n\t\t\t\t\t\t\t[-81.016918, 24.734676],\n\t\t\t\t\t\t\t[-80.994426, 24.743991],\n\t\t\t\t\t\t\t[-80.986454, 24.752749],\n\t\t\t\t\t\t\t[-80.960129, 24.764226],\n\t\t\t\t\t\t\t[-80.910431, 24.782324],\n\t\t\t\t\t\t\t[-80.909954, 24.781154]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-81.317673, 24.757290],\n\t\t\t\t\t\t\t[-81.305468, 24.756612],\n\t\t\t\t\t\t\t[-81.290801, 24.736862],\n\t\t\t\t\t\t\t[-81.288259, 24.720881],\n\t\t\t\t\t\t\t[-81.302984, 24.714199],\n\t\t\t\t\t\t\t[-81.310744, 24.727068],\n\t\t\t\t\t\t\t[-81.318505, 24.729477],\n\t\t\t\t\t\t\t[-81.326844, 24.728375],\n\t\t\t\t\t\t\t[-81.350162, 24.746524],\n\t\t\t\t\t\t\t[-81.357417, 24.756834],\n\t\t\t\t\t\t\t[-81.342695, 24.756250],\n\t\t\t\t\t\t\t[-81.327555, 24.762315],\n\t\t\t\t\t\t\t[-81.324637, 24.767210],\n\t\t\t\t\t\t\t[-81.317673, 24.757290]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-80.890540, 24.791678],\n\t\t\t\t\t\t\t[-80.884572, 24.791561],\n\t\t\t\t\t\t\t[-80.884020, 24.790414],\n\t\t\t\t\t\t\t[-80.892649, 24.785991],\n\t\t\t\t\t\t\t[-80.906874, 24.783744],\n\t\t\t\t\t\t\t[-80.890540, 24.791678]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-80.788263, 24.824218],\n\t\t\t\t\t\t\t[-80.790497, 24.817789],\n\t\t\t\t\t\t\t[-80.796053, 24.811940],\n\t\t\t\t\t\t\t[-80.822342, 24.812629],\n\t\t\t\t\t\t\t[-80.846191, 24.802968],\n\t\t\t\t\t\t\t[-80.850338, 24.802600],\n\t\t\t\t\t\t\t[-80.850866, 24.803701],\n\t\t\t\t\t\t\t[-80.846142, 24.807488],\n\t\t\t\t\t\t\t[-80.830158, 24.814280],\n\t\t\t\t\t\t\t[-80.814551, 24.827953],\n\t\t\t\t\t\t\t[-80.792780, 24.843918],\n\t\t\t\t\t\t\t[-80.780564, 24.840520],\n\t\t\t\t\t\t\t[-80.788263, 24.824218]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-80.729275, 24.865361],\n\t\t\t\t\t\t\t[-80.719977, 24.864644],\n\t\t\t\t\t\t\t[-80.703028, 24.880873],\n\t\t\t\t\t\t\t[-80.691762, 24.885759],\n\t\t\t\t\t\t\t[-80.690354, 24.881539],\n\t\t\t\t\t\t\t[-80.703176, 24.869495],\n\t\t\t\t\t\t\t[-80.711850, 24.863323],\n\t\t\t\t\t\t\t[-80.761359, 24.836225],\n\t\t\t\t\t\t\t[-80.766966, 24.836158],\n\t\t\t\t\t\t\t[-80.745468, 24.850652],\n\t\t\t\t\t\t\t[-80.740611, 24.857421],\n\t\t\t\t\t\t\t[-80.732343, 24.864810],\n\t\t\t\t\t\t\t[-80.729275, 24.865361]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-80.873096, 25.805377],\n\t\t\t\t\t\t\t[-80.873190, 25.363993],\n\t\t\t\t\t\t\t[-80.858167, 25.176576],\n\t\t\t\t\t\t\t[-80.858801, 25.176493],\n\t\t\t\t\t\t\t[-80.874323, 25.174469],\n\t\t\t\t\t\t\t[-80.874815, 25.174405],\n\t\t\t\t\t\t\t[-80.875460, 25.174321],\n\t\t\t\t\t\t\t[-80.875731, 25.174185],\n\t\t\t\t\t\t\t[-80.878982, 25.172562],\n\t\t\t\t\t\t\t[-80.879235, 25.172436],\n\t\t\t\t\t\t\t[-80.891681, 25.166221],\n\t\t\t\t\t\t\t[-80.899459, 25.162337],\n\t\t\t\t\t\t\t[-80.900066, 25.162034],\n\t\t\t\t\t\t\t[-80.900124, 25.161726],\n\t\t\t\t\t\t\t[-80.901110, 25.156496],\n\t\t\t\t\t\t\t[-80.901592, 25.153933],\n\t\t\t\t\t\t\t[-80.901617, 25.153803],\n\t\t\t\t\t\t\t[-80.900220, 25.150627],\n\t\t\t\t\t\t\t[-80.898911, 25.147652],\n\t\t\t\t\t\t\t[-80.900559, 25.139755],\n\t\t\t\t\t\t\t[-80.900577, 25.139669],\n\t\t\t\t\t\t\t[-80.900668, 25.139679],\n\t\t\t\t\t\t\t[-80.902311, 25.139853],\n\t\t\t\t\t\t\t[-80.906578, 25.140307],\n\t\t\t\t\t\t\t[-80.915924, 25.141301],\n\t\t\t\t\t\t\t[-80.915965, 25.141291],\n\t\t\t\t\t\t\t[-80.931353, 25.137424],\n\t\t\t\t\t\t\t[-80.936750, 25.136068],\n\t\t\t\t\t\t\t[-80.939272, 25.135434],\n\t\t\t\t\t\t\t[-80.940988, 25.135003],\n\t\t\t\t\t\t\t[-80.943164, 25.134456],\n\t\t\t\t\t\t\t[-80.943216, 25.134443],\n\t\t\t\t\t\t\t[-80.954567, 25.135450],\n\t\t\t\t\t\t\t[-80.955577, 25.135540],\n\t\t\t\t\t\t\t[-80.956150, 25.135591],\n\t\t\t\t\t\t\t[-80.957427, 25.135704],\n\t\t\t\t\t\t\t[-80.958727, 25.135546],\n\t\t\t\t\t\t\t[-80.967465, 25.134482],\n\t\t\t\t\t\t\t[-80.967506, 25.134477],\n\t\t\t\t\t\t\t[-80.967740, 25.134448],\n\t\t\t\t\t\t\t[-80.967832, 25.134437],\n\t\t\t\t\t\t\t[-80.970185, 25.134150],\n\t\t\t\t\t\t\t[-80.970727, 25.134084],\n\t\t\t\t\t\t\t[-80.970797, 25.134076],\n\t\t\t\t\t\t\t[-80.971585, 25.133980],\n\t\t\t\t\t\t\t[-80.971664, 25.133970],\n\t\t\t\t\t\t\t[-80.971765, 25.133958],\n\t\t\t\t\t\t\t[-80.973129, 25.133473],\n\t\t\t\t\t\t\t[-80.977198, 25.132028],\n\t\t\t\t\t\t\t[-80.991949, 25.126789],\n\t\t\t\t\t\t\t[-80.994096, 25.126026],\n\t\t\t\t\t\t\t[-80.999176, 25.124222],\n\t\t\t\t\t\t\t[-80.999772, 25.124290],\n\t\t\t\t\t\t\t[-81.009598, 25.125403],\n\t\t\t\t\t\t\t[-81.022989, 25.129393],\n\t\t\t\t\t\t\t[-81.025154, 25.129305],\n\t\t\t\t\t\t\t[-81.033404, 25.128969],\n\t\t\t\t\t\t\t[-81.038021, 25.128781],\n\t\t\t\t\t\t\t[-81.049308, 25.128322],\n\t\t\t\t\t\t\t[-81.049344, 25.128320],\n\t\t\t\t\t\t\t[-81.049445, 25.128316],\n\t\t\t\t\t\t\t[-81.049896, 25.128298],\n\t\t\t\t\t\t\t[-81.050505, 25.128273],\n\t\t\t\t\t\t\t[-81.079859, 25.118797],\n\t\t\t\t\t\t\t[-81.094524, 25.127054],\n\t\t\t\t\t\t\t[-81.111943, 25.145470],\n\t\t\t\t\t\t\t[-81.120616, 25.152302],\n\t\t\t\t\t\t\t[-81.133567, 25.156295],\n\t\t\t\t\t\t\t[-81.141024, 25.163868],\n\t\t\t\t\t\t\t[-81.142278, 25.183000],\n\t\t\t\t\t\t\t[-81.142471, 25.183440],\n\t\t\t\t\t\t\t[-81.142897, 25.184406],\n\t\t\t\t\t\t\t[-81.146737, 25.193139],\n\t\t\t\t\t\t\t[-81.155252, 25.207706],\n\t\t\t\t\t\t\t[-81.155481, 25.208098],\n\t\t\t\t\t\t\t[-81.155820, 25.208389],\n\t\t\t\t\t\t\t[-81.168046, 25.218854],\n\t\t\t\t\t\t\t[-81.171265, 25.221609],\n\t\t\t\t\t\t\t[-81.172044, 25.222276],\n\t\t\t\t\t\t\t[-81.171978, 25.223648],\n\t\t\t\t\t\t\t[-81.171455, 25.234483],\n\t\t\t\t\t\t\t[-81.171369, 25.236268],\n\t\t\t\t\t\t\t[-81.170953, 25.244898],\n\t\t\t\t\t\t\t[-81.170907, 25.245857],\n\t\t\t\t\t\t\t[-81.169709, 25.249231],\n\t\t\t\t\t\t\t[-81.169509, 25.249795],\n\t\t\t\t\t\t\t[-81.169294, 25.250398],\n\t\t\t\t\t\t\t[-81.168307, 25.253178],\n\t\t\t\t\t\t\t[-81.162070, 25.289833],\n\t\t\t\t\t\t\t[-81.159293, 25.298595],\n\t\t\t\t\t\t\t[-81.152300, 25.305543],\n\t\t\t\t\t\t\t[-81.148915, 25.318067],\n\t\t\t\t\t\t\t[-81.151916, 25.324766],\n\t\t\t\t\t\t\t[-81.148103, 25.332793],\n\t\t\t\t\t\t\t[-81.140099, 25.341117],\n\t\t\t\t\t\t\t[-81.133913, 25.342996],\n\t\t\t\t\t\t\t[-81.121410, 25.338750],\n\t\t\t\t\t\t\t[-81.118208, 25.345220],\n\t\t\t\t\t\t\t[-81.117265, 25.354953],\n\t\t\t\t\t\t\t[-81.128492, 25.380511],\n\t\t\t\t\t\t\t[-81.141395, 25.381358],\n\t\t\t\t\t\t\t[-81.150508, 25.387255],\n\t\t\t\t\t\t\t[-81.150656, 25.399206],\n\t\t\t\t\t\t\t[-81.147144, 25.404297],\n\t\t\t\t\t\t\t[-81.146765, 25.407577],\n\t\t\t\t\t\t\t[-81.168652, 25.463848],\n\t\t\t\t\t\t\t[-81.179406, 25.475427],\n\t\t\t\t\t\t\t[-81.191924, 25.484745],\n\t\t\t\t\t\t\t[-81.208201, 25.504937],\n\t\t\t\t\t\t\t[-81.210149, 25.516888],\n\t\t\t\t\t\t\t[-81.203175, 25.534160],\n\t\t\t\t\t\t\t[-81.204389, 25.538908],\n\t\t\t\t\t\t\t[-81.209321, 25.548611],\n\t\t\t\t\t\t\t[-81.225557, 25.558470],\n\t\t\t\t\t\t\t[-81.232705, 25.573366],\n\t\t\t\t\t\t\t[-81.233051, 25.586587],\n\t\t\t\t\t\t\t[-81.240519, 25.599041],\n\t\t\t\t\t\t\t[-81.240677, 25.613629],\n\t\t\t\t\t\t\t[-81.253951, 25.638181],\n\t\t\t\t\t\t\t[-81.268924, 25.656927],\n\t\t\t\t\t\t\t[-81.277374, 25.664980],\n\t\t\t\t\t\t\t[-81.290328, 25.687506],\n\t\t\t\t\t\t\t[-81.328935, 25.717233],\n\t\t\t\t\t\t\t[-81.335037, 25.715649],\n\t\t\t\t\t\t\t[-81.346078, 25.721473],\n\t\t\t\t\t\t\t[-81.345972, 25.736536],\n\t\t\t\t\t\t\t[-81.343984, 25.747668],\n\t\t\t\t\t\t\t[-81.346767, 25.754029],\n\t\t\t\t\t\t\t[-81.355116, 25.760390],\n\t\t\t\t\t\t\t[-81.359489, 25.766354],\n\t\t\t\t\t\t\t[-81.361875, 25.772715],\n\t\t\t\t\t\t\t[-81.344779, 25.782257],\n\t\t\t\t\t\t\t[-81.340406, 25.786631],\n\t\t\t\t\t\t\t[-81.341598, 25.794582],\n\t\t\t\t\t\t\t[-81.344564, 25.803322],\n\t\t\t\t\t\t\t[-80.873096, 25.805377]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12095\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"095\",\n\t\t\t\t\"NAME\": \"Orange\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 903.429000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.657390, 28.553122],\n\t\t\t\t\t\t[-81.658114, 28.682710],\n\t\t\t\t\t\t[-81.624731, 28.785927],\n\t\t\t\t\t\t[-81.592971, 28.785970],\n\t\t\t\t\t\t[-81.414446, 28.784955],\n\t\t\t\t\t\t[-81.459695, 28.644475],\n\t\t\t\t\t\t[-81.459501, 28.640285],\n\t\t\t\t\t\t[-81.457975, 28.640336],\n\t\t\t\t\t\t[-81.365289, 28.640468],\n\t\t\t\t\t\t[-81.357965, 28.639187],\n\t\t\t\t\t\t[-81.331099, 28.639581],\n\t\t\t\t\t\t[-81.328650, 28.639334],\n\t\t\t\t\t\t[-81.327911, 28.611268],\n\t\t\t\t\t\t[-81.326991, 28.610298],\n\t\t\t\t\t\t[-80.987250, 28.612997],\n\t\t\t\t\t\t[-80.880890, 28.503633],\n\t\t\t\t\t\t[-80.862908, 28.347487],\n\t\t\t\t\t\t[-81.309571, 28.348051],\n\t\t\t\t\t\t[-81.513859, 28.347374],\n\t\t\t\t\t\t[-81.531837, 28.347384],\n\t\t\t\t\t\t[-81.657268, 28.347098],\n\t\t\t\t\t\t[-81.657390, 28.553122]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12111\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"111\",\n\t\t\t\t\"NAME\": \"St. Lucie\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 571.926000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.677862, 27.205988],\n\t\t\t\t\t\t[-80.678609, 27.448598],\n\t\t\t\t\t\t[-80.679288, 27.455697],\n\t\t\t\t\t\t[-80.679821, 27.558470],\n\t\t\t\t\t\t[-80.321271, 27.557378],\n\t\t\t\t\t\t[-80.311757, 27.524625],\n\t\t\t\t\t\t[-80.301170, 27.500314],\n\t\t\t\t\t\t[-80.293171, 27.500314],\n\t\t\t\t\t\t[-80.265535, 27.420542],\n\t\t\t\t\t\t[-80.253665, 27.379790],\n\t\t\t\t\t\t[-80.233538, 27.341307],\n\t\t\t\t\t\t[-80.226753, 27.322736],\n\t\t\t\t\t\t[-80.199288, 27.263022],\n\t\t\t\t\t\t[-80.284771, 27.263723],\n\t\t\t\t\t\t[-80.285510, 27.206025],\n\t\t\t\t\t\t[-80.481413, 27.206370],\n\t\t\t\t\t\t[-80.481534, 27.206370],\n\t\t\t\t\t\t[-80.677862, 27.205988]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12119\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"119\",\n\t\t\t\t\"NAME\": \"Sumter\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 546.933000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.954190, 28.960053],\n\t\t\t\t\t\t[-81.953580, 28.820940],\n\t\t\t\t\t\t[-81.957641, 28.345180],\n\t\t\t\t\t\t[-82.055819, 28.312794],\n\t\t\t\t\t\t[-82.054694, 28.478397],\n\t\t\t\t\t\t[-82.054469, 28.521367],\n\t\t\t\t\t\t[-82.208184, 28.572054],\n\t\t\t\t\t\t[-82.263052, 28.667634],\n\t\t\t\t\t\t[-82.170848, 28.790190],\n\t\t\t\t\t\t[-82.311697, 28.960391],\n\t\t\t\t\t\t[-81.954190, 28.960053]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12125\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"125\",\n\t\t\t\t\"NAME\": \"Union\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 243.556000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.418728, 29.923093],\n\t\t\t\t\t\t[-82.529705, 29.940881],\n\t\t\t\t\t\t[-82.576010, 29.991468],\n\t\t\t\t\t\t[-82.458364, 30.136449],\n\t\t\t\t\t\t[-82.142578, 30.143117],\n\t\t\t\t\t\t[-82.307409, 29.956156],\n\t\t\t\t\t\t[-82.418728, 29.923093]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13001\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"001\",\n\t\t\t\t\"NAME\": \"Appling\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 507.081000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.521420, 31.710796],\n\t\t\t\t\t\t[-82.520251, 31.838388],\n\t\t\t\t\t\t[-82.431362, 31.837993],\n\t\t\t\t\t\t[-82.431531, 31.966182],\n\t\t\t\t\t\t[-82.225042, 31.913074],\n\t\t\t\t\t\t[-82.142843, 31.899300],\n\t\t\t\t\t\t[-82.048582, 31.827075],\n\t\t\t\t\t\t[-82.133013, 31.773404],\n\t\t\t\t\t\t[-82.132794, 31.471262],\n\t\t\t\t\t\t[-82.226585, 31.530699],\n\t\t\t\t\t\t[-82.521420, 31.710796]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13013\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"013\",\n\t\t\t\t\"NAME\": \"Barrow\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 160.309000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.647031, 33.906198],\n\t\t\t\t\t\t[-83.763835, 33.896682],\n\t\t\t\t\t\t[-83.799104, 33.929844],\n\t\t\t\t\t\t[-83.869115, 34.004316],\n\t\t\t\t\t\t[-83.817682, 34.127493],\n\t\t\t\t\t\t[-83.767532, 34.066448],\n\t\t\t\t\t\t[-83.563215, 34.031757],\n\t\t\t\t\t\t[-83.537385, 33.965912],\n\t\t\t\t\t\t[-83.647031, 33.906198]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13029\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"029\",\n\t\t\t\t\"NAME\": \"Bryan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 435.967000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.391698, 32.095886],\n\t\t\t\t\t\t[-81.323529, 32.019854],\n\t\t\t\t\t\t[-81.285467, 31.942994],\n\t\t\t\t\t\t[-81.138533, 31.855921],\n\t\t\t\t\t\t[-81.177027, 31.816113],\n\t\t\t\t\t\t[-81.154686, 31.726203],\n\t\t\t\t\t\t[-81.160670, 31.728144],\n\t\t\t\t\t\t[-81.192784, 31.733245],\n\t\t\t\t\t\t[-81.198394, 31.726070],\n\t\t\t\t\t\t[-81.355837, 31.814900],\n\t\t\t\t\t\t[-81.407737, 31.944302],\n\t\t\t\t\t\t[-81.475761, 31.974255],\n\t\t\t\t\t\t[-81.593429, 31.971350],\n\t\t\t\t\t\t[-81.604431, 32.010948],\n\t\t\t\t\t\t[-81.718658, 32.089351],\n\t\t\t\t\t\t[-81.780858, 32.152890],\n\t\t\t\t\t\t[-81.435830, 32.241289],\n\t\t\t\t\t\t[-81.391698, 32.095886]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13043\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"043\",\n\t\t\t\t\"NAME\": \"Candler\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 243.044000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.969069, 32.268783],\n\t\t\t\t\t\t[-81.999843, 32.276189],\n\t\t\t\t\t\t[-82.025339, 32.278883],\n\t\t\t\t\t\t[-82.232788, 32.318838],\n\t\t\t\t\t\t[-82.252757, 32.353310],\n\t\t\t\t\t\t[-82.148338, 32.520429],\n\t\t\t\t\t\t[-82.030233, 32.538770],\n\t\t\t\t\t\t[-81.918671, 32.415410],\n\t\t\t\t\t\t[-81.969069, 32.268783]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13055\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"055\",\n\t\t\t\t\"NAME\": \"Chattooga\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 313.338000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.513699, 34.524133],\n\t\t\t\t\t\t[-85.513709, 34.524170],\n\t\t\t\t\t\t[-85.513930, 34.525192],\n\t\t\t\t\t\t[-85.527127, 34.588684],\n\t\t\t\t\t\t[-85.107748, 34.587483],\n\t\t\t\t\t\t[-85.180548, 34.435996],\n\t\t\t\t\t\t[-85.334881, 34.369748],\n\t\t\t\t\t\t[-85.387351, 34.286097],\n\t\t\t\t\t\t[-85.462304, 34.286365],\n\t\t\t\t\t\t[-85.502316, 34.473954],\n\t\t\t\t\t\t[-85.502454, 34.474527],\n\t\t\t\t\t\t[-85.508384, 34.501212],\n\t\t\t\t\t\t[-85.512108, 34.518252],\n\t\t\t\t\t\t[-85.513699, 34.524133]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13059\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"059\",\n\t\t\t\t\"NAME\": \"Clarke\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 119.200000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.360028, 34.040572],\n\t\t\t\t\t\t[-83.258413, 33.999098],\n\t\t\t\t\t\t[-83.240860, 33.904430],\n\t\t\t\t\t\t[-83.275933, 33.847977],\n\t\t\t\t\t\t[-83.537385, 33.965912],\n\t\t\t\t\t\t[-83.360028, 34.040572]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13071\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"071\",\n\t\t\t\t\"NAME\": \"Colquitt\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 544.153000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.999430, 31.334966],\n\t\t\t\t\t\t[-83.654090, 31.330661],\n\t\t\t\t\t\t[-83.512607, 31.327405],\n\t\t\t\t\t\t[-83.509810, 31.206181],\n\t\t\t\t\t\t[-83.574857, 31.078135],\n\t\t\t\t\t\t[-83.573959, 31.033875],\n\t\t\t\t\t\t[-83.736158, 31.037679],\n\t\t\t\t\t\t[-84.003876, 31.041582],\n\t\t\t\t\t\t[-84.003627, 31.077290],\n\t\t\t\t\t\t[-83.999430, 31.334966]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13079\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"079\",\n\t\t\t\t\"NAME\": \"Crawford\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 324.888000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.701090, 32.691598],\n\t\t\t\t\t\t[-83.766787, 32.692622],\n\t\t\t\t\t\t[-84.003363, 32.529927],\n\t\t\t\t\t\t[-84.104966, 32.673385],\n\t\t\t\t\t\t[-84.202628, 32.690018],\n\t\t\t\t\t\t[-84.124275, 32.849562],\n\t\t\t\t\t\t[-83.891922, 32.848351],\n\t\t\t\t\t\t[-83.824398, 32.741861],\n\t\t\t\t\t\t[-83.701152, 32.692169],\n\t\t\t\t\t\t[-83.701090, 32.691598]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13091\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"091\",\n\t\t\t\t\"NAME\": \"Dodge\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 495.890000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.346528, 32.272489],\n\t\t\t\t\t\t[-83.304750, 32.341958],\n\t\t\t\t\t\t[-83.173252, 32.452533],\n\t\t\t\t\t\t[-83.138991, 32.423069],\n\t\t\t\t\t\t[-82.990967, 32.147274],\n\t\t\t\t\t\t[-82.884803, 32.196072],\n\t\t\t\t\t\t[-82.871790, 32.182730],\n\t\t\t\t\t\t[-82.927865, 32.135274],\n\t\t\t\t\t\t[-82.934566, 32.153274],\n\t\t\t\t\t\t[-82.955466, 32.135274],\n\t\t\t\t\t\t[-82.942066, 32.124074],\n\t\t\t\t\t\t[-83.205739, 31.900325],\n\t\t\t\t\t\t[-83.292061, 31.984506],\n\t\t\t\t\t\t[-83.337313, 32.105885],\n\t\t\t\t\t\t[-83.291106, 32.178825],\n\t\t\t\t\t\t[-83.346528, 32.272489]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13107\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"107\",\n\t\t\t\t\"NAME\": \"Emanuel\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 680.604000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.647733, 32.512507],\n\t\t\t\t\t\t[-82.594439, 32.579158],\n\t\t\t\t\t\t[-82.465065, 32.646833],\n\t\t\t\t\t\t[-82.499431, 32.686340],\n\t\t\t\t\t\t[-82.434149, 32.762258],\n\t\t\t\t\t\t[-82.316512, 32.835772],\n\t\t\t\t\t\t[-82.144977, 32.812741],\n\t\t\t\t\t\t[-82.082440, 32.663061],\n\t\t\t\t\t\t[-82.001236, 32.606910],\n\t\t\t\t\t\t[-82.026842, 32.555163],\n\t\t\t\t\t\t[-82.030233, 32.538770],\n\t\t\t\t\t\t[-82.148338, 32.520429],\n\t\t\t\t\t\t[-82.252757, 32.353310],\n\t\t\t\t\t\t[-82.232788, 32.318838],\n\t\t\t\t\t\t[-82.354546, 32.292194],\n\t\t\t\t\t\t[-82.409118, 32.353830],\n\t\t\t\t\t\t[-82.381940, 32.440596],\n\t\t\t\t\t\t[-82.488941, 32.491830],\n\t\t\t\t\t\t[-82.647733, 32.512507]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13113\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"113\",\n\t\t\t\t\"NAME\": \"Fayette\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 194.342000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.497527, 33.257422],\n\t\t\t\t\t\t[-84.627220, 33.440078],\n\t\t\t\t\t\t[-84.609540, 33.502511],\n\t\t\t\t\t\t[-84.458665, 33.550933],\n\t\t\t\t\t\t[-84.381759, 33.463414],\n\t\t\t\t\t\t[-84.388118, 33.352465],\n\t\t\t\t\t\t[-84.432907, 33.256500],\n\t\t\t\t\t\t[-84.497527, 33.257422]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13123\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"123\",\n\t\t\t\t\"NAME\": \"Gilmer\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 426.540000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.654366, 34.548946],\n\t\t\t\t\t\t[-84.654523, 34.583187],\n\t\t\t\t\t\t[-84.657098, 34.728905],\n\t\t\t\t\t\t[-84.582306, 34.825141],\n\t\t\t\t\t\t[-84.618637, 34.855398],\n\t\t\t\t\t\t[-84.429093, 34.855036],\n\t\t\t\t\t\t[-84.314653, 34.807328],\n\t\t\t\t\t\t[-84.196754, 34.617924],\n\t\t\t\t\t\t[-84.255112, 34.568333],\n\t\t\t\t\t\t[-84.345553, 34.562735],\n\t\t\t\t\t\t[-84.654366, 34.548946]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08053\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"053\",\n\t\t\t\t\"NAME\": \"Hinsdale\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1117.251000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-107.482131, 37.422673],\n\t\t\t\t\t\t[-107.482179, 37.639501],\n\t\t\t\t\t\t[-107.468843, 37.809726],\n\t\t\t\t\t\t[-107.516547, 37.826451],\n\t\t\t\t\t\t[-107.568875, 37.965015],\n\t\t\t\t\t\t[-107.510880, 38.060877],\n\t\t\t\t\t\t[-107.568620, 38.147267],\n\t\t\t\t\t\t[-107.001119, 38.147072],\n\t\t\t\t\t\t[-107.000602, 37.956041],\n\t\t\t\t\t\t[-107.138191, 37.938848],\n\t\t\t\t\t\t[-107.145138, 37.675497],\n\t\t\t\t\t\t[-107.123868, 37.675029],\n\t\t\t\t\t\t[-107.128680, 37.422942],\n\t\t\t\t\t\t[-107.482131, 37.422673]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08057\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"057\",\n\t\t\t\t\"NAME\": \"Jackson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1613.723000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-106.321165, 40.999123],\n\t\t\t\t\t\t[-106.190550, 40.998056],\n\t\t\t\t\t\t[-106.185307, 40.933973],\n\t\t\t\t\t\t[-106.057715, 40.817120],\n\t\t\t\t\t\t[-105.854926, 40.486252],\n\t\t\t\t\t\t[-105.891754, 40.476661],\n\t\t\t\t\t\t[-105.959659, 40.348149],\n\t\t\t\t\t\t[-106.018622, 40.373295],\n\t\t\t\t\t\t[-106.230074, 40.323382],\n\t\t\t\t\t\t[-106.353758, 40.357536],\n\t\t\t\t\t\t[-106.443420, 40.346533],\n\t\t\t\t\t\t[-106.489842, 40.411578],\n\t\t\t\t\t\t[-106.612321, 40.379383],\n\t\t\t\t\t\t[-106.652112, 40.445231],\n\t\t\t\t\t\t[-106.706149, 40.616597],\n\t\t\t\t\t\t[-106.636922, 40.789489],\n\t\t\t\t\t\t[-106.654541, 40.849117],\n\t\t\t\t\t\t[-106.825030, 40.932119],\n\t\t\t\t\t\t[-106.852349, 40.925183],\n\t\t\t\t\t\t[-106.857772, 41.003082],\n\t\t\t\t\t\t[-106.453859, 41.002057],\n\t\t\t\t\t\t[-106.439563, 41.001978],\n\t\t\t\t\t\t[-106.437419, 41.001795],\n\t\t\t\t\t\t[-106.430950, 41.001752],\n\t\t\t\t\t\t[-106.391852, 41.001176],\n\t\t\t\t\t\t[-106.386356, 41.001144],\n\t\t\t\t\t\t[-106.321165, 40.999123]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08059\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"059\",\n\t\t\t\t\"NAME\": \"Jefferson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 764.208000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-105.081564, 39.634728],\n\t\t\t\t\t\t\t[-105.081959, 39.635170],\n\t\t\t\t\t\t\t[-105.080907, 39.635605],\n\t\t\t\t\t\t\t[-105.080803, 39.634723],\n\t\t\t\t\t\t\t[-105.081564, 39.634728]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-105.092839, 39.618327],\n\t\t\t\t\t\t\t[-105.096909, 39.614423],\n\t\t\t\t\t\t\t[-105.059305, 39.614337],\n\t\t\t\t\t\t\t[-105.053439, 39.621423],\n\t\t\t\t\t\t\t[-105.054140, 39.566088],\n\t\t\t\t\t\t\t[-105.048740, 39.566088],\n\t\t\t\t\t\t\t[-105.260054, 39.210445],\n\t\t\t\t\t\t\t[-105.329220, 39.129689],\n\t\t\t\t\t\t\t[-105.330444, 39.129685],\n\t\t\t\t\t\t\t[-105.397875, 39.129564],\n\t\t\t\t\t\t\t[-105.398453, 39.363516],\n\t\t\t\t\t\t\t[-105.398949, 39.566056],\n\t\t\t\t\t\t\t[-105.397949, 39.747087],\n\t\t\t\t\t\t\t[-105.397934, 39.841137],\n\t\t\t\t\t\t\t[-105.397450, 39.853697],\n\t\t\t\t\t\t\t[-105.397949, 39.860387],\n\t\t\t\t\t\t\t[-105.397568, 39.866061],\n\t\t\t\t\t\t\t[-105.398043, 39.872186],\n\t\t\t\t\t\t\t[-105.397649, 39.883187],\n\t\t\t\t\t\t\t[-105.397849, 39.912886],\n\t\t\t\t\t\t\t[-105.147342, 39.913886],\n\t\t\t\t\t\t\t[-105.052884, 39.913795],\n\t\t\t\t\t\t\t[-105.053245, 39.860018],\n\t\t\t\t\t\t\t[-105.052900, 39.852042],\n\t\t\t\t\t\t\t[-105.053190, 39.849251],\n\t\t\t\t\t\t\t[-105.053270, 39.820028],\n\t\t\t\t\t\t\t[-105.053256, 39.806497],\n\t\t\t\t\t\t\t[-105.052829, 39.803874],\n\t\t\t\t\t\t\t[-105.053162, 39.799239],\n\t\t\t\t\t\t\t[-105.053246, 39.791063],\n\t\t\t\t\t\t\t[-105.055083, 39.791065],\n\t\t\t\t\t\t\t[-105.055272, 39.791065],\n\t\t\t\t\t\t\t[-105.055627, 39.791066],\n\t\t\t\t\t\t\t[-105.056162, 39.791067],\n\t\t\t\t\t\t\t[-105.056630, 39.791067],\n\t\t\t\t\t\t\t[-105.059338, 39.791072],\n\t\t\t\t\t\t\t[-105.059696, 39.791072],\n\t\t\t\t\t\t\t[-105.060417, 39.791073],\n\t\t\t\t\t\t\t[-105.060678, 39.791073],\n\t\t\t\t\t\t\t[-105.061480, 39.791075],\n\t\t\t\t\t\t\t[-105.061608, 39.790928],\n\t\t\t\t\t\t\t[-105.061722, 39.790582],\n\t\t\t\t\t\t\t[-105.061899, 39.790083],\n\t\t\t\t\t\t\t[-105.061917, 39.790083],\n\t\t\t\t\t\t\t[-105.062966, 39.790086],\n\t\t\t\t\t\t\t[-105.063059, 39.790084],\n\t\t\t\t\t\t\t[-105.063298, 39.790081],\n\t\t\t\t\t\t\t[-105.063301, 39.790445],\n\t\t\t\t\t\t\t[-105.063301, 39.790476],\n\t\t\t\t\t\t\t[-105.063302, 39.790494],\n\t\t\t\t\t\t\t[-105.063302, 39.790568],\n\t\t\t\t\t\t\t[-105.063303, 39.790737],\n\t\t\t\t\t\t\t[-105.063304, 39.790775],\n\t\t\t\t\t\t\t[-105.063306, 39.791077],\n\t\t\t\t\t\t\t[-105.063382, 39.791077],\n\t\t\t\t\t\t\t[-105.064161, 39.791079],\n\t\t\t\t\t\t\t[-105.064203, 39.791079],\n\t\t\t\t\t\t\t[-105.064243, 39.791079],\n\t\t\t\t\t\t\t[-105.064541, 39.791080],\n\t\t\t\t\t\t\t[-105.064542, 39.790989],\n\t\t\t\t\t\t\t[-105.064545, 39.790686],\n\t\t\t\t\t\t\t[-105.064552, 39.789999],\n\t\t\t\t\t\t\t[-105.064559, 39.789695],\n\t\t\t\t\t\t\t[-105.064777, 39.789691],\n\t\t\t\t\t\t\t[-105.065115, 39.789680],\n\t\t\t\t\t\t\t[-105.065123, 39.789269],\n\t\t\t\t\t\t\t[-105.065106, 39.788813],\n\t\t\t\t\t\t\t[-105.065083, 39.788086],\n\t\t\t\t\t\t\t[-105.062944, 39.788087],\n\t\t\t\t\t\t\t[-105.062865, 39.788011],\n\t\t\t\t\t\t\t[-105.062451, 39.787597],\n\t\t\t\t\t\t\t[-105.062546, 39.787425],\n\t\t\t\t\t\t\t[-105.062556, 39.787408],\n\t\t\t\t\t\t\t[-105.062653, 39.787193],\n\t\t\t\t\t\t\t[-105.062653, 39.787000],\n\t\t\t\t\t\t\t[-105.062655, 39.786187],\n\t\t\t\t\t\t\t[-105.062655, 39.785822],\n\t\t\t\t\t\t\t[-105.062656, 39.785666],\n\t\t\t\t\t\t\t[-105.062659, 39.784112],\n\t\t\t\t\t\t\t[-105.062659, 39.784059],\n\t\t\t\t\t\t\t[-105.062659, 39.783900],\n\t\t\t\t\t\t\t[-105.062659, 39.783847],\n\t\t\t\t\t\t\t[-105.062425, 39.783847],\n\t\t\t\t\t\t\t[-105.062176, 39.783846],\n\t\t\t\t\t\t\t[-105.061848, 39.783845],\n\t\t\t\t\t\t\t[-105.061711, 39.783845],\n\t\t\t\t\t\t\t[-105.060765, 39.783842],\n\t\t\t\t\t\t\t[-105.060576, 39.783839],\n\t\t\t\t\t\t\t[-105.060346, 39.783836],\n\t\t\t\t\t\t\t[-105.060009, 39.783832],\n\t\t\t\t\t\t\t[-105.059820, 39.783830],\n\t\t\t\t\t\t\t[-105.059628, 39.783830],\n\t\t\t\t\t\t\t[-105.059054, 39.783830],\n\t\t\t\t\t\t\t[-105.058863, 39.783830],\n\t\t\t\t\t\t\t[-105.057912, 39.783831],\n\t\t\t\t\t\t\t[-105.057894, 39.783830],\n\t\t\t\t\t\t\t[-105.056750, 39.783822],\n\t\t\t\t\t\t\t[-105.056742, 39.783821],\n\t\t\t\t\t\t\t[-105.055588, 39.783818],\n\t\t\t\t\t\t\t[-105.054442, 39.783814],\n\t\t\t\t\t\t\t[-105.053183, 39.783797],\n\t\t\t\t\t\t\t[-105.053183, 39.783744],\n\t\t\t\t\t\t\t[-105.053184, 39.783687],\n\t\t\t\t\t\t\t[-105.053184, 39.783585],\n\t\t\t\t\t\t\t[-105.053184, 39.783533],\n\t\t\t\t\t\t\t[-105.053184, 39.783471],\n\t\t\t\t\t\t\t[-105.053185, 39.783435],\n\t\t\t\t\t\t\t[-105.053187, 39.783288],\n\t\t\t\t\t\t\t[-105.053189, 39.783228],\n\t\t\t\t\t\t\t[-105.053190, 39.783134],\n\t\t\t\t\t\t\t[-105.053196, 39.782852],\n\t\t\t\t\t\t\t[-105.053198, 39.782759],\n\t\t\t\t\t\t\t[-105.053211, 39.782588],\n\t\t\t\t\t\t\t[-105.053243, 39.782190],\n\t\t\t\t\t\t\t[-105.053243, 39.782075],\n\t\t\t\t\t\t\t[-105.053243, 39.781904],\n\t\t\t\t\t\t\t[-105.053243, 39.781861],\n\t\t\t\t\t\t\t[-105.053243, 39.781732],\n\t\t\t\t\t\t\t[-105.053243, 39.781690],\n\t\t\t\t\t\t\t[-105.053235, 39.781393],\n\t\t\t\t\t\t\t[-105.053214, 39.780502],\n\t\t\t\t\t\t\t[-105.053208, 39.780205],\n\t\t\t\t\t\t\t[-105.053214, 39.779840],\n\t\t\t\t\t\t\t[-105.053235, 39.778748],\n\t\t\t\t\t\t\t[-105.053242, 39.778384],\n\t\t\t\t\t\t\t[-105.053242, 39.778023],\n\t\t\t\t\t\t\t[-105.053244, 39.776943],\n\t\t\t\t\t\t\t[-105.053245, 39.776583],\n\t\t\t\t\t\t\t[-105.053244, 39.776219],\n\t\t\t\t\t\t\t[-105.053241, 39.775127],\n\t\t\t\t\t\t\t[-105.053241, 39.774763],\n\t\t\t\t\t\t\t[-105.053241, 39.774398],\n\t\t\t\t\t\t\t[-105.053241, 39.773303],\n\t\t\t\t\t\t\t[-105.053241, 39.772938],\n\t\t\t\t\t\t\t[-105.053245, 39.772577],\n\t\t\t\t\t\t\t[-105.053260, 39.771494],\n\t\t\t\t\t\t\t[-105.053265, 39.771134],\n\t\t\t\t\t\t\t[-105.053261, 39.770876],\n\t\t\t\t\t\t\t[-105.053250, 39.770102],\n\t\t\t\t\t\t\t[-105.053247, 39.769844],\n\t\t\t\t\t\t\t[-105.053245, 39.769741],\n\t\t\t\t\t\t\t[-105.053241, 39.769435],\n\t\t\t\t\t\t\t[-105.053240, 39.769333],\n\t\t\t\t\t\t\t[-105.053240, 39.768968],\n\t\t\t\t\t\t\t[-105.053240, 39.767876],\n\t\t\t\t\t\t\t[-105.053241, 39.767512],\n\t\t\t\t\t\t\t[-105.053241, 39.767409],\n\t\t\t\t\t\t\t[-105.053243, 39.767278],\n\t\t\t\t\t\t\t[-105.053242, 39.766622],\n\t\t\t\t\t\t\t[-105.053230, 39.765699],\n\t\t\t\t\t\t\t[-105.053232, 39.765521],\n\t\t\t\t\t\t\t[-105.053240, 39.764991],\n\t\t\t\t\t\t\t[-105.053243, 39.764814],\n\t\t\t\t\t\t\t[-105.053242, 39.764631],\n\t\t\t\t\t\t\t[-105.053241, 39.764085],\n\t\t\t\t\t\t\t[-105.053241, 39.763903],\n\t\t\t\t\t\t\t[-105.053241, 39.763720],\n\t\t\t\t\t\t\t[-105.053241, 39.763171],\n\t\t\t\t\t\t\t[-105.053241, 39.762989],\n\t\t\t\t\t\t\t[-105.053241, 39.762807],\n\t\t\t\t\t\t\t[-105.053243, 39.762265],\n\t\t\t\t\t\t\t[-105.053244, 39.762084],\n\t\t\t\t\t\t\t[-105.053243, 39.761725],\n\t\t\t\t\t\t\t[-105.053241, 39.760651],\n\t\t\t\t\t\t\t[-105.053241, 39.760293],\n\t\t\t\t\t\t\t[-105.053240, 39.759928],\n\t\t\t\t\t\t\t[-105.053239, 39.758836],\n\t\t\t\t\t\t\t[-105.053239, 39.758472],\n\t\t\t\t\t\t\t[-105.053238, 39.758165],\n\t\t\t\t\t\t\t[-105.053238, 39.757245],\n\t\t\t\t\t\t\t[-105.053238, 39.756939],\n\t\t\t\t\t\t\t[-105.053237, 39.755787],\n\t\t\t\t\t\t\t[-105.053236, 39.755553],\n\t\t\t\t\t\t\t[-105.053236, 39.754848],\n\t\t\t\t\t\t\t[-105.053231, 39.753046],\n\t\t\t\t\t\t\t[-105.053230, 39.752686],\n\t\t\t\t\t\t\t[-105.053227, 39.751608],\n\t\t\t\t\t\t\t[-105.053227, 39.751249],\n\t\t\t\t\t\t\t[-105.053224, 39.750890],\n\t\t\t\t\t\t\t[-105.053215, 39.749816],\n\t\t\t\t\t\t\t[-105.053213, 39.749458],\n\t\t\t\t\t\t\t[-105.053217, 39.748157],\n\t\t\t\t\t\t\t[-105.053219, 39.747687],\n\t\t\t\t\t\t\t[-105.053219, 39.747616],\n\t\t\t\t\t\t\t[-105.053226, 39.745680],\n\t\t\t\t\t\t\t[-105.053214, 39.745187],\n\t\t\t\t\t\t\t[-105.053212, 39.743980],\n\t\t\t\t\t\t\t[-105.053211, 39.743881],\n\t\t\t\t\t\t\t[-105.053211, 39.743584],\n\t\t\t\t\t\t\t[-105.053211, 39.743486],\n\t\t\t\t\t\t\t[-105.053210, 39.743339],\n\t\t\t\t\t\t\t[-105.053209, 39.742781],\n\t\t\t\t\t\t\t[-105.053209, 39.742697],\n\t\t\t\t\t\t\t[-105.053204, 39.742203],\n\t\t\t\t\t\t\t[-105.053199, 39.742204],\n\t\t\t\t\t\t\t[-105.053195, 39.741938],\n\t\t\t\t\t\t\t[-105.053200, 39.741935],\n\t\t\t\t\t\t\t[-105.053201, 39.741935],\n\t\t\t\t\t\t\t[-105.053206, 39.740360],\n\t\t\t\t\t\t\t[-105.053206, 39.739987],\n\t\t\t\t\t\t\t[-105.053206, 39.738870],\n\t\t\t\t\t\t\t[-105.053207, 39.738498],\n\t\t\t\t\t\t\t[-105.053210, 39.738152],\n\t\t\t\t\t\t\t[-105.053223, 39.737115],\n\t\t\t\t\t\t\t[-105.053227, 39.736770],\n\t\t\t\t\t\t\t[-105.053227, 39.736537],\n\t\t\t\t\t\t\t[-105.053227, 39.735841],\n\t\t\t\t\t\t\t[-105.053227, 39.735609],\n\t\t\t\t\t\t\t[-105.053227, 39.735544],\n\t\t\t\t\t\t\t[-105.053227, 39.735349],\n\t\t\t\t\t\t\t[-105.053227, 39.735284],\n\t\t\t\t\t\t\t[-105.053227, 39.735259],\n\t\t\t\t\t\t\t[-105.053230, 39.735185],\n\t\t\t\t\t\t\t[-105.053231, 39.735161],\n\t\t\t\t\t\t\t[-105.053228, 39.734965],\n\t\t\t\t\t\t\t[-105.055567, 39.734977],\n\t\t\t\t\t\t\t[-105.055586, 39.734740],\n\t\t\t\t\t\t\t[-105.055585, 39.734707],\n\t\t\t\t\t\t\t[-105.055574, 39.734508],\n\t\t\t\t\t\t\t[-105.055539, 39.733687],\n\t\t\t\t\t\t\t[-105.055539, 39.733569],\n\t\t\t\t\t\t\t[-105.055539, 39.733215],\n\t\t\t\t\t\t\t[-105.055539, 39.733098],\n\t\t\t\t\t\t\t[-105.055424, 39.733098],\n\t\t\t\t\t\t\t[-105.055082, 39.733099],\n\t\t\t\t\t\t\t[-105.054968, 39.733100],\n\t\t\t\t\t\t\t[-105.054969, 39.733217],\n\t\t\t\t\t\t\t[-105.054975, 39.733569],\n\t\t\t\t\t\t\t[-105.054977, 39.733687],\n\t\t\t\t\t\t\t[-105.054977, 39.733728],\n\t\t\t\t\t\t\t[-105.054979, 39.733854],\n\t\t\t\t\t\t\t[-105.054980, 39.733896],\n\t\t\t\t\t\t\t[-105.054903, 39.733897],\n\t\t\t\t\t\t\t[-105.054671, 39.733900],\n\t\t\t\t\t\t\t[-105.054595, 39.733902],\n\t\t\t\t\t\t\t[-105.054593, 39.733860],\n\t\t\t\t\t\t\t[-105.054587, 39.733734],\n\t\t\t\t\t\t\t[-105.054585, 39.733693],\n\t\t\t\t\t\t\t[-105.054499, 39.733706],\n\t\t\t\t\t\t\t[-105.054418, 39.733720],\n\t\t\t\t\t\t\t[-105.054411, 39.733541],\n\t\t\t\t\t\t\t[-105.054409, 39.733455],\n\t\t\t\t\t\t\t[-105.054406, 39.733384],\n\t\t\t\t\t\t\t[-105.054400, 39.733172],\n\t\t\t\t\t\t\t[-105.054398, 39.733102],\n\t\t\t\t\t\t\t[-105.054340, 39.733102],\n\t\t\t\t\t\t\t[-105.054170, 39.733102],\n\t\t\t\t\t\t\t[-105.054113, 39.733103],\n\t\t\t\t\t\t\t[-105.053935, 39.733104],\n\t\t\t\t\t\t\t[-105.053404, 39.733108],\n\t\t\t\t\t\t\t[-105.053227, 39.733110],\n\t\t\t\t\t\t\t[-105.053228, 39.732746],\n\t\t\t\t\t\t\t[-105.053235, 39.731657],\n\t\t\t\t\t\t\t[-105.053238, 39.731294],\n\t\t\t\t\t\t\t[-105.053239, 39.730942],\n\t\t\t\t\t\t\t[-105.053242, 39.729890],\n\t\t\t\t\t\t\t[-105.053244, 39.729539],\n\t\t\t\t\t\t\t[-105.053246, 39.728968],\n\t\t\t\t\t\t\t[-105.053251, 39.728522],\n\t\t\t\t\t\t\t[-105.053252, 39.727772],\n\t\t\t\t\t\t\t[-105.053254, 39.727349],\n\t\t\t\t\t\t\t[-105.053254, 39.727233],\n\t\t\t\t\t\t\t[-105.053252, 39.726184],\n\t\t\t\t\t\t\t[-105.053252, 39.726112],\n\t\t\t\t\t\t\t[-105.053253, 39.725951],\n\t\t\t\t\t\t\t[-105.053253, 39.725899],\n\t\t\t\t\t\t\t[-105.053253, 39.725828],\n\t\t\t\t\t\t\t[-105.053253, 39.725800],\n\t\t\t\t\t\t\t[-105.053240, 39.725441],\n\t\t\t\t\t\t\t[-105.053259, 39.724083],\n\t\t\t\t\t\t\t[-105.053263, 39.723133],\n\t\t\t\t\t\t\t[-105.053264, 39.722719],\n\t\t\t\t\t\t\t[-105.053268, 39.721477],\n\t\t\t\t\t\t\t[-105.053270, 39.721064],\n\t\t\t\t\t\t\t[-105.053270, 39.720933],\n\t\t\t\t\t\t\t[-105.053270, 39.720544],\n\t\t\t\t\t\t\t[-105.053271, 39.720414],\n\t\t\t\t\t\t\t[-105.053272, 39.720056],\n\t\t\t\t\t\t\t[-105.053275, 39.719071],\n\t\t\t\t\t\t\t[-105.053276, 39.718984],\n\t\t\t\t\t\t\t[-105.053278, 39.718627],\n\t\t\t\t\t\t\t[-105.053279, 39.718233],\n\t\t\t\t\t\t\t[-105.053270, 39.716647],\n\t\t\t\t\t\t\t[-105.053270, 39.716630],\n\t\t\t\t\t\t\t[-105.053271, 39.715004],\n\t\t\t\t\t\t\t[-105.053263, 39.713181],\n\t\t\t\t\t\t\t[-105.053250, 39.711343],\n\t\t\t\t\t\t\t[-105.053264, 39.710300],\n\t\t\t\t\t\t\t[-105.053262, 39.710161],\n\t\t\t\t\t\t\t[-105.053258, 39.709746],\n\t\t\t\t\t\t\t[-105.053257, 39.709608],\n\t\t\t\t\t\t\t[-105.053257, 39.709416],\n\t\t\t\t\t\t\t[-105.053259, 39.708841],\n\t\t\t\t\t\t\t[-105.053260, 39.708650],\n\t\t\t\t\t\t\t[-105.053258, 39.708463],\n\t\t\t\t\t\t\t[-105.053253, 39.707902],\n\t\t\t\t\t\t\t[-105.053252, 39.707716],\n\t\t\t\t\t\t\t[-105.053251, 39.707550],\n\t\t\t\t\t\t\t[-105.053250, 39.707054],\n\t\t\t\t\t\t\t[-105.053250, 39.706889],\n\t\t\t\t\t\t\t[-105.053249, 39.706674],\n\t\t\t\t\t\t\t[-105.053246, 39.706029],\n\t\t\t\t\t\t\t[-105.053246, 39.705921],\n\t\t\t\t\t\t\t[-105.053246, 39.705814],\n\t\t\t\t\t\t\t[-105.053258, 39.705050],\n\t\t\t\t\t\t\t[-105.053252, 39.704542],\n\t\t\t\t\t\t\t[-105.053247, 39.703985],\n\t\t\t\t\t\t\t[-105.053245, 39.703268],\n\t\t\t\t\t\t\t[-105.053245, 39.703126],\n\t\t\t\t\t\t\t[-105.053247, 39.702703],\n\t\t\t\t\t\t\t[-105.053249, 39.702562],\n\t\t\t\t\t\t\t[-105.053245, 39.702269],\n\t\t\t\t\t\t\t[-105.053245, 39.700438],\n\t\t\t\t\t\t\t[-105.053241, 39.699910],\n\t\t\t\t\t\t\t[-105.053236, 39.699078],\n\t\t\t\t\t\t\t[-105.053225, 39.696889],\n\t\t\t\t\t\t\t[-105.053225, 39.696820],\n\t\t\t\t\t\t\t[-105.053225, 39.696809],\n\t\t\t\t\t\t\t[-105.053225, 39.696779],\n\t\t\t\t\t\t\t[-105.053225, 39.696769],\n\t\t\t\t\t\t\t[-105.053223, 39.696412],\n\t\t\t\t\t\t\t[-105.053219, 39.695344],\n\t\t\t\t\t\t\t[-105.053218, 39.694988],\n\t\t\t\t\t\t\t[-105.053213, 39.694625],\n\t\t\t\t\t\t\t[-105.053198, 39.693538],\n\t\t\t\t\t\t\t[-105.053194, 39.693176],\n\t\t\t\t\t\t\t[-105.053196, 39.693103],\n\t\t\t\t\t\t\t[-105.053202, 39.692885],\n\t\t\t\t\t\t\t[-105.053205, 39.692813],\n\t\t\t\t\t\t\t[-105.053207, 39.692745],\n\t\t\t\t\t\t\t[-105.053212, 39.692542],\n\t\t\t\t\t\t\t[-105.053215, 39.692475],\n\t\t\t\t\t\t\t[-105.053210, 39.692252],\n\t\t\t\t\t\t\t[-105.053198, 39.691586],\n\t\t\t\t\t\t\t[-105.053194, 39.691364],\n\t\t\t\t\t\t\t[-105.053208, 39.691002],\n\t\t\t\t\t\t\t[-105.053251, 39.689919],\n\t\t\t\t\t\t\t[-105.053266, 39.689559],\n\t\t\t\t\t\t\t[-105.053265, 39.689194],\n\t\t\t\t\t\t\t[-105.053264, 39.688100],\n\t\t\t\t\t\t\t[-105.053264, 39.687883],\n\t\t\t\t\t\t\t[-105.053254, 39.687736],\n\t\t\t\t\t\t\t[-105.053248, 39.687654],\n\t\t\t\t\t\t\t[-105.053212, 39.687390],\n\t\t\t\t\t\t\t[-105.053208, 39.687353],\n\t\t\t\t\t\t\t[-105.053193, 39.686873],\n\t\t\t\t\t\t\t[-105.053193, 39.686347],\n\t\t\t\t\t\t\t[-105.053194, 39.685999],\n\t\t\t\t\t\t\t[-105.053194, 39.685911],\n\t\t\t\t\t\t\t[-105.053196, 39.685650],\n\t\t\t\t\t\t\t[-105.053197, 39.685563],\n\t\t\t\t\t\t\t[-105.053195, 39.684380],\n\t\t\t\t\t\t\t[-105.053183, 39.683528],\n\t\t\t\t\t\t\t[-105.053183, 39.683498],\n\t\t\t\t\t\t\t[-105.053191, 39.682397],\n\t\t\t\t\t\t\t[-105.053221, 39.682291],\n\t\t\t\t\t\t\t[-105.055588, 39.682260],\n\t\t\t\t\t\t\t[-105.056518, 39.682265],\n\t\t\t\t\t\t\t[-105.057200, 39.682271],\n\t\t\t\t\t\t\t[-105.057265, 39.682272],\n\t\t\t\t\t\t\t[-105.057783, 39.682272],\n\t\t\t\t\t\t\t[-105.057912, 39.682276],\n\t\t\t\t\t\t\t[-105.057913, 39.682277],\n\t\t\t\t\t\t\t[-105.058033, 39.682275],\n\t\t\t\t\t\t\t[-105.058034, 39.682275],\n\t\t\t\t\t\t\t[-105.058044, 39.682270],\n\t\t\t\t\t\t\t[-105.058054, 39.681825],\n\t\t\t\t\t\t\t[-105.058049, 39.681817],\n\t\t\t\t\t\t\t[-105.058060, 39.680649],\n\t\t\t\t\t\t\t[-105.058175, 39.678666],\n\t\t\t\t\t\t\t[-105.058505, 39.678615],\n\t\t\t\t\t\t\t[-105.060732, 39.678279],\n\t\t\t\t\t\t\t[-105.062086, 39.679063],\n\t\t\t\t\t\t\t[-105.062442, 39.679190],\n\t\t\t\t\t\t\t[-105.062580, 39.679293],\n\t\t\t\t\t\t\t[-105.062777, 39.679441],\n\t\t\t\t\t\t\t[-105.063177, 39.679681],\n\t\t\t\t\t\t\t[-105.062991, 39.679363],\n\t\t\t\t\t\t\t[-105.062929, 39.679259],\n\t\t\t\t\t\t\t[-105.062907, 39.679223],\n\t\t\t\t\t\t\t[-105.062835, 39.678446],\n\t\t\t\t\t\t\t[-105.062772, 39.677608],\n\t\t\t\t\t\t\t[-105.062887, 39.676224],\n\t\t\t\t\t\t\t[-105.062891, 39.675853],\n\t\t\t\t\t\t\t[-105.062894, 39.675465],\n\t\t\t\t\t\t\t[-105.062894, 39.675369],\n\t\t\t\t\t\t\t[-105.062897, 39.675082],\n\t\t\t\t\t\t\t[-105.062898, 39.674987],\n\t\t\t\t\t\t\t[-105.062734, 39.674985],\n\t\t\t\t\t\t\t[-105.062638, 39.674985],\n\t\t\t\t\t\t\t[-105.062245, 39.674973],\n\t\t\t\t\t\t\t[-105.062082, 39.674969],\n\t\t\t\t\t\t\t[-105.061573, 39.674952],\n\t\t\t\t\t\t\t[-105.060047, 39.674903],\n\t\t\t\t\t\t\t[-105.059539, 39.674887],\n\t\t\t\t\t\t\t[-105.059393, 39.674887],\n\t\t\t\t\t\t\t[-105.058955, 39.674887],\n\t\t\t\t\t\t\t[-105.058809, 39.674887],\n\t\t\t\t\t\t\t[-105.058500, 39.674887],\n\t\t\t\t\t\t\t[-105.057573, 39.674888],\n\t\t\t\t\t\t\t[-105.057265, 39.674889],\n\t\t\t\t\t\t\t[-105.056462, 39.674909],\n\t\t\t\t\t\t\t[-105.054053, 39.674969],\n\t\t\t\t\t\t\t[-105.053250, 39.674989],\n\t\t\t\t\t\t\t[-105.053246, 39.674851],\n\t\t\t\t\t\t\t[-105.053237, 39.674437],\n\t\t\t\t\t\t\t[-105.053234, 39.674299],\n\t\t\t\t\t\t\t[-105.053239, 39.674095],\n\t\t\t\t\t\t\t[-105.053247, 39.673778],\n\t\t\t\t\t\t\t[-105.053255, 39.673483],\n\t\t\t\t\t\t\t[-105.053261, 39.673280],\n\t\t\t\t\t\t\t[-105.053261, 39.673271],\n\t\t\t\t\t\t\t[-105.053251, 39.673116],\n\t\t\t\t\t\t\t[-105.053262, 39.672255],\n\t\t\t\t\t\t\t[-105.053262, 39.671949],\n\t\t\t\t\t\t\t[-105.053262, 39.671935],\n\t\t\t\t\t\t\t[-105.053262, 39.671896],\n\t\t\t\t\t\t\t[-105.053262, 39.671883],\n\t\t\t\t\t\t\t[-105.053260, 39.671063],\n\t\t\t\t\t\t\t[-105.053257, 39.669076],\n\t\t\t\t\t\t\t[-105.053257, 39.668604],\n\t\t\t\t\t\t\t[-105.053256, 39.667785],\n\t\t\t\t\t\t\t[-105.053388, 39.667785],\n\t\t\t\t\t\t\t[-105.053784, 39.667785],\n\t\t\t\t\t\t\t[-105.053916, 39.667785],\n\t\t\t\t\t\t\t[-105.054106, 39.667785],\n\t\t\t\t\t\t\t[-105.054676, 39.667785],\n\t\t\t\t\t\t\t[-105.054866, 39.667785],\n\t\t\t\t\t\t\t[-105.055072, 39.667784],\n\t\t\t\t\t\t\t[-105.055691, 39.667781],\n\t\t\t\t\t\t\t[-105.055898, 39.667781],\n\t\t\t\t\t\t\t[-105.056104, 39.667781],\n\t\t\t\t\t\t\t[-105.056725, 39.667784],\n\t\t\t\t\t\t\t[-105.056932, 39.667785],\n\t\t\t\t\t\t\t[-105.057140, 39.667784],\n\t\t\t\t\t\t\t[-105.057765, 39.667784],\n\t\t\t\t\t\t\t[-105.057974, 39.667784],\n\t\t\t\t\t\t\t[-105.058185, 39.667782],\n\t\t\t\t\t\t\t[-105.058821, 39.667778],\n\t\t\t\t\t\t\t[-105.059033, 39.667778],\n\t\t\t\t\t\t\t[-105.059248, 39.667778],\n\t\t\t\t\t\t\t[-105.059894, 39.667779],\n\t\t\t\t\t\t\t[-105.060110, 39.667780],\n\t\t\t\t\t\t\t[-105.060252, 39.667780],\n\t\t\t\t\t\t\t[-105.060680, 39.667780],\n\t\t\t\t\t\t\t[-105.060823, 39.667780],\n\t\t\t\t\t\t\t[-105.060844, 39.667780],\n\t\t\t\t\t\t\t[-105.061250, 39.667780],\n\t\t\t\t\t\t\t[-105.062534, 39.667782],\n\t\t\t\t\t\t\t[-105.062962, 39.667783],\n\t\t\t\t\t\t\t[-105.063161, 39.667782],\n\t\t\t\t\t\t\t[-105.063759, 39.667780],\n\t\t\t\t\t\t\t[-105.063959, 39.667780],\n\t\t\t\t\t\t\t[-105.063976, 39.667780],\n\t\t\t\t\t\t\t[-105.064027, 39.667780],\n\t\t\t\t\t\t\t[-105.064044, 39.667780],\n\t\t\t\t\t\t\t[-105.064257, 39.667779],\n\t\t\t\t\t\t\t[-105.064897, 39.667778],\n\t\t\t\t\t\t\t[-105.065111, 39.667778],\n\t\t\t\t\t\t\t[-105.065304, 39.667777],\n\t\t\t\t\t\t\t[-105.065885, 39.667777],\n\t\t\t\t\t\t\t[-105.066079, 39.667777],\n\t\t\t\t\t\t\t[-105.066097, 39.667777],\n\t\t\t\t\t\t\t[-105.066151, 39.667777],\n\t\t\t\t\t\t\t[-105.066170, 39.667777],\n\t\t\t\t\t\t\t[-105.066247, 39.667776],\n\t\t\t\t\t\t\t[-105.066480, 39.667776],\n\t\t\t\t\t\t\t[-105.066558, 39.667776],\n\t\t\t\t\t\t\t[-105.066705, 39.667775],\n\t\t\t\t\t\t\t[-105.067149, 39.667775],\n\t\t\t\t\t\t\t[-105.067297, 39.667775],\n\t\t\t\t\t\t\t[-105.067538, 39.667774],\n\t\t\t\t\t\t\t[-105.068263, 39.667771],\n\t\t\t\t\t\t\t[-105.068505, 39.667771],\n\t\t\t\t\t\t\t[-105.069080, 39.667769],\n\t\t\t\t\t\t\t[-105.070805, 39.667765],\n\t\t\t\t\t\t\t[-105.071381, 39.667764],\n\t\t\t\t\t\t\t[-105.071406, 39.667764],\n\t\t\t\t\t\t\t[-105.071450, 39.667764],\n\t\t\t\t\t\t\t[-105.071483, 39.667764],\n\t\t\t\t\t\t\t[-105.071509, 39.667764],\n\t\t\t\t\t\t\t[-105.071643, 39.667763],\n\t\t\t\t\t\t\t[-105.072044, 39.667763],\n\t\t\t\t\t\t\t[-105.072179, 39.667763],\n\t\t\t\t\t\t\t[-105.072183, 39.668093],\n\t\t\t\t\t\t\t[-105.072186, 39.668280],\n\t\t\t\t\t\t\t[-105.072197, 39.669058],\n\t\t\t\t\t\t\t[-105.072197, 39.669083],\n\t\t\t\t\t\t\t[-105.072202, 39.669414],\n\t\t\t\t\t\t\t[-105.072202, 39.669435],\n\t\t\t\t\t\t\t[-105.072203, 39.669499],\n\t\t\t\t\t\t\t[-105.072204, 39.669521],\n\t\t\t\t\t\t\t[-105.072371, 39.669594],\n\t\t\t\t\t\t\t[-105.072872, 39.669813],\n\t\t\t\t\t\t\t[-105.073040, 39.669887],\n\t\t\t\t\t\t\t[-105.073100, 39.669912],\n\t\t\t\t\t\t\t[-105.073253, 39.669976],\n\t\t\t\t\t\t\t[-105.073280, 39.669987],\n\t\t\t\t\t\t\t[-105.073340, 39.670013],\n\t\t\t\t\t\t\t[-105.074940, 39.670687],\n\t\t\t\t\t\t\t[-105.076140, 39.669987],\n\t\t\t\t\t\t\t[-105.076039, 39.669587],\n\t\t\t\t\t\t\t[-105.076939, 39.669686],\n\t\t\t\t\t\t\t[-105.076939, 39.669523],\n\t\t\t\t\t\t\t[-105.076939, 39.669520],\n\t\t\t\t\t\t\t[-105.076938, 39.669320],\n\t\t\t\t\t\t\t[-105.077500, 39.669330],\n\t\t\t\t\t\t\t[-105.079164, 39.669358],\n\t\t\t\t\t\t\t[-105.079175, 39.669601],\n\t\t\t\t\t\t\t[-105.079183, 39.669738],\n\t\t\t\t\t\t\t[-105.079212, 39.669738],\n\t\t\t\t\t\t\t[-105.079299, 39.669738],\n\t\t\t\t\t\t\t[-105.079329, 39.669739],\n\t\t\t\t\t\t\t[-105.079345, 39.669740],\n\t\t\t\t\t\t\t[-105.079651, 39.669755],\n\t\t\t\t\t\t\t[-105.079739, 39.669765],\n\t\t\t\t\t\t\t[-105.079876, 39.669782],\n\t\t\t\t\t\t\t[-105.080157, 39.669826],\n\t\t\t\t\t\t\t[-105.080528, 39.669902],\n\t\t\t\t\t\t\t[-105.080948, 39.670010],\n\t\t\t\t\t\t\t[-105.081192, 39.670074],\n\t\t\t\t\t\t\t[-105.081350, 39.670099],\n\t\t\t\t\t\t\t[-105.081389, 39.669628],\n\t\t\t\t\t\t\t[-105.081434, 39.669103],\n\t\t\t\t\t\t\t[-105.081457, 39.668577],\n\t\t\t\t\t\t\t[-105.081454, 39.668215],\n\t\t\t\t\t\t\t[-105.081451, 39.667743],\n\t\t\t\t\t\t\t[-105.081455, 39.665551],\n\t\t\t\t\t\t\t[-105.081455, 39.665498],\n\t\t\t\t\t\t\t[-105.081449, 39.665055],\n\t\t\t\t\t\t\t[-105.081454, 39.664987],\n\t\t\t\t\t\t\t[-105.081454, 39.662896],\n\t\t\t\t\t\t\t[-105.081454, 39.662074],\n\t\t\t\t\t\t\t[-105.079822, 39.662164],\n\t\t\t\t\t\t\t[-105.079822, 39.662160],\n\t\t\t\t\t\t\t[-105.079771, 39.662163],\n\t\t\t\t\t\t\t[-105.079733, 39.662061],\n\t\t\t\t\t\t\t[-105.079534, 39.661814],\n\t\t\t\t\t\t\t[-105.079086, 39.661526],\n\t\t\t\t\t\t\t[-105.079071, 39.661521],\n\t\t\t\t\t\t\t[-105.079070, 39.661521],\n\t\t\t\t\t\t\t[-105.077863, 39.661004],\n\t\t\t\t\t\t\t[-105.077338, 39.660389],\n\t\t\t\t\t\t\t[-105.077342, 39.660374],\n\t\t\t\t\t\t\t[-105.077479, 39.659644],\n\t\t\t\t\t\t\t[-105.077642, 39.658779],\n\t\t\t\t\t\t\t[-105.076255, 39.659096],\n\t\t\t\t\t\t\t[-105.075423, 39.659286],\n\t\t\t\t\t\t\t[-105.074427, 39.659515],\n\t\t\t\t\t\t\t[-105.073240, 39.659787],\n\t\t\t\t\t\t\t[-105.071617, 39.659995],\n\t\t\t\t\t\t\t[-105.071582, 39.659853],\n\t\t\t\t\t\t\t[-105.071479, 39.659430],\n\t\t\t\t\t\t\t[-105.071445, 39.659289],\n\t\t\t\t\t\t\t[-105.071314, 39.659265],\n\t\t\t\t\t\t\t[-105.070923, 39.659193],\n\t\t\t\t\t\t\t[-105.070793, 39.659170],\n\t\t\t\t\t\t\t[-105.070768, 39.658220],\n\t\t\t\t\t\t\t[-105.070727, 39.656594],\n\t\t\t\t\t\t\t[-105.069505, 39.656592],\n\t\t\t\t\t\t\t[-105.069183, 39.656591],\n\t\t\t\t\t\t\t[-105.068556, 39.656591],\n\t\t\t\t\t\t\t[-105.067045, 39.656587],\n\t\t\t\t\t\t\t[-105.066956, 39.654029],\n\t\t\t\t\t\t\t[-105.066941, 39.653594],\n\t\t\t\t\t\t\t[-105.066970, 39.653494],\n\t\t\t\t\t\t\t[-105.067026, 39.653327],\n\t\t\t\t\t\t\t[-105.067057, 39.653233],\n\t\t\t\t\t\t\t[-105.067089, 39.653140],\n\t\t\t\t\t\t\t[-105.067137, 39.652996],\n\t\t\t\t\t\t\t[-105.067140, 39.652987],\n\t\t\t\t\t\t\t[-105.067144, 39.652981],\n\t\t\t\t\t\t\t[-105.067283, 39.652785],\n\t\t\t\t\t\t\t[-105.067307, 39.652752],\n\t\t\t\t\t\t\t[-105.067481, 39.652641],\n\t\t\t\t\t\t\t[-105.067681, 39.652589],\n\t\t\t\t\t\t\t[-105.067921, 39.652471],\n\t\t\t\t\t\t\t[-105.067979, 39.652444],\n\t\t\t\t\t\t\t[-105.068137, 39.652364],\n\t\t\t\t\t\t\t[-105.068840, 39.651587],\n\t\t\t\t\t\t\t[-105.070140, 39.650386],\n\t\t\t\t\t\t\t[-105.070352, 39.650413],\n\t\t\t\t\t\t\t[-105.070940, 39.650486],\n\t\t\t\t\t\t\t[-105.070953, 39.650411],\n\t\t\t\t\t\t\t[-105.071040, 39.649887],\n\t\t\t\t\t\t\t[-105.071034, 39.649731],\n\t\t\t\t\t\t\t[-105.071029, 39.649579],\n\t\t\t\t\t\t\t[-105.063924, 39.649566],\n\t\t\t\t\t\t\t[-105.063926, 39.649620],\n\t\t\t\t\t\t\t[-105.063939, 39.649887],\n\t\t\t\t\t\t\t[-105.063938, 39.650486],\n\t\t\t\t\t\t\t[-105.062610, 39.650598],\n\t\t\t\t\t\t\t[-105.062606, 39.651070],\n\t\t\t\t\t\t\t[-105.062606, 39.651077],\n\t\t\t\t\t\t\t[-105.062586, 39.651859],\n\t\t\t\t\t\t\t[-105.062586, 39.651899],\n\t\t\t\t\t\t\t[-105.062133, 39.651791],\n\t\t\t\t\t\t\t[-105.062137, 39.651384],\n\t\t\t\t\t\t\t[-105.061555, 39.651385],\n\t\t\t\t\t\t\t[-105.060692, 39.651385],\n\t\t\t\t\t\t\t[-105.060648, 39.651385],\n\t\t\t\t\t\t\t[-105.060321, 39.651385],\n\t\t\t\t\t\t\t[-105.059977, 39.651386],\n\t\t\t\t\t\t\t[-105.059209, 39.651386],\n\t\t\t\t\t\t\t[-105.058839, 39.651387],\n\t\t\t\t\t\t\t[-105.058939, 39.651687],\n\t\t\t\t\t\t\t[-105.058439, 39.651687],\n\t\t\t\t\t\t\t[-105.058465, 39.652008],\n\t\t\t\t\t\t\t[-105.058527, 39.652781],\n\t\t\t\t\t\t\t[-105.058543, 39.652979],\n\t\t\t\t\t\t\t[-105.058399, 39.652982],\n\t\t\t\t\t\t\t[-105.058311, 39.652979],\n\t\t\t\t\t\t\t[-105.058031, 39.652959],\n\t\t\t\t\t\t\t[-105.057873, 39.652948],\n\t\t\t\t\t\t\t[-105.057820, 39.652948],\n\t\t\t\t\t\t\t[-105.057215, 39.652946],\n\t\t\t\t\t\t\t[-105.057240, 39.652759],\n\t\t\t\t\t\t\t[-105.057319, 39.652201],\n\t\t\t\t\t\t\t[-105.057336, 39.652085],\n\t\t\t\t\t\t\t[-105.057266, 39.652086],\n\t\t\t\t\t\t\t[-105.055136, 39.652115],\n\t\t\t\t\t\t\t[-105.055061, 39.652016],\n\t\t\t\t\t\t\t[-105.055042, 39.652003],\n\t\t\t\t\t\t\t[-105.054882, 39.651895],\n\t\t\t\t\t\t\t[-105.054703, 39.651812],\n\t\t\t\t\t\t\t[-105.054654, 39.651798],\n\t\t\t\t\t\t\t[-105.054513, 39.651760],\n\t\t\t\t\t\t\t[-105.055521, 39.651737],\n\t\t\t\t\t\t\t[-105.057257, 39.651723],\n\t\t\t\t\t\t\t[-105.057345, 39.649984],\n\t\t\t\t\t\t\t[-105.061452, 39.650063],\n\t\t\t\t\t\t\t[-105.061578, 39.650066],\n\t\t\t\t\t\t\t[-105.061679, 39.650068],\n\t\t\t\t\t\t\t[-105.062614, 39.650086],\n\t\t\t\t\t\t\t[-105.063399, 39.650080],\n\t\t\t\t\t\t\t[-105.063422, 39.649619],\n\t\t\t\t\t\t\t[-105.063425, 39.649532],\n\t\t\t\t\t\t\t[-105.063435, 39.649273],\n\t\t\t\t\t\t\t[-105.063439, 39.649187],\n\t\t\t\t\t\t\t[-105.063454, 39.648699],\n\t\t\t\t\t\t\t[-105.063503, 39.647236],\n\t\t\t\t\t\t\t[-105.063520, 39.646749],\n\t\t\t\t\t\t\t[-105.063522, 39.646672],\n\t\t\t\t\t\t\t[-105.063532, 39.646404],\n\t\t\t\t\t\t\t[-105.063539, 39.646188],\n\t\t\t\t\t\t\t[-105.063539, 39.645988],\n\t\t\t\t\t\t\t[-105.068940, 39.646087],\n\t\t\t\t\t\t\t[-105.072042, 39.646090],\n\t\t\t\t\t\t\t[-105.072044, 39.646033],\n\t\t\t\t\t\t\t[-105.072049, 39.645815],\n\t\t\t\t\t\t\t[-105.072053, 39.645789],\n\t\t\t\t\t\t\t[-105.072060, 39.645751],\n\t\t\t\t\t\t\t[-105.072093, 39.645647],\n\t\t\t\t\t\t\t[-105.072133, 39.645574],\n\t\t\t\t\t\t\t[-105.072189, 39.645493],\n\t\t\t\t\t\t\t[-105.072326, 39.645350],\n\t\t\t\t\t\t\t[-105.072434, 39.645271],\n\t\t\t\t\t\t\t[-105.072523, 39.645220],\n\t\t\t\t\t\t\t[-105.072902, 39.645038],\n\t\t\t\t\t\t\t[-105.073285, 39.644872],\n\t\t\t\t\t\t\t[-105.073665, 39.644709],\n\t\t\t\t\t\t\t[-105.073816, 39.644628],\n\t\t\t\t\t\t\t[-105.073998, 39.644513],\n\t\t\t\t\t\t\t[-105.074145, 39.644403],\n\t\t\t\t\t\t\t[-105.074292, 39.644274],\n\t\t\t\t\t\t\t[-105.074454, 39.644104],\n\t\t\t\t\t\t\t[-105.074563, 39.643945],\n\t\t\t\t\t\t\t[-105.074690, 39.643727],\n\t\t\t\t\t\t\t[-105.074860, 39.643460],\n\t\t\t\t\t\t\t[-105.075363, 39.642709],\n\t\t\t\t\t\t\t[-105.075393, 39.642666],\n\t\t\t\t\t\t\t[-105.075679, 39.642203],\n\t\t\t\t\t\t\t[-105.075760, 39.642050],\n\t\t\t\t\t\t\t[-105.075789, 39.641968],\n\t\t\t\t\t\t\t[-105.075819, 39.641842],\n\t\t\t\t\t\t\t[-105.075837, 39.641689],\n\t\t\t\t\t\t\t[-105.075857, 39.641359],\n\t\t\t\t\t\t\t[-105.075872, 39.641277],\n\t\t\t\t\t\t\t[-105.075897, 39.641182],\n\t\t\t\t\t\t\t[-105.075897, 39.641180],\n\t\t\t\t\t\t\t[-105.075946, 39.641058],\n\t\t\t\t\t\t\t[-105.076010, 39.640913],\n\t\t\t\t\t\t\t[-105.076098, 39.640739],\n\t\t\t\t\t\t\t[-105.076546, 39.639906],\n\t\t\t\t\t\t\t[-105.076653, 39.639713],\n\t\t\t\t\t\t\t[-105.076722, 39.639549],\n\t\t\t\t\t\t\t[-105.076773, 39.639353],\n\t\t\t\t\t\t\t[-105.076797, 39.639153],\n\t\t\t\t\t\t\t[-105.076807, 39.638967],\n\t\t\t\t\t\t\t[-105.076803, 39.638735],\n\t\t\t\t\t\t\t[-105.076313, 39.638737],\n\t\t\t\t\t\t\t[-105.074866, 39.638745],\n\t\t\t\t\t\t\t[-105.074846, 39.638744],\n\t\t\t\t\t\t\t[-105.074358, 39.638742],\n\t\t\t\t\t\t\t[-105.073985, 39.638739],\n\t\t\t\t\t\t\t[-105.073951, 39.636831],\n\t\t\t\t\t\t\t[-105.077240, 39.636593],\n\t\t\t\t\t\t\t[-105.078087, 39.636644],\n\t\t\t\t\t\t\t[-105.080629, 39.636800],\n\t\t\t\t\t\t\t[-105.081507, 39.636377],\n\t\t\t\t\t\t\t[-105.081657, 39.636302],\n\t\t\t\t\t\t\t[-105.081716, 39.636867],\n\t\t\t\t\t\t\t[-105.081706, 39.636924],\n\t\t\t\t\t\t\t[-105.081702, 39.636950],\n\t\t\t\t\t\t\t[-105.081702, 39.636953],\n\t\t\t\t\t\t\t[-105.081693, 39.637031],\n\t\t\t\t\t\t\t[-105.081690, 39.637059],\n\t\t\t\t\t\t\t[-105.081688, 39.637076],\n\t\t\t\t\t\t\t[-105.081683, 39.637127],\n\t\t\t\t\t\t\t[-105.081682, 39.637145],\n\t\t\t\t\t\t\t[-105.081646, 39.637475],\n\t\t\t\t\t\t\t[-105.081646, 39.637479],\n\t\t\t\t\t\t\t[-105.081589, 39.638469],\n\t\t\t\t\t\t\t[-105.081578, 39.638667],\n\t\t\t\t\t\t\t[-105.081676, 39.638759],\n\t\t\t\t\t\t\t[-105.082223, 39.638745],\n\t\t\t\t\t\t\t[-105.083866, 39.638705],\n\t\t\t\t\t\t\t[-105.084414, 39.638693],\n\t\t\t\t\t\t\t[-105.084512, 39.638693],\n\t\t\t\t\t\t\t[-105.084809, 39.638694],\n\t\t\t\t\t\t\t[-105.084908, 39.638695],\n\t\t\t\t\t\t\t[-105.085402, 39.638698],\n\t\t\t\t\t\t\t[-105.086220, 39.638703],\n\t\t\t\t\t\t\t[-105.086885, 39.638696],\n\t\t\t\t\t\t\t[-105.087380, 39.638692],\n\t\t\t\t\t\t\t[-105.087423, 39.638692],\n\t\t\t\t\t\t\t[-105.087553, 39.638693],\n\t\t\t\t\t\t\t[-105.087597, 39.638694],\n\t\t\t\t\t\t\t[-105.087804, 39.638695],\n\t\t\t\t\t\t\t[-105.087853, 39.638695],\n\t\t\t\t\t\t\t[-105.087975, 39.638696],\n\t\t\t\t\t\t\t[-105.088094, 39.638696],\n\t\t\t\t\t\t\t[-105.088349, 39.638698],\n\t\t\t\t\t\t\t[-105.088490, 39.638700],\n\t\t\t\t\t\t\t[-105.088969, 39.638703],\n\t\t\t\t\t\t\t[-105.091023, 39.638718],\n\t\t\t\t\t\t\t[-105.091100, 39.638719],\n\t\t\t\t\t\t\t[-105.091258, 39.638722],\n\t\t\t\t\t\t\t[-105.091577, 39.638729],\n\t\t\t\t\t\t\t[-105.091593, 39.638086],\n\t\t\t\t\t\t\t[-105.091598, 39.637574],\n\t\t\t\t\t\t\t[-105.091600, 39.637331],\n\t\t\t\t\t\t\t[-105.091609, 39.636546],\n\t\t\t\t\t\t\t[-105.091617, 39.635458],\n\t\t\t\t\t\t\t[-105.091582, 39.635178],\n\t\t\t\t\t\t\t[-105.093134, 39.635158],\n\t\t\t\t\t\t\t[-105.095462, 39.635121],\n\t\t\t\t\t\t\t[-105.095546, 39.635121],\n\t\t\t\t\t\t\t[-105.097052, 39.635108],\n\t\t\t\t\t\t\t[-105.098527, 39.635075],\n\t\t\t\t\t\t\t[-105.099019, 39.635037],\n\t\t\t\t\t\t\t[-105.099641, 39.634987],\n\t\t\t\t\t\t\t[-105.099708, 39.635011],\n\t\t\t\t\t\t\t[-105.099958, 39.635038],\n\t\t\t\t\t\t\t[-105.100541, 39.635136],\n\t\t\t\t\t\t\t[-105.100611, 39.635148],\n\t\t\t\t\t\t\t[-105.100841, 39.635187],\n\t\t\t\t\t\t\t[-105.101427, 39.635187],\n\t\t\t\t\t\t\t[-105.109814, 39.635188],\n\t\t\t\t\t\t\t[-105.109874, 39.635186],\n\t\t\t\t\t\t\t[-105.109875, 39.635072],\n\t\t\t\t\t\t\t[-105.109875, 39.635070],\n\t\t\t\t\t\t\t[-105.109875, 39.635069],\n\t\t\t\t\t\t\t[-105.109887, 39.634485],\n\t\t\t\t\t\t\t[-105.109901, 39.634272],\n\t\t\t\t\t\t\t[-105.109902, 39.634263],\n\t\t\t\t\t\t\t[-105.109901, 39.634040],\n\t\t\t\t\t\t\t[-105.109893, 39.632676],\n\t\t\t\t\t\t\t[-105.109893, 39.632105],\n\t\t\t\t\t\t\t[-105.109889, 39.631412],\n\t\t\t\t\t\t\t[-105.109883, 39.629897],\n\t\t\t\t\t\t\t[-105.109885, 39.629741],\n\t\t\t\t\t\t\t[-105.109922, 39.627345],\n\t\t\t\t\t\t\t[-105.109925, 39.627100],\n\t\t\t\t\t\t\t[-105.109926, 39.627080],\n\t\t\t\t\t\t\t[-105.109927, 39.626988],\n\t\t\t\t\t\t\t[-105.109343, 39.626989],\n\t\t\t\t\t\t\t[-105.109192, 39.626988],\n\t\t\t\t\t\t\t[-105.108740, 39.626987],\n\t\t\t\t\t\t\t[-105.108590, 39.626987],\n\t\t\t\t\t\t\t[-105.108597, 39.624914],\n\t\t\t\t\t\t\t[-105.108599, 39.624262],\n\t\t\t\t\t\t\t[-105.108600, 39.624208],\n\t\t\t\t\t\t\t[-105.108377, 39.624205],\n\t\t\t\t\t\t\t[-105.108376, 39.624205],\n\t\t\t\t\t\t\t[-105.108374, 39.624205],\n\t\t\t\t\t\t\t[-105.107942, 39.624208],\n\t\t\t\t\t\t\t[-105.107924, 39.624208],\n\t\t\t\t\t\t\t[-105.107894, 39.624208],\n\t\t\t\t\t\t\t[-105.107537, 39.624218],\n\t\t\t\t\t\t\t[-105.107496, 39.624218],\n\t\t\t\t\t\t\t[-105.106931, 39.624218],\n\t\t\t\t\t\t\t[-105.105741, 39.624220],\n\t\t\t\t\t\t\t[-105.105458, 39.624220],\n\t\t\t\t\t\t\t[-105.104612, 39.624221],\n\t\t\t\t\t\t\t[-105.104330, 39.624222],\n\t\t\t\t\t\t\t[-105.104002, 39.624222],\n\t\t\t\t\t\t\t[-105.103020, 39.624223],\n\t\t\t\t\t\t\t[-105.102693, 39.624224],\n\t\t\t\t\t\t\t[-105.102650, 39.624224],\n\t\t\t\t\t\t\t[-105.102524, 39.624224],\n\t\t\t\t\t\t\t[-105.102482, 39.624224],\n\t\t\t\t\t\t\t[-105.102454, 39.624224],\n\t\t\t\t\t\t\t[-105.102373, 39.624224],\n\t\t\t\t\t\t\t[-105.102346, 39.624224],\n\t\t\t\t\t\t\t[-105.102291, 39.624224],\n\t\t\t\t\t\t\t[-105.102129, 39.624224],\n\t\t\t\t\t\t\t[-105.102075, 39.624224],\n\t\t\t\t\t\t\t[-105.101848, 39.624223],\n\t\t\t\t\t\t\t[-105.101170, 39.624223],\n\t\t\t\t\t\t\t[-105.100944, 39.624223],\n\t\t\t\t\t\t\t[-105.100642, 39.624222],\n\t\t\t\t\t\t\t[-105.099738, 39.624222],\n\t\t\t\t\t\t\t[-105.099437, 39.624222],\n\t\t\t\t\t\t\t[-105.099252, 39.624222],\n\t\t\t\t\t\t\t[-105.098700, 39.624222],\n\t\t\t\t\t\t\t[-105.098516, 39.624222],\n\t\t\t\t\t\t\t[-105.098301, 39.624220],\n\t\t\t\t\t\t\t[-105.097656, 39.624216],\n\t\t\t\t\t\t\t[-105.097441, 39.624215],\n\t\t\t\t\t\t\t[-105.097144, 39.624213],\n\t\t\t\t\t\t\t[-105.096253, 39.624207],\n\t\t\t\t\t\t\t[-105.095956, 39.624205],\n\t\t\t\t\t\t\t[-105.095694, 39.624203],\n\t\t\t\t\t\t\t[-105.095563, 39.624202],\n\t\t\t\t\t\t\t[-105.094910, 39.624197],\n\t\t\t\t\t\t\t[-105.094649, 39.624196],\n\t\t\t\t\t\t\t[-105.094598, 39.624195],\n\t\t\t\t\t\t\t[-105.094461, 39.624195],\n\t\t\t\t\t\t\t[-105.093228, 39.624196],\n\t\t\t\t\t\t\t[-105.093213, 39.624197],\n\t\t\t\t\t\t\t[-105.092998, 39.624197],\n\t\t\t\t\t\t\t[-105.091256, 39.624198],\n\t\t\t\t\t\t\t[-105.091253, 39.624341],\n\t\t\t\t\t\t\t[-105.091243, 39.624593],\n\t\t\t\t\t\t\t[-105.091216, 39.624983],\n\t\t\t\t\t\t\t[-105.091214, 39.625898],\n\t\t\t\t\t\t\t[-105.091210, 39.627291],\n\t\t\t\t\t\t\t[-105.090745, 39.627288],\n\t\t\t\t\t\t\t[-105.089988, 39.627286],\n\t\t\t\t\t\t\t[-105.089902, 39.627287],\n\t\t\t\t\t\t\t[-105.089654, 39.627287],\n\t\t\t\t\t\t\t[-105.089354, 39.627286],\n\t\t\t\t\t\t\t[-105.088690, 39.627287],\n\t\t\t\t\t\t\t[-105.088340, 39.627287],\n\t\t\t\t\t\t\t[-105.087894, 39.627308],\n\t\t\t\t\t\t\t[-105.087666, 39.627320],\n\t\t\t\t\t\t\t[-105.087662, 39.627143],\n\t\t\t\t\t\t\t[-105.087647, 39.626463],\n\t\t\t\t\t\t\t[-105.087395, 39.626463],\n\t\t\t\t\t\t\t[-105.086949, 39.626465],\n\t\t\t\t\t\t\t[-105.086823, 39.626465],\n\t\t\t\t\t\t\t[-105.086449, 39.626467],\n\t\t\t\t\t\t\t[-105.086324, 39.626468],\n\t\t\t\t\t\t\t[-105.085608, 39.626465],\n\t\t\t\t\t\t\t[-105.085500, 39.626465],\n\t\t\t\t\t\t\t[-105.085508, 39.627488],\n\t\t\t\t\t\t\t[-105.085496, 39.628501],\n\t\t\t\t\t\t\t[-105.085489, 39.629217],\n\t\t\t\t\t\t\t[-105.084999, 39.629237],\n\t\t\t\t\t\t\t[-105.083939, 39.629282],\n\t\t\t\t\t\t\t[-105.083894, 39.628877],\n\t\t\t\t\t\t\t[-105.083840, 39.628391],\n\t\t\t\t\t\t\t[-105.083881, 39.627799],\n\t\t\t\t\t\t\t[-105.083897, 39.627582],\n\t\t\t\t\t\t\t[-105.082334, 39.627571],\n\t\t\t\t\t\t\t[-105.081741, 39.627568],\n\t\t\t\t\t\t\t[-105.081740, 39.627579],\n\t\t\t\t\t\t\t[-105.081740, 39.627612],\n\t\t\t\t\t\t\t[-105.081740, 39.627624],\n\t\t\t\t\t\t\t[-105.081738, 39.627687],\n\t\t\t\t\t\t\t[-105.081735, 39.627879],\n\t\t\t\t\t\t\t[-105.081735, 39.627943],\n\t\t\t\t\t\t\t[-105.081733, 39.627999],\n\t\t\t\t\t\t\t[-105.081730, 39.628168],\n\t\t\t\t\t\t\t[-105.081730, 39.628225],\n\t\t\t\t\t\t\t[-105.081701, 39.629738],\n\t\t\t\t\t\t\t[-105.081695, 39.630037],\n\t\t\t\t\t\t\t[-105.081693, 39.630115],\n\t\t\t\t\t\t\t[-105.081693, 39.630149],\n\t\t\t\t\t\t\t[-105.081856, 39.630150],\n\t\t\t\t\t\t\t[-105.081936, 39.630150],\n\t\t\t\t\t\t\t[-105.082176, 39.630152],\n\t\t\t\t\t\t\t[-105.082256, 39.630153],\n\t\t\t\t\t\t\t[-105.082510, 39.630153],\n\t\t\t\t\t\t\t[-105.083274, 39.630154],\n\t\t\t\t\t\t\t[-105.083529, 39.630155],\n\t\t\t\t\t\t\t[-105.083535, 39.630848],\n\t\t\t\t\t\t\t[-105.083546, 39.631387],\n\t\t\t\t\t\t\t[-105.083556, 39.631872],\n\t\t\t\t\t\t\t[-105.081779, 39.631873],\n\t\t\t\t\t\t\t[-105.081685, 39.631872],\n\t\t\t\t\t\t\t[-105.081639, 39.631873],\n\t\t\t\t\t\t\t[-105.081514, 39.631863],\n\t\t\t\t\t\t\t[-105.081450, 39.631858],\n\t\t\t\t\t\t\t[-105.080309, 39.630486],\n\t\t\t\t\t\t\t[-105.080240, 39.630402],\n\t\t\t\t\t\t\t[-105.076240, 39.625587],\n\t\t\t\t\t\t\t[-105.075940, 39.625274],\n\t\t\t\t\t\t\t[-105.075132, 39.624510],\n\t\t\t\t\t\t\t[-105.076072, 39.624426],\n\t\t\t\t\t\t\t[-105.076594, 39.624378],\n\t\t\t\t\t\t\t[-105.076578, 39.624365],\n\t\t\t\t\t\t\t[-105.075952, 39.624143],\n\t\t\t\t\t\t\t[-105.066141, 39.620731],\n\t\t\t\t\t\t\t[-105.065746, 39.620588],\n\t\t\t\t\t\t\t[-105.065739, 39.620586],\n\t\t\t\t\t\t\t[-105.064966, 39.620238],\n\t\t\t\t\t\t\t[-105.065039, 39.619842],\n\t\t\t\t\t\t\t[-105.065050, 39.619779],\n\t\t\t\t\t\t\t[-105.065086, 39.619588],\n\t\t\t\t\t\t\t[-105.065115, 39.619430],\n\t\t\t\t\t\t\t[-105.065141, 39.618585],\n\t\t\t\t\t\t\t[-105.065420, 39.618583],\n\t\t\t\t\t\t\t[-105.065467, 39.618588],\n\t\t\t\t\t\t\t[-105.065492, 39.618588],\n\t\t\t\t\t\t\t[-105.065519, 39.618592],\n\t\t\t\t\t\t\t[-105.065572, 39.618592],\n\t\t\t\t\t\t\t[-105.065638, 39.618590],\n\t\t\t\t\t\t\t[-105.066206, 39.618575],\n\t\t\t\t\t\t\t[-105.066937, 39.618585],\n\t\t\t\t\t\t\t[-105.067880, 39.618590],\n\t\t\t\t\t\t\t[-105.068107, 39.618589],\n\t\t\t\t\t\t\t[-105.069229, 39.618571],\n\t\t\t\t\t\t\t[-105.072508, 39.618549],\n\t\t\t\t\t\t\t[-105.072611, 39.618573],\n\t\t\t\t\t\t\t[-105.072626, 39.618576],\n\t\t\t\t\t\t\t[-105.072638, 39.618577],\n\t\t\t\t\t\t\t[-105.072655, 39.618577],\n\t\t\t\t\t\t\t[-105.072673, 39.618576],\n\t\t\t\t\t\t\t[-105.072687, 39.618573],\n\t\t\t\t\t\t\t[-105.072703, 39.618568],\n\t\t\t\t\t\t\t[-105.072746, 39.618552],\n\t\t\t\t\t\t\t[-105.072763, 39.618548],\n\t\t\t\t\t\t\t[-105.072783, 39.618546],\n\t\t\t\t\t\t\t[-105.072799, 39.618546],\n\t\t\t\t\t\t\t[-105.072819, 39.618549],\n\t\t\t\t\t\t\t[-105.072844, 39.618555],\n\t\t\t\t\t\t\t[-105.073332, 39.618559],\n\t\t\t\t\t\t\t[-105.073364, 39.618559],\n\t\t\t\t\t\t\t[-105.074518, 39.618520],\n\t\t\t\t\t\t\t[-105.074796, 39.618511],\n\t\t\t\t\t\t\t[-105.075873, 39.618508],\n\t\t\t\t\t\t\t[-105.077553, 39.618485],\n\t\t\t\t\t\t\t[-105.079398, 39.618473],\n\t\t\t\t\t\t\t[-105.082476, 39.618504],\n\t\t\t\t\t\t\t[-105.082643, 39.618574],\n\t\t\t\t\t\t\t[-105.082773, 39.618573],\n\t\t\t\t\t\t\t[-105.082983, 39.618571],\n\t\t\t\t\t\t\t[-105.083616, 39.618569],\n\t\t\t\t\t\t\t[-105.083827, 39.618569],\n\t\t\t\t\t\t\t[-105.084043, 39.618568],\n\t\t\t\t\t\t\t[-105.084221, 39.618568],\n\t\t\t\t\t\t\t[-105.084573, 39.618526],\n\t\t\t\t\t\t\t[-105.084839, 39.618411],\n\t\t\t\t\t\t\t[-105.085262, 39.618283],\n\t\t\t\t\t\t\t[-105.085928, 39.618668],\n\t\t\t\t\t\t\t[-105.086115, 39.618979],\n\t\t\t\t\t\t\t[-105.086314, 39.618808],\n\t\t\t\t\t\t\t[-105.086553, 39.618580],\n\t\t\t\t\t\t\t[-105.086680, 39.618478],\n\t\t\t\t\t\t\t[-105.086820, 39.618412],\n\t\t\t\t\t\t\t[-105.087031, 39.618339],\n\t\t\t\t\t\t\t[-105.087252, 39.618317],\n\t\t\t\t\t\t\t[-105.087826, 39.618319],\n\t\t\t\t\t\t\t[-105.090115, 39.618312],\n\t\t\t\t\t\t\t[-105.091123, 39.618331],\n\t\t\t\t\t\t\t[-105.091362, 39.618336],\n\t\t\t\t\t\t\t[-105.091657, 39.618333],\n\t\t\t\t\t\t\t[-105.092543, 39.618328],\n\t\t\t\t\t\t\t[-105.092839, 39.618327]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08073\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"073\",\n\t\t\t\t\"NAME\": \"Lincoln\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2577.626000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-103.504666, 38.516409],\n\t\t\t\t\t\t[-104.053921, 38.522393],\n\t\t\t\t\t\t[-104.055528, 38.868868],\n\t\t\t\t\t\t[-103.719664, 38.866827],\n\t\t\t\t\t\t[-103.722007, 39.084085],\n\t\t\t\t\t\t[-103.715254, 39.128246],\n\t\t\t\t\t\t[-103.714355, 39.566331],\n\t\t\t\t\t\t[-103.707072, 39.566295],\n\t\t\t\t\t\t[-103.154955, 39.565949],\n\t\t\t\t\t\t[-103.154376, 39.565654],\n\t\t\t\t\t\t[-103.163025, 39.037610],\n\t\t\t\t\t\t[-103.172943, 38.612450],\n\t\t\t\t\t\t[-103.172878, 38.525315],\n\t\t\t\t\t\t[-103.504666, 38.516409]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08083\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"083\",\n\t\t\t\t\"NAME\": \"Montezuma\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2029.527000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-109.045810, 37.374993],\n\t\t\t\t\t\t[-109.043053, 37.485161],\n\t\t\t\t\t\t[-108.917081, 37.631902],\n\t\t\t\t\t\t[-107.970086, 37.639587],\n\t\t\t\t\t\t[-108.023006, 37.590999],\n\t\t\t\t\t\t[-108.038409, 37.451931],\n\t\t\t\t\t\t[-108.197197, 37.355475],\n\t\t\t\t\t\t[-108.379203, 36.999459],\n\t\t\t\t\t\t[-108.619689, 36.999249],\n\t\t\t\t\t\t[-108.620309, 36.999287],\n\t\t\t\t\t\t[-108.954404, 36.998906],\n\t\t\t\t\t\t[-108.958868, 36.998913],\n\t\t\t\t\t\t[-109.045223, 36.999084],\n\t\t\t\t\t\t[-109.045166, 37.072742],\n\t\t\t\t\t\t[-109.045058, 37.074661],\n\t\t\t\t\t\t[-109.044995, 37.086429],\n\t\t\t\t\t\t[-109.045189, 37.096271],\n\t\t\t\t\t\t[-109.045173, 37.109464],\n\t\t\t\t\t\t[-109.045203, 37.111958],\n\t\t\t\t\t\t[-109.045156, 37.112064],\n\t\t\t\t\t\t[-109.045810, 37.374993]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08095\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"095\",\n\t\t\t\t\"NAME\": \"Phillips\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 687.928000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-102.051398, 40.697542],\n\t\t\t\t\t\t[-102.051725, 40.537839],\n\t\t\t\t\t\t[-102.051519, 40.520094],\n\t\t\t\t\t\t[-102.051465, 40.440008],\n\t\t\t\t\t\t[-102.664804, 40.438473],\n\t\t\t\t\t\t[-102.651310, 40.749402],\n\t\t\t\t\t\t[-102.051292, 40.749586],\n\t\t\t\t\t\t[-102.051398, 40.697542]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08105\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"105\",\n\t\t\t\t\"NAME\": \"Rio Grande\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 911.958000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-106.710775, 37.404228],\n\t\t\t\t\t\t[-106.711624, 37.664273],\n\t\t\t\t\t\t[-106.693845, 37.835244],\n\t\t\t\t\t\t[-106.587139, 37.834426],\n\t\t\t\t\t\t[-106.586374, 37.747809],\n\t\t\t\t\t\t[-106.038413, 37.748353],\n\t\t\t\t\t\t[-106.039331, 37.400852],\n\t\t\t\t\t\t[-106.678373, 37.403596],\n\t\t\t\t\t\t[-106.710775, 37.404228]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08111\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"111\",\n\t\t\t\t\"NAME\": \"San Juan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 387.488000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-107.738283, 37.905432],\n\t\t\t\t\t\t[-107.568875, 37.965015],\n\t\t\t\t\t\t[-107.516547, 37.826451],\n\t\t\t\t\t\t[-107.468843, 37.809726],\n\t\t\t\t\t\t[-107.482179, 37.639501],\n\t\t\t\t\t\t[-107.970086, 37.639587],\n\t\t\t\t\t\t[-107.968875, 37.696485],\n\t\t\t\t\t\t[-107.860845, 37.775517],\n\t\t\t\t\t\t[-107.738283, 37.905432]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08123\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"123\",\n\t\t\t\t\"NAME\": \"Weld\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 3987.238000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-104.882452, 40.998186],\n\t\t\t\t\t\t[-104.497149, 41.001828],\n\t\t\t\t\t\t[-104.497058, 41.001805],\n\t\t\t\t\t\t[-104.214692, 41.001657],\n\t\t\t\t\t\t[-104.214191, 41.001568],\n\t\t\t\t\t\t[-104.211473, 41.001591],\n\t\t\t\t\t\t[-104.123586, 41.001626],\n\t\t\t\t\t\t[-104.104590, 41.001543],\n\t\t\t\t\t\t[-104.086068, 41.001563],\n\t\t\t\t\t\t[-104.066961, 41.001504],\n\t\t\t\t\t\t[-104.053249, 41.001406],\n\t\t\t\t\t\t[-104.039238, 41.001502],\n\t\t\t\t\t\t[-104.023383, 41.001887],\n\t\t\t\t\t\t[-104.018223, 41.001617],\n\t\t\t\t\t\t[-103.972642, 41.001615],\n\t\t\t\t\t\t[-103.971373, 41.001524],\n\t\t\t\t\t\t[-103.953525, 41.001596],\n\t\t\t\t\t\t[-103.896207, 41.001750],\n\t\t\t\t\t\t[-103.877967, 41.001673],\n\t\t\t\t\t\t[-103.858449, 41.001681],\n\t\t\t\t\t\t[-103.574522, 41.001721],\n\t\t\t\t\t\t[-103.581795, 40.523350],\n\t\t\t\t\t\t[-104.147901, 40.524348],\n\t\t\t\t\t\t[-104.147536, 40.350245],\n\t\t\t\t\t\t[-104.150494, 40.350245],\n\t\t\t\t\t\t[-104.150332, 40.000856],\n\t\t\t\t\t\t[-104.922153, 40.000330],\n\t\t\t\t\t\t[-104.923689, 40.000327],\n\t\t\t\t\t\t[-104.961408, 40.000337],\n\t\t\t\t\t\t[-104.961413, 40.000939],\n\t\t\t\t\t\t[-104.961427, 40.001777],\n\t\t\t\t\t\t[-104.961427, 40.002654],\n\t\t\t\t\t\t[-104.961426, 40.005019],\n\t\t\t\t\t\t[-104.961426, 40.006441],\n\t\t\t\t\t\t[-104.961416, 40.007610],\n\t\t\t\t\t\t[-104.961415, 40.009766],\n\t\t\t\t\t\t[-104.961411, 40.010341],\n\t\t\t\t\t\t[-104.961398, 40.012227],\n\t\t\t\t\t\t[-104.961402, 40.012901],\n\t\t\t\t\t\t[-104.961399, 40.013205],\n\t\t\t\t\t\t[-104.961391, 40.013431],\n\t\t\t\t\t\t[-104.961375, 40.013511],\n\t\t\t\t\t\t[-104.961344, 40.013606],\n\t\t\t\t\t\t[-104.961296, 40.013687],\n\t\t\t\t\t\t[-104.961265, 40.013729],\n\t\t\t\t\t\t[-104.961291, 40.014052],\n\t\t\t\t\t\t[-104.961291, 40.014055],\n\t\t\t\t\t\t[-104.961300, 40.014321],\n\t\t\t\t\t\t[-104.961306, 40.014533],\n\t\t\t\t\t\t[-104.961312, 40.014644],\n\t\t\t\t\t\t[-104.961313, 40.014677],\n\t\t\t\t\t\t[-104.961315, 40.014770],\n\t\t\t\t\t\t[-104.961320, 40.014982],\n\t\t\t\t\t\t[-104.961325, 40.015151],\n\t\t\t\t\t\t[-104.961360, 40.015230],\n\t\t\t\t\t\t[-104.961373, 40.015292],\n\t\t\t\t\t\t[-104.961385, 40.021967],\n\t\t\t\t\t\t[-104.961388, 40.023611],\n\t\t\t\t\t\t[-104.961389, 40.023669],\n\t\t\t\t\t\t[-104.961404, 40.024959],\n\t\t\t\t\t\t[-104.961401, 40.026273],\n\t\t\t\t\t\t[-104.961393, 40.026667],\n\t\t\t\t\t\t[-104.961394, 40.028348],\n\t\t\t\t\t\t[-104.961401, 40.029459],\n\t\t\t\t\t\t[-104.961392, 40.030224],\n\t\t\t\t\t\t[-104.961375, 40.033481],\n\t\t\t\t\t\t[-104.961358, 40.034687],\n\t\t\t\t\t\t[-104.961342, 40.035757],\n\t\t\t\t\t\t[-104.961296, 40.037638],\n\t\t\t\t\t\t[-104.961249, 40.039093],\n\t\t\t\t\t\t[-104.961233, 40.039603],\n\t\t\t\t\t\t[-104.961207, 40.040774],\n\t\t\t\t\t\t[-104.961195, 40.041298],\n\t\t\t\t\t\t[-104.961151, 40.043651],\n\t\t\t\t\t\t[-104.961156, 40.043999],\n\t\t\t\t\t\t[-104.961158, 40.044227],\n\t\t\t\t\t\t[-104.964109, 40.044169],\n\t\t\t\t\t\t[-104.966526, 40.044123],\n\t\t\t\t\t\t[-104.967371, 40.044109],\n\t\t\t\t\t\t[-104.968129, 40.044096],\n\t\t\t\t\t\t[-104.969589, 40.044089],\n\t\t\t\t\t\t[-104.970727, 40.044069],\n\t\t\t\t\t\t[-104.971161, 40.044061],\n\t\t\t\t\t\t[-104.972908, 40.044040],\n\t\t\t\t\t\t[-104.973448, 40.044039],\n\t\t\t\t\t\t[-104.973879, 40.044033],\n\t\t\t\t\t\t[-104.976435, 40.043994],\n\t\t\t\t\t\t[-104.976919, 40.043987],\n\t\t\t\t\t\t[-104.979344, 40.043951],\n\t\t\t\t\t\t[-104.979427, 40.043679],\n\t\t\t\t\t\t[-104.979914, 40.042353],\n\t\t\t\t\t\t[-104.979967, 40.042160],\n\t\t\t\t\t\t[-104.980001, 40.041976],\n\t\t\t\t\t\t[-104.980028, 40.041676],\n\t\t\t\t\t\t[-104.980037, 40.041206],\n\t\t\t\t\t\t[-104.980037, 40.041142],\n\t\t\t\t\t\t[-104.980041, 40.040316],\n\t\t\t\t\t\t[-104.980044, 40.039560],\n\t\t\t\t\t\t[-104.980046, 40.039173],\n\t\t\t\t\t\t[-104.980047, 40.038969],\n\t\t\t\t\t\t[-104.980048, 40.038342],\n\t\t\t\t\t\t[-104.980050, 40.037516],\n\t\t\t\t\t\t[-104.980051, 40.036828],\n\t\t\t\t\t\t[-104.980054, 40.035179],\n\t\t\t\t\t\t[-104.980054, 40.035136],\n\t\t\t\t\t\t[-104.980054, 40.035048],\n\t\t\t\t\t\t[-104.980058, 40.032882],\n\t\t\t\t\t\t[-104.980058, 40.032708],\n\t\t\t\t\t\t[-104.980059, 40.032420],\n\t\t\t\t\t\t[-104.980072, 40.031203],\n\t\t\t\t\t\t[-104.980071, 40.030420],\n\t\t\t\t\t\t[-104.980051, 40.029704],\n\t\t\t\t\t\t[-104.980049, 40.029647],\n\t\t\t\t\t\t[-104.980048, 40.029411],\n\t\t\t\t\t\t[-104.980196, 40.029409],\n\t\t\t\t\t\t[-104.980330, 40.029407],\n\t\t\t\t\t\t[-104.980629, 40.029406],\n\t\t\t\t\t\t[-104.980653, 40.029406],\n\t\t\t\t\t\t[-104.980994, 40.029409],\n\t\t\t\t\t\t[-104.981995, 40.029412],\n\t\t\t\t\t\t[-104.985420, 40.029407],\n\t\t\t\t\t\t[-104.986048, 40.029406],\n\t\t\t\t\t\t[-104.986503, 40.029405],\n\t\t\t\t\t\t[-104.986482, 40.028536],\n\t\t\t\t\t\t[-104.986523, 40.028536],\n\t\t\t\t\t\t[-104.986513, 40.026003],\n\t\t\t\t\t\t[-104.989739, 40.025984],\n\t\t\t\t\t\t[-104.991244, 40.025975],\n\t\t\t\t\t\t[-104.991419, 40.025974],\n\t\t\t\t\t\t[-104.991594, 40.025973],\n\t\t\t\t\t\t[-104.994316, 40.025958],\n\t\t\t\t\t\t[-104.994559, 40.025956],\n\t\t\t\t\t\t[-104.994802, 40.025954],\n\t\t\t\t\t\t[-104.994836, 40.025954],\n\t\t\t\t\t\t[-104.999122, 40.025928],\n\t\t\t\t\t\t[-104.999117, 40.025288],\n\t\t\t\t\t\t[-104.999117, 40.023998],\n\t\t\t\t\t\t[-104.999116, 40.023657],\n\t\t\t\t\t\t[-104.999116, 40.023509],\n\t\t\t\t\t\t[-104.997537, 40.023510],\n\t\t\t\t\t\t[-104.997354, 40.023511],\n\t\t\t\t\t\t[-104.996742, 40.023509],\n\t\t\t\t\t\t[-104.996753, 40.022423],\n\t\t\t\t\t\t[-104.996769, 40.020950],\n\t\t\t\t\t\t[-104.997391, 40.020936],\n\t\t\t\t\t\t[-104.997428, 40.020946],\n\t\t\t\t\t\t[-104.997427, 40.020935],\n\t\t\t\t\t\t[-104.998587, 40.020911],\n\t\t\t\t\t\t[-104.998729, 40.021001],\n\t\t\t\t\t\t[-104.999109, 40.021002],\n\t\t\t\t\t\t[-104.999110, 40.020633],\n\t\t\t\t\t\t[-104.999047, 40.020627],\n\t\t\t\t\t\t[-104.997816, 40.020631],\n\t\t\t\t\t\t[-104.997415, 40.020633],\n\t\t\t\t\t\t[-104.997391, 40.020625],\n\t\t\t\t\t\t[-104.997312, 40.020601],\n\t\t\t\t\t\t[-104.997284, 40.020600],\n\t\t\t\t\t\t[-104.997168, 40.020598],\n\t\t\t\t\t\t[-104.996627, 40.020585],\n\t\t\t\t\t\t[-104.996248, 40.020640],\n\t\t\t\t\t\t[-104.995984, 40.020624],\n\t\t\t\t\t\t[-104.995826, 40.020574],\n\t\t\t\t\t\t[-104.995683, 40.020437],\n\t\t\t\t\t\t[-104.995633, 40.020195],\n\t\t\t\t\t\t[-104.995719, 40.020052],\n\t\t\t\t\t\t[-104.995819, 40.019926],\n\t\t\t\t\t\t[-104.995897, 40.019761],\n\t\t\t\t\t\t[-104.995983, 40.019553],\n\t\t\t\t\t\t[-104.996118, 40.019366],\n\t\t\t\t\t\t[-104.996225, 40.019157],\n\t\t\t\t\t\t[-104.996404, 40.018981],\n\t\t\t\t\t\t[-104.996611, 40.018745],\n\t\t\t\t\t\t[-104.996718, 40.018640],\n\t\t\t\t\t\t[-104.996868, 40.018393],\n\t\t\t\t\t\t[-104.996989, 40.018283],\n\t\t\t\t\t\t[-104.997389, 40.017986],\n\t\t\t\t\t\t[-104.997603, 40.017832],\n\t\t\t\t\t\t[-104.997746, 40.017668],\n\t\t\t\t\t\t[-104.997788, 40.017333],\n\t\t\t\t\t\t[-104.997874, 40.017107],\n\t\t\t\t\t\t[-104.997888, 40.016943],\n\t\t\t\t\t\t[-104.998016, 40.016789],\n\t\t\t\t\t\t[-104.998452, 40.016519],\n\t\t\t\t\t\t[-104.998566, 40.016393],\n\t\t\t\t\t\t[-104.998787, 40.016129],\n\t\t\t\t\t\t[-104.998990, 40.016004],\n\t\t\t\t\t\t[-104.999001, 40.015997],\n\t\t\t\t\t\t[-104.999073, 40.015939],\n\t\t\t\t\t\t[-104.999073, 40.015907],\n\t\t\t\t\t\t[-104.999065, 40.014887],\n\t\t\t\t\t\t[-104.997215, 40.014887],\n\t\t\t\t\t\t[-104.992735, 40.014899],\n\t\t\t\t\t\t[-104.989614, 40.014890],\n\t\t\t\t\t\t[-104.989645, 40.007971],\n\t\t\t\t\t\t[-104.989647, 40.007679],\n\t\t\t\t\t\t[-104.989727, 40.007680],\n\t\t\t\t\t\t[-104.989819, 40.007681],\n\t\t\t\t\t\t[-104.992009, 40.007666],\n\t\t\t\t\t\t[-104.994335, 40.007655],\n\t\t\t\t\t\t[-104.995175, 40.007656],\n\t\t\t\t\t\t[-104.995974, 40.007651],\n\t\t\t\t\t\t[-104.996484, 40.007654],\n\t\t\t\t\t\t[-104.996490, 40.007654],\n\t\t\t\t\t\t[-104.996497, 40.007654],\n\t\t\t\t\t\t[-104.996506, 40.007654],\n\t\t\t\t\t\t[-104.996517, 40.007654],\n\t\t\t\t\t\t[-104.996532, 40.007654],\n\t\t\t\t\t\t[-104.996551, 40.007654],\n\t\t\t\t\t\t[-104.996576, 40.007654],\n\t\t\t\t\t\t[-104.996609, 40.007654],\n\t\t\t\t\t\t[-104.996653, 40.007654],\n\t\t\t\t\t\t[-104.996716, 40.007654],\n\t\t\t\t\t\t[-104.996779, 40.007654],\n\t\t\t\t\t\t[-104.996801, 40.007654],\n\t\t\t\t\t\t[-104.996810, 40.007654],\n\t\t\t\t\t\t[-104.996822, 40.007654],\n\t\t\t\t\t\t[-104.996841, 40.007654],\n\t\t\t\t\t\t[-104.996849, 40.007653],\n\t\t\t\t\t\t[-104.996858, 40.007653],\n\t\t\t\t\t\t[-104.996879, 40.007653],\n\t\t\t\t\t\t[-104.996885, 40.007653],\n\t\t\t\t\t\t[-104.996945, 40.007653],\n\t\t\t\t\t\t[-104.998486, 40.007646],\n\t\t\t\t\t\t[-104.998519, 40.007646],\n\t\t\t\t\t\t[-104.998528, 40.007646],\n\t\t\t\t\t\t[-104.999082, 40.007648],\n\t\t\t\t\t\t[-105.007999, 40.007455],\n\t\t\t\t\t\t[-105.007954, 40.005780],\n\t\t\t\t\t\t[-105.007929, 40.002536],\n\t\t\t\t\t\t[-105.007904, 40.000292],\n\t\t\t\t\t\t[-105.008402, 40.000290],\n\t\t\t\t\t\t[-105.008402, 40.002531],\n\t\t\t\t\t\t[-105.008426, 40.005772],\n\t\t\t\t\t\t[-105.008475, 40.007445],\n\t\t\t\t\t\t[-105.008555, 40.007444],\n\t\t\t\t\t\t[-105.008979, 40.007435],\n\t\t\t\t\t\t[-105.008961, 40.005764],\n\t\t\t\t\t\t[-105.008944, 40.004260],\n\t\t\t\t\t\t[-105.008930, 40.002954],\n\t\t\t\t\t\t[-105.008928, 40.002694],\n\t\t\t\t\t\t[-105.008926, 40.002527],\n\t\t\t\t\t\t[-105.008903, 40.000290],\n\t\t\t\t\t\t[-105.009432, 40.000289],\n\t\t\t\t\t\t[-105.010221, 40.000288],\n\t\t\t\t\t\t[-105.010347, 40.000289],\n\t\t\t\t\t\t[-105.011008, 40.000294],\n\t\t\t\t\t\t[-105.011684, 40.000292],\n\t\t\t\t\t\t[-105.011790, 40.000292],\n\t\t\t\t\t\t[-105.014591, 40.000285],\n\t\t\t\t\t\t[-105.015186, 40.000290],\n\t\t\t\t\t\t[-105.016009, 40.000308],\n\t\t\t\t\t\t[-105.017365, 40.000307],\n\t\t\t\t\t\t[-105.017772, 40.000307],\n\t\t\t\t\t\t[-105.022384, 40.000286],\n\t\t\t\t\t\t[-105.027620, 40.000263],\n\t\t\t\t\t\t[-105.037075, 40.000280],\n\t\t\t\t\t\t[-105.038601, 40.000268],\n\t\t\t\t\t\t[-105.041853, 40.000267],\n\t\t\t\t\t\t[-105.043920, 40.000267],\n\t\t\t\t\t\t[-105.044051, 40.000267],\n\t\t\t\t\t\t[-105.045672, 40.000266],\n\t\t\t\t\t\t[-105.046049, 40.000265],\n\t\t\t\t\t\t[-105.046237, 40.000265],\n\t\t\t\t\t\t[-105.047106, 40.000264],\n\t\t\t\t\t\t[-105.052809, 40.000260],\n\t\t\t\t\t\t[-105.052823, 40.000260],\n\t\t\t\t\t\t[-105.055432, 40.000251],\n\t\t\t\t\t\t[-105.055376, 40.144692],\n\t\t\t\t\t\t[-105.055375, 40.144929],\n\t\t\t\t\t\t[-105.055089, 40.261793],\n\t\t\t\t\t\t[-105.056720, 40.349281],\n\t\t\t\t\t\t[-104.945551, 40.349099],\n\t\t\t\t\t\t[-104.943371, 40.998190],\n\t\t\t\t\t\t[-104.882452, 40.998186]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US09015\",\n\t\t\t\t\"STATE\": \"09\",\n\t\t\t\t\"COUNTY\": \"015\",\n\t\t\t\t\"NAME\": \"Windham\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 512.910000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-72.099229, 41.958948],\n\t\t\t\t\t\t[-72.102160, 42.028962],\n\t\t\t\t\t\t[-72.059752, 42.027339],\n\t\t\t\t\t\t[-71.800650, 42.023569],\n\t\t\t\t\t\t[-71.799242, 42.008065],\n\t\t\t\t\t\t[-71.796822, 41.928552],\n\t\t\t\t\t\t[-71.796089, 41.904468],\n\t\t\t\t\t\t[-71.794161, 41.841101],\n\t\t\t\t\t\t[-71.794161, 41.840141],\n\t\t\t\t\t\t[-71.792786, 41.808670],\n\t\t\t\t\t\t[-71.792767, 41.807001],\n\t\t\t\t\t\t[-71.789678, 41.724734],\n\t\t\t\t\t\t[-71.789678, 41.724568],\n\t\t\t\t\t\t[-71.789465, 41.640017],\n\t\t\t\t\t\t[-71.954983, 41.634799],\n\t\t\t\t\t\t[-72.062051, 41.652239],\n\t\t\t\t\t\t[-72.103523, 41.659305],\n\t\t\t\t\t\t[-72.105651, 41.659528],\n\t\t\t\t\t\t[-72.120328, 41.661925],\n\t\t\t\t\t\t[-72.153391, 41.665643],\n\t\t\t\t\t\t[-72.157546, 41.657627],\n\t\t\t\t\t\t[-72.186651, 41.676283],\n\t\t\t\t\t\t[-72.237947, 41.713167],\n\t\t\t\t\t\t[-72.239559, 41.714191],\n\t\t\t\t\t\t[-72.156321, 41.753491],\n\t\t\t\t\t\t[-72.156893, 41.753818],\n\t\t\t\t\t\t[-72.164558, 41.834913],\n\t\t\t\t\t\t[-72.217719, 41.835184],\n\t\t\t\t\t\t[-72.216980, 41.958161],\n\t\t\t\t\t\t[-72.151654, 41.959302],\n\t\t\t\t\t\t[-72.124520, 41.959050],\n\t\t\t\t\t\t[-72.123632, 41.958980],\n\t\t\t\t\t\t[-72.099229, 41.958948]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12001\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"001\",\n\t\t\t\t\"NAME\": \"Alachua\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 875.020000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.556511, 29.511982],\n\t\t\t\t\t\t[-82.656301, 29.564811],\n\t\t\t\t\t\t[-82.658128, 29.828068],\n\t\t\t\t\t\t[-82.658554, 29.830144],\n\t\t\t\t\t\t[-82.529705, 29.940881],\n\t\t\t\t\t\t[-82.418728, 29.923093],\n\t\t\t\t\t\t[-82.272563, 29.843011],\n\t\t\t\t\t\t[-82.133126, 29.835949],\n\t\t\t\t\t\t[-82.055625, 29.718232],\n\t\t\t\t\t\t[-82.050829, 29.716098],\n\t\t\t\t\t\t[-82.050291, 29.709735],\n\t\t\t\t\t\t[-82.055027, 29.669608],\n\t\t\t\t\t\t[-82.055899, 29.471232],\n\t\t\t\t\t\t[-82.105688, 29.435966],\n\t\t\t\t\t\t[-82.213245, 29.431764],\n\t\t\t\t\t\t[-82.225010, 29.484298],\n\t\t\t\t\t\t[-82.406620, 29.485048],\n\t\t\t\t\t\t[-82.556766, 29.480055],\n\t\t\t\t\t\t[-82.556511, 29.511982]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12013\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"013\",\n\t\t\t\t\"NAME\": \"Calhoun\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 567.334000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.389679, 30.200973],\n\t\t\t\t\t\t[-85.383948, 30.566856],\n\t\t\t\t\t\t[-85.171891, 30.564336],\n\t\t\t\t\t\t[-85.167713, 30.608026],\n\t\t\t\t\t\t[-84.932519, 30.606393],\n\t\t\t\t\t\t[-84.990017, 30.524795],\n\t\t\t\t\t\t[-84.983203, 30.441837],\n\t\t\t\t\t\t[-85.059092, 30.263229],\n\t\t\t\t\t\t[-85.115660, 30.199976],\n\t\t\t\t\t\t[-85.386263, 30.201385],\n\t\t\t\t\t\t[-85.389679, 30.200973]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12023\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"023\",\n\t\t\t\t\"NAME\": \"Columbia\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 797.574000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.584002, 30.591796],\n\t\t\t\t\t\t[-82.569237, 30.590965],\n\t\t\t\t\t\t[-82.565476, 30.590622],\n\t\t\t\t\t\t[-82.553159, 30.589934],\n\t\t\t\t\t\t[-82.545055, 30.589361],\n\t\t\t\t\t\t[-82.536233, 30.588885],\n\t\t\t\t\t\t[-82.524899, 30.588189],\n\t\t\t\t\t\t[-82.459792, 30.584287],\n\t\t\t\t\t\t[-82.458364, 30.136449],\n\t\t\t\t\t\t[-82.576010, 29.991468],\n\t\t\t\t\t\t[-82.529705, 29.940881],\n\t\t\t\t\t\t[-82.658554, 29.830144],\n\t\t\t\t\t\t[-82.800477, 29.932126],\n\t\t\t\t\t\t[-82.794594, 30.337024],\n\t\t\t\t\t\t[-82.681473, 30.342805],\n\t\t\t\t\t\t[-82.645768, 30.407992],\n\t\t\t\t\t\t[-82.726583, 30.559486],\n\t\t\t\t\t\t[-82.689539, 30.597734],\n\t\t\t\t\t\t[-82.689271, 30.597719],\n\t\t\t\t\t\t[-82.584002, 30.591796]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12039\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"039\",\n\t\t\t\t\"NAME\": \"Gadsden\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 516.332000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.864693, 30.711542],\n\t\t\t\t\t\t[-84.863465, 30.711487],\n\t\t\t\t\t\t[-84.606386, 30.699865],\n\t\t\t\t\t\t[-84.606249, 30.699872],\n\t\t\t\t\t\t[-84.539370, 30.696775],\n\t\t\t\t\t\t[-84.535042, 30.696523],\n\t\t\t\t\t\t[-84.380719, 30.689673],\n\t\t\t\t\t\t[-84.282562, 30.685316],\n\t\t\t\t\t\t[-84.378384, 30.573467],\n\t\t\t\t\t\t[-84.420474, 30.463905],\n\t\t\t\t\t\t[-84.646408, 30.388281],\n\t\t\t\t\t\t[-84.781111, 30.459794],\n\t\t\t\t\t\t[-84.781813, 30.518693],\n\t\t\t\t\t\t[-84.882616, 30.533094],\n\t\t\t\t\t\t[-84.932519, 30.606393],\n\t\t\t\t\t\t[-84.864693, 30.711542]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12055\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"055\",\n\t\t\t\t\"NAME\": \"Highlands\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1016.615000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.943186, 27.210599],\n\t\t\t\t\t\t[-81.169138, 27.209585],\n\t\t\t\t\t\t[-81.168281, 27.121734],\n\t\t\t\t\t\t[-81.267677, 27.121097],\n\t\t\t\t\t\t[-81.267152, 27.032461],\n\t\t\t\t\t\t[-81.562202, 27.033836],\n\t\t\t\t\t\t[-81.563696, 27.340680],\n\t\t\t\t\t\t[-81.563318, 27.646647],\n\t\t\t\t\t\t[-81.142164, 27.643238],\n\t\t\t\t\t\t[-81.213717, 27.528654],\n\t\t\t\t\t\t[-80.970916, 27.217698],\n\t\t\t\t\t\t[-80.951656, 27.224825],\n\t\t\t\t\t\t[-80.943186, 27.210599]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12059\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"059\",\n\t\t\t\t\"NAME\": \"Holmes\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 478.777000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.599934, 30.830552],\n\t\t\t\t\t\t[-85.619011, 30.743868],\n\t\t\t\t\t\t[-85.736051, 30.746370],\n\t\t\t\t\t\t[-85.821616, 30.790775],\n\t\t\t\t\t\t[-85.844421, 30.703130],\n\t\t\t\t\t\t[-86.037591, 30.704572],\n\t\t\t\t\t\t[-86.035039, 30.993320],\n\t\t\t\t\t\t[-85.498272, 30.996928],\n\t\t\t\t\t\t[-85.497992, 30.996931],\n\t\t\t\t\t\t[-85.599934, 30.830552]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12073\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"073\",\n\t\t\t\t\"NAME\": \"Leon\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 666.852000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.039707, 30.673819],\n\t\t\t\t\t\t[-84.007454, 30.672100],\n\t\t\t\t\t\t[-83.977165, 30.521987],\n\t\t\t\t\t\t[-84.041192, 30.483967],\n\t\t\t\t\t\t[-84.041197, 30.483827],\n\t\t\t\t\t\t[-84.041488, 30.463308],\n\t\t\t\t\t\t[-84.074691, 30.434302],\n\t\t\t\t\t\t[-84.074892, 30.413106],\n\t\t\t\t\t\t[-84.075191, 30.381902],\n\t\t\t\t\t\t[-84.075819, 30.369819],\n\t\t\t\t\t\t[-84.075539, 30.273617],\n\t\t\t\t\t\t[-84.241222, 30.274244],\n\t\t\t\t\t\t[-84.247673, 30.303493],\n\t\t\t\t\t\t[-84.713351, 30.300170],\n\t\t\t\t\t\t[-84.646408, 30.388281],\n\t\t\t\t\t\t[-84.420474, 30.463905],\n\t\t\t\t\t\t[-84.378384, 30.573467],\n\t\t\t\t\t\t[-84.282562, 30.685316],\n\t\t\t\t\t\t[-84.281210, 30.685256],\n\t\t\t\t\t\t[-84.083753, 30.675954],\n\t\t\t\t\t\t[-84.057228, 30.674705],\n\t\t\t\t\t\t[-84.046605, 30.674200],\n\t\t\t\t\t\t[-84.041810, 30.673878],\n\t\t\t\t\t\t[-84.039707, 30.673819]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US02261\",\n\t\t\t\t\"STATE\": \"02\",\n\t\t\t\t\"COUNTY\": \"261\",\n\t\t\t\t\"NAME\": \"Valdez-Cordova\",\n\t\t\t\t\"LSAD\": \"CA\",\n\t\t\t\t\"CENSUSAREA\": 34239.880000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-147.562801, 60.579821],\n\t\t\t\t\t\t\t[-147.555392, 60.574059],\n\t\t\t\t\t\t\t[-147.551709, 60.559612],\n\t\t\t\t\t\t\t[-147.565775, 60.534713],\n\t\t\t\t\t\t\t[-147.607756, 60.506920],\n\t\t\t\t\t\t\t[-147.623835, 60.465878],\n\t\t\t\t\t\t\t[-147.619972, 60.436821],\n\t\t\t\t\t\t\t[-147.674351, 60.414430],\n\t\t\t\t\t\t\t[-147.690773, 60.405054],\n\t\t\t\t\t\t\t[-147.681888, 60.388167],\n\t\t\t\t\t\t\t[-147.630081, 60.389550],\n\t\t\t\t\t\t\t[-147.622020, 60.383794],\n\t\t\t\t\t\t\t[-147.618906, 60.368848],\n\t\t\t\t\t\t\t[-147.639474, 60.340579],\n\t\t\t\t\t\t\t[-147.671135, 60.308929],\n\t\t\t\t\t\t\t[-147.703599, 60.285589],\n\t\t\t\t\t\t\t[-147.698608, 60.245552],\n\t\t\t\t\t\t\t[-147.704731, 60.227874],\n\t\t\t\t\t\t\t[-147.720124, 60.202002],\n\t\t\t\t\t\t\t[-147.760681, 60.156396],\n\t\t\t\t\t\t\t[-147.766484, 60.154180],\n\t\t\t\t\t\t\t[-147.783583, 60.161073],\n\t\t\t\t\t\t\t[-147.820159, 60.179555],\n\t\t\t\t\t\t\t[-147.845681, 60.195434],\n\t\t\t\t\t\t\t[-147.832285, 60.197855],\n\t\t\t\t\t\t\t[-147.827991, 60.200630],\n\t\t\t\t\t\t\t[-147.828962, 60.207442],\n\t\t\t\t\t\t\t[-147.855453, 60.216419],\n\t\t\t\t\t\t\t[-147.908985, 60.224359],\n\t\t\t\t\t\t\t[-147.945158, 60.222324],\n\t\t\t\t\t\t\t[-147.956228, 60.228667],\n\t\t\t\t\t\t\t[-147.950532, 60.243791],\n\t\t\t\t\t\t\t[-147.933269, 60.273632],\n\t\t\t\t\t\t\t[-147.837456, 60.414452],\n\t\t\t\t\t\t\t[-147.792822, 60.476193],\n\t\t\t\t\t\t\t[-147.782548, 60.483300],\n\t\t\t\t\t\t\t[-147.778269, 60.484007],\n\t\t\t\t\t\t\t[-147.765825, 60.476505],\n\t\t\t\t\t\t\t[-147.779329, 60.457078],\n\t\t\t\t\t\t\t[-147.750864, 60.440981],\n\t\t\t\t\t\t\t[-147.738151, 60.441277],\n\t\t\t\t\t\t\t[-147.715312, 60.447915],\n\t\t\t\t\t\t\t[-147.709160, 60.451883],\n\t\t\t\t\t\t\t[-147.717097, 60.467282],\n\t\t\t\t\t\t\t[-147.726642, 60.472216],\n\t\t\t\t\t\t\t[-147.726460, 60.502533],\n\t\t\t\t\t\t\t[-147.721824, 60.508635],\n\t\t\t\t\t\t\t[-147.613843, 60.565906],\n\t\t\t\t\t\t\t[-147.566372, 60.580849],\n\t\t\t\t\t\t\t[-147.562801, 60.579821]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-147.444468, 60.699654],\n\t\t\t\t\t\t\t[-147.384779, 60.710017],\n\t\t\t\t\t\t\t[-147.308537, 60.666793],\n\t\t\t\t\t\t\t[-147.302915, 60.660673],\n\t\t\t\t\t\t\t[-147.337429, 60.632685],\n\t\t\t\t\t\t\t[-147.344494, 60.628544],\n\t\t\t\t\t\t\t[-147.457407, 60.619090],\n\t\t\t\t\t\t\t[-147.486045, 60.619348],\n\t\t\t\t\t\t\t[-147.501603, 60.654772],\n\t\t\t\t\t\t\t[-147.486484, 60.686582],\n\t\t\t\t\t\t\t[-147.479814, 60.693593],\n\t\t\t\t\t\t\t[-147.449559, 60.700046],\n\t\t\t\t\t\t\t[-147.444468, 60.699654]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-147.952039, 60.741879],\n\t\t\t\t\t\t\t[-147.906021, 60.735515],\n\t\t\t\t\t\t\t[-147.848176, 60.698116],\n\t\t\t\t\t\t\t[-147.846103, 60.694509],\n\t\t\t\t\t\t\t[-147.860057, 60.677233],\n\t\t\t\t\t\t\t[-147.868067, 60.670825],\n\t\t\t\t\t\t\t[-147.932931, 60.655714],\n\t\t\t\t\t\t\t[-147.970684, 60.673799],\n\t\t\t\t\t\t\t[-148.020259, 60.724950],\n\t\t\t\t\t\t\t[-147.965419, 60.751996],\n\t\t\t\t\t\t\t[-147.957239, 60.747706],\n\t\t\t\t\t\t\t[-147.952039, 60.741879]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-147.131319, 60.912932],\n\t\t\t\t\t\t\t[-147.115336, 60.911938],\n\t\t\t\t\t\t\t[-147.077772, 60.899503],\n\t\t\t\t\t\t\t[-147.071788, 60.893833],\n\t\t\t\t\t\t\t[-147.089645, 60.874693],\n\t\t\t\t\t\t\t[-147.126799, 60.858011],\n\t\t\t\t\t\t\t[-147.141802, 60.853991],\n\t\t\t\t\t\t\t[-147.192354, 60.861635],\n\t\t\t\t\t\t\t[-147.217749, 60.869741],\n\t\t\t\t\t\t\t[-147.253128, 60.872969],\n\t\t\t\t\t\t\t[-147.309086, 60.873924],\n\t\t\t\t\t\t\t[-147.325640, 60.877153],\n\t\t\t\t\t\t\t[-147.321084, 60.880198],\n\t\t\t\t\t\t\t[-147.226303, 60.910421],\n\t\t\t\t\t\t\t[-147.210324, 60.908776],\n\t\t\t\t\t\t\t[-147.193399, 60.902949],\n\t\t\t\t\t\t\t[-147.178969, 60.903704],\n\t\t\t\t\t\t\t[-147.131319, 60.912932]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-147.217704, 60.293504],\n\t\t\t\t\t\t\t[-147.194940, 60.304563],\n\t\t\t\t\t\t\t[-147.183277, 60.320680],\n\t\t\t\t\t\t\t[-147.185243, 60.323083],\n\t\t\t\t\t\t\t[-147.195608, 60.326224],\n\t\t\t\t\t\t\t[-147.211625, 60.324936],\n\t\t\t\t\t\t\t[-147.215312, 60.327109],\n\t\t\t\t\t\t\t[-147.218799, 60.334726],\n\t\t\t\t\t\t\t[-147.214679, 60.343793],\n\t\t\t\t\t\t\t[-147.211582, 60.346260],\n\t\t\t\t\t\t\t[-147.147514, 60.372470],\n\t\t\t\t\t\t\t[-147.112667, 60.380982],\n\t\t\t\t\t\t\t[-147.098703, 60.378697],\n\t\t\t\t\t\t\t[-147.091897, 60.374969],\n\t\t\t\t\t\t\t[-147.089363, 60.369126],\n\t\t\t\t\t\t\t[-147.092717, 60.363396],\n\t\t\t\t\t\t\t[-147.104010, 60.356727],\n\t\t\t\t\t\t\t[-147.095483, 60.341964],\n\t\t\t\t\t\t\t[-147.073932, 60.338982],\n\t\t\t\t\t\t\t[-147.013164, 60.343863],\n\t\t\t\t\t\t\t[-147.006138, 60.343119],\n\t\t\t\t\t\t\t[-147.003839, 60.340310],\n\t\t\t\t\t\t\t[-147.004091, 60.334348],\n\t\t\t\t\t\t\t[-147.015307, 60.322548],\n\t\t\t\t\t\t\t[-147.089866, 60.292106],\n\t\t\t\t\t\t\t[-147.103118, 60.280190],\n\t\t\t\t\t\t\t[-147.104107, 60.277155],\n\t\t\t\t\t\t\t[-147.080463, 60.265355],\n\t\t\t\t\t\t\t[-147.064768, 60.270188],\n\t\t\t\t\t\t\t[-146.962633, 60.311911],\n\t\t\t\t\t\t\t[-146.944024, 60.316020],\n\t\t\t\t\t\t\t[-146.916164, 60.314898],\n\t\t\t\t\t\t\t[-146.911772, 60.309807],\n\t\t\t\t\t\t\t[-146.911377, 60.297593],\n\t\t\t\t\t\t\t[-146.948089, 60.269974],\n\t\t\t\t\t\t\t[-147.002067, 60.232453],\n\t\t\t\t\t\t\t[-147.139641, 60.179058],\n\t\t\t\t\t\t\t[-147.202416, 60.151128],\n\t\t\t\t\t\t\t[-147.253868, 60.113852],\n\t\t\t\t\t\t\t[-147.365424, 60.042867],\n\t\t\t\t\t\t\t[-147.388508, 60.011116],\n\t\t\t\t\t\t\t[-147.388686, 60.004301],\n\t\t\t\t\t\t\t[-147.438369, 59.974680],\n\t\t\t\t\t\t\t[-147.493235, 59.955388],\n\t\t\t\t\t\t\t[-147.499783, 59.951069],\n\t\t\t\t\t\t\t[-147.505311, 59.937494],\n\t\t\t\t\t\t\t[-147.499625, 59.926296],\n\t\t\t\t\t\t\t[-147.494317, 59.922756],\n\t\t\t\t\t\t\t[-147.483056, 59.920873],\n\t\t\t\t\t\t\t[-147.476312, 59.921563],\n\t\t\t\t\t\t\t[-147.448681, 59.915892],\n\t\t\t\t\t\t\t[-147.443678, 59.913543],\n\t\t\t\t\t\t\t[-147.452360, 59.880518],\n\t\t\t\t\t\t\t[-147.466920, 59.870100],\n\t\t\t\t\t\t\t[-147.533041, 59.852401],\n\t\t\t\t\t\t\t[-147.541643, 59.853282],\n\t\t\t\t\t\t\t[-147.540437, 59.857264],\n\t\t\t\t\t\t\t[-147.542664, 59.861336],\n\t\t\t\t\t\t\t[-147.571278, 59.868709],\n\t\t\t\t\t\t\t[-147.596339, 59.868872],\n\t\t\t\t\t\t\t[-147.621980, 59.866484],\n\t\t\t\t\t\t\t[-147.651738, 59.851223],\n\t\t\t\t\t\t\t[-147.657015, 59.844035],\n\t\t\t\t\t\t\t[-147.657048, 59.839497],\n\t\t\t\t\t\t\t[-147.660388, 59.832248],\n\t\t\t\t\t\t\t[-147.677139, 59.821368],\n\t\t\t\t\t\t\t[-147.693869, 59.819070],\n\t\t\t\t\t\t\t[-147.727499, 59.819780],\n\t\t\t\t\t\t\t[-147.738538, 59.822949],\n\t\t\t\t\t\t\t[-147.745417, 59.821844],\n\t\t\t\t\t\t\t[-147.810788, 59.802233],\n\t\t\t\t\t\t\t[-147.831008, 59.790043],\n\t\t\t\t\t\t\t[-147.874097, 59.783260],\n\t\t\t\t\t\t\t[-147.912883, 59.792240],\n\t\t\t\t\t\t\t[-147.924906, 59.799712],\n\t\t\t\t\t\t\t[-147.928064, 59.803496],\n\t\t\t\t\t\t\t[-147.908247, 59.852832],\n\t\t\t\t\t\t\t[-147.895411, 59.869145],\n\t\t\t\t\t\t\t[-147.877936, 59.879678],\n\t\t\t\t\t\t\t[-147.856693, 59.886661],\n\t\t\t\t\t\t\t[-147.808272, 59.888148],\n\t\t\t\t\t\t\t[-147.797213, 59.909477],\n\t\t\t\t\t\t\t[-147.809035, 59.923480],\n\t\t\t\t\t\t\t[-147.804252, 59.936497],\n\t\t\t\t\t\t\t[-147.739635, 59.968008],\n\t\t\t\t\t\t\t[-147.728869, 59.969509],\n\t\t\t\t\t\t\t[-147.707445, 59.964151],\n\t\t\t\t\t\t\t[-147.690642, 59.963236],\n\t\t\t\t\t\t\t[-147.686280, 59.964476],\n\t\t\t\t\t\t\t[-147.659569, 59.980064],\n\t\t\t\t\t\t\t[-147.662645, 59.986676],\n\t\t\t\t\t\t\t[-147.647042, 60.005649],\n\t\t\t\t\t\t\t[-147.555529, 60.051131],\n\t\t\t\t\t\t\t[-147.479543, 60.076653],\n\t\t\t\t\t\t\t[-147.451490, 60.087920],\n\t\t\t\t\t\t\t[-147.433254, 60.096159],\n\t\t\t\t\t\t\t[-147.406000, 60.112631],\n\t\t\t\t\t\t\t[-147.388701, 60.126473],\n\t\t\t\t\t\t\t[-147.319715, 60.190581],\n\t\t\t\t\t\t\t[-147.315691, 60.202891],\n\t\t\t\t\t\t\t[-147.322841, 60.214784],\n\t\t\t\t\t\t\t[-147.312081, 60.222871],\n\t\t\t\t\t\t\t[-147.281373, 60.226812],\n\t\t\t\t\t\t\t[-147.249786, 60.228589],\n\t\t\t\t\t\t\t[-147.244310, 60.231298],\n\t\t\t\t\t\t\t[-147.219108, 60.253513],\n\t\t\t\t\t\t\t[-147.206150, 60.269508],\n\t\t\t\t\t\t\t[-147.217704, 60.293504]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-141.001850, 60.391688],\n\t\t\t\t\t\t\t[-141.213615, 60.392456],\n\t\t\t\t\t\t\t[-141.213691, 60.435809],\n\t\t\t\t\t\t\t[-141.763696, 60.435027],\n\t\t\t\t\t\t\t[-141.765581, 60.527746],\n\t\t\t\t\t\t\t[-141.963079, 60.521376],\n\t\t\t\t\t\t\t[-142.817324, 60.515849],\n\t\t\t\t\t\t\t[-143.167061, 60.518816],\n\t\t\t\t\t\t\t[-143.889952, 60.042300],\n\t\t\t\t\t\t\t[-143.885474, 59.996787],\n\t\t\t\t\t\t\t[-143.891429, 59.995798],\n\t\t\t\t\t\t\t[-143.931211, 59.998343],\n\t\t\t\t\t\t\t[-143.978568, 60.006347],\n\t\t\t\t\t\t\t[-143.989235, 60.008830],\n\t\t\t\t\t\t\t[-143.988639, 60.013993],\n\t\t\t\t\t\t\t[-143.991356, 60.017725],\n\t\t\t\t\t\t\t[-144.001244, 60.020906],\n\t\t\t\t\t\t\t[-144.013823, 60.024398],\n\t\t\t\t\t\t\t[-144.043536, 60.025174],\n\t\t\t\t\t\t\t[-144.055365, 60.037003],\n\t\t\t\t\t\t\t[-144.052424, 60.047001],\n\t\t\t\t\t\t\t[-144.033324, 60.059533],\n\t\t\t\t\t\t\t[-144.140503, 60.114400],\n\t\t\t\t\t\t\t[-144.204654, 60.137301],\n\t\t\t\t\t\t\t[-144.229803, 60.142788],\n\t\t\t\t\t\t\t[-144.253878, 60.165894],\n\t\t\t\t\t\t\t[-144.253979, 60.182934],\n\t\t\t\t\t\t\t[-144.318856, 60.189295],\n\t\t\t\t\t\t\t[-144.358774, 60.188132],\n\t\t\t\t\t\t\t[-144.369311, 60.185659],\n\t\t\t\t\t\t\t[-144.379225, 60.169090],\n\t\t\t\t\t\t\t[-144.441936, 60.163069],\n\t\t\t\t\t\t\t[-144.453957, 60.166004],\n\t\t\t\t\t\t\t[-144.478160, 60.181595],\n\t\t\t\t\t\t\t[-144.501059, 60.189815],\n\t\t\t\t\t\t\t[-144.534892, 60.189420],\n\t\t\t\t\t\t\t[-144.545101, 60.186999],\n\t\t\t\t\t\t\t[-144.553786, 60.181914],\n\t\t\t\t\t\t\t[-144.555093, 60.178485],\n\t\t\t\t\t\t\t[-144.558163, 60.177797],\n\t\t\t\t\t\t\t[-144.596256, 60.181666],\n\t\t\t\t\t\t\t[-144.654899, 60.204882],\n\t\t\t\t\t\t\t[-144.666556, 60.222572],\n\t\t\t\t\t\t\t[-144.662685, 60.229296],\n\t\t\t\t\t\t\t[-144.662364, 60.239480],\n\t\t\t\t\t\t\t[-144.666134, 60.243885],\n\t\t\t\t\t\t\t[-144.715474, 60.271215],\n\t\t\t\t\t\t\t[-144.753450, 60.283515],\n\t\t\t\t\t\t\t[-144.782521, 60.291972],\n\t\t\t\t\t\t\t[-144.892815, 60.292821],\n\t\t\t\t\t\t\t[-144.914016, 60.280934],\n\t\t\t\t\t\t\t[-144.942134, 60.289728],\n\t\t\t\t\t\t\t[-144.912707, 60.363178],\n\t\t\t\t\t\t\t[-144.871428, 60.407269],\n\t\t\t\t\t\t\t[-144.855457, 60.416886],\n\t\t\t\t\t\t\t[-144.834059, 60.443751],\n\t\t\t\t\t\t\t[-144.848662, 60.455192],\n\t\t\t\t\t\t\t[-144.874451, 60.457304],\n\t\t\t\t\t\t\t[-144.887342, 60.456048],\n\t\t\t\t\t\t\t[-144.903296, 60.442581],\n\t\t\t\t\t\t\t[-144.964135, 60.444466],\n\t\t\t\t\t\t\t[-144.983585, 60.446902],\n\t\t\t\t\t\t\t[-145.012409, 60.447920],\n\t\t\t\t\t\t\t[-145.125550, 60.429389],\n\t\t\t\t\t\t\t[-145.152365, 60.421558],\n\t\t\t\t\t\t\t[-145.181041, 60.407531],\n\t\t\t\t\t\t\t[-145.191183, 60.395239],\n\t\t\t\t\t\t\t[-145.202891, 60.374915],\n\t\t\t\t\t\t\t[-145.169934, 60.329987],\n\t\t\t\t\t\t\t[-145.112199, 60.296200],\n\t\t\t\t\t\t\t[-145.122441, 60.289876],\n\t\t\t\t\t\t\t[-145.222896, 60.297911],\n\t\t\t\t\t\t\t[-145.364296, 60.335961],\n\t\t\t\t\t\t\t[-145.503315, 60.387954],\n\t\t\t\t\t\t\t[-145.510457, 60.408988],\n\t\t\t\t\t\t\t[-145.503930, 60.410607],\n\t\t\t\t\t\t\t[-145.501549, 60.416799],\n\t\t\t\t\t\t\t[-145.502351, 60.420811],\n\t\t\t\t\t\t\t[-145.536942, 60.430533],\n\t\t\t\t\t\t\t[-145.561523, 60.443124],\n\t\t\t\t\t\t\t[-145.594158, 60.451830],\n\t\t\t\t\t\t\t[-145.668841, 60.465431],\n\t\t\t\t\t\t\t[-145.735938, 60.474660],\n\t\t\t\t\t\t\t[-145.799318, 60.462031],\n\t\t\t\t\t\t\t[-145.853469, 60.445630],\n\t\t\t\t\t\t\t[-145.882293, 60.444633],\n\t\t\t\t\t\t\t[-145.946900, 60.455395],\n\t\t\t\t\t\t\t[-145.957404, 60.461101],\n\t\t\t\t\t\t\t[-145.961060, 60.465017],\n\t\t\t\t\t\t\t[-145.960508, 60.467510],\n\t\t\t\t\t\t\t[-145.914403, 60.492350],\n\t\t\t\t\t\t\t[-145.863092, 60.501821],\n\t\t\t\t\t\t\t[-145.802387, 60.520173],\n\t\t\t\t\t\t\t[-145.712891, 60.583249],\n\t\t\t\t\t\t\t[-145.736494, 60.595210],\n\t\t\t\t\t\t\t[-145.764045, 60.591588],\n\t\t\t\t\t\t\t[-145.780628, 60.579182],\n\t\t\t\t\t\t\t[-145.798819, 60.561918],\n\t\t\t\t\t\t\t[-145.820659, 60.550051],\n\t\t\t\t\t\t\t[-145.828622, 60.549746],\n\t\t\t\t\t\t\t[-145.964543, 60.513557],\n\t\t\t\t\t\t\t[-146.039209, 60.492968],\n\t\t\t\t\t\t\t[-146.074409, 60.480085],\n\t\t\t\t\t\t\t[-146.109713, 60.470345],\n\t\t\t\t\t\t\t[-146.216786, 60.450228],\n\t\t\t\t\t\t\t[-146.247144, 60.451188],\n\t\t\t\t\t\t\t[-146.312552, 60.457438],\n\t\t\t\t\t\t\t[-146.317354, 60.460608],\n\t\t\t\t\t\t\t[-146.351292, 60.454293],\n\t\t\t\t\t\t\t[-146.355334, 60.449349],\n\t\t\t\t\t\t\t[-146.356252, 60.425527],\n\t\t\t\t\t\t\t[-146.350104, 60.407780],\n\t\t\t\t\t\t\t[-146.330118, 60.407098],\n\t\t\t\t\t\t\t[-146.308784, 60.414246],\n\t\t\t\t\t\t\t[-146.284201, 60.417656],\n\t\t\t\t\t\t\t[-146.133957, 60.431523],\n\t\t\t\t\t\t\t[-146.127029, 60.430815],\n\t\t\t\t\t\t\t[-146.123595, 60.428031],\n\t\t\t\t\t\t\t[-146.126199, 60.424290],\n\t\t\t\t\t\t\t[-146.094249, 60.410296],\n\t\t\t\t\t\t\t[-146.133058, 60.383774],\n\t\t\t\t\t\t\t[-146.198680, 60.359928],\n\t\t\t\t\t\t\t[-146.268052, 60.347958],\n\t\t\t\t\t\t\t[-146.302167, 60.349234],\n\t\t\t\t\t\t\t[-146.392859, 60.327476],\n\t\t\t\t\t\t\t[-146.458322, 60.307250],\n\t\t\t\t\t\t\t[-146.490407, 60.294939],\n\t\t\t\t\t\t\t[-146.539897, 60.270968],\n\t\t\t\t\t\t\t[-146.607295, 60.241182],\n\t\t\t\t\t\t\t[-146.627980, 60.239633],\n\t\t\t\t\t\t\t[-146.641030, 60.240897],\n\t\t\t\t\t\t\t[-146.650455, 60.242982],\n\t\t\t\t\t\t\t[-146.689126, 60.271279],\n\t\t\t\t\t\t\t[-146.693637, 60.279608],\n\t\t\t\t\t\t\t[-146.693149, 60.284593],\n\t\t\t\t\t\t\t[-146.681470, 60.292247],\n\t\t\t\t\t\t\t[-146.649855, 60.305063],\n\t\t\t\t\t\t\t[-146.594979, 60.321203],\n\t\t\t\t\t\t\t[-146.571617, 60.321755],\n\t\t\t\t\t\t\t[-146.540306, 60.338811],\n\t\t\t\t\t\t\t[-146.524194, 60.350667],\n\t\t\t\t\t\t\t[-146.542704, 60.357974],\n\t\t\t\t\t\t\t[-146.575438, 60.357272],\n\t\t\t\t\t\t\t[-146.607038, 60.351673],\n\t\t\t\t\t\t\t[-146.624217, 60.341407],\n\t\t\t\t\t\t\t[-146.655894, 60.340462],\n\t\t\t\t\t\t\t[-146.717151, 60.349598],\n\t\t\t\t\t\t\t[-146.725114, 60.359939],\n\t\t\t\t\t\t\t[-146.723671, 60.387606],\n\t\t\t\t\t\t\t[-146.721082, 60.396416],\n\t\t\t\t\t\t\t[-146.637386, 60.467178],\n\t\t\t\t\t\t\t[-146.610443, 60.485613],\n\t\t\t\t\t\t\t[-146.590633, 60.491039],\n\t\t\t\t\t\t\t[-146.528853, 60.492135],\n\t\t\t\t\t\t\t[-146.523866, 60.487332],\n\t\t\t\t\t\t\t[-146.505445, 60.476961],\n\t\t\t\t\t\t\t[-146.455047, 60.465318],\n\t\t\t\t\t\t\t[-146.368003, 60.480671],\n\t\t\t\t\t\t\t[-146.316364, 60.497499],\n\t\t\t\t\t\t\t[-146.289686, 60.515692],\n\t\t\t\t\t\t\t[-146.155893, 60.526296],\n\t\t\t\t\t\t\t[-146.079963, 60.543056],\n\t\t\t\t\t\t\t[-145.951340, 60.576779],\n\t\t\t\t\t\t\t[-145.886523, 60.585713],\n\t\t\t\t\t\t\t[-145.872572, 60.584836],\n\t\t\t\t\t\t\t[-145.844229, 60.586509],\n\t\t\t\t\t\t\t[-145.800411, 60.593996],\n\t\t\t\t\t\t\t[-145.794744, 60.601121],\n\t\t\t\t\t\t\t[-145.795287, 60.603151],\n\t\t\t\t\t\t\t[-145.815708, 60.612217],\n\t\t\t\t\t\t\t[-145.832320, 60.614851],\n\t\t\t\t\t\t\t[-145.856046, 60.610936],\n\t\t\t\t\t\t\t[-145.888350, 60.610304],\n\t\t\t\t\t\t\t[-145.896266, 60.611789],\n\t\t\t\t\t\t\t[-145.897785, 60.613653],\n\t\t\t\t\t\t\t[-145.896160, 60.628684],\n\t\t\t\t\t\t\t[-145.895243, 60.629213],\n\t\t\t\t\t\t\t[-145.897145, 60.651214],\n\t\t\t\t\t\t\t[-145.883904, 60.658185],\n\t\t\t\t\t\t\t[-145.867770, 60.666784],\n\t\t\t\t\t\t\t[-145.841345, 60.685893],\n\t\t\t\t\t\t\t[-145.841418, 60.689787],\n\t\t\t\t\t\t\t[-145.844540, 60.690169],\n\t\t\t\t\t\t\t[-145.851783, 60.689858],\n\t\t\t\t\t\t\t[-145.858160, 60.688484],\n\t\t\t\t\t\t\t[-145.875820, 60.683453],\n\t\t\t\t\t\t\t[-145.894257, 60.674164],\n\t\t\t\t\t\t\t[-145.899208, 60.671118],\n\t\t\t\t\t\t\t[-145.922006, 60.651954],\n\t\t\t\t\t\t\t[-145.924923, 60.648898],\n\t\t\t\t\t\t\t[-145.936921, 60.632053],\n\t\t\t\t\t\t\t[-145.937067, 60.630490],\n\t\t\t\t\t\t\t[-145.965559, 60.622748],\n\t\t\t\t\t\t\t[-146.002533, 60.615082],\n\t\t\t\t\t\t\t[-146.004621, 60.616231],\n\t\t\t\t\t\t\t[-146.005755, 60.616854],\n\t\t\t\t\t\t\t[-146.007675, 60.619742],\n\t\t\t\t\t\t\t[-146.007747, 60.625326],\n\t\t\t\t\t\t\t[-145.999198, 60.640832],\n\t\t\t\t\t\t\t[-145.968734, 60.668235],\n\t\t\t\t\t\t\t[-145.937031, 60.682822],\n\t\t\t\t\t\t\t[-145.931436, 60.685478],\n\t\t\t\t\t\t\t[-145.911538, 60.696647],\n\t\t\t\t\t\t\t[-145.899162, 60.705642],\n\t\t\t\t\t\t\t[-145.901279, 60.715373],\n\t\t\t\t\t\t\t[-145.905477, 60.715045],\n\t\t\t\t\t\t\t[-145.978105, 60.684712],\n\t\t\t\t\t\t\t[-146.016402, 60.667222],\n\t\t\t\t\t\t\t[-146.025020, 60.665311],\n\t\t\t\t\t\t\t[-146.055670, 60.658685],\n\t\t\t\t\t\t\t[-146.086293, 60.652030],\n\t\t\t\t\t\t\t[-146.116912, 60.643327],\n\t\t\t\t\t\t\t[-146.130941, 60.639181],\n\t\t\t\t\t\t\t[-146.143249, 60.633869],\n\t\t\t\t\t\t\t[-146.147236, 60.631407],\n\t\t\t\t\t\t\t[-146.187676, 60.624521],\n\t\t\t\t\t\t\t[-146.253074, 60.622315],\n\t\t\t\t\t\t\t[-146.258380, 60.626288],\n\t\t\t\t\t\t\t[-146.263142, 60.631932],\n\t\t\t\t\t\t\t[-146.268684, 60.641240],\n\t\t\t\t\t\t\t[-146.270257, 60.644928],\n\t\t\t\t\t\t\t[-146.270250, 60.648035],\n\t\t\t\t\t\t\t[-146.262982, 60.651569],\n\t\t\t\t\t\t\t[-146.188159, 60.687333],\n\t\t\t\t\t\t\t[-146.178676, 60.691483],\n\t\t\t\t\t\t\t[-146.140640, 60.707652],\n\t\t\t\t\t\t\t[-146.124073, 60.712417],\n\t\t\t\t\t\t\t[-146.101061, 60.719277],\n\t\t\t\t\t\t\t[-146.043736, 60.743636],\n\t\t\t\t\t\t\t[-146.045326, 60.754040],\n\t\t\t\t\t\t\t[-146.048704, 60.763770],\n\t\t\t\t\t\t\t[-146.064557, 60.776944],\n\t\t\t\t\t\t\t[-146.067221, 60.773918],\n\t\t\t\t\t\t\t[-146.070967, 60.770956],\n\t\t\t\t\t\t\t[-146.085107, 60.761063],\n\t\t\t\t\t\t\t[-146.089780, 60.758156],\n\t\t\t\t\t\t\t[-146.120390, 60.741981],\n\t\t\t\t\t\t\t[-146.160220, 60.726383],\n\t\t\t\t\t\t\t[-146.168059, 60.725350],\n\t\t\t\t\t\t\t[-146.191156, 60.731990],\n\t\t\t\t\t\t\t[-146.199026, 60.734359],\n\t\t\t\t\t\t\t[-146.201912, 60.735912],\n\t\t\t\t\t\t\t[-146.200100, 60.743081],\n\t\t\t\t\t\t\t[-146.208740, 60.744390],\n\t\t\t\t\t\t\t[-146.216811, 60.741700],\n\t\t\t\t\t\t\t[-146.228250, 60.735643],\n\t\t\t\t\t\t\t[-146.230706, 60.722008],\n\t\t\t\t\t\t\t[-146.239512, 60.716889],\n\t\t\t\t\t\t\t[-146.257663, 60.713068],\n\t\t\t\t\t\t\t[-146.303398, 60.713214],\n\t\t\t\t\t\t\t[-146.313858, 60.717926],\n\t\t\t\t\t\t\t[-146.317300, 60.721124],\n\t\t\t\t\t\t\t[-146.317949, 60.723817],\n\t\t\t\t\t\t\t[-146.312283, 60.734401],\n\t\t\t\t\t\t\t[-146.346573, 60.735747],\n\t\t\t\t\t\t\t[-146.386892, 60.714598],\n\t\t\t\t\t\t\t[-146.402873, 60.693084],\n\t\t\t\t\t\t\t[-146.412520, 60.690450],\n\t\t\t\t\t\t\t[-146.474142, 60.681539],\n\t\t\t\t\t\t\t[-146.499849, 60.680134],\n\t\t\t\t\t\t\t[-146.517848, 60.688102],\n\t\t\t\t\t\t\t[-146.532396, 60.689748],\n\t\t\t\t\t\t\t[-146.578813, 60.690212],\n\t\t\t\t\t\t\t[-146.607153, 60.686377],\n\t\t\t\t\t\t\t[-146.623266, 60.680420],\n\t\t\t\t\t\t\t[-146.649059, 60.683438],\n\t\t\t\t\t\t\t[-146.667754, 60.692761],\n\t\t\t\t\t\t\t[-146.699219, 60.732176],\n\t\t\t\t\t\t\t[-146.703597, 60.741903],\n\t\t\t\t\t\t\t[-146.605008, 60.758608],\n\t\t\t\t\t\t\t[-146.566731, 60.751198],\n\t\t\t\t\t\t\t[-146.500678, 60.772113],\n\t\t\t\t\t\t\t[-146.464824, 60.770722],\n\t\t\t\t\t\t\t[-146.358618, 60.786193],\n\t\t\t\t\t\t\t[-146.304445, 60.798038],\n\t\t\t\t\t\t\t[-146.255415, 60.809962],\n\t\t\t\t\t\t\t[-146.183158, 60.846969],\n\t\t\t\t\t\t\t[-146.171897, 60.862823],\n\t\t\t\t\t\t\t[-146.173131, 60.866071],\n\t\t\t\t\t\t\t[-146.188185, 60.869374],\n\t\t\t\t\t\t\t[-146.262572, 60.867787],\n\t\t\t\t\t\t\t[-146.268659, 60.863842],\n\t\t\t\t\t\t\t[-146.290202, 60.842694],\n\t\t\t\t\t\t\t[-146.313757, 60.827833],\n\t\t\t\t\t\t\t[-146.333424, 60.821921],\n\t\t\t\t\t\t\t[-146.394369, 60.812271],\n\t\t\t\t\t\t\t[-146.550577, 60.809402],\n\t\t\t\t\t\t\t[-146.555964, 60.810066],\n\t\t\t\t\t\t\t[-146.620419, 60.869019],\n\t\t\t\t\t\t\t[-146.664368, 60.870854],\n\t\t\t\t\t\t\t[-146.700741, 60.848345],\n\t\t\t\t\t\t\t[-146.718132, 60.835667],\n\t\t\t\t\t\t\t[-146.719532, 60.830166],\n\t\t\t\t\t\t\t[-146.714748, 60.820385],\n\t\t\t\t\t\t\t[-146.719790, 60.814475],\n\t\t\t\t\t\t\t[-146.724844, 60.812120],\n\t\t\t\t\t\t\t[-146.754847, 60.807882],\n\t\t\t\t\t\t\t[-146.800612, 60.805160],\n\t\t\t\t\t\t\t[-146.819018, 60.816346],\n\t\t\t\t\t\t\t[-146.819008, 60.841568],\n\t\t\t\t\t\t\t[-146.816305, 60.855628],\n\t\t\t\t\t\t\t[-146.787431, 60.865597],\n\t\t\t\t\t\t\t[-146.774155, 60.876225],\n\t\t\t\t\t\t\t[-146.757004, 60.878454],\n\t\t\t\t\t\t\t[-146.727226, 60.866270],\n\t\t\t\t\t\t\t[-146.697690, 60.872534],\n\t\t\t\t\t\t\t[-146.711287, 60.896465],\n\t\t\t\t\t\t\t[-146.736025, 60.910301],\n\t\t\t\t\t\t\t[-146.746758, 60.935454],\n\t\t\t\t\t\t\t[-146.745543, 60.957582],\n\t\t\t\t\t\t\t[-146.701356, 60.987009],\n\t\t\t\t\t\t\t[-146.653430, 61.047752],\n\t\t\t\t\t\t\t[-146.661518, 61.060776],\n\t\t\t\t\t\t\t[-146.690552, 61.064076],\n\t\t\t\t\t\t\t[-146.783730, 61.042936],\n\t\t\t\t\t\t\t[-146.848112, 61.000587],\n\t\t\t\t\t\t\t[-146.862709, 60.982523],\n\t\t\t\t\t\t\t[-146.861961, 60.976177],\n\t\t\t\t\t\t\t[-146.868826, 60.971448],\n\t\t\t\t\t\t\t[-146.879853, 60.965161],\n\t\t\t\t\t\t\t[-146.929789, 60.944263],\n\t\t\t\t\t\t\t[-146.973072, 60.934835],\n\t\t\t\t\t\t\t[-147.038952, 60.942079],\n\t\t\t\t\t\t\t[-147.055754, 60.945468],\n\t\t\t\t\t\t\t[-147.070552, 60.963312],\n\t\t\t\t\t\t\t[-147.063230, 60.974057],\n\t\t\t\t\t\t\t[-147.047088, 60.991209],\n\t\t\t\t\t\t\t[-147.062671, 61.004336],\n\t\t\t\t\t\t\t[-147.094863, 61.010189],\n\t\t\t\t\t\t\t[-147.112607, 61.002974],\n\t\t\t\t\t\t\t[-147.136884, 60.980968],\n\t\t\t\t\t\t\t[-147.144639, 60.963492],\n\t\t\t\t\t\t\t[-147.135571, 60.946248],\n\t\t\t\t\t\t\t[-147.143314, 60.939831],\n\t\t\t\t\t\t\t[-147.171624, 60.932877],\n\t\t\t\t\t\t\t[-147.181257, 60.933099],\n\t\t\t\t\t\t\t[-147.204930, 60.942660],\n\t\t\t\t\t\t\t[-147.215273, 60.948077],\n\t\t\t\t\t\t\t[-147.220809, 60.953121],\n\t\t\t\t\t\t\t[-147.226487, 60.962160],\n\t\t\t\t\t\t\t[-147.219575, 60.969505],\n\t\t\t\t\t\t\t[-147.220325, 60.981702],\n\t\t\t\t\t\t\t[-147.221616, 60.983541],\n\t\t\t\t\t\t\t[-147.252984, 60.979621],\n\t\t\t\t\t\t\t[-147.273646, 60.974595],\n\t\t\t\t\t\t\t[-147.278004, 60.961063],\n\t\t\t\t\t\t\t[-147.280437, 60.916963],\n\t\t\t\t\t\t\t[-147.378086, 60.877845],\n\t\t\t\t\t\t\t[-147.451569, 60.894219],\n\t\t\t\t\t\t\t[-147.452904, 60.897366],\n\t\t\t\t\t\t\t[-147.451699, 60.925880],\n\t\t\t\t\t\t\t[-147.453406, 60.941468],\n\t\t\t\t\t\t\t[-147.473090, 60.957552],\n\t\t\t\t\t\t\t[-147.491546, 60.957998],\n\t\t\t\t\t\t\t[-147.507268, 60.927235],\n\t\t\t\t\t\t\t[-147.506010, 60.921170],\n\t\t\t\t\t\t\t[-147.502365, 60.920429],\n\t\t\t\t\t\t\t[-147.493812, 60.912379],\n\t\t\t\t\t\t\t[-147.517424, 60.894819],\n\t\t\t\t\t\t\t[-147.525056, 60.896057],\n\t\t\t\t\t\t\t[-147.543002, 60.903331],\n\t\t\t\t\t\t\t[-147.549756, 60.908009],\n\t\t\t\t\t\t\t[-147.536798, 61.019346],\n\t\t\t\t\t\t\t[-147.534034, 61.031090],\n\t\t\t\t\t\t\t[-147.515782, 61.061408],\n\t\t\t\t\t\t\t[-147.502323, 61.072056],\n\t\t\t\t\t\t\t[-147.513776, 61.096127],\n\t\t\t\t\t\t\t[-147.525097, 61.101176],\n\t\t\t\t\t\t\t[-147.558201, 61.099797],\n\t\t\t\t\t\t\t[-147.554439, 61.091719],\n\t\t\t\t\t\t\t[-147.557226, 61.081402],\n\t\t\t\t\t\t\t[-147.591260, 61.016591],\n\t\t\t\t\t\t\t[-147.618800, 60.970040],\n\t\t\t\t\t\t\t[-147.613846, 60.951496],\n\t\t\t\t\t\t\t[-147.597749, 60.913905],\n\t\t\t\t\t\t\t[-147.587309, 60.874463],\n\t\t\t\t\t\t\t[-147.602405, 60.849978],\n\t\t\t\t\t\t\t[-147.626585, 60.845065],\n\t\t\t\t\t\t\t[-147.668593, 60.841563],\n\t\t\t\t\t\t\t[-147.671928, 60.845283],\n\t\t\t\t\t\t\t[-147.677292, 60.869960],\n\t\t\t\t\t\t\t[-147.662960, 60.874951],\n\t\t\t\t\t\t\t[-147.665855, 60.883774],\n\t\t\t\t\t\t\t[-147.730391, 60.911256],\n\t\t\t\t\t\t\t[-147.760843, 60.913227],\n\t\t\t\t\t\t\t[-147.787115, 60.873511],\n\t\t\t\t\t\t\t[-147.779717, 60.863435],\n\t\t\t\t\t\t\t[-147.766961, 60.853544],\n\t\t\t\t\t\t\t[-147.750212, 60.852141],\n\t\t\t\t\t\t\t[-147.732124, 60.824711],\n\t\t\t\t\t\t\t[-147.729421, 60.818252],\n\t\t\t\t\t\t\t[-147.733252, 60.816975],\n\t\t\t\t\t\t\t[-147.743256, 60.813887],\n\t\t\t\t\t\t\t[-147.777157, 60.811018],\n\t\t\t\t\t\t\t[-147.828765, 60.815947],\n\t\t\t\t\t\t\t[-147.855920, 60.820882],\n\t\t\t\t\t\t\t[-147.913399, 60.825152],\n\t\t\t\t\t\t\t[-147.915116, 60.818955],\n\t\t\t\t\t\t\t[-147.920445, 60.812442],\n\t\t\t\t\t\t\t[-148.033953, 60.783198],\n\t\t\t\t\t\t\t[-148.098148, 60.786556],\n\t\t\t\t\t\t\t[-148.133987, 60.791268],\n\t\t\t\t\t\t\t[-148.144355, 60.797089],\n\t\t\t\t\t\t\t[-148.151597, 60.818122],\n\t\t\t\t\t\t\t[-148.148298, 60.828701],\n\t\t\t\t\t\t\t[-148.101841, 60.899347],\n\t\t\t\t\t\t\t[-148.085220, 60.918613],\n\t\t\t\t\t\t\t[-148.065132, 60.937963],\n\t\t\t\t\t\t\t[-148.017276, 60.971807],\n\t\t\t\t\t\t\t[-147.950619, 61.029211],\n\t\t\t\t\t\t\t[-147.947785, 61.040625],\n\t\t\t\t\t\t\t[-147.961969, 61.059537],\n\t\t\t\t\t\t\t[-147.973392, 61.067391],\n\t\t\t\t\t\t\t[-147.982673, 61.070246],\n\t\t\t\t\t\t\t[-147.991241, 61.069533],\n\t\t\t\t\t\t\t[-148.001637, 61.060103],\n\t\t\t\t\t\t\t[-148.003216, 61.053797],\n\t\t\t\t\t\t\t[-148.065505, 61.003979],\n\t\t\t\t\t\t\t[-148.090090, 61.005110],\n\t\t\t\t\t\t\t[-148.095004, 61.011384],\n\t\t\t\t\t\t\t[-148.105388, 61.035123],\n\t\t\t\t\t\t\t[-148.125128, 61.070698],\n\t\t\t\t\t\t\t[-148.149024, 61.076672],\n\t\t\t\t\t\t\t[-148.165969, 61.069277],\n\t\t\t\t\t\t\t[-148.164452, 61.042665],\n\t\t\t\t\t\t\t[-148.177649, 60.999608],\n\t\t\t\t\t\t\t[-148.198970, 60.971584],\n\t\t\t\t\t\t\t[-148.218954, 60.953573],\n\t\t\t\t\t\t\t[-148.241664, 60.937738],\n\t\t\t\t\t\t\t[-148.265584, 60.936331],\n\t\t\t\t\t\t\t[-148.281248, 60.917792],\n\t\t\t\t\t\t\t[-148.294475, 60.862751],\n\t\t\t\t\t\t\t[-148.309710, 60.837737],\n\t\t\t\t\t\t\t[-148.340711, 60.809072],\n\t\t\t\t\t\t\t[-148.350460, 60.803991],\n\t\t\t\t\t\t\t[-148.375416, 60.803470],\n\t\t\t\t\t\t\t[-148.389517, 60.805622],\n\t\t\t\t\t\t\t[-148.396614, 60.813694],\n\t\t\t\t\t\t\t[-148.426555, 60.827113],\n\t\t\t\t\t\t\t[-148.446278, 60.808705],\n\t\t\t\t\t\t\t[-148.450122, 60.796405],\n\t\t\t\t\t\t\t[-148.450890, 60.789487],\n\t\t\t\t\t\t\t[-148.441666, 60.777956],\n\t\t\t\t\t\t\t[-148.431078, 60.771842],\n\t\t\t\t\t\t\t[-148.405576, 60.780301],\n\t\t\t\t\t\t\t[-148.395962, 60.779701],\n\t\t\t\t\t\t\t[-148.381999, 60.775768],\n\t\t\t\t\t\t\t[-148.366407, 60.765833],\n\t\t\t\t\t\t\t[-148.365314, 60.740969],\n\t\t\t\t\t\t\t[-148.384094, 60.687754],\n\t\t\t\t\t\t\t[-148.374018, 60.672640],\n\t\t\t\t\t\t\t[-148.347881, 60.680327],\n\t\t\t\t\t\t\t[-148.326357, 60.709539],\n\t\t\t\t\t\t\t[-148.280136, 60.753337],\n\t\t\t\t\t\t\t[-148.269523, 60.757389],\n\t\t\t\t\t\t\t[-148.229756, 60.764140],\n\t\t\t\t\t\t\t[-148.147662, 60.758536],\n\t\t\t\t\t\t\t[-148.120366, 60.748952],\n\t\t\t\t\t\t\t[-148.106987, 60.739770],\n\t\t\t\t\t\t\t[-148.091315, 60.676249],\n\t\t\t\t\t\t\t[-148.093732, 60.661533],\n\t\t\t\t\t\t\t[-148.142596, 60.622632],\n\t\t\t\t\t\t\t[-148.229961, 60.595062],\n\t\t\t\t\t\t\t[-148.237828, 60.600206],\n\t\t\t\t\t\t\t[-148.254852, 60.595124],\n\t\t\t\t\t\t\t[-148.292837, 60.565496],\n\t\t\t\t\t\t\t[-148.306123, 60.550702],\n\t\t\t\t\t\t\t[-148.328167, 60.531913],\n\t\t\t\t\t\t\t[-148.333245, 60.530464],\n\t\t\t\t\t\t\t[-148.345627, 60.502973],\n\t\t\t\t\t\t\t[-148.346378, 60.488730],\n\t\t\t\t\t\t\t[-148.328987, 60.476182],\n\t\t\t\t\t\t\t[-148.293534, 60.483001],\n\t\t\t\t\t\t\t[-148.255425, 60.493410],\n\t\t\t\t\t\t\t[-148.247867, 60.500504],\n\t\t\t\t\t\t\t[-148.250132, 60.507573],\n\t\t\t\t\t\t\t[-148.238554, 60.521443],\n\t\t\t\t\t\t\t[-148.192033, 60.557371],\n\t\t\t\t\t\t\t[-148.114766, 60.596029],\n\t\t\t\t\t\t\t[-148.102747, 60.598026],\n\t\t\t\t\t\t\t[-148.086378, 60.595518],\n\t\t\t\t\t\t\t[-147.979019, 60.519146],\n\t\t\t\t\t\t\t[-147.963617, 60.502750],\n\t\t\t\t\t\t\t[-147.971198, 60.486479],\n\t\t\t\t\t\t\t[-147.977250, 60.480937],\n\t\t\t\t\t\t\t[-147.941709, 60.444029],\n\t\t\t\t\t\t\t[-147.992939, 60.352596],\n\t\t\t\t\t\t\t[-148.025597, 60.279029],\n\t\t\t\t\t\t\t[-148.064494, 60.276233],\n\t\t\t\t\t\t\t[-148.115864, 60.279522],\n\t\t\t\t\t\t\t[-148.150132, 60.296210],\n\t\t\t\t\t\t\t[-148.153122, 60.303062],\n\t\t\t\t\t\t\t[-148.153624, 60.311600],\n\t\t\t\t\t\t\t[-148.150109, 60.320739],\n\t\t\t\t\t\t\t[-148.150231, 60.324182],\n\t\t\t\t\t\t\t[-148.170881, 60.335266],\n\t\t\t\t\t\t\t[-148.192669, 60.339103],\n\t\t\t\t\t\t\t[-148.216921, 60.331594],\n\t\t\t\t\t\t\t[-148.215848, 60.318269],\n\t\t\t\t\t\t\t[-148.211194, 60.306961],\n\t\t\t\t\t\t\t[-148.215152, 60.301014],\n\t\t\t\t\t\t\t[-148.284807, 60.270971],\n\t\t\t\t\t\t\t[-148.312625, 60.263084],\n\t\t\t\t\t\t\t[-148.325572, 60.261824],\n\t\t\t\t\t\t\t[-148.362100, 60.221849],\n\t\t\t\t\t\t\t[-148.339155, 60.213350],\n\t\t\t\t\t\t\t[-148.332652, 60.214000],\n\t\t\t\t\t\t\t[-148.321208, 60.218469],\n\t\t\t\t\t\t\t[-148.275752, 60.249270],\n\t\t\t\t\t\t\t[-148.216863, 60.260006],\n\t\t\t\t\t\t\t[-148.208328, 60.259342],\n\t\t\t\t\t\t\t[-148.192000, 60.252500],\n\t\t\t\t\t\t\t[-148.188298, 60.248574],\n\t\t\t\t\t\t\t[-148.192569, 60.241826],\n\t\t\t\t\t\t\t[-148.200779, 60.236711],\n\t\t\t\t\t\t\t[-148.228931, 60.235911],\n\t\t\t\t\t\t\t[-148.234227, 60.223689],\n\t\t\t\t\t\t\t[-148.190530, 60.206957],\n\t\t\t\t\t\t\t[-148.165099, 60.206173],\n\t\t\t\t\t\t\t[-148.158947, 60.211675],\n\t\t\t\t\t\t\t[-148.153775, 60.226236],\n\t\t\t\t\t\t\t[-148.153037, 60.235528],\n\t\t\t\t\t\t\t[-148.139869, 60.241081],\n\t\t\t\t\t\t\t[-148.090238, 60.215863],\n\t\t\t\t\t\t\t[-148.117300, 60.191335],\n\t\t\t\t\t\t\t[-148.133624, 60.188390],\n\t\t\t\t\t\t\t[-148.134990, 60.184596],\n\t\t\t\t\t\t\t[-148.130641, 60.169789],\n\t\t\t\t\t\t\t[-148.126291, 60.167063],\n\t\t\t\t\t\t\t[-148.090876, 60.168649],\n\t\t\t\t\t\t\t[-148.080188, 60.171568],\n\t\t\t\t\t\t\t[-148.079884, 60.184234],\n\t\t\t\t\t\t\t[-148.085791, 60.190041],\n\t\t\t\t\t\t\t[-148.082874, 60.192357],\n\t\t\t\t\t\t\t[-148.061865, 60.200094],\n\t\t\t\t\t\t\t[-148.051918, 60.202062],\n\t\t\t\t\t\t\t[-148.003433, 60.176167],\n\t\t\t\t\t\t\t[-148.006656, 60.168461],\n\t\t\t\t\t\t\t[-148.018404, 60.157419],\n\t\t\t\t\t\t\t[-148.028870, 60.150518],\n\t\t\t\t\t\t\t[-148.032495, 60.148423],\n\t\t\t\t\t\t\t[-148.064401, 60.148508],\n\t\t\t\t\t\t\t[-148.097230, 60.120120],\n\t\t\t\t\t\t\t[-148.121797, 60.073548],\n\t\t\t\t\t\t\t[-148.095719, 60.065935],\n\t\t\t\t\t\t\t[-148.079466, 60.073251],\n\t\t\t\t\t\t\t[-148.053431, 60.090762],\n\t\t\t\t\t\t\t[-148.040178, 60.112361],\n\t\t\t\t\t\t\t[-148.012270, 60.124734],\n\t\t\t\t\t\t\t[-147.961701, 60.140900],\n\t\t\t\t\t\t\t[-147.912824, 60.132576],\n\t\t\t\t\t\t\t[-147.892320, 60.119515],\n\t\t\t\t\t\t\t[-147.887734, 60.109683],\n\t\t\t\t\t\t\t[-147.892576, 60.101161],\n\t\t\t\t\t\t\t[-147.973112, 60.064636],\n\t\t\t\t\t\t\t[-147.998659, 60.062305],\n\t\t\t\t\t\t\t[-148.013551, 60.038159],\n\t\t\t\t\t\t\t[-148.023817, 60.007108],\n\t\t\t\t\t\t\t[-148.016035, 59.999344],\n\t\t\t\t\t\t\t[-147.986164, 59.999344],\n\t\t\t\t\t\t\t[-147.924401, 60.036230],\n\t\t\t\t\t\t\t[-147.892229, 60.063265],\n\t\t\t\t\t\t\t[-147.879679, 60.069593],\n\t\t\t\t\t\t\t[-147.860607, 60.076356],\n\t\t\t\t\t\t\t[-147.848072, 60.078962],\n\t\t\t\t\t\t\t[-147.822043, 60.066955],\n\t\t\t\t\t\t\t[-147.816451, 60.061824],\n\t\t\t\t\t\t\t[-147.815238, 60.058562],\n\t\t\t\t\t\t\t[-147.823738, 60.045035],\n\t\t\t\t\t\t\t[-147.863929, 60.006619],\n\t\t\t\t\t\t\t[-147.917538, 59.985997],\n\t\t\t\t\t\t\t[-148.005827, 59.961542],\n\t\t\t\t\t\t\t[-148.031770, 59.955862],\n\t\t\t\t\t\t\t[-148.036776, 59.956664],\n\t\t\t\t\t\t\t[-148.050706, 59.968908],\n\t\t\t\t\t\t\t[-148.050143, 59.976767],\n\t\t\t\t\t\t\t[-148.056373, 59.990423],\n\t\t\t\t\t\t\t[-148.069919, 59.989098],\n\t\t\t\t\t\t\t[-148.085820, 59.977512],\n\t\t\t\t\t\t\t[-148.104818, 59.969237],\n\t\t\t\t\t\t\t[-148.135095, 59.959055],\n\t\t\t\t\t\t\t[-148.153742, 59.954643],\n\t\t\t\t\t\t\t[-148.224838, 59.950195],\n\t\t\t\t\t\t\t[-148.251099, 59.952416],\n\t\t\t\t\t\t\t[-148.252869, 59.955614],\n\t\t\t\t\t\t\t[-148.213497, 59.994643],\n\t\t\t\t\t\t\t[-148.193842, 59.998979],\n\t\t\t\t\t\t\t[-148.179545, 59.996653],\n\t\t\t\t\t\t\t[-148.147614, 59.994952],\n\t\t\t\t\t\t\t[-148.132300, 59.997697],\n\t\t\t\t\t\t\t[-148.128693, 60.003442],\n\t\t\t\t\t\t\t[-148.138918, 60.012416],\n\t\t\t\t\t\t\t[-148.175808, 60.026337],\n\t\t\t\t\t\t\t[-148.212668, 60.018101],\n\t\t\t\t\t\t\t[-148.273844, 60.013318],\n\t\t\t\t\t\t\t[-148.317941, 60.028731],\n\t\t\t\t\t\t\t[-148.305725, 60.054468],\n\t\t\t\t\t\t\t[-148.290367, 60.059995],\n\t\t\t\t\t\t\t[-148.292816, 60.151289],\n\t\t\t\t\t\t\t[-148.305868, 60.161607],\n\t\t\t\t\t\t\t[-148.316849, 60.165437],\n\t\t\t\t\t\t\t[-148.346535, 60.162108],\n\t\t\t\t\t\t\t[-148.358188, 60.156510],\n\t\t\t\t\t\t\t[-148.369109, 60.120922],\n\t\t\t\t\t\t\t[-148.382325, 60.063299],\n\t\t\t\t\t\t\t[-148.401204, 59.997600],\n\t\t\t\t\t\t\t[-148.429106, 59.969158],\n\t\t\t\t\t\t\t[-148.445588, 59.963755],\n\t\t\t\t\t\t\t[-148.470205, 59.973708],\n\t\t\t\t\t\t\t[-148.480171, 59.979653],\n\t\t\t\t\t\t\t[-148.482505, 59.983308],\n\t\t\t\t\t\t\t[-148.476974, 59.989515],\n\t\t\t\t\t\t\t[-148.480436, 59.999394],\n\t\t\t\t\t\t\t[-148.508825, 60.002875],\n\t\t\t\t\t\t\t[-148.544134, 60.002809],\n\t\t\t\t\t\t\t[-148.556294, 59.984931],\n\t\t\t\t\t\t\t[-148.555253, 59.980657],\n\t\t\t\t\t\t\t[-148.599121, 59.950889],\n\t\t\t\t\t\t\t[-148.635842, 59.939661],\n\t\t\t\t\t\t\t[-148.673822, 59.944828],\n\t\t\t\t\t\t\t[-148.583640, 59.961477],\n\t\t\t\t\t\t\t[-148.562368, 60.422593],\n\t\t\t\t\t\t\t[-148.666606, 60.423056],\n\t\t\t\t\t\t\t[-148.655444, 60.734542],\n\t\t\t\t\t\t\t[-148.745578, 60.733881],\n\t\t\t\t\t\t\t[-148.746023, 60.846140],\n\t\t\t\t\t\t\t[-148.473461, 60.850630],\n\t\t\t\t\t\t\t[-148.479587, 61.165059],\n\t\t\t\t\t\t\t[-148.460007, 61.426972],\n\t\t\t\t\t\t\t[-147.206028, 61.425265],\n\t\t\t\t\t\t\t[-147.205707, 61.475073],\n\t\t\t\t\t\t\t[-146.945124, 61.474349],\n\t\t\t\t\t\t\t[-146.941834, 61.811907],\n\t\t\t\t\t\t\t[-146.961638, 62.160211],\n\t\t\t\t\t\t\t[-146.981731, 62.248681],\n\t\t\t\t\t\t\t[-146.426334, 62.247221],\n\t\t\t\t\t\t\t[-146.428648, 62.863288],\n\t\t\t\t\t\t\t[-146.484119, 63.173325],\n\t\t\t\t\t\t\t[-146.329260, 63.190562],\n\t\t\t\t\t\t\t[-146.140827, 63.184013],\n\t\t\t\t\t\t\t[-146.111233, 63.221250],\n\t\t\t\t\t\t\t[-145.148881, 63.222211],\n\t\t\t\t\t\t\t[-145.148422, 63.133568],\n\t\t\t\t\t\t\t[-144.575427, 63.133381],\n\t\t\t\t\t\t\t[-144.576439, 63.117871],\n\t\t\t\t\t\t\t[-143.876857, 63.113153],\n\t\t\t\t\t\t\t[-143.126854, 63.115888],\n\t\t\t\t\t\t\t[-143.088616, 63.008567],\n\t\t\t\t\t\t\t[-143.001212, 62.993787],\n\t\t\t\t\t\t\t[-143.027483, 62.935424],\n\t\t\t\t\t\t\t[-143.196314, 62.826152],\n\t\t\t\t\t\t\t[-143.007728, 62.766011],\n\t\t\t\t\t\t\t[-143.138459, 62.691159],\n\t\t\t\t\t\t\t[-143.159193, 62.636952],\n\t\t\t\t\t\t\t[-143.104753, 62.613456],\n\t\t\t\t\t\t\t[-142.842155, 62.597198],\n\t\t\t\t\t\t\t[-142.736106, 62.702023],\n\t\t\t\t\t\t\t[-142.629088, 62.683657],\n\t\t\t\t\t\t\t[-142.314531, 62.683952],\n\t\t\t\t\t\t\t[-142.320598, 62.598671],\n\t\t\t\t\t\t\t[-141.963703, 62.510628],\n\t\t\t\t\t\t\t[-141.978417, 62.165011],\n\t\t\t\t\t\t\t[-142.017011, 62.127586],\n\t\t\t\t\t\t\t[-141.830194, 62.127580],\n\t\t\t\t\t\t\t[-141.828648, 61.901030],\n\t\t\t\t\t\t\t[-141.002020, 61.901922],\n\t\t\t\t\t\t\t[-141.001850, 60.391688]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US02270\",\n\t\t\t\t\"STATE\": \"02\",\n\t\t\t\t\"COUNTY\": \"270\",\n\t\t\t\t\"NAME\": \"Wade Hampton\",\n\t\t\t\t\"LSAD\": \"CA\",\n\t\t\t\t\"CENSUSAREA\": 17081.433000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-160.534142, 61.947257],\n\t\t\t\t\t\t[-160.469477, 61.869348],\n\t\t\t\t\t\t[-160.186660, 61.831693],\n\t\t\t\t\t\t[-160.350140, 61.819071],\n\t\t\t\t\t\t[-160.597733, 61.760156],\n\t\t\t\t\t\t[-160.775244, 61.738527],\n\t\t\t\t\t\t[-160.953961, 61.685669],\n\t\t\t\t\t\t[-161.126812, 61.599540],\n\t\t\t\t\t\t[-161.449611, 61.568838],\n\t\t\t\t\t\t[-161.697058, 61.530087],\n\t\t\t\t\t\t[-161.885286, 61.482810],\n\t\t\t\t\t\t[-162.013438, 61.477057],\n\t\t\t\t\t\t[-162.328294, 61.518376],\n\t\t\t\t\t\t[-162.476189, 61.503959],\n\t\t\t\t\t\t[-162.505761, 61.556426],\n\t\t\t\t\t\t[-162.753980, 61.542666],\n\t\t\t\t\t\t[-162.847199, 61.498736],\n\t\t\t\t\t\t[-163.061999, 61.479931],\n\t\t\t\t\t\t[-163.171354, 61.449071],\n\t\t\t\t\t\t[-163.431258, 61.484107],\n\t\t\t\t\t\t[-163.531412, 61.401454],\n\t\t\t\t\t\t[-163.541623, 61.349559],\n\t\t\t\t\t\t[-163.992760, 61.371763],\n\t\t\t\t\t\t[-163.947420, 61.205621],\n\t\t\t\t\t\t[-164.121482, 61.127000],\n\t\t\t\t\t\t[-164.201874, 61.151613],\n\t\t\t\t\t\t[-164.211781, 61.082262],\n\t\t\t\t\t\t[-164.154702, 61.022625],\n\t\t\t\t\t\t[-164.234986, 60.988241],\n\t\t\t\t\t\t[-164.529911, 60.940796],\n\t\t\t\t\t\t[-164.616585, 60.979049],\n\t\t\t\t\t\t[-164.797619, 60.982487],\n\t\t\t\t\t\t[-165.157111, 60.917363],\n\t\t\t\t\t\t[-165.155232, 60.929186],\n\t\t\t\t\t\t[-165.172467, 60.940328],\n\t\t\t\t\t\t[-165.194945, 60.973900],\n\t\t\t\t\t\t[-165.194964, 60.979915],\n\t\t\t\t\t\t[-165.190271, 60.983073],\n\t\t\t\t\t\t[-165.133937, 61.011250],\n\t\t\t\t\t\t[-165.115681, 61.016097],\n\t\t\t\t\t\t[-165.097425, 61.016658],\n\t\t\t\t\t\t[-165.096828, 61.014944],\n\t\t\t\t\t\t[-165.083282, 61.012933],\n\t\t\t\t\t\t[-165.020265, 61.011153],\n\t\t\t\t\t\t[-164.998172, 61.013826],\n\t\t\t\t\t\t[-164.961527, 61.024166],\n\t\t\t\t\t\t[-164.951103, 61.031020],\n\t\t\t\t\t\t[-164.950573, 61.048079],\n\t\t\t\t\t\t[-164.927825, 61.084392],\n\t\t\t\t\t\t[-164.902245, 61.077902],\n\t\t\t\t\t\t[-164.870450, 61.079564],\n\t\t\t\t\t\t[-164.868009, 61.096394],\n\t\t\t\t\t\t[-164.883441, 61.105924],\n\t\t\t\t\t\t[-164.891286, 61.108246],\n\t\t\t\t\t\t[-164.941253, 61.110863],\n\t\t\t\t\t\t[-164.981718, 61.109691],\n\t\t\t\t\t\t[-164.991273, 61.107232],\n\t\t\t\t\t\t[-164.997636, 61.104430],\n\t\t\t\t\t\t[-164.998547, 61.079492],\n\t\t\t\t\t\t[-164.993599, 61.076241],\n\t\t\t\t\t\t[-164.991227, 61.072192],\n\t\t\t\t\t\t[-164.995695, 61.058035],\n\t\t\t\t\t\t[-165.011271, 61.051984],\n\t\t\t\t\t\t[-165.029551, 61.054010],\n\t\t\t\t\t\t[-165.057842, 61.059746],\n\t\t\t\t\t\t[-165.119781, 61.078640],\n\t\t\t\t\t\t[-165.167636, 61.113502],\n\t\t\t\t\t\t[-165.175321, 61.120926],\n\t\t\t\t\t\t[-165.177110, 61.125494],\n\t\t\t\t\t\t[-165.167072, 61.133487],\n\t\t\t\t\t\t[-165.165857, 61.136567],\n\t\t\t\t\t\t[-165.168860, 61.144913],\n\t\t\t\t\t\t[-165.172994, 61.146919],\n\t\t\t\t\t\t[-165.203757, 61.150341],\n\t\t\t\t\t\t[-165.289700, 61.181714],\n\t\t\t\t\t\t[-165.307976, 61.181823],\n\t\t\t\t\t\t[-165.325552, 61.169306],\n\t\t\t\t\t\t[-165.344389, 61.123691],\n\t\t\t\t\t\t[-165.350154, 61.104545],\n\t\t\t\t\t\t[-165.350113, 61.097407],\n\t\t\t\t\t\t[-165.347082, 61.084847],\n\t\t\t\t\t\t[-165.342321, 61.079994],\n\t\t\t\t\t\t[-165.336996, 61.077709],\n\t\t\t\t\t\t[-165.338136, 61.073432],\n\t\t\t\t\t\t[-165.343442, 61.070564],\n\t\t\t\t\t\t[-165.370544, 61.066821],\n\t\t\t\t\t\t[-165.403007, 61.067060],\n\t\t\t\t\t\t[-165.498726, 61.079149],\n\t\t\t\t\t\t[-165.549613, 61.088162],\n\t\t\t\t\t\t[-165.578127, 61.100361],\n\t\t\t\t\t\t[-165.590682, 61.111169],\n\t\t\t\t\t\t[-165.631996, 61.220708],\n\t\t\t\t\t\t[-165.634048, 61.237557],\n\t\t\t\t\t\t[-165.627549, 61.258125],\n\t\t\t\t\t\t[-165.620589, 61.268586],\n\t\t\t\t\t\t[-165.623317, 61.278431],\n\t\t\t\t\t\t[-165.635791, 61.285456],\n\t\t\t\t\t\t[-165.662892, 61.294570],\n\t\t\t\t\t\t[-165.787442, 61.310063],\n\t\t\t\t\t\t[-165.809373, 61.306827],\n\t\t\t\t\t\t[-165.816434, 61.303363],\n\t\t\t\t\t\t[-165.831365, 61.306719],\n\t\t\t\t\t\t[-165.858993, 61.318865],\n\t\t\t\t\t\t[-165.879599, 61.335044],\n\t\t\t\t\t\t[-165.915445, 61.387686],\n\t\t\t\t\t\t[-165.921194, 61.403080],\n\t\t\t\t\t\t[-165.921950, 61.409638],\n\t\t\t\t\t\t[-165.918612, 61.419087],\n\t\t\t\t\t\t[-165.844525, 61.440601],\n\t\t\t\t\t\t[-165.800525, 61.449657],\n\t\t\t\t\t\t[-165.791085, 61.449852],\n\t\t\t\t\t\t[-165.767226, 61.456950],\n\t\t\t\t\t\t[-165.748503, 61.476446],\n\t\t\t\t\t\t[-165.746352, 61.489304],\n\t\t\t\t\t\t[-165.754317, 61.498704],\n\t\t\t\t\t\t[-165.807627, 61.529171],\n\t\t\t\t\t\t[-165.912496, 61.556200],\n\t\t\t\t\t\t[-165.964035, 61.555919],\n\t\t\t\t\t\t[-165.981879, 61.551249],\n\t\t\t\t\t\t[-165.985948, 61.546650],\n\t\t\t\t\t\t[-165.999535, 61.539720],\n\t\t\t\t\t\t[-166.034748, 61.535221],\n\t\t\t\t\t\t[-166.075524, 61.532672],\n\t\t\t\t\t\t[-166.088680, 61.522885],\n\t\t\t\t\t\t[-166.079983, 61.513464],\n\t\t\t\t\t\t[-166.058242, 61.500419],\n\t\t\t\t\t\t[-166.075398, 61.492980],\n\t\t\t\t\t\t[-166.108269, 61.492475],\n\t\t\t\t\t\t[-166.124202, 61.504645],\n\t\t\t\t\t\t[-166.158345, 61.541537],\n\t\t\t\t\t\t[-166.165232, 61.550618],\n\t\t\t\t\t\t[-166.178627, 61.574807],\n\t\t\t\t\t\t[-166.181850, 61.581342],\n\t\t\t\t\t\t[-166.182688, 61.588481],\n\t\t\t\t\t\t[-166.158976, 61.700437],\n\t\t\t\t\t\t[-166.153178, 61.714931],\n\t\t\t\t\t\t[-166.143757, 61.724352],\n\t\t\t\t\t\t[-166.134285, 61.723919],\n\t\t\t\t\t\t[-166.133020, 61.721918],\n\t\t\t\t\t\t[-166.134402, 61.709068],\n\t\t\t\t\t\t[-166.138684, 61.667101],\n\t\t\t\t\t\t[-166.140133, 61.639562],\n\t\t\t\t\t\t[-166.139409, 61.632315],\n\t\t\t\t\t\t[-166.132162, 61.631590],\n\t\t\t\t\t\t[-166.053983, 61.638201],\n\t\t\t\t\t\t[-166.031834, 61.641199],\n\t\t\t\t\t\t[-166.015134, 61.645866],\n\t\t\t\t\t\t[-165.967894, 61.654432],\n\t\t\t\t\t\t[-165.903783, 61.663632],\n\t\t\t\t\t\t[-165.822140, 61.670610],\n\t\t\t\t\t\t[-165.809933, 61.673029],\n\t\t\t\t\t\t[-165.810000, 61.689360],\n\t\t\t\t\t\t[-165.856791, 61.690734],\n\t\t\t\t\t\t[-165.934968, 61.706299],\n\t\t\t\t\t\t[-165.993851, 61.723105],\n\t\t\t\t\t\t[-166.006693, 61.729879],\n\t\t\t\t\t\t[-166.092081, 61.800733],\n\t\t\t\t\t\t[-166.094045, 61.805296],\n\t\t\t\t\t\t[-166.094312, 61.813859],\n\t\t\t\t\t\t[-166.085334, 61.816498],\n\t\t\t\t\t\t[-165.955265, 61.832408],\n\t\t\t\t\t\t[-165.870982, 61.826013],\n\t\t\t\t\t\t[-165.758413, 61.825444],\n\t\t\t\t\t\t[-165.747090, 61.827720],\n\t\t\t\t\t\t[-165.736904, 61.832901],\n\t\t\t\t\t\t[-165.736429, 61.839188],\n\t\t\t\t\t\t[-165.730439, 61.842075],\n\t\t\t\t\t\t[-165.696038, 61.847055],\n\t\t\t\t\t\t[-165.640216, 61.848041],\n\t\t\t\t\t\t[-165.608427, 61.855892],\n\t\t\t\t\t\t[-165.600043, 61.859663],\n\t\t\t\t\t\t[-165.612337, 61.871907],\n\t\t\t\t\t\t[-165.667939, 61.900275],\n\t\t\t\t\t\t[-165.703482, 61.921572],\n\t\t\t\t\t\t[-165.725818, 61.947184],\n\t\t\t\t\t\t[-165.741481, 61.971392],\n\t\t\t\t\t\t[-165.756806, 62.006337],\n\t\t\t\t\t\t[-165.756386, 62.014032],\n\t\t\t\t\t\t[-165.748641, 62.047145],\n\t\t\t\t\t\t[-165.743522, 62.062280],\n\t\t\t\t\t\t[-165.734117, 62.076873],\n\t\t\t\t\t\t[-165.706155, 62.108365],\n\t\t\t\t\t\t[-165.672037, 62.139890],\n\t\t\t\t\t\t[-165.620746, 62.172616],\n\t\t\t\t\t\t[-165.500322, 62.255451],\n\t\t\t\t\t\t[-165.373713, 62.338196],\n\t\t\t\t\t\t[-165.337722, 62.359031],\n\t\t\t\t\t\t[-165.311967, 62.378812],\n\t\t\t\t\t\t[-165.294962, 62.403353],\n\t\t\t\t\t\t[-165.269270, 62.427352],\n\t\t\t\t\t\t[-165.199804, 62.469637],\n\t\t\t\t\t\t[-165.096155, 62.522452],\n\t\t\t\t\t\t[-165.046045, 62.540420],\n\t\t\t\t\t\t[-164.868059, 62.571142],\n\t\t\t\t\t\t[-164.770232, 62.592082],\n\t\t\t\t\t\t[-164.777244, 62.609083],\n\t\t\t\t\t\t[-164.796056, 62.611486],\n\t\t\t\t\t\t[-164.842846, 62.604504],\n\t\t\t\t\t\t[-164.893740, 62.599671],\n\t\t\t\t\t\t[-164.914064, 62.602530],\n\t\t\t\t\t\t[-164.928813, 62.608992],\n\t\t\t\t\t\t[-164.935992, 62.613456],\n\t\t\t\t\t\t[-164.940464, 62.618431],\n\t\t\t\t\t\t[-164.942068, 62.624956],\n\t\t\t\t\t\t[-164.932145, 62.651071],\n\t\t\t\t\t\t[-164.912910, 62.657496],\n\t\t\t\t\t\t[-164.865896, 62.645817],\n\t\t\t\t\t\t[-164.857109, 62.635513],\n\t\t\t\t\t\t[-164.837337, 62.631446],\n\t\t\t\t\t\t[-164.817110, 62.636697],\n\t\t\t\t\t\t[-164.857182, 62.768830],\n\t\t\t\t\t\t[-164.863640, 62.772620],\n\t\t\t\t\t\t[-164.870348, 62.774135],\n\t\t\t\t\t\t[-164.877300, 62.784320],\n\t\t\t\t\t\t[-164.877773, 62.797774],\n\t\t\t\t\t\t[-164.875640, 62.806254],\n\t\t\t\t\t\t[-164.850838, 62.839510],\n\t\t\t\t\t\t[-164.836318, 62.852168],\n\t\t\t\t\t\t[-164.795229, 62.858486],\n\t\t\t\t\t\t[-164.768253, 62.871331],\n\t\t\t\t\t\t[-164.751982, 62.893169],\n\t\t\t\t\t\t[-164.742134, 62.920144],\n\t\t\t\t\t\t[-164.745514, 62.944865],\n\t\t\t\t\t\t[-164.765769, 62.954907],\n\t\t\t\t\t\t[-164.766117, 62.958228],\n\t\t\t\t\t\t[-164.716841, 63.006264],\n\t\t\t\t\t\t[-164.685213, 63.022191],\n\t\t\t\t\t\t[-164.583735, 63.058457],\n\t\t\t\t\t\t[-164.580201, 63.070127],\n\t\t\t\t\t\t[-164.611616, 63.077673],\n\t\t\t\t\t\t[-164.641186, 63.072680],\n\t\t\t\t\t\t[-164.643672, 63.074975],\n\t\t\t\t\t\t[-164.644886, 63.079268],\n\t\t\t\t\t\t[-164.640324, 63.091257],\n\t\t\t\t\t\t[-164.633943, 63.097820],\n\t\t\t\t\t\t[-164.493118, 63.177670],\n\t\t\t\t\t\t[-164.423449, 63.211977],\n\t\t\t\t\t\t[-164.363592, 63.226280],\n\t\t\t\t\t\t[-164.209475, 63.251472],\n\t\t\t\t\t\t[-164.140096, 63.259336],\n\t\t\t\t\t\t[-164.066991, 63.262276],\n\t\t\t\t\t\t[-164.036565, 63.261204],\n\t\t\t\t\t\t[-163.970266, 63.248291],\n\t\t\t\t\t\t[-163.909405, 63.232514],\n\t\t\t\t\t\t[-163.885059, 63.222308],\n\t\t\t\t\t\t[-163.788882, 63.217482],\n\t\t\t\t\t\t[-163.755283, 63.217461],\n\t\t\t\t\t\t[-163.732650, 63.213257],\n\t\t\t\t\t\t[-163.725805, 63.210620],\n\t\t\t\t\t\t[-163.724072, 63.206592],\n\t\t\t\t\t\t[-163.703980, 63.188107],\n\t\t\t\t\t\t[-163.650294, 63.157564],\n\t\t\t\t\t\t[-163.616272, 63.141213],\n\t\t\t\t\t\t[-163.590122, 63.146091],\n\t\t\t\t\t\t[-163.529938, 63.135400],\n\t\t\t\t\t\t[-163.520806, 63.123280],\n\t\t\t\t\t\t[-163.507217, 63.113685],\n\t\t\t\t\t\t[-163.474794, 63.099053],\n\t\t\t\t\t\t[-163.433968, 63.089296],\n\t\t\t\t\t\t[-163.417683, 63.083874],\n\t\t\t\t\t\t[-163.364979, 63.055805],\n\t\t\t\t\t\t[-163.316203, 63.037763],\n\t\t\t\t\t\t[-163.130853, 63.049387],\n\t\t\t\t\t\t[-163.053996, 63.058334],\n\t\t\t\t\t\t[-163.040500, 63.062151],\n\t\t\t\t\t\t[-162.998302, 63.089286],\n\t\t\t\t\t\t[-162.919727, 63.120153],\n\t\t\t\t\t\t[-162.901643, 63.125597],\n\t\t\t\t\t\t[-162.844559, 63.154191],\n\t\t\t\t\t\t[-162.837850, 63.159224],\n\t\t\t\t\t\t[-162.834926, 63.164621],\n\t\t\t\t\t\t[-162.840187, 63.187579],\n\t\t\t\t\t\t[-162.839167, 63.193004],\n\t\t\t\t\t\t[-162.834354, 63.198076],\n\t\t\t\t\t\t[-162.821122, 63.205596],\n\t\t\t\t\t\t[-162.769536, 63.217069],\n\t\t\t\t\t\t[-162.758741, 63.217187],\n\t\t\t\t\t\t[-162.747621, 63.213572],\n\t\t\t\t\t\t[-162.724080, 63.214615],\n\t\t\t\t\t\t[-162.688083, 63.220608],\n\t\t\t\t\t\t[-162.662614, 63.229906],\n\t\t\t\t\t\t[-162.587754, 63.275727],\n\t\t\t\t\t\t[-162.377710, 63.272891],\n\t\t\t\t\t\t[-162.374087, 63.186423],\n\t\t\t\t\t\t[-162.184665, 63.186448],\n\t\t\t\t\t\t[-162.177514, 63.096467],\n\t\t\t\t\t\t[-161.990032, 63.096024],\n\t\t\t\t\t\t[-161.990906, 63.012675],\n\t\t\t\t\t\t[-160.851144, 63.012689],\n\t\t\t\t\t\t[-160.941899, 62.998883],\n\t\t\t\t\t\t[-160.942287, 62.898827],\n\t\t\t\t\t\t[-160.993241, 62.897962],\n\t\t\t\t\t\t[-161.000397, 62.551764],\n\t\t\t\t\t\t[-161.045280, 62.550449],\n\t\t\t\t\t\t[-161.047821, 62.206673],\n\t\t\t\t\t\t[-160.910169, 62.204383],\n\t\t\t\t\t\t[-160.913973, 61.949378],\n\t\t\t\t\t\t[-160.534142, 61.947257]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US04003\",\n\t\t\t\t\"STATE\": \"04\",\n\t\t\t\t\"COUNTY\": \"003\",\n\t\t\t\t\"NAME\": \"Cochise\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 6165.690000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-109.047926, 32.426376],\n\t\t\t\t\t\t[-109.048286, 32.089114],\n\t\t\t\t\t\t[-109.048296, 32.084093],\n\t\t\t\t\t\t[-109.048731, 32.028174],\n\t\t\t\t\t\t[-109.048599, 32.013651],\n\t\t\t\t\t\t[-109.048590, 31.870791],\n\t\t\t\t\t\t[-109.048769, 31.861383],\n\t\t\t\t\t\t[-109.048763, 31.810776],\n\t\t\t\t\t\t[-109.049195, 31.796551],\n\t\t\t\t\t\t[-109.049813, 31.499528],\n\t\t\t\t\t\t[-109.049843, 31.499515],\n\t\t\t\t\t\t[-109.050044, 31.332502],\n\t\t\t\t\t\t[-109.426931, 31.334033],\n\t\t\t\t\t\t[-110.460172, 31.333051],\n\t\t\t\t\t\t[-110.451736, 31.731267],\n\t\t\t\t\t\t[-110.451503, 32.427354],\n\t\t\t\t\t\t[-109.227815, 32.424475],\n\t\t\t\t\t\t[-109.113987, 32.426177],\n\t\t\t\t\t\t[-109.047926, 32.426376]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US04013\",\n\t\t\t\t\"STATE\": \"04\",\n\t\t\t\t\"COUNTY\": \"013\",\n\t\t\t\t\"NAME\": \"Maricopa\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 9200.143000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-111.580626, 33.465902],\n\t\t\t\t\t\t[-111.583047, 33.205450],\n\t\t\t\t\t\t[-111.686035, 33.204637],\n\t\t\t\t\t\t[-111.893085, 33.204811],\n\t\t\t\t\t\t[-112.083488, 33.204560],\n\t\t\t\t\t\t[-112.191784, 33.265039],\n\t\t\t\t\t\t[-112.203288, 33.310533],\n\t\t\t\t\t\t[-112.203719, 32.506760],\n\t\t\t\t\t\t[-113.333897, 32.504938],\n\t\t\t\t\t\t[-113.333212, 33.227210],\n\t\t\t\t\t\t[-113.333920, 33.377425],\n\t\t\t\t\t\t[-113.333313, 33.565710],\n\t\t\t\t\t\t[-113.333823, 33.911661],\n\t\t\t\t\t\t[-113.333753, 33.999227],\n\t\t\t\t\t\t[-112.743951, 33.999898],\n\t\t\t\t\t\t[-112.341876, 33.898958],\n\t\t\t\t\t\t[-112.276040, 33.882312],\n\t\t\t\t\t\t[-112.264425, 33.899094],\n\t\t\t\t\t\t[-112.260470, 33.903592],\n\t\t\t\t\t\t[-112.256668, 33.905526],\n\t\t\t\t\t\t[-112.164758, 34.048170],\n\t\t\t\t\t\t[-111.861997, 34.015108],\n\t\t\t\t\t\t[-111.725310, 33.999849],\n\t\t\t\t\t\t[-111.494778, 33.999817],\n\t\t\t\t\t\t[-111.433271, 33.983321],\n\t\t\t\t\t\t[-111.450904, 33.919877],\n\t\t\t\t\t\t[-111.372317, 33.823924],\n\t\t\t\t\t\t[-111.389444, 33.776663],\n\t\t\t\t\t\t[-111.262830, 33.623157],\n\t\t\t\t\t\t[-111.222055, 33.602446],\n\t\t\t\t\t\t[-111.153354, 33.677606],\n\t\t\t\t\t\t[-111.039905, 33.466104],\n\t\t\t\t\t\t[-111.250681, 33.464902],\n\t\t\t\t\t\t[-111.269760, 33.465538],\n\t\t\t\t\t\t[-111.580626, 33.465902]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05001\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"001\",\n\t\t\t\t\"NAME\": \"Arkansas\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 988.770000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.056276, 34.336605],\n\t\t\t\t\t\t[-91.060626, 34.216766],\n\t\t\t\t\t\t[-91.117905, 34.119105],\n\t\t\t\t\t\t[-91.194278, 34.070938],\n\t\t\t\t\t\t[-91.132686, 33.955221],\n\t\t\t\t\t\t[-91.347628, 33.954941],\n\t\t\t\t\t\t[-91.421715, 34.014472],\n\t\t\t\t\t\t[-91.431239, 34.020363],\n\t\t\t\t\t\t[-91.437131, 34.034663],\n\t\t\t\t\t\t[-91.434621, 34.052702],\n\t\t\t\t\t\t[-91.435887, 34.068440],\n\t\t\t\t\t\t[-91.445614, 34.080147],\n\t\t\t\t\t\t[-91.540178, 34.224599],\n\t\t\t\t\t\t[-91.711795, 34.233919],\n\t\t\t\t\t\t[-91.705185, 34.482670],\n\t\t\t\t\t\t[-91.678037, 34.481920],\n\t\t\t\t\t\t[-91.595520, 34.480510],\n\t\t\t\t\t\t[-91.594429, 34.568050],\n\t\t\t\t\t\t[-91.377820, 34.563480],\n\t\t\t\t\t\t[-91.209161, 34.483221],\n\t\t\t\t\t\t[-91.107762, 34.353404],\n\t\t\t\t\t\t[-91.056276, 34.336605]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05009\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"009\",\n\t\t\t\t\"NAME\": \"Boone\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 590.231000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.296117, 36.498389],\n\t\t\t\t\t\t[-93.088988, 36.498184],\n\t\t\t\t\t\t[-93.087635, 36.498239],\n\t\t\t\t\t\t[-93.069512, 36.498242],\n\t\t\t\t\t\t[-93.068455, 36.498250],\n\t\t\t\t\t\t[-93.013742, 36.498130],\n\t\t\t\t\t\t[-92.894336, 36.497867],\n\t\t\t\t\t\t[-92.894001, 36.497850],\n\t\t\t\t\t\t[-92.854049, 36.497983],\n\t\t\t\t\t\t[-92.884954, 36.490891],\n\t\t\t\t\t\t[-92.890695, 36.114132],\n\t\t\t\t\t\t[-92.944666, 36.115123],\n\t\t\t\t\t\t[-92.948256, 36.115526],\n\t\t\t\t\t\t[-93.300072, 36.121264],\n\t\t\t\t\t\t[-93.300828, 36.125038],\n\t\t\t\t\t\t[-93.296117, 36.498389]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05019\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"019\",\n\t\t\t\t\"NAME\": \"Clark\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 866.074000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.373406, 33.957070],\n\t\t\t\t\t\t[-93.434165, 34.049739],\n\t\t\t\t\t\t[-93.478646, 34.340851],\n\t\t\t\t\t\t[-93.439996, 34.340048],\n\t\t\t\t\t\t[-93.439461, 34.340212],\n\t\t\t\t\t\t[-93.433178, 34.339866],\n\t\t\t\t\t\t[-93.408124, 34.339527],\n\t\t\t\t\t\t[-93.356840, 34.280306],\n\t\t\t\t\t\t[-93.198278, 34.277337],\n\t\t\t\t\t\t[-93.199428, 34.248057],\n\t\t\t\t\t\t[-93.035039, 34.236664],\n\t\t\t\t\t\t[-93.042025, 34.159852],\n\t\t\t\t\t\t[-92.886285, 34.155877],\n\t\t\t\t\t\t[-92.893116, 33.983284],\n\t\t\t\t\t\t[-92.961185, 33.974820],\n\t\t\t\t\t\t[-92.893140, 33.902751],\n\t\t\t\t\t\t[-92.893534, 33.809943],\n\t\t\t\t\t\t[-93.104290, 33.777011],\n\t\t\t\t\t\t[-93.290571, 33.845133],\n\t\t\t\t\t\t[-93.373406, 33.957070]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05029\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"029\",\n\t\t\t\t\"NAME\": \"Conway\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 552.250000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.040525, 35.076923],\n\t\t\t\t\t\t[-92.896109, 35.170678],\n\t\t\t\t\t\t[-92.855000, 35.172777],\n\t\t\t\t\t\t[-92.850624, 35.462950],\n\t\t\t\t\t\t[-92.479268, 35.455357],\n\t\t\t\t\t\t[-92.481469, 35.368392],\n\t\t\t\t\t\t[-92.484259, 35.280706],\n\t\t\t\t\t\t[-92.554685, 35.113277],\n\t\t\t\t\t\t[-92.716331, 35.071742],\n\t\t\t\t\t\t[-93.040525, 35.076923]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05043\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"043\",\n\t\t\t\t\"NAME\": \"Drew\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 828.356000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.975844, 33.704414],\n\t\t\t\t\t\t[-91.975974, 33.791787],\n\t\t\t\t\t\t[-91.663738, 33.792246],\n\t\t\t\t\t\t[-91.557648, 33.783384],\n\t\t\t\t\t\t[-91.450325, 33.780415],\n\t\t\t\t\t\t[-91.453438, 33.563703],\n\t\t\t\t\t\t[-91.457370, 33.388974],\n\t\t\t\t\t\t[-91.990167, 33.398214],\n\t\t\t\t\t\t[-92.007850, 33.529396],\n\t\t\t\t\t\t[-91.976080, 33.529687],\n\t\t\t\t\t\t[-91.975844, 33.704414]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05051\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"051\",\n\t\t\t\t\"NAME\": \"Garland\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 677.781000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.394289, 34.743393],\n\t\t\t\t\t\t[-93.394456, 34.772355],\n\t\t\t\t\t\t[-93.287785, 34.773193],\n\t\t\t\t\t\t[-93.269886, 34.771993],\n\t\t\t\t\t\t[-93.075178, 34.771892],\n\t\t\t\t\t\t[-92.969250, 34.772266],\n\t\t\t\t\t\t[-92.979902, 34.637222],\n\t\t\t\t\t\t[-92.875456, 34.635124],\n\t\t\t\t\t\t[-92.808028, 34.590406],\n\t\t\t\t\t\t[-92.793197, 34.503606],\n\t\t\t\t\t\t[-92.915079, 34.506114],\n\t\t\t\t\t\t[-92.948071, 34.389255],\n\t\t\t\t\t\t[-93.407227, 34.396853],\n\t\t\t\t\t\t[-93.394289, 34.743393]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05061\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"061\",\n\t\t\t\t\"NAME\": \"Howard\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 588.554000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.935371, 34.350097],\n\t\t\t\t\t\t[-93.925830, 34.186496],\n\t\t\t\t\t\t[-93.820722, 34.183802],\n\t\t\t\t\t\t[-93.823076, 34.008893],\n\t\t\t\t\t\t[-93.831452, 33.747709],\n\t\t\t\t\t\t[-93.957315, 33.750940],\n\t\t\t\t\t\t[-93.958828, 33.750994],\n\t\t\t\t\t\t[-93.964699, 33.796211],\n\t\t\t\t\t\t[-94.070085, 33.926994],\n\t\t\t\t\t\t[-94.090096, 34.187141],\n\t\t\t\t\t\t[-94.243739, 34.192501],\n\t\t\t\t\t\t[-94.254668, 34.355481],\n\t\t\t\t\t\t[-93.935371, 34.350097]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05071\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"071\",\n\t\t\t\t\"NAME\": \"Johnson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 659.804000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.710076, 35.375242],\n\t\t\t\t\t\t[-93.695981, 35.768649],\n\t\t\t\t\t\t[-93.519204, 35.763521],\n\t\t\t\t\t\t[-93.519575, 35.734422],\n\t\t\t\t\t\t[-93.164452, 35.728831],\n\t\t\t\t\t\t[-93.167800, 35.597695],\n\t\t\t\t\t\t[-93.221170, 35.598938],\n\t\t\t\t\t\t[-93.223633, 35.468593],\n\t\t\t\t\t\t[-93.295910, 35.469915],\n\t\t\t\t\t\t[-93.299014, 35.327425],\n\t\t\t\t\t\t[-93.417895, 35.326779],\n\t\t\t\t\t\t[-93.430410, 35.423737],\n\t\t\t\t\t\t[-93.710076, 35.375242]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05085\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"085\",\n\t\t\t\t\"NAME\": \"Lonoke\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 770.728000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.121336, 35.012210],\n\t\t\t\t\t\t[-92.119719, 35.066493],\n\t\t\t\t\t\t[-92.013056, 35.076317],\n\t\t\t\t\t\t[-91.878880, 35.024577],\n\t\t\t\t\t\t[-91.802505, 35.030425],\n\t\t\t\t\t\t[-91.803703, 34.921524],\n\t\t\t\t\t\t[-91.693705, 34.919605],\n\t\t\t\t\t\t[-91.700828, 34.672029],\n\t\t\t\t\t\t[-91.638531, 34.626093],\n\t\t\t\t\t\t[-91.678037, 34.481920],\n\t\t\t\t\t\t[-91.705185, 34.482670],\n\t\t\t\t\t\t[-92.029996, 34.489352],\n\t\t\t\t\t\t[-92.029540, 34.621403],\n\t\t\t\t\t\t[-92.113313, 34.622966],\n\t\t\t\t\t\t[-92.078711, 34.729983],\n\t\t\t\t\t\t[-92.070805, 35.011802],\n\t\t\t\t\t\t[-92.121336, 35.012210]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05097\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"097\",\n\t\t\t\t\"NAME\": \"Montgomery\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 779.880000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.710297, 34.745296],\n\t\t\t\t\t\t[-93.394289, 34.743393],\n\t\t\t\t\t\t[-93.407227, 34.396853],\n\t\t\t\t\t\t[-93.408124, 34.339527],\n\t\t\t\t\t\t[-93.433178, 34.339866],\n\t\t\t\t\t\t[-93.439461, 34.340212],\n\t\t\t\t\t\t[-93.439996, 34.340048],\n\t\t\t\t\t\t[-93.478646, 34.340851],\n\t\t\t\t\t\t[-93.935371, 34.350097],\n\t\t\t\t\t\t[-93.930509, 34.665608],\n\t\t\t\t\t\t[-93.870197, 34.712699],\n\t\t\t\t\t\t[-93.710297, 34.745296]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05101\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"101\",\n\t\t\t\t\"NAME\": \"Newton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 820.896000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.944666, 36.115123],\n\t\t\t\t\t\t[-92.951315, 35.724663],\n\t\t\t\t\t\t[-93.164452, 35.728831],\n\t\t\t\t\t\t[-93.519575, 35.734422],\n\t\t\t\t\t\t[-93.519204, 35.763521],\n\t\t\t\t\t\t[-93.523639, 35.881592],\n\t\t\t\t\t\t[-93.450715, 35.967493],\n\t\t\t\t\t\t[-93.479528, 36.125072],\n\t\t\t\t\t\t[-93.300072, 36.121264],\n\t\t\t\t\t\t[-92.948256, 36.115526],\n\t\t\t\t\t\t[-92.944666, 36.115123]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05111\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"111\",\n\t\t\t\t\"NAME\": \"Poinsett\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 758.389000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.036967, 35.708418],\n\t\t\t\t\t\t[-90.286736, 35.699914],\n\t\t\t\t\t\t[-90.287039, 35.439933],\n\t\t\t\t\t\t[-90.286899, 35.438573],\n\t\t\t\t\t\t[-90.500104, 35.441763],\n\t\t\t\t\t\t[-90.502429, 35.441726],\n\t\t\t\t\t\t[-91.039230, 35.444717],\n\t\t\t\t\t\t[-91.036967, 35.708418]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05123\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"123\",\n\t\t\t\t\"NAME\": \"St. Francis\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 634.771000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.408540, 34.904121],\n\t\t\t\t\t\t[-91.099201, 34.911796],\n\t\t\t\t\t\t[-91.099961, 34.867120],\n\t\t\t\t\t\t[-91.152457, 34.911847],\n\t\t\t\t\t\t[-91.149842, 35.002470],\n\t\t\t\t\t\t[-91.045430, 35.001040],\n\t\t\t\t\t\t[-91.042670, 35.148189],\n\t\t\t\t\t\t[-90.502993, 35.144214],\n\t\t\t\t\t\t[-90.400434, 35.148196],\n\t\t\t\t\t\t[-90.408540, 34.904121]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05129\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"129\",\n\t\t\t\t\"NAME\": \"Searcy\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 666.095000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.414324, 35.975865],\n\t\t\t\t\t\t[-92.416719, 35.788590],\n\t\t\t\t\t\t[-92.629837, 35.790823],\n\t\t\t\t\t\t[-92.631207, 35.718365],\n\t\t\t\t\t\t[-92.809763, 35.722401],\n\t\t\t\t\t\t[-92.951315, 35.724663],\n\t\t\t\t\t\t[-92.944666, 36.115123],\n\t\t\t\t\t\t[-92.890695, 36.114132],\n\t\t\t\t\t\t[-92.837776, 36.070124],\n\t\t\t\t\t\t[-92.411502, 36.062756],\n\t\t\t\t\t\t[-92.412542, 36.027228],\n\t\t\t\t\t\t[-92.414324, 35.975865]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13309\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"309\",\n\t\t\t\t\"NAME\": \"Wheeler\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 295.484000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.655486, 32.297561],\n\t\t\t\t\t\t[-82.612876, 32.161549],\n\t\t\t\t\t\t[-82.598068, 32.014429],\n\t\t\t\t\t\t[-82.543655, 31.958914],\n\t\t\t\t\t\t[-82.645659, 31.918883],\n\t\t\t\t\t\t[-82.729112, 32.006878],\n\t\t\t\t\t\t[-82.887657, 32.079891],\n\t\t\t\t\t\t[-82.927865, 32.135274],\n\t\t\t\t\t\t[-82.871790, 32.182730],\n\t\t\t\t\t\t[-82.884803, 32.196072],\n\t\t\t\t\t\t[-82.721964, 32.309283],\n\t\t\t\t\t\t[-82.655486, 32.297561]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13313\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"313\",\n\t\t\t\t\"NAME\": \"Whitfield\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 290.464000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.979860, 34.987647],\n\t\t\t\t\t\t[-84.976973, 34.987669],\n\t\t\t\t\t\t[-84.955623, 34.987830],\n\t\t\t\t\t\t[-84.944420, 34.987864],\n\t\t\t\t\t\t[-84.939306, 34.987916],\n\t\t\t\t\t\t[-84.861314, 34.987791],\n\t\t\t\t\t\t[-84.858032, 34.987746],\n\t\t\t\t\t\t[-84.831799, 34.988004],\n\t\t\t\t\t\t[-84.824010, 34.987707],\n\t\t\t\t\t\t[-84.820478, 34.987913],\n\t\t\t\t\t\t[-84.817279, 34.987753],\n\t\t\t\t\t\t[-84.810742, 34.987615],\n\t\t\t\t\t\t[-84.810477, 34.987607],\n\t\t\t\t\t\t[-84.818715, 34.876950],\n\t\t\t\t\t\t[-84.878499, 34.779610],\n\t\t\t\t\t\t[-84.864945, 34.707356],\n\t\t\t\t\t\t[-84.933722, 34.706799],\n\t\t\t\t\t\t[-84.913456, 34.634128],\n\t\t\t\t\t\t[-85.050446, 34.622482],\n\t\t\t\t\t\t[-85.050847, 34.719980],\n\t\t\t\t\t\t[-85.168851, 34.720279],\n\t\t\t\t\t\t[-85.144789, 34.767639],\n\t\t\t\t\t\t[-85.061648, 34.819478],\n\t\t\t\t\t\t[-84.979860, 34.987647]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13319\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"319\",\n\t\t\t\t\"NAME\": \"Wilkinson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 447.308000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.357685, 32.926141],\n\t\t\t\t\t\t[-83.159585, 33.002803],\n\t\t\t\t\t\t[-83.073648, 32.946562],\n\t\t\t\t\t\t[-82.946966, 32.759358],\n\t\t\t\t\t\t[-82.946366, 32.741258],\n\t\t\t\t\t\t[-82.957066, 32.708318],\n\t\t\t\t\t\t[-82.957570, 32.708198],\n\t\t\t\t\t\t[-83.226536, 32.584201],\n\t\t\t\t\t\t[-83.406990, 32.898220],\n\t\t\t\t\t\t[-83.406820, 32.898446],\n\t\t\t\t\t\t[-83.357685, 32.926141]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US15009\",\n\t\t\t\t\"STATE\": \"15\",\n\t\t\t\t\"COUNTY\": \"009\",\n\t\t\t\t\"NAME\": \"Maui\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1161.521000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-157.014553, 21.185503],\n\t\t\t\t\t\t\t[-156.942135, 21.160173],\n\t\t\t\t\t\t\t[-156.918072, 21.129479],\n\t\t\t\t\t\t\t[-156.898876, 21.147604],\n\t\t\t\t\t\t\t[-156.918248, 21.168279],\n\t\t\t\t\t\t\t[-156.903466, 21.164210],\n\t\t\t\t\t\t\t[-156.898174, 21.165940],\n\t\t\t\t\t\t\t[-156.896130, 21.169561],\n\t\t\t\t\t\t\t[-156.896537, 21.172208],\n\t\t\t\t\t\t\t[-156.867944, 21.164520],\n\t\t\t\t\t\t\t[-156.841592, 21.167926],\n\t\t\t\t\t\t\t[-156.821944, 21.174693],\n\t\t\t\t\t\t\t[-156.771495, 21.180053],\n\t\t\t\t\t\t\t[-156.742231, 21.176214],\n\t\t\t\t\t\t\t[-156.738341, 21.172020],\n\t\t\t\t\t\t\t[-156.736648, 21.161880],\n\t\t\t\t\t\t\t[-156.719386, 21.163911],\n\t\t\t\t\t\t\t[-156.712696, 21.161547],\n\t\t\t\t\t\t\t[-156.714158, 21.152238],\n\t\t\t\t\t\t\t[-156.726033, 21.132360],\n\t\t\t\t\t\t\t[-156.748932, 21.108600],\n\t\t\t\t\t\t\t[-156.775995, 21.089751],\n\t\t\t\t\t\t\t[-156.790815, 21.081686],\n\t\t\t\t\t\t\t[-156.794136, 21.075796],\n\t\t\t\t\t\t\t[-156.835351, 21.063360],\n\t\t\t\t\t\t\t[-156.865795, 21.057801],\n\t\t\t\t\t\t\t[-156.877137, 21.049300],\n\t\t\t\t\t\t\t[-156.891946, 21.051831],\n\t\t\t\t\t\t\t[-156.895170, 21.055771],\n\t\t\t\t\t\t\t[-156.953719, 21.067761],\n\t\t\t\t\t\t\t[-157.002950, 21.083282],\n\t\t\t\t\t\t\t[-157.026170, 21.089015],\n\t\t\t\t\t\t\t[-157.032045, 21.091094],\n\t\t\t\t\t\t\t[-157.037667, 21.097864],\n\t\t\t\t\t\t\t[-157.079696, 21.105835],\n\t\t\t\t\t\t\t[-157.095373, 21.106360],\n\t\t\t\t\t\t\t[-157.125000, 21.102600],\n\t\t\t\t\t\t\t[-157.143483, 21.096632],\n\t\t\t\t\t\t\t[-157.254061, 21.090601],\n\t\t\t\t\t\t\t[-157.298054, 21.096917],\n\t\t\t\t\t\t\t[-157.313343, 21.105755],\n\t\t\t\t\t\t\t[-157.299187, 21.132488],\n\t\t\t\t\t\t\t[-157.299471, 21.135972],\n\t\t\t\t\t\t\t[-157.293774, 21.146127],\n\t\t\t\t\t\t\t[-157.284346, 21.157755],\n\t\t\t\t\t\t\t[-157.276474, 21.163175],\n\t\t\t\t\t\t\t[-157.274504, 21.162762],\n\t\t\t\t\t\t\t[-157.259911, 21.174875],\n\t\t\t\t\t\t\t[-157.254709, 21.181376],\n\t\t\t\t\t\t\t[-157.251007, 21.190952],\n\t\t\t\t\t\t\t[-157.250260, 21.207739],\n\t\t\t\t\t\t\t[-157.256935, 21.215665],\n\t\t\t\t\t\t\t[-157.261457, 21.217661],\n\t\t\t\t\t\t\t[-157.263163, 21.220873],\n\t\t\t\t\t\t\t[-157.260690, 21.225684],\n\t\t\t\t\t\t\t[-157.257085, 21.227268],\n\t\t\t\t\t\t\t[-157.241534, 21.220969],\n\t\t\t\t\t\t\t[-157.226445, 21.220185],\n\t\t\t\t\t\t\t[-157.212082, 21.221848],\n\t\t\t\t\t\t\t[-157.202125, 21.219298],\n\t\t\t\t\t\t\t[-157.192439, 21.207644],\n\t\t\t\t\t\t\t[-157.185553, 21.205602],\n\t\t\t\t\t\t\t[-157.157103, 21.200706],\n\t\t\t\t\t\t\t[-157.148125, 21.200745],\n\t\t\t\t\t\t\t[-157.144627, 21.202555],\n\t\t\t\t\t\t\t[-157.128207, 21.201488],\n\t\t\t\t\t\t\t[-157.113438, 21.197375],\n\t\t\t\t\t\t\t[-157.097971, 21.198012],\n\t\t\t\t\t\t\t[-157.064264, 21.189076],\n\t\t\t\t\t\t\t[-157.053053, 21.188754],\n\t\t\t\t\t\t\t[-157.047757, 21.190739],\n\t\t\t\t\t\t\t[-157.039987, 21.190909],\n\t\t\t\t\t\t\t[-157.014553, 21.185503]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-156.544169, 20.522802],\n\t\t\t\t\t\t\t[-156.550016, 20.520273],\n\t\t\t\t\t\t\t[-156.559994, 20.521892],\n\t\t\t\t\t\t\t[-156.586238, 20.511711],\n\t\t\t\t\t\t\t[-156.603844, 20.524372],\n\t\t\t\t\t\t\t[-156.631143, 20.514943],\n\t\t\t\t\t\t\t[-156.642347, 20.508285],\n\t\t\t\t\t\t\t[-156.647464, 20.512017],\n\t\t\t\t\t\t\t[-156.668809, 20.504738],\n\t\t\t\t\t\t\t[-156.682939, 20.506775],\n\t\t\t\t\t\t\t[-156.703673, 20.527237],\n\t\t\t\t\t\t\t[-156.702265, 20.532451],\n\t\t\t\t\t\t\t[-156.696662, 20.541646],\n\t\t\t\t\t\t\t[-156.680100, 20.557021],\n\t\t\t\t\t\t\t[-156.651567, 20.565574],\n\t\t\t\t\t\t\t[-156.614598, 20.587109],\n\t\t\t\t\t\t\t[-156.610734, 20.593770],\n\t\t\t\t\t\t\t[-156.576871, 20.606570],\n\t\t\t\t\t\t\t[-156.567140, 20.604895],\n\t\t\t\t\t\t\t[-156.553604, 20.594729],\n\t\t\t\t\t\t\t[-156.543034, 20.580115],\n\t\t\t\t\t\t\t[-156.542808, 20.573674],\n\t\t\t\t\t\t\t[-156.548909, 20.568590],\n\t\t\t\t\t\t\t[-156.556021, 20.542657],\n\t\t\t\t\t\t\t[-156.553018, 20.539382],\n\t\t\t\t\t\t\t[-156.540189, 20.534741],\n\t\t\t\t\t\t\t[-156.539643, 20.527644],\n\t\t\t\t\t\t\t[-156.544169, 20.522802]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-156.612012, 21.024770],\n\t\t\t\t\t\t\t[-156.612065, 21.027273],\n\t\t\t\t\t\t\t[-156.606238, 21.034371],\n\t\t\t\t\t\t\t[-156.592256, 21.032880],\n\t\t\t\t\t\t\t[-156.580448, 21.020172],\n\t\t\t\t\t\t\t[-156.562773, 21.016167],\n\t\t\t\t\t\t\t[-156.549813, 21.004939],\n\t\t\t\t\t\t\t[-156.546291, 21.005082],\n\t\t\t\t\t\t\t[-156.528246, 20.967757],\n\t\t\t\t\t\t\t[-156.518707, 20.954662],\n\t\t\t\t\t\t\t[-156.512226, 20.951280],\n\t\t\t\t\t\t\t[-156.510391, 20.940358],\n\t\t\t\t\t\t\t[-156.507913, 20.937886],\n\t\t\t\t\t\t\t[-156.499480, 20.934577],\n\t\t\t\t\t\t\t[-156.495883, 20.928005],\n\t\t\t\t\t\t\t[-156.493263, 20.916011],\n\t\t\t\t\t\t\t[-156.481055, 20.898199],\n\t\t\t\t\t\t\t[-156.474796, 20.894546],\n\t\t\t\t\t\t\t[-156.422668, 20.911631],\n\t\t\t\t\t\t\t[-156.386045, 20.919563],\n\t\t\t\t\t\t\t[-156.374297, 20.927616],\n\t\t\t\t\t\t\t[-156.370729, 20.932669],\n\t\t\t\t\t\t\t[-156.352649, 20.941414],\n\t\t\t\t\t\t\t[-156.345655, 20.941596],\n\t\t\t\t\t\t\t[-156.342365, 20.938737],\n\t\t\t\t\t\t\t[-156.332817, 20.946450],\n\t\t\t\t\t\t\t[-156.324578, 20.950184],\n\t\t\t\t\t\t\t[-156.307198, 20.942739],\n\t\t\t\t\t\t\t[-156.286332, 20.947701],\n\t\t\t\t\t\t\t[-156.275116, 20.937361],\n\t\t\t\t\t\t\t[-156.263107, 20.940888],\n\t\t\t\t\t\t\t[-156.242555, 20.937838],\n\t\t\t\t\t\t\t[-156.230159, 20.931936],\n\t\t\t\t\t\t\t[-156.230089, 20.917864],\n\t\t\t\t\t\t\t[-156.226757, 20.916677],\n\t\t\t\t\t\t\t[-156.222062, 20.918309],\n\t\t\t\t\t\t\t[-156.217953, 20.916573],\n\t\t\t\t\t\t\t[-156.216341, 20.907035],\n\t\t\t\t\t\t\t[-156.173103, 20.876926],\n\t\t\t\t\t\t\t[-156.170458, 20.874605],\n\t\t\t\t\t\t\t[-156.166746, 20.865646],\n\t\t\t\t\t\t\t[-156.132669, 20.861369],\n\t\t\t\t\t\t\t[-156.129381, 20.847513],\n\t\t\t\t\t\t\t[-156.115735, 20.827301],\n\t\t\t\t\t\t\t[-156.100123, 20.828502],\n\t\t\t\t\t\t\t[-156.090291, 20.831872],\n\t\t\t\t\t\t\t[-156.059788, 20.810540],\n\t\t\t\t\t\t\t[-156.033287, 20.808246],\n\t\t\t\t\t\t\t[-156.003532, 20.795545],\n\t\t\t\t\t\t\t[-156.002947, 20.789418],\n\t\t\t\t\t\t\t[-155.987944, 20.776552],\n\t\t\t\t\t\t\t[-155.984587, 20.767496],\n\t\t\t\t\t\t\t[-155.986851, 20.758577],\n\t\t\t\t\t\t\t[-155.985413, 20.744245],\n\t\t\t\t\t\t\t[-155.987216, 20.722717],\n\t\t\t\t\t\t\t[-155.991534, 20.713654],\n\t\t\t\t\t\t\t[-156.001870, 20.698064],\n\t\t\t\t\t\t\t[-156.014150, 20.685681],\n\t\t\t\t\t\t\t[-156.020044, 20.686857],\n\t\t\t\t\t\t\t[-156.030702, 20.682452],\n\t\t\t\t\t\t\t[-156.040341, 20.672719],\n\t\t\t\t\t\t\t[-156.043786, 20.664902],\n\t\t\t\t\t\t\t[-156.053385, 20.654320],\n\t\t\t\t\t\t\t[-156.059753, 20.652044],\n\t\t\t\t\t\t\t[-156.081472, 20.654387],\n\t\t\t\t\t\t\t[-156.089365, 20.648519],\n\t\t\t\t\t\t\t[-156.120985, 20.633685],\n\t\t\t\t\t\t\t[-156.129898, 20.627523],\n\t\t\t\t\t\t\t[-156.142665, 20.623605],\n\t\t\t\t\t\t\t[-156.144588, 20.624032],\n\t\t\t\t\t\t\t[-156.148085, 20.629067],\n\t\t\t\t\t\t\t[-156.156772, 20.629639],\n\t\t\t\t\t\t\t[-156.169732, 20.627358],\n\t\t\t\t\t\t\t[-156.173393, 20.624100],\n\t\t\t\t\t\t\t[-156.184556, 20.629719],\n\t\t\t\t\t\t\t[-156.192938, 20.631769],\n\t\t\t\t\t\t\t[-156.210258, 20.628518],\n\t\t\t\t\t\t\t[-156.225338, 20.622940],\n\t\t\t\t\t\t\t[-156.236145, 20.615950],\n\t\t\t\t\t\t\t[-156.265921, 20.601629],\n\t\t\t\t\t\t\t[-156.284391, 20.596488],\n\t\t\t\t\t\t\t[-156.288037, 20.592030],\n\t\t\t\t\t\t\t[-156.293454, 20.588783],\n\t\t\t\t\t\t\t[-156.302692, 20.586199],\n\t\t\t\t\t\t\t[-156.322944, 20.588273],\n\t\t\t\t\t\t\t[-156.351716, 20.586970],\n\t\t\t\t\t\t\t[-156.359634, 20.581977],\n\t\t\t\t\t\t\t[-156.370725, 20.578760],\n\t\t\t\t\t\t\t[-156.377633, 20.578427],\n\t\t\t\t\t\t\t[-156.415313, 20.586099],\n\t\t\t\t\t\t\t[-156.417523, 20.589728],\n\t\t\t\t\t\t\t[-156.415746, 20.594044],\n\t\t\t\t\t\t\t[-156.417799, 20.598682],\n\t\t\t\t\t\t\t[-156.423141, 20.602079],\n\t\t\t\t\t\t\t[-156.427708, 20.598873],\n\t\t\t\t\t\t\t[-156.431872, 20.598143],\n\t\t\t\t\t\t\t[-156.438385, 20.601337],\n\t\t\t\t\t\t\t[-156.444242, 20.607941],\n\t\t\t\t\t\t\t[-156.442884, 20.613842],\n\t\t\t\t\t\t\t[-156.450651, 20.642212],\n\t\t\t\t\t\t\t[-156.445894, 20.649270],\n\t\t\t\t\t\t\t[-156.443673, 20.656018],\n\t\t\t\t\t\t\t[-156.448656, 20.704739],\n\t\t\t\t\t\t\t[-156.451038, 20.725469],\n\t\t\t\t\t\t\t[-156.452895, 20.731287],\n\t\t\t\t\t\t\t[-156.458438, 20.736676],\n\t\t\t\t\t\t\t[-156.462242, 20.753952],\n\t\t\t\t\t\t\t[-156.462058, 20.772571],\n\t\t\t\t\t\t\t[-156.464043, 20.781667],\n\t\t\t\t\t\t\t[-156.473562, 20.790756],\n\t\t\t\t\t\t\t[-156.489496, 20.798339],\n\t\t\t\t\t\t\t[-156.501688, 20.799933],\n\t\t\t\t\t\t\t[-156.506026, 20.799463],\n\t\t\t\t\t\t\t[-156.515994, 20.794234],\n\t\t\t\t\t\t\t[-156.525215, 20.780821],\n\t\t\t\t\t\t\t[-156.537752, 20.778408],\n\t\t\t\t\t\t\t[-156.631794, 20.821240],\n\t\t\t\t\t\t\t[-156.678634, 20.870541],\n\t\t\t\t\t\t\t[-156.688969, 20.888673],\n\t\t\t\t\t\t\t[-156.687804, 20.890720],\n\t\t\t\t\t\t\t[-156.688132, 20.906325],\n\t\t\t\t\t\t\t[-156.691334, 20.912440],\n\t\t\t\t\t\t\t[-156.697418, 20.916368],\n\t\t\t\t\t\t\t[-156.699890, 20.920629],\n\t\t\t\t\t\t\t[-156.694110, 20.952708],\n\t\t\t\t\t\t\t[-156.680905, 20.980262],\n\t\t\t\t\t\t\t[-156.665514, 21.007054],\n\t\t\t\t\t\t\t[-156.652419, 21.008994],\n\t\t\t\t\t\t\t[-156.645966, 21.014416],\n\t\t\t\t\t\t\t[-156.642592, 21.019936],\n\t\t\t\t\t\t\t[-156.644167, 21.022312],\n\t\t\t\t\t\t\t[-156.642809, 21.027583],\n\t\t\t\t\t\t\t[-156.619581, 21.027793],\n\t\t\t\t\t\t\t[-156.612012, 21.024770]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-157.010001, 20.929757],\n\t\t\t\t\t\t\t[-156.989813, 20.932127],\n\t\t\t\t\t\t\t[-156.971604, 20.926254],\n\t\t\t\t\t\t\t[-156.937529, 20.925274],\n\t\t\t\t\t\t\t[-156.918450, 20.922546],\n\t\t\t\t\t\t\t[-156.897169, 20.915395],\n\t\t\t\t\t\t\t[-156.837047, 20.863575],\n\t\t\t\t\t\t\t[-156.825237, 20.850731],\n\t\t\t\t\t\t\t[-156.809576, 20.826036],\n\t\t\t\t\t\t\t[-156.808469, 20.820396],\n\t\t\t\t\t\t\t[-156.809463, 20.809169],\n\t\t\t\t\t\t\t[-156.817427, 20.794606],\n\t\t\t\t\t\t\t[-156.838321, 20.764575],\n\t\t\t\t\t\t\t[-156.846413, 20.760201],\n\t\t\t\t\t\t\t[-156.851481, 20.760069],\n\t\t\t\t\t\t\t[-156.869753, 20.754701],\n\t\t\t\t\t\t\t[-156.890295, 20.744855],\n\t\t\t\t\t\t\t[-156.909081, 20.739533],\n\t\t\t\t\t\t\t[-156.949009, 20.738997],\n\t\t\t\t\t\t\t[-156.967890, 20.735080],\n\t\t\t\t\t\t\t[-156.984747, 20.756677],\n\t\t\t\t\t\t\t[-156.994001, 20.786671],\n\t\t\t\t\t\t\t[-156.988933, 20.815496],\n\t\t\t\t\t\t\t[-156.991834, 20.826603],\n\t\t\t\t\t\t\t[-157.006243, 20.849603],\n\t\t\t\t\t\t\t[-157.010911, 20.854476],\n\t\t\t\t\t\t\t[-157.054552, 20.877219],\n\t\t\t\t\t\t\t[-157.059663, 20.884634],\n\t\t\t\t\t\t\t[-157.061128, 20.890635],\n\t\t\t\t\t\t\t[-157.062511, 20.904385],\n\t\t\t\t\t\t\t[-157.059130, 20.913407],\n\t\t\t\t\t\t\t[-157.035789, 20.927078],\n\t\t\t\t\t\t\t[-157.025626, 20.929528],\n\t\t\t\t\t\t\t[-157.010001, 20.929757]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US16015\",\n\t\t\t\t\"STATE\": \"16\",\n\t\t\t\t\"COUNTY\": \"015\",\n\t\t\t\t\"NAME\": \"Boise\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1899.237000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-115.975767, 43.591338],\n\t\t\t\t\t\t[-116.122476, 43.691256],\n\t\t\t\t\t\t[-116.281687, 43.806937],\n\t\t\t\t\t\t[-116.273069, 44.151227],\n\t\t\t\t\t\t[-116.212132, 44.151354],\n\t\t\t\t\t\t[-116.112427, 44.147834],\n\t\t\t\t\t\t[-116.103075, 44.236624],\n\t\t\t\t\t\t[-115.520150, 44.235196],\n\t\t\t\t\t\t[-115.401528, 44.259374],\n\t\t\t\t\t\t[-115.294462, 44.339411],\n\t\t\t\t\t\t[-115.178952, 44.296380],\n\t\t\t\t\t\t[-115.167118, 44.202711],\n\t\t\t\t\t\t[-115.026206, 44.158417],\n\t\t\t\t\t\t[-115.046470, 44.056242],\n\t\t\t\t\t\t[-114.990750, 43.949725],\n\t\t\t\t\t\t[-115.067174, 43.940350],\n\t\t\t\t\t\t[-115.147722, 44.002364],\n\t\t\t\t\t\t[-115.182416, 44.092262],\n\t\t\t\t\t\t[-115.230685, 44.098685],\n\t\t\t\t\t\t[-115.197061, 44.068328],\n\t\t\t\t\t\t[-115.287258, 43.935501],\n\t\t\t\t\t\t[-115.513842, 43.880723],\n\t\t\t\t\t\t[-115.547540, 43.792655],\n\t\t\t\t\t\t[-115.592970, 43.798087],\n\t\t\t\t\t\t[-115.645864, 43.700272],\n\t\t\t\t\t\t[-115.698219, 43.665088],\n\t\t\t\t\t\t[-115.975767, 43.591338]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US16021\",\n\t\t\t\t\"STATE\": \"16\",\n\t\t\t\t\"COUNTY\": \"021\",\n\t\t\t\t\"NAME\": \"Boundary\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1268.560000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-117.032351, 48.999188],\n\t\t\t\t\t\t[-116.757185, 48.999791],\n\t\t\t\t\t\t[-116.757234, 48.999943],\n\t\t\t\t\t\t[-116.049193, 49.000912],\n\t\t\t\t\t\t[-116.049025, 48.958351],\n\t\t\t\t\t\t[-116.049023, 48.957947],\n\t\t\t\t\t\t[-116.049226, 48.502058],\n\t\t\t\t\t\t[-116.784843, 48.500617],\n\t\t\t\t\t\t[-116.785141, 48.847428],\n\t\t\t\t\t\t[-117.033177, 48.846563],\n\t\t\t\t\t\t[-117.032351, 48.999188]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US16045\",\n\t\t\t\t\"STATE\": \"16\",\n\t\t\t\t\"COUNTY\": \"045\",\n\t\t\t\t\"NAME\": \"Gem\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 560.900000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-116.157096, 44.498966],\n\t\t\t\t\t\t[-116.152289, 44.324388],\n\t\t\t\t\t\t[-116.212071, 44.324277],\n\t\t\t\t\t\t[-116.212132, 44.151354],\n\t\t\t\t\t\t[-116.273069, 44.151227],\n\t\t\t\t\t\t[-116.281687, 43.806937],\n\t\t\t\t\t\t[-116.512559, 43.807216],\n\t\t\t\t\t\t[-116.707332, 43.807279],\n\t\t\t\t\t\t[-116.712672, 43.807161],\n\t\t\t\t\t\t[-116.712591, 43.981259],\n\t\t\t\t\t\t[-116.572245, 43.980334],\n\t\t\t\t\t\t[-116.532176, 44.066060],\n\t\t\t\t\t\t[-116.452526, 44.065345],\n\t\t\t\t\t\t[-116.452012, 44.151417],\n\t\t\t\t\t\t[-116.358532, 44.151066],\n\t\t\t\t\t\t[-116.299757, 44.444107],\n\t\t\t\t\t\t[-116.157096, 44.498966]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US16051\",\n\t\t\t\t\"STATE\": \"16\",\n\t\t\t\t\"COUNTY\": \"051\",\n\t\t\t\t\"NAME\": \"Jefferson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1093.501000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-111.976833, 43.927431],\n\t\t\t\t\t\t[-111.983381, 43.754138],\n\t\t\t\t\t\t[-111.932811, 43.766845],\n\t\t\t\t\t\t[-111.626438, 43.626748],\n\t\t\t\t\t\t[-112.519945, 43.626560],\n\t\t\t\t\t\t[-112.697408, 43.623011],\n\t\t\t\t\t\t[-112.695027, 43.971940],\n\t\t\t\t\t\t[-112.694674, 44.058454],\n\t\t\t\t\t\t[-112.155950, 44.057677],\n\t\t\t\t\t\t[-112.156370, 43.971382],\n\t\t\t\t\t\t[-111.977090, 43.970929],\n\t\t\t\t\t\t[-111.976833, 43.927431]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US16057\",\n\t\t\t\t\"STATE\": \"16\",\n\t\t\t\t\"COUNTY\": \"057\",\n\t\t\t\t\"NAME\": \"Latah\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1075.996000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-117.039783, 46.541785],\n\t\t\t\t\t\t[-117.039828, 46.815443],\n\t\t\t\t\t\t[-117.039657, 46.825798],\n\t\t\t\t\t\t[-117.039821, 47.127265],\n\t\t\t\t\t\t[-116.835438, 47.032576],\n\t\t\t\t\t\t[-116.329586, 47.022442],\n\t\t\t\t\t\t[-116.329587, 46.934502],\n\t\t\t\t\t\t[-116.329279, 46.627900],\n\t\t\t\t\t\t[-116.455881, 46.629097],\n\t\t\t\t\t\t[-116.625985, 46.628041],\n\t\t\t\t\t\t[-116.719183, 46.542789],\n\t\t\t\t\t\t[-117.039783, 46.541785]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US16067\",\n\t\t\t\t\"STATE\": \"16\",\n\t\t\t\t\"COUNTY\": \"067\",\n\t\t\t\t\"NAME\": \"Minidoka\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 757.591000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-113.931799, 42.535275],\n\t\t\t\t\t\t[-113.932904, 42.765032],\n\t\t\t\t\t\t[-113.763862, 42.764508],\n\t\t\t\t\t\t[-113.713928, 42.849733],\n\t\t\t\t\t\t[-113.714701, 43.200030],\n\t\t\t\t\t\t[-113.413693, 43.199785],\n\t\t\t\t\t\t[-113.413026, 42.849250],\n\t\t\t\t\t\t[-113.472155, 42.849218],\n\t\t\t\t\t\t[-113.472177, 42.669251],\n\t\t\t\t\t\t[-113.557609, 42.656416],\n\t\t\t\t\t\t[-113.655338, 42.535663],\n\t\t\t\t\t\t[-113.779811, 42.556870],\n\t\t\t\t\t\t[-113.931799, 42.535275]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US16081\",\n\t\t\t\t\"STATE\": \"16\",\n\t\t\t\t\"COUNTY\": \"081\",\n\t\t\t\t\"NAME\": \"Teton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 449.456000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-111.048107, 43.983096],\n\t\t\t\t\t\t[-111.046715, 43.815832],\n\t\t\t\t\t\t[-111.046340, 43.726957],\n\t\t\t\t\t\t[-111.046435, 43.726545],\n\t\t\t\t\t\t[-111.046421, 43.722059],\n\t\t\t\t\t\t[-111.046110, 43.687848],\n\t\t\t\t\t\t[-111.046051, 43.685812],\n\t\t\t\t\t\t[-111.046118, 43.684902],\n\t\t\t\t\t\t[-111.045880, 43.681033],\n\t\t\t\t\t\t[-111.045706, 43.659112],\n\t\t\t\t\t\t[-111.045205, 43.501136],\n\t\t\t\t\t\t[-111.199111, 43.539686],\n\t\t\t\t\t\t[-111.243885, 43.621694],\n\t\t\t\t\t\t[-111.399915, 43.622015],\n\t\t\t\t\t\t[-111.398883, 43.923086],\n\t\t\t\t\t\t[-111.187110, 43.932202],\n\t\t\t\t\t\t[-111.048107, 43.983096]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17005\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"005\",\n\t\t\t\t\"NAME\": \"Bond\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 380.279000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.250447, 39.028145],\n\t\t\t\t\t\t[-89.254237, 38.742019],\n\t\t\t\t\t\t[-89.481642, 38.740532],\n\t\t\t\t\t\t[-89.597321, 38.743236],\n\t\t\t\t\t\t[-89.599593, 38.874530],\n\t\t\t\t\t\t[-89.636874, 38.874278],\n\t\t\t\t\t\t[-89.639265, 38.999129],\n\t\t\t\t\t\t[-89.586088, 39.028246],\n\t\t\t\t\t\t[-89.250447, 39.028145]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17009\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"009\",\n\t\t\t\t\"NAME\": \"Brown\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 305.607000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.513747, 39.987891],\n\t\t\t\t\t\t[-90.536721, 39.923027],\n\t\t\t\t\t\t[-90.583534, 39.876750],\n\t\t\t\t\t\t[-90.582435, 39.854574],\n\t\t\t\t\t\t[-90.571754, 39.839326],\n\t\t\t\t\t\t[-90.893651, 39.840920],\n\t\t\t\t\t\t[-90.916609, 39.845075],\n\t\t\t\t\t\t[-90.913616, 40.104452],\n\t\t\t\t\t\t[-90.695884, 40.103794],\n\t\t\t\t\t\t[-90.607134, 39.981658],\n\t\t\t\t\t\t[-90.513747, 39.987891]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17019\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"019\",\n\t\t\t\t\"NAME\": \"Champaign\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 996.266000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.459957, 40.398850],\n\t\t\t\t\t\t[-87.932858, 40.399401],\n\t\t\t\t\t\t[-87.937645, 39.879803],\n\t\t\t\t\t\t[-88.462207, 39.879092],\n\t\t\t\t\t\t[-88.460418, 40.281935],\n\t\t\t\t\t\t[-88.459957, 40.398850]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17029\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"029\",\n\t\t\t\t\"NAME\": \"Coles\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 508.291000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.472073, 39.651588],\n\t\t\t\t\t\t[-88.063437, 39.652555],\n\t\t\t\t\t\t[-87.966600, 39.685928],\n\t\t\t\t\t\t[-87.960179, 39.481309],\n\t\t\t\t\t\t[-88.014205, 39.480762],\n\t\t\t\t\t\t[-88.012121, 39.378968],\n\t\t\t\t\t\t[-88.470830, 39.374515],\n\t\t\t\t\t\t[-88.470505, 39.447041],\n\t\t\t\t\t\t[-88.472073, 39.651588]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17035\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"035\",\n\t\t\t\t\"NAME\": \"Cumberland\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 346.024000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.012121, 39.378968],\n\t\t\t\t\t\t[-88.007766, 39.173925],\n\t\t\t\t\t\t[-88.360654, 39.171118],\n\t\t\t\t\t\t[-88.470865, 39.171463],\n\t\t\t\t\t\t[-88.470906, 39.215029],\n\t\t\t\t\t\t[-88.471147, 39.220615],\n\t\t\t\t\t\t[-88.470830, 39.374515],\n\t\t\t\t\t\t[-88.012121, 39.378968]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17049\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"049\",\n\t\t\t\t\"NAME\": \"Effingham\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 478.777000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.360654, 39.171118],\n\t\t\t\t\t\t[-88.361745, 38.910847],\n\t\t\t\t\t\t[-88.620486, 38.915303],\n\t\t\t\t\t\t[-88.693531, 38.914617],\n\t\t\t\t\t\t[-88.806794, 38.911656],\n\t\t\t\t\t\t[-88.805325, 39.216263],\n\t\t\t\t\t\t[-88.804484, 39.216131],\n\t\t\t\t\t\t[-88.470906, 39.215029],\n\t\t\t\t\t\t[-88.470865, 39.171463],\n\t\t\t\t\t\t[-88.360654, 39.171118]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17055\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"055\",\n\t\t\t\t\"NAME\": \"Franklin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 408.889000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.151176, 37.861999],\n\t\t\t\t\t\t[-89.150834, 37.950196],\n\t\t\t\t\t\t[-89.177597, 37.950311],\n\t\t\t\t\t\t[-89.129637, 38.124747],\n\t\t\t\t\t\t[-88.704606, 38.125195],\n\t\t\t\t\t\t[-88.706622, 37.906797],\n\t\t\t\t\t\t[-88.706665, 37.888866],\n\t\t\t\t\t\t[-88.706747, 37.887706],\n\t\t\t\t\t\t[-88.706688, 37.886951],\n\t\t\t\t\t\t[-88.706760, 37.863338],\n\t\t\t\t\t\t[-89.151176, 37.861999]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17065\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"065\",\n\t\t\t\t\"NAME\": \"Hamilton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 434.665000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.485265, 37.907032],\n\t\t\t\t\t\t[-88.706622, 37.906797],\n\t\t\t\t\t\t[-88.704606, 38.125195],\n\t\t\t\t\t\t[-88.702391, 38.256661],\n\t\t\t\t\t\t[-88.370491, 38.255413],\n\t\t\t\t\t\t[-88.374520, 37.908432],\n\t\t\t\t\t\t[-88.374530, 37.907678],\n\t\t\t\t\t\t[-88.375019, 37.907750],\n\t\t\t\t\t\t[-88.484314, 37.906945],\n\t\t\t\t\t\t[-88.485265, 37.907032]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18051\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"051\",\n\t\t\t\t\"NAME\": \"Gibson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 487.486000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.462892, 38.533519],\n\t\t\t\t\t\t[-87.407583, 38.375501],\n\t\t\t\t\t\t[-87.315960, 38.375293],\n\t\t\t\t\t\t[-87.316893, 38.246077],\n\t\t\t\t\t\t[-87.317030, 38.201753],\n\t\t\t\t\t\t[-87.466744, 38.201286],\n\t\t\t\t\t\t[-87.467284, 38.165403],\n\t\t\t\t\t\t[-87.688374, 38.168419],\n\t\t\t\t\t\t[-87.799169, 38.228580],\n\t\t\t\t\t\t[-87.955344, 38.230008],\n\t\t\t\t\t\t[-87.951715, 38.239632],\n\t\t\t\t\t\t[-87.923958, 38.258409],\n\t\t\t\t\t\t[-87.863032, 38.280172],\n\t\t\t\t\t\t[-87.750028, 38.403027],\n\t\t\t\t\t\t[-87.740001, 38.415698],\n\t\t\t\t\t\t[-87.599317, 38.450721],\n\t\t\t\t\t\t[-87.462892, 38.533519]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18059\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"059\",\n\t\t\t\t\"NAME\": \"Hancock\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 306.016000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.938077, 39.887183],\n\t\t\t\t\t\t[-85.938084, 39.923196],\n\t\t\t\t\t\t[-85.937587, 39.927137],\n\t\t\t\t\t\t[-85.862395, 39.928943],\n\t\t\t\t\t\t[-85.862489, 39.943618],\n\t\t\t\t\t\t[-85.576192, 39.945756],\n\t\t\t\t\t\t[-85.596916, 39.786519],\n\t\t\t\t\t\t[-85.633491, 39.786177],\n\t\t\t\t\t\t[-85.633228, 39.698462],\n\t\t\t\t\t\t[-85.951721, 39.697136],\n\t\t\t\t\t\t[-85.951699, 39.726419],\n\t\t\t\t\t\t[-85.938077, 39.887183]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18069\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"069\",\n\t\t\t\t\"NAME\": \"Huntington\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 382.651000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.643841, 41.002305],\n\t\t\t\t\t\t[-85.335643, 41.005250],\n\t\t\t\t\t\t[-85.335374, 41.002047],\n\t\t\t\t\t\t[-85.336030, 40.917082],\n\t\t\t\t\t\t[-85.334667, 40.654413],\n\t\t\t\t\t\t[-85.448825, 40.653607],\n\t\t\t\t\t\t[-85.638587, 40.653129],\n\t\t\t\t\t\t[-85.643841, 41.002305]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18079\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"079\",\n\t\t\t\t\"NAME\": \"Jennings\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 376.583000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.683839, 38.815406],\n\t\t\t\t\t\t[-85.795357, 38.807508],\n\t\t\t\t\t\t[-85.798804, 39.068536],\n\t\t\t\t\t\t[-85.799834, 39.128897],\n\t\t\t\t\t\t[-85.686783, 39.130859],\n\t\t\t\t\t\t[-85.566320, 39.132761],\n\t\t\t\t\t\t[-85.440054, 39.195617],\n\t\t\t\t\t\t[-85.444897, 38.912998],\n\t\t\t\t\t\t[-85.683839, 38.815406]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18085\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"085\",\n\t\t\t\t\"NAME\": \"Kosciusko\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 531.381000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.651928, 41.294776],\n\t\t\t\t\t\t[-85.686574, 41.178376],\n\t\t\t\t\t\t[-85.684181, 41.046716],\n\t\t\t\t\t\t[-85.927265, 41.042574],\n\t\t\t\t\t\t[-85.945561, 41.042876],\n\t\t\t\t\t\t[-86.075939, 41.084878],\n\t\t\t\t\t\t[-86.077551, 41.172868],\n\t\t\t\t\t\t[-86.054047, 41.173147],\n\t\t\t\t\t\t[-86.059230, 41.435812],\n\t\t\t\t\t\t[-85.653507, 41.436856],\n\t\t\t\t\t\t[-85.651928, 41.294776]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18095\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"095\",\n\t\t\t\t\"NAME\": \"Madison\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 451.915000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.576192, 39.945756],\n\t\t\t\t\t\t[-85.862489, 39.943618],\n\t\t\t\t\t\t[-85.861903, 40.218936],\n\t\t\t\t\t\t[-85.861160, 40.225310],\n\t\t\t\t\t\t[-85.862296, 40.378367],\n\t\t\t\t\t\t[-85.587859, 40.379757],\n\t\t\t\t\t\t[-85.578589, 40.379524],\n\t\t\t\t\t\t[-85.576197, 40.077143],\n\t\t\t\t\t\t[-85.576192, 39.945756]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18105\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"105\",\n\t\t\t\t\"NAME\": \"Monroe\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 394.509000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.573548, 38.992147],\n\t\t\t\t\t\t[-86.682277, 38.992404],\n\t\t\t\t\t\t[-86.683002, 39.165746],\n\t\t\t\t\t\t[-86.685610, 39.336043],\n\t\t\t\t\t\t[-86.630818, 39.346948],\n\t\t\t\t\t\t[-86.630844, 39.340755],\n\t\t\t\t\t\t[-86.574280, 39.339681],\n\t\t\t\t\t\t[-86.381395, 39.339752],\n\t\t\t\t\t\t[-86.370066, 39.048375],\n\t\t\t\t\t\t[-86.318133, 39.048810],\n\t\t\t\t\t\t[-86.317799, 39.002733],\n\t\t\t\t\t\t[-86.317380, 39.000050],\n\t\t\t\t\t\t[-86.317474, 38.990870],\n\t\t\t\t\t\t[-86.573548, 38.992147]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18115\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"115\",\n\t\t\t\t\"NAME\": \"Ohio\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 86.140000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.849445, 39.000923],\n\t\t\t\t\t\t[-84.813182, 38.930583],\n\t\t\t\t\t\t[-84.870749, 38.900905],\n\t\t\t\t\t\t[-85.140312, 38.903194],\n\t\t\t\t\t\t[-85.135832, 38.929578],\n\t\t\t\t\t\t[-85.132508, 38.948055],\n\t\t\t\t\t\t[-84.878614, 39.030296],\n\t\t\t\t\t\t[-84.849445, 39.000923]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18125\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"125\",\n\t\t\t\t\"NAME\": \"Pike\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 334.238000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.316893, 38.246077],\n\t\t\t\t\t\t[-87.315960, 38.375293],\n\t\t\t\t\t\t[-87.407583, 38.375501],\n\t\t\t\t\t\t[-87.462892, 38.533519],\n\t\t\t\t\t\t[-87.242097, 38.544930],\n\t\t\t\t\t\t[-87.072369, 38.514700],\n\t\t\t\t\t\t[-87.073067, 38.232596],\n\t\t\t\t\t\t[-87.316893, 38.246077]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18131\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"131\",\n\t\t\t\t\"NAME\": \"Pulaski\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 433.649000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.775850, 40.912460],\n\t\t\t\t\t\t[-86.930759, 40.912418],\n\t\t\t\t\t\t[-86.930314, 41.170899],\n\t\t\t\t\t\t[-86.930170, 41.172318],\n\t\t\t\t\t\t[-86.467046, 41.171442],\n\t\t\t\t\t\t[-86.468509, 40.909889],\n\t\t\t\t\t\t[-86.581532, 40.910925],\n\t\t\t\t\t\t[-86.775850, 40.912460]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18139\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"139\",\n\t\t\t\t\"NAME\": \"Rush\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 408.124000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.298110, 39.525476],\n\t\t\t\t\t\t[-85.298623, 39.520258],\n\t\t\t\t\t\t[-85.297575, 39.453275],\n\t\t\t\t\t\t[-85.629327, 39.452750],\n\t\t\t\t\t\t[-85.632525, 39.697504],\n\t\t\t\t\t\t[-85.633228, 39.698462],\n\t\t\t\t\t\t[-85.633491, 39.786177],\n\t\t\t\t\t\t[-85.596916, 39.786519],\n\t\t\t\t\t\t[-85.301584, 39.787579],\n\t\t\t\t\t\t[-85.298110, 39.525476]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18153\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"153\",\n\t\t\t\t\"NAME\": \"Sullivan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 447.142000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.527910, 38.908209],\n\t\t\t\t\t\t[-87.518826, 38.923205],\n\t\t\t\t\t\t[-87.512187, 38.954417],\n\t\t\t\t\t\t[-87.572588, 39.057286],\n\t\t\t\t\t\t[-87.614881, 39.102655],\n\t\t\t\t\t\t[-87.658746, 39.135997],\n\t\t\t\t\t\t[-87.651719, 39.150602],\n\t\t\t\t\t\t[-87.642174, 39.157097],\n\t\t\t\t\t\t[-87.628727, 39.157427],\n\t\t\t\t\t\t[-87.605173, 39.185897],\n\t\t\t\t\t\t[-87.587507, 39.249282],\n\t\t\t\t\t\t[-87.593486, 39.247452],\n\t\t\t\t\t\t[-87.604076, 39.259459],\n\t\t\t\t\t\t[-87.240379, 39.259064],\n\t\t\t\t\t\t[-87.240737, 39.171773],\n\t\t\t\t\t\t[-87.241027, 38.907874],\n\t\t\t\t\t\t[-87.528108, 38.908027],\n\t\t\t\t\t\t[-87.527910, 38.908209]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18173\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"173\",\n\t\t\t\t\"NAME\": \"Warrick\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 384.815000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.269561, 37.877155],\n\t\t\t\t\t\t[-87.302324, 37.898445],\n\t\t\t\t\t\t[-87.380247, 37.935596],\n\t\t\t\t\t\t[-87.402632, 37.942267],\n\t\t\t\t\t\t[-87.418585, 37.944763],\n\t\t\t\t\t\t[-87.436859, 37.944192],\n\t\t\t\t\t\t[-87.450458, 37.941451],\n\t\t\t\t\t\t[-87.451185, 37.941034],\n\t\t\t\t\t\t[-87.467284, 38.165403],\n\t\t\t\t\t\t[-87.466744, 38.201286],\n\t\t\t\t\t\t[-87.317030, 38.201753],\n\t\t\t\t\t\t[-87.316893, 38.246077],\n\t\t\t\t\t\t[-87.073067, 38.232596],\n\t\t\t\t\t\t[-87.073141, 38.203821],\n\t\t\t\t\t\t[-87.017490, 38.203580],\n\t\t\t\t\t\t[-87.017453, 38.118301],\n\t\t\t\t\t\t[-87.072332, 38.118280],\n\t\t\t\t\t\t[-87.268003, 37.924766],\n\t\t\t\t\t\t[-87.269561, 37.877155]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18179\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"179\",\n\t\t\t\t\"NAME\": \"Wells\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 368.087000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.336030, 40.917082],\n\t\t\t\t\t\t[-85.167063, 40.916585],\n\t\t\t\t\t\t[-85.073861, 40.917823],\n\t\t\t\t\t\t[-85.068479, 40.568240],\n\t\t\t\t\t\t[-85.201146, 40.567242],\n\t\t\t\t\t\t[-85.447014, 40.566929],\n\t\t\t\t\t\t[-85.448993, 40.651271],\n\t\t\t\t\t\t[-85.448825, 40.653607],\n\t\t\t\t\t\t[-85.334667, 40.654413],\n\t\t\t\t\t\t[-85.336030, 40.917082]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18183\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"183\",\n\t\t\t\t\"NAME\": \"Whitley\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 335.569000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.651928, 41.294776],\n\t\t\t\t\t\t[-85.537180, 41.266157],\n\t\t\t\t\t\t[-85.307781, 41.264158],\n\t\t\t\t\t\t[-85.338552, 41.179120],\n\t\t\t\t\t\t[-85.335643, 41.005250],\n\t\t\t\t\t\t[-85.643841, 41.002305],\n\t\t\t\t\t\t[-85.683198, 41.001909],\n\t\t\t\t\t\t[-85.684181, 41.046716],\n\t\t\t\t\t\t[-85.686574, 41.178376],\n\t\t\t\t\t\t[-85.651928, 41.294776]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19009\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"009\",\n\t\t\t\t\"NAME\": \"Audubon\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 442.961000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.700629, 41.504148],\n\t\t\t\t\t\t[-95.040770, 41.504690],\n\t\t\t\t\t\t[-95.040748, 41.602152],\n\t\t\t\t\t\t[-95.092520, 41.602055],\n\t\t\t\t\t\t[-95.092861, 41.863374],\n\t\t\t\t\t\t[-94.744876, 41.862394],\n\t\t\t\t\t\t[-94.744204, 41.602185],\n\t\t\t\t\t\t[-94.700629, 41.504148]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19017\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"017\",\n\t\t\t\t\"NAME\": \"Bremer\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 435.477000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.554211, 42.907112],\n\t\t\t\t\t\t[-92.081568, 42.907013],\n\t\t\t\t\t\t[-92.081661, 42.642056],\n\t\t\t\t\t\t[-92.554492, 42.642314],\n\t\t\t\t\t\t[-92.554211, 42.907112]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19021\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"021\",\n\t\t\t\t\"NAME\": \"Buena Vista\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 574.915000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.913890, 42.909700],\n\t\t\t\t\t\t[-94.914485, 42.560309],\n\t\t\t\t\t\t[-95.388010, 42.561742],\n\t\t\t\t\t\t[-95.388182, 42.909897],\n\t\t\t\t\t\t[-94.913890, 42.909700]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19031\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"031\",\n\t\t\t\t\"NAME\": \"Cedar\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 579.436000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.366079, 41.860068],\n\t\t\t\t\t\t[-91.365789, 41.947410],\n\t\t\t\t\t\t[-90.898484, 41.946245],\n\t\t\t\t\t\t[-90.898373, 41.771392],\n\t\t\t\t\t\t[-90.899853, 41.597133],\n\t\t\t\t\t\t[-91.366448, 41.598373],\n\t\t\t\t\t\t[-91.366079, 41.860068]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19039\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"039\",\n\t\t\t\t\"NAME\": \"Clarke\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 431.167000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.014189, 41.156762],\n\t\t\t\t\t\t[-93.898813, 41.156610],\n\t\t\t\t\t\t[-93.789196, 41.162035],\n\t\t\t\t\t\t[-93.557556, 41.161271],\n\t\t\t\t\t\t[-93.556540, 40.898295],\n\t\t\t\t\t\t[-94.014803, 40.897031],\n\t\t\t\t\t\t[-94.014189, 41.156762]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17073\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"073\",\n\t\t\t\t\"NAME\": \"Henry\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 822.985000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.856902, 41.408836],\n\t\t\t\t\t\t[-89.856619, 41.320956],\n\t\t\t\t\t\t[-89.857571, 41.234768],\n\t\t\t\t\t\t[-89.857798, 41.234483],\n\t\t\t\t\t\t[-89.868384, 41.148955],\n\t\t\t\t\t\t[-89.984559, 41.149366],\n\t\t\t\t\t\t[-90.323178, 41.151288],\n\t\t\t\t\t\t[-90.437657, 41.151252],\n\t\t\t\t\t\t[-90.433771, 41.326983],\n\t\t\t\t\t\t[-90.432130, 41.456234],\n\t\t\t\t\t\t[-90.332657, 41.514001],\n\t\t\t\t\t\t[-90.196535, 41.540126],\n\t\t\t\t\t\t[-90.185609, 41.584653],\n\t\t\t\t\t\t[-89.862351, 41.584005],\n\t\t\t\t\t\t[-89.856902, 41.408836]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17077\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"077\",\n\t\t\t\t\"NAME\": \"Jackson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 584.081000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.521407, 37.572143],\n\t\t\t\t\t\t[-89.521274, 37.578971],\n\t\t\t\t\t\t[-89.518007, 37.583962],\n\t\t\t\t\t\t[-89.511936, 37.584564],\n\t\t\t\t\t\t[-89.506563, 37.625050],\n\t\t\t\t\t\t[-89.515436, 37.671370],\n\t\t\t\t\t\t[-89.671255, 37.801144],\n\t\t\t\t\t\t[-89.674304, 37.803179],\n\t\t\t\t\t\t[-89.595084, 37.955310],\n\t\t\t\t\t\t[-89.177597, 37.950311],\n\t\t\t\t\t\t[-89.150834, 37.950196],\n\t\t\t\t\t\t[-89.151176, 37.861999],\n\t\t\t\t\t\t[-89.153668, 37.600469],\n\t\t\t\t\t\t[-89.450594, 37.600022],\n\t\t\t\t\t\t[-89.521407, 37.572143]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17079\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"079\",\n\t\t\t\t\"NAME\": \"Jasper\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 494.510000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.007766, 39.173925],\n\t\t\t\t\t\t[-87.950385, 39.174882],\n\t\t\t\t\t\t[-87.945923, 38.850108],\n\t\t\t\t\t\t[-88.258608, 38.847521],\n\t\t\t\t\t\t[-88.361760, 38.851949],\n\t\t\t\t\t\t[-88.361745, 38.910847],\n\t\t\t\t\t\t[-88.360654, 39.171118],\n\t\t\t\t\t\t[-88.007766, 39.173925]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17089\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"089\",\n\t\t\t\t\"NAME\": \"Kane\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 520.058000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.263068, 41.812290],\n\t\t\t\t\t\t[-88.263071, 41.799328],\n\t\t\t\t\t\t[-88.262670, 41.779629],\n\t\t\t\t\t\t[-88.262470, 41.777429],\n\t\t\t\t\t\t[-88.261952, 41.724652],\n\t\t\t\t\t\t[-88.601933, 41.719563],\n\t\t\t\t\t\t[-88.601291, 41.981336],\n\t\t\t\t\t\t[-88.588657, 42.153590],\n\t\t\t\t\t\t[-88.238369, 42.154253],\n\t\t\t\t\t\t[-88.262876, 41.986227],\n\t\t\t\t\t\t[-88.263068, 41.812290]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17103\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"103\",\n\t\t\t\t\"NAME\": \"Lee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 724.896000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.628371, 41.585014],\n\t\t\t\t\t\t[-89.631494, 41.584949],\n\t\t\t\t\t\t[-89.631368, 41.771297],\n\t\t\t\t\t\t[-89.629330, 41.901617],\n\t\t\t\t\t\t[-89.360682, 41.888070],\n\t\t\t\t\t\t[-88.941279, 41.891752],\n\t\t\t\t\t\t[-88.938618, 41.628319],\n\t\t\t\t\t\t[-89.167200, 41.628707],\n\t\t\t\t\t\t[-89.166561, 41.585289],\n\t\t\t\t\t\t[-89.628371, 41.585014]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17107\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"107\",\n\t\t\t\t\"NAME\": \"Logan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 618.059000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.263740, 40.325344],\n\t\t\t\t\t\t[-89.262650, 40.280919],\n\t\t\t\t\t\t[-89.148764, 40.282038],\n\t\t\t\t\t\t[-89.144764, 40.048853],\n\t\t\t\t\t\t[-89.143457, 39.917920],\n\t\t\t\t\t\t[-89.217846, 39.916990],\n\t\t\t\t\t\t[-89.483419, 39.933140],\n\t\t\t\t\t\t[-89.578289, 39.976127],\n\t\t\t\t\t\t[-89.601604, 40.122432],\n\t\t\t\t\t\t[-89.602979, 40.320129],\n\t\t\t\t\t\t[-89.263740, 40.325344]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17121\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"121\",\n\t\t\t\t\"NAME\": \"Marion\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 572.363000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.144388, 38.473878],\n\t\t\t\t\t\t[-89.144258, 38.474861],\n\t\t\t\t\t\t[-89.143898, 38.503088],\n\t\t\t\t\t\t[-89.138393, 38.736331],\n\t\t\t\t\t\t[-89.138138, 38.824244],\n\t\t\t\t\t\t[-88.695165, 38.826299],\n\t\t\t\t\t\t[-88.698457, 38.606304],\n\t\t\t\t\t\t[-88.698961, 38.474914],\n\t\t\t\t\t\t[-89.144388, 38.473878]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17129\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"129\",\n\t\t\t\t\"NAME\": \"Menard\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 314.437000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.994724, 40.108373],\n\t\t\t\t\t\t[-89.970490, 40.142082],\n\t\t\t\t\t\t[-89.749196, 40.126852],\n\t\t\t\t\t\t[-89.638262, 40.154870],\n\t\t\t\t\t\t[-89.601604, 40.122432],\n\t\t\t\t\t\t[-89.578289, 39.976127],\n\t\t\t\t\t\t[-89.698259, 39.975309],\n\t\t\t\t\t\t[-89.701864, 39.916787],\n\t\t\t\t\t\t[-89.994506, 39.901925],\n\t\t\t\t\t\t[-89.994724, 40.108373]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17139\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"139\",\n\t\t\t\t\"NAME\": \"Moultrie\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 335.943000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.473182, 39.791837],\n\t\t\t\t\t\t[-88.472073, 39.651588],\n\t\t\t\t\t\t[-88.470505, 39.447041],\n\t\t\t\t\t\t[-88.584273, 39.447582],\n\t\t\t\t\t\t[-88.641468, 39.520958],\n\t\t\t\t\t\t[-88.716875, 39.521209],\n\t\t\t\t\t\t[-88.717539, 39.579299],\n\t\t\t\t\t\t[-88.809051, 39.580241],\n\t\t\t\t\t\t[-88.810575, 39.653222],\n\t\t\t\t\t\t[-88.812709, 39.740486],\n\t\t\t\t\t\t[-88.745671, 39.792146],\n\t\t\t\t\t\t[-88.473182, 39.791837]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17145\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"145\",\n\t\t\t\t\"NAME\": \"Perry\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 441.761000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.592797, 38.219271],\n\t\t\t\t\t\t[-89.147416, 38.212896],\n\t\t\t\t\t\t[-89.149739, 38.124945],\n\t\t\t\t\t\t[-89.129637, 38.124747],\n\t\t\t\t\t\t[-89.177597, 37.950311],\n\t\t\t\t\t\t[-89.595084, 37.955310],\n\t\t\t\t\t\t[-89.592797, 38.219271]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17155\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"155\",\n\t\t\t\t\"NAME\": \"Putnam\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 160.161000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.466421, 41.148558],\n\t\t\t\t\t\t[-89.466534, 41.233873],\n\t\t\t\t\t\t[-89.356671, 41.233235],\n\t\t\t\t\t\t[-89.334901, 41.300877],\n\t\t\t\t\t\t[-89.163705, 41.310187],\n\t\t\t\t\t\t[-89.162238, 41.104080],\n\t\t\t\t\t\t[-89.358597, 41.103665],\n\t\t\t\t\t\t[-89.329270, 41.147931],\n\t\t\t\t\t\t[-89.466421, 41.148558]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17169\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"169\",\n\t\t\t\t\"NAME\": \"Schuyler\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 437.273000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.909756, 40.284394],\n\t\t\t\t\t\t[-90.450227, 40.276335],\n\t\t\t\t\t\t[-90.451502, 40.188892],\n\t\t\t\t\t\t[-90.199556, 40.183945],\n\t\t\t\t\t\t[-90.355198, 40.124245],\n\t\t\t\t\t\t[-90.433523, 40.024001],\n\t\t\t\t\t\t[-90.513747, 39.987891],\n\t\t\t\t\t\t[-90.607134, 39.981658],\n\t\t\t\t\t\t[-90.695884, 40.103794],\n\t\t\t\t\t\t[-90.913616, 40.104452],\n\t\t\t\t\t\t[-90.911969, 40.193088],\n\t\t\t\t\t\t[-90.909756, 40.284394]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17175\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"175\",\n\t\t\t\t\"NAME\": \"Stark\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 288.079000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.638864, 41.233862],\n\t\t\t\t\t\t[-89.638597, 41.149760],\n\t\t\t\t\t\t[-89.638429, 41.148591],\n\t\t\t\t\t\t[-89.638727, 40.973707],\n\t\t\t\t\t\t[-89.982549, 40.974707],\n\t\t\t\t\t\t[-89.985479, 40.974495],\n\t\t\t\t\t\t[-89.984559, 41.149366],\n\t\t\t\t\t\t[-89.868384, 41.148955],\n\t\t\t\t\t\t[-89.857798, 41.234483],\n\t\t\t\t\t\t[-89.638864, 41.233862]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17179\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"179\",\n\t\t\t\t\"NAME\": \"Tazewell\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 648.974000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.269390, 40.594329],\n\t\t\t\t\t\t[-89.263740, 40.325344],\n\t\t\t\t\t\t[-89.602979, 40.320129],\n\t\t\t\t\t\t[-89.714927, 40.319218],\n\t\t\t\t\t\t[-89.717104, 40.435655],\n\t\t\t\t\t\t[-89.924680, 40.435921],\n\t\t\t\t\t\t[-89.872463, 40.513127],\n\t\t\t\t\t\t[-89.658003, 40.567438],\n\t\t\t\t\t\t[-89.554994, 40.747637],\n\t\t\t\t\t\t[-89.330167, 40.748257],\n\t\t\t\t\t\t[-89.327343, 40.615566],\n\t\t\t\t\t\t[-89.269390, 40.594329]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17189\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"189\",\n\t\t\t\t\"NAME\": \"Washington\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 562.572000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.704417, 38.415667],\n\t\t\t\t\t\t[-89.615212, 38.472072],\n\t\t\t\t\t\t[-89.481556, 38.468465],\n\t\t\t\t\t\t[-89.360248, 38.516522],\n\t\t\t\t\t\t[-89.143898, 38.503088],\n\t\t\t\t\t\t[-89.144258, 38.474861],\n\t\t\t\t\t\t[-89.144388, 38.473878],\n\t\t\t\t\t\t[-89.147416, 38.212896],\n\t\t\t\t\t\t[-89.592797, 38.219271],\n\t\t\t\t\t\t[-89.703256, 38.219404],\n\t\t\t\t\t\t[-89.704417, 38.415667]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17203\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"203\",\n\t\t\t\t\"NAME\": \"Woodford\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 527.799000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.986896, 40.752297],\n\t\t\t\t\t\t[-88.984700, 40.664954],\n\t\t\t\t\t\t[-89.145649, 40.662057],\n\t\t\t\t\t\t[-89.155175, 40.596417],\n\t\t\t\t\t\t[-89.269390, 40.594329],\n\t\t\t\t\t\t[-89.327343, 40.615566],\n\t\t\t\t\t\t[-89.330167, 40.748257],\n\t\t\t\t\t\t[-89.554994, 40.747637],\n\t\t\t\t\t\t[-89.552766, 40.810469],\n\t\t\t\t\t\t[-89.472330, 40.921206],\n\t\t\t\t\t\t[-89.047718, 40.925749],\n\t\t\t\t\t\t[-88.931390, 40.927740],\n\t\t\t\t\t\t[-88.929331, 40.753337],\n\t\t\t\t\t\t[-88.986896, 40.752297]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18009\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"009\",\n\t\t\t\t\"NAME\": \"Blackford\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 165.080000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.219901, 40.379034],\n\t\t\t\t\t\t[-85.444330, 40.379140],\n\t\t\t\t\t\t[-85.447014, 40.566929],\n\t\t\t\t\t\t[-85.201146, 40.567242],\n\t\t\t\t\t\t[-85.206831, 40.379182],\n\t\t\t\t\t\t[-85.219901, 40.379034]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18011\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"011\",\n\t\t\t\t\"NAME\": \"Boone\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 422.913000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.242365, 40.180778],\n\t\t\t\t\t\t[-86.239739, 39.926055],\n\t\t\t\t\t\t[-86.241090, 39.926092],\n\t\t\t\t\t\t[-86.263305, 39.924889],\n\t\t\t\t\t\t[-86.326293, 39.924029],\n\t\t\t\t\t\t[-86.695071, 39.922770],\n\t\t\t\t\t\t[-86.695804, 40.178657],\n\t\t\t\t\t\t[-86.398850, 40.177190],\n\t\t\t\t\t\t[-86.242365, 40.180778]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18021\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"021\",\n\t\t\t\t\"NAME\": \"Clay\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 357.542000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.240737, 39.171773],\n\t\t\t\t\t\t[-87.240379, 39.259064],\n\t\t\t\t\t\t[-87.238964, 39.520620],\n\t\t\t\t\t\t[-87.199012, 39.607137],\n\t\t\t\t\t\t[-87.013062, 39.604787],\n\t\t\t\t\t\t[-87.014533, 39.473572],\n\t\t\t\t\t\t[-86.939981, 39.473345],\n\t\t\t\t\t\t[-86.942473, 39.342043],\n\t\t\t\t\t\t[-87.053646, 39.342621],\n\t\t\t\t\t\t[-87.054578, 39.168086],\n\t\t\t\t\t\t[-87.068341, 39.167965],\n\t\t\t\t\t\t[-87.240737, 39.171773]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18033\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"033\",\n\t\t\t\t\"NAME\": \"DeKalb\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 362.824000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.803956, 41.426044],\n\t\t\t\t\t\t[-84.804015, 41.411655],\n\t\t\t\t\t\t[-84.804046, 41.408361],\n\t\t\t\t\t\t[-84.804133, 41.408292],\n\t\t\t\t\t\t[-84.803926, 41.367959],\n\t\t\t\t\t\t[-84.803582, 41.271273],\n\t\t\t\t\t\t[-84.806471, 41.270904],\n\t\t\t\t\t\t[-85.192094, 41.264209],\n\t\t\t\t\t\t[-85.194084, 41.526437],\n\t\t\t\t\t\t[-84.804729, 41.530135],\n\t\t\t\t\t\t[-84.804729, 41.530092],\n\t\t\t\t\t\t[-84.804551, 41.500364],\n\t\t\t\t\t\t[-84.804457, 41.488224],\n\t\t\t\t\t\t[-84.803919, 41.435531],\n\t\t\t\t\t\t[-84.803956, 41.426128],\n\t\t\t\t\t\t[-84.803956, 41.426044]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13125\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"125\",\n\t\t\t\t\"NAME\": \"Glascock\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 143.740000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.431957, 33.274830],\n\t\t\t\t\t\t[-82.661917, 33.126331],\n\t\t\t\t\t\t[-82.748311, 33.238348],\n\t\t\t\t\t\t[-82.747238, 33.247663],\n\t\t\t\t\t\t[-82.755846, 33.253440],\n\t\t\t\t\t\t[-82.559753, 33.327270],\n\t\t\t\t\t\t[-82.431957, 33.274830]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13129\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"129\",\n\t\t\t\t\"NAME\": \"Gordon\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 355.808000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.654523, 34.583187],\n\t\t\t\t\t\t[-84.654366, 34.548946],\n\t\t\t\t\t\t[-84.653232, 34.412590],\n\t\t\t\t\t\t[-84.862863, 34.396601],\n\t\t\t\t\t\t[-85.005775, 34.392446],\n\t\t\t\t\t\t[-85.086761, 34.401264],\n\t\t\t\t\t\t[-85.069159, 34.587184],\n\t\t\t\t\t\t[-85.060499, 34.587184],\n\t\t\t\t\t\t[-85.060380, 34.622450],\n\t\t\t\t\t\t[-85.055206, 34.622383],\n\t\t\t\t\t\t[-85.055095, 34.622390],\n\t\t\t\t\t\t[-85.050446, 34.622482],\n\t\t\t\t\t\t[-84.913456, 34.634128],\n\t\t\t\t\t\t[-84.863793, 34.608597],\n\t\t\t\t\t\t[-84.716498, 34.622900],\n\t\t\t\t\t\t[-84.654523, 34.583187]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13131\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"131\",\n\t\t\t\t\"NAME\": \"Grady\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 454.527000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.380719, 30.689673],\n\t\t\t\t\t\t[-84.376612, 31.078883],\n\t\t\t\t\t\t[-84.116644, 31.077971],\n\t\t\t\t\t\t[-84.119058, 30.980956],\n\t\t\t\t\t\t[-84.076964, 30.915570],\n\t\t\t\t\t\t[-84.083753, 30.675954],\n\t\t\t\t\t\t[-84.281210, 30.685256],\n\t\t\t\t\t\t[-84.282562, 30.685316],\n\t\t\t\t\t\t[-84.380719, 30.689673]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13139\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"139\",\n\t\t\t\t\"NAME\": \"Hall\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 392.782000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.062841, 34.167873],\n\t\t\t\t\t\t[-83.989059, 34.195732],\n\t\t\t\t\t\t[-83.927284, 34.279399],\n\t\t\t\t\t\t[-83.957077, 34.334011],\n\t\t\t\t\t\t[-83.980649, 34.418389],\n\t\t\t\t\t\t[-83.843405, 34.505494],\n\t\t\t\t\t\t[-83.666413, 34.503598],\n\t\t\t\t\t\t[-83.615251, 34.431748],\n\t\t\t\t\t\t[-83.669473, 34.366689],\n\t\t\t\t\t\t[-83.620115, 34.295276],\n\t\t\t\t\t\t[-83.817682, 34.127493],\n\t\t\t\t\t\t[-83.868030, 34.098281],\n\t\t\t\t\t\t[-84.062841, 34.167873]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13157\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"157\",\n\t\t\t\t\"NAME\": \"Jackson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 339.663000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.360028, 34.040572],\n\t\t\t\t\t\t[-83.537385, 33.965912],\n\t\t\t\t\t\t[-83.563215, 34.031757],\n\t\t\t\t\t\t[-83.767532, 34.066448],\n\t\t\t\t\t\t[-83.817682, 34.127493],\n\t\t\t\t\t\t[-83.620115, 34.295276],\n\t\t\t\t\t\t[-83.480361, 34.262038],\n\t\t\t\t\t\t[-83.402428, 34.197499],\n\t\t\t\t\t\t[-83.360028, 34.040572]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13169\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"169\",\n\t\t\t\t\"NAME\": \"Jones\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 393.933000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.357685, 32.926141],\n\t\t\t\t\t\t[-83.406820, 32.898446],\n\t\t\t\t\t\t[-83.406990, 32.898220],\n\t\t\t\t\t\t[-83.407668, 32.897822],\n\t\t\t\t\t\t[-83.513511, 32.844868],\n\t\t\t\t\t\t[-83.658211, 32.887913],\n\t\t\t\t\t\t[-83.710685, 32.952792],\n\t\t\t\t\t\t[-83.747004, 33.063373],\n\t\t\t\t\t\t[-83.816048, 33.131816],\n\t\t\t\t\t\t[-83.545876, 33.171944],\n\t\t\t\t\t\t[-83.429090, 33.185352],\n\t\t\t\t\t\t[-83.414997, 33.112833],\n\t\t\t\t\t\t[-83.380383, 32.998077],\n\t\t\t\t\t\t[-83.357685, 32.926141]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13175\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"175\",\n\t\t\t\t\"NAME\": \"Laurens\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 807.296000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.226536, 32.584201],\n\t\t\t\t\t\t[-82.957570, 32.708198],\n\t\t\t\t\t\t[-82.957066, 32.708318],\n\t\t\t\t\t\t[-82.862763, 32.715760],\n\t\t\t\t\t\t[-82.668557, 32.612164],\n\t\t\t\t\t\t[-82.647733, 32.512507],\n\t\t\t\t\t\t[-82.737137, 32.338030],\n\t\t\t\t\t\t[-82.721964, 32.309283],\n\t\t\t\t\t\t[-82.884803, 32.196072],\n\t\t\t\t\t\t[-82.990967, 32.147274],\n\t\t\t\t\t\t[-83.138991, 32.423069],\n\t\t\t\t\t\t[-83.226536, 32.584201]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13187\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"187\",\n\t\t\t\t\"NAME\": \"Lumpkin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 282.933000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.843405, 34.505494],\n\t\t\t\t\t\t[-83.980649, 34.418389],\n\t\t\t\t\t\t[-84.102037, 34.464544],\n\t\t\t\t\t\t[-84.191040, 34.539181],\n\t\t\t\t\t\t[-84.188557, 34.602692],\n\t\t\t\t\t\t[-84.158035, 34.648243],\n\t\t\t\t\t\t[-84.036510, 34.641934],\n\t\t\t\t\t\t[-83.939007, 34.740859],\n\t\t\t\t\t\t[-83.856506, 34.722191],\n\t\t\t\t\t\t[-83.877276, 34.629597],\n\t\t\t\t\t\t[-83.843405, 34.505494]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13197\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"197\",\n\t\t\t\t\"NAME\": \"Marion\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 366.003000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.649319, 32.232953],\n\t\t\t\t\t\t[-84.658920, 32.232852],\n\t\t\t\t\t\t[-84.657325, 32.494940],\n\t\t\t\t\t\t[-84.637323, 32.534855],\n\t\t\t\t\t\t[-84.444353, 32.562083],\n\t\t\t\t\t\t[-84.392316, 32.414046],\n\t\t\t\t\t\t[-84.430215, 32.166257],\n\t\t\t\t\t\t[-84.431214, 32.134058],\n\t\t\t\t\t\t[-84.527117, 32.134556],\n\t\t\t\t\t\t[-84.649319, 32.232953]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13201\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"201\",\n\t\t\t\t\"NAME\": \"Miller\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 282.421000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.922423, 31.072590],\n\t\t\t\t\t\t[-84.917430, 31.255990],\n\t\t\t\t\t\t[-84.641673, 31.258967],\n\t\t\t\t\t\t[-84.537101, 31.255932],\n\t\t\t\t\t\t[-84.542653, 31.079029],\n\t\t\t\t\t\t[-84.730855, 31.069190],\n\t\t\t\t\t\t[-84.922423, 31.072590]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13217\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"217\",\n\t\t\t\t\"NAME\": \"Newton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 272.161000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.682196, 33.526220],\n\t\t\t\t\t\t[-83.674644, 33.487225],\n\t\t\t\t\t\t[-83.824922, 33.437263],\n\t\t\t\t\t\t[-83.863058, 33.368278],\n\t\t\t\t\t\t[-83.923913, 33.444194],\n\t\t\t\t\t\t[-84.044493, 33.525776],\n\t\t\t\t\t\t[-84.024854, 33.547507],\n\t\t\t\t\t\t[-84.024279, 33.548226],\n\t\t\t\t\t\t[-83.972655, 33.605482],\n\t\t\t\t\t\t[-83.914823, 33.744203],\n\t\t\t\t\t\t[-83.777350, 33.658301],\n\t\t\t\t\t\t[-83.680896, 33.596919],\n\t\t\t\t\t\t[-83.687386, 33.588559],\n\t\t\t\t\t\t[-83.687085, 33.582375],\n\t\t\t\t\t\t[-83.681443, 33.577913],\n\t\t\t\t\t\t[-83.677669, 33.571176],\n\t\t\t\t\t\t[-83.682196, 33.526220]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13225\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"225\",\n\t\t\t\t\"NAME\": \"Peach\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 150.267000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.846676, 32.468514],\n\t\t\t\t\t\t[-84.008490, 32.521769],\n\t\t\t\t\t\t[-84.001069, 32.520586],\n\t\t\t\t\t\t[-84.003363, 32.529927],\n\t\t\t\t\t\t[-83.766787, 32.692622],\n\t\t\t\t\t\t[-83.701090, 32.691598],\n\t\t\t\t\t\t[-83.719859, 32.531760],\n\t\t\t\t\t\t[-83.846676, 32.468514]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13233\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"233\",\n\t\t\t\t\"NAME\": \"Polk\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 310.331000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.922742, 34.082497],\n\t\t\t\t\t\t[-84.978683, 33.951393],\n\t\t\t\t\t\t[-85.050310, 33.904488],\n\t\t\t\t\t\t[-85.386693, 33.901697],\n\t\t\t\t\t\t[-85.398837, 33.964129],\n\t\t\t\t\t\t[-85.421731, 34.080821],\n\t\t\t\t\t\t[-85.257624, 34.100668],\n\t\t\t\t\t\t[-85.046871, 34.096412],\n\t\t\t\t\t\t[-84.922742, 34.082497]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13243\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"243\",\n\t\t\t\t\"NAME\": \"Randolph\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 428.236000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.958640, 31.777854],\n\t\t\t\t\t\t[-84.910338, 31.776841],\n\t\t\t\t\t\t[-84.907006, 31.924465],\n\t\t\t\t\t\t[-84.655820, 31.920308],\n\t\t\t\t\t\t[-84.599776, 31.920171],\n\t\t\t\t\t\t[-84.603086, 31.772001],\n\t\t\t\t\t\t[-84.535527, 31.681828],\n\t\t\t\t\t\t[-84.546854, 31.621199],\n\t\t\t\t\t\t[-84.817843, 31.619771],\n\t\t\t\t\t\t[-84.942353, 31.618669],\n\t\t\t\t\t\t[-84.958640, 31.777854]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13253\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"253\",\n\t\t\t\t\"NAME\": \"Seminole\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 235.226000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.022121, 31.075480],\n\t\t\t\t\t\t[-85.001928, 31.074983],\n\t\t\t\t\t\t[-84.999869, 31.074736],\n\t\t\t\t\t\t[-84.922423, 31.072590],\n\t\t\t\t\t\t[-84.730855, 31.069190],\n\t\t\t\t\t\t[-84.755917, 30.885270],\n\t\t\t\t\t\t[-84.863465, 30.711487],\n\t\t\t\t\t\t[-84.864693, 30.711542],\n\t\t\t\t\t\t[-84.896122, 30.750591],\n\t\t\t\t\t\t[-84.941925, 30.887988],\n\t\t\t\t\t\t[-84.959626, 30.910587],\n\t\t\t\t\t\t[-84.983527, 30.935486],\n\t\t\t\t\t\t[-84.998628, 30.971386],\n\t\t\t\t\t\t[-85.002368, 31.000682],\n\t\t\t\t\t\t[-84.999428, 31.013843],\n\t\t\t\t\t\t[-85.022121, 31.075480]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13265\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"265\",\n\t\t\t\t\"NAME\": \"Taliaferro\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 194.608000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.679975, 33.599792],\n\t\t\t\t\t\t[-82.751275, 33.510143],\n\t\t\t\t\t\t[-82.815315, 33.521137],\n\t\t\t\t\t\t[-82.851954, 33.443543],\n\t\t\t\t\t\t[-83.012853, 33.469178],\n\t\t\t\t\t\t[-83.014038, 33.580383],\n\t\t\t\t\t\t[-82.951142, 33.658032],\n\t\t\t\t\t\t[-82.995602, 33.693583],\n\t\t\t\t\t\t[-82.988880, 33.706315],\n\t\t\t\t\t\t[-82.949046, 33.733333],\n\t\t\t\t\t\t[-82.890599, 33.632877],\n\t\t\t\t\t\t[-82.812958, 33.655836],\n\t\t\t\t\t\t[-82.679975, 33.599792]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13277\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"277\",\n\t\t\t\t\"NAME\": \"Tift\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 258.915000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.338728, 31.475991],\n\t\t\t\t\t\t[-83.434492, 31.350361],\n\t\t\t\t\t\t[-83.460644, 31.326263],\n\t\t\t\t\t\t[-83.512607, 31.327405],\n\t\t\t\t\t\t[-83.654090, 31.330661],\n\t\t\t\t\t\t[-83.649384, 31.567977],\n\t\t\t\t\t\t[-83.648972, 31.596466],\n\t\t\t\t\t\t[-83.500702, 31.593990],\n\t\t\t\t\t\t[-83.338728, 31.475991]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13285\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"285\",\n\t\t\t\t\"NAME\": \"Troup\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 413.988000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.236509, 33.129562],\n\t\t\t\t\t\t[-84.939015, 33.224693],\n\t\t\t\t\t\t[-84.862359, 33.191173],\n\t\t\t\t\t\t[-84.861768, 32.872495],\n\t\t\t\t\t\t[-85.184131, 32.870525],\n\t\t\t\t\t\t[-85.221868, 33.055538],\n\t\t\t\t\t\t[-85.223261, 33.062580],\n\t\t\t\t\t\t[-85.232378, 33.108077],\n\t\t\t\t\t\t[-85.236509, 33.129562]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13293\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"293\",\n\t\t\t\t\"NAME\": \"Upson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 323.437000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.202628, 32.690018],\n\t\t\t\t\t\t[-84.286246, 32.747626],\n\t\t\t\t\t\t[-84.391017, 32.786956],\n\t\t\t\t\t\t[-84.506888, 32.881788],\n\t\t\t\t\t\t[-84.527020, 32.970548],\n\t\t\t\t\t\t[-84.489708, 32.993729],\n\t\t\t\t\t\t[-84.270140, 32.991011],\n\t\t\t\t\t\t[-84.122361, 32.989576],\n\t\t\t\t\t\t[-84.123340, 32.932184],\n\t\t\t\t\t\t[-84.124275, 32.849562],\n\t\t\t\t\t\t[-84.202628, 32.690018]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13303\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"303\",\n\t\t\t\t\"NAME\": \"Washington\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 678.452000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.661917, 33.126331],\n\t\t\t\t\t\t[-82.550197, 33.019247],\n\t\t\t\t\t\t[-82.510851, 32.917754],\n\t\t\t\t\t\t[-82.521052, 32.822356],\n\t\t\t\t\t\t[-82.768365, 32.769108],\n\t\t\t\t\t\t[-82.802456, 32.809756],\n\t\t\t\t\t\t[-82.946966, 32.759358],\n\t\t\t\t\t\t[-83.073648, 32.946562],\n\t\t\t\t\t\t[-83.052197, 33.080682],\n\t\t\t\t\t\t[-82.888866, 33.138603],\n\t\t\t\t\t\t[-82.855046, 33.196427],\n\t\t\t\t\t\t[-82.748311, 33.238348],\n\t\t\t\t\t\t[-82.661917, 33.126331]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20027\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"027\",\n\t\t\t\t\"NAME\": \"Clay\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 645.301000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.368574, 39.567018],\n\t\t\t\t\t\t[-96.958859, 39.566400],\n\t\t\t\t\t\t[-96.961387, 39.220073],\n\t\t\t\t\t\t[-96.961380, 39.132325],\n\t\t\t\t\t\t[-96.963177, 39.132300],\n\t\t\t\t\t\t[-97.371154, 39.131961],\n\t\t\t\t\t\t[-97.369839, 39.306011],\n\t\t\t\t\t\t[-97.368574, 39.567018]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20029\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"029\",\n\t\t\t\t\"NAME\": \"Cloud\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 715.342000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.368574, 39.567018],\n\t\t\t\t\t\t[-97.369839, 39.306011],\n\t\t\t\t\t\t[-97.926096, 39.306517],\n\t\t\t\t\t\t[-97.929097, 39.306397],\n\t\t\t\t\t\t[-97.928462, 39.566915],\n\t\t\t\t\t\t[-97.931844, 39.566921],\n\t\t\t\t\t\t[-97.931482, 39.653767],\n\t\t\t\t\t\t[-97.368670, 39.654043],\n\t\t\t\t\t\t[-97.368653, 39.583833],\n\t\t\t\t\t\t[-97.368374, 39.577145],\n\t\t\t\t\t\t[-97.368635, 39.575926],\n\t\t\t\t\t\t[-97.368574, 39.567018]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20039\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"039\",\n\t\t\t\t\"NAME\": \"Decatur\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 893.517000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.738826, 40.002228],\n\t\t\t\t\t\t[-100.733296, 40.002270],\n\t\t\t\t\t\t[-100.729904, 40.002111],\n\t\t\t\t\t\t[-100.721128, 40.002069],\n\t\t\t\t\t\t[-100.683435, 40.002234],\n\t\t\t\t\t\t[-100.660230, 40.002162],\n\t\t\t\t\t\t[-100.645445, 40.001883],\n\t\t\t\t\t\t[-100.600945, 40.001906],\n\t\t\t\t\t\t[-100.594757, 40.001977],\n\t\t\t\t\t\t[-100.567238, 40.001889],\n\t\t\t\t\t\t[-100.551886, 40.001889],\n\t\t\t\t\t\t[-100.511065, 40.001840],\n\t\t\t\t\t\t[-100.487159, 40.001767],\n\t\t\t\t\t\t[-100.477018, 40.001752],\n\t\t\t\t\t\t[-100.475854, 40.001768],\n\t\t\t\t\t\t[-100.468773, 40.001724],\n\t\t\t\t\t\t[-100.447072, 40.001795],\n\t\t\t\t\t\t[-100.439081, 40.001774],\n\t\t\t\t\t\t[-100.390080, 40.001809],\n\t\t\t\t\t\t[-100.231652, 40.001623],\n\t\t\t\t\t\t[-100.229479, 40.001693],\n\t\t\t\t\t\t[-100.215406, 40.001629],\n\t\t\t\t\t\t[-100.196959, 40.001494],\n\t\t\t\t\t\t[-100.193597, 40.001573],\n\t\t\t\t\t\t[-100.193590, 40.001573],\n\t\t\t\t\t\t[-100.190323, 40.001586],\n\t\t\t\t\t\t[-100.188181, 40.001541],\n\t\t\t\t\t\t[-100.177823, 40.001593],\n\t\t\t\t\t\t[-100.177795, 40.001593],\n\t\t\t\t\t\t[-100.178276, 39.998801],\n\t\t\t\t\t\t[-100.180351, 39.566890],\n\t\t\t\t\t\t[-100.720213, 39.568034],\n\t\t\t\t\t\t[-100.740873, 39.568043],\n\t\t\t\t\t\t[-100.738826, 40.002228]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20049\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"049\",\n\t\t\t\t\"NAME\": \"Elk\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 644.265000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.525690, 37.476405],\n\t\t\t\t\t\t[-96.525300, 37.607015],\n\t\t\t\t\t\t[-95.961002, 37.603761],\n\t\t\t\t\t\t[-95.961605, 37.386636],\n\t\t\t\t\t\t[-95.964666, 37.386656],\n\t\t\t\t\t\t[-95.964399, 37.299232],\n\t\t\t\t\t\t[-96.524873, 37.302730],\n\t\t\t\t\t\t[-96.525690, 37.476405]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20065\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"065\",\n\t\t\t\t\"NAME\": \"Graham\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 898.522000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.605187, 39.132481],\n\t\t\t\t\t\t[-100.147940, 39.132179],\n\t\t\t\t\t\t[-100.162393, 39.131926],\n\t\t\t\t\t\t[-100.164200, 39.132071],\n\t\t\t\t\t\t[-100.161667, 39.567277],\n\t\t\t\t\t\t[-99.627953, 39.567437],\n\t\t\t\t\t\t[-99.602255, 39.567328],\n\t\t\t\t\t\t[-99.605187, 39.132481]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20075\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"075\",\n\t\t\t\t\"NAME\": \"Hamilton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 996.508000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-101.567482, 38.263145],\n\t\t\t\t\t\t[-101.561294, 38.263179],\n\t\t\t\t\t\t[-101.560373, 38.263122],\n\t\t\t\t\t\t[-101.542312, 38.263207],\n\t\t\t\t\t\t[-101.542757, 37.827594],\n\t\t\t\t\t\t[-101.527063, 37.736314],\n\t\t\t\t\t\t[-102.041990, 37.738541],\n\t\t\t\t\t\t[-102.042158, 37.760164],\n\t\t\t\t\t\t[-102.042668, 37.788758],\n\t\t\t\t\t\t[-102.042953, 37.803535],\n\t\t\t\t\t\t[-102.043033, 37.824146],\n\t\t\t\t\t\t[-102.043219, 37.867929],\n\t\t\t\t\t\t[-102.043845, 37.926135],\n\t\t\t\t\t\t[-102.043844, 37.928102],\n\t\t\t\t\t\t[-102.044398, 38.250015],\n\t\t\t\t\t\t[-102.044510, 38.262412],\n\t\t\t\t\t\t[-101.567482, 38.263145]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20085\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"085\",\n\t\t\t\t\"NAME\": \"Jackson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 656.217000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.788941, 39.653001],\n\t\t\t\t\t\t[-95.564126, 39.652872],\n\t\t\t\t\t\t[-95.570351, 39.419050],\n\t\t\t\t\t\t[-95.589295, 39.419086],\n\t\t\t\t\t\t[-95.589472, 39.216081],\n\t\t\t\t\t\t[-96.035573, 39.216520],\n\t\t\t\t\t\t[-96.035952, 39.566100],\n\t\t\t\t\t\t[-95.789101, 39.565916],\n\t\t\t\t\t\t[-95.788941, 39.653001]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20095\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"095\",\n\t\t\t\t\"NAME\": \"Kingman\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 863.363000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.807600, 37.474184],\n\t\t\t\t\t\t[-97.807576, 37.473888],\n\t\t\t\t\t\t[-97.807057, 37.386293],\n\t\t\t\t\t\t[-98.349804, 37.384056],\n\t\t\t\t\t\t[-98.464951, 37.384086],\n\t\t\t\t\t\t[-98.464663, 37.471013],\n\t\t\t\t\t\t[-98.464804, 37.732675],\n\t\t\t\t\t\t[-97.807823, 37.733855],\n\t\t\t\t\t\t[-97.807600, 37.474184]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20105\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"105\",\n\t\t\t\t\"NAME\": \"Lincoln\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 719.396000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.928560, 38.958395],\n\t\t\t\t\t\t[-97.928702, 38.886208],\n\t\t\t\t\t\t[-97.928967, 38.882176],\n\t\t\t\t\t\t[-97.928595, 38.871102],\n\t\t\t\t\t\t[-98.484861, 38.870791],\n\t\t\t\t\t\t[-98.483748, 39.132671],\n\t\t\t\t\t\t[-98.489997, 39.132697],\n\t\t\t\t\t\t[-98.490011, 39.213048],\n\t\t\t\t\t\t[-98.489893, 39.213515],\n\t\t\t\t\t\t[-98.489864, 39.214650],\n\t\t\t\t\t\t[-98.490063, 39.215379],\n\t\t\t\t\t\t[-98.490161, 39.218033],\n\t\t\t\t\t\t[-98.490149, 39.219780],\n\t\t\t\t\t\t[-97.929746, 39.219273],\n\t\t\t\t\t\t[-97.928560, 38.958395]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20115\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"115\",\n\t\t\t\t\"NAME\": \"Marion\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 944.290000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.819723, 38.522464],\n\t\t\t\t\t\t[-96.840772, 38.085622],\n\t\t\t\t\t\t[-97.152913, 38.087704],\n\t\t\t\t\t\t[-97.153093, 38.174634],\n\t\t\t\t\t\t[-97.371750, 38.173673],\n\t\t\t\t\t\t[-97.371911, 38.609353],\n\t\t\t\t\t\t[-97.364088, 38.609146],\n\t\t\t\t\t\t[-96.930286, 38.609362],\n\t\t\t\t\t\t[-96.929969, 38.522412],\n\t\t\t\t\t\t[-96.819723, 38.522464]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20127\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"127\",\n\t\t\t\t\"NAME\": \"Morris\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 695.279000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.501556, 38.869704],\n\t\t\t\t\t\t[-96.501397, 38.826188],\n\t\t\t\t\t\t[-96.390398, 38.825858],\n\t\t\t\t\t\t[-96.352613, 38.739021],\n\t\t\t\t\t\t[-96.353780, 38.521657],\n\t\t\t\t\t\t[-96.817830, 38.522396],\n\t\t\t\t\t\t[-96.819723, 38.522464],\n\t\t\t\t\t\t[-96.929969, 38.522412],\n\t\t\t\t\t\t[-96.930286, 38.609362],\n\t\t\t\t\t\t[-96.927234, 38.812160],\n\t\t\t\t\t\t[-96.890245, 38.870067],\n\t\t\t\t\t\t[-96.501556, 38.869704]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20135\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"135\",\n\t\t\t\t\"NAME\": \"Ness\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1074.750000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.584207, 38.262179],\n\t\t\t\t\t\t[-100.227137, 38.262237],\n\t\t\t\t\t\t[-100.244393, 38.262290],\n\t\t\t\t\t\t[-100.247200, 38.698165],\n\t\t\t\t\t\t[-100.153823, 38.697341],\n\t\t\t\t\t\t[-99.598323, 38.696514],\n\t\t\t\t\t\t[-99.585087, 38.696537],\n\t\t\t\t\t\t[-99.584794, 38.349386],\n\t\t\t\t\t\t[-99.584207, 38.262179]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20145\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"145\",\n\t\t\t\t\"NAME\": \"Pawnee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 754.263000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.912583, 38.261088],\n\t\t\t\t\t\t[-98.913136, 38.000451],\n\t\t\t\t\t\t[-99.022136, 38.000236],\n\t\t\t\t\t\t[-99.350289, 38.000745],\n\t\t\t\t\t\t[-99.350359, 38.087594],\n\t\t\t\t\t\t[-99.569533, 38.087372],\n\t\t\t\t\t\t[-99.570543, 38.261957],\n\t\t\t\t\t\t[-99.584207, 38.262179],\n\t\t\t\t\t\t[-99.584794, 38.349386],\n\t\t\t\t\t\t[-99.032408, 38.348334],\n\t\t\t\t\t\t[-99.032309, 38.261227],\n\t\t\t\t\t\t[-98.912583, 38.261088]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20155\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"155\",\n\t\t\t\t\"NAME\": \"Reno\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1255.346000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.472257, 37.824497],\n\t\t\t\t\t\t[-98.472794, 38.172757],\n\t\t\t\t\t\t[-97.922136, 38.173713],\n\t\t\t\t\t\t[-97.701841, 38.173814],\n\t\t\t\t\t\t[-97.701969, 37.911325],\n\t\t\t\t\t\t[-97.698692, 37.735056],\n\t\t\t\t\t\t[-97.807823, 37.733855],\n\t\t\t\t\t\t[-98.464804, 37.732675],\n\t\t\t\t\t\t[-98.464899, 37.824512],\n\t\t\t\t\t\t[-98.472257, 37.824497]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20163\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"163\",\n\t\t\t\t\"NAME\": \"Rooks\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 890.533000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.591776, 39.132357],\n\t\t\t\t\t\t[-99.593688, 39.132440],\n\t\t\t\t\t\t[-99.605187, 39.132481],\n\t\t\t\t\t\t[-99.602255, 39.567328],\n\t\t\t\t\t\t[-99.066203, 39.568093],\n\t\t\t\t\t\t[-99.044398, 39.568035],\n\t\t\t\t\t\t[-99.047687, 39.133014],\n\t\t\t\t\t\t[-99.591776, 39.132357]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20173\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"173\",\n\t\t\t\t\"NAME\": \"Sedgwick\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 997.512000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.807600, 37.474184],\n\t\t\t\t\t\t[-97.807823, 37.733855],\n\t\t\t\t\t\t[-97.698692, 37.735056],\n\t\t\t\t\t\t[-97.701969, 37.911325],\n\t\t\t\t\t\t[-97.152476, 37.912733],\n\t\t\t\t\t\t[-97.153331, 37.475544],\n\t\t\t\t\t\t[-97.807600, 37.474184]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20185\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"185\",\n\t\t\t\t\"NAME\": \"Stafford\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 792.046000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.472257, 37.824497],\n\t\t\t\t\t\t[-99.013318, 37.825336],\n\t\t\t\t\t\t[-99.022627, 37.825358],\n\t\t\t\t\t\t[-99.022136, 38.000236],\n\t\t\t\t\t\t[-98.913136, 38.000451],\n\t\t\t\t\t\t[-98.912583, 38.261088],\n\t\t\t\t\t\t[-98.479841, 38.260790],\n\t\t\t\t\t\t[-98.472794, 38.172757],\n\t\t\t\t\t\t[-98.472257, 37.824497]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20195\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"195\",\n\t\t\t\t\"NAME\": \"Trego\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 889.478000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.598323, 38.696514],\n\t\t\t\t\t\t[-100.153823, 38.697341],\n\t\t\t\t\t\t[-100.147940, 39.132179],\n\t\t\t\t\t\t[-99.605187, 39.132481],\n\t\t\t\t\t\t[-99.593688, 39.132440],\n\t\t\t\t\t\t[-99.591776, 39.132357],\n\t\t\t\t\t\t[-99.598323, 38.696514]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20203\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"203\",\n\t\t\t\t\"NAME\": \"Wichita\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 718.568000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-101.567094, 38.699669],\n\t\t\t\t\t\t[-101.484383, 38.700166],\n\t\t\t\t\t\t[-101.128379, 38.700603],\n\t\t\t\t\t\t[-101.125438, 38.264509],\n\t\t\t\t\t\t[-101.542312, 38.263207],\n\t\t\t\t\t\t[-101.560373, 38.263122],\n\t\t\t\t\t\t[-101.561294, 38.263179],\n\t\t\t\t\t\t[-101.567482, 38.263145],\n\t\t\t\t\t\t[-101.567094, 38.699669]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20205\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"205\",\n\t\t\t\t\"NAME\": \"Wilson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 570.418000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.961605, 37.386636],\n\t\t\t\t\t\t[-95.961002, 37.603761],\n\t\t\t\t\t\t[-95.960876, 37.734304],\n\t\t\t\t\t\t[-95.525499, 37.732759],\n\t\t\t\t\t\t[-95.525560, 37.383979],\n\t\t\t\t\t\t[-95.961605, 37.386636]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21183\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"183\",\n\t\t\t\t\"NAME\": \"Ohio\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 587.274000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.618233, 37.391348],\n\t\t\t\t\t\t[-86.759533, 37.304099],\n\t\t\t\t\t\t[-86.817168, 37.327616],\n\t\t\t\t\t\t[-86.899268, 37.212313],\n\t\t\t\t\t\t[-87.099803, 37.416042],\n\t\t\t\t\t\t[-87.103111, 37.480900],\n\t\t\t\t\t\t[-87.049376, 37.551860],\n\t\t\t\t\t\t[-87.038260, 37.560803],\n\t\t\t\t\t\t[-86.948760, 37.630548],\n\t\t\t\t\t\t[-86.817514, 37.673814],\n\t\t\t\t\t\t[-86.823429, 37.737754],\n\t\t\t\t\t\t[-86.638935, 37.661877],\n\t\t\t\t\t\t[-86.592810, 37.564360],\n\t\t\t\t\t\t[-86.664055, 37.546105],\n\t\t\t\t\t\t[-86.612095, 37.395123],\n\t\t\t\t\t\t[-86.618233, 37.391348]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21187\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"187\",\n\t\t\t\t\"NAME\": \"Owen\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 351.103000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.740594, 38.352415],\n\t\t\t\t\t\t[-84.870482, 38.356751],\n\t\t\t\t\t\t[-84.880248, 38.416180],\n\t\t\t\t\t\t[-84.963265, 38.437358],\n\t\t\t\t\t\t[-84.977166, 38.512989],\n\t\t\t\t\t\t[-85.074583, 38.596838],\n\t\t\t\t\t\t[-84.934536, 38.662130],\n\t\t\t\t\t\t[-84.785788, 38.720459],\n\t\t\t\t\t\t[-84.774322, 38.618594],\n\t\t\t\t\t\t[-84.580539, 38.473039],\n\t\t\t\t\t\t[-84.740594, 38.352415]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21189\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"189\",\n\t\t\t\t\"NAME\": \"Owsley\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 197.407000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.526907, 37.258529],\n\t\t\t\t\t\t[-83.653940, 37.358061],\n\t\t\t\t\t\t[-83.784975, 37.348717],\n\t\t\t\t\t\t[-83.885262, 37.517688],\n\t\t\t\t\t\t[-83.829340, 37.486821],\n\t\t\t\t\t\t[-83.630412, 37.537460],\n\t\t\t\t\t\t[-83.579186, 37.506249],\n\t\t\t\t\t\t[-83.547628, 37.334418],\n\t\t\t\t\t\t[-83.526907, 37.258529]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21199\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"199\",\n\t\t\t\t\"NAME\": \"Pulaski\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 658.408000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.720712, 37.238328],\n\t\t\t\t\t\t[-84.648083, 37.290416],\n\t\t\t\t\t\t[-84.556461, 37.355729],\n\t\t\t\t\t\t[-84.502932, 37.328801],\n\t\t\t\t\t\t[-84.289076, 37.151740],\n\t\t\t\t\t\t[-84.358024, 36.959400],\n\t\t\t\t\t\t[-84.578158, 36.867133],\n\t\t\t\t\t\t[-84.679165, 36.980914],\n\t\t\t\t\t\t[-84.770172, 36.957735],\n\t\t\t\t\t\t[-84.835712, 36.997612],\n\t\t\t\t\t\t[-84.905778, 37.047187],\n\t\t\t\t\t\t[-84.901112, 37.116297],\n\t\t\t\t\t\t[-84.809338, 37.175034],\n\t\t\t\t\t\t[-84.720712, 37.238328]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21209\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"209\",\n\t\t\t\t\"NAME\": \"Scott\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 281.766000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.725168, 38.195426],\n\t\t\t\t\t\t[-84.730289, 38.208302],\n\t\t\t\t\t\t[-84.739684, 38.338035],\n\t\t\t\t\t\t[-84.740594, 38.352415],\n\t\t\t\t\t\t[-84.580539, 38.473039],\n\t\t\t\t\t\t[-84.560674, 38.492378],\n\t\t\t\t\t\t[-84.557375, 38.492917],\n\t\t\t\t\t\t[-84.443756, 38.324310],\n\t\t\t\t\t\t[-84.432831, 38.299442],\n\t\t\t\t\t\t[-84.440725, 38.296385],\n\t\t\t\t\t\t[-84.442661, 38.283236],\n\t\t\t\t\t\t[-84.401847, 38.207889],\n\t\t\t\t\t\t[-84.620650, 38.129527],\n\t\t\t\t\t\t[-84.625079, 38.116397],\n\t\t\t\t\t\t[-84.725168, 38.195426]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21219\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"219\",\n\t\t\t\t\"NAME\": \"Todd\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 374.496000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.114983, 36.642414],\n\t\t\t\t\t\t[-87.230530, 36.641895],\n\t\t\t\t\t\t[-87.231037, 36.641888],\n\t\t\t\t\t\t[-87.247655, 36.641841],\n\t\t\t\t\t\t[-87.278398, 36.641718],\n\t\t\t\t\t\t[-87.281506, 36.641761],\n\t\t\t\t\t\t[-87.335980, 36.641543],\n\t\t\t\t\t\t[-87.259371, 37.072401],\n\t\t\t\t\t\t[-87.250256, 37.040557],\n\t\t\t\t\t\t[-87.053164, 37.061019],\n\t\t\t\t\t\t[-87.060843, 36.643412],\n\t\t\t\t\t\t[-87.114976, 36.642414],\n\t\t\t\t\t\t[-87.114983, 36.642414]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21229\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"229\",\n\t\t\t\t\"NAME\": \"Washington\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 297.266000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.401784, 37.730658],\n\t\t\t\t\t\t[-85.299042, 37.831214],\n\t\t\t\t\t\t[-85.152797, 37.897661],\n\t\t\t\t\t\t[-85.030528, 37.891538],\n\t\t\t\t\t\t[-85.000529, 37.854642],\n\t\t\t\t\t\t[-85.025021, 37.678854],\n\t\t\t\t\t\t[-85.030172, 37.631270],\n\t\t\t\t\t\t[-85.257298, 37.630903],\n\t\t\t\t\t\t[-85.373639, 37.673343],\n\t\t\t\t\t\t[-85.401784, 37.730658]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22001\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"001\",\n\t\t\t\t\"NAME\": \"Acadia\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 655.119000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.284675, 30.147443],\n\t\t\t\t\t\t[-92.426039, 30.049369],\n\t\t\t\t\t\t[-92.534638, 30.107852],\n\t\t\t\t\t\t[-92.625484, 30.092330],\n\t\t\t\t\t\t[-92.591129, 30.182365],\n\t\t\t\t\t\t[-92.626612, 30.230272],\n\t\t\t\t\t\t[-92.631987, 30.481147],\n\t\t\t\t\t\t[-92.629063, 30.480614],\n\t\t\t\t\t\t[-92.493259, 30.480499],\n\t\t\t\t\t\t[-92.244795, 30.480193],\n\t\t\t\t\t\t[-92.176444, 30.436852],\n\t\t\t\t\t\t[-92.142184, 30.298817],\n\t\t\t\t\t\t[-92.284675, 30.147443]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22013\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"013\",\n\t\t\t\t\"NAME\": \"Bienville\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 811.268000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.428190, 32.235897],\n\t\t\t\t\t\t[-93.372781, 32.410153],\n\t\t\t\t\t\t[-93.236656, 32.410071],\n\t\t\t\t\t\t[-93.147193, 32.455173],\n\t\t\t\t\t\t[-93.178767, 32.584916],\n\t\t\t\t\t\t[-92.880805, 32.585277],\n\t\t\t\t\t\t[-92.879268, 32.454118],\n\t\t\t\t\t\t[-92.777197, 32.453455],\n\t\t\t\t\t\t[-92.774936, 32.237055],\n\t\t\t\t\t\t[-92.814737, 32.146907],\n\t\t\t\t\t\t[-92.939080, 32.147942],\n\t\t\t\t\t\t[-93.187162, 32.148412],\n\t\t\t\t\t\t[-93.213988, 32.236065],\n\t\t\t\t\t\t[-93.428190, 32.235897]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22033\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"033\",\n\t\t\t\t\"NAME\": \"East Baton Rouge\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 455.374000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.021014, 30.321489],\n\t\t\t\t\t\t[-91.142305, 30.319893],\n\t\t\t\t\t\t[-91.142332, 30.320437],\n\t\t\t\t\t\t[-91.142088, 30.322028],\n\t\t\t\t\t\t[-91.142042, 30.322718],\n\t\t\t\t\t\t[-91.142105, 30.323293],\n\t\t\t\t\t\t[-91.241508, 30.357592],\n\t\t\t\t\t\t[-91.197208, 30.507088],\n\t\t\t\t\t\t[-91.262734, 30.505238],\n\t\t\t\t\t\t[-91.297658, 30.649548],\n\t\t\t\t\t\t[-91.254419, 30.705294],\n\t\t\t\t\t\t[-90.849041, 30.719311],\n\t\t\t\t\t\t[-90.910701, 30.649385],\n\t\t\t\t\t\t[-90.980939, 30.589988],\n\t\t\t\t\t\t[-90.991529, 30.461818],\n\t\t\t\t\t\t[-90.891728, 30.345244],\n\t\t\t\t\t\t[-91.021014, 30.321489]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22053\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"053\",\n\t\t\t\t\"NAME\": \"Jefferson Davis\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 651.328000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.131155, 30.423612],\n\t\t\t\t\t\t[-93.065543, 30.438569],\n\t\t\t\t\t\t[-92.775554, 30.437656],\n\t\t\t\t\t\t[-92.722339, 30.488208],\n\t\t\t\t\t\t[-92.630347, 30.487873],\n\t\t\t\t\t\t[-92.629285, 30.486869],\n\t\t\t\t\t\t[-92.629471, 30.485586],\n\t\t\t\t\t\t[-92.630212, 30.485105],\n\t\t\t\t\t\t[-92.630028, 30.483569],\n\t\t\t\t\t\t[-92.630690, 30.483340],\n\t\t\t\t\t\t[-92.631933, 30.483707],\n\t\t\t\t\t\t[-92.633839, 30.483319],\n\t\t\t\t\t\t[-92.633495, 30.482287],\n\t\t\t\t\t\t[-92.631987, 30.481147],\n\t\t\t\t\t\t[-92.626612, 30.230272],\n\t\t\t\t\t\t[-92.591129, 30.182365],\n\t\t\t\t\t\t[-92.625484, 30.092330],\n\t\t\t\t\t\t[-92.738604, 30.037323],\n\t\t\t\t\t\t[-92.756546, 30.039326],\n\t\t\t\t\t\t[-92.996371, 30.038479],\n\t\t\t\t\t\t[-92.887605, 30.082475],\n\t\t\t\t\t\t[-92.893324, 30.156314],\n\t\t\t\t\t\t[-92.996300, 30.156955],\n\t\t\t\t\t\t[-93.030955, 30.379390],\n\t\t\t\t\t\t[-93.131109, 30.403057],\n\t\t\t\t\t\t[-93.131155, 30.423612]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22073\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"073\",\n\t\t\t\t\"NAME\": \"Ouachita\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 610.406000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.065179, 32.723003],\n\t\t\t\t\t\t[-91.910952, 32.661119],\n\t\t\t\t\t\t[-91.913057, 32.505902],\n\t\t\t\t\t\t[-92.004340, 32.380499],\n\t\t\t\t\t\t[-92.034397, 32.277068],\n\t\t\t\t\t\t[-92.311851, 32.277441],\n\t\t\t\t\t\t[-92.311829, 32.320755],\n\t\t\t\t\t\t[-92.415418, 32.407812],\n\t\t\t\t\t\t[-92.415350, 32.495486],\n\t\t\t\t\t\t[-92.415071, 32.582845],\n\t\t\t\t\t\t[-92.272313, 32.580975],\n\t\t\t\t\t\t[-92.065179, 32.723003]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22077\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"077\",\n\t\t\t\t\"NAME\": \"Pointe Coupee\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 557.346000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.414924, 30.535166],\n\t\t\t\t\t\t[-91.485089, 30.497138],\n\t\t\t\t\t\t[-91.700933, 30.497433],\n\t\t\t\t\t\t[-91.756193, 30.497738],\n\t\t\t\t\t\t[-91.733673, 30.701730],\n\t\t\t\t\t\t[-91.815258, 30.848107],\n\t\t\t\t\t\t[-91.805963, 30.972558],\n\t\t\t\t\t\t[-91.750119, 31.018814],\n\t\t\t\t\t\t[-91.662506, 30.970362],\n\t\t\t\t\t\t[-91.661372, 30.857099],\n\t\t\t\t\t\t[-91.515626, 30.861378],\n\t\t\t\t\t\t[-91.553019, 30.730798],\n\t\t\t\t\t\t[-91.380620, 30.758804],\n\t\t\t\t\t\t[-91.353092, 30.721770],\n\t\t\t\t\t\t[-91.340652, 30.670238],\n\t\t\t\t\t\t[-91.330870, 30.658677],\n\t\t\t\t\t\t[-91.414924, 30.535166]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22089\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"089\",\n\t\t\t\t\"NAME\": \"St. Charles\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 279.083000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.173202, 29.827524],\n\t\t\t\t\t\t[-90.228157, 29.692028],\n\t\t\t\t\t\t[-90.346191, 29.693302],\n\t\t\t\t\t\t[-90.371978, 29.759239],\n\t\t\t\t\t\t[-90.475418, 29.812210],\n\t\t\t\t\t\t[-90.541943, 29.891522],\n\t\t\t\t\t\t[-90.538132, 30.016884],\n\t\t\t\t\t\t[-90.449133, 30.032863],\n\t\t\t\t\t\t[-90.277855, 30.230888],\n\t\t\t\t\t\t[-90.279220, 30.049118],\n\t\t\t\t\t\t[-90.279739, 30.013338],\n\t\t\t\t\t\t[-90.279510, 30.006448],\n\t\t\t\t\t\t[-90.280143, 29.992744],\n\t\t\t\t\t\t[-90.280296, 29.972618],\n\t\t\t\t\t\t[-90.279533, 29.967971],\n\t\t\t\t\t\t[-90.240173, 29.862117],\n\t\t\t\t\t\t[-90.173202, 29.827524]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22105\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"105\",\n\t\t\t\t\"NAME\": \"Tangipahoa\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 791.275000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.369371, 31.000335],\n\t\t\t\t\t\t[-90.347241, 31.000359],\n\t\t\t\t\t\t[-90.255648, 30.711905],\n\t\t\t\t\t\t[-90.243034, 30.224447],\n\t\t\t\t\t\t[-90.277855, 30.230888],\n\t\t\t\t\t\t[-90.297375, 30.293658],\n\t\t\t\t\t\t[-90.401254, 30.285534],\n\t\t\t\t\t\t[-90.546118, 30.430283],\n\t\t\t\t\t\t[-90.567165, 30.650023],\n\t\t\t\t\t\t[-90.565857, 30.663902],\n\t\t\t\t\t\t[-90.567195, 30.999733],\n\t\t\t\t\t\t[-90.547615, 30.999723],\n\t\t\t\t\t\t[-90.486749, 30.999693],\n\t\t\t\t\t\t[-90.485876, 30.999740],\n\t\t\t\t\t\t[-90.477284, 30.999717],\n\t\t\t\t\t\t[-90.475928, 30.999740],\n\t\t\t\t\t\t[-90.474094, 30.999798],\n\t\t\t\t\t\t[-90.442479, 30.999722],\n\t\t\t\t\t\t[-90.441725, 30.999729],\n\t\t\t\t\t\t[-90.437351, 30.999730],\n\t\t\t\t\t\t[-90.426849, 30.999776],\n\t\t\t\t\t\t[-90.422117, 30.999810],\n\t\t\t\t\t\t[-90.369371, 31.000335]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22115\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"115\",\n\t\t\t\t\"NAME\": \"Vernon\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 1327.910000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.554576, 30.877470],\n\t\t\t\t\t\t[-93.530936, 30.924534],\n\t\t\t\t\t\t[-93.540354, 31.008135],\n\t\t\t\t\t\t[-93.527644, 31.074509],\n\t\t\t\t\t\t[-93.531744, 31.180817],\n\t\t\t\t\t\t[-93.535097, 31.185614],\n\t\t\t\t\t\t[-93.548931, 31.186601],\n\t\t\t\t\t\t[-93.552540, 31.185605],\n\t\t\t\t\t\t[-93.534919, 31.276579],\n\t\t\t\t\t\t[-93.442554, 31.276716],\n\t\t\t\t\t\t[-93.390495, 31.364147],\n\t\t\t\t\t\t[-93.236104, 31.364507],\n\t\t\t\t\t\t[-92.981464, 31.346644],\n\t\t\t\t\t\t[-92.879756, 31.317373],\n\t\t\t\t\t\t[-92.829651, 31.252281],\n\t\t\t\t\t\t[-92.823932, 30.890000],\n\t\t\t\t\t\t[-92.978453, 30.878175],\n\t\t\t\t\t\t[-93.554576, 30.877470]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21003\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"003\",\n\t\t\t\t\"NAME\": \"Allen\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 344.338000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.976421, 36.628400],\n\t\t\t\t\t\t[-86.032770, 36.630367],\n\t\t\t\t\t\t[-86.033139, 36.630413],\n\t\t\t\t\t\t[-86.038366, 36.630804],\n\t\t\t\t\t\t[-86.080666, 36.633940],\n\t\t\t\t\t\t[-86.081944, 36.633848],\n\t\t\t\t\t\t[-86.197573, 36.639363],\n\t\t\t\t\t\t[-86.204859, 36.639741],\n\t\t\t\t\t\t[-86.205468, 36.639783],\n\t\t\t\t\t\t[-86.216183, 36.640527],\n\t\t\t\t\t\t[-86.216410, 36.640595],\n\t\t\t\t\t\t[-86.219081, 36.640824],\n\t\t\t\t\t\t[-86.222151, 36.640891],\n\t\t\t\t\t\t[-86.333051, 36.648778],\n\t\t\t\t\t\t[-86.411387, 36.650550],\n\t\t\t\t\t\t[-86.405769, 36.776187],\n\t\t\t\t\t\t[-86.166740, 36.934015],\n\t\t\t\t\t\t[-85.976910, 36.722722],\n\t\t\t\t\t\t[-85.976421, 36.628400]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21009\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"009\",\n\t\t\t\t\"NAME\": \"Barren\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 487.541000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.113512, 37.061072],\n\t\t\t\t\t\t[-86.074267, 37.053285],\n\t\t\t\t\t\t[-86.056443, 37.167208],\n\t\t\t\t\t\t[-85.906336, 37.148377],\n\t\t\t\t\t\t[-85.744221, 37.169813],\n\t\t\t\t\t\t[-85.739255, 36.841476],\n\t\t\t\t\t\t[-85.976910, 36.722722],\n\t\t\t\t\t\t[-86.166740, 36.934015],\n\t\t\t\t\t\t[-86.113512, 37.061072]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21017\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"017\",\n\t\t\t\t\"NAME\": \"Bourbon\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 289.719000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.194050, 38.371750],\n\t\t\t\t\t\t[-84.120185, 38.275516],\n\t\t\t\t\t\t[-83.977924, 38.192118],\n\t\t\t\t\t\t[-84.080527, 38.115118],\n\t\t\t\t\t\t[-84.286461, 38.067028],\n\t\t\t\t\t\t[-84.380928, 38.113563],\n\t\t\t\t\t\t[-84.401847, 38.207889],\n\t\t\t\t\t\t[-84.442661, 38.283236],\n\t\t\t\t\t\t[-84.345476, 38.285099],\n\t\t\t\t\t\t[-84.194050, 38.371750]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21025\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"025\",\n\t\t\t\t\"NAME\": \"Breathitt\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 492.413000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.124348, 37.404973],\n\t\t\t\t\t\t[-83.214735, 37.443538],\n\t\t\t\t\t\t[-83.381650, 37.338266],\n\t\t\t\t\t\t[-83.449454, 37.378853],\n\t\t\t\t\t\t[-83.547628, 37.334418],\n\t\t\t\t\t\t[-83.579186, 37.506249],\n\t\t\t\t\t\t[-83.522308, 37.638516],\n\t\t\t\t\t\t[-83.418474, 37.690729],\n\t\t\t\t\t\t[-83.248692, 37.669616],\n\t\t\t\t\t\t[-83.134949, 37.606812],\n\t\t\t\t\t\t[-83.089796, 37.632167],\n\t\t\t\t\t\t[-82.948544, 37.503167],\n\t\t\t\t\t\t[-83.062266, 37.526231],\n\t\t\t\t\t\t[-83.134711, 37.457181],\n\t\t\t\t\t\t[-83.124348, 37.404973]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21031\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"031\",\n\t\t\t\t\"NAME\": \"Butler\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 426.088000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.618233, 37.391348],\n\t\t\t\t\t\t[-86.612095, 37.395123],\n\t\t\t\t\t\t[-86.487152, 37.362501],\n\t\t\t\t\t\t[-86.469126, 37.321099],\n\t\t\t\t\t\t[-86.399165, 37.169896],\n\t\t\t\t\t\t[-86.618158, 37.183906],\n\t\t\t\t\t\t[-86.674462, 36.999766],\n\t\t\t\t\t\t[-86.845350, 37.056513],\n\t\t\t\t\t\t[-86.941391, 37.068981],\n\t\t\t\t\t\t[-86.893911, 37.088478],\n\t\t\t\t\t\t[-86.899268, 37.212313],\n\t\t\t\t\t\t[-86.817168, 37.327616],\n\t\t\t\t\t\t[-86.759533, 37.304099],\n\t\t\t\t\t\t[-86.618233, 37.391348]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21043\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"043\",\n\t\t\t\t\"NAME\": \"Carter\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 409.496000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.341347, 38.319521],\n\t\t\t\t\t\t[-83.230680, 38.339286],\n\t\t\t\t\t\t[-83.237181, 38.426246],\n\t\t\t\t\t\t[-83.166419, 38.503965],\n\t\t\t\t\t\t[-83.051751, 38.465404],\n\t\t\t\t\t\t[-82.978590, 38.398857],\n\t\t\t\t\t\t[-82.817454, 38.373935],\n\t\t\t\t\t\t[-82.771737, 38.362588],\n\t\t\t\t\t\t[-82.794206, 38.243772],\n\t\t\t\t\t\t[-82.924805, 38.175114],\n\t\t\t\t\t\t[-83.053081, 38.189545],\n\t\t\t\t\t\t[-83.159191, 38.264537],\n\t\t\t\t\t\t[-83.244306, 38.192380],\n\t\t\t\t\t\t[-83.306662, 38.225241],\n\t\t\t\t\t\t[-83.341347, 38.319521]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21053\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"053\",\n\t\t\t\t\"NAME\": \"Clinton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 197.246000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.974888, 36.614327],\n\t\t\t\t\t\t[-85.086415, 36.621913],\n\t\t\t\t\t\t[-85.096128, 36.622483],\n\t\t\t\t\t\t[-85.276284, 36.626511],\n\t\t\t\t\t\t[-85.276289, 36.626511],\n\t\t\t\t\t\t[-85.295990, 36.625488],\n\t\t\t\t\t\t[-85.246357, 36.744294],\n\t\t\t\t\t\t[-85.215405, 36.854467],\n\t\t\t\t\t\t[-85.118411, 36.827334],\n\t\t\t\t\t\t[-85.064307, 36.858743],\n\t\t\t\t\t\t[-85.004099, 36.756237],\n\t\t\t\t\t\t[-84.974888, 36.614327]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21063\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"063\",\n\t\t\t\t\"NAME\": \"Elliott\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 234.315000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.924805, 38.175114],\n\t\t\t\t\t\t[-82.889059, 38.111587],\n\t\t\t\t\t\t[-83.022115, 38.007047],\n\t\t\t\t\t\t[-83.194445, 38.010649],\n\t\t\t\t\t\t[-83.263289, 38.115386],\n\t\t\t\t\t\t[-83.244306, 38.192380],\n\t\t\t\t\t\t[-83.159191, 38.264537],\n\t\t\t\t\t\t[-83.053081, 38.189545],\n\t\t\t\t\t\t[-82.924805, 38.175114]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21077\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"077\",\n\t\t\t\t\"NAME\": \"Gallatin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 101.234000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.660107, 38.777293],\n\t\t\t\t\t\t[-84.780766, 38.765208],\n\t\t\t\t\t\t[-84.785788, 38.720459],\n\t\t\t\t\t\t[-84.934536, 38.662130],\n\t\t\t\t\t\t[-85.024205, 38.763311],\n\t\t\t\t\t\t[-84.995939, 38.776756],\n\t\t\t\t\t\t[-84.984627, 38.779072],\n\t\t\t\t\t\t[-84.973432, 38.778847],\n\t\t\t\t\t\t[-84.944296, 38.775184],\n\t\t\t\t\t\t[-84.844412, 38.787078],\n\t\t\t\t\t\t[-84.813350, 38.798330],\n\t\t\t\t\t\t[-84.791078, 38.855859],\n\t\t\t\t\t\t[-84.660107, 38.777293]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21087\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"087\",\n\t\t\t\t\"NAME\": \"Green\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 286.034000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.657332, 37.421996],\n\t\t\t\t\t\t[-85.583497, 37.469917],\n\t\t\t\t\t\t[-85.584477, 37.432091],\n\t\t\t\t\t\t[-85.478081, 37.363673],\n\t\t\t\t\t\t[-85.352771, 37.192432],\n\t\t\t\t\t\t[-85.380258, 37.168314],\n\t\t\t\t\t\t[-85.526881, 37.109450],\n\t\t\t\t\t\t[-85.632313, 37.125056],\n\t\t\t\t\t\t[-85.686482, 37.182427],\n\t\t\t\t\t\t[-85.697325, 37.301838],\n\t\t\t\t\t\t[-85.657332, 37.421996]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21099\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"099\",\n\t\t\t\t\"NAME\": \"Hart\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 412.086000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.047598, 37.449933],\n\t\t\t\t\t\t[-85.892804, 37.440308],\n\t\t\t\t\t\t[-85.657332, 37.421996],\n\t\t\t\t\t\t[-85.697325, 37.301838],\n\t\t\t\t\t\t[-85.686482, 37.182427],\n\t\t\t\t\t\t[-85.743919, 37.169861],\n\t\t\t\t\t\t[-85.744221, 37.169813],\n\t\t\t\t\t\t[-85.906336, 37.148377],\n\t\t\t\t\t\t[-86.056443, 37.167208],\n\t\t\t\t\t\t[-86.049133, 37.215285],\n\t\t\t\t\t\t[-86.157589, 37.335649],\n\t\t\t\t\t\t[-86.064554, 37.348613],\n\t\t\t\t\t\t[-86.072351, 37.381071],\n\t\t\t\t\t\t[-86.019089, 37.394537],\n\t\t\t\t\t\t[-86.047598, 37.449933]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21103\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"103\",\n\t\t\t\t\"NAME\": \"Henry\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 286.276000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.870482, 38.356751],\n\t\t\t\t\t\t[-84.997667, 38.335586],\n\t\t\t\t\t\t[-85.283082, 38.358054],\n\t\t\t\t\t\t[-85.346080, 38.459540],\n\t\t\t\t\t\t[-85.314006, 38.492592],\n\t\t\t\t\t\t[-85.168270, 38.585448],\n\t\t\t\t\t\t[-85.074583, 38.596838],\n\t\t\t\t\t\t[-84.977166, 38.512989],\n\t\t\t\t\t\t[-84.963265, 38.437358],\n\t\t\t\t\t\t[-84.880248, 38.416180],\n\t\t\t\t\t\t[-84.870482, 38.356751]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21115\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"115\",\n\t\t\t\t\"NAME\": \"Johnson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 261.953000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.940763, 37.716338],\n\t\t\t\t\t\t[-83.004649, 37.859247],\n\t\t\t\t\t\t[-82.989014, 37.963968],\n\t\t\t\t\t\t[-82.947936, 38.000431],\n\t\t\t\t\t\t[-82.612393, 37.879272],\n\t\t\t\t\t\t[-82.670887, 37.851823],\n\t\t\t\t\t\t[-82.640750, 37.720182],\n\t\t\t\t\t\t[-82.763313, 37.756120],\n\t\t\t\t\t\t[-82.940763, 37.716338]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21121\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"121\",\n\t\t\t\t\"NAME\": \"Knox\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 386.297000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.589521, 36.955786],\n\t\t\t\t\t\t[-83.581094, 36.904667],\n\t\t\t\t\t\t[-83.798248, 36.785197],\n\t\t\t\t\t\t[-83.877503, 36.687259],\n\t\t\t\t\t\t[-83.958534, 36.727245],\n\t\t\t\t\t\t[-84.065755, 36.853961],\n\t\t\t\t\t\t[-84.091853, 36.955992],\n\t\t\t\t\t\t[-83.959385, 36.977128],\n\t\t\t\t\t\t[-83.871315, 37.054919],\n\t\t\t\t\t\t[-83.589521, 36.955786]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21137\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"137\",\n\t\t\t\t\"NAME\": \"Lincoln\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 334.095000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.648083, 37.290416],\n\t\t\t\t\t\t[-84.720712, 37.238328],\n\t\t\t\t\t\t[-84.722826, 37.360043],\n\t\t\t\t\t\t[-84.850816, 37.427143],\n\t\t\t\t\t\t[-84.847326, 37.547894],\n\t\t\t\t\t\t[-84.801112, 37.568776],\n\t\t\t\t\t\t[-84.658296, 37.634501],\n\t\t\t\t\t\t[-84.446719, 37.485893],\n\t\t\t\t\t\t[-84.502932, 37.328801],\n\t\t\t\t\t\t[-84.556461, 37.355729],\n\t\t\t\t\t\t[-84.648083, 37.290416]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21143\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"143\",\n\t\t\t\t\"NAME\": \"Lyon\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 213.840000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.095781, 37.179684],\n\t\t\t\t\t\t[-88.042142, 37.174756],\n\t\t\t\t\t\t[-87.876996, 36.960116],\n\t\t\t\t\t\t[-88.157347, 36.867183],\n\t\t\t\t\t\t[-88.240371, 36.981911],\n\t\t\t\t\t\t[-88.209221, 36.999976],\n\t\t\t\t\t\t[-88.231145, 37.081575],\n\t\t\t\t\t\t[-88.193519, 37.147256],\n\t\t\t\t\t\t[-88.095781, 37.179684]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21151\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"151\",\n\t\t\t\t\"NAME\": \"Madison\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 437.293000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.347805, 37.539064],\n\t\t\t\t\t\t[-84.525643, 37.769497],\n\t\t\t\t\t\t[-84.435720, 37.847202],\n\t\t\t\t\t\t[-84.337393, 37.892007],\n\t\t\t\t\t\t[-84.080337, 37.853066],\n\t\t\t\t\t\t[-84.090364, 37.566227],\n\t\t\t\t\t\t[-84.199489, 37.522858],\n\t\t\t\t\t\t[-84.347805, 37.539064]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21157\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"157\",\n\t\t\t\t\"NAME\": \"Marshall\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 301.253000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.485697, 36.750328],\n\t\t\t\t\t\t[-88.484103, 36.942096],\n\t\t\t\t\t\t[-88.485254, 37.001109],\n\t\t\t\t\t\t[-88.482957, 37.022566],\n\t\t\t\t\t\t[-88.365595, 37.064183],\n\t\t\t\t\t\t[-88.240371, 36.981911],\n\t\t\t\t\t\t[-88.157347, 36.867183],\n\t\t\t\t\t\t[-88.110831, 36.747150],\n\t\t\t\t\t\t[-88.485697, 36.750328]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21169\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"169\",\n\t\t\t\t\"NAME\": \"Metcalfe\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 289.645000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.744221, 37.169813],\n\t\t\t\t\t\t[-85.743919, 37.169861],\n\t\t\t\t\t\t[-85.686482, 37.182427],\n\t\t\t\t\t\t[-85.632313, 37.125056],\n\t\t\t\t\t\t[-85.526881, 37.109450],\n\t\t\t\t\t\t[-85.451830, 36.938138],\n\t\t\t\t\t\t[-85.596214, 36.818039],\n\t\t\t\t\t\t[-85.739255, 36.841476],\n\t\t\t\t\t\t[-85.744221, 37.169813]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21175\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"175\",\n\t\t\t\t\"NAME\": \"Morgan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 381.127000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.022115, 38.007047],\n\t\t\t\t\t\t[-83.016058, 37.974221],\n\t\t\t\t\t\t[-82.989014, 37.963968],\n\t\t\t\t\t\t[-83.004649, 37.859247],\n\t\t\t\t\t\t[-83.113277, 37.864121],\n\t\t\t\t\t\t[-83.269662, 37.766012],\n\t\t\t\t\t\t[-83.262172, 37.712657],\n\t\t\t\t\t\t[-83.495080, 37.861906],\n\t\t\t\t\t\t[-83.433942, 38.033974],\n\t\t\t\t\t\t[-83.263289, 38.115386],\n\t\t\t\t\t\t[-83.194445, 38.010649],\n\t\t\t\t\t\t[-83.022115, 38.007047]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19045\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"045\",\n\t\t\t\t\"NAME\": \"Clinton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 694.915000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.152104, 41.928947],\n\t\t\t\t\t\t[-90.181973, 41.807070],\n\t\t\t\t\t\t[-90.187969, 41.803163],\n\t\t\t\t\t\t[-90.208440, 41.797176],\n\t\t\t\t\t\t[-90.222263, 41.793133],\n\t\t\t\t\t\t[-90.242747, 41.783767],\n\t\t\t\t\t\t[-90.278633, 41.767358],\n\t\t\t\t\t\t[-90.302782, 41.750031],\n\t\t\t\t\t\t[-90.309826, 41.743321],\n\t\t\t\t\t\t[-90.315220, 41.734264],\n\t\t\t\t\t\t[-90.317041, 41.729104],\n\t\t\t\t\t\t[-90.473617, 41.773465],\n\t\t\t\t\t\t[-90.898373, 41.771392],\n\t\t\t\t\t\t[-90.898484, 41.946245],\n\t\t\t\t\t\t[-90.898373, 42.033548],\n\t\t\t\t\t\t[-90.154221, 42.033073],\n\t\t\t\t\t\t[-90.150916, 42.029440],\n\t\t\t\t\t\t[-90.141167, 42.008931],\n\t\t\t\t\t\t[-90.140613, 41.995999],\n\t\t\t\t\t\t[-90.151600, 41.931002],\n\t\t\t\t\t\t[-90.152104, 41.928947]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19047\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"047\",\n\t\t\t\t\"NAME\": \"Crawford\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 714.190000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.092861, 41.863374],\n\t\t\t\t\t\t[-95.557277, 41.863449],\n\t\t\t\t\t\t[-95.672771, 41.863147],\n\t\t\t\t\t\t[-95.670822, 42.211408],\n\t\t\t\t\t\t[-95.323497, 42.210932],\n\t\t\t\t\t\t[-95.090851, 42.210405],\n\t\t\t\t\t\t[-95.092861, 41.863374]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19055\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"055\",\n\t\t\t\t\"NAME\": \"Delaware\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 577.756000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.363263, 42.296445],\n\t\t\t\t\t\t[-91.596981, 42.296408],\n\t\t\t\t\t\t[-91.607059, 42.643973],\n\t\t\t\t\t\t[-91.132766, 42.645844],\n\t\t\t\t\t\t[-91.130079, 42.295761],\n\t\t\t\t\t\t[-91.363263, 42.296445]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19063\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"063\",\n\t\t\t\t\"NAME\": \"Emmet\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 395.883000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.854555, 43.500614],\n\t\t\t\t\t\t[-94.615916, 43.500544],\n\t\t\t\t\t\t[-94.565665, 43.500330],\n\t\t\t\t\t\t[-94.560838, 43.500377],\n\t\t\t\t\t\t[-94.470420, 43.500340],\n\t\t\t\t\t\t[-94.447048, 43.500639],\n\t\t\t\t\t\t[-94.442848, 43.500583],\n\t\t\t\t\t\t[-94.443137, 43.255014],\n\t\t\t\t\t\t[-94.913723, 43.255054],\n\t\t\t\t\t\t[-94.914843, 43.499103],\n\t\t\t\t\t\t[-94.914634, 43.500450],\n\t\t\t\t\t\t[-94.914523, 43.500450],\n\t\t\t\t\t\t[-94.887291, 43.500502],\n\t\t\t\t\t\t[-94.874235, 43.500557],\n\t\t\t\t\t\t[-94.872725, 43.500564],\n\t\t\t\t\t\t[-94.860192, 43.500546],\n\t\t\t\t\t\t[-94.857867, 43.500615],\n\t\t\t\t\t\t[-94.854555, 43.500614]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19067\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"067\",\n\t\t\t\t\"NAME\": \"Floyd\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 500.632000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.025144, 42.907549],\n\t\t\t\t\t\t[-93.024092, 43.212812],\n\t\t\t\t\t\t[-92.554381, 43.212813],\n\t\t\t\t\t\t[-92.554211, 42.907112],\n\t\t\t\t\t\t[-93.025144, 42.907549]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19079\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"079\",\n\t\t\t\t\"NAME\": \"Hamilton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 576.751000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.698390, 42.209339],\n\t\t\t\t\t\t[-93.931581, 42.210095],\n\t\t\t\t\t\t[-93.931684, 42.472011],\n\t\t\t\t\t\t[-93.971583, 42.558139],\n\t\t\t\t\t\t[-93.500212, 42.557836],\n\t\t\t\t\t\t[-93.499485, 42.557700],\n\t\t\t\t\t\t[-93.462635, 42.470802],\n\t\t\t\t\t\t[-93.463043, 42.209302],\n\t\t\t\t\t\t[-93.698390, 42.209339]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19087\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"087\",\n\t\t\t\t\"NAME\": \"Henry\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 434.328000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.370710, 41.074112],\n\t\t\t\t\t\t[-91.372095, 40.812631],\n\t\t\t\t\t\t[-91.409324, 40.812682],\n\t\t\t\t\t\t[-91.718787, 40.813544],\n\t\t\t\t\t\t[-91.718268, 40.900805],\n\t\t\t\t\t\t[-91.715893, 41.162822],\n\t\t\t\t\t\t[-91.485717, 41.162405],\n\t\t\t\t\t\t[-91.370298, 41.161247],\n\t\t\t\t\t\t[-91.370710, 41.074112]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19095\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"095\",\n\t\t\t\t\"NAME\": \"Iowa\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 586.457000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.297494, 41.509790],\n\t\t\t\t\t\t[-92.298164, 41.862779],\n\t\t\t\t\t\t[-91.831379, 41.861851],\n\t\t\t\t\t\t[-91.829231, 41.511457],\n\t\t\t\t\t\t[-91.946043, 41.510749],\n\t\t\t\t\t\t[-92.297494, 41.509790]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19105\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"105\",\n\t\t\t\t\"NAME\": \"Jones\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 575.621000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.365789, 41.947410],\n\t\t\t\t\t\t[-91.363263, 42.296445],\n\t\t\t\t\t\t[-91.130079, 42.295761],\n\t\t\t\t\t\t[-90.898020, 42.295236],\n\t\t\t\t\t\t[-90.898373, 42.033548],\n\t\t\t\t\t\t[-90.898484, 41.946245],\n\t\t\t\t\t\t[-91.365789, 41.947410]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19113\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"113\",\n\t\t\t\t\"NAME\": \"Linn\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 716.880000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.365789, 41.947410],\n\t\t\t\t\t\t[-91.366079, 41.860068],\n\t\t\t\t\t\t[-91.831379, 41.861851],\n\t\t\t\t\t\t[-91.831089, 42.299063],\n\t\t\t\t\t\t[-91.596981, 42.296408],\n\t\t\t\t\t\t[-91.363263, 42.296445],\n\t\t\t\t\t\t[-91.365789, 41.947410]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19121\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"121\",\n\t\t\t\t\"NAME\": \"Madison\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 561.006000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.241637, 41.157134],\n\t\t\t\t\t\t[-94.241593, 41.503679],\n\t\t\t\t\t\t[-93.896807, 41.503098],\n\t\t\t\t\t\t[-93.790612, 41.511916],\n\t\t\t\t\t\t[-93.789196, 41.162035],\n\t\t\t\t\t\t[-93.898813, 41.156610],\n\t\t\t\t\t\t[-94.014189, 41.156762],\n\t\t\t\t\t\t[-94.241637, 41.157134]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19125\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"125\",\n\t\t\t\t\"NAME\": \"Marion\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 554.534000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.327886, 41.160659],\n\t\t\t\t\t\t[-93.328407, 41.490921],\n\t\t\t\t\t\t[-93.328486, 41.491340],\n\t\t\t\t\t\t[-93.328614, 41.507824],\n\t\t\t\t\t\t[-92.871421, 41.508522],\n\t\t\t\t\t\t[-92.869771, 41.161066],\n\t\t\t\t\t\t[-93.099217, 41.160867],\n\t\t\t\t\t\t[-93.327886, 41.160659]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19137\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"137\",\n\t\t\t\t\"NAME\": \"Montgomery\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 424.097000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.927587, 41.158508],\n\t\t\t\t\t\t[-94.928459, 40.900653],\n\t\t\t\t\t\t[-95.384964, 40.901550],\n\t\t\t\t\t\t[-95.384349, 41.160011],\n\t\t\t\t\t\t[-95.155851, 41.159236],\n\t\t\t\t\t\t[-95.154115, 41.159145],\n\t\t\t\t\t\t[-94.927587, 41.158508]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19141\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"141\",\n\t\t\t\t\"NAME\": \"O'Brien\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 573.035000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.388078, 43.255221],\n\t\t\t\t\t\t[-95.388182, 42.909897],\n\t\t\t\t\t\t[-95.859377, 42.909097],\n\t\t\t\t\t\t[-95.861914, 43.257566],\n\t\t\t\t\t\t[-95.388078, 43.255221]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19151\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"151\",\n\t\t\t\t\"NAME\": \"Pocahontas\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 577.241000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.443083, 42.645164],\n\t\t\t\t\t\t[-94.443024, 42.558843],\n\t\t\t\t\t\t[-94.914485, 42.560309],\n\t\t\t\t\t\t[-94.913890, 42.909700],\n\t\t\t\t\t\t[-94.442954, 42.908073],\n\t\t\t\t\t\t[-94.443083, 42.645164]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19161\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"161\",\n\t\t\t\t\"NAME\": \"Sac\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 575.012000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.914485, 42.560309],\n\t\t\t\t\t\t[-94.914487, 42.474190],\n\t\t\t\t\t\t[-94.856702, 42.473967],\n\t\t\t\t\t\t[-94.858412, 42.209692],\n\t\t\t\t\t\t[-95.090851, 42.210405],\n\t\t\t\t\t\t[-95.323497, 42.210932],\n\t\t\t\t\t\t[-95.322357, 42.474737],\n\t\t\t\t\t\t[-95.387445, 42.474796],\n\t\t\t\t\t\t[-95.388010, 42.561742],\n\t\t\t\t\t\t[-94.914485, 42.560309]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19169\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"169\",\n\t\t\t\t\"NAME\": \"Story\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 572.818000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.231858, 41.862711],\n\t\t\t\t\t\t[-93.347933, 41.863104],\n\t\t\t\t\t\t[-93.698032, 41.863370],\n\t\t\t\t\t\t[-93.698390, 42.209339],\n\t\t\t\t\t\t[-93.463043, 42.209302],\n\t\t\t\t\t\t[-93.231722, 42.208886],\n\t\t\t\t\t\t[-93.231858, 41.862711]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19175\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"175\",\n\t\t\t\t\"NAME\": \"Union\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 423.645000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.241637, 41.157134],\n\t\t\t\t\t\t[-94.014189, 41.156762],\n\t\t\t\t\t\t[-94.014803, 40.897031],\n\t\t\t\t\t\t[-94.470779, 40.899502],\n\t\t\t\t\t\t[-94.470603, 41.157566],\n\t\t\t\t\t\t[-94.241637, 41.157134]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19181\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"181\",\n\t\t\t\t\"NAME\": \"Warren\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 569.827000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.327886, 41.160659],\n\t\t\t\t\t\t[-93.557556, 41.161271],\n\t\t\t\t\t\t[-93.789196, 41.162035],\n\t\t\t\t\t\t[-93.790612, 41.511916],\n\t\t\t\t\t\t[-93.412260, 41.505549],\n\t\t\t\t\t\t[-93.328407, 41.490921],\n\t\t\t\t\t\t[-93.327886, 41.160659]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19195\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"195\",\n\t\t\t\t\"NAME\": \"Worth\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 400.123000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.049192, 43.499571],\n\t\t\t\t\t\t[-93.024429, 43.499572],\n\t\t\t\t\t\t[-93.024348, 43.499572],\n\t\t\t\t\t\t[-93.024143, 43.255538],\n\t\t\t\t\t\t[-93.497635, 43.255468],\n\t\t\t\t\t\t[-93.497350, 43.499456],\n\t\t\t\t\t\t[-93.488261, 43.499417],\n\t\t\t\t\t\t[-93.482009, 43.499482],\n\t\t\t\t\t\t[-93.472804, 43.499400],\n\t\t\t\t\t\t[-93.468563, 43.499473],\n\t\t\t\t\t\t[-93.428509, 43.499478],\n\t\t\t\t\t\t[-93.399035, 43.499485],\n\t\t\t\t\t\t[-93.271800, 43.499356],\n\t\t\t\t\t\t[-93.228861, 43.499567],\n\t\t\t\t\t\t[-93.049192, 43.499571]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20005\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"005\",\n\t\t\t\t\"NAME\": \"Atchison\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 431.172000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.069592, 39.615106],\n\t\t\t\t\t\t[-95.107454, 39.573843],\n\t\t\t\t\t\t[-95.113077, 39.559133],\n\t\t\t\t\t\t[-95.113557, 39.553941],\n\t\t\t\t\t\t[-95.109304, 39.542285],\n\t\t\t\t\t\t[-95.102888, 39.533347],\n\t\t\t\t\t\t[-94.969061, 39.418876],\n\t\t\t\t\t\t[-95.180891, 39.419218],\n\t\t\t\t\t\t[-95.570351, 39.419050],\n\t\t\t\t\t\t[-95.564126, 39.652872],\n\t\t\t\t\t\t[-95.339740, 39.652980],\n\t\t\t\t\t\t[-95.115189, 39.652549],\n\t\t\t\t\t\t[-95.069592, 39.615106]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20015\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"015\",\n\t\t\t\t\"NAME\": \"Butler\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1429.863000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.522782, 38.086370],\n\t\t\t\t\t\t[-96.523755, 37.955899],\n\t\t\t\t\t\t[-96.525300, 37.607015],\n\t\t\t\t\t\t[-96.525690, 37.476405],\n\t\t\t\t\t\t[-97.153331, 37.475544],\n\t\t\t\t\t\t[-97.152476, 37.912733],\n\t\t\t\t\t\t[-97.152913, 38.087704],\n\t\t\t\t\t\t[-96.840772, 38.085622],\n\t\t\t\t\t\t[-96.522782, 38.086370]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27073\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"073\",\n\t\t\t\t\"NAME\": \"Lac qui Parle\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 765.021000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.452092, 44.977494],\n\t\t\t\t\t\t[-96.452240, 45.042347],\n\t\t\t\t\t\t[-96.452177, 45.050185],\n\t\t\t\t\t\t[-96.452210, 45.051602],\n\t\t\t\t\t\t[-96.452219, 45.093836],\n\t\t\t\t\t\t[-96.452026, 45.095138],\n\t\t\t\t\t\t[-96.452418, 45.122677],\n\t\t\t\t\t\t[-96.452353, 45.124071],\n\t\t\t\t\t\t[-96.452304, 45.178563],\n\t\t\t\t\t\t[-96.452162, 45.203109],\n\t\t\t\t\t\t[-96.452152, 45.204849],\n\t\t\t\t\t\t[-96.452315, 45.208986],\n\t\t\t\t\t\t[-96.452948, 45.268925],\n\t\t\t\t\t\t[-96.283470, 45.246972],\n\t\t\t\t\t\t[-96.103614, 45.176675],\n\t\t\t\t\t\t[-96.084646, 45.165762],\n\t\t\t\t\t\t[-96.075686, 45.165935],\n\t\t\t\t\t\t[-96.053511, 45.156453],\n\t\t\t\t\t\t[-96.048217, 45.158430],\n\t\t\t\t\t\t[-96.036698, 45.152206],\n\t\t\t\t\t\t[-95.737015, 44.936180],\n\t\t\t\t\t\t[-95.737309, 44.891479],\n\t\t\t\t\t\t[-95.847452, 44.891799],\n\t\t\t\t\t\t[-95.849009, 44.805347],\n\t\t\t\t\t\t[-96.451560, 44.805569],\n\t\t\t\t\t\t[-96.452009, 44.890080],\n\t\t\t\t\t\t[-96.451853, 44.906672],\n\t\t\t\t\t\t[-96.452047, 44.910695],\n\t\t\t\t\t\t[-96.452347, 44.962734],\n\t\t\t\t\t\t[-96.452092, 44.977475],\n\t\t\t\t\t\t[-96.452092, 44.977494]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27083\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"083\",\n\t\t\t\t\"NAME\": \"Lyon\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 714.559000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.063778, 44.196425],\n\t\t\t\t\t\t[-96.078580, 44.196620],\n\t\t\t\t\t\t[-96.092950, 44.630486],\n\t\t\t\t\t\t[-95.604001, 44.629945],\n\t\t\t\t\t\t[-95.594817, 44.542305],\n\t\t\t\t\t\t[-95.593570, 44.195530],\n\t\t\t\t\t\t[-96.063778, 44.196425]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27085\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"085\",\n\t\t\t\t\"NAME\": \"McLeod\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 491.471000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.502395, 44.892295],\n\t\t\t\t\t\t[-94.501885, 44.979695],\n\t\t\t\t\t\t[-94.256074, 44.979465],\n\t\t\t\t\t\t[-94.012236, 44.978712],\n\t\t\t\t\t\t[-94.010494, 44.717464],\n\t\t\t\t\t\t[-94.254076, 44.717855],\n\t\t\t\t\t\t[-94.254719, 44.630311],\n\t\t\t\t\t\t[-94.497835, 44.629921],\n\t\t\t\t\t\t[-94.498074, 44.717171],\n\t\t\t\t\t\t[-94.497730, 44.892334],\n\t\t\t\t\t\t[-94.502395, 44.892295]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27093\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"093\",\n\t\t\t\t\"NAME\": \"Meeker\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 608.178000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.256074, 44.979465],\n\t\t\t\t\t\t[-94.501885, 44.979695],\n\t\t\t\t\t\t[-94.502395, 44.892295],\n\t\t\t\t\t\t[-94.758189, 44.892097],\n\t\t\t\t\t\t[-94.763080, 45.326100],\n\t\t\t\t\t\t[-94.383556, 45.326705],\n\t\t\t\t\t\t[-94.383449, 45.282797],\n\t\t\t\t\t\t[-94.260821, 45.283941],\n\t\t\t\t\t\t[-94.256074, 44.979465]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27103\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"103\",\n\t\t\t\t\"NAME\": \"Nicollet\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 448.494000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.780630, 44.456650],\n\t\t\t\t\t\t[-94.624200, 44.456030],\n\t\t\t\t\t\t[-93.929550, 44.456640],\n\t\t\t\t\t\t[-93.932685, 44.344885],\n\t\t\t\t\t\t[-94.011834, 44.239192],\n\t\t\t\t\t\t[-94.055349, 44.154018],\n\t\t\t\t\t\t[-94.371731, 44.264448],\n\t\t\t\t\t\t[-94.522958, 44.365391],\n\t\t\t\t\t\t[-94.666062, 44.394048],\n\t\t\t\t\t\t[-94.780630, 44.456650]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27113\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"113\",\n\t\t\t\t\"NAME\": \"Pennington\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 616.570000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.500843, 48.174108],\n\t\t\t\t\t\t[-95.593788, 48.172916],\n\t\t\t\t\t\t[-95.592487, 48.020558],\n\t\t\t\t\t\t[-95.582887, 48.020557],\n\t\t\t\t\t\t[-95.582155, 47.933966],\n\t\t\t\t\t\t[-95.709619, 47.935805],\n\t\t\t\t\t\t[-95.709840, 47.964330],\n\t\t\t\t\t\t[-96.482550, 47.963595],\n\t\t\t\t\t\t[-96.500843, 48.174108]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27121\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"121\",\n\t\t\t\t\"NAME\": \"Pope\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 669.713000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.747402, 45.412313],\n\t\t\t\t\t\t[-95.758508, 45.759932],\n\t\t\t\t\t\t[-95.139670, 45.758891],\n\t\t\t\t\t\t[-95.131730, 45.412402],\n\t\t\t\t\t\t[-95.255206, 45.412525],\n\t\t\t\t\t\t[-95.747402, 45.412313]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27127\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"127\",\n\t\t\t\t\"NAME\": \"Redwood\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 878.572000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.865824, 44.498218],\n\t\t\t\t\t\t[-94.866259, 44.282372],\n\t\t\t\t\t\t[-95.107480, 44.281768],\n\t\t\t\t\t\t[-95.108777, 44.195044],\n\t\t\t\t\t\t[-95.462547, 44.195942],\n\t\t\t\t\t\t[-95.593570, 44.195530],\n\t\t\t\t\t\t[-95.594817, 44.542305],\n\t\t\t\t\t\t[-95.360400, 44.541762],\n\t\t\t\t\t\t[-95.360177, 44.698540],\n\t\t\t\t\t\t[-95.132652, 44.596443],\n\t\t\t\t\t\t[-94.865824, 44.498218]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27147\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"147\",\n\t\t\t\t\"NAME\": \"Steele\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 429.645000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.045910, 44.196716],\n\t\t\t\t\t\t[-93.045570, 43.850021],\n\t\t\t\t\t\t[-93.045966, 43.848467],\n\t\t\t\t\t\t[-93.049413, 43.848454],\n\t\t\t\t\t\t[-93.049524, 43.848443],\n\t\t\t\t\t\t[-93.406642, 43.848120],\n\t\t\t\t\t\t[-93.406565, 44.196377],\n\t\t\t\t\t\t[-93.045910, 44.196716]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27153\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"153\",\n\t\t\t\t\"NAME\": \"Todd\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 944.982000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.643990, 45.773950],\n\t\t\t\t\t\t[-94.766899, 45.773911],\n\t\t\t\t\t\t[-95.139731, 45.773416],\n\t\t\t\t\t\t[-95.145880, 46.106761],\n\t\t\t\t\t\t[-95.155570, 46.368880],\n\t\t\t\t\t\t[-94.731442, 46.368605],\n\t\t\t\t\t\t[-94.722769, 46.352321],\n\t\t\t\t\t\t[-94.653462, 46.348678],\n\t\t\t\t\t\t[-94.643990, 45.773950]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27161\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"161\",\n\t\t\t\t\"NAME\": \"Waseca\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 423.356000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.767971, 44.195836],\n\t\t\t\t\t\t[-93.727389, 44.196104],\n\t\t\t\t\t\t[-93.646696, 44.195993],\n\t\t\t\t\t\t[-93.525230, 44.195975],\n\t\t\t\t\t\t[-93.406565, 44.196377],\n\t\t\t\t\t\t[-93.406642, 43.848120],\n\t\t\t\t\t\t[-93.648290, 43.848139],\n\t\t\t\t\t\t[-93.767761, 43.847956],\n\t\t\t\t\t\t[-93.767971, 44.195836]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28003\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"003\",\n\t\t\t\t\"NAME\": \"Alcorn\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 400.038000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.786612, 34.995252],\n\t\t\t\t\t\t[-88.469877, 34.996033],\n\t\t\t\t\t\t[-88.469801, 34.996052],\n\t\t\t\t\t\t[-88.380508, 34.995610],\n\t\t\t\t\t\t[-88.363531, 34.995590],\n\t\t\t\t\t\t[-88.365472, 34.755604],\n\t\t\t\t\t\t[-88.718508, 34.756781],\n\t\t\t\t\t\t[-88.752956, 34.858775],\n\t\t\t\t\t\t[-88.823473, 34.858629],\n\t\t\t\t\t\t[-88.823049, 34.995157],\n\t\t\t\t\t\t[-88.786612, 34.995252]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28013\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"013\",\n\t\t\t\t\"NAME\": \"Calhoun\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 586.573000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.507135, 33.721819],\n\t\t\t\t\t\t[-89.507353, 33.867469],\n\t\t\t\t\t\t[-89.509748, 34.162082],\n\t\t\t\t\t\t[-89.250072, 34.161022],\n\t\t\t\t\t\t[-89.245485, 34.161186],\n\t\t\t\t\t\t[-89.244436, 34.073942],\n\t\t\t\t\t\t[-89.139158, 34.074116],\n\t\t\t\t\t\t[-89.137876, 33.812144],\n\t\t\t\t\t\t[-89.191781, 33.738602],\n\t\t\t\t\t\t[-89.191924, 33.722158],\n\t\t\t\t\t\t[-89.507135, 33.721819]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28017\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"017\",\n\t\t\t\t\"NAME\": \"Chickasaw\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 501.779000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.824523, 34.074948],\n\t\t\t\t\t\t[-88.725125, 34.074815],\n\t\t\t\t\t\t[-88.718964, 34.074521],\n\t\t\t\t\t\t[-88.719979, 33.811330],\n\t\t\t\t\t\t[-88.931176, 33.812374],\n\t\t\t\t\t\t[-88.931604, 33.754312],\n\t\t\t\t\t\t[-89.034498, 33.739430],\n\t\t\t\t\t\t[-89.191781, 33.738602],\n\t\t\t\t\t\t[-89.137876, 33.812144],\n\t\t\t\t\t\t[-89.139158, 34.074116],\n\t\t\t\t\t\t[-88.824523, 34.074948]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28029\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"029\",\n\t\t\t\t\"NAME\": \"Copiah\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 777.244000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.736824, 31.698491],\n\t\t\t\t\t\t[-90.736282, 31.786134],\n\t\t\t\t\t\t[-90.716785, 31.844583],\n\t\t\t\t\t\t[-90.718297, 32.048352],\n\t\t\t\t\t\t[-90.230331, 32.049728],\n\t\t\t\t\t\t[-90.132552, 31.856923],\n\t\t\t\t\t\t[-90.122565, 31.752680],\n\t\t\t\t\t\t[-90.245191, 31.717524],\n\t\t\t\t\t\t[-90.279953, 31.699865],\n\t\t\t\t\t\t[-90.736824, 31.698491]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28037\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"037\",\n\t\t\t\t\"NAME\": \"Franklin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 563.779000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.737330, 31.611124],\n\t\t\t\t\t\t[-90.633231, 31.611409],\n\t\t\t\t\t\t[-90.633302, 31.349306],\n\t\t\t\t\t\t[-91.018012, 31.347502],\n\t\t\t\t\t\t[-91.095398, 31.320975],\n\t\t\t\t\t\t[-91.158150, 31.346695],\n\t\t\t\t\t\t[-91.153864, 31.610068],\n\t\t\t\t\t\t[-90.737330, 31.611124]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28049\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"049\",\n\t\t\t\t\"NAME\": \"Hinds\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 869.741000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.450037, 32.573783],\n\t\t\t\t\t\t[-90.449780, 32.487983],\n\t\t\t\t\t\t[-90.243641, 32.487533],\n\t\t\t\t\t\t[-90.243764, 32.400059],\n\t\t\t\t\t\t[-90.146688, 32.399859],\n\t\t\t\t\t\t[-90.141232, 32.399495],\n\t\t\t\t\t\t[-90.065697, 32.399529],\n\t\t\t\t\t\t[-90.160477, 32.308340],\n\t\t\t\t\t\t[-90.245380, 32.171396],\n\t\t\t\t\t\t[-90.230331, 32.049728],\n\t\t\t\t\t\t[-90.718297, 32.048352],\n\t\t\t\t\t\t[-90.728622, 32.225119],\n\t\t\t\t\t\t[-90.694517, 32.352996],\n\t\t\t\t\t\t[-90.636162, 32.374498],\n\t\t\t\t\t\t[-90.553821, 32.507574],\n\t\t\t\t\t\t[-90.450037, 32.573783]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28061\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"061\",\n\t\t\t\t\"NAME\": \"Jasper\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 676.243000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.321127, 31.885149],\n\t\t\t\t\t\t[-89.322692, 32.223472],\n\t\t\t\t\t\t[-89.117675, 32.223972],\n\t\t\t\t\t\t[-88.913847, 32.224186],\n\t\t\t\t\t\t[-88.910459, 31.826649],\n\t\t\t\t\t\t[-88.926058, 31.825658],\n\t\t\t\t\t\t[-88.932017, 31.825472],\n\t\t\t\t\t\t[-88.943355, 31.824565],\n\t\t\t\t\t\t[-89.316560, 31.802090],\n\t\t\t\t\t\t[-89.317086, 31.874305],\n\t\t\t\t\t\t[-89.321127, 31.885149]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28065\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"065\",\n\t\t\t\t\"NAME\": \"Jefferson Davis\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 408.443000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.958940, 31.390489],\n\t\t\t\t\t\t[-89.976052, 31.522477],\n\t\t\t\t\t\t[-89.974586, 31.761655],\n\t\t\t\t\t\t[-89.755103, 31.774654],\n\t\t\t\t\t\t[-89.755614, 31.609751],\n\t\t\t\t\t\t[-89.586919, 31.513444],\n\t\t\t\t\t\t[-89.586819, 31.433688],\n\t\t\t\t\t\t[-89.654212, 31.433805],\n\t\t\t\t\t\t[-89.824236, 31.434093],\n\t\t\t\t\t\t[-89.823332, 31.390021],\n\t\t\t\t\t\t[-89.958940, 31.390489]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28075\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"075\",\n\t\t\t\t\"NAME\": \"Lauderdale\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 703.634000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.914516, 32.576955],\n\t\t\t\t\t\t[-88.388739, 32.578116],\n\t\t\t\t\t\t[-88.403789, 32.449885],\n\t\t\t\t\t\t[-88.403789, 32.449770],\n\t\t\t\t\t\t[-88.421453, 32.308680],\n\t\t\t\t\t\t[-88.431707, 32.227662],\n\t\t\t\t\t\t[-88.913847, 32.224186],\n\t\t\t\t\t\t[-88.914516, 32.576955]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22121\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"121\",\n\t\t\t\t\"NAME\": \"West Baton Rouge\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 192.394000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.414924, 30.535166],\n\t\t\t\t\t\t[-91.330870, 30.658677],\n\t\t\t\t\t\t[-91.322256, 30.656025],\n\t\t\t\t\t\t[-91.310061, 30.653961],\n\t\t\t\t\t\t[-91.309395, 30.651996],\n\t\t\t\t\t\t[-91.303767, 30.652029],\n\t\t\t\t\t\t[-91.301179, 30.651572],\n\t\t\t\t\t\t[-91.298918, 30.650462],\n\t\t\t\t\t\t[-91.297658, 30.649548],\n\t\t\t\t\t\t[-91.262734, 30.505238],\n\t\t\t\t\t\t[-91.197208, 30.507088],\n\t\t\t\t\t\t[-91.241508, 30.357592],\n\t\t\t\t\t\t[-91.142105, 30.323293],\n\t\t\t\t\t\t[-91.311660, 30.322471],\n\t\t\t\t\t\t[-91.485089, 30.497138],\n\t\t\t\t\t\t[-91.414924, 30.535166]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22127\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"127\",\n\t\t\t\t\"NAME\": \"Winn\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 950.086000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.362608, 31.796633],\n\t\t\t\t\t\t[-92.619224, 31.797149],\n\t\t\t\t\t\t[-92.619976, 31.709572],\n\t\t\t\t\t\t[-92.973529, 31.708922],\n\t\t\t\t\t\t[-92.966800, 31.781299],\n\t\t\t\t\t\t[-92.872174, 31.945856],\n\t\t\t\t\t\t[-92.939080, 32.147942],\n\t\t\t\t\t\t[-92.814737, 32.146907],\n\t\t\t\t\t\t[-92.312218, 32.146123],\n\t\t\t\t\t\t[-92.312623, 31.927382],\n\t\t\t\t\t\t[-92.362608, 31.796633]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US23009\",\n\t\t\t\t\"STATE\": \"23\",\n\t\t\t\t\"COUNTY\": \"009\",\n\t\t\t\t\"NAME\": \"Hancock\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1586.893000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-68.499465, 44.124190],\n\t\t\t\t\t\t\t[-68.492892, 44.116921],\n\t\t\t\t\t\t\t[-68.491521, 44.109833],\n\t\t\t\t\t\t\t[-68.502942, 44.099722],\n\t\t\t\t\t\t\t[-68.517060, 44.103410],\n\t\t\t\t\t\t\t[-68.518703, 44.113222],\n\t\t\t\t\t\t\t[-68.511266, 44.125082],\n\t\t\t\t\t\t\t[-68.506979, 44.127237],\n\t\t\t\t\t\t\t[-68.499465, 44.124190]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-68.358388, 44.125082],\n\t\t\t\t\t\t\t[-68.353010, 44.127884],\n\t\t\t\t\t\t\t[-68.346724, 44.127749],\n\t\t\t\t\t\t\t[-68.330716, 44.110598],\n\t\t\t\t\t\t\t[-68.331032, 44.107580],\n\t\t\t\t\t\t\t[-68.338012, 44.101473],\n\t\t\t\t\t\t\t[-68.365176, 44.101464],\n\t\t\t\t\t\t\t[-68.376593, 44.112207],\n\t\t\t\t\t\t\t[-68.376591, 44.113762],\n\t\t\t\t\t\t\t[-68.375382, 44.116460],\n\t\t\t\t\t\t\t[-68.365514, 44.124079],\n\t\t\t\t\t\t\t[-68.358388, 44.125082]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-68.453236, 44.189998],\n\t\t\t\t\t\t\t[-68.437789, 44.188216],\n\t\t\t\t\t\t\t[-68.424441, 44.190753],\n\t\t\t\t\t\t\t[-68.416434, 44.187047],\n\t\t\t\t\t\t\t[-68.408207, 44.176298],\n\t\t\t\t\t\t\t[-68.384903, 44.154955],\n\t\t\t\t\t\t\t[-68.396634, 44.140690],\n\t\t\t\t\t\t\t[-68.427534, 44.119266],\n\t\t\t\t\t\t\t[-68.438518, 44.116180],\n\t\t\t\t\t\t\t[-68.448646, 44.125581],\n\t\t\t\t\t\t\t[-68.447505, 44.133493],\n\t\t\t\t\t\t\t[-68.456813, 44.145268],\n\t\t\t\t\t\t\t[-68.479934, 44.147800],\n\t\t\t\t\t\t\t[-68.484696, 44.146495],\n\t\t\t\t\t\t\t[-68.496639, 44.146855],\n\t\t\t\t\t\t\t[-68.502096, 44.152388],\n\t\t\t\t\t\t\t[-68.500817, 44.160026],\n\t\t\t\t\t\t\t[-68.495511, 44.162429],\n\t\t\t\t\t\t\t[-68.474365, 44.181875],\n\t\t\t\t\t\t\t[-68.453236, 44.189998]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-68.680773, 44.279242],\n\t\t\t\t\t\t\t[-68.675416, 44.279753],\n\t\t\t\t\t\t\t[-68.668213, 44.276511],\n\t\t\t\t\t\t\t[-68.658849, 44.268588],\n\t\t\t\t\t\t\t[-68.623554, 44.255622],\n\t\t\t\t\t\t\t[-68.611669, 44.244818],\n\t\t\t\t\t\t\t[-68.605906, 44.230772],\n\t\t\t\t\t\t\t[-68.612749, 44.207722],\n\t\t\t\t\t\t\t[-68.624994, 44.197637],\n\t\t\t\t\t\t\t[-68.625715, 44.194756],\n\t\t\t\t\t\t\t[-68.619592, 44.189354],\n\t\t\t\t\t\t\t[-68.618511, 44.186472],\n\t\t\t\t\t\t\t[-68.618872, 44.181070],\n\t\t\t\t\t\t\t[-68.643002, 44.157660],\n\t\t\t\t\t\t\t[-68.652366, 44.153698],\n\t\t\t\t\t\t\t[-68.670014, 44.151537],\n\t\t\t\t\t\t\t[-68.671454, 44.138572],\n\t\t\t\t\t\t\t[-68.675056, 44.137131],\n\t\t\t\t\t\t\t[-68.681899, 44.138212],\n\t\t\t\t\t\t\t[-68.686581, 44.147216],\n\t\t\t\t\t\t\t[-68.692343, 44.153698],\n\t\t\t\t\t\t\t[-68.700987, 44.158380],\n\t\t\t\t\t\t\t[-68.709631, 44.158741],\n\t\t\t\t\t\t\t[-68.713232, 44.160541],\n\t\t\t\t\t\t\t[-68.716474, 44.162702],\n\t\t\t\t\t\t\t[-68.720435, 44.169185],\n\t\t\t\t\t\t\t[-68.718995, 44.183231],\n\t\t\t\t\t\t\t[-68.715033, 44.191154],\n\t\t\t\t\t\t\t[-68.714313, 44.203760],\n\t\t\t\t\t\t\t[-68.721156, 44.212404],\n\t\t\t\t\t\t\t[-68.722956, 44.219607],\n\t\t\t\t\t\t\t[-68.722956, 44.223568],\n\t\t\t\t\t\t\t[-68.718635, 44.228611],\n\t\t\t\t\t\t\t[-68.711792, 44.228971],\n\t\t\t\t\t\t\t[-68.700627, 44.234013],\n\t\t\t\t\t\t\t[-68.694144, 44.248779],\n\t\t\t\t\t\t\t[-68.680458, 44.262105],\n\t\t\t\t\t\t\t[-68.677577, 44.268948],\n\t\t\t\t\t\t\t[-68.677577, 44.275431],\n\t\t\t\t\t\t\t[-68.680773, 44.279242]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-68.355279, 44.199096],\n\t\t\t\t\t\t\t[-68.333227, 44.207308],\n\t\t\t\t\t\t\t[-68.324230, 44.205732],\n\t\t\t\t\t\t\t[-68.316060, 44.200244],\n\t\t\t\t\t\t\t[-68.314789, 44.197157],\n\t\t\t\t\t\t\t[-68.318476, 44.196608],\n\t\t\t\t\t\t\t[-68.321178, 44.199032],\n\t\t\t\t\t\t\t[-68.332639, 44.192131],\n\t\t\t\t\t\t\t[-68.339029, 44.171839],\n\t\t\t\t\t\t\t[-68.347416, 44.169459],\n\t\t\t\t\t\t\t[-68.378872, 44.184222],\n\t\t\t\t\t\t\t[-68.371235, 44.193003],\n\t\t\t\t\t\t\t[-68.364469, 44.197534],\n\t\t\t\t\t\t\t[-68.355279, 44.199096]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-68.472831, 44.219767],\n\t\t\t\t\t\t\t[-68.460205, 44.212498],\n\t\t\t\t\t\t\t[-68.453843, 44.201683],\n\t\t\t\t\t\t\t[-68.454224, 44.199534],\n\t\t\t\t\t\t\t[-68.459182, 44.197681],\n\t\t\t\t\t\t\t[-68.484520, 44.202886],\n\t\t\t\t\t\t\t[-68.487227, 44.209517],\n\t\t\t\t\t\t\t[-68.482726, 44.227058],\n\t\t\t\t\t\t\t[-68.480565, 44.228591],\n\t\t\t\t\t\t\t[-68.470323, 44.228320],\n\t\t\t\t\t\t\t[-68.468572, 44.223999],\n\t\t\t\t\t\t\t[-68.472831, 44.219767]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-68.792139, 44.237819],\n\t\t\t\t\t\t\t[-68.769833, 44.222787],\n\t\t\t\t\t\t\t[-68.769047, 44.213351],\n\t\t\t\t\t\t\t[-68.780055, 44.203129],\n\t\t\t\t\t\t\t[-68.789884, 44.203915],\n\t\t\t\t\t\t\t[-68.801285, 44.208633],\n\t\t\t\t\t\t\t[-68.809149, 44.212565],\n\t\t\t\t\t\t\t[-68.815439, 44.214137],\n\t\t\t\t\t\t\t[-68.822909, 44.216496],\n\t\t\t\t\t\t\t[-68.829593, 44.216890],\n\t\t\t\t\t\t\t[-68.837849, 44.227112],\n\t\t\t\t\t\t\t[-68.839422, 44.236547],\n\t\t\t\t\t\t\t[-68.833524, 44.240872],\n\t\t\t\t\t\t\t[-68.827627, 44.242838],\n\t\t\t\t\t\t\t[-68.825631, 44.242556],\n\t\t\t\t\t\t\t[-68.792139, 44.237819]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-68.236380, 44.266254],\n\t\t\t\t\t\t\t[-68.214641, 44.263156],\n\t\t\t\t\t\t\t[-68.211329, 44.257074],\n\t\t\t\t\t\t\t[-68.212474, 44.255405],\n\t\t\t\t\t\t\t[-68.221383, 44.257254],\n\t\t\t\t\t\t\t[-68.231469, 44.256016],\n\t\t\t\t\t\t\t[-68.237130, 44.253430],\n\t\t\t\t\t\t\t[-68.240310, 44.251622],\n\t\t\t\t\t\t\t[-68.241545, 44.247543],\n\t\t\t\t\t\t\t[-68.240806, 44.239723],\n\t\t\t\t\t\t\t[-68.248913, 44.235443],\n\t\t\t\t\t\t\t[-68.266669, 44.234033],\n\t\t\t\t\t\t\t[-68.274427, 44.237099],\n\t\t\t\t\t\t\t[-68.276857, 44.240794],\n\t\t\t\t\t\t\t[-68.274719, 44.258675],\n\t\t\t\t\t\t\t[-68.262128, 44.260774],\n\t\t\t\t\t\t\t[-68.254153, 44.257836],\n\t\t\t\t\t\t\t[-68.246598, 44.257836],\n\t\t\t\t\t\t\t[-68.241142, 44.260354],\n\t\t\t\t\t\t\t[-68.236380, 44.266254]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-68.498637, 44.369686],\n\t\t\t\t\t\t\t[-68.478785, 44.319563],\n\t\t\t\t\t\t\t[-68.489641, 44.313705],\n\t\t\t\t\t\t\t[-68.515173, 44.324797],\n\t\t\t\t\t\t\t[-68.530394, 44.333583],\n\t\t\t\t\t\t\t[-68.528635, 44.344605],\n\t\t\t\t\t\t\t[-68.520671, 44.358357],\n\t\t\t\t\t\t\t[-68.521930, 44.367591],\n\t\t\t\t\t\t\t[-68.518573, 44.381022],\n\t\t\t\t\t\t\t[-68.512697, 44.384799],\n\t\t\t\t\t\t\t[-68.507660, 44.385219],\n\t\t\t\t\t\t\t[-68.501364, 44.382281],\n\t\t\t\t\t\t\t[-68.498637, 44.369686]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-68.841821, 44.611062],\n\t\t\t\t\t\t\t[-68.846945, 44.625307],\n\t\t\t\t\t\t\t[-68.822416, 44.664005],\n\t\t\t\t\t\t\t[-68.811815, 44.670465],\n\t\t\t\t\t\t\t[-68.815793, 44.683754],\n\t\t\t\t\t\t\t[-68.690930, 44.721668],\n\t\t\t\t\t\t\t[-68.647134, 44.703636],\n\t\t\t\t\t\t\t[-68.616673, 44.740992],\n\t\t\t\t\t\t\t[-68.528542, 44.752167],\n\t\t\t\t\t\t\t[-68.445219, 44.763014],\n\t\t\t\t\t\t\t[-68.454889, 44.801550],\n\t\t\t\t\t\t\t[-68.477952, 44.889091],\n\t\t\t\t\t\t\t[-68.501095, 44.980718],\n\t\t\t\t\t\t\t[-68.375892, 44.997373],\n\t\t\t\t\t\t\t[-68.396903, 45.083296],\n\t\t\t\t\t\t\t[-68.270497, 45.100121],\n\t\t\t\t\t\t\t[-68.295438, 45.190443],\n\t\t\t\t\t\t\t[-68.303714, 45.221531],\n\t\t\t\t\t\t\t[-68.054985, 45.252577],\n\t\t\t\t\t\t\t[-67.981851, 44.955885],\n\t\t\t\t\t\t\t[-68.105017, 44.939088],\n\t\t\t\t\t\t\t[-67.993551, 44.592162],\n\t\t\t\t\t\t\t[-67.957089, 44.415408],\n\t\t\t\t\t\t\t[-67.961613, 44.412500],\n\t\t\t\t\t\t\t[-67.961613, 44.399070],\n\t\t\t\t\t\t\t[-67.978876, 44.387034],\n\t\t\t\t\t\t\t[-67.985668, 44.386917],\n\t\t\t\t\t\t\t[-67.997288, 44.399909],\n\t\t\t\t\t\t\t[-68.000646, 44.406624],\n\t\t\t\t\t\t\t[-68.006102, 44.409562],\n\t\t\t\t\t\t\t[-68.010719, 44.407464],\n\t\t\t\t\t\t\t[-68.019533, 44.396971],\n\t\t\t\t\t\t\t[-68.013990, 44.390255],\n\t\t\t\t\t\t\t[-68.034223, 44.360456],\n\t\t\t\t\t\t\t[-68.039679, 44.360876],\n\t\t\t\t\t\t\t[-68.044296, 44.357938],\n\t\t\t\t\t\t\t[-68.044716, 44.351222],\n\t\t\t\t\t\t\t[-68.043037, 44.343667],\n\t\t\t\t\t\t\t[-68.049334, 44.330730],\n\t\t\t\t\t\t\t[-68.060356, 44.331988],\n\t\t\t\t\t\t\t[-68.067047, 44.335692],\n\t\t\t\t\t\t\t[-68.076066, 44.347925],\n\t\t\t\t\t\t\t[-68.077873, 44.373047],\n\t\t\t\t\t\t\t[-68.086268, 44.376405],\n\t\t\t\t\t\t\t[-68.090045, 44.371369],\n\t\t\t\t\t\t\t[-68.092983, 44.370949],\n\t\t\t\t\t\t\t[-68.103818, 44.385111],\n\t\t\t\t\t\t\t[-68.112290, 44.401588],\n\t\t\t\t\t\t\t[-68.112710, 44.421314],\n\t\t\t\t\t\t\t[-68.116487, 44.429289],\n\t\t\t\t\t\t\t[-68.119845, 44.445658],\n\t\t\t\t\t\t\t[-68.119425, 44.459508],\n\t\t\t\t\t\t\t[-68.115228, 44.467903],\n\t\t\t\t\t\t\t[-68.117746, 44.475038],\n\t\t\t\t\t\t\t[-68.123203, 44.478815],\n\t\t\t\t\t\t\t[-68.150904, 44.482383],\n\t\t\t\t\t\t\t[-68.159298, 44.479445],\n\t\t\t\t\t\t\t[-68.162656, 44.477346],\n\t\t\t\t\t\t\t[-68.163075, 44.473149],\n\t\t\t\t\t\t\t[-68.171050, 44.470211],\n\t\t\t\t\t\t\t[-68.194554, 44.471890],\n\t\t\t\t\t\t\t[-68.189517, 44.478605],\n\t\t\t\t\t\t\t[-68.189937, 44.484901],\n\t\t\t\t\t\t\t[-68.192036, 44.487419],\n\t\t\t\t\t\t\t[-68.213861, 44.492456],\n\t\t\t\t\t\t\t[-68.223934, 44.487000],\n\t\t\t\t\t\t\t[-68.227292, 44.479865],\n\t\t\t\t\t\t\t[-68.224354, 44.464335],\n\t\t\t\t\t\t\t[-68.229390, 44.463496],\n\t\t\t\t\t\t\t[-68.244500, 44.471051],\n\t\t\t\t\t\t\t[-68.252474, 44.483222],\n\t\t\t\t\t\t\t[-68.261708, 44.484062],\n\t\t\t\t\t\t\t[-68.268004, 44.471470],\n\t\t\t\t\t\t\t[-68.270522, 44.459718],\n\t\t\t\t\t\t\t[-68.281015, 44.451324],\n\t\t\t\t\t\t\t[-68.298223, 44.449225],\n\t\t\t\t\t\t\t[-68.299063, 44.437893],\n\t\t\t\t\t\t\t[-68.294865, 44.432857],\n\t\t\t\t\t\t\t[-68.268423, 44.440411],\n\t\t\t\t\t\t\t[-68.247438, 44.433276],\n\t\t\t\t\t\t\t[-68.244500, 44.429919],\n\t\t\t\t\t\t\t[-68.243660, 44.420685],\n\t\t\t\t\t\t\t[-68.249956, 44.417747],\n\t\t\t\t\t\t\t[-68.249956, 44.414809],\n\t\t\t\t\t\t\t[-68.215540, 44.390466],\n\t\t\t\t\t\t\t[-68.209664, 44.392984],\n\t\t\t\t\t\t\t[-68.203540, 44.392365],\n\t\t\t\t\t\t\t[-68.196937, 44.386352],\n\t\t\t\t\t\t\t[-68.184532, 44.369145],\n\t\t\t\t\t\t\t[-68.174687, 44.343604],\n\t\t\t\t\t\t\t[-68.173608, 44.328397],\n\t\t\t\t\t\t\t[-68.191924, 44.306675],\n\t\t\t\t\t\t\t[-68.233435, 44.288578],\n\t\t\t\t\t\t\t[-68.275139, 44.288895],\n\t\t\t\t\t\t\t[-68.289409, 44.283858],\n\t\t\t\t\t\t\t[-68.298223, 44.276303],\n\t\t\t\t\t\t\t[-68.298643, 44.266650],\n\t\t\t\t\t\t\t[-68.297641, 44.263035],\n\t\t\t\t\t\t\t[-68.295265, 44.261722],\n\t\t\t\t\t\t\t[-68.290818, 44.247673],\n\t\t\t\t\t\t\t[-68.317588, 44.225101],\n\t\t\t\t\t\t\t[-68.339498, 44.222893],\n\t\t\t\t\t\t\t[-68.343132, 44.229505],\n\t\t\t\t\t\t\t[-68.365364, 44.237871],\n\t\t\t\t\t\t\t[-68.369759, 44.243311],\n\t\t\t\t\t\t\t[-68.377982, 44.247563],\n\t\t\t\t\t\t\t[-68.389848, 44.247066],\n\t\t\t\t\t\t\t[-68.401268, 44.252244],\n\t\t\t\t\t\t\t[-68.419650, 44.274612],\n\t\t\t\t\t\t\t[-68.421302, 44.284468],\n\t\t\t\t\t\t\t[-68.426107, 44.295102],\n\t\t\t\t\t\t\t[-68.430946, 44.298624],\n\t\t\t\t\t\t\t[-68.430853, 44.312609],\n\t\t\t\t\t\t\t[-68.411965, 44.322262],\n\t\t\t\t\t\t\t[-68.409027, 44.325620],\n\t\t\t\t\t\t\t[-68.409867, 44.329397],\n\t\t\t\t\t\t\t[-68.421619, 44.336113],\n\t\t\t\t\t\t\t[-68.421471, 44.337754],\n\t\t\t\t\t\t\t[-68.409867, 44.356259],\n\t\t\t\t\t\t\t[-68.406089, 44.356679],\n\t\t\t\t\t\t\t[-68.396552, 44.363941],\n\t\t\t\t\t\t\t[-68.395516, 44.369561],\n\t\t\t\t\t\t\t[-68.398035, 44.376191],\n\t\t\t\t\t\t\t[-68.367565, 44.390710],\n\t\t\t\t\t\t\t[-68.363720, 44.388935],\n\t\t\t\t\t\t\t[-68.360318, 44.389674],\n\t\t\t\t\t\t\t[-68.358100, 44.392337],\n\t\t\t\t\t\t\t[-68.359082, 44.402847],\n\t\t\t\t\t\t\t[-68.372445, 44.423690],\n\t\t\t\t\t\t\t[-68.379100, 44.430049],\n\t\t\t\t\t\t\t[-68.387678, 44.430936],\n\t\t\t\t\t\t\t[-68.390932, 44.427387],\n\t\t\t\t\t\t\t[-68.392559, 44.418070],\n\t\t\t\t\t\t\t[-68.416412, 44.397973],\n\t\t\t\t\t\t\t[-68.421783, 44.396411],\n\t\t\t\t\t\t\t[-68.427874, 44.396800],\n\t\t\t\t\t\t\t[-68.433901, 44.401534],\n\t\t\t\t\t\t\t[-68.432556, 44.426594],\n\t\t\t\t\t\t\t[-68.429648, 44.439136],\n\t\t\t\t\t\t\t[-68.439281, 44.448043],\n\t\t\t\t\t\t\t[-68.448006, 44.449497],\n\t\t\t\t\t\t\t[-68.455095, 44.447498],\n\t\t\t\t\t\t\t[-68.460003, 44.443317],\n\t\t\t\t\t\t\t[-68.463820, 44.436592],\n\t\t\t\t\t\t\t[-68.458849, 44.412141],\n\t\t\t\t\t\t\t[-68.464106, 44.398078],\n\t\t\t\t\t\t\t[-68.464262, 44.391081],\n\t\t\t\t\t\t\t[-68.461072, 44.385639],\n\t\t\t\t\t\t\t[-68.461072, 44.378504],\n\t\t\t\t\t\t\t[-68.466109, 44.377245],\n\t\t\t\t\t\t\t[-68.478280, 44.378084],\n\t\t\t\t\t\t\t[-68.483317, 44.388157],\n\t\t\t\t\t\t\t[-68.480798, 44.397391],\n\t\t\t\t\t\t\t[-68.472824, 44.404106],\n\t\t\t\t\t\t\t[-68.480379, 44.432647],\n\t\t\t\t\t\t\t[-68.485415, 44.434326],\n\t\t\t\t\t\t\t[-68.494649, 44.429709],\n\t\t\t\t\t\t\t[-68.499686, 44.414179],\n\t\t\t\t\t\t\t[-68.505562, 44.411661],\n\t\t\t\t\t\t\t[-68.514520, 44.413340],\n\t\t\t\t\t\t\t[-68.529905, 44.399070],\n\t\t\t\t\t\t\t[-68.534522, 44.397811],\n\t\t\t\t\t\t\t[-68.555088, 44.403687],\n\t\t\t\t\t\t\t[-68.560964, 44.402847],\n\t\t\t\t\t\t\t[-68.565161, 44.399070],\n\t\t\t\t\t\t\t[-68.566420, 44.394453],\n\t\t\t\t\t\t\t[-68.564741, 44.385219],\n\t\t\t\t\t\t\t[-68.559285, 44.374307],\n\t\t\t\t\t\t\t[-68.550051, 44.371788],\n\t\t\t\t\t\t\t[-68.545434, 44.355000],\n\t\t\t\t\t\t\t[-68.553873, 44.346256],\n\t\t\t\t\t\t\t[-68.563209, 44.333039],\n\t\t\t\t\t\t\t[-68.566936, 44.317603],\n\t\t\t\t\t\t\t[-68.566203, 44.313007],\n\t\t\t\t\t\t\t[-68.564005, 44.308022],\n\t\t\t\t\t\t\t[-68.556236, 44.300819],\n\t\t\t\t\t\t\t[-68.538595, 44.299902],\n\t\t\t\t\t\t\t[-68.531532, 44.290388],\n\t\t\t\t\t\t\t[-68.532266, 44.286340],\n\t\t\t\t\t\t\t[-68.528611, 44.276117],\n\t\t\t\t\t\t\t[-68.519516, 44.265046],\n\t\t\t\t\t\t\t[-68.519819, 44.260209],\n\t\t\t\t\t\t\t[-68.529802, 44.249594],\n\t\t\t\t\t\t\t[-68.528153, 44.241263],\n\t\t\t\t\t\t\t[-68.523480, 44.235819],\n\t\t\t\t\t\t\t[-68.525302, 44.227554],\n\t\t\t\t\t\t\t[-68.534595, 44.229331],\n\t\t\t\t\t\t\t[-68.550802, 44.236534],\n\t\t\t\t\t\t\t[-68.551162, 44.238335],\n\t\t\t\t\t\t\t[-68.562687, 44.248059],\n\t\t\t\t\t\t\t[-68.572772, 44.252741],\n\t\t\t\t\t\t\t[-68.603385, 44.274710],\n\t\t\t\t\t\t\t[-68.615630, 44.275431],\n\t\t\t\t\t\t\t[-68.626075, 44.280473],\n\t\t\t\t\t\t\t[-68.627515, 44.284435],\n\t\t\t\t\t\t\t[-68.630036, 44.286235],\n\t\t\t\t\t\t\t[-68.682979, 44.299201],\n\t\t\t\t\t\t\t[-68.725657, 44.321591],\n\t\t\t\t\t\t\t[-68.733004, 44.328388],\n\t\t\t\t\t\t\t[-68.746164, 44.331148],\n\t\t\t\t\t\t\t[-68.762021, 44.329597],\n\t\t\t\t\t\t\t[-68.766197, 44.327015],\n\t\t\t\t\t\t\t[-68.771489, 44.320523],\n\t\t\t\t\t\t\t[-68.795063, 44.307860],\n\t\t\t\t\t\t\t[-68.827197, 44.312160],\n\t\t\t\t\t\t\t[-68.828377, 44.316549],\n\t\t\t\t\t\t\t[-68.825419, 44.334547],\n\t\t\t\t\t\t\t[-68.821311, 44.349594],\n\t\t\t\t\t\t\t[-68.817647, 44.353093],\n\t\t\t\t\t\t\t[-68.814811, 44.362194],\n\t\t\t\t\t\t\t[-68.818703, 44.375077],\n\t\t\t\t\t\t\t[-68.821767, 44.408940],\n\t\t\t\t\t\t\t[-68.815325, 44.428080],\n\t\t\t\t\t\t\t[-68.801634, 44.434803],\n\t\t\t\t\t\t\t[-68.785898, 44.462611],\n\t\t\t\t\t\t\t[-68.783679, 44.473879],\n\t\t\t\t\t\t\t[-68.796206, 44.471437],\n\t\t\t\t\t\t\t[-68.841821, 44.611062]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US23029\",\n\t\t\t\t\"STATE\": \"23\",\n\t\t\t\t\"COUNTY\": \"029\",\n\t\t\t\t\"NAME\": \"Washington\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2562.660000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-67.619761, 44.519754],\n\t\t\t\t\t\t\t[-67.615410, 44.521973],\n\t\t\t\t\t\t\t[-67.587738, 44.516196],\n\t\t\t\t\t\t\t[-67.582113, 44.513459],\n\t\t\t\t\t\t\t[-67.589259, 44.500840],\n\t\t\t\t\t\t\t[-67.590627, 44.494150],\n\t\t\t\t\t\t\t[-67.580288, 44.488068],\n\t\t\t\t\t\t\t[-67.562651, 44.472104],\n\t\t\t\t\t\t\t[-67.569189, 44.455531],\n\t\t\t\t\t\t\t[-67.571774, 44.453403],\n\t\t\t\t\t\t\t[-67.574206, 44.451730],\n\t\t\t\t\t\t\t[-67.588346, 44.449754],\n\t\t\t\t\t\t\t[-67.592755, 44.458572],\n\t\t\t\t\t\t\t[-67.604919, 44.502056],\n\t\t\t\t\t\t\t[-67.607199, 44.503576],\n\t\t\t\t\t\t\t[-67.614954, 44.503576],\n\t\t\t\t\t\t\t[-67.619211, 44.506009],\n\t\t\t\t\t\t\t[-67.619761, 44.519754]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-67.805483, 45.680241],\n\t\t\t\t\t\t\t[-67.803313, 45.677886],\n\t\t\t\t\t\t\t[-67.754245, 45.667791],\n\t\t\t\t\t\t\t[-67.645810, 45.613597],\n\t\t\t\t\t\t\t[-67.561359, 45.594906],\n\t\t\t\t\t\t\t[-67.518580, 45.587925],\n\t\t\t\t\t\t\t[-67.499444, 45.587014],\n\t\t\t\t\t\t\t[-67.490923, 45.591488],\n\t\t\t\t\t\t\t[-67.488452, 45.594643],\n\t\t\t\t\t\t\t[-67.491061, 45.598917],\n\t\t\t\t\t\t\t[-67.489793, 45.601180],\n\t\t\t\t\t\t\t[-67.476704, 45.604157],\n\t\t\t\t\t\t\t[-67.455406, 45.604665],\n\t\t\t\t\t\t\t[-67.449674, 45.602860],\n\t\t\t\t\t\t\t[-67.425452, 45.579086],\n\t\t\t\t\t\t\t[-67.423646, 45.572153],\n\t\t\t\t\t\t\t[-67.420875, 45.550560],\n\t\t\t\t\t\t\t[-67.425674, 45.502917],\n\t\t\t\t\t\t\t[-67.448729, 45.510576],\n\t\t\t\t\t\t\t[-67.463481, 45.508516],\n\t\t\t\t\t\t\t[-67.503771, 45.488522],\n\t\t\t\t\t\t\t[-67.473366, 45.425328],\n\t\t\t\t\t\t\t[-67.460281, 45.419594],\n\t\t\t\t\t\t\t[-67.430001, 45.392965],\n\t\t\t\t\t\t\t[-67.422153, 45.379661],\n\t\t\t\t\t\t\t[-67.429161, 45.344247],\n\t\t\t\t\t\t\t[-67.460101, 45.301179],\n\t\t\t\t\t\t\t[-67.465833, 45.297223],\n\t\t\t\t\t\t\t[-67.485683, 45.291433],\n\t\t\t\t\t\t\t[-67.489333, 45.281282],\n\t\t\t\t\t\t\t[-67.463570, 45.244097],\n\t\t\t\t\t\t\t[-67.405208, 45.165686],\n\t\t\t\t\t\t\t[-67.354306, 45.129886],\n\t\t\t\t\t\t\t[-67.345004, 45.126210],\n\t\t\t\t\t\t\t[-67.339869, 45.125594],\n\t\t\t\t\t\t\t[-67.305472, 45.144826],\n\t\t\t\t\t\t\t[-67.302568, 45.161348],\n\t\t\t\t\t\t\t[-67.290603, 45.187589],\n\t\t\t\t\t\t\t[-67.283619, 45.192022],\n\t\t\t\t\t\t\t[-67.271076, 45.191081],\n\t\t\t\t\t\t\t[-67.161247, 45.162879],\n\t\t\t\t\t\t\t[-67.128935, 45.132168],\n\t\t\t\t\t\t\t[-67.112414, 45.112323],\n\t\t\t\t\t\t\t[-67.090786, 45.068721],\n\t\t\t\t\t\t\t[-67.105899, 45.065786],\n\t\t\t\t\t\t\t[-67.117688, 45.056730],\n\t\t\t\t\t\t\t[-67.099749, 45.045010],\n\t\t\t\t\t\t\t[-67.082074, 45.029608],\n\t\t\t\t\t\t\t[-67.074914, 45.019254],\n\t\t\t\t\t\t\t[-67.072753, 45.008329],\n\t\t\t\t\t\t\t[-67.068274, 45.001014],\n\t\t\t\t\t\t\t[-67.054610, 44.986764],\n\t\t\t\t\t\t\t[-67.038299, 44.945433],\n\t\t\t\t\t\t\t[-67.033474, 44.939923],\n\t\t\t\t\t\t\t[-67.002118, 44.918836],\n\t\t\t\t\t\t\t[-66.990937, 44.917835],\n\t\t\t\t\t\t\t[-66.984466, 44.912557],\n\t\t\t\t\t\t\t[-66.983558, 44.903277],\n\t\t\t\t\t\t\t[-66.985901, 44.897150],\n\t\t\t\t\t\t\t[-66.989235, 44.896480],\n\t\t\t\t\t\t\t[-66.990351, 44.882551],\n\t\t\t\t\t\t\t[-66.981008, 44.862813],\n\t\t\t\t\t\t\t[-66.978142, 44.856963],\n\t\t\t\t\t\t\t[-66.992960, 44.849181],\n\t\t\t\t\t\t\t[-66.996523, 44.844654],\n\t\t\t\t\t\t\t[-66.986318, 44.820657],\n\t\t\t\t\t\t\t[-66.975009, 44.815495],\n\t\t\t\t\t\t\t[-66.966468, 44.819063],\n\t\t\t\t\t\t\t[-66.952112, 44.820070],\n\t\t\t\t\t\t\t[-66.949895, 44.817419],\n\t\t\t\t\t\t\t[-66.950569, 44.814539],\n\t\t\t\t\t\t\t[-66.961068, 44.807269],\n\t\t\t\t\t\t\t[-66.970026, 44.805713],\n\t\t\t\t\t\t\t[-66.976260, 44.808315],\n\t\t\t\t\t\t\t[-66.979708, 44.807360],\n\t\t\t\t\t\t\t[-66.989351, 44.798780],\n\t\t\t\t\t\t\t[-66.995154, 44.791073],\n\t\t\t\t\t\t\t[-67.019950, 44.771427],\n\t\t\t\t\t\t\t[-67.026150, 44.768199],\n\t\t\t\t\t\t\t[-67.043350, 44.765071],\n\t\t\t\t\t\t\t[-67.055160, 44.771442],\n\t\t\t\t\t\t\t[-67.062239, 44.769543],\n\t\t\t\t\t\t\t[-67.063308, 44.758238],\n\t\t\t\t\t\t\t[-67.073439, 44.741957],\n\t\t\t\t\t\t\t[-67.083477, 44.739899],\n\t\t\t\t\t\t\t[-67.092542, 44.742693],\n\t\t\t\t\t\t\t[-67.098931, 44.741311],\n\t\t\t\t\t\t\t[-67.103957, 44.717444],\n\t\t\t\t\t\t\t[-67.128792, 44.695421],\n\t\t\t\t\t\t\t[-67.139209, 44.693849],\n\t\t\t\t\t\t\t[-67.148061, 44.684114],\n\t\t\t\t\t\t\t[-67.155119, 44.669440],\n\t\t\t\t\t\t\t[-67.154479, 44.668114],\n\t\t\t\t\t\t\t[-67.169857, 44.662105],\n\t\t\t\t\t\t\t[-67.181785, 44.663699],\n\t\t\t\t\t\t\t[-67.186612, 44.662650],\n\t\t\t\t\t\t\t[-67.192068, 44.655515],\n\t\t\t\t\t\t\t[-67.191438, 44.647750],\n\t\t\t\t\t\t\t[-67.189427, 44.645533],\n\t\t\t\t\t\t\t[-67.213025, 44.639220],\n\t\t\t\t\t\t\t[-67.234275, 44.637201],\n\t\t\t\t\t\t\t[-67.247260, 44.641664],\n\t\t\t\t\t\t\t[-67.251247, 44.640825],\n\t\t\t\t\t\t\t[-67.274122, 44.626345],\n\t\t\t\t\t\t\t[-67.277060, 44.617950],\n\t\t\t\t\t\t\t[-67.273076, 44.610873],\n\t\t\t\t\t\t\t[-67.279160, 44.606782],\n\t\t\t\t\t\t\t[-67.293403, 44.599265],\n\t\t\t\t\t\t\t[-67.302427, 44.597323],\n\t\t\t\t\t\t\t[-67.314938, 44.598215],\n\t\t\t\t\t\t\t[-67.322970, 44.609394],\n\t\t\t\t\t\t\t[-67.322491, 44.612458],\n\t\t\t\t\t\t\t[-67.310745, 44.613212],\n\t\t\t\t\t\t\t[-67.293665, 44.634316],\n\t\t\t\t\t\t\t[-67.292462, 44.648455],\n\t\t\t\t\t\t\t[-67.298449, 44.654377],\n\t\t\t\t\t\t\t[-67.309627, 44.659316],\n\t\t\t\t\t\t\t[-67.307909, 44.691295],\n\t\t\t\t\t\t\t[-67.300144, 44.696752],\n\t\t\t\t\t\t\t[-67.299176, 44.705705],\n\t\t\t\t\t\t\t[-67.308538, 44.707454],\n\t\t\t\t\t\t\t[-67.347782, 44.699480],\n\t\t\t\t\t\t\t[-67.355966, 44.699060],\n\t\t\t\t\t\t\t[-67.376742, 44.681852],\n\t\t\t\t\t\t\t[-67.381149, 44.669470],\n\t\t\t\t\t\t\t[-67.379050, 44.665483],\n\t\t\t\t\t\t\t[-67.374014, 44.662965],\n\t\t\t\t\t\t\t[-67.367298, 44.652472],\n\t\t\t\t\t\t\t[-67.363158, 44.631825],\n\t\t\t\t\t\t\t[-67.368269, 44.624672],\n\t\t\t\t\t\t\t[-67.377554, 44.619757],\n\t\t\t\t\t\t\t[-67.386605, 44.626974],\n\t\t\t\t\t\t\t[-67.388704, 44.626554],\n\t\t\t\t\t\t\t[-67.395839, 44.612914],\n\t\t\t\t\t\t\t[-67.398987, 44.602631],\n\t\t\t\t\t\t\t[-67.405492, 44.594236],\n\t\t\t\t\t\t\t[-67.411815, 44.596954],\n\t\t\t\t\t\t\t[-67.418923, 44.603470],\n\t\t\t\t\t\t\t[-67.420602, 44.607877],\n\t\t\t\t\t\t\t[-67.428367, 44.609136],\n\t\t\t\t\t\t\t[-67.443686, 44.605779],\n\t\t\t\t\t\t\t[-67.447464, 44.603260],\n\t\t\t\t\t\t\t[-67.448513, 44.600322],\n\t\t\t\t\t\t\t[-67.457747, 44.598014],\n\t\t\t\t\t\t\t[-67.492373, 44.617950],\n\t\t\t\t\t\t\t[-67.493632, 44.628863],\n\t\t\t\t\t\t\t[-67.505804, 44.636837],\n\t\t\t\t\t\t\t[-67.522802, 44.633060],\n\t\t\t\t\t\t\t[-67.524061, 44.626554],\n\t\t\t\t\t\t\t[-67.530777, 44.621938],\n\t\t\t\t\t\t\t[-67.533925, 44.621518],\n\t\t\t\t\t\t\t[-67.540220, 44.626345],\n\t\t\t\t\t\t\t[-67.543368, 44.626554],\n\t\t\t\t\t\t\t[-67.551133, 44.621938],\n\t\t\t\t\t\t\t[-67.552392, 44.619629],\n\t\t\t\t\t\t\t[-67.575056, 44.560659],\n\t\t\t\t\t\t\t[-67.569836, 44.556788],\n\t\t\t\t\t\t\t[-67.562321, 44.539435],\n\t\t\t\t\t\t\t[-67.568159, 44.531117],\n\t\t\t\t\t\t\t[-67.648506, 44.525403],\n\t\t\t\t\t\t\t[-67.653123, 44.525823],\n\t\t\t\t\t\t\t[-67.656901, 44.535896],\n\t\t\t\t\t\t\t[-67.660678, 44.537575],\n\t\t\t\t\t\t\t[-67.685861, 44.537155],\n\t\t\t\t\t\t\t[-67.696354, 44.533798],\n\t\t\t\t\t\t\t[-67.702649, 44.527922],\n\t\t\t\t\t\t\t[-67.698872, 44.515750],\n\t\t\t\t\t\t\t[-67.703489, 44.504837],\n\t\t\t\t\t\t\t[-67.714190, 44.495238],\n\t\t\t\t\t\t\t[-67.722876, 44.498524],\n\t\t\t\t\t\t\t[-67.733986, 44.496252],\n\t\t\t\t\t\t\t[-67.743353, 44.497418],\n\t\t\t\t\t\t\t[-67.742789, 44.506176],\n\t\t\t\t\t\t\t[-67.740076, 44.508944],\n\t\t\t\t\t\t\t[-67.742942, 44.526453],\n\t\t\t\t\t\t\t[-67.753854, 44.543661],\n\t\t\t\t\t\t\t[-67.758891, 44.546599],\n\t\t\t\t\t\t\t[-67.767285, 44.548278],\n\t\t\t\t\t\t\t[-67.774001, 44.547438],\n\t\t\t\t\t\t\t[-67.779457, 44.543661],\n\t\t\t\t\t\t\t[-67.781975, 44.534008],\n\t\t\t\t\t\t\t[-67.781556, 44.520577],\n\t\t\t\t\t\t\t[-67.797260, 44.520685],\n\t\t\t\t\t\t\t[-67.802541, 44.523934],\n\t\t\t\t\t\t\t[-67.805479, 44.529810],\n\t\t\t\t\t\t\t[-67.805479, 44.536946],\n\t\t\t\t\t\t\t[-67.808837, 44.544081],\n\t\t\t\t\t\t\t[-67.829823, 44.557512],\n\t\t\t\t\t\t\t[-67.839896, 44.558771],\n\t\t\t\t\t\t\t[-67.844513, 44.556252],\n\t\t\t\t\t\t\t[-67.845772, 44.551636],\n\t\t\t\t\t\t\t[-67.843254, 44.542822],\n\t\t\t\t\t\t\t[-67.856684, 44.523934],\n\t\t\t\t\t\t\t[-67.853746, 44.497492],\n\t\t\t\t\t\t\t[-67.851228, 44.492456],\n\t\t\t\t\t\t\t[-67.851648, 44.484901],\n\t\t\t\t\t\t\t[-67.855579, 44.478676],\n\t\t\t\t\t\t\t[-67.860994, 44.477576],\n\t\t\t\t\t\t\t[-67.866801, 44.471812],\n\t\t\t\t\t\t\t[-67.868774, 44.465272],\n\t\t\t\t\t\t\t[-67.868875, 44.456881],\n\t\t\t\t\t\t\t[-67.851764, 44.428695],\n\t\t\t\t\t\t\t[-67.851697, 44.424282],\n\t\t\t\t\t\t\t[-67.855108, 44.419434],\n\t\t\t\t\t\t\t[-67.868856, 44.424672],\n\t\t\t\t\t\t\t[-67.878509, 44.435585],\n\t\t\t\t\t\t\t[-67.887323, 44.433066],\n\t\t\t\t\t\t\t[-67.887323, 44.426351],\n\t\t\t\t\t\t\t[-67.892033, 44.409668],\n\t\t\t\t\t\t\t[-67.899571, 44.394078],\n\t\t\t\t\t\t\t[-67.911667, 44.419216],\n\t\t\t\t\t\t\t[-67.913346, 44.430128],\n\t\t\t\t\t\t\t[-67.921320, 44.433066],\n\t\t\t\t\t\t\t[-67.926357, 44.431807],\n\t\t\t\t\t\t\t[-67.930554, 44.428869],\n\t\t\t\t\t\t\t[-67.927616, 44.421314],\n\t\t\t\t\t\t\t[-67.931453, 44.411848],\n\t\t\t\t\t\t\t[-67.936531, 44.411187],\n\t\t\t\t\t\t\t[-67.947342, 44.415858],\n\t\t\t\t\t\t\t[-67.955737, 44.416278],\n\t\t\t\t\t\t\t[-67.957089, 44.415408],\n\t\t\t\t\t\t\t[-67.993551, 44.592162],\n\t\t\t\t\t\t\t[-68.105017, 44.939088],\n\t\t\t\t\t\t\t[-67.981851, 44.955885],\n\t\t\t\t\t\t\t[-68.054985, 45.252577],\n\t\t\t\t\t\t\t[-67.939760, 45.267845],\n\t\t\t\t\t\t\t[-68.048012, 45.639897],\n\t\t\t\t\t\t\t[-67.805483, 45.680241]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US24001\",\n\t\t\t\t\"STATE\": \"24\",\n\t\t\t\t\"COUNTY\": \"001\",\n\t\t\t\t\"NAME\": \"Allegany\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 424.158000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.468639, 39.516789],\n\t\t\t\t\t\t[-78.565929, 39.519444],\n\t\t\t\t\t\t[-78.655984, 39.534695],\n\t\t\t\t\t\t[-78.657324, 39.535087],\n\t\t\t\t\t\t[-78.676219, 39.540622],\n\t\t\t\t\t\t[-78.689455, 39.545770],\n\t\t\t\t\t\t[-78.760196, 39.582154],\n\t\t\t\t\t\t[-78.767490, 39.587487],\n\t\t\t\t\t\t[-78.772048, 39.593833],\n\t\t\t\t\t\t[-78.769029, 39.599871],\n\t\t\t\t\t\t[-78.760497, 39.609984],\n\t\t\t\t\t\t[-78.787461, 39.627492],\n\t\t\t\t\t\t[-78.824788, 39.590233],\n\t\t\t\t\t\t[-78.874744, 39.522611],\n\t\t\t\t\t\t[-78.968996, 39.441543],\n\t\t\t\t\t\t[-79.025681, 39.465539],\n\t\t\t\t\t\t[-79.042440, 39.479339],\n\t\t\t\t\t\t[-79.067072, 39.474658],\n\t\t\t\t\t\t[-79.067933, 39.479189],\n\t\t\t\t\t\t[-78.931175, 39.722775],\n\t\t\t\t\t\t[-78.808387, 39.722726],\n\t\t\t\t\t\t[-78.380599, 39.722554],\n\t\t\t\t\t\t[-78.342834, 39.722539],\n\t\t\t\t\t\t[-78.334044, 39.635770],\n\t\t\t\t\t\t[-78.355218, 39.640576],\n\t\t\t\t\t\t[-78.430250, 39.623290],\n\t\t\t\t\t\t[-78.457187, 39.587379],\n\t\t\t\t\t\t[-78.458456, 39.581158],\n\t\t\t\t\t\t[-78.454376, 39.574319],\n\t\t\t\t\t\t[-78.450207, 39.570889],\n\t\t\t\t\t\t[-78.432033, 39.561053],\n\t\t\t\t\t\t[-78.436939, 39.538959],\n\t\t\t\t\t\t[-78.468639, 39.516789]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US24003\",\n\t\t\t\t\"STATE\": \"24\",\n\t\t\t\t\"COUNTY\": \"003\",\n\t\t\t\t\"NAME\": \"Anne Arundel\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 414.902000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.438845, 39.052900],\n\t\t\t\t\t\t[-76.438928, 39.052788],\n\t\t\t\t\t\t[-76.437044, 39.051698],\n\t\t\t\t\t\t[-76.422933, 39.043536],\n\t\t\t\t\t\t[-76.407398, 39.034551],\n\t\t\t\t\t\t[-76.407213, 39.034444],\n\t\t\t\t\t\t[-76.407205, 39.034439],\n\t\t\t\t\t\t[-76.405338, 39.033360],\n\t\t\t\t\t\t[-76.405081, 39.033211],\n\t\t\t\t\t\t[-76.405021, 39.033124],\n\t\t\t\t\t\t[-76.402600, 39.029609],\n\t\t\t\t\t\t[-76.397780, 39.022611],\n\t\t\t\t\t\t[-76.397738, 39.022482],\n\t\t\t\t\t\t[-76.396417, 39.018449],\n\t\t\t\t\t\t[-76.396395, 39.018380],\n\t\t\t\t\t\t[-76.395639, 39.016074],\n\t\t\t\t\t\t[-76.395338, 39.015154],\n\t\t\t\t\t\t[-76.394699, 39.013200],\n\t\t\t\t\t\t[-76.394358, 39.012160],\n\t\t\t\t\t\t[-76.394080, 39.011311],\n\t\t\t\t\t\t[-76.412326, 38.996832],\n\t\t\t\t\t\t[-76.414631, 38.995002],\n\t\t\t\t\t\t[-76.421535, 38.989524],\n\t\t\t\t\t\t[-76.422181, 38.989011],\n\t\t\t\t\t\t[-76.427301, 38.987827],\n\t\t\t\t\t\t[-76.448928, 38.982823],\n\t\t\t\t\t\t[-76.448981, 38.982811],\n\t\t\t\t\t\t[-76.449188, 38.982092],\n\t\t\t\t\t\t[-76.450152, 38.978751],\n\t\t\t\t\t\t[-76.450481, 38.977612],\n\t\t\t\t\t\t[-76.451599, 38.976767],\n\t\t\t\t\t\t[-76.454581, 38.974512],\n\t\t\t\t\t\t[-76.474198, 38.972647],\n\t\t\t\t\t\t[-76.474198, 38.972646],\n\t\t\t\t\t\t[-76.474450, 38.970683],\n\t\t\t\t\t\t[-76.474882, 38.967312],\n\t\t\t\t\t\t[-76.474743, 38.966895],\n\t\t\t\t\t\t[-76.473243, 38.962397],\n\t\t\t\t\t\t[-76.471281, 38.956512],\n\t\t\t\t\t\t[-76.463081, 38.948612],\n\t\t\t\t\t\t[-76.460234, 38.948505],\n\t\t\t\t\t\t[-76.457781, 38.948412],\n\t\t\t\t\t\t[-76.457229, 38.947875],\n\t\t\t\t\t\t[-76.451695, 38.942490],\n\t\t\t\t\t\t[-76.450280, 38.941113],\n\t\t\t\t\t\t[-76.450756, 38.940412],\n\t\t\t\t\t\t[-76.461880, 38.924013],\n\t\t\t\t\t\t[-76.461747, 38.923674],\n\t\t\t\t\t\t[-76.460272, 38.919909],\n\t\t\t\t\t\t[-76.458991, 38.916639],\n\t\t\t\t\t\t[-76.458759, 38.916045],\n\t\t\t\t\t\t[-76.458080, 38.914313],\n\t\t\t\t\t\t[-76.459479, 38.907113],\n\t\t\t\t\t\t[-76.460253, 38.907152],\n\t\t\t\t\t\t[-76.460716, 38.907175],\n\t\t\t\t\t\t[-76.462312, 38.907256],\n\t\t\t\t\t\t[-76.465280, 38.907406],\n\t\t\t\t\t\t[-76.469380, 38.907613],\n\t\t\t\t\t\t[-76.469480, 38.911513],\n\t\t\t\t\t\t[-76.475761, 38.914469],\n\t\t\t\t\t\t[-76.493680, 38.910013],\n\t\t\t\t\t\t[-76.493791, 38.904225],\n\t\t\t\t\t\t[-76.493798, 38.903865],\n\t\t\t\t\t\t[-76.493806, 38.903443],\n\t\t\t\t\t\t[-76.493856, 38.900846],\n\t\t\t\t\t\t[-76.493880, 38.899614],\n\t\t\t\t\t\t[-76.492780, 38.895614],\n\t\t\t\t\t\t[-76.490880, 38.894514],\n\t\t\t\t\t\t[-76.490403, 38.892254],\n\t\t\t\t\t\t[-76.490339, 38.891955],\n\t\t\t\t\t\t[-76.489933, 38.890031],\n\t\t\t\t\t\t[-76.489713, 38.888991],\n\t\t\t\t\t\t[-76.489675, 38.888811],\n\t\t\t\t\t\t[-76.489667, 38.888772],\n\t\t\t\t\t\t[-76.489380, 38.887414],\n\t\t\t\t\t\t[-76.490680, 38.884814],\n\t\t\t\t\t\t[-76.491107, 38.884492],\n\t\t\t\t\t\t[-76.491442, 38.884239],\n\t\t\t\t\t\t[-76.494400, 38.882010],\n\t\t\t\t\t\t[-76.494588, 38.881868],\n\t\t\t\t\t\t[-76.494858, 38.881665],\n\t\t\t\t\t\t[-76.498467, 38.878944],\n\t\t\t\t\t\t[-76.507858, 38.871866],\n\t\t\t\t\t\t[-76.511135, 38.869396],\n\t\t\t\t\t\t[-76.519442, 38.863135],\n\t\t\t\t\t\t[-76.516944, 38.851157],\n\t\t\t\t\t\t[-76.516582, 38.851026],\n\t\t\t\t\t\t[-76.509285, 38.848388],\n\t\t\t\t\t\t[-76.509211, 38.848416],\n\t\t\t\t\t\t[-76.499158, 38.852156],\n\t\t\t\t\t\t[-76.497562, 38.852749],\n\t\t\t\t\t\t[-76.496579, 38.853115],\n\t\t\t\t\t\t[-76.496474, 38.852953],\n\t\t\t\t\t\t[-76.493639, 38.848595],\n\t\t\t\t\t\t[-76.492761, 38.847246],\n\t\t\t\t\t\t[-76.492017, 38.846102],\n\t\t\t\t\t\t[-76.491581, 38.845433],\n\t\t\t\t\t\t[-76.491494, 38.845299],\n\t\t\t\t\t\t[-76.489919, 38.842878],\n\t\t\t\t\t\t[-76.489878, 38.842815],\n\t\t\t\t\t\t[-76.489878, 38.838715],\n\t\t\t\t\t\t[-76.490107, 38.838176],\n\t\t\t\t\t\t[-76.491387, 38.835161],\n\t\t\t\t\t\t[-76.491606, 38.834644],\n\t\t\t\t\t\t[-76.491684, 38.834462],\n\t\t\t\t\t\t[-76.491831, 38.834116],\n\t\t\t\t\t\t[-76.496965, 38.822022],\n\t\t\t\t\t\t[-76.497692, 38.820309],\n\t\t\t\t\t\t[-76.498878, 38.817516],\n\t\t\t\t\t\t[-76.499056, 38.817258],\n\t\t\t\t\t\t[-76.502910, 38.811648],\n\t\t\t\t\t\t[-76.506530, 38.806380],\n\t\t\t\t\t\t[-76.506876, 38.805875],\n\t\t\t\t\t\t[-76.509314, 38.802328],\n\t\t\t\t\t\t[-76.510078, 38.801216],\n\t\t\t\t\t\t[-76.511130, 38.800769],\n\t\t\t\t\t\t[-76.514296, 38.799425],\n\t\t\t\t\t\t[-76.515830, 38.798774],\n\t\t\t\t\t\t[-76.523405, 38.795557],\n\t\t\t\t\t\t[-76.524679, 38.795016],\n\t\t\t\t\t\t[-76.524806, 38.794871],\n\t\t\t\t\t\t[-76.524999, 38.794650],\n\t\t\t\t\t\t[-76.525039, 38.794605],\n\t\t\t\t\t\t[-76.525210, 38.794409],\n\t\t\t\t\t\t[-76.525531, 38.794043],\n\t\t\t\t\t\t[-76.527455, 38.791844],\n\t\t\t\t\t\t[-76.527479, 38.791816],\n\t\t\t\t\t\t[-76.527463, 38.791667],\n\t\t\t\t\t\t[-76.527372, 38.790788],\n\t\t\t\t\t\t[-76.527370, 38.790774],\n\t\t\t\t\t\t[-76.527105, 38.788223],\n\t\t\t\t\t\t[-76.527045, 38.787645],\n\t\t\t\t\t\t[-76.526979, 38.787016],\n\t\t\t\t\t\t[-76.527315, 38.786660],\n\t\t\t\t\t\t[-76.528136, 38.785790],\n\t\t\t\t\t\t[-76.532487, 38.781181],\n\t\t\t\t\t\t[-76.533975, 38.779604],\n\t\t\t\t\t\t[-76.535207, 38.778298],\n\t\t\t\t\t\t[-76.535352, 38.778145],\n\t\t\t\t\t\t[-76.535379, 38.778116],\n\t\t\t\t\t\t[-76.535426, 38.778095],\n\t\t\t\t\t\t[-76.535642, 38.778000],\n\t\t\t\t\t\t[-76.536284, 38.777719],\n\t\t\t\t\t\t[-76.536819, 38.777484],\n\t\t\t\t\t\t[-76.536849, 38.777471],\n\t\t\t\t\t\t[-76.537230, 38.777304],\n\t\t\t\t\t\t[-76.539088, 38.776488],\n\t\t\t\t\t\t[-76.542973, 38.774783],\n\t\t\t\t\t\t[-76.544372, 38.774169],\n\t\t\t\t\t\t[-76.544413, 38.774151],\n\t\t\t\t\t\t[-76.554443, 38.769749],\n\t\t\t\t\t\t[-76.554693, 38.769639],\n\t\t\t\t\t\t[-76.559697, 38.767443],\n\t\t\t\t\t\t[-76.559884, 38.767361],\n\t\t\t\t\t\t[-76.559778, 38.766342],\n\t\t\t\t\t\t[-76.558933, 38.758177],\n\t\t\t\t\t\t[-76.557535, 38.744687],\n\t\t\t\t\t\t[-76.557300, 38.744229],\n\t\t\t\t\t\t[-76.557091, 38.743823],\n\t\t\t\t\t\t[-76.556954, 38.743554],\n\t\t\t\t\t\t[-76.553978, 38.737756],\n\t\t\t\t\t\t[-76.552743, 38.735350],\n\t\t\t\t\t\t[-76.551971, 38.734636],\n\t\t\t\t\t\t[-76.544561, 38.727784],\n\t\t\t\t\t\t[-76.544475, 38.727705],\n\t\t\t\t\t\t[-76.543853, 38.727736],\n\t\t\t\t\t\t[-76.543570, 38.727750],\n\t\t\t\t\t\t[-76.543435, 38.727757],\n\t\t\t\t\t\t[-76.542053, 38.727826],\n\t\t\t\t\t\t[-76.539769, 38.727940],\n\t\t\t\t\t\t[-76.529868, 38.728435],\n\t\t\t\t\t\t[-76.529284, 38.728137],\n\t\t\t\t\t\t[-76.527180, 38.727062],\n\t\t\t\t\t\t[-76.526655, 38.724430],\n\t\t\t\t\t\t[-76.529237, 38.713561],\n\t\t\t\t\t\t[-76.615902, 38.720804],\n\t\t\t\t\t\t[-76.623079, 38.767278],\n\t\t\t\t\t\t[-76.686203, 38.748610],\n\t\t\t\t\t\t[-76.686358, 38.748475],\n\t\t\t\t\t\t[-76.710639, 38.815694],\n\t\t\t\t\t\t[-76.693286, 38.951416],\n\t\t\t\t\t\t[-76.840362, 39.103142],\n\t\t\t\t\t\t[-76.824608, 39.117217],\n\t\t\t\t\t\t[-76.786966, 39.128782],\n\t\t\t\t\t\t[-76.776962, 39.150883],\n\t\t\t\t\t\t[-76.763738, 39.166229],\n\t\t\t\t\t\t[-76.740631, 39.179221],\n\t\t\t\t\t\t[-76.722606, 39.182857],\n\t\t\t\t\t\t[-76.719217, 39.191480],\n\t\t\t\t\t\t[-76.697085, 39.214092],\n\t\t\t\t\t\t[-76.696750, 39.217399],\n\t\t\t\t\t\t[-76.687745, 39.221292],\n\t\t\t\t\t\t[-76.680177, 39.220163],\n\t\t\t\t\t\t[-76.668744, 39.228989],\n\t\t\t\t\t\t[-76.661730, 39.231135],\n\t\t\t\t\t\t[-76.647219, 39.229036],\n\t\t\t\t\t\t[-76.639404, 39.224029],\n\t\t\t\t\t\t[-76.630674, 39.224187],\n\t\t\t\t\t\t[-76.618612, 39.237398],\n\t\t\t\t\t\t[-76.611695, 39.234400],\n\t\t\t\t\t\t[-76.582386, 39.207151],\n\t\t\t\t\t\t[-76.550086, 39.197207],\n\t\t\t\t\t\t[-76.533103, 39.207630],\n\t\t\t\t\t\t[-76.533085, 39.207608],\n\t\t\t\t\t\t[-76.533349, 39.207172],\n\t\t\t\t\t\t[-76.534760, 39.204841],\n\t\t\t\t\t\t[-76.535385, 39.203808],\n\t\t\t\t\t\t[-76.534185, 39.190608],\n\t\t\t\t\t\t[-76.525785, 39.177908],\n\t\t\t\t\t\t[-76.525454, 39.177746],\n\t\t\t\t\t\t[-76.525031, 39.177540],\n\t\t\t\t\t\t[-76.524221, 39.177144],\n\t\t\t\t\t\t[-76.520270, 39.175214],\n\t\t\t\t\t\t[-76.519292, 39.174736],\n\t\t\t\t\t\t[-76.511834, 39.171093],\n\t\t\t\t\t\t[-76.508384, 39.169408],\n\t\t\t\t\t\t[-76.500926, 39.161286],\n\t\t\t\t\t\t[-76.500512, 39.161362],\n\t\t\t\t\t\t[-76.484023, 39.164407],\n\t\t\t\t\t\t[-76.483845, 39.164334],\n\t\t\t\t\t\t[-76.475983, 39.161109],\n\t\t\t\t\t\t[-76.474807, 39.159436],\n\t\t\t\t\t\t[-76.473802, 39.158007],\n\t\t\t\t\t\t[-76.471483, 39.154709],\n\t\t\t\t\t\t[-76.468898, 39.153161],\n\t\t\t\t\t\t[-76.459119, 39.147304],\n\t\t\t\t\t\t[-76.458873, 39.147157],\n\t\t\t\t\t\t[-76.458649, 39.147023],\n\t\t\t\t\t\t[-76.458350, 39.146844],\n\t\t\t\t\t\t[-76.458192, 39.146749],\n\t\t\t\t\t\t[-76.452782, 39.143509],\n\t\t\t\t\t\t[-76.440110, 39.137305],\n\t\t\t\t\t\t[-76.430946, 39.132818],\n\t\t\t\t\t\t[-76.430130, 39.132419],\n\t\t\t\t\t\t[-76.428681, 39.131709],\n\t\t\t\t\t\t[-76.432481, 39.126709],\n\t\t\t\t\t\t[-76.432702, 39.120752],\n\t\t\t\t\t\t[-76.432981, 39.113209],\n\t\t\t\t\t\t[-76.432942, 39.113098],\n\t\t\t\t\t\t[-76.427196, 39.096685],\n\t\t\t\t\t\t[-76.427065, 39.096309],\n\t\t\t\t\t\t[-76.426456, 39.094571],\n\t\t\t\t\t\t[-76.426283, 39.094076],\n\t\t\t\t\t\t[-76.426276, 39.094057],\n\t\t\t\t\t\t[-76.423609, 39.086438],\n\t\t\t\t\t\t[-76.423321, 39.085615],\n\t\t\t\t\t\t[-76.423271, 39.085473],\n\t\t\t\t\t\t[-76.422714, 39.083881],\n\t\t\t\t\t\t[-76.422212, 39.082448],\n\t\t\t\t\t\t[-76.422080, 39.082070],\n\t\t\t\t\t\t[-76.421860, 39.081442],\n\t\t\t\t\t\t[-76.423081, 39.074210],\n\t\t\t\t\t\t[-76.432374, 39.061648],\n\t\t\t\t\t\t[-76.438845, 39.052900]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US24009\",\n\t\t\t\t\"STATE\": \"24\",\n\t\t\t\t\"COUNTY\": \"009\",\n\t\t\t\t\"NAME\": \"Calvert\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 213.152000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.403101, 38.343157],\n\t\t\t\t\t\t[-76.404940, 38.341089],\n\t\t\t\t\t\t[-76.409291, 38.325891],\n\t\t\t\t\t\t[-76.405716, 38.317794],\n\t\t\t\t\t\t[-76.406617, 38.317455],\n\t\t\t\t\t\t[-76.413260, 38.315356],\n\t\t\t\t\t\t[-76.415780, 38.314559],\n\t\t\t\t\t\t[-76.418789, 38.313609],\n\t\t\t\t\t\t[-76.421790, 38.312661],\n\t\t\t\t\t\t[-76.421816, 38.312653],\n\t\t\t\t\t\t[-76.423408, 38.312150],\n\t\t\t\t\t\t[-76.425005, 38.311646],\n\t\t\t\t\t\t[-76.425033, 38.311636],\n\t\t\t\t\t\t[-76.434128, 38.308763],\n\t\t\t\t\t\t[-76.444886, 38.305363],\n\t\t\t\t\t\t[-76.445334, 38.305210],\n\t\t\t\t\t\t[-76.445622, 38.305205],\n\t\t\t\t\t\t[-76.447132, 38.305176],\n\t\t\t\t\t\t[-76.447253, 38.305174],\n\t\t\t\t\t\t[-76.447913, 38.305162],\n\t\t\t\t\t\t[-76.448019, 38.305160],\n\t\t\t\t\t\t[-76.448074, 38.305159],\n\t\t\t\t\t\t[-76.448080, 38.305159],\n\t\t\t\t\t\t[-76.448084, 38.305159],\n\t\t\t\t\t\t[-76.448085, 38.305158],\n\t\t\t\t\t\t[-76.448087, 38.305158],\n\t\t\t\t\t\t[-76.448089, 38.305158],\n\t\t\t\t\t\t[-76.448100, 38.305158],\n\t\t\t\t\t\t[-76.448107, 38.305158],\n\t\t\t\t\t\t[-76.448146, 38.305157],\n\t\t\t\t\t\t[-76.448365, 38.305153],\n\t\t\t\t\t\t[-76.448846, 38.305144],\n\t\t\t\t\t\t[-76.449024, 38.305141],\n\t\t\t\t\t\t[-76.453453, 38.305057],\n\t\t\t\t\t\t[-76.454295, 38.305332],\n\t\t\t\t\t\t[-76.458306, 38.306641],\n\t\t\t\t\t\t[-76.461609, 38.308540],\n\t\t\t\t\t\t[-76.464047, 38.310946],\n\t\t\t\t\t\t[-76.464365, 38.311260],\n\t\t\t\t\t\t[-76.464481, 38.311437],\n\t\t\t\t\t\t[-76.465623, 38.313162],\n\t\t\t\t\t\t[-76.465981, 38.313702],\n\t\t\t\t\t\t[-76.466434, 38.314833],\n\t\t\t\t\t\t[-76.466882, 38.315947],\n\t\t\t\t\t\t[-76.467101, 38.316494],\n\t\t\t\t\t\t[-76.467104, 38.316501],\n\t\t\t\t\t\t[-76.467110, 38.316516],\n\t\t\t\t\t\t[-76.467111, 38.316518],\n\t\t\t\t\t\t[-76.467155, 38.316628],\n\t\t\t\t\t\t[-76.467165, 38.316653],\n\t\t\t\t\t\t[-76.467185, 38.316703],\n\t\t\t\t\t\t[-76.467329, 38.317061],\n\t\t\t\t\t\t[-76.467600, 38.317736],\n\t\t\t\t\t\t[-76.467872, 38.318412],\n\t\t\t\t\t\t[-76.467959, 38.318628],\n\t\t\t\t\t\t[-76.468045, 38.318844],\n\t\t\t\t\t\t[-76.468480, 38.319928],\n\t\t\t\t\t\t[-76.469620, 38.322367],\n\t\t\t\t\t\t[-76.469869, 38.322900],\n\t\t\t\t\t\t[-76.471712, 38.324867],\n\t\t\t\t\t\t[-76.472470, 38.325256],\n\t\t\t\t\t\t[-76.472557, 38.325299],\n\t\t\t\t\t\t[-76.472644, 38.325342],\n\t\t\t\t\t\t[-76.473026, 38.325530],\n\t\t\t\t\t\t[-76.473581, 38.325804],\n\t\t\t\t\t\t[-76.475027, 38.326516],\n\t\t\t\t\t\t[-76.476192, 38.326726],\n\t\t\t\t\t\t[-76.478044, 38.327060],\n\t\t\t\t\t\t[-76.483167, 38.326668],\n\t\t\t\t\t\t[-76.487575, 38.326257],\n\t\t\t\t\t\t[-76.488421, 38.326700],\n\t\t\t\t\t\t[-76.488520, 38.326752],\n\t\t\t\t\t\t[-76.488976, 38.327163],\n\t\t\t\t\t\t[-76.489211, 38.327375],\n\t\t\t\t\t\t[-76.489232, 38.327453],\n\t\t\t\t\t\t[-76.489381, 38.328005],\n\t\t\t\t\t\t[-76.489029, 38.328874],\n\t\t\t\t\t\t[-76.486925, 38.332422],\n\t\t\t\t\t\t[-76.486431, 38.333335],\n\t\t\t\t\t\t[-76.486084, 38.333977],\n\t\t\t\t\t\t[-76.485737, 38.334619],\n\t\t\t\t\t\t[-76.485678, 38.334730],\n\t\t\t\t\t\t[-76.485618, 38.334840],\n\t\t\t\t\t\t[-76.485047, 38.335895],\n\t\t\t\t\t\t[-76.484336, 38.337210],\n\t\t\t\t\t\t[-76.483481, 38.340093],\n\t\t\t\t\t\t[-76.483432, 38.340415],\n\t\t\t\t\t\t[-76.483375, 38.340797],\n\t\t\t\t\t\t[-76.483130, 38.342446],\n\t\t\t\t\t\t[-76.483154, 38.342668],\n\t\t\t\t\t\t[-76.483223, 38.343290],\n\t\t\t\t\t\t[-76.483449, 38.345310],\n\t\t\t\t\t\t[-76.483575, 38.345855],\n\t\t\t\t\t\t[-76.484085, 38.348070],\n\t\t\t\t\t\t[-76.485188, 38.351097],\n\t\t\t\t\t\t[-76.485755, 38.352265],\n\t\t\t\t\t\t[-76.486060, 38.352891],\n\t\t\t\t\t\t[-76.486364, 38.353517],\n\t\t\t\t\t\t[-76.486618, 38.354038],\n\t\t\t\t\t\t[-76.489235, 38.358393],\n\t\t\t\t\t\t[-76.491157, 38.361246],\n\t\t\t\t\t\t[-76.493466, 38.363996],\n\t\t\t\t\t\t[-76.495675, 38.366600],\n\t\t\t\t\t\t[-76.497293, 38.368347],\n\t\t\t\t\t\t[-76.498484, 38.369633],\n\t\t\t\t\t\t[-76.499675, 38.370919],\n\t\t\t\t\t\t[-76.499675, 38.370906],\n\t\t\t\t\t\t[-76.500449, 38.371635],\n\t\t\t\t\t\t[-76.501475, 38.372497],\n\t\t\t\t\t\t[-76.502376, 38.372889],\n\t\t\t\t\t\t[-76.503802, 38.373359],\n\t\t\t\t\t\t[-76.505040, 38.373947],\n\t\t\t\t\t\t[-76.505576, 38.374403],\n\t\t\t\t\t\t[-76.506041, 38.374799],\n\t\t\t\t\t\t[-76.506271, 38.375096],\n\t\t\t\t\t\t[-76.506542, 38.375750],\n\t\t\t\t\t\t[-76.507042, 38.376553],\n\t\t\t\t\t\t[-76.507399, 38.376983],\n\t\t\t\t\t\t[-76.507831, 38.377503],\n\t\t\t\t\t\t[-76.510057, 38.378903],\n\t\t\t\t\t\t[-76.510961, 38.379188],\n\t\t\t\t\t\t[-76.511296, 38.379294],\n\t\t\t\t\t\t[-76.511631, 38.379399],\n\t\t\t\t\t\t[-76.512609, 38.379708],\n\t\t\t\t\t\t[-76.513560, 38.380413],\n\t\t\t\t\t\t[-76.514949, 38.380835],\n\t\t\t\t\t\t[-76.516663, 38.381668],\n\t\t\t\t\t\t[-76.518939, 38.383363],\n\t\t\t\t\t\t[-76.520020, 38.384330],\n\t\t\t\t\t\t[-76.520078, 38.384382],\n\t\t\t\t\t\t[-76.521153, 38.385704],\n\t\t\t\t\t\t[-76.522594, 38.387997],\n\t\t\t\t\t\t[-76.523635, 38.389211],\n\t\t\t\t\t\t[-76.524138, 38.389775],\n\t\t\t\t\t\t[-76.524645, 38.390343],\n\t\t\t\t\t\t[-76.525826, 38.391130],\n\t\t\t\t\t\t[-76.526904, 38.392012],\n\t\t\t\t\t\t[-76.527968, 38.393080],\n\t\t\t\t\t\t[-76.528305, 38.393406],\n\t\t\t\t\t\t[-76.529924, 38.394972],\n\t\t\t\t\t\t[-76.531270, 38.395934],\n\t\t\t\t\t\t[-76.533073, 38.397223],\n\t\t\t\t\t\t[-76.534075, 38.397766],\n\t\t\t\t\t\t[-76.535660, 38.397727],\n\t\t\t\t\t\t[-76.536028, 38.397661],\n\t\t\t\t\t\t[-76.536676, 38.397545],\n\t\t\t\t\t\t[-76.537325, 38.397429],\n\t\t\t\t\t\t[-76.537701, 38.397361],\n\t\t\t\t\t\t[-76.540270, 38.396631],\n\t\t\t\t\t\t[-76.542273, 38.396144],\n\t\t\t\t\t\t[-76.545623, 38.395695],\n\t\t\t\t\t\t[-76.548842, 38.395409],\n\t\t\t\t\t\t[-76.550652, 38.395248],\n\t\t\t\t\t\t[-76.551129, 38.395212],\n\t\t\t\t\t\t[-76.553435, 38.395043],\n\t\t\t\t\t\t[-76.554929, 38.395035],\n\t\t\t\t\t\t[-76.556652, 38.395295],\n\t\t\t\t\t\t[-76.558388, 38.395861],\n\t\t\t\t\t\t[-76.559227, 38.396378],\n\t\t\t\t\t\t[-76.559957, 38.397321],\n\t\t\t\t\t\t[-76.560617, 38.398707],\n\t\t\t\t\t\t[-76.561353, 38.400376],\n\t\t\t\t\t\t[-76.562002, 38.402286],\n\t\t\t\t\t\t[-76.562054, 38.402409],\n\t\t\t\t\t\t[-76.562178, 38.402700],\n\t\t\t\t\t\t[-76.562179, 38.402702],\n\t\t\t\t\t\t[-76.562185, 38.402716],\n\t\t\t\t\t\t[-76.562362, 38.403133],\n\t\t\t\t\t\t[-76.562669, 38.403858],\n\t\t\t\t\t\t[-76.563902, 38.406002],\n\t\t\t\t\t\t[-76.565615, 38.407051],\n\t\t\t\t\t\t[-76.567296, 38.407494],\n\t\t\t\t\t\t[-76.568129, 38.407713],\n\t\t\t\t\t\t[-76.571807, 38.408823],\n\t\t\t\t\t\t[-76.573311, 38.409365],\n\t\t\t\t\t\t[-76.573981, 38.409607],\n\t\t\t\t\t\t[-76.574427, 38.409768],\n\t\t\t\t\t\t[-76.575543, 38.410170],\n\t\t\t\t\t\t[-76.578631, 38.411283],\n\t\t\t\t\t\t[-76.584586, 38.414739],\n\t\t\t\t\t\t[-76.586742, 38.415991],\n\t\t\t\t\t\t[-76.588899, 38.417243],\n\t\t\t\t\t\t[-76.591674, 38.418854],\n\t\t\t\t\t\t[-76.593918, 38.420952],\n\t\t\t\t\t\t[-76.595223, 38.422172],\n\t\t\t\t\t\t[-76.597528, 38.423425],\n\t\t\t\t\t\t[-76.599445, 38.423896],\n\t\t\t\t\t\t[-76.600651, 38.424018],\n\t\t\t\t\t\t[-76.601125, 38.424066],\n\t\t\t\t\t\t[-76.601599, 38.424113],\n\t\t\t\t\t\t[-76.602190, 38.424173],\n\t\t\t\t\t\t[-76.605265, 38.423833],\n\t\t\t\t\t\t[-76.606263, 38.423973],\n\t\t\t\t\t\t[-76.607855, 38.424197],\n\t\t\t\t\t\t[-76.608373, 38.424445],\n\t\t\t\t\t\t[-76.608893, 38.425030],\n\t\t\t\t\t\t[-76.610135, 38.426486],\n\t\t\t\t\t\t[-76.610605, 38.427020],\n\t\t\t\t\t\t[-76.610799, 38.427239],\n\t\t\t\t\t\t[-76.611460, 38.427991],\n\t\t\t\t\t\t[-76.612999, 38.428837],\n\t\t\t\t\t\t[-76.613984, 38.429863],\n\t\t\t\t\t\t[-76.614797, 38.431355],\n\t\t\t\t\t\t[-76.615820, 38.433591],\n\t\t\t\t\t\t[-76.616427, 38.434612],\n\t\t\t\t\t\t[-76.617222, 38.435330],\n\t\t\t\t\t\t[-76.617820, 38.435602],\n\t\t\t\t\t\t[-76.618428, 38.436054],\n\t\t\t\t\t\t[-76.618831, 38.436354],\n\t\t\t\t\t\t[-76.619985, 38.437575],\n\t\t\t\t\t\t[-76.621546, 38.438921],\n\t\t\t\t\t\t[-76.622068, 38.440152],\n\t\t\t\t\t\t[-76.622486, 38.441366],\n\t\t\t\t\t\t[-76.623616, 38.442869],\n\t\t\t\t\t\t[-76.624192, 38.443498],\n\t\t\t\t\t\t[-76.624681, 38.443670],\n\t\t\t\t\t\t[-76.626272, 38.444648],\n\t\t\t\t\t\t[-76.627864, 38.445625],\n\t\t\t\t\t\t[-76.628002, 38.445707],\n\t\t\t\t\t\t[-76.628951, 38.446264],\n\t\t\t\t\t\t[-76.630009, 38.447290],\n\t\t\t\t\t\t[-76.632226, 38.449313],\n\t\t\t\t\t\t[-76.632348, 38.449425],\n\t\t\t\t\t\t[-76.632387, 38.449460],\n\t\t\t\t\t\t[-76.632388, 38.449461],\n\t\t\t\t\t\t[-76.632397, 38.449469],\n\t\t\t\t\t\t[-76.632398, 38.449470],\n\t\t\t\t\t\t[-76.632399, 38.449471],\n\t\t\t\t\t\t[-76.632402, 38.449474],\n\t\t\t\t\t\t[-76.632409, 38.449481],\n\t\t\t\t\t\t[-76.632415, 38.449486],\n\t\t\t\t\t\t[-76.632427, 38.449497],\n\t\t\t\t\t\t[-76.632450, 38.449518],\n\t\t\t\t\t\t[-76.632520, 38.449582],\n\t\t\t\t\t\t[-76.632601, 38.449659],\n\t\t\t\t\t\t[-76.634487, 38.451457],\n\t\t\t\t\t\t[-76.635464, 38.452173],\n\t\t\t\t\t\t[-76.636393, 38.452855],\n\t\t\t\t\t\t[-76.639174, 38.454969],\n\t\t\t\t\t\t[-76.639263, 38.455037],\n\t\t\t\t\t\t[-76.639814, 38.455456],\n\t\t\t\t\t\t[-76.644319, 38.458268],\n\t\t\t\t\t\t[-76.646480, 38.459593],\n\t\t\t\t\t\t[-76.649131, 38.460822],\n\t\t\t\t\t\t[-76.651307, 38.461829],\n\t\t\t\t\t\t[-76.652588, 38.462422],\n\t\t\t\t\t\t[-76.653783, 38.463294],\n\t\t\t\t\t\t[-76.653872, 38.463359],\n\t\t\t\t\t\t[-76.654146, 38.463908],\n\t\t\t\t\t\t[-76.654345, 38.465174],\n\t\t\t\t\t\t[-76.653656, 38.466988],\n\t\t\t\t\t\t[-76.653007, 38.468051],\n\t\t\t\t\t\t[-76.652977, 38.468101],\n\t\t\t\t\t\t[-76.652095, 38.469519],\n\t\t\t\t\t\t[-76.651956, 38.471261],\n\t\t\t\t\t\t[-76.652142, 38.473753],\n\t\t\t\t\t\t[-76.652650, 38.474552],\n\t\t\t\t\t\t[-76.652894, 38.474958],\n\t\t\t\t\t\t[-76.653383, 38.475774],\n\t\t\t\t\t\t[-76.653430, 38.475852],\n\t\t\t\t\t\t[-76.653906, 38.476645],\n\t\t\t\t\t\t[-76.653909, 38.476650],\n\t\t\t\t\t\t[-76.653967, 38.476746],\n\t\t\t\t\t\t[-76.656646, 38.481210],\n\t\t\t\t\t\t[-76.659326, 38.485675],\n\t\t\t\t\t\t[-76.660341, 38.487368],\n\t\t\t\t\t\t[-76.661120, 38.488356],\n\t\t\t\t\t\t[-76.661214, 38.488476],\n\t\t\t\t\t\t[-76.661309, 38.488596],\n\t\t\t\t\t\t[-76.663333, 38.491153],\n\t\t\t\t\t\t[-76.665360, 38.493657],\n\t\t\t\t\t\t[-76.665949, 38.494389],\n\t\t\t\t\t\t[-76.666427, 38.494785],\n\t\t\t\t\t\t[-76.667081, 38.495172],\n\t\t\t\t\t\t[-76.672663, 38.498160],\n\t\t\t\t\t\t[-76.673050, 38.498548],\n\t\t\t\t\t\t[-76.673584, 38.499085],\n\t\t\t\t\t\t[-76.674118, 38.499622],\n\t\t\t\t\t\t[-76.662995, 38.526616],\n\t\t\t\t\t\t[-76.675457, 38.535876],\n\t\t\t\t\t\t[-76.672642, 38.546818],\n\t\t\t\t\t\t[-76.672274, 38.552846],\n\t\t\t\t\t\t[-76.675468, 38.558824],\n\t\t\t\t\t\t[-76.678891, 38.567954],\n\t\t\t\t\t\t[-76.677799, 38.572374],\n\t\t\t\t\t\t[-76.680702, 38.580499],\n\t\t\t\t\t\t[-76.679480, 38.585211],\n\t\t\t\t\t\t[-76.675166, 38.592106],\n\t\t\t\t\t\t[-76.672557, 38.599271],\n\t\t\t\t\t\t[-76.673479, 38.607249],\n\t\t\t\t\t\t[-76.672334, 38.617533],\n\t\t\t\t\t\t[-76.677562, 38.626234],\n\t\t\t\t\t\t[-76.679355, 38.627949],\n\t\t\t\t\t\t[-76.686138, 38.630182],\n\t\t\t\t\t\t[-76.692021, 38.634932],\n\t\t\t\t\t\t[-76.692853, 38.636437],\n\t\t\t\t\t\t[-76.691630, 38.648506],\n\t\t\t\t\t\t[-76.685127, 38.654771],\n\t\t\t\t\t\t[-76.683186, 38.658813],\n\t\t\t\t\t\t[-76.683329, 38.661178],\n\t\t\t\t\t\t[-76.687370, 38.663793],\n\t\t\t\t\t\t[-76.694236, 38.663841],\n\t\t\t\t\t\t[-76.700381, 38.667022],\n\t\t\t\t\t\t[-76.700667, 38.670131],\n\t\t\t\t\t\t[-76.690461, 38.673683],\n\t\t\t\t\t\t[-76.687424, 38.678746],\n\t\t\t\t\t\t[-76.687147, 38.681371],\n\t\t\t\t\t\t[-76.695490, 38.685781],\n\t\t\t\t\t\t[-76.698429, 38.690443],\n\t\t\t\t\t\t[-76.697932, 38.694782],\n\t\t\t\t\t\t[-76.694983, 38.700307],\n\t\t\t\t\t\t[-76.694946, 38.702468],\n\t\t\t\t\t\t[-76.697743, 38.707030],\n\t\t\t\t\t\t[-76.701960, 38.710864],\n\t\t\t\t\t\t[-76.693589, 38.724761],\n\t\t\t\t\t\t[-76.695555, 38.731544],\n\t\t\t\t\t\t[-76.694996, 38.735075],\n\t\t\t\t\t\t[-76.687009, 38.735897],\n\t\t\t\t\t\t[-76.684018, 38.738348],\n\t\t\t\t\t\t[-76.686358, 38.748475],\n\t\t\t\t\t\t[-76.686203, 38.748610],\n\t\t\t\t\t\t[-76.623079, 38.767278],\n\t\t\t\t\t\t[-76.615902, 38.720804],\n\t\t\t\t\t\t[-76.529237, 38.713561],\n\t\t\t\t\t\t[-76.529532, 38.712317],\n\t\t\t\t\t\t[-76.529721, 38.711523],\n\t\t\t\t\t\t[-76.530575, 38.707929],\n\t\t\t\t\t\t[-76.530799, 38.706983],\n\t\t\t\t\t\t[-76.530824, 38.706881],\n\t\t\t\t\t\t[-76.532465, 38.699974],\n\t\t\t\t\t\t[-76.532537, 38.699669],\n\t\t\t\t\t\t[-76.532527, 38.698207],\n\t\t\t\t\t\t[-76.532432, 38.683600],\n\t\t\t\t\t\t[-76.532409, 38.680064],\n\t\t\t\t\t\t[-76.532398, 38.678363],\n\t\t\t\t\t\t[-76.532056, 38.676936],\n\t\t\t\t\t\t[-76.530454, 38.670263],\n\t\t\t\t\t\t[-76.527850, 38.659416],\n\t\t\t\t\t\t[-76.527428, 38.657655],\n\t\t\t\t\t\t[-76.525007, 38.647568],\n\t\t\t\t\t\t[-76.524620, 38.645956],\n\t\t\t\t\t\t[-76.524122, 38.645044],\n\t\t\t\t\t\t[-76.517862, 38.633586],\n\t\t\t\t\t\t[-76.516988, 38.631985],\n\t\t\t\t\t\t[-76.515554, 38.629361],\n\t\t\t\t\t\t[-76.511278, 38.615745],\n\t\t\t\t\t\t[-76.512452, 38.609827],\n\t\t\t\t\t\t[-76.512583, 38.609168],\n\t\t\t\t\t\t[-76.514812, 38.597930],\n\t\t\t\t\t\t[-76.515741, 38.593248],\n\t\t\t\t\t\t[-76.515760, 38.593154],\n\t\t\t\t\t\t[-76.515764, 38.593131],\n\t\t\t\t\t\t[-76.516340, 38.590229],\n\t\t\t\t\t\t[-76.515106, 38.555763],\n\t\t\t\t\t\t[-76.515376, 38.553895],\n\t\t\t\t\t\t[-76.515409, 38.553667],\n\t\t\t\t\t\t[-76.515415, 38.553623],\n\t\t\t\t\t\t[-76.515520, 38.552900],\n\t\t\t\t\t\t[-76.517506, 38.539149],\n\t\t\t\t\t\t[-76.515754, 38.529260],\n\t\t\t\t\t\t[-76.515706, 38.528988],\n\t\t\t\t\t\t[-76.515350, 38.528093],\n\t\t\t\t\t\t[-76.507489, 38.508300],\n\t\t\t\t\t\t[-76.506860, 38.506716],\n\t\t\t\t\t\t[-76.506023, 38.504610],\n\t\t\t\t\t\t[-76.499256, 38.493559],\n\t\t\t\t\t\t[-76.498792, 38.492800],\n\t\t\t\t\t\t[-76.498222, 38.491869],\n\t\t\t\t\t\t[-76.492699, 38.482849],\n\t\t\t\t\t\t[-76.491642, 38.481944],\n\t\t\t\t\t\t[-76.473372, 38.466290],\n\t\t\t\t\t\t[-76.471253, 38.464474],\n\t\t\t\t\t\t[-76.467342, 38.461123],\n\t\t\t\t\t\t[-76.467194, 38.460996],\n\t\t\t\t\t\t[-76.467186, 38.460990],\n\t\t\t\t\t\t[-76.464010, 38.458268],\n\t\t\t\t\t\t[-76.461078, 38.455756],\n\t\t\t\t\t\t[-76.455799, 38.451233],\n\t\t\t\t\t\t[-76.456002, 38.447891],\n\t\t\t\t\t\t[-76.454140, 38.445880],\n\t\t\t\t\t\t[-76.450937, 38.442422],\n\t\t\t\t\t\t[-76.445376, 38.439012],\n\t\t\t\t\t\t[-76.442441, 38.437212],\n\t\t\t\t\t\t[-76.442431, 38.437206],\n\t\t\t\t\t\t[-76.441180, 38.436439],\n\t\t\t\t\t\t[-76.438919, 38.435053],\n\t\t\t\t\t\t[-76.436271, 38.433429],\n\t\t\t\t\t\t[-76.435674, 38.432893],\n\t\t\t\t\t\t[-76.415384, 38.414682],\n\t\t\t\t\t\t[-76.402710, 38.396003],\n\t\t\t\t\t\t[-76.393378, 38.389477],\n\t\t\t\t\t\t[-76.388348, 38.387781],\n\t\t\t\t\t\t[-76.388328, 38.387727],\n\t\t\t\t\t\t[-76.386229, 38.382013],\n\t\t\t\t\t\t[-76.386243, 38.381631],\n\t\t\t\t\t\t[-76.386931, 38.363184],\n\t\t\t\t\t\t[-76.386957, 38.362462],\n\t\t\t\t\t\t[-76.387002, 38.361267],\n\t\t\t\t\t\t[-76.387408, 38.360811],\n\t\t\t\t\t\t[-76.388806, 38.359238],\n\t\t\t\t\t\t[-76.388915, 38.359115],\n\t\t\t\t\t\t[-76.398261, 38.348602],\n\t\t\t\t\t\t[-76.400871, 38.345666],\n\t\t\t\t\t\t[-76.401532, 38.344923],\n\t\t\t\t\t\t[-76.402043, 38.344348],\n\t\t\t\t\t\t[-76.403101, 38.343157]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US24017\",\n\t\t\t\t\"STATE\": \"24\",\n\t\t\t\t\"COUNTY\": \"017\",\n\t\t\t\t\"NAME\": \"Charles\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 457.749000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.125191, 38.619096],\n\t\t\t\t\t\t[-77.124630, 38.619778],\n\t\t\t\t\t\t[-77.130200, 38.635017],\n\t\t\t\t\t\t[-77.135901, 38.649817],\n\t\t\t\t\t\t[-77.132501, 38.673816],\n\t\t\t\t\t\t[-77.121101, 38.686616],\n\t\t\t\t\t\t[-77.105900, 38.696815],\n\t\t\t\t\t\t[-77.086113, 38.705792],\n\t\t\t\t\t\t[-77.078599, 38.694114],\n\t\t\t\t\t\t[-77.077027, 38.690168],\n\t\t\t\t\t\t[-77.011028, 38.651975],\n\t\t\t\t\t\t[-76.862955, 38.658649],\n\t\t\t\t\t\t[-76.747335, 38.616677],\n\t\t\t\t\t\t[-76.675457, 38.535876],\n\t\t\t\t\t\t[-76.662995, 38.526616],\n\t\t\t\t\t\t[-76.674118, 38.499622],\n\t\t\t\t\t\t[-76.683820, 38.495251],\n\t\t\t\t\t\t[-76.699317, 38.497125],\n\t\t\t\t\t\t[-76.700122, 38.497634],\n\t\t\t\t\t\t[-76.700275, 38.497940],\n\t\t\t\t\t\t[-76.700012, 38.499129],\n\t\t\t\t\t\t[-76.701033, 38.499646],\n\t\t\t\t\t\t[-76.701475, 38.500195],\n\t\t\t\t\t\t[-76.702203, 38.501668],\n\t\t\t\t\t\t[-76.703316, 38.502401],\n\t\t\t\t\t\t[-76.703727, 38.502297],\n\t\t\t\t\t\t[-76.704443, 38.501835],\n\t\t\t\t\t\t[-76.705353, 38.502019],\n\t\t\t\t\t\t[-76.705541, 38.502959],\n\t\t\t\t\t\t[-76.706520, 38.504250],\n\t\t\t\t\t\t[-76.708448, 38.504838],\n\t\t\t\t\t\t[-76.708441, 38.505545],\n\t\t\t\t\t\t[-76.709169, 38.507360],\n\t\t\t\t\t\t[-76.709950, 38.508065],\n\t\t\t\t\t\t[-76.710413, 38.507453],\n\t\t\t\t\t\t[-76.710530, 38.509170],\n\t\t\t\t\t\t[-76.711840, 38.509871],\n\t\t\t\t\t\t[-76.713459, 38.509500],\n\t\t\t\t\t\t[-76.713835, 38.510482],\n\t\t\t\t\t\t[-76.715260, 38.509498],\n\t\t\t\t\t\t[-76.715920, 38.509474],\n\t\t\t\t\t\t[-76.716407, 38.510112],\n\t\t\t\t\t\t[-76.717758, 38.510380],\n\t\t\t\t\t\t[-76.718537, 38.509784],\n\t\t\t\t\t\t[-76.719146, 38.509825],\n\t\t\t\t\t\t[-76.720401, 38.510692],\n\t\t\t\t\t\t[-76.722650, 38.510684],\n\t\t\t\t\t\t[-76.726627, 38.511769],\n\t\t\t\t\t\t[-76.730088, 38.511830],\n\t\t\t\t\t\t[-76.733669, 38.512464],\n\t\t\t\t\t\t[-76.734922, 38.512189],\n\t\t\t\t\t\t[-76.738652, 38.512340],\n\t\t\t\t\t\t[-76.740048, 38.512576],\n\t\t\t\t\t\t[-76.742151, 38.512487],\n\t\t\t\t\t\t[-76.744138, 38.512191],\n\t\t\t\t\t\t[-76.745861, 38.512627],\n\t\t\t\t\t\t[-76.748052, 38.512469],\n\t\t\t\t\t\t[-76.752051, 38.513733],\n\t\t\t\t\t\t[-76.753855, 38.513525],\n\t\t\t\t\t\t[-76.756546, 38.513532],\n\t\t\t\t\t\t[-76.758000, 38.513088],\n\t\t\t\t\t\t[-76.759769, 38.513023],\n\t\t\t\t\t\t[-76.760202, 38.513292],\n\t\t\t\t\t\t[-76.762551, 38.513172],\n\t\t\t\t\t\t[-76.764753, 38.513382],\n\t\t\t\t\t\t[-76.766899, 38.513278],\n\t\t\t\t\t\t[-76.768654, 38.512614],\n\t\t\t\t\t\t[-76.770193, 38.510478],\n\t\t\t\t\t\t[-76.771045, 38.509889],\n\t\t\t\t\t\t[-76.774924, 38.508920],\n\t\t\t\t\t\t[-76.871810, 38.388973],\n\t\t\t\t\t\t[-76.849933, 38.365815],\n\t\t\t\t\t\t[-76.853623, 38.340100],\n\t\t\t\t\t\t[-76.834046, 38.299680],\n\t\t\t\t\t\t[-76.845846, 38.297783],\n\t\t\t\t\t\t[-76.846118, 38.297739],\n\t\t\t\t\t\t[-76.846252, 38.297718],\n\t\t\t\t\t\t[-76.846221, 38.291960],\n\t\t\t\t\t\t[-76.846220, 38.291768],\n\t\t\t\t\t\t[-76.841703, 38.289768],\n\t\t\t\t\t\t[-76.841241, 38.289564],\n\t\t\t\t\t\t[-76.840383, 38.289184],\n\t\t\t\t\t\t[-76.838539, 38.284170],\n\t\t\t\t\t\t[-76.834908, 38.274299],\n\t\t\t\t\t\t[-76.834803, 38.274012],\n\t\t\t\t\t\t[-76.835136, 38.272628],\n\t\t\t\t\t\t[-76.837697, 38.261990],\n\t\t\t\t\t\t[-76.837789, 38.261609],\n\t\t\t\t\t\t[-76.842038, 38.254657],\n\t\t\t\t\t\t[-76.842139, 38.254491],\n\t\t\t\t\t\t[-76.843422, 38.254925],\n\t\t\t\t\t\t[-76.844221, 38.255195],\n\t\t\t\t\t\t[-76.844885, 38.255420],\n\t\t\t\t\t\t[-76.846036, 38.255809],\n\t\t\t\t\t\t[-76.847074, 38.256160],\n\t\t\t\t\t\t[-76.864292, 38.268945],\n\t\t\t\t\t\t[-76.866302, 38.269673],\n\t\t\t\t\t\t[-76.866416, 38.269715],\n\t\t\t\t\t\t[-76.886535, 38.277004],\n\t\t\t\t\t\t[-76.908506, 38.288430],\n\t\t\t\t\t\t[-76.920778, 38.291529],\n\t\t\t\t\t\t[-76.920932, 38.291568],\n\t\t\t\t\t\t[-76.922161, 38.311086],\n\t\t\t\t\t\t[-76.922177, 38.311339],\n\t\t\t\t\t\t[-76.923629, 38.314932],\n\t\t\t\t\t\t[-76.924668, 38.316011],\n\t\t\t\t\t\t[-76.927019, 38.318454],\n\t\t\t\t\t\t[-76.929554, 38.321088],\n\t\t\t\t\t\t[-76.942132, 38.329601],\n\t\t\t\t\t\t[-76.953928, 38.333282],\n\t\t\t\t\t\t[-76.966349, 38.341372],\n\t\t\t\t\t\t[-76.975092, 38.347067],\n\t\t\t\t\t\t[-76.975492, 38.347327],\n\t\t\t\t\t\t[-76.983582, 38.362999],\n\t\t\t\t\t\t[-76.986464, 38.382618],\n\t\t\t\t\t\t[-76.986699, 38.384213],\n\t\t\t\t\t\t[-76.986996, 38.386237],\n\t\t\t\t\t\t[-76.987838, 38.391965],\n\t\t\t\t\t\t[-76.988280, 38.394975],\n\t\t\t\t\t\t[-76.989271, 38.396352],\n\t\t\t\t\t\t[-76.989306, 38.396401],\n\t\t\t\t\t\t[-76.990305, 38.397788],\n\t\t\t\t\t\t[-76.993839, 38.402699],\n\t\t\t\t\t\t[-76.996663, 38.406623],\n\t\t\t\t\t\t[-76.996724, 38.406708],\n\t\t\t\t\t\t[-76.998585, 38.409294],\n\t\t\t\t\t\t[-76.998843, 38.410362],\n\t\t\t\t\t\t[-77.000997, 38.419293],\n\t\t\t\t\t\t[-77.001541, 38.421548],\n\t\t\t\t\t\t[-77.001638, 38.421952],\n\t\t\t\t\t\t[-77.001902, 38.422376],\n\t\t\t\t\t\t[-77.002570, 38.423447],\n\t\t\t\t\t\t[-77.006495, 38.429738],\n\t\t\t\t\t\t[-77.006767, 38.430176],\n\t\t\t\t\t\t[-77.016371, 38.445572],\n\t\t\t\t\t\t[-77.016674, 38.445560],\n\t\t\t\t\t\t[-77.040638, 38.444618],\n\t\t\t\t\t\t[-77.042046, 38.443983],\n\t\t\t\t\t\t[-77.042879, 38.443607],\n\t\t\t\t\t\t[-77.044188, 38.443016],\n\t\t\t\t\t\t[-77.053187, 38.437753],\n\t\t\t\t\t\t[-77.053290, 38.437693],\n\t\t\t\t\t\t[-77.053445, 38.437602],\n\t\t\t\t\t\t[-77.053663, 38.437475],\n\t\t\t\t\t\t[-77.053979, 38.437290],\n\t\t\t\t\t\t[-77.054972, 38.436709],\n\t\t\t\t\t\t[-77.055162, 38.436598],\n\t\t\t\t\t\t[-77.055320, 38.436505],\n\t\t\t\t\t\t[-77.056892, 38.435586],\n\t\t\t\t\t\t[-77.057277, 38.435361],\n\t\t\t\t\t\t[-77.057460, 38.435254],\n\t\t\t\t\t\t[-77.057684, 38.435123],\n\t\t\t\t\t\t[-77.062607, 38.432244],\n\t\t\t\t\t\t[-77.074174, 38.425479],\n\t\t\t\t\t\t[-77.074339, 38.425382],\n\t\t\t\t\t\t[-77.074703, 38.425170],\n\t\t\t\t\t\t[-77.075489, 38.424710],\n\t\t\t\t\t\t[-77.081252, 38.419449],\n\t\t\t\t\t\t[-77.081418, 38.419297],\n\t\t\t\t\t\t[-77.086393, 38.414755],\n\t\t\t\t\t\t[-77.091073, 38.407546],\n\t\t\t\t\t\t[-77.106571, 38.406237],\n\t\t\t\t\t\t[-77.106968, 38.406531],\n\t\t\t\t\t\t[-77.107631, 38.407022],\n\t\t\t\t\t\t[-77.107881, 38.407207],\n\t\t\t\t\t\t[-77.109055, 38.408076],\n\t\t\t\t\t\t[-77.109171, 38.408162],\n\t\t\t\t\t\t[-77.110586, 38.409210],\n\t\t\t\t\t\t[-77.110623, 38.409214],\n\t\t\t\t\t\t[-77.123325, 38.410646],\n\t\t\t\t\t\t[-77.125933, 38.404845],\n\t\t\t\t\t\t[-77.127392, 38.401600],\n\t\t\t\t\t\t[-77.127737, 38.400833],\n\t\t\t\t\t\t[-77.128377, 38.400190],\n\t\t\t\t\t\t[-77.128649, 38.399917],\n\t\t\t\t\t\t[-77.128823, 38.399742],\n\t\t\t\t\t\t[-77.128872, 38.399692],\n\t\t\t\t\t\t[-77.129090, 38.399474],\n\t\t\t\t\t\t[-77.130287, 38.398271],\n\t\t\t\t\t\t[-77.135224, 38.393311],\n\t\t\t\t\t\t[-77.136434, 38.392094],\n\t\t\t\t\t\t[-77.136728, 38.391799],\n\t\t\t\t\t\t[-77.136947, 38.391684],\n\t\t\t\t\t\t[-77.139968, 38.390102],\n\t\t\t\t\t\t[-77.143152, 38.388435],\n\t\t\t\t\t\t[-77.147541, 38.386136],\n\t\t\t\t\t\t[-77.163531, 38.377761],\n\t\t\t\t\t\t[-77.168697, 38.375055],\n\t\t\t\t\t\t[-77.177000, 38.370706],\n\t\t\t\t\t\t[-77.179800, 38.369239],\n\t\t\t\t\t\t[-77.182638, 38.367753],\n\t\t\t\t\t\t[-77.183268, 38.367423],\n\t\t\t\t\t\t[-77.184917, 38.366559],\n\t\t\t\t\t\t[-77.186680, 38.365636],\n\t\t\t\t\t\t[-77.189412, 38.364872],\n\t\t\t\t\t\t[-77.205009, 38.360511],\n\t\t\t\t\t\t[-77.207214, 38.359894],\n\t\t\t\t\t\t[-77.207312, 38.359867],\n\t\t\t\t\t\t[-77.207371, 38.359888],\n\t\t\t\t\t\t[-77.208334, 38.360224],\n\t\t\t\t\t\t[-77.212189, 38.361572],\n\t\t\t\t\t\t[-77.216729, 38.363159],\n\t\t\t\t\t\t[-77.216834, 38.363221],\n\t\t\t\t\t\t[-77.236231, 38.374601],\n\t\t\t\t\t\t[-77.250172, 38.382781],\n\t\t\t\t\t\t[-77.250862, 38.384325],\n\t\t\t\t\t\t[-77.251220, 38.385127],\n\t\t\t\t\t\t[-77.253202, 38.389567],\n\t\t\t\t\t\t[-77.256412, 38.396755],\n\t\t\t\t\t\t[-77.257177, 38.398470],\n\t\t\t\t\t\t[-77.261937, 38.409131],\n\t\t\t\t\t\t[-77.264238, 38.414282],\n\t\t\t\t\t\t[-77.261290, 38.423670],\n\t\t\t\t\t\t[-77.259962, 38.427902],\n\t\t\t\t\t\t[-77.259962, 38.435821],\n\t\t\t\t\t\t[-77.260760, 38.438394],\n\t\t\t\t\t\t[-77.263682, 38.447810],\n\t\t\t\t\t\t[-77.266845, 38.458004],\n\t\t\t\t\t\t[-77.269474, 38.466476],\n\t\t\t\t\t\t[-77.274021, 38.481127],\n\t\t\t\t\t\t[-77.274170, 38.481608],\n\t\t\t\t\t\t[-77.274220, 38.481770],\n\t\t\t\t\t\t[-77.274125, 38.482044],\n\t\t\t\t\t\t[-77.271099, 38.490753],\n\t\t\t\t\t\t[-77.263599, 38.512344],\n\t\t\t\t\t\t[-77.257378, 38.521847],\n\t\t\t\t\t\t[-77.254882, 38.525660],\n\t\t\t\t\t\t[-77.246089, 38.539093],\n\t\t\t\t\t\t[-77.242736, 38.544214],\n\t\t\t\t\t\t[-77.237724, 38.551870],\n\t\t\t\t\t\t[-77.236728, 38.552071],\n\t\t\t\t\t\t[-77.226465, 38.554139],\n\t\t\t\t\t\t[-77.221117, 38.555217],\n\t\t\t\t\t\t[-77.209905, 38.568870],\n\t\t\t\t\t\t[-77.205261, 38.574525],\n\t\t\t\t\t\t[-77.183767, 38.600699],\n\t\t\t\t\t\t[-77.175969, 38.604113],\n\t\t\t\t\t\t[-77.169968, 38.606740],\n\t\t\t\t\t\t[-77.169671, 38.606870],\n\t\t\t\t\t\t[-77.167523, 38.606740],\n\t\t\t\t\t\t[-77.163945, 38.606524],\n\t\t\t\t\t\t[-77.163409, 38.606492],\n\t\t\t\t\t\t[-77.163160, 38.606477],\n\t\t\t\t\t\t[-77.162649, 38.606446],\n\t\t\t\t\t\t[-77.161585, 38.606381],\n\t\t\t\t\t\t[-77.148651, 38.605600],\n\t\t\t\t\t\t[-77.146087, 38.606748],\n\t\t\t\t\t\t[-77.135539, 38.611473],\n\t\t\t\t\t\t[-77.129213, 38.614306],\n\t\t\t\t\t\t[-77.129084, 38.614364],\n\t\t\t\t\t\t[-77.128841, 38.614660],\n\t\t\t\t\t\t[-77.126340, 38.617700],\n\t\t\t\t\t\t[-77.125191, 38.619096]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US24019\",\n\t\t\t\t\"STATE\": \"24\",\n\t\t\t\t\"COUNTY\": \"019\",\n\t\t\t\t\"NAME\": \"Dorchester\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 540.765000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-76.048373, 38.120550],\n\t\t\t\t\t\t\t[-76.056811, 38.125123],\n\t\t\t\t\t\t\t[-76.061000, 38.127002],\n\t\t\t\t\t\t\t[-76.061111, 38.126963],\n\t\t\t\t\t\t\t[-76.061470, 38.126839],\n\t\t\t\t\t\t\t[-76.063661, 38.126078],\n\t\t\t\t\t\t\t[-76.064683, 38.125723],\n\t\t\t\t\t\t\t[-76.081127, 38.120014],\n\t\t\t\t\t\t\t[-76.081587, 38.119854],\n\t\t\t\t\t\t\t[-76.085230, 38.118589],\n\t\t\t\t\t\t\t[-76.085311, 38.118561],\n\t\t\t\t\t\t\t[-76.085542, 38.117869],\n\t\t\t\t\t\t\t[-76.085885, 38.116844],\n\t\t\t\t\t\t\t[-76.085947, 38.116658],\n\t\t\t\t\t\t\t[-76.086224, 38.116534],\n\t\t\t\t\t\t\t[-76.089018, 38.115287],\n\t\t\t\t\t\t\t[-76.089166, 38.115221],\n\t\t\t\t\t\t\t[-76.090872, 38.114460],\n\t\t\t\t\t\t\t[-76.095548, 38.125123],\n\t\t\t\t\t\t\t[-76.090649, 38.131185],\n\t\t\t\t\t\t\t[-76.090640, 38.131240],\n\t\t\t\t\t\t\t[-76.090527, 38.131919],\n\t\t\t\t\t\t\t[-76.089017, 38.141033],\n\t\t\t\t\t\t\t[-76.089918, 38.143837],\n\t\t\t\t\t\t\t[-76.090216, 38.144765],\n\t\t\t\t\t\t\t[-76.092334, 38.151355],\n\t\t\t\t\t\t\t[-76.088639, 38.192649],\n\t\t\t\t\t\t\t[-76.071470, 38.203502],\n\t\t\t\t\t\t\t[-76.067797, 38.203539],\n\t\t\t\t\t\t\t[-76.067100, 38.203546],\n\t\t\t\t\t\t\t[-76.066994, 38.203547],\n\t\t\t\t\t\t\t[-76.061906, 38.203599],\n\t\t\t\t\t\t\t[-76.059731, 38.203621],\n\t\t\t\t\t\t\t[-76.059562, 38.203622],\n\t\t\t\t\t\t\t[-76.059218, 38.203626],\n\t\t\t\t\t\t\t[-76.059158, 38.203626],\n\t\t\t\t\t\t\t[-76.059020, 38.203628],\n\t\t\t\t\t\t\t[-76.058925, 38.203629],\n\t\t\t\t\t\t\t[-76.053753, 38.203681],\n\t\t\t\t\t\t\t[-76.052165, 38.203697],\n\t\t\t\t\t\t\t[-76.050511, 38.203714],\n\t\t\t\t\t\t\t[-76.048945, 38.203729],\n\t\t\t\t\t\t\t[-76.048786, 38.203731],\n\t\t\t\t\t\t\t[-76.046539, 38.201549],\n\t\t\t\t\t\t\t[-76.046273, 38.201290],\n\t\t\t\t\t\t\t[-76.042691, 38.197811],\n\t\t\t\t\t\t\t[-76.042615, 38.197737],\n\t\t\t\t\t\t\t[-76.042385, 38.197515],\n\t\t\t\t\t\t\t[-76.042280, 38.197412],\n\t\t\t\t\t\t\t[-76.041952, 38.197094],\n\t\t\t\t\t\t\t[-76.040718, 38.195896],\n\t\t\t\t\t\t\t[-76.038929, 38.194158],\n\t\t\t\t\t\t\t[-76.036757, 38.192049],\n\t\t\t\t\t\t\t[-76.028580, 38.184107],\n\t\t\t\t\t\t\t[-76.028411, 38.183943],\n\t\t\t\t\t\t\t[-76.026900, 38.182476],\n\t\t\t\t\t\t\t[-76.025899, 38.181504],\n\t\t\t\t\t\t\t[-76.022170, 38.177882],\n\t\t\t\t\t\t\t[-76.021941, 38.171976],\n\t\t\t\t\t\t\t[-76.025892, 38.170946],\n\t\t\t\t\t\t\t[-76.032767, 38.169154],\n\t\t\t\t\t\t\t[-76.032816, 38.169141],\n\t\t\t\t\t\t\t[-76.034038, 38.157902],\n\t\t\t\t\t\t\t[-76.033978, 38.157636],\n\t\t\t\t\t\t\t[-76.031945, 38.148631],\n\t\t\t\t\t\t\t[-76.031868, 38.148288],\n\t\t\t\t\t\t\t[-76.031442, 38.147612],\n\t\t\t\t\t\t\t[-76.048373, 38.120550]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-75.925492, 38.266670],\n\t\t\t\t\t\t\t[-75.938577, 38.272329],\n\t\t\t\t\t\t\t[-75.940302, 38.271611],\n\t\t\t\t\t\t\t[-75.942462, 38.270711],\n\t\t\t\t\t\t\t[-75.942703, 38.270611],\n\t\t\t\t\t\t\t[-75.948346, 38.268261],\n\t\t\t\t\t\t\t[-75.951360, 38.267006],\n\t\t\t\t\t\t\t[-75.951497, 38.266949],\n\t\t\t\t\t\t\t[-75.951512, 38.266936],\n\t\t\t\t\t\t\t[-75.951563, 38.266892],\n\t\t\t\t\t\t\t[-75.951647, 38.266819],\n\t\t\t\t\t\t\t[-75.954483, 38.264366],\n\t\t\t\t\t\t\t[-75.954568, 38.264293],\n\t\t\t\t\t\t\t[-75.954701, 38.264177],\n\t\t\t\t\t\t\t[-75.954737, 38.264146],\n\t\t\t\t\t\t\t[-75.954824, 38.264071],\n\t\t\t\t\t\t\t[-75.954908, 38.263998],\n\t\t\t\t\t\t\t[-75.954908, 38.263997],\n\t\t\t\t\t\t\t[-75.954810, 38.261016],\n\t\t\t\t\t\t\t[-75.954582, 38.254108],\n\t\t\t\t\t\t\t[-75.954561, 38.253476],\n\t\t\t\t\t\t\t[-75.954542, 38.252894],\n\t\t\t\t\t\t\t[-75.950056, 38.249699],\n\t\t\t\t\t\t\t[-75.949458, 38.249273],\n\t\t\t\t\t\t\t[-75.948796, 38.248802],\n\t\t\t\t\t\t\t[-75.947876, 38.248875],\n\t\t\t\t\t\t\t[-75.945678, 38.249051],\n\t\t\t\t\t\t\t[-75.944500, 38.249145],\n\t\t\t\t\t\t\t[-75.943032, 38.248279],\n\t\t\t\t\t\t\t[-75.942465, 38.247945],\n\t\t\t\t\t\t\t[-75.942263, 38.247826],\n\t\t\t\t\t\t\t[-75.940697, 38.246902],\n\t\t\t\t\t\t\t[-75.941190, 38.246211],\n\t\t\t\t\t\t\t[-75.942804, 38.243949],\n\t\t\t\t\t\t\t[-75.946414, 38.238890],\n\t\t\t\t\t\t\t[-75.948197, 38.238504],\n\t\t\t\t\t\t\t[-75.951156, 38.237862],\n\t\t\t\t\t\t\t[-75.955164, 38.236994],\n\t\t\t\t\t\t\t[-75.955833, 38.236849],\n\t\t\t\t\t\t\t[-75.958338, 38.236306],\n\t\t\t\t\t\t\t[-75.958794, 38.236208],\n\t\t\t\t\t\t\t[-75.961972, 38.235519],\n\t\t\t\t\t\t\t[-75.962111, 38.235489],\n\t\t\t\t\t\t\t[-75.962729, 38.235355],\n\t\t\t\t\t\t\t[-75.962931, 38.235311],\n\t\t\t\t\t\t\t[-75.970514, 38.233668],\n\t\t\t\t\t\t\t[-75.971487, 38.233457],\n\t\t\t\t\t\t\t[-75.972212, 38.233300],\n\t\t\t\t\t\t\t[-75.970400, 38.235043],\n\t\t\t\t\t\t\t[-75.970115, 38.235317],\n\t\t\t\t\t\t\t[-75.969383, 38.236021],\n\t\t\t\t\t\t\t[-75.969326, 38.236076],\n\t\t\t\t\t\t\t[-75.964528, 38.240692],\n\t\t\t\t\t\t\t[-75.964119, 38.241085],\n\t\t\t\t\t\t\t[-75.963969, 38.241598],\n\t\t\t\t\t\t\t[-75.962235, 38.247540],\n\t\t\t\t\t\t\t[-75.963453, 38.251793],\n\t\t\t\t\t\t\t[-75.984274, 38.265155],\n\t\t\t\t\t\t\t[-75.985815, 38.276466],\n\t\t\t\t\t\t\t[-75.987814, 38.279287],\n\t\t\t\t\t\t\t[-75.988731, 38.280581],\n\t\t\t\t\t\t\t[-75.990385, 38.282915],\n\t\t\t\t\t\t\t[-75.991162, 38.283894],\n\t\t\t\t\t\t\t[-75.991687, 38.284555],\n\t\t\t\t\t\t\t[-75.992669, 38.285792],\n\t\t\t\t\t\t\t[-75.992829, 38.285994],\n\t\t\t\t\t\t\t[-75.993391, 38.286702],\n\t\t\t\t\t\t\t[-76.000241, 38.295331],\n\t\t\t\t\t\t\t[-76.004010, 38.300079],\n\t\t\t\t\t\t\t[-76.007118, 38.303994],\n\t\t\t\t\t\t\t[-76.007254, 38.304165],\n\t\t\t\t\t\t\t[-76.007375, 38.304318],\n\t\t\t\t\t\t\t[-76.007478, 38.304351],\n\t\t\t\t\t\t\t[-76.011245, 38.305572],\n\t\t\t\t\t\t\t[-76.011458, 38.305640],\n\t\t\t\t\t\t\t[-76.016291, 38.307206],\n\t\t\t\t\t\t\t[-76.016314, 38.307247],\n\t\t\t\t\t\t\t[-76.016514, 38.307600],\n\t\t\t\t\t\t\t[-76.017308, 38.309007],\n\t\t\t\t\t\t\t[-76.017364, 38.309106],\n\t\t\t\t\t\t\t[-76.009377, 38.311997],\n\t\t\t\t\t\t\t[-76.008647, 38.312261],\n\t\t\t\t\t\t\t[-75.991151, 38.314110],\n\t\t\t\t\t\t\t[-75.990485, 38.314181],\n\t\t\t\t\t\t\t[-75.986025, 38.314652],\n\t\t\t\t\t\t\t[-75.984784, 38.314783],\n\t\t\t\t\t\t\t[-75.984433, 38.314821],\n\t\t\t\t\t\t\t[-75.983186, 38.314952],\n\t\t\t\t\t\t\t[-75.983171, 38.314954],\n\t\t\t\t\t\t\t[-75.982523, 38.315022],\n\t\t\t\t\t\t\t[-75.981345, 38.315147],\n\t\t\t\t\t\t\t[-75.969577, 38.320044],\n\t\t\t\t\t\t\t[-75.969290, 38.320164],\n\t\t\t\t\t\t\t[-75.968880, 38.320498],\n\t\t\t\t\t\t\t[-75.964237, 38.324285],\n\t\t\t\t\t\t\t[-75.961944, 38.332572],\n\t\t\t\t\t\t\t[-75.961945, 38.335830],\n\t\t\t\t\t\t\t[-75.961946, 38.336018],\n\t\t\t\t\t\t\t[-75.961948, 38.341431],\n\t\t\t\t\t\t\t[-75.965366, 38.348429],\n\t\t\t\t\t\t\t[-75.966397, 38.350540],\n\t\t\t\t\t\t\t[-75.968881, 38.355623],\n\t\t\t\t\t\t\t[-75.969161, 38.356197],\n\t\t\t\t\t\t\t[-75.970840, 38.359635],\n\t\t\t\t\t\t\t[-75.971019, 38.360002],\n\t\t\t\t\t\t\t[-75.971541, 38.361069],\n\t\t\t\t\t\t\t[-75.971910, 38.361826],\n\t\t\t\t\t\t\t[-75.972174, 38.362365],\n\t\t\t\t\t\t\t[-75.972281, 38.362584],\n\t\t\t\t\t\t\t[-75.973876, 38.365850],\n\t\t\t\t\t\t\t[-75.979727, 38.367627],\n\t\t\t\t\t\t\t[-75.980180, 38.367765],\n\t\t\t\t\t\t\t[-75.980829, 38.367962],\n\t\t\t\t\t\t\t[-75.995706, 38.372480],\n\t\t\t\t\t\t\t[-76.001839, 38.374343],\n\t\t\t\t\t\t\t[-76.002156, 38.374439],\n\t\t\t\t\t\t\t[-76.002282, 38.374477],\n\t\t\t\t\t\t\t[-76.004946, 38.372045],\n\t\t\t\t\t\t\t[-76.006949, 38.370216],\n\t\t\t\t\t\t\t[-76.011869, 38.360582],\n\t\t\t\t\t\t\t[-76.012149, 38.357077],\n\t\t\t\t\t\t\t[-76.011033, 38.354844],\n\t\t\t\t\t\t\t[-76.010737, 38.354251],\n\t\t\t\t\t\t\t[-76.010255, 38.353287],\n\t\t\t\t\t\t\t[-76.010217, 38.353211],\n\t\t\t\t\t\t\t[-76.010366, 38.352732],\n\t\t\t\t\t\t\t[-76.010437, 38.352504],\n\t\t\t\t\t\t\t[-76.016682, 38.332429],\n\t\t\t\t\t\t\t[-76.033947, 38.323211],\n\t\t\t\t\t\t\t[-76.041431, 38.322163],\n\t\t\t\t\t\t\t[-76.041618, 38.322137],\n\t\t\t\t\t\t\t[-76.041659, 38.322097],\n\t\t\t\t\t\t\t[-76.043180, 38.320610],\n\t\t\t\t\t\t\t[-76.043923, 38.319884],\n\t\t\t\t\t\t\t[-76.044649, 38.319175],\n\t\t\t\t\t\t\t[-76.045057, 38.318776],\n\t\t\t\t\t\t\t[-76.045599, 38.318246],\n\t\t\t\t\t\t\t[-76.045964, 38.317452],\n\t\t\t\t\t\t\t[-76.046367, 38.316576],\n\t\t\t\t\t\t\t[-76.047401, 38.314329],\n\t\t\t\t\t\t\t[-76.047992, 38.313044],\n\t\t\t\t\t\t\t[-76.048637, 38.311643],\n\t\t\t\t\t\t\t[-76.048965, 38.310930],\n\t\t\t\t\t\t\t[-76.049207, 38.310404],\n\t\t\t\t\t\t\t[-76.049523, 38.309718],\n\t\t\t\t\t\t\t[-76.049580, 38.309594],\n\t\t\t\t\t\t\t[-76.049609, 38.309348],\n\t\t\t\t\t\t\t[-76.049647, 38.309017],\n\t\t\t\t\t\t\t[-76.050220, 38.304101],\n\t\t\t\t\t\t\t[-76.047147, 38.301582],\n\t\t\t\t\t\t\t[-76.040019, 38.295738],\n\t\t\t\t\t\t\t[-76.030532, 38.287960],\n\t\t\t\t\t\t\t[-76.028234, 38.282035],\n\t\t\t\t\t\t\t[-76.027557, 38.280288],\n\t\t\t\t\t\t\t[-76.027487, 38.280108],\n\t\t\t\t\t\t\t[-76.032595, 38.268875],\n\t\t\t\t\t\t\t[-76.032664, 38.268722],\n\t\t\t\t\t\t\t[-76.032771, 38.268487],\n\t\t\t\t\t\t\t[-76.032998, 38.267989],\n\t\t\t\t\t\t\t[-76.033610, 38.266644],\n\t\t\t\t\t\t\t[-76.033737, 38.266363],\n\t\t\t\t\t\t\t[-76.038935, 38.254932],\n\t\t\t\t\t\t\t[-76.039738, 38.254093],\n\t\t\t\t\t\t\t[-76.043927, 38.249712],\n\t\t\t\t\t\t\t[-76.044251, 38.249373],\n\t\t\t\t\t\t\t[-76.044141, 38.243447],\n\t\t\t\t\t\t\t[-76.044108, 38.241682],\n\t\t\t\t\t\t\t[-76.043814, 38.241294],\n\t\t\t\t\t\t\t[-76.037960, 38.233551],\n\t\t\t\t\t\t\t[-76.037109, 38.232426],\n\t\t\t\t\t\t\t[-76.037103, 38.232418],\n\t\t\t\t\t\t\t[-76.036102, 38.231094],\n\t\t\t\t\t\t\t[-76.035695, 38.230556],\n\t\t\t\t\t\t\t[-76.033455, 38.222046],\n\t\t\t\t\t\t\t[-76.033338, 38.221599],\n\t\t\t\t\t\t\t[-76.032044, 38.216684],\n\t\t\t\t\t\t\t[-76.058010, 38.227079],\n\t\t\t\t\t\t\t[-76.069502, 38.238455],\n\t\t\t\t\t\t\t[-76.070831, 38.241836],\n\t\t\t\t\t\t\t[-76.071154, 38.242657],\n\t\t\t\t\t\t\t[-76.073493, 38.248609],\n\t\t\t\t\t\t\t[-76.073725, 38.249200],\n\t\t\t\t\t\t\t[-76.074491, 38.251148],\n\t\t\t\t\t\t\t[-76.074515, 38.251208],\n\t\t\t\t\t\t\t[-76.074568, 38.251344],\n\t\t\t\t\t\t\t[-76.074607, 38.251443],\n\t\t\t\t\t\t\t[-76.074726, 38.251745],\n\t\t\t\t\t\t\t[-76.074760, 38.251832],\n\t\t\t\t\t\t\t[-76.074897, 38.252181],\n\t\t\t\t\t\t\t[-76.082268, 38.252616],\n\t\t\t\t\t\t\t[-76.082549, 38.252633],\n\t\t\t\t\t\t\t[-76.089797, 38.253061],\n\t\t\t\t\t\t\t[-76.092417, 38.253216],\n\t\t\t\t\t\t\t[-76.092723, 38.253234],\n\t\t\t\t\t\t\t[-76.094689, 38.253350],\n\t\t\t\t\t\t\t[-76.099720, 38.253647],\n\t\t\t\t\t\t\t[-76.107592, 38.262525],\n\t\t\t\t\t\t\t[-76.102549, 38.277153],\n\t\t\t\t\t\t\t[-76.111296, 38.286946],\n\t\t\t\t\t\t\t[-76.126940, 38.283751],\n\t\t\t\t\t\t\t[-76.131085, 38.282904],\n\t\t\t\t\t\t\t[-76.137238, 38.281648],\n\t\t\t\t\t\t\t[-76.137442, 38.281606],\n\t\t\t\t\t\t\t[-76.138479, 38.281394],\n\t\t\t\t\t\t\t[-76.138524, 38.281385],\n\t\t\t\t\t\t\t[-76.138596, 38.281406],\n\t\t\t\t\t\t\t[-76.140674, 38.282006],\n\t\t\t\t\t\t\t[-76.140947, 38.282085],\n\t\t\t\t\t\t\t[-76.143127, 38.282714],\n\t\t\t\t\t\t\t[-76.149398, 38.284525],\n\t\t\t\t\t\t\t[-76.149876, 38.284663],\n\t\t\t\t\t\t\t[-76.160474, 38.290983],\n\t\t\t\t\t\t\t[-76.160838, 38.290948],\n\t\t\t\t\t\t\t[-76.161348, 38.290898],\n\t\t\t\t\t\t\t[-76.166154, 38.290431],\n\t\t\t\t\t\t\t[-76.173418, 38.285326],\n\t\t\t\t\t\t\t[-76.173555, 38.285230],\n\t\t\t\t\t\t\t[-76.173844, 38.284869],\n\t\t\t\t\t\t\t[-76.174011, 38.284659],\n\t\t\t\t\t\t\t[-76.174104, 38.284543],\n\t\t\t\t\t\t\t[-76.174152, 38.284483],\n\t\t\t\t\t\t\t[-76.174484, 38.284068],\n\t\t\t\t\t\t\t[-76.174598, 38.283924],\n\t\t\t\t\t\t\t[-76.174683, 38.283818],\n\t\t\t\t\t\t\t[-76.180115, 38.277019],\n\t\t\t\t\t\t\t[-76.180165, 38.276956],\n\t\t\t\t\t\t\t[-76.180103, 38.276739],\n\t\t\t\t\t\t\t[-76.179123, 38.273291],\n\t\t\t\t\t\t\t[-76.178282, 38.270336],\n\t\t\t\t\t\t\t[-76.175783, 38.261551],\n\t\t\t\t\t\t\t[-76.171254, 38.256984],\n\t\t\t\t\t\t\t[-76.164388, 38.250061],\n\t\t\t\t\t\t\t[-76.163249, 38.248913],\n\t\t\t\t\t\t\t[-76.146297, 38.249678],\n\t\t\t\t\t\t\t[-76.135169, 38.245872],\n\t\t\t\t\t\t\t[-76.134980, 38.245807],\n\t\t\t\t\t\t\t[-76.132544, 38.244974],\n\t\t\t\t\t\t\t[-76.130952, 38.244430],\n\t\t\t\t\t\t\t[-76.126623, 38.242949],\n\t\t\t\t\t\t\t[-76.126453, 38.242046],\n\t\t\t\t\t\t\t[-76.125856, 38.238880],\n\t\t\t\t\t\t\t[-76.125756, 38.238348],\n\t\t\t\t\t\t\t[-76.128452, 38.235704],\n\t\t\t\t\t\t\t[-76.128898, 38.235267],\n\t\t\t\t\t\t\t[-76.131332, 38.232880],\n\t\t\t\t\t\t\t[-76.140068, 38.231305],\n\t\t\t\t\t\t\t[-76.151035, 38.234215],\n\t\t\t\t\t\t\t[-76.173350, 38.247037],\n\t\t\t\t\t\t\t[-76.188644, 38.267434],\n\t\t\t\t\t\t\t[-76.189627, 38.272487],\n\t\t\t\t\t\t\t[-76.189655, 38.272633],\n\t\t\t\t\t\t\t[-76.190531, 38.277139],\n\t\t\t\t\t\t\t[-76.197155, 38.285220],\n\t\t\t\t\t\t\t[-76.197693, 38.285877],\n\t\t\t\t\t\t\t[-76.197871, 38.286094],\n\t\t\t\t\t\t\t[-76.201591, 38.290633],\n\t\t\t\t\t\t\t[-76.201603, 38.290647],\n\t\t\t\t\t\t\t[-76.202334, 38.291539],\n\t\t\t\t\t\t\t[-76.202628, 38.291898],\n\t\t\t\t\t\t\t[-76.202897, 38.292226],\n\t\t\t\t\t\t\t[-76.203430, 38.292876],\n\t\t\t\t\t\t\t[-76.203909, 38.293461],\n\t\t\t\t\t\t\t[-76.211446, 38.302656],\n\t\t\t\t\t\t\t[-76.216266, 38.305023],\n\t\t\t\t\t\t\t[-76.217616, 38.305686],\n\t\t\t\t\t\t\t[-76.218051, 38.305899],\n\t\t\t\t\t\t\t[-76.226376, 38.309988],\n\t\t\t\t\t\t\t[-76.226408, 38.309989],\n\t\t\t\t\t\t\t[-76.243897, 38.310313],\n\t\t\t\t\t\t\t[-76.254473, 38.315120],\n\t\t\t\t\t\t\t[-76.258189, 38.318373],\n\t\t\t\t\t\t\t[-76.266602, 38.339502],\n\t\t\t\t\t\t\t[-76.264186, 38.346436],\n\t\t\t\t\t\t\t[-76.259286, 38.341619],\n\t\t\t\t\t\t\t[-76.259261, 38.341595],\n\t\t\t\t\t\t\t[-76.259235, 38.341603],\n\t\t\t\t\t\t\t[-76.258383, 38.341865],\n\t\t\t\t\t\t\t[-76.257898, 38.342014],\n\t\t\t\t\t\t\t[-76.238452, 38.347986],\n\t\t\t\t\t\t\t[-76.238478, 38.348355],\n\t\t\t\t\t\t\t[-76.238541, 38.349238],\n\t\t\t\t\t\t\t[-76.238611, 38.350233],\n\t\t\t\t\t\t\t[-76.239010, 38.350738],\n\t\t\t\t\t\t\t[-76.239056, 38.350795],\n\t\t\t\t\t\t\t[-76.239601, 38.351486],\n\t\t\t\t\t\t\t[-76.239902, 38.351866],\n\t\t\t\t\t\t\t[-76.240196, 38.352238],\n\t\t\t\t\t\t\t[-76.240410, 38.352508],\n\t\t\t\t\t\t\t[-76.247350, 38.361285],\n\t\t\t\t\t\t\t[-76.248766, 38.363076],\n\t\t\t\t\t\t\t[-76.249666, 38.364214],\n\t\t\t\t\t\t\t[-76.256788, 38.366712],\n\t\t\t\t\t\t\t[-76.257479, 38.366702],\n\t\t\t\t\t\t\t[-76.258022, 38.366695],\n\t\t\t\t\t\t\t[-76.273003, 38.366483],\n\t\t\t\t\t\t\t[-76.278722, 38.382919],\n\t\t\t\t\t\t\t[-76.278813, 38.383179],\n\t\t\t\t\t\t\t[-76.280749, 38.388743],\n\t\t\t\t\t\t\t[-76.281214, 38.390079],\n\t\t\t\t\t\t\t[-76.281320, 38.390384],\n\t\t\t\t\t\t\t[-76.281396, 38.390604],\n\t\t\t\t\t\t\t[-76.281697, 38.391470],\n\t\t\t\t\t\t\t[-76.282144, 38.392754],\n\t\t\t\t\t\t\t[-76.282271, 38.393118],\n\t\t\t\t\t\t\t[-76.280551, 38.403143],\n\t\t\t\t\t\t\t[-76.283020, 38.413512],\n\t\t\t\t\t\t\t[-76.290681, 38.424404],\n\t\t\t\t\t\t\t[-76.300186, 38.437916],\n\t\t\t\t\t\t\t[-76.301488, 38.439767],\n\t\t\t\t\t\t\t[-76.311600, 38.450266],\n\t\t\t\t\t\t\t[-76.311767, 38.450439],\n\t\t\t\t\t\t\t[-76.320843, 38.459862],\n\t\t\t\t\t\t\t[-76.331383, 38.473323],\n\t\t\t\t\t\t\t[-76.331469, 38.473432],\n\t\t\t\t\t\t\t[-76.331559, 38.473548],\n\t\t\t\t\t\t\t[-76.331758, 38.474324],\n\t\t\t\t\t\t\t[-76.331990, 38.475225],\n\t\t\t\t\t\t\t[-76.336360, 38.492235],\n\t\t\t\t\t\t\t[-76.327257, 38.500121],\n\t\t\t\t\t\t\t[-76.318054, 38.498199],\n\t\t\t\t\t\t\t[-76.289507, 38.503906],\n\t\t\t\t\t\t\t[-76.283595, 38.504157],\n\t\t\t\t\t\t\t[-76.281761, 38.502165],\n\t\t\t\t\t\t\t[-76.263968, 38.503452],\n\t\t\t\t\t\t\t[-76.262133, 38.504874],\n\t\t\t\t\t\t\t[-76.260350, 38.506255],\n\t\t\t\t\t\t\t[-76.247894, 38.523019],\n\t\t\t\t\t\t\t[-76.247300, 38.523818],\n\t\t\t\t\t\t\t[-76.244396, 38.536966],\n\t\t\t\t\t\t\t[-76.248885, 38.539023],\n\t\t\t\t\t\t\t[-76.250265, 38.539131],\n\t\t\t\t\t\t\t[-76.251033, 38.539191],\n\t\t\t\t\t\t\t[-76.253624, 38.539393],\n\t\t\t\t\t\t\t[-76.274057, 38.531207],\n\t\t\t\t\t\t\t[-76.278106, 38.532468],\n\t\t\t\t\t\t\t[-76.281047, 38.536130],\n\t\t\t\t\t\t\t[-76.277461, 38.541851],\n\t\t\t\t\t\t\t[-76.275913, 38.548809],\n\t\t\t\t\t\t\t[-76.279640, 38.557231],\n\t\t\t\t\t\t\t[-76.283189, 38.561300],\n\t\t\t\t\t\t\t[-76.283632, 38.561807],\n\t\t\t\t\t\t\t[-76.289017, 38.567982],\n\t\t\t\t\t\t\t[-76.290043, 38.569158],\n\t\t\t\t\t\t\t[-76.290667, 38.569247],\n\t\t\t\t\t\t\t[-76.296469, 38.570076],\n\t\t\t\t\t\t\t[-76.299301, 38.570480],\n\t\t\t\t\t\t\t[-76.308321, 38.571769],\n\t\t\t\t\t\t\t[-76.305172, 38.575293],\n\t\t\t\t\t\t\t[-76.291998, 38.581988],\n\t\t\t\t\t\t\t[-76.290895, 38.582548],\n\t\t\t\t\t\t\t[-76.273496, 38.591390],\n\t\t\t\t\t\t\t[-76.268633, 38.597753],\n\t\t\t\t\t\t\t[-76.272584, 38.601997],\n\t\t\t\t\t\t\t[-76.274611, 38.604174],\n\t\t\t\t\t\t\t[-76.274888, 38.604471],\n\t\t\t\t\t\t\t[-76.275246, 38.604856],\n\t\t\t\t\t\t\t[-76.275282, 38.604895],\n\t\t\t\t\t\t\t[-76.275658, 38.605298],\n\t\t\t\t\t\t\t[-76.279589, 38.609520],\n\t\t\t\t\t\t\t[-76.278146, 38.610662],\n\t\t\t\t\t\t\t[-76.276734, 38.611779],\n\t\t\t\t\t\t\t[-76.271827, 38.615661],\n\t\t\t\t\t\t\t[-76.264155, 38.615109],\n\t\t\t\t\t\t\t[-76.263577, 38.615475],\n\t\t\t\t\t\t\t[-76.262791, 38.615973],\n\t\t\t\t\t\t\t[-76.261135, 38.617021],\n\t\t\t\t\t\t\t[-76.260317, 38.617539],\n\t\t\t\t\t\t\t[-76.253926, 38.621586],\n\t\t\t\t\t\t\t[-76.247896, 38.625404],\n\t\t\t\t\t\t\t[-76.246510, 38.626282],\n\t\t\t\t\t\t\t[-76.236650, 38.628598],\n\t\t\t\t\t\t\t[-76.235987, 38.626827],\n\t\t\t\t\t\t\t[-76.234929, 38.624002],\n\t\t\t\t\t\t\t[-76.231187, 38.614010],\n\t\t\t\t\t\t\t[-76.229358, 38.613301],\n\t\t\t\t\t\t\t[-76.229159, 38.613224],\n\t\t\t\t\t\t\t[-76.228820, 38.613093],\n\t\t\t\t\t\t\t[-76.222982, 38.610830],\n\t\t\t\t\t\t\t[-76.220701, 38.609945],\n\t\t\t\t\t\t\t[-76.212427, 38.606738],\n\t\t\t\t\t\t\t[-76.212414, 38.606744],\n\t\t\t\t\t\t\t[-76.203065, 38.610741],\n\t\t\t\t\t\t\t[-76.202598, 38.613011],\n\t\t\t\t\t\t\t[-76.190902, 38.621092],\n\t\t\t\t\t\t\t[-76.174969, 38.628791],\n\t\t\t\t\t\t\t[-76.170066, 38.629225],\n\t\t\t\t\t\t\t[-76.160148, 38.625452],\n\t\t\t\t\t\t\t[-76.152885, 38.631819],\n\t\t\t\t\t\t\t[-76.023445, 38.573875],\n\t\t\t\t\t\t\t[-75.991127, 38.592483],\n\t\t\t\t\t\t\t[-75.945243, 38.674114],\n\t\t\t\t\t\t\t[-75.762680, 38.686222],\n\t\t\t\t\t\t\t[-75.707352, 38.635359],\n\t\t\t\t\t\t\t[-75.707346, 38.635280],\n\t\t\t\t\t\t\t[-75.706585, 38.626125],\n\t\t\t\t\t\t\t[-75.706235, 38.621296],\n\t\t\t\t\t\t\t[-75.705860, 38.616268],\n\t\t\t\t\t\t\t[-75.705774, 38.614740],\n\t\t\t\t\t\t\t[-75.703981, 38.592066],\n\t\t\t\t\t\t\t[-75.703445, 38.585120],\n\t\t\t\t\t\t\t[-75.701565, 38.560736],\n\t\t\t\t\t\t\t[-75.707340, 38.559524],\n\t\t\t\t\t\t\t[-75.711893, 38.550876],\n\t\t\t\t\t\t\t[-75.718793, 38.546184],\n\t\t\t\t\t\t\t[-75.724490, 38.541230],\n\t\t\t\t\t\t\t[-75.729760, 38.538704],\n\t\t\t\t\t\t\t[-75.737763, 38.537649],\n\t\t\t\t\t\t\t[-75.740586, 38.538364],\n\t\t\t\t\t\t\t[-75.746515, 38.536785],\n\t\t\t\t\t\t\t[-75.749655, 38.531688],\n\t\t\t\t\t\t\t[-75.753636, 38.528100],\n\t\t\t\t\t\t\t[-75.756022, 38.515316],\n\t\t\t\t\t\t\t[-75.759754, 38.510122],\n\t\t\t\t\t\t\t[-75.764994, 38.506479],\n\t\t\t\t\t\t\t[-75.782064, 38.501596],\n\t\t\t\t\t\t\t[-75.784972, 38.500115],\n\t\t\t\t\t\t\t[-75.794660, 38.492373],\n\t\t\t\t\t\t\t[-75.800496, 38.491020],\n\t\t\t\t\t\t\t[-75.815193, 38.488794],\n\t\t\t\t\t\t\t[-75.823706, 38.481022],\n\t\t\t\t\t\t\t[-75.824765, 38.479095],\n\t\t\t\t\t\t\t[-75.822902, 38.476010],\n\t\t\t\t\t\t\t[-75.818709, 38.472332],\n\t\t\t\t\t\t\t[-75.815772, 38.469373],\n\t\t\t\t\t\t\t[-75.814901, 38.466459],\n\t\t\t\t\t\t\t[-75.816690, 38.463307],\n\t\t\t\t\t\t\t[-75.821994, 38.460959],\n\t\t\t\t\t\t\t[-75.828492, 38.459614],\n\t\t\t\t\t\t\t[-75.833160, 38.457620],\n\t\t\t\t\t\t\t[-75.835728, 38.453290],\n\t\t\t\t\t\t\t[-75.836743, 38.448088],\n\t\t\t\t\t\t\t[-75.835994, 38.445207],\n\t\t\t\t\t\t\t[-75.833127, 38.443443],\n\t\t\t\t\t\t\t[-75.826639, 38.442231],\n\t\t\t\t\t\t\t[-75.821342, 38.439261],\n\t\t\t\t\t\t\t[-75.819829, 38.435886],\n\t\t\t\t\t\t\t[-75.821287, 38.430135],\n\t\t\t\t\t\t\t[-75.824960, 38.425372],\n\t\t\t\t\t\t\t[-75.828869, 38.423417],\n\t\t\t\t\t\t\t[-75.843343, 38.422745],\n\t\t\t\t\t\t\t[-75.845573, 38.421868],\n\t\t\t\t\t\t\t[-75.847281, 38.417287],\n\t\t\t\t\t\t\t[-75.850952, 38.404536],\n\t\t\t\t\t\t\t[-75.851258, 38.400348],\n\t\t\t\t\t\t\t[-75.846741, 38.397058],\n\t\t\t\t\t\t\t[-75.842399, 38.393082],\n\t\t\t\t\t\t\t[-75.838369, 38.387476],\n\t\t\t\t\t\t\t[-75.838282, 38.385878],\n\t\t\t\t\t\t\t[-75.840348, 38.384784],\n\t\t\t\t\t\t\t[-75.846202, 38.384405],\n\t\t\t\t\t\t\t[-75.855290, 38.385345],\n\t\t\t\t\t\t\t[-75.860851, 38.383577],\n\t\t\t\t\t\t\t[-75.865397, 38.379064],\n\t\t\t\t\t\t\t[-75.867311, 38.375118],\n\t\t\t\t\t\t\t[-75.866042, 38.373053],\n\t\t\t\t\t\t\t[-75.859499, 38.366750],\n\t\t\t\t\t\t\t[-75.857656, 38.363498],\n\t\t\t\t\t\t\t[-75.857207, 38.359942],\n\t\t\t\t\t\t\t[-75.857673, 38.357011],\n\t\t\t\t\t\t\t[-75.860258, 38.353868],\n\t\t\t\t\t\t\t[-75.864213, 38.350782],\n\t\t\t\t\t\t\t[-75.928628, 38.297272],\n\t\t\t\t\t\t\t[-75.925492, 38.266670]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US24029\",\n\t\t\t\t\"STATE\": \"24\",\n\t\t\t\t\"COUNTY\": \"029\",\n\t\t\t\t\"NAME\": \"Kent\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 277.030000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-75.867722, 39.259483],\n\t\t\t\t\t\t[-75.874084, 39.249798],\n\t\t\t\t\t\t[-75.925022, 39.244108],\n\t\t\t\t\t\t[-75.930708, 39.239023],\n\t\t\t\t\t\t[-75.937902, 39.235502],\n\t\t\t\t\t\t[-75.953404, 39.235264],\n\t\t\t\t\t\t[-75.967236, 39.239318],\n\t\t\t\t\t\t[-75.976744, 39.240519],\n\t\t\t\t\t\t[-75.989844, 39.238367],\n\t\t\t\t\t\t[-75.998411, 39.234773],\n\t\t\t\t\t\t[-76.012797, 39.234453],\n\t\t\t\t\t\t[-76.014792, 39.234152],\n\t\t\t\t\t\t[-76.020454, 39.227401],\n\t\t\t\t\t\t[-76.027191, 39.226722],\n\t\t\t\t\t\t[-76.056556, 39.210338],\n\t\t\t\t\t\t[-76.068794, 39.192345],\n\t\t\t\t\t\t[-76.065186, 39.185204],\n\t\t\t\t\t\t[-76.046661, 39.180751],\n\t\t\t\t\t\t[-76.039726, 39.174102],\n\t\t\t\t\t\t[-76.047630, 39.162666],\n\t\t\t\t\t\t[-76.081596, 39.147659],\n\t\t\t\t\t\t[-76.072418, 39.138206],\n\t\t\t\t\t\t[-76.117058, 39.107098],\n\t\t\t\t\t\t[-76.158090, 39.093998],\n\t\t\t\t\t\t[-76.167347, 39.094839],\n\t\t\t\t\t\t[-76.169087, 39.094997],\n\t\t\t\t\t\t[-76.169414, 39.095027],\n\t\t\t\t\t\t[-76.169891, 39.095070],\n\t\t\t\t\t\t[-76.183908, 39.096344],\n\t\t\t\t\t\t[-76.189907, 39.093042],\n\t\t\t\t\t\t[-76.194703, 39.090403],\n\t\t\t\t\t\t[-76.203333, 39.085654],\n\t\t\t\t\t\t[-76.203383, 39.085626],\n\t\t\t\t\t\t[-76.203548, 39.085101],\n\t\t\t\t\t\t[-76.205108, 39.080129],\n\t\t\t\t\t\t[-76.207604, 39.072176],\n\t\t\t\t\t\t[-76.210041, 39.064410],\n\t\t\t\t\t\t[-76.210251, 39.062511],\n\t\t\t\t\t\t[-76.210876, 39.056874],\n\t\t\t\t\t\t[-76.211838, 39.048184],\n\t\t\t\t\t\t[-76.212563, 39.041641],\n\t\t\t\t\t\t[-76.212602, 39.041288],\n\t\t\t\t\t\t[-76.212616, 39.041158],\n\t\t\t\t\t\t[-76.212040, 39.038870],\n\t\t\t\t\t\t[-76.211589, 39.037080],\n\t\t\t\t\t\t[-76.210477, 39.032664],\n\t\t\t\t\t\t[-76.209827, 39.030081],\n\t\t\t\t\t\t[-76.209517, 39.028848],\n\t\t\t\t\t\t[-76.208502, 39.024818],\n\t\t\t\t\t\t[-76.208346, 39.024614],\n\t\t\t\t\t\t[-76.206852, 39.022649],\n\t\t\t\t\t\t[-76.206796, 39.022575],\n\t\t\t\t\t\t[-76.205958, 39.021475],\n\t\t\t\t\t\t[-76.200666, 39.014520],\n\t\t\t\t\t\t[-76.201005, 39.014339],\n\t\t\t\t\t\t[-76.202176, 39.013714],\n\t\t\t\t\t\t[-76.209114, 39.010010],\n\t\t\t\t\t\t[-76.209285, 39.010074],\n\t\t\t\t\t\t[-76.216850, 39.012916],\n\t\t\t\t\t\t[-76.221148, 39.014530],\n\t\t\t\t\t\t[-76.223671, 39.015478],\n\t\t\t\t\t\t[-76.231765, 39.018518],\n\t\t\t\t\t\t[-76.240226, 39.026581],\n\t\t\t\t\t\t[-76.241932, 39.028206],\n\t\t\t\t\t\t[-76.242687, 39.028926],\n\t\t\t\t\t\t[-76.240905, 39.039798],\n\t\t\t\t\t\t[-76.239443, 39.041977],\n\t\t\t\t\t\t[-76.237500, 39.044872],\n\t\t\t\t\t\t[-76.237065, 39.045521],\n\t\t\t\t\t\t[-76.231212, 39.060769],\n\t\t\t\t\t\t[-76.231117, 39.061017],\n\t\t\t\t\t\t[-76.231427, 39.071714],\n\t\t\t\t\t\t[-76.231748, 39.082826],\n\t\t\t\t\t\t[-76.233457, 39.091385],\n\t\t\t\t\t\t[-76.240603, 39.106856],\n\t\t\t\t\t\t[-76.245050, 39.116484],\n\t\t\t\t\t\t[-76.252946, 39.133577],\n\t\t\t\t\t\t[-76.252968, 39.133626],\n\t\t\t\t\t\t[-76.260343, 39.142722],\n\t\t\t\t\t\t[-76.260894, 39.143402],\n\t\t\t\t\t\t[-76.264417, 39.143874],\n\t\t\t\t\t\t[-76.266540, 39.144158],\n\t\t\t\t\t\t[-76.268096, 39.144367],\n\t\t\t\t\t\t[-76.274907, 39.145279],\n\t\t\t\t\t\t[-76.276721, 39.145522],\n\t\t\t\t\t\t[-76.278527, 39.145764],\n\t\t\t\t\t\t[-76.276807, 39.154484],\n\t\t\t\t\t\t[-76.275660, 39.160304],\n\t\t\t\t\t\t[-76.274741, 39.164961],\n\t\t\t\t\t\t[-76.274637, 39.165490],\n\t\t\t\t\t\t[-76.274303, 39.166115],\n\t\t\t\t\t\t[-76.269467, 39.175163],\n\t\t\t\t\t\t[-76.268631, 39.176727],\n\t\t\t\t\t\t[-76.266963, 39.179848],\n\t\t\t\t\t\t[-76.266602, 39.180523],\n\t\t\t\t\t\t[-76.255831, 39.191595],\n\t\t\t\t\t\t[-76.251032, 39.199214],\n\t\t\t\t\t\t[-76.248741, 39.203333],\n\t\t\t\t\t\t[-76.232612, 39.232333],\n\t\t\t\t\t\t[-76.232051, 39.233341],\n\t\t\t\t\t\t[-76.226220, 39.246485],\n\t\t\t\t\t\t[-76.220475, 39.259433],\n\t\t\t\t\t\t[-76.219338, 39.261997],\n\t\t\t\t\t\t[-76.219312, 39.262022],\n\t\t\t\t\t\t[-76.218339, 39.262963],\n\t\t\t\t\t\t[-76.217520, 39.263754],\n\t\t\t\t\t\t[-76.211306, 39.269761],\n\t\t\t\t\t\t[-76.211253, 39.269812],\n\t\t\t\t\t\t[-76.211179, 39.269813],\n\t\t\t\t\t\t[-76.210748, 39.269816],\n\t\t\t\t\t\t[-76.203031, 39.269871],\n\t\t\t\t\t\t[-76.202590, 39.270265],\n\t\t\t\t\t\t[-76.193029, 39.278801],\n\t\t\t\t\t\t[-76.191285, 39.280358],\n\t\t\t\t\t\t[-76.189868, 39.281623],\n\t\t\t\t\t\t[-76.185909, 39.285157],\n\t\t\t\t\t\t[-76.185674, 39.285367],\n\t\t\t\t\t\t[-76.181496, 39.291797],\n\t\t\t\t\t\t[-76.181478, 39.291829],\n\t\t\t\t\t\t[-76.177712, 39.298686],\n\t\t\t\t\t\t[-76.177704, 39.298701],\n\t\t\t\t\t\t[-76.177178, 39.303099],\n\t\t\t\t\t\t[-76.176804, 39.306229],\n\t\t\t\t\t\t[-76.176778, 39.306447],\n\t\t\t\t\t\t[-76.176865, 39.306584],\n\t\t\t\t\t\t[-76.178983, 39.309926],\n\t\t\t\t\t\t[-76.179092, 39.310098],\n\t\t\t\t\t\t[-76.186024, 39.312462],\n\t\t\t\t\t\t[-76.186637, 39.315426],\n\t\t\t\t\t\t[-76.186647, 39.315475],\n\t\t\t\t\t\t[-76.186001, 39.317814],\n\t\t\t\t\t\t[-76.185581, 39.319334],\n\t\t\t\t\t\t[-76.185507, 39.319396],\n\t\t\t\t\t\t[-76.170588, 39.331954],\n\t\t\t\t\t\t[-76.170541, 39.331994],\n\t\t\t\t\t\t[-76.170422, 39.332094],\n\t\t\t\t\t\t[-76.169411, 39.332453],\n\t\t\t\t\t\t[-76.168365, 39.332824],\n\t\t\t\t\t\t[-76.159673, 39.335909],\n\t\t\t\t\t\t[-76.157163, 39.335641],\n\t\t\t\t\t\t[-76.152722, 39.335167],\n\t\t\t\t\t\t[-76.145524, 39.334399],\n\t\t\t\t\t\t[-76.133225, 39.340491],\n\t\t\t\t\t\t[-76.135105, 39.342460],\n\t\t\t\t\t\t[-76.136971, 39.344414],\n\t\t\t\t\t\t[-76.134950, 39.351070],\n\t\t\t\t\t\t[-76.129983, 39.353702],\n\t\t\t\t\t\t[-76.116698, 39.360744],\n\t\t\t\t\t\t[-76.116356, 39.360925],\n\t\t\t\t\t\t[-76.115935, 39.361744],\n\t\t\t\t\t\t[-76.113215, 39.367032],\n\t\t\t\t\t\t[-76.110598, 39.372119],\n\t\t\t\t\t\t[-76.110527, 39.372257],\n\t\t\t\t\t\t[-76.108942, 39.372215],\n\t\t\t\t\t\t[-76.108373, 39.372200],\n\t\t\t\t\t\t[-76.074992, 39.371312],\n\t\t\t\t\t\t[-76.065887, 39.371070],\n\t\t\t\t\t\t[-76.065716, 39.371066],\n\t\t\t\t\t\t[-76.061504, 39.370954],\n\t\t\t\t\t\t[-76.059335, 39.370896],\n\t\t\t\t\t\t[-76.058720, 39.370880],\n\t\t\t\t\t\t[-76.057876, 39.370857],\n\t\t\t\t\t\t[-76.054157, 39.370759],\n\t\t\t\t\t\t[-76.049846, 39.370644],\n\t\t\t\t\t\t[-76.032923, 39.367414],\n\t\t\t\t\t\t[-76.031767, 39.366772],\n\t\t\t\t\t\t[-76.030064, 39.365826],\n\t\t\t\t\t\t[-76.022990, 39.361896],\n\t\t\t\t\t\t[-76.019091, 39.362958],\n\t\t\t\t\t\t[-76.006546, 39.366374],\n\t\t\t\t\t\t[-76.002408, 39.367501],\n\t\t\t\t\t\t[-76.002463, 39.376440],\n\t\t\t\t\t\t[-76.002361, 39.376448],\n\t\t\t\t\t\t[-76.002197, 39.376462],\n\t\t\t\t\t\t[-76.001704, 39.376507],\n\t\t\t\t\t\t[-76.001541, 39.376522],\n\t\t\t\t\t\t[-76.001113, 39.376579],\n\t\t\t\t\t\t[-76.000221, 39.376651],\n\t\t\t\t\t\t[-75.999397, 39.376636],\n\t\t\t\t\t\t[-75.998550, 39.376453],\n\t\t\t\t\t\t[-75.996147, 39.376235],\n\t\t\t\t\t\t[-75.995094, 39.376106],\n\t\t\t\t\t\t[-75.994178, 39.375904],\n\t\t\t\t\t\t[-75.993932, 39.375848],\n\t\t\t\t\t\t[-75.993125, 39.375667],\n\t\t\t\t\t\t[-75.992317, 39.375347],\n\t\t\t\t\t\t[-75.992193, 39.375263],\n\t\t\t\t\t\t[-75.991996, 39.375129],\n\t\t\t\t\t\t[-75.990951, 39.374710],\n\t\t\t\t\t\t[-75.988998, 39.373771],\n\t\t\t\t\t\t[-75.987136, 39.372577],\n\t\t\t\t\t\t[-75.985267, 39.370807],\n\t\t\t\t\t\t[-75.984054, 39.369270],\n\t\t\t\t\t\t[-75.983985, 39.369182],\n\t\t\t\t\t\t[-75.982696, 39.367492],\n\t\t\t\t\t\t[-75.981506, 39.366840],\n\t\t\t\t\t\t[-75.981109, 39.366569],\n\t\t\t\t\t\t[-75.980539, 39.366571],\n\t\t\t\t\t\t[-75.979034, 39.366577],\n\t\t\t\t\t\t[-75.977714, 39.366874],\n\t\t\t\t\t\t[-75.976249, 39.367458],\n\t\t\t\t\t\t[-75.974418, 39.368621],\n\t\t\t\t\t\t[-75.973640, 39.369632],\n\t\t\t\t\t\t[-75.972793, 39.370891],\n\t\t\t\t\t\t[-75.971952, 39.371644],\n\t\t\t\t\t\t[-75.970603, 39.372852],\n\t\t\t\t\t\t[-75.969410, 39.373424],\n\t\t\t\t\t\t[-75.968269, 39.373973],\n\t\t\t\t\t\t[-75.966011, 39.374504],\n\t\t\t\t\t\t[-75.964388, 39.374688],\n\t\t\t\t\t\t[-75.964065, 39.374725],\n\t\t\t\t\t\t[-75.961448, 39.374694],\n\t\t\t\t\t\t[-75.960143, 39.374697],\n\t\t\t\t\t\t[-75.960083, 39.374698],\n\t\t\t\t\t\t[-75.958488, 39.374553],\n\t\t\t\t\t\t[-75.956970, 39.374603],\n\t\t\t\t\t\t[-75.954299, 39.374145],\n\t\t\t\t\t\t[-75.951820, 39.373638],\n\t\t\t\t\t\t[-75.951219, 39.373432],\n\t\t\t\t\t\t[-75.950401, 39.373153],\n\t\t\t\t\t\t[-75.949340, 39.372509],\n\t\t\t\t\t\t[-75.949246, 39.372421],\n\t\t\t\t\t\t[-75.947769, 39.371032],\n\t\t\t\t\t\t[-75.946830, 39.369842],\n\t\t\t\t\t\t[-75.946425, 39.369494],\n\t\t\t\t\t\t[-75.946160, 39.369266],\n\t\t\t\t\t\t[-75.945365, 39.368583],\n\t\t\t\t\t\t[-75.944429, 39.368272],\n\t\t\t\t\t\t[-75.943893, 39.368095],\n\t\t\t\t\t\t[-75.943750, 39.368064],\n\t\t\t\t\t\t[-75.942337, 39.367752],\n\t\t\t\t\t\t[-75.941032, 39.367675],\n\t\t\t\t\t\t[-75.939849, 39.367786],\n\t\t\t\t\t\t[-75.937790, 39.368715],\n\t\t\t\t\t\t[-75.937728, 39.368743],\n\t\t\t\t\t\t[-75.936424, 39.369544],\n\t\t\t\t\t\t[-75.934112, 39.370857],\n\t\t\t\t\t\t[-75.932022, 39.371505],\n\t\t\t\t\t\t[-75.930638, 39.371623],\n\t\t\t\t\t\t[-75.929962, 39.371681],\n\t\t\t\t\t\t[-75.927940, 39.371456],\n\t\t\t\t\t\t[-75.927154, 39.371187],\n\t\t\t\t\t\t[-75.926589, 39.370994],\n\t\t\t\t\t\t[-75.925285, 39.369750],\n\t\t\t\t\t\t[-75.923950, 39.368011],\n\t\t\t\t\t\t[-75.923884, 39.367968],\n\t\t\t\t\t\t[-75.922775, 39.367248],\n\t\t\t\t\t\t[-75.921150, 39.367057],\n\t\t\t\t\t\t[-75.919914, 39.366958],\n\t\t\t\t\t\t[-75.919789, 39.366948],\n\t\t\t\t\t\t[-75.918914, 39.366878],\n\t\t\t\t\t\t[-75.918515, 39.366868],\n\t\t\t\t\t\t[-75.917606, 39.366844],\n\t\t\t\t\t\t[-75.916699, 39.366821],\n\t\t\t\t\t\t[-75.916557, 39.366817],\n\t\t\t\t\t\t[-75.915029, 39.366587],\n\t\t\t\t\t\t[-75.915008, 39.366584],\n\t\t\t\t\t\t[-75.913581, 39.366096],\n\t\t\t\t\t\t[-75.912002, 39.365413],\n\t\t\t\t\t\t[-75.911805, 39.365367],\n\t\t\t\t\t\t[-75.910202, 39.364999],\n\t\t\t\t\t\t[-75.909337, 39.364800],\n\t\t\t\t\t\t[-75.908470, 39.364601],\n\t\t\t\t\t\t[-75.908035, 39.364501],\n\t\t\t\t\t\t[-75.903793, 39.364345],\n\t\t\t\t\t\t[-75.902687, 39.364478],\n\t\t\t\t\t\t[-75.900360, 39.364757],\n\t\t\t\t\t\t[-75.899827, 39.364914],\n\t\t\t\t\t\t[-75.898292, 39.365367],\n\t\t\t\t\t\t[-75.898187, 39.365390],\n\t\t\t\t\t\t[-75.897782, 39.365478],\n\t\t\t\t\t\t[-75.897376, 39.365567],\n\t\t\t\t\t\t[-75.895980, 39.365871],\n\t\t\t\t\t\t[-75.894911, 39.365700],\n\t\t\t\t\t\t[-75.894855, 39.365691],\n\t\t\t\t\t\t[-75.894523, 39.365638],\n\t\t\t\t\t\t[-75.892288, 39.364620],\n\t\t\t\t\t\t[-75.891222, 39.363808],\n\t\t\t\t\t\t[-75.890174, 39.363010],\n\t\t\t\t\t\t[-75.888874, 39.362131],\n\t\t\t\t\t\t[-75.888542, 39.361907],\n\t\t\t\t\t\t[-75.888499, 39.361889],\n\t\t\t\t\t\t[-75.885864, 39.360797],\n\t\t\t\t\t\t[-75.885101, 39.360843],\n\t\t\t\t\t\t[-75.884391, 39.361354],\n\t\t\t\t\t\t[-75.883628, 39.362251],\n\t\t\t\t\t\t[-75.882827, 39.363452],\n\t\t\t\t\t\t[-75.882141, 39.364322],\n\t\t\t\t\t\t[-75.882131, 39.364327],\n\t\t\t\t\t\t[-75.880935, 39.364929],\n\t\t\t\t\t\t[-75.879839, 39.365329],\n\t\t\t\t\t\t[-75.879463, 39.365467],\n\t\t\t\t\t\t[-75.877965, 39.365580],\n\t\t\t\t\t\t[-75.877952, 39.365581],\n\t\t\t\t\t\t[-75.877848, 39.365590],\n\t\t\t\t\t\t[-75.876636, 39.365707],\n\t\t\t\t\t\t[-75.875801, 39.365787],\n\t\t\t\t\t\t[-75.875024, 39.365789],\n\t\t\t\t\t\t[-75.874412, 39.365791],\n\t\t\t\t\t\t[-75.873341, 39.366043],\n\t\t\t\t\t\t[-75.872575, 39.366223],\n\t\t\t\t\t\t[-75.872062, 39.366344],\n\t\t\t\t\t\t[-75.868377, 39.367721],\n\t\t\t\t\t\t[-75.868066, 39.367759],\n\t\t\t\t\t\t[-75.867614, 39.367813],\n\t\t\t\t\t\t[-75.867355, 39.367644],\n\t\t\t\t\t\t[-75.866780, 39.367268],\n\t\t\t\t\t\t[-75.866206, 39.366893],\n\t\t\t\t\t\t[-75.865669, 39.366542],\n\t\t\t\t\t\t[-75.864978, 39.366503],\n\t\t\t\t\t\t[-75.863754, 39.366436],\n\t\t\t\t\t\t[-75.862518, 39.367370],\n\t\t\t\t\t\t[-75.861415, 39.367549],\n\t\t\t\t\t\t[-75.861038, 39.367610],\n\t\t\t\t\t\t[-75.860832, 39.367466],\n\t\t\t\t\t\t[-75.859169, 39.366306],\n\t\t\t\t\t\t[-75.858592, 39.365930],\n\t\t\t\t\t\t[-75.857246, 39.365055],\n\t\t\t\t\t\t[-75.856646, 39.364892],\n\t\t\t\t\t\t[-75.855430, 39.364562],\n\t\t\t\t\t\t[-75.853652, 39.365333],\n\t\t\t\t\t\t[-75.853064, 39.365890],\n\t\t\t\t\t\t[-75.852394, 39.366527],\n\t\t\t\t\t\t[-75.851468, 39.366866],\n\t\t\t\t\t\t[-75.849392, 39.367627],\n\t\t\t\t\t\t[-75.848970, 39.367902],\n\t\t\t\t\t\t[-75.848845, 39.367984],\n\t\t\t\t\t\t[-75.848720, 39.368065],\n\t\t\t\t\t\t[-75.848501, 39.368208],\n\t\t\t\t\t\t[-75.847037, 39.367584],\n\t\t\t\t\t\t[-75.846901, 39.367526],\n\t\t\t\t\t\t[-75.846776, 39.367541],\n\t\t\t\t\t\t[-75.846694, 39.367551],\n\t\t\t\t\t\t[-75.846611, 39.367561],\n\t\t\t\t\t\t[-75.846048, 39.367628],\n\t\t\t\t\t\t[-75.845476, 39.367698],\n\t\t\t\t\t\t[-75.844320, 39.369544],\n\t\t\t\t\t\t[-75.844304, 39.369571],\n\t\t\t\t\t\t[-75.843785, 39.369951],\n\t\t\t\t\t\t[-75.842385, 39.370978],\n\t\t\t\t\t\t[-75.841727, 39.371213],\n\t\t\t\t\t\t[-75.841682, 39.371230],\n\t\t\t\t\t\t[-75.840283, 39.371734],\n\t\t\t\t\t\t[-75.839605, 39.371978],\n\t\t\t\t\t\t[-75.836611, 39.372763],\n\t\t\t\t\t\t[-75.836593, 39.372770],\n\t\t\t\t\t\t[-75.835719, 39.373103],\n\t\t\t\t\t\t[-75.835534, 39.373174],\n\t\t\t\t\t\t[-75.834014, 39.373757],\n\t\t\t\t\t\t[-75.833400, 39.373834],\n\t\t\t\t\t\t[-75.832316, 39.373970],\n\t\t\t\t\t\t[-75.831533, 39.374109],\n\t\t\t\t\t\t[-75.831173, 39.374173],\n\t\t\t\t\t\t[-75.830800, 39.374469],\n\t\t\t\t\t\t[-75.830661, 39.374579],\n\t\t\t\t\t\t[-75.830523, 39.374689],\n\t\t\t\t\t\t[-75.830023, 39.375086],\n\t\t\t\t\t\t[-75.830183, 39.375337],\n\t\t\t\t\t\t[-75.830062, 39.375659],\n\t\t\t\t\t\t[-75.830031, 39.375742],\n\t\t\t\t\t\t[-75.829736, 39.376173],\n\t\t\t\t\t\t[-75.829513, 39.376499],\n\t\t\t\t\t\t[-75.829369, 39.376632],\n\t\t\t\t\t\t[-75.828161, 39.377762],\n\t\t\t\t\t\t[-75.827991, 39.377921],\n\t\t\t\t\t\t[-75.827420, 39.378236],\n\t\t\t\t\t\t[-75.825426, 39.379846],\n\t\t\t\t\t\t[-75.824458, 39.380961],\n\t\t\t\t\t\t[-75.824392, 39.380998],\n\t\t\t\t\t\t[-75.823761, 39.381354],\n\t\t\t\t\t\t[-75.823658, 39.381413],\n\t\t\t\t\t\t[-75.822289, 39.381609],\n\t\t\t\t\t\t[-75.821266, 39.381755],\n\t\t\t\t\t\t[-75.819956, 39.382061],\n\t\t\t\t\t\t[-75.819576, 39.382141],\n\t\t\t\t\t\t[-75.818829, 39.382299],\n\t\t\t\t\t\t[-75.818696, 39.382239],\n\t\t\t\t\t\t[-75.818345, 39.382081],\n\t\t\t\t\t\t[-75.817975, 39.381916],\n\t\t\t\t\t\t[-75.817925, 39.381874],\n\t\t\t\t\t\t[-75.817646, 39.381638],\n\t\t\t\t\t\t[-75.817365, 39.381400],\n\t\t\t\t\t\t[-75.816968, 39.381064],\n\t\t\t\t\t\t[-75.816356, 39.380681],\n\t\t\t\t\t\t[-75.816313, 39.380654],\n\t\t\t\t\t\t[-75.814614, 39.380270],\n\t\t\t\t\t\t[-75.812984, 39.380026],\n\t\t\t\t\t\t[-75.811537, 39.379984],\n\t\t\t\t\t\t[-75.810108, 39.379830],\n\t\t\t\t\t\t[-75.809989, 39.379806],\n\t\t\t\t\t\t[-75.809817, 39.379768],\n\t\t\t\t\t\t[-75.809634, 39.379758],\n\t\t\t\t\t\t[-75.809452, 39.379749],\n\t\t\t\t\t\t[-75.809259, 39.379521],\n\t\t\t\t\t\t[-75.809237, 39.379495],\n\t\t\t\t\t\t[-75.809359, 39.378894],\n\t\t\t\t\t\t[-75.809425, 39.378832],\n\t\t\t\t\t\t[-75.809396, 39.378425],\n\t\t\t\t\t\t[-75.809200, 39.378101],\n\t\t\t\t\t\t[-75.808879, 39.378048],\n\t\t\t\t\t\t[-75.808741, 39.378066],\n\t\t\t\t\t\t[-75.808631, 39.378081],\n\t\t\t\t\t\t[-75.808087, 39.377991],\n\t\t\t\t\t\t[-75.807976, 39.377972],\n\t\t\t\t\t\t[-75.807898, 39.377960],\n\t\t\t\t\t\t[-75.807696, 39.377804],\n\t\t\t\t\t\t[-75.807608, 39.377737],\n\t\t\t\t\t\t[-75.807564, 39.377703],\n\t\t\t\t\t\t[-75.807435, 39.377604],\n\t\t\t\t\t\t[-75.807392, 39.377571],\n\t\t\t\t\t\t[-75.807328, 39.377522],\n\t\t\t\t\t\t[-75.807139, 39.377376],\n\t\t\t\t\t\t[-75.807076, 39.377328],\n\t\t\t\t\t\t[-75.806992, 39.377264],\n\t\t\t\t\t\t[-75.806958, 39.377254],\n\t\t\t\t\t\t[-75.806552, 39.377135],\n\t\t\t\t\t\t[-75.806417, 39.377096],\n\t\t\t\t\t\t[-75.806165, 39.376799],\n\t\t\t\t\t\t[-75.806184, 39.376730],\n\t\t\t\t\t\t[-75.806333, 39.376206],\n\t\t\t\t\t\t[-75.806229, 39.375897],\n\t\t\t\t\t\t[-75.806318, 39.375583],\n\t\t\t\t\t\t[-75.806472, 39.375483],\n\t\t\t\t\t\t[-75.806498, 39.375467],\n\t\t\t\t\t\t[-75.806484, 39.375384],\n\t\t\t\t\t\t[-75.806378, 39.375274],\n\t\t\t\t\t\t[-75.806201, 39.375198],\n\t\t\t\t\t\t[-75.806073, 39.375258],\n\t\t\t\t\t\t[-75.805925, 39.375439],\n\t\t\t\t\t\t[-75.805861, 39.375467],\n\t\t\t\t\t\t[-75.805741, 39.375500],\n\t\t\t\t\t\t[-75.805684, 39.375505],\n\t\t\t\t\t\t[-75.805514, 39.375483],\n\t\t\t\t\t\t[-75.805141, 39.375464],\n\t\t\t\t\t\t[-75.804955, 39.375456],\n\t\t\t\t\t\t[-75.804757, 39.375417],\n\t\t\t\t\t\t[-75.804686, 39.375434],\n\t\t\t\t\t\t[-75.804495, 39.375609],\n\t\t\t\t\t\t[-75.804354, 39.375818],\n\t\t\t\t\t\t[-75.804311, 39.375939],\n\t\t\t\t\t\t[-75.804304, 39.376291],\n\t\t\t\t\t\t[-75.804162, 39.376576],\n\t\t\t\t\t\t[-75.803794, 39.376972],\n\t\t\t\t\t\t[-75.803370, 39.377219],\n\t\t\t\t\t\t[-75.802917, 39.377318],\n\t\t\t\t\t\t[-75.802874, 39.377334],\n\t\t\t\t\t\t[-75.802761, 39.377488],\n\t\t\t\t\t\t[-75.802752, 39.377493],\n\t\t\t\t\t\t[-75.802605, 39.377592],\n\t\t\t\t\t\t[-75.802237, 39.377653],\n\t\t\t\t\t\t[-75.801820, 39.377922],\n\t\t\t\t\t\t[-75.801695, 39.377912],\n\t\t\t\t\t\t[-75.801098, 39.377867],\n\t\t\t\t\t\t[-75.800907, 39.377746],\n\t\t\t\t\t\t[-75.800701, 39.377691],\n\t\t\t\t\t\t[-75.800588, 39.377608],\n\t\t\t\t\t\t[-75.800617, 39.377317],\n\t\t\t\t\t\t[-75.800567, 39.377229],\n\t\t\t\t\t\t[-75.800461, 39.377202],\n\t\t\t\t\t\t[-75.800263, 39.377224],\n\t\t\t\t\t\t[-75.799852, 39.377361],\n\t\t\t\t\t\t[-75.799678, 39.377368],\n\t\t\t\t\t\t[-75.799605, 39.377372],\n\t\t\t\t\t\t[-75.799222, 39.377224],\n\t\t\t\t\t\t[-75.798847, 39.377119],\n\t\t\t\t\t\t[-75.798748, 39.377130],\n\t\t\t\t\t\t[-75.798607, 39.377240],\n\t\t\t\t\t\t[-75.798225, 39.377279],\n\t\t\t\t\t\t[-75.797998, 39.377251],\n\t\t\t\t\t\t[-75.797779, 39.377141],\n\t\t\t\t\t\t[-75.797566, 39.377268],\n\t\t\t\t\t\t[-75.797290, 39.377273],\n\t\t\t\t\t\t[-75.796965, 39.377295],\n\t\t\t\t\t\t[-75.796660, 39.377564],\n\t\t\t\t\t\t[-75.796547, 39.377586],\n\t\t\t\t\t\t[-75.796483, 39.377575],\n\t\t\t\t\t\t[-75.796441, 39.377542],\n\t\t\t\t\t\t[-75.796356, 39.377229],\n\t\t\t\t\t\t[-75.796250, 39.377229],\n\t\t\t\t\t\t[-75.796038, 39.377322],\n\t\t\t\t\t\t[-75.795825, 39.377245],\n\t\t\t\t\t\t[-75.795726, 39.377240],\n\t\t\t\t\t\t[-75.795606, 39.377317],\n\t\t\t\t\t\t[-75.795443, 39.377586],\n\t\t\t\t\t\t[-75.795216, 39.377701],\n\t\t\t\t\t\t[-75.795018, 39.377789],\n\t\t\t\t\t\t[-75.794820, 39.378009],\n\t\t\t\t\t\t[-75.794664, 39.378756],\n\t\t\t\t\t\t[-75.794494, 39.378959],\n\t\t\t\t\t\t[-75.794423, 39.379102],\n\t\t\t\t\t\t[-75.794381, 39.379541],\n\t\t\t\t\t\t[-75.794310, 39.379641],\n\t\t\t\t\t\t[-75.794239, 39.379744],\n\t\t\t\t\t\t[-75.793907, 39.379936],\n\t\t\t\t\t\t[-75.793800, 39.379980],\n\t\t\t\t\t\t[-75.792994, 39.380129],\n\t\t\t\t\t\t[-75.792950, 39.380116],\n\t\t\t\t\t\t[-75.792880, 39.380096],\n\t\t\t\t\t\t[-75.792534, 39.379843],\n\t\t\t\t\t\t[-75.792484, 39.379826],\n\t\t\t\t\t\t[-75.792357, 39.379804],\n\t\t\t\t\t\t[-75.792279, 39.379799],\n\t\t\t\t\t\t[-75.792043, 39.379822],\n\t\t\t\t\t\t[-75.791833, 39.379843],\n\t\t\t\t\t\t[-75.791182, 39.379925],\n\t\t\t\t\t\t[-75.790996, 39.380043],\n\t\t\t\t\t\t[-75.790531, 39.380342],\n\t\t\t\t\t\t[-75.789971, 39.380815],\n\t\t\t\t\t\t[-75.789865, 39.380891],\n\t\t\t\t\t\t[-75.789667, 39.381012],\n\t\t\t\t\t\t[-75.789490, 39.381095],\n\t\t\t\t\t\t[-75.789398, 39.381128],\n\t\t\t\t\t\t[-75.788768, 39.381111],\n\t\t\t\t\t\t[-75.788584, 39.381061],\n\t\t\t\t\t\t[-75.788478, 39.380919],\n\t\t\t\t\t\t[-75.788381, 39.380610],\n\t\t\t\t\t\t[-75.788351, 39.380512],\n\t\t\t\t\t\t[-75.788230, 39.380424],\n\t\t\t\t\t\t[-75.788032, 39.380353],\n\t\t\t\t\t\t[-75.787410, 39.380296],\n\t\t\t\t\t\t[-75.787310, 39.380287],\n\t\t\t\t\t\t[-75.787202, 39.380267],\n\t\t\t\t\t\t[-75.786585, 39.380158],\n\t\t\t\t\t\t[-75.786567, 39.380155],\n\t\t\t\t\t\t[-75.786383, 39.380105],\n\t\t\t\t\t\t[-75.786036, 39.380061],\n\t\t\t\t\t\t[-75.785732, 39.380094],\n\t\t\t\t\t\t[-75.785380, 39.380091],\n\t\t\t\t\t\t[-75.784968, 39.380088],\n\t\t\t\t\t\t[-75.784656, 39.380165],\n\t\t\t\t\t\t[-75.784415, 39.380363],\n\t\t\t\t\t\t[-75.784330, 39.380687],\n\t\t\t\t\t\t[-75.784309, 39.380940],\n\t\t\t\t\t\t[-75.784330, 39.381385],\n\t\t\t\t\t\t[-75.784486, 39.382143],\n\t\t\t\t\t\t[-75.784465, 39.382310],\n\t\t\t\t\t\t[-75.784443, 39.382500],\n\t\t\t\t\t\t[-75.784415, 39.382527],\n\t\t\t\t\t\t[-75.784224, 39.382549],\n\t\t\t\t\t\t[-75.783891, 39.382505],\n\t\t\t\t\t\t[-75.783650, 39.382439],\n\t\t\t\t\t\t[-75.782957, 39.382164],\n\t\t\t\t\t\t[-75.782235, 39.381856],\n\t\t\t\t\t\t[-75.782023, 39.381867],\n\t\t\t\t\t\t[-75.781846, 39.381950],\n\t\t\t\t\t\t[-75.781753, 39.381954],\n\t\t\t\t\t\t[-75.781548, 39.381966],\n\t\t\t\t\t\t[-75.781131, 39.382125],\n\t\t\t\t\t\t[-75.781095, 39.382125],\n\t\t\t\t\t\t[-75.780473, 39.381944],\n\t\t\t\t\t\t[-75.780409, 39.381889],\n\t\t\t\t\t\t[-75.780331, 39.381653],\n\t\t\t\t\t\t[-75.780126, 39.381471],\n\t\t\t\t\t\t[-75.779503, 39.381169],\n\t\t\t\t\t\t[-75.779220, 39.380916],\n\t\t\t\t\t\t[-75.778060, 39.380290],\n\t\t\t\t\t\t[-75.777918, 39.380246],\n\t\t\t\t\t\t[-75.777671, 39.380240],\n\t\t\t\t\t\t[-75.776998, 39.380405],\n\t\t\t\t\t\t[-75.776757, 39.380300],\n\t\t\t\t\t\t[-75.776503, 39.380306],\n\t\t\t\t\t\t[-75.776355, 39.380268],\n\t\t\t\t\t\t[-75.776304, 39.380256],\n\t\t\t\t\t\t[-75.776248, 39.380190],\n\t\t\t\t\t\t[-75.776213, 39.380026],\n\t\t\t\t\t\t[-75.776369, 39.379059],\n\t\t\t\t\t\t[-75.776312, 39.378993],\n\t\t\t\t\t\t[-75.776093, 39.378971],\n\t\t\t\t\t\t[-75.775909, 39.379015],\n\t\t\t\t\t\t[-75.775668, 39.378960],\n\t\t\t\t\t\t[-75.775449, 39.378960],\n\t\t\t\t\t\t[-75.775088, 39.379070],\n\t\t\t\t\t\t[-75.775045, 39.379070],\n\t\t\t\t\t\t[-75.774635, 39.379042],\n\t\t\t\t\t\t[-75.774387, 39.378921],\n\t\t\t\t\t\t[-75.774253, 39.378916],\n\t\t\t\t\t\t[-75.774140, 39.379003],\n\t\t\t\t\t\t[-75.773962, 39.379294],\n\t\t\t\t\t\t[-75.773870, 39.379371],\n\t\t\t\t\t\t[-75.773651, 39.379486],\n\t\t\t\t\t\t[-75.773508, 39.379549],\n\t\t\t\t\t\t[-75.773451, 39.379515],\n\t\t\t\t\t\t[-75.773305, 39.379450],\n\t\t\t\t\t\t[-75.773171, 39.379497],\n\t\t\t\t\t\t[-75.773112, 39.379544],\n\t\t\t\t\t\t[-75.772688, 39.379525],\n\t\t\t\t\t\t[-75.772462, 39.379431],\n\t\t\t\t\t\t[-75.771990, 39.379150],\n\t\t\t\t\t\t[-75.771968, 39.379143],\n\t\t\t\t\t\t[-75.771870, 39.379115],\n\t\t\t\t\t\t[-75.771870, 39.379002],\n\t\t\t\t\t\t[-75.771845, 39.378927],\n\t\t\t\t\t\t[-75.771699, 39.378899],\n\t\t\t\t\t\t[-75.771578, 39.378833],\n\t\t\t\t\t\t[-75.771480, 39.378739],\n\t\t\t\t\t\t[-75.771334, 39.378664],\n\t\t\t\t\t\t[-75.771116, 39.378693],\n\t\t\t\t\t\t[-75.770994, 39.378684],\n\t\t\t\t\t\t[-75.770836, 39.378647],\n\t\t\t\t\t\t[-75.770545, 39.378657],\n\t\t\t\t\t\t[-75.770485, 39.378724],\n\t\t\t\t\t\t[-75.770388, 39.378743],\n\t\t\t\t\t\t[-75.770047, 39.378640],\n\t\t\t\t\t\t[-75.769865, 39.378622],\n\t\t\t\t\t\t[-75.769792, 39.378622],\n\t\t\t\t\t\t[-75.769695, 39.378603],\n\t\t\t\t\t\t[-75.769621, 39.378546],\n\t\t\t\t\t\t[-75.769535, 39.378570],\n\t\t\t\t\t\t[-75.769474, 39.378570],\n\t\t\t\t\t\t[-75.769437, 39.378532],\n\t\t\t\t\t\t[-75.769443, 39.378489],\n\t\t\t\t\t\t[-75.769461, 39.378461],\n\t\t\t\t\t\t[-75.769455, 39.378394],\n\t\t\t\t\t\t[-75.769423, 39.378294],\n\t\t\t\t\t\t[-75.769386, 39.378237],\n\t\t\t\t\t\t[-75.769331, 39.378194],\n\t\t\t\t\t\t[-75.769294, 39.378213],\n\t\t\t\t\t\t[-75.769233, 39.378228],\n\t\t\t\t\t\t[-75.769165, 39.378209],\n\t\t\t\t\t\t[-75.769116, 39.378166],\n\t\t\t\t\t\t[-75.768999, 39.378114],\n\t\t\t\t\t\t[-75.768900, 39.378086],\n\t\t\t\t\t\t[-75.768783, 39.378043],\n\t\t\t\t\t\t[-75.768691, 39.378034],\n\t\t\t\t\t\t[-75.768642, 39.378053],\n\t\t\t\t\t\t[-75.768569, 39.378106],\n\t\t\t\t\t\t[-75.768526, 39.378111],\n\t\t\t\t\t\t[-75.768489, 39.378101],\n\t\t\t\t\t\t[-75.768439, 39.378040],\n\t\t\t\t\t\t[-75.768365, 39.377968],\n\t\t\t\t\t\t[-75.768304, 39.377978],\n\t\t\t\t\t\t[-75.768249, 39.378007],\n\t\t\t\t\t\t[-75.768102, 39.378117],\n\t\t\t\t\t\t[-75.768059, 39.378126],\n\t\t\t\t\t\t[-75.767985, 39.378079],\n\t\t\t\t\t\t[-75.767831, 39.377937],\n\t\t\t\t\t\t[-75.767769, 39.377875],\n\t\t\t\t\t\t[-75.767665, 39.377913],\n\t\t\t\t\t\t[-75.767542, 39.377937],\n\t\t\t\t\t\t[-75.767413, 39.377900],\n\t\t\t\t\t\t[-75.767358, 39.377871],\n\t\t\t\t\t\t[-75.767253, 39.377833],\n\t\t\t\t\t\t[-75.767105, 39.377796],\n\t\t\t\t\t\t[-75.767044, 39.377739],\n\t\t\t\t\t\t[-75.766800, 39.377586],\n\t\t\t\t\t\t[-75.766731, 39.377537],\n\t\t\t\t\t\t[-75.766714, 39.377537],\n\t\t\t\t\t\t[-75.766693, 39.377537],\n\t\t\t\t\t\t[-75.766667, 39.377216],\n\t\t\t\t\t\t[-75.760104, 39.296817],\n\t\t\t\t\t\t[-75.755962, 39.246069],\n\t\t\t\t\t\t[-75.867722, 39.259483]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US24035\",\n\t\t\t\t\"STATE\": \"24\",\n\t\t\t\t\"COUNTY\": \"035\",\n\t\t\t\t\"NAME\": \"Queen Anne's\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 371.908000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.158090, 39.093998],\n\t\t\t\t\t\t[-76.117058, 39.107098],\n\t\t\t\t\t\t[-76.072418, 39.138206],\n\t\t\t\t\t\t[-76.081596, 39.147659],\n\t\t\t\t\t\t[-76.047630, 39.162666],\n\t\t\t\t\t\t[-76.039726, 39.174102],\n\t\t\t\t\t\t[-76.046661, 39.180751],\n\t\t\t\t\t\t[-76.065186, 39.185204],\n\t\t\t\t\t\t[-76.068794, 39.192345],\n\t\t\t\t\t\t[-76.056556, 39.210338],\n\t\t\t\t\t\t[-76.027191, 39.226722],\n\t\t\t\t\t\t[-76.020454, 39.227401],\n\t\t\t\t\t\t[-76.014792, 39.234152],\n\t\t\t\t\t\t[-76.012797, 39.234453],\n\t\t\t\t\t\t[-75.998411, 39.234773],\n\t\t\t\t\t\t[-75.989844, 39.238367],\n\t\t\t\t\t\t[-75.976744, 39.240519],\n\t\t\t\t\t\t[-75.967236, 39.239318],\n\t\t\t\t\t\t[-75.953404, 39.235264],\n\t\t\t\t\t\t[-75.937902, 39.235502],\n\t\t\t\t\t\t[-75.930708, 39.239023],\n\t\t\t\t\t\t[-75.925022, 39.244108],\n\t\t\t\t\t\t[-75.874084, 39.249798],\n\t\t\t\t\t\t[-75.867722, 39.259483],\n\t\t\t\t\t\t[-75.755962, 39.246069],\n\t\t\t\t\t\t[-75.755953, 39.245958],\n\t\t\t\t\t\t[-75.747671, 39.143345],\n\t\t\t\t\t\t[-75.834948, 39.108437],\n\t\t\t\t\t\t[-75.929729, 38.990654],\n\t\t\t\t\t\t[-75.949335, 38.918333],\n\t\t\t\t\t\t[-76.096956, 38.944259],\n\t\t\t\t\t\t[-76.103512, 38.882308],\n\t\t\t\t\t\t[-76.199544, 38.850817],\n\t\t\t\t\t\t[-76.200728, 38.855389],\n\t\t\t\t\t\t[-76.202598, 38.862616],\n\t\t\t\t\t\t[-76.202314, 38.864906],\n\t\t\t\t\t\t[-76.200082, 38.882885],\n\t\t\t\t\t\t[-76.205063, 38.892726],\n\t\t\t\t\t\t[-76.204544, 38.905715],\n\t\t\t\t\t\t[-76.204129, 38.916096],\n\t\t\t\t\t\t[-76.204122, 38.916269],\n\t\t\t\t\t\t[-76.204091, 38.917058],\n\t\t\t\t\t\t[-76.203638, 38.928382],\n\t\t\t\t\t\t[-76.207695, 38.931954],\n\t\t\t\t\t\t[-76.213731, 38.937269],\n\t\t\t\t\t\t[-76.213842, 38.937366],\n\t\t\t\t\t\t[-76.228130, 38.941412],\n\t\t\t\t\t\t[-76.228405, 38.941489],\n\t\t\t\t\t\t[-76.232038, 38.942518],\n\t\t\t\t\t\t[-76.233895, 38.942123],\n\t\t\t\t\t\t[-76.234681, 38.941956],\n\t\t\t\t\t\t[-76.250157, 38.938667],\n\t\t\t\t\t\t[-76.250868, 38.928250],\n\t\t\t\t\t\t[-76.250838, 38.928204],\n\t\t\t\t\t\t[-76.249622, 38.926297],\n\t\t\t\t\t\t[-76.249246, 38.925707],\n\t\t\t\t\t\t[-76.248896, 38.925159],\n\t\t\t\t\t\t[-76.248844, 38.925076],\n\t\t\t\t\t\t[-76.248702, 38.924855],\n\t\t\t\t\t\t[-76.248574, 38.924655],\n\t\t\t\t\t\t[-76.248472, 38.924494],\n\t\t\t\t\t\t[-76.248023, 38.923790],\n\t\t\t\t\t\t[-76.249163, 38.921800],\n\t\t\t\t\t\t[-76.249285, 38.921587],\n\t\t\t\t\t\t[-76.249355, 38.921465],\n\t\t\t\t\t\t[-76.249674, 38.920907],\n\t\t\t\t\t\t[-76.249889, 38.920841],\n\t\t\t\t\t\t[-76.255819, 38.919008],\n\t\t\t\t\t\t[-76.256190, 38.918893],\n\t\t\t\t\t\t[-76.256397, 38.918829],\n\t\t\t\t\t\t[-76.258080, 38.919160],\n\t\t\t\t\t\t[-76.258206, 38.919185],\n\t\t\t\t\t\t[-76.262226, 38.919976],\n\t\t\t\t\t\t[-76.264683, 38.924576],\n\t\t\t\t\t\t[-76.264692, 38.924764],\n\t\t\t\t\t\t[-76.264943, 38.930297],\n\t\t\t\t\t\t[-76.265772, 38.931482],\n\t\t\t\t\t\t[-76.266260, 38.932179],\n\t\t\t\t\t\t[-76.269179, 38.936349],\n\t\t\t\t\t\t[-76.270954, 38.938886],\n\t\t\t\t\t\t[-76.271625, 38.939844],\n\t\t\t\t\t\t[-76.273022, 38.941840],\n\t\t\t\t\t\t[-76.273083, 38.941927],\n\t\t\t\t\t\t[-76.273258, 38.941826],\n\t\t\t\t\t\t[-76.276033, 38.940213],\n\t\t\t\t\t\t[-76.284227, 38.935452],\n\t\t\t\t\t\t[-76.288813, 38.932787],\n\t\t\t\t\t\t[-76.291211, 38.931394],\n\t\t\t\t\t\t[-76.295580, 38.928855],\n\t\t\t\t\t\t[-76.295911, 38.928663],\n\t\t\t\t\t\t[-76.298208, 38.922060],\n\t\t\t\t\t\t[-76.299431, 38.918542],\n\t\t\t\t\t\t[-76.299406, 38.918505],\n\t\t\t\t\t\t[-76.298492, 38.917121],\n\t\t\t\t\t\t[-76.293963, 38.910266],\n\t\t\t\t\t\t[-76.293867, 38.910121],\n\t\t\t\t\t\t[-76.293843, 38.909826],\n\t\t\t\t\t\t[-76.293829, 38.909649],\n\t\t\t\t\t\t[-76.293794, 38.909222],\n\t\t\t\t\t\t[-76.293492, 38.905499],\n\t\t\t\t\t\t[-76.293358, 38.903854],\n\t\t\t\t\t\t[-76.293341, 38.903635],\n\t\t\t\t\t\t[-76.293328, 38.903479],\n\t\t\t\t\t\t[-76.293309, 38.903244],\n\t\t\t\t\t\t[-76.293255, 38.902582],\n\t\t\t\t\t\t[-76.293254, 38.902568],\n\t\t\t\t\t\t[-76.308425, 38.898404],\n\t\t\t\t\t\t[-76.317947, 38.911312],\n\t\t\t\t\t\t[-76.317977, 38.911311],\n\t\t\t\t\t\t[-76.318530, 38.911299],\n\t\t\t\t\t\t[-76.319272, 38.911282],\n\t\t\t\t\t\t[-76.322715, 38.911205],\n\t\t\t\t\t\t[-76.323252, 38.911193],\n\t\t\t\t\t\t[-76.324097, 38.911174],\n\t\t\t\t\t\t[-76.324102, 38.911172],\n\t\t\t\t\t\t[-76.336104, 38.905977],\n\t\t\t\t\t\t[-76.336116, 38.905907],\n\t\t\t\t\t\t[-76.336827, 38.901905],\n\t\t\t\t\t\t[-76.336966, 38.901118],\n\t\t\t\t\t\t[-76.337097, 38.900380],\n\t\t\t\t\t\t[-76.337227, 38.899653],\n\t\t\t\t\t\t[-76.337358, 38.898915],\n\t\t\t\t\t\t[-76.338047, 38.895034],\n\t\t\t\t\t\t[-76.338123, 38.894601],\n\t\t\t\t\t\t[-76.338416, 38.892954],\n\t\t\t\t\t\t[-76.338501, 38.892474],\n\t\t\t\t\t\t[-76.337946, 38.891332],\n\t\t\t\t\t\t[-76.336986, 38.889357],\n\t\t\t\t\t\t[-76.336560, 38.888481],\n\t\t\t\t\t\t[-76.336326, 38.888001],\n\t\t\t\t\t\t[-76.335681, 38.886673],\n\t\t\t\t\t\t[-76.335364, 38.886021],\n\t\t\t\t\t\t[-76.335341, 38.885907],\n\t\t\t\t\t\t[-76.333801, 38.878194],\n\t\t\t\t\t\t[-76.333258, 38.875478],\n\t\t\t\t\t\t[-76.333211, 38.875241],\n\t\t\t\t\t\t[-76.332651, 38.872438],\n\t\t\t\t\t\t[-76.331103, 38.864686],\n\t\t\t\t\t\t[-76.331030, 38.864320],\n\t\t\t\t\t\t[-76.334019, 38.860238],\n\t\t\t\t\t\t[-76.337901, 38.857579],\n\t\t\t\t\t\t[-76.338136, 38.857418],\n\t\t\t\t\t\t[-76.339667, 38.856370],\n\t\t\t\t\t\t[-76.340587, 38.855740],\n\t\t\t\t\t\t[-76.348826, 38.857134],\n\t\t\t\t\t\t[-76.350390, 38.857399],\n\t\t\t\t\t\t[-76.356361, 38.854396],\n\t\t\t\t\t\t[-76.359960, 38.852586],\n\t\t\t\t\t\t[-76.360095, 38.852518],\n\t\t\t\t\t\t[-76.361141, 38.851992],\n\t\t\t\t\t\t[-76.361320, 38.851589],\n\t\t\t\t\t\t[-76.366501, 38.839936],\n\t\t\t\t\t\t[-76.368164, 38.836194],\n\t\t\t\t\t\t[-76.368195, 38.836125],\n\t\t\t\t\t\t[-76.368359, 38.836205],\n\t\t\t\t\t\t[-76.372719, 38.838324],\n\t\t\t\t\t\t[-76.373122, 38.838519],\n\t\t\t\t\t\t[-76.375086, 38.839474],\n\t\t\t\t\t\t[-76.375138, 38.839981],\n\t\t\t\t\t\t[-76.375303, 38.841611],\n\t\t\t\t\t\t[-76.375443, 38.842988],\n\t\t\t\t\t\t[-76.376031, 38.848777],\n\t\t\t\t\t\t[-76.376202, 38.850461],\n\t\t\t\t\t\t[-76.376183, 38.850500],\n\t\t\t\t\t\t[-76.375874, 38.851126],\n\t\t\t\t\t\t[-76.372553, 38.857860],\n\t\t\t\t\t\t[-76.367549, 38.868009],\n\t\t\t\t\t\t[-76.367344, 38.868424],\n\t\t\t\t\t\t[-76.364678, 38.873831],\n\t\t\t\t\t\t[-76.365225, 38.892614],\n\t\t\t\t\t\t[-76.365388, 38.898219],\n\t\t\t\t\t\t[-76.365658, 38.907477],\n\t\t\t\t\t\t[-76.365130, 38.911736],\n\t\t\t\t\t\t[-76.364780, 38.914553],\n\t\t\t\t\t\t[-76.364523, 38.916632],\n\t\t\t\t\t\t[-76.362050, 38.936568],\n\t\t\t\t\t\t[-76.361727, 38.939175],\n\t\t\t\t\t\t[-76.359669, 38.943880],\n\t\t\t\t\t\t[-76.357933, 38.947848],\n\t\t\t\t\t\t[-76.357752, 38.948262],\n\t\t\t\t\t\t[-76.354949, 38.954672],\n\t\t\t\t\t\t[-76.353828, 38.957234],\n\t\t\t\t\t\t[-76.351637, 38.960214],\n\t\t\t\t\t\t[-76.343672, 38.971048],\n\t\t\t\t\t\t[-76.333703, 38.984607],\n\t\t\t\t\t\t[-76.331290, 38.987890],\n\t\t\t\t\t\t[-76.323293, 38.998767],\n\t\t\t\t\t\t[-76.322679, 38.999602],\n\t\t\t\t\t\t[-76.322346, 39.005488],\n\t\t\t\t\t\t[-76.322296, 39.006375],\n\t\t\t\t\t\t[-76.323557, 39.008961],\n\t\t\t\t\t\t[-76.322590, 39.013100],\n\t\t\t\t\t\t[-76.320277, 39.022998],\n\t\t\t\t\t\t[-76.320274, 39.023013],\n\t\t\t\t\t\t[-76.320269, 39.023020],\n\t\t\t\t\t\t[-76.311766, 39.035257],\n\t\t\t\t\t\t[-76.302029, 39.039571],\n\t\t\t\t\t\t[-76.301847, 39.039651],\n\t\t\t\t\t\t[-76.301645, 39.037663],\n\t\t\t\t\t\t[-76.301506, 39.036298],\n\t\t\t\t\t\t[-76.301054, 39.031862],\n\t\t\t\t\t\t[-76.301040, 39.031721],\n\t\t\t\t\t\t[-76.301027, 39.031595],\n\t\t\t\t\t\t[-76.302846, 39.025828],\n\t\t\t\t\t\t[-76.302650, 39.025346],\n\t\t\t\t\t\t[-76.294090, 39.004263],\n\t\t\t\t\t\t[-76.293962, 39.003948],\n\t\t\t\t\t\t[-76.291900, 39.001264],\n\t\t\t\t\t\t[-76.289326, 38.997914],\n\t\t\t\t\t\t[-76.286484, 38.994215],\n\t\t\t\t\t\t[-76.284893, 38.992143],\n\t\t\t\t\t\t[-76.283280, 38.990044],\n\t\t\t\t\t\t[-76.280355, 38.986236],\n\t\t\t\t\t\t[-76.278058, 38.983246],\n\t\t\t\t\t\t[-76.277478, 38.982492],\n\t\t\t\t\t\t[-76.277457, 38.982493],\n\t\t\t\t\t\t[-76.275964, 38.982587],\n\t\t\t\t\t\t[-76.258813, 38.983664],\n\t\t\t\t\t\t[-76.258724, 38.983646],\n\t\t\t\t\t\t[-76.246049, 38.981035],\n\t\t\t\t\t\t[-76.243619, 38.980534],\n\t\t\t\t\t\t[-76.229993, 38.977728],\n\t\t\t\t\t\t[-76.229277, 38.977580],\n\t\t\t\t\t\t[-76.228748, 38.977220],\n\t\t\t\t\t\t[-76.218929, 38.970538],\n\t\t\t\t\t\t[-76.218773, 38.970562],\n\t\t\t\t\t\t[-76.202360, 38.973079],\n\t\t\t\t\t\t[-76.202081, 38.973272],\n\t\t\t\t\t\t[-76.187165, 38.983558],\n\t\t\t\t\t\t[-76.182461, 38.986802],\n\t\t\t\t\t\t[-76.180663, 38.988042],\n\t\t\t\t\t\t[-76.168332, 38.996546],\n\t\t\t\t\t\t[-76.164004, 38.999530],\n\t\t\t\t\t\t[-76.163988, 38.999541],\n\t\t\t\t\t\t[-76.163988, 38.999542],\n\t\t\t\t\t\t[-76.163956, 39.000437],\n\t\t\t\t\t\t[-76.163898, 39.002096],\n\t\t\t\t\t\t[-76.163616, 39.010057],\n\t\t\t\t\t\t[-76.167574, 39.018273],\n\t\t\t\t\t\t[-76.173393, 39.025550],\n\t\t\t\t\t\t[-76.174633, 39.027100],\n\t\t\t\t\t\t[-76.177832, 39.031102],\n\t\t\t\t\t\t[-76.178115, 39.031456],\n\t\t\t\t\t\t[-76.178281, 39.031663],\n\t\t\t\t\t\t[-76.184207, 39.046264],\n\t\t\t\t\t\t[-76.179456, 39.052941],\n\t\t\t\t\t\t[-76.177046, 39.056329],\n\t\t\t\t\t\t[-76.175284, 39.058805],\n\t\t\t\t\t\t[-76.169060, 39.062787],\n\t\t\t\t\t\t[-76.158960, 39.065486],\n\t\t\t\t\t\t[-76.156572, 39.069433],\n\t\t\t\t\t\t[-76.153465, 39.074568],\n\t\t\t\t\t\t[-76.150528, 39.079421],\n\t\t\t\t\t\t[-76.145174, 39.092824],\n\t\t\t\t\t\t[-76.158090, 39.093998]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US24037\",\n\t\t\t\t\"STATE\": \"24\",\n\t\t\t\t\"COUNTY\": \"037\",\n\t\t\t\t\"NAME\": \"St. Mary's\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 357.180000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.469795, 38.119061],\n\t\t\t\t\t\t[-76.469787, 38.118606],\n\t\t\t\t\t\t[-76.469784, 38.118381],\n\t\t\t\t\t\t[-76.469760, 38.116874],\n\t\t\t\t\t\t[-76.469740, 38.115653],\n\t\t\t\t\t\t[-76.469738, 38.115534],\n\t\t\t\t\t\t[-76.467333, 38.112546],\n\t\t\t\t\t\t[-76.466973, 38.112099],\n\t\t\t\t\t\t[-76.466568, 38.111596],\n\t\t\t\t\t\t[-76.466404, 38.111392],\n\t\t\t\t\t\t[-76.466387, 38.111302],\n\t\t\t\t\t\t[-76.466364, 38.111183],\n\t\t\t\t\t\t[-76.465892, 38.108738],\n\t\t\t\t\t\t[-76.465479, 38.106603],\n\t\t\t\t\t\t[-76.465330, 38.105830],\n\t\t\t\t\t\t[-76.467879, 38.104932],\n\t\t\t\t\t\t[-76.473266, 38.103035],\n\t\t\t\t\t\t[-76.475448, 38.104271],\n\t\t\t\t\t\t[-76.476222, 38.104709],\n\t\t\t\t\t\t[-76.478168, 38.109221],\n\t\t\t\t\t\t[-76.478610, 38.110247],\n\t\t\t\t\t\t[-76.478797, 38.110680],\n\t\t\t\t\t\t[-76.478817, 38.110726],\n\t\t\t\t\t\t[-76.479056, 38.111281],\n\t\t\t\t\t\t[-76.479799, 38.113005],\n\t\t\t\t\t\t[-76.481000, 38.115789],\n\t\t\t\t\t\t[-76.481036, 38.115873],\n\t\t\t\t\t\t[-76.481050, 38.115889],\n\t\t\t\t\t\t[-76.481073, 38.115915],\n\t\t\t\t\t\t[-76.482007, 38.116974],\n\t\t\t\t\t\t[-76.484030, 38.119266],\n\t\t\t\t\t\t[-76.485149, 38.120535],\n\t\t\t\t\t\t[-76.485961, 38.121456],\n\t\t\t\t\t\t[-76.486274, 38.121810],\n\t\t\t\t\t\t[-76.486320, 38.121862],\n\t\t\t\t\t\t[-76.492029, 38.128333],\n\t\t\t\t\t\t[-76.495040, 38.131746],\n\t\t\t\t\t\t[-76.497081, 38.134059],\n\t\t\t\t\t\t[-76.497866, 38.134950],\n\t\t\t\t\t\t[-76.499018, 38.136255],\n\t\t\t\t\t\t[-76.499842, 38.137189],\n\t\t\t\t\t\t[-76.499923, 38.137221],\n\t\t\t\t\t\t[-76.500332, 38.137381],\n\t\t\t\t\t\t[-76.501258, 38.137744],\n\t\t\t\t\t\t[-76.502306, 38.138156],\n\t\t\t\t\t\t[-76.508825, 38.140713],\n\t\t\t\t\t\t[-76.514824, 38.141219],\n\t\t\t\t\t\t[-76.522418, 38.139391],\n\t\t\t\t\t\t[-76.528990, 38.134708],\n\t\t\t\t\t\t[-76.529439, 38.134388],\n\t\t\t\t\t\t[-76.529868, 38.134083],\n\t\t\t\t\t\t[-76.540380, 38.152991],\n\t\t\t\t\t\t[-76.545335, 38.165373],\n\t\t\t\t\t\t[-76.547333, 38.175673],\n\t\t\t\t\t\t[-76.547455, 38.175923],\n\t\t\t\t\t\t[-76.547902, 38.176839],\n\t\t\t\t\t\t[-76.548256, 38.177566],\n\t\t\t\t\t\t[-76.548946, 38.178982],\n\t\t\t\t\t\t[-76.552957, 38.187209],\n\t\t\t\t\t\t[-76.566297, 38.198492],\n\t\t\t\t\t\t[-76.574440, 38.203751],\n\t\t\t\t\t\t[-76.588683, 38.212950],\n\t\t\t\t\t\t[-76.590637, 38.214212],\n\t\t\t\t\t\t[-76.624387, 38.223429],\n\t\t\t\t\t\t[-76.625659, 38.223777],\n\t\t\t\t\t\t[-76.628078, 38.224437],\n\t\t\t\t\t\t[-76.629703, 38.224881],\n\t\t\t\t\t\t[-76.629893, 38.224933],\n\t\t\t\t\t\t[-76.631958, 38.225497],\n\t\t\t\t\t\t[-76.631997, 38.225508],\n\t\t\t\t\t\t[-76.632464, 38.225635],\n\t\t\t\t\t\t[-76.632544, 38.225657],\n\t\t\t\t\t\t[-76.643929, 38.225080],\n\t\t\t\t\t\t[-76.643999, 38.225102],\n\t\t\t\t\t\t[-76.645034, 38.225429],\n\t\t\t\t\t\t[-76.645166, 38.225470],\n\t\t\t\t\t\t[-76.659182, 38.229894],\n\t\t\t\t\t\t[-76.673462, 38.234401],\n\t\t\t\t\t\t[-76.678687, 38.234259],\n\t\t\t\t\t\t[-76.687075, 38.234030],\n\t\t\t\t\t\t[-76.712594, 38.233334],\n\t\t\t\t\t\t[-76.716139, 38.233237],\n\t\t\t\t\t\t[-76.716376, 38.233231],\n\t\t\t\t\t\t[-76.717537, 38.233329],\n\t\t\t\t\t\t[-76.719602, 38.233503],\n\t\t\t\t\t\t[-76.740055, 38.235227],\n\t\t\t\t\t\t[-76.744265, 38.230716],\n\t\t\t\t\t\t[-76.749384, 38.225231],\n\t\t\t\t\t\t[-76.752017, 38.222409],\n\t\t\t\t\t\t[-76.752085, 38.222336],\n\t\t\t\t\t\t[-76.752286, 38.222121],\n\t\t\t\t\t\t[-76.769988, 38.226388],\n\t\t\t\t\t\t[-76.778625, 38.228470],\n\t\t\t\t\t\t[-76.779865, 38.229026],\n\t\t\t\t\t\t[-76.791932, 38.234441],\n\t\t\t\t\t\t[-76.796590, 38.236531],\n\t\t\t\t\t\t[-76.797452, 38.236918],\n\t\t\t\t\t\t[-76.811647, 38.250129],\n\t\t\t\t\t\t[-76.811815, 38.251318],\n\t\t\t\t\t\t[-76.811927, 38.252115],\n\t\t\t\t\t\t[-76.809009, 38.252193],\n\t\t\t\t\t\t[-76.808880, 38.252197],\n\t\t\t\t\t\t[-76.808411, 38.252209],\n\t\t\t\t\t\t[-76.805949, 38.252275],\n\t\t\t\t\t\t[-76.805770, 38.252615],\n\t\t\t\t\t\t[-76.805224, 38.253648],\n\t\t\t\t\t\t[-76.802947, 38.275094],\n\t\t\t\t\t\t[-76.802347, 38.280743],\n\t\t\t\t\t\t[-76.804922, 38.283300],\n\t\t\t\t\t\t[-76.805037, 38.283414],\n\t\t\t\t\t\t[-76.805363, 38.283738],\n\t\t\t\t\t\t[-76.805470, 38.283844],\n\t\t\t\t\t\t[-76.806596, 38.284962],\n\t\t\t\t\t\t[-76.810596, 38.288934],\n\t\t\t\t\t\t[-76.811182, 38.289516],\n\t\t\t\t\t\t[-76.815098, 38.293404],\n\t\t\t\t\t\t[-76.816323, 38.294620],\n\t\t\t\t\t\t[-76.820799, 38.299064],\n\t\t\t\t\t\t[-76.821569, 38.299829],\n\t\t\t\t\t\t[-76.821670, 38.299869],\n\t\t\t\t\t\t[-76.824834, 38.301130],\n\t\t\t\t\t\t[-76.824889, 38.301152],\n\t\t\t\t\t\t[-76.834046, 38.299680],\n\t\t\t\t\t\t[-76.853623, 38.340100],\n\t\t\t\t\t\t[-76.849933, 38.365815],\n\t\t\t\t\t\t[-76.871810, 38.388973],\n\t\t\t\t\t\t[-76.774924, 38.508920],\n\t\t\t\t\t\t[-76.771045, 38.509889],\n\t\t\t\t\t\t[-76.770193, 38.510478],\n\t\t\t\t\t\t[-76.768654, 38.512614],\n\t\t\t\t\t\t[-76.766899, 38.513278],\n\t\t\t\t\t\t[-76.764753, 38.513382],\n\t\t\t\t\t\t[-76.762551, 38.513172],\n\t\t\t\t\t\t[-76.760202, 38.513292],\n\t\t\t\t\t\t[-76.759769, 38.513023],\n\t\t\t\t\t\t[-76.758000, 38.513088],\n\t\t\t\t\t\t[-76.756546, 38.513532],\n\t\t\t\t\t\t[-76.753855, 38.513525],\n\t\t\t\t\t\t[-76.752051, 38.513733],\n\t\t\t\t\t\t[-76.748052, 38.512469],\n\t\t\t\t\t\t[-76.745861, 38.512627],\n\t\t\t\t\t\t[-76.744138, 38.512191],\n\t\t\t\t\t\t[-76.742151, 38.512487],\n\t\t\t\t\t\t[-76.740048, 38.512576],\n\t\t\t\t\t\t[-76.738652, 38.512340],\n\t\t\t\t\t\t[-76.734922, 38.512189],\n\t\t\t\t\t\t[-76.733669, 38.512464],\n\t\t\t\t\t\t[-76.730088, 38.511830],\n\t\t\t\t\t\t[-76.726627, 38.511769],\n\t\t\t\t\t\t[-76.722650, 38.510684],\n\t\t\t\t\t\t[-76.720401, 38.510692],\n\t\t\t\t\t\t[-76.719146, 38.509825],\n\t\t\t\t\t\t[-76.718537, 38.509784],\n\t\t\t\t\t\t[-76.717758, 38.510380],\n\t\t\t\t\t\t[-76.716407, 38.510112],\n\t\t\t\t\t\t[-76.715920, 38.509474],\n\t\t\t\t\t\t[-76.715260, 38.509498],\n\t\t\t\t\t\t[-76.713835, 38.510482],\n\t\t\t\t\t\t[-76.713459, 38.509500],\n\t\t\t\t\t\t[-76.711840, 38.509871],\n\t\t\t\t\t\t[-76.710530, 38.509170],\n\t\t\t\t\t\t[-76.710413, 38.507453],\n\t\t\t\t\t\t[-76.709950, 38.508065],\n\t\t\t\t\t\t[-76.709169, 38.507360],\n\t\t\t\t\t\t[-76.708441, 38.505545],\n\t\t\t\t\t\t[-76.708448, 38.504838],\n\t\t\t\t\t\t[-76.706520, 38.504250],\n\t\t\t\t\t\t[-76.705541, 38.502959],\n\t\t\t\t\t\t[-76.705353, 38.502019],\n\t\t\t\t\t\t[-76.704443, 38.501835],\n\t\t\t\t\t\t[-76.703727, 38.502297],\n\t\t\t\t\t\t[-76.703316, 38.502401],\n\t\t\t\t\t\t[-76.702203, 38.501668],\n\t\t\t\t\t\t[-76.701475, 38.500195],\n\t\t\t\t\t\t[-76.701033, 38.499646],\n\t\t\t\t\t\t[-76.700012, 38.499129],\n\t\t\t\t\t\t[-76.700275, 38.497940],\n\t\t\t\t\t\t[-76.700122, 38.497634],\n\t\t\t\t\t\t[-76.699317, 38.497125],\n\t\t\t\t\t\t[-76.683820, 38.495251],\n\t\t\t\t\t\t[-76.674118, 38.499622],\n\t\t\t\t\t\t[-76.673584, 38.499085],\n\t\t\t\t\t\t[-76.673050, 38.498548],\n\t\t\t\t\t\t[-76.672663, 38.498160],\n\t\t\t\t\t\t[-76.667081, 38.495172],\n\t\t\t\t\t\t[-76.666427, 38.494785],\n\t\t\t\t\t\t[-76.665949, 38.494389],\n\t\t\t\t\t\t[-76.665360, 38.493657],\n\t\t\t\t\t\t[-76.663333, 38.491153],\n\t\t\t\t\t\t[-76.661309, 38.488596],\n\t\t\t\t\t\t[-76.661214, 38.488476],\n\t\t\t\t\t\t[-76.661120, 38.488356],\n\t\t\t\t\t\t[-76.660341, 38.487368],\n\t\t\t\t\t\t[-76.659326, 38.485675],\n\t\t\t\t\t\t[-76.656646, 38.481210],\n\t\t\t\t\t\t[-76.653967, 38.476746],\n\t\t\t\t\t\t[-76.653909, 38.476650],\n\t\t\t\t\t\t[-76.653906, 38.476645],\n\t\t\t\t\t\t[-76.653430, 38.475852],\n\t\t\t\t\t\t[-76.653383, 38.475774],\n\t\t\t\t\t\t[-76.652894, 38.474958],\n\t\t\t\t\t\t[-76.652650, 38.474552],\n\t\t\t\t\t\t[-76.652142, 38.473753],\n\t\t\t\t\t\t[-76.651956, 38.471261],\n\t\t\t\t\t\t[-76.652095, 38.469519],\n\t\t\t\t\t\t[-76.652977, 38.468101],\n\t\t\t\t\t\t[-76.653007, 38.468051],\n\t\t\t\t\t\t[-76.653656, 38.466988],\n\t\t\t\t\t\t[-76.654345, 38.465174],\n\t\t\t\t\t\t[-76.654146, 38.463908],\n\t\t\t\t\t\t[-76.653872, 38.463359],\n\t\t\t\t\t\t[-76.653783, 38.463294],\n\t\t\t\t\t\t[-76.652588, 38.462422],\n\t\t\t\t\t\t[-76.651307, 38.461829],\n\t\t\t\t\t\t[-76.649131, 38.460822],\n\t\t\t\t\t\t[-76.646480, 38.459593],\n\t\t\t\t\t\t[-76.644319, 38.458268],\n\t\t\t\t\t\t[-76.639814, 38.455456],\n\t\t\t\t\t\t[-76.639263, 38.455037],\n\t\t\t\t\t\t[-76.639174, 38.454969],\n\t\t\t\t\t\t[-76.636393, 38.452855],\n\t\t\t\t\t\t[-76.635464, 38.452173],\n\t\t\t\t\t\t[-76.634487, 38.451457],\n\t\t\t\t\t\t[-76.632601, 38.449659],\n\t\t\t\t\t\t[-76.632520, 38.449582],\n\t\t\t\t\t\t[-76.632450, 38.449518],\n\t\t\t\t\t\t[-76.632427, 38.449497],\n\t\t\t\t\t\t[-76.632415, 38.449486],\n\t\t\t\t\t\t[-76.632409, 38.449481],\n\t\t\t\t\t\t[-76.632402, 38.449474],\n\t\t\t\t\t\t[-76.632399, 38.449471],\n\t\t\t\t\t\t[-76.632398, 38.449470],\n\t\t\t\t\t\t[-76.632397, 38.449469],\n\t\t\t\t\t\t[-76.632388, 38.449461],\n\t\t\t\t\t\t[-76.632387, 38.449460],\n\t\t\t\t\t\t[-76.632348, 38.449425],\n\t\t\t\t\t\t[-76.632226, 38.449313],\n\t\t\t\t\t\t[-76.630009, 38.447290],\n\t\t\t\t\t\t[-76.628951, 38.446264],\n\t\t\t\t\t\t[-76.628002, 38.445707],\n\t\t\t\t\t\t[-76.627864, 38.445625],\n\t\t\t\t\t\t[-76.626272, 38.444648],\n\t\t\t\t\t\t[-76.624681, 38.443670],\n\t\t\t\t\t\t[-76.624192, 38.443498],\n\t\t\t\t\t\t[-76.623616, 38.442869],\n\t\t\t\t\t\t[-76.622486, 38.441366],\n\t\t\t\t\t\t[-76.622068, 38.440152],\n\t\t\t\t\t\t[-76.621546, 38.438921],\n\t\t\t\t\t\t[-76.619985, 38.437575],\n\t\t\t\t\t\t[-76.618831, 38.436354],\n\t\t\t\t\t\t[-76.618428, 38.436054],\n\t\t\t\t\t\t[-76.617820, 38.435602],\n\t\t\t\t\t\t[-76.617222, 38.435330],\n\t\t\t\t\t\t[-76.616427, 38.434612],\n\t\t\t\t\t\t[-76.615820, 38.433591],\n\t\t\t\t\t\t[-76.614797, 38.431355],\n\t\t\t\t\t\t[-76.613984, 38.429863],\n\t\t\t\t\t\t[-76.612999, 38.428837],\n\t\t\t\t\t\t[-76.611460, 38.427991],\n\t\t\t\t\t\t[-76.610799, 38.427239],\n\t\t\t\t\t\t[-76.610605, 38.427020],\n\t\t\t\t\t\t[-76.610135, 38.426486],\n\t\t\t\t\t\t[-76.608893, 38.425030],\n\t\t\t\t\t\t[-76.608373, 38.424445],\n\t\t\t\t\t\t[-76.607855, 38.424197],\n\t\t\t\t\t\t[-76.606263, 38.423973],\n\t\t\t\t\t\t[-76.605265, 38.423833],\n\t\t\t\t\t\t[-76.602190, 38.424173],\n\t\t\t\t\t\t[-76.601599, 38.424113],\n\t\t\t\t\t\t[-76.601125, 38.424066],\n\t\t\t\t\t\t[-76.600651, 38.424018],\n\t\t\t\t\t\t[-76.599445, 38.423896],\n\t\t\t\t\t\t[-76.597528, 38.423425],\n\t\t\t\t\t\t[-76.595223, 38.422172],\n\t\t\t\t\t\t[-76.593918, 38.420952],\n\t\t\t\t\t\t[-76.591674, 38.418854],\n\t\t\t\t\t\t[-76.588899, 38.417243],\n\t\t\t\t\t\t[-76.586742, 38.415991],\n\t\t\t\t\t\t[-76.584586, 38.414739],\n\t\t\t\t\t\t[-76.578631, 38.411283],\n\t\t\t\t\t\t[-76.575543, 38.410170],\n\t\t\t\t\t\t[-76.574427, 38.409768],\n\t\t\t\t\t\t[-76.573981, 38.409607],\n\t\t\t\t\t\t[-76.573311, 38.409365],\n\t\t\t\t\t\t[-76.571807, 38.408823],\n\t\t\t\t\t\t[-76.568129, 38.407713],\n\t\t\t\t\t\t[-76.567296, 38.407494],\n\t\t\t\t\t\t[-76.565615, 38.407051],\n\t\t\t\t\t\t[-76.563902, 38.406002],\n\t\t\t\t\t\t[-76.562669, 38.403858],\n\t\t\t\t\t\t[-76.562362, 38.403133],\n\t\t\t\t\t\t[-76.562185, 38.402716],\n\t\t\t\t\t\t[-76.562179, 38.402702],\n\t\t\t\t\t\t[-76.562178, 38.402700],\n\t\t\t\t\t\t[-76.562054, 38.402409],\n\t\t\t\t\t\t[-76.562002, 38.402286],\n\t\t\t\t\t\t[-76.561353, 38.400376],\n\t\t\t\t\t\t[-76.560617, 38.398707],\n\t\t\t\t\t\t[-76.559957, 38.397321],\n\t\t\t\t\t\t[-76.559227, 38.396378],\n\t\t\t\t\t\t[-76.558388, 38.395861],\n\t\t\t\t\t\t[-76.556652, 38.395295],\n\t\t\t\t\t\t[-76.554929, 38.395035],\n\t\t\t\t\t\t[-76.553435, 38.395043],\n\t\t\t\t\t\t[-76.551129, 38.395212],\n\t\t\t\t\t\t[-76.550652, 38.395248],\n\t\t\t\t\t\t[-76.548842, 38.395409],\n\t\t\t\t\t\t[-76.545623, 38.395695],\n\t\t\t\t\t\t[-76.542273, 38.396144],\n\t\t\t\t\t\t[-76.540270, 38.396631],\n\t\t\t\t\t\t[-76.537701, 38.397361],\n\t\t\t\t\t\t[-76.537325, 38.397429],\n\t\t\t\t\t\t[-76.536676, 38.397545],\n\t\t\t\t\t\t[-76.536028, 38.397661],\n\t\t\t\t\t\t[-76.535660, 38.397727],\n\t\t\t\t\t\t[-76.534075, 38.397766],\n\t\t\t\t\t\t[-76.533073, 38.397223],\n\t\t\t\t\t\t[-76.531270, 38.395934],\n\t\t\t\t\t\t[-76.529924, 38.394972],\n\t\t\t\t\t\t[-76.528305, 38.393406],\n\t\t\t\t\t\t[-76.527968, 38.393080],\n\t\t\t\t\t\t[-76.526904, 38.392012],\n\t\t\t\t\t\t[-76.525826, 38.391130],\n\t\t\t\t\t\t[-76.524645, 38.390343],\n\t\t\t\t\t\t[-76.524138, 38.389775],\n\t\t\t\t\t\t[-76.523635, 38.389211],\n\t\t\t\t\t\t[-76.522594, 38.387997],\n\t\t\t\t\t\t[-76.521153, 38.385704],\n\t\t\t\t\t\t[-76.520078, 38.384382],\n\t\t\t\t\t\t[-76.520020, 38.384330],\n\t\t\t\t\t\t[-76.518939, 38.383363],\n\t\t\t\t\t\t[-76.516663, 38.381668],\n\t\t\t\t\t\t[-76.514949, 38.380835],\n\t\t\t\t\t\t[-76.513560, 38.380413],\n\t\t\t\t\t\t[-76.512609, 38.379708],\n\t\t\t\t\t\t[-76.511631, 38.379399],\n\t\t\t\t\t\t[-76.511296, 38.379294],\n\t\t\t\t\t\t[-76.510961, 38.379188],\n\t\t\t\t\t\t[-76.510057, 38.378903],\n\t\t\t\t\t\t[-76.507831, 38.377503],\n\t\t\t\t\t\t[-76.507399, 38.376983],\n\t\t\t\t\t\t[-76.507042, 38.376553],\n\t\t\t\t\t\t[-76.506542, 38.375750],\n\t\t\t\t\t\t[-76.506271, 38.375096],\n\t\t\t\t\t\t[-76.506041, 38.374799],\n\t\t\t\t\t\t[-76.505576, 38.374403],\n\t\t\t\t\t\t[-76.505040, 38.373947],\n\t\t\t\t\t\t[-76.503802, 38.373359],\n\t\t\t\t\t\t[-76.502376, 38.372889],\n\t\t\t\t\t\t[-76.501475, 38.372497],\n\t\t\t\t\t\t[-76.500449, 38.371635],\n\t\t\t\t\t\t[-76.499675, 38.370906],\n\t\t\t\t\t\t[-76.499675, 38.370919],\n\t\t\t\t\t\t[-76.498484, 38.369633],\n\t\t\t\t\t\t[-76.497293, 38.368347],\n\t\t\t\t\t\t[-76.495675, 38.366600],\n\t\t\t\t\t\t[-76.493466, 38.363996],\n\t\t\t\t\t\t[-76.491157, 38.361246],\n\t\t\t\t\t\t[-76.489235, 38.358393],\n\t\t\t\t\t\t[-76.486618, 38.354038],\n\t\t\t\t\t\t[-76.486364, 38.353517],\n\t\t\t\t\t\t[-76.486060, 38.352891],\n\t\t\t\t\t\t[-76.485755, 38.352265],\n\t\t\t\t\t\t[-76.485188, 38.351097],\n\t\t\t\t\t\t[-76.484085, 38.348070],\n\t\t\t\t\t\t[-76.483575, 38.345855],\n\t\t\t\t\t\t[-76.483449, 38.345310],\n\t\t\t\t\t\t[-76.483223, 38.343290],\n\t\t\t\t\t\t[-76.483154, 38.342668],\n\t\t\t\t\t\t[-76.483130, 38.342446],\n\t\t\t\t\t\t[-76.483375, 38.340797],\n\t\t\t\t\t\t[-76.483432, 38.340415],\n\t\t\t\t\t\t[-76.483481, 38.340093],\n\t\t\t\t\t\t[-76.484336, 38.337210],\n\t\t\t\t\t\t[-76.485047, 38.335895],\n\t\t\t\t\t\t[-76.485618, 38.334840],\n\t\t\t\t\t\t[-76.485678, 38.334730],\n\t\t\t\t\t\t[-76.485737, 38.334619],\n\t\t\t\t\t\t[-76.486084, 38.333977],\n\t\t\t\t\t\t[-76.486431, 38.333335],\n\t\t\t\t\t\t[-76.486925, 38.332422],\n\t\t\t\t\t\t[-76.489029, 38.328874],\n\t\t\t\t\t\t[-76.489381, 38.328005],\n\t\t\t\t\t\t[-76.489232, 38.327453],\n\t\t\t\t\t\t[-76.489211, 38.327375],\n\t\t\t\t\t\t[-76.488976, 38.327163],\n\t\t\t\t\t\t[-76.488520, 38.326752],\n\t\t\t\t\t\t[-76.488421, 38.326700],\n\t\t\t\t\t\t[-76.487575, 38.326257],\n\t\t\t\t\t\t[-76.483167, 38.326668],\n\t\t\t\t\t\t[-76.478044, 38.327060],\n\t\t\t\t\t\t[-76.476192, 38.326726],\n\t\t\t\t\t\t[-76.475027, 38.326516],\n\t\t\t\t\t\t[-76.473581, 38.325804],\n\t\t\t\t\t\t[-76.473026, 38.325530],\n\t\t\t\t\t\t[-76.472644, 38.325342],\n\t\t\t\t\t\t[-76.472557, 38.325299],\n\t\t\t\t\t\t[-76.472470, 38.325256],\n\t\t\t\t\t\t[-76.471712, 38.324867],\n\t\t\t\t\t\t[-76.469869, 38.322900],\n\t\t\t\t\t\t[-76.469620, 38.322367],\n\t\t\t\t\t\t[-76.468480, 38.319928],\n\t\t\t\t\t\t[-76.468045, 38.318844],\n\t\t\t\t\t\t[-76.467959, 38.318628],\n\t\t\t\t\t\t[-76.467872, 38.318412],\n\t\t\t\t\t\t[-76.467600, 38.317736],\n\t\t\t\t\t\t[-76.467329, 38.317061],\n\t\t\t\t\t\t[-76.467185, 38.316703],\n\t\t\t\t\t\t[-76.467165, 38.316653],\n\t\t\t\t\t\t[-76.467155, 38.316628],\n\t\t\t\t\t\t[-76.467111, 38.316518],\n\t\t\t\t\t\t[-76.467110, 38.316516],\n\t\t\t\t\t\t[-76.467104, 38.316501],\n\t\t\t\t\t\t[-76.467101, 38.316494],\n\t\t\t\t\t\t[-76.466882, 38.315947],\n\t\t\t\t\t\t[-76.466434, 38.314833],\n\t\t\t\t\t\t[-76.465981, 38.313702],\n\t\t\t\t\t\t[-76.465623, 38.313162],\n\t\t\t\t\t\t[-76.464481, 38.311437],\n\t\t\t\t\t\t[-76.464365, 38.311260],\n\t\t\t\t\t\t[-76.464047, 38.310946],\n\t\t\t\t\t\t[-76.461609, 38.308540],\n\t\t\t\t\t\t[-76.458306, 38.306641],\n\t\t\t\t\t\t[-76.454295, 38.305332],\n\t\t\t\t\t\t[-76.453453, 38.305057],\n\t\t\t\t\t\t[-76.449024, 38.305141],\n\t\t\t\t\t\t[-76.448846, 38.305144],\n\t\t\t\t\t\t[-76.448365, 38.305153],\n\t\t\t\t\t\t[-76.448146, 38.305157],\n\t\t\t\t\t\t[-76.448107, 38.305158],\n\t\t\t\t\t\t[-76.448100, 38.305158],\n\t\t\t\t\t\t[-76.448089, 38.305158],\n\t\t\t\t\t\t[-76.448087, 38.305158],\n\t\t\t\t\t\t[-76.448085, 38.305158],\n\t\t\t\t\t\t[-76.448084, 38.305159],\n\t\t\t\t\t\t[-76.448080, 38.305159],\n\t\t\t\t\t\t[-76.448074, 38.305159],\n\t\t\t\t\t\t[-76.448019, 38.305160],\n\t\t\t\t\t\t[-76.447913, 38.305162],\n\t\t\t\t\t\t[-76.447253, 38.305174],\n\t\t\t\t\t\t[-76.447132, 38.305176],\n\t\t\t\t\t\t[-76.445622, 38.305205],\n\t\t\t\t\t\t[-76.445334, 38.305210],\n\t\t\t\t\t\t[-76.444886, 38.305363],\n\t\t\t\t\t\t[-76.434128, 38.308763],\n\t\t\t\t\t\t[-76.425033, 38.311636],\n\t\t\t\t\t\t[-76.425005, 38.311646],\n\t\t\t\t\t\t[-76.423408, 38.312150],\n\t\t\t\t\t\t[-76.421816, 38.312653],\n\t\t\t\t\t\t[-76.421790, 38.312661],\n\t\t\t\t\t\t[-76.418789, 38.313609],\n\t\t\t\t\t\t[-76.415780, 38.314559],\n\t\t\t\t\t\t[-76.413260, 38.315356],\n\t\t\t\t\t\t[-76.406617, 38.317455],\n\t\t\t\t\t\t[-76.405716, 38.317794],\n\t\t\t\t\t\t[-76.402894, 38.311402],\n\t\t\t\t\t\t[-76.382163, 38.303389],\n\t\t\t\t\t\t[-76.381493, 38.303130],\n\t\t\t\t\t\t[-76.380120, 38.302343],\n\t\t\t\t\t\t[-76.375310, 38.299583],\n\t\t\t\t\t\t[-76.375023, 38.299419],\n\t\t\t\t\t\t[-76.374517, 38.296556],\n\t\t\t\t\t\t[-76.374481, 38.296348],\n\t\t\t\t\t\t[-76.376607, 38.294393],\n\t\t\t\t\t\t[-76.382051, 38.289384],\n\t\t\t\t\t\t[-76.394171, 38.278233],\n\t\t\t\t\t\t[-76.396913, 38.271650],\n\t\t\t\t\t\t[-76.398852, 38.266997],\n\t\t\t\t\t\t[-76.399013, 38.264338],\n\t\t\t\t\t\t[-76.399049, 38.263753],\n\t\t\t\t\t\t[-76.399078, 38.263275],\n\t\t\t\t\t\t[-76.399313, 38.259398],\n\t\t\t\t\t\t[-76.399320, 38.259284],\n\t\t\t\t\t\t[-76.399078, 38.258569],\n\t\t\t\t\t\t[-76.392464, 38.239055],\n\t\t\t\t\t\t[-76.392280, 38.238511],\n\t\t\t\t\t\t[-76.391659, 38.236680],\n\t\t\t\t\t\t[-76.391623, 38.236573],\n\t\t\t\t\t\t[-76.385244, 38.217751],\n\t\t\t\t\t\t[-76.378104, 38.209897],\n\t\t\t\t\t\t[-76.377693, 38.209445],\n\t\t\t\t\t\t[-76.372535, 38.203771],\n\t\t\t\t\t\t[-76.364135, 38.194532],\n\t\t\t\t\t\t[-76.361877, 38.192048],\n\t\t\t\t\t\t[-76.359887, 38.188737],\n\t\t\t\t\t\t[-76.353799, 38.178606],\n\t\t\t\t\t\t[-76.353516, 38.178135],\n\t\t\t\t\t\t[-76.352561, 38.177214],\n\t\t\t\t\t\t[-76.352395, 38.177054],\n\t\t\t\t\t\t[-76.347983, 38.172802],\n\t\t\t\t\t\t[-76.343517, 38.168497],\n\t\t\t\t\t\t[-76.337611, 38.162805],\n\t\t\t\t\t\t[-76.336106, 38.161353],\n\t\t\t\t\t\t[-76.329711, 38.155190],\n\t\t\t\t\t\t[-76.329705, 38.155184],\n\t\t\t\t\t\t[-76.329688, 38.155155],\n\t\t\t\t\t\t[-76.328864, 38.153703],\n\t\t\t\t\t\t[-76.328805, 38.153600],\n\t\t\t\t\t\t[-76.328778, 38.153552],\n\t\t\t\t\t\t[-76.328419, 38.152921],\n\t\t\t\t\t\t[-76.327124, 38.150641],\n\t\t\t\t\t\t[-76.320492, 38.138966],\n\t\t\t\t\t\t[-76.320136, 38.138339],\n\t\t\t\t\t\t[-76.324108, 38.134266],\n\t\t\t\t\t\t[-76.330982, 38.127217],\n\t\t\t\t\t\t[-76.331812, 38.126366],\n\t\t\t\t\t\t[-76.335243, 38.122848],\n\t\t\t\t\t\t[-76.335637, 38.122444],\n\t\t\t\t\t\t[-76.337342, 38.120696],\n\t\t\t\t\t\t[-76.338161, 38.119856],\n\t\t\t\t\t\t[-76.338535, 38.119472],\n\t\t\t\t\t\t[-76.337411, 38.110888],\n\t\t\t\t\t\t[-76.337402, 38.110820],\n\t\t\t\t\t\t[-76.331807, 38.101092],\n\t\t\t\t\t\t[-76.331484, 38.100531],\n\t\t\t\t\t\t[-76.331240, 38.100106],\n\t\t\t\t\t\t[-76.330807, 38.099354],\n\t\t\t\t\t\t[-76.330794, 38.099331],\n\t\t\t\t\t\t[-76.330787, 38.099201],\n\t\t\t\t\t\t[-76.329433, 38.073986],\n\t\t\t\t\t\t[-76.329308, 38.071660],\n\t\t\t\t\t\t[-76.329165, 38.071247],\n\t\t\t\t\t\t[-76.325044, 38.059368],\n\t\t\t\t\t\t[-76.320592, 38.046531],\n\t\t\t\t\t\t[-76.319476, 38.043315],\n\t\t\t\t\t\t[-76.321499, 38.038050],\n\t\t\t\t\t\t[-76.321950, 38.036874],\n\t\t\t\t\t\t[-76.322093, 38.036503],\n\t\t\t\t\t\t[-76.326994, 38.045105],\n\t\t\t\t\t\t[-76.332812, 38.049938],\n\t\t\t\t\t\t[-76.341172, 38.053596],\n\t\t\t\t\t\t[-76.341404, 38.053697],\n\t\t\t\t\t\t[-76.344327, 38.053565],\n\t\t\t\t\t\t[-76.345697, 38.053502],\n\t\t\t\t\t\t[-76.350656, 38.053277],\n\t\t\t\t\t\t[-76.352750, 38.053182],\n\t\t\t\t\t\t[-76.361237, 38.059542],\n\t\t\t\t\t\t[-76.361538, 38.060114],\n\t\t\t\t\t\t[-76.361668, 38.060360],\n\t\t\t\t\t\t[-76.361779, 38.060570],\n\t\t\t\t\t\t[-76.369306, 38.074853],\n\t\t\t\t\t\t[-76.370204, 38.076556],\n\t\t\t\t\t\t[-76.370845, 38.077771],\n\t\t\t\t\t\t[-76.371790, 38.079565],\n\t\t\t\t\t\t[-76.378292, 38.086949],\n\t\t\t\t\t\t[-76.380991, 38.090014],\n\t\t\t\t\t\t[-76.381298, 38.090362],\n\t\t\t\t\t\t[-76.381752, 38.090878],\n\t\t\t\t\t\t[-76.381842, 38.090981],\n\t\t\t\t\t\t[-76.383896, 38.093312],\n\t\t\t\t\t\t[-76.384886, 38.094437],\n\t\t\t\t\t\t[-76.390917, 38.101286],\n\t\t\t\t\t\t[-76.391823, 38.102315],\n\t\t\t\t\t\t[-76.392058, 38.102581],\n\t\t\t\t\t\t[-76.392335, 38.102896],\n\t\t\t\t\t\t[-76.393121, 38.103142],\n\t\t\t\t\t\t[-76.394006, 38.103419],\n\t\t\t\t\t\t[-76.396478, 38.104192],\n\t\t\t\t\t\t[-76.397656, 38.104561],\n\t\t\t\t\t\t[-76.398067, 38.104690],\n\t\t\t\t\t\t[-76.405368, 38.106974],\n\t\t\t\t\t\t[-76.405972, 38.106967],\n\t\t\t\t\t\t[-76.413160, 38.106884],\n\t\t\t\t\t\t[-76.414475, 38.105943],\n\t\t\t\t\t\t[-76.414994, 38.105572],\n\t\t\t\t\t\t[-76.416550, 38.104459],\n\t\t\t\t\t\t[-76.421066, 38.105989],\n\t\t\t\t\t\t[-76.421214, 38.106039],\n\t\t\t\t\t\t[-76.421896, 38.107026],\n\t\t\t\t\t\t[-76.429384, 38.117875],\n\t\t\t\t\t\t[-76.429471, 38.118001],\n\t\t\t\t\t\t[-76.430425, 38.119383],\n\t\t\t\t\t\t[-76.430412, 38.119488],\n\t\t\t\t\t\t[-76.430130, 38.121753],\n\t\t\t\t\t\t[-76.429744, 38.124856],\n\t\t\t\t\t\t[-76.429581, 38.126165],\n\t\t\t\t\t\t[-76.437242, 38.135699],\n\t\t\t\t\t\t[-76.439841, 38.138933],\n\t\t\t\t\t\t[-76.459236, 38.139471],\n\t\t\t\t\t\t[-76.459689, 38.139484],\n\t\t\t\t\t\t[-76.460072, 38.138717],\n\t\t\t\t\t\t[-76.460673, 38.137515],\n\t\t\t\t\t\t[-76.465727, 38.127408],\n\t\t\t\t\t\t[-76.469798, 38.119264],\n\t\t\t\t\t\t[-76.469795, 38.119061]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US24039\",\n\t\t\t\t\"STATE\": \"24\",\n\t\t\t\t\"COUNTY\": \"039\",\n\t\t\t\t\"NAME\": \"Somerset\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 319.723000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-76.031442, 38.147612],\n\t\t\t\t\t\t\t[-76.022515, 38.133453],\n\t\t\t\t\t\t\t[-76.020982, 38.132776],\n\t\t\t\t\t\t\t[-76.020476, 38.132553],\n\t\t\t\t\t\t\t[-76.019637, 38.132183],\n\t\t\t\t\t\t\t[-76.018574, 38.131713],\n\t\t\t\t\t\t\t[-76.017790, 38.131367],\n\t\t\t\t\t\t\t[-76.015155, 38.131548],\n\t\t\t\t\t\t\t[-76.013903, 38.131634],\n\t\t\t\t\t\t\t[-76.012487, 38.131731],\n\t\t\t\t\t\t\t[-76.011916, 38.122214],\n\t\t\t\t\t\t\t[-76.013363, 38.121342],\n\t\t\t\t\t\t\t[-76.014698, 38.120537],\n\t\t\t\t\t\t\t[-76.015702, 38.119933],\n\t\t\t\t\t\t\t[-76.020496, 38.117044],\n\t\t\t\t\t\t\t[-76.021305, 38.108608],\n\t\t\t\t\t\t\t[-76.021353, 38.108108],\n\t\t\t\t\t\t\t[-76.021370, 38.107934],\n\t\t\t\t\t\t\t[-76.020996, 38.107578],\n\t\t\t\t\t\t\t[-76.017394, 38.104154],\n\t\t\t\t\t\t\t[-76.015477, 38.102332],\n\t\t\t\t\t\t\t[-76.008168, 38.095385],\n\t\t\t\t\t\t\t[-76.005904, 38.077170],\n\t\t\t\t\t\t\t[-76.011544, 38.072312],\n\t\t\t\t\t\t\t[-76.012701, 38.072159],\n\t\t\t\t\t\t\t[-76.015235, 38.071825],\n\t\t\t\t\t\t\t[-76.023300, 38.070760],\n\t\t\t\t\t\t\t[-76.036676, 38.076509],\n\t\t\t\t\t\t\t[-76.052207, 38.089716],\n\t\t\t\t\t\t\t[-76.058310, 38.094906],\n\t\t\t\t\t\t\t[-76.059304, 38.095751],\n\t\t\t\t\t\t\t[-76.050156, 38.107758],\n\t\t\t\t\t\t\t[-76.047291, 38.108505],\n\t\t\t\t\t\t\t[-76.046494, 38.108712],\n\t\t\t\t\t\t\t[-76.045279, 38.109029],\n\t\t\t\t\t\t\t[-76.044482, 38.109237],\n\t\t\t\t\t\t\t[-76.042083, 38.109862],\n\t\t\t\t\t\t\t[-76.041083, 38.110726],\n\t\t\t\t\t\t\t[-76.040874, 38.110906],\n\t\t\t\t\t\t\t[-76.039620, 38.111990],\n\t\t\t\t\t\t\t[-76.039696, 38.112108],\n\t\t\t\t\t\t\t[-76.040665, 38.113606],\n\t\t\t\t\t\t\t[-76.043423, 38.117868],\n\t\t\t\t\t\t\t[-76.048373, 38.120550],\n\t\t\t\t\t\t\t[-76.031442, 38.147612]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-75.624341, 37.994211],\n\t\t\t\t\t\t\t[-75.626129, 37.992500],\n\t\t\t\t\t\t\t[-75.630222, 37.988584],\n\t\t\t\t\t\t\t[-75.635502, 37.983531],\n\t\t\t\t\t\t\t[-75.639786, 37.979432],\n\t\t\t\t\t\t\t[-75.644545, 37.974877],\n\t\t\t\t\t\t\t[-75.644591, 37.974833],\n\t\t\t\t\t\t\t[-75.644665, 37.974763],\n\t\t\t\t\t\t\t[-75.645096, 37.974350],\n\t\t\t\t\t\t\t[-75.645251, 37.974202],\n\t\t\t\t\t\t\t[-75.646289, 37.973209],\n\t\t\t\t\t\t\t[-75.646507, 37.973000],\n\t\t\t\t\t\t\t[-75.660956, 37.959174],\n\t\t\t\t\t\t\t[-75.669711, 37.950796],\n\t\t\t\t\t\t\t[-75.665057, 37.956282],\n\t\t\t\t\t\t\t[-75.663095, 37.961195],\n\t\t\t\t\t\t\t[-75.665020, 37.962401],\n\t\t\t\t\t\t\t[-75.669374, 37.965130],\n\t\t\t\t\t\t\t[-75.671681, 37.966576],\n\t\t\t\t\t\t\t[-75.685995, 37.967607],\n\t\t\t\t\t\t\t[-75.686525, 37.967783],\n\t\t\t\t\t\t\t[-75.708179, 37.974972],\n\t\t\t\t\t\t\t[-75.713150, 37.976623],\n\t\t\t\t\t\t\t[-75.722085, 37.973416],\n\t\t\t\t\t\t\t[-75.722662, 37.971310],\n\t\t\t\t\t\t\t[-75.724692, 37.969754],\n\t\t\t\t\t\t\t[-75.725330, 37.969266],\n\t\t\t\t\t\t\t[-75.727952, 37.967256],\n\t\t\t\t\t\t\t[-75.735125, 37.964592],\n\t\t\t\t\t\t\t[-75.737514, 37.963705],\n\t\t\t\t\t\t\t[-75.737997, 37.963526],\n\t\t\t\t\t\t\t[-75.750244, 37.968873],\n\t\t\t\t\t\t\t[-75.759091, 37.970663],\n\t\t\t\t\t\t\t[-75.776773, 37.972044],\n\t\t\t\t\t\t\t[-75.778975, 37.972216],\n\t\t\t\t\t\t\t[-75.783444, 37.972565],\n\t\t\t\t\t\t\t[-75.783815, 37.972594],\n\t\t\t\t\t\t\t[-75.785007, 37.971714],\n\t\t\t\t\t\t\t[-75.785209, 37.971564],\n\t\t\t\t\t\t\t[-75.785273, 37.971517],\n\t\t\t\t\t\t\t[-75.785487, 37.971359],\n\t\t\t\t\t\t\t[-75.788351, 37.969244],\n\t\t\t\t\t\t\t[-75.789943, 37.968068],\n\t\t\t\t\t\t\t[-75.806147, 37.956100],\n\t\t\t\t\t\t\t[-75.806930, 37.955522],\n\t\t\t\t\t\t\t[-75.807755, 37.954912],\n\t\t\t\t\t\t\t[-75.819088, 37.946542],\n\t\t\t\t\t\t\t[-75.820774, 37.945297],\n\t\t\t\t\t\t\t[-75.822901, 37.943726],\n\t\t\t\t\t\t\t[-75.824242, 37.942736],\n\t\t\t\t\t\t\t[-75.824448, 37.942584],\n\t\t\t\t\t\t\t[-75.829901, 37.938556],\n\t\t\t\t\t\t\t[-75.830154, 37.938028],\n\t\t\t\t\t\t\t[-75.831707, 37.934789],\n\t\t\t\t\t\t\t[-75.831836, 37.934519],\n\t\t\t\t\t\t\t[-75.832414, 37.933313],\n\t\t\t\t\t\t\t[-75.832793, 37.933112],\n\t\t\t\t\t\t\t[-75.843768, 37.927297],\n\t\t\t\t\t\t\t[-75.845992, 37.926118],\n\t\t\t\t\t\t\t[-75.846621, 37.925785],\n\t\t\t\t\t\t\t[-75.847207, 37.925474],\n\t\t\t\t\t\t\t[-75.847473, 37.925333],\n\t\t\t\t\t\t\t[-75.847817, 37.925151],\n\t\t\t\t\t\t\t[-75.847933, 37.925089],\n\t\t\t\t\t\t\t[-75.848133, 37.924983],\n\t\t\t\t\t\t\t[-75.849103, 37.924470],\n\t\t\t\t\t\t\t[-75.860727, 37.918310],\n\t\t\t\t\t\t\t[-75.881913, 37.912563],\n\t\t\t\t\t\t\t[-75.883708, 37.912076],\n\t\t\t\t\t\t\t[-75.885032, 37.911717],\n\t\t\t\t\t\t\t[-75.892686, 37.916848],\n\t\t\t\t\t\t\t[-75.895791, 37.921406],\n\t\t\t\t\t\t\t[-75.895940, 37.921625],\n\t\t\t\t\t\t\t[-75.898316, 37.925114],\n\t\t\t\t\t\t\t[-75.894065, 37.930790],\n\t\t\t\t\t\t\t[-75.893655, 37.933879],\n\t\t\t\t\t\t\t[-75.892810, 37.940239],\n\t\t\t\t\t\t\t[-75.890871, 37.954847],\n\t\t\t\t\t\t\t[-75.898956, 37.974514],\n\t\t\t\t\t\t\t[-75.882768, 38.002995],\n\t\t\t\t\t\t\t[-75.875297, 38.011965],\n\t\t\t\t\t\t\t[-75.875399, 38.028241],\n\t\t\t\t\t\t\t[-75.873190, 38.034375],\n\t\t\t\t\t\t\t[-75.869513, 38.035407],\n\t\t\t\t\t\t\t[-75.865912, 38.036418],\n\t\t\t\t\t\t\t[-75.864648, 38.036773],\n\t\t\t\t\t\t\t[-75.858891, 38.038390],\n\t\t\t\t\t\t\t[-75.857507, 38.038778],\n\t\t\t\t\t\t\t[-75.856854, 38.038583],\n\t\t\t\t\t\t\t[-75.855468, 38.038170],\n\t\t\t\t\t\t\t[-75.854711, 38.037944],\n\t\t\t\t\t\t\t[-75.852655, 38.037331],\n\t\t\t\t\t\t\t[-75.850531, 38.036697],\n\t\t\t\t\t\t\t[-75.850343, 38.035877],\n\t\t\t\t\t\t\t[-75.849980, 38.034294],\n\t\t\t\t\t\t\t[-75.847922, 38.034370],\n\t\t\t\t\t\t\t[-75.847716, 38.034468],\n\t\t\t\t\t\t\t[-75.836018, 38.040007],\n\t\t\t\t\t\t\t[-75.834643, 38.040657],\n\t\t\t\t\t\t\t[-75.833657, 38.041125],\n\t\t\t\t\t\t\t[-75.833418, 38.041238],\n\t\t\t\t\t\t\t[-75.830023, 38.042845],\n\t\t\t\t\t\t\t[-75.829375, 38.043152],\n\t\t\t\t\t\t\t[-75.829276, 38.043247],\n\t\t\t\t\t\t\t[-75.826492, 38.045915],\n\t\t\t\t\t\t\t[-75.825987, 38.046400],\n\t\t\t\t\t\t\t[-75.812913, 38.058932],\n\t\t\t\t\t\t\t[-75.813378, 38.059481],\n\t\t\t\t\t\t\t[-75.813468, 38.059587],\n\t\t\t\t\t\t\t[-75.819415, 38.066606],\n\t\t\t\t\t\t\t[-75.819479, 38.066682],\n\t\t\t\t\t\t\t[-75.819591, 38.066814],\n\t\t\t\t\t\t\t[-75.830017, 38.069120],\n\t\t\t\t\t\t\t[-75.831103, 38.069361],\n\t\t\t\t\t\t\t[-75.832742, 38.069723],\n\t\t\t\t\t\t\t[-75.839935, 38.071314],\n\t\t\t\t\t\t\t[-75.841057, 38.071562],\n\t\t\t\t\t\t\t[-75.841206, 38.071595],\n\t\t\t\t\t\t\t[-75.844265, 38.072272],\n\t\t\t\t\t\t\t[-75.847180, 38.071289],\n\t\t\t\t\t\t\t[-75.852305, 38.069561],\n\t\t\t\t\t\t\t[-75.858944, 38.067323],\n\t\t\t\t\t\t\t[-75.859026, 38.067208],\n\t\t\t\t\t\t\t[-75.859568, 38.066448],\n\t\t\t\t\t\t\t[-75.860072, 38.065743],\n\t\t\t\t\t\t\t[-75.859717, 38.064073],\n\t\t\t\t\t\t\t[-75.859440, 38.062769],\n\t\t\t\t\t\t\t[-75.859281, 38.062018],\n\t\t\t\t\t\t\t[-75.859005, 38.060717],\n\t\t\t\t\t\t\t[-75.858881, 38.060135],\n\t\t\t\t\t\t\t[-75.860629, 38.059960],\n\t\t\t\t\t\t\t[-75.860946, 38.059928],\n\t\t\t\t\t\t\t[-75.861033, 38.059919],\n\t\t\t\t\t\t\t[-75.861530, 38.059870],\n\t\t\t\t\t\t\t[-75.866194, 38.059402],\n\t\t\t\t\t\t\t[-75.867267, 38.059295],\n\t\t\t\t\t\t\t[-75.867511, 38.059270],\n\t\t\t\t\t\t\t[-75.868899, 38.059131],\n\t\t\t\t\t\t\t[-75.871503, 38.058870],\n\t\t\t\t\t\t\t[-75.874189, 38.060288],\n\t\t\t\t\t\t\t[-75.880515, 38.075011],\n\t\t\t\t\t\t\t[-75.871394, 38.089183],\n\t\t\t\t\t\t\t[-75.870282, 38.090911],\n\t\t\t\t\t\t\t[-75.865697, 38.098036],\n\t\t\t\t\t\t\t[-75.865146, 38.098893],\n\t\t\t\t\t\t\t[-75.863810, 38.100968],\n\t\t\t\t\t\t\t[-75.842604, 38.113111],\n\t\t\t\t\t\t\t[-75.837563, 38.113753],\n\t\t\t\t\t\t\t[-75.837204, 38.114468],\n\t\t\t\t\t\t\t[-75.837165, 38.114546],\n\t\t\t\t\t\t\t[-75.837048, 38.114777],\n\t\t\t\t\t\t\t[-75.827993, 38.132803],\n\t\t\t\t\t\t\t[-75.827892, 38.133004],\n\t\t\t\t\t\t\t[-75.827674, 38.133438],\n\t\t\t\t\t\t\t[-75.827712, 38.133464],\n\t\t\t\t\t\t\t[-75.843862, 38.144599],\n\t\t\t\t\t\t\t[-75.849919, 38.144414],\n\t\t\t\t\t\t\t[-75.854507, 38.142567],\n\t\t\t\t\t\t\t[-75.858667, 38.140893],\n\t\t\t\t\t\t\t[-75.859540, 38.140542],\n\t\t\t\t\t\t\t[-75.866000, 38.134886],\n\t\t\t\t\t\t\t[-75.868636, 38.134381],\n\t\t\t\t\t\t\t[-75.870056, 38.134684],\n\t\t\t\t\t\t\t[-75.871037, 38.134893],\n\t\t\t\t\t\t\t[-75.880707, 38.136957],\n\t\t\t\t\t\t\t[-75.880978, 38.137015],\n\t\t\t\t\t\t\t[-75.900355, 38.141150],\n\t\t\t\t\t\t\t[-75.901058, 38.140826],\n\t\t\t\t\t\t\t[-75.902004, 38.140390],\n\t\t\t\t\t\t\t[-75.903442, 38.139726],\n\t\t\t\t\t\t\t[-75.905599, 38.138732],\n\t\t\t\t\t\t\t[-75.906497, 38.138317],\n\t\t\t\t\t\t\t[-75.907264, 38.137964],\n\t\t\t\t\t\t\t[-75.923797, 38.130339],\n\t\t\t\t\t\t\t[-75.932738, 38.126216],\n\t\t\t\t\t\t\t[-75.936773, 38.124355],\n\t\t\t\t\t\t\t[-75.937089, 38.124209],\n\t\t\t\t\t\t\t[-75.937055, 38.123077],\n\t\t\t\t\t\t\t[-75.937015, 38.121749],\n\t\t\t\t\t\t\t[-75.936866, 38.116745],\n\t\t\t\t\t\t\t[-75.936663, 38.109956],\n\t\t\t\t\t\t\t[-75.938484, 38.109976],\n\t\t\t\t\t\t\t[-75.945297, 38.113091],\n\t\t\t\t\t\t\t[-75.949557, 38.118127],\n\t\t\t\t\t\t\t[-75.956428, 38.131115],\n\t\t\t\t\t\t\t[-75.956434, 38.131126],\n\t\t\t\t\t\t\t[-75.958786, 38.135572],\n\t\t\t\t\t\t\t[-75.959496, 38.136915],\n\t\t\t\t\t\t\t[-75.959616, 38.137141],\n\t\t\t\t\t\t\t[-75.952411, 38.158513],\n\t\t\t\t\t\t\t[-75.951425, 38.161436],\n\t\t\t\t\t\t\t[-75.951273, 38.161887],\n\t\t\t\t\t\t\t[-75.949752, 38.164486],\n\t\t\t\t\t\t\t[-75.947534, 38.168274],\n\t\t\t\t\t\t\t[-75.947487, 38.168736],\n\t\t\t\t\t\t\t[-75.947417, 38.169439],\n\t\t\t\t\t\t\t[-75.947280, 38.170792],\n\t\t\t\t\t\t\t[-75.948129, 38.171778],\n\t\t\t\t\t\t\t[-75.948220, 38.171884],\n\t\t\t\t\t\t\t[-75.948566, 38.172285],\n\t\t\t\t\t\t\t[-75.948709, 38.172451],\n\t\t\t\t\t\t\t[-75.951812, 38.176053],\n\t\t\t\t\t\t\t[-75.951972, 38.176239],\n\t\t\t\t\t\t\t[-75.951850, 38.176794],\n\t\t\t\t\t\t\t[-75.951583, 38.178014],\n\t\t\t\t\t\t\t[-75.951566, 38.178093],\n\t\t\t\t\t\t\t[-75.949575, 38.180037],\n\t\t\t\t\t\t\t[-75.949420, 38.180188],\n\t\t\t\t\t\t\t[-75.948891, 38.180704],\n\t\t\t\t\t\t\t[-75.948738, 38.180854],\n\t\t\t\t\t\t\t[-75.946586, 38.182955],\n\t\t\t\t\t\t\t[-75.945419, 38.184094],\n\t\t\t\t\t\t\t[-75.942375, 38.187066],\n\t\t\t\t\t\t\t[-75.941448, 38.187352],\n\t\t\t\t\t\t\t[-75.933932, 38.189670],\n\t\t\t\t\t\t\t[-75.888073, 38.203813],\n\t\t\t\t\t\t\t[-75.886217, 38.203309],\n\t\t\t\t\t\t\t[-75.884940, 38.200493],\n\t\t\t\t\t\t\t[-75.884603, 38.199751],\n\t\t\t\t\t\t\t[-75.884544, 38.199739],\n\t\t\t\t\t\t\t[-75.878293, 38.198407],\n\t\t\t\t\t\t\t[-75.877751, 38.198292],\n\t\t\t\t\t\t\t[-75.877250, 38.198386],\n\t\t\t\t\t\t\t[-75.870975, 38.199566],\n\t\t\t\t\t\t\t[-75.868470, 38.200037],\n\t\t\t\t\t\t\t[-75.864104, 38.200858],\n\t\t\t\t\t\t\t[-75.862444, 38.201759],\n\t\t\t\t\t\t\t[-75.856960, 38.204734],\n\t\t\t\t\t\t\t[-75.854406, 38.206120],\n\t\t\t\t\t\t\t[-75.852258, 38.207286],\n\t\t\t\t\t\t\t[-75.848473, 38.209340],\n\t\t\t\t\t\t\t[-75.847299, 38.209977],\n\t\t\t\t\t\t\t[-75.847032, 38.210122],\n\t\t\t\t\t\t\t[-75.846713, 38.210295],\n\t\t\t\t\t\t\t[-75.846377, 38.210477],\n\t\t\t\t\t\t\t[-75.851396, 38.226432],\n\t\t\t\t\t\t\t[-75.851528, 38.226550],\n\t\t\t\t\t\t\t[-75.859160, 38.233407],\n\t\t\t\t\t\t\t[-75.864628, 38.238320],\n\t\t\t\t\t\t\t[-75.768671, 38.285183],\n\t\t\t\t\t\t\t[-75.612764, 38.278626],\n\t\t\t\t\t\t\t[-75.545898, 38.178740],\n\t\t\t\t\t\t\t[-75.540870, 38.089480],\n\t\t\t\t\t\t\t[-75.661827, 38.041853],\n\t\t\t\t\t\t\t[-75.624341, 37.994211]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-75.993905, 37.953489],\n\t\t\t\t\t\t\t[-75.994739, 37.953501],\n\t\t\t\t\t\t\t[-76.005888, 37.953662],\n\t\t\t\t\t\t\t[-76.017686, 37.953832],\n\t\t\t\t\t\t\t[-76.020796, 37.953877],\n\t\t\t\t\t\t\t[-76.020932, 37.953879],\n\t\t\t\t\t\t\t[-76.021714, 37.953887],\n\t\t\t\t\t\t\t[-76.022325, 37.953878],\n\t\t\t\t\t\t\t[-76.029405, 37.953776],\n\t\t\t\t\t\t\t[-76.029463, 37.953775],\n\t\t\t\t\t\t\t[-76.030122, 37.953655],\n\t\t\t\t\t\t\t[-76.038026, 37.953901],\n\t\t\t\t\t\t\t[-76.041402, 37.954006],\n\t\t\t\t\t\t\t[-76.041691, 37.954000],\n\t\t\t\t\t\t\t[-76.045561, 37.953669],\n\t\t\t\t\t\t\t[-76.046530, 37.953586],\n\t\t\t\t\t\t\t[-76.049608, 37.983628],\n\t\t\t\t\t\t\t[-76.049562, 37.985065],\n\t\t\t\t\t\t\t[-76.049549, 37.985495],\n\t\t\t\t\t\t\t[-76.049527, 37.986184],\n\t\t\t\t\t\t\t[-76.049396, 37.990315],\n\t\t\t\t\t\t\t[-76.048617, 38.014843],\n\t\t\t\t\t\t\t[-76.046213, 38.025533],\n\t\t\t\t\t\t\t[-76.041668, 38.032148],\n\t\t\t\t\t\t\t[-76.020827, 38.039124],\n\t\t\t\t\t\t\t[-76.013128, 38.039762],\n\t\t\t\t\t\t\t[-76.008835, 38.038275],\n\t\t\t\t\t\t\t[-76.008695, 38.038226],\n\t\t\t\t\t\t\t[-76.004592, 38.036805],\n\t\t\t\t\t\t\t[-75.991846, 38.025497],\n\t\t\t\t\t\t\t[-75.981195, 38.022460],\n\t\t\t\t\t\t\t[-75.977246, 38.021334],\n\t\t\t\t\t\t\t[-75.975494, 38.020834],\n\t\t\t\t\t\t\t[-75.975487, 38.020827],\n\t\t\t\t\t\t\t[-75.973432, 38.018841],\n\t\t\t\t\t\t\t[-75.972304, 38.017750],\n\t\t\t\t\t\t\t[-75.970172, 38.015688],\n\t\t\t\t\t\t\t[-75.970168, 38.015685],\n\t\t\t\t\t\t\t[-75.970168, 38.015683],\n\t\t\t\t\t\t\t[-75.970178, 38.015260],\n\t\t\t\t\t\t\t[-75.970345, 38.008222],\n\t\t\t\t\t\t\t[-75.970390, 38.006327],\n\t\t\t\t\t\t\t[-75.970917, 38.006239],\n\t\t\t\t\t\t\t[-75.979879, 38.004738],\n\t\t\t\t\t\t\t[-75.980683, 38.004603],\n\t\t\t\t\t\t\t[-75.982880, 38.004236],\n\t\t\t\t\t\t\t[-75.984251, 38.004006],\n\t\t\t\t\t\t\t[-75.984479, 38.003369],\n\t\t\t\t\t\t\t[-75.984675, 38.002821],\n\t\t\t\t\t\t\t[-75.985020, 38.001855],\n\t\t\t\t\t\t\t[-75.985723, 37.999889],\n\t\t\t\t\t\t\t[-75.986249, 37.998416],\n\t\t\t\t\t\t\t[-75.986571, 37.997516],\n\t\t\t\t\t\t\t[-75.988541, 37.992006],\n\t\t\t\t\t\t\t[-75.988719, 37.991509],\n\t\t\t\t\t\t\t[-75.989101, 37.990440],\n\t\t\t\t\t\t\t[-75.992468, 37.981021],\n\t\t\t\t\t\t\t[-75.994730, 37.974694],\n\t\t\t\t\t\t\t[-75.994730, 37.974693],\n\t\t\t\t\t\t\t[-75.992789, 37.969932],\n\t\t\t\t\t\t\t[-75.991543, 37.966874],\n\t\t\t\t\t\t\t[-75.988879, 37.960337],\n\t\t\t\t\t\t\t[-75.993905, 37.953489]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US24041\",\n\t\t\t\t\"STATE\": \"24\",\n\t\t\t\t\"COUNTY\": \"041\",\n\t\t\t\t\"NAME\": \"Talbot\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 268.538000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.147577, 38.637893],\n\t\t\t\t\t\t[-76.148202, 38.639463],\n\t\t\t\t\t\t[-76.148559, 38.640362],\n\t\t\t\t\t\t[-76.148955, 38.641356],\n\t\t\t\t\t\t[-76.149353, 38.642356],\n\t\t\t\t\t\t[-76.152554, 38.650400],\n\t\t\t\t\t\t[-76.152603, 38.650523],\n\t\t\t\t\t\t[-76.152622, 38.650572],\n\t\t\t\t\t\t[-76.152990, 38.651495],\n\t\t\t\t\t\t[-76.153414, 38.652562],\n\t\t\t\t\t\t[-76.153769, 38.653455],\n\t\t\t\t\t\t[-76.154093, 38.654269],\n\t\t\t\t\t\t[-76.154581, 38.655495],\n\t\t\t\t\t\t[-76.154604, 38.655553],\n\t\t\t\t\t\t[-76.154889, 38.656268],\n\t\t\t\t\t\t[-76.154924, 38.656358],\n\t\t\t\t\t\t[-76.155611, 38.658083],\n\t\t\t\t\t\t[-76.160539, 38.661903],\n\t\t\t\t\t\t[-76.164465, 38.664946],\n\t\t\t\t\t\t[-76.168824, 38.668325],\n\t\t\t\t\t\t[-76.174611, 38.672811],\n\t\t\t\t\t\t[-76.175159, 38.673236],\n\t\t\t\t\t\t[-76.196716, 38.672860],\n\t\t\t\t\t\t[-76.199722, 38.671127],\n\t\t\t\t\t\t[-76.199948, 38.670997],\n\t\t\t\t\t\t[-76.200334, 38.670774],\n\t\t\t\t\t\t[-76.212808, 38.681892],\n\t\t\t\t\t\t[-76.226343, 38.698057],\n\t\t\t\t\t\t[-76.229242, 38.701519],\n\t\t\t\t\t\t[-76.231392, 38.704088],\n\t\t\t\t\t\t[-76.231758, 38.704524],\n\t\t\t\t\t\t[-76.232127, 38.704964],\n\t\t\t\t\t\t[-76.232365, 38.705249],\n\t\t\t\t\t\t[-76.232535, 38.705452],\n\t\t\t\t\t\t[-76.232814, 38.705785],\n\t\t\t\t\t\t[-76.232845, 38.705823],\n\t\t\t\t\t\t[-76.232875, 38.705859],\n\t\t\t\t\t\t[-76.232893, 38.705880],\n\t\t\t\t\t\t[-76.234249, 38.707499],\n\t\t\t\t\t\t[-76.234379, 38.707655],\n\t\t\t\t\t\t[-76.234392, 38.707670],\n\t\t\t\t\t\t[-76.234828, 38.708191],\n\t\t\t\t\t\t[-76.237818, 38.711762],\n\t\t\t\t\t\t[-76.237916, 38.711879],\n\t\t\t\t\t\t[-76.238077, 38.712071],\n\t\t\t\t\t\t[-76.238172, 38.712185],\n\t\t\t\t\t\t[-76.238306, 38.712344],\n\t\t\t\t\t\t[-76.238725, 38.712845],\n\t\t\t\t\t\t[-76.239377, 38.716880],\n\t\t\t\t\t\t[-76.239427, 38.717191],\n\t\t\t\t\t\t[-76.239841, 38.719756],\n\t\t\t\t\t\t[-76.237040, 38.724518],\n\t\t\t\t\t\t[-76.238685, 38.735434],\n\t\t\t\t\t\t[-76.255093, 38.736476],\n\t\t\t\t\t\t[-76.255348, 38.736273],\n\t\t\t\t\t\t[-76.257335, 38.734691],\n\t\t\t\t\t\t[-76.257423, 38.734621],\n\t\t\t\t\t\t[-76.257437, 38.734609],\n\t\t\t\t\t\t[-76.257851, 38.734280],\n\t\t\t\t\t\t[-76.258738, 38.733573],\n\t\t\t\t\t\t[-76.259238, 38.733176],\n\t\t\t\t\t\t[-76.259665, 38.732836],\n\t\t\t\t\t\t[-76.259741, 38.732775],\n\t\t\t\t\t\t[-76.259867, 38.732675],\n\t\t\t\t\t\t[-76.259876, 38.732667],\n\t\t\t\t\t\t[-76.260001, 38.732568],\n\t\t\t\t\t\t[-76.260976, 38.731791],\n\t\t\t\t\t\t[-76.261863, 38.731085],\n\t\t\t\t\t\t[-76.268288, 38.725969],\n\t\t\t\t\t\t[-76.268739, 38.725609],\n\t\t\t\t\t\t[-76.269370, 38.725107],\n\t\t\t\t\t\t[-76.269520, 38.724988],\n\t\t\t\t\t\t[-76.270277, 38.724385],\n\t\t\t\t\t\t[-76.271243, 38.716209],\n\t\t\t\t\t\t[-76.271447, 38.714480],\n\t\t\t\t\t\t[-76.271553, 38.713576],\n\t\t\t\t\t\t[-76.271596, 38.713216],\n\t\t\t\t\t\t[-76.275015, 38.712714],\n\t\t\t\t\t\t[-76.275019, 38.712715],\n\t\t\t\t\t\t[-76.298499, 38.718005],\n\t\t\t\t\t\t[-76.299171, 38.719287],\n\t\t\t\t\t\t[-76.296603, 38.723183],\n\t\t\t\t\t\t[-76.296537, 38.723283],\n\t\t\t\t\t\t[-76.295957, 38.724162],\n\t\t\t\t\t\t[-76.298186, 38.726255],\n\t\t\t\t\t\t[-76.299350, 38.727347],\n\t\t\t\t\t\t[-76.299401, 38.727395],\n\t\t\t\t\t\t[-76.312756, 38.730708],\n\t\t\t\t\t\t[-76.316146, 38.729586],\n\t\t\t\t\t\t[-76.321803, 38.723565],\n\t\t\t\t\t\t[-76.321885, 38.723478],\n\t\t\t\t\t\t[-76.322019, 38.723335],\n\t\t\t\t\t\t[-76.322028, 38.723326],\n\t\t\t\t\t\t[-76.322663, 38.722650],\n\t\t\t\t\t\t[-76.322705, 38.722605],\n\t\t\t\t\t\t[-76.322706, 38.722604],\n\t\t\t\t\t\t[-76.322730, 38.722578],\n\t\t\t\t\t\t[-76.322807, 38.722496],\n\t\t\t\t\t\t[-76.322860, 38.722439],\n\t\t\t\t\t\t[-76.322975, 38.722317],\n\t\t\t\t\t\t[-76.323214, 38.722063],\n\t\t\t\t\t\t[-76.323530, 38.721727],\n\t\t\t\t\t\t[-76.326135, 38.718954],\n\t\t\t\t\t\t[-76.327162, 38.717861],\n\t\t\t\t\t\t[-76.328035, 38.716932],\n\t\t\t\t\t\t[-76.328338, 38.716609],\n\t\t\t\t\t\t[-76.330149, 38.714682],\n\t\t\t\t\t\t[-76.331479, 38.713266],\n\t\t\t\t\t\t[-76.332517, 38.709118],\n\t\t\t\t\t\t[-76.333066, 38.706927],\n\t\t\t\t\t\t[-76.333532, 38.705063],\n\t\t\t\t\t\t[-76.333777, 38.704086],\n\t\t\t\t\t\t[-76.334017, 38.703127],\n\t\t\t\t\t\t[-76.333862, 38.702953],\n\t\t\t\t\t\t[-76.332079, 38.700956],\n\t\t\t\t\t\t[-76.321865, 38.689512],\n\t\t\t\t\t\t[-76.321881, 38.689217],\n\t\t\t\t\t\t[-76.321898, 38.688902],\n\t\t\t\t\t\t[-76.321905, 38.688768],\n\t\t\t\t\t\t[-76.321915, 38.688584],\n\t\t\t\t\t\t[-76.322418, 38.679304],\n\t\t\t\t\t\t[-76.338610, 38.672023],\n\t\t\t\t\t\t[-76.340065, 38.671369],\n\t\t\t\t\t\t[-76.340341, 38.671245],\n\t\t\t\t\t\t[-76.343220, 38.676880],\n\t\t\t\t\t\t[-76.343277, 38.676992],\n\t\t\t\t\t\t[-76.343784, 38.677985],\n\t\t\t\t\t\t[-76.344199, 38.678798],\n\t\t\t\t\t\t[-76.347998, 38.686234],\n\t\t\t\t\t\t[-76.345072, 38.703546],\n\t\t\t\t\t\t[-76.344597, 38.706352],\n\t\t\t\t\t\t[-76.340543, 38.730338],\n\t\t\t\t\t\t[-76.340567, 38.731008],\n\t\t\t\t\t\t[-76.340608, 38.732179],\n\t\t\t\t\t\t[-76.340618, 38.732464],\n\t\t\t\t\t\t[-76.340628, 38.732756],\n\t\t\t\t\t\t[-76.340632, 38.732857],\n\t\t\t\t\t\t[-76.340635, 38.732960],\n\t\t\t\t\t\t[-76.340637, 38.733003],\n\t\t\t\t\t\t[-76.340641, 38.733123],\n\t\t\t\t\t\t[-76.340645, 38.733225],\n\t\t\t\t\t\t[-76.340677, 38.734136],\n\t\t\t\t\t\t[-76.340715, 38.735215],\n\t\t\t\t\t\t[-76.340732, 38.735712],\n\t\t\t\t\t\t[-76.340739, 38.735894],\n\t\t\t\t\t\t[-76.340740, 38.735932],\n\t\t\t\t\t\t[-76.341093, 38.745959],\n\t\t\t\t\t\t[-76.341096, 38.746058],\n\t\t\t\t\t\t[-76.341100, 38.746148],\n\t\t\t\t\t\t[-76.341288, 38.751505],\n\t\t\t\t\t\t[-76.341293, 38.751654],\n\t\t\t\t\t\t[-76.341297, 38.751756],\n\t\t\t\t\t\t[-76.341302, 38.751901],\n\t\t\t\t\t\t[-76.334619, 38.772911],\n\t\t\t\t\t\t[-76.333752, 38.773420],\n\t\t\t\t\t\t[-76.329721, 38.775789],\n\t\t\t\t\t\t[-76.323768, 38.779287],\n\t\t\t\t\t\t[-76.322700, 38.780657],\n\t\t\t\t\t\t[-76.312886, 38.793247],\n\t\t\t\t\t\t[-76.310743, 38.795996],\n\t\t\t\t\t\t[-76.310664, 38.796098],\n\t\t\t\t\t\t[-76.310626, 38.796147],\n\t\t\t\t\t\t[-76.310556, 38.796237],\n\t\t\t\t\t\t[-76.310081, 38.796846],\n\t\t\t\t\t\t[-76.308922, 38.813346],\n\t\t\t\t\t\t[-76.308306, 38.814331],\n\t\t\t\t\t\t[-76.308294, 38.814349],\n\t\t\t\t\t\t[-76.308127, 38.814618],\n\t\t\t\t\t\t[-76.307267, 38.815993],\n\t\t\t\t\t\t[-76.301886, 38.824595],\n\t\t\t\t\t\t[-76.300889, 38.826190],\n\t\t\t\t\t\t[-76.300886, 38.826192],\n\t\t\t\t\t\t[-76.298956, 38.827519],\n\t\t\t\t\t\t[-76.297800, 38.828314],\n\t\t\t\t\t\t[-76.296564, 38.828186],\n\t\t\t\t\t\t[-76.296471, 38.828176],\n\t\t\t\t\t\t[-76.296394, 38.828168],\n\t\t\t\t\t\t[-76.296364, 38.828165],\n\t\t\t\t\t\t[-76.296329, 38.828162],\n\t\t\t\t\t\t[-76.296320, 38.828161],\n\t\t\t\t\t\t[-76.296259, 38.828155],\n\t\t\t\t\t\t[-76.295992, 38.828127],\n\t\t\t\t\t\t[-76.295550, 38.828081],\n\t\t\t\t\t\t[-76.295454, 38.828071],\n\t\t\t\t\t\t[-76.295436, 38.828069],\n\t\t\t\t\t\t[-76.293648, 38.827884],\n\t\t\t\t\t\t[-76.292144, 38.827729],\n\t\t\t\t\t\t[-76.288455, 38.827347],\n\t\t\t\t\t\t[-76.284768, 38.828706],\n\t\t\t\t\t\t[-76.277854, 38.831256],\n\t\t\t\t\t\t[-76.277748, 38.831295],\n\t\t\t\t\t\t[-76.277411, 38.831419],\n\t\t\t\t\t\t[-76.277420, 38.831468],\n\t\t\t\t\t\t[-76.278151, 38.835494],\n\t\t\t\t\t\t[-76.278040, 38.835768],\n\t\t\t\t\t\t[-76.274405, 38.844766],\n\t\t\t\t\t\t[-76.271575, 38.851771],\n\t\t\t\t\t\t[-76.267175, 38.851652],\n\t\t\t\t\t\t[-76.265999, 38.851620],\n\t\t\t\t\t\t[-76.264221, 38.851572],\n\t\t\t\t\t\t[-76.265759, 38.847638],\n\t\t\t\t\t\t[-76.265808, 38.847512],\n\t\t\t\t\t\t[-76.265678, 38.847326],\n\t\t\t\t\t\t[-76.262179, 38.842325],\n\t\t\t\t\t\t[-76.261907, 38.841936],\n\t\t\t\t\t\t[-76.261627, 38.841536],\n\t\t\t\t\t\t[-76.257353, 38.835428],\n\t\t\t\t\t\t[-76.255787, 38.833189],\n\t\t\t\t\t\t[-76.255343, 38.832554],\n\t\t\t\t\t\t[-76.255322, 38.832525],\n\t\t\t\t\t\t[-76.250364, 38.825438],\n\t\t\t\t\t\t[-76.250296, 38.825389],\n\t\t\t\t\t\t[-76.245886, 38.822232],\n\t\t\t\t\t\t[-76.238770, 38.819590],\n\t\t\t\t\t\t[-76.229199, 38.816036],\n\t\t\t\t\t\t[-76.228071, 38.815617],\n\t\t\t\t\t\t[-76.221162, 38.813052],\n\t\t\t\t\t\t[-76.219328, 38.812371],\n\t\t\t\t\t\t[-76.198138, 38.814440],\n\t\t\t\t\t\t[-76.197432, 38.815541],\n\t\t\t\t\t\t[-76.196488, 38.817015],\n\t\t\t\t\t\t[-76.196426, 38.817111],\n\t\t\t\t\t\t[-76.195370, 38.818759],\n\t\t\t\t\t\t[-76.193430, 38.821787],\n\t\t\t\t\t\t[-76.193272, 38.822319],\n\t\t\t\t\t\t[-76.193073, 38.822989],\n\t\t\t\t\t\t[-76.193020, 38.823165],\n\t\t\t\t\t\t[-76.192924, 38.823489],\n\t\t\t\t\t\t[-76.192865, 38.823687],\n\t\t\t\t\t\t[-76.192765, 38.824024],\n\t\t\t\t\t\t[-76.192537, 38.824790],\n\t\t\t\t\t\t[-76.191090, 38.829660],\n\t\t\t\t\t\t[-76.191172, 38.829834],\n\t\t\t\t\t\t[-76.192874, 38.833450],\n\t\t\t\t\t\t[-76.192946, 38.833603],\n\t\t\t\t\t\t[-76.192973, 38.833661],\n\t\t\t\t\t\t[-76.197705, 38.843712],\n\t\t\t\t\t\t[-76.197736, 38.843830],\n\t\t\t\t\t\t[-76.199544, 38.850817],\n\t\t\t\t\t\t[-76.103512, 38.882308],\n\t\t\t\t\t\t[-76.096956, 38.944259],\n\t\t\t\t\t\t[-75.949335, 38.918333],\n\t\t\t\t\t\t[-75.944256, 38.916517],\n\t\t\t\t\t\t[-75.943976, 38.914294],\n\t\t\t\t\t\t[-75.948243, 38.914515],\n\t\t\t\t\t\t[-75.948726, 38.912037],\n\t\t\t\t\t\t[-75.943145, 38.907257],\n\t\t\t\t\t\t[-75.943862, 38.906204],\n\t\t\t\t\t\t[-75.948120, 38.904560],\n\t\t\t\t\t\t[-75.948677, 38.902389],\n\t\t\t\t\t\t[-75.944908, 38.900348],\n\t\t\t\t\t\t[-75.944358, 38.897548],\n\t\t\t\t\t\t[-75.945945, 38.893913],\n\t\t\t\t\t\t[-75.948616, 38.892250],\n\t\t\t\t\t\t[-75.948310, 38.891323],\n\t\t\t\t\t\t[-75.944587, 38.890068],\n\t\t\t\t\t\t[-75.940399, 38.885070],\n\t\t\t\t\t\t[-75.941535, 38.884075],\n\t\t\t\t\t\t[-75.945480, 38.884029],\n\t\t\t\t\t\t[-75.949638, 38.884807],\n\t\t\t\t\t\t[-75.950904, 38.884143],\n\t\t\t\t\t\t[-75.951469, 38.880237],\n\t\t\t\t\t\t[-75.948753, 38.878444],\n\t\t\t\t\t\t[-75.943847, 38.879344],\n\t\t\t\t\t\t[-75.941482, 38.881179],\n\t\t\t\t\t\t[-75.939224, 38.881332],\n\t\t\t\t\t\t[-75.937644, 38.879802],\n\t\t\t\t\t\t[-75.937583, 38.877994],\n\t\t\t\t\t\t[-75.938919, 38.876392],\n\t\t\t\t\t\t[-75.943572, 38.876380],\n\t\t\t\t\t\t[-75.944396, 38.875087],\n\t\t\t\t\t\t[-75.943077, 38.870494],\n\t\t\t\t\t\t[-75.941551, 38.868022],\n\t\t\t\t\t\t[-75.939292, 38.866558],\n\t\t\t\t\t\t[-75.934707, 38.867511],\n\t\t\t\t\t\t[-75.932914, 38.866035],\n\t\t\t\t\t\t[-75.930229, 38.861286],\n\t\t\t\t\t\t[-75.924331, 38.860389],\n\t\t\t\t\t\t[-75.922187, 38.857257],\n\t\t\t\t\t\t[-75.922431, 38.856369],\n\t\t\t\t\t\t[-75.922797, 38.854785],\n\t\t\t\t\t\t[-75.928336, 38.852428],\n\t\t\t\t\t\t[-75.930373, 38.850872],\n\t\t\t\t\t\t[-75.929312, 38.849021],\n\t\t\t\t\t\t[-75.926772, 38.847038],\n\t\t\t\t\t\t[-75.919455, 38.846897],\n\t\t\t\t\t\t[-75.918975, 38.846084],\n\t\t\t\t\t\t[-75.919348, 38.845016],\n\t\t\t\t\t\t[-75.928099, 38.841068],\n\t\t\t\t\t\t[-75.927771, 38.838893],\n\t\t\t\t\t\t[-75.919432, 38.835205],\n\t\t\t\t\t\t[-75.915183, 38.834835],\n\t\t\t\t\t\t[-75.913711, 38.832965],\n\t\t\t\t\t\t[-75.912918, 38.829532],\n\t\t\t\t\t\t[-75.904341, 38.826431],\n\t\t\t\t\t\t[-75.901267, 38.824737],\n\t\t\t\t\t\t[-75.901747, 38.822883],\n\t\t\t\t\t\t[-75.905494, 38.821567],\n\t\t\t\t\t\t[-75.906455, 38.819705],\n\t\t\t\t\t\t[-75.903251, 38.816764],\n\t\t\t\t\t\t[-75.896774, 38.815109],\n\t\t\t\t\t\t[-75.903778, 38.806934],\n\t\t\t\t\t\t[-75.911369, 38.806285],\n\t\t\t\t\t\t[-75.920799, 38.802635],\n\t\t\t\t\t\t[-75.927963, 38.799201],\n\t\t\t\t\t\t[-75.932518, 38.796138],\n\t\t\t\t\t\t[-75.937347, 38.787242],\n\t\t\t\t\t\t[-75.949455, 38.778419],\n\t\t\t\t\t\t[-75.954551, 38.777496],\n\t\t\t\t\t\t[-75.966369, 38.779762],\n\t\t\t\t\t\t[-75.968238, 38.777729],\n\t\t\t\t\t\t[-75.967750, 38.774398],\n\t\t\t\t\t\t[-75.976409, 38.765506],\n\t\t\t\t\t\t[-75.979965, 38.763710],\n\t\t\t\t\t\t[-75.993759, 38.759284],\n\t\t\t\t\t\t[-75.996902, 38.757507],\n\t\t\t\t\t\t[-75.998947, 38.755596],\n\t\t\t\t\t\t[-75.999336, 38.752075],\n\t\t\t\t\t\t[-75.994590, 38.741886],\n\t\t\t\t\t\t[-75.995376, 38.736679],\n\t\t\t\t\t\t[-75.999671, 38.734836],\n\t\t\t\t\t\t[-76.007354, 38.736751],\n\t\t\t\t\t\t[-76.009979, 38.736034],\n\t\t\t\t\t\t[-76.013206, 38.733291],\n\t\t\t\t\t\t[-76.015045, 38.728687],\n\t\t\t\t\t\t[-75.945243, 38.674114],\n\t\t\t\t\t\t[-75.991127, 38.592483],\n\t\t\t\t\t\t[-76.023445, 38.573875],\n\t\t\t\t\t\t[-76.152885, 38.631819],\n\t\t\t\t\t\t[-76.147158, 38.636840],\n\t\t\t\t\t\t[-76.147577, 38.637893]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US25011\",\n\t\t\t\t\"STATE\": \"25\",\n\t\t\t\t\"COUNTY\": \"011\",\n\t\t\t\t\"NAME\": \"Franklin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 699.319000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-72.876948, 42.541213],\n\t\t\t\t\t\t[-72.975379, 42.555933],\n\t\t\t\t\t\t[-72.951039, 42.641006],\n\t\t\t\t\t\t[-72.949742, 42.705103],\n\t\t\t\t\t\t[-73.022903, 42.741133],\n\t\t\t\t\t\t[-73.018646, 42.741025],\n\t\t\t\t\t\t[-72.930271, 42.738789],\n\t\t\t\t\t\t[-72.927291, 42.738714],\n\t\t\t\t\t\t[-72.864180, 42.737117],\n\t\t\t\t\t\t[-72.458519, 42.726853],\n\t\t\t\t\t\t[-72.451257, 42.726653],\n\t\t\t\t\t\t[-72.412011, 42.725569],\n\t\t\t\t\t\t[-72.282968, 42.722008],\n\t\t\t\t\t\t[-72.224839, 42.638981],\n\t\t\t\t\t\t[-72.244952, 42.513552],\n\t\t\t\t\t\t[-72.314599, 42.343526],\n\t\t\t\t\t\t[-72.356583, 42.303275],\n\t\t\t\t\t\t[-72.355396, 42.340678],\n\t\t\t\t\t\t[-72.375022, 42.420819],\n\t\t\t\t\t\t[-72.544210, 42.427081],\n\t\t\t\t\t\t[-72.581106, 42.422504],\n\t\t\t\t\t\t[-72.704345, 42.405536],\n\t\t\t\t\t\t[-72.763746, 42.463610],\n\t\t\t\t\t\t[-72.871157, 42.484173],\n\t\t\t\t\t\t[-72.876948, 42.541213]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26009\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"009\",\n\t\t\t\t\"NAME\": \"Antrim\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 475.703000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.332836, 44.812372],\n\t\t\t\t\t\t[-85.442250, 44.859817],\n\t\t\t\t\t\t[-85.425804, 44.881646],\n\t\t\t\t\t\t[-85.423003, 44.895019],\n\t\t\t\t\t\t[-85.406173, 44.911773],\n\t\t\t\t\t\t[-85.395800, 44.931018],\n\t\t\t\t\t\t[-85.378286, 44.998587],\n\t\t\t\t\t\t[-85.381654, 45.018407],\n\t\t\t\t\t\t[-85.380659, 45.046319],\n\t\t\t\t\t\t[-85.377586, 45.055713],\n\t\t\t\t\t\t[-85.366412, 45.069023],\n\t\t\t\t\t\t[-85.366908, 45.116938],\n\t\t\t\t\t\t[-85.372571, 45.126241],\n\t\t\t\t\t\t[-85.376948, 45.142881],\n\t\t\t\t\t\t[-85.380464, 45.180876],\n\t\t\t\t\t\t[-85.386726, 45.189497],\n\t\t\t\t\t\t[-85.387463, 45.207565],\n\t\t\t\t\t\t[-85.222705, 45.205551],\n\t\t\t\t\t\t[-85.223679, 45.117751],\n\t\t\t\t\t\t[-84.857452, 45.116707],\n\t\t\t\t\t\t[-84.847309, 44.858037],\n\t\t\t\t\t\t[-85.291716, 44.859608],\n\t\t\t\t\t\t[-85.332836, 44.812372]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26015\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"015\",\n\t\t\t\t\"NAME\": \"Barry\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 553.092000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.074245, 42.770784],\n\t\t\t\t\t\t[-85.071609, 42.421428],\n\t\t\t\t\t\t[-85.298879, 42.419849],\n\t\t\t\t\t\t[-85.543191, 42.421433],\n\t\t\t\t\t\t[-85.545564, 42.768139],\n\t\t\t\t\t\t[-85.309626, 42.769878],\n\t\t\t\t\t\t[-85.074245, 42.770784]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26023\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"023\",\n\t\t\t\t\"NAME\": \"Branch\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 506.369000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.259847, 42.071851],\n\t\t\t\t\t\t[-84.826491, 42.072468],\n\t\t\t\t\t\t[-84.825130, 41.759991],\n\t\t\t\t\t\t[-84.825196, 41.759990],\n\t\t\t\t\t\t[-84.932484, 41.759691],\n\t\t\t\t\t\t[-84.960860, 41.759438],\n\t\t\t\t\t\t[-84.961562, 41.759552],\n\t\t\t\t\t\t[-84.971551, 41.759527],\n\t\t\t\t\t\t[-84.972803, 41.759366],\n\t\t\t\t\t\t[-85.037817, 41.759801],\n\t\t\t\t\t\t[-85.039436, 41.759985],\n\t\t\t\t\t\t[-85.117267, 41.759700],\n\t\t\t\t\t\t[-85.123102, 41.759743],\n\t\t\t\t\t\t[-85.172230, 41.759618],\n\t\t\t\t\t\t[-85.196637, 41.759735],\n\t\t\t\t\t\t[-85.196774, 41.759735],\n\t\t\t\t\t\t[-85.232835, 41.759839],\n\t\t\t\t\t\t[-85.272216, 41.759999],\n\t\t\t\t\t\t[-85.272951, 41.759911],\n\t\t\t\t\t\t[-85.273713, 41.759770],\n\t\t\t\t\t\t[-85.292099, 41.759962],\n\t\t\t\t\t\t[-85.292178, 41.759963],\n\t\t\t\t\t\t[-85.293626, 42.071553],\n\t\t\t\t\t\t[-85.259847, 42.071851]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26035\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"035\",\n\t\t\t\t\"NAME\": \"Clare\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 564.315000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.608104, 44.160482],\n\t\t\t\t\t\t[-84.608001, 44.158590],\n\t\t\t\t\t\t[-84.606035, 43.815218],\n\t\t\t\t\t\t[-85.088811, 43.813676],\n\t\t\t\t\t\t[-85.087040, 44.164239],\n\t\t\t\t\t\t[-84.851705, 44.161375],\n\t\t\t\t\t\t[-84.608104, 44.160482]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26037\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"037\",\n\t\t\t\t\"NAME\": \"Clinton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 566.408000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.367795, 43.117938],\n\t\t\t\t\t\t[-84.365712, 42.955120],\n\t\t\t\t\t\t[-84.363659, 42.775778],\n\t\t\t\t\t\t[-84.363660, 42.769971],\n\t\t\t\t\t\t[-84.602761, 42.769880],\n\t\t\t\t\t\t[-84.837085, 42.770479],\n\t\t\t\t\t\t[-84.836889, 43.118851],\n\t\t\t\t\t\t[-84.367795, 43.117938]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26045\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"045\",\n\t\t\t\t\"NAME\": \"Eaton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 575.175000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.600403, 42.421984],\n\t\t\t\t\t\t[-84.718493, 42.421520],\n\t\t\t\t\t\t[-85.071609, 42.421428],\n\t\t\t\t\t\t[-85.074245, 42.770784],\n\t\t\t\t\t\t[-84.837085, 42.770479],\n\t\t\t\t\t\t[-84.602761, 42.769880],\n\t\t\t\t\t\t[-84.600403, 42.421984]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26057\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"057\",\n\t\t\t\t\"NAME\": \"Gratiot\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 568.464000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.607540, 43.466006],\n\t\t\t\t\t\t[-84.369876, 43.466044],\n\t\t\t\t\t\t[-84.367891, 43.128452],\n\t\t\t\t\t\t[-84.367893, 43.124671],\n\t\t\t\t\t\t[-84.367863, 43.124456],\n\t\t\t\t\t\t[-84.367795, 43.117938],\n\t\t\t\t\t\t[-84.836889, 43.118851],\n\t\t\t\t\t\t[-84.845962, 43.466158],\n\t\t\t\t\t\t[-84.607540, 43.466006]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26061\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"061\",\n\t\t\t\t\"NAME\": \"Houghton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1009.099000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.450823, 46.939038],\n\t\t\t\t\t\t[-88.451200, 46.938976],\n\t\t\t\t\t\t[-88.552185, 46.938533],\n\t\t\t\t\t\t[-88.551943, 46.851795],\n\t\t\t\t\t\t[-88.678983, 46.851822],\n\t\t\t\t\t\t[-88.679392, 46.420139],\n\t\t\t\t\t\t[-88.991236, 46.419704],\n\t\t\t\t\t\t[-88.989529, 46.680119],\n\t\t\t\t\t\t[-88.864474, 46.679245],\n\t\t\t\t\t\t[-88.863906, 46.765013],\n\t\t\t\t\t\t[-88.932480, 46.764787],\n\t\t\t\t\t\t[-88.933329, 47.032200],\n\t\t\t\t\t\t[-88.925586, 47.040923],\n\t\t\t\t\t\t[-88.924492, 47.042156],\n\t\t\t\t\t\t[-88.923458, 47.043872],\n\t\t\t\t\t\t[-88.914976, 47.057940],\n\t\t\t\t\t\t[-88.914189, 47.059246],\n\t\t\t\t\t\t[-88.908288, 47.074396],\n\t\t\t\t\t\t[-88.903933, 47.085579],\n\t\t\t\t\t\t[-88.903706, 47.086161],\n\t\t\t\t\t\t[-88.899857, 47.089969],\n\t\t\t\t\t\t[-88.890708, 47.099024],\n\t\t\t\t\t\t[-88.890422, 47.099306],\n\t\t\t\t\t\t[-88.890122, 47.099603],\n\t\t\t\t\t\t[-88.889140, 47.100575],\n\t\t\t\t\t\t[-88.885418, 47.102084],\n\t\t\t\t\t\t[-88.885361, 47.102107],\n\t\t\t\t\t\t[-88.872087, 47.107487],\n\t\t\t\t\t\t[-88.855372, 47.114263],\n\t\t\t\t\t\t[-88.855126, 47.114290],\n\t\t\t\t\t\t[-88.854656, 47.114343],\n\t\t\t\t\t\t[-88.848176, 47.115065],\n\t\t\t\t\t\t[-88.826028, 47.132558],\n\t\t\t\t\t\t[-88.825619, 47.132881],\n\t\t\t\t\t\t[-88.825475, 47.132994],\n\t\t\t\t\t\t[-88.816684, 47.139938],\n\t\t\t\t\t\t[-88.816553, 47.140042],\n\t\t\t\t\t\t[-88.815403, 47.140950],\n\t\t\t\t\t\t[-88.815355, 47.140987],\n\t\t\t\t\t\t[-88.814834, 47.141399],\n\t\t\t\t\t\t[-88.813748, 47.141813],\n\t\t\t\t\t\t[-88.798779, 47.147511],\n\t\t\t\t\t\t[-88.789813, 47.150925],\n\t\t\t\t\t\t[-88.784612, 47.150722],\n\t\t\t\t\t\t[-88.783821, 47.150691],\n\t\t\t\t\t\t[-88.779188, 47.150510],\n\t\t\t\t\t\t[-88.778022, 47.150465],\n\t\t\t\t\t\t[-88.764351, 47.155762],\n\t\t\t\t\t\t[-88.750496, 47.167782],\n\t\t\t\t\t\t[-88.746724, 47.171055],\n\t\t\t\t\t\t[-88.746650, 47.171118],\n\t\t\t\t\t\t[-88.729688, 47.185834],\n\t\t\t\t\t\t[-88.728541, 47.186560],\n\t\t\t\t\t\t[-88.728327, 47.186695],\n\t\t\t\t\t\t[-88.712138, 47.196937],\n\t\t\t\t\t\t[-88.702086, 47.203296],\n\t\t\t\t\t\t[-88.702029, 47.203333],\n\t\t\t\t\t\t[-88.700047, 47.204586],\n\t\t\t\t\t\t[-88.699660, 47.204831],\n\t\t\t\t\t\t[-88.698919, 47.205220],\n\t\t\t\t\t\t[-88.698282, 47.205554],\n\t\t\t\t\t\t[-88.676624, 47.216918],\n\t\t\t\t\t\t[-88.674917, 47.217814],\n\t\t\t\t\t\t[-88.673771, 47.218415],\n\t\t\t\t\t\t[-88.673172, 47.218729],\n\t\t\t\t\t\t[-88.672395, 47.219137],\n\t\t\t\t\t\t[-88.666614, 47.221475],\n\t\t\t\t\t\t[-88.657496, 47.225164],\n\t\t\t\t\t\t[-88.656359, 47.225624],\n\t\t\t\t\t\t[-88.648001, 47.226229],\n\t\t\t\t\t\t[-88.642047, 47.226659],\n\t\t\t\t\t\t[-88.640323, 47.226784],\n\t\t\t\t\t\t[-88.633915, 47.228915],\n\t\t\t\t\t\t[-88.625119, 47.231840],\n\t\t\t\t\t\t[-88.623579, 47.232352],\n\t\t\t\t\t\t[-88.623302, 47.232484],\n\t\t\t\t\t\t[-88.618613, 47.234715],\n\t\t\t\t\t\t[-88.609867, 47.238877],\n\t\t\t\t\t\t[-88.609830, 47.238894],\n\t\t\t\t\t\t[-88.608087, 47.239137],\n\t\t\t\t\t\t[-88.598622, 47.240454],\n\t\t\t\t\t\t[-88.585196, 47.242321],\n\t\t\t\t\t\t[-88.584912, 47.242361],\n\t\t\t\t\t\t[-88.584652, 47.242447],\n\t\t\t\t\t\t[-88.573997, 47.245989],\n\t\t\t\t\t\t[-88.573326, 47.246424],\n\t\t\t\t\t\t[-88.573301, 47.246441],\n\t\t\t\t\t\t[-88.571720, 47.247466],\n\t\t\t\t\t\t[-88.526764, 47.276641],\n\t\t\t\t\t\t[-88.518091, 47.282269],\n\t\t\t\t\t\t[-88.515276, 47.284096],\n\t\t\t\t\t\t[-88.514786, 47.284414],\n\t\t\t\t\t\t[-88.512421, 47.285948],\n\t\t\t\t\t\t[-88.298992, 47.286097],\n\t\t\t\t\t\t[-88.298436, 47.199782],\n\t\t\t\t\t\t[-88.227552, 47.199938],\n\t\t\t\t\t\t[-88.228987, 47.199042],\n\t\t\t\t\t\t[-88.229132, 47.198862],\n\t\t\t\t\t\t[-88.235041, 47.191532],\n\t\t\t\t\t\t[-88.236892, 47.189236],\n\t\t\t\t\t\t[-88.237024, 47.188862],\n\t\t\t\t\t\t[-88.240295, 47.179609],\n\t\t\t\t\t\t[-88.242006, 47.174767],\n\t\t\t\t\t\t[-88.242109, 47.172184],\n\t\t\t\t\t\t[-88.242142, 47.171358],\n\t\t\t\t\t\t[-88.242157, 47.170988],\n\t\t\t\t\t\t[-88.242561, 47.160902],\n\t\t\t\t\t\t[-88.242660, 47.158426],\n\t\t\t\t\t\t[-88.242062, 47.157059],\n\t\t\t\t\t\t[-88.239487, 47.151176],\n\t\t\t\t\t\t[-88.239470, 47.151137],\n\t\t\t\t\t\t[-88.238408, 47.150423],\n\t\t\t\t\t\t[-88.236961, 47.149449],\n\t\t\t\t\t\t[-88.236721, 47.149287],\n\t\t\t\t\t\t[-88.236566, 47.149297],\n\t\t\t\t\t\t[-88.234295, 47.149446],\n\t\t\t\t\t\t[-88.231797, 47.149609],\n\t\t\t\t\t\t[-88.232164, 47.145975],\n\t\t\t\t\t\t[-88.239895, 47.139436],\n\t\t\t\t\t\t[-88.247628, 47.135981],\n\t\t\t\t\t\t[-88.249571, 47.136231],\n\t\t\t\t\t\t[-88.249838, 47.137106],\n\t\t\t\t\t\t[-88.250645, 47.139752],\n\t\t\t\t\t\t[-88.250785, 47.140209],\n\t\t\t\t\t\t[-88.250814, 47.140231],\n\t\t\t\t\t\t[-88.253834, 47.142524],\n\t\t\t\t\t\t[-88.254205, 47.142807],\n\t\t\t\t\t\t[-88.254267, 47.142853],\n\t\t\t\t\t\t[-88.255303, 47.143640],\n\t\t\t\t\t\t[-88.255676, 47.143715],\n\t\t\t\t\t\t[-88.262537, 47.145087],\n\t\t\t\t\t\t[-88.262972, 47.145174],\n\t\t\t\t\t\t[-88.263292, 47.145115],\n\t\t\t\t\t\t[-88.272017, 47.143511],\n\t\t\t\t\t\t[-88.281652, 47.138239],\n\t\t\t\t\t\t[-88.281701, 47.138212],\n\t\t\t\t\t\t[-88.281743, 47.138163],\n\t\t\t\t\t\t[-88.288994, 47.129743],\n\t\t\t\t\t\t[-88.289040, 47.129689],\n\t\t\t\t\t\t[-88.289058, 47.129581],\n\t\t\t\t\t\t[-88.289543, 47.126604],\n\t\t\t\t\t\t[-88.288650, 47.125947],\n\t\t\t\t\t\t[-88.288481, 47.125823],\n\t\t\t\t\t\t[-88.287870, 47.125374],\n\t\t\t\t\t\t[-88.287792, 47.124822],\n\t\t\t\t\t\t[-88.287260, 47.121041],\n\t\t\t\t\t\t[-88.287173, 47.120420],\n\t\t\t\t\t\t[-88.287313, 47.119721],\n\t\t\t\t\t\t[-88.287822, 47.117174],\n\t\t\t\t\t\t[-88.287901, 47.116779],\n\t\t\t\t\t\t[-88.287981, 47.116376],\n\t\t\t\t\t\t[-88.288309, 47.114738],\n\t\t\t\t\t\t[-88.288347, 47.114547],\n\t\t\t\t\t\t[-88.288690, 47.113954],\n\t\t\t\t\t\t[-88.288930, 47.113539],\n\t\t\t\t\t\t[-88.289005, 47.113410],\n\t\t\t\t\t\t[-88.289534, 47.112494],\n\t\t\t\t\t\t[-88.290598, 47.110655],\n\t\t\t\t\t\t[-88.290708, 47.110465],\n\t\t\t\t\t\t[-88.291217, 47.109585],\n\t\t\t\t\t\t[-88.291688, 47.108770],\n\t\t\t\t\t\t[-88.294082, 47.104630],\n\t\t\t\t\t\t[-88.296645, 47.100199],\n\t\t\t\t\t\t[-88.297547, 47.098639],\n\t\t\t\t\t\t[-88.297625, 47.098505],\n\t\t\t\t\t\t[-88.297772, 47.098443],\n\t\t\t\t\t\t[-88.313033, 47.091964],\n\t\t\t\t\t\t[-88.315051, 47.091108],\n\t\t\t\t\t\t[-88.333076, 47.083455],\n\t\t\t\t\t\t[-88.337406, 47.081617],\n\t\t\t\t\t\t[-88.340052, 47.080494],\n\t\t\t\t\t\t[-88.344658, 47.079718],\n\t\t\t\t\t\t[-88.346501, 47.079407],\n\t\t\t\t\t\t[-88.346709, 47.079372],\n\t\t\t\t\t\t[-88.347197, 47.078921],\n\t\t\t\t\t\t[-88.349952, 47.076377],\n\t\t\t\t\t\t[-88.353191, 47.069063],\n\t\t\t\t\t\t[-88.353952, 47.058047],\n\t\t\t\t\t\t[-88.354011, 47.057835],\n\t\t\t\t\t\t[-88.356884, 47.047524],\n\t\t\t\t\t\t[-88.357556, 47.045113],\n\t\t\t\t\t\t[-88.357661, 47.044739],\n\t\t\t\t\t\t[-88.358201, 47.042798],\n\t\t\t\t\t\t[-88.358550, 47.041546],\n\t\t\t\t\t\t[-88.358873, 47.040389],\n\t\t\t\t\t\t[-88.359054, 47.039739],\n\t\t\t\t\t\t[-88.359139, 47.039536],\n\t\t\t\t\t\t[-88.367624, 47.019213],\n\t\t\t\t\t\t[-88.368062, 47.018733],\n\t\t\t\t\t\t[-88.368358, 47.018408],\n\t\t\t\t\t\t[-88.373966, 47.012262],\n\t\t\t\t\t\t[-88.374238, 47.012081],\n\t\t\t\t\t\t[-88.379268, 47.008736],\n\t\t\t\t\t\t[-88.384442, 47.005296],\n\t\t\t\t\t\t[-88.385338, 47.004700],\n\t\t\t\t\t\t[-88.385507, 47.004588],\n\t\t\t\t\t\t[-88.385606, 47.004522],\n\t\t\t\t\t\t[-88.386153, 47.003909],\n\t\t\t\t\t\t[-88.386538, 47.003477],\n\t\t\t\t\t\t[-88.387612, 47.002275],\n\t\t\t\t\t\t[-88.388564, 47.001208],\n\t\t\t\t\t\t[-88.389698, 46.999937],\n\t\t\t\t\t\t[-88.404498, 46.983353],\n\t\t\t\t\t\t[-88.405352, 46.982663],\n\t\t\t\t\t\t[-88.406229, 46.981955],\n\t\t\t\t\t\t[-88.410157, 46.978782],\n\t\t\t\t\t\t[-88.410890, 46.978190],\n\t\t\t\t\t\t[-88.411145, 46.977984],\n\t\t\t\t\t\t[-88.416160, 46.977106],\n\t\t\t\t\t\t[-88.416364, 46.977071],\n\t\t\t\t\t\t[-88.443901, 46.972251],\n\t\t\t\t\t\t[-88.448570, 46.946769],\n\t\t\t\t\t\t[-88.450823, 46.939038]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26073\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"073\",\n\t\t\t\t\"NAME\": \"Isabella\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 572.677000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.084996, 43.466190],\n\t\t\t\t\t\t[-85.088811, 43.813676],\n\t\t\t\t\t\t[-84.606035, 43.815218],\n\t\t\t\t\t\t[-84.607540, 43.466006],\n\t\t\t\t\t\t[-84.845962, 43.466158],\n\t\t\t\t\t\t[-85.084996, 43.466190]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26077\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"077\",\n\t\t\t\t\"NAME\": \"Kalamazoo\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 561.658000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.298879, 42.419849],\n\t\t\t\t\t\t[-85.299480, 42.416794],\n\t\t\t\t\t\t[-85.296996, 42.246071],\n\t\t\t\t\t\t[-85.293626, 42.071553],\n\t\t\t\t\t\t[-85.762943, 42.069327],\n\t\t\t\t\t\t[-85.764352, 42.420669],\n\t\t\t\t\t\t[-85.543191, 42.421433],\n\t\t\t\t\t\t[-85.298879, 42.419849]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26083\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"083\",\n\t\t\t\t\"NAME\": \"Keweenaw\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 540.112000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-88.684434, 48.115785],\n\t\t\t\t\t\t\t[-88.675628, 48.120444],\n\t\t\t\t\t\t\t[-88.676395, 48.124876],\n\t\t\t\t\t\t\t[-88.674192, 48.127165],\n\t\t\t\t\t\t\t[-88.656915, 48.139225],\n\t\t\t\t\t\t\t[-88.614026, 48.154797],\n\t\t\t\t\t\t\t[-88.578413, 48.162370],\n\t\t\t\t\t\t\t[-88.547033, 48.174891],\n\t\t\t\t\t\t\t[-88.524753, 48.165291],\n\t\t\t\t\t\t\t[-88.501088, 48.168181],\n\t\t\t\t\t\t\t[-88.491961, 48.175466],\n\t\t\t\t\t\t\t[-88.482039, 48.179915],\n\t\t\t\t\t\t\t[-88.459735, 48.183807],\n\t\t\t\t\t\t\t[-88.447236, 48.182916],\n\t\t\t\t\t\t\t[-88.422601, 48.190975],\n\t\t\t\t\t\t\t[-88.418244, 48.180370],\n\t\t\t\t\t\t\t[-88.419875, 48.170731],\n\t\t\t\t\t\t\t[-88.427373, 48.166764],\n\t\t\t\t\t\t\t[-88.449502, 48.163312],\n\t\t\t\t\t\t\t[-88.459697, 48.158551],\n\t\t\t\t\t\t\t[-88.469573, 48.152879],\n\t\t\t\t\t\t\t[-88.485700, 48.137683],\n\t\t\t\t\t\t\t[-88.511902, 48.121699],\n\t\t\t\t\t\t\t[-88.566938, 48.093719],\n\t\t\t\t\t\t\t[-88.578053, 48.084373],\n\t\t\t\t\t\t\t[-88.578395, 48.078003],\n\t\t\t\t\t\t\t[-88.575869, 48.075166],\n\t\t\t\t\t\t\t[-88.573924, 48.068861],\n\t\t\t\t\t\t\t[-88.575048, 48.064154],\n\t\t\t\t\t\t\t[-88.579784, 48.058669],\n\t\t\t\t\t\t\t[-88.670073, 48.011446],\n\t\t\t\t\t\t\t[-88.718555, 47.995134],\n\t\t\t\t\t\t\t[-88.772357, 47.981126],\n\t\t\t\t\t\t\t[-88.791959, 47.978938],\n\t\t\t\t\t\t\t[-88.832063, 47.965213],\n\t\t\t\t\t\t\t[-88.852923, 47.965322],\n\t\t\t\t\t\t\t[-88.899184, 47.953300],\n\t\t\t\t\t\t\t[-88.918029, 47.945605],\n\t\t\t\t\t\t\t[-88.923573, 47.937976],\n\t\t\t\t\t\t\t[-88.962664, 47.923512],\n\t\t\t\t\t\t\t[-88.968903, 47.909474],\n\t\t\t\t\t\t\t[-88.968903, 47.901675],\n\t\t\t\t\t\t\t[-88.957985, 47.895436],\n\t\t\t\t\t\t\t[-88.942387, 47.895436],\n\t\t\t\t\t\t\t[-88.899698, 47.902445],\n\t\t\t\t\t\t\t[-88.898986, 47.900685],\n\t\t\t\t\t\t\t[-88.911665, 47.891344],\n\t\t\t\t\t\t\t[-88.998939, 47.867490],\n\t\t\t\t\t\t\t[-89.022736, 47.858532],\n\t\t\t\t\t\t\t[-89.044463, 47.855750],\n\t\t\t\t\t\t\t[-89.056412, 47.852598],\n\t\t\t\t\t\t\t[-89.107991, 47.835705],\n\t\t\t\t\t\t\t[-89.124134, 47.828616],\n\t\t\t\t\t\t\t[-89.157738, 47.824015],\n\t\t\t\t\t\t\t[-89.190170, 47.831603],\n\t\t\t\t\t\t\t[-89.192681, 47.833430],\n\t\t\t\t\t\t\t[-89.192207, 47.841060],\n\t\t\t\t\t\t\t[-89.201812, 47.850243],\n\t\t\t\t\t\t\t[-89.234533, 47.851718],\n\t\t\t\t\t\t\t[-89.235552, 47.853774],\n\t\t\t\t\t\t\t[-89.234535, 47.855373],\n\t\t\t\t\t\t\t[-89.228507, 47.858039],\n\t\t\t\t\t\t\t[-89.246774, 47.871016],\n\t\t\t\t\t\t\t[-89.250936, 47.870377],\n\t\t\t\t\t\t\t[-89.255202, 47.876102],\n\t\t\t\t\t\t\t[-89.247127, 47.888503],\n\t\t\t\t\t\t\t[-89.226327, 47.895438],\n\t\t\t\t\t\t\t[-89.220710, 47.900850],\n\t\t\t\t\t\t\t[-89.221332, 47.908069],\n\t\t\t\t\t\t\t[-89.214499, 47.913895],\n\t\t\t\t\t\t\t[-89.179154, 47.935030],\n\t\t\t\t\t\t\t[-89.095207, 47.967922],\n\t\t\t\t\t\t\t[-89.018303, 47.992525],\n\t\t\t\t\t\t\t[-88.994163, 48.002290],\n\t\t\t\t\t\t\t[-88.940886, 48.019590],\n\t\t\t\t\t\t\t[-88.931487, 48.021637],\n\t\t\t\t\t\t\t[-88.927529, 48.019615],\n\t\t\t\t\t\t\t[-88.915032, 48.020681],\n\t\t\t\t\t\t\t[-88.895069, 48.029059],\n\t\t\t\t\t\t\t[-88.896327, 48.031801],\n\t\t\t\t\t\t\t[-88.893701, 48.034770],\n\t\t\t\t\t\t\t[-88.835714, 48.056752],\n\t\t\t\t\t\t\t[-88.816084, 48.057006],\n\t\t\t\t\t\t\t[-88.810461, 48.055247],\n\t\t\t\t\t\t\t[-88.787556, 48.063035],\n\t\t\t\t\t\t\t[-88.772077, 48.070502],\n\t\t\t\t\t\t\t[-88.771830, 48.079457],\n\t\t\t\t\t\t\t[-88.764256, 48.085189],\n\t\t\t\t\t\t\t[-88.744458, 48.092769],\n\t\t\t\t\t\t\t[-88.728198, 48.101914],\n\t\t\t\t\t\t\t[-88.705586, 48.111013],\n\t\t\t\t\t\t\t[-88.695353, 48.110549],\n\t\t\t\t\t\t\t[-88.684434, 48.115785]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-88.512421, 47.285948],\n\t\t\t\t\t\t\t[-88.504898, 47.290831],\n\t\t\t\t\t\t\t[-88.501160, 47.293256],\n\t\t\t\t\t\t\t[-88.500780, 47.293503],\n\t\t\t\t\t\t\t[-88.498756, 47.295256],\n\t\t\t\t\t\t\t[-88.487116, 47.305335],\n\t\t\t\t\t\t\t[-88.478951, 47.312405],\n\t\t\t\t\t\t\t[-88.477733, 47.313460],\n\t\t\t\t\t\t\t[-88.471103, 47.326442],\n\t\t\t\t\t\t\t[-88.470484, 47.327653],\n\t\t\t\t\t\t\t[-88.465888, 47.332670],\n\t\t\t\t\t\t\t[-88.465089, 47.333542],\n\t\t\t\t\t\t\t[-88.459262, 47.339903],\n\t\t\t\t\t\t\t[-88.458952, 47.340142],\n\t\t\t\t\t\t\t[-88.432162, 47.360791],\n\t\t\t\t\t\t\t[-88.431753, 47.361106],\n\t\t\t\t\t\t\t[-88.431446, 47.361343],\n\t\t\t\t\t\t\t[-88.418841, 47.371058],\n\t\t\t\t\t\t\t[-88.418673, 47.371188],\n\t\t\t\t\t\t\t[-88.400224, 47.379551],\n\t\t\t\t\t\t\t[-88.399726, 47.379777],\n\t\t\t\t\t\t\t[-88.394239, 47.382264],\n\t\t\t\t\t\t\t[-88.391440, 47.383533],\n\t\t\t\t\t\t\t[-88.389459, 47.384431],\n\t\t\t\t\t\t\t[-88.378917, 47.387513],\n\t\t\t\t\t\t\t[-88.360313, 47.392951],\n\t\t\t\t\t\t\t[-88.324083, 47.403542],\n\t\t\t\t\t\t\t[-88.303447, 47.412204],\n\t\t\t\t\t\t\t[-88.301214, 47.413451],\n\t\t\t\t\t\t\t[-88.285635, 47.422146],\n\t\t\t\t\t\t\t[-88.285195, 47.422392],\n\t\t\t\t\t\t\t[-88.284060, 47.422579],\n\t\t\t\t\t\t\t[-88.274709, 47.424118],\n\t\t\t\t\t\t\t[-88.239440, 47.429923],\n\t\t\t\t\t\t\t[-88.239161, 47.429969],\n\t\t\t\t\t\t\t[-88.238091, 47.430437],\n\t\t\t\t\t\t\t[-88.228645, 47.434568],\n\t\t\t\t\t\t\t[-88.227446, 47.435093],\n\t\t\t\t\t\t\t[-88.225797, 47.436279],\n\t\t\t\t\t\t\t[-88.218424, 47.441585],\n\t\t\t\t\t\t\t[-88.216977, 47.445493],\n\t\t\t\t\t\t\t[-88.217822, 47.448738],\n\t\t\t\t\t\t\t[-88.217662, 47.448778],\n\t\t\t\t\t\t\t[-88.213141, 47.449898],\n\t\t\t\t\t\t\t[-88.213059, 47.449918],\n\t\t\t\t\t\t\t[-88.207853, 47.451208],\n\t\t\t\t\t\t\t[-88.207239, 47.451360],\n\t\t\t\t\t\t\t[-88.206036, 47.451658],\n\t\t\t\t\t\t\t[-88.181820, 47.457657],\n\t\t\t\t\t\t\t[-88.181763, 47.457661],\n\t\t\t\t\t\t\t[-88.179998, 47.457799],\n\t\t\t\t\t\t\t[-88.169383, 47.458627],\n\t\t\t\t\t\t\t[-88.167703, 47.458758],\n\t\t\t\t\t\t\t[-88.167009, 47.458812],\n\t\t\t\t\t\t\t[-88.150760, 47.460078],\n\t\t\t\t\t\t\t[-88.150571, 47.460093],\n\t\t\t\t\t\t\t[-88.150437, 47.460125],\n\t\t\t\t\t\t\t[-88.143573, 47.461759],\n\t\t\t\t\t\t\t[-88.140537, 47.462482],\n\t\t\t\t\t\t\t[-88.139651, 47.462693],\n\t\t\t\t\t\t\t[-88.137698, 47.462918],\n\t\t\t\t\t\t\t[-88.129274, 47.463889],\n\t\t\t\t\t\t\t[-88.128480, 47.463980],\n\t\t\t\t\t\t\t[-88.090299, 47.468380],\n\t\t\t\t\t\t\t[-88.089966, 47.468418],\n\t\t\t\t\t\t\t[-88.085252, 47.468961],\n\t\t\t\t\t\t\t[-88.084850, 47.468906],\n\t\t\t\t\t\t\t[-88.083580, 47.468733],\n\t\t\t\t\t\t\t[-88.081892, 47.468503],\n\t\t\t\t\t\t\t[-88.081277, 47.468419],\n\t\t\t\t\t\t\t[-88.080916, 47.468370],\n\t\t\t\t\t\t\t[-88.080796, 47.468353],\n\t\t\t\t\t\t\t[-88.080271, 47.468282],\n\t\t\t\t\t\t\t[-88.079183, 47.468133],\n\t\t\t\t\t\t\t[-88.076388, 47.467752],\n\t\t\t\t\t\t\t[-88.074681, 47.467880],\n\t\t\t\t\t\t\t[-88.073982, 47.467933],\n\t\t\t\t\t\t\t[-88.073580, 47.467963],\n\t\t\t\t\t\t\t[-88.067043, 47.468454],\n\t\t\t\t\t\t\t[-88.049326, 47.469785],\n\t\t\t\t\t\t\t[-88.048226, 47.470008],\n\t\t\t\t\t\t\t[-88.048077, 47.474973],\n\t\t\t\t\t\t\t[-88.047857, 47.475002],\n\t\t\t\t\t\t\t[-88.046665, 47.475159],\n\t\t\t\t\t\t\t[-88.040291, 47.475999],\n\t\t\t\t\t\t\t[-88.040242, 47.476002],\n\t\t\t\t\t\t\t[-88.036590, 47.476205],\n\t\t\t\t\t\t\t[-88.031130, 47.476510],\n\t\t\t\t\t\t\t[-88.031089, 47.476512],\n\t\t\t\t\t\t\t[-88.027085, 47.476735],\n\t\t\t\t\t\t\t[-88.021555, 47.477044],\n\t\t\t\t\t\t\t[-88.017268, 47.477283],\n\t\t\t\t\t\t\t[-88.015502, 47.477381],\n\t\t\t\t\t\t\t[-88.014516, 47.477436],\n\t\t\t\t\t\t\t[-88.010830, 47.477642],\n\t\t\t\t\t\t\t[-88.010415, 47.477665],\n\t\t\t\t\t\t\t[-88.009704, 47.477704],\n\t\t\t\t\t\t\t[-87.982227, 47.479236],\n\t\t\t\t\t\t\t[-87.981740, 47.479264],\n\t\t\t\t\t\t\t[-87.978934, 47.479420],\n\t\t\t\t\t\t\t[-87.978121, 47.479409],\n\t\t\t\t\t\t\t[-87.962546, 47.479195],\n\t\t\t\t\t\t\t[-87.959166, 47.479148],\n\t\t\t\t\t\t\t[-87.958042, 47.479133],\n\t\t\t\t\t\t\t[-87.957582, 47.479126],\n\t\t\t\t\t\t\t[-87.956690, 47.479114],\n\t\t\t\t\t\t\t[-87.955374, 47.479096],\n\t\t\t\t\t\t\t[-87.954672, 47.479086],\n\t\t\t\t\t\t\t[-87.954458, 47.479083],\n\t\t\t\t\t\t\t[-87.951912, 47.479048],\n\t\t\t\t\t\t\t[-87.948287, 47.478999],\n\t\t\t\t\t\t\t[-87.929672, 47.478743],\n\t\t\t\t\t\t\t[-87.929269, 47.478737],\n\t\t\t\t\t\t\t[-87.928726, 47.478703],\n\t\t\t\t\t\t\t[-87.928137, 47.478666],\n\t\t\t\t\t\t\t[-87.927548, 47.478629],\n\t\t\t\t\t\t\t[-87.922224, 47.478293],\n\t\t\t\t\t\t\t[-87.921103, 47.478222],\n\t\t\t\t\t\t\t[-87.920321, 47.478173],\n\t\t\t\t\t\t\t[-87.920259, 47.478169],\n\t\t\t\t\t\t\t[-87.902416, 47.477045],\n\t\t\t\t\t\t\t[-87.898036, 47.474872],\n\t\t\t\t\t\t\t[-87.816958, 47.471998],\n\t\t\t\t\t\t\t[-87.801184, 47.473301],\n\t\t\t\t\t\t\t[-87.756739, 47.460717],\n\t\t\t\t\t\t\t[-87.730804, 47.449112],\n\t\t\t\t\t\t\t[-87.715942, 47.439816],\n\t\t\t\t\t\t\t[-87.710471, 47.406200],\n\t\t\t\t\t\t\t[-87.712421, 47.401400],\n\t\t\t\t\t\t\t[-87.721274, 47.401032],\n\t\t\t\t\t\t\t[-87.742417, 47.405823],\n\t\t\t\t\t\t\t[-87.751380, 47.405066],\n\t\t\t\t\t\t\t[-87.759057, 47.403013],\n\t\t\t\t\t\t\t[-87.765019, 47.398652],\n\t\t\t\t\t\t\t[-87.800294, 47.392148],\n\t\t\t\t\t\t\t[-87.815371, 47.384790],\n\t\t\t\t\t\t\t[-87.827115, 47.386160],\n\t\t\t\t\t\t\t[-87.834822, 47.390478],\n\t\t\t\t\t\t\t[-87.848252, 47.394864],\n\t\t\t\t\t\t\t[-87.856700, 47.395387],\n\t\t\t\t\t\t\t[-87.882245, 47.395588],\n\t\t\t\t\t\t\t[-87.941613, 47.390073],\n\t\t\t\t\t\t\t[-87.957058, 47.387260],\n\t\t\t\t\t\t\t[-87.965063, 47.374430],\n\t\t\t\t\t\t\t[-87.965598, 47.368645],\n\t\t\t\t\t\t\t[-87.962567, 47.362543],\n\t\t\t\t\t\t\t[-87.954796, 47.356809],\n\t\t\t\t\t\t\t[-87.947397, 47.355461],\n\t\t\t\t\t\t\t[-87.938787, 47.346777],\n\t\t\t\t\t\t\t[-87.938250, 47.342299],\n\t\t\t\t\t\t\t[-87.943360, 47.335899],\n\t\t\t\t\t\t\t[-87.946352, 47.334254],\n\t\t\t\t\t\t\t[-87.958386, 47.334435],\n\t\t\t\t\t\t\t[-87.968604, 47.332582],\n\t\t\t\t\t\t\t[-87.989133, 47.322633],\n\t\t\t\t\t\t\t[-88.016478, 47.306275],\n\t\t\t\t\t\t\t[-88.054849, 47.298240],\n\t\t\t\t\t\t\t[-88.060090, 47.295796],\n\t\t\t\t\t\t\t[-88.071476, 47.286768],\n\t\t\t\t\t\t\t[-88.096851, 47.261351],\n\t\t\t\t\t\t\t[-88.108833, 47.259131],\n\t\t\t\t\t\t\t[-88.117456, 47.255174],\n\t\t\t\t\t\t\t[-88.131943, 47.239554],\n\t\t\t\t\t\t\t[-88.163059, 47.216278],\n\t\t\t\t\t\t\t[-88.194218, 47.209242],\n\t\t\t\t\t\t\t[-88.204849, 47.210498],\n\t\t\t\t\t\t\t[-88.212361, 47.209423],\n\t\t\t\t\t\t\t[-88.227552, 47.199938],\n\t\t\t\t\t\t\t[-88.298436, 47.199782],\n\t\t\t\t\t\t\t[-88.298992, 47.286097],\n\t\t\t\t\t\t\t[-88.512421, 47.285948]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26085\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"085\",\n\t\t\t\t\"NAME\": \"Lake\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 567.370000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.041988, 44.167091],\n\t\t\t\t\t\t[-85.821186, 44.164197],\n\t\t\t\t\t\t[-85.819811, 44.164301],\n\t\t\t\t\t\t[-85.564554, 44.164893],\n\t\t\t\t\t\t[-85.562439, 43.815634],\n\t\t\t\t\t\t[-86.037884, 43.815611],\n\t\t\t\t\t\t[-86.038948, 43.818977],\n\t\t\t\t\t\t[-86.041988, 44.167091]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26091\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"091\",\n\t\t\t\t\"NAME\": \"Lenawee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 749.555000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.880539, 41.720081],\n\t\t\t\t\t\t[-84.360419, 41.706925],\n\t\t\t\t\t\t[-84.363297, 42.073456],\n\t\t\t\t\t\t[-84.131963, 42.071577],\n\t\t\t\t\t\t[-83.773922, 42.082430],\n\t\t\t\t\t\t[-83.763155, 41.723910],\n\t\t\t\t\t\t[-83.880387, 41.720086],\n\t\t\t\t\t\t[-83.880539, 41.720081]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26097\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"097\",\n\t\t\t\t\"NAME\": \"Mackinac\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1021.569000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-84.593232, 45.817389],\n\t\t\t\t\t\t\t[-84.594241, 45.818776],\n\t\t\t\t\t\t\t[-84.597043, 45.822629],\n\t\t\t\t\t\t\t[-84.611840, 45.833429],\n\t\t\t\t\t\t\t[-84.611893, 45.833487],\n\t\t\t\t\t\t\t[-84.612845, 45.834528],\n\t\t\t\t\t\t\t[-84.623863, 45.846579],\n\t\t\t\t\t\t\t[-84.629239, 45.850014],\n\t\t\t\t\t\t\t[-84.639700, 45.852624],\n\t\t\t\t\t\t\t[-84.650783, 45.859210],\n\t\t\t\t\t\t\t[-84.651336, 45.862844],\n\t\t\t\t\t\t\t[-84.646876, 45.884642],\n\t\t\t\t\t\t\t[-84.641804, 45.885486],\n\t\t\t\t\t\t\t[-84.629437, 45.882578],\n\t\t\t\t\t\t\t[-84.622515, 45.877530],\n\t\t\t\t\t\t\t[-84.608200, 45.861631],\n\t\t\t\t\t\t\t[-84.602922, 45.851640],\n\t\t\t\t\t\t\t[-84.589272, 45.825795],\n\t\t\t\t\t\t\t[-84.578328, 45.820092],\n\t\t\t\t\t\t\t[-84.538395, 45.807843],\n\t\t\t\t\t\t\t[-84.514441, 45.810120],\n\t\t\t\t\t\t\t[-84.492951, 45.805343],\n\t\t\t\t\t\t\t[-84.432472, 45.786732],\n\t\t\t\t\t\t\t[-84.426724, 45.788194],\n\t\t\t\t\t\t\t[-84.421267, 45.792694],\n\t\t\t\t\t\t\t[-84.419696, 45.799823],\n\t\t\t\t\t\t\t[-84.421590, 45.805651],\n\t\t\t\t\t\t\t[-84.419335, 45.806747],\n\t\t\t\t\t\t\t[-84.410910, 45.797217],\n\t\t\t\t\t\t\t[-84.403208, 45.784394],\n\t\t\t\t\t\t\t[-84.356020, 45.771895],\n\t\t\t\t\t\t\t[-84.356312, 45.769495],\n\t\t\t\t\t\t\t[-84.370241, 45.756190],\n\t\t\t\t\t\t\t[-84.372248, 45.745784],\n\t\t\t\t\t\t\t[-84.394292, 45.735301],\n\t\t\t\t\t\t\t[-84.395600, 45.732925],\n\t\t\t\t\t\t\t[-84.394038, 45.727623],\n\t\t\t\t\t\t\t[-84.405852, 45.722417],\n\t\t\t\t\t\t\t[-84.418902, 45.721712],\n\t\t\t\t\t\t\t[-84.430026, 45.726307],\n\t\t\t\t\t\t\t[-84.451040, 45.727952],\n\t\t\t\t\t\t\t[-84.469183, 45.732246],\n\t\t\t\t\t\t\t[-84.484128, 45.730710],\n\t\t\t\t\t\t\t[-84.500892, 45.737259],\n\t\t\t\t\t\t\t[-84.507476, 45.744644],\n\t\t\t\t\t\t\t[-84.509301, 45.754336],\n\t\t\t\t\t\t\t[-84.525060, 45.764168],\n\t\t\t\t\t\t\t[-84.549902, 45.789859],\n\t\t\t\t\t\t\t[-84.561562, 45.796213],\n\t\t\t\t\t\t\t[-84.581950, 45.802633],\n\t\t\t\t\t\t\t[-84.587572, 45.806700],\n\t\t\t\t\t\t\t[-84.590198, 45.813217],\n\t\t\t\t\t\t\t[-84.593232, 45.817389]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-84.114284, 45.978322],\n\t\t\t\t\t\t\t[-84.140461, 45.975348],\n\t\t\t\t\t\t\t[-84.140816, 45.975308],\n\t\t\t\t\t\t\t[-84.169368, 45.966919],\n\t\t\t\t\t\t\t[-84.172250, 45.966072],\n\t\t\t\t\t\t\t[-84.174763, 45.967414],\n\t\t\t\t\t\t\t[-84.175244, 45.967671],\n\t\t\t\t\t\t\t[-84.178060, 45.969175],\n\t\t\t\t\t\t\t[-84.203135, 45.968516],\n\t\t\t\t\t\t\t[-84.213885, 45.968233],\n\t\t\t\t\t\t\t[-84.218951, 45.968100],\n\t\t\t\t\t\t\t[-84.238174, 45.967595],\n\t\t\t\t\t\t\t[-84.253993, 45.956727],\n\t\t\t\t\t\t\t[-84.254952, 45.956068],\n\t\t\t\t\t\t\t[-84.261300, 45.956083],\n\t\t\t\t\t\t\t[-84.261858, 45.956084],\n\t\t\t\t\t\t\t[-84.266673, 45.956096],\n\t\t\t\t\t\t\t[-84.281663, 45.956132],\n\t\t\t\t\t\t\t[-84.317422, 45.956217],\n\t\t\t\t\t\t\t[-84.319565, 45.956222],\n\t\t\t\t\t\t\t[-84.320017, 45.956223],\n\t\t\t\t\t\t\t[-84.320494, 45.956224],\n\t\t\t\t\t\t\t[-84.324647, 45.956234],\n\t\t\t\t\t\t\t[-84.325115, 45.956235],\n\t\t\t\t\t\t\t[-84.325787, 45.956237],\n\t\t\t\t\t\t\t[-84.326413, 45.956238],\n\t\t\t\t\t\t\t[-84.327177, 45.956240],\n\t\t\t\t\t\t\t[-84.330021, 45.956247],\n\t\t\t\t\t\t\t[-84.330346, 45.956043],\n\t\t\t\t\t\t\t[-84.331572, 45.955274],\n\t\t\t\t\t\t\t[-84.345451, 45.946569],\n\t\t\t\t\t\t\t[-84.353259, 45.941671],\n\t\t\t\t\t\t\t[-84.353272, 45.941663],\n\t\t\t\t\t\t\t[-84.353714, 45.941478],\n\t\t\t\t\t\t\t[-84.357525, 45.939881],\n\t\t\t\t\t\t\t[-84.376429, 45.931962],\n\t\t\t\t\t\t\t[-84.376431, 45.931963],\n\t\t\t\t\t\t\t[-84.387383, 45.937497],\n\t\t\t\t\t\t\t[-84.391464, 45.939560],\n\t\t\t\t\t\t\t[-84.398007, 45.942866],\n\t\t\t\t\t\t\t[-84.398323, 45.943026],\n\t\t\t\t\t\t\t[-84.398540, 45.943136],\n\t\t\t\t\t\t\t[-84.399134, 45.943436],\n\t\t\t\t\t\t\t[-84.399460, 45.943600],\n\t\t\t\t\t\t\t[-84.399582, 45.943662],\n\t\t\t\t\t\t\t[-84.411212, 45.949539],\n\t\t\t\t\t\t\t[-84.428239, 45.958144],\n\t\t\t\t\t\t\t[-84.428689, 45.958371],\n\t\t\t\t\t\t\t[-84.436454, 45.971722],\n\t\t\t\t\t\t\t[-84.436574, 45.971930],\n\t\t\t\t\t\t\t[-84.437633, 45.973750],\n\t\t\t\t\t\t\t[-84.443086, 45.977825],\n\t\t\t\t\t\t\t[-84.443138, 45.977863],\n\t\t\t\t\t\t\t[-84.443140, 45.977862],\n\t\t\t\t\t\t\t[-84.443336, 45.977775],\n\t\t\t\t\t\t\t[-84.459956, 45.970343],\n\t\t\t\t\t\t\t[-84.463128, 45.968925],\n\t\t\t\t\t\t\t[-84.473694, 45.974321],\n\t\t\t\t\t\t\t[-84.478576, 45.976814],\n\t\t\t\t\t\t\t[-84.480436, 45.977764],\n\t\t\t\t\t\t\t[-84.480800, 45.978385],\n\t\t\t\t\t\t\t[-84.482563, 45.981391],\n\t\t\t\t\t\t\t[-84.483062, 45.982242],\n\t\t\t\t\t\t\t[-84.482506, 45.985109],\n\t\t\t\t\t\t\t[-84.482442, 45.985441],\n\t\t\t\t\t\t\t[-84.482773, 45.986035],\n\t\t\t\t\t\t\t[-84.484009, 45.988250],\n\t\t\t\t\t\t\t[-84.485625, 45.988453],\n\t\t\t\t\t\t\t[-84.488536, 45.988820],\n\t\t\t\t\t\t\t[-84.507201, 45.991169],\n\t\t\t\t\t\t\t[-84.514123, 45.987242],\n\t\t\t\t\t\t\t[-84.514071, 45.971292],\n\t\t\t\t\t\t\t[-84.525052, 45.968578],\n\t\t\t\t\t\t\t[-84.532392, 45.969448],\n\t\t\t\t\t\t\t[-84.534422, 45.972762],\n\t\t\t\t\t\t\t[-84.534648, 45.978132],\n\t\t\t\t\t\t\t[-84.530444, 45.991385],\n\t\t\t\t\t\t\t[-84.533426, 46.005720],\n\t\t\t\t\t\t\t[-84.540995, 46.019501],\n\t\t\t\t\t\t\t[-84.544405, 46.022860],\n\t\t\t\t\t\t\t[-84.563891, 46.032459],\n\t\t\t\t\t\t\t[-84.581081, 46.031041],\n\t\t\t\t\t\t\t[-84.586592, 46.026584],\n\t\t\t\t\t\t\t[-84.609063, 46.026418],\n\t\t\t\t\t\t\t[-84.647609, 46.049704],\n\t\t\t\t\t\t\t[-84.656567, 46.052654],\n\t\t\t\t\t\t\t[-84.666710, 46.050486],\n\t\t\t\t\t\t\t[-84.675835, 46.046009],\n\t\t\t\t\t\t\t[-84.687322, 46.034880],\n\t\t\t\t\t\t\t[-84.692735, 46.027019],\n\t\t\t\t\t\t\t[-84.692700, 46.016963],\n\t\t\t\t\t\t\t[-84.686269, 45.979144],\n\t\t\t\t\t\t\t[-84.684368, 45.977499],\n\t\t\t\t\t\t\t[-84.685254, 45.973454],\n\t\t\t\t\t\t\t[-84.687712, 45.971260],\n\t\t\t\t\t\t\t[-84.703948, 45.970901],\n\t\t\t\t\t\t\t[-84.723039, 45.967279],\n\t\t\t\t\t\t\t[-84.730179, 45.961198],\n\t\t\t\t\t\t\t[-84.738849, 45.945792],\n\t\t\t\t\t\t\t[-84.739370, 45.941816],\n\t\t\t\t\t\t\t[-84.733041, 45.932837],\n\t\t\t\t\t\t\t[-84.718955, 45.927449],\n\t\t\t\t\t\t\t[-84.713614, 45.920366],\n\t\t\t\t\t\t\t[-84.713251, 45.916047],\n\t\t\t\t\t\t\t[-84.734002, 45.907026],\n\t\t\t\t\t\t\t[-84.730252, 45.897267],\n\t\t\t\t\t\t\t[-84.729482, 45.895263],\n\t\t\t\t\t\t\t[-84.721277, 45.873911],\n\t\t\t\t\t\t\t[-84.721276, 45.873908],\n\t\t\t\t\t\t\t[-84.715501, 45.865962],\n\t\t\t\t\t\t\t[-84.715481, 45.865934],\n\t\t\t\t\t\t\t[-84.715365, 45.865830],\n\t\t\t\t\t\t\t[-84.709727, 45.860766],\n\t\t\t\t\t\t\t[-84.702122, 45.853935],\n\t\t\t\t\t\t\t[-84.701594, 45.853461],\n\t\t\t\t\t\t\t[-84.701183, 45.853092],\n\t\t\t\t\t\t\t[-84.702256, 45.850557],\n\t\t\t\t\t\t\t[-84.702295, 45.850464],\n\t\t\t\t\t\t\t[-84.704647, 45.849425],\n\t\t\t\t\t\t\t[-84.705036, 45.849253],\n\t\t\t\t\t\t\t[-84.705923, 45.848861],\n\t\t\t\t\t\t\t[-84.705978, 45.848837],\n\t\t\t\t\t\t\t[-84.706383, 45.848658],\n\t\t\t\t\t\t\t[-84.707676, 45.848609],\n\t\t\t\t\t\t\t[-84.709261, 45.848548],\n\t\t\t\t\t\t\t[-84.720609, 45.848116],\n\t\t\t\t\t\t\t[-84.720836, 45.848107],\n\t\t\t\t\t\t\t[-84.721011, 45.847972],\n\t\t\t\t\t\t\t[-84.721468, 45.847620],\n\t\t\t\t\t\t\t[-84.722764, 45.846621],\n\t\t\t\t\t\t\t[-84.723005, 45.845845],\n\t\t\t\t\t\t\t[-84.723552, 45.844080],\n\t\t\t\t\t\t\t[-84.725734, 45.837045],\n\t\t\t\t\t\t\t[-84.726921, 45.836964],\n\t\t\t\t\t\t\t[-84.746985, 45.835597],\n\t\t\t\t\t\t\t[-84.747033, 45.835621],\n\t\t\t\t\t\t\t[-84.751507, 45.837878],\n\t\t\t\t\t\t\t[-84.754672, 45.839475],\n\t\t\t\t\t\t\t[-84.758333, 45.841322],\n\t\t\t\t\t\t\t[-84.773761, 45.849105],\n\t\t\t\t\t\t\t[-84.775400, 45.849932],\n\t\t\t\t\t\t\t[-84.792763, 45.858691],\n\t\t\t\t\t\t\t[-84.820557, 45.868293],\n\t\t\t\t\t\t\t[-84.828996, 45.871209],\n\t\t\t\t\t\t\t[-84.831396, 45.872038],\n\t\t\t\t\t\t\t[-84.831947, 45.872776],\n\t\t\t\t\t\t\t[-84.834213, 45.875810],\n\t\t\t\t\t\t\t[-84.834236, 45.875841],\n\t\t\t\t\t\t\t[-84.835147, 45.877060],\n\t\t\t\t\t\t\t[-84.838282, 45.881258],\n\t\t\t\t\t\t\t[-84.838427, 45.881452],\n\t\t\t\t\t\t\t[-84.838472, 45.881512],\n\t\t\t\t\t\t\t[-84.838228, 45.883685],\n\t\t\t\t\t\t\t[-84.837841, 45.887123],\n\t\t\t\t\t\t\t[-84.837717, 45.888226],\n\t\t\t\t\t\t\t[-84.837624, 45.889054],\n\t\t\t\t\t\t\t[-84.837635, 45.889075],\n\t\t\t\t\t\t\t[-84.839639, 45.893042],\n\t\t\t\t\t\t\t[-84.840666, 45.895074],\n\t\t\t\t\t\t\t[-84.842147, 45.898005],\n\t\t\t\t\t\t\t[-84.842243, 45.898194],\n\t\t\t\t\t\t\t[-84.843087, 45.898346],\n\t\t\t\t\t\t\t[-84.844615, 45.898620],\n\t\t\t\t\t\t\t[-84.846035, 45.898875],\n\t\t\t\t\t\t\t[-84.850592, 45.899694],\n\t\t\t\t\t\t\t[-84.852916, 45.900111],\n\t\t\t\t\t\t\t[-84.853303, 45.900296],\n\t\t\t\t\t\t\t[-84.855982, 45.901574],\n\t\t\t\t\t\t\t[-84.859025, 45.903026],\n\t\t\t\t\t\t\t[-84.860544, 45.903751],\n\t\t\t\t\t\t\t[-84.861494, 45.904204],\n\t\t\t\t\t\t\t[-84.867851, 45.907237],\n\t\t\t\t\t\t\t[-84.870355, 45.908432],\n\t\t\t\t\t\t\t[-84.873254, 45.909815],\n\t\t\t\t\t\t\t[-84.873273, 45.909832],\n\t\t\t\t\t\t\t[-84.877253, 45.913480],\n\t\t\t\t\t\t\t[-84.878969, 45.915053],\n\t\t\t\t\t\t\t[-84.879507, 45.915546],\n\t\t\t\t\t\t\t[-84.879835, 45.915847],\n\t\t\t\t\t\t\t[-84.902572, 45.923557],\n\t\t\t\t\t\t\t[-84.902913, 45.923673],\n\t\t\t\t\t\t\t[-84.917288, 45.930576],\n\t\t\t\t\t\t\t[-84.917484, 45.930670],\n\t\t\t\t\t\t\t[-84.936565, 45.955217],\n\t\t\t\t\t\t\t[-84.936953, 45.955716],\n\t\t\t\t\t\t\t[-84.937134, 45.955949],\n\t\t\t\t\t\t\t[-84.971232, 45.984208],\n\t\t\t\t\t\t\t[-84.973556, 45.986134],\n\t\t\t\t\t\t\t[-84.974668, 45.986874],\n\t\t\t\t\t\t\t[-84.974714, 45.986905],\n\t\t\t\t\t\t\t[-84.992511, 45.998751],\n\t\t\t\t\t\t\t[-85.003597, 46.006130],\n\t\t\t\t\t\t\t[-85.010208, 46.009084],\n\t\t\t\t\t\t\t[-85.010941, 46.009412],\n\t\t\t\t\t\t\t[-85.013990, 46.010774],\n\t\t\t\t\t\t\t[-85.020951, 46.012845],\n\t\t\t\t\t\t\t[-85.047028, 46.020603],\n\t\t\t\t\t\t\t[-85.047974, 46.020885],\n\t\t\t\t\t\t\t[-85.048972, 46.021182],\n\t\t\t\t\t\t\t[-85.054297, 46.022766],\n\t\t\t\t\t\t\t[-85.055581, 46.023148],\n\t\t\t\t\t\t\t[-85.081934, 46.027295],\n\t\t\t\t\t\t\t[-85.088345, 46.028304],\n\t\t\t\t\t\t\t[-85.088818, 46.028378],\n\t\t\t\t\t\t\t[-85.102862, 46.032477],\n\t\t\t\t\t\t\t[-85.102899, 46.032488],\n\t\t\t\t\t\t\t[-85.105148, 46.033598],\n\t\t\t\t\t\t\t[-85.106684, 46.034356],\n\t\t\t\t\t\t\t[-85.113601, 46.037769],\n\t\t\t\t\t\t\t[-85.124796, 46.043294],\n\t\t\t\t\t\t\t[-85.125243, 46.043515],\n\t\t\t\t\t\t\t[-85.127046, 46.044404],\n\t\t\t\t\t\t\t[-85.127202, 46.044481],\n\t\t\t\t\t\t\t[-85.130433, 46.046076],\n\t\t\t\t\t\t\t[-85.133704, 46.047184],\n\t\t\t\t\t\t\t[-85.137650, 46.048522],\n\t\t\t\t\t\t\t[-85.139572, 46.049173],\n\t\t\t\t\t\t\t[-85.140835, 46.049601],\n\t\t\t\t\t\t\t[-85.142456, 46.049764],\n\t\t\t\t\t\t\t[-85.145160, 46.050035],\n\t\t\t\t\t\t\t[-85.147103, 46.050230],\n\t\t\t\t\t\t\t[-85.151738, 46.050696],\n\t\t\t\t\t\t\t[-85.151825, 46.050705],\n\t\t\t\t\t\t\t[-85.152027, 46.050725],\n\t\t\t\t\t\t\t[-85.190630, 46.047622],\n\t\t\t\t\t\t\t[-85.194724, 46.045992],\n\t\t\t\t\t\t\t[-85.195201, 46.045802],\n\t\t\t\t\t\t\t[-85.197523, 46.044878],\n\t\t\t\t\t\t\t[-85.210834, 46.053301],\n\t\t\t\t\t\t\t[-85.214657, 46.055719],\n\t\t\t\t\t\t\t[-85.217705, 46.057648],\n\t\t\t\t\t\t\t[-85.220289, 46.059283],\n\t\t\t\t\t\t\t[-85.221206, 46.059864],\n\t\t\t\t\t\t\t[-85.222416, 46.060629],\n\t\t\t\t\t\t\t[-85.222511, 46.060689],\n\t\t\t\t\t\t\t[-85.222959, 46.060741],\n\t\t\t\t\t\t\t[-85.225052, 46.060984],\n\t\t\t\t\t\t\t[-85.248414, 46.063694],\n\t\t\t\t\t\t\t[-85.255375, 46.064502],\n\t\t\t\t\t\t\t[-85.266385, 46.065779],\n\t\t\t\t\t\t\t[-85.268308, 46.066365],\n\t\t\t\t\t\t\t[-85.278345, 46.069426],\n\t\t\t\t\t\t\t[-85.287693, 46.072276],\n\t\t\t\t\t\t\t[-85.287936, 46.072398],\n\t\t\t\t\t\t\t[-85.290046, 46.073456],\n\t\t\t\t\t\t\t[-85.295321, 46.076103],\n\t\t\t\t\t\t\t[-85.304238, 46.080576],\n\t\t\t\t\t\t\t[-85.310613, 46.083773],\n\t\t\t\t\t\t\t[-85.316264, 46.086608],\n\t\t\t\t\t\t\t[-85.335466, 46.092459],\n\t\t\t\t\t\t\t[-85.335911, 46.092595],\n\t\t\t\t\t\t\t[-85.336280, 46.092586],\n\t\t\t\t\t\t\t[-85.356100, 46.092089],\n\t\t\t\t\t\t\t[-85.356214, 46.092086],\n\t\t\t\t\t\t\t[-85.356339, 46.092022],\n\t\t\t\t\t\t\t[-85.366622, 46.086778],\n\t\t\t\t\t\t\t[-85.367158, 46.086606],\n\t\t\t\t\t\t\t[-85.381263, 46.082086],\n\t\t\t\t\t\t\t[-85.381394, 46.082044],\n\t\t\t\t\t\t\t[-85.382312, 46.083035],\n\t\t\t\t\t\t\t[-85.382781, 46.083540],\n\t\t\t\t\t\t\t[-85.382927, 46.083698],\n\t\t\t\t\t\t\t[-85.390047, 46.091381],\n\t\t\t\t\t\t\t[-85.393832, 46.095465],\n\t\t\t\t\t\t\t[-85.404194, 46.098859],\n\t\t\t\t\t\t\t[-85.409463, 46.100585],\n\t\t\t\t\t\t\t[-85.412064, 46.101437],\n\t\t\t\t\t\t\t[-85.426916, 46.101964],\n\t\t\t\t\t\t\t[-85.429210, 46.101021],\n\t\t\t\t\t\t\t[-85.429533, 46.100888],\n\t\t\t\t\t\t\t[-85.432064, 46.099848],\n\t\t\t\t\t\t\t[-85.437352, 46.097675],\n\t\t\t\t\t\t\t[-85.437768, 46.097504],\n\t\t\t\t\t\t\t[-85.441570, 46.095942],\n\t\t\t\t\t\t\t[-85.441879, 46.095815],\n\t\t\t\t\t\t\t[-85.441932, 46.095793],\n\t\t\t\t\t\t\t[-85.441934, 46.095783],\n\t\t\t\t\t\t\t[-85.442112, 46.094867],\n\t\t\t\t\t\t\t[-85.442293, 46.093941],\n\t\t\t\t\t\t\t[-85.442255, 46.093916],\n\t\t\t\t\t\t\t[-85.440908, 46.093053],\n\t\t\t\t\t\t\t[-85.440191, 46.092593],\n\t\t\t\t\t\t\t[-85.445835, 46.086426],\n\t\t\t\t\t\t\t[-85.445976, 46.086272],\n\t\t\t\t\t\t\t[-85.446990, 46.085164],\n\t\t\t\t\t\t\t[-85.453150, 46.087219],\n\t\t\t\t\t\t\t[-85.466828, 46.091783],\n\t\t\t\t\t\t\t[-85.468899, 46.092474],\n\t\t\t\t\t\t\t[-85.476097, 46.094876],\n\t\t\t\t\t\t\t[-85.480315, 46.096283],\n\t\t\t\t\t\t\t[-85.480603, 46.096379],\n\t\t\t\t\t\t\t[-85.480720, 46.096382],\n\t\t\t\t\t\t\t[-85.486316, 46.096543],\n\t\t\t\t\t\t\t[-85.499422, 46.096920],\n\t\t\t\t\t\t\t[-85.500100, 46.096940],\n\t\t\t\t\t\t\t[-85.500240, 46.096915],\n\t\t\t\t\t\t\t[-85.512696, 46.094727],\n\t\t\t\t\t\t\t[-85.521424, 46.091314],\n\t\t\t\t\t\t\t[-85.521570, 46.091257],\n\t\t\t\t\t\t\t[-85.521636, 46.091217],\n\t\t\t\t\t\t\t[-85.528403, 46.087121],\n\t\t\t\t\t\t\t[-85.528947, 46.086791],\n\t\t\t\t\t\t\t[-85.529058, 46.086724],\n\t\t\t\t\t\t\t[-85.533341, 46.084131],\n\t\t\t\t\t\t\t[-85.539479, 46.080416],\n\t\t\t\t\t\t\t[-85.540858, 46.079581],\n\t\t\t\t\t\t\t[-85.542974, 46.077926],\n\t\t\t\t\t\t\t[-85.545950, 46.075598],\n\t\t\t\t\t\t\t[-85.561097, 46.063751],\n\t\t\t\t\t\t\t[-85.563567, 46.061820],\n\t\t\t\t\t\t\t[-85.603785, 46.030363],\n\t\t\t\t\t\t\t[-85.615661, 46.011680],\n\t\t\t\t\t\t\t[-85.617577, 46.008665],\n\t\t\t\t\t\t\t[-85.617709, 46.008458],\n\t\t\t\t\t\t\t[-85.625118, 46.002515],\n\t\t\t\t\t\t\t[-85.628293, 45.999968],\n\t\t\t\t\t\t\t[-85.628998, 45.999403],\n\t\t\t\t\t\t\t[-85.629330, 45.999136],\n\t\t\t\t\t\t\t[-85.646279, 45.985541],\n\t\t\t\t\t\t\t[-85.646359, 45.985477],\n\t\t\t\t\t\t\t[-85.647430, 45.984619],\n\t\t\t\t\t\t\t[-85.647554, 45.984519],\n\t\t\t\t\t\t\t[-85.648581, 45.983695],\n\t\t\t\t\t\t\t[-85.648942, 45.983103],\n\t\t\t\t\t\t\t[-85.650434, 45.980656],\n\t\t\t\t\t\t\t[-85.650942, 45.979824],\n\t\t\t\t\t\t\t[-85.654686, 45.973686],\n\t\t\t\t\t\t\t[-85.654738, 45.973648],\n\t\t\t\t\t\t\t[-85.663966, 45.967013],\n\t\t\t\t\t\t\t[-85.664609, 45.966880],\n\t\t\t\t\t\t\t[-85.688149, 45.962025],\n\t\t\t\t\t\t\t[-85.697203, 45.960158],\n\t\t\t\t\t\t\t[-85.697609, 45.960237],\n\t\t\t\t\t\t\t[-85.701627, 45.961017],\n\t\t\t\t\t\t\t[-85.704237, 45.961524],\n\t\t\t\t\t\t\t[-85.704951, 45.961662],\n\t\t\t\t\t\t\t[-85.706548, 45.961973],\n\t\t\t\t\t\t\t[-85.716228, 45.963852],\n\t\t\t\t\t\t\t[-85.724246, 45.965409],\n\t\t\t\t\t\t\t[-85.725153, 45.965398],\n\t\t\t\t\t\t\t[-85.731776, 45.965317],\n\t\t\t\t\t\t\t[-85.743530, 45.965174],\n\t\t\t\t\t\t\t[-85.743618, 45.965173],\n\t\t\t\t\t\t\t[-85.760165, 45.968914],\n\t\t\t\t\t\t\t[-85.770938, 45.971349],\n\t\t\t\t\t\t\t[-85.774055, 45.972337],\n\t\t\t\t\t\t\t[-85.790279, 45.977480],\n\t\t\t\t\t\t\t[-85.790639, 45.977594],\n\t\t\t\t\t\t\t[-85.791841, 45.977745],\n\t\t\t\t\t\t\t[-85.809200, 45.979931],\n\t\t\t\t\t\t\t[-85.810442, 45.980087],\n\t\t\t\t\t\t\t[-85.811054, 45.980032],\n\t\t\t\t\t\t\t[-85.817066, 45.979491],\n\t\t\t\t\t\t\t[-85.817558, 45.979447],\n\t\t\t\t\t\t\t[-85.818006, 45.979276],\n\t\t\t\t\t\t\t[-85.820721, 45.978239],\n\t\t\t\t\t\t\t[-85.825819, 45.976292],\n\t\t\t\t\t\t\t[-85.826034, 45.976021],\n\t\t\t\t\t\t\t[-85.826278, 45.975714],\n\t\t\t\t\t\t\t[-85.829780, 45.971300],\n\t\t\t\t\t\t\t[-85.832261, 45.968172],\n\t\t\t\t\t\t\t[-85.832603, 45.967742],\n\t\t\t\t\t\t\t[-85.834504, 45.967258],\n\t\t\t\t\t\t\t[-85.835217, 45.967077],\n\t\t\t\t\t\t\t[-85.835456, 45.967016],\n\t\t\t\t\t\t\t[-85.838133, 45.966334],\n\t\t\t\t\t\t\t[-85.838366, 45.966275],\n\t\t\t\t\t\t\t[-85.839025, 45.966107],\n\t\t\t\t\t\t\t[-85.842404, 45.965247],\n\t\t\t\t\t\t\t[-85.843016, 45.965342],\n\t\t\t\t\t\t\t[-85.860190, 45.968016],\n\t\t\t\t\t\t\t[-85.861157, 45.968167],\n\t\t\t\t\t\t\t[-85.865402, 45.968257],\n\t\t\t\t\t\t\t[-85.865025, 46.244631],\n\t\t\t\t\t\t\t[-85.237839, 46.245421],\n\t\t\t\t\t\t\t[-85.113126, 46.245667],\n\t\t\t\t\t\t\t[-85.112438, 46.158191],\n\t\t\t\t\t\t\t[-84.363503, 46.157984],\n\t\t\t\t\t\t\t[-84.363090, 46.071581],\n\t\t\t\t\t\t\t[-84.238836, 46.071457],\n\t\t\t\t\t\t\t[-84.239313, 45.984880],\n\t\t\t\t\t\t\t[-84.114284, 45.978322]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26103\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"103\",\n\t\t\t\t\"NAME\": \"Marquette\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1808.401000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.044551, 46.912473],\n\t\t\t\t\t\t[-88.032911, 46.909038],\n\t\t\t\t\t\t[-88.032408, 46.908890],\n\t\t\t\t\t\t[-88.030053, 46.908730],\n\t\t\t\t\t\t[-88.029373, 46.908684],\n\t\t\t\t\t\t[-88.004298, 46.906982],\n\t\t\t\t\t\t[-88.003693, 46.906948],\n\t\t\t\t\t\t[-87.986290, 46.905967],\n\t\t\t\t\t\t[-87.986113, 46.905957],\n\t\t\t\t\t\t[-87.983340, 46.906242],\n\t\t\t\t\t\t[-87.982258, 46.906353],\n\t\t\t\t\t\t[-87.975490, 46.907048],\n\t\t\t\t\t\t[-87.958255, 46.908819],\n\t\t\t\t\t\t[-87.957115, 46.908936],\n\t\t\t\t\t\t[-87.956000, 46.909051],\n\t\t\t\t\t\t[-87.955745, 46.909054],\n\t\t\t\t\t\t[-87.954687, 46.909066],\n\t\t\t\t\t\t[-87.915943, 46.909508],\n\t\t\t\t\t\t[-87.914489, 46.909525],\n\t\t\t\t\t\t[-87.911474, 46.909559],\n\t\t\t\t\t\t[-87.910624, 46.909569],\n\t\t\t\t\t\t[-87.908791, 46.909590],\n\t\t\t\t\t\t[-87.900695, 46.909682],\n\t\t\t\t\t\t[-87.900339, 46.909686],\n\t\t\t\t\t\t[-87.900070, 46.909508],\n\t\t\t\t\t\t[-87.887920, 46.901451],\n\t\t\t\t\t\t[-87.875051, 46.892918],\n\t\t\t\t\t\t[-87.874538, 46.892578],\n\t\t\t\t\t\t[-87.873893, 46.892381],\n\t\t\t\t\t\t[-87.847037, 46.884163],\n\t\t\t\t\t\t[-87.846195, 46.883905],\n\t\t\t\t\t\t[-87.844637, 46.884049],\n\t\t\t\t\t\t[-87.841228, 46.884363],\n\t\t\t\t\t\t[-87.838889, 46.885252],\n\t\t\t\t\t\t[-87.830204, 46.888556],\n\t\t\t\t\t\t[-87.827162, 46.889713],\n\t\t\t\t\t\t[-87.816794, 46.891154],\n\t\t\t\t\t\t[-87.814120, 46.888808],\n\t\t\t\t\t\t[-87.813228, 46.888025],\n\t\t\t\t\t\t[-87.813226, 46.888023],\n\t\t\t\t\t\t[-87.793194, 46.880822],\n\t\t\t\t\t\t[-87.788186, 46.880373],\n\t\t\t\t\t\t[-87.783216, 46.879927],\n\t\t\t\t\t\t[-87.782461, 46.879859],\n\t\t\t\t\t\t[-87.781969, 46.879580],\n\t\t\t\t\t\t[-87.777749, 46.877190],\n\t\t\t\t\t\t[-87.777527, 46.877064],\n\t\t\t\t\t\t[-87.777156, 46.876854],\n\t\t\t\t\t\t[-87.776930, 46.876726],\n\t\t\t\t\t\t[-87.776672, 46.874999],\n\t\t\t\t\t\t[-87.776567, 46.874293],\n\t\t\t\t\t\t[-87.776313, 46.872591],\n\t\t\t\t\t\t[-87.776346, 46.872562],\n\t\t\t\t\t\t[-87.778289, 46.870834],\n\t\t\t\t\t\t[-87.778752, 46.870422],\n\t\t\t\t\t\t[-87.776804, 46.866823],\n\t\t\t\t\t\t[-87.766243, 46.861446],\n\t\t\t\t\t\t[-87.765989, 46.861316],\n\t\t\t\t\t\t[-87.765835, 46.861303],\n\t\t\t\t\t\t[-87.755937, 46.860459],\n\t\t\t\t\t\t[-87.755868, 46.860453],\n\t\t\t\t\t\t[-87.755748, 46.860518],\n\t\t\t\t\t\t[-87.754448, 46.861219],\n\t\t\t\t\t\t[-87.748498, 46.864428],\n\t\t\t\t\t\t[-87.746646, 46.865427],\n\t\t\t\t\t\t[-87.745665, 46.865396],\n\t\t\t\t\t\t[-87.744893, 46.865371],\n\t\t\t\t\t\t[-87.744403, 46.865355],\n\t\t\t\t\t\t[-87.741857, 46.865274],\n\t\t\t\t\t\t[-87.741014, 46.865247],\n\t\t\t\t\t\t[-87.740917, 46.865007],\n\t\t\t\t\t\t[-87.740846, 46.864834],\n\t\t\t\t\t\t[-87.734870, 46.850120],\n\t\t\t\t\t\t[-87.735039, 46.849856],\n\t\t\t\t\t\t[-87.735106, 46.849751],\n\t\t\t\t\t\t[-87.736732, 46.847216],\n\t\t\t\t\t\t[-87.736539, 46.846393],\n\t\t\t\t\t\t[-87.736469, 46.846096],\n\t\t\t\t\t\t[-87.734325, 46.836955],\n\t\t\t\t\t\t[-87.731522, 46.831196],\n\t\t\t\t\t\t[-87.727358, 46.827656],\n\t\t\t\t\t\t[-87.725880, 46.827426],\n\t\t\t\t\t\t[-87.725649, 46.827390],\n\t\t\t\t\t\t[-87.713737, 46.825534],\n\t\t\t\t\t\t[-87.694590, 46.827182],\n\t\t\t\t\t\t[-87.685787, 46.832477],\n\t\t\t\t\t\t[-87.685698, 46.832530],\n\t\t\t\t\t\t[-87.685735, 46.832639],\n\t\t\t\t\t\t[-87.687930, 46.839159],\n\t\t\t\t\t\t[-87.687875, 46.839343],\n\t\t\t\t\t\t[-87.687280, 46.841351],\n\t\t\t\t\t\t[-87.687164, 46.841742],\n\t\t\t\t\t\t[-87.686720, 46.841794],\n\t\t\t\t\t\t[-87.681561, 46.842392],\n\t\t\t\t\t\t[-87.680668, 46.842496],\n\t\t\t\t\t\t[-87.679573, 46.841507],\n\t\t\t\t\t\t[-87.675046, 46.837420],\n\t\t\t\t\t\t[-87.674541, 46.836964],\n\t\t\t\t\t\t[-87.673469, 46.829598],\n\t\t\t\t\t\t[-87.673433, 46.829350],\n\t\t\t\t\t\t[-87.673177, 46.827593],\n\t\t\t\t\t\t[-87.673274, 46.827300],\n\t\t\t\t\t\t[-87.673973, 46.825179],\n\t\t\t\t\t\t[-87.674345, 46.824050],\n\t\t\t\t\t\t[-87.672015, 46.820415],\n\t\t\t\t\t\t[-87.662261, 46.815157],\n\t\t\t\t\t\t[-87.651510, 46.812411],\n\t\t\t\t\t\t[-87.646539, 46.813094],\n\t\t\t\t\t\t[-87.642789, 46.813609],\n\t\t\t\t\t\t[-87.641887, 46.813733],\n\t\t\t\t\t\t[-87.640839, 46.813534],\n\t\t\t\t\t\t[-87.633300, 46.812107],\n\t\t\t\t\t\t[-87.628786, 46.806096],\n\t\t\t\t\t\t[-87.628284, 46.805428],\n\t\t\t\t\t\t[-87.628081, 46.805157],\n\t\t\t\t\t\t[-87.627356, 46.804553],\n\t\t\t\t\t\t[-87.627124, 46.804360],\n\t\t\t\t\t\t[-87.619747, 46.798210],\n\t\t\t\t\t\t[-87.617852, 46.796631],\n\t\t\t\t\t\t[-87.616800, 46.795753],\n\t\t\t\t\t\t[-87.613654, 46.793131],\n\t\t\t\t\t\t[-87.613586, 46.793074],\n\t\t\t\t\t\t[-87.610582, 46.790571],\n\t\t\t\t\t\t[-87.609008, 46.789258],\n\t\t\t\t\t\t[-87.607988, 46.788408],\n\t\t\t\t\t\t[-87.595307, 46.782950],\n\t\t\t\t\t\t[-87.595276, 46.782745],\n\t\t\t\t\t\t[-87.594384, 46.776863],\n\t\t\t\t\t\t[-87.593148, 46.768713],\n\t\t\t\t\t\t[-87.592227, 46.762635],\n\t\t\t\t\t\t[-87.592220, 46.762594],\n\t\t\t\t\t\t[-87.591973, 46.760965],\n\t\t\t\t\t\t[-87.591907, 46.760525],\n\t\t\t\t\t\t[-87.591455, 46.757544],\n\t\t\t\t\t\t[-87.591362, 46.756932],\n\t\t\t\t\t\t[-87.591082, 46.755087],\n\t\t\t\t\t\t[-87.590865, 46.753653],\n\t\t\t\t\t\t[-87.590767, 46.753009],\n\t\t\t\t\t\t[-87.590502, 46.752267],\n\t\t\t\t\t\t[-87.589671, 46.749937],\n\t\t\t\t\t\t[-87.587755, 46.744568],\n\t\t\t\t\t\t[-87.587626, 46.744206],\n\t\t\t\t\t\t[-87.584568, 46.735637],\n\t\t\t\t\t\t[-87.583570, 46.732839],\n\t\t\t\t\t\t[-87.582745, 46.730527],\n\t\t\t\t\t\t[-87.581674, 46.729399],\n\t\t\t\t\t\t[-87.573203, 46.720471],\n\t\t\t\t\t\t[-87.567343, 46.716714],\n\t\t\t\t\t\t[-87.557436, 46.710364],\n\t\t\t\t\t\t[-87.553048, 46.707551],\n\t\t\t\t\t\t[-87.551989, 46.706872],\n\t\t\t\t\t\t[-87.549097, 46.705019],\n\t\t\t\t\t\t[-87.543920, 46.701700],\n\t\t\t\t\t\t[-87.534504, 46.695664],\n\t\t\t\t\t\t[-87.533529, 46.695040],\n\t\t\t\t\t\t[-87.532638, 46.694469],\n\t\t\t\t\t\t[-87.523308, 46.688488],\n\t\t\t\t\t\t[-87.523361, 46.687977],\n\t\t\t\t\t\t[-87.523744, 46.684300],\n\t\t\t\t\t\t[-87.524419, 46.677830],\n\t\t\t\t\t\t[-87.524444, 46.677586],\n\t\t\t\t\t\t[-87.519176, 46.670186],\n\t\t\t\t\t\t[-87.506657, 46.652599],\n\t\t\t\t\t\t[-87.503238, 46.647796],\n\t\t\t\t\t\t[-87.503025, 46.647497],\n\t\t\t\t\t\t[-87.501511, 46.646762],\n\t\t\t\t\t\t[-87.493405, 46.642826],\n\t\t\t\t\t\t[-87.492860, 46.642561],\n\t\t\t\t\t\t[-87.492409, 46.642435],\n\t\t\t\t\t\t[-87.469023, 46.635918],\n\t\t\t\t\t\t[-87.467965, 46.635623],\n\t\t\t\t\t\t[-87.466537, 46.631555],\n\t\t\t\t\t\t[-87.467563, 46.626228],\n\t\t\t\t\t\t[-87.464108, 46.614811],\n\t\t\t\t\t\t[-87.451368, 46.605923],\n\t\t\t\t\t\t[-87.442612, 46.602776],\n\t\t\t\t\t\t[-87.411167, 46.601669],\n\t\t\t\t\t\t[-87.403275, 46.595215],\n\t\t\t\t\t\t[-87.383961, 46.593070],\n\t\t\t\t\t\t[-87.381649, 46.580059],\n\t\t\t\t\t\t[-87.392974, 46.572523],\n\t\t\t\t\t\t[-87.392828, 46.570852],\n\t\t\t\t\t\t[-87.382206, 46.553681],\n\t\t\t\t\t\t[-87.375613, 46.547140],\n\t\t\t\t\t\t[-87.390300, 46.542577],\n\t\t\t\t\t\t[-87.393985, 46.533183],\n\t\t\t\t\t\t[-87.389290, 46.524472],\n\t\t\t\t\t\t[-87.381349, 46.517292],\n\t\t\t\t\t\t[-87.366767, 46.507303],\n\t\t\t\t\t\t[-87.352448, 46.501324],\n\t\t\t\t\t\t[-87.351071, 46.500749],\n\t\t\t\t\t\t[-87.312109, 46.492310],\n\t\t\t\t\t\t[-87.310755, 46.492017],\n\t\t\t\t\t\t[-87.309402, 46.491919],\n\t\t\t\t\t\t[-87.259116, 46.488283],\n\t\t\t\t\t\t[-87.258732, 46.488255],\n\t\t\t\t\t\t[-87.258145, 46.488282],\n\t\t\t\t\t\t[-87.205147, 46.490702],\n\t\t\t\t\t\t[-87.202404, 46.490827],\n\t\t\t\t\t\t[-87.200147, 46.491382],\n\t\t\t\t\t\t[-87.175105, 46.497538],\n\t\t\t\t\t\t[-87.175065, 46.497548],\n\t\t\t\t\t\t[-87.145946, 46.495387],\n\t\t\t\t\t\t[-87.127440, 46.494014],\n\t\t\t\t\t\t[-87.116618, 46.495163],\n\t\t\t\t\t\t[-87.116080, 46.158945],\n\t\t\t\t\t\t[-87.241555, 46.158901],\n\t\t\t\t\t\t[-87.242885, 45.985087],\n\t\t\t\t\t\t[-87.367843, 45.985313],\n\t\t\t\t\t\t[-87.617039, 45.986006],\n\t\t\t\t\t\t[-87.615914, 46.246794],\n\t\t\t\t\t\t[-88.117407, 46.246618],\n\t\t\t\t\t\t[-88.116571, 46.419951],\n\t\t\t\t\t\t[-88.115843, 46.678381],\n\t\t\t\t\t\t[-87.991546, 46.679113],\n\t\t\t\t\t\t[-88.044709, 46.765353],\n\t\t\t\t\t\t[-88.044551, 46.912473]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26107\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"107\",\n\t\t\t\t\"NAME\": \"Mecosta\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 555.071000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.562392, 43.468247],\n\t\t\t\t\t\t[-85.562439, 43.815634],\n\t\t\t\t\t\t[-85.088811, 43.813676],\n\t\t\t\t\t\t[-85.084996, 43.466190],\n\t\t\t\t\t\t[-85.562392, 43.468247]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26111\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"111\",\n\t\t\t\t\"NAME\": \"Midland\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 516.253000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.369876, 43.466044],\n\t\t\t\t\t\t[-84.607540, 43.466006],\n\t\t\t\t\t\t[-84.606035, 43.815218],\n\t\t\t\t\t\t[-84.167318, 43.825902],\n\t\t\t\t\t\t[-84.168127, 43.568899],\n\t\t\t\t\t\t[-84.170576, 43.481969],\n\t\t\t\t\t\t[-84.369876, 43.466044]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26117\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"117\",\n\t\t\t\t\"NAME\": \"Montcalm\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 705.399000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.312513, 43.118793],\n\t\t\t\t\t\t[-85.312376, 43.294205],\n\t\t\t\t\t\t[-85.562538, 43.294271],\n\t\t\t\t\t\t[-85.562392, 43.468247],\n\t\t\t\t\t\t[-85.084996, 43.466190],\n\t\t\t\t\t\t[-84.845962, 43.466158],\n\t\t\t\t\t\t[-84.836889, 43.118851],\n\t\t\t\t\t\t[-85.312513, 43.118793]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26123\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"123\",\n\t\t\t\t\"NAME\": \"Newaygo\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 813.204000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.562538, 43.294271],\n\t\t\t\t\t\t[-85.571636, 43.294252],\n\t\t\t\t\t\t[-85.790448, 43.293003],\n\t\t\t\t\t\t[-86.038953, 43.293519],\n\t\t\t\t\t\t[-86.039491, 43.467447],\n\t\t\t\t\t\t[-86.037884, 43.815611],\n\t\t\t\t\t\t[-85.562439, 43.815634],\n\t\t\t\t\t\t[-85.562392, 43.468247],\n\t\t\t\t\t\t[-85.562538, 43.294271]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26133\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"133\",\n\t\t\t\t\"NAME\": \"Osceola\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 566.391000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.087040, 44.164239],\n\t\t\t\t\t\t[-85.088811, 43.813676],\n\t\t\t\t\t\t[-85.562439, 43.815634],\n\t\t\t\t\t\t[-85.564554, 44.164893],\n\t\t\t\t\t\t[-85.334777, 44.165118],\n\t\t\t\t\t\t[-85.087040, 44.164239]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26143\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"143\",\n\t\t\t\t\"NAME\": \"Roscommon\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 519.636000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.608104, 44.160482],\n\t\t\t\t\t\t[-84.851705, 44.161375],\n\t\t\t\t\t\t[-84.855795, 44.421984],\n\t\t\t\t\t\t[-84.850929, 44.511069],\n\t\t\t\t\t\t[-84.370643, 44.507223],\n\t\t\t\t\t\t[-84.366324, 44.175508],\n\t\t\t\t\t\t[-84.368039, 44.160538],\n\t\t\t\t\t\t[-84.608104, 44.160482]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26155\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"155\",\n\t\t\t\t\"NAME\": \"Shiawassee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 530.668000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.365712, 42.955120],\n\t\t\t\t\t\t[-84.367795, 43.117938],\n\t\t\t\t\t\t[-84.367863, 43.124456],\n\t\t\t\t\t\t[-84.367893, 43.124671],\n\t\t\t\t\t\t[-84.367891, 43.128452],\n\t\t\t\t\t\t[-83.929079, 43.132782],\n\t\t\t\t\t\t[-83.927555, 42.880750],\n\t\t\t\t\t\t[-83.922516, 42.780821],\n\t\t\t\t\t\t[-84.158189, 42.776639],\n\t\t\t\t\t\t[-84.363659, 42.775778],\n\t\t\t\t\t\t[-84.365712, 42.955120]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26161\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"161\",\n\t\t\t\t\"NAME\": \"Washtenaw\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 705.965000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.542102, 42.174344],\n\t\t\t\t\t\t[-83.539396, 42.085598],\n\t\t\t\t\t\t[-83.773922, 42.082430],\n\t\t\t\t\t\t[-84.131963, 42.071577],\n\t\t\t\t\t\t[-84.131136, 42.424567],\n\t\t\t\t\t\t[-83.944650, 42.424149],\n\t\t\t\t\t\t[-83.664808, 42.431179],\n\t\t\t\t\t\t[-83.551907, 42.435166],\n\t\t\t\t\t\t[-83.547548, 42.349217],\n\t\t\t\t\t\t[-83.542102, 42.174344]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26165\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"165\",\n\t\t\t\t\"NAME\": \"Wexford\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 565.002000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.334777, 44.165118],\n\t\t\t\t\t\t[-85.564554, 44.164893],\n\t\t\t\t\t\t[-85.819811, 44.164301],\n\t\t\t\t\t\t[-85.821186, 44.164197],\n\t\t\t\t\t\t[-85.817802, 44.512969],\n\t\t\t\t\t\t[-85.334000, 44.512303],\n\t\t\t\t\t\t[-85.334777, 44.165118]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27009\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"009\",\n\t\t\t\t\"NAME\": \"Benton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 408.301000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.759435, 45.559646],\n\t\t\t\t\t\t[-94.149467, 45.559066],\n\t\t\t\t\t\t[-94.203666, 45.619556],\n\t\t\t\t\t\t[-94.215712, 45.726560],\n\t\t\t\t\t\t[-94.271776, 45.775208],\n\t\t\t\t\t\t[-94.353165, 45.822131],\n\t\t\t\t\t\t[-93.763948, 45.822143],\n\t\t\t\t\t\t[-93.763316, 45.815872],\n\t\t\t\t\t\t[-93.759435, 45.559646]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27019\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"019\",\n\t\t\t\t\"NAME\": \"Carver\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 354.325000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.767367, 44.977964],\n\t\t\t\t\t\t[-93.767041, 44.890862],\n\t\t\t\t\t\t[-93.520706, 44.891502],\n\t\t\t\t\t\t[-93.520632, 44.864108],\n\t\t\t\t\t\t[-93.520725, 44.861999],\n\t\t\t\t\t\t[-93.520632, 44.858473],\n\t\t\t\t\t\t[-93.520431, 44.804263],\n\t\t\t\t\t\t[-93.621967, 44.760281],\n\t\t\t\t\t\t[-93.618141, 44.707096],\n\t\t\t\t\t\t[-93.768039, 44.640303],\n\t\t\t\t\t\t[-93.888636, 44.717044],\n\t\t\t\t\t\t[-94.010494, 44.717464],\n\t\t\t\t\t\t[-94.012236, 44.978712],\n\t\t\t\t\t\t[-93.767367, 44.977964]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27029\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"029\",\n\t\t\t\t\"NAME\": \"Clearwater\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 998.940000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.582155, 47.933966],\n\t\t\t\t\t\t[-95.582887, 48.020557],\n\t\t\t\t\t\t[-95.229133, 48.019958],\n\t\t\t\t\t\t[-95.277834, 47.925346],\n\t\t\t\t\t\t[-95.193705, 47.872544],\n\t\t\t\t\t\t[-95.183216, 47.412773],\n\t\t\t\t\t\t[-95.169172, 47.152515],\n\t\t\t\t\t\t[-95.551186, 47.151453],\n\t\t\t\t\t\t[-95.551458, 47.500020],\n\t\t\t\t\t\t[-95.554248, 47.499893],\n\t\t\t\t\t\t[-95.578839, 47.673677],\n\t\t\t\t\t\t[-95.582155, 47.933966]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27039\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"039\",\n\t\t\t\t\"NAME\": \"Dodge\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 439.276000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.678717, 44.195516],\n\t\t\t\t\t\t[-92.678412, 43.848487],\n\t\t\t\t\t\t[-92.689391, 43.848570],\n\t\t\t\t\t\t[-93.045966, 43.848467],\n\t\t\t\t\t\t[-93.045570, 43.850021],\n\t\t\t\t\t\t[-93.045910, 44.196716],\n\t\t\t\t\t\t[-93.041159, 44.196726],\n\t\t\t\t\t\t[-92.678717, 44.195516]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27051\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"051\",\n\t\t\t\t\"NAME\": \"Grant\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 548.160000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.266140, 46.021610],\n\t\t\t\t\t\t[-96.266030, 46.057420],\n\t\t\t\t\t\t[-96.266048, 46.057771],\n\t\t\t\t\t\t[-96.266080, 46.057960],\n\t\t\t\t\t\t[-96.265366, 46.108610],\n\t\t\t\t\t\t[-95.769750, 46.107450],\n\t\t\t\t\t\t[-95.758508, 45.759932],\n\t\t\t\t\t\t[-96.254022, 45.759820],\n\t\t\t\t\t\t[-96.266140, 46.021610]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27057\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"057\",\n\t\t\t\t\"NAME\": \"Hubbard\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 925.675000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.183216, 47.412773],\n\t\t\t\t\t\t[-94.799934, 47.409848],\n\t\t\t\t\t\t[-94.788930, 47.409790],\n\t\t\t\t\t\t[-94.760529, 47.410452],\n\t\t\t\t\t\t[-94.718396, 47.409542],\n\t\t\t\t\t\t[-94.670214, 47.410151],\n\t\t\t\t\t\t[-94.659942, 46.803716],\n\t\t\t\t\t\t[-94.787126, 46.803943],\n\t\t\t\t\t\t[-95.163010, 46.804720],\n\t\t\t\t\t\t[-95.169172, 47.152515],\n\t\t\t\t\t\t[-95.183216, 47.412773]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27067\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"067\",\n\t\t\t\t\"NAME\": \"Kandiyohi\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 796.785000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.131730, 45.412402],\n\t\t\t\t\t\t[-94.762934, 45.412861],\n\t\t\t\t\t\t[-94.763080, 45.326100],\n\t\t\t\t\t\t[-94.758189, 44.892097],\n\t\t\t\t\t\t[-95.248520, 44.891310],\n\t\t\t\t\t\t[-95.246490, 45.152384],\n\t\t\t\t\t\t[-95.255206, 45.412525],\n\t\t\t\t\t\t[-95.131730, 45.412402]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29097\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"097\",\n\t\t\t\t\"NAME\": \"Jasper\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 638.487000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.082083, 37.349291],\n\t\t\t\t\t\t[-94.083833, 37.290851],\n\t\t\t\t\t\t[-94.052313, 37.290078],\n\t\t\t\t\t\t[-94.059211, 37.048127],\n\t\t\t\t\t\t[-94.617875, 37.056797],\n\t\t\t\t\t\t[-94.617875, 37.056798],\n\t\t\t\t\t\t[-94.617982, 37.075077],\n\t\t\t\t\t\t[-94.618120, 37.085934],\n\t\t\t\t\t\t[-94.618082, 37.086432],\n\t\t\t\t\t\t[-94.618090, 37.093494],\n\t\t\t\t\t\t[-94.618088, 37.093671],\n\t\t\t\t\t\t[-94.618059, 37.096676],\n\t\t\t\t\t\t[-94.618151, 37.103968],\n\t\t\t\t\t\t[-94.618212, 37.113169],\n\t\t\t\t\t\t[-94.618075, 37.129755],\n\t\t\t\t\t\t[-94.618072, 37.132345],\n\t\t\t\t\t\t[-94.618351, 37.160211],\n\t\t\t\t\t\t[-94.618473, 37.174782],\n\t\t\t\t\t\t[-94.618505, 37.181184],\n\t\t\t\t\t\t[-94.618319, 37.188774],\n\t\t\t\t\t\t[-94.618305, 37.207337],\n\t\t\t\t\t\t[-94.618219, 37.207772],\n\t\t\t\t\t\t[-94.618150, 37.228121],\n\t\t\t\t\t\t[-94.618123, 37.229334],\n\t\t\t\t\t\t[-94.618158, 37.237597],\n\t\t\t\t\t\t[-94.618075, 37.240436],\n\t\t\t\t\t\t[-94.617648, 37.323589],\n\t\t\t\t\t\t[-94.617695, 37.336842],\n\t\t\t\t\t\t[-94.617636, 37.338415],\n\t\t\t\t\t\t[-94.617636, 37.338417],\n\t\t\t\t\t\t[-94.617538, 37.364167],\n\t\t\t\t\t\t[-94.082083, 37.349291]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29103\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"103\",\n\t\t\t\t\"NAME\": \"Knox\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 504.011000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.345064, 40.037210],\n\t\t\t\t\t\t[-92.347801, 40.302756],\n\t\t\t\t\t\t[-91.949747, 40.300832],\n\t\t\t\t\t\t[-91.950812, 40.257210],\n\t\t\t\t\t\t[-91.952726, 39.949426],\n\t\t\t\t\t\t[-92.177328, 39.954494],\n\t\t\t\t\t\t[-92.287882, 39.952490],\n\t\t\t\t\t\t[-92.344708, 39.953297],\n\t\t\t\t\t\t[-92.345064, 40.037210]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29109\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"109\",\n\t\t\t\t\"NAME\": \"Lawrence\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 611.737000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.059211, 37.048127],\n\t\t\t\t\t\t[-94.052313, 37.290078],\n\t\t\t\t\t\t[-93.625844, 37.282011],\n\t\t\t\t\t\t[-93.605095, 37.281482],\n\t\t\t\t\t\t[-93.608899, 37.098153],\n\t\t\t\t\t\t[-93.610126, 36.995810],\n\t\t\t\t\t\t[-93.611003, 36.922831],\n\t\t\t\t\t\t[-94.062740, 36.931775],\n\t\t\t\t\t\t[-94.059211, 37.048127]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29117\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"117\",\n\t\t\t\t\"NAME\": \"Livingston\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 532.329000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.761973, 39.959552],\n\t\t\t\t\t\t[-93.361957, 39.967606],\n\t\t\t\t\t\t[-93.364808, 39.703803],\n\t\t\t\t\t\t[-93.266968, 39.703562],\n\t\t\t\t\t\t[-93.278098, 39.615632],\n\t\t\t\t\t\t[-93.758357, 39.611407],\n\t\t\t\t\t\t[-93.758992, 39.784674],\n\t\t\t\t\t\t[-93.761973, 39.959552]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29131\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"131\",\n\t\t\t\t\"NAME\": \"Miller\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 592.595000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.604976, 38.156815],\n\t\t\t\t\t\t[-92.695886, 38.222031],\n\t\t\t\t\t\t[-92.689834, 38.348472],\n\t\t\t\t\t\t[-92.633756, 38.348082],\n\t\t\t\t\t\t[-92.625189, 38.430778],\n\t\t\t\t\t\t[-92.623858, 38.430639],\n\t\t\t\t\t\t[-92.495185, 38.427829],\n\t\t\t\t\t\t[-92.403484, 38.425331],\n\t\t\t\t\t\t[-92.408407, 38.341344],\n\t\t\t\t\t\t[-92.194476, 38.335536],\n\t\t\t\t\t\t[-92.195675, 38.292237],\n\t\t\t\t\t\t[-92.185370, 38.016338],\n\t\t\t\t\t\t[-92.406275, 38.021179],\n\t\t\t\t\t\t[-92.515979, 38.022336],\n\t\t\t\t\t\t[-92.604976, 38.156815]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29137\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"137\",\n\t\t\t\t\"NAME\": \"Monroe\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 647.653000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.715247, 39.657644],\n\t\t\t\t\t\t[-91.717968, 39.339122],\n\t\t\t\t\t\t[-92.310028, 39.347795],\n\t\t\t\t\t\t[-92.300871, 39.605348],\n\t\t\t\t\t\t[-92.299316, 39.605344],\n\t\t\t\t\t\t[-92.186691, 39.604082],\n\t\t\t\t\t\t[-92.184986, 39.662932],\n\t\t\t\t\t\t[-91.846743, 39.658513],\n\t\t\t\t\t\t[-91.715247, 39.657644]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29151\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"151\",\n\t\t\t\t\"NAME\": \"Osage\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 604.346000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.644729, 38.288510],\n\t\t\t\t\t\t[-92.195675, 38.292237],\n\t\t\t\t\t\t[-92.194476, 38.335536],\n\t\t\t\t\t\t[-92.114977, 38.401937],\n\t\t\t\t\t\t[-92.168883, 38.466812],\n\t\t\t\t\t\t[-92.043489, 38.466479],\n\t\t\t\t\t\t[-92.025857, 38.552017],\n\t\t\t\t\t\t[-91.944238, 38.596925],\n\t\t\t\t\t\t[-91.869489, 38.663940],\n\t\t\t\t\t\t[-91.647171, 38.703396],\n\t\t\t\t\t\t[-91.645546, 38.703678],\n\t\t\t\t\t\t[-91.641376, 38.703939],\n\t\t\t\t\t\t[-91.640372, 38.703792],\n\t\t\t\t\t\t[-91.644729, 38.288510]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29159\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"159\",\n\t\t\t\t\"NAME\": \"Pettis\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 682.222000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.497278, 38.928430],\n\t\t\t\t\t\t[-93.496377, 38.942837],\n\t\t\t\t\t\t[-93.069819, 38.930042],\n\t\t\t\t\t\t[-93.050453, 38.928244],\n\t\t\t\t\t\t[-93.059974, 38.693077],\n\t\t\t\t\t\t[-93.067294, 38.529995],\n\t\t\t\t\t\t[-93.290454, 38.535388],\n\t\t\t\t\t\t[-93.291851, 38.506321],\n\t\t\t\t\t\t[-93.512743, 38.512476],\n\t\t\t\t\t\t[-93.511303, 38.548565],\n\t\t\t\t\t\t[-93.511364, 38.548889],\n\t\t\t\t\t\t[-93.511030, 38.556210],\n\t\t\t\t\t\t[-93.497278, 38.928430]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29169\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"169\",\n\t\t\t\t\"NAME\": \"Pulaski\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 547.099000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.406872, 37.977802],\n\t\t\t\t\t\t[-92.406275, 38.021179],\n\t\t\t\t\t\t[-92.185370, 38.016338],\n\t\t\t\t\t\t[-92.185370, 38.015138],\n\t\t\t\t\t\t[-92.021165, 38.010639],\n\t\t\t\t\t\t[-92.029258, 37.602542],\n\t\t\t\t\t\t[-92.249463, 37.604543],\n\t\t\t\t\t\t[-92.248865, 37.648442],\n\t\t\t\t\t\t[-92.413669, 37.713941],\n\t\t\t\t\t\t[-92.409231, 37.859180],\n\t\t\t\t\t\t[-92.406872, 37.977802]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29179\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"179\",\n\t\t\t\t\"NAME\": \"Reynolds\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 808.478000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.779553, 37.050324],\n\t\t\t\t\t\t[-90.964466, 37.053584],\n\t\t\t\t\t\t[-91.017766, 37.095677],\n\t\t\t\t\t\t[-91.034346, 37.169343],\n\t\t\t\t\t\t[-91.159323, 37.254936],\n\t\t\t\t\t\t[-91.175405, 37.414805],\n\t\t\t\t\t\t[-91.211863, 37.415277],\n\t\t\t\t\t\t[-91.210984, 37.501911],\n\t\t\t\t\t\t[-91.314236, 37.505132],\n\t\t\t\t\t\t[-91.312458, 37.592824],\n\t\t\t\t\t\t[-91.155073, 37.588092],\n\t\t\t\t\t\t[-90.768695, 37.603011],\n\t\t\t\t\t\t[-90.772949, 37.373659],\n\t\t\t\t\t\t[-90.735453, 37.271040],\n\t\t\t\t\t\t[-90.737146, 37.166413],\n\t\t\t\t\t\t[-90.779553, 37.050324]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29195\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"195\",\n\t\t\t\t\"NAME\": \"Saline\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 755.504000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.849224, 39.226218],\n\t\t\t\t\t\t[-92.941650, 39.125892],\n\t\t\t\t\t\t[-92.934569, 39.064547],\n\t\t\t\t\t\t[-93.048471, 38.972418],\n\t\t\t\t\t\t[-93.050453, 38.928244],\n\t\t\t\t\t\t[-93.069819, 38.930042],\n\t\t\t\t\t\t[-93.496377, 38.942837],\n\t\t\t\t\t\t[-93.477233, 39.292796],\n\t\t\t\t\t\t[-93.333337, 39.250012],\n\t\t\t\t\t\t[-93.332252, 39.309606],\n\t\t\t\t\t\t[-93.230079, 39.327877],\n\t\t\t\t\t\t[-93.200708, 39.401787],\n\t\t\t\t\t\t[-93.104485, 39.383656],\n\t\t\t\t\t\t[-93.072915, 39.335520],\n\t\t\t\t\t\t[-92.959801, 39.312526],\n\t\t\t\t\t\t[-92.906142, 39.222339],\n\t\t\t\t\t\t[-92.849224, 39.226218]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29205\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"205\",\n\t\t\t\t\"NAME\": \"Shelby\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 500.864000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.299316, 39.605344],\n\t\t\t\t\t\t[-92.287882, 39.952490],\n\t\t\t\t\t\t[-92.177328, 39.954494],\n\t\t\t\t\t\t[-91.952726, 39.949426],\n\t\t\t\t\t\t[-91.840353, 39.948235],\n\t\t\t\t\t\t[-91.846743, 39.658513],\n\t\t\t\t\t\t[-92.184986, 39.662932],\n\t\t\t\t\t\t[-92.186691, 39.604082],\n\t\t\t\t\t\t[-92.299316, 39.605344]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29211\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"211\",\n\t\t\t\t\"NAME\": \"Sullivan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 647.981000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.367214, 40.266314],\n\t\t\t\t\t\t[-93.366935, 40.382999],\n\t\t\t\t\t\t[-92.855313, 40.385894],\n\t\t\t\t\t\t[-92.855629, 40.342736],\n\t\t\t\t\t\t[-92.856191, 40.037253],\n\t\t\t\t\t\t[-93.361951, 40.033098],\n\t\t\t\t\t\t[-93.366556, 40.033099],\n\t\t\t\t\t\t[-93.367214, 40.266314]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29221\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"221\",\n\t\t\t\t\"NAME\": \"Washington\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 759.913000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.639980, 38.076548],\n\t\t\t\t\t\t[-90.645135, 37.734813],\n\t\t\t\t\t\t[-91.100017, 37.740012],\n\t\t\t\t\t\t[-91.095765, 38.204083],\n\t\t\t\t\t\t[-90.780185, 38.204112],\n\t\t\t\t\t\t[-90.639980, 38.076548]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29229\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"229\",\n\t\t\t\t\"NAME\": \"Wright\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 681.771000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.252261, 37.472944],\n\t\t\t\t\t\t[-92.251359, 37.059653],\n\t\t\t\t\t\t[-92.685867, 37.067051],\n\t\t\t\t\t\t[-92.686671, 37.481545],\n\t\t\t\t\t\t[-92.252261, 37.472944]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30013\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"013\",\n\t\t\t\t\"NAME\": \"Cascade\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2698.158000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-111.409117, 47.698277],\n\t\t\t\t\t\t[-110.976382, 47.698605],\n\t\t\t\t\t\t[-111.049832, 47.598325],\n\t\t\t\t\t\t[-110.863942, 47.525060],\n\t\t\t\t\t\t[-110.768771, 47.524837],\n\t\t\t\t\t\t[-110.769218, 47.445996],\n\t\t\t\t\t\t[-110.639934, 47.445332],\n\t\t\t\t\t\t[-110.639564, 47.416259],\n\t\t\t\t\t\t[-110.639280, 47.358998],\n\t\t\t\t\t\t[-110.767125, 47.359128],\n\t\t\t\t\t\t[-110.772254, 47.095871],\n\t\t\t\t\t\t[-110.645353, 47.095735],\n\t\t\t\t\t\t[-110.652877, 46.823626],\n\t\t\t\t\t\t[-110.751665, 46.844681],\n\t\t\t\t\t\t[-110.761016, 46.900286],\n\t\t\t\t\t\t[-110.857180, 46.922879],\n\t\t\t\t\t\t[-110.913285, 46.980853],\n\t\t\t\t\t\t[-111.104738, 47.029105],\n\t\t\t\t\t\t[-111.080855, 47.088138],\n\t\t\t\t\t\t[-111.158602, 47.088184],\n\t\t\t\t\t\t[-111.158518, 47.011501],\n\t\t\t\t\t\t[-111.539141, 47.000386],\n\t\t\t\t\t\t[-111.539341, 46.913427],\n\t\t\t\t\t\t[-111.658131, 46.913364],\n\t\t\t\t\t\t[-111.790092, 46.913930],\n\t\t\t\t\t\t[-111.789326, 47.128993],\n\t\t\t\t\t\t[-112.044923, 47.192710],\n\t\t\t\t\t\t[-112.047308, 47.516028],\n\t\t\t\t\t\t[-111.922530, 47.505078],\n\t\t\t\t\t\t[-111.922936, 47.611231],\n\t\t\t\t\t\t[-111.666800, 47.611241],\n\t\t\t\t\t\t[-111.667035, 47.697885],\n\t\t\t\t\t\t[-111.409117, 47.698277]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30037\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"037\",\n\t\t\t\t\"NAME\": \"Golden Valley\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1175.342000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-108.780140, 46.132402],\n\t\t\t\t\t\t[-108.924129, 46.132211],\n\t\t\t\t\t\t[-109.415506, 46.132261],\n\t\t\t\t\t\t[-109.417297, 46.044485],\n\t\t\t\t\t\t[-109.604968, 46.045377],\n\t\t\t\t\t\t[-109.654304, 46.219402],\n\t\t\t\t\t\t[-109.402906, 46.219706],\n\t\t\t\t\t\t[-109.389163, 46.693661],\n\t\t\t\t\t\t[-109.388963, 46.751009],\n\t\t\t\t\t\t[-109.009802, 46.750432],\n\t\t\t\t\t\t[-108.988585, 46.578572],\n\t\t\t\t\t\t[-108.904779, 46.577394],\n\t\t\t\t\t\t[-108.861315, 46.364825],\n\t\t\t\t\t\t[-108.779115, 46.276720],\n\t\t\t\t\t\t[-108.780140, 46.132402]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30043\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"043\",\n\t\t\t\t\"NAME\": \"Jefferson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1656.257000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-111.659995, 45.833512],\n\t\t\t\t\t\t[-111.805134, 45.798018],\n\t\t\t\t\t\t[-111.930144, 45.857148],\n\t\t\t\t\t\t[-112.106378, 45.841188],\n\t\t\t\t\t\t[-112.190269, 45.748503],\n\t\t\t\t\t\t[-112.399399, 45.831089],\n\t\t\t\t\t\t[-112.504818, 46.183767],\n\t\t\t\t\t\t[-112.576850, 46.178859],\n\t\t\t\t\t\t[-112.558457, 46.265925],\n\t\t\t\t\t\t[-112.310610, 46.421006],\n\t\t\t\t\t\t[-112.175790, 46.456606],\n\t\t\t\t\t\t[-112.188399, 46.499211],\n\t\t\t\t\t\t[-112.029312, 46.569096],\n\t\t\t\t\t\t[-111.787875, 46.568998],\n\t\t\t\t\t\t[-111.784333, 46.050004],\n\t\t\t\t\t\t[-111.660441, 46.049449],\n\t\t\t\t\t\t[-111.659995, 45.833512]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31121\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"121\",\n\t\t\t\t\"NAME\": \"Merrick\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 484.881000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.703765, 41.394876],\n\t\t\t\t\t\t[-97.598461, 41.395068],\n\t\t\t\t\t\t[-97.598253, 41.333119],\n\t\t\t\t\t\t[-97.828243, 41.173750],\n\t\t\t\t\t\t[-97.892531, 41.111496],\n\t\t\t\t\t\t[-98.019385, 41.066392],\n\t\t\t\t\t\t[-98.282569, 40.872296],\n\t\t\t\t\t\t[-98.282359, 41.046355],\n\t\t\t\t\t\t[-98.287168, 41.046363],\n\t\t\t\t\t\t[-98.286584, 41.393898],\n\t\t\t\t\t\t[-98.275408, 41.264341],\n\t\t\t\t\t\t[-98.101546, 41.264041],\n\t\t\t\t\t\t[-98.053137, 41.293123],\n\t\t\t\t\t\t[-97.705497, 41.309134],\n\t\t\t\t\t\t[-97.703765, 41.394876]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31125\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"125\",\n\t\t\t\t\"NAME\": \"Nance\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 441.633000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.703765, 41.394876],\n\t\t\t\t\t\t[-97.705497, 41.309134],\n\t\t\t\t\t\t[-98.053137, 41.293123],\n\t\t\t\t\t\t[-98.101546, 41.264041],\n\t\t\t\t\t\t[-98.275408, 41.264341],\n\t\t\t\t\t\t[-98.286584, 41.393898],\n\t\t\t\t\t\t[-98.291419, 41.393894],\n\t\t\t\t\t\t[-98.291344, 41.480727],\n\t\t\t\t\t\t[-98.099523, 41.480777],\n\t\t\t\t\t\t[-98.041328, 41.510534],\n\t\t\t\t\t\t[-97.829846, 41.526174],\n\t\t\t\t\t\t[-97.703627, 41.526796],\n\t\t\t\t\t\t[-97.703765, 41.394876]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31135\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"135\",\n\t\t\t\t\"NAME\": \"Perkins\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 883.335000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-102.051761, 41.003890],\n\t\t\t\t\t\t[-101.249975, 41.003950],\n\t\t\t\t\t\t[-101.247963, 40.697802],\n\t\t\t\t\t\t[-101.345365, 40.698093],\n\t\t\t\t\t\t[-102.051398, 40.697542],\n\t\t\t\t\t\t[-102.051292, 40.749586],\n\t\t\t\t\t\t[-102.051292, 40.749591],\n\t\t\t\t\t\t[-102.051614, 41.002377],\n\t\t\t\t\t\t[-102.051718, 41.002377],\n\t\t\t\t\t\t[-102.051761, 41.003890]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31137\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"137\",\n\t\t\t\t\"NAME\": \"Phelps\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 539.790000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.417316, 40.670825],\n\t\t\t\t\t\t[-99.179248, 40.660541],\n\t\t\t\t\t\t[-99.179403, 40.350681],\n\t\t\t\t\t\t[-99.630459, 40.351120],\n\t\t\t\t\t\t[-99.630619, 40.351206],\n\t\t\t\t\t\t[-99.642209, 40.351200],\n\t\t\t\t\t\t[-99.643280, 40.682639],\n\t\t\t\t\t\t[-99.643462, 40.684911],\n\t\t\t\t\t\t[-99.417316, 40.670825]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31147\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"147\",\n\t\t\t\t\"NAME\": \"Richardson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 551.840000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.010176, 40.261482],\n\t\t\t\t\t\t[-95.552473, 40.261904],\n\t\t\t\t\t\t[-95.521925, 40.249470],\n\t\t\t\t\t\t[-95.312211, 40.009395],\n\t\t\t\t\t\t[-95.308290, 39.999998],\n\t\t\t\t\t\t[-95.339896, 39.999999],\n\t\t\t\t\t\t[-95.375257, 40.000000],\n\t\t\t\t\t\t[-95.784575, 40.000463],\n\t\t\t\t\t\t[-95.788024, 40.000452],\n\t\t\t\t\t\t[-95.788111, 40.000452],\n\t\t\t\t\t\t[-95.882524, 40.000470],\n\t\t\t\t\t\t[-95.958139, 40.000521],\n\t\t\t\t\t\t[-96.010678, 40.000638],\n\t\t\t\t\t\t[-96.010680, 40.000638],\n\t\t\t\t\t\t[-96.010176, 40.261482]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31159\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"159\",\n\t\t\t\t\"NAME\": \"Seward\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 571.428000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.910940, 41.046116],\n\t\t\t\t\t\t[-96.911116, 40.697975],\n\t\t\t\t\t\t[-96.913493, 40.697948],\n\t\t\t\t\t\t[-97.368401, 40.698625],\n\t\t\t\t\t\t[-97.368118, 41.046947],\n\t\t\t\t\t\t[-96.910940, 41.046116]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31163\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"163\",\n\t\t\t\t\"NAME\": \"Sherman\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 565.828000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.748526, 41.046640],\n\t\t\t\t\t\t[-99.207564, 41.047003],\n\t\t\t\t\t\t[-99.203261, 41.394140],\n\t\t\t\t\t\t[-98.751558, 41.394084],\n\t\t\t\t\t\t[-98.744330, 41.394178],\n\t\t\t\t\t\t[-98.748526, 41.046640]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31171\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"171\",\n\t\t\t\t\"NAME\": \"Thomas\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 713.236000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.846129, 42.088166],\n\t\t\t\t\t\t[-100.267622, 42.086147],\n\t\t\t\t\t\t[-100.268125, 42.072190],\n\t\t\t\t\t\t[-100.265474, 41.739856],\n\t\t\t\t\t\t[-100.711711, 41.739761],\n\t\t\t\t\t\t[-100.842459, 41.740404],\n\t\t\t\t\t\t[-100.846129, 42.088166]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31183\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"183\",\n\t\t\t\t\"NAME\": \"Wheeler\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 575.182000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.295760, 41.741178],\n\t\t\t\t\t\t[-98.752225, 41.740372],\n\t\t\t\t\t\t[-98.759133, 41.740382],\n\t\t\t\t\t\t[-98.761155, 42.088518],\n\t\t\t\t\t\t[-98.300592, 42.088853],\n\t\t\t\t\t\t[-98.295438, 42.088873],\n\t\t\t\t\t\t[-98.295602, 41.914954],\n\t\t\t\t\t\t[-98.295760, 41.741178]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US32009\",\n\t\t\t\t\"STATE\": \"32\",\n\t\t\t\t\"COUNTY\": \"009\",\n\t\t\t\t\"NAME\": \"Esmeralda\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 3581.876000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-117.691021, 38.473797],\n\t\t\t\t\t\t[-117.240910, 38.069902],\n\t\t\t\t\t\t[-117.241063, 38.050116],\n\t\t\t\t\t\t[-117.219264, 38.050348],\n\t\t\t\t\t\t[-117.165612, 38.001692],\n\t\t\t\t\t\t[-117.166187, 36.970862],\n\t\t\t\t\t\t[-117.500909, 37.220282],\n\t\t\t\t\t\t[-117.832726, 37.464929],\n\t\t\t\t\t\t[-118.039849, 37.615245],\n\t\t\t\t\t\t[-118.039798, 37.615273],\n\t\t\t\t\t\t[-118.428581, 37.895613],\n\t\t\t\t\t\t[-118.351484, 37.893705],\n\t\t\t\t\t\t[-117.691021, 38.473797]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US32021\",\n\t\t\t\t\"STATE\": \"32\",\n\t\t\t\t\"COUNTY\": \"021\",\n\t\t\t\t\"NAME\": \"Mineral\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 3752.844000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-117.691021, 38.473797],\n\t\t\t\t\t\t[-118.351484, 37.893705],\n\t\t\t\t\t\t[-118.428581, 37.895613],\n\t\t\t\t\t\t[-118.746598, 38.124926],\n\t\t\t\t\t\t[-119.125982, 38.393170],\n\t\t\t\t\t\t[-119.156863, 38.414743],\n\t\t\t\t\t\t[-118.906861, 38.414677],\n\t\t\t\t\t\t[-118.902124, 38.852158],\n\t\t\t\t\t\t[-119.014528, 38.851300],\n\t\t\t\t\t\t[-119.014837, 38.943323],\n\t\t\t\t\t\t[-118.929737, 39.073698],\n\t\t\t\t\t\t[-118.753835, 39.074630],\n\t\t\t\t\t\t[-117.865116, 39.073654],\n\t\t\t\t\t\t[-118.196274, 38.999926],\n\t\t\t\t\t\t[-118.196235, 38.919058],\n\t\t\t\t\t\t[-117.691021, 38.473797]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US32033\",\n\t\t\t\t\"STATE\": \"32\",\n\t\t\t\t\"COUNTY\": \"033\",\n\t\t\t\t\"NAME\": \"White Pine\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 8875.648000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-114.046555, 40.116931],\n\t\t\t\t\t\t[-114.047134, 39.906037],\n\t\t\t\t\t\t[-114.047728, 39.542742],\n\t\t\t\t\t\t[-114.049893, 38.677365],\n\t\t\t\t\t\t[-115.000846, 38.677322],\n\t\t\t\t\t\t[-115.601585, 38.999933],\n\t\t\t\t\t\t[-115.907071, 39.161848],\n\t\t\t\t\t\t[-115.907659, 39.464432],\n\t\t\t\t\t\t[-115.898339, 39.453890],\n\t\t\t\t\t\t[-115.813476, 39.593521],\n\t\t\t\t\t\t[-115.834969, 40.127842],\n\t\t\t\t\t\t[-115.263729, 40.122543],\n\t\t\t\t\t\t[-114.046555, 40.116931]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US34007\",\n\t\t\t\t\"STATE\": \"34\",\n\t\t\t\t\"COUNTY\": \"007\",\n\t\t\t\t\"NAME\": \"Camden\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 221.263000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-75.133220, 39.922512],\n\t\t\t\t\t\t[-75.085754, 39.967572],\n\t\t\t\t\t\t[-75.072017, 39.980612],\n\t\t\t\t\t\t[-75.056039, 39.991795],\n\t\t\t\t\t\t[-75.035461, 39.995951],\n\t\t\t\t\t\t[-75.010146, 39.979768],\n\t\t\t\t\t\t[-75.019212, 39.967462],\n\t\t\t\t\t\t[-75.018723, 39.963664],\n\t\t\t\t\t\t[-75.017468, 39.963509],\n\t\t\t\t\t\t[-75.016653, 39.960623],\n\t\t\t\t\t\t[-75.017537, 39.959087],\n\t\t\t\t\t\t[-75.013114, 39.956433],\n\t\t\t\t\t\t[-75.013450, 39.954188],\n\t\t\t\t\t\t[-75.014966, 39.946546],\n\t\t\t\t\t\t[-74.994442, 39.939266],\n\t\t\t\t\t\t[-74.988925, 39.941050],\n\t\t\t\t\t\t[-74.974879, 39.938382],\n\t\t\t\t\t\t[-74.984549, 39.931238],\n\t\t\t\t\t\t[-74.983717, 39.926940],\n\t\t\t\t\t\t[-74.964146, 39.920683],\n\t\t\t\t\t\t[-74.951823, 39.901470],\n\t\t\t\t\t\t[-74.932174, 39.887532],\n\t\t\t\t\t\t[-74.926935, 39.873839],\n\t\t\t\t\t\t[-74.903267, 39.791247],\n\t\t\t\t\t\t[-74.902546, 39.790797],\n\t\t\t\t\t\t[-74.889062, 39.781804],\n\t\t\t\t\t\t[-74.876499, 39.781647],\n\t\t\t\t\t\t[-74.845183, 39.790000],\n\t\t\t\t\t\t[-74.812471, 39.785269],\n\t\t\t\t\t\t[-74.791478, 39.772119],\n\t\t\t\t\t\t[-74.772894, 39.750929],\n\t\t\t\t\t\t[-74.758064, 39.743695],\n\t\t\t\t\t\t[-74.736309, 39.729909],\n\t\t\t\t\t\t[-74.801051, 39.674102],\n\t\t\t\t\t\t[-74.877189, 39.608288],\n\t\t\t\t\t\t[-74.930585, 39.690850],\n\t\t\t\t\t\t[-75.087070, 39.779576],\n\t\t\t\t\t\t[-75.153925, 39.906144],\n\t\t\t\t\t\t[-75.133220, 39.922512]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US34015\",\n\t\t\t\t\"STATE\": \"34\",\n\t\t\t\t\"COUNTY\": \"015\",\n\t\t\t\t\"NAME\": \"Gloucester\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 322.005000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-75.210972, 39.865706],\n\t\t\t\t\t\t[-75.210425, 39.865913],\n\t\t\t\t\t\t[-75.184952, 39.881615],\n\t\t\t\t\t\t[-75.153925, 39.906144],\n\t\t\t\t\t\t[-75.087070, 39.779576],\n\t\t\t\t\t\t[-74.930585, 39.690850],\n\t\t\t\t\t\t[-74.877189, 39.608288],\n\t\t\t\t\t\t[-74.911566, 39.578620],\n\t\t\t\t\t\t[-74.985223, 39.514802],\n\t\t\t\t\t\t[-75.061973, 39.568643],\n\t\t\t\t\t\t[-75.199706, 39.666912],\n\t\t\t\t\t\t[-75.326452, 39.689992],\n\t\t\t\t\t\t[-75.378232, 39.745763],\n\t\t\t\t\t\t[-75.440623, 39.780926],\n\t\t\t\t\t\t[-75.437938, 39.783413],\n\t\t\t\t\t\t[-75.416095, 39.795830],\n\t\t\t\t\t\t[-75.415041, 39.801786],\n\t\t\t\t\t\t[-75.390169, 39.816549],\n\t\t\t\t\t\t[-75.374635, 39.825770],\n\t\t\t\t\t\t[-75.306500, 39.849812],\n\t\t\t\t\t\t[-75.271159, 39.849440],\n\t\t\t\t\t\t[-75.235026, 39.856613],\n\t\t\t\t\t\t[-75.210972, 39.865706]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US34031\",\n\t\t\t\t\"STATE\": \"34\",\n\t\t\t\t\"COUNTY\": \"031\",\n\t\t\t\t\"NAME\": \"Passaic\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 184.593000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-74.234473, 41.142883],\n\t\t\t\t\t\t[-74.213373, 41.133828],\n\t\t\t\t\t\t[-74.270521, 41.022131],\n\t\t\t\t\t\t[-74.170988, 40.976997],\n\t\t\t\t\t\t[-74.170210, 40.983865],\n\t\t\t\t\t\t[-74.141048, 40.966348],\n\t\t\t\t\t\t[-74.146429, 40.948441],\n\t\t\t\t\t\t[-74.148158, 40.942339],\n\t\t\t\t\t\t[-74.148059, 40.941590],\n\t\t\t\t\t\t[-74.130031, 40.819962],\n\t\t\t\t\t\t[-74.246691, 40.880799],\n\t\t\t\t\t\t[-74.259813, 40.883769],\n\t\t\t\t\t\t[-74.270702, 40.896920],\n\t\t\t\t\t\t[-74.300327, 41.002743],\n\t\t\t\t\t\t[-74.309838, 40.998484],\n\t\t\t\t\t\t[-74.315226, 41.001991],\n\t\t\t\t\t\t[-74.334605, 41.003719],\n\t\t\t\t\t\t[-74.502892, 41.085904],\n\t\t\t\t\t\t[-74.365897, 41.202894],\n\t\t\t\t\t\t[-74.365664, 41.203400],\n\t\t\t\t\t\t[-74.234473, 41.142883]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US35001\",\n\t\t\t\t\"STATE\": \"35\",\n\t\t\t\t\"COUNTY\": \"001\",\n\t\t\t\t\"NAME\": \"Bernalillo\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1160.828000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-106.414475, 34.892225],\n\t\t\t\t\t\t[-106.685889, 34.906150],\n\t\t\t\t\t\t[-106.720666, 34.870053],\n\t\t\t\t\t\t[-107.024784, 34.870254],\n\t\t\t\t\t\t[-107.066694, 34.957189],\n\t\t\t\t\t\t[-107.196170, 35.219323],\n\t\t\t\t\t\t[-106.962038, 35.218392],\n\t\t\t\t\t\t[-106.763162, 35.218141],\n\t\t\t\t\t\t[-106.729852, 35.218073],\n\t\t\t\t\t\t[-106.598652, 35.217939],\n\t\t\t\t\t\t[-106.244827, 35.215204],\n\t\t\t\t\t\t[-106.243683, 35.041219],\n\t\t\t\t\t\t[-106.243866, 35.040088],\n\t\t\t\t\t\t[-106.243866, 34.953293],\n\t\t\t\t\t\t[-106.150155, 34.953449],\n\t\t\t\t\t\t[-106.149575, 34.870142],\n\t\t\t\t\t\t[-106.410977, 34.870254],\n\t\t\t\t\t\t[-106.410974, 34.889494],\n\t\t\t\t\t\t[-106.414475, 34.892225]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US35006\",\n\t\t\t\t\"STATE\": \"35\",\n\t\t\t\t\"COUNTY\": \"006\",\n\t\t\t\t\"NAME\": \"Cibola\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 4539.480000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-109.045851, 34.959718],\n\t\t\t\t\t\t[-108.469264, 34.958972],\n\t\t\t\t\t\t[-108.468585, 35.299239],\n\t\t\t\t\t\t[-108.468586, 35.306755],\n\t\t\t\t\t\t[-107.734212, 35.304934],\n\t\t\t\t\t\t[-107.734079, 35.348332],\n\t\t\t\t\t\t[-107.628210, 35.348333],\n\t\t\t\t\t\t[-107.628344, 35.304766],\n\t\t\t\t\t\t[-107.310041, 35.305192],\n\t\t\t\t\t\t[-107.239160, 35.305368],\n\t\t\t\t\t\t[-107.196170, 35.219323],\n\t\t\t\t\t\t[-107.066694, 34.957189],\n\t\t\t\t\t\t[-107.203039, 34.958064],\n\t\t\t\t\t\t[-107.204410, 34.578813],\n\t\t\t\t\t\t[-107.724854, 34.578060],\n\t\t\t\t\t\t[-109.046156, 34.579291],\n\t\t\t\t\t\t[-109.045851, 34.959718]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30051\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"051\",\n\t\t\t\t\"NAME\": \"Liberty\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1430.045000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-111.270702, 48.997895],\n\t\t\t\t\t\t[-110.887459, 48.998087],\n\t\t\t\t\t\t[-110.886706, 48.998124],\n\t\t\t\t\t\t[-110.743209, 48.998363],\n\t\t\t\t\t\t[-110.755649, 48.219671],\n\t\t\t\t\t\t[-110.827034, 48.219669],\n\t\t\t\t\t\t[-110.827168, 48.133173],\n\t\t\t\t\t\t[-111.409097, 48.132218],\n\t\t\t\t\t\t[-111.409005, 48.218380],\n\t\t\t\t\t\t[-111.408922, 48.219476],\n\t\t\t\t\t\t[-111.274733, 48.219444],\n\t\t\t\t\t\t[-111.270702, 48.997895]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30059\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"059\",\n\t\t\t\t\"NAME\": \"Meagher\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2391.913000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-110.281860, 46.184210],\n\t\t\t\t\t\t[-110.783982, 46.192408],\n\t\t\t\t\t\t[-110.790022, 46.192567],\n\t\t\t\t\t\t[-111.062560, 46.192897],\n\t\t\t\t\t\t[-111.127070, 46.273754],\n\t\t\t\t\t\t[-111.057211, 46.403450],\n\t\t\t\t\t\t[-111.126362, 46.441322],\n\t\t\t\t\t\t[-111.246288, 46.437997],\n\t\t\t\t\t\t[-111.276801, 46.516821],\n\t\t\t\t\t\t[-111.344970, 46.545832],\n\t\t\t\t\t\t[-111.330541, 46.633458],\n\t\t\t\t\t\t[-111.412842, 46.646878],\n\t\t\t\t\t\t[-111.497961, 46.762469],\n\t\t\t\t\t\t[-111.645393, 46.841937],\n\t\t\t\t\t\t[-111.658131, 46.913364],\n\t\t\t\t\t\t[-111.539341, 46.913427],\n\t\t\t\t\t\t[-111.539141, 47.000386],\n\t\t\t\t\t\t[-111.158518, 47.011501],\n\t\t\t\t\t\t[-111.158602, 47.088184],\n\t\t\t\t\t\t[-111.080855, 47.088138],\n\t\t\t\t\t\t[-111.104738, 47.029105],\n\t\t\t\t\t\t[-110.913285, 46.980853],\n\t\t\t\t\t\t[-110.857180, 46.922879],\n\t\t\t\t\t\t[-110.761016, 46.900286],\n\t\t\t\t\t\t[-110.751665, 46.844681],\n\t\t\t\t\t\t[-110.652877, 46.823626],\n\t\t\t\t\t\t[-110.620062, 46.771547],\n\t\t\t\t\t\t[-110.457163, 46.678720],\n\t\t\t\t\t\t[-110.273374, 46.710640],\n\t\t\t\t\t\t[-110.281858, 46.220519],\n\t\t\t\t\t\t[-110.281860, 46.184210]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30069\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"069\",\n\t\t\t\t\"NAME\": \"Petroleum\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1654.871000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-108.630950, 46.749414],\n\t\t\t\t\t\t[-108.608546, 47.097826],\n\t\t\t\t\t\t[-108.736711, 47.098196],\n\t\t\t\t\t\t[-108.719223, 47.270267],\n\t\t\t\t\t\t[-108.590492, 47.270463],\n\t\t\t\t\t\t[-108.590901, 47.306262],\n\t\t\t\t\t\t[-108.314955, 47.314908],\n\t\t\t\t\t\t[-108.312615, 47.583452],\n\t\t\t\t\t\t[-108.065418, 47.598294],\n\t\t\t\t\t\t[-107.931105, 47.569073],\n\t\t\t\t\t\t[-107.908907, 47.450638],\n\t\t\t\t\t\t[-107.962875, 47.354368],\n\t\t\t\t\t\t[-107.968483, 47.250033],\n\t\t\t\t\t\t[-107.919544, 47.017133],\n\t\t\t\t\t\t[-107.882588, 47.000151],\n\t\t\t\t\t\t[-107.939113, 46.876459],\n\t\t\t\t\t\t[-107.892117, 46.851537],\n\t\t\t\t\t\t[-107.827755, 46.755986],\n\t\t\t\t\t\t[-108.630950, 46.749414]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30093\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"093\",\n\t\t\t\t\"NAME\": \"Silver Bow\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 718.477000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-112.190269, 45.748503],\n\t\t\t\t\t\t[-112.515453, 45.746702],\n\t\t\t\t\t\t[-112.549534, 45.684317],\n\t\t\t\t\t\t[-112.687054, 45.624854],\n\t\t\t\t\t\t[-112.759339, 45.748209],\n\t\t\t\t\t\t[-113.085474, 45.860586],\n\t\t\t\t\t\t[-112.923572, 45.935524],\n\t\t\t\t\t\t[-112.938373, 45.993224],\n\t\t\t\t\t\t[-112.777105, 46.048363],\n\t\t\t\t\t\t[-112.777685, 46.135807],\n\t\t\t\t\t\t[-112.576850, 46.178859],\n\t\t\t\t\t\t[-112.504818, 46.183767],\n\t\t\t\t\t\t[-112.399399, 45.831089],\n\t\t\t\t\t\t[-112.190269, 45.748503]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30099\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"099\",\n\t\t\t\t\"NAME\": \"Teton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2272.375000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-111.408495, 47.987045],\n\t\t\t\t\t\t[-111.409117, 47.698277],\n\t\t\t\t\t\t[-111.667035, 47.697885],\n\t\t\t\t\t\t[-111.666800, 47.611241],\n\t\t\t\t\t\t[-111.922936, 47.611231],\n\t\t\t\t\t\t[-111.922530, 47.505078],\n\t\t\t\t\t\t[-112.047308, 47.516028],\n\t\t\t\t\t\t[-112.278406, 47.505955],\n\t\t\t\t\t\t[-112.552310, 47.652231],\n\t\t\t\t\t\t[-112.818574, 47.607849],\n\t\t\t\t\t\t[-112.914220, 47.694958],\n\t\t\t\t\t\t[-112.913256, 47.826216],\n\t\t\t\t\t\t[-112.984705, 47.953982],\n\t\t\t\t\t\t[-112.878615, 47.975766],\n\t\t\t\t\t\t[-113.016894, 48.132460],\n\t\t\t\t\t\t[-112.177757, 48.130932],\n\t\t\t\t\t\t[-112.177751, 48.087466],\n\t\t\t\t\t\t[-112.047253, 48.086892],\n\t\t\t\t\t\t[-111.983500, 48.043204],\n\t\t\t\t\t\t[-111.983753, 47.984771],\n\t\t\t\t\t\t[-111.408495, 47.987045]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30107\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"107\",\n\t\t\t\t\"NAME\": \"Wheatland\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1423.195000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-109.654304, 46.219402],\n\t\t\t\t\t\t[-110.281858, 46.220519],\n\t\t\t\t\t\t[-110.273374, 46.710640],\n\t\t\t\t\t\t[-109.969223, 46.752655],\n\t\t\t\t\t\t[-109.746006, 46.693744],\n\t\t\t\t\t\t[-109.389163, 46.693661],\n\t\t\t\t\t\t[-109.402906, 46.219706],\n\t\t\t\t\t\t[-109.654304, 46.219402]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31003\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"003\",\n\t\t\t\t\"NAME\": \"Antelope\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 857.218000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.300592, 42.088853],\n\t\t\t\t\t\t[-98.300235, 42.436913],\n\t\t\t\t\t\t[-97.834431, 42.437684],\n\t\t\t\t\t\t[-97.834699, 42.091108],\n\t\t\t\t\t\t[-97.834536, 42.089750],\n\t\t\t\t\t\t[-97.834336, 42.088987],\n\t\t\t\t\t\t[-97.833288, 41.916286],\n\t\t\t\t\t\t[-98.295602, 41.914954],\n\t\t\t\t\t\t[-98.295438, 42.088873],\n\t\t\t\t\t\t[-98.300592, 42.088853]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31009\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"009\",\n\t\t\t\t\"NAME\": \"Blaine\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 710.874000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.686959, 42.086075],\n\t\t\t\t\t\t[-99.686834, 41.740326],\n\t\t\t\t\t\t[-100.251224, 41.739817],\n\t\t\t\t\t\t[-100.265474, 41.739856],\n\t\t\t\t\t\t[-100.268125, 42.072190],\n\t\t\t\t\t\t[-100.267622, 42.086147],\n\t\t\t\t\t\t[-100.167605, 42.085848],\n\t\t\t\t\t\t[-99.686959, 42.086075]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31023\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"023\",\n\t\t\t\t\"NAME\": \"Butler\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 584.907000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.905910, 41.456436],\n\t\t\t\t\t\t[-96.905898, 41.455074],\n\t\t\t\t\t\t[-96.905859, 41.454625],\n\t\t\t\t\t\t[-96.905862, 41.453389],\n\t\t\t\t\t\t[-96.908507, 41.046091],\n\t\t\t\t\t\t[-96.910940, 41.046116],\n\t\t\t\t\t\t[-97.368118, 41.046947],\n\t\t\t\t\t\t[-97.368186, 41.396416],\n\t\t\t\t\t\t[-97.253519, 41.384212],\n\t\t\t\t\t\t[-97.175613, 41.377083],\n\t\t\t\t\t\t[-96.905910, 41.456436]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31035\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"035\",\n\t\t\t\t\"NAME\": \"Clay\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 572.289000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.273571, 40.350359],\n\t\t\t\t\t\t[-98.278090, 40.350347],\n\t\t\t\t\t\t[-98.278103, 40.698291],\n\t\t\t\t\t\t[-97.825723, 40.698555],\n\t\t\t\t\t\t[-97.824780, 40.698537],\n\t\t\t\t\t\t[-97.824114, 40.350541],\n\t\t\t\t\t\t[-98.273571, 40.350359]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31037\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"037\",\n\t\t\t\t\"NAME\": \"Colfax\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 411.660000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.905910, 41.456436],\n\t\t\t\t\t\t[-97.175613, 41.377083],\n\t\t\t\t\t\t[-97.253519, 41.384212],\n\t\t\t\t\t\t[-97.252425, 41.743085],\n\t\t\t\t\t\t[-97.019911, 41.742980],\n\t\t\t\t\t\t[-96.905922, 41.742763],\n\t\t\t\t\t\t[-96.905910, 41.456436]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31047\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"047\",\n\t\t\t\t\"NAME\": \"Dawson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1013.096000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.223311, 40.700254],\n\t\t\t\t\t\t[-100.224235, 41.046597],\n\t\t\t\t\t\t[-99.425986, 41.046471],\n\t\t\t\t\t\t[-99.417316, 40.670825],\n\t\t\t\t\t\t[-99.643462, 40.684911],\n\t\t\t\t\t\t[-99.981743, 40.700003],\n\t\t\t\t\t\t[-100.223311, 40.700254]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31053\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"053\",\n\t\t\t\t\"NAME\": \"Dodge\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 528.706000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.905910, 41.456436],\n\t\t\t\t\t\t[-96.905922, 41.742763],\n\t\t\t\t\t\t[-96.555172, 41.742018],\n\t\t\t\t\t\t[-96.444217, 41.741775],\n\t\t\t\t\t\t[-96.444785, 41.683633],\n\t\t\t\t\t\t[-96.443898, 41.523933],\n\t\t\t\t\t\t[-96.329012, 41.393136],\n\t\t\t\t\t\t[-96.470720, 41.393239],\n\t\t\t\t\t\t[-96.570351, 41.433426],\n\t\t\t\t\t\t[-96.905862, 41.453389],\n\t\t\t\t\t\t[-96.905859, 41.454625],\n\t\t\t\t\t\t[-96.905898, 41.455074],\n\t\t\t\t\t\t[-96.905910, 41.456436]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31063\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"063\",\n\t\t\t\t\"NAME\": \"Frontier\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 974.592000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.197807, 40.350027],\n\t\t\t\t\t\t[-100.758435, 40.349507],\n\t\t\t\t\t\t[-100.777372, 40.349447],\n\t\t\t\t\t\t[-100.777376, 40.349466],\n\t\t\t\t\t\t[-100.779227, 40.692008],\n\t\t\t\t\t\t[-100.777833, 40.700135],\n\t\t\t\t\t\t[-100.223311, 40.700254],\n\t\t\t\t\t\t[-99.981743, 40.700003],\n\t\t\t\t\t\t[-99.981193, 40.438291],\n\t\t\t\t\t\t[-100.095095, 40.438656],\n\t\t\t\t\t\t[-100.094798, 40.351245],\n\t\t\t\t\t\t[-100.197807, 40.350027]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31073\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"073\",\n\t\t\t\t\"NAME\": \"Gosper\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 458.155000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.642209, 40.351200],\n\t\t\t\t\t\t[-100.094798, 40.351245],\n\t\t\t\t\t\t[-100.095095, 40.438656],\n\t\t\t\t\t\t[-99.981193, 40.438291],\n\t\t\t\t\t\t[-99.981743, 40.700003],\n\t\t\t\t\t\t[-99.643462, 40.684911],\n\t\t\t\t\t\t[-99.643280, 40.682639],\n\t\t\t\t\t\t[-99.642209, 40.351200]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31085\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"085\",\n\t\t\t\t\"NAME\": \"Hayes\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 713.062000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.777376, 40.349466],\n\t\t\t\t\t\t[-101.323353, 40.350553],\n\t\t\t\t\t\t[-101.342788, 40.350444],\n\t\t\t\t\t\t[-101.345365, 40.698093],\n\t\t\t\t\t\t[-101.247963, 40.697802],\n\t\t\t\t\t\t[-100.777833, 40.700135],\n\t\t\t\t\t\t[-100.779227, 40.692008],\n\t\t\t\t\t\t[-100.777376, 40.349466]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31093\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"093\",\n\t\t\t\t\"NAME\": \"Howard\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 569.337000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.291419, 41.393894],\n\t\t\t\t\t\t[-98.286584, 41.393898],\n\t\t\t\t\t\t[-98.287168, 41.046363],\n\t\t\t\t\t\t[-98.721975, 41.046674],\n\t\t\t\t\t\t[-98.740760, 41.046702],\n\t\t\t\t\t\t[-98.740957, 41.046651],\n\t\t\t\t\t\t[-98.748526, 41.046640],\n\t\t\t\t\t\t[-98.744330, 41.394178],\n\t\t\t\t\t\t[-98.291419, 41.393894]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31097\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"097\",\n\t\t\t\t\"NAME\": \"Johnson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 376.051000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.067012, 40.523148],\n\t\t\t\t\t\t[-96.066736, 40.262038],\n\t\t\t\t\t\t[-96.463667, 40.262173],\n\t\t\t\t\t\t[-96.463632, 40.523013],\n\t\t\t\t\t\t[-96.455766, 40.522803],\n\t\t\t\t\t\t[-96.067012, 40.523148]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31117\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"117\",\n\t\t\t\t\"NAME\": \"McPherson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 858.976000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-101.269695, 41.394934],\n\t\t\t\t\t\t[-101.407260, 41.395416],\n\t\t\t\t\t\t[-101.406466, 41.743200],\n\t\t\t\t\t\t[-100.842459, 41.740404],\n\t\t\t\t\t\t[-100.711711, 41.739761],\n\t\t\t\t\t\t[-100.713132, 41.394575],\n\t\t\t\t\t\t[-100.713243, 41.393511],\n\t\t\t\t\t\t[-101.269695, 41.394934]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28079\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"079\",\n\t\t\t\t\"NAME\": \"Leake\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 583.000000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.730304, 32.634228],\n\t\t\t\t\t\t[-89.730140, 32.685119],\n\t\t\t\t\t\t[-89.730016, 32.884773],\n\t\t\t\t\t\t[-89.730154, 32.929924],\n\t\t\t\t\t\t[-89.473311, 32.931115],\n\t\t\t\t\t\t[-89.319163, 32.931654],\n\t\t\t\t\t\t[-89.317588, 32.576458],\n\t\t\t\t\t\t[-89.322598, 32.576433],\n\t\t\t\t\t\t[-89.730152, 32.577248],\n\t\t\t\t\t\t[-89.730304, 32.634228]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28083\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"083\",\n\t\t\t\t\"NAME\": \"Leflore\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 592.539000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.136787, 33.721648],\n\t\t\t\t\t\t[-90.137011, 33.676944],\n\t\t\t\t\t\t[-90.127775, 33.676956],\n\t\t\t\t\t\t[-90.101401, 33.458940],\n\t\t\t\t\t\t[-90.174756, 33.417003],\n\t\t\t\t\t\t[-90.174614, 33.333378],\n\t\t\t\t\t\t[-90.321513, 33.375121],\n\t\t\t\t\t\t[-90.331589, 33.302825],\n\t\t\t\t\t\t[-90.373500, 33.242209],\n\t\t\t\t\t\t[-90.453801, 33.267302],\n\t\t\t\t\t\t[-90.453233, 33.329484],\n\t\t\t\t\t\t[-90.451643, 33.811390],\n\t\t\t\t\t\t[-90.182584, 33.809322],\n\t\t\t\t\t\t[-90.185599, 33.765514],\n\t\t\t\t\t\t[-90.294502, 33.750981],\n\t\t\t\t\t\t[-90.269105, 33.697208],\n\t\t\t\t\t\t[-90.136787, 33.721648]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28095\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"095\",\n\t\t\t\t\"NAME\": \"Monroe\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 765.094000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.719979, 33.811330],\n\t\t\t\t\t\t[-88.718964, 34.074521],\n\t\t\t\t\t\t[-88.718693, 34.089340],\n\t\t\t\t\t\t[-88.543352, 34.089044],\n\t\t\t\t\t\t[-88.203597, 34.086530],\n\t\t\t\t\t\t[-88.207229, 34.058333],\n\t\t\t\t\t\t[-88.226428, 33.912875],\n\t\t\t\t\t\t[-88.226517, 33.911665],\n\t\t\t\t\t\t[-88.226517, 33.911551],\n\t\t\t\t\t\t[-88.248390, 33.744908],\n\t\t\t\t\t\t[-88.325119, 33.745591],\n\t\t\t\t\t\t[-88.370330, 33.685918],\n\t\t\t\t\t\t[-88.513917, 33.650209],\n\t\t\t\t\t\t[-88.496414, 33.680075],\n\t\t\t\t\t\t[-88.719626, 33.680253],\n\t\t\t\t\t\t[-88.719979, 33.811330]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28099\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"099\",\n\t\t\t\t\"NAME\": \"Neshoba\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 570.141000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.914413, 32.926600],\n\t\t\t\t\t\t[-88.914516, 32.576955],\n\t\t\t\t\t\t[-89.317588, 32.576458],\n\t\t\t\t\t\t[-89.319163, 32.931654],\n\t\t\t\t\t\t[-88.914413, 32.926600]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28103\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"103\",\n\t\t\t\t\"NAME\": \"Noxubee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 695.138000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.669076, 33.286922],\n\t\t\t\t\t\t[-88.304514, 33.288320],\n\t\t\t\t\t\t[-88.340432, 32.991199],\n\t\t\t\t\t\t[-88.347692, 32.929059],\n\t\t\t\t\t\t[-88.812782, 32.925973],\n\t\t\t\t\t\t[-88.813053, 33.286424],\n\t\t\t\t\t\t[-88.669076, 33.286922]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28115\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"115\",\n\t\t\t\t\"NAME\": \"Pontotoc\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 497.689000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.824966, 34.364759],\n\t\t\t\t\t\t[-88.824523, 34.074948],\n\t\t\t\t\t\t[-89.139158, 34.074116],\n\t\t\t\t\t\t[-89.244436, 34.073942],\n\t\t\t\t\t\t[-89.245485, 34.161186],\n\t\t\t\t\t\t[-89.246339, 34.379344],\n\t\t\t\t\t\t[-88.928901, 34.379361],\n\t\t\t\t\t\t[-88.824966, 34.364759]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28117\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"117\",\n\t\t\t\t\"NAME\": \"Prentiss\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 414.980000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.736465, 34.508910],\n\t\t\t\t\t\t[-88.735440, 34.596483],\n\t\t\t\t\t\t[-88.717794, 34.596472],\n\t\t\t\t\t\t[-88.718508, 34.756781],\n\t\t\t\t\t\t[-88.365472, 34.755604],\n\t\t\t\t\t\t[-88.330699, 34.740721],\n\t\t\t\t\t\t[-88.329193, 34.463571],\n\t\t\t\t\t\t[-88.542079, 34.465276],\n\t\t\t\t\t\t[-88.541749, 34.509192],\n\t\t\t\t\t\t[-88.736465, 34.508910]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28127\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"127\",\n\t\t\t\t\"NAME\": \"Simpson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 589.163000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.730066, 32.047072],\n\t\t\t\t\t\t[-89.662086, 32.047239],\n\t\t\t\t\t\t[-89.653025, 31.780653],\n\t\t\t\t\t\t[-89.755103, 31.774654],\n\t\t\t\t\t\t[-89.974586, 31.761655],\n\t\t\t\t\t\t[-90.122565, 31.752680],\n\t\t\t\t\t\t[-90.132552, 31.856923],\n\t\t\t\t\t\t[-90.230331, 32.049728],\n\t\t\t\t\t\t[-89.730066, 32.047072]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28139\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"139\",\n\t\t\t\t\"NAME\": \"Tippah\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 457.815000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.017128, 34.994649],\n\t\t\t\t\t\t[-88.823049, 34.995157],\n\t\t\t\t\t\t[-88.823473, 34.858629],\n\t\t\t\t\t\t[-88.752956, 34.858775],\n\t\t\t\t\t\t[-88.718508, 34.756781],\n\t\t\t\t\t\t[-88.717794, 34.596472],\n\t\t\t\t\t\t[-88.735440, 34.596483],\n\t\t\t\t\t\t[-89.088488, 34.598247],\n\t\t\t\t\t\t[-89.088065, 34.815307],\n\t\t\t\t\t\t[-89.017551, 34.858723],\n\t\t\t\t\t\t[-89.017128, 34.994649]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28151\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"151\",\n\t\t\t\t\"NAME\": \"Washington\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 724.741000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.716277, 33.270032],\n\t\t\t\t\t\t[-90.680319, 33.201971],\n\t\t\t\t\t\t[-90.701845, 33.096294],\n\t\t\t\t\t\t[-90.914465, 33.097417],\n\t\t\t\t\t\t[-90.914337, 33.007697],\n\t\t\t\t\t\t[-91.157662, 33.011217],\n\t\t\t\t\t\t[-91.125656, 33.038276],\n\t\t\t\t\t\t[-91.087589, 33.145177],\n\t\t\t\t\t\t[-91.085984, 33.221644],\n\t\t\t\t\t\t[-91.110561, 33.245930],\n\t\t\t\t\t\t[-91.141216, 33.298397],\n\t\t\t\t\t\t[-91.184427, 33.419576],\n\t\t\t\t\t\t[-91.131885, 33.430063],\n\t\t\t\t\t\t[-91.118495, 33.449116],\n\t\t\t\t\t\t[-91.125109, 33.472842],\n\t\t\t\t\t\t[-91.215671, 33.529423],\n\t\t\t\t\t\t[-90.763509, 33.529389],\n\t\t\t\t\t\t[-90.763773, 33.270359],\n\t\t\t\t\t\t[-90.716277, 33.270032]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29001\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"001\",\n\t\t\t\t\"NAME\": \"Adair\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 567.324000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.345064, 40.037210],\n\t\t\t\t\t\t[-92.847477, 40.037301],\n\t\t\t\t\t\t[-92.856191, 40.037253],\n\t\t\t\t\t\t[-92.855629, 40.342736],\n\t\t\t\t\t\t[-92.684167, 40.343466],\n\t\t\t\t\t\t[-92.349975, 40.346505],\n\t\t\t\t\t\t[-92.349897, 40.302733],\n\t\t\t\t\t\t[-92.347801, 40.302756],\n\t\t\t\t\t\t[-92.345064, 40.037210]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29009\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"009\",\n\t\t\t\t\"NAME\": \"Barry\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 778.251000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.068898, 36.747818],\n\t\t\t\t\t\t[-94.062740, 36.931775],\n\t\t\t\t\t\t[-93.611003, 36.922831],\n\t\t\t\t\t\t[-93.573800, 36.820032],\n\t\t\t\t\t\t[-93.584282, 36.498896],\n\t\t\t\t\t\t[-93.700171, 36.499135],\n\t\t\t\t\t\t[-93.709956, 36.499179],\n\t\t\t\t\t\t[-93.718893, 36.499178],\n\t\t\t\t\t\t[-93.727552, 36.499055],\n\t\t\t\t\t\t[-93.728022, 36.499037],\n\t\t\t\t\t\t[-93.866758, 36.498789],\n\t\t\t\t\t\t[-93.906128, 36.498718],\n\t\t\t\t\t\t[-93.921840, 36.498718],\n\t\t\t\t\t\t[-93.959190, 36.498717],\n\t\t\t\t\t\t[-93.963920, 36.498717],\n\t\t\t\t\t\t[-94.077089, 36.498730],\n\t\t\t\t\t\t[-94.068898, 36.747818]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29021\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"021\",\n\t\t\t\t\"NAME\": \"Buchanan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 408.027000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.602257, 39.747195],\n\t\t\t\t\t\t[-94.601246, 39.530372],\n\t\t\t\t\t\t[-94.601326, 39.532138],\n\t\t\t\t\t\t[-95.102888, 39.533347],\n\t\t\t\t\t\t[-95.109304, 39.542285],\n\t\t\t\t\t\t[-95.113557, 39.553941],\n\t\t\t\t\t\t[-95.113077, 39.559133],\n\t\t\t\t\t\t[-95.107454, 39.573843],\n\t\t\t\t\t\t[-95.069592, 39.615106],\n\t\t\t\t\t\t[-95.015310, 39.674262],\n\t\t\t\t\t\t[-95.011103, 39.677572],\n\t\t\t\t\t\t[-94.937924, 39.725471],\n\t\t\t\t\t\t[-94.916932, 39.728186],\n\t\t\t\t\t\t[-94.895268, 39.763210],\n\t\t\t\t\t\t[-94.908267, 39.812172],\n\t\t\t\t\t\t[-94.876544, 39.820594],\n\t\t\t\t\t\t[-94.602819, 39.819608],\n\t\t\t\t\t\t[-94.602257, 39.747195]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29033\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"033\",\n\t\t\t\t\"NAME\": \"Carroll\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 694.621000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.758357, 39.611407],\n\t\t\t\t\t\t[-93.278098, 39.615632],\n\t\t\t\t\t\t[-93.275932, 39.484371],\n\t\t\t\t\t\t[-93.104485, 39.383656],\n\t\t\t\t\t\t[-93.200708, 39.401787],\n\t\t\t\t\t\t[-93.230079, 39.327877],\n\t\t\t\t\t\t[-93.332252, 39.309606],\n\t\t\t\t\t\t[-93.333337, 39.250012],\n\t\t\t\t\t\t[-93.477233, 39.292796],\n\t\t\t\t\t\t[-93.487885, 39.228875],\n\t\t\t\t\t\t[-93.650526, 39.248214],\n\t\t\t\t\t\t[-93.758463, 39.207021],\n\t\t\t\t\t\t[-93.758651, 39.209623],\n\t\t\t\t\t\t[-93.759183, 39.524558],\n\t\t\t\t\t\t[-93.758357, 39.611407]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29043\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"043\",\n\t\t\t\t\"NAME\": \"Christian\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 562.645000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.909336, 36.809178],\n\t\t\t\t\t\t[-93.146854, 36.813820],\n\t\t\t\t\t\t[-93.304359, 36.816866],\n\t\t\t\t\t\t[-93.342041, 36.817301],\n\t\t\t\t\t\t[-93.337451, 36.992494],\n\t\t\t\t\t\t[-93.610126, 36.995810],\n\t\t\t\t\t\t[-93.608899, 37.098153],\n\t\t\t\t\t\t[-93.065274, 37.088694],\n\t\t\t\t\t\t[-92.903273, 37.070651],\n\t\t\t\t\t\t[-92.909336, 36.809178]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29053\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"053\",\n\t\t\t\t\"NAME\": \"Cooper\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 564.765000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.050453, 38.928244],\n\t\t\t\t\t\t[-93.048471, 38.972418],\n\t\t\t\t\t\t[-92.934569, 39.064547],\n\t\t\t\t\t\t[-92.841617, 38.979821],\n\t\t\t\t\t\t[-92.558086, 38.970692],\n\t\t\t\t\t\t[-92.544946, 38.959691],\n\t\t\t\t\t\t[-92.540118, 38.953718],\n\t\t\t\t\t\t[-92.526437, 38.944776],\n\t\t\t\t\t\t[-92.514987, 38.938114],\n\t\t\t\t\t\t[-92.508657, 38.932710],\n\t\t\t\t\t\t[-92.498377, 38.922084],\n\t\t\t\t\t\t[-92.617147, 38.680013],\n\t\t\t\t\t\t[-92.839837, 38.683974],\n\t\t\t\t\t\t[-92.950502, 38.686028],\n\t\t\t\t\t\t[-93.059974, 38.693077],\n\t\t\t\t\t\t[-93.050453, 38.928244]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29065\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"065\",\n\t\t\t\t\"NAME\": \"Dent\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 752.790000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.528797, 37.788989],\n\t\t\t\t\t\t[-91.308311, 37.787186],\n\t\t\t\t\t\t[-91.310655, 37.700048],\n\t\t\t\t\t\t[-91.153345, 37.697340],\n\t\t\t\t\t\t[-91.155073, 37.588092],\n\t\t\t\t\t\t[-91.312458, 37.592824],\n\t\t\t\t\t\t[-91.314236, 37.505132],\n\t\t\t\t\t\t[-91.210984, 37.501911],\n\t\t\t\t\t\t[-91.211863, 37.415277],\n\t\t\t\t\t\t[-91.646626, 37.422731],\n\t\t\t\t\t\t[-91.755040, 37.424110],\n\t\t\t\t\t\t[-91.754795, 37.598768],\n\t\t\t\t\t\t[-91.809105, 37.598863],\n\t\t\t\t\t\t[-91.806219, 37.791286],\n\t\t\t\t\t\t[-91.528797, 37.788989]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29075\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"075\",\n\t\t\t\t\"NAME\": \"Gentry\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 491.422000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.216696, 40.136626],\n\t\t\t\t\t\t[-94.216494, 40.125030],\n\t\t\t\t\t\t[-94.218800, 40.034885],\n\t\t\t\t\t\t[-94.605377, 40.039217],\n\t\t\t\t\t\t[-94.606575, 40.042049],\n\t\t\t\t\t\t[-94.605942, 40.126127],\n\t\t\t\t\t\t[-94.605593, 40.127767],\n\t\t\t\t\t\t[-94.598487, 40.386714],\n\t\t\t\t\t\t[-94.214278, 40.384254],\n\t\t\t\t\t\t[-94.216696, 40.136626]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29085\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"085\",\n\t\t\t\t\"NAME\": \"Hickory\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 399.091000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.065199, 38.062479],\n\t\t\t\t\t\t[-93.072447, 37.902627],\n\t\t\t\t\t\t[-93.182706, 37.904144],\n\t\t\t\t\t\t[-93.187915, 37.802737],\n\t\t\t\t\t\t[-93.574103, 37.813336],\n\t\t\t\t\t\t[-93.573202, 37.828035],\n\t\t\t\t\t\t[-93.568709, 37.914918],\n\t\t\t\t\t\t[-93.512103, 37.913535],\n\t\t\t\t\t\t[-93.504025, 38.071757],\n\t\t\t\t\t\t[-93.497132, 38.072573],\n\t\t\t\t\t\t[-93.065199, 38.062479]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37001\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"001\",\n\t\t\t\t\"NAME\": \"Alamance\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 423.943000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.259481, 36.137273],\n\t\t\t\t\t\t[-79.249475, 35.876788],\n\t\t\t\t\t\t[-79.318849, 35.844078],\n\t\t\t\t\t\t[-79.542490, 35.843399],\n\t\t\t\t\t\t[-79.541978, 35.899627],\n\t\t\t\t\t\t[-79.541622, 35.902097],\n\t\t\t\t\t\t[-79.532365, 36.241342],\n\t\t\t\t\t\t[-79.532329, 36.241427],\n\t\t\t\t\t\t[-79.532096, 36.248584],\n\t\t\t\t\t\t[-79.523399, 36.249851],\n\t\t\t\t\t\t[-79.365366, 36.246411],\n\t\t\t\t\t\t[-79.315828, 36.245331],\n\t\t\t\t\t\t[-79.256964, 36.243866],\n\t\t\t\t\t\t[-79.259481, 36.137273]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37005\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"005\",\n\t\t\t\t\"NAME\": \"Alleghany\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 235.059000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.353169, 36.574724],\n\t\t\t\t\t\t[-81.307511, 36.575024],\n\t\t\t\t\t\t[-81.061866, 36.567020],\n\t\t\t\t\t\t[-81.058844, 36.566976],\n\t\t\t\t\t\t[-80.945988, 36.563196],\n\t\t\t\t\t\t[-80.944338, 36.563058],\n\t\t\t\t\t\t[-80.901836, 36.561754],\n\t\t\t\t\t\t[-80.974619, 36.452846],\n\t\t\t\t\t\t[-80.967066, 36.401600],\n\t\t\t\t\t\t[-81.013615, 36.371271],\n\t\t\t\t\t\t[-81.094829, 36.440433],\n\t\t\t\t\t\t[-81.253482, 36.365351],\n\t\t\t\t\t\t[-81.353169, 36.574724]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37017\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"017\",\n\t\t\t\t\"NAME\": \"Bladen\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 874.328000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.256316, 34.399763],\n\t\t\t\t\t\t[-78.337248, 34.367089],\n\t\t\t\t\t\t[-78.446230, 34.376839],\n\t\t\t\t\t\t[-78.677447, 34.469435],\n\t\t\t\t\t\t[-78.871530, 34.482668],\n\t\t\t\t\t\t[-78.805744, 34.689267],\n\t\t\t\t\t\t[-78.901096, 34.834789],\n\t\t\t\t\t\t[-78.494610, 34.856464],\n\t\t\t\t\t\t[-78.254556, 34.553963],\n\t\t\t\t\t\t[-78.176496, 34.465264],\n\t\t\t\t\t\t[-78.256316, 34.399763]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37021\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"021\",\n\t\t\t\t\"NAME\": \"Buncombe\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 656.672000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.169018, 35.527841],\n\t\t\t\t\t\t[-82.266847, 35.465854],\n\t\t\t\t\t\t[-82.570269, 35.431255],\n\t\t\t\t\t\t[-82.672392, 35.459534],\n\t\t\t\t\t\t[-82.744383, 35.423342],\n\t\t\t\t\t\t[-82.800276, 35.470536],\n\t\t\t\t\t\t[-82.766726, 35.566764],\n\t\t\t\t\t\t[-82.883665, 35.678190],\n\t\t\t\t\t\t[-82.806917, 35.685686],\n\t\t\t\t\t\t[-82.514519, 35.803194],\n\t\t\t\t\t\t[-82.408728, 35.818061],\n\t\t\t\t\t\t[-82.348160, 35.810581],\n\t\t\t\t\t\t[-82.275394, 35.704423],\n\t\t\t\t\t\t[-82.290797, 35.591288],\n\t\t\t\t\t\t[-82.169018, 35.527841]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37027\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"027\",\n\t\t\t\t\"NAME\": \"Caldwell\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 471.566000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.334255, 35.796460],\n\t\t\t\t\t\t[-81.346340, 35.794072],\n\t\t\t\t\t\t[-81.355709, 35.780385],\n\t\t\t\t\t\t[-81.353862, 35.768895],\n\t\t\t\t\t\t[-81.364055, 35.767865],\n\t\t\t\t\t\t[-81.555960, 35.777332],\n\t\t\t\t\t\t[-81.807120, 35.962057],\n\t\t\t\t\t\t[-81.735974, 36.066826],\n\t\t\t\t\t\t[-81.811520, 36.111544],\n\t\t\t\t\t\t[-81.545455, 36.117398],\n\t\t\t\t\t\t[-81.328385, 35.996550],\n\t\t\t\t\t\t[-81.334255, 35.796460]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37055\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"055\",\n\t\t\t\t\"NAME\": \"Dare\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 383.420000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-75.753765, 35.199612],\n\t\t\t\t\t\t\t[-75.745220, 35.203030],\n\t\t\t\t\t\t\t[-75.734171, 35.204347],\n\t\t\t\t\t\t\t[-75.718015, 35.209377],\n\t\t\t\t\t\t\t[-75.708947, 35.213912],\n\t\t\t\t\t\t\t[-75.698972, 35.221166],\n\t\t\t\t\t\t\t[-75.694437, 35.222980],\n\t\t\t\t\t\t\t[-75.687490, 35.231171],\n\t\t\t\t\t\t\t[-75.684006, 35.232913],\n\t\t\t\t\t\t\t[-75.681916, 35.232913],\n\t\t\t\t\t\t\t[-75.675394, 35.228421],\n\t\t\t\t\t\t\t[-75.664512, 35.227514],\n\t\t\t\t\t\t\t[-75.640934, 35.233862],\n\t\t\t\t\t\t\t[-75.630358, 35.238487],\n\t\t\t\t\t\t\t[-75.615378, 35.248938],\n\t\t\t\t\t\t\t[-75.599005, 35.256253],\n\t\t\t\t\t\t\t[-75.598312, 35.261067],\n\t\t\t\t\t\t\t[-75.597960, 35.266704],\n\t\t\t\t\t\t\t[-75.596915, 35.269491],\n\t\t\t\t\t\t\t[-75.585419, 35.266356],\n\t\t\t\t\t\t\t[-75.581935, 35.263917],\n\t\t\t\t\t\t\t[-75.561033, 35.266008],\n\t\t\t\t\t\t\t[-75.535741, 35.272856],\n\t\t\t\t\t\t\t[-75.529393, 35.288272],\n\t\t\t\t\t\t\t[-75.523952, 35.318198],\n\t\t\t\t\t\t\t[-75.518511, 35.336335],\n\t\t\t\t\t\t\t[-75.512610, 35.362853],\n\t\t\t\t\t\t\t[-75.506722, 35.387118],\n\t\t\t\t\t\t\t[-75.500374, 35.424298],\n\t\t\t\t\t\t\t[-75.494933, 35.454224],\n\t\t\t\t\t\t\t[-75.487678, 35.485056],\n\t\t\t\t\t\t\t[-75.488585, 35.497752],\n\t\t\t\t\t\t\t[-75.489618, 35.508471],\n\t\t\t\t\t\t\t[-75.487528, 35.525889],\n\t\t\t\t\t\t\t[-75.482237, 35.538560],\n\t\t\t\t\t\t\t[-75.478610, 35.553069],\n\t\t\t\t\t\t\t[-75.478610, 35.599318],\n\t\t\t\t\t\t\t[-75.481330, 35.622896],\n\t\t\t\t\t\t\t[-75.487678, 35.648287],\n\t\t\t\t\t\t\t[-75.498675, 35.666281],\n\t\t\t\t\t\t\t[-75.507385, 35.680564],\n\t\t\t\t\t\t\t[-75.515745, 35.721671],\n\t\t\t\t\t\t\t[-75.515397, 35.730380],\n\t\t\t\t\t\t\t[-75.533512, 35.773577],\n\t\t\t\t\t\t\t[-75.528992, 35.776289],\n\t\t\t\t\t\t\t[-75.522232, 35.774178],\n\t\t\t\t\t\t\t[-75.502427, 35.742913],\n\t\t\t\t\t\t\t[-75.496086, 35.728515],\n\t\t\t\t\t\t\t[-75.479128, 35.678634],\n\t\t\t\t\t\t\t[-75.458659, 35.596597],\n\t\t\t\t\t\t\t[-75.460061, 35.581314],\n\t\t\t\t\t\t\t[-75.462491, 35.553556],\n\t\t\t\t\t\t\t[-75.471355, 35.479615],\n\t\t\t\t\t\t\t[-75.486771, 35.391652],\n\t\t\t\t\t\t\t[-75.502188, 35.320012],\n\t\t\t\t\t\t\t[-75.525920, 35.233839],\n\t\t\t\t\t\t\t[-75.533627, 35.225825],\n\t\t\t\t\t\t\t[-75.544809, 35.228421],\n\t\t\t\t\t\t\t[-75.560225, 35.232048],\n\t\t\t\t\t\t\t[-75.580176, 35.231142],\n\t\t\t\t\t\t\t[-75.610101, 35.227514],\n\t\t\t\t\t\t\t[-75.635493, 35.220260],\n\t\t\t\t\t\t\t[-75.672673, 35.208471],\n\t\t\t\t\t\t\t[-75.728897, 35.190334],\n\t\t\t\t\t\t\t[-75.749406, 35.185207],\n\t\t\t\t\t\t\t[-75.757916, 35.183079],\n\t\t\t\t\t\t\t[-75.769705, 35.180359],\n\t\t\t\t\t\t\t[-75.789655, 35.172197],\n\t\t\t\t\t\t\t[-75.840438, 35.151340],\n\t\t\t\t\t\t\t[-75.912985, 35.119600],\n\t\t\t\t\t\t\t[-75.944725, 35.105091],\n\t\t\t\t\t\t\t[-75.963768, 35.092395],\n\t\t\t\t\t\t\t[-75.982812, 35.081513],\n\t\t\t\t\t\t\t[-76.001510, 35.067230],\n\t\t\t\t\t\t\t[-76.013145, 35.061855],\n\t\t\t\t\t\t\t[-76.014954, 35.065349],\n\t\t\t\t\t\t\t[-76.013561, 35.068832],\n\t\t\t\t\t\t\t[-76.000949, 35.084234],\n\t\t\t\t\t\t\t[-75.991880, 35.092395],\n\t\t\t\t\t\t\t[-75.989175, 35.100882],\n\t\t\t\t\t\t\t[-75.990569, 35.108546],\n\t\t\t\t\t\t\t[-75.989175, 35.115165],\n\t\t\t\t\t\t\t[-75.983950, 35.120042],\n\t\t\t\t\t\t\t[-75.973499, 35.121087],\n\t\t\t\t\t\t\t[-75.966489, 35.117787],\n\t\t\t\t\t\t\t[-75.954700, 35.119600],\n\t\t\t\t\t\t\t[-75.923867, 35.135017],\n\t\t\t\t\t\t\t[-75.910265, 35.142271],\n\t\t\t\t\t\t\t[-75.893942, 35.150433],\n\t\t\t\t\t\t\t[-75.839531, 35.172197],\n\t\t\t\t\t\t\t[-75.819172, 35.176826],\n\t\t\t\t\t\t\t[-75.812902, 35.178568],\n\t\t\t\t\t\t\t[-75.801444, 35.183079],\n\t\t\t\t\t\t\t[-75.793283, 35.188520],\n\t\t\t\t\t\t\t[-75.785729, 35.194244],\n\t\t\t\t\t\t\t[-75.754289, 35.199402],\n\t\t\t\t\t\t\t[-75.753765, 35.199612]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-75.773329, 36.231529],\n\t\t\t\t\t\t\t[-75.772510, 36.229440],\n\t\t\t\t\t\t\t[-75.759637, 36.204705],\n\t\t\t\t\t\t\t[-75.738431, 36.154282],\n\t\t\t\t\t\t\t[-75.718310, 36.113674],\n\t\t\t\t\t\t\t[-75.696742, 36.077497],\n\t\t\t\t\t\t\t[-75.658537, 36.020430],\n\t\t\t\t\t\t\t[-75.569794, 35.863301],\n\t\t\t\t\t\t\t[-75.552299, 35.822173],\n\t\t\t\t\t\t\t[-75.538739, 35.797396],\n\t\t\t\t\t\t\t[-75.533012, 35.787377],\n\t\t\t\t\t\t\t[-75.536428, 35.780118],\n\t\t\t\t\t\t\t[-75.543259, 35.779691],\n\t\t\t\t\t\t\t[-75.546675, 35.787377],\n\t\t\t\t\t\t\t[-75.553934, 35.799332],\n\t\t\t\t\t\t\t[-75.566238, 35.813072],\n\t\t\t\t\t\t\t[-75.573083, 35.828867],\n\t\t\t\t\t\t\t[-75.588878, 35.844926],\n\t\t\t\t\t\t\t[-75.601250, 35.867302],\n\t\t\t\t\t\t\t[-75.619151, 35.889415],\n\t\t\t\t\t\t\t[-75.617045, 35.906000],\n\t\t\t\t\t\t\t[-75.617552, 35.914186],\n\t\t\t\t\t\t\t[-75.620114, 35.925288],\n\t\t\t\t\t\t\t[-75.631215, 35.941512],\n\t\t\t\t\t\t\t[-75.648899, 35.965758],\n\t\t\t\t\t\t\t[-75.668379, 35.978394],\n\t\t\t\t\t\t\t[-75.671801, 35.985238],\n\t\t\t\t\t\t\t[-75.678909, 35.993925],\n\t\t\t\t\t\t\t[-75.723662, 36.003139],\n\t\t\t\t\t\t\t[-75.727084, 36.010510],\n\t\t\t\t\t\t\t[-75.726558, 36.021040],\n\t\t\t\t\t\t\t[-75.722082, 36.032360],\n\t\t\t\t\t\t\t[-75.722609, 36.037362],\n\t\t\t\t\t\t\t[-75.726821, 36.040521],\n\t\t\t\t\t\t\t[-75.737088, 36.040784],\n\t\t\t\t\t\t\t[-75.740510, 36.046839],\n\t\t\t\t\t\t\t[-75.741563, 36.055526],\n\t\t\t\t\t\t\t[-75.739457, 36.066846],\n\t\t\t\t\t\t\t[-75.739720, 36.075270],\n\t\t\t\t\t\t\t[-75.750250, 36.121076],\n\t\t\t\t\t\t\t[-75.750479, 36.131208],\n\t\t\t\t\t\t\t[-75.752226, 36.140817],\n\t\t\t\t\t\t\t[-75.755720, 36.153922],\n\t\t\t\t\t\t\t[-75.775814, 36.201097],\n\t\t\t\t\t\t\t[-75.783676, 36.215949],\n\t\t\t\t\t\t\t[-75.793286, 36.226432],\n\t\t\t\t\t\t\t[-75.794371, 36.227336],\n\t\t\t\t\t\t\t[-75.773329, 36.231529]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-75.675245, 35.929024],\n\t\t\t\t\t\t\t[-75.659540, 35.919564],\n\t\t\t\t\t\t\t[-75.662938, 35.916166],\n\t\t\t\t\t\t\t[-75.662019, 35.906522],\n\t\t\t\t\t\t\t[-75.653478, 35.904686],\n\t\t\t\t\t\t\t[-75.648519, 35.906982],\n\t\t\t\t\t\t\t[-75.645120, 35.905788],\n\t\t\t\t\t\t\t[-75.627670, 35.883149],\n\t\t\t\t\t\t\t[-75.616833, 35.856331],\n\t\t\t\t\t\t\t[-75.619772, 35.847606],\n\t\t\t\t\t\t\t[-75.614361, 35.815659],\n\t\t\t\t\t\t\t[-75.620454, 35.809253],\n\t\t\t\t\t\t\t[-75.624235, 35.809387],\n\t\t\t\t\t\t\t[-75.638980, 35.818639],\n\t\t\t\t\t\t\t[-75.667891, 35.823540],\n\t\t\t\t\t\t\t[-75.675054, 35.830204],\n\t\t\t\t\t\t\t[-75.660086, 35.838610],\n\t\t\t\t\t\t\t[-75.660598, 35.862541],\n\t\t\t\t\t\t\t[-75.663356, 35.869835],\n\t\t\t\t\t\t\t[-75.672830, 35.882423],\n\t\t\t\t\t\t\t[-75.681415, 35.883980],\n\t\t\t\t\t\t\t[-75.697672, 35.901639],\n\t\t\t\t\t\t\t[-75.696871, 35.909556],\n\t\t\t\t\t\t\t[-75.702165, 35.915428],\n\t\t\t\t\t\t\t[-75.723782, 35.925569],\n\t\t\t\t\t\t\t[-75.727251, 35.933620],\n\t\t\t\t\t\t\t[-75.726807, 35.935844],\n\t\t\t\t\t\t\t[-75.718266, 35.939714],\n\t\t\t\t\t\t\t[-75.705323, 35.939403],\n\t\t\t\t\t\t\t[-75.691150, 35.936932],\n\t\t\t\t\t\t\t[-75.686358, 35.932973],\n\t\t\t\t\t\t\t[-75.675245, 35.929024]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-75.999386, 35.903521],\n\t\t\t\t\t\t\t[-75.977830, 35.897181],\n\t\t\t\t\t\t\t[-75.966247, 35.899287],\n\t\t\t\t\t\t\t[-75.962562, 35.901393],\n\t\t\t\t\t\t\t[-75.947820, 35.920347],\n\t\t\t\t\t\t\t[-75.934131, 35.928244],\n\t\t\t\t\t\t\t[-75.929919, 35.928771],\n\t\t\t\t\t\t\t[-75.927286, 35.931930],\n\t\t\t\t\t\t\t[-75.926760, 35.940354],\n\t\t\t\t\t\t\t[-75.937816, 35.950884],\n\t\t\t\t\t\t\t[-75.943608, 35.952464],\n\t\t\t\t\t\t\t[-75.946767, 35.955623],\n\t\t\t\t\t\t\t[-75.947293, 35.959835],\n\t\t\t\t\t\t\t[-75.938343, 35.965100],\n\t\t\t\t\t\t\t[-75.899382, 35.977209],\n\t\t\t\t\t\t\t[-75.879374, 35.978789],\n\t\t\t\t\t\t\t[-75.860420, 35.978262],\n\t\t\t\t\t\t\t[-75.849890, 35.976156],\n\t\t\t\t\t\t\t[-75.809350, 35.959308],\n\t\t\t\t\t\t\t[-75.805138, 35.954043],\n\t\t\t\t\t\t\t[-75.800926, 35.944566],\n\t\t\t\t\t\t\t[-75.782498, 35.935615],\n\t\t\t\t\t\t\t[-75.782498, 35.928244],\n\t\t\t\t\t\t\t[-75.778813, 35.918241],\n\t\t\t\t\t\t\t[-75.768809, 35.901393],\n\t\t\t\t\t\t\t[-75.751961, 35.878227],\n\t\t\t\t\t\t\t[-75.753014, 35.871382],\n\t\t\t\t\t\t\t[-75.748276, 35.852428],\n\t\t\t\t\t\t\t[-75.734587, 35.839266],\n\t\t\t\t\t\t\t[-75.727216, 35.822703],\n\t\t\t\t\t\t\t[-75.726689, 35.811361],\n\t\t\t\t\t\t\t[-75.732612, 35.790666],\n\t\t\t\t\t\t\t[-75.738233, 35.778301],\n\t\t\t\t\t\t\t[-75.739357, 35.770994],\n\t\t\t\t\t\t\t[-75.735422, 35.767622],\n\t\t\t\t\t\t\t[-75.724743, 35.742892],\n\t\t\t\t\t\t\t[-75.719123, 35.714227],\n\t\t\t\t\t\t\t[-75.715188, 35.708045],\n\t\t\t\t\t\t\t[-75.712940, 35.698490],\n\t\t\t\t\t\t\t[-75.713502, 35.693993],\n\t\t\t\t\t\t\t[-75.741605, 35.672073],\n\t\t\t\t\t\t\t[-75.742167, 35.655212],\n\t\t\t\t\t\t\t[-75.737109, 35.638350],\n\t\t\t\t\t\t\t[-75.729802, 35.628795],\n\t\t\t\t\t\t\t[-75.729802, 35.625985],\n\t\t\t\t\t\t\t[-75.747225, 35.610248],\n\t\t\t\t\t\t\t[-75.762963, 35.603503],\n\t\t\t\t\t\t\t[-75.778138, 35.592262],\n\t\t\t\t\t\t\t[-75.775328, 35.579335],\n\t\t\t\t\t\t\t[-75.797248, 35.574276],\n\t\t\t\t\t\t\t[-75.837154, 35.570904],\n\t\t\t\t\t\t\t[-75.851767, 35.578773],\n\t\t\t\t\t\t\t[-75.859636, 35.586641],\n\t\t\t\t\t\t\t[-75.869869, 35.582743],\n\t\t\t\t\t\t\t[-75.901164, 35.668998],\n\t\t\t\t\t\t\t[-76.045987, 35.666117],\n\t\t\t\t\t\t\t[-75.999386, 35.903521]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37057\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"057\",\n\t\t\t\t\"NAME\": \"Davidson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 552.675000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.395389, 35.973210],\n\t\t\t\t\t\t[-80.266920, 35.996552],\n\t\t\t\t\t\t[-80.213906, 35.996876],\n\t\t\t\t\t\t[-80.213833, 36.026772],\n\t\t\t\t\t\t[-80.149775, 36.026697],\n\t\t\t\t\t\t[-80.137549, 36.024857],\n\t\t\t\t\t\t[-80.043272, 36.010610],\n\t\t\t\t\t\t[-80.045563, 35.956436],\n\t\t\t\t\t\t[-80.045750, 35.955596],\n\t\t\t\t\t\t[-80.046663, 35.935236],\n\t\t\t\t\t\t[-80.046709, 35.920663],\n\t\t\t\t\t\t[-80.046923, 35.916808],\n\t\t\t\t\t\t[-80.066842, 35.505661],\n\t\t\t\t\t\t[-80.182682, 35.504335],\n\t\t\t\t\t\t[-80.208176, 35.580401],\n\t\t\t\t\t\t[-80.326578, 35.675475],\n\t\t\t\t\t\t[-80.332228, 35.719047],\n\t\t\t\t\t\t[-80.339465, 35.721385],\n\t\t\t\t\t\t[-80.369852, 35.716236],\n\t\t\t\t\t\t[-80.391729, 35.722258],\n\t\t\t\t\t\t[-80.413844, 35.722471],\n\t\t\t\t\t\t[-80.458904, 35.742811],\n\t\t\t\t\t\t[-80.464086, 35.827538],\n\t\t\t\t\t\t[-80.365681, 35.895787],\n\t\t\t\t\t\t[-80.395389, 35.973210]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37067\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"067\",\n\t\t\t\t\"NAME\": \"Forsyth\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 408.148000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.137549, 36.024857],\n\t\t\t\t\t\t[-80.149775, 36.026697],\n\t\t\t\t\t\t[-80.213833, 36.026772],\n\t\t\t\t\t\t[-80.213906, 35.996876],\n\t\t\t\t\t\t[-80.266920, 35.996552],\n\t\t\t\t\t\t[-80.395389, 35.973210],\n\t\t\t\t\t\t[-80.496403, 36.046536],\n\t\t\t\t\t\t[-80.516138, 36.092619],\n\t\t\t\t\t\t[-80.439622, 36.136552],\n\t\t\t\t\t\t[-80.452319, 36.241222],\n\t\t\t\t\t\t[-80.452452, 36.241356],\n\t\t\t\t\t\t[-80.452379, 36.241957],\n\t\t\t\t\t\t[-80.451954, 36.261635],\n\t\t\t\t\t\t[-80.035540, 36.257351],\n\t\t\t\t\t\t[-80.043272, 36.010610],\n\t\t\t\t\t\t[-80.137549, 36.024857]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37081\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"081\",\n\t\t\t\t\"NAME\": \"Guilford\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 645.704000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.035540, 36.257351],\n\t\t\t\t\t\t[-80.027352, 36.257507],\n\t\t\t\t\t\t[-79.808899, 36.249619],\n\t\t\t\t\t\t[-79.797538, 36.248806],\n\t\t\t\t\t\t[-79.700569, 36.246043],\n\t\t\t\t\t\t[-79.532365, 36.241342],\n\t\t\t\t\t\t[-79.541622, 35.902097],\n\t\t\t\t\t\t[-79.541978, 35.899627],\n\t\t\t\t\t\t[-80.020377, 35.919611],\n\t\t\t\t\t\t[-80.046709, 35.920663],\n\t\t\t\t\t\t[-80.046663, 35.935236],\n\t\t\t\t\t\t[-80.045750, 35.955596],\n\t\t\t\t\t\t[-80.045563, 35.956436],\n\t\t\t\t\t\t[-80.043272, 36.010610],\n\t\t\t\t\t\t[-80.035540, 36.257351]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37091\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"091\",\n\t\t\t\t\"NAME\": \"Hertford\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 353.060000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.706556, 36.243869],\n\t\t\t\t\t\t[-77.183194, 36.242692],\n\t\t\t\t\t\t[-77.208790, 36.246875],\n\t\t\t\t\t\t[-77.119577, 36.474139],\n\t\t\t\t\t\t[-77.164500, 36.546330],\n\t\t\t\t\t\t[-76.916048, 36.543815],\n\t\t\t\t\t\t[-76.916001, 36.543818],\n\t\t\t\t\t\t[-76.931821, 36.401070],\n\t\t\t\t\t\t[-76.762156, 36.352687],\n\t\t\t\t\t\t[-76.696601, 36.296211],\n\t\t\t\t\t\t[-76.690392, 36.267269],\n\t\t\t\t\t\t[-76.706556, 36.243869]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37103\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"103\",\n\t\t\t\t\"NAME\": \"Jones\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 470.708000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.473716, 35.228983],\n\t\t\t\t\t\t[-77.339077, 35.155076],\n\t\t\t\t\t\t[-77.125021, 35.077561],\n\t\t\t\t\t\t[-77.108813, 34.887572],\n\t\t\t\t\t\t[-77.090323, 34.802755],\n\t\t\t\t\t\t[-77.165803, 34.784945],\n\t\t\t\t\t\t[-77.221606, 34.887088],\n\t\t\t\t\t\t[-77.328398, 34.938317],\n\t\t\t\t\t\t[-77.367414, 34.906631],\n\t\t\t\t\t\t[-77.452144, 34.946963],\n\t\t\t\t\t\t[-77.675373, 34.973417],\n\t\t\t\t\t\t[-77.683380, 34.979123],\n\t\t\t\t\t\t[-77.731030, 35.008140],\n\t\t\t\t\t\t[-77.730784, 35.008259],\n\t\t\t\t\t\t[-77.601831, 35.071193],\n\t\t\t\t\t\t[-77.506638, 35.172177],\n\t\t\t\t\t\t[-77.527206, 35.243433],\n\t\t\t\t\t\t[-77.523210, 35.241725],\n\t\t\t\t\t\t[-77.478741, 35.230011],\n\t\t\t\t\t\t[-77.473716, 35.228983]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37117\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"117\",\n\t\t\t\t\"NAME\": \"Martin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 461.217000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.327686, 36.074512],\n\t\t\t\t\t\t[-77.206169, 36.004737],\n\t\t\t\t\t\t[-77.196689, 35.937433],\n\t\t\t\t\t\t[-77.043684, 35.943146],\n\t\t\t\t\t\t[-77.004306, 35.858714],\n\t\t\t\t\t\t[-76.918531, 35.895647],\n\t\t\t\t\t\t[-76.888624, 35.812287],\n\t\t\t\t\t\t[-76.830195, 35.885922],\n\t\t\t\t\t\t[-76.760842, 35.864822],\n\t\t\t\t\t\t[-76.845119, 35.705409],\n\t\t\t\t\t\t[-76.985749, 35.658485],\n\t\t\t\t\t\t[-77.174034, 35.733026],\n\t\t\t\t\t\t[-77.350602, 35.819214],\n\t\t\t\t\t\t[-77.342462, 35.905346],\n\t\t\t\t\t\t[-77.402701, 36.004933],\n\t\t\t\t\t\t[-77.339263, 36.064681],\n\t\t\t\t\t\t[-77.327686, 36.074512]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37127\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"127\",\n\t\t\t\t\"NAME\": \"Nash\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 540.407000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.915581, 35.836590],\n\t\t\t\t\t\t[-77.927859, 35.831508],\n\t\t\t\t\t\t[-77.931355, 35.830165],\n\t\t\t\t\t\t[-78.192070, 35.730443],\n\t\t\t\t\t\t[-78.254903, 35.817730],\n\t\t\t\t\t\t[-78.172179, 35.956301],\n\t\t\t\t\t\t[-78.006554, 36.202663],\n\t\t\t\t\t\t[-77.887083, 36.143840],\n\t\t\t\t\t\t[-77.697879, 36.152981],\n\t\t\t\t\t\t[-77.774125, 35.998742],\n\t\t\t\t\t\t[-77.777751, 35.984635],\n\t\t\t\t\t\t[-77.809100, 35.909272],\n\t\t\t\t\t\t[-77.822385, 35.878216],\n\t\t\t\t\t\t[-77.828444, 35.867208],\n\t\t\t\t\t\t[-77.915581, 35.836590]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37141\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"141\",\n\t\t\t\t\"NAME\": \"Pender\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 869.795000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.517960, 34.440483],\n\t\t\t\t\t\t[-77.556943, 34.417218],\n\t\t\t\t\t\t[-77.582323, 34.400506],\n\t\t\t\t\t\t[-77.635034, 34.359555],\n\t\t\t\t\t\t[-77.661673, 34.341868],\n\t\t\t\t\t\t[-77.687226, 34.320444],\n\t\t\t\t\t\t[-77.713322, 34.294879],\n\t\t\t\t\t\t[-77.715916, 34.292719],\n\t\t\t\t\t\t[-77.822995, 34.389359],\n\t\t\t\t\t\t[-78.029922, 34.331768],\n\t\t\t\t\t\t[-78.162350, 34.357007],\n\t\t\t\t\t\t[-78.256316, 34.399763],\n\t\t\t\t\t\t[-78.176496, 34.465264],\n\t\t\t\t\t\t[-78.254556, 34.553963],\n\t\t\t\t\t\t[-78.113208, 34.721969],\n\t\t\t\t\t\t[-77.680560, 34.720640],\n\t\t\t\t\t\t[-77.576411, 34.478737],\n\t\t\t\t\t\t[-77.517960, 34.440483]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37151\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"151\",\n\t\t\t\t\"NAME\": \"Randolph\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 782.517000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.046923, 35.916808],\n\t\t\t\t\t\t[-80.046709, 35.920663],\n\t\t\t\t\t\t[-80.020377, 35.919611],\n\t\t\t\t\t\t[-79.541978, 35.899627],\n\t\t\t\t\t\t[-79.542490, 35.843399],\n\t\t\t\t\t\t[-79.555896, 35.515085],\n\t\t\t\t\t\t[-79.769285, 35.511457],\n\t\t\t\t\t\t[-80.066842, 35.505661],\n\t\t\t\t\t\t[-80.046923, 35.916808]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37165\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"165\",\n\t\t\t\t\"NAME\": \"Scotland\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 318.845000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.461754, 34.630432],\n\t\t\t\t\t\t[-79.468717, 34.635323],\n\t\t\t\t\t\t[-79.471599, 34.637200],\n\t\t\t\t\t\t[-79.479305, 34.644640],\n\t\t\t\t\t\t[-79.490201, 34.653819],\n\t\t\t\t\t\t[-79.519043, 34.677321],\n\t\t\t\t\t\t[-79.520269, 34.678327],\n\t\t\t\t\t\t[-79.554454, 34.706363],\n\t\t\t\t\t\t[-79.561691, 34.711996],\n\t\t\t\t\t\t[-79.631577, 34.768835],\n\t\t\t\t\t\t[-79.634216, 34.771012],\n\t\t\t\t\t\t[-79.688088, 34.804897],\n\t\t\t\t\t\t[-79.690201, 34.804937],\n\t\t\t\t\t\t[-79.692948, 34.804973],\n\t\t\t\t\t\t[-79.561826, 34.910363],\n\t\t\t\t\t\t[-79.572684, 34.991968],\n\t\t\t\t\t\t[-79.459176, 35.043096],\n\t\t\t\t\t\t[-79.354278, 34.945641],\n\t\t\t\t\t\t[-79.349143, 34.838476],\n\t\t\t\t\t\t[-79.359305, 34.743079],\n\t\t\t\t\t\t[-79.364296, 34.737549],\n\t\t\t\t\t\t[-79.461754, 34.630432]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37167\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"167\",\n\t\t\t\t\"NAME\": \"Stanly\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 395.086000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.428251, 35.167347],\n\t\t\t\t\t\t[-80.438682, 35.161758],\n\t\t\t\t\t\t[-80.468247, 35.166815],\n\t\t\t\t\t\t[-80.482590, 35.180278],\n\t\t\t\t\t\t[-80.505334, 35.184048],\n\t\t\t\t\t\t[-80.295236, 35.502947],\n\t\t\t\t\t\t[-80.182682, 35.504335],\n\t\t\t\t\t\t[-80.051739, 35.372585],\n\t\t\t\t\t\t[-80.098185, 35.255173],\n\t\t\t\t\t\t[-80.075390, 35.143081],\n\t\t\t\t\t\t[-80.174176, 35.147992],\n\t\t\t\t\t\t[-80.277052, 35.196136],\n\t\t\t\t\t\t[-80.428251, 35.167347]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39055\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"055\",\n\t\t\t\t\"NAME\": \"Geauga\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 400.164000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.003066, 41.425928],\n\t\t\t\t\t\t[-81.003194, 41.424482],\n\t\t\t\t\t\t[-81.003319, 41.347860],\n\t\t\t\t\t\t[-81.391694, 41.348272],\n\t\t\t\t\t\t[-81.391005, 41.569716],\n\t\t\t\t\t\t[-81.295880, 41.569950],\n\t\t\t\t\t\t[-81.294669, 41.640889],\n\t\t\t\t\t\t[-81.101422, 41.641457],\n\t\t\t\t\t\t[-81.102258, 41.714307],\n\t\t\t\t\t\t[-81.003631, 41.715137],\n\t\t\t\t\t\t[-81.002990, 41.700009],\n\t\t\t\t\t\t[-81.003125, 41.501685],\n\t\t\t\t\t\t[-81.003066, 41.425928]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39063\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"063\",\n\t\t\t\t\"NAME\": \"Hancock\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 531.358000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.421054, 41.166780],\n\t\t\t\t\t\t[-83.420319, 40.991889],\n\t\t\t\t\t\t[-83.515883, 40.818134],\n\t\t\t\t\t\t[-83.880063, 40.819919],\n\t\t\t\t\t\t[-83.880423, 40.920429],\n\t\t\t\t\t\t[-83.881149, 41.167824],\n\t\t\t\t\t\t[-83.421054, 41.166780]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39065\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"065\",\n\t\t\t\t\"NAME\": \"Hardin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 470.405000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.520227, 40.504077],\n\t\t\t\t\t\t[-83.879932, 40.538708],\n\t\t\t\t\t\t[-83.880194, 40.644690],\n\t\t\t\t\t\t[-83.880063, 40.819919],\n\t\t\t\t\t\t[-83.515883, 40.818134],\n\t\t\t\t\t\t[-83.495799, 40.701617],\n\t\t\t\t\t\t[-83.419836, 40.686823],\n\t\t\t\t\t\t[-83.415303, 40.515495],\n\t\t\t\t\t\t[-83.418378, 40.505232],\n\t\t\t\t\t\t[-83.520227, 40.504077]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39075\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"075\",\n\t\t\t\t\"NAME\": \"Holmes\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 422.533000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.126199, 40.668229],\n\t\t\t\t\t\t[-81.650045, 40.668117],\n\t\t\t\t\t\t[-81.650048, 40.655260],\n\t\t\t\t\t\t[-81.649199, 40.635106],\n\t\t\t\t\t\t[-81.669654, 40.443866],\n\t\t\t\t\t\t[-81.709132, 40.444775],\n\t\t\t\t\t\t[-82.184607, 40.456280],\n\t\t\t\t\t\t[-82.179069, 40.573112],\n\t\t\t\t\t\t[-82.220110, 40.568206],\n\t\t\t\t\t\t[-82.220665, 40.667580],\n\t\t\t\t\t\t[-82.126199, 40.668229]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39089\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"089\",\n\t\t\t\t\"NAME\": \"Licking\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 682.500000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.581813, 39.930156],\n\t\t\t\t\t\t[-82.782495, 39.939662],\n\t\t\t\t\t\t[-82.761827, 40.125855],\n\t\t\t\t\t\t[-82.750747, 40.276996],\n\t\t\t\t\t\t[-82.476114, 40.264703],\n\t\t\t\t\t\t[-82.364344, 40.240957],\n\t\t\t\t\t\t[-82.326025, 40.239725],\n\t\t\t\t\t\t[-82.195911, 40.239071],\n\t\t\t\t\t\t[-82.182823, 40.238624],\n\t\t\t\t\t\t[-82.187105, 40.166880],\n\t\t\t\t\t\t[-82.198772, 39.950140],\n\t\t\t\t\t\t[-82.233974, 39.913260],\n\t\t\t\t\t\t[-82.462813, 39.930380],\n\t\t\t\t\t\t[-82.473423, 39.925065],\n\t\t\t\t\t\t[-82.581813, 39.930156]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39097\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"097\",\n\t\t\t\t\"NAME\": \"Madison\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 465.875000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.503714, 40.111468],\n\t\t\t\t\t\t[-83.206273, 40.107733],\n\t\t\t\t\t\t[-83.253830, 40.049218],\n\t\t\t\t\t\t[-83.243702, 39.812503],\n\t\t\t\t\t\t[-83.252435, 39.695438],\n\t\t\t\t\t\t[-83.653330, 39.716876],\n\t\t\t\t\t\t[-83.648882, 39.761115],\n\t\t\t\t\t\t[-83.648641, 39.768478],\n\t\t\t\t\t\t[-83.647169, 39.773029],\n\t\t\t\t\t\t[-83.588041, 39.768778],\n\t\t\t\t\t\t[-83.516155, 40.010188],\n\t\t\t\t\t\t[-83.503714, 40.111468]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39109\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"109\",\n\t\t\t\t\"NAME\": \"Miami\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 406.580000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.157223, 39.885630],\n\t\t\t\t\t\t[-84.157671, 39.922970],\n\t\t\t\t\t\t[-84.425902, 39.919622],\n\t\t\t\t\t\t[-84.432575, 40.197037],\n\t\t\t\t\t\t[-84.022919, 40.183945],\n\t\t\t\t\t\t[-84.036069, 40.040182],\n\t\t\t\t\t\t[-84.051039, 39.879807],\n\t\t\t\t\t\t[-84.056413, 39.879875],\n\t\t\t\t\t\t[-84.098237, 39.882529],\n\t\t\t\t\t\t[-84.104830, 39.882652],\n\t\t\t\t\t\t[-84.154452, 39.885587],\n\t\t\t\t\t\t[-84.157223, 39.885630]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39121\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"121\",\n\t\t\t\t\"NAME\": \"Noble\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 398.012000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.588185, 39.586973],\n\t\t\t\t\t\t[-81.586132, 39.663993],\n\t\t\t\t\t\t[-81.643200, 39.665681],\n\t\t\t\t\t\t[-81.639886, 39.753420],\n\t\t\t\t\t\t[-81.697442, 39.755572],\n\t\t\t\t\t\t[-81.694146, 39.842636],\n\t\t\t\t\t\t[-81.580313, 39.839104],\n\t\t\t\t\t\t[-81.578590, 39.897683],\n\t\t\t\t\t\t[-81.464108, 39.894550],\n\t\t\t\t\t\t[-81.386006, 39.950694],\n\t\t\t\t\t\t[-81.234053, 39.951270],\n\t\t\t\t\t\t[-81.237316, 39.867828],\n\t\t\t\t\t\t[-81.313591, 39.869471],\n\t\t\t\t\t\t[-81.319125, 39.707360],\n\t\t\t\t\t\t[-81.283075, 39.605796],\n\t\t\t\t\t\t[-81.394934, 39.601547],\n\t\t\t\t\t\t[-81.473160, 39.645976],\n\t\t\t\t\t\t[-81.473471, 39.583318],\n\t\t\t\t\t\t[-81.588185, 39.586973]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39131\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"131\",\n\t\t\t\t\"NAME\": \"Pike\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 440.282000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.043620, 38.956939],\n\t\t\t\t\t\t[-83.212107, 38.960148],\n\t\t\t\t\t\t[-83.270817, 39.015791],\n\t\t\t\t\t\t[-83.385637, 39.055197],\n\t\t\t\t\t\t[-83.353531, 39.197585],\n\t\t\t\t\t\t[-82.785891, 39.168769],\n\t\t\t\t\t\t[-82.807090, 38.948073],\n\t\t\t\t\t\t[-83.043620, 38.956939]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39143\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"143\",\n\t\t\t\t\"NAME\": \"Sandusky\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 408.453000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.414626, 41.500228],\n\t\t\t\t\t\t[-83.338196, 41.457508],\n\t\t\t\t\t\t[-82.952224, 41.458239],\n\t\t\t\t\t\t[-82.847713, 41.430326],\n\t\t\t\t\t\t[-82.841475, 41.290023],\n\t\t\t\t\t\t[-82.840087, 41.255337],\n\t\t\t\t\t\t[-83.419843, 41.254003],\n\t\t\t\t\t\t[-83.414626, 41.500228]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39147\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"147\",\n\t\t\t\t\"NAME\": \"Seneca\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 551.017000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.305004, 40.992787],\n\t\t\t\t\t\t[-83.420319, 40.991889],\n\t\t\t\t\t\t[-83.421054, 41.166780],\n\t\t\t\t\t\t[-83.419843, 41.254003],\n\t\t\t\t\t\t[-82.840087, 41.255337],\n\t\t\t\t\t\t[-82.829512, 40.996624],\n\t\t\t\t\t\t[-83.112737, 40.993447],\n\t\t\t\t\t\t[-83.305004, 40.992787]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39159\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"159\",\n\t\t\t\t\"NAME\": \"Union\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 431.730000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.551338, 40.229370],\n\t\t\t\t\t\t[-83.520227, 40.504077],\n\t\t\t\t\t\t[-83.418378, 40.505232],\n\t\t\t\t\t\t[-83.248183, 40.507034],\n\t\t\t\t\t\t[-83.248595, 40.443989],\n\t\t\t\t\t\t[-83.248428, 40.244466],\n\t\t\t\t\t\t[-83.172330, 40.244257],\n\t\t\t\t\t\t[-83.169981, 40.143087],\n\t\t\t\t\t\t[-83.170208, 40.106927],\n\t\t\t\t\t\t[-83.206273, 40.107733],\n\t\t\t\t\t\t[-83.503714, 40.111468],\n\t\t\t\t\t\t[-83.494498, 40.225467],\n\t\t\t\t\t\t[-83.551338, 40.229370]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39169\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"169\",\n\t\t\t\t\"NAME\": \"Wayne\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 554.929000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.127900, 40.900902],\n\t\t\t\t\t\t[-82.128544, 40.929977],\n\t\t\t\t\t\t[-82.127904, 40.937321],\n\t\t\t\t\t\t[-82.129334, 40.991807],\n\t\t\t\t\t\t[-81.688491, 40.988590],\n\t\t\t\t\t\t[-81.647736, 40.914386],\n\t\t\t\t\t\t[-81.650045, 40.668117],\n\t\t\t\t\t\t[-82.126199, 40.668229],\n\t\t\t\t\t\t[-82.125010, 40.886263],\n\t\t\t\t\t\t[-82.127900, 40.900902]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39173\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"173\",\n\t\t\t\t\"NAME\": \"Wood\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 617.205000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.703336, 41.528952],\n\t\t\t\t\t\t[-83.569934, 41.617150],\n\t\t\t\t\t\t[-83.415919, 41.618938],\n\t\t\t\t\t\t[-83.414626, 41.500228],\n\t\t\t\t\t\t[-83.419843, 41.254003],\n\t\t\t\t\t\t[-83.421054, 41.166780],\n\t\t\t\t\t\t[-83.881149, 41.167824],\n\t\t\t\t\t\t[-83.883234, 41.414503],\n\t\t\t\t\t\t[-83.712432, 41.492856],\n\t\t\t\t\t\t[-83.703336, 41.528952]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40009\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"009\",\n\t\t\t\t\"NAME\": \"Beckham\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 901.805000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.000385, 35.182702],\n\t\t\t\t\t\t[-100.000389, 35.422364],\n\t\t\t\t\t\t[-99.575820, 35.421655],\n\t\t\t\t\t\t[-99.575598, 35.508861],\n\t\t\t\t\t\t[-99.364141, 35.508793],\n\t\t\t\t\t\t[-99.364217, 35.465328],\n\t\t\t\t\t\t[-99.360226, 35.116738],\n\t\t\t\t\t\t[-99.409268, 35.116493],\n\t\t\t\t\t\t[-99.409291, 35.114509],\n\t\t\t\t\t\t[-99.782727, 35.116780],\n\t\t\t\t\t\t[-99.782949, 35.030111],\n\t\t\t\t\t\t[-99.888571, 35.030262],\n\t\t\t\t\t\t[-100.000384, 35.030385],\n\t\t\t\t\t\t[-100.000385, 35.182702]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40019\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"019\",\n\t\t\t\t\"NAME\": \"Carter\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 822.175000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.933671, 34.172553],\n\t\t\t\t\t\t[-96.969627, 34.071020],\n\t\t\t\t\t\t[-97.560764, 34.071089],\n\t\t\t\t\t\t[-97.562616, 34.082921],\n\t\t\t\t\t\t[-97.562575, 34.289182],\n\t\t\t\t\t\t[-97.562323, 34.507036],\n\t\t\t\t\t\t[-97.352110, 34.506788],\n\t\t\t\t\t\t[-97.352158, 34.376227],\n\t\t\t\t\t\t[-97.036488, 34.375415],\n\t\t\t\t\t\t[-96.933457, 34.332661],\n\t\t\t\t\t\t[-96.933671, 34.172553]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40031\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"031\",\n\t\t\t\t\"NAME\": \"Comanche\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1069.287000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.142148, 34.506994],\n\t\t\t\t\t\t[-98.244120, 34.507121],\n\t\t\t\t\t\t[-98.295928, 34.449043],\n\t\t\t\t\t\t[-98.504958, 34.449414],\n\t\t\t\t\t\t[-98.504988, 34.420452],\n\t\t\t\t\t\t[-98.661956, 34.405948],\n\t\t\t\t\t\t[-98.661982, 34.507460],\n\t\t\t\t\t\t[-98.826070, 34.507370],\n\t\t\t\t\t\t[-98.826008, 34.594413],\n\t\t\t\t\t\t[-98.826124, 34.855466],\n\t\t\t\t\t\t[-98.619816, 34.854953],\n\t\t\t\t\t\t[-98.092645, 34.854919],\n\t\t\t\t\t\t[-98.089558, 34.854929],\n\t\t\t\t\t\t[-98.089098, 34.681119],\n\t\t\t\t\t\t[-98.141799, 34.681158],\n\t\t\t\t\t\t[-98.142148, 34.506994]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40043\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"043\",\n\t\t\t\t\"NAME\": \"Dewey\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 999.476000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.381022, 36.012925],\n\t\t\t\t\t\t[-99.382074, 36.164301],\n\t\t\t\t\t\t[-98.955849, 36.161577],\n\t\t\t\t\t\t[-98.636899, 36.164894],\n\t\t\t\t\t\t[-98.631985, 35.812402],\n\t\t\t\t\t\t[-99.375817, 35.812188],\n\t\t\t\t\t\t[-99.381022, 36.012925]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40053\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"053\",\n\t\t\t\t\"NAME\": \"Grant\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1000.871000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.462459, 36.593627],\n\t\t\t\t\t\t[-98.104286, 36.593578],\n\t\t\t\t\t\t[-98.109311, 36.593588],\n\t\t\t\t\t\t[-98.111985, 36.998133],\n\t\t\t\t\t\t[-98.045342, 36.998327],\n\t\t\t\t\t\t[-98.039890, 36.998349],\n\t\t\t\t\t\t[-98.033955, 36.998366],\n\t\t\t\t\t\t[-97.802313, 36.998713],\n\t\t\t\t\t\t[-97.802298, 36.998713],\n\t\t\t\t\t\t[-97.783489, 36.998847],\n\t\t\t\t\t\t[-97.783432, 36.998961],\n\t\t\t\t\t\t[-97.768704, 36.998750],\n\t\t\t\t\t\t[-97.697104, 36.998826],\n\t\t\t\t\t\t[-97.650466, 36.999004],\n\t\t\t\t\t\t[-97.637137, 36.999090],\n\t\t\t\t\t\t[-97.606549, 36.998682],\n\t\t\t\t\t\t[-97.564536, 36.998711],\n\t\t\t\t\t\t[-97.546498, 36.998747],\n\t\t\t\t\t\t[-97.545900, 36.998709],\n\t\t\t\t\t\t[-97.527292, 36.998750],\n\t\t\t\t\t\t[-97.472861, 36.998721],\n\t\t\t\t\t\t[-97.462346, 36.998685],\n\t\t\t\t\t\t[-97.462459, 36.593627]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37181\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"181\",\n\t\t\t\t\"NAME\": \"Vance\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 253.517000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.496474, 36.175217],\n\t\t\t\t\t\t[-78.508635, 36.183152],\n\t\t\t\t\t\t[-78.510319, 36.240763],\n\t\t\t\t\t\t[-78.511300, 36.267521],\n\t\t\t\t\t\t[-78.510658, 36.309712],\n\t\t\t\t\t\t[-78.511276, 36.430753],\n\t\t\t\t\t\t[-78.456970, 36.542474],\n\t\t\t\t\t\t[-78.441199, 36.542687],\n\t\t\t\t\t\t[-78.436333, 36.542666],\n\t\t\t\t\t\t[-78.323912, 36.543809],\n\t\t\t\t\t\t[-78.287670, 36.358369],\n\t\t\t\t\t\t[-78.307012, 36.266159],\n\t\t\t\t\t\t[-78.422426, 36.164160],\n\t\t\t\t\t\t[-78.496474, 36.175217]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37191\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"191\",\n\t\t\t\t\"NAME\": \"Wayne\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 553.087000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.805564, 35.369768],\n\t\t\t\t\t\t[-77.831055, 35.233440],\n\t\t\t\t\t\t[-77.834250, 35.177814],\n\t\t\t\t\t\t[-77.893043, 35.146560],\n\t\t\t\t\t\t[-78.043617, 35.192769],\n\t\t\t\t\t\t[-78.163539, 35.189370],\n\t\t\t\t\t\t[-78.304662, 35.286097],\n\t\t\t\t\t\t[-78.153233, 35.351421],\n\t\t\t\t\t\t[-78.154889, 35.417627],\n\t\t\t\t\t\t[-78.064603, 35.585419],\n\t\t\t\t\t\t[-77.823471, 35.585523],\n\t\t\t\t\t\t[-77.824291, 35.498663],\n\t\t\t\t\t\t[-77.826207, 35.476813],\n\t\t\t\t\t\t[-77.827000, 35.431151],\n\t\t\t\t\t\t[-77.818414, 35.415911],\n\t\t\t\t\t\t[-77.805590, 35.407469],\n\t\t\t\t\t\t[-77.799961, 35.382462],\n\t\t\t\t\t\t[-77.802742, 35.372945],\n\t\t\t\t\t\t[-77.805258, 35.370218],\n\t\t\t\t\t\t[-77.805564, 35.369768]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37197\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"197\",\n\t\t\t\t\"NAME\": \"Yadkin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 334.829000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.496403, 36.046536],\n\t\t\t\t\t\t[-80.693198, 36.051114],\n\t\t\t\t\t\t[-80.882180, 36.055731],\n\t\t\t\t\t\t[-80.873259, 36.236383],\n\t\t\t\t\t\t[-80.652865, 36.252571],\n\t\t\t\t\t\t[-80.547478, 36.285246],\n\t\t\t\t\t\t[-80.452319, 36.241222],\n\t\t\t\t\t\t[-80.439622, 36.136552],\n\t\t\t\t\t\t[-80.516138, 36.092619],\n\t\t\t\t\t\t[-80.496403, 36.046536]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US38007\",\n\t\t\t\t\"STATE\": \"38\",\n\t\t\t\t\"COUNTY\": \"007\",\n\t\t\t\t\"NAME\": \"Billings\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1148.853000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-103.609210, 46.629797],\n\t\t\t\t\t\t[-103.609545, 46.979902],\n\t\t\t\t\t\t[-103.666986, 46.979789],\n\t\t\t\t\t\t[-103.666723, 47.329354],\n\t\t\t\t\t\t[-103.099197, 47.328714],\n\t\t\t\t\t\t[-103.032569, 47.328692],\n\t\t\t\t\t\t[-103.032681, 46.980580],\n\t\t\t\t\t\t[-103.230991, 46.980296],\n\t\t\t\t\t\t[-103.231566, 46.629918],\n\t\t\t\t\t\t[-103.609210, 46.629797]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US38019\",\n\t\t\t\t\"STATE\": \"38\",\n\t\t\t\t\"COUNTY\": \"019\",\n\t\t\t\t\"NAME\": \"Cavalier\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1488.751000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.999819, 48.999769],\n\t\t\t\t\t\t[-97.950205, 49.000459],\n\t\t\t\t\t\t[-97.949577, 48.717693],\n\t\t\t\t\t\t[-97.927154, 48.543124],\n\t\t\t\t\t\t[-98.318098, 48.543773],\n\t\t\t\t\t\t[-98.970392, 48.544232],\n\t\t\t\t\t\t[-98.970368, 48.718089],\n\t\t\t\t\t\t[-98.999890, 48.718129],\n\t\t\t\t\t\t[-98.999819, 48.999769]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US38031\",\n\t\t\t\t\"STATE\": \"38\",\n\t\t\t\t\"COUNTY\": \"031\",\n\t\t\t\t\"NAME\": \"Foster\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 635.453000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.265846, 47.587618],\n\t\t\t\t\t\t[-98.500085, 47.587228],\n\t\t\t\t\t\t[-98.499246, 47.326538],\n\t\t\t\t\t\t[-99.250392, 47.326894],\n\t\t\t\t\t\t[-99.266280, 47.327194],\n\t\t\t\t\t\t[-99.265846, 47.587618]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US38035\",\n\t\t\t\t\"STATE\": \"38\",\n\t\t\t\t\"COUNTY\": \"035\",\n\t\t\t\t\"NAME\": \"Grand Forks\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1436.376000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.903434, 48.194897],\n\t\t\t\t\t\t[-97.147401, 48.193779],\n\t\t\t\t\t\t[-97.147498, 48.173227],\n\t\t\t\t\t\t[-97.147510, 48.170572],\n\t\t\t\t\t\t[-97.123135, 48.109497],\n\t\t\t\t\t\t[-97.098275, 48.071310],\n\t\t\t\t\t\t[-97.088158, 48.059515],\n\t\t\t\t\t\t[-97.023156, 47.873978],\n\t\t\t\t\t\t[-97.000356, 47.860915],\n\t\t\t\t\t\t[-96.980391, 47.815662],\n\t\t\t\t\t\t[-96.890671, 47.672153],\n\t\t\t\t\t\t[-97.472745, 47.672051],\n\t\t\t\t\t\t[-97.882405, 47.672179],\n\t\t\t\t\t\t[-97.882179, 48.020803],\n\t\t\t\t\t\t[-97.903434, 48.194897]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US38045\",\n\t\t\t\t\"STATE\": \"38\",\n\t\t\t\t\"COUNTY\": \"045\",\n\t\t\t\t\"NAME\": \"LaMoure\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1145.943000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.034573, 46.282796],\n\t\t\t\t\t\t[-99.003118, 46.282898],\n\t\t\t\t\t\t[-99.037367, 46.283151],\n\t\t\t\t\t\t[-99.036639, 46.630575],\n\t\t\t\t\t\t[-98.439056, 46.631120],\n\t\t\t\t\t\t[-98.033862, 46.630727],\n\t\t\t\t\t\t[-98.034573, 46.282796]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US38061\",\n\t\t\t\t\"STATE\": \"38\",\n\t\t\t\t\"COUNTY\": \"061\",\n\t\t\t\t\"NAME\": \"Mountrail\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1825.298000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-102.385758, 47.758008],\n\t\t\t\t\t\t[-102.561965, 47.780111],\n\t\t\t\t\t\t[-102.642266, 47.823713],\n\t\t\t\t\t\t[-102.644764, 47.906715],\n\t\t\t\t\t\t[-102.552981, 47.998646],\n\t\t\t\t\t\t[-102.663487, 48.076651],\n\t\t\t\t\t\t[-102.828477, 48.123664],\n\t\t\t\t\t\t[-102.828061, 48.372920],\n\t\t\t\t\t\t[-102.885737, 48.372578],\n\t\t\t\t\t\t[-102.885763, 48.546390],\n\t\t\t\t\t\t[-102.233892, 48.546339],\n\t\t\t\t\t\t[-101.973322, 48.547133],\n\t\t\t\t\t\t[-101.973399, 48.372095],\n\t\t\t\t\t\t[-101.922237, 48.372330],\n\t\t\t\t\t\t[-101.922123, 48.023173],\n\t\t\t\t\t\t[-101.871537, 48.023176],\n\t\t\t\t\t\t[-101.871862, 47.847589],\n\t\t\t\t\t\t[-102.385565, 47.847750],\n\t\t\t\t\t\t[-102.385758, 47.758008]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US38073\",\n\t\t\t\t\"STATE\": \"38\",\n\t\t\t\t\"COUNTY\": \"073\",\n\t\t\t\t\"NAME\": \"Ransom\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 862.357000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.006715, 46.282626],\n\t\t\t\t\t\t[-98.029816, 46.282636],\n\t\t\t\t\t\t[-98.034573, 46.282796],\n\t\t\t\t\t\t[-98.033862, 46.630727],\n\t\t\t\t\t\t[-97.682006, 46.629928],\n\t\t\t\t\t\t[-97.279948, 46.629348],\n\t\t\t\t\t\t[-97.280568, 46.282321],\n\t\t\t\t\t\t[-98.006715, 46.282626]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US38079\",\n\t\t\t\t\"STATE\": \"38\",\n\t\t\t\t\"COUNTY\": \"079\",\n\t\t\t\t\"NAME\": \"Rolette\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 903.079000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.525700, 48.999423],\n\t\t\t\t\t\t[-99.525895, 48.718384],\n\t\t\t\t\t\t[-99.493002, 48.718359],\n\t\t\t\t\t\t[-99.493189, 48.544834],\n\t\t\t\t\t\t[-100.145858, 48.545211],\n\t\t\t\t\t\t[-100.145494, 48.718875],\n\t\t\t\t\t\t[-100.183034, 48.718909],\n\t\t\t\t\t\t[-100.182707, 48.999230],\n\t\t\t\t\t\t[-99.913780, 48.999049],\n\t\t\t\t\t\t[-99.913705, 48.999049],\n\t\t\t\t\t\t[-99.861488, 48.999156],\n\t\t\t\t\t\t[-99.861454, 48.999202],\n\t\t\t\t\t\t[-99.525700, 48.999423]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US38091\",\n\t\t\t\t\"STATE\": \"38\",\n\t\t\t\t\"COUNTY\": \"091\",\n\t\t\t\t\"NAME\": \"Steele\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 712.215000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.706034, 47.239978],\n\t\t\t\t\t\t[-97.961208, 47.240512],\n\t\t\t\t\t\t[-97.986585, 47.326100],\n\t\t\t\t\t\t[-97.984810, 47.672300],\n\t\t\t\t\t\t[-97.882405, 47.672179],\n\t\t\t\t\t\t[-97.472745, 47.672051],\n\t\t\t\t\t\t[-97.474337, 47.324776],\n\t\t\t\t\t\t[-97.451512, 47.239061],\n\t\t\t\t\t\t[-97.706034, 47.239978]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US38103\",\n\t\t\t\t\"STATE\": \"38\",\n\t\t\t\t\"COUNTY\": \"103\",\n\t\t\t\t\"NAME\": \"Wells\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1271.047000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.265846, 47.587618],\n\t\t\t\t\t\t[-99.266280, 47.327194],\n\t\t\t\t\t\t[-99.480726, 47.327076],\n\t\t\t\t\t\t[-100.033292, 47.327192],\n\t\t\t\t\t\t[-100.032849, 47.673621],\n\t\t\t\t\t\t[-100.069514, 47.673650],\n\t\t\t\t\t\t[-100.069206, 47.847301],\n\t\t\t\t\t\t[-99.812167, 47.847257],\n\t\t\t\t\t\t[-99.297204, 47.846811],\n\t\t\t\t\t\t[-99.297318, 47.673004],\n\t\t\t\t\t\t[-99.265846, 47.587618]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39003\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"003\",\n\t\t\t\t\"NAME\": \"Allen\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 402.496000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.340531, 40.859099],\n\t\t\t\t\t\t[-84.109586, 40.860994],\n\t\t\t\t\t\t[-84.109516, 40.904730],\n\t\t\t\t\t\t[-83.880423, 40.920429],\n\t\t\t\t\t\t[-83.880063, 40.819919],\n\t\t\t\t\t\t[-83.880194, 40.644690],\n\t\t\t\t\t\t[-84.107787, 40.643069],\n\t\t\t\t\t\t[-84.222799, 40.685957],\n\t\t\t\t\t\t[-84.396778, 40.684926],\n\t\t\t\t\t\t[-84.397374, 40.815941],\n\t\t\t\t\t\t[-84.340531, 40.859099]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39015\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"015\",\n\t\t\t\t\"NAME\": \"Brown\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 490.016000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.903918, 38.768150],\n\t\t\t\t\t\t[-83.903971, 38.768160],\n\t\t\t\t\t\t[-83.943978, 38.783616],\n\t\t\t\t\t\t[-83.962123, 38.787384],\n\t\t\t\t\t\t[-83.978814, 38.787104],\n\t\t\t\t\t\t[-84.044486, 38.770572],\n\t\t\t\t\t\t[-84.052707, 38.770542],\n\t\t\t\t\t\t[-83.995284, 39.228189],\n\t\t\t\t\t\t[-83.993120, 39.254235],\n\t\t\t\t\t\t[-83.865679, 39.247333],\n\t\t\t\t\t\t[-83.872214, 39.021304],\n\t\t\t\t\t\t[-83.673018, 39.020430],\n\t\t\t\t\t\t[-83.705311, 38.639853],\n\t\t\t\t\t\t[-83.706043, 38.637101],\n\t\t\t\t\t\t[-83.762445, 38.652103],\n\t\t\t\t\t\t[-83.769347, 38.655220],\n\t\t\t\t\t\t[-83.773682, 38.661309],\n\t\t\t\t\t\t[-83.777823, 38.674453],\n\t\t\t\t\t\t[-83.853330, 38.752572],\n\t\t\t\t\t\t[-83.859028, 38.756793],\n\t\t\t\t\t\t[-83.870443, 38.761608],\n\t\t\t\t\t\t[-83.903918, 38.768150]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39027\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"027\",\n\t\t\t\t\"NAME\": \"Clinton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 408.684000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.988613, 39.444397],\n\t\t\t\t\t\t[-83.977005, 39.569169],\n\t\t\t\t\t\t[-83.670196, 39.550254],\n\t\t\t\t\t\t[-83.576286, 39.544547],\n\t\t\t\t\t\t[-83.590878, 39.378736],\n\t\t\t\t\t\t[-83.784793, 39.262888],\n\t\t\t\t\t\t[-83.865679, 39.247333],\n\t\t\t\t\t\t[-83.993120, 39.254235],\n\t\t\t\t\t\t[-84.006782, 39.255068],\n\t\t\t\t\t\t[-83.988613, 39.444397]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39039\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"039\",\n\t\t\t\t\"NAME\": \"Defiance\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 411.460000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.803926, 41.367959],\n\t\t\t\t\t\t[-84.804133, 41.408292],\n\t\t\t\t\t\t[-84.804046, 41.408361],\n\t\t\t\t\t\t[-84.804015, 41.411655],\n\t\t\t\t\t\t[-84.803956, 41.426044],\n\t\t\t\t\t\t[-84.341664, 41.427568],\n\t\t\t\t\t\t[-84.228454, 41.427810],\n\t\t\t\t\t\t[-84.228222, 41.165862],\n\t\t\t\t\t\t[-84.341602, 41.165524],\n\t\t\t\t\t\t[-84.341878, 41.209197],\n\t\t\t\t\t\t[-84.457059, 41.209434],\n\t\t\t\t\t\t[-84.457217, 41.253485],\n\t\t\t\t\t\t[-84.803492, 41.252562],\n\t\t\t\t\t\t[-84.803580, 41.270942],\n\t\t\t\t\t\t[-84.803581, 41.271079],\n\t\t\t\t\t\t[-84.803582, 41.271273],\n\t\t\t\t\t\t[-84.803926, 41.367959]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39047\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"047\",\n\t\t\t\t\"NAME\": \"Fayette\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 406.357000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.266737, 39.516249],\n\t\t\t\t\t\t[-83.317496, 39.449993],\n\t\t\t\t\t\t[-83.372714, 39.377416],\n\t\t\t\t\t\t[-83.375389, 39.377521],\n\t\t\t\t\t\t[-83.590878, 39.378736],\n\t\t\t\t\t\t[-83.576286, 39.544547],\n\t\t\t\t\t\t[-83.670196, 39.550254],\n\t\t\t\t\t\t[-83.653330, 39.716876],\n\t\t\t\t\t\t[-83.252435, 39.695438],\n\t\t\t\t\t\t[-83.266737, 39.516249]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US35015\",\n\t\t\t\t\"STATE\": \"35\",\n\t\t\t\t\"COUNTY\": \"015\",\n\t\t\t\t\"NAME\": \"Eddy\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 4175.726000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-104.024521, 32.000010],\n\t\t\t\t\t\t[-104.531756, 32.000117],\n\t\t\t\t\t\t[-104.531937, 32.000311],\n\t\t\t\t\t\t[-104.640918, 32.000396],\n\t\t\t\t\t\t[-104.643526, 32.000443],\n\t\t\t\t\t\t[-104.847757, 32.000482],\n\t\t\t\t\t\t[-104.851525, 32.520505],\n\t\t\t\t\t\t[-104.842026, 32.520705],\n\t\t\t\t\t\t[-104.841229, 32.963303],\n\t\t\t\t\t\t[-103.828855, 32.965460],\n\t\t\t\t\t\t[-103.814600, 32.965203],\n\t\t\t\t\t\t[-103.813959, 32.522464],\n\t\t\t\t\t\t[-103.722938, 32.522587],\n\t\t\t\t\t\t[-103.722853, 32.000221],\n\t\t\t\t\t\t[-103.980179, 32.000125],\n\t\t\t\t\t\t[-104.024521, 32.000010]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US35027\",\n\t\t\t\t\"STATE\": \"35\",\n\t\t\t\t\"COUNTY\": \"027\",\n\t\t\t\t\"NAME\": \"Lincoln\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 4831.091000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-105.312968, 34.346720],\n\t\t\t\t\t\t[-104.891850, 34.346989],\n\t\t\t\t\t\t[-104.893141, 34.088304],\n\t\t\t\t\t\t[-104.885186, 33.306267],\n\t\t\t\t\t\t[-104.903820, 33.306184],\n\t\t\t\t\t\t[-104.905762, 33.138626],\n\t\t\t\t\t\t[-105.316882, 33.132218],\n\t\t\t\t\t\t[-105.319045, 33.305090],\n\t\t\t\t\t\t[-105.725957, 33.304834],\n\t\t\t\t\t\t[-105.727343, 33.390524],\n\t\t\t\t\t\t[-106.345851, 33.390815],\n\t\t\t\t\t\t[-106.372235, 33.390883],\n\t\t\t\t\t\t[-106.373082, 33.480116],\n\t\t\t\t\t\t[-106.373929, 33.660411],\n\t\t\t\t\t\t[-106.052794, 33.650301],\n\t\t\t\t\t\t[-106.052804, 33.825862],\n\t\t\t\t\t\t[-105.924667, 33.825590],\n\t\t\t\t\t\t[-105.923959, 34.259991],\n\t\t\t\t\t\t[-105.313218, 34.260015],\n\t\t\t\t\t\t[-105.312968, 34.346720]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US35028\",\n\t\t\t\t\"STATE\": \"35\",\n\t\t\t\t\"COUNTY\": \"028\",\n\t\t\t\t\"NAME\": \"Los Alamos\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 109.167000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-106.248250, 35.755739],\n\t\t\t\t\t\t[-106.400700, 35.807567],\n\t\t\t\t\t\t[-106.399644, 35.960055],\n\t\t\t\t\t\t[-106.247949, 35.966335],\n\t\t\t\t\t\t[-106.248096, 35.959386],\n\t\t\t\t\t\t[-106.245466, 35.959346],\n\t\t\t\t\t\t[-106.245439, 35.930930],\n\t\t\t\t\t\t[-106.248257, 35.839178],\n\t\t\t\t\t\t[-106.171656, 35.828176],\n\t\t\t\t\t\t[-106.248250, 35.755739]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US35045\",\n\t\t\t\t\"STATE\": \"35\",\n\t\t\t\t\"COUNTY\": \"045\",\n\t\t\t\t\"NAME\": \"San Juan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 5513.067000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-107.624250, 36.219799],\n\t\t\t\t\t\t[-107.626510, 36.000320],\n\t\t\t\t\t\t[-109.045973, 36.002338],\n\t\t\t\t\t\t[-109.045433, 36.874589],\n\t\t\t\t\t\t[-109.045407, 36.874998],\n\t\t\t\t\t\t[-109.045272, 36.968871],\n\t\t\t\t\t\t[-109.045244, 36.969489],\n\t\t\t\t\t\t[-109.045223, 36.999084],\n\t\t\t\t\t\t[-108.958868, 36.998913],\n\t\t\t\t\t\t[-108.954404, 36.998906],\n\t\t\t\t\t\t[-108.620309, 36.999287],\n\t\t\t\t\t\t[-108.619689, 36.999249],\n\t\t\t\t\t\t[-108.379203, 36.999459],\n\t\t\t\t\t\t[-108.320721, 36.999510],\n\t\t\t\t\t\t[-108.320464, 36.999499],\n\t\t\t\t\t\t[-108.288400, 36.999520],\n\t\t\t\t\t\t[-108.288086, 36.999555],\n\t\t\t\t\t\t[-107.481737, 36.999973],\n\t\t\t\t\t\t[-107.420915, 37.000005],\n\t\t\t\t\t\t[-107.451445, 36.904036],\n\t\t\t\t\t\t[-107.605517, 36.798039],\n\t\t\t\t\t\t[-107.618348, 36.804739],\n\t\t\t\t\t\t[-107.624250, 36.219799]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US35053\",\n\t\t\t\t\"STATE\": \"35\",\n\t\t\t\t\"COUNTY\": \"053\",\n\t\t\t\t\"NAME\": \"Socorro\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 6646.679000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-107.204410, 34.578813],\n\t\t\t\t\t\t[-106.882561, 34.579457],\n\t\t\t\t\t\t[-106.773060, 34.533290],\n\t\t\t\t\t\t[-106.416990, 34.439797],\n\t\t\t\t\t\t[-106.415861, 34.259715],\n\t\t\t\t\t\t[-105.923959, 34.259991],\n\t\t\t\t\t\t[-105.924667, 33.825590],\n\t\t\t\t\t\t[-106.052804, 33.825862],\n\t\t\t\t\t\t[-106.052794, 33.650301],\n\t\t\t\t\t\t[-106.373929, 33.660411],\n\t\t\t\t\t\t[-106.373082, 33.480116],\n\t\t\t\t\t\t[-106.474295, 33.475786],\n\t\t\t\t\t\t[-107.712713, 33.476892],\n\t\t\t\t\t\t[-107.716301, 34.259856],\n\t\t\t\t\t\t[-107.725461, 34.259775],\n\t\t\t\t\t\t[-107.724854, 34.578060],\n\t\t\t\t\t\t[-107.204410, 34.578813]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36003\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"003\",\n\t\t\t\t\"NAME\": \"Allegany\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1029.308000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.206606, 41.999989],\n\t\t\t\t\t\t[-78.308128, 41.999415],\n\t\t\t\t\t\t[-78.308839, 42.521217],\n\t\t\t\t\t\t[-78.040241, 42.520968],\n\t\t\t\t\t\t[-78.038261, 42.521522],\n\t\t\t\t\t\t[-77.840901, 42.517767],\n\t\t\t\t\t\t[-77.840231, 42.474576],\n\t\t\t\t\t\t[-77.722964, 42.471216],\n\t\t\t\t\t\t[-77.749931, 41.998782],\n\t\t\t\t\t\t[-77.822799, 41.998547],\n\t\t\t\t\t\t[-77.832030, 41.998524],\n\t\t\t\t\t\t[-78.030963, 41.999392],\n\t\t\t\t\t\t[-78.031177, 41.999415],\n\t\t\t\t\t\t[-78.124730, 42.000452],\n\t\t\t\t\t\t[-78.206606, 41.999989]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36021\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"021\",\n\t\t\t\t\"NAME\": \"Columbia\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 634.705000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-73.929626, 42.078778],\n\t\t\t\t\t\t[-73.921465, 42.110025],\n\t\t\t\t\t\t[-73.910675, 42.127293],\n\t\t\t\t\t\t[-73.789502, 42.267738],\n\t\t\t\t\t\t[-73.783721, 42.464231],\n\t\t\t\t\t\t[-73.352527, 42.510002],\n\t\t\t\t\t\t[-73.410647, 42.351738],\n\t\t\t\t\t\t[-73.508142, 42.086257],\n\t\t\t\t\t\t[-73.496879, 42.049675],\n\t\t\t\t\t\t[-73.527072, 41.977980],\n\t\t\t\t\t\t[-73.710930, 42.005488],\n\t\t\t\t\t\t[-73.929626, 42.078778]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36037\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"037\",\n\t\t\t\t\"NAME\": \"Genesee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 492.936000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.464381, 42.867461],\n\t\t\t\t\t\t[-78.463887, 42.924325],\n\t\t\t\t\t\t[-78.464449, 43.088703],\n\t\t\t\t\t\t[-78.464306, 43.091514],\n\t\t\t\t\t\t[-78.465505, 43.128619],\n\t\t\t\t\t\t[-78.410876, 43.130643],\n\t\t\t\t\t\t[-77.997290, 43.132981],\n\t\t\t\t\t\t[-77.905934, 43.133561],\n\t\t\t\t\t\t[-77.951044, 43.039544],\n\t\t\t\t\t\t[-77.909832, 42.987762],\n\t\t\t\t\t\t[-77.954964, 42.862754],\n\t\t\t\t\t\t[-78.464381, 42.867461]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36043\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"043\",\n\t\t\t\t\"NAME\": \"Herkimer\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1411.470000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-75.212158, 42.879973],\n\t\t\t\t\t\t[-75.219106, 43.052469],\n\t\t\t\t\t\t[-75.069165, 43.227333],\n\t\t\t\t\t\t[-75.160350, 43.255805],\n\t\t\t\t\t\t[-75.076581, 43.330705],\n\t\t\t\t\t\t[-75.086851, 43.417010],\n\t\t\t\t\t\t[-75.110160, 43.615229],\n\t\t\t\t\t\t[-75.170159, 44.096959],\n\t\t\t\t\t\t[-75.062779, 44.050400],\n\t\t\t\t\t\t[-74.854171, 44.070089],\n\t\t\t\t\t\t[-74.775617, 43.486677],\n\t\t\t\t\t\t[-74.867712, 43.339826],\n\t\t\t\t\t\t[-74.712615, 43.286143],\n\t\t\t\t\t\t[-74.696333, 43.173515],\n\t\t\t\t\t\t[-74.759895, 43.047423],\n\t\t\t\t\t\t[-74.763303, 42.863237],\n\t\t\t\t\t\t[-74.878822, 42.898274],\n\t\t\t\t\t\t[-74.906738, 42.824943],\n\t\t\t\t\t\t[-75.100999, 42.908363],\n\t\t\t\t\t\t[-75.139870, 42.859760],\n\t\t\t\t\t\t[-75.212158, 42.879973]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36057\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"057\",\n\t\t\t\t\"NAME\": \"Montgomery\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 403.043000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-74.289304, 42.984415],\n\t\t\t\t\t\t[-74.097467, 42.982934],\n\t\t\t\t\t\t[-74.093814, 42.959378],\n\t\t\t\t\t\t[-74.092980, 42.955868],\n\t\t\t\t\t\t[-74.083883, 42.897354],\n\t\t\t\t\t\t[-74.263314, 42.796534],\n\t\t\t\t\t\t[-74.454911, 42.772979],\n\t\t\t\t\t\t[-74.648298, 42.829558],\n\t\t\t\t\t\t[-74.650213, 42.829941],\n\t\t\t\t\t\t[-74.702054, 42.845305],\n\t\t\t\t\t\t[-74.763303, 42.863237],\n\t\t\t\t\t\t[-74.759895, 43.047423],\n\t\t\t\t\t\t[-74.542367, 42.985530],\n\t\t\t\t\t\t[-74.488844, 42.985118],\n\t\t\t\t\t\t[-74.289304, 42.984415]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36069\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"069\",\n\t\t\t\t\"NAME\": \"Ontario\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 644.065000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.971392, 42.764223],\n\t\t\t\t\t\t[-77.018626, 42.763800],\n\t\t\t\t\t\t[-77.313004, 42.761265],\n\t\t\t\t\t\t[-77.367106, 42.667866],\n\t\t\t\t\t\t[-77.366505, 42.576368],\n\t\t\t\t\t\t[-77.490889, 42.577288],\n\t\t\t\t\t\t[-77.486875, 42.670279],\n\t\t\t\t\t\t[-77.598815, 42.671965],\n\t\t\t\t\t\t[-77.611670, 42.763169],\n\t\t\t\t\t\t[-77.580377, 42.943963],\n\t\t\t\t\t\t[-77.482517, 42.943164],\n\t\t\t\t\t\t[-77.485418, 43.034564],\n\t\t\t\t\t\t[-77.371478, 43.034696],\n\t\t\t\t\t\t[-77.134335, 43.039926],\n\t\t\t\t\t\t[-77.133397, 43.012463],\n\t\t\t\t\t\t[-76.963926, 43.013157],\n\t\t\t\t\t\t[-76.963350, 42.903020],\n\t\t\t\t\t\t[-76.971392, 42.764223]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36083\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"083\",\n\t\t\t\t\"NAME\": \"Rensselaer\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 652.431000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-73.659663, 42.818978],\n\t\t\t\t\t\t[-73.684610, 42.892399],\n\t\t\t\t\t\t[-73.635463, 42.941290],\n\t\t\t\t\t\t[-73.274294, 42.943652],\n\t\t\t\t\t\t[-73.274393, 42.942482],\n\t\t\t\t\t\t[-73.274466, 42.940361],\n\t\t\t\t\t\t[-73.278673, 42.833410],\n\t\t\t\t\t\t[-73.285388, 42.834093],\n\t\t\t\t\t\t[-73.290944, 42.801920],\n\t\t\t\t\t\t[-73.276421, 42.746019],\n\t\t\t\t\t\t[-73.264957, 42.745940],\n\t\t\t\t\t\t[-73.307004, 42.632653],\n\t\t\t\t\t\t[-73.352527, 42.510002],\n\t\t\t\t\t\t[-73.783721, 42.464231],\n\t\t\t\t\t\t[-73.784594, 42.489947],\n\t\t\t\t\t\t[-73.773161, 42.509377],\n\t\t\t\t\t\t[-73.761265, 42.610379],\n\t\t\t\t\t\t[-73.676762, 42.783277],\n\t\t\t\t\t\t[-73.673463, 42.790276],\n\t\t\t\t\t\t[-73.672355, 42.795791],\n\t\t\t\t\t\t[-73.661362, 42.802977],\n\t\t\t\t\t\t[-73.659663, 42.818978]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36095\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"095\",\n\t\t\t\t\"NAME\": \"Schoharie\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 621.819000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-74.443506, 42.355017],\n\t\t\t\t\t\t[-74.618895, 42.424389],\n\t\t\t\t\t\t[-74.711580, 42.517799],\n\t\t\t\t\t\t[-74.630631, 42.626674],\n\t\t\t\t\t\t[-74.667512, 42.750710],\n\t\t\t\t\t\t[-74.648298, 42.829558],\n\t\t\t\t\t\t[-74.454911, 42.772979],\n\t\t\t\t\t\t[-74.263314, 42.796534],\n\t\t\t\t\t\t[-74.272295, 42.714270],\n\t\t\t\t\t\t[-74.180274, 42.729979],\n\t\t\t\t\t\t[-74.169725, 42.667426],\n\t\t\t\t\t\t[-74.241572, 42.550802],\n\t\t\t\t\t\t[-74.254303, 42.408207],\n\t\t\t\t\t\t[-74.244692, 42.377159],\n\t\t\t\t\t\t[-74.443506, 42.355017]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36109\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"109\",\n\t\t\t\t\"NAME\": \"Tompkins\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 474.649000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.253359, 42.407568],\n\t\t\t\t\t\t[-76.250149, 42.296676],\n\t\t\t\t\t\t[-76.394650, 42.318509],\n\t\t\t\t\t\t[-76.415305, 42.318368],\n\t\t\t\t\t\t[-76.416199, 42.262976],\n\t\t\t\t\t\t[-76.538349, 42.281755],\n\t\t\t\t\t\t[-76.561601, 42.281986],\n\t\t\t\t\t\t[-76.619303, 42.282853],\n\t\t\t\t\t\t[-76.691406, 42.284307],\n\t\t\t\t\t\t[-76.696655, 42.546790],\n\t\t\t\t\t\t[-76.585989, 42.549910],\n\t\t\t\t\t\t[-76.666543, 42.623457],\n\t\t\t\t\t\t[-76.265584, 42.623588],\n\t\t\t\t\t\t[-76.253359, 42.407568]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36121\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"121\",\n\t\t\t\t\"NAME\": \"Wyoming\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 592.746000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.463940, 42.536332],\n\t\t\t\t\t\t[-78.464381, 42.867461],\n\t\t\t\t\t\t[-77.954964, 42.862754],\n\t\t\t\t\t\t[-77.956334, 42.667322],\n\t\t\t\t\t\t[-78.048247, 42.579306],\n\t\t\t\t\t\t[-78.038261, 42.521522],\n\t\t\t\t\t\t[-78.040241, 42.520968],\n\t\t\t\t\t\t[-78.308839, 42.521217],\n\t\t\t\t\t\t[-78.464556, 42.519166],\n\t\t\t\t\t\t[-78.463940, 42.536332]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36123\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"123\",\n\t\t\t\t\"NAME\": \"Yates\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 338.143000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.366505, 42.576368],\n\t\t\t\t\t\t[-77.367106, 42.667866],\n\t\t\t\t\t\t[-77.313004, 42.761265],\n\t\t\t\t\t\t[-77.018626, 42.763800],\n\t\t\t\t\t\t[-76.971392, 42.764223],\n\t\t\t\t\t\t[-76.895349, 42.656255],\n\t\t\t\t\t\t[-76.895596, 42.541537],\n\t\t\t\t\t\t[-76.889805, 42.463054],\n\t\t\t\t\t\t[-77.107203, 42.483771],\n\t\t\t\t\t\t[-77.143795, 42.576869],\n\t\t\t\t\t\t[-77.366505, 42.576368]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42013\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"013\",\n\t\t\t\t\"NAME\": \"Blair\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 525.800000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.542303, 40.468851],\n\t\t\t\t\t\t[-78.350430, 40.724827],\n\t\t\t\t\t\t[-78.359912, 40.732592],\n\t\t\t\t\t\t[-78.131834, 40.743017],\n\t\t\t\t\t\t[-78.116521, 40.739127],\n\t\t\t\t\t\t[-78.221970, 40.674539],\n\t\t\t\t\t\t[-78.197083, 40.558444],\n\t\t\t\t\t\t[-78.130081, 40.481990],\n\t\t\t\t\t\t[-78.257305, 40.297883],\n\t\t\t\t\t\t[-78.288764, 40.242107],\n\t\t\t\t\t\t[-78.434288, 40.302301],\n\t\t\t\t\t\t[-78.447895, 40.244395],\n\t\t\t\t\t\t[-78.620383, 40.327025],\n\t\t\t\t\t\t[-78.564085, 40.370609],\n\t\t\t\t\t\t[-78.542303, 40.468851]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42015\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"015\",\n\t\t\t\t\"NAME\": \"Bradford\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1147.399000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.874714, 41.596919],\n\t\t\t\t\t\t[-76.878699, 41.620344],\n\t\t\t\t\t\t[-76.883511, 41.666314],\n\t\t\t\t\t\t[-76.893201, 41.748463],\n\t\t\t\t\t\t[-76.927084, 42.001674],\n\t\t\t\t\t\t[-76.921884, 42.001674],\n\t\t\t\t\t\t[-76.920784, 42.001774],\n\t\t\t\t\t\t[-76.835079, 42.001773],\n\t\t\t\t\t\t[-76.815878, 42.001673],\n\t\t\t\t\t\t[-76.558118, 42.000155],\n\t\t\t\t\t\t[-76.557624, 42.000149],\n\t\t\t\t\t\t[-76.466540, 41.999025],\n\t\t\t\t\t\t[-76.462155, 41.998934],\n\t\t\t\t\t\t[-76.349898, 41.998410],\n\t\t\t\t\t\t[-76.343722, 41.998346],\n\t\t\t\t\t\t[-76.145519, 41.998913],\n\t\t\t\t\t\t[-76.115172, 41.651825],\n\t\t\t\t\t\t[-76.197998, 41.647823],\n\t\t\t\t\t\t[-76.220139, 41.541285],\n\t\t\t\t\t\t[-76.813731, 41.590034],\n\t\t\t\t\t\t[-76.874714, 41.596919]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42021\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"021\",\n\t\t\t\t\"NAME\": \"Cambria\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 688.351000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.768593, 40.243441],\n\t\t\t\t\t\t[-78.884862, 40.244631],\n\t\t\t\t\t\t[-78.927601, 40.285041],\n\t\t\t\t\t\t[-79.055983, 40.285089],\n\t\t\t\t\t\t[-78.974649, 40.395972],\n\t\t\t\t\t\t[-78.922748, 40.483770],\n\t\t\t\t\t\t[-78.896938, 40.533160],\n\t\t\t\t\t\t[-78.860105, 40.604665],\n\t\t\t\t\t\t[-78.846656, 40.635638],\n\t\t\t\t\t\t[-78.801697, 40.724539],\n\t\t\t\t\t\t[-78.712747, 40.724350],\n\t\t\t\t\t\t[-78.513712, 40.725968],\n\t\t\t\t\t\t[-78.350430, 40.724827],\n\t\t\t\t\t\t[-78.542303, 40.468851],\n\t\t\t\t\t\t[-78.564085, 40.370609],\n\t\t\t\t\t\t[-78.620383, 40.327025],\n\t\t\t\t\t\t[-78.658409, 40.242933],\n\t\t\t\t\t\t[-78.760311, 40.243171],\n\t\t\t\t\t\t[-78.768593, 40.243441]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42031\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"031\",\n\t\t\t\t\"NAME\": \"Clarion\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 600.834000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.604161, 41.321478],\n\t\t\t\t\t\t[-79.478140, 41.335708],\n\t\t\t\t\t\t[-79.477822, 41.386479],\n\t\t\t\t\t\t[-79.400269, 41.436145],\n\t\t\t\t\t\t[-79.207196, 41.430922],\n\t\t\t\t\t\t[-79.208878, 41.331861],\n\t\t\t\t\t\t[-79.215214, 41.050515],\n\t\t\t\t\t\t[-79.284998, 41.009295],\n\t\t\t\t\t\t[-79.618352, 40.974142],\n\t\t\t\t\t\t[-79.690711, 41.170691],\n\t\t\t\t\t\t[-79.692350, 41.172028],\n\t\t\t\t\t\t[-79.694984, 41.172865],\n\t\t\t\t\t\t[-79.604161, 41.321478]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42047\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"047\",\n\t\t\t\t\"NAME\": \"Elk\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 827.358000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.956042, 41.623402],\n\t\t\t\t\t\t[-78.956056, 41.623863],\n\t\t\t\t\t\t[-78.483409, 41.629898],\n\t\t\t\t\t\t[-78.419118, 41.602188],\n\t\t\t\t\t\t[-78.420028, 41.405046],\n\t\t\t\t\t\t[-78.253959, 41.404721],\n\t\t\t\t\t\t[-78.236817, 41.230475],\n\t\t\t\t\t\t[-78.646666, 41.253778],\n\t\t\t\t\t\t[-78.710248, 41.201859],\n\t\t\t\t\t\t[-78.735280, 41.262915],\n\t\t\t\t\t\t[-78.974478, 41.375476],\n\t\t\t\t\t\t[-79.095096, 41.340658],\n\t\t\t\t\t\t[-79.063520, 41.453207],\n\t\t\t\t\t\t[-78.958957, 41.437061],\n\t\t\t\t\t\t[-78.956042, 41.623402]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42063\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"063\",\n\t\t\t\t\"NAME\": \"Indiana\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 827.030000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.846656, 40.635638],\n\t\t\t\t\t\t[-78.860105, 40.604665],\n\t\t\t\t\t\t[-78.896938, 40.533160],\n\t\t\t\t\t\t[-78.922748, 40.483770],\n\t\t\t\t\t\t[-78.974649, 40.395972],\n\t\t\t\t\t\t[-79.058481, 40.380868],\n\t\t\t\t\t\t[-79.192722, 40.414862],\n\t\t\t\t\t\t[-79.199233, 40.410780],\n\t\t\t\t\t\t[-79.206513, 40.415032],\n\t\t\t\t\t\t[-79.214783, 40.424458],\n\t\t\t\t\t\t[-79.233203, 40.430741],\n\t\t\t\t\t\t[-79.240175, 40.429991],\n\t\t\t\t\t\t[-79.247568, 40.432080],\n\t\t\t\t\t\t[-79.250605, 40.428726],\n\t\t\t\t\t\t[-79.454011, 40.485507],\n\t\t\t\t\t\t[-79.450176, 40.530149],\n\t\t\t\t\t\t[-79.251517, 40.737758],\n\t\t\t\t\t\t[-79.215215, 40.775942],\n\t\t\t\t\t\t[-79.215310, 40.911346],\n\t\t\t\t\t\t[-78.805167, 40.905980],\n\t\t\t\t\t\t[-78.806363, 40.845035],\n\t\t\t\t\t\t[-78.801697, 40.724539],\n\t\t\t\t\t\t[-78.846656, 40.635638]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42069\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"069\",\n\t\t\t\t\"NAME\": \"Lackawanna\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 459.078000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-75.687244, 41.339216],\n\t\t\t\t\t\t[-75.741539, 41.348179],\n\t\t\t\t\t\t[-75.760518, 41.360942],\n\t\t\t\t\t\t[-75.767860, 41.365841],\n\t\t\t\t\t\t[-75.795286, 41.378127],\n\t\t\t\t\t\t[-75.832631, 41.399934],\n\t\t\t\t\t\t[-75.834695, 41.427246],\n\t\t\t\t\t\t[-75.719887, 41.642263],\n\t\t\t\t\t\t[-75.469259, 41.641410],\n\t\t\t\t\t\t[-75.462411, 41.641587],\n\t\t\t\t\t\t[-75.441421, 41.260053],\n\t\t\t\t\t\t[-75.505607, 41.232539],\n\t\t\t\t\t\t[-75.600736, 41.161497],\n\t\t\t\t\t\t[-75.649257, 41.190951],\n\t\t\t\t\t\t[-75.687244, 41.339216]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42087\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"087\",\n\t\t\t\t\"NAME\": \"Mifflin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 411.031000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.667819, 40.735335],\n\t\t\t\t\t\t[-77.364180, 40.846937],\n\t\t\t\t\t\t[-77.357113, 40.844484],\n\t\t\t\t\t\t[-77.356628, 40.807334],\n\t\t\t\t\t\t[-77.354097, 40.701667],\n\t\t\t\t\t\t[-77.287941, 40.693595],\n\t\t\t\t\t\t[-77.323053, 40.683082],\n\t\t\t\t\t\t[-77.360690, 40.669991],\n\t\t\t\t\t\t[-77.497760, 40.609484],\n\t\t\t\t\t\t[-77.611315, 40.515017],\n\t\t\t\t\t\t[-77.752120, 40.378545],\n\t\t\t\t\t\t[-77.913844, 40.398679],\n\t\t\t\t\t\t[-77.816513, 40.500074],\n\t\t\t\t\t\t[-77.841827, 40.550035],\n\t\t\t\t\t\t[-77.687080, 40.676750],\n\t\t\t\t\t\t[-77.681334, 40.729758],\n\t\t\t\t\t\t[-77.667819, 40.735335]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42093\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"093\",\n\t\t\t\t\"NAME\": \"Montour\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 130.242000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.640767, 41.155718],\n\t\t\t\t\t\t[-76.618971, 41.063759],\n\t\t\t\t\t\t[-76.514951, 40.958959],\n\t\t\t\t\t\t[-76.528034, 40.882515],\n\t\t\t\t\t\t[-76.557013, 40.938617],\n\t\t\t\t\t\t[-76.661348, 40.967996],\n\t\t\t\t\t\t[-76.792878, 40.946583],\n\t\t\t\t\t\t[-76.732672, 41.172040],\n\t\t\t\t\t\t[-76.678776, 41.154172],\n\t\t\t\t\t\t[-76.640767, 41.155718]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42105\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"105\",\n\t\t\t\t\"NAME\": \"Potter\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1081.323000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.599278, 41.542271],\n\t\t\t\t\t\t[-77.598129, 41.478576],\n\t\t\t\t\t\t[-77.989194, 41.474822],\n\t\t\t\t\t\t[-78.050442, 41.475462],\n\t\t\t\t\t\t[-78.203422, 41.618157],\n\t\t\t\t\t\t[-78.206606, 41.999989],\n\t\t\t\t\t\t[-78.124730, 42.000452],\n\t\t\t\t\t\t[-78.031177, 41.999415],\n\t\t\t\t\t\t[-78.030963, 41.999392],\n\t\t\t\t\t\t[-77.832030, 41.998524],\n\t\t\t\t\t\t[-77.822799, 41.998547],\n\t\t\t\t\t\t[-77.749931, 41.998782],\n\t\t\t\t\t\t[-77.610028, 41.999519],\n\t\t\t\t\t\t[-77.599278, 41.542271]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42113\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"113\",\n\t\t\t\t\"NAME\": \"Sullivan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 449.940000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.447597, 41.275629],\n\t\t\t\t\t\t[-76.592532, 41.304332],\n\t\t\t\t\t\t[-76.749497, 41.405572],\n\t\t\t\t\t\t[-76.813731, 41.590034],\n\t\t\t\t\t\t[-76.220139, 41.541285],\n\t\t\t\t\t\t[-76.223866, 41.524544],\n\t\t\t\t\t\t[-76.283100, 41.376517],\n\t\t\t\t\t\t[-76.284865, 41.372724],\n\t\t\t\t\t\t[-76.310133, 41.310199],\n\t\t\t\t\t\t[-76.407934, 41.308418],\n\t\t\t\t\t\t[-76.447597, 41.275629]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42123\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"123\",\n\t\t\t\t\"NAME\": \"Warren\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 884.135000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.402653, 41.625968],\n\t\t\t\t\t\t[-79.512070, 41.624559],\n\t\t\t\t\t\t[-79.612873, 41.623858],\n\t\t\t\t\t\t[-79.612598, 41.775030],\n\t\t\t\t\t\t[-79.612072, 41.850056],\n\t\t\t\t\t\t[-79.610839, 41.998989],\n\t\t\t\t\t\t[-79.551385, 41.998666],\n\t\t\t\t\t\t[-79.538445, 41.998527],\n\t\t\t\t\t\t[-79.061265, 41.999259],\n\t\t\t\t\t\t[-79.052473, 41.999179],\n\t\t\t\t\t\t[-78.918854, 41.997961],\n\t\t\t\t\t\t[-78.948689, 41.830480],\n\t\t\t\t\t\t[-78.956056, 41.623863],\n\t\t\t\t\t\t[-78.956042, 41.623402],\n\t\t\t\t\t\t[-79.402653, 41.625968]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US45005\",\n\t\t\t\t\"STATE\": \"45\",\n\t\t\t\t\"COUNTY\": \"005\",\n\t\t\t\t\"NAME\": \"Allendale\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 408.090000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.082291, 33.026630],\n\t\t\t\t\t\t[-81.236956, 32.940244],\n\t\t\t\t\t\t[-81.261662, 32.839139],\n\t\t\t\t\t\t[-81.405134, 32.744964],\n\t\t\t\t\t\t[-81.404949, 32.747027],\n\t\t\t\t\t\t[-81.423772, 32.810514],\n\t\t\t\t\t\t[-81.499830, 32.963816],\n\t\t\t\t\t\t[-81.494736, 32.978998],\n\t\t\t\t\t\t[-81.491495, 32.998572],\n\t\t\t\t\t\t[-81.496637, 33.010224],\n\t\t\t\t\t\t[-81.511690, 33.024506],\n\t\t\t\t\t\t[-81.541831, 33.045654],\n\t\t\t\t\t\t[-81.615756, 33.092534],\n\t\t\t\t\t\t[-81.541881, 33.158279],\n\t\t\t\t\t\t[-81.364857, 33.108061],\n\t\t\t\t\t\t[-81.193099, 33.118668],\n\t\t\t\t\t\t[-81.082291, 33.026630]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US45009\",\n\t\t\t\t\"STATE\": \"45\",\n\t\t\t\t\"COUNTY\": \"009\",\n\t\t\t\t\"NAME\": \"Bamberg\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 393.370000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.220110, 33.439493],\n\t\t\t\t\t\t[-80.948756, 33.308047],\n\t\t\t\t\t\t[-80.797912, 33.176944],\n\t\t\t\t\t\t[-81.082291, 33.026630],\n\t\t\t\t\t\t[-81.193099, 33.118668],\n\t\t\t\t\t\t[-81.227804, 33.160697],\n\t\t\t\t\t\t[-81.222673, 33.440000],\n\t\t\t\t\t\t[-81.221550, 33.439044],\n\t\t\t\t\t\t[-81.220110, 33.439493]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US45027\",\n\t\t\t\t\"STATE\": \"45\",\n\t\t\t\t\"COUNTY\": \"027\",\n\t\t\t\t\"NAME\": \"Clarendon\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 606.936000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.534085, 33.643911],\n\t\t\t\t\t\t[-80.478709, 33.714265],\n\t\t\t\t\t\t[-80.392003, 33.715550],\n\t\t\t\t\t\t[-80.397131, 33.767821],\n\t\t\t\t\t\t[-80.255904, 33.803708],\n\t\t\t\t\t\t[-79.974601, 33.946527],\n\t\t\t\t\t\t[-79.945584, 33.885717],\n\t\t\t\t\t\t[-79.875620, 33.885245],\n\t\t\t\t\t\t[-79.995638, 33.767906],\n\t\t\t\t\t\t[-79.974382, 33.721590],\n\t\t\t\t\t\t[-80.101697, 33.496891],\n\t\t\t\t\t\t[-80.222267, 33.443716],\n\t\t\t\t\t\t[-80.354539, 33.430408],\n\t\t\t\t\t\t[-80.496273, 33.558481],\n\t\t\t\t\t\t[-80.534085, 33.643911]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US45039\",\n\t\t\t\t\"STATE\": \"45\",\n\t\t\t\t\"COUNTY\": \"039\",\n\t\t\t\t\"NAME\": \"Fairfield\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 686.277000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.825921, 34.268760],\n\t\t\t\t\t\t[-81.095863, 34.213872],\n\t\t\t\t\t\t[-81.178293, 34.174552],\n\t\t\t\t\t\t[-81.316911, 34.239458],\n\t\t\t\t\t\t[-81.423241, 34.494379],\n\t\t\t\t\t\t[-81.421139, 34.503224],\n\t\t\t\t\t\t[-81.424907, 34.524073],\n\t\t\t\t\t\t[-81.427545, 34.529482],\n\t\t\t\t\t\t[-81.424304, 34.555990],\n\t\t\t\t\t\t[-81.419829, 34.566588],\n\t\t\t\t\t\t[-81.422706, 34.572029],\n\t\t\t\t\t\t[-80.949774, 34.545341],\n\t\t\t\t\t\t[-80.877491, 34.543146],\n\t\t\t\t\t\t[-80.879227, 34.457776],\n\t\t\t\t\t\t[-80.769926, 34.377111],\n\t\t\t\t\t\t[-80.825921, 34.268760]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47005\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"005\",\n\t\t\t\t\"NAME\": \"Benton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 394.142000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.980740, 36.353307],\n\t\t\t\t\t\t[-87.949603, 36.243160],\n\t\t\t\t\t\t[-87.919043, 36.130049],\n\t\t\t\t\t\t[-88.000809, 36.028089],\n\t\t\t\t\t\t[-88.012932, 35.946648],\n\t\t\t\t\t\t[-87.925835, 35.930432],\n\t\t\t\t\t\t[-87.962740, 35.840921],\n\t\t\t\t\t\t[-87.968987, 35.828827],\n\t\t\t\t\t\t[-87.970738, 35.815705],\n\t\t\t\t\t\t[-88.177859, 35.845841],\n\t\t\t\t\t\t[-88.217436, 35.846582],\n\t\t\t\t\t\t[-88.212559, 36.120290],\n\t\t\t\t\t\t[-88.083157, 36.256724],\n\t\t\t\t\t\t[-88.087674, 36.359166],\n\t\t\t\t\t\t[-87.990920, 36.360133],\n\t\t\t\t\t\t[-87.988562, 36.359746],\n\t\t\t\t\t\t[-87.982743, 36.356083],\n\t\t\t\t\t\t[-87.980740, 36.353307]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47007\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"007\",\n\t\t\t\t\"NAME\": \"Bledsoe\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 406.425000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.423804, 35.567422],\n\t\t\t\t\t\t[-85.265387, 35.721237],\n\t\t\t\t\t\t[-85.254062, 35.765611],\n\t\t\t\t\t\t[-84.916062, 35.761939],\n\t\t\t\t\t\t[-85.107762, 35.571359],\n\t\t\t\t\t\t[-85.135191, 35.458649],\n\t\t\t\t\t\t[-85.225877, 35.354276],\n\t\t\t\t\t\t[-85.403298, 35.492280],\n\t\t\t\t\t\t[-85.423804, 35.567422]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47013\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"013\",\n\t\t\t\t\"NAME\": \"Campbell\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 480.191000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.004317, 36.270378],\n\t\t\t\t\t\t[-84.069918, 36.230378],\n\t\t\t\t\t\t[-84.227527, 36.244879],\n\t\t\t\t\t\t[-84.241825, 36.177578],\n\t\t\t\t\t\t[-84.372731, 36.216778],\n\t\t\t\t\t\t[-84.329927, 36.285086],\n\t\t\t\t\t\t[-84.349939, 36.466292],\n\t\t\t\t\t\t[-84.259593, 36.513985],\n\t\t\t\t\t\t[-84.261333, 36.591981],\n\t\t\t\t\t\t[-84.227295, 36.591685],\n\t\t\t\t\t\t[-83.987842, 36.589600],\n\t\t\t\t\t\t[-83.987612, 36.589595],\n\t\t\t\t\t\t[-83.905638, 36.419979],\n\t\t\t\t\t\t[-84.004317, 36.270378]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47027\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"027\",\n\t\t\t\t\"NAME\": \"Clay\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 236.536000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.813885, 36.499473],\n\t\t\t\t\t\t[-85.788613, 36.621845],\n\t\t\t\t\t\t[-85.552017, 36.615782],\n\t\t\t\t\t\t[-85.551483, 36.615727],\n\t\t\t\t\t\t[-85.508605, 36.615020],\n\t\t\t\t\t\t[-85.471338, 36.616380],\n\t\t\t\t\t\t[-85.436418, 36.618194],\n\t\t\t\t\t\t[-85.295990, 36.625488],\n\t\t\t\t\t\t[-85.276289, 36.626511],\n\t\t\t\t\t\t[-85.276284, 36.626511],\n\t\t\t\t\t\t[-85.284878, 36.531293],\n\t\t\t\t\t\t[-85.438808, 36.501102],\n\t\t\t\t\t\t[-85.495422, 36.403074],\n\t\t\t\t\t\t[-85.704075, 36.522395],\n\t\t\t\t\t\t[-85.813885, 36.499473]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47031\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"031\",\n\t\t\t\t\"NAME\": \"Coffee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 428.957000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.876962, 35.524095],\n\t\t\t\t\t\t[-85.913593, 35.289189],\n\t\t\t\t\t\t[-86.158018, 35.362607],\n\t\t\t\t\t\t[-86.261489, 35.333579],\n\t\t\t\t\t\t[-86.257590, 35.412476],\n\t\t\t\t\t\t[-86.245165, 35.631913],\n\t\t\t\t\t\t[-86.207147, 35.703790],\n\t\t\t\t\t\t[-86.143652, 35.661747],\n\t\t\t\t\t\t[-85.985062, 35.660108],\n\t\t\t\t\t\t[-85.876962, 35.524095]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47045\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"045\",\n\t\t\t\t\"NAME\": \"Dyer\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 512.327000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.482971, 36.212659],\n\t\t\t\t\t\t[-89.154464, 36.204678],\n\t\t\t\t\t\t[-89.163406, 36.026044],\n\t\t\t\t\t\t[-89.188844, 35.999760],\n\t\t\t\t\t\t[-89.280188, 35.886416],\n\t\t\t\t\t\t[-89.342829, 35.880934],\n\t\t\t\t\t\t[-89.406965, 35.946599],\n\t\t\t\t\t\t[-89.687939, 35.905384],\n\t\t\t\t\t\t[-89.686924, 35.947716],\n\t\t\t\t\t\t[-89.719970, 35.974620],\n\t\t\t\t\t\t[-89.733095, 36.000608],\n\t\t\t\t\t\t[-89.706932, 36.000981],\n\t\t\t\t\t\t[-89.690306, 36.024835],\n\t\t\t\t\t\t[-89.687254, 36.034048],\n\t\t\t\t\t\t[-89.684439, 36.051719],\n\t\t\t\t\t\t[-89.624235, 36.108626],\n\t\t\t\t\t\t[-89.601936, 36.119470],\n\t\t\t\t\t\t[-89.594000, 36.127190],\n\t\t\t\t\t\t[-89.591605, 36.144096],\n\t\t\t\t\t\t[-89.594397, 36.155457],\n\t\t\t\t\t\t[-89.607004, 36.171179],\n\t\t\t\t\t\t[-89.618228, 36.179966],\n\t\t\t\t\t\t[-89.629452, 36.185382],\n\t\t\t\t\t\t[-89.482971, 36.212659]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47057\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"057\",\n\t\t\t\t\"NAME\": \"Grainger\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 280.600000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.667460, 36.080587],\n\t\t\t\t\t\t[-83.732704, 36.164583],\n\t\t\t\t\t\t[-83.667408, 36.344381],\n\t\t\t\t\t\t[-83.532504, 36.353385],\n\t\t\t\t\t\t[-83.386800, 36.413186],\n\t\t\t\t\t\t[-83.280595, 36.394689],\n\t\t\t\t\t\t[-83.255292, 36.289092],\n\t\t\t\t\t\t[-83.321695, 36.294590],\n\t\t\t\t\t\t[-83.467097, 36.174688],\n\t\t\t\t\t\t[-83.541099, 36.181987],\n\t\t\t\t\t\t[-83.674688, 36.124463],\n\t\t\t\t\t\t[-83.674454, 36.116399],\n\t\t\t\t\t\t[-83.659387, 36.085533],\n\t\t\t\t\t\t[-83.667460, 36.080587]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47069\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"069\",\n\t\t\t\t\"NAME\": \"Hardeman\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 667.768000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.017128, 34.994649],\n\t\t\t\t\t\t[-89.138997, 34.994330],\n\t\t\t\t\t\t[-89.139136, 34.994307],\n\t\t\t\t\t\t[-89.198288, 34.994484],\n\t\t\t\t\t\t[-89.183944, 35.397126],\n\t\t\t\t\t\t[-89.182551, 35.432816],\n\t\t\t\t\t\t[-89.078876, 35.431428],\n\t\t\t\t\t\t[-88.841607, 35.427826],\n\t\t\t\t\t\t[-88.781768, 35.247587],\n\t\t\t\t\t\t[-88.786924, 35.115809],\n\t\t\t\t\t\t[-88.786612, 34.995252],\n\t\t\t\t\t\t[-88.823049, 34.995157],\n\t\t\t\t\t\t[-89.017128, 34.994649]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47081\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"081\",\n\t\t\t\t\"NAME\": \"Hickman\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 612.499000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.710185, 35.708610],\n\t\t\t\t\t\t[-87.716760, 35.838750],\n\t\t\t\t\t\t[-87.706960, 35.905884],\n\t\t\t\t\t\t[-87.534530, 35.993074],\n\t\t\t\t\t\t[-87.204242, 35.959186],\n\t\t\t\t\t\t[-87.205665, 35.940967],\n\t\t\t\t\t\t[-87.201426, 35.940579],\n\t\t\t\t\t\t[-87.202092, 35.936075],\n\t\t\t\t\t\t[-87.205070, 35.914639],\n\t\t\t\t\t\t[-87.215099, 35.850651],\n\t\t\t\t\t\t[-87.234143, 35.724691],\n\t\t\t\t\t\t[-87.339232, 35.659110],\n\t\t\t\t\t\t[-87.459587, 35.615124],\n\t\t\t\t\t\t[-87.586867, 35.653304],\n\t\t\t\t\t\t[-87.658189, 35.609349],\n\t\t\t\t\t\t[-87.743750, 35.663952],\n\t\t\t\t\t\t[-87.710185, 35.708610]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47093\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"093\",\n\t\t\t\t\"NAME\": \"Knox\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 508.215000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.732704, 36.164583],\n\t\t\t\t\t\t[-83.667460, 36.080587],\n\t\t\t\t\t\t[-83.673297, 36.038486],\n\t\t\t\t\t\t[-83.654605, 35.971937],\n\t\t\t\t\t\t[-83.794275, 35.887125],\n\t\t\t\t\t\t[-83.853457, 35.841138],\n\t\t\t\t\t\t[-83.994677, 35.883749],\n\t\t\t\t\t\t[-84.166267, 35.805106],\n\t\t\t\t\t\t[-84.263383, 35.896940],\n\t\t\t\t\t\t[-84.268393, 35.902563],\n\t\t\t\t\t\t[-84.271587, 35.910165],\n\t\t\t\t\t\t[-84.195151, 35.993008],\n\t\t\t\t\t\t[-84.058585, 36.036304],\n\t\t\t\t\t\t[-84.094011, 36.068911],\n\t\t\t\t\t\t[-83.941711, 36.186378],\n\t\t\t\t\t\t[-83.732704, 36.164583]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47105\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"105\",\n\t\t\t\t\"NAME\": \"Loudon\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 229.216000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.166267, 35.805106],\n\t\t\t\t\t\t[-84.133072, 35.660733],\n\t\t\t\t\t\t[-84.188319, 35.610549],\n\t\t\t\t\t\t[-84.423549, 35.671735],\n\t\t\t\t\t\t[-84.525850, 35.624186],\n\t\t\t\t\t\t[-84.525984, 35.628113],\n\t\t\t\t\t\t[-84.534006, 35.629555],\n\t\t\t\t\t\t[-84.535386, 35.633696],\n\t\t\t\t\t\t[-84.547603, 35.641327],\n\t\t\t\t\t\t[-84.549230, 35.636896],\n\t\t\t\t\t\t[-84.557926, 35.636973],\n\t\t\t\t\t\t[-84.557872, 35.629651],\n\t\t\t\t\t\t[-84.566934, 35.629773],\n\t\t\t\t\t\t[-84.566915, 35.633240],\n\t\t\t\t\t\t[-84.584296, 35.633086],\n\t\t\t\t\t\t[-84.584472, 35.644424],\n\t\t\t\t\t\t[-84.263383, 35.896940],\n\t\t\t\t\t\t[-84.166267, 35.805106]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47117\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"117\",\n\t\t\t\t\"NAME\": \"Marshall\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 375.460000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.828301, 35.263677],\n\t\t\t\t\t\t[-86.906451, 35.314075],\n\t\t\t\t\t\t[-86.960804, 35.417021],\n\t\t\t\t\t\t[-86.849573, 35.525515],\n\t\t\t\t\t\t[-86.782016, 35.706595],\n\t\t\t\t\t\t[-86.686193, 35.710051],\n\t\t\t\t\t\t[-86.682628, 35.704097],\n\t\t\t\t\t\t[-86.673683, 35.703306],\n\t\t\t\t\t\t[-86.674255, 35.696962],\n\t\t\t\t\t\t[-86.641978, 35.689037],\n\t\t\t\t\t\t[-86.639436, 35.685900],\n\t\t\t\t\t\t[-86.658247, 35.435281],\n\t\t\t\t\t\t[-86.599478, 35.364950],\n\t\t\t\t\t\t[-86.602613, 35.327013],\n\t\t\t\t\t\t[-86.746899, 35.252878],\n\t\t\t\t\t\t[-86.828301, 35.263677]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47129\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"129\",\n\t\t\t\t\"NAME\": \"Morgan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 522.180000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.700785, 36.370824],\n\t\t\t\t\t\t[-84.611042, 36.270377],\n\t\t\t\t\t\t[-84.441034, 36.163478],\n\t\t\t\t\t\t[-84.341812, 36.048977],\n\t\t\t\t\t\t[-84.446054, 35.985984],\n\t\t\t\t\t\t[-84.606659, 35.951145],\n\t\t\t\t\t\t[-84.680633, 35.908454],\n\t\t\t\t\t\t[-84.720727, 35.994914],\n\t\t\t\t\t\t[-84.907753, 36.156293],\n\t\t\t\t\t\t[-84.878553, 36.280204],\n\t\t\t\t\t\t[-84.797861, 36.296894],\n\t\t\t\t\t\t[-84.700785, 36.370824]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47139\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"139\",\n\t\t\t\t\"NAME\": \"Polk\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 434.676000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.495529, 35.285472],\n\t\t\t\t\t\t[-84.292321, 35.206677],\n\t\t\t\t\t\t[-84.308437, 35.093173],\n\t\t\t\t\t\t[-84.308576, 35.092761],\n\t\t\t\t\t\t[-84.321869, 34.988408],\n\t\t\t\t\t\t[-84.393935, 34.988068],\n\t\t\t\t\t\t[-84.394903, 34.988030],\n\t\t\t\t\t\t[-84.509052, 34.988033],\n\t\t\t\t\t\t[-84.509886, 34.988010],\n\t\t\t\t\t\t[-84.621483, 34.988329],\n\t\t\t\t\t\t[-84.727434, 34.988020],\n\t\t\t\t\t\t[-84.731022, 34.988088],\n\t\t\t\t\t\t[-84.775852, 34.987800],\n\t\t\t\t\t\t[-84.699937, 35.170974],\n\t\t\t\t\t\t[-84.703607, 35.241043],\n\t\t\t\t\t\t[-84.495529, 35.285472]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47151\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"151\",\n\t\t\t\t\"NAME\": \"Scott\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 532.297000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.785341, 36.603372],\n\t\t\t\t\t\t[-84.778455, 36.603222],\n\t\t\t\t\t\t[-84.261333, 36.591981],\n\t\t\t\t\t\t[-84.259593, 36.513985],\n\t\t\t\t\t\t[-84.349939, 36.466292],\n\t\t\t\t\t\t[-84.329927, 36.285086],\n\t\t\t\t\t\t[-84.372731, 36.216778],\n\t\t\t\t\t\t[-84.441034, 36.163478],\n\t\t\t\t\t\t[-84.611042, 36.270377],\n\t\t\t\t\t\t[-84.700785, 36.370824],\n\t\t\t\t\t\t[-84.659082, 36.395227],\n\t\t\t\t\t\t[-84.731839, 36.524674],\n\t\t\t\t\t\t[-84.749940, 36.553523],\n\t\t\t\t\t\t[-84.785399, 36.603374],\n\t\t\t\t\t\t[-84.785341, 36.603372]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47173\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"173\",\n\t\t\t\t\"NAME\": \"Union\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 223.549000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.667408, 36.344381],\n\t\t\t\t\t\t[-83.732704, 36.164583],\n\t\t\t\t\t\t[-83.941711, 36.186378],\n\t\t\t\t\t\t[-84.004317, 36.270378],\n\t\t\t\t\t\t[-83.905638, 36.419979],\n\t\t\t\t\t\t[-83.805515, 36.435879],\n\t\t\t\t\t\t[-83.733010, 36.344980],\n\t\t\t\t\t\t[-83.667408, 36.344381]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47179\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"179\",\n\t\t\t\t\"NAME\": \"Washington\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 326.465000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.340460, 36.252807],\n\t\t\t\t\t\t[-82.437251, 36.154709],\n\t\t\t\t\t\t[-82.527605, 36.148951],\n\t\t\t\t\t\t[-82.595065, 36.096205],\n\t\t\t\t\t\t[-82.647769, 36.146404],\n\t\t\t\t\t\t[-82.629641, 36.411540],\n\t\t\t\t\t\t[-82.702566, 36.410412],\n\t\t\t\t\t\t[-82.676177, 36.423400],\n\t\t\t\t\t\t[-82.680677, 36.431800],\n\t\t\t\t\t\t[-82.438266, 36.445703],\n\t\t\t\t\t\t[-82.299859, 36.396505],\n\t\t\t\t\t\t[-82.340460, 36.252807]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US45049\",\n\t\t\t\t\"STATE\": \"45\",\n\t\t\t\t\"COUNTY\": \"049\",\n\t\t\t\t\"NAME\": \"Hampton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 559.896000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.826309, 32.704321],\n\t\t\t\t\t\t[-80.837033, 32.700038],\n\t\t\t\t\t\t[-80.869705, 32.660935],\n\t\t\t\t\t\t[-80.902448, 32.621561],\n\t\t\t\t\t\t[-81.014625, 32.753058],\n\t\t\t\t\t\t[-81.286776, 32.544831],\n\t\t\t\t\t\t[-81.318255, 32.559722],\n\t\t\t\t\t\t[-81.328753, 32.561228],\n\t\t\t\t\t\t[-81.348155, 32.569294],\n\t\t\t\t\t\t[-81.389258, 32.595385],\n\t\t\t\t\t\t[-81.389338, 32.595436],\n\t\t\t\t\t\t[-81.411906, 32.618410],\n\t\t\t\t\t\t[-81.418660, 32.629392],\n\t\t\t\t\t\t[-81.418431, 32.634704],\n\t\t\t\t\t\t[-81.414761, 32.637440],\n\t\t\t\t\t\t[-81.405134, 32.744964],\n\t\t\t\t\t\t[-81.261662, 32.839139],\n\t\t\t\t\t\t[-81.236956, 32.940244],\n\t\t\t\t\t\t[-81.082291, 33.026630],\n\t\t\t\t\t\t[-80.900196, 32.832813],\n\t\t\t\t\t\t[-80.826309, 32.704321]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US45053\",\n\t\t\t\t\"STATE\": \"45\",\n\t\t\t\t\"COUNTY\": \"053\",\n\t\t\t\t\"NAME\": \"Jasper\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 655.318000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.878111, 32.079792],\n\t\t\t\t\t\t[-80.905378, 32.051943],\n\t\t\t\t\t\t[-80.892344, 32.043764],\n\t\t\t\t\t\t[-80.885517, 32.034600],\n\t\t\t\t\t\t[-81.004115, 32.072225],\n\t\t\t\t\t\t[-81.042833, 32.084508],\n\t\t\t\t\t\t[-81.061850, 32.087935],\n\t\t\t\t\t\t[-81.113334, 32.113205],\n\t\t\t\t\t\t[-81.117234, 32.117605],\n\t\t\t\t\t\t[-81.122034, 32.161803],\n\t\t\t\t\t\t[-81.125457, 32.227130],\n\t\t\t\t\t\t[-81.128034, 32.276297],\n\t\t\t\t\t\t[-81.120333, 32.285796],\n\t\t\t\t\t\t[-81.122333, 32.305395],\n\t\t\t\t\t\t[-81.134332, 32.341693],\n\t\t\t\t\t\t[-81.140932, 32.349393],\n\t\t\t\t\t\t[-81.168032, 32.368391],\n\t\t\t\t\t\t[-81.199029, 32.467286],\n\t\t\t\t\t\t[-81.275415, 32.539457],\n\t\t\t\t\t\t[-81.286776, 32.544831],\n\t\t\t\t\t\t[-81.014625, 32.753058],\n\t\t\t\t\t\t[-80.902448, 32.621561],\n\t\t\t\t\t\t[-80.869705, 32.660935],\n\t\t\t\t\t\t[-80.829489, 32.411836],\n\t\t\t\t\t\t[-80.934935, 32.300369],\n\t\t\t\t\t\t[-81.006432, 32.306196],\n\t\t\t\t\t\t[-81.016341, 32.241923],\n\t\t\t\t\t\t[-80.878111, 32.079792]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US45075\",\n\t\t\t\t\"STATE\": \"45\",\n\t\t\t\t\"COUNTY\": \"075\",\n\t\t\t\t\"NAME\": \"Orangeburg\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1106.101000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.220110, 33.439493],\n\t\t\t\t\t\t[-81.221550, 33.439044],\n\t\t\t\t\t\t[-81.222673, 33.440000],\n\t\t\t\t\t\t[-81.372931, 33.490417],\n\t\t\t\t\t\t[-81.373494, 33.490510],\n\t\t\t\t\t\t[-81.187271, 33.652937],\n\t\t\t\t\t\t[-81.086803, 33.695315],\n\t\t\t\t\t\t[-81.042854, 33.707131],\n\t\t\t\t\t\t[-80.939790, 33.608798],\n\t\t\t\t\t\t[-80.879528, 33.619285],\n\t\t\t\t\t\t[-80.807631, 33.604081],\n\t\t\t\t\t\t[-80.659020, 33.470982],\n\t\t\t\t\t\t[-80.552272, 33.565414],\n\t\t\t\t\t\t[-80.496273, 33.558481],\n\t\t\t\t\t\t[-80.354539, 33.430408],\n\t\t\t\t\t\t[-80.222267, 33.443716],\n\t\t\t\t\t\t[-80.253836, 33.299260],\n\t\t\t\t\t\t[-80.361851, 33.257443],\n\t\t\t\t\t\t[-80.484578, 33.280034],\n\t\t\t\t\t\t[-80.502790, 33.334496],\n\t\t\t\t\t\t[-80.790296, 33.180840],\n\t\t\t\t\t\t[-80.791667, 33.181077],\n\t\t\t\t\t\t[-80.793002, 33.179840],\n\t\t\t\t\t\t[-80.793711, 33.178648],\n\t\t\t\t\t\t[-80.795864, 33.176930],\n\t\t\t\t\t\t[-80.797912, 33.176944],\n\t\t\t\t\t\t[-80.948756, 33.308047],\n\t\t\t\t\t\t[-81.220110, 33.439493]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US45081\",\n\t\t\t\t\"STATE\": \"45\",\n\t\t\t\t\"COUNTY\": \"081\",\n\t\t\t\t\"NAME\": \"Saluda\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 452.778000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.571485, 33.877230],\n\t\t\t\t\t\t[-81.651759, 33.814510],\n\t\t\t\t\t\t[-81.836803, 33.866501],\n\t\t\t\t\t\t[-81.894595, 33.975415],\n\t\t\t\t\t\t[-82.008298, 33.961646],\n\t\t\t\t\t\t[-81.870084, 34.135357],\n\t\t\t\t\t\t[-81.860640, 34.179330],\n\t\t\t\t\t\t[-81.731614, 34.187613],\n\t\t\t\t\t\t[-81.538899, 34.081744],\n\t\t\t\t\t\t[-81.471972, 34.076552],\n\t\t\t\t\t\t[-81.571485, 33.877230]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46003\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"003\",\n\t\t\t\t\"NAME\": \"Aurora\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 708.425000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.331508, 43.937708],\n\t\t\t\t\t\t[-98.331484, 43.850988],\n\t\t\t\t\t\t[-98.325242, 43.851058],\n\t\t\t\t\t\t[-98.320595, 43.498651],\n\t\t\t\t\t\t[-98.705782, 43.499319],\n\t\t\t\t\t\t[-98.714946, 43.499121],\n\t\t\t\t\t\t[-98.794588, 43.499187],\n\t\t\t\t\t\t[-98.807771, 43.935223],\n\t\t\t\t\t\t[-98.331508, 43.937708]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46007\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"007\",\n\t\t\t\t\"NAME\": \"Bennett\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1184.709000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-101.228104, 42.997874],\n\t\t\t\t\t\t[-101.229203, 42.997854],\n\t\t\t\t\t\t[-101.230325, 42.997899],\n\t\t\t\t\t\t[-101.625424, 42.996238],\n\t\t\t\t\t\t[-101.875424, 42.999298],\n\t\t\t\t\t\t[-102.082486, 42.999356],\n\t\t\t\t\t\t[-102.108892, 43.129258],\n\t\t\t\t\t\t[-102.110819, 43.389902],\n\t\t\t\t\t\t[-101.228179, 43.389185],\n\t\t\t\t\t\t[-101.227749, 43.002087],\n\t\t\t\t\t\t[-101.228104, 42.997874]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46017\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"017\",\n\t\t\t\t\"NAME\": \"Buffalo\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 471.384000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.576571, 44.192421],\n\t\t\t\t\t\t[-99.300180, 44.194830],\n\t\t\t\t\t\t[-98.925953, 44.196575],\n\t\t\t\t\t\t[-98.926997, 43.935143],\n\t\t\t\t\t\t[-99.350695, 43.933752],\n\t\t\t\t\t\t[-99.355864, 43.934371],\n\t\t\t\t\t\t[-99.353717, 43.995321],\n\t\t\t\t\t\t[-99.562536, 44.101519],\n\t\t\t\t\t\t[-99.576571, 44.192421]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46029\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"029\",\n\t\t\t\t\"NAME\": \"Codington\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 688.495000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.882345, 44.976870],\n\t\t\t\t\t\t[-96.884570, 44.804436],\n\t\t\t\t\t\t[-97.491346, 44.804035],\n\t\t\t\t\t\t[-97.494254, 45.151631],\n\t\t\t\t\t\t[-97.226281, 45.151826],\n\t\t\t\t\t\t[-96.883948, 45.150224],\n\t\t\t\t\t\t[-96.882345, 44.976870]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46035\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"035\",\n\t\t\t\t\"NAME\": \"Davison\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 435.555000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.965012, 43.499040],\n\t\t\t\t\t\t[-98.114758, 43.498297],\n\t\t\t\t\t\t[-98.320595, 43.498651],\n\t\t\t\t\t\t[-98.325242, 43.851058],\n\t\t\t\t\t\t[-97.967279, 43.850686],\n\t\t\t\t\t\t[-97.967444, 43.849325],\n\t\t\t\t\t\t[-97.965012, 43.499040]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46043\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"043\",\n\t\t\t\t\"NAME\": \"Douglas\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 431.802000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.705782, 43.499319],\n\t\t\t\t\t\t[-98.320595, 43.498651],\n\t\t\t\t\t\t[-98.114758, 43.498297],\n\t\t\t\t\t\t[-98.113196, 43.484439],\n\t\t\t\t\t\t[-98.109492, 43.196838],\n\t\t\t\t\t\t[-98.680688, 43.373157],\n\t\t\t\t\t\t[-98.705782, 43.499319]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46055\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"055\",\n\t\t\t\t\"NAME\": \"Haakon\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1810.534000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-101.136838, 44.747126],\n\t\t\t\t\t\t[-101.154516, 44.689947],\n\t\t\t\t\t\t[-101.166753, 44.168085],\n\t\t\t\t\t\t[-101.046916, 44.168484],\n\t\t\t\t\t\t[-101.046786, 43.994970],\n\t\t\t\t\t\t[-101.064068, 43.994929],\n\t\t\t\t\t\t[-102.007336, 43.994530],\n\t\t\t\t\t\t[-102.001068, 44.510926],\n\t\t\t\t\t\t[-102.000841, 44.511259],\n\t\t\t\t\t\t[-102.000432, 44.511663],\n\t\t\t\t\t\t[-101.889038, 44.538458],\n\t\t\t\t\t\t[-101.811198, 44.522373],\n\t\t\t\t\t\t[-101.715038, 44.579483],\n\t\t\t\t\t\t[-101.531035, 44.567875],\n\t\t\t\t\t\t[-101.359893, 44.689019],\n\t\t\t\t\t\t[-101.235139, 44.690574],\n\t\t\t\t\t\t[-101.136838, 44.747126]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46061\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"061\",\n\t\t\t\t\"NAME\": \"Hanson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 434.513000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.608517, 43.849059],\n\t\t\t\t\t\t[-97.607012, 43.499826],\n\t\t\t\t\t\t[-97.965012, 43.499040],\n\t\t\t\t\t\t[-97.967444, 43.849325],\n\t\t\t\t\t\t[-97.967279, 43.850686],\n\t\t\t\t\t\t[-97.851110, 43.849857],\n\t\t\t\t\t\t[-97.608517, 43.849059]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46087\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"087\",\n\t\t\t\t\"NAME\": \"McCook\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 574.204000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.369463, 43.848526],\n\t\t\t\t\t\t[-97.129089, 43.847973],\n\t\t\t\t\t\t[-97.129478, 43.499683],\n\t\t\t\t\t\t[-97.401450, 43.499783],\n\t\t\t\t\t\t[-97.607012, 43.499826],\n\t\t\t\t\t\t[-97.608517, 43.849059],\n\t\t\t\t\t\t[-97.369463, 43.848526]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46095\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"095\",\n\t\t\t\t\"NAME\": \"Mellette\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1307.306000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.338970, 43.716942],\n\t\t\t\t\t\t[-100.230845, 43.713856],\n\t\t\t\t\t\t[-100.214221, 43.390321],\n\t\t\t\t\t\t[-101.228179, 43.389185],\n\t\t\t\t\t\t[-101.228264, 43.788844],\n\t\t\t\t\t\t[-101.064326, 43.841090],\n\t\t\t\t\t\t[-101.031377, 43.857896],\n\t\t\t\t\t\t[-100.795732, 43.754055],\n\t\t\t\t\t\t[-100.789635, 43.725438],\n\t\t\t\t\t\t[-100.735003, 43.707621],\n\t\t\t\t\t\t[-100.583380, 43.768012],\n\t\t\t\t\t\t[-100.473105, 43.720891],\n\t\t\t\t\t\t[-100.338970, 43.716942]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46103\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"103\",\n\t\t\t\t\"NAME\": \"Pennington\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2776.553000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-104.055104, 43.853478],\n\t\t\t\t\t\t[-104.055077, 43.936535],\n\t\t\t\t\t\t[-104.054950, 43.938090],\n\t\t\t\t\t\t[-104.054562, 44.141081],\n\t\t\t\t\t\t[-103.452453, 44.140772],\n\t\t\t\t\t\t[-102.388045, 44.140183],\n\t\t\t\t\t\t[-102.306223, 44.434085],\n\t\t\t\t\t\t[-102.164179, 44.427466],\n\t\t\t\t\t\t[-102.001068, 44.510926],\n\t\t\t\t\t\t[-102.007336, 43.994530],\n\t\t\t\t\t\t[-102.018887, 43.708618],\n\t\t\t\t\t\t[-102.139158, 43.700948],\n\t\t\t\t\t\t[-102.175231, 43.687756],\n\t\t\t\t\t\t[-102.810419, 43.688132],\n\t\t\t\t\t\t[-102.817114, 43.689658],\n\t\t\t\t\t\t[-102.695526, 43.798150],\n\t\t\t\t\t\t[-102.687192, 43.855415],\n\t\t\t\t\t\t[-104.055104, 43.853478]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46111\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"111\",\n\t\t\t\t\"NAME\": \"Sanborn\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 569.321000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.853660, 44.195233],\n\t\t\t\t\t\t[-97.853150, 44.195220],\n\t\t\t\t\t\t[-97.849492, 44.195235],\n\t\t\t\t\t\t[-97.851110, 43.849857],\n\t\t\t\t\t\t[-97.967279, 43.850686],\n\t\t\t\t\t\t[-98.325242, 43.851058],\n\t\t\t\t\t\t[-98.331484, 43.850988],\n\t\t\t\t\t\t[-98.331508, 43.937708],\n\t\t\t\t\t\t[-98.332042, 44.196620],\n\t\t\t\t\t\t[-97.853660, 44.195233]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46125\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"125\",\n\t\t\t\t\"NAME\": \"Turner\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 617.057000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.924841, 43.500007],\n\t\t\t\t\t\t[-96.924142, 43.083733],\n\t\t\t\t\t\t[-97.160543, 43.083145],\n\t\t\t\t\t\t[-97.160544, 43.169978],\n\t\t\t\t\t\t[-97.399191, 43.169419],\n\t\t\t\t\t\t[-97.401450, 43.499783],\n\t\t\t\t\t\t[-97.129478, 43.499683],\n\t\t\t\t\t\t[-96.924841, 43.500007]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46137\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"137\",\n\t\t\t\t\"NAME\": \"Ziebach\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1961.272000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-101.999790, 45.472414],\n\t\t\t\t\t\t[-101.470190, 45.472416],\n\t\t\t\t\t\t[-101.486348, 45.385590],\n\t\t\t\t\t\t[-101.500988, 44.993649],\n\t\t\t\t\t\t[-101.136162, 44.994074],\n\t\t\t\t\t\t[-101.136838, 44.747126],\n\t\t\t\t\t\t[-101.235139, 44.690574],\n\t\t\t\t\t\t[-101.359893, 44.689019],\n\t\t\t\t\t\t[-101.531035, 44.567875],\n\t\t\t\t\t\t[-101.715038, 44.579483],\n\t\t\t\t\t\t[-101.811198, 44.522373],\n\t\t\t\t\t\t[-101.889038, 44.538458],\n\t\t\t\t\t\t[-102.000432, 44.511663],\n\t\t\t\t\t\t[-101.999993, 45.037999],\n\t\t\t\t\t\t[-101.999790, 45.472414]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40059\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"059\",\n\t\t\t\t\"NAME\": \"Harper\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1039.017000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.002563, 37.001706],\n\t\t\t\t\t\t[-100.001286, 37.001699],\n\t\t\t\t\t\t[-99.995201, 37.001631],\n\t\t\t\t\t\t[-99.786016, 37.000931],\n\t\t\t\t\t\t[-99.774816, 37.000841],\n\t\t\t\t\t\t[-99.774255, 37.000837],\n\t\t\t\t\t\t[-99.657658, 37.000197],\n\t\t\t\t\t\t[-99.625399, 36.999671],\n\t\t\t\t\t\t[-99.558068, 36.999528],\n\t\t\t\t\t\t[-99.541116, 36.999573],\n\t\t\t\t\t\t[-99.508574, 36.999658],\n\t\t\t\t\t\t[-99.504093, 36.999648],\n\t\t\t\t\t\t[-99.502665, 36.999645],\n\t\t\t\t\t\t[-99.500395, 36.999637],\n\t\t\t\t\t\t[-99.500395, 36.999576],\n\t\t\t\t\t\t[-99.484333, 36.999626],\n\t\t\t\t\t\t[-99.456203, 36.999471],\n\t\t\t\t\t\t[-99.372996, 36.878610],\n\t\t\t\t\t\t[-99.295186, 36.819566],\n\t\t\t\t\t\t[-99.295257, 36.595123],\n\t\t\t\t\t\t[-99.605565, 36.592753],\n\t\t\t\t\t\t[-100.003160, 36.593250],\n\t\t\t\t\t\t[-100.002866, 37.000029],\n\t\t\t\t\t\t[-100.002563, 37.001706]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40063\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"063\",\n\t\t\t\t\"NAME\": \"Hughes\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 804.647000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.490786, 34.910585],\n\t\t\t\t\t\t[-96.490434, 35.115858],\n\t\t\t\t\t\t[-96.441401, 35.115770],\n\t\t\t\t\t\t[-96.441368, 35.290122],\n\t\t\t\t\t\t[-95.981376, 35.289899],\n\t\t\t\t\t\t[-95.983710, 35.151557],\n\t\t\t\t\t\t[-96.088843, 35.049863],\n\t\t\t\t\t\t[-96.092001, 34.767479],\n\t\t\t\t\t\t[-96.406483, 34.767590],\n\t\t\t\t\t\t[-96.406187, 34.908371],\n\t\t\t\t\t\t[-96.490786, 34.910585]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40073\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"073\",\n\t\t\t\t\"NAME\": \"Kingfisher\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 898.161000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.103904, 36.164877],\n\t\t\t\t\t\t[-97.675617, 36.164663],\n\t\t\t\t\t\t[-97.674026, 35.725970],\n\t\t\t\t\t\t[-98.207104, 35.725140],\n\t\t\t\t\t\t[-98.210544, 36.164890],\n\t\t\t\t\t\t[-98.103904, 36.164877]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40081\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"081\",\n\t\t\t\t\"NAME\": \"Lincoln\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 952.314000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.620648, 35.639005],\n\t\t\t\t\t\t[-96.624865, 35.462706],\n\t\t\t\t\t\t[-97.141490, 35.463977],\n\t\t\t\t\t\t[-97.141072, 35.724441],\n\t\t\t\t\t\t[-97.140583, 35.941991],\n\t\t\t\t\t\t[-96.621097, 35.941519],\n\t\t\t\t\t\t[-96.620648, 35.639005]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40087\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"087\",\n\t\t\t\t\"NAME\": \"McClain\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 570.701000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.671595, 35.335934],\n\t\t\t\t\t\t[-97.671529, 35.337508],\n\t\t\t\t\t\t[-97.556987, 35.288440],\n\t\t\t\t\t\t[-97.541460, 35.214165],\n\t\t\t\t\t\t[-97.354192, 35.076656],\n\t\t\t\t\t\t[-97.341509, 34.964001],\n\t\t\t\t\t\t[-97.142349, 34.928176],\n\t\t\t\t\t\t[-97.015930, 34.907348],\n\t\t\t\t\t\t[-96.930586, 34.964364],\n\t\t\t\t\t\t[-96.930872, 34.854632],\n\t\t\t\t\t\t[-96.932471, 34.854455],\n\t\t\t\t\t\t[-97.668099, 34.855164],\n\t\t\t\t\t\t[-97.671595, 35.335934]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40097\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"097\",\n\t\t\t\t\"NAME\": \"Mayes\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 655.386000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.439970, 36.075200],\n\t\t\t\t\t\t[-95.435610, 36.510160],\n\t\t\t\t\t\t[-95.328170, 36.510240],\n\t\t\t\t\t\t[-95.005730, 36.509890],\n\t\t\t\t\t\t[-95.011303, 36.161815],\n\t\t\t\t\t\t[-95.118500, 36.161630],\n\t\t\t\t\t\t[-95.118377, 36.074544],\n\t\t\t\t\t\t[-95.207946, 36.074708],\n\t\t\t\t\t\t[-95.439970, 36.075200]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40109\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"109\",\n\t\t\t\t\"NAME\": \"Oklahoma\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 708.819000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.264992, 35.377368],\n\t\t\t\t\t\t[-97.423566, 35.377316],\n\t\t\t\t\t\t[-97.671369, 35.377151],\n\t\t\t\t\t\t[-97.671319, 35.464338],\n\t\t\t\t\t\t[-97.674026, 35.725970],\n\t\t\t\t\t\t[-97.141072, 35.724441],\n\t\t\t\t\t\t[-97.141490, 35.463977],\n\t\t\t\t\t\t[-97.142114, 35.376860],\n\t\t\t\t\t\t[-97.264992, 35.377368]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40123\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"123\",\n\t\t\t\t\"NAME\": \"Pontotoc\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 720.435000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.930586, 34.964364],\n\t\t\t\t\t\t[-96.821488, 34.946112],\n\t\t\t\t\t\t[-96.775681, 34.899958],\n\t\t\t\t\t\t[-96.722891, 34.856782],\n\t\t\t\t\t\t[-96.556889, 34.914184],\n\t\t\t\t\t\t[-96.490786, 34.910585],\n\t\t\t\t\t\t[-96.406187, 34.908371],\n\t\t\t\t\t\t[-96.406483, 34.767590],\n\t\t\t\t\t\t[-96.406357, 34.680023],\n\t\t\t\t\t\t[-96.512171, 34.680065],\n\t\t\t\t\t\t[-96.513865, 34.505389],\n\t\t\t\t\t\t[-96.827288, 34.505989],\n\t\t\t\t\t\t[-96.827290, 34.593220],\n\t\t\t\t\t\t[-96.932423, 34.593261],\n\t\t\t\t\t\t[-96.932328, 34.636811],\n\t\t\t\t\t\t[-96.932471, 34.854455],\n\t\t\t\t\t\t[-96.930872, 34.854632],\n\t\t\t\t\t\t[-96.930586, 34.964364]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40127\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"127\",\n\t\t\t\t\"NAME\": \"Pushmataha\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1395.836000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.779376, 34.156699],\n\t\t\t\t\t\t[-95.779425, 34.506556],\n\t\t\t\t\t\t[-95.671700, 34.506799],\n\t\t\t\t\t\t[-95.671976, 34.593852],\n\t\t\t\t\t\t[-95.514315, 34.594153],\n\t\t\t\t\t\t[-95.514514, 34.681142],\n\t\t\t\t\t\t[-95.059616, 34.680736],\n\t\t\t\t\t\t[-94.937752, 34.680877],\n\t\t\t\t\t\t[-94.937605, 34.506831],\n\t\t\t\t\t\t[-95.046746, 34.507229],\n\t\t\t\t\t\t[-95.046585, 34.243671],\n\t\t\t\t\t\t[-95.151233, 34.243906],\n\t\t\t\t\t\t[-95.156521, 34.156965],\n\t\t\t\t\t\t[-95.779376, 34.156699]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40147\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"147\",\n\t\t\t\t\"NAME\": \"Washington\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 415.454000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.001171, 36.423686],\n\t\t\t\t\t\t[-96.000810, 36.998860],\n\t\t\t\t\t\t[-95.964270, 36.999094],\n\t\t\t\t\t\t[-95.936992, 36.999268],\n\t\t\t\t\t\t[-95.928122, 36.999245],\n\t\t\t\t\t\t[-95.910180, 36.999336],\n\t\t\t\t\t\t[-95.877151, 36.999304],\n\t\t\t\t\t\t[-95.875257, 36.999302],\n\t\t\t\t\t\t[-95.873944, 36.999300],\n\t\t\t\t\t\t[-95.866899, 36.999261],\n\t\t\t\t\t\t[-95.807980, 36.999124],\n\t\t\t\t\t\t[-95.786762, 36.999310],\n\t\t\t\t\t\t[-95.809820, 36.941930],\n\t\t\t\t\t\t[-95.809617, 36.597476],\n\t\t\t\t\t\t[-95.812449, 36.597516],\n\t\t\t\t\t\t[-95.812680, 36.423560],\n\t\t\t\t\t\t[-96.001171, 36.423686]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40153\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"153\",\n\t\t\t\t\"NAME\": \"Woodward\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1242.399000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.605565, 36.592753],\n\t\t\t\t\t\t[-99.295257, 36.595123],\n\t\t\t\t\t\t[-99.295186, 36.819566],\n\t\t\t\t\t\t[-99.139855, 36.783040],\n\t\t\t\t\t\t[-98.959973, 36.598991],\n\t\t\t\t\t\t[-98.960334, 36.506914],\n\t\t\t\t\t\t[-98.955849, 36.161577],\n\t\t\t\t\t\t[-99.382074, 36.164301],\n\t\t\t\t\t\t[-99.596079, 36.164061],\n\t\t\t\t\t\t[-99.605565, 36.592753]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US41017\",\n\t\t\t\t\"STATE\": \"41\",\n\t\t\t\t\"COUNTY\": \"017\",\n\t\t\t\t\"NAME\": \"Deschutes\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 3018.186000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-121.799359, 44.258138],\n\t\t\t\t\t\t[-121.842667, 44.392440],\n\t\t\t\t\t\t[-121.107344, 44.390542],\n\t\t\t\t\t\t[-121.102637, 44.138042],\n\t\t\t\t\t\t[-120.987333, 44.133843],\n\t\t\t\t\t\t[-120.986527, 43.960943],\n\t\t\t\t\t\t[-120.748317, 43.957068],\n\t\t\t\t\t\t[-120.747946, 43.871266],\n\t\t\t\t\t\t[-120.378900, 43.871955],\n\t\t\t\t\t\t[-120.378508, 43.785033],\n\t\t\t\t\t\t[-120.257893, 43.785259],\n\t\t\t\t\t\t[-120.258018, 43.698762],\n\t\t\t\t\t\t[-119.898172, 43.698323],\n\t\t\t\t\t\t[-119.896365, 43.610259],\n\t\t\t\t\t\t[-120.368029, 43.611472],\n\t\t\t\t\t\t[-120.378194, 43.611059],\n\t\t\t\t\t\t[-120.378194, 43.615452],\n\t\t\t\t\t\t[-121.332982, 43.616629],\n\t\t\t\t\t\t[-122.002675, 43.615228],\n\t\t\t\t\t\t[-121.964854, 43.626826],\n\t\t\t\t\t\t[-121.986187, 43.661633],\n\t\t\t\t\t\t[-121.960872, 43.763805],\n\t\t\t\t\t\t[-121.975479, 43.856875],\n\t\t\t\t\t\t[-121.920180, 43.913816],\n\t\t\t\t\t\t[-121.869269, 43.911893],\n\t\t\t\t\t\t[-121.768550, 44.101437],\n\t\t\t\t\t\t[-121.799359, 44.258138]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US41031\",\n\t\t\t\t\"STATE\": \"41\",\n\t\t\t\t\"COUNTY\": \"031\",\n\t\t\t\t\"NAME\": \"Jefferson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1780.785000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-121.794077, 44.683940],\n\t\t\t\t\t\t[-121.759480, 44.825640],\n\t\t\t\t\t\t[-120.371422, 44.821568],\n\t\t\t\t\t\t[-120.385526, 44.563954],\n\t\t\t\t\t\t[-120.827342, 44.562849],\n\t\t\t\t\t\t[-120.827177, 44.476633],\n\t\t\t\t\t\t[-120.988721, 44.476444],\n\t\t\t\t\t\t[-120.988540, 44.390045],\n\t\t\t\t\t\t[-121.107344, 44.390542],\n\t\t\t\t\t\t[-121.842667, 44.392440],\n\t\t\t\t\t\t[-121.794077, 44.683940]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US41037\",\n\t\t\t\t\"STATE\": \"41\",\n\t\t\t\t\"COUNTY\": \"037\",\n\t\t\t\t\"NAME\": \"Lake\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 8138.984000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-121.332982, 43.616629],\n\t\t\t\t\t\t[-120.378194, 43.615452],\n\t\t\t\t\t\t[-120.378194, 43.611059],\n\t\t\t\t\t\t[-120.368029, 43.611472],\n\t\t\t\t\t\t[-119.896365, 43.610259],\n\t\t\t\t\t\t[-119.896776, 43.179006],\n\t\t\t\t\t\t[-119.932439, 43.178982],\n\t\t\t\t\t\t[-119.943888, 42.746320],\n\t\t\t\t\t\t[-119.365284, 42.749038],\n\t\t\t\t\t\t[-119.360177, 41.994384],\n\t\t\t\t\t\t[-119.790087, 41.997544],\n\t\t\t\t\t\t[-119.986678, 41.995842],\n\t\t\t\t\t\t[-119.999168, 41.994540],\n\t\t\t\t\t\t[-120.286424, 41.993058],\n\t\t\t\t\t\t[-120.326005, 41.993122],\n\t\t\t\t\t\t[-120.692219, 41.993677],\n\t\t\t\t\t\t[-120.693941, 41.993676],\n\t\t\t\t\t\t[-120.879481, 41.993781],\n\t\t\t\t\t\t[-120.883340, 42.743883],\n\t\t\t\t\t\t[-121.349880, 42.746671],\n\t\t\t\t\t\t[-121.348576, 43.356691],\n\t\t\t\t\t\t[-121.332708, 43.438570],\n\t\t\t\t\t\t[-121.332982, 43.616629]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US41053\",\n\t\t\t\t\"STATE\": \"41\",\n\t\t\t\t\"COUNTY\": \"053\",\n\t\t\t\t\"NAME\": \"Polk\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 740.787000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-123.149058, 44.720277],\n\t\t\t\t\t\t[-123.347514, 44.720105],\n\t\t\t\t\t\t[-123.580757, 44.719441],\n\t\t\t\t\t\t[-123.602566, 44.721191],\n\t\t\t\t\t\t[-123.724916, 44.739080],\n\t\t\t\t\t\t[-123.725389, 45.043987],\n\t\t\t\t\t\t[-123.724213, 45.076098],\n\t\t\t\t\t\t[-123.069955, 45.075108],\n\t\t\t\t\t\t[-123.039507, 44.951741],\n\t\t\t\t\t\t[-123.113081, 44.928577],\n\t\t\t\t\t\t[-123.178687, 44.833551],\n\t\t\t\t\t\t[-123.092503, 44.813538],\n\t\t\t\t\t\t[-123.143556, 44.749670],\n\t\t\t\t\t\t[-123.133529, 44.738662],\n\t\t\t\t\t\t[-123.150429, 44.727611],\n\t\t\t\t\t\t[-123.149058, 44.720277]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US41069\",\n\t\t\t\t\"STATE\": \"41\",\n\t\t\t\t\"COUNTY\": \"069\",\n\t\t\t\t\"NAME\": \"Wheeler\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1714.749000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-120.371422, 44.821568],\n\t\t\t\t\t\t[-120.455389, 44.866046],\n\t\t\t\t\t\t[-120.495247, 45.068549],\n\t\t\t\t\t\t[-119.790426, 45.067761],\n\t\t\t\t\t\t[-119.791055, 44.994636],\n\t\t\t\t\t\t[-119.671987, 44.994424],\n\t\t\t\t\t\t[-119.652128, 44.823171],\n\t\t\t\t\t\t[-119.655586, 44.306964],\n\t\t\t\t\t\t[-119.898796, 44.306662],\n\t\t\t\t\t\t[-119.899010, 44.389537],\n\t\t\t\t\t\t[-120.020663, 44.389651],\n\t\t\t\t\t\t[-120.021841, 44.438558],\n\t\t\t\t\t\t[-120.385823, 44.437556],\n\t\t\t\t\t\t[-120.385526, 44.563954],\n\t\t\t\t\t\t[-120.371422, 44.821568]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42005\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"005\",\n\t\t\t\t\"NAME\": \"Armstrong\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 653.203000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.215310, 40.911346],\n\t\t\t\t\t\t[-79.215215, 40.775942],\n\t\t\t\t\t\t[-79.251517, 40.737758],\n\t\t\t\t\t\t[-79.450176, 40.530149],\n\t\t\t\t\t\t[-79.561110, 40.564113],\n\t\t\t\t\t\t[-79.638137, 40.665601],\n\t\t\t\t\t\t[-79.692587, 40.669732],\n\t\t\t\t\t\t[-79.692930, 40.669744],\n\t\t\t\t\t\t[-79.692357, 40.672857],\n\t\t\t\t\t\t[-79.692794, 40.674604],\n\t\t\t\t\t\t[-79.692615, 40.688784],\n\t\t\t\t\t\t[-79.692331, 40.716656],\n\t\t\t\t\t\t[-79.689994, 40.741362],\n\t\t\t\t\t\t[-79.690711, 41.170691],\n\t\t\t\t\t\t[-79.618352, 40.974142],\n\t\t\t\t\t\t[-79.284998, 41.009295],\n\t\t\t\t\t\t[-79.215214, 41.050515],\n\t\t\t\t\t\t[-79.215310, 40.911346]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48357\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"357\",\n\t\t\t\t\"NAME\": \"Ochiltree\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 917.627000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.936058, 36.499602],\n\t\t\t\t\t\t[-100.918513, 36.499621],\n\t\t\t\t\t\t[-100.884174, 36.499682],\n\t\t\t\t\t\t[-100.884080, 36.499682],\n\t\t\t\t\t\t[-100.859657, 36.499687],\n\t\t\t\t\t\t[-100.850840, 36.499700],\n\t\t\t\t\t\t[-100.824236, 36.499618],\n\t\t\t\t\t\t[-100.824218, 36.499618],\n\t\t\t\t\t\t[-100.806190, 36.499674],\n\t\t\t\t\t\t[-100.806172, 36.499634],\n\t\t\t\t\t\t[-100.802909, 36.499621],\n\t\t\t\t\t\t[-100.802886, 36.499621],\n\t\t\t\t\t\t[-100.761811, 36.499618],\n\t\t\t\t\t\t[-100.761811, 36.499580],\n\t\t\t\t\t\t[-100.724362, 36.499580],\n\t\t\t\t\t\t[-100.724361, 36.499558],\n\t\t\t\t\t\t[-100.708626, 36.499553],\n\t\t\t\t\t\t[-100.708628, 36.499521],\n\t\t\t\t\t\t[-100.657763, 36.499483],\n\t\t\t\t\t\t[-100.657763, 36.499500],\n\t\t\t\t\t\t[-100.648343, 36.499495],\n\t\t\t\t\t\t[-100.648344, 36.499463],\n\t\t\t\t\t\t[-100.592614, 36.499469],\n\t\t\t\t\t\t[-100.592556, 36.499469],\n\t\t\t\t\t\t[-100.592551, 36.499429],\n\t\t\t\t\t\t[-100.583539, 36.499483],\n\t\t\t\t\t\t[-100.583379, 36.499443],\n\t\t\t\t\t\t[-100.578114, 36.499463],\n\t\t\t\t\t\t[-100.578114, 36.499439],\n\t\t\t\t\t\t[-100.546145, 36.499343],\n\t\t\t\t\t\t[-100.546724, 36.056536],\n\t\t\t\t\t\t[-101.085716, 36.057572],\n\t\t\t\t\t\t[-101.085156, 36.499244],\n\t\t\t\t\t\t[-101.052418, 36.499563],\n\t\t\t\t\t\t[-101.045331, 36.499540],\n\t\t\t\t\t\t[-100.977088, 36.499595],\n\t\t\t\t\t\t[-100.954153, 36.499599],\n\t\t\t\t\t\t[-100.936058, 36.499602]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48359\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"359\",\n\t\t\t\t\"NAME\": \"Oldham\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1500.533000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-103.042377, 35.183156],\n\t\t\t\t\t\t[-103.042497, 35.211862],\n\t\t\t\t\t\t[-103.041554, 35.622487],\n\t\t\t\t\t\t[-102.162809, 35.627515],\n\t\t\t\t\t\t[-102.162808, 35.625044],\n\t\t\t\t\t\t[-102.162752, 35.620035],\n\t\t\t\t\t\t[-102.167471, 35.183233],\n\t\t\t\t\t\t[-103.042377, 35.183156]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48367\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"367\",\n\t\t\t\t\"NAME\": \"Parker\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 903.478000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.544181, 32.994177],\n\t\t\t\t\t\t[-97.550368, 32.580323],\n\t\t\t\t\t\t[-97.550582, 32.555391],\n\t\t\t\t\t\t[-97.617066, 32.555484],\n\t\t\t\t\t\t[-98.066836, 32.558822],\n\t\t\t\t\t\t[-98.056094, 33.003332],\n\t\t\t\t\t\t[-97.921642, 33.001284],\n\t\t\t\t\t\t[-97.545383, 32.994662],\n\t\t\t\t\t\t[-97.544181, 32.994177]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48379\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"379\",\n\t\t\t\t\"NAME\": \"Rains\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 229.452000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.665389, 32.960434],\n\t\t\t\t\t\t[-95.635017, 32.720380],\n\t\t\t\t\t\t[-95.829581, 32.766967],\n\t\t\t\t\t\t[-95.934433, 32.837217],\n\t\t\t\t\t\t[-95.987259, 32.876415],\n\t\t\t\t\t\t[-95.945300, 32.979877],\n\t\t\t\t\t\t[-95.862521, 32.979571],\n\t\t\t\t\t\t[-95.665389, 32.960434]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48381\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"381\",\n\t\t\t\t\"NAME\": \"Randall\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 911.544000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-102.168839, 34.747417],\n\t\t\t\t\t\t[-102.167471, 35.183233],\n\t\t\t\t\t\t[-101.622941, 35.183117],\n\t\t\t\t\t\t[-101.629396, 34.750056],\n\t\t\t\t\t\t[-101.629257, 34.747649],\n\t\t\t\t\t\t[-101.998493, 34.748190],\n\t\t\t\t\t\t[-102.168839, 34.747417]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48393\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"393\",\n\t\t\t\t\"NAME\": \"Roberts\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 924.058000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.540158, 35.619296],\n\t\t\t\t\t\t[-101.085935, 35.619102],\n\t\t\t\t\t\t[-101.086068, 35.625267],\n\t\t\t\t\t\t[-101.085735, 36.055276],\n\t\t\t\t\t\t[-101.085716, 36.057572],\n\t\t\t\t\t\t[-100.546724, 36.056536],\n\t\t\t\t\t\t[-100.540221, 36.056491],\n\t\t\t\t\t\t[-100.540158, 35.619296]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48397\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"397\",\n\t\t\t\t\"NAME\": \"Rockwall\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 127.036000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.518970, 32.813616],\n\t\t\t\t\t\t[-96.518586, 32.873389],\n\t\t\t\t\t\t[-96.518314, 32.877153],\n\t\t\t\t\t\t[-96.518273, 32.891534],\n\t\t\t\t\t\t[-96.516866, 32.982308],\n\t\t\t\t\t\t[-96.297227, 32.981752],\n\t\t\t\t\t\t[-96.297322, 32.841723],\n\t\t\t\t\t\t[-96.297376, 32.814185],\n\t\t\t\t\t\t[-96.518970, 32.813616]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48411\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"411\",\n\t\t\t\t\"NAME\": \"San Saba\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1135.297000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.439687, 31.029537],\n\t\t\t\t\t\t[-98.445782, 30.921439],\n\t\t\t\t\t\t[-98.964612, 30.921368],\n\t\t\t\t\t\t[-99.092431, 30.921968],\n\t\t\t\t\t\t[-99.092317, 30.941002],\n\t\t\t\t\t\t[-99.090622, 31.460927],\n\t\t\t\t\t\t[-98.991608, 31.484071],\n\t\t\t\t\t\t[-98.967159, 31.435903],\n\t\t\t\t\t\t[-98.872500, 31.444299],\n\t\t\t\t\t\t[-98.854292, 31.413425],\n\t\t\t\t\t\t[-98.773000, 31.410926],\n\t\t\t\t\t\t[-98.762589, 31.375282],\n\t\t\t\t\t\t[-98.726094, 31.428278],\n\t\t\t\t\t\t[-98.562739, 31.230582],\n\t\t\t\t\t\t[-98.510341, 31.155666],\n\t\t\t\t\t\t[-98.523459, 31.088886],\n\t\t\t\t\t\t[-98.439687, 31.029537]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48425\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"425\",\n\t\t\t\t\"NAME\": \"Somervell\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 186.463000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.864864, 32.087328],\n\t\t\t\t\t\t[-97.940474, 32.221738],\n\t\t\t\t\t\t[-97.945625, 32.233468],\n\t\t\t\t\t\t[-97.782760, 32.316493],\n\t\t\t\t\t\t[-97.615286, 32.318618],\n\t\t\t\t\t\t[-97.615055, 32.203581],\n\t\t\t\t\t\t[-97.864864, 32.087328]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48429\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"429\",\n\t\t\t\t\"NAME\": \"Stephens\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 896.719000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.575616, 32.954349],\n\t\t\t\t\t\t[-98.576256, 32.515163],\n\t\t\t\t\t\t[-99.096050, 32.514768],\n\t\t\t\t\t\t[-99.096016, 32.957037],\n\t\t\t\t\t\t[-98.950875, 32.956918],\n\t\t\t\t\t\t[-98.575616, 32.954349]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48433\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"433\",\n\t\t\t\t\"NAME\": \"Stonewall\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 916.313000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.988827, 32.960121],\n\t\t\t\t\t\t[-100.144224, 32.959978],\n\t\t\t\t\t\t[-100.519208, 32.962926],\n\t\t\t\t\t\t[-100.517449, 33.397866],\n\t\t\t\t\t\t[-99.990980, 33.397404],\n\t\t\t\t\t\t[-99.988827, 32.960121]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48445\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"445\",\n\t\t\t\t\"NAME\": \"Terry\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 888.839000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-102.208520, 32.958956],\n\t\t\t\t\t\t[-102.595023, 32.958831],\n\t\t\t\t\t\t[-102.594836, 33.388489],\n\t\t\t\t\t\t[-102.075929, 33.389586],\n\t\t\t\t\t\t[-102.076214, 32.959702],\n\t\t\t\t\t\t[-102.208520, 32.958956]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48449\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"449\",\n\t\t\t\t\"NAME\": \"Titus\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 406.054000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.125451, 33.389454],\n\t\t\t\t\t\t[-94.808783, 33.363636],\n\t\t\t\t\t\t[-94.819828, 32.982886],\n\t\t\t\t\t\t[-94.926546, 33.069287],\n\t\t\t\t\t\t[-95.126130, 33.034581],\n\t\t\t\t\t\t[-95.125451, 33.389454]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48459\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"459\",\n\t\t\t\t\"NAME\": \"Upshur\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 582.947000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.153410, 32.570115],\n\t\t\t\t\t\t[-95.152110, 32.902641],\n\t\t\t\t\t\t[-94.719942, 32.904502],\n\t\t\t\t\t\t[-94.720065, 32.900450],\n\t\t\t\t\t\t[-94.705177, 32.892062],\n\t\t\t\t\t\t[-94.705878, 32.879177],\n\t\t\t\t\t\t[-94.702140, 32.793088],\n\t\t\t\t\t\t[-94.701790, 32.652209],\n\t\t\t\t\t\t[-94.986935, 32.537246],\n\t\t\t\t\t\t[-95.153410, 32.570115]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48463\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"463\",\n\t\t\t\t\"NAME\": \"Uvalde\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1551.946000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.112098, 29.623263],\n\t\t\t\t\t\t[-100.014188, 29.623495],\n\t\t\t\t\t\t[-99.603130, 29.627181],\n\t\t\t\t\t\t[-99.411817, 29.627514],\n\t\t\t\t\t\t[-99.413880, 29.091335],\n\t\t\t\t\t\t[-100.111406, 29.086318],\n\t\t\t\t\t\t[-100.112098, 29.623263]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48475\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"475\",\n\t\t\t\t\"NAME\": \"Ward\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 835.602000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-102.798939, 31.651783],\n\t\t\t\t\t\t[-102.767246, 31.651714],\n\t\t\t\t\t\t[-102.767688, 31.640496],\n\t\t\t\t\t\t[-102.767365, 31.293803],\n\t\t\t\t\t\t[-102.827087, 31.267909],\n\t\t\t\t\t\t[-103.011040, 31.371306],\n\t\t\t\t\t\t[-103.459426, 31.428494],\n\t\t\t\t\t\t[-103.530927, 31.642284],\n\t\t\t\t\t\t[-103.574890, 31.632662],\n\t\t\t\t\t\t[-103.610887, 31.651802],\n\t\t\t\t\t\t[-103.327538, 31.651420],\n\t\t\t\t\t\t[-102.801793, 31.651306],\n\t\t\t\t\t\t[-102.798939, 31.651783]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48491\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"491\",\n\t\t\t\t\"NAME\": \"Williamson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1118.303000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.369539, 30.419563],\n\t\t\t\t\t\t[-97.576167, 30.501799],\n\t\t\t\t\t\t[-97.775211, 30.429993],\n\t\t\t\t\t\t[-97.956734, 30.628249],\n\t\t\t\t\t\t[-98.049886, 30.624155],\n\t\t\t\t\t\t[-97.962860, 30.785641],\n\t\t\t\t\t\t[-97.828512, 30.906188],\n\t\t\t\t\t\t[-97.625288, 30.870430],\n\t\t\t\t\t\t[-97.315507, 30.752371],\n\t\t\t\t\t\t[-97.271418, 30.735692],\n\t\t\t\t\t\t[-97.155219, 30.457344],\n\t\t\t\t\t\t[-97.334463, 30.402843],\n\t\t\t\t\t\t[-97.369539, 30.419563]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48497\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"497\",\n\t\t\t\t\"NAME\": \"Wise\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 904.422000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.487065, 33.433681],\n\t\t\t\t\t\t[-97.383015, 33.432890],\n\t\t\t\t\t\t[-97.383095, 33.430450],\n\t\t\t\t\t\t[-97.398480, 32.990839],\n\t\t\t\t\t\t[-97.414843, 32.992029],\n\t\t\t\t\t\t[-97.544181, 32.994177],\n\t\t\t\t\t\t[-97.545383, 32.994662],\n\t\t\t\t\t\t[-97.921642, 33.001284],\n\t\t\t\t\t\t[-97.918189, 33.433873],\n\t\t\t\t\t\t[-97.500154, 33.434057],\n\t\t\t\t\t\t[-97.487065, 33.433681]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48507\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"507\",\n\t\t\t\t\"NAME\": \"Zavala\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1297.406000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.413880, 29.091335],\n\t\t\t\t\t\t[-99.409021, 28.640566],\n\t\t\t\t\t\t[-100.114336, 28.648122],\n\t\t\t\t\t\t[-100.111406, 29.086318],\n\t\t\t\t\t\t[-99.413880, 29.091335]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US49011\",\n\t\t\t\t\"STATE\": \"49\",\n\t\t\t\t\"COUNTY\": \"011\",\n\t\t\t\t\"NAME\": \"Davis\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 298.778000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-111.738575, 40.861055],\n\t\t\t\t\t\t[-111.915865, 40.822045],\n\t\t\t\t\t\t[-112.006597, 40.921845],\n\t\t\t\t\t\t[-112.263510, 40.773450],\n\t\t\t\t\t\t[-112.493393, 41.076735],\n\t\t\t\t\t\t[-112.189578, 41.152741],\n\t\t\t\t\t\t[-111.856305, 41.139118],\n\t\t\t\t\t\t[-111.815186, 40.957533],\n\t\t\t\t\t\t[-111.738575, 40.861055]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47185\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"185\",\n\t\t\t\t\"NAME\": \"White\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 376.673000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.602876, 35.794996],\n\t\t\t\t\t\t[-85.607594, 35.803246],\n\t\t\t\t\t\t[-85.622195, 35.801810],\n\t\t\t\t\t\t[-85.634845, 35.808616],\n\t\t\t\t\t\t[-85.641655, 35.816717],\n\t\t\t\t\t\t[-85.653072, 35.816431],\n\t\t\t\t\t\t[-85.671427, 35.820708],\n\t\t\t\t\t\t[-85.682602, 35.827246],\n\t\t\t\t\t\t[-85.682095, 35.831254],\n\t\t\t\t\t\t[-85.637327, 35.881824],\n\t\t\t\t\t\t[-85.644604, 36.015053],\n\t\t\t\t\t\t[-85.509323, 36.081937],\n\t\t\t\t\t\t[-85.309363, 36.031592],\n\t\t\t\t\t\t[-85.264206, 35.979154],\n\t\t\t\t\t\t[-85.213115, 35.910379],\n\t\t\t\t\t\t[-85.269359, 35.793388],\n\t\t\t\t\t\t[-85.474213, 35.822656],\n\t\t\t\t\t\t[-85.602876, 35.794996]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47189\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"189\",\n\t\t\t\t\"NAME\": \"Wilson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 570.826000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.153214, 35.954399],\n\t\t\t\t\t\t[-86.310363, 35.978563],\n\t\t\t\t\t\t[-86.417189, 36.041517],\n\t\t\t\t\t\t[-86.515589, 36.100610],\n\t\t\t\t\t\t[-86.594286, 36.245105],\n\t\t\t\t\t\t[-86.543434, 36.320602],\n\t\t\t\t\t\t[-86.451721, 36.335629],\n\t\t\t\t\t\t[-86.298452, 36.313634],\n\t\t\t\t\t\t[-86.283256, 36.347500],\n\t\t\t\t\t\t[-86.174666, 36.328000],\n\t\t\t\t\t\t[-86.164045, 36.320899],\n\t\t\t\t\t\t[-86.144659, 36.304502],\n\t\t\t\t\t\t[-86.136803, 36.295859],\n\t\t\t\t\t\t[-86.059706, 36.086024],\n\t\t\t\t\t\t[-86.014849, 35.961060],\n\t\t\t\t\t\t[-86.153214, 35.954399]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48009\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"009\",\n\t\t\t\t\"NAME\": \"Archer\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 903.110000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.953088, 33.834000],\n\t\t\t\t\t\t[-98.742358, 33.834552],\n\t\t\t\t\t\t[-98.423577, 33.836047],\n\t\t\t\t\t\t[-98.423145, 33.610163],\n\t\t\t\t\t\t[-98.421419, 33.466797],\n\t\t\t\t\t\t[-98.420666, 33.396195],\n\t\t\t\t\t\t[-98.953938, 33.397534],\n\t\t\t\t\t\t[-98.953088, 33.834000]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48011\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"011\",\n\t\t\t\t\"NAME\": \"Armstrong\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 909.109000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-101.471562, 34.747462],\n\t\t\t\t\t\t[-101.629257, 34.747649],\n\t\t\t\t\t\t[-101.629396, 34.750056],\n\t\t\t\t\t\t[-101.622941, 35.183117],\n\t\t\t\t\t\t[-101.086281, 35.182140],\n\t\t\t\t\t\t[-101.090749, 34.748246],\n\t\t\t\t\t\t[-101.471562, 34.747462]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48021\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"021\",\n\t\t\t\t\"NAME\": \"Bastrop\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 888.150000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.048210, 30.137947],\n\t\t\t\t\t\t[-97.024461, 30.051435],\n\t\t\t\t\t\t[-97.315823, 29.786541],\n\t\t\t\t\t\t[-97.648043, 30.067262],\n\t\t\t\t\t\t[-97.649449, 30.067866],\n\t\t\t\t\t\t[-97.492679, 30.209946],\n\t\t\t\t\t\t[-97.486329, 30.220528],\n\t\t\t\t\t\t[-97.409875, 30.351329],\n\t\t\t\t\t\t[-97.377227, 30.407086],\n\t\t\t\t\t\t[-97.369539, 30.419563],\n\t\t\t\t\t\t[-97.334463, 30.402843],\n\t\t\t\t\t\t[-97.081834, 30.259357],\n\t\t\t\t\t\t[-97.048210, 30.137947]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48031\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"031\",\n\t\t\t\t\"NAME\": \"Blanco\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 709.251000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.591670, 30.499875],\n\t\t\t\t\t\t[-98.411462, 30.502095],\n\t\t\t\t\t\t[-98.351041, 30.486096],\n\t\t\t\t\t\t[-98.125556, 30.426186],\n\t\t\t\t\t\t[-98.172977, 30.356312],\n\t\t\t\t\t\t[-98.297600, 30.037994],\n\t\t\t\t\t\t[-98.414018, 29.937557],\n\t\t\t\t\t\t[-98.587897, 30.138954],\n\t\t\t\t\t\t[-98.591670, 30.499875]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48047\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"047\",\n\t\t\t\t\"NAME\": \"Brooks\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 943.364000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.232464, 27.262487],\n\t\t\t\t\t\t[-98.058078, 27.260981],\n\t\t\t\t\t\t[-97.985887, 27.209308],\n\t\t\t\t\t\t[-97.985494, 26.780917],\n\t\t\t\t\t\t[-98.320670, 26.783081],\n\t\t\t\t\t\t[-98.422616, 26.783535],\n\t\t\t\t\t\t[-98.417883, 27.055285],\n\t\t\t\t\t\t[-98.466542, 27.054711],\n\t\t\t\t\t\t[-98.492943, 27.235012],\n\t\t\t\t\t\t[-98.523723, 27.265115],\n\t\t\t\t\t\t[-98.232464, 27.262487]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48053\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"053\",\n\t\t\t\t\"NAME\": \"Burnet\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 994.258000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.911684, 31.034919],\n\t\t\t\t\t\t[-97.840365, 30.929318],\n\t\t\t\t\t\t[-97.828512, 30.906188],\n\t\t\t\t\t\t[-97.962860, 30.785641],\n\t\t\t\t\t\t[-98.049886, 30.624155],\n\t\t\t\t\t\t[-98.123111, 30.484723],\n\t\t\t\t\t\t[-98.125556, 30.426186],\n\t\t\t\t\t\t[-98.351041, 30.486096],\n\t\t\t\t\t\t[-98.438995, 30.673285],\n\t\t\t\t\t\t[-98.371905, 30.740485],\n\t\t\t\t\t\t[-98.432098, 30.786310],\n\t\t\t\t\t\t[-98.376877, 30.834890],\n\t\t\t\t\t\t[-98.445782, 30.921439],\n\t\t\t\t\t\t[-98.439687, 31.029537],\n\t\t\t\t\t\t[-97.911684, 31.034919]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48063\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"063\",\n\t\t\t\t\"NAME\": \"Camp\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 195.826000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.152110, 32.902641],\n\t\t\t\t\t\t[-95.152206, 33.013450],\n\t\t\t\t\t\t[-95.147452, 33.020871],\n\t\t\t\t\t\t[-95.138714, 33.026226],\n\t\t\t\t\t\t[-95.137213, 33.030938],\n\t\t\t\t\t\t[-95.131884, 33.029809],\n\t\t\t\t\t\t[-95.126130, 33.034581],\n\t\t\t\t\t\t[-94.926546, 33.069287],\n\t\t\t\t\t\t[-94.819828, 32.982886],\n\t\t\t\t\t\t[-94.719942, 32.904502],\n\t\t\t\t\t\t[-95.152110, 32.902641]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48069\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"069\",\n\t\t\t\t\"NAME\": \"Castro\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 894.434000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-102.168839, 34.747417],\n\t\t\t\t\t\t[-101.998493, 34.748190],\n\t\t\t\t\t\t[-101.998020, 34.313039],\n\t\t\t\t\t\t[-102.090415, 34.313132],\n\t\t\t\t\t\t[-102.525631, 34.313034],\n\t\t\t\t\t\t[-102.525184, 34.746931],\n\t\t\t\t\t\t[-102.168839, 34.747417]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48079\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"079\",\n\t\t\t\t\"NAME\": \"Cochran\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 775.150000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-103.047346, 33.824675],\n\t\t\t\t\t\t[-102.615447, 33.825121],\n\t\t\t\t\t\t[-102.594836, 33.388489],\n\t\t\t\t\t\t[-103.056655, 33.388416],\n\t\t\t\t\t\t[-103.056655, 33.388438],\n\t\t\t\t\t\t[-103.052610, 33.570599],\n\t\t\t\t\t\t[-103.051664, 33.629489],\n\t\t\t\t\t\t[-103.051363, 33.641950],\n\t\t\t\t\t\t[-103.051535, 33.650487],\n\t\t\t\t\t\t[-103.051087, 33.658186],\n\t\t\t\t\t\t[-103.050532, 33.672408],\n\t\t\t\t\t\t[-103.050148, 33.701971],\n\t\t\t\t\t\t[-103.049096, 33.746270],\n\t\t\t\t\t\t[-103.047346, 33.824675]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48095\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"095\",\n\t\t\t\t\"NAME\": \"Concho\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 983.799000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.111234, 31.580267],\n\t\t\t\t\t\t[-99.721698, 31.576759],\n\t\t\t\t\t\t[-99.601850, 31.491950],\n\t\t\t\t\t\t[-99.603223, 31.087296],\n\t\t\t\t\t\t[-100.115216, 31.087994],\n\t\t\t\t\t\t[-100.111234, 31.580267]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48099\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"099\",\n\t\t\t\t\"NAME\": \"Coryell\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1052.066000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.766431, 31.672461],\n\t\t\t\t\t\t[-97.689834, 31.711019],\n\t\t\t\t\t\t[-97.605230, 31.587762],\n\t\t\t\t\t\t[-97.418606, 31.320202],\n\t\t\t\t\t\t[-97.907100, 31.069374],\n\t\t\t\t\t\t[-98.180006, 31.463717],\n\t\t\t\t\t\t[-97.766431, 31.672461]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48103\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"103\",\n\t\t\t\t\"NAME\": \"Crane\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 785.069000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-102.767246, 31.651714],\n\t\t\t\t\t\t[-102.318050, 31.651327],\n\t\t\t\t\t\t[-102.301212, 31.086212],\n\t\t\t\t\t\t[-102.388804, 31.087156],\n\t\t\t\t\t\t[-102.429545, 31.193557],\n\t\t\t\t\t\t[-102.676497, 31.326823],\n\t\t\t\t\t\t[-102.767365, 31.293803],\n\t\t\t\t\t\t[-102.767688, 31.640496],\n\t\t\t\t\t\t[-102.767246, 31.651714]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48115\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"115\",\n\t\t\t\t\"NAME\": \"Dawson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 900.306000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-102.208520, 32.958956],\n\t\t\t\t\t\t[-102.076214, 32.959702],\n\t\t\t\t\t\t[-101.691284, 32.961838],\n\t\t\t\t\t\t[-101.688740, 32.525222],\n\t\t\t\t\t\t[-102.202703, 32.523271],\n\t\t\t\t\t\t[-102.208520, 32.958956]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48123\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"123\",\n\t\t\t\t\"NAME\": \"DeWitt\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 908.975000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.574639, 28.813300],\n\t\t\t\t\t\t[-97.755110, 29.007113],\n\t\t\t\t\t\t[-97.613132, 29.109765],\n\t\t\t\t\t\t[-97.240108, 29.384488],\n\t\t\t\t\t\t[-96.976378, 29.104046],\n\t\t\t\t\t\t[-97.305916, 28.864037],\n\t\t\t\t\t\t[-97.417340, 28.925228],\n\t\t\t\t\t\t[-97.574639, 28.813300]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48127\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"127\",\n\t\t\t\t\"NAME\": \"Dimmit\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1328.884000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.114336, 28.648122],\n\t\t\t\t\t\t[-99.409021, 28.640566],\n\t\t\t\t\t\t[-99.395736, 28.640784],\n\t\t\t\t\t\t[-99.394177, 28.204627],\n\t\t\t\t\t\t[-100.113719, 28.197819],\n\t\t\t\t\t\t[-100.114336, 28.648122]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48137\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"137\",\n\t\t\t\t\"NAME\": \"Edwards\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2117.858000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.381329, 30.288984],\n\t\t\t\t\t\t[-100.116461, 30.290296],\n\t\t\t\t\t\t[-99.754142, 30.290698],\n\t\t\t\t\t\t[-99.757621, 30.074132],\n\t\t\t\t\t\t[-99.967626, 30.082356],\n\t\t\t\t\t\t[-100.030880, 29.848273],\n\t\t\t\t\t\t[-100.014188, 29.623495],\n\t\t\t\t\t\t[-100.112098, 29.623263],\n\t\t\t\t\t\t[-100.699932, 29.623897],\n\t\t\t\t\t\t[-100.700393, 30.288276],\n\t\t\t\t\t\t[-100.381329, 30.288984]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48149\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"149\",\n\t\t\t\t\"NAME\": \"Fayette\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 950.008000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.317893, 29.784658],\n\t\t\t\t\t\t[-97.315823, 29.786541],\n\t\t\t\t\t\t[-97.024461, 30.051435],\n\t\t\t\t\t\t[-97.019163, 30.032000],\n\t\t\t\t\t\t[-96.794552, 30.160545],\n\t\t\t\t\t\t[-96.647223, 30.145174],\n\t\t\t\t\t\t[-96.621980, 30.044283],\n\t\t\t\t\t\t[-96.569844, 29.961516],\n\t\t\t\t\t\t[-96.754307, 29.755502],\n\t\t\t\t\t\t[-96.874222, 29.632706],\n\t\t\t\t\t\t[-97.142643, 29.628101],\n\t\t\t\t\t\t[-97.130517, 29.643296],\n\t\t\t\t\t\t[-97.317893, 29.784658]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48159\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"159\",\n\t\t\t\t\"NAME\": \"Franklin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 284.391000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.125451, 33.389454],\n\t\t\t\t\t\t[-95.126130, 33.034581],\n\t\t\t\t\t\t[-95.131884, 33.029809],\n\t\t\t\t\t\t[-95.137213, 33.030938],\n\t\t\t\t\t\t[-95.138714, 33.026226],\n\t\t\t\t\t\t[-95.147452, 33.020871],\n\t\t\t\t\t\t[-95.152206, 33.013450],\n\t\t\t\t\t\t[-95.172947, 32.961829],\n\t\t\t\t\t\t[-95.308957, 32.962572],\n\t\t\t\t\t\t[-95.308593, 33.377190],\n\t\t\t\t\t\t[-95.307770, 33.377769],\n\t\t\t\t\t\t[-95.306640, 33.378027],\n\t\t\t\t\t\t[-95.125451, 33.389454]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48169\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"169\",\n\t\t\t\t\"NAME\": \"Garza\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 893.412000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-101.038660, 32.970225],\n\t\t\t\t\t\t[-101.173378, 32.963597],\n\t\t\t\t\t\t[-101.557434, 32.961025],\n\t\t\t\t\t\t[-101.556884, 33.394760],\n\t\t\t\t\t\t[-101.038788, 33.397214],\n\t\t\t\t\t\t[-101.038660, 32.970225]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48177\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"177\",\n\t\t\t\t\"NAME\": \"Gonzales\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1066.688000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.240108, 29.384488],\n\t\t\t\t\t\t[-97.613132, 29.109765],\n\t\t\t\t\t\t[-97.728443, 29.221748],\n\t\t\t\t\t\t[-97.858782, 29.352890],\n\t\t\t\t\t\t[-97.840383, 29.376791],\n\t\t\t\t\t\t[-97.633176, 29.649863],\n\t\t\t\t\t\t[-97.597743, 29.630718],\n\t\t\t\t\t\t[-97.317893, 29.784658],\n\t\t\t\t\t\t[-97.130517, 29.643296],\n\t\t\t\t\t\t[-97.142643, 29.628101],\n\t\t\t\t\t\t[-97.204087, 29.580613],\n\t\t\t\t\t\t[-97.240108, 29.384488]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48179\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"179\",\n\t\t\t\t\"NAME\": \"Gray\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 925.974000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-101.085935, 35.619102],\n\t\t\t\t\t\t[-100.540158, 35.619296],\n\t\t\t\t\t\t[-100.538978, 35.183144],\n\t\t\t\t\t\t[-101.086281, 35.182140],\n\t\t\t\t\t\t[-101.085935, 35.619102]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48185\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"185\",\n\t\t\t\t\"NAME\": \"Grimes\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 787.459000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.804306, 30.245570],\n\t\t\t\t\t\t[-95.804872, 30.245645],\n\t\t\t\t\t\t[-95.842138, 30.243445],\n\t\t\t\t\t\t[-95.871864, 30.241108],\n\t\t\t\t\t\t[-95.872022, 30.241097],\n\t\t\t\t\t\t[-96.093165, 30.225187],\n\t\t\t\t\t\t[-96.085893, 30.288983],\n\t\t\t\t\t\t[-96.154630, 30.330288],\n\t\t\t\t\t\t[-96.147255, 30.382840],\n\t\t\t\t\t\t[-96.079969, 30.430030],\n\t\t\t\t\t\t[-96.121806, 30.443426],\n\t\t\t\t\t\t[-96.187765, 30.598737],\n\t\t\t\t\t\t[-96.168370, 30.822997],\n\t\t\t\t\t\t[-95.863059, 30.864125],\n\t\t\t\t\t\t[-95.830240, 30.630284],\n\t\t\t\t\t\t[-95.804351, 30.337800],\n\t\t\t\t\t\t[-95.804306, 30.245570]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48191\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"191\",\n\t\t\t\t\"NAME\": \"Hall\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 883.492000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.415895, 34.747525],\n\t\t\t\t\t\t[-100.417783, 34.313524],\n\t\t\t\t\t\t[-100.498193, 34.313527],\n\t\t\t\t\t\t[-100.500398, 34.314074],\n\t\t\t\t\t\t[-100.517340, 34.314102],\n\t\t\t\t\t\t[-100.946132, 34.312759],\n\t\t\t\t\t\t[-100.944939, 34.748281],\n\t\t\t\t\t\t[-100.540703, 34.747723],\n\t\t\t\t\t\t[-100.415895, 34.747525]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48195\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"195\",\n\t\t\t\t\"NAME\": \"Hansford\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 919.810000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-101.085156, 36.499244],\n\t\t\t\t\t\t[-101.085716, 36.057572],\n\t\t\t\t\t\t[-101.085735, 36.055276],\n\t\t\t\t\t\t[-101.623466, 36.055405],\n\t\t\t\t\t\t[-101.623915, 36.499528],\n\t\t\t\t\t\t[-101.085156, 36.499244]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48217\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"217\",\n\t\t\t\t\"NAME\": \"Hill\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 958.864000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.719114, 31.814887],\n\t\t\t\t\t\t[-96.735543, 31.806667],\n\t\t\t\t\t\t[-96.932215, 31.708887],\n\t\t\t\t\t\t[-97.037266, 31.863079],\n\t\t\t\t\t\t[-97.277265, 31.745492],\n\t\t\t\t\t\t[-97.326530, 31.788360],\n\t\t\t\t\t\t[-97.282060, 31.843152],\n\t\t\t\t\t\t[-97.382848, 31.870788],\n\t\t\t\t\t\t[-97.438765, 31.933506],\n\t\t\t\t\t\t[-97.379992, 31.972740],\n\t\t\t\t\t\t[-97.485968, 32.017611],\n\t\t\t\t\t\t[-97.476086, 32.173460],\n\t\t\t\t\t\t[-97.086191, 32.265451],\n\t\t\t\t\t\t[-96.940656, 32.052087],\n\t\t\t\t\t\t[-96.896209, 32.073977],\n\t\t\t\t\t\t[-96.719114, 31.814887]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48227\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"227\",\n\t\t\t\t\"NAME\": \"Howard\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 900.791000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-101.688740, 32.525222],\n\t\t\t\t\t\t[-101.174571, 32.524112],\n\t\t\t\t\t\t[-101.183997, 32.087208],\n\t\t\t\t\t\t[-101.264216, 32.087136],\n\t\t\t\t\t\t[-101.695011, 32.087532],\n\t\t\t\t\t\t[-101.688740, 32.525222]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48233\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"233\",\n\t\t\t\t\"NAME\": \"Hutchinson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 887.419000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-101.086068, 35.625267],\n\t\t\t\t\t\t[-101.622831, 35.624057],\n\t\t\t\t\t\t[-101.623466, 36.055405],\n\t\t\t\t\t\t[-101.085735, 36.055276],\n\t\t\t\t\t\t[-101.086068, 35.625267]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48247\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"247\",\n\t\t\t\t\"NAME\": \"Jim Hogg\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1136.138000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.954230, 26.785694],\n\t\t\t\t\t\t[-98.954669, 27.269397],\n\t\t\t\t\t\t[-98.798087, 27.268012],\n\t\t\t\t\t\t[-98.798323, 27.354029],\n\t\t\t\t\t\t[-98.522293, 27.343284],\n\t\t\t\t\t\t[-98.523723, 27.265115],\n\t\t\t\t\t\t[-98.492943, 27.235012],\n\t\t\t\t\t\t[-98.466542, 27.054711],\n\t\t\t\t\t\t[-98.417883, 27.055285],\n\t\t\t\t\t\t[-98.422616, 26.783535],\n\t\t\t\t\t\t[-98.954230, 26.785694]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48251\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"251\",\n\t\t\t\t\"NAME\": \"Johnson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 724.692000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.476086, 32.173460],\n\t\t\t\t\t\t[-97.516121, 32.133612],\n\t\t\t\t\t\t[-97.615055, 32.203581],\n\t\t\t\t\t\t[-97.615286, 32.318618],\n\t\t\t\t\t\t[-97.617066, 32.555484],\n\t\t\t\t\t\t[-97.550582, 32.555391],\n\t\t\t\t\t\t[-97.086834, 32.549428],\n\t\t\t\t\t\t[-97.086191, 32.265451],\n\t\t\t\t\t\t[-97.476086, 32.173460]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48263\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"263\",\n\t\t\t\t\"NAME\": \"Kent\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 902.507000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.655870, 32.963469],\n\t\t\t\t\t\t[-101.038660, 32.970225],\n\t\t\t\t\t\t[-101.038788, 33.397214],\n\t\t\t\t\t\t[-100.517449, 33.397866],\n\t\t\t\t\t\t[-100.519208, 32.962926],\n\t\t\t\t\t\t[-100.655870, 32.963469]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48265\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"265\",\n\t\t\t\t\"NAME\": \"Kerr\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1103.318000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.757621, 30.074132],\n\t\t\t\t\t\t[-99.754142, 30.290698],\n\t\t\t\t\t\t[-99.301718, 30.286653],\n\t\t\t\t\t\t[-99.300988, 30.134298],\n\t\t\t\t\t\t[-98.920147, 30.138290],\n\t\t\t\t\t\t[-98.917725, 29.781398],\n\t\t\t\t\t\t[-99.176988, 29.895063],\n\t\t\t\t\t\t[-99.600862, 29.907662],\n\t\t\t\t\t\t[-99.691215, 29.908582],\n\t\t\t\t\t\t[-99.689879, 30.073948],\n\t\t\t\t\t\t[-99.757621, 30.074132]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48275\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"275\",\n\t\t\t\t\"NAME\": \"Knox\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 850.621000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.474498, 33.733849],\n\t\t\t\t\t\t[-99.472444, 33.399023],\n\t\t\t\t\t\t[-99.990980, 33.397404],\n\t\t\t\t\t\t[-99.996434, 33.835967],\n\t\t\t\t\t\t[-99.835143, 33.835800],\n\t\t\t\t\t\t[-99.599863, 33.787634],\n\t\t\t\t\t\t[-99.474498, 33.733849]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48283\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"283\",\n\t\t\t\t\"NAME\": \"La Salle\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1486.691000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.803325, 28.057480],\n\t\t\t\t\t\t[-99.388946, 28.030419],\n\t\t\t\t\t\t[-99.394177, 28.204627],\n\t\t\t\t\t\t[-99.395736, 28.640784],\n\t\t\t\t\t\t[-98.800841, 28.647487],\n\t\t\t\t\t\t[-98.800848, 28.647306],\n\t\t\t\t\t\t[-98.803325, 28.057480]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48297\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"297\",\n\t\t\t\t\"NAME\": \"Live Oak\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1039.696000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.883148, 28.056900],\n\t\t\t\t\t\t[-98.235497, 28.057966],\n\t\t\t\t\t\t[-98.334323, 28.057800],\n\t\t\t\t\t\t[-98.335031, 28.612658],\n\t\t\t\t\t\t[-98.098315, 28.786949],\n\t\t\t\t\t\t[-98.005252, 28.690239],\n\t\t\t\t\t\t[-98.089764, 28.662979],\n\t\t\t\t\t\t[-97.808774, 28.183415],\n\t\t\t\t\t\t[-97.817716, 28.176848],\n\t\t\t\t\t\t[-97.904081, 28.114228],\n\t\t\t\t\t\t[-97.883148, 28.056900]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48303\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"303\",\n\t\t\t\t\"NAME\": \"Lubbock\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 895.599000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-101.563580, 33.830451],\n\t\t\t\t\t\t[-101.556884, 33.394760],\n\t\t\t\t\t\t[-102.075929, 33.389586],\n\t\t\t\t\t\t[-102.085733, 33.824675],\n\t\t\t\t\t\t[-101.563580, 33.830451]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48309\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"309\",\n\t\t\t\t\"NAME\": \"McLennan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1037.101000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.801123, 31.522269],\n\t\t\t\t\t\t[-97.278113, 31.279799],\n\t\t\t\t\t\t[-97.343426, 31.244215],\n\t\t\t\t\t\t[-97.418606, 31.320202],\n\t\t\t\t\t\t[-97.605230, 31.587762],\n\t\t\t\t\t\t[-97.580232, 31.598796],\n\t\t\t\t\t\t[-97.277265, 31.745492],\n\t\t\t\t\t\t[-97.037266, 31.863079],\n\t\t\t\t\t\t[-96.932215, 31.708887],\n\t\t\t\t\t\t[-96.801123, 31.522269]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48319\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"319\",\n\t\t\t\t\"NAME\": \"Mason\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 928.803000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.964612, 30.921368],\n\t\t\t\t\t\t[-98.964112, 30.500742],\n\t\t\t\t\t\t[-98.964232, 30.498482],\n\t\t\t\t\t\t[-99.303996, 30.499832],\n\t\t\t\t\t\t[-99.484493, 30.499641],\n\t\t\t\t\t\t[-99.483869, 30.710771],\n\t\t\t\t\t\t[-99.484755, 30.940605],\n\t\t\t\t\t\t[-99.092317, 30.941002],\n\t\t\t\t\t\t[-99.092431, 30.921968],\n\t\t\t\t\t\t[-98.964612, 30.921368]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48329\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"329\",\n\t\t\t\t\"NAME\": \"Midland\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 900.299000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-101.775802, 31.651319],\n\t\t\t\t\t\t[-102.287345, 31.651276],\n\t\t\t\t\t\t[-102.287048, 32.086991],\n\t\t\t\t\t\t[-102.211249, 32.086800],\n\t\t\t\t\t\t[-101.776085, 32.086925],\n\t\t\t\t\t\t[-101.775802, 31.651319]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48339\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"339\",\n\t\t\t\t\"NAME\": \"Montgomery\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1041.735000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.096708, 30.167214],\n\t\t\t\t\t\t[-95.264013, 30.032217],\n\t\t\t\t\t\t[-95.505125, 30.145153],\n\t\t\t\t\t\t[-95.551421, 30.170606],\n\t\t\t\t\t\t[-95.655430, 30.108994],\n\t\t\t\t\t\t[-95.803330, 30.090096],\n\t\t\t\t\t\t[-95.804306, 30.245570],\n\t\t\t\t\t\t[-95.804351, 30.337800],\n\t\t\t\t\t\t[-95.830240, 30.630284],\n\t\t\t\t\t\t[-95.598971, 30.509002],\n\t\t\t\t\t\t[-95.359156, 30.504369],\n\t\t\t\t\t\t[-95.308395, 30.405750],\n\t\t\t\t\t\t[-95.165897, 30.344976],\n\t\t\t\t\t\t[-95.096708, 30.167214]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48349\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"349\",\n\t\t\t\t\"NAME\": \"Navarro\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1009.627000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.896209, 32.073977],\n\t\t\t\t\t\t[-96.383082, 32.328851],\n\t\t\t\t\t\t[-96.115693, 32.160915],\n\t\t\t\t\t\t[-96.054780, 32.012526],\n\t\t\t\t\t\t[-96.496713, 31.796191],\n\t\t\t\t\t\t[-96.719114, 31.814887],\n\t\t\t\t\t\t[-96.896209, 32.073977]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48353\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"353\",\n\t\t\t\t\"NAME\": \"Nolan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 911.997000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.665353, 32.085407],\n\t\t\t\t\t\t[-100.662215, 32.380297],\n\t\t\t\t\t\t[-100.660626, 32.525312],\n\t\t\t\t\t\t[-100.379054, 32.523798],\n\t\t\t\t\t\t[-100.146543, 32.522793],\n\t\t\t\t\t\t[-100.151911, 32.082638],\n\t\t\t\t\t\t[-100.235137, 32.082372],\n\t\t\t\t\t\t[-100.665353, 32.085407]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51121\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"121\",\n\t\t\t\t\"NAME\": \"Montgomery\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 387.014000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.261984, 37.340694],\n\t\t\t\t\t\t[-80.258520, 37.308344],\n\t\t\t\t\t\t[-80.205224, 37.248042],\n\t\t\t\t\t\t[-80.178032, 37.113435],\n\t\t\t\t\t\t[-80.347447, 37.021842],\n\t\t\t\t\t\t[-80.543933, 36.984639],\n\t\t\t\t\t\t[-80.580067, 37.089603],\n\t\t\t\t\t\t[-80.556260, 37.099551],\n\t\t\t\t\t\t[-80.555171, 37.117420],\n\t\t\t\t\t\t[-80.532631, 37.118064],\n\t\t\t\t\t\t[-80.507317, 37.135752],\n\t\t\t\t\t\t[-80.524885, 37.148360],\n\t\t\t\t\t\t[-80.527625, 37.134427],\n\t\t\t\t\t\t[-80.529678, 37.134066],\n\t\t\t\t\t\t[-80.606874, 37.244911],\n\t\t\t\t\t\t[-80.433361, 37.314901],\n\t\t\t\t\t\t[-80.327898, 37.366792],\n\t\t\t\t\t\t[-80.261984, 37.340694]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51125\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"125\",\n\t\t\t\t\"NAME\": \"Nelson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 470.856000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.171926, 37.803135],\n\t\t\t\t\t\t[-79.157423, 37.890995],\n\t\t\t\t\t\t[-79.062454, 37.917600],\n\t\t\t\t\t\t[-79.005129, 37.881690],\n\t\t\t\t\t\t[-78.907278, 37.945959],\n\t\t\t\t\t\t[-78.839211, 38.047565],\n\t\t\t\t\t\t[-78.644036, 37.733143],\n\t\t\t\t\t\t[-78.739437, 37.631542],\n\t\t\t\t\t\t[-78.821240, 37.631842],\n\t\t\t\t\t\t[-78.825238, 37.552542],\n\t\t\t\t\t\t[-78.830938, 37.535642],\n\t\t\t\t\t\t[-78.869245, 37.542095],\n\t\t\t\t\t\t[-78.986017, 37.695546],\n\t\t\t\t\t\t[-79.067355, 37.720255],\n\t\t\t\t\t\t[-79.071417, 37.778303],\n\t\t\t\t\t\t[-79.171926, 37.803135]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51141\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"141\",\n\t\t\t\t\"NAME\": \"Patrick\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 483.096000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.235455, 36.872130],\n\t\t\t\t\t\t[-80.066449, 36.841057],\n\t\t\t\t\t\t[-80.041493, 36.794365],\n\t\t\t\t\t\t[-80.094389, 36.779552],\n\t\t\t\t\t\t[-80.053455, 36.542623],\n\t\t\t\t\t\t[-80.169535, 36.543190],\n\t\t\t\t\t\t[-80.171636, 36.543219],\n\t\t\t\t\t\t[-80.225408, 36.543748],\n\t\t\t\t\t\t[-80.228263, 36.543867],\n\t\t\t\t\t\t[-80.431605, 36.550219],\n\t\t\t\t\t\t[-80.432628, 36.550302],\n\t\t\t\t\t\t[-80.440100, 36.550630],\n\t\t\t\t\t\t[-80.612158, 36.558127],\n\t\t\t\t\t\t[-80.578148, 36.662118],\n\t\t\t\t\t\t[-80.525522, 36.644114],\n\t\t\t\t\t\t[-80.464180, 36.708718],\n\t\t\t\t\t\t[-80.386909, 36.797676],\n\t\t\t\t\t\t[-80.235455, 36.872130]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51145\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"145\",\n\t\t\t\t\"NAME\": \"Powhatan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 260.221000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.072256, 37.657357],\n\t\t\t\t\t\t[-77.957822, 37.624882],\n\t\t\t\t\t\t[-77.923063, 37.691369],\n\t\t\t\t\t\t[-77.814415, 37.606375],\n\t\t\t\t\t\t[-77.653987, 37.562631],\n\t\t\t\t\t\t[-77.855148, 37.418363],\n\t\t\t\t\t\t[-77.899761, 37.475422],\n\t\t\t\t\t\t[-78.014437, 37.492081],\n\t\t\t\t\t\t[-78.132048, 37.454686],\n\t\t\t\t\t\t[-78.072256, 37.657357]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51155\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"155\",\n\t\t\t\t\"NAME\": \"Pulaski\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 319.858000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.529678, 37.134066],\n\t\t\t\t\t\t[-80.548837, 37.146557],\n\t\t\t\t\t\t[-80.573087, 37.139876],\n\t\t\t\t\t\t[-80.592875, 37.127866],\n\t\t\t\t\t\t[-80.596389, 37.118897],\n\t\t\t\t\t\t[-80.590406, 37.102000],\n\t\t\t\t\t\t[-80.580067, 37.089603],\n\t\t\t\t\t\t[-80.543933, 36.984639],\n\t\t\t\t\t\t[-80.633987, 36.931780],\n\t\t\t\t\t\t[-80.740483, 36.879001],\n\t\t\t\t\t\t[-80.912674, 37.073349],\n\t\t\t\t\t\t[-80.854627, 37.147482],\n\t\t\t\t\t\t[-80.606874, 37.244911],\n\t\t\t\t\t\t[-80.529678, 37.134066]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51157\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"157\",\n\t\t\t\t\"NAME\": \"Rappahannock\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 266.227000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.028075, 38.759293],\n\t\t\t\t\t\t[-77.935454, 38.695853],\n\t\t\t\t\t\t[-78.168792, 38.523809],\n\t\t\t\t\t\t[-78.231978, 38.532550],\n\t\t\t\t\t\t[-78.338320, 38.627282],\n\t\t\t\t\t\t[-78.284877, 38.759229],\n\t\t\t\t\t\t[-78.130209, 38.862118],\n\t\t\t\t\t\t[-78.129874, 38.862807],\n\t\t\t\t\t\t[-78.130574, 38.864865],\n\t\t\t\t\t\t[-78.123610, 38.864902],\n\t\t\t\t\t\t[-78.122166, 38.856607],\n\t\t\t\t\t\t[-78.028075, 38.759293]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51173\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"173\",\n\t\t\t\t\"NAME\": \"Smyth\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 450.928000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.780539, 36.958614],\n\t\t\t\t\t\t[-81.683038, 36.933014],\n\t\t\t\t\t\t[-81.576936, 36.989515],\n\t\t\t\t\t\t[-81.437182, 37.010091],\n\t\t\t\t\t\t[-81.379427, 36.952417],\n\t\t\t\t\t\t[-81.261620, 36.763120],\n\t\t\t\t\t\t[-81.544536, 36.701617],\n\t\t\t\t\t\t[-81.605835, 36.638717],\n\t\t\t\t\t\t[-81.699441, 36.789614],\n\t\t\t\t\t\t[-81.836842, 36.929013],\n\t\t\t\t\t\t[-81.819041, 36.947513],\n\t\t\t\t\t\t[-81.780539, 36.958614]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51187\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"187\",\n\t\t\t\t\"NAME\": \"Warren\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 213.465000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.130209, 38.862118],\n\t\t\t\t\t\t[-78.284877, 38.759229],\n\t\t\t\t\t\t[-78.386682, 38.830152],\n\t\t\t\t\t\t[-78.300544, 38.943530],\n\t\t\t\t\t\t[-78.314196, 39.007977],\n\t\t\t\t\t\t[-78.151981, 39.036277],\n\t\t\t\t\t\t[-78.004167, 38.979479],\n\t\t\t\t\t\t[-78.130574, 38.864865],\n\t\t\t\t\t\t[-78.129874, 38.862807],\n\t\t\t\t\t\t[-78.130209, 38.862118]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51197\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"197\",\n\t\t\t\t\"NAME\": \"Wythe\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 461.824000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.379427, 36.952417],\n\t\t\t\t\t\t[-81.224613, 37.047840],\n\t\t\t\t\t\t[-81.114319, 37.022612],\n\t\t\t\t\t\t[-80.912674, 37.073349],\n\t\t\t\t\t\t[-80.740483, 36.879001],\n\t\t\t\t\t\t[-81.042406, 36.806422],\n\t\t\t\t\t\t[-81.088510, 36.767422],\n\t\t\t\t\t\t[-81.261620, 36.763120],\n\t\t\t\t\t\t[-81.379427, 36.952417]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51510\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"510\",\n\t\t\t\t\"NAME\": \"Alexandria\",\n\t\t\t\t\"LSAD\": \"city\",\n\t\t\t\t\"CENSUSAREA\": 15.027000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.039239, 38.785200],\n\t\t\t\t\t\t[-77.088047, 38.824973],\n\t\t\t\t\t\t[-77.087931, 38.827450],\n\t\t\t\t\t\t[-77.085609, 38.844190],\n\t\t\t\t\t\t[-77.063871, 38.845011],\n\t\t\t\t\t\t[-77.054550, 38.840995],\n\t\t\t\t\t\t[-77.032986, 38.839500],\n\t\t\t\t\t\t[-77.038598, 38.791513],\n\t\t\t\t\t\t[-77.039239, 38.785200]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51530\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"530\",\n\t\t\t\t\"NAME\": \"Buena Vista\",\n\t\t\t\t\"LSAD\": \"city\",\n\t\t\t\t\"CENSUSAREA\": 6.704000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.366811, 37.727220],\n\t\t\t\t\t\t[-79.380389, 37.743771],\n\t\t\t\t\t\t[-79.328768, 37.760576],\n\t\t\t\t\t\t[-79.359875, 37.702359],\n\t\t\t\t\t\t[-79.382642, 37.706345],\n\t\t\t\t\t\t[-79.366811, 37.727220]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51540\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"540\",\n\t\t\t\t\"NAME\": \"Charlottesville\",\n\t\t\t\t\"LSAD\": \"city\",\n\t\t\t\t\"CENSUSAREA\": 10.238000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.520375, 38.018355],\n\t\t\t\t\t\t[-78.495034, 38.065337],\n\t\t\t\t\t\t[-78.449050, 38.058728],\n\t\t\t\t\t\t[-78.469733, 38.011439],\n\t\t\t\t\t\t[-78.520375, 38.018355]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51595\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"595\",\n\t\t\t\t\"NAME\": \"Emporia\",\n\t\t\t\t\"LSAD\": \"city\",\n\t\t\t\t\"CENSUSAREA\": 6.894000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.556524, 36.674874],\n\t\t\t\t\t\t[-77.557359, 36.713166],\n\t\t\t\t\t\t[-77.511921, 36.719122],\n\t\t\t\t\t\t[-77.509246, 36.682998],\n\t\t\t\t\t\t[-77.556524, 36.674874]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51660\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"660\",\n\t\t\t\t\"NAME\": \"Harrisonburg\",\n\t\t\t\t\"LSAD\": \"city\",\n\t\t\t\t\"CENSUSAREA\": 17.418000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.870651, 38.482606],\n\t\t\t\t\t\t[-78.824253, 38.435631],\n\t\t\t\t\t\t[-78.914591, 38.389755],\n\t\t\t\t\t\t[-78.872978, 38.488510],\n\t\t\t\t\t\t[-78.870651, 38.482606]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51670\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"670\",\n\t\t\t\t\"NAME\": \"Hopewell\",\n\t\t\t\t\"LSAD\": \"city\",\n\t\t\t\t\"CENSUSAREA\": 10.278000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.284019, 37.313012],\n\t\t\t\t\t\t[-77.310532, 37.261595],\n\t\t\t\t\t\t[-77.334549, 37.312468],\n\t\t\t\t\t\t[-77.322813, 37.308792],\n\t\t\t\t\t\t[-77.309880, 37.311556],\n\t\t\t\t\t\t[-77.284019, 37.313012]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51760\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"760\",\n\t\t\t\t\"NAME\": \"Richmond\",\n\t\t\t\t\"LSAD\": \"city\",\n\t\t\t\t\"CENSUSAREA\": 59.805000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.420849, 37.447079],\n\t\t\t\t\t\t[-77.459219, 37.464270],\n\t\t\t\t\t\t[-77.486388, 37.459024],\n\t\t\t\t\t\t[-77.500745, 37.463831],\n\t\t\t\t\t\t[-77.514425, 37.478934],\n\t\t\t\t\t\t[-77.596110, 37.555720],\n\t\t\t\t\t\t[-77.483092, 37.573832],\n\t\t\t\t\t\t[-77.413196, 37.579928],\n\t\t\t\t\t\t[-77.420849, 37.447079]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51775\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"775\",\n\t\t\t\t\"NAME\": \"Salem\",\n\t\t\t\t\"LSAD\": \"city\",\n\t\t\t\t\"CENSUSAREA\": 14.437000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.022428, 37.308156],\n\t\t\t\t\t\t[-80.018760, 37.264336],\n\t\t\t\t\t\t[-80.033476, 37.262811],\n\t\t\t\t\t\t[-80.120490, 37.287053],\n\t\t\t\t\t\t[-80.022428, 37.308156]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51820\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"820\",\n\t\t\t\t\"NAME\": \"Waynesboro\",\n\t\t\t\t\"LSAD\": \"city\",\n\t\t\t\t\"CENSUSAREA\": 15.039000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.949568, 38.057183],\n\t\t\t\t\t\t[-78.903534, 38.099978],\n\t\t\t\t\t\t[-78.855796, 38.074375],\n\t\t\t\t\t\t[-78.872163, 38.039587],\n\t\t\t\t\t\t[-78.949568, 38.057183]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US53013\",\n\t\t\t\t\"STATE\": \"53\",\n\t\t\t\t\"COUNTY\": \"013\",\n\t\t\t\t\"NAME\": \"Columbia\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 868.629000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-118.228928, 46.593606],\n\t\t\t\t\t\t[-118.224468, 46.591022],\n\t\t\t\t\t\t[-118.215660, 46.588924],\n\t\t\t\t\t\t[-118.172552, 46.556947],\n\t\t\t\t\t\t[-117.851844, 46.624772],\n\t\t\t\t\t\t[-117.863261, 46.470935],\n\t\t\t\t\t\t[-117.737301, 46.471366],\n\t\t\t\t\t\t[-117.675113, 46.337628],\n\t\t\t\t\t\t[-117.611815, 46.338496],\n\t\t\t\t\t\t[-117.603163, 45.998887],\n\t\t\t\t\t\t[-117.977766, 46.000695],\n\t\t\t\t\t\t[-117.996911, 46.000787],\n\t\t\t\t\t\t[-117.991292, 46.207843],\n\t\t\t\t\t\t[-118.116493, 46.207912],\n\t\t\t\t\t\t[-118.116139, 46.295455],\n\t\t\t\t\t\t[-118.241611, 46.295072],\n\t\t\t\t\t\t[-118.228928, 46.593606]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US53021\",\n\t\t\t\t\"STATE\": \"53\",\n\t\t\t\t\"COUNTY\": \"021\",\n\t\t\t\t\"NAME\": \"Franklin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1242.171000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-119.081621, 46.738019],\n\t\t\t\t\t\t[-118.209807, 46.738938],\n\t\t\t\t\t\t[-118.249122, 46.734138],\n\t\t\t\t\t\t[-118.215660, 46.588924],\n\t\t\t\t\t\t[-118.224468, 46.591022],\n\t\t\t\t\t\t[-118.228928, 46.593606],\n\t\t\t\t\t\t[-118.452637, 46.596973],\n\t\t\t\t\t\t[-118.615592, 46.504543],\n\t\t\t\t\t\t[-118.633826, 46.414022],\n\t\t\t\t\t\t[-118.746199, 46.359512],\n\t\t\t\t\t\t[-118.777228, 46.290177],\n\t\t\t\t\t\t[-118.972827, 46.238705],\n\t\t\t\t\t\t[-119.041418, 46.192856],\n\t\t\t\t\t\t[-119.268928, 46.277957],\n\t\t\t\t\t\t[-119.258292, 46.489457],\n\t\t\t\t\t\t[-119.453220, 46.679243],\n\t\t\t\t\t\t[-119.368939, 46.678204],\n\t\t\t\t\t\t[-119.369387, 46.737696],\n\t\t\t\t\t\t[-119.081621, 46.738019]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55029\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"029\",\n\t\t\t\t\"NAME\": \"Door\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 481.978000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-86.945964, 45.407673],\n\t\t\t\t\t\t\t[-86.943041, 45.415250],\n\t\t\t\t\t\t\t[-86.942901, 45.415392],\n\t\t\t\t\t\t\t[-86.941237, 45.417075],\n\t\t\t\t\t\t\t[-86.937393, 45.420966],\n\t\t\t\t\t\t\t[-86.936224, 45.421035],\n\t\t\t\t\t\t\t[-86.934724, 45.421123],\n\t\t\t\t\t\t\t[-86.934276, 45.421149],\n\t\t\t\t\t\t\t[-86.934091, 45.420972],\n\t\t\t\t\t\t\t[-86.930511, 45.417536],\n\t\t\t\t\t\t\t[-86.929028, 45.413770],\n\t\t\t\t\t\t\t[-86.928246, 45.411784],\n\t\t\t\t\t\t\t[-86.928045, 45.411273],\n\t\t\t\t\t\t\t[-86.927768, 45.411183],\n\t\t\t\t\t\t\t[-86.917686, 45.407890],\n\t\t\t\t\t\t\t[-86.914004, 45.408052],\n\t\t\t\t\t\t\t[-86.909743, 45.408239],\n\t\t\t\t\t\t\t[-86.902739, 45.408547],\n\t\t\t\t\t\t\t[-86.898049, 45.408753],\n\t\t\t\t\t\t\t[-86.892893, 45.408980],\n\t\t\t\t\t\t\t[-86.883364, 45.412076],\n\t\t\t\t\t\t\t[-86.880629, 45.412965],\n\t\t\t\t\t\t\t[-86.877502, 45.413981],\n\t\t\t\t\t\t\t[-86.865002, 45.412489],\n\t\t\t\t\t\t\t[-86.862174, 45.412151],\n\t\t\t\t\t\t\t[-86.861472, 45.412067],\n\t\t\t\t\t\t\t[-86.861317, 45.411946],\n\t\t\t\t\t\t\t[-86.859922, 45.410853],\n\t\t\t\t\t\t\t[-86.855993, 45.407777],\n\t\t\t\t\t\t\t[-86.853145, 45.405547],\n\t\t\t\t\t\t\t[-86.853082, 45.405562],\n\t\t\t\t\t\t\t[-86.830353, 45.410852],\n\t\t\t\t\t\t\t[-86.830331, 45.410955],\n\t\t\t\t\t\t\t[-86.829741, 45.413705],\n\t\t\t\t\t\t\t[-86.829352, 45.415516],\n\t\t\t\t\t\t\t[-86.829143, 45.416490],\n\t\t\t\t\t\t\t[-86.829905, 45.420623],\n\t\t\t\t\t\t\t[-86.830123, 45.421805],\n\t\t\t\t\t\t\t[-86.830175, 45.422092],\n\t\t\t\t\t\t\t[-86.830900, 45.426023],\n\t\t\t\t\t\t\t[-86.830755, 45.426186],\n\t\t\t\t\t\t\t[-86.828731, 45.428461],\n\t\t\t\t\t\t\t[-86.828661, 45.428539],\n\t\t\t\t\t\t\t[-86.828071, 45.428459],\n\t\t\t\t\t\t\t[-86.821770, 45.427602],\n\t\t\t\t\t\t\t[-86.817069, 45.426963],\n\t\t\t\t\t\t\t[-86.816741, 45.426760],\n\t\t\t\t\t\t\t[-86.815510, 45.425998],\n\t\t\t\t\t\t\t[-86.810055, 45.422619],\n\t\t\t\t\t\t\t[-86.809910, 45.422283],\n\t\t\t\t\t\t\t[-86.805978, 45.413159],\n\t\t\t\t\t\t\t[-86.805868, 45.412903],\n\t\t\t\t\t\t\t[-86.805843, 45.412592],\n\t\t\t\t\t\t\t[-86.805767, 45.411661],\n\t\t\t\t\t\t\t[-86.805652, 45.410247],\n\t\t\t\t\t\t\t[-86.805415, 45.407324],\n\t\t\t\t\t\t\t[-86.808303, 45.406067],\n\t\t\t\t\t\t\t[-86.808658, 45.406143],\n\t\t\t\t\t\t\t[-86.814956, 45.407483],\n\t\t\t\t\t\t\t[-86.815881, 45.407680],\n\t\t\t\t\t\t\t[-86.817148, 45.407950],\n\t\t\t\t\t\t\t[-86.818073, 45.408147],\n\t\t\t\t\t\t\t[-86.819540, 45.407679],\n\t\t\t\t\t\t\t[-86.822083, 45.406868],\n\t\t\t\t\t\t\t[-86.824383, 45.406135],\n\t\t\t\t\t\t\t[-86.824730, 45.405798],\n\t\t\t\t\t\t\t[-86.837482, 45.393432],\n\t\t\t\t\t\t\t[-86.841432, 45.389601],\n\t\t\t\t\t\t\t[-86.853103, 45.370861],\n\t\t\t\t\t\t\t[-86.853182, 45.370816],\n\t\t\t\t\t\t\t[-86.857308, 45.368460],\n\t\t\t\t\t\t\t[-86.858384, 45.367846],\n\t\t\t\t\t\t\t[-86.863367, 45.365000],\n\t\t\t\t\t\t\t[-86.863563, 45.364888],\n\t\t\t\t\t\t\t[-86.863600, 45.364783],\n\t\t\t\t\t\t\t[-86.863694, 45.364518],\n\t\t\t\t\t\t\t[-86.863719, 45.364446],\n\t\t\t\t\t\t\t[-86.864314, 45.362764],\n\t\t\t\t\t\t\t[-86.867743, 45.353065],\n\t\t\t\t\t\t\t[-86.867710, 45.352890],\n\t\t\t\t\t\t\t[-86.866244, 45.344992],\n\t\t\t\t\t\t\t[-86.866126, 45.344356],\n\t\t\t\t\t\t\t[-86.865528, 45.341136],\n\t\t\t\t\t\t\t[-86.865499, 45.340981],\n\t\t\t\t\t\t\t[-86.865634, 45.340686],\n\t\t\t\t\t\t\t[-86.866054, 45.339765],\n\t\t\t\t\t\t\t[-86.869031, 45.333244],\n\t\t\t\t\t\t\t[-86.869041, 45.333223],\n\t\t\t\t\t\t\t[-86.869510, 45.333041],\n\t\t\t\t\t\t\t[-86.872296, 45.331962],\n\t\t\t\t\t\t\t[-86.874685, 45.331037],\n\t\t\t\t\t\t\t[-86.874761, 45.331008],\n\t\t\t\t\t\t\t[-86.875117, 45.330870],\n\t\t\t\t\t\t\t[-86.879361, 45.331335],\n\t\t\t\t\t\t\t[-86.880572, 45.331467],\n\t\t\t\t\t\t\t[-86.887802, 45.332259],\n\t\t\t\t\t\t\t[-86.895055, 45.329035],\n\t\t\t\t\t\t\t[-86.899488, 45.322588],\n\t\t\t\t\t\t\t[-86.896667, 45.307275],\n\t\t\t\t\t\t\t[-86.896922, 45.298521],\n\t\t\t\t\t\t\t[-86.896928, 45.298300],\n\t\t\t\t\t\t\t[-86.899891, 45.295185],\n\t\t\t\t\t\t\t[-86.900636, 45.295431],\n\t\t\t\t\t\t\t[-86.901602, 45.295750],\n\t\t\t\t\t\t\t[-86.904362, 45.296662],\n\t\t\t\t\t\t\t[-86.904898, 45.296839],\n\t\t\t\t\t\t\t[-86.913995, 45.312110],\n\t\t\t\t\t\t\t[-86.925681, 45.324200],\n\t\t\t\t\t\t\t[-86.937368, 45.333065],\n\t\t\t\t\t\t\t[-86.940715, 45.333762],\n\t\t\t\t\t\t\t[-86.941070, 45.333836],\n\t\t\t\t\t\t\t[-86.946796, 45.335027],\n\t\t\t\t\t\t\t[-86.946943, 45.335058],\n\t\t\t\t\t\t\t[-86.948087, 45.335296],\n\t\t\t\t\t\t\t[-86.951550, 45.338298],\n\t\t\t\t\t\t\t[-86.954990, 45.341280],\n\t\t\t\t\t\t\t[-86.955456, 45.341684],\n\t\t\t\t\t\t\t[-86.955577, 45.341788],\n\t\t\t\t\t\t\t[-86.955691, 45.341888],\n\t\t\t\t\t\t\t[-86.956054, 45.342202],\n\t\t\t\t\t\t\t[-86.956129, 45.342267],\n\t\t\t\t\t\t\t[-86.956140, 45.343785],\n\t\t\t\t\t\t\t[-86.956192, 45.351179],\n\t\t\t\t\t\t\t[-86.956198, 45.352006],\n\t\t\t\t\t\t\t[-86.954435, 45.353706],\n\t\t\t\t\t\t\t[-86.953389, 45.354715],\n\t\t\t\t\t\t\t[-86.953360, 45.354720],\n\t\t\t\t\t\t\t[-86.948272, 45.355682],\n\t\t\t\t\t\t\t[-86.946297, 45.358690],\n\t\t\t\t\t\t\t[-86.946475, 45.359826],\n\t\t\t\t\t\t\t[-86.946503, 45.360004],\n\t\t\t\t\t\t\t[-86.946791, 45.361845],\n\t\t\t\t\t\t\t[-86.947142, 45.364085],\n\t\t\t\t\t\t\t[-86.947510, 45.366434],\n\t\t\t\t\t\t\t[-86.947604, 45.366645],\n\t\t\t\t\t\t\t[-86.947684, 45.366825],\n\t\t\t\t\t\t\t[-86.948731, 45.369178],\n\t\t\t\t\t\t\t[-86.948743, 45.369205],\n\t\t\t\t\t\t\t[-86.948803, 45.369338],\n\t\t\t\t\t\t\t[-86.954970, 45.383194],\n\t\t\t\t\t\t\t[-86.955204, 45.383721],\n\t\t\t\t\t\t\t[-86.954329, 45.385989],\n\t\t\t\t\t\t\t[-86.953773, 45.387430],\n\t\t\t\t\t\t\t[-86.951866, 45.392373],\n\t\t\t\t\t\t\t[-86.951176, 45.394162],\n\t\t\t\t\t\t\t[-86.947346, 45.404090],\n\t\t\t\t\t\t\t[-86.947074, 45.404796],\n\t\t\t\t\t\t\t[-86.946837, 45.405410],\n\t\t\t\t\t\t\t[-86.945964, 45.407673]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-87.736058, 44.677025],\n\t\t\t\t\t\t\t[-87.733701, 44.678916],\n\t\t\t\t\t\t\t[-87.729836, 44.682015],\n\t\t\t\t\t\t\t[-87.719780, 44.693246],\n\t\t\t\t\t\t\t[-87.718413, 44.707765],\n\t\t\t\t\t\t\t[-87.718409, 44.707811],\n\t\t\t\t\t\t\t[-87.718427, 44.707870],\n\t\t\t\t\t\t\t[-87.720248, 44.713833],\n\t\t\t\t\t\t\t[-87.720599, 44.714984],\n\t\t\t\t\t\t\t[-87.721816, 44.718969],\n\t\t\t\t\t\t\t[-87.721252, 44.722361],\n\t\t\t\t\t\t\t[-87.721059, 44.723522],\n\t\t\t\t\t\t\t[-87.720889, 44.724548],\n\t\t\t\t\t\t\t[-87.720312, 44.725073],\n\t\t\t\t\t\t\t[-87.714401, 44.730449],\n\t\t\t\t\t\t\t[-87.705852, 44.738225],\n\t\t\t\t\t\t\t[-87.705733, 44.738364],\n\t\t\t\t\t\t\t[-87.704653, 44.739630],\n\t\t\t\t\t\t\t[-87.703557, 44.740914],\n\t\t\t\t\t\t\t[-87.701022, 44.743882],\n\t\t\t\t\t\t\t[-87.700778, 44.744169],\n\t\t\t\t\t\t\t[-87.700539, 44.744448],\n\t\t\t\t\t\t\t[-87.698653, 44.746657],\n\t\t\t\t\t\t\t[-87.698584, 44.746738],\n\t\t\t\t\t\t\t[-87.698246, 44.747133],\n\t\t\t\t\t\t\t[-87.698167, 44.747226],\n\t\t\t\t\t\t\t[-87.688207, 44.758892],\n\t\t\t\t\t\t\t[-87.687497, 44.759567],\n\t\t\t\t\t\t\t[-87.679709, 44.766973],\n\t\t\t\t\t\t\t[-87.678368, 44.768247],\n\t\t\t\t\t\t\t[-87.677995, 44.768602],\n\t\t\t\t\t\t\t[-87.662056, 44.783758],\n\t\t\t\t\t\t\t[-87.647764, 44.797347],\n\t\t\t\t\t\t\t[-87.646300, 44.798739],\n\t\t\t\t\t\t\t[-87.645229, 44.800466],\n\t\t\t\t\t\t\t[-87.644646, 44.801407],\n\t\t\t\t\t\t\t[-87.644637, 44.801423],\n\t\t\t\t\t\t\t[-87.644545, 44.801571],\n\t\t\t\t\t\t\t[-87.637104, 44.813575],\n\t\t\t\t\t\t\t[-87.635416, 44.815124],\n\t\t\t\t\t\t\t[-87.635265, 44.815263],\n\t\t\t\t\t\t\t[-87.634476, 44.815986],\n\t\t\t\t\t\t\t[-87.634390, 44.816065],\n\t\t\t\t\t\t\t[-87.634381, 44.816073],\n\t\t\t\t\t\t\t[-87.634059, 44.816369],\n\t\t\t\t\t\t\t[-87.633418, 44.816956],\n\t\t\t\t\t\t\t[-87.632977, 44.817361],\n\t\t\t\t\t\t\t[-87.632892, 44.817439],\n\t\t\t\t\t\t\t[-87.632699, 44.817616],\n\t\t\t\t\t\t\t[-87.622014, 44.827419],\n\t\t\t\t\t\t\t[-87.616384, 44.832585],\n\t\t\t\t\t\t\t[-87.616242, 44.832715],\n\t\t\t\t\t\t\t[-87.611852, 44.836743],\n\t\t\t\t\t\t\t[-87.611118, 44.837416],\n\t\t\t\t\t\t\t[-87.610245, 44.838217],\n\t\t\t\t\t\t\t[-87.610063, 44.838384],\n\t\t\t\t\t\t\t[-87.610018, 44.838405],\n\t\t\t\t\t\t\t[-87.609784, 44.838514],\n\t\t\t\t\t\t\t[-87.581635, 44.851638],\n\t\t\t\t\t\t\t[-87.581306, 44.851791],\n\t\t\t\t\t\t\t[-87.573175, 44.853118],\n\t\t\t\t\t\t\t[-87.570851, 44.852932],\n\t\t\t\t\t\t\t[-87.560183, 44.852080],\n\t\t\t\t\t\t\t[-87.550288, 44.851290],\n\t\t\t\t\t\t\t[-87.550003, 44.851381],\n\t\t\t\t\t\t\t[-87.534723, 44.856250],\n\t\t\t\t\t\t\t[-87.530999, 44.857437],\n\t\t\t\t\t\t\t[-87.530794, 44.857594],\n\t\t\t\t\t\t\t[-87.515142, 44.869596],\n\t\t\t\t\t\t\t[-87.514590, 44.869380],\n\t\t\t\t\t\t\t[-87.513775, 44.869061],\n\t\t\t\t\t\t\t[-87.513413, 44.868919],\n\t\t\t\t\t\t\t[-87.512129, 44.868416],\n\t\t\t\t\t\t\t[-87.504868, 44.865573],\n\t\t\t\t\t\t\t[-87.504405, 44.865392],\n\t\t\t\t\t\t\t[-87.504303, 44.865352],\n\t\t\t\t\t\t\t[-87.502431, 44.864619],\n\t\t\t\t\t\t\t[-87.501578, 44.864285],\n\t\t\t\t\t\t\t[-87.499063, 44.864207],\n\t\t\t\t\t\t\t[-87.478489, 44.863572],\n\t\t\t\t\t\t\t[-87.472639, 44.867690],\n\t\t\t\t\t\t\t[-87.456688, 44.878918],\n\t\t\t\t\t\t\t[-87.441339, 44.889723],\n\t\t\t\t\t\t\t[-87.437084, 44.892718],\n\t\t\t\t\t\t\t[-87.433128, 44.892741],\n\t\t\t\t\t\t\t[-87.433005, 44.892691],\n\t\t\t\t\t\t\t[-87.428144, 44.890738],\n\t\t\t\t\t\t\t[-87.421007, 44.887869],\n\t\t\t\t\t\t\t[-87.420327, 44.887596],\n\t\t\t\t\t\t\t[-87.419106, 44.885378],\n\t\t\t\t\t\t\t[-87.419114, 44.885285],\n\t\t\t\t\t\t\t[-87.419135, 44.885052],\n\t\t\t\t\t\t\t[-87.419951, 44.875940],\n\t\t\t\t\t\t\t[-87.419253, 44.874960],\n\t\t\t\t\t\t\t[-87.410919, 44.863259],\n\t\t\t\t\t\t\t[-87.410015, 44.861990],\n\t\t\t\t\t\t\t[-87.408779, 44.861453],\n\t\t\t\t\t\t\t[-87.405658, 44.860098],\n\t\t\t\t\t\t\t[-87.405541, 44.860047],\n\t\t\t\t\t\t\t[-87.384821, 44.865532],\n\t\t\t\t\t\t\t[-87.384593, 44.869277],\n\t\t\t\t\t\t\t[-87.383874, 44.881116],\n\t\t\t\t\t\t\t[-87.383839, 44.881685],\n\t\t\t\t\t\t\t[-87.383833, 44.881788],\n\t\t\t\t\t\t\t[-87.383670, 44.884475],\n\t\t\t\t\t\t\t[-87.383655, 44.884723],\n\t\t\t\t\t\t\t[-87.383631, 44.885115],\n\t\t\t\t\t\t\t[-87.385396, 44.889964],\n\t\t\t\t\t\t\t[-87.386111, 44.890699],\n\t\t\t\t\t\t\t[-87.386375, 44.890972],\n\t\t\t\t\t\t\t[-87.386396, 44.890993],\n\t\t\t\t\t\t\t[-87.386490, 44.891090],\n\t\t\t\t\t\t\t[-87.390604, 44.895323],\n\t\t\t\t\t\t\t[-87.390651, 44.895372],\n\t\t\t\t\t\t\t[-87.390800, 44.895524],\n\t\t\t\t\t\t\t[-87.391070, 44.895803],\n\t\t\t\t\t\t\t[-87.391980, 44.896739],\n\t\t\t\t\t\t\t[-87.392270, 44.897037],\n\t\t\t\t\t\t\t[-87.393399, 44.898199],\n\t\t\t\t\t\t\t[-87.396972, 44.899955],\n\t\t\t\t\t\t\t[-87.397184, 44.900059],\n\t\t\t\t\t\t\t[-87.397359, 44.900145],\n\t\t\t\t\t\t\t[-87.400488, 44.901683],\n\t\t\t\t\t\t\t[-87.401947, 44.902400],\n\t\t\t\t\t\t\t[-87.406199, 44.904490],\n\t\t\t\t\t\t\t[-87.405361, 44.909626],\n\t\t\t\t\t\t\t[-87.405005, 44.911806],\n\t\t\t\t\t\t\t[-87.398368, 44.925226],\n\t\t\t\t\t\t\t[-87.393752, 44.933751],\n\t\t\t\t\t\t\t[-87.393672, 44.933899],\n\t\t\t\t\t\t\t[-87.393405, 44.934393],\n\t\t\t\t\t\t\t[-87.393058, 44.934677],\n\t\t\t\t\t\t\t[-87.389006, 44.937988],\n\t\t\t\t\t\t\t[-87.387253, 44.939421],\n\t\t\t\t\t\t\t[-87.385066, 44.942445],\n\t\t\t\t\t\t\t[-87.384669, 44.942993],\n\t\t\t\t\t\t\t[-87.382436, 44.946080],\n\t\t\t\t\t\t\t[-87.374805, 44.956631],\n\t\t\t\t\t\t\t[-87.373046, 44.960388],\n\t\t\t\t\t\t\t[-87.372599, 44.961343],\n\t\t\t\t\t\t\t[-87.372568, 44.961410],\n\t\t\t\t\t\t\t[-87.371854, 44.962935],\n\t\t\t\t\t\t\t[-87.370075, 44.966736],\n\t\t\t\t\t\t\t[-87.363492, 44.980798],\n\t\t\t\t\t\t\t[-87.360288, 44.987643],\n\t\t\t\t\t\t\t[-87.351487, 44.997203],\n\t\t\t\t\t\t\t[-87.345091, 45.004151],\n\t\t\t\t\t\t\t[-87.336548, 45.013431],\n\t\t\t\t\t\t\t[-87.336457, 45.013530],\n\t\t\t\t\t\t\t[-87.322117, 45.034201],\n\t\t\t\t\t\t\t[-87.322022, 45.034290],\n\t\t\t\t\t\t\t[-87.315879, 45.040103],\n\t\t\t\t\t\t\t[-87.307394, 45.048130],\n\t\t\t\t\t\t\t[-87.303475, 45.051838],\n\t\t\t\t\t\t\t[-87.303420, 45.051890],\n\t\t\t\t\t\t\t[-87.303149, 45.052146],\n\t\t\t\t\t\t\t[-87.302831, 45.052447],\n\t\t\t\t\t\t\t[-87.302470, 45.052666],\n\t\t\t\t\t\t\t[-87.300887, 45.053625],\n\t\t\t\t\t\t\t[-87.300724, 45.053724],\n\t\t\t\t\t\t\t[-87.300146, 45.054075],\n\t\t\t\t\t\t\t[-87.284280, 45.063694],\n\t\t\t\t\t\t\t[-87.284208, 45.063760],\n\t\t\t\t\t\t\t[-87.269231, 45.077396],\n\t\t\t\t\t\t\t[-87.268737, 45.077847],\n\t\t\t\t\t\t\t[-87.268695, 45.077884],\n\t\t\t\t\t\t\t[-87.264877, 45.081361],\n\t\t\t\t\t\t\t[-87.260631, 45.092355],\n\t\t\t\t\t\t\t[-87.260542, 45.092585],\n\t\t\t\t\t\t\t[-87.260595, 45.106007],\n\t\t\t\t\t\t\t[-87.257449, 45.121644],\n\t\t\t\t\t\t\t[-87.254072, 45.126323],\n\t\t\t\t\t\t\t[-87.250487, 45.131289],\n\t\t\t\t\t\t\t[-87.240813, 45.137559],\n\t\t\t\t\t\t\t[-87.240308, 45.137886],\n\t\t\t\t\t\t\t[-87.242331, 45.146773],\n\t\t\t\t\t\t\t[-87.242924, 45.149377],\n\t\t\t\t\t\t\t[-87.238426, 45.166492],\n\t\t\t\t\t\t\t[-87.238229, 45.167238],\n\t\t\t\t\t\t\t[-87.238224, 45.167259],\n\t\t\t\t\t\t\t[-87.238220, 45.167262],\n\t\t\t\t\t\t\t[-87.231925, 45.172316],\n\t\t\t\t\t\t\t[-87.231214, 45.172887],\n\t\t\t\t\t\t\t[-87.224065, 45.174551],\n\t\t\t\t\t\t\t[-87.222316, 45.174959],\n\t\t\t\t\t\t\t[-87.221971, 45.175039],\n\t\t\t\t\t\t\t[-87.221707, 45.174716],\n\t\t\t\t\t\t\t[-87.220937, 45.173773],\n\t\t\t\t\t\t\t[-87.214370, 45.165735],\n\t\t\t\t\t\t\t[-87.213483, 45.165614],\n\t\t\t\t\t\t\t[-87.207963, 45.164857],\n\t\t\t\t\t\t\t[-87.200385, 45.163819],\n\t\t\t\t\t\t\t[-87.195876, 45.163201],\n\t\t\t\t\t\t\t[-87.195213, 45.163110],\n\t\t\t\t\t\t\t[-87.175170, 45.173000],\n\t\t\t\t\t\t\t[-87.175068, 45.173050],\n\t\t\t\t\t\t\t[-87.173722, 45.174850],\n\t\t\t\t\t\t\t[-87.171272, 45.178123],\n\t\t\t\t\t\t\t[-87.171233, 45.178175],\n\t\t\t\t\t\t\t[-87.170266, 45.179468],\n\t\t\t\t\t\t\t[-87.170062, 45.179741],\n\t\t\t\t\t\t\t[-87.168298, 45.182099],\n\t\t\t\t\t\t\t[-87.168252, 45.182160],\n\t\t\t\t\t\t\t[-87.167179, 45.183594],\n\t\t\t\t\t\t\t[-87.163169, 45.185331],\n\t\t\t\t\t\t\t[-87.147709, 45.190711],\n\t\t\t\t\t\t\t[-87.147657, 45.190719],\n\t\t\t\t\t\t\t[-87.142708, 45.191437],\n\t\t\t\t\t\t\t[-87.133030, 45.192843],\n\t\t\t\t\t\t\t[-87.132874, 45.192794],\n\t\t\t\t\t\t\t[-87.129810, 45.191825],\n\t\t\t\t\t\t\t[-87.128597, 45.191441],\n\t\t\t\t\t\t\t[-87.124549, 45.190162],\n\t\t\t\t\t\t\t[-87.123689, 45.189890],\n\t\t\t\t\t\t\t[-87.119972, 45.191103],\n\t\t\t\t\t\t\t[-87.119971, 45.191125],\n\t\t\t\t\t\t\t[-87.119968, 45.191198],\n\t\t\t\t\t\t\t[-87.119925, 45.192280],\n\t\t\t\t\t\t\t[-87.119921, 45.192386],\n\t\t\t\t\t\t\t[-87.119894, 45.193071],\n\t\t\t\t\t\t\t[-87.119887, 45.193242],\n\t\t\t\t\t\t\t[-87.119876, 45.193527],\n\t\t\t\t\t\t\t[-87.119874, 45.193581],\n\t\t\t\t\t\t\t[-87.119868, 45.193724],\n\t\t\t\t\t\t\t[-87.119864, 45.193843],\n\t\t\t\t\t\t\t[-87.119825, 45.194814],\n\t\t\t\t\t\t\t[-87.119822, 45.194908],\n\t\t\t\t\t\t\t[-87.119784, 45.195866],\n\t\t\t\t\t\t\t[-87.119780, 45.195965],\n\t\t\t\t\t\t\t[-87.119768, 45.196271],\n\t\t\t\t\t\t\t[-87.119534, 45.202184],\n\t\t\t\t\t\t\t[-87.119522, 45.202488],\n\t\t\t\t\t\t\t[-87.119511, 45.202754],\n\t\t\t\t\t\t\t[-87.119413, 45.205237],\n\t\t\t\t\t\t\t[-87.119405, 45.205440],\n\t\t\t\t\t\t\t[-87.119450, 45.205529],\n\t\t\t\t\t\t\t[-87.119654, 45.205930],\n\t\t\t\t\t\t\t[-87.121541, 45.209649],\n\t\t\t\t\t\t\t[-87.121566, 45.209698],\n\t\t\t\t\t\t\t[-87.121609, 45.209783],\n\t\t\t\t\t\t\t[-87.122098, 45.215121],\n\t\t\t\t\t\t\t[-87.122194, 45.216168],\n\t\t\t\t\t\t\t[-87.122226, 45.216519],\n\t\t\t\t\t\t\t[-87.122248, 45.216764],\n\t\t\t\t\t\t\t[-87.122364, 45.218023],\n\t\t\t\t\t\t\t[-87.122708, 45.221786],\n\t\t\t\t\t\t\t[-87.122819, 45.222997],\n\t\t\t\t\t\t\t[-87.121667, 45.226337],\n\t\t\t\t\t\t\t[-87.121288, 45.227438],\n\t\t\t\t\t\t\t[-87.121266, 45.227500],\n\t\t\t\t\t\t\t[-87.117391, 45.238740],\n\t\t\t\t\t\t\t[-87.116456, 45.241450],\n\t\t\t\t\t\t\t[-87.116432, 45.241520],\n\t\t\t\t\t\t\t[-87.109541, 45.255397],\n\t\t\t\t\t\t\t[-87.109014, 45.256458],\n\t\t\t\t\t\t\t[-87.108743, 45.257003],\n\t\t\t\t\t\t\t[-87.108430, 45.257093],\n\t\t\t\t\t\t\t[-87.101681, 45.259027],\n\t\t\t\t\t\t\t[-87.078316, 45.265723],\n\t\t\t\t\t\t\t[-87.071035, 45.280355],\n\t\t\t\t\t\t\t[-87.070845, 45.280532],\n\t\t\t\t\t\t\t[-87.057627, 45.292838],\n\t\t\t\t\t\t\t[-87.053417, 45.287901],\n\t\t\t\t\t\t\t[-87.052927, 45.287326],\n\t\t\t\t\t\t\t[-87.052872, 45.287262],\n\t\t\t\t\t\t\t[-87.051979, 45.286215],\n\t\t\t\t\t\t\t[-87.051700, 45.285888],\n\t\t\t\t\t\t\t[-87.050796, 45.285758],\n\t\t\t\t\t\t\t[-87.048745, 45.285464],\n\t\t\t\t\t\t\t[-87.043895, 45.284767],\n\t\t\t\t\t\t\t[-87.043724, 45.284820],\n\t\t\t\t\t\t\t[-87.043497, 45.284890],\n\t\t\t\t\t\t\t[-87.043130, 45.285003],\n\t\t\t\t\t\t\t[-87.041463, 45.285518],\n\t\t\t\t\t\t\t[-87.034206, 45.287758],\n\t\t\t\t\t\t\t[-87.034077, 45.287844],\n\t\t\t\t\t\t\t[-87.021088, 45.296541],\n\t\t\t\t\t\t\t[-87.017036, 45.299254],\n\t\t\t\t\t\t\t[-87.015797, 45.299190],\n\t\t\t\t\t\t\t[-86.994112, 45.298061],\n\t\t\t\t\t\t\t[-86.993528, 45.297915],\n\t\t\t\t\t\t\t[-86.993201, 45.297833],\n\t\t\t\t\t\t\t[-86.984223, 45.295585],\n\t\t\t\t\t\t\t[-86.983880, 45.295499],\n\t\t\t\t\t\t\t[-86.983355, 45.295368],\n\t\t\t\t\t\t\t[-86.983227, 45.295260],\n\t\t\t\t\t\t\t[-86.980058, 45.292598],\n\t\t\t\t\t\t\t[-86.977780, 45.290684],\n\t\t\t\t\t\t\t[-86.977714, 45.290575],\n\t\t\t\t\t\t\t[-86.970355, 45.278455],\n\t\t\t\t\t\t\t[-86.972786, 45.274591],\n\t\t\t\t\t\t\t[-86.973227, 45.273890],\n\t\t\t\t\t\t\t[-86.974346, 45.272113],\n\t\t\t\t\t\t\t[-86.974528, 45.271823],\n\t\t\t\t\t\t\t[-86.974622, 45.271752],\n\t\t\t\t\t\t\t[-86.977355, 45.269687],\n\t\t\t\t\t\t\t[-86.983597, 45.264971],\n\t\t\t\t\t\t\t[-86.984398, 45.264366],\n\t\t\t\t\t\t\t[-86.984495, 45.263409],\n\t\t\t\t\t\t\t[-86.984938, 45.259036],\n\t\t\t\t\t\t\t[-86.984975, 45.258674],\n\t\t\t\t\t\t\t[-86.984172, 45.255346],\n\t\t\t\t\t\t\t[-86.983066, 45.250764],\n\t\t\t\t\t\t\t[-86.982669, 45.249117],\n\t\t\t\t\t\t\t[-86.982393, 45.248980],\n\t\t\t\t\t\t\t[-86.976711, 45.246146],\n\t\t\t\t\t\t\t[-86.973287, 45.246381],\n\t\t\t\t\t\t\t[-86.973022, 45.246399],\n\t\t\t\t\t\t\t[-86.973453, 45.244966],\n\t\t\t\t\t\t\t[-86.973460, 45.244944],\n\t\t\t\t\t\t\t[-86.973483, 45.244867],\n\t\t\t\t\t\t\t[-86.973651, 45.244308],\n\t\t\t\t\t\t\t[-86.974086, 45.242864],\n\t\t\t\t\t\t\t[-86.978697, 45.227538],\n\t\t\t\t\t\t\t[-86.978759, 45.227333],\n\t\t\t\t\t\t\t[-86.981080, 45.223646],\n\t\t\t\t\t\t\t[-86.981956, 45.222254],\n\t\t\t\t\t\t\t[-86.983001, 45.220593],\n\t\t\t\t\t\t\t[-86.983708, 45.219470],\n\t\t\t\t\t\t\t[-86.985973, 45.215872],\n\t\t\t\t\t\t\t[-86.988075, 45.215360],\n\t\t\t\t\t\t\t[-86.995804, 45.213478],\n\t\t\t\t\t\t\t[-86.997316, 45.213110],\n\t\t\t\t\t\t\t[-87.000112, 45.212429],\n\t\t\t\t\t\t\t[-87.002806, 45.211773],\n\t\t\t\t\t\t\t[-87.005243, 45.213607],\n\t\t\t\t\t\t\t[-87.005359, 45.213694],\n\t\t\t\t\t\t\t[-87.005468, 45.214114],\n\t\t\t\t\t\t\t[-87.007540, 45.222127],\n\t\t\t\t\t\t\t[-87.007583, 45.222127],\n\t\t\t\t\t\t\t[-87.032521, 45.222274],\n\t\t\t\t\t\t\t[-87.032546, 45.222274],\n\t\t\t\t\t\t\t[-87.032576, 45.222235],\n\t\t\t\t\t\t\t[-87.034524, 45.219734],\n\t\t\t\t\t\t\t[-87.040909, 45.211535],\n\t\t\t\t\t\t\t[-87.040924, 45.211421],\n\t\t\t\t\t\t\t[-87.041063, 45.210375],\n\t\t\t\t\t\t\t[-87.041075, 45.210283],\n\t\t\t\t\t\t\t[-87.041106, 45.210052],\n\t\t\t\t\t\t\t[-87.045899, 45.173902],\n\t\t\t\t\t\t\t[-87.045883, 45.173543],\n\t\t\t\t\t\t\t[-87.045701, 45.169351],\n\t\t\t\t\t\t\t[-87.045687, 45.169016],\n\t\t\t\t\t\t\t[-87.045681, 45.168889],\n\t\t\t\t\t\t\t[-87.045660, 45.168403],\n\t\t\t\t\t\t\t[-87.045480, 45.164271],\n\t\t\t\t\t\t\t[-87.045242, 45.158798],\n\t\t\t\t\t\t\t[-87.045225, 45.158401],\n\t\t\t\t\t\t\t[-87.044176, 45.157630],\n\t\t\t\t\t\t\t[-87.041145, 45.155404],\n\t\t\t\t\t\t\t[-87.038479, 45.153445],\n\t\t\t\t\t\t\t[-87.036716, 45.152150],\n\t\t\t\t\t\t\t[-87.034083, 45.150216],\n\t\t\t\t\t\t\t[-87.030225, 45.147382],\n\t\t\t\t\t\t\t[-87.029164, 45.146603],\n\t\t\t\t\t\t\t[-87.028980, 45.146467],\n\t\t\t\t\t\t\t[-87.028847, 45.146370],\n\t\t\t\t\t\t\t[-87.028957, 45.146250],\n\t\t\t\t\t\t\t[-87.030105, 45.145009],\n\t\t\t\t\t\t\t[-87.030126, 45.144986],\n\t\t\t\t\t\t\t[-87.031167, 45.143860],\n\t\t\t\t\t\t\t[-87.031307, 45.143709],\n\t\t\t\t\t\t\t[-87.032194, 45.142748],\n\t\t\t\t\t\t\t[-87.032344, 45.142586],\n\t\t\t\t\t\t\t[-87.032461, 45.142460],\n\t\t\t\t\t\t\t[-87.032920, 45.141963],\n\t\t\t\t\t\t\t[-87.033114, 45.141753],\n\t\t\t\t\t\t\t[-87.033117, 45.141752],\n\t\t\t\t\t\t\t[-87.033546, 45.141522],\n\t\t\t\t\t\t\t[-87.033550, 45.141519],\n\t\t\t\t\t\t\t[-87.034621, 45.140946],\n\t\t\t\t\t\t\t[-87.034667, 45.140921],\n\t\t\t\t\t\t\t[-87.035465, 45.140494],\n\t\t\t\t\t\t\t[-87.035838, 45.140294],\n\t\t\t\t\t\t\t[-87.040175, 45.137972],\n\t\t\t\t\t\t\t[-87.041564, 45.137228],\n\t\t\t\t\t\t\t[-87.042114, 45.136933],\n\t\t\t\t\t\t\t[-87.042286, 45.136841],\n\t\t\t\t\t\t\t[-87.045748, 45.134987],\n\t\t\t\t\t\t\t[-87.054282, 45.120074],\n\t\t\t\t\t\t\t[-87.054342, 45.119968],\n\t\t\t\t\t\t\t[-87.051049, 45.116172],\n\t\t\t\t\t\t\t[-87.050750, 45.115111],\n\t\t\t\t\t\t\t[-87.049346, 45.110122],\n\t\t\t\t\t\t\t[-87.049268, 45.109845],\n\t\t\t\t\t\t\t[-87.049231, 45.109712],\n\t\t\t\t\t\t\t[-87.048951, 45.108718],\n\t\t\t\t\t\t\t[-87.048911, 45.107665],\n\t\t\t\t\t\t\t[-87.048406, 45.094259],\n\t\t\t\t\t\t\t[-87.048346, 45.092647],\n\t\t\t\t\t\t\t[-87.048213, 45.089124],\n\t\t\t\t\t\t\t[-87.048359, 45.089098],\n\t\t\t\t\t\t\t[-87.050780, 45.088663],\n\t\t\t\t\t\t\t[-87.057415, 45.087472],\n\t\t\t\t\t\t\t[-87.057444, 45.087467],\n\t\t\t\t\t\t\t[-87.058259, 45.086304],\n\t\t\t\t\t\t\t[-87.061966, 45.081015],\n\t\t\t\t\t\t\t[-87.063129, 45.079356],\n\t\t\t\t\t\t\t[-87.063157, 45.079316],\n\t\t\t\t\t\t\t[-87.063376, 45.079202],\n\t\t\t\t\t\t\t[-87.064864, 45.078427],\n\t\t\t\t\t\t\t[-87.079552, 45.070783],\n\t\t\t\t\t\t\t[-87.079555, 45.070770],\n\t\t\t\t\t\t\t[-87.080271, 45.067154],\n\t\t\t\t\t\t\t[-87.080755, 45.064710],\n\t\t\t\t\t\t\t[-87.081866, 45.059103],\n\t\t\t\t\t\t\t[-87.082419, 45.058879],\n\t\t\t\t\t\t\t[-87.086351, 45.057287],\n\t\t\t\t\t\t\t[-87.090849, 45.055465],\n\t\t\t\t\t\t\t[-87.091639, 45.055145],\n\t\t\t\t\t\t\t[-87.091761, 45.055158],\n\t\t\t\t\t\t\t[-87.092177, 45.055203],\n\t\t\t\t\t\t\t[-87.096387, 45.055654],\n\t\t\t\t\t\t\t[-87.097479, 45.055771],\n\t\t\t\t\t\t\t[-87.121156, 45.058311],\n\t\t\t\t\t\t\t[-87.124701, 45.052936],\n\t\t\t\t\t\t\t[-87.124722, 45.050833],\n\t\t\t\t\t\t\t[-87.124727, 45.050344],\n\t\t\t\t\t\t\t[-87.124737, 45.049268],\n\t\t\t\t\t\t\t[-87.124744, 45.048608],\n\t\t\t\t\t\t\t[-87.124788, 45.044141],\n\t\t\t\t\t\t\t[-87.124797, 45.043262],\n\t\t\t\t\t\t\t[-87.124808, 45.042167],\n\t\t\t\t\t\t\t[-87.132344, 45.026862],\n\t\t\t\t\t\t\t[-87.134354, 45.022780],\n\t\t\t\t\t\t\t[-87.138024, 45.015327],\n\t\t\t\t\t\t\t[-87.139384, 45.012565],\n\t\t\t\t\t\t\t[-87.141048, 45.012175],\n\t\t\t\t\t\t\t[-87.154084, 45.009117],\n\t\t\t\t\t\t\t[-87.163477, 45.004913],\n\t\t\t\t\t\t\t[-87.163529, 45.004890],\n\t\t\t\t\t\t\t[-87.163561, 45.004848],\n\t\t\t\t\t\t\t[-87.167474, 44.999736],\n\t\t\t\t\t\t\t[-87.167970, 44.999088],\n\t\t\t\t\t\t\t[-87.169494, 44.997096],\n\t\t\t\t\t\t\t[-87.169676, 44.996860],\n\t\t\t\t\t\t\t[-87.169694, 44.996836],\n\t\t\t\t\t\t\t[-87.181428, 44.981505],\n\t\t\t\t\t\t\t[-87.181901, 44.980887],\n\t\t\t\t\t\t\t[-87.182922, 44.979221],\n\t\t\t\t\t\t\t[-87.187585, 44.971606],\n\t\t\t\t\t\t\t[-87.189134, 44.969078],\n\t\t\t\t\t\t\t[-87.189407, 44.968632],\n\t\t\t\t\t\t\t[-87.189402, 44.968524],\n\t\t\t\t\t\t\t[-87.189383, 44.968164],\n\t\t\t\t\t\t\t[-87.188582, 44.952193],\n\t\t\t\t\t\t\t[-87.188399, 44.948560],\n\t\t\t\t\t\t\t[-87.188375, 44.948077],\n\t\t\t\t\t\t\t[-87.188074, 44.947886],\n\t\t\t\t\t\t\t[-87.179974, 44.942753],\n\t\t\t\t\t\t\t[-87.175240, 44.939753],\n\t\t\t\t\t\t\t[-87.171700, 44.931476],\n\t\t\t\t\t\t\t[-87.174920, 44.927749],\n\t\t\t\t\t\t\t[-87.182421, 44.926297],\n\t\t\t\t\t\t\t[-87.185858, 44.925632],\n\t\t\t\t\t\t\t[-87.186732, 44.925463],\n\t\t\t\t\t\t\t[-87.187984, 44.924845],\n\t\t\t\t\t\t\t[-87.204238, 44.916819],\n\t\t\t\t\t\t\t[-87.215808, 44.906744],\n\t\t\t\t\t\t\t[-87.215977, 44.906597],\n\t\t\t\t\t\t\t[-87.216059, 44.906009],\n\t\t\t\t\t\t\t[-87.216074, 44.905900],\n\t\t\t\t\t\t\t[-87.216146, 44.905379],\n\t\t\t\t\t\t\t[-87.217171, 44.898013],\n\t\t\t\t\t\t\t[-87.217195, 44.897839],\n\t\t\t\t\t\t\t[-87.217149, 44.897789],\n\t\t\t\t\t\t\t[-87.216710, 44.897309],\n\t\t\t\t\t\t\t[-87.212587, 44.892809],\n\t\t\t\t\t\t\t[-87.209265, 44.889182],\n\t\t\t\t\t\t\t[-87.206285, 44.885928],\n\t\t\t\t\t\t\t[-87.206184, 44.885329],\n\t\t\t\t\t\t\t[-87.204815, 44.877199],\n\t\t\t\t\t\t\t[-87.204809, 44.877159],\n\t\t\t\t\t\t\t[-87.204545, 44.875593],\n\t\t\t\t\t\t\t[-87.204904, 44.875429],\n\t\t\t\t\t\t\t[-87.211398, 44.872461],\n\t\t\t\t\t\t\t[-87.224891, 44.866295],\n\t\t\t\t\t\t\t[-87.246171, 44.856571],\n\t\t\t\t\t\t\t[-87.267061, 44.847025],\n\t\t\t\t\t\t\t[-87.267441, 44.846851],\n\t\t\t\t\t\t\t[-87.267564, 44.846655],\n\t\t\t\t\t\t\t[-87.274769, 44.835187],\n\t\t\t\t\t\t\t[-87.276030, 44.833180],\n\t\t\t\t\t\t\t[-87.282561, 44.814729],\n\t\t\t\t\t\t\t[-87.294869, 44.809131],\n\t\t\t\t\t\t\t[-87.304824, 44.804603],\n\t\t\t\t\t\t\t[-87.307482, 44.801377],\n\t\t\t\t\t\t\t[-87.313363, 44.794237],\n\t\t\t\t\t\t\t[-87.313692, 44.793838],\n\t\t\t\t\t\t\t[-87.313751, 44.793766],\n\t\t\t\t\t\t\t[-87.313880, 44.793595],\n\t\t\t\t\t\t\t[-87.314247, 44.793109],\n\t\t\t\t\t\t\t[-87.315813, 44.791034],\n\t\t\t\t\t\t\t[-87.320397, 44.784963],\n\t\t\t\t\t\t\t[-87.319796, 44.779170],\n\t\t\t\t\t\t\t[-87.319169, 44.773135],\n\t\t\t\t\t\t\t[-87.319030, 44.771794],\n\t\t\t\t\t\t\t[-87.319013, 44.771632],\n\t\t\t\t\t\t\t[-87.318982, 44.771335],\n\t\t\t\t\t\t\t[-87.319903, 44.769672],\n\t\t\t\t\t\t\t[-87.320855, 44.767953],\n\t\t\t\t\t\t\t[-87.337584, 44.737751],\n\t\t\t\t\t\t\t[-87.339155, 44.732839],\n\t\t\t\t\t\t\t[-87.339904, 44.730498],\n\t\t\t\t\t\t\t[-87.341226, 44.726364],\n\t\t\t\t\t\t\t[-87.341491, 44.725535],\n\t\t\t\t\t\t\t[-87.343508, 44.719228],\n\t\t\t\t\t\t\t[-87.348082, 44.711526],\n\t\t\t\t\t\t\t[-87.349559, 44.709039],\n\t\t\t\t\t\t\t[-87.353789, 44.701915],\n\t\t\t\t\t\t\t[-87.354172, 44.701445],\n\t\t\t\t\t\t\t[-87.354249, 44.701350],\n\t\t\t\t\t\t\t[-87.361150, 44.692876],\n\t\t\t\t\t\t\t[-87.367992, 44.684474],\n\t\t\t\t\t\t\t[-87.368263, 44.684141],\n\t\t\t\t\t\t\t[-87.373228, 44.675593],\n\t\t\t\t\t\t\t[-87.375091, 44.675601],\n\t\t\t\t\t\t\t[-87.736058, 44.677025]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55033\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"033\",\n\t\t\t\t\"NAME\": \"Dunn\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 850.105000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.136348, 44.857848],\n\t\t\t\t\t\t[-92.136113, 45.121432],\n\t\t\t\t\t\t[-92.156465, 45.209554],\n\t\t\t\t\t\t[-91.665647, 45.207991],\n\t\t\t\t\t\t[-91.650455, 44.855951],\n\t\t\t\t\t\t[-91.650361, 44.683633],\n\t\t\t\t\t\t[-92.135202, 44.684363],\n\t\t\t\t\t\t[-92.136348, 44.857848]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55039\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"039\",\n\t\t\t\t\"NAME\": \"Fond du Lac\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 719.553000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.467570, 43.893415],\n\t\t\t\t\t\t[-88.403195, 43.892977],\n\t\t\t\t\t\t[-88.404187, 43.938200],\n\t\t\t\t\t\t[-88.314948, 43.937665],\n\t\t\t\t\t\t[-88.161654, 43.937683],\n\t\t\t\t\t\t[-88.162274, 43.891511],\n\t\t\t\t\t\t[-88.160873, 43.542943],\n\t\t\t\t\t\t[-88.400426, 43.543532],\n\t\t\t\t\t\t[-88.401041, 43.630933],\n\t\t\t\t\t\t[-88.886052, 43.633540],\n\t\t\t\t\t\t[-88.885697, 43.895184],\n\t\t\t\t\t\t[-88.467570, 43.893415]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55045\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"045\",\n\t\t\t\t\"NAME\": \"Green\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 583.957000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.838167, 42.857397],\n\t\t\t\t\t\t[-89.369069, 42.856471],\n\t\t\t\t\t\t[-89.369127, 42.845046],\n\t\t\t\t\t\t[-89.366031, 42.500274],\n\t\t\t\t\t\t[-89.401416, 42.500433],\n\t\t\t\t\t\t[-89.401432, 42.500433],\n\t\t\t\t\t\t[-89.420991, 42.500589],\n\t\t\t\t\t\t[-89.422567, 42.500680],\n\t\t\t\t\t\t[-89.423926, 42.500818],\n\t\t\t\t\t\t[-89.425162, 42.500726],\n\t\t\t\t\t\t[-89.484300, 42.501426],\n\t\t\t\t\t\t[-89.492612, 42.501514],\n\t\t\t\t\t\t[-89.493216, 42.501514],\n\t\t\t\t\t\t[-89.522542, 42.501889],\n\t\t\t\t\t\t[-89.564407, 42.502628],\n\t\t\t\t\t\t[-89.594779, 42.503468],\n\t\t\t\t\t\t[-89.600001, 42.503672],\n\t\t\t\t\t\t[-89.603523, 42.503557],\n\t\t\t\t\t\t[-89.613410, 42.503942],\n\t\t\t\t\t\t[-89.644176, 42.504520],\n\t\t\t\t\t\t[-89.650324, 42.504613],\n\t\t\t\t\t\t[-89.667596, 42.504960],\n\t\t\t\t\t\t[-89.690088, 42.505191],\n\t\t\t\t\t\t[-89.693487, 42.505099],\n\t\t\t\t\t\t[-89.742395, 42.505382],\n\t\t\t\t\t\t[-89.769643, 42.505322],\n\t\t\t\t\t\t[-89.780302, 42.505349],\n\t\t\t\t\t\t[-89.793957, 42.505466],\n\t\t\t\t\t\t[-89.799704, 42.505421],\n\t\t\t\t\t\t[-89.801897, 42.505444],\n\t\t\t\t\t\t[-89.837587, 42.505543],\n\t\t\t\t\t\t[-89.838410, 42.813799],\n\t\t\t\t\t\t[-89.838167, 42.857397]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55063\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"063\",\n\t\t\t\t\"NAME\": \"La Crosse\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 451.686000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.151843, 44.079656],\n\t\t\t\t\t\t[-90.972764, 44.070775],\n\t\t\t\t\t\t[-90.912918, 44.071522],\n\t\t\t\t\t\t[-90.910467, 43.725342],\n\t\t\t\t\t\t[-91.268198, 43.726571],\n\t\t\t\t\t\t[-91.262436, 43.792166],\n\t\t\t\t\t\t[-91.284138, 43.847065],\n\t\t\t\t\t\t[-91.298815, 43.856555],\n\t\t\t\t\t\t[-91.310991, 43.867381],\n\t\t\t\t\t\t[-91.363242, 43.926563],\n\t\t\t\t\t\t[-91.420114, 43.984243],\n\t\t\t\t\t\t[-91.322143, 43.984462],\n\t\t\t\t\t\t[-91.337329, 44.037499],\n\t\t\t\t\t\t[-91.151843, 44.079656]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55069\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"069\",\n\t\t\t\t\"NAME\": \"Lincoln\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 878.973000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.043414, 45.555082],\n\t\t\t\t\t\t[-89.428258, 45.555353],\n\t\t\t\t\t\t[-89.424824, 45.467257],\n\t\t\t\t\t\t[-89.425971, 45.119098],\n\t\t\t\t\t\t[-90.043685, 45.120214],\n\t\t\t\t\t\t[-90.046143, 45.340309],\n\t\t\t\t\t\t[-90.042273, 45.381866],\n\t\t\t\t\t\t[-90.043414, 45.555082]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55073\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"073\",\n\t\t\t\t\"NAME\": \"Marathon\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1544.983000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.316253, 44.685154],\n\t\t\t\t\t\t[-90.316180, 44.840775],\n\t\t\t\t\t\t[-90.315919, 44.844187],\n\t\t\t\t\t\t[-90.315038, 45.033829],\n\t\t\t\t\t\t[-90.197514, 45.033640],\n\t\t\t\t\t\t[-90.197765, 45.120604],\n\t\t\t\t\t\t[-90.043685, 45.120214],\n\t\t\t\t\t\t[-89.425971, 45.119098],\n\t\t\t\t\t\t[-89.224214, 45.118567],\n\t\t\t\t\t\t[-89.223814, 45.029246],\n\t\t\t\t\t\t[-89.223745, 44.681365],\n\t\t\t\t\t\t[-89.844931, 44.684945],\n\t\t\t\t\t\t[-90.316253, 44.685154]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55081\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"081\",\n\t\t\t\t\"NAME\": \"Monroe\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 900.776000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.972764, 44.070775],\n\t\t\t\t\t\t[-90.906152, 44.158316],\n\t\t\t\t\t\t[-90.312575, 44.155284],\n\t\t\t\t\t\t[-90.312195, 43.731312],\n\t\t\t\t\t\t[-90.910467, 43.725342],\n\t\t\t\t\t\t[-90.912918, 44.071522],\n\t\t\t\t\t\t[-90.972764, 44.070775]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55095\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"095\",\n\t\t\t\t\"NAME\": \"Polk\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 913.962000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.732594, 45.304224],\n\t\t\t\t\t\t[-92.704794, 45.326526],\n\t\t\t\t\t\t[-92.664102, 45.393309],\n\t\t\t\t\t\t[-92.680234, 45.464344],\n\t\t\t\t\t\t[-92.726230, 45.531085],\n\t\t\t\t\t\t[-92.803432, 45.562500],\n\t\t\t\t\t\t[-92.823309, 45.560934],\n\t\t\t\t\t\t[-92.871082, 45.567581],\n\t\t\t\t\t\t[-92.883749, 45.575483],\n\t\t\t\t\t\t[-92.886421, 45.594881],\n\t\t\t\t\t\t[-92.888114, 45.628377],\n\t\t\t\t\t\t[-92.885661, 45.644126],\n\t\t\t\t\t\t[-92.529111, 45.642171],\n\t\t\t\t\t\t[-92.528198, 45.728680],\n\t\t\t\t\t\t[-92.154443, 45.725616],\n\t\t\t\t\t\t[-92.154888, 45.639742],\n\t\t\t\t\t\t[-92.156465, 45.209554],\n\t\t\t\t\t\t[-92.765898, 45.210173],\n\t\t\t\t\t\t[-92.760615, 45.278827],\n\t\t\t\t\t\t[-92.751735, 45.292667],\n\t\t\t\t\t\t[-92.746139, 45.296046],\n\t\t\t\t\t\t[-92.732594, 45.304224]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55103\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"103\",\n\t\t\t\t\"NAME\": \"Richland\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 586.151000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.429825, 43.200940],\n\t\t\t\t\t\t[-90.545408, 43.211455],\n\t\t\t\t\t\t[-90.666786, 43.171778],\n\t\t\t\t\t\t[-90.668561, 43.422994],\n\t\t\t\t\t\t[-90.671654, 43.552969],\n\t\t\t\t\t\t[-90.311069, 43.553991],\n\t\t\t\t\t\t[-90.191964, 43.554996],\n\t\t\t\t\t\t[-90.193814, 43.164464],\n\t\t\t\t\t\t[-90.292534, 43.206859],\n\t\t\t\t\t\t[-90.429825, 43.200940]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55115\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"115\",\n\t\t\t\t\"NAME\": \"Shawano\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 893.057000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.223814, 45.029246],\n\t\t\t\t\t\t[-89.102069, 45.029499],\n\t\t\t\t\t\t[-88.981680, 45.028917],\n\t\t\t\t\t\t[-88.981432, 44.942841],\n\t\t\t\t\t\t[-88.735548, 44.943178],\n\t\t\t\t\t\t[-88.736194, 44.856376],\n\t\t\t\t\t\t[-88.489149, 44.855445],\n\t\t\t\t\t\t[-88.248213, 44.852739],\n\t\t\t\t\t\t[-88.242687, 44.679631],\n\t\t\t\t\t\t[-88.245204, 44.584746],\n\t\t\t\t\t\t[-88.577163, 44.590630],\n\t\t\t\t\t\t[-88.606083, 44.590515],\n\t\t\t\t\t\t[-88.605159, 44.678331],\n\t\t\t\t\t\t[-89.223745, 44.681365],\n\t\t\t\t\t\t[-89.223814, 45.029246]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55129\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"129\",\n\t\t\t\t\"NAME\": \"Washburn\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 797.113000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.540294, 45.637605],\n\t\t\t\t\t\t[-92.031417, 45.639928],\n\t\t\t\t\t\t[-92.033404, 45.983870],\n\t\t\t\t\t\t[-92.049636, 46.157597],\n\t\t\t\t\t\t[-91.551282, 46.157045],\n\t\t\t\t\t\t[-91.540294, 45.637605]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55141\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"141\",\n\t\t\t\t\"NAME\": \"Wood\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 793.116000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.902565, 44.249470],\n\t\t\t\t\t\t[-90.312035, 44.248758],\n\t\t\t\t\t\t[-90.316050, 44.424673],\n\t\t\t\t\t\t[-90.316253, 44.685154],\n\t\t\t\t\t\t[-89.844931, 44.684945],\n\t\t\t\t\t\t[-89.844410, 44.511542],\n\t\t\t\t\t\t[-89.726622, 44.511191],\n\t\t\t\t\t\t[-89.724746, 44.247678],\n\t\t\t\t\t\t[-89.726235, 44.247943],\n\t\t\t\t\t\t[-89.902565, 44.249470]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US56025\",\n\t\t\t\t\"STATE\": \"56\",\n\t\t\t\t\"COUNTY\": \"025\",\n\t\t\t\t\"NAME\": \"Natrona\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 5340.352000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-106.075852, 42.433218],\n\t\t\t\t\t\t[-106.654781, 42.431094],\n\t\t\t\t\t\t[-107.522923, 42.434356],\n\t\t\t\t\t\t[-107.542025, 42.434356],\n\t\t\t\t\t\t[-107.543526, 42.781558],\n\t\t\t\t\t\t[-107.501425, 42.781458],\n\t\t\t\t\t\t[-107.502327, 43.128060],\n\t\t\t\t\t\t[-107.516728, 43.127960],\n\t\t\t\t\t\t[-107.517031, 43.472659],\n\t\t\t\t\t\t[-107.535032, 43.472759],\n\t\t\t\t\t\t[-107.534897, 43.501362],\n\t\t\t\t\t\t[-107.110734, 43.500286],\n\t\t\t\t\t\t[-107.110920, 43.492362],\n\t\t\t\t\t\t[-106.078068, 43.494471],\n\t\t\t\t\t\t[-106.072669, 42.778165],\n\t\t\t\t\t\t[-106.075852, 42.433218]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US56031\",\n\t\t\t\t\"STATE\": \"56\",\n\t\t\t\t\"COUNTY\": \"031\",\n\t\t\t\t\"NAME\": \"Platte\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2084.208000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-104.653338, 41.653007],\n\t\t\t\t\t\t[-105.278236, 41.656655],\n\t\t\t\t\t\t[-105.273750, 42.088824],\n\t\t\t\t\t\t[-105.283910, 42.431402],\n\t\t\t\t\t\t[-105.286511, 42.605826],\n\t\t\t\t\t\t[-104.892437, 42.608939],\n\t\t\t\t\t\t[-104.655639, 42.609468],\n\t\t\t\t\t\t[-104.655027, 42.216785],\n\t\t\t\t\t\t[-104.653338, 41.653007]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US56033\",\n\t\t\t\t\"STATE\": \"56\",\n\t\t\t\t\"COUNTY\": \"033\",\n\t\t\t\t\"NAME\": \"Sheridan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2523.993000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-106.009676, 44.563981],\n\t\t\t\t\t\t[-106.428897, 44.556777],\n\t\t\t\t\t\t[-107.369621, 44.559837],\n\t\t\t\t\t\t[-107.615891, 44.701297],\n\t\t\t\t\t\t[-107.741543, 44.714352],\n\t\t\t\t\t\t[-107.832319, 44.790161],\n\t\t\t\t\t\t[-107.911495, 45.000948],\n\t\t\t\t\t\t[-107.608854, 45.000860],\n\t\t\t\t\t\t[-107.607824, 45.000929],\n\t\t\t\t\t\t[-107.134180, 45.000109],\n\t\t\t\t\t\t[-107.080624, 44.996791],\n\t\t\t\t\t\t[-106.892875, 44.995947],\n\t\t\t\t\t\t[-106.888773, 44.995885],\n\t\t\t\t\t\t[-106.263586, 44.993788],\n\t\t\t\t\t\t[-106.024814, 44.993688],\n\t\t\t\t\t\t[-106.009676, 44.563981]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US56045\",\n\t\t\t\t\"STATE\": \"56\",\n\t\t\t\t\"COUNTY\": \"045\",\n\t\t\t\t\"NAME\": \"Weston\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2398.089000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-104.055077, 43.936535],\n\t\t\t\t\t\t[-104.055104, 43.853478],\n\t\t\t\t\t\t[-104.055138, 43.750421],\n\t\t\t\t\t\t[-104.055133, 43.747105],\n\t\t\t\t\t\t[-104.054902, 43.583852],\n\t\t\t\t\t\t[-104.054885, 43.583512],\n\t\t\t\t\t\t[-104.054840, 43.579368],\n\t\t\t\t\t\t[-104.055032, 43.558603],\n\t\t\t\t\t\t[-104.054787, 43.503328],\n\t\t\t\t\t\t[-104.899941, 43.499640],\n\t\t\t\t\t\t[-105.079797, 43.498445],\n\t\t\t\t\t\t[-105.079281, 44.176182],\n\t\t\t\t\t\t[-104.054487, 44.180381],\n\t\t\t\t\t\t[-104.054562, 44.141081],\n\t\t\t\t\t\t[-104.054950, 43.938090],\n\t\t\t\t\t\t[-104.055077, 43.936535]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72013\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"013\",\n\t\t\t\t\"NAME\": \"Arecibo\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 125.947000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-66.586778, 18.484948],\n\t\t\t\t\t\t[-66.588181, 18.389408],\n\t\t\t\t\t\t[-66.588305, 18.374140],\n\t\t\t\t\t\t[-66.582374, 18.374238],\n\t\t\t\t\t\t[-66.583014, 18.363218],\n\t\t\t\t\t\t[-66.590785, 18.338060],\n\t\t\t\t\t\t[-66.600229, 18.339603],\n\t\t\t\t\t\t[-66.606989, 18.328186],\n\t\t\t\t\t\t[-66.770072, 18.325013],\n\t\t\t\t\t\t[-66.768129, 18.477654],\n\t\t\t\t\t\t[-66.764893, 18.484097],\n\t\t\t\t\t\t[-66.749301, 18.476701],\n\t\t\t\t\t\t[-66.742067, 18.474681],\n\t\t\t\t\t\t[-66.733986, 18.473457],\n\t\t\t\t\t\t[-66.710743, 18.472611],\n\t\t\t\t\t\t[-66.683719, 18.481367],\n\t\t\t\t\t\t[-66.679876, 18.484944],\n\t\t\t\t\t\t[-66.664364, 18.487809],\n\t\t\t\t\t\t[-66.645839, 18.488777],\n\t\t\t\t\t\t[-66.624618, 18.494199],\n\t\t\t\t\t\t[-66.586778, 18.484948]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US53041\",\n\t\t\t\t\"STATE\": \"53\",\n\t\t\t\t\"COUNTY\": \"041\",\n\t\t\t\t\"NAME\": \"Lewis\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2402.802000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-121.523556, 46.388221],\n\t\t\t\t\t\t[-122.241011, 46.386371],\n\t\t\t\t\t\t[-122.241696, 46.385292],\n\t\t\t\t\t\t[-123.091305, 46.387929],\n\t\t\t\t\t\t[-123.217841, 46.385128],\n\t\t\t\t\t\t[-123.358247, 46.384227],\n\t\t\t\t\t\t[-123.370775, 46.792449],\n\t\t\t\t\t\t[-123.202826, 46.794392],\n\t\t\t\t\t\t[-123.160588, 46.793383],\n\t\t\t\t\t\t[-123.160909, 46.764330],\n\t\t\t\t\t\t[-122.202721, 46.762628],\n\t\t\t\t\t\t[-121.832590, 46.729721],\n\t\t\t\t\t\t[-121.758941, 46.783734],\n\t\t\t\t\t\t[-121.456356, 46.783744],\n\t\t\t\t\t\t[-121.352320, 46.712366],\n\t\t\t\t\t\t[-121.451194, 46.533537],\n\t\t\t\t\t\t[-121.386557, 46.410601],\n\t\t\t\t\t\t[-121.523556, 46.388221]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US53045\",\n\t\t\t\t\"STATE\": \"53\",\n\t\t\t\t\"COUNTY\": \"045\",\n\t\t\t\t\"NAME\": \"Mason\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 959.417000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-122.905659, 47.155614],\n\t\t\t\t\t\t[-122.936716, 47.190246],\n\t\t\t\t\t\t[-123.075101, 47.084503],\n\t\t\t\t\t\t[-123.202066, 47.084895],\n\t\t\t\t\t\t[-123.489031, 47.082716],\n\t\t\t\t\t\t[-123.504380, 47.517609],\n\t\t\t\t\t\t[-123.504385, 47.607010],\n\t\t\t\t\t\t[-122.950473, 47.606266],\n\t\t\t\t\t\t[-123.037766, 47.520214],\n\t\t\t\t\t\t[-122.872192, 47.521495],\n\t\t\t\t\t\t[-122.800150, 47.520165],\n\t\t\t\t\t\t[-122.801451, 47.404016],\n\t\t\t\t\t\t[-122.850050, 47.272917],\n\t\t\t\t\t\t[-122.821426, 47.194211],\n\t\t\t\t\t\t[-122.881717, 47.156285],\n\t\t\t\t\t\t[-122.905659, 47.155614]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US53065\",\n\t\t\t\t\"STATE\": \"53\",\n\t\t\t\t\"COUNTY\": \"065\",\n\t\t\t\t\"NAME\": \"Stevens\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2477.765000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-118.196891, 49.000094],\n\t\t\t\t\t\t[-117.429539, 48.999957],\n\t\t\t\t\t\t[-117.430203, 48.923068],\n\t\t\t\t\t\t[-117.498868, 48.922786],\n\t\t\t\t\t\t[-117.498577, 48.836813],\n\t\t\t\t\t\t[-117.563619, 48.836699],\n\t\t\t\t\t\t[-117.563527, 48.742464],\n\t\t\t\t\t\t[-117.629512, 48.742683],\n\t\t\t\t\t\t[-117.629241, 48.655848],\n\t\t\t\t\t\t[-117.499695, 48.656227],\n\t\t\t\t\t\t[-117.502314, 48.134864],\n\t\t\t\t\t\t[-117.437521, 48.134631],\n\t\t\t\t\t\t[-117.436903, 48.047206],\n\t\t\t\t\t\t[-117.535039, 48.047865],\n\t\t\t\t\t\t[-117.535661, 47.795111],\n\t\t\t\t\t\t[-117.699097, 47.856089],\n\t\t\t\t\t\t[-117.820784, 47.825188],\n\t\t\t\t\t\t[-117.882083, 47.847152],\n\t\t\t\t\t\t[-118.078212, 47.800161],\n\t\t\t\t\t\t[-118.213025, 47.945298],\n\t\t\t\t\t\t[-118.340925, 47.894395],\n\t\t\t\t\t\t[-118.402407, 48.026382],\n\t\t\t\t\t\t[-118.238198, 48.058184],\n\t\t\t\t\t\t[-118.248606, 48.134255],\n\t\t\t\t\t\t[-118.191298, 48.159888],\n\t\t\t\t\t\t[-118.194500, 48.212889],\n\t\t\t\t\t\t[-118.141475, 48.259951],\n\t\t\t\t\t\t[-118.175602, 48.319492],\n\t\t\t\t\t\t[-118.206507, 48.470296],\n\t\t\t\t\t\t[-118.149709, 48.520568],\n\t\t\t\t\t\t[-118.104960, 48.653503],\n\t\t\t\t\t\t[-118.131002, 48.777653],\n\t\t\t\t\t\t[-118.195508, 48.840725],\n\t\t\t\t\t\t[-118.221669, 48.937098],\n\t\t\t\t\t\t[-118.196891, 49.000094]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54001\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"001\",\n\t\t\t\t\"NAME\": \"Barbour\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 341.059000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.166387, 39.242283],\n\t\t\t\t\t\t[-80.023411, 39.247892],\n\t\t\t\t\t\t[-79.895536, 39.299584],\n\t\t\t\t\t\t[-79.809729, 39.230526],\n\t\t\t\t\t\t[-79.825092, 39.115803],\n\t\t\t\t\t\t[-79.896094, 38.973404],\n\t\t\t\t\t\t[-80.085062, 38.947236],\n\t\t\t\t\t\t[-80.055820, 39.037160],\n\t\t\t\t\t\t[-80.128198, 39.037795],\n\t\t\t\t\t\t[-80.227173, 39.112792],\n\t\t\t\t\t\t[-80.224687, 39.170977],\n\t\t\t\t\t\t[-80.166387, 39.242283]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54007\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"007\",\n\t\t\t\t\"NAME\": \"Braxton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 510.812000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.881232, 38.507045],\n\t\t\t\t\t\t[-81.031677, 38.667839],\n\t\t\t\t\t\t[-80.984950, 38.717898],\n\t\t\t\t\t\t[-80.701836, 38.878860],\n\t\t\t\t\t\t[-80.605799, 38.904167],\n\t\t\t\t\t\t[-80.446148, 38.777514],\n\t\t\t\t\t\t[-80.457332, 38.739169],\n\t\t\t\t\t\t[-80.508655, 38.645553],\n\t\t\t\t\t\t[-80.650786, 38.526590],\n\t\t\t\t\t\t[-80.785177, 38.557649],\n\t\t\t\t\t\t[-80.881232, 38.507045]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54013\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"013\",\n\t\t\t\t\"NAME\": \"Calhoun\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 279.249000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.984950, 38.717898],\n\t\t\t\t\t\t[-81.031677, 38.667839],\n\t\t\t\t\t\t[-81.083710, 38.611982],\n\t\t\t\t\t\t[-81.158837, 38.644494],\n\t\t\t\t\t\t[-81.171819, 38.739805],\n\t\t\t\t\t\t[-81.278412, 38.914867],\n\t\t\t\t\t\t[-81.162455, 39.030608],\n\t\t\t\t\t\t[-81.033632, 39.009584],\n\t\t\t\t\t\t[-81.002777, 38.846025],\n\t\t\t\t\t\t[-81.056714, 38.793322],\n\t\t\t\t\t\t[-80.984950, 38.717898]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54021\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"021\",\n\t\t\t\t\"NAME\": \"Gilmer\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 338.503000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.605799, 38.904167],\n\t\t\t\t\t\t[-80.701836, 38.878860],\n\t\t\t\t\t\t[-80.984950, 38.717898],\n\t\t\t\t\t\t[-81.056714, 38.793322],\n\t\t\t\t\t\t[-81.002777, 38.846025],\n\t\t\t\t\t\t[-81.033632, 39.009584],\n\t\t\t\t\t\t[-80.812970, 39.109401],\n\t\t\t\t\t\t[-80.749214, 39.099843],\n\t\t\t\t\t\t[-80.728326, 39.095679],\n\t\t\t\t\t\t[-80.716815, 39.008430],\n\t\t\t\t\t\t[-80.605799, 38.904167]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54039\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"039\",\n\t\t\t\t\"NAME\": \"Kanawha\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 901.587000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.522166, 38.612746],\n\t\t\t\t\t\t[-81.465372, 38.549898],\n\t\t\t\t\t\t[-81.194113, 38.527634],\n\t\t\t\t\t\t[-81.283872, 38.472029],\n\t\t\t\t\t\t[-81.231434, 38.263716],\n\t\t\t\t\t\t[-81.231636, 38.263514],\n\t\t\t\t\t\t[-81.331503, 38.167578],\n\t\t\t\t\t\t[-81.380829, 37.969109],\n\t\t\t\t\t\t[-81.414331, 37.973508],\n\t\t\t\t\t\t[-81.438531, 37.968008],\n\t\t\t\t\t\t[-81.456632, 37.987307],\n\t\t\t\t\t\t[-81.515836, 38.112360],\n\t\t\t\t\t\t[-81.643685, 38.220401],\n\t\t\t\t\t\t[-81.833470, 38.209570],\n\t\t\t\t\t\t[-81.818234, 38.316751],\n\t\t\t\t\t\t[-81.915197, 38.325597],\n\t\t\t\t\t\t[-81.900222, 38.398572],\n\t\t\t\t\t\t[-81.725801, 38.466620],\n\t\t\t\t\t\t[-81.750547, 38.591014],\n\t\t\t\t\t\t[-81.696348, 38.626427],\n\t\t\t\t\t\t[-81.632836, 38.554370],\n\t\t\t\t\t\t[-81.522166, 38.612746]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54049\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"049\",\n\t\t\t\t\"NAME\": \"Marion\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 308.735000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.494085, 39.469599],\n\t\t\t\t\t\t[-80.498163, 39.563327],\n\t\t\t\t\t\t[-80.395810, 39.637347],\n\t\t\t\t\t\t[-80.153532, 39.610426],\n\t\t\t\t\t\t[-79.938878, 39.452465],\n\t\t\t\t\t\t[-80.086785, 39.386463],\n\t\t\t\t\t\t[-80.197286, 39.393186],\n\t\t\t\t\t\t[-80.293693, 39.434312],\n\t\t\t\t\t\t[-80.494085, 39.469599]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54061\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"061\",\n\t\t\t\t\"NAME\": \"Monongalia\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 360.062000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.395810, 39.637347],\n\t\t\t\t\t\t[-80.421388, 39.721189],\n\t\t\t\t\t\t[-80.309457, 39.721264],\n\t\t\t\t\t\t[-80.308651, 39.721283],\n\t\t\t\t\t\t[-79.916266, 39.720792],\n\t\t\t\t\t\t[-79.853131, 39.720713],\n\t\t\t\t\t\t[-79.852904, 39.720713],\n\t\t\t\t\t\t[-79.763774, 39.720776],\n\t\t\t\t\t\t[-79.789277, 39.623781],\n\t\t\t\t\t\t[-79.899744, 39.481940],\n\t\t\t\t\t\t[-79.894688, 39.435588],\n\t\t\t\t\t\t[-79.938878, 39.452465],\n\t\t\t\t\t\t[-80.153532, 39.610426],\n\t\t\t\t\t\t[-80.395810, 39.637347]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54079\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"079\",\n\t\t\t\t\"NAME\": \"Putnam\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 345.669000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.696348, 38.626427],\n\t\t\t\t\t\t[-81.750547, 38.591014],\n\t\t\t\t\t\t[-81.725801, 38.466620],\n\t\t\t\t\t\t[-81.900222, 38.398572],\n\t\t\t\t\t\t[-81.915197, 38.325597],\n\t\t\t\t\t\t[-81.991774, 38.269085],\n\t\t\t\t\t\t[-82.048589, 38.290138],\n\t\t\t\t\t\t[-82.047128, 38.374432],\n\t\t\t\t\t\t[-82.055127, 38.474547],\n\t\t\t\t\t\t[-82.064562, 38.607985],\n\t\t\t\t\t\t[-81.955791, 38.657355],\n\t\t\t\t\t\t[-81.772843, 38.680843],\n\t\t\t\t\t\t[-81.747683, 38.684134],\n\t\t\t\t\t\t[-81.696348, 38.626427]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54089\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"089\",\n\t\t\t\t\"NAME\": \"Summers\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 360.460000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.945090, 37.819121],\n\t\t\t\t\t\t[-80.806316, 37.868915],\n\t\t\t\t\t\t[-80.663348, 37.731696],\n\t\t\t\t\t\t[-80.660446, 37.714563],\n\t\t\t\t\t\t[-80.858473, 37.428301],\n\t\t\t\t\t\t[-80.859556, 37.429568],\n\t\t\t\t\t\t[-80.859558, 37.429555],\n\t\t\t\t\t\t[-81.094630, 37.588658],\n\t\t\t\t\t\t[-80.947017, 37.715449],\n\t\t\t\t\t\t[-80.882316, 37.680766],\n\t\t\t\t\t\t[-80.945090, 37.819121]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54101\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"101\",\n\t\t\t\t\"NAME\": \"Webster\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 553.468000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.436514, 38.267334],\n\t\t\t\t\t\t[-80.609378, 38.358606],\n\t\t\t\t\t\t[-80.678291, 38.503492],\n\t\t\t\t\t\t[-80.650786, 38.526590],\n\t\t\t\t\t\t[-80.508655, 38.645553],\n\t\t\t\t\t\t[-80.457332, 38.739169],\n\t\t\t\t\t\t[-80.444673, 38.726729],\n\t\t\t\t\t\t[-80.426641, 38.731004],\n\t\t\t\t\t\t[-80.404748, 38.723439],\n\t\t\t\t\t\t[-80.393063, 38.727571],\n\t\t\t\t\t\t[-80.280059, 38.694867],\n\t\t\t\t\t\t[-80.183931, 38.525386],\n\t\t\t\t\t\t[-80.245518, 38.388457],\n\t\t\t\t\t\t[-80.352171, 38.345337],\n\t\t\t\t\t\t[-80.360048, 38.225845],\n\t\t\t\t\t\t[-80.436514, 38.267334]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55003\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"003\",\n\t\t\t\t\"NAME\": \"Ashland\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1045.035000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-90.456677, 47.016737],\n\t\t\t\t\t\t\t[-90.455300, 47.023750],\n\t\t\t\t\t\t\t[-90.455251, 47.024000],\n\t\t\t\t\t\t\t[-90.456008, 47.032085],\n\t\t\t\t\t\t\t[-90.456380, 47.036062],\n\t\t\t\t\t\t\t[-90.457076, 47.043506],\n\t\t\t\t\t\t\t[-90.457128, 47.044058],\n\t\t\t\t\t\t\t[-90.455502, 47.051331],\n\t\t\t\t\t\t\t[-90.455113, 47.053071],\n\t\t\t\t\t\t\t[-90.455024, 47.053470],\n\t\t\t\t\t\t\t[-90.449572, 47.064965],\n\t\t\t\t\t\t\t[-90.449083, 47.065995],\n\t\t\t\t\t\t\t[-90.449075, 47.066013],\n\t\t\t\t\t\t\t[-90.449024, 47.066045],\n\t\t\t\t\t\t\t[-90.448439, 47.066415],\n\t\t\t\t\t\t\t[-90.441968, 47.070511],\n\t\t\t\t\t\t\t[-90.438734, 47.072557],\n\t\t\t\t\t\t\t[-90.437271, 47.073483],\n\t\t\t\t\t\t\t[-90.435387, 47.073868],\n\t\t\t\t\t\t\t[-90.434762, 47.073996],\n\t\t\t\t\t\t\t[-90.434543, 47.074040],\n\t\t\t\t\t\t\t[-90.428370, 47.075302],\n\t\t\t\t\t\t\t[-90.427087, 47.075564],\n\t\t\t\t\t\t\t[-90.425277, 47.075934],\n\t\t\t\t\t\t\t[-90.417272, 47.077570],\n\t\t\t\t\t\t\t[-90.400234, 47.077263],\n\t\t\t\t\t\t\t[-90.398913, 47.077239],\n\t\t\t\t\t\t\t[-90.395367, 47.077175],\n\t\t\t\t\t\t\t[-90.395170, 47.077017],\n\t\t\t\t\t\t\t[-90.394950, 47.076841],\n\t\t\t\t\t\t\t[-90.393848, 47.075956],\n\t\t\t\t\t\t\t[-90.393830, 47.075941],\n\t\t\t\t\t\t\t[-90.393723, 47.074859],\n\t\t\t\t\t\t\t[-90.393115, 47.068687],\n\t\t\t\t\t\t\t[-90.393111, 47.068644],\n\t\t\t\t\t\t\t[-90.393077, 47.068304],\n\t\t\t\t\t\t\t[-90.393035, 47.067877],\n\t\t\t\t\t\t\t[-90.393241, 47.066753],\n\t\t\t\t\t\t\t[-90.393277, 47.066557],\n\t\t\t\t\t\t\t[-90.393342, 47.066204],\n\t\t\t\t\t\t\t[-90.393351, 47.066153],\n\t\t\t\t\t\t\t[-90.393507, 47.065302],\n\t\t\t\t\t\t\t[-90.394212, 47.061452],\n\t\t\t\t\t\t\t[-90.394312, 47.060909],\n\t\t\t\t\t\t\t[-90.395988, 47.056972],\n\t\t\t\t\t\t\t[-90.396177, 47.056528],\n\t\t\t\t\t\t\t[-90.396275, 47.056299],\n\t\t\t\t\t\t\t[-90.400067, 47.047391],\n\t\t\t\t\t\t\t[-90.400219, 47.047034],\n\t\t\t\t\t\t\t[-90.400365, 47.046691],\n\t\t\t\t\t\t\t[-90.400409, 47.046588],\n\t\t\t\t\t\t\t[-90.400427, 47.046463],\n\t\t\t\t\t\t\t[-90.403306, 47.026693],\n\t\t\t\t\t\t\t[-90.403321, 47.026590],\n\t\t\t\t\t\t\t[-90.403499, 47.025366],\n\t\t\t\t\t\t\t[-90.403908, 47.024864],\n\t\t\t\t\t\t\t[-90.405033, 47.023482],\n\t\t\t\t\t\t\t[-90.409437, 47.018072],\n\t\t\t\t\t\t\t[-90.411972, 47.014958],\n\t\t\t\t\t\t\t[-90.412886, 47.013836],\n\t\t\t\t\t\t\t[-90.413133, 47.013533],\n\t\t\t\t\t\t\t[-90.413428, 47.013170],\n\t\t\t\t\t\t\t[-90.425351, 47.007526],\n\t\t\t\t\t\t\t[-90.427320, 47.006593],\n\t\t\t\t\t\t\t[-90.428273, 47.006142],\n\t\t\t\t\t\t\t[-90.428438, 47.006064],\n\t\t\t\t\t\t\t[-90.429397, 47.005610],\n\t\t\t\t\t\t\t[-90.429539, 47.005565],\n\t\t\t\t\t\t\t[-90.448857, 46.999452],\n\t\t\t\t\t\t\t[-90.453619, 46.997946],\n\t\t\t\t\t\t\t[-90.457445, 46.996735],\n\t\t\t\t\t\t\t[-90.464079, 46.994636],\n\t\t\t\t\t\t\t[-90.464087, 46.994681],\n\t\t\t\t\t\t\t[-90.465465, 47.002593],\n\t\t\t\t\t\t\t[-90.465321, 47.002777],\n\t\t\t\t\t\t\t[-90.457688, 47.012484],\n\t\t\t\t\t\t\t[-90.457453, 47.012783],\n\t\t\t\t\t\t\t[-90.457315, 47.013488],\n\t\t\t\t\t\t\t[-90.457272, 47.013707],\n\t\t\t\t\t\t\t[-90.456677, 47.016737]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-90.636718, 46.861323],\n\t\t\t\t\t\t\t[-90.636386, 46.861705],\n\t\t\t\t\t\t\t[-90.634048, 46.864396],\n\t\t\t\t\t\t\t[-90.622048, 46.872872],\n\t\t\t\t\t\t\t[-90.616452, 46.874466],\n\t\t\t\t\t\t\t[-90.602619, 46.872715],\n\t\t\t\t\t\t\t[-90.602552, 46.872706],\n\t\t\t\t\t\t\t[-90.601924, 46.872099],\n\t\t\t\t\t\t\t[-90.593899, 46.864344],\n\t\t\t\t\t\t\t[-90.588190, 46.858827],\n\t\t\t\t\t\t\t[-90.587392, 46.858056],\n\t\t\t\t\t\t\t[-90.587306, 46.858015],\n\t\t\t\t\t\t\t[-90.570006, 46.849696],\n\t\t\t\t\t\t\t[-90.569868, 46.849398],\n\t\t\t\t\t\t\t[-90.568938, 46.847391],\n\t\t\t\t\t\t\t[-90.568874, 46.847252],\n\t\t\t\t\t\t\t[-90.569108, 46.847112],\n\t\t\t\t\t\t\t[-90.570652, 46.846192],\n\t\t\t\t\t\t\t[-90.578263, 46.841653],\n\t\t\t\t\t\t\t[-90.578390, 46.841616],\n\t\t\t\t\t\t\t[-90.582347, 46.840454],\n\t\t\t\t\t\t\t[-90.584489, 46.839825],\n\t\t\t\t\t\t\t[-90.585050, 46.839789],\n\t\t\t\t\t\t\t[-90.589921, 46.839476],\n\t\t\t\t\t\t\t[-90.601288, 46.838747],\n\t\t\t\t\t\t\t[-90.603290, 46.838618],\n\t\t\t\t\t\t\t[-90.609501, 46.838219],\n\t\t\t\t\t\t\t[-90.610306, 46.838168],\n\t\t\t\t\t\t\t[-90.613569, 46.837958],\n\t\t\t\t\t\t\t[-90.613822, 46.837942],\n\t\t\t\t\t\t\t[-90.614240, 46.837815],\n\t\t\t\t\t\t\t[-90.625480, 46.834395],\n\t\t\t\t\t\t\t[-90.658031, 46.824493],\n\t\t\t\t\t\t\t[-90.673838, 46.819684],\n\t\t\t\t\t\t\t[-90.676133, 46.818986],\n\t\t\t\t\t\t\t[-90.683356, 46.813275],\n\t\t\t\t\t\t\t[-90.685753, 46.805003],\n\t\t\t\t\t\t\t[-90.670438, 46.799633],\n\t\t\t\t\t\t\t[-90.670049, 46.799496],\n\t\t\t\t\t\t\t[-90.665389, 46.799394],\n\t\t\t\t\t\t\t[-90.655310, 46.799173],\n\t\t\t\t\t\t\t[-90.654861, 46.798907],\n\t\t\t\t\t\t\t[-90.654550, 46.798723],\n\t\t\t\t\t\t\t[-90.652916, 46.797755],\n\t\t\t\t\t\t\t[-90.652906, 46.797707],\n\t\t\t\t\t\t\t[-90.652343, 46.795088],\n\t\t\t\t\t\t\t[-90.652236, 46.794589],\n\t\t\t\t\t\t\t[-90.652219, 46.794511],\n\t\t\t\t\t\t\t[-90.652591, 46.794083],\n\t\t\t\t\t\t\t[-90.653417, 46.793131],\n\t\t\t\t\t\t\t[-90.654103, 46.792342],\n\t\t\t\t\t\t\t[-90.655339, 46.790919],\n\t\t\t\t\t\t\t[-90.655375, 46.790877],\n\t\t\t\t\t\t\t[-90.655483, 46.790753],\n\t\t\t\t\t\t\t[-90.655611, 46.790606],\n\t\t\t\t\t\t\t[-90.655682, 46.790524],\n\t\t\t\t\t\t\t[-90.656358, 46.789745],\n\t\t\t\t\t\t\t[-90.657179, 46.788800],\n\t\t\t\t\t\t\t[-90.658920, 46.788500],\n\t\t\t\t\t\t\t[-90.660541, 46.788221],\n\t\t\t\t\t\t\t[-90.661154, 46.788116],\n\t\t\t\t\t\t\t[-90.661517, 46.788054],\n\t\t\t\t\t\t\t[-90.663260, 46.787754],\n\t\t\t\t\t\t\t[-90.679469, 46.784964],\n\t\t\t\t\t\t\t[-90.687630, 46.783560],\n\t\t\t\t\t\t\t[-90.688602, 46.783393],\n\t\t\t\t\t\t\t[-90.689259, 46.783280],\n\t\t\t\t\t\t\t[-90.691473, 46.782899],\n\t\t\t\t\t\t\t[-90.692974, 46.782641],\n\t\t\t\t\t\t\t[-90.696465, 46.782040],\n\t\t\t\t\t\t\t[-90.696934, 46.782119],\n\t\t\t\t\t\t\t[-90.706594, 46.783752],\n\t\t\t\t\t\t\t[-90.716456, 46.785418],\n\t\t\t\t\t\t\t[-90.723938, 46.781737],\n\t\t\t\t\t\t\t[-90.734915, 46.772015],\n\t\t\t\t\t\t\t[-90.738840, 46.768539],\n\t\t\t\t\t\t\t[-90.739425, 46.768021],\n\t\t\t\t\t\t\t[-90.758019, 46.757969],\n\t\t\t\t\t\t\t[-90.762500, 46.755547],\n\t\t\t\t\t\t\t[-90.763647, 46.754927],\n\t\t\t\t\t\t\t[-90.765221, 46.754534],\n\t\t\t\t\t\t\t[-90.766611, 46.754187],\n\t\t\t\t\t\t\t[-90.771228, 46.753034],\n\t\t\t\t\t\t\t[-90.774436, 46.753086],\n\t\t\t\t\t\t\t[-90.787751, 46.753301],\n\t\t\t\t\t\t\t[-90.787810, 46.753302],\n\t\t\t\t\t\t\t[-90.788304, 46.753310],\n\t\t\t\t\t\t\t[-90.788515, 46.753313],\n\t\t\t\t\t\t\t[-90.788430, 46.753619],\n\t\t\t\t\t\t\t[-90.788285, 46.754145],\n\t\t\t\t\t\t\t[-90.787554, 46.756786],\n\t\t\t\t\t\t\t[-90.785415, 46.764520],\n\t\t\t\t\t\t\t[-90.783086, 46.772939],\n\t\t\t\t\t\t\t[-90.788926, 46.779191],\n\t\t\t\t\t\t\t[-90.789243, 46.779529],\n\t\t\t\t\t\t\t[-90.790965, 46.781373],\n\t\t\t\t\t\t\t[-90.790992, 46.781534],\n\t\t\t\t\t\t\t[-90.791085, 46.782097],\n\t\t\t\t\t\t\t[-90.791358, 46.783752],\n\t\t\t\t\t\t\t[-90.791392, 46.783955],\n\t\t\t\t\t\t\t[-90.791517, 46.784713],\n\t\t\t\t\t\t\t[-90.791562, 46.784983],\n\t\t\t\t\t\t\t[-90.790231, 46.786103],\n\t\t\t\t\t\t\t[-90.781682, 46.788835],\n\t\t\t\t\t\t\t[-90.759119, 46.796044],\n\t\t\t\t\t\t\t[-90.758586, 46.796214],\n\t\t\t\t\t\t\t[-90.745720, 46.798228],\n\t\t\t\t\t\t\t[-90.740603, 46.799029],\n\t\t\t\t\t\t\t[-90.736609, 46.799654],\n\t\t\t\t\t\t\t[-90.733231, 46.800183],\n\t\t\t\t\t\t\t[-90.733001, 46.800219],\n\t\t\t\t\t\t\t[-90.732823, 46.800385],\n\t\t\t\t\t\t\t[-90.729581, 46.803395],\n\t\t\t\t\t\t\t[-90.728546, 46.804356],\n\t\t\t\t\t\t\t[-90.728384, 46.805707],\n\t\t\t\t\t\t\t[-90.727952, 46.809319],\n\t\t\t\t\t\t\t[-90.727818, 46.810434],\n\t\t\t\t\t\t\t[-90.720932, 46.815897],\n\t\t\t\t\t\t\t[-90.712381, 46.820743],\n\t\t\t\t\t\t\t[-90.704619, 46.823508],\n\t\t\t\t\t\t\t[-90.694496, 46.827114],\n\t\t\t\t\t\t\t[-90.682954, 46.831225],\n\t\t\t\t\t\t\t[-90.675364, 46.833929],\n\t\t\t\t\t\t\t[-90.672908, 46.835202],\n\t\t\t\t\t\t\t[-90.656946, 46.843476],\n\t\t\t\t\t\t\t[-90.656109, 46.844108],\n\t\t\t\t\t\t\t[-90.655873, 46.844286],\n\t\t\t\t\t\t\t[-90.655691, 46.844424],\n\t\t\t\t\t\t\t[-90.654497, 46.845325],\n\t\t\t\t\t\t\t[-90.654472, 46.845344],\n\t\t\t\t\t\t\t[-90.651804, 46.847359],\n\t\t\t\t\t\t\t[-90.651231, 46.847792],\n\t\t\t\t\t\t\t[-90.650914, 46.848031],\n\t\t\t\t\t\t\t[-90.647486, 46.850620],\n\t\t\t\t\t\t\t[-90.646982, 46.851001],\n\t\t\t\t\t\t\t[-90.643218, 46.853844],\n\t\t\t\t\t\t\t[-90.637885, 46.859981],\n\t\t\t\t\t\t\t[-90.637091, 46.860895],\n\t\t\t\t\t\t\t[-90.636718, 46.861323]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-90.579568, 46.918230],\n\t\t\t\t\t\t\t[-90.592933, 46.915558],\n\t\t\t\t\t\t\t[-90.623547, 46.909438],\n\t\t\t\t\t\t\t[-90.624635, 46.909221],\n\t\t\t\t\t\t\t[-90.625685, 46.909011],\n\t\t\t\t\t\t\t[-90.637124, 46.906724],\n\t\t\t\t\t\t\t[-90.644120, 46.908373],\n\t\t\t\t\t\t\t[-90.644144, 46.908379],\n\t\t\t\t\t\t\t[-90.644218, 46.908455],\n\t\t\t\t\t\t\t[-90.654796, 46.919249],\n\t\t\t\t\t\t\t[-90.654805, 46.919259],\n\t\t\t\t\t\t\t[-90.654797, 46.919276],\n\t\t\t\t\t\t\t[-90.651834, 46.925267],\n\t\t\t\t\t\t\t[-90.651043, 46.926074],\n\t\t\t\t\t\t\t[-90.646351, 46.930860],\n\t\t\t\t\t\t\t[-90.645340, 46.931893],\n\t\t\t\t\t\t\t[-90.644790, 46.932453],\n\t\t\t\t\t\t\t[-90.643966, 46.933294],\n\t\t\t\t\t\t\t[-90.643328, 46.933944],\n\t\t\t\t\t\t\t[-90.634507, 46.942944],\n\t\t\t\t\t\t\t[-90.633915, 46.943113],\n\t\t\t\t\t\t\t[-90.601876, 46.952251],\n\t\t\t\t\t\t\t[-90.601153, 46.952457],\n\t\t\t\t\t\t\t[-90.572383, 46.958835],\n\t\t\t\t\t\t\t[-90.530597, 46.968099],\n\t\t\t\t\t\t\t[-90.528804, 46.968497],\n\t\t\t\t\t\t\t[-90.528182, 46.968396],\n\t\t\t\t\t\t\t[-90.524874, 46.967860],\n\t\t\t\t\t\t\t[-90.523298, 46.967604],\n\t\t\t\t\t\t\t[-90.521791, 46.966804],\n\t\t\t\t\t\t\t[-90.514782, 46.963084],\n\t\t\t\t\t\t\t[-90.514616, 46.962996],\n\t\t\t\t\t\t\t[-90.513328, 46.962312],\n\t\t\t\t\t\t\t[-90.512884, 46.962076],\n\t\t\t\t\t\t\t[-90.512211, 46.961719],\n\t\t\t\t\t\t\t[-90.511623, 46.961407],\n\t\t\t\t\t\t\t[-90.509880, 46.959108],\n\t\t\t\t\t\t\t[-90.509372, 46.958438],\n\t\t\t\t\t\t\t[-90.508157, 46.956836],\n\t\t\t\t\t\t\t[-90.511124, 46.952885],\n\t\t\t\t\t\t\t[-90.524018, 46.935714],\n\t\t\t\t\t\t\t[-90.524056, 46.935664],\n\t\t\t\t\t\t\t[-90.532652, 46.932489],\n\t\t\t\t\t\t\t[-90.535368, 46.931486],\n\t\t\t\t\t\t\t[-90.539947, 46.927850],\n\t\t\t\t\t\t\t[-90.543583, 46.923002],\n\t\t\t\t\t\t\t[-90.543852, 46.918289],\n\t\t\t\t\t\t\t[-90.545105, 46.917287],\n\t\t\t\t\t\t\t[-90.545872, 46.916673],\n\t\t\t\t\t\t\t[-90.549104, 46.915461],\n\t\t\t\t\t\t\t[-90.550371, 46.915829],\n\t\t\t\t\t\t\t[-90.553280, 46.916674],\n\t\t\t\t\t\t\t[-90.557319, 46.918693],\n\t\t\t\t\t\t\t[-90.569169, 46.920309],\n\t\t\t\t\t\t\t[-90.579568, 46.918230]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-90.927387, 46.585132],\n\t\t\t\t\t\t\t[-90.923560, 46.584267],\n\t\t\t\t\t\t\t[-90.923438, 46.584239],\n\t\t\t\t\t\t\t[-90.921483, 46.583797],\n\t\t\t\t\t\t\t[-90.920411, 46.583555],\n\t\t\t\t\t\t\t[-90.920132, 46.583492],\n\t\t\t\t\t\t\t[-90.919920, 46.583444],\n\t\t\t\t\t\t\t[-90.918414, 46.583103],\n\t\t\t\t\t\t\t[-90.918352, 46.583089],\n\t\t\t\t\t\t\t[-90.918266, 46.583070],\n\t\t\t\t\t\t\t[-90.916982, 46.583014],\n\t\t\t\t\t\t\t[-90.909815, 46.582703],\n\t\t\t\t\t\t\t[-90.906058, 46.583430],\n\t\t\t\t\t\t\t[-90.905572, 46.583524],\n\t\t\t\t\t\t\t[-90.901918, 46.585519],\n\t\t\t\t\t\t\t[-90.901725, 46.585624],\n\t\t\t\t\t\t\t[-90.891944, 46.590964],\n\t\t\t\t\t\t\t[-90.886197, 46.594102],\n\t\t\t\t\t\t\t[-90.885103, 46.594700],\n\t\t\t\t\t\t\t[-90.885007, 46.594752],\n\t\t\t\t\t\t\t[-90.873154, 46.601223],\n\t\t\t\t\t\t\t[-90.867120, 46.601911],\n\t\t\t\t\t\t\t[-90.864284, 46.602965],\n\t\t\t\t\t\t\t[-90.858725, 46.605031],\n\t\t\t\t\t\t\t[-90.856811, 46.605742],\n\t\t\t\t\t\t\t[-90.856244, 46.605953],\n\t\t\t\t\t\t\t[-90.856090, 46.606010],\n\t\t\t\t\t\t\t[-90.854575, 46.606573],\n\t\t\t\t\t\t\t[-90.853380, 46.607017],\n\t\t\t\t\t\t\t[-90.852153, 46.607473],\n\t\t\t\t\t\t\t[-90.851889, 46.607571],\n\t\t\t\t\t\t\t[-90.849684, 46.608391],\n\t\t\t\t\t\t\t[-90.843225, 46.610791],\n\t\t\t\t\t\t\t[-90.843189, 46.610805],\n\t\t\t\t\t\t\t[-90.842058, 46.611225],\n\t\t\t\t\t\t\t[-90.841708, 46.611355],\n\t\t\t\t\t\t\t[-90.837306, 46.612991],\n\t\t\t\t\t\t\t[-90.834259, 46.614123],\n\t\t\t\t\t\t\t[-90.831868, 46.615012],\n\t\t\t\t\t\t\t[-90.831226, 46.615250],\n\t\t\t\t\t\t\t[-90.830011, 46.615702],\n\t\t\t\t\t\t\t[-90.829070, 46.616051],\n\t\t\t\t\t\t\t[-90.829031, 46.616066],\n\t\t\t\t\t\t\t[-90.794775, 46.624941],\n\t\t\t\t\t\t\t[-90.792583, 46.625938],\n\t\t\t\t\t\t\t[-90.772455, 46.635097],\n\t\t\t\t\t\t\t[-90.770192, 46.636127],\n\t\t\t\t\t\t\t[-90.768381, 46.637362],\n\t\t\t\t\t\t\t[-90.755381, 46.646225],\n\t\t\t\t\t\t\t[-90.755287, 46.646289],\n\t\t\t\t\t\t\t[-90.755289, 46.646323],\n\t\t\t\t\t\t\t[-90.756312, 46.661820],\n\t\t\t\t\t\t\t[-90.756495, 46.664591],\n\t\t\t\t\t\t\t[-90.748090, 46.669817],\n\t\t\t\t\t\t\t[-90.748026, 46.669968],\n\t\t\t\t\t\t\t[-90.739565, 46.689943],\n\t\t\t\t\t\t\t[-90.739549, 46.689981],\n\t\t\t\t\t\t\t[-90.737260, 46.692267],\n\t\t\t\t\t\t\t[-90.724924, 46.684186],\n\t\t\t\t\t\t\t[-90.705375, 46.671381],\n\t\t\t\t\t\t\t[-90.694721, 46.664402],\n\t\t\t\t\t\t\t[-90.654497, 46.639990],\n\t\t\t\t\t\t\t[-90.650949, 46.637837],\n\t\t\t\t\t\t\t[-90.627885, 46.623839],\n\t\t\t\t\t\t\t[-90.607649, 46.612186],\n\t\t\t\t\t\t\t[-90.606720, 46.611651],\n\t\t\t\t\t\t\t[-90.606177, 46.611339],\n\t\t\t\t\t\t\t[-90.599602, 46.607552],\n\t\t\t\t\t\t\t[-90.599375, 46.607422],\n\t\t\t\t\t\t\t[-90.595850, 46.605392],\n\t\t\t\t\t\t\t[-90.595583, 46.605238],\n\t\t\t\t\t\t\t[-90.591894, 46.603114],\n\t\t\t\t\t\t\t[-90.590811, 46.602490],\n\t\t\t\t\t\t\t[-90.590712, 46.602433],\n\t\t\t\t\t\t\t[-90.586249, 46.599863],\n\t\t\t\t\t\t\t[-90.581408, 46.597541],\n\t\t\t\t\t\t\t[-90.580191, 46.596958],\n\t\t\t\t\t\t\t[-90.579422, 46.596589],\n\t\t\t\t\t\t\t[-90.563668, 46.589034],\n\t\t\t\t\t\t\t[-90.561966, 46.588218],\n\t\t\t\t\t\t\t[-90.561126, 46.587816],\n\t\t\t\t\t\t\t[-90.558141, 46.586384],\n\t\t\t\t\t\t\t[-90.556224, 46.585880],\n\t\t\t\t\t\t\t[-90.549596, 46.584138],\n\t\t\t\t\t\t\t[-90.552180, 46.240851],\n\t\t\t\t\t\t\t[-90.425978, 46.240450],\n\t\t\t\t\t\t\t[-90.426274, 46.154050],\n\t\t\t\t\t\t\t[-90.303072, 46.154849],\n\t\t\t\t\t\t\t[-90.302063, 45.981349],\n\t\t\t\t\t\t\t[-90.676968, 45.981554],\n\t\t\t\t\t\t\t[-90.925174, 45.981055],\n\t\t\t\t\t\t\t[-90.924583, 46.154616],\n\t\t\t\t\t\t\t[-90.927387, 46.585132]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55005\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"005\",\n\t\t\t\t\"NAME\": \"Barron\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 862.711000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.665647, 45.207991],\n\t\t\t\t\t\t[-92.156465, 45.209554],\n\t\t\t\t\t\t[-92.154888, 45.639742],\n\t\t\t\t\t\t[-92.031417, 45.639928],\n\t\t\t\t\t\t[-91.540294, 45.637605],\n\t\t\t\t\t\t[-91.541322, 45.292015],\n\t\t\t\t\t\t[-91.542234, 45.206538],\n\t\t\t\t\t\t[-91.665647, 45.207991]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55007\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"007\",\n\t\t\t\t\"NAME\": \"Bayfield\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1477.863000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.833091, 46.954686],\n\t\t\t\t\t\t[-90.805028, 46.937987],\n\t\t\t\t\t\t[-90.786595, 46.927019],\n\t\t\t\t\t\t[-90.786502, 46.926964],\n\t\t\t\t\t\t[-90.786010, 46.926672],\n\t\t\t\t\t\t[-90.785606, 46.926431],\n\t\t\t\t\t\t[-90.760095, 46.903296],\n\t\t\t\t\t\t[-90.759364, 46.902634],\n\t\t\t\t\t\t[-90.755630, 46.899247],\n\t\t\t\t\t\t[-90.754552, 46.898270],\n\t\t\t\t\t\t[-90.754388, 46.898037],\n\t\t\t\t\t\t[-90.752725, 46.895680],\n\t\t\t\t\t\t[-90.751329, 46.893702],\n\t\t\t\t\t\t[-90.751048, 46.893305],\n\t\t\t\t\t\t[-90.750858, 46.893035],\n\t\t\t\t\t\t[-90.750871, 46.892643],\n\t\t\t\t\t\t[-90.750889, 46.892136],\n\t\t\t\t\t\t[-90.750952, 46.890293],\n\t\t\t\t\t\t[-90.751031, 46.887963],\n\t\t\t\t\t\t[-90.751151, 46.887863],\n\t\t\t\t\t\t[-90.754692, 46.884915],\n\t\t\t\t\t\t[-90.754734, 46.884880],\n\t\t\t\t\t\t[-90.754753, 46.884875],\n\t\t\t\t\t\t[-90.761295, 46.883238],\n\t\t\t\t\t\t[-90.761567, 46.883170],\n\t\t\t\t\t\t[-90.770170, 46.876296],\n\t\t\t\t\t\t[-90.770240, 46.876184],\n\t\t\t\t\t\t[-90.780972, 46.858989],\n\t\t\t\t\t\t[-90.781011, 46.858911],\n\t\t\t\t\t\t[-90.788040, 46.844886],\n\t\t\t\t\t\t[-90.792034, 46.836916],\n\t\t\t\t\t\t[-90.793713, 46.833566],\n\t\t\t\t\t\t[-90.795693, 46.829614],\n\t\t\t\t\t\t[-90.795957, 46.829087],\n\t\t\t\t\t\t[-90.796437, 46.828129],\n\t\t\t\t\t\t[-90.797404, 46.826200],\n\t\t\t\t\t\t[-90.798545, 46.823922],\n\t\t\t\t\t\t[-90.798936, 46.823143],\n\t\t\t\t\t\t[-90.801041, 46.821626],\n\t\t\t\t\t\t[-90.801370, 46.821389],\n\t\t\t\t\t\t[-90.809270, 46.815695],\n\t\t\t\t\t\t[-90.821967, 46.806545],\n\t\t\t\t\t\t[-90.825696, 46.803858],\n\t\t\t\t\t\t[-90.826337, 46.802110],\n\t\t\t\t\t\t[-90.827350, 46.799345],\n\t\t\t\t\t\t[-90.828057, 46.797415],\n\t\t\t\t\t\t[-90.829048, 46.796410],\n\t\t\t\t\t\t[-90.829933, 46.795513],\n\t\t\t\t\t\t[-90.830094, 46.795349],\n\t\t\t\t\t\t[-90.831645, 46.793777],\n\t\t\t\t\t\t[-90.835008, 46.790366],\n\t\t\t\t\t\t[-90.835028, 46.790346],\n\t\t\t\t\t\t[-90.835319, 46.790051],\n\t\t\t\t\t\t[-90.835607, 46.789759],\n\t\t\t\t\t\t[-90.847214, 46.789274],\n\t\t\t\t\t\t[-90.854916, 46.788952],\n\t\t\t\t\t\t[-90.855472, 46.788929],\n\t\t\t\t\t\t[-90.855746, 46.788918],\n\t\t\t\t\t\t[-90.856317, 46.788894],\n\t\t\t\t\t\t[-90.856531, 46.788885],\n\t\t\t\t\t\t[-90.856677, 46.788712],\n\t\t\t\t\t\t[-90.859999, 46.784769],\n\t\t\t\t\t\t[-90.863542, 46.780565],\n\t\t\t\t\t\t[-90.859724, 46.774433],\n\t\t\t\t\t\t[-90.859445, 46.773985],\n\t\t\t\t\t\t[-90.860880, 46.771079],\n\t\t\t\t\t\t[-90.862333, 46.768135],\n\t\t\t\t\t\t[-90.866337, 46.764626],\n\t\t\t\t\t\t[-90.866586, 46.764408],\n\t\t\t\t\t\t[-90.866694, 46.764361],\n\t\t\t\t\t\t[-90.874598, 46.760902],\n\t\t\t\t\t\t[-90.875925, 46.760321],\n\t\t\t\t\t\t[-90.885021, 46.756341],\n\t\t\t\t\t\t[-90.883443, 46.747255],\n\t\t\t\t\t\t[-90.883396, 46.746987],\n\t\t\t\t\t\t[-90.882099, 46.744622],\n\t\t\t\t\t\t[-90.881622, 46.743753],\n\t\t\t\t\t\t[-90.878810, 46.738629],\n\t\t\t\t\t\t[-90.878343, 46.737777],\n\t\t\t\t\t\t[-90.876538, 46.734487],\n\t\t\t\t\t\t[-90.876426, 46.734284],\n\t\t\t\t\t\t[-90.876334, 46.734115],\n\t\t\t\t\t\t[-90.876039, 46.733577],\n\t\t\t\t\t\t[-90.875829, 46.733195],\n\t\t\t\t\t\t[-90.871612, 46.725509],\n\t\t\t\t\t\t[-90.870577, 46.723623],\n\t\t\t\t\t\t[-90.870396, 46.723293],\n\t\t\t\t\t\t[-90.869461, 46.722039],\n\t\t\t\t\t\t[-90.868607, 46.720896],\n\t\t\t\t\t\t[-90.868531, 46.720794],\n\t\t\t\t\t\t[-90.868273, 46.720448],\n\t\t\t\t\t\t[-90.868024, 46.720115],\n\t\t\t\t\t\t[-90.863864, 46.714539],\n\t\t\t\t\t\t[-90.861353, 46.711173],\n\t\t\t\t\t\t[-90.860897, 46.710562],\n\t\t\t\t\t\t[-90.859797, 46.709088],\n\t\t\t\t\t\t[-90.859601, 46.708826],\n\t\t\t\t\t\t[-90.853225, 46.700280],\n\t\t\t\t\t\t[-90.852916, 46.699866],\n\t\t\t\t\t\t[-90.852704, 46.699582],\n\t\t\t\t\t\t[-90.852731, 46.699437],\n\t\t\t\t\t\t[-90.853644, 46.694464],\n\t\t\t\t\t\t[-90.853807, 46.693579],\n\t\t\t\t\t\t[-90.853829, 46.693457],\n\t\t\t\t\t\t[-90.853927, 46.693369],\n\t\t\t\t\t\t[-90.854539, 46.692822],\n\t\t\t\t\t\t[-90.854692, 46.692686],\n\t\t\t\t\t\t[-90.865494, 46.683033],\n\t\t\t\t\t\t[-90.865745, 46.682808],\n\t\t\t\t\t\t[-90.867423, 46.681309],\n\t\t\t\t\t\t[-90.867823, 46.680952],\n\t\t\t\t\t\t[-90.867981, 46.680810],\n\t\t\t\t\t\t[-90.868376, 46.680457],\n\t\t\t\t\t\t[-90.868468, 46.680375],\n\t\t\t\t\t\t[-90.870079, 46.679449],\n\t\t\t\t\t\t[-90.870532, 46.679189],\n\t\t\t\t\t\t[-90.870739, 46.679070],\n\t\t\t\t\t\t[-90.870956, 46.678945],\n\t\t\t\t\t\t[-90.885869, 46.670374],\n\t\t\t\t\t\t[-90.885943, 46.670353],\n\t\t\t\t\t\t[-90.896529, 46.667315],\n\t\t\t\t\t\t[-90.905273, 46.664807],\n\t\t\t\t\t\t[-90.905567, 46.664722],\n\t\t\t\t\t\t[-90.909176, 46.663687],\n\t\t\t\t\t\t[-90.909688, 46.663540],\n\t\t\t\t\t\t[-90.911281, 46.663083],\n\t\t\t\t\t\t[-90.911353, 46.662996],\n\t\t\t\t\t\t[-90.914619, 46.659054],\n\t\t\t\t\t\t[-90.915152, 46.658410],\n\t\t\t\t\t\t[-90.915367, 46.657615],\n\t\t\t\t\t\t[-90.920813, 46.637432],\n\t\t\t\t\t\t[-90.920835, 46.637351],\n\t\t\t\t\t\t[-90.920850, 46.636492],\n\t\t\t\t\t\t[-90.920867, 46.635515],\n\t\t\t\t\t\t[-90.920936, 46.631606],\n\t\t\t\t\t\t[-90.920936, 46.631584],\n\t\t\t\t\t\t[-90.924487, 46.625417],\n\t\t\t\t\t\t[-90.924489, 46.625415],\n\t\t\t\t\t\t[-90.926745, 46.622698],\n\t\t\t\t\t\t[-90.931623, 46.616822],\n\t\t\t\t\t\t[-90.932120, 46.616223],\n\t\t\t\t\t\t[-90.933208, 46.614913],\n\t\t\t\t\t\t[-90.938310, 46.608768],\n\t\t\t\t\t\t[-90.938617, 46.608398],\n\t\t\t\t\t\t[-90.938680, 46.608322],\n\t\t\t\t\t\t[-90.949532, 46.603019],\n\t\t\t\t\t\t[-90.949621, 46.602975],\n\t\t\t\t\t\t[-90.950215, 46.602248],\n\t\t\t\t\t\t[-90.950544, 46.601845],\n\t\t\t\t\t\t[-90.951418, 46.600774],\n\t\t\t\t\t\t[-90.951543, 46.600621],\n\t\t\t\t\t\t[-90.951528, 46.599827],\n\t\t\t\t\t\t[-90.951476, 46.597033],\n\t\t\t\t\t\t[-90.947572, 46.593510],\n\t\t\t\t\t\t[-90.947287, 46.593253],\n\t\t\t\t\t\t[-90.947159, 46.593138],\n\t\t\t\t\t\t[-90.942101, 46.588573],\n\t\t\t\t\t\t[-90.941930, 46.588419],\n\t\t\t\t\t\t[-90.941374, 46.588293],\n\t\t\t\t\t\t[-90.941102, 46.588232],\n\t\t\t\t\t\t[-90.927387, 46.585132],\n\t\t\t\t\t\t[-90.924583, 46.154616],\n\t\t\t\t\t\t[-91.551282, 46.157045],\n\t\t\t\t\t\t[-91.551408, 46.755666],\n\t\t\t\t\t\t[-91.543057, 46.755153],\n\t\t\t\t\t\t[-91.537583, 46.754817],\n\t\t\t\t\t\t[-91.537115, 46.754788],\n\t\t\t\t\t\t[-91.535764, 46.754926],\n\t\t\t\t\t\t[-91.524766, 46.756052],\n\t\t\t\t\t\t[-91.517712, 46.756774],\n\t\t\t\t\t\t[-91.511077, 46.757453],\n\t\t\t\t\t\t[-91.510595, 46.757614],\n\t\t\t\t\t\t[-91.507819, 46.758538],\n\t\t\t\t\t\t[-91.507586, 46.758615],\n\t\t\t\t\t\t[-91.507160, 46.758757],\n\t\t\t\t\t\t[-91.500042, 46.761128],\n\t\t\t\t\t\t[-91.499696, 46.761243],\n\t\t\t\t\t\t[-91.493643, 46.765757],\n\t\t\t\t\t\t[-91.493037, 46.766210],\n\t\t\t\t\t\t[-91.492493, 46.766615],\n\t\t\t\t\t\t[-91.492429, 46.766663],\n\t\t\t\t\t\t[-91.491744, 46.766732],\n\t\t\t\t\t\t[-91.489125, 46.766997],\n\t\t\t\t\t\t[-91.488247, 46.767086],\n\t\t\t\t\t\t[-91.472097, 46.768717],\n\t\t\t\t\t\t[-91.470181, 46.768911],\n\t\t\t\t\t\t[-91.470124, 46.768923],\n\t\t\t\t\t\t[-91.467168, 46.769546],\n\t\t\t\t\t\t[-91.462774, 46.770471],\n\t\t\t\t\t\t[-91.449570, 46.773252],\n\t\t\t\t\t\t[-91.449327, 46.773303],\n\t\t\t\t\t\t[-91.436955, 46.777586],\n\t\t\t\t\t\t[-91.428526, 46.780504],\n\t\t\t\t\t\t[-91.426491, 46.781208],\n\t\t\t\t\t\t[-91.423713, 46.782170],\n\t\t\t\t\t\t[-91.411799, 46.789640],\n\t\t\t\t\t\t[-91.398256, 46.791213],\n\t\t\t\t\t\t[-91.397140, 46.791047],\n\t\t\t\t\t\t[-91.396959, 46.791020],\n\t\t\t\t\t\t[-91.396261, 46.790917],\n\t\t\t\t\t\t[-91.394764, 46.790694],\n\t\t\t\t\t\t[-91.391469, 46.790205],\n\t\t\t\t\t\t[-91.390774, 46.790316],\n\t\t\t\t\t\t[-91.386155, 46.791057],\n\t\t\t\t\t\t[-91.380577, 46.791951],\n\t\t\t\t\t\t[-91.369387, 46.793745],\n\t\t\t\t\t\t[-91.368819, 46.793836],\n\t\t\t\t\t\t[-91.367498, 46.794545],\n\t\t\t\t\t\t[-91.366888, 46.794872],\n\t\t\t\t\t\t[-91.365974, 46.795362],\n\t\t\t\t\t\t[-91.365536, 46.795597],\n\t\t\t\t\t\t[-91.365277, 46.795736],\n\t\t\t\t\t\t[-91.363644, 46.796612],\n\t\t\t\t\t\t[-91.360804, 46.798136],\n\t\t\t\t\t\t[-91.359434, 46.799612],\n\t\t\t\t\t\t[-91.355330, 46.804035],\n\t\t\t\t\t\t[-91.352191, 46.807417],\n\t\t\t\t\t\t[-91.338250, 46.817704],\n\t\t\t\t\t\t[-91.337570, 46.817969],\n\t\t\t\t\t\t[-91.330463, 46.820735],\n\t\t\t\t\t\t[-91.330433, 46.820746],\n\t\t\t\t\t\t[-91.328848, 46.821363],\n\t\t\t\t\t\t[-91.326045, 46.822454],\n\t\t\t\t\t\t[-91.322202, 46.823950],\n\t\t\t\t\t\t[-91.321010, 46.824414],\n\t\t\t\t\t\t[-91.315061, 46.826729],\n\t\t\t\t\t\t[-91.314815, 46.826825],\n\t\t\t\t\t\t[-91.307050, 46.829007],\n\t\t\t\t\t\t[-91.305487, 46.829446],\n\t\t\t\t\t\t[-91.304512, 46.829720],\n\t\t\t\t\t\t[-91.303594, 46.829978],\n\t\t\t\t\t\t[-91.302295, 46.830343],\n\t\t\t\t\t\t[-91.301879, 46.830384],\n\t\t\t\t\t\t[-91.289541, 46.831604],\n\t\t\t\t\t\t[-91.278558, 46.832689],\n\t\t\t\t\t\t[-91.266404, 46.833891],\n\t\t\t\t\t\t[-91.265866, 46.833944],\n\t\t\t\t\t\t[-91.265816, 46.833960],\n\t\t\t\t\t\t[-91.263725, 46.834632],\n\t\t\t\t\t\t[-91.263445, 46.834722],\n\t\t\t\t\t\t[-91.256873, 46.836833],\n\t\t\t\t\t\t[-91.256705, 46.836887],\n\t\t\t\t\t\t[-91.256563, 46.836989],\n\t\t\t\t\t\t[-91.250806, 46.841135],\n\t\t\t\t\t\t[-91.249471, 46.842531],\n\t\t\t\t\t\t[-91.237730, 46.854809],\n\t\t\t\t\t\t[-91.235283, 46.857368],\n\t\t\t\t\t\t[-91.232733, 46.860035],\n\t\t\t\t\t\t[-91.226796, 46.863610],\n\t\t\t\t\t\t[-91.214886, 46.866137],\n\t\t\t\t\t\t[-91.211647, 46.866824],\n\t\t\t\t\t\t[-91.211113, 46.866696],\n\t\t\t\t\t\t[-91.207524, 46.865835],\n\t\t\t\t\t\t[-91.204839, 46.859727],\n\t\t\t\t\t\t[-91.204439, 46.858816],\n\t\t\t\t\t\t[-91.200107, 46.854017],\n\t\t\t\t\t\t[-91.178292, 46.844259],\n\t\t\t\t\t\t[-91.168297, 46.844727],\n\t\t\t\t\t\t[-91.167601, 46.844760],\n\t\t\t\t\t\t[-91.156108, 46.855414],\n\t\t\t\t\t\t[-91.148026, 46.862906],\n\t\t\t\t\t\t[-91.147837, 46.863082],\n\t\t\t\t\t\t[-91.144266, 46.870301],\n\t\t\t\t\t\t[-91.143877, 46.870576],\n\t\t\t\t\t\t[-91.143850, 46.870595],\n\t\t\t\t\t\t[-91.140301, 46.873105],\n\t\t\t\t\t\t[-91.140165, 46.873201],\n\t\t\t\t\t\t[-91.139758, 46.873148],\n\t\t\t\t\t\t[-91.134668, 46.872490],\n\t\t\t\t\t\t[-91.133772, 46.871043],\n\t\t\t\t\t\t[-91.133337, 46.870341],\n\t\t\t\t\t\t[-91.133674, 46.869348],\n\t\t\t\t\t\t[-91.134184, 46.867843],\n\t\t\t\t\t\t[-91.134724, 46.866250],\n\t\t\t\t\t\t[-91.134882, 46.865784],\n\t\t\t\t\t\t[-91.136512, 46.860975],\n\t\t\t\t\t\t[-91.134977, 46.859023],\n\t\t\t\t\t\t[-91.134948, 46.858986],\n\t\t\t\t\t\t[-91.134732, 46.858935],\n\t\t\t\t\t\t[-91.123530, 46.856273],\n\t\t\t\t\t\t[-91.123109, 46.856173],\n\t\t\t\t\t\t[-91.118540, 46.856548],\n\t\t\t\t\t\t[-91.107323, 46.857469],\n\t\t\t\t\t\t[-91.105490, 46.857620],\n\t\t\t\t\t\t[-91.098780, 46.860560],\n\t\t\t\t\t\t[-91.098346, 46.860750],\n\t\t\t\t\t\t[-91.098125, 46.860847],\n\t\t\t\t\t\t[-91.097550, 46.861098],\n\t\t\t\t\t\t[-91.096565, 46.861530],\n\t\t\t\t\t\t[-91.096342, 46.862965],\n\t\t\t\t\t\t[-91.096028, 46.864987],\n\t\t\t\t\t\t[-91.095058, 46.871234],\n\t\t\t\t\t\t[-91.094828, 46.872714],\n\t\t\t\t\t\t[-91.094724, 46.873383],\n\t\t\t\t\t\t[-91.094620, 46.874050],\n\t\t\t\t\t\t[-91.094498, 46.874837],\n\t\t\t\t\t\t[-91.094096, 46.877423],\n\t\t\t\t\t\t[-91.093714, 46.879882],\n\t\t\t\t\t\t[-91.090916, 46.882670],\n\t\t\t\t\t\t[-91.088721, 46.882877],\n\t\t\t\t\t\t[-91.085077, 46.883220],\n\t\t\t\t\t\t[-91.080951, 46.883609],\n\t\t\t\t\t\t[-91.072584, 46.880126],\n\t\t\t\t\t\t[-91.069331, 46.878772],\n\t\t\t\t\t\t[-91.068220, 46.878309],\n\t\t\t\t\t\t[-91.066193, 46.878710],\n\t\t\t\t\t\t[-91.056258, 46.880678],\n\t\t\t\t\t\t[-91.052991, 46.881325],\n\t\t\t\t\t\t[-91.050153, 46.883037],\n\t\t\t\t\t\t[-91.049232, 46.883593],\n\t\t\t\t\t\t[-91.049220, 46.883600],\n\t\t\t\t\t\t[-91.042992, 46.887358],\n\t\t\t\t\t\t[-91.039890, 46.889230],\n\t\t\t\t\t\t[-91.036622, 46.893594],\n\t\t\t\t\t\t[-91.036193, 46.895523],\n\t\t\t\t\t\t[-91.035936, 46.896679],\n\t\t\t\t\t\t[-91.034518, 46.903053],\n\t\t\t\t\t\t[-91.033447, 46.903642],\n\t\t\t\t\t\t[-91.032508, 46.904158],\n\t\t\t\t\t\t[-91.030583, 46.905215],\n\t\t\t\t\t\t[-91.024009, 46.908827],\n\t\t\t\t\t\t[-91.023976, 46.908845],\n\t\t\t\t\t\t[-91.021538, 46.910185],\n\t\t\t\t\t\t[-91.019670, 46.911211],\n\t\t\t\t\t\t[-91.019141, 46.911502],\n\t\t\t\t\t\t[-91.018045, 46.911872],\n\t\t\t\t\t\t[-91.018024, 46.911879],\n\t\t\t\t\t\t[-91.016237, 46.912481],\n\t\t\t\t\t\t[-91.016184, 46.912499],\n\t\t\t\t\t\t[-91.010689, 46.914352],\n\t\t\t\t\t\t[-91.007997, 46.915259],\n\t\t\t\t\t\t[-91.005872, 46.915976],\n\t\t\t\t\t\t[-91.005199, 46.916203],\n\t\t\t\t\t\t[-91.004892, 46.916192],\n\t\t\t\t\t\t[-91.004752, 46.916187],\n\t\t\t\t\t\t[-90.998848, 46.915975],\n\t\t\t\t\t\t[-90.997943, 46.916367],\n\t\t\t\t\t\t[-90.996825, 46.916851],\n\t\t\t\t\t\t[-90.995149, 46.917577],\n\t\t\t\t\t\t[-90.987013, 46.923776],\n\t\t\t\t\t\t[-90.985815, 46.924689],\n\t\t\t\t\t\t[-90.984617, 46.925602],\n\t\t\t\t\t\t[-90.983192, 46.927662],\n\t\t\t\t\t\t[-90.980235, 46.931937],\n\t\t\t\t\t\t[-90.973755, 46.941304],\n\t\t\t\t\t\t[-90.968419, 46.943910],\n\t\t\t\t\t\t[-90.964865, 46.943780],\n\t\t\t\t\t\t[-90.964072, 46.943369],\n\t\t\t\t\t\t[-90.954612, 46.938468],\n\t\t\t\t\t\t[-90.954537, 46.938429],\n\t\t\t\t\t\t[-90.953865, 46.938283],\n\t\t\t\t\t\t[-90.953685, 46.938244],\n\t\t\t\t\t\t[-90.940560, 46.935394],\n\t\t\t\t\t\t[-90.922040, 46.931372],\n\t\t\t\t\t\t[-90.921811, 46.931322],\n\t\t\t\t\t\t[-90.921382, 46.931434],\n\t\t\t\t\t\t[-90.914044, 46.933346],\n\t\t\t\t\t\t[-90.913838, 46.933400],\n\t\t\t\t\t\t[-90.908654, 46.941221],\n\t\t\t\t\t\t[-90.908598, 46.941305],\n\t\t\t\t\t\t[-90.880358, 46.957661],\n\t\t\t\t\t\t[-90.879621, 46.958088],\n\t\t\t\t\t\t[-90.877324, 46.958910],\n\t\t\t\t\t\t[-90.877165, 46.958967],\n\t\t\t\t\t\t[-90.877092, 46.958993],\n\t\t\t\t\t\t[-90.876778, 46.959106],\n\t\t\t\t\t\t[-90.876544, 46.959189],\n\t\t\t\t\t\t[-90.876213, 46.959308],\n\t\t\t\t\t\t[-90.876211, 46.959309],\n\t\t\t\t\t\t[-90.876006, 46.959382],\n\t\t\t\t\t\t[-90.875995, 46.959386],\n\t\t\t\t\t\t[-90.875635, 46.959515],\n\t\t\t\t\t\t[-90.871126, 46.961129],\n\t\t\t\t\t\t[-90.855874, 46.962232],\n\t\t\t\t\t\t[-90.855165, 46.962045],\n\t\t\t\t\t\t[-90.838814, 46.957728],\n\t\t\t\t\t\t[-90.837973, 46.957506],\n\t\t\t\t\t\t[-90.837716, 46.957438],\n\t\t\t\t\t\t[-90.837617, 46.957379],\n\t\t\t\t\t\t[-90.833091, 46.954686]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55017\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"017\",\n\t\t\t\t\"NAME\": \"Chippewa\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1008.373000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.923362, 45.031143],\n\t\t\t\t\t\t[-90.922838, 44.999966],\n\t\t\t\t\t\t[-90.923393, 44.995520],\n\t\t\t\t\t\t[-90.922395, 44.954816],\n\t\t\t\t\t\t[-90.922669, 44.944459],\n\t\t\t\t\t\t[-90.922247, 44.857309],\n\t\t\t\t\t\t[-91.650455, 44.855951],\n\t\t\t\t\t\t[-91.665647, 45.207991],\n\t\t\t\t\t\t[-91.542234, 45.206538],\n\t\t\t\t\t\t[-91.541322, 45.292015],\n\t\t\t\t\t\t[-90.925223, 45.291965],\n\t\t\t\t\t\t[-90.923362, 45.031143]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55025\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"025\",\n\t\t\t\t\"NAME\": \"Dane\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1197.239000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.369127, 42.845046],\n\t\t\t\t\t\t[-89.369069, 42.856471],\n\t\t\t\t\t\t[-89.838167, 42.857397],\n\t\t\t\t\t\t[-89.838135, 43.206057],\n\t\t\t\t\t\t[-89.720295, 43.292928],\n\t\t\t\t\t\t[-89.009139, 43.284830],\n\t\t\t\t\t\t[-89.008920, 43.197721],\n\t\t\t\t\t\t[-89.013489, 42.847347],\n\t\t\t\t\t\t[-89.369127, 42.845046]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US49029\",\n\t\t\t\t\"STATE\": \"49\",\n\t\t\t\t\"COUNTY\": \"029\",\n\t\t\t\t\"NAME\": \"Morgan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 609.196000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-111.264820, 41.144253],\n\t\t\t\t\t\t[-111.508646, 41.062763],\n\t\t\t\t\t\t[-111.593025, 40.993044],\n\t\t\t\t\t\t[-111.479647, 40.858366],\n\t\t\t\t\t\t[-111.519624, 40.791758],\n\t\t\t\t\t\t[-111.641022, 40.799084],\n\t\t\t\t\t\t[-111.738575, 40.861055],\n\t\t\t\t\t\t[-111.815186, 40.957533],\n\t\t\t\t\t\t[-111.856305, 41.139118],\n\t\t\t\t\t\t[-111.858392, 41.197383],\n\t\t\t\t\t\t[-111.678190, 41.181028],\n\t\t\t\t\t\t[-111.595856, 41.239139],\n\t\t\t\t\t\t[-111.496630, 41.226877],\n\t\t\t\t\t\t[-111.420560, 41.361370],\n\t\t\t\t\t\t[-111.331662, 41.357364],\n\t\t\t\t\t\t[-111.221378, 41.212852],\n\t\t\t\t\t\t[-111.264820, 41.144253]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US49031\",\n\t\t\t\t\"STATE\": \"49\",\n\t\t\t\t\"COUNTY\": \"031\",\n\t\t\t\t\"NAME\": \"Piute\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 757.791000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-112.518504, 38.509852],\n\t\t\t\t\t\t[-111.766741, 38.501977],\n\t\t\t\t\t\t[-111.848871, 38.425001],\n\t\t\t\t\t\t[-111.842800, 38.151280],\n\t\t\t\t\t\t[-112.443821, 38.149942],\n\t\t\t\t\t\t[-112.356853, 38.224750],\n\t\t\t\t\t\t[-112.335369, 38.332955],\n\t\t\t\t\t\t[-112.518504, 38.509852]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US49035\",\n\t\t\t\t\"STATE\": \"49\",\n\t\t\t\t\"COUNTY\": \"035\",\n\t\t\t\t\"NAME\": \"Salt Lake\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 742.282000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-111.913848, 40.452454],\n\t\t\t\t\t\t[-111.919120, 40.443191],\n\t\t\t\t\t\t[-111.931555, 40.433548],\n\t\t\t\t\t\t[-111.978236, 40.417270],\n\t\t\t\t\t\t[-112.173208, 40.466923],\n\t\t\t\t\t\t[-112.175465, 40.604476],\n\t\t\t\t\t\t[-112.222654, 40.722140],\n\t\t\t\t\t\t[-112.227360, 40.725180],\n\t\t\t\t\t\t[-112.263510, 40.773450],\n\t\t\t\t\t\t[-112.006597, 40.921845],\n\t\t\t\t\t\t[-111.915865, 40.822045],\n\t\t\t\t\t\t[-111.738575, 40.861055],\n\t\t\t\t\t\t[-111.641022, 40.799084],\n\t\t\t\t\t\t[-111.553105, 40.609362],\n\t\t\t\t\t\t[-111.564507, 40.584767],\n\t\t\t\t\t\t[-111.593930, 40.577071],\n\t\t\t\t\t\t[-111.913848, 40.452454]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US49051\",\n\t\t\t\t\"STATE\": \"49\",\n\t\t\t\t\"COUNTY\": \"051\",\n\t\t\t\t\"NAME\": \"Wasatch\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1175.501000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-111.611734, 40.431466],\n\t\t\t\t\t\t[-111.593930, 40.577071],\n\t\t\t\t\t\t[-111.564507, 40.584767],\n\t\t\t\t\t\t[-111.553105, 40.609362],\n\t\t\t\t\t\t[-111.489582, 40.599157],\n\t\t\t\t\t\t[-111.393697, 40.690384],\n\t\t\t\t\t\t[-111.374868, 40.632703],\n\t\t\t\t\t\t[-111.151360, 40.548352],\n\t\t\t\t\t\t[-111.024396, 40.577504],\n\t\t\t\t\t\t[-110.901931, 40.678170],\n\t\t\t\t\t\t[-110.891872, 39.899146],\n\t\t\t\t\t\t[-111.082455, 39.900155],\n\t\t\t\t\t\t[-111.083061, 39.943198],\n\t\t\t\t\t\t[-111.205772, 40.047368],\n\t\t\t\t\t\t[-111.246207, 40.047466],\n\t\t\t\t\t\t[-111.225507, 40.167324],\n\t\t\t\t\t\t[-111.278846, 40.258671],\n\t\t\t\t\t\t[-111.314830, 40.287566],\n\t\t\t\t\t\t[-111.426482, 40.286906],\n\t\t\t\t\t\t[-111.480337, 40.362169],\n\t\t\t\t\t\t[-111.555235, 40.362696],\n\t\t\t\t\t\t[-111.611734, 40.431466]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US50005\",\n\t\t\t\t\"STATE\": \"50\",\n\t\t\t\t\"COUNTY\": \"005\",\n\t\t\t\t\"NAME\": \"Caledonia\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 648.864000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-72.042087, 44.157633],\n\t\t\t\t\t\t[-72.170260, 44.192053],\n\t\t\t\t\t\t[-72.304980, 44.183149],\n\t\t\t\t\t\t[-72.368353, 44.204057],\n\t\t\t\t\t\t[-72.223689, 44.424573],\n\t\t\t\t\t\t[-72.434315, 44.506098],\n\t\t\t\t\t\t[-72.374786, 44.584125],\n\t\t\t\t\t\t[-72.262965, 44.542336],\n\t\t\t\t\t\t[-72.114503, 44.749624],\n\t\t\t\t\t\t[-72.012504, 44.698821],\n\t\t\t\t\t\t[-71.939936, 44.769032],\n\t\t\t\t\t\t[-71.837294, 44.716637],\n\t\t\t\t\t\t[-71.910282, 44.647038],\n\t\t\t\t\t\t[-71.842732, 44.611165],\n\t\t\t\t\t\t[-71.908657, 44.547080],\n\t\t\t\t\t\t[-71.856637, 44.496178],\n\t\t\t\t\t\t[-71.933288, 44.441174],\n\t\t\t\t\t\t[-71.849465, 44.359295],\n\t\t\t\t\t\t[-72.002314, 44.324871],\n\t\t\t\t\t\t[-72.012173, 44.321408],\n\t\t\t\t\t\t[-72.058880, 44.286240],\n\t\t\t\t\t\t[-72.065434, 44.277235],\n\t\t\t\t\t\t[-72.067774, 44.270976],\n\t\t\t\t\t\t[-72.064285, 44.187888],\n\t\t\t\t\t\t[-72.053021, 44.167903],\n\t\t\t\t\t\t[-72.042087, 44.157633]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US50019\",\n\t\t\t\t\"STATE\": \"50\",\n\t\t\t\t\"COUNTY\": \"019\",\n\t\t\t\t\"NAME\": \"Orleans\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 693.268000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-72.578161, 44.781578],\n\t\t\t\t\t\t[-72.532638, 44.833346],\n\t\t\t\t\t\t[-72.554253, 45.011794],\n\t\t\t\t\t\t[-72.342453, 45.005354],\n\t\t\t\t\t\t[-72.103058, 45.005598],\n\t\t\t\t\t\t[-71.897622, 45.009172],\n\t\t\t\t\t\t[-71.928510, 44.907298],\n\t\t\t\t\t\t[-71.874433, 44.876382],\n\t\t\t\t\t\t[-71.974318, 44.786519],\n\t\t\t\t\t\t[-71.939936, 44.769032],\n\t\t\t\t\t\t[-72.012504, 44.698821],\n\t\t\t\t\t\t[-72.114503, 44.749624],\n\t\t\t\t\t\t[-72.262965, 44.542336],\n\t\t\t\t\t\t[-72.374786, 44.584125],\n\t\t\t\t\t\t[-72.482302, 44.633928],\n\t\t\t\t\t\t[-72.417315, 44.722893],\n\t\t\t\t\t\t[-72.578161, 44.781578]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51007\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"007\",\n\t\t\t\t\"NAME\": \"Amelia\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 355.269000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.855148, 37.418363],\n\t\t\t\t\t\t[-77.851804, 37.354867],\n\t\t\t\t\t\t[-77.758620, 37.268717],\n\t\t\t\t\t\t[-77.650610, 37.265112],\n\t\t\t\t\t\t[-77.795926, 37.192592],\n\t\t\t\t\t\t[-77.856209, 37.209958],\n\t\t\t\t\t\t[-78.231234, 37.296220],\n\t\t\t\t\t\t[-78.235039, 37.368102],\n\t\t\t\t\t\t[-78.132048, 37.454686],\n\t\t\t\t\t\t[-78.014437, 37.492081],\n\t\t\t\t\t\t[-77.899761, 37.475422],\n\t\t\t\t\t\t[-77.855148, 37.418363]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51017\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"017\",\n\t\t\t\t\"NAME\": \"Bath\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 529.158000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.055278, 37.951702],\n\t\t\t\t\t\t[-80.002507, 37.992767],\n\t\t\t\t\t\t[-79.978427, 38.029082],\n\t\t\t\t\t\t[-79.959844, 38.063697],\n\t\t\t\t\t\t[-79.933911, 38.099168],\n\t\t\t\t\t\t[-79.931034, 38.101402],\n\t\t\t\t\t\t[-79.938394, 38.130563],\n\t\t\t\t\t\t[-79.933751, 38.135508],\n\t\t\t\t\t\t[-79.928747, 38.144436],\n\t\t\t\t\t\t[-79.928683, 38.144928],\n\t\t\t\t\t\t[-79.925512, 38.150237],\n\t\t\t\t\t\t[-79.925251, 38.150465],\n\t\t\t\t\t\t[-79.921026, 38.179954],\n\t\t\t\t\t\t[-79.921196, 38.180378],\n\t\t\t\t\t\t[-79.917061, 38.183741],\n\t\t\t\t\t\t[-79.916174, 38.184386],\n\t\t\t\t\t\t[-79.892345, 38.202397],\n\t\t\t\t\t\t[-79.891999, 38.203378],\n\t\t\t\t\t\t[-79.794568, 38.264856],\n\t\t\t\t\t\t[-79.706196, 38.221192],\n\t\t\t\t\t\t[-79.512158, 38.180419],\n\t\t\t\t\t\t[-79.436942, 38.163243],\n\t\t\t\t\t\t[-79.482405, 38.086105],\n\t\t\t\t\t\t[-79.650757, 37.871566],\n\t\t\t\t\t\t[-79.881433, 37.892026],\n\t\t\t\t\t\t[-79.935356, 37.954365],\n\t\t\t\t\t\t[-80.055278, 37.951702]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51029\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"029\",\n\t\t\t\t\"NAME\": \"Buckingham\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 579.657000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.491567, 37.796712],\n\t\t\t\t\t\t[-78.405596, 37.735263],\n\t\t\t\t\t\t[-78.239748, 37.690495],\n\t\t\t\t\t\t[-78.249021, 37.635546],\n\t\t\t\t\t\t[-78.465089, 37.339677],\n\t\t\t\t\t\t[-78.594436, 37.397974],\n\t\t\t\t\t\t[-78.825238, 37.552542],\n\t\t\t\t\t\t[-78.821240, 37.631842],\n\t\t\t\t\t\t[-78.739437, 37.631542],\n\t\t\t\t\t\t[-78.644036, 37.733143],\n\t\t\t\t\t\t[-78.510971, 37.757594],\n\t\t\t\t\t\t[-78.491567, 37.796712]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51043\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"043\",\n\t\t\t\t\"NAME\": \"Clarke\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 176.177000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.033183, 39.264624],\n\t\t\t\t\t\t[-78.032841, 39.264403],\n\t\t\t\t\t\t[-77.828157, 39.132329],\n\t\t\t\t\t\t[-77.961956, 39.013841],\n\t\t\t\t\t\t[-77.965138, 39.008927],\n\t\t\t\t\t\t[-77.990379, 38.996331],\n\t\t\t\t\t\t[-77.989780, 38.993834],\n\t\t\t\t\t\t[-78.004167, 38.979479],\n\t\t\t\t\t\t[-78.151981, 39.036277],\n\t\t\t\t\t\t[-78.033183, 39.264624]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51047\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"047\",\n\t\t\t\t\"NAME\": \"Culpeper\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 379.234000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.935454, 38.695853],\n\t\t\t\t\t\t[-77.877169, 38.584891],\n\t\t\t\t\t\t[-77.735536, 38.413116],\n\t\t\t\t\t\t[-77.634835, 38.409713],\n\t\t\t\t\t\t[-77.632438, 38.407370],\n\t\t\t\t\t\t[-77.634216, 38.398366],\n\t\t\t\t\t\t[-77.632710, 38.392627],\n\t\t\t\t\t\t[-77.621410, 38.388727],\n\t\t\t\t\t\t[-77.618727, 38.367835],\n\t\t\t\t\t\t[-77.703189, 38.360598],\n\t\t\t\t\t\t[-77.891822, 38.388953],\n\t\t\t\t\t\t[-78.094571, 38.311361],\n\t\t\t\t\t\t[-78.096413, 38.404632],\n\t\t\t\t\t\t[-78.231978, 38.532550],\n\t\t\t\t\t\t[-78.168792, 38.523809],\n\t\t\t\t\t\t[-77.935454, 38.695853]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51063\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"063\",\n\t\t\t\t\"NAME\": \"Floyd\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 380.420000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.235455, 36.872130],\n\t\t\t\t\t\t[-80.386909, 36.797676],\n\t\t\t\t\t\t[-80.464180, 36.708718],\n\t\t\t\t\t\t[-80.633987, 36.931780],\n\t\t\t\t\t\t[-80.543933, 36.984639],\n\t\t\t\t\t\t[-80.347447, 37.021842],\n\t\t\t\t\t\t[-80.178032, 37.113435],\n\t\t\t\t\t\t[-80.172264, 37.108156],\n\t\t\t\t\t\t[-80.128119, 37.122912],\n\t\t\t\t\t\t[-80.121479, 36.991428],\n\t\t\t\t\t\t[-80.235455, 36.872130]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51075\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"075\",\n\t\t\t\t\"NAME\": \"Goochland\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 281.415000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.159278, 37.748528],\n\t\t\t\t\t\t[-78.151822, 37.770443],\n\t\t\t\t\t\t[-78.063310, 37.905108],\n\t\t\t\t\t\t[-77.948552, 37.846338],\n\t\t\t\t\t\t[-77.888908, 37.760808],\n\t\t\t\t\t\t[-77.796920, 37.729069],\n\t\t\t\t\t\t[-77.630145, 37.706985],\n\t\t\t\t\t\t[-77.653987, 37.562631],\n\t\t\t\t\t\t[-77.814415, 37.606375],\n\t\t\t\t\t\t[-77.923063, 37.691369],\n\t\t\t\t\t\t[-77.957822, 37.624882],\n\t\t\t\t\t\t[-78.072256, 37.657357],\n\t\t\t\t\t\t[-78.159278, 37.748528]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51101\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"101\",\n\t\t\t\t\"NAME\": \"King William\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 273.941000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.345229, 37.789388],\n\t\t\t\t\t\t[-77.243162, 37.900241],\n\t\t\t\t\t\t[-77.181418, 37.891654],\n\t\t\t\t\t\t[-77.033273, 37.720809],\n\t\t\t\t\t\t[-76.915586, 37.693325],\n\t\t\t\t\t\t[-76.777729, 37.554446],\n\t\t\t\t\t\t[-76.792184, 37.517594],\n\t\t\t\t\t\t[-76.853577, 37.572627],\n\t\t\t\t\t\t[-76.981158, 37.567113],\n\t\t\t\t\t\t[-77.123675, 37.626881],\n\t\t\t\t\t\t[-77.292470, 37.714682],\n\t\t\t\t\t\t[-77.345229, 37.789388]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51111\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"111\",\n\t\t\t\t\"NAME\": \"Lunenburg\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 431.683000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.443319, 37.079400],\n\t\t\t\t\t\t[-78.239354, 37.120089],\n\t\t\t\t\t\t[-78.082652, 37.016406],\n\t\t\t\t\t\t[-78.003639, 37.022756],\n\t\t\t\t\t\t[-78.027411, 36.777858],\n\t\t\t\t\t\t[-78.241509, 36.807958],\n\t\t\t\t\t\t[-78.493028, 36.891220],\n\t\t\t\t\t\t[-78.443319, 37.079400]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51113\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"113\",\n\t\t\t\t\"NAME\": \"Madison\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 320.683000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.452918, 38.475508],\n\t\t\t\t\t\t[-78.338320, 38.627282],\n\t\t\t\t\t\t[-78.231978, 38.532550],\n\t\t\t\t\t\t[-78.096413, 38.404632],\n\t\t\t\t\t\t[-78.094571, 38.311361],\n\t\t\t\t\t\t[-78.220645, 38.230308],\n\t\t\t\t\t\t[-78.286968, 38.271533],\n\t\t\t\t\t\t[-78.430031, 38.367150],\n\t\t\t\t\t\t[-78.452918, 38.475508]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01023\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"023\",\n\t\t\t\t\"NAME\": \"Choctaw\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 913.500000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.438650, 32.172806],\n\t\t\t\t\t\t[-88.431707, 32.227662],\n\t\t\t\t\t\t[-88.421453, 32.308680],\n\t\t\t\t\t\t[-87.930661, 32.310574],\n\t\t\t\t\t\t[-88.019145, 32.285240],\n\t\t\t\t\t\t[-88.007077, 32.185313],\n\t\t\t\t\t\t[-88.070615, 32.061700],\n\t\t\t\t\t\t[-88.073490, 31.990182],\n\t\t\t\t\t\t[-88.121414, 31.950256],\n\t\t\t\t\t\t[-88.180384, 31.814546],\n\t\t\t\t\t\t[-88.088288, 31.699303],\n\t\t\t\t\t\t[-88.464428, 31.697952],\n\t\t\t\t\t\t[-88.471106, 31.850949],\n\t\t\t\t\t\t[-88.471214, 31.851385],\n\t\t\t\t\t\t[-88.469960, 31.893759],\n\t\t\t\t\t\t[-88.468879, 31.930262],\n\t\t\t\t\t\t[-88.468660, 31.933173],\n\t\t\t\t\t\t[-88.455039, 32.039719],\n\t\t\t\t\t\t[-88.454959, 32.040576],\n\t\t\t\t\t\t[-88.438710, 32.172078],\n\t\t\t\t\t\t[-88.438650, 32.172806]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01025\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"025\",\n\t\t\t\t\"NAME\": \"Clarke\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1238.465000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.944233, 31.989872],\n\t\t\t\t\t\t[-87.667769, 31.991355],\n\t\t\t\t\t\t[-87.667488, 31.958459],\n\t\t\t\t\t\t[-87.620112, 31.827123],\n\t\t\t\t\t\t[-87.500930, 31.829251],\n\t\t\t\t\t\t[-87.516131, 31.697824],\n\t\t\t\t\t\t[-87.566841, 31.697115],\n\t\t\t\t\t\t[-87.565413, 31.553573],\n\t\t\t\t\t\t[-87.603137, 31.409556],\n\t\t\t\t\t\t[-87.665572, 31.423166],\n\t\t\t\t\t\t[-87.784796, 31.324672],\n\t\t\t\t\t\t[-87.765152, 31.297346],\n\t\t\t\t\t\t[-87.913637, 31.187356],\n\t\t\t\t\t\t[-87.946588, 31.192930],\n\t\t\t\t\t\t[-87.959619, 31.316206],\n\t\t\t\t\t\t[-87.908068, 31.323041],\n\t\t\t\t\t\t[-87.906143, 31.491752],\n\t\t\t\t\t\t[-88.072234, 31.594500],\n\t\t\t\t\t\t[-88.078711, 31.669618],\n\t\t\t\t\t\t[-88.080629, 31.677850],\n\t\t\t\t\t\t[-88.086946, 31.686181],\n\t\t\t\t\t\t[-88.088288, 31.699303],\n\t\t\t\t\t\t[-88.180384, 31.814546],\n\t\t\t\t\t\t[-88.121414, 31.950256],\n\t\t\t\t\t\t[-88.073490, 31.990182],\n\t\t\t\t\t\t[-87.944233, 31.989872]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01029\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"029\",\n\t\t\t\t\"NAME\": \"Cleburne\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 560.100000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.337974, 33.653111],\n\t\t\t\t\t\t[-85.322497, 33.574167],\n\t\t\t\t\t\t[-85.314994, 33.535898],\n\t\t\t\t\t\t[-85.314091, 33.530218],\n\t\t\t\t\t\t[-85.313999, 33.529807],\n\t\t\t\t\t\t[-85.304439, 33.482884],\n\t\t\t\t\t\t[-85.643482, 33.495885],\n\t\t\t\t\t\t[-85.765427, 33.498593],\n\t\t\t\t\t\t[-85.782735, 33.469349],\n\t\t\t\t\t\t[-85.887782, 33.469427],\n\t\t\t\t\t\t[-85.851890, 33.498742],\n\t\t\t\t\t\t[-85.796852, 33.541849],\n\t\t\t\t\t\t[-85.796054, 33.556220],\n\t\t\t\t\t\t[-85.638579, 33.648413],\n\t\t\t\t\t\t[-85.638049, 33.773339],\n\t\t\t\t\t\t[-85.532482, 33.889152],\n\t\t\t\t\t\t[-85.530094, 33.941423],\n\t\t\t\t\t\t[-85.398837, 33.964129],\n\t\t\t\t\t\t[-85.386693, 33.901697],\n\t\t\t\t\t\t[-85.361844, 33.773951],\n\t\t\t\t\t\t[-85.360491, 33.767958],\n\t\t\t\t\t\t[-85.337974, 33.653111]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01031\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"031\",\n\t\t\t\t\"NAME\": \"Coffee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 678.972000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.791402, 31.196349],\n\t\t\t\t\t\t[-86.193476, 31.192213],\n\t\t\t\t\t\t[-86.196365, 31.425431],\n\t\t\t\t\t\t[-86.193951, 31.440072],\n\t\t\t\t\t\t[-86.194784, 31.529949],\n\t\t\t\t\t\t[-86.143950, 31.537675],\n\t\t\t\t\t\t[-86.145895, 31.617741],\n\t\t\t\t\t\t[-85.789142, 31.617964],\n\t\t\t\t\t\t[-85.791402, 31.196349]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01037\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"037\",\n\t\t\t\t\"NAME\": \"Coosa\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 650.926000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.336776, 32.767469],\n\t\t\t\t\t\t[-86.336768, 32.753783],\n\t\t\t\t\t\t[-86.374974, 32.753580],\n\t\t\t\t\t\t[-86.457015, 32.813899],\n\t\t\t\t\t\t[-86.515959, 32.929361],\n\t\t\t\t\t\t[-86.517344, 33.020566],\n\t\t\t\t\t\t[-86.491029, 33.102944],\n\t\t\t\t\t\t[-86.226271, 33.104115],\n\t\t\t\t\t\t[-86.174370, 33.104394],\n\t\t\t\t\t\t[-86.009170, 33.090260],\n\t\t\t\t\t\t[-86.007187, 32.754984],\n\t\t\t\t\t\t[-86.319480, 32.753698],\n\t\t\t\t\t\t[-86.336776, 32.767469]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01047\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"047\",\n\t\t\t\t\"NAME\": \"Dallas\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 978.695000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.906956, 32.047970],\n\t\t\t\t\t\t[-87.178071, 32.047514],\n\t\t\t\t\t\t[-87.262853, 32.147007],\n\t\t\t\t\t\t[-87.472206, 32.264919],\n\t\t\t\t\t\t[-87.473080, 32.307614],\n\t\t\t\t\t\t[-87.421744, 32.308101],\n\t\t\t\t\t\t[-87.423153, 32.482965],\n\t\t\t\t\t\t[-87.116515, 32.487659],\n\t\t\t\t\t\t[-87.017762, 32.729532],\n\t\t\t\t\t\t[-87.017660, 32.663269],\n\t\t\t\t\t\t[-86.917595, 32.664169],\n\t\t\t\t\t\t[-86.890581, 32.502974],\n\t\t\t\t\t\t[-86.814912, 32.340803],\n\t\t\t\t\t\t[-86.864367, 32.274918],\n\t\t\t\t\t\t[-86.810313, 32.224747],\n\t\t\t\t\t\t[-86.908302, 32.225028],\n\t\t\t\t\t\t[-86.906956, 32.047970]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01055\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"055\",\n\t\t\t\t\"NAME\": \"Etowah\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 534.991000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.843617, 34.200006],\n\t\t\t\t\t\t[-85.738975, 33.968460],\n\t\t\t\t\t\t[-85.969170, 33.914598],\n\t\t\t\t\t\t[-85.969170, 33.892898],\n\t\t\t\t\t\t[-85.986470, 33.893698],\n\t\t\t\t\t\t[-85.986370, 33.879198],\n\t\t\t\t\t\t[-85.994970, 33.879598],\n\t\t\t\t\t\t[-85.995169, 33.864897],\n\t\t\t\t\t\t[-86.021471, 33.866098],\n\t\t\t\t\t\t[-86.021271, 33.851498],\n\t\t\t\t\t\t[-86.048772, 33.852698],\n\t\t\t\t\t\t[-86.049072, 33.841598],\n\t\t\t\t\t\t[-86.065272, 33.842198],\n\t\t\t\t\t\t[-86.199164, 33.988918],\n\t\t\t\t\t\t[-86.325622, 33.940147],\n\t\t\t\t\t\t[-86.370152, 33.939770],\n\t\t\t\t\t\t[-86.332723, 33.986109],\n\t\t\t\t\t\t[-86.303516, 34.099073],\n\t\t\t\t\t\t[-86.206107, 34.172650],\n\t\t\t\t\t\t[-86.106086, 34.200756],\n\t\t\t\t\t\t[-85.843617, 34.200006]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01059\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"059\",\n\t\t\t\t\"NAME\": \"Franklin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 633.821000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.155305, 34.463087],\n\t\t\t\t\t\t[-88.139988, 34.581703],\n\t\t\t\t\t\t[-87.529667, 34.567081],\n\t\t\t\t\t\t[-87.529722, 34.304598],\n\t\t\t\t\t\t[-87.634725, 34.306997],\n\t\t\t\t\t\t[-88.173632, 34.321054],\n\t\t\t\t\t\t[-88.165910, 34.380926],\n\t\t\t\t\t\t[-88.165634, 34.383102],\n\t\t\t\t\t\t[-88.155305, 34.463087]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01061\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"061\",\n\t\t\t\t\"NAME\": \"Geneva\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 574.408000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.497992, 30.996931],\n\t\t\t\t\t\t[-85.498272, 30.996928],\n\t\t\t\t\t\t[-86.035039, 30.993320],\n\t\t\t\t\t\t[-86.052462, 30.993247],\n\t\t\t\t\t\t[-86.056213, 30.993133],\n\t\t\t\t\t\t[-86.162886, 30.993682],\n\t\t\t\t\t\t[-86.168979, 30.993706],\n\t\t\t\t\t\t[-86.175204, 30.993798],\n\t\t\t\t\t\t[-86.180232, 30.994005],\n\t\t\t\t\t\t[-86.187246, 30.993992],\n\t\t\t\t\t\t[-86.193476, 31.192213],\n\t\t\t\t\t\t[-85.791402, 31.196349],\n\t\t\t\t\t\t[-85.710866, 31.195179],\n\t\t\t\t\t\t[-85.485760, 31.199886],\n\t\t\t\t\t\t[-85.488298, 30.997041],\n\t\t\t\t\t\t[-85.497992, 30.996931]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01067\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"067\",\n\t\t\t\t\"NAME\": \"Henry\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 561.750000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.046859, 31.517451],\n\t\t\t\t\t\t[-85.068065, 31.427586],\n\t\t\t\t\t\t[-85.087651, 31.308677],\n\t\t\t\t\t\t[-85.179131, 31.307675],\n\t\t\t\t\t\t[-85.417434, 31.314973],\n\t\t\t\t\t\t[-85.416437, 31.619466],\n\t\t\t\t\t\t[-85.416038, 31.706664],\n\t\t\t\t\t\t[-85.216076, 31.702409],\n\t\t\t\t\t\t[-85.124501, 31.763081],\n\t\t\t\t\t\t[-85.118930, 31.732664],\n\t\t\t\t\t\t[-85.122230, 31.722764],\n\t\t\t\t\t\t[-85.126530, 31.716764],\n\t\t\t\t\t\t[-85.125530, 31.694965],\n\t\t\t\t\t\t[-85.087029, 31.640966],\n\t\t\t\t\t\t[-85.065236, 31.624351],\n\t\t\t\t\t\t[-85.059534, 31.621717],\n\t\t\t\t\t\t[-85.057473, 31.618624],\n\t\t\t\t\t\t[-85.041305, 31.540987],\n\t\t\t\t\t\t[-85.046859, 31.517451]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01071\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"071\",\n\t\t\t\t\"NAME\": \"Jackson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1077.868000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.863935, 34.988379],\n\t\t\t\t\t\t[-85.828724, 34.988165],\n\t\t\t\t\t\t[-85.824411, 34.988142],\n\t\t\t\t\t\t[-85.605165, 34.984678],\n\t\t\t\t\t\t[-85.595191, 34.924331],\n\t\t\t\t\t\t[-85.595163, 34.924171],\n\t\t\t\t\t\t[-85.583145, 34.860371],\n\t\t\t\t\t\t[-85.785471, 34.624584],\n\t\t\t\t\t\t[-86.003840, 34.480031],\n\t\t\t\t\t\t[-86.057712, 34.475994],\n\t\t\t\t\t\t[-86.139846, 34.533296],\n\t\t\t\t\t\t[-86.148464, 34.599069],\n\t\t\t\t\t\t[-86.167530, 34.599264],\n\t\t\t\t\t\t[-86.172856, 34.599318],\n\t\t\t\t\t\t[-86.174103, 34.599336],\n\t\t\t\t\t\t[-86.175324, 34.599354],\n\t\t\t\t\t\t[-86.178649, 34.599392],\n\t\t\t\t\t\t[-86.179053, 34.599396],\n\t\t\t\t\t\t[-86.182976, 34.599438],\n\t\t\t\t\t\t[-86.182990, 34.599438],\n\t\t\t\t\t\t[-86.199778, 34.599620],\n\t\t\t\t\t\t[-86.218086, 34.599817],\n\t\t\t\t\t\t[-86.218962, 34.599827],\n\t\t\t\t\t\t[-86.218975, 34.599827],\n\t\t\t\t\t\t[-86.221192, 34.599851],\n\t\t\t\t\t\t[-86.224237, 34.599884],\n\t\t\t\t\t\t[-86.233777, 34.599987],\n\t\t\t\t\t\t[-86.235077, 34.600001],\n\t\t\t\t\t\t[-86.237028, 34.600023],\n\t\t\t\t\t\t[-86.245611, 34.600116],\n\t\t\t\t\t\t[-86.245680, 34.600116],\n\t\t\t\t\t\t[-86.249983, 34.600100],\n\t\t\t\t\t\t[-86.252434, 34.600125],\n\t\t\t\t\t\t[-86.254082, 34.600143],\n\t\t\t\t\t\t[-86.257783, 34.600122],\n\t\t\t\t\t\t[-86.266148, 34.600075],\n\t\t\t\t\t\t[-86.269123, 34.600059],\n\t\t\t\t\t\t[-86.275775, 34.600023],\n\t\t\t\t\t\t[-86.278140, 34.600009],\n\t\t\t\t\t\t[-86.279503, 34.600004],\n\t\t\t\t\t\t[-86.284617, 34.599974],\n\t\t\t\t\t\t[-86.300533, 34.599888],\n\t\t\t\t\t\t[-86.305591, 34.599860],\n\t\t\t\t\t\t[-86.311677, 34.599827],\n\t\t\t\t\t\t[-86.316026, 34.599802],\n\t\t\t\t\t\t[-86.316036, 34.599802],\n\t\t\t\t\t\t[-86.317146, 34.599796],\n\t\t\t\t\t\t[-86.318251, 34.599790],\n\t\t\t\t\t\t[-86.318265, 34.599790],\n\t\t\t\t\t\t[-86.326958, 34.599744],\n\t\t\t\t\t\t[-86.326906, 34.599573],\n\t\t\t\t\t\t[-86.326853, 34.599403],\n\t\t\t\t\t\t[-86.359034, 34.632610],\n\t\t\t\t\t\t[-86.311274, 34.991098],\n\t\t\t\t\t\t[-85.863935, 34.988379]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01081\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"081\",\n\t\t\t\t\"NAME\": \"Lee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 607.536000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.080288, 32.603577],\n\t\t\t\t\t\t[-85.079935, 32.602889],\n\t\t\t\t\t\t[-85.069583, 32.583930],\n\t\t\t\t\t\t[-85.044606, 32.559499],\n\t\t\t\t\t\t[-85.022509, 32.542923],\n\t\t\t\t\t\t[-85.007100, 32.523868],\n\t\t\t\t\t\t[-85.001324, 32.512973],\n\t\t\t\t\t\t[-85.001052, 32.510477],\n\t\t\t\t\t\t[-85.001030, 32.510157],\n\t\t\t\t\t\t[-85.059294, 32.472909],\n\t\t\t\t\t\t[-85.333843, 32.468639],\n\t\t\t\t\t\t[-85.330143, 32.410842],\n\t\t\t\t\t\t[-85.434045, 32.409840],\n\t\t\t\t\t\t[-85.438575, 32.497090],\n\t\t\t\t\t\t[-85.489348, 32.496937],\n\t\t\t\t\t\t[-85.695854, 32.595933],\n\t\t\t\t\t\t[-85.696755, 32.697429],\n\t\t\t\t\t\t[-85.593151, 32.728530],\n\t\t\t\t\t\t[-85.285043, 32.730731],\n\t\t\t\t\t\t[-85.136776, 32.746512],\n\t\t\t\t\t\t[-85.137136, 32.745168],\n\t\t\t\t\t\t[-85.114737, 32.685634],\n\t\t\t\t\t\t[-85.104790, 32.642542],\n\t\t\t\t\t\t[-85.082454, 32.607022],\n\t\t\t\t\t\t[-85.080288, 32.603577]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01085\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"085\",\n\t\t\t\t\"NAME\": \"Lowndes\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 715.911000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.857583, 31.962167],\n\t\t\t\t\t\t[-86.856576, 32.048352],\n\t\t\t\t\t\t[-86.906956, 32.047970],\n\t\t\t\t\t\t[-86.908302, 32.225028],\n\t\t\t\t\t\t[-86.810313, 32.224747],\n\t\t\t\t\t\t[-86.864367, 32.274918],\n\t\t\t\t\t\t[-86.814912, 32.340803],\n\t\t\t\t\t\t[-86.717897, 32.402814],\n\t\t\t\t\t\t[-86.496774, 32.344437],\n\t\t\t\t\t\t[-86.408816, 32.240851],\n\t\t\t\t\t\t[-86.406276, 32.050731],\n\t\t\t\t\t\t[-86.448198, 31.964629],\n\t\t\t\t\t\t[-86.857583, 31.962167]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01087\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"087\",\n\t\t\t\t\"NAME\": \"Macon\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 608.885000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.886148, 32.493053],\n\t\t\t\t\t\t[-85.797156, 32.494236],\n\t\t\t\t\t\t[-85.798585, 32.581089],\n\t\t\t\t\t\t[-85.695854, 32.595933],\n\t\t\t\t\t\t[-85.489348, 32.496937],\n\t\t\t\t\t\t[-85.438575, 32.497090],\n\t\t\t\t\t\t[-85.434045, 32.409840],\n\t\t\t\t\t\t[-85.433543, 32.234648],\n\t\t\t\t\t\t[-85.856218, 32.231975],\n\t\t\t\t\t\t[-85.919293, 32.274382],\n\t\t\t\t\t\t[-86.023012, 32.419978],\n\t\t\t\t\t\t[-85.894420, 32.447578],\n\t\t\t\t\t\t[-85.886148, 32.493053]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01089\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"089\",\n\t\t\t\t\"NAME\": \"Madison\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 801.593000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.783628, 34.991925],\n\t\t\t\t\t\t[-86.677616, 34.992070],\n\t\t\t\t\t\t[-86.676726, 34.992070],\n\t\t\t\t\t\t[-86.674360, 34.992001],\n\t\t\t\t\t\t[-86.670853, 34.992000],\n\t\t\t\t\t\t[-86.659610, 34.991792],\n\t\t\t\t\t\t[-86.641212, 34.991740],\n\t\t\t\t\t\t[-86.600039, 34.991240],\n\t\t\t\t\t\t[-86.588962, 34.991197],\n\t\t\t\t\t\t[-86.571217, 34.991011],\n\t\t\t\t\t\t[-86.555864, 34.990971],\n\t\t\t\t\t\t[-86.528485, 34.990677],\n\t\t\t\t\t\t[-86.467798, 34.990692],\n\t\t\t\t\t\t[-86.433927, 34.991085],\n\t\t\t\t\t\t[-86.397203, 34.991660],\n\t\t\t\t\t\t[-86.318761, 34.991147],\n\t\t\t\t\t\t[-86.311274, 34.991098],\n\t\t\t\t\t\t[-86.359034, 34.632610],\n\t\t\t\t\t\t[-86.326853, 34.599403],\n\t\t\t\t\t\t[-86.338181, 34.510103],\n\t\t\t\t\t\t[-86.423914, 34.479581],\n\t\t\t\t\t\t[-86.533445, 34.502795],\n\t\t\t\t\t\t[-86.550166, 34.545963],\n\t\t\t\t\t\t[-86.689353, 34.586425],\n\t\t\t\t\t\t[-86.790056, 34.550790],\n\t\t\t\t\t\t[-86.783628, 34.991925]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US02070\",\n\t\t\t\t\"STATE\": \"02\",\n\t\t\t\t\"COUNTY\": \"070\",\n\t\t\t\t\"NAME\": \"Dillingham\",\n\t\t\t\t\"LSAD\": \"CA\",\n\t\t\t\t\"CENSUSAREA\": 18568.778000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-155.961100, 60.907602],\n\t\t\t\t\t\t[-155.953624, 60.106238],\n\t\t\t\t\t\t[-155.955850, 59.677305],\n\t\t\t\t\t\t[-156.122050, 59.675185],\n\t\t\t\t\t\t[-156.123307, 59.588205],\n\t\t\t\t\t\t[-156.464798, 59.589388],\n\t\t\t\t\t\t[-156.464896, 59.502988],\n\t\t\t\t\t\t[-156.634489, 59.503988],\n\t\t\t\t\t\t[-156.635005, 59.415108],\n\t\t\t\t\t\t[-156.731184, 59.416170],\n\t\t\t\t\t\t[-156.729373, 59.328803],\n\t\t\t\t\t\t[-157.073256, 59.331538],\n\t\t\t\t\t\t[-157.074194, 59.244404],\n\t\t\t\t\t\t[-157.244151, 59.246208],\n\t\t\t\t\t\t[-157.158008, 58.860227],\n\t\t\t\t\t\t[-157.116866, 58.867533],\n\t\t\t\t\t\t[-157.189554, 58.847724],\n\t\t\t\t\t\t[-157.200998, 58.845012],\n\t\t\t\t\t\t[-157.215710, 58.841526],\n\t\t\t\t\t\t[-157.241396, 58.837558],\n\t\t\t\t\t\t[-157.259663, 58.835665],\n\t\t\t\t\t\t[-157.275451, 58.836136],\n\t\t\t\t\t\t[-157.353132, 58.817729],\n\t\t\t\t\t\t[-157.429531, 58.791071],\n\t\t\t\t\t\t[-157.484062, 58.785962],\n\t\t\t\t\t\t[-157.532654, 58.772638],\n\t\t\t\t\t\t[-157.537543, 58.768542],\n\t\t\t\t\t\t[-157.542326, 58.760962],\n\t\t\t\t\t\t[-157.550603, 58.754514],\n\t\t\t\t\t\t[-157.696472, 58.729975],\n\t\t\t\t\t\t[-157.721786, 58.723212],\n\t\t\t\t\t\t[-157.753583, 58.711924],\n\t\t\t\t\t\t[-157.799597, 58.695590],\n\t\t\t\t\t\t[-157.855396, 58.678277],\n\t\t\t\t\t\t[-158.001016, 58.642893],\n\t\t\t\t\t\t[-158.036593, 58.634248],\n\t\t\t\t\t\t[-158.101646, 58.621090],\n\t\t\t\t\t\t[-158.140307, 58.615020],\n\t\t\t\t\t\t[-158.190283, 58.613710],\n\t\t\t\t\t\t[-158.213861, 58.615828],\n\t\t\t\t\t\t[-158.232276, 58.619902],\n\t\t\t\t\t\t[-158.273036, 58.633470],\n\t\t\t\t\t\t[-158.297189, 58.643147],\n\t\t\t\t\t\t[-158.327038, 58.659835],\n\t\t\t\t\t\t[-158.332093, 58.665313],\n\t\t\t\t\t\t[-158.332860, 58.669274],\n\t\t\t\t\t\t[-158.330216, 58.675043],\n\t\t\t\t\t\t[-158.332394, 58.686814],\n\t\t\t\t\t\t[-158.343545, 58.713634],\n\t\t\t\t\t\t[-158.351481, 58.727693],\n\t\t\t\t\t\t[-158.376873, 58.748043],\n\t\t\t\t\t\t[-158.400475, 58.761182],\n\t\t\t\t\t\t[-158.423828, 58.769847],\n\t\t\t\t\t\t[-158.455210, 58.776972],\n\t\t\t\t\t\t[-158.512547, 58.783110],\n\t\t\t\t\t\t[-158.538516, 58.788394],\n\t\t\t\t\t\t[-158.550626, 58.792915],\n\t\t\t\t\t\t[-158.564833, 58.802715],\n\t\t\t\t\t\t[-158.566397, 58.807137],\n\t\t\t\t\t\t[-158.565870, 58.815429],\n\t\t\t\t\t\t[-158.559499, 58.841819],\n\t\t\t\t\t\t[-158.559132, 58.860776],\n\t\t\t\t\t\t[-158.565718, 58.875828],\n\t\t\t\t\t\t[-158.598645, 58.901230],\n\t\t\t\t\t\t[-158.619684, 58.911048],\n\t\t\t\t\t\t[-158.717436, 58.872462],\n\t\t\t\t\t\t[-158.729581, 58.871218],\n\t\t\t\t\t\t[-158.745305, 58.874098],\n\t\t\t\t\t\t[-158.767748, 58.864264],\n\t\t\t\t\t\t[-158.789632, 58.814257],\n\t\t\t\t\t\t[-158.790786, 58.808424],\n\t\t\t\t\t\t[-158.790378, 58.804712],\n\t\t\t\t\t\t[-158.782365, 58.791157],\n\t\t\t\t\t\t[-158.774626, 58.778593],\n\t\t\t\t\t\t[-158.769800, 58.774141],\n\t\t\t\t\t\t[-158.771246, 58.765109],\n\t\t\t\t\t\t[-158.784886, 58.747739],\n\t\t\t\t\t\t[-158.800959, 58.732842],\n\t\t\t\t\t\t[-158.812116, 58.727845],\n\t\t\t\t\t\t[-158.827105, 58.724495],\n\t\t\t\t\t\t[-158.848225, 58.722736],\n\t\t\t\t\t\t[-158.861207, 58.695580],\n\t\t\t\t\t\t[-158.827852, 58.626432],\n\t\t\t\t\t\t[-158.769131, 58.548650],\n\t\t\t\t\t\t[-158.721173, 58.497971],\n\t\t\t\t\t\t[-158.704052, 58.482759],\n\t\t\t\t\t\t[-158.795316, 58.408032],\n\t\t\t\t\t\t[-158.830598, 58.397095],\n\t\t\t\t\t\t[-158.880927, 58.390670],\n\t\t\t\t\t\t[-158.896067, 58.390065],\n\t\t\t\t\t\t[-158.944154, 58.396885],\n\t\t\t\t\t\t[-159.046105, 58.417466],\n\t\t\t\t\t\t[-159.063346, 58.423139],\n\t\t\t\t\t\t[-159.080496, 58.444256],\n\t\t\t\t\t\t[-159.187347, 58.555609],\n\t\t\t\t\t\t[-159.242290, 58.619067],\n\t\t\t\t\t\t[-159.357625, 58.734520],\n\t\t\t\t\t\t[-159.390664, 58.762362],\n\t\t\t\t\t\t[-159.450831, 58.797736],\n\t\t\t\t\t\t[-159.501768, 58.824304],\n\t\t\t\t\t\t[-159.532347, 58.833609],\n\t\t\t\t\t\t[-159.556355, 58.837414],\n\t\t\t\t\t\t[-159.580287, 58.840691],\n\t\t\t\t\t\t[-159.643549, 58.845063],\n\t\t\t\t\t\t[-159.601899, 58.884671],\n\t\t\t\t\t\t[-159.589811, 58.890359],\n\t\t\t\t\t\t[-159.586966, 58.900314],\n\t\t\t\t\t\t[-159.594788, 58.912402],\n\t\t\t\t\t\t[-159.602610, 58.920935],\n\t\t\t\t\t\t[-159.616120, 58.931601],\n\t\t\t\t\t\t[-159.642430, 58.938712],\n\t\t\t\t\t\t[-159.657362, 58.938712],\n\t\t\t\t\t\t[-159.691493, 58.931601],\n\t\t\t\t\t\t[-159.712114, 58.929468],\n\t\t\t\t\t\t[-159.723491, 58.932312],\n\t\t\t\t\t\t[-159.732932, 58.930739],\n\t\t\t\t\t\t[-159.753754, 58.855724],\n\t\t\t\t\t\t[-159.808777, 58.861542],\n\t\t\t\t\t\t[-159.792923, 58.823971],\n\t\t\t\t\t\t[-159.806305, 58.805595],\n\t\t\t\t\t\t[-159.908386, 58.779903],\n\t\t\t\t\t\t[-159.995667, 58.848301],\n\t\t\t\t\t\t[-159.985352, 58.870464],\n\t\t\t\t\t\t[-160.054047, 58.887001],\n\t\t\t\t\t\t[-160.093109, 58.860798],\n\t\t\t\t\t\t[-160.150528, 58.866062],\n\t\t\t\t\t\t[-160.154480, 58.916874],\n\t\t\t\t\t\t[-160.232788, 58.901127],\n\t\t\t\t\t\t[-160.286346, 58.945007],\n\t\t\t\t\t\t[-160.322922, 58.953953],\n\t\t\t\t\t\t[-160.256592, 58.994480],\n\t\t\t\t\t\t[-160.317780, 59.070477],\n\t\t\t\t\t\t[-160.476578, 59.026047],\n\t\t\t\t\t\t[-160.641785, 58.964489],\n\t\t\t\t\t\t[-160.753067, 58.910431],\n\t\t\t\t\t\t[-160.835358, 58.823494],\n\t\t\t\t\t\t[-160.855194, 58.882523],\n\t\t\t\t\t\t[-160.999741, 58.856655],\n\t\t\t\t\t\t[-161.034520, 58.843894],\n\t\t\t\t\t\t[-161.034851, 59.003419],\n\t\t\t\t\t\t[-160.874299, 59.003658],\n\t\t\t\t\t\t[-160.875869, 59.084046],\n\t\t\t\t\t\t[-160.819137, 59.084859],\n\t\t\t\t\t\t[-160.820877, 59.261519],\n\t\t\t\t\t\t[-160.650275, 59.262230],\n\t\t\t\t\t\t[-160.650795, 59.349182],\n\t\t\t\t\t\t[-160.480547, 59.352217],\n\t\t\t\t\t\t[-160.481711, 59.436228],\n\t\t\t\t\t\t[-160.424977, 59.435910],\n\t\t\t\t\t\t[-160.424450, 59.611507],\n\t\t\t\t\t\t[-160.250662, 59.611298],\n\t\t\t\t\t\t[-160.248182, 59.784524],\n\t\t\t\t\t\t[-160.019425, 59.786831],\n\t\t\t\t\t\t[-160.015226, 59.958912],\n\t\t\t\t\t\t[-159.855289, 59.963691],\n\t\t\t\t\t\t[-159.850294, 60.128439],\n\t\t\t\t\t\t[-159.786890, 60.128139],\n\t\t\t\t\t\t[-159.784540, 60.213265],\n\t\t\t\t\t\t[-159.613392, 60.214585],\n\t\t\t\t\t\t[-159.613611, 60.387800],\n\t\t\t\t\t\t[-159.437007, 60.387176],\n\t\t\t\t\t\t[-159.432729, 60.471029],\n\t\t\t\t\t\t[-159.369629, 60.471130],\n\t\t\t\t\t\t[-159.367249, 60.644339],\n\t\t\t\t\t\t[-159.185163, 60.644578],\n\t\t\t\t\t\t[-159.182993, 60.731079],\n\t\t\t\t\t\t[-159.015920, 60.731938],\n\t\t\t\t\t\t[-159.014091, 60.823452],\n\t\t\t\t\t\t[-158.948931, 60.823175],\n\t\t\t\t\t\t[-158.944656, 60.903462],\n\t\t\t\t\t\t[-157.883552, 60.903711],\n\t\t\t\t\t\t[-157.880745, 60.824769],\n\t\t\t\t\t\t[-157.697905, 60.823585],\n\t\t\t\t\t\t[-157.700869, 60.911315],\n\t\t\t\t\t\t[-157.521885, 60.911337],\n\t\t\t\t\t\t[-157.522531, 61.000515],\n\t\t\t\t\t\t[-157.169511, 61.000170],\n\t\t\t\t\t\t[-157.168288, 60.912221],\n\t\t\t\t\t\t[-155.961100, 60.907602]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US02110\",\n\t\t\t\t\"STATE\": \"02\",\n\t\t\t\t\"COUNTY\": \"110\",\n\t\t\t\t\"NAME\": \"Juneau\",\n\t\t\t\t\"LSAD\": \"Cty&Bor\",\n\t\t\t\t\"CENSUSAREA\": 2701.931000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-134.713987, 58.220748],\n\t\t\t\t\t\t\t[-134.712801, 58.215369],\n\t\t\t\t\t\t\t[-134.710513, 58.192557],\n\t\t\t\t\t\t\t[-134.703727, 58.166794],\n\t\t\t\t\t\t\t[-134.699956, 58.161494],\n\t\t\t\t\t\t\t[-134.689515, 58.158825],\n\t\t\t\t\t\t\t[-134.682812, 58.158843],\n\t\t\t\t\t\t\t[-134.631434, 58.162198],\n\t\t\t\t\t\t\t[-134.608911, 58.171637],\n\t\t\t\t\t\t\t[-134.608358, 58.173472],\n\t\t\t\t\t\t\t[-134.594804, 58.183511],\n\t\t\t\t\t\t\t[-134.559241, 58.195121],\n\t\t\t\t\t\t\t[-134.541609, 58.184327],\n\t\t\t\t\t\t\t[-134.519644, 58.175771],\n\t\t\t\t\t\t\t[-134.500740, 58.172546],\n\t\t\t\t\t\t\t[-134.479810, 58.171199],\n\t\t\t\t\t\t\t[-134.462633, 58.173851],\n\t\t\t\t\t\t\t[-134.446657, 58.173583],\n\t\t\t\t\t\t\t[-134.413953, 58.167546],\n\t\t\t\t\t\t\t[-134.401512, 58.163427],\n\t\t\t\t\t\t\t[-134.371445, 58.148966],\n\t\t\t\t\t\t\t[-134.327360, 58.143880],\n\t\t\t\t\t\t\t[-134.317037, 58.145440],\n\t\t\t\t\t\t\t[-134.306483, 58.152490],\n\t\t\t\t\t\t\t[-134.259705, 58.157712],\n\t\t\t\t\t\t\t[-134.215981, 58.162128],\n\t\t\t\t\t\t\t[-134.177467, 58.159640],\n\t\t\t\t\t\t\t[-134.531804, 58.096726],\n\t\t\t\t\t\t\t[-134.553923, 58.053616],\n\t\t\t\t\t\t\t[-134.672702, 58.027243],\n\t\t\t\t\t\t\t[-134.761940, 58.078090],\n\t\t\t\t\t\t\t[-134.772720, 58.164862],\n\t\t\t\t\t\t\t[-134.713987, 58.220748]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-133.602032, 57.860394],\n\t\t\t\t\t\t\t[-133.610178, 57.860654],\n\t\t\t\t\t\t\t[-133.631303, 57.846766],\n\t\t\t\t\t\t\t[-133.633931, 57.838029],\n\t\t\t\t\t\t\t[-133.641996, 57.811215],\n\t\t\t\t\t\t\t[-133.638899, 57.803323],\n\t\t\t\t\t\t\t[-133.635578, 57.799900],\n\t\t\t\t\t\t\t[-133.637054, 57.792203],\n\t\t\t\t\t\t\t[-133.639675, 57.790361],\n\t\t\t\t\t\t\t[-133.658113, 57.786368],\n\t\t\t\t\t\t\t[-133.677433, 57.786593],\n\t\t\t\t\t\t\t[-133.696784, 57.795075],\n\t\t\t\t\t\t\t[-133.703097, 57.792152],\n\t\t\t\t\t\t\t[-133.709141, 57.792739],\n\t\t\t\t\t\t\t[-133.814706, 57.832979],\n\t\t\t\t\t\t\t[-133.999331, 57.999016],\n\t\t\t\t\t\t\t[-134.057521, 58.039471],\n\t\t\t\t\t\t\t[-134.071720, 58.054636],\n\t\t\t\t\t\t\t[-134.089207, 58.082534],\n\t\t\t\t\t\t\t[-134.144813, 58.171242],\n\t\t\t\t\t\t\t[-134.587101, 58.205802],\n\t\t\t\t\t\t\t[-134.703351, 58.276537],\n\t\t\t\t\t\t\t[-134.839307, 58.359261],\n\t\t\t\t\t\t\t[-135.074096, 58.502123],\n\t\t\t\t\t\t\t[-135.196338, 58.907875],\n\t\t\t\t\t\t\t[-135.219128, 58.974972],\n\t\t\t\t\t\t\t[-135.175760, 58.973867],\n\t\t\t\t\t\t\t[-134.363773, 58.963891],\n\t\t\t\t\t\t\t[-134.328964, 58.919593],\n\t\t\t\t\t\t\t[-134.250526, 58.858046],\n\t\t\t\t\t\t\t[-133.992081, 58.774581],\n\t\t\t\t\t\t\t[-133.840392, 58.727991],\n\t\t\t\t\t\t\t[-133.723635, 58.626004],\n\t\t\t\t\t\t\t[-133.699835, 58.607290],\n\t\t\t\t\t\t\t[-133.559942, 58.522318],\n\t\t\t\t\t\t\t[-133.443373, 58.442415],\n\t\t\t\t\t\t\t[-133.436075, 58.391324],\n\t\t\t\t\t\t\t[-133.437696, 58.358074],\n\t\t\t\t\t\t\t[-133.359691, 58.284789],\n\t\t\t\t\t\t\t[-133.343725, 58.270915],\n\t\t\t\t\t\t\t[-133.222898, 58.186368],\n\t\t\t\t\t\t\t[-133.176444, 58.150151],\n\t\t\t\t\t\t\t[-133.569210, 57.885350],\n\t\t\t\t\t\t\t[-133.602032, 57.860394]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US02130\",\n\t\t\t\t\"STATE\": \"02\",\n\t\t\t\t\"COUNTY\": \"130\",\n\t\t\t\t\"NAME\": \"Ketchikan Gateway\",\n\t\t\t\t\"LSAD\": \"Borough\",\n\t\t\t\t\"CENSUSAREA\": 4858.414000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-131.246018, 54.989555],\n\t\t\t\t\t\t\t[-131.257421, 54.979010],\n\t\t\t\t\t\t\t[-131.242771, 54.929639],\n\t\t\t\t\t\t\t[-131.233001, 54.926814],\n\t\t\t\t\t\t\t[-131.217805, 54.927423],\n\t\t\t\t\t\t\t[-131.197924, 54.921489],\n\t\t\t\t\t\t\t[-131.195197, 54.919767],\n\t\t\t\t\t\t\t[-131.195411, 54.918249],\n\t\t\t\t\t\t\t[-131.200161, 54.910169],\n\t\t\t\t\t\t\t[-131.253671, 54.866779],\n\t\t\t\t\t\t\t[-131.266049, 54.859369],\n\t\t\t\t\t\t\t[-131.353233, 54.859009],\n\t\t\t\t\t\t\t[-131.469097, 54.913153],\n\t\t\t\t\t\t\t[-131.491504, 54.930392],\n\t\t\t\t\t\t\t[-131.486616, 54.950394],\n\t\t\t\t\t\t\t[-131.482676, 54.952659],\n\t\t\t\t\t\t\t[-131.409738, 54.971152],\n\t\t\t\t\t\t\t[-131.266084, 54.998806],\n\t\t\t\t\t\t\t[-131.248909, 54.997190],\n\t\t\t\t\t\t\t[-131.246018, 54.989555]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-131.759896, 55.381845],\n\t\t\t\t\t\t\t[-131.716140, 55.349570],\n\t\t\t\t\t\t\t[-131.685192, 55.333501],\n\t\t\t\t\t\t\t[-131.666738, 55.327492],\n\t\t\t\t\t\t\t[-131.647236, 55.306140],\n\t\t\t\t\t\t\t[-131.658130, 55.292512],\n\t\t\t\t\t\t\t[-131.688644, 55.282113],\n\t\t\t\t\t\t\t[-131.694487, 55.223739],\n\t\t\t\t\t\t\t[-131.718468, 55.200099],\n\t\t\t\t\t\t\t[-131.748334, 55.128588],\n\t\t\t\t\t\t\t[-131.798943, 55.162351],\n\t\t\t\t\t\t\t[-131.829585, 55.191916],\n\t\t\t\t\t\t\t[-131.830718, 55.194991],\n\t\t\t\t\t\t\t[-131.828395, 55.198482],\n\t\t\t\t\t\t\t[-131.850839, 55.274364],\n\t\t\t\t\t\t\t[-131.862162, 55.289284],\n\t\t\t\t\t\t\t[-131.870568, 55.364553],\n\t\t\t\t\t\t\t[-131.854297, 55.421074],\n\t\t\t\t\t\t\t[-131.852330, 55.423782],\n\t\t\t\t\t\t\t[-131.833218, 55.422014],\n\t\t\t\t\t\t\t[-131.811697, 55.414048],\n\t\t\t\t\t\t\t[-131.809721, 55.412555],\n\t\t\t\t\t\t\t[-131.806790, 55.405175],\n\t\t\t\t\t\t\t[-131.798555, 55.399386],\n\t\t\t\t\t\t\t[-131.759896, 55.381845]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-132.199549, 55.638593],\n\t\t\t\t\t\t\t[-132.091178, 55.660703],\n\t\t\t\t\t\t\t[-132.058825, 55.710930],\n\t\t\t\t\t\t\t[-131.962744, 55.700757],\n\t\t\t\t\t\t\t[-131.935635, 55.798431],\n\t\t\t\t\t\t\t[-132.011037, 55.854788],\n\t\t\t\t\t\t\t[-131.871938, 55.948883],\n\t\t\t\t\t\t\t[-131.904613, 55.972972],\n\t\t\t\t\t\t\t[-131.829608, 56.056307],\n\t\t\t\t\t\t\t[-131.692693, 56.050604],\n\t\t\t\t\t\t\t[-131.653403, 56.103851],\n\t\t\t\t\t\t\t[-131.498849, 56.019097],\n\t\t\t\t\t\t\t[-131.371853, 56.013252],\n\t\t\t\t\t\t\t[-131.369226, 56.069910],\n\t\t\t\t\t\t\t[-131.437095, 56.140004],\n\t\t\t\t\t\t\t[-131.253358, 56.206850],\n\t\t\t\t\t\t\t[-131.238566, 56.170968],\n\t\t\t\t\t\t\t[-131.106699, 56.195124],\n\t\t\t\t\t\t\t[-130.998654, 56.274041],\n\t\t\t\t\t\t\t[-131.096230, 56.335166],\n\t\t\t\t\t\t\t[-131.087433, 56.407420],\n\t\t\t\t\t\t\t[-131.085704, 56.406540],\n\t\t\t\t\t\t\t[-130.782231, 56.367511],\n\t\t\t\t\t\t\t[-130.740619, 56.342953],\n\t\t\t\t\t\t\t[-130.622482, 56.267939],\n\t\t\t\t\t\t\t[-130.541173, 56.248017],\n\t\t\t\t\t\t\t[-130.466874, 56.239789],\n\t\t\t\t\t\t\t[-130.425575, 56.140676],\n\t\t\t\t\t\t\t[-130.245540, 56.096876],\n\t\t\t\t\t\t\t[-130.291117, 56.054246],\n\t\t\t\t\t\t\t[-130.220064, 55.998912],\n\t\t\t\t\t\t\t[-130.285132, 55.997546],\n\t\t\t\t\t\t\t[-130.388737, 55.943318],\n\t\t\t\t\t\t\t[-130.234649, 55.814310],\n\t\t\t\t\t\t\t[-130.150595, 55.767031],\n\t\t\t\t\t\t\t[-130.151509, 55.746029],\n\t\t\t\t\t\t\t[-130.150061, 55.727099],\n\t\t\t\t\t\t\t[-130.148040, 55.715041],\n\t\t\t\t\t\t\t[-130.129518, 55.699806],\n\t\t\t\t\t\t\t[-130.111677, 55.682051],\n\t\t\t\t\t\t\t[-130.126743, 55.581282],\n\t\t\t\t\t\t\t[-130.120132, 55.563919],\n\t\t\t\t\t\t\t[-130.085413, 55.491517],\n\t\t\t\t\t\t\t[-130.044303, 55.451970],\n\t\t\t\t\t\t\t[-130.030182, 55.367696],\n\t\t\t\t\t\t\t[-130.023558, 55.338259],\n\t\t\t\t\t\t\t[-129.982348, 55.302079],\n\t\t\t\t\t\t\t[-129.980487, 55.296334],\n\t\t\t\t\t\t\t[-129.980058, 55.284230],\n\t\t\t\t\t\t\t[-129.985379, 55.277760],\n\t\t\t\t\t\t\t[-130.001735, 55.264557],\n\t\t\t\t\t\t\t[-130.030162, 55.246592],\n\t\t\t\t\t\t\t[-130.096546, 55.197953],\n\t\t\t\t\t\t\t[-130.118919, 55.176074],\n\t\t\t\t\t\t\t[-130.144723, 55.146038],\n\t\t\t\t\t\t\t[-130.158117, 55.117104],\n\t\t\t\t\t\t\t[-130.187541, 55.064665],\n\t\t\t\t\t\t\t[-130.221512, 55.025990],\n\t\t\t\t\t\t\t[-130.259079, 54.987642],\n\t\t\t\t\t\t\t[-130.275560, 54.972930],\n\t\t\t\t\t\t\t[-130.339504, 54.921376],\n\t\t\t\t\t\t\t[-130.474605, 54.838102],\n\t\t\t\t\t\t\t[-130.569366, 54.790869],\n\t\t\t\t\t\t\t[-130.636745, 54.778456],\n\t\t\t\t\t\t\t[-130.657754, 54.761828],\n\t\t\t\t\t\t\t[-130.628070, 54.739341],\n\t\t\t\t\t\t\t[-130.644479, 54.736897],\n\t\t\t\t\t\t\t[-130.685213, 54.720091],\n\t\t\t\t\t\t\t[-130.686192, 54.716910],\n\t\t\t\t\t\t\t[-130.695817, 54.719346],\n\t\t\t\t\t\t\t[-130.737423, 54.753545],\n\t\t\t\t\t\t\t[-130.747227, 54.772600],\n\t\t\t\t\t\t\t[-130.733209, 54.779610],\n\t\t\t\t\t\t\t[-130.732201, 54.782620],\n\t\t\t\t\t\t\t[-130.736295, 54.794798],\n\t\t\t\t\t\t\t[-130.742316, 54.801914],\n\t\t\t\t\t\t\t[-130.773606, 54.820845],\n\t\t\t\t\t\t\t[-130.787444, 54.822905],\n\t\t\t\t\t\t\t[-130.788570, 54.794643],\n\t\t\t\t\t\t\t[-130.792122, 54.784784],\n\t\t\t\t\t\t\t[-130.806815, 54.776862],\n\t\t\t\t\t\t\t[-130.836853, 54.765437],\n\t\t\t\t\t\t\t[-130.854966, 54.766341],\n\t\t\t\t\t\t\t[-130.866866, 54.769068],\n\t\t\t\t\t\t\t[-130.901801, 54.780876],\n\t\t\t\t\t\t\t[-130.915936, 54.789617],\n\t\t\t\t\t\t\t[-130.932454, 54.806938],\n\t\t\t\t\t\t\t[-130.947098, 54.826047],\n\t\t\t\t\t\t\t[-130.941029, 54.841587],\n\t\t\t\t\t\t\t[-130.947338, 54.886733],\n\t\t\t\t\t\t\t[-130.959732, 54.918678],\n\t\t\t\t\t\t\t[-130.960400, 54.933685],\n\t\t\t\t\t\t\t[-130.949104, 54.967846],\n\t\t\t\t\t\t\t[-130.953507, 54.972102],\n\t\t\t\t\t\t\t[-130.975030, 54.974853],\n\t\t\t\t\t\t\t[-131.007787, 54.991300],\n\t\t\t\t\t\t\t[-131.012061, 54.996238],\n\t\t\t\t\t\t\t[-131.004216, 55.029605],\n\t\t\t\t\t\t\t[-130.986802, 55.065222],\n\t\t\t\t\t\t\t[-130.983730, 55.068946],\n\t\t\t\t\t\t\t[-130.984157, 55.084410],\n\t\t\t\t\t\t\t[-131.013215, 55.090069],\n\t\t\t\t\t\t\t[-131.029676, 55.099478],\n\t\t\t\t\t\t\t[-131.052298, 55.118160],\n\t\t\t\t\t\t\t[-131.070692, 55.138143],\n\t\t\t\t\t\t\t[-131.076646, 55.146178],\n\t\t\t\t\t\t\t[-131.085579, 55.158233],\n\t\t\t\t\t\t\t[-131.087497, 55.163036],\n\t\t\t\t\t\t\t[-131.093806, 55.191335],\n\t\t\t\t\t\t\t[-131.092605, 55.192711],\n\t\t\t\t\t\t\t[-130.985304, 55.247286],\n\t\t\t\t\t\t\t[-130.952956, 55.273092],\n\t\t\t\t\t\t\t[-130.951572, 55.291648],\n\t\t\t\t\t\t\t[-130.925069, 55.300713],\n\t\t\t\t\t\t\t[-130.909948, 55.299878],\n\t\t\t\t\t\t\t[-130.871329, 55.293780],\n\t\t\t\t\t\t\t[-130.864918, 55.298367],\n\t\t\t\t\t\t\t[-130.864918, 55.309469],\n\t\t\t\t\t\t\t[-130.871857, 55.313991],\n\t\t\t\t\t\t\t[-130.882146, 55.358831],\n\t\t\t\t\t\t\t[-130.920800, 55.428721],\n\t\t\t\t\t\t\t[-130.922985, 55.435113],\n\t\t\t\t\t\t\t[-130.920295, 55.446085],\n\t\t\t\t\t\t\t[-130.910744, 55.459982],\n\t\t\t\t\t\t\t[-130.898129, 55.470177],\n\t\t\t\t\t\t\t[-130.881297, 55.495582],\n\t\t\t\t\t\t\t[-130.870524, 55.533768],\n\t\t\t\t\t\t\t[-130.880013, 55.598954],\n\t\t\t\t\t\t\t[-130.901872, 55.697380],\n\t\t\t\t\t\t\t[-130.939017, 55.754831],\n\t\t\t\t\t\t\t[-130.984774, 55.799349],\n\t\t\t\t\t\t\t[-131.093956, 55.895675],\n\t\t\t\t\t\t\t[-131.171406, 55.942952],\n\t\t\t\t\t\t\t[-131.187429, 55.956010],\n\t\t\t\t\t\t\t[-131.216475, 55.984342],\n\t\t\t\t\t\t\t[-131.229971, 55.984342],\n\t\t\t\t\t\t\t[-131.236936, 55.982293],\n\t\t\t\t\t\t\t[-131.243491, 55.973689],\n\t\t\t\t\t\t\t[-131.245949, 55.965905],\n\t\t\t\t\t\t\t[-131.241704, 55.955069],\n\t\t\t\t\t\t\t[-131.156834, 55.901147],\n\t\t\t\t\t\t\t[-131.070138, 55.828551],\n\t\t\t\t\t\t\t[-131.053217, 55.799843],\n\t\t\t\t\t\t\t[-131.043527, 55.766997],\n\t\t\t\t\t\t\t[-131.040966, 55.762837],\n\t\t\t\t\t\t\t[-130.998638, 55.723538],\n\t\t\t\t\t\t\t[-130.965994, 55.688974],\n\t\t\t\t\t\t\t[-130.946830, 55.650716],\n\t\t\t\t\t\t\t[-130.927651, 55.576585],\n\t\t\t\t\t\t\t[-130.945177, 55.557731],\n\t\t\t\t\t\t\t[-130.978917, 55.550835],\n\t\t\t\t\t\t\t[-130.987103, 55.539872],\n\t\t\t\t\t\t\t[-130.994376, 55.472396],\n\t\t\t\t\t\t\t[-130.969588, 55.393281],\n\t\t\t\t\t\t\t[-130.947498, 55.380823],\n\t\t\t\t\t\t\t[-130.928172, 55.339426],\n\t\t\t\t\t\t\t[-130.933399, 55.331906],\n\t\t\t\t\t\t\t[-130.946597, 55.322396],\n\t\t\t\t\t\t\t[-130.959772, 55.315892],\n\t\t\t\t\t\t\t[-130.968326, 55.316626],\n\t\t\t\t\t\t\t[-130.964088, 55.332664],\n\t\t\t\t\t\t\t[-131.000594, 55.398012],\n\t\t\t\t\t\t\t[-131.008726, 55.404818],\n\t\t\t\t\t\t\t[-131.029045, 55.408395],\n\t\t\t\t\t\t\t[-131.033054, 55.393118],\n\t\t\t\t\t\t\t[-131.034191, 55.379358],\n\t\t\t\t\t\t\t[-131.030521, 55.376917],\n\t\t\t\t\t\t\t[-131.027301, 55.371392],\n\t\t\t\t\t\t\t[-131.019881, 55.347905],\n\t\t\t\t\t\t\t[-131.031357, 55.284785],\n\t\t\t\t\t\t\t[-131.072348, 55.253822],\n\t\t\t\t\t\t\t[-131.160492, 55.197481],\n\t\t\t\t\t\t\t[-131.188747, 55.192745],\n\t\t\t\t\t\t\t[-131.211230, 55.192379],\n\t\t\t\t\t\t\t[-131.235516, 55.197574],\n\t\t\t\t\t\t\t[-131.263089, 55.208318],\n\t\t\t\t\t\t\t[-131.297162, 55.235046],\n\t\t\t\t\t\t\t[-131.302697, 55.250217],\n\t\t\t\t\t\t\t[-131.278302, 55.260319],\n\t\t\t\t\t\t\t[-131.240190, 55.287156],\n\t\t\t\t\t\t\t[-131.230432, 55.297802],\n\t\t\t\t\t\t\t[-131.191595, 55.360527],\n\t\t\t\t\t\t\t[-131.191933, 55.368334],\n\t\t\t\t\t\t\t[-131.197489, 55.391051],\n\t\t\t\t\t\t\t[-131.202477, 55.392834],\n\t\t\t\t\t\t\t[-131.272447, 55.387774],\n\t\t\t\t\t\t\t[-131.292102, 55.383946],\n\t\t\t\t\t\t\t[-131.293043, 55.378684],\n\t\t\t\t\t\t\t[-131.287016, 55.358260],\n\t\t\t\t\t\t\t[-131.264608, 55.345639],\n\t\t\t\t\t\t\t[-131.254461, 55.329698],\n\t\t\t\t\t\t\t[-131.255107, 55.322104],\n\t\t\t\t\t\t\t[-131.284986, 55.286437],\n\t\t\t\t\t\t\t[-131.291203, 55.281751],\n\t\t\t\t\t\t\t[-131.326989, 55.265911],\n\t\t\t\t\t\t\t[-131.402931, 55.238065],\n\t\t\t\t\t\t\t[-131.424502, 55.238764],\n\t\t\t\t\t\t\t[-131.428234, 55.239416],\n\t\t\t\t\t\t\t[-131.437857, 55.248407],\n\t\t\t\t\t\t\t[-131.444799, 55.264491],\n\t\t\t\t\t\t\t[-131.463532, 55.283389],\n\t\t\t\t\t\t\t[-131.475602, 55.303263],\n\t\t\t\t\t\t\t[-131.462968, 55.312648],\n\t\t\t\t\t\t\t[-131.471976, 55.323386],\n\t\t\t\t\t\t\t[-131.494146, 55.332310],\n\t\t\t\t\t\t\t[-131.509811, 55.332310],\n\t\t\t\t\t\t\t[-131.515257, 55.327938],\n\t\t\t\t\t\t\t[-131.528201, 55.295349],\n\t\t\t\t\t\t\t[-131.536510, 55.292352],\n\t\t\t\t\t\t\t[-131.550044, 55.293389],\n\t\t\t\t\t\t\t[-131.566677, 55.306068],\n\t\t\t\t\t\t\t[-131.584842, 55.309588],\n\t\t\t\t\t\t\t[-131.639031, 55.339481],\n\t\t\t\t\t\t\t[-131.698743, 55.354873],\n\t\t\t\t\t\t\t[-131.732441, 55.377553],\n\t\t\t\t\t\t\t[-131.735939, 55.381905],\n\t\t\t\t\t\t\t[-131.736654, 55.392206],\n\t\t\t\t\t\t\t[-131.741834, 55.398074],\n\t\t\t\t\t\t\t[-131.828446, 55.445214],\n\t\t\t\t\t\t\t[-131.844157, 55.456742],\n\t\t\t\t\t\t\t[-131.845542, 55.522119],\n\t\t\t\t\t\t\t[-131.841683, 55.526748],\n\t\t\t\t\t\t\t[-131.793717, 55.541682],\n\t\t\t\t\t\t\t[-131.766373, 55.540050],\n\t\t\t\t\t\t\t[-131.733052, 55.548559],\n\t\t\t\t\t\t\t[-131.664629, 55.581525],\n\t\t\t\t\t\t\t[-131.654172, 55.592431],\n\t\t\t\t\t\t\t[-131.671471, 55.606573],\n\t\t\t\t\t\t\t[-131.682849, 55.610488],\n\t\t\t\t\t\t\t[-131.701091, 55.613684],\n\t\t\t\t\t\t\t[-131.724359, 55.632559],\n\t\t\t\t\t\t\t[-131.726322, 55.635930],\n\t\t\t\t\t\t\t[-131.726615, 55.641000],\n\t\t\t\t\t\t\t[-131.719546, 55.650282],\n\t\t\t\t\t\t\t[-131.712102, 55.665797],\n\t\t\t\t\t\t\t[-131.701147, 55.696960],\n\t\t\t\t\t\t\t[-131.706744, 55.706435],\n\t\t\t\t\t\t\t[-131.726467, 55.720826],\n\t\t\t\t\t\t\t[-131.733408, 55.730832],\n\t\t\t\t\t\t\t[-131.719308, 55.749099],\n\t\t\t\t\t\t\t[-131.704907, 55.755541],\n\t\t\t\t\t\t\t[-131.649626, 55.768728],\n\t\t\t\t\t\t\t[-131.640294, 55.785274],\n\t\t\t\t\t\t\t[-131.640141, 55.789355],\n\t\t\t\t\t\t\t[-131.653124, 55.795735],\n\t\t\t\t\t\t\t[-131.678213, 55.799837],\n\t\t\t\t\t\t\t[-131.691058, 55.797561],\n\t\t\t\t\t\t\t[-131.697211, 55.793768],\n\t\t\t\t\t\t\t[-131.700951, 55.788977],\n\t\t\t\t\t\t\t[-131.705259, 55.789939],\n\t\t\t\t\t\t\t[-131.710448, 55.806620],\n\t\t\t\t\t\t\t[-131.713742, 55.853263],\n\t\t\t\t\t\t\t[-131.701487, 55.860943],\n\t\t\t\t\t\t\t[-131.689044, 55.875488],\n\t\t\t\t\t\t\t[-131.687317, 55.886772],\n\t\t\t\t\t\t\t[-131.689509, 55.890232],\n\t\t\t\t\t\t\t[-131.720384, 55.894659],\n\t\t\t\t\t\t\t[-131.776737, 55.878784],\n\t\t\t\t\t\t\t[-131.828176, 55.877284],\n\t\t\t\t\t\t\t[-131.836962, 55.875472],\n\t\t\t\t\t\t\t[-131.830547, 55.856616],\n\t\t\t\t\t\t\t[-131.816310, 55.837449],\n\t\t\t\t\t\t\t[-131.777033, 55.823261],\n\t\t\t\t\t\t\t[-131.771248, 55.810028],\n\t\t\t\t\t\t\t[-131.779908, 55.791904],\n\t\t\t\t\t\t\t[-131.814759, 55.731350],\n\t\t\t\t\t\t\t[-131.826160, 55.718580],\n\t\t\t\t\t\t\t[-131.831407, 55.681342],\n\t\t\t\t\t\t\t[-131.828887, 55.667148],\n\t\t\t\t\t\t\t[-131.865395, 55.630680],\n\t\t\t\t\t\t\t[-131.897413, 55.603914],\n\t\t\t\t\t\t\t[-131.939318, 55.623844],\n\t\t\t\t\t\t\t[-131.963121, 55.615263],\n\t\t\t\t\t\t\t[-131.962642, 55.608708],\n\t\t\t\t\t\t\t[-131.945303, 55.572441],\n\t\t\t\t\t\t\t[-131.936689, 55.535151],\n\t\t\t\t\t\t\t[-131.971792, 55.498279],\n\t\t\t\t\t\t\t[-131.986493, 55.500619],\n\t\t\t\t\t\t\t[-132.014613, 55.515238],\n\t\t\t\t\t\t\t[-132.043772, 55.535742],\n\t\t\t\t\t\t\t[-132.060504, 55.543030],\n\t\t\t\t\t\t\t[-132.098521, 55.550015],\n\t\t\t\t\t\t\t[-132.114654, 55.550623],\n\t\t\t\t\t\t\t[-132.141118, 55.559010],\n\t\t\t\t\t\t\t[-132.148383, 55.562481],\n\t\t\t\t\t\t\t[-132.183207, 55.588128],\n\t\t\t\t\t\t\t[-132.198652, 55.615721],\n\t\t\t\t\t\t\t[-132.201500, 55.626376],\n\t\t\t\t\t\t\t[-132.197869, 55.633967],\n\t\t\t\t\t\t\t[-132.199549, 55.638593]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US02185\",\n\t\t\t\t\"STATE\": \"02\",\n\t\t\t\t\"COUNTY\": \"185\",\n\t\t\t\t\"NAME\": \"North Slope\",\n\t\t\t\t\"LSAD\": \"Borough\",\n\t\t\t\t\"CENSUSAREA\": 88695.413000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-165.359980, 68.028054],\n\t\t\t\t\t\t[-165.430442, 68.045408],\n\t\t\t\t\t\t[-165.493550, 68.059283],\n\t\t\t\t\t\t[-165.661690, 68.075999],\n\t\t\t\t\t\t[-165.749518, 68.077694],\n\t\t\t\t\t\t[-165.792146, 68.080867],\n\t\t\t\t\t\t[-165.863428, 68.093367],\n\t\t\t\t\t\t[-165.965534, 68.121920],\n\t\t\t\t\t\t[-165.973621, 68.125986],\n\t\t\t\t\t\t[-165.987929, 68.142738],\n\t\t\t\t\t\t[-165.994377, 68.147305],\n\t\t\t\t\t\t[-166.245281, 68.245275],\n\t\t\t\t\t\t[-166.307977, 68.264948],\n\t\t\t\t\t\t[-166.368546, 68.281770],\n\t\t\t\t\t\t[-166.474608, 68.305273],\n\t\t\t\t\t\t[-166.567220, 68.323288],\n\t\t\t\t\t\t[-166.680842, 68.340911],\n\t\t\t\t\t\t[-166.784578, 68.340431],\n\t\t\t\t\t\t[-166.829715, 68.336324],\n\t\t\t\t\t\t[-166.846456, 68.332508],\n\t\t\t\t\t\t[-166.850640, 68.333089],\n\t\t\t\t\t\t[-166.838178, 68.339714],\n\t\t\t\t\t\t[-166.811836, 68.348136],\n\t\t\t\t\t\t[-166.706139, 68.371783],\n\t\t\t\t\t\t[-166.377564, 68.422406],\n\t\t\t\t\t\t[-166.362135, 68.426240],\n\t\t\t\t\t\t[-166.342381, 68.433966],\n\t\t\t\t\t\t[-166.328459, 68.442261],\n\t\t\t\t\t\t[-166.305962, 68.461540],\n\t\t\t\t\t\t[-166.303464, 68.464683],\n\t\t\t\t\t\t[-166.302030, 68.470413],\n\t\t\t\t\t\t[-166.295343, 68.510900],\n\t\t\t\t\t\t[-166.244490, 68.553888],\n\t\t\t\t\t\t[-166.233780, 68.564263],\n\t\t\t\t\t\t[-166.226111, 68.576186],\n\t\t\t\t\t\t[-166.225567, 68.579015],\n\t\t\t\t\t\t[-166.231432, 68.587338],\n\t\t\t\t\t\t[-166.229761, 68.613771],\n\t\t\t\t\t\t[-166.213635, 68.664324],\n\t\t\t\t\t\t[-166.199826, 68.678556],\n\t\t\t\t\t\t[-166.197365, 68.690019],\n\t\t\t\t\t\t[-166.187795, 68.778706],\n\t\t\t\t\t\t[-166.190209, 68.790437],\n\t\t\t\t\t\t[-166.195374, 68.803990],\n\t\t\t\t\t\t[-166.203750, 68.818221],\n\t\t\t\t\t\t[-166.222496, 68.860441],\n\t\t\t\t\t\t[-166.224187, 68.873175],\n\t\t\t\t\t\t[-166.214433, 68.879524],\n\t\t\t\t\t\t[-165.814938, 68.864158],\n\t\t\t\t\t\t[-165.666566, 68.855387],\n\t\t\t\t\t\t[-165.572483, 68.852946],\n\t\t\t\t\t\t[-165.522358, 68.855839],\n\t\t\t\t\t\t[-165.327043, 68.858111],\n\t\t\t\t\t\t[-164.967542, 68.883030],\n\t\t\t\t\t\t[-164.883745, 68.891649],\n\t\t\t\t\t\t[-164.812671, 68.893542],\n\t\t\t\t\t\t[-164.655317, 68.909360],\n\t\t\t\t\t\t[-164.526887, 68.917909],\n\t\t\t\t\t\t[-164.299092, 68.927569],\n\t\t\t\t\t\t[-164.253157, 68.930938],\n\t\t\t\t\t\t[-164.161249, 68.944773],\n\t\t\t\t\t\t[-164.130742, 68.951001],\n\t\t\t\t\t\t[-164.069362, 68.969651],\n\t\t\t\t\t\t[-163.973678, 68.985044],\n\t\t\t\t\t\t[-163.893881, 69.011962],\n\t\t\t\t\t\t[-163.858069, 69.028860],\n\t\t\t\t\t\t[-163.827447, 69.040632],\n\t\t\t\t\t\t[-163.724184, 69.066713],\n\t\t\t\t\t\t[-163.655864, 69.090567],\n\t\t\t\t\t\t[-163.574034, 69.124077],\n\t\t\t\t\t\t[-163.535314, 69.141656],\n\t\t\t\t\t\t[-163.452685, 69.194630],\n\t\t\t\t\t\t[-163.297956, 69.274725],\n\t\t\t\t\t\t[-163.236121, 69.282661],\n\t\t\t\t\t\t[-163.230902, 69.284464],\n\t\t\t\t\t\t[-163.137614, 69.352178],\n\t\t\t\t\t\t[-163.110318, 69.375343],\n\t\t\t\t\t\t[-163.103166, 69.392261],\n\t\t\t\t\t\t[-163.104387, 69.401350],\n\t\t\t\t\t\t[-163.100569, 69.414222],\n\t\t\t\t\t\t[-163.070341, 69.459872],\n\t\t\t\t\t\t[-163.052068, 69.481971],\n\t\t\t\t\t\t[-163.046961, 69.482892],\n\t\t\t\t\t\t[-163.036311, 69.489028],\n\t\t\t\t\t\t[-163.026170, 69.506890],\n\t\t\t\t\t\t[-163.016456, 69.538142],\n\t\t\t\t\t\t[-163.020001, 69.545145],\n\t\t\t\t\t\t[-163.030290, 69.556591],\n\t\t\t\t\t\t[-163.074128, 69.570272],\n\t\t\t\t\t\t[-163.118176, 69.589156],\n\t\t\t\t\t\t[-163.116622, 69.593416],\n\t\t\t\t\t\t[-163.111605, 69.596605],\n\t\t\t\t\t\t[-163.024590, 69.608609],\n\t\t\t\t\t\t[-162.916958, 69.692512],\n\t\t\t\t\t\t[-162.922009, 69.700372],\n\t\t\t\t\t\t[-162.961086, 69.717165],\n\t\t\t\t\t\t[-163.010545, 69.728109],\n\t\t\t\t\t\t[-163.018175, 69.729074],\n\t\t\t\t\t\t[-163.035390, 69.727406],\n\t\t\t\t\t\t[-163.012595, 69.757462],\n\t\t\t\t\t\t[-162.960245, 69.783328],\n\t\t\t\t\t\t[-162.911869, 69.799471],\n\t\t\t\t\t\t[-162.877165, 69.804411],\n\t\t\t\t\t\t[-162.840602, 69.811763],\n\t\t\t\t\t\t[-162.767210, 69.852179],\n\t\t\t\t\t\t[-162.709550, 69.879126],\n\t\t\t\t\t\t[-162.616345, 69.916997],\n\t\t\t\t\t\t[-162.606297, 69.918988],\n\t\t\t\t\t\t[-162.601284, 69.914568],\n\t\t\t\t\t\t[-162.593773, 69.914096],\n\t\t\t\t\t\t[-162.587906, 69.915637],\n\t\t\t\t\t\t[-162.481016, 69.975242],\n\t\t\t\t\t\t[-162.471549, 69.983132],\n\t\t\t\t\t\t[-162.462304, 70.002438],\n\t\t\t\t\t\t[-162.468339, 70.015784],\n\t\t\t\t\t\t[-162.462778, 70.042217],\n\t\t\t\t\t\t[-162.454541, 70.043958],\n\t\t\t\t\t\t[-162.394531, 70.044574],\n\t\t\t\t\t\t[-162.350558, 70.058800],\n\t\t\t\t\t\t[-162.354740, 70.065479],\n\t\t\t\t\t\t[-162.356469, 70.076391],\n\t\t\t\t\t\t[-162.312491, 70.109281],\n\t\t\t\t\t\t[-162.158156, 70.161530],\n\t\t\t\t\t\t[-162.098377, 70.187045],\n\t\t\t\t\t\t[-162.019265, 70.224044],\n\t\t\t\t\t\t[-161.984888, 70.247681],\n\t\t\t\t\t\t[-161.959603, 70.268873],\n\t\t\t\t\t\t[-161.922949, 70.291599],\n\t\t\t\t\t\t[-161.859745, 70.308048],\n\t\t\t\t\t\t[-161.849998, 70.309430],\n\t\t\t\t\t\t[-161.844213, 70.308530],\n\t\t\t\t\t\t[-161.842162, 70.304429],\n\t\t\t\t\t\t[-161.844688, 70.300054],\n\t\t\t\t\t\t[-161.847403, 70.295877],\n\t\t\t\t\t\t[-161.848909, 70.282183],\n\t\t\t\t\t\t[-161.834651, 70.272504],\n\t\t\t\t\t\t[-161.801603, 70.260634],\n\t\t\t\t\t\t[-161.779794, 70.255411],\n\t\t\t\t\t\t[-161.769496, 70.262498],\n\t\t\t\t\t\t[-161.767838, 70.268337],\n\t\t\t\t\t\t[-161.759176, 70.272443],\n\t\t\t\t\t\t[-161.692195, 70.267092],\n\t\t\t\t\t\t[-161.676220, 70.258021],\n\t\t\t\t\t\t[-161.663593, 70.246187],\n\t\t\t\t\t\t[-161.633888, 70.240693],\n\t\t\t\t\t\t[-161.522941, 70.236888],\n\t\t\t\t\t\t[-161.396757, 70.240606],\n\t\t\t\t\t\t[-161.309118, 70.248091],\n\t\t\t\t\t\t[-161.254723, 70.256612],\n\t\t\t\t\t\t[-161.080282, 70.306679],\n\t\t\t\t\t\t[-161.016416, 70.327744],\n\t\t\t\t\t\t[-160.992764, 70.316226],\n\t\t\t\t\t\t[-160.979126, 70.317661],\n\t\t\t\t\t\t[-160.839536, 70.344534],\n\t\t\t\t\t\t[-160.732703, 70.374382],\n\t\t\t\t\t\t[-160.530362, 70.440751],\n\t\t\t\t\t\t[-160.489778, 70.454463],\n\t\t\t\t\t\t[-160.485530, 70.457121],\n\t\t\t\t\t\t[-160.480062, 70.465971],\n\t\t\t\t\t\t[-160.214828, 70.559087],\n\t\t\t\t\t\t[-160.056727, 70.632834],\n\t\t\t\t\t\t[-159.913805, 70.690673],\n\t\t\t\t\t\t[-159.798514, 70.731226],\n\t\t\t\t\t\t[-159.648383, 70.794368],\n\t\t\t\t\t\t[-159.585714, 70.809475],\n\t\t\t\t\t\t[-159.528682, 70.820849],\n\t\t\t\t\t\t[-159.209082, 70.870067],\n\t\t\t\t\t\t[-159.171810, 70.875103],\n\t\t\t\t\t\t[-159.147634, 70.876653],\n\t\t\t\t\t\t[-159.156511, 70.859221],\n\t\t\t\t\t\t[-159.152026, 70.849543],\n\t\t\t\t\t\t[-159.132483, 70.828359],\n\t\t\t\t\t\t[-159.160836, 70.817960],\n\t\t\t\t\t\t[-159.290577, 70.811262],\n\t\t\t\t\t\t[-159.331021, 70.807394],\n\t\t\t\t\t\t[-159.335837, 70.800079],\n\t\t\t\t\t\t[-159.343075, 70.783115],\n\t\t\t\t\t\t[-159.299304, 70.760012],\n\t\t\t\t\t\t[-159.275634, 70.759531],\n\t\t\t\t\t\t[-159.137790, 70.758609],\n\t\t\t\t\t\t[-159.000676, 70.764336],\n\t\t\t\t\t\t[-158.976647, 70.766973],\n\t\t\t\t\t\t[-158.954571, 70.772712],\n\t\t\t\t\t\t[-158.965600, 70.786852],\n\t\t\t\t\t\t[-158.976456, 70.789864],\n\t\t\t\t\t\t[-158.976615, 70.796377],\n\t\t\t\t\t\t[-158.656101, 70.787955],\n\t\t\t\t\t\t[-158.607320, 70.789099],\n\t\t\t\t\t\t[-158.389500, 70.799729],\n\t\t\t\t\t\t[-158.385792, 70.811468],\n\t\t\t\t\t\t[-158.389269, 70.822048],\n\t\t\t\t\t\t[-158.385816, 70.825704],\n\t\t\t\t\t\t[-158.250320, 70.817734],\n\t\t\t\t\t\t[-158.157725, 70.820806],\n\t\t\t\t\t\t[-158.032397, 70.832263],\n\t\t\t\t\t\t[-157.884086, 70.853468],\n\t\t\t\t\t\t[-157.840997, 70.861025],\n\t\t\t\t\t\t[-157.768452, 70.875842],\n\t\t\t\t\t\t[-157.708782, 70.891390],\n\t\t\t\t\t\t[-157.502459, 70.948659],\n\t\t\t\t\t\t[-157.421001, 70.976805],\n\t\t\t\t\t\t[-157.392802, 70.987908],\n\t\t\t\t\t\t[-157.249083, 71.052537],\n\t\t\t\t\t\t[-157.119621, 71.128682],\n\t\t\t\t\t\t[-157.072487, 71.154521],\n\t\t\t\t\t\t[-156.962555, 71.211885],\n\t\t\t\t\t\t[-156.809653, 71.286886],\n\t\t\t\t\t\t[-156.773937, 71.299506],\n\t\t\t\t\t\t[-156.645615, 71.338012],\n\t\t\t\t\t\t[-156.620140, 71.344209],\n\t\t\t\t\t\t[-156.568650, 71.352561],\n\t\t\t\t\t\t[-156.566383, 71.334016],\n\t\t\t\t\t\t[-156.561512, 71.316809],\n\t\t\t\t\t\t[-156.556496, 71.311795],\n\t\t\t\t\t\t[-156.531124, 71.296338],\n\t\t\t\t\t\t[-156.524499, 71.294469],\n\t\t\t\t\t\t[-156.402659, 71.267945],\n\t\t\t\t\t\t[-156.356736, 71.261273],\n\t\t\t\t\t\t[-156.320702, 71.258952],\n\t\t\t\t\t\t[-156.301938, 71.260566],\n\t\t\t\t\t\t[-156.214200, 71.259392],\n\t\t\t\t\t\t[-156.074411, 71.242489],\n\t\t\t\t\t\t[-156.029205, 71.203209],\n\t\t\t\t\t\t[-156.038116, 71.196506],\n\t\t\t\t\t\t[-156.044754, 71.186770],\n\t\t\t\t\t\t[-156.044615, 71.184701],\n\t\t\t\t\t\t[-156.018574, 71.172041],\n\t\t\t\t\t\t[-155.957961, 71.186211],\n\t\t\t\t\t\t[-155.920202, 71.207157],\n\t\t\t\t\t\t[-155.895105, 71.193899],\n\t\t\t\t\t\t[-155.884180, 71.190057],\n\t\t\t\t\t\t[-155.829034, 71.192088],\n\t\t\t\t\t\t[-155.803853, 71.196420],\n\t\t\t\t\t\t[-155.760802, 71.194662],\n\t\t\t\t\t\t[-155.657178, 71.182471],\n\t\t\t\t\t\t[-155.587702, 71.172560],\n\t\t\t\t\t\t[-155.566925, 71.165139],\n\t\t\t\t\t\t[-155.567765, 71.141130],\n\t\t\t\t\t\t[-155.561772, 71.128458],\n\t\t\t\t\t\t[-155.520737, 71.102476],\n\t\t\t\t\t\t[-155.513987, 71.096794],\n\t\t\t\t\t\t[-155.511125, 71.090348],\n\t\t\t\t\t\t[-155.510637, 71.081152],\n\t\t\t\t\t\t[-155.533347, 71.067683],\n\t\t\t\t\t\t[-155.548283, 71.060685],\n\t\t\t\t\t\t[-155.638994, 71.042360],\n\t\t\t\t\t\t[-155.705487, 71.020153],\n\t\t\t\t\t\t[-155.711852, 71.012473],\n\t\t\t\t\t\t[-155.762068, 70.985644],\n\t\t\t\t\t\t[-155.830881, 70.965584],\n\t\t\t\t\t\t[-155.878946, 70.967684],\n\t\t\t\t\t\t[-155.952050, 70.964831],\n\t\t\t\t\t\t[-155.978405, 70.962197],\n\t\t\t\t\t\t[-155.995681, 70.947796],\n\t\t\t\t\t\t[-156.014769, 70.903133],\n\t\t\t\t\t\t[-156.014425, 70.898644],\n\t\t\t\t\t\t[-156.013512, 70.895983],\n\t\t\t\t\t\t[-155.968559, 70.862931],\n\t\t\t\t\t\t[-155.969194, 70.827982],\n\t\t\t\t\t\t[-155.978421, 70.825558],\n\t\t\t\t\t\t[-155.980975, 70.817355],\n\t\t\t\t\t\t[-155.978978, 70.808750],\n\t\t\t\t\t\t[-155.971935, 70.806828],\n\t\t\t\t\t\t[-155.927958, 70.806010],\n\t\t\t\t\t\t[-155.906615, 70.809988],\n\t\t\t\t\t\t[-155.882145, 70.822056],\n\t\t\t\t\t\t[-155.875096, 70.828895],\n\t\t\t\t\t\t[-155.731842, 70.831160],\n\t\t\t\t\t\t[-155.643516, 70.824209],\n\t\t\t\t\t\t[-155.543031, 70.847175],\n\t\t\t\t\t\t[-155.504202, 70.860303],\n\t\t\t\t\t\t[-155.489811, 70.871740],\n\t\t\t\t\t\t[-155.487980, 70.875299],\n\t\t\t\t\t\t[-155.485915, 70.885905],\n\t\t\t\t\t\t[-155.487574, 70.902679],\n\t\t\t\t\t\t[-155.493044, 70.917371],\n\t\t\t\t\t\t[-155.475940, 70.943547],\n\t\t\t\t\t\t[-155.454991, 70.947490],\n\t\t\t\t\t\t[-155.404225, 70.967477],\n\t\t\t\t\t\t[-155.382646, 70.978973],\n\t\t\t\t\t\t[-155.364160, 70.994195],\n\t\t\t\t\t\t[-155.343871, 71.004449],\n\t\t\t\t\t\t[-155.260042, 71.015227],\n\t\t\t\t\t\t[-155.260084, 71.011281],\n\t\t\t\t\t\t[-155.256177, 71.004762],\n\t\t\t\t\t\t[-155.211434, 70.978023],\n\t\t\t\t\t\t[-155.201466, 70.974306],\n\t\t\t\t\t\t[-155.192246, 70.974056],\n\t\t\t\t\t\t[-155.182779, 70.978218],\n\t\t\t\t\t\t[-155.168934, 70.987947],\n\t\t\t\t\t\t[-155.161735, 70.995715],\n\t\t\t\t\t\t[-155.159922, 71.002775],\n\t\t\t\t\t\t[-155.163938, 71.013801],\n\t\t\t\t\t\t[-155.177000, 71.027450],\n\t\t\t\t\t\t[-155.273764, 71.064728],\n\t\t\t\t\t\t[-155.275814, 71.067042],\n\t\t\t\t\t\t[-155.275989, 71.070464],\n\t\t\t\t\t\t[-155.262602, 71.079149],\n\t\t\t\t\t\t[-155.256860, 71.081119],\n\t\t\t\t\t\t[-155.150524, 71.112050],\n\t\t\t\t\t\t[-155.146948, 71.110959],\n\t\t\t\t\t\t[-155.146931, 71.103459],\n\t\t\t\t\t\t[-155.142858, 71.097254],\n\t\t\t\t\t\t[-155.125994, 71.077495],\n\t\t\t\t\t\t[-155.120317, 71.073416],\n\t\t\t\t\t\t[-155.108509, 71.070475],\n\t\t\t\t\t\t[-155.075362, 71.072042],\n\t\t\t\t\t\t[-155.064004, 71.083912],\n\t\t\t\t\t\t[-155.061428, 71.091999],\n\t\t\t\t\t\t[-155.064558, 71.108006],\n\t\t\t\t\t\t[-155.085782, 71.127572],\n\t\t\t\t\t\t[-155.060764, 71.145422],\n\t\t\t\t\t\t[-155.031740, 71.146473],\n\t\t\t\t\t\t[-154.942864, 71.126264],\n\t\t\t\t\t\t[-154.777335, 71.083231],\n\t\t\t\t\t\t[-154.616050, 71.026182],\n\t\t\t\t\t\t[-154.604413, 71.021502],\n\t\t\t\t\t\t[-154.581129, 71.007321],\n\t\t\t\t\t\t[-154.567593, 70.989929],\n\t\t\t\t\t\t[-154.594048, 70.976993],\n\t\t\t\t\t\t[-154.608294, 70.961716],\n\t\t\t\t\t\t[-154.654375, 70.903318],\n\t\t\t\t\t\t[-154.645793, 70.869167],\n\t\t\t\t\t\t[-154.577386, 70.835335],\n\t\t\t\t\t\t[-154.519040, 70.822799],\n\t\t\t\t\t\t[-154.501866, 70.821765],\n\t\t\t\t\t\t[-154.485700, 70.825304],\n\t\t\t\t\t\t[-154.430229, 70.831258],\n\t\t\t\t\t\t[-154.352604, 70.834828],\n\t\t\t\t\t\t[-154.260799, 70.815164],\n\t\t\t\t\t\t[-154.228627, 70.802417],\n\t\t\t\t\t\t[-154.223307, 70.795230],\n\t\t\t\t\t\t[-154.239166, 70.776866],\n\t\t\t\t\t\t[-154.181863, 70.768325],\n\t\t\t\t\t\t[-154.169631, 70.768604],\n\t\t\t\t\t\t[-154.127487, 70.778133],\n\t\t\t\t\t\t[-154.069982, 70.793703],\n\t\t\t\t\t\t[-153.995579, 70.821876],\n\t\t\t\t\t\t[-153.976014, 70.833925],\n\t\t\t\t\t\t[-153.951370, 70.854028],\n\t\t\t\t\t\t[-153.935450, 70.869728],\n\t\t\t\t\t\t[-153.932949, 70.874201],\n\t\t\t\t\t\t[-153.934351, 70.876609],\n\t\t\t\t\t\t[-153.932921, 70.878677],\n\t\t\t\t\t\t[-153.890480, 70.885719],\n\t\t\t\t\t\t[-153.774169, 70.894584],\n\t\t\t\t\t\t[-153.747253, 70.895017],\n\t\t\t\t\t\t[-153.525976, 70.885500],\n\t\t\t\t\t\t[-153.485989, 70.885873],\n\t\t\t\t\t\t[-153.426265, 70.890131],\n\t\t\t\t\t\t[-153.359112, 70.898292],\n\t\t\t\t\t\t[-153.326202, 70.904111],\n\t\t\t\t\t\t[-153.253386, 70.920775],\n\t\t\t\t\t\t[-153.238480, 70.922467],\n\t\t\t\t\t\t[-153.137311, 70.925438],\n\t\t\t\t\t\t[-153.049207, 70.913102],\n\t\t\t\t\t\t[-153.017038, 70.904004],\n\t\t\t\t\t\t[-152.774415, 70.885279],\n\t\t\t\t\t\t[-152.735892, 70.884545],\n\t\t\t\t\t\t[-152.590148, 70.886933],\n\t\t\t\t\t\t[-152.456950, 70.871788],\n\t\t\t\t\t\t[-152.259966, 70.842820],\n\t\t\t\t\t\t[-152.226464, 70.831043],\n\t\t\t\t\t\t[-152.187197, 70.801546],\n\t\t\t\t\t\t[-152.188649, 70.798140],\n\t\t\t\t\t\t[-152.192460, 70.795294],\n\t\t\t\t\t\t[-152.239344, 70.793416],\n\t\t\t\t\t\t[-152.263346, 70.790777],\n\t\t\t\t\t\t[-152.283763, 70.785600],\n\t\t\t\t\t\t[-152.370808, 70.730068],\n\t\t\t\t\t\t[-152.377274, 70.714682],\n\t\t\t\t\t\t[-152.471531, 70.688840],\n\t\t\t\t\t\t[-152.473348, 70.683669],\n\t\t\t\t\t\t[-152.460505, 70.646107],\n\t\t\t\t\t\t[-152.433781, 70.616926],\n\t\t\t\t\t\t[-152.420775, 70.608983],\n\t\t\t\t\t\t[-152.365736, 70.601242],\n\t\t\t\t\t\t[-152.355679, 70.603794],\n\t\t\t\t\t\t[-152.341592, 70.612193],\n\t\t\t\t\t\t[-152.332608, 70.612871],\n\t\t\t\t\t\t[-152.264049, 70.592655],\n\t\t\t\t\t\t[-152.200644, 70.586070],\n\t\t\t\t\t\t[-152.169944, 70.585219],\n\t\t\t\t\t\t[-152.146165, 70.586754],\n\t\t\t\t\t\t[-152.060684, 70.574935],\n\t\t\t\t\t\t[-152.064546, 70.568542],\n\t\t\t\t\t\t[-152.065748, 70.563074],\n\t\t\t\t\t\t[-152.026070, 70.559345],\n\t\t\t\t\t\t[-151.975785, 70.563215],\n\t\t\t\t\t\t[-151.880141, 70.554869],\n\t\t\t\t\t\t[-151.816701, 70.545698],\n\t\t\t\t\t\t[-151.774703, 70.547925],\n\t\t\t\t\t\t[-151.745047, 70.554041],\n\t\t\t\t\t\t[-151.718215, 70.555286],\n\t\t\t\t\t\t[-151.701467, 70.553220],\n\t\t\t\t\t\t[-151.695162, 70.549675],\n\t\t\t\t\t\t[-151.697258, 70.547741],\n\t\t\t\t\t\t[-151.709462, 70.546490],\n\t\t\t\t\t\t[-151.722711, 70.541608],\n\t\t\t\t\t\t[-151.751558, 70.524105],\n\t\t\t\t\t\t[-151.760248, 70.516711],\n\t\t\t\t\t\t[-151.734287, 70.503492],\n\t\t\t\t\t\t[-151.728579, 70.495375],\n\t\t\t\t\t\t[-151.775537, 70.485353],\n\t\t\t\t\t\t[-151.824111, 70.484011],\n\t\t\t\t\t\t[-151.919210, 70.472686],\n\t\t\t\t\t\t[-151.936783, 70.463564],\n\t\t\t\t\t\t[-151.946384, 70.452523],\n\t\t\t\t\t\t[-151.900033, 70.434135],\n\t\t\t\t\t\t[-151.876122, 70.430761],\n\t\t\t\t\t\t[-151.844375, 70.434959],\n\t\t\t\t\t\t[-151.785657, 70.436935],\n\t\t\t\t\t\t[-151.653184, 70.434800],\n\t\t\t\t\t\t[-151.605581, 70.437332],\n\t\t\t\t\t\t[-151.554647, 70.435895],\n\t\t\t\t\t\t[-151.444897, 70.425405],\n\t\t\t\t\t\t[-151.343202, 70.408877],\n\t\t\t\t\t\t[-151.297598, 70.400748],\n\t\t\t\t\t\t[-151.229919, 70.379840],\n\t\t\t\t\t\t[-151.187394, 70.384775],\n\t\t\t\t\t\t[-151.188592, 70.401755],\n\t\t\t\t\t\t[-151.186516, 70.418208],\n\t\t\t\t\t\t[-151.180436, 70.430401],\n\t\t\t\t\t\t[-151.123105, 70.439374],\n\t\t\t\t\t\t[-151.118601, 70.438088],\n\t\t\t\t\t\t[-151.114352, 70.432886],\n\t\t\t\t\t\t[-151.116099, 70.422403],\n\t\t\t\t\t\t[-151.060430, 70.418734],\n\t\t\t\t\t\t[-151.026337, 70.441455],\n\t\t\t\t\t\t[-150.957813, 70.452610],\n\t\t\t\t\t\t[-150.895452, 70.458158],\n\t\t\t\t\t\t[-150.877322, 70.455182],\n\t\t\t\t\t\t[-150.834973, 70.460171],\n\t\t\t\t\t\t[-150.787069, 70.477117],\n\t\t\t\t\t\t[-150.780029, 70.485986],\n\t\t\t\t\t\t[-150.762035, 70.497219],\n\t\t\t\t\t\t[-150.719845, 70.494998],\n\t\t\t\t\t\t[-150.651175, 70.494928],\n\t\t\t\t\t\t[-150.614734, 70.498292],\n\t\t\t\t\t\t[-150.429915, 70.498172],\n\t\t\t\t\t\t[-150.357384, 70.493738],\n\t\t\t\t\t\t[-150.354056, 70.492724],\n\t\t\t\t\t\t[-150.338851, 70.471075],\n\t\t\t\t\t\t[-150.370283, 70.447858],\n\t\t\t\t\t\t[-150.350541, 70.435998],\n\t\t\t\t\t\t[-150.296287, 70.441136],\n\t\t\t\t\t\t[-150.245325, 70.441658],\n\t\t\t\t\t\t[-150.185078, 70.435370],\n\t\t\t\t\t\t[-150.112899, 70.431372],\n\t\t\t\t\t\t[-150.104388, 70.432091],\n\t\t\t\t\t\t[-150.074461, 70.439333],\n\t\t\t\t\t\t[-149.866698, 70.510769],\n\t\t\t\t\t\t[-149.819740, 70.491428],\n\t\t\t\t\t\t[-149.810924, 70.490477],\n\t\t\t\t\t\t[-149.790427, 70.491190],\n\t\t\t\t\t\t[-149.740188, 70.498151],\n\t\t\t\t\t\t[-149.728247, 70.502793],\n\t\t\t\t\t\t[-149.716075, 70.504968],\n\t\t\t\t\t\t[-149.661165, 70.509203],\n\t\t\t\t\t\t[-149.656806, 70.508713],\n\t\t\t\t\t\t[-149.649556, 70.504757],\n\t\t\t\t\t\t[-149.581348, 70.495891],\n\t\t\t\t\t\t[-149.565278, 70.496450],\n\t\t\t\t\t\t[-149.536891, 70.499397],\n\t\t\t\t\t\t[-149.524235, 70.502128],\n\t\t\t\t\t\t[-149.509854, 70.508746],\n\t\t\t\t\t\t[-149.461755, 70.518271],\n\t\t\t\t\t\t[-149.432083, 70.503750],\n\t\t\t\t\t\t[-149.418727, 70.492257],\n\t\t\t\t\t\t[-149.400623, 70.489931],\n\t\t\t\t\t\t[-149.314473, 70.495325],\n\t\t\t\t\t\t[-149.179148, 70.485700],\n\t\t\t\t\t\t[-149.082079, 70.464894],\n\t\t\t\t\t\t[-148.959443, 70.423944],\n\t\t\t\t\t\t[-148.928979, 70.426835],\n\t\t\t\t\t\t[-148.858069, 70.422917],\n\t\t\t\t\t\t[-148.789577, 70.402746],\n\t\t\t\t\t\t[-148.728082, 70.413035],\n\t\t\t\t\t\t[-148.698770, 70.425878],\n\t\t\t\t\t\t[-148.696768, 70.429160],\n\t\t\t\t\t\t[-148.667017, 70.430084],\n\t\t\t\t\t\t[-148.610566, 70.422588],\n\t\t\t\t\t\t[-148.590007, 70.416956],\n\t\t\t\t\t\t[-148.580356, 70.412546],\n\t\t\t\t\t\t[-148.477044, 70.359068],\n\t\t\t\t\t\t[-148.464543, 70.340159],\n\t\t\t\t\t\t[-148.477028, 70.320872],\n\t\t\t\t\t\t[-148.466150, 70.313609],\n\t\t\t\t\t\t[-148.450639, 70.308437],\n\t\t\t\t\t\t[-148.411253, 70.302627],\n\t\t\t\t\t\t[-148.363196, 70.302627],\n\t\t\t\t\t\t[-148.351437, 70.304453],\n\t\t\t\t\t\t[-148.269800, 70.329617],\n\t\t\t\t\t\t[-148.258200, 70.336996],\n\t\t\t\t\t\t[-148.203477, 70.348188],\n\t\t\t\t\t\t[-148.152676, 70.347148],\n\t\t\t\t\t\t[-148.107231, 70.342801],\n\t\t\t\t\t\t[-148.090580, 70.337432],\n\t\t\t\t\t\t[-148.089576, 70.335423],\n\t\t\t\t\t\t[-148.089676, 70.332812],\n\t\t\t\t\t\t[-148.089174, 70.331005],\n\t\t\t\t\t\t[-148.076865, 70.327510],\n\t\t\t\t\t\t[-147.961500, 70.314201],\n\t\t\t\t\t\t[-147.863719, 70.293317],\n\t\t\t\t\t\t[-147.817637, 70.276938],\n\t\t\t\t\t\t[-147.789357, 70.247972],\n\t\t\t\t\t\t[-147.765104, 70.219806],\n\t\t\t\t\t\t[-147.681722, 70.199954],\n\t\t\t\t\t\t[-147.648000, 70.203299],\n\t\t\t\t\t\t[-147.585678, 70.203398],\n\t\t\t\t\t\t[-147.505270, 70.200384],\n\t\t\t\t\t\t[-147.431532, 70.188826],\n\t\t\t\t\t\t[-147.402283, 70.185273],\n\t\t\t\t\t\t[-147.385271, 70.185256],\n\t\t\t\t\t\t[-147.350145, 70.187683],\n\t\t\t\t\t\t[-147.244119, 70.218963],\n\t\t\t\t\t\t[-147.233327, 70.207553],\n\t\t\t\t\t\t[-147.231008, 70.195398],\n\t\t\t\t\t\t[-147.219210, 70.178826],\n\t\t\t\t\t\t[-147.182123, 70.160350],\n\t\t\t\t\t\t[-147.161601, 70.155612],\n\t\t\t\t\t\t[-146.991109, 70.147610],\n\t\t\t\t\t\t[-146.973212, 70.151857],\n\t\t\t\t\t\t[-146.909516, 70.173259],\n\t\t\t\t\t\t[-146.885771, 70.185917],\n\t\t\t\t\t\t[-146.734021, 70.175475],\n\t\t\t\t\t\t[-146.713053, 70.175398],\n\t\t\t\t\t\t[-146.624761, 70.182398],\n\t\t\t\t\t\t[-146.508133, 70.186044],\n\t\t\t\t\t\t[-146.448860, 70.183398],\n\t\t\t\t\t\t[-146.413197, 70.178250],\n\t\t\t\t\t\t[-146.335147, 70.176235],\n\t\t\t\t\t\t[-146.309558, 70.178907],\n\t\t\t\t\t\t[-146.272965, 70.176944],\n\t\t\t\t\t\t[-146.172672, 70.165894],\n\t\t\t\t\t\t[-146.129579, 70.158948],\n\t\t\t\t\t\t[-146.114124, 70.154956],\n\t\t\t\t\t\t[-146.096827, 70.145151],\n\t\t\t\t\t\t[-146.006411, 70.140402],\n\t\t\t\t\t\t[-145.955164, 70.140199],\n\t\t\t\t\t\t[-145.917674, 70.142525],\n\t\t\t\t\t\t[-145.872923, 70.148829],\n\t\t\t\t\t\t[-145.858297, 70.165996],\n\t\t\t\t\t\t[-145.842689, 70.164102],\n\t\t\t\t\t\t[-145.790386, 70.148569],\n\t\t\t\t\t\t[-145.783327, 70.139454],\n\t\t\t\t\t\t[-145.767092, 70.128717],\n\t\t\t\t\t\t[-145.760443, 70.126113],\n\t\t\t\t\t\t[-145.623306, 70.084375],\n\t\t\t\t\t\t[-145.579972, 70.076804],\n\t\t\t\t\t\t[-145.522384, 70.077465],\n\t\t\t\t\t\t[-145.505682, 70.074528],\n\t\t\t\t\t\t[-145.469508, 70.059136],\n\t\t\t\t\t\t[-145.468856, 70.048336],\n\t\t\t\t\t\t[-145.434830, 70.036994],\n\t\t\t\t\t\t[-145.408182, 70.031572],\n\t\t\t\t\t\t[-145.331553, 70.022596],\n\t\t\t\t\t\t[-145.247167, 70.017891],\n\t\t\t\t\t\t[-145.218593, 70.007280],\n\t\t\t\t\t\t[-145.197331, 69.994954],\n\t\t\t\t\t\t[-145.175073, 69.991707],\n\t\t\t\t\t\t[-145.011711, 69.981144],\n\t\t\t\t\t\t[-144.990131, 69.977680],\n\t\t\t\t\t\t[-144.966761, 69.964362],\n\t\t\t\t\t\t[-144.953637, 69.959262],\n\t\t\t\t\t\t[-144.902304, 69.964510],\n\t\t\t\t\t\t[-144.867623, 69.972266],\n\t\t\t\t\t\t[-144.863111, 69.973524],\n\t\t\t\t\t\t[-144.856954, 69.985987],\n\t\t\t\t\t\t[-144.854539, 69.986364],\n\t\t\t\t\t\t[-144.792614, 69.979796],\n\t\t\t\t\t\t[-144.738976, 69.970112],\n\t\t\t\t\t\t[-144.672305, 69.966876],\n\t\t\t\t\t\t[-144.618671, 69.969315],\n\t\t\t\t\t\t[-144.589172, 69.977611],\n\t\t\t\t\t\t[-144.512258, 70.004478],\n\t\t\t\t\t\t[-144.463286, 70.025735],\n\t\t\t\t\t\t[-144.344073, 70.034374],\n\t\t\t\t\t\t[-144.328391, 70.032555],\n\t\t\t\t\t\t[-144.231051, 70.035912],\n\t\t\t\t\t\t[-144.178194, 70.041742],\n\t\t\t\t\t\t[-144.130283, 70.057951],\n\t\t\t\t\t\t[-144.122641, 70.059138],\n\t\t\t\t\t\t[-144.079634, 70.058961],\n\t\t\t\t\t\t[-144.053709, 70.073182],\n\t\t\t\t\t\t[-143.911494, 70.129837],\n\t\t\t\t\t\t[-143.887688, 70.130736],\n\t\t\t\t\t\t[-143.839879, 70.125827],\n\t\t\t\t\t\t[-143.782213, 70.124668],\n\t\t\t\t\t\t[-143.769015, 70.135066],\n\t\t\t\t\t\t[-143.753065, 70.137242],\n\t\t\t\t\t\t[-143.662250, 70.142517],\n\t\t\t\t\t\t[-143.617407, 70.139915],\n\t\t\t\t\t\t[-143.595181, 70.142521],\n\t\t\t\t\t\t[-143.597879, 70.147204],\n\t\t\t\t\t\t[-143.593813, 70.152604],\n\t\t\t\t\t\t[-143.574986, 70.154598],\n\t\t\t\t\t\t[-143.543230, 70.149742],\n\t\t\t\t\t\t[-143.498058, 70.140100],\n\t\t\t\t\t\t[-143.497982, 70.136875],\n\t\t\t\t\t\t[-143.511617, 70.125191],\n\t\t\t\t\t\t[-143.516098, 70.116362],\n\t\t\t\t\t\t[-143.517248, 70.104293],\n\t\t\t\t\t\t[-143.510081, 70.096436],\n\t\t\t\t\t\t[-143.503487, 70.093458],\n\t\t\t\t\t\t[-143.455354, 70.092934],\n\t\t\t\t\t\t[-143.357961, 70.094970],\n\t\t\t\t\t\t[-143.327114, 70.103127],\n\t\t\t\t\t\t[-143.317900, 70.111145],\n\t\t\t\t\t\t[-143.265892, 70.119286],\n\t\t\t\t\t\t[-143.255576, 70.119330],\n\t\t\t\t\t\t[-143.200147, 70.110323],\n\t\t\t\t\t\t[-143.159929, 70.099203],\n\t\t\t\t\t\t[-143.140019, 70.092997],\n\t\t\t\t\t\t[-143.112951, 70.078271],\n\t\t\t\t\t\t[-143.051291, 70.078188],\n\t\t\t\t\t\t[-143.038100, 70.093888],\n\t\t\t\t\t\t[-142.939555, 70.074380],\n\t\t\t\t\t\t[-142.746807, 70.042531],\n\t\t\t\t\t\t[-142.498036, 69.973611],\n\t\t\t\t\t\t[-142.452927, 69.958125],\n\t\t\t\t\t\t[-142.409962, 69.933646],\n\t\t\t\t\t\t[-142.404366, 69.916511],\n\t\t\t\t\t\t[-142.272156, 69.907044],\n\t\t\t\t\t\t[-142.239873, 69.896598],\n\t\t\t\t\t\t[-142.112714, 69.862162],\n\t\t\t\t\t\t[-142.081696, 69.855498],\n\t\t\t\t\t\t[-142.075612, 69.853319],\n\t\t\t\t\t\t[-142.073063, 69.846625],\n\t\t\t\t\t\t[-142.058734, 69.835330],\n\t\t\t\t\t\t[-142.009321, 69.800726],\n\t\t\t\t\t\t[-141.960753, 69.799876],\n\t\t\t\t\t\t[-141.937176, 69.804805],\n\t\t\t\t\t\t[-141.919828, 69.811308],\n\t\t\t\t\t\t[-141.866738, 69.813005],\n\t\t\t\t\t\t[-141.842843, 69.811927],\n\t\t\t\t\t\t[-141.713369, 69.789497],\n\t\t\t\t\t\t[-141.606229, 69.761695],\n\t\t\t\t\t\t[-141.528197, 69.736025],\n\t\t\t\t\t\t[-141.430840, 69.695144],\n\t\t\t\t\t\t[-141.434872, 69.675245],\n\t\t\t\t\t\t[-141.428856, 69.662658],\n\t\t\t\t\t\t[-141.394082, 69.640846],\n\t\t\t\t\t\t[-141.377718, 69.634631],\n\t\t\t\t\t\t[-141.280849, 69.631025],\n\t\t\t\t\t\t[-141.258558, 69.632247],\n\t\t\t\t\t\t[-141.254547, 69.637053],\n\t\t\t\t\t\t[-141.243946, 69.652482],\n\t\t\t\t\t\t[-141.210456, 69.684190],\n\t\t\t\t\t\t[-141.119233, 69.673527],\n\t\t\t\t\t\t[-141.002672, 69.645609],\n\t\t\t\t\t\t[-141.002694, 68.498391],\n\t\t\t\t\t\t[-142.360513, 68.489642],\n\t\t\t\t\t\t[-144.297052, 68.507297],\n\t\t\t\t\t\t[-145.998216, 68.489871],\n\t\t\t\t\t\t[-145.994865, 68.001285],\n\t\t\t\t\t\t[-147.389781, 68.001041],\n\t\t\t\t\t\t[-149.620648, 67.998940],\n\t\t\t\t\t\t[-151.606277, 68.006862],\n\t\t\t\t\t\t[-155.298020, 68.001771],\n\t\t\t\t\t\t[-155.299012, 68.029941],\n\t\t\t\t\t\t[-156.235534, 68.028751],\n\t\t\t\t\t\t[-156.238107, 68.130761],\n\t\t\t\t\t\t[-157.150299, 68.120781],\n\t\t\t\t\t\t[-157.155836, 68.210442],\n\t\t\t\t\t\t[-158.100103, 68.217807],\n\t\t\t\t\t\t[-158.274727, 68.211915],\n\t\t\t\t\t\t[-159.716147, 68.216796],\n\t\t\t\t\t\t[-159.722546, 68.284089],\n\t\t\t\t\t\t[-160.127816, 68.287308],\n\t\t\t\t\t\t[-160.118340, 68.220066],\n\t\t\t\t\t\t[-161.089535, 68.221231],\n\t\t\t\t\t\t[-161.095913, 68.289368],\n\t\t\t\t\t\t[-161.519964, 68.289554],\n\t\t\t\t\t\t[-161.516254, 68.220812],\n\t\t\t\t\t\t[-161.993148, 68.223274],\n\t\t\t\t\t\t[-161.995486, 68.292164],\n\t\t\t\t\t\t[-162.720616, 68.301027],\n\t\t\t\t\t\t[-162.719806, 68.232729],\n\t\t\t\t\t\t[-163.045230, 68.228721],\n\t\t\t\t\t\t[-164.499871, 68.227513],\n\t\t\t\t\t\t[-164.494202, 68.024330],\n\t\t\t\t\t\t[-165.359980, 68.028054]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US02195\",\n\t\t\t\t\"STATE\": \"02\",\n\t\t\t\t\"COUNTY\": \"195\",\n\t\t\t\t\"NAME\": \"Petersburg\",\n\t\t\t\t\"LSAD\": \"CA\",\n\t\t\t\t\"CENSUSAREA\": 3281.982000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-134.283312, 55.925175],\n\t\t\t\t\t\t\t[-134.265872, 55.917371],\n\t\t\t\t\t\t\t[-134.230613, 55.905629],\n\t\t\t\t\t\t\t[-134.173104, 55.918519],\n\t\t\t\t\t\t\t[-134.152216, 55.920916],\n\t\t\t\t\t\t\t[-134.122839, 55.918654],\n\t\t\t\t\t\t\t[-134.118062, 55.914642],\n\t\t\t\t\t\t\t[-134.125521, 55.902095],\n\t\t\t\t\t\t\t[-134.130544, 55.897512],\n\t\t\t\t\t\t\t[-134.136647, 55.895393],\n\t\t\t\t\t\t\t[-134.145803, 55.896713],\n\t\t\t\t\t\t\t[-134.168363, 55.892319],\n\t\t\t\t\t\t\t[-134.208251, 55.876709],\n\t\t\t\t\t\t\t[-134.231157, 55.864747],\n\t\t\t\t\t\t\t[-134.240537, 55.853922],\n\t\t\t\t\t\t\t[-134.273156, 55.833058],\n\t\t\t\t\t\t\t[-134.282453, 55.828667],\n\t\t\t\t\t\t\t[-134.327238, 55.836440],\n\t\t\t\t\t\t\t[-134.344418, 55.843198],\n\t\t\t\t\t\t\t[-134.348153, 55.892817],\n\t\t\t\t\t\t\t[-134.336063, 55.926614],\n\t\t\t\t\t\t\t[-134.315782, 55.923003],\n\t\t\t\t\t\t\t[-134.283312, 55.925175]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-134.121514, 56.069847],\n\t\t\t\t\t\t\t[-134.107218, 56.048156],\n\t\t\t\t\t\t\t[-134.118132, 56.016922],\n\t\t\t\t\t\t\t[-134.126903, 56.003592],\n\t\t\t\t\t\t\t[-134.130907, 56.000104],\n\t\t\t\t\t\t\t[-134.134181, 56.000971],\n\t\t\t\t\t\t\t[-134.156721, 56.021080],\n\t\t\t\t\t\t\t[-134.171731, 56.040227],\n\t\t\t\t\t\t\t[-134.190863, 56.056540],\n\t\t\t\t\t\t\t[-134.224073, 56.065223],\n\t\t\t\t\t\t\t[-134.230449, 56.068341],\n\t\t\t\t\t\t\t[-134.259913, 56.121275],\n\t\t\t\t\t\t\t[-134.262217, 56.133222],\n\t\t\t\t\t\t\t[-134.238264, 56.140863],\n\t\t\t\t\t\t\t[-134.227942, 56.162835],\n\t\t\t\t\t\t\t[-134.257478, 56.221411],\n\t\t\t\t\t\t\t[-134.246307, 56.267768],\n\t\t\t\t\t\t\t[-134.281387, 56.286218],\n\t\t\t\t\t\t\t[-134.295634, 56.289228],\n\t\t\t\t\t\t\t[-134.298292, 56.291993],\n\t\t\t\t\t\t\t[-134.292353, 56.352644],\n\t\t\t\t\t\t\t[-134.238139, 56.382806],\n\t\t\t\t\t\t\t[-134.193922, 56.409906],\n\t\t\t\t\t\t\t[-134.190494, 56.429749],\n\t\t\t\t\t\t\t[-134.196394, 56.439800],\n\t\t\t\t\t\t\t[-134.210968, 56.450498],\n\t\t\t\t\t\t\t[-134.236978, 56.452363],\n\t\t\t\t\t\t\t[-134.246627, 56.457135],\n\t\t\t\t\t\t\t[-134.246179, 56.463511],\n\t\t\t\t\t\t\t[-134.244667, 56.465100],\n\t\t\t\t\t\t\t[-134.222814, 56.475402],\n\t\t\t\t\t\t\t[-134.200909, 56.463297],\n\t\t\t\t\t\t\t[-134.186476, 56.450571],\n\t\t\t\t\t\t\t[-134.179214, 56.440305],\n\t\t\t\t\t\t\t[-134.146136, 56.411069],\n\t\t\t\t\t\t\t[-134.067466, 56.390987],\n\t\t\t\t\t\t\t[-134.046227, 56.402275],\n\t\t\t\t\t\t\t[-134.042704, 56.407697],\n\t\t\t\t\t\t\t[-134.040938, 56.421530],\n\t\t\t\t\t\t\t[-134.089604, 56.472582],\n\t\t\t\t\t\t\t[-134.133892, 56.487825],\n\t\t\t\t\t\t\t[-134.252386, 56.560861],\n\t\t\t\t\t\t\t[-134.281093, 56.585555],\n\t\t\t\t\t\t\t[-134.276735, 56.620290],\n\t\t\t\t\t\t\t[-134.309869, 56.650509],\n\t\t\t\t\t\t\t[-134.369035, 56.678022],\n\t\t\t\t\t\t\t[-134.401407, 56.725419],\n\t\t\t\t\t\t\t[-134.419791, 56.838385],\n\t\t\t\t\t\t\t[-134.418940, 56.846524],\n\t\t\t\t\t\t\t[-134.411471, 56.855837],\n\t\t\t\t\t\t\t[-134.376975, 56.880055],\n\t\t\t\t\t\t\t[-134.339168, 56.901830],\n\t\t\t\t\t\t\t[-134.316868, 56.909091],\n\t\t\t\t\t\t\t[-134.294362, 56.908714],\n\t\t\t\t\t\t\t[-134.286818, 56.906534],\n\t\t\t\t\t\t\t[-134.190950, 56.861675],\n\t\t\t\t\t\t\t[-134.187063, 56.856714],\n\t\t\t\t\t\t\t[-134.171675, 56.851218],\n\t\t\t\t\t\t\t[-134.147160, 56.859357],\n\t\t\t\t\t\t\t[-134.141933, 56.874188],\n\t\t\t\t\t\t\t[-134.150935, 56.884958],\n\t\t\t\t\t\t\t[-134.181383, 56.892572],\n\t\t\t\t\t\t\t[-134.220002, 56.905084],\n\t\t\t\t\t\t\t[-134.273113, 56.933823],\n\t\t\t\t\t\t\t[-134.271664, 56.935928],\n\t\t\t\t\t\t\t[-134.249327, 56.937374],\n\t\t\t\t\t\t\t[-134.223939, 56.932553],\n\t\t\t\t\t\t\t[-134.178507, 56.914018],\n\t\t\t\t\t\t\t[-134.158108, 56.915029],\n\t\t\t\t\t\t\t[-134.136240, 56.928842],\n\t\t\t\t\t\t\t[-134.141236, 56.942081],\n\t\t\t\t\t\t\t[-134.141385, 56.950887],\n\t\t\t\t\t\t\t[-134.126562, 56.947381],\n\t\t\t\t\t\t\t[-134.083291, 56.931579],\n\t\t\t\t\t\t\t[-134.035140, 56.894510],\n\t\t\t\t\t\t\t[-133.972257, 56.826934],\n\t\t\t\t\t\t\t[-133.946767, 56.798924],\n\t\t\t\t\t\t\t[-133.925648, 56.758912],\n\t\t\t\t\t\t\t[-133.944663, 56.736433],\n\t\t\t\t\t\t\t[-133.941801, 56.733493],\n\t\t\t\t\t\t\t[-133.907795, 56.721840],\n\t\t\t\t\t\t\t[-133.880781, 56.721396],\n\t\t\t\t\t\t\t[-133.869334, 56.734081],\n\t\t\t\t\t\t\t[-133.862981, 56.755650],\n\t\t\t\t\t\t\t[-133.865056, 56.773240],\n\t\t\t\t\t\t\t[-133.867616, 56.782025],\n\t\t\t\t\t\t\t[-133.872250, 56.786186],\n\t\t\t\t\t\t\t[-133.877395, 56.789192],\n\t\t\t\t\t\t\t[-133.884755, 56.788656],\n\t\t\t\t\t\t\t[-133.890005, 56.792468],\n\t\t\t\t\t\t\t[-133.893861, 56.802526],\n\t\t\t\t\t\t\t[-133.890805, 56.807980],\n\t\t\t\t\t\t\t[-133.861472, 56.808837],\n\t\t\t\t\t\t\t[-133.837925, 56.801788],\n\t\t\t\t\t\t\t[-133.818194, 56.791453],\n\t\t\t\t\t\t\t[-133.767780, 56.780469],\n\t\t\t\t\t\t\t[-133.748129, 56.773919],\n\t\t\t\t\t\t\t[-133.743376, 56.762291],\n\t\t\t\t\t\t\t[-133.744002, 56.749772],\n\t\t\t\t\t\t\t[-133.766143, 56.728886],\n\t\t\t\t\t\t\t[-133.766143, 56.718242],\n\t\t\t\t\t\t\t[-133.762049, 56.696135],\n\t\t\t\t\t\t\t[-133.762780, 56.687180],\n\t\t\t\t\t\t\t[-133.759650, 56.675913],\n\t\t\t\t\t\t\t[-133.745673, 56.674028],\n\t\t\t\t\t\t\t[-133.728479, 56.642915],\n\t\t\t\t\t\t\t[-133.727728, 56.630846],\n\t\t\t\t\t\t\t[-133.713331, 56.598298],\n\t\t\t\t\t\t\t[-133.713331, 56.592664],\n\t\t\t\t\t\t\t[-133.723142, 56.583962],\n\t\t\t\t\t\t\t[-133.731617, 56.572304],\n\t\t\t\t\t\t\t[-133.848207, 56.573057],\n\t\t\t\t\t\t\t[-133.895746, 56.511217],\n\t\t\t\t\t\t\t[-133.898589, 56.489877],\n\t\t\t\t\t\t\t[-133.881080, 56.480803],\n\t\t\t\t\t\t\t[-133.868625, 56.470919],\n\t\t\t\t\t\t\t[-133.839117, 56.434885],\n\t\t\t\t\t\t\t[-133.839238, 56.432018],\n\t\t\t\t\t\t\t[-133.859104, 56.430348],\n\t\t\t\t\t\t\t[-133.869729, 56.431796],\n\t\t\t\t\t\t\t[-133.893040, 56.427364],\n\t\t\t\t\t\t\t[-133.933512, 56.375428],\n\t\t\t\t\t\t\t[-133.894358, 56.360989],\n\t\t\t\t\t\t\t[-133.850314, 56.347417],\n\t\t\t\t\t\t\t[-133.839099, 56.335467],\n\t\t\t\t\t\t\t[-133.834671, 56.322382],\n\t\t\t\t\t\t\t[-133.890940, 56.234467],\n\t\t\t\t\t\t\t[-133.912992, 56.208351],\n\t\t\t\t\t\t\t[-133.923420, 56.211725],\n\t\t\t\t\t\t\t[-133.942205, 56.209460],\n\t\t\t\t\t\t\t[-133.953825, 56.206661],\n\t\t\t\t\t\t\t[-133.957471, 56.202584],\n\t\t\t\t\t\t\t[-133.957575, 56.199887],\n\t\t\t\t\t\t\t[-133.937349, 56.166129],\n\t\t\t\t\t\t\t[-133.956411, 56.095484],\n\t\t\t\t\t\t\t[-133.971228, 56.083293],\n\t\t\t\t\t\t\t[-133.989359, 56.081347],\n\t\t\t\t\t\t\t[-134.013920, 56.085374],\n\t\t\t\t\t\t\t[-134.021028, 56.088745],\n\t\t\t\t\t\t\t[-134.038695, 56.105807],\n\t\t\t\t\t\t\t[-134.041765, 56.116337],\n\t\t\t\t\t\t\t[-134.029643, 56.134864],\n\t\t\t\t\t\t\t[-134.024495, 56.148164],\n\t\t\t\t\t\t\t[-134.024356, 56.160382],\n\t\t\t\t\t\t\t[-134.030964, 56.193214],\n\t\t\t\t\t\t\t[-134.054411, 56.224854],\n\t\t\t\t\t\t\t[-134.058499, 56.227214],\n\t\t\t\t\t\t\t[-134.087317, 56.225424],\n\t\t\t\t\t\t\t[-134.095013, 56.214751],\n\t\t\t\t\t\t\t[-134.105098, 56.180941],\n\t\t\t\t\t\t\t[-134.153663, 56.169700],\n\t\t\t\t\t\t\t[-134.161971, 56.170153],\n\t\t\t\t\t\t\t[-134.180057, 56.161635],\n\t\t\t\t\t\t\t[-134.190371, 56.152571],\n\t\t\t\t\t\t\t[-134.166141, 56.144564],\n\t\t\t\t\t\t\t[-134.125902, 56.139804],\n\t\t\t\t\t\t\t[-134.110755, 56.141053],\n\t\t\t\t\t\t\t[-134.109236, 56.078732],\n\t\t\t\t\t\t\t[-134.121514, 56.069847]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-132.546463, 56.606563],\n\t\t\t\t\t\t\t[-132.539698, 56.593199],\n\t\t\t\t\t\t\t[-132.541282, 56.584573],\n\t\t\t\t\t\t\t[-132.610830, 56.556252],\n\t\t\t\t\t\t\t[-132.627435, 56.552428],\n\t\t\t\t\t\t\t[-132.628511, 56.553553],\n\t\t\t\t\t\t\t[-132.650910, 56.552127],\n\t\t\t\t\t\t\t[-132.701275, 56.529580],\n\t\t\t\t\t\t\t[-132.724189, 56.515371],\n\t\t\t\t\t\t\t[-132.796627, 56.496471],\n\t\t\t\t\t\t\t[-132.818043, 56.494934],\n\t\t\t\t\t\t\t[-132.874282, 56.509108],\n\t\t\t\t\t\t\t[-132.984751, 56.512640],\n\t\t\t\t\t\t\t[-132.986907, 56.510784],\n\t\t\t\t\t\t\t[-133.041726, 56.518356],\n\t\t\t\t\t\t\t[-133.071828, 56.553483],\n\t\t\t\t\t\t\t[-133.075496, 56.578684],\n\t\t\t\t\t\t\t[-133.025091, 56.605048],\n\t\t\t\t\t\t\t[-133.110329, 56.669727],\n\t\t\t\t\t\t\t[-133.143198, 56.682979],\n\t\t\t\t\t\t\t[-133.184363, 56.706526],\n\t\t\t\t\t\t\t[-133.212185, 56.736822],\n\t\t\t\t\t\t\t[-133.225298, 56.755591],\n\t\t\t\t\t\t\t[-133.233331, 56.771095],\n\t\t\t\t\t\t\t[-133.235251, 56.775639],\n\t\t\t\t\t\t\t[-133.233646, 56.779447],\n\t\t\t\t\t\t\t[-133.244689, 56.792649],\n\t\t\t\t\t\t\t[-133.264047, 56.814544],\n\t\t\t\t\t\t\t[-133.277352, 56.816432],\n\t\t\t\t\t\t\t[-133.325392, 56.791864],\n\t\t\t\t\t\t\t[-133.334308, 56.773402],\n\t\t\t\t\t\t\t[-133.332845, 56.761663],\n\t\t\t\t\t\t\t[-133.319860, 56.737693],\n\t\t\t\t\t\t\t[-133.303752, 56.729879],\n\t\t\t\t\t\t\t[-133.272958, 56.733653],\n\t\t\t\t\t\t\t[-133.266844, 56.734882],\n\t\t\t\t\t\t\t[-133.265608, 56.738237],\n\t\t\t\t\t\t\t[-133.266768, 56.741943],\n\t\t\t\t\t\t\t[-133.261381, 56.747459],\n\t\t\t\t\t\t\t[-133.250686, 56.751431],\n\t\t\t\t\t\t\t[-133.219681, 56.706887],\n\t\t\t\t\t\t\t[-133.221517, 56.697886],\n\t\t\t\t\t\t\t[-133.232516, 56.681336],\n\t\t\t\t\t\t\t[-133.233684, 56.649286],\n\t\t\t\t\t\t\t[-133.214228, 56.649592],\n\t\t\t\t\t\t\t[-133.151444, 56.637672],\n\t\t\t\t\t\t\t[-133.106316, 56.618393],\n\t\t\t\t\t\t\t[-133.103363, 56.614645],\n\t\t\t\t\t\t\t[-133.089388, 56.535474],\n\t\t\t\t\t\t\t[-133.089215, 56.523916],\n\t\t\t\t\t\t\t[-133.112907, 56.529295],\n\t\t\t\t\t\t\t[-133.138307, 56.532923],\n\t\t\t\t\t\t\t[-133.142099, 56.528591],\n\t\t\t\t\t\t\t[-133.142482, 56.519697],\n\t\t\t\t\t\t\t[-133.139228, 56.515994],\n\t\t\t\t\t\t\t[-133.124726, 56.511439],\n\t\t\t\t\t\t\t[-133.122245, 56.492020],\n\t\t\t\t\t\t\t[-133.148730, 56.467357],\n\t\t\t\t\t\t\t[-133.160996, 56.460257],\n\t\t\t\t\t\t\t[-133.203584, 56.447657],\n\t\t\t\t\t\t\t[-133.348504, 56.469568],\n\t\t\t\t\t\t\t[-133.356300, 56.471794],\n\t\t\t\t\t\t\t[-133.361615, 56.486073],\n\t\t\t\t\t\t\t[-133.371889, 56.493689],\n\t\t\t\t\t\t\t[-133.376245, 56.495592],\n\t\t\t\t\t\t\t[-133.401797, 56.496355],\n\t\t\t\t\t\t\t[-133.417795, 56.494147],\n\t\t\t\t\t\t\t[-133.428585, 56.479247],\n\t\t\t\t\t\t\t[-133.460634, 56.454120],\n\t\t\t\t\t\t\t[-133.512684, 56.437015],\n\t\t\t\t\t\t\t[-133.532969, 56.434751],\n\t\t\t\t\t\t\t[-133.603669, 56.435413],\n\t\t\t\t\t\t\t[-133.638349, 56.438881],\n\t\t\t\t\t\t\t[-133.655468, 56.442279],\n\t\t\t\t\t\t\t[-133.663094, 56.448073],\n\t\t\t\t\t\t\t[-133.671653, 56.487656],\n\t\t\t\t\t\t\t[-133.675836, 56.522714],\n\t\t\t\t\t\t\t[-133.675696, 56.538672],\n\t\t\t\t\t\t\t[-133.672262, 56.544152],\n\t\t\t\t\t\t\t[-133.664509, 56.550727],\n\t\t\t\t\t\t\t[-133.662631, 56.555735],\n\t\t\t\t\t\t\t[-133.663064, 56.562070],\n\t\t\t\t\t\t\t[-133.667639, 56.576390],\n\t\t\t\t\t\t\t[-133.662631, 56.598924],\n\t\t\t\t\t\t\t[-133.667639, 56.607687],\n\t\t\t\t\t\t\t[-133.673621, 56.611801],\n\t\t\t\t\t\t\t[-133.679352, 56.633089],\n\t\t\t\t\t\t\t[-133.689178, 56.643734],\n\t\t\t\t\t\t\t[-133.698309, 56.649624],\n\t\t\t\t\t\t\t[-133.705820, 56.658387],\n\t\t\t\t\t\t\t[-133.709576, 56.683424],\n\t\t\t\t\t\t\t[-133.706372, 56.696954],\n\t\t\t\t\t\t\t[-133.699822, 56.710054],\n\t\t\t\t\t\t\t[-133.696547, 56.744443],\n\t\t\t\t\t\t\t[-133.689996, 56.761637],\n\t\t\t\t\t\t\t[-133.686416, 56.779817],\n\t\t\t\t\t\t\t[-133.680990, 56.795207],\n\t\t\t\t\t\t\t[-133.679352, 56.810764],\n\t\t\t\t\t\t\t[-133.689996, 56.839421],\n\t\t\t\t\t\t\t[-133.699822, 56.839421],\n\t\t\t\t\t\t\t[-133.712922, 56.827958],\n\t\t\t\t\t\t\t[-133.741579, 56.813220],\n\t\t\t\t\t\t\t[-133.765324, 56.807489],\n\t\t\t\t\t\t\t[-133.772302, 56.809495],\n\t\t\t\t\t\t\t[-133.787484, 56.821366],\n\t\t\t\t\t\t\t[-133.795364, 56.824586],\n\t\t\t\t\t\t\t[-133.869040, 56.845938],\n\t\t\t\t\t\t\t[-133.887426, 56.868391],\n\t\t\t\t\t\t\t[-133.916358, 56.914447],\n\t\t\t\t\t\t\t[-133.903634, 56.927269],\n\t\t\t\t\t\t\t[-133.921451, 56.961511],\n\t\t\t\t\t\t\t[-133.967060, 56.988044],\n\t\t\t\t\t\t\t[-134.049218, 57.029203],\n\t\t\t\t\t\t\t[-134.033979, 57.063281],\n\t\t\t\t\t\t\t[-134.008856, 57.074578],\n\t\t\t\t\t\t\t[-133.887957, 57.097744],\n\t\t\t\t\t\t\t[-133.773464, 57.078676],\n\t\t\t\t\t\t\t[-133.702925, 57.065206],\n\t\t\t\t\t\t\t[-133.613908, 57.057978],\n\t\t\t\t\t\t\t[-133.536258, 57.038700],\n\t\t\t\t\t\t\t[-133.446204, 57.020124],\n\t\t\t\t\t\t\t[-133.362502, 57.007424],\n\t\t\t\t\t\t\t[-133.346321, 57.004118],\n\t\t\t\t\t\t\t[-133.344217, 57.001834],\n\t\t\t\t\t\t\t[-133.334272, 57.002442],\n\t\t\t\t\t\t\t[-133.325058, 57.011711],\n\t\t\t\t\t\t\t[-133.308317, 57.014762],\n\t\t\t\t\t\t\t[-133.104611, 57.005701],\n\t\t\t\t\t\t\t[-132.997430, 56.942201],\n\t\t\t\t\t\t\t[-132.981370, 56.927380],\n\t\t\t\t\t\t\t[-132.947081, 56.870963],\n\t\t\t\t\t\t\t[-132.935933, 56.839963],\n\t\t\t\t\t\t\t[-132.935258, 56.822941],\n\t\t\t\t\t\t\t[-132.903211, 56.803610],\n\t\t\t\t\t\t\t[-132.872512, 56.798144],\n\t\t\t\t\t\t\t[-132.853150, 56.797810],\n\t\t\t\t\t\t\t[-132.820556, 56.793787],\n\t\t\t\t\t\t\t[-132.762964, 56.753227],\n\t\t\t\t\t\t\t[-132.741709, 56.724278],\n\t\t\t\t\t\t\t[-132.743207, 56.713720],\n\t\t\t\t\t\t\t[-132.665874, 56.680241],\n\t\t\t\t\t\t\t[-132.628129, 56.668830],\n\t\t\t\t\t\t\t[-132.622788, 56.668710],\n\t\t\t\t\t\t\t[-132.619258, 56.660778],\n\t\t\t\t\t\t\t[-132.625450, 56.653210],\n\t\t\t\t\t\t\t[-132.628201, 56.645642],\n\t\t\t\t\t\t\t[-132.625450, 56.642202],\n\t\t\t\t\t\t\t[-132.616506, 56.639450],\n\t\t\t\t\t\t\t[-132.605498, 56.623627],\n\t\t\t\t\t\t\t[-132.595179, 56.613308],\n\t\t\t\t\t\t\t[-132.574540, 56.612620],\n\t\t\t\t\t\t\t[-132.560780, 56.607804],\n\t\t\t\t\t\t\t[-132.553213, 56.608492],\n\t\t\t\t\t\t\t[-132.546463, 56.606563]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-132.080112, 56.924153],\n\t\t\t\t\t\t\t[-132.234041, 56.881504],\n\t\t\t\t\t\t\t[-132.322505, 56.738582],\n\t\t\t\t\t\t\t[-132.522398, 56.716256],\n\t\t\t\t\t\t\t[-132.517127, 56.728632],\n\t\t\t\t\t\t\t[-132.432385, 56.782385],\n\t\t\t\t\t\t\t[-132.371032, 56.816413],\n\t\t\t\t\t\t\t[-132.373615, 56.820353],\n\t\t\t\t\t\t\t[-132.390129, 56.825837],\n\t\t\t\t\t\t\t[-132.404564, 56.825506],\n\t\t\t\t\t\t\t[-132.438330, 56.821117],\n\t\t\t\t\t\t\t[-132.505513, 56.785485],\n\t\t\t\t\t\t\t[-132.519457, 56.775455],\n\t\t\t\t\t\t\t[-132.520712, 56.760116],\n\t\t\t\t\t\t\t[-132.532002, 56.757141],\n\t\t\t\t\t\t\t[-132.556758, 56.757242],\n\t\t\t\t\t\t\t[-132.637458, 56.780910],\n\t\t\t\t\t\t\t[-132.770404, 56.837486],\n\t\t\t\t\t\t\t[-132.792089, 56.856152],\n\t\t\t\t\t\t\t[-132.797107, 56.864922],\n\t\t\t\t\t\t\t[-132.793601, 56.866364],\n\t\t\t\t\t\t\t[-132.792727, 56.871673],\n\t\t\t\t\t\t\t[-132.796999, 56.877790],\n\t\t\t\t\t\t\t[-132.817890, 56.896901],\n\t\t\t\t\t\t\t[-132.829346, 56.903573],\n\t\t\t\t\t\t\t[-132.846744, 56.910635],\n\t\t\t\t\t\t\t[-132.870340, 56.925682],\n\t\t\t\t\t\t\t[-132.911970, 56.966651],\n\t\t\t\t\t\t\t[-132.918967, 56.993673],\n\t\t\t\t\t\t\t[-132.892388, 56.993016],\n\t\t\t\t\t\t\t[-132.853636, 57.005343],\n\t\t\t\t\t\t\t[-132.813684, 57.030218],\n\t\t\t\t\t\t\t[-132.832220, 57.070408],\n\t\t\t\t\t\t\t[-132.853284, 57.080077],\n\t\t\t\t\t\t\t[-132.870116, 57.078424],\n\t\t\t\t\t\t\t[-132.875197, 57.069577],\n\t\t\t\t\t\t\t[-132.916487, 57.040086],\n\t\t\t\t\t\t\t[-132.937520, 57.048321],\n\t\t\t\t\t\t\t[-132.984307, 57.054845],\n\t\t\t\t\t\t\t[-132.993944, 57.032353],\n\t\t\t\t\t\t\t[-133.025050, 57.057322],\n\t\t\t\t\t\t\t[-133.076481, 57.081733],\n\t\t\t\t\t\t\t[-133.125306, 57.088891],\n\t\t\t\t\t\t\t[-133.161448, 57.086264],\n\t\t\t\t\t\t\t[-133.188074, 57.088973],\n\t\t\t\t\t\t\t[-133.208726, 57.109699],\n\t\t\t\t\t\t\t[-133.210261, 57.118453],\n\t\t\t\t\t\t\t[-133.206655, 57.123834],\n\t\t\t\t\t\t\t[-133.224656, 57.136522],\n\t\t\t\t\t\t\t[-133.234880, 57.137937],\n\t\t\t\t\t\t\t[-133.247414, 57.136802],\n\t\t\t\t\t\t\t[-133.322359, 57.112727],\n\t\t\t\t\t\t\t[-133.466932, 57.159356],\n\t\t\t\t\t\t\t[-133.517194, 57.177775],\n\t\t\t\t\t\t\t[-133.299692, 57.237727],\n\t\t\t\t\t\t\t[-133.126997, 57.186322],\n\t\t\t\t\t\t\t[-133.029298, 57.235539],\n\t\t\t\t\t\t\t[-132.986359, 57.330823],\n\t\t\t\t\t\t\t[-132.644590, 57.426343],\n\t\t\t\t\t\t\t[-132.487307, 57.354227],\n\t\t\t\t\t\t\t[-132.367984, 57.348685],\n\t\t\t\t\t\t\t[-132.252187, 57.215655],\n\t\t\t\t\t\t\t[-132.214442, 57.108167],\n\t\t\t\t\t\t\t[-132.115075, 57.045602],\n\t\t\t\t\t\t\t[-132.080112, 56.924153]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US02220\",\n\t\t\t\t\"STATE\": \"02\",\n\t\t\t\t\"COUNTY\": \"220\",\n\t\t\t\t\"NAME\": \"Sitka\",\n\t\t\t\t\"LSAD\": \"Cty&Bor\",\n\t\t\t\t\"CENSUSAREA\": 2870.339000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-136.370705, 57.831668],\n\t\t\t\t\t\t\t[-136.026713, 57.835869],\n\t\t\t\t\t\t\t[-135.906742, 58.001266],\n\t\t\t\t\t\t\t[-135.899839, 58.001387],\n\t\t\t\t\t\t\t[-135.587961, 57.897320],\n\t\t\t\t\t\t\t[-135.596769, 57.889705],\n\t\t\t\t\t\t\t[-135.589170, 57.886409],\n\t\t\t\t\t\t\t[-135.575718, 57.883548],\n\t\t\t\t\t\t\t[-135.518882, 57.857383],\n\t\t\t\t\t\t\t[-135.503498, 57.840860],\n\t\t\t\t\t\t\t[-135.469477, 57.834466],\n\t\t\t\t\t\t\t[-135.377758, 57.802212],\n\t\t\t\t\t\t\t[-135.376444, 57.792039],\n\t\t\t\t\t\t\t[-135.364221, 57.775347],\n\t\t\t\t\t\t\t[-135.328887, 57.748420],\n\t\t\t\t\t\t\t[-135.291560, 57.737468],\n\t\t\t\t\t\t\t[-135.201461, 57.728171],\n\t\t\t\t\t\t\t[-135.151475, 57.738296],\n\t\t\t\t\t\t\t[-135.098422, 57.754898],\n\t\t\t\t\t\t\t[-135.063972, 57.750847],\n\t\t\t\t\t\t\t[-135.024837, 57.742990],\n\t\t\t\t\t\t\t[-135.012577, 57.746105],\n\t\t\t\t\t\t\t[-134.978120, 57.763125],\n\t\t\t\t\t\t\t[-134.939924, 57.763612],\n\t\t\t\t\t\t\t[-134.929726, 57.759203],\n\t\t\t\t\t\t\t[-134.921604, 57.742376],\n\t\t\t\t\t\t\t[-134.914790, 57.705821],\n\t\t\t\t\t\t\t[-134.918167, 57.682272],\n\t\t\t\t\t\t\t[-134.867433, 57.623439],\n\t\t\t\t\t\t\t[-134.856386, 57.598967],\n\t\t\t\t\t\t\t[-134.824891, 57.500067],\n\t\t\t\t\t\t\t[-134.837120, 57.482761],\n\t\t\t\t\t\t\t[-134.874346, 57.464406],\n\t\t\t\t\t\t\t[-134.902680, 57.459349],\n\t\t\t\t\t\t\t[-135.025148, 57.454315],\n\t\t\t\t\t\t\t[-135.084338, 57.464671],\n\t\t\t\t\t\t\t[-135.091216, 57.466352],\n\t\t\t\t\t\t\t[-135.096818, 57.469916],\n\t\t\t\t\t\t\t[-135.134063, 57.497681],\n\t\t\t\t\t\t\t[-135.242855, 57.546302],\n\t\t\t\t\t\t\t[-135.325849, 57.577178],\n\t\t\t\t\t\t\t[-135.392499, 57.599909],\n\t\t\t\t\t\t\t[-135.474703, 57.631381],\n\t\t\t\t\t\t\t[-135.514801, 57.650349],\n\t\t\t\t\t\t\t[-135.571606, 57.674397],\n\t\t\t\t\t\t\t[-135.593447, 57.663795],\n\t\t\t\t\t\t\t[-135.650701, 57.652520],\n\t\t\t\t\t\t\t[-135.684951, 57.677508],\n\t\t\t\t\t\t\t[-135.712317, 57.672648],\n\t\t\t\t\t\t\t[-135.704444, 57.658361],\n\t\t\t\t\t\t\t[-135.697422, 57.649711],\n\t\t\t\t\t\t\t[-135.660902, 57.629196],\n\t\t\t\t\t\t\t[-135.592778, 57.602474],\n\t\t\t\t\t\t\t[-135.571186, 57.605367],\n\t\t\t\t\t\t\t[-135.546143, 57.613826],\n\t\t\t\t\t\t\t[-135.526303, 57.606388],\n\t\t\t\t\t\t\t[-135.511012, 57.595906],\n\t\t\t\t\t\t\t[-135.519471, 57.588615],\n\t\t\t\t\t\t\t[-135.527610, 57.589003],\n\t\t\t\t\t\t\t[-135.557812, 57.583449],\n\t\t\t\t\t\t\t[-135.570574, 57.579613],\n\t\t\t\t\t\t\t[-135.587475, 57.568829],\n\t\t\t\t\t\t\t[-135.588477, 57.552081],\n\t\t\t\t\t\t\t[-135.575724, 57.522874],\n\t\t\t\t\t\t\t[-135.577831, 57.520530],\n\t\t\t\t\t\t\t[-135.578215, 57.516445],\n\t\t\t\t\t\t\t[-135.565271, 57.510209],\n\t\t\t\t\t\t\t[-135.549627, 57.482016],\n\t\t\t\t\t\t\t[-135.550310, 57.470141],\n\t\t\t\t\t\t\t[-135.553903, 57.454870],\n\t\t\t\t\t\t\t[-135.557765, 57.451966],\n\t\t\t\t\t\t\t[-135.610454, 57.442232],\n\t\t\t\t\t\t\t[-135.613576, 57.438173],\n\t\t\t\t\t\t\t[-135.611786, 57.431154],\n\t\t\t\t\t\t\t[-135.612882, 57.424907],\n\t\t\t\t\t\t\t[-135.621725, 57.419245],\n\t\t\t\t\t\t\t[-135.626558, 57.409961],\n\t\t\t\t\t\t\t[-135.647179, 57.406132],\n\t\t\t\t\t\t\t[-135.664449, 57.407229],\n\t\t\t\t\t\t\t[-135.667985, 57.405124],\n\t\t\t\t\t\t\t[-135.669837, 57.400578],\n\t\t\t\t\t\t\t[-135.670267, 57.396215],\n\t\t\t\t\t\t\t[-135.668153, 57.392832],\n\t\t\t\t\t\t\t[-135.669416, 57.389296],\n\t\t\t\t\t\t\t[-135.691043, 57.383518],\n\t\t\t\t\t\t\t[-135.692400, 57.375267],\n\t\t\t\t\t\t\t[-135.711401, 57.367760],\n\t\t\t\t\t\t\t[-135.720478, 57.373663],\n\t\t\t\t\t\t\t[-135.768018, 57.383435],\n\t\t\t\t\t\t\t[-135.843810, 57.390896],\n\t\t\t\t\t\t\t[-135.892131, 57.408048],\n\t\t\t\t\t\t\t[-135.900816, 57.418181],\n\t\t\t\t\t\t\t[-135.896979, 57.440719],\n\t\t\t\t\t\t\t[-135.943766, 57.458780],\n\t\t\t\t\t\t\t[-135.966986, 57.472759],\n\t\t\t\t\t\t\t[-136.014529, 57.506227],\n\t\t\t\t\t\t\t[-136.030458, 57.521540],\n\t\t\t\t\t\t\t[-136.021283, 57.531551],\n\t\t\t\t\t\t\t[-136.001717, 57.544499],\n\t\t\t\t\t\t\t[-136.061747, 57.592068],\n\t\t\t\t\t\t\t[-136.106796, 57.616567],\n\t\t\t\t\t\t\t[-136.130611, 57.624607],\n\t\t\t\t\t\t\t[-136.187897, 57.625730],\n\t\t\t\t\t\t\t[-136.207876, 57.638107],\n\t\t\t\t\t\t\t[-136.280809, 57.717379],\n\t\t\t\t\t\t\t[-136.314631, 57.758703],\n\t\t\t\t\t\t\t[-136.304684, 57.771051],\n\t\t\t\t\t\t\t[-136.309429, 57.779465],\n\t\t\t\t\t\t\t[-136.365052, 57.828561],\n\t\t\t\t\t\t\t[-136.370705, 57.831668]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-134.666587, 56.169947],\n\t\t\t\t\t\t\t[-134.668151, 56.167026],\n\t\t\t\t\t\t\t[-134.674028, 56.166925],\n\t\t\t\t\t\t\t[-134.705007, 56.175722],\n\t\t\t\t\t\t\t[-134.806163, 56.235533],\n\t\t\t\t\t\t\t[-134.824902, 56.279692],\n\t\t\t\t\t\t\t[-134.839411, 56.309403],\n\t\t\t\t\t\t\t[-134.915911, 56.360555],\n\t\t\t\t\t\t\t[-134.945704, 56.389710],\n\t\t\t\t\t\t\t[-134.990763, 56.457998],\n\t\t\t\t\t\t\t[-135.023780, 56.499977],\n\t\t\t\t\t\t\t[-135.054049, 56.527658],\n\t\t\t\t\t\t\t[-135.058238, 56.529453],\n\t\t\t\t\t\t\t[-135.060878, 56.541965],\n\t\t\t\t\t\t\t[-135.056756, 56.570611],\n\t\t\t\t\t\t\t[-135.045054, 56.583392],\n\t\t\t\t\t\t\t[-135.026740, 56.594625],\n\t\t\t\t\t\t\t[-135.005249, 56.602252],\n\t\t\t\t\t\t\t[-134.997669, 56.597272],\n\t\t\t\t\t\t\t[-134.985881, 56.595844],\n\t\t\t\t\t\t\t[-134.967164, 56.603026],\n\t\t\t\t\t\t\t[-134.969842, 56.615392],\n\t\t\t\t\t\t\t[-134.979386, 56.627676],\n\t\t\t\t\t\t\t[-134.998369, 56.630017],\n\t\t\t\t\t\t\t[-135.029747, 56.628918],\n\t\t\t\t\t\t\t[-135.036432, 56.619628],\n\t\t\t\t\t\t\t[-135.065693, 56.607852],\n\t\t\t\t\t\t\t[-135.091611, 56.600068],\n\t\t\t\t\t\t\t[-135.103271, 56.597927],\n\t\t\t\t\t\t\t[-135.118709, 56.597728],\n\t\t\t\t\t\t\t[-135.123389, 56.602823],\n\t\t\t\t\t\t\t[-135.148836, 56.648915],\n\t\t\t\t\t\t\t[-135.147761, 56.651932],\n\t\t\t\t\t\t\t[-135.175826, 56.677876],\n\t\t\t\t\t\t\t[-135.224142, 56.687858],\n\t\t\t\t\t\t\t[-135.274910, 56.701633],\n\t\t\t\t\t\t\t[-135.305077, 56.726382],\n\t\t\t\t\t\t\t[-135.317429, 56.743311],\n\t\t\t\t\t\t\t[-135.318082, 56.748688],\n\t\t\t\t\t\t\t[-135.296430, 56.756294],\n\t\t\t\t\t\t\t[-135.281608, 56.758528],\n\t\t\t\t\t\t\t[-135.280875, 56.768357],\n\t\t\t\t\t\t\t[-135.310159, 56.778093],\n\t\t\t\t\t\t\t[-135.352176, 56.771196],\n\t\t\t\t\t\t\t[-135.398678, 56.779201],\n\t\t\t\t\t\t\t[-135.412989, 56.810079],\n\t\t\t\t\t\t\t[-135.408542, 56.826014],\n\t\t\t\t\t\t\t[-135.368899, 56.892589],\n\t\t\t\t\t\t\t[-135.347244, 56.899980],\n\t\t\t\t\t\t\t[-135.332356, 56.913951],\n\t\t\t\t\t\t\t[-135.354090, 56.936500],\n\t\t\t\t\t\t\t[-135.379725, 56.953039],\n\t\t\t\t\t\t\t[-135.383376, 56.981544],\n\t\t\t\t\t\t\t[-135.360232, 57.002231],\n\t\t\t\t\t\t\t[-135.342801, 57.001874],\n\t\t\t\t\t\t\t[-135.329492, 57.004507],\n\t\t\t\t\t\t\t[-135.325216, 57.010866],\n\t\t\t\t\t\t\t[-135.312780, 57.044984],\n\t\t\t\t\t\t\t[-135.333998, 57.050403],\n\t\t\t\t\t\t\t[-135.349229, 57.041535],\n\t\t\t\t\t\t\t[-135.374100, 57.045391],\n\t\t\t\t\t\t\t[-135.377763, 57.052910],\n\t\t\t\t\t\t\t[-135.369858, 57.057923],\n\t\t\t\t\t\t\t[-135.365710, 57.066062],\n\t\t\t\t\t\t\t[-135.378337, 57.081622],\n\t\t\t\t\t\t\t[-135.384617, 57.087725],\n\t\t\t\t\t\t\t[-135.388859, 57.089026],\n\t\t\t\t\t\t\t[-135.401721, 57.098654],\n\t\t\t\t\t\t\t[-135.404140, 57.109318],\n\t\t\t\t\t\t\t[-135.405293, 57.114508],\n\t\t\t\t\t\t\t[-135.406158, 57.119697],\n\t\t\t\t\t\t\t[-135.405293, 57.138149],\n\t\t\t\t\t\t\t[-135.409703, 57.148861],\n\t\t\t\t\t\t\t[-135.422746, 57.167724],\n\t\t\t\t\t\t\t[-135.399312, 57.185003],\n\t\t\t\t\t\t\t[-135.372441, 57.198063],\n\t\t\t\t\t\t\t[-135.377580, 57.206302],\n\t\t\t\t\t\t\t[-135.372021, 57.228003],\n\t\t\t\t\t\t\t[-135.361771, 57.233591],\n\t\t\t\t\t\t\t[-135.358715, 57.243776],\n\t\t\t\t\t\t\t[-135.366177, 57.248852],\n\t\t\t\t\t\t\t[-135.406086, 57.251678],\n\t\t\t\t\t\t\t[-135.414799, 57.251324],\n\t\t\t\t\t\t\t[-135.429229, 57.247213],\n\t\t\t\t\t\t\t[-135.449073, 57.248104],\n\t\t\t\t\t\t\t[-135.470189, 57.255752],\n\t\t\t\t\t\t\t[-135.477683, 57.256824],\n\t\t\t\t\t\t\t[-135.503121, 57.253809],\n\t\t\t\t\t\t\t[-135.511241, 57.247077],\n\t\t\t\t\t\t\t[-135.552574, 57.233194],\n\t\t\t\t\t\t\t[-135.561883, 57.241868],\n\t\t\t\t\t\t\t[-135.561853, 57.244067],\n\t\t\t\t\t\t\t[-135.568954, 57.255186],\n\t\t\t\t\t\t\t[-135.602297, 57.285707],\n\t\t\t\t\t\t\t[-135.604161, 57.290437],\n\t\t\t\t\t\t\t[-135.600688, 57.294074],\n\t\t\t\t\t\t\t[-135.601782, 57.300772],\n\t\t\t\t\t\t\t[-135.631415, 57.311568],\n\t\t\t\t\t\t\t[-135.637423, 57.315276],\n\t\t\t\t\t\t\t[-135.638209, 57.320278],\n\t\t\t\t\t\t\t[-135.674687, 57.336747],\n\t\t\t\t\t\t\t[-135.684597, 57.350328],\n\t\t\t\t\t\t\t[-135.695563, 57.357460],\n\t\t\t\t\t\t\t[-135.695120, 57.363077],\n\t\t\t\t\t\t\t[-135.687696, 57.367477],\n\t\t\t\t\t\t\t[-135.659614, 57.373907],\n\t\t\t\t\t\t\t[-135.639556, 57.371883],\n\t\t\t\t\t\t\t[-135.630627, 57.379595],\n\t\t\t\t\t\t\t[-135.628016, 57.383393],\n\t\t\t\t\t\t\t[-135.627022, 57.388207],\n\t\t\t\t\t\t\t[-135.633573, 57.394211],\n\t\t\t\t\t\t\t[-135.633654, 57.399102],\n\t\t\t\t\t\t\t[-135.626007, 57.399578],\n\t\t\t\t\t\t\t[-135.604184, 57.409932],\n\t\t\t\t\t\t\t[-135.585395, 57.416811],\n\t\t\t\t\t\t\t[-135.570872, 57.417459],\n\t\t\t\t\t\t\t[-135.554548, 57.426636],\n\t\t\t\t\t\t\t[-135.555321, 57.436738],\n\t\t\t\t\t\t\t[-135.557806, 57.438236],\n\t\t\t\t\t\t\t[-135.560990, 57.437455],\n\t\t\t\t\t\t\t[-135.561916, 57.438505],\n\t\t\t\t\t\t\t[-135.562234, 57.440413],\n\t\t\t\t\t\t\t[-135.562234, 57.442720],\n\t\t\t\t\t\t\t[-135.558496, 57.444788],\n\t\t\t\t\t\t\t[-135.556109, 57.446458],\n\t\t\t\t\t\t\t[-135.540158, 57.446241],\n\t\t\t\t\t\t\t[-135.534221, 57.450252],\n\t\t\t\t\t\t\t[-135.532069, 57.481117],\n\t\t\t\t\t\t\t[-135.548794, 57.508977],\n\t\t\t\t\t\t\t[-135.526036, 57.509697],\n\t\t\t\t\t\t\t[-135.491537, 57.531687],\n\t\t\t\t\t\t\t[-135.443404, 57.556876],\n\t\t\t\t\t\t\t[-135.419205, 57.564159],\n\t\t\t\t\t\t\t[-135.355749, 57.553568],\n\t\t\t\t\t\t\t[-135.347597, 57.550232],\n\t\t\t\t\t\t\t[-135.322925, 57.533476],\n\t\t\t\t\t\t\t[-135.294491, 57.510836],\n\t\t\t\t\t\t\t[-135.294837, 57.508720],\n\t\t\t\t\t\t\t[-135.308458, 57.495201],\n\t\t\t\t\t\t\t[-135.297784, 57.483721],\n\t\t\t\t\t\t\t[-135.265557, 57.480860],\n\t\t\t\t\t\t\t[-135.246114, 57.483598],\n\t\t\t\t\t\t\t[-135.227293, 57.489838],\n\t\t\t\t\t\t\t[-135.209123, 57.488753],\n\t\t\t\t\t\t\t[-135.161017, 57.460713],\n\t\t\t\t\t\t\t[-135.168056, 57.454212],\n\t\t\t\t\t\t\t[-135.159206, 57.445568],\n\t\t\t\t\t\t\t[-135.145949, 57.439049],\n\t\t\t\t\t\t\t[-135.065050, 57.418972],\n\t\t\t\t\t\t\t[-135.039634, 57.418131],\n\t\t\t\t\t\t\t[-135.026566, 57.420497],\n\t\t\t\t\t\t\t[-134.926516, 57.422267],\n\t\t\t\t\t\t\t[-134.893440, 57.420044],\n\t\t\t\t\t\t\t[-134.849477, 57.409670],\n\t\t\t\t\t\t\t[-134.806352, 57.341888],\n\t\t\t\t\t\t\t[-134.812769, 57.299765],\n\t\t\t\t\t\t\t[-134.829365, 57.294098],\n\t\t\t\t\t\t\t[-134.835211, 57.300315],\n\t\t\t\t\t\t\t[-134.884780, 57.330003],\n\t\t\t\t\t\t\t[-134.921651, 57.330713],\n\t\t\t\t\t\t\t[-134.951267, 57.328660],\n\t\t\t\t\t\t\t[-134.953951, 57.323723],\n\t\t\t\t\t\t\t[-134.955014, 57.309433],\n\t\t\t\t\t\t\t[-134.953011, 57.306131],\n\t\t\t\t\t\t\t[-134.946626, 57.303164],\n\t\t\t\t\t\t\t[-134.922329, 57.303708],\n\t\t\t\t\t\t\t[-134.879535, 57.288177],\n\t\t\t\t\t\t\t[-134.854948, 57.264766],\n\t\t\t\t\t\t\t[-134.841774, 57.248588],\n\t\t\t\t\t\t\t[-134.755886, 57.058035],\n\t\t\t\t\t\t\t[-134.737880, 57.009935],\n\t\t\t\t\t\t\t[-134.738300, 56.968059],\n\t\t\t\t\t\t\t[-134.740135, 56.948481],\n\t\t\t\t\t\t\t[-134.719275, 56.929031],\n\t\t\t\t\t\t\t[-134.695735, 56.900791],\n\t\t\t\t\t\t\t[-134.699099, 56.850864],\n\t\t\t\t\t\t\t[-134.674238, 56.825177],\n\t\t\t\t\t\t\t[-134.663434, 56.804687],\n\t\t\t\t\t\t\t[-134.633997, 56.728722],\n\t\t\t\t\t\t\t[-134.619799, 56.665888],\n\t\t\t\t\t\t\t[-134.615955, 56.637289],\n\t\t\t\t\t\t\t[-134.626943, 56.553868],\n\t\t\t\t\t\t\t[-134.634207, 56.540968],\n\t\t\t\t\t\t\t[-134.639732, 56.538835],\n\t\t\t\t\t\t\t[-134.671047, 56.541200],\n\t\t\t\t\t\t\t[-134.669778, 56.524129],\n\t\t\t\t\t\t\t[-134.663839, 56.503183],\n\t\t\t\t\t\t\t[-134.658622, 56.494676],\n\t\t\t\t\t\t\t[-134.655174, 56.492033],\n\t\t\t\t\t\t\t[-134.645308, 56.472215],\n\t\t\t\t\t\t\t[-134.636506, 56.405625],\n\t\t\t\t\t\t\t[-134.634010, 56.315840],\n\t\t\t\t\t\t\t[-134.634411, 56.285341],\n\t\t\t\t\t\t\t[-134.634668, 56.265832],\n\t\t\t\t\t\t\t[-134.653827, 56.198385],\n\t\t\t\t\t\t\t[-134.659870, 56.182494],\n\t\t\t\t\t\t\t[-134.666587, 56.169947]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-135.703464, 57.322040],\n\t\t\t\t\t\t\t[-135.702919, 57.315582],\n\t\t\t\t\t\t\t[-135.705483, 57.308557],\n\t\t\t\t\t\t\t[-135.688233, 57.276143],\n\t\t\t\t\t\t\t[-135.657272, 57.262027],\n\t\t\t\t\t\t\t[-135.655008, 57.258240],\n\t\t\t\t\t\t\t[-135.654898, 57.254742],\n\t\t\t\t\t\t\t[-135.658859, 57.247964],\n\t\t\t\t\t\t\t[-135.658600, 57.245541],\n\t\t\t\t\t\t\t[-135.656363, 57.243036],\n\t\t\t\t\t\t\t[-135.637289, 57.236124],\n\t\t\t\t\t\t\t[-135.621346, 57.223693],\n\t\t\t\t\t\t\t[-135.620735, 57.217885],\n\t\t\t\t\t\t\t[-135.604953, 57.184204],\n\t\t\t\t\t\t\t[-135.596921, 57.161196],\n\t\t\t\t\t\t\t[-135.602057, 57.149161],\n\t\t\t\t\t\t\t[-135.598600, 57.145360],\n\t\t\t\t\t\t\t[-135.592379, 57.142683],\n\t\t\t\t\t\t\t[-135.581473, 57.150599],\n\t\t\t\t\t\t\t[-135.575674, 57.150530],\n\t\t\t\t\t\t\t[-135.565707, 57.147312],\n\t\t\t\t\t\t\t[-135.565756, 57.137344],\n\t\t\t\t\t\t\t[-135.575722, 57.104231],\n\t\t\t\t\t\t\t[-135.574693, 57.094339],\n\t\t\t\t\t\t\t[-135.635347, 57.022411],\n\t\t\t\t\t\t\t[-135.650540, 57.015139],\n\t\t\t\t\t\t\t[-135.680520, 57.017342],\n\t\t\t\t\t\t\t[-135.753682, 57.008258],\n\t\t\t\t\t\t\t[-135.764949, 57.006094],\n\t\t\t\t\t\t\t[-135.767654, 57.000428],\n\t\t\t\t\t\t\t[-135.772432, 56.997301],\n\t\t\t\t\t\t\t[-135.821915, 56.988215],\n\t\t\t\t\t\t\t[-135.854131, 56.995043],\n\t\t\t\t\t\t\t[-135.857028, 56.997287],\n\t\t\t\t\t\t\t[-135.852146, 57.029699],\n\t\t\t\t\t\t\t[-135.841819, 57.070899],\n\t\t\t\t\t\t\t[-135.834890, 57.091387],\n\t\t\t\t\t\t\t[-135.805945, 57.106778],\n\t\t\t\t\t\t\t[-135.776975, 57.112555],\n\t\t\t\t\t\t\t[-135.755997, 57.121225],\n\t\t\t\t\t\t\t[-135.735559, 57.151755],\n\t\t\t\t\t\t\t[-135.735405, 57.155403],\n\t\t\t\t\t\t\t[-135.752591, 57.168834],\n\t\t\t\t\t\t\t[-135.762241, 57.173341],\n\t\t\t\t\t\t\t[-135.785583, 57.177929],\n\t\t\t\t\t\t\t[-135.800824, 57.173655],\n\t\t\t\t\t\t\t[-135.824388, 57.192862],\n\t\t\t\t\t\t\t[-135.833896, 57.254233],\n\t\t\t\t\t\t\t[-135.828831, 57.301981],\n\t\t\t\t\t\t\t[-135.840359, 57.314342],\n\t\t\t\t\t\t\t[-135.855849, 57.319960],\n\t\t\t\t\t\t\t[-135.859572, 57.323108],\n\t\t\t\t\t\t\t[-135.860558, 57.330854],\n\t\t\t\t\t\t\t[-135.851162, 57.336916],\n\t\t\t\t\t\t\t[-135.838568, 57.338756],\n\t\t\t\t\t\t\t[-135.761471, 57.342631],\n\t\t\t\t\t\t\t[-135.730323, 57.337286],\n\t\t\t\t\t\t\t[-135.715233, 57.330722],\n\t\t\t\t\t\t\t[-135.703464, 57.322040]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US02230\",\n\t\t\t\t\"STATE\": \"02\",\n\t\t\t\t\"COUNTY\": \"230\",\n\t\t\t\t\"NAME\": \"Skagway\",\n\t\t\t\t\"LSAD\": \"Muny\",\n\t\t\t\t\"CENSUSAREA\": 452.325000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-135.005180, 59.357217],\n\t\t\t\t\t\t[-135.029245, 59.345364],\n\t\t\t\t\t\t[-135.375820, 59.340621],\n\t\t\t\t\t\t[-135.722460, 59.729526],\n\t\t\t\t\t\t[-135.477436, 59.799626],\n\t\t\t\t\t\t[-135.284921, 59.714893],\n\t\t\t\t\t\t[-135.166736, 59.632240],\n\t\t\t\t\t\t[-135.153113, 59.625159],\n\t\t\t\t\t\t[-135.114588, 59.623415],\n\t\t\t\t\t\t[-135.027456, 59.563692],\n\t\t\t\t\t\t[-135.029769, 59.482444],\n\t\t\t\t\t\t[-135.040037, 59.444792],\n\t\t\t\t\t\t[-135.029769, 59.407140],\n\t\t\t\t\t\t[-135.005180, 59.357217]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05143\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"143\",\n\t\t\t\t\"NAME\": \"Washington\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 941.966000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.962892, 35.760930],\n\t\t\t\t\t\t[-94.124871, 35.750426],\n\t\t\t\t\t\t[-94.492932, 35.759166],\n\t\t\t\t\t\t[-94.493362, 35.761892],\n\t\t\t\t\t\t[-94.494549, 35.768303],\n\t\t\t\t\t\t[-94.499045, 35.793460],\n\t\t\t\t\t\t[-94.499647, 35.796910],\n\t\t\t\t\t\t[-94.500526, 35.802642],\n\t\t\t\t\t\t[-94.500764, 35.803820],\n\t\t\t\t\t\t[-94.501162, 35.806430],\n\t\t\t\t\t\t[-94.503011, 35.817210],\n\t\t\t\t\t\t[-94.504438, 35.826369],\n\t\t\t\t\t\t[-94.505642, 35.833628],\n\t\t\t\t\t\t[-94.507631, 35.845901],\n\t\t\t\t\t\t[-94.522658, 35.934250],\n\t\t\t\t\t\t[-94.522658, 35.934799],\n\t\t\t\t\t\t[-94.522634, 35.934892],\n\t\t\t\t\t\t[-94.522910, 35.936127],\n\t\t\t\t\t\t[-94.524344, 35.944050],\n\t\t\t\t\t\t[-94.524640, 35.945727],\n\t\t\t\t\t\t[-94.528162, 35.965665],\n\t\t\t\t\t\t[-94.528305, 35.966054],\n\t\t\t\t\t\t[-94.532071, 35.987852],\n\t\t\t\t\t\t[-94.533646, 35.996804],\n\t\t\t\t\t\t[-94.534852, 36.002678],\n\t\t\t\t\t\t[-94.535724, 36.007807],\n\t\t\t\t\t\t[-94.547715, 36.077271],\n\t\t\t\t\t\t[-94.547871, 36.078281],\n\t\t\t\t\t\t[-94.552184, 36.102235],\n\t\t\t\t\t\t[-94.391125, 36.099396],\n\t\t\t\t\t\t[-94.333565, 36.214727],\n\t\t\t\t\t\t[-93.973298, 36.203852],\n\t\t\t\t\t\t[-93.887775, 36.235046],\n\t\t\t\t\t\t[-93.944177, 36.091103],\n\t\t\t\t\t\t[-93.962892, 35.760930]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05147\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"147\",\n\t\t\t\t\"NAME\": \"Woodruff\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 586.791000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.368560, 34.912735],\n\t\t\t\t\t\t[-91.363778, 35.051891],\n\t\t\t\t\t\t[-91.465114, 35.089454],\n\t\t\t\t\t\t[-91.371035, 35.262981],\n\t\t\t\t\t\t[-91.390375, 35.251624],\n\t\t\t\t\t\t[-91.438202, 35.369378],\n\t\t\t\t\t\t[-91.347257, 35.439106],\n\t\t\t\t\t\t[-91.252927, 35.445845],\n\t\t\t\t\t\t[-91.251555, 35.357561],\n\t\t\t\t\t\t[-91.039783, 35.354256],\n\t\t\t\t\t\t[-91.042670, 35.148189],\n\t\t\t\t\t\t[-91.045430, 35.001040],\n\t\t\t\t\t\t[-91.149842, 35.002470],\n\t\t\t\t\t\t[-91.293111, 34.985091],\n\t\t\t\t\t\t[-91.294790, 34.912452],\n\t\t\t\t\t\t[-91.368560, 34.912735]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06003\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"003\",\n\t\t\t\t\"NAME\": \"Alpine\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 738.332000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-120.072392, 38.702767],\n\t\t\t\t\t\t[-119.880303, 38.864776],\n\t\t\t\t\t\t[-119.904315, 38.933324],\n\t\t\t\t\t\t[-119.587679, 38.714734],\n\t\t\t\t\t\t[-119.587066, 38.714345],\n\t\t\t\t\t\t[-119.585437, 38.713212],\n\t\t\t\t\t\t[-119.619066, 38.603529],\n\t\t\t\t\t\t[-119.542862, 38.499694],\n\t\t\t\t\t\t[-119.639205, 38.326880],\n\t\t\t\t\t\t[-119.753481, 38.416759],\n\t\t\t\t\t\t[-119.884749, 38.356185],\n\t\t\t\t\t\t[-120.019951, 38.433521],\n\t\t\t\t\t\t[-120.072484, 38.509869],\n\t\t\t\t\t\t[-120.072392, 38.702767]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06007\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"007\",\n\t\t\t\t\"NAME\": \"Butte\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1636.464000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-121.076695, 39.597264],\n\t\t\t\t\t\t[-121.149907, 39.526446],\n\t\t\t\t\t\t[-121.305122, 39.519585],\n\t\t\t\t\t\t[-121.333427, 39.468729],\n\t\t\t\t\t\t[-121.407527, 39.339754],\n\t\t\t\t\t\t[-121.623760, 39.295621],\n\t\t\t\t\t\t[-121.908269, 39.303878],\n\t\t\t\t\t\t[-121.890013, 39.383864],\n\t\t\t\t\t\t[-121.856532, 39.536904],\n\t\t\t\t\t\t[-121.994021, 39.533926],\n\t\t\t\t\t\t[-121.950951, 39.715004],\n\t\t\t\t\t\t[-122.046471, 39.797648],\n\t\t\t\t\t\t[-122.044865, 39.883771],\n\t\t\t\t\t\t[-121.804041, 39.884344],\n\t\t\t\t\t\t[-121.703241, 39.984230],\n\t\t\t\t\t\t[-121.646032, 39.982527],\n\t\t\t\t\t\t[-121.586407, 40.100522],\n\t\t\t\t\t\t[-121.436886, 40.151905],\n\t\t\t\t\t\t[-121.366818, 40.086054],\n\t\t\t\t\t\t[-121.430012, 39.914833],\n\t\t\t\t\t\t[-121.360516, 39.840740],\n\t\t\t\t\t\t[-121.076695, 39.597264]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01093\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"093\",\n\t\t\t\t\"NAME\": \"Marion\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 742.292000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.203597, 34.086530],\n\t\t\t\t\t\t[-88.176889, 34.293858],\n\t\t\t\t\t\t[-88.175867, 34.302171],\n\t\t\t\t\t\t[-88.173632, 34.321054],\n\t\t\t\t\t\t[-87.634725, 34.306997],\n\t\t\t\t\t\t[-87.636118, 34.002203],\n\t\t\t\t\t\t[-87.635932, 33.915251],\n\t\t\t\t\t\t[-87.951785, 33.919930],\n\t\t\t\t\t\t[-87.986930, 34.052102],\n\t\t\t\t\t\t[-88.207229, 34.058333],\n\t\t\t\t\t\t[-88.203597, 34.086530]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01095\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"095\",\n\t\t\t\t\"NAME\": \"Marshall\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 565.842000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.550166, 34.545963],\n\t\t\t\t\t\t[-86.533445, 34.502795],\n\t\t\t\t\t\t[-86.423914, 34.479581],\n\t\t\t\t\t\t[-86.338181, 34.510103],\n\t\t\t\t\t\t[-86.326853, 34.599403],\n\t\t\t\t\t\t[-86.326906, 34.599573],\n\t\t\t\t\t\t[-86.326958, 34.599744],\n\t\t\t\t\t\t[-86.318265, 34.599790],\n\t\t\t\t\t\t[-86.318251, 34.599790],\n\t\t\t\t\t\t[-86.317146, 34.599796],\n\t\t\t\t\t\t[-86.316036, 34.599802],\n\t\t\t\t\t\t[-86.316026, 34.599802],\n\t\t\t\t\t\t[-86.311677, 34.599827],\n\t\t\t\t\t\t[-86.305591, 34.599860],\n\t\t\t\t\t\t[-86.300533, 34.599888],\n\t\t\t\t\t\t[-86.284617, 34.599974],\n\t\t\t\t\t\t[-86.279503, 34.600004],\n\t\t\t\t\t\t[-86.278140, 34.600009],\n\t\t\t\t\t\t[-86.275775, 34.600023],\n\t\t\t\t\t\t[-86.269123, 34.600059],\n\t\t\t\t\t\t[-86.266148, 34.600075],\n\t\t\t\t\t\t[-86.257783, 34.600122],\n\t\t\t\t\t\t[-86.254082, 34.600143],\n\t\t\t\t\t\t[-86.252434, 34.600125],\n\t\t\t\t\t\t[-86.249983, 34.600100],\n\t\t\t\t\t\t[-86.245680, 34.600116],\n\t\t\t\t\t\t[-86.245611, 34.600116],\n\t\t\t\t\t\t[-86.237028, 34.600023],\n\t\t\t\t\t\t[-86.235077, 34.600001],\n\t\t\t\t\t\t[-86.233777, 34.599987],\n\t\t\t\t\t\t[-86.224237, 34.599884],\n\t\t\t\t\t\t[-86.221192, 34.599851],\n\t\t\t\t\t\t[-86.218975, 34.599827],\n\t\t\t\t\t\t[-86.218962, 34.599827],\n\t\t\t\t\t\t[-86.218086, 34.599817],\n\t\t\t\t\t\t[-86.199778, 34.599620],\n\t\t\t\t\t\t[-86.182990, 34.599438],\n\t\t\t\t\t\t[-86.182976, 34.599438],\n\t\t\t\t\t\t[-86.179053, 34.599396],\n\t\t\t\t\t\t[-86.178649, 34.599392],\n\t\t\t\t\t\t[-86.175324, 34.599354],\n\t\t\t\t\t\t[-86.174103, 34.599336],\n\t\t\t\t\t\t[-86.172856, 34.599318],\n\t\t\t\t\t\t[-86.167530, 34.599264],\n\t\t\t\t\t\t[-86.148464, 34.599069],\n\t\t\t\t\t\t[-86.139846, 34.533296],\n\t\t\t\t\t\t[-86.057712, 34.475994],\n\t\t\t\t\t\t[-86.110362, 34.427797],\n\t\t\t\t\t\t[-86.106086, 34.200756],\n\t\t\t\t\t\t[-86.206107, 34.172650],\n\t\t\t\t\t\t[-86.303516, 34.099073],\n\t\t\t\t\t\t[-86.453020, 34.259317],\n\t\t\t\t\t\t[-86.581936, 34.304694],\n\t\t\t\t\t\t[-86.550166, 34.545963]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01097\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"097\",\n\t\t\t\t\"NAME\": \"Mobile\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1229.435000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-88.124658, 30.283640],\n\t\t\t\t\t\t\t[-88.086812, 30.259864],\n\t\t\t\t\t\t\t[-88.074854, 30.249119],\n\t\t\t\t\t\t\t[-88.075856, 30.246139],\n\t\t\t\t\t\t\t[-88.078786, 30.245039],\n\t\t\t\t\t\t\t[-88.109432, 30.242097],\n\t\t\t\t\t\t\t[-88.120151, 30.246149],\n\t\t\t\t\t\t\t[-88.137083, 30.249179],\n\t\t\t\t\t\t\t[-88.166569, 30.249255],\n\t\t\t\t\t\t\t[-88.208540, 30.244807],\n\t\t\t\t\t\t\t[-88.280571, 30.230274],\n\t\t\t\t\t\t\t[-88.304773, 30.228031],\n\t\t\t\t\t\t\t[-88.313323, 30.230024],\n\t\t\t\t\t\t\t[-88.310025, 30.233233],\n\t\t\t\t\t\t\t[-88.299705, 30.231812],\n\t\t\t\t\t\t\t[-88.280781, 30.233781],\n\t\t\t\t\t\t\t[-88.258370, 30.239595],\n\t\t\t\t\t\t\t[-88.224615, 30.245559],\n\t\t\t\t\t\t\t[-88.173350, 30.252418],\n\t\t\t\t\t\t\t[-88.158303, 30.252393],\n\t\t\t\t\t\t\t[-88.141143, 30.255024],\n\t\t\t\t\t\t\t[-88.130631, 30.262125],\n\t\t\t\t\t\t\t[-88.124722, 30.273541],\n\t\t\t\t\t\t\t[-88.124658, 30.283640]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-88.008396, 30.684956],\n\t\t\t\t\t\t\t[-88.012444, 30.683190],\n\t\t\t\t\t\t\t[-88.022076, 30.673873],\n\t\t\t\t\t\t\t[-88.026706, 30.661490],\n\t\t\t\t\t\t\t[-88.034588, 30.653715],\n\t\t\t\t\t\t\t[-88.044339, 30.652568],\n\t\t\t\t\t\t\t[-88.061998, 30.644891],\n\t\t\t\t\t\t\t[-88.059598, 30.619091],\n\t\t\t\t\t\t\t[-88.053998, 30.612491],\n\t\t\t\t\t\t\t[-88.064898, 30.588292],\n\t\t\t\t\t\t\t[-88.074898, 30.578892],\n\t\t\t\t\t\t\t[-88.085493, 30.563258],\n\t\t\t\t\t\t\t[-88.081617, 30.546317],\n\t\t\t\t\t\t\t[-88.082792, 30.528713],\n\t\t\t\t\t\t\t[-88.090734, 30.523570],\n\t\t\t\t\t\t\t[-88.100874, 30.509750],\n\t\t\t\t\t\t\t[-88.103768, 30.500903],\n\t\t\t\t\t\t\t[-88.102988, 30.493029],\n\t\t\t\t\t\t\t[-88.096867, 30.471053],\n\t\t\t\t\t\t\t[-88.100646, 30.461220],\n\t\t\t\t\t\t\t[-88.106437, 30.452738],\n\t\t\t\t\t\t\t[-88.104070, 30.427300],\n\t\t\t\t\t\t\t[-88.107274, 30.377246],\n\t\t\t\t\t\t\t[-88.115432, 30.356570],\n\t\t\t\t\t\t\t[-88.124611, 30.341623],\n\t\t\t\t\t\t\t[-88.128052, 30.338509],\n\t\t\t\t\t\t\t[-88.136173, 30.320729],\n\t\t\t\t\t\t\t[-88.155775, 30.327184],\n\t\t\t\t\t\t\t[-88.171967, 30.324679],\n\t\t\t\t\t\t\t[-88.191542, 30.317002],\n\t\t\t\t\t\t\t[-88.195664, 30.321242],\n\t\t\t\t\t\t\t[-88.198361, 30.338819],\n\t\t\t\t\t\t\t[-88.196353, 30.343586],\n\t\t\t\t\t\t\t[-88.188532, 30.345053],\n\t\t\t\t\t\t\t[-88.188527, 30.348124],\n\t\t\t\t\t\t\t[-88.200065, 30.362378],\n\t\t\t\t\t\t\t[-88.204495, 30.362102],\n\t\t\t\t\t\t\t[-88.260695, 30.382381],\n\t\t\t\t\t\t\t[-88.282635, 30.382876],\n\t\t\t\t\t\t\t[-88.290649, 30.370741],\n\t\t\t\t\t\t\t[-88.311608, 30.368908],\n\t\t\t\t\t\t\t[-88.316525, 30.369985],\n\t\t\t\t\t\t\t[-88.319599, 30.380334],\n\t\t\t\t\t\t\t[-88.332277, 30.388440],\n\t\t\t\t\t\t\t[-88.341345, 30.389470],\n\t\t\t\t\t\t\t[-88.364022, 30.388006],\n\t\t\t\t\t\t\t[-88.374671, 30.385608],\n\t\t\t\t\t\t\t[-88.395023, 30.369425],\n\t\t\t\t\t\t\t[-88.402283, 30.510852],\n\t\t\t\t\t\t\t[-88.403547, 30.533100],\n\t\t\t\t\t\t\t[-88.403931, 30.543359],\n\t\t\t\t\t\t\t[-88.404013, 30.545060],\n\t\t\t\t\t\t\t[-88.407484, 30.622736],\n\t\t\t\t\t\t\t[-88.407462, 30.631653],\n\t\t\t\t\t\t\t[-88.408070, 30.636970],\n\t\t\t\t\t\t\t[-88.409571, 30.668731],\n\t\t\t\t\t\t\t[-88.411339, 30.706334],\n\t\t\t\t\t\t\t[-88.411550, 30.712956],\n\t\t\t\t\t\t\t[-88.412209, 30.730395],\n\t\t\t\t\t\t\t[-88.412270, 30.731771],\n\t\t\t\t\t\t\t[-88.412462, 30.735598],\n\t\t\t\t\t\t\t[-88.425635, 30.998301],\n\t\t\t\t\t\t\t[-88.425729, 31.000183],\n\t\t\t\t\t\t\t[-88.425807, 31.001123],\n\t\t\t\t\t\t\t[-88.432007, 31.114298],\n\t\t\t\t\t\t\t[-88.329782, 31.143821],\n\t\t\t\t\t\t\t[-88.022649, 31.144267],\n\t\t\t\t\t\t\t[-87.972869, 31.162694],\n\t\t\t\t\t\t\t[-87.941152, 31.048161],\n\t\t\t\t\t\t\t[-87.981261, 30.886895],\n\t\t\t\t\t\t\t[-87.944546, 30.827046],\n\t\t\t\t\t\t\t[-88.026319, 30.753358],\n\t\t\t\t\t\t\t[-88.008396, 30.684956]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01101\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"101\",\n\t\t\t\t\"NAME\": \"Montgomery\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 784.247000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.411172, 32.409937],\n\t\t\t\t\t\t[-86.237068, 32.494980],\n\t\t\t\t\t\t[-86.192284, 32.436130],\n\t\t\t\t\t\t[-86.023012, 32.419978],\n\t\t\t\t\t\t[-85.919293, 32.274382],\n\t\t\t\t\t\t[-85.999157, 32.250543],\n\t\t\t\t\t\t[-85.996853, 32.051049],\n\t\t\t\t\t\t[-85.995563, 31.967554],\n\t\t\t\t\t\t[-86.191379, 31.966453],\n\t\t\t\t\t\t[-86.302217, 31.965065],\n\t\t\t\t\t\t[-86.303616, 32.051664],\n\t\t\t\t\t\t[-86.406276, 32.050731],\n\t\t\t\t\t\t[-86.408816, 32.240851],\n\t\t\t\t\t\t[-86.496774, 32.344437],\n\t\t\t\t\t\t[-86.411172, 32.409937]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01117\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"117\",\n\t\t\t\t\"NAME\": \"Shelby\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 784.930000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.023586, 33.246422],\n\t\t\t\t\t\t[-86.830597, 33.332015],\n\t\t\t\t\t\t[-86.674418, 33.466521],\n\t\t\t\t\t\t[-86.604510, 33.467053],\n\t\t\t\t\t\t[-86.516783, 33.545896],\n\t\t\t\t\t\t[-86.481939, 33.502544],\n\t\t\t\t\t\t[-86.378222, 33.502411],\n\t\t\t\t\t\t[-86.378665, 33.390983],\n\t\t\t\t\t\t[-86.357340, 33.296917],\n\t\t\t\t\t\t[-86.503127, 33.179144],\n\t\t\t\t\t\t[-86.491029, 33.102944],\n\t\t\t\t\t\t[-86.517344, 33.020566],\n\t\t\t\t\t\t[-86.610003, 33.070003],\n\t\t\t\t\t\t[-86.881638, 33.071861],\n\t\t\t\t\t\t[-86.881182, 33.049901],\n\t\t\t\t\t\t[-87.025596, 33.165795],\n\t\t\t\t\t\t[-87.026846, 33.246459],\n\t\t\t\t\t\t[-87.023586, 33.246422]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01119\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"119\",\n\t\t\t\t\"NAME\": \"Sumter\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 903.887000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.403789, 32.449770],\n\t\t\t\t\t\t[-88.403789, 32.449885],\n\t\t\t\t\t\t[-88.388739, 32.578116],\n\t\t\t\t\t\t[-88.383039, 32.626679],\n\t\t\t\t\t\t[-88.382985, 32.626954],\n\t\t\t\t\t\t[-88.347692, 32.929059],\n\t\t\t\t\t\t[-88.340432, 32.991199],\n\t\t\t\t\t\t[-88.171852, 32.995860],\n\t\t\t\t\t\t[-88.207316, 32.924782],\n\t\t\t\t\t\t[-88.079338, 32.772948],\n\t\t\t\t\t\t[-88.109633, 32.770989],\n\t\t\t\t\t\t[-88.057333, 32.593441],\n\t\t\t\t\t\t[-87.928689, 32.632284],\n\t\t\t\t\t\t[-87.840858, 32.605036],\n\t\t\t\t\t\t[-87.897913, 32.600046],\n\t\t\t\t\t\t[-87.853420, 32.532086],\n\t\t\t\t\t\t[-88.031623, 32.433610],\n\t\t\t\t\t\t[-88.046335, 32.377087],\n\t\t\t\t\t\t[-87.930661, 32.310574],\n\t\t\t\t\t\t[-88.421453, 32.308680],\n\t\t\t\t\t\t[-88.403789, 32.449770]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01125\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"125\",\n\t\t\t\t\"NAME\": \"Tuscaloosa\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1321.755000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.266923, 33.512929],\n\t\t\t\t\t\t[-87.330816, 33.491501],\n\t\t\t\t\t\t[-87.194841, 33.343069],\n\t\t\t\t\t\t[-87.180006, 33.342979],\n\t\t\t\t\t\t[-87.179754, 33.328010],\n\t\t\t\t\t\t[-87.179638, 33.321112],\n\t\t\t\t\t\t[-87.162175, 33.321012],\n\t\t\t\t\t\t[-87.162007, 33.306587],\n\t\t\t\t\t\t[-87.127142, 33.306013],\n\t\t\t\t\t\t[-87.126756, 33.290844],\n\t\t\t\t\t\t[-87.087497, 33.290675],\n\t\t\t\t\t\t[-87.087546, 33.279666],\n\t\t\t\t\t\t[-87.074602, 33.279682],\n\t\t\t\t\t\t[-87.074634, 33.276018],\n\t\t\t\t\t\t[-87.065754, 33.275937],\n\t\t\t\t\t\t[-87.065738, 33.246907],\n\t\t\t\t\t\t[-87.199153, 33.196554],\n\t\t\t\t\t\t[-87.199317, 33.130657],\n\t\t\t\t\t\t[-87.281945, 33.133060],\n\t\t\t\t\t\t[-87.318539, 33.006179],\n\t\t\t\t\t\t[-87.421936, 33.003379],\n\t\t\t\t\t\t[-87.715709, 33.006824],\n\t\t\t\t\t\t[-87.832233, 33.017258],\n\t\t\t\t\t\t[-87.838047, 33.136864],\n\t\t\t\t\t\t[-87.837521, 33.153637],\n\t\t\t\t\t\t[-87.840683, 33.524839],\n\t\t\t\t\t\t[-87.666661, 33.521667],\n\t\t\t\t\t\t[-87.631718, 33.609833],\n\t\t\t\t\t\t[-87.423701, 33.602096],\n\t\t\t\t\t\t[-87.318532, 33.587393],\n\t\t\t\t\t\t[-87.266923, 33.512929]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01131\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"131\",\n\t\t\t\t\"NAME\": \"Wilcox\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 888.498000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.500930, 31.829251],\n\t\t\t\t\t\t[-87.620112, 31.827123],\n\t\t\t\t\t\t[-87.667488, 31.958459],\n\t\t\t\t\t\t[-87.667769, 31.991355],\n\t\t\t\t\t\t[-87.622756, 32.005482],\n\t\t\t\t\t\t[-87.624005, 32.132345],\n\t\t\t\t\t\t[-87.521946, 32.132816],\n\t\t\t\t\t\t[-87.523405, 32.254830],\n\t\t\t\t\t\t[-87.472206, 32.264919],\n\t\t\t\t\t\t[-87.262853, 32.147007],\n\t\t\t\t\t\t[-87.178071, 32.047514],\n\t\t\t\t\t\t[-86.906956, 32.047970],\n\t\t\t\t\t\t[-86.856576, 32.048352],\n\t\t\t\t\t\t[-86.857583, 31.962167],\n\t\t\t\t\t\t[-86.908939, 31.961673],\n\t\t\t\t\t\t[-86.906899, 31.830628],\n\t\t\t\t\t\t[-87.500930, 31.829251]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US02020\",\n\t\t\t\t\"STATE\": \"02\",\n\t\t\t\t\"COUNTY\": \"020\",\n\t\t\t\t\"NAME\": \"Anchorage\",\n\t\t\t\t\"LSAD\": \"Muny\",\n\t\t\t\t\"CENSUSAREA\": 1704.683000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-149.736395, 60.994692],\n\t\t\t\t\t\t[-149.739692, 61.016961],\n\t\t\t\t\t\t[-149.751943, 61.024072],\n\t\t\t\t\t\t[-149.784393, 61.038147],\n\t\t\t\t\t\t[-149.785126, 61.040798],\n\t\t\t\t\t\t[-149.805816, 61.058641],\n\t\t\t\t\t\t[-149.831922, 61.076197],\n\t\t\t\t\t\t[-149.857168, 61.079020],\n\t\t\t\t\t\t[-149.915666, 61.101428],\n\t\t\t\t\t\t[-149.960100, 61.115346],\n\t\t\t\t\t\t[-150.039304, 61.144291],\n\t\t\t\t\t\t[-150.065646, 61.151079],\n\t\t\t\t\t\t[-150.075451, 61.156269],\n\t\t\t\t\t\t[-150.068004, 61.166132],\n\t\t\t\t\t\t[-150.009941, 61.203637],\n\t\t\t\t\t\t[-149.987002, 61.222753],\n\t\t\t\t\t\t[-149.986576, 61.228323],\n\t\t\t\t\t\t[-149.897888, 61.267043],\n\t\t\t\t\t\t[-149.792423, 61.388896],\n\t\t\t\t\t\t[-149.359442, 61.483938],\n\t\t\t\t\t\t[-149.237556, 61.483144],\n\t\t\t\t\t\t[-149.187447, 61.425285],\n\t\t\t\t\t\t[-148.460007, 61.426972],\n\t\t\t\t\t\t[-148.479587, 61.165059],\n\t\t\t\t\t\t[-148.473461, 60.850630],\n\t\t\t\t\t\t[-148.746023, 60.846140],\n\t\t\t\t\t\t[-148.745578, 60.733881],\n\t\t\t\t\t\t[-149.042881, 60.734797],\n\t\t\t\t\t\t[-149.038568, 60.849342],\n\t\t\t\t\t\t[-149.188571, 60.905486],\n\t\t\t\t\t\t[-149.373299, 60.907624],\n\t\t\t\t\t\t[-149.736395, 60.994692]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US02068\",\n\t\t\t\t\"STATE\": \"02\",\n\t\t\t\t\"COUNTY\": \"068\",\n\t\t\t\t\"NAME\": \"Denali\",\n\t\t\t\t\"LSAD\": \"Borough\",\n\t\t\t\t\"CENSUSAREA\": 12751.411000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-153.001339, 62.727440],\n\t\t\t\t\t\t[-152.434247, 63.169794],\n\t\t\t\t\t\t[-152.434625, 63.305936],\n\t\t\t\t\t\t[-152.812007, 63.351232],\n\t\t\t\t\t\t[-152.853430, 63.651710],\n\t\t\t\t\t\t[-152.241918, 63.656679],\n\t\t\t\t\t\t[-152.233557, 63.823684],\n\t\t\t\t\t\t[-152.055519, 63.823679],\n\t\t\t\t\t\t[-152.047377, 64.000576],\n\t\t\t\t\t\t[-151.825058, 64.005365],\n\t\t\t\t\t\t[-151.790558, 64.082290],\n\t\t\t\t\t\t[-151.579286, 64.085380],\n\t\t\t\t\t\t[-151.525111, 64.032465],\n\t\t\t\t\t\t[-151.301289, 64.009971],\n\t\t\t\t\t\t[-151.136195, 64.133084],\n\t\t\t\t\t\t[-150.749736, 64.365138],\n\t\t\t\t\t\t[-149.667993, 64.357813],\n\t\t\t\t\t\t[-149.119968, 64.358796],\n\t\t\t\t\t\t[-149.120704, 64.343615],\n\t\t\t\t\t\t[-147.995157, 64.341691],\n\t\t\t\t\t\t[-147.761557, 64.257854],\n\t\t\t\t\t\t[-147.003185, 64.258928],\n\t\t\t\t\t\t[-146.972014, 63.911791],\n\t\t\t\t\t\t[-146.975489, 63.479746],\n\t\t\t\t\t\t[-148.032727, 63.469757],\n\t\t\t\t\t\t[-148.035867, 63.330788],\n\t\t\t\t\t\t[-149.506984, 63.332164],\n\t\t\t\t\t\t[-151.387904, 62.910327],\n\t\t\t\t\t\t[-151.888963, 62.795348],\n\t\t\t\t\t\t[-151.893149, 62.722992],\n\t\t\t\t\t\t[-153.001339, 62.727440]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72019\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"019\",\n\t\t\t\t\"NAME\": \"Barranquitas\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 34.253000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-66.314848, 18.152088],\n\t\t\t\t\t\t[-66.322323, 18.165503],\n\t\t\t\t\t\t[-66.351258, 18.165488],\n\t\t\t\t\t\t[-66.373768, 18.173694],\n\t\t\t\t\t\t[-66.350793, 18.241235],\n\t\t\t\t\t\t[-66.340121, 18.238689],\n\t\t\t\t\t\t[-66.327034, 18.244191],\n\t\t\t\t\t\t[-66.326297, 18.247884],\n\t\t\t\t\t\t[-66.313299, 18.249324],\n\t\t\t\t\t\t[-66.306488, 18.240967],\n\t\t\t\t\t\t[-66.293176, 18.245902],\n\t\t\t\t\t\t[-66.266466, 18.245270],\n\t\t\t\t\t\t[-66.240460, 18.184794],\n\t\t\t\t\t\t[-66.242623, 18.183408],\n\t\t\t\t\t\t[-66.242735, 18.180248],\n\t\t\t\t\t\t[-66.314848, 18.152088]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72025\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"025\",\n\t\t\t\t\"NAME\": \"Caguas\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 58.597000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-66.066103, 18.303321],\n\t\t\t\t\t\t[-66.052729, 18.303647],\n\t\t\t\t\t\t[-66.045336, 18.299418],\n\t\t\t\t\t\t[-66.047827, 18.306885],\n\t\t\t\t\t\t[-66.041535, 18.312344],\n\t\t\t\t\t\t[-66.031631, 18.308877],\n\t\t\t\t\t\t[-66.027073, 18.310201],\n\t\t\t\t\t\t[-66.021747, 18.305034],\n\t\t\t\t\t\t[-65.997650, 18.206992],\n\t\t\t\t\t\t[-66.052555, 18.113069],\n\t\t\t\t\t\t[-66.060761, 18.116315],\n\t\t\t\t\t\t[-66.069490, 18.142397],\n\t\t\t\t\t\t[-66.065968, 18.148411],\n\t\t\t\t\t\t[-66.080343, 18.152146],\n\t\t\t\t\t\t[-66.095099, 18.169077],\n\t\t\t\t\t\t[-66.096813, 18.168197],\n\t\t\t\t\t\t[-66.100635, 18.169824],\n\t\t\t\t\t\t[-66.102177, 18.169419],\n\t\t\t\t\t\t[-66.105096, 18.171544],\n\t\t\t\t\t\t[-66.101673, 18.183082],\n\t\t\t\t\t\t[-66.109374, 18.200934],\n\t\t\t\t\t\t[-66.117774, 18.209949],\n\t\t\t\t\t\t[-66.066103, 18.303321]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72031\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"031\",\n\t\t\t\t\"NAME\": \"Carolina\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 45.321000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-66.036559, 18.450216],\n\t\t\t\t\t\t[-66.036491, 18.450117],\n\t\t\t\t\t\t[-66.023221, 18.443875],\n\t\t\t\t\t\t[-66.006523, 18.444347],\n\t\t\t\t\t\t[-65.997180, 18.449895],\n\t\t\t\t\t\t[-65.992935, 18.457489],\n\t\t\t\t\t\t[-65.992793, 18.458102],\n\t\t\t\t\t\t[-65.919278, 18.402993],\n\t\t\t\t\t\t[-65.918535, 18.270130],\n\t\t\t\t\t\t[-65.924175, 18.272622],\n\t\t\t\t\t\t[-65.939296, 18.286771],\n\t\t\t\t\t\t[-65.942429, 18.293469],\n\t\t\t\t\t\t[-65.999556, 18.380065],\n\t\t\t\t\t\t[-66.036559, 18.450216]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72045\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"045\",\n\t\t\t\t\"NAME\": \"Comer�o\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 28.401000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-66.169126, 18.224290],\n\t\t\t\t\t\t[-66.240460, 18.184794],\n\t\t\t\t\t\t[-66.266466, 18.245270],\n\t\t\t\t\t\t[-66.242185, 18.254632],\n\t\t\t\t\t\t[-66.227615, 18.254673],\n\t\t\t\t\t\t[-66.228952, 18.262801],\n\t\t\t\t\t\t[-66.218205, 18.274710],\n\t\t\t\t\t\t[-66.206135, 18.276660],\n\t\t\t\t\t\t[-66.201280, 18.276280],\n\t\t\t\t\t\t[-66.200802, 18.271477],\n\t\t\t\t\t\t[-66.193248, 18.268138],\n\t\t\t\t\t\t[-66.190676, 18.258840],\n\t\t\t\t\t\t[-66.187298, 18.253790],\n\t\t\t\t\t\t[-66.179052, 18.246969],\n\t\t\t\t\t\t[-66.178855, 18.237540],\n\t\t\t\t\t\t[-66.174947, 18.233095],\n\t\t\t\t\t\t[-66.176409, 18.230251],\n\t\t\t\t\t\t[-66.169141, 18.226013],\n\t\t\t\t\t\t[-66.169126, 18.224290]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72054\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"054\",\n\t\t\t\t\"NAME\": \"Florida\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 15.209000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-66.543079, 18.405422],\n\t\t\t\t\t\t[-66.531299, 18.382165],\n\t\t\t\t\t\t[-66.533623, 18.351333],\n\t\t\t\t\t\t[-66.552734, 18.340438],\n\t\t\t\t\t\t[-66.573822, 18.342517],\n\t\t\t\t\t\t[-66.590785, 18.338060],\n\t\t\t\t\t\t[-66.583014, 18.363218],\n\t\t\t\t\t\t[-66.582374, 18.374238],\n\t\t\t\t\t\t[-66.588305, 18.374140],\n\t\t\t\t\t\t[-66.588181, 18.389408],\n\t\t\t\t\t\t[-66.564313, 18.413309],\n\t\t\t\t\t\t[-66.543079, 18.405422]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72061\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"061\",\n\t\t\t\t\"NAME\": \"Guaynabo\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 27.579000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-66.108281, 18.438902],\n\t\t\t\t\t\t[-66.080475, 18.297295],\n\t\t\t\t\t\t[-66.086465, 18.285094],\n\t\t\t\t\t\t[-66.107787, 18.277874],\n\t\t\t\t\t\t[-66.143861, 18.279590],\n\t\t\t\t\t\t[-66.131580, 18.424656],\n\t\t\t\t\t\t[-66.115647, 18.439973],\n\t\t\t\t\t\t[-66.108281, 18.438902]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72069\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"069\",\n\t\t\t\t\"NAME\": \"Humacao\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 44.755000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-65.739125, 18.173453],\n\t\t\t\t\t\t[-65.743632, 18.163957],\n\t\t\t\t\t\t[-65.758728, 18.156601],\n\t\t\t\t\t\t[-65.766919, 18.148424],\n\t\t\t\t\t\t[-65.777584, 18.129239],\n\t\t\t\t\t\t[-65.796711, 18.083746],\n\t\t\t\t\t\t[-65.796289, 18.079835],\n\t\t\t\t\t\t[-65.794686, 18.078607],\n\t\t\t\t\t\t[-65.795028, 18.073561],\n\t\t\t\t\t\t[-65.796711, 18.069842],\n\t\t\t\t\t\t[-65.877615, 18.118167],\n\t\t\t\t\t\t[-65.826063, 18.200408],\n\t\t\t\t\t\t[-65.739125, 18.173453]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72083\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"083\",\n\t\t\t\t\"NAME\": \"Las Mar�as\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 46.360000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-66.907236, 18.253090],\n\t\t\t\t\t\t[-66.912859, 18.233009],\n\t\t\t\t\t\t[-66.897964, 18.187744],\n\t\t\t\t\t\t[-67.019836, 18.195471],\n\t\t\t\t\t\t[-67.082002, 18.254946],\n\t\t\t\t\t\t[-67.061828, 18.270082],\n\t\t\t\t\t\t[-67.040228, 18.271985],\n\t\t\t\t\t\t[-67.037935, 18.289705],\n\t\t\t\t\t\t[-66.907236, 18.253090]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72093\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"093\",\n\t\t\t\t\"NAME\": \"Maricao\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 36.623000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-66.977855, 18.143799],\n\t\t\t\t\t\t[-66.994529, 18.154774],\n\t\t\t\t\t\t[-67.009600, 18.158915],\n\t\t\t\t\t\t[-67.013844, 18.165874],\n\t\t\t\t\t\t[-67.044039, 18.169202],\n\t\t\t\t\t\t[-67.051461, 18.174053],\n\t\t\t\t\t\t[-67.034521, 18.185519],\n\t\t\t\t\t\t[-67.024372, 18.184668],\n\t\t\t\t\t\t[-67.019836, 18.195471],\n\t\t\t\t\t\t[-66.897964, 18.187744],\n\t\t\t\t\t\t[-66.863848, 18.186610],\n\t\t\t\t\t\t[-66.862832, 18.174808],\n\t\t\t\t\t\t[-66.850765, 18.170357],\n\t\t\t\t\t\t[-66.836760, 18.170553],\n\t\t\t\t\t\t[-66.926517, 18.151267],\n\t\t\t\t\t\t[-66.939065, 18.147855],\n\t\t\t\t\t\t[-66.943554, 18.148979],\n\t\t\t\t\t\t[-66.952093, 18.146112],\n\t\t\t\t\t\t[-66.960424, 18.145907],\n\t\t\t\t\t\t[-66.963939, 18.148212],\n\t\t\t\t\t\t[-66.971866, 18.141540],\n\t\t\t\t\t\t[-66.975540, 18.143395],\n\t\t\t\t\t\t[-66.977855, 18.143799]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72105\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"105\",\n\t\t\t\t\"NAME\": \"Naranjito\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 27.401000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-66.204734, 18.316035],\n\t\t\t\t\t\t[-66.205908, 18.306921],\n\t\t\t\t\t\t[-66.213072, 18.307003],\n\t\t\t\t\t\t[-66.206135, 18.276660],\n\t\t\t\t\t\t[-66.218205, 18.274710],\n\t\t\t\t\t\t[-66.228952, 18.262801],\n\t\t\t\t\t\t[-66.227615, 18.254673],\n\t\t\t\t\t\t[-66.242185, 18.254632],\n\t\t\t\t\t\t[-66.266466, 18.245270],\n\t\t\t\t\t\t[-66.293176, 18.245902],\n\t\t\t\t\t\t[-66.306488, 18.240967],\n\t\t\t\t\t\t[-66.313299, 18.249324],\n\t\t\t\t\t\t[-66.278076, 18.329975],\n\t\t\t\t\t\t[-66.204734, 18.316035]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72115\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"115\",\n\t\t\t\t\"NAME\": \"Quebradillas\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 22.683000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-66.898900, 18.366108],\n\t\t\t\t\t\t[-66.919497, 18.378578],\n\t\t\t\t\t\t[-66.922020, 18.393204],\n\t\t\t\t\t\t[-66.957517, 18.489171],\n\t\t\t\t\t\t[-66.944636, 18.491693],\n\t\t\t\t\t\t[-66.906872, 18.483556],\n\t\t\t\t\t\t[-66.901430, 18.484552],\n\t\t\t\t\t\t[-66.898900, 18.366108]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72129\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"129\",\n\t\t\t\t\"NAME\": \"San Lorenzo\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 53.108000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-66.010245, 18.075565],\n\t\t\t\t\t\t[-66.019443, 18.083723],\n\t\t\t\t\t\t[-66.019442, 18.102576],\n\t\t\t\t\t\t[-66.051788, 18.109878],\n\t\t\t\t\t\t[-66.051162, 18.111088],\n\t\t\t\t\t\t[-66.052555, 18.113069],\n\t\t\t\t\t\t[-65.997650, 18.206992],\n\t\t\t\t\t\t[-65.988847, 18.220472],\n\t\t\t\t\t\t[-65.971036, 18.229239],\n\t\t\t\t\t\t[-65.951019, 18.229292],\n\t\t\t\t\t\t[-65.928341, 18.142845],\n\t\t\t\t\t\t[-65.924448, 18.135673],\n\t\t\t\t\t\t[-65.927429, 18.121821],\n\t\t\t\t\t\t[-65.926227, 18.119963],\n\t\t\t\t\t\t[-66.010245, 18.075565]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72135\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"135\",\n\t\t\t\t\"NAME\": \"Toa Alta\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 27.016000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-66.318764, 18.367411],\n\t\t\t\t\t\t[-66.314158, 18.380801],\n\t\t\t\t\t\t[-66.303663, 18.384077],\n\t\t\t\t\t\t[-66.271288, 18.383718],\n\t\t\t\t\t\t[-66.252554, 18.394187],\n\t\t\t\t\t\t[-66.234345, 18.401464],\n\t\t\t\t\t\t[-66.196980, 18.389289],\n\t\t\t\t\t\t[-66.199568, 18.369616],\n\t\t\t\t\t\t[-66.197293, 18.360199],\n\t\t\t\t\t\t[-66.203616, 18.336673],\n\t\t\t\t\t\t[-66.201531, 18.328983],\n\t\t\t\t\t\t[-66.204734, 18.316035],\n\t\t\t\t\t\t[-66.278076, 18.329975],\n\t\t\t\t\t\t[-66.289035, 18.353719],\n\t\t\t\t\t\t[-66.306194, 18.369688],\n\t\t\t\t\t\t[-66.318764, 18.367411]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72145\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"145\",\n\t\t\t\t\"NAME\": \"Vega Baja\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 45.856000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-66.438813, 18.485713],\n\t\t\t\t\t\t[-66.420921, 18.488639],\n\t\t\t\t\t\t[-66.410344, 18.489886],\n\t\t\t\t\t\t[-66.394287, 18.489748],\n\t\t\t\t\t\t[-66.377286, 18.488044],\n\t\t\t\t\t\t[-66.372820, 18.487726],\n\t\t\t\t\t\t[-66.349647, 18.486335],\n\t\t\t\t\t\t[-66.377058, 18.344246],\n\t\t\t\t\t\t[-66.443800, 18.371027],\n\t\t\t\t\t\t[-66.438813, 18.485713]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01007\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"007\",\n\t\t\t\t\"NAME\": \"Bibb\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 622.582000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.421200, 32.874508],\n\t\t\t\t\t\t[-87.420132, 32.902605],\n\t\t\t\t\t\t[-87.421936, 33.003379],\n\t\t\t\t\t\t[-87.318539, 33.006179],\n\t\t\t\t\t\t[-87.281945, 33.133060],\n\t\t\t\t\t\t[-87.199317, 33.130657],\n\t\t\t\t\t\t[-87.199153, 33.196554],\n\t\t\t\t\t\t[-87.065738, 33.246907],\n\t\t\t\t\t\t[-87.026846, 33.246459],\n\t\t\t\t\t\t[-87.025596, 33.165795],\n\t\t\t\t\t\t[-86.881182, 33.049901],\n\t\t\t\t\t\t[-86.876118, 32.836264],\n\t\t\t\t\t\t[-87.019157, 32.837034],\n\t\t\t\t\t\t[-87.319184, 32.831522],\n\t\t\t\t\t\t[-87.319473, 32.875124],\n\t\t\t\t\t\t[-87.421200, 32.874508]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01011\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"011\",\n\t\t\t\t\"NAME\": \"Bullock\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 622.805000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.410241, 32.146651],\n\t\t\t\t\t\t[-85.428476, 32.014951],\n\t\t\t\t\t\t[-85.587344, 31.997355],\n\t\t\t\t\t\t[-85.657668, 31.880275],\n\t\t\t\t\t\t[-85.791047, 31.880357],\n\t\t\t\t\t\t[-85.790048, 31.967254],\n\t\t\t\t\t\t[-85.884350, 31.967253],\n\t\t\t\t\t\t[-85.893652, 32.047351],\n\t\t\t\t\t\t[-85.996853, 32.051049],\n\t\t\t\t\t\t[-85.999157, 32.250543],\n\t\t\t\t\t\t[-85.919293, 32.274382],\n\t\t\t\t\t\t[-85.856218, 32.231975],\n\t\t\t\t\t\t[-85.433543, 32.234648],\n\t\t\t\t\t\t[-85.427442, 32.146551],\n\t\t\t\t\t\t[-85.410241, 32.146651]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01015\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"015\",\n\t\t\t\t\"NAME\": \"Calhoun\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 605.868000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.145562, 33.679098],\n\t\t\t\t\t\t[-86.043993, 33.763595],\n\t\t\t\t\t\t[-86.066972, 33.839198],\n\t\t\t\t\t\t[-86.066439, 33.841094],\n\t\t\t\t\t\t[-86.065272, 33.842198],\n\t\t\t\t\t\t[-86.049072, 33.841598],\n\t\t\t\t\t\t[-86.048772, 33.852698],\n\t\t\t\t\t\t[-86.021271, 33.851498],\n\t\t\t\t\t\t[-86.021471, 33.866098],\n\t\t\t\t\t\t[-85.995169, 33.864897],\n\t\t\t\t\t\t[-85.994970, 33.879598],\n\t\t\t\t\t\t[-85.986370, 33.879198],\n\t\t\t\t\t\t[-85.986470, 33.893698],\n\t\t\t\t\t\t[-85.969170, 33.892898],\n\t\t\t\t\t\t[-85.969170, 33.914598],\n\t\t\t\t\t\t[-85.738975, 33.968460],\n\t\t\t\t\t\t[-85.529432, 33.955980],\n\t\t\t\t\t\t[-85.530094, 33.941423],\n\t\t\t\t\t\t[-85.532482, 33.889152],\n\t\t\t\t\t\t[-85.638049, 33.773339],\n\t\t\t\t\t\t[-85.638579, 33.648413],\n\t\t\t\t\t\t[-85.796054, 33.556220],\n\t\t\t\t\t\t[-85.794559, 33.585565],\n\t\t\t\t\t\t[-85.994935, 33.586475],\n\t\t\t\t\t\t[-86.050669, 33.674590],\n\t\t\t\t\t\t[-86.145562, 33.679098]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06045\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"045\",\n\t\t\t\t\"NAME\": \"Mendocino\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 3506.343000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-122.821592, 38.850140],\n\t\t\t\t\t\t[-123.080997, 38.852438],\n\t\t\t\t\t\t[-123.136253, 38.809136],\n\t\t\t\t\t\t[-123.268710, 38.808369],\n\t\t\t\t\t\t[-123.533535, 38.768408],\n\t\t\t\t\t\t[-123.541837, 38.776764],\n\t\t\t\t\t\t[-123.571987, 38.798189],\n\t\t\t\t\t\t[-123.579856, 38.802835],\n\t\t\t\t\t\t[-123.586380, 38.802857],\n\t\t\t\t\t\t[-123.600221, 38.814115],\n\t\t\t\t\t\t[-123.601569, 38.818990],\n\t\t\t\t\t\t[-123.605317, 38.822765],\n\t\t\t\t\t\t[-123.638637, 38.843865],\n\t\t\t\t\t\t[-123.642676, 38.844005],\n\t\t\t\t\t\t[-123.647387, 38.845472],\n\t\t\t\t\t\t[-123.652212, 38.854582],\n\t\t\t\t\t\t[-123.654696, 38.865638],\n\t\t\t\t\t\t[-123.659846, 38.872529],\n\t\t\t\t\t\t[-123.688099, 38.893594],\n\t\t\t\t\t\t[-123.710540, 38.913230],\n\t\t\t\t\t\t[-123.725367, 38.917438],\n\t\t\t\t\t\t[-123.727630, 38.929500],\n\t\t\t\t\t\t[-123.726315, 38.936367],\n\t\t\t\t\t\t[-123.738886, 38.954120],\n\t\t\t\t\t\t[-123.732892, 38.954994],\n\t\t\t\t\t\t[-123.729053, 38.956667],\n\t\t\t\t\t\t[-123.721347, 38.963879],\n\t\t\t\t\t\t[-123.711149, 38.977316],\n\t\t\t\t\t\t[-123.696900, 39.004401],\n\t\t\t\t\t\t[-123.690740, 39.021293],\n\t\t\t\t\t\t[-123.690095, 39.031157],\n\t\t\t\t\t\t[-123.693969, 39.057363],\n\t\t\t\t\t\t[-123.713392, 39.108422],\n\t\t\t\t\t\t[-123.721505, 39.125327],\n\t\t\t\t\t\t[-123.735936, 39.139644],\n\t\t\t\t\t\t[-123.737913, 39.143442],\n\t\t\t\t\t\t[-123.742221, 39.164885],\n\t\t\t\t\t\t[-123.761010, 39.191595],\n\t\t\t\t\t\t[-123.765891, 39.193657],\n\t\t\t\t\t\t[-123.774998, 39.212083],\n\t\t\t\t\t\t[-123.777368, 39.237214],\n\t\t\t\t\t\t[-123.787893, 39.264327],\n\t\t\t\t\t\t[-123.798991, 39.271355],\n\t\t\t\t\t\t[-123.803848, 39.278771],\n\t\t\t\t\t\t[-123.801757, 39.283530],\n\t\t\t\t\t\t[-123.803081, 39.291747],\n\t\t\t\t\t\t[-123.811387, 39.312825],\n\t\t\t\t\t\t[-123.808772, 39.324368],\n\t\t\t\t\t\t[-123.817369, 39.338800],\n\t\t\t\t\t\t[-123.822085, 39.343857],\n\t\t\t\t\t\t[-123.825331, 39.360814],\n\t\t\t\t\t\t[-123.826306, 39.368710],\n\t\t\t\t\t\t[-123.822325, 39.379987],\n\t\t\t\t\t\t[-123.821887, 39.406809],\n\t\t\t\t\t\t[-123.814690, 39.446538],\n\t\t\t\t\t\t[-123.795639, 39.492215],\n\t\t\t\t\t\t[-123.784170, 39.509419],\n\t\t\t\t\t\t[-123.778521, 39.521478],\n\t\t\t\t\t\t[-123.766475, 39.552803],\n\t\t\t\t\t\t[-123.767210, 39.559852],\n\t\t\t\t\t\t[-123.787417, 39.604552],\n\t\t\t\t\t\t[-123.783540, 39.609517],\n\t\t\t\t\t\t[-123.782322, 39.621486],\n\t\t\t\t\t\t[-123.786360, 39.659932],\n\t\t\t\t\t\t[-123.792659, 39.684122],\n\t\t\t\t\t\t[-123.808208, 39.710715],\n\t\t\t\t\t\t[-123.824744, 39.718128],\n\t\t\t\t\t\t[-123.829545, 39.723071],\n\t\t\t\t\t\t[-123.831599, 39.730629],\n\t\t\t\t\t\t[-123.835092, 39.738768],\n\t\t\t\t\t\t[-123.838089, 39.752409],\n\t\t\t\t\t\t[-123.837150, 39.776232],\n\t\t\t\t\t\t[-123.839797, 39.795637],\n\t\t\t\t\t\t[-123.851714, 39.832041],\n\t\t\t\t\t\t[-123.853764, 39.834100],\n\t\t\t\t\t\t[-123.881458, 39.845422],\n\t\t\t\t\t\t[-123.907664, 39.863028],\n\t\t\t\t\t\t[-123.915142, 39.875313],\n\t\t\t\t\t\t[-123.915853, 39.881114],\n\t\t\t\t\t\t[-123.930047, 39.909697],\n\t\t\t\t\t\t[-123.954952, 39.922373],\n\t\t\t\t\t\t[-123.962655, 39.937635],\n\t\t\t\t\t\t[-123.980031, 39.962458],\n\t\t\t\t\t\t[-123.995860, 39.973045],\n\t\t\t\t\t\t[-124.023938, 40.001284],\n\t\t\t\t\t\t[-123.544458, 40.001923],\n\t\t\t\t\t\t[-123.544563, 39.977015],\n\t\t\t\t\t\t[-122.934013, 39.978131],\n\t\t\t\t\t\t[-122.937654, 39.798156],\n\t\t\t\t\t\t[-122.892676, 39.708898],\n\t\t\t\t\t\t[-122.885352, 39.580108],\n\t\t\t\t\t\t[-122.890310, 39.529014],\n\t\t\t\t\t\t[-123.063181, 39.503539],\n\t\t\t\t\t\t[-123.075114, 39.407683],\n\t\t\t\t\t\t[-122.994839, 39.235924],\n\t\t\t\t\t\t[-123.077812, 39.173791],\n\t\t\t\t\t\t[-123.093013, 39.071994],\n\t\t\t\t\t\t[-123.028035, 38.996593],\n\t\t\t\t\t\t[-122.986640, 38.997283],\n\t\t\t\t\t\t[-122.948865, 38.900220],\n\t\t\t\t\t\t[-122.821592, 38.850140]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06049\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"049\",\n\t\t\t\t\"NAME\": \"Modoc\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 3917.770000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-121.447540, 41.997169],\n\t\t\t\t\t\t[-121.439610, 41.997080],\n\t\t\t\t\t\t[-121.434977, 41.997022],\n\t\t\t\t\t\t[-121.376101, 41.997026],\n\t\t\t\t\t\t[-121.360253, 41.996680],\n\t\t\t\t\t\t[-121.340517, 41.996220],\n\t\t\t\t\t\t[-121.335734, 41.996518],\n\t\t\t\t\t\t[-121.334385, 41.996655],\n\t\t\t\t\t\t[-121.154347, 41.996352],\n\t\t\t\t\t\t[-121.035195, 41.993323],\n\t\t\t\t\t\t[-120.879481, 41.993781],\n\t\t\t\t\t\t[-120.693941, 41.993676],\n\t\t\t\t\t\t[-120.692219, 41.993677],\n\t\t\t\t\t\t[-120.326005, 41.993122],\n\t\t\t\t\t\t[-120.286424, 41.993058],\n\t\t\t\t\t\t[-119.999168, 41.994540],\n\t\t\t\t\t\t[-119.999866, 41.183974],\n\t\t\t\t\t\t[-121.331786, 41.183886],\n\t\t\t\t\t\t[-121.446495, 41.183484],\n\t\t\t\t\t\t[-121.447540, 41.997169]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06051\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"051\",\n\t\t\t\t\"NAME\": \"Mono\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 3048.982000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-119.156863, 38.414743],\n\t\t\t\t\t\t[-119.125982, 38.393170],\n\t\t\t\t\t\t[-118.746598, 38.124926],\n\t\t\t\t\t\t[-118.428581, 37.895613],\n\t\t\t\t\t\t[-118.039798, 37.615273],\n\t\t\t\t\t\t[-118.039849, 37.615245],\n\t\t\t\t\t\t[-117.832726, 37.464929],\n\t\t\t\t\t\t[-118.775014, 37.463052],\n\t\t\t\t\t\t[-119.022363, 37.585737],\n\t\t\t\t\t\t[-119.124312, 37.733944],\n\t\t\t\t\t\t[-119.268979, 37.739230],\n\t\t\t\t\t\t[-119.201280, 37.804329],\n\t\t\t\t\t\t[-119.200283, 37.885827],\n\t\t\t\t\t\t[-119.308389, 37.946824],\n\t\t\t\t\t\t[-119.304590, 38.023891],\n\t\t\t\t\t\t[-119.345922, 38.083113],\n\t\t\t\t\t\t[-119.632671, 38.198858],\n\t\t\t\t\t\t[-119.639205, 38.326880],\n\t\t\t\t\t\t[-119.542862, 38.499694],\n\t\t\t\t\t\t[-119.619066, 38.603529],\n\t\t\t\t\t\t[-119.585437, 38.713212],\n\t\t\t\t\t\t[-119.494183, 38.649852],\n\t\t\t\t\t\t[-119.494022, 38.649734],\n\t\t\t\t\t\t[-119.450612, 38.619964],\n\t\t\t\t\t\t[-119.450623, 38.619965],\n\t\t\t\t\t\t[-119.328498, 38.534648],\n\t\t\t\t\t\t[-119.156863, 38.414743]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06057\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"057\",\n\t\t\t\t\"NAME\": \"Nevada\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 957.772000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-121.279533, 39.034618],\n\t\t\t\t\t\t[-121.266911, 39.271609],\n\t\t\t\t\t\t[-121.127481, 39.380237],\n\t\t\t\t\t\t[-121.022085, 39.391558],\n\t\t\t\t\t\t[-120.755729, 39.452663],\n\t\t\t\t\t\t[-120.654332, 39.526889],\n\t\t\t\t\t\t[-120.575059, 39.522280],\n\t\t\t\t\t\t[-120.505445, 39.446117],\n\t\t\t\t\t\t[-120.003117, 39.445045],\n\t\t\t\t\t\t[-120.005318, 39.316479],\n\t\t\t\t\t\t[-120.645795, 39.315155],\n\t\t\t\t\t\t[-120.691606, 39.303981],\n\t\t\t\t\t\t[-120.857909, 39.206235],\n\t\t\t\t\t\t[-120.986348, 39.102234],\n\t\t\t\t\t\t[-121.068788, 39.005177],\n\t\t\t\t\t\t[-121.137397, 39.037858],\n\t\t\t\t\t\t[-121.279533, 39.034618]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06059\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"059\",\n\t\t\t\t\"NAME\": \"Orange\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 790.568000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-118.093008, 33.786289],\n\t\t\t\t\t\t[-118.084597, 33.803216],\n\t\t\t\t\t\t[-118.072597, 33.815115],\n\t\t\t\t\t\t[-118.063162, 33.819610],\n\t\t\t\t\t\t[-118.063268, 33.824220],\n\t\t\t\t\t\t[-117.976586, 33.906225],\n\t\t\t\t\t\t[-117.976588, 33.909757],\n\t\t\t\t\t\t[-117.976692, 33.910614],\n\t\t\t\t\t\t[-117.976571, 33.911205],\n\t\t\t\t\t\t[-117.976498, 33.919171],\n\t\t\t\t\t\t[-117.976530, 33.928034],\n\t\t\t\t\t\t[-117.783287, 33.946411],\n\t\t\t\t\t\t[-117.680289, 33.877412],\n\t\t\t\t\t\t[-117.673749, 33.870831],\n\t\t\t\t\t\t[-117.533999, 33.710355],\n\t\t\t\t\t\t[-117.474573, 33.703811],\n\t\t\t\t\t\t[-117.459817, 33.691714],\n\t\t\t\t\t\t[-117.412987, 33.659045],\n\t\t\t\t\t\t[-117.509722, 33.505019],\n\t\t\t\t\t\t[-117.595880, 33.386629],\n\t\t\t\t\t\t[-117.607905, 33.406317],\n\t\t\t\t\t\t[-117.631682, 33.430528],\n\t\t\t\t\t\t[-117.645582, 33.440728],\n\t\t\t\t\t\t[-117.645592, 33.440733],\n\t\t\t\t\t\t[-117.684584, 33.461927],\n\t\t\t\t\t\t[-117.689284, 33.460155],\n\t\t\t\t\t\t[-117.691984, 33.456627],\n\t\t\t\t\t\t[-117.691384, 33.454028],\n\t\t\t\t\t\t[-117.715349, 33.460556],\n\t\t\t\t\t\t[-117.726486, 33.483427],\n\t\t\t\t\t\t[-117.761387, 33.516326],\n\t\t\t\t\t\t[-117.784888, 33.541525],\n\t\t\t\t\t\t[-117.801288, 33.546324],\n\t\t\t\t\t\t[-117.814188, 33.552224],\n\t\t\t\t\t\t[-117.840289, 33.573523],\n\t\t\t\t\t\t[-117.876790, 33.592322],\n\t\t\t\t\t\t[-117.899790, 33.599622],\n\t\t\t\t\t\t[-117.927091, 33.605521],\n\t\t\t\t\t\t[-117.940591, 33.620021],\n\t\t\t\t\t\t[-117.957114, 33.629466],\n\t\t\t\t\t\t[-118.000593, 33.654319],\n\t\t\t\t\t\t[-118.029694, 33.676418],\n\t\t\t\t\t\t[-118.064895, 33.711018],\n\t\t\t\t\t\t[-118.088896, 33.729817],\n\t\t\t\t\t\t[-118.101097, 33.734117],\n\t\t\t\t\t\t[-118.116703, 33.743549],\n\t\t\t\t\t\t[-118.091970, 33.758472],\n\t\t\t\t\t\t[-118.099107, 33.776518],\n\t\t\t\t\t\t[-118.093008, 33.786289]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06065\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"065\",\n\t\t\t\t\"NAME\": \"Riverside\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 7206.480000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-117.284475, 34.019015],\n\t\t\t\t\t\t[-117.225372, 34.004314],\n\t\t\t\t\t\t[-116.929357, 34.004914],\n\t\t\t\t\t\t[-116.929558, 34.034113],\n\t\t\t\t\t\t[-116.457775, 34.032881],\n\t\t\t\t\t\t[-115.316212, 34.034110],\n\t\t\t\t\t\t[-115.316065, 34.077843],\n\t\t\t\t\t\t[-114.435429, 34.079727],\n\t\t\t\t\t\t[-114.434949, 34.037784],\n\t\t\t\t\t\t[-114.438266, 34.022609],\n\t\t\t\t\t\t[-114.463610, 33.993431],\n\t\t\t\t\t\t[-114.499883, 33.961789],\n\t\t\t\t\t\t[-114.518434, 33.917518],\n\t\t\t\t\t\t[-114.525539, 33.838614],\n\t\t\t\t\t\t[-114.523365, 33.806120],\n\t\t\t\t\t\t[-114.504340, 33.756381],\n\t\t\t\t\t\t[-114.494197, 33.707922],\n\t\t\t\t\t\t[-114.496489, 33.696901],\n\t\t\t\t\t\t[-114.519113, 33.688473],\n\t\t\t\t\t\t[-114.523959, 33.685879],\n\t\t\t\t\t\t[-114.530348, 33.679245],\n\t\t\t\t\t\t[-114.540617, 33.591412],\n\t\t\t\t\t\t[-114.540300, 33.580615],\n\t\t\t\t\t\t[-114.535965, 33.569154],\n\t\t\t\t\t\t[-114.535664, 33.568788],\n\t\t\t\t\t\t[-114.558898, 33.531819],\n\t\t\t\t\t\t[-114.594534, 33.495059],\n\t\t\t\t\t\t[-114.622918, 33.456561],\n\t\t\t\t\t\t[-114.627125, 33.433554],\n\t\t\t\t\t\t[-115.467506, 33.426992],\n\t\t\t\t\t\t[-116.085165, 33.425932],\n\t\t\t\t\t\t[-116.197591, 33.428893],\n\t\t\t\t\t\t[-116.617687, 33.427354],\n\t\t\t\t\t\t[-117.079721, 33.430330],\n\t\t\t\t\t\t[-117.241271, 33.431993],\n\t\t\t\t\t\t[-117.370925, 33.490549],\n\t\t\t\t\t\t[-117.509722, 33.505019],\n\t\t\t\t\t\t[-117.412987, 33.659045],\n\t\t\t\t\t\t[-117.459817, 33.691714],\n\t\t\t\t\t\t[-117.474573, 33.703811],\n\t\t\t\t\t\t[-117.533999, 33.710355],\n\t\t\t\t\t\t[-117.673749, 33.870831],\n\t\t\t\t\t\t[-117.600066, 33.975316],\n\t\t\t\t\t\t[-117.558312, 34.033451],\n\t\t\t\t\t\t[-117.336161, 34.019378],\n\t\t\t\t\t\t[-117.284475, 34.019015]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06069\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"069\",\n\t\t\t\t\"NAME\": \"San Benito\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1388.710000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-121.581354, 36.899152],\n\t\t\t\t\t\t[-121.501488, 36.971895],\n\t\t\t\t\t\t[-121.215406, 36.961248],\n\t\t\t\t\t\t[-121.141523, 36.836656],\n\t\t\t\t\t\t[-120.918731, 36.740381],\n\t\t\t\t\t\t[-120.603706, 36.488242],\n\t\t\t\t\t\t[-120.596562, 36.328488],\n\t\t\t\t\t\t[-120.678582, 36.267319],\n\t\t\t\t\t\t[-120.758340, 36.308604],\n\t\t\t\t\t\t[-120.718169, 36.196848],\n\t\t\t\t\t\t[-120.761483, 36.203580],\n\t\t\t\t\t\t[-120.865080, 36.292578],\n\t\t\t\t\t\t[-120.920551, 36.311012],\n\t\t\t\t\t\t[-121.027240, 36.259893],\n\t\t\t\t\t\t[-121.040797, 36.323969],\n\t\t\t\t\t\t[-121.193465, 36.445751],\n\t\t\t\t\t\t[-121.244091, 36.506911],\n\t\t\t\t\t\t[-121.311788, 36.502736],\n\t\t\t\t\t\t[-121.318373, 36.610026],\n\t\t\t\t\t\t[-121.350092, 36.648357],\n\t\t\t\t\t\t[-121.468086, 36.685518],\n\t\t\t\t\t\t[-121.451340, 36.724793],\n\t\t\t\t\t\t[-121.597698, 36.837350],\n\t\t\t\t\t\t[-121.644001, 36.893996],\n\t\t\t\t\t\t[-121.629489, 36.911681],\n\t\t\t\t\t\t[-121.607354, 36.899452],\n\t\t\t\t\t\t[-121.581354, 36.899152]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06073\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"073\",\n\t\t\t\t\"NAME\": \"San Diego\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 4206.630000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-116.106159, 32.618328],\n\t\t\t\t\t\t[-116.390091, 32.596020],\n\t\t\t\t\t\t[-117.118865, 32.534661],\n\t\t\t\t\t\t[-117.124862, 32.534156],\n\t\t\t\t\t\t[-117.133363, 32.575625],\n\t\t\t\t\t\t[-117.132963, 32.597054],\n\t\t\t\t\t\t[-117.136664, 32.618754],\n\t\t\t\t\t\t[-117.139464, 32.627054],\n\t\t\t\t\t\t[-117.159865, 32.660652],\n\t\t\t\t\t\t[-117.168866, 32.671952],\n\t\t\t\t\t\t[-117.180366, 32.681652],\n\t\t\t\t\t\t[-117.192967, 32.687751],\n\t\t\t\t\t\t[-117.196767, 32.688851],\n\t\t\t\t\t\t[-117.213068, 32.687751],\n\t\t\t\t\t\t[-117.223868, 32.683051],\n\t\t\t\t\t\t[-117.236239, 32.671353],\n\t\t\t\t\t\t[-117.246069, 32.669352],\n\t\t\t\t\t\t[-117.255169, 32.700051],\n\t\t\t\t\t\t[-117.257570, 32.726050],\n\t\t\t\t\t\t[-117.255370, 32.745449],\n\t\t\t\t\t\t[-117.252570, 32.752949],\n\t\t\t\t\t\t[-117.254970, 32.786948],\n\t\t\t\t\t\t[-117.261070, 32.803148],\n\t\t\t\t\t\t[-117.280971, 32.822247],\n\t\t\t\t\t\t[-117.282170, 32.839547],\n\t\t\t\t\t\t[-117.281170, 32.843047],\n\t\t\t\t\t\t[-117.273870, 32.851447],\n\t\t\t\t\t\t[-117.264970, 32.848947],\n\t\t\t\t\t\t[-117.260670, 32.852647],\n\t\t\t\t\t\t[-117.256170, 32.859447],\n\t\t\t\t\t\t[-117.251670, 32.874346],\n\t\t\t\t\t\t[-117.254470, 32.900146],\n\t\t\t\t\t\t[-117.260470, 32.931245],\n\t\t\t\t\t\t[-117.262547, 32.939542],\n\t\t\t\t\t\t[-117.280770, 33.012343],\n\t\t\t\t\t\t[-117.293370, 33.034642],\n\t\t\t\t\t\t[-117.309771, 33.074540],\n\t\t\t\t\t\t[-117.315278, 33.093504],\n\t\t\t\t\t\t[-117.328359, 33.121842],\n\t\t\t\t\t\t[-117.359484, 33.164231],\n\t\t\t\t\t\t[-117.362572, 33.168437],\n\t\t\t\t\t\t[-117.391480, 33.202762],\n\t\t\t\t\t\t[-117.401926, 33.213598],\n\t\t\t\t\t\t[-117.445583, 33.268517],\n\t\t\t\t\t\t[-117.469794, 33.296417],\n\t\t\t\t\t\t[-117.505650, 33.334063],\n\t\t\t\t\t\t[-117.547693, 33.365491],\n\t\t\t\t\t\t[-117.571722, 33.378988],\n\t\t\t\t\t\t[-117.595880, 33.386629],\n\t\t\t\t\t\t[-117.509722, 33.505019],\n\t\t\t\t\t\t[-117.370925, 33.490549],\n\t\t\t\t\t\t[-117.241271, 33.431993],\n\t\t\t\t\t\t[-117.079721, 33.430330],\n\t\t\t\t\t\t[-116.617687, 33.427354],\n\t\t\t\t\t\t[-116.197591, 33.428893],\n\t\t\t\t\t\t[-116.085165, 33.425932],\n\t\t\t\t\t\t[-116.081090, 33.074833],\n\t\t\t\t\t\t[-116.103137, 32.904115],\n\t\t\t\t\t\t[-116.106159, 32.618328]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06075\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"075\",\n\t\t\t\t\"NAME\": \"San Francisco\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 46.873000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-122.418698, 37.852717],\n\t\t\t\t\t\t\t[-122.434403, 37.852434],\n\t\t\t\t\t\t\t[-122.443302, 37.855448],\n\t\t\t\t\t\t\t[-122.446316, 37.861046],\n\t\t\t\t\t\t\t[-122.438565, 37.868367],\n\t\t\t\t\t\t\t[-122.430958, 37.872242],\n\t\t\t\t\t\t\t[-122.421439, 37.869969],\n\t\t\t\t\t\t\t[-122.421341, 37.869946],\n\t\t\t\t\t\t\t[-122.418470, 37.861764],\n\t\t\t\t\t\t\t[-122.418470, 37.852721],\n\t\t\t\t\t\t\t[-122.418698, 37.852717]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-123.013916, 37.700355],\n\t\t\t\t\t\t\t[-123.013897, 37.704478],\n\t\t\t\t\t\t\t[-123.012194, 37.706749],\n\t\t\t\t\t\t\t[-123.004489, 37.706262],\n\t\t\t\t\t\t\t[-123.000190, 37.702937],\n\t\t\t\t\t\t\t[-122.997189, 37.697909],\n\t\t\t\t\t\t\t[-123.000677, 37.690203],\n\t\t\t\t\t\t\t[-123.005543, 37.689392],\n\t\t\t\t\t\t\t[-123.011464, 37.691907],\n\t\t\t\t\t\t\t[-123.014303, 37.696205],\n\t\t\t\t\t\t\t[-123.013916, 37.700355]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-122.378500, 37.826505],\n\t\t\t\t\t\t\t[-122.377879, 37.830648],\n\t\t\t\t\t\t\t[-122.369941, 37.832137],\n\t\t\t\t\t\t\t[-122.363244, 37.823951],\n\t\t\t\t\t\t\t[-122.358779, 37.814278],\n\t\t\t\t\t\t\t[-122.362661, 37.807577],\n\t\t\t\t\t\t\t[-122.372422, 37.811301],\n\t\t\t\t\t\t\t[-122.372670, 37.816510],\n\t\t\t\t\t\t\t[-122.378500, 37.826505]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-122.502427, 37.708133],\n\t\t\t\t\t\t\t[-122.506483, 37.723731],\n\t\t\t\t\t\t\t[-122.509397, 37.748841],\n\t\t\t\t\t\t\t[-122.511983, 37.771130],\n\t\t\t\t\t\t\t[-122.514483, 37.780829],\n\t\t\t\t\t\t\t[-122.505310, 37.788312],\n\t\t\t\t\t\t\t[-122.492883, 37.787929],\n\t\t\t\t\t\t\t[-122.485783, 37.790629],\n\t\t\t\t\t\t\t[-122.478083, 37.810828],\n\t\t\t\t\t\t\t[-122.470336, 37.808671],\n\t\t\t\t\t\t\t[-122.463793, 37.804653],\n\t\t\t\t\t\t\t[-122.425942, 37.810979],\n\t\t\t\t\t\t\t[-122.407452, 37.811441],\n\t\t\t\t\t\t\t[-122.398139, 37.805630],\n\t\t\t\t\t\t\t[-122.385323, 37.790724],\n\t\t\t\t\t\t\t[-122.375854, 37.734979],\n\t\t\t\t\t\t\t[-122.370094, 37.732331],\n\t\t\t\t\t\t\t[-122.367697, 37.734943],\n\t\t\t\t\t\t\t[-122.365478, 37.734621],\n\t\t\t\t\t\t\t[-122.356784, 37.729505],\n\t\t\t\t\t\t\t[-122.361749, 37.715010],\n\t\t\t\t\t\t\t[-122.370411, 37.717572],\n\t\t\t\t\t\t\t[-122.391374, 37.708331],\n\t\t\t\t\t\t\t[-122.393782, 37.708231],\n\t\t\t\t\t\t\t[-122.471319, 37.708305],\n\t\t\t\t\t\t\t[-122.471837, 37.708332],\n\t\t\t\t\t\t\t[-122.481083, 37.708232],\n\t\t\t\t\t\t\t[-122.484883, 37.708332],\n\t\t\t\t\t\t\t[-122.485382, 37.708231],\n\t\t\t\t\t\t\t[-122.502427, 37.708133]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06113\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"113\",\n\t\t\t\t\"NAME\": \"Yolo\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1014.689000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-121.504139, 38.466563],\n\t\t\t\t\t\t[-121.521641, 38.360104],\n\t\t\t\t\t\t[-121.593273, 38.313089],\n\t\t\t\t\t\t[-121.693697, 38.313732],\n\t\t\t\t\t\t[-121.694679, 38.527050],\n\t\t\t\t\t\t[-121.940285, 38.533384],\n\t\t\t\t\t\t[-122.011673, 38.488991],\n\t\t\t\t\t\t[-122.103281, 38.513348],\n\t\t\t\t\t\t[-122.111563, 38.524051],\n\t\t\t\t\t\t[-122.128123, 38.583697],\n\t\t\t\t\t\t[-122.151772, 38.625297],\n\t\t\t\t\t\t[-122.168349, 38.619297],\n\t\t\t\t\t\t[-122.164944, 38.642462],\n\t\t\t\t\t\t[-122.287999, 38.839932],\n\t\t\t\t\t\t[-122.395056, 38.864245],\n\t\t\t\t\t\t[-122.340172, 38.924246],\n\t\t\t\t\t\t[-122.337967, 38.923945],\n\t\t\t\t\t\t[-121.835488, 38.924481],\n\t\t\t\t\t\t[-121.723149, 38.851306],\n\t\t\t\t\t\t[-121.685998, 38.763371],\n\t\t\t\t\t\t[-121.602894, 38.735838],\n\t\t\t\t\t\t[-121.605774, 38.718319],\n\t\t\t\t\t\t[-121.630446, 38.697571],\n\t\t\t\t\t\t[-121.625760, 38.673133],\n\t\t\t\t\t\t[-121.594069, 38.644106],\n\t\t\t\t\t\t[-121.576068, 38.648604],\n\t\t\t\t\t\t[-121.549869, 38.599405],\n\t\t\t\t\t\t[-121.527667, 38.604604],\n\t\t\t\t\t\t[-121.506269, 38.586305],\n\t\t\t\t\t\t[-121.520965, 38.566205],\n\t\t\t\t\t\t[-121.511290, 38.546290],\n\t\t\t\t\t\t[-121.559167, 38.498007],\n\t\t\t\t\t\t[-121.538766, 38.474707],\n\t\t\t\t\t\t[-121.504139, 38.466563]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08001\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"001\",\n\t\t\t\t\"NAME\": \"Adams\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1167.653000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-103.706547, 39.739894],\n\t\t\t\t\t\t[-104.734969, 39.740302],\n\t\t\t\t\t\t[-104.884646, 39.740156],\n\t\t\t\t\t\t[-104.856377, 39.768673],\n\t\t\t\t\t\t[-104.734601, 39.769181],\n\t\t\t\t\t\t[-104.762470, 39.822980],\n\t\t\t\t\t\t[-104.619906, 39.826633],\n\t\t\t\t\t\t[-104.600435, 39.899459],\n\t\t\t\t\t\t[-104.692934, 39.914183],\n\t\t\t\t\t\t[-104.790910, 39.798250],\n\t\t\t\t\t\t[-105.053246, 39.791063],\n\t\t\t\t\t\t[-105.053162, 39.799239],\n\t\t\t\t\t\t[-105.052829, 39.803874],\n\t\t\t\t\t\t[-105.053256, 39.806497],\n\t\t\t\t\t\t[-105.053270, 39.820028],\n\t\t\t\t\t\t[-105.053190, 39.849251],\n\t\t\t\t\t\t[-105.052900, 39.852042],\n\t\t\t\t\t\t[-105.053245, 39.860018],\n\t\t\t\t\t\t[-105.052884, 39.913795],\n\t\t\t\t\t\t[-104.961408, 40.000337],\n\t\t\t\t\t\t[-104.923689, 40.000327],\n\t\t\t\t\t\t[-104.922153, 40.000330],\n\t\t\t\t\t\t[-104.150332, 40.000856],\n\t\t\t\t\t\t[-103.705701, 40.001366],\n\t\t\t\t\t\t[-103.705826, 39.999984],\n\t\t\t\t\t\t[-103.706547, 39.739894]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08007\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"007\",\n\t\t\t\t\"NAME\": \"Archuleta\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1350.175000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-106.476228, 36.993472],\n\t\t\t\t\t\t[-106.617159, 36.992967],\n\t\t\t\t\t\t[-106.617125, 36.993004],\n\t\t\t\t\t\t[-106.628652, 36.993175],\n\t\t\t\t\t\t[-106.628733, 36.993161],\n\t\t\t\t\t\t[-106.661344, 36.993243],\n\t\t\t\t\t\t[-106.675626, 36.993123],\n\t\t\t\t\t\t[-106.869796, 36.992426],\n\t\t\t\t\t\t[-107.000592, 37.000009],\n\t\t\t\t\t\t[-107.420913, 37.000005],\n\t\t\t\t\t\t[-107.420915, 37.000005],\n\t\t\t\t\t\t[-107.481737, 36.999973],\n\t\t\t\t\t\t[-107.482131, 37.422673],\n\t\t\t\t\t\t[-107.128680, 37.422942],\n\t\t\t\t\t\t[-107.128737, 37.392409],\n\t\t\t\t\t\t[-106.710775, 37.404228],\n\t\t\t\t\t\t[-106.678373, 37.403596],\n\t\t\t\t\t\t[-106.678354, 37.228566],\n\t\t\t\t\t\t[-106.476228, 36.993472]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08009\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"009\",\n\t\t\t\t\"NAME\": \"Baca\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2554.967000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-102.042240, 36.993083],\n\t\t\t\t\t\t[-102.054503, 36.993109],\n\t\t\t\t\t\t[-102.184271, 36.993593],\n\t\t\t\t\t\t[-102.208316, 36.993730],\n\t\t\t\t\t\t[-102.355288, 36.994506],\n\t\t\t\t\t\t[-102.355367, 36.994575],\n\t\t\t\t\t\t[-102.570896, 36.995136],\n\t\t\t\t\t\t[-102.875481, 36.999628],\n\t\t\t\t\t\t[-102.979613, 36.998549],\n\t\t\t\t\t\t[-102.985807, 36.998571],\n\t\t\t\t\t\t[-102.986976, 36.998524],\n\t\t\t\t\t\t[-103.002199, 37.000104],\n\t\t\t\t\t\t[-103.086105, 36.999864],\n\t\t\t\t\t\t[-103.075938, 37.643420],\n\t\t\t\t\t\t[-102.747615, 37.643642],\n\t\t\t\t\t\t[-102.041585, 37.644282],\n\t\t\t\t\t\t[-102.041618, 37.607868],\n\t\t\t\t\t\t[-102.041894, 37.557977],\n\t\t\t\t\t\t[-102.041899, 37.541186],\n\t\t\t\t\t\t[-102.042016, 37.535261],\n\t\t\t\t\t\t[-102.041786, 37.506066],\n\t\t\t\t\t\t[-102.041801, 37.469488],\n\t\t\t\t\t\t[-102.041755, 37.434855],\n\t\t\t\t\t\t[-102.041669, 37.434740],\n\t\t\t\t\t\t[-102.041676, 37.409898],\n\t\t\t\t\t\t[-102.041826, 37.389191],\n\t\t\t\t\t\t[-102.042089, 37.352819],\n\t\t\t\t\t\t[-102.041974, 37.352613],\n\t\t\t\t\t\t[-102.041817, 37.309490],\n\t\t\t\t\t\t[-102.041664, 37.297650],\n\t\t\t\t\t\t[-102.041963, 37.258164],\n\t\t\t\t\t\t[-102.042002, 37.141744],\n\t\t\t\t\t\t[-102.042135, 37.125021],\n\t\t\t\t\t\t[-102.042092, 37.125021],\n\t\t\t\t\t\t[-102.041809, 37.111973],\n\t\t\t\t\t\t[-102.041983, 37.106551],\n\t\t\t\t\t\t[-102.041920, 37.035083],\n\t\t\t\t\t\t[-102.041749, 37.034397],\n\t\t\t\t\t\t[-102.041921, 37.032178],\n\t\t\t\t\t\t[-102.041950, 37.030805],\n\t\t\t\t\t\t[-102.041952, 37.024742],\n\t\t\t\t\t\t[-102.042240, 36.993083]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08015\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"015\",\n\t\t\t\t\"NAME\": \"Chaffee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1013.403000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-106.577966, 39.057908],\n\t\t\t\t\t\t[-106.191006, 39.056073],\n\t\t\t\t\t\t[-106.110995, 38.940099],\n\t\t\t\t\t\t[-106.028138, 38.942849],\n\t\t\t\t\t\t[-105.925123, 38.872178],\n\t\t\t\t\t\t[-105.906587, 38.806962],\n\t\t\t\t\t\t[-105.969750, 38.693551],\n\t\t\t\t\t\t[-105.879176, 38.607312],\n\t\t\t\t\t\t[-105.908717, 38.505631],\n\t\t\t\t\t\t[-106.010751, 38.446566],\n\t\t\t\t\t\t[-106.246940, 38.422768],\n\t\t\t\t\t\t[-106.452126, 38.698777],\n\t\t\t\t\t\t[-106.326099, 38.911004],\n\t\t\t\t\t\t[-106.465032, 38.910354],\n\t\t\t\t\t\t[-106.599214, 38.997994],\n\t\t\t\t\t\t[-106.591692, 39.024923],\n\t\t\t\t\t\t[-106.597233, 39.044821],\n\t\t\t\t\t\t[-106.580730, 39.048717],\n\t\t\t\t\t\t[-106.577966, 39.057908]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08017\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"017\",\n\t\t\t\t\"NAME\": \"Cheyenne\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1778.276000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-102.046571, 39.047038],\n\t\t\t\t\t\t[-102.045388, 38.813392],\n\t\t\t\t\t\t[-102.045334, 38.799463],\n\t\t\t\t\t\t[-102.045448, 38.783453],\n\t\t\t\t\t\t[-102.045371, 38.770064],\n\t\t\t\t\t\t[-102.045287, 38.755528],\n\t\t\t\t\t\t[-102.045375, 38.754339],\n\t\t\t\t\t\t[-102.045212, 38.697567],\n\t\t\t\t\t\t[-102.045156, 38.688555],\n\t\t\t\t\t\t[-102.045127, 38.686725],\n\t\t\t\t\t\t[-102.045160, 38.675221],\n\t\t\t\t\t\t[-102.045102, 38.674946],\n\t\t\t\t\t\t[-102.045074, 38.669617],\n\t\t\t\t\t\t[-102.045288, 38.615249],\n\t\t\t\t\t\t[-102.045288, 38.615168],\n\t\t\t\t\t\t[-103.172943, 38.612450],\n\t\t\t\t\t\t[-103.163025, 39.037610],\n\t\t\t\t\t\t[-102.046571, 39.047038]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08021\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"021\",\n\t\t\t\t\"NAME\": \"Conejos\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1287.391000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-105.718470, 36.995846],\n\t\t\t\t\t\t[-105.996159, 36.995418],\n\t\t\t\t\t\t[-105.997472, 36.995417],\n\t\t\t\t\t\t[-106.006634, 36.995343],\n\t\t\t\t\t\t[-106.247705, 36.994266],\n\t\t\t\t\t\t[-106.248675, 36.994288],\n\t\t\t\t\t\t[-106.476228, 36.993472],\n\t\t\t\t\t\t[-106.678354, 37.228566],\n\t\t\t\t\t\t[-106.678373, 37.403596],\n\t\t\t\t\t\t[-106.039331, 37.400852],\n\t\t\t\t\t\t[-106.038912, 37.356953],\n\t\t\t\t\t\t[-105.743339, 37.356798],\n\t\t\t\t\t\t[-105.729755, 37.180506],\n\t\t\t\t\t\t[-105.770171, 37.061166],\n\t\t\t\t\t\t[-105.718470, 36.995846]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08023\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"023\",\n\t\t\t\t\"NAME\": \"Costilla\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1226.952000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-105.155042, 36.995339],\n\t\t\t\t\t\t[-105.220613, 36.995169],\n\t\t\t\t\t\t[-105.419310, 36.995856],\n\t\t\t\t\t\t[-105.442459, 36.995994],\n\t\t\t\t\t\t[-105.447255, 36.996017],\n\t\t\t\t\t\t[-105.465182, 36.995991],\n\t\t\t\t\t\t[-105.508836, 36.995895],\n\t\t\t\t\t\t[-105.512485, 36.995777],\n\t\t\t\t\t\t[-105.533922, 36.995875],\n\t\t\t\t\t\t[-105.627470, 36.995679],\n\t\t\t\t\t\t[-105.664720, 36.995874],\n\t\t\t\t\t\t[-105.716471, 36.995849],\n\t\t\t\t\t\t[-105.718470, 36.995846],\n\t\t\t\t\t\t[-105.770171, 37.061166],\n\t\t\t\t\t\t[-105.729755, 37.180506],\n\t\t\t\t\t\t[-105.743339, 37.356798],\n\t\t\t\t\t\t[-105.485516, 37.577899],\n\t\t\t\t\t\t[-105.295587, 37.654416],\n\t\t\t\t\t\t[-105.187549, 37.619669],\n\t\t\t\t\t\t[-105.154176, 37.293129],\n\t\t\t\t\t\t[-105.155042, 36.995339]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08029\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"029\",\n\t\t\t\t\"NAME\": \"Delta\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1142.050000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-107.500655, 38.668553],\n\t\t\t\t\t\t[-108.378698, 38.668097],\n\t\t\t\t\t\t[-108.378953, 38.829108],\n\t\t\t\t\t\t[-107.858240, 39.079804],\n\t\t\t\t\t\t[-107.765490, 39.043294],\n\t\t\t\t\t\t[-107.500606, 39.217916],\n\t\t\t\t\t\t[-107.500655, 38.668553]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08037\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"037\",\n\t\t\t\t\"NAME\": \"Eagle\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1684.530000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-106.206732, 39.379636],\n\t\t\t\t\t\t[-106.426487, 39.361871],\n\t\t\t\t\t\t[-107.113446, 39.366066],\n\t\t\t\t\t\t[-107.113672, 39.919112],\n\t\t\t\t\t\t[-107.033968, 39.918913],\n\t\t\t\t\t\t[-106.626555, 39.918671],\n\t\t\t\t\t\t[-106.626569, 39.924785],\n\t\t\t\t\t\t[-106.434508, 39.924914],\n\t\t\t\t\t\t[-106.385478, 39.767164],\n\t\t\t\t\t\t[-106.177604, 39.609056],\n\t\t\t\t\t\t[-106.251638, 39.465039],\n\t\t\t\t\t\t[-106.206732, 39.379636]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08043\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"043\",\n\t\t\t\t\"NAME\": \"Fremont\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1533.068000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-104.941533, 38.519569],\n\t\t\t\t\t\t[-104.940366, 38.258275],\n\t\t\t\t\t\t[-105.049215, 38.257973],\n\t\t\t\t\t\t[-105.796897, 38.265047],\n\t\t\t\t\t\t[-106.010751, 38.446566],\n\t\t\t\t\t\t[-105.908717, 38.505631],\n\t\t\t\t\t\t[-105.879176, 38.607312],\n\t\t\t\t\t\t[-105.969750, 38.693551],\n\t\t\t\t\t\t[-105.329134, 38.697205],\n\t\t\t\t\t\t[-105.237792, 38.696901],\n\t\t\t\t\t\t[-105.240362, 38.647595],\n\t\t\t\t\t\t[-104.942426, 38.649882],\n\t\t\t\t\t\t[-104.941533, 38.519569]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06081\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"081\",\n\t\t\t\t\"NAME\": \"San Mateo\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 448.408000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-122.292974, 37.107318],\n\t\t\t\t\t\t[-122.306139, 37.116383],\n\t\t\t\t\t\t[-122.313907, 37.118161],\n\t\t\t\t\t\t[-122.322971, 37.115460],\n\t\t\t\t\t\t[-122.330463, 37.115338],\n\t\t\t\t\t\t[-122.337071, 37.117382],\n\t\t\t\t\t\t[-122.338856, 37.120854],\n\t\t\t\t\t\t[-122.337085, 37.130795],\n\t\t\t\t\t\t[-122.337833, 37.135936],\n\t\t\t\t\t\t[-122.344029, 37.144099],\n\t\t\t\t\t\t[-122.359791, 37.155574],\n\t\t\t\t\t\t[-122.361790, 37.163593],\n\t\t\t\t\t\t[-122.367085, 37.172817],\n\t\t\t\t\t\t[-122.379270, 37.181128],\n\t\t\t\t\t\t[-122.390599, 37.182988],\n\t\t\t\t\t\t[-122.397065, 37.187249],\n\t\t\t\t\t\t[-122.405073, 37.195791],\n\t\t\t\t\t\t[-122.407181, 37.219465],\n\t\t\t\t\t\t[-122.408982, 37.225258],\n\t\t\t\t\t\t[-122.415822, 37.232839],\n\t\t\t\t\t\t[-122.419113, 37.241470],\n\t\t\t\t\t\t[-122.418452, 37.248521],\n\t\t\t\t\t\t[-122.411686, 37.265844],\n\t\t\t\t\t\t[-122.401323, 37.337009],\n\t\t\t\t\t\t[-122.400850, 37.359225],\n\t\t\t\t\t\t[-122.409258, 37.374805],\n\t\t\t\t\t\t[-122.423286, 37.392542],\n\t\t\t\t\t\t[-122.443687, 37.435941],\n\t\t\t\t\t\t[-122.445987, 37.461541],\n\t\t\t\t\t\t[-122.452087, 37.480540],\n\t\t\t\t\t\t[-122.467888, 37.498140],\n\t\t\t\t\t\t[-122.472388, 37.500540],\n\t\t\t\t\t\t[-122.476443, 37.498768],\n\t\t\t\t\t\t[-122.482351, 37.496187],\n\t\t\t\t\t\t[-122.485888, 37.494641],\n\t\t\t\t\t\t[-122.486749, 37.494390],\n\t\t\t\t\t\t[-122.487139, 37.494277],\n\t\t\t\t\t\t[-122.493789, 37.492341],\n\t\t\t\t\t\t[-122.494429, 37.492690],\n\t\t\t\t\t\t[-122.499289, 37.495341],\n\t\t\t\t\t\t[-122.516689, 37.521340],\n\t\t\t\t\t\t[-122.519533, 37.537302],\n\t\t\t\t\t\t[-122.516589, 37.544939],\n\t\t\t\t\t\t[-122.514789, 37.546139],\n\t\t\t\t\t\t[-122.513688, 37.552239],\n\t\t\t\t\t\t[-122.518088, 37.576138],\n\t\t\t\t\t\t[-122.517187, 37.590637],\n\t\t\t\t\t\t[-122.501386, 37.599637],\n\t\t\t\t\t\t[-122.496786, 37.612136],\n\t\t\t\t\t\t[-122.494085, 37.644035],\n\t\t\t\t\t\t[-122.496784, 37.686433],\n\t\t\t\t\t\t[-122.502427, 37.708133],\n\t\t\t\t\t\t[-122.485382, 37.708231],\n\t\t\t\t\t\t[-122.484883, 37.708332],\n\t\t\t\t\t\t[-122.481083, 37.708232],\n\t\t\t\t\t\t[-122.471837, 37.708332],\n\t\t\t\t\t\t[-122.471319, 37.708305],\n\t\t\t\t\t\t[-122.393782, 37.708231],\n\t\t\t\t\t\t[-122.391374, 37.708331],\n\t\t\t\t\t\t[-122.393190, 37.707531],\n\t\t\t\t\t\t[-122.387626, 37.679060],\n\t\t\t\t\t\t[-122.374291, 37.662206],\n\t\t\t\t\t\t[-122.375600, 37.652389],\n\t\t\t\t\t\t[-122.377890, 37.650425],\n\t\t\t\t\t\t[-122.387381, 37.648462],\n\t\t\t\t\t\t[-122.386072, 37.637662],\n\t\t\t\t\t\t[-122.365455, 37.626208],\n\t\t\t\t\t\t[-122.355310, 37.615736],\n\t\t\t\t\t\t[-122.358583, 37.611155],\n\t\t\t\t\t\t[-122.370364, 37.614427],\n\t\t\t\t\t\t[-122.373309, 37.613773],\n\t\t\t\t\t\t[-122.378545, 37.605592],\n\t\t\t\t\t\t[-122.360219, 37.592501],\n\t\t\t\t\t\t[-122.317676, 37.590865],\n\t\t\t\t\t\t[-122.315385, 37.587265],\n\t\t\t\t\t\t[-122.315713, 37.583666],\n\t\t\t\t\t\t[-122.305895, 37.575484],\n\t\t\t\t\t\t[-122.262698, 37.572866],\n\t\t\t\t\t\t[-122.251898, 37.566321],\n\t\t\t\t\t\t[-122.244372, 37.558140],\n\t\t\t\t\t\t[-122.242832, 37.557136],\n\t\t\t\t\t\t[-122.236323, 37.552891],\n\t\t\t\t\t\t[-122.225135, 37.545594],\n\t\t\t\t\t\t[-122.214264, 37.538505],\n\t\t\t\t\t\t[-122.196593, 37.537196],\n\t\t\t\t\t\t[-122.194957, 37.522469],\n\t\t\t\t\t\t[-122.168449, 37.504143],\n\t\t\t\t\t\t[-122.155686, 37.501198],\n\t\t\t\t\t\t[-122.149632, 37.502671],\n\t\t\t\t\t\t[-122.140142, 37.507907],\n\t\t\t\t\t\t[-122.130979, 37.503652],\n\t\t\t\t\t\t[-122.127706, 37.500053],\n\t\t\t\t\t\t[-122.116112, 37.505386],\n\t\t\t\t\t\t[-122.109574, 37.497637],\n\t\t\t\t\t\t[-122.081473, 37.477838],\n\t\t\t\t\t\t[-122.190402, 37.431472],\n\t\t\t\t\t\t[-122.152278, 37.286055],\n\t\t\t\t\t\t[-122.152774, 37.215444],\n\t\t\t\t\t\t[-122.317682, 37.186945],\n\t\t\t\t\t\t[-122.292974, 37.107318]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06083\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"083\",\n\t\t\t\t\"NAME\": \"Santa Barbara\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2735.085000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-120.248484, 33.999329],\n\t\t\t\t\t\t\t[-120.247393, 34.001911],\n\t\t\t\t\t\t\t[-120.238657, 34.007592],\n\t\t\t\t\t\t\t[-120.230001, 34.010136],\n\t\t\t\t\t\t\t[-120.221287, 34.010367],\n\t\t\t\t\t\t\t[-120.208478, 34.005655],\n\t\t\t\t\t\t\t[-120.195780, 34.004284],\n\t\t\t\t\t\t\t[-120.167306, 34.008219],\n\t\t\t\t\t\t\t[-120.151663, 34.018126],\n\t\t\t\t\t\t\t[-120.147647, 34.024831],\n\t\t\t\t\t\t\t[-120.140362, 34.025974],\n\t\t\t\t\t\t\t[-120.135853, 34.026087],\n\t\t\t\t\t\t\t[-120.115058, 34.019866],\n\t\t\t\t\t\t\t[-120.090182, 34.019806],\n\t\t\t\t\t\t\t[-120.073609, 34.024477],\n\t\t\t\t\t\t\t[-120.062778, 34.031161],\n\t\t\t\t\t\t\t[-120.061953, 34.033976],\n\t\t\t\t\t\t\t[-120.057637, 34.037340],\n\t\t\t\t\t\t\t[-120.055107, 34.037729],\n\t\t\t\t\t\t\t[-120.043259, 34.035806],\n\t\t\t\t\t\t\t[-120.044004, 34.024820],\n\t\t\t\t\t\t\t[-120.047798, 34.021227],\n\t\t\t\t\t\t\t[-120.050382, 34.013331],\n\t\t\t\t\t\t\t[-120.048926, 34.009898],\n\t\t\t\t\t\t\t[-120.046575, 34.000002],\n\t\t\t\t\t\t\t[-120.041311, 33.994507],\n\t\t\t\t\t\t\t[-120.025653, 33.985553],\n\t\t\t\t\t\t\t[-120.011123, 33.979894],\n\t\t\t\t\t\t\t[-120.003815, 33.979547],\n\t\t\t\t\t\t\t[-119.984316, 33.983948],\n\t\t\t\t\t\t\t[-119.978876, 33.983081],\n\t\t\t\t\t\t\t[-119.979913, 33.969623],\n\t\t\t\t\t\t\t[-119.976857, 33.956693],\n\t\t\t\t\t\t\t[-119.971141, 33.950401],\n\t\t\t\t\t\t\t[-119.970260, 33.944359],\n\t\t\t\t\t\t\t[-119.973691, 33.942481],\n\t\t\t\t\t\t\t[-120.000960, 33.941554],\n\t\t\t\t\t\t\t[-120.017715, 33.936366],\n\t\t\t\t\t\t\t[-120.046881, 33.919597],\n\t\t\t\t\t\t\t[-120.048315, 33.917625],\n\t\t\t\t\t\t\t[-120.048611, 33.915775],\n\t\t\t\t\t\t\t[-120.049682, 33.914563],\n\t\t\t\t\t\t\t[-120.077793, 33.908886],\n\t\t\t\t\t\t\t[-120.098601, 33.907853],\n\t\t\t\t\t\t\t[-120.105489, 33.904280],\n\t\t\t\t\t\t\t[-120.109137, 33.899129],\n\t\t\t\t\t\t\t[-120.121817, 33.895712],\n\t\t\t\t\t\t\t[-120.168974, 33.919090],\n\t\t\t\t\t\t\t[-120.179049, 33.927994],\n\t\t\t\t\t\t\t[-120.189840, 33.947703],\n\t\t\t\t\t\t\t[-120.192339, 33.950266],\n\t\t\t\t\t\t\t[-120.198602, 33.952211],\n\t\t\t\t\t\t\t[-120.200085, 33.956904],\n\t\t\t\t\t\t\t[-120.209372, 33.972376],\n\t\t\t\t\t\t\t[-120.224461, 33.989059],\n\t\t\t\t\t\t\t[-120.248484, 33.999329]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-119.789798, 34.057260],\n\t\t\t\t\t\t\t[-119.770729, 34.055051],\n\t\t\t\t\t\t\t[-119.766081, 34.055370],\n\t\t\t\t\t\t\t[-119.763688, 34.057155],\n\t\t\t\t\t\t\t[-119.755521, 34.056716],\n\t\t\t\t\t\t\t[-119.739472, 34.049299],\n\t\t\t\t\t\t\t[-119.726437, 34.047908],\n\t\t\t\t\t\t\t[-119.712576, 34.043265],\n\t\t\t\t\t\t\t[-119.704628, 34.037681],\n\t\t\t\t\t\t\t[-119.686507, 34.019805],\n\t\t\t\t\t\t\t[-119.637742, 34.013178],\n\t\t\t\t\t\t\t[-119.619343, 34.016468],\n\t\t\t\t\t\t\t[-119.612226, 34.021256],\n\t\t\t\t\t\t\t[-119.604287, 34.031561],\n\t\t\t\t\t\t\t[-119.608798, 34.035245],\n\t\t\t\t\t\t\t[-119.609239, 34.037350],\n\t\t\t\t\t\t\t[-119.593240, 34.049625],\n\t\t\t\t\t\t\t[-119.573410, 34.050110],\n\t\t\t\t\t\t\t[-119.566700, 34.053452],\n\t\t\t\t\t\t\t[-119.529603, 34.041155],\n\t\t\t\t\t\t\t[-119.520640, 34.034262],\n\t\t\t\t\t\t\t[-119.521770, 34.032247],\n\t\t\t\t\t\t\t[-119.532413, 34.024949],\n\t\t\t\t\t\t\t[-119.538847, 34.023988],\n\t\t\t\t\t\t\t[-119.542449, 34.021082],\n\t\t\t\t\t\t\t[-119.548280, 34.009819],\n\t\t\t\t\t\t\t[-119.547072, 34.005469],\n\t\t\t\t\t\t\t[-119.554472, 33.997820],\n\t\t\t\t\t\t\t[-119.560464, 33.995530],\n\t\t\t\t\t\t\t[-119.575636, 33.996009],\n\t\t\t\t\t\t\t[-119.590200, 33.989712],\n\t\t\t\t\t\t\t[-119.596877, 33.988611],\n\t\t\t\t\t\t\t[-119.619082, 33.987228],\n\t\t\t\t\t\t\t[-119.621117, 33.988990],\n\t\t\t\t\t\t\t[-119.647710, 33.987786],\n\t\t\t\t\t\t\t[-119.662825, 33.985889],\n\t\t\t\t\t\t\t[-119.690110, 33.972225],\n\t\t\t\t\t\t\t[-119.706952, 33.969178],\n\t\t\t\t\t\t\t[-119.712363, 33.965422],\n\t\t\t\t\t\t\t[-119.714696, 33.961439],\n\t\t\t\t\t\t\t[-119.721206, 33.959583],\n\t\t\t\t\t\t\t[-119.742966, 33.963877],\n\t\t\t\t\t\t\t[-119.750438, 33.963759],\n\t\t\t\t\t\t\t[-119.758141, 33.959212],\n\t\t\t\t\t\t\t[-119.795938, 33.962929],\n\t\t\t\t\t\t\t[-119.842748, 33.970340],\n\t\t\t\t\t\t\t[-119.873358, 33.980375],\n\t\t\t\t\t\t\t[-119.877057, 33.985757],\n\t\t\t\t\t\t\t[-119.883033, 34.000802],\n\t\t\t\t\t\t\t[-119.884896, 34.008814],\n\t\t\t\t\t\t\t[-119.882531, 34.011674],\n\t\t\t\t\t\t\t[-119.876916, 34.023527],\n\t\t\t\t\t\t\t[-119.876329, 34.032087],\n\t\t\t\t\t\t\t[-119.892821, 34.045529],\n\t\t\t\t\t\t\t[-119.916216, 34.058351],\n\t\t\t\t\t\t\t[-119.923337, 34.069361],\n\t\t\t\t\t\t\t[-119.919155, 34.077280],\n\t\t\t\t\t\t\t[-119.912857, 34.077508],\n\t\t\t\t\t\t\t[-119.891130, 34.072856],\n\t\t\t\t\t\t\t[-119.857304, 34.071298],\n\t\t\t\t\t\t\t[-119.825865, 34.059794],\n\t\t\t\t\t\t\t[-119.818742, 34.052997],\n\t\t\t\t\t\t\t[-119.807825, 34.052127],\n\t\t\t\t\t\t\t[-119.789798, 34.057260]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-120.462580, 34.042627],\n\t\t\t\t\t\t\t[-120.440248, 34.036918],\n\t\t\t\t\t\t\t[-120.418768, 34.052093],\n\t\t\t\t\t\t\t[-120.415287, 34.054960],\n\t\t\t\t\t\t\t[-120.411314, 34.052869],\n\t\t\t\t\t\t\t[-120.403613, 34.050442],\n\t\t\t\t\t\t\t[-120.396188, 34.050187],\n\t\t\t\t\t\t\t[-120.390906, 34.051994],\n\t\t\t\t\t\t\t[-120.374211, 34.062658],\n\t\t\t\t\t\t\t[-120.368813, 34.067780],\n\t\t\t\t\t\t\t[-120.368584, 34.071214],\n\t\t\t\t\t\t\t[-120.370176, 34.074907],\n\t\t\t\t\t\t\t[-120.368278, 34.076465],\n\t\t\t\t\t\t\t[-120.362251, 34.073056],\n\t\t\t\t\t\t\t[-120.354982, 34.059256],\n\t\t\t\t\t\t\t[-120.360290, 34.055820],\n\t\t\t\t\t\t\t[-120.358608, 34.050235],\n\t\t\t\t\t\t\t[-120.346946, 34.046576],\n\t\t\t\t\t\t\t[-120.331161, 34.049097],\n\t\t\t\t\t\t\t[-120.319032, 34.041979],\n\t\t\t\t\t\t\t[-120.313175, 34.036576],\n\t\t\t\t\t\t\t[-120.302122, 34.023574],\n\t\t\t\t\t\t\t[-120.304543, 34.021171],\n\t\t\t\t\t\t\t[-120.317052, 34.018837],\n\t\t\t\t\t\t\t[-120.347706, 34.020114],\n\t\t\t\t\t\t\t[-120.355320, 34.017914],\n\t\t\t\t\t\t\t[-120.357930, 34.015029],\n\t\t\t\t\t\t\t[-120.375143, 34.018775],\n\t\t\t\t\t\t\t[-120.409368, 34.032198],\n\t\t\t\t\t\t\t[-120.415225, 34.032245],\n\t\t\t\t\t\t\t[-120.419021, 34.028949],\n\t\t\t\t\t\t\t[-120.427408, 34.025425],\n\t\t\t\t\t\t\t[-120.454134, 34.028081],\n\t\t\t\t\t\t\t[-120.459635, 34.031537],\n\t\t\t\t\t\t\t[-120.465329, 34.038448],\n\t\t\t\t\t\t\t[-120.462580, 34.042627]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-120.355343, 34.941265],\n\t\t\t\t\t\t\t[-120.311498, 34.903764],\n\t\t\t\t\t\t\t[-120.334548, 35.006315],\n\t\t\t\t\t\t\t[-120.188383, 35.030378],\n\t\t\t\t\t\t\t[-120.093376, 35.114102],\n\t\t\t\t\t\t\t[-119.980122, 35.057573],\n\t\t\t\t\t\t\t[-119.928419, 35.059794],\n\t\t\t\t\t\t\t[-119.745566, 34.973676],\n\t\t\t\t\t\t\t[-119.672963, 34.973375],\n\t\t\t\t\t\t\t[-119.535757, 34.897576],\n\t\t\t\t\t\t\t[-119.472754, 34.901174],\n\t\t\t\t\t\t\t[-119.442352, 34.901274],\n\t\t\t\t\t\t\t[-119.442278, 34.465509],\n\t\t\t\t\t\t\t[-119.440414, 34.441842],\n\t\t\t\t\t\t\t[-119.444717, 34.429510],\n\t\t\t\t\t\t\t[-119.453423, 34.428610],\n\t\t\t\t\t\t\t[-119.454277, 34.418166],\n\t\t\t\t\t\t\t[-119.445411, 34.408881],\n\t\t\t\t\t\t\t[-119.454101, 34.395568],\n\t\t\t\t\t\t\t[-119.472481, 34.383830],\n\t\t\t\t\t\t\t[-119.473793, 34.379115],\n\t\t\t\t\t\t\t[-119.478265, 34.377197],\n\t\t\t\t\t\t\t[-119.510655, 34.386295],\n\t\t\t\t\t\t\t[-119.536957, 34.395495],\n\t\t\t\t\t\t\t[-119.559459, 34.413395],\n\t\t\t\t\t\t\t[-119.616862, 34.420995],\n\t\t\t\t\t\t\t[-119.638864, 34.415696],\n\t\t\t\t\t\t\t[-119.648664, 34.417396],\n\t\t\t\t\t\t\t[-119.671866, 34.416096],\n\t\t\t\t\t\t\t[-119.688167, 34.412497],\n\t\t\t\t\t\t\t[-119.684666, 34.408297],\n\t\t\t\t\t\t\t[-119.691749, 34.403154],\n\t\t\t\t\t\t\t[-119.709067, 34.395397],\n\t\t\t\t\t\t\t[-119.729369, 34.395897],\n\t\t\t\t\t\t\t[-119.745470, 34.402898],\n\t\t\t\t\t\t\t[-119.785871, 34.415997],\n\t\t\t\t\t\t\t[-119.794771, 34.417597],\n\t\t\t\t\t\t\t[-119.835771, 34.415796],\n\t\t\t\t\t\t\t[-119.853771, 34.407996],\n\t\t\t\t\t\t\t[-119.873971, 34.408795],\n\t\t\t\t\t\t\t[-119.925227, 34.433931],\n\t\t\t\t\t\t\t[-119.956433, 34.435288],\n\t\t\t\t\t\t\t[-119.971951, 34.444641],\n\t\t\t\t\t\t\t[-120.008077, 34.460447],\n\t\t\t\t\t\t\t[-120.038828, 34.463434],\n\t\t\t\t\t\t\t[-120.050682, 34.461651],\n\t\t\t\t\t\t\t[-120.088591, 34.460208],\n\t\t\t\t\t\t\t[-120.097212, 34.461809],\n\t\t\t\t\t\t\t[-120.118411, 34.469927],\n\t\t\t\t\t\t\t[-120.141165, 34.473405],\n\t\t\t\t\t\t\t[-120.183505, 34.470372],\n\t\t\t\t\t\t\t[-120.225498, 34.470587],\n\t\t\t\t\t\t\t[-120.238002, 34.468098],\n\t\t\t\t\t\t\t[-120.257770, 34.467451],\n\t\t\t\t\t\t\t[-120.283001, 34.468354],\n\t\t\t\t\t\t\t[-120.295051, 34.470623],\n\t\t\t\t\t\t\t[-120.299169, 34.469731],\n\t\t\t\t\t\t\t[-120.301822, 34.467077],\n\t\t\t\t\t\t\t[-120.341369, 34.458789],\n\t\t\t\t\t\t\t[-120.441975, 34.451512],\n\t\t\t\t\t\t\t[-120.451425, 34.447094],\n\t\t\t\t\t\t\t[-120.471376, 34.447846],\n\t\t\t\t\t\t\t[-120.476610, 34.475131],\n\t\t\t\t\t\t\t[-120.480372, 34.481059],\n\t\t\t\t\t\t\t[-120.490523, 34.490075],\n\t\t\t\t\t\t\t[-120.511421, 34.522953],\n\t\t\t\t\t\t\t[-120.524776, 34.531291],\n\t\t\t\t\t\t\t[-120.581293, 34.556959],\n\t\t\t\t\t\t\t[-120.608355, 34.556656],\n\t\t\t\t\t\t\t[-120.612005, 34.553564],\n\t\t\t\t\t\t\t[-120.622575, 34.554017],\n\t\t\t\t\t\t\t[-120.637805, 34.566220],\n\t\t\t\t\t\t\t[-120.645739, 34.581035],\n\t\t\t\t\t\t\t[-120.640244, 34.604406],\n\t\t\t\t\t\t\t[-120.625127, 34.634489],\n\t\t\t\t\t\t\t[-120.601970, 34.692095],\n\t\t\t\t\t\t\t[-120.600450, 34.704640],\n\t\t\t\t\t\t\t[-120.601672, 34.709721],\n\t\t\t\t\t\t\t[-120.614852, 34.730709],\n\t\t\t\t\t\t\t[-120.626320, 34.738072],\n\t\t\t\t\t\t\t[-120.637415, 34.755895],\n\t\t\t\t\t\t\t[-120.622970, 34.793300],\n\t\t\t\t\t\t\t[-120.616296, 34.816308],\n\t\t\t\t\t\t\t[-120.609898, 34.842751],\n\t\t\t\t\t\t\t[-120.610266, 34.858180],\n\t\t\t\t\t\t\t[-120.616325, 34.866739],\n\t\t\t\t\t\t\t[-120.639283, 34.880413],\n\t\t\t\t\t\t\t[-120.642212, 34.894145],\n\t\t\t\t\t\t\t[-120.647328, 34.901133],\n\t\t\t\t\t\t\t[-120.662889, 34.901183],\n\t\t\t\t\t\t\t[-120.670835, 34.904115],\n\t\t\t\t\t\t\t[-120.648905, 34.974393],\n\t\t\t\t\t\t\t[-120.513924, 34.989276],\n\t\t\t\t\t\t\t[-120.355343, 34.941265]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06087\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"087\",\n\t\t\t\t\"NAME\": \"Santa Cruz\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 445.170000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-122.015966, 37.165658],\n\t\t\t\t\t\t[-121.757600, 37.049630],\n\t\t\t\t\t\t[-121.654038, 36.950584],\n\t\t\t\t\t\t[-121.581354, 36.899152],\n\t\t\t\t\t\t[-121.607354, 36.899452],\n\t\t\t\t\t\t[-121.629489, 36.911681],\n\t\t\t\t\t\t[-121.644001, 36.893996],\n\t\t\t\t\t\t[-121.745288, 36.909341],\n\t\t\t\t\t\t[-121.810552, 36.850648],\n\t\t\t\t\t\t[-121.827664, 36.879353],\n\t\t\t\t\t\t[-121.862266, 36.931552],\n\t\t\t\t\t\t[-121.880167, 36.950151],\n\t\t\t\t\t\t[-121.894667, 36.961851],\n\t\t\t\t\t\t[-121.906468, 36.968950],\n\t\t\t\t\t\t[-121.930069, 36.978150],\n\t\t\t\t\t\t[-121.939470, 36.978050],\n\t\t\t\t\t\t[-121.951670, 36.971450],\n\t\t\t\t\t\t[-121.972771, 36.954151],\n\t\t\t\t\t\t[-121.975871, 36.954051],\n\t\t\t\t\t\t[-121.983896, 36.958727],\n\t\t\t\t\t\t[-122.012373, 36.964550],\n\t\t\t\t\t\t[-122.023373, 36.962150],\n\t\t\t\t\t\t[-122.027174, 36.951150],\n\t\t\t\t\t\t[-122.050122, 36.948523],\n\t\t\t\t\t\t[-122.066421, 36.948271],\n\t\t\t\t\t\t[-122.079356, 36.950783],\n\t\t\t\t\t\t[-122.105976, 36.955951],\n\t\t\t\t\t\t[-122.140578, 36.974950],\n\t\t\t\t\t\t[-122.155078, 36.980850],\n\t\t\t\t\t\t[-122.186879, 37.003450],\n\t\t\t\t\t\t[-122.206180, 37.013949],\n\t\t\t\t\t\t[-122.252181, 37.059448],\n\t\t\t\t\t\t[-122.260481, 37.072548],\n\t\t\t\t\t\t[-122.284882, 37.101747],\n\t\t\t\t\t\t[-122.292974, 37.107318],\n\t\t\t\t\t\t[-122.317682, 37.186945],\n\t\t\t\t\t\t[-122.152774, 37.215444],\n\t\t\t\t\t\t[-122.152278, 37.286055],\n\t\t\t\t\t\t[-122.015966, 37.165658]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06095\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"095\",\n\t\t\t\t\"NAME\": \"Solano\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 821.765000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-122.088835, 38.384151],\n\t\t\t\t\t\t[-122.103281, 38.513348],\n\t\t\t\t\t\t[-122.011673, 38.488991],\n\t\t\t\t\t\t[-121.940285, 38.533384],\n\t\t\t\t\t\t[-121.694679, 38.527050],\n\t\t\t\t\t\t[-121.693697, 38.313732],\n\t\t\t\t\t\t[-121.593273, 38.313089],\n\t\t\t\t\t\t[-121.605258, 38.295352],\n\t\t\t\t\t\t[-121.600730, 38.278375],\n\t\t\t\t\t\t[-121.604010, 38.270103],\n\t\t\t\t\t\t[-121.600249, 38.257817],\n\t\t\t\t\t\t[-121.601993, 38.252426],\n\t\t\t\t\t\t[-121.602121, 38.241674],\n\t\t\t\t\t\t[-121.603208, 38.237283],\n\t\t\t\t\t\t[-121.602763, 38.230219],\n\t\t\t\t\t\t[-121.688233, 38.145421],\n\t\t\t\t\t\t[-121.713926, 38.084542],\n\t\t\t\t\t\t[-121.862462, 38.066030],\n\t\t\t\t\t\t[-121.865189, 38.059909],\n\t\t\t\t\t\t[-121.869469, 38.054519],\n\t\t\t\t\t\t[-122.050386, 38.060198],\n\t\t\t\t\t\t[-122.123973, 38.035717],\n\t\t\t\t\t\t[-122.266669, 38.060070],\n\t\t\t\t\t\t[-122.273006, 38.074380],\n\t\t\t\t\t\t[-122.282824, 38.082889],\n\t\t\t\t\t\t[-122.301804, 38.105142],\n\t\t\t\t\t\t[-122.314567, 38.115287],\n\t\t\t\t\t\t[-122.366273, 38.141467],\n\t\t\t\t\t\t[-122.396380, 38.149976],\n\t\t\t\t\t\t[-122.403514, 38.150624],\n\t\t\t\t\t\t[-122.406978, 38.155663],\n\t\t\t\t\t\t[-122.406786, 38.155632],\n\t\t\t\t\t\t[-122.195380, 38.155017],\n\t\t\t\t\t\t[-122.205982, 38.315713],\n\t\t\t\t\t\t[-122.064779, 38.315912],\n\t\t\t\t\t\t[-122.088835, 38.384151]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06101\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"101\",\n\t\t\t\t\"NAME\": \"Sutter\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 602.410000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-121.484396, 38.734598],\n\t\t\t\t\t\t[-121.521767, 38.736401],\n\t\t\t\t\t\t[-121.602894, 38.735838],\n\t\t\t\t\t\t[-121.685998, 38.763371],\n\t\t\t\t\t\t[-121.723149, 38.851306],\n\t\t\t\t\t\t[-121.835488, 38.924481],\n\t\t\t\t\t\t[-121.847964, 39.070817],\n\t\t\t\t\t\t[-121.945509, 39.180959],\n\t\t\t\t\t\t[-121.908269, 39.303878],\n\t\t\t\t\t\t[-121.623760, 39.295621],\n\t\t\t\t\t\t[-121.571297, 38.938918],\n\t\t\t\t\t\t[-121.414885, 38.996429],\n\t\t\t\t\t\t[-121.469356, 38.925992],\n\t\t\t\t\t\t[-121.484396, 38.734598]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06103\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"103\",\n\t\t\t\t\"NAME\": \"Tehama\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2949.709000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-122.934013, 39.978131],\n\t\t\t\t\t\t[-122.989623, 40.145496],\n\t\t\t\t\t\t[-122.989015, 40.250145],\n\t\t\t\t\t\t[-123.065426, 40.286971],\n\t\t\t\t\t\t[-122.918472, 40.306758],\n\t\t\t\t\t\t[-122.872769, 40.348848],\n\t\t\t\t\t\t[-122.651341, 40.328288],\n\t\t\t\t\t\t[-122.523997, 40.394500],\n\t\t\t\t\t\t[-122.445021, 40.373398],\n\t\t\t\t\t\t[-122.310412, 40.371064],\n\t\t\t\t\t\t[-122.010316, 40.426558],\n\t\t\t\t\t\t[-121.940989, 40.415331],\n\t\t\t\t\t\t[-121.806539, 40.444950],\n\t\t\t\t\t\t[-121.646330, 40.434726],\n\t\t\t\t\t\t[-121.497635, 40.445591],\n\t\t\t\t\t\t[-121.470395, 40.350213],\n\t\t\t\t\t\t[-121.345571, 40.312667],\n\t\t\t\t\t\t[-121.368395, 40.212230],\n\t\t\t\t\t\t[-121.436886, 40.151905],\n\t\t\t\t\t\t[-121.586407, 40.100522],\n\t\t\t\t\t\t[-121.646032, 39.982527],\n\t\t\t\t\t\t[-121.703241, 39.984230],\n\t\t\t\t\t\t[-121.804041, 39.884344],\n\t\t\t\t\t\t[-122.044865, 39.883771],\n\t\t\t\t\t\t[-122.046471, 39.797648],\n\t\t\t\t\t\t[-122.937654, 39.798156],\n\t\t\t\t\t\t[-122.934013, 39.978131]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06109\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"109\",\n\t\t\t\t\"NAME\": \"Tuolumne\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2220.884000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-120.652673, 37.831422],\n\t\t\t\t\t\t[-120.514952, 37.953390],\n\t\t\t\t\t\t[-120.534814, 37.991174],\n\t\t\t\t\t\t[-120.504516, 37.991144],\n\t\t\t\t\t\t[-120.176177, 38.374014],\n\t\t\t\t\t\t[-120.019951, 38.433521],\n\t\t\t\t\t\t[-119.884749, 38.356185],\n\t\t\t\t\t\t[-119.753481, 38.416759],\n\t\t\t\t\t\t[-119.639205, 38.326880],\n\t\t\t\t\t\t[-119.632671, 38.198858],\n\t\t\t\t\t\t[-119.345922, 38.083113],\n\t\t\t\t\t\t[-119.304590, 38.023891],\n\t\t\t\t\t\t[-119.308389, 37.946824],\n\t\t\t\t\t\t[-119.200283, 37.885827],\n\t\t\t\t\t\t[-119.201280, 37.804329],\n\t\t\t\t\t\t[-119.268979, 37.739230],\n\t\t\t\t\t\t[-119.288381, 37.745030],\n\t\t\t\t\t\t[-119.293382, 37.767929],\n\t\t\t\t\t\t[-119.308995, 37.777986],\n\t\t\t\t\t\t[-119.535699, 37.904122],\n\t\t\t\t\t\t[-119.646203, 37.846823],\n\t\t\t\t\t\t[-119.667203, 37.801224],\n\t\t\t\t\t\t[-119.809409, 37.755025],\n\t\t\t\t\t\t[-119.907013, 37.757926],\n\t\t\t\t\t\t[-120.079508, 37.828808],\n\t\t\t\t\t\t[-120.127226, 37.781566],\n\t\t\t\t\t\t[-120.345437, 37.724787],\n\t\t\t\t\t\t[-120.325943, 37.648966],\n\t\t\t\t\t\t[-120.391931, 37.683559],\n\t\t\t\t\t\t[-120.387613, 37.633704],\n\t\t\t\t\t\t[-120.652673, 37.831422]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06009\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"009\",\n\t\t\t\t\"NAME\": \"Calaveras\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1020.012000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-120.652673, 37.831422],\n\t\t\t\t\t\t[-120.926449, 38.077421],\n\t\t\t\t\t\t[-120.938850, 38.088321],\n\t\t\t\t\t\t[-120.995497, 38.225405],\n\t\t\t\t\t\t[-120.893792, 38.221277],\n\t\t\t\t\t\t[-120.423215, 38.473322],\n\t\t\t\t\t\t[-120.380707, 38.461042],\n\t\t\t\t\t\t[-120.072484, 38.509869],\n\t\t\t\t\t\t[-120.019951, 38.433521],\n\t\t\t\t\t\t[-120.176177, 38.374014],\n\t\t\t\t\t\t[-120.504516, 37.991144],\n\t\t\t\t\t\t[-120.534814, 37.991174],\n\t\t\t\t\t\t[-120.514952, 37.953390],\n\t\t\t\t\t\t[-120.652673, 37.831422]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06013\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"013\",\n\t\t\t\t\"NAME\": \"Contra Costa\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 715.937000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-121.910138, 37.730460],\n\t\t\t\t\t\t[-121.960770, 37.718629],\n\t\t\t\t\t\t[-121.977999, 37.729579],\n\t\t\t\t\t\t[-122.001071, 37.739028],\n\t\t\t\t\t\t[-122.010771, 37.755127],\n\t\t\t\t\t\t[-122.004228, 37.770058],\n\t\t\t\t\t\t[-122.185977, 37.820726],\n\t\t\t\t\t\t[-122.306180, 37.898225],\n\t\t\t\t\t\t[-122.310881, 37.897825],\n\t\t\t\t\t\t[-122.313496, 37.897211],\n\t\t\t\t\t\t[-122.323730, 37.905845],\n\t\t\t\t\t\t[-122.334530, 37.908791],\n\t\t\t\t\t\t[-122.357110, 37.908791],\n\t\t\t\t\t\t[-122.362346, 37.904209],\n\t\t\t\t\t\t[-122.367582, 37.903882],\n\t\t\t\t\t\t[-122.378709, 37.905191],\n\t\t\t\t\t\t[-122.385908, 37.908136],\n\t\t\t\t\t\t[-122.389181, 37.910100],\n\t\t\t\t\t\t[-122.390490, 37.922535],\n\t\t\t\t\t\t[-122.395071, 37.927117],\n\t\t\t\t\t\t[-122.401289, 37.928426],\n\t\t\t\t\t\t[-122.413725, 37.937262],\n\t\t\t\t\t\t[-122.417371, 37.943513],\n\t\t\t\t\t\t[-122.430087, 37.963115],\n\t\t\t\t\t\t[-122.429760, 37.965405],\n\t\t\t\t\t\t[-122.415361, 37.963115],\n\t\t\t\t\t\t[-122.411761, 37.960497],\n\t\t\t\t\t\t[-122.408383, 37.957544],\n\t\t\t\t\t\t[-122.399832, 37.956009],\n\t\t\t\t\t\t[-122.367582, 37.978168],\n\t\t\t\t\t\t[-122.361905, 37.989991],\n\t\t\t\t\t\t[-122.363001, 37.994375],\n\t\t\t\t\t\t[-122.366928, 37.998458],\n\t\t\t\t\t\t[-122.368891, 38.007948],\n\t\t\t\t\t\t[-122.367909, 38.012530],\n\t\t\t\t\t\t[-122.363655, 38.014166],\n\t\t\t\t\t\t[-122.359493, 38.009941],\n\t\t\t\t\t\t[-122.340093, 38.003694],\n\t\t\t\t\t\t[-122.331912, 38.005330],\n\t\t\t\t\t\t[-122.321112, 38.012857],\n\t\t\t\t\t\t[-122.315549, 38.013511],\n\t\t\t\t\t\t[-122.300823, 38.010893],\n\t\t\t\t\t\t[-122.283478, 38.022674],\n\t\t\t\t\t\t[-122.262861, 38.044600],\n\t\t\t\t\t\t[-122.262861, 38.051473],\n\t\t\t\t\t\t[-122.266669, 38.060070],\n\t\t\t\t\t\t[-122.123973, 38.035717],\n\t\t\t\t\t\t[-122.050386, 38.060198],\n\t\t\t\t\t\t[-121.869469, 38.054519],\n\t\t\t\t\t\t[-121.865189, 38.059909],\n\t\t\t\t\t\t[-121.862462, 38.066030],\n\t\t\t\t\t\t[-121.737824, 38.026630],\n\t\t\t\t\t\t[-121.679265, 38.089319],\n\t\t\t\t\t\t[-121.580022, 38.094414],\n\t\t\t\t\t\t[-121.579943, 37.976113],\n\t\t\t\t\t\t[-121.574823, 37.973025],\n\t\t\t\t\t\t[-121.569889, 37.957495],\n\t\t\t\t\t\t[-121.563640, 37.946110],\n\t\t\t\t\t\t[-121.561937, 37.937612],\n\t\t\t\t\t\t[-121.559870, 37.920862],\n\t\t\t\t\t\t[-121.569113, 37.901521],\n\t\t\t\t\t\t[-121.574849, 37.885021],\n\t\t\t\t\t\t[-121.575463, 37.863118],\n\t\t\t\t\t\t[-121.569370, 37.858881],\n\t\t\t\t\t\t[-121.561813, 37.857135],\n\t\t\t\t\t\t[-121.549517, 37.856986],\n\t\t\t\t\t\t[-121.538026, 37.849622],\n\t\t\t\t\t\t[-121.536595, 37.844723],\n\t\t\t\t\t\t[-121.538931, 37.839563],\n\t\t\t\t\t\t[-121.550971, 37.831155],\n\t\t\t\t\t\t[-121.556936, 37.817218],\n\t\t\t\t\t\t[-121.559160, 37.818927],\n\t\t\t\t\t\t[-121.623724, 37.799291],\n\t\t\t\t\t\t[-121.881567, 37.737328],\n\t\t\t\t\t\t[-121.910138, 37.730460]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06015\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"015\",\n\t\t\t\t\"NAME\": \"Del Norte\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1006.373000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-124.065521, 41.464739],\n\t\t\t\t\t\t[-124.066057, 41.470258],\n\t\t\t\t\t\t[-124.075917, 41.501757],\n\t\t\t\t\t\t[-124.081427, 41.511228],\n\t\t\t\t\t\t[-124.081987, 41.547761],\n\t\t\t\t\t\t[-124.092404, 41.553615],\n\t\t\t\t\t\t[-124.101123, 41.569192],\n\t\t\t\t\t\t[-124.101403, 41.578524],\n\t\t\t\t\t\t[-124.097385, 41.585251],\n\t\t\t\t\t\t[-124.100961, 41.602499],\n\t\t\t\t\t\t[-124.114413, 41.616768],\n\t\t\t\t\t\t[-124.116037, 41.628849],\n\t\t\t\t\t\t[-124.120225, 41.640354],\n\t\t\t\t\t\t[-124.135552, 41.657307],\n\t\t\t\t\t\t[-124.139354, 41.671652],\n\t\t\t\t\t\t[-124.138373, 41.678881],\n\t\t\t\t\t\t[-124.143479, 41.709284],\n\t\t\t\t\t\t[-124.147412, 41.717955],\n\t\t\t\t\t\t[-124.154246, 41.728801],\n\t\t\t\t\t\t[-124.164716, 41.740126],\n\t\t\t\t\t\t[-124.177390, 41.745756],\n\t\t\t\t\t\t[-124.185363, 41.739351],\n\t\t\t\t\t\t[-124.191040, 41.736079],\n\t\t\t\t\t\t[-124.194953, 41.736778],\n\t\t\t\t\t\t[-124.203843, 41.747035],\n\t\t\t\t\t\t[-124.239720, 41.770800],\n\t\t\t\t\t\t[-124.242288, 41.772034],\n\t\t\t\t\t\t[-124.248704, 41.771459],\n\t\t\t\t\t\t[-124.255994, 41.783014],\n\t\t\t\t\t\t[-124.245027, 41.792300],\n\t\t\t\t\t\t[-124.230678, 41.818681],\n\t\t\t\t\t\t[-124.219592, 41.846432],\n\t\t\t\t\t\t[-124.208439, 41.888192],\n\t\t\t\t\t\t[-124.203402, 41.940964],\n\t\t\t\t\t\t[-124.204948, 41.983441],\n\t\t\t\t\t\t[-124.211605, 41.998460],\n\t\t\t\t\t\t[-124.100921, 41.996956],\n\t\t\t\t\t\t[-124.100216, 41.996842],\n\t\t\t\t\t\t[-124.087827, 41.996891],\n\t\t\t\t\t\t[-124.086661, 41.996869],\n\t\t\t\t\t\t[-123.821472, 41.995473],\n\t\t\t\t\t\t[-123.624554, 41.999837],\n\t\t\t\t\t\t[-123.518075, 42.000436],\n\t\t\t\t\t\t[-123.565442, 41.903141],\n\t\t\t\t\t\t[-123.642812, 41.889353],\n\t\t\t\t\t\t[-123.703768, 41.829117],\n\t\t\t\t\t\t[-123.660205, 41.714055],\n\t\t\t\t\t\t[-123.719089, 41.595258],\n\t\t\t\t\t\t[-123.612395, 41.448954],\n\t\t\t\t\t\t[-123.661363, 41.382090],\n\t\t\t\t\t\t[-123.770239, 41.380776],\n\t\t\t\t\t\t[-123.770551, 41.464193],\n\t\t\t\t\t\t[-124.065521, 41.464739]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US02013\",\n\t\t\t\t\"STATE\": \"02\",\n\t\t\t\t\"COUNTY\": \"013\",\n\t\t\t\t\"NAME\": \"Aleutians East\",\n\t\t\t\t\"LSAD\": \"Borough\",\n\t\t\t\t\"CENSUSAREA\": 6981.943000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-162.255031, 54.978353],\n\t\t\t\t\t\t\t[-162.249682, 54.975900],\n\t\t\t\t\t\t\t[-162.235675, 54.962601],\n\t\t\t\t\t\t\t[-162.232962, 54.890984],\n\t\t\t\t\t\t\t[-162.236806, 54.881630],\n\t\t\t\t\t\t\t[-162.275316, 54.845565],\n\t\t\t\t\t\t\t[-162.282944, 54.841216],\n\t\t\t\t\t\t\t[-162.300580, 54.832594],\n\t\t\t\t\t\t\t[-162.321094, 54.827928],\n\t\t\t\t\t\t\t[-162.349315, 54.836049],\n\t\t\t\t\t\t\t[-162.417370, 54.877491],\n\t\t\t\t\t\t\t[-162.425244, 54.885021],\n\t\t\t\t\t\t\t[-162.437501, 54.927627],\n\t\t\t\t\t\t\t[-162.435473, 54.929249],\n\t\t\t\t\t\t\t[-162.337431, 54.981636],\n\t\t\t\t\t\t\t[-162.326811, 54.985330],\n\t\t\t\t\t\t\t[-162.266743, 54.982133],\n\t\t\t\t\t\t\t[-162.255031, 54.978353]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-159.324364, 54.928329],\n\t\t\t\t\t\t\t[-159.317681, 54.933707],\n\t\t\t\t\t\t\t[-159.278696, 54.948514],\n\t\t\t\t\t\t\t[-159.205670, 54.927438],\n\t\t\t\t\t\t\t[-159.202857, 54.925500],\n\t\t\t\t\t\t\t[-159.203228, 54.914842],\n\t\t\t\t\t\t\t[-159.212627, 54.896066],\n\t\t\t\t\t\t\t[-159.236066, 54.876480],\n\t\t\t\t\t\t\t[-159.272354, 54.864204],\n\t\t\t\t\t\t\t[-159.305864, 54.863698],\n\t\t\t\t\t\t\t[-159.309681, 54.865813],\n\t\t\t\t\t\t\t[-159.327873, 54.884749],\n\t\t\t\t\t\t\t[-159.320732, 54.897269],\n\t\t\t\t\t\t\t[-159.313528, 54.903388],\n\t\t\t\t\t\t\t[-159.312060, 54.909601],\n\t\t\t\t\t\t\t[-159.312733, 54.918686],\n\t\t\t\t\t\t\t[-159.324364, 54.928329]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-160.017900, 55.156130],\n\t\t\t\t\t\t\t[-160.047358, 55.180879],\n\t\t\t\t\t\t\t[-160.061469, 55.200378],\n\t\t\t\t\t\t\t[-160.052941, 55.203035],\n\t\t\t\t\t\t\t[-160.025257, 55.203914],\n\t\t\t\t\t\t\t[-160.002155, 55.194480],\n\t\t\t\t\t\t\t[-159.994027, 55.185247],\n\t\t\t\t\t\t\t[-159.983499, 55.180379],\n\t\t\t\t\t\t\t[-159.954350, 55.189291],\n\t\t\t\t\t\t\t[-159.931240, 55.220060],\n\t\t\t\t\t\t\t[-159.889174, 55.287138],\n\t\t\t\t\t\t\t[-159.879690, 55.290183],\n\t\t\t\t\t\t\t[-159.870591, 55.284889],\n\t\t\t\t\t\t\t[-159.848619, 55.267548],\n\t\t\t\t\t\t\t[-159.843859, 55.249367],\n\t\t\t\t\t\t\t[-159.844622, 55.243828],\n\t\t\t\t\t\t\t[-159.855302, 55.230378],\n\t\t\t\t\t\t\t[-159.860991, 55.227884],\n\t\t\t\t\t\t\t[-159.866624, 55.231202],\n\t\t\t\t\t\t\t[-159.886523, 55.229149],\n\t\t\t\t\t\t\t[-159.895326, 55.217872],\n\t\t\t\t\t\t\t[-159.905365, 55.164689],\n\t\t\t\t\t\t\t[-159.901569, 55.156858],\n\t\t\t\t\t\t\t[-159.884997, 55.145598],\n\t\t\t\t\t\t\t[-159.860891, 55.149337],\n\t\t\t\t\t\t\t[-159.859568, 55.164912],\n\t\t\t\t\t\t\t[-159.861308, 55.171748],\n\t\t\t\t\t\t\t[-159.860786, 55.177086],\n\t\t\t\t\t\t\t[-159.846264, 55.180834],\n\t\t\t\t\t\t\t[-159.816419, 55.178051],\n\t\t\t\t\t\t\t[-159.823710, 55.144130],\n\t\t\t\t\t\t\t[-159.830890, 55.126467],\n\t\t\t\t\t\t\t[-159.855444, 55.100758],\n\t\t\t\t\t\t\t[-159.868580, 55.094888],\n\t\t\t\t\t\t\t[-159.886109, 55.102558],\n\t\t\t\t\t\t\t[-159.886476, 55.107087],\n\t\t\t\t\t\t\t[-159.906609, 55.112544],\n\t\t\t\t\t\t\t[-159.947575, 55.105215],\n\t\t\t\t\t\t\t[-159.951281, 55.100644],\n\t\t\t\t\t\t\t[-159.945410, 55.087939],\n\t\t\t\t\t\t\t[-159.951127, 55.066642],\n\t\t\t\t\t\t\t[-160.052093, 55.005777],\n\t\t\t\t\t\t\t[-160.080659, 54.994425],\n\t\t\t\t\t\t\t[-160.115775, 54.985078],\n\t\t\t\t\t\t\t[-160.183466, 54.915680],\n\t\t\t\t\t\t\t[-160.181636, 54.902992],\n\t\t\t\t\t\t\t[-160.200831, 54.875282],\n\t\t\t\t\t\t\t[-160.226967, 54.864075],\n\t\t\t\t\t\t\t[-160.254765, 54.895974],\n\t\t\t\t\t\t\t[-160.250814, 54.929816],\n\t\t\t\t\t\t\t[-160.244253, 54.933532],\n\t\t\t\t\t\t\t[-160.223411, 54.939124],\n\t\t\t\t\t\t\t[-160.177607, 54.981446],\n\t\t\t\t\t\t\t[-160.132168, 55.013743],\n\t\t\t\t\t\t\t[-160.106837, 55.027002],\n\t\t\t\t\t\t\t[-160.082168, 55.033578],\n\t\t\t\t\t\t\t[-160.077872, 55.037600],\n\t\t\t\t\t\t\t[-160.087574, 55.049967],\n\t\t\t\t\t\t\t[-160.094288, 55.052996],\n\t\t\t\t\t\t\t[-160.133416, 55.043947],\n\t\t\t\t\t\t\t[-160.174366, 55.052577],\n\t\t\t\t\t\t\t[-160.191392, 55.108574],\n\t\t\t\t\t\t\t[-160.187261, 55.118376],\n\t\t\t\t\t\t\t[-160.109864, 55.160777],\n\t\t\t\t\t\t\t[-160.077308, 55.146495],\n\t\t\t\t\t\t\t[-160.059599, 55.133663],\n\t\t\t\t\t\t\t[-160.052545, 55.121716],\n\t\t\t\t\t\t\t[-160.052820, 55.119373],\n\t\t\t\t\t\t\t[-160.057033, 55.118488],\n\t\t\t\t\t\t\t[-160.057797, 55.115353],\n\t\t\t\t\t\t\t[-160.055642, 55.111580],\n\t\t\t\t\t\t\t[-160.030330, 55.116109],\n\t\t\t\t\t\t\t[-160.012220, 55.122946],\n\t\t\t\t\t\t\t[-160.005170, 55.129378],\n\t\t\t\t\t\t\t[-160.004129, 55.134482],\n\t\t\t\t\t\t\t[-160.017900, 55.156130]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-159.455311, 55.061452],\n\t\t\t\t\t\t\t[-159.448473, 55.064343],\n\t\t\t\t\t\t\t[-159.381841, 55.064032],\n\t\t\t\t\t\t\t[-159.345276, 55.059397],\n\t\t\t\t\t\t\t[-159.338470, 55.046683],\n\t\t\t\t\t\t\t[-159.328791, 54.980598],\n\t\t\t\t\t\t\t[-159.330164, 54.976378],\n\t\t\t\t\t\t\t[-159.331770, 54.974598],\n\t\t\t\t\t\t\t[-159.426615, 54.942266],\n\t\t\t\t\t\t\t[-159.447982, 54.941374],\n\t\t\t\t\t\t\t[-159.457995, 54.945730],\n\t\t\t\t\t\t\t[-159.459551, 54.948652],\n\t\t\t\t\t\t\t[-159.451251, 54.975285],\n\t\t\t\t\t\t\t[-159.440057, 54.988502],\n\t\t\t\t\t\t\t[-159.416786, 55.000296],\n\t\t\t\t\t\t\t[-159.417987, 55.022013],\n\t\t\t\t\t\t\t[-159.455434, 55.035809],\n\t\t\t\t\t\t\t[-159.455311, 55.061452]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-159.533457, 55.184761],\n\t\t\t\t\t\t\t[-159.504325, 55.176822],\n\t\t\t\t\t\t\t[-159.499502, 55.173991],\n\t\t\t\t\t\t\t[-159.493398, 55.155055],\n\t\t\t\t\t\t\t[-159.494772, 55.136050],\n\t\t\t\t\t\t\t[-159.503592, 55.131373],\n\t\t\t\t\t\t\t[-159.509361, 55.130206],\n\t\t\t\t\t\t\t[-159.530302, 55.106194],\n\t\t\t\t\t\t\t[-159.533630, 55.083987],\n\t\t\t\t\t\t\t[-159.524444, 55.077358],\n\t\t\t\t\t\t\t[-159.484200, 55.057695],\n\t\t\t\t\t\t\t[-159.484980, 55.054050],\n\t\t\t\t\t\t\t[-159.489589, 55.049229],\n\t\t\t\t\t\t\t[-159.509674, 55.041408],\n\t\t\t\t\t\t\t[-159.517824, 55.044735],\n\t\t\t\t\t\t\t[-159.535465, 55.058735],\n\t\t\t\t\t\t\t[-159.572365, 55.060122],\n\t\t\t\t\t\t\t[-159.597824, 55.047000],\n\t\t\t\t\t\t\t[-159.635226, 55.037294],\n\t\t\t\t\t\t\t[-159.638905, 55.038745],\n\t\t\t\t\t\t\t[-159.644029, 55.042597],\n\t\t\t\t\t\t\t[-159.649062, 55.049532],\n\t\t\t\t\t\t\t[-159.650859, 55.065790],\n\t\t\t\t\t\t\t[-159.635410, 55.116654],\n\t\t\t\t\t\t\t[-159.616961, 55.127666],\n\t\t\t\t\t\t\t[-159.586075, 55.157652],\n\t\t\t\t\t\t\t[-159.573144, 55.187562],\n\t\t\t\t\t\t\t[-159.521096, 55.253393],\n\t\t\t\t\t\t\t[-159.519196, 55.253693],\n\t\t\t\t\t\t\t[-159.503196, 55.234993],\n\t\t\t\t\t\t\t[-159.505270, 55.222269],\n\t\t\t\t\t\t\t[-159.512350, 55.208353],\n\t\t\t\t\t\t\t[-159.533457, 55.184761]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-161.718614, 55.154166],\n\t\t\t\t\t\t\t[-161.697097, 55.137133],\n\t\t\t\t\t\t\t[-161.678389, 55.131747],\n\t\t\t\t\t\t\t[-161.663618, 55.130260],\n\t\t\t\t\t\t\t[-161.651563, 55.130916],\n\t\t\t\t\t\t\t[-161.608634, 55.116906],\n\t\t\t\t\t\t\t[-161.576643, 55.103831],\n\t\t\t\t\t\t\t[-161.570523, 55.100493],\n\t\t\t\t\t\t\t[-161.549901, 55.082564],\n\t\t\t\t\t\t\t[-161.548924, 55.080115],\n\t\t\t\t\t\t\t[-161.550357, 55.065734],\n\t\t\t\t\t\t\t[-161.557315, 55.061193],\n\t\t\t\t\t\t\t[-161.565036, 55.058874],\n\t\t\t\t\t\t\t[-161.582584, 55.058224],\n\t\t\t\t\t\t\t[-161.591069, 55.060818],\n\t\t\t\t\t\t\t[-161.606359, 55.070264],\n\t\t\t\t\t\t\t[-161.606482, 55.074208],\n\t\t\t\t\t\t\t[-161.598303, 55.081341],\n\t\t\t\t\t\t\t[-161.596951, 55.086584],\n\t\t\t\t\t\t\t[-161.602514, 55.098267],\n\t\t\t\t\t\t\t[-161.615867, 55.104388],\n\t\t\t\t\t\t\t[-161.632391, 55.104896],\n\t\t\t\t\t\t\t[-161.654918, 55.103244],\n\t\t\t\t\t\t\t[-161.674539, 55.095912],\n\t\t\t\t\t\t\t[-161.678537, 55.092829],\n\t\t\t\t\t\t\t[-161.678171, 55.087741],\n\t\t\t\t\t\t\t[-161.690346, 55.078500],\n\t\t\t\t\t\t\t[-161.737922, 55.054054],\n\t\t\t\t\t\t\t[-161.764169, 55.059509],\n\t\t\t\t\t\t\t[-161.791606, 55.077307],\n\t\t\t\t\t\t\t[-161.814984, 55.098639],\n\t\t\t\t\t\t\t[-161.816482, 55.111319],\n\t\t\t\t\t\t\t[-161.819869, 55.113965],\n\t\t\t\t\t\t\t[-161.851152, 55.126378],\n\t\t\t\t\t\t\t[-161.862504, 55.127598],\n\t\t\t\t\t\t\t[-161.886278, 55.126933],\n\t\t\t\t\t\t\t[-161.897846, 55.135768],\n\t\t\t\t\t\t\t[-161.900685, 55.142139],\n\t\t\t\t\t\t\t[-161.888936, 55.160724],\n\t\t\t\t\t\t\t[-161.850057, 55.175260],\n\t\t\t\t\t\t\t[-161.827840, 55.178473],\n\t\t\t\t\t\t\t[-161.737810, 55.161935],\n\t\t\t\t\t\t\t[-161.718614, 55.154166]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-160.506927, 55.327730],\n\t\t\t\t\t\t\t[-160.528864, 55.343501],\n\t\t\t\t\t\t\t[-160.534943, 55.343537],\n\t\t\t\t\t\t\t[-160.564427, 55.332504],\n\t\t\t\t\t\t\t[-160.579690, 55.314292],\n\t\t\t\t\t\t\t[-160.580668, 55.307196],\n\t\t\t\t\t\t\t[-160.580088, 55.302503],\n\t\t\t\t\t\t\t[-160.565929, 55.273137],\n\t\t\t\t\t\t\t[-160.550759, 55.264302],\n\t\t\t\t\t\t\t[-160.527617, 55.256374],\n\t\t\t\t\t\t\t[-160.486174, 55.193617],\n\t\t\t\t\t\t\t[-160.486511, 55.181951],\n\t\t\t\t\t\t\t[-160.496306, 55.166399],\n\t\t\t\t\t\t\t[-160.525226, 55.129871],\n\t\t\t\t\t\t\t[-160.655577, 55.160261],\n\t\t\t\t\t\t\t[-160.675871, 55.173622],\n\t\t\t\t\t\t\t[-160.688372, 55.195588],\n\t\t\t\t\t\t\t[-160.690293, 55.210474],\n\t\t\t\t\t\t\t[-160.756587, 55.195143],\n\t\t\t\t\t\t\t[-160.767393, 55.185399],\n\t\t\t\t\t\t\t[-160.765229, 55.176716],\n\t\t\t\t\t\t\t[-160.794198, 55.134399],\n\t\t\t\t\t\t\t[-160.806009, 55.125670],\n\t\t\t\t\t\t\t[-160.821381, 55.117851],\n\t\t\t\t\t\t\t[-160.824468, 55.120153],\n\t\t\t\t\t\t\t[-160.815862, 55.141556],\n\t\t\t\t\t\t\t[-160.807468, 55.155579],\n\t\t\t\t\t\t\t[-160.807558, 55.168161],\n\t\t\t\t\t\t\t[-160.819487, 55.187457],\n\t\t\t\t\t\t\t[-160.841917, 55.204440],\n\t\t\t\t\t\t\t[-160.841221, 55.293957],\n\t\t\t\t\t\t\t[-160.856621, 55.318488],\n\t\t\t\t\t\t\t[-160.840251, 55.339777],\n\t\t\t\t\t\t\t[-160.797147, 55.381521],\n\t\t\t\t\t\t\t[-160.777800, 55.388639],\n\t\t\t\t\t\t\t[-160.710298, 55.403075],\n\t\t\t\t\t\t\t[-160.687442, 55.402198],\n\t\t\t\t\t\t\t[-160.665927, 55.399025],\n\t\t\t\t\t\t\t[-160.649234, 55.388780],\n\t\t\t\t\t\t\t[-160.646214, 55.383142],\n\t\t\t\t\t\t\t[-160.646156, 55.357689],\n\t\t\t\t\t\t\t[-160.651011, 55.343650],\n\t\t\t\t\t\t\t[-160.614256, 55.348019],\n\t\t\t\t\t\t\t[-160.572716, 55.388978],\n\t\t\t\t\t\t\t[-160.567384, 55.390078],\n\t\t\t\t\t\t\t[-160.545227, 55.387911],\n\t\t\t\t\t\t\t[-160.517513, 55.379378],\n\t\t\t\t\t\t\t[-160.522063, 55.374369],\n\t\t\t\t\t\t\t[-160.522399, 55.370371],\n\t\t\t\t\t\t\t[-160.522307, 55.364367],\n\t\t\t\t\t\t\t[-160.518955, 55.361552],\n\t\t\t\t\t\t\t[-160.425658, 55.338883],\n\t\t\t\t\t\t\t[-160.408614, 55.341677],\n\t\t\t\t\t\t\t[-160.403350, 55.346299],\n\t\t\t\t\t\t\t[-160.361758, 55.363230],\n\t\t\t\t\t\t\t[-160.344369, 55.362962],\n\t\t\t\t\t\t\t[-160.333692, 55.360139],\n\t\t\t\t\t\t\t[-160.326463, 55.353189],\n\t\t\t\t\t\t\t[-160.317665, 55.338533],\n\t\t\t\t\t\t\t[-160.306550, 55.303275],\n\t\t\t\t\t\t\t[-160.330722, 55.261045],\n\t\t\t\t\t\t\t[-160.341217, 55.251799],\n\t\t\t\t\t\t\t[-160.372603, 55.259910],\n\t\t\t\t\t\t\t[-160.378887, 55.266692],\n\t\t\t\t\t\t\t[-160.380472, 55.272803],\n\t\t\t\t\t\t\t[-160.390421, 55.286576],\n\t\t\t\t\t\t\t[-160.441896, 55.298264],\n\t\t\t\t\t\t\t[-160.449799, 55.297081],\n\t\t\t\t\t\t\t[-160.457765, 55.291893],\n\t\t\t\t\t\t\t[-160.468262, 55.288925],\n\t\t\t\t\t\t\t[-160.475493, 55.289230],\n\t\t\t\t\t\t\t[-160.481536, 55.291779],\n\t\t\t\t\t\t\t[-160.518148, 55.309102],\n\t\t\t\t\t\t\t[-160.526945, 55.319044],\n\t\t\t\t\t\t\t[-160.506927, 55.327730]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-160.211780, 55.455862],\n\t\t\t\t\t\t\t[-160.137032, 55.450709],\n\t\t\t\t\t\t\t[-160.141834, 55.387154],\n\t\t\t\t\t\t\t[-160.142505, 55.383491],\n\t\t\t\t\t\t\t[-160.147993, 55.377576],\n\t\t\t\t\t\t\t[-160.154038, 55.377518],\n\t\t\t\t\t\t\t[-160.203610, 55.391739],\n\t\t\t\t\t\t\t[-160.279970, 55.395905],\n\t\t\t\t\t\t\t[-160.308921, 55.393174],\n\t\t\t\t\t\t\t[-160.321132, 55.393677],\n\t\t\t\t\t\t\t[-160.339858, 55.409692],\n\t\t\t\t\t\t\t[-160.349526, 55.420477],\n\t\t\t\t\t\t\t[-160.347609, 55.426187],\n\t\t\t\t\t\t\t[-160.323237, 55.444633],\n\t\t\t\t\t\t\t[-160.266834, 55.462789],\n\t\t\t\t\t\t\t[-160.260565, 55.463674],\n\t\t\t\t\t\t\t[-160.227504, 55.460340],\n\t\t\t\t\t\t\t[-160.211780, 55.455862]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-165.790523, 54.171758],\n\t\t\t\t\t\t\t[-165.747893, 54.161297],\n\t\t\t\t\t\t\t[-165.742613, 54.158352],\n\t\t\t\t\t\t\t[-165.732602, 54.148121],\n\t\t\t\t\t\t\t[-165.714198, 54.120815],\n\t\t\t\t\t\t\t[-165.667323, 54.132123],\n\t\t\t\t\t\t\t[-165.661379, 54.130935],\n\t\t\t\t\t\t\t[-165.655573, 54.119100],\n\t\t\t\t\t\t\t[-165.671477, 54.096235],\n\t\t\t\t\t\t\t[-165.767173, 54.065935],\n\t\t\t\t\t\t\t[-165.810747, 54.074764],\n\t\t\t\t\t\t\t[-165.875129, 54.036420],\n\t\t\t\t\t\t\t[-165.896308, 54.055714],\n\t\t\t\t\t\t\t[-165.897261, 54.060634],\n\t\t\t\t\t\t\t[-165.901649, 54.062870],\n\t\t\t\t\t\t\t[-165.916235, 54.065708],\n\t\t\t\t\t\t\t[-165.930242, 54.066554],\n\t\t\t\t\t\t\t[-165.984415, 54.061722],\n\t\t\t\t\t\t\t[-166.019861, 54.051441],\n\t\t\t\t\t\t\t[-166.027733, 54.045917],\n\t\t\t\t\t\t\t[-166.046438, 54.044186],\n\t\t\t\t\t\t\t[-166.098255, 54.103538],\n\t\t\t\t\t\t\t[-166.112242, 54.122528],\n\t\t\t\t\t\t\t[-166.101402, 54.144148],\n\t\t\t\t\t\t\t[-166.082028, 54.175184],\n\t\t\t\t\t\t\t[-166.002465, 54.213629],\n\t\t\t\t\t\t\t[-165.983200, 54.221175],\n\t\t\t\t\t\t\t[-165.944630, 54.220855],\n\t\t\t\t\t\t\t[-165.873076, 54.216455],\n\t\t\t\t\t\t\t[-165.868192, 54.214884],\n\t\t\t\t\t\t\t[-165.865140, 54.212160],\n\t\t\t\t\t\t\t[-165.865872, 54.200014],\n\t\t\t\t\t\t\t[-165.871973, 54.189783],\n\t\t\t\t\t\t\t[-165.880456, 54.183648],\n\t\t\t\t\t\t\t[-165.868076, 54.168731],\n\t\t\t\t\t\t\t[-165.863518, 54.166162],\n\t\t\t\t\t\t\t[-165.837274, 54.161028],\n\t\t\t\t\t\t\t[-165.832421, 54.161333],\n\t\t\t\t\t\t\t[-165.825159, 54.164499],\n\t\t\t\t\t\t\t[-165.797147, 54.183246],\n\t\t\t\t\t\t\t[-165.793781, 54.183433],\n\t\t\t\t\t\t\t[-165.792569, 54.181605],\n\t\t\t\t\t\t\t[-165.790523, 54.171758]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-165.271048, 54.095665],\n\t\t\t\t\t\t\t[-165.267012, 54.095467],\n\t\t\t\t\t\t\t[-165.234364, 54.065423],\n\t\t\t\t\t\t\t[-165.235149, 54.062767],\n\t\t\t\t\t\t\t[-165.245830, 54.056110],\n\t\t\t\t\t\t\t[-165.324415, 54.063907],\n\t\t\t\t\t\t\t[-165.336836, 54.070126],\n\t\t\t\t\t\t\t[-165.365768, 54.073317],\n\t\t\t\t\t\t\t[-165.458179, 54.066313],\n\t\t\t\t\t\t\t[-165.482747, 54.072218],\n\t\t\t\t\t\t\t[-165.483373, 54.075036],\n\t\t\t\t\t\t\t[-165.468221, 54.079641],\n\t\t\t\t\t\t\t[-165.438972, 54.084136],\n\t\t\t\t\t\t\t[-165.322268, 54.094634],\n\t\t\t\t\t\t\t[-165.271048, 54.095665]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-164.976199, 54.134595],\n\t\t\t\t\t\t\t[-164.937766, 54.136682],\n\t\t\t\t\t\t\t[-164.921307, 54.128569],\n\t\t\t\t\t\t\t[-164.919689, 54.116080],\n\t\t\t\t\t\t\t[-164.921464, 54.111083],\n\t\t\t\t\t\t\t[-164.953165, 54.078056],\n\t\t\t\t\t\t\t[-164.960581, 54.076026],\n\t\t\t\t\t\t\t[-165.044322, 54.066629],\n\t\t\t\t\t\t\t[-165.203413, 54.087752],\n\t\t\t\t\t\t\t[-165.212264, 54.090158],\n\t\t\t\t\t\t\t[-165.220871, 54.101574],\n\t\t\t\t\t\t\t[-165.198746, 54.116474],\n\t\t\t\t\t\t\t[-165.140978, 54.131079],\n\t\t\t\t\t\t\t[-165.088486, 54.128005],\n\t\t\t\t\t\t\t[-165.067428, 54.123174],\n\t\t\t\t\t\t\t[-165.050155, 54.121708],\n\t\t\t\t\t\t\t[-165.023065, 54.121919],\n\t\t\t\t\t\t\t[-165.007910, 54.134934],\n\t\t\t\t\t\t\t[-164.976199, 54.134595]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-165.523466, 54.299895],\n\t\t\t\t\t\t\t[-165.502775, 54.299469],\n\t\t\t\t\t\t\t[-165.478452, 54.295333],\n\t\t\t\t\t\t\t[-165.477750, 54.283707],\n\t\t\t\t\t\t\t[-165.479981, 54.281838],\n\t\t\t\t\t\t\t[-165.513700, 54.274086],\n\t\t\t\t\t\t\t[-165.557581, 54.254138],\n\t\t\t\t\t\t\t[-165.558835, 54.250763],\n\t\t\t\t\t\t\t[-165.557950, 54.246826],\n\t\t\t\t\t\t\t[-165.553251, 54.239601],\n\t\t\t\t\t\t\t[-165.512782, 54.212929],\n\t\t\t\t\t\t\t[-165.496279, 54.210938],\n\t\t\t\t\t\t\t[-165.478816, 54.213310],\n\t\t\t\t\t\t\t[-165.405377, 54.212837],\n\t\t\t\t\t\t\t[-165.391441, 54.204253],\n\t\t\t\t\t\t\t[-165.383719, 54.196731],\n\t\t\t\t\t\t\t[-165.399985, 54.177741],\n\t\t\t\t\t\t\t[-165.412925, 54.179221],\n\t\t\t\t\t\t\t[-165.422356, 54.182799],\n\t\t\t\t\t\t\t[-165.476190, 54.182701],\n\t\t\t\t\t\t\t[-165.481317, 54.179962],\n\t\t\t\t\t\t\t[-165.536004, 54.129606],\n\t\t\t\t\t\t\t[-165.549217, 54.112196],\n\t\t\t\t\t\t\t[-165.565422, 54.108122],\n\t\t\t\t\t\t\t[-165.575645, 54.108618],\n\t\t\t\t\t\t\t[-165.613214, 54.120908],\n\t\t\t\t\t\t\t[-165.629725, 54.132558],\n\t\t\t\t\t\t\t[-165.637081, 54.199436],\n\t\t\t\t\t\t\t[-165.621854, 54.208105],\n\t\t\t\t\t\t\t[-165.593656, 54.218375],\n\t\t\t\t\t\t\t[-165.585782, 54.223067],\n\t\t\t\t\t\t\t[-165.579801, 54.229575],\n\t\t\t\t\t\t\t[-165.587157, 54.238166],\n\t\t\t\t\t\t\t[-165.595732, 54.242713],\n\t\t\t\t\t\t\t[-165.612082, 54.246537],\n\t\t\t\t\t\t\t[-165.615629, 54.244834],\n\t\t\t\t\t\t\t[-165.625609, 54.233756],\n\t\t\t\t\t\t\t[-165.640013, 54.229673],\n\t\t\t\t\t\t\t[-165.669383, 54.229036],\n\t\t\t\t\t\t\t[-165.681458, 54.236914],\n\t\t\t\t\t\t\t[-165.685823, 54.243406],\n\t\t\t\t\t\t\t[-165.684114, 54.249907],\n\t\t\t\t\t\t\t[-165.675447, 54.264639],\n\t\t\t\t\t\t\t[-165.636383, 54.297567],\n\t\t\t\t\t\t\t[-165.625550, 54.298964],\n\t\t\t\t\t\t\t[-165.615570, 54.297445],\n\t\t\t\t\t\t\t[-165.605225, 54.294219],\n\t\t\t\t\t\t\t[-165.586509, 54.284361],\n\t\t\t\t\t\t\t[-165.523466, 54.299895]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-162.801865, 54.489440],\n\t\t\t\t\t\t\t[-162.796290, 54.492254],\n\t\t\t\t\t\t\t[-162.728415, 54.475354],\n\t\t\t\t\t\t\t[-162.588883, 54.450064],\n\t\t\t\t\t\t\t[-162.556667, 54.424621],\n\t\t\t\t\t\t\t[-162.552718, 54.416113],\n\t\t\t\t\t\t\t[-162.551618, 54.392217],\n\t\t\t\t\t\t\t[-162.562726, 54.382840],\n\t\t\t\t\t\t\t[-162.611891, 54.368077],\n\t\t\t\t\t\t\t[-162.722797, 54.400340],\n\t\t\t\t\t\t\t[-162.760396, 54.373254],\n\t\t\t\t\t\t\t[-162.759472, 54.371116],\n\t\t\t\t\t\t\t[-162.781239, 54.375085],\n\t\t\t\t\t\t\t[-162.860050, 54.425452],\n\t\t\t\t\t\t\t[-162.827621, 54.490859],\n\t\t\t\t\t\t\t[-162.801865, 54.489440]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-158.893211, 56.805788],\n\t\t\t\t\t\t\t[-158.891034, 56.754220],\n\t\t\t\t\t\t\t[-159.028594, 56.754058],\n\t\t\t\t\t\t\t[-159.028589, 56.669419],\n\t\t\t\t\t\t\t[-159.275496, 56.671762],\n\t\t\t\t\t\t\t[-159.275491, 56.580921],\n\t\t\t\t\t\t\t[-159.592657, 56.580917],\n\t\t\t\t\t\t\t[-159.593410, 56.494524],\n\t\t\t\t\t\t\t[-159.899424, 56.491981],\n\t\t\t\t\t\t\t[-159.903652, 56.322594],\n\t\t\t\t\t\t\t[-159.809651, 56.321694],\n\t\t\t\t\t\t\t[-159.805267, 55.982595],\n\t\t\t\t\t\t\t[-159.867858, 55.982594],\n\t\t\t\t\t\t\t[-159.868099, 55.888481],\n\t\t\t\t\t\t\t[-159.564669, 55.888484],\n\t\t\t\t\t\t\t[-159.564413, 55.633045],\n\t\t\t\t\t\t\t[-159.617770, 55.595798],\n\t\t\t\t\t\t\t[-159.696713, 55.573306],\n\t\t\t\t\t\t\t[-159.729333, 55.569650],\n\t\t\t\t\t\t\t[-159.733899, 55.569985],\n\t\t\t\t\t\t\t[-159.744495, 55.600018],\n\t\t\t\t\t\t\t[-159.743282, 55.603624],\n\t\t\t\t\t\t\t[-159.735196, 55.610933],\n\t\t\t\t\t\t\t[-159.724150, 55.614549],\n\t\t\t\t\t\t\t[-159.673432, 55.617350],\n\t\t\t\t\t\t\t[-159.667511, 55.614825],\n\t\t\t\t\t\t\t[-159.639619, 55.617915],\n\t\t\t\t\t\t\t[-159.626772, 55.629412],\n\t\t\t\t\t\t\t[-159.635866, 55.644398],\n\t\t\t\t\t\t\t[-159.644656, 55.652469],\n\t\t\t\t\t\t\t[-159.679201, 55.655895],\n\t\t\t\t\t\t\t[-159.680635, 55.681340],\n\t\t\t\t\t\t\t[-159.676761, 55.737357],\n\t\t\t\t\t\t\t[-159.673191, 55.750961],\n\t\t\t\t\t\t\t[-159.627482, 55.803248],\n\t\t\t\t\t\t\t[-159.624884, 55.804694],\n\t\t\t\t\t\t\t[-159.602148, 55.805004],\n\t\t\t\t\t\t\t[-159.607973, 55.812900],\n\t\t\t\t\t\t\t[-159.643739, 55.830424],\n\t\t\t\t\t\t\t[-159.712816, 55.846392],\n\t\t\t\t\t\t\t[-159.811070, 55.856570],\n\t\t\t\t\t\t\t[-159.838981, 55.852412],\n\t\t\t\t\t\t\t[-159.853255, 55.847162],\n\t\t\t\t\t\t\t[-159.858456, 55.841793],\n\t\t\t\t\t\t\t[-159.850750, 55.824076],\n\t\t\t\t\t\t\t[-159.847359, 55.802530],\n\t\t\t\t\t\t\t[-159.862484, 55.787629],\n\t\t\t\t\t\t\t[-159.875994, 55.784608],\n\t\t\t\t\t\t\t[-159.892319, 55.785096],\n\t\t\t\t\t\t\t[-159.937089, 55.803306],\n\t\t\t\t\t\t\t[-160.010322, 55.797087],\n\t\t\t\t\t\t\t[-160.026282, 55.792295],\n\t\t\t\t\t\t\t[-160.048711, 55.772061],\n\t\t\t\t\t\t\t[-160.052525, 55.766430],\n\t\t\t\t\t\t\t[-160.051945, 55.760594],\n\t\t\t\t\t\t\t[-160.049417, 55.757588],\n\t\t\t\t\t\t\t[-160.058443, 55.721734],\n\t\t\t\t\t\t\t[-160.130445, 55.681419],\n\t\t\t\t\t\t\t[-160.185712, 55.658644],\n\t\t\t\t\t\t\t[-160.279827, 55.641384],\n\t\t\t\t\t\t\t[-160.325419, 55.644207],\n\t\t\t\t\t\t\t[-160.353494, 55.649731],\n\t\t\t\t\t\t\t[-160.410823, 55.665380],\n\t\t\t\t\t\t\t[-160.416452, 55.665302],\n\t\t\t\t\t\t\t[-160.421853, 55.662701],\n\t\t\t\t\t\t\t[-160.429727, 55.658046],\n\t\t\t\t\t\t\t[-160.433602, 55.648975],\n\t\t\t\t\t\t\t[-160.433022, 55.639979],\n\t\t\t\t\t\t\t[-160.392587, 55.602771],\n\t\t\t\t\t\t\t[-160.435859, 55.573692],\n\t\t\t\t\t\t\t[-160.448277, 55.559049],\n\t\t\t\t\t\t\t[-160.464301, 55.533243],\n\t\t\t\t\t\t\t[-160.465186, 55.527361],\n\t\t\t\t\t\t\t[-160.459815, 55.514986],\n\t\t\t\t\t\t\t[-160.462745, 55.506654],\n\t\t\t\t\t\t\t[-160.481633, 55.489068],\n\t\t\t\t\t\t\t[-160.501346, 55.478518],\n\t\t\t\t\t\t\t[-160.521335, 55.474420],\n\t\t\t\t\t\t\t[-160.536654, 55.474938],\n\t\t\t\t\t\t\t[-160.544224, 55.502351],\n\t\t\t\t\t\t\t[-160.554173, 55.522965],\n\t\t\t\t\t\t\t[-160.580083, 55.564385],\n\t\t\t\t\t\t\t[-160.595771, 55.575540],\n\t\t\t\t\t\t\t[-160.615305, 55.575516],\n\t\t\t\t\t\t\t[-160.638371, 55.557426],\n\t\t\t\t\t\t\t[-160.652775, 55.548668],\n\t\t\t\t\t\t\t[-160.666966, 55.544417],\n\t\t\t\t\t\t\t[-160.706883, 55.556066],\n\t\t\t\t\t\t\t[-160.737095, 55.555448],\n\t\t\t\t\t\t\t[-160.751040, 55.552907],\n\t\t\t\t\t\t\t[-160.766237, 55.547559],\n\t\t\t\t\t\t\t[-160.772950, 55.538998],\n\t\t\t\t\t\t\t[-160.771433, 55.529430],\n\t\t\t\t\t\t\t[-160.732150, 55.523596],\n\t\t\t\t\t\t\t[-160.660117, 55.518475],\n\t\t\t\t\t\t\t[-160.654117, 55.512596],\n\t\t\t\t\t\t\t[-160.647464, 55.500862],\n\t\t\t\t\t\t\t[-160.646304, 55.492851],\n\t\t\t\t\t\t\t[-160.651523, 55.474174],\n\t\t\t\t\t\t\t[-160.666917, 55.459776],\n\t\t\t\t\t\t\t[-160.781401, 55.451780],\n\t\t\t\t\t\t\t[-160.795988, 55.454946],\n\t\t\t\t\t\t\t[-160.836725, 55.473135],\n\t\t\t\t\t\t\t[-160.843407, 55.489782],\n\t\t\t\t\t\t\t[-160.836023, 55.497259],\n\t\t\t\t\t\t\t[-160.821773, 55.506216],\n\t\t\t\t\t\t\t[-160.820810, 55.507974],\n\t\t\t\t\t\t\t[-160.828273, 55.516111],\n\t\t\t\t\t\t\t[-160.849145, 55.523916],\n\t\t\t\t\t\t\t[-160.865380, 55.526968],\n\t\t\t\t\t\t\t[-160.909625, 55.524140],\n\t\t\t\t\t\t\t[-160.922934, 55.519300],\n\t\t\t\t\t\t\t[-160.944265, 55.507825],\n\t\t\t\t\t\t\t[-160.976551, 55.472736],\n\t\t\t\t\t\t\t[-160.979298, 55.466274],\n\t\t\t\t\t\t\t[-160.977376, 55.461185],\n\t\t\t\t\t\t\t[-160.982717, 55.454326],\n\t\t\t\t\t\t\t[-160.997335, 55.440265],\n\t\t\t\t\t\t\t[-161.013662, 55.431002],\n\t\t\t\t\t\t\t[-161.231535, 55.357452],\n\t\t\t\t\t\t\t[-161.280675, 55.354038],\n\t\t\t\t\t\t\t[-161.325325, 55.359855],\n\t\t\t\t\t\t\t[-161.317545, 55.362758],\n\t\t\t\t\t\t\t[-161.311989, 55.372836],\n\t\t\t\t\t\t\t[-161.314949, 55.379231],\n\t\t\t\t\t\t\t[-161.346080, 55.385782],\n\t\t\t\t\t\t\t[-161.364577, 55.384194],\n\t\t\t\t\t\t\t[-161.445196, 55.368103],\n\t\t\t\t\t\t\t[-161.460392, 55.359070],\n\t\t\t\t\t\t\t[-161.486114, 55.359322],\n\t\t\t\t\t\t\t[-161.507657, 55.362786],\n\t\t\t\t\t\t\t[-161.514211, 55.385254],\n\t\t\t\t\t\t\t[-161.509306, 55.390626],\n\t\t\t\t\t\t\t[-161.496123, 55.396967],\n\t\t\t\t\t\t\t[-161.484588, 55.417994],\n\t\t\t\t\t\t\t[-161.478303, 55.440600],\n\t\t\t\t\t\t\t[-161.471468, 55.478588],\n\t\t\t\t\t\t\t[-161.477114, 55.485195],\n\t\t\t\t\t\t\t[-161.469271, 55.496830],\n\t\t\t\t\t\t\t[-161.376102, 55.569794],\n\t\t\t\t\t\t\t[-161.367405, 55.579484],\n\t\t\t\t\t\t\t[-161.355686, 55.606378],\n\t\t\t\t\t\t\t[-161.357670, 55.612603],\n\t\t\t\t\t\t\t[-161.363378, 55.618478],\n\t\t\t\t\t\t\t[-161.392613, 55.628221],\n\t\t\t\t\t\t\t[-161.416235, 55.632324],\n\t\t\t\t\t\t\t[-161.482064, 55.633979],\n\t\t\t\t\t\t\t[-161.526162, 55.630498],\n\t\t\t\t\t\t\t[-161.587047, 55.620060],\n\t\t\t\t\t\t\t[-161.602825, 55.613811],\n\t\t\t\t\t\t\t[-161.612926, 55.606158],\n\t\t\t\t\t\t\t[-161.698860, 55.519400],\n\t\t\t\t\t\t\t[-161.700069, 55.514390],\n\t\t\t\t\t\t\t[-161.696719, 55.423307],\n\t\t\t\t\t\t\t[-161.688357, 55.416380],\n\t\t\t\t\t\t\t[-161.686495, 55.408041],\n\t\t\t\t\t\t\t[-161.720096, 55.376690],\n\t\t\t\t\t\t\t[-161.827543, 55.287872],\n\t\t\t\t\t\t\t[-161.833891, 55.284400],\n\t\t\t\t\t\t\t[-161.845473, 55.281249],\n\t\t\t\t\t\t\t[-161.853418, 55.277634],\n\t\t\t\t\t\t\t[-161.863339, 55.266989],\n\t\t\t\t\t\t\t[-161.875606, 55.249921],\n\t\t\t\t\t\t\t[-161.879542, 55.240804],\n\t\t\t\t\t\t\t[-161.875759, 55.232592],\n\t\t\t\t\t\t\t[-161.875238, 55.227224],\n\t\t\t\t\t\t\t[-161.878076, 55.223599],\n\t\t\t\t\t\t\t[-161.903407, 55.204941],\n\t\t\t\t\t\t\t[-161.919519, 55.208209],\n\t\t\t\t\t\t\t[-161.957455, 55.227999],\n\t\t\t\t\t\t\t[-161.978788, 55.236131],\n\t\t\t\t\t\t\t[-162.029636, 55.239492],\n\t\t\t\t\t\t\t[-162.041236, 55.236806],\n\t\t\t\t\t\t\t[-162.045694, 55.232775],\n\t\t\t\t\t\t\t[-162.046242, 55.225605],\n\t\t\t\t\t\t\t[-162.001711, 55.169236],\n\t\t\t\t\t\t\t[-161.966974, 55.154831],\n\t\t\t\t\t\t\t[-161.949882, 55.126686],\n\t\t\t\t\t\t\t[-161.956595, 55.112174],\n\t\t\t\t\t\t\t[-161.960866, 55.106734],\n\t\t\t\t\t\t\t[-162.053281, 55.074212],\n\t\t\t\t\t\t\t[-162.118740, 55.102911],\n\t\t\t\t\t\t\t[-162.131878, 55.122776],\n\t\t\t\t\t\t\t[-162.119033, 55.141116],\n\t\t\t\t\t\t\t[-162.126369, 55.153408],\n\t\t\t\t\t\t\t[-162.141084, 55.157339],\n\t\t\t\t\t\t\t[-162.177427, 55.154403],\n\t\t\t\t\t\t\t[-162.218192, 55.118903],\n\t\t\t\t\t\t\t[-162.224047, 55.108658],\n\t\t\t\t\t\t\t[-162.223528, 55.102211],\n\t\t\t\t\t\t\t[-162.206800, 55.082391],\n\t\t\t\t\t\t\t[-162.190348, 55.066981],\n\t\t\t\t\t\t\t[-162.189247, 55.060260],\n\t\t\t\t\t\t\t[-162.219326, 55.028975],\n\t\t\t\t\t\t\t[-162.247946, 55.020439],\n\t\t\t\t\t\t\t[-162.253500, 55.020454],\n\t\t\t\t\t\t\t[-162.267754, 55.021553],\n\t\t\t\t\t\t\t[-162.280512, 55.026207],\n\t\t\t\t\t\t\t[-162.292511, 55.033429],\n\t\t\t\t\t\t\t[-162.299619, 55.040152],\n\t\t\t\t\t\t\t[-162.300378, 55.042927],\n\t\t\t\t\t\t\t[-162.361969, 55.042679],\n\t\t\t\t\t\t\t[-162.413510, 55.036560],\n\t\t\t\t\t\t\t[-162.471364, 55.051932],\n\t\t\t\t\t\t\t[-162.489735, 55.064849],\n\t\t\t\t\t\t\t[-162.512104, 55.086227],\n\t\t\t\t\t\t\t[-162.521688, 55.104011],\n\t\t\t\t\t\t\t[-162.520986, 55.115417],\n\t\t\t\t\t\t\t[-162.506887, 55.118927],\n\t\t\t\t\t\t\t[-162.460958, 55.125840],\n\t\t\t\t\t\t\t[-162.453451, 55.123948],\n\t\t\t\t\t\t\t[-162.442556, 55.118226],\n\t\t\t\t\t\t\t[-162.437368, 55.112122],\n\t\t\t\t\t\t\t[-162.424796, 55.104813],\n\t\t\t\t\t\t\t[-162.416800, 55.104096],\n\t\t\t\t\t\t\t[-162.410574, 55.105614],\n\t\t\t\t\t\t\t[-162.406191, 55.120498],\n\t\t\t\t\t\t\t[-162.445182, 55.151521],\n\t\t\t\t\t\t\t[-162.480980, 55.161271],\n\t\t\t\t\t\t\t[-162.494470, 55.183915],\n\t\t\t\t\t\t\t[-162.497920, 55.199052],\n\t\t\t\t\t\t\t[-162.499019, 55.213770],\n\t\t\t\t\t\t\t[-162.510435, 55.250177],\n\t\t\t\t\t\t\t[-162.513121, 55.252374],\n\t\t\t\t\t\t\t[-162.584872, 55.298386],\n\t\t\t\t\t\t\t[-162.626101, 55.304085],\n\t\t\t\t\t\t\t[-162.649173, 55.299118],\n\t\t\t\t\t\t\t[-162.661960, 55.294295],\n\t\t\t\t\t\t\t[-162.682405, 55.276450],\n\t\t\t\t\t\t\t[-162.702851, 55.252775],\n\t\t\t\t\t\t\t[-162.714607, 55.231611],\n\t\t\t\t\t\t\t[-162.718077, 55.219911],\n\t\t\t\t\t\t\t[-162.711128, 55.211267],\n\t\t\t\t\t\t\t[-162.692309, 55.197313],\n\t\t\t\t\t\t\t[-162.668346, 55.193445],\n\t\t\t\t\t\t\t[-162.644734, 55.197115],\n\t\t\t\t\t\t\t[-162.638791, 55.194770],\n\t\t\t\t\t\t\t[-162.614497, 55.174735],\n\t\t\t\t\t\t\t[-162.579765, 55.136939],\n\t\t\t\t\t\t\t[-162.582908, 55.130240],\n\t\t\t\t\t\t\t[-162.585533, 55.128600],\n\t\t\t\t\t\t\t[-162.595603, 55.124846],\n\t\t\t\t\t\t\t[-162.604454, 55.126028],\n\t\t\t\t\t\t\t[-162.618918, 55.097096],\n\t\t\t\t\t\t\t[-162.599812, 55.054806],\n\t\t\t\t\t\t\t[-162.569292, 55.015874],\n\t\t\t\t\t\t\t[-162.569289, 54.971240],\n\t\t\t\t\t\t\t[-162.587967, 54.972010],\n\t\t\t\t\t\t\t[-162.615159, 54.987841],\n\t\t\t\t\t\t\t[-162.646472, 54.997163],\n\t\t\t\t\t\t\t[-162.688131, 54.996126],\n\t\t\t\t\t\t\t[-162.707083, 54.991159],\n\t\t\t\t\t\t\t[-162.716177, 54.986679],\n\t\t\t\t\t\t\t[-162.720404, 54.980223],\n\t\t\t\t\t\t\t[-162.707203, 54.972023],\n\t\t\t\t\t\t\t[-162.705096, 54.966010],\n\t\t\t\t\t\t\t[-162.708453, 54.958480],\n\t\t\t\t\t\t\t[-162.770983, 54.932736],\n\t\t\t\t\t\t\t[-162.834245, 54.926851],\n\t\t\t\t\t\t\t[-162.845475, 54.926989],\n\t\t\t\t\t\t\t[-162.881639, 54.934785],\n\t\t\t\t\t\t\t[-162.913684, 54.950273],\n\t\t\t\t\t\t\t[-162.970632, 55.001039],\n\t\t\t\t\t\t\t[-162.965872, 55.017374],\n\t\t\t\t\t\t\t[-162.958975, 55.020151],\n\t\t\t\t\t\t\t[-162.957826, 55.031826],\n\t\t\t\t\t\t\t[-162.964897, 55.042201],\n\t\t\t\t\t\t\t[-163.001550, 55.080043],\n\t\t\t\t\t\t\t[-163.051631, 55.103267],\n\t\t\t\t\t\t\t[-163.071468, 55.110477],\n\t\t\t\t\t\t\t[-163.079006, 55.111652],\n\t\t\t\t\t\t\t[-163.111507, 55.109705],\n\t\t\t\t\t\t\t[-163.165036, 55.099214],\n\t\t\t\t\t\t\t[-163.188428, 55.090903],\n\t\t\t\t\t\t\t[-163.213009, 55.066742],\n\t\t\t\t\t\t\t[-163.225092, 55.049683],\n\t\t\t\t\t\t\t[-163.226313, 55.042694],\n\t\t\t\t\t\t\t[-163.219018, 55.030281],\n\t\t\t\t\t\t\t[-163.213281, 55.026138],\n\t\t\t\t\t\t\t[-163.189447, 55.016678],\n\t\t\t\t\t\t\t[-163.174830, 55.013100],\n\t\t\t\t\t\t\t[-163.148615, 55.014023],\n\t\t\t\t\t\t\t[-163.067008, 54.979302],\n\t\t\t\t\t\t\t[-163.050467, 54.969071],\n\t\t\t\t\t\t\t[-163.036062, 54.942544],\n\t\t\t\t\t\t\t[-163.065602, 54.926172],\n\t\t\t\t\t\t\t[-163.149580, 54.885906],\n\t\t\t\t\t\t\t[-163.214398, 54.847487],\n\t\t\t\t\t\t\t[-163.299809, 54.829232],\n\t\t\t\t\t\t\t[-163.352997, 54.810174],\n\t\t\t\t\t\t\t[-163.373207, 54.800841],\n\t\t\t\t\t\t\t[-163.372806, 54.790936],\n\t\t\t\t\t\t\t[-163.342655, 54.765104],\n\t\t\t\t\t\t\t[-163.322849, 54.750280],\n\t\t\t\t\t\t\t[-163.228391, 54.753513],\n\t\t\t\t\t\t\t[-163.219765, 54.755072],\n\t\t\t\t\t\t\t[-163.188853, 54.773717],\n\t\t\t\t\t\t\t[-163.184295, 54.774912],\n\t\t\t\t\t\t\t[-163.144089, 54.761499],\n\t\t\t\t\t\t\t[-163.107558, 54.732752],\n\t\t\t\t\t\t\t[-163.057228, 54.688101],\n\t\t\t\t\t\t\t[-163.050970, 54.672263],\n\t\t\t\t\t\t\t[-163.059085, 54.661072],\n\t\t\t\t\t\t\t[-163.096744, 54.661597],\n\t\t\t\t\t\t\t[-163.125738, 54.668180],\n\t\t\t\t\t\t\t[-163.140925, 54.694829],\n\t\t\t\t\t\t\t[-163.185401, 54.700398],\n\t\t\t\t\t\t\t[-163.194952, 54.699025],\n\t\t\t\t\t\t\t[-163.208775, 54.693136],\n\t\t\t\t\t\t\t[-163.280633, 54.695367],\n\t\t\t\t\t\t\t[-163.317996, 54.719938],\n\t\t\t\t\t\t\t[-163.327457, 54.743414],\n\t\t\t\t\t\t\t[-163.331516, 54.747518],\n\t\t\t\t\t\t\t[-163.344791, 54.751211],\n\t\t\t\t\t\t\t[-163.364626, 54.749464],\n\t\t\t\t\t\t\t[-163.380618, 54.746176],\n\t\t\t\t\t\t\t[-163.391970, 54.741980],\n\t\t\t\t\t\t\t[-163.423067, 54.720426],\n\t\t\t\t\t\t\t[-163.428377, 54.714819],\n\t\t\t\t\t\t\t[-163.425477, 54.710081],\n\t\t\t\t\t\t\t[-163.439361, 54.655928],\n\t\t\t\t\t\t\t[-163.472016, 54.656468],\n\t\t\t\t\t\t\t[-163.488861, 54.655110],\n\t\t\t\t\t\t\t[-163.572383, 54.623211],\n\t\t\t\t\t\t\t[-163.581481, 54.616863],\n\t\t\t\t\t\t\t[-163.585967, 54.611644],\n\t\t\t\t\t\t\t[-163.670838, 54.627825],\n\t\t\t\t\t\t\t[-163.747316, 54.635011],\n\t\t\t\t\t\t\t[-163.803590, 54.636498],\n\t\t\t\t\t\t\t[-163.861206, 54.632911],\n\t\t\t\t\t\t\t[-163.952391, 54.630461],\n\t\t\t\t\t\t\t[-163.966307, 54.631681],\n\t\t\t\t\t\t\t[-164.084894, 54.620131],\n\t\t\t\t\t\t\t[-164.179617, 54.599188],\n\t\t\t\t\t\t\t[-164.232470, 54.585494],\n\t\t\t\t\t\t\t[-164.257585, 54.572722],\n\t\t\t\t\t\t\t[-164.331404, 54.530431],\n\t\t\t\t\t\t\t[-164.337538, 54.524259],\n\t\t\t\t\t\t\t[-164.341474, 54.495266],\n\t\t\t\t\t\t\t[-164.336042, 54.484509],\n\t\t\t\t\t\t\t[-164.336530, 54.480977],\n\t\t\t\t\t\t\t[-164.352704, 54.465023],\n\t\t\t\t\t\t\t[-164.416820, 54.431713],\n\t\t\t\t\t\t\t[-164.456554, 54.419856],\n\t\t\t\t\t\t\t[-164.499034, 54.414225],\n\t\t\t\t\t\t\t[-164.519970, 54.414652],\n\t\t\t\t\t\t\t[-164.582778, 54.405702],\n\t\t\t\t\t\t\t[-164.601607, 54.402451],\n\t\t\t\t\t\t\t[-164.640457, 54.391166],\n\t\t\t\t\t\t\t[-164.743977, 54.394216],\n\t\t\t\t\t\t\t[-164.789357, 54.402012],\n\t\t\t\t\t\t\t[-164.844931, 54.417583],\n\t\t\t\t\t\t\t[-164.876075, 54.443495],\n\t\t\t\t\t\t\t[-164.877373, 54.449908],\n\t\t\t\t\t\t\t[-164.904077, 54.499195],\n\t\t\t\t\t\t\t[-164.910059, 54.507542],\n\t\t\t\t\t\t\t[-164.936122, 54.521253],\n\t\t\t\t\t\t\t[-164.944636, 54.532903],\n\t\t\t\t\t\t\t[-164.949781, 54.575697],\n\t\t\t\t\t\t\t[-164.948789, 54.579877],\n\t\t\t\t\t\t\t[-164.932187, 54.598745],\n\t\t\t\t\t\t\t[-164.918760, 54.605306],\n\t\t\t\t\t\t\t[-164.831936, 54.629028],\n\t\t\t\t\t\t\t[-164.761347, 54.640634],\n\t\t\t\t\t\t\t[-164.741815, 54.645441],\n\t\t\t\t\t\t\t[-164.727654, 54.650957],\n\t\t\t\t\t\t\t[-164.709465, 54.661518],\n\t\t\t\t\t\t\t[-164.629661, 54.756031],\n\t\t\t\t\t\t\t[-164.576896, 54.824564],\n\t\t\t\t\t\t\t[-164.561546, 54.850835],\n\t\t\t\t\t\t\t[-164.564050, 54.875539],\n\t\t\t\t\t\t\t[-164.550256, 54.888785],\n\t\t\t\t\t\t\t[-164.486780, 54.922441],\n\t\t\t\t\t\t\t[-164.435280, 54.933126],\n\t\t\t\t\t\t\t[-164.427303, 54.932849],\n\t\t\t\t\t\t\t[-164.373441, 54.915349],\n\t\t\t\t\t\t\t[-164.361631, 54.907391],\n\t\t\t\t\t\t\t[-164.353330, 54.898327],\n\t\t\t\t\t\t\t[-164.343534, 54.894139],\n\t\t\t\t\t\t\t[-164.295033, 54.902122],\n\t\t\t\t\t\t\t[-164.207070, 54.927578],\n\t\t\t\t\t\t\t[-164.204897, 54.931240],\n\t\t\t\t\t\t\t[-164.164342, 54.953532],\n\t\t\t\t\t\t\t[-164.119196, 54.969416],\n\t\t\t\t\t\t\t[-164.109333, 54.963999],\n\t\t\t\t\t\t\t[-164.086798, 54.963396],\n\t\t\t\t\t\t\t[-164.061164, 54.964708],\n\t\t\t\t\t\t\t[-164.030708, 54.969818],\n\t\t\t\t\t\t\t[-163.994179, 54.983315],\n\t\t\t\t\t\t\t[-163.964730, 54.997337],\n\t\t\t\t\t\t\t[-163.930369, 55.017646],\n\t\t\t\t\t\t\t[-163.909222, 55.032089],\n\t\t\t\t\t\t\t[-163.894695, 55.039115],\n\t\t\t\t\t\t\t[-163.884869, 55.039909],\n\t\t\t\t\t\t\t[-163.872144, 55.037399],\n\t\t\t\t\t\t\t[-163.854260, 55.037796],\n\t\t\t\t\t\t\t[-163.815779, 55.044625],\n\t\t\t\t\t\t\t[-163.790733, 55.052583],\n\t\t\t\t\t\t\t[-163.774093, 55.055780],\n\t\t\t\t\t\t\t[-163.740737, 55.048266],\n\t\t\t\t\t\t\t[-163.646834, 55.044467],\n\t\t\t\t\t\t\t[-163.568159, 55.049145],\n\t\t\t\t\t\t\t[-163.532962, 55.048881],\n\t\t\t\t\t\t\t[-163.527109, 55.040871],\n\t\t\t\t\t\t\t[-163.534638, 55.025305],\n\t\t\t\t\t\t\t[-163.530087, 55.016660],\n\t\t\t\t\t\t\t[-163.461500, 54.982511],\n\t\t\t\t\t\t\t[-163.442854, 54.969875],\n\t\t\t\t\t\t\t[-163.429548, 54.954759],\n\t\t\t\t\t\t\t[-163.418042, 54.938499],\n\t\t\t\t\t\t\t[-163.398294, 54.902371],\n\t\t\t\t\t\t\t[-163.399292, 54.894012],\n\t\t\t\t\t\t\t[-163.408027, 54.884580],\n\t\t\t\t\t\t\t[-163.415872, 54.859652],\n\t\t\t\t\t\t\t[-163.414691, 54.856090],\n\t\t\t\t\t\t\t[-163.410594, 54.854576],\n\t\t\t\t\t\t\t[-163.391397, 54.855331],\n\t\t\t\t\t\t\t[-163.334234, 54.872948],\n\t\t\t\t\t\t\t[-163.318885, 54.880120],\n\t\t\t\t\t\t\t[-163.319161, 54.899026],\n\t\t\t\t\t\t\t[-163.319956, 54.903085],\n\t\t\t\t\t\t\t[-163.336739, 54.917490],\n\t\t\t\t\t\t\t[-163.344402, 54.919333],\n\t\t\t\t\t\t\t[-163.347730, 54.925093],\n\t\t\t\t\t\t\t[-163.343735, 54.950416],\n\t\t\t\t\t\t\t[-163.338395, 54.956191],\n\t\t\t\t\t\t\t[-163.323106, 54.959929],\n\t\t\t\t\t\t\t[-163.314592, 54.958862],\n\t\t\t\t\t\t\t[-163.290908, 54.945977],\n\t\t\t\t\t\t\t[-163.279586, 54.944849],\n\t\t\t\t\t\t\t[-163.239900, 54.954617],\n\t\t\t\t\t\t\t[-163.237414, 54.959292],\n\t\t\t\t\t\t\t[-163.240008, 54.962885],\n\t\t\t\t\t\t\t[-163.293205, 55.006865],\n\t\t\t\t\t\t\t[-163.297876, 55.057619],\n\t\t\t\t\t\t\t[-163.310694, 55.105612],\n\t\t\t\t\t\t\t[-163.314069, 55.105146],\n\t\t\t\t\t\t\t[-163.318731, 55.110811],\n\t\t\t\t\t\t\t[-163.319873, 55.119622],\n\t\t\t\t\t\t\t[-163.314652, 55.126312],\n\t\t\t\t\t\t\t[-163.268767, 55.145465],\n\t\t\t\t\t\t\t[-163.200867, 55.166057],\n\t\t\t\t\t\t\t[-163.157532, 55.175510],\n\t\t\t\t\t\t\t[-163.105011, 55.183979],\n\t\t\t\t\t\t\t[-163.081634, 55.180409],\n\t\t\t\t\t\t\t[-163.080719, 55.176861],\n\t\t\t\t\t\t\t[-163.070494, 55.174114],\n\t\t\t\t\t\t\t[-163.032256, 55.172147],\n\t\t\t\t\t\t\t[-162.957182, 55.171271],\n\t\t\t\t\t\t\t[-162.882292, 55.183251],\n\t\t\t\t\t\t\t[-162.861520, 55.198339],\n\t\t\t\t\t\t\t[-162.840140, 55.224043],\n\t\t\t\t\t\t\t[-162.843172, 55.242564],\n\t\t\t\t\t\t\t[-162.851839, 55.247317],\n\t\t\t\t\t\t\t[-162.856600, 55.248721],\n\t\t\t\t\t\t\t[-162.869478, 55.248086],\n\t\t\t\t\t\t\t[-162.880892, 55.239564],\n\t\t\t\t\t\t\t[-162.894020, 55.243046],\n\t\t\t\t\t\t\t[-162.900454, 55.246416],\n\t\t\t\t\t\t\t[-162.901644, 55.247652],\n\t\t\t\t\t\t\t[-162.900027, 55.252466],\n\t\t\t\t\t\t\t[-162.888118, 55.270424],\n\t\t\t\t\t\t\t[-162.881779, 55.273776],\n\t\t\t\t\t\t\t[-162.750371, 55.307623],\n\t\t\t\t\t\t\t[-162.731816, 55.307829],\n\t\t\t\t\t\t\t[-162.704747, 55.320296],\n\t\t\t\t\t\t\t[-162.680487, 55.337004],\n\t\t\t\t\t\t\t[-162.649910, 55.364151],\n\t\t\t\t\t\t\t[-162.619883, 55.408670],\n\t\t\t\t\t\t\t[-162.580524, 55.446514],\n\t\t\t\t\t\t\t[-162.575826, 55.446833],\n\t\t\t\t\t\t\t[-162.533216, 55.467625],\n\t\t\t\t\t\t\t[-162.504041, 55.482556],\n\t\t\t\t\t\t\t[-162.483687, 55.495237],\n\t\t\t\t\t\t\t[-162.403581, 55.557465],\n\t\t\t\t\t\t\t[-162.326436, 55.613918],\n\t\t\t\t\t\t\t[-162.286002, 55.649288],\n\t\t\t\t\t\t\t[-162.246972, 55.680013],\n\t\t\t\t\t\t\t[-162.193078, 55.702178],\n\t\t\t\t\t\t\t[-162.147059, 55.718415],\n\t\t\t\t\t\t\t[-162.090664, 55.753427],\n\t\t\t\t\t\t\t[-162.079678, 55.763400],\n\t\t\t\t\t\t\t[-161.972624, 55.800526],\n\t\t\t\t\t\t\t[-161.898956, 55.833464],\n\t\t\t\t\t\t\t[-161.858430, 55.865402],\n\t\t\t\t\t\t\t[-161.816225, 55.888993],\n\t\t\t\t\t\t\t[-161.807833, 55.891954],\n\t\t\t\t\t\t\t[-161.773409, 55.897310],\n\t\t\t\t\t\t\t[-161.712283, 55.904232],\n\t\t\t\t\t\t\t[-161.640007, 55.919503],\n\t\t\t\t\t\t\t[-161.585604, 55.937324],\n\t\t\t\t\t\t\t[-161.450442, 55.954485],\n\t\t\t\t\t\t\t[-161.380557, 55.965618],\n\t\t\t\t\t\t\t[-161.290777, 55.983130],\n\t\t\t\t\t\t\t[-161.280307, 55.979323],\n\t\t\t\t\t\t\t[-161.278330, 55.974912],\n\t\t\t\t\t\t\t[-161.262763, 55.958734],\n\t\t\t\t\t\t\t[-161.230444, 55.947467],\n\t\t\t\t\t\t\t[-161.211273, 55.951712],\n\t\t\t\t\t\t\t[-161.096617, 55.954752],\n\t\t\t\t\t\t\t[-161.076383, 55.942079],\n\t\t\t\t\t\t\t[-161.049162, 55.945407],\n\t\t\t\t\t\t\t[-161.027739, 55.954554],\n\t\t\t\t\t\t\t[-161.023376, 55.959468],\n\t\t\t\t\t\t\t[-160.898682, 55.999014],\n\t\t\t\t\t\t\t[-160.873229, 56.001448],\n\t\t\t\t\t\t\t[-160.863250, 55.996237],\n\t\t\t\t\t\t\t[-160.814205, 55.953834],\n\t\t\t\t\t\t\t[-160.812893, 55.950858],\n\t\t\t\t\t\t\t[-160.814113, 55.930633],\n\t\t\t\t\t\t\t[-160.818201, 55.910749],\n\t\t\t\t\t\t\t[-160.835077, 55.915747],\n\t\t\t\t\t\t\t[-160.849665, 55.916227],\n\t\t\t\t\t\t\t[-160.923856, 55.900574],\n\t\t\t\t\t\t\t[-160.951560, 55.852772],\n\t\t\t\t\t\t\t[-160.946400, 55.834881],\n\t\t\t\t\t\t\t[-160.940845, 55.822529],\n\t\t\t\t\t\t\t[-160.930591, 55.814358],\n\t\t\t\t\t\t\t[-160.806014, 55.738241],\n\t\t\t\t\t\t\t[-160.765228, 55.757174],\n\t\t\t\t\t\t\t[-160.730726, 55.747664],\n\t\t\t\t\t\t\t[-160.668102, 55.723556],\n\t\t\t\t\t\t\t[-160.661205, 55.723427],\n\t\t\t\t\t\t\t[-160.655560, 55.730041],\n\t\t\t\t\t\t\t[-160.655468, 55.739868],\n\t\t\t\t\t\t\t[-160.663037, 55.745491],\n\t\t\t\t\t\t\t[-160.675794, 55.751411],\n\t\t\t\t\t\t\t[-160.695227, 55.755075],\n\t\t\t\t\t\t\t[-160.751236, 55.779364],\n\t\t\t\t\t\t\t[-160.757705, 55.785841],\n\t\t\t\t\t\t\t[-160.769155, 55.858268],\n\t\t\t\t\t\t\t[-160.734182, 55.870995],\n\t\t\t\t\t\t\t[-160.697591, 55.862396],\n\t\t\t\t\t\t\t[-160.639088, 55.858300],\n\t\t\t\t\t\t\t[-160.564014, 55.863719],\n\t\t\t\t\t\t\t[-160.550343, 55.867549],\n\t\t\t\t\t\t\t[-160.532582, 55.869891],\n\t\t\t\t\t\t\t[-160.508433, 55.869379],\n\t\t\t\t\t\t\t[-160.494678, 55.864193],\n\t\t\t\t\t\t\t[-160.477892, 55.841099],\n\t\t\t\t\t\t\t[-160.479355, 55.822361],\n\t\t\t\t\t\t\t[-160.438735, 55.789608],\n\t\t\t\t\t\t\t[-160.385878, 55.796445],\n\t\t\t\t\t\t\t[-160.342876, 55.778166],\n\t\t\t\t\t\t\t[-160.293924, 55.765556],\n\t\t\t\t\t\t\t[-160.277382, 55.765861],\n\t\t\t\t\t\t\t[-160.264568, 55.775723],\n\t\t\t\t\t\t\t[-160.268930, 55.784278],\n\t\t\t\t\t\t\t[-160.293498, 55.801788],\n\t\t\t\t\t\t\t[-160.315655, 55.814544],\n\t\t\t\t\t\t\t[-160.317826, 55.818983],\n\t\t\t\t\t\t\t[-160.272533, 55.831673],\n\t\t\t\t\t\t\t[-160.273176, 55.856881],\n\t\t\t\t\t\t\t[-160.325637, 55.867858],\n\t\t\t\t\t\t\t[-160.380573, 55.889456],\n\t\t\t\t\t\t\t[-160.420735, 55.908620],\n\t\t\t\t\t\t\t[-160.486594, 55.924168],\n\t\t\t\t\t\t\t[-160.535759, 55.939617],\n\t\t\t\t\t\t\t[-160.533685, 55.959950],\n\t\t\t\t\t\t\t[-160.527094, 55.973011],\n\t\t\t\t\t\t\t[-160.526362, 55.982433],\n\t\t\t\t\t\t\t[-160.529292, 55.986103],\n\t\t\t\t\t\t\t[-160.534541, 55.989498],\n\t\t\t\t\t\t\t[-160.559597, 55.996838],\n\t\t\t\t\t\t\t[-160.567604, 55.991670],\n\t\t\t\t\t\t\t[-160.570895, 55.988929],\n\t\t\t\t\t\t\t[-160.574397, 55.986552],\n\t\t\t\t\t\t\t[-160.576655, 55.985416],\n\t\t\t\t\t\t\t[-160.580840, 55.984079],\n\t\t\t\t\t\t\t[-160.583491, 55.986468],\n\t\t\t\t\t\t\t[-160.568356, 56.004062],\n\t\t\t\t\t\t\t[-160.488708, 56.077214],\n\t\t\t\t\t\t\t[-160.482208, 56.085234],\n\t\t\t\t\t\t\t[-160.451417, 56.125564],\n\t\t\t\t\t\t\t[-160.411381, 56.194138],\n\t\t\t\t\t\t\t[-160.396338, 56.231775],\n\t\t\t\t\t\t\t[-160.383094, 56.251352],\n\t\t\t\t\t\t\t[-160.357156, 56.279582],\n\t\t\t\t\t\t\t[-160.340249, 56.291271],\n\t\t\t\t\t\t\t[-160.315896, 56.302227],\n\t\t\t\t\t\t\t[-160.274604, 56.317151],\n\t\t\t\t\t\t\t[-160.222878, 56.346868],\n\t\t\t\t\t\t\t[-160.208383, 56.358022],\n\t\t\t\t\t\t\t[-160.196329, 56.372550],\n\t\t\t\t\t\t\t[-160.146252, 56.400176],\n\t\t\t\t\t\t\t[-160.082592, 56.411094],\n\t\t\t\t\t\t\t[-160.001477, 56.442201],\n\t\t\t\t\t\t\t[-159.976758, 56.453951],\n\t\t\t\t\t\t\t[-159.938337, 56.474192],\n\t\t\t\t\t\t\t[-159.828049, 56.543935],\n\t\t\t\t\t\t\t[-159.815477, 56.548941],\n\t\t\t\t\t\t\t[-159.636156, 56.597390],\n\t\t\t\t\t\t\t[-159.534961, 56.626529],\n\t\t\t\t\t\t\t[-159.439380, 56.641332],\n\t\t\t\t\t\t\t[-159.369434, 56.657073],\n\t\t\t\t\t\t\t[-159.324421, 56.670356],\n\t\t\t\t\t\t\t[-159.264871, 56.703136],\n\t\t\t\t\t\t\t[-159.279894, 56.715667],\n\t\t\t\t\t\t\t[-159.263113, 56.723321],\n\t\t\t\t\t\t\t[-159.156455, 56.763324],\n\t\t\t\t\t\t\t[-159.106652, 56.781126],\n\t\t\t\t\t\t\t[-159.093468, 56.783704],\n\t\t\t\t\t\t\t[-159.038354, 56.806006],\n\t\t\t\t\t\t\t[-159.018304, 56.815094],\n\t\t\t\t\t\t\t[-158.957471, 56.851184],\n\t\t\t\t\t\t\t[-158.955338, 56.849762],\n\t\t\t\t\t\t\t[-158.953543, 56.843418],\n\t\t\t\t\t\t\t[-158.933589, 56.827905],\n\t\t\t\t\t\t\t[-158.910730, 56.814797],\n\t\t\t\t\t\t\t[-158.893212, 56.805788],\n\t\t\t\t\t\t\t[-158.893211, 56.805788]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13149\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"149\",\n\t\t\t\t\"NAME\": \"Heard\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 296.030000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.293902, 33.428079],\n\t\t\t\t\t\t[-85.015358, 33.425506],\n\t\t\t\t\t\t[-84.939015, 33.224693],\n\t\t\t\t\t\t[-85.236509, 33.129562],\n\t\t\t\t\t\t[-85.293902, 33.428079]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20059\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"059\",\n\t\t\t\t\"NAME\": \"Franklin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 571.756000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.508267, 38.433933],\n\t\t\t\t\t\t[-95.500738, 38.738808],\n\t\t\t\t\t\t[-95.056412, 38.738587],\n\t\t\t\t\t\t[-95.065831, 38.389945],\n\t\t\t\t\t\t[-95.508328, 38.390278],\n\t\t\t\t\t\t[-95.508267, 38.433933]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06025\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"025\",\n\t\t\t\t\"NAME\": \"Imperial\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 4176.603000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-116.103137, 32.904115],\n\t\t\t\t\t\t[-116.081090, 33.074833],\n\t\t\t\t\t\t[-116.085165, 33.425932],\n\t\t\t\t\t\t[-115.467506, 33.426992],\n\t\t\t\t\t\t[-114.627125, 33.433554],\n\t\t\t\t\t\t[-114.665278, 33.415358],\n\t\t\t\t\t\t[-114.721233, 33.396912],\n\t\t\t\t\t\t[-114.700103, 33.341045],\n\t\t\t\t\t\t[-114.672088, 33.258499],\n\t\t\t\t\t\t[-114.675360, 33.185489],\n\t\t\t\t\t\t[-114.679359, 33.159519],\n\t\t\t\t\t\t[-114.687074, 33.142196],\n\t\t\t\t\t\t[-114.696829, 33.131209],\n\t\t\t\t\t\t[-114.706175, 33.105335],\n\t\t\t\t\t\t[-114.707819, 33.091102],\n\t\t\t\t\t\t[-114.675104, 33.047532],\n\t\t\t\t\t\t[-114.623870, 33.028720],\n\t\t\t\t\t\t[-114.606282, 33.025703],\n\t\t\t\t\t\t[-114.589778, 33.026228],\n\t\t\t\t\t\t[-114.584765, 33.028231],\n\t\t\t\t\t\t[-114.578287, 33.035375],\n\t\t\t\t\t\t[-114.571653, 33.036624],\n\t\t\t\t\t\t[-114.523578, 33.030961],\n\t\t\t\t\t\t[-114.516912, 33.026871],\n\t\t\t\t\t\t[-114.511343, 33.023455],\n\t\t\t\t\t\t[-114.468605, 32.971649],\n\t\t\t\t\t\t[-114.462890, 32.905797],\n\t\t\t\t\t\t[-114.465715, 32.879420],\n\t\t\t\t\t\t[-114.465715, 32.879191],\n\t\t\t\t\t\t[-114.496284, 32.822326],\n\t\t\t\t\t\t[-114.496827, 32.822119],\n\t\t\t\t\t\t[-114.615733, 32.729427],\n\t\t\t\t\t\t[-114.615585, 32.728446],\n\t\t\t\t\t\t[-114.658260, 32.733799],\n\t\t\t\t\t\t[-114.658840, 32.733830],\n\t\t\t\t\t\t[-114.677091, 32.736218],\n\t\t\t\t\t\t[-114.678632, 32.736614],\n\t\t\t\t\t\t[-114.719633, 32.718763],\n\t\t\t\t\t\t[-115.465164, 32.667100],\n\t\t\t\t\t\t[-115.875842, 32.636424],\n\t\t\t\t\t\t[-116.106159, 32.618328],\n\t\t\t\t\t\t[-116.103137, 32.904115]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06029\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"029\",\n\t\t\t\t\"NAME\": \"Kern\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 8131.916000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-117.667292, 34.822526],\n\t\t\t\t\t\t[-118.140074, 34.820780],\n\t\t\t\t\t\t[-118.854253, 34.817772],\n\t\t\t\t\t\t[-118.881364, 34.790629],\n\t\t\t\t\t\t[-118.976721, 34.812199],\n\t\t\t\t\t\t[-119.243645, 34.814178],\n\t\t\t\t\t\t[-119.276946, 34.879675],\n\t\t\t\t\t\t[-119.442352, 34.901274],\n\t\t\t\t\t\t[-119.472754, 34.901174],\n\t\t\t\t\t\t[-119.472719, 35.076885],\n\t\t\t\t\t\t[-119.560975, 35.087673],\n\t\t\t\t\t\t[-119.553641, 35.179975],\n\t\t\t\t\t\t[-119.667056, 35.174809],\n\t\t\t\t\t\t[-119.666663, 35.262527],\n\t\t\t\t\t\t[-119.809449, 35.263584],\n\t\t\t\t\t\t[-119.809346, 35.350865],\n\t\t\t\t\t\t[-119.880172, 35.351211],\n\t\t\t\t\t\t[-119.880045, 35.439133],\n\t\t\t\t\t\t[-119.997392, 35.439495],\n\t\t\t\t\t\t[-119.997382, 35.468702],\n\t\t\t\t\t\t[-120.086674, 35.526554],\n\t\t\t\t\t\t[-120.085922, 35.614524],\n\t\t\t\t\t\t[-120.193918, 35.614359],\n\t\t\t\t\t\t[-120.193892, 35.726513],\n\t\t\t\t\t\t[-120.193934, 35.749393],\n\t\t\t\t\t\t[-120.194053, 35.749964],\n\t\t\t\t\t\t[-120.194146, 35.789204],\n\t\t\t\t\t\t[-119.538116, 35.789567],\n\t\t\t\t\t\t[-119.534559, 35.789758],\n\t\t\t\t\t\t[-119.214033, 35.790489],\n\t\t\t\t\t\t[-118.270456, 35.790009],\n\t\t\t\t\t\t[-118.008043, 35.789161],\n\t\t\t\t\t\t[-117.632996, 35.797251],\n\t\t\t\t\t\t[-117.651986, 35.709934],\n\t\t\t\t\t\t[-117.616195, 35.680856],\n\t\t\t\t\t\t[-117.630126, 35.564071],\n\t\t\t\t\t\t[-117.632011, 34.822270],\n\t\t\t\t\t\t[-117.667292, 34.822526]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06031\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"031\",\n\t\t\t\t\"NAME\": \"Kings\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1389.420000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-119.905119, 36.401741],\n\t\t\t\t\t\t[-119.666290, 36.418960],\n\t\t\t\t\t\t[-119.573194, 36.488835],\n\t\t\t\t\t\t[-119.528792, 36.401465],\n\t\t\t\t\t\t[-119.474892, 36.400953],\n\t\t\t\t\t\t[-119.474607, 36.269025],\n\t\t\t\t\t\t[-119.529358, 36.269850],\n\t\t\t\t\t\t[-119.538116, 35.789567],\n\t\t\t\t\t\t[-120.194146, 35.789204],\n\t\t\t\t\t\t[-120.213979, 35.789276],\n\t\t\t\t\t\t[-120.243275, 35.877669],\n\t\t\t\t\t\t[-120.315068, 35.907186],\n\t\t\t\t\t\t[-119.959210, 36.181403],\n\t\t\t\t\t\t[-119.959227, 36.400975],\n\t\t\t\t\t\t[-119.905119, 36.401741]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06039\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"039\",\n\t\t\t\t\"NAME\": \"Madera\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2137.069000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-119.733852, 36.948558],\n\t\t\t\t\t\t[-119.823421, 36.848333],\n\t\t\t\t\t\t[-119.932551, 36.842990],\n\t\t\t\t\t\t[-120.013334, 36.828228],\n\t\t\t\t\t\t[-120.027775, 36.814505],\n\t\t\t\t\t\t[-120.079458, 36.825345],\n\t\t\t\t\t\t[-120.132898, 36.809841],\n\t\t\t\t\t\t[-120.229179, 36.769687],\n\t\t\t\t\t\t[-120.422187, 36.840139],\n\t\t\t\t\t\t[-120.541696, 37.044505],\n\t\t\t\t\t\t[-120.400758, 37.117764],\n\t\t\t\t\t\t[-120.052055, 37.183108],\n\t\t\t\t\t\t[-119.761809, 37.417114],\n\t\t\t\t\t\t[-119.651191, 37.417832],\n\t\t\t\t\t\t[-119.651172, 37.461351],\n\t\t\t\t\t\t[-119.584220, 37.494696],\n\t\t\t\t\t\t[-119.583585, 37.560335],\n\t\t\t\t\t\t[-119.308995, 37.777986],\n\t\t\t\t\t\t[-119.293382, 37.767929],\n\t\t\t\t\t\t[-119.288381, 37.745030],\n\t\t\t\t\t\t[-119.268979, 37.739230],\n\t\t\t\t\t\t[-119.124312, 37.733944],\n\t\t\t\t\t\t[-119.022363, 37.585737],\n\t\t\t\t\t\t[-119.286658, 37.374943],\n\t\t\t\t\t\t[-119.335189, 37.310774],\n\t\t\t\t\t\t[-119.330573, 37.205791],\n\t\t\t\t\t\t[-119.361916, 37.167849],\n\t\t\t\t\t\t[-119.433060, 37.161516],\n\t\t\t\t\t\t[-119.470844, 37.110548],\n\t\t\t\t\t\t[-119.559412, 37.143619],\n\t\t\t\t\t\t[-119.537677, 37.104019],\n\t\t\t\t\t\t[-119.733852, 36.948558]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13067\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"067\",\n\t\t\t\t\"NAME\": \"Cobb\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 339.549000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.724435, 33.881859],\n\t\t\t\t\t\t[-84.737836, 34.079399],\n\t\t\t\t\t\t[-84.729235, 34.079199],\n\t\t\t\t\t\t[-84.722636, 34.079199],\n\t\t\t\t\t\t[-84.721936, 34.079099],\n\t\t\t\t\t\t[-84.687222, 34.078500],\n\t\t\t\t\t\t[-84.684745, 34.078500],\n\t\t\t\t\t\t[-84.682835, 34.078399],\n\t\t\t\t\t\t[-84.676415, 34.078298],\n\t\t\t\t\t\t[-84.674935, 34.078199],\n\t\t\t\t\t\t[-84.673935, 34.078299],\n\t\t\t\t\t\t[-84.672635, 34.078199],\n\t\t\t\t\t\t[-84.659234, 34.077999],\n\t\t\t\t\t\t[-84.521992, 34.075399],\n\t\t\t\t\t\t[-84.418927, 34.073298],\n\t\t\t\t\t\t[-84.383027, 33.963800],\n\t\t\t\t\t\t[-84.442708, 33.901543],\n\t\t\t\t\t\t[-84.480134, 33.817319],\n\t\t\t\t\t\t[-84.578132, 33.743507],\n\t\t\t\t\t\t[-84.619892, 33.805024],\n\t\t\t\t\t\t[-84.724139, 33.806170],\n\t\t\t\t\t\t[-84.723969, 33.815306],\n\t\t\t\t\t\t[-84.725181, 33.816995],\n\t\t\t\t\t\t[-84.725035, 33.819905],\n\t\t\t\t\t\t[-84.724435, 33.881859]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13069\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"069\",\n\t\t\t\t\"NAME\": \"Coffee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 575.097000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.627342, 31.672672],\n\t\t\t\t\t\t[-82.597509, 31.469293],\n\t\t\t\t\t\t[-82.628181, 31.469351],\n\t\t\t\t\t\t[-82.628975, 31.363930],\n\t\t\t\t\t\t[-82.817544, 31.364486],\n\t\t\t\t\t\t[-82.844093, 31.403328],\n\t\t\t\t\t\t[-83.140483, 31.420395],\n\t\t\t\t\t\t[-83.138998, 31.427784],\n\t\t\t\t\t\t[-83.135927, 31.430510],\n\t\t\t\t\t\t[-83.139448, 31.436466],\n\t\t\t\t\t\t[-83.138618, 31.441528],\n\t\t\t\t\t\t[-83.144891, 31.454633],\n\t\t\t\t\t\t[-83.150474, 31.456787],\n\t\t\t\t\t\t[-83.150846, 31.462262],\n\t\t\t\t\t\t[-83.145874, 31.468926],\n\t\t\t\t\t\t[-83.145587, 31.472276],\n\t\t\t\t\t\t[-82.998360, 31.673164],\n\t\t\t\t\t\t[-82.995698, 31.780983],\n\t\t\t\t\t\t[-82.863090, 31.783005],\n\t\t\t\t\t\t[-82.836366, 31.816154],\n\t\t\t\t\t\t[-82.836633, 31.671398],\n\t\t\t\t\t\t[-82.627342, 31.672672]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13073\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"073\",\n\t\t\t\t\"NAME\": \"Columbia\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 290.090000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.116630, 33.589723],\n\t\t\t\t\t\t[-82.098816, 33.586358],\n\t\t\t\t\t\t[-82.069039, 33.575382],\n\t\t\t\t\t\t[-82.046335, 33.563830],\n\t\t\t\t\t\t[-82.028238, 33.544934],\n\t\t\t\t\t\t[-82.294179, 33.354635],\n\t\t\t\t\t\t[-82.436814, 33.549658],\n\t\t\t\t\t\t[-82.425328, 33.650629],\n\t\t\t\t\t\t[-82.306414, 33.700644],\n\t\t\t\t\t\t[-82.218649, 33.686299],\n\t\t\t\t\t\t[-82.196583, 33.630582],\n\t\t\t\t\t\t[-82.179854, 33.615945],\n\t\t\t\t\t\t[-82.135046, 33.591044],\n\t\t\t\t\t\t[-82.129080, 33.589925],\n\t\t\t\t\t\t[-82.124841, 33.591274],\n\t\t\t\t\t\t[-82.116630, 33.589723]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13077\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"077\",\n\t\t\t\t\"NAME\": \"Coweta\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 440.892000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.939015, 33.224693],\n\t\t\t\t\t\t[-85.015358, 33.425506],\n\t\t\t\t\t\t[-84.850713, 33.511457],\n\t\t\t\t\t\t[-84.609540, 33.502511],\n\t\t\t\t\t\t[-84.627220, 33.440078],\n\t\t\t\t\t\t[-84.497527, 33.257422],\n\t\t\t\t\t\t[-84.508926, 33.245222],\n\t\t\t\t\t\t[-84.500290, 33.233444],\n\t\t\t\t\t\t[-84.502352, 33.221055],\n\t\t\t\t\t\t[-84.852360, 33.223590],\n\t\t\t\t\t\t[-84.862359, 33.191173],\n\t\t\t\t\t\t[-84.939015, 33.224693]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13081\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"081\",\n\t\t\t\t\"NAME\": \"Crisp\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 272.583000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.961278, 32.030595],\n\t\t\t\t\t\t[-83.609663, 32.027938],\n\t\t\t\t\t\t[-83.612256, 31.854089],\n\t\t\t\t\t\t[-83.612642, 31.804128],\n\t\t\t\t\t\t[-83.802223, 31.803495],\n\t\t\t\t\t\t[-83.939437, 31.847929],\n\t\t\t\t\t\t[-83.938192, 31.849489],\n\t\t\t\t\t\t[-83.937800, 31.854805],\n\t\t\t\t\t\t[-83.936736, 31.858043],\n\t\t\t\t\t\t[-83.932321, 31.859235],\n\t\t\t\t\t\t[-83.926524, 31.863292],\n\t\t\t\t\t\t[-83.928694, 31.871849],\n\t\t\t\t\t\t[-83.931152, 31.876984],\n\t\t\t\t\t\t[-83.934061, 31.881390],\n\t\t\t\t\t\t[-83.932091, 31.884632],\n\t\t\t\t\t\t[-83.928689, 31.886864],\n\t\t\t\t\t\t[-83.932301, 31.893801],\n\t\t\t\t\t\t[-83.932021, 31.898759],\n\t\t\t\t\t\t[-83.927383, 31.904142],\n\t\t\t\t\t\t[-83.925103, 31.905668],\n\t\t\t\t\t\t[-83.922494, 31.909653],\n\t\t\t\t\t\t[-83.961278, 32.030595]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13087\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"087\",\n\t\t\t\t\"NAME\": \"Decatur\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 597.140000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.508078, 31.078400],\n\t\t\t\t\t\t[-84.376612, 31.078883],\n\t\t\t\t\t\t[-84.380719, 30.689673],\n\t\t\t\t\t\t[-84.535042, 30.696523],\n\t\t\t\t\t\t[-84.539370, 30.696775],\n\t\t\t\t\t\t[-84.606249, 30.699872],\n\t\t\t\t\t\t[-84.606386, 30.699865],\n\t\t\t\t\t\t[-84.863465, 30.711487],\n\t\t\t\t\t\t[-84.755917, 30.885270],\n\t\t\t\t\t\t[-84.730855, 31.069190],\n\t\t\t\t\t\t[-84.542653, 31.079029],\n\t\t\t\t\t\t[-84.508078, 31.078400]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13093\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"093\",\n\t\t\t\t\"NAME\": \"Dooly\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 391.940000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.027853, 32.171083],\n\t\t\t\t\t\t[-83.965121, 32.248005],\n\t\t\t\t\t\t[-83.848379, 32.290970],\n\t\t\t\t\t\t[-83.615579, 32.288556],\n\t\t\t\t\t\t[-83.608547, 32.118405],\n\t\t\t\t\t\t[-83.608407, 32.116466],\n\t\t\t\t\t\t[-83.609663, 32.027938],\n\t\t\t\t\t\t[-83.961278, 32.030595],\n\t\t\t\t\t\t[-84.027853, 32.171083]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13095\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"095\",\n\t\t\t\t\"NAME\": \"Dougherty\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 328.689000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.450398, 31.621868],\n\t\t\t\t\t\t[-84.297801, 31.621951],\n\t\t\t\t\t\t[-84.043213, 31.623573],\n\t\t\t\t\t\t[-84.018404, 31.650274],\n\t\t\t\t\t\t[-83.982569, 31.463480],\n\t\t\t\t\t\t[-83.997679, 31.462773],\n\t\t\t\t\t\t[-83.997796, 31.443753],\n\t\t\t\t\t\t[-84.141124, 31.440179],\n\t\t\t\t\t\t[-84.429876, 31.436661],\n\t\t\t\t\t\t[-84.450398, 31.621868]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13101\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"101\",\n\t\t\t\t\"NAME\": \"Echols\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 414.894000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.136616, 30.624346],\n\t\t\t\t\t\t[-83.136236, 30.775229],\n\t\t\t\t\t\t[-83.088082, 30.848658],\n\t\t\t\t\t\t[-83.019419, 30.849453],\n\t\t\t\t\t\t[-83.013962, 30.844709],\n\t\t\t\t\t\t[-83.006577, 30.859470],\n\t\t\t\t\t\t[-82.993866, 30.860786],\n\t\t\t\t\t\t[-82.982155, 30.872249],\n\t\t\t\t\t\t[-82.971336, 30.869392],\n\t\t\t\t\t\t[-82.846353, 30.834988],\n\t\t\t\t\t\t[-82.766159, 30.732404],\n\t\t\t\t\t\t[-82.604005, 30.713676],\n\t\t\t\t\t\t[-82.584002, 30.591796],\n\t\t\t\t\t\t[-82.689271, 30.597719],\n\t\t\t\t\t\t[-82.689539, 30.597734],\n\t\t\t\t\t\t[-82.698618, 30.598232],\n\t\t\t\t\t\t[-82.698902, 30.598271],\n\t\t\t\t\t\t[-82.877259, 30.609024],\n\t\t\t\t\t\t[-82.878779, 30.609082],\n\t\t\t\t\t\t[-83.136616, 30.624346]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13103\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"103\",\n\t\t\t\t\"NAME\": \"Effingham\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 477.700000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.348155, 32.569294],\n\t\t\t\t\t\t[-81.328753, 32.561228],\n\t\t\t\t\t\t[-81.318255, 32.559722],\n\t\t\t\t\t\t[-81.286776, 32.544831],\n\t\t\t\t\t\t[-81.275415, 32.539457],\n\t\t\t\t\t\t[-81.199029, 32.467286],\n\t\t\t\t\t\t[-81.168032, 32.368391],\n\t\t\t\t\t\t[-81.140932, 32.349393],\n\t\t\t\t\t\t[-81.134332, 32.341693],\n\t\t\t\t\t\t[-81.122333, 32.305395],\n\t\t\t\t\t\t[-81.120333, 32.285796],\n\t\t\t\t\t\t[-81.128034, 32.276297],\n\t\t\t\t\t\t[-81.125457, 32.227130],\n\t\t\t\t\t\t[-81.195634, 32.237499],\n\t\t\t\t\t\t[-81.391698, 32.095886],\n\t\t\t\t\t\t[-81.435830, 32.241289],\n\t\t\t\t\t\t[-81.542716, 32.417446],\n\t\t\t\t\t\t[-81.548006, 32.489286],\n\t\t\t\t\t\t[-81.538558, 32.509059],\n\t\t\t\t\t\t[-81.389258, 32.595385],\n\t\t\t\t\t\t[-81.348155, 32.569294]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13109\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"109\",\n\t\t\t\t\"NAME\": \"Evans\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 182.853000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.969069, 32.268783],\n\t\t\t\t\t\t[-81.816280, 32.237470],\n\t\t\t\t\t\t[-81.780858, 32.152890],\n\t\t\t\t\t\t[-81.718658, 32.089351],\n\t\t\t\t\t\t[-81.761735, 32.047900],\n\t\t\t\t\t\t[-81.980041, 32.081502],\n\t\t\t\t\t\t[-82.025339, 32.278883],\n\t\t\t\t\t\t[-81.999843, 32.276189],\n\t\t\t\t\t\t[-81.969069, 32.268783]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13115\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"115\",\n\t\t\t\t\"NAME\": \"Floyd\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 509.911000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.069159, 34.587184],\n\t\t\t\t\t\t[-85.086761, 34.401264],\n\t\t\t\t\t\t[-85.005775, 34.392446],\n\t\t\t\t\t\t[-85.046871, 34.096412],\n\t\t\t\t\t\t[-85.257624, 34.100668],\n\t\t\t\t\t\t[-85.421731, 34.080821],\n\t\t\t\t\t\t[-85.455057, 34.250689],\n\t\t\t\t\t\t[-85.455371, 34.252854],\n\t\t\t\t\t\t[-85.458071, 34.265736],\n\t\t\t\t\t\t[-85.458693, 34.269437],\n\t\t\t\t\t\t[-85.462304, 34.286365],\n\t\t\t\t\t\t[-85.387351, 34.286097],\n\t\t\t\t\t\t[-85.334881, 34.369748],\n\t\t\t\t\t\t[-85.180548, 34.435996],\n\t\t\t\t\t\t[-85.107748, 34.587483],\n\t\t\t\t\t\t[-85.069159, 34.587184]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13119\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"119\",\n\t\t\t\t\"NAME\": \"Franklin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 261.497000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.355269, 34.223730],\n\t\t\t\t\t\t[-83.393915, 34.324801],\n\t\t\t\t\t\t[-83.398396, 34.460883],\n\t\t\t\t\t\t[-83.177838, 34.477017],\n\t\t\t\t\t\t[-83.106874, 34.534053],\n\t\t\t\t\t\t[-83.087189, 34.515939],\n\t\t\t\t\t\t[-83.072746, 34.504349],\n\t\t\t\t\t\t[-83.052161, 34.493062],\n\t\t\t\t\t\t[-83.094238, 34.415901],\n\t\t\t\t\t\t[-83.113360, 34.273530],\n\t\t\t\t\t\t[-83.172745, 34.238522],\n\t\t\t\t\t\t[-83.297317, 34.264587],\n\t\t\t\t\t\t[-83.355269, 34.223730]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08061\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"061\",\n\t\t\t\t\"NAME\": \"Kiowa\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1767.767000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-102.045211, 38.581609],\n\t\t\t\t\t\t[-102.045189, 38.558732],\n\t\t\t\t\t\t[-102.045223, 38.543797],\n\t\t\t\t\t\t[-102.045112, 38.523784],\n\t\t\t\t\t\t[-102.045262, 38.505532],\n\t\t\t\t\t\t[-102.045263, 38.505395],\n\t\t\t\t\t\t[-102.044944, 38.384419],\n\t\t\t\t\t\t[-102.044613, 38.312324],\n\t\t\t\t\t\t[-102.044568, 38.268819],\n\t\t\t\t\t\t[-102.044567, 38.268749],\n\t\t\t\t\t\t[-102.742330, 38.266971],\n\t\t\t\t\t\t[-103.399938, 38.265435],\n\t\t\t\t\t\t[-103.501764, 38.265016],\n\t\t\t\t\t\t[-103.504666, 38.516409],\n\t\t\t\t\t\t[-103.172878, 38.525315],\n\t\t\t\t\t\t[-103.172943, 38.612450],\n\t\t\t\t\t\t[-102.045288, 38.615168],\n\t\t\t\t\t\t[-102.045211, 38.581609]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08063\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"063\",\n\t\t\t\t\"NAME\": \"Kit Carson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2160.822000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-102.049806, 39.574058],\n\t\t\t\t\t\t[-102.049764, 39.568180],\n\t\t\t\t\t\t[-102.049554, 39.538932],\n\t\t\t\t\t\t[-102.049673, 39.536691],\n\t\t\t\t\t\t[-102.049679, 39.506183],\n\t\t\t\t\t\t[-102.049369, 39.423333],\n\t\t\t\t\t\t[-102.049370, 39.418210],\n\t\t\t\t\t\t[-102.049167, 39.403597],\n\t\t\t\t\t\t[-102.048960, 39.373712],\n\t\t\t\t\t\t[-102.048449, 39.303138],\n\t\t\t\t\t\t[-102.047250, 39.137020],\n\t\t\t\t\t\t[-102.047189, 39.133147],\n\t\t\t\t\t\t[-102.047134, 39.129701],\n\t\t\t\t\t\t[-102.046571, 39.047038],\n\t\t\t\t\t\t[-103.163025, 39.037610],\n\t\t\t\t\t\t[-103.154376, 39.565654],\n\t\t\t\t\t\t[-102.802932, 39.567841],\n\t\t\t\t\t\t[-102.049806, 39.574058]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08069\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"069\",\n\t\t\t\t\"NAME\": \"Larimer\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2596.002000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-105.276860, 40.998173],\n\t\t\t\t\t\t[-105.256527, 40.998191],\n\t\t\t\t\t\t[-105.254779, 40.998210],\n\t\t\t\t\t\t[-104.943371, 40.998190],\n\t\t\t\t\t\t[-104.945551, 40.349099],\n\t\t\t\t\t\t[-105.056720, 40.349281],\n\t\t\t\t\t\t[-105.055089, 40.261793],\n\t\t\t\t\t\t[-105.196476, 40.261085],\n\t\t\t\t\t\t[-105.653321, 40.260457],\n\t\t\t\t\t\t[-105.854926, 40.486252],\n\t\t\t\t\t\t[-106.057715, 40.817120],\n\t\t\t\t\t\t[-106.185307, 40.933973],\n\t\t\t\t\t\t[-106.190550, 40.998056],\n\t\t\t\t\t\t[-106.061181, 40.996999],\n\t\t\t\t\t\t[-105.730421, 40.996886],\n\t\t\t\t\t\t[-105.724804, 40.996910],\n\t\t\t\t\t\t[-105.277138, 40.998173],\n\t\t\t\t\t\t[-105.276860, 40.998173]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12089\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"089\",\n\t\t\t\t\"NAME\": \"Nassau\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 648.639000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.906014, 30.822176],\n\t\t\t\t\t\t[-81.868608, 30.792754],\n\t\t\t\t\t\t[-81.840375, 30.786384],\n\t\t\t\t\t\t[-81.827014, 30.788933],\n\t\t\t\t\t\t[-81.806652, 30.789683],\n\t\t\t\t\t\t[-81.759338, 30.771377],\n\t\t\t\t\t\t[-81.741278, 30.762681],\n\t\t\t\t\t\t[-81.732627, 30.749934],\n\t\t\t\t\t\t[-81.719927, 30.744634],\n\t\t\t\t\t\t[-81.637222, 30.733835],\n\t\t\t\t\t\t[-81.624298, 30.736194],\n\t\t\t\t\t\t[-81.606221, 30.718135],\n\t\t\t\t\t\t[-81.544618, 30.712636],\n\t\t\t\t\t\t[-81.444124, 30.709714],\n\t\t\t\t\t\t[-81.432725, 30.703017],\n\t\t\t\t\t\t[-81.427420, 30.698020],\n\t\t\t\t\t\t[-81.430843, 30.669393],\n\t\t\t\t\t\t[-81.443099, 30.600938],\n\t\t\t\t\t\t[-81.442564, 30.555189],\n\t\t\t\t\t\t[-81.434064, 30.522569],\n\t\t\t\t\t\t[-81.442784, 30.509920],\n\t\t\t\t\t\t[-81.499575, 30.563793],\n\t\t\t\t\t\t[-81.543018, 30.523889],\n\t\t\t\t\t\t[-81.624513, 30.586232],\n\t\t\t\t\t\t[-81.721630, 30.571968],\n\t\t\t\t\t\t[-81.791665, 30.505610],\n\t\t\t\t\t\t[-82.049236, 30.273432],\n\t\t\t\t\t\t[-82.050031, 30.362490],\n\t\t\t\t\t\t[-82.016103, 30.497355],\n\t\t\t\t\t\t[-82.016990, 30.519358],\n\t\t\t\t\t\t[-82.005477, 30.563495],\n\t\t\t\t\t\t[-82.013290, 30.595665],\n\t\t\t\t\t\t[-82.037609, 30.633271],\n\t\t\t\t\t\t[-82.049401, 30.655296],\n\t\t\t\t\t\t[-82.050432, 30.676266],\n\t\t\t\t\t\t[-82.023213, 30.781987],\n\t\t\t\t\t\t[-81.999836, 30.788348],\n\t\t\t\t\t\t[-81.906014, 30.822176]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12091\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"091\",\n\t\t\t\t\"NAME\": \"Okaloosa\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 930.247000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.393551, 30.493444],\n\t\t\t\t\t\t[-86.394174, 30.466740],\n\t\t\t\t\t\t[-86.395383, 30.433336],\n\t\t\t\t\t\t[-86.397325, 30.378553],\n\t\t\t\t\t\t[-86.400403, 30.378927],\n\t\t\t\t\t\t[-86.412076, 30.380346],\n\t\t\t\t\t\t[-86.429322, 30.381389],\n\t\t\t\t\t\t[-86.454731, 30.382925],\n\t\t\t\t\t\t[-86.456197, 30.383014],\n\t\t\t\t\t\t[-86.457045, 30.383065],\n\t\t\t\t\t\t[-86.470849, 30.383900],\n\t\t\t\t\t\t[-86.473990, 30.383758],\n\t\t\t\t\t\t[-86.506150, 30.382300],\n\t\t\t\t\t\t[-86.529067, 30.386896],\n\t\t\t\t\t\t[-86.632953, 30.396299],\n\t\t\t\t\t\t[-86.750906, 30.391881],\n\t\t\t\t\t\t[-86.800283, 30.386477],\n\t\t\t\t\t\t[-86.785692, 30.996977],\n\t\t\t\t\t\t[-86.728392, 30.996739],\n\t\t\t\t\t\t[-86.727293, 30.996882],\n\t\t\t\t\t\t[-86.725379, 30.996872],\n\t\t\t\t\t\t[-86.688294, 30.995029],\n\t\t\t\t\t\t[-86.678383, 30.994537],\n\t\t\t\t\t\t[-86.664681, 30.994534],\n\t\t\t\t\t\t[-86.567586, 30.995109],\n\t\t\t\t\t\t[-86.563436, 30.995223],\n\t\t\t\t\t\t[-86.519938, 30.993245],\n\t\t\t\t\t\t[-86.512834, 30.993700],\n\t\t\t\t\t\t[-86.458319, 30.993998],\n\t\t\t\t\t\t[-86.454704, 30.993791],\n\t\t\t\t\t\t[-86.404912, 30.994049],\n\t\t\t\t\t\t[-86.391937, 30.994172],\n\t\t\t\t\t\t[-86.388647, 30.994181],\n\t\t\t\t\t\t[-86.388646, 30.994181],\n\t\t\t\t\t\t[-86.393551, 30.493444]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12097\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"097\",\n\t\t\t\t\"NAME\": \"Osceola\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1327.453000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.862908, 28.347487],\n\t\t\t\t\t\t[-80.862881, 28.347439],\n\t\t\t\t\t\t[-80.862815, 28.347221],\n\t\t\t\t\t\t[-80.868881, 27.822522],\n\t\t\t\t\t\t[-80.873150, 27.642288],\n\t\t\t\t\t\t[-81.142164, 27.643238],\n\t\t\t\t\t\t[-81.131495, 27.649400],\n\t\t\t\t\t\t[-81.208124, 27.821125],\n\t\t\t\t\t\t[-81.301862, 27.862081],\n\t\t\t\t\t\t[-81.308696, 27.921880],\n\t\t\t\t\t\t[-81.378718, 28.011743],\n\t\t\t\t\t\t[-81.375467, 28.085100],\n\t\t\t\t\t\t[-81.455315, 28.085367],\n\t\t\t\t\t\t[-81.455647, 28.142894],\n\t\t\t\t\t\t[-81.524227, 28.142805],\n\t\t\t\t\t\t[-81.524083, 28.201012],\n\t\t\t\t\t\t[-81.551345, 28.249045],\n\t\t\t\t\t\t[-81.657189, 28.259217],\n\t\t\t\t\t\t[-81.657268, 28.347098],\n\t\t\t\t\t\t[-81.531837, 28.347384],\n\t\t\t\t\t\t[-81.513859, 28.347374],\n\t\t\t\t\t\t[-81.309571, 28.348051],\n\t\t\t\t\t\t[-80.862908, 28.347487]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12099\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"099\",\n\t\t\t\t\"NAME\": \"Palm Beach\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1969.763000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.116782, 26.327845],\n\t\t\t\t\t\t[-80.121329, 26.327740],\n\t\t\t\t\t\t[-80.130164, 26.327858],\n\t\t\t\t\t\t[-80.131250, 26.327821],\n\t\t\t\t\t\t[-80.134037, 26.327905],\n\t\t\t\t\t\t[-80.153770, 26.327766],\n\t\t\t\t\t\t[-80.296935, 26.334356],\n\t\t\t\t\t\t[-80.297471, 26.334356],\n\t\t\t\t\t\t[-80.881233, 26.333806],\n\t\t\t\t\t\t[-80.886099, 26.725480],\n\t\t\t\t\t\t[-80.885639, 26.958919],\n\t\t\t\t\t\t[-80.384690, 26.958382],\n\t\t\t\t\t\t[-80.374523, 26.958386],\n\t\t\t\t\t\t[-80.246728, 26.957189],\n\t\t\t\t\t\t[-80.079531, 26.970500],\n\t\t\t\t\t\t[-80.066697, 26.927579],\n\t\t\t\t\t\t[-80.046263, 26.859238],\n\t\t\t\t\t\t[-80.031362, 26.796339],\n\t\t\t\t\t\t[-80.032120, 26.771530],\n\t\t\t\t\t\t[-80.036362, 26.771240],\n\t\t\t\t\t\t[-80.037462, 26.766340],\n\t\t\t\t\t\t[-80.032862, 26.715242],\n\t\t\t\t\t\t[-80.032862, 26.700842],\n\t\t\t\t\t\t[-80.035763, 26.676043],\n\t\t\t\t\t\t[-80.035363, 26.612346],\n\t\t\t\t\t\t[-80.038863, 26.569347],\n\t\t\t\t\t\t[-80.050363, 26.509549],\n\t\t\t\t\t\t[-80.060564, 26.444652],\n\t\t\t\t\t\t[-80.070564, 26.336455],\n\t\t\t\t\t\t[-80.072264, 26.335356],\n\t\t\t\t\t\t[-80.074837, 26.321032],\n\t\t\t\t\t\t[-80.087905, 26.320756],\n\t\t\t\t\t\t[-80.088999, 26.324357],\n\t\t\t\t\t\t[-80.091929, 26.326352],\n\t\t\t\t\t\t[-80.098268, 26.322599],\n\t\t\t\t\t\t[-80.099747, 26.327668],\n\t\t\t\t\t\t[-80.116782, 26.327845]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12101\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"101\",\n\t\t\t\t\"NAME\": \"Pasco\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 746.886000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.678743, 28.433456],\n\t\t\t\t\t\t[-82.600636, 28.433910],\n\t\t\t\t\t\t[-82.253439, 28.434824],\n\t\t\t\t\t\t[-82.253293, 28.478491],\n\t\t\t\t\t\t[-82.054694, 28.478397],\n\t\t\t\t\t\t[-82.055819, 28.312794],\n\t\t\t\t\t\t[-82.106206, 28.259240],\n\t\t\t\t\t\t[-82.105853, 28.171650],\n\t\t\t\t\t\t[-82.643968, 28.173301],\n\t\t\t\t\t\t[-82.649725, 28.173314],\n\t\t\t\t\t\t[-82.651165, 28.173266],\n\t\t\t\t\t\t[-82.805097, 28.172181],\n\t\t\t\t\t\t[-82.797762, 28.187789],\n\t\t\t\t\t\t[-82.762643, 28.219013],\n\t\t\t\t\t\t[-82.764460, 28.220069],\n\t\t\t\t\t\t[-82.764103, 28.244345],\n\t\t\t\t\t\t[-82.759072, 28.254020],\n\t\t\t\t\t\t[-82.746188, 28.261192],\n\t\t\t\t\t\t[-82.732792, 28.291933],\n\t\t\t\t\t\t[-82.735463, 28.300390],\n\t\t\t\t\t\t[-82.731460, 28.325075],\n\t\t\t\t\t\t[-82.715822, 28.345501],\n\t\t\t\t\t\t[-82.706112, 28.368057],\n\t\t\t\t\t\t[-82.706322, 28.401325],\n\t\t\t\t\t\t[-82.697433, 28.420166],\n\t\t\t\t\t\t[-82.684137, 28.428019],\n\t\t\t\t\t\t[-82.678743, 28.433456]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12107\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"107\",\n\t\t\t\t\"NAME\": \"Putnam\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 727.622000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.523866, 29.631538],\n\t\t\t\t\t\t[-81.523691, 29.624995],\n\t\t\t\t\t\t[-81.523660, 29.622432],\n\t\t\t\t\t\t[-81.520596, 29.500249],\n\t\t\t\t\t\t[-81.478793, 29.399052],\n\t\t\t\t\t\t[-81.433992, 29.398552],\n\t\t\t\t\t\t[-81.450892, 29.378464],\n\t\t\t\t\t\t[-81.507989, 29.364511],\n\t\t\t\t\t\t[-81.518045, 29.361868],\n\t\t\t\t\t\t[-81.521764, 29.362194],\n\t\t\t\t\t\t[-81.540873, 29.356556],\n\t\t\t\t\t\t[-81.561194, 29.351686],\n\t\t\t\t\t\t[-81.680903, 29.324430],\n\t\t\t\t\t\t[-81.741422, 29.371049],\n\t\t\t\t\t\t[-81.776205, 29.487448],\n\t\t\t\t\t\t[-81.843009, 29.521004],\n\t\t\t\t\t\t[-82.055899, 29.471232],\n\t\t\t\t\t\t[-82.055027, 29.669608],\n\t\t\t\t\t\t[-82.050291, 29.709735],\n\t\t\t\t\t\t[-82.050829, 29.716098],\n\t\t\t\t\t\t[-82.055625, 29.718232],\n\t\t\t\t\t\t[-82.049244, 29.718670],\n\t\t\t\t\t\t[-81.939427, 29.747497],\n\t\t\t\t\t\t[-81.797218, 29.836649],\n\t\t\t\t\t\t[-81.581207, 29.840176],\n\t\t\t\t\t\t[-81.525230, 29.759497],\n\t\t\t\t\t\t[-81.523866, 29.631538]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12109\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"109\",\n\t\t\t\t\"NAME\": \"St. Johns\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 600.655000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.601212, 30.130541],\n\t\t\t\t\t\t[-81.433737, 30.106028],\n\t\t\t\t\t\t[-81.436929, 30.252335],\n\t\t\t\t\t\t[-81.379879, 30.252914],\n\t\t\t\t\t\t[-81.355591, 30.162563],\n\t\t\t\t\t\t[-81.308978, 29.969440],\n\t\t\t\t\t\t[-81.295268, 29.928614],\n\t\t\t\t\t\t[-81.288955, 29.915180],\n\t\t\t\t\t\t[-81.276540, 29.900460],\n\t\t\t\t\t\t[-81.270442, 29.883106],\n\t\t\t\t\t\t[-81.264693, 29.858212],\n\t\t\t\t\t\t[-81.263396, 29.820663],\n\t\t\t\t\t\t[-81.256711, 29.784693],\n\t\t\t\t\t\t[-81.240924, 29.739218],\n\t\t\t\t\t\t[-81.229015, 29.714693],\n\t\t\t\t\t\t[-81.212878, 29.670667],\n\t\t\t\t\t\t[-81.324059, 29.625610],\n\t\t\t\t\t\t[-81.523660, 29.622432],\n\t\t\t\t\t\t[-81.523691, 29.624995],\n\t\t\t\t\t\t[-81.523866, 29.631538],\n\t\t\t\t\t\t[-81.525230, 29.759497],\n\t\t\t\t\t\t[-81.581207, 29.840176],\n\t\t\t\t\t\t[-81.600990, 29.956017],\n\t\t\t\t\t\t[-81.688876, 30.028566],\n\t\t\t\t\t\t[-81.680215, 30.121240],\n\t\t\t\t\t\t[-81.650514, 30.121541],\n\t\t\t\t\t\t[-81.623813, 30.133641],\n\t\t\t\t\t\t[-81.601212, 30.130541]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12113\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"113\",\n\t\t\t\t\"NAME\": \"Santa Rosa\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1011.605000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.919292, 30.370675],\n\t\t\t\t\t\t[-87.232970, 30.348999],\n\t\t\t\t\t\t[-87.134400, 30.420294],\n\t\t\t\t\t\t[-87.124968, 30.500196],\n\t\t\t\t\t\t[-87.258884, 30.611281],\n\t\t\t\t\t\t[-87.269407, 30.711687],\n\t\t\t\t\t\t[-87.308502, 30.726910],\n\t\t\t\t\t\t[-87.313611, 30.847266],\n\t\t\t\t\t\t[-87.286882, 30.925441],\n\t\t\t\t\t\t[-87.163084, 30.999051],\n\t\t\t\t\t\t[-87.162614, 30.999055],\n\t\t\t\t\t\t[-87.068633, 30.999143],\n\t\t\t\t\t\t[-87.064063, 30.999191],\n\t\t\t\t\t\t[-87.053737, 30.999131],\n\t\t\t\t\t\t[-87.039989, 30.999594],\n\t\t\t\t\t\t[-87.036366, 30.999348],\n\t\t\t\t\t\t[-87.027107, 30.999255],\n\t\t\t\t\t\t[-86.888135, 30.997577],\n\t\t\t\t\t\t[-86.872989, 30.997631],\n\t\t\t\t\t\t[-86.831934, 30.997378],\n\t\t\t\t\t\t[-86.830497, 30.997401],\n\t\t\t\t\t\t[-86.785918, 30.996978],\n\t\t\t\t\t\t[-86.785692, 30.996977],\n\t\t\t\t\t\t[-86.800283, 30.386477],\n\t\t\t\t\t\t[-86.850625, 30.380967],\n\t\t\t\t\t\t[-86.909679, 30.372423],\n\t\t\t\t\t\t[-86.919292, 30.370675]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12115\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"115\",\n\t\t\t\t\"NAME\": \"Sarasota\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 555.868000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.171655, 27.032769],\n\t\t\t\t\t\t[-82.255237, 27.032975],\n\t\t\t\t\t\t[-82.255521, 26.945264],\n\t\t\t\t\t\t[-82.299896, 26.945564],\n\t\t\t\t\t\t[-82.322536, 26.945627],\n\t\t\t\t\t\t[-82.326294, 26.945846],\n\t\t\t\t\t\t[-82.339027, 26.945912],\n\t\t\t\t\t\t[-82.340238, 26.945560],\n\t\t\t\t\t\t[-82.375737, 26.946041],\n\t\t\t\t\t\t[-82.400618, 26.984937],\n\t\t\t\t\t\t[-82.419218, 27.020736],\n\t\t\t\t\t\t[-82.445718, 27.060634],\n\t\t\t\t\t\t[-82.460319, 27.099933],\n\t\t\t\t\t\t[-82.465319, 27.110732],\n\t\t\t\t\t\t[-82.468890, 27.113612],\n\t\t\t\t\t\t[-82.477019, 27.141231],\n\t\t\t\t\t\t[-82.512319, 27.207528],\n\t\t\t\t\t\t[-82.539719, 27.254326],\n\t\t\t\t\t\t[-82.545120, 27.261026],\n\t\t\t\t\t\t[-82.559020, 27.268826],\n\t\t\t\t\t\t[-82.569754, 27.279452],\n\t\t\t\t\t\t[-82.569248, 27.298588],\n\t\t\t\t\t\t[-82.576020, 27.309324],\n\t\t\t\t\t\t[-82.597629, 27.335754],\n\t\t\t\t\t\t[-82.623863, 27.362206],\n\t\t\t\t\t\t[-82.642821, 27.389720],\n\t\t\t\t\t\t[-82.642837, 27.389737],\n\t\t\t\t\t\t[-82.252264, 27.386243],\n\t\t\t\t\t\t[-82.253596, 27.208916],\n\t\t\t\t\t\t[-82.056497, 27.207769],\n\t\t\t\t\t\t[-82.057469, 27.032119],\n\t\t\t\t\t\t[-82.171655, 27.032769]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12117\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"117\",\n\t\t\t\t\"NAME\": \"Seminole\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 309.221000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.210452, 28.802453],\n\t\t\t\t\t\t[-81.195021, 28.792302],\n\t\t\t\t\t\t[-81.183198, 28.797468],\n\t\t\t\t\t\t[-81.178936, 28.781886],\n\t\t\t\t\t\t[-81.105750, 28.828541],\n\t\t\t\t\t\t[-80.987250, 28.612997],\n\t\t\t\t\t\t[-81.326991, 28.610298],\n\t\t\t\t\t\t[-81.327911, 28.611268],\n\t\t\t\t\t\t[-81.328650, 28.639334],\n\t\t\t\t\t\t[-81.331099, 28.639581],\n\t\t\t\t\t\t[-81.357965, 28.639187],\n\t\t\t\t\t\t[-81.365289, 28.640468],\n\t\t\t\t\t\t[-81.457975, 28.640336],\n\t\t\t\t\t\t[-81.459501, 28.640285],\n\t\t\t\t\t\t[-81.459695, 28.644475],\n\t\t\t\t\t\t[-81.414446, 28.784955],\n\t\t\t\t\t\t[-81.375088, 28.863366],\n\t\t\t\t\t\t[-81.376006, 28.865901],\n\t\t\t\t\t\t[-81.373491, 28.870250],\n\t\t\t\t\t\t[-81.372009, 28.869039],\n\t\t\t\t\t\t[-81.369692, 28.870536],\n\t\t\t\t\t\t[-81.368608, 28.872921],\n\t\t\t\t\t\t[-81.366705, 28.873250],\n\t\t\t\t\t\t[-81.366158, 28.874744],\n\t\t\t\t\t\t[-81.366764, 28.876619],\n\t\t\t\t\t\t[-81.367052, 28.878315],\n\t\t\t\t\t\t[-81.366940, 28.879227],\n\t\t\t\t\t\t[-81.249970, 28.833106],\n\t\t\t\t\t\t[-81.229881, 28.832621],\n\t\t\t\t\t\t[-81.226003, 28.832630],\n\t\t\t\t\t\t[-81.222874, 28.826862],\n\t\t\t\t\t\t[-81.224596, 28.822039],\n\t\t\t\t\t\t[-81.215898, 28.814423],\n\t\t\t\t\t\t[-81.216345, 28.808302],\n\t\t\t\t\t\t[-81.210452, 28.802453]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12127\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"127\",\n\t\t\t\t\"NAME\": \"Volusia\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1101.032000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.178936, 28.781886],\n\t\t\t\t\t\t[-81.183198, 28.797468],\n\t\t\t\t\t\t[-81.195021, 28.792302],\n\t\t\t\t\t\t[-81.210452, 28.802453],\n\t\t\t\t\t\t[-81.216345, 28.808302],\n\t\t\t\t\t\t[-81.215898, 28.814423],\n\t\t\t\t\t\t[-81.224596, 28.822039],\n\t\t\t\t\t\t[-81.222874, 28.826862],\n\t\t\t\t\t\t[-81.226003, 28.832630],\n\t\t\t\t\t\t[-81.229881, 28.832621],\n\t\t\t\t\t\t[-81.249970, 28.833106],\n\t\t\t\t\t\t[-81.366940, 28.879227],\n\t\t\t\t\t\t[-81.354554, 28.984375],\n\t\t\t\t\t\t[-81.502055, 29.097802],\n\t\t\t\t\t\t[-81.531262, 29.176621],\n\t\t\t\t\t\t[-81.612340, 29.202943],\n\t\t\t\t\t\t[-81.641916, 29.276766],\n\t\t\t\t\t\t[-81.648438, 29.290173],\n\t\t\t\t\t\t[-81.655677, 29.299940],\n\t\t\t\t\t\t[-81.667885, 29.301488],\n\t\t\t\t\t\t[-81.675523, 29.310628],\n\t\t\t\t\t\t[-81.680903, 29.324430],\n\t\t\t\t\t\t[-81.561194, 29.351686],\n\t\t\t\t\t\t[-81.540873, 29.356556],\n\t\t\t\t\t\t[-81.521764, 29.362194],\n\t\t\t\t\t\t[-81.518045, 29.361868],\n\t\t\t\t\t\t[-81.507989, 29.364511],\n\t\t\t\t\t\t[-81.450892, 29.378464],\n\t\t\t\t\t\t[-81.433992, 29.398552],\n\t\t\t\t\t\t[-81.417290, 29.261156],\n\t\t\t\t\t\t[-81.150081, 29.265957],\n\t\t\t\t\t\t[-81.155881, 29.410954],\n\t\t\t\t\t\t[-81.101923, 29.427055],\n\t\t\t\t\t\t[-81.046678, 29.307856],\n\t\t\t\t\t\t[-80.995423, 29.206052],\n\t\t\t\t\t\t[-80.966176, 29.147960],\n\t\t\t\t\t\t[-80.944376, 29.110861],\n\t\t\t\t\t\t[-80.907275, 29.064262],\n\t\t\t\t\t\t[-80.893675, 29.036163],\n\t\t\t\t\t\t[-80.878275, 29.010563],\n\t\t\t\t\t\t[-80.787021, 28.875266],\n\t\t\t\t\t\t[-80.732244, 28.791237],\n\t\t\t\t\t\t[-80.967895, 28.790197],\n\t\t\t\t\t\t[-80.964466, 28.612992],\n\t\t\t\t\t\t[-80.987250, 28.612997],\n\t\t\t\t\t\t[-81.105750, 28.828541],\n\t\t\t\t\t\t[-81.178936, 28.781886]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12131\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"131\",\n\t\t\t\t\"NAME\": \"Walton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1037.625000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.992736, 30.389320],\n\t\t\t\t\t\t[-85.994712, 30.311702],\n\t\t\t\t\t\t[-85.994590, 30.290853],\n\t\t\t\t\t\t[-85.996083, 30.269148],\n\t\t\t\t\t\t[-85.999937, 30.270780],\n\t\t\t\t\t\t[-86.089963, 30.303569],\n\t\t\t\t\t\t[-86.222561, 30.343585],\n\t\t\t\t\t\t[-86.298700, 30.363049],\n\t\t\t\t\t\t[-86.364175, 30.374524],\n\t\t\t\t\t\t[-86.397325, 30.378553],\n\t\t\t\t\t\t[-86.395383, 30.433336],\n\t\t\t\t\t\t[-86.394174, 30.466740],\n\t\t\t\t\t\t[-86.393551, 30.493444],\n\t\t\t\t\t\t[-86.388646, 30.994181],\n\t\t\t\t\t\t[-86.374545, 30.994474],\n\t\t\t\t\t\t[-86.369270, 30.994477],\n\t\t\t\t\t\t[-86.364907, 30.994455],\n\t\t\t\t\t\t[-86.304596, 30.994029],\n\t\t\t\t\t\t[-86.289247, 30.993798],\n\t\t\t\t\t\t[-86.187246, 30.993992],\n\t\t\t\t\t\t[-86.180232, 30.994005],\n\t\t\t\t\t\t[-86.175204, 30.993798],\n\t\t\t\t\t\t[-86.168979, 30.993706],\n\t\t\t\t\t\t[-86.162886, 30.993682],\n\t\t\t\t\t\t[-86.056213, 30.993133],\n\t\t\t\t\t\t[-86.052462, 30.993247],\n\t\t\t\t\t\t[-86.035039, 30.993320],\n\t\t\t\t\t\t[-86.037591, 30.704572],\n\t\t\t\t\t\t[-85.844421, 30.703130],\n\t\t\t\t\t\t[-85.915297, 30.636427],\n\t\t\t\t\t\t[-85.858001, 30.496905],\n\t\t\t\t\t\t[-85.992736, 30.389320]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13003\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"003\",\n\t\t\t\t\"NAME\": \"Atkinson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 339.382000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.971247, 31.183988],\n\t\t\t\t\t\t[-83.046885, 31.183680],\n\t\t\t\t\t\t[-83.033531, 31.274670],\n\t\t\t\t\t\t[-83.140483, 31.420395],\n\t\t\t\t\t\t[-82.844093, 31.403328],\n\t\t\t\t\t\t[-82.817544, 31.364486],\n\t\t\t\t\t\t[-82.628975, 31.363930],\n\t\t\t\t\t\t[-82.629622, 31.274726],\n\t\t\t\t\t\t[-82.699206, 31.278104],\n\t\t\t\t\t\t[-82.671669, 31.183739],\n\t\t\t\t\t\t[-82.971247, 31.183988]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13005\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"005\",\n\t\t\t\t\"NAME\": \"Bacon\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 258.576000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.521420, 31.710796],\n\t\t\t\t\t\t[-82.226585, 31.530699],\n\t\t\t\t\t\t[-82.344843, 31.430130],\n\t\t\t\t\t\t[-82.417246, 31.417119],\n\t\t\t\t\t\t[-82.494718, 31.468690],\n\t\t\t\t\t\t[-82.597509, 31.469293],\n\t\t\t\t\t\t[-82.627342, 31.672672],\n\t\t\t\t\t\t[-82.521393, 31.672512],\n\t\t\t\t\t\t[-82.521420, 31.710796]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13009\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"009\",\n\t\t\t\t\"NAME\": \"Baldwin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 257.844000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.159585, 33.002803],\n\t\t\t\t\t\t[-83.357685, 32.926141],\n\t\t\t\t\t\t[-83.380383, 32.998077],\n\t\t\t\t\t\t[-83.414997, 33.112833],\n\t\t\t\t\t\t[-83.429090, 33.185352],\n\t\t\t\t\t\t[-83.274108, 33.187238],\n\t\t\t\t\t\t[-83.097507, 33.151410],\n\t\t\t\t\t\t[-83.100834, 33.049849],\n\t\t\t\t\t\t[-83.052197, 33.080682],\n\t\t\t\t\t\t[-83.073648, 32.946562],\n\t\t\t\t\t\t[-83.159585, 33.002803]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13015\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"015\",\n\t\t\t\t\"NAME\": \"Bartow\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 459.544000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.005775, 34.392446],\n\t\t\t\t\t\t[-84.862863, 34.396601],\n\t\t\t\t\t\t[-84.653232, 34.412590],\n\t\t\t\t\t\t[-84.659234, 34.077999],\n\t\t\t\t\t\t[-84.672635, 34.078199],\n\t\t\t\t\t\t[-84.673935, 34.078299],\n\t\t\t\t\t\t[-84.674935, 34.078199],\n\t\t\t\t\t\t[-84.676415, 34.078298],\n\t\t\t\t\t\t[-84.682835, 34.078399],\n\t\t\t\t\t\t[-84.684745, 34.078500],\n\t\t\t\t\t\t[-84.687222, 34.078500],\n\t\t\t\t\t\t[-84.721936, 34.079099],\n\t\t\t\t\t\t[-84.722636, 34.079199],\n\t\t\t\t\t\t[-84.729235, 34.079199],\n\t\t\t\t\t\t[-84.737836, 34.079399],\n\t\t\t\t\t\t[-84.922742, 34.082497],\n\t\t\t\t\t\t[-85.046871, 34.096412],\n\t\t\t\t\t\t[-85.005775, 34.392446]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13023\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"023\",\n\t\t\t\t\"NAME\": \"Bleckley\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 215.870000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.226536, 32.584201],\n\t\t\t\t\t\t[-83.138991, 32.423069],\n\t\t\t\t\t\t[-83.173252, 32.452533],\n\t\t\t\t\t\t[-83.304750, 32.341958],\n\t\t\t\t\t\t[-83.346528, 32.272489],\n\t\t\t\t\t\t[-83.498039, 32.401715],\n\t\t\t\t\t\t[-83.482648, 32.424536],\n\t\t\t\t\t\t[-83.497923, 32.452198],\n\t\t\t\t\t\t[-83.226536, 32.584201]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13025\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"025\",\n\t\t\t\t\"NAME\": \"Brantley\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 442.362000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.936006, 31.047993],\n\t\t\t\t\t\t[-82.060870, 31.075809],\n\t\t\t\t\t\t[-82.131698, 31.010714],\n\t\t\t\t\t\t[-82.208262, 31.084768],\n\t\t\t\t\t\t[-82.208732, 31.170938],\n\t\t\t\t\t\t[-82.284561, 31.224449],\n\t\t\t\t\t\t[-82.194824, 31.207590],\n\t\t\t\t\t\t[-82.100067, 31.276710],\n\t\t\t\t\t\t[-82.006775, 31.277063],\n\t\t\t\t\t\t[-82.041129, 31.373721],\n\t\t\t\t\t\t[-81.923238, 31.345875],\n\t\t\t\t\t\t[-81.801052, 31.363737],\n\t\t\t\t\t\t[-81.731694, 31.330048],\n\t\t\t\t\t\t[-81.766322, 31.169595],\n\t\t\t\t\t\t[-81.936006, 31.047993]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13031\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"031\",\n\t\t\t\t\"NAME\": \"Bulloch\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 672.809000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.780858, 32.152890],\n\t\t\t\t\t\t[-81.816280, 32.237470],\n\t\t\t\t\t\t[-81.969069, 32.268783],\n\t\t\t\t\t\t[-81.918671, 32.415410],\n\t\t\t\t\t\t[-82.030233, 32.538770],\n\t\t\t\t\t\t[-82.026842, 32.555163],\n\t\t\t\t\t\t[-82.001236, 32.606910],\n\t\t\t\t\t\t[-81.841005, 32.649093],\n\t\t\t\t\t\t[-81.689643, 32.546290],\n\t\t\t\t\t\t[-81.548006, 32.489286],\n\t\t\t\t\t\t[-81.542716, 32.417446],\n\t\t\t\t\t\t[-81.435830, 32.241289],\n\t\t\t\t\t\t[-81.780858, 32.152890]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13037\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"037\",\n\t\t\t\t\"NAME\": \"Calhoun\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 280.367000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.546854, 31.621199],\n\t\t\t\t\t\t[-84.450416, 31.621255],\n\t\t\t\t\t\t[-84.450398, 31.621868],\n\t\t\t\t\t\t[-84.429876, 31.436661],\n\t\t\t\t\t\t[-84.637579, 31.433926],\n\t\t\t\t\t\t[-84.789032, 31.436356],\n\t\t\t\t\t\t[-84.819807, 31.501192],\n\t\t\t\t\t\t[-84.817843, 31.619771],\n\t\t\t\t\t\t[-84.546854, 31.621199]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13049\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"049\",\n\t\t\t\t\"NAME\": \"Charlton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 773.576000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.131698, 31.010714],\n\t\t\t\t\t\t[-82.060870, 31.075809],\n\t\t\t\t\t\t[-81.936006, 31.047993],\n\t\t\t\t\t\t[-81.892028, 30.960474],\n\t\t\t\t\t\t[-81.906014, 30.822176],\n\t\t\t\t\t\t[-81.999836, 30.788348],\n\t\t\t\t\t\t[-82.023213, 30.781987],\n\t\t\t\t\t\t[-82.050432, 30.676266],\n\t\t\t\t\t\t[-82.049401, 30.655296],\n\t\t\t\t\t\t[-82.037609, 30.633271],\n\t\t\t\t\t\t[-82.013290, 30.595665],\n\t\t\t\t\t\t[-82.005477, 30.563495],\n\t\t\t\t\t\t[-82.016990, 30.519358],\n\t\t\t\t\t\t[-82.016103, 30.497355],\n\t\t\t\t\t\t[-82.050031, 30.362490],\n\t\t\t\t\t\t[-82.050069, 30.362338],\n\t\t\t\t\t\t[-82.124835, 30.366564],\n\t\t\t\t\t\t[-82.165192, 30.358035],\n\t\t\t\t\t\t[-82.171508, 30.359869],\n\t\t\t\t\t\t[-82.189583, 30.376213],\n\t\t\t\t\t\t[-82.204151, 30.401330],\n\t\t\t\t\t\t[-82.210291, 30.424590],\n\t\t\t\t\t\t[-82.206040, 30.455507],\n\t\t\t\t\t\t[-82.212330, 30.499558],\n\t\t\t\t\t\t[-82.214385, 30.566958],\n\t\t\t\t\t\t[-82.214847, 30.567009],\n\t\t\t\t\t\t[-82.149872, 30.784336],\n\t\t\t\t\t\t[-82.420442, 30.795229],\n\t\t\t\t\t\t[-82.415603, 31.013590],\n\t\t\t\t\t\t[-82.131698, 31.010714]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13053\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"053\",\n\t\t\t\t\"NAME\": \"Chattahoochee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 248.736000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.923638, 32.231539],\n\t\t\t\t\t\t[-84.921650, 32.233306],\n\t\t\t\t\t\t[-84.909052, 32.263540],\n\t\t\t\t\t\t[-84.916611, 32.281177],\n\t\t\t\t\t\t[-84.938680, 32.300708],\n\t\t\t\t\t\t[-85.001874, 32.322015],\n\t\t\t\t\t\t[-85.007103, 32.328362],\n\t\t\t\t\t\t[-85.008096, 32.336677],\n\t\t\t\t\t\t[-84.987386, 32.381201],\n\t\t\t\t\t\t[-84.987278, 32.381623],\n\t\t\t\t\t\t[-84.848664, 32.414640],\n\t\t\t\t\t\t[-84.844216, 32.413248],\n\t\t\t\t\t\t[-84.834360, 32.413216],\n\t\t\t\t\t\t[-84.823992, 32.413967],\n\t\t\t\t\t\t[-84.814632, 32.414448],\n\t\t\t\t\t\t[-84.811384, 32.418608],\n\t\t\t\t\t\t[-84.809432, 32.420864],\n\t\t\t\t\t\t[-84.805175, 32.418912],\n\t\t\t\t\t\t[-84.798647, 32.415968],\n\t\t\t\t\t\t[-84.791463, 32.414783],\n\t\t\t\t\t\t[-84.788471, 32.418031],\n\t\t\t\t\t\t[-84.782983, 32.421711],\n\t\t\t\t\t\t[-84.781559, 32.422863],\n\t\t\t\t\t\t[-84.778359, 32.423054],\n\t\t\t\t\t\t[-84.774567, 32.421839],\n\t\t\t\t\t\t[-84.769431, 32.422319],\n\t\t\t\t\t\t[-84.694510, 32.518732],\n\t\t\t\t\t\t[-84.686265, 32.519624],\n\t\t\t\t\t\t[-84.678157, 32.518915],\n\t\t\t\t\t\t[-84.661721, 32.529148],\n\t\t\t\t\t\t[-84.658017, 32.528759],\n\t\t\t\t\t\t[-84.648977, 32.534956],\n\t\t\t\t\t\t[-84.637323, 32.534855],\n\t\t\t\t\t\t[-84.657325, 32.494940],\n\t\t\t\t\t\t[-84.658920, 32.232852],\n\t\t\t\t\t\t[-84.923638, 32.231539]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13057\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"057\",\n\t\t\t\t\"NAME\": \"Cherokee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 421.674000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.258075, 34.335156],\n\t\t\t\t\t\t[-84.258743, 34.185909],\n\t\t\t\t\t\t[-84.328263, 34.186144],\n\t\t\t\t\t\t[-84.418927, 34.073298],\n\t\t\t\t\t\t[-84.521992, 34.075399],\n\t\t\t\t\t\t[-84.659234, 34.077999],\n\t\t\t\t\t\t[-84.653232, 34.412590],\n\t\t\t\t\t\t[-84.582630, 34.381492],\n\t\t\t\t\t\t[-84.257586, 34.380992],\n\t\t\t\t\t\t[-84.257652, 34.375111],\n\t\t\t\t\t\t[-84.257812, 34.372631],\n\t\t\t\t\t\t[-84.258075, 34.335156]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13063\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"063\",\n\t\t\t\t\"NAME\": \"Clayton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 141.570000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.388118, 33.352465],\n\t\t\t\t\t\t[-84.381759, 33.463414],\n\t\t\t\t\t\t[-84.458665, 33.550933],\n\t\t\t\t\t\t[-84.458579, 33.556242],\n\t\t\t\t\t\t[-84.458924, 33.559759],\n\t\t\t\t\t\t[-84.458927, 33.565911],\n\t\t\t\t\t\t[-84.458630, 33.572107],\n\t\t\t\t\t\t[-84.458399, 33.572743],\n\t\t\t\t\t\t[-84.458627, 33.586456],\n\t\t\t\t\t\t[-84.458514, 33.608625],\n\t\t\t\t\t\t[-84.457726, 33.648870],\n\t\t\t\t\t\t[-84.365325, 33.647809],\n\t\t\t\t\t\t[-84.360224, 33.647909],\n\t\t\t\t\t\t[-84.350224, 33.647908],\n\t\t\t\t\t\t[-84.282619, 33.647009],\n\t\t\t\t\t\t[-84.281273, 33.647411],\n\t\t\t\t\t\t[-84.283518, 33.502514],\n\t\t\t\t\t\t[-84.353584, 33.436165],\n\t\t\t\t\t\t[-84.354400, 33.352514],\n\t\t\t\t\t\t[-84.388118, 33.352465]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US09013\",\n\t\t\t\t\"STATE\": \"09\",\n\t\t\t\t\"COUNTY\": \"013\",\n\t\t\t\t\"NAME\": \"Tolland\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 410.214000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-72.102160, 42.028962],\n\t\t\t\t\t\t[-72.099229, 41.958948],\n\t\t\t\t\t\t[-72.123632, 41.958980],\n\t\t\t\t\t\t[-72.124520, 41.959050],\n\t\t\t\t\t\t[-72.151654, 41.959302],\n\t\t\t\t\t\t[-72.216980, 41.958161],\n\t\t\t\t\t\t[-72.217719, 41.835184],\n\t\t\t\t\t\t[-72.164558, 41.834913],\n\t\t\t\t\t\t[-72.156893, 41.753818],\n\t\t\t\t\t\t[-72.156321, 41.753491],\n\t\t\t\t\t\t[-72.239559, 41.714191],\n\t\t\t\t\t\t[-72.410629, 41.601798],\n\t\t\t\t\t\t[-72.463899, 41.745572],\n\t\t\t\t\t\t[-72.517330, 41.869897],\n\t\t\t\t\t\t[-72.513630, 41.942997],\n\t\t\t\t\t\t[-72.513330, 41.945401],\n\t\t\t\t\t\t[-72.503065, 41.946608],\n\t\t\t\t\t\t[-72.492729, 41.947497],\n\t\t\t\t\t\t[-72.498928, 41.977893],\n\t\t\t\t\t\t[-72.499730, 41.984295],\n\t\t\t\t\t\t[-72.509081, 42.033539],\n\t\t\t\t\t\t[-72.509187, 42.034607],\n\t\t\t\t\t\t[-72.397428, 42.033302],\n\t\t\t\t\t\t[-72.198828, 42.030982],\n\t\t\t\t\t\t[-72.135715, 42.030245],\n\t\t\t\t\t\t[-72.135687, 42.030245],\n\t\t\t\t\t\t[-72.102160, 42.028962]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US10005\",\n\t\t\t\t\"STATE\": \"10\",\n\t\t\t\t\"COUNTY\": \"005\",\n\t\t\t\t\"NAME\": \"Sussex\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 936.079000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-75.311923, 38.945917],\n\t\t\t\t\t\t[-75.311882, 38.945698],\n\t\t\t\t\t\t[-75.311542, 38.944633],\n\t\t\t\t\t\t[-75.302552, 38.939002],\n\t\t\t\t\t\t[-75.312282, 38.924594],\n\t\t\t\t\t\t[-75.304078, 38.913160],\n\t\t\t\t\t\t[-75.263115, 38.877351],\n\t\t\t\t\t\t[-75.232029, 38.844254],\n\t\t\t\t\t\t[-75.205329, 38.823386],\n\t\t\t\t\t\t[-75.190552, 38.806861],\n\t\t\t\t\t\t[-75.160748, 38.791224],\n\t\t\t\t\t\t[-75.159022, 38.790193],\n\t\t\t\t\t\t[-75.134022, 38.782242],\n\t\t\t\t\t\t[-75.113331, 38.782998],\n\t\t\t\t\t\t[-75.097103, 38.788703],\n\t\t\t\t\t\t[-75.093654, 38.793992],\n\t\t\t\t\t\t[-75.097197, 38.803101],\n\t\t\t\t\t\t[-75.093805, 38.803812],\n\t\t\t\t\t\t[-75.089473, 38.797198],\n\t\t\t\t\t\t[-75.082153, 38.772157],\n\t\t\t\t\t\t[-75.080217, 38.750112],\n\t\t\t\t\t\t[-75.079221, 38.738238],\n\t\t\t\t\t\t[-75.065510, 38.661030],\n\t\t\t\t\t\t[-75.065217, 38.632394],\n\t\t\t\t\t\t[-75.061920, 38.608869],\n\t\t\t\t\t\t[-75.061259, 38.608602],\n\t\t\t\t\t\t[-75.060478, 38.608012],\n\t\t\t\t\t\t[-75.060032, 38.607709],\n\t\t\t\t\t\t[-75.049748, 38.486387],\n\t\t\t\t\t\t[-75.048939, 38.451263],\n\t\t\t\t\t\t[-75.049268, 38.451264],\n\t\t\t\t\t\t[-75.052510, 38.451273],\n\t\t\t\t\t\t[-75.053483, 38.451274],\n\t\t\t\t\t\t[-75.066327, 38.451291],\n\t\t\t\t\t\t[-75.069909, 38.451276],\n\t\t\t\t\t\t[-75.070356, 38.451276],\n\t\t\t\t\t\t[-75.085814, 38.451258],\n\t\t\t\t\t\t[-75.088281, 38.451256],\n\t\t\t\t\t\t[-75.089649, 38.451254],\n\t\t\t\t\t\t[-75.141894, 38.451196],\n\t\t\t\t\t\t[-75.185413, 38.451013],\n\t\t\t\t\t\t[-75.252723, 38.451397],\n\t\t\t\t\t\t[-75.260350, 38.451492],\n\t\t\t\t\t\t[-75.341247, 38.451970],\n\t\t\t\t\t\t[-75.341250, 38.451970],\n\t\t\t\t\t\t[-75.355797, 38.452008],\n\t\t\t\t\t\t[-75.371054, 38.452107],\n\t\t\t\t\t\t[-75.393563, 38.452114],\n\t\t\t\t\t\t[-75.394786, 38.452160],\n\t\t\t\t\t\t[-75.410884, 38.452400],\n\t\t\t\t\t\t[-75.424831, 38.452610],\n\t\t\t\t\t\t[-75.428728, 38.452671],\n\t\t\t\t\t\t[-75.479150, 38.453699],\n\t\t\t\t\t\t[-75.500142, 38.454144],\n\t\t\t\t\t\t[-75.502961, 38.454220],\n\t\t\t\t\t\t[-75.521304, 38.454657],\n\t\t\t\t\t\t[-75.522730, 38.454657],\n\t\t\t\t\t\t[-75.533763, 38.454958],\n\t\t\t\t\t\t[-75.559212, 38.455563],\n\t\t\t\t\t\t[-75.559934, 38.455579],\n\t\t\t\t\t\t[-75.574110, 38.455991],\n\t\t\t\t\t\t[-75.583601, 38.456424],\n\t\t\t\t\t\t[-75.589307, 38.456286],\n\t\t\t\t\t\t[-75.593082, 38.456404],\n\t\t\t\t\t\t[-75.598069, 38.456855],\n\t\t\t\t\t\t[-75.630457, 38.457904],\n\t\t\t\t\t\t[-75.662843, 38.458759],\n\t\t\t\t\t\t[-75.665585, 38.458900],\n\t\t\t\t\t\t[-75.693521, 38.460128],\n\t\t\t\t\t\t[-75.696369, 38.492373],\n\t\t\t\t\t\t[-75.696688, 38.496467],\n\t\t\t\t\t\t[-75.698777, 38.522001],\n\t\t\t\t\t\t[-75.700179, 38.542717],\n\t\t\t\t\t\t[-75.701465, 38.559433],\n\t\t\t\t\t\t[-75.701565, 38.560736],\n\t\t\t\t\t\t[-75.703445, 38.585120],\n\t\t\t\t\t\t[-75.703981, 38.592066],\n\t\t\t\t\t\t[-75.705774, 38.614740],\n\t\t\t\t\t\t[-75.705860, 38.616268],\n\t\t\t\t\t\t[-75.706235, 38.621296],\n\t\t\t\t\t\t[-75.706585, 38.626125],\n\t\t\t\t\t\t[-75.707346, 38.635280],\n\t\t\t\t\t\t[-75.707352, 38.635359],\n\t\t\t\t\t\t[-75.722028, 38.822078],\n\t\t\t\t\t\t[-75.722599, 38.829859],\n\t\t\t\t\t\t[-75.555013, 38.835649],\n\t\t\t\t\t\t[-75.381339, 38.961285],\n\t\t\t\t\t\t[-75.311923, 38.945917]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US11001\",\n\t\t\t\t\"STATE\": \"11\",\n\t\t\t\t\"COUNTY\": \"001\",\n\t\t\t\t\"NAME\": \"District of Columbia\",\n\t\t\t\t\"LSAD\": \"\",\n\t\t\t\t\"CENSUSAREA\": 61.048000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.032986, 38.839500],\n\t\t\t\t\t\t[-77.031698, 38.850512],\n\t\t\t\t\t\t[-77.040599, 38.871212],\n\t\t\t\t\t\t[-77.068199, 38.899811],\n\t\t\t\t\t\t[-77.090200, 38.904211],\n\t\t\t\t\t\t[-77.101200, 38.911111],\n\t\t\t\t\t\t[-77.119863, 38.934265],\n\t\t\t\t\t\t[-77.119900, 38.934311],\n\t\t\t\t\t\t[-77.100700, 38.948910],\n\t\t\t\t\t\t[-77.054299, 38.985110],\n\t\t\t\t\t\t[-77.040999, 38.995110],\n\t\t\t\t\t\t[-77.036299, 38.991710],\n\t\t\t\t\t\t[-77.015598, 38.975910],\n\t\t\t\t\t\t[-77.013798, 38.974410],\n\t\t\t\t\t\t[-77.008298, 38.970110],\n\t\t\t\t\t\t[-77.002636, 38.965521],\n\t\t\t\t\t\t[-77.002498, 38.965410],\n\t\t\t\t\t\t[-76.941722, 38.918019],\n\t\t\t\t\t\t[-76.909395, 38.892812],\n\t\t\t\t\t\t[-76.910795, 38.891712],\n\t\t\t\t\t\t[-76.919295, 38.885112],\n\t\t\t\t\t\t[-76.920195, 38.884412],\n\t\t\t\t\t\t[-76.949696, 38.861312],\n\t\t\t\t\t\t[-76.953696, 38.858512],\n\t\t\t\t\t\t[-77.001397, 38.821513],\n\t\t\t\t\t\t[-77.024392, 38.802970],\n\t\t\t\t\t\t[-77.038598, 38.791513],\n\t\t\t\t\t\t[-77.032986, 38.839500]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12003\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"003\",\n\t\t\t\t\"NAME\": \"Baker\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 585.231000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.050031, 30.362490],\n\t\t\t\t\t\t[-82.049236, 30.273432],\n\t\t\t\t\t\t[-82.049411, 30.186933],\n\t\t\t\t\t\t[-82.049425, 30.143136],\n\t\t\t\t\t\t[-82.142578, 30.143117],\n\t\t\t\t\t\t[-82.458364, 30.136449],\n\t\t\t\t\t\t[-82.459792, 30.584287],\n\t\t\t\t\t\t[-82.459544, 30.584272],\n\t\t\t\t\t\t[-82.418915, 30.581745],\n\t\t\t\t\t\t[-82.374844, 30.579004],\n\t\t\t\t\t\t[-82.287343, 30.573458],\n\t\t\t\t\t\t[-82.258100, 30.571559],\n\t\t\t\t\t\t[-82.249841, 30.570863],\n\t\t\t\t\t\t[-82.214847, 30.567009],\n\t\t\t\t\t\t[-82.214385, 30.566958],\n\t\t\t\t\t\t[-82.212330, 30.499558],\n\t\t\t\t\t\t[-82.206040, 30.455507],\n\t\t\t\t\t\t[-82.210291, 30.424590],\n\t\t\t\t\t\t[-82.204151, 30.401330],\n\t\t\t\t\t\t[-82.189583, 30.376213],\n\t\t\t\t\t\t[-82.171508, 30.359869],\n\t\t\t\t\t\t[-82.165192, 30.358035],\n\t\t\t\t\t\t[-82.124835, 30.366564],\n\t\t\t\t\t\t[-82.050069, 30.362338],\n\t\t\t\t\t\t[-82.050031, 30.362490]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12005\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"005\",\n\t\t\t\t\"NAME\": \"Bay\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 758.459000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.996083, 30.269148],\n\t\t\t\t\t\t[-85.994590, 30.290853],\n\t\t\t\t\t\t[-85.994712, 30.311702],\n\t\t\t\t\t\t[-85.992736, 30.389320],\n\t\t\t\t\t\t[-85.853500, 30.440623],\n\t\t\t\t\t\t[-85.487968, 30.436655],\n\t\t\t\t\t\t[-85.486358, 30.567574],\n\t\t\t\t\t\t[-85.434782, 30.567560],\n\t\t\t\t\t\t[-85.383948, 30.566856],\n\t\t\t\t\t\t[-85.389679, 30.200973],\n\t\t\t\t\t\t[-85.388374, 29.926919],\n\t\t\t\t\t\t[-85.388677, 29.924355],\n\t\t\t\t\t\t[-85.405052, 29.938487],\n\t\t\t\t\t\t[-85.425956, 29.949888],\n\t\t\t\t\t\t[-85.460488, 29.959579],\n\t\t\t\t\t\t[-85.469425, 29.957788],\n\t\t\t\t\t\t[-85.487764, 29.961227],\n\t\t\t\t\t\t[-85.509148, 29.971466],\n\t\t\t\t\t\t[-85.541176, 29.995791],\n\t\t\t\t\t\t[-85.571907, 30.026440],\n\t\t\t\t\t\t[-85.581390, 30.037783],\n\t\t\t\t\t\t[-85.588242, 30.055543],\n\t\t\t\t\t\t[-85.601178, 30.056342],\n\t\t\t\t\t\t[-85.618254, 30.065481],\n\t\t\t\t\t\t[-85.637285, 30.073319],\n\t\t\t\t\t\t[-85.653251, 30.077839],\n\t\t\t\t\t\t[-85.696810, 30.096890],\n\t\t\t\t\t\t[-85.730054, 30.118153],\n\t\t\t\t\t\t[-85.749930, 30.136537],\n\t\t\t\t\t\t[-85.775405, 30.156290],\n\t\t\t\t\t\t[-85.811219, 30.178320],\n\t\t\t\t\t\t[-85.878138, 30.215619],\n\t\t\t\t\t\t[-85.922600, 30.238024],\n\t\t\t\t\t\t[-85.996083, 30.269148]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12011\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"011\",\n\t\t\t\t\"NAME\": \"Broward\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1209.785000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.278764, 25.970968],\n\t\t\t\t\t\t[-80.295187, 25.970570],\n\t\t\t\t\t\t[-80.294972, 25.956770],\n\t\t\t\t\t\t[-80.326712, 25.957118],\n\t\t\t\t\t\t[-80.440490, 25.956861],\n\t\t\t\t\t\t[-80.680016, 25.956857],\n\t\t\t\t\t\t[-80.680038, 25.978749],\n\t\t\t\t\t\t[-80.872932, 25.979434],\n\t\t\t\t\t\t[-80.872748, 26.000370],\n\t\t\t\t\t\t[-80.879809, 26.259455],\n\t\t\t\t\t\t[-80.881233, 26.333806],\n\t\t\t\t\t\t[-80.297471, 26.334356],\n\t\t\t\t\t\t[-80.296935, 26.334356],\n\t\t\t\t\t\t[-80.153770, 26.327766],\n\t\t\t\t\t\t[-80.134037, 26.327905],\n\t\t\t\t\t\t[-80.131250, 26.327821],\n\t\t\t\t\t\t[-80.130164, 26.327858],\n\t\t\t\t\t\t[-80.121329, 26.327740],\n\t\t\t\t\t\t[-80.116782, 26.327845],\n\t\t\t\t\t\t[-80.099747, 26.327668],\n\t\t\t\t\t\t[-80.098268, 26.322599],\n\t\t\t\t\t\t[-80.091929, 26.326352],\n\t\t\t\t\t\t[-80.088999, 26.324357],\n\t\t\t\t\t\t[-80.087905, 26.320756],\n\t\t\t\t\t\t[-80.074837, 26.321032],\n\t\t\t\t\t\t[-80.075264, 26.318656],\n\t\t\t\t\t\t[-80.079865, 26.264358],\n\t\t\t\t\t\t[-80.085565, 26.249259],\n\t\t\t\t\t\t[-80.089365, 26.231859],\n\t\t\t\t\t\t[-80.101366, 26.147762],\n\t\t\t\t\t\t[-80.105266, 26.096264],\n\t\t\t\t\t\t[-80.106813, 26.092991],\n\t\t\t\t\t\t[-80.108995, 26.088372],\n\t\t\t\t\t\t[-80.109566, 26.087165],\n\t\t\t\t\t\t[-80.112334, 26.053193],\n\t\t\t\t\t\t[-80.117778, 25.986369],\n\t\t\t\t\t\t[-80.117798, 25.975152],\n\t\t\t\t\t\t[-80.118078, 25.975158],\n\t\t\t\t\t\t[-80.123874, 25.974484],\n\t\t\t\t\t\t[-80.133862, 25.974110],\n\t\t\t\t\t\t[-80.133867, 25.974868],\n\t\t\t\t\t\t[-80.142227, 25.974674],\n\t\t\t\t\t\t[-80.143501, 25.974511],\n\t\t\t\t\t\t[-80.246763, 25.971874],\n\t\t\t\t\t\t[-80.278764, 25.970968]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12015\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"015\",\n\t\t\t\t\"NAME\": \"Charlotte\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 680.279000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.375737, 26.946041],\n\t\t\t\t\t\t[-82.340238, 26.945560],\n\t\t\t\t\t\t[-82.339027, 26.945912],\n\t\t\t\t\t\t[-82.326294, 26.945846],\n\t\t\t\t\t\t[-82.322536, 26.945627],\n\t\t\t\t\t\t[-82.299896, 26.945564],\n\t\t\t\t\t\t[-82.255521, 26.945264],\n\t\t\t\t\t\t[-82.255237, 27.032975],\n\t\t\t\t\t\t[-82.171655, 27.032769],\n\t\t\t\t\t\t[-82.057469, 27.032119],\n\t\t\t\t\t\t[-81.562202, 27.033836],\n\t\t\t\t\t\t[-81.565931, 26.769552],\n\t\t\t\t\t\t[-82.062029, 26.770439],\n\t\t\t\t\t\t[-82.061401, 26.774279],\n\t\t\t\t\t\t[-82.061401, 26.789228],\n\t\t\t\t\t\t[-82.055076, 26.802452],\n\t\t\t\t\t\t[-82.057951, 26.822000],\n\t\t\t\t\t\t[-82.058526, 26.838674],\n\t\t\t\t\t\t[-82.056801, 26.858797],\n\t\t\t\t\t\t[-82.059101, 26.876621],\n\t\t\t\t\t\t[-82.066575, 26.882370],\n\t\t\t\t\t\t[-82.090723, 26.888694],\n\t\t\t\t\t\t[-82.093023, 26.906518],\n\t\t\t\t\t\t[-82.090148, 26.923191],\n\t\t\t\t\t\t[-82.083249, 26.927791],\n\t\t\t\t\t\t[-82.067725, 26.927791],\n\t\t\t\t\t\t[-82.061976, 26.931241],\n\t\t\t\t\t\t[-82.061401, 26.938715],\n\t\t\t\t\t\t[-82.063126, 26.950214],\n\t\t\t\t\t\t[-82.076349, 26.958263],\n\t\t\t\t\t\t[-82.107972, 26.957688],\n\t\t\t\t\t\t[-82.113039, 26.955788],\n\t\t\t\t\t\t[-82.117171, 26.954239],\n\t\t\t\t\t\t[-82.124645, 26.945615],\n\t\t\t\t\t\t[-82.137294, 26.926066],\n\t\t\t\t\t\t[-82.162017, 26.925491],\n\t\t\t\t\t\t[-82.169491, 26.923191],\n\t\t\t\t\t\t[-82.175241, 26.916867],\n\t\t\t\t\t\t[-82.172941, 26.897319],\n\t\t\t\t\t\t[-82.156267, 26.851898],\n\t\t\t\t\t\t[-82.147068, 26.789803],\n\t\t\t\t\t\t[-82.151093, 26.783479],\n\t\t\t\t\t\t[-82.172941, 26.778879],\n\t\t\t\t\t\t[-82.178690, 26.772555],\n\t\t\t\t\t\t[-82.209329, 26.772146],\n\t\t\t\t\t\t[-82.221812, 26.771980],\n\t\t\t\t\t\t[-82.232193, 26.782880],\n\t\t\t\t\t\t[-82.233311, 26.784054],\n\t\t\t\t\t\t[-82.234019, 26.783251],\n\t\t\t\t\t\t[-82.241935, 26.774279],\n\t\t\t\t\t\t[-82.251134, 26.755881],\n\t\t\t\t\t\t[-82.259867, 26.717398],\n\t\t\t\t\t\t[-82.263804, 26.725644],\n\t\t\t\t\t\t[-82.264682, 26.756836],\n\t\t\t\t\t\t[-82.269499, 26.784674],\n\t\t\t\t\t\t[-82.271699, 26.789516],\n\t\t\t\t\t\t[-82.281552, 26.811203],\n\t\t\t\t\t\t[-82.289086, 26.827784],\n\t\t\t\t\t\t[-82.301736, 26.841588],\n\t\t\t\t\t\t[-82.351649, 26.908384],\n\t\t\t\t\t\t[-82.375737, 26.946041]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12071\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"071\",\n\t\t\t\t\"NAME\": \"Lee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 784.513000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-82.255777, 26.703437],\n\t\t\t\t\t\t\t[-82.255159, 26.708160],\n\t\t\t\t\t\t\t[-82.246535, 26.706435],\n\t\t\t\t\t\t\t[-82.242510, 26.694361],\n\t\t\t\t\t\t\t[-82.245960, 26.688612],\n\t\t\t\t\t\t\t[-82.246535, 26.683437],\n\t\t\t\t\t\t\t[-82.237440, 26.661976],\n\t\t\t\t\t\t\t[-82.218342, 26.626407],\n\t\t\t\t\t\t\t[-82.214337, 26.602944],\n\t\t\t\t\t\t\t[-82.196514, 26.559823],\n\t\t\t\t\t\t\t[-82.187315, 26.527626],\n\t\t\t\t\t\t\t[-82.177541, 26.502328],\n\t\t\t\t\t\t\t[-82.166042, 26.489679],\n\t\t\t\t\t\t\t[-82.149368, 26.477605],\n\t\t\t\t\t\t\t[-82.131545, 26.477030],\n\t\t\t\t\t\t\t[-82.120046, 26.473581],\n\t\t\t\t\t\t\t[-82.088423, 26.455182],\n\t\t\t\t\t\t\t[-82.076924, 26.466106],\n\t\t\t\t\t\t\t[-82.062551, 26.470131],\n\t\t\t\t\t\t\t[-82.038403, 26.456907],\n\t\t\t\t\t\t\t[-82.015607, 26.454858],\n\t\t\t\t\t\t\t[-82.013713, 26.454258],\n\t\t\t\t\t\t\t[-82.013913, 26.452058],\n\t\t\t\t\t\t\t[-82.063114, 26.425459],\n\t\t\t\t\t\t\t[-82.075015, 26.422059],\n\t\t\t\t\t\t\t[-82.082915, 26.422059],\n\t\t\t\t\t\t\t[-82.098115, 26.424959],\n\t\t\t\t\t\t\t[-82.126671, 26.436279],\n\t\t\t\t\t\t\t[-82.148716, 26.455458],\n\t\t\t\t\t\t\t[-82.172917, 26.467658],\n\t\t\t\t\t\t\t[-82.177017, 26.471558],\n\t\t\t\t\t\t\t[-82.180717, 26.476257],\n\t\t\t\t\t\t\t[-82.186441, 26.489221],\n\t\t\t\t\t\t\t[-82.201402, 26.556310],\n\t\t\t\t\t\t\t[-82.205523, 26.566536],\n\t\t\t\t\t\t\t[-82.222131, 26.590402],\n\t\t\t\t\t\t\t[-82.238872, 26.636433],\n\t\t\t\t\t\t\t[-82.248659, 26.654337],\n\t\t\t\t\t\t\t[-82.263008, 26.673388],\n\t\t\t\t\t\t\t[-82.268007, 26.682791],\n\t\t\t\t\t\t\t[-82.264351, 26.698496],\n\t\t\t\t\t\t\t[-82.255777, 26.703437]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-81.690494, 26.317334],\n\t\t\t\t\t\t\t[-81.845834, 26.330378],\n\t\t\t\t\t\t\t[-81.868983, 26.378648],\n\t\t\t\t\t\t\t[-81.901910, 26.410859],\n\t\t\t\t\t\t\t[-81.902710, 26.416159],\n\t\t\t\t\t\t\t[-81.911710, 26.427158],\n\t\t\t\t\t\t\t[-81.923611, 26.436658],\n\t\t\t\t\t\t\t[-81.938411, 26.445058],\n\t\t\t\t\t\t\t[-81.956611, 26.452358],\n\t\t\t\t\t\t\t[-81.964212, 26.457957],\n\t\t\t\t\t\t\t[-81.967112, 26.462857],\n\t\t\t\t\t\t\t[-81.966212, 26.465057],\n\t\t\t\t\t\t\t[-81.969509, 26.476505],\n\t\t\t\t\t\t\t[-81.980712, 26.480957],\n\t\t\t\t\t\t\t[-81.997012, 26.484856],\n\t\t\t\t\t\t\t[-82.008961, 26.484052],\n\t\t\t\t\t\t\t[-82.013680, 26.490829],\n\t\t\t\t\t\t\t[-82.009080, 26.505203],\n\t\t\t\t\t\t\t[-82.024604, 26.512677],\n\t\t\t\t\t\t\t[-82.043577, 26.519577],\n\t\t\t\t\t\t\t[-82.067150, 26.513252],\n\t\t\t\t\t\t\t[-82.071750, 26.492554],\n\t\t\t\t\t\t\t[-82.094748, 26.483930],\n\t\t\t\t\t\t\t[-82.105672, 26.483930],\n\t\t\t\t\t\t\t[-82.111996, 26.540850],\n\t\t\t\t\t\t\t[-82.118896, 26.560973],\n\t\t\t\t\t\t\t[-82.122345, 26.579371],\n\t\t\t\t\t\t\t[-82.137869, 26.637441],\n\t\t\t\t\t\t\t[-82.149943, 26.654115],\n\t\t\t\t\t\t\t[-82.181565, 26.681712],\n\t\t\t\t\t\t\t[-82.179840, 26.696661],\n\t\t\t\t\t\t\t[-82.173516, 26.701836],\n\t\t\t\t\t\t\t[-82.151668, 26.704136],\n\t\t\t\t\t\t\t[-82.139019, 26.702986],\n\t\t\t\t\t\t\t[-82.125795, 26.699536],\n\t\t\t\t\t\t\t[-82.118896, 26.690912],\n\t\t\t\t\t\t\t[-82.106247, 26.667339],\n\t\t\t\t\t\t\t[-82.099922, 26.662739],\n\t\t\t\t\t\t\t[-82.093023, 26.665614],\n\t\t\t\t\t\t\t[-82.086698, 26.685162],\n\t\t\t\t\t\t\t[-82.084974, 26.702411],\n\t\t\t\t\t\t\t[-82.079799, 26.716784],\n\t\t\t\t\t\t\t[-82.066575, 26.742657],\n\t\t\t\t\t\t\t[-82.062029, 26.770439],\n\t\t\t\t\t\t\t[-81.565931, 26.769552],\n\t\t\t\t\t\t\t[-81.563763, 26.513324],\n\t\t\t\t\t\t\t[-81.562180, 26.422625],\n\t\t\t\t\t\t\t[-81.659506, 26.421077],\n\t\t\t\t\t\t\t[-81.690494, 26.317334]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12079\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"079\",\n\t\t\t\t\"NAME\": \"Madison\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 695.948000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.309455, 30.634417],\n\t\t\t\t\t\t[-83.309250, 30.634405],\n\t\t\t\t\t\t[-83.272612, 30.627687],\n\t\t\t\t\t\t[-83.243766, 30.473132],\n\t\t\t\t\t\t[-83.170969, 30.385225],\n\t\t\t\t\t\t[-83.247253, 30.260670],\n\t\t\t\t\t\t[-83.249862, 30.260353],\n\t\t\t\t\t\t[-83.367260, 30.260440],\n\t\t\t\t\t\t[-83.469267, 30.260351],\n\t\t\t\t\t\t[-83.468768, 30.304212],\n\t\t\t\t\t\t[-83.820235, 30.303540],\n\t\t\t\t\t\t[-83.806667, 30.371689],\n\t\t\t\t\t\t[-83.721720, 30.434354],\n\t\t\t\t\t\t[-83.731107, 30.492315],\n\t\t\t\t\t\t[-83.604186, 30.581916],\n\t\t\t\t\t\t[-83.611720, 30.651258],\n\t\t\t\t\t\t[-83.611667, 30.651255],\n\t\t\t\t\t\t[-83.448895, 30.642410],\n\t\t\t\t\t\t[-83.440021, 30.642023],\n\t\t\t\t\t\t[-83.429584, 30.641496],\n\t\t\t\t\t\t[-83.429477, 30.641519],\n\t\t\t\t\t\t[-83.390062, 30.639333],\n\t\t\t\t\t\t[-83.379460, 30.638680],\n\t\t\t\t\t\t[-83.357703, 30.637359],\n\t\t\t\t\t\t[-83.341011, 30.636346],\n\t\t\t\t\t\t[-83.340852, 30.636336],\n\t\t\t\t\t\t[-83.311647, 30.634577],\n\t\t\t\t\t\t[-83.309455, 30.634417]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12081\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"081\",\n\t\t\t\t\"NAME\": \"Manatee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 742.931000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.642837, 27.389737],\n\t\t\t\t\t\t[-82.675121, 27.424318],\n\t\t\t\t\t\t[-82.691821, 27.437218],\n\t\t\t\t\t\t[-82.691004, 27.444331],\n\t\t\t\t\t\t[-82.707821, 27.487615],\n\t\t\t\t\t\t[-82.714521, 27.500415],\n\t\t\t\t\t\t[-82.724522, 27.513614],\n\t\t\t\t\t\t[-82.743017, 27.531086],\n\t\t\t\t\t\t[-82.745748, 27.538834],\n\t\t\t\t\t\t[-82.742437, 27.539360],\n\t\t\t\t\t\t[-82.708121, 27.523514],\n\t\t\t\t\t\t[-82.710621, 27.501715],\n\t\t\t\t\t\t[-82.706821, 27.498415],\n\t\t\t\t\t\t[-82.690421, 27.496415],\n\t\t\t\t\t\t[-82.686421, 27.497215],\n\t\t\t\t\t\t[-82.686921, 27.508015],\n\t\t\t\t\t\t[-82.683621, 27.513115],\n\t\t\t\t\t\t[-82.674621, 27.519614],\n\t\t\t\t\t\t[-82.662020, 27.522814],\n\t\t\t\t\t\t[-82.650720, 27.523115],\n\t\t\t\t\t\t[-82.646014, 27.533540],\n\t\t\t\t\t\t[-82.632053, 27.551908],\n\t\t\t\t\t\t[-82.612019, 27.571231],\n\t\t\t\t\t\t[-82.613003, 27.582837],\n\t\t\t\t\t\t[-82.612749, 27.583319],\n\t\t\t\t\t\t[-82.611717, 27.585283],\n\t\t\t\t\t\t[-82.596488, 27.594045],\n\t\t\t\t\t\t[-82.584629, 27.596021],\n\t\t\t\t\t\t[-82.570607, 27.608882],\n\t\t\t\t\t\t[-82.565667, 27.615713],\n\t\t\t\t\t\t[-82.558538, 27.638678],\n\t\t\t\t\t\t[-82.554499, 27.645145],\n\t\t\t\t\t\t[-82.549548, 27.645557],\n\t\t\t\t\t\t[-82.524947, 27.645422],\n\t\t\t\t\t\t[-82.524750, 27.645422],\n\t\t\t\t\t\t[-82.054349, 27.646382],\n\t\t\t\t\t\t[-82.055753, 27.338264],\n\t\t\t\t\t\t[-82.056497, 27.207769],\n\t\t\t\t\t\t[-82.253596, 27.208916],\n\t\t\t\t\t\t[-82.252264, 27.386243],\n\t\t\t\t\t\t[-82.642837, 27.389737]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US02275\",\n\t\t\t\t\"STATE\": \"02\",\n\t\t\t\t\"COUNTY\": \"275\",\n\t\t\t\t\"NAME\": \"Wrangell\",\n\t\t\t\t\"LSAD\": \"Cty&Bor\",\n\t\t\t\t\"CENSUSAREA\": 2541.483000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-132.199549, 55.638593],\n\t\t\t\t\t\t\t[-132.215409, 55.682270],\n\t\t\t\t\t\t\t[-132.224167, 55.701766],\n\t\t\t\t\t\t\t[-132.237532, 55.711347],\n\t\t\t\t\t\t\t[-132.260119, 55.732293],\n\t\t\t\t\t\t\t[-132.283594, 55.761774],\n\t\t\t\t\t\t\t[-132.280431, 55.765599],\n\t\t\t\t\t\t\t[-132.265071, 55.762174],\n\t\t\t\t\t\t\t[-132.251732, 55.756247],\n\t\t\t\t\t\t\t[-132.229647, 55.740488],\n\t\t\t\t\t\t\t[-132.206951, 55.736987],\n\t\t\t\t\t\t\t[-132.190479, 55.742501],\n\t\t\t\t\t\t\t[-132.185478, 55.753161],\n\t\t\t\t\t\t\t[-132.184982, 55.778776],\n\t\t\t\t\t\t\t[-132.187494, 55.785595],\n\t\t\t\t\t\t\t[-132.183163, 55.800830],\n\t\t\t\t\t\t\t[-132.130413, 55.811419],\n\t\t\t\t\t\t\t[-132.113361, 55.812718],\n\t\t\t\t\t\t\t[-132.086050, 55.832436],\n\t\t\t\t\t\t\t[-132.067412, 55.875078],\n\t\t\t\t\t\t\t[-132.041795, 55.958795],\n\t\t\t\t\t\t\t[-132.070340, 56.046733],\n\t\t\t\t\t\t\t[-132.038364, 56.091297],\n\t\t\t\t\t\t\t[-132.033368, 56.095572],\n\t\t\t\t\t\t\t[-132.011297, 56.077359],\n\t\t\t\t\t\t\t[-131.970294, 56.114042],\n\t\t\t\t\t\t\t[-131.935728, 56.177207],\n\t\t\t\t\t\t\t[-131.943402, 56.192557],\n\t\t\t\t\t\t\t[-131.958838, 56.194762],\n\t\t\t\t\t\t\t[-131.993894, 56.193351],\n\t\t\t\t\t\t\t[-132.018130, 56.183155],\n\t\t\t\t\t\t\t[-132.034849, 56.133432],\n\t\t\t\t\t\t\t[-132.060993, 56.129355],\n\t\t\t\t\t\t\t[-132.104020, 56.108109],\n\t\t\t\t\t\t\t[-132.176955, 56.055706],\n\t\t\t\t\t\t\t[-132.129697, 55.957855],\n\t\t\t\t\t\t\t[-132.135474, 55.941626],\n\t\t\t\t\t\t\t[-132.159064, 55.922560],\n\t\t\t\t\t\t\t[-132.170198, 55.919231],\n\t\t\t\t\t\t\t[-132.191893, 55.921717],\n\t\t\t\t\t\t\t[-132.224241, 55.930421],\n\t\t\t\t\t\t\t[-132.279962, 55.924839],\n\t\t\t\t\t\t\t[-132.320487, 55.887648],\n\t\t\t\t\t\t\t[-132.319799, 55.874347],\n\t\t\t\t\t\t\t[-132.309306, 55.865059],\n\t\t\t\t\t\t\t[-132.309949, 55.862301],\n\t\t\t\t\t\t\t[-132.323242, 55.851878],\n\t\t\t\t\t\t\t[-132.372298, 55.850359],\n\t\t\t\t\t\t\t[-132.376518, 55.853377],\n\t\t\t\t\t\t\t[-132.397304, 55.878867],\n\t\t\t\t\t\t\t[-132.398349, 55.884052],\n\t\t\t\t\t\t\t[-132.397080, 55.905546],\n\t\t\t\t\t\t\t[-132.401192, 55.950467],\n\t\t\t\t\t\t\t[-132.446166, 56.018666],\n\t\t\t\t\t\t\t[-132.492795, 56.066436],\n\t\t\t\t\t\t\t[-132.522076, 56.077035],\n\t\t\t\t\t\t\t[-132.573677, 56.070700],\n\t\t\t\t\t\t\t[-132.621793, 56.056140],\n\t\t\t\t\t\t\t[-132.621492, 56.049174],\n\t\t\t\t\t\t\t[-132.629155, 56.037425],\n\t\t\t\t\t\t\t[-132.640079, 56.033194],\n\t\t\t\t\t\t\t[-132.684620, 56.082323],\n\t\t\t\t\t\t\t[-132.708697, 56.112124],\n\t\t\t\t\t\t\t[-132.723396, 56.145814],\n\t\t\t\t\t\t\t[-132.718342, 56.217704],\n\t\t\t\t\t\t\t[-132.689888, 56.238744],\n\t\t\t\t\t\t\t[-132.672471, 56.239439],\n\t\t\t\t\t\t\t[-132.664212, 56.236332],\n\t\t\t\t\t\t\t[-132.644250, 56.232807],\n\t\t\t\t\t\t\t[-132.615797, 56.234172],\n\t\t\t\t\t\t\t[-132.601495, 56.240065],\n\t\t\t\t\t\t\t[-132.582070, 56.278816],\n\t\t\t\t\t\t\t[-132.582033, 56.285456],\n\t\t\t\t\t\t\t[-132.575023, 56.296468],\n\t\t\t\t\t\t\t[-132.543076, 56.332276],\n\t\t\t\t\t\t\t[-132.529360, 56.338555],\n\t\t\t\t\t\t\t[-132.441839, 56.353983],\n\t\t\t\t\t\t\t[-132.431631, 56.352163],\n\t\t\t\t\t\t\t[-132.422041, 56.349341],\n\t\t\t\t\t\t\t[-132.403678, 56.334811],\n\t\t\t\t\t\t\t[-132.381766, 56.310756],\n\t\t\t\t\t\t\t[-132.380574, 56.307785],\n\t\t\t\t\t\t\t[-132.382793, 56.299203],\n\t\t\t\t\t\t\t[-132.363966, 56.287126],\n\t\t\t\t\t\t\t[-132.358710, 56.290800],\n\t\t\t\t\t\t\t[-132.349149, 56.304456],\n\t\t\t\t\t\t\t[-132.340678, 56.341754],\n\t\t\t\t\t\t\t[-132.361132, 56.380627],\n\t\t\t\t\t\t\t[-132.394268, 56.485579],\n\t\t\t\t\t\t\t[-132.389380, 56.491367],\n\t\t\t\t\t\t\t[-132.382379, 56.491972],\n\t\t\t\t\t\t\t[-132.362556, 56.487904],\n\t\t\t\t\t\t\t[-132.253393, 56.449539],\n\t\t\t\t\t\t\t[-132.245479, 56.441215],\n\t\t\t\t\t\t\t[-132.233927, 56.416736],\n\t\t\t\t\t\t\t[-132.242000, 56.413660],\n\t\t\t\t\t\t\t[-132.238473, 56.398706],\n\t\t\t\t\t\t\t[-132.223136, 56.384017],\n\t\t\t\t\t\t\t[-132.204367, 56.372086],\n\t\t\t\t\t\t\t[-132.199269, 56.371054],\n\t\t\t\t\t\t\t[-132.181158, 56.387128],\n\t\t\t\t\t\t\t[-132.179350, 56.390823],\n\t\t\t\t\t\t\t[-132.181647, 56.399336],\n\t\t\t\t\t\t\t[-132.208568, 56.457125],\n\t\t\t\t\t\t\t[-132.239043, 56.476671],\n\t\t\t\t\t\t\t[-132.259611, 56.487630],\n\t\t\t\t\t\t\t[-132.279753, 56.485881],\n\t\t\t\t\t\t\t[-132.290475, 56.487017],\n\t\t\t\t\t\t\t[-132.357564, 56.529008],\n\t\t\t\t\t\t\t[-132.361293, 56.534232],\n\t\t\t\t\t\t\t[-132.367088, 56.574578],\n\t\t\t\t\t\t\t[-132.363836, 56.588613],\n\t\t\t\t\t\t\t[-132.358410, 56.595266],\n\t\t\t\t\t\t\t[-132.319303, 56.607116],\n\t\t\t\t\t\t\t[-132.297288, 56.629819],\n\t\t\t\t\t\t\t[-132.284216, 56.636699],\n\t\t\t\t\t\t\t[-132.280089, 56.651834],\n\t\t\t\t\t\t\t[-132.281464, 56.665593],\n\t\t\t\t\t\t\t[-132.298664, 56.677977],\n\t\t\t\t\t\t\t[-132.313799, 56.676601],\n\t\t\t\t\t\t\t[-132.324807, 56.673849],\n\t\t\t\t\t\t\t[-132.348886, 56.664217],\n\t\t\t\t\t\t\t[-132.371589, 56.672473],\n\t\t\t\t\t\t\t[-132.389476, 56.672473],\n\t\t\t\t\t\t\t[-132.403923, 56.669721],\n\t\t\t\t\t\t\t[-132.452081, 56.672473],\n\t\t\t\t\t\t\t[-132.467904, 56.680729],\n\t\t\t\t\t\t\t[-132.528446, 56.702056],\n\t\t\t\t\t\t\t[-132.522398, 56.716256],\n\t\t\t\t\t\t\t[-132.322505, 56.738582],\n\t\t\t\t\t\t\t[-132.234041, 56.881504],\n\t\t\t\t\t\t\t[-132.080112, 56.924153],\n\t\t\t\t\t\t\t[-132.005107, 56.842920],\n\t\t\t\t\t\t\t[-131.936582, 56.817425],\n\t\t\t\t\t\t\t[-131.886500, 56.776083],\n\t\t\t\t\t\t\t[-131.818813, 56.664694],\n\t\t\t\t\t\t\t[-131.736007, 56.613170],\n\t\t\t\t\t\t\t[-131.581221, 56.613275],\n\t\t\t\t\t\t\t[-131.428413, 56.537135],\n\t\t\t\t\t\t\t[-131.167925, 56.448361],\n\t\t\t\t\t\t\t[-131.087433, 56.407420],\n\t\t\t\t\t\t\t[-131.096230, 56.335166],\n\t\t\t\t\t\t\t[-130.998654, 56.274041],\n\t\t\t\t\t\t\t[-131.106699, 56.195124],\n\t\t\t\t\t\t\t[-131.238566, 56.170968],\n\t\t\t\t\t\t\t[-131.253358, 56.206850],\n\t\t\t\t\t\t\t[-131.437095, 56.140004],\n\t\t\t\t\t\t\t[-131.369226, 56.069910],\n\t\t\t\t\t\t\t[-131.371853, 56.013252],\n\t\t\t\t\t\t\t[-131.498849, 56.019097],\n\t\t\t\t\t\t\t[-131.653403, 56.103851],\n\t\t\t\t\t\t\t[-131.692693, 56.050604],\n\t\t\t\t\t\t\t[-131.829608, 56.056307],\n\t\t\t\t\t\t\t[-131.904613, 55.972972],\n\t\t\t\t\t\t\t[-131.871938, 55.948883],\n\t\t\t\t\t\t\t[-132.011037, 55.854788],\n\t\t\t\t\t\t\t[-131.935635, 55.798431],\n\t\t\t\t\t\t\t[-131.962744, 55.700757],\n\t\t\t\t\t\t\t[-132.058825, 55.710930],\n\t\t\t\t\t\t\t[-132.091178, 55.660703],\n\t\t\t\t\t\t\t[-132.199549, 55.638593]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-132.977163, 56.439673],\n\t\t\t\t\t\t\t[-132.957364, 56.448963],\n\t\t\t\t\t\t\t[-132.927663, 56.456859],\n\t\t\t\t\t\t\t[-132.896342, 56.457978],\n\t\t\t\t\t\t\t[-132.871919, 56.457038],\n\t\t\t\t\t\t\t[-132.843184, 56.444827],\n\t\t\t\t\t\t\t[-132.819256, 56.439511],\n\t\t\t\t\t\t\t[-132.808145, 56.440801],\n\t\t\t\t\t\t\t[-132.791872, 56.449169],\n\t\t\t\t\t\t\t[-132.782864, 56.451530],\n\t\t\t\t\t\t\t[-132.734466, 56.458515],\n\t\t\t\t\t\t\t[-132.716056, 56.454861],\n\t\t\t\t\t\t\t[-132.668127, 56.440279],\n\t\t\t\t\t\t\t[-132.634335, 56.422174],\n\t\t\t\t\t\t\t[-132.628592, 56.416284],\n\t\t\t\t\t\t\t[-132.620608, 56.391200],\n\t\t\t\t\t\t\t[-132.652380, 56.375879],\n\t\t\t\t\t\t\t[-132.662178, 56.369134],\n\t\t\t\t\t\t\t[-132.679401, 56.354299],\n\t\t\t\t\t\t\t[-132.684112, 56.345671],\n\t\t\t\t\t\t\t[-132.676553, 56.333105],\n\t\t\t\t\t\t\t[-132.662478, 56.320451],\n\t\t\t\t\t\t\t[-132.655467, 56.303756],\n\t\t\t\t\t\t\t[-132.655513, 56.295575],\n\t\t\t\t\t\t\t[-132.662081, 56.274795],\n\t\t\t\t\t\t\t[-132.721254, 56.258464],\n\t\t\t\t\t\t\t[-132.776045, 56.254585],\n\t\t\t\t\t\t\t[-132.843716, 56.238933],\n\t\t\t\t\t\t\t[-132.877582, 56.240322],\n\t\t\t\t\t\t\t[-133.010587, 56.309492],\n\t\t\t\t\t\t\t[-133.045383, 56.320783],\n\t\t\t\t\t\t\t[-133.067556, 56.333573],\n\t\t\t\t\t\t\t[-133.070863, 56.354194],\n\t\t\t\t\t\t\t[-133.069441, 56.356426],\n\t\t\t\t\t\t\t[-133.060361, 56.358378],\n\t\t\t\t\t\t\t[-133.045714, 56.371451],\n\t\t\t\t\t\t\t[-133.006575, 56.415881],\n\t\t\t\t\t\t\t[-133.006314, 56.417778],\n\t\t\t\t\t\t\t[-133.010871, 56.421404],\n\t\t\t\t\t\t\t[-133.010817, 56.424264],\n\t\t\t\t\t\t\t[-133.002357, 56.430655],\n\t\t\t\t\t\t\t[-132.977163, 56.439673]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08085\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"085\",\n\t\t\t\t\"NAME\": \"Montrose\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2240.695000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-109.042062, 38.155490],\n\t\t\t\t\t\t[-109.060062, 38.275489],\n\t\t\t\t\t\t[-109.059962, 38.499987],\n\t\t\t\t\t\t[-108.379136, 38.499987],\n\t\t\t\t\t\t[-108.378698, 38.668097],\n\t\t\t\t\t\t[-107.500655, 38.668553],\n\t\t\t\t\t\t[-107.500020, 38.301926],\n\t\t\t\t\t\t[-107.635040, 38.301896],\n\t\t\t\t\t\t[-107.635697, 38.332148],\n\t\t\t\t\t\t[-108.132380, 38.331573],\n\t\t\t\t\t\t[-108.086604, 38.255202],\n\t\t\t\t\t\t[-107.937588, 38.218992],\n\t\t\t\t\t\t[-107.965789, 38.152328],\n\t\t\t\t\t\t[-109.042074, 38.153023],\n\t\t\t\t\t\t[-109.042062, 38.155490]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12017\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"017\",\n\t\t\t\t\"NAME\": \"Citrus\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 581.696000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.535591, 29.044855],\n\t\t\t\t\t\t[-82.426997, 29.021385],\n\t\t\t\t\t\t[-82.311697, 28.960391],\n\t\t\t\t\t\t[-82.170848, 28.790190],\n\t\t\t\t\t\t[-82.263052, 28.667634],\n\t\t\t\t\t\t[-82.417684, 28.665897],\n\t\t\t\t\t\t[-82.418353, 28.694859],\n\t\t\t\t\t\t[-82.646411, 28.694434],\n\t\t\t\t\t\t[-82.645482, 28.697553],\n\t\t\t\t\t\t[-82.652926, 28.705618],\n\t\t\t\t\t\t[-82.656028, 28.712443],\n\t\t\t\t\t\t[-82.652926, 28.719267],\n\t\t\t\t\t\t[-82.656028, 28.727952],\n\t\t\t\t\t\t[-82.662232, 28.737258],\n\t\t\t\t\t\t[-82.651065, 28.747184],\n\t\t\t\t\t\t[-82.645482, 28.767037],\n\t\t\t\t\t\t[-82.643000, 28.782546],\n\t\t\t\t\t\t[-82.643000, 28.789991],\n\t\t\t\t\t\t[-82.648584, 28.796195],\n\t\t\t\t\t\t[-82.650445, 28.804880],\n\t\t\t\t\t\t[-82.652926, 28.830936],\n\t\t\t\t\t\t[-82.638657, 28.843344],\n\t\t\t\t\t\t[-82.643000, 28.860094],\n\t\t\t\t\t\t[-82.639898, 28.876224],\n\t\t\t\t\t\t[-82.644861, 28.889252],\n\t\t\t\t\t\t[-82.656028, 28.899179],\n\t\t\t\t\t\t[-82.673399, 28.900419],\n\t\t\t\t\t\t[-82.688864, 28.905609],\n\t\t\t\t\t\t[-82.702618, 28.932955],\n\t\t\t\t\t\t[-82.708793, 28.935979],\n\t\t\t\t\t\t[-82.723861, 28.953506],\n\t\t\t\t\t\t[-82.735754, 28.973709],\n\t\t\t\t\t\t[-82.737872, 28.995703],\n\t\t\t\t\t\t[-82.758906, 28.993277],\n\t\t\t\t\t\t[-82.689814, 29.033962],\n\t\t\t\t\t\t[-82.612653, 29.009271],\n\t\t\t\t\t\t[-82.535591, 29.044855]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12029\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"029\",\n\t\t\t\t\"NAME\": \"Dixie\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 705.053000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.412278, 29.666922],\n\t\t\t\t\t\t[-83.373351, 29.665951],\n\t\t\t\t\t\t[-83.318859, 29.822623],\n\t\t\t\t\t\t[-82.920608, 29.824143],\n\t\t\t\t\t\t[-82.949707, 29.754409],\n\t\t\t\t\t\t[-82.937374, 29.591312],\n\t\t\t\t\t\t[-82.984371, 29.471004],\n\t\t\t\t\t\t[-83.068522, 29.343953],\n\t\t\t\t\t\t[-83.166091, 29.288880],\n\t\t\t\t\t\t[-83.169576, 29.290355],\n\t\t\t\t\t\t[-83.176736, 29.314220],\n\t\t\t\t\t\t[-83.178260, 29.327916],\n\t\t\t\t\t\t[-83.176852, 29.329269],\n\t\t\t\t\t\t[-83.175518, 29.344690],\n\t\t\t\t\t\t[-83.189581, 29.363417],\n\t\t\t\t\t\t[-83.200702, 29.373855],\n\t\t\t\t\t\t[-83.202446, 29.394422],\n\t\t\t\t\t\t[-83.218075, 29.420492],\n\t\t\t\t\t\t[-83.240509, 29.433178],\n\t\t\t\t\t\t[-83.263965, 29.435806],\n\t\t\t\t\t\t[-83.272019, 29.432256],\n\t\t\t\t\t\t[-83.294747, 29.437923],\n\t\t\t\t\t\t[-83.307094, 29.459651],\n\t\t\t\t\t\t[-83.307828, 29.468861],\n\t\t\t\t\t\t[-83.311546, 29.475666],\n\t\t\t\t\t\t[-83.323214, 29.476789],\n\t\t\t\t\t\t[-83.331130, 29.475594],\n\t\t\t\t\t\t[-83.350067, 29.489358],\n\t\t\t\t\t\t[-83.356722, 29.499901],\n\t\t\t\t\t\t[-83.370288, 29.499901],\n\t\t\t\t\t\t[-83.379254, 29.503558],\n\t\t\t\t\t\t[-83.383973, 29.512995],\n\t\t\t\t\t\t[-83.400252, 29.517242],\n\t\t\t\t\t\t[-83.401552, 29.523291],\n\t\t\t\t\t\t[-83.399830, 29.533042],\n\t\t\t\t\t\t[-83.405256, 29.578319],\n\t\t\t\t\t\t[-83.405068, 29.595570],\n\t\t\t\t\t\t[-83.399480, 29.612956],\n\t\t\t\t\t\t[-83.404081, 29.640798],\n\t\t\t\t\t\t[-83.412278, 29.666922]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12031\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"031\",\n\t\t\t\t\"NAME\": \"Duval\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 762.192000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.049236, 30.273432],\n\t\t\t\t\t\t[-81.791665, 30.505610],\n\t\t\t\t\t\t[-81.721630, 30.571968],\n\t\t\t\t\t\t[-81.624513, 30.586232],\n\t\t\t\t\t\t[-81.543018, 30.523889],\n\t\t\t\t\t\t[-81.499575, 30.563793],\n\t\t\t\t\t\t[-81.442784, 30.509920],\n\t\t\t\t\t\t[-81.447087, 30.503679],\n\t\t\t\t\t\t[-81.440108, 30.497678],\n\t\t\t\t\t\t[-81.426010, 30.496739],\n\t\t\t\t\t\t[-81.410809, 30.482039],\n\t\t\t\t\t\t[-81.407008, 30.422040],\n\t\t\t\t\t\t[-81.397422, 30.400626],\n\t\t\t\t\t\t[-81.396407, 30.340040],\n\t\t\t\t\t\t[-81.391606, 30.303441],\n\t\t\t\t\t\t[-81.385505, 30.273841],\n\t\t\t\t\t\t[-81.379879, 30.252914],\n\t\t\t\t\t\t[-81.436929, 30.252335],\n\t\t\t\t\t\t[-81.433737, 30.106028],\n\t\t\t\t\t\t[-81.601212, 30.130541],\n\t\t\t\t\t\t[-81.623813, 30.133641],\n\t\t\t\t\t\t[-81.650514, 30.121541],\n\t\t\t\t\t\t[-81.680215, 30.121240],\n\t\t\t\t\t\t[-81.711348, 30.191193],\n\t\t\t\t\t\t[-82.049411, 30.186933],\n\t\t\t\t\t\t[-82.049236, 30.273432]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12041\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"041\",\n\t\t\t\t\"NAME\": \"Gilchrist\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 349.677000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.658554, 29.830144],\n\t\t\t\t\t\t[-82.658128, 29.828068],\n\t\t\t\t\t\t[-82.656301, 29.564811],\n\t\t\t\t\t\t[-82.937374, 29.591312],\n\t\t\t\t\t\t[-82.949707, 29.754409],\n\t\t\t\t\t\t[-82.920608, 29.824143],\n\t\t\t\t\t\t[-82.892872, 29.827460],\n\t\t\t\t\t\t[-82.875616, 29.866527],\n\t\t\t\t\t\t[-82.879802, 29.886847],\n\t\t\t\t\t\t[-82.864246, 29.909836],\n\t\t\t\t\t\t[-82.800477, 29.932126],\n\t\t\t\t\t\t[-82.658554, 29.830144]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12043\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"043\",\n\t\t\t\t\"NAME\": \"Glades\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 806.009000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.943186, 27.210599],\n\t\t\t\t\t\t[-80.871169, 27.154951],\n\t\t\t\t\t\t[-80.885639, 26.958919],\n\t\t\t\t\t\t[-80.945354, 26.769049],\n\t\t\t\t\t\t[-81.565931, 26.769552],\n\t\t\t\t\t\t[-81.562202, 27.033836],\n\t\t\t\t\t\t[-81.267152, 27.032461],\n\t\t\t\t\t\t[-81.267677, 27.121097],\n\t\t\t\t\t\t[-81.168281, 27.121734],\n\t\t\t\t\t\t[-81.169138, 27.209585],\n\t\t\t\t\t\t[-80.943186, 27.210599]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12045\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"045\",\n\t\t\t\t\"NAME\": \"Gulf\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 564.012000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.115660, 30.199976],\n\t\t\t\t\t\t[-85.153773, 30.091294],\n\t\t\t\t\t\t[-85.113691, 30.023173],\n\t\t\t\t\t\t[-85.025439, 29.971399],\n\t\t\t\t\t\t[-85.012191, 29.873167],\n\t\t\t\t\t\t[-85.040078, 29.779346],\n\t\t\t\t\t\t[-85.109401, 29.776793],\n\t\t\t\t\t\t[-85.217355, 29.694953],\n\t\t\t\t\t\t[-85.227450, 29.693633],\n\t\t\t\t\t\t[-85.259719, 29.681296],\n\t\t\t\t\t\t[-85.290740, 29.684081],\n\t\t\t\t\t\t[-85.319215, 29.681494],\n\t\t\t\t\t\t[-85.343619, 29.672004],\n\t\t\t\t\t\t[-85.347711, 29.667190],\n\t\t\t\t\t\t[-85.344768, 29.654793],\n\t\t\t\t\t\t[-85.352615, 29.659787],\n\t\t\t\t\t\t[-85.369419, 29.681048],\n\t\t\t\t\t\t[-85.380303, 29.698485],\n\t\t\t\t\t\t[-85.397871, 29.740498],\n\t\t\t\t\t\t[-85.413983, 29.799865],\n\t\t\t\t\t\t[-85.417971, 29.828855],\n\t\t\t\t\t\t[-85.416548, 29.842628],\n\t\t\t\t\t\t[-85.413575, 29.852940],\n\t\t\t\t\t\t[-85.405815, 29.865817],\n\t\t\t\t\t\t[-85.392469, 29.870914],\n\t\t\t\t\t\t[-85.398740, 29.859267],\n\t\t\t\t\t\t[-85.405011, 29.830151],\n\t\t\t\t\t\t[-85.405907, 29.801930],\n\t\t\t\t\t\t[-85.395528, 29.762368],\n\t\t\t\t\t\t[-85.377960, 29.709621],\n\t\t\t\t\t\t[-85.363800, 29.693526],\n\t\t\t\t\t\t[-85.353885, 29.684765],\n\t\t\t\t\t\t[-85.344986, 29.685015],\n\t\t\t\t\t\t[-85.317661, 29.691286],\n\t\t\t\t\t\t[-85.311390, 29.697557],\n\t\t\t\t\t\t[-85.301331, 29.797117],\n\t\t\t\t\t\t[-85.302591, 29.808094],\n\t\t\t\t\t\t[-85.304877, 29.811096],\n\t\t\t\t\t\t[-85.311420, 29.814373],\n\t\t\t\t\t\t[-85.314547, 29.822279],\n\t\t\t\t\t\t[-85.314783, 29.830575],\n\t\t\t\t\t\t[-85.312911, 29.832273],\n\t\t\t\t\t\t[-85.317464, 29.838894],\n\t\t\t\t\t\t[-85.325008, 29.844966],\n\t\t\t\t\t\t[-85.332289, 29.845905],\n\t\t\t\t\t\t[-85.336654, 29.849295],\n\t\t\t\t\t\t[-85.347044, 29.871981],\n\t\t\t\t\t\t[-85.363731, 29.898915],\n\t\t\t\t\t\t[-85.384730, 29.920949],\n\t\t\t\t\t\t[-85.388677, 29.924355],\n\t\t\t\t\t\t[-85.388374, 29.926919],\n\t\t\t\t\t\t[-85.389679, 30.200973],\n\t\t\t\t\t\t[-85.386263, 30.201385],\n\t\t\t\t\t\t[-85.115660, 30.199976]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12049\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"049\",\n\t\t\t\t\"NAME\": \"Hardee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 637.783000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.054349, 27.646382],\n\t\t\t\t\t\t[-81.563318, 27.646647],\n\t\t\t\t\t\t[-81.563696, 27.340680],\n\t\t\t\t\t\t[-82.055753, 27.338264],\n\t\t\t\t\t\t[-82.054349, 27.646382]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12051\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"051\",\n\t\t\t\t\"NAME\": \"Hendry\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1152.750000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.879809, 26.259455],\n\t\t\t\t\t\t[-81.268550, 26.253045],\n\t\t\t\t\t\t[-81.271721, 26.422651],\n\t\t\t\t\t\t[-81.271768, 26.517069],\n\t\t\t\t\t\t[-81.563763, 26.513324],\n\t\t\t\t\t\t[-81.565931, 26.769552],\n\t\t\t\t\t\t[-80.945354, 26.769049],\n\t\t\t\t\t\t[-80.885639, 26.958919],\n\t\t\t\t\t\t[-80.886099, 26.725480],\n\t\t\t\t\t\t[-80.881233, 26.333806],\n\t\t\t\t\t\t[-80.879809, 26.259455]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12053\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"053\",\n\t\t\t\t\"NAME\": \"Hernando\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 472.539000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.054694, 28.478397],\n\t\t\t\t\t\t[-82.253293, 28.478491],\n\t\t\t\t\t\t[-82.253439, 28.434824],\n\t\t\t\t\t\t[-82.600636, 28.433910],\n\t\t\t\t\t\t[-82.678743, 28.433456],\n\t\t\t\t\t\t[-82.677839, 28.434367],\n\t\t\t\t\t\t[-82.674787, 28.441956],\n\t\t\t\t\t\t[-82.680396, 28.457194],\n\t\t\t\t\t\t[-82.672410, 28.464746],\n\t\t\t\t\t\t[-82.665055, 28.484434],\n\t\t\t\t\t\t[-82.664470, 28.488788],\n\t\t\t\t\t\t[-82.666390, 28.497330],\n\t\t\t\t\t\t[-82.670146, 28.500769],\n\t\t\t\t\t\t[-82.669416, 28.519879],\n\t\t\t\t\t\t[-82.668040, 28.528199],\n\t\t\t\t\t\t[-82.663705, 28.530193],\n\t\t\t\t\t\t[-82.656694, 28.544814],\n\t\t\t\t\t\t[-82.661729, 28.549743],\n\t\t\t\t\t\t[-82.661650, 28.554143],\n\t\t\t\t\t\t[-82.657050, 28.568028],\n\t\t\t\t\t\t[-82.654138, 28.590837],\n\t\t\t\t\t\t[-82.664055, 28.606584],\n\t\t\t\t\t\t[-82.656649, 28.623727],\n\t\t\t\t\t\t[-82.658510, 28.636756],\n\t\t\t\t\t\t[-82.654167, 28.668395],\n\t\t\t\t\t\t[-82.646411, 28.694434],\n\t\t\t\t\t\t[-82.418353, 28.694859],\n\t\t\t\t\t\t[-82.417684, 28.665897],\n\t\t\t\t\t\t[-82.263052, 28.667634],\n\t\t\t\t\t\t[-82.208184, 28.572054],\n\t\t\t\t\t\t[-82.054469, 28.521367],\n\t\t\t\t\t\t[-82.054694, 28.478397]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12061\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"061\",\n\t\t\t\t\"NAME\": \"Indian River\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 502.872000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.868881, 27.822522],\n\t\t\t\t\t\t[-80.509075, 27.822058],\n\t\t\t\t\t\t[-80.447084, 27.860755],\n\t\t\t\t\t\t[-80.447179, 27.859731],\n\t\t\t\t\t\t[-80.383695, 27.740045],\n\t\t\t\t\t\t[-80.351717, 27.642623],\n\t\t\t\t\t\t[-80.350553, 27.628361],\n\t\t\t\t\t\t[-80.344370, 27.616226],\n\t\t\t\t\t\t[-80.330956, 27.597541],\n\t\t\t\t\t\t[-80.324699, 27.569178],\n\t\t\t\t\t\t[-80.321271, 27.557378],\n\t\t\t\t\t\t[-80.679821, 27.558470],\n\t\t\t\t\t\t[-80.777166, 27.558733],\n\t\t\t\t\t\t[-80.778047, 27.643195],\n\t\t\t\t\t\t[-80.873150, 27.642288],\n\t\t\t\t\t\t[-80.868881, 27.822522]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12063\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"063\",\n\t\t\t\t\"NAME\": \"Jackson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 917.760000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.154452, 31.000835],\n\t\t\t\t\t\t[-85.152218, 31.000834],\n\t\t\t\t\t\t[-85.152085, 31.000888],\n\t\t\t\t\t\t[-85.145835, 31.000695],\n\t\t\t\t\t\t[-85.057534, 31.000585],\n\t\t\t\t\t\t[-85.054802, 31.000585],\n\t\t\t\t\t\t[-85.052088, 31.000585],\n\t\t\t\t\t\t[-85.031155, 31.000647],\n\t\t\t\t\t\t[-85.030107, 31.000653],\n\t\t\t\t\t\t[-85.027512, 31.000670],\n\t\t\t\t\t\t[-85.024108, 31.000681],\n\t\t\t\t\t\t[-85.002368, 31.000682],\n\t\t\t\t\t\t[-84.998628, 30.971386],\n\t\t\t\t\t\t[-84.983527, 30.935486],\n\t\t\t\t\t\t[-84.959626, 30.910587],\n\t\t\t\t\t\t[-84.941925, 30.887988],\n\t\t\t\t\t\t[-84.896122, 30.750591],\n\t\t\t\t\t\t[-84.864693, 30.711542],\n\t\t\t\t\t\t[-84.932519, 30.606393],\n\t\t\t\t\t\t[-85.167713, 30.608026],\n\t\t\t\t\t\t[-85.171891, 30.564336],\n\t\t\t\t\t\t[-85.383948, 30.566856],\n\t\t\t\t\t\t[-85.434782, 30.567560],\n\t\t\t\t\t\t[-85.432274, 30.785457],\n\t\t\t\t\t\t[-85.482276, 30.829509],\n\t\t\t\t\t\t[-85.599934, 30.830552],\n\t\t\t\t\t\t[-85.497992, 30.996931],\n\t\t\t\t\t\t[-85.488298, 30.997041],\n\t\t\t\t\t\t[-85.154452, 31.000835]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12069\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"069\",\n\t\t\t\t\"NAME\": \"Lake\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 938.381000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.657268, 28.347098],\n\t\t\t\t\t\t[-81.818903, 28.361712],\n\t\t\t\t\t\t[-81.957641, 28.345180],\n\t\t\t\t\t\t[-81.953580, 28.820940],\n\t\t\t\t\t\t[-81.954190, 28.960053],\n\t\t\t\t\t\t[-81.843025, 28.959884],\n\t\t\t\t\t\t[-81.842194, 28.961024],\n\t\t\t\t\t\t[-81.658698, 28.960345],\n\t\t\t\t\t\t[-81.639151, 29.062880],\n\t\t\t\t\t\t[-81.640517, 29.131600],\n\t\t\t\t\t\t[-81.641916, 29.276766],\n\t\t\t\t\t\t[-81.612340, 29.202943],\n\t\t\t\t\t\t[-81.531262, 29.176621],\n\t\t\t\t\t\t[-81.502055, 29.097802],\n\t\t\t\t\t\t[-81.354554, 28.984375],\n\t\t\t\t\t\t[-81.366940, 28.879227],\n\t\t\t\t\t\t[-81.367052, 28.878315],\n\t\t\t\t\t\t[-81.366764, 28.876619],\n\t\t\t\t\t\t[-81.366158, 28.874744],\n\t\t\t\t\t\t[-81.366705, 28.873250],\n\t\t\t\t\t\t[-81.368608, 28.872921],\n\t\t\t\t\t\t[-81.369692, 28.870536],\n\t\t\t\t\t\t[-81.372009, 28.869039],\n\t\t\t\t\t\t[-81.373491, 28.870250],\n\t\t\t\t\t\t[-81.376006, 28.865901],\n\t\t\t\t\t\t[-81.375088, 28.863366],\n\t\t\t\t\t\t[-81.414446, 28.784955],\n\t\t\t\t\t\t[-81.592971, 28.785970],\n\t\t\t\t\t\t[-81.624731, 28.785927],\n\t\t\t\t\t\t[-81.658114, 28.682710],\n\t\t\t\t\t\t[-81.657390, 28.553122],\n\t\t\t\t\t\t[-81.657268, 28.347098]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08075\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"075\",\n\t\t\t\t\"NAME\": \"Logan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1838.547000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-103.574522, 41.001721],\n\t\t\t\t\t\t[-103.497447, 41.001635],\n\t\t\t\t\t\t[-103.486697, 41.001914],\n\t\t\t\t\t\t[-103.421975, 41.002007],\n\t\t\t\t\t\t[-103.421925, 41.001969],\n\t\t\t\t\t\t[-103.382493, 41.001883],\n\t\t\t\t\t\t[-103.365314, 41.001846],\n\t\t\t\t\t\t[-103.362979, 41.001844],\n\t\t\t\t\t\t[-103.077804, 41.002298],\n\t\t\t\t\t\t[-103.076536, 41.002253],\n\t\t\t\t\t\t[-103.059538, 41.002368],\n\t\t\t\t\t\t[-103.057998, 41.002368],\n\t\t\t\t\t\t[-103.043444, 41.002344],\n\t\t\t\t\t\t[-103.038704, 41.002251],\n\t\t\t\t\t\t[-103.002026, 41.002486],\n\t\t\t\t\t\t[-103.000102, 41.002400],\n\t\t\t\t\t\t[-102.982690, 41.002157],\n\t\t\t\t\t\t[-102.981483, 41.002112],\n\t\t\t\t\t\t[-102.963669, 41.002186],\n\t\t\t\t\t\t[-102.962522, 41.002072],\n\t\t\t\t\t\t[-102.960706, 41.002059],\n\t\t\t\t\t\t[-102.959624, 41.002095],\n\t\t\t\t\t\t[-102.944830, 41.002303],\n\t\t\t\t\t\t[-102.943109, 41.002051],\n\t\t\t\t\t\t[-102.925568, 41.002280],\n\t\t\t\t\t\t[-102.924029, 41.002142],\n\t\t\t\t\t\t[-102.906547, 41.002276],\n\t\t\t\t\t\t[-102.904796, 41.002207],\n\t\t\t\t\t\t[-102.887407, 41.002178],\n\t\t\t\t\t\t[-102.885746, 41.002131],\n\t\t\t\t\t\t[-102.867822, 41.002183],\n\t\t\t\t\t\t[-102.865784, 41.001988],\n\t\t\t\t\t\t[-102.849263, 41.002301],\n\t\t\t\t\t\t[-102.846455, 41.002256],\n\t\t\t\t\t\t[-102.830303, 41.002351],\n\t\t\t\t\t\t[-102.827280, 41.002143],\n\t\t\t\t\t\t[-102.773546, 41.002414],\n\t\t\t\t\t\t[-102.766723, 41.002275],\n\t\t\t\t\t\t[-102.754617, 41.002361],\n\t\t\t\t\t\t[-102.739624, 41.002230],\n\t\t\t\t\t\t[-102.653463, 41.002332],\n\t\t\t\t\t\t[-102.651310, 40.749402],\n\t\t\t\t\t\t[-102.664804, 40.438473],\n\t\t\t\t\t\t[-102.779960, 40.438446],\n\t\t\t\t\t\t[-103.465377, 40.436346],\n\t\t\t\t\t\t[-103.467200, 40.523253],\n\t\t\t\t\t\t[-103.581795, 40.523350],\n\t\t\t\t\t\t[-103.574522, 41.001721]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08077\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"077\",\n\t\t\t\t\"NAME\": \"Mesa\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 3328.974000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-109.059962, 38.499987],\n\t\t\t\t\t\t[-109.059541, 38.719888],\n\t\t\t\t\t\t[-109.053943, 38.904414],\n\t\t\t\t\t\t[-109.053797, 38.905284],\n\t\t\t\t\t\t[-109.053233, 38.942467],\n\t\t\t\t\t\t[-109.053292, 38.942878],\n\t\t\t\t\t\t[-109.051516, 39.124982],\n\t\t\t\t\t\t[-109.051417, 39.366677],\n\t\t\t\t\t\t[-108.875659, 39.366531],\n\t\t\t\t\t\t[-108.874002, 39.366269],\n\t\t\t\t\t\t[-108.865465, 39.366251],\n\t\t\t\t\t\t[-107.430949, 39.366178],\n\t\t\t\t\t\t[-107.465957, 39.322120],\n\t\t\t\t\t\t[-107.394486, 39.256299],\n\t\t\t\t\t\t[-107.500606, 39.217916],\n\t\t\t\t\t\t[-107.765490, 39.043294],\n\t\t\t\t\t\t[-107.858240, 39.079804],\n\t\t\t\t\t\t[-108.378953, 38.829108],\n\t\t\t\t\t\t[-108.378698, 38.668097],\n\t\t\t\t\t\t[-108.379136, 38.499987],\n\t\t\t\t\t\t[-109.059962, 38.499987]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08081\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"081\",\n\t\t\t\t\"NAME\": \"Moffat\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 4743.290000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-109.050076, 41.000659],\n\t\t\t\t\t\t[-108.250649, 41.000114],\n\t\t\t\t\t\t[-107.918421, 41.002036],\n\t\t\t\t\t\t[-107.317794, 41.002957],\n\t\t\t\t\t\t[-107.314153, 40.600281],\n\t\t\t\t\t\t[-107.428813, 40.542207],\n\t\t\t\t\t\t[-107.439386, 40.223379],\n\t\t\t\t\t\t[-107.439372, 40.220454],\n\t\t\t\t\t\t[-107.644175, 40.224238],\n\t\t\t\t\t\t[-107.653987, 40.223452],\n\t\t\t\t\t\t[-109.050854, 40.222662],\n\t\t\t\t\t\t[-109.049955, 40.539901],\n\t\t\t\t\t\t[-109.050074, 40.540358],\n\t\t\t\t\t\t[-109.048249, 40.653601],\n\t\t\t\t\t\t[-109.048296, 40.662602],\n\t\t\t\t\t\t[-109.050076, 41.000659]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08087\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"087\",\n\t\t\t\t\"NAME\": \"Morgan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1280.433000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-104.150332, 40.000856],\n\t\t\t\t\t\t[-104.150494, 40.350245],\n\t\t\t\t\t\t[-104.147536, 40.350245],\n\t\t\t\t\t\t[-104.147901, 40.524348],\n\t\t\t\t\t\t[-103.581795, 40.523350],\n\t\t\t\t\t\t[-103.467200, 40.523253],\n\t\t\t\t\t\t[-103.465377, 40.436346],\n\t\t\t\t\t\t[-103.471990, 40.001502],\n\t\t\t\t\t\t[-103.705701, 40.001366],\n\t\t\t\t\t\t[-104.150332, 40.000856]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08091\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"091\",\n\t\t\t\t\"NAME\": \"Ouray\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 541.593000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-107.738283, 37.905432],\n\t\t\t\t\t\t[-107.795469, 37.988520],\n\t\t\t\t\t\t[-107.900193, 38.026249],\n\t\t\t\t\t\t[-107.891469, 38.115957],\n\t\t\t\t\t\t[-107.965789, 38.152328],\n\t\t\t\t\t\t[-107.937588, 38.218992],\n\t\t\t\t\t\t[-108.086604, 38.255202],\n\t\t\t\t\t\t[-108.132380, 38.331573],\n\t\t\t\t\t\t[-107.635697, 38.332148],\n\t\t\t\t\t\t[-107.635040, 38.301896],\n\t\t\t\t\t\t[-107.568620, 38.147267],\n\t\t\t\t\t\t[-107.510880, 38.060877],\n\t\t\t\t\t\t[-107.568875, 37.965015],\n\t\t\t\t\t\t[-107.738283, 37.905432]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08097\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"097\",\n\t\t\t\t\"NAME\": \"Pitkin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 970.697000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-107.394486, 39.256299],\n\t\t\t\t\t\t[-107.465957, 39.322120],\n\t\t\t\t\t\t[-107.430949, 39.366178],\n\t\t\t\t\t\t[-107.113446, 39.366066],\n\t\t\t\t\t\t[-106.426487, 39.361871],\n\t\t\t\t\t\t[-106.485121, 39.312566],\n\t\t\t\t\t\t[-106.508614, 39.166681],\n\t\t\t\t\t\t[-106.577966, 39.057908],\n\t\t\t\t\t\t[-106.580730, 39.048717],\n\t\t\t\t\t\t[-106.597233, 39.044821],\n\t\t\t\t\t\t[-106.591692, 39.024923],\n\t\t\t\t\t\t[-106.599214, 38.997994],\n\t\t\t\t\t\t[-106.694969, 39.055667],\n\t\t\t\t\t\t[-106.801874, 38.978303],\n\t\t\t\t\t\t[-106.906422, 38.992091],\n\t\t\t\t\t\t[-107.001622, 39.042273],\n\t\t\t\t\t\t[-107.066320, 39.118805],\n\t\t\t\t\t\t[-107.282490, 39.118718],\n\t\t\t\t\t\t[-107.375608, 39.197931],\n\t\t\t\t\t\t[-107.394486, 39.256299]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08103\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"103\",\n\t\t\t\t\"NAME\": \"Rio Blanco\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 3220.934000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-109.050873, 40.058915],\n\t\t\t\t\t\t[-109.050813, 40.059579],\n\t\t\t\t\t\t[-109.050944, 40.180712],\n\t\t\t\t\t\t[-109.050973, 40.180849],\n\t\t\t\t\t\t[-109.050854, 40.222662],\n\t\t\t\t\t\t[-107.653987, 40.223452],\n\t\t\t\t\t\t[-107.644175, 40.224238],\n\t\t\t\t\t\t[-107.439372, 40.220454],\n\t\t\t\t\t\t[-107.439386, 40.223379],\n\t\t\t\t\t\t[-107.037928, 40.225372],\n\t\t\t\t\t\t[-107.037363, 40.091538],\n\t\t\t\t\t\t[-107.316993, 40.090765],\n\t\t\t\t\t\t[-107.318751, 39.914968],\n\t\t\t\t\t\t[-107.431665, 39.917725],\n\t\t\t\t\t\t[-107.431770, 39.828377],\n\t\t\t\t\t\t[-107.938502, 39.824996],\n\t\t\t\t\t\t[-107.938546, 39.694464],\n\t\t\t\t\t\t[-109.051221, 39.660472],\n\t\t\t\t\t\t[-109.050873, 40.058915]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08109\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"109\",\n\t\t\t\t\"NAME\": \"Saguache\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 3168.525000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-106.246940, 38.422768],\n\t\t\t\t\t\t[-106.010751, 38.446566],\n\t\t\t\t\t\t[-105.796897, 38.265047],\n\t\t\t\t\t\t[-105.676270, 38.146173],\n\t\t\t\t\t\t[-105.604355, 38.008745],\n\t\t\t\t\t\t[-105.473204, 37.895970],\n\t\t\t\t\t\t[-105.428893, 37.851733],\n\t\t\t\t\t\t[-105.457255, 37.751464],\n\t\t\t\t\t\t[-106.038413, 37.748353],\n\t\t\t\t\t\t[-106.586374, 37.747809],\n\t\t\t\t\t\t[-106.587139, 37.834426],\n\t\t\t\t\t\t[-106.693845, 37.835244],\n\t\t\t\t\t\t[-106.693523, 37.873519],\n\t\t\t\t\t\t[-106.879167, 37.961110],\n\t\t\t\t\t\t[-107.000602, 37.956041],\n\t\t\t\t\t\t[-107.001119, 38.147072],\n\t\t\t\t\t\t[-107.000601, 38.425619],\n\t\t\t\t\t\t[-106.246940, 38.422768]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08119\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"119\",\n\t\t\t\t\"NAME\": \"Teller\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 557.055000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-105.330444, 39.129685],\n\t\t\t\t\t\t[-105.329220, 39.129689],\n\t\t\t\t\t\t[-105.033544, 39.129819],\n\t\t\t\t\t\t[-105.028903, 38.868907],\n\t\t\t\t\t\t[-105.072184, 38.799382],\n\t\t\t\t\t\t[-104.938994, 38.796884],\n\t\t\t\t\t\t[-104.942426, 38.649882],\n\t\t\t\t\t\t[-105.240362, 38.647595],\n\t\t\t\t\t\t[-105.237792, 38.696901],\n\t\t\t\t\t\t[-105.329134, 38.697205],\n\t\t\t\t\t\t[-105.330444, 39.129685]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08121\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"121\",\n\t\t\t\t\"NAME\": \"Washington\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2518.031000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-103.705701, 40.001366],\n\t\t\t\t\t\t[-103.471990, 40.001502],\n\t\t\t\t\t\t[-103.465377, 40.436346],\n\t\t\t\t\t\t[-102.779960, 40.438446],\n\t\t\t\t\t\t[-102.803767, 40.002554],\n\t\t\t\t\t\t[-102.802932, 39.567841],\n\t\t\t\t\t\t[-103.154376, 39.565654],\n\t\t\t\t\t\t[-103.154955, 39.565949],\n\t\t\t\t\t\t[-103.707072, 39.566295],\n\t\t\t\t\t\t[-103.706547, 39.739894],\n\t\t\t\t\t\t[-103.705826, 39.999984],\n\t\t\t\t\t\t[-103.705701, 40.001366]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08125\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"125\",\n\t\t\t\t\"NAME\": \"Yuma\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2364.405000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-102.051465, 40.440008],\n\t\t\t\t\t\t[-102.051840, 40.396396],\n\t\t\t\t\t\t[-102.051572, 40.393080],\n\t\t\t\t\t\t[-102.051669, 40.349213],\n\t\t\t\t\t\t[-102.051922, 40.235344],\n\t\t\t\t\t\t[-102.051894, 40.229193],\n\t\t\t\t\t\t[-102.051909, 40.162674],\n\t\t\t\t\t\t[-102.052001, 40.148359],\n\t\t\t\t\t\t[-102.051744, 40.003078],\n\t\t\t\t\t\t[-102.051569, 39.849805],\n\t\t\t\t\t\t[-102.051363, 39.843471],\n\t\t\t\t\t\t[-102.051318, 39.833311],\n\t\t\t\t\t\t[-102.051254, 39.818992],\n\t\t\t\t\t\t[-102.050594, 39.675594],\n\t\t\t\t\t\t[-102.049954, 39.592331],\n\t\t\t\t\t\t[-102.049806, 39.574058],\n\t\t\t\t\t\t[-102.802932, 39.567841],\n\t\t\t\t\t\t[-102.803767, 40.002554],\n\t\t\t\t\t\t[-102.779960, 40.438446],\n\t\t\t\t\t\t[-102.664804, 40.438473],\n\t\t\t\t\t\t[-102.051465, 40.440008]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US09003\",\n\t\t\t\t\"STATE\": \"09\",\n\t\t\t\t\"COUNTY\": \"003\",\n\t\t\t\t\"NAME\": \"Hartford\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 735.097000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-72.752181, 41.578894],\n\t\t\t\t\t\t[-72.946350, 41.556797],\n\t\t\t\t\t\t[-72.983250, 41.639598],\n\t\t\t\t\t\t[-72.998550, 41.712498],\n\t\t\t\t\t\t[-73.012256, 41.775132],\n\t\t\t\t\t\t[-73.012534, 41.775410],\n\t\t\t\t\t\t[-73.012633, 41.777457],\n\t\t\t\t\t\t[-73.016534, 41.795655],\n\t\t\t\t\t\t[-73.016936, 41.798183],\n\t\t\t\t\t\t[-72.949024, 41.806431],\n\t\t\t\t\t\t[-72.905945, 41.921696],\n\t\t\t\t\t\t[-72.887060, 41.973121],\n\t\t\t\t\t\t[-73.029537, 41.966606],\n\t\t\t\t\t\t[-73.008745, 42.038854],\n\t\t\t\t\t\t[-73.008739, 42.039356],\n\t\t\t\t\t\t[-72.863733, 42.037710],\n\t\t\t\t\t\t[-72.863619, 42.037709],\n\t\t\t\t\t\t[-72.813541, 42.036494],\n\t\t\t\t\t\t[-72.816741, 41.997595],\n\t\t\t\t\t\t[-72.774757, 42.002129],\n\t\t\t\t\t\t[-72.766739, 42.002995],\n\t\t\t\t\t\t[-72.766139, 42.007695],\n\t\t\t\t\t\t[-72.758151, 42.020865],\n\t\t\t\t\t\t[-72.757467, 42.020947],\n\t\t\t\t\t\t[-72.755838, 42.036195],\n\t\t\t\t\t\t[-72.714134, 42.036608],\n\t\t\t\t\t\t[-72.695927, 42.036788],\n\t\t\t\t\t\t[-72.509187, 42.034607],\n\t\t\t\t\t\t[-72.509081, 42.033539],\n\t\t\t\t\t\t[-72.499730, 41.984295],\n\t\t\t\t\t\t[-72.498928, 41.977893],\n\t\t\t\t\t\t[-72.492729, 41.947497],\n\t\t\t\t\t\t[-72.503065, 41.946608],\n\t\t\t\t\t\t[-72.513330, 41.945401],\n\t\t\t\t\t\t[-72.513630, 41.942997],\n\t\t\t\t\t\t[-72.517330, 41.869897],\n\t\t\t\t\t\t[-72.463899, 41.745572],\n\t\t\t\t\t\t[-72.410629, 41.601798],\n\t\t\t\t\t\t[-72.417229, 41.590598],\n\t\t\t\t\t\t[-72.466730, 41.583899],\n\t\t\t\t\t\t[-72.544230, 41.642696],\n\t\t\t\t\t\t[-72.630524, 41.633282],\n\t\t\t\t\t\t[-72.627836, 41.640199],\n\t\t\t\t\t\t[-72.714538, 41.604310],\n\t\t\t\t\t\t[-72.731671, 41.595779],\n\t\t\t\t\t\t[-72.752941, 41.592497],\n\t\t\t\t\t\t[-72.752181, 41.578894]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US09007\",\n\t\t\t\t\"STATE\": \"09\",\n\t\t\t\t\"COUNTY\": \"007\",\n\t\t\t\t\"NAME\": \"Middlesex\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 369.301000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-72.322931, 41.518119],\n\t\t\t\t\t\t[-72.305531, 41.436282],\n\t\t\t\t\t\t[-72.433710, 41.423995],\n\t\t\t\t\t\t[-72.341460, 41.280110],\n\t\t\t\t\t\t[-72.348643, 41.277446],\n\t\t\t\t\t\t[-72.348068, 41.269698],\n\t\t\t\t\t\t[-72.386629, 41.261798],\n\t\t\t\t\t\t[-72.398688, 41.278172],\n\t\t\t\t\t\t[-72.405930, 41.278398],\n\t\t\t\t\t\t[-72.451925, 41.278885],\n\t\t\t\t\t\t[-72.472539, 41.270103],\n\t\t\t\t\t\t[-72.485693, 41.270881],\n\t\t\t\t\t\t[-72.499534, 41.265866],\n\t\t\t\t\t\t[-72.506634, 41.260099],\n\t\t\t\t\t\t[-72.518660, 41.261253],\n\t\t\t\t\t\t[-72.521312, 41.265600],\n\t\t\t\t\t\t[-72.529416, 41.264421],\n\t\t\t\t\t\t[-72.533247, 41.262690],\n\t\t\t\t\t\t[-72.536746, 41.256207],\n\t\t\t\t\t\t[-72.537776, 41.255646],\n\t\t\t\t\t\t[-72.678739, 41.433797],\n\t\t\t\t\t\t[-72.682539, 41.433797],\n\t\t\t\t\t\t[-72.708343, 41.429443],\n\t\t\t\t\t\t[-72.746141, 41.423297],\n\t\t\t\t\t\t[-72.733886, 41.485368],\n\t\t\t\t\t\t[-72.743330, 41.483114],\n\t\t\t\t\t\t[-72.744742, 41.497698],\n\t\t\t\t\t\t[-72.752181, 41.578894],\n\t\t\t\t\t\t[-72.752941, 41.592497],\n\t\t\t\t\t\t[-72.731671, 41.595779],\n\t\t\t\t\t\t[-72.714538, 41.604310],\n\t\t\t\t\t\t[-72.627836, 41.640199],\n\t\t\t\t\t\t[-72.630524, 41.633282],\n\t\t\t\t\t\t[-72.544230, 41.642696],\n\t\t\t\t\t\t[-72.466730, 41.583899],\n\t\t\t\t\t\t[-72.430767, 41.524567],\n\t\t\t\t\t\t[-72.322931, 41.518119]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05015\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"015\",\n\t\t\t\t\"NAME\": \"Carroll\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 630.087000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.866758, 36.498789],\n\t\t\t\t\t\t[-93.728022, 36.499037],\n\t\t\t\t\t\t[-93.727552, 36.499055],\n\t\t\t\t\t\t[-93.718893, 36.499178],\n\t\t\t\t\t\t[-93.709956, 36.499179],\n\t\t\t\t\t\t[-93.700171, 36.499135],\n\t\t\t\t\t\t[-93.584282, 36.498896],\n\t\t\t\t\t\t[-93.584281, 36.498896],\n\t\t\t\t\t\t[-93.514512, 36.498881],\n\t\t\t\t\t\t[-93.507408, 36.498911],\n\t\t\t\t\t\t[-93.426989, 36.498585],\n\t\t\t\t\t\t[-93.396079, 36.498669],\n\t\t\t\t\t\t[-93.394718, 36.498519],\n\t\t\t\t\t\t[-93.315337, 36.498408],\n\t\t\t\t\t\t[-93.315324, 36.498408],\n\t\t\t\t\t\t[-93.296117, 36.498389],\n\t\t\t\t\t\t[-93.300828, 36.125038],\n\t\t\t\t\t\t[-93.300072, 36.121264],\n\t\t\t\t\t\t[-93.479528, 36.125072],\n\t\t\t\t\t\t[-93.551135, 36.126271],\n\t\t\t\t\t\t[-93.619974, 36.201208],\n\t\t\t\t\t\t[-93.657689, 36.303082],\n\t\t\t\t\t\t[-93.815605, 36.306563],\n\t\t\t\t\t\t[-93.861698, 36.339266],\n\t\t\t\t\t\t[-93.866758, 36.498789]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05017\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"017\",\n\t\t\t\t\"NAME\": \"Chicot\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 644.304000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.215671, 33.529423],\n\t\t\t\t\t\t[-91.125109, 33.472842],\n\t\t\t\t\t\t[-91.118495, 33.449116],\n\t\t\t\t\t\t[-91.131885, 33.430063],\n\t\t\t\t\t\t[-91.184427, 33.419576],\n\t\t\t\t\t\t[-91.141216, 33.298397],\n\t\t\t\t\t\t[-91.110561, 33.245930],\n\t\t\t\t\t\t[-91.085984, 33.221644],\n\t\t\t\t\t\t[-91.087589, 33.145177],\n\t\t\t\t\t\t[-91.125656, 33.038276],\n\t\t\t\t\t\t[-91.157662, 33.011217],\n\t\t\t\t\t\t[-91.166073, 33.004106],\n\t\t\t\t\t\t[-91.265018, 33.005084],\n\t\t\t\t\t\t[-91.284398, 33.005007],\n\t\t\t\t\t\t[-91.312016, 33.005262],\n\t\t\t\t\t\t[-91.322506, 33.005341],\n\t\t\t\t\t\t[-91.325037, 33.005364],\n\t\t\t\t\t\t[-91.326396, 33.005376],\n\t\t\t\t\t\t[-91.329767, 33.005421],\n\t\t\t\t\t\t[-91.333011, 33.005529],\n\t\t\t\t\t\t[-91.376016, 33.005794],\n\t\t\t\t\t\t[-91.425466, 33.006016],\n\t\t\t\t\t\t[-91.435782, 33.006099],\n\t\t\t\t\t\t[-91.460370, 33.006246],\n\t\t\t\t\t\t[-91.457370, 33.388974],\n\t\t\t\t\t\t[-91.453438, 33.563703],\n\t\t\t\t\t\t[-91.349540, 33.563646],\n\t\t\t\t\t\t[-91.350810, 33.519476],\n\t\t\t\t\t\t[-91.245760, 33.517148],\n\t\t\t\t\t\t[-91.244582, 33.561425],\n\t\t\t\t\t\t[-91.228287, 33.559937],\n\t\t\t\t\t\t[-91.232295, 33.552788],\n\t\t\t\t\t\t[-91.215671, 33.529423]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05025\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"025\",\n\t\t\t\t\"NAME\": \"Cleveland\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 597.783000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.953799, 34.064141],\n\t\t\t\t\t\t[-91.976439, 33.977297],\n\t\t\t\t\t\t[-91.975974, 33.791787],\n\t\t\t\t\t\t[-91.975844, 33.704414],\n\t\t\t\t\t\t[-92.330839, 33.707806],\n\t\t\t\t\t\t[-92.334249, 33.795065],\n\t\t\t\t\t\t[-92.400798, 33.913560],\n\t\t\t\t\t\t[-92.475602, 33.972696],\n\t\t\t\t\t\t[-92.471667, 34.057054],\n\t\t\t\t\t\t[-92.336765, 34.059633],\n\t\t\t\t\t\t[-92.233376, 34.062312],\n\t\t\t\t\t\t[-91.953799, 34.064141]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05027\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"027\",\n\t\t\t\t\"NAME\": \"Columbia\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 766.053000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.238607, 33.017992],\n\t\t\t\t\t\t[-93.308181, 33.018156],\n\t\t\t\t\t\t[-93.308398, 33.018179],\n\t\t\t\t\t\t[-93.340353, 33.018337],\n\t\t\t\t\t\t[-93.377134, 33.018234],\n\t\t\t\t\t\t[-93.467042, 33.018611],\n\t\t\t\t\t\t[-93.489506, 33.018443],\n\t\t\t\t\t\t[-93.490520, 33.018442],\n\t\t\t\t\t\t[-93.481760, 33.259991],\n\t\t\t\t\t\t[-93.442019, 33.258165],\n\t\t\t\t\t\t[-93.365585, 33.444459],\n\t\t\t\t\t\t[-93.116361, 33.452909],\n\t\t\t\t\t\t[-93.119014, 33.380293],\n\t\t\t\t\t\t[-92.978469, 33.377280],\n\t\t\t\t\t\t[-92.988708, 33.017298],\n\t\t\t\t\t\t[-93.070686, 33.017792],\n\t\t\t\t\t\t[-93.073167, 33.017898],\n\t\t\t\t\t\t[-93.081428, 33.017928],\n\t\t\t\t\t\t[-93.100981, 33.017786],\n\t\t\t\t\t\t[-93.101443, 33.017740],\n\t\t\t\t\t\t[-93.154351, 33.017856],\n\t\t\t\t\t\t[-93.197402, 33.017951],\n\t\t\t\t\t\t[-93.238607, 33.017992]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05033\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"033\",\n\t\t\t\t\"NAME\": \"Crawford\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 593.094000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.431789, 35.397659],\n\t\t\t\t\t\t[-94.463318, 35.582660],\n\t\t\t\t\t\t[-94.464097, 35.587265],\n\t\t\t\t\t\t[-94.464457, 35.588909],\n\t\t\t\t\t\t[-94.465272, 35.594037],\n\t\t\t\t\t\t[-94.472647, 35.638556],\n\t\t\t\t\t\t[-94.487585, 35.726147],\n\t\t\t\t\t\t[-94.488210, 35.729240],\n\t\t\t\t\t\t[-94.492932, 35.759166],\n\t\t\t\t\t\t[-94.124871, 35.750426],\n\t\t\t\t\t\t[-93.962892, 35.760930],\n\t\t\t\t\t\t[-93.910836, 35.759752],\n\t\t\t\t\t\t[-93.984204, 35.660783],\n\t\t\t\t\t\t[-94.073703, 35.662463],\n\t\t\t\t\t\t[-94.076209, 35.575489],\n\t\t\t\t\t\t[-94.023014, 35.574204],\n\t\t\t\t\t\t[-94.074895, 35.445403],\n\t\t\t\t\t\t[-94.223751, 35.353694],\n\t\t\t\t\t\t[-94.321186, 35.357476],\n\t\t\t\t\t\t[-94.403468, 35.449994],\n\t\t\t\t\t\t[-94.431789, 35.397659]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05045\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"045\",\n\t\t\t\t\"NAME\": \"Faulkner\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 647.884000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.119719, 35.066493],\n\t\t\t\t\t\t[-92.121336, 35.012210],\n\t\t\t\t\t\t[-92.227541, 35.014484],\n\t\t\t\t\t\t[-92.229893, 34.927558],\n\t\t\t\t\t\t[-92.544341, 34.953319],\n\t\t\t\t\t\t[-92.593585, 35.011761],\n\t\t\t\t\t\t[-92.554685, 35.113277],\n\t\t\t\t\t\t[-92.484259, 35.280706],\n\t\t\t\t\t\t[-92.481469, 35.368392],\n\t\t\t\t\t\t[-92.252759, 35.363718],\n\t\t\t\t\t\t[-92.111463, 35.362725],\n\t\t\t\t\t\t[-92.119719, 35.066493]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05047\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"047\",\n\t\t\t\t\"NAME\": \"Franklin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 608.857000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.910836, 35.759752],\n\t\t\t\t\t\t[-93.910588, 35.774246],\n\t\t\t\t\t\t[-93.695981, 35.768649],\n\t\t\t\t\t\t[-93.710076, 35.375242],\n\t\t\t\t\t\t[-93.806849, 35.430011],\n\t\t\t\t\t\t[-93.810087, 35.313095],\n\t\t\t\t\t\t[-93.917127, 35.319046],\n\t\t\t\t\t\t[-93.920167, 35.229427],\n\t\t\t\t\t\t[-94.028547, 35.213826],\n\t\t\t\t\t\t[-94.082798, 35.215913],\n\t\t\t\t\t\t[-94.074895, 35.445403],\n\t\t\t\t\t\t[-94.023014, 35.574204],\n\t\t\t\t\t\t[-94.076209, 35.575489],\n\t\t\t\t\t\t[-94.073703, 35.662463],\n\t\t\t\t\t\t[-93.984204, 35.660783],\n\t\t\t\t\t\t[-93.910836, 35.759752]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05053\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"053\",\n\t\t\t\t\"NAME\": \"Grant\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 631.809000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.245818, 34.493506],\n\t\t\t\t\t\t[-92.208041, 34.492765],\n\t\t\t\t\t\t[-92.212906, 34.230400],\n\t\t\t\t\t\t[-92.233376, 34.062312],\n\t\t\t\t\t\t[-92.336765, 34.059633],\n\t\t\t\t\t\t[-92.493672, 34.144234],\n\t\t\t\t\t\t[-92.678383, 34.149622],\n\t\t\t\t\t\t[-92.668711, 34.414237],\n\t\t\t\t\t\t[-92.589418, 34.455641],\n\t\t\t\t\t\t[-92.404680, 34.451916],\n\t\t\t\t\t\t[-92.403557, 34.495795],\n\t\t\t\t\t\t[-92.245818, 34.493506]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05059\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"059\",\n\t\t\t\t\"NAME\": \"Hot Spring\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 615.202000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.793197, 34.503606],\n\t\t\t\t\t\t[-92.685284, 34.473105],\n\t\t\t\t\t\t[-92.668711, 34.414237],\n\t\t\t\t\t\t[-92.678383, 34.149622],\n\t\t\t\t\t\t[-92.813986, 34.151660],\n\t\t\t\t\t\t[-92.886285, 34.155877],\n\t\t\t\t\t\t[-93.042025, 34.159852],\n\t\t\t\t\t\t[-93.035039, 34.236664],\n\t\t\t\t\t\t[-93.199428, 34.248057],\n\t\t\t\t\t\t[-93.198278, 34.277337],\n\t\t\t\t\t\t[-93.356840, 34.280306],\n\t\t\t\t\t\t[-93.408124, 34.339527],\n\t\t\t\t\t\t[-93.407227, 34.396853],\n\t\t\t\t\t\t[-92.948071, 34.389255],\n\t\t\t\t\t\t[-92.915079, 34.506114],\n\t\t\t\t\t\t[-92.793197, 34.503606]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05067\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"067\",\n\t\t\t\t\"NAME\": \"Jackson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 633.938000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.581880, 35.530447],\n\t\t\t\t\t\t[-91.369570, 35.526362],\n\t\t\t\t\t\t[-91.348281, 35.719127],\n\t\t\t\t\t\t[-91.232392, 35.812664],\n\t\t\t\t\t\t[-91.198556, 35.890024],\n\t\t\t\t\t\t[-91.169061, 35.889794],\n\t\t\t\t\t\t[-91.032499, 35.885070],\n\t\t\t\t\t\t[-91.036967, 35.708418],\n\t\t\t\t\t\t[-91.039230, 35.444717],\n\t\t\t\t\t\t[-91.039783, 35.354256],\n\t\t\t\t\t\t[-91.251555, 35.357561],\n\t\t\t\t\t\t[-91.252927, 35.445845],\n\t\t\t\t\t\t[-91.347257, 35.439106],\n\t\t\t\t\t\t[-91.584687, 35.442311],\n\t\t\t\t\t\t[-91.581880, 35.530447]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05073\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"073\",\n\t\t\t\t\"NAME\": \"Lafayette\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 528.268000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.490520, 33.018442],\n\t\t\t\t\t\t[-93.490893, 33.018442],\n\t\t\t\t\t\t[-93.520971, 33.018616],\n\t\t\t\t\t\t[-93.520994, 33.018616],\n\t\t\t\t\t\t[-93.524916, 33.018637],\n\t\t\t\t\t\t[-93.531499, 33.018643],\n\t\t\t\t\t\t[-93.804930, 33.019347],\n\t\t\t\t\t\t[-93.860409, 33.092602],\n\t\t\t\t\t\t[-93.850076, 33.145343],\n\t\t\t\t\t\t[-93.734079, 33.155551],\n\t\t\t\t\t\t[-93.750177, 33.183949],\n\t\t\t\t\t\t[-93.665518, 33.327021],\n\t\t\t\t\t\t[-93.733317, 33.420880],\n\t\t\t\t\t\t[-93.722867, 33.481963],\n\t\t\t\t\t\t[-93.483097, 33.476075],\n\t\t\t\t\t\t[-93.483974, 33.447223],\n\t\t\t\t\t\t[-93.365585, 33.444459],\n\t\t\t\t\t\t[-93.442019, 33.258165],\n\t\t\t\t\t\t[-93.481760, 33.259991],\n\t\t\t\t\t\t[-93.490520, 33.018442]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05081\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"081\",\n\t\t\t\t\"NAME\": \"Little River\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 532.253000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.043450, 33.552253],\n\t\t\t\t\t\t[-94.066846, 33.568909],\n\t\t\t\t\t\t[-94.085243, 33.575546],\n\t\t\t\t\t\t[-94.181805, 33.593217],\n\t\t\t\t\t\t[-94.252656, 33.586144],\n\t\t\t\t\t\t[-94.257801, 33.582508],\n\t\t\t\t\t\t[-94.355945, 33.543180],\n\t\t\t\t\t\t[-94.409329, 33.568265],\n\t\t\t\t\t\t[-94.464336, 33.598819],\n\t\t\t\t\t\t[-94.470963, 33.605940],\n\t\t\t\t\t\t[-94.478366, 33.620847],\n\t\t\t\t\t\t[-94.485875, 33.637867],\n\t\t\t\t\t\t[-94.485577, 33.653310],\n\t\t\t\t\t\t[-94.485528, 33.663388],\n\t\t\t\t\t\t[-94.484520, 33.687909],\n\t\t\t\t\t\t[-94.484616, 33.691592],\n\t\t\t\t\t\t[-94.483840, 33.711332],\n\t\t\t\t\t\t[-94.483874, 33.716733],\n\t\t\t\t\t\t[-94.482870, 33.750564],\n\t\t\t\t\t\t[-94.482862, 33.750780],\n\t\t\t\t\t\t[-94.482777, 33.753638],\n\t\t\t\t\t\t[-94.482682, 33.756286],\n\t\t\t\t\t\t[-94.481842, 33.789008],\n\t\t\t\t\t\t[-94.481543, 33.795719],\n\t\t\t\t\t\t[-94.481361, 33.802649],\n\t\t\t\t\t\t[-94.481355, 33.802887],\n\t\t\t\t\t\t[-94.480574, 33.830166],\n\t\t\t\t\t\t[-94.479954, 33.851330],\n\t\t\t\t\t\t[-94.478994, 33.881197],\n\t\t\t\t\t\t[-94.478842, 33.881485],\n\t\t\t\t\t\t[-94.477387, 33.937759],\n\t\t\t\t\t\t[-94.477318, 33.940932],\n\t\t\t\t\t\t[-94.237445, 33.802074],\n\t\t\t\t\t\t[-94.040849, 33.782046],\n\t\t\t\t\t\t[-93.958828, 33.750994],\n\t\t\t\t\t\t[-93.957315, 33.750940],\n\t\t\t\t\t\t[-93.965637, 33.669736],\n\t\t\t\t\t\t[-93.825884, 33.609853],\n\t\t\t\t\t\t[-93.951474, 33.549282],\n\t\t\t\t\t\t[-94.043450, 33.552253]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05083\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"083\",\n\t\t\t\t\"NAME\": \"Logan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 708.125000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.704885, 35.019715],\n\t\t\t\t\t\t[-94.074347, 35.026585],\n\t\t\t\t\t\t[-94.140571, 35.099678],\n\t\t\t\t\t\t[-94.139307, 35.143361],\n\t\t\t\t\t\t[-94.031236, 35.140857],\n\t\t\t\t\t\t[-94.028547, 35.213826],\n\t\t\t\t\t\t[-93.920167, 35.229427],\n\t\t\t\t\t\t[-93.917127, 35.319046],\n\t\t\t\t\t\t[-93.810087, 35.313095],\n\t\t\t\t\t\t[-93.806849, 35.430011],\n\t\t\t\t\t\t[-93.710076, 35.375242],\n\t\t\t\t\t\t[-93.430410, 35.423737],\n\t\t\t\t\t\t[-93.417895, 35.326779],\n\t\t\t\t\t\t[-93.299014, 35.327425],\n\t\t\t\t\t\t[-93.294201, 35.325319],\n\t\t\t\t\t\t[-93.282758, 35.318273],\n\t\t\t\t\t\t[-93.278293, 35.317402],\n\t\t\t\t\t\t[-93.279959, 35.212552],\n\t\t\t\t\t\t[-93.457022, 35.215782],\n\t\t\t\t\t\t[-93.529838, 35.145441],\n\t\t\t\t\t\t[-93.706692, 35.134943],\n\t\t\t\t\t\t[-93.704885, 35.019715]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05087\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"087\",\n\t\t\t\t\"NAME\": \"Madison\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 834.255000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.962892, 35.760930],\n\t\t\t\t\t\t[-93.944177, 36.091103],\n\t\t\t\t\t\t[-93.887775, 36.235046],\n\t\t\t\t\t\t[-93.815605, 36.306563],\n\t\t\t\t\t\t[-93.657689, 36.303082],\n\t\t\t\t\t\t[-93.619974, 36.201208],\n\t\t\t\t\t\t[-93.551135, 36.126271],\n\t\t\t\t\t\t[-93.479528, 36.125072],\n\t\t\t\t\t\t[-93.450715, 35.967493],\n\t\t\t\t\t\t[-93.523639, 35.881592],\n\t\t\t\t\t\t[-93.519204, 35.763521],\n\t\t\t\t\t\t[-93.695981, 35.768649],\n\t\t\t\t\t\t[-93.910588, 35.774246],\n\t\t\t\t\t\t[-93.910836, 35.759752],\n\t\t\t\t\t\t[-93.962892, 35.760930]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US15001\",\n\t\t\t\t\"STATE\": \"15\",\n\t\t\t\t\"COUNTY\": \"001\",\n\t\t\t\t\"NAME\": \"Hawaii\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 4028.417000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-155.778234, 20.245743],\n\t\t\t\t\t\t[-155.772734, 20.245409],\n\t\t\t\t\t\t[-155.746893, 20.232325],\n\t\t\t\t\t\t[-155.737004, 20.222773],\n\t\t\t\t\t\t[-155.735822, 20.212417],\n\t\t\t\t\t\t[-155.732704, 20.205392],\n\t\t\t\t\t\t[-155.653966, 20.167360],\n\t\t\t\t\t\t[-155.630382, 20.146916],\n\t\t\t\t\t\t[-155.624565, 20.145911],\n\t\t\t\t\t\t[-155.607797, 20.137987],\n\t\t\t\t\t\t[-155.600909, 20.126573],\n\t\t\t\t\t\t[-155.598033, 20.124539],\n\t\t\t\t\t\t[-155.590923, 20.122497],\n\t\t\t\t\t\t[-155.581680, 20.123617],\n\t\t\t\t\t\t[-155.568368, 20.130545],\n\t\t\t\t\t\t[-155.558933, 20.131570],\n\t\t\t\t\t\t[-155.523661, 20.120028],\n\t\t\t\t\t\t[-155.516795, 20.115230],\n\t\t\t\t\t\t[-155.502561, 20.114155],\n\t\t\t\t\t\t[-155.468211, 20.104296],\n\t\t\t\t\t\t[-155.443957, 20.095318],\n\t\t\t\t\t\t[-155.405459, 20.078772],\n\t\t\t\t\t\t[-155.402400, 20.075541],\n\t\t\t\t\t\t[-155.387578, 20.067119],\n\t\t\t\t\t\t[-155.330210, 20.038517],\n\t\t\t\t\t\t[-155.295480, 20.024438],\n\t\t\t\t\t\t[-155.282629, 20.021969],\n\t\t\t\t\t\t[-155.270316, 20.014525],\n\t\t\t\t\t\t[-155.240933, 19.990173],\n\t\t\t\t\t\t[-155.204486, 19.969438],\n\t\t\t\t\t\t[-155.194593, 19.958368],\n\t\t\t\t\t\t[-155.179939, 19.949372],\n\t\t\t\t\t\t[-155.149215, 19.922872],\n\t\t\t\t\t\t[-155.144394, 19.920523],\n\t\t\t\t\t\t[-155.131235, 19.906801],\n\t\t\t\t\t\t[-155.124618, 19.897288],\n\t\t\t\t\t\t[-155.121750, 19.886099],\n\t\t\t\t\t\t[-155.107541, 19.872467],\n\t\t\t\t\t\t[-155.098716, 19.867811],\n\t\t\t\t\t\t[-155.095032, 19.867882],\n\t\t\t\t\t\t[-155.086341, 19.855399],\n\t\t\t\t\t\t[-155.084357, 19.849736],\n\t\t\t\t\t\t[-155.085674, 19.838584],\n\t\t\t\t\t\t[-155.088979, 19.826656],\n\t\t\t\t\t\t[-155.094414, 19.814910],\n\t\t\t\t\t\t[-155.092070, 19.799409],\n\t\t\t\t\t\t[-155.091216, 19.776368],\n\t\t\t\t\t\t[-155.093517, 19.771832],\n\t\t\t\t\t\t[-155.093387, 19.737751],\n\t\t\t\t\t\t[-155.087118, 19.728013],\n\t\t\t\t\t\t[-155.079426, 19.726193],\n\t\t\t\t\t\t[-155.063972, 19.728917],\n\t\t\t\t\t\t[-155.045382, 19.739824],\n\t\t\t\t\t\t[-155.006423, 19.739286],\n\t\t\t\t\t\t[-154.997278, 19.728580],\n\t\t\t\t\t\t[-154.987168, 19.708524],\n\t\t\t\t\t\t[-154.981102, 19.690687],\n\t\t\t\t\t\t[-154.984718, 19.672161],\n\t\t\t\t\t\t[-154.983778, 19.641647],\n\t\t\t\t\t\t[-154.974342, 19.633201],\n\t\t\t\t\t\t[-154.963933, 19.627605],\n\t\t\t\t\t\t[-154.950359, 19.626461],\n\t\t\t\t\t\t[-154.947874, 19.624250],\n\t\t\t\t\t\t[-154.947718, 19.621947],\n\t\t\t\t\t\t[-154.951014, 19.613614],\n\t\t\t\t\t\t[-154.947106, 19.604856],\n\t\t\t\t\t\t[-154.933940, 19.597505],\n\t\t\t\t\t\t[-154.928205, 19.592702],\n\t\t\t\t\t\t[-154.924422, 19.586553],\n\t\t\t\t\t\t[-154.903542, 19.570622],\n\t\t\t\t\t\t[-154.875000, 19.556797],\n\t\t\t\t\t\t[-154.852618, 19.549172],\n\t\t\t\t\t\t[-154.837384, 19.538354],\n\t\t\t\t\t\t[-154.826732, 19.537626],\n\t\t\t\t\t\t[-154.814417, 19.530090],\n\t\t\t\t\t\t[-154.809561, 19.522377],\n\t\t\t\t\t\t[-154.809379, 19.519086],\n\t\t\t\t\t\t[-154.822968, 19.481290],\n\t\t\t\t\t\t[-154.838545, 19.463642],\n\t\t\t\t\t\t[-154.868540, 19.438126],\n\t\t\t\t\t\t[-154.887817, 19.426425],\n\t\t\t\t\t\t[-154.928772, 19.397646],\n\t\t\t\t\t\t[-154.944185, 19.381852],\n\t\t\t\t\t\t[-154.964619, 19.365646],\n\t\t\t\t\t\t[-154.980861, 19.349291],\n\t\t\t\t\t\t[-155.020537, 19.331317],\n\t\t\t\t\t\t[-155.061729, 19.316636],\n\t\t\t\t\t\t[-155.113272, 19.290613],\n\t\t\t\t\t\t[-155.133700, 19.276099],\n\t\t\t\t\t\t[-155.159635, 19.268375],\n\t\t\t\t\t\t[-155.172413, 19.269060],\n\t\t\t\t\t\t[-155.187427, 19.266156],\n\t\t\t\t\t\t[-155.196260, 19.261295],\n\t\t\t\t\t\t[-155.205892, 19.260907],\n\t\t\t\t\t\t[-155.243961, 19.271313],\n\t\t\t\t\t\t[-155.264619, 19.274213],\n\t\t\t\t\t\t[-155.296761, 19.266289],\n\t\t\t\t\t\t[-155.303808, 19.261835],\n\t\t\t\t\t\t[-155.313370, 19.250698],\n\t\t\t\t\t\t[-155.341268, 19.234039],\n\t\t\t\t\t\t[-155.349148, 19.217756],\n\t\t\t\t\t\t[-155.360631, 19.208930],\n\t\t\t\t\t\t[-155.378638, 19.202435],\n\t\t\t\t\t\t[-155.390701, 19.201171],\n\t\t\t\t\t\t[-155.417369, 19.187858],\n\t\t\t\t\t\t[-155.427093, 19.179546],\n\t\t\t\t\t\t[-155.432519, 19.170623],\n\t\t\t\t\t\t[-155.453516, 19.151952],\n\t\t\t\t\t\t[-155.465663, 19.146964],\n\t\t\t\t\t\t[-155.505281, 19.137908],\n\t\t\t\t\t\t[-155.514740, 19.132501],\n\t\t\t\t\t\t[-155.512140, 19.128174],\n\t\t\t\t\t\t[-155.512137, 19.124296],\n\t\t\t\t\t\t[-155.519652, 19.117025],\n\t\t\t\t\t\t[-155.526136, 19.115889],\n\t\t\t\t\t\t[-155.528902, 19.113710],\n\t\t\t\t\t\t[-155.544806, 19.091059],\n\t\t\t\t\t\t[-155.551129, 19.088780],\n\t\t\t\t\t\t[-155.557817, 19.082130],\n\t\t\t\t\t\t[-155.555326, 19.069377],\n\t\t\t\t\t\t[-155.555177, 19.053932],\n\t\t\t\t\t\t[-155.557371, 19.046565],\n\t\t\t\t\t\t[-155.566446, 19.032531],\n\t\t\t\t\t\t[-155.576599, 19.027412],\n\t\t\t\t\t\t[-155.581903, 19.022240],\n\t\t\t\t\t\t[-155.596032, 18.998833],\n\t\t\t\t\t\t[-155.596521, 18.980654],\n\t\t\t\t\t\t[-155.601866, 18.971572],\n\t\t\t\t\t\t[-155.613966, 18.970399],\n\t\t\t\t\t\t[-155.625256, 18.961951],\n\t\t\t\t\t\t[-155.625000, 18.959934],\n\t\t\t\t\t\t[-155.638054, 18.941723],\n\t\t\t\t\t\t[-155.658486, 18.924835],\n\t\t\t\t\t\t[-155.672005, 18.917466],\n\t\t\t\t\t\t[-155.681825, 18.918694],\n\t\t\t\t\t\t[-155.687716, 18.923358],\n\t\t\t\t\t\t[-155.690171, 18.932195],\n\t\t\t\t\t\t[-155.693117, 18.940542],\n\t\t\t\t\t\t[-155.726043, 18.969437],\n\t\t\t\t\t\t[-155.763598, 18.981837],\n\t\t\t\t\t\t[-155.806109, 19.013967],\n\t\t\t\t\t\t[-155.853943, 19.023762],\n\t\t\t\t\t\t[-155.881550, 19.036644],\n\t\t\t\t\t\t[-155.884077, 19.039266],\n\t\t\t\t\t\t[-155.886278, 19.055760],\n\t\t\t\t\t\t[-155.903693, 19.080777],\n\t\t\t\t\t\t[-155.908355, 19.081138],\n\t\t\t\t\t\t[-155.921389, 19.121183],\n\t\t\t\t\t\t[-155.917292, 19.155963],\n\t\t\t\t\t\t[-155.903339, 19.217792],\n\t\t\t\t\t\t[-155.904910, 19.230147],\n\t\t\t\t\t\t[-155.902565, 19.258427],\n\t\t\t\t\t\t[-155.895435, 19.274639],\n\t\t\t\t\t\t[-155.890842, 19.298905],\n\t\t\t\t\t\t[-155.887356, 19.337101],\n\t\t\t\t\t\t[-155.888701, 19.348031],\n\t\t\t\t\t\t[-155.898792, 19.377984],\n\t\t\t\t\t\t[-155.913849, 19.401107],\n\t\t\t\t\t\t[-155.909087, 19.415455],\n\t\t\t\t\t\t[-155.921707, 19.430550],\n\t\t\t\t\t\t[-155.924269, 19.438794],\n\t\t\t\t\t\t[-155.925166, 19.468081],\n\t\t\t\t\t\t[-155.922609, 19.478611],\n\t\t\t\t\t\t[-155.924124, 19.481406],\n\t\t\t\t\t\t[-155.930523, 19.484921],\n\t\t\t\t\t\t[-155.935641, 19.485628],\n\t\t\t\t\t\t[-155.936403, 19.481905],\n\t\t\t\t\t\t[-155.939145, 19.481577],\n\t\t\t\t\t\t[-155.951490, 19.486649],\n\t\t\t\t\t\t[-155.952897, 19.488805],\n\t\t\t\t\t\t[-155.953663, 19.510003],\n\t\t\t\t\t\t[-155.960457, 19.546612],\n\t\t\t\t\t\t[-155.962264, 19.551779],\n\t\t\t\t\t\t[-155.965211, 19.554745],\n\t\t\t\t\t\t[-155.969350, 19.555963],\n\t\t\t\t\t\t[-155.970969, 19.586328],\n\t\t\t\t\t\t[-155.978206, 19.608159],\n\t\t\t\t\t\t[-155.997728, 19.642816],\n\t\t\t\t\t\t[-156.028982, 19.650098],\n\t\t\t\t\t\t[-156.032928, 19.653905],\n\t\t\t\t\t\t[-156.034994, 19.659360],\n\t\t\t\t\t\t[-156.033326, 19.669230],\n\t\t\t\t\t\t[-156.027427, 19.672154],\n\t\t\t\t\t\t[-156.029281, 19.678908],\n\t\t\t\t\t\t[-156.036079, 19.690252],\n\t\t\t\t\t\t[-156.047960, 19.698938],\n\t\t\t\t\t\t[-156.051652, 19.703649],\n\t\t\t\t\t\t[-156.052485, 19.718667],\n\t\t\t\t\t\t[-156.064364, 19.730766],\n\t\t\t\t\t\t[-156.057220, 19.742536],\n\t\t\t\t\t\t[-156.052315, 19.756836],\n\t\t\t\t\t\t[-156.049651, 19.780452],\n\t\t\t\t\t\t[-156.021732, 19.802200],\n\t\t\t\t\t\t[-156.006267, 19.817580],\n\t\t\t\t\t\t[-155.982821, 19.845651],\n\t\t\t\t\t\t[-155.976651, 19.850530],\n\t\t\t\t\t\t[-155.964817, 19.855183],\n\t\t\t\t\t\t[-155.949251, 19.857034],\n\t\t\t\t\t\t[-155.945297, 19.853443],\n\t\t\t\t\t\t[-155.940311, 19.852305],\n\t\t\t\t\t\t[-155.925843, 19.858928],\n\t\t\t\t\t\t[-155.926938, 19.870221],\n\t\t\t\t\t\t[-155.925490, 19.875000],\n\t\t\t\t\t\t[-155.915662, 19.887126],\n\t\t\t\t\t\t[-155.901987, 19.912081],\n\t\t\t\t\t\t[-155.894099, 19.923135],\n\t\t\t\t\t\t[-155.894474, 19.926927],\n\t\t\t\t\t\t[-155.892533, 19.932162],\n\t\t\t\t\t\t[-155.866919, 19.954172],\n\t\t\t\t\t\t[-155.856588, 19.968885],\n\t\t\t\t\t\t[-155.840708, 19.976952],\n\t\t\t\t\t\t[-155.838692, 19.975527],\n\t\t\t\t\t\t[-155.835312, 19.976078],\n\t\t\t\t\t\t[-155.831948, 19.982775],\n\t\t\t\t\t\t[-155.828965, 19.995542],\n\t\t\t\t\t\t[-155.825473, 20.025944],\n\t\t\t\t\t\t[-155.828182, 20.035424],\n\t\t\t\t\t\t[-155.850385, 20.062506],\n\t\t\t\t\t\t[-155.866931, 20.078652],\n\t\t\t\t\t\t[-155.884190, 20.106750],\n\t\t\t\t\t\t[-155.899149, 20.145728],\n\t\t\t\t\t\t[-155.906035, 20.205157],\n\t\t\t\t\t\t[-155.901452, 20.235787],\n\t\t\t\t\t\t[-155.890663, 20.255240],\n\t\t\t\t\t\t[-155.882631, 20.263026],\n\t\t\t\t\t\t[-155.873921, 20.267744],\n\t\t\t\t\t\t[-155.853293, 20.271548],\n\t\t\t\t\t\t[-155.811459, 20.260320],\n\t\t\t\t\t\t[-155.783242, 20.246395],\n\t\t\t\t\t\t[-155.778234, 20.245743]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US15007\",\n\t\t\t\t\"STATE\": \"15\",\n\t\t\t\t\"COUNTY\": \"007\",\n\t\t\t\t\"NAME\": \"Kauai\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 619.956000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-160.555771, 21.668287],\n\t\t\t\t\t\t\t[-160.551041, 21.670101],\n\t\t\t\t\t\t\t[-160.543320, 21.667128],\n\t\t\t\t\t\t\t[-160.542404, 21.648081],\n\t\t\t\t\t\t\t[-160.549316, 21.645353],\n\t\t\t\t\t\t\t[-160.554123, 21.649546],\n\t\t\t\t\t\t\t[-160.555771, 21.668287]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-160.125000, 21.959090],\n\t\t\t\t\t\t\t[-160.122262, 21.962881],\n\t\t\t\t\t\t\t[-160.112746, 21.995245],\n\t\t\t\t\t\t\t[-160.096450, 22.001489],\n\t\t\t\t\t\t\t[-160.072123, 22.003334],\n\t\t\t\t\t\t\t[-160.058543, 21.996380],\n\t\t\t\t\t\t\t[-160.051992, 21.983681],\n\t\t\t\t\t\t\t[-160.052729, 21.980321],\n\t\t\t\t\t\t\t[-160.056336, 21.977939],\n\t\t\t\t\t\t\t[-160.060549, 21.976729],\n\t\t\t\t\t\t\t[-160.063349, 21.978354],\n\t\t\t\t\t\t\t[-160.065811, 21.976562],\n\t\t\t\t\t\t\t[-160.078393, 21.955153],\n\t\t\t\t\t\t\t[-160.085787, 21.927295],\n\t\t\t\t\t\t\t[-160.080012, 21.910808],\n\t\t\t\t\t\t\t[-160.079065, 21.896080],\n\t\t\t\t\t\t\t[-160.098897, 21.884711],\n\t\t\t\t\t\t\t[-160.124283, 21.876789],\n\t\t\t\t\t\t\t[-160.147609, 21.872814],\n\t\t\t\t\t\t\t[-160.161620, 21.864746],\n\t\t\t\t\t\t\t[-160.174796, 21.846923],\n\t\t\t\t\t\t\t[-160.189782, 21.822450],\n\t\t\t\t\t\t\t[-160.205211, 21.789053],\n\t\t\t\t\t\t\t[-160.200427, 21.786479],\n\t\t\t\t\t\t\t[-160.205851, 21.779518],\n\t\t\t\t\t\t\t[-160.218044, 21.783755],\n\t\t\t\t\t\t\t[-160.234780, 21.795418],\n\t\t\t\t\t\t\t[-160.249610, 21.815145],\n\t\t\t\t\t\t\t[-160.244943, 21.848943],\n\t\t\t\t\t\t\t[-160.231028, 21.886263],\n\t\t\t\t\t\t\t[-160.228965, 21.889117],\n\t\t\t\t\t\t\t[-160.213830, 21.899193],\n\t\t\t\t\t\t\t[-160.205528, 21.907507],\n\t\t\t\t\t\t\t[-160.202716, 21.912422],\n\t\t\t\t\t\t\t[-160.190158, 21.923592],\n\t\t\t\t\t\t\t[-160.167471, 21.932863],\n\t\t\t\t\t\t\t[-160.137050, 21.948632],\n\t\t\t\t\t\t\t[-160.127302, 21.955508],\n\t\t\t\t\t\t\t[-160.125000, 21.959090]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-159.431707, 22.220015],\n\t\t\t\t\t\t\t[-159.407320, 22.230555],\n\t\t\t\t\t\t\t[-159.388119, 22.223252],\n\t\t\t\t\t\t\t[-159.385977, 22.220009],\n\t\t\t\t\t\t\t[-159.367563, 22.214906],\n\t\t\t\t\t\t\t[-159.359842, 22.214831],\n\t\t\t\t\t\t\t[-159.357227, 22.217744],\n\t\t\t\t\t\t\t[-159.353795, 22.217669],\n\t\t\t\t\t\t\t[-159.339964, 22.208519],\n\t\t\t\t\t\t\t[-159.315613, 22.186817],\n\t\t\t\t\t\t\t[-159.308855, 22.155555],\n\t\t\t\t\t\t\t[-159.297808, 22.149748],\n\t\t\t\t\t\t\t[-159.295875, 22.144547],\n\t\t\t\t\t\t\t[-159.295271, 22.130390],\n\t\t\t\t\t\t\t[-159.297143, 22.113815],\n\t\t\t\t\t\t\t[-159.317451, 22.080944],\n\t\t\t\t\t\t\t[-159.321667, 22.063411],\n\t\t\t\t\t\t\t[-159.324775, 22.058670],\n\t\t\t\t\t\t\t[-159.333267, 22.054639],\n\t\t\t\t\t\t\t[-159.337996, 22.046575],\n\t\t\t\t\t\t\t[-159.341401, 22.028978],\n\t\t\t\t\t\t\t[-159.333224, 21.973005],\n\t\t\t\t\t\t\t[-159.333109, 21.964176],\n\t\t\t\t\t\t\t[-159.334714, 21.961099],\n\t\t\t\t\t\t\t[-159.350828, 21.950817],\n\t\t\t\t\t\t\t[-159.356613, 21.939546],\n\t\t\t\t\t\t\t[-159.382349, 21.924479],\n\t\t\t\t\t\t\t[-159.408284, 21.897781],\n\t\t\t\t\t\t\t[-159.425862, 21.884527],\n\t\t\t\t\t\t\t[-159.446599, 21.871647],\n\t\t\t\t\t\t\t[-159.471962, 21.882920],\n\t\t\t\t\t\t\t[-159.490914, 21.888898],\n\t\t\t\t\t\t\t[-159.517973, 21.890996],\n\t\t\t\t\t\t\t[-159.555415, 21.891355],\n\t\t\t\t\t\t\t[-159.574991, 21.896585],\n\t\t\t\t\t\t\t[-159.577784, 21.900486],\n\t\t\t\t\t\t\t[-159.584272, 21.899038],\n\t\t\t\t\t\t\t[-159.610241, 21.898356],\n\t\t\t\t\t\t\t[-159.637849, 21.917166],\n\t\t\t\t\t\t\t[-159.648132, 21.932970],\n\t\t\t\t\t\t\t[-159.671872, 21.957038],\n\t\t\t\t\t\t\t[-159.681493, 21.960054],\n\t\t\t\t\t\t\t[-159.705255, 21.963427],\n\t\t\t\t\t\t\t[-159.720140, 21.970789],\n\t\t\t\t\t\t\t[-159.758218, 21.980694],\n\t\t\t\t\t\t\t[-159.765735, 21.986593],\n\t\t\t\t\t\t\t[-159.788139, 22.018411],\n\t\t\t\t\t\t\t[-159.790932, 22.031177],\n\t\t\t\t\t\t\t[-159.786543, 22.063690],\n\t\t\t\t\t\t\t[-159.780096, 22.072567],\n\t\t\t\t\t\t\t[-159.748159, 22.100388],\n\t\t\t\t\t\t\t[-159.741223, 22.115666],\n\t\t\t\t\t\t\t[-159.733457, 22.142756],\n\t\t\t\t\t\t\t[-159.726043, 22.152171],\n\t\t\t\t\t\t\t[-159.699978, 22.165252],\n\t\t\t\t\t\t\t[-159.669840, 22.170782],\n\t\t\t\t\t\t\t[-159.608794, 22.207878],\n\t\t\t\t\t\t\t[-159.591596, 22.219456],\n\t\t\t\t\t\t\t[-159.583965, 22.226680],\n\t\t\t\t\t\t\t[-159.559643, 22.229185],\n\t\t\t\t\t\t\t[-159.554166, 22.228212],\n\t\t\t\t\t\t\t[-159.548594, 22.226263],\n\t\t\t\t\t\t\t[-159.541150, 22.216764],\n\t\t\t\t\t\t\t[-159.534594, 22.219403],\n\t\t\t\t\t\t\t[-159.523769, 22.217602],\n\t\t\t\t\t\t\t[-159.519410, 22.215646],\n\t\t\t\t\t\t\t[-159.518348, 22.211182],\n\t\t\t\t\t\t\t[-159.515574, 22.208008],\n\t\t\t\t\t\t\t[-159.507811, 22.205987],\n\t\t\t\t\t\t\t[-159.501055, 22.211064],\n\t\t\t\t\t\t\t[-159.500821, 22.225538],\n\t\t\t\t\t\t\t[-159.488558, 22.233170],\n\t\t\t\t\t\t\t[-159.480158, 22.232715],\n\t\t\t\t\t\t\t[-159.467007, 22.226529],\n\t\t\t\t\t\t\t[-159.456190, 22.228811],\n\t\t\t\t\t\t\t[-159.441809, 22.226321],\n\t\t\t\t\t\t\t[-159.431707, 22.220015]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US16001\",\n\t\t\t\t\"STATE\": \"16\",\n\t\t\t\t\"COUNTY\": \"001\",\n\t\t\t\t\"NAME\": \"Ada\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1052.576000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-115.974946, 43.365081],\n\t\t\t\t\t\t[-115.978695, 43.113421],\n\t\t\t\t\t\t[-116.266168, 43.112553],\n\t\t\t\t\t\t[-116.385964, 43.193445],\n\t\t\t\t\t\t[-116.433111, 43.296436],\n\t\t\t\t\t\t[-116.511722, 43.290253],\n\t\t\t\t\t\t[-116.513364, 43.459320],\n\t\t\t\t\t\t[-116.473713, 43.459216],\n\t\t\t\t\t\t[-116.473492, 43.634103],\n\t\t\t\t\t\t[-116.513123, 43.634183],\n\t\t\t\t\t\t[-116.512559, 43.807216],\n\t\t\t\t\t\t[-116.281687, 43.806937],\n\t\t\t\t\t\t[-116.122476, 43.691256],\n\t\t\t\t\t\t[-115.975767, 43.591338],\n\t\t\t\t\t\t[-115.974946, 43.365081]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US16003\",\n\t\t\t\t\"STATE\": \"16\",\n\t\t\t\t\"COUNTY\": \"003\",\n\t\t\t\t\"NAME\": \"Adams\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1363.056000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-116.891463, 44.840531],\n\t\t\t\t\t\t[-116.852427, 44.887577],\n\t\t\t\t\t\t[-116.831990, 44.933007],\n\t\t\t\t\t\t[-116.835702, 44.940633],\n\t\t\t\t\t\t[-116.844653, 44.949338],\n\t\t\t\t\t\t[-116.850737, 44.958113],\n\t\t\t\t\t\t[-116.858277, 44.978008],\n\t\t\t\t\t\t[-116.845369, 45.017059],\n\t\t\t\t\t\t[-116.783902, 45.079022],\n\t\t\t\t\t\t[-116.729607, 45.142091],\n\t\t\t\t\t\t[-116.709536, 45.203015],\n\t\t\t\t\t\t[-116.696047, 45.254679],\n\t\t\t\t\t\t[-116.691197, 45.269245],\n\t\t\t\t\t\t[-116.343081, 45.268043],\n\t\t\t\t\t\t[-116.282630, 45.134682],\n\t\t\t\t\t\t[-116.144531, 45.107619],\n\t\t\t\t\t\t[-116.089397, 45.063748],\n\t\t\t\t\t\t[-116.186161, 44.887793],\n\t\t\t\t\t\t[-116.205988, 44.767155],\n\t\t\t\t\t\t[-116.157064, 44.703291],\n\t\t\t\t\t\t[-116.157096, 44.498966],\n\t\t\t\t\t\t[-116.299757, 44.444107],\n\t\t\t\t\t\t[-116.407496, 44.443849],\n\t\t\t\t\t\t[-116.527157, 44.490695],\n\t\t\t\t\t\t[-116.528382, 44.614886],\n\t\t\t\t\t\t[-116.624297, 44.662852],\n\t\t\t\t\t\t[-116.624783, 44.837841],\n\t\t\t\t\t\t[-116.891463, 44.840531]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US16009\",\n\t\t\t\t\"STATE\": \"16\",\n\t\t\t\t\"COUNTY\": \"009\",\n\t\t\t\t\"NAME\": \"Benewah\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 776.617000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-117.040019, 47.259272],\n\t\t\t\t\t\t[-117.039843, 47.347201],\n\t\t\t\t\t\t[-117.039857, 47.366093],\n\t\t\t\t\t\t[-116.629147, 47.371701],\n\t\t\t\t\t\t[-116.586576, 47.414662],\n\t\t\t\t\t\t[-116.329496, 47.413781],\n\t\t\t\t\t\t[-116.329586, 47.022442],\n\t\t\t\t\t\t[-116.835438, 47.032576],\n\t\t\t\t\t\t[-117.039821, 47.127265],\n\t\t\t\t\t\t[-117.039836, 47.154734],\n\t\t\t\t\t\t[-117.039871, 47.181858],\n\t\t\t\t\t\t[-117.039888, 47.203282],\n\t\t\t\t\t\t[-117.039899, 47.225515],\n\t\t\t\t\t\t[-117.040019, 47.259272]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US16017\",\n\t\t\t\t\"STATE\": \"16\",\n\t\t\t\t\"COUNTY\": \"017\",\n\t\t\t\t\"NAME\": \"Bonner\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1734.573000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-117.041874, 47.977387],\n\t\t\t\t\t\t[-117.041676, 48.045560],\n\t\t\t\t\t\t[-117.041401, 48.085500],\n\t\t\t\t\t\t[-117.039552, 48.173960],\n\t\t\t\t\t\t[-117.039413, 48.177250],\n\t\t\t\t\t\t[-117.039618, 48.178142],\n\t\t\t\t\t\t[-117.039583, 48.180313],\n\t\t\t\t\t\t[-117.039582, 48.180853],\n\t\t\t\t\t\t[-117.039582, 48.181124],\n\t\t\t\t\t\t[-117.039615, 48.184015],\n\t\t\t\t\t\t[-117.039599, 48.184387],\n\t\t\t\t\t\t[-117.035178, 48.370878],\n\t\t\t\t\t\t[-117.035178, 48.371221],\n\t\t\t\t\t\t[-117.035289, 48.422732],\n\t\t\t\t\t\t[-117.035254, 48.423144],\n\t\t\t\t\t\t[-117.035285, 48.429816],\n\t\t\t\t\t\t[-117.035285, 48.430113],\n\t\t\t\t\t\t[-117.034499, 48.620769],\n\t\t\t\t\t\t[-117.034358, 48.628523],\n\t\t\t\t\t\t[-117.033177, 48.846563],\n\t\t\t\t\t\t[-116.785141, 48.847428],\n\t\t\t\t\t\t[-116.784843, 48.500617],\n\t\t\t\t\t\t[-116.049226, 48.502058],\n\t\t\t\t\t\t[-116.049353, 48.215460],\n\t\t\t\t\t\t[-116.049415, 48.077220],\n\t\t\t\t\t\t[-116.049398, 48.075395],\n\t\t\t\t\t\t[-116.049368, 48.072134],\n\t\t\t\t\t\t[-116.049320, 48.066644],\n\t\t\t\t\t\t[-116.048424, 47.977126],\n\t\t\t\t\t\t[-116.229606, 48.067682],\n\t\t\t\t\t\t[-116.329066, 48.017791],\n\t\t\t\t\t\t[-116.322825, 47.890342],\n\t\t\t\t\t\t[-116.505028, 47.890188],\n\t\t\t\t\t\t[-116.504214, 47.991479],\n\t\t\t\t\t\t[-116.633095, 47.977147],\n\t\t\t\t\t\t[-117.041874, 47.977387]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US16019\",\n\t\t\t\t\"STATE\": \"16\",\n\t\t\t\t\"COUNTY\": \"019\",\n\t\t\t\t\"NAME\": \"Bonneville\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1866.077000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-111.045205, 43.501136],\n\t\t\t\t\t\t[-111.044617, 43.315720],\n\t\t\t\t\t\t[-111.044229, 43.195579],\n\t\t\t\t\t\t[-111.044168, 43.189244],\n\t\t\t\t\t\t[-111.044232, 43.184440],\n\t\t\t\t\t\t[-111.044266, 43.177236],\n\t\t\t\t\t\t[-111.044235, 43.177121],\n\t\t\t\t\t\t[-111.044143, 43.072364],\n\t\t\t\t\t\t[-111.044162, 43.068222],\n\t\t\t\t\t\t[-111.044150, 43.066172],\n\t\t\t\t\t\t[-111.044117, 43.060309],\n\t\t\t\t\t\t[-111.044086, 43.054819],\n\t\t\t\t\t\t[-111.044063, 43.046302],\n\t\t\t\t\t\t[-111.044058, 43.044640],\n\t\t\t\t\t\t[-111.043997, 43.041415],\n\t\t\t\t\t\t[-111.044094, 43.029270],\n\t\t\t\t\t\t[-111.044033, 43.026411],\n\t\t\t\t\t\t[-111.044034, 43.024844],\n\t\t\t\t\t\t[-111.044034, 43.024581],\n\t\t\t\t\t\t[-111.044206, 43.022614],\n\t\t\t\t\t\t[-111.044156, 43.020052],\n\t\t\t\t\t\t[-111.589615, 43.020052],\n\t\t\t\t\t\t[-111.587795, 43.281630],\n\t\t\t\t\t\t[-111.822742, 43.282200],\n\t\t\t\t\t\t[-111.822589, 43.366135],\n\t\t\t\t\t\t[-112.043821, 43.366708],\n\t\t\t\t\t\t[-112.103298, 43.425057],\n\t\t\t\t\t\t[-112.520024, 43.425099],\n\t\t\t\t\t\t[-112.519945, 43.626560],\n\t\t\t\t\t\t[-111.626438, 43.626748],\n\t\t\t\t\t\t[-111.399915, 43.622015],\n\t\t\t\t\t\t[-111.243885, 43.621694],\n\t\t\t\t\t\t[-111.199111, 43.539686],\n\t\t\t\t\t\t[-111.045205, 43.501136]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05089\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"089\",\n\t\t\t\t\"NAME\": \"Marion\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 597.009000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.854049, 36.497983],\n\t\t\t\t\t\t[-92.838876, 36.498033],\n\t\t\t\t\t\t[-92.838621, 36.498079],\n\t\t\t\t\t\t[-92.772341, 36.497772],\n\t\t\t\t\t\t[-92.772333, 36.497772],\n\t\t\t\t\t\t[-92.529145, 36.497739],\n\t\t\t\t\t\t[-92.533175, 36.386563],\n\t\t\t\t\t\t[-92.593128, 36.358337],\n\t\t\t\t\t\t[-92.543034, 36.269342],\n\t\t\t\t\t\t[-92.469262, 36.250904],\n\t\t\t\t\t\t[-92.411852, 36.162123],\n\t\t\t\t\t\t[-92.411502, 36.062756],\n\t\t\t\t\t\t[-92.837776, 36.070124],\n\t\t\t\t\t\t[-92.890695, 36.114132],\n\t\t\t\t\t\t[-92.884954, 36.490891],\n\t\t\t\t\t\t[-92.854049, 36.497983]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05091\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"091\",\n\t\t\t\t\"NAME\": \"Miller\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 625.578000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.043036, 33.079485],\n\t\t\t\t\t\t[-94.042870, 33.092727],\n\t\t\t\t\t\t[-94.043007, 33.133890],\n\t\t\t\t\t\t[-94.043077, 33.138162],\n\t\t\t\t\t\t[-94.043185, 33.143476],\n\t\t\t\t\t\t[-94.042875, 33.199785],\n\t\t\t\t\t\t[-94.042892, 33.202666],\n\t\t\t\t\t\t[-94.042876, 33.215219],\n\t\t\t\t\t\t[-94.042730, 33.241823],\n\t\t\t\t\t\t[-94.043004, 33.250128],\n\t\t\t\t\t\t[-94.043050, 33.260904],\n\t\t\t\t\t\t[-94.042990, 33.271227],\n\t\t\t\t\t\t[-94.042990, 33.271243],\n\t\t\t\t\t\t[-94.043067, 33.330498],\n\t\t\t\t\t\t[-94.043067, 33.347351],\n\t\t\t\t\t\t[-94.043067, 33.352097],\n\t\t\t\t\t\t[-94.043128, 33.358757],\n\t\t\t\t\t\t[-94.042869, 33.371170],\n\t\t\t\t\t\t[-94.043053, 33.377716],\n\t\t\t\t\t\t[-94.042887, 33.420225],\n\t\t\t\t\t\t[-94.042988, 33.431024],\n\t\t\t\t\t\t[-94.042988, 33.435824],\n\t\t\t\t\t\t[-94.043188, 33.470324],\n\t\t\t\t\t\t[-94.043279, 33.491030],\n\t\t\t\t\t\t[-94.043009, 33.493039],\n\t\t\t\t\t\t[-94.043375, 33.542315],\n\t\t\t\t\t\t[-94.043428, 33.551425],\n\t\t\t\t\t\t[-94.043450, 33.552253],\n\t\t\t\t\t\t[-93.951474, 33.549282],\n\t\t\t\t\t\t[-93.825884, 33.609853],\n\t\t\t\t\t\t[-93.822178, 33.613548],\n\t\t\t\t\t\t[-93.816087, 33.610843],\n\t\t\t\t\t\t[-93.812503, 33.603351],\n\t\t\t\t\t\t[-93.817579, 33.586153],\n\t\t\t\t\t\t[-93.823259, 33.580544],\n\t\t\t\t\t\t[-93.827726, 33.571620],\n\t\t\t\t\t\t[-93.814202, 33.564750],\n\t\t\t\t\t\t[-93.798272, 33.552493],\n\t\t\t\t\t\t[-93.803789, 33.549384],\n\t\t\t\t\t\t[-93.807741, 33.545243],\n\t\t\t\t\t\t[-93.798330, 33.542149],\n\t\t\t\t\t\t[-93.792725, 33.547109],\n\t\t\t\t\t\t[-93.792725, 33.541963],\n\t\t\t\t\t\t[-93.792415, 33.535869],\n\t\t\t\t\t\t[-93.778832, 33.524717],\n\t\t\t\t\t\t[-93.780289, 33.519624],\n\t\t\t\t\t\t[-93.773641, 33.504671],\n\t\t\t\t\t\t[-93.772686, 33.498513],\n\t\t\t\t\t\t[-93.722867, 33.481963],\n\t\t\t\t\t\t[-93.733317, 33.420880],\n\t\t\t\t\t\t[-93.665518, 33.327021],\n\t\t\t\t\t\t[-93.750177, 33.183949],\n\t\t\t\t\t\t[-93.734079, 33.155551],\n\t\t\t\t\t\t[-93.850076, 33.145343],\n\t\t\t\t\t\t[-93.860409, 33.092602],\n\t\t\t\t\t\t[-93.804930, 33.019347],\n\t\t\t\t\t\t[-93.814553, 33.019372],\n\t\t\t\t\t\t[-94.024475, 33.019207],\n\t\t\t\t\t\t[-94.027983, 33.019139],\n\t\t\t\t\t\t[-94.035839, 33.019145],\n\t\t\t\t\t\t[-94.041444, 33.019188],\n\t\t\t\t\t\t[-94.042964, 33.019219],\n\t\t\t\t\t\t[-94.043036, 33.079485]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05093\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"093\",\n\t\t\t\t\"NAME\": \"Mississippi\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 900.574000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.933572, 35.533299],\n\t\t\t\t\t\t[-89.957347, 35.528683],\n\t\t\t\t\t\t[-90.017312, 35.555996],\n\t\t\t\t\t\t[-90.028620, 35.555249],\n\t\t\t\t\t\t[-90.032938, 35.553440],\n\t\t\t\t\t\t[-90.039744, 35.548041],\n\t\t\t\t\t\t[-90.034976, 35.480705],\n\t\t\t\t\t\t[-90.034014, 35.468821],\n\t\t\t\t\t\t[-90.047680, 35.459255],\n\t\t\t\t\t\t[-90.059068, 35.457889],\n\t\t\t\t\t\t[-90.067798, 35.466224],\n\t\t\t\t\t\t[-90.072154, 35.470752],\n\t\t\t\t\t\t[-90.074420, 35.472518],\n\t\t\t\t\t\t[-90.107723, 35.476935],\n\t\t\t\t\t\t[-90.152386, 35.436789],\n\t\t\t\t\t\t[-90.286899, 35.438573],\n\t\t\t\t\t\t[-90.287039, 35.439933],\n\t\t\t\t\t\t[-90.286736, 35.699914],\n\t\t\t\t\t\t[-90.288947, 35.996418],\n\t\t\t\t\t\t[-90.288800, 35.996419],\n\t\t\t\t\t\t[-90.158812, 35.997375],\n\t\t\t\t\t\t[-90.127331, 35.997635],\n\t\t\t\t\t\t[-90.126350, 35.997596],\n\t\t\t\t\t\t[-89.972563, 35.998994],\n\t\t\t\t\t\t[-89.965327, 35.998813],\n\t\t\t\t\t\t[-89.961075, 35.999135],\n\t\t\t\t\t\t[-89.959893, 35.999020],\n\t\t\t\t\t\t[-89.959377, 35.999020],\n\t\t\t\t\t\t[-89.959375, 35.999020],\n\t\t\t\t\t\t[-89.901183, 35.999365],\n\t\t\t\t\t\t[-89.896508, 35.999432],\n\t\t\t\t\t\t[-89.875586, 35.999562],\n\t\t\t\t\t\t[-89.875085, 35.999578],\n\t\t\t\t\t\t[-89.874590, 35.999575],\n\t\t\t\t\t\t[-89.869010, 35.999640],\n\t\t\t\t\t\t[-89.770255, 36.000524],\n\t\t\t\t\t\t[-89.769973, 36.000536],\n\t\t\t\t\t\t[-89.737648, 36.000567],\n\t\t\t\t\t\t[-89.737564, 36.000522],\n\t\t\t\t\t\t[-89.733095, 36.000608],\n\t\t\t\t\t\t[-89.719970, 35.974620],\n\t\t\t\t\t\t[-89.686924, 35.947716],\n\t\t\t\t\t\t[-89.687939, 35.905384],\n\t\t\t\t\t\t[-89.688141, 35.896946],\n\t\t\t\t\t\t[-89.714934, 35.906247],\n\t\t\t\t\t\t[-89.733610, 35.904699],\n\t\t\t\t\t\t[-89.756036, 35.896817],\n\t\t\t\t\t\t[-89.765689, 35.891299],\n\t\t\t\t\t\t[-89.771726, 35.879724],\n\t\t\t\t\t\t[-89.773564, 35.871697],\n\t\t\t\t\t\t[-89.772467, 35.865098],\n\t\t\t\t\t\t[-89.769413, 35.861558],\n\t\t\t\t\t\t[-89.749424, 35.852955],\n\t\t\t\t\t\t[-89.729517, 35.847632],\n\t\t\t\t\t\t[-89.709261, 35.838911],\n\t\t\t\t\t\t[-89.702883, 35.834153],\n\t\t\t\t\t\t[-89.701045, 35.828227],\n\t\t\t\t\t\t[-89.703875, 35.820281],\n\t\t\t\t\t\t[-89.821216, 35.756716],\n\t\t\t\t\t\t[-89.865631, 35.746577],\n\t\t\t\t\t\t[-89.889023, 35.750558],\n\t\t\t\t\t\t[-89.905538, 35.759063],\n\t\t\t\t\t\t[-89.909996, 35.759396],\n\t\t\t\t\t\t[-89.950278, 35.738493],\n\t\t\t\t\t\t[-89.956254, 35.733386],\n\t\t\t\t\t\t[-89.958882, 35.723834],\n\t\t\t\t\t\t[-89.955753, 35.690621],\n\t\t\t\t\t\t[-89.937383, 35.665711],\n\t\t\t\t\t\t[-89.922749, 35.655293],\n\t\t\t\t\t\t[-89.906147, 35.651145],\n\t\t\t\t\t\t[-89.890510, 35.652408],\n\t\t\t\t\t\t[-89.884932, 35.655107],\n\t\t\t\t\t\t[-89.909797, 35.537914],\n\t\t\t\t\t\t[-89.933572, 35.533299]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05099\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"099\",\n\t\t\t\t\"NAME\": \"Nevada\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 617.837000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.365585, 33.444459],\n\t\t\t\t\t\t[-93.483974, 33.447223],\n\t\t\t\t\t\t[-93.483097, 33.476075],\n\t\t\t\t\t\t[-93.456709, 33.956837],\n\t\t\t\t\t\t[-93.373406, 33.957070],\n\t\t\t\t\t\t[-93.290571, 33.845133],\n\t\t\t\t\t\t[-93.104290, 33.777011],\n\t\t\t\t\t\t[-93.116361, 33.452909],\n\t\t\t\t\t\t[-93.365585, 33.444459]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05103\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"103\",\n\t\t\t\t\"NAME\": \"Ouachita\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 732.783000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.567156, 33.367200],\n\t\t\t\t\t\t[-92.660238, 33.355613],\n\t\t\t\t\t\t[-92.978469, 33.377280],\n\t\t\t\t\t\t[-93.119014, 33.380293],\n\t\t\t\t\t\t[-93.116361, 33.452909],\n\t\t\t\t\t\t[-93.104290, 33.777011],\n\t\t\t\t\t\t[-92.893534, 33.809943],\n\t\t\t\t\t\t[-92.583054, 33.802198],\n\t\t\t\t\t\t[-92.585030, 33.736514],\n\t\t\t\t\t\t[-92.647931, 33.663785],\n\t\t\t\t\t\t[-92.735657, 33.624295],\n\t\t\t\t\t\t[-92.717454, 33.552444],\n\t\t\t\t\t\t[-92.776729, 33.537648],\n\t\t\t\t\t\t[-92.705093, 33.431215],\n\t\t\t\t\t\t[-92.653211, 33.433968],\n\t\t\t\t\t\t[-92.567156, 33.367200]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05113\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"113\",\n\t\t\t\t\"NAME\": \"Polk\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 857.679000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.465847, 34.352073],\n\t\t\t\t\t\t[-94.465425, 34.359548],\n\t\t\t\t\t\t[-94.464176, 34.402713],\n\t\t\t\t\t\t[-94.463816, 34.414465],\n\t\t\t\t\t\t[-94.463671, 34.419585],\n\t\t\t\t\t\t[-94.461149, 34.507457],\n\t\t\t\t\t\t[-94.460058, 34.545264],\n\t\t\t\t\t\t[-94.460052, 34.547869],\n\t\t\t\t\t\t[-94.457500, 34.634945],\n\t\t\t\t\t\t[-94.457530, 34.642961],\n\t\t\t\t\t\t[-94.454576, 34.728962],\n\t\t\t\t\t\t[-94.317659, 34.697408],\n\t\t\t\t\t\t[-94.018168, 34.692469],\n\t\t\t\t\t\t[-93.930509, 34.665608],\n\t\t\t\t\t\t[-93.935371, 34.350097],\n\t\t\t\t\t\t[-94.254668, 34.355481],\n\t\t\t\t\t\t[-94.243739, 34.192501],\n\t\t\t\t\t\t[-94.470292, 34.189864],\n\t\t\t\t\t\t[-94.465847, 34.352073]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05115\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"115\",\n\t\t\t\t\"NAME\": \"Pope\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 812.548000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.896109, 35.170678],\n\t\t\t\t\t\t[-93.084678, 35.127390],\n\t\t\t\t\t\t[-93.156078, 35.235307],\n\t\t\t\t\t\t[-93.278293, 35.317402],\n\t\t\t\t\t\t[-93.282758, 35.318273],\n\t\t\t\t\t\t[-93.294201, 35.325319],\n\t\t\t\t\t\t[-93.299014, 35.327425],\n\t\t\t\t\t\t[-93.295910, 35.469915],\n\t\t\t\t\t\t[-93.223633, 35.468593],\n\t\t\t\t\t\t[-93.221170, 35.598938],\n\t\t\t\t\t\t[-93.167800, 35.597695],\n\t\t\t\t\t\t[-93.164452, 35.728831],\n\t\t\t\t\t\t[-92.951315, 35.724663],\n\t\t\t\t\t\t[-92.809763, 35.722401],\n\t\t\t\t\t\t[-92.813417, 35.549000],\n\t\t\t\t\t\t[-92.850624, 35.462950],\n\t\t\t\t\t\t[-92.855000, 35.172777],\n\t\t\t\t\t\t[-92.896109, 35.170678]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05121\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"121\",\n\t\t\t\t\"NAME\": \"Randolph\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 652.191000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.407137, 36.497112],\n\t\t\t\t\t\t[-91.405141, 36.497165],\n\t\t\t\t\t\t[-91.404915, 36.497120],\n\t\t\t\t\t\t[-91.227398, 36.497617],\n\t\t\t\t\t\t[-91.218645, 36.497564],\n\t\t\t\t\t\t[-91.217360, 36.497511],\n\t\t\t\t\t\t[-91.126529, 36.497712],\n\t\t\t\t\t\t[-91.096277, 36.497893],\n\t\t\t\t\t\t[-91.095880, 36.497870],\n\t\t\t\t\t\t[-91.017974, 36.498062],\n\t\t\t\t\t\t[-91.008558, 36.498270],\n\t\t\t\t\t\t[-90.963063, 36.498418],\n\t\t\t\t\t\t[-90.960648, 36.498426],\n\t\t\t\t\t\t[-90.879220, 36.498378],\n\t\t\t\t\t\t[-90.876867, 36.498423],\n\t\t\t\t\t\t[-90.876567, 36.498313],\n\t\t\t\t\t\t[-90.873775, 36.498074],\n\t\t\t\t\t\t[-90.850434, 36.498548],\n\t\t\t\t\t\t[-90.784398, 36.498524],\n\t\t\t\t\t\t[-90.748637, 36.412764],\n\t\t\t\t\t\t[-90.751803, 36.279960],\n\t\t\t\t\t\t[-90.806615, 36.266865],\n\t\t\t\t\t\t[-90.809816, 36.149567],\n\t\t\t\t\t\t[-91.082681, 36.150871],\n\t\t\t\t\t\t[-91.258920, 36.257880],\n\t\t\t\t\t\t[-91.308733, 36.420363],\n\t\t\t\t\t\t[-91.407137, 36.497112]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05133\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"133\",\n\t\t\t\t\"NAME\": \"Sevier\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 565.126000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.477318, 33.940932],\n\t\t\t\t\t\t[-94.477038, 33.953838],\n\t\t\t\t\t\t[-94.476957, 33.957365],\n\t\t\t\t\t\t[-94.474895, 34.019655],\n\t\t\t\t\t\t[-94.474896, 34.021838],\n\t\t\t\t\t\t[-94.474896, 34.021877],\n\t\t\t\t\t\t[-94.470292, 34.189864],\n\t\t\t\t\t\t[-94.243739, 34.192501],\n\t\t\t\t\t\t[-94.090096, 34.187141],\n\t\t\t\t\t\t[-94.070085, 33.926994],\n\t\t\t\t\t\t[-93.964699, 33.796211],\n\t\t\t\t\t\t[-93.958828, 33.750994],\n\t\t\t\t\t\t[-94.040849, 33.782046],\n\t\t\t\t\t\t[-94.237445, 33.802074],\n\t\t\t\t\t\t[-94.477318, 33.940932]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05137\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"137\",\n\t\t\t\t\"NAME\": \"Stone\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 606.405000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.195430, 36.132798],\n\t\t\t\t\t\t[-92.063576, 36.024372],\n\t\t\t\t\t\t[-92.108622, 35.931328],\n\t\t\t\t\t\t[-91.953020, 35.931644],\n\t\t\t\t\t\t[-91.849448, 35.867411],\n\t\t\t\t\t\t[-91.870983, 35.810562],\n\t\t\t\t\t\t[-91.837179, 35.704932],\n\t\t\t\t\t\t[-92.240520, 35.712190],\n\t\t\t\t\t\t[-92.418408, 35.716046],\n\t\t\t\t\t\t[-92.416719, 35.788590],\n\t\t\t\t\t\t[-92.414324, 35.975865],\n\t\t\t\t\t\t[-92.307220, 35.974022],\n\t\t\t\t\t\t[-92.304951, 36.061080],\n\t\t\t\t\t\t[-92.197649, 36.059287],\n\t\t\t\t\t\t[-92.195430, 36.132798]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13317\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"317\",\n\t\t\t\t\"NAME\": \"Wilkes\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 469.490000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.645451, 33.984195],\n\t\t\t\t\t\t[-82.593527, 33.827322],\n\t\t\t\t\t\t[-82.479518, 33.639535],\n\t\t\t\t\t\t[-82.649705, 33.608768],\n\t\t\t\t\t\t[-82.652439, 33.611202],\n\t\t\t\t\t\t[-82.655937, 33.606610],\n\t\t\t\t\t\t[-82.652208, 33.596718],\n\t\t\t\t\t\t[-82.656606, 33.596812],\n\t\t\t\t\t\t[-82.659120, 33.603048],\n\t\t\t\t\t\t[-82.670284, 33.604138],\n\t\t\t\t\t\t[-82.679975, 33.599792],\n\t\t\t\t\t\t[-82.812958, 33.655836],\n\t\t\t\t\t\t[-82.890599, 33.632877],\n\t\t\t\t\t\t[-82.949046, 33.733333],\n\t\t\t\t\t\t[-82.987286, 33.780710],\n\t\t\t\t\t\t[-82.874587, 33.921767],\n\t\t\t\t\t\t[-82.779506, 33.971124],\n\t\t\t\t\t\t[-82.645451, 33.984195]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13321\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"321\",\n\t\t\t\t\"NAME\": \"Worth\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 570.702000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.939437, 31.847929],\n\t\t\t\t\t\t[-83.802223, 31.803495],\n\t\t\t\t\t\t[-83.786880, 31.622810],\n\t\t\t\t\t\t[-83.649384, 31.567977],\n\t\t\t\t\t\t[-83.654090, 31.330661],\n\t\t\t\t\t\t[-83.999430, 31.334966],\n\t\t\t\t\t\t[-83.997796, 31.443753],\n\t\t\t\t\t\t[-83.997679, 31.462773],\n\t\t\t\t\t\t[-83.982569, 31.463480],\n\t\t\t\t\t\t[-84.018404, 31.650274],\n\t\t\t\t\t\t[-84.032344, 31.716772],\n\t\t\t\t\t\t[-83.939437, 31.847929]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US04005\",\n\t\t\t\t\"STATE\": \"04\",\n\t\t\t\t\"COUNTY\": \"005\",\n\t\t\t\t\"NAME\": \"Coconino\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 18618.885000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-112.538593, 37.000674],\n\t\t\t\t\t\t[-112.534545, 37.000684],\n\t\t\t\t\t\t[-112.368946, 37.001125],\n\t\t\t\t\t\t[-112.357690, 37.001025],\n\t\t\t\t\t\t[-111.412784, 37.001478],\n\t\t\t\t\t\t[-111.405869, 37.001481],\n\t\t\t\t\t\t[-111.405517, 37.001497],\n\t\t\t\t\t\t[-111.189888, 37.000959],\n\t\t\t\t\t\t[-110.750690, 37.003197],\n\t\t\t\t\t\t[-110.750698, 36.409949],\n\t\t\t\t\t\t[-110.750692, 35.814879],\n\t\t\t\t\t\t[-110.750693, 35.500008],\n\t\t\t\t\t\t[-110.750678, 34.263314],\n\t\t\t\t\t\t[-110.788078, 34.309060],\n\t\t\t\t\t\t[-110.848059, 34.267205],\n\t\t\t\t\t\t[-111.096661, 34.396431],\n\t\t\t\t\t\t[-111.147094, 34.375185],\n\t\t\t\t\t\t[-111.250878, 34.453301],\n\t\t\t\t\t\t[-111.397229, 34.426062],\n\t\t\t\t\t\t[-111.427266, 34.386149],\n\t\t\t\t\t\t[-111.423066, 34.437225],\n\t\t\t\t\t\t[-111.550328, 34.419057],\n\t\t\t\t\t\t[-111.472046, 34.462265],\n\t\t\t\t\t\t[-111.502415, 34.498057],\n\t\t\t\t\t\t[-111.555124, 34.472196],\n\t\t\t\t\t\t[-111.552106, 34.802520],\n\t\t\t\t\t\t[-111.777910, 34.803318],\n\t\t\t\t\t\t[-111.777815, 34.981315],\n\t\t\t\t\t\t[-111.809215, 34.976215],\n\t\t\t\t\t\t[-112.334536, 34.973024],\n\t\t\t\t\t\t[-112.335716, 35.148279],\n\t\t\t\t\t\t[-112.442300, 35.149408],\n\t\t\t\t\t\t[-112.440751, 35.260468],\n\t\t\t\t\t\t[-112.472700, 35.238312],\n\t\t\t\t\t\t[-112.577399, 35.243394],\n\t\t\t\t\t\t[-112.694846, 35.311586],\n\t\t\t\t\t\t[-112.754838, 35.306301],\n\t\t\t\t\t\t[-112.953410, 35.356110],\n\t\t\t\t\t\t[-112.975855, 35.392904],\n\t\t\t\t\t\t[-113.148055, 35.478595],\n\t\t\t\t\t\t[-113.174458, 35.506445],\n\t\t\t\t\t\t[-113.301303, 35.531118],\n\t\t\t\t\t\t[-113.320367, 35.530570],\n\t\t\t\t\t\t[-113.329569, 35.528108],\n\t\t\t\t\t\t[-113.334161, 35.528037],\n\t\t\t\t\t\t[-113.333922, 35.800736],\n\t\t\t\t\t\t[-113.310523, 35.864350],\n\t\t\t\t\t\t[-113.317122, 35.961385],\n\t\t\t\t\t\t[-113.354176, 36.040368],\n\t\t\t\t\t\t[-113.319971, 36.096769],\n\t\t\t\t\t\t[-113.231146, 36.089524],\n\t\t\t\t\t\t[-113.199230, 36.151389],\n\t\t\t\t\t\t[-113.137080, 36.166424],\n\t\t\t\t\t\t[-113.009038, 36.239040],\n\t\t\t\t\t\t[-112.792436, 36.285036],\n\t\t\t\t\t\t[-112.723991, 36.345992],\n\t\t\t\t\t\t[-112.681571, 36.341662],\n\t\t\t\t\t\t[-112.629727, 36.392322],\n\t\t\t\t\t\t[-112.645121, 36.457311],\n\t\t\t\t\t\t[-112.621855, 36.485017],\n\t\t\t\t\t\t[-112.660326, 36.539631],\n\t\t\t\t\t\t[-112.538593, 37.000674]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US04009\",\n\t\t\t\t\"STATE\": \"04\",\n\t\t\t\t\"COUNTY\": \"009\",\n\t\t\t\t\"NAME\": \"Graham\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 4622.597000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-110.449021, 33.194526],\n\t\t\t\t\t\t[-110.401536, 33.196612],\n\t\t\t\t\t\t[-110.457194, 33.295268],\n\t\t\t\t\t\t[-110.441544, 33.381670],\n\t\t\t\t\t\t[-110.340949, 33.427066],\n\t\t\t\t\t\t[-110.000646, 33.465916],\n\t\t\t\t\t\t[-110.000649, 33.576930],\n\t\t\t\t\t\t[-109.891759, 33.567829],\n\t\t\t\t\t\t[-109.799782, 33.488314],\n\t\t\t\t\t\t[-109.495440, 33.652697],\n\t\t\t\t\t\t[-109.495740, 33.078409],\n\t\t\t\t\t\t[-109.213829, 32.680661],\n\t\t\t\t\t\t[-109.226070, 32.529096],\n\t\t\t\t\t\t[-109.113987, 32.426177],\n\t\t\t\t\t\t[-109.227815, 32.424475],\n\t\t\t\t\t\t[-110.451503, 32.427354],\n\t\t\t\t\t\t[-110.451228, 32.504408],\n\t\t\t\t\t\t[-110.451221, 32.513807],\n\t\t\t\t\t\t[-110.449164, 32.513792],\n\t\t\t\t\t\t[-110.449021, 33.194526]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US04011\",\n\t\t\t\t\"STATE\": \"04\",\n\t\t\t\t\"COUNTY\": \"011\",\n\t\t\t\t\"NAME\": \"Greenlee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1843.126000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-109.047117, 32.777569],\n\t\t\t\t\t\t[-109.047638, 32.693439],\n\t\t\t\t\t\t[-109.047645, 32.689988],\n\t\t\t\t\t\t[-109.047653, 32.686327],\n\t\t\t\t\t\t[-109.047653, 32.681379],\n\t\t\t\t\t\t[-109.047926, 32.426376],\n\t\t\t\t\t\t[-109.113987, 32.426177],\n\t\t\t\t\t\t[-109.226070, 32.529096],\n\t\t\t\t\t\t[-109.213829, 32.680661],\n\t\t\t\t\t\t[-109.495740, 33.078409],\n\t\t\t\t\t\t[-109.495440, 33.652697],\n\t\t\t\t\t\t[-109.348062, 33.777520],\n\t\t\t\t\t\t[-109.046627, 33.778233],\n\t\t\t\t\t\t[-109.046870, 33.372654],\n\t\t\t\t\t\t[-109.047045, 33.369280],\n\t\t\t\t\t\t[-109.046909, 33.365570],\n\t\t\t\t\t\t[-109.046827, 33.365272],\n\t\t\t\t\t\t[-109.047237, 33.208965],\n\t\t\t\t\t\t[-109.047116, 33.137995],\n\t\t\t\t\t\t[-109.047117, 33.137559],\n\t\t\t\t\t\t[-109.047013, 33.092917],\n\t\t\t\t\t\t[-109.046905, 33.091931],\n\t\t\t\t\t\t[-109.047453, 33.069427],\n\t\t\t\t\t\t[-109.047480, 33.068420],\n\t\t\t\t\t\t[-109.047117, 32.777570],\n\t\t\t\t\t\t[-109.047117, 32.777569]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US04012\",\n\t\t\t\t\"STATE\": \"04\",\n\t\t\t\t\"COUNTY\": \"012\",\n\t\t\t\t\"NAME\": \"La Paz\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 4499.629000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-114.627125, 33.433554],\n\t\t\t\t\t\t[-114.622918, 33.456561],\n\t\t\t\t\t\t[-114.594534, 33.495059],\n\t\t\t\t\t\t[-114.558898, 33.531819],\n\t\t\t\t\t\t[-114.535664, 33.568788],\n\t\t\t\t\t\t[-114.535965, 33.569154],\n\t\t\t\t\t\t[-114.540300, 33.580615],\n\t\t\t\t\t\t[-114.540617, 33.591412],\n\t\t\t\t\t\t[-114.530348, 33.679245],\n\t\t\t\t\t\t[-114.523959, 33.685879],\n\t\t\t\t\t\t[-114.519113, 33.688473],\n\t\t\t\t\t\t[-114.496489, 33.696901],\n\t\t\t\t\t\t[-114.494197, 33.707922],\n\t\t\t\t\t\t[-114.504340, 33.756381],\n\t\t\t\t\t\t[-114.523365, 33.806120],\n\t\t\t\t\t\t[-114.525539, 33.838614],\n\t\t\t\t\t\t[-114.518434, 33.917518],\n\t\t\t\t\t\t[-114.499883, 33.961789],\n\t\t\t\t\t\t[-114.463610, 33.993431],\n\t\t\t\t\t\t[-114.438266, 34.022609],\n\t\t\t\t\t\t[-114.434949, 34.037784],\n\t\t\t\t\t\t[-114.435429, 34.079727],\n\t\t\t\t\t\t[-114.433380, 34.088413],\n\t\t\t\t\t\t[-114.420499, 34.103466],\n\t\t\t\t\t\t[-114.411681, 34.110031],\n\t\t\t\t\t\t[-114.401352, 34.111652],\n\t\t\t\t\t\t[-114.390565, 34.110084],\n\t\t\t\t\t\t[-114.366521, 34.118575],\n\t\t\t\t\t\t[-114.321618, 34.138093],\n\t\t\t\t\t\t[-114.312592, 34.144453],\n\t\t\t\t\t\t[-114.244191, 34.179625],\n\t\t\t\t\t\t[-114.225861, 34.201774],\n\t\t\t\t\t\t[-114.164476, 34.251667],\n\t\t\t\t\t\t[-114.133264, 34.258462],\n\t\t\t\t\t\t[-114.131489, 34.260387],\n\t\t\t\t\t\t[-114.138282, 34.303230],\n\t\t\t\t\t\t[-114.031132, 34.259819],\n\t\t\t\t\t\t[-113.603079, 34.231049],\n\t\t\t\t\t\t[-113.539524, 34.306377],\n\t\t\t\t\t\t[-113.370507, 34.291968],\n\t\t\t\t\t\t[-113.333508, 34.317877],\n\t\t\t\t\t\t[-113.333316, 34.001030],\n\t\t\t\t\t\t[-113.333753, 33.999227],\n\t\t\t\t\t\t[-113.333823, 33.911661],\n\t\t\t\t\t\t[-113.333313, 33.565710],\n\t\t\t\t\t\t[-113.333920, 33.377425],\n\t\t\t\t\t\t[-113.958046, 33.377578],\n\t\t\t\t\t\t[-113.958042, 33.464655],\n\t\t\t\t\t\t[-114.267815, 33.463574],\n\t\t\t\t\t\t[-114.268748, 33.029815],\n\t\t\t\t\t\t[-114.516912, 33.026871],\n\t\t\t\t\t\t[-114.523578, 33.030961],\n\t\t\t\t\t\t[-114.571653, 33.036624],\n\t\t\t\t\t\t[-114.578287, 33.035375],\n\t\t\t\t\t\t[-114.584765, 33.028231],\n\t\t\t\t\t\t[-114.589778, 33.026228],\n\t\t\t\t\t\t[-114.606282, 33.025703],\n\t\t\t\t\t\t[-114.623870, 33.028720],\n\t\t\t\t\t\t[-114.675104, 33.047532],\n\t\t\t\t\t\t[-114.707819, 33.091102],\n\t\t\t\t\t\t[-114.706175, 33.105335],\n\t\t\t\t\t\t[-114.696829, 33.131209],\n\t\t\t\t\t\t[-114.687074, 33.142196],\n\t\t\t\t\t\t[-114.679359, 33.159519],\n\t\t\t\t\t\t[-114.675360, 33.185489],\n\t\t\t\t\t\t[-114.672088, 33.258499],\n\t\t\t\t\t\t[-114.700103, 33.341045],\n\t\t\t\t\t\t[-114.721233, 33.396912],\n\t\t\t\t\t\t[-114.665278, 33.415358],\n\t\t\t\t\t\t[-114.627125, 33.433554]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US04017\",\n\t\t\t\t\"STATE\": \"04\",\n\t\t\t\t\"COUNTY\": \"017\",\n\t\t\t\t\"NAME\": \"Navajo\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 9950.422000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-110.000674, 35.662657],\n\t\t\t\t\t\t[-109.826936, 35.662484],\n\t\t\t\t\t\t[-109.843764, 35.517875],\n\t\t\t\t\t\t[-109.844624, 34.822562],\n\t\t\t\t\t\t[-109.865231, 34.559689],\n\t\t\t\t\t\t[-109.848246, 34.473435],\n\t\t\t\t\t\t[-109.849387, 34.125945],\n\t\t\t\t\t\t[-109.859274, 33.777683],\n\t\t\t\t\t\t[-109.891766, 33.777777],\n\t\t\t\t\t\t[-109.891759, 33.567829],\n\t\t\t\t\t\t[-110.000649, 33.576930],\n\t\t\t\t\t\t[-110.000660, 34.000046],\n\t\t\t\t\t\t[-110.750672, 34.000048],\n\t\t\t\t\t\t[-110.750678, 34.263314],\n\t\t\t\t\t\t[-110.750693, 35.500008],\n\t\t\t\t\t\t[-110.750692, 35.814879],\n\t\t\t\t\t\t[-110.750698, 36.409949],\n\t\t\t\t\t\t[-110.750690, 37.003197],\n\t\t\t\t\t\t[-110.495259, 37.003875],\n\t\t\t\t\t\t[-110.331050, 36.998216],\n\t\t\t\t\t\t[-110.000677, 36.997968],\n\t\t\t\t\t\t[-109.999188, 36.695911],\n\t\t\t\t\t\t[-110.000673, 35.844269],\n\t\t\t\t\t\t[-110.000674, 35.662657]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US04021\",\n\t\t\t\t\"STATE\": \"04\",\n\t\t\t\t\"COUNTY\": \"021\",\n\t\t\t\t\"NAME\": \"Pinal\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 5365.612000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-111.270610, 32.501366],\n\t\t\t\t\t\t[-111.792534, 32.506779],\n\t\t\t\t\t\t[-112.203719, 32.506760],\n\t\t\t\t\t\t[-112.203288, 33.310533],\n\t\t\t\t\t\t[-112.191784, 33.265039],\n\t\t\t\t\t\t[-112.083488, 33.204560],\n\t\t\t\t\t\t[-111.893085, 33.204811],\n\t\t\t\t\t\t[-111.686035, 33.204637],\n\t\t\t\t\t\t[-111.583047, 33.205450],\n\t\t\t\t\t\t[-111.580626, 33.465902],\n\t\t\t\t\t\t[-111.269760, 33.465538],\n\t\t\t\t\t\t[-111.250681, 33.464902],\n\t\t\t\t\t\t[-111.039905, 33.466104],\n\t\t\t\t\t\t[-110.974706, 33.342095],\n\t\t\t\t\t\t[-110.946684, 33.250053],\n\t\t\t\t\t\t[-110.780811, 32.983722],\n\t\t\t\t\t\t[-110.678006, 33.111182],\n\t\t\t\t\t\t[-110.525952, 33.159198],\n\t\t\t\t\t\t[-110.449021, 33.194526],\n\t\t\t\t\t\t[-110.449164, 32.513792],\n\t\t\t\t\t\t[-110.451221, 32.513807],\n\t\t\t\t\t\t[-110.785444, 32.513539],\n\t\t\t\t\t\t[-110.844923, 32.513767],\n\t\t\t\t\t\t[-110.844943, 32.511211],\n\t\t\t\t\t\t[-110.925567, 32.511391],\n\t\t\t\t\t\t[-111.270610, 32.501366]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US04023\",\n\t\t\t\t\"STATE\": \"04\",\n\t\t\t\t\"COUNTY\": \"023\",\n\t\t\t\t\"NAME\": \"Santa Cruz\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1236.916000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-111.163995, 31.618687],\n\t\t\t\t\t\t[-111.164183, 31.725983],\n\t\t\t\t\t\t[-111.158299, 31.726007],\n\t\t\t\t\t\t[-110.451736, 31.731267],\n\t\t\t\t\t\t[-110.460172, 31.333051],\n\t\t\t\t\t\t[-110.760997, 31.332765],\n\t\t\t\t\t\t[-110.976828, 31.332560],\n\t\t\t\t\t\t[-111.098097, 31.339836],\n\t\t\t\t\t\t[-111.366635, 31.425880],\n\t\t\t\t\t\t[-111.366613, 31.521291],\n\t\t\t\t\t\t[-111.163725, 31.521826],\n\t\t\t\t\t\t[-111.163995, 31.618687]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US04027\",\n\t\t\t\t\"STATE\": \"04\",\n\t\t\t\t\"COUNTY\": \"027\",\n\t\t\t\t\"NAME\": \"Yuma\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 5513.992000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-114.719633, 32.718763],\n\t\t\t\t\t\t[-114.678632, 32.736614],\n\t\t\t\t\t\t[-114.677091, 32.736218],\n\t\t\t\t\t\t[-114.658840, 32.733830],\n\t\t\t\t\t\t[-114.658260, 32.733799],\n\t\t\t\t\t\t[-114.615585, 32.728446],\n\t\t\t\t\t\t[-114.615733, 32.729427],\n\t\t\t\t\t\t[-114.496827, 32.822119],\n\t\t\t\t\t\t[-114.496284, 32.822326],\n\t\t\t\t\t\t[-114.465715, 32.879191],\n\t\t\t\t\t\t[-114.465715, 32.879420],\n\t\t\t\t\t\t[-114.462890, 32.905797],\n\t\t\t\t\t\t[-114.468605, 32.971649],\n\t\t\t\t\t\t[-114.511343, 33.023455],\n\t\t\t\t\t\t[-114.516912, 33.026871],\n\t\t\t\t\t\t[-114.268748, 33.029815],\n\t\t\t\t\t\t[-114.267815, 33.463574],\n\t\t\t\t\t\t[-113.958042, 33.464655],\n\t\t\t\t\t\t[-113.958046, 33.377578],\n\t\t\t\t\t\t[-113.333920, 33.377425],\n\t\t\t\t\t\t[-113.333212, 33.227210],\n\t\t\t\t\t\t[-113.333897, 32.504938],\n\t\t\t\t\t\t[-113.333794, 32.038521],\n\t\t\t\t\t\t[-113.493196, 32.088943],\n\t\t\t\t\t\t[-114.250775, 32.323910],\n\t\t\t\t\t\t[-114.813613, 32.494277],\n\t\t\t\t\t\t[-114.809393, 32.617119],\n\t\t\t\t\t\t[-114.807390, 32.621332],\n\t\t\t\t\t\t[-114.799302, 32.625115],\n\t\t\t\t\t\t[-114.781872, 32.625050],\n\t\t\t\t\t\t[-114.753111, 32.658304],\n\t\t\t\t\t\t[-114.748000, 32.664184],\n\t\t\t\t\t\t[-114.719633, 32.718763]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05003\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"003\",\n\t\t\t\t\"NAME\": \"Ashley\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 925.349000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.460370, 33.006246],\n\t\t\t\t\t\t[-91.559494, 33.006840],\n\t\t\t\t\t\t[-91.572326, 33.006908],\n\t\t\t\t\t\t[-91.579639, 33.006472],\n\t\t\t\t\t\t[-91.579802, 33.006518],\n\t\t\t\t\t\t[-91.609001, 33.006556],\n\t\t\t\t\t\t[-91.617615, 33.006717],\n\t\t\t\t\t\t[-91.626670, 33.006639],\n\t\t\t\t\t\t[-91.950001, 33.007520],\n\t\t\t\t\t\t[-91.951958, 33.007428],\n\t\t\t\t\t\t[-92.069105, 33.008163],\n\t\t\t\t\t\t[-92.109611, 33.034054],\n\t\t\t\t\t\t[-92.137527, 33.162956],\n\t\t\t\t\t\t[-92.128464, 33.208775],\n\t\t\t\t\t\t[-91.977284, 33.302026],\n\t\t\t\t\t\t[-91.990167, 33.398214],\n\t\t\t\t\t\t[-91.457370, 33.388974],\n\t\t\t\t\t\t[-91.460370, 33.006246]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05013\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"013\",\n\t\t\t\t\"NAME\": \"Calhoun\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 628.581000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.350432, 33.298941],\n\t\t\t\t\t\t[-92.445399, 33.274859],\n\t\t\t\t\t\t[-92.567156, 33.367200],\n\t\t\t\t\t\t[-92.653211, 33.433968],\n\t\t\t\t\t\t[-92.705093, 33.431215],\n\t\t\t\t\t\t[-92.776729, 33.537648],\n\t\t\t\t\t\t[-92.717454, 33.552444],\n\t\t\t\t\t\t[-92.735657, 33.624295],\n\t\t\t\t\t\t[-92.647931, 33.663785],\n\t\t\t\t\t\t[-92.585030, 33.736514],\n\t\t\t\t\t\t[-92.583054, 33.802198],\n\t\t\t\t\t\t[-92.334249, 33.795065],\n\t\t\t\t\t\t[-92.330839, 33.707806],\n\t\t\t\t\t\t[-92.311079, 33.499782],\n\t\t\t\t\t\t[-92.374467, 33.378650],\n\t\t\t\t\t\t[-92.350432, 33.298941]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US16071\",\n\t\t\t\t\"STATE\": \"16\",\n\t\t\t\t\"COUNTY\": \"071\",\n\t\t\t\t\"NAME\": \"Oneida\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1200.061000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-112.109528, 41.997105],\n\t\t\t\t\t\t[-112.163956, 41.996708],\n\t\t\t\t\t\t[-112.239107, 42.001217],\n\t\t\t\t\t\t[-112.264936, 42.000991],\n\t\t\t\t\t\t[-112.386170, 42.001126],\n\t\t\t\t\t\t[-112.450567, 42.001092],\n\t\t\t\t\t\t[-112.450814, 42.000953],\n\t\t\t\t\t\t[-112.648019, 42.000307],\n\t\t\t\t\t\t[-112.709375, 42.000309],\n\t\t\t\t\t\t[-112.788542, 41.999681],\n\t\t\t\t\t\t[-112.833084, 41.999305],\n\t\t\t\t\t\t[-112.833125, 41.999345],\n\t\t\t\t\t\t[-112.880619, 41.998921],\n\t\t\t\t\t\t[-112.882367, 41.998922],\n\t\t\t\t\t\t[-112.909587, 41.998791],\n\t\t\t\t\t\t[-112.979218, 41.998263],\n\t\t\t\t\t\t[-113.000820, 41.998223],\n\t\t\t\t\t\t[-113.000823, 42.327483],\n\t\t\t\t\t\t[-112.653990, 42.328869],\n\t\t\t\t\t\t[-112.653989, 42.415978],\n\t\t\t\t\t\t[-112.497790, 42.415980],\n\t\t\t\t\t\t[-112.498169, 42.503046],\n\t\t\t\t\t\t[-112.419995, 42.502857],\n\t\t\t\t\t\t[-112.297202, 42.454097],\n\t\t\t\t\t\t[-112.327029, 42.323854],\n\t\t\t\t\t\t[-112.190692, 42.351200],\n\t\t\t\t\t\t[-112.126286, 42.285330],\n\t\t\t\t\t\t[-112.071014, 42.238475],\n\t\t\t\t\t\t[-112.109210, 42.169781],\n\t\t\t\t\t\t[-112.109528, 41.997105]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US16077\",\n\t\t\t\t\"STATE\": \"16\",\n\t\t\t\t\"COUNTY\": \"077\",\n\t\t\t\t\"NAME\": \"Power\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1404.244000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-113.236952, 42.625281],\n\t\t\t\t\t\t[-113.179038, 42.675543],\n\t\t\t\t\t\t[-113.178978, 42.762283],\n\t\t\t\t\t\t[-113.236927, 42.762359],\n\t\t\t\t\t\t[-113.243510, 43.111109],\n\t\t\t\t\t\t[-113.007657, 43.111027],\n\t\t\t\t\t\t[-113.007760, 42.863051],\n\t\t\t\t\t\t[-112.816427, 42.863253],\n\t\t\t\t\t\t[-112.750503, 42.951443],\n\t\t\t\t\t\t[-112.737583, 42.905549],\n\t\t\t\t\t\t[-112.558535, 42.961101],\n\t\t\t\t\t\t[-112.515974, 42.910003],\n\t\t\t\t\t\t[-112.496937, 42.733053],\n\t\t\t\t\t\t[-112.379610, 42.646225],\n\t\t\t\t\t\t[-112.419995, 42.502857],\n\t\t\t\t\t\t[-112.498169, 42.503046],\n\t\t\t\t\t\t[-112.497790, 42.415980],\n\t\t\t\t\t\t[-112.653989, 42.415978],\n\t\t\t\t\t\t[-112.653990, 42.328869],\n\t\t\t\t\t\t[-113.000823, 42.327483],\n\t\t\t\t\t\t[-113.002807, 42.588022],\n\t\t\t\t\t\t[-113.175702, 42.589350],\n\t\t\t\t\t\t[-113.236952, 42.625281]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US16079\",\n\t\t\t\t\"STATE\": \"16\",\n\t\t\t\t\"COUNTY\": \"079\",\n\t\t\t\t\"NAME\": \"Shoshone\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2629.665000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-116.048424, 47.977126],\n\t\t\t\t\t\t[-116.048421, 47.976820],\n\t\t\t\t\t\t[-116.007254, 47.944968],\n\t\t\t\t\t\t[-115.919291, 47.857406],\n\t\t\t\t\t\t[-115.729123, 47.703102],\n\t\t\t\t\t\t[-115.723770, 47.696671],\n\t\t\t\t\t\t[-115.706284, 47.637864],\n\t\t\t\t\t\t[-115.718072, 47.592675],\n\t\t\t\t\t\t[-115.721207, 47.576323],\n\t\t\t\t\t\t[-115.735755, 47.555346],\n\t\t\t\t\t\t[-115.739684, 47.537663],\n\t\t\t\t\t\t[-115.729861, 47.518016],\n\t\t\t\t\t\t[-115.712178, 47.488546],\n\t\t\t\t\t\t[-115.725931, 47.466934],\n\t\t\t\t\t\t[-115.729861, 47.447287],\n\t\t\t\t\t\t[-115.721084, 47.422350],\n\t\t\t\t\t\t[-115.690570, 47.415059],\n\t\t\t\t\t\t[-115.661341, 47.402663],\n\t\t\t\t\t\t[-115.576836, 47.366825],\n\t\t\t\t\t\t[-115.561439, 47.351887],\n\t\t\t\t\t\t[-115.551309, 47.333856],\n\t\t\t\t\t\t[-115.523690, 47.298919],\n\t\t\t\t\t\t[-115.479255, 47.282089],\n\t\t\t\t\t\t[-115.421645, 47.271736],\n\t\t\t\t\t\t[-115.339201, 47.261623],\n\t\t\t\t\t\t[-115.320184, 47.255717],\n\t\t\t\t\t\t[-115.294785, 47.220914],\n\t\t\t\t\t\t[-115.292110, 47.209861],\n\t\t\t\t\t\t[-115.266723, 47.181101],\n\t\t\t\t\t\t[-115.200547, 47.139154],\n\t\t\t\t\t\t[-115.193221, 47.133026],\n\t\t\t\t\t\t[-115.099178, 47.048129],\n\t\t\t\t\t\t[-115.072985, 47.013760],\n\t\t\t\t\t\t[-114.975789, 46.932865],\n\t\t\t\t\t\t[-116.329587, 46.934502],\n\t\t\t\t\t\t[-116.329586, 47.022442],\n\t\t\t\t\t\t[-116.329496, 47.413781],\n\t\t\t\t\t\t[-116.322825, 47.890342],\n\t\t\t\t\t\t[-116.329066, 48.017791],\n\t\t\t\t\t\t[-116.229606, 48.067682],\n\t\t\t\t\t\t[-116.048424, 47.977126]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US16083\",\n\t\t\t\t\"STATE\": \"16\",\n\t\t\t\t\"COUNTY\": \"083\",\n\t\t\t\t\"NAME\": \"Twin Falls\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1921.213000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-114.498243, 41.994636],\n\t\t\t\t\t\t[-114.498259, 41.994599],\n\t\t\t\t\t\t[-114.598267, 41.994511],\n\t\t\t\t\t\t[-114.763825, 41.999909],\n\t\t\t\t\t\t[-114.914187, 41.999909],\n\t\t\t\t\t\t[-115.031783, 41.996008],\n\t\t\t\t\t\t[-115.038256, 41.996025],\n\t\t\t\t\t\t[-115.037694, 42.749936],\n\t\t\t\t\t\t[-115.037716, 42.768480],\n\t\t\t\t\t\t[-115.037262, 42.911931],\n\t\t\t\t\t\t[-114.901359, 42.858678],\n\t\t\t\t\t\t[-114.928714, 42.764961],\n\t\t\t\t\t\t[-114.850557, 42.749904],\n\t\t\t\t\t\t[-114.821582, 42.671582],\n\t\t\t\t\t\t[-114.616535, 42.649367],\n\t\t\t\t\t\t[-114.375289, 42.598227],\n\t\t\t\t\t\t[-114.130292, 42.494975],\n\t\t\t\t\t\t[-114.045718, 42.528766],\n\t\t\t\t\t\t[-114.000691, 42.526434],\n\t\t\t\t\t\t[-114.067080, 42.514520],\n\t\t\t\t\t\t[-114.069053, 42.417124],\n\t\t\t\t\t\t[-114.285363, 42.417332],\n\t\t\t\t\t\t[-114.281854, 41.994264],\n\t\t\t\t\t\t[-114.498243, 41.994636]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17003\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"003\",\n\t\t\t\t\"NAME\": \"Alexander\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 235.509000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.132685, 36.982200],\n\t\t\t\t\t\t[-89.170008, 36.970298],\n\t\t\t\t\t\t[-89.185491, 36.973518],\n\t\t\t\t\t\t[-89.207013, 36.982437],\n\t\t\t\t\t\t[-89.226247, 36.985287],\n\t\t\t\t\t\t[-89.245481, 36.983150],\n\t\t\t\t\t\t[-89.261154, 36.982437],\n\t\t\t\t\t\t[-89.271127, 36.985287],\n\t\t\t\t\t\t[-89.278628, 36.988670],\n\t\t\t\t\t\t[-89.292130, 36.992189],\n\t\t\t\t\t\t[-89.322733, 37.009033],\n\t\t\t\t\t\t[-89.378277, 37.039605],\n\t\t\t\t\t\t[-89.383937, 37.046441],\n\t\t\t\t\t\t[-89.385434, 37.055130],\n\t\t\t\t\t\t[-89.414471, 37.125050],\n\t\t\t\t\t\t[-89.467631, 37.218200],\n\t\t\t\t\t\t[-89.491222, 37.248629],\n\t\t\t\t\t\t[-89.517032, 37.281920],\n\t\t\t\t\t\t[-89.518393, 37.289354],\n\t\t\t\t\t\t[-89.511842, 37.310825],\n\t\t\t\t\t\t[-89.489005, 37.333368],\n\t\t\t\t\t\t[-89.484598, 37.334832],\n\t\t\t\t\t\t[-89.248439, 37.335109],\n\t\t\t\t\t\t[-89.273631, 37.126968],\n\t\t\t\t\t\t[-89.171881, 37.068184],\n\t\t\t\t\t\t[-89.175725, 37.062069],\n\t\t\t\t\t\t[-89.181369, 37.046305],\n\t\t\t\t\t\t[-89.182509, 37.037275],\n\t\t\t\t\t\t[-89.178975, 37.020928],\n\t\t\t\t\t\t[-89.173595, 37.011409],\n\t\t\t\t\t\t[-89.166447, 37.003337],\n\t\t\t\t\t\t[-89.132685, 36.982200]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17007\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"007\",\n\t\t\t\t\"NAME\": \"Boone\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 280.719000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.707380, 42.493587],\n\t\t\t\t\t\t[-88.707378, 42.493587],\n\t\t\t\t\t\t[-88.705633, 42.153561],\n\t\t\t\t\t\t[-88.939732, 42.152320],\n\t\t\t\t\t\t[-88.940388, 42.495046],\n\t\t\t\t\t\t[-88.776496, 42.494020],\n\t\t\t\t\t\t[-88.707380, 42.493587]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17011\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"011\",\n\t\t\t\t\"NAME\": \"Bureau\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 869.031000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.857798, 41.234483],\n\t\t\t\t\t\t[-89.857571, 41.234768],\n\t\t\t\t\t\t[-89.856619, 41.320956],\n\t\t\t\t\t\t[-89.856902, 41.408836],\n\t\t\t\t\t\t[-89.862351, 41.584005],\n\t\t\t\t\t\t[-89.631494, 41.584949],\n\t\t\t\t\t\t[-89.628371, 41.585014],\n\t\t\t\t\t\t[-89.166561, 41.585289],\n\t\t\t\t\t\t[-89.163705, 41.310187],\n\t\t\t\t\t\t[-89.334901, 41.300877],\n\t\t\t\t\t\t[-89.356671, 41.233235],\n\t\t\t\t\t\t[-89.466534, 41.233873],\n\t\t\t\t\t\t[-89.466421, 41.148558],\n\t\t\t\t\t\t[-89.638429, 41.148591],\n\t\t\t\t\t\t[-89.638597, 41.149760],\n\t\t\t\t\t\t[-89.638864, 41.233862],\n\t\t\t\t\t\t[-89.857798, 41.234483]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17015\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"015\",\n\t\t\t\t\"NAME\": \"Carroll\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 444.807000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.152104, 41.928947],\n\t\t\t\t\t\t[-90.151600, 41.931002],\n\t\t\t\t\t\t[-90.140613, 41.995999],\n\t\t\t\t\t\t[-90.141167, 42.008931],\n\t\t\t\t\t\t[-90.150916, 42.029440],\n\t\t\t\t\t\t[-90.154221, 42.033073],\n\t\t\t\t\t\t[-90.164537, 42.045007],\n\t\t\t\t\t\t[-90.166495, 42.054543],\n\t\t\t\t\t\t[-90.168358, 42.075779],\n\t\t\t\t\t\t[-90.163405, 42.087613],\n\t\t\t\t\t\t[-90.161119, 42.104404],\n\t\t\t\t\t\t[-90.162225, 42.114880],\n\t\t\t\t\t\t[-90.167533, 42.122475],\n\t\t\t\t\t\t[-90.211328, 42.154010],\n\t\t\t\t\t\t[-90.234919, 42.165431],\n\t\t\t\t\t\t[-90.306531, 42.190439],\n\t\t\t\t\t\t[-90.316269, 42.193600],\n\t\t\t\t\t\t[-90.304913, 42.194073],\n\t\t\t\t\t\t[-89.919657, 42.196305],\n\t\t\t\t\t\t[-89.688486, 42.199112],\n\t\t\t\t\t\t[-89.686549, 41.937493],\n\t\t\t\t\t\t[-89.685366, 41.930340],\n\t\t\t\t\t\t[-90.152104, 41.928947]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17023\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"023\",\n\t\t\t\t\"NAME\": \"Clark\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 501.418000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.531663, 39.477110],\n\t\t\t\t\t\t[-87.531624, 39.469378],\n\t\t\t\t\t\t[-87.531608, 39.466225],\n\t\t\t\t\t\t[-87.531489, 39.449474],\n\t\t\t\t\t\t[-87.531355, 39.437732],\n\t\t\t\t\t\t[-87.531355, 39.436656],\n\t\t\t\t\t\t[-87.531646, 39.347888],\n\t\t\t\t\t\t[-87.537271, 39.352089],\n\t\t\t\t\t\t[-87.544013, 39.352907],\n\t\t\t\t\t\t[-87.584852, 39.337329],\n\t\t\t\t\t\t[-87.589084, 39.333831],\n\t\t\t\t\t\t[-87.604043, 39.313526],\n\t\t\t\t\t\t[-87.610050, 39.282232],\n\t\t\t\t\t\t[-87.605543, 39.261122],\n\t\t\t\t\t\t[-87.604076, 39.259459],\n\t\t\t\t\t\t[-87.593486, 39.247452],\n\t\t\t\t\t\t[-87.587507, 39.249282],\n\t\t\t\t\t\t[-87.605173, 39.185897],\n\t\t\t\t\t\t[-87.628727, 39.157427],\n\t\t\t\t\t\t[-87.746174, 39.179220],\n\t\t\t\t\t\t[-87.950385, 39.174882],\n\t\t\t\t\t\t[-88.007766, 39.173925],\n\t\t\t\t\t\t[-88.012121, 39.378968],\n\t\t\t\t\t\t[-88.014205, 39.480762],\n\t\t\t\t\t\t[-87.960179, 39.481309],\n\t\t\t\t\t\t[-87.531663, 39.477110]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17033\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"033\",\n\t\t\t\t\"NAME\": \"Crawford\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 443.629000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.528108, 38.908027],\n\t\t\t\t\t\t[-87.540804, 38.896385],\n\t\t\t\t\t\t[-87.553384, 38.863344],\n\t\t\t\t\t\t[-87.550515, 38.859560],\n\t\t\t\t\t\t[-87.537248, 38.853592],\n\t\t\t\t\t\t[-87.532064, 38.852503],\n\t\t\t\t\t\t[-87.759592, 38.849514],\n\t\t\t\t\t\t[-87.908113, 38.850107],\n\t\t\t\t\t\t[-87.945923, 38.850108],\n\t\t\t\t\t\t[-87.950385, 39.174882],\n\t\t\t\t\t\t[-87.746174, 39.179220],\n\t\t\t\t\t\t[-87.628727, 39.157427],\n\t\t\t\t\t\t[-87.642174, 39.157097],\n\t\t\t\t\t\t[-87.651719, 39.150602],\n\t\t\t\t\t\t[-87.658746, 39.135997],\n\t\t\t\t\t\t[-87.614881, 39.102655],\n\t\t\t\t\t\t[-87.572588, 39.057286],\n\t\t\t\t\t\t[-87.512187, 38.954417],\n\t\t\t\t\t\t[-87.518826, 38.923205],\n\t\t\t\t\t\t[-87.527910, 38.908209],\n\t\t\t\t\t\t[-87.528108, 38.908027]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17037\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"037\",\n\t\t\t\t\"NAME\": \"DeKalb\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 631.307000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.588657, 42.153590],\n\t\t\t\t\t\t[-88.601291, 41.981336],\n\t\t\t\t\t\t[-88.601933, 41.719563],\n\t\t\t\t\t\t[-88.603620, 41.719546],\n\t\t\t\t\t\t[-88.602240, 41.631389],\n\t\t\t\t\t\t[-88.818462, 41.631352],\n\t\t\t\t\t\t[-88.938618, 41.628319],\n\t\t\t\t\t\t[-88.941279, 41.891752],\n\t\t\t\t\t\t[-88.939732, 42.152320],\n\t\t\t\t\t\t[-88.705633, 42.153561],\n\t\t\t\t\t\t[-88.588657, 42.153590]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17041\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"041\",\n\t\t\t\t\"NAME\": \"Douglas\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 416.665000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.937645, 39.879803],\n\t\t\t\t\t\t[-87.966600, 39.685928],\n\t\t\t\t\t\t[-88.063437, 39.652555],\n\t\t\t\t\t\t[-88.472073, 39.651588],\n\t\t\t\t\t\t[-88.473182, 39.791837],\n\t\t\t\t\t\t[-88.462328, 39.791820],\n\t\t\t\t\t\t[-88.462207, 39.879092],\n\t\t\t\t\t\t[-87.937645, 39.879803]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17043\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"043\",\n\t\t\t\t\"NAME\": \"DuPage\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 327.499000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.080223, 41.990752],\n\t\t\t\t\t\t[-87.920670, 41.994031],\n\t\t\t\t\t\t[-87.920000, 41.958151],\n\t\t\t\t\t\t[-87.920441, 41.906869],\n\t\t\t\t\t\t[-87.920082, 41.862199],\n\t\t\t\t\t\t[-87.919872, 41.859781],\n\t\t\t\t\t\t[-87.919640, 41.852621],\n\t\t\t\t\t\t[-87.919532, 41.851854],\n\t\t\t\t\t\t[-87.919333, 41.847679],\n\t\t\t\t\t\t[-87.914265, 41.716746],\n\t\t\t\t\t\t[-88.029160, 41.685530],\n\t\t\t\t\t\t[-88.030561, 41.728930],\n\t\t\t\t\t\t[-88.261468, 41.724529],\n\t\t\t\t\t\t[-88.261952, 41.724652],\n\t\t\t\t\t\t[-88.262470, 41.777429],\n\t\t\t\t\t\t[-88.262670, 41.779629],\n\t\t\t\t\t\t[-88.263071, 41.799328],\n\t\t\t\t\t\t[-88.263068, 41.812290],\n\t\t\t\t\t\t[-88.262876, 41.986227],\n\t\t\t\t\t\t[-88.233475, 41.986727],\n\t\t\t\t\t\t[-88.232275, 41.986627],\n\t\t\t\t\t\t[-88.217875, 41.987027],\n\t\t\t\t\t\t[-88.216575, 41.987127],\n\t\t\t\t\t\t[-88.210764, 41.987023],\n\t\t\t\t\t\t[-88.207356, 41.987127],\n\t\t\t\t\t\t[-88.080223, 41.990752]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18117\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"117\",\n\t\t\t\t\"NAME\": \"Orange\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 398.387000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.308674, 38.422875],\n\t\t\t\t\t\t[-86.308868, 38.394069],\n\t\t\t\t\t\t[-86.681424, 38.394767],\n\t\t\t\t\t\t[-86.682359, 38.526378],\n\t\t\t\t\t\t[-86.683102, 38.686561],\n\t\t\t\t\t\t[-86.308701, 38.688101],\n\t\t\t\t\t\t[-86.307894, 38.672977],\n\t\t\t\t\t\t[-86.308674, 38.422875]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18121\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"121\",\n\t\t\t\t\"NAME\": \"Parke\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 444.663000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.420221, 39.952452],\n\t\t\t\t\t\t[-87.204129, 39.953279],\n\t\t\t\t\t\t[-87.190288, 39.953379],\n\t\t\t\t\t\t[-87.190124, 39.953069],\n\t\t\t\t\t\t[-87.179415, 39.953033],\n\t\t\t\t\t\t[-87.178717, 39.953301],\n\t\t\t\t\t\t[-87.126051, 39.952985],\n\t\t\t\t\t\t[-87.125902, 39.953149],\n\t\t\t\t\t\t[-87.091006, 39.953009],\n\t\t\t\t\t\t[-87.091542, 39.867265],\n\t\t\t\t\t\t[-87.009477, 39.866705],\n\t\t\t\t\t\t[-87.013062, 39.604787],\n\t\t\t\t\t\t[-87.199012, 39.607137],\n\t\t\t\t\t\t[-87.382418, 39.607937],\n\t\t\t\t\t\t[-87.395625, 39.652950],\n\t\t\t\t\t\t[-87.353863, 39.862077],\n\t\t\t\t\t\t[-87.420221, 39.952452]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18127\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"127\",\n\t\t\t\t\"NAME\": \"Porter\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 418.153000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.932747, 41.711040],\n\t\t\t\t\t\t[-86.929364, 41.463209],\n\t\t\t\t\t\t[-86.930056, 41.449692],\n\t\t\t\t\t\t[-86.930079, 41.236798],\n\t\t\t\t\t\t[-86.968125, 41.219658],\n\t\t\t\t\t\t[-87.131653, 41.286155],\n\t\t\t\t\t\t[-87.218862, 41.242027],\n\t\t\t\t\t\t[-87.222644, 41.624161],\n\t\t\t\t\t\t[-87.220660, 41.624356],\n\t\t\t\t\t\t[-87.187651, 41.629653],\n\t\t\t\t\t\t[-87.160625, 41.637266],\n\t\t\t\t\t\t[-87.160784, 41.645385],\n\t\t\t\t\t\t[-87.125835, 41.650302],\n\t\t\t\t\t\t[-87.120322, 41.645701],\n\t\t\t\t\t\t[-87.066033, 41.661845],\n\t\t\t\t\t\t[-87.027888, 41.674661],\n\t\t\t\t\t\t[-87.009640, 41.681520],\n\t\t\t\t\t\t[-86.934830, 41.709638],\n\t\t\t\t\t\t[-86.932747, 41.711040]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18135\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"135\",\n\t\t\t\t\"NAME\": \"Randolph\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 452.379000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.803918, 40.310094],\n\t\t\t\t\t\t[-84.804098, 40.302498],\n\t\t\t\t\t\t[-84.805627, 40.223659],\n\t\t\t\t\t\t[-84.806175, 40.197995],\n\t\t\t\t\t\t[-84.806340, 40.192327],\n\t\t\t\t\t\t[-84.806347, 40.192252],\n\t\t\t\t\t\t[-84.806766, 40.180128],\n\t\t\t\t\t\t[-84.808291, 40.129027],\n\t\t\t\t\t\t[-84.808305, 40.127018],\n\t\t\t\t\t\t[-84.808706, 40.107216],\n\t\t\t\t\t\t[-84.809737, 40.048929],\n\t\t\t\t\t\t[-84.810099, 40.034214],\n\t\t\t\t\t\t[-84.810670, 40.005074],\n\t\t\t\t\t\t[-85.201473, 40.004521],\n\t\t\t\t\t\t[-85.213496, 40.004380],\n\t\t\t\t\t\t[-85.214386, 40.076889],\n\t\t\t\t\t\t[-85.218758, 40.306706],\n\t\t\t\t\t\t[-84.803918, 40.310094]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18137\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"137\",\n\t\t\t\t\"NAME\": \"Ripley\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 446.426000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.296540, 39.268291],\n\t\t\t\t\t\t[-85.217883, 39.308474],\n\t\t\t\t\t\t[-85.065574, 39.307232],\n\t\t\t\t\t\t[-85.132508, 38.948055],\n\t\t\t\t\t\t[-85.135832, 38.929578],\n\t\t\t\t\t\t[-85.202849, 38.928523],\n\t\t\t\t\t\t[-85.203166, 38.913803],\n\t\t\t\t\t\t[-85.444897, 38.912998],\n\t\t\t\t\t\t[-85.440054, 39.195617],\n\t\t\t\t\t\t[-85.437910, 39.197132],\n\t\t\t\t\t\t[-85.296540, 39.268291]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18141\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"141\",\n\t\t\t\t\"NAME\": \"St. Joseph\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 457.850000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.524223, 41.759456],\n\t\t\t\t\t\t[-86.519318, 41.759447],\n\t\t\t\t\t\t[-86.501773, 41.759553],\n\t\t\t\t\t\t[-86.265496, 41.760207],\n\t\t\t\t\t\t[-86.226097, 41.760016],\n\t\t\t\t\t\t[-86.226070, 41.760016],\n\t\t\t\t\t\t[-86.217590, 41.760016],\n\t\t\t\t\t\t[-86.127844, 41.760592],\n\t\t\t\t\t\t[-86.125460, 41.760560],\n\t\t\t\t\t\t[-86.125060, 41.760576],\n\t\t\t\t\t\t[-86.062572, 41.760283],\n\t\t\t\t\t\t[-86.060516, 41.608959],\n\t\t\t\t\t\t[-86.060652, 41.608400],\n\t\t\t\t\t\t[-86.059451, 41.479154],\n\t\t\t\t\t\t[-86.467108, 41.476459],\n\t\t\t\t\t\t[-86.466603, 41.432968],\n\t\t\t\t\t\t[-86.488895, 41.433020],\n\t\t\t\t\t\t[-86.490753, 41.432910],\n\t\t\t\t\t\t[-86.519007, 41.432872],\n\t\t\t\t\t\t[-86.519751, 41.432792],\n\t\t\t\t\t\t[-86.524711, 41.432886],\n\t\t\t\t\t\t[-86.486433, 41.570545],\n\t\t\t\t\t\t[-86.526682, 41.650440],\n\t\t\t\t\t\t[-86.524223, 41.759456]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18149\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"149\",\n\t\t\t\t\"NAME\": \"Starke\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 309.134000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.930170, 41.172318],\n\t\t\t\t\t\t[-86.929646, 41.229711],\n\t\t\t\t\t\t[-86.930079, 41.236798],\n\t\t\t\t\t\t[-86.783473, 41.285465],\n\t\t\t\t\t\t[-86.700630, 41.401982],\n\t\t\t\t\t\t[-86.524711, 41.432886],\n\t\t\t\t\t\t[-86.519751, 41.432792],\n\t\t\t\t\t\t[-86.519007, 41.432872],\n\t\t\t\t\t\t[-86.490753, 41.432910],\n\t\t\t\t\t\t[-86.488895, 41.433020],\n\t\t\t\t\t\t[-86.466603, 41.432968],\n\t\t\t\t\t\t[-86.467046, 41.171442],\n\t\t\t\t\t\t[-86.930170, 41.172318]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18151\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"151\",\n\t\t\t\t\"NAME\": \"Steuben\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 308.939000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.825130, 41.759991],\n\t\t\t\t\t\t[-84.818873, 41.760059],\n\t\t\t\t\t\t[-84.806134, 41.743115],\n\t\t\t\t\t\t[-84.806074, 41.737603],\n\t\t\t\t\t\t[-84.806065, 41.732909],\n\t\t\t\t\t\t[-84.806042, 41.720544],\n\t\t\t\t\t\t[-84.806018, 41.707485],\n\t\t\t\t\t\t[-84.806082, 41.696089],\n\t\t\t\t\t\t[-84.806210, 41.674550],\n\t\t\t\t\t\t[-84.805673, 41.632342],\n\t\t\t\t\t\t[-84.805696, 41.631398],\n\t\t\t\t\t\t[-84.805812, 41.613040],\n\t\t\t\t\t\t[-84.804729, 41.530231],\n\t\t\t\t\t\t[-84.804729, 41.530135],\n\t\t\t\t\t\t[-85.194084, 41.526437],\n\t\t\t\t\t\t[-85.196774, 41.759735],\n\t\t\t\t\t\t[-85.196637, 41.759735],\n\t\t\t\t\t\t[-85.172230, 41.759618],\n\t\t\t\t\t\t[-85.123102, 41.759743],\n\t\t\t\t\t\t[-85.117267, 41.759700],\n\t\t\t\t\t\t[-85.039436, 41.759985],\n\t\t\t\t\t\t[-85.037817, 41.759801],\n\t\t\t\t\t\t[-84.972803, 41.759366],\n\t\t\t\t\t\t[-84.971551, 41.759527],\n\t\t\t\t\t\t[-84.961562, 41.759552],\n\t\t\t\t\t\t[-84.960860, 41.759438],\n\t\t\t\t\t\t[-84.932484, 41.759691],\n\t\t\t\t\t\t[-84.825196, 41.759990],\n\t\t\t\t\t\t[-84.825130, 41.759991]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18159\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"159\",\n\t\t\t\t\"NAME\": \"Tipton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 260.541000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.862117, 40.406889],\n\t\t\t\t\t\t[-85.862296, 40.378367],\n\t\t\t\t\t\t[-85.861160, 40.225310],\n\t\t\t\t\t\t[-85.861903, 40.218936],\n\t\t\t\t\t\t[-86.242743, 40.215834],\n\t\t\t\t\t\t[-86.242992, 40.373661],\n\t\t\t\t\t\t[-86.242812, 40.402914],\n\t\t\t\t\t\t[-85.862117, 40.406889]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18161\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"161\",\n\t\t\t\t\"NAME\": \"Union\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 161.224000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.814129, 39.726620],\n\t\t\t\t\t\t[-84.814129, 39.726556],\n\t\t\t\t\t\t[-84.814530, 39.680429],\n\t\t\t\t\t\t[-84.814619, 39.669174],\n\t\t\t\t\t\t[-84.814705, 39.628854],\n\t\t\t\t\t\t[-84.815156, 39.568351],\n\t\t\t\t\t\t[-84.815036, 39.567695],\n\t\t\t\t\t\t[-84.814955, 39.567251],\n\t\t\t\t\t\t[-84.814955, 39.566251],\n\t\t\t\t\t\t[-84.815155, 39.548051],\n\t\t\t\t\t\t[-84.815355, 39.521951],\n\t\t\t\t\t\t[-84.815355, 39.521950],\n\t\t\t\t\t\t[-85.036087, 39.526213],\n\t\t\t\t\t\t[-85.034575, 39.714764],\n\t\t\t\t\t\t[-84.814129, 39.726620]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18167\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"167\",\n\t\t\t\t\"NAME\": \"Vigo\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 403.313000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.240379, 39.259064],\n\t\t\t\t\t\t[-87.604076, 39.259459],\n\t\t\t\t\t\t[-87.605543, 39.261122],\n\t\t\t\t\t\t[-87.610050, 39.282232],\n\t\t\t\t\t\t[-87.604043, 39.313526],\n\t\t\t\t\t\t[-87.589084, 39.333831],\n\t\t\t\t\t\t[-87.584852, 39.337329],\n\t\t\t\t\t\t[-87.544013, 39.352907],\n\t\t\t\t\t\t[-87.537271, 39.352089],\n\t\t\t\t\t\t[-87.531646, 39.347888],\n\t\t\t\t\t\t[-87.531355, 39.436656],\n\t\t\t\t\t\t[-87.531355, 39.437732],\n\t\t\t\t\t\t[-87.531489, 39.449474],\n\t\t\t\t\t\t[-87.531608, 39.466225],\n\t\t\t\t\t\t[-87.531624, 39.469378],\n\t\t\t\t\t\t[-87.531663, 39.477110],\n\t\t\t\t\t\t[-87.531663, 39.477120],\n\t\t\t\t\t\t[-87.531627, 39.491698],\n\t\t\t\t\t\t[-87.531692, 39.495516],\n\t\t\t\t\t\t[-87.531965, 39.526937],\n\t\t\t\t\t\t[-87.531939, 39.545853],\n\t\t\t\t\t\t[-87.532008, 39.564013],\n\t\t\t\t\t\t[-87.532196, 39.607306],\n\t\t\t\t\t\t[-87.382418, 39.607937],\n\t\t\t\t\t\t[-87.199012, 39.607137],\n\t\t\t\t\t\t[-87.238964, 39.520620],\n\t\t\t\t\t\t[-87.240379, 39.259064]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18169\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"169\",\n\t\t\t\t\"NAME\": \"Wabash\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 412.434000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.945561, 41.042876],\n\t\t\t\t\t\t[-85.927265, 41.042574],\n\t\t\t\t\t\t[-85.684181, 41.046716],\n\t\t\t\t\t\t[-85.683198, 41.001909],\n\t\t\t\t\t\t[-85.643841, 41.002305],\n\t\t\t\t\t\t[-85.638587, 40.653129],\n\t\t\t\t\t\t[-85.857147, 40.651364],\n\t\t\t\t\t\t[-85.864791, 40.651693],\n\t\t\t\t\t\t[-85.939525, 40.650991],\n\t\t\t\t\t\t[-85.946436, 40.999195],\n\t\t\t\t\t\t[-85.945400, 41.000149],\n\t\t\t\t\t\t[-85.945561, 41.042876]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18175\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"175\",\n\t\t\t\t\"NAME\": \"Washington\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 513.725000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.994620, 38.418345],\n\t\t\t\t\t\t[-86.014139, 38.419079],\n\t\t\t\t\t\t[-86.014446, 38.418683],\n\t\t\t\t\t\t[-86.032817, 38.417898],\n\t\t\t\t\t\t[-86.255045, 38.422685],\n\t\t\t\t\t\t[-86.308674, 38.422875],\n\t\t\t\t\t\t[-86.307894, 38.672977],\n\t\t\t\t\t\t[-86.308701, 38.688101],\n\t\t\t\t\t\t[-86.275281, 38.763795],\n\t\t\t\t\t\t[-86.091705, 38.783399],\n\t\t\t\t\t\t[-85.888334, 38.734443],\n\t\t\t\t\t\t[-85.885643, 38.575412],\n\t\t\t\t\t\t[-85.847893, 38.561269],\n\t\t\t\t\t\t[-85.884776, 38.503469],\n\t\t\t\t\t\t[-85.993317, 38.488540],\n\t\t\t\t\t\t[-85.994620, 38.418345]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18181\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"181\",\n\t\t\t\t\"NAME\": \"White\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 505.125000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.697099, 40.737102],\n\t\t\t\t\t\t[-86.747764, 40.737540],\n\t\t\t\t\t\t[-86.771293, 40.562082],\n\t\t\t\t\t\t[-87.095357, 40.562895],\n\t\t\t\t\t\t[-87.096820, 40.736491],\n\t\t\t\t\t\t[-87.098390, 40.736541],\n\t\t\t\t\t\t[-87.099793, 40.837607],\n\t\t\t\t\t\t[-86.986438, 40.837921],\n\t\t\t\t\t\t[-86.930759, 40.912418],\n\t\t\t\t\t\t[-86.775850, 40.912460],\n\t\t\t\t\t\t[-86.581532, 40.910925],\n\t\t\t\t\t\t[-86.581739, 40.735765],\n\t\t\t\t\t\t[-86.677986, 40.736752],\n\t\t\t\t\t\t[-86.678148, 40.736897],\n\t\t\t\t\t\t[-86.697099, 40.737102]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19001\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"001\",\n\t\t\t\t\"NAME\": \"Adair\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 569.271000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.241637, 41.157134],\n\t\t\t\t\t\t[-94.470603, 41.157566],\n\t\t\t\t\t\t[-94.700589, 41.158085],\n\t\t\t\t\t\t[-94.700629, 41.504148],\n\t\t\t\t\t\t[-94.241593, 41.503679],\n\t\t\t\t\t\t[-94.241637, 41.157134]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17047\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"047\",\n\t\t\t\t\"NAME\": \"Edwards\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 222.416000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.058472, 38.255747],\n\t\t\t\t\t\t[-88.150900, 38.256097],\n\t\t\t\t\t\t[-88.147814, 38.569086],\n\t\t\t\t\t\t[-87.953898, 38.570094],\n\t\t\t\t\t\t[-87.977034, 38.379374],\n\t\t\t\t\t\t[-87.972855, 38.364565],\n\t\t\t\t\t\t[-87.969656, 38.361933],\n\t\t\t\t\t\t[-87.967298, 38.353556],\n\t\t\t\t\t\t[-87.957878, 38.347675],\n\t\t\t\t\t\t[-87.954445, 38.339733],\n\t\t\t\t\t\t[-87.954798, 38.335308],\n\t\t\t\t\t\t[-87.990600, 38.259715],\n\t\t\t\t\t\t[-88.027680, 38.259771],\n\t\t\t\t\t\t[-88.027749, 38.255661],\n\t\t\t\t\t\t[-88.058472, 38.255747]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17051\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"051\",\n\t\t\t\t\"NAME\": \"Fayette\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 716.482000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.250658, 39.086442],\n\t\t\t\t\t\t[-89.250513, 39.217512],\n\t\t\t\t\t\t[-89.140076, 39.217907],\n\t\t\t\t\t\t[-89.139305, 39.217192],\n\t\t\t\t\t\t[-89.122992, 39.217303],\n\t\t\t\t\t\t[-89.025698, 39.215536],\n\t\t\t\t\t\t[-88.917477, 39.216545],\n\t\t\t\t\t\t[-88.838197, 39.216273],\n\t\t\t\t\t\t[-88.836967, 39.216548],\n\t\t\t\t\t\t[-88.834810, 39.216370],\n\t\t\t\t\t\t[-88.806720, 39.216402],\n\t\t\t\t\t\t[-88.805325, 39.216263],\n\t\t\t\t\t\t[-88.806794, 38.911656],\n\t\t\t\t\t\t[-88.693531, 38.914617],\n\t\t\t\t\t\t[-88.695165, 38.826299],\n\t\t\t\t\t\t[-89.138138, 38.824244],\n\t\t\t\t\t\t[-89.138393, 38.736331],\n\t\t\t\t\t\t[-89.254237, 38.742019],\n\t\t\t\t\t\t[-89.250447, 39.028145],\n\t\t\t\t\t\t[-89.250335, 39.029942],\n\t\t\t\t\t\t[-89.250658, 39.086442]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17053\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"053\",\n\t\t\t\t\"NAME\": \"Ford\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 485.616000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.935309, 40.485923],\n\t\t\t\t\t\t[-87.931758, 40.400187],\n\t\t\t\t\t\t[-87.932858, 40.399401],\n\t\t\t\t\t\t[-88.459957, 40.398850],\n\t\t\t\t\t\t[-88.459475, 40.617345],\n\t\t\t\t\t\t[-88.234949, 40.618166],\n\t\t\t\t\t\t[-88.247300, 40.994560],\n\t\t\t\t\t\t[-88.245975, 40.994607],\n\t\t\t\t\t\t[-88.236498, 40.995218],\n\t\t\t\t\t\t[-88.133741, 40.997605],\n\t\t\t\t\t\t[-88.131938, 40.997839],\n\t\t\t\t\t\t[-88.117905, 40.488086],\n\t\t\t\t\t\t[-87.935309, 40.485923]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17057\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"057\",\n\t\t\t\t\"NAME\": \"Fulton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 865.595000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.215267, 40.713598],\n\t\t\t\t\t\t[-89.986068, 40.712257],\n\t\t\t\t\t\t[-89.989018, 40.625835],\n\t\t\t\t\t\t[-89.873506, 40.624588],\n\t\t\t\t\t\t[-89.872463, 40.513127],\n\t\t\t\t\t\t[-89.924680, 40.435921],\n\t\t\t\t\t\t[-90.033026, 40.377806],\n\t\t\t\t\t\t[-90.118966, 40.235263],\n\t\t\t\t\t\t[-90.199556, 40.183945],\n\t\t\t\t\t\t[-90.451502, 40.188892],\n\t\t\t\t\t\t[-90.450227, 40.276335],\n\t\t\t\t\t\t[-90.445506, 40.627843],\n\t\t\t\t\t\t[-90.445217, 40.656870],\n\t\t\t\t\t\t[-90.445084, 40.657202],\n\t\t\t\t\t\t[-90.445009, 40.662406],\n\t\t\t\t\t\t[-90.444877, 40.663944],\n\t\t\t\t\t\t[-90.444750, 40.677479],\n\t\t\t\t\t\t[-90.444875, 40.677784],\n\t\t\t\t\t\t[-90.444606, 40.695505],\n\t\t\t\t\t\t[-90.444429, 40.697371],\n\t\t\t\t\t\t[-90.444343, 40.714667],\n\t\t\t\t\t\t[-90.215267, 40.713598]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17063\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"063\",\n\t\t\t\t\"NAME\": \"Grundy\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 418.043000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.363140, 41.111580],\n\t\t\t\t\t\t[-88.586240, 41.108293],\n\t\t\t\t\t\t[-88.595960, 41.457034],\n\t\t\t\t\t\t[-88.254972, 41.462768],\n\t\t\t\t\t\t[-88.252098, 41.463096],\n\t\t\t\t\t\t[-88.244155, 41.201546],\n\t\t\t\t\t\t[-88.240889, 41.114383],\n\t\t\t\t\t\t[-88.251995, 41.114229],\n\t\t\t\t\t\t[-88.363140, 41.111580]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18055\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"055\",\n\t\t\t\t\"NAME\": \"Greene\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 542.495000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.241027, 38.907874],\n\t\t\t\t\t\t[-87.240737, 39.171773],\n\t\t\t\t\t\t[-87.068341, 39.167965],\n\t\t\t\t\t\t[-87.054578, 39.168086],\n\t\t\t\t\t\t[-86.683002, 39.165746],\n\t\t\t\t\t\t[-86.682277, 38.992404],\n\t\t\t\t\t\t[-86.682853, 38.904697],\n\t\t\t\t\t\t[-86.904252, 38.904204],\n\t\t\t\t\t\t[-87.031263, 38.902516],\n\t\t\t\t\t\t[-87.098771, 38.903974],\n\t\t\t\t\t\t[-87.241027, 38.907874]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18057\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"057\",\n\t\t\t\t\"NAME\": \"Hamilton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 394.267000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.172237, 39.926895],\n\t\t\t\t\t\t[-86.239739, 39.926055],\n\t\t\t\t\t\t[-86.242365, 40.180778],\n\t\t\t\t\t\t[-86.242743, 40.215834],\n\t\t\t\t\t\t[-85.861903, 40.218936],\n\t\t\t\t\t\t[-85.862489, 39.943618],\n\t\t\t\t\t\t[-85.862395, 39.928943],\n\t\t\t\t\t\t[-85.937587, 39.927137],\n\t\t\t\t\t\t[-86.172237, 39.926895]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18065\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"065\",\n\t\t\t\t\"NAME\": \"Henry\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 391.876000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.576192, 39.945756],\n\t\t\t\t\t\t[-85.576197, 40.077143],\n\t\t\t\t\t\t[-85.216033, 40.076828],\n\t\t\t\t\t\t[-85.214386, 40.076889],\n\t\t\t\t\t\t[-85.213496, 40.004380],\n\t\t\t\t\t\t[-85.201473, 40.004521],\n\t\t\t\t\t\t[-85.221118, 39.788449],\n\t\t\t\t\t\t[-85.301584, 39.787579],\n\t\t\t\t\t\t[-85.596916, 39.786519],\n\t\t\t\t\t\t[-85.576192, 39.945756]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18067\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"067\",\n\t\t\t\t\"NAME\": \"Howard\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 293.057000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.184044, 40.562459],\n\t\t\t\t\t\t[-86.165024, 40.562649],\n\t\t\t\t\t\t[-86.127424, 40.563098],\n\t\t\t\t\t\t[-85.863641, 40.565525],\n\t\t\t\t\t\t[-85.862117, 40.406889],\n\t\t\t\t\t\t[-86.242812, 40.402914],\n\t\t\t\t\t\t[-86.242992, 40.373661],\n\t\t\t\t\t\t[-86.375762, 40.431851],\n\t\t\t\t\t\t[-86.374417, 40.561361],\n\t\t\t\t\t\t[-86.184044, 40.562459]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18071\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"071\",\n\t\t\t\t\"NAME\": \"Jackson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 509.312000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.888334, 38.734443],\n\t\t\t\t\t\t[-86.091705, 38.783399],\n\t\t\t\t\t\t[-86.275281, 38.763795],\n\t\t\t\t\t\t[-86.280389, 38.991028],\n\t\t\t\t\t\t[-86.317474, 38.990870],\n\t\t\t\t\t\t[-86.317380, 39.000050],\n\t\t\t\t\t\t[-86.317799, 39.002733],\n\t\t\t\t\t\t[-86.318133, 39.048810],\n\t\t\t\t\t\t[-86.080272, 39.050270],\n\t\t\t\t\t\t[-85.860573, 39.040910],\n\t\t\t\t\t\t[-85.798804, 39.068536],\n\t\t\t\t\t\t[-85.795357, 38.807508],\n\t\t\t\t\t\t[-85.888334, 38.734443]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18077\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"077\",\n\t\t\t\t\"NAME\": \"Jefferson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 360.631000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.439351, 38.610388],\n\t\t\t\t\t\t[-85.427467, 38.586735],\n\t\t\t\t\t\t[-85.569980, 38.606155],\n\t\t\t\t\t\t[-85.570930, 38.678706],\n\t\t\t\t\t\t[-85.683338, 38.736731],\n\t\t\t\t\t\t[-85.683839, 38.815406],\n\t\t\t\t\t\t[-85.444897, 38.912998],\n\t\t\t\t\t\t[-85.203166, 38.913803],\n\t\t\t\t\t\t[-85.201498, 38.691575],\n\t\t\t\t\t\t[-85.213257, 38.695446],\n\t\t\t\t\t\t[-85.226062, 38.705456],\n\t\t\t\t\t\t[-85.246505, 38.731821],\n\t\t\t\t\t\t[-85.258846, 38.737754],\n\t\t\t\t\t\t[-85.275454, 38.741172],\n\t\t\t\t\t\t[-85.289226, 38.742410],\n\t\t\t\t\t\t[-85.333285, 38.740480],\n\t\t\t\t\t\t[-85.410925, 38.737080],\n\t\t\t\t\t\t[-85.422021, 38.734834],\n\t\t\t\t\t\t[-85.434065, 38.729455],\n\t\t\t\t\t\t[-85.452114, 38.709348],\n\t\t\t\t\t\t[-85.456978, 38.689135],\n\t\t\t\t\t\t[-85.439351, 38.610388]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18087\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"087\",\n\t\t\t\t\"NAME\": \"LaGrange\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 379.624000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.659750, 41.759101],\n\t\t\t\t\t\t[-85.650738, 41.759103],\n\t\t\t\t\t\t[-85.647683, 41.759125],\n\t\t\t\t\t\t[-85.632714, 41.759164],\n\t\t\t\t\t\t[-85.624987, 41.759093],\n\t\t\t\t\t\t[-85.622608, 41.759049],\n\t\t\t\t\t\t[-85.608312, 41.759193],\n\t\t\t\t\t\t[-85.607548, 41.759079],\n\t\t\t\t\t\t[-85.518251, 41.759513],\n\t\t\t\t\t\t[-85.515959, 41.759352],\n\t\t\t\t\t\t[-85.432471, 41.759684],\n\t\t\t\t\t\t[-85.427553, 41.759706],\n\t\t\t\t\t\t[-85.379133, 41.759875],\n\t\t\t\t\t\t[-85.350174, 41.759908],\n\t\t\t\t\t\t[-85.330623, 41.759982],\n\t\t\t\t\t\t[-85.318129, 41.759983],\n\t\t\t\t\t\t[-85.308140, 41.760097],\n\t\t\t\t\t\t[-85.298365, 41.760028],\n\t\t\t\t\t\t[-85.292178, 41.759963],\n\t\t\t\t\t\t[-85.292099, 41.759962],\n\t\t\t\t\t\t[-85.273713, 41.759770],\n\t\t\t\t\t\t[-85.272951, 41.759911],\n\t\t\t\t\t\t[-85.272216, 41.759999],\n\t\t\t\t\t\t[-85.232835, 41.759839],\n\t\t\t\t\t\t[-85.196774, 41.759735],\n\t\t\t\t\t\t[-85.194084, 41.526437],\n\t\t\t\t\t\t[-85.654747, 41.523347],\n\t\t\t\t\t\t[-85.659750, 41.759101]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18091\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"091\",\n\t\t\t\t\"NAME\": \"LaPorte\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 598.299000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.824828, 41.760240],\n\t\t\t\t\t\t[-86.823628, 41.760240],\n\t\t\t\t\t\t[-86.804427, 41.760240],\n\t\t\t\t\t\t[-86.801578, 41.760240],\n\t\t\t\t\t\t[-86.800707, 41.760240],\n\t\t\t\t\t\t[-86.800611, 41.760251],\n\t\t\t\t\t\t[-86.748096, 41.759967],\n\t\t\t\t\t\t[-86.746521, 41.759982],\n\t\t\t\t\t\t[-86.641186, 41.759633],\n\t\t\t\t\t\t[-86.640044, 41.759671],\n\t\t\t\t\t\t[-86.524223, 41.759456],\n\t\t\t\t\t\t[-86.526682, 41.650440],\n\t\t\t\t\t\t[-86.486433, 41.570545],\n\t\t\t\t\t\t[-86.524711, 41.432886],\n\t\t\t\t\t\t[-86.700630, 41.401982],\n\t\t\t\t\t\t[-86.783473, 41.285465],\n\t\t\t\t\t\t[-86.930079, 41.236798],\n\t\t\t\t\t\t[-86.930056, 41.449692],\n\t\t\t\t\t\t[-86.929364, 41.463209],\n\t\t\t\t\t\t[-86.932747, 41.711040],\n\t\t\t\t\t\t[-86.909130, 41.726938],\n\t\t\t\t\t\t[-86.875429, 41.737939],\n\t\t\t\t\t\t[-86.824828, 41.760240]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18097\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"097\",\n\t\t\t\t\"NAME\": \"Marion\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 396.298000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.937587, 39.927137],\n\t\t\t\t\t\t[-85.938084, 39.923196],\n\t\t\t\t\t\t[-85.938077, 39.887183],\n\t\t\t\t\t\t[-85.951699, 39.726419],\n\t\t\t\t\t\t[-85.951721, 39.697136],\n\t\t\t\t\t\t[-85.952080, 39.638345],\n\t\t\t\t\t\t[-86.044705, 39.637219],\n\t\t\t\t\t\t[-86.242924, 39.633744],\n\t\t\t\t\t\t[-86.249885, 39.633645],\n\t\t\t\t\t\t[-86.268501, 39.633047],\n\t\t\t\t\t\t[-86.269239, 39.633267],\n\t\t\t\t\t\t[-86.326341, 39.632177],\n\t\t\t\t\t\t[-86.326576, 39.682896],\n\t\t\t\t\t\t[-86.326293, 39.924029],\n\t\t\t\t\t\t[-86.263305, 39.924889],\n\t\t\t\t\t\t[-86.241090, 39.926092],\n\t\t\t\t\t\t[-86.239739, 39.926055],\n\t\t\t\t\t\t[-86.172237, 39.926895],\n\t\t\t\t\t\t[-85.937587, 39.927137]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18101\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"101\",\n\t\t\t\t\"NAME\": \"Martin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 335.737000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.682359, 38.526378],\n\t\t\t\t\t\t[-86.924186, 38.505358],\n\t\t\t\t\t\t[-86.922943, 38.817238],\n\t\t\t\t\t\t[-86.904252, 38.904204],\n\t\t\t\t\t\t[-86.682853, 38.904697],\n\t\t\t\t\t\t[-86.683102, 38.686561],\n\t\t\t\t\t\t[-86.682359, 38.526378]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18103\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"103\",\n\t\t\t\t\"NAME\": \"Miami\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 373.842000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.864791, 40.651693],\n\t\t\t\t\t\t[-85.863641, 40.565525],\n\t\t\t\t\t\t[-86.127424, 40.563098],\n\t\t\t\t\t\t[-86.165024, 40.562649],\n\t\t\t\t\t\t[-86.169012, 40.909836],\n\t\t\t\t\t\t[-86.168459, 40.996097],\n\t\t\t\t\t\t[-85.946436, 40.999195],\n\t\t\t\t\t\t[-85.939525, 40.650991],\n\t\t\t\t\t\t[-85.864791, 40.651693]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18109\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"109\",\n\t\t\t\t\"NAME\": \"Morgan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 403.969000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.249885, 39.633645],\n\t\t\t\t\t\t[-86.251310, 39.430595],\n\t\t\t\t\t\t[-86.251684, 39.341672],\n\t\t\t\t\t\t[-86.381395, 39.339752],\n\t\t\t\t\t\t[-86.574280, 39.339681],\n\t\t\t\t\t\t[-86.630844, 39.340755],\n\t\t\t\t\t\t[-86.630818, 39.346948],\n\t\t\t\t\t\t[-86.632206, 39.470214],\n\t\t\t\t\t\t[-86.685710, 39.470063],\n\t\t\t\t\t\t[-86.656650, 39.601395],\n\t\t\t\t\t\t[-86.465605, 39.600769],\n\t\t\t\t\t\t[-86.326341, 39.632177],\n\t\t\t\t\t\t[-86.269239, 39.633267],\n\t\t\t\t\t\t[-86.268501, 39.633047],\n\t\t\t\t\t\t[-86.249885, 39.633645]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US16023\",\n\t\t\t\t\"STATE\": \"16\",\n\t\t\t\t\"COUNTY\": \"023\",\n\t\t\t\t\"NAME\": \"Butte\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2231.667000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-113.798031, 43.568818],\n\t\t\t\t\t\t[-113.412487, 43.816840],\n\t\t\t\t\t\t[-113.361529, 43.797376],\n\t\t\t\t\t\t[-113.453713, 43.873739],\n\t\t\t\t\t\t[-113.457929, 44.059209],\n\t\t\t\t\t\t[-113.416344, 44.059209],\n\t\t\t\t\t\t[-113.416796, 44.233311],\n\t\t\t\t\t\t[-113.320672, 44.232998],\n\t\t\t\t\t\t[-112.995379, 44.233956],\n\t\t\t\t\t\t[-112.994195, 43.972403],\n\t\t\t\t\t\t[-112.695027, 43.971940],\n\t\t\t\t\t\t[-112.697408, 43.623011],\n\t\t\t\t\t\t[-112.699080, 43.540244],\n\t\t\t\t\t\t[-112.816193, 43.535869],\n\t\t\t\t\t\t[-112.816659, 43.449048],\n\t\t\t\t\t\t[-112.936835, 43.449386],\n\t\t\t\t\t\t[-112.947187, 43.284725],\n\t\t\t\t\t\t[-113.007290, 43.284801],\n\t\t\t\t\t\t[-113.361905, 43.284655],\n\t\t\t\t\t\t[-113.361910, 43.367232],\n\t\t\t\t\t\t[-113.635446, 43.367556],\n\t\t\t\t\t\t[-113.635260, 43.452266],\n\t\t\t\t\t\t[-113.593503, 43.467251],\n\t\t\t\t\t\t[-113.700570, 43.584762],\n\t\t\t\t\t\t[-113.798031, 43.568818]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US16025\",\n\t\t\t\t\"STATE\": \"16\",\n\t\t\t\t\"COUNTY\": \"025\",\n\t\t\t\t\"NAME\": \"Camas\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1074.493000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-114.374877, 43.199603],\n\t\t\t\t\t\t[-114.594685, 43.198302],\n\t\t\t\t\t\t[-115.086480, 43.198436],\n\t\t\t\t\t\t[-115.083089, 43.604292],\n\t\t\t\t\t\t[-115.008925, 43.697398],\n\t\t\t\t\t\t[-115.042177, 43.745451],\n\t\t\t\t\t\t[-114.989384, 43.858611],\n\t\t\t\t\t\t[-114.828915, 43.788027],\n\t\t\t\t\t\t[-114.714849, 43.814844],\n\t\t\t\t\t\t[-114.666283, 43.738010],\n\t\t\t\t\t\t[-114.682225, 43.590431],\n\t\t\t\t\t\t[-114.586574, 43.558902],\n\t\t\t\t\t\t[-114.507786, 43.480804],\n\t\t\t\t\t\t[-114.546987, 43.436603],\n\t\t\t\t\t\t[-114.534560, 43.333337],\n\t\t\t\t\t\t[-114.394580, 43.325804],\n\t\t\t\t\t\t[-114.374877, 43.199603]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US16029\",\n\t\t\t\t\"STATE\": \"16\",\n\t\t\t\t\"COUNTY\": \"029\",\n\t\t\t\t\"NAME\": \"Caribou\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1764.146000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-111.044156, 43.020052],\n\t\t\t\t\t\t[-111.044129, 43.018702],\n\t\t\t\t\t\t[-111.043924, 42.975063],\n\t\t\t\t\t\t[-111.043957, 42.969482],\n\t\t\t\t\t\t[-111.043959, 42.964450],\n\t\t\t\t\t\t[-111.046249, 42.513116],\n\t\t\t\t\t\t[-111.170956, 42.473299],\n\t\t\t\t\t\t[-111.234734, 42.478378],\n\t\t\t\t\t\t[-111.241365, 42.602078],\n\t\t\t\t\t\t[-111.280054, 42.553042],\n\t\t\t\t\t\t[-111.364809, 42.590462],\n\t\t\t\t\t\t[-111.603999, 42.590757],\n\t\t\t\t\t\t[-111.634939, 42.570117],\n\t\t\t\t\t\t[-111.579321, 42.430510],\n\t\t\t\t\t\t[-111.598597, 42.415821],\n\t\t\t\t\t\t[-111.875573, 42.416335],\n\t\t\t\t\t\t[-111.969449, 42.718039],\n\t\t\t\t\t\t[-112.105476, 42.699195],\n\t\t\t\t\t\t[-112.141140, 42.763051],\n\t\t\t\t\t\t[-112.120692, 42.831618],\n\t\t\t\t\t\t[-112.149792, 42.895603],\n\t\t\t\t\t\t[-112.082064, 42.950516],\n\t\t\t\t\t\t[-112.063055, 43.022364],\n\t\t\t\t\t\t[-111.589615, 43.020052],\n\t\t\t\t\t\t[-111.044156, 43.020052]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US16033\",\n\t\t\t\t\"STATE\": \"16\",\n\t\t\t\t\"COUNTY\": \"033\",\n\t\t\t\t\"NAME\": \"Clark\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1764.185000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-112.829247, 44.385427],\n\t\t\t\t\t\t[-112.824701, 44.393611],\n\t\t\t\t\t\t[-112.823373, 44.406225],\n\t\t\t\t\t\t[-112.822046, 44.420831],\n\t\t\t\t\t\t[-112.822046, 44.434109],\n\t\t\t\t\t\t[-112.812087, 44.451370],\n\t\t\t\t\t\t[-112.781294, 44.484888],\n\t\t\t\t\t\t[-112.719110, 44.504344],\n\t\t\t\t\t\t[-112.688160, 44.498850],\n\t\t\t\t\t\t[-112.544224, 44.483763],\n\t\t\t\t\t\t[-112.473207, 44.480027],\n\t\t\t\t\t\t[-112.410345, 44.462968],\n\t\t\t\t\t\t[-112.387080, 44.460476],\n\t\t\t\t\t\t[-112.371294, 44.472108],\n\t\t\t\t\t\t[-112.358926, 44.486280],\n\t\t\t\t\t\t[-112.356600, 44.493127],\n\t\t\t\t\t\t[-112.347199, 44.520298],\n\t\t\t\t\t\t[-112.339721, 44.538577],\n\t\t\t\t\t\t[-112.299009, 44.559348],\n\t\t\t\t\t\t[-112.274083, 44.564334],\n\t\t\t\t\t\t[-112.258297, 44.564334],\n\t\t\t\t\t\t[-112.246665, 44.561010],\n\t\t\t\t\t\t[-112.235864, 44.555194],\n\t\t\t\t\t\t[-112.229477, 44.549494],\n\t\t\t\t\t\t[-112.221698, 44.543519],\n\t\t\t\t\t\t[-112.187115, 44.534452],\n\t\t\t\t\t\t[-112.078471, 44.533551],\n\t\t\t\t\t\t[-111.947941, 44.556776],\n\t\t\t\t\t\t[-111.870504, 44.564033],\n\t\t\t\t\t\t[-111.849293, 44.539837],\n\t\t\t\t\t\t[-111.843295, 44.528225],\n\t\t\t\t\t\t[-111.806528, 44.515459],\n\t\t\t\t\t\t[-111.737191, 44.543060],\n\t\t\t\t\t\t[-111.704218, 44.560205],\n\t\t\t\t\t\t[-111.631505, 44.552022],\n\t\t\t\t\t\t[-111.617502, 44.553035],\n\t\t\t\t\t\t[-111.617773, 44.401585],\n\t\t\t\t\t\t[-111.791624, 44.401488],\n\t\t\t\t\t\t[-111.791456, 44.316956],\n\t\t\t\t\t\t[-111.852351, 44.316949],\n\t\t\t\t\t\t[-111.857973, 44.187800],\n\t\t\t\t\t\t[-111.913513, 44.144092],\n\t\t\t\t\t\t[-112.033664, 44.144049],\n\t\t\t\t\t\t[-112.034268, 44.057350],\n\t\t\t\t\t\t[-112.155950, 44.057677],\n\t\t\t\t\t\t[-112.694674, 44.058454],\n\t\t\t\t\t\t[-112.695027, 43.971940],\n\t\t\t\t\t\t[-112.994195, 43.972403],\n\t\t\t\t\t\t[-112.995379, 44.233956],\n\t\t\t\t\t\t[-112.813907, 44.230439],\n\t\t\t\t\t\t[-112.829247, 44.385427]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US16041\",\n\t\t\t\t\"STATE\": \"16\",\n\t\t\t\t\"COUNTY\": \"041\",\n\t\t\t\t\"NAME\": \"Franklin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 663.645000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-111.507264, 41.999518],\n\t\t\t\t\t\t[-111.876491, 41.998528],\n\t\t\t\t\t\t[-111.915622, 41.998496],\n\t\t\t\t\t\t[-111.915837, 41.998519],\n\t\t\t\t\t\t[-112.109528, 41.997105],\n\t\t\t\t\t\t[-112.109210, 42.169781],\n\t\t\t\t\t\t[-112.071014, 42.238475],\n\t\t\t\t\t\t[-112.126286, 42.285330],\n\t\t\t\t\t\t[-111.897244, 42.256646],\n\t\t\t\t\t\t[-111.875573, 42.416335],\n\t\t\t\t\t\t[-111.598597, 42.415821],\n\t\t\t\t\t\t[-111.552231, 42.351514],\n\t\t\t\t\t\t[-111.626162, 42.208613],\n\t\t\t\t\t\t[-111.594446, 42.093548],\n\t\t\t\t\t\t[-111.507264, 41.999518]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US16043\",\n\t\t\t\t\"STATE\": \"16\",\n\t\t\t\t\"COUNTY\": \"043\",\n\t\t\t\t\"NAME\": \"Fremont\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1863.525000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-111.048974, 44.474072],\n\t\t\t\t\t\t[-111.049194, 44.438058],\n\t\t\t\t\t\t[-111.049216, 44.435811],\n\t\t\t\t\t\t[-111.048633, 44.062903],\n\t\t\t\t\t\t[-111.048751, 44.060838],\n\t\t\t\t\t\t[-111.048751, 44.060403],\n\t\t\t\t\t\t[-111.048107, 43.983096],\n\t\t\t\t\t\t[-111.187110, 43.932202],\n\t\t\t\t\t\t[-111.398883, 43.923086],\n\t\t\t\t\t\t[-111.501009, 43.929272],\n\t\t\t\t\t\t[-111.558833, 43.883305],\n\t\t\t\t\t\t[-111.837795, 43.898332],\n\t\t\t\t\t\t[-111.976833, 43.927431],\n\t\t\t\t\t\t[-111.977090, 43.970929],\n\t\t\t\t\t\t[-112.156370, 43.971382],\n\t\t\t\t\t\t[-112.155950, 44.057677],\n\t\t\t\t\t\t[-112.034268, 44.057350],\n\t\t\t\t\t\t[-112.033664, 44.144049],\n\t\t\t\t\t\t[-111.913513, 44.144092],\n\t\t\t\t\t\t[-111.857973, 44.187800],\n\t\t\t\t\t\t[-111.852351, 44.316949],\n\t\t\t\t\t\t[-111.791456, 44.316956],\n\t\t\t\t\t\t[-111.791624, 44.401488],\n\t\t\t\t\t\t[-111.617773, 44.401585],\n\t\t\t\t\t\t[-111.617502, 44.553035],\n\t\t\t\t\t\t[-111.601249, 44.554210],\n\t\t\t\t\t\t[-111.525764, 44.604883],\n\t\t\t\t\t\t[-111.516588, 44.643707],\n\t\t\t\t\t\t[-111.489008, 44.705553],\n\t\t\t\t\t\t[-111.481536, 44.709186],\n\t\t\t\t\t\t[-111.394815, 44.751351],\n\t\t\t\t\t\t[-111.377682, 44.751744],\n\t\t\t\t\t\t[-111.323669, 44.724474],\n\t\t\t\t\t\t[-111.219236, 44.622616],\n\t\t\t\t\t\t[-111.139455, 44.517112],\n\t\t\t\t\t\t[-111.131379, 44.499925],\n\t\t\t\t\t\t[-111.122654, 44.493659],\n\t\t\t\t\t\t[-111.106574, 44.486330],\n\t\t\t\t\t\t[-111.048974, 44.474072]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US16047\",\n\t\t\t\t\"STATE\": \"16\",\n\t\t\t\t\"COUNTY\": \"047\",\n\t\t\t\t\"NAME\": \"Gooding\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 728.973000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-114.594685, 43.198302],\n\t\t\t\t\t\t[-114.594375, 42.850826],\n\t\t\t\t\t\t[-114.617400, 42.850811],\n\t\t\t\t\t\t[-114.616535, 42.649367],\n\t\t\t\t\t\t[-114.821582, 42.671582],\n\t\t\t\t\t\t[-114.850557, 42.749904],\n\t\t\t\t\t\t[-114.928714, 42.764961],\n\t\t\t\t\t\t[-114.901359, 42.858678],\n\t\t\t\t\t\t[-115.037262, 42.911931],\n\t\t\t\t\t\t[-115.086808, 42.914691],\n\t\t\t\t\t\t[-115.086480, 43.198436],\n\t\t\t\t\t\t[-114.594685, 43.198302]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US16053\",\n\t\t\t\t\"STATE\": \"16\",\n\t\t\t\t\"COUNTY\": \"053\",\n\t\t\t\t\"NAME\": \"Jerome\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 597.185000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-113.931799, 42.535275],\n\t\t\t\t\t\t[-113.956046, 42.530243],\n\t\t\t\t\t\t[-113.959446, 42.535020],\n\t\t\t\t\t\t[-113.985215, 42.534136],\n\t\t\t\t\t\t[-114.000691, 42.526434],\n\t\t\t\t\t\t[-114.045718, 42.528766],\n\t\t\t\t\t\t[-114.130292, 42.494975],\n\t\t\t\t\t\t[-114.375289, 42.598227],\n\t\t\t\t\t\t[-114.616535, 42.649367],\n\t\t\t\t\t\t[-114.617400, 42.850811],\n\t\t\t\t\t\t[-114.594375, 42.850826],\n\t\t\t\t\t\t[-114.365366, 42.850790],\n\t\t\t\t\t\t[-114.345659, 42.809055],\n\t\t\t\t\t\t[-114.049870, 42.808521],\n\t\t\t\t\t\t[-114.049868, 42.765121],\n\t\t\t\t\t\t[-113.932904, 42.765032],\n\t\t\t\t\t\t[-113.931799, 42.535275]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US16055\",\n\t\t\t\t\"STATE\": \"16\",\n\t\t\t\t\"COUNTY\": \"055\",\n\t\t\t\t\"NAME\": \"Kootenai\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1244.125000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-117.039857, 47.366093],\n\t\t\t\t\t\t[-117.039882, 47.399085],\n\t\t\t\t\t\t[-117.039950, 47.412412],\n\t\t\t\t\t\t[-117.039948, 47.434885],\n\t\t\t\t\t\t[-117.039971, 47.463309],\n\t\t\t\t\t\t[-117.039945, 47.477823],\n\t\t\t\t\t\t[-117.040514, 47.522351],\n\t\t\t\t\t\t[-117.040545, 47.527562],\n\t\t\t\t\t\t[-117.040745, 47.532909],\n\t\t\t\t\t\t[-117.041276, 47.558210],\n\t\t\t\t\t\t[-117.041174, 47.558530],\n\t\t\t\t\t\t[-117.041431, 47.678140],\n\t\t\t\t\t\t[-117.041431, 47.678185],\n\t\t\t\t\t\t[-117.041431, 47.680000],\n\t\t\t\t\t\t[-117.041532, 47.683194],\n\t\t\t\t\t\t[-117.041633, 47.706400],\n\t\t\t\t\t\t[-117.041678, 47.722710],\n\t\t\t\t\t\t[-117.042135, 47.744100],\n\t\t\t\t\t\t[-117.042059, 47.745100],\n\t\t\t\t\t\t[-117.042657, 47.760857],\n\t\t\t\t\t\t[-117.042623, 47.761223],\n\t\t\t\t\t\t[-117.042521, 47.764896],\n\t\t\t\t\t\t[-117.042485, 47.766525],\n\t\t\t\t\t\t[-117.041874, 47.977387],\n\t\t\t\t\t\t[-116.633095, 47.977147],\n\t\t\t\t\t\t[-116.504214, 47.991479],\n\t\t\t\t\t\t[-116.505028, 47.890188],\n\t\t\t\t\t\t[-116.322825, 47.890342],\n\t\t\t\t\t\t[-116.329496, 47.413781],\n\t\t\t\t\t\t[-116.586576, 47.414662],\n\t\t\t\t\t\t[-116.629147, 47.371701],\n\t\t\t\t\t\t[-117.039857, 47.366093]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US16061\",\n\t\t\t\t\"STATE\": \"16\",\n\t\t\t\t\"COUNTY\": \"061\",\n\t\t\t\t\"NAME\": \"Lewis\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 478.795000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-116.369247, 46.466921],\n\t\t\t\t\t\t[-116.308539, 46.412998],\n\t\t\t\t\t\t[-116.170422, 46.371589],\n\t\t\t\t\t\t[-116.012665, 46.225747],\n\t\t\t\t\t\t[-116.133369, 46.215189],\n\t\t\t\t\t\t[-116.189977, 46.154379],\n\t\t\t\t\t\t[-116.427985, 46.202578],\n\t\t\t\t\t\t[-116.514484, 46.131828],\n\t\t\t\t\t\t[-116.529919, 46.000809],\n\t\t\t\t\t\t[-116.638651, 46.036076],\n\t\t\t\t\t\t[-116.701977, 45.996177],\n\t\t\t\t\t\t[-116.713153, 46.325521],\n\t\t\t\t\t\t[-116.489852, 46.325334],\n\t\t\t\t\t\t[-116.362266, 46.352336],\n\t\t\t\t\t\t[-116.369247, 46.466921]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US16065\",\n\t\t\t\t\"STATE\": \"16\",\n\t\t\t\t\"COUNTY\": \"065\",\n\t\t\t\t\"NAME\": \"Madison\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 469.206000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-111.398883, 43.923086],\n\t\t\t\t\t\t[-111.399915, 43.622015],\n\t\t\t\t\t\t[-111.626438, 43.626748],\n\t\t\t\t\t\t[-111.932811, 43.766845],\n\t\t\t\t\t\t[-111.983381, 43.754138],\n\t\t\t\t\t\t[-111.976833, 43.927431],\n\t\t\t\t\t\t[-111.837795, 43.898332],\n\t\t\t\t\t\t[-111.558833, 43.883305],\n\t\t\t\t\t\t[-111.501009, 43.929272],\n\t\t\t\t\t\t[-111.398883, 43.923086]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US16069\",\n\t\t\t\t\"STATE\": \"16\",\n\t\t\t\t\"COUNTY\": \"069\",\n\t\t\t\t\"NAME\": \"Nez Perce\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 848.092000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-116.915989, 45.995413],\n\t\t\t\t\t\t[-116.943530, 46.062173],\n\t\t\t\t\t\t[-116.925621, 46.158888],\n\t\t\t\t\t\t[-116.958801, 46.242320],\n\t\t\t\t\t\t[-116.985333, 46.294617],\n\t\t\t\t\t\t[-116.987939, 46.298031],\n\t\t\t\t\t\t[-117.047469, 46.342884],\n\t\t\t\t\t\t[-117.061045, 46.367747],\n\t\t\t\t\t\t[-117.046915, 46.379577],\n\t\t\t\t\t\t[-117.039813, 46.425425],\n\t\t\t\t\t\t[-117.039741, 46.462704],\n\t\t\t\t\t\t[-117.039763, 46.469570],\n\t\t\t\t\t\t[-117.039771, 46.471779],\n\t\t\t\t\t\t[-117.039783, 46.541785],\n\t\t\t\t\t\t[-116.719183, 46.542789],\n\t\t\t\t\t\t[-116.625985, 46.628041],\n\t\t\t\t\t\t[-116.455881, 46.629097],\n\t\t\t\t\t\t[-116.448618, 46.497056],\n\t\t\t\t\t\t[-116.369352, 46.499750],\n\t\t\t\t\t\t[-116.369247, 46.466921],\n\t\t\t\t\t\t[-116.362266, 46.352336],\n\t\t\t\t\t\t[-116.489852, 46.325334],\n\t\t\t\t\t\t[-116.713153, 46.325521],\n\t\t\t\t\t\t[-116.701977, 45.996177],\n\t\t\t\t\t\t[-116.796418, 45.853807],\n\t\t\t\t\t\t[-116.857254, 45.904159],\n\t\t\t\t\t\t[-116.866544, 45.916958],\n\t\t\t\t\t\t[-116.875125, 45.942200],\n\t\t\t\t\t\t[-116.915989, 45.995413]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18007\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"007\",\n\t\t\t\t\"NAME\": \"Benton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 406.418000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.098390, 40.736541],\n\t\t\t\t\t\t[-87.096820, 40.736491],\n\t\t\t\t\t\t[-87.095357, 40.562895],\n\t\t\t\t\t\t[-87.093676, 40.475745],\n\t\t\t\t\t\t[-87.526511, 40.476879],\n\t\t\t\t\t\t[-87.526502, 40.477158],\n\t\t\t\t\t\t[-87.526379, 40.491237],\n\t\t\t\t\t\t[-87.526376, 40.491574],\n\t\t\t\t\t\t[-87.526352, 40.535111],\n\t\t\t\t\t\t[-87.526292, 40.535409],\n\t\t\t\t\t\t[-87.526129, 40.736885],\n\t\t\t\t\t\t[-87.267300, 40.736582],\n\t\t\t\t\t\t[-87.098390, 40.736541]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18013\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"013\",\n\t\t\t\t\"NAME\": \"Brown\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 311.981000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.085601, 39.344189],\n\t\t\t\t\t\t[-86.080294, 39.152543],\n\t\t\t\t\t\t[-86.080272, 39.050270],\n\t\t\t\t\t\t[-86.318133, 39.048810],\n\t\t\t\t\t\t[-86.370066, 39.048375],\n\t\t\t\t\t\t[-86.381395, 39.339752],\n\t\t\t\t\t\t[-86.251684, 39.341672],\n\t\t\t\t\t\t[-86.085601, 39.344189]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18015\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"015\",\n\t\t\t\t\"NAME\": \"Carroll\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 372.224000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.771293, 40.562082],\n\t\t\t\t\t\t[-86.747764, 40.737540],\n\t\t\t\t\t\t[-86.697099, 40.737102],\n\t\t\t\t\t\t[-86.678148, 40.736897],\n\t\t\t\t\t\t[-86.677986, 40.736752],\n\t\t\t\t\t\t[-86.581739, 40.735765],\n\t\t\t\t\t\t[-86.525164, 40.692419],\n\t\t\t\t\t\t[-86.373521, 40.692460],\n\t\t\t\t\t\t[-86.374417, 40.561361],\n\t\t\t\t\t\t[-86.375762, 40.431851],\n\t\t\t\t\t\t[-86.694665, 40.432156],\n\t\t\t\t\t\t[-86.695353, 40.561874],\n\t\t\t\t\t\t[-86.771293, 40.562082]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18019\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"019\",\n\t\t\t\t\"NAME\": \"Clark\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 372.855000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.638044, 38.380270],\n\t\t\t\t\t\t[-85.638777, 38.361443],\n\t\t\t\t\t\t[-85.653641, 38.327108],\n\t\t\t\t\t\t[-85.675017, 38.301317],\n\t\t\t\t\t\t[-85.683561, 38.295469],\n\t\t\t\t\t\t[-85.744862, 38.267170],\n\t\t\t\t\t\t[-85.750962, 38.267870],\n\t\t\t\t\t\t[-85.761062, 38.272570],\n\t\t\t\t\t\t[-85.766563, 38.277670],\n\t\t\t\t\t\t[-85.765963, 38.280469],\n\t\t\t\t\t\t[-85.773363, 38.286169],\n\t\t\t\t\t\t[-85.780963, 38.288469],\n\t\t\t\t\t\t[-85.791563, 38.288569],\n\t\t\t\t\t\t[-85.791575, 38.288566],\n\t\t\t\t\t\t[-85.760844, 38.350218],\n\t\t\t\t\t\t[-85.807704, 38.404443],\n\t\t\t\t\t\t[-85.994620, 38.418345],\n\t\t\t\t\t\t[-85.993317, 38.488540],\n\t\t\t\t\t\t[-85.884776, 38.503469],\n\t\t\t\t\t\t[-85.847893, 38.561269],\n\t\t\t\t\t\t[-85.793584, 38.604814],\n\t\t\t\t\t\t[-85.569980, 38.606155],\n\t\t\t\t\t\t[-85.427467, 38.586735],\n\t\t\t\t\t\t[-85.415821, 38.563558],\n\t\t\t\t\t\t[-85.415600, 38.546341],\n\t\t\t\t\t\t[-85.417322, 38.540763],\n\t\t\t\t\t\t[-85.423077, 38.531581],\n\t\t\t\t\t\t[-85.432928, 38.524072],\n\t\t\t\t\t\t[-85.433136, 38.523914],\n\t\t\t\t\t\t[-85.462518, 38.512602],\n\t\t\t\t\t\t[-85.607629, 38.439295],\n\t\t\t\t\t\t[-85.620521, 38.423105],\n\t\t\t\t\t\t[-85.632937, 38.395666],\n\t\t\t\t\t\t[-85.638041, 38.380338],\n\t\t\t\t\t\t[-85.638044, 38.380270]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18025\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"025\",\n\t\t\t\t\"NAME\": \"Crawford\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 305.643000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.323453, 38.139032],\n\t\t\t\t\t\t[-86.326788, 38.134604],\n\t\t\t\t\t\t[-86.332567, 38.130131],\n\t\t\t\t\t\t[-86.398661, 38.106238],\n\t\t\t\t\t\t[-86.426508, 38.081784],\n\t\t\t\t\t\t[-86.460425, 38.206825],\n\t\t\t\t\t\t[-86.571677, 38.207531],\n\t\t\t\t\t\t[-86.570136, 38.266328],\n\t\t\t\t\t\t[-86.679511, 38.263086],\n\t\t\t\t\t\t[-86.681424, 38.394767],\n\t\t\t\t\t\t[-86.308868, 38.394069],\n\t\t\t\t\t\t[-86.308674, 38.422875],\n\t\t\t\t\t\t[-86.255045, 38.422685],\n\t\t\t\t\t\t[-86.314292, 38.142610],\n\t\t\t\t\t\t[-86.323453, 38.139032]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18031\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"031\",\n\t\t\t\t\"NAME\": \"Decatur\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 372.568000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.686783, 39.130859],\n\t\t\t\t\t\t[-85.687294, 39.185605],\n\t\t\t\t\t\t[-85.687161, 39.189026],\n\t\t\t\t\t\t[-85.687295, 39.190076],\n\t\t\t\t\t\t[-85.684515, 39.350049],\n\t\t\t\t\t\t[-85.630630, 39.350205],\n\t\t\t\t\t\t[-85.629327, 39.452750],\n\t\t\t\t\t\t[-85.297575, 39.453275],\n\t\t\t\t\t\t[-85.296540, 39.268291],\n\t\t\t\t\t\t[-85.437910, 39.197132],\n\t\t\t\t\t\t[-85.440054, 39.195617],\n\t\t\t\t\t\t[-85.566320, 39.132761],\n\t\t\t\t\t\t[-85.686783, 39.130859]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18035\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"035\",\n\t\t\t\t\"NAME\": \"Delaware\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 392.124000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.444330, 40.379140],\n\t\t\t\t\t\t[-85.219901, 40.379034],\n\t\t\t\t\t\t[-85.220028, 40.375043],\n\t\t\t\t\t\t[-85.218758, 40.306706],\n\t\t\t\t\t\t[-85.214386, 40.076889],\n\t\t\t\t\t\t[-85.216033, 40.076828],\n\t\t\t\t\t\t[-85.576197, 40.077143],\n\t\t\t\t\t\t[-85.578589, 40.379524],\n\t\t\t\t\t\t[-85.552303, 40.378666],\n\t\t\t\t\t\t[-85.444330, 40.379140]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18045\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"045\",\n\t\t\t\t\"NAME\": \"Fountain\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 395.656000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.091957, 40.171253],\n\t\t\t\t\t\t[-87.090022, 39.953571],\n\t\t\t\t\t\t[-87.091006, 39.953009],\n\t\t\t\t\t\t[-87.125902, 39.953149],\n\t\t\t\t\t\t[-87.126051, 39.952985],\n\t\t\t\t\t\t[-87.178717, 39.953301],\n\t\t\t\t\t\t[-87.179415, 39.953033],\n\t\t\t\t\t\t[-87.190124, 39.953069],\n\t\t\t\t\t\t[-87.190288, 39.953379],\n\t\t\t\t\t\t[-87.204129, 39.953279],\n\t\t\t\t\t\t[-87.420221, 39.952452],\n\t\t\t\t\t\t[-87.406667, 40.127508],\n\t\t\t\t\t\t[-87.438755, 40.165694],\n\t\t\t\t\t\t[-87.339273, 40.223173],\n\t\t\t\t\t\t[-87.311889, 40.250036],\n\t\t\t\t\t\t[-87.294191, 40.257966],\n\t\t\t\t\t\t[-87.244898, 40.309252],\n\t\t\t\t\t\t[-87.092148, 40.366612],\n\t\t\t\t\t\t[-87.092563, 40.214806],\n\t\t\t\t\t\t[-87.091957, 40.171253]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13137\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"137\",\n\t\t\t\t\"NAME\": \"Habersham\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 276.740000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.352485, 34.715993],\n\t\t\t\t\t\t[-83.351392, 34.714456],\n\t\t\t\t\t\t[-83.350976, 34.713243],\n\t\t\t\t\t\t[-83.351293, 34.701703],\n\t\t\t\t\t\t[-83.338194, 34.687924],\n\t\t\t\t\t\t[-83.337867, 34.687681],\n\t\t\t\t\t\t[-83.459770, 34.481142],\n\t\t\t\t\t\t[-83.537538, 34.491725],\n\t\t\t\t\t\t[-83.615251, 34.431748],\n\t\t\t\t\t\t[-83.666413, 34.503598],\n\t\t\t\t\t\t[-83.615540, 34.552864],\n\t\t\t\t\t\t[-83.662819, 34.659801],\n\t\t\t\t\t\t[-83.623296, 34.732194],\n\t\t\t\t\t\t[-83.681596, 34.800593],\n\t\t\t\t\t\t[-83.666855, 34.806528],\n\t\t\t\t\t\t[-83.657921, 34.813682],\n\t\t\t\t\t\t[-83.652194, 34.822993],\n\t\t\t\t\t\t[-83.586897, 34.819991],\n\t\t\t\t\t\t[-83.548988, 34.749451],\n\t\t\t\t\t\t[-83.352422, 34.716111],\n\t\t\t\t\t\t[-83.352485, 34.715993]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13141\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"141\",\n\t\t\t\t\"NAME\": \"Hancock\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 471.841000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.052197, 33.080682],\n\t\t\t\t\t\t[-83.100834, 33.049849],\n\t\t\t\t\t\t[-83.097507, 33.151410],\n\t\t\t\t\t\t[-83.274108, 33.187238],\n\t\t\t\t\t\t[-83.253461, 33.259290],\n\t\t\t\t\t\t[-83.145774, 33.312084],\n\t\t\t\t\t\t[-83.164207, 33.355030],\n\t\t\t\t\t\t[-83.012853, 33.469178],\n\t\t\t\t\t\t[-82.851954, 33.443543],\n\t\t\t\t\t\t[-82.755846, 33.253440],\n\t\t\t\t\t\t[-82.747238, 33.247663],\n\t\t\t\t\t\t[-82.748311, 33.238348],\n\t\t\t\t\t\t[-82.855046, 33.196427],\n\t\t\t\t\t\t[-82.888866, 33.138603],\n\t\t\t\t\t\t[-83.052197, 33.080682]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13147\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"147\",\n\t\t\t\t\"NAME\": \"Hart\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 232.394000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.992215, 34.479198],\n\t\t\t\t\t\t[-82.979568, 34.482702],\n\t\t\t\t\t\t[-82.939067, 34.486202],\n\t\t\t\t\t\t[-82.902665, 34.485902],\n\t\t\t\t\t\t[-82.882864, 34.479003],\n\t\t\t\t\t\t[-82.873831, 34.471508],\n\t\t\t\t\t\t[-82.874864, 34.468891],\n\t\t\t\t\t\t[-82.848651, 34.423844],\n\t\t\t\t\t\t[-82.766078, 34.293509],\n\t\t\t\t\t\t[-82.980905, 34.211505],\n\t\t\t\t\t\t[-83.078004, 34.223606],\n\t\t\t\t\t\t[-83.115646, 34.262111],\n\t\t\t\t\t\t[-83.113360, 34.273530],\n\t\t\t\t\t\t[-83.094238, 34.415901],\n\t\t\t\t\t\t[-83.052161, 34.493062],\n\t\t\t\t\t\t[-83.034712, 34.483495],\n\t\t\t\t\t\t[-83.006848, 34.474376],\n\t\t\t\t\t\t[-82.995284, 34.474549],\n\t\t\t\t\t\t[-82.992671, 34.479072],\n\t\t\t\t\t\t[-82.992215, 34.479198]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13155\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"155\",\n\t\t\t\t\"NAME\": \"Irwin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 354.343000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.500702, 31.593990],\n\t\t\t\t\t\t[-83.453634, 31.757861],\n\t\t\t\t\t\t[-83.325296, 31.756584],\n\t\t\t\t\t\t[-83.325617, 31.680603],\n\t\t\t\t\t\t[-83.177218, 31.651691],\n\t\t\t\t\t\t[-83.176376, 31.678382],\n\t\t\t\t\t\t[-82.998360, 31.673164],\n\t\t\t\t\t\t[-83.145587, 31.472276],\n\t\t\t\t\t\t[-83.146085, 31.472088],\n\t\t\t\t\t\t[-83.338728, 31.475991],\n\t\t\t\t\t\t[-83.500702, 31.593990]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13159\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"159\",\n\t\t\t\t\"NAME\": \"Jasper\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 368.165000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.816048, 33.131816],\n\t\t\t\t\t\t[-83.817268, 33.141540],\n\t\t\t\t\t\t[-83.814056, 33.148460],\n\t\t\t\t\t\t[-83.822929, 33.157856],\n\t\t\t\t\t\t[-83.824585, 33.175640],\n\t\t\t\t\t\t[-83.822261, 33.180238],\n\t\t\t\t\t\t[-83.814103, 33.242134],\n\t\t\t\t\t\t[-83.863058, 33.368278],\n\t\t\t\t\t\t[-83.824922, 33.437263],\n\t\t\t\t\t\t[-83.674644, 33.487225],\n\t\t\t\t\t\t[-83.682196, 33.526220],\n\t\t\t\t\t\t[-83.586817, 33.465577],\n\t\t\t\t\t\t[-83.533736, 33.434472],\n\t\t\t\t\t\t[-83.537811, 33.393803],\n\t\t\t\t\t\t[-83.545876, 33.171944],\n\t\t\t\t\t\t[-83.816048, 33.131816]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13165\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"165\",\n\t\t\t\t\"NAME\": \"Jenkins\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 347.279000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.767553, 32.909411],\n\t\t\t\t\t\t[-81.867938, 32.681150],\n\t\t\t\t\t\t[-81.841005, 32.649093],\n\t\t\t\t\t\t[-82.001236, 32.606910],\n\t\t\t\t\t\t[-82.082440, 32.663061],\n\t\t\t\t\t\t[-82.144977, 32.812741],\n\t\t\t\t\t\t[-82.081331, 32.916782],\n\t\t\t\t\t\t[-81.857976, 32.953882],\n\t\t\t\t\t\t[-81.767553, 32.909411]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13171\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"171\",\n\t\t\t\t\"NAME\": \"Lamar\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 183.500000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.270140, 32.991011],\n\t\t\t\t\t\t[-84.248185, 33.189019],\n\t\t\t\t\t\t[-84.123767, 33.202824],\n\t\t\t\t\t\t[-84.041498, 33.202629],\n\t\t\t\t\t\t[-84.044113, 32.947874],\n\t\t\t\t\t\t[-84.123340, 32.932184],\n\t\t\t\t\t\t[-84.122361, 32.989576],\n\t\t\t\t\t\t[-84.270140, 32.991011]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13173\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"173\",\n\t\t\t\t\"NAME\": \"Lanier\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 185.261000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.019419, 30.849453],\n\t\t\t\t\t\t[-83.042924, 30.947296],\n\t\t\t\t\t\t[-83.179465, 30.950128],\n\t\t\t\t\t\t[-83.197971, 31.025405],\n\t\t\t\t\t\t[-83.165072, 31.147198],\n\t\t\t\t\t\t[-83.038246, 31.146705],\n\t\t\t\t\t\t[-83.046885, 31.183680],\n\t\t\t\t\t\t[-82.971247, 31.183988],\n\t\t\t\t\t\t[-82.971336, 30.869392],\n\t\t\t\t\t\t[-82.982155, 30.872249],\n\t\t\t\t\t\t[-82.993866, 30.860786],\n\t\t\t\t\t\t[-83.006577, 30.859470],\n\t\t\t\t\t\t[-83.013962, 30.844709],\n\t\t\t\t\t\t[-83.019419, 30.849453]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20091\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"091\",\n\t\t\t\t\"NAME\": \"Johnson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 473.375000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.608033, 38.847207],\n\t\t\t\t\t\t[-94.608041, 38.811064],\n\t\t\t\t\t\t[-94.609039, 38.760611],\n\t\t\t\t\t\t[-94.609399, 38.742440],\n\t\t\t\t\t\t[-94.609456, 38.740700],\n\t\t\t\t\t\t[-94.609509, 38.738102],\n\t\t\t\t\t\t[-95.056412, 38.738587],\n\t\t\t\t\t\t[-95.056207, 38.811432],\n\t\t\t\t\t\t[-95.056258, 38.982120],\n\t\t\t\t\t\t[-94.908765, 38.991401],\n\t\t\t\t\t\t[-94.872442, 39.059088],\n\t\t\t\t\t\t[-94.607391, 39.044086],\n\t\t\t\t\t\t[-94.608134, 38.942006],\n\t\t\t\t\t\t[-94.608134, 38.940006],\n\t\t\t\t\t\t[-94.607866, 38.937398],\n\t\t\t\t\t\t[-94.607978, 38.936870],\n\t\t\t\t\t\t[-94.608033, 38.883807],\n\t\t\t\t\t\t[-94.608033, 38.869207],\n\t\t\t\t\t\t[-94.608033, 38.868107],\n\t\t\t\t\t\t[-94.607993, 38.867271],\n\t\t\t\t\t\t[-94.608033, 38.861207],\n\t\t\t\t\t\t[-94.608033, 38.855007],\n\t\t\t\t\t\t[-94.608033, 38.847207]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20097\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"097\",\n\t\t\t\t\"NAME\": \"Kiowa\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 722.639000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.543189, 37.381124],\n\t\t\t\t\t\t[-99.555774, 37.381112],\n\t\t\t\t\t\t[-99.556119, 37.467722],\n\t\t\t\t\t\t[-99.559580, 37.734888],\n\t\t\t\t\t\t[-99.557681, 37.734925],\n\t\t\t\t\t\t[-99.013550, 37.732970],\n\t\t\t\t\t\t[-99.012598, 37.470421],\n\t\t\t\t\t\t[-99.012186, 37.436186],\n\t\t\t\t\t\t[-99.011755, 37.431042],\n\t\t\t\t\t\t[-99.011499, 37.384263],\n\t\t\t\t\t\t[-99.543189, 37.381124]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20099\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"099\",\n\t\t\t\t\"NAME\": \"Labette\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 645.295000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.407572, 36.999241],\n\t\t\t\t\t\t[-95.407683, 36.999241],\n\t\t\t\t\t\t[-95.511578, 36.999235],\n\t\t\t\t\t\t[-95.522415, 36.999281],\n\t\t\t\t\t\t[-95.517976, 37.266376],\n\t\t\t\t\t\t[-95.521130, 37.383990],\n\t\t\t\t\t\t[-95.088189, 37.383837],\n\t\t\t\t\t\t[-95.074972, 37.383823],\n\t\t\t\t\t\t[-95.075166, 37.339937],\n\t\t\t\t\t\t[-95.073504, 36.999509],\n\t\t\t\t\t\t[-95.073509, 36.999509],\n\t\t\t\t\t\t[-95.155187, 36.999539],\n\t\t\t\t\t\t[-95.155372, 36.999540],\n\t\t\t\t\t\t[-95.177301, 36.999520],\n\t\t\t\t\t\t[-95.195307, 36.999565],\n\t\t\t\t\t\t[-95.322565, 36.999358],\n\t\t\t\t\t\t[-95.328058, 36.999365],\n\t\t\t\t\t\t[-95.328327, 36.999366],\n\t\t\t\t\t\t[-95.331210, 36.999380],\n\t\t\t\t\t\t[-95.407572, 36.999241]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20103\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"103\",\n\t\t\t\t\"NAME\": \"Leavenworth\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 462.831000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.969061, 39.418876],\n\t\t\t\t\t\t[-94.946662, 39.399717],\n\t\t\t\t\t\t[-94.909954, 39.367459],\n\t\t\t\t\t\t[-94.908337, 39.355647],\n\t\t\t\t\t\t[-94.910641, 39.348335],\n\t\t\t\t\t\t[-94.907569, 39.320623],\n\t\t\t\t\t\t[-94.901009, 39.301680],\n\t\t\t\t\t\t[-94.832399, 39.227218],\n\t\t\t\t\t\t[-94.793948, 39.201276],\n\t\t\t\t\t\t[-94.900191, 39.202911],\n\t\t\t\t\t\t[-94.908765, 38.991401],\n\t\t\t\t\t\t[-95.056258, 38.982120],\n\t\t\t\t\t\t[-95.164123, 38.981630],\n\t\t\t\t\t\t[-95.187103, 39.044109],\n\t\t\t\t\t\t[-95.180891, 39.419218],\n\t\t\t\t\t\t[-94.969061, 39.418876]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20109\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"109\",\n\t\t\t\t\"NAME\": \"Logan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1072.994000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.811858, 39.133360],\n\t\t\t\t\t\t[-100.818698, 38.699861],\n\t\t\t\t\t\t[-101.128379, 38.700603],\n\t\t\t\t\t\t[-101.484383, 38.700166],\n\t\t\t\t\t\t[-101.478195, 39.134761],\n\t\t\t\t\t\t[-101.391717, 39.135117],\n\t\t\t\t\t\t[-100.811858, 39.133360]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20113\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"113\",\n\t\t\t\t\"NAME\": \"McPherson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 898.274000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.922136, 38.173713],\n\t\t\t\t\t\t[-97.924269, 38.522755],\n\t\t\t\t\t\t[-97.924795, 38.609880],\n\t\t\t\t\t\t[-97.371911, 38.609353],\n\t\t\t\t\t\t[-97.371750, 38.173673],\n\t\t\t\t\t\t[-97.701841, 38.173814],\n\t\t\t\t\t\t[-97.922136, 38.173713]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20119\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"119\",\n\t\t\t\t\"NAME\": \"Meade\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 978.088000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.089484, 37.002092],\n\t\t\t\t\t\t[-100.115722, 37.002206],\n\t\t\t\t\t\t[-100.187547, 37.002082],\n\t\t\t\t\t\t[-100.192371, 37.002036],\n\t\t\t\t\t\t[-100.193754, 37.002133],\n\t\t\t\t\t\t[-100.201676, 37.002081],\n\t\t\t\t\t\t[-100.551598, 37.000620],\n\t\t\t\t\t\t[-100.552683, 37.000735],\n\t\t\t\t\t\t[-100.591328, 37.000376],\n\t\t\t\t\t\t[-100.591413, 37.000399],\n\t\t\t\t\t\t[-100.629770, 37.000025],\n\t\t\t\t\t\t[-100.633323, 36.999936],\n\t\t\t\t\t\t[-100.633831, 37.387577],\n\t\t\t\t\t\t[-100.652728, 37.387627],\n\t\t\t\t\t\t[-100.652642, 37.474848],\n\t\t\t\t\t\t[-100.216229, 37.475190],\n\t\t\t\t\t\t[-100.161075, 37.475021],\n\t\t\t\t\t\t[-100.158220, 37.474854],\n\t\t\t\t\t\t[-100.155812, 37.475016],\n\t\t\t\t\t\t[-100.107248, 37.474836],\n\t\t\t\t\t\t[-100.091529, 37.386892],\n\t\t\t\t\t\t[-100.089484, 37.002092]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20125\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"125\",\n\t\t\t\t\"NAME\": \"Montgomery\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 643.527000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.522415, 36.999281],\n\t\t\t\t\t\t[-95.534401, 36.999332],\n\t\t\t\t\t\t[-95.573598, 36.999310],\n\t\t\t\t\t\t[-95.612140, 36.999321],\n\t\t\t\t\t\t[-95.615934, 36.999365],\n\t\t\t\t\t\t[-95.624350, 36.999360],\n\t\t\t\t\t\t[-95.630079, 36.999320],\n\t\t\t\t\t\t[-95.664301, 36.999322],\n\t\t\t\t\t\t[-95.686452, 36.999349],\n\t\t\t\t\t\t[-95.696659, 36.999215],\n\t\t\t\t\t\t[-95.710380, 36.999371],\n\t\t\t\t\t\t[-95.714887, 36.999279],\n\t\t\t\t\t\t[-95.718054, 36.999255],\n\t\t\t\t\t\t[-95.741908, 36.999244],\n\t\t\t\t\t\t[-95.759905, 36.999271],\n\t\t\t\t\t\t[-95.768719, 36.999205],\n\t\t\t\t\t\t[-95.786762, 36.999310],\n\t\t\t\t\t\t[-95.807980, 36.999124],\n\t\t\t\t\t\t[-95.866899, 36.999261],\n\t\t\t\t\t\t[-95.873944, 36.999300],\n\t\t\t\t\t\t[-95.875257, 36.999302],\n\t\t\t\t\t\t[-95.877151, 36.999304],\n\t\t\t\t\t\t[-95.910180, 36.999336],\n\t\t\t\t\t\t[-95.928122, 36.999245],\n\t\t\t\t\t\t[-95.936992, 36.999268],\n\t\t\t\t\t\t[-95.964270, 36.999094],\n\t\t\t\t\t\t[-95.964399, 37.299232],\n\t\t\t\t\t\t[-95.964666, 37.386656],\n\t\t\t\t\t\t[-95.961605, 37.386636],\n\t\t\t\t\t\t[-95.525560, 37.383979],\n\t\t\t\t\t\t[-95.521130, 37.383990],\n\t\t\t\t\t\t[-95.517976, 37.266376],\n\t\t\t\t\t\t[-95.522415, 36.999281]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20131\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"131\",\n\t\t\t\t\"NAME\": \"Nemaha\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 717.427000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.239208, 40.000691],\n\t\t\t\t\t\t[-96.239172, 40.000691],\n\t\t\t\t\t\t[-96.223839, 40.000729],\n\t\t\t\t\t\t[-96.220171, 40.000720],\n\t\t\t\t\t\t[-96.154365, 40.000495],\n\t\t\t\t\t\t[-96.154246, 40.000450],\n\t\t\t\t\t\t[-96.147167, 40.000479],\n\t\t\t\t\t\t[-96.125937, 40.000432],\n\t\t\t\t\t\t[-96.125788, 40.000467],\n\t\t\t\t\t\t[-96.089781, 40.000519],\n\t\t\t\t\t\t[-96.081395, 40.000603],\n\t\t\t\t\t\t[-96.051691, 40.000727],\n\t\t\t\t\t\t[-96.024090, 40.000719],\n\t\t\t\t\t\t[-96.010680, 40.000638],\n\t\t\t\t\t\t[-96.010678, 40.000638],\n\t\t\t\t\t\t[-95.958139, 40.000521],\n\t\t\t\t\t\t[-95.882524, 40.000470],\n\t\t\t\t\t\t[-95.788111, 40.000452],\n\t\t\t\t\t\t[-95.788315, 39.883502],\n\t\t\t\t\t\t[-95.788941, 39.653001],\n\t\t\t\t\t\t[-95.789101, 39.565916],\n\t\t\t\t\t\t[-96.035952, 39.566100],\n\t\t\t\t\t\t[-96.037537, 39.566159],\n\t\t\t\t\t\t[-96.238969, 39.566220],\n\t\t\t\t\t\t[-96.239583, 39.827119],\n\t\t\t\t\t\t[-96.239208, 40.000691]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20141\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"141\",\n\t\t\t\t\"NAME\": \"Osborne\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 892.504000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.037500, 39.133121],\n\t\t\t\t\t\t[-99.047687, 39.133014],\n\t\t\t\t\t\t[-99.044398, 39.568035],\n\t\t\t\t\t\t[-98.505266, 39.567603],\n\t\t\t\t\t\t[-98.503592, 39.567515],\n\t\t\t\t\t\t[-98.487384, 39.567492],\n\t\t\t\t\t\t[-98.490149, 39.219780],\n\t\t\t\t\t\t[-98.490161, 39.218033],\n\t\t\t\t\t\t[-98.490063, 39.215379],\n\t\t\t\t\t\t[-98.489864, 39.214650],\n\t\t\t\t\t\t[-98.489893, 39.213515],\n\t\t\t\t\t\t[-98.490011, 39.213048],\n\t\t\t\t\t\t[-98.489997, 39.132697],\n\t\t\t\t\t\t[-99.037500, 39.133121]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20143\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"143\",\n\t\t\t\t\"NAME\": \"Ottawa\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 720.733000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.929097, 39.306397],\n\t\t\t\t\t\t[-97.926096, 39.306517],\n\t\t\t\t\t\t[-97.369839, 39.306011],\n\t\t\t\t\t\t[-97.371154, 39.131961],\n\t\t\t\t\t\t[-97.371614, 38.957852],\n\t\t\t\t\t\t[-97.928560, 38.958395],\n\t\t\t\t\t\t[-97.929746, 39.219273],\n\t\t\t\t\t\t[-97.931614, 39.277094],\n\t\t\t\t\t\t[-97.929097, 39.306397]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20157\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"157\",\n\t\t\t\t\"NAME\": \"Republic\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 717.371000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.821496, 40.002002],\n\t\t\t\t\t\t[-97.819426, 40.001958],\n\t\t\t\t\t\t[-97.777155, 40.002167],\n\t\t\t\t\t\t[-97.770776, 40.001977],\n\t\t\t\t\t\t[-97.769204, 40.001995],\n\t\t\t\t\t\t[-97.767746, 40.001994],\n\t\t\t\t\t\t[-97.515308, 40.001901],\n\t\t\t\t\t\t[-97.511381, 40.001899],\n\t\t\t\t\t\t[-97.510264, 40.001835],\n\t\t\t\t\t\t[-97.463285, 40.002047],\n\t\t\t\t\t\t[-97.444662, 40.001958],\n\t\t\t\t\t\t[-97.425443, 40.002048],\n\t\t\t\t\t\t[-97.417826, 40.002024],\n\t\t\t\t\t\t[-97.415833, 40.002001],\n\t\t\t\t\t\t[-97.369199, 40.002060],\n\t\t\t\t\t\t[-97.368670, 39.654043],\n\t\t\t\t\t\t[-97.931482, 39.653767],\n\t\t\t\t\t\t[-97.931826, 40.002050],\n\t\t\t\t\t\t[-97.931811, 40.002050],\n\t\t\t\t\t\t[-97.876261, 40.002102],\n\t\t\t\t\t\t[-97.857450, 40.002065],\n\t\t\t\t\t\t[-97.838379, 40.001910],\n\t\t\t\t\t\t[-97.821598, 40.002004],\n\t\t\t\t\t\t[-97.821496, 40.002002]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20165\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"165\",\n\t\t\t\t\"NAME\": \"Rush\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 717.763000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.585087, 38.696537],\n\t\t\t\t\t\t[-99.042626, 38.696807],\n\t\t\t\t\t\t[-99.032971, 38.696759],\n\t\t\t\t\t\t[-99.032408, 38.348334],\n\t\t\t\t\t\t[-99.584794, 38.349386],\n\t\t\t\t\t\t[-99.585087, 38.696537]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20167\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"167\",\n\t\t\t\t\"NAME\": \"Russell\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 886.260000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.032971, 38.696759],\n\t\t\t\t\t\t[-99.042626, 38.696807],\n\t\t\t\t\t\t[-99.037500, 39.133121],\n\t\t\t\t\t\t[-98.489997, 39.132697],\n\t\t\t\t\t\t[-98.483748, 39.132671],\n\t\t\t\t\t\t[-98.484861, 38.870791],\n\t\t\t\t\t\t[-98.486108, 38.696878],\n\t\t\t\t\t\t[-99.032971, 38.696759]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20171\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"171\",\n\t\t\t\t\"NAME\": \"Scott\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 717.544000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-101.125438, 38.264509],\n\t\t\t\t\t\t[-101.128379, 38.700603],\n\t\t\t\t\t\t[-100.818698, 38.699861],\n\t\t\t\t\t\t[-100.688006, 38.700021],\n\t\t\t\t\t\t[-100.684637, 38.271122],\n\t\t\t\t\t\t[-100.687836, 38.264150],\n\t\t\t\t\t\t[-101.103268, 38.264557],\n\t\t\t\t\t\t[-101.125438, 38.264509]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20177\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"177\",\n\t\t\t\t\"NAME\": \"Shawnee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 544.016000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.500254, 39.056656],\n\t\t\t\t\t\t[-95.500724, 38.869815],\n\t\t\t\t\t\t[-95.946587, 38.869973],\n\t\t\t\t\t\t[-95.946754, 39.098685],\n\t\t\t\t\t\t[-96.039060, 39.126527],\n\t\t\t\t\t\t[-96.035573, 39.216520],\n\t\t\t\t\t\t[-95.589472, 39.216081],\n\t\t\t\t\t\t[-95.596759, 39.064672],\n\t\t\t\t\t\t[-95.500254, 39.056656]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22057\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"057\",\n\t\t\t\t\"NAME\": \"Lafourche\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 1068.214000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.029466, 29.432015],\n\t\t\t\t\t\t[-90.032298, 29.427005],\n\t\t\t\t\t\t[-90.031536, 29.412545],\n\t\t\t\t\t\t[-90.033295, 29.393274],\n\t\t\t\t\t\t[-90.029468, 29.388136],\n\t\t\t\t\t\t[-90.029614, 29.386658],\n\t\t\t\t\t\t[-90.029967, 29.383087],\n\t\t\t\t\t\t[-90.030761, 29.375043],\n\t\t\t\t\t\t[-90.030764, 29.375008],\n\t\t\t\t\t\t[-90.030855, 29.374876],\n\t\t\t\t\t\t[-90.033604, 29.370851],\n\t\t\t\t\t\t[-90.035415, 29.368201],\n\t\t\t\t\t\t[-90.036374, 29.363661],\n\t\t\t\t\t\t[-90.032842, 29.348624],\n\t\t\t\t\t\t[-90.031815, 29.344251],\n\t\t\t\t\t\t[-90.034275, 29.322661],\n\t\t\t\t\t\t[-90.028536, 29.307083],\n\t\t\t\t\t\t[-90.013778, 29.302710],\n\t\t\t\t\t\t[-90.009678, 29.294785],\n\t\t\t\t\t\t[-90.016288, 29.284257],\n\t\t\t\t\t\t[-90.019517, 29.282213],\n\t\t\t\t\t\t[-90.032088, 29.280027],\n\t\t\t\t\t\t[-90.043293, 29.282487],\n\t\t\t\t\t\t[-90.057094, 29.281331],\n\t\t\t\t\t\t[-90.061057, 29.276748],\n\t\t\t\t\t\t[-90.059691, 29.272648],\n\t\t\t\t\t\t[-90.060511, 29.267729],\n\t\t\t\t\t\t[-90.070622, 29.262537],\n\t\t\t\t\t\t[-90.086747, 29.259257],\n\t\t\t\t\t\t[-90.091119, 29.261443],\n\t\t\t\t\t\t[-90.097678, 29.261990],\n\t\t\t\t\t\t[-90.101231, 29.259804],\n\t\t\t\t\t\t[-90.096038, 29.240673],\n\t\t\t\t\t\t[-90.073355, 29.227282],\n\t\t\t\t\t\t[-90.073355, 29.210611],\n\t\t\t\t\t\t[-90.070622, 29.208698],\n\t\t\t\t\t\t[-90.063610, 29.209474],\n\t\t\t\t\t\t[-90.042910, 29.211765],\n\t\t\t\t\t\t[-90.019772, 29.231903],\n\t\t\t\t\t\t[-90.005718, 29.240627],\n\t\t\t\t\t\t[-89.969981, 29.255753],\n\t\t\t\t\t\t[-89.965667, 29.259126],\n\t\t\t\t\t\t[-89.959509, 29.267677],\n\t\t\t\t\t\t[-89.951175, 29.266124],\n\t\t\t\t\t\t[-89.949925, 29.263154],\n\t\t\t\t\t\t[-89.950756, 29.260801],\n\t\t\t\t\t\t[-89.956460, 29.253744],\n\t\t\t\t\t\t[-90.022029, 29.216065],\n\t\t\t\t\t\t[-90.058512, 29.183687],\n\t\t\t\t\t\t[-90.079276, 29.169970],\n\t\t\t\t\t\t[-90.088684, 29.162574],\n\t\t\t\t\t\t[-90.104162, 29.150407],\n\t\t\t\t\t\t[-90.174273, 29.105301],\n\t\t\t\t\t\t[-90.223587, 29.085075],\n\t\t\t\t\t\t[-90.231984, 29.087730],\n\t\t\t\t\t\t[-90.245283, 29.085824],\n\t\t\t\t\t\t[-90.343293, 29.057062],\n\t\t\t\t\t\t[-90.348768, 29.057817],\n\t\t\t\t\t\t[-90.349891, 29.063681],\n\t\t\t\t\t\t[-90.325514, 29.075138],\n\t\t\t\t\t\t[-90.304129, 29.077332],\n\t\t\t\t\t\t[-90.292930, 29.078761],\n\t\t\t\t\t\t[-90.282983, 29.082326],\n\t\t\t\t\t\t[-90.266290, 29.089421],\n\t\t\t\t\t\t[-90.258145, 29.091627],\n\t\t\t\t\t\t[-90.253141, 29.093772],\n\t\t\t\t\t\t[-90.249806, 29.100919],\n\t\t\t\t\t\t[-90.250044, 29.108067],\n\t\t\t\t\t\t[-90.243849, 29.110450],\n\t\t\t\t\t\t[-90.234235, 29.110268],\n\t\t\t\t\t\t[-90.234405, 29.128824],\n\t\t\t\t\t\t[-90.243435, 29.136311],\n\t\t\t\t\t\t[-90.248629, 29.138370],\n\t\t\t\t\t\t[-90.269010, 29.139242],\n\t\t\t\t\t\t[-90.280516, 29.142521],\n\t\t\t\t\t\t[-90.278320, 29.150691],\n\t\t\t\t\t\t[-90.297000, 29.171317],\n\t\t\t\t\t\t[-90.302846, 29.175098],\n\t\t\t\t\t\t[-90.302948, 29.187948],\n\t\t\t\t\t\t[-90.300885, 29.196171],\n\t\t\t\t\t\t[-90.293183, 29.199789],\n\t\t\t\t\t\t[-90.282800, 29.192545],\n\t\t\t\t\t\t[-90.275851, 29.193668],\n\t\t\t\t\t\t[-90.271251, 29.204639],\n\t\t\t\t\t\t[-90.286621, 29.225694],\n\t\t\t\t\t\t[-90.300304, 29.231241],\n\t\t\t\t\t\t[-90.311663, 29.237954],\n\t\t\t\t\t\t[-90.311523, 29.256374],\n\t\t\t\t\t\t[-90.316093, 29.264777],\n\t\t\t\t\t\t[-90.332796, 29.276956],\n\t\t\t\t\t\t[-90.367166, 29.274128],\n\t\t\t\t\t\t[-90.368154, 29.270736],\n\t\t\t\t\t\t[-90.367012, 29.264956],\n\t\t\t\t\t\t[-90.372565, 29.258923],\n\t\t\t\t\t\t[-90.387924, 29.252786],\n\t\t\t\t\t\t[-90.383857, 29.235606],\n\t\t\t\t\t\t[-90.399465, 29.201046],\n\t\t\t\t\t\t[-90.408578, 29.196421],\n\t\t\t\t\t\t[-90.409416, 29.196135],\n\t\t\t\t\t\t[-90.376666, 29.302883],\n\t\t\t\t\t\t[-90.384285, 29.365755],\n\t\t\t\t\t\t[-90.574611, 29.559141],\n\t\t\t\t\t\t[-90.766849, 29.695477],\n\t\t\t\t\t\t[-90.807692, 29.775908],\n\t\t\t\t\t\t[-90.880194, 29.716809],\n\t\t\t\t\t\t[-91.006743, 29.714771],\n\t\t\t\t\t\t[-90.885589, 29.905353],\n\t\t\t\t\t\t[-90.785659, 29.921592],\n\t\t\t\t\t\t[-90.656312, 29.889246],\n\t\t\t\t\t\t[-90.541943, 29.891522],\n\t\t\t\t\t\t[-90.475418, 29.812210],\n\t\t\t\t\t\t[-90.371978, 29.759239],\n\t\t\t\t\t\t[-90.346191, 29.693302],\n\t\t\t\t\t\t[-90.228157, 29.692028],\n\t\t\t\t\t\t[-90.155807, 29.677530],\n\t\t\t\t\t\t[-90.186172, 29.563341],\n\t\t\t\t\t\t[-90.137504, 29.477163],\n\t\t\t\t\t\t[-90.029466, 29.432015]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22061\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"061\",\n\t\t\t\t\"NAME\": \"Lincoln\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 471.742000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.415071, 32.582845],\n\t\t\t\t\t\t[-92.415350, 32.495486],\n\t\t\t\t\t\t[-92.622335, 32.496406],\n\t\t\t\t\t\t[-92.621678, 32.452999],\n\t\t\t\t\t\t[-92.777197, 32.453455],\n\t\t\t\t\t\t[-92.879268, 32.454118],\n\t\t\t\t\t\t[-92.880805, 32.585277],\n\t\t\t\t\t\t[-92.828535, 32.758814],\n\t\t\t\t\t\t[-92.725439, 32.759540],\n\t\t\t\t\t\t[-92.571295, 32.748579],\n\t\t\t\t\t\t[-92.518356, 32.670720],\n\t\t\t\t\t\t[-92.415050, 32.670056],\n\t\t\t\t\t\t[-92.415071, 32.582845]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22063\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"063\",\n\t\t\t\t\"NAME\": \"Livingston\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 648.169000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.774577, 30.249808],\n\t\t\t\t\t\t[-90.891728, 30.345244],\n\t\t\t\t\t\t[-90.991529, 30.461818],\n\t\t\t\t\t\t[-90.980939, 30.589988],\n\t\t\t\t\t\t[-90.910701, 30.649385],\n\t\t\t\t\t\t[-90.567165, 30.650023],\n\t\t\t\t\t\t[-90.546118, 30.430283],\n\t\t\t\t\t\t[-90.401254, 30.285534],\n\t\t\t\t\t\t[-90.497899, 30.255946],\n\t\t\t\t\t\t[-90.558638, 30.193737],\n\t\t\t\t\t\t[-90.632811, 30.221409],\n\t\t\t\t\t\t[-90.689821, 30.176589],\n\t\t\t\t\t\t[-90.774577, 30.249808]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22069\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"069\",\n\t\t\t\t\"NAME\": \"Natchitoches\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 1252.250000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.441171, 31.845233],\n\t\t\t\t\t\t[-93.440570, 31.913730],\n\t\t\t\t\t\t[-93.355452, 31.932222],\n\t\t\t\t\t\t[-93.239501, 31.903520],\n\t\t\t\t\t\t[-93.238470, 31.972781],\n\t\t\t\t\t\t[-93.122686, 31.972728],\n\t\t\t\t\t\t[-93.187162, 32.148412],\n\t\t\t\t\t\t[-92.939080, 32.147942],\n\t\t\t\t\t\t[-92.872174, 31.945856],\n\t\t\t\t\t\t[-92.966800, 31.781299],\n\t\t\t\t\t\t[-92.973529, 31.708922],\n\t\t\t\t\t\t[-92.908313, 31.625169],\n\t\t\t\t\t\t[-92.806206, 31.598548],\n\t\t\t\t\t\t[-92.718983, 31.517594],\n\t\t\t\t\t\t[-92.913019, 31.368236],\n\t\t\t\t\t\t[-92.981464, 31.346644],\n\t\t\t\t\t\t[-93.236104, 31.364507],\n\t\t\t\t\t\t[-93.236662, 31.538339],\n\t\t\t\t\t\t[-93.337456, 31.538110],\n\t\t\t\t\t\t[-93.338972, 31.714259],\n\t\t\t\t\t\t[-93.441743, 31.714485],\n\t\t\t\t\t\t[-93.441171, 31.845233]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22075\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"075\",\n\t\t\t\t\"NAME\": \"Plaquemines\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 779.911000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.911037, 29.868543],\n\t\t\t\t\t\t[-89.869720, 29.795451],\n\t\t\t\t\t\t[-89.721045, 29.757652],\n\t\t\t\t\t\t[-89.628181, 29.680682],\n\t\t\t\t\t\t[-89.518600, 29.649117],\n\t\t\t\t\t\t[-89.486709, 29.621003],\n\t\t\t\t\t\t[-89.486931, 29.620447],\n\t\t\t\t\t\t[-89.504738, 29.631508],\n\t\t\t\t\t\t[-89.523018, 29.639427],\n\t\t\t\t\t\t[-89.535202, 29.648567],\n\t\t\t\t\t\t[-89.583336, 29.652834],\n\t\t\t\t\t\t[-89.608925, 29.657707],\n\t\t\t\t\t\t[-89.621109, 29.657101],\n\t\t\t\t\t\t[-89.623550, 29.662584],\n\t\t\t\t\t\t[-89.632698, 29.671724],\n\t\t\t\t\t\t[-89.644272, 29.675381],\n\t\t\t\t\t\t[-89.649750, 29.672941],\n\t\t\t\t\t\t[-89.641228, 29.647961],\n\t\t\t\t\t\t[-89.641228, 29.635773],\n\t\t\t\t\t\t[-89.647324, 29.625414],\n\t\t\t\t\t\t[-89.657677, 29.624195],\n\t\t\t\t\t\t[-89.674736, 29.626633],\n\t\t\t\t\t\t[-89.684486, 29.624804],\n\t\t\t\t\t\t[-89.688141, 29.615055],\n\t\t\t\t\t\t[-89.684486, 29.602867],\n\t\t\t\t\t\t[-89.671082, 29.588243],\n\t\t\t\t\t\t[-89.668648, 29.580322],\n\t\t\t\t\t\t[-89.684486, 29.563263],\n\t\t\t\t\t\t[-89.684486, 29.551073],\n\t\t\t\t\t\t[-89.681092, 29.534487],\n\t\t\t\t\t\t[-89.696230, 29.525004],\n\t\t\t\t\t\t[-89.699698, 29.523423],\n\t\t\t\t\t\t[-89.700845, 29.520785],\n\t\t\t\t\t\t[-89.700501, 29.515967],\n\t\t\t\t\t\t[-89.693877, 29.508559],\n\t\t\t\t\t\t[-89.665813, 29.490020],\n\t\t\t\t\t\t[-89.644039, 29.492343],\n\t\t\t\t\t\t[-89.635330, 29.489294],\n\t\t\t\t\t\t[-89.617558, 29.468298],\n\t\t\t\t\t\t[-89.596533, 29.456303],\n\t\t\t\t\t\t[-89.592474, 29.449822],\n\t\t\t\t\t\t[-89.589536, 29.437662],\n\t\t\t\t\t\t[-89.577096, 29.433692],\n\t\t\t\t\t\t[-89.574635, 29.435734],\n\t\t\t\t\t\t[-89.574653, 29.441100],\n\t\t\t\t\t\t[-89.548686, 29.465723],\n\t\t\t\t\t\t[-89.528429, 29.454702],\n\t\t\t\t\t\t[-89.532150, 29.434567],\n\t\t\t\t\t\t[-89.531943, 29.425679],\n\t\t\t\t\t\t[-89.518368, 29.400230],\n\t\t\t\t\t\t[-89.508551, 29.386168],\n\t\t\t\t\t\t[-89.505038, 29.386040],\n\t\t\t\t\t\t[-89.487308, 29.393346],\n\t\t\t\t\t\t[-89.484354, 29.397471],\n\t\t\t\t\t\t[-89.482318, 29.406222],\n\t\t\t\t\t\t[-89.477140, 29.411241],\n\t\t\t\t\t\t[-89.470142, 29.401471],\n\t\t\t\t\t\t[-89.457303, 29.393148],\n\t\t\t\t\t\t[-89.422380, 29.390628],\n\t\t\t\t\t\t[-89.380001, 29.391785],\n\t\t\t\t\t\t[-89.373109, 29.387175],\n\t\t\t\t\t\t[-89.355528, 29.381569],\n\t\t\t\t\t\t[-89.340304, 29.381412],\n\t\t\t\t\t\t[-89.336589, 29.378228],\n\t\t\t\t\t\t[-89.347615, 29.365000],\n\t\t\t\t\t\t[-89.350694, 29.349544],\n\t\t\t\t\t\t[-89.323170, 29.343982],\n\t\t\t\t\t\t[-89.303766, 29.357455],\n\t\t\t\t\t\t[-89.283028, 29.356467],\n\t\t\t\t\t\t[-89.272543, 29.351195],\n\t\t\t\t\t\t[-89.265300, 29.345352],\n\t\t\t\t\t\t[-89.257852, 29.336872],\n\t\t\t\t\t\t[-89.253545, 29.322802],\n\t\t\t\t\t\t[-89.240870, 29.310081],\n\t\t\t\t\t\t[-89.224192, 29.313792],\n\t\t\t\t\t\t[-89.223444, 29.318066],\n\t\t\t\t\t\t[-89.219734, 29.324412],\n\t\t\t\t\t\t[-89.204703, 29.338674],\n\t\t\t\t\t\t[-89.200389, 29.344418],\n\t\t\t\t\t\t[-89.200599, 29.347672],\n\t\t\t\t\t\t[-89.189354, 29.345061],\n\t\t\t\t\t\t[-89.179547, 29.339608],\n\t\t\t\t\t\t[-89.177351, 29.335210],\n\t\t\t\t\t\t[-89.178221, 29.326970],\n\t\t\t\t\t\t[-89.165015, 29.303039],\n\t\t\t\t\t\t[-89.157593, 29.296691],\n\t\t\t\t\t\t[-89.140275, 29.291085],\n\t\t\t\t\t\t[-89.134337, 29.279340],\n\t\t\t\t\t\t[-89.136979, 29.275239],\n\t\t\t\t\t\t[-89.129688, 29.265632],\n\t\t\t\t\t\t[-89.100106, 29.250220],\n\t\t\t\t\t\t[-89.096173, 29.242930],\n\t\t\t\t\t\t[-89.095544, 29.238028],\n\t\t\t\t\t\t[-89.098389, 29.232963],\n\t\t\t\t\t\t[-89.105833, 29.231608],\n\t\t\t\t\t\t[-89.106244, 29.215912],\n\t\t\t\t\t\t[-89.100650, 29.206314],\n\t\t\t\t\t\t[-89.090724, 29.199992],\n\t\t\t\t\t\t[-89.068265, 29.204166],\n\t\t\t\t\t\t[-89.067371, 29.208636],\n\t\t\t\t\t\t[-89.029103, 29.220956],\n\t\t\t\t\t\t[-89.021850, 29.218162],\n\t\t\t\t\t\t[-89.015192, 29.211561],\n\t\t\t\t\t\t[-89.000674, 29.180091],\n\t\t\t\t\t\t[-89.005290, 29.164949],\n\t\t\t\t\t\t[-89.013254, 29.163280],\n\t\t\t\t\t\t[-89.018344, 29.165046],\n\t\t\t\t\t\t[-89.024269, 29.170043],\n\t\t\t\t\t\t[-89.043919, 29.162528],\n\t\t\t\t\t\t[-89.047233, 29.157833],\n\t\t\t\t\t\t[-89.038730, 29.142380],\n\t\t\t\t\t\t[-89.032004, 29.144747],\n\t\t\t\t\t\t[-89.024149, 29.137298],\n\t\t\t\t\t\t[-89.023942, 29.133700],\n\t\t\t\t\t\t[-89.026031, 29.130126],\n\t\t\t\t\t\t[-89.051953, 29.106554],\n\t\t\t\t\t\t[-89.055475, 29.084167],\n\t\t\t\t\t\t[-89.062335, 29.070234],\n\t\t\t\t\t\t[-89.091260, 29.066931],\n\t\t\t\t\t\t[-89.098068, 29.067984],\n\t\t\t\t\t\t[-89.105009, 29.073641],\n\t\t\t\t\t\t[-89.121542, 29.069074],\n\t\t\t\t\t\t[-89.143453, 29.047591],\n\t\t\t\t\t\t[-89.156339, 29.028782],\n\t\t\t\t\t\t[-89.162000, 29.015860],\n\t\t\t\t\t\t[-89.162326, 29.011713],\n\t\t\t\t\t\t[-89.164788, 29.008703],\n\t\t\t\t\t\t[-89.169850, 29.008703],\n\t\t\t\t\t\t[-89.175732, 29.012123],\n\t\t\t\t\t\t[-89.186061, 29.017993],\n\t\t\t\t\t\t[-89.182150, 29.025486],\n\t\t\t\t\t\t[-89.189893, 29.032635],\n\t\t\t\t\t\t[-89.197871, 29.029701],\n\t\t\t\t\t\t[-89.202563, 29.031603],\n\t\t\t\t\t\t[-89.211144, 29.040813],\n\t\t\t\t\t\t[-89.216101, 29.056371],\n\t\t\t\t\t\t[-89.215531, 29.061410],\n\t\t\t\t\t\t[-89.217201, 29.067275],\n\t\t\t\t\t\t[-89.225865, 29.078660],\n\t\t\t\t\t\t[-89.236310, 29.084605],\n\t\t\t\t\t\t[-89.254726, 29.083261],\n\t\t\t\t\t\t[-89.257283, 29.081086],\n\t\t\t\t\t\t[-89.256869, 29.073800],\n\t\t\t\t\t\t[-89.253640, 29.064954],\n\t\t\t\t\t\t[-89.259354, 29.058358],\n\t\t\t\t\t\t[-89.283215, 29.053325],\n\t\t\t\t\t\t[-89.291090, 29.053097],\n\t\t\t\t\t\t[-89.304888, 29.046379],\n\t\t\t\t\t\t[-89.315389, 29.039081],\n\t\t\t\t\t\t[-89.318102, 29.035342],\n\t\t\t\t\t\t[-89.315182, 29.032662],\n\t\t\t\t\t\t[-89.324850, 29.013805],\n\t\t\t\t\t\t[-89.335228, 29.015003],\n\t\t\t\t\t\t[-89.338249, 29.012935],\n\t\t\t\t\t\t[-89.383814, 28.947434],\n\t\t\t\t\t\t[-89.411480, 28.925011],\n\t\t\t\t\t\t[-89.419865, 28.929709],\n\t\t\t\t\t\t[-89.412388, 28.957504],\n\t\t\t\t\t\t[-89.408157, 28.965341],\n\t\t\t\t\t\t[-89.398104, 28.977016],\n\t\t\t\t\t\t[-89.382106, 28.981525],\n\t\t\t\t\t\t[-89.375049, 28.985368],\n\t\t\t\t\t\t[-89.334735, 29.040335],\n\t\t\t\t\t\t[-89.339828, 29.052221],\n\t\t\t\t\t\t[-89.354798, 29.072543],\n\t\t\t\t\t\t[-89.374522, 29.084174],\n\t\t\t\t\t\t[-89.405654, 29.086936],\n\t\t\t\t\t\t[-89.411154, 29.105838],\n\t\t\t\t\t\t[-89.409371, 29.127855],\n\t\t\t\t\t\t[-89.417718, 29.138690],\n\t\t\t\t\t\t[-89.428965, 29.144510],\n\t\t\t\t\t\t[-89.432932, 29.149023],\n\t\t\t\t\t\t[-89.447472, 29.178576],\n\t\t\t\t\t\t[-89.455829, 29.190991],\n\t\t\t\t\t\t[-89.472310, 29.207550],\n\t\t\t\t\t\t[-89.482844, 29.215053],\n\t\t\t\t\t\t[-89.536600, 29.236212],\n\t\t\t\t\t\t[-89.606651, 29.252023],\n\t\t\t\t\t\t[-89.671781, 29.289028],\n\t\t\t\t\t\t[-89.697258, 29.296679],\n\t\t\t\t\t\t[-89.726162, 29.304026],\n\t\t\t\t\t\t[-89.782149, 29.311132],\n\t\t\t\t\t\t[-89.819859, 29.310241],\n\t\t\t\t\t\t[-89.850305, 29.311768],\n\t\t\t\t\t\t[-89.855109, 29.334997],\n\t\t\t\t\t\t[-89.853699, 29.340640],\n\t\t\t\t\t\t[-89.847124, 29.349186],\n\t\t\t\t\t\t[-89.835000, 29.359043],\n\t\t\t\t\t\t[-89.820824, 29.377486],\n\t\t\t\t\t\t[-89.816916, 29.384385],\n\t\t\t\t\t\t[-89.816155, 29.393518],\n\t\t\t\t\t\t[-89.816916, 29.398845],\n\t\t\t\t\t\t[-89.819199, 29.404173],\n\t\t\t\t\t\t[-89.822243, 29.409500],\n\t\t\t\t\t\t[-89.826049, 29.415589],\n\t\t\t\t\t\t[-89.835392, 29.418538],\n\t\t\t\t\t\t[-89.843553, 29.421677],\n\t\t\t\t\t\t[-89.845075, 29.434615],\n\t\t\t\t\t\t[-89.836773, 29.454040],\n\t\t\t\t\t\t[-89.833659, 29.456686],\n\t\t\t\t\t\t[-89.833659, 29.459731],\n\t\t\t\t\t\t[-89.832898, 29.463536],\n\t\t\t\t\t\t[-89.833659, 29.467341],\n\t\t\t\t\t\t[-89.834420, 29.470386],\n\t\t\t\t\t\t[-89.840509, 29.473430],\n\t\t\t\t\t\t[-89.849642, 29.477996],\n\t\t\t\t\t\t[-89.862580, 29.476474],\n\t\t\t\t\t\t[-89.876224, 29.472168],\n\t\t\t\t\t\t[-89.902179, 29.460011],\n\t\t\t\t\t\t[-89.918999, 29.444254],\n\t\t\t\t\t\t[-89.932598, 29.429288],\n\t\t\t\t\t\t[-89.955430, 29.428527],\n\t\t\t\t\t\t[-89.961950, 29.432874],\n\t\t\t\t\t\t[-89.980018, 29.607582],\n\t\t\t\t\t\t[-90.075683, 29.771850],\n\t\t\t\t\t\t[-90.008056, 29.895528],\n\t\t\t\t\t\t[-89.911037, 29.868543]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22079\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"079\",\n\t\t\t\t\"NAME\": \"Rapides\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 1317.962000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.597741, 30.896101],\n\t\t\t\t\t\t[-92.823932, 30.890000],\n\t\t\t\t\t\t[-92.829651, 31.252281],\n\t\t\t\t\t\t[-92.879756, 31.317373],\n\t\t\t\t\t\t[-92.981464, 31.346644],\n\t\t\t\t\t\t[-92.913019, 31.368236],\n\t\t\t\t\t\t[-92.718983, 31.517594],\n\t\t\t\t\t\t[-92.694666, 31.407240],\n\t\t\t\t\t\t[-92.631944, 31.390478],\n\t\t\t\t\t\t[-92.196131, 31.477877],\n\t\t\t\t\t\t[-92.086718, 31.335374],\n\t\t\t\t\t\t[-92.233230, 31.321545],\n\t\t\t\t\t\t[-92.234258, 31.131466],\n\t\t\t\t\t\t[-92.208299, 30.962430],\n\t\t\t\t\t\t[-92.280738, 30.965071],\n\t\t\t\t\t\t[-92.382742, 31.001431],\n\t\t\t\t\t\t[-92.480330, 30.952271],\n\t\t\t\t\t\t[-92.508854, 30.896003],\n\t\t\t\t\t\t[-92.597741, 30.896101]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22081\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"081\",\n\t\t\t\t\"NAME\": \"Red River\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 389.090000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.614690, 32.237526],\n\t\t\t\t\t\t[-93.471249, 32.237186],\n\t\t\t\t\t\t[-93.463338, 32.237159],\n\t\t\t\t\t\t[-93.457933, 32.235970],\n\t\t\t\t\t\t[-93.428190, 32.235897],\n\t\t\t\t\t\t[-93.213988, 32.236065],\n\t\t\t\t\t\t[-93.187162, 32.148412],\n\t\t\t\t\t\t[-93.122686, 31.972728],\n\t\t\t\t\t\t[-93.238470, 31.972781],\n\t\t\t\t\t\t[-93.239501, 31.903520],\n\t\t\t\t\t\t[-93.355452, 31.932222],\n\t\t\t\t\t\t[-93.441506, 31.989180],\n\t\t\t\t\t\t[-93.541353, 32.105880],\n\t\t\t\t\t\t[-93.535963, 32.193126],\n\t\t\t\t\t\t[-93.614690, 32.237526]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22085\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"085\",\n\t\t\t\t\"NAME\": \"Sabine\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 866.659000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.818582, 31.554826],\n\t\t\t\t\t\t[-93.834923, 31.586210],\n\t\t\t\t\t\t[-93.834924, 31.586211],\n\t\t\t\t\t\t[-93.826290, 31.614903],\n\t\t\t\t\t\t[-93.817059, 31.671694],\n\t\t\t\t\t\t[-93.812477, 31.715246],\n\t\t\t\t\t\t[-93.840029, 31.800596],\n\t\t\t\t\t\t[-93.878225, 31.844276],\n\t\t\t\t\t\t[-93.441171, 31.845233],\n\t\t\t\t\t\t[-93.441743, 31.714485],\n\t\t\t\t\t\t[-93.338972, 31.714259],\n\t\t\t\t\t\t[-93.337456, 31.538110],\n\t\t\t\t\t\t[-93.236662, 31.538339],\n\t\t\t\t\t\t[-93.236104, 31.364507],\n\t\t\t\t\t\t[-93.390495, 31.364147],\n\t\t\t\t\t\t[-93.442554, 31.276716],\n\t\t\t\t\t\t[-93.534919, 31.276579],\n\t\t\t\t\t\t[-93.552540, 31.185605],\n\t\t\t\t\t\t[-93.552649, 31.185575],\n\t\t\t\t\t\t[-93.579215, 31.167422],\n\t\t\t\t\t\t[-93.588503, 31.165581],\n\t\t\t\t\t\t[-93.598828, 31.174679],\n\t\t\t\t\t\t[-93.599705, 31.176456],\n\t\t\t\t\t\t[-93.602315, 31.181742],\n\t\t\t\t\t\t[-93.607243, 31.204806],\n\t\t\t\t\t\t[-93.608158, 31.227835],\n\t\t\t\t\t\t[-93.614402, 31.260869],\n\t\t\t\t\t\t[-93.620829, 31.271299],\n\t\t\t\t\t\t[-93.644407, 31.277110],\n\t\t\t\t\t\t[-93.671676, 31.299586],\n\t\t\t\t\t\t[-93.640805, 31.372546],\n\t\t\t\t\t\t[-93.670182, 31.387184],\n\t\t\t\t\t\t[-93.695866, 31.409392],\n\t\t\t\t\t\t[-93.729613, 31.487922],\n\t\t\t\t\t\t[-93.798087, 31.534044],\n\t\t\t\t\t\t[-93.818582, 31.554826]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21111\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"111\",\n\t\t\t\t\"NAME\": \"Jefferson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 380.416000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.623735, 38.079648],\n\t\t\t\t\t\t[-85.703163, 38.086499],\n\t\t\t\t\t\t[-85.712578, 38.087311],\n\t\t\t\t\t\t[-85.842259, 38.051485],\n\t\t\t\t\t\t[-85.938321, 37.998756],\n\t\t\t\t\t\t[-85.945044, 38.002426],\n\t\t\t\t\t\t[-85.947952, 38.007083],\n\t\t\t\t\t\t[-85.941403, 38.009831],\n\t\t\t\t\t\t[-85.930235, 38.018311],\n\t\t\t\t\t\t[-85.922395, 38.028679],\n\t\t\t\t\t\t[-85.911607, 38.066890],\n\t\t\t\t\t\t[-85.906163, 38.086170],\n\t\t\t\t\t\t[-85.904564, 38.100270],\n\t\t\t\t\t\t[-85.905164, 38.111070],\n\t\t\t\t\t\t[-85.909464, 38.140070],\n\t\t\t\t\t\t[-85.908764, 38.161169],\n\t\t\t\t\t\t[-85.899550, 38.180343],\n\t\t\t\t\t\t[-85.897664, 38.184269],\n\t\t\t\t\t\t[-85.829364, 38.276769],\n\t\t\t\t\t\t[-85.823764, 38.280569],\n\t\t\t\t\t\t[-85.816164, 38.282969],\n\t\t\t\t\t\t[-85.791575, 38.288566],\n\t\t\t\t\t\t[-85.791563, 38.288569],\n\t\t\t\t\t\t[-85.780963, 38.288469],\n\t\t\t\t\t\t[-85.773363, 38.286169],\n\t\t\t\t\t\t[-85.765963, 38.280469],\n\t\t\t\t\t\t[-85.766563, 38.277670],\n\t\t\t\t\t\t[-85.761062, 38.272570],\n\t\t\t\t\t\t[-85.750962, 38.267870],\n\t\t\t\t\t\t[-85.744862, 38.267170],\n\t\t\t\t\t\t[-85.683561, 38.295469],\n\t\t\t\t\t\t[-85.675017, 38.301317],\n\t\t\t\t\t\t[-85.653641, 38.327108],\n\t\t\t\t\t\t[-85.638777, 38.361443],\n\t\t\t\t\t\t[-85.638044, 38.380270],\n\t\t\t\t\t\t[-85.468206, 38.285309],\n\t\t\t\t\t\t[-85.404899, 38.263730],\n\t\t\t\t\t\t[-85.424054, 38.147438],\n\t\t\t\t\t\t[-85.428830, 38.118383],\n\t\t\t\t\t\t[-85.557270, 38.073841],\n\t\t\t\t\t\t[-85.623735, 38.079648]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21113\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"113\",\n\t\t\t\t\"NAME\": \"Jessamine\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 172.116000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.716925, 37.815389],\n\t\t\t\t\t\t[-84.723114, 37.820503],\n\t\t\t\t\t\t[-84.723423, 37.832947],\n\t\t\t\t\t\t[-84.716905, 37.840923],\n\t\t\t\t\t\t[-84.695498, 37.845415],\n\t\t\t\t\t\t[-84.689095, 37.854796],\n\t\t\t\t\t\t[-84.709918, 37.861952],\n\t\t\t\t\t\t[-84.660135, 38.003745],\n\t\t\t\t\t\t[-84.479277, 37.940076],\n\t\t\t\t\t\t[-84.435720, 37.847202],\n\t\t\t\t\t\t[-84.525643, 37.769497],\n\t\t\t\t\t\t[-84.570310, 37.728713],\n\t\t\t\t\t\t[-84.675889, 37.826242],\n\t\t\t\t\t\t[-84.716925, 37.815389]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21123\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"123\",\n\t\t\t\t\"NAME\": \"Larue\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 261.519000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.521290, 37.554343],\n\t\t\t\t\t\t[-85.466250, 37.465595],\n\t\t\t\t\t\t[-85.583497, 37.469917],\n\t\t\t\t\t\t[-85.657332, 37.421996],\n\t\t\t\t\t\t[-85.892804, 37.440308],\n\t\t\t\t\t\t[-85.876006, 37.543259],\n\t\t\t\t\t\t[-85.680488, 37.732284],\n\t\t\t\t\t\t[-85.592088, 37.693479],\n\t\t\t\t\t\t[-85.623323, 37.551604],\n\t\t\t\t\t\t[-85.521290, 37.554343]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21129\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"129\",\n\t\t\t\t\"NAME\": \"Lee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 208.857000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.579186, 37.506249],\n\t\t\t\t\t\t[-83.630412, 37.537460],\n\t\t\t\t\t\t[-83.829340, 37.486821],\n\t\t\t\t\t\t[-83.885262, 37.517688],\n\t\t\t\t\t\t[-83.888697, 37.522189],\n\t\t\t\t\t\t[-83.893100, 37.526583],\n\t\t\t\t\t\t[-83.893514, 37.531119],\n\t\t\t\t\t\t[-83.900265, 37.535795],\n\t\t\t\t\t\t[-83.905570, 37.542856],\n\t\t\t\t\t\t[-83.824102, 37.662746],\n\t\t\t\t\t\t[-83.722100, 37.716420],\n\t\t\t\t\t\t[-83.712210, 37.720135],\n\t\t\t\t\t\t[-83.707974, 37.716463],\n\t\t\t\t\t\t[-83.522308, 37.638516],\n\t\t\t\t\t\t[-83.579186, 37.506249]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21135\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"135\",\n\t\t\t\t\"NAME\": \"Lewis\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 482.836000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.642994, 38.643273],\n\t\t\t\t\t\t[-83.636208, 38.670584],\n\t\t\t\t\t\t[-83.626922, 38.679387],\n\t\t\t\t\t\t[-83.615736, 38.684145],\n\t\t\t\t\t\t[-83.574754, 38.692671],\n\t\t\t\t\t\t[-83.533339, 38.702105],\n\t\t\t\t\t\t[-83.520953, 38.703045],\n\t\t\t\t\t\t[-83.512571, 38.701716],\n\t\t\t\t\t\t[-83.369077, 38.659334],\n\t\t\t\t\t\t[-83.333347, 38.641562],\n\t\t\t\t\t\t[-83.324157, 38.633326],\n\t\t\t\t\t\t[-83.320531, 38.622713],\n\t\t\t\t\t\t[-83.282100, 38.602987],\n\t\t\t\t\t\t[-83.265769, 38.605278],\n\t\t\t\t\t\t[-83.156926, 38.620547],\n\t\t\t\t\t\t[-83.142836, 38.625076],\n\t\t\t\t\t\t[-83.135046, 38.631719],\n\t\t\t\t\t\t[-83.127652, 38.642451],\n\t\t\t\t\t\t[-83.030889, 38.725560],\n\t\t\t\t\t\t[-83.071005, 38.595200],\n\t\t\t\t\t\t[-83.166419, 38.503965],\n\t\t\t\t\t\t[-83.237181, 38.426246],\n\t\t\t\t\t\t[-83.230680, 38.339286],\n\t\t\t\t\t\t[-83.341347, 38.319521],\n\t\t\t\t\t\t[-83.452848, 38.381799],\n\t\t\t\t\t\t[-83.579966, 38.429935],\n\t\t\t\t\t\t[-83.641852, 38.525381],\n\t\t\t\t\t\t[-83.646701, 38.637489],\n\t\t\t\t\t\t[-83.642994, 38.643273]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21139\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"139\",\n\t\t\t\t\"NAME\": \"Livingston\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 313.127000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.482957, 37.022566],\n\t\t\t\t\t\t[-88.564152, 37.078440],\n\t\t\t\t\t\t[-88.560032, 37.076010],\n\t\t\t\t\t\t[-88.545403, 37.070003],\n\t\t\t\t\t\t[-88.531576, 37.067192],\n\t\t\t\t\t\t[-88.514356, 37.065231],\n\t\t\t\t\t\t[-88.490297, 37.066669],\n\t\t\t\t\t\t[-88.482856, 37.067114],\n\t\t\t\t\t\t[-88.458948, 37.073796],\n\t\t\t\t\t\t[-88.444605, 37.098601],\n\t\t\t\t\t\t[-88.424403, 37.152428],\n\t\t\t\t\t\t[-88.447764, 37.203527],\n\t\t\t\t\t\t[-88.458763, 37.213536],\n\t\t\t\t\t\t[-88.471753, 37.220155],\n\t\t\t\t\t\t[-88.509328, 37.262130],\n\t\t\t\t\t\t[-88.515939, 37.284043],\n\t\t\t\t\t\t[-88.514661, 37.290948],\n\t\t\t\t\t\t[-88.476592, 37.386875],\n\t\t\t\t\t\t[-88.470224, 37.396255],\n\t\t\t\t\t\t[-88.456000, 37.408482],\n\t\t\t\t\t\t[-88.439333, 37.416416],\n\t\t\t\t\t\t[-88.414895, 37.423461],\n\t\t\t\t\t\t[-88.408808, 37.425216],\n\t\t\t\t\t\t[-88.358436, 37.404860],\n\t\t\t\t\t\t[-88.218980, 37.273145],\n\t\t\t\t\t\t[-88.193519, 37.147256],\n\t\t\t\t\t\t[-88.231145, 37.081575],\n\t\t\t\t\t\t[-88.209221, 36.999976],\n\t\t\t\t\t\t[-88.240371, 36.981911],\n\t\t\t\t\t\t[-88.365595, 37.064183],\n\t\t\t\t\t\t[-88.482957, 37.022566]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21145\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"145\",\n\t\t\t\t\"NAME\": \"McCracken\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 248.744000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.812897, 36.946864],\n\t\t\t\t\t\t[-88.815952, 36.954100],\n\t\t\t\t\t\t[-88.933399, 37.225007],\n\t\t\t\t\t\t[-88.933385, 37.225005],\n\t\t\t\t\t\t[-88.942111, 37.228811],\n\t\t\t\t\t\t[-88.928021, 37.226281],\n\t\t\t\t\t\t[-88.916934, 37.224291],\n\t\t\t\t\t\t[-88.809206, 37.189235],\n\t\t\t\t\t\t[-88.625889, 37.119458],\n\t\t\t\t\t\t[-88.589207, 37.099655],\n\t\t\t\t\t\t[-88.576718, 37.085852],\n\t\t\t\t\t\t[-88.564152, 37.078440],\n\t\t\t\t\t\t[-88.482957, 37.022566],\n\t\t\t\t\t\t[-88.485254, 37.001109],\n\t\t\t\t\t\t[-88.484103, 36.942096],\n\t\t\t\t\t\t[-88.812897, 36.946864]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21153\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"153\",\n\t\t\t\t\"NAME\": \"Magoffin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 308.444000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.925460, 37.486525],\n\t\t\t\t\t\t[-82.934353, 37.493991],\n\t\t\t\t\t\t[-82.941298, 37.489795],\n\t\t\t\t\t\t[-82.941667, 37.496323],\n\t\t\t\t\t\t[-82.945444, 37.497390],\n\t\t\t\t\t\t[-82.944205, 37.501434],\n\t\t\t\t\t\t[-82.948544, 37.503167],\n\t\t\t\t\t\t[-83.089796, 37.632167],\n\t\t\t\t\t\t[-83.134949, 37.606812],\n\t\t\t\t\t\t[-83.248692, 37.669616],\n\t\t\t\t\t\t[-83.258467, 37.679926],\n\t\t\t\t\t\t[-83.243603, 37.699155],\n\t\t\t\t\t\t[-83.262172, 37.712657],\n\t\t\t\t\t\t[-83.269662, 37.766012],\n\t\t\t\t\t\t[-83.113277, 37.864121],\n\t\t\t\t\t\t[-83.004649, 37.859247],\n\t\t\t\t\t\t[-82.940763, 37.716338],\n\t\t\t\t\t\t[-82.878723, 37.540134],\n\t\t\t\t\t\t[-82.925460, 37.486525]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21159\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"159\",\n\t\t\t\t\"NAME\": \"Martin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 229.605000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.497358, 37.945338],\n\t\t\t\t\t\t[-82.500386, 37.936518],\n\t\t\t\t\t\t[-82.474666, 37.910388],\n\t\t\t\t\t\t[-82.417679, 37.870658],\n\t\t\t\t\t\t[-82.400234, 37.851833],\n\t\t\t\t\t\t[-82.329867, 37.775897],\n\t\t\t\t\t\t[-82.319023, 37.758892],\n\t\t\t\t\t\t[-82.326404, 37.740815],\n\t\t\t\t\t\t[-82.456134, 37.668795],\n\t\t\t\t\t\t[-82.563561, 37.684844],\n\t\t\t\t\t\t[-82.640750, 37.720182],\n\t\t\t\t\t\t[-82.670887, 37.851823],\n\t\t\t\t\t\t[-82.612393, 37.879272],\n\t\t\t\t\t\t[-82.582085, 37.952314],\n\t\t\t\t\t\t[-82.497358, 37.945338]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21167\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"167\",\n\t\t\t\t\"NAME\": \"Mercer\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 248.797000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.709918, 37.861952],\n\t\t\t\t\t\t[-84.689095, 37.854796],\n\t\t\t\t\t\t[-84.695498, 37.845415],\n\t\t\t\t\t\t[-84.716905, 37.840923],\n\t\t\t\t\t\t[-84.723423, 37.832947],\n\t\t\t\t\t\t[-84.723114, 37.820503],\n\t\t\t\t\t\t[-84.716925, 37.815389],\n\t\t\t\t\t\t[-84.696741, 37.722830],\n\t\t\t\t\t\t[-84.744888, 37.713075],\n\t\t\t\t\t\t[-85.025021, 37.678854],\n\t\t\t\t\t\t[-85.000529, 37.854642],\n\t\t\t\t\t\t[-85.030528, 37.891538],\n\t\t\t\t\t\t[-84.937780, 37.952826],\n\t\t\t\t\t\t[-84.796327, 37.970088],\n\t\t\t\t\t\t[-84.818833, 37.945838],\n\t\t\t\t\t\t[-84.709918, 37.861952]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21171\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"171\",\n\t\t\t\t\"NAME\": \"Monroe\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 329.373000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.788613, 36.621845],\n\t\t\t\t\t\t[-85.788645, 36.621846],\n\t\t\t\t\t\t[-85.976421, 36.628400],\n\t\t\t\t\t\t[-85.976910, 36.722722],\n\t\t\t\t\t\t[-85.739255, 36.841476],\n\t\t\t\t\t\t[-85.596214, 36.818039],\n\t\t\t\t\t\t[-85.436418, 36.618194],\n\t\t\t\t\t\t[-85.471338, 36.616380],\n\t\t\t\t\t\t[-85.508605, 36.615020],\n\t\t\t\t\t\t[-85.551483, 36.615727],\n\t\t\t\t\t\t[-85.552017, 36.615782],\n\t\t\t\t\t\t[-85.788613, 36.621845]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21173\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"173\",\n\t\t\t\t\"NAME\": \"Montgomery\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 197.366000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.977924, 38.192118],\n\t\t\t\t\t\t[-83.881353, 38.136517],\n\t\t\t\t\t\t[-83.759430, 37.998731],\n\t\t\t\t\t\t[-83.768783, 37.918371],\n\t\t\t\t\t\t[-83.966310, 37.930768],\n\t\t\t\t\t\t[-84.051053, 38.070499],\n\t\t\t\t\t\t[-84.080527, 38.115118],\n\t\t\t\t\t\t[-83.977924, 38.192118]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21179\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"179\",\n\t\t\t\t\"NAME\": \"Nelson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 417.512000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.152797, 37.897661],\n\t\t\t\t\t\t[-85.299042, 37.831214],\n\t\t\t\t\t\t[-85.401784, 37.730658],\n\t\t\t\t\t\t[-85.450493, 37.685948],\n\t\t\t\t\t\t[-85.521290, 37.554343],\n\t\t\t\t\t\t[-85.623323, 37.551604],\n\t\t\t\t\t\t[-85.592088, 37.693479],\n\t\t\t\t\t\t[-85.680488, 37.732284],\n\t\t\t\t\t\t[-85.737777, 37.811790],\n\t\t\t\t\t\t[-85.651310, 37.828989],\n\t\t\t\t\t\t[-85.489202, 37.990654],\n\t\t\t\t\t\t[-85.399871, 37.939956],\n\t\t\t\t\t\t[-85.167834, 37.971809],\n\t\t\t\t\t\t[-85.152797, 37.897661]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19053\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"053\",\n\t\t\t\t\"NAME\": \"Decatur\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 531.881000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.556899, 40.580235],\n\t\t\t\t\t\t[-93.558938, 40.580189],\n\t\t\t\t\t\t[-93.560798, 40.580304],\n\t\t\t\t\t\t[-93.565240, 40.580143],\n\t\t\t\t\t\t[-93.565810, 40.580075],\n\t\t\t\t\t\t[-93.566189, 40.580117],\n\t\t\t\t\t\t[-93.597352, 40.579496],\n\t\t\t\t\t\t[-93.656211, 40.578352],\n\t\t\t\t\t\t[-93.659272, 40.578330],\n\t\t\t\t\t\t[-93.661913, 40.578354],\n\t\t\t\t\t\t[-93.668845, 40.578241],\n\t\t\t\t\t\t[-93.677099, 40.578127],\n\t\t\t\t\t\t[-93.690333, 40.577875],\n\t\t\t\t\t\t[-93.722443, 40.577641],\n\t\t\t\t\t\t[-93.728355, 40.577547],\n\t\t\t\t\t\t[-93.737259, 40.577542],\n\t\t\t\t\t\t[-93.742759, 40.577518],\n\t\t\t\t\t\t[-93.750223, 40.577720],\n\t\t\t\t\t\t[-93.770231, 40.577615],\n\t\t\t\t\t\t[-93.774344, 40.577584],\n\t\t\t\t\t\t[-93.815485, 40.577278],\n\t\t\t\t\t\t[-93.818725, 40.577086],\n\t\t\t\t\t\t[-93.840930, 40.576791],\n\t\t\t\t\t\t[-93.853656, 40.576606],\n\t\t\t\t\t\t[-93.898327, 40.576011],\n\t\t\t\t\t\t[-93.899317, 40.575942],\n\t\t\t\t\t\t[-93.900877, 40.575874],\n\t\t\t\t\t\t[-93.913961, 40.575672],\n\t\t\t\t\t\t[-93.935687, 40.575330],\n\t\t\t\t\t\t[-93.936317, 40.575284],\n\t\t\t\t\t\t[-93.937097, 40.575421],\n\t\t\t\t\t\t[-93.938627, 40.575284],\n\t\t\t\t\t\t[-93.939857, 40.575192],\n\t\t\t\t\t\t[-93.963863, 40.574754],\n\t\t\t\t\t\t[-93.976766, 40.574635],\n\t\t\t\t\t\t[-94.015492, 40.573914],\n\t\t\t\t\t\t[-94.014803, 40.897031],\n\t\t\t\t\t\t[-93.556540, 40.898295],\n\t\t\t\t\t\t[-93.556899, 40.580235]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18003\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"003\",\n\t\t\t\t\"NAME\": \"Allen\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 657.308000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.803582, 41.271273],\n\t\t\t\t\t\t[-84.803581, 41.271079],\n\t\t\t\t\t\t[-84.803580, 41.270942],\n\t\t\t\t\t\t[-84.803492, 41.252562],\n\t\t\t\t\t\t[-84.803492, 41.252531],\n\t\t\t\t\t\t[-84.803472, 41.173889],\n\t\t\t\t\t\t[-84.803594, 41.173203],\n\t\t\t\t\t\t[-84.803413, 41.164649],\n\t\t\t\t\t\t[-84.803378, 41.096867],\n\t\t\t\t\t\t[-84.803374, 41.089302],\n\t\t\t\t\t\t[-84.803313, 40.989394],\n\t\t\t\t\t\t[-84.803313, 40.989209],\n\t\t\t\t\t\t[-84.802936, 40.922568],\n\t\t\t\t\t\t[-85.073861, 40.917823],\n\t\t\t\t\t\t[-85.167063, 40.916585],\n\t\t\t\t\t\t[-85.336030, 40.917082],\n\t\t\t\t\t\t[-85.335374, 41.002047],\n\t\t\t\t\t\t[-85.335643, 41.005250],\n\t\t\t\t\t\t[-85.338552, 41.179120],\n\t\t\t\t\t\t[-85.307781, 41.264158],\n\t\t\t\t\t\t[-85.192094, 41.264209],\n\t\t\t\t\t\t[-84.806471, 41.270904],\n\t\t\t\t\t\t[-84.803582, 41.271273]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13181\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"181\",\n\t\t\t\t\"NAME\": \"Lincoln\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 210.380000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.425328, 33.650629],\n\t\t\t\t\t\t[-82.430915, 33.655076],\n\t\t\t\t\t\t[-82.435952, 33.652046],\n\t\t\t\t\t\t[-82.451692, 33.649591],\n\t\t\t\t\t\t[-82.458237, 33.637471],\n\t\t\t\t\t\t[-82.469880, 33.638617],\n\t\t\t\t\t\t[-82.476969, 33.644281],\n\t\t\t\t\t\t[-82.479518, 33.639535],\n\t\t\t\t\t\t[-82.593527, 33.827322],\n\t\t\t\t\t\t[-82.645451, 33.984195],\n\t\t\t\t\t\t[-82.564483, 33.955744],\n\t\t\t\t\t\t[-82.429164, 33.865844],\n\t\t\t\t\t\t[-82.422803, 33.863754],\n\t\t\t\t\t\t[-82.408354, 33.866320],\n\t\t\t\t\t\t[-82.403881, 33.865477],\n\t\t\t\t\t\t[-82.324480, 33.820033],\n\t\t\t\t\t\t[-82.301457, 33.801864],\n\t\t\t\t\t\t[-82.247472, 33.752591],\n\t\t\t\t\t\t[-82.218649, 33.686299],\n\t\t\t\t\t\t[-82.306414, 33.700644],\n\t\t\t\t\t\t[-82.425328, 33.650629]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19061\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"061\",\n\t\t\t\t\"NAME\": \"Dubuque\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 608.305000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.896961, 42.674407],\n\t\t\t\t\t\t[-90.843910, 42.663071],\n\t\t\t\t\t\t[-90.769495, 42.651443],\n\t\t\t\t\t\t[-90.720209, 42.640758],\n\t\t\t\t\t\t[-90.709204, 42.636078],\n\t\t\t\t\t\t[-90.702671, 42.630756],\n\t\t\t\t\t\t[-90.645627, 42.544100],\n\t\t\t\t\t\t[-90.636727, 42.518702],\n\t\t\t\t\t\t[-90.636927, 42.513202],\n\t\t\t\t\t\t[-90.640927, 42.508302],\n\t\t\t\t\t\t[-90.655927, 42.491703],\n\t\t\t\t\t\t[-90.656527, 42.489203],\n\t\t\t\t\t\t[-90.656327, 42.483603],\n\t\t\t\t\t\t[-90.654027, 42.478503],\n\t\t\t\t\t\t[-90.646727, 42.471904],\n\t\t\t\t\t\t[-90.624328, 42.458904],\n\t\t\t\t\t\t[-90.559451, 42.430695],\n\t\t\t\t\t\t[-90.477279, 42.383794],\n\t\t\t\t\t\t[-90.474834, 42.381473],\n\t\t\t\t\t\t[-90.665029, 42.382155],\n\t\t\t\t\t\t[-90.665551, 42.294699],\n\t\t\t\t\t\t[-90.898020, 42.295236],\n\t\t\t\t\t\t[-91.130079, 42.295761],\n\t\t\t\t\t\t[-91.132766, 42.645844],\n\t\t\t\t\t\t[-90.897415, 42.645714],\n\t\t\t\t\t\t[-90.896961, 42.674407]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19069\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"069\",\n\t\t\t\t\"NAME\": \"Franklin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 581.972000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.498617, 42.908512],\n\t\t\t\t\t\t[-93.025144, 42.907549],\n\t\t\t\t\t\t[-93.027000, 42.556810],\n\t\t\t\t\t\t[-93.499485, 42.557700],\n\t\t\t\t\t\t[-93.498617, 42.908512]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19075\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"075\",\n\t\t\t\t\"NAME\": \"Grundy\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 501.858000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.533510, 42.297001],\n\t\t\t\t\t\t[-92.768090, 42.296680],\n\t\t\t\t\t\t[-92.767463, 42.210140],\n\t\t\t\t\t\t[-93.001674, 42.209267],\n\t\t\t\t\t\t[-93.002902, 42.470638],\n\t\t\t\t\t\t[-93.027000, 42.556810],\n\t\t\t\t\t\t[-92.554300, 42.555854],\n\t\t\t\t\t\t[-92.533510, 42.297001]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19077\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"077\",\n\t\t\t\t\"NAME\": \"Guthrie\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 590.620000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.700629, 41.504148],\n\t\t\t\t\t\t[-94.744204, 41.602185],\n\t\t\t\t\t\t[-94.744876, 41.862394],\n\t\t\t\t\t\t[-94.676942, 41.862994],\n\t\t\t\t\t\t[-94.675420, 41.862895],\n\t\t\t\t\t\t[-94.674259, 41.862657],\n\t\t\t\t\t\t[-94.673119, 41.862650],\n\t\t\t\t\t\t[-94.672368, 41.862890],\n\t\t\t\t\t\t[-94.671695, 41.862828],\n\t\t\t\t\t\t[-94.667977, 41.862682],\n\t\t\t\t\t\t[-94.628724, 41.862763],\n\t\t\t\t\t\t[-94.280340, 41.862999],\n\t\t\t\t\t\t[-94.280057, 41.601312],\n\t\t\t\t\t\t[-94.241593, 41.503679],\n\t\t\t\t\t\t[-94.700629, 41.504148]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19089\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"089\",\n\t\t\t\t\"NAME\": \"Howard\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 473.248000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.553128, 43.500300],\n\t\t\t\t\t\t[-92.464505, 43.500345],\n\t\t\t\t\t\t[-92.448948, 43.500420],\n\t\t\t\t\t\t[-92.408832, 43.500614],\n\t\t\t\t\t\t[-92.406130, 43.500476],\n\t\t\t\t\t\t[-92.388298, 43.500483],\n\t\t\t\t\t\t[-92.368908, 43.500454],\n\t\t\t\t\t\t[-92.279084, 43.500436],\n\t\t\t\t\t\t[-92.277425, 43.500466],\n\t\t\t\t\t\t[-92.198788, 43.500527],\n\t\t\t\t\t\t[-92.178863, 43.500713],\n\t\t\t\t\t\t[-92.103886, 43.500735],\n\t\t\t\t\t\t[-92.089970, 43.500684],\n\t\t\t\t\t\t[-92.079954, 43.500647],\n\t\t\t\t\t\t[-92.079802, 43.500647],\n\t\t\t\t\t\t[-92.080976, 43.212947],\n\t\t\t\t\t\t[-92.554381, 43.212813],\n\t\t\t\t\t\t[-92.553128, 43.500300]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19093\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"093\",\n\t\t\t\t\"NAME\": \"Ida\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 431.508000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.323497, 42.210932],\n\t\t\t\t\t\t[-95.670822, 42.211408],\n\t\t\t\t\t\t[-95.669265, 42.474645],\n\t\t\t\t\t\t[-95.741821, 42.474865],\n\t\t\t\t\t\t[-95.741611, 42.561285],\n\t\t\t\t\t\t[-95.388010, 42.561742],\n\t\t\t\t\t\t[-95.387445, 42.474796],\n\t\t\t\t\t\t[-95.322357, 42.474737],\n\t\t\t\t\t\t[-95.323497, 42.210932]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19101\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"101\",\n\t\t\t\t\"NAME\": \"Jefferson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 435.510000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.945571, 41.163578],\n\t\t\t\t\t\t[-91.839060, 41.161515],\n\t\t\t\t\t\t[-91.715893, 41.162822],\n\t\t\t\t\t\t[-91.718268, 40.900805],\n\t\t\t\t\t\t[-92.179072, 40.899720],\n\t\t\t\t\t\t[-92.179974, 41.162662],\n\t\t\t\t\t\t[-91.945571, 41.163578]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19103\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"103\",\n\t\t\t\t\"NAME\": \"Johnson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 614.040000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.829231, 41.511457],\n\t\t\t\t\t\t[-91.831379, 41.861851],\n\t\t\t\t\t\t[-91.366079, 41.860068],\n\t\t\t\t\t\t[-91.366448, 41.598373],\n\t\t\t\t\t\t[-91.368521, 41.423178],\n\t\t\t\t\t\t[-91.483995, 41.423848],\n\t\t\t\t\t\t[-91.522480, 41.511035],\n\t\t\t\t\t\t[-91.829231, 41.511457]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19107\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"107\",\n\t\t\t\t\"NAME\": \"Keokuk\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 579.179000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.411995, 41.509548],\n\t\t\t\t\t\t[-92.297494, 41.509790],\n\t\t\t\t\t\t[-91.946043, 41.510749],\n\t\t\t\t\t\t[-91.945571, 41.163578],\n\t\t\t\t\t\t[-92.179974, 41.162662],\n\t\t\t\t\t\t[-92.410233, 41.161942],\n\t\t\t\t\t\t[-92.411995, 41.509548]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19111\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"111\",\n\t\t\t\t\"NAME\": \"Lee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 517.518000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.409324, 40.812682],\n\t\t\t\t\t\t[-91.182551, 40.708100],\n\t\t\t\t\t\t[-91.112258, 40.696218],\n\t\t\t\t\t\t[-91.122421, 40.670675],\n\t\t\t\t\t\t[-91.138055, 40.660893],\n\t\t\t\t\t\t[-91.185415, 40.638052],\n\t\t\t\t\t\t[-91.186980, 40.637297],\n\t\t\t\t\t\t[-91.197906, 40.636107],\n\t\t\t\t\t\t[-91.218437, 40.638437],\n\t\t\t\t\t\t[-91.253074, 40.637962],\n\t\t\t\t\t\t[-91.306524, 40.626231],\n\t\t\t\t\t\t[-91.339719, 40.613488],\n\t\t\t\t\t\t[-91.348733, 40.609695],\n\t\t\t\t\t\t[-91.359873, 40.601805],\n\t\t\t\t\t\t[-91.405241, 40.554641],\n\t\t\t\t\t\t[-91.406851, 40.547557],\n\t\t\t\t\t\t[-91.404125, 40.539127],\n\t\t\t\t\t\t[-91.384531, 40.530948],\n\t\t\t\t\t\t[-91.369059, 40.512532],\n\t\t\t\t\t\t[-91.364211, 40.500043],\n\t\t\t\t\t\t[-91.363910, 40.490122],\n\t\t\t\t\t\t[-91.372554, 40.401200],\n\t\t\t\t\t\t[-91.375746, 40.391879],\n\t\t\t\t\t\t[-91.388360, 40.384929],\n\t\t\t\t\t\t[-91.419422, 40.378264],\n\t\t\t\t\t\t[-91.484507, 40.383900],\n\t\t\t\t\t\t[-91.490977, 40.393484],\n\t\t\t\t\t\t[-91.524612, 40.410765],\n\t\t\t\t\t\t[-91.619486, 40.507134],\n\t\t\t\t\t\t[-91.622362, 40.514362],\n\t\t\t\t\t\t[-91.618028, 40.534030],\n\t\t\t\t\t\t[-91.620071, 40.540817],\n\t\t\t\t\t\t[-91.696359, 40.588148],\n\t\t\t\t\t\t[-91.716769, 40.598530],\n\t\t\t\t\t\t[-91.718787, 40.813544],\n\t\t\t\t\t\t[-91.409324, 40.812682]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19127\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"127\",\n\t\t\t\t\"NAME\": \"Marshall\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 572.501000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.765999, 41.862373],\n\t\t\t\t\t\t[-93.231858, 41.862711],\n\t\t\t\t\t\t[-93.231722, 42.208886],\n\t\t\t\t\t\t[-93.001674, 42.209267],\n\t\t\t\t\t\t[-92.767463, 42.210140],\n\t\t\t\t\t\t[-92.765999, 41.862373]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19129\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"129\",\n\t\t\t\t\"NAME\": \"Mills\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 437.437000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.823123, 40.900924],\n\t\t\t\t\t\t[-95.829074, 40.975688],\n\t\t\t\t\t\t[-95.835434, 40.984184],\n\t\t\t\t\t\t[-95.867286, 41.001599],\n\t\t\t\t\t\t[-95.867246, 41.043671],\n\t\t\t\t\t\t[-95.866289, 41.051731],\n\t\t\t\t\t\t[-95.853396, 41.160280],\n\t\t\t\t\t\t[-95.384349, 41.160011],\n\t\t\t\t\t\t[-95.384964, 40.901550],\n\t\t\t\t\t\t[-95.813465, 40.901693],\n\t\t\t\t\t\t[-95.823123, 40.900924]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19135\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"135\",\n\t\t\t\t\"NAME\": \"Monroe\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 433.715000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.869771, 41.161066],\n\t\t\t\t\t\t[-92.640361, 41.161298],\n\t\t\t\t\t\t[-92.639091, 40.898886],\n\t\t\t\t\t\t[-93.097595, 40.898451],\n\t\t\t\t\t\t[-93.097724, 40.899738],\n\t\t\t\t\t\t[-93.099217, 41.160867],\n\t\t\t\t\t\t[-92.869771, 41.161066]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19139\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"139\",\n\t\t\t\t\"NAME\": \"Muscatine\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 437.469000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.366448, 41.598373],\n\t\t\t\t\t\t[-90.899853, 41.597133],\n\t\t\t\t\t\t[-90.783812, 41.596531],\n\t\t\t\t\t\t[-90.786282, 41.452888],\n\t\t\t\t\t\t[-90.847458, 41.455019],\n\t\t\t\t\t\t[-90.989976, 41.431962],\n\t\t\t\t\t\t[-91.027787, 41.423603],\n\t\t\t\t\t\t[-91.039872, 41.418523],\n\t\t\t\t\t\t[-91.047819, 41.410900],\n\t\t\t\t\t\t[-91.078682, 41.336089],\n\t\t\t\t\t\t[-91.079657, 41.333727],\n\t\t\t\t\t\t[-91.369332, 41.336063],\n\t\t\t\t\t\t[-91.368521, 41.423178],\n\t\t\t\t\t\t[-91.366448, 41.598373]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19145\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"145\",\n\t\t\t\t\"NAME\": \"Page\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 534.942000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.914896, 40.575068],\n\t\t\t\t\t\t[-94.955134, 40.575669],\n\t\t\t\t\t\t[-94.966491, 40.575839],\n\t\t\t\t\t\t[-95.068921, 40.576880],\n\t\t\t\t\t\t[-95.079742, 40.577007],\n\t\t\t\t\t\t[-95.097607, 40.577168],\n\t\t\t\t\t\t[-95.107213, 40.577116],\n\t\t\t\t\t\t[-95.110303, 40.577160],\n\t\t\t\t\t\t[-95.110663, 40.577206],\n\t\t\t\t\t\t[-95.112222, 40.577228],\n\t\t\t\t\t\t[-95.120829, 40.577413],\n\t\t\t\t\t\t[-95.154499, 40.577860],\n\t\t\t\t\t\t[-95.164058, 40.578017],\n\t\t\t\t\t\t[-95.202264, 40.578528],\n\t\t\t\t\t\t[-95.211408, 40.578650],\n\t\t\t\t\t\t[-95.211590, 40.578654],\n\t\t\t\t\t\t[-95.212715, 40.578679],\n\t\t\t\t\t\t[-95.213327, 40.578689],\n\t\t\t\t\t\t[-95.217455, 40.578759],\n\t\t\t\t\t\t[-95.218783, 40.578781],\n\t\t\t\t\t\t[-95.221525, 40.578827],\n\t\t\t\t\t\t[-95.335588, 40.579871],\n\t\t\t\t\t\t[-95.357802, 40.580100],\n\t\t\t\t\t\t[-95.373893, 40.580501],\n\t\t\t\t\t\t[-95.373923, 40.580501],\n\t\t\t\t\t\t[-95.384964, 40.901550],\n\t\t\t\t\t\t[-94.928459, 40.900653],\n\t\t\t\t\t\t[-94.914896, 40.575068]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20181\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"181\",\n\t\t\t\t\"NAME\": \"Sherman\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1056.066000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-101.389068, 39.568369],\n\t\t\t\t\t\t[-101.391717, 39.135117],\n\t\t\t\t\t\t[-101.478195, 39.134761],\n\t\t\t\t\t\t[-102.047189, 39.133147],\n\t\t\t\t\t\t[-102.047250, 39.137020],\n\t\t\t\t\t\t[-102.048449, 39.303138],\n\t\t\t\t\t\t[-102.048960, 39.373712],\n\t\t\t\t\t\t[-102.049167, 39.403597],\n\t\t\t\t\t\t[-102.049370, 39.418210],\n\t\t\t\t\t\t[-102.049369, 39.423333],\n\t\t\t\t\t\t[-102.049679, 39.506183],\n\t\t\t\t\t\t[-102.049673, 39.536691],\n\t\t\t\t\t\t[-102.049554, 39.538932],\n\t\t\t\t\t\t[-102.049764, 39.568180],\n\t\t\t\t\t\t[-101.413913, 39.568361],\n\t\t\t\t\t\t[-101.389068, 39.568369]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19153\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"153\",\n\t\t\t\t\"NAME\": \"Polk\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 573.795000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.328614, 41.507824],\n\t\t\t\t\t\t[-93.328486, 41.491340],\n\t\t\t\t\t\t[-93.328407, 41.490921],\n\t\t\t\t\t\t[-93.412260, 41.505549],\n\t\t\t\t\t\t[-93.790612, 41.511916],\n\t\t\t\t\t\t[-93.814282, 41.600448],\n\t\t\t\t\t\t[-93.815527, 41.863419],\n\t\t\t\t\t\t[-93.698032, 41.863370],\n\t\t\t\t\t\t[-93.347933, 41.863104],\n\t\t\t\t\t\t[-93.348681, 41.600999],\n\t\t\t\t\t\t[-93.328614, 41.507824]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19155\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"155\",\n\t\t\t\t\"NAME\": \"Pottawattamie\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 950.280000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.853396, 41.160280],\n\t\t\t\t\t\t[-95.852788, 41.165398],\n\t\t\t\t\t\t[-95.914590, 41.185098],\n\t\t\t\t\t\t[-95.923190, 41.190998],\n\t\t\t\t\t\t[-95.923219, 41.191046],\n\t\t\t\t\t\t[-95.925990, 41.195698],\n\t\t\t\t\t\t[-95.927491, 41.202198],\n\t\t\t\t\t\t[-95.924891, 41.211198],\n\t\t\t\t\t\t[-95.902490, 41.273398],\n\t\t\t\t\t\t[-95.913790, 41.320197],\n\t\t\t\t\t\t[-95.925690, 41.322197],\n\t\t\t\t\t\t[-95.939291, 41.328897],\n\t\t\t\t\t\t[-95.953091, 41.339896],\n\t\t\t\t\t\t[-95.956691, 41.345496],\n\t\t\t\t\t\t[-95.956791, 41.349196],\n\t\t\t\t\t\t[-95.938310, 41.392162],\n\t\t\t\t\t\t[-95.937346, 41.394403],\n\t\t\t\t\t\t[-95.930705, 41.433894],\n\t\t\t\t\t\t[-95.981319, 41.506837],\n\t\t\t\t\t\t[-95.497997, 41.506074],\n\t\t\t\t\t\t[-95.154722, 41.505211],\n\t\t\t\t\t\t[-95.155851, 41.159236],\n\t\t\t\t\t\t[-95.384349, 41.160011],\n\t\t\t\t\t\t[-95.853396, 41.160280]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19159\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"159\",\n\t\t\t\t\"NAME\": \"Ringgold\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 535.498000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.015492, 40.573914],\n\t\t\t\t\t\t[-94.034134, 40.573585],\n\t\t\t\t\t\t[-94.080223, 40.572899],\n\t\t\t\t\t\t[-94.080463, 40.572899],\n\t\t\t\t\t\t[-94.089194, 40.572806],\n\t\t\t\t\t\t[-94.091085, 40.572897],\n\t\t\t\t\t\t[-94.232240, 40.571907],\n\t\t\t\t\t\t[-94.287350, 40.571521],\n\t\t\t\t\t\t[-94.294813, 40.571341],\n\t\t\t\t\t\t[-94.310724, 40.571524],\n\t\t\t\t\t\t[-94.324765, 40.571477],\n\t\t\t\t\t\t[-94.336556, 40.571475],\n\t\t\t\t\t\t[-94.336706, 40.571452],\n\t\t\t\t\t\t[-94.358307, 40.571363],\n\t\t\t\t\t\t[-94.429725, 40.571041],\n\t\t\t\t\t\t[-94.460088, 40.570947],\n\t\t\t\t\t\t[-94.470648, 40.570830],\n\t\t\t\t\t\t[-94.471213, 40.570825],\n\t\t\t\t\t\t[-94.470779, 40.899502],\n\t\t\t\t\t\t[-94.014803, 40.897031],\n\t\t\t\t\t\t[-94.015492, 40.573914]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19163\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"163\",\n\t\t\t\t\"NAME\": \"Scott\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 458.089000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.898373, 41.771392],\n\t\t\t\t\t\t[-90.473617, 41.773465],\n\t\t\t\t\t\t[-90.317041, 41.729104],\n\t\t\t\t\t\t[-90.334525, 41.679559],\n\t\t\t\t\t\t[-90.343162, 41.648141],\n\t\t\t\t\t\t[-90.341650, 41.621484],\n\t\t\t\t\t\t[-90.397930, 41.572233],\n\t\t\t\t\t\t[-90.461432, 41.523533],\n\t\t\t\t\t\t[-90.474332, 41.519733],\n\t\t\t\t\t\t[-90.499475, 41.518055],\n\t\t\t\t\t\t[-90.605937, 41.494232],\n\t\t\t\t\t\t[-90.655839, 41.462132],\n\t\t\t\t\t\t[-90.737537, 41.450127],\n\t\t\t\t\t\t[-90.771672, 41.450761],\n\t\t\t\t\t\t[-90.786282, 41.452888],\n\t\t\t\t\t\t[-90.783812, 41.596531],\n\t\t\t\t\t\t[-90.899853, 41.597133],\n\t\t\t\t\t\t[-90.898373, 41.771392]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19171\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"171\",\n\t\t\t\t\"NAME\": \"Tama\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 721.011000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.298164, 41.862779],\n\t\t\t\t\t\t[-92.765999, 41.862373],\n\t\t\t\t\t\t[-92.767463, 42.210140],\n\t\t\t\t\t\t[-92.768090, 42.296680],\n\t\t\t\t\t\t[-92.533510, 42.297001],\n\t\t\t\t\t\t[-92.298792, 42.297527],\n\t\t\t\t\t\t[-92.298164, 41.862779]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19177\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"177\",\n\t\t\t\t\"NAME\": \"Van Buren\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 484.789000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.716769, 40.598530],\n\t\t\t\t\t\t[-91.729115, 40.613640],\n\t\t\t\t\t\t[-91.785916, 40.611488],\n\t\t\t\t\t\t[-91.795374, 40.611101],\n\t\t\t\t\t\t[-91.800133, 40.610953],\n\t\t\t\t\t\t[-91.813968, 40.610526],\n\t\t\t\t\t\t[-91.824826, 40.610191],\n\t\t\t\t\t\t[-91.832481, 40.609797],\n\t\t\t\t\t\t[-91.868401, 40.608059],\n\t\t\t\t\t\t[-91.943114, 40.605913],\n\t\t\t\t\t\t[-91.970988, 40.605112],\n\t\t\t\t\t\t[-91.998683, 40.604433],\n\t\t\t\t\t\t[-92.029649, 40.603713],\n\t\t\t\t\t\t[-92.067904, 40.602648],\n\t\t\t\t\t\t[-92.069521, 40.602772],\n\t\t\t\t\t\t[-92.082339, 40.602176],\n\t\t\t\t\t\t[-92.083200, 40.602244],\n\t\t\t\t\t\t[-92.092875, 40.602082],\n\t\t\t\t\t\t[-92.096387, 40.601830],\n\t\t\t\t\t\t[-92.179780, 40.600529],\n\t\t\t\t\t\t[-92.178990, 40.898343],\n\t\t\t\t\t\t[-92.179072, 40.899720],\n\t\t\t\t\t\t[-91.718268, 40.900805],\n\t\t\t\t\t\t[-91.718787, 40.813544],\n\t\t\t\t\t\t[-91.716769, 40.598530]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19183\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"183\",\n\t\t\t\t\"NAME\": \"Washington\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 568.835000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.485717, 41.162405],\n\t\t\t\t\t\t[-91.715893, 41.162822],\n\t\t\t\t\t\t[-91.839060, 41.161515],\n\t\t\t\t\t\t[-91.945571, 41.163578],\n\t\t\t\t\t\t[-91.946043, 41.510749],\n\t\t\t\t\t\t[-91.829231, 41.511457],\n\t\t\t\t\t\t[-91.522480, 41.511035],\n\t\t\t\t\t\t[-91.483995, 41.423848],\n\t\t\t\t\t\t[-91.485717, 41.162405]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19189\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"189\",\n\t\t\t\t\"NAME\": \"Winnebago\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 400.489000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.970762, 43.499605],\n\t\t\t\t\t\t[-93.970760, 43.499605],\n\t\t\t\t\t\t[-93.795793, 43.499520],\n\t\t\t\t\t\t[-93.794285, 43.499542],\n\t\t\t\t\t\t[-93.716217, 43.499563],\n\t\t\t\t\t\t[-93.708771, 43.499564],\n\t\t\t\t\t\t[-93.704916, 43.499568],\n\t\t\t\t\t\t[-93.699345, 43.499576],\n\t\t\t\t\t\t[-93.648533, 43.499559],\n\t\t\t\t\t\t[-93.617131, 43.499548],\n\t\t\t\t\t\t[-93.576728, 43.499520],\n\t\t\t\t\t\t[-93.558631, 43.499521],\n\t\t\t\t\t\t[-93.532178, 43.499472],\n\t\t\t\t\t\t[-93.528482, 43.499471],\n\t\t\t\t\t\t[-93.497405, 43.499456],\n\t\t\t\t\t\t[-93.497350, 43.499456],\n\t\t\t\t\t\t[-93.497635, 43.255468],\n\t\t\t\t\t\t[-93.970415, 43.255358],\n\t\t\t\t\t\t[-93.970762, 43.499605]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19193\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"193\",\n\t\t\t\t\"NAME\": \"Woodbury\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 872.834000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.356666, 42.215077],\n\t\t\t\t\t\t[-96.356591, 42.215182],\n\t\t\t\t\t\t[-96.336323, 42.218922],\n\t\t\t\t\t\t[-96.323723, 42.229887],\n\t\t\t\t\t\t[-96.322868, 42.233637],\n\t\t\t\t\t\t[-96.328905, 42.254734],\n\t\t\t\t\t\t[-96.348814, 42.282024],\n\t\t\t\t\t\t[-96.375307, 42.318339],\n\t\t\t\t\t\t[-96.384169, 42.325874],\n\t\t\t\t\t\t[-96.407998, 42.337408],\n\t\t\t\t\t\t[-96.413895, 42.343393],\n\t\t\t\t\t\t[-96.417786, 42.351449],\n\t\t\t\t\t\t[-96.415509, 42.400294],\n\t\t\t\t\t\t[-96.413609, 42.407894],\n\t\t\t\t\t\t[-96.387608, 42.432494],\n\t\t\t\t\t\t[-96.380707, 42.446394],\n\t\t\t\t\t\t[-96.381307, 42.461694],\n\t\t\t\t\t\t[-96.385407, 42.473094],\n\t\t\t\t\t\t[-96.396107, 42.484095],\n\t\t\t\t\t\t[-96.409408, 42.487595],\n\t\t\t\t\t\t[-96.443408, 42.489495],\n\t\t\t\t\t\t[-96.466253, 42.497702],\n\t\t\t\t\t\t[-96.476947, 42.508677],\n\t\t\t\t\t\t[-96.481308, 42.516556],\n\t\t\t\t\t\t[-96.479909, 42.524195],\n\t\t\t\t\t\t[-96.477709, 42.535595],\n\t\t\t\t\t\t[-96.476952, 42.556079],\n\t\t\t\t\t\t[-96.479685, 42.561238],\n\t\t\t\t\t\t[-95.859949, 42.560620],\n\t\t\t\t\t\t[-95.750287, 42.561106],\n\t\t\t\t\t\t[-95.741611, 42.561285],\n\t\t\t\t\t\t[-95.741821, 42.474865],\n\t\t\t\t\t\t[-95.669265, 42.474645],\n\t\t\t\t\t\t[-95.670822, 42.211408],\n\t\t\t\t\t\t[-96.356666, 42.215077]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20003\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"003\",\n\t\t\t\t\"NAME\": \"Anderson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 579.646000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.518970, 38.038230],\n\t\t\t\t\t\t[-95.508328, 38.390278],\n\t\t\t\t\t\t[-95.065831, 38.389945],\n\t\t\t\t\t\t[-95.077876, 38.037706],\n\t\t\t\t\t\t[-95.518970, 38.038230]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20009\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"009\",\n\t\t\t\t\"NAME\": \"Barton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 895.400000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.486108, 38.696878],\n\t\t\t\t\t\t[-98.479958, 38.696916],\n\t\t\t\t\t\t[-98.480377, 38.521841],\n\t\t\t\t\t\t[-98.479841, 38.260790],\n\t\t\t\t\t\t[-98.912583, 38.261088],\n\t\t\t\t\t\t[-99.032309, 38.261227],\n\t\t\t\t\t\t[-99.032408, 38.348334],\n\t\t\t\t\t\t[-99.032971, 38.696759],\n\t\t\t\t\t\t[-98.486108, 38.696878]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20017\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"017\",\n\t\t\t\t\"NAME\": \"Chase\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 773.060000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.353780, 38.521657],\n\t\t\t\t\t\t[-96.357277, 38.172660],\n\t\t\t\t\t\t[-96.358099, 38.085817],\n\t\t\t\t\t\t[-96.522782, 38.086370],\n\t\t\t\t\t\t[-96.840772, 38.085622],\n\t\t\t\t\t\t[-96.819723, 38.522464],\n\t\t\t\t\t\t[-96.817830, 38.522396],\n\t\t\t\t\t\t[-96.353780, 38.521657]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20019\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"019\",\n\t\t\t\t\"NAME\": \"Chautauqua\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 638.881000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.964270, 36.999094],\n\t\t\t\t\t\t[-96.000810, 36.998860],\n\t\t\t\t\t\t[-96.141210, 36.998973],\n\t\t\t\t\t\t[-96.143207, 36.999134],\n\t\t\t\t\t\t[-96.147143, 36.999022],\n\t\t\t\t\t\t[-96.149709, 36.999040],\n\t\t\t\t\t\t[-96.152384, 36.999051],\n\t\t\t\t\t\t[-96.154017, 36.999161],\n\t\t\t\t\t\t[-96.184768, 36.999211],\n\t\t\t\t\t\t[-96.200028, 36.999028],\n\t\t\t\t\t\t[-96.217571, 36.999070],\n\t\t\t\t\t\t[-96.276368, 36.999271],\n\t\t\t\t\t\t[-96.279079, 36.999272],\n\t\t\t\t\t\t[-96.394272, 36.999221],\n\t\t\t\t\t\t[-96.415412, 36.999113],\n\t\t\t\t\t\t[-96.525493, 36.999147],\n\t\t\t\t\t\t[-96.524873, 37.302730],\n\t\t\t\t\t\t[-95.964399, 37.299232],\n\t\t\t\t\t\t[-95.964270, 36.999094]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13211\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"211\",\n\t\t\t\t\"NAME\": \"Morgan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 347.349000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.279931, 33.483438],\n\t\t\t\t\t\t[-83.533736, 33.434472],\n\t\t\t\t\t\t[-83.586817, 33.465577],\n\t\t\t\t\t\t[-83.682196, 33.526220],\n\t\t\t\t\t\t[-83.677669, 33.571176],\n\t\t\t\t\t\t[-83.681443, 33.577913],\n\t\t\t\t\t\t[-83.687085, 33.582375],\n\t\t\t\t\t\t[-83.687386, 33.588559],\n\t\t\t\t\t\t[-83.680896, 33.596919],\n\t\t\t\t\t\t[-83.505928, 33.817760],\n\t\t\t\t\t\t[-83.406189, 33.698307],\n\t\t\t\t\t\t[-83.269213, 33.533226],\n\t\t\t\t\t\t[-83.279931, 33.483438]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27081\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"081\",\n\t\t\t\t\"NAME\": \"Lincoln\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 536.757000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.078580, 44.196620],\n\t\t\t\t\t\t[-96.450765, 44.196958],\n\t\t\t\t\t\t[-96.452774, 44.196780],\n\t\t\t\t\t\t[-96.452774, 44.196895],\n\t\t\t\t\t\t[-96.452673, 44.254588],\n\t\t\t\t\t\t[-96.452419, 44.255274],\n\t\t\t\t\t\t[-96.452369, 44.268967],\n\t\t\t\t\t\t[-96.452365, 44.271972],\n\t\t\t\t\t\t[-96.452617, 44.282702],\n\t\t\t\t\t\t[-96.452500, 44.285687],\n\t\t\t\t\t\t[-96.452334, 44.297009],\n\t\t\t\t\t\t[-96.452239, 44.298655],\n\t\t\t\t\t\t[-96.452369, 44.312071],\n\t\t\t\t\t\t[-96.452248, 44.313362],\n\t\t\t\t\t\t[-96.452372, 44.325991],\n\t\t\t\t\t\t[-96.452309, 44.328094],\n\t\t\t\t\t\t[-96.452248, 44.340642],\n\t\t\t\t\t\t[-96.452152, 44.342219],\n\t\t\t\t\t\t[-96.452305, 44.345332],\n\t\t\t\t\t\t[-96.452282, 44.354857],\n\t\t\t\t\t\t[-96.452213, 44.360149],\n\t\t\t\t\t\t[-96.452134, 44.383679],\n\t\t\t\t\t\t[-96.452073, 44.389690],\n\t\t\t\t\t\t[-96.451924, 44.441549],\n\t\t\t\t\t\t[-96.451816, 44.460402],\n\t\t\t\t\t\t[-96.452218, 44.470873],\n\t\t\t\t\t\t[-96.452122, 44.473043],\n\t\t\t\t\t\t[-96.451974, 44.506849],\n\t\t\t\t\t\t[-96.452010, 44.516929],\n\t\t\t\t\t\t[-96.452236, 44.526871],\n\t\t\t\t\t\t[-96.452016, 44.543533],\n\t\t\t\t\t\t[-96.451990, 44.543639],\n\t\t\t\t\t\t[-96.451888, 44.544058],\n\t\t\t\t\t\t[-96.451720, 44.630708],\n\t\t\t\t\t\t[-96.451761, 44.631194],\n\t\t\t\t\t\t[-96.451761, 44.631350],\n\t\t\t\t\t\t[-96.449714, 44.631210],\n\t\t\t\t\t\t[-96.092950, 44.630486],\n\t\t\t\t\t\t[-96.078580, 44.196620]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27089\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"089\",\n\t\t\t\t\"NAME\": \"Marshall\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1775.068000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.161110, 48.543155],\n\t\t\t\t\t\t[-97.163105, 48.543855],\n\t\t\t\t\t\t[-97.163050, 48.543963],\n\t\t\t\t\t\t[-96.387835, 48.544308],\n\t\t\t\t\t\t[-95.602315, 48.538887],\n\t\t\t\t\t\t[-95.593788, 48.172916],\n\t\t\t\t\t\t[-96.500843, 48.174108],\n\t\t\t\t\t\t[-97.147498, 48.173227],\n\t\t\t\t\t\t[-97.147401, 48.193779],\n\t\t\t\t\t\t[-97.147170, 48.242966],\n\t\t\t\t\t\t[-97.143148, 48.246708],\n\t\t\t\t\t\t[-97.134534, 48.249737],\n\t\t\t\t\t\t[-97.129930, 48.249731],\n\t\t\t\t\t\t[-97.116570, 48.279661],\n\t\t\t\t\t\t[-97.115581, 48.323928],\n\t\t\t\t\t\t[-97.126745, 48.342140],\n\t\t\t\t\t\t[-97.136373, 48.352393],\n\t\t\t\t\t\t[-97.145693, 48.397431],\n\t\t\t\t\t\t[-97.131479, 48.406586],\n\t\t\t\t\t\t[-97.123399, 48.421201],\n\t\t\t\t\t\t[-97.126770, 48.520191],\n\t\t\t\t\t\t[-97.150541, 48.539449],\n\t\t\t\t\t\t[-97.161110, 48.543155]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27091\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"091\",\n\t\t\t\t\"NAME\": \"Martin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 712.347000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.854555, 43.500614],\n\t\t\t\t\t\t[-94.854444, 43.848099],\n\t\t\t\t\t\t[-94.368974, 43.848047],\n\t\t\t\t\t\t[-94.247123, 43.847946],\n\t\t\t\t\t\t[-94.247965, 43.500333],\n\t\t\t\t\t\t[-94.377466, 43.500379],\n\t\t\t\t\t\t[-94.390597, 43.500469],\n\t\t\t\t\t\t[-94.442835, 43.500583],\n\t\t\t\t\t\t[-94.442848, 43.500583],\n\t\t\t\t\t\t[-94.447048, 43.500639],\n\t\t\t\t\t\t[-94.470420, 43.500340],\n\t\t\t\t\t\t[-94.560838, 43.500377],\n\t\t\t\t\t\t[-94.565665, 43.500330],\n\t\t\t\t\t\t[-94.615916, 43.500544],\n\t\t\t\t\t\t[-94.854555, 43.500614]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27095\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"095\",\n\t\t\t\t\"NAME\": \"Mille Lacs\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 572.310000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.510704, 45.558772],\n\t\t\t\t\t\t[-93.759435, 45.559646],\n\t\t\t\t\t\t[-93.763316, 45.815872],\n\t\t\t\t\t\t[-93.763948, 45.822143],\n\t\t\t\t\t\t[-93.768891, 45.982525],\n\t\t\t\t\t\t[-93.810320, 45.983086],\n\t\t\t\t\t\t[-93.810362, 46.156585],\n\t\t\t\t\t\t[-93.810912, 46.243128],\n\t\t\t\t\t\t[-93.796281, 46.243199],\n\t\t\t\t\t\t[-93.430648, 46.246412],\n\t\t\t\t\t\t[-93.431831, 46.153991],\n\t\t\t\t\t\t[-93.432492, 45.981398],\n\t\t\t\t\t\t[-93.518080, 45.981789],\n\t\t\t\t\t\t[-93.513683, 45.734318],\n\t\t\t\t\t\t[-93.512402, 45.718817],\n\t\t\t\t\t\t[-93.510704, 45.558772]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27097\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"097\",\n\t\t\t\t\"NAME\": \"Morrison\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1125.062000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.341679, 46.277705],\n\t\t\t\t\t\t[-94.374592, 46.157093],\n\t\t\t\t\t\t[-93.810362, 46.156585],\n\t\t\t\t\t\t[-93.810320, 45.983086],\n\t\t\t\t\t\t[-93.768891, 45.982525],\n\t\t\t\t\t\t[-93.763948, 45.822143],\n\t\t\t\t\t\t[-94.353165, 45.822131],\n\t\t\t\t\t\t[-94.271776, 45.775208],\n\t\t\t\t\t\t[-94.643990, 45.773950],\n\t\t\t\t\t\t[-94.653462, 46.348678],\n\t\t\t\t\t\t[-94.534724, 46.302797],\n\t\t\t\t\t\t[-94.424780, 46.331765],\n\t\t\t\t\t\t[-94.341679, 46.277705]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27099\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"099\",\n\t\t\t\t\"NAME\": \"Mower\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 711.329000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.007871, 43.499604],\n\t\t\t\t\t\t[-93.024348, 43.499572],\n\t\t\t\t\t\t[-93.024429, 43.499572],\n\t\t\t\t\t\t[-93.049192, 43.499571],\n\t\t\t\t\t\t[-93.049524, 43.848443],\n\t\t\t\t\t\t[-93.049413, 43.848454],\n\t\t\t\t\t\t[-93.045966, 43.848467],\n\t\t\t\t\t\t[-92.689391, 43.848570],\n\t\t\t\t\t\t[-92.448965, 43.834105],\n\t\t\t\t\t\t[-92.449087, 43.503302],\n\t\t\t\t\t\t[-92.448948, 43.500420],\n\t\t\t\t\t\t[-92.464505, 43.500345],\n\t\t\t\t\t\t[-92.553128, 43.500300],\n\t\t\t\t\t\t[-92.553161, 43.500300],\n\t\t\t\t\t\t[-92.649194, 43.500049],\n\t\t\t\t\t\t[-92.653318, 43.500050],\n\t\t\t\t\t\t[-92.672580, 43.500055],\n\t\t\t\t\t\t[-92.689033, 43.500062],\n\t\t\t\t\t\t[-92.692786, 43.500063],\n\t\t\t\t\t\t[-92.707312, 43.500069],\n\t\t\t\t\t\t[-92.752088, 43.500084],\n\t\t\t\t\t\t[-92.790317, 43.499567],\n\t\t\t\t\t\t[-92.870277, 43.499548],\n\t\t\t\t\t\t[-93.007871, 43.499604]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27105\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"105\",\n\t\t\t\t\"NAME\": \"Nobles\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 715.106000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.052320, 43.849070],\n\t\t\t\t\t\t[-95.462427, 43.847911],\n\t\t\t\t\t\t[-95.452502, 43.847953],\n\t\t\t\t\t\t[-95.454433, 43.500644],\n\t\t\t\t\t\t[-95.454706, 43.500648],\n\t\t\t\t\t\t[-95.454706, 43.500563],\n\t\t\t\t\t\t[-95.475065, 43.500335],\n\t\t\t\t\t\t[-95.486737, 43.500274],\n\t\t\t\t\t\t[-95.486803, 43.500246],\n\t\t\t\t\t\t[-95.514774, 43.499865],\n\t\t\t\t\t\t[-95.740813, 43.499894],\n\t\t\t\t\t\t[-95.741569, 43.499891],\n\t\t\t\t\t\t[-95.821277, 43.499965],\n\t\t\t\t\t\t[-95.834421, 43.499966],\n\t\t\t\t\t\t[-95.860946, 43.499966],\n\t\t\t\t\t\t[-95.861152, 43.499966],\n\t\t\t\t\t\t[-96.053163, 43.500176],\n\t\t\t\t\t\t[-96.052320, 43.849070]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27109\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"109\",\n\t\t\t\t\"NAME\": \"Olmsted\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 653.349000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.448965, 43.834105],\n\t\t\t\t\t\t[-92.689391, 43.848570],\n\t\t\t\t\t\t[-92.678412, 43.848487],\n\t\t\t\t\t\t[-92.678717, 44.195516],\n\t\t\t\t\t\t[-92.550871, 44.194916],\n\t\t\t\t\t\t[-92.318986, 44.194057],\n\t\t\t\t\t\t[-92.318971, 44.107734],\n\t\t\t\t\t\t[-92.079491, 44.106988],\n\t\t\t\t\t\t[-92.079292, 43.847080],\n\t\t\t\t\t\t[-92.448830, 43.848274],\n\t\t\t\t\t\t[-92.448965, 43.834105]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27111\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"111\",\n\t\t\t\t\"NAME\": \"Otter Tail\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1972.068000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.155570, 46.368880],\n\t\t\t\t\t\t[-95.145880, 46.106761],\n\t\t\t\t\t\t[-95.769750, 46.107450],\n\t\t\t\t\t\t[-96.265366, 46.108610],\n\t\t\t\t\t\t[-96.280000, 46.282220],\n\t\t\t\t\t\t[-96.280977, 46.630765],\n\t\t\t\t\t\t[-96.172270, 46.630709],\n\t\t\t\t\t\t[-96.174587, 46.717854],\n\t\t\t\t\t\t[-95.247999, 46.716255],\n\t\t\t\t\t\t[-95.163710, 46.717640],\n\t\t\t\t\t\t[-95.155570, 46.368880]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27115\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"115\",\n\t\t\t\t\"NAME\": \"Pine\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1411.289000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.292860, 46.417220],\n\t\t\t\t\t\t[-92.292999, 46.321894],\n\t\t\t\t\t\t[-92.292782, 46.319312],\n\t\t\t\t\t\t[-92.292803, 46.314628],\n\t\t\t\t\t\t[-92.292880, 46.313752],\n\t\t\t\t\t\t[-92.292839, 46.307107],\n\t\t\t\t\t\t[-92.292840, 46.304319],\n\t\t\t\t\t\t[-92.293007, 46.297987],\n\t\t\t\t\t\t[-92.293074, 46.295129],\n\t\t\t\t\t\t[-92.293619, 46.244043],\n\t\t\t\t\t\t[-92.293558, 46.224578],\n\t\t\t\t\t\t[-92.293857, 46.180073],\n\t\t\t\t\t\t[-92.293744, 46.166838],\n\t\t\t\t\t\t[-92.293706, 46.157321],\n\t\t\t\t\t\t[-92.293530, 46.113824],\n\t\t\t\t\t\t[-92.294069, 46.078346],\n\t\t\t\t\t\t[-92.294033, 46.074377],\n\t\t\t\t\t\t[-92.306756, 46.072410],\n\t\t\t\t\t\t[-92.326877, 46.066618],\n\t\t\t\t\t\t[-92.443285, 46.014648],\n\t\t\t\t\t\t[-92.656125, 45.924442],\n\t\t\t\t\t\t[-92.707702, 45.894901],\n\t\t\t\t\t\t[-92.721128, 45.883805],\n\t\t\t\t\t\t[-92.734039, 45.868108],\n\t\t\t\t\t\t[-92.762490, 45.819239],\n\t\t\t\t\t\t[-92.768430, 45.798010],\n\t\t\t\t\t\t[-92.784621, 45.764196],\n\t\t\t\t\t\t[-92.803971, 45.749805],\n\t\t\t\t\t\t[-92.841051, 45.730024],\n\t\t\t\t\t\t[-93.141793, 45.730657],\n\t\t\t\t\t\t[-93.142869, 45.981005],\n\t\t\t\t\t\t[-93.055081, 45.981233],\n\t\t\t\t\t\t[-93.053871, 46.158120],\n\t\t\t\t\t\t[-93.054847, 46.419269],\n\t\t\t\t\t\t[-92.292860, 46.417220]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27117\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"117\",\n\t\t\t\t\"NAME\": \"Pipestone\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 465.055000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.453264, 43.849506],\n\t\t\t\t\t\t[-96.453264, 43.849604],\n\t\t\t\t\t\t[-96.453335, 43.877029],\n\t\t\t\t\t\t[-96.453304, 43.878583],\n\t\t\t\t\t\t[-96.453183, 43.878650],\n\t\t\t\t\t\t[-96.453352, 43.949122],\n\t\t\t\t\t\t[-96.453289, 43.950814],\n\t\t\t\t\t\t[-96.453165, 43.966540],\n\t\t\t\t\t\t[-96.453292, 43.967180],\n\t\t\t\t\t\t[-96.453389, 43.978060],\n\t\t\t\t\t\t[-96.453263, 43.980277],\n\t\t\t\t\t\t[-96.453328, 43.992871],\n\t\t\t\t\t\t[-96.453297, 43.994723],\n\t\t\t\t\t\t[-96.453116, 44.006876],\n\t\t\t\t\t\t[-96.453053, 44.008887],\n\t\t\t\t\t\t[-96.453373, 44.023744],\n\t\t\t\t\t\t[-96.453405, 44.025413],\n\t\t\t\t\t\t[-96.453313, 44.036430],\n\t\t\t\t\t\t[-96.453187, 44.038350],\n\t\t\t\t\t\t[-96.452774, 44.196780],\n\t\t\t\t\t\t[-96.450765, 44.196958],\n\t\t\t\t\t\t[-96.078580, 44.196620],\n\t\t\t\t\t\t[-96.063778, 44.196425],\n\t\t\t\t\t\t[-96.064620, 43.849039],\n\t\t\t\t\t\t[-96.453264, 43.849506]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27119\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"119\",\n\t\t\t\t\"NAME\": \"Polk\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1971.128000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.890671, 47.672153],\n\t\t\t\t\t\t[-96.980391, 47.815662],\n\t\t\t\t\t\t[-97.000356, 47.860915],\n\t\t\t\t\t\t[-97.023156, 47.873978],\n\t\t\t\t\t\t[-97.088158, 48.059515],\n\t\t\t\t\t\t[-97.098275, 48.071310],\n\t\t\t\t\t\t[-97.123135, 48.109497],\n\t\t\t\t\t\t[-97.147510, 48.170572],\n\t\t\t\t\t\t[-97.147498, 48.173227],\n\t\t\t\t\t\t[-96.500843, 48.174108],\n\t\t\t\t\t\t[-96.482550, 47.963595],\n\t\t\t\t\t\t[-96.482092, 47.847428],\n\t\t\t\t\t\t[-96.352708, 47.847328],\n\t\t\t\t\t\t[-96.351727, 47.760300],\n\t\t\t\t\t\t[-95.837177, 47.760894],\n\t\t\t\t\t\t[-95.836827, 47.848219],\n\t\t\t\t\t\t[-95.709148, 47.848594],\n\t\t\t\t\t\t[-95.709619, 47.935805],\n\t\t\t\t\t\t[-95.582155, 47.933966],\n\t\t\t\t\t\t[-95.578839, 47.673677],\n\t\t\t\t\t\t[-95.554248, 47.499893],\n\t\t\t\t\t\t[-95.563189, 47.500268],\n\t\t\t\t\t\t[-96.067621, 47.499136],\n\t\t\t\t\t\t[-96.848923, 47.498991],\n\t\t\t\t\t\t[-96.853768, 47.499527],\n\t\t\t\t\t\t[-96.853286, 47.503881],\n\t\t\t\t\t\t[-96.842430, 47.508225],\n\t\t\t\t\t\t[-96.850955, 47.598287],\n\t\t\t\t\t\t[-96.885740, 47.664266],\n\t\t\t\t\t\t[-96.890671, 47.672153]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27129\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"129\",\n\t\t\t\t\"NAME\": \"Renville\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 982.906000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.780630, 44.456650],\n\t\t\t\t\t\t[-94.865824, 44.498218],\n\t\t\t\t\t\t[-95.132652, 44.596443],\n\t\t\t\t\t\t[-95.360177, 44.698540],\n\t\t\t\t\t\t[-95.482843, 44.752505],\n\t\t\t\t\t\t[-95.482889, 44.890712],\n\t\t\t\t\t\t[-95.248520, 44.891310],\n\t\t\t\t\t\t[-94.758189, 44.892097],\n\t\t\t\t\t\t[-94.502395, 44.892295],\n\t\t\t\t\t\t[-94.497730, 44.892334],\n\t\t\t\t\t\t[-94.498074, 44.717171],\n\t\t\t\t\t\t[-94.629489, 44.716663],\n\t\t\t\t\t\t[-94.624200, 44.456030],\n\t\t\t\t\t\t[-94.780630, 44.456650]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27133\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"133\",\n\t\t\t\t\"NAME\": \"Rock\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 482.455000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.453264, 43.849501],\n\t\t\t\t\t\t[-96.453264, 43.849506],\n\t\t\t\t\t\t[-96.064620, 43.849039],\n\t\t\t\t\t\t[-96.052320, 43.849070],\n\t\t\t\t\t\t[-96.053163, 43.500176],\n\t\t\t\t\t\t[-96.198484, 43.500335],\n\t\t\t\t\t\t[-96.198766, 43.500312],\n\t\t\t\t\t\t[-96.208814, 43.500391],\n\t\t\t\t\t\t[-96.332062, 43.500415],\n\t\t\t\t\t\t[-96.351059, 43.500333],\n\t\t\t\t\t\t[-96.453049, 43.500415],\n\t\t\t\t\t\t[-96.453352, 43.587040],\n\t\t\t\t\t\t[-96.453383, 43.588183],\n\t\t\t\t\t\t[-96.453356, 43.607544],\n\t\t\t\t\t\t[-96.453387, 43.609944],\n\t\t\t\t\t\t[-96.453408, 43.675008],\n\t\t\t\t\t\t[-96.453380, 43.689637],\n\t\t\t\t\t\t[-96.453281, 43.791435],\n\t\t\t\t\t\t[-96.453088, 43.805123],\n\t\t\t\t\t\t[-96.453264, 43.849501]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19059\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"059\",\n\t\t\t\t\"NAME\": \"Dickinson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 380.606000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.387787, 43.500240],\n\t\t\t\t\t\t[-95.375269, 43.500322],\n\t\t\t\t\t\t[-95.374737, 43.500314],\n\t\t\t\t\t\t[-95.250969, 43.500464],\n\t\t\t\t\t\t[-95.250762, 43.500406],\n\t\t\t\t\t\t[-95.214938, 43.500885],\n\t\t\t\t\t\t[-95.180423, 43.500774],\n\t\t\t\t\t\t[-95.167891, 43.500885],\n\t\t\t\t\t\t[-95.167294, 43.500771],\n\t\t\t\t\t\t[-95.122633, 43.500755],\n\t\t\t\t\t\t[-95.114874, 43.500667],\n\t\t\t\t\t\t[-95.054289, 43.500860],\n\t\t\t\t\t\t[-95.053504, 43.500769],\n\t\t\t\t\t\t[-95.034000, 43.500811],\n\t\t\t\t\t\t[-95.014245, 43.500872],\n\t\t\t\t\t\t[-94.994460, 43.500523],\n\t\t\t\t\t\t[-94.974359, 43.500508],\n\t\t\t\t\t\t[-94.954477, 43.500467],\n\t\t\t\t\t\t[-94.934625, 43.500490],\n\t\t\t\t\t\t[-94.914955, 43.500450],\n\t\t\t\t\t\t[-94.914905, 43.500450],\n\t\t\t\t\t\t[-94.914634, 43.500450],\n\t\t\t\t\t\t[-94.914843, 43.499103],\n\t\t\t\t\t\t[-94.913723, 43.255054],\n\t\t\t\t\t\t[-95.388078, 43.255221],\n\t\t\t\t\t\t[-95.387787, 43.500240]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27141\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"141\",\n\t\t\t\t\"NAME\": \"Sherburne\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 432.917000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.149467, 45.559066],\n\t\t\t\t\t\t[-93.759435, 45.559646],\n\t\t\t\t\t\t[-93.510704, 45.558772],\n\t\t\t\t\t\t[-93.510070, 45.414798],\n\t\t\t\t\t\t[-93.512554, 45.250420],\n\t\t\t\t\t\t[-93.512190, 45.245683],\n\t\t\t\t\t\t[-93.515342, 45.246320],\n\t\t\t\t\t\t[-93.521653, 45.246618],\n\t\t\t\t\t\t[-93.579390, 45.292122],\n\t\t\t\t\t\t[-93.756610, 45.294721],\n\t\t\t\t\t\t[-94.047327, 45.422861],\n\t\t\t\t\t\t[-94.141633, 45.492970],\n\t\t\t\t\t\t[-94.149467, 45.559066]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27145\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"145\",\n\t\t\t\t\"NAME\": \"Stearns\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1343.133000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.766899, 45.773911],\n\t\t\t\t\t\t[-94.643990, 45.773950],\n\t\t\t\t\t\t[-94.271776, 45.775208],\n\t\t\t\t\t\t[-94.215712, 45.726560],\n\t\t\t\t\t\t[-94.203666, 45.619556],\n\t\t\t\t\t\t[-94.149467, 45.559066],\n\t\t\t\t\t\t[-94.141633, 45.492970],\n\t\t\t\t\t\t[-94.047327, 45.422861],\n\t\t\t\t\t\t[-94.089509, 45.346620],\n\t\t\t\t\t\t[-94.260821, 45.283941],\n\t\t\t\t\t\t[-94.383449, 45.282797],\n\t\t\t\t\t\t[-94.383556, 45.326705],\n\t\t\t\t\t\t[-94.763080, 45.326100],\n\t\t\t\t\t\t[-94.762934, 45.412861],\n\t\t\t\t\t\t[-95.131730, 45.412402],\n\t\t\t\t\t\t[-95.139670, 45.758891],\n\t\t\t\t\t\t[-95.139731, 45.773416],\n\t\t\t\t\t\t[-94.766899, 45.773911]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27149\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"149\",\n\t\t\t\t\"NAME\": \"Stevens\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 563.604000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.747402, 45.412313],\n\t\t\t\t\t\t[-96.117036, 45.411993],\n\t\t\t\t\t\t[-96.241328, 45.412667],\n\t\t\t\t\t\t[-96.253026, 45.585526],\n\t\t\t\t\t\t[-96.254022, 45.759820],\n\t\t\t\t\t\t[-95.758508, 45.759932],\n\t\t\t\t\t\t[-95.747402, 45.412313]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27157\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"157\",\n\t\t\t\t\"NAME\": \"Wabasha\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 522.982000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.083925, 44.406211],\n\t\t\t\t\t\t[-92.046285, 44.394398],\n\t\t\t\t\t\t[-91.972493, 44.366760],\n\t\t\t\t\t\t[-91.963600, 44.362112],\n\t\t\t\t\t\t[-91.925590, 44.333548],\n\t\t\t\t\t\t[-91.918625, 44.322671],\n\t\t\t\t\t\t[-91.887189, 44.252513],\n\t\t\t\t\t\t[-91.887905, 44.246398],\n\t\t\t\t\t\t[-91.892963, 44.235149],\n\t\t\t\t\t\t[-91.892698, 44.231105],\n\t\t\t\t\t\t[-91.875158, 44.200575],\n\t\t\t\t\t\t[-91.862858, 44.193001],\n\t\t\t\t\t\t[-92.079397, 44.192722],\n\t\t\t\t\t\t[-92.079491, 44.106988],\n\t\t\t\t\t\t[-92.318971, 44.107734],\n\t\t\t\t\t\t[-92.318986, 44.194057],\n\t\t\t\t\t\t[-92.550871, 44.194916],\n\t\t\t\t\t\t[-92.550733, 44.368521],\n\t\t\t\t\t\t[-92.430629, 44.368291],\n\t\t\t\t\t\t[-92.430271, 44.455157],\n\t\t\t\t\t\t[-92.242010, 44.454254],\n\t\t\t\t\t\t[-92.233897, 44.446334],\n\t\t\t\t\t\t[-92.221083, 44.440386],\n\t\t\t\t\t\t[-92.115296, 44.416056],\n\t\t\t\t\t\t[-92.083925, 44.406211]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27163\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"163\",\n\t\t\t\t\"NAME\": \"Washington\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 384.282000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.746139, 45.296046],\n\t\t\t\t\t\t[-92.751735, 45.292667],\n\t\t\t\t\t\t[-92.760615, 45.278827],\n\t\t\t\t\t\t[-92.765898, 45.210173],\n\t\t\t\t\t\t[-92.767130, 45.194165],\n\t\t\t\t\t\t[-92.792875, 45.078489],\n\t\t\t\t\t\t[-92.791206, 45.045698],\n\t\t\t\t\t\t[-92.768606, 45.008016],\n\t\t\t\t\t\t[-92.750645, 44.937299],\n\t\t\t\t\t\t[-92.761677, 44.862022],\n\t\t\t\t\t\t[-92.761845, 44.860879],\n\t\t\t\t\t\t[-92.765461, 44.836202],\n\t\t\t\t\t\t[-92.784443, 44.793958],\n\t\t\t\t\t\t[-92.802201, 44.745714],\n\t\t\t\t\t\t[-93.005978, 44.771685],\n\t\t\t\t\t\t[-93.010076, 44.863787],\n\t\t\t\t\t\t[-93.012639, 44.869102],\n\t\t\t\t\t\t[-93.016466, 44.884611],\n\t\t\t\t\t\t[-93.020044, 44.890750],\n\t\t\t\t\t\t[-92.984192, 44.890814],\n\t\t\t\t\t\t[-92.984207, 44.893998],\n\t\t\t\t\t\t[-92.984458, 44.909393],\n\t\t\t\t\t\t[-92.984396, 44.909644],\n\t\t\t\t\t\t[-92.984463, 44.919869],\n\t\t\t\t\t\t[-92.984410, 44.920646],\n\t\t\t\t\t\t[-92.984584, 44.945077],\n\t\t\t\t\t\t[-92.984522, 44.945685],\n\t\t\t\t\t\t[-92.984620, 44.946114],\n\t\t\t\t\t\t[-92.984602, 44.947636],\n\t\t\t\t\t\t[-92.984640, 44.948522],\n\t\t\t\t\t\t[-92.984712, 45.075372],\n\t\t\t\t\t\t[-92.984621, 45.123757],\n\t\t\t\t\t\t[-93.020518, 45.123866],\n\t\t\t\t\t\t[-93.020219, 45.126754],\n\t\t\t\t\t\t[-93.019439, 45.296837],\n\t\t\t\t\t\t[-92.746139, 45.296046]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27171\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"171\",\n\t\t\t\t\"NAME\": \"Wright\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 661.457000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.521653, 45.246618],\n\t\t\t\t\t\t[-93.638745, 45.174363],\n\t\t\t\t\t\t[-93.638622, 45.165620],\n\t\t\t\t\t\t[-93.645168, 45.161561],\n\t\t\t\t\t\t[-93.647747, 45.158609],\n\t\t\t\t\t\t[-93.661545, 45.153274],\n\t\t\t\t\t\t[-93.667203, 45.154443],\n\t\t\t\t\t\t[-93.675914, 45.151134],\n\t\t\t\t\t\t[-93.761874, 45.081244],\n\t\t\t\t\t\t[-93.767367, 44.977964],\n\t\t\t\t\t\t[-94.012236, 44.978712],\n\t\t\t\t\t\t[-94.256074, 44.979465],\n\t\t\t\t\t\t[-94.260821, 45.283941],\n\t\t\t\t\t\t[-94.089509, 45.346620],\n\t\t\t\t\t\t[-94.047327, 45.422861],\n\t\t\t\t\t\t[-93.756610, 45.294721],\n\t\t\t\t\t\t[-93.579390, 45.292122],\n\t\t\t\t\t\t[-93.521653, 45.246618]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28005\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"005\",\n\t\t\t\t\"NAME\": \"Amite\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 730.100000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.825829, 30.999360],\n\t\t\t\t\t\t[-90.826027, 30.999360],\n\t\t\t\t\t\t[-91.060217, 30.998935],\n\t\t\t\t\t\t[-91.059431, 31.281858],\n\t\t\t\t\t\t[-91.095398, 31.320975],\n\t\t\t\t\t\t[-91.018012, 31.347502],\n\t\t\t\t\t\t[-90.633302, 31.349306],\n\t\t\t\t\t\t[-90.548199, 31.349574],\n\t\t\t\t\t\t[-90.547615, 30.999723],\n\t\t\t\t\t\t[-90.567195, 30.999733],\n\t\t\t\t\t\t[-90.583518, 30.999698],\n\t\t\t\t\t\t[-90.584448, 30.999698],\n\t\t\t\t\t\t[-90.587373, 30.999604],\n\t\t\t\t\t\t[-90.588676, 30.999650],\n\t\t\t\t\t\t[-90.648721, 30.999486],\n\t\t\t\t\t\t[-90.651193, 30.999510],\n\t\t\t\t\t\t[-90.734473, 30.999214],\n\t\t\t\t\t\t[-90.734552, 30.999222],\n\t\t\t\t\t\t[-90.758775, 30.999583],\n\t\t\t\t\t\t[-90.769333, 30.999374],\n\t\t\t\t\t\t[-90.775981, 30.999491],\n\t\t\t\t\t\t[-90.779858, 30.999457],\n\t\t\t\t\t\t[-90.783745, 30.999447],\n\t\t\t\t\t\t[-90.825829, 30.999360]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28009\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"009\",\n\t\t\t\t\"NAME\": \"Benton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 406.616000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.138997, 34.994330],\n\t\t\t\t\t\t[-89.017128, 34.994649],\n\t\t\t\t\t\t[-89.017551, 34.858723],\n\t\t\t\t\t\t[-89.088065, 34.815307],\n\t\t\t\t\t\t[-89.088488, 34.598247],\n\t\t\t\t\t\t[-89.245611, 34.597601],\n\t\t\t\t\t\t[-89.245645, 34.583234],\n\t\t\t\t\t\t[-89.298334, 34.582926],\n\t\t\t\t\t\t[-89.299227, 34.844415],\n\t\t\t\t\t\t[-89.352705, 34.844432],\n\t\t\t\t\t\t[-89.352679, 34.994420],\n\t\t\t\t\t\t[-89.198288, 34.994484],\n\t\t\t\t\t\t[-89.139136, 34.994307],\n\t\t\t\t\t\t[-89.138997, 34.994330]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28011\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"011\",\n\t\t\t\t\"NAME\": \"Bolivar\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 876.573000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.232295, 33.552788],\n\t\t\t\t\t\t[-91.228287, 33.559937],\n\t\t\t\t\t\t[-91.224121, 33.567369],\n\t\t\t\t\t\t[-91.152148, 33.582721],\n\t\t\t\t\t\t[-91.134043, 33.594489],\n\t\t\t\t\t\t[-91.130445, 33.606034],\n\t\t\t\t\t\t[-91.157484, 33.626187],\n\t\t\t\t\t\t[-91.186519, 33.645909],\n\t\t\t\t\t\t[-91.193093, 33.656866],\n\t\t\t\t\t\t[-91.188710, 33.669466],\n\t\t\t\t\t\t[-91.185971, 33.679327],\n\t\t\t\t\t\t[-91.176110, 33.684257],\n\t\t\t\t\t\t[-91.148170, 33.679327],\n\t\t\t\t\t\t[-91.139953, 33.683709],\n\t\t\t\t\t\t[-91.132831, 33.688092],\n\t\t\t\t\t\t[-91.127900, 33.695762],\n\t\t\t\t\t\t[-91.126805, 33.707814],\n\t\t\t\t\t\t[-91.136118, 33.728632],\n\t\t\t\t\t\t[-91.144682, 33.750108],\n\t\t\t\t\t\t[-91.139869, 33.777117],\n\t\t\t\t\t\t[-91.067511, 33.840443],\n\t\t\t\t\t\t[-91.036821, 33.914656],\n\t\t\t\t\t\t[-91.088164, 33.960078],\n\t\t\t\t\t\t[-91.089119, 33.972653],\n\t\t\t\t\t\t[-91.018890, 34.003151],\n\t\t\t\t\t\t[-90.964708, 34.007952],\n\t\t\t\t\t\t[-90.887413, 34.032505],\n\t\t\t\t\t\t[-90.879163, 34.065503],\n\t\t\t\t\t\t[-90.888396, 34.087433],\n\t\t\t\t\t\t[-90.912057, 34.095512],\n\t\t\t\t\t\t[-90.928793, 34.107631],\n\t\t\t\t\t\t[-90.931969, 34.120017],\n\t\t\t\t\t\t[-90.659457, 34.118867],\n\t\t\t\t\t\t[-90.657002, 33.987586],\n\t\t\t\t\t\t[-90.658600, 33.616272],\n\t\t\t\t\t\t[-90.763469, 33.616164],\n\t\t\t\t\t\t[-90.763509, 33.529389],\n\t\t\t\t\t\t[-91.215671, 33.529423],\n\t\t\t\t\t\t[-91.232295, 33.552788]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28015\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"015\",\n\t\t\t\t\"NAME\": \"Carroll\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 628.243000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.174614, 33.333378],\n\t\t\t\t\t\t[-90.174756, 33.417003],\n\t\t\t\t\t\t[-90.101401, 33.458940],\n\t\t\t\t\t\t[-90.127775, 33.676956],\n\t\t\t\t\t\t[-89.786890, 33.676727],\n\t\t\t\t\t\t[-89.785227, 33.416275],\n\t\t\t\t\t\t[-89.646314, 33.402544],\n\t\t\t\t\t\t[-89.645280, 33.285515],\n\t\t\t\t\t\t[-89.749441, 33.214478],\n\t\t\t\t\t\t[-90.174614, 33.333378]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28021\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"021\",\n\t\t\t\t\"NAME\": \"Claiborne\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 487.406000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.736282, 31.786134],\n\t\t\t\t\t\t[-90.852657, 31.785422],\n\t\t\t\t\t\t[-90.842000, 31.826498],\n\t\t\t\t\t\t[-91.013676, 31.861852],\n\t\t\t\t\t\t[-91.248144, 31.869848],\n\t\t\t\t\t\t[-91.128009, 31.985857],\n\t\t\t\t\t\t[-91.034707, 32.101053],\n\t\t\t\t\t\t[-91.027946, 32.112722],\n\t\t\t\t\t\t[-90.945094, 32.079921],\n\t\t\t\t\t\t[-90.907740, 32.131888],\n\t\t\t\t\t\t[-90.774820, 32.153993],\n\t\t\t\t\t\t[-90.728622, 32.225119],\n\t\t\t\t\t\t[-90.718297, 32.048352],\n\t\t\t\t\t\t[-90.716785, 31.844583],\n\t\t\t\t\t\t[-90.736282, 31.786134]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28031\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"031\",\n\t\t\t\t\"NAME\": \"Covington\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 413.792000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.399178, 31.434029],\n\t\t\t\t\t\t[-89.420857, 31.434043],\n\t\t\t\t\t\t[-89.451616, 31.434029],\n\t\t\t\t\t\t[-89.586819, 31.433688],\n\t\t\t\t\t\t[-89.586919, 31.513444],\n\t\t\t\t\t\t[-89.755614, 31.609751],\n\t\t\t\t\t\t[-89.755103, 31.774654],\n\t\t\t\t\t\t[-89.653025, 31.780653],\n\t\t\t\t\t\t[-89.401227, 31.796863],\n\t\t\t\t\t\t[-89.400539, 31.686169],\n\t\t\t\t\t\t[-89.399178, 31.434029]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28039\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"039\",\n\t\t\t\t\"NAME\": \"George\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 478.708000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.884534, 30.735591],\n\t\t\t\t\t\t[-88.885038, 30.910788],\n\t\t\t\t\t\t[-88.834475, 30.910323],\n\t\t\t\t\t\t[-88.834339, 30.997983],\n\t\t\t\t\t\t[-88.809328, 30.997379],\n\t\t\t\t\t\t[-88.425635, 30.998301],\n\t\t\t\t\t\t[-88.412462, 30.735598],\n\t\t\t\t\t\t[-88.884534, 30.735591]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19149\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"149\",\n\t\t\t\t\"NAME\": \"Plymouth\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 862.893000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.523264, 42.909059],\n\t\t\t\t\t\t[-95.859377, 42.909097],\n\t\t\t\t\t\t[-95.859949, 42.560620],\n\t\t\t\t\t\t[-96.479685, 42.561238],\n\t\t\t\t\t\t[-96.516338, 42.630435],\n\t\t\t\t\t\t[-96.542366, 42.660736],\n\t\t\t\t\t\t[-96.575299, 42.682665],\n\t\t\t\t\t\t[-96.601989, 42.697429],\n\t\t\t\t\t\t[-96.606140, 42.694661],\n\t\t\t\t\t\t[-96.610975, 42.694751],\n\t\t\t\t\t\t[-96.630617, 42.705880],\n\t\t\t\t\t\t[-96.639704, 42.737071],\n\t\t\t\t\t\t[-96.633168, 42.768325],\n\t\t\t\t\t\t[-96.632142, 42.770863],\n\t\t\t\t\t\t[-96.577813, 42.828102],\n\t\t\t\t\t\t[-96.563058, 42.831051],\n\t\t\t\t\t\t[-96.552092, 42.836057],\n\t\t\t\t\t\t[-96.549513, 42.839143],\n\t\t\t\t\t\t[-96.541460, 42.857682],\n\t\t\t\t\t\t[-96.523264, 42.909059]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28045\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"045\",\n\t\t\t\t\"NAME\": \"Hancock\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 473.748000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.341446, 30.647720],\n\t\t\t\t\t\t[-89.340947, 30.372896],\n\t\t\t\t\t\t[-89.349447, 30.370995],\n\t\t\t\t\t\t[-89.353248, 30.368795],\n\t\t\t\t\t\t[-89.363848, 30.357395],\n\t\t\t\t\t\t[-89.366116, 30.352169],\n\t\t\t\t\t\t[-89.345934, 30.343573],\n\t\t\t\t\t\t[-89.338847, 30.342995],\n\t\t\t\t\t\t[-89.332546, 30.337895],\n\t\t\t\t\t\t[-89.322345, 30.319296],\n\t\t\t\t\t\t[-89.322545, 30.314896],\n\t\t\t\t\t\t[-89.329946, 30.302896],\n\t\t\t\t\t\t[-89.344746, 30.293196],\n\t\t\t\t\t\t[-89.358546, 30.288896],\n\t\t\t\t\t\t[-89.365747, 30.284896],\n\t\t\t\t\t\t[-89.379547, 30.270396],\n\t\t\t\t\t\t[-89.383747, 30.267796],\n\t\t\t\t\t\t[-89.419348, 30.254320],\n\t\t\t\t\t\t[-89.424624, 30.245391],\n\t\t\t\t\t\t[-89.424493, 30.239092],\n\t\t\t\t\t\t[-89.430428, 30.223218],\n\t\t\t\t\t\t[-89.447465, 30.205098],\n\t\t\t\t\t\t[-89.447910, 30.185352],\n\t\t\t\t\t\t[-89.461275, 30.174745],\n\t\t\t\t\t\t[-89.463595, 30.173943],\n\t\t\t\t\t\t[-89.469792, 30.176278],\n\t\t\t\t\t\t[-89.475824, 30.191561],\n\t\t\t\t\t\t[-89.480214, 30.193751],\n\t\t\t\t\t\t[-89.490099, 30.187677],\n\t\t\t\t\t\t[-89.503231, 30.183051],\n\t\t\t\t\t\t[-89.522814, 30.183076],\n\t\t\t\t\t\t[-89.524504, 30.180753],\n\t\t\t\t\t\t[-89.572654, 30.180897],\n\t\t\t\t\t\t[-89.580754, 30.186197],\n\t\t\t\t\t\t[-89.607655, 30.217096],\n\t\t\t\t\t\t[-89.643440, 30.287682],\n\t\t\t\t\t\t[-89.643575, 30.293099],\n\t\t\t\t\t\t[-89.640694, 30.301313],\n\t\t\t\t\t\t[-89.629877, 30.321017],\n\t\t\t\t\t\t[-89.629941, 30.339449],\n\t\t\t\t\t\t[-89.683410, 30.451793],\n\t\t\t\t\t\t[-89.690580, 30.458773],\n\t\t\t\t\t\t[-89.544510, 30.516862],\n\t\t\t\t\t\t[-89.544232, 30.648368],\n\t\t\t\t\t\t[-89.341446, 30.647720]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28051\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"051\",\n\t\t\t\t\"NAME\": \"Holmes\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 756.699000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.331589, 33.302825],\n\t\t\t\t\t\t[-90.321513, 33.375121],\n\t\t\t\t\t\t[-90.174614, 33.333378],\n\t\t\t\t\t\t[-89.749441, 33.214478],\n\t\t\t\t\t\t[-89.895518, 32.936014],\n\t\t\t\t\t\t[-89.965882, 32.879573],\n\t\t\t\t\t\t[-90.364031, 33.010596],\n\t\t\t\t\t\t[-90.431684, 33.096871],\n\t\t\t\t\t\t[-90.330312, 33.137818],\n\t\t\t\t\t\t[-90.331589, 33.302825]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28053\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"053\",\n\t\t\t\t\"NAME\": \"Humphreys\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 418.491000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.453233, 33.329484],\n\t\t\t\t\t\t[-90.453801, 33.267302],\n\t\t\t\t\t\t[-90.373500, 33.242209],\n\t\t\t\t\t\t[-90.331589, 33.302825],\n\t\t\t\t\t\t[-90.330312, 33.137818],\n\t\t\t\t\t\t[-90.431684, 33.096871],\n\t\t\t\t\t\t[-90.364031, 33.010596],\n\t\t\t\t\t\t[-90.449323, 33.009010],\n\t\t\t\t\t\t[-90.449893, 32.923290],\n\t\t\t\t\t\t[-90.656632, 32.922510],\n\t\t\t\t\t\t[-90.658049, 33.096514],\n\t\t\t\t\t\t[-90.701845, 33.096294],\n\t\t\t\t\t\t[-90.680319, 33.201971],\n\t\t\t\t\t\t[-90.716277, 33.270032],\n\t\t\t\t\t\t[-90.555211, 33.270533],\n\t\t\t\t\t\t[-90.555549, 33.329181],\n\t\t\t\t\t\t[-90.453233, 33.329484]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28059\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"059\",\n\t\t\t\t\"NAME\": \"Jackson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 722.754000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-88.845609, 30.405266],\n\t\t\t\t\t\t\t[-88.883130, 30.418798],\n\t\t\t\t\t\t\t[-88.884533, 30.677292],\n\t\t\t\t\t\t\t[-88.884504, 30.713175],\n\t\t\t\t\t\t\t[-88.884478, 30.713770],\n\t\t\t\t\t\t\t[-88.884536, 30.714622],\n\t\t\t\t\t\t\t[-88.884534, 30.735591],\n\t\t\t\t\t\t\t[-88.412462, 30.735598],\n\t\t\t\t\t\t\t[-88.412270, 30.731771],\n\t\t\t\t\t\t\t[-88.412209, 30.730395],\n\t\t\t\t\t\t\t[-88.411550, 30.712956],\n\t\t\t\t\t\t\t[-88.411339, 30.706334],\n\t\t\t\t\t\t\t[-88.409571, 30.668731],\n\t\t\t\t\t\t\t[-88.408070, 30.636970],\n\t\t\t\t\t\t\t[-88.407462, 30.631653],\n\t\t\t\t\t\t\t[-88.407484, 30.622736],\n\t\t\t\t\t\t\t[-88.404013, 30.545060],\n\t\t\t\t\t\t\t[-88.403931, 30.543359],\n\t\t\t\t\t\t\t[-88.403547, 30.533100],\n\t\t\t\t\t\t\t[-88.402283, 30.510852],\n\t\t\t\t\t\t\t[-88.395023, 30.369425],\n\t\t\t\t\t\t\t[-88.397236, 30.367689],\n\t\t\t\t\t\t\t[-88.399062, 30.360744],\n\t\t\t\t\t\t\t[-88.397082, 30.354785],\n\t\t\t\t\t\t\t[-88.394150, 30.352493],\n\t\t\t\t\t\t\t[-88.393980, 30.349307],\n\t\t\t\t\t\t\t[-88.401181, 30.344382],\n\t\t\t\t\t\t\t[-88.409927, 30.342115],\n\t\t\t\t\t\t\t[-88.418811, 30.353911],\n\t\t\t\t\t\t\t[-88.433891, 30.354652],\n\t\t\t\t\t\t\t[-88.446495, 30.347753],\n\t\t\t\t\t\t\t[-88.446625, 30.337671],\n\t\t\t\t\t\t\t[-88.453810, 30.329626],\n\t\t\t\t\t\t\t[-88.471875, 30.320020],\n\t\t\t\t\t\t\t[-88.480117, 30.318345],\n\t\t\t\t\t\t\t[-88.504802, 30.321472],\n\t\t\t\t\t\t\t[-88.506226, 30.322393],\n\t\t\t\t\t\t\t[-88.506334, 30.327398],\n\t\t\t\t\t\t\t[-88.522494, 30.340092],\n\t\t\t\t\t\t\t[-88.536214, 30.343299],\n\t\t\t\t\t\t\t[-88.579483, 30.344190],\n\t\t\t\t\t\t\t[-88.596349, 30.358365],\n\t\t\t\t\t\t\t[-88.599249, 30.358933],\n\t\t\t\t\t\t\t[-88.601762, 30.355876],\n\t\t\t\t\t\t\t[-88.613745, 30.353108],\n\t\t\t\t\t\t\t[-88.624523, 30.358713],\n\t\t\t\t\t\t\t[-88.663820, 30.362099],\n\t\t\t\t\t\t\t[-88.679575, 30.355710],\n\t\t\t\t\t\t\t[-88.692164, 30.347302],\n\t\t\t\t\t\t\t[-88.700587, 30.343689],\n\t\t\t\t\t\t\t[-88.714077, 30.342186],\n\t\t\t\t\t\t\t[-88.728893, 30.342671],\n\t\t\t\t\t\t\t[-88.746945, 30.347622],\n\t\t\t\t\t\t\t[-88.771742, 30.365403],\n\t\t\t\t\t\t\t[-88.811615, 30.384907],\n\t\t\t\t\t\t\t[-88.812576, 30.387680],\n\t\t\t\t\t\t\t[-88.810127, 30.391298],\n\t\t\t\t\t\t\t[-88.810227, 30.394698],\n\t\t\t\t\t\t\t[-88.823724, 30.402376],\n\t\t\t\t\t\t\t[-88.841328, 30.409598],\n\t\t\t\t\t\t\t[-88.845609, 30.405266]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-88.506999, 30.214348],\n\t\t\t\t\t\t\t[-88.500011, 30.214044],\n\t\t\t\t\t\t\t[-88.465713, 30.202540],\n\t\t\t\t\t\t\t[-88.453444, 30.201236],\n\t\t\t\t\t\t\t[-88.442654, 30.202314],\n\t\t\t\t\t\t\t[-88.430332, 30.208548],\n\t\t\t\t\t\t\t[-88.401466, 30.210172],\n\t\t\t\t\t\t\t[-88.404581, 30.206162],\n\t\t\t\t\t\t\t[-88.428301, 30.198511],\n\t\t\t\t\t\t\t[-88.453654, 30.196584],\n\t\t\t\t\t\t\t[-88.493523, 30.205945],\n\t\t\t\t\t\t\t[-88.502752, 30.210506],\n\t\t\t\t\t\t\t[-88.506999, 30.214348]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-88.710719, 30.250799],\n\t\t\t\t\t\t\t[-88.656804, 30.233956],\n\t\t\t\t\t\t\t[-88.573044, 30.222640],\n\t\t\t\t\t\t\t[-88.568056, 30.222732],\n\t\t\t\t\t\t\t[-88.562067, 30.227476],\n\t\t\t\t\t\t\t[-88.565576, 30.222847],\n\t\t\t\t\t\t\t[-88.569138, 30.221357],\n\t\t\t\t\t\t\t[-88.587424, 30.219154],\n\t\t\t\t\t\t\t[-88.633743, 30.226342],\n\t\t\t\t\t\t\t[-88.665857, 30.228847],\n\t\t\t\t\t\t\t[-88.711830, 30.242662],\n\t\t\t\t\t\t\t[-88.740647, 30.238665],\n\t\t\t\t\t\t\t[-88.752782, 30.238803],\n\t\t\t\t\t\t\t[-88.764022, 30.241488],\n\t\t\t\t\t\t\t[-88.771991, 30.245523],\n\t\t\t\t\t\t\t[-88.732550, 30.246322],\n\t\t\t\t\t\t\t[-88.718104, 30.252931],\n\t\t\t\t\t\t\t[-88.710719, 30.250799]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28067\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"067\",\n\t\t\t\t\"NAME\": \"Jones\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 694.795000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.359928, 31.799388],\n\t\t\t\t\t\t[-89.316560, 31.802090],\n\t\t\t\t\t\t[-88.943355, 31.824565],\n\t\t\t\t\t\t[-88.943468, 31.433458],\n\t\t\t\t\t\t[-89.146092, 31.434052],\n\t\t\t\t\t\t[-89.399178, 31.434029],\n\t\t\t\t\t\t[-89.400539, 31.686169],\n\t\t\t\t\t\t[-89.401227, 31.796863],\n\t\t\t\t\t\t[-89.359928, 31.799388]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28073\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"073\",\n\t\t\t\t\"NAME\": \"Lamar\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 497.055000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.654136, 31.375517],\n\t\t\t\t\t\t[-89.654400, 31.404663],\n\t\t\t\t\t\t[-89.654212, 31.433805],\n\t\t\t\t\t\t[-89.586819, 31.433688],\n\t\t\t\t\t\t[-89.451616, 31.434029],\n\t\t\t\t\t\t[-89.451073, 31.346383],\n\t\t\t\t\t\t[-89.347863, 31.346700],\n\t\t\t\t\t\t[-89.348950, 31.010370],\n\t\t\t\t\t\t[-89.476022, 30.982901],\n\t\t\t\t\t\t[-89.501411, 31.013907],\n\t\t\t\t\t\t[-89.654038, 31.002502],\n\t\t\t\t\t\t[-89.654136, 31.375517]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US23007\",\n\t\t\t\t\"STATE\": \"23\",\n\t\t\t\t\"COUNTY\": \"007\",\n\t\t\t\t\"NAME\": \"Franklin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1696.609000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-69.930451, 44.610852],\n\t\t\t\t\t\t[-69.944082, 44.537828],\n\t\t\t\t\t\t[-70.030536, 44.508786],\n\t\t\t\t\t\t[-70.042350, 44.485235],\n\t\t\t\t\t\t[-70.129390, 44.487217],\n\t\t\t\t\t\t[-70.201276, 44.477976],\n\t\t\t\t\t\t[-70.238904, 44.458942],\n\t\t\t\t\t\t[-70.280908, 44.505095],\n\t\t\t\t\t\t[-70.280748, 44.569619],\n\t\t\t\t\t\t[-70.549985, 44.610727],\n\t\t\t\t\t\t[-70.510598, 44.627216],\n\t\t\t\t\t\t[-70.615030, 44.795634],\n\t\t\t\t\t\t[-70.769228, 44.732228],\n\t\t\t\t\t\t[-70.831612, 45.260055],\n\t\t\t\t\t\t[-70.808322, 45.325824],\n\t\t\t\t\t\t[-70.807664, 45.378118],\n\t\t\t\t\t\t[-70.824053, 45.391094],\n\t\t\t\t\t\t[-70.825612, 45.400305],\n\t\t\t\t\t\t[-70.798483, 45.424740],\n\t\t\t\t\t\t[-70.781471, 45.431159],\n\t\t\t\t\t\t[-70.753977, 45.427789],\n\t\t\t\t\t\t[-70.744077, 45.421091],\n\t\t\t\t\t\t[-70.743775, 45.411925],\n\t\t\t\t\t\t[-70.729972, 45.399359],\n\t\t\t\t\t\t[-70.712286, 45.390611],\n\t\t\t\t\t\t[-70.660029, 45.377901],\n\t\t\t\t\t\t[-70.651986, 45.377146],\n\t\t\t\t\t\t[-70.634661, 45.383608],\n\t\t\t\t\t\t[-70.626527, 45.407011],\n\t\t\t\t\t\t[-70.635498, 45.427817],\n\t\t\t\t\t\t[-70.650161, 45.443685],\n\t\t\t\t\t\t[-70.663701, 45.447049],\n\t\t\t\t\t\t[-70.675910, 45.452582],\n\t\t\t\t\t\t[-70.716332, 45.486909],\n\t\t\t\t\t\t[-70.723167, 45.507606],\n\t\t\t\t\t\t[-70.721611, 45.515058],\n\t\t\t\t\t\t[-70.700776, 45.532777],\n\t\t\t\t\t\t[-70.686531, 45.549990],\n\t\t\t\t\t\t[-70.688214, 45.563981],\n\t\t\t\t\t\t[-70.659286, 45.586880],\n\t\t\t\t\t\t[-70.564789, 45.655150],\n\t\t\t\t\t\t[-70.551038, 45.661885],\n\t\t\t\t\t\t[-70.418519, 45.144005],\n\t\t\t\t\t\t[-70.308491, 45.163183],\n\t\t\t\t\t\t[-70.293826, 45.109903],\n\t\t\t\t\t\t[-70.159375, 45.128396],\n\t\t\t\t\t\t[-70.110365, 44.947311],\n\t\t\t\t\t\t[-70.149085, 44.896102],\n\t\t\t\t\t\t[-70.129930, 44.850765],\n\t\t\t\t\t\t[-70.033270, 44.864540],\n\t\t\t\t\t\t[-69.996191, 44.677497],\n\t\t\t\t\t\t[-69.930451, 44.610852]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13215\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"215\",\n\t\t\t\t\"NAME\": \"Muscogee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 216.385000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.001052, 32.510477],\n\t\t\t\t\t\t[-85.001324, 32.512973],\n\t\t\t\t\t\t[-85.007100, 32.523868],\n\t\t\t\t\t\t[-85.022509, 32.542923],\n\t\t\t\t\t\t[-85.044606, 32.559499],\n\t\t\t\t\t\t[-85.069583, 32.583930],\n\t\t\t\t\t\t[-85.079935, 32.602889],\n\t\t\t\t\t\t[-85.080288, 32.603577],\n\t\t\t\t\t\t[-85.082454, 32.607022],\n\t\t\t\t\t\t[-84.907703, 32.607608],\n\t\t\t\t\t\t[-84.907883, 32.583433],\n\t\t\t\t\t\t[-84.694603, 32.583945],\n\t\t\t\t\t\t[-84.694510, 32.518732],\n\t\t\t\t\t\t[-84.769431, 32.422319],\n\t\t\t\t\t\t[-84.774567, 32.421839],\n\t\t\t\t\t\t[-84.778359, 32.423054],\n\t\t\t\t\t\t[-84.781559, 32.422863],\n\t\t\t\t\t\t[-84.782983, 32.421711],\n\t\t\t\t\t\t[-84.788471, 32.418031],\n\t\t\t\t\t\t[-84.791463, 32.414783],\n\t\t\t\t\t\t[-84.798647, 32.415968],\n\t\t\t\t\t\t[-84.805175, 32.418912],\n\t\t\t\t\t\t[-84.809432, 32.420864],\n\t\t\t\t\t\t[-84.811384, 32.418608],\n\t\t\t\t\t\t[-84.814632, 32.414448],\n\t\t\t\t\t\t[-84.823992, 32.413967],\n\t\t\t\t\t\t[-84.834360, 32.413216],\n\t\t\t\t\t\t[-84.844216, 32.413248],\n\t\t\t\t\t\t[-84.848664, 32.414640],\n\t\t\t\t\t\t[-84.987278, 32.381623],\n\t\t\t\t\t\t[-84.979431, 32.412244],\n\t\t\t\t\t\t[-84.983831, 32.445643],\n\t\t\t\t\t\t[-84.998231, 32.469842],\n\t\t\t\t\t\t[-85.000779, 32.506548],\n\t\t\t\t\t\t[-85.001030, 32.510157],\n\t\t\t\t\t\t[-85.001052, 32.510477]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13239\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"239\",\n\t\t\t\t\"NAME\": \"Quitman\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 151.237000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.062246, 31.991857],\n\t\t\t\t\t\t[-84.907006, 31.924465],\n\t\t\t\t\t\t[-84.910338, 31.776841],\n\t\t\t\t\t\t[-84.958640, 31.777854],\n\t\t\t\t\t\t[-85.138668, 31.780425],\n\t\t\t\t\t\t[-85.141331, 31.783163],\n\t\t\t\t\t\t[-85.141831, 31.839861],\n\t\t\t\t\t\t[-85.132931, 31.888260],\n\t\t\t\t\t\t[-85.106630, 31.915159],\n\t\t\t\t\t\t[-85.082130, 31.944658],\n\t\t\t\t\t\t[-85.072330, 31.964758],\n\t\t\t\t\t\t[-85.062246, 31.991857]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27077\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"077\",\n\t\t\t\t\"NAME\": \"Lake of the Woods\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1297.869000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.431854, 48.706588],\n\t\t\t\t\t\t[-94.430273, 48.700909],\n\t\t\t\t\t\t[-94.428702, 48.367333],\n\t\t\t\t\t\t[-95.210953, 48.365971],\n\t\t\t\t\t\t[-95.211966, 48.539961],\n\t\t\t\t\t\t[-95.342540, 48.540211],\n\t\t\t\t\t\t[-95.342730, 48.713028],\n\t\t\t\t\t\t[-95.089863, 48.713062],\n\t\t\t\t\t\t[-95.091464, 48.920618],\n\t\t\t\t\t\t[-95.235606, 48.881450],\n\t\t\t\t\t\t[-95.319895, 48.998769],\n\t\t\t\t\t\t[-95.153711, 48.998903],\n\t\t\t\t\t\t[-95.153309, 49.184880],\n\t\t\t\t\t\t[-95.153424, 49.249995],\n\t\t\t\t\t\t[-95.153333, 49.305655],\n\t\t\t\t\t\t[-95.153319, 49.307720],\n\t\t\t\t\t\t[-95.153331, 49.308442],\n\t\t\t\t\t\t[-95.153330, 49.309287],\n\t\t\t\t\t\t[-95.153284, 49.343409],\n\t\t\t\t\t\t[-95.153344, 49.343662],\n\t\t\t\t\t\t[-95.153407, 49.354397],\n\t\t\t\t\t\t[-95.153330, 49.365886],\n\t\t\t\t\t\t[-95.153259, 49.367691],\n\t\t\t\t\t\t[-95.153293, 49.369107],\n\t\t\t\t\t\t[-95.153350, 49.383079],\n\t\t\t\t\t\t[-95.153314, 49.384358],\n\t\t\t\t\t\t[-95.126467, 49.369439],\n\t\t\t\t\t\t[-95.058404, 49.353170],\n\t\t\t\t\t\t[-95.014415, 49.356405],\n\t\t\t\t\t\t[-94.988908, 49.368897],\n\t\t\t\t\t\t[-94.957465, 49.370186],\n\t\t\t\t\t\t[-94.909273, 49.350176],\n\t\t\t\t\t\t[-94.824291, 49.308834],\n\t\t\t\t\t\t[-94.797527, 49.197791],\n\t\t\t\t\t\t[-94.773223, 49.120733],\n\t\t\t\t\t\t[-94.750221, 49.099763],\n\t\t\t\t\t\t[-94.750218, 48.999992],\n\t\t\t\t\t\t[-94.718932, 48.999991],\n\t\t\t\t\t\t[-94.683069, 48.883929],\n\t\t\t\t\t\t[-94.683127, 48.883376],\n\t\t\t\t\t\t[-94.690302, 48.863711],\n\t\t\t\t\t\t[-94.690246, 48.863363],\n\t\t\t\t\t\t[-94.690889, 48.778066],\n\t\t\t\t\t\t[-94.690863, 48.778047],\n\t\t\t\t\t\t[-94.646256, 48.749975],\n\t\t\t\t\t\t[-94.645150, 48.748991],\n\t\t\t\t\t\t[-94.628854, 48.738789],\n\t\t\t\t\t\t[-94.533057, 48.701262],\n\t\t\t\t\t\t[-94.468728, 48.696324],\n\t\t\t\t\t\t[-94.431854, 48.706588]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US45031\",\n\t\t\t\t\"STATE\": \"45\",\n\t\t\t\t\"COUNTY\": \"031\",\n\t\t\t\t\"NAME\": \"Darlington\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 561.153000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.072808, 34.086013],\n\t\t\t\t\t\t[-80.131441, 34.128666],\n\t\t\t\t\t\t[-80.112727, 34.197018],\n\t\t\t\t\t\t[-80.177225, 34.366203],\n\t\t\t\t\t\t[-80.288692, 34.364139],\n\t\t\t\t\t\t[-80.286936, 34.364572],\n\t\t\t\t\t\t[-80.286880, 34.365305],\n\t\t\t\t\t\t[-80.288596, 34.366207],\n\t\t\t\t\t\t[-80.045439, 34.492631],\n\t\t\t\t\t\t[-79.884542, 34.491218],\n\t\t\t\t\t\t[-79.829981, 34.531925],\n\t\t\t\t\t\t[-79.721794, 34.485416],\n\t\t\t\t\t\t[-79.750566, 34.436797],\n\t\t\t\t\t\t[-79.684559, 34.400490],\n\t\t\t\t\t\t[-79.657764, 34.305190],\n\t\t\t\t\t\t[-79.883065, 34.204112],\n\t\t\t\t\t\t[-79.999789, 34.129007],\n\t\t\t\t\t\t[-80.072808, 34.086013]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US45035\",\n\t\t\t\t\"STATE\": \"45\",\n\t\t\t\t\"COUNTY\": \"035\",\n\t\t\t\t\"NAME\": \"Dorchester\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 573.233000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.361851, 33.257443],\n\t\t\t\t\t\t[-80.299248, 33.130274],\n\t\t\t\t\t\t[-80.279567, 33.119213],\n\t\t\t\t\t\t[-80.149246, 33.021601],\n\t\t\t\t\t\t[-80.079028, 32.927811],\n\t\t\t\t\t\t[-80.174460, 32.845651],\n\t\t\t\t\t\t[-80.163130, 32.841270],\n\t\t\t\t\t\t[-80.158808, 32.830114],\n\t\t\t\t\t\t[-80.148108, 32.818904],\n\t\t\t\t\t\t[-80.401340, 32.858466],\n\t\t\t\t\t\t[-80.390533, 33.043909],\n\t\t\t\t\t\t[-80.622100, 33.066080],\n\t\t\t\t\t\t[-80.709736, 33.156470],\n\t\t\t\t\t\t[-80.790296, 33.180840],\n\t\t\t\t\t\t[-80.502790, 33.334496],\n\t\t\t\t\t\t[-80.484578, 33.280034],\n\t\t\t\t\t\t[-80.361851, 33.257443]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US45037\",\n\t\t\t\t\"STATE\": \"45\",\n\t\t\t\t\"COUNTY\": \"037\",\n\t\t\t\t\"NAME\": \"Edgefield\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 500.406000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.651759, 33.814510],\n\t\t\t\t\t\t[-82.012534, 33.532156],\n\t\t\t\t\t\t[-82.014293, 33.530313],\n\t\t\t\t\t\t[-82.028238, 33.544934],\n\t\t\t\t\t\t[-82.046335, 33.563830],\n\t\t\t\t\t\t[-82.069039, 33.575382],\n\t\t\t\t\t\t[-82.098816, 33.586358],\n\t\t\t\t\t\t[-82.116630, 33.589723],\n\t\t\t\t\t\t[-82.095527, 33.633869],\n\t\t\t\t\t\t[-82.166027, 33.690316],\n\t\t\t\t\t\t[-82.172379, 33.765711],\n\t\t\t\t\t\t[-82.113728, 33.829880],\n\t\t\t\t\t\t[-82.155700, 33.929290],\n\t\t\t\t\t\t[-82.046974, 33.953210],\n\t\t\t\t\t\t[-82.008298, 33.961646],\n\t\t\t\t\t\t[-81.894595, 33.975415],\n\t\t\t\t\t\t[-81.836803, 33.866501],\n\t\t\t\t\t\t[-81.651759, 33.814510]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47011\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"011\",\n\t\t\t\t\"NAME\": \"Bradley\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 328.762000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.703607, 35.241043],\n\t\t\t\t\t\t[-84.699937, 35.170974],\n\t\t\t\t\t\t[-84.775852, 34.987800],\n\t\t\t\t\t\t[-84.808127, 34.987592],\n\t\t\t\t\t\t[-84.809184, 34.987569],\n\t\t\t\t\t\t[-84.810477, 34.987607],\n\t\t\t\t\t\t[-84.810742, 34.987615],\n\t\t\t\t\t\t[-84.817279, 34.987753],\n\t\t\t\t\t\t[-84.820478, 34.987913],\n\t\t\t\t\t\t[-84.824010, 34.987707],\n\t\t\t\t\t\t[-84.831799, 34.988004],\n\t\t\t\t\t\t[-84.858032, 34.987746],\n\t\t\t\t\t\t[-84.861314, 34.987791],\n\t\t\t\t\t\t[-84.939306, 34.987916],\n\t\t\t\t\t\t[-84.944420, 34.987864],\n\t\t\t\t\t\t[-84.955623, 34.987830],\n\t\t\t\t\t\t[-84.976973, 34.987669],\n\t\t\t\t\t\t[-85.024043, 35.148829],\n\t\t\t\t\t\t[-84.946350, 35.287788],\n\t\t\t\t\t\t[-84.860164, 35.350074],\n\t\t\t\t\t\t[-84.703607, 35.241043]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47017\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"017\",\n\t\t\t\t\"NAME\": \"Carroll\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 599.252000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.179177, 35.816785],\n\t\t\t\t\t\t[-88.569047, 35.824829],\n\t\t\t\t\t\t[-88.606862, 35.789354],\n\t\t\t\t\t\t[-88.706811, 35.791075],\n\t\t\t\t\t\t[-88.692709, 36.062746],\n\t\t\t\t\t\t[-88.655488, 36.117338],\n\t\t\t\t\t\t[-88.532233, 36.115416],\n\t\t\t\t\t\t[-88.530346, 36.151573],\n\t\t\t\t\t\t[-88.211698, 36.145974],\n\t\t\t\t\t\t[-88.212559, 36.120290],\n\t\t\t\t\t\t[-88.217436, 35.846582],\n\t\t\t\t\t\t[-88.177859, 35.845841],\n\t\t\t\t\t\t[-88.178980, 35.818911],\n\t\t\t\t\t\t[-88.179177, 35.816785]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47021\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"021\",\n\t\t\t\t\"NAME\": \"Cheatham\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 302.437000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.286501, 36.321933],\n\t\t\t\t\t\t[-87.177254, 36.424583],\n\t\t\t\t\t\t[-87.171307, 36.427616],\n\t\t\t\t\t\t[-87.163242, 36.421360],\n\t\t\t\t\t\t[-87.162729, 36.413298],\n\t\t\t\t\t\t[-87.150974, 36.416644],\n\t\t\t\t\t\t[-87.148602, 36.422773],\n\t\t\t\t\t\t[-87.150276, 36.445037],\n\t\t\t\t\t\t[-87.120443, 36.455460],\n\t\t\t\t\t\t[-86.988801, 36.370650],\n\t\t\t\t\t\t[-86.913233, 36.382621],\n\t\t\t\t\t\t[-86.997705, 36.128512],\n\t\t\t\t\t\t[-87.054114, 36.045535],\n\t\t\t\t\t\t[-87.085304, 36.043761],\n\t\t\t\t\t\t[-87.106124, 36.045167],\n\t\t\t\t\t\t[-87.142341, 36.048028],\n\t\t\t\t\t\t[-87.182573, 36.049726],\n\t\t\t\t\t\t[-87.149876, 36.176878],\n\t\t\t\t\t\t[-87.177303, 36.314145],\n\t\t\t\t\t\t[-87.286501, 36.321933]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.151995, 36.289037],\n\t\t\t\t\t\t[-87.142372, 36.290684],\n\t\t\t\t\t\t[-87.139332, 36.292418],\n\t\t\t\t\t\t[-87.142315, 36.294607],\n\t\t\t\t\t\t[-87.144172, 36.292142],\n\t\t\t\t\t\t[-87.146906, 36.293344],\n\t\t\t\t\t\t[-87.151995, 36.289037]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47025\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"025\",\n\t\t\t\t\"NAME\": \"Claiborne\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 434.580000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.472108, 36.597284],\n\t\t\t\t\t\t[-83.398303, 36.534885],\n\t\t\t\t\t\t[-83.386800, 36.413186],\n\t\t\t\t\t\t[-83.532504, 36.353385],\n\t\t\t\t\t\t[-83.667408, 36.344381],\n\t\t\t\t\t\t[-83.733010, 36.344980],\n\t\t\t\t\t\t[-83.805515, 36.435879],\n\t\t\t\t\t\t[-83.905638, 36.419979],\n\t\t\t\t\t\t[-83.987612, 36.589595],\n\t\t\t\t\t\t[-83.930669, 36.588249],\n\t\t\t\t\t\t[-83.690714, 36.582581],\n\t\t\t\t\t\t[-83.677114, 36.596582],\n\t\t\t\t\t\t[-83.675413, 36.600814],\n\t\t\t\t\t\t[-83.670141, 36.600797],\n\t\t\t\t\t\t[-83.670128, 36.600764],\n\t\t\t\t\t\t[-83.472108, 36.597284]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47033\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"033\",\n\t\t\t\t\"NAME\": \"Crockett\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 265.535000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.069544, 35.692679],\n\t\t\t\t\t\t[-89.271224, 35.754922],\n\t\t\t\t\t\t[-89.356033, 35.817635],\n\t\t\t\t\t\t[-89.342829, 35.880934],\n\t\t\t\t\t\t[-89.280188, 35.886416],\n\t\t\t\t\t\t[-89.188844, 35.999760],\n\t\t\t\t\t\t[-89.109602, 35.862095],\n\t\t\t\t\t\t[-88.916181, 35.797307],\n\t\t\t\t\t\t[-88.892938, 35.783842],\n\t\t\t\t\t\t[-89.020960, 35.671046],\n\t\t\t\t\t\t[-89.069544, 35.692679]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47035\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"035\",\n\t\t\t\t\"NAME\": \"Cumberland\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 681.025000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.680633, 35.908454],\n\t\t\t\t\t\t[-84.781901, 35.825000],\n\t\t\t\t\t\t[-84.916062, 35.761939],\n\t\t\t\t\t\t[-85.254062, 35.765611],\n\t\t\t\t\t\t[-85.247784, 35.786660],\n\t\t\t\t\t\t[-85.260380, 35.782580],\n\t\t\t\t\t\t[-85.273288, 35.787948],\n\t\t\t\t\t\t[-85.269359, 35.793388],\n\t\t\t\t\t\t[-85.213115, 35.910379],\n\t\t\t\t\t\t[-85.264206, 35.979154],\n\t\t\t\t\t\t[-85.246362, 36.100698],\n\t\t\t\t\t\t[-85.100213, 36.138561],\n\t\t\t\t\t\t[-84.907753, 36.156293],\n\t\t\t\t\t\t[-84.720727, 35.994914],\n\t\t\t\t\t\t[-84.680633, 35.908454]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47041\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"041\",\n\t\t\t\t\"NAME\": \"DeKalb\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 304.347000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.885156, 35.839658],\n\t\t\t\t\t\t[-86.014849, 35.961060],\n\t\t\t\t\t\t[-86.059706, 36.086024],\n\t\t\t\t\t\t[-85.807415, 36.131582],\n\t\t\t\t\t\t[-85.644604, 36.015053],\n\t\t\t\t\t\t[-85.637327, 35.881824],\n\t\t\t\t\t\t[-85.682095, 35.831254],\n\t\t\t\t\t\t[-85.885156, 35.839658]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47047\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"047\",\n\t\t\t\t\"NAME\": \"Fayette\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 704.786000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.642786, 35.044860],\n\t\t\t\t\t\t[-89.632776, 35.375824],\n\t\t\t\t\t\t[-89.474171, 35.403039],\n\t\t\t\t\t\t[-89.183944, 35.397126],\n\t\t\t\t\t\t[-89.198288, 34.994484],\n\t\t\t\t\t\t[-89.352679, 34.994420],\n\t\t\t\t\t\t[-89.493739, 34.994361],\n\t\t\t\t\t\t[-89.511153, 34.994755],\n\t\t\t\t\t\t[-89.644282, 34.995293],\n\t\t\t\t\t\t[-89.643739, 35.011693],\n\t\t\t\t\t\t[-89.643782, 35.012092],\n\t\t\t\t\t\t[-89.642786, 35.044860]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47049\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"049\",\n\t\t\t\t\"NAME\": \"Fentress\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 498.612000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.120445, 36.407164],\n\t\t\t\t\t\t[-85.043924, 36.558791],\n\t\t\t\t\t\t[-84.943144, 36.581270],\n\t\t\t\t\t\t[-84.731839, 36.524674],\n\t\t\t\t\t\t[-84.659082, 36.395227],\n\t\t\t\t\t\t[-84.700785, 36.370824],\n\t\t\t\t\t\t[-84.797861, 36.296894],\n\t\t\t\t\t\t[-84.878553, 36.280204],\n\t\t\t\t\t\t[-84.907753, 36.156293],\n\t\t\t\t\t\t[-85.100213, 36.138561],\n\t\t\t\t\t\t[-85.119583, 36.144719],\n\t\t\t\t\t\t[-85.082497, 36.196171],\n\t\t\t\t\t\t[-85.122245, 36.304599],\n\t\t\t\t\t\t[-85.120445, 36.407164]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47059\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"059\",\n\t\t\t\t\"NAME\": \"Greene\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 622.165000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.595065, 36.096205],\n\t\t\t\t\t\t[-82.577200, 36.078387],\n\t\t\t\t\t\t[-82.602877, 36.039833],\n\t\t\t\t\t\t[-82.619205, 36.056556],\n\t\t\t\t\t\t[-82.632265, 36.065705],\n\t\t\t\t\t\t[-82.637165, 36.065805],\n\t\t\t\t\t\t[-82.683565, 36.046104],\n\t\t\t\t\t\t[-82.715365, 36.024253],\n\t\t\t\t\t\t[-82.754465, 36.004304],\n\t\t\t\t\t\t[-82.778625, 35.974792],\n\t\t\t\t\t\t[-82.830112, 35.932972],\n\t\t\t\t\t\t[-82.852554, 35.949089],\n\t\t\t\t\t\t[-82.874159, 35.952698],\n\t\t\t\t\t\t[-82.898505, 35.945101],\n\t\t\t\t\t\t[-82.898506, 35.945100],\n\t\t\t\t\t\t[-83.166085, 36.180894],\n\t\t\t\t\t\t[-83.082312, 36.242296],\n\t\t\t\t\t\t[-82.936583, 36.334897],\n\t\t\t\t\t\t[-82.702566, 36.410412],\n\t\t\t\t\t\t[-82.629641, 36.411540],\n\t\t\t\t\t\t[-82.647769, 36.146404],\n\t\t\t\t\t\t[-82.595065, 36.096205]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47061\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"061\",\n\t\t\t\t\"NAME\": \"Grundy\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 360.534000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.607326, 35.531651],\n\t\t\t\t\t\t[-85.485635, 35.406433],\n\t\t\t\t\t\t[-85.558551, 35.319292],\n\t\t\t\t\t\t[-85.709418, 35.289251],\n\t\t\t\t\t\t[-85.740113, 35.215295],\n\t\t\t\t\t\t[-85.873025, 35.223362],\n\t\t\t\t\t\t[-85.874977, 35.227287],\n\t\t\t\t\t\t[-85.886750, 35.247379],\n\t\t\t\t\t\t[-85.893394, 35.257333],\n\t\t\t\t\t\t[-85.908120, 35.276522],\n\t\t\t\t\t\t[-85.913593, 35.289189],\n\t\t\t\t\t\t[-85.876962, 35.524095],\n\t\t\t\t\t\t[-85.607326, 35.531651]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27137\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"137\",\n\t\t\t\t\"NAME\": \"St. Louis\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 6247.401000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.191501, 46.672586],\n\t\t\t\t\t\t[-92.197145, 46.663408],\n\t\t\t\t\t\t[-92.202292, 46.655041],\n\t\t\t\t\t\t[-92.207092, 46.651941],\n\t\t\t\t\t\t[-92.212392, 46.649941],\n\t\t\t\t\t\t[-92.221731, 46.649724],\n\t\t\t\t\t\t[-92.222338, 46.649710],\n\t\t\t\t\t\t[-92.228155, 46.649574],\n\t\t\t\t\t\t[-92.231944, 46.649486],\n\t\t\t\t\t\t[-92.232647, 46.649470],\n\t\t\t\t\t\t[-92.234815, 46.649420],\n\t\t\t\t\t\t[-92.242493, 46.649241],\n\t\t\t\t\t\t[-92.250861, 46.650061],\n\t\t\t\t\t\t[-92.254379, 46.650405],\n\t\t\t\t\t\t[-92.256654, 46.650628],\n\t\t\t\t\t\t[-92.262503, 46.651201],\n\t\t\t\t\t\t[-92.264462, 46.651393],\n\t\t\t\t\t\t[-92.269948, 46.651930],\n\t\t\t\t\t\t[-92.274465, 46.654227],\n\t\t\t\t\t\t[-92.276373, 46.655198],\n\t\t\t\t\t\t[-92.277155, 46.655596],\n\t\t\t\t\t\t[-92.292192, 46.663242],\n\t\t\t\t\t\t[-92.301676, 46.764134],\n\t\t\t\t\t\t[-93.061529, 46.766550],\n\t\t\t\t\t\t[-93.055943, 47.026415],\n\t\t\t\t\t\t[-93.069500, 47.393915],\n\t\t\t\t\t\t[-93.061253, 47.720187],\n\t\t\t\t\t\t[-93.081158, 47.891870],\n\t\t\t\t\t\t[-93.096488, 48.067826],\n\t\t\t\t\t\t[-93.088438, 48.627597],\n\t\t\t\t\t\t[-92.980484, 48.624915],\n\t\t\t\t\t\t[-92.728046, 48.539290],\n\t\t\t\t\t\t[-92.657881, 48.546263],\n\t\t\t\t\t\t[-92.634931, 48.542873],\n\t\t\t\t\t\t[-92.625739, 48.518189],\n\t\t\t\t\t\t[-92.625151, 48.513048],\n\t\t\t\t\t\t[-92.625374, 48.512916],\n\t\t\t\t\t\t[-92.631117, 48.508252],\n\t\t\t\t\t\t[-92.631137, 48.508077],\n\t\t\t\t\t\t[-92.627237, 48.503383],\n\t\t\t\t\t\t[-92.636696, 48.499428],\n\t\t\t\t\t\t[-92.661418, 48.496557],\n\t\t\t\t\t\t[-92.684866, 48.497611],\n\t\t\t\t\t\t[-92.698824, 48.494892],\n\t\t\t\t\t\t[-92.712562, 48.463013],\n\t\t\t\t\t\t[-92.687998, 48.443889],\n\t\t\t\t\t\t[-92.656027, 48.436709],\n\t\t\t\t\t\t[-92.575636, 48.440827],\n\t\t\t\t\t\t[-92.537202, 48.447703],\n\t\t\t\t\t\t[-92.507285, 48.447875],\n\t\t\t\t\t\t[-92.456325, 48.414204],\n\t\t\t\t\t\t[-92.415121, 48.293841],\n\t\t\t\t\t\t[-92.384387, 48.242914],\n\t\t\t\t\t\t[-92.325304, 48.237030],\n\t\t\t\t\t\t[-92.295053, 48.276587],\n\t\t\t\t\t\t[-92.295668, 48.278118],\n\t\t\t\t\t\t[-92.301451, 48.288608],\n\t\t\t\t\t\t[-92.306309, 48.316442],\n\t\t\t\t\t\t[-92.304561, 48.322977],\n\t\t\t\t\t\t[-92.288994, 48.342991],\n\t\t\t\t\t\t[-92.262280, 48.354933],\n\t\t\t\t\t\t[-92.055228, 48.359213],\n\t\t\t\t\t\t[-92.030872, 48.325824],\n\t\t\t\t\t\t[-91.989545, 48.260214],\n\t\t\t\t\t\t[-91.977555, 48.247140],\n\t\t\t\t\t\t[-91.977486, 48.246340],\n\t\t\t\t\t\t[-91.954432, 48.251678],\n\t\t\t\t\t\t[-91.954397, 48.251199],\n\t\t\t\t\t\t[-91.907597, 48.238183],\n\t\t\t\t\t\t[-91.906967, 48.237770],\n\t\t\t\t\t\t[-91.867641, 48.218341],\n\t\t\t\t\t\t[-91.798268, 48.200086],\n\t\t\t\t\t\t[-91.799114, 47.732178],\n\t\t\t\t\t\t[-91.787928, 47.546817],\n\t\t\t\t\t\t[-91.794039, 46.939676],\n\t\t\t\t\t\t[-91.806851, 46.933727],\n\t\t\t\t\t\t[-91.826068, 46.927199],\n\t\t\t\t\t\t[-91.834852, 46.927135],\n\t\t\t\t\t\t[-91.841349, 46.925215],\n\t\t\t\t\t\t[-91.871286, 46.908352],\n\t\t\t\t\t\t[-91.883238, 46.905728],\n\t\t\t\t\t\t[-91.906483, 46.891236],\n\t\t\t\t\t\t[-91.914984, 46.883836],\n\t\t\t\t\t\t[-91.952985, 46.867037],\n\t\t\t\t\t\t[-91.985086, 46.849637],\n\t\t\t\t\t\t[-91.997987, 46.838737],\n\t\t\t\t\t\t[-92.013405, 46.833727],\n\t\t\t\t\t\t[-92.058888, 46.809938],\n\t\t\t\t\t\t[-92.062088, 46.804038],\n\t\t\t\t\t\t[-92.086089, 46.794339],\n\t\t\t\t\t\t[-92.094089, 46.787839],\n\t\t\t\t\t\t[-92.088289, 46.773639],\n\t\t\t\t\t\t[-92.064490, 46.745439],\n\t\t\t\t\t\t[-92.025789, 46.710839],\n\t\t\t\t\t\t[-92.015290, 46.706469],\n\t\t\t\t\t\t[-92.020289, 46.704039],\n\t\t\t\t\t\t[-92.024720, 46.705624],\n\t\t\t\t\t\t[-92.033990, 46.708939],\n\t\t\t\t\t\t[-92.089490, 46.749240],\n\t\t\t\t\t\t[-92.116590, 46.748640],\n\t\t\t\t\t\t[-92.170413, 46.725553],\n\t\t\t\t\t\t[-92.172997, 46.724444],\n\t\t\t\t\t\t[-92.189091, 46.717541],\n\t\t\t\t\t\t[-92.195321, 46.709626],\n\t\t\t\t\t\t[-92.196264, 46.703966],\n\t\t\t\t\t\t[-92.196435, 46.702938],\n\t\t\t\t\t\t[-92.196575, 46.702100],\n\t\t\t\t\t\t[-92.194562, 46.697672],\n\t\t\t\t\t\t[-92.194087, 46.696626],\n\t\t\t\t\t\t[-92.193439, 46.695202],\n\t\t\t\t\t\t[-92.187795, 46.690185],\n\t\t\t\t\t\t[-92.187592, 46.678941],\n\t\t\t\t\t\t[-92.191075, 46.673278],\n\t\t\t\t\t\t[-92.191501, 46.672586]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US23015\",\n\t\t\t\t\"STATE\": \"23\",\n\t\t\t\t\"COUNTY\": \"015\",\n\t\t\t\t\"NAME\": \"Lincoln\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 455.818000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-69.307908, 43.773767],\n\t\t\t\t\t\t\t[-69.306751, 43.775095],\n\t\t\t\t\t\t\t[-69.302995, 43.774591],\n\t\t\t\t\t\t\t[-69.300376, 43.772144],\n\t\t\t\t\t\t\t[-69.300818, 43.768599],\n\t\t\t\t\t\t\t[-69.314325, 43.756707],\n\t\t\t\t\t\t\t[-69.322559, 43.755883],\n\t\t\t\t\t\t\t[-69.323569, 43.758994],\n\t\t\t\t\t\t\t[-69.321141, 43.765763],\n\t\t\t\t\t\t\t[-69.313631, 43.772762],\n\t\t\t\t\t\t\t[-69.307908, 43.773767]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-69.427920, 43.928798],\n\t\t\t\t\t\t\t[-69.423323, 43.922871],\n\t\t\t\t\t\t\t[-69.422153, 43.917702],\n\t\t\t\t\t\t\t[-69.423324, 43.915507],\n\t\t\t\t\t\t\t[-69.438066, 43.909539],\n\t\t\t\t\t\t\t[-69.440913, 43.909767],\n\t\t\t\t\t\t\t[-69.441894, 43.916331],\n\t\t\t\t\t\t\t[-69.433762, 43.949353],\n\t\t\t\t\t\t\t[-69.429806, 43.948438],\n\t\t\t\t\t\t\t[-69.421072, 43.938261],\n\t\t\t\t\t\t\t[-69.427920, 43.928798]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-69.528223, 44.275447],\n\t\t\t\t\t\t\t[-69.321529, 44.172900],\n\t\t\t\t\t\t\t[-69.281839, 44.022532],\n\t\t\t\t\t\t\t[-69.321808, 43.969975],\n\t\t\t\t\t\t\t[-69.331411, 43.974311],\n\t\t\t\t\t\t\t[-69.351961, 43.974748],\n\t\t\t\t\t\t\t[-69.366702, 43.964755],\n\t\t\t\t\t\t\t[-69.375478, 43.964584],\n\t\t\t\t\t\t\t[-69.388059, 43.964340],\n\t\t\t\t\t\t\t[-69.398455, 43.971804],\n\t\t\t\t\t\t\t[-69.416165, 43.977267],\n\t\t\t\t\t\t\t[-69.428760, 43.957929],\n\t\t\t\t\t\t\t[-69.431686, 43.964546],\n\t\t\t\t\t\t\t[-69.436495, 43.966878],\n\t\t\t\t\t\t\t[-69.441596, 43.964254],\n\t\t\t\t\t\t\t[-69.451070, 43.941955],\n\t\t\t\t\t\t\t[-69.459637, 43.903316],\n\t\t\t\t\t\t\t[-69.483498, 43.880280],\n\t\t\t\t\t\t\t[-69.486243, 43.869118],\n\t\t\t\t\t\t\t[-69.503290, 43.837673],\n\t\t\t\t\t\t\t[-69.514889, 43.831298],\n\t\t\t\t\t\t\t[-69.516212, 43.837222],\n\t\t\t\t\t\t\t[-69.513267, 43.844790],\n\t\t\t\t\t\t\t[-69.520301, 43.868498],\n\t\t\t\t\t\t\t[-69.524673, 43.875639],\n\t\t\t\t\t\t\t[-69.543912, 43.881615],\n\t\t\t\t\t\t\t[-69.549450, 43.880012],\n\t\t\t\t\t\t\t[-69.550908, 43.877971],\n\t\t\t\t\t\t\t[-69.550616, 43.872579],\n\t\t\t\t\t\t\t[-69.545028, 43.861241],\n\t\t\t\t\t\t\t[-69.552606, 43.841347],\n\t\t\t\t\t\t\t[-69.558122, 43.840660],\n\t\t\t\t\t\t\t[-69.568325, 43.844449],\n\t\t\t\t\t\t\t[-69.572697, 43.844012],\n\t\t\t\t\t\t\t[-69.575466, 43.841972],\n\t\t\t\t\t\t\t[-69.578527, 43.823316],\n\t\t\t\t\t\t\t[-69.588551, 43.818360],\n\t\t\t\t\t\t\t[-69.604179, 43.813551],\n\t\t\t\t\t\t\t[-69.605928, 43.814862],\n\t\t\t\t\t\t\t[-69.604616, 43.825793],\n\t\t\t\t\t\t\t[-69.598495, 43.825502],\n\t\t\t\t\t\t\t[-69.592373, 43.830895],\n\t\t\t\t\t\t\t[-69.589167, 43.851299],\n\t\t\t\t\t\t\t[-69.594705, 43.858878],\n\t\t\t\t\t\t\t[-69.604616, 43.858004],\n\t\t\t\t\t\t\t[-69.613215, 43.845032],\n\t\t\t\t\t\t\t[-69.613069, 43.837453],\n\t\t\t\t\t\t\t[-69.615110, 43.831623],\n\t\t\t\t\t\t\t[-69.621086, 43.826814],\n\t\t\t\t\t\t\t[-69.630268, 43.837016],\n\t\t\t\t\t\t\t[-69.629685, 43.843429],\n\t\t\t\t\t\t\t[-69.634932, 43.845907],\n\t\t\t\t\t\t\t[-69.649798, 43.836287],\n\t\t\t\t\t\t\t[-69.653150, 43.817194],\n\t\t\t\t\t\t\t[-69.650818, 43.803785],\n\t\t\t\t\t\t\t[-69.653337, 43.791030],\n\t\t\t\t\t\t\t[-69.664922, 43.791033],\n\t\t\t\t\t\t\t[-69.685473, 43.816328],\n\t\t\t\t\t\t\t[-69.685579, 43.820546],\n\t\t\t\t\t\t\t[-69.692429, 43.824336],\n\t\t\t\t\t\t\t[-69.697239, 43.825065],\n\t\t\t\t\t\t\t[-69.697858, 43.824918],\n\t\t\t\t\t\t\t[-69.697236, 43.832721],\n\t\t\t\t\t\t\t[-69.689652, 43.843814],\n\t\t\t\t\t\t\t[-69.692076, 43.857175],\n\t\t\t\t\t\t\t[-69.743634, 43.893256],\n\t\t\t\t\t\t\t[-69.700097, 44.006685],\n\t\t\t\t\t\t\t[-69.813549, 44.026011],\n\t\t\t\t\t\t\t[-69.758208, 44.139334],\n\t\t\t\t\t\t\t[-69.666298, 44.124003],\n\t\t\t\t\t\t\t[-69.656742, 44.122392],\n\t\t\t\t\t\t\t[-69.656942, 44.125461],\n\t\t\t\t\t\t\t[-69.665441, 44.227576],\n\t\t\t\t\t\t\t[-69.650171, 44.279625],\n\t\t\t\t\t\t\t[-69.547398, 44.260988],\n\t\t\t\t\t\t\t[-69.542176, 44.262737],\n\t\t\t\t\t\t\t[-69.534837, 44.267363],\n\t\t\t\t\t\t\t[-69.534405, 44.272213],\n\t\t\t\t\t\t\t[-69.528223, 44.275447]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US23021\",\n\t\t\t\t\"STATE\": \"23\",\n\t\t\t\t\"COUNTY\": \"021\",\n\t\t\t\t\"NAME\": \"Piscataquis\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 3960.856000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-69.232021, 45.090166],\n\t\t\t\t\t\t[-69.355667, 45.073469],\n\t\t\t\t\t\t[-69.499861, 45.053778],\n\t\t\t\t\t\t[-69.620967, 45.010956],\n\t\t\t\t\t\t[-69.779928, 45.542766],\n\t\t\t\t\t\t[-69.691806, 45.645031],\n\t\t\t\t\t\t[-69.832818, 45.738734],\n\t\t\t\t\t\t[-69.784853, 45.785212],\n\t\t\t\t\t\t[-69.732579, 45.755978],\n\t\t\t\t\t\t[-69.705743, 45.853975],\n\t\t\t\t\t\t[-69.646755, 45.863163],\n\t\t\t\t\t\t[-69.683564, 45.983632],\n\t\t\t\t\t\t[-69.728577, 45.976882],\n\t\t\t\t\t\t[-69.732320, 46.394008],\n\t\t\t\t\t\t[-69.721109, 46.574053],\n\t\t\t\t\t\t[-68.821414, 46.572510],\n\t\t\t\t\t\t[-68.819401, 46.395782],\n\t\t\t\t\t\t[-68.827039, 45.684826],\n\t\t\t\t\t\t[-68.958910, 45.662195],\n\t\t\t\t\t\t[-68.964653, 45.512367],\n\t\t\t\t\t\t[-68.857297, 45.527301],\n\t\t\t\t\t\t[-68.800906, 45.329148],\n\t\t\t\t\t\t[-68.776061, 45.240317],\n\t\t\t\t\t\t[-68.880923, 45.224947],\n\t\t\t\t\t\t[-68.856587, 45.142783],\n\t\t\t\t\t\t[-69.232021, 45.090166]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US23023\",\n\t\t\t\t\"STATE\": \"23\",\n\t\t\t\t\"COUNTY\": \"023\",\n\t\t\t\t\"NAME\": \"Sagadahoc\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 253.695000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-70.051824, 43.990982],\n\t\t\t\t\t\t[-70.005471, 44.124519],\n\t\t\t\t\t\t[-69.897783, 44.107662],\n\t\t\t\t\t\t[-69.854983, 44.167862],\n\t\t\t\t\t\t[-69.763566, 44.153217],\n\t\t\t\t\t\t[-69.758208, 44.139334],\n\t\t\t\t\t\t[-69.813549, 44.026011],\n\t\t\t\t\t\t[-69.700097, 44.006685],\n\t\t\t\t\t\t[-69.743634, 43.893256],\n\t\t\t\t\t\t[-69.692076, 43.857175],\n\t\t\t\t\t\t[-69.689652, 43.843814],\n\t\t\t\t\t\t[-69.697236, 43.832721],\n\t\t\t\t\t\t[-69.697858, 43.824918],\n\t\t\t\t\t\t[-69.705838, 43.823024],\n\t\t\t\t\t\t[-69.714873, 43.810264],\n\t\t\t\t\t\t[-69.717804, 43.801047],\n\t\t\t\t\t\t[-69.717074, 43.792403],\n\t\t\t\t\t\t[-69.719723, 43.786685],\n\t\t\t\t\t\t[-69.752801, 43.755940],\n\t\t\t\t\t\t[-69.761587, 43.757000],\n\t\t\t\t\t\t[-69.780097, 43.755397],\n\t\t\t\t\t\t[-69.782429, 43.753794],\n\t\t\t\t\t\t[-69.782283, 43.751170],\n\t\t\t\t\t\t[-69.778494, 43.747089],\n\t\t\t\t\t\t[-69.778348, 43.744612],\n\t\t\t\t\t\t[-69.835323, 43.721125],\n\t\t\t\t\t\t[-69.838689, 43.705140],\n\t\t\t\t\t\t[-69.851297, 43.703581],\n\t\t\t\t\t\t[-69.855081, 43.704746],\n\t\t\t\t\t\t[-69.857927, 43.723915],\n\t\t\t\t\t\t[-69.855595, 43.732660],\n\t\t\t\t\t\t[-69.858947, 43.740531],\n\t\t\t\t\t\t[-69.868673, 43.742701],\n\t\t\t\t\t\t[-69.862155, 43.758962],\n\t\t\t\t\t\t[-69.869732, 43.775656],\n\t\t\t\t\t\t[-69.884066, 43.778035],\n\t\t\t\t\t\t[-69.887390, 43.777052],\n\t\t\t\t\t\t[-69.857032, 43.944742],\n\t\t\t\t\t\t[-69.976226, 43.915276],\n\t\t\t\t\t\t[-70.034238, 43.975661],\n\t\t\t\t\t\t[-70.036399, 43.978721],\n\t\t\t\t\t\t[-70.046586, 43.985642],\n\t\t\t\t\t\t[-70.047002, 43.988078],\n\t\t\t\t\t\t[-70.051824, 43.990982]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US23031\",\n\t\t\t\t\"STATE\": \"23\",\n\t\t\t\t\"COUNTY\": \"031\",\n\t\t\t\t\"NAME\": \"York\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 990.713000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-70.536702, 43.335605],\n\t\t\t\t\t\t[-70.553854, 43.321886],\n\t\t\t\t\t\t[-70.562779, 43.310614],\n\t\t\t\t\t\t[-70.585184, 43.270113],\n\t\t\t\t\t\t[-70.593907, 43.249295],\n\t\t\t\t\t\t[-70.591022, 43.237851],\n\t\t\t\t\t\t[-70.575787, 43.221859],\n\t\t\t\t\t\t[-70.576692, 43.217651],\n\t\t\t\t\t\t[-70.587814, 43.199858],\n\t\t\t\t\t\t[-70.618973, 43.163625],\n\t\t\t\t\t\t[-70.634455, 43.127603],\n\t\t\t\t\t\t[-70.634311, 43.122162],\n\t\t\t\t\t\t[-70.638355, 43.114182],\n\t\t\t\t\t\t[-70.654213, 43.099065],\n\t\t\t\t\t\t[-70.655322, 43.098008],\n\t\t\t\t\t\t[-70.656223, 43.093164],\n\t\t\t\t\t\t[-70.665958, 43.076234],\n\t\t\t\t\t\t[-70.673114, 43.070314],\n\t\t\t\t\t\t[-70.703936, 43.059621],\n\t\t\t\t\t\t[-70.756397, 43.079988],\n\t\t\t\t\t\t[-70.784108, 43.098963],\n\t\t\t\t\t\t[-70.819549, 43.123231],\n\t\t\t\t\t\t[-70.828100, 43.129086],\n\t\t\t\t\t\t[-70.833800, 43.146886],\n\t\t\t\t\t\t[-70.829174, 43.180365],\n\t\t\t\t\t\t[-70.828301, 43.186685],\n\t\t\t\t\t\t[-70.816232, 43.234997],\n\t\t\t\t\t\t[-70.817773, 43.237408],\n\t\t\t\t\t\t[-70.817865, 43.237911],\n\t\t\t\t\t\t[-70.822959, 43.240187],\n\t\t\t\t\t\t[-70.823309, 43.240343],\n\t\t\t\t\t\t[-70.825071, 43.240930],\n\t\t\t\t\t\t[-70.826711, 43.241301],\n\t\t\t\t\t\t[-70.828022, 43.241597],\n\t\t\t\t\t\t[-70.833650, 43.242868],\n\t\t\t\t\t\t[-70.839717, 43.250393],\n\t\t\t\t\t\t[-70.839213, 43.251224],\n\t\t\t\t\t\t[-70.863231, 43.265098],\n\t\t\t\t\t\t[-70.863230, 43.265109],\n\t\t\t\t\t\t[-70.909805, 43.306682],\n\t\t\t\t\t\t[-70.912460, 43.308289],\n\t\t\t\t\t\t[-70.916751, 43.317731],\n\t\t\t\t\t\t[-70.930783, 43.329569],\n\t\t\t\t\t\t[-70.952356, 43.333983],\n\t\t\t\t\t\t[-70.967229, 43.343777],\n\t\t\t\t\t\t[-70.984335, 43.376128],\n\t\t\t\t\t\t[-70.984305, 43.376814],\n\t\t\t\t\t\t[-70.987733, 43.391513],\n\t\t\t\t\t\t[-70.986812, 43.414264],\n\t\t\t\t\t\t[-70.964433, 43.473276],\n\t\t\t\t\t\t[-70.964542, 43.473262],\n\t\t\t\t\t\t[-70.963742, 43.476248],\n\t\t\t\t\t\t[-70.954755, 43.509802],\n\t\t\t\t\t\t[-70.962556, 43.534310],\n\t\t\t\t\t\t[-70.958958, 43.537634],\n\t\t\t\t\t\t[-70.955337, 43.540980],\n\t\t\t\t\t\t[-70.955346, 43.540697],\n\t\t\t\t\t\t[-70.953322, 43.552718],\n\t\t\t\t\t\t[-70.972716, 43.570255],\n\t\t\t\t\t\t[-70.979985, 43.673195],\n\t\t\t\t\t\t[-70.980758, 43.684141],\n\t\t\t\t\t\t[-70.981946, 43.700960],\n\t\t\t\t\t\t[-70.981978, 43.701965],\n\t\t\t\t\t\t[-70.982238, 43.711865],\n\t\t\t\t\t\t[-70.982083, 43.715043],\n\t\t\t\t\t\t[-70.989041, 43.792152],\n\t\t\t\t\t\t[-70.782984, 43.814147],\n\t\t\t\t\t\t[-70.652986, 43.787544],\n\t\t\t\t\t\t[-70.659622, 43.710902],\n\t\t\t\t\t\t[-70.549965, 43.715796],\n\t\t\t\t\t\t[-70.457743, 43.642372],\n\t\t\t\t\t\t[-70.492009, 43.606769],\n\t\t\t\t\t\t[-70.353392, 43.535405],\n\t\t\t\t\t\t[-70.361214, 43.529190],\n\t\t\t\t\t\t[-70.379123, 43.507202],\n\t\t\t\t\t\t[-70.384885, 43.496040],\n\t\t\t\t\t\t[-70.385615, 43.487031],\n\t\t\t\t\t\t[-70.382928, 43.469674],\n\t\t\t\t\t\t[-70.380233, 43.464230],\n\t\t\t\t\t\t[-70.372230, 43.455080],\n\t\t\t\t\t\t[-70.349684, 43.442032],\n\t\t\t\t\t\t[-70.362015, 43.439077],\n\t\t\t\t\t\t[-70.370514, 43.434133],\n\t\t\t\t\t\t[-70.384949, 43.418839],\n\t\t\t\t\t\t[-70.383981, 43.412940],\n\t\t\t\t\t\t[-70.390890, 43.402607],\n\t\t\t\t\t\t[-70.400035, 43.399927],\n\t\t\t\t\t\t[-70.401666, 43.401262],\n\t\t\t\t\t\t[-70.406416, 43.400942],\n\t\t\t\t\t\t[-70.421282, 43.395777],\n\t\t\t\t\t\t[-70.427672, 43.389254],\n\t\t\t\t\t\t[-70.424421, 43.379656],\n\t\t\t\t\t\t[-70.424986, 43.375928],\n\t\t\t\t\t\t[-70.442438, 43.356487],\n\t\t\t\t\t\t[-70.460717, 43.343250],\n\t\t\t\t\t\t[-70.465975, 43.340246],\n\t\t\t\t\t\t[-70.472933, 43.343972],\n\t\t\t\t\t\t[-70.485312, 43.346391],\n\t\t\t\t\t\t[-70.517695, 43.344037],\n\t\t\t\t\t\t[-70.535244, 43.336771],\n\t\t\t\t\t\t[-70.536702, 43.335605]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28041\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"041\",\n\t\t\t\t\"NAME\": \"Greene\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 712.755000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.834339, 30.997983],\n\t\t\t\t\t\t[-88.840929, 30.998410],\n\t\t\t\t\t\t[-88.841707, 31.433703],\n\t\t\t\t\t\t[-88.449446, 31.435837],\n\t\t\t\t\t\t[-88.448660, 31.421277],\n\t\t\t\t\t\t[-88.448686, 31.420888],\n\t\t\t\t\t\t[-88.445209, 31.355969],\n\t\t\t\t\t\t[-88.445182, 31.355855],\n\t\t\t\t\t\t[-88.438211, 31.231252],\n\t\t\t\t\t\t[-88.438104, 31.230060],\n\t\t\t\t\t\t[-88.432007, 31.114298],\n\t\t\t\t\t\t[-88.425807, 31.001123],\n\t\t\t\t\t\t[-88.425729, 31.000183],\n\t\t\t\t\t\t[-88.425635, 30.998301],\n\t\t\t\t\t\t[-88.809328, 30.997379],\n\t\t\t\t\t\t[-88.834339, 30.997983]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31149\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"149\",\n\t\t\t\t\"NAME\": \"Rock\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1008.318000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.257039, 42.804296],\n\t\t\t\t\t\t[-99.245803, 42.782499],\n\t\t\t\t\t\t[-99.234629, 42.087995],\n\t\t\t\t\t\t[-99.662379, 42.086009],\n\t\t\t\t\t\t[-99.677684, 42.730903],\n\t\t\t\t\t\t[-99.537491, 42.717626],\n\t\t\t\t\t\t[-99.257039, 42.804296]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31151\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"151\",\n\t\t\t\t\"NAME\": \"Saline\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 574.018000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.913493, 40.697948],\n\t\t\t\t\t\t[-96.912637, 40.523625],\n\t\t\t\t\t\t[-96.913346, 40.351192],\n\t\t\t\t\t\t[-96.915083, 40.349734],\n\t\t\t\t\t\t[-97.368688, 40.350392],\n\t\t\t\t\t\t[-97.368401, 40.698625],\n\t\t\t\t\t\t[-96.913493, 40.697948]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31155\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"155\",\n\t\t\t\t\"NAME\": \"Saunders\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 750.234000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.905862, 41.453389],\n\t\t\t\t\t\t[-96.570351, 41.433426],\n\t\t\t\t\t\t[-96.470720, 41.393239],\n\t\t\t\t\t\t[-96.350598, 41.265192],\n\t\t\t\t\t\t[-96.327399, 41.189999],\n\t\t\t\t\t\t[-96.319191, 41.044998],\n\t\t\t\t\t\t[-96.463861, 41.016069],\n\t\t\t\t\t\t[-96.463869, 41.045083],\n\t\t\t\t\t\t[-96.908507, 41.046091],\n\t\t\t\t\t\t[-96.905862, 41.453389]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31161\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"161\",\n\t\t\t\t\"NAME\": \"Sheridan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2440.862000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-102.792111, 42.999980],\n\t\t\t\t\t\t[-102.487329, 42.999559],\n\t\t\t\t\t\t[-102.440547, 42.999609],\n\t\t\t\t\t\t[-102.082546, 42.999356],\n\t\t\t\t\t\t[-102.066689, 42.443463],\n\t\t\t\t\t\t[-102.038169, 42.443307],\n\t\t\t\t\t\t[-102.040280, 42.096744],\n\t\t\t\t\t\t[-102.006204, 42.096338],\n\t\t\t\t\t\t[-102.008562, 42.008901],\n\t\t\t\t\t\t[-102.066650, 42.009195],\n\t\t\t\t\t\t[-102.677582, 42.005282],\n\t\t\t\t\t\t[-102.697835, 42.004843],\n\t\t\t\t\t\t[-102.742269, 42.092388],\n\t\t\t\t\t\t[-102.749431, 42.439934],\n\t\t\t\t\t\t[-102.773366, 42.439922],\n\t\t\t\t\t\t[-102.773369, 42.785265],\n\t\t\t\t\t\t[-102.792111, 42.999980]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31169\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"169\",\n\t\t\t\t\"NAME\": \"Thayer\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 573.807000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.415833, 40.002001],\n\t\t\t\t\t\t[-97.417826, 40.002024],\n\t\t\t\t\t\t[-97.425443, 40.002048],\n\t\t\t\t\t\t[-97.444662, 40.001958],\n\t\t\t\t\t\t[-97.463285, 40.002047],\n\t\t\t\t\t\t[-97.510264, 40.001835],\n\t\t\t\t\t\t[-97.511381, 40.001899],\n\t\t\t\t\t\t[-97.515308, 40.001901],\n\t\t\t\t\t\t[-97.767746, 40.001994],\n\t\t\t\t\t\t[-97.769204, 40.001995],\n\t\t\t\t\t\t[-97.770776, 40.001977],\n\t\t\t\t\t\t[-97.777155, 40.002167],\n\t\t\t\t\t\t[-97.819426, 40.001958],\n\t\t\t\t\t\t[-97.821496, 40.002002],\n\t\t\t\t\t\t[-97.820816, 40.350545],\n\t\t\t\t\t\t[-97.370694, 40.350312],\n\t\t\t\t\t\t[-97.368688, 40.350392],\n\t\t\t\t\t\t[-97.369199, 40.002060],\n\t\t\t\t\t\t[-97.369199, 40.002060],\n\t\t\t\t\t\t[-97.415833, 40.002001]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31173\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"173\",\n\t\t\t\t\"NAME\": \"Thurston\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 393.584000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.822497, 42.264292],\n\t\t\t\t\t\t[-96.726188, 42.264104],\n\t\t\t\t\t\t[-96.726661, 42.278005],\n\t\t\t\t\t\t[-96.348814, 42.282024],\n\t\t\t\t\t\t[-96.328905, 42.254734],\n\t\t\t\t\t\t[-96.322868, 42.233637],\n\t\t\t\t\t\t[-96.323723, 42.229887],\n\t\t\t\t\t\t[-96.336323, 42.218922],\n\t\t\t\t\t\t[-96.356591, 42.215182],\n\t\t\t\t\t\t[-96.356666, 42.215077],\n\t\t\t\t\t\t[-96.359870, 42.210545],\n\t\t\t\t\t\t[-96.349688, 42.172043],\n\t\t\t\t\t\t[-96.344121, 42.162091],\n\t\t\t\t\t\t[-96.307421, 42.130707],\n\t\t\t\t\t\t[-96.279079, 42.074026],\n\t\t\t\t\t\t[-96.272877, 42.047238],\n\t\t\t\t\t\t[-96.309645, 42.015187],\n\t\t\t\t\t\t[-96.554866, 42.015875],\n\t\t\t\t\t\t[-96.555511, 42.089957],\n\t\t\t\t\t\t[-96.823670, 42.090411],\n\t\t\t\t\t\t[-96.822497, 42.264292]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31181\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"181\",\n\t\t\t\t\"NAME\": \"Webster\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 574.913000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.523053, 40.002336],\n\t\t\t\t\t\t[-98.543186, 40.002285],\n\t\t\t\t\t\t[-98.560578, 40.002274],\n\t\t\t\t\t\t[-98.575219, 40.002480],\n\t\t\t\t\t\t[-98.593342, 40.002476],\n\t\t\t\t\t\t[-98.613755, 40.002400],\n\t\t\t\t\t\t[-98.640710, 40.002493],\n\t\t\t\t\t\t[-98.652494, 40.002245],\n\t\t\t\t\t\t[-98.653833, 40.002269],\n\t\t\t\t\t\t[-98.669724, 40.002410],\n\t\t\t\t\t\t[-98.672819, 40.002364],\n\t\t\t\t\t\t[-98.690287, 40.002548],\n\t\t\t\t\t\t[-98.691443, 40.002505],\n\t\t\t\t\t\t[-98.693096, 40.002373],\n\t\t\t\t\t\t[-98.710404, 40.002180],\n\t\t\t\t\t\t[-98.726295, 40.002222],\n\t\t\t\t\t\t[-98.726373, 40.002222],\n\t\t\t\t\t\t[-98.726827, 40.350398],\n\t\t\t\t\t\t[-98.723948, 40.350391],\n\t\t\t\t\t\t[-98.278090, 40.350347],\n\t\t\t\t\t\t[-98.273571, 40.350359],\n\t\t\t\t\t\t[-98.273776, 40.005385],\n\t\t\t\t\t\t[-98.274017, 40.002516],\n\t\t\t\t\t\t[-98.490533, 40.002323],\n\t\t\t\t\t\t[-98.504455, 40.002329],\n\t\t\t\t\t\t[-98.523053, 40.002336]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US32005\",\n\t\t\t\t\"STATE\": \"32\",\n\t\t\t\t\"COUNTY\": \"005\",\n\t\t\t\t\"NAME\": \"Douglas\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 709.719000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-119.551020, 39.085791],\n\t\t\t\t\t\t[-119.311714, 39.083615],\n\t\t\t\t\t\t[-119.310702, 38.990719],\n\t\t\t\t\t\t[-119.401648, 38.983323],\n\t\t\t\t\t\t[-119.439534, 38.882001],\n\t\t\t\t\t\t[-119.403908, 38.809111],\n\t\t\t\t\t\t[-119.406279, 38.733362],\n\t\t\t\t\t\t[-119.349884, 38.729193],\n\t\t\t\t\t\t[-119.328498, 38.534648],\n\t\t\t\t\t\t[-119.450623, 38.619965],\n\t\t\t\t\t\t[-119.450612, 38.619964],\n\t\t\t\t\t\t[-119.494022, 38.649734],\n\t\t\t\t\t\t[-119.494183, 38.649852],\n\t\t\t\t\t\t[-119.585437, 38.713212],\n\t\t\t\t\t\t[-119.587066, 38.714345],\n\t\t\t\t\t\t[-119.587679, 38.714734],\n\t\t\t\t\t\t[-119.904315, 38.933324],\n\t\t\t\t\t\t[-120.001014, 38.999574],\n\t\t\t\t\t\t[-120.002461, 39.067489],\n\t\t\t\t\t\t[-120.003402, 39.112687],\n\t\t\t\t\t\t[-119.761213, 39.114009],\n\t\t\t\t\t\t[-119.752116, 39.084904],\n\t\t\t\t\t\t[-119.551020, 39.085791]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US32007\",\n\t\t\t\t\"STATE\": \"32\",\n\t\t\t\t\"COUNTY\": \"007\",\n\t\t\t\t\"NAME\": \"Elko\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 17169.834000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-114.041723, 41.993720],\n\t\t\t\t\t\t[-114.041107, 41.850573],\n\t\t\t\t\t\t[-114.041152, 41.850595],\n\t\t\t\t\t\t[-114.039882, 41.741991],\n\t\t\t\t\t\t[-114.042145, 40.999926],\n\t\t\t\t\t\t[-114.043803, 40.759205],\n\t\t\t\t\t\t[-114.043831, 40.758666],\n\t\t\t\t\t\t[-114.043505, 40.726292],\n\t\t\t\t\t\t[-114.045281, 40.506586],\n\t\t\t\t\t\t[-114.045577, 40.495801],\n\t\t\t\t\t\t[-114.045518, 40.494474],\n\t\t\t\t\t\t[-114.046555, 40.116931],\n\t\t\t\t\t\t[-115.263729, 40.122543],\n\t\t\t\t\t\t[-115.834969, 40.127842],\n\t\t\t\t\t\t[-116.000897, 40.127376],\n\t\t\t\t\t\t[-116.157834, 40.666389],\n\t\t\t\t\t\t[-116.158155, 40.999912],\n\t\t\t\t\t\t[-116.586786, 41.000398],\n\t\t\t\t\t\t[-117.018419, 41.000254],\n\t\t\t\t\t\t[-117.018294, 41.999358],\n\t\t\t\t\t\t[-116.626770, 41.997750],\n\t\t\t\t\t\t[-116.586937, 41.997370],\n\t\t\t\t\t\t[-116.510452, 41.997096],\n\t\t\t\t\t\t[-116.485823, 41.996861],\n\t\t\t\t\t\t[-116.483094, 41.996885],\n\t\t\t\t\t\t[-116.463528, 41.996547],\n\t\t\t\t\t\t[-116.163931, 41.997555],\n\t\t\t\t\t\t[-116.160833, 41.997508],\n\t\t\t\t\t\t[-116.038602, 41.997460],\n\t\t\t\t\t\t[-116.038570, 41.997413],\n\t\t\t\t\t\t[-116.030754, 41.997399],\n\t\t\t\t\t\t[-116.030758, 41.997383],\n\t\t\t\t\t\t[-116.018960, 41.997762],\n\t\t\t\t\t\t[-116.018945, 41.997722],\n\t\t\t\t\t\t[-116.012219, 41.998048],\n\t\t\t\t\t\t[-116.012212, 41.998035],\n\t\t\t\t\t\t[-115.986880, 41.998534],\n\t\t\t\t\t\t[-115.038256, 41.996025],\n\t\t\t\t\t\t[-115.031783, 41.996008],\n\t\t\t\t\t\t[-114.914187, 41.999909],\n\t\t\t\t\t\t[-114.763825, 41.999909],\n\t\t\t\t\t\t[-114.598267, 41.994511],\n\t\t\t\t\t\t[-114.498259, 41.994599],\n\t\t\t\t\t\t[-114.498243, 41.994636],\n\t\t\t\t\t\t[-114.281854, 41.994264],\n\t\t\t\t\t\t[-114.107428, 41.993965],\n\t\t\t\t\t\t[-114.107259, 41.993831],\n\t\t\t\t\t\t[-114.061763, 41.993939],\n\t\t\t\t\t\t[-114.061774, 41.993797],\n\t\t\t\t\t\t[-114.048257, 41.993814],\n\t\t\t\t\t\t[-114.048246, 41.993721],\n\t\t\t\t\t\t[-114.041723, 41.993720]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US32013\",\n\t\t\t\t\"STATE\": \"32\",\n\t\t\t\t\"COUNTY\": \"013\",\n\t\t\t\t\"NAME\": \"Humboldt\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 9640.757000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-118.777228, 41.992671],\n\t\t\t\t\t\t[-118.775869, 41.992692],\n\t\t\t\t\t\t[-118.197189, 41.996995],\n\t\t\t\t\t\t[-117.026222, 42.000252],\n\t\t\t\t\t\t[-117.018294, 41.999358],\n\t\t\t\t\t\t[-117.018419, 41.000254],\n\t\t\t\t\t\t[-117.018664, 40.643035],\n\t\t\t\t\t\t[-117.246788, 40.642445],\n\t\t\t\t\t\t[-117.300597, 40.526136],\n\t\t\t\t\t\t[-117.301168, 40.682348],\n\t\t\t\t\t\t[-117.644399, 40.684343],\n\t\t\t\t\t\t[-117.644220, 40.857824],\n\t\t\t\t\t\t[-118.786738, 40.855929],\n\t\t\t\t\t\t[-118.786705, 40.960850],\n\t\t\t\t\t\t[-119.309598, 40.960378],\n\t\t\t\t\t\t[-119.329791, 40.960394],\n\t\t\t\t\t\t[-119.331068, 41.235118],\n\t\t\t\t\t\t[-119.305713, 41.234542],\n\t\t\t\t\t\t[-119.304635, 41.414695],\n\t\t\t\t\t\t[-119.323955, 41.414519],\n\t\t\t\t\t\t[-119.324182, 41.994278],\n\t\t\t\t\t\t[-118.777228, 41.992671]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US32017\",\n\t\t\t\t\"STATE\": \"32\",\n\t\t\t\t\"COUNTY\": \"017\",\n\t\t\t\t\"NAME\": \"Lincoln\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 10633.202000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-114.049893, 38.677365],\n\t\t\t\t\t\t[-114.050154, 38.572920],\n\t\t\t\t\t\t[-114.049862, 38.547764],\n\t\t\t\t\t\t[-114.049834, 38.543784],\n\t\t\t\t\t\t[-114.050091, 38.404673],\n\t\t\t\t\t\t[-114.050120, 38.404536],\n\t\t\t\t\t\t[-114.049903, 38.148601],\n\t\t\t\t\t\t[-114.050423, 37.999961],\n\t\t\t\t\t\t[-114.048473, 37.809861],\n\t\t\t\t\t\t[-114.051109, 37.756276],\n\t\t\t\t\t\t[-114.051670, 37.746958],\n\t\t\t\t\t\t[-114.051785, 37.746249],\n\t\t\t\t\t\t[-114.051728, 37.745997],\n\t\t\t\t\t\t[-114.052472, 37.604776],\n\t\t\t\t\t\t[-114.052689, 37.517859],\n\t\t\t\t\t\t[-114.052718, 37.517264],\n\t\t\t\t\t\t[-114.052685, 37.502513],\n\t\t\t\t\t\t[-114.052701, 37.492014],\n\t\t\t\t\t\t[-114.051927, 37.370734],\n\t\t\t\t\t\t[-114.051927, 37.370459],\n\t\t\t\t\t\t[-114.051800, 37.293548],\n\t\t\t\t\t\t[-114.051800, 37.293044],\n\t\t\t\t\t\t[-114.051974, 37.284511],\n\t\t\t\t\t\t[-114.051974, 37.283848],\n\t\t\t\t\t\t[-114.051822, 37.090976],\n\t\t\t\t\t\t[-114.051749, 37.088434],\n\t\t\t\t\t\t[-114.050600, 37.000396],\n\t\t\t\t\t\t[-114.050583, 36.843141],\n\t\t\t\t\t\t[-114.762301, 36.843856],\n\t\t\t\t\t\t[-114.762507, 36.853473],\n\t\t\t\t\t\t[-115.740846, 36.853084],\n\t\t\t\t\t\t[-115.896925, 36.842085],\n\t\t\t\t\t\t[-115.894460, 36.861717],\n\t\t\t\t\t\t[-115.893857, 38.050531],\n\t\t\t\t\t\t[-115.000846, 38.050757],\n\t\t\t\t\t\t[-115.000846, 38.677322],\n\t\t\t\t\t\t[-114.049893, 38.677365]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US32023\",\n\t\t\t\t\"STATE\": \"32\",\n\t\t\t\t\"COUNTY\": \"023\",\n\t\t\t\t\"NAME\": \"Nye\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 18181.924000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-115.845805, 36.120242],\n\t\t\t\t\t\t[-115.846080, 35.963596],\n\t\t\t\t\t\t[-115.892975, 35.999967],\n\t\t\t\t\t\t[-115.912858, 36.015359],\n\t\t\t\t\t\t[-116.093601, 36.155805],\n\t\t\t\t\t\t[-116.097216, 36.158346],\n\t\t\t\t\t\t[-116.488233, 36.459097],\n\t\t\t\t\t\t[-117.000895, 36.847694],\n\t\t\t\t\t\t[-117.166187, 36.970862],\n\t\t\t\t\t\t[-117.165612, 38.001692],\n\t\t\t\t\t\t[-117.219264, 38.050348],\n\t\t\t\t\t\t[-117.241063, 38.050116],\n\t\t\t\t\t\t[-117.240910, 38.069902],\n\t\t\t\t\t\t[-117.691021, 38.473797],\n\t\t\t\t\t\t[-118.196235, 38.919058],\n\t\t\t\t\t\t[-118.196274, 38.999926],\n\t\t\t\t\t\t[-117.865116, 39.073654],\n\t\t\t\t\t\t[-117.775468, 39.093425],\n\t\t\t\t\t\t[-117.331857, 39.163430],\n\t\t\t\t\t\t[-116.600946, 39.161463],\n\t\t\t\t\t\t[-115.907071, 39.161848],\n\t\t\t\t\t\t[-115.601585, 38.999933],\n\t\t\t\t\t\t[-115.000846, 38.677322],\n\t\t\t\t\t\t[-115.000846, 38.050757],\n\t\t\t\t\t\t[-115.893857, 38.050531],\n\t\t\t\t\t\t[-115.894460, 36.861717],\n\t\t\t\t\t\t[-115.896925, 36.842085],\n\t\t\t\t\t\t[-115.895368, 36.580168],\n\t\t\t\t\t\t[-115.895753, 36.172227],\n\t\t\t\t\t\t[-115.845762, 36.170764],\n\t\t\t\t\t\t[-115.845795, 36.123963],\n\t\t\t\t\t\t[-115.844505, 36.122179],\n\t\t\t\t\t\t[-115.845809, 36.121389],\n\t\t\t\t\t\t[-115.845805, 36.120242]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US23011\",\n\t\t\t\t\"STATE\": \"23\",\n\t\t\t\t\"COUNTY\": \"011\",\n\t\t\t\t\"NAME\": \"Kennebec\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 867.524000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-69.792813, 44.577330],\n\t\t\t\t\t\t[-69.776294, 44.608236],\n\t\t\t\t\t\t[-69.744282, 44.602607],\n\t\t\t\t\t\t[-69.742091, 44.598246],\n\t\t\t\t\t\t[-69.605746, 44.577264],\n\t\t\t\t\t\t[-69.579094, 44.626971],\n\t\t\t\t\t\t[-69.628480, 44.671969],\n\t\t\t\t\t\t[-69.632971, 44.698763],\n\t\t\t\t\t\t[-69.471712, 44.692899],\n\t\t\t\t\t\t[-69.475599, 44.676678],\n\t\t\t\t\t\t[-69.442936, 44.672381],\n\t\t\t\t\t\t[-69.460558, 44.655611],\n\t\t\t\t\t\t[-69.460606, 44.647054],\n\t\t\t\t\t\t[-69.393123, 44.640375],\n\t\t\t\t\t\t[-69.395987, 44.457078],\n\t\t\t\t\t\t[-69.435400, 44.462422],\n\t\t\t\t\t\t[-69.445498, 44.463839],\n\t\t\t\t\t\t[-69.506382, 44.342870],\n\t\t\t\t\t\t[-69.521258, 44.280683],\n\t\t\t\t\t\t[-69.528223, 44.275447],\n\t\t\t\t\t\t[-69.534405, 44.272213],\n\t\t\t\t\t\t[-69.534837, 44.267363],\n\t\t\t\t\t\t[-69.542176, 44.262737],\n\t\t\t\t\t\t[-69.547398, 44.260988],\n\t\t\t\t\t\t[-69.650171, 44.279625],\n\t\t\t\t\t\t[-69.665441, 44.227576],\n\t\t\t\t\t\t[-69.656942, 44.125461],\n\t\t\t\t\t\t[-69.656742, 44.122392],\n\t\t\t\t\t\t[-69.666298, 44.124003],\n\t\t\t\t\t\t[-69.758208, 44.139334],\n\t\t\t\t\t\t[-69.763566, 44.153217],\n\t\t\t\t\t\t[-69.854983, 44.167862],\n\t\t\t\t\t\t[-69.897783, 44.107662],\n\t\t\t\t\t\t[-70.005471, 44.124519],\n\t\t\t\t\t\t[-70.027386, 44.130577],\n\t\t\t\t\t\t[-70.010329, 44.168651],\n\t\t\t\t\t\t[-69.993792, 44.180594],\n\t\t\t\t\t\t[-70.075747, 44.206168],\n\t\t\t\t\t\t[-70.074260, 44.290154],\n\t\t\t\t\t\t[-70.100491, 44.383854],\n\t\t\t\t\t\t[-70.129390, 44.487217],\n\t\t\t\t\t\t[-70.042350, 44.485235],\n\t\t\t\t\t\t[-70.030536, 44.508786],\n\t\t\t\t\t\t[-69.944082, 44.537828],\n\t\t\t\t\t\t[-69.930451, 44.610852],\n\t\t\t\t\t\t[-69.792813, 44.577330]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39105\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"105\",\n\t\t\t\t\"NAME\": \"Meigs\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 430.098000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.749689, 39.180742],\n\t\t\t\t\t\t[-81.747253, 39.095379],\n\t\t\t\t\t\t[-81.747253, 39.095378],\n\t\t\t\t\t\t[-81.812355, 39.082078],\n\t\t\t\t\t\t[-81.814155, 39.073478],\n\t\t\t\t\t\t[-81.811655, 39.059578],\n\t\t\t\t\t\t[-81.803355, 39.047678],\n\t\t\t\t\t\t[-81.793304, 39.040353],\n\t\t\t\t\t\t[-81.772854, 39.026179],\n\t\t\t\t\t\t[-81.764253, 39.015279],\n\t\t\t\t\t\t[-81.756131, 38.933545],\n\t\t\t\t\t\t[-81.759995, 38.925828],\n\t\t\t\t\t\t[-81.874857, 38.881174],\n\t\t\t\t\t\t[-81.908645, 38.878460],\n\t\t\t\t\t\t[-81.926967, 38.891602],\n\t\t\t\t\t\t[-81.928352, 38.895371],\n\t\t\t\t\t\t[-81.926671, 38.901311],\n\t\t\t\t\t\t[-81.900910, 38.924338],\n\t\t\t\t\t\t[-81.898470, 38.929603],\n\t\t\t\t\t\t[-81.900595, 38.937671],\n\t\t\t\t\t\t[-81.919783, 38.968494],\n\t\t\t\t\t\t[-81.935619, 38.989500],\n\t\t\t\t\t\t[-82.002261, 39.027878],\n\t\t\t\t\t\t[-82.017562, 39.030078],\n\t\t\t\t\t\t[-82.035963, 39.025478],\n\t\t\t\t\t\t[-82.041563, 39.017878],\n\t\t\t\t\t\t[-82.045663, 39.003778],\n\t\t\t\t\t\t[-82.051563, 38.994378],\n\t\t\t\t\t\t[-82.093165, 38.970980],\n\t\t\t\t\t\t[-82.098762, 38.958288],\n\t\t\t\t\t\t[-82.095465, 39.002778],\n\t\t\t\t\t\t[-82.322874, 39.027674],\n\t\t\t\t\t\t[-82.306669, 39.205494],\n\t\t\t\t\t\t[-82.268583, 39.203760],\n\t\t\t\t\t\t[-81.749689, 39.180742]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39107\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"107\",\n\t\t\t\t\"NAME\": \"Mercer\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 462.449000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.455713, 40.567888],\n\t\t\t\t\t\t[-84.455418, 40.358589],\n\t\t\t\t\t\t[-84.434387, 40.354534],\n\t\t\t\t\t\t[-84.431632, 40.354198],\n\t\t\t\t\t\t[-84.434631, 40.354259],\n\t\t\t\t\t\t[-84.804119, 40.352757],\n\t\t\t\t\t\t[-84.804119, 40.352844],\n\t\t\t\t\t\t[-84.803068, 40.465388],\n\t\t\t\t\t\t[-84.802483, 40.528046],\n\t\t\t\t\t\t[-84.802265, 40.572212],\n\t\t\t\t\t\t[-84.802265, 40.572215],\n\t\t\t\t\t\t[-84.802135, 40.644859],\n\t\t\t\t\t\t[-84.802193, 40.660298],\n\t\t\t\t\t\t[-84.802220, 40.674776],\n\t\t\t\t\t\t[-84.802157, 40.689324],\n\t\t\t\t\t\t[-84.802127, 40.691405],\n\t\t\t\t\t\t[-84.802094, 40.702476],\n\t\t\t\t\t\t[-84.802181, 40.718602],\n\t\t\t\t\t\t[-84.802119, 40.728146],\n\t\t\t\t\t\t[-84.456172, 40.728306],\n\t\t\t\t\t\t[-84.456180, 40.684862],\n\t\t\t\t\t\t[-84.455713, 40.567888]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39117\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"117\",\n\t\t\t\t\"NAME\": \"Morrow\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 406.079000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.727164, 40.711203],\n\t\t\t\t\t\t[-82.627191, 40.709416],\n\t\t\t\t\t\t[-82.623609, 40.549879],\n\t\t\t\t\t\t[-82.646503, 40.345076],\n\t\t\t\t\t\t[-82.744931, 40.349603],\n\t\t\t\t\t\t[-82.929588, 40.358123],\n\t\t\t\t\t\t[-82.924781, 40.415004],\n\t\t\t\t\t\t[-83.020798, 40.433795],\n\t\t\t\t\t\t[-82.958401, 40.490664],\n\t\t\t\t\t\t[-82.957817, 40.645148],\n\t\t\t\t\t\t[-82.859753, 40.646395],\n\t\t\t\t\t\t[-82.858302, 40.705019],\n\t\t\t\t\t\t[-82.727164, 40.711203]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39119\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"119\",\n\t\t\t\t\"NAME\": \"Muskingum\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 664.579000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.076639, 39.770960],\n\t\t\t\t\t\t[-82.072934, 39.816227],\n\t\t\t\t\t\t[-82.170047, 39.820750],\n\t\t\t\t\t\t[-82.162372, 39.909374],\n\t\t\t\t\t\t[-82.233974, 39.913260],\n\t\t\t\t\t\t[-82.198772, 39.950140],\n\t\t\t\t\t\t[-82.187105, 40.166880],\n\t\t\t\t\t\t[-81.716868, 40.152863],\n\t\t\t\t\t\t[-81.716276, 40.152166],\n\t\t\t\t\t\t[-81.728611, 39.931728],\n\t\t\t\t\t\t[-81.694146, 39.842636],\n\t\t\t\t\t\t[-81.697442, 39.755572],\n\t\t\t\t\t\t[-82.076639, 39.770960]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39125\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"125\",\n\t\t\t\t\"NAME\": \"Paulding\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 416.438000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.341602, 41.165524],\n\t\t\t\t\t\t[-84.341911, 40.990692],\n\t\t\t\t\t\t[-84.399486, 40.990315],\n\t\t\t\t\t\t[-84.803313, 40.989394],\n\t\t\t\t\t\t[-84.803374, 41.089302],\n\t\t\t\t\t\t[-84.803378, 41.096867],\n\t\t\t\t\t\t[-84.803413, 41.164649],\n\t\t\t\t\t\t[-84.803594, 41.173203],\n\t\t\t\t\t\t[-84.803472, 41.173889],\n\t\t\t\t\t\t[-84.803492, 41.252531],\n\t\t\t\t\t\t[-84.803492, 41.252562],\n\t\t\t\t\t\t[-84.457217, 41.253485],\n\t\t\t\t\t\t[-84.457059, 41.209434],\n\t\t\t\t\t\t[-84.341878, 41.209197],\n\t\t\t\t\t\t[-84.341602, 41.165524]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39129\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"129\",\n\t\t\t\t\"NAME\": \"Pickaway\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 501.320000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.740729, 39.468350],\n\t\t\t\t\t\t[-82.998204, 39.480061],\n\t\t\t\t\t\t[-82.984560, 39.506754],\n\t\t\t\t\t\t[-83.266737, 39.516249],\n\t\t\t\t\t\t[-83.252435, 39.695438],\n\t\t\t\t\t\t[-83.243702, 39.812503],\n\t\t\t\t\t\t[-83.013071, 39.804394],\n\t\t\t\t\t\t[-82.824254, 39.794996],\n\t\t\t\t\t\t[-82.842953, 39.561480],\n\t\t\t\t\t\t[-82.731518, 39.554445],\n\t\t\t\t\t\t[-82.740729, 39.468350]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39133\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"133\",\n\t\t\t\t\"NAME\": \"Portage\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 487.381000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.393429, 40.988528],\n\t\t\t\t\t\t[-81.392114, 41.135722],\n\t\t\t\t\t\t[-81.392357, 41.136952],\n\t\t\t\t\t\t[-81.391831, 41.276654],\n\t\t\t\t\t\t[-81.391593, 41.331550],\n\t\t\t\t\t\t[-81.391933, 41.336635],\n\t\t\t\t\t\t[-81.391686, 41.341300],\n\t\t\t\t\t\t[-81.391694, 41.348272],\n\t\t\t\t\t\t[-81.003319, 41.347860],\n\t\t\t\t\t\t[-81.002880, 41.271842],\n\t\t\t\t\t\t[-81.002290, 41.134189],\n\t\t\t\t\t\t[-81.001695, 40.987783],\n\t\t\t\t\t\t[-81.086817, 40.988158],\n\t\t\t\t\t\t[-81.393429, 40.988528]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39135\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"135\",\n\t\t\t\t\"NAME\": \"Preble\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 424.120000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.814189, 39.785569],\n\t\t\t\t\t\t[-84.814179, 39.786853],\n\t\t\t\t\t\t[-84.814209, 39.799755],\n\t\t\t\t\t\t[-84.814120, 39.811398],\n\t\t\t\t\t\t[-84.814179, 39.814212],\n\t\t\t\t\t\t[-84.813852, 39.824621],\n\t\t\t\t\t\t[-84.813793, 39.826771],\n\t\t\t\t\t\t[-84.813703, 39.843059],\n\t\t\t\t\t\t[-84.813674, 39.843173],\n\t\t\t\t\t\t[-84.813549, 39.850773],\n\t\t\t\t\t\t[-84.813464, 39.853261],\n\t\t\t\t\t\t[-84.813050, 39.872958],\n\t\t\t\t\t\t[-84.812787, 39.890830],\n\t\t\t\t\t\t[-84.812698, 39.891585],\n\t\t\t\t\t\t[-84.812411, 39.916915],\n\t\t\t\t\t\t[-84.485367, 39.918491],\n\t\t\t\t\t\t[-84.479213, 39.591024],\n\t\t\t\t\t\t[-84.478927, 39.568790],\n\t\t\t\t\t\t[-84.815036, 39.567695],\n\t\t\t\t\t\t[-84.815156, 39.568351],\n\t\t\t\t\t\t[-84.814705, 39.628854],\n\t\t\t\t\t\t[-84.814619, 39.669174],\n\t\t\t\t\t\t[-84.814530, 39.680429],\n\t\t\t\t\t\t[-84.814129, 39.726556],\n\t\t\t\t\t\t[-84.814129, 39.726620],\n\t\t\t\t\t\t[-84.814189, 39.785569]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39139\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"139\",\n\t\t\t\t\"NAME\": \"Richland\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 495.269000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.416480, 40.902252],\n\t\t\t\t\t\t[-82.378397, 40.727145],\n\t\t\t\t\t\t[-82.339211, 40.726683],\n\t\t\t\t\t\t[-82.336962, 40.555001],\n\t\t\t\t\t\t[-82.374898, 40.550871],\n\t\t\t\t\t\t[-82.623609, 40.549879],\n\t\t\t\t\t\t[-82.627191, 40.709416],\n\t\t\t\t\t\t[-82.727164, 40.711203],\n\t\t\t\t\t\t[-82.724792, 40.995638],\n\t\t\t\t\t\t[-82.432852, 40.992944],\n\t\t\t\t\t\t[-82.417900, 40.992938],\n\t\t\t\t\t\t[-82.416480, 40.902252]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39141\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"141\",\n\t\t\t\t\"NAME\": \"Ross\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 689.188000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.998204, 39.480061],\n\t\t\t\t\t\t[-82.740729, 39.468350],\n\t\t\t\t\t\t[-82.740771, 39.466029],\n\t\t\t\t\t\t[-82.748591, 39.368165],\n\t\t\t\t\t\t[-82.762892, 39.207967],\n\t\t\t\t\t\t[-82.766692, 39.167768],\n\t\t\t\t\t\t[-82.785891, 39.168769],\n\t\t\t\t\t\t[-83.353531, 39.197585],\n\t\t\t\t\t\t[-83.393511, 39.267272],\n\t\t\t\t\t\t[-83.372714, 39.377416],\n\t\t\t\t\t\t[-83.317496, 39.449993],\n\t\t\t\t\t\t[-83.266737, 39.516249],\n\t\t\t\t\t\t[-82.984560, 39.506754],\n\t\t\t\t\t\t[-82.998204, 39.480061]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39149\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"149\",\n\t\t\t\t\"NAME\": \"Shelby\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 407.675000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.022919, 40.183945],\n\t\t\t\t\t\t[-84.432575, 40.197037],\n\t\t\t\t\t\t[-84.434631, 40.354259],\n\t\t\t\t\t\t[-84.431632, 40.354198],\n\t\t\t\t\t\t[-84.434387, 40.354534],\n\t\t\t\t\t\t[-84.338882, 40.378734],\n\t\t\t\t\t\t[-84.339088, 40.481281],\n\t\t\t\t\t\t[-84.002372, 40.483115],\n\t\t\t\t\t\t[-84.014763, 40.273459],\n\t\t\t\t\t\t[-84.022919, 40.183945]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39151\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"151\",\n\t\t\t\t\"NAME\": \"Stark\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 575.271000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.467584, 40.907965],\n\t\t\t\t\t\t[-81.420418, 40.906504],\n\t\t\t\t\t\t[-81.393429, 40.988528],\n\t\t\t\t\t\t[-81.086817, 40.988158],\n\t\t\t\t\t\t[-81.086919, 40.981164],\n\t\t\t\t\t\t[-81.086719, 40.944945],\n\t\t\t\t\t\t[-81.086601, 40.944758],\n\t\t\t\t\t\t[-81.086614, 40.940774],\n\t\t\t\t\t\t[-81.086918, 40.939658],\n\t\t\t\t\t\t[-81.086601, 40.937622],\n\t\t\t\t\t\t[-81.086642, 40.932189],\n\t\t\t\t\t\t[-81.086688, 40.931737],\n\t\t\t\t\t\t[-81.086679, 40.901609],\n\t\t\t\t\t\t[-81.087289, 40.727816],\n\t\t\t\t\t\t[-81.237227, 40.723542],\n\t\t\t\t\t\t[-81.241250, 40.650534],\n\t\t\t\t\t\t[-81.317739, 40.651579],\n\t\t\t\t\t\t[-81.649199, 40.635106],\n\t\t\t\t\t\t[-81.650048, 40.655260],\n\t\t\t\t\t\t[-81.650045, 40.668117],\n\t\t\t\t\t\t[-81.647736, 40.914386],\n\t\t\t\t\t\t[-81.645950, 40.914257],\n\t\t\t\t\t\t[-81.467584, 40.907965]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39157\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"157\",\n\t\t\t\t\"NAME\": \"Tuscarawas\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 567.636000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.649199, 40.635106],\n\t\t\t\t\t\t[-81.317739, 40.651579],\n\t\t\t\t\t\t[-81.321659, 40.566648],\n\t\t\t\t\t\t[-81.264744, 40.565042],\n\t\t\t\t\t\t[-81.269951, 40.433486],\n\t\t\t\t\t\t[-81.275319, 40.303434],\n\t\t\t\t\t\t[-81.334601, 40.304316],\n\t\t\t\t\t\t[-81.338057, 40.214253],\n\t\t\t\t\t\t[-81.622683, 40.221308],\n\t\t\t\t\t\t[-81.616030, 40.368118],\n\t\t\t\t\t\t[-81.712288, 40.370804],\n\t\t\t\t\t\t[-81.709132, 40.444775],\n\t\t\t\t\t\t[-81.669654, 40.443866],\n\t\t\t\t\t\t[-81.649199, 40.635106]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39161\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"161\",\n\t\t\t\t\"NAME\": \"Van Wert\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 409.158000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.340531, 40.859099],\n\t\t\t\t\t\t[-84.397374, 40.815941],\n\t\t\t\t\t\t[-84.396778, 40.684926],\n\t\t\t\t\t\t[-84.456180, 40.684862],\n\t\t\t\t\t\t[-84.456172, 40.728306],\n\t\t\t\t\t\t[-84.802119, 40.728146],\n\t\t\t\t\t\t[-84.802119, 40.728163],\n\t\t\t\t\t\t[-84.802266, 40.742298],\n\t\t\t\t\t\t[-84.802538, 40.765515],\n\t\t\t\t\t\t[-84.802935, 40.922377],\n\t\t\t\t\t\t[-84.802936, 40.922568],\n\t\t\t\t\t\t[-84.803313, 40.989209],\n\t\t\t\t\t\t[-84.803313, 40.989394],\n\t\t\t\t\t\t[-84.399486, 40.990315],\n\t\t\t\t\t\t[-84.398407, 40.903265],\n\t\t\t\t\t\t[-84.340531, 40.859099]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47065\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"065\",\n\t\t\t\t\"NAME\": \"Hamilton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 542.431000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.135191, 35.458649],\n\t\t\t\t\t\t[-85.016343, 35.409288],\n\t\t\t\t\t\t[-84.946350, 35.287788],\n\t\t\t\t\t\t[-85.024043, 35.148829],\n\t\t\t\t\t\t[-84.976973, 34.987669],\n\t\t\t\t\t\t[-84.979860, 34.987647],\n\t\t\t\t\t\t[-85.045052, 34.986859],\n\t\t\t\t\t\t[-85.045183, 34.986883],\n\t\t\t\t\t\t[-85.180553, 34.986075],\n\t\t\t\t\t\t[-85.185905, 34.985995],\n\t\t\t\t\t\t[-85.216554, 34.985675],\n\t\t\t\t\t\t[-85.217854, 34.985675],\n\t\t\t\t\t\t[-85.220554, 34.985575],\n\t\t\t\t\t\t[-85.221854, 34.985475],\n\t\t\t\t\t\t[-85.230354, 34.985475],\n\t\t\t\t\t\t[-85.235555, 34.985475],\n\t\t\t\t\t\t[-85.254955, 34.985175],\n\t\t\t\t\t\t[-85.265055, 34.985075],\n\t\t\t\t\t\t[-85.275856, 34.984975],\n\t\t\t\t\t\t[-85.277556, 34.984975],\n\t\t\t\t\t\t[-85.294500, 34.984651],\n\t\t\t\t\t\t[-85.301488, 34.984475],\n\t\t\t\t\t\t[-85.305457, 34.984475],\n\t\t\t\t\t\t[-85.308257, 34.984375],\n\t\t\t\t\t\t[-85.363919, 34.983375],\n\t\t\t\t\t\t[-85.474472, 34.983972],\n\t\t\t\t\t\t[-85.361959, 35.087773],\n\t\t\t\t\t\t[-85.387089, 35.147169],\n\t\t\t\t\t\t[-85.246005, 35.319077],\n\t\t\t\t\t\t[-85.225877, 35.354276],\n\t\t\t\t\t\t[-85.135191, 35.458649]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47067\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"067\",\n\t\t\t\t\"NAME\": \"Hancock\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 222.340000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.985087, 36.593829],\n\t\t\t\t\t\t[-82.830433, 36.593761],\n\t\t\t\t\t\t[-82.950519, 36.543005],\n\t\t\t\t\t\t[-83.010789, 36.563691],\n\t\t\t\t\t\t[-83.280595, 36.394689],\n\t\t\t\t\t\t[-83.386800, 36.413186],\n\t\t\t\t\t\t[-83.398303, 36.534885],\n\t\t\t\t\t\t[-83.472108, 36.597284],\n\t\t\t\t\t\t[-83.276300, 36.598187],\n\t\t\t\t\t\t[-83.250304, 36.593935],\n\t\t\t\t\t\t[-83.249899, 36.593898],\n\t\t\t\t\t\t[-83.248933, 36.593827],\n\t\t\t\t\t\t[-83.028357, 36.593893],\n\t\t\t\t\t\t[-83.027250, 36.593847],\n\t\t\t\t\t\t[-82.985087, 36.593829]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47071\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"071\",\n\t\t\t\t\"NAME\": \"Hardin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 577.318000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.258111, 34.995463],\n\t\t\t\t\t\t[-88.363531, 34.995590],\n\t\t\t\t\t\t[-88.380508, 34.995610],\n\t\t\t\t\t\t[-88.362572, 35.380994],\n\t\t\t\t\t\t[-88.361929, 35.397044],\n\t\t\t\t\t\t[-88.355500, 35.396994],\n\t\t\t\t\t\t[-88.351765, 35.406735],\n\t\t\t\t\t\t[-88.361521, 35.408877],\n\t\t\t\t\t\t[-88.360829, 35.418972],\n\t\t\t\t\t\t[-88.241677, 35.423263],\n\t\t\t\t\t\t[-88.199643, 35.382570],\n\t\t\t\t\t\t[-88.024741, 35.392307],\n\t\t\t\t\t\t[-87.981585, 35.295678],\n\t\t\t\t\t\t[-87.984916, 35.006256],\n\t\t\t\t\t\t[-88.182450, 35.007712],\n\t\t\t\t\t\t[-88.200064, 34.995634],\n\t\t\t\t\t\t[-88.253825, 34.995553],\n\t\t\t\t\t\t[-88.258111, 34.995463]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47077\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"077\",\n\t\t\t\t\"NAME\": \"Henderson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 520.073000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.241677, 35.423263],\n\t\t\t\t\t\t[-88.360829, 35.418972],\n\t\t\t\t\t\t[-88.364004, 35.492801],\n\t\t\t\t\t\t[-88.505354, 35.512030],\n\t\t\t\t\t\t[-88.613611, 35.588089],\n\t\t\t\t\t\t[-88.606862, 35.789354],\n\t\t\t\t\t\t[-88.569047, 35.824829],\n\t\t\t\t\t\t[-88.179177, 35.816785],\n\t\t\t\t\t\t[-88.190465, 35.609088],\n\t\t\t\t\t\t[-88.243057, 35.528858],\n\t\t\t\t\t\t[-88.241677, 35.423263]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47083\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"083\",\n\t\t\t\t\"NAME\": \"Houston\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 200.286000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.949603, 36.243160],\n\t\t\t\t\t\t[-87.980740, 36.353307],\n\t\t\t\t\t\t[-87.821816, 36.328724],\n\t\t\t\t\t\t[-87.715494, 36.368240],\n\t\t\t\t\t\t[-87.592358, 36.367663],\n\t\t\t\t\t\t[-87.586957, 36.341780],\n\t\t\t\t\t\t[-87.513533, 36.334713],\n\t\t\t\t\t\t[-87.566798, 36.177857],\n\t\t\t\t\t\t[-87.798508, 36.244754],\n\t\t\t\t\t\t[-87.949603, 36.243160]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47087\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"087\",\n\t\t\t\t\"NAME\": \"Jackson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 308.320000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.828026, 36.411836],\n\t\t\t\t\t\t[-85.827782, 36.413016],\n\t\t\t\t\t\t[-85.821032, 36.455400],\n\t\t\t\t\t\t[-85.820864, 36.455925],\n\t\t\t\t\t\t[-85.813885, 36.499473],\n\t\t\t\t\t\t[-85.704075, 36.522395],\n\t\t\t\t\t\t[-85.495422, 36.403074],\n\t\t\t\t\t\t[-85.497587, 36.375051],\n\t\t\t\t\t\t[-85.495124, 36.302278],\n\t\t\t\t\t\t[-85.533697, 36.242577],\n\t\t\t\t\t\t[-85.780148, 36.238011],\n\t\t\t\t\t\t[-85.846483, 36.288167],\n\t\t\t\t\t\t[-85.828026, 36.411836]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47095\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"095\",\n\t\t\t\t\"NAME\": \"Lake\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 165.784000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.346056, 36.503210],\n\t\t\t\t\t\t[-89.360120, 36.409277],\n\t\t\t\t\t\t[-89.443726, 36.236637],\n\t\t\t\t\t\t[-89.482971, 36.212659],\n\t\t\t\t\t\t[-89.629452, 36.185382],\n\t\t\t\t\t\t[-89.699817, 36.248384],\n\t\t\t\t\t\t[-89.691308, 36.252079],\n\t\t\t\t\t\t[-89.678046, 36.248284],\n\t\t\t\t\t\t[-89.602374, 36.238106],\n\t\t\t\t\t\t[-89.589561, 36.239116],\n\t\t\t\t\t\t[-89.541621, 36.247891],\n\t\t\t\t\t\t[-89.534745, 36.252576],\n\t\t\t\t\t\t[-89.535529, 36.270541],\n\t\t\t\t\t\t[-89.539487, 36.277368],\n\t\t\t\t\t\t[-89.544797, 36.280458],\n\t\t\t\t\t\t[-89.554289, 36.277751],\n\t\t\t\t\t\t[-89.578492, 36.288317],\n\t\t\t\t\t\t[-89.611819, 36.309088],\n\t\t\t\t\t\t[-89.620255, 36.323006],\n\t\t\t\t\t\t[-89.619800, 36.329546],\n\t\t\t\t\t\t[-89.615841, 36.336085],\n\t\t\t\t\t\t[-89.610689, 36.340442],\n\t\t\t\t\t\t[-89.605668, 36.342234],\n\t\t\t\t\t\t[-89.581636, 36.342357],\n\t\t\t\t\t\t[-89.560439, 36.337746],\n\t\t\t\t\t\t[-89.545006, 36.336809],\n\t\t\t\t\t\t[-89.531822, 36.339246],\n\t\t\t\t\t\t[-89.519000, 36.348600],\n\t\t\t\t\t\t[-89.513178, 36.359897],\n\t\t\t\t\t\t[-89.509558, 36.375065],\n\t\t\t\t\t\t[-89.519501, 36.475419],\n\t\t\t\t\t\t[-89.522674, 36.481305],\n\t\t\t\t\t\t[-89.539100, 36.498201],\n\t\t\t\t\t\t[-89.498036, 36.497887],\n\t\t\t\t\t\t[-89.492537, 36.497775],\n\t\t\t\t\t\t[-89.485106, 36.497692],\n\t\t\t\t\t\t[-89.493495, 36.478700],\n\t\t\t\t\t\t[-89.493198, 36.470124],\n\t\t\t\t\t\t[-89.486215, 36.461620],\n\t\t\t\t\t\t[-89.471718, 36.457001],\n\t\t\t\t\t\t[-89.460436, 36.458140],\n\t\t\t\t\t\t[-89.448468, 36.464420],\n\t\t\t\t\t\t[-89.429311, 36.481875],\n\t\t\t\t\t\t[-89.417293, 36.499033],\n\t\t\t\t\t\t[-89.403913, 36.499141],\n\t\t\t\t\t\t[-89.381792, 36.500062],\n\t\t\t\t\t\t[-89.380085, 36.500416],\n\t\t\t\t\t\t[-89.356593, 36.502195],\n\t\t\t\t\t\t[-89.346056, 36.503210]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47101\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"101\",\n\t\t\t\t\"NAME\": \"Lewis\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 282.089000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.339232, 35.659110],\n\t\t\t\t\t\t[-87.289872, 35.548025],\n\t\t\t\t\t\t[-87.294534, 35.444676],\n\t\t\t\t\t\t[-87.448485, 35.457844],\n\t\t\t\t\t\t[-87.448820, 35.420622],\n\t\t\t\t\t\t[-87.575352, 35.398454],\n\t\t\t\t\t\t[-87.717559, 35.483347],\n\t\t\t\t\t\t[-87.658189, 35.609349],\n\t\t\t\t\t\t[-87.586867, 35.653304],\n\t\t\t\t\t\t[-87.459587, 35.615124],\n\t\t\t\t\t\t[-87.339232, 35.659110]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47107\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"107\",\n\t\t\t\t\"NAME\": \"McMinn\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 430.125000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.525850, 35.624186],\n\t\t\t\t\t\t[-84.409226, 35.398378],\n\t\t\t\t\t\t[-84.401025, 35.330374],\n\t\t\t\t\t\t[-84.495529, 35.285472],\n\t\t\t\t\t\t[-84.703607, 35.241043],\n\t\t\t\t\t\t[-84.860164, 35.350074],\n\t\t\t\t\t\t[-84.814543, 35.436970],\n\t\t\t\t\t\t[-84.619865, 35.644651],\n\t\t\t\t\t\t[-84.584472, 35.644424],\n\t\t\t\t\t\t[-84.584296, 35.633086],\n\t\t\t\t\t\t[-84.566915, 35.633240],\n\t\t\t\t\t\t[-84.566934, 35.629773],\n\t\t\t\t\t\t[-84.557872, 35.629651],\n\t\t\t\t\t\t[-84.557926, 35.636973],\n\t\t\t\t\t\t[-84.549230, 35.636896],\n\t\t\t\t\t\t[-84.547603, 35.641327],\n\t\t\t\t\t\t[-84.535386, 35.633696],\n\t\t\t\t\t\t[-84.534006, 35.629555],\n\t\t\t\t\t\t[-84.525984, 35.628113],\n\t\t\t\t\t\t[-84.525850, 35.624186]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47109\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"109\",\n\t\t\t\t\"NAME\": \"McNairy\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 562.860000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.781768, 35.247587],\n\t\t\t\t\t\t[-88.719761, 35.247550],\n\t\t\t\t\t\t[-88.640934, 35.361017],\n\t\t\t\t\t\t[-88.362572, 35.380994],\n\t\t\t\t\t\t[-88.380508, 34.995610],\n\t\t\t\t\t\t[-88.469801, 34.996052],\n\t\t\t\t\t\t[-88.469877, 34.996033],\n\t\t\t\t\t\t[-88.786612, 34.995252],\n\t\t\t\t\t\t[-88.786924, 35.115809],\n\t\t\t\t\t\t[-88.781768, 35.247587]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47111\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"111\",\n\t\t\t\t\"NAME\": \"Macon\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 307.144000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.788645, 36.621846],\n\t\t\t\t\t\t[-85.788613, 36.621845],\n\t\t\t\t\t\t[-85.813885, 36.499473],\n\t\t\t\t\t\t[-85.820864, 36.455925],\n\t\t\t\t\t\t[-85.821032, 36.455400],\n\t\t\t\t\t\t[-85.827782, 36.413016],\n\t\t\t\t\t\t[-85.828026, 36.411836],\n\t\t\t\t\t\t[-85.978893, 36.426073],\n\t\t\t\t\t\t[-86.168261, 36.444293],\n\t\t\t\t\t\t[-86.228434, 36.487472],\n\t\t\t\t\t\t[-86.205468, 36.639783],\n\t\t\t\t\t\t[-86.204859, 36.639741],\n\t\t\t\t\t\t[-86.197573, 36.639363],\n\t\t\t\t\t\t[-86.081944, 36.633848],\n\t\t\t\t\t\t[-86.080666, 36.633940],\n\t\t\t\t\t\t[-86.038366, 36.630804],\n\t\t\t\t\t\t[-86.033139, 36.630413],\n\t\t\t\t\t\t[-86.032770, 36.630367],\n\t\t\t\t\t\t[-85.976421, 36.628400],\n\t\t\t\t\t\t[-85.788645, 36.621846]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47119\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"119\",\n\t\t\t\t\"NAME\": \"Maury\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 613.138000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.215099, 35.850651],\n\t\t\t\t\t\t[-86.953593, 35.781904],\n\t\t\t\t\t\t[-86.782016, 35.706595],\n\t\t\t\t\t\t[-86.849573, 35.525515],\n\t\t\t\t\t\t[-86.960804, 35.417021],\n\t\t\t\t\t\t[-87.120883, 35.455660],\n\t\t\t\t\t\t[-87.206578, 35.433207],\n\t\t\t\t\t\t[-87.226311, 35.440509],\n\t\t\t\t\t\t[-87.227932, 35.429332],\n\t\t\t\t\t\t[-87.295242, 35.442128],\n\t\t\t\t\t\t[-87.294534, 35.444676],\n\t\t\t\t\t\t[-87.289872, 35.548025],\n\t\t\t\t\t\t[-87.339232, 35.659110],\n\t\t\t\t\t\t[-87.234143, 35.724691],\n\t\t\t\t\t\t[-87.215099, 35.850651]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47125\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"125\",\n\t\t\t\t\"NAME\": \"Montgomery\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 539.177000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.602597, 36.418979],\n\t\t\t\t\t\t[-87.603420, 36.425900],\n\t\t\t\t\t\t[-87.641146, 36.638036],\n\t\t\t\t\t\t[-87.564928, 36.639113],\n\t\t\t\t\t\t[-87.563052, 36.639113],\n\t\t\t\t\t\t[-87.436509, 36.640747],\n\t\t\t\t\t\t[-87.425009, 36.641047],\n\t\t\t\t\t\t[-87.414309, 36.641047],\n\t\t\t\t\t\t[-87.347796, 36.641440],\n\t\t\t\t\t\t[-87.344131, 36.641510],\n\t\t\t\t\t\t[-87.335980, 36.641543],\n\t\t\t\t\t\t[-87.281506, 36.641761],\n\t\t\t\t\t\t[-87.278398, 36.641718],\n\t\t\t\t\t\t[-87.247655, 36.641841],\n\t\t\t\t\t\t[-87.231037, 36.641888],\n\t\t\t\t\t\t[-87.230530, 36.641895],\n\t\t\t\t\t\t[-87.114983, 36.642414],\n\t\t\t\t\t\t[-87.120443, 36.455460],\n\t\t\t\t\t\t[-87.150276, 36.445037],\n\t\t\t\t\t\t[-87.148602, 36.422773],\n\t\t\t\t\t\t[-87.150974, 36.416644],\n\t\t\t\t\t\t[-87.162729, 36.413298],\n\t\t\t\t\t\t[-87.163242, 36.421360],\n\t\t\t\t\t\t[-87.171307, 36.427616],\n\t\t\t\t\t\t[-87.177254, 36.424583],\n\t\t\t\t\t\t[-87.286501, 36.321933],\n\t\t\t\t\t\t[-87.513533, 36.334713],\n\t\t\t\t\t\t[-87.586957, 36.341780],\n\t\t\t\t\t\t[-87.592358, 36.367663],\n\t\t\t\t\t\t[-87.602597, 36.418979]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47135\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"135\",\n\t\t\t\t\"NAME\": \"Perry\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 414.731000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.710185, 35.708610],\n\t\t\t\t\t\t[-87.743750, 35.663952],\n\t\t\t\t\t\t[-87.658189, 35.609349],\n\t\t\t\t\t\t[-87.717559, 35.483347],\n\t\t\t\t\t\t[-87.973180, 35.459968],\n\t\t\t\t\t\t[-88.007709, 35.423381],\n\t\t\t\t\t\t[-88.042332, 35.444617],\n\t\t\t\t\t\t[-87.974630, 35.521025],\n\t\t\t\t\t\t[-88.035837, 35.621839],\n\t\t\t\t\t\t[-88.034788, 35.717261],\n\t\t\t\t\t\t[-87.970738, 35.815705],\n\t\t\t\t\t\t[-87.968987, 35.828827],\n\t\t\t\t\t\t[-87.962740, 35.840921],\n\t\t\t\t\t\t[-87.848144, 35.804079],\n\t\t\t\t\t\t[-87.716760, 35.838750],\n\t\t\t\t\t\t[-87.710185, 35.708610]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47137\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"137\",\n\t\t\t\t\"NAME\": \"Pickett\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 162.979000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.276284, 36.626511],\n\t\t\t\t\t\t[-85.096128, 36.622483],\n\t\t\t\t\t\t[-85.086415, 36.621913],\n\t\t\t\t\t\t[-84.974888, 36.614327],\n\t\t\t\t\t\t[-84.859738, 36.606495],\n\t\t\t\t\t\t[-84.859759, 36.606428],\n\t\t\t\t\t\t[-84.785399, 36.603374],\n\t\t\t\t\t\t[-84.749940, 36.553523],\n\t\t\t\t\t\t[-84.731839, 36.524674],\n\t\t\t\t\t\t[-84.943144, 36.581270],\n\t\t\t\t\t\t[-85.043924, 36.558791],\n\t\t\t\t\t\t[-85.120445, 36.407164],\n\t\t\t\t\t\t[-85.185359, 36.490359],\n\t\t\t\t\t\t[-85.284878, 36.531293],\n\t\t\t\t\t\t[-85.276284, 36.626511]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US24011\",\n\t\t\t\t\"STATE\": \"24\",\n\t\t\t\t\"COUNTY\": \"011\",\n\t\t\t\t\"NAME\": \"Caroline\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 319.419000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-75.948726, 38.912037],\n\t\t\t\t\t\t[-75.948243, 38.914515],\n\t\t\t\t\t\t[-75.943976, 38.914294],\n\t\t\t\t\t\t[-75.944256, 38.916517],\n\t\t\t\t\t\t[-75.949335, 38.918333],\n\t\t\t\t\t\t[-75.929729, 38.990654],\n\t\t\t\t\t\t[-75.834948, 39.108437],\n\t\t\t\t\t\t[-75.747671, 39.143345],\n\t\t\t\t\t\t[-75.747668, 39.143306],\n\t\t\t\t\t\t[-75.746121, 39.120318],\n\t\t\t\t\t\t[-75.745793, 39.114935],\n\t\t\t\t\t\t[-75.725829, 38.869296],\n\t\t\t\t\t\t[-75.725565, 38.868152],\n\t\t\t\t\t\t[-75.724061, 38.847781],\n\t\t\t\t\t\t[-75.724002, 38.846682],\n\t\t\t\t\t\t[-75.722882, 38.833156],\n\t\t\t\t\t\t[-75.722610, 38.830008],\n\t\t\t\t\t\t[-75.722599, 38.829859],\n\t\t\t\t\t\t[-75.722028, 38.822078],\n\t\t\t\t\t\t[-75.707352, 38.635359],\n\t\t\t\t\t\t[-75.762680, 38.686222],\n\t\t\t\t\t\t[-75.945243, 38.674114],\n\t\t\t\t\t\t[-76.015045, 38.728687],\n\t\t\t\t\t\t[-76.013206, 38.733291],\n\t\t\t\t\t\t[-76.009979, 38.736034],\n\t\t\t\t\t\t[-76.007354, 38.736751],\n\t\t\t\t\t\t[-75.999671, 38.734836],\n\t\t\t\t\t\t[-75.995376, 38.736679],\n\t\t\t\t\t\t[-75.994590, 38.741886],\n\t\t\t\t\t\t[-75.999336, 38.752075],\n\t\t\t\t\t\t[-75.998947, 38.755596],\n\t\t\t\t\t\t[-75.996902, 38.757507],\n\t\t\t\t\t\t[-75.993759, 38.759284],\n\t\t\t\t\t\t[-75.979965, 38.763710],\n\t\t\t\t\t\t[-75.976409, 38.765506],\n\t\t\t\t\t\t[-75.967750, 38.774398],\n\t\t\t\t\t\t[-75.968238, 38.777729],\n\t\t\t\t\t\t[-75.966369, 38.779762],\n\t\t\t\t\t\t[-75.954551, 38.777496],\n\t\t\t\t\t\t[-75.949455, 38.778419],\n\t\t\t\t\t\t[-75.937347, 38.787242],\n\t\t\t\t\t\t[-75.932518, 38.796138],\n\t\t\t\t\t\t[-75.927963, 38.799201],\n\t\t\t\t\t\t[-75.920799, 38.802635],\n\t\t\t\t\t\t[-75.911369, 38.806285],\n\t\t\t\t\t\t[-75.903778, 38.806934],\n\t\t\t\t\t\t[-75.896774, 38.815109],\n\t\t\t\t\t\t[-75.903251, 38.816764],\n\t\t\t\t\t\t[-75.906455, 38.819705],\n\t\t\t\t\t\t[-75.905494, 38.821567],\n\t\t\t\t\t\t[-75.901747, 38.822883],\n\t\t\t\t\t\t[-75.901267, 38.824737],\n\t\t\t\t\t\t[-75.904341, 38.826431],\n\t\t\t\t\t\t[-75.912918, 38.829532],\n\t\t\t\t\t\t[-75.913711, 38.832965],\n\t\t\t\t\t\t[-75.915183, 38.834835],\n\t\t\t\t\t\t[-75.919432, 38.835205],\n\t\t\t\t\t\t[-75.927771, 38.838893],\n\t\t\t\t\t\t[-75.928099, 38.841068],\n\t\t\t\t\t\t[-75.919348, 38.845016],\n\t\t\t\t\t\t[-75.918975, 38.846084],\n\t\t\t\t\t\t[-75.919455, 38.846897],\n\t\t\t\t\t\t[-75.926772, 38.847038],\n\t\t\t\t\t\t[-75.929312, 38.849021],\n\t\t\t\t\t\t[-75.930373, 38.850872],\n\t\t\t\t\t\t[-75.928336, 38.852428],\n\t\t\t\t\t\t[-75.922797, 38.854785],\n\t\t\t\t\t\t[-75.922431, 38.856369],\n\t\t\t\t\t\t[-75.922187, 38.857257],\n\t\t\t\t\t\t[-75.924331, 38.860389],\n\t\t\t\t\t\t[-75.930229, 38.861286],\n\t\t\t\t\t\t[-75.932914, 38.866035],\n\t\t\t\t\t\t[-75.934707, 38.867511],\n\t\t\t\t\t\t[-75.939292, 38.866558],\n\t\t\t\t\t\t[-75.941551, 38.868022],\n\t\t\t\t\t\t[-75.943077, 38.870494],\n\t\t\t\t\t\t[-75.944396, 38.875087],\n\t\t\t\t\t\t[-75.943572, 38.876380],\n\t\t\t\t\t\t[-75.938919, 38.876392],\n\t\t\t\t\t\t[-75.937583, 38.877994],\n\t\t\t\t\t\t[-75.937644, 38.879802],\n\t\t\t\t\t\t[-75.939224, 38.881332],\n\t\t\t\t\t\t[-75.941482, 38.881179],\n\t\t\t\t\t\t[-75.943847, 38.879344],\n\t\t\t\t\t\t[-75.948753, 38.878444],\n\t\t\t\t\t\t[-75.951469, 38.880237],\n\t\t\t\t\t\t[-75.950904, 38.884143],\n\t\t\t\t\t\t[-75.949638, 38.884807],\n\t\t\t\t\t\t[-75.945480, 38.884029],\n\t\t\t\t\t\t[-75.941535, 38.884075],\n\t\t\t\t\t\t[-75.940399, 38.885070],\n\t\t\t\t\t\t[-75.944587, 38.890068],\n\t\t\t\t\t\t[-75.948310, 38.891323],\n\t\t\t\t\t\t[-75.948616, 38.892250],\n\t\t\t\t\t\t[-75.945945, 38.893913],\n\t\t\t\t\t\t[-75.944358, 38.897548],\n\t\t\t\t\t\t[-75.944908, 38.900348],\n\t\t\t\t\t\t[-75.948677, 38.902389],\n\t\t\t\t\t\t[-75.948120, 38.904560],\n\t\t\t\t\t\t[-75.943862, 38.906204],\n\t\t\t\t\t\t[-75.943145, 38.907257],\n\t\t\t\t\t\t[-75.948726, 38.912037]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US24013\",\n\t\t\t\t\"STATE\": \"24\",\n\t\t\t\t\"COUNTY\": \"013\",\n\t\t\t\t\"NAME\": \"Carroll\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 447.595000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.217024, 39.719998],\n\t\t\t\t\t\t[-77.216806, 39.719998],\n\t\t\t\t\t\t[-77.058904, 39.720100],\n\t\t\t\t\t\t[-77.058204, 39.720200],\n\t\t\t\t\t\t[-77.047104, 39.720000],\n\t\t\t\t\t\t[-76.999465, 39.720128],\n\t\t\t\t\t\t[-76.897566, 39.720401],\n\t\t\t\t\t\t[-76.890100, 39.720401],\n\t\t\t\t\t\t[-76.809197, 39.720702],\n\t\t\t\t\t\t[-76.806397, 39.720602],\n\t\t\t\t\t\t[-76.787097, 39.720802],\n\t\t\t\t\t\t[-76.787096, 39.720802],\n\t\t\t\t\t\t[-76.866700, 39.500902],\n\t\t\t\t\t\t[-76.868387, 39.494074],\n\t\t\t\t\t\t[-76.879788, 39.365858],\n\t\t\t\t\t\t[-76.880701, 39.360469],\n\t\t\t\t\t\t[-76.873378, 39.357150],\n\t\t\t\t\t\t[-76.879738, 39.356846],\n\t\t\t\t\t\t[-76.882274, 39.350185],\n\t\t\t\t\t\t[-77.168080, 39.353957],\n\t\t\t\t\t\t[-77.106839, 39.491661],\n\t\t\t\t\t\t[-77.200125, 39.578588],\n\t\t\t\t\t\t[-77.287747, 39.604516],\n\t\t\t\t\t\t[-77.217024, 39.719998]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US24021\",\n\t\t\t\t\"STATE\": \"24\",\n\t\t\t\t\"COUNTY\": \"021\",\n\t\t\t\t\"NAME\": \"Frederick\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 660.221000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.458779, 39.220280],\n\t\t\t\t\t\t[-77.457680, 39.225020],\n\t\t\t\t\t\t[-77.460210, 39.228359],\n\t\t\t\t\t\t[-77.484605, 39.245941],\n\t\t\t\t\t\t[-77.511222, 39.253500],\n\t\t\t\t\t\t[-77.534461, 39.262361],\n\t\t\t\t\t\t[-77.543228, 39.266937],\n\t\t\t\t\t\t[-77.545846, 39.271535],\n\t\t\t\t\t\t[-77.560854, 39.286152],\n\t\t\t\t\t\t[-77.592739, 39.301290],\n\t\t\t\t\t\t[-77.667749, 39.318129],\n\t\t\t\t\t\t[-77.677505, 39.318699],\n\t\t\t\t\t\t[-77.570182, 39.619998],\n\t\t\t\t\t\t[-77.469145, 39.720018],\n\t\t\t\t\t\t[-77.459427, 39.720017],\n\t\t\t\t\t\t[-77.243307, 39.719998],\n\t\t\t\t\t\t[-77.239807, 39.719998],\n\t\t\t\t\t\t[-77.217024, 39.719998],\n\t\t\t\t\t\t[-77.287747, 39.604516],\n\t\t\t\t\t\t[-77.200125, 39.578588],\n\t\t\t\t\t\t[-77.106839, 39.491661],\n\t\t\t\t\t\t[-77.168080, 39.353957],\n\t\t\t\t\t\t[-77.168558, 39.353719],\n\t\t\t\t\t\t[-77.168801, 39.353502],\n\t\t\t\t\t\t[-77.171459, 39.352487],\n\t\t\t\t\t\t[-77.313839, 39.286462],\n\t\t\t\t\t\t[-77.337016, 39.275696],\n\t\t\t\t\t\t[-77.454934, 39.221584],\n\t\t\t\t\t\t[-77.458779, 39.220280]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US24023\",\n\t\t\t\t\"STATE\": \"24\",\n\t\t\t\t\"COUNTY\": \"023\",\n\t\t\t\t\"NAME\": \"Garrett\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 647.103000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.067072, 39.474658],\n\t\t\t\t\t\t[-79.084450, 39.471356],\n\t\t\t\t\t\t[-79.201676, 39.379726],\n\t\t\t\t\t\t[-79.213192, 39.367897],\n\t\t\t\t\t\t[-79.256880, 39.356077],\n\t\t\t\t\t\t[-79.280039, 39.340076],\n\t\t\t\t\t\t[-79.378687, 39.271920],\n\t\t\t\t\t\t[-79.402911, 39.250106],\n\t\t\t\t\t\t[-79.486873, 39.205961],\n\t\t\t\t\t\t[-79.485874, 39.264905],\n\t\t\t\t\t\t[-79.486179, 39.264970],\n\t\t\t\t\t\t[-79.486737, 39.278149],\n\t\t\t\t\t\t[-79.487651, 39.279933],\n\t\t\t\t\t\t[-79.482648, 39.521364],\n\t\t\t\t\t\t[-79.482354, 39.524682],\n\t\t\t\t\t\t[-79.478866, 39.531689],\n\t\t\t\t\t\t[-79.476662, 39.721078],\n\t\t\t\t\t\t[-79.392458, 39.721340],\n\t\t\t\t\t\t[-78.931176, 39.722775],\n\t\t\t\t\t\t[-78.931175, 39.722775],\n\t\t\t\t\t\t[-79.067933, 39.479189],\n\t\t\t\t\t\t[-79.067072, 39.474658]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US24031\",\n\t\t\t\t\"STATE\": \"24\",\n\t\t\t\t\"COUNTY\": \"031\",\n\t\t\t\t\"NAME\": \"Montgomery\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 491.254000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.119900, 38.934311],\n\t\t\t\t\t\t[-77.137701, 38.955310],\n\t\t\t\t\t\t[-77.148179, 38.965002],\n\t\t\t\t\t\t[-77.166901, 38.968110],\n\t\t\t\t\t\t[-77.197502, 38.966810],\n\t\t\t\t\t\t[-77.221502, 38.971310],\n\t\t\t\t\t\t[-77.235403, 38.976610],\n\t\t\t\t\t\t[-77.249803, 38.985909],\n\t\t\t\t\t\t[-77.255703, 39.002409],\n\t\t\t\t\t\t[-77.251803, 39.011409],\n\t\t\t\t\t\t[-77.261403, 39.031009],\n\t\t\t\t\t\t[-77.291605, 39.045408],\n\t\t\t\t\t\t[-77.328002, 39.058554],\n\t\t\t\t\t\t[-77.340287, 39.062991],\n\t\t\t\t\t\t[-77.375079, 39.061297],\n\t\t\t\t\t\t[-77.423180, 39.066878],\n\t\t\t\t\t\t[-77.458202, 39.073723],\n\t\t\t\t\t\t[-77.519929, 39.120925],\n\t\t\t\t\t\t[-77.524559, 39.127821],\n\t\t\t\t\t\t[-77.527282, 39.146236],\n\t\t\t\t\t\t[-77.516426, 39.170891],\n\t\t\t\t\t\t[-77.510631, 39.178484],\n\t\t\t\t\t\t[-77.505162, 39.182050],\n\t\t\t\t\t\t[-77.485971, 39.185665],\n\t\t\t\t\t\t[-77.478596, 39.189168],\n\t\t\t\t\t\t[-77.458884, 39.219826],\n\t\t\t\t\t\t[-77.458779, 39.220280],\n\t\t\t\t\t\t[-77.454934, 39.221584],\n\t\t\t\t\t\t[-77.337016, 39.275696],\n\t\t\t\t\t\t[-77.313839, 39.286462],\n\t\t\t\t\t\t[-77.171459, 39.352487],\n\t\t\t\t\t\t[-77.168801, 39.353502],\n\t\t\t\t\t\t[-77.186804, 39.338203],\n\t\t\t\t\t\t[-77.144669, 39.294707],\n\t\t\t\t\t\t[-76.888505, 39.130967],\n\t\t\t\t\t\t[-76.969748, 39.021343],\n\t\t\t\t\t\t[-76.971100, 39.019305],\n\t\t\t\t\t\t[-76.972097, 39.018109],\n\t\t\t\t\t\t[-76.973771, 39.015718],\n\t\t\t\t\t\t[-76.974565, 39.014714],\n\t\t\t\t\t\t[-76.977278, 39.010947],\n\t\t\t\t\t\t[-76.979606, 39.008161],\n\t\t\t\t\t\t[-76.984150, 39.001438],\n\t\t\t\t\t\t[-76.985693, 38.999980],\n\t\t\t\t\t\t[-76.988265, 38.996288],\n\t\t\t\t\t\t[-76.989059, 38.995577],\n\t\t\t\t\t\t[-76.991071, 38.992349],\n\t\t\t\t\t\t[-76.985747, 38.977349],\n\t\t\t\t\t\t[-77.002636, 38.965521],\n\t\t\t\t\t\t[-77.008298, 38.970110],\n\t\t\t\t\t\t[-77.013798, 38.974410],\n\t\t\t\t\t\t[-77.015598, 38.975910],\n\t\t\t\t\t\t[-77.036299, 38.991710],\n\t\t\t\t\t\t[-77.040999, 38.995110],\n\t\t\t\t\t\t[-77.054299, 38.985110],\n\t\t\t\t\t\t[-77.100700, 38.948910],\n\t\t\t\t\t\t[-77.119900, 38.934311]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US24033\",\n\t\t\t\t\"STATE\": \"24\",\n\t\t\t\t\"COUNTY\": \"033\",\n\t\t\t\t\"NAME\": \"Prince George's\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 482.691000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.059910, 38.734419],\n\t\t\t\t\t\t[-77.041398, 38.763914],\n\t\t\t\t\t\t[-77.039239, 38.785200],\n\t\t\t\t\t\t[-77.038598, 38.791513],\n\t\t\t\t\t\t[-77.024392, 38.802970],\n\t\t\t\t\t\t[-77.001397, 38.821513],\n\t\t\t\t\t\t[-76.953696, 38.858512],\n\t\t\t\t\t\t[-76.949696, 38.861312],\n\t\t\t\t\t\t[-76.920195, 38.884412],\n\t\t\t\t\t\t[-76.919295, 38.885112],\n\t\t\t\t\t\t[-76.910795, 38.891712],\n\t\t\t\t\t\t[-76.909395, 38.892812],\n\t\t\t\t\t\t[-76.941722, 38.918019],\n\t\t\t\t\t\t[-77.002498, 38.965410],\n\t\t\t\t\t\t[-77.002636, 38.965521],\n\t\t\t\t\t\t[-76.985747, 38.977349],\n\t\t\t\t\t\t[-76.991071, 38.992349],\n\t\t\t\t\t\t[-76.989059, 38.995577],\n\t\t\t\t\t\t[-76.988265, 38.996288],\n\t\t\t\t\t\t[-76.985693, 38.999980],\n\t\t\t\t\t\t[-76.984150, 39.001438],\n\t\t\t\t\t\t[-76.979606, 39.008161],\n\t\t\t\t\t\t[-76.977278, 39.010947],\n\t\t\t\t\t\t[-76.974565, 39.014714],\n\t\t\t\t\t\t[-76.973771, 39.015718],\n\t\t\t\t\t\t[-76.972097, 39.018109],\n\t\t\t\t\t\t[-76.971100, 39.019305],\n\t\t\t\t\t\t[-76.969748, 39.021343],\n\t\t\t\t\t\t[-76.888505, 39.130967],\n\t\t\t\t\t\t[-76.869003, 39.112214],\n\t\t\t\t\t\t[-76.849084, 39.109097],\n\t\t\t\t\t\t[-76.840362, 39.103142],\n\t\t\t\t\t\t[-76.693286, 38.951416],\n\t\t\t\t\t\t[-76.710639, 38.815694],\n\t\t\t\t\t\t[-76.686358, 38.748475],\n\t\t\t\t\t\t[-76.684018, 38.738348],\n\t\t\t\t\t\t[-76.687009, 38.735897],\n\t\t\t\t\t\t[-76.694996, 38.735075],\n\t\t\t\t\t\t[-76.695555, 38.731544],\n\t\t\t\t\t\t[-76.693589, 38.724761],\n\t\t\t\t\t\t[-76.701960, 38.710864],\n\t\t\t\t\t\t[-76.697743, 38.707030],\n\t\t\t\t\t\t[-76.694946, 38.702468],\n\t\t\t\t\t\t[-76.694983, 38.700307],\n\t\t\t\t\t\t[-76.697932, 38.694782],\n\t\t\t\t\t\t[-76.698429, 38.690443],\n\t\t\t\t\t\t[-76.695490, 38.685781],\n\t\t\t\t\t\t[-76.687147, 38.681371],\n\t\t\t\t\t\t[-76.687424, 38.678746],\n\t\t\t\t\t\t[-76.690461, 38.673683],\n\t\t\t\t\t\t[-76.700667, 38.670131],\n\t\t\t\t\t\t[-76.700381, 38.667022],\n\t\t\t\t\t\t[-76.694236, 38.663841],\n\t\t\t\t\t\t[-76.687370, 38.663793],\n\t\t\t\t\t\t[-76.683329, 38.661178],\n\t\t\t\t\t\t[-76.683186, 38.658813],\n\t\t\t\t\t\t[-76.685127, 38.654771],\n\t\t\t\t\t\t[-76.691630, 38.648506],\n\t\t\t\t\t\t[-76.692853, 38.636437],\n\t\t\t\t\t\t[-76.692021, 38.634932],\n\t\t\t\t\t\t[-76.686138, 38.630182],\n\t\t\t\t\t\t[-76.679355, 38.627949],\n\t\t\t\t\t\t[-76.677562, 38.626234],\n\t\t\t\t\t\t[-76.672334, 38.617533],\n\t\t\t\t\t\t[-76.673479, 38.607249],\n\t\t\t\t\t\t[-76.672557, 38.599271],\n\t\t\t\t\t\t[-76.675166, 38.592106],\n\t\t\t\t\t\t[-76.679480, 38.585211],\n\t\t\t\t\t\t[-76.680702, 38.580499],\n\t\t\t\t\t\t[-76.677799, 38.572374],\n\t\t\t\t\t\t[-76.678891, 38.567954],\n\t\t\t\t\t\t[-76.675468, 38.558824],\n\t\t\t\t\t\t[-76.672274, 38.552846],\n\t\t\t\t\t\t[-76.672642, 38.546818],\n\t\t\t\t\t\t[-76.675457, 38.535876],\n\t\t\t\t\t\t[-76.747335, 38.616677],\n\t\t\t\t\t\t[-76.862955, 38.658649],\n\t\t\t\t\t\t[-77.011028, 38.651975],\n\t\t\t\t\t\t[-77.077027, 38.690168],\n\t\t\t\t\t\t[-77.078599, 38.694114],\n\t\t\t\t\t\t[-77.086113, 38.705792],\n\t\t\t\t\t\t[-77.074599, 38.711015],\n\t\t\t\t\t\t[-77.059910, 38.734419]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US24043\",\n\t\t\t\t\"STATE\": \"24\",\n\t\t\t\t\"COUNTY\": \"043\",\n\t\t\t\t\"NAME\": \"Washington\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 457.780000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.825411, 39.494036],\n\t\t\t\t\t\t[-77.845105, 39.498285],\n\t\t\t\t\t\t[-77.865423, 39.516472],\n\t\t\t\t\t\t[-77.888945, 39.555950],\n\t\t\t\t\t\t[-77.886135, 39.560432],\n\t\t\t\t\t\t[-77.884536, 39.568174],\n\t\t\t\t\t\t[-77.902649, 39.587796],\n\t\t\t\t\t\t[-77.946442, 39.584910],\n\t\t\t\t\t\t[-78.009985, 39.602893],\n\t\t\t\t\t\t[-78.023427, 39.619860],\n\t\t\t\t\t\t[-78.035992, 39.635720],\n\t\t\t\t\t\t[-78.074595, 39.666686],\n\t\t\t\t\t\t[-78.107834, 39.682137],\n\t\t\t\t\t\t[-78.143478, 39.690412],\n\t\t\t\t\t\t[-78.176625, 39.695967],\n\t\t\t\t\t\t[-78.182759, 39.695110],\n\t\t\t\t\t\t[-78.191107, 39.690262],\n\t\t\t\t\t\t[-78.224337, 39.663270],\n\t\t\t\t\t\t[-78.271122, 39.619642],\n\t\t\t\t\t\t[-78.283039, 39.620470],\n\t\t\t\t\t\t[-78.313033, 39.631001],\n\t\t\t\t\t\t[-78.334044, 39.635770],\n\t\t\t\t\t\t[-78.342834, 39.722539],\n\t\t\t\t\t\t[-78.342520, 39.722539],\n\t\t\t\t\t\t[-78.340498, 39.722514],\n\t\t\t\t\t\t[-78.339539, 39.722552],\n\t\t\t\t\t\t[-78.337111, 39.722461],\n\t\t\t\t\t\t[-78.330715, 39.722689],\n\t\t\t\t\t\t[-78.269020, 39.722613],\n\t\t\t\t\t\t[-78.268948, 39.722590],\n\t\t\t\t\t\t[-78.243103, 39.722481],\n\t\t\t\t\t\t[-78.240334, 39.722498],\n\t\t\t\t\t\t[-78.204450, 39.722520],\n\t\t\t\t\t\t[-78.202895, 39.722416],\n\t\t\t\t\t\t[-78.099140, 39.722322],\n\t\t\t\t\t\t[-78.075771, 39.722301],\n\t\t\t\t\t\t[-78.073736, 39.722314],\n\t\t\t\t\t\t[-77.768534, 39.721358],\n\t\t\t\t\t\t[-77.743204, 39.721205],\n\t\t\t\t\t\t[-77.732615, 39.721094],\n\t\t\t\t\t\t[-77.724115, 39.720894],\n\t\t\t\t\t\t[-77.674522, 39.720847],\n\t\t\t\t\t\t[-77.672249, 39.720778],\n\t\t\t\t\t\t[-77.534758, 39.720134],\n\t\t\t\t\t\t[-77.533371, 39.720165],\n\t\t\t\t\t\t[-77.469145, 39.720018],\n\t\t\t\t\t\t[-77.570182, 39.619998],\n\t\t\t\t\t\t[-77.677505, 39.318699],\n\t\t\t\t\t\t[-77.719029, 39.321125],\n\t\t\t\t\t\t[-77.727379, 39.321666],\n\t\t\t\t\t\t[-77.755789, 39.333899],\n\t\t\t\t\t\t[-77.760586, 39.338864],\n\t\t\t\t\t\t[-77.760435, 39.344171],\n\t\t\t\t\t\t[-77.739204, 39.385730],\n\t\t\t\t\t\t[-77.765442, 39.428574],\n\t\t\t\t\t\t[-77.807821, 39.490241],\n\t\t\t\t\t\t[-77.825411, 39.494036]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US32031\",\n\t\t\t\t\"STATE\": \"32\",\n\t\t\t\t\"COUNTY\": \"031\",\n\t\t\t\t\"NAME\": \"Washoe\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 6302.366000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-119.360177, 41.994384],\n\t\t\t\t\t\t[-119.324182, 41.994278],\n\t\t\t\t\t\t[-119.323955, 41.414519],\n\t\t\t\t\t\t[-119.304635, 41.414695],\n\t\t\t\t\t\t[-119.305713, 41.234542],\n\t\t\t\t\t\t[-119.331068, 41.235118],\n\t\t\t\t\t\t[-119.329791, 40.960394],\n\t\t\t\t\t\t[-119.309598, 40.960378],\n\t\t\t\t\t\t[-119.313037, 40.518314],\n\t\t\t\t\t\t[-119.338504, 40.517805],\n\t\t\t\t\t\t[-119.339296, 39.998609],\n\t\t\t\t\t\t[-119.225176, 39.999385],\n\t\t\t\t\t\t[-119.208543, 39.809967],\n\t\t\t\t\t\t[-119.170899, 39.788288],\n\t\t\t\t\t\t[-119.189342, 39.650870],\n\t\t\t\t\t\t[-119.258760, 39.649213],\n\t\t\t\t\t\t[-119.283637, 39.621561],\n\t\t\t\t\t\t[-119.279801, 39.627112],\n\t\t\t\t\t\t[-119.370604, 39.586882],\n\t\t\t\t\t\t[-119.467141, 39.584502],\n\t\t\t\t\t\t[-119.582952, 39.547302],\n\t\t\t\t\t\t[-119.621697, 39.511602],\n\t\t\t\t\t\t[-119.695643, 39.520023],\n\t\t\t\t\t\t[-119.685464, 39.389575],\n\t\t\t\t\t\t[-119.658501, 39.331544],\n\t\t\t\t\t\t[-119.712645, 39.250871],\n\t\t\t\t\t\t[-119.880787, 39.165509],\n\t\t\t\t\t\t[-120.004504, 39.165599],\n\t\t\t\t\t\t[-120.005746, 39.225210],\n\t\t\t\t\t\t[-120.005743, 39.228664],\n\t\t\t\t\t\t[-120.005414, 39.313345],\n\t\t\t\t\t\t[-120.005413, 39.313848],\n\t\t\t\t\t\t[-120.005320, 39.316350],\n\t\t\t\t\t\t[-120.005318, 39.316479],\n\t\t\t\t\t\t[-120.003117, 39.445045],\n\t\t\t\t\t\t[-120.003116, 39.445113],\n\t\t\t\t\t\t[-120.001319, 39.722416],\n\t\t\t\t\t\t[-120.001319, 39.722420],\n\t\t\t\t\t\t[-120.000502, 39.779956],\n\t\t\t\t\t\t[-120.000607, 39.780779],\n\t\t\t\t\t\t[-119.997291, 40.071803],\n\t\t\t\t\t\t[-119.997175, 40.077245],\n\t\t\t\t\t\t[-119.997234, 40.091591],\n\t\t\t\t\t\t[-119.997124, 40.126363],\n\t\t\t\t\t\t[-119.996183, 40.262461],\n\t\t\t\t\t\t[-119.996182, 40.263532],\n\t\t\t\t\t\t[-119.996155, 40.321250],\n\t\t\t\t\t\t[-119.996155, 40.321838],\n\t\t\t\t\t\t[-119.995926, 40.499901],\n\t\t\t\t\t\t[-119.999231, 40.865899],\n\t\t\t\t\t\t[-119.999232, 40.867454],\n\t\t\t\t\t\t[-119.999358, 40.873101],\n\t\t\t\t\t\t[-119.999866, 41.183974],\n\t\t\t\t\t\t[-119.999168, 41.994540],\n\t\t\t\t\t\t[-119.986678, 41.995842],\n\t\t\t\t\t\t[-119.790087, 41.997544],\n\t\t\t\t\t\t[-119.360177, 41.994384]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US32510\",\n\t\t\t\t\"STATE\": \"32\",\n\t\t\t\t\"COUNTY\": \"510\",\n\t\t\t\t\"NAME\": \"Carson City\",\n\t\t\t\t\"LSAD\": \"\",\n\t\t\t\t\"CENSUSAREA\": 144.662000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-120.004504, 39.165599],\n\t\t\t\t\t\t[-119.880787, 39.165509],\n\t\t\t\t\t\t[-119.712645, 39.250871],\n\t\t\t\t\t\t[-119.648977, 39.195287],\n\t\t\t\t\t\t[-119.563680, 39.195415],\n\t\t\t\t\t\t[-119.551020, 39.085791],\n\t\t\t\t\t\t[-119.752116, 39.084904],\n\t\t\t\t\t\t[-119.761213, 39.114009],\n\t\t\t\t\t\t[-120.003402, 39.112687],\n\t\t\t\t\t\t[-120.004504, 39.165599]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US33003\",\n\t\t\t\t\"STATE\": \"33\",\n\t\t\t\t\"COUNTY\": \"003\",\n\t\t\t\t\"NAME\": \"Carroll\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 931.061000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-71.037296, 43.529689],\n\t\t\t\t\t\t[-71.163626, 43.539370],\n\t\t\t\t\t\t[-71.344184, 43.629327],\n\t\t\t\t\t\t[-71.439621, 43.696002],\n\t\t\t\t\t\t[-71.460347, 43.709747],\n\t\t\t\t\t\t[-71.532369, 43.765028],\n\t\t\t\t\t\t[-71.564615, 43.893110],\n\t\t\t\t\t\t[-71.361889, 43.915549],\n\t\t\t\t\t\t[-71.415801, 44.212082],\n\t\t\t\t\t\t[-71.407246, 44.213258],\n\t\t\t\t\t\t[-71.406901, 44.213320],\n\t\t\t\t\t\t[-71.395246, 44.214910],\n\t\t\t\t\t\t[-71.384993, 44.179144],\n\t\t\t\t\t\t[-71.357508, 44.166003],\n\t\t\t\t\t\t[-71.343214, 44.122282],\n\t\t\t\t\t\t[-71.343617, 44.092234],\n\t\t\t\t\t\t[-71.252401, 44.244235],\n\t\t\t\t\t\t[-71.042493, 44.237803],\n\t\t\t\t\t\t[-71.010239, 44.284774],\n\t\t\t\t\t\t[-71.008736, 44.258825],\n\t\t\t\t\t\t[-71.008764, 44.258443],\n\t\t\t\t\t\t[-71.001335, 44.093205],\n\t\t\t\t\t\t[-71.001367, 44.092931],\n\t\t\t\t\t\t[-70.992986, 43.914232],\n\t\t\t\t\t\t[-70.992086, 43.886261],\n\t\t\t\t\t\t[-70.989067, 43.792440],\n\t\t\t\t\t\t[-70.989041, 43.792152],\n\t\t\t\t\t\t[-70.982083, 43.715043],\n\t\t\t\t\t\t[-70.982238, 43.711865],\n\t\t\t\t\t\t[-70.981978, 43.701965],\n\t\t\t\t\t\t[-70.981946, 43.700960],\n\t\t\t\t\t\t[-70.980758, 43.684141],\n\t\t\t\t\t\t[-70.979985, 43.673195],\n\t\t\t\t\t\t[-70.972716, 43.570255],\n\t\t\t\t\t\t[-70.953322, 43.552718],\n\t\t\t\t\t\t[-70.955346, 43.540697],\n\t\t\t\t\t\t[-70.955337, 43.540980],\n\t\t\t\t\t\t[-70.958958, 43.537634],\n\t\t\t\t\t\t[-71.037296, 43.529689]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US33009\",\n\t\t\t\t\"STATE\": \"33\",\n\t\t\t\t\"COUNTY\": \"009\",\n\t\t\t\t\"NAME\": \"Grafton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1708.749000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-71.864053, 43.599442],\n\t\t\t\t\t\t[-71.892145, 43.574660],\n\t\t\t\t\t\t[-71.935220, 43.528449],\n\t\t\t\t\t\t[-72.329620, 43.600201],\n\t\t\t\t\t\t[-72.334745, 43.614519],\n\t\t\t\t\t\t[-72.334401, 43.619250],\n\t\t\t\t\t\t[-72.329660, 43.634648],\n\t\t\t\t\t\t[-72.302867, 43.702718],\n\t\t\t\t\t\t[-72.271180, 43.734138],\n\t\t\t\t\t\t[-72.264245, 43.734158],\n\t\t\t\t\t\t[-72.232713, 43.748286],\n\t\t\t\t\t\t[-72.205717, 43.771143],\n\t\t\t\t\t\t[-72.204792, 43.771926],\n\t\t\t\t\t\t[-72.183743, 43.806644],\n\t\t\t\t\t\t[-72.182203, 43.834032],\n\t\t\t\t\t\t[-72.167224, 43.886113],\n\t\t\t\t\t\t[-72.121002, 43.918956],\n\t\t\t\t\t\t[-72.104421, 43.950536],\n\t\t\t\t\t\t[-72.105594, 43.959029],\n\t\t\t\t\t\t[-72.107042, 43.969513],\n\t\t\t\t\t\t[-72.113078, 43.972790],\n\t\t\t\t\t\t[-72.112813, 43.988020],\n\t\t\t\t\t\t[-72.090710, 44.035211],\n\t\t\t\t\t\t[-72.054675, 44.112147],\n\t\t\t\t\t\t[-72.040082, 44.155748],\n\t\t\t\t\t\t[-72.040082, 44.155749],\n\t\t\t\t\t\t[-72.042087, 44.157633],\n\t\t\t\t\t\t[-72.053021, 44.167903],\n\t\t\t\t\t\t[-72.064285, 44.187888],\n\t\t\t\t\t\t[-72.067774, 44.270976],\n\t\t\t\t\t\t[-72.065434, 44.277235],\n\t\t\t\t\t\t[-72.058880, 44.286240],\n\t\t\t\t\t\t[-72.012173, 44.321408],\n\t\t\t\t\t\t[-72.002314, 44.324871],\n\t\t\t\t\t\t[-71.849465, 44.359295],\n\t\t\t\t\t\t[-71.816065, 44.366817],\n\t\t\t\t\t\t[-71.814388, 44.381932],\n\t\t\t\t\t\t[-71.793924, 44.399271],\n\t\t\t\t\t\t[-71.764537, 44.406403],\n\t\t\t\t\t\t[-71.696665, 44.332326],\n\t\t\t\t\t\t[-71.587113, 44.304786],\n\t\t\t\t\t\t[-71.575752, 44.254699],\n\t\t\t\t\t\t[-71.443312, 44.249291],\n\t\t\t\t\t\t[-71.415801, 44.212082],\n\t\t\t\t\t\t[-71.361889, 43.915549],\n\t\t\t\t\t\t[-71.564615, 43.893110],\n\t\t\t\t\t\t[-71.532369, 43.765028],\n\t\t\t\t\t\t[-71.522193, 43.697182],\n\t\t\t\t\t\t[-71.648057, 43.686154],\n\t\t\t\t\t\t[-71.650910, 43.621228],\n\t\t\t\t\t\t[-71.727750, 43.563524],\n\t\t\t\t\t\t[-71.818050, 43.544603],\n\t\t\t\t\t\t[-71.864053, 43.599442]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US33015\",\n\t\t\t\t\"STATE\": \"33\",\n\t\t\t\t\"COUNTY\": \"015\",\n\t\t\t\t\"NAME\": \"Rockingham\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 694.720000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-70.819549, 43.123231],\n\t\t\t\t\t\t[-70.784108, 43.098963],\n\t\t\t\t\t\t[-70.756397, 43.079988],\n\t\t\t\t\t\t[-70.703936, 43.059621],\n\t\t\t\t\t\t[-70.718936, 43.032350],\n\t\t\t\t\t\t[-70.744570, 43.000090],\n\t\t\t\t\t\t[-70.749024, 42.995467],\n\t\t\t\t\t\t[-70.759975, 42.988592],\n\t\t\t\t\t\t[-70.795596, 42.936290],\n\t\t\t\t\t\t[-70.810069, 42.909549],\n\t\t\t\t\t\t[-70.814610, 42.891346],\n\t\t\t\t\t\t[-70.816321, 42.884487],\n\t\t\t\t\t\t[-70.817296, 42.872290],\n\t\t\t\t\t\t[-70.848625, 42.860939],\n\t\t\t\t\t\t[-70.886136, 42.882610],\n\t\t\t\t\t\t[-70.902768, 42.886530],\n\t\t\t\t\t\t[-70.914886, 42.886564],\n\t\t\t\t\t\t[-70.914899, 42.886589],\n\t\t\t\t\t\t[-70.930799, 42.884589],\n\t\t\t\t\t\t[-70.931699, 42.884189],\n\t\t\t\t\t\t[-70.996901, 42.864589],\n\t\t\t\t\t\t[-71.037901, 42.854089],\n\t\t\t\t\t\t[-71.058407, 42.847009],\n\t\t\t\t\t\t[-71.113858, 42.827865],\n\t\t\t\t\t\t[-71.149703, 42.815489],\n\t\t\t\t\t\t[-71.165603, 42.808689],\n\t\t\t\t\t\t[-71.186104, 42.790689],\n\t\t\t\t\t\t[-71.181803, 42.737590],\n\t\t\t\t\t\t[-71.208137, 42.743273],\n\t\t\t\t\t\t[-71.208227, 42.743294],\n\t\t\t\t\t\t[-71.208302, 42.743314],\n\t\t\t\t\t\t[-71.245504, 42.742589],\n\t\t\t\t\t\t[-71.360808, 42.798988],\n\t\t\t\t\t\t[-71.441810, 42.889586],\n\t\t\t\t\t\t[-71.377409, 42.947185],\n\t\t\t\t\t\t[-71.391868, 43.007857],\n\t\t\t\t\t\t[-71.392210, 43.008984],\n\t\t\t\t\t\t[-71.356182, 43.101971],\n\t\t\t\t\t\t[-71.247215, 43.274201],\n\t\t\t\t\t\t[-71.026688, 43.138086],\n\t\t\t\t\t\t[-71.072984, 43.081748],\n\t\t\t\t\t\t[-70.875486, 43.080457],\n\t\t\t\t\t\t[-70.861030, 43.095602],\n\t\t\t\t\t\t[-70.861535, 43.125021],\n\t\t\t\t\t\t[-70.819549, 43.123231]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US33019\",\n\t\t\t\t\"STATE\": \"33\",\n\t\t\t\t\"COUNTY\": \"019\",\n\t\t\t\t\"NAME\": \"Sullivan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 537.313000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-72.053802, 43.441078],\n\t\t\t\t\t\t[-72.090028, 43.322567],\n\t\t\t\t\t\t[-72.008995, 43.187874],\n\t\t\t\t\t\t[-72.036791, 43.182553],\n\t\t\t\t\t\t[-72.023403, 43.160151],\n\t\t\t\t\t\t[-72.038149, 43.128807],\n\t\t\t\t\t\t[-72.178457, 43.131955],\n\t\t\t\t\t\t[-72.156548, 43.181962],\n\t\t\t\t\t\t[-72.452100, 43.161414],\n\t\t\t\t\t\t[-72.439407, 43.211322],\n\t\t\t\t\t\t[-72.431187, 43.231786],\n\t\t\t\t\t\t[-72.397150, 43.316515],\n\t\t\t\t\t\t[-72.400511, 43.337073],\n\t\t\t\t\t\t[-72.403949, 43.358098],\n\t\t\t\t\t\t[-72.405253, 43.389992],\n\t\t\t\t\t\t[-72.396948, 43.428925],\n\t\t\t\t\t\t[-72.396934, 43.428990],\n\t\t\t\t\t\t[-72.387852, 43.471567],\n\t\t\t\t\t\t[-72.387642, 43.502481],\n\t\t\t\t\t\t[-72.395825, 43.520560],\n\t\t\t\t\t\t[-72.329620, 43.600201],\n\t\t\t\t\t\t[-71.935220, 43.528449],\n\t\t\t\t\t\t[-72.053802, 43.441078]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US34003\",\n\t\t\t\t\"STATE\": \"34\",\n\t\t\t\t\"COUNTY\": \"003\",\n\t\t\t\t\"NAME\": \"Bergen\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 233.009000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-74.213373, 41.133828],\n\t\t\t\t\t\t[-74.096786, 41.083796],\n\t\t\t\t\t\t[-74.092486, 41.081896],\n\t\t\t\t\t\t[-74.041054, 41.059088],\n\t\t\t\t\t\t[-74.041049, 41.059086],\n\t\t\t\t\t\t[-73.911880, 41.001297],\n\t\t\t\t\t\t[-73.902680, 40.997297],\n\t\t\t\t\t\t[-73.893979, 40.997197],\n\t\t\t\t\t\t[-73.917905, 40.917577],\n\t\t\t\t\t\t[-73.919705, 40.913478],\n\t\t\t\t\t\t[-73.927470, 40.895682],\n\t\t\t\t\t\t[-73.933406, 40.882078],\n\t\t\t\t\t\t[-73.933408, 40.882075],\n\t\t\t\t\t\t[-73.938081, 40.874699],\n\t\t\t\t\t\t[-73.948281, 40.858399],\n\t\t\t\t\t\t[-73.986864, 40.798344],\n\t\t\t\t\t\t[-74.017204, 40.823541],\n\t\t\t\t\t\t[-74.044977, 40.807702],\n\t\t\t\t\t\t[-74.147529, 40.786491],\n\t\t\t\t\t\t[-74.138487, 40.798700],\n\t\t\t\t\t\t[-74.139825, 40.803147],\n\t\t\t\t\t\t[-74.136487, 40.818200],\n\t\t\t\t\t\t[-74.130031, 40.819962],\n\t\t\t\t\t\t[-74.148059, 40.941590],\n\t\t\t\t\t\t[-74.148158, 40.942339],\n\t\t\t\t\t\t[-74.146429, 40.948441],\n\t\t\t\t\t\t[-74.141048, 40.966348],\n\t\t\t\t\t\t[-74.170210, 40.983865],\n\t\t\t\t\t\t[-74.170988, 40.976997],\n\t\t\t\t\t\t[-74.270521, 41.022131],\n\t\t\t\t\t\t[-74.213373, 41.133828]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US34009\",\n\t\t\t\t\"STATE\": \"34\",\n\t\t\t\t\"COUNTY\": \"009\",\n\t\t\t\t\"NAME\": \"Cape May\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 251.425000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-74.914936, 39.177553],\n\t\t\t\t\t\t[-74.861073, 39.323768],\n\t\t\t\t\t\t[-74.699745, 39.289593],\n\t\t\t\t\t\t[-74.541443, 39.300245],\n\t\t\t\t\t\t[-74.551151, 39.293539],\n\t\t\t\t\t\t[-74.553439, 39.286915],\n\t\t\t\t\t\t[-74.560957, 39.278677],\n\t\t\t\t\t\t[-74.581008, 39.270819],\n\t\t\t\t\t\t[-74.597921, 39.258851],\n\t\t\t\t\t\t[-74.614481, 39.244659],\n\t\t\t\t\t\t[-74.636306, 39.220834],\n\t\t\t\t\t\t[-74.646595, 39.212002],\n\t\t\t\t\t\t[-74.651443, 39.198578],\n\t\t\t\t\t\t[-74.671430, 39.179802],\n\t\t\t\t\t\t[-74.714341, 39.119804],\n\t\t\t\t\t\t[-74.715320, 39.116893],\n\t\t\t\t\t\t[-74.714135, 39.114631],\n\t\t\t\t\t\t[-74.704409, 39.107858],\n\t\t\t\t\t\t[-74.705876, 39.102937],\n\t\t\t\t\t\t[-74.738316, 39.074727],\n\t\t\t\t\t\t[-74.778777, 39.023073],\n\t\t\t\t\t\t[-74.786356, 39.000113],\n\t\t\t\t\t\t[-74.792723, 38.991991],\n\t\t\t\t\t\t[-74.807917, 38.985948],\n\t\t\t\t\t\t[-74.819354, 38.979402],\n\t\t\t\t\t\t[-74.850748, 38.954538],\n\t\t\t\t\t\t[-74.864458, 38.940410],\n\t\t\t\t\t\t[-74.865198, 38.941439],\n\t\t\t\t\t\t[-74.870497, 38.943543],\n\t\t\t\t\t\t[-74.882309, 38.941759],\n\t\t\t\t\t\t[-74.907050, 38.931994],\n\t\t\t\t\t\t[-74.920414, 38.929136],\n\t\t\t\t\t\t[-74.933571, 38.928519],\n\t\t\t\t\t\t[-74.963463, 38.931194],\n\t\t\t\t\t\t[-74.967274, 38.933413],\n\t\t\t\t\t\t[-74.971995, 38.940370],\n\t\t\t\t\t\t[-74.955363, 39.001262],\n\t\t\t\t\t\t[-74.949470, 39.015637],\n\t\t\t\t\t\t[-74.938320, 39.035185],\n\t\t\t\t\t\t[-74.903664, 39.087437],\n\t\t\t\t\t\t[-74.897784, 39.098811],\n\t\t\t\t\t\t[-74.892547, 39.113183],\n\t\t\t\t\t\t[-74.885914, 39.143627],\n\t\t\t\t\t\t[-74.887167, 39.158825],\n\t\t\t\t\t\t[-74.905181, 39.174945],\n\t\t\t\t\t\t[-74.914936, 39.177553]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US34013\",\n\t\t\t\t\"STATE\": \"34\",\n\t\t\t\t\"COUNTY\": \"013\",\n\t\t\t\t\"NAME\": \"Essex\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 126.212000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-74.164799, 40.754718],\n\t\t\t\t\t\t[-74.165987, 40.745199],\n\t\t\t\t\t\t[-74.161958, 40.736007],\n\t\t\t\t\t\t[-74.116993, 40.737125],\n\t\t\t\t\t\t[-74.117057, 40.710381],\n\t\t\t\t\t\t[-74.112787, 40.703102],\n\t\t\t\t\t\t[-74.122911, 40.691172],\n\t\t\t\t\t\t[-74.136703, 40.674444],\n\t\t\t\t\t\t[-74.201589, 40.686602],\n\t\t\t\t\t\t[-74.222452, 40.707249],\n\t\t\t\t\t\t[-74.285870, 40.722225],\n\t\t\t\t\t\t[-74.301230, 40.713472],\n\t\t\t\t\t\t[-74.302092, 40.713301],\n\t\t\t\t\t\t[-74.302695, 40.713601],\n\t\t\t\t\t\t[-74.303691, 40.713300],\n\t\t\t\t\t\t[-74.305393, 40.713701],\n\t\t\t\t\t\t[-74.306991, 40.714002],\n\t\t\t\t\t\t[-74.307589, 40.714201],\n\t\t\t\t\t\t[-74.308793, 40.714508],\n\t\t\t\t\t\t[-74.309388, 40.714901],\n\t\t\t\t\t\t[-74.309791, 40.715501],\n\t\t\t\t\t\t[-74.311691, 40.715601],\n\t\t\t\t\t\t[-74.312794, 40.717101],\n\t\t\t\t\t\t[-74.313793, 40.718001],\n\t\t\t\t\t\t[-74.315293, 40.718601],\n\t\t\t\t\t\t[-74.315991, 40.719199],\n\t\t\t\t\t\t[-74.318992, 40.719201],\n\t\t\t\t\t\t[-74.321408, 40.719072],\n\t\t\t\t\t\t[-74.325596, 40.717075],\n\t\t\t\t\t\t[-74.342682, 40.725181],\n\t\t\t\t\t\t[-74.354942, 40.734500],\n\t\t\t\t\t\t[-74.371923, 40.739229],\n\t\t\t\t\t\t[-74.334316, 40.905302],\n\t\t\t\t\t\t[-74.270702, 40.896920],\n\t\t\t\t\t\t[-74.259813, 40.883769],\n\t\t\t\t\t\t[-74.246691, 40.880799],\n\t\t\t\t\t\t[-74.130031, 40.819962],\n\t\t\t\t\t\t[-74.136487, 40.818200],\n\t\t\t\t\t\t[-74.139825, 40.803147],\n\t\t\t\t\t\t[-74.138487, 40.798700],\n\t\t\t\t\t\t[-74.147529, 40.786491],\n\t\t\t\t\t\t[-74.147859, 40.784683],\n\t\t\t\t\t\t[-74.148266, 40.779876],\n\t\t\t\t\t\t[-74.155798, 40.770815],\n\t\t\t\t\t\t[-74.157688, 40.766100],\n\t\t\t\t\t\t[-74.163388, 40.759401],\n\t\t\t\t\t\t[-74.164799, 40.754718]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39167\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"167\",\n\t\t\t\t\"NAME\": \"Washington\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 631.972000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.371271, 39.342062],\n\t\t\t\t\t\t[-81.375961, 39.341697],\n\t\t\t\t\t\t[-81.384556, 39.343449],\n\t\t\t\t\t\t[-81.393794, 39.351706],\n\t\t\t\t\t\t[-81.406689, 39.388090],\n\t\t\t\t\t\t[-81.412706, 39.394618],\n\t\t\t\t\t\t[-81.435642, 39.408474],\n\t\t\t\t\t\t[-81.446543, 39.410374],\n\t\t\t\t\t\t[-81.456143, 39.409274],\n\t\t\t\t\t\t[-81.467744, 39.403774],\n\t\t\t\t\t\t[-81.542346, 39.352874],\n\t\t\t\t\t\t[-81.605816, 39.275851],\n\t\t\t\t\t\t[-81.695724, 39.242859],\n\t\t\t\t\t\t[-81.721551, 39.212448],\n\t\t\t\t\t\t[-81.721808, 39.269597],\n\t\t\t\t\t\t[-81.853668, 39.318165],\n\t\t\t\t\t\t[-81.844863, 39.450216],\n\t\t\t\t\t\t[-81.823158, 39.494072],\n\t\t\t\t\t\t[-81.708527, 39.480775],\n\t\t\t\t\t\t[-81.714447, 39.584236],\n\t\t\t\t\t\t[-81.588185, 39.586973],\n\t\t\t\t\t\t[-81.473471, 39.583318],\n\t\t\t\t\t\t[-81.473160, 39.645976],\n\t\t\t\t\t\t[-81.394934, 39.601547],\n\t\t\t\t\t\t[-81.283075, 39.605796],\n\t\t\t\t\t\t[-81.246808, 39.579037],\n\t\t\t\t\t\t[-81.036791, 39.572118],\n\t\t\t\t\t\t[-81.038691, 39.540464],\n\t\t\t\t\t\t[-81.063587, 39.520497],\n\t\t\t\t\t\t[-81.127696, 39.464879],\n\t\t\t\t\t\t[-81.215617, 39.388602],\n\t\t\t\t\t\t[-81.223581, 39.386062],\n\t\t\t\t\t\t[-81.249088, 39.389992],\n\t\t\t\t\t\t[-81.270716, 39.385914],\n\t\t\t\t\t\t[-81.295373, 39.375290],\n\t\t\t\t\t\t[-81.347567, 39.345770],\n\t\t\t\t\t\t[-81.356911, 39.343178],\n\t\t\t\t\t\t[-81.371271, 39.342062]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39171\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"171\",\n\t\t\t\t\"NAME\": \"Williams\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 420.965000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.341664, 41.427568],\n\t\t\t\t\t\t[-84.803956, 41.426044],\n\t\t\t\t\t\t[-84.803956, 41.426128],\n\t\t\t\t\t\t[-84.803919, 41.435531],\n\t\t\t\t\t\t[-84.804457, 41.488224],\n\t\t\t\t\t\t[-84.804551, 41.500364],\n\t\t\t\t\t\t[-84.804729, 41.530092],\n\t\t\t\t\t\t[-84.804729, 41.530135],\n\t\t\t\t\t\t[-84.804729, 41.530231],\n\t\t\t\t\t\t[-84.805812, 41.613040],\n\t\t\t\t\t\t[-84.805696, 41.631398],\n\t\t\t\t\t\t[-84.805673, 41.632342],\n\t\t\t\t\t\t[-84.806210, 41.674550],\n\t\t\t\t\t\t[-84.806082, 41.696089],\n\t\t\t\t\t\t[-84.438067, 41.704903],\n\t\t\t\t\t\t[-84.399546, 41.705758],\n\t\t\t\t\t\t[-84.380735, 41.513942],\n\t\t\t\t\t\t[-84.341902, 41.485519],\n\t\t\t\t\t\t[-84.341664, 41.427568]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39175\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"175\",\n\t\t\t\t\"NAME\": \"Wyandot\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 406.865000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.111360, 40.702915],\n\t\t\t\t\t\t[-83.304687, 40.702006],\n\t\t\t\t\t\t[-83.419836, 40.686823],\n\t\t\t\t\t\t[-83.495799, 40.701617],\n\t\t\t\t\t\t[-83.515883, 40.818134],\n\t\t\t\t\t\t[-83.420319, 40.991889],\n\t\t\t\t\t\t[-83.305004, 40.992787],\n\t\t\t\t\t\t[-83.112737, 40.993447],\n\t\t\t\t\t\t[-83.111360, 40.702915]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40003\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"003\",\n\t\t\t\t\"NAME\": \"Alfalfa\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 866.455000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.104286, 36.593578],\n\t\t\t\t\t\t[-98.104427, 36.463105],\n\t\t\t\t\t\t[-98.533617, 36.463230],\n\t\t\t\t\t\t[-98.544660, 36.998996],\n\t\t\t\t\t\t[-98.420209, 36.998516],\n\t\t\t\t\t\t[-98.418268, 36.998538],\n\t\t\t\t\t\t[-98.408991, 36.998513],\n\t\t\t\t\t\t[-98.354073, 36.997961],\n\t\t\t\t\t\t[-98.347149, 36.997962],\n\t\t\t\t\t\t[-98.346188, 36.997962],\n\t\t\t\t\t\t[-98.237712, 36.997972],\n\t\t\t\t\t\t[-98.219499, 36.997824],\n\t\t\t\t\t\t[-98.208218, 36.997997],\n\t\t\t\t\t\t[-98.177596, 36.998009],\n\t\t\t\t\t\t[-98.147452, 36.998162],\n\t\t\t\t\t\t[-98.111985, 36.998133],\n\t\t\t\t\t\t[-98.109311, 36.593588],\n\t\t\t\t\t\t[-98.104286, 36.593578]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40011\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"011\",\n\t\t\t\t\"NAME\": \"Blaine\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 928.424000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.636899, 36.164894],\n\t\t\t\t\t\t[-98.601244, 36.165771],\n\t\t\t\t\t\t[-98.210544, 36.164890],\n\t\t\t\t\t\t[-98.207104, 35.725140],\n\t\t\t\t\t\t[-98.313370, 35.725204],\n\t\t\t\t\t\t[-98.313251, 35.551523],\n\t\t\t\t\t\t[-98.623149, 35.551597],\n\t\t\t\t\t\t[-98.632070, 35.551617],\n\t\t\t\t\t\t[-98.631985, 35.812402],\n\t\t\t\t\t\t[-98.636899, 36.164894]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40013\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"013\",\n\t\t\t\t\"NAME\": \"Bryan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 904.471000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.846334, 33.841136],\n\t\t\t\t\t\t[-95.949935, 33.857452],\n\t\t\t\t\t\t[-96.097526, 33.847544],\n\t\t\t\t\t\t[-96.148070, 33.837799],\n\t\t\t\t\t\t[-96.156717, 33.813324],\n\t\t\t\t\t\t[-96.164100, 33.784261],\n\t\t\t\t\t\t[-96.170055, 33.769170],\n\t\t\t\t\t\t[-96.181704, 33.758504],\n\t\t\t\t\t\t[-96.199900, 33.752117],\n\t\t\t\t\t\t[-96.220521, 33.747390],\n\t\t\t\t\t\t[-96.229859, 33.748320],\n\t\t\t\t\t\t[-96.304675, 33.745901],\n\t\t\t\t\t\t[-96.369590, 33.716809],\n\t\t\t\t\t\t[-96.378473, 33.726648],\n\t\t\t\t\t\t[-96.423362, 33.776365],\n\t\t\t\t\t\t[-96.436455, 33.780050],\n\t\t\t\t\t\t[-96.448045, 33.781031],\n\t\t\t\t\t\t[-96.500268, 33.772583],\n\t\t\t\t\t\t[-96.612925, 33.833939],\n\t\t\t\t\t\t[-96.614870, 33.841234],\n\t\t\t\t\t\t[-96.615843, 33.853393],\n\t\t\t\t\t\t[-96.612963, 33.867651],\n\t\t\t\t\t\t[-96.611466, 33.875278],\n\t\t\t\t\t\t[-96.613494, 33.878321],\n\t\t\t\t\t\t[-96.577010, 33.964406],\n\t\t\t\t\t\t[-96.624748, 34.005417],\n\t\t\t\t\t\t[-96.548028, 34.063302],\n\t\t\t\t\t\t[-96.585355, 34.114459],\n\t\t\t\t\t\t[-96.453839, 34.114406],\n\t\t\t\t\t\t[-96.407640, 34.157317],\n\t\t\t\t\t\t[-95.991578, 34.156815],\n\t\t\t\t\t\t[-95.938150, 34.125100],\n\t\t\t\t\t\t[-95.937947, 33.948163],\n\t\t\t\t\t\t[-95.836905, 33.873374],\n\t\t\t\t\t\t[-95.757156, 33.867293],\n\t\t\t\t\t\t[-95.763622, 33.847954],\n\t\t\t\t\t\t[-95.824680, 33.837726],\n\t\t\t\t\t\t[-95.846334, 33.841136]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40017\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"017\",\n\t\t\t\t\"NAME\": \"Canadian\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 896.626000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.671319, 35.464338],\n\t\t\t\t\t\t[-97.671369, 35.377151],\n\t\t\t\t\t\t[-97.671529, 35.337508],\n\t\t\t\t\t\t[-97.671595, 35.335934],\n\t\t\t\t\t\t[-97.685054, 35.334301],\n\t\t\t\t\t\t[-97.695870, 35.327709],\n\t\t\t\t\t\t[-97.706159, 35.324989],\n\t\t\t\t\t\t[-97.720035, 35.328515],\n\t\t\t\t\t\t[-97.724708, 35.325832],\n\t\t\t\t\t\t[-97.737305, 35.323762],\n\t\t\t\t\t\t[-97.771765, 35.345735],\n\t\t\t\t\t\t[-97.777567, 35.337087],\n\t\t\t\t\t\t[-97.788319, 35.336643],\n\t\t\t\t\t\t[-97.792022, 35.332702],\n\t\t\t\t\t\t[-97.796719, 35.339105],\n\t\t\t\t\t\t[-97.807186, 35.340846],\n\t\t\t\t\t\t[-97.812129, 35.333788],\n\t\t\t\t\t\t[-97.833675, 35.335362],\n\t\t\t\t\t\t[-98.096014, 35.377753],\n\t\t\t\t\t\t[-98.306326, 35.377239],\n\t\t\t\t\t\t[-98.313251, 35.551523],\n\t\t\t\t\t\t[-98.313370, 35.725204],\n\t\t\t\t\t\t[-98.207104, 35.725140],\n\t\t\t\t\t\t[-97.674026, 35.725970],\n\t\t\t\t\t\t[-97.671319, 35.464338]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40025\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"025\",\n\t\t\t\t\"NAME\": \"Cimarron\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1834.738000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-102.162463, 36.500326],\n\t\t\t\t\t\t[-103.002434, 36.500397],\n\t\t\t\t\t\t[-103.002565, 36.526588],\n\t\t\t\t\t\t[-103.002188, 36.602716],\n\t\t\t\t\t\t[-103.002252, 36.617180],\n\t\t\t\t\t\t[-103.002518, 36.675186],\n\t\t\t\t\t\t[-103.002198, 36.719427],\n\t\t\t\t\t\t[-103.001964, 36.909573],\n\t\t\t\t\t\t[-103.002247, 36.911587],\n\t\t\t\t\t\t[-103.002199, 37.000104],\n\t\t\t\t\t\t[-102.986976, 36.998524],\n\t\t\t\t\t\t[-102.985807, 36.998571],\n\t\t\t\t\t\t[-102.979613, 36.998549],\n\t\t\t\t\t\t[-102.875481, 36.999628],\n\t\t\t\t\t\t[-102.570896, 36.995136],\n\t\t\t\t\t\t[-102.355367, 36.994575],\n\t\t\t\t\t\t[-102.355288, 36.994506],\n\t\t\t\t\t\t[-102.208316, 36.993730],\n\t\t\t\t\t\t[-102.184271, 36.993593],\n\t\t\t\t\t\t[-102.054503, 36.993109],\n\t\t\t\t\t\t[-102.042240, 36.993083],\n\t\t\t\t\t\t[-102.028207, 36.993125],\n\t\t\t\t\t\t[-102.028204, 36.993125],\n\t\t\t\t\t\t[-102.032339, 36.500066],\n\t\t\t\t\t\t[-102.162463, 36.500326]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40029\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"029\",\n\t\t\t\t\"NAME\": \"Coal\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 516.682000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.092043, 34.680556],\n\t\t\t\t\t\t[-96.091873, 34.506155],\n\t\t\t\t\t\t[-96.145342, 34.506102],\n\t\t\t\t\t\t[-96.145096, 34.418677],\n\t\t\t\t\t\t[-96.407330, 34.418391],\n\t\t\t\t\t\t[-96.513786, 34.419569],\n\t\t\t\t\t\t[-96.513865, 34.505389],\n\t\t\t\t\t\t[-96.512171, 34.680065],\n\t\t\t\t\t\t[-96.406357, 34.680023],\n\t\t\t\t\t\t[-96.406483, 34.767590],\n\t\t\t\t\t\t[-96.092001, 34.767479],\n\t\t\t\t\t\t[-96.092043, 34.680556]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40035\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"035\",\n\t\t\t\t\"NAME\": \"Craig\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 761.354000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.007620, 36.999514],\n\t\t\t\t\t\t[-94.999403, 36.670631],\n\t\t\t\t\t\t[-95.005730, 36.509890],\n\t\t\t\t\t\t[-95.328170, 36.510240],\n\t\t\t\t\t\t[-95.328370, 36.597630],\n\t\t\t\t\t\t[-95.431570, 36.597540],\n\t\t\t\t\t\t[-95.431731, 36.942776],\n\t\t\t\t\t\t[-95.407572, 36.999241],\n\t\t\t\t\t\t[-95.331210, 36.999380],\n\t\t\t\t\t\t[-95.328327, 36.999366],\n\t\t\t\t\t\t[-95.328058, 36.999365],\n\t\t\t\t\t\t[-95.322565, 36.999358],\n\t\t\t\t\t\t[-95.195307, 36.999565],\n\t\t\t\t\t\t[-95.177301, 36.999520],\n\t\t\t\t\t\t[-95.155372, 36.999540],\n\t\t\t\t\t\t[-95.155187, 36.999539],\n\t\t\t\t\t\t[-95.073509, 36.999509],\n\t\t\t\t\t\t[-95.073504, 36.999509],\n\t\t\t\t\t\t[-95.049499, 36.999580],\n\t\t\t\t\t\t[-95.037857, 36.999497],\n\t\t\t\t\t\t[-95.030324, 36.999517],\n\t\t\t\t\t\t[-95.011433, 36.999535],\n\t\t\t\t\t\t[-95.007620, 36.999514]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40039\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"039\",\n\t\t\t\t\"NAME\": \"Custer\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 988.817000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.375817, 35.812188],\n\t\t\t\t\t\t[-98.631985, 35.812402],\n\t\t\t\t\t\t[-98.632070, 35.551617],\n\t\t\t\t\t\t[-98.623149, 35.551597],\n\t\t\t\t\t\t[-98.623336, 35.464225],\n\t\t\t\t\t\t[-99.364217, 35.465328],\n\t\t\t\t\t\t[-99.364141, 35.508793],\n\t\t\t\t\t\t[-99.375817, 35.812188]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40045\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"045\",\n\t\t\t\t\"NAME\": \"Ellis\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1231.515000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.000399, 36.055677],\n\t\t\t\t\t\t[-100.000406, 36.499702],\n\t\t\t\t\t\t[-100.003762, 36.499699],\n\t\t\t\t\t\t[-100.003160, 36.593250],\n\t\t\t\t\t\t[-99.605565, 36.592753],\n\t\t\t\t\t\t[-99.596079, 36.164061],\n\t\t\t\t\t\t[-99.382074, 36.164301],\n\t\t\t\t\t\t[-99.381022, 36.012925],\n\t\t\t\t\t\t[-99.495812, 35.978732],\n\t\t\t\t\t\t[-99.558486, 35.865988],\n\t\t\t\t\t\t[-99.717101, 35.859769],\n\t\t\t\t\t\t[-99.801389, 35.910645],\n\t\t\t\t\t\t[-99.809444, 36.000044],\n\t\t\t\t\t\t[-99.888309, 35.987847],\n\t\t\t\t\t\t[-99.925147, 35.913664],\n\t\t\t\t\t\t[-100.000396, 35.880948],\n\t\t\t\t\t\t[-100.000399, 36.055677]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40049\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"049\",\n\t\t\t\t\"NAME\": \"Garvin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 802.121000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.562323, 34.507036],\n\t\t\t\t\t\t[-97.562757, 34.681147],\n\t\t\t\t\t\t[-97.668425, 34.681344],\n\t\t\t\t\t\t[-97.668099, 34.855164],\n\t\t\t\t\t\t[-96.932471, 34.854455],\n\t\t\t\t\t\t[-96.932328, 34.636811],\n\t\t\t\t\t\t[-97.200073, 34.622762],\n\t\t\t\t\t\t[-97.143958, 34.506532],\n\t\t\t\t\t\t[-97.352110, 34.506788],\n\t\t\t\t\t\t[-97.562323, 34.507036]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40055\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"055\",\n\t\t\t\t\"NAME\": \"Greer\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 639.324000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.409291, 35.114509],\n\t\t\t\t\t\t[-99.327788, 35.041697],\n\t\t\t\t\t\t[-99.306220, 34.857632],\n\t\t\t\t\t\t[-99.246462, 34.822114],\n\t\t\t\t\t\t[-99.405821, 34.813038],\n\t\t\t\t\t\t[-99.423201, 34.725020],\n\t\t\t\t\t\t[-99.666849, 34.724555],\n\t\t\t\t\t\t[-99.720066, 34.768450],\n\t\t\t\t\t\t[-99.731092, 34.944058],\n\t\t\t\t\t\t[-99.888425, 34.943946],\n\t\t\t\t\t\t[-99.888571, 35.030262],\n\t\t\t\t\t\t[-99.782949, 35.030111],\n\t\t\t\t\t\t[-99.782727, 35.116780],\n\t\t\t\t\t\t[-99.409291, 35.114509]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37193\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"193\",\n\t\t\t\t\"NAME\": \"Wilkes\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 754.278000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.477298, 36.240272],\n\t\t\t\t\t\t[-81.378809, 36.277983],\n\t\t\t\t\t\t[-81.354467, 36.355678],\n\t\t\t\t\t\t[-81.253482, 36.365351],\n\t\t\t\t\t\t[-81.094829, 36.440433],\n\t\t\t\t\t\t[-81.013615, 36.371271],\n\t\t\t\t\t\t[-80.967066, 36.401600],\n\t\t\t\t\t\t[-80.868871, 36.326516],\n\t\t\t\t\t\t[-80.873259, 36.236383],\n\t\t\t\t\t\t[-80.882180, 36.055731],\n\t\t\t\t\t\t[-81.028884, 36.045762],\n\t\t\t\t\t\t[-81.190911, 36.036949],\n\t\t\t\t\t\t[-81.328385, 35.996550],\n\t\t\t\t\t\t[-81.545455, 36.117398],\n\t\t\t\t\t\t[-81.455579, 36.199749],\n\t\t\t\t\t\t[-81.477298, 36.240272]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47141\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"141\",\n\t\t\t\t\"NAME\": \"Putnam\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 401.103000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.780148, 36.238011],\n\t\t\t\t\t\t[-85.533697, 36.242577],\n\t\t\t\t\t\t[-85.495124, 36.302278],\n\t\t\t\t\t\t[-85.419432, 36.236145],\n\t\t\t\t\t\t[-85.204156, 36.152489],\n\t\t\t\t\t\t[-85.119583, 36.144719],\n\t\t\t\t\t\t[-85.100213, 36.138561],\n\t\t\t\t\t\t[-85.246362, 36.100698],\n\t\t\t\t\t\t[-85.264206, 35.979154],\n\t\t\t\t\t\t[-85.309363, 36.031592],\n\t\t\t\t\t\t[-85.509323, 36.081937],\n\t\t\t\t\t\t[-85.644604, 36.015053],\n\t\t\t\t\t\t[-85.807415, 36.131582],\n\t\t\t\t\t\t[-85.780148, 36.238011]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48045\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"045\",\n\t\t\t\t\"NAME\": \"Briscoe\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 900.001000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-101.041484, 34.312444],\n\t\t\t\t\t\t[-101.471580, 34.312290],\n\t\t\t\t\t\t[-101.471562, 34.747462],\n\t\t\t\t\t\t[-101.090749, 34.748246],\n\t\t\t\t\t\t[-100.944939, 34.748281],\n\t\t\t\t\t\t[-100.946132, 34.312759],\n\t\t\t\t\t\t[-100.966896, 34.312711],\n\t\t\t\t\t\t[-100.966969, 34.312640],\n\t\t\t\t\t\t[-101.041484, 34.312444]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48049\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"049\",\n\t\t\t\t\"NAME\": \"Brown\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 944.433000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.118665, 32.079585],\n\t\t\t\t\t\t[-98.924401, 32.078018],\n\t\t\t\t\t\t[-98.668441, 31.700514],\n\t\t\t\t\t\t[-98.760057, 31.687896],\n\t\t\t\t\t\t[-98.779951, 31.610735],\n\t\t\t\t\t\t[-98.991608, 31.484071],\n\t\t\t\t\t\t[-99.090622, 31.460927],\n\t\t\t\t\t\t[-99.202768, 31.467234],\n\t\t\t\t\t\t[-99.195871, 32.079235],\n\t\t\t\t\t\t[-99.147918, 32.079242],\n\t\t\t\t\t\t[-99.125340, 32.079187],\n\t\t\t\t\t\t[-99.118665, 32.079585]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48055\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"055\",\n\t\t\t\t\"NAME\": \"Caldwell\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 545.257000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.315823, 29.786541],\n\t\t\t\t\t\t[-97.317893, 29.784658],\n\t\t\t\t\t\t[-97.597743, 29.630718],\n\t\t\t\t\t\t[-97.633176, 29.649863],\n\t\t\t\t\t\t[-97.721852, 29.682088],\n\t\t\t\t\t\t[-97.875259, 29.858208],\n\t\t\t\t\t\t[-97.893896, 29.883734],\n\t\t\t\t\t\t[-97.710215, 30.024499],\n\t\t\t\t\t\t[-97.655257, 30.072907],\n\t\t\t\t\t\t[-97.649449, 30.067866],\n\t\t\t\t\t\t[-97.648043, 30.067262],\n\t\t\t\t\t\t[-97.315823, 29.786541]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48061\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"061\",\n\t\t\t\t\"NAME\": \"Cameron\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 890.922000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.790358, 26.337438],\n\t\t\t\t\t\t[-97.527582, 26.299304],\n\t\t\t\t\t\t[-97.446987, 26.324947],\n\t\t\t\t\t\t[-97.382485, 26.411326],\n\t\t\t\t\t\t[-97.377769, 26.409107],\n\t\t\t\t\t\t[-97.369627, 26.394603],\n\t\t\t\t\t\t[-97.374461, 26.380862],\n\t\t\t\t\t\t[-97.388965, 26.365850],\n\t\t\t\t\t\t[-97.392019, 26.339386],\n\t\t\t\t\t\t[-97.391001, 26.332262],\n\t\t\t\t\t\t[-97.387947, 26.330481],\n\t\t\t\t\t\t[-97.376242, 26.336333],\n\t\t\t\t\t\t[-97.372171, 26.339895],\n\t\t\t\t\t\t[-97.369372, 26.348547],\n\t\t\t\t\t\t[-97.358176, 26.356435],\n\t\t\t\t\t\t[-97.343418, 26.359234],\n\t\t\t\t\t\t[-97.335275, 26.355672],\n\t\t\t\t\t\t[-97.330441, 26.350582],\n\t\t\t\t\t\t[-97.336802, 26.331753],\n\t\t\t\t\t\t[-97.352833, 26.318521],\n\t\t\t\t\t\t[-97.354359, 26.313941],\n\t\t\t\t\t\t[-97.346980, 26.311396],\n\t\t\t\t\t\t[-97.347489, 26.292821],\n\t\t\t\t\t\t[-97.343927, 26.267376],\n\t\t\t\t\t\t[-97.341128, 26.265595],\n\t\t\t\t\t\t[-97.331967, 26.265595],\n\t\t\t\t\t\t[-97.322807, 26.271956],\n\t\t\t\t\t\t[-97.311866, 26.273737],\n\t\t\t\t\t\t[-97.307031, 26.253126],\n\t\t\t\t\t\t[-97.308049, 26.249055],\n\t\t\t\t\t\t[-97.321280, 26.236078],\n\t\t\t\t\t\t[-97.321280, 26.228699],\n\t\t\t\t\t\t[-97.304486, 26.202490],\n\t\t\t\t\t\t[-97.296598, 26.200709],\n\t\t\t\t\t\t[-97.294817, 26.192312],\n\t\t\t\t\t\t[-97.296089, 26.182388],\n\t\t\t\t\t\t[-97.306776, 26.159487],\n\t\t\t\t\t\t[-97.296598, 26.142439],\n\t\t\t\t\t\t[-97.285360, 26.128378],\n\t\t\t\t\t\t[-97.282094, 26.120301],\n\t\t\t\t\t\t[-97.283112, 26.117757],\n\t\t\t\t\t\t[-97.294054, 26.113940],\n\t\t\t\t\t\t[-97.295072, 26.108342],\n\t\t\t\t\t\t[-97.279804, 26.092057],\n\t\t\t\t\t\t[-97.270898, 26.086459],\n\t\t\t\t\t\t[-97.246980, 26.080352],\n\t\t\t\t\t\t[-97.208048, 26.079589],\n\t\t\t\t\t\t[-97.199651, 26.077044],\n\t\t\t\t\t\t[-97.195071, 26.041930],\n\t\t\t\t\t\t[-97.204995, 26.030225],\n\t\t\t\t\t\t[-97.214918, 26.030734],\n\t\t\t\t\t\t[-97.224842, 26.027426],\n\t\t\t\t\t\t[-97.226114, 26.024372],\n\t\t\t\t\t\t[-97.219244, 25.996128],\n\t\t\t\t\t\t[-97.216954, 25.993838],\n\t\t\t\t\t\t[-97.208557, 25.991802],\n\t\t\t\t\t\t[-97.195834, 25.993074],\n\t\t\t\t\t\t[-97.174460, 26.000072],\n\t\t\t\t\t\t[-97.167208, 26.007069],\n\t\t\t\t\t\t[-97.162755, 26.014576],\n\t\t\t\t\t\t[-97.162628, 26.023482],\n\t\t\t\t\t\t[-97.172043, 26.044729],\n\t\t\t\t\t\t[-97.178659, 26.045492],\n\t\t\t\t\t\t[-97.182730, 26.053126],\n\t\t\t\t\t\t[-97.164982, 26.063876],\n\t\t\t\t\t\t[-97.152009, 26.062108],\n\t\t\t\t\t\t[-97.153210, 26.038906],\n\t\t\t\t\t\t[-97.151922, 26.017653],\n\t\t\t\t\t\t[-97.145567, 25.971132],\n\t\t\t\t\t\t[-97.172633, 25.962883],\n\t\t\t\t\t\t[-97.228025, 25.958936],\n\t\t\t\t\t\t[-97.271382, 25.951832],\n\t\t\t\t\t\t[-97.348275, 25.931143],\n\t\t\t\t\t\t[-97.362345, 25.915724],\n\t\t\t\t\t\t[-97.367045, 25.903021],\n\t\t\t\t\t\t[-97.366723, 25.885066],\n\t\t\t\t\t\t[-97.408357, 25.856459],\n\t\t\t\t\t\t[-97.496861, 25.880058],\n\t\t\t\t\t\t[-97.511161, 25.887458],\n\t\t\t\t\t\t[-97.582565, 25.937857],\n\t\t\t\t\t\t[-97.668099, 26.022522],\n\t\t\t\t\t\t[-97.671568, 26.033955],\n\t\t\t\t\t\t[-97.863056, 26.061273],\n\t\t\t\t\t\t[-97.861822, 26.069921],\n\t\t\t\t\t\t[-97.861837, 26.159480],\n\t\t\t\t\t\t[-97.861875, 26.348156],\n\t\t\t\t\t\t[-97.800874, 26.338949],\n\t\t\t\t\t\t[-97.799073, 26.338749],\n\t\t\t\t\t\t[-97.798373, 26.338549],\n\t\t\t\t\t\t[-97.791666, 26.337715],\n\t\t\t\t\t\t[-97.790358, 26.337438]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48065\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"065\",\n\t\t\t\t\"NAME\": \"Carson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 920.220000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-101.085935, 35.619102],\n\t\t\t\t\t\t[-101.086281, 35.182140],\n\t\t\t\t\t\t[-101.622941, 35.183117],\n\t\t\t\t\t\t[-101.622993, 35.184339],\n\t\t\t\t\t\t[-101.622800, 35.620196],\n\t\t\t\t\t\t[-101.622831, 35.624057],\n\t\t\t\t\t\t[-101.086068, 35.625267],\n\t\t\t\t\t\t[-101.085935, 35.619102]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48067\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"067\",\n\t\t\t\t\"NAME\": \"Cass\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 936.963000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.042990, 33.271243],\n\t\t\t\t\t\t[-94.042990, 33.271227],\n\t\t\t\t\t\t[-94.043050, 33.260904],\n\t\t\t\t\t\t[-94.043004, 33.250128],\n\t\t\t\t\t\t[-94.042730, 33.241823],\n\t\t\t\t\t\t[-94.042876, 33.215219],\n\t\t\t\t\t\t[-94.042892, 33.202666],\n\t\t\t\t\t\t[-94.042875, 33.199785],\n\t\t\t\t\t\t[-94.043185, 33.143476],\n\t\t\t\t\t\t[-94.043077, 33.138162],\n\t\t\t\t\t\t[-94.043007, 33.133890],\n\t\t\t\t\t\t[-94.042870, 33.092727],\n\t\t\t\t\t\t[-94.043036, 33.079485],\n\t\t\t\t\t\t[-94.042964, 33.019219],\n\t\t\t\t\t\t[-94.043088, 32.955592],\n\t\t\t\t\t\t[-94.043067, 32.937903],\n\t\t\t\t\t\t[-94.043092, 32.910021],\n\t\t\t\t\t\t[-94.042885, 32.898911],\n\t\t\t\t\t\t[-94.042859, 32.892771],\n\t\t\t\t\t\t[-94.042886, 32.881089],\n\t\t\t\t\t\t[-94.046061, 32.880949],\n\t\t\t\t\t\t[-94.277594, 32.880532],\n\t\t\t\t\t\t[-94.653994, 32.879506],\n\t\t\t\t\t\t[-94.652260, 33.268861],\n\t\t\t\t\t\t[-94.572463, 33.249826],\n\t\t\t\t\t\t[-94.517868, 33.282096],\n\t\t\t\t\t\t[-94.415739, 33.284017],\n\t\t\t\t\t\t[-94.379409, 33.255651],\n\t\t\t\t\t\t[-94.231333, 33.241073],\n\t\t\t\t\t\t[-94.218517, 33.296936],\n\t\t\t\t\t\t[-94.056144, 33.298036],\n\t\t\t\t\t\t[-94.042990, 33.271243]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48073\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"073\",\n\t\t\t\t\"NAME\": \"Cherokee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1052.913000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.865857, 31.526916],\n\t\t\t\t\t\t[-95.000212, 31.428196],\n\t\t\t\t\t\t[-95.003345, 31.425710],\n\t\t\t\t\t\t[-95.101382, 31.469887],\n\t\t\t\t\t\t[-95.176359, 31.584826],\n\t\t\t\t\t\t[-95.273203, 31.592886],\n\t\t\t\t\t\t[-95.258859, 31.609959],\n\t\t\t\t\t\t[-95.412908, 31.835157],\n\t\t\t\t\t\t[-95.446747, 31.843116],\n\t\t\t\t\t\t[-95.428512, 32.084475],\n\t\t\t\t\t\t[-95.447088, 32.107291],\n\t\t\t\t\t\t[-95.456843, 32.112307],\n\t\t\t\t\t\t[-95.459908, 32.135559],\n\t\t\t\t\t\t[-94.985272, 32.137989],\n\t\t\t\t\t\t[-94.985037, 31.846193],\n\t\t\t\t\t\t[-94.937532, 31.845555],\n\t\t\t\t\t\t[-94.967167, 31.753767],\n\t\t\t\t\t\t[-94.951969, 31.641351],\n\t\t\t\t\t\t[-94.865857, 31.526916]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48077\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"077\",\n\t\t\t\t\"NAME\": \"Clay\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1088.721000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.421419, 33.466797],\n\t\t\t\t\t\t[-98.423145, 33.610163],\n\t\t\t\t\t\t[-98.423577, 33.836047],\n\t\t\t\t\t\t[-98.433769, 34.096116],\n\t\t\t\t\t\t[-98.400494, 34.121778],\n\t\t\t\t\t\t[-98.398441, 34.128456],\n\t\t\t\t\t\t[-98.383222, 34.147806],\n\t\t\t\t\t\t[-98.364023, 34.157109],\n\t\t\t\t\t\t[-98.325445, 34.151025],\n\t\t\t\t\t\t[-98.300209, 34.134579],\n\t\t\t\t\t\t[-98.293901, 34.133020],\n\t\t\t\t\t\t[-98.200075, 34.116783],\n\t\t\t\t\t\t[-98.169120, 34.114171],\n\t\t\t\t\t\t[-98.106261, 34.033696],\n\t\t\t\t\t\t[-98.088203, 34.005481],\n\t\t\t\t\t\t[-98.085260, 34.003259],\n\t\t\t\t\t\t[-98.041117, 33.993456],\n\t\t\t\t\t\t[-98.019485, 33.993804],\n\t\t\t\t\t\t[-97.983521, 34.001559],\n\t\t\t\t\t\t[-97.945730, 33.989839],\n\t\t\t\t\t\t[-97.953395, 33.936445],\n\t\t\t\t\t\t[-97.977859, 33.889929],\n\t\t\t\t\t\t[-97.977810, 33.889894],\n\t\t\t\t\t\t[-97.978919, 33.467129],\n\t\t\t\t\t\t[-98.421419, 33.466797]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48081\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"081\",\n\t\t\t\t\"NAME\": \"Coke\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 911.470000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.235761, 31.692970],\n\t\t\t\t\t\t[-100.825370, 31.696155],\n\t\t\t\t\t\t[-100.821594, 32.086610],\n\t\t\t\t\t\t[-100.665353, 32.085407],\n\t\t\t\t\t\t[-100.235137, 32.082372],\n\t\t\t\t\t\t[-100.235761, 31.692970]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48085\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"085\",\n\t\t\t\t\"NAME\": \"Collin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 841.225000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.682467, 32.985325],\n\t\t\t\t\t\t[-96.687954, 32.985259],\n\t\t\t\t\t\t[-96.838963, 32.987521],\n\t\t\t\t\t\t[-96.839552, 32.987508],\n\t\t\t\t\t\t[-96.843979, 32.987554],\n\t\t\t\t\t\t[-96.841854, 33.086264],\n\t\t\t\t\t\t[-96.840426, 33.152585],\n\t\t\t\t\t\t[-96.834004, 33.405504],\n\t\t\t\t\t\t[-96.386474, 33.398075],\n\t\t\t\t\t\t[-96.384602, 33.397826],\n\t\t\t\t\t\t[-96.384495, 33.341119],\n\t\t\t\t\t\t[-96.295413, 33.351936],\n\t\t\t\t\t\t[-96.297227, 32.981752],\n\t\t\t\t\t\t[-96.516866, 32.982308],\n\t\t\t\t\t\t[-96.613377, 32.984021],\n\t\t\t\t\t\t[-96.660185, 32.985127],\n\t\t\t\t\t\t[-96.682467, 32.985325]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48087\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"087\",\n\t\t\t\t\"NAME\": \"Collingsworth\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 918.441000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.000384, 35.030385],\n\t\t\t\t\t\t[-100.000381, 34.746461],\n\t\t\t\t\t\t[-100.000381, 34.746358],\n\t\t\t\t\t\t[-100.415895, 34.747525],\n\t\t\t\t\t\t[-100.540703, 34.747723],\n\t\t\t\t\t\t[-100.540997, 34.750052],\n\t\t\t\t\t\t[-100.538978, 35.183144],\n\t\t\t\t\t\t[-100.000385, 35.182702],\n\t\t\t\t\t\t[-100.000384, 35.030385]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48091\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"091\",\n\t\t\t\t\"NAME\": \"Comal\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 559.476000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.443852, 29.719650],\n\t\t\t\t\t\t[-98.550489, 29.760713],\n\t\t\t\t\t\t[-98.646124, 29.745181],\n\t\t\t\t\t\t[-98.644703, 29.746487],\n\t\t\t\t\t\t[-98.414018, 29.937557],\n\t\t\t\t\t\t[-98.297600, 30.037994],\n\t\t\t\t\t\t[-98.030523, 29.848539],\n\t\t\t\t\t\t[-97.999271, 29.752444],\n\t\t\t\t\t\t[-98.089941, 29.683479],\n\t\t\t\t\t\t[-98.310928, 29.594473],\n\t\t\t\t\t\t[-98.378068, 29.662613],\n\t\t\t\t\t\t[-98.338618, 29.721786],\n\t\t\t\t\t\t[-98.443852, 29.719650]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US24047\",\n\t\t\t\t\"STATE\": \"24\",\n\t\t\t\t\"COUNTY\": \"047\",\n\t\t\t\t\"NAME\": \"Worcester\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 468.281000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-75.242266, 38.027209],\n\t\t\t\t\t\t[-75.242296, 38.027206],\n\t\t\t\t\t\t[-75.250358, 38.026489],\n\t\t\t\t\t\t[-75.256076, 38.025980],\n\t\t\t\t\t\t[-75.260635, 38.025574],\n\t\t\t\t\t\t[-75.262088, 38.025445],\n\t\t\t\t\t\t[-75.263779, 38.025295],\n\t\t\t\t\t\t[-75.377851, 38.015145],\n\t\t\t\t\t\t[-75.398839, 38.013277],\n\t\t\t\t\t\t[-75.428810, 38.010854],\n\t\t\t\t\t\t[-75.435956, 38.010282],\n\t\t\t\t\t\t[-75.624341, 37.994211],\n\t\t\t\t\t\t[-75.661827, 38.041853],\n\t\t\t\t\t\t[-75.540870, 38.089480],\n\t\t\t\t\t\t[-75.545898, 38.178740],\n\t\t\t\t\t\t[-75.612764, 38.278626],\n\t\t\t\t\t\t[-75.364641, 38.290359],\n\t\t\t\t\t\t[-75.307011, 38.354760],\n\t\t\t\t\t\t[-75.341247, 38.451970],\n\t\t\t\t\t\t[-75.260350, 38.451492],\n\t\t\t\t\t\t[-75.252723, 38.451397],\n\t\t\t\t\t\t[-75.185413, 38.451013],\n\t\t\t\t\t\t[-75.141894, 38.451196],\n\t\t\t\t\t\t[-75.089649, 38.451254],\n\t\t\t\t\t\t[-75.088281, 38.451256],\n\t\t\t\t\t\t[-75.085814, 38.451258],\n\t\t\t\t\t\t[-75.070356, 38.451276],\n\t\t\t\t\t\t[-75.069909, 38.451276],\n\t\t\t\t\t\t[-75.066327, 38.451291],\n\t\t\t\t\t\t[-75.053483, 38.451274],\n\t\t\t\t\t\t[-75.052510, 38.451273],\n\t\t\t\t\t\t[-75.049268, 38.451264],\n\t\t\t\t\t\t[-75.048939, 38.451263],\n\t\t\t\t\t\t[-75.049365, 38.448518],\n\t\t\t\t\t\t[-75.049442, 38.448023],\n\t\t\t\t\t\t[-75.049582, 38.447117],\n\t\t\t\t\t\t[-75.051997, 38.431549],\n\t\t\t\t\t\t[-75.052008, 38.431479],\n\t\t\t\t\t\t[-75.052167, 38.430457],\n\t\t\t\t\t\t[-75.052206, 38.430206],\n\t\t\t\t\t\t[-75.052226, 38.430077],\n\t\t\t\t\t\t[-75.052368, 38.429159],\n\t\t\t\t\t\t[-75.052426, 38.428784],\n\t\t\t\t\t\t[-75.052467, 38.428521],\n\t\t\t\t\t\t[-75.052471, 38.428493],\n\t\t\t\t\t\t[-75.052505, 38.428275],\n\t\t\t\t\t\t[-75.052746, 38.426720],\n\t\t\t\t\t\t[-75.052804, 38.426349],\n\t\t\t\t\t\t[-75.052820, 38.426243],\n\t\t\t\t\t\t[-75.053100, 38.424441],\n\t\t\t\t\t\t[-75.053137, 38.424201],\n\t\t\t\t\t\t[-75.053277, 38.423297],\n\t\t\t\t\t\t[-75.053309, 38.423095],\n\t\t\t\t\t\t[-75.054591, 38.414830],\n\t\t\t\t\t\t[-75.055838, 38.410164],\n\t\t\t\t\t\t[-75.056000, 38.409560],\n\t\t\t\t\t\t[-75.056182, 38.408876],\n\t\t\t\t\t\t[-75.057288, 38.404738],\n\t\t\t\t\t\t[-75.061370, 38.389466],\n\t\t\t\t\t\t[-75.068111, 38.368716],\n\t\t\t\t\t\t[-75.068162, 38.368559],\n\t\t\t\t\t\t[-75.068404, 38.367812],\n\t\t\t\t\t\t[-75.068548, 38.367370],\n\t\t\t\t\t\t[-75.068559, 38.367335],\n\t\t\t\t\t\t[-75.069817, 38.363463],\n\t\t\t\t\t\t[-75.069845, 38.363376],\n\t\t\t\t\t\t[-75.071329, 38.358809],\n\t\t\t\t\t\t[-75.071632, 38.357876],\n\t\t\t\t\t\t[-75.071687, 38.357707],\n\t\t\t\t\t\t[-75.071694, 38.357686],\n\t\t\t\t\t\t[-75.072111, 38.356402],\n\t\t\t\t\t\t[-75.072476, 38.355278],\n\t\t\t\t\t\t[-75.073852, 38.352006],\n\t\t\t\t\t\t[-75.074532, 38.350390],\n\t\t\t\t\t\t[-75.084149, 38.327526],\n\t\t\t\t\t\t[-75.085171, 38.325096],\n\t\t\t\t\t\t[-75.085327, 38.324724],\n\t\t\t\t\t\t[-75.085468, 38.324389],\n\t\t\t\t\t\t[-75.085518, 38.324270],\n\t\t\t\t\t\t[-75.087466, 38.322769],\n\t\t\t\t\t\t[-75.092142, 38.323252],\n\t\t\t\t\t\t[-75.093888, 38.323432],\n\t\t\t\t\t\t[-75.102947, 38.311525],\n\t\t\t\t\t\t[-75.103757, 38.309349],\n\t\t\t\t\t\t[-75.116837, 38.274229],\n\t\t\t\t\t\t[-75.143229, 38.220475],\n\t\t\t\t\t\t[-75.155351, 38.192572],\n\t\t\t\t\t\t[-75.158970, 38.184242],\n\t\t\t\t\t\t[-75.161640, 38.176383],\n\t\t\t\t\t\t[-75.177394, 38.130014],\n\t\t\t\t\t\t[-75.178945, 38.126798],\n\t\t\t\t\t\t[-75.192925, 38.097819],\n\t\t\t\t\t\t[-75.193796, 38.096013],\n\t\t\t\t\t\t[-75.195382, 38.093582],\n\t\t\t\t\t\t[-75.204684, 38.079317],\n\t\t\t\t\t\t[-75.204911, 38.078970],\n\t\t\t\t\t\t[-75.206515, 38.076510],\n\t\t\t\t\t\t[-75.216117, 38.061786],\n\t\t\t\t\t\t[-75.224340, 38.050912],\n\t\t\t\t\t\t[-75.227592, 38.046612],\n\t\t\t\t\t\t[-75.235860, 38.035679],\n\t\t\t\t\t\t[-75.236065, 38.035409],\n\t\t\t\t\t\t[-75.237538, 38.033461],\n\t\t\t\t\t\t[-75.241817, 38.027802],\n\t\t\t\t\t\t[-75.242266, 38.027209]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US25007\",\n\t\t\t\t\"STATE\": \"25\",\n\t\t\t\t\"COUNTY\": \"007\",\n\t\t\t\t\"NAME\": \"Dukes\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 103.245000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-70.694800, 41.525640],\n\t\t\t\t\t\t\t[-70.691364, 41.517842],\n\t\t\t\t\t\t\t[-70.688353, 41.516789],\n\t\t\t\t\t\t\t[-70.681397, 41.517550],\n\t\t\t\t\t\t\t[-70.674646, 41.519385],\n\t\t\t\t\t\t\t[-70.672253, 41.515774],\n\t\t\t\t\t\t\t[-70.669518, 41.513339],\n\t\t\t\t\t\t\t[-70.675379, 41.512623],\n\t\t\t\t\t\t\t[-70.705181, 41.496677],\n\t\t\t\t\t\t\t[-70.734306, 41.486335],\n\t\t\t\t\t\t\t[-70.757171, 41.469917],\n\t\t\t\t\t\t\t[-70.756481, 41.465977],\n\t\t\t\t\t\t\t[-70.760863, 41.460947],\n\t\t\t\t\t\t\t[-70.790270, 41.446339],\n\t\t\t\t\t\t\t[-70.817478, 41.445562],\n\t\t\t\t\t\t\t[-70.835867, 41.441877],\n\t\t\t\t\t\t\t[-70.857528, 41.425767],\n\t\t\t\t\t\t\t[-70.866946, 41.422378],\n\t\t\t\t\t\t\t[-70.902763, 41.421061],\n\t\t\t\t\t\t\t[-70.928197, 41.415781],\n\t\t\t\t\t\t\t[-70.937282, 41.411618],\n\t\t\t\t\t\t\t[-70.948431, 41.409193],\n\t\t\t\t\t\t\t[-70.951045, 41.411777],\n\t\t\t\t\t\t\t[-70.949861, 41.415323],\n\t\t\t\t\t\t\t[-70.928165, 41.431265],\n\t\t\t\t\t\t\t[-70.923698, 41.430716],\n\t\t\t\t\t\t\t[-70.918983, 41.425300],\n\t\t\t\t\t\t\t[-70.911640, 41.424484],\n\t\t\t\t\t\t\t[-70.906011, 41.425708],\n\t\t\t\t\t\t\t[-70.883247, 41.432239],\n\t\t\t\t\t\t\t[-70.855265, 41.448892],\n\t\t\t\t\t\t\t[-70.828546, 41.456448],\n\t\t\t\t\t\t\t[-70.802186, 41.460864],\n\t\t\t\t\t\t\t[-70.787769, 41.474609],\n\t\t\t\t\t\t\t[-70.775268, 41.477465],\n\t\t\t\t\t\t\t[-70.753905, 41.492256],\n\t\t\t\t\t\t\t[-70.745053, 41.500966],\n\t\t\t\t\t\t\t[-70.694800, 41.525640]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-70.596280, 41.471905],\n\t\t\t\t\t\t\t[-70.574850, 41.468259],\n\t\t\t\t\t\t\t[-70.567356, 41.471208],\n\t\t\t\t\t\t\t[-70.563280, 41.469127],\n\t\t\t\t\t\t\t[-70.553277, 41.452955],\n\t\t\t\t\t\t\t[-70.552943, 41.443394],\n\t\t\t\t\t\t\t[-70.555588, 41.430882],\n\t\t\t\t\t\t\t[-70.553096, 41.423952],\n\t\t\t\t\t\t\t[-70.547567, 41.415831],\n\t\t\t\t\t\t\t[-70.538301, 41.409241],\n\t\t\t\t\t\t\t[-70.528581, 41.405100],\n\t\t\t\t\t\t\t[-70.517584, 41.403769],\n\t\t\t\t\t\t\t[-70.506984, 41.400242],\n\t\t\t\t\t\t\t[-70.502372, 41.392005],\n\t\t\t\t\t\t\t[-70.501306, 41.385391],\n\t\t\t\t\t\t\t[-70.498959, 41.384339],\n\t\t\t\t\t\t\t[-70.490758, 41.383634],\n\t\t\t\t\t\t\t[-70.484503, 41.386290],\n\t\t\t\t\t\t\t[-70.472604, 41.399128],\n\t\t\t\t\t\t\t[-70.473035, 41.408757],\n\t\t\t\t\t\t\t[-70.470788, 41.412875],\n\t\t\t\t\t\t\t[-70.463833, 41.419145],\n\t\t\t\t\t\t\t[-70.450431, 41.420703],\n\t\t\t\t\t\t\t[-70.446233, 41.396480],\n\t\t\t\t\t\t\t[-70.449268, 41.380422],\n\t\t\t\t\t\t\t[-70.448262, 41.353651],\n\t\t\t\t\t\t\t[-70.451084, 41.348161],\n\t\t\t\t\t\t\t[-70.496162, 41.346452],\n\t\t\t\t\t\t\t[-70.538294, 41.348958],\n\t\t\t\t\t\t\t[-70.599157, 41.349272],\n\t\t\t\t\t\t\t[-70.709826, 41.341723],\n\t\t\t\t\t\t\t[-70.733253, 41.336226],\n\t\t\t\t\t\t\t[-70.747541, 41.329952],\n\t\t\t\t\t\t\t[-70.764188, 41.318706],\n\t\t\t\t\t\t\t[-70.768015, 41.311959],\n\t\t\t\t\t\t\t[-70.766166, 41.308962],\n\t\t\t\t\t\t\t[-70.768687, 41.303702],\n\t\t\t\t\t\t\t[-70.775665, 41.300982],\n\t\t\t\t\t\t\t[-70.802083, 41.314207],\n\t\t\t\t\t\t\t[-70.819415, 41.327212],\n\t\t\t\t\t\t\t[-70.838777, 41.347209],\n\t\t\t\t\t\t\t[-70.833802, 41.353386],\n\t\t\t\t\t\t\t[-70.812309, 41.355745],\n\t\t\t\t\t\t\t[-70.800289, 41.353800],\n\t\t\t\t\t\t\t[-70.783291, 41.347829],\n\t\t\t\t\t\t\t[-70.774974, 41.349176],\n\t\t\t\t\t\t\t[-70.768901, 41.353246],\n\t\t\t\t\t\t\t[-70.729225, 41.397728],\n\t\t\t\t\t\t\t[-70.724366, 41.398942],\n\t\t\t\t\t\t\t[-70.712432, 41.408850],\n\t\t\t\t\t\t\t[-70.711493, 41.415460],\n\t\t\t\t\t\t\t[-70.701378, 41.430925],\n\t\t\t\t\t\t\t[-70.686881, 41.441334],\n\t\t\t\t\t\t\t[-70.649330, 41.461068],\n\t\t\t\t\t\t\t[-70.603555, 41.482384],\n\t\t\t\t\t\t\t[-70.598444, 41.481151],\n\t\t\t\t\t\t\t[-70.596280, 41.471905]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US25013\",\n\t\t\t\t\"STATE\": \"25\",\n\t\t\t\t\"COUNTY\": \"013\",\n\t\t\t\t\"NAME\": \"Hampden\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 617.140000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-72.141843, 42.160898],\n\t\t\t\t\t\t[-72.135023, 42.161708],\n\t\t\t\t\t\t[-72.134954, 42.090665],\n\t\t\t\t\t\t[-72.135715, 42.030245],\n\t\t\t\t\t\t[-72.198828, 42.030982],\n\t\t\t\t\t\t[-72.397428, 42.033302],\n\t\t\t\t\t\t[-72.509187, 42.034607],\n\t\t\t\t\t\t[-72.695927, 42.036788],\n\t\t\t\t\t\t[-72.714134, 42.036608],\n\t\t\t\t\t\t[-72.755838, 42.036195],\n\t\t\t\t\t\t[-72.757467, 42.020947],\n\t\t\t\t\t\t[-72.758151, 42.020865],\n\t\t\t\t\t\t[-72.766139, 42.007695],\n\t\t\t\t\t\t[-72.766739, 42.002995],\n\t\t\t\t\t\t[-72.774757, 42.002129],\n\t\t\t\t\t\t[-72.816741, 41.997595],\n\t\t\t\t\t\t[-72.813541, 42.036494],\n\t\t\t\t\t\t[-72.863619, 42.037709],\n\t\t\t\t\t\t[-72.863733, 42.037710],\n\t\t\t\t\t\t[-73.008739, 42.039356],\n\t\t\t\t\t\t[-73.053254, 42.039861],\n\t\t\t\t\t\t[-73.071199, 42.148214],\n\t\t\t\t\t\t[-73.007993, 42.238409],\n\t\t\t\t\t\t[-73.001846, 42.251090],\n\t\t\t\t\t\t[-73.000067, 42.312693],\n\t\t\t\t\t\t[-72.885184, 42.332615],\n\t\t\t\t\t\t[-72.912302, 42.239133],\n\t\t\t\t\t\t[-72.793414, 42.236854],\n\t\t\t\t\t\t[-72.686861, 42.183390],\n\t\t\t\t\t\t[-72.613138, 42.286265],\n\t\t\t\t\t\t[-72.593433, 42.211691],\n\t\t\t\t\t\t[-72.592418, 42.211691],\n\t\t\t\t\t\t[-72.546356, 42.216489],\n\t\t\t\t\t\t[-72.403947, 42.231847],\n\t\t\t\t\t\t[-72.395492, 42.185812],\n\t\t\t\t\t\t[-72.221218, 42.245252],\n\t\t\t\t\t\t[-72.263876, 42.183885],\n\t\t\t\t\t\t[-72.141843, 42.160898]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US25015\",\n\t\t\t\t\"STATE\": \"25\",\n\t\t\t\t\"COUNTY\": \"015\",\n\t\t\t\t\"NAME\": \"Hampshire\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 527.255000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-72.213946, 42.294290],\n\t\t\t\t\t\t[-72.210815, 42.294460],\n\t\t\t\t\t\t[-72.203363, 42.291162],\n\t\t\t\t\t\t[-72.207245, 42.285210],\n\t\t\t\t\t\t[-72.212128, 42.282672],\n\t\t\t\t\t\t[-72.212941, 42.269925],\n\t\t\t\t\t\t[-72.217879, 42.270089],\n\t\t\t\t\t\t[-72.216138, 42.256144],\n\t\t\t\t\t\t[-72.211275, 42.255635],\n\t\t\t\t\t\t[-72.211079, 42.251262],\n\t\t\t\t\t\t[-72.210460, 42.247205],\n\t\t\t\t\t\t[-72.214584, 42.247571],\n\t\t\t\t\t\t[-72.214821, 42.249041],\n\t\t\t\t\t\t[-72.218068, 42.248605],\n\t\t\t\t\t\t[-72.221218, 42.245252],\n\t\t\t\t\t\t[-72.395492, 42.185812],\n\t\t\t\t\t\t[-72.403947, 42.231847],\n\t\t\t\t\t\t[-72.546356, 42.216489],\n\t\t\t\t\t\t[-72.592418, 42.211691],\n\t\t\t\t\t\t[-72.593433, 42.211691],\n\t\t\t\t\t\t[-72.613138, 42.286265],\n\t\t\t\t\t\t[-72.686861, 42.183390],\n\t\t\t\t\t\t[-72.793414, 42.236854],\n\t\t\t\t\t\t[-72.912302, 42.239133],\n\t\t\t\t\t\t[-72.885184, 42.332615],\n\t\t\t\t\t\t[-73.000067, 42.312693],\n\t\t\t\t\t\t[-72.975379, 42.555933],\n\t\t\t\t\t\t[-72.876948, 42.541213],\n\t\t\t\t\t\t[-72.871157, 42.484173],\n\t\t\t\t\t\t[-72.763746, 42.463610],\n\t\t\t\t\t\t[-72.704345, 42.405536],\n\t\t\t\t\t\t[-72.581106, 42.422504],\n\t\t\t\t\t\t[-72.544210, 42.427081],\n\t\t\t\t\t\t[-72.375022, 42.420819],\n\t\t\t\t\t\t[-72.355396, 42.340678],\n\t\t\t\t\t\t[-72.356583, 42.303275],\n\t\t\t\t\t\t[-72.314599, 42.343526],\n\t\t\t\t\t\t[-72.213946, 42.294290]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US25017\",\n\t\t\t\t\"STATE\": \"25\",\n\t\t\t\t\"COUNTY\": \"017\",\n\t\t\t\t\"NAME\": \"Middlesex\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 817.817000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-71.585168, 42.310977],\n\t\t\t\t\t\t[-71.592502, 42.317901],\n\t\t\t\t\t\t[-71.597350, 42.321149],\n\t\t\t\t\t\t[-71.601885, 42.326971],\n\t\t\t\t\t\t[-71.605158, 42.330259],\n\t\t\t\t\t\t[-71.603591, 42.331676],\n\t\t\t\t\t\t[-71.604099, 42.336768],\n\t\t\t\t\t\t[-71.611573, 42.339008],\n\t\t\t\t\t\t[-71.619131, 42.343349],\n\t\t\t\t\t\t[-71.625825, 42.349724],\n\t\t\t\t\t\t[-71.624702, 42.350465],\n\t\t\t\t\t\t[-71.543297, 42.466451],\n\t\t\t\t\t\t[-71.538949, 42.543069],\n\t\t\t\t\t\t[-71.635812, 42.524091],\n\t\t\t\t\t\t[-71.650613, 42.526191],\n\t\t\t\t\t\t[-71.651713, 42.526391],\n\t\t\t\t\t\t[-71.655413, 42.526891],\n\t\t\t\t\t\t[-71.664613, 42.528291],\n\t\t\t\t\t\t[-71.665513, 42.528391],\n\t\t\t\t\t\t[-71.675714, 42.529990],\n\t\t\t\t\t\t[-71.678980, 42.530351],\n\t\t\t\t\t\t[-71.677730, 42.539397],\n\t\t\t\t\t\t[-71.664614, 42.611589],\n\t\t\t\t\t\t[-71.775742, 42.644216],\n\t\t\t\t\t\t[-71.858410, 42.633840],\n\t\t\t\t\t\t[-71.898714, 42.711478],\n\t\t\t\t\t\t[-71.805450, 42.709137],\n\t\t\t\t\t\t[-71.772510, 42.708310],\n\t\t\t\t\t\t[-71.636214, 42.704888],\n\t\t\t\t\t\t[-71.631814, 42.704788],\n\t\t\t\t\t\t[-71.542520, 42.702726],\n\t\t\t\t\t\t[-71.294205, 42.696990],\n\t\t\t\t\t\t[-71.254532, 42.734136],\n\t\t\t\t\t\t[-71.256103, 42.656691],\n\t\t\t\t\t\t[-71.165015, 42.597959],\n\t\t\t\t\t\t[-71.158617, 42.612948],\n\t\t\t\t\t\t[-71.148613, 42.613249],\n\t\t\t\t\t\t[-71.135290, 42.599061],\n\t\t\t\t\t\t[-71.076133, 42.604077],\n\t\t\t\t\t\t[-71.053496, 42.475895],\n\t\t\t\t\t\t[-71.051571, 42.473891],\n\t\t\t\t\t\t[-71.044796, 42.466195],\n\t\t\t\t\t\t[-71.044729, 42.465724],\n\t\t\t\t\t\t[-71.040044, 42.460706],\n\t\t\t\t\t\t[-71.039114, 42.459513],\n\t\t\t\t\t\t[-71.037270, 42.457674],\n\t\t\t\t\t\t[-71.025864, 42.444743],\n\t\t\t\t\t\t[-71.025777, 42.444753],\n\t\t\t\t\t\t[-71.020377, 42.438250],\n\t\t\t\t\t\t[-71.033203, 42.414226],\n\t\t\t\t\t\t[-71.055295, 42.387097],\n\t\t\t\t\t\t[-71.073496, 42.391796],\n\t\t\t\t\t\t[-71.080595, 42.380997],\n\t\t\t\t\t\t[-71.064095, 42.368997],\n\t\t\t\t\t\t[-71.069795, 42.369097],\n\t\t\t\t\t\t[-71.077095, 42.358697],\n\t\t\t\t\t\t[-71.099196, 42.352797],\n\t\t\t\t\t\t[-71.117099, 42.355594],\n\t\t\t\t\t\t[-71.117197, 42.367197],\n\t\t\t\t\t\t[-71.130997, 42.373796],\n\t\t\t\t\t\t[-71.143501, 42.364969],\n\t\t\t\t\t\t[-71.148565, 42.361174],\n\t\t\t\t\t\t[-71.167625, 42.360073],\n\t\t\t\t\t\t[-71.174798, 42.350265],\n\t\t\t\t\t\t[-71.167565, 42.333441],\n\t\t\t\t\t\t[-71.156833, 42.330189],\n\t\t\t\t\t\t[-71.178935, 42.314316],\n\t\t\t\t\t\t[-71.164804, 42.303764],\n\t\t\t\t\t\t[-71.178636, 42.294595],\n\t\t\t\t\t\t[-71.191155, 42.283059],\n\t\t\t\t\t\t[-71.269919, 42.328096],\n\t\t\t\t\t\t[-71.332434, 42.247729],\n\t\t\t\t\t\t[-71.329217, 42.245023],\n\t\t\t\t\t\t[-71.329561, 42.233670],\n\t\t\t\t\t\t[-71.340830, 42.224605],\n\t\t\t\t\t\t[-71.343065, 42.220242],\n\t\t\t\t\t\t[-71.339837, 42.213886],\n\t\t\t\t\t\t[-71.346980, 42.215555],\n\t\t\t\t\t\t[-71.352024, 42.207311],\n\t\t\t\t\t\t[-71.344170, 42.200703],\n\t\t\t\t\t\t[-71.404381, 42.188215],\n\t\t\t\t\t\t[-71.402220, 42.178798],\n\t\t\t\t\t\t[-71.430174, 42.179386],\n\t\t\t\t\t\t[-71.444067, 42.174889],\n\t\t\t\t\t\t[-71.463957, 42.158239],\n\t\t\t\t\t\t[-71.478119, 42.156782],\n\t\t\t\t\t\t[-71.599318, 42.225959],\n\t\t\t\t\t\t[-71.586759, 42.259545],\n\t\t\t\t\t\t[-71.549466, 42.266124],\n\t\t\t\t\t\t[-71.513048, 42.267148],\n\t\t\t\t\t\t[-71.497046, 42.289829],\n\t\t\t\t\t\t[-71.486125, 42.310885],\n\t\t\t\t\t\t[-71.486768, 42.330075],\n\t\t\t\t\t\t[-71.551126, 42.326395],\n\t\t\t\t\t\t[-71.585168, 42.310977]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US34017\",\n\t\t\t\t\"STATE\": \"34\",\n\t\t\t\t\"COUNTY\": \"017\",\n\t\t\t\t\"NAME\": \"Hudson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 46.191000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-73.986864, 40.798344],\n\t\t\t\t\t\t[-73.993029, 40.788746],\n\t\t\t\t\t\t[-74.000905, 40.776488],\n\t\t\t\t\t\t[-74.009184, 40.763601],\n\t\t\t\t\t\t[-74.013784, 40.756601],\n\t\t\t\t\t\t[-74.024543, 40.709436],\n\t\t\t\t\t\t[-74.038538, 40.710741],\n\t\t\t\t\t\t[-74.051185, 40.695802],\n\t\t\t\t\t\t[-74.069885, 40.684502],\n\t\t\t\t\t\t[-74.082786, 40.673702],\n\t\t\t\t\t\t[-74.089986, 40.659903],\n\t\t\t\t\t\t[-74.087397, 40.653607],\n\t\t\t\t\t\t[-74.094086, 40.649703],\n\t\t\t\t\t\t[-74.143387, 40.641903],\n\t\t\t\t\t\t[-74.161397, 40.644092],\n\t\t\t\t\t\t[-74.160288, 40.645903],\n\t\t\t\t\t\t[-74.153041, 40.654800],\n\t\t\t\t\t\t[-74.136703, 40.674444],\n\t\t\t\t\t\t[-74.122911, 40.691172],\n\t\t\t\t\t\t[-74.112787, 40.703102],\n\t\t\t\t\t\t[-74.117057, 40.710381],\n\t\t\t\t\t\t[-74.116993, 40.737125],\n\t\t\t\t\t\t[-74.161958, 40.736007],\n\t\t\t\t\t\t[-74.165987, 40.745199],\n\t\t\t\t\t\t[-74.164799, 40.754718],\n\t\t\t\t\t\t[-74.163388, 40.759401],\n\t\t\t\t\t\t[-74.157688, 40.766100],\n\t\t\t\t\t\t[-74.155798, 40.770815],\n\t\t\t\t\t\t[-74.148266, 40.779876],\n\t\t\t\t\t\t[-74.147859, 40.784683],\n\t\t\t\t\t\t[-74.147529, 40.786491],\n\t\t\t\t\t\t[-74.044977, 40.807702],\n\t\t\t\t\t\t[-74.017204, 40.823541],\n\t\t\t\t\t\t[-73.986864, 40.798344]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US34019\",\n\t\t\t\t\"STATE\": \"34\",\n\t\t\t\t\"COUNTY\": \"019\",\n\t\t\t\t\"NAME\": \"Hunterdon\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 427.819000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-74.724418, 40.719455],\n\t\t\t\t\t\t[-74.713150, 40.583903],\n\t\t\t\t\t\t[-74.782513, 40.487775],\n\t\t\t\t\t\t[-74.748147, 40.424156],\n\t\t\t\t\t\t[-74.856262, 40.346695],\n\t\t\t\t\t\t[-74.937954, 40.340634],\n\t\t\t\t\t\t[-75.024775, 40.403455],\n\t\t\t\t\t\t[-75.035548, 40.406309],\n\t\t\t\t\t\t[-75.058848, 40.418065],\n\t\t\t\t\t\t[-75.061489, 40.422848],\n\t\t\t\t\t\t[-75.070568, 40.455165],\n\t\t\t\t\t\t[-75.065853, 40.519495],\n\t\t\t\t\t\t[-75.065090, 40.526148],\n\t\t\t\t\t\t[-75.067344, 40.536428],\n\t\t\t\t\t\t[-75.068615, 40.542223],\n\t\t\t\t\t\t[-75.100325, 40.567811],\n\t\t\t\t\t\t[-75.117292, 40.573211],\n\t\t\t\t\t\t[-75.135389, 40.575624],\n\t\t\t\t\t\t[-75.147368, 40.573152],\n\t\t\t\t\t\t[-75.190161, 40.589321],\n\t\t\t\t\t\t[-75.190858, 40.591342],\n\t\t\t\t\t\t[-74.968454, 40.710791],\n\t\t\t\t\t\t[-74.889753, 40.787832],\n\t\t\t\t\t\t[-74.724418, 40.719455]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US34021\",\n\t\t\t\t\"STATE\": \"34\",\n\t\t\t\t\"COUNTY\": \"021\",\n\t\t\t\t\"NAME\": \"Mercer\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 224.557000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-74.724179, 40.147324],\n\t\t\t\t\t\t[-74.721604, 40.153810],\n\t\t\t\t\t\t[-74.722304, 40.160609],\n\t\t\t\t\t\t[-74.758613, 40.201342],\n\t\t\t\t\t\t[-74.770706, 40.214908],\n\t\t\t\t\t\t[-74.860492, 40.284584],\n\t\t\t\t\t\t[-74.937954, 40.340634],\n\t\t\t\t\t\t[-74.856262, 40.346695],\n\t\t\t\t\t\t[-74.748147, 40.424156],\n\t\t\t\t\t\t[-74.722156, 40.375146],\n\t\t\t\t\t\t[-74.622744, 40.384421],\n\t\t\t\t\t\t[-74.617525, 40.377862],\n\t\t\t\t\t\t[-74.619591, 40.374397],\n\t\t\t\t\t\t[-74.572559, 40.301054],\n\t\t\t\t\t\t[-74.484287, 40.253299],\n\t\t\t\t\t\t[-74.587847, 40.138237],\n\t\t\t\t\t\t[-74.589318, 40.138051],\n\t\t\t\t\t\t[-74.589614, 40.138190],\n\t\t\t\t\t\t[-74.589638, 40.138741],\n\t\t\t\t\t\t[-74.589954, 40.138879],\n\t\t\t\t\t\t[-74.591221, 40.137913],\n\t\t\t\t\t\t[-74.591754, 40.137981],\n\t\t\t\t\t\t[-74.592468, 40.138494],\n\t\t\t\t\t\t[-74.592650, 40.137818],\n\t\t\t\t\t\t[-74.593354, 40.137855],\n\t\t\t\t\t\t[-74.593987, 40.137541],\n\t\t\t\t\t\t[-74.594770, 40.137875],\n\t\t\t\t\t\t[-74.724179, 40.147324]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US34029\",\n\t\t\t\t\"STATE\": \"34\",\n\t\t\t\t\"COUNTY\": \"029\",\n\t\t\t\t\"NAME\": \"Ocean\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 628.781000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-74.417393, 39.557255],\n\t\t\t\t\t\t[-74.390399, 39.596037],\n\t\t\t\t\t\t[-74.389905, 39.773428],\n\t\t\t\t\t\t[-74.434653, 39.854803],\n\t\t\t\t\t\t[-74.528808, 40.036964],\n\t\t\t\t\t\t[-74.553105, 40.079130],\n\t\t\t\t\t\t[-74.406777, 40.172355],\n\t\t\t\t\t\t[-74.263763, 40.168264],\n\t\t\t\t\t\t[-74.224411, 40.108982],\n\t\t\t\t\t\t[-74.108030, 40.136873],\n\t\t\t\t\t\t[-74.031861, 40.101047],\n\t\t\t\t\t\t[-74.031318, 40.100541],\n\t\t\t\t\t\t[-74.033546, 40.099518],\n\t\t\t\t\t\t[-74.039421, 40.081437],\n\t\t\t\t\t\t[-74.058798, 40.001244],\n\t\t\t\t\t\t[-74.064135, 39.979157],\n\t\t\t\t\t\t[-74.077247, 39.910991],\n\t\t\t\t\t\t[-74.090945, 39.799978],\n\t\t\t\t\t\t[-74.097071, 39.767847],\n\t\t\t\t\t\t[-74.096906, 39.763030],\n\t\t\t\t\t\t[-74.098920, 39.759538],\n\t\t\t\t\t\t[-74.101443, 39.756173],\n\t\t\t\t\t\t[-74.113655, 39.740719],\n\t\t\t\t\t\t[-74.141733, 39.689435],\n\t\t\t\t\t\t[-74.190974, 39.625118],\n\t\t\t\t\t\t[-74.240506, 39.554911],\n\t\t\t\t\t\t[-74.249043, 39.547994],\n\t\t\t\t\t\t[-74.277370, 39.514064],\n\t\t\t\t\t\t[-74.291585, 39.507705],\n\t\t\t\t\t\t[-74.311037, 39.506715],\n\t\t\t\t\t\t[-74.312451, 39.499869],\n\t\t\t\t\t\t[-74.417393, 39.557255]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US34033\",\n\t\t\t\t\"STATE\": \"34\",\n\t\t\t\t\"COUNTY\": \"033\",\n\t\t\t\t\"NAME\": \"Salem\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 331.899000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-75.440623, 39.780926],\n\t\t\t\t\t\t[-75.378232, 39.745763],\n\t\t\t\t\t\t[-75.326452, 39.689992],\n\t\t\t\t\t\t[-75.199706, 39.666912],\n\t\t\t\t\t\t[-75.061973, 39.568643],\n\t\t\t\t\t\t[-75.084187, 39.457960],\n\t\t\t\t\t\t[-75.239529, 39.559188],\n\t\t\t\t\t\t[-75.368213, 39.456479],\n\t\t\t\t\t\t[-75.407294, 39.381954],\n\t\t\t\t\t\t[-75.422099, 39.386521],\n\t\t\t\t\t\t[-75.431803, 39.391625],\n\t\t\t\t\t\t[-75.442393, 39.402291],\n\t\t\t\t\t\t[-75.465212, 39.438930],\n\t\t\t\t\t\t[-75.476279, 39.438126],\n\t\t\t\t\t\t[-75.483572, 39.440824],\n\t\t\t\t\t\t[-75.505672, 39.452927],\n\t\t\t\t\t\t[-75.508383, 39.459131],\n\t\t\t\t\t\t[-75.536431, 39.460559],\n\t\t\t\t\t\t[-75.542894, 39.470447],\n\t\t\t\t\t\t[-75.544368, 39.479602],\n\t\t\t\t\t\t[-75.542693, 39.496568],\n\t\t\t\t\t\t[-75.528088, 39.498114],\n\t\t\t\t\t\t[-75.527141, 39.500112],\n\t\t\t\t\t\t[-75.514756, 39.562612],\n\t\t\t\t\t\t[-75.511932, 39.567616],\n\t\t\t\t\t\t[-75.512732, 39.578000],\n\t\t\t\t\t\t[-75.525677, 39.584048],\n\t\t\t\t\t\t[-75.531133, 39.587984],\n\t\t\t\t\t\t[-75.534477, 39.590384],\n\t\t\t\t\t\t[-75.537213, 39.592944],\n\t\t\t\t\t\t[-75.539540, 39.594251],\n\t\t\t\t\t\t[-75.539949, 39.594384],\n\t\t\t\t\t\t[-75.543965, 39.596000],\n\t\t\t\t\t\t[-75.545405, 39.596784],\n\t\t\t\t\t\t[-75.555870, 39.605824],\n\t\t\t\t\t\t[-75.559446, 39.629812],\n\t\t\t\t\t\t[-75.526844, 39.655713],\n\t\t\t\t\t\t[-75.526344, 39.656413],\n\t\t\t\t\t\t[-75.509342, 39.685313],\n\t\t\t\t\t\t[-75.509742, 39.686113],\n\t\t\t\t\t\t[-75.504042, 39.698313],\n\t\t\t\t\t\t[-75.475384, 39.731057],\n\t\t\t\t\t\t[-75.474168, 39.735473],\n\t\t\t\t\t\t[-75.469239, 39.743613],\n\t\t\t\t\t\t[-75.466263, 39.750737],\n\t\t\t\t\t\t[-75.466249, 39.750769],\n\t\t\t\t\t\t[-75.448135, 39.773969],\n\t\t\t\t\t\t[-75.440623, 39.780926]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US34035\",\n\t\t\t\t\"STATE\": \"34\",\n\t\t\t\t\"COUNTY\": \"035\",\n\t\t\t\t\"NAME\": \"Somerset\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 301.813000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-74.782513, 40.487775],\n\t\t\t\t\t\t[-74.713150, 40.583903],\n\t\t\t\t\t\t[-74.724418, 40.719455],\n\t\t\t\t\t\t[-74.555771, 40.758005],\n\t\t\t\t\t\t[-74.548999, 40.740994],\n\t\t\t\t\t\t[-74.528827, 40.728133],\n\t\t\t\t\t\t[-74.526846, 40.710872],\n\t\t\t\t\t\t[-74.513608, 40.697339],\n\t\t\t\t\t\t[-74.534387, 40.667256],\n\t\t\t\t\t\t[-74.523627, 40.649702],\n\t\t\t\t\t\t[-74.510502, 40.650295],\n\t\t\t\t\t\t[-74.503863, 40.659627],\n\t\t\t\t\t\t[-74.484118, 40.663387],\n\t\t\t\t\t\t[-74.484289, 40.666065],\n\t\t\t\t\t\t[-74.470020, 40.667934],\n\t\t\t\t\t\t[-74.461231, 40.673397],\n\t\t\t\t\t\t[-74.408264, 40.644185],\n\t\t\t\t\t\t[-74.417038, 40.628077],\n\t\t\t\t\t\t[-74.438040, 40.609910],\n\t\t\t\t\t\t[-74.463351, 40.599245],\n\t\t\t\t\t\t[-74.515782, 40.544955],\n\t\t\t\t\t\t[-74.514622, 40.542711],\n\t\t\t\t\t\t[-74.512729, 40.540541],\n\t\t\t\t\t\t[-74.503309, 40.534119],\n\t\t\t\t\t\t[-74.499362, 40.531951],\n\t\t\t\t\t\t[-74.495398, 40.529403],\n\t\t\t\t\t\t[-74.490547, 40.523048],\n\t\t\t\t\t\t[-74.459922, 40.491015],\n\t\t\t\t\t\t[-74.489524, 40.474415],\n\t\t\t\t\t\t[-74.493226, 40.470770],\n\t\t\t\t\t\t[-74.494275, 40.469807],\n\t\t\t\t\t\t[-74.619591, 40.374397],\n\t\t\t\t\t\t[-74.617525, 40.377862],\n\t\t\t\t\t\t[-74.622744, 40.384421],\n\t\t\t\t\t\t[-74.722156, 40.375146],\n\t\t\t\t\t\t[-74.748147, 40.424156],\n\t\t\t\t\t\t[-74.782513, 40.487775]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US34041\",\n\t\t\t\t\"STATE\": \"34\",\n\t\t\t\t\"COUNTY\": \"041\",\n\t\t\t\t\"NAME\": \"Warren\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 356.918000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-74.980674, 41.078178],\n\t\t\t\t\t\t[-74.968389, 41.087797],\n\t\t\t\t\t\t[-74.966759, 41.093425],\n\t\t\t\t\t\t[-74.967389, 41.094049],\n\t\t\t\t\t\t[-74.966349, 41.094003],\n\t\t\t\t\t\t[-74.789210, 40.931298],\n\t\t\t\t\t\t[-74.767874, 40.911823],\n\t\t\t\t\t\t[-74.889753, 40.787832],\n\t\t\t\t\t\t[-74.968454, 40.710791],\n\t\t\t\t\t\t[-75.190858, 40.591342],\n\t\t\t\t\t\t[-75.196803, 40.608580],\n\t\t\t\t\t\t[-75.200708, 40.618356],\n\t\t\t\t\t\t[-75.203920, 40.691498],\n\t\t\t\t\t\t[-75.196533, 40.751631],\n\t\t\t\t\t\t[-75.171587, 40.777745],\n\t\t\t\t\t\t[-75.163650, 40.778386],\n\t\t\t\t\t\t[-75.149378, 40.774786],\n\t\t\t\t\t\t[-75.134400, 40.773765],\n\t\t\t\t\t\t[-75.108505, 40.791094],\n\t\t\t\t\t\t[-75.053294, 40.859900],\n\t\t\t\t\t\t[-75.051029, 40.865662],\n\t\t\t\t\t\t[-75.052538, 40.872051],\n\t\t\t\t\t\t[-75.117764, 40.953023],\n\t\t\t\t\t\t[-75.119893, 40.961646],\n\t\t\t\t\t\t[-75.120316, 40.962630],\n\t\t\t\t\t\t[-75.120435, 40.968302],\n\t\t\t\t\t\t[-75.120564, 40.968313],\n\t\t\t\t\t\t[-75.131364, 40.969277],\n\t\t\t\t\t\t[-75.135526, 40.973807],\n\t\t\t\t\t\t[-75.130575, 40.991093],\n\t\t\t\t\t\t[-75.109114, 41.004102],\n\t\t\t\t\t\t[-75.091377, 41.012283],\n\t\t\t\t\t\t[-75.069277, 41.019348],\n\t\t\t\t\t\t[-75.051794, 41.027142],\n\t\t\t\t\t\t[-75.036982, 41.034702],\n\t\t\t\t\t\t[-75.026003, 41.042687],\n\t\t\t\t\t\t[-74.980674, 41.078178]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US35007\",\n\t\t\t\t\"STATE\": \"35\",\n\t\t\t\t\"COUNTY\": \"007\",\n\t\t\t\t\"NAME\": \"Colfax\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 3758.060000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-105.120800, 36.995428],\n\t\t\t\t\t\t[-105.000554, 36.993264],\n\t\t\t\t\t\t[-104.732120, 36.993484],\n\t\t\t\t\t\t[-104.732031, 36.993447],\n\t\t\t\t\t\t[-104.007855, 36.996239],\n\t\t\t\t\t\t[-104.008927, 36.218018],\n\t\t\t\t\t\t[-104.436121, 36.218761],\n\t\t\t\t\t\t[-104.865545, 36.217997],\n\t\t\t\t\t\t[-104.865185, 36.261144],\n\t\t\t\t\t\t[-105.340907, 36.262245],\n\t\t\t\t\t\t[-105.327301, 36.405430],\n\t\t\t\t\t\t[-105.356826, 36.449504],\n\t\t\t\t\t\t[-105.318718, 36.491693],\n\t\t\t\t\t\t[-105.377745, 36.552096],\n\t\t\t\t\t\t[-105.370638, 36.681032],\n\t\t\t\t\t\t[-105.311842, 36.724471],\n\t\t\t\t\t\t[-105.230632, 36.723784],\n\t\t\t\t\t\t[-105.220613, 36.995169],\n\t\t\t\t\t\t[-105.155042, 36.995339],\n\t\t\t\t\t\t[-105.120800, 36.995428]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30055\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"055\",\n\t\t\t\t\"NAME\": \"McCone\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2643.172000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-106.418567, 47.957414],\n\t\t\t\t\t\t[-106.394163, 48.064726],\n\t\t\t\t\t\t[-106.229302, 48.026416],\n\t\t\t\t\t\t[-106.006176, 48.033689],\n\t\t\t\t\t\t[-105.843797, 48.010314],\n\t\t\t\t\t\t[-105.647941, 48.077304],\n\t\t\t\t\t\t[-105.498036, 48.097903],\n\t\t\t\t\t\t[-105.228200, 48.092390],\n\t\t\t\t\t\t[-105.194742, 48.065669],\n\t\t\t\t\t\t[-105.194933, 47.868180],\n\t\t\t\t\t\t[-105.234619, 47.790760],\n\t\t\t\t\t\t[-105.362992, 47.790420],\n\t\t\t\t\t\t[-105.363449, 47.529400],\n\t\t\t\t\t\t[-105.406511, 47.529214],\n\t\t\t\t\t\t[-105.406237, 47.181563],\n\t\t\t\t\t\t[-105.833042, 47.180967],\n\t\t\t\t\t\t[-105.832846, 47.093144],\n\t\t\t\t\t\t[-105.960127, 47.092969],\n\t\t\t\t\t\t[-105.960094, 47.180981],\n\t\t\t\t\t\t[-106.086777, 47.180938],\n\t\t\t\t\t\t[-106.170434, 47.180930],\n\t\t\t\t\t\t[-106.170675, 47.354708],\n\t\t\t\t\t\t[-106.298189, 47.354391],\n\t\t\t\t\t\t[-106.298087, 47.528900],\n\t\t\t\t\t\t[-106.260585, 47.529000],\n\t\t\t\t\t\t[-106.261082, 47.868312],\n\t\t\t\t\t\t[-106.358288, 47.868412],\n\t\t\t\t\t\t[-106.358288, 47.957216],\n\t\t\t\t\t\t[-106.418567, 47.957414]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30057\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"057\",\n\t\t\t\t\"NAME\": \"Madison\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 3587.484000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-111.805134, 45.798018],\n\t\t\t\t\t\t[-111.536816, 45.656736],\n\t\t\t\t\t\t[-111.536614, 45.642131],\n\t\t\t\t\t\t[-111.351346, 45.641938],\n\t\t\t\t\t\t[-111.377682, 44.751744],\n\t\t\t\t\t\t[-111.394815, 44.751351],\n\t\t\t\t\t\t[-111.481536, 44.709186],\n\t\t\t\t\t\t[-111.781713, 44.708848],\n\t\t\t\t\t\t[-111.781812, 44.781129],\n\t\t\t\t\t\t[-112.065870, 44.783752],\n\t\t\t\t\t\t[-112.065678, 44.825985],\n\t\t\t\t\t\t[-112.167103, 44.826722],\n\t\t\t\t\t\t[-112.191197, 45.000439],\n\t\t\t\t\t\t[-112.334258, 45.000616],\n\t\t\t\t\t\t[-112.333813, 45.088463],\n\t\t\t\t\t\t[-112.456847, 45.088574],\n\t\t\t\t\t\t[-112.457744, 45.349963],\n\t\t\t\t\t\t[-112.505346, 45.443048],\n\t\t\t\t\t\t[-112.628609, 45.440586],\n\t\t\t\t\t\t[-112.691417, 45.483518],\n\t\t\t\t\t\t[-112.687054, 45.624854],\n\t\t\t\t\t\t[-112.549534, 45.684317],\n\t\t\t\t\t\t[-112.515453, 45.746702],\n\t\t\t\t\t\t[-112.190269, 45.748503],\n\t\t\t\t\t\t[-112.106378, 45.841188],\n\t\t\t\t\t\t[-111.930144, 45.857148],\n\t\t\t\t\t\t[-111.805134, 45.798018]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37195\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"195\",\n\t\t\t\t\"NAME\": \"Wilson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 368.174000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.192070, 35.730443],\n\t\t\t\t\t\t[-77.931355, 35.830165],\n\t\t\t\t\t\t[-77.927859, 35.831508],\n\t\t\t\t\t\t[-77.915581, 35.836590],\n\t\t\t\t\t\t[-77.828444, 35.867208],\n\t\t\t\t\t\t[-77.751567, 35.827860],\n\t\t\t\t\t\t[-77.661312, 35.677321],\n\t\t\t\t\t\t[-77.688822, 35.660166],\n\t\t\t\t\t\t[-77.700502, 35.652256],\n\t\t\t\t\t\t[-77.753646, 35.615818],\n\t\t\t\t\t\t[-77.801698, 35.586132],\n\t\t\t\t\t\t[-77.806097, 35.583457],\n\t\t\t\t\t\t[-77.809014, 35.584179],\n\t\t\t\t\t\t[-77.811456, 35.586056],\n\t\t\t\t\t\t[-77.816125, 35.588443],\n\t\t\t\t\t\t[-77.818142, 35.587825],\n\t\t\t\t\t\t[-77.822372, 35.585467],\n\t\t\t\t\t\t[-77.823471, 35.585523],\n\t\t\t\t\t\t[-78.064603, 35.585419],\n\t\t\t\t\t\t[-78.125587, 35.603111],\n\t\t\t\t\t\t[-78.192070, 35.730443]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37199\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"199\",\n\t\t\t\t\"NAME\": \"Yancey\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 312.597000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.462958, 36.007309],\n\t\t\t\t\t\t[-82.416857, 36.072885],\n\t\t\t\t\t\t[-82.338245, 36.030294],\n\t\t\t\t\t\t[-82.199347, 36.015792],\n\t\t\t\t\t\t[-82.133182, 35.824446],\n\t\t\t\t\t\t[-82.197226, 35.736369],\n\t\t\t\t\t\t[-82.275394, 35.704423],\n\t\t\t\t\t\t[-82.348160, 35.810581],\n\t\t\t\t\t\t[-82.408728, 35.818061],\n\t\t\t\t\t\t[-82.505860, 35.978342],\n\t\t\t\t\t\t[-82.487451, 35.991557],\n\t\t\t\t\t\t[-82.487411, 35.991634],\n\t\t\t\t\t\t[-82.462958, 36.007309]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US38005\",\n\t\t\t\t\"STATE\": \"38\",\n\t\t\t\t\"COUNTY\": \"005\",\n\t\t\t\t\"NAME\": \"Benson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1388.708000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.200306, 48.370658],\n\t\t\t\t\t\t[-99.199911, 48.155309],\n\t\t\t\t\t\t[-99.070443, 48.107857],\n\t\t\t\t\t\t[-99.070351, 48.021955],\n\t\t\t\t\t\t[-99.001038, 48.053294],\n\t\t\t\t\t\t[-98.991253, 47.990260],\n\t\t\t\t\t\t[-98.803893, 48.059901],\n\t\t\t\t\t\t[-98.750610, 47.982456],\n\t\t\t\t\t\t[-98.672086, 48.000400],\n\t\t\t\t\t\t[-98.625384, 47.916399],\n\t\t\t\t\t\t[-98.525555, 47.915056],\n\t\t\t\t\t\t[-98.525516, 47.846276],\n\t\t\t\t\t\t[-99.297204, 47.846811],\n\t\t\t\t\t\t[-99.812167, 47.847257],\n\t\t\t\t\t\t[-99.812133, 48.021451],\n\t\t\t\t\t\t[-99.848222, 48.021424],\n\t\t\t\t\t\t[-99.846613, 48.371298],\n\t\t\t\t\t\t[-99.492919, 48.370946],\n\t\t\t\t\t\t[-99.200306, 48.370658]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US38009\",\n\t\t\t\t\"STATE\": \"38\",\n\t\t\t\t\"COUNTY\": \"009\",\n\t\t\t\t\"NAME\": \"Bottineau\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1668.421000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-101.059660, 48.545337],\n\t\t\t\t\t\t[-101.451275, 48.546079],\n\t\t\t\t\t\t[-101.451152, 48.720018],\n\t\t\t\t\t\t[-101.496684, 48.720078],\n\t\t\t\t\t\t[-101.496737, 48.999355],\n\t\t\t\t\t\t[-101.225915, 48.999531],\n\t\t\t\t\t\t[-101.225187, 48.999566],\n\t\t\t\t\t\t[-101.220754, 48.999455],\n\t\t\t\t\t\t[-101.216182, 48.999469],\n\t\t\t\t\t\t[-100.920577, 48.999560],\n\t\t\t\t\t\t[-100.917939, 48.999571],\n\t\t\t\t\t\t[-100.913634, 48.999662],\n\t\t\t\t\t\t[-100.907107, 48.999593],\n\t\t\t\t\t\t[-100.433981, 48.999410],\n\t\t\t\t\t\t[-100.434351, 48.999570],\n\t\t\t\t\t\t[-100.431642, 48.999604],\n\t\t\t\t\t\t[-100.431676, 48.999398],\n\t\t\t\t\t\t[-100.182707, 48.999230],\n\t\t\t\t\t\t[-100.183034, 48.718909],\n\t\t\t\t\t\t[-100.145494, 48.718875],\n\t\t\t\t\t\t[-100.145858, 48.545211],\n\t\t\t\t\t\t[-100.276660, 48.544813],\n\t\t\t\t\t\t[-100.406388, 48.544657],\n\t\t\t\t\t\t[-100.406780, 48.631878],\n\t\t\t\t\t\t[-101.059624, 48.632424],\n\t\t\t\t\t\t[-101.059660, 48.545337]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US38017\",\n\t\t\t\t\"STATE\": \"38\",\n\t\t\t\t\"COUNTY\": \"017\",\n\t\t\t\t\"NAME\": \"Cass\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1764.937000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.832946, 47.237588],\n\t\t\t\t\t\t[-96.826655, 47.150539],\n\t\t\t\t\t\t[-96.824807, 47.124968],\n\t\t\t\t\t\t[-96.823180, 46.999965],\n\t\t\t\t\t\t[-96.824598, 46.993309],\n\t\t\t\t\t\t[-96.823222, 46.970861],\n\t\t\t\t\t\t[-96.791558, 46.934264],\n\t\t\t\t\t\t[-96.780258, 46.928263],\n\t\t\t\t\t\t[-96.767458, 46.905163],\n\t\t\t\t\t\t[-96.802013, 46.812464],\n\t\t\t\t\t\t[-96.784205, 46.686768],\n\t\t\t\t\t\t[-96.783014, 46.630647],\n\t\t\t\t\t\t[-97.279948, 46.629348],\n\t\t\t\t\t\t[-97.682006, 46.629928],\n\t\t\t\t\t\t[-97.681508, 46.978481],\n\t\t\t\t\t\t[-97.706027, 46.978558],\n\t\t\t\t\t\t[-97.706034, 47.239978],\n\t\t\t\t\t\t[-97.451512, 47.239061],\n\t\t\t\t\t\t[-96.833019, 47.238095],\n\t\t\t\t\t\t[-96.832946, 47.237588]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US38027\",\n\t\t\t\t\"STATE\": \"38\",\n\t\t\t\t\"COUNTY\": \"027\",\n\t\t\t\t\"NAME\": \"Eddy\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 630.171000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.265846, 47.587618],\n\t\t\t\t\t\t[-99.297318, 47.673004],\n\t\t\t\t\t\t[-99.297204, 47.846811],\n\t\t\t\t\t\t[-98.525516, 47.846276],\n\t\t\t\t\t\t[-98.500181, 47.672413],\n\t\t\t\t\t\t[-98.500085, 47.587228],\n\t\t\t\t\t\t[-99.265846, 47.587618]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US38029\",\n\t\t\t\t\"STATE\": \"38\",\n\t\t\t\t\"COUNTY\": \"029\",\n\t\t\t\t\"NAME\": \"Emmons\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1510.435000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.880062, 45.941670],\n\t\t\t\t\t\t[-99.880292, 45.941672],\n\t\t\t\t\t\t[-99.965775, 45.941822],\n\t\t\t\t\t\t[-100.005486, 45.941950],\n\t\t\t\t\t\t[-100.069020, 45.942170],\n\t\t\t\t\t\t[-100.084163, 45.942301],\n\t\t\t\t\t\t[-100.108471, 45.942391],\n\t\t\t\t\t\t[-100.110339, 45.942367],\n\t\t\t\t\t\t[-100.141730, 45.942506],\n\t\t\t\t\t\t[-100.152084, 45.942486],\n\t\t\t\t\t\t[-100.170826, 45.942514],\n\t\t\t\t\t\t[-100.274762, 45.942945],\n\t\t\t\t\t\t[-100.275614, 45.942922],\n\t\t\t\t\t\t[-100.284134, 45.942951],\n\t\t\t\t\t\t[-100.285345, 45.943130],\n\t\t\t\t\t\t[-100.294126, 45.943269],\n\t\t\t\t\t\t[-100.410386, 45.943453],\n\t\t\t\t\t\t[-100.420162, 45.943533],\n\t\t\t\t\t\t[-100.424438, 45.943569],\n\t\t\t\t\t\t[-100.430597, 45.943638],\n\t\t\t\t\t\t[-100.462838, 45.943566],\n\t\t\t\t\t\t[-100.499354, 45.943632],\n\t\t\t\t\t\t[-100.511793, 45.943654],\n\t\t\t\t\t\t[-100.511949, 45.943654],\n\t\t\t\t\t\t[-100.614504, 46.071796],\n\t\t\t\t\t\t[-100.629145, 46.145608],\n\t\t\t\t\t\t[-100.558549, 46.249993],\n\t\t\t\t\t\t[-100.551199, 46.363494],\n\t\t\t\t\t\t[-100.590199, 46.427894],\n\t\t\t\t\t\t[-100.544555, 46.533766],\n\t\t\t\t\t\t[-100.661890, 46.634450],\n\t\t\t\t\t\t[-100.081198, 46.633396],\n\t\t\t\t\t\t[-99.915508, 46.632925],\n\t\t\t\t\t\t[-99.916758, 46.283171],\n\t\t\t\t\t\t[-99.878431, 46.282811],\n\t\t\t\t\t\t[-99.880062, 45.941670]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US38037\",\n\t\t\t\t\"STATE\": \"38\",\n\t\t\t\t\"COUNTY\": \"037\",\n\t\t\t\t\"NAME\": \"Grant\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1659.139000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-101.025662, 46.284219],\n\t\t\t\t\t\t[-101.198073, 46.183770],\n\t\t\t\t\t\t[-101.190372, 46.147847],\n\t\t\t\t\t\t[-101.554185, 46.006836],\n\t\t\t\t\t\t[-101.842108, 46.029136],\n\t\t\t\t\t\t[-101.849355, 46.073275],\n\t\t\t\t\t\t[-101.998575, 46.053461],\n\t\t\t\t\t\t[-101.997888, 46.205480],\n\t\t\t\t\t\t[-102.046929, 46.283606],\n\t\t\t\t\t\t[-102.050986, 46.630871],\n\t\t\t\t\t\t[-102.096585, 46.631024],\n\t\t\t\t\t\t[-102.096395, 46.688950],\n\t\t\t\t\t\t[-102.096239, 46.717706],\n\t\t\t\t\t\t[-101.718155, 46.718019],\n\t\t\t\t\t\t[-101.718106, 46.630999],\n\t\t\t\t\t\t[-101.299052, 46.630310],\n\t\t\t\t\t\t[-101.298990, 46.371451],\n\t\t\t\t\t\t[-101.048532, 46.371393],\n\t\t\t\t\t\t[-101.025662, 46.284219]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US38039\",\n\t\t\t\t\"STATE\": \"38\",\n\t\t\t\t\"COUNTY\": \"039\",\n\t\t\t\t\"NAME\": \"Griggs\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 708.815000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.500085, 47.587228],\n\t\t\t\t\t\t[-98.500181, 47.672413],\n\t\t\t\t\t\t[-97.984810, 47.672300],\n\t\t\t\t\t\t[-97.986585, 47.326100],\n\t\t\t\t\t\t[-97.961208, 47.240512],\n\t\t\t\t\t\t[-98.467476, 47.240453],\n\t\t\t\t\t\t[-98.467263, 47.326530],\n\t\t\t\t\t\t[-98.499246, 47.326538],\n\t\t\t\t\t\t[-98.500085, 47.587228]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US38043\",\n\t\t\t\t\"STATE\": \"38\",\n\t\t\t\t\"COUNTY\": \"043\",\n\t\t\t\t\"NAME\": \"Kidder\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1351.189000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.915508, 46.632925],\n\t\t\t\t\t\t[-100.081198, 46.633396],\n\t\t\t\t\t\t[-100.075229, 46.981282],\n\t\t\t\t\t\t[-100.114637, 46.981666],\n\t\t\t\t\t\t[-100.113261, 47.327262],\n\t\t\t\t\t\t[-100.094739, 47.327326],\n\t\t\t\t\t\t[-100.093491, 47.327087],\n\t\t\t\t\t\t[-100.036063, 47.327304],\n\t\t\t\t\t\t[-100.033292, 47.327192],\n\t\t\t\t\t\t[-99.480726, 47.327076],\n\t\t\t\t\t\t[-99.481085, 46.980694],\n\t\t\t\t\t\t[-99.446423, 46.980889],\n\t\t\t\t\t\t[-99.449720, 46.631630],\n\t\t\t\t\t\t[-99.915508, 46.632925]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US38047\",\n\t\t\t\t\"STATE\": \"38\",\n\t\t\t\t\"COUNTY\": \"047\",\n\t\t\t\t\"NAME\": \"Logan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 992.818000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.449720, 46.631630],\n\t\t\t\t\t\t[-99.036639, 46.630575],\n\t\t\t\t\t\t[-99.037367, 46.283151],\n\t\t\t\t\t\t[-99.878431, 46.282811],\n\t\t\t\t\t\t[-99.916758, 46.283171],\n\t\t\t\t\t\t[-99.915508, 46.632925],\n\t\t\t\t\t\t[-99.449720, 46.631630]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US38053\",\n\t\t\t\t\"STATE\": \"38\",\n\t\t\t\t\"COUNTY\": \"053\",\n\t\t\t\t\"NAME\": \"McKenzie\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2760.323000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-103.099197, 47.328714],\n\t\t\t\t\t\t[-103.666723, 47.329354],\n\t\t\t\t\t\t[-104.045307, 47.330128],\n\t\t\t\t\t\t[-104.045313, 47.331955],\n\t\t\t\t\t\t[-104.045333, 47.343452],\n\t\t\t\t\t\t[-104.045069, 47.397461],\n\t\t\t\t\t\t[-104.044797, 47.438445],\n\t\t\t\t\t\t[-104.044621, 47.459380],\n\t\t\t\t\t\t[-104.043242, 47.747106],\n\t\t\t\t\t\t[-104.043199, 47.747292],\n\t\t\t\t\t\t[-104.042384, 47.803256],\n\t\t\t\t\t\t[-104.042432, 47.805358],\n\t\t\t\t\t\t[-104.042567, 47.808237],\n\t\t\t\t\t\t[-104.041869, 47.841699],\n\t\t\t\t\t\t[-104.041662, 47.862282],\n\t\t\t\t\t\t[-104.042230, 47.891031],\n\t\t\t\t\t\t[-104.043329, 47.949554],\n\t\t\t\t\t\t[-104.043497, 47.954490],\n\t\t\t\t\t\t[-104.043933, 47.971515],\n\t\t\t\t\t\t[-104.044162, 47.992836],\n\t\t\t\t\t\t[-104.044120, 47.996107],\n\t\t\t\t\t\t[-103.919789, 47.955950],\n\t\t\t\t\t\t[-103.856306, 48.015072],\n\t\t\t\t\t\t[-103.800817, 47.994269],\n\t\t\t\t\t\t[-103.742216, 48.093403],\n\t\t\t\t\t\t[-103.597044, 48.134410],\n\t\t\t\t\t\t[-103.548572, 48.087724],\n\t\t\t\t\t\t[-103.584774, 48.054124],\n\t\t\t\t\t\t[-103.501172, 48.005925],\n\t\t\t\t\t\t[-103.234865, 48.061923],\n\t\t\t\t\t\t[-103.201890, 48.135208],\n\t\t\t\t\t\t[-103.107083, 48.146494],\n\t\t\t\t\t\t[-102.828477, 48.123664],\n\t\t\t\t\t\t[-102.663487, 48.076651],\n\t\t\t\t\t\t[-102.552981, 47.998646],\n\t\t\t\t\t\t[-102.644764, 47.906715],\n\t\t\t\t\t\t[-102.642266, 47.823713],\n\t\t\t\t\t\t[-102.642766, 47.673911],\n\t\t\t\t\t\t[-103.099867, 47.674416],\n\t\t\t\t\t\t[-103.099197, 47.328714]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US38059\",\n\t\t\t\t\"STATE\": \"38\",\n\t\t\t\t\"COUNTY\": \"059\",\n\t\t\t\t\"NAME\": \"Morton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1926.270000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-101.025662, 46.284219],\n\t\t\t\t\t\t[-101.048532, 46.371393],\n\t\t\t\t\t\t[-101.298990, 46.371451],\n\t\t\t\t\t\t[-101.299052, 46.630310],\n\t\t\t\t\t\t[-101.718106, 46.630999],\n\t\t\t\t\t\t[-101.718155, 46.718019],\n\t\t\t\t\t\t[-102.096239, 46.717706],\n\t\t\t\t\t\t[-102.097087, 46.980813],\n\t\t\t\t\t\t[-102.096675, 46.981159],\n\t\t\t\t\t\t[-101.764392, 46.981306],\n\t\t\t\t\t\t[-100.935983, 46.982840],\n\t\t\t\t\t\t[-100.819089, 46.792424],\n\t\t\t\t\t\t[-100.839414, 46.763776],\n\t\t\t\t\t\t[-100.661890, 46.634450],\n\t\t\t\t\t\t[-100.544555, 46.533766],\n\t\t\t\t\t\t[-100.590199, 46.427894],\n\t\t\t\t\t\t[-100.721261, 46.390084],\n\t\t\t\t\t\t[-100.918950, 46.394983],\n\t\t\t\t\t\t[-101.025662, 46.284219]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US38063\",\n\t\t\t\t\"STATE\": \"38\",\n\t\t\t\t\"COUNTY\": \"063\",\n\t\t\t\t\"NAME\": \"Nelson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 981.775000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.525516, 47.846276],\n\t\t\t\t\t\t[-98.525555, 47.915056],\n\t\t\t\t\t\t[-98.525609, 48.021150],\n\t\t\t\t\t\t[-98.422659, 48.021115],\n\t\t\t\t\t\t[-98.422100, 48.194824],\n\t\t\t\t\t\t[-98.292184, 48.195177],\n\t\t\t\t\t\t[-97.903434, 48.194897],\n\t\t\t\t\t\t[-97.882179, 48.020803],\n\t\t\t\t\t\t[-97.882405, 47.672179],\n\t\t\t\t\t\t[-97.984810, 47.672300],\n\t\t\t\t\t\t[-98.500181, 47.672413],\n\t\t\t\t\t\t[-98.525516, 47.846276]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47001\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"001\",\n\t\t\t\t\"NAME\": \"Anderson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 337.162000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.271587, 35.910165],\n\t\t\t\t\t\t[-84.320060, 35.991607],\n\t\t\t\t\t\t[-84.324987, 36.004535],\n\t\t\t\t\t\t[-84.340197, 36.044973],\n\t\t\t\t\t\t[-84.340405, 36.045727],\n\t\t\t\t\t\t[-84.341812, 36.048977],\n\t\t\t\t\t\t[-84.441034, 36.163478],\n\t\t\t\t\t\t[-84.372731, 36.216778],\n\t\t\t\t\t\t[-84.241825, 36.177578],\n\t\t\t\t\t\t[-84.227527, 36.244879],\n\t\t\t\t\t\t[-84.069918, 36.230378],\n\t\t\t\t\t\t[-84.004317, 36.270378],\n\t\t\t\t\t\t[-83.941711, 36.186378],\n\t\t\t\t\t\t[-84.094011, 36.068911],\n\t\t\t\t\t\t[-84.058585, 36.036304],\n\t\t\t\t\t\t[-84.195151, 35.993008],\n\t\t\t\t\t\t[-84.271587, 35.910165]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47003\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"003\",\n\t\t\t\t\"NAME\": \"Bedford\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 473.635000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.257590, 35.412476],\n\t\t\t\t\t\t[-86.444169, 35.320700],\n\t\t\t\t\t\t[-86.525306, 35.354718],\n\t\t\t\t\t\t[-86.543671, 35.363211],\n\t\t\t\t\t\t[-86.552694, 35.359983],\n\t\t\t\t\t\t[-86.582875, 35.370983],\n\t\t\t\t\t\t[-86.599478, 35.364950],\n\t\t\t\t\t\t[-86.658247, 35.435281],\n\t\t\t\t\t\t[-86.639436, 35.685900],\n\t\t\t\t\t\t[-86.543116, 35.697617],\n\t\t\t\t\t\t[-86.403312, 35.618874],\n\t\t\t\t\t\t[-86.341940, 35.664259],\n\t\t\t\t\t\t[-86.245165, 35.631913],\n\t\t\t\t\t\t[-86.257590, 35.412476]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40065\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"065\",\n\t\t\t\t\"NAME\": \"Jackson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 802.651000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.211423, 34.337897],\n\t\t\t\t\t\t[-99.261321, 34.403499],\n\t\t\t\t\t\t[-99.356713, 34.442144],\n\t\t\t\t\t\t[-99.398635, 34.375832],\n\t\t\t\t\t\t[-99.407168, 34.372605],\n\t\t\t\t\t\t[-99.440760, 34.374123],\n\t\t\t\t\t\t[-99.453477, 34.388756],\n\t\t\t\t\t\t[-99.474161, 34.398052],\n\t\t\t\t\t\t[-99.499875, 34.409608],\n\t\t\t\t\t\t[-99.515385, 34.414333],\n\t\t\t\t\t\t[-99.574367, 34.418281],\n\t\t\t\t\t\t[-99.580060, 34.416653],\n\t\t\t\t\t\t[-99.616793, 34.375391],\n\t\t\t\t\t\t[-99.663948, 34.373680],\n\t\t\t\t\t\t[-99.694970, 34.378333],\n\t\t\t\t\t\t[-99.767234, 34.430502],\n\t\t\t\t\t\t[-99.793684, 34.453894],\n\t\t\t\t\t\t[-99.846399, 34.505045],\n\t\t\t\t\t\t[-99.666512, 34.507121],\n\t\t\t\t\t\t[-99.666849, 34.724555],\n\t\t\t\t\t\t[-99.423201, 34.725020],\n\t\t\t\t\t\t[-99.405821, 34.813038],\n\t\t\t\t\t\t[-99.246462, 34.822114],\n\t\t\t\t\t\t[-99.147265, 34.850389],\n\t\t\t\t\t\t[-99.149114, 34.702352],\n\t\t\t\t\t\t[-99.052511, 34.701557],\n\t\t\t\t\t\t[-99.103150, 34.637950],\n\t\t\t\t\t\t[-99.220707, 34.494484],\n\t\t\t\t\t\t[-99.211396, 34.337688],\n\t\t\t\t\t\t[-99.211423, 34.337897]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40071\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"071\",\n\t\t\t\t\"NAME\": \"Kay\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 919.729000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.749838, 36.998988],\n\t\t\t\t\t\t[-96.752382, 36.782092],\n\t\t\t\t\t\t[-96.889475, 36.751230],\n\t\t\t\t\t\t[-96.931943, 36.686097],\n\t\t\t\t\t\t[-97.064107, 36.684207],\n\t\t\t\t\t\t[-97.057414, 36.593647],\n\t\t\t\t\t\t[-97.461603, 36.593637],\n\t\t\t\t\t\t[-97.462459, 36.593627],\n\t\t\t\t\t\t[-97.462346, 36.998685],\n\t\t\t\t\t\t[-97.462280, 36.998685],\n\t\t\t\t\t\t[-97.384925, 36.998843],\n\t\t\t\t\t\t[-97.372421, 36.998861],\n\t\t\t\t\t\t[-97.147721, 36.999111],\n\t\t\t\t\t\t[-97.122597, 36.999036],\n\t\t\t\t\t\t[-97.120285, 36.999014],\n\t\t\t\t\t\t[-97.104276, 36.999020],\n\t\t\t\t\t\t[-97.100652, 36.998998],\n\t\t\t\t\t\t[-97.039784, 36.999000],\n\t\t\t\t\t\t[-97.030082, 36.998929],\n\t\t\t\t\t\t[-96.975562, 36.999019],\n\t\t\t\t\t\t[-96.967371, 36.999067],\n\t\t\t\t\t\t[-96.934642, 36.999070],\n\t\t\t\t\t\t[-96.921915, 36.999151],\n\t\t\t\t\t\t[-96.917093, 36.999182],\n\t\t\t\t\t\t[-96.903510, 36.999132],\n\t\t\t\t\t\t[-96.902083, 36.999155],\n\t\t\t\t\t\t[-96.876290, 36.999233],\n\t\t\t\t\t\t[-96.867517, 36.999217],\n\t\t\t\t\t\t[-96.822791, 36.999182],\n\t\t\t\t\t\t[-96.795199, 36.998860],\n\t\t\t\t\t\t[-96.792060, 36.999180],\n\t\t\t\t\t\t[-96.749838, 36.998988]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40083\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"083\",\n\t\t\t\t\"NAME\": \"Logan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 743.834000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.140583, 35.941991],\n\t\t\t\t\t\t[-97.141072, 35.724441],\n\t\t\t\t\t\t[-97.674026, 35.725970],\n\t\t\t\t\t\t[-97.675617, 36.164663],\n\t\t\t\t\t\t[-97.460792, 36.164462],\n\t\t\t\t\t\t[-97.353946, 36.164304],\n\t\t\t\t\t\t[-97.354132, 36.159072],\n\t\t\t\t\t\t[-97.353870, 35.984934],\n\t\t\t\t\t\t[-97.323620, 36.010877],\n\t\t\t\t\t\t[-97.140583, 35.941991]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40085\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"085\",\n\t\t\t\t\"NAME\": \"Love\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 513.995000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.972870, 33.935698],\n\t\t\t\t\t\t[-96.985567, 33.886522],\n\t\t\t\t\t\t[-97.006130, 33.861884],\n\t\t\t\t\t\t[-97.047972, 33.817931],\n\t\t\t\t\t\t[-97.092414, 33.733214],\n\t\t\t\t\t\t[-97.097154, 33.727809],\n\t\t\t\t\t\t[-97.107183, 33.721119],\n\t\t\t\t\t\t[-97.121102, 33.717174],\n\t\t\t\t\t\t[-97.137530, 33.718664],\n\t\t\t\t\t\t[-97.151257, 33.722608],\n\t\t\t\t\t\t[-97.162803, 33.729127],\n\t\t\t\t\t\t[-97.163149, 33.729322],\n\t\t\t\t\t\t[-97.172192, 33.737545],\n\t\t\t\t\t\t[-97.204827, 33.799908],\n\t\t\t\t\t\t[-97.204995, 33.818870],\n\t\t\t\t\t\t[-97.199700, 33.827322],\n\t\t\t\t\t\t[-97.194678, 33.831192],\n\t\t\t\t\t\t[-97.181370, 33.831375],\n\t\t\t\t\t\t[-97.171627, 33.835335],\n\t\t\t\t\t\t[-97.166824, 33.840395],\n\t\t\t\t\t\t[-97.166629, 33.847311],\n\t\t\t\t\t\t[-97.180845, 33.895204],\n\t\t\t\t\t\t[-97.185458, 33.900700],\n\t\t\t\t\t\t[-97.210921, 33.916064],\n\t\t\t\t\t\t[-97.226522, 33.914642],\n\t\t\t\t\t\t[-97.310843, 33.872461],\n\t\t\t\t\t\t[-97.372941, 33.819454],\n\t\t\t\t\t\t[-97.426493, 33.819398],\n\t\t\t\t\t\t[-97.444193, 33.823773],\n\t\t\t\t\t\t[-97.453057, 33.828536],\n\t\t\t\t\t\t[-97.459068, 33.834581],\n\t\t\t\t\t\t[-97.462857, 33.841772],\n\t\t\t\t\t\t[-97.461486, 33.849560],\n\t\t\t\t\t\t[-97.457617, 33.855126],\n\t\t\t\t\t\t[-97.451469, 33.870930],\n\t\t\t\t\t\t[-97.450954, 33.891398],\n\t\t\t\t\t\t[-97.458069, 33.901635],\n\t\t\t\t\t\t[-97.484071, 33.915680],\n\t\t\t\t\t\t[-97.486505, 33.916994],\n\t\t\t\t\t\t[-97.500960, 33.919643],\n\t\t\t\t\t\t[-97.519171, 33.913638],\n\t\t\t\t\t\t[-97.545526, 33.900396],\n\t\t\t\t\t\t[-97.555002, 33.897282],\n\t\t\t\t\t\t[-97.561054, 33.898006],\n\t\t\t\t\t\t[-97.560764, 34.071089],\n\t\t\t\t\t\t[-96.969627, 34.071020],\n\t\t\t\t\t\t[-96.934508, 33.953748],\n\t\t\t\t\t\t[-96.944611, 33.948994],\n\t\t\t\t\t\t[-96.972870, 33.935698]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40091\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"091\",\n\t\t\t\t\"NAME\": \"McIntosh\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 618.496000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.981376, 35.289899],\n\t\t\t\t\t\t[-95.981334, 35.355297],\n\t\t\t\t\t\t[-95.981423, 35.375123],\n\t\t\t\t\t\t[-95.981307, 35.376828],\n\t\t\t\t\t\t[-95.875626, 35.376690],\n\t\t\t\t\t\t[-95.875572, 35.463625],\n\t\t\t\t\t\t[-95.823396, 35.463969],\n\t\t\t\t\t\t[-95.822361, 35.551693],\n\t\t\t\t\t\t[-95.712957, 35.551802],\n\t\t\t\t\t\t[-95.345030, 35.552241],\n\t\t\t\t\t\t[-95.344650, 35.293097],\n\t\t\t\t\t\t[-95.451250, 35.296019],\n\t\t\t\t\t\t[-95.599380, 35.221651],\n\t\t\t\t\t\t[-95.628064, 35.246798],\n\t\t\t\t\t\t[-95.755970, 35.177198],\n\t\t\t\t\t\t[-95.870663, 35.185986],\n\t\t\t\t\t\t[-95.983710, 35.151557],\n\t\t\t\t\t\t[-95.981376, 35.289899]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40099\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"099\",\n\t\t\t\t\"NAME\": \"Murray\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 416.458000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.933457, 34.332661],\n\t\t\t\t\t\t[-97.036488, 34.375415],\n\t\t\t\t\t\t[-97.352158, 34.376227],\n\t\t\t\t\t\t[-97.352110, 34.506788],\n\t\t\t\t\t\t[-97.143958, 34.506532],\n\t\t\t\t\t\t[-97.200073, 34.622762],\n\t\t\t\t\t\t[-96.932328, 34.636811],\n\t\t\t\t\t\t[-96.932423, 34.593261],\n\t\t\t\t\t\t[-96.827290, 34.593220],\n\t\t\t\t\t\t[-96.827288, 34.505989],\n\t\t\t\t\t\t[-96.880814, 34.506053],\n\t\t\t\t\t\t[-96.881005, 34.332977],\n\t\t\t\t\t\t[-96.933457, 34.332661]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40101\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"101\",\n\t\t\t\t\"NAME\": \"Muskogee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 810.450000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.766166, 35.856403],\n\t\t\t\t\t\t[-95.650420, 35.856756],\n\t\t\t\t\t\t[-95.638313, 35.787596],\n\t\t\t\t\t\t[-95.265679, 35.813266],\n\t\t\t\t\t\t[-95.127163, 35.812755],\n\t\t\t\t\t\t[-95.127464, 35.638894],\n\t\t\t\t\t\t[-95.132437, 35.526196],\n\t\t\t\t\t\t[-95.049933, 35.458894],\n\t\t\t\t\t\t[-95.170462, 35.310106],\n\t\t\t\t\t\t[-95.243809, 35.261636],\n\t\t\t\t\t\t[-95.344650, 35.293097],\n\t\t\t\t\t\t[-95.345030, 35.552241],\n\t\t\t\t\t\t[-95.712957, 35.551802],\n\t\t\t\t\t\t[-95.713081, 35.725807],\n\t\t\t\t\t\t[-95.766265, 35.725750],\n\t\t\t\t\t\t[-95.766166, 35.856403]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40107\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"107\",\n\t\t\t\t\"NAME\": \"Okfuskee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 618.567000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.623699, 35.400722],\n\t\t\t\t\t\t[-96.624865, 35.462706],\n\t\t\t\t\t\t[-96.620648, 35.639005],\n\t\t\t\t\t\t[-96.192563, 35.639087],\n\t\t\t\t\t\t[-96.192844, 35.551902],\n\t\t\t\t\t\t[-96.087795, 35.552119],\n\t\t\t\t\t\t[-96.087530, 35.376877],\n\t\t\t\t\t\t[-95.981307, 35.376828],\n\t\t\t\t\t\t[-95.981423, 35.375123],\n\t\t\t\t\t\t[-95.981334, 35.355297],\n\t\t\t\t\t\t[-95.981376, 35.289899],\n\t\t\t\t\t\t[-96.441368, 35.290122],\n\t\t\t\t\t\t[-96.441290, 35.467712],\n\t\t\t\t\t\t[-96.536718, 35.390772],\n\t\t\t\t\t\t[-96.623699, 35.400722]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40111\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"111\",\n\t\t\t\t\"NAME\": \"Okmulgee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 697.349000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.192563, 35.639087],\n\t\t\t\t\t\t[-96.192482, 35.857021],\n\t\t\t\t\t\t[-96.033118, 35.856824],\n\t\t\t\t\t\t[-95.819964, 35.855900],\n\t\t\t\t\t\t[-95.806224, 35.856028],\n\t\t\t\t\t\t[-95.805637, 35.856577],\n\t\t\t\t\t\t[-95.766166, 35.856403],\n\t\t\t\t\t\t[-95.766265, 35.725750],\n\t\t\t\t\t\t[-95.713081, 35.725807],\n\t\t\t\t\t\t[-95.712957, 35.551802],\n\t\t\t\t\t\t[-95.822361, 35.551693],\n\t\t\t\t\t\t[-95.823396, 35.463969],\n\t\t\t\t\t\t[-95.875572, 35.463625],\n\t\t\t\t\t\t[-95.875626, 35.376690],\n\t\t\t\t\t\t[-95.981307, 35.376828],\n\t\t\t\t\t\t[-96.087530, 35.376877],\n\t\t\t\t\t\t[-96.087795, 35.552119],\n\t\t\t\t\t\t[-96.192844, 35.551902],\n\t\t\t\t\t\t[-96.192563, 35.639087]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40117\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"117\",\n\t\t\t\t\"NAME\": \"Pawnee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 567.955000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.268287, 36.161980],\n\t\t\t\t\t\t[-96.297888, 36.162279],\n\t\t\t\t\t\t[-96.621333, 36.163553],\n\t\t\t\t\t\t[-96.621441, 36.159929],\n\t\t\t\t\t\t[-96.819005, 36.158886],\n\t\t\t\t\t\t[-96.818968, 36.246478],\n\t\t\t\t\t\t[-96.925069, 36.246474],\n\t\t\t\t\t\t[-96.924936, 36.333344],\n\t\t\t\t\t\t[-97.032106, 36.333354],\n\t\t\t\t\t\t[-97.009785, 36.506935],\n\t\t\t\t\t\t[-96.940235, 36.455525],\n\t\t\t\t\t\t[-96.753554, 36.562601],\n\t\t\t\t\t\t[-96.710769, 36.437656],\n\t\t\t\t\t\t[-96.635727, 36.425908],\n\t\t\t\t\t\t[-96.575697, 36.374347],\n\t\t\t\t\t\t[-96.518709, 36.377576],\n\t\t\t\t\t\t[-96.573481, 36.315709],\n\t\t\t\t\t\t[-96.515229, 36.298332],\n\t\t\t\t\t\t[-96.457684, 36.332664],\n\t\t\t\t\t\t[-96.433812, 36.285889],\n\t\t\t\t\t\t[-96.326732, 36.226551],\n\t\t\t\t\t\t[-96.243295, 36.206677],\n\t\t\t\t\t\t[-96.268287, 36.161980]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40119\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"119\",\n\t\t\t\t\"NAME\": \"Payne\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 684.703000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.140583, 35.941991],\n\t\t\t\t\t\t[-97.323620, 36.010877],\n\t\t\t\t\t\t[-97.353870, 35.984934],\n\t\t\t\t\t\t[-97.354132, 36.159072],\n\t\t\t\t\t\t[-97.140668, 36.159231],\n\t\t\t\t\t\t[-97.140968, 36.246435],\n\t\t\t\t\t\t[-96.925069, 36.246474],\n\t\t\t\t\t\t[-96.818968, 36.246478],\n\t\t\t\t\t\t[-96.819005, 36.158886],\n\t\t\t\t\t\t[-96.621441, 36.159929],\n\t\t\t\t\t\t[-96.621097, 35.941519],\n\t\t\t\t\t\t[-97.140583, 35.941991]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40125\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"125\",\n\t\t\t\t\"NAME\": \"Pottawatomie\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 787.672000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.623699, 35.400722],\n\t\t\t\t\t\t[-96.776707, 35.411372],\n\t\t\t\t\t\t[-96.775681, 34.899958],\n\t\t\t\t\t\t[-96.821488, 34.946112],\n\t\t\t\t\t\t[-96.930586, 34.964364],\n\t\t\t\t\t\t[-97.015930, 34.907348],\n\t\t\t\t\t\t[-97.142349, 34.928176],\n\t\t\t\t\t\t[-97.142114, 35.376860],\n\t\t\t\t\t\t[-97.141490, 35.463977],\n\t\t\t\t\t\t[-96.624865, 35.462706],\n\t\t\t\t\t\t[-96.623699, 35.400722]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US25021\",\n\t\t\t\t\"STATE\": \"25\",\n\t\t\t\t\"COUNTY\": \"021\",\n\t\t\t\t\"NAME\": \"Norfolk\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 396.105000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-71.498258, 42.017220],\n\t\t\t\t\t\t[-71.498259, 42.027813],\n\t\t\t\t\t\t[-71.497901, 42.031513],\n\t\t\t\t\t\t[-71.498262, 42.031333],\n\t\t\t\t\t\t[-71.498284, 42.064802],\n\t\t\t\t\t\t[-71.500910, 42.117041],\n\t\t\t\t\t\t[-71.478521, 42.131421],\n\t\t\t\t\t\t[-71.478119, 42.156782],\n\t\t\t\t\t\t[-71.463957, 42.158239],\n\t\t\t\t\t\t[-71.444067, 42.174889],\n\t\t\t\t\t\t[-71.430174, 42.179386],\n\t\t\t\t\t\t[-71.402220, 42.178798],\n\t\t\t\t\t\t[-71.404381, 42.188215],\n\t\t\t\t\t\t[-71.344170, 42.200703],\n\t\t\t\t\t\t[-71.352024, 42.207311],\n\t\t\t\t\t\t[-71.346980, 42.215555],\n\t\t\t\t\t\t[-71.339837, 42.213886],\n\t\t\t\t\t\t[-71.343065, 42.220242],\n\t\t\t\t\t\t[-71.340830, 42.224605],\n\t\t\t\t\t\t[-71.329561, 42.233670],\n\t\t\t\t\t\t[-71.329217, 42.245023],\n\t\t\t\t\t\t[-71.332434, 42.247729],\n\t\t\t\t\t\t[-71.269919, 42.328096],\n\t\t\t\t\t\t[-71.191155, 42.283059],\n\t\t\t\t\t\t[-71.130808, 42.227880],\n\t\t\t\t\t\t[-71.112938, 42.258641],\n\t\t\t\t\t\t[-71.102691, 42.259884],\n\t\t\t\t\t\t[-71.088672, 42.269733],\n\t\t\t\t\t\t[-71.082968, 42.268496],\n\t\t\t\t\t\t[-71.065651, 42.271052],\n\t\t\t\t\t\t[-71.061593, 42.267299],\n\t\t\t\t\t\t[-71.053395, 42.272297],\n\t\t\t\t\t\t[-71.055494, 42.275698],\n\t\t\t\t\t\t[-71.042794, 42.276998],\n\t\t\t\t\t\t[-71.041694, 42.305298],\n\t\t\t\t\t\t[-71.005399, 42.307196],\n\t\t\t\t\t\t[-71.000948, 42.302483],\n\t\t\t\t\t\t[-71.006158, 42.288110],\n\t\t\t\t\t\t[-71.004900, 42.282720],\n\t\t\t\t\t\t[-70.996097, 42.271222],\n\t\t\t\t\t\t[-70.989090, 42.267449],\n\t\t\t\t\t\t[-70.967351, 42.268168],\n\t\t\t\t\t\t[-70.948971, 42.272505],\n\t\t\t\t\t\t[-70.945547, 42.269081],\n\t\t\t\t\t\t[-70.935886, 42.264189],\n\t\t\t\t\t\t[-70.923169, 42.263211],\n\t\t\t\t\t\t[-70.910941, 42.265412],\n\t\t\t\t\t\t[-70.906302, 42.271636],\n\t\t\t\t\t\t[-70.924877, 42.157580],\n\t\t\t\t\t\t[-70.981293, 42.135502],\n\t\t\t\t\t\t[-70.993114, 42.130855],\n\t\t\t\t\t\t[-71.002029, 42.126506],\n\t\t\t\t\t\t[-71.080192, 42.095699],\n\t\t\t\t\t\t[-71.138619, 42.072813],\n\t\t\t\t\t\t[-71.138641, 42.072761],\n\t\t\t\t\t\t[-71.168681, 42.061161],\n\t\t\t\t\t\t[-71.288265, 42.014462],\n\t\t\t\t\t\t[-71.288265, 42.014451],\n\t\t\t\t\t\t[-71.288263, 42.014379],\n\t\t\t\t\t\t[-71.364887, 41.985173],\n\t\t\t\t\t\t[-71.381466, 41.984998],\n\t\t\t\t\t\t[-71.381401, 42.018798],\n\t\t\t\t\t\t[-71.458104, 42.017762],\n\t\t\t\t\t\t[-71.498258, 42.017220]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US25023\",\n\t\t\t\t\"STATE\": \"25\",\n\t\t\t\t\"COUNTY\": \"023\",\n\t\t\t\t\"NAME\": \"Plymouth\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 659.075000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-70.921782, 41.791244],\n\t\t\t\t\t\t[-71.036570, 41.816525],\n\t\t\t\t\t\t[-70.999705, 41.929592],\n\t\t\t\t\t\t[-71.049498, 41.963150],\n\t\t\t\t\t\t[-71.054718, 41.985057],\n\t\t\t\t\t\t[-71.080192, 42.095699],\n\t\t\t\t\t\t[-71.002029, 42.126506],\n\t\t\t\t\t\t[-70.993114, 42.130855],\n\t\t\t\t\t\t[-70.981293, 42.135502],\n\t\t\t\t\t\t[-70.924877, 42.157580],\n\t\t\t\t\t\t[-70.906302, 42.271636],\n\t\t\t\t\t\t[-70.896267, 42.285100],\n\t\t\t\t\t\t[-70.895778, 42.292436],\n\t\t\t\t\t\t[-70.897123, 42.295860],\n\t\t\t\t\t\t[-70.915588, 42.302463],\n\t\t\t\t\t\t[-70.917490, 42.305686],\n\t\t\t\t\t\t[-70.907556, 42.307889],\n\t\t\t\t\t\t[-70.882764, 42.308860],\n\t\t\t\t\t\t[-70.881242, 42.300663],\n\t\t\t\t\t\t[-70.870873, 42.285668],\n\t\t\t\t\t\t[-70.861807, 42.275965],\n\t\t\t\t\t\t[-70.851093, 42.268270],\n\t\t\t\t\t\t[-70.831075, 42.267424],\n\t\t\t\t\t\t[-70.824661, 42.265935],\n\t\t\t\t\t\t[-70.811742, 42.262935],\n\t\t\t\t\t\t[-70.788724, 42.253920],\n\t\t\t\t\t\t[-70.780722, 42.251792],\n\t\t\t\t\t\t[-70.770964, 42.249197],\n\t\t\t\t\t\t[-70.764757, 42.244062],\n\t\t\t\t\t\t[-70.754488, 42.228673],\n\t\t\t\t\t\t[-70.747230, 42.221816],\n\t\t\t\t\t\t[-70.730560, 42.210940],\n\t\t\t\t\t\t[-70.722269, 42.207959],\n\t\t\t\t\t\t[-70.718707, 42.184853],\n\t\t\t\t\t\t[-70.714301, 42.168783],\n\t\t\t\t\t\t[-70.706264, 42.163137],\n\t\t\t\t\t\t[-70.685315, 42.133025],\n\t\t\t\t\t\t[-70.663931, 42.108336],\n\t\t\t\t\t\t[-70.640169, 42.088633],\n\t\t\t\t\t\t[-70.638480, 42.081579],\n\t\t\t\t\t\t[-70.647349, 42.076331],\n\t\t\t\t\t\t[-70.648190, 42.068441],\n\t\t\t\t\t\t[-70.643208, 42.050821],\n\t\t\t\t\t\t[-70.644337, 42.045895],\n\t\t\t\t\t\t[-70.650874, 42.046247],\n\t\t\t\t\t\t[-70.669360, 42.037116],\n\t\t\t\t\t\t[-70.671666, 42.021390],\n\t\t\t\t\t\t[-70.667512, 42.012320],\n\t\t\t\t\t\t[-70.670934, 42.007786],\n\t\t\t\t\t\t[-70.678798, 42.005510],\n\t\t\t\t\t\t[-70.686798, 42.012764],\n\t\t\t\t\t\t[-70.695809, 42.013346],\n\t\t\t\t\t\t[-70.712204, 42.007586],\n\t\t\t\t\t\t[-70.710034, 41.999544],\n\t\t\t\t\t\t[-70.698981, 41.987103],\n\t\t\t\t\t\t[-70.662476, 41.960592],\n\t\t\t\t\t\t[-70.651673, 41.958701],\n\t\t\t\t\t\t[-70.648365, 41.961672],\n\t\t\t\t\t\t[-70.631251, 41.950475],\n\t\t\t\t\t\t[-70.623513, 41.943273],\n\t\t\t\t\t\t[-70.616491, 41.940204],\n\t\t\t\t\t\t[-70.608166, 41.940701],\n\t\t\t\t\t\t[-70.598078, 41.947772],\n\t\t\t\t\t\t[-70.583572, 41.950007],\n\t\t\t\t\t\t[-70.552941, 41.929641],\n\t\t\t\t\t\t[-70.546386, 41.916751],\n\t\t\t\t\t\t[-70.547410, 41.911934],\n\t\t\t\t\t\t[-70.545949, 41.907158],\n\t\t\t\t\t\t[-70.532084, 41.889568],\n\t\t\t\t\t\t[-70.525567, 41.858730],\n\t\t\t\t\t\t[-70.535487, 41.839381],\n\t\t\t\t\t\t[-70.542065, 41.831263],\n\t\t\t\t\t\t[-70.543168, 41.824446],\n\t\t\t\t\t\t[-70.541030, 41.815754],\n\t\t\t\t\t\t[-70.537289, 41.810859],\n\t\t\t\t\t\t[-70.565281, 41.786705],\n\t\t\t\t\t\t[-70.632578, 41.762821],\n\t\t\t\t\t\t[-70.621622, 41.748972],\n\t\t\t\t\t\t[-70.642914, 41.718410],\n\t\t\t\t\t\t[-70.644641, 41.718980],\n\t\t\t\t\t\t[-70.651093, 41.715715],\n\t\t\t\t\t\t[-70.656596, 41.715401],\n\t\t\t\t\t\t[-70.670453, 41.721912],\n\t\t\t\t\t\t[-70.708193, 41.730959],\n\t\t\t\t\t\t[-70.718739, 41.735740],\n\t\t\t\t\t\t[-70.726331, 41.732731],\n\t\t\t\t\t\t[-70.728933, 41.723433],\n\t\t\t\t\t\t[-70.721302, 41.712968],\n\t\t\t\t\t\t[-70.717451, 41.693980],\n\t\t\t\t\t\t[-70.719575, 41.685002],\n\t\t\t\t\t\t[-70.729395, 41.688140],\n\t\t\t\t\t\t[-70.744396, 41.696967],\n\t\t\t\t\t\t[-70.755347, 41.694326],\n\t\t\t\t\t\t[-70.761481, 41.676808],\n\t\t\t\t\t\t[-70.761497, 41.676641],\n\t\t\t\t\t\t[-70.762360, 41.667735],\n\t\t\t\t\t\t[-70.758198, 41.661225],\n\t\t\t\t\t\t[-70.757622, 41.654265],\n\t\t\t\t\t\t[-70.765463, 41.641575],\n\t\t\t\t\t\t[-70.769318, 41.641145],\n\t\t\t\t\t\t[-70.773654, 41.645033],\n\t\t\t\t\t\t[-70.775798, 41.649145],\n\t\t\t\t\t\t[-70.776709, 41.650756],\n\t\t\t\t\t\t[-70.809118, 41.656437],\n\t\t\t\t\t\t[-70.813286, 41.655670],\n\t\t\t\t\t\t[-70.815729, 41.652796],\n\t\t\t\t\t\t[-70.816351, 41.645995],\n\t\t\t\t\t\t[-70.804664, 41.641157],\n\t\t\t\t\t\t[-70.800215, 41.631753],\n\t\t\t\t\t\t[-70.801063, 41.629513],\n\t\t\t\t\t\t[-70.810279, 41.624873],\n\t\t\t\t\t\t[-70.835296, 41.624532],\n\t\t\t\t\t\t[-70.843177, 41.628487],\n\t\t\t\t\t\t[-70.921782, 41.791244]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26003\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"003\",\n\t\t\t\t\"NAME\": \"Alger\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 915.070000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.116080, 46.158945],\n\t\t\t\t\t\t[-87.116618, 46.495163],\n\t\t\t\t\t\t[-87.107559, 46.496124],\n\t\t\t\t\t\t[-87.098760, 46.503609],\n\t\t\t\t\t\t[-87.077279, 46.515339],\n\t\t\t\t\t\t[-87.046022, 46.519956],\n\t\t\t\t\t\t[-87.029892, 46.525599],\n\t\t\t\t\t\t[-87.017136, 46.533550],\n\t\t\t\t\t\t[-87.008724, 46.532723],\n\t\t\t\t\t\t[-86.976958, 46.526581],\n\t\t\t\t\t\t[-86.964534, 46.516549],\n\t\t\t\t\t\t[-86.962842, 46.509646],\n\t\t\t\t\t\t[-86.946980, 46.484567],\n\t\t\t\t\t\t[-86.946218, 46.479059],\n\t\t\t\t\t\t[-86.949526, 46.476315],\n\t\t\t\t\t\t[-86.947077, 46.472064],\n\t\t\t\t\t\t[-86.927725, 46.464566],\n\t\t\t\t\t\t[-86.903742, 46.466138],\n\t\t\t\t\t\t[-86.889094, 46.458499],\n\t\t\t\t\t\t[-86.883976, 46.450976],\n\t\t\t\t\t\t[-86.883919, 46.441514],\n\t\t\t\t\t\t[-86.875151, 46.437280],\n\t\t\t\t\t\t[-86.850111, 46.434114],\n\t\t\t\t\t\t[-86.837448, 46.434186],\n\t\t\t\t\t\t[-86.816026, 46.437892],\n\t\t\t\t\t\t[-86.810967, 46.449663],\n\t\t\t\t\t\t[-86.808817, 46.460611],\n\t\t\t\t\t\t[-86.803557, 46.466669],\n\t\t\t\t\t\t[-86.787905, 46.477729],\n\t\t\t\t\t\t[-86.768516, 46.479072],\n\t\t\t\t\t\t[-86.750157, 46.479109],\n\t\t\t\t\t\t[-86.735929, 46.475231],\n\t\t\t\t\t\t[-86.731096, 46.471760],\n\t\t\t\t\t\t[-86.730829, 46.468057],\n\t\t\t\t\t\t[-86.710573, 46.444908],\n\t\t\t\t\t\t[-86.703230, 46.439378],\n\t\t\t\t\t\t[-86.698139, 46.438624],\n\t\t\t\t\t\t[-86.686412, 46.454965],\n\t\t\t\t\t\t[-86.688816, 46.463152],\n\t\t\t\t\t\t[-86.686468, 46.471655],\n\t\t\t\t\t\t[-86.683819, 46.498079],\n\t\t\t\t\t\t[-86.696001, 46.503160],\n\t\t\t\t\t\t[-86.701929, 46.511571],\n\t\t\t\t\t\t[-86.709325, 46.543914],\n\t\t\t\t\t\t[-86.695645, 46.555026],\n\t\t\t\t\t\t[-86.678182, 46.561039],\n\t\t\t\t\t\t[-86.675764, 46.557061],\n\t\t\t\t\t\t[-86.670927, 46.556489],\n\t\t\t\t\t\t[-86.656479, 46.558453],\n\t\t\t\t\t\t[-86.652865, 46.560555],\n\t\t\t\t\t\t[-86.627380, 46.533710],\n\t\t\t\t\t\t[-86.629086, 46.518144],\n\t\t\t\t\t\t[-86.632109, 46.508865],\n\t\t\t\t\t\t[-86.634530, 46.504523],\n\t\t\t\t\t\t[-86.641088, 46.500438],\n\t\t\t\t\t\t[-86.645528, 46.492039],\n\t\t\t\t\t\t[-86.646393, 46.485776],\n\t\t\t\t\t\t[-86.636671, 46.478298],\n\t\t\t\t\t\t[-86.627441, 46.477540],\n\t\t\t\t\t\t[-86.620603, 46.483873],\n\t\t\t\t\t\t[-86.618061, 46.489452],\n\t\t\t\t\t\t[-86.612173, 46.493295],\n\t\t\t\t\t\t[-86.609393, 46.492976],\n\t\t\t\t\t\t[-86.606932, 46.478531],\n\t\t\t\t\t\t[-86.609039, 46.470239],\n\t\t\t\t\t\t[-86.586168, 46.463324],\n\t\t\t\t\t\t[-86.557731, 46.487434],\n\t\t\t\t\t\t[-86.524959, 46.505381],\n\t\t\t\t\t\t[-86.495054, 46.524874],\n\t\t\t\t\t\t[-86.484003, 46.535965],\n\t\t\t\t\t\t[-86.481956, 46.542709],\n\t\t\t\t\t\t[-86.469306, 46.551422],\n\t\t\t\t\t\t[-86.459930, 46.551928],\n\t\t\t\t\t\t[-86.444390, 46.548137],\n\t\t\t\t\t\t[-86.437167, 46.548960],\n\t\t\t\t\t\t[-86.390409, 46.563194],\n\t\t\t\t\t\t[-86.349890, 46.578035],\n\t\t\t\t\t\t[-86.188024, 46.654008],\n\t\t\t\t\t\t[-86.161681, 46.669475],\n\t\t\t\t\t\t[-86.138295, 46.672935],\n\t\t\t\t\t\t[-86.119862, 46.657256],\n\t\t\t\t\t\t[-86.112126, 46.655044],\n\t\t\t\t\t\t[-86.099843, 46.654615],\n\t\t\t\t\t\t[-86.074219, 46.657799],\n\t\t\t\t\t\t[-86.036969, 46.667627],\n\t\t\t\t\t\t[-85.995044, 46.673676],\n\t\t\t\t\t\t[-85.953670, 46.676869],\n\t\t\t\t\t\t[-85.924047, 46.684733],\n\t\t\t\t\t\t[-85.877908, 46.690914],\n\t\t\t\t\t\t[-85.864549, 46.690182],\n\t\t\t\t\t\t[-85.864932, 46.504758],\n\t\t\t\t\t\t[-86.364953, 46.505852],\n\t\t\t\t\t\t[-86.365261, 46.331929],\n\t\t\t\t\t\t[-86.615397, 46.333263],\n\t\t\t\t\t\t[-86.615601, 46.158691],\n\t\t\t\t\t\t[-87.116080, 46.158945]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26005\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"005\",\n\t\t\t\t\"NAME\": \"Allegan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 825.231000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.782498, 42.768200],\n\t\t\t\t\t\t[-85.712659, 42.768237],\n\t\t\t\t\t\t[-85.545564, 42.768139],\n\t\t\t\t\t\t[-85.543191, 42.421433],\n\t\t\t\t\t\t[-85.764352, 42.420669],\n\t\t\t\t\t\t[-86.273893, 42.419280],\n\t\t\t\t\t\t[-86.261573, 42.443894],\n\t\t\t\t\t\t[-86.249710, 42.480212],\n\t\t\t\t\t\t[-86.241446, 42.534697],\n\t\t\t\t\t\t[-86.240642, 42.540000],\n\t\t\t\t\t\t[-86.235280, 42.564958],\n\t\t\t\t\t\t[-86.235254, 42.565023],\n\t\t\t\t\t\t[-86.234755, 42.566302],\n\t\t\t\t\t\t[-86.234594, 42.566715],\n\t\t\t\t\t\t[-86.231190, 42.575435],\n\t\t\t\t\t\t[-86.228082, 42.583397],\n\t\t\t\t\t\t[-86.226037, 42.592811],\n\t\t\t\t\t\t[-86.225978, 42.593084],\n\t\t\t\t\t\t[-86.225613, 42.594765],\n\t\t\t\t\t\t[-86.229050, 42.637693],\n\t\t\t\t\t\t[-86.226638, 42.644922],\n\t\t\t\t\t\t[-86.216020, 42.664413],\n\t\t\t\t\t\t[-86.208654, 42.692090],\n\t\t\t\t\t\t[-86.206834, 42.719424],\n\t\t\t\t\t\t[-86.208309, 42.762789],\n\t\t\t\t\t\t[-86.208886, 42.767540],\n\t\t\t\t\t\t[-85.782498, 42.768200]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26007\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"007\",\n\t\t\t\t\"NAME\": \"Alpena\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 571.860000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.387587, 45.207107],\n\t\t\t\t\t\t[-83.384265, 45.203472],\n\t\t\t\t\t\t[-83.381647, 45.203357],\n\t\t\t\t\t\t[-83.368896, 45.182168],\n\t\t\t\t\t\t[-83.368046, 45.172478],\n\t\t\t\t\t\t[-83.363678, 45.166469],\n\t\t\t\t\t\t[-83.359895, 45.163020],\n\t\t\t\t\t\t[-83.348684, 45.161516],\n\t\t\t\t\t\t[-83.337822, 45.147120],\n\t\t\t\t\t\t[-83.316118, 45.141958],\n\t\t\t\t\t\t[-83.315924, 45.139992],\n\t\t\t\t\t\t[-83.319315, 45.137684],\n\t\t\t\t\t\t[-83.318442, 45.128930],\n\t\t\t\t\t\t[-83.307880, 45.099093],\n\t\t\t\t\t\t[-83.298275, 45.090483],\n\t\t\t\t\t\t[-83.290827, 45.069157],\n\t\t\t\t\t\t[-83.291346, 45.062597],\n\t\t\t\t\t\t[-83.280272, 45.045962],\n\t\t\t\t\t\t[-83.277037, 45.044767],\n\t\t\t\t\t\t[-83.271464, 45.038114],\n\t\t\t\t\t\t[-83.265896, 45.026844],\n\t\t\t\t\t\t[-83.271506, 45.023417],\n\t\t\t\t\t\t[-83.287974, 45.026462],\n\t\t\t\t\t\t[-83.302153, 45.032315],\n\t\t\t\t\t\t[-83.340257, 45.041545],\n\t\t\t\t\t\t[-83.357609, 45.050613],\n\t\t\t\t\t\t[-83.367470, 45.062268],\n\t\t\t\t\t\t[-83.399255, 45.070364],\n\t\t\t\t\t\t[-83.433798, 45.057616],\n\t\t\t\t\t\t[-83.442052, 45.051056],\n\t\t\t\t\t\t[-83.453363, 45.035331],\n\t\t\t\t\t\t[-83.454168, 45.031880],\n\t\t\t\t\t\t[-83.446342, 45.016655],\n\t\t\t\t\t\t[-83.435249, 45.011883],\n\t\t\t\t\t\t[-83.431254, 45.007998],\n\t\t\t\t\t\t[-83.435822, 45.000012],\n\t\t\t\t\t\t[-83.438948, 45.000011],\n\t\t\t\t\t\t[-83.450013, 44.990219],\n\t\t\t\t\t\t[-83.443718, 44.952247],\n\t\t\t\t\t\t[-83.438856, 44.940843],\n\t\t\t\t\t\t[-83.433032, 44.932890],\n\t\t\t\t\t\t[-83.425311, 44.926741],\n\t\t\t\t\t\t[-83.404596, 44.918761],\n\t\t\t\t\t\t[-83.398879, 44.906417],\n\t\t\t\t\t\t[-83.393960, 44.903056],\n\t\t\t\t\t\t[-83.352815, 44.886164],\n\t\t\t\t\t\t[-83.320503, 44.880571],\n\t\t\t\t\t\t[-83.321093, 44.858494],\n\t\t\t\t\t\t[-83.888484, 44.856458],\n\t\t\t\t\t\t[-83.881218, 45.202062],\n\t\t\t\t\t\t[-83.387587, 45.207107]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30063\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"063\",\n\t\t\t\t\"NAME\": \"Missoula\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2593.424000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-114.797235, 47.268901],\n\t\t\t\t\t\t[-114.550033, 47.251614],\n\t\t\t\t\t\t[-114.352769, 47.190407],\n\t\t\t\t\t\t[-114.254476, 47.120639],\n\t\t\t\t\t\t[-114.187383, 47.138192],\n\t\t\t\t\t\t[-113.821994, 47.181622],\n\t\t\t\t\t\t[-113.821126, 47.268599],\n\t\t\t\t\t\t[-113.886455, 47.318622],\n\t\t\t\t\t\t[-113.870895, 47.392118],\n\t\t\t\t\t\t[-113.951187, 47.476007],\n\t\t\t\t\t\t[-113.914926, 47.500299],\n\t\t\t\t\t\t[-113.929999, 47.598483],\n\t\t\t\t\t\t[-113.948763, 47.600517],\n\t\t\t\t\t\t[-113.633957, 47.599861],\n\t\t\t\t\t\t[-113.466486, 47.599986],\n\t\t\t\t\t\t[-113.466122, 47.178941],\n\t\t\t\t\t\t[-113.302873, 47.179433],\n\t\t\t\t\t\t[-113.303005, 46.832132],\n\t\t\t\t\t\t[-113.479917, 46.802730],\n\t\t\t\t\t\t[-113.479817, 46.744929],\n\t\t\t\t\t\t[-113.667726, 46.716026],\n\t\t\t\t\t\t[-113.667225, 46.658426],\n\t\t\t\t\t\t[-113.827831, 46.661023],\n\t\t\t\t\t\t[-114.332887, 46.660756],\n\t\t\t\t\t\t[-114.341336, 46.642803],\n\t\t\t\t\t\t[-114.349584, 46.646684],\n\t\t\t\t\t\t[-114.370129, 46.654217],\n\t\t\t\t\t\t[-114.422176, 46.652163],\n\t\t\t\t\t\t[-114.446830, 46.645314],\n\t\t\t\t\t\t[-114.461211, 46.639151],\n\t\t\t\t\t\t[-114.481943, 46.631993],\n\t\t\t\t\t\t[-114.592264, 46.632861],\n\t\t\t\t\t\t[-114.594707, 46.633558],\n\t\t\t\t\t\t[-114.614423, 46.639188],\n\t\t\t\t\t\t[-114.635868, 46.659510],\n\t\t\t\t\t\t[-114.642713, 46.673145],\n\t\t\t\t\t\t[-114.641745, 46.679286],\n\t\t\t\t\t\t[-114.641322, 46.686404],\n\t\t\t\t\t\t[-114.642692, 46.694622],\n\t\t\t\t\t\t[-114.644747, 46.702155],\n\t\t\t\t\t\t[-114.655704, 46.711743],\n\t\t\t\t\t\t[-114.667346, 46.719276],\n\t\t\t\t\t\t[-114.675505, 46.719516],\n\t\t\t\t\t\t[-114.548929, 46.747366],\n\t\t\t\t\t\t[-114.565991, 46.963758],\n\t\t\t\t\t\t[-114.525403, 47.009321],\n\t\t\t\t\t\t[-114.419662, 47.023267],\n\t\t\t\t\t\t[-114.483637, 47.067326],\n\t\t\t\t\t\t[-114.565985, 47.067339],\n\t\t\t\t\t\t[-114.586753, 47.123690],\n\t\t\t\t\t\t[-114.712026, 47.182124],\n\t\t\t\t\t\t[-114.712170, 47.225590],\n\t\t\t\t\t\t[-114.775739, 47.225548],\n\t\t\t\t\t\t[-114.797235, 47.268901]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30065\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"065\",\n\t\t\t\t\"NAME\": \"Musselshell\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1868.155000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-107.827755, 46.755986],\n\t\t\t\t\t\t[-107.792939, 46.679830],\n\t\t\t\t\t\t[-107.781214, 46.496014],\n\t\t\t\t\t\t[-107.782089, 46.395286],\n\t\t\t\t\t\t[-107.928505, 46.395290],\n\t\t\t\t\t\t[-108.011552, 46.336639],\n\t\t\t\t\t\t[-108.029531, 46.263812],\n\t\t\t\t\t\t[-108.320730, 46.264061],\n\t\t\t\t\t\t[-108.404640, 46.236126],\n\t\t\t\t\t\t[-108.404936, 46.132675],\n\t\t\t\t\t\t[-108.780140, 46.132402],\n\t\t\t\t\t\t[-108.779115, 46.276720],\n\t\t\t\t\t\t[-108.861315, 46.364825],\n\t\t\t\t\t\t[-108.904779, 46.577394],\n\t\t\t\t\t\t[-108.988585, 46.578572],\n\t\t\t\t\t\t[-109.009802, 46.750432],\n\t\t\t\t\t\t[-108.630950, 46.749414],\n\t\t\t\t\t\t[-107.827755, 46.755986]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30071\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"071\",\n\t\t\t\t\"NAME\": \"Phillips\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 5140.035000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-107.179865, 48.999559],\n\t\t\t\t\t\t[-107.206146, 48.912592],\n\t\t\t\t\t\t[-107.206426, 48.567989],\n\t\t\t\t\t\t[-107.193567, 48.509267],\n\t\t\t\t\t\t[-107.258190, 48.514825],\n\t\t\t\t\t\t[-107.301721, 48.480943],\n\t\t\t\t\t\t[-107.301073, 48.394000],\n\t\t\t\t\t\t[-107.260454, 48.393864],\n\t\t\t\t\t\t[-107.260593, 48.304750],\n\t\t\t\t\t\t[-107.369306, 48.305134],\n\t\t\t\t\t\t[-107.369899, 48.218294],\n\t\t\t\t\t\t[-107.404555, 48.218303],\n\t\t\t\t\t\t[-107.414886, 47.691677],\n\t\t\t\t\t\t[-107.450151, 47.622077],\n\t\t\t\t\t\t[-107.600981, 47.650011],\n\t\t\t\t\t\t[-107.695788, 47.628756],\n\t\t\t\t\t\t[-107.759310, 47.552006],\n\t\t\t\t\t\t[-107.908907, 47.450638],\n\t\t\t\t\t\t[-107.931105, 47.569073],\n\t\t\t\t\t\t[-108.065418, 47.598294],\n\t\t\t\t\t\t[-108.312615, 47.583452],\n\t\t\t\t\t\t[-108.771619, 47.645523],\n\t\t\t\t\t\t[-108.891022, 47.734407],\n\t\t\t\t\t\t[-108.888163, 47.922746],\n\t\t\t\t\t\t[-108.625708, 47.920820],\n\t\t\t\t\t\t[-108.608027, 47.991075],\n\t\t\t\t\t\t[-108.433966, 47.976552],\n\t\t\t\t\t\t[-108.433848, 48.219443],\n\t\t\t\t\t\t[-108.411366, 48.219443],\n\t\t\t\t\t\t[-108.410374, 48.448484],\n\t\t\t\t\t\t[-108.345930, 48.422296],\n\t\t\t\t\t\t[-108.346193, 48.568450],\n\t\t\t\t\t\t[-108.318834, 48.568432],\n\t\t\t\t\t\t[-108.319144, 48.742290],\n\t\t\t\t\t\t[-108.259347, 48.742191],\n\t\t\t\t\t\t[-108.259372, 48.913592],\n\t\t\t\t\t\t[-108.236495, 48.999405],\n\t\t\t\t\t\t[-107.179865, 48.999559]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30077\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"077\",\n\t\t\t\t\"NAME\": \"Powell\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2326.392000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-113.303005, 46.832132],\n\t\t\t\t\t\t[-113.302873, 47.179433],\n\t\t\t\t\t\t[-113.466122, 47.178941],\n\t\t\t\t\t\t[-113.466486, 47.599986],\n\t\t\t\t\t\t[-113.144926, 47.596363],\n\t\t\t\t\t\t[-113.114863, 47.490564],\n\t\t\t\t\t\t[-113.059444, 47.488096],\n\t\t\t\t\t\t[-113.058866, 47.179369],\n\t\t\t\t\t\t[-112.796594, 47.177222],\n\t\t\t\t\t\t[-112.795320, 46.831772],\n\t\t\t\t\t\t[-112.535608, 46.834382],\n\t\t\t\t\t\t[-112.535313, 46.698527],\n\t\t\t\t\t\t[-112.410790, 46.699696],\n\t\t\t\t\t\t[-112.410855, 46.656711],\n\t\t\t\t\t\t[-112.298607, 46.625918],\n\t\t\t\t\t\t[-112.310610, 46.421006],\n\t\t\t\t\t\t[-112.558457, 46.265925],\n\t\t\t\t\t\t[-113.036834, 46.266822],\n\t\t\t\t\t\t[-113.038691, 46.736132],\n\t\t\t\t\t\t[-113.115791, 46.713590],\n\t\t\t\t\t\t[-113.303005, 46.832132]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30083\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"083\",\n\t\t\t\t\"NAME\": \"Richland\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2084.143000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-104.043933, 47.971515],\n\t\t\t\t\t\t[-104.043497, 47.954490],\n\t\t\t\t\t\t[-104.043329, 47.949554],\n\t\t\t\t\t\t[-104.042230, 47.891031],\n\t\t\t\t\t\t[-104.041662, 47.862282],\n\t\t\t\t\t\t[-104.041869, 47.841699],\n\t\t\t\t\t\t[-104.042567, 47.808237],\n\t\t\t\t\t\t[-104.042432, 47.805358],\n\t\t\t\t\t\t[-104.042384, 47.803256],\n\t\t\t\t\t\t[-104.043199, 47.747292],\n\t\t\t\t\t\t[-104.043242, 47.747106],\n\t\t\t\t\t\t[-104.044621, 47.459380],\n\t\t\t\t\t\t[-104.044797, 47.438445],\n\t\t\t\t\t\t[-104.045069, 47.397461],\n\t\t\t\t\t\t[-104.131525, 47.354148],\n\t\t\t\t\t\t[-104.420263, 47.354596],\n\t\t\t\t\t\t[-104.513279, 47.354718],\n\t\t\t\t\t\t[-104.512883, 47.529252],\n\t\t\t\t\t\t[-104.593811, 47.528966],\n\t\t\t\t\t\t[-104.593630, 47.615951],\n\t\t\t\t\t\t[-104.978516, 47.616288],\n\t\t\t\t\t\t[-104.978000, 47.703374],\n\t\t\t\t\t\t[-105.234880, 47.703634],\n\t\t\t\t\t\t[-105.234619, 47.790760],\n\t\t\t\t\t\t[-105.194933, 47.868180],\n\t\t\t\t\t\t[-105.194742, 48.065669],\n\t\t\t\t\t\t[-105.177722, 48.103100],\n\t\t\t\t\t\t[-105.119117, 48.059600],\n\t\t\t\t\t\t[-104.990346, 48.066449],\n\t\t\t\t\t\t[-104.891321, 48.150690],\n\t\t\t\t\t\t[-104.822581, 48.118945],\n\t\t\t\t\t\t[-104.681633, 48.103323],\n\t\t\t\t\t\t[-104.544517, 48.126553],\n\t\t\t\t\t\t[-104.245936, 48.031005],\n\t\t\t\t\t\t[-104.142470, 48.055005],\n\t\t\t\t\t\t[-104.098921, 48.000019],\n\t\t\t\t\t\t[-104.044120, 47.996107],\n\t\t\t\t\t\t[-104.044162, 47.992836],\n\t\t\t\t\t\t[-104.043933, 47.971515]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30087\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"087\",\n\t\t\t\t\"NAME\": \"Rosebud\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 5010.402000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-107.781214, 46.496014],\n\t\t\t\t\t\t[-107.792939, 46.679830],\n\t\t\t\t\t\t[-107.827755, 46.755986],\n\t\t\t\t\t\t[-107.892117, 46.851537],\n\t\t\t\t\t\t[-107.466813, 46.860486],\n\t\t\t\t\t\t[-106.720027, 46.859603],\n\t\t\t\t\t\t[-106.720258, 46.845251],\n\t\t\t\t\t\t[-106.086504, 46.845968],\n\t\t\t\t\t\t[-106.086335, 46.831269],\n\t\t\t\t\t\t[-106.120909, 46.831310],\n\t\t\t\t\t\t[-106.120415, 46.483591],\n\t\t\t\t\t\t[-106.155265, 46.483470],\n\t\t\t\t\t\t[-106.153268, 46.137194],\n\t\t\t\t\t\t[-106.191438, 46.137019],\n\t\t\t\t\t\t[-106.191861, 45.788600],\n\t\t\t\t\t\t[-106.234263, 45.788401],\n\t\t\t\t\t\t[-106.235575, 45.351796],\n\t\t\t\t\t\t[-106.279478, 45.351796],\n\t\t\t\t\t\t[-106.279682, 45.179892],\n\t\t\t\t\t\t[-106.768014, 45.179677],\n\t\t\t\t\t\t[-106.727488, 45.676491],\n\t\t\t\t\t\t[-106.912997, 45.684087],\n\t\t\t\t\t\t[-106.912494, 45.788189],\n\t\t\t\t\t\t[-106.877217, 45.831714],\n\t\t\t\t\t\t[-106.939095, 45.870089],\n\t\t\t\t\t\t[-106.938980, 46.136697],\n\t\t\t\t\t\t[-107.007451, 46.134084],\n\t\t\t\t\t\t[-107.007261, 46.307641],\n\t\t\t\t\t\t[-107.028378, 46.395409],\n\t\t\t\t\t\t[-107.153227, 46.395545],\n\t\t\t\t\t\t[-107.174607, 46.482340],\n\t\t\t\t\t\t[-107.738547, 46.481715],\n\t\t\t\t\t\t[-107.755369, 46.482008],\n\t\t\t\t\t\t[-107.755180, 46.496126],\n\t\t\t\t\t\t[-107.781214, 46.496014]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30091\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"091\",\n\t\t\t\t\"NAME\": \"Sheridan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1677.080000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-104.047582, 48.633976],\n\t\t\t\t\t\t[-104.047620, 48.627015],\n\t\t\t\t\t\t[-104.047586, 48.625644],\n\t\t\t\t\t\t[-104.047930, 48.620190],\n\t\t\t\t\t\t[-104.048212, 48.599055],\n\t\t\t\t\t\t[-104.047974, 48.591606],\n\t\t\t\t\t\t[-104.047811, 48.562770],\n\t\t\t\t\t\t[-104.047783, 48.539737],\n\t\t\t\t\t\t[-104.047648, 48.531489],\n\t\t\t\t\t\t[-104.047876, 48.530798],\n\t\t\t\t\t\t[-104.047513, 48.525913],\n\t\t\t\t\t\t[-104.047675, 48.517852],\n\t\t\t\t\t\t[-104.047555, 48.494140],\n\t\t\t\t\t\t[-104.047392, 48.467086],\n\t\t\t\t\t\t[-104.047259, 48.452941],\n\t\t\t\t\t\t[-104.047294, 48.452529],\n\t\t\t\t\t\t[-104.047192, 48.447251],\n\t\t\t\t\t\t[-104.047090, 48.445903],\n\t\t\t\t\t\t[-104.046960, 48.421065],\n\t\t\t\t\t\t[-104.047134, 48.411057],\n\t\t\t\t\t\t[-104.046969, 48.390675],\n\t\t\t\t\t\t[-104.046913, 48.389433],\n\t\t\t\t\t\t[-104.046913, 48.389429],\n\t\t\t\t\t\t[-104.628048, 48.389239],\n\t\t\t\t\t\t[-104.627710, 48.476349],\n\t\t\t\t\t\t[-104.757861, 48.476556],\n\t\t\t\t\t\t[-104.757595, 48.563122],\n\t\t\t\t\t\t[-104.973354, 48.563190],\n\t\t\t\t\t\t[-104.973283, 48.650085],\n\t\t\t\t\t\t[-105.038567, 48.650232],\n\t\t\t\t\t\t[-105.057514, 48.999448],\n\t\t\t\t\t\t[-104.647389, 48.999344],\n\t\t\t\t\t\t[-104.543636, 48.999541],\n\t\t\t\t\t\t[-104.048736, 48.999877],\n\t\t\t\t\t\t[-104.048478, 48.987007],\n\t\t\t\t\t\t[-104.048616, 48.966736],\n\t\t\t\t\t\t[-104.048555, 48.963772],\n\t\t\t\t\t\t[-104.048800, 48.958997],\n\t\t\t\t\t\t[-104.048627, 48.957124],\n\t\t\t\t\t\t[-104.048698, 48.951823],\n\t\t\t\t\t\t[-104.048872, 48.949630],\n\t\t\t\t\t\t[-104.048770, 48.943301],\n\t\t\t\t\t\t[-104.048701, 48.940331],\n\t\t\t\t\t\t[-104.048807, 48.933636],\n\t\t\t\t\t\t[-104.048744, 48.912113],\n\t\t\t\t\t\t[-104.048746, 48.906858],\n\t\t\t\t\t\t[-104.048643, 48.902609],\n\t\t\t\t\t\t[-104.048719, 48.879921],\n\t\t\t\t\t\t[-104.048893, 48.875739],\n\t\t\t\t\t\t[-104.048883, 48.874008],\n\t\t\t\t\t\t[-104.048824, 48.867539],\n\t\t\t\t\t\t[-104.048652, 48.865734],\n\t\t\t\t\t\t[-104.048900, 48.847387],\n\t\t\t\t\t\t[-104.048569, 48.797052],\n\t\t\t\t\t\t[-104.048537, 48.788552],\n\t\t\t\t\t\t[-104.048548, 48.751356],\n\t\t\t\t\t\t[-104.048340, 48.747133],\n\t\t\t\t\t\t[-104.047883, 48.664191],\n\t\t\t\t\t\t[-104.047849, 48.663163],\n\t\t\t\t\t\t[-104.047861, 48.658856],\n\t\t\t\t\t\t[-104.047865, 48.657450],\n\t\t\t\t\t\t[-104.047887, 48.649911],\n\t\t\t\t\t\t[-104.047819, 48.648631],\n\t\t\t\t\t\t[-104.047582, 48.633984],\n\t\t\t\t\t\t[-104.047582, 48.633976]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30097\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"097\",\n\t\t\t\t\"NAME\": \"Sweet Grass\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1855.205000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-110.063819, 45.172102],\n\t\t\t\t\t\t[-110.228549, 45.172820],\n\t\t\t\t\t\t[-110.220902, 45.784787],\n\t\t\t\t\t\t[-110.292662, 45.785022],\n\t\t\t\t\t\t[-110.281860, 46.184210],\n\t\t\t\t\t\t[-110.281858, 46.220519],\n\t\t\t\t\t\t[-109.654304, 46.219402],\n\t\t\t\t\t\t[-109.604968, 46.045377],\n\t\t\t\t\t\t[-109.417297, 46.044485],\n\t\t\t\t\t\t[-109.423259, 45.960214],\n\t\t\t\t\t\t[-109.506715, 45.959139],\n\t\t\t\t\t\t[-109.505939, 45.870272],\n\t\t\t\t\t\t[-109.548918, 45.870940],\n\t\t\t\t\t\t[-109.564149, 45.782856],\n\t\t\t\t\t\t[-109.561958, 45.609119],\n\t\t\t\t\t\t[-109.685289, 45.608906],\n\t\t\t\t\t\t[-109.685551, 45.565630],\n\t\t\t\t\t\t[-109.808793, 45.565925],\n\t\t\t\t\t\t[-109.808841, 45.522424],\n\t\t\t\t\t\t[-109.932028, 45.522609],\n\t\t\t\t\t\t[-109.932223, 45.348561],\n\t\t\t\t\t\t[-110.063347, 45.348759],\n\t\t\t\t\t\t[-110.063819, 45.172102]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30101\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"101\",\n\t\t\t\t\"NAME\": \"Toole\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1915.647000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-112.193588, 48.998229],\n\t\t\t\t\t\t[-111.854088, 48.998067],\n\t\t\t\t\t\t[-111.854090, 48.998039],\n\t\t\t\t\t\t[-111.761679, 48.997614],\n\t\t\t\t\t\t[-111.761613, 48.997650],\n\t\t\t\t\t\t[-111.270702, 48.997895],\n\t\t\t\t\t\t[-111.274733, 48.219444],\n\t\t\t\t\t\t[-111.408922, 48.219476],\n\t\t\t\t\t\t[-111.666500, 48.219412],\n\t\t\t\t\t\t[-111.665829, 48.349497],\n\t\t\t\t\t\t[-111.796117, 48.349814],\n\t\t\t\t\t\t[-111.795910, 48.393011],\n\t\t\t\t\t\t[-111.990819, 48.394285],\n\t\t\t\t\t\t[-111.990944, 48.438546],\n\t\t\t\t\t\t[-112.184375, 48.477593],\n\t\t\t\t\t\t[-112.193588, 48.998229]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US38065\",\n\t\t\t\t\"STATE\": \"38\",\n\t\t\t\t\"COUNTY\": \"065\",\n\t\t\t\t\"NAME\": \"Oliver\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 722.511000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.935983, 46.982840],\n\t\t\t\t\t\t[-101.764392, 46.981306],\n\t\t\t\t\t\t[-101.764419, 47.241423],\n\t\t\t\t\t\t[-101.257944, 47.241347],\n\t\t\t\t\t\t[-101.257031, 47.264895],\n\t\t\t\t\t\t[-101.060424, 47.293293],\n\t\t\t\t\t\t[-100.977629, 47.249992],\n\t\t\t\t\t\t[-100.965156, 47.156631],\n\t\t\t\t\t\t[-100.882172, 47.015115],\n\t\t\t\t\t\t[-100.935983, 46.982840]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US38067\",\n\t\t\t\t\"STATE\": \"38\",\n\t\t\t\t\"COUNTY\": \"067\",\n\t\t\t\t\"NAME\": \"Pembina\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1118.694000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.950205, 49.000459],\n\t\t\t\t\t\t[-97.775750, 49.000574],\n\t\t\t\t\t\t[-97.411216, 49.000510],\n\t\t\t\t\t\t[-97.229039, 49.000687],\n\t\t\t\t\t\t[-97.234005, 48.997470],\n\t\t\t\t\t\t[-97.238387, 48.982631],\n\t\t\t\t\t\t[-97.239155, 48.967596],\n\t\t\t\t\t\t[-97.232610, 48.946561],\n\t\t\t\t\t\t[-97.199549, 48.881183],\n\t\t\t\t\t\t[-97.157797, 48.787680],\n\t\t\t\t\t\t[-97.137571, 48.749191],\n\t\t\t\t\t\t[-97.092606, 48.682033],\n\t\t\t\t\t\t[-97.163050, 48.543963],\n\t\t\t\t\t\t[-97.163105, 48.543855],\n\t\t\t\t\t\t[-97.161110, 48.543155],\n\t\t\t\t\t\t[-97.162466, 48.542250],\n\t\t\t\t\t\t[-97.927154, 48.543124],\n\t\t\t\t\t\t[-97.949577, 48.717693],\n\t\t\t\t\t\t[-97.950205, 49.000459]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US38071\",\n\t\t\t\t\"STATE\": \"38\",\n\t\t\t\t\"COUNTY\": \"071\",\n\t\t\t\t\"NAME\": \"Ramsey\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1186.854000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.970392, 48.544232],\n\t\t\t\t\t\t[-98.318098, 48.543773],\n\t\t\t\t\t\t[-98.292184, 48.195177],\n\t\t\t\t\t\t[-98.422100, 48.194824],\n\t\t\t\t\t\t[-98.422659, 48.021115],\n\t\t\t\t\t\t[-98.525609, 48.021150],\n\t\t\t\t\t\t[-98.525555, 47.915056],\n\t\t\t\t\t\t[-98.625384, 47.916399],\n\t\t\t\t\t\t[-98.672086, 48.000400],\n\t\t\t\t\t\t[-98.750610, 47.982456],\n\t\t\t\t\t\t[-98.803893, 48.059901],\n\t\t\t\t\t\t[-98.991253, 47.990260],\n\t\t\t\t\t\t[-99.001038, 48.053294],\n\t\t\t\t\t\t[-99.070351, 48.021955],\n\t\t\t\t\t\t[-99.070443, 48.107857],\n\t\t\t\t\t\t[-99.199911, 48.155309],\n\t\t\t\t\t\t[-99.200306, 48.370658],\n\t\t\t\t\t\t[-98.970975, 48.370472],\n\t\t\t\t\t\t[-98.970392, 48.544232]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US38075\",\n\t\t\t\t\"STATE\": \"38\",\n\t\t\t\t\"COUNTY\": \"075\",\n\t\t\t\t\"NAME\": \"Renville\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 877.053000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-102.021144, 48.999015],\n\t\t\t\t\t\t[-101.496737, 48.999355],\n\t\t\t\t\t\t[-101.496684, 48.720078],\n\t\t\t\t\t\t[-101.451152, 48.720018],\n\t\t\t\t\t\t[-101.451275, 48.546079],\n\t\t\t\t\t\t[-101.059660, 48.545337],\n\t\t\t\t\t\t[-101.060047, 48.458615],\n\t\t\t\t\t\t[-101.059802, 48.458448],\n\t\t\t\t\t\t[-101.841969, 48.459545],\n\t\t\t\t\t\t[-101.842135, 48.720147],\n\t\t\t\t\t\t[-102.021428, 48.720283],\n\t\t\t\t\t\t[-102.021655, 48.807108],\n\t\t\t\t\t\t[-102.021144, 48.999015]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US38081\",\n\t\t\t\t\"STATE\": \"38\",\n\t\t\t\t\"COUNTY\": \"081\",\n\t\t\t\t\"NAME\": \"Sargent\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 858.513000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.228304, 45.935141],\n\t\t\t\t\t\t[-97.228323, 45.935141],\n\t\t\t\t\t\t[-97.312184, 45.935077],\n\t\t\t\t\t\t[-97.318899, 45.935054],\n\t\t\t\t\t\t[-97.481967, 45.935138],\n\t\t\t\t\t\t[-97.491892, 45.935111],\n\t\t\t\t\t\t[-97.518944, 45.935304],\n\t\t\t\t\t\t[-97.519035, 45.935304],\n\t\t\t\t\t\t[-97.542598, 45.935258],\n\t\t\t\t\t\t[-97.696691, 45.935352],\n\t\t\t\t\t\t[-97.777040, 45.935393],\n\t\t\t\t\t\t[-97.784575, 45.935327],\n\t\t\t\t\t\t[-97.958718, 45.935878],\n\t\t\t\t\t\t[-97.978778, 45.935937],\n\t\t\t\t\t\t[-97.986893, 45.935961],\n\t\t\t\t\t\t[-98.008102, 45.936095],\n\t\t\t\t\t\t[-98.006715, 46.282626],\n\t\t\t\t\t\t[-97.280568, 46.282321],\n\t\t\t\t\t\t[-97.259339, 46.282197],\n\t\t\t\t\t\t[-97.259632, 45.997185],\n\t\t\t\t\t\t[-97.228291, 45.935141],\n\t\t\t\t\t\t[-97.228304, 45.935141]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US38089\",\n\t\t\t\t\"STATE\": \"38\",\n\t\t\t\t\"COUNTY\": \"089\",\n\t\t\t\t\"NAME\": \"Stark\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1334.735000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-102.096675, 46.981159],\n\t\t\t\t\t\t[-102.097087, 46.980813],\n\t\t\t\t\t\t[-102.096239, 46.717706],\n\t\t\t\t\t\t[-102.096395, 46.688950],\n\t\t\t\t\t\t[-102.096585, 46.631024],\n\t\t\t\t\t\t[-102.928003, 46.630065],\n\t\t\t\t\t\t[-103.231566, 46.629918],\n\t\t\t\t\t\t[-103.230991, 46.980296],\n\t\t\t\t\t\t[-103.032681, 46.980580],\n\t\t\t\t\t\t[-102.525462, 46.981307],\n\t\t\t\t\t\t[-102.525463, 47.010240],\n\t\t\t\t\t\t[-102.144771, 47.010307],\n\t\t\t\t\t\t[-102.144878, 46.981425],\n\t\t\t\t\t\t[-102.096675, 46.981159]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US38093\",\n\t\t\t\t\"STATE\": \"38\",\n\t\t\t\t\"COUNTY\": \"093\",\n\t\t\t\t\"NAME\": \"Stutsman\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2221.724000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.467476, 47.240453],\n\t\t\t\t\t\t[-98.467530, 46.979594],\n\t\t\t\t\t\t[-98.439466, 46.979658],\n\t\t\t\t\t\t[-98.439056, 46.631120],\n\t\t\t\t\t\t[-99.036639, 46.630575],\n\t\t\t\t\t\t[-99.449720, 46.631630],\n\t\t\t\t\t\t[-99.446423, 46.980889],\n\t\t\t\t\t\t[-99.481085, 46.980694],\n\t\t\t\t\t\t[-99.480726, 47.327076],\n\t\t\t\t\t\t[-99.266280, 47.327194],\n\t\t\t\t\t\t[-99.250392, 47.326894],\n\t\t\t\t\t\t[-98.499246, 47.326538],\n\t\t\t\t\t\t[-98.467263, 47.326530],\n\t\t\t\t\t\t[-98.467476, 47.240453]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US38097\",\n\t\t\t\t\"STATE\": \"38\",\n\t\t\t\t\"COUNTY\": \"097\",\n\t\t\t\t\"NAME\": \"Traill\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 861.949000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.853286, 47.503881],\n\t\t\t\t\t\t[-96.853768, 47.499527],\n\t\t\t\t\t\t[-96.862312, 47.422333],\n\t\t\t\t\t\t[-96.852676, 47.374973],\n\t\t\t\t\t\t[-96.833019, 47.238095],\n\t\t\t\t\t\t[-97.451512, 47.239061],\n\t\t\t\t\t\t[-97.474337, 47.324776],\n\t\t\t\t\t\t[-97.472745, 47.672051],\n\t\t\t\t\t\t[-96.890671, 47.672153],\n\t\t\t\t\t\t[-96.885740, 47.664266],\n\t\t\t\t\t\t[-96.850955, 47.598287],\n\t\t\t\t\t\t[-96.842430, 47.508225],\n\t\t\t\t\t\t[-96.853286, 47.503881]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US38101\",\n\t\t\t\t\"STATE\": \"38\",\n\t\t\t\t\"COUNTY\": \"101\",\n\t\t\t\t\"NAME\": \"Ward\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2013.279000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-102.021655, 48.807108],\n\t\t\t\t\t\t[-102.021428, 48.720283],\n\t\t\t\t\t\t[-101.842135, 48.720147],\n\t\t\t\t\t\t[-101.841969, 48.459545],\n\t\t\t\t\t\t[-101.059802, 48.458448],\n\t\t\t\t\t\t[-101.014138, 48.371432],\n\t\t\t\t\t\t[-101.015024, 48.022739],\n\t\t\t\t\t\t[-100.970497, 48.022645],\n\t\t\t\t\t\t[-100.971325, 47.848703],\n\t\t\t\t\t\t[-101.871862, 47.847589],\n\t\t\t\t\t\t[-101.871537, 48.023176],\n\t\t\t\t\t\t[-101.922123, 48.023173],\n\t\t\t\t\t\t[-101.922237, 48.372330],\n\t\t\t\t\t\t[-101.973399, 48.372095],\n\t\t\t\t\t\t[-101.973322, 48.547133],\n\t\t\t\t\t\t[-102.233892, 48.546339],\n\t\t\t\t\t\t[-102.233600, 48.720290],\n\t\t\t\t\t\t[-102.152545, 48.720294],\n\t\t\t\t\t\t[-102.152164, 48.807200],\n\t\t\t\t\t\t[-102.021655, 48.807108]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39001\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"001\",\n\t\t\t\t\"NAME\": \"Adams\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 583.867000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.642994, 38.643273],\n\t\t\t\t\t\t[-83.646701, 38.637489],\n\t\t\t\t\t\t[-83.649737, 38.632753],\n\t\t\t\t\t\t[-83.655425, 38.629735],\n\t\t\t\t\t\t[-83.663911, 38.627930],\n\t\t\t\t\t\t[-83.679484, 38.630036],\n\t\t\t\t\t\t[-83.706043, 38.637101],\n\t\t\t\t\t\t[-83.705311, 38.639853],\n\t\t\t\t\t\t[-83.673018, 39.020430],\n\t\t\t\t\t\t[-83.611592, 39.018890],\n\t\t\t\t\t\t[-83.385637, 39.055197],\n\t\t\t\t\t\t[-83.270817, 39.015791],\n\t\t\t\t\t\t[-83.265769, 38.605278],\n\t\t\t\t\t\t[-83.282100, 38.602987],\n\t\t\t\t\t\t[-83.320531, 38.622713],\n\t\t\t\t\t\t[-83.324157, 38.633326],\n\t\t\t\t\t\t[-83.333347, 38.641562],\n\t\t\t\t\t\t[-83.369077, 38.659334],\n\t\t\t\t\t\t[-83.512571, 38.701716],\n\t\t\t\t\t\t[-83.520953, 38.703045],\n\t\t\t\t\t\t[-83.533339, 38.702105],\n\t\t\t\t\t\t[-83.574754, 38.692671],\n\t\t\t\t\t\t[-83.615736, 38.684145],\n\t\t\t\t\t\t[-83.626922, 38.679387],\n\t\t\t\t\t\t[-83.636208, 38.670584],\n\t\t\t\t\t\t[-83.642994, 38.643273]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39005\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"005\",\n\t\t\t\t\"NAME\": \"Ashland\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 422.950000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.416480, 40.902252],\n\t\t\t\t\t\t[-82.417900, 40.992938],\n\t\t\t\t\t\t[-82.432852, 40.992944],\n\t\t\t\t\t\t[-82.436914, 41.065371],\n\t\t\t\t\t\t[-82.336496, 41.065761],\n\t\t\t\t\t\t[-82.171492, 41.063537],\n\t\t\t\t\t\t[-82.173359, 40.992046],\n\t\t\t\t\t\t[-82.129334, 40.991807],\n\t\t\t\t\t\t[-82.127904, 40.937321],\n\t\t\t\t\t\t[-82.128544, 40.929977],\n\t\t\t\t\t\t[-82.127900, 40.900902],\n\t\t\t\t\t\t[-82.125010, 40.886263],\n\t\t\t\t\t\t[-82.126199, 40.668229],\n\t\t\t\t\t\t[-82.220665, 40.667580],\n\t\t\t\t\t\t[-82.220110, 40.568206],\n\t\t\t\t\t\t[-82.336962, 40.555001],\n\t\t\t\t\t\t[-82.339211, 40.726683],\n\t\t\t\t\t\t[-82.378397, 40.727145],\n\t\t\t\t\t\t[-82.416480, 40.902252]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39011\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"011\",\n\t\t\t\t\"NAME\": \"Auglaize\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 401.386000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.455713, 40.567888],\n\t\t\t\t\t\t[-84.456180, 40.684862],\n\t\t\t\t\t\t[-84.396778, 40.684926],\n\t\t\t\t\t\t[-84.222799, 40.685957],\n\t\t\t\t\t\t[-84.107787, 40.643069],\n\t\t\t\t\t\t[-83.880194, 40.644690],\n\t\t\t\t\t\t[-83.879932, 40.538708],\n\t\t\t\t\t\t[-83.993867, 40.535174],\n\t\t\t\t\t\t[-84.002372, 40.483115],\n\t\t\t\t\t\t[-84.339088, 40.481281],\n\t\t\t\t\t\t[-84.338882, 40.378734],\n\t\t\t\t\t\t[-84.434387, 40.354534],\n\t\t\t\t\t\t[-84.455418, 40.358589],\n\t\t\t\t\t\t[-84.455713, 40.567888]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39013\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"013\",\n\t\t\t\t\"NAME\": \"Belmont\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 532.129000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.705482, 40.153047],\n\t\t\t\t\t\t[-80.726504, 40.089072],\n\t\t\t\t\t\t[-80.733104, 40.058772],\n\t\t\t\t\t\t[-80.730904, 40.049172],\n\t\t\t\t\t\t[-80.731504, 40.037472],\n\t\t\t\t\t\t[-80.732051, 40.033240],\n\t\t\t\t\t\t[-80.740126, 39.970793],\n\t\t\t\t\t\t[-80.743166, 39.969113],\n\t\t\t\t\t\t[-80.759455, 39.958233],\n\t\t\t\t\t\t[-80.806018, 39.917130],\n\t\t\t\t\t\t[-80.808722, 39.912570],\n\t\t\t\t\t\t[-80.809619, 39.905626],\n\t\t\t\t\t\t[-80.806179, 39.897306],\n\t\t\t\t\t\t[-80.812342, 39.848845],\n\t\t\t\t\t\t[-81.237316, 39.867828],\n\t\t\t\t\t\t[-81.234053, 39.951270],\n\t\t\t\t\t\t[-81.225924, 40.170075],\n\t\t\t\t\t\t[-81.035504, 40.164874],\n\t\t\t\t\t\t[-80.882892, 40.159495],\n\t\t\t\t\t\t[-80.703052, 40.157231],\n\t\t\t\t\t\t[-80.705482, 40.153047]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39017\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"017\",\n\t\t\t\t\"NAME\": \"Butler\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 467.056000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.348199, 39.348512],\n\t\t\t\t\t\t[-84.353209, 39.292287],\n\t\t\t\t\t\t[-84.391125, 39.297585],\n\t\t\t\t\t\t[-84.428363, 39.298659],\n\t\t\t\t\t\t[-84.446960, 39.300808],\n\t\t\t\t\t\t[-84.630992, 39.311942],\n\t\t\t\t\t\t[-84.819451, 39.305153],\n\t\t\t\t\t\t[-84.819352, 39.309454],\n\t\t\t\t\t\t[-84.817453, 39.391753],\n\t\t\t\t\t\t[-84.815754, 39.477352],\n\t\t\t\t\t\t[-84.815754, 39.477358],\n\t\t\t\t\t\t[-84.815555, 39.510952],\n\t\t\t\t\t\t[-84.815555, 39.511052],\n\t\t\t\t\t\t[-84.815355, 39.521950],\n\t\t\t\t\t\t[-84.815355, 39.521951],\n\t\t\t\t\t\t[-84.815155, 39.548051],\n\t\t\t\t\t\t[-84.814955, 39.566251],\n\t\t\t\t\t\t[-84.814955, 39.567251],\n\t\t\t\t\t\t[-84.815036, 39.567695],\n\t\t\t\t\t\t[-84.478927, 39.568790],\n\t\t\t\t\t\t[-84.479213, 39.591024],\n\t\t\t\t\t\t[-84.474246, 39.590155],\n\t\t\t\t\t\t[-84.365232, 39.589493],\n\t\t\t\t\t\t[-84.332089, 39.548803],\n\t\t\t\t\t\t[-84.348199, 39.348512]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39019\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"019\",\n\t\t\t\t\"NAME\": \"Carroll\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 394.609000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.861994, 40.599404],\n\t\t\t\t\t\t[-80.920920, 40.556315],\n\t\t\t\t\t\t[-80.941911, 40.424700],\n\t\t\t\t\t\t[-81.269951, 40.433486],\n\t\t\t\t\t\t[-81.264744, 40.565042],\n\t\t\t\t\t\t[-81.321659, 40.566648],\n\t\t\t\t\t\t[-81.317739, 40.651579],\n\t\t\t\t\t\t[-81.241250, 40.650534],\n\t\t\t\t\t\t[-81.237227, 40.723542],\n\t\t\t\t\t\t[-81.087289, 40.727816],\n\t\t\t\t\t\t[-80.917172, 40.726934],\n\t\t\t\t\t\t[-80.918125, 40.643464],\n\t\t\t\t\t\t[-80.861994, 40.599404]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42003\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"003\",\n\t\t\t\t\"NAME\": \"Allegheny\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 730.075000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.701624, 40.525449],\n\t\t\t\t\t\t[-79.701985, 40.523787],\n\t\t\t\t\t\t[-79.702131, 40.489635],\n\t\t\t\t\t\t[-79.703834, 40.443526],\n\t\t\t\t\t\t[-79.704739, 40.427231],\n\t\t\t\t\t\t[-79.722151, 40.409098],\n\t\t\t\t\t\t[-79.783684, 40.315913],\n\t\t\t\t\t\t[-79.787853, 40.297693],\n\t\t\t\t\t\t[-79.775139, 40.287888],\n\t\t\t\t\t\t[-79.781761, 40.227711],\n\t\t\t\t\t\t[-79.870585, 40.197415],\n\t\t\t\t\t\t[-79.881913, 40.196519],\n\t\t\t\t\t\t[-79.888986, 40.194823],\n\t\t\t\t\t\t[-79.893281, 40.194352],\n\t\t\t\t\t\t[-79.912586, 40.197767],\n\t\t\t\t\t\t[-79.927883, 40.206822],\n\t\t\t\t\t\t[-79.956073, 40.213582],\n\t\t\t\t\t\t[-79.968335, 40.223820],\n\t\t\t\t\t\t[-79.970652, 40.231814],\n\t\t\t\t\t\t[-79.964764, 40.237670],\n\t\t\t\t\t\t[-79.952098, 40.240877],\n\t\t\t\t\t\t[-80.033712, 40.288034],\n\t\t\t\t\t\t[-80.183129, 40.332515],\n\t\t\t\t\t\t[-80.360873, 40.477539],\n\t\t\t\t\t\t[-80.360782, 40.477604],\n\t\t\t\t\t\t[-80.228579, 40.573072],\n\t\t\t\t\t\t[-80.144850, 40.613474],\n\t\t\t\t\t\t[-80.148451, 40.674290],\n\t\t\t\t\t\t[-79.692930, 40.669744],\n\t\t\t\t\t\t[-79.692587, 40.669732],\n\t\t\t\t\t\t[-79.765415, 40.549854],\n\t\t\t\t\t\t[-79.701624, 40.525449]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42007\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"007\",\n\t\t\t\t\"NAME\": \"Beaver\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 434.712000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.519054, 40.517922],\n\t\t\t\t\t\t[-80.519057, 40.517922],\n\t\t\t\t\t\t[-80.519055, 40.590173],\n\t\t\t\t\t\t[-80.519086, 40.590161],\n\t\t\t\t\t\t[-80.519086, 40.616385],\n\t\t\t\t\t\t[-80.519039, 40.616391],\n\t\t\t\t\t\t[-80.518991, 40.638801],\n\t\t\t\t\t\t[-80.519058, 40.792298],\n\t\t\t\t\t\t[-80.518992, 40.801221],\n\t\t\t\t\t\t[-80.519081, 40.849157],\n\t\t\t\t\t\t[-80.519020, 40.850073],\n\t\t\t\t\t\t[-80.519039, 40.851339],\n\t\t\t\t\t\t[-80.158534, 40.855157],\n\t\t\t\t\t\t[-80.148787, 40.676432],\n\t\t\t\t\t\t[-80.148451, 40.674290],\n\t\t\t\t\t\t[-80.144850, 40.613474],\n\t\t\t\t\t\t[-80.228579, 40.573072],\n\t\t\t\t\t\t[-80.360782, 40.477604],\n\t\t\t\t\t\t[-80.360873, 40.477539],\n\t\t\t\t\t\t[-80.448114, 40.477717],\n\t\t\t\t\t\t[-80.518692, 40.477365],\n\t\t\t\t\t\t[-80.519054, 40.517922]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48361\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"361\",\n\t\t\t\t\"NAME\": \"Orange\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 333.669000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.901452, 30.242672],\n\t\t\t\t\t\t[-93.716223, 30.244318],\n\t\t\t\t\t\t[-93.712008, 30.194304],\n\t\t\t\t\t\t[-93.695252, 30.147600],\n\t\t\t\t\t\t[-93.695684, 30.135729],\n\t\t\t\t\t\t[-93.712101, 30.067346],\n\t\t\t\t\t\t[-93.721589, 30.051939],\n\t\t\t\t\t\t[-93.722481, 30.050898],\n\t\t\t\t\t\t[-93.752038, 30.016403],\n\t\t\t\t\t\t[-93.756630, 30.014163],\n\t\t\t\t\t\t[-93.789431, 29.987812],\n\t\t\t\t\t\t[-93.840799, 29.914423],\n\t\t\t\t\t\t[-93.860169, 29.977397],\n\t\t\t\t\t\t[-94.031976, 30.028013],\n\t\t\t\t\t\t[-94.115917, 30.160347],\n\t\t\t\t\t\t[-94.117604, 30.241665],\n\t\t\t\t\t\t[-93.901452, 30.242672]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48369\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"369\",\n\t\t\t\t\"NAME\": \"Parmer\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 880.778000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-102.525184, 34.746931],\n\t\t\t\t\t\t[-102.525631, 34.313034],\n\t\t\t\t\t\t[-102.615150, 34.312891],\n\t\t\t\t\t\t[-103.043979, 34.312749],\n\t\t\t\t\t\t[-103.043979, 34.312764],\n\t\t\t\t\t\t[-103.043946, 34.379555],\n\t\t\t\t\t\t[-103.043944, 34.379660],\n\t\t\t\t\t\t[-103.043919, 34.380916],\n\t\t\t\t\t\t[-103.043693, 34.383578],\n\t\t\t\t\t\t[-103.043630, 34.384690],\n\t\t\t\t\t\t[-103.043614, 34.384969],\n\t\t\t\t\t\t[-103.043613, 34.388679],\n\t\t\t\t\t\t[-103.043613, 34.390442],\n\t\t\t\t\t\t[-103.043585, 34.393716],\n\t\t\t\t\t\t[-103.043611, 34.397105],\n\t\t\t\t\t\t[-103.043583, 34.400678],\n\t\t\t\t\t\t[-103.043538, 34.405463],\n\t\t\t\t\t\t[-103.043582, 34.455657],\n\t\t\t\t\t\t[-103.043588, 34.459662],\n\t\t\t\t\t\t[-103.043589, 34.459774],\n\t\t\t\t\t\t[-103.043594, 34.462660],\n\t\t\t\t\t\t[-103.043072, 34.619782],\n\t\t\t\t\t\t[-103.042827, 34.671188],\n\t\t\t\t\t\t[-103.042769, 34.747361],\n\t\t\t\t\t\t[-102.525184, 34.746931]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48383\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"383\",\n\t\t\t\t\"NAME\": \"Reagan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1175.301000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-101.267630, 31.556462],\n\t\t\t\t\t\t[-101.267947, 31.528688],\n\t\t\t\t\t\t[-101.274799, 31.079379],\n\t\t\t\t\t\t[-101.776191, 31.079784],\n\t\t\t\t\t\t[-101.775802, 31.651319],\n\t\t\t\t\t\t[-101.267122, 31.650854],\n\t\t\t\t\t\t[-101.267630, 31.556462]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48385\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"385\",\n\t\t\t\t\"NAME\": \"Real\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 699.195000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.757621, 30.074132],\n\t\t\t\t\t\t[-99.689879, 30.073948],\n\t\t\t\t\t\t[-99.691215, 29.908582],\n\t\t\t\t\t\t[-99.600862, 29.907662],\n\t\t\t\t\t\t[-99.602803, 29.899244],\n\t\t\t\t\t\t[-99.603130, 29.627181],\n\t\t\t\t\t\t[-100.014188, 29.623495],\n\t\t\t\t\t\t[-100.030880, 29.848273],\n\t\t\t\t\t\t[-99.967626, 30.082356],\n\t\t\t\t\t\t[-99.757621, 30.074132]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48387\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"387\",\n\t\t\t\t\"NAME\": \"Red River\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1036.578000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.746096, 33.703016],\n\t\t\t\t\t\t[-94.746925, 33.328938],\n\t\t\t\t\t\t[-94.808783, 33.363636],\n\t\t\t\t\t\t[-95.125451, 33.389454],\n\t\t\t\t\t\t[-95.306640, 33.378027],\n\t\t\t\t\t\t[-95.307545, 33.380676],\n\t\t\t\t\t\t[-95.308637, 33.380662],\n\t\t\t\t\t\t[-95.310475, 33.871481],\n\t\t\t\t\t\t[-95.287565, 33.873617],\n\t\t\t\t\t\t[-95.260815, 33.887653],\n\t\t\t\t\t\t[-95.255541, 33.892047],\n\t\t\t\t\t\t[-95.249922, 33.902024],\n\t\t\t\t\t\t[-95.248200, 33.912327],\n\t\t\t\t\t\t[-95.249807, 33.922241],\n\t\t\t\t\t\t[-95.253623, 33.929710],\n\t\t\t\t\t\t[-95.252906, 33.933648],\n\t\t\t\t\t\t[-95.231113, 33.960361],\n\t\t\t\t\t\t[-95.226393, 33.961954],\n\t\t\t\t\t\t[-95.219358, 33.961567],\n\t\t\t\t\t\t[-95.155981, 33.944027],\n\t\t\t\t\t\t[-95.129572, 33.936718],\n\t\t\t\t\t\t[-95.067253, 33.917351],\n\t\t\t\t\t\t[-95.063459, 33.914040],\n\t\t\t\t\t\t[-95.062284, 33.903618],\n\t\t\t\t\t\t[-95.039452, 33.860621],\n\t\t\t\t\t\t[-94.869300, 33.745871],\n\t\t\t\t\t\t[-94.822473, 33.732716],\n\t\t\t\t\t\t[-94.760604, 33.727054],\n\t\t\t\t\t\t[-94.746096, 33.703016]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48395\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"395\",\n\t\t\t\t\"NAME\": \"Robertson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 855.683000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.349364, 30.911423],\n\t\t\t\t\t\t[-96.457630, 30.744474],\n\t\t\t\t\t\t[-96.566983, 30.695670],\n\t\t\t\t\t\t[-96.568795, 30.701387],\n\t\t\t\t\t\t[-96.595776, 30.715072],\n\t\t\t\t\t\t[-96.599467, 30.728634],\n\t\t\t\t\t\t[-96.621281, 30.730819],\n\t\t\t\t\t\t[-96.661054, 30.829686],\n\t\t\t\t\t\t[-96.684970, 30.906191],\n\t\t\t\t\t\t[-96.756330, 30.927206],\n\t\t\t\t\t\t[-96.829121, 31.105871],\n\t\t\t\t\t\t[-96.596862, 31.220900],\n\t\t\t\t\t\t[-96.319165, 31.357129],\n\t\t\t\t\t\t[-96.331090, 31.252230],\n\t\t\t\t\t\t[-96.241020, 30.973737],\n\t\t\t\t\t\t[-96.263223, 30.964123],\n\t\t\t\t\t\t[-96.336193, 30.921700],\n\t\t\t\t\t\t[-96.349364, 30.911423]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48399\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"399\",\n\t\t\t\t\"NAME\": \"Runnels\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1050.945000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.235761, 31.692970],\n\t\t\t\t\t\t[-100.235137, 32.082372],\n\t\t\t\t\t\t[-100.151911, 32.082638],\n\t\t\t\t\t\t[-99.713971, 32.082089],\n\t\t\t\t\t\t[-99.721698, 31.576759],\n\t\t\t\t\t\t[-100.111234, 31.580267],\n\t\t\t\t\t\t[-100.234636, 31.587147],\n\t\t\t\t\t\t[-100.235761, 31.692970]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48403\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"403\",\n\t\t\t\t\"NAME\": \"Sabine\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 491.390000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.039034, 31.134271],\n\t\t\t\t\t\t[-94.044154, 31.409979],\n\t\t\t\t\t\t[-93.983239, 31.466114],\n\t\t\t\t\t\t[-93.984461, 31.569419],\n\t\t\t\t\t\t[-93.834923, 31.586210],\n\t\t\t\t\t\t[-93.818582, 31.554826],\n\t\t\t\t\t\t[-93.798087, 31.534044],\n\t\t\t\t\t\t[-93.729613, 31.487922],\n\t\t\t\t\t\t[-93.695866, 31.409392],\n\t\t\t\t\t\t[-93.670182, 31.387184],\n\t\t\t\t\t\t[-93.640805, 31.372546],\n\t\t\t\t\t\t[-93.671676, 31.299586],\n\t\t\t\t\t\t[-93.644407, 31.277110],\n\t\t\t\t\t\t[-93.620829, 31.271299],\n\t\t\t\t\t\t[-93.614402, 31.260869],\n\t\t\t\t\t\t[-93.608158, 31.227835],\n\t\t\t\t\t\t[-93.607243, 31.204806],\n\t\t\t\t\t\t[-93.602315, 31.181742],\n\t\t\t\t\t\t[-93.599705, 31.176456],\n\t\t\t\t\t\t[-93.600308, 31.176158],\n\t\t\t\t\t\t[-93.911126, 31.158071],\n\t\t\t\t\t\t[-94.039034, 31.134271]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48415\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"415\",\n\t\t\t\t\"NAME\": \"Scurry\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 905.444000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-101.038660, 32.970225],\n\t\t\t\t\t\t[-100.655870, 32.963469],\n\t\t\t\t\t\t[-100.660626, 32.525312],\n\t\t\t\t\t\t[-101.174562, 32.527703],\n\t\t\t\t\t\t[-101.173378, 32.963597],\n\t\t\t\t\t\t[-101.038660, 32.970225]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48417\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"417\",\n\t\t\t\t\"NAME\": \"Shackelford\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 914.286000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.096050, 32.514768],\n\t\t\t\t\t\t[-99.114293, 32.514811],\n\t\t\t\t\t\t[-99.612026, 32.514654],\n\t\t\t\t\t\t[-99.612001, 32.956962],\n\t\t\t\t\t\t[-99.471258, 32.957025],\n\t\t\t\t\t\t[-99.096016, 32.957037],\n\t\t\t\t\t\t[-99.096050, 32.514768]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48419\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"419\",\n\t\t\t\t\"NAME\": \"Shelby\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 795.583000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.511431, 31.973984],\n\t\t\t\t\t\t[-94.015630, 31.979856],\n\t\t\t\t\t\t[-93.975377, 31.923660],\n\t\t\t\t\t\t[-93.932135, 31.893672],\n\t\t\t\t\t\t[-93.920290, 31.888651],\n\t\t\t\t\t\t[-93.889193, 31.856819],\n\t\t\t\t\t\t[-93.878225, 31.844276],\n\t\t\t\t\t\t[-93.840029, 31.800596],\n\t\t\t\t\t\t[-93.812477, 31.715246],\n\t\t\t\t\t\t[-93.817059, 31.671694],\n\t\t\t\t\t\t[-93.826290, 31.614903],\n\t\t\t\t\t\t[-93.834924, 31.586211],\n\t\t\t\t\t\t[-93.834923, 31.586210],\n\t\t\t\t\t\t[-93.984461, 31.569419],\n\t\t\t\t\t\t[-94.090717, 31.620609],\n\t\t\t\t\t\t[-94.399091, 31.653596],\n\t\t\t\t\t\t[-94.452416, 31.844281],\n\t\t\t\t\t\t[-94.511431, 31.973984]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48423\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"423\",\n\t\t\t\t\"NAME\": \"Smith\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 921.454000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.985272, 32.137989],\n\t\t\t\t\t\t[-95.459908, 32.135559],\n\t\t\t\t\t\t[-95.488733, 32.232486],\n\t\t\t\t\t\t[-95.449165, 32.355233],\n\t\t\t\t\t\t[-95.594300, 32.479858],\n\t\t\t\t\t\t[-95.594541, 32.687026],\n\t\t\t\t\t\t[-95.472970, 32.606426],\n\t\t\t\t\t\t[-95.332164, 32.604252],\n\t\t\t\t\t\t[-95.167523, 32.543957],\n\t\t\t\t\t\t[-95.153410, 32.570115],\n\t\t\t\t\t\t[-94.986935, 32.537246],\n\t\t\t\t\t\t[-94.986406, 32.371322],\n\t\t\t\t\t\t[-94.985411, 32.370820],\n\t\t\t\t\t\t[-94.985272, 32.137989]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48427\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"427\",\n\t\t\t\t\"NAME\": \"Starr\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1223.179000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.320670, 26.783081],\n\t\t\t\t\t\t[-98.478268, 26.469813],\n\t\t\t\t\t\t[-98.491943, 26.445362],\n\t\t\t\t\t\t[-98.493812, 26.441167],\n\t\t\t\t\t\t[-98.586720, 26.257456],\n\t\t\t\t\t\t[-98.623335, 26.259592],\n\t\t\t\t\t\t[-98.632900, 26.250348],\n\t\t\t\t\t\t[-98.705676, 26.277480],\n\t\t\t\t\t\t[-98.751164, 26.331307],\n\t\t\t\t\t\t[-98.807348, 26.369421],\n\t\t\t\t\t\t[-98.822373, 26.370902],\n\t\t\t\t\t\t[-98.861354, 26.365990],\n\t\t\t\t\t\t[-99.047575, 26.406922],\n\t\t\t\t\t\t[-99.105719, 26.438720],\n\t\t\t\t\t\t[-99.167996, 26.557799],\n\t\t\t\t\t\t[-99.172058, 26.570860],\n\t\t\t\t\t\t[-99.011112, 26.675023],\n\t\t\t\t\t\t[-98.954230, 26.785694],\n\t\t\t\t\t\t[-98.422616, 26.783535],\n\t\t\t\t\t\t[-98.320670, 26.783081]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48431\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"431\",\n\t\t\t\t\"NAME\": \"Sterling\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 923.451000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.821594, 32.086610],\n\t\t\t\t\t\t[-100.825370, 31.696155],\n\t\t\t\t\t\t[-100.861099, 31.705418],\n\t\t\t\t\t\t[-100.865256, 31.562294],\n\t\t\t\t\t\t[-101.267630, 31.556462],\n\t\t\t\t\t\t[-101.267122, 31.650854],\n\t\t\t\t\t\t[-101.264216, 32.087136],\n\t\t\t\t\t\t[-101.183997, 32.087208],\n\t\t\t\t\t\t[-100.821594, 32.086610]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26017\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"017\",\n\t\t\t\t\"NAME\": \"Bay\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 442.302000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.698816, 43.478957],\n\t\t\t\t\t\t[-83.817678, 43.479052],\n\t\t\t\t\t\t[-83.916091, 43.522629],\n\t\t\t\t\t\t[-84.050987, 43.524064],\n\t\t\t\t\t\t[-84.050000, 43.567324],\n\t\t\t\t\t\t[-84.168127, 43.568899],\n\t\t\t\t\t\t[-84.167318, 43.825902],\n\t\t\t\t\t\t[-84.166377, 43.996901],\n\t\t\t\t\t\t[-84.045409, 43.996974],\n\t\t\t\t\t\t[-84.044843, 43.911146],\n\t\t\t\t\t\t[-83.911128, 43.910520],\n\t\t\t\t\t\t[-83.916815, 43.899050],\n\t\t\t\t\t\t[-83.917875, 43.856509],\n\t\t\t\t\t\t[-83.926345, 43.787398],\n\t\t\t\t\t\t[-83.929375, 43.777091],\n\t\t\t\t\t\t[-83.945426, 43.759946],\n\t\t\t\t\t\t[-83.954792, 43.760932],\n\t\t\t\t\t\t[-83.956021, 43.759286],\n\t\t\t\t\t\t[-83.954347, 43.750647],\n\t\t\t\t\t\t[-83.939297, 43.715369],\n\t\t\t\t\t\t[-83.929462, 43.701269],\n\t\t\t\t\t\t[-83.909479, 43.672622],\n\t\t\t\t\t\t[-83.897078, 43.664022],\n\t\t\t\t\t\t[-83.852076, 43.644922],\n\t\t\t\t\t\t[-83.814674, 43.643022],\n\t\t\t\t\t\t[-83.806774, 43.641221],\n\t\t\t\t\t\t[-83.778919, 43.630056],\n\t\t\t\t\t\t[-83.770693, 43.628691],\n\t\t\t\t\t\t[-83.769886, 43.634924],\n\t\t\t\t\t\t[-83.725793, 43.618691],\n\t\t\t\t\t\t[-83.703446, 43.597646],\n\t\t\t\t\t\t[-83.699253, 43.596792],\n\t\t\t\t\t\t[-83.699368, 43.595314],\n\t\t\t\t\t\t[-83.698816, 43.478957]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26019\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"019\",\n\t\t\t\t\"NAME\": \"Benzie\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 319.704000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.233503, 44.518278],\n\t\t\t\t\t\t[-86.223788, 44.549043],\n\t\t\t\t\t\t[-86.220697, 44.566742],\n\t\t\t\t\t\t[-86.225450, 44.594590],\n\t\t\t\t\t\t[-86.231828, 44.609107],\n\t\t\t\t\t\t[-86.253950, 44.648080],\n\t\t\t\t\t\t[-86.259029, 44.663654],\n\t\t\t\t\t\t[-86.256796, 44.686769],\n\t\t\t\t\t\t[-86.254996, 44.691935],\n\t\t\t\t\t\t[-86.248474, 44.699046],\n\t\t\t\t\t\t[-86.232482, 44.706050],\n\t\t\t\t\t\t[-86.172201, 44.720623],\n\t\t\t\t\t\t[-86.169323, 44.722448],\n\t\t\t\t\t\t[-86.160585, 44.727988],\n\t\t\t\t\t\t[-86.160268, 44.728189],\n\t\t\t\t\t\t[-86.122946, 44.727982],\n\t\t\t\t\t\t[-86.122466, 44.727979],\n\t\t\t\t\t\t[-86.121125, 44.727972],\n\t\t\t\t\t\t[-86.120759, 44.728048],\n\t\t\t\t\t\t[-86.108303, 44.730646],\n\t\t\t\t\t\t[-86.106182, 44.731088],\n\t\t\t\t\t\t[-86.105473, 44.731522],\n\t\t\t\t\t\t[-86.090740, 44.740544],\n\t\t\t\t\t\t[-86.089186, 44.741496],\n\t\t\t\t\t\t[-86.077933, 44.758234],\n\t\t\t\t\t\t[-86.077068, 44.760494],\n\t\t\t\t\t\t[-86.076811, 44.761167],\n\t\t\t\t\t\t[-86.076719, 44.761407],\n\t\t\t\t\t\t[-86.074658, 44.766792],\n\t\t\t\t\t\t[-86.073506, 44.769803],\n\t\t\t\t\t\t[-86.073073, 44.778393],\n\t\t\t\t\t\t[-85.815120, 44.774525],\n\t\t\t\t\t\t[-85.817802, 44.512969],\n\t\t\t\t\t\t[-86.233503, 44.518278]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26021\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"021\",\n\t\t\t\t\"NAME\": \"Berrien\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 567.747000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.581518, 41.943765],\n\t\t\t\t\t\t[-86.564722, 41.981427],\n\t\t\t\t\t\t[-86.564276, 41.982427],\n\t\t\t\t\t\t[-86.564077, 41.982874],\n\t\t\t\t\t\t[-86.563904, 41.983262],\n\t\t\t\t\t\t[-86.563598, 41.983948],\n\t\t\t\t\t\t[-86.561542, 41.988559],\n\t\t\t\t\t\t[-86.556537, 41.999782],\n\t\t\t\t\t\t[-86.556421, 42.000042],\n\t\t\t\t\t\t[-86.549328, 42.010920],\n\t\t\t\t\t\t[-86.549237, 42.011059],\n\t\t\t\t\t\t[-86.545288, 42.017115],\n\t\t\t\t\t\t[-86.544867, 42.017761],\n\t\t\t\t\t\t[-86.541718, 42.022590],\n\t\t\t\t\t\t[-86.541089, 42.023555],\n\t\t\t\t\t\t[-86.536063, 42.031262],\n\t\t\t\t\t\t[-86.533855, 42.034648],\n\t\t\t\t\t\t[-86.532934, 42.036061],\n\t\t\t\t\t\t[-86.532640, 42.036512],\n\t\t\t\t\t\t[-86.532161, 42.037246],\n\t\t\t\t\t\t[-86.508856, 42.072986],\n\t\t\t\t\t\t[-86.501322, 42.084540],\n\t\t\t\t\t\t[-86.490122, 42.105139],\n\t\t\t\t\t\t[-86.485223, 42.118239],\n\t\t\t\t\t\t[-86.479031, 42.123519],\n\t\t\t\t\t\t[-86.466576, 42.134138],\n\t\t\t\t\t\t[-86.466262, 42.134406],\n\t\t\t\t\t\t[-86.464913, 42.135752],\n\t\t\t\t\t\t[-86.464897, 42.135767],\n\t\t\t\t\t\t[-86.464356, 42.136308],\n\t\t\t\t\t\t[-86.463967, 42.136696],\n\t\t\t\t\t\t[-86.463685, 42.136977],\n\t\t\t\t\t\t[-86.440762, 42.159847],\n\t\t\t\t\t\t[-86.439416, 42.161190],\n\t\t\t\t\t\t[-86.437909, 42.162694],\n\t\t\t\t\t\t[-86.437148, 42.163453],\n\t\t\t\t\t\t[-86.404146, 42.196379],\n\t\t\t\t\t\t[-86.402183, 42.198542],\n\t\t\t\t\t\t[-86.398915, 42.202143],\n\t\t\t\t\t\t[-86.398536, 42.202561],\n\t\t\t\t\t\t[-86.397692, 42.203491],\n\t\t\t\t\t\t[-86.394997, 42.206460],\n\t\t\t\t\t\t[-86.394183, 42.207357],\n\t\t\t\t\t\t[-86.393565, 42.208039],\n\t\t\t\t\t\t[-86.393518, 42.208090],\n\t\t\t\t\t\t[-86.386591, 42.215723],\n\t\t\t\t\t\t[-86.385179, 42.217279],\n\t\t\t\t\t\t[-86.383665, 42.219207],\n\t\t\t\t\t\t[-86.383585, 42.219310],\n\t\t\t\t\t\t[-86.381434, 42.222048],\n\t\t\t\t\t\t[-86.380407, 42.223357],\n\t\t\t\t\t\t[-86.380035, 42.223830],\n\t\t\t\t\t\t[-86.364880, 42.243133],\n\t\t\t\t\t\t[-86.223563, 42.243379],\n\t\t\t\t\t\t[-86.222940, 42.071484],\n\t\t\t\t\t\t[-86.226097, 41.760016],\n\t\t\t\t\t\t[-86.265496, 41.760207],\n\t\t\t\t\t\t[-86.501773, 41.759553],\n\t\t\t\t\t\t[-86.519318, 41.759447],\n\t\t\t\t\t\t[-86.524223, 41.759456],\n\t\t\t\t\t\t[-86.640044, 41.759671],\n\t\t\t\t\t\t[-86.641186, 41.759633],\n\t\t\t\t\t\t[-86.746521, 41.759982],\n\t\t\t\t\t\t[-86.748096, 41.759967],\n\t\t\t\t\t\t[-86.800611, 41.760251],\n\t\t\t\t\t\t[-86.800707, 41.760240],\n\t\t\t\t\t\t[-86.801578, 41.760240],\n\t\t\t\t\t\t[-86.804427, 41.760240],\n\t\t\t\t\t\t[-86.823628, 41.760240],\n\t\t\t\t\t\t[-86.824828, 41.760240],\n\t\t\t\t\t\t[-86.823550, 41.760898],\n\t\t\t\t\t\t[-86.802065, 41.771956],\n\t\t\t\t\t\t[-86.801772, 41.772107],\n\t\t\t\t\t\t[-86.794712, 41.775740],\n\t\t\t\t\t\t[-86.794632, 41.775782],\n\t\t\t\t\t\t[-86.793510, 41.776359],\n\t\t\t\t\t\t[-86.777943, 41.784371],\n\t\t\t\t\t\t[-86.777227, 41.784740],\n\t\t\t\t\t\t[-86.776080, 41.785399],\n\t\t\t\t\t\t[-86.774798, 41.786137],\n\t\t\t\t\t\t[-86.751292, 41.799652],\n\t\t\t\t\t\t[-86.735207, 41.808901],\n\t\t\t\t\t\t[-86.717037, 41.819349],\n\t\t\t\t\t\t[-86.715578, 41.820334],\n\t\t\t\t\t\t[-86.697541, 41.832513],\n\t\t\t\t\t\t[-86.679672, 41.844579],\n\t\t\t\t\t\t[-86.679355, 41.844793],\n\t\t\t\t\t\t[-86.648971, 41.869659],\n\t\t\t\t\t\t[-86.647600, 41.870782],\n\t\t\t\t\t\t[-86.645296, 41.872668],\n\t\t\t\t\t\t[-86.644048, 41.873689],\n\t\t\t\t\t\t[-86.643965, 41.873757],\n\t\t\t\t\t\t[-86.629867, 41.885295],\n\t\t\t\t\t\t[-86.629344, 41.885723],\n\t\t\t\t\t\t[-86.623837, 41.890230],\n\t\t\t\t\t\t[-86.623774, 41.890282],\n\t\t\t\t\t\t[-86.621259, 41.892340],\n\t\t\t\t\t\t[-86.619442, 41.893827],\n\t\t\t\t\t\t[-86.616978, 41.896625],\n\t\t\t\t\t\t[-86.616886, 41.896730],\n\t\t\t\t\t\t[-86.616029, 41.897703],\n\t\t\t\t\t\t[-86.612251, 41.901993],\n\t\t\t\t\t\t[-86.612080, 41.902188],\n\t\t\t\t\t\t[-86.611511, 41.902833],\n\t\t\t\t\t\t[-86.610896, 41.903532],\n\t\t\t\t\t\t[-86.600524, 41.915310],\n\t\t\t\t\t\t[-86.597899, 41.918291],\n\t\t\t\t\t\t[-86.596802, 41.919964],\n\t\t\t\t\t\t[-86.588662, 41.932380],\n\t\t\t\t\t\t[-86.587827, 41.933653],\n\t\t\t\t\t\t[-86.587763, 41.933752],\n\t\t\t\t\t\t[-86.586721, 41.935341],\n\t\t\t\t\t\t[-86.585696, 41.936904],\n\t\t\t\t\t\t[-86.585264, 41.937562],\n\t\t\t\t\t\t[-86.582894, 41.941179],\n\t\t\t\t\t\t[-86.582197, 41.942241],\n\t\t\t\t\t\t[-86.581518, 41.943765]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26027\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"027\",\n\t\t\t\t\"NAME\": \"Cass\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 490.062000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.222940, 42.071484],\n\t\t\t\t\t\t[-85.762943, 42.069327],\n\t\t\t\t\t\t[-85.760186, 41.798814],\n\t\t\t\t\t\t[-85.791335, 41.759051],\n\t\t\t\t\t\t[-85.791363, 41.759051],\n\t\t\t\t\t\t[-85.872041, 41.759365],\n\t\t\t\t\t\t[-85.874997, 41.759341],\n\t\t\t\t\t\t[-85.888825, 41.759422],\n\t\t\t\t\t\t[-85.974901, 41.759849],\n\t\t\t\t\t\t[-85.974980, 41.759849],\n\t\t\t\t\t\t[-85.991302, 41.759949],\n\t\t\t\t\t\t[-86.003683, 41.760007],\n\t\t\t\t\t\t[-86.062572, 41.760283],\n\t\t\t\t\t\t[-86.125060, 41.760576],\n\t\t\t\t\t\t[-86.125460, 41.760560],\n\t\t\t\t\t\t[-86.127844, 41.760592],\n\t\t\t\t\t\t[-86.217590, 41.760016],\n\t\t\t\t\t\t[-86.226070, 41.760016],\n\t\t\t\t\t\t[-86.226097, 41.760016],\n\t\t\t\t\t\t[-86.222940, 42.071484]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26031\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"031\",\n\t\t\t\t\"NAME\": \"Cheboygan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 715.264000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.732388, 45.787928],\n\t\t\t\t\t\t[-84.726192, 45.786905],\n\t\t\t\t\t\t[-84.718904, 45.777599],\n\t\t\t\t\t\t[-84.715996, 45.766174],\n\t\t\t\t\t\t[-84.681967, 45.756197],\n\t\t\t\t\t\t[-84.679546, 45.749095],\n\t\t\t\t\t\t[-84.644822, 45.739990],\n\t\t\t\t\t\t[-84.604712, 45.721668],\n\t\t\t\t\t\t[-84.573631, 45.710381],\n\t\t\t\t\t\t[-84.555496, 45.702268],\n\t\t\t\t\t\t[-84.553311, 45.698566],\n\t\t\t\t\t\t[-84.539167, 45.690480],\n\t\t\t\t\t\t[-84.539165, 45.690478],\n\t\t\t\t\t\t[-84.538998, 45.690383],\n\t\t\t\t\t\t[-84.461680, 45.652404],\n\t\t\t\t\t\t[-84.442348, 45.654771],\n\t\t\t\t\t\t[-84.435415, 45.664106],\n\t\t\t\t\t\t[-84.427495, 45.669201],\n\t\t\t\t\t\t[-84.413642, 45.669427],\n\t\t\t\t\t\t[-84.400283, 45.663345],\n\t\t\t\t\t\t[-84.376403, 45.655565],\n\t\t\t\t\t\t[-84.329537, 45.664380],\n\t\t\t\t\t\t[-84.289685, 45.653296],\n\t\t\t\t\t\t[-84.270238, 45.644790],\n\t\t\t\t\t\t[-84.215268, 45.634767],\n\t\t\t\t\t\t[-84.204218, 45.627116],\n\t\t\t\t\t\t[-84.252020, 45.625998],\n\t\t\t\t\t\t[-84.246634, 45.198718],\n\t\t\t\t\t\t[-84.366827, 45.198762],\n\t\t\t\t\t\t[-84.734303, 45.201936],\n\t\t\t\t\t\t[-84.734412, 45.202966],\n\t\t\t\t\t\t[-84.732687, 45.289382],\n\t\t\t\t\t\t[-84.732388, 45.787928]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26033\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"033\",\n\t\t\t\t\"NAME\": \"Chippewa\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1558.420000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.108089, 46.241238],\n\t\t\t\t\t\t[-84.118175, 46.233968],\n\t\t\t\t\t\t[-84.125024, 46.232885],\n\t\t\t\t\t\t[-84.134652, 46.232140],\n\t\t\t\t\t\t[-84.145950, 46.224995],\n\t\t\t\t\t\t[-84.147150, 46.224184],\n\t\t\t\t\t\t[-84.149220, 46.223808],\n\t\t\t\t\t\t[-84.150725, 46.223808],\n\t\t\t\t\t\t[-84.151666, 46.224184],\n\t\t\t\t\t\t[-84.152042, 46.224937],\n\t\t\t\t\t\t[-84.152230, 46.226254],\n\t\t\t\t\t\t[-84.152499, 46.227875],\n\t\t\t\t\t\t[-84.159485, 46.233233],\n\t\t\t\t\t\t[-84.182732, 46.235450],\n\t\t\t\t\t\t[-84.219494, 46.231992],\n\t\t\t\t\t\t[-84.233117, 46.224037],\n\t\t\t\t\t\t[-84.249164, 46.206461],\n\t\t\t\t\t\t[-84.245233, 46.192571],\n\t\t\t\t\t\t[-84.247687, 46.179890],\n\t\t\t\t\t\t[-84.251424, 46.175888],\n\t\t\t\t\t\t[-84.221001, 46.163062],\n\t\t\t\t\t\t[-84.196669, 46.166150],\n\t\t\t\t\t\t[-84.177298, 46.183993],\n\t\t\t\t\t\t[-84.171640, 46.181731],\n\t\t\t\t\t\t[-84.125022, 46.180209],\n\t\t\t\t\t\t[-84.114941, 46.174114],\n\t\t\t\t\t\t[-84.113259, 46.168860],\n\t\t\t\t\t\t[-84.100126, 46.150770],\n\t\t\t\t\t\t[-84.095818, 46.147733],\n\t\t\t\t\t\t[-84.089309, 46.146432],\n\t\t\t\t\t\t[-84.060383, 46.146138],\n\t\t\t\t\t\t[-84.026536, 46.131648],\n\t\t\t\t\t\t[-84.031036, 46.123186],\n\t\t\t\t\t\t[-84.038696, 46.125620],\n\t\t\t\t\t\t[-84.051900, 46.119810],\n\t\t\t\t\t\t[-84.061329, 46.113482],\n\t\t\t\t\t\t[-84.069147, 46.103978],\n\t\t\t\t\t\t[-84.072398, 46.096690],\n\t\t\t\t\t\t[-84.071741, 46.092441],\n\t\t\t\t\t\t[-84.066257, 46.087438],\n\t\t\t\t\t\t[-84.051712, 46.079189],\n\t\t\t\t\t\t[-84.027861, 46.054784],\n\t\t\t\t\t\t[-84.006082, 46.044586],\n\t\t\t\t\t\t[-83.989526, 46.032823],\n\t\t\t\t\t\t[-83.963808, 46.027833],\n\t\t\t\t\t\t[-83.951410, 46.029042],\n\t\t\t\t\t\t[-83.943933, 46.031465],\n\t\t\t\t\t\t[-83.939012, 46.029226],\n\t\t\t\t\t\t[-83.935470, 46.020385],\n\t\t\t\t\t\t[-83.931175, 46.017871],\n\t\t\t\t\t\t[-83.908583, 46.011471],\n\t\t\t\t\t\t[-83.900535, 45.998918],\n\t\t\t\t\t\t[-83.873147, 45.993426],\n\t\t\t\t\t\t[-83.868233, 45.995075],\n\t\t\t\t\t\t[-83.845399, 46.025679],\n\t\t\t\t\t\t[-83.830146, 46.022324],\n\t\t\t\t\t\t[-83.818202, 46.002425],\n\t\t\t\t\t\t[-83.794055, 45.995801],\n\t\t\t\t\t\t[-83.776436, 46.004202],\n\t\t\t\t\t\t[-83.765277, 46.018363],\n\t\t\t\t\t\t[-83.765233, 46.031935],\n\t\t\t\t\t\t[-83.773785, 46.051471],\n\t\t\t\t\t\t[-83.796555, 46.056688],\n\t\t\t\t\t\t[-83.812520, 46.073469],\n\t\t\t\t\t\t[-83.824036, 46.103638],\n\t\t\t\t\t\t[-83.815826, 46.108529],\n\t\t\t\t\t\t[-83.812410, 46.108598],\n\t\t\t\t\t\t[-83.792867, 46.101971],\n\t\t\t\t\t\t[-83.779996, 46.093515],\n\t\t\t\t\t\t[-83.771821, 46.090999],\n\t\t\t\t\t\t[-83.755991, 46.092159],\n\t\t\t\t\t\t[-83.728165, 46.090957],\n\t\t\t\t\t\t[-83.723300, 46.093810],\n\t\t\t\t\t\t[-83.719791, 46.101031],\n\t\t\t\t\t\t[-83.703861, 46.103366],\n\t\t\t\t\t\t[-83.661161, 46.100258],\n\t\t\t\t\t\t[-83.634980, 46.103953],\n\t\t\t\t\t\t[-83.625554, 46.102212],\n\t\t\t\t\t\t[-83.615343, 46.095976],\n\t\t\t\t\t\t[-83.598612, 46.090085],\n\t\t\t\t\t\t[-83.581315, 46.089613],\n\t\t\t\t\t\t[-83.576090, 46.083513],\n\t\t\t\t\t\t[-83.572640, 46.074922],\n\t\t\t\t\t\t[-83.572574, 46.069895],\n\t\t\t\t\t\t[-83.565351, 46.061898],\n\t\t\t\t\t\t[-83.554059, 46.058882],\n\t\t\t\t\t\t[-83.547202, 46.047868],\n\t\t\t\t\t\t[-83.543366, 46.037196],\n\t\t\t\t\t\t[-83.540845, 46.021247],\n\t\t\t\t\t\t[-83.532913, 46.011328],\n\t\t\t\t\t\t[-83.494840, 45.999541],\n\t\t\t\t\t\t[-83.488348, 45.999543],\n\t\t\t\t\t\t[-83.480639, 45.996164],\n\t\t\t\t\t\t[-83.473946, 45.988558],\n\t\t\t\t\t\t[-83.473221, 45.984422],\n\t\t\t\t\t\t[-83.481765, 45.971873],\n\t\t\t\t\t\t[-83.488809, 45.968740],\n\t\t\t\t\t\t[-83.510623, 45.929324],\n\t\t\t\t\t\t[-83.517242, 45.923614],\n\t\t\t\t\t\t[-83.526347, 45.918636],\n\t\t\t\t\t\t[-83.561838, 45.912562],\n\t\t\t\t\t\t[-83.583052, 45.915919],\n\t\t\t\t\t\t[-83.632214, 45.932287],\n\t\t\t\t\t\t[-83.657660, 45.945463],\n\t\t\t\t\t\t[-83.687695, 45.935389],\n\t\t\t\t\t\t[-83.719433, 45.934078],\n\t\t\t\t\t\t[-83.732986, 45.937641],\n\t\t\t\t\t\t[-83.742778, 45.938002],\n\t\t\t\t\t\t[-83.766233, 45.935221],\n\t\t\t\t\t\t[-83.768854, 45.932069],\n\t\t\t\t\t\t[-83.786110, 45.933375],\n\t\t\t\t\t\t[-83.801040, 45.937582],\n\t\t\t\t\t\t[-83.803332, 45.943362],\n\t\t\t\t\t\t[-83.808147, 45.945693],\n\t\t\t\t\t\t[-83.822810, 45.943985],\n\t\t\t\t\t\t[-83.827566, 45.941236],\n\t\t\t\t\t\t[-83.835505, 45.941843],\n\t\t\t\t\t\t[-83.840869, 45.952726],\n\t\t\t\t\t\t[-83.846437, 45.953181],\n\t\t\t\t\t\t[-83.864859, 45.959465],\n\t\t\t\t\t\t[-83.879616, 45.966196],\n\t\t\t\t\t\t[-83.881055, 45.968185],\n\t\t\t\t\t\t[-83.910838, 45.965613],\n\t\t\t\t\t\t[-83.921257, 45.958075],\n\t\t\t\t\t\t[-83.952183, 45.965498],\n\t\t\t\t\t\t[-83.985141, 45.967133],\n\t\t\t\t\t\t[-83.996471, 45.961461],\n\t\t\t\t\t\t[-84.017565, 45.959046],\n\t\t\t\t\t\t[-84.080071, 45.970822],\n\t\t\t\t\t\t[-84.090391, 45.967256],\n\t\t\t\t\t\t[-84.105370, 45.972948],\n\t\t\t\t\t\t[-84.107204, 45.977161],\n\t\t\t\t\t\t[-84.111174, 45.978675],\n\t\t\t\t\t\t[-84.114284, 45.978322],\n\t\t\t\t\t\t[-84.239313, 45.984880],\n\t\t\t\t\t\t[-84.238836, 46.071457],\n\t\t\t\t\t\t[-84.363090, 46.071581],\n\t\t\t\t\t\t[-84.363503, 46.157984],\n\t\t\t\t\t\t[-85.112438, 46.158191],\n\t\t\t\t\t\t[-85.113126, 46.245667],\n\t\t\t\t\t\t[-85.237839, 46.245421],\n\t\t\t\t\t\t[-85.237873, 46.755703],\n\t\t\t\t\t\t[-85.173042, 46.763634],\n\t\t\t\t\t\t[-85.063556, 46.757856],\n\t\t\t\t\t\t[-85.036286, 46.760435],\n\t\t\t\t\t\t[-85.009240, 46.769224],\n\t\t\t\t\t\t[-84.989497, 46.772403],\n\t\t\t\t\t\t[-84.964652, 46.772845],\n\t\t\t\t\t\t[-84.954009, 46.771362],\n\t\t\t\t\t\t[-84.951580, 46.769488],\n\t\t\t\t\t\t[-84.987539, 46.745483],\n\t\t\t\t\t\t[-85.007616, 46.728339],\n\t\t\t\t\t\t[-85.020159, 46.712463],\n\t\t\t\t\t\t[-85.027513, 46.697451],\n\t\t\t\t\t\t[-85.030078, 46.684769],\n\t\t\t\t\t\t[-85.028291, 46.675125],\n\t\t\t\t\t\t[-85.035504, 46.625021],\n\t\t\t\t\t\t[-85.037056, 46.600995],\n\t\t\t\t\t\t[-85.035476, 46.581547],\n\t\t\t\t\t\t[-85.031507, 46.568703],\n\t\t\t\t\t\t[-85.029594, 46.554419],\n\t\t\t\t\t\t[-85.027374, 46.553756],\n\t\t\t\t\t\t[-85.025491, 46.546397],\n\t\t\t\t\t\t[-85.027083, 46.543038],\n\t\t\t\t\t\t[-85.045534, 46.537694],\n\t\t\t\t\t\t[-85.052954, 46.532827],\n\t\t\t\t\t\t[-85.056133, 46.526520],\n\t\t\t\t\t\t[-85.054943, 46.514750],\n\t\t\t\t\t\t[-85.049847, 46.503963],\n\t\t\t\t\t\t[-85.033766, 46.487670],\n\t\t\t\t\t\t[-85.025598, 46.483028],\n\t\t\t\t\t\t[-85.015211, 46.479712],\n\t\t\t\t\t\t[-84.969464, 46.476290],\n\t\t\t\t\t\t[-84.955307, 46.480269],\n\t\t\t\t\t\t[-84.947269, 46.487399],\n\t\t\t\t\t\t[-84.937145, 46.489252],\n\t\t\t\t\t\t[-84.934432, 46.480315],\n\t\t\t\t\t\t[-84.921931, 46.469962],\n\t\t\t\t\t\t[-84.915184, 46.467515],\n\t\t\t\t\t\t[-84.893423, 46.465406],\n\t\t\t\t\t\t[-84.875070, 46.466781],\n\t\t\t\t\t\t[-84.861448, 46.469930],\n\t\t\t\t\t\t[-84.849767, 46.460245],\n\t\t\t\t\t\t[-84.843907, 46.448661],\n\t\t\t\t\t\t[-84.829491, 46.444071],\n\t\t\t\t\t\t[-84.800101, 46.446219],\n\t\t\t\t\t\t[-84.769151, 46.453523],\n\t\t\t\t\t\t[-84.723338, 46.468266],\n\t\t\t\t\t\t[-84.689672, 46.483923],\n\t\t\t\t\t\t[-84.678423, 46.487694],\n\t\t\t\t\t\t[-84.653880, 46.482250],\n\t\t\t\t\t\t[-84.631020, 46.484868],\n\t\t\t\t\t\t[-84.616489, 46.471870],\n\t\t\t\t\t\t[-84.607945, 46.456747],\n\t\t\t\t\t\t[-84.584167, 46.439410],\n\t\t\t\t\t\t[-84.573522, 46.427895],\n\t\t\t\t\t\t[-84.551496, 46.418522],\n\t\t\t\t\t\t[-84.503719, 46.439190],\n\t\t\t\t\t\t[-84.493401, 46.440313],\n\t\t\t\t\t\t[-84.479513, 46.432573],\n\t\t\t\t\t\t[-84.471848, 46.434289],\n\t\t\t\t\t\t[-84.462597, 46.440940],\n\t\t\t\t\t\t[-84.455527, 46.453897],\n\t\t\t\t\t\t[-84.455256, 46.462785],\n\t\t\t\t\t\t[-84.463322, 46.467435],\n\t\t\t\t\t\t[-84.445149, 46.489016],\n\t\t\t\t\t\t[-84.420274, 46.501077],\n\t\t\t\t\t\t[-84.394725, 46.499242],\n\t\t\t\t\t\t[-84.375040, 46.508669],\n\t\t\t\t\t\t[-84.325371, 46.500021],\n\t\t\t\t\t\t[-84.264266, 46.495055],\n\t\t\t\t\t\t[-84.226131, 46.533920],\n\t\t\t\t\t\t[-84.193729, 46.539920],\n\t\t\t\t\t\t[-84.139426, 46.532219],\n\t\t\t\t\t\t[-84.128925, 46.530119],\n\t\t\t\t\t\t[-84.117925, 46.517619],\n\t\t\t\t\t\t[-84.111225, 46.504119],\n\t\t\t\t\t\t[-84.125026, 46.470143],\n\t\t\t\t\t\t[-84.146172, 46.418520],\n\t\t\t\t\t\t[-84.138906, 46.372221],\n\t\t\t\t\t\t[-84.115563, 46.268225],\n\t\t\t\t\t\t[-84.108089, 46.241238]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30109\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"109\",\n\t\t\t\t\"NAME\": \"Wibaux\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 889.265000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-104.045271, 46.641449],\n\t\t\t\t\t\t[-104.045271, 46.641443],\n\t\t\t\t\t\t[-104.353874, 46.641446],\n\t\t\t\t\t\t[-104.417782, 46.684892],\n\t\t\t\t\t\t[-104.607017, 46.684926],\n\t\t\t\t\t\t[-104.603766, 46.860880],\n\t\t\t\t\t\t[-104.496529, 46.860910],\n\t\t\t\t\t\t[-104.369228, 46.947439],\n\t\t\t\t\t\t[-104.305564, 47.042311],\n\t\t\t\t\t\t[-104.341603, 47.245598],\n\t\t\t\t\t\t[-104.451518, 47.318417],\n\t\t\t\t\t\t[-104.420263, 47.354596],\n\t\t\t\t\t\t[-104.131525, 47.354148],\n\t\t\t\t\t\t[-104.045069, 47.397461],\n\t\t\t\t\t\t[-104.045333, 47.343452],\n\t\t\t\t\t\t[-104.045313, 47.331955],\n\t\t\t\t\t\t[-104.045307, 47.330128],\n\t\t\t\t\t\t[-104.045121, 47.276969],\n\t\t\t\t\t\t[-104.045155, 47.273930],\n\t\t\t\t\t\t[-104.045088, 47.271406],\n\t\t\t\t\t\t[-104.045057, 47.266868],\n\t\t\t\t\t\t[-104.045091, 47.265953],\n\t\t\t\t\t\t[-104.045159, 47.263874],\n\t\t\t\t\t\t[-104.045081, 47.092813],\n\t\t\t\t\t\t[-104.045018, 47.081202],\n\t\t\t\t\t\t[-104.045354, 47.078574],\n\t\t\t\t\t\t[-104.045259, 47.063901],\n\t\t\t\t\t\t[-104.045227, 47.057502],\n\t\t\t\t\t\t[-104.045195, 47.053639],\n\t\t\t\t\t\t[-104.045052, 47.040863],\n\t\t\t\t\t\t[-104.045076, 47.037589],\n\t\t\t\t\t\t[-104.045566, 46.941231],\n\t\t\t\t\t\t[-104.045535, 46.934009],\n\t\t\t\t\t\t[-104.045542, 46.933887],\n\t\t\t\t\t\t[-104.045402, 46.725423],\n\t\t\t\t\t\t[-104.045403, 46.722177],\n\t\t\t\t\t\t[-104.045370, 46.721332],\n\t\t\t\t\t\t[-104.045572, 46.713881],\n\t\t\t\t\t\t[-104.045474, 46.708738],\n\t\t\t\t\t\t[-104.045271, 46.641449]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31007\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"007\",\n\t\t\t\t\"NAME\": \"Banner\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 746.114000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-104.052540, 41.564274],\n\t\t\t\t\t\t[-104.052859, 41.592254],\n\t\t\t\t\t\t[-104.052735, 41.613676],\n\t\t\t\t\t\t[-104.052975, 41.622931],\n\t\t\t\t\t\t[-104.052945, 41.638167],\n\t\t\t\t\t\t[-104.052913, 41.645190],\n\t\t\t\t\t\t[-104.052830, 41.697954],\n\t\t\t\t\t\t[-103.370391, 41.699210],\n\t\t\t\t\t\t[-103.369024, 41.437655],\n\t\t\t\t\t\t[-103.370437, 41.394514],\n\t\t\t\t\t\t[-103.377620, 41.394633],\n\t\t\t\t\t\t[-104.052287, 41.393214],\n\t\t\t\t\t\t[-104.052287, 41.393307],\n\t\t\t\t\t\t[-104.052160, 41.407662],\n\t\t\t\t\t\t[-104.052340, 41.417865],\n\t\t\t\t\t\t[-104.052478, 41.515754],\n\t\t\t\t\t\t[-104.052476, 41.522343],\n\t\t\t\t\t\t[-104.052686, 41.539111],\n\t\t\t\t\t\t[-104.052692, 41.541154],\n\t\t\t\t\t\t[-104.052584, 41.552650],\n\t\t\t\t\t\t[-104.052531, 41.552723],\n\t\t\t\t\t\t[-104.052540, 41.564274]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31011\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"011\",\n\t\t\t\t\"NAME\": \"Boone\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 686.554000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.833288, 41.916286],\n\t\t\t\t\t\t[-97.832390, 41.742788],\n\t\t\t\t\t\t[-97.830493, 41.742238],\n\t\t\t\t\t\t[-97.829846, 41.526174],\n\t\t\t\t\t\t[-98.041328, 41.510534],\n\t\t\t\t\t\t[-98.099523, 41.480777],\n\t\t\t\t\t\t[-98.291344, 41.480727],\n\t\t\t\t\t\t[-98.290943, 41.741210],\n\t\t\t\t\t\t[-98.295760, 41.741178],\n\t\t\t\t\t\t[-98.295602, 41.914954],\n\t\t\t\t\t\t[-97.833288, 41.916286]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31013\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"013\",\n\t\t\t\t\"NAME\": \"Box Butte\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1075.293000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-103.444532, 42.437354],\n\t\t\t\t\t\t[-102.778666, 42.439745],\n\t\t\t\t\t\t[-102.773366, 42.439922],\n\t\t\t\t\t\t[-102.749431, 42.439934],\n\t\t\t\t\t\t[-102.742269, 42.092388],\n\t\t\t\t\t\t[-102.697835, 42.004843],\n\t\t\t\t\t\t[-103.363337, 42.002930],\n\t\t\t\t\t\t[-103.390382, 42.003365],\n\t\t\t\t\t\t[-103.401639, 42.003540],\n\t\t\t\t\t\t[-103.444108, 42.090708],\n\t\t\t\t\t\t[-103.444532, 42.437354]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31019\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"019\",\n\t\t\t\t\"NAME\": \"Buffalo\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 968.112000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.721975, 41.046674],\n\t\t\t\t\t\t[-98.721430, 40.698903],\n\t\t\t\t\t\t[-98.724412, 40.698891],\n\t\t\t\t\t\t[-98.724387, 40.689772],\n\t\t\t\t\t\t[-98.906096, 40.652722],\n\t\t\t\t\t\t[-99.179248, 40.660541],\n\t\t\t\t\t\t[-99.417316, 40.670825],\n\t\t\t\t\t\t[-99.425986, 41.046471],\n\t\t\t\t\t\t[-99.207564, 41.047003],\n\t\t\t\t\t\t[-98.748526, 41.046640],\n\t\t\t\t\t\t[-98.740957, 41.046651],\n\t\t\t\t\t\t[-98.740760, 41.046702],\n\t\t\t\t\t\t[-98.721975, 41.046674]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31025\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"025\",\n\t\t\t\t\"NAME\": \"Cass\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 557.446000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.927930, 41.058800],\n\t\t\t\t\t\t[-95.889215, 41.058443],\n\t\t\t\t\t\t[-95.866289, 41.051731],\n\t\t\t\t\t\t[-95.867246, 41.043671],\n\t\t\t\t\t\t[-95.867286, 41.001599],\n\t\t\t\t\t\t[-95.835434, 40.984184],\n\t\t\t\t\t\t[-95.829074, 40.975688],\n\t\t\t\t\t\t[-95.823123, 40.900924],\n\t\t\t\t\t\t[-95.821193, 40.876682],\n\t\t\t\t\t\t[-95.854172, 40.784012],\n\t\t\t\t\t\t[-96.463764, 40.783960],\n\t\t\t\t\t\t[-96.463861, 41.016069],\n\t\t\t\t\t\t[-96.319191, 41.044998],\n\t\t\t\t\t\t[-96.207648, 40.995628],\n\t\t\t\t\t\t[-96.056256, 41.065356],\n\t\t\t\t\t\t[-95.927930, 41.058800]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31029\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"029\",\n\t\t\t\t\"NAME\": \"Chase\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 894.419000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-102.051669, 40.349213],\n\t\t\t\t\t\t[-102.051572, 40.393080],\n\t\t\t\t\t\t[-102.051840, 40.396396],\n\t\t\t\t\t\t[-102.051465, 40.440008],\n\t\t\t\t\t\t[-102.051519, 40.520094],\n\t\t\t\t\t\t[-102.051725, 40.537839],\n\t\t\t\t\t\t[-102.051398, 40.697542],\n\t\t\t\t\t\t[-101.345365, 40.698093],\n\t\t\t\t\t\t[-101.342788, 40.350444],\n\t\t\t\t\t\t[-102.051669, 40.349213]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31033\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"033\",\n\t\t\t\t\"NAME\": \"Cheyenne\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1196.287000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-103.382493, 41.001883],\n\t\t\t\t\t\t[-103.377620, 41.394633],\n\t\t\t\t\t\t[-103.370437, 41.394514],\n\t\t\t\t\t\t[-103.369024, 41.437655],\n\t\t\t\t\t\t[-102.636695, 41.439053],\n\t\t\t\t\t\t[-102.609386, 41.395115],\n\t\t\t\t\t\t[-102.610413, 41.221614],\n\t\t\t\t\t\t[-102.621033, 41.002597],\n\t\t\t\t\t\t[-102.653463, 41.002332],\n\t\t\t\t\t\t[-102.739624, 41.002230],\n\t\t\t\t\t\t[-102.754617, 41.002361],\n\t\t\t\t\t\t[-102.766723, 41.002275],\n\t\t\t\t\t\t[-102.773546, 41.002414],\n\t\t\t\t\t\t[-102.827280, 41.002143],\n\t\t\t\t\t\t[-102.830303, 41.002351],\n\t\t\t\t\t\t[-102.846455, 41.002256],\n\t\t\t\t\t\t[-102.849263, 41.002301],\n\t\t\t\t\t\t[-102.865784, 41.001988],\n\t\t\t\t\t\t[-102.867822, 41.002183],\n\t\t\t\t\t\t[-102.885746, 41.002131],\n\t\t\t\t\t\t[-102.887407, 41.002178],\n\t\t\t\t\t\t[-102.904796, 41.002207],\n\t\t\t\t\t\t[-102.906547, 41.002276],\n\t\t\t\t\t\t[-102.924029, 41.002142],\n\t\t\t\t\t\t[-102.925568, 41.002280],\n\t\t\t\t\t\t[-102.943109, 41.002051],\n\t\t\t\t\t\t[-102.944830, 41.002303],\n\t\t\t\t\t\t[-102.959624, 41.002095],\n\t\t\t\t\t\t[-102.960706, 41.002059],\n\t\t\t\t\t\t[-102.962522, 41.002072],\n\t\t\t\t\t\t[-102.963669, 41.002186],\n\t\t\t\t\t\t[-102.981483, 41.002112],\n\t\t\t\t\t\t[-102.982690, 41.002157],\n\t\t\t\t\t\t[-103.000102, 41.002400],\n\t\t\t\t\t\t[-103.002026, 41.002486],\n\t\t\t\t\t\t[-103.038704, 41.002251],\n\t\t\t\t\t\t[-103.043444, 41.002344],\n\t\t\t\t\t\t[-103.057998, 41.002368],\n\t\t\t\t\t\t[-103.059538, 41.002368],\n\t\t\t\t\t\t[-103.076536, 41.002253],\n\t\t\t\t\t\t[-103.077804, 41.002298],\n\t\t\t\t\t\t[-103.362979, 41.001844],\n\t\t\t\t\t\t[-103.365314, 41.001846],\n\t\t\t\t\t\t[-103.382493, 41.001883]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31039\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"039\",\n\t\t\t\t\"NAME\": \"Cuming\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 570.619000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.555172, 41.742018],\n\t\t\t\t\t\t[-96.905922, 41.742763],\n\t\t\t\t\t\t[-97.019911, 41.742980],\n\t\t\t\t\t\t[-97.019359, 42.090577],\n\t\t\t\t\t\t[-96.823670, 42.090411],\n\t\t\t\t\t\t[-96.555511, 42.089957],\n\t\t\t\t\t\t[-96.554866, 42.015875],\n\t\t\t\t\t\t[-96.555172, 41.742018]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31045\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"045\",\n\t\t\t\t\"NAME\": \"Dawes\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1396.464000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-103.000897, 43.000474],\n\t\t\t\t\t\t[-102.792111, 42.999980],\n\t\t\t\t\t\t[-102.773369, 42.785265],\n\t\t\t\t\t\t[-102.773366, 42.439922],\n\t\t\t\t\t\t[-102.778666, 42.439745],\n\t\t\t\t\t\t[-103.444532, 42.437354],\n\t\t\t\t\t\t[-103.480082, 42.437267],\n\t\t\t\t\t\t[-103.480403, 42.784966],\n\t\t\t\t\t\t[-103.503232, 42.784787],\n\t\t\t\t\t\t[-103.505100, 43.000770],\n\t\t\t\t\t\t[-103.404579, 43.000737],\n\t\t\t\t\t\t[-103.340829, 43.000879],\n\t\t\t\t\t\t[-103.132955, 43.000784],\n\t\t\t\t\t\t[-103.131740, 43.000783],\n\t\t\t\t\t\t[-103.000897, 43.000474]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31051\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"051\",\n\t\t\t\t\"NAME\": \"Dixon\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 476.232000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.015691, 42.758697],\n\t\t\t\t\t\t[-96.961021, 42.738075],\n\t\t\t\t\t\t[-96.920494, 42.731432],\n\t\t\t\t\t\t[-96.906797, 42.733800],\n\t\t\t\t\t\t[-96.813148, 42.706397],\n\t\t\t\t\t\t[-96.806553, 42.703405],\n\t\t\t\t\t\t[-96.724033, 42.665971],\n\t\t\t\t\t\t[-96.712871, 42.648136],\n\t\t\t\t\t\t[-96.707245, 42.631258],\n\t\t\t\t\t\t[-96.710604, 42.619625],\n\t\t\t\t\t\t[-96.711332, 42.610399],\n\t\t\t\t\t\t[-96.708049, 42.601594],\n\t\t\t\t\t\t[-96.635982, 42.524324],\n\t\t\t\t\t\t[-96.722231, 42.524652],\n\t\t\t\t\t\t[-96.726661, 42.278005],\n\t\t\t\t\t\t[-96.726188, 42.264104],\n\t\t\t\t\t\t[-96.822497, 42.264292],\n\t\t\t\t\t\t[-97.017730, 42.264453],\n\t\t\t\t\t\t[-97.017789, 42.351347],\n\t\t\t\t\t\t[-97.015116, 42.698797],\n\t\t\t\t\t\t[-97.015691, 42.758697]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31057\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"057\",\n\t\t\t\t\"NAME\": \"Dundy\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 919.678000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-102.051669, 40.349213],\n\t\t\t\t\t\t[-101.342788, 40.350444],\n\t\t\t\t\t\t[-101.323353, 40.350553],\n\t\t\t\t\t\t[-101.324036, 40.002704],\n\t\t\t\t\t\t[-101.325514, 40.002687],\n\t\t\t\t\t\t[-101.342859, 40.002580],\n\t\t\t\t\t\t[-101.374326, 40.002521],\n\t\t\t\t\t\t[-101.409953, 40.002354],\n\t\t\t\t\t\t[-101.411043, 40.002365],\n\t\t\t\t\t\t[-101.417209, 40.002424],\n\t\t\t\t\t\t[-101.542273, 40.002609],\n\t\t\t\t\t\t[-101.625809, 40.002711],\n\t\t\t\t\t\t[-101.627071, 40.002620],\n\t\t\t\t\t\t[-101.804862, 40.002752],\n\t\t\t\t\t\t[-101.807687, 40.002798],\n\t\t\t\t\t\t[-101.832161, 40.002933],\n\t\t\t\t\t\t[-101.841025, 40.002784],\n\t\t\t\t\t\t[-101.904176, 40.003162],\n\t\t\t\t\t\t[-101.916696, 40.003142],\n\t\t\t\t\t\t[-102.051744, 40.003078],\n\t\t\t\t\t\t[-102.052001, 40.148359],\n\t\t\t\t\t\t[-102.051909, 40.162674],\n\t\t\t\t\t\t[-102.051894, 40.229193],\n\t\t\t\t\t\t[-102.051922, 40.235344],\n\t\t\t\t\t\t[-102.051669, 40.349213]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31071\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"071\",\n\t\t\t\t\"NAME\": \"Garfield\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 569.790000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.221830, 41.740792],\n\t\t\t\t\t\t[-99.222733, 42.087916],\n\t\t\t\t\t\t[-98.761155, 42.088518],\n\t\t\t\t\t\t[-98.759133, 41.740382],\n\t\t\t\t\t\t[-99.212016, 41.740613],\n\t\t\t\t\t\t[-99.212773, 41.740644],\n\t\t\t\t\t\t[-99.221830, 41.740792]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31075\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"075\",\n\t\t\t\t\"NAME\": \"Grant\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 776.224000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-101.985523, 41.742290],\n\t\t\t\t\t\t[-102.067918, 41.742099],\n\t\t\t\t\t\t[-102.066650, 42.009195],\n\t\t\t\t\t\t[-102.008562, 42.008901],\n\t\t\t\t\t\t[-102.006204, 42.096338],\n\t\t\t\t\t\t[-101.426557, 42.092194],\n\t\t\t\t\t\t[-101.425920, 41.743059],\n\t\t\t\t\t\t[-101.985523, 41.742290]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39023\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"023\",\n\t\t\t\t\"NAME\": \"Clark\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 397.473000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.051039, 39.879807],\n\t\t\t\t\t\t[-84.036069, 40.040182],\n\t\t\t\t\t\t[-83.516155, 40.010188],\n\t\t\t\t\t\t[-83.588041, 39.768778],\n\t\t\t\t\t\t[-83.647169, 39.773029],\n\t\t\t\t\t\t[-83.829495, 39.797851],\n\t\t\t\t\t\t[-83.827425, 39.822651],\n\t\t\t\t\t\t[-84.053736, 39.850458],\n\t\t\t\t\t\t[-84.053341, 39.855117],\n\t\t\t\t\t\t[-84.053136, 39.856158],\n\t\t\t\t\t\t[-84.052136, 39.866259],\n\t\t\t\t\t\t[-84.051636, 39.877665],\n\t\t\t\t\t\t[-84.051039, 39.879807]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39025\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"025\",\n\t\t\t\t\"NAME\": \"Clermont\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 452.100000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.259431, 39.270796],\n\t\t\t\t\t\t[-84.006782, 39.255068],\n\t\t\t\t\t\t[-83.993120, 39.254235],\n\t\t\t\t\t\t[-83.995284, 39.228189],\n\t\t\t\t\t\t[-84.052707, 38.770542],\n\t\t\t\t\t\t[-84.071491, 38.770475],\n\t\t\t\t\t\t[-84.205592, 38.802588],\n\t\t\t\t\t\t[-84.212904, 38.805707],\n\t\t\t\t\t\t[-84.225300, 38.817665],\n\t\t\t\t\t\t[-84.229954, 38.827650],\n\t\t\t\t\t\t[-84.231306, 38.830552],\n\t\t\t\t\t\t[-84.233727, 38.853576],\n\t\t\t\t\t\t[-84.232478, 38.874638],\n\t\t\t\t\t\t[-84.232132, 38.880483],\n\t\t\t\t\t\t[-84.234453, 38.893226],\n\t\t\t\t\t\t[-84.304698, 39.006455],\n\t\t\t\t\t\t[-84.313680, 39.016981],\n\t\t\t\t\t\t[-84.319936, 39.022081],\n\t\t\t\t\t\t[-84.316698, 39.226944],\n\t\t\t\t\t\t[-84.259431, 39.270796]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39029\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"029\",\n\t\t\t\t\"NAME\": \"Columbiana\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 531.893000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.519764, 40.899858],\n\t\t\t\t\t\t[-80.519039, 40.851339],\n\t\t\t\t\t\t[-80.519020, 40.850073],\n\t\t\t\t\t\t[-80.519081, 40.849157],\n\t\t\t\t\t\t[-80.518992, 40.801221],\n\t\t\t\t\t\t[-80.519058, 40.792298],\n\t\t\t\t\t\t[-80.518991, 40.638801],\n\t\t\t\t\t\t[-80.560720, 40.623680],\n\t\t\t\t\t\t[-80.589041, 40.620128],\n\t\t\t\t\t\t[-80.594065, 40.623664],\n\t\t\t\t\t\t[-80.601494, 40.625387],\n\t\t\t\t\t\t[-80.627171, 40.619936],\n\t\t\t\t\t\t[-80.634355, 40.616095],\n\t\t\t\t\t\t[-80.665892, 40.587728],\n\t\t\t\t\t\t[-80.667957, 40.582496],\n\t\t\t\t\t\t[-80.861994, 40.599404],\n\t\t\t\t\t\t[-80.918125, 40.643464],\n\t\t\t\t\t\t[-80.917172, 40.726934],\n\t\t\t\t\t\t[-81.087289, 40.727816],\n\t\t\t\t\t\t[-81.086679, 40.901609],\n\t\t\t\t\t\t[-80.519764, 40.899858]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39033\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"033\",\n\t\t\t\t\"NAME\": \"Crawford\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 401.786000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.111360, 40.702915],\n\t\t\t\t\t\t[-83.112737, 40.993447],\n\t\t\t\t\t\t[-82.829512, 40.996624],\n\t\t\t\t\t\t[-82.724792, 40.995638],\n\t\t\t\t\t\t[-82.727164, 40.711203],\n\t\t\t\t\t\t[-82.858302, 40.705019],\n\t\t\t\t\t\t[-83.111360, 40.702915]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39037\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"037\",\n\t\t\t\t\"NAME\": \"Darke\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 598.100000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.803918, 40.310094],\n\t\t\t\t\t\t[-84.803917, 40.310115],\n\t\t\t\t\t\t[-84.804119, 40.352757],\n\t\t\t\t\t\t[-84.434631, 40.354259],\n\t\t\t\t\t\t[-84.432575, 40.197037],\n\t\t\t\t\t\t[-84.425902, 39.919622],\n\t\t\t\t\t\t[-84.446101, 39.919266],\n\t\t\t\t\t\t[-84.446511, 39.918874],\n\t\t\t\t\t\t[-84.448023, 39.919230],\n\t\t\t\t\t\t[-84.485367, 39.918491],\n\t\t\t\t\t\t[-84.812411, 39.916915],\n\t\t\t\t\t\t[-84.812411, 39.916916],\n\t\t\t\t\t\t[-84.812357, 39.921764],\n\t\t\t\t\t\t[-84.812193, 39.927340],\n\t\t\t\t\t\t[-84.810670, 40.005074],\n\t\t\t\t\t\t[-84.810099, 40.034214],\n\t\t\t\t\t\t[-84.809737, 40.048929],\n\t\t\t\t\t\t[-84.808706, 40.107216],\n\t\t\t\t\t\t[-84.808305, 40.127018],\n\t\t\t\t\t\t[-84.808291, 40.129027],\n\t\t\t\t\t\t[-84.806766, 40.180128],\n\t\t\t\t\t\t[-84.806347, 40.192252],\n\t\t\t\t\t\t[-84.806340, 40.192327],\n\t\t\t\t\t\t[-84.806175, 40.197995],\n\t\t\t\t\t\t[-84.805627, 40.223659],\n\t\t\t\t\t\t[-84.804098, 40.302498],\n\t\t\t\t\t\t[-84.803918, 40.310094]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39041\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"041\",\n\t\t\t\t\"NAME\": \"Delaware\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 443.098000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.749896, 40.288636],\n\t\t\t\t\t\t[-82.750235, 40.284087],\n\t\t\t\t\t\t[-82.750747, 40.276996],\n\t\t\t\t\t\t[-82.761827, 40.125855],\n\t\t\t\t\t\t[-83.063981, 40.138289],\n\t\t\t\t\t\t[-83.149055, 40.141563],\n\t\t\t\t\t\t[-83.169981, 40.143087],\n\t\t\t\t\t\t[-83.172330, 40.244257],\n\t\t\t\t\t\t[-83.248428, 40.244466],\n\t\t\t\t\t\t[-83.248595, 40.443989],\n\t\t\t\t\t\t[-83.020798, 40.433795],\n\t\t\t\t\t\t[-82.924781, 40.415004],\n\t\t\t\t\t\t[-82.929588, 40.358123],\n\t\t\t\t\t\t[-82.744931, 40.349603],\n\t\t\t\t\t\t[-82.749896, 40.288636]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39043\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"043\",\n\t\t\t\t\"NAME\": \"Erie\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 251.558000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-82.700208, 41.612190],\n\t\t\t\t\t\t\t[-82.691123, 41.611331],\n\t\t\t\t\t\t\t[-82.680150, 41.618970],\n\t\t\t\t\t\t\t[-82.677772, 41.617986],\n\t\t\t\t\t\t\t[-82.680669, 41.594611],\n\t\t\t\t\t\t\t[-82.686033, 41.587246],\n\t\t\t\t\t\t\t[-82.688744, 41.585896],\n\t\t\t\t\t\t\t[-82.702027, 41.585437],\n\t\t\t\t\t\t\t[-82.725827, 41.595199],\n\t\t\t\t\t\t\t[-82.735766, 41.600982],\n\t\t\t\t\t\t\t[-82.735707, 41.603361],\n\t\t\t\t\t\t\t[-82.718802, 41.619629],\n\t\t\t\t\t\t\t[-82.707310, 41.619609],\n\t\t\t\t\t\t\t[-82.703438, 41.617734],\n\t\t\t\t\t\t\t[-82.700208, 41.612190]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-82.952224, 41.458239],\n\t\t\t\t\t\t\t[-82.920239, 41.458443],\n\t\t\t\t\t\t\t[-82.906650, 41.460215],\n\t\t\t\t\t\t\t[-82.856104, 41.471923],\n\t\t\t\t\t\t\t[-82.828317, 41.481802],\n\t\t\t\t\t\t\t[-82.694722, 41.493945],\n\t\t\t\t\t\t\t[-82.687921, 41.492324],\n\t\t\t\t\t\t\t[-82.658302, 41.461878],\n\t\t\t\t\t\t\t[-82.617745, 41.431833],\n\t\t\t\t\t\t\t[-82.616952, 41.428425],\n\t\t\t\t\t\t\t[-82.558080, 41.400005],\n\t\t\t\t\t\t\t[-82.513827, 41.384257],\n\t\t\t\t\t\t\t[-82.499099, 41.381541],\n\t\t\t\t\t\t\t[-82.481214, 41.381342],\n\t\t\t\t\t\t\t[-82.460599, 41.386316],\n\t\t\t\t\t\t\t[-82.431315, 41.396866],\n\t\t\t\t\t\t\t[-82.398086, 41.413945],\n\t\t\t\t\t\t\t[-82.361784, 41.426644],\n\t\t\t\t\t\t\t[-82.348076, 41.428431],\n\t\t\t\t\t\t\t[-82.342314, 41.283554],\n\t\t\t\t\t\t\t[-82.841475, 41.290023],\n\t\t\t\t\t\t\t[-82.847713, 41.430326],\n\t\t\t\t\t\t\t[-82.952224, 41.458239]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39049\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"049\",\n\t\t\t\t\"NAME\": \"Franklin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 532.188000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.811458, 39.932374],\n\t\t\t\t\t\t[-82.824254, 39.794996],\n\t\t\t\t\t\t[-83.013071, 39.804394],\n\t\t\t\t\t\t[-83.243702, 39.812503],\n\t\t\t\t\t\t[-83.253830, 40.049218],\n\t\t\t\t\t\t[-83.206273, 40.107733],\n\t\t\t\t\t\t[-83.170208, 40.106927],\n\t\t\t\t\t\t[-83.169981, 40.143087],\n\t\t\t\t\t\t[-83.149055, 40.141563],\n\t\t\t\t\t\t[-83.063981, 40.138289],\n\t\t\t\t\t\t[-82.761827, 40.125855],\n\t\t\t\t\t\t[-82.782495, 39.939662],\n\t\t\t\t\t\t[-82.810797, 39.941162],\n\t\t\t\t\t\t[-82.811458, 39.932374]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US35019\",\n\t\t\t\t\"STATE\": \"35\",\n\t\t\t\t\"COUNTY\": \"019\",\n\t\t\t\t\"NAME\": \"Guadalupe\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 3030.482000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-105.312968, 34.346720],\n\t\t\t\t\t\t[-105.312626, 34.607052],\n\t\t\t\t\t\t[-105.290299, 34.606744],\n\t\t\t\t\t\t[-105.290884, 35.042093],\n\t\t\t\t\t\t[-105.291355, 35.216345],\n\t\t\t\t\t\t[-104.124816, 35.215600],\n\t\t\t\t\t\t[-104.124841, 35.142183],\n\t\t\t\t\t\t[-104.129424, 34.779324],\n\t\t\t\t\t\t[-104.340132, 34.779062],\n\t\t\t\t\t\t[-104.444913, 34.604821],\n\t\t\t\t\t\t[-104.892023, 34.604426],\n\t\t\t\t\t\t[-104.891850, 34.346989],\n\t\t\t\t\t\t[-105.312968, 34.346720]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US35021\",\n\t\t\t\t\"STATE\": \"35\",\n\t\t\t\t\"COUNTY\": \"021\",\n\t\t\t\t\"NAME\": \"Harding\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2125.442000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-103.374988, 35.740011],\n\t\t\t\t\t\t[-103.379941, 35.397987],\n\t\t\t\t\t\t[-103.637147, 35.389722],\n\t\t\t\t\t\t[-103.724585, 35.422223],\n\t\t\t\t\t\t[-103.976867, 35.801694],\n\t\t\t\t\t\t[-104.021315, 35.781480],\n\t\t\t\t\t\t[-104.367447, 35.781428],\n\t\t\t\t\t\t[-104.389736, 35.857604],\n\t\t\t\t\t\t[-104.327381, 35.960550],\n\t\t\t\t\t\t[-104.436121, 36.218761],\n\t\t\t\t\t\t[-104.008927, 36.218018],\n\t\t\t\t\t\t[-104.008991, 36.174503],\n\t\t\t\t\t\t[-103.793986, 36.173995],\n\t\t\t\t\t\t[-103.794342, 36.085787],\n\t\t\t\t\t\t[-103.364975, 36.086373],\n\t\t\t\t\t\t[-103.374988, 35.740011]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US35025\",\n\t\t\t\t\"STATE\": \"35\",\n\t\t\t\t\"COUNTY\": \"025\",\n\t\t\t\t\"NAME\": \"Lea\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 4390.932000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-103.056655, 33.388416],\n\t\t\t\t\t\t[-103.057487, 33.329477],\n\t\t\t\t\t\t[-103.057856, 33.315234],\n\t\t\t\t\t\t[-103.060103, 33.219225],\n\t\t\t\t\t\t[-103.063905, 33.042055],\n\t\t\t\t\t\t[-103.063980, 33.038693],\n\t\t\t\t\t\t[-103.064452, 33.010290],\n\t\t\t\t\t\t[-103.064625, 32.999899],\n\t\t\t\t\t\t[-103.064679, 32.964373],\n\t\t\t\t\t\t[-103.064657, 32.959097],\n\t\t\t\t\t\t[-103.064569, 32.900014],\n\t\t\t\t\t\t[-103.064701, 32.879355],\n\t\t\t\t\t\t[-103.064862, 32.868346],\n\t\t\t\t\t\t[-103.064807, 32.857696],\n\t\t\t\t\t\t[-103.064916, 32.857260],\n\t\t\t\t\t\t[-103.064889, 32.849359],\n\t\t\t\t\t\t[-103.064672, 32.828470],\n\t\t\t\t\t\t[-103.064699, 32.827531],\n\t\t\t\t\t\t[-103.064711, 32.784593],\n\t\t\t\t\t\t[-103.064698, 32.783602],\n\t\t\t\t\t\t[-103.064807, 32.777303],\n\t\t\t\t\t\t[-103.064827, 32.726628],\n\t\t\t\t\t\t[-103.064799, 32.708694],\n\t\t\t\t\t\t[-103.064798, 32.690761],\n\t\t\t\t\t\t[-103.064864, 32.682647],\n\t\t\t\t\t\t[-103.064633, 32.646420],\n\t\t\t\t\t\t[-103.064815, 32.624537],\n\t\t\t\t\t\t[-103.064761, 32.601863],\n\t\t\t\t\t\t[-103.064788, 32.600397],\n\t\t\t\t\t\t[-103.064761, 32.587983],\n\t\t\t\t\t\t[-103.064696, 32.522193],\n\t\t\t\t\t\t[-103.064422, 32.145006],\n\t\t\t\t\t\t[-103.064348, 32.123041],\n\t\t\t\t\t\t[-103.064344, 32.087051],\n\t\t\t\t\t\t[-103.064423, 32.000518],\n\t\t\t\t\t\t[-103.085876, 32.000465],\n\t\t\t\t\t\t[-103.088698, 32.000453],\n\t\t\t\t\t\t[-103.215641, 32.000513],\n\t\t\t\t\t\t[-103.267633, 32.000475],\n\t\t\t\t\t\t[-103.267708, 32.000324],\n\t\t\t\t\t\t[-103.270383, 32.000326],\n\t\t\t\t\t\t[-103.278521, 32.000419],\n\t\t\t\t\t\t[-103.326501, 32.000370],\n\t\t\t\t\t\t[-103.722853, 32.000221],\n\t\t\t\t\t\t[-103.722938, 32.522587],\n\t\t\t\t\t\t[-103.813959, 32.522464],\n\t\t\t\t\t\t[-103.814600, 32.965203],\n\t\t\t\t\t\t[-103.766341, 32.965232],\n\t\t\t\t\t\t[-103.766433, 33.395491],\n\t\t\t\t\t\t[-103.721380, 33.395905],\n\t\t\t\t\t\t[-103.720742, 33.569678],\n\t\t\t\t\t\t[-103.510267, 33.570256],\n\t\t\t\t\t\t[-103.052610, 33.570599],\n\t\t\t\t\t\t[-103.056655, 33.388438],\n\t\t\t\t\t\t[-103.056655, 33.388416]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US35033\",\n\t\t\t\t\"STATE\": \"35\",\n\t\t\t\t\"COUNTY\": \"033\",\n\t\t\t\t\"NAME\": \"Mora\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1931.274000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-105.530380, 36.013014],\n\t\t\t\t\t\t[-105.419992, 36.131704],\n\t\t\t\t\t\t[-105.409677, 36.236814],\n\t\t\t\t\t\t[-105.340907, 36.262245],\n\t\t\t\t\t\t[-104.865185, 36.261144],\n\t\t\t\t\t\t[-104.865545, 36.217997],\n\t\t\t\t\t\t[-104.436121, 36.218761],\n\t\t\t\t\t\t[-104.327381, 35.960550],\n\t\t\t\t\t\t[-104.389736, 35.857604],\n\t\t\t\t\t\t[-104.367447, 35.781428],\n\t\t\t\t\t\t[-105.018811, 35.769439],\n\t\t\t\t\t\t[-105.025454, 35.754197],\n\t\t\t\t\t\t[-105.110049, 35.807904],\n\t\t\t\t\t\t[-105.347830, 35.870695],\n\t\t\t\t\t\t[-105.720280, 35.871015],\n\t\t\t\t\t\t[-105.720540, 35.875028],\n\t\t\t\t\t\t[-105.717374, 35.978760],\n\t\t\t\t\t\t[-105.572388, 35.972456],\n\t\t\t\t\t\t[-105.530380, 36.013014]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US35039\",\n\t\t\t\t\"STATE\": \"35\",\n\t\t\t\t\"COUNTY\": \"039\",\n\t\t\t\t\"NAME\": \"Rio Arriba\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 5860.837000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-107.624250, 36.219799],\n\t\t\t\t\t\t[-107.618348, 36.804739],\n\t\t\t\t\t\t[-107.605517, 36.798039],\n\t\t\t\t\t\t[-107.451445, 36.904036],\n\t\t\t\t\t\t[-107.420915, 37.000005],\n\t\t\t\t\t\t[-107.420913, 37.000005],\n\t\t\t\t\t\t[-107.000592, 37.000009],\n\t\t\t\t\t\t[-106.869796, 36.992426],\n\t\t\t\t\t\t[-106.675626, 36.993123],\n\t\t\t\t\t\t[-106.661344, 36.993243],\n\t\t\t\t\t\t[-106.628733, 36.993161],\n\t\t\t\t\t\t[-106.628652, 36.993175],\n\t\t\t\t\t\t[-106.617125, 36.993004],\n\t\t\t\t\t\t[-106.617159, 36.992967],\n\t\t\t\t\t\t[-106.476228, 36.993472],\n\t\t\t\t\t\t[-106.248675, 36.994288],\n\t\t\t\t\t\t[-106.247705, 36.994266],\n\t\t\t\t\t\t[-106.006634, 36.995343],\n\t\t\t\t\t\t[-105.971889, 36.886247],\n\t\t\t\t\t\t[-105.984436, 36.812065],\n\t\t\t\t\t\t[-105.972491, 36.648088],\n\t\t\t\t\t\t[-105.938754, 36.462402],\n\t\t\t\t\t\t[-105.959812, 36.354420],\n\t\t\t\t\t\t[-106.058364, 36.296978],\n\t\t\t\t\t\t[-105.856947, 36.230434],\n\t\t\t\t\t\t[-105.735883, 36.100133],\n\t\t\t\t\t\t[-105.530380, 36.013014],\n\t\t\t\t\t\t[-105.572388, 35.972456],\n\t\t\t\t\t\t[-105.717374, 35.978760],\n\t\t\t\t\t\t[-105.716750, 36.002356],\n\t\t\t\t\t\t[-106.071394, 36.002028],\n\t\t\t\t\t\t[-106.054128, 35.930783],\n\t\t\t\t\t\t[-106.245439, 35.930930],\n\t\t\t\t\t\t[-106.245466, 35.959346],\n\t\t\t\t\t\t[-106.248096, 35.959386],\n\t\t\t\t\t\t[-106.247949, 35.966335],\n\t\t\t\t\t\t[-106.247241, 36.001517],\n\t\t\t\t\t\t[-106.885269, 35.998967],\n\t\t\t\t\t\t[-106.884989, 36.216570],\n\t\t\t\t\t\t[-107.624250, 36.219799]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47143\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"143\",\n\t\t\t\t\"NAME\": \"Rhea\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 315.377000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.723853, 35.752896],\n\t\t\t\t\t\t[-84.781804, 35.673908],\n\t\t\t\t\t\t[-84.794904, 35.552550],\n\t\t\t\t\t\t[-84.873969, 35.550217],\n\t\t\t\t\t\t[-84.907048, 35.447871],\n\t\t\t\t\t\t[-84.968953, 35.466674],\n\t\t\t\t\t\t[-85.016343, 35.409288],\n\t\t\t\t\t\t[-85.135191, 35.458649],\n\t\t\t\t\t\t[-85.107762, 35.571359],\n\t\t\t\t\t\t[-84.916062, 35.761939],\n\t\t\t\t\t\t[-84.781901, 35.825000],\n\t\t\t\t\t\t[-84.723853, 35.752896]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47147\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"147\",\n\t\t\t\t\"NAME\": \"Robertson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 476.287000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.913233, 36.382621],\n\t\t\t\t\t\t[-86.988801, 36.370650],\n\t\t\t\t\t\t[-87.120443, 36.455460],\n\t\t\t\t\t\t[-87.114983, 36.642414],\n\t\t\t\t\t\t[-87.114976, 36.642414],\n\t\t\t\t\t\t[-87.060843, 36.643412],\n\t\t\t\t\t\t[-86.906583, 36.646255],\n\t\t\t\t\t\t[-86.906023, 36.646302],\n\t\t\t\t\t\t[-86.854268, 36.646884],\n\t\t\t\t\t\t[-86.833155, 36.647210],\n\t\t\t\t\t\t[-86.818405, 36.647639],\n\t\t\t\t\t\t[-86.816186, 36.647722],\n\t\t\t\t\t\t[-86.813037, 36.647647],\n\t\t\t\t\t\t[-86.763295, 36.648907],\n\t\t\t\t\t\t[-86.758920, 36.649018],\n\t\t\t\t\t\t[-86.606394, 36.652107],\n\t\t\t\t\t\t[-86.605042, 36.652125],\n\t\t\t\t\t\t[-86.564252, 36.633522],\n\t\t\t\t\t\t[-86.698750, 36.407400],\n\t\t\t\t\t\t[-86.754795, 36.405496],\n\t\t\t\t\t\t[-86.824784, 36.349872],\n\t\t\t\t\t\t[-86.913233, 36.382621]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47149\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"149\",\n\t\t\t\t\"NAME\": \"Rutherford\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 619.364000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.417189, 36.041517],\n\t\t\t\t\t\t[-86.310363, 35.978563],\n\t\t\t\t\t\t[-86.153214, 35.954399],\n\t\t\t\t\t\t[-86.207147, 35.703790],\n\t\t\t\t\t\t[-86.245165, 35.631913],\n\t\t\t\t\t\t[-86.341940, 35.664259],\n\t\t\t\t\t\t[-86.403312, 35.618874],\n\t\t\t\t\t\t[-86.543116, 35.697617],\n\t\t\t\t\t\t[-86.639436, 35.685900],\n\t\t\t\t\t\t[-86.641978, 35.689037],\n\t\t\t\t\t\t[-86.674255, 35.696962],\n\t\t\t\t\t\t[-86.673683, 35.703306],\n\t\t\t\t\t\t[-86.682628, 35.704097],\n\t\t\t\t\t\t[-86.686193, 35.710051],\n\t\t\t\t\t\t[-86.613328, 35.790331],\n\t\t\t\t\t\t[-86.618892, 35.968224],\n\t\t\t\t\t\t[-86.515589, 36.100610],\n\t\t\t\t\t\t[-86.417189, 36.041517]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47155\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"155\",\n\t\t\t\t\"NAME\": \"Sevier\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 592.500000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.662957, 35.569138],\n\t\t\t\t\t\t[-83.662814, 35.690618],\n\t\t\t\t\t\t[-83.779880, 35.860184],\n\t\t\t\t\t\t[-83.784436, 35.868744],\n\t\t\t\t\t\t[-83.784186, 35.879205],\n\t\t\t\t\t\t[-83.794275, 35.887125],\n\t\t\t\t\t\t[-83.654605, 35.971937],\n\t\t\t\t\t\t[-83.673297, 36.038486],\n\t\t\t\t\t\t[-83.523113, 35.963659],\n\t\t\t\t\t\t[-83.310782, 35.895846],\n\t\t\t\t\t\t[-83.255489, 35.714974],\n\t\t\t\t\t\t[-83.250695, 35.709349],\n\t\t\t\t\t\t[-83.254231, 35.695807],\n\t\t\t\t\t\t[-83.297154, 35.657750],\n\t\t\t\t\t\t[-83.366941, 35.638728],\n\t\t\t\t\t\t[-83.445802, 35.611803],\n\t\t\t\t\t\t[-83.479082, 35.583316],\n\t\t\t\t\t\t[-83.478523, 35.579202],\n\t\t\t\t\t\t[-83.480617, 35.576633],\n\t\t\t\t\t\t[-83.485527, 35.568204],\n\t\t\t\t\t\t[-83.498335, 35.562981],\n\t\t\t\t\t\t[-83.640498, 35.566075],\n\t\t\t\t\t\t[-83.662957, 35.569138]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47161\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"161\",\n\t\t\t\t\"NAME\": \"Stewart\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 459.330000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.602597, 36.418979],\n\t\t\t\t\t\t[-87.592358, 36.367663],\n\t\t\t\t\t\t[-87.715494, 36.368240],\n\t\t\t\t\t\t[-87.821816, 36.328724],\n\t\t\t\t\t\t[-87.980740, 36.353307],\n\t\t\t\t\t\t[-87.982743, 36.356083],\n\t\t\t\t\t\t[-87.988562, 36.359746],\n\t\t\t\t\t\t[-87.990920, 36.360133],\n\t\t\t\t\t\t[-88.058480, 36.439224],\n\t\t\t\t\t\t[-88.053292, 36.497130],\n\t\t\t\t\t\t[-88.053205, 36.497129],\n\t\t\t\t\t\t[-88.039481, 36.510408],\n\t\t\t\t\t\t[-88.037822, 36.513850],\n\t\t\t\t\t\t[-88.032489, 36.540662],\n\t\t\t\t\t\t[-88.035625, 36.561736],\n\t\t\t\t\t\t[-88.045127, 36.602939],\n\t\t\t\t\t\t[-88.055604, 36.635710],\n\t\t\t\t\t\t[-88.068208, 36.659747],\n\t\t\t\t\t\t[-88.070532, 36.678118],\n\t\t\t\t\t\t[-88.011792, 36.677025],\n\t\t\t\t\t\t[-87.849567, 36.663701],\n\t\t\t\t\t\t[-87.853204, 36.633247],\n\t\t\t\t\t\t[-87.694186, 36.636838],\n\t\t\t\t\t\t[-87.641150, 36.638036],\n\t\t\t\t\t\t[-87.641146, 36.638036],\n\t\t\t\t\t\t[-87.603420, 36.425900],\n\t\t\t\t\t\t[-87.602597, 36.418979]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47167\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"167\",\n\t\t\t\t\"NAME\": \"Tipton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 458.366000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-89.957347, 35.528683],\n\t\t\t\t\t\t\t[-90.054322, 35.389277],\n\t\t\t\t\t\t\t[-90.061788, 35.386184],\n\t\t\t\t\t\t\t[-90.074992, 35.384152],\n\t\t\t\t\t\t\t[-90.089612, 35.379842],\n\t\t\t\t\t\t\t[-90.093589, 35.393333],\n\t\t\t\t\t\t\t[-90.135510, 35.376668],\n\t\t\t\t\t\t\t[-90.143633, 35.374745],\n\t\t\t\t\t\t\t[-90.166246, 35.374745],\n\t\t\t\t\t\t\t[-90.178341, 35.382092],\n\t\t\t\t\t\t\t[-90.179265, 35.385194],\n\t\t\t\t\t\t\t[-90.169002, 35.421853],\n\t\t\t\t\t\t\t[-90.152386, 35.436789],\n\t\t\t\t\t\t\t[-90.107723, 35.476935],\n\t\t\t\t\t\t\t[-90.074420, 35.472518],\n\t\t\t\t\t\t\t[-90.072154, 35.470752],\n\t\t\t\t\t\t\t[-90.067798, 35.466224],\n\t\t\t\t\t\t\t[-90.059068, 35.457889],\n\t\t\t\t\t\t\t[-90.047680, 35.459255],\n\t\t\t\t\t\t\t[-90.034014, 35.468821],\n\t\t\t\t\t\t\t[-90.034976, 35.480705],\n\t\t\t\t\t\t\t[-90.039744, 35.548041],\n\t\t\t\t\t\t\t[-90.032938, 35.553440],\n\t\t\t\t\t\t\t[-90.028620, 35.555249],\n\t\t\t\t\t\t\t[-90.017312, 35.555996],\n\t\t\t\t\t\t\t[-89.957347, 35.528683]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-89.632776, 35.375824],\n\t\t\t\t\t\t\t[-89.702480, 35.408584],\n\t\t\t\t\t\t\t[-89.889317, 35.390906],\n\t\t\t\t\t\t\t[-90.041563, 35.396620],\n\t\t\t\t\t\t\t[-89.933572, 35.533299],\n\t\t\t\t\t\t\t[-89.909797, 35.537914],\n\t\t\t\t\t\t\t[-89.758116, 35.650361],\n\t\t\t\t\t\t\t[-89.651056, 35.648009],\n\t\t\t\t\t\t\t[-89.502118, 35.580621],\n\t\t\t\t\t\t\t[-89.469862, 35.546566],\n\t\t\t\t\t\t\t[-89.474171, 35.403039],\n\t\t\t\t\t\t\t[-89.632776, 35.375824]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47175\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"175\",\n\t\t\t\t\"NAME\": \"Van Buren\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 273.415000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.423804, 35.567422],\n\t\t\t\t\t\t[-85.557535, 35.532977],\n\t\t\t\t\t\t[-85.594632, 35.617898],\n\t\t\t\t\t\t[-85.602876, 35.794996],\n\t\t\t\t\t\t[-85.474213, 35.822656],\n\t\t\t\t\t\t[-85.269359, 35.793388],\n\t\t\t\t\t\t[-85.273288, 35.787948],\n\t\t\t\t\t\t[-85.260380, 35.782580],\n\t\t\t\t\t\t[-85.247784, 35.786660],\n\t\t\t\t\t\t[-85.254062, 35.765611],\n\t\t\t\t\t\t[-85.265387, 35.721237],\n\t\t\t\t\t\t[-85.423804, 35.567422]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47177\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"177\",\n\t\t\t\t\"NAME\": \"Warren\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 432.680000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.557535, 35.532977],\n\t\t\t\t\t\t[-85.607326, 35.531651],\n\t\t\t\t\t\t[-85.876962, 35.524095],\n\t\t\t\t\t\t[-85.985062, 35.660108],\n\t\t\t\t\t\t[-85.984891, 35.734553],\n\t\t\t\t\t\t[-85.885156, 35.839658],\n\t\t\t\t\t\t[-85.682095, 35.831254],\n\t\t\t\t\t\t[-85.682602, 35.827246],\n\t\t\t\t\t\t[-85.671427, 35.820708],\n\t\t\t\t\t\t[-85.653072, 35.816431],\n\t\t\t\t\t\t[-85.641655, 35.816717],\n\t\t\t\t\t\t[-85.634845, 35.808616],\n\t\t\t\t\t\t[-85.622195, 35.801810],\n\t\t\t\t\t\t[-85.607594, 35.803246],\n\t\t\t\t\t\t[-85.602876, 35.794996],\n\t\t\t\t\t\t[-85.594632, 35.617898],\n\t\t\t\t\t\t[-85.557535, 35.532977]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US45055\",\n\t\t\t\t\"STATE\": \"45\",\n\t\t\t\t\"COUNTY\": \"055\",\n\t\t\t\t\"NAME\": \"Kershaw\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 726.562000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.479857, 34.168696],\n\t\t\t\t\t\t[-80.578081, 34.101549],\n\t\t\t\t\t\t[-80.604403, 34.101671],\n\t\t\t\t\t\t[-80.618542, 34.109176],\n\t\t\t\t\t\t[-80.616186, 34.099605],\n\t\t\t\t\t\t[-80.635594, 34.097666],\n\t\t\t\t\t\t[-80.639534, 34.095633],\n\t\t\t\t\t\t[-80.646696, 34.093990],\n\t\t\t\t\t\t[-80.658325, 34.088774],\n\t\t\t\t\t\t[-80.658978, 34.085743],\n\t\t\t\t\t\t[-80.672970, 34.083732],\n\t\t\t\t\t\t[-80.676421, 34.084610],\n\t\t\t\t\t\t[-80.683662, 34.081603],\n\t\t\t\t\t\t[-80.692965, 34.081280],\n\t\t\t\t\t\t[-80.719318, 34.068972],\n\t\t\t\t\t\t[-80.869733, 34.182389],\n\t\t\t\t\t\t[-80.825921, 34.268760],\n\t\t\t\t\t\t[-80.769926, 34.377111],\n\t\t\t\t\t\t[-80.879227, 34.457776],\n\t\t\t\t\t\t[-80.743345, 34.539916],\n\t\t\t\t\t\t[-80.739966, 34.479957],\n\t\t\t\t\t\t[-80.523945, 34.509752],\n\t\t\t\t\t\t[-80.550552, 34.560116],\n\t\t\t\t\t\t[-80.408373, 34.614765],\n\t\t\t\t\t\t[-80.328553, 34.501349],\n\t\t\t\t\t\t[-80.288596, 34.366207],\n\t\t\t\t\t\t[-80.286880, 34.365305],\n\t\t\t\t\t\t[-80.286936, 34.364572],\n\t\t\t\t\t\t[-80.288692, 34.364139],\n\t\t\t\t\t\t[-80.421654, 34.294301],\n\t\t\t\t\t\t[-80.479857, 34.168696]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US45061\",\n\t\t\t\t\"STATE\": \"45\",\n\t\t\t\t\"COUNTY\": \"061\",\n\t\t\t\t\"NAME\": \"Lee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 410.184000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.269060, 34.035100],\n\t\t\t\t\t\t[-80.278461, 34.036722],\n\t\t\t\t\t\t[-80.278827, 34.036706],\n\t\t\t\t\t\t[-80.279339, 34.036829],\n\t\t\t\t\t\t[-80.321721, 34.080356],\n\t\t\t\t\t\t[-80.481318, 34.112622],\n\t\t\t\t\t\t[-80.479857, 34.168696],\n\t\t\t\t\t\t[-80.421654, 34.294301],\n\t\t\t\t\t\t[-80.288692, 34.364139],\n\t\t\t\t\t\t[-80.177225, 34.366203],\n\t\t\t\t\t\t[-80.112727, 34.197018],\n\t\t\t\t\t\t[-80.131441, 34.128666],\n\t\t\t\t\t\t[-80.072808, 34.086013],\n\t\t\t\t\t\t[-80.000594, 34.047877],\n\t\t\t\t\t\t[-80.180371, 33.952002],\n\t\t\t\t\t\t[-80.269060, 34.035100]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US45065\",\n\t\t\t\t\"STATE\": \"45\",\n\t\t\t\t\"COUNTY\": \"065\",\n\t\t\t\t\"NAME\": \"McCormick\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 359.130000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.046974, 33.953210],\n\t\t\t\t\t\t[-82.155700, 33.929290],\n\t\t\t\t\t\t[-82.113728, 33.829880],\n\t\t\t\t\t\t[-82.172379, 33.765711],\n\t\t\t\t\t\t[-82.166027, 33.690316],\n\t\t\t\t\t\t[-82.095527, 33.633869],\n\t\t\t\t\t\t[-82.116630, 33.589723],\n\t\t\t\t\t\t[-82.124841, 33.591274],\n\t\t\t\t\t\t[-82.129080, 33.589925],\n\t\t\t\t\t\t[-82.135046, 33.591044],\n\t\t\t\t\t\t[-82.179854, 33.615945],\n\t\t\t\t\t\t[-82.196583, 33.630582],\n\t\t\t\t\t\t[-82.218649, 33.686299],\n\t\t\t\t\t\t[-82.247472, 33.752591],\n\t\t\t\t\t\t[-82.301457, 33.801864],\n\t\t\t\t\t\t[-82.324480, 33.820033],\n\t\t\t\t\t\t[-82.403881, 33.865477],\n\t\t\t\t\t\t[-82.408354, 33.866320],\n\t\t\t\t\t\t[-82.422803, 33.863754],\n\t\t\t\t\t\t[-82.429164, 33.865844],\n\t\t\t\t\t\t[-82.564483, 33.955744],\n\t\t\t\t\t\t[-82.564582, 33.955810],\n\t\t\t\t\t\t[-82.597079, 34.012390],\n\t\t\t\t\t\t[-82.530567, 34.071925],\n\t\t\t\t\t\t[-82.326947, 34.064120],\n\t\t\t\t\t\t[-82.306243, 33.971584],\n\t\t\t\t\t\t[-82.245055, 34.018781],\n\t\t\t\t\t\t[-82.200286, 33.978597],\n\t\t\t\t\t\t[-82.045130, 33.983396],\n\t\t\t\t\t\t[-82.046974, 33.953210]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US45071\",\n\t\t\t\t\"STATE\": \"45\",\n\t\t\t\t\"COUNTY\": \"071\",\n\t\t\t\t\"NAME\": \"Newberry\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 630.037000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.338961, 34.197587],\n\t\t\t\t\t\t[-81.437172, 34.129963],\n\t\t\t\t\t\t[-81.388564, 34.080227],\n\t\t\t\t\t\t[-81.471972, 34.076552],\n\t\t\t\t\t\t[-81.538899, 34.081744],\n\t\t\t\t\t\t[-81.731614, 34.187613],\n\t\t\t\t\t\t[-81.860640, 34.179330],\n\t\t\t\t\t\t[-81.870084, 34.135357],\n\t\t\t\t\t\t[-81.945019, 34.203148],\n\t\t\t\t\t\t[-81.895713, 34.299880],\n\t\t\t\t\t\t[-81.782627, 34.365089],\n\t\t\t\t\t\t[-81.643552, 34.533652],\n\t\t\t\t\t\t[-81.540430, 34.445027],\n\t\t\t\t\t\t[-81.423241, 34.494379],\n\t\t\t\t\t\t[-81.316911, 34.239458],\n\t\t\t\t\t\t[-81.345328, 34.205030],\n\t\t\t\t\t\t[-81.338961, 34.197587]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US45073\",\n\t\t\t\t\"STATE\": \"45\",\n\t\t\t\t\"COUNTY\": \"073\",\n\t\t\t\t\"NAME\": \"Oconee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 626.334000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.897499, 35.056021],\n\t\t\t\t\t\t[-82.915785, 34.971836],\n\t\t\t\t\t\t[-82.900144, 34.742440],\n\t\t\t\t\t\t[-82.840253, 34.623212],\n\t\t\t\t\t\t[-82.992215, 34.479198],\n\t\t\t\t\t\t[-82.992671, 34.479072],\n\t\t\t\t\t\t[-82.995284, 34.474549],\n\t\t\t\t\t\t[-83.006848, 34.474376],\n\t\t\t\t\t\t[-83.034712, 34.483495],\n\t\t\t\t\t\t[-83.052161, 34.493062],\n\t\t\t\t\t\t[-83.072746, 34.504349],\n\t\t\t\t\t\t[-83.087189, 34.515939],\n\t\t\t\t\t\t[-83.106874, 34.534053],\n\t\t\t\t\t\t[-83.170278, 34.592398],\n\t\t\t\t\t\t[-83.170978, 34.598798],\n\t\t\t\t\t\t[-83.167523, 34.600424],\n\t\t\t\t\t\t[-83.240676, 34.624307],\n\t\t\t\t\t\t[-83.240669, 34.624507],\n\t\t\t\t\t\t[-83.291683, 34.653396],\n\t\t\t\t\t\t[-83.337867, 34.687681],\n\t\t\t\t\t\t[-83.338194, 34.687924],\n\t\t\t\t\t\t[-83.351293, 34.701703],\n\t\t\t\t\t\t[-83.350976, 34.713243],\n\t\t\t\t\t\t[-83.351392, 34.714456],\n\t\t\t\t\t\t[-83.352485, 34.715993],\n\t\t\t\t\t\t[-83.352422, 34.716111],\n\t\t\t\t\t\t[-83.339129, 34.741266],\n\t\t\t\t\t\t[-83.324060, 34.788691],\n\t\t\t\t\t\t[-83.283151, 34.821328],\n\t\t\t\t\t\t[-83.267293, 34.832748],\n\t\t\t\t\t\t[-83.242962, 34.877749],\n\t\t\t\t\t\t[-83.143261, 34.924756],\n\t\t\t\t\t\t[-83.108535, 35.000771],\n\t\t\t\t\t\t[-83.008447, 35.026974],\n\t\t\t\t\t\t[-82.897499, 35.056021]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26041\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"041\",\n\t\t\t\t\"NAME\": \"Delta\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1171.096000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.459866, 45.758042],\n\t\t\t\t\t\t[-86.466039, 45.759741],\n\t\t\t\t\t\t[-86.479050, 45.757416],\n\t\t\t\t\t\t[-86.486028, 45.746608],\n\t\t\t\t\t\t[-86.496251, 45.749255],\n\t\t\t\t\t\t[-86.504216, 45.754230],\n\t\t\t\t\t\t[-86.514570, 45.752337],\n\t\t\t\t\t\t[-86.518281, 45.747688],\n\t\t\t\t\t\t[-86.523197, 45.736498],\n\t\t\t\t\t\t[-86.525166, 45.720797],\n\t\t\t\t\t\t[-86.533280, 45.710849],\n\t\t\t\t\t\t[-86.537258, 45.708361],\n\t\t\t\t\t\t[-86.541430, 45.708110],\n\t\t\t\t\t\t[-86.570627, 45.716412],\n\t\t\t\t\t\t[-86.580936, 45.711920],\n\t\t\t\t\t\t[-86.585847, 45.704922],\n\t\t\t\t\t\t[-86.584771, 45.682007],\n\t\t\t\t\t\t[-86.587528, 45.666456],\n\t\t\t\t\t\t[-86.593613, 45.665625],\n\t\t\t\t\t\t[-86.611306, 45.669733],\n\t\t\t\t\t\t[-86.620430, 45.667098],\n\t\t\t\t\t\t[-86.625132, 45.663819],\n\t\t\t\t\t\t[-86.627938, 45.659293],\n\t\t\t\t\t\t[-86.616972, 45.620581],\n\t\t\t\t\t\t[-86.616893, 45.606796],\n\t\t\t\t\t\t[-86.623870, 45.613262],\n\t\t\t\t\t\t[-86.633224, 45.618249],\n\t\t\t\t\t\t[-86.648439, 45.615992],\n\t\t\t\t\t\t[-86.666127, 45.621689],\n\t\t\t\t\t\t[-86.687208, 45.634253],\n\t\t\t\t\t\t[-86.688772, 45.639969],\n\t\t\t\t\t\t[-86.695275, 45.648175],\n\t\t\t\t\t\t[-86.708038, 45.649202],\n\t\t\t\t\t\t[-86.717828, 45.668106],\n\t\t\t\t\t\t[-86.718191, 45.677320],\n\t\t\t\t\t\t[-86.715781, 45.683949],\n\t\t\t\t\t\t[-86.705184, 45.690901],\n\t\t\t\t\t\t[-86.689102, 45.687862],\n\t\t\t\t\t\t[-86.676184, 45.691862],\n\t\t\t\t\t\t[-86.665677, 45.702217],\n\t\t\t\t\t\t[-86.665511, 45.709030],\n\t\t\t\t\t\t[-86.669263, 45.710860],\n\t\t\t\t\t\t[-86.671480, 45.720530],\n\t\t\t\t\t\t[-86.662762, 45.728964],\n\t\t\t\t\t\t[-86.647319, 45.732618],\n\t\t\t\t\t\t[-86.633138, 45.747654],\n\t\t\t\t\t\t[-86.634902, 45.763536],\n\t\t\t\t\t\t[-86.631018, 45.782019],\n\t\t\t\t\t\t[-86.617336, 45.783538],\n\t\t\t\t\t\t[-86.612137, 45.779356],\n\t\t\t\t\t\t[-86.597661, 45.775385],\n\t\t\t\t\t\t[-86.583391, 45.778242],\n\t\t\t\t\t\t[-86.576869, 45.788502],\n\t\t\t\t\t\t[-86.581071, 45.791802],\n\t\t\t\t\t\t[-86.581759, 45.794797],\n\t\t\t\t\t\t[-86.576858, 45.801473],\n\t\t\t\t\t\t[-86.571172, 45.805452],\n\t\t\t\t\t\t[-86.563392, 45.804469],\n\t\t\t\t\t\t[-86.557215, 45.808172],\n\t\t\t\t\t\t[-86.555547, 45.813499],\n\t\t\t\t\t\t[-86.559044, 45.822323],\n\t\t\t\t\t\t[-86.555186, 45.831696],\n\t\t\t\t\t\t[-86.549723, 45.836039],\n\t\t\t\t\t\t[-86.545602, 45.836495],\n\t\t\t\t\t\t[-86.538831, 45.840083],\n\t\t\t\t\t\t[-86.529208, 45.853043],\n\t\t\t\t\t\t[-86.528224, 45.856974],\n\t\t\t\t\t\t[-86.529573, 45.874974],\n\t\t\t\t\t\t[-86.532989, 45.882665],\n\t\t\t\t\t\t[-86.541464, 45.890234],\n\t\t\t\t\t\t[-86.553608, 45.896476],\n\t\t\t\t\t\t[-86.567719, 45.900500],\n\t\t\t\t\t\t[-86.583304, 45.898784],\n\t\t\t\t\t\t[-86.593184, 45.885110],\n\t\t\t\t\t\t[-86.603293, 45.876626],\n\t\t\t\t\t\t[-86.613536, 45.875982],\n\t\t\t\t\t\t[-86.625736, 45.868295],\n\t\t\t\t\t\t[-86.633168, 45.860068],\n\t\t\t\t\t\t[-86.632478, 45.843309],\n\t\t\t\t\t\t[-86.645998, 45.833888],\n\t\t\t\t\t\t[-86.721113, 45.845431],\n\t\t\t\t\t\t[-86.728520, 45.848759],\n\t\t\t\t\t\t[-86.742466, 45.864719],\n\t\t\t\t\t\t[-86.749638, 45.867796],\n\t\t\t\t\t\t[-86.758449, 45.867274],\n\t\t\t\t\t\t[-86.782080, 45.860195],\n\t\t\t\t\t\t[-86.784177, 45.854641],\n\t\t\t\t\t\t[-86.782259, 45.829950],\n\t\t\t\t\t\t[-86.777225, 45.827183],\n\t\t\t\t\t\t[-86.774612, 45.821696],\n\t\t\t\t\t\t[-86.773279, 45.811385],\n\t\t\t\t\t\t[-86.785722, 45.794517],\n\t\t\t\t\t\t[-86.801476, 45.780027],\n\t\t\t\t\t\t[-86.821523, 45.770356],\n\t\t\t\t\t\t[-86.823743, 45.765486],\n\t\t\t\t\t\t[-86.820868, 45.760776],\n\t\t\t\t\t\t[-86.821814, 45.757164],\n\t\t\t\t\t\t[-86.838658, 45.741831],\n\t\t\t\t\t\t[-86.841818, 45.729051],\n\t\t\t\t\t\t[-86.838746, 45.722307],\n\t\t\t\t\t\t[-86.870392, 45.710087],\n\t\t\t\t\t\t[-86.876904, 45.711891],\n\t\t\t\t\t\t[-86.895342, 45.711464],\n\t\t\t\t\t\t[-86.904089, 45.709546],\n\t\t\t\t\t\t[-86.921060, 45.697868],\n\t\t\t\t\t\t[-86.944158, 45.695833],\n\t\t\t\t\t\t[-86.964275, 45.672761],\n\t\t\t\t\t\t[-86.966885, 45.675001],\n\t\t\t\t\t\t[-86.967315, 45.684923],\n\t\t\t\t\t\t[-86.969765, 45.691895],\n\t\t\t\t\t\t[-86.981349, 45.696463],\n\t\t\t\t\t\t[-86.984588, 45.705812],\n\t\t\t\t\t\t[-86.982413, 45.719873],\n\t\t\t\t\t\t[-86.977655, 45.728768],\n\t\t\t\t\t\t[-86.975224, 45.753130],\n\t\t\t\t\t\t[-86.981341, 45.766160],\n\t\t\t\t\t\t[-86.981624, 45.792221],\n\t\t\t\t\t\t[-86.988438, 45.810621],\n\t\t\t\t\t\t[-87.005080, 45.831718],\n\t\t\t\t\t\t[-87.006095, 45.832244],\n\t\t\t\t\t\t[-87.006225, 45.832312],\n\t\t\t\t\t\t[-87.018902, 45.838886],\n\t\t\t\t\t\t[-87.031435, 45.837238],\n\t\t\t\t\t\t[-87.039842, 45.834245],\n\t\t\t\t\t\t[-87.050104, 45.823844],\n\t\t\t\t\t\t[-87.052043, 45.821879],\n\t\t\t\t\t\t[-87.057439, 45.812483],\n\t\t\t\t\t\t[-87.057863, 45.809170],\n\t\t\t\t\t\t[-87.057882, 45.809021],\n\t\t\t\t\t\t[-87.058207, 45.806483],\n\t\t\t\t\t\t[-87.058277, 45.805940],\n\t\t\t\t\t\t[-87.058489, 45.804285],\n\t\t\t\t\t\t[-87.058844, 45.801510],\n\t\t\t\t\t\t[-87.058682, 45.796447],\n\t\t\t\t\t\t[-87.058628, 45.794772],\n\t\t\t\t\t\t[-87.058413, 45.788071],\n\t\t\t\t\t\t[-87.058127, 45.779152],\n\t\t\t\t\t\t[-87.058601, 45.778126],\n\t\t\t\t\t\t[-87.063975, 45.766510],\n\t\t\t\t\t\t[-87.064302, 45.758828],\n\t\t\t\t\t\t[-87.062406, 45.753296],\n\t\t\t\t\t\t[-87.055550, 45.751535],\n\t\t\t\t\t\t[-87.052908, 45.747983],\n\t\t\t\t\t\t[-87.057444, 45.736822],\n\t\t\t\t\t\t[-87.061721, 45.732821],\n\t\t\t\t\t\t[-87.070442, 45.718779],\n\t\t\t\t\t\t[-87.059953, 45.708893],\n\t\t\t\t\t\t[-87.059533, 45.708497],\n\t\t\t\t\t\t[-87.061339, 45.708122],\n\t\t\t\t\t\t[-87.073932, 45.705508],\n\t\t\t\t\t\t[-87.074813, 45.705325],\n\t\t\t\t\t\t[-87.074873, 45.705312],\n\t\t\t\t\t\t[-87.093365, 45.701473],\n\t\t\t\t\t\t[-87.095455, 45.701039],\n\t\t\t\t\t\t[-87.099401, 45.698614],\n\t\t\t\t\t\t[-87.099411, 45.698514],\n\t\t\t\t\t\t[-87.099725, 45.695231],\n\t\t\t\t\t\t[-87.100265, 45.694808],\n\t\t\t\t\t\t[-87.111638, 45.685905],\n\t\t\t\t\t\t[-87.112524, 45.685696],\n\t\t\t\t\t\t[-87.128570, 45.681909],\n\t\t\t\t\t\t[-87.129412, 45.681710],\n\t\t\t\t\t\t[-87.146713, 45.673662],\n\t\t\t\t\t\t[-87.150330, 45.671980],\n\t\t\t\t\t\t[-87.161593, 45.666741],\n\t\t\t\t\t\t[-87.172241, 45.661788],\n\t\t\t\t\t\t[-87.173493, 45.660490],\n\t\t\t\t\t\t[-87.191496, 45.641827],\n\t\t\t\t\t\t[-87.196852, 45.636275],\n\t\t\t\t\t\t[-87.211220, 45.616468],\n\t\t\t\t\t\t[-87.215616, 45.610408],\n\t\t\t\t\t\t[-87.218989, 45.605760],\n\t\t\t\t\t\t[-87.223647, 45.599338],\n\t\t\t\t\t\t[-87.232472, 45.590870],\n\t\t\t\t\t\t[-87.234612, 45.588817],\n\t\t\t\t\t\t[-87.250122, 45.569059],\n\t\t\t\t\t\t[-87.260709, 45.555573],\n\t\t\t\t\t\t[-87.261979, 45.553954],\n\t\t\t\t\t\t[-87.263488, 45.552032],\n\t\t\t\t\t\t[-87.263763, 45.551482],\n\t\t\t\t\t\t[-87.264446, 45.550118],\n\t\t\t\t\t\t[-87.327472, 45.550507],\n\t\t\t\t\t\t[-87.325725, 45.898623],\n\t\t\t\t\t\t[-87.367843, 45.985313],\n\t\t\t\t\t\t[-87.242885, 45.985087],\n\t\t\t\t\t\t[-87.241555, 46.158901],\n\t\t\t\t\t\t[-87.116080, 46.158945],\n\t\t\t\t\t\t[-86.615601, 46.158691],\n\t\t\t\t\t\t[-86.490136, 46.158085],\n\t\t\t\t\t\t[-86.490250, 45.896329],\n\t\t\t\t\t\t[-86.459866, 45.758042]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26043\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"043\",\n\t\t\t\t\"NAME\": \"Dickinson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 761.400000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.828827, 45.722760],\n\t\t\t\t\t\t[-87.868111, 45.749477],\n\t\t\t\t\t\t[-87.991447, 45.795393],\n\t\t\t\t\t\t[-88.039729, 45.789626],\n\t\t\t\t\t\t[-88.050634, 45.780972],\n\t\t\t\t\t\t[-88.058256, 45.780719],\n\t\t\t\t\t\t[-88.072091, 45.780261],\n\t\t\t\t\t\t[-88.094047, 45.785658],\n\t\t\t\t\t\t[-88.130434, 45.810020],\n\t\t\t\t\t\t[-88.136110, 45.819029],\n\t\t\t\t\t\t[-88.133640, 45.823128],\n\t\t\t\t\t\t[-88.114267, 45.837891],\n\t\t\t\t\t\t[-88.106622, 45.841072],\n\t\t\t\t\t\t[-88.088825, 45.855860],\n\t\t\t\t\t\t[-88.073134, 45.871952],\n\t\t\t\t\t\t[-88.073944, 45.875593],\n\t\t\t\t\t\t[-88.102603, 45.909888],\n\t\t\t\t\t\t[-88.118516, 45.918562],\n\t\t\t\t\t\t[-88.116845, 45.921627],\n\t\t\t\t\t\t[-88.117407, 46.246618],\n\t\t\t\t\t\t[-87.615914, 46.246794],\n\t\t\t\t\t\t[-87.617039, 45.986006],\n\t\t\t\t\t\t[-87.617613, 45.898842],\n\t\t\t\t\t\t[-87.696946, 45.898842],\n\t\t\t\t\t\t[-87.697159, 45.722987],\n\t\t\t\t\t\t[-87.828827, 45.722760]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26047\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"047\",\n\t\t\t\t\"NAME\": \"Emmet\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 467.494000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.095985, 45.367001],\n\t\t\t\t\t\t[-85.073617, 45.365420],\n\t\t\t\t\t\t[-85.066969, 45.364951],\n\t\t\t\t\t\t[-85.064250, 45.364758],\n\t\t\t\t\t\t[-85.063459, 45.364703],\n\t\t\t\t\t\t[-85.060905, 45.364522],\n\t\t\t\t\t\t[-85.054805, 45.364091],\n\t\t\t\t\t\t[-85.046635, 45.362287],\n\t\t\t\t\t\t[-85.045526, 45.362041],\n\t\t\t\t\t\t[-85.043721, 45.361643],\n\t\t\t\t\t\t[-85.043446, 45.361582],\n\t\t\t\t\t\t[-85.043101, 45.361506],\n\t\t\t\t\t\t[-85.032813, 45.361251],\n\t\t\t\t\t\t[-85.022234, 45.366701],\n\t\t\t\t\t\t[-84.998603, 45.370173],\n\t\t\t\t\t\t[-84.975357, 45.373587],\n\t\t\t\t\t\t[-84.959119, 45.375973],\n\t\t\t\t\t\t[-84.915850, 45.393115],\n\t\t\t\t\t\t[-84.912537, 45.402828],\n\t\t\t\t\t\t[-84.912956, 45.409776],\n\t\t\t\t\t\t[-84.916165, 45.417639],\n\t\t\t\t\t\t[-84.922006, 45.421914],\n\t\t\t\t\t\t[-84.976370, 45.428801],\n\t\t\t\t\t\t[-84.976623, 45.428833],\n\t\t\t\t\t\t[-84.978969, 45.429131],\n\t\t\t\t\t\t[-84.980467, 45.429320],\n\t\t\t\t\t\t[-84.980953, 45.429382],\n\t\t\t\t\t\t[-84.981192, 45.429336],\n\t\t\t\t\t\t[-84.990041, 45.427618],\n\t\t\t\t\t\t[-84.990785, 45.425264],\n\t\t\t\t\t\t[-84.989224, 45.424253],\n\t\t\t\t\t\t[-84.987416, 45.423082],\n\t\t\t\t\t\t[-84.987143, 45.422906],\n\t\t\t\t\t\t[-84.984928, 45.421471],\n\t\t\t\t\t\t[-84.983836, 45.420764],\n\t\t\t\t\t\t[-84.978373, 45.420171],\n\t\t\t\t\t\t[-84.977116, 45.420035],\n\t\t\t\t\t\t[-84.978608, 45.418663],\n\t\t\t\t\t\t[-84.994191, 45.423173],\n\t\t\t\t\t\t[-85.034856, 45.434941],\n\t\t\t\t\t\t[-85.037741, 45.435776],\n\t\t\t\t\t\t[-85.040272, 45.436509],\n\t\t\t\t\t\t[-85.040936, 45.436701],\n\t\t\t\t\t\t[-85.046943, 45.441429],\n\t\t\t\t\t\t[-85.050234, 45.444019],\n\t\t\t\t\t\t[-85.050747, 45.444423],\n\t\t\t\t\t\t[-85.052994, 45.446191],\n\t\t\t\t\t\t[-85.069573, 45.459239],\n\t\t\t\t\t\t[-85.070485, 45.460096],\n\t\t\t\t\t\t[-85.087756, 45.476335],\n\t\t\t\t\t\t[-85.088386, 45.476928],\n\t\t\t\t\t\t[-85.097142, 45.495684],\n\t\t\t\t\t\t[-85.103943, 45.510252],\n\t\t\t\t\t\t[-85.109252, 45.521626],\n\t\t\t\t\t\t[-85.109353, 45.521915],\n\t\t\t\t\t\t[-85.110884, 45.526285],\n\t\t\t\t\t\t[-85.110955, 45.526488],\n\t\t\t\t\t\t[-85.115479, 45.539406],\n\t\t\t\t\t\t[-85.115785, 45.541533],\n\t\t\t\t\t\t[-85.115870, 45.542125],\n\t\t\t\t\t\t[-85.117406, 45.552811],\n\t\t\t\t\t\t[-85.117656, 45.554550],\n\t\t\t\t\t\t[-85.119494, 45.567338],\n\t\t\t\t\t\t[-85.119675, 45.568597],\n\t\t\t\t\t\t[-85.119721, 45.568915],\n\t\t\t\t\t\t[-85.119737, 45.569026],\n\t\t\t\t\t\t[-85.119026, 45.573002],\n\t\t\t\t\t\t[-85.118825, 45.574123],\n\t\t\t\t\t\t[-85.118637, 45.575175],\n\t\t\t\t\t\t[-85.118353, 45.575625],\n\t\t\t\t\t\t[-85.117812, 45.576482],\n\t\t\t\t\t\t[-85.112430, 45.585004],\n\t\t\t\t\t\t[-85.112406, 45.585042],\n\t\t\t\t\t\t[-85.111909, 45.585829],\n\t\t\t\t\t\t[-85.111737, 45.585962],\n\t\t\t\t\t\t[-85.107744, 45.589067],\n\t\t\t\t\t\t[-85.106909, 45.589716],\n\t\t\t\t\t\t[-85.106246, 45.590231],\n\t\t\t\t\t\t[-85.105458, 45.590844],\n\t\t\t\t\t\t[-85.103521, 45.592350],\n\t\t\t\t\t\t[-85.103077, 45.592695],\n\t\t\t\t\t\t[-85.102917, 45.592820],\n\t\t\t\t\t\t[-85.102221, 45.593360],\n\t\t\t\t\t\t[-85.101977, 45.593550],\n\t\t\t\t\t\t[-85.096798, 45.597576],\n\t\t\t\t\t\t[-85.095531, 45.598562],\n\t\t\t\t\t\t[-85.093525, 45.600121],\n\t\t\t\t\t\t[-85.079528, 45.617083],\n\t\t\t\t\t\t[-85.079370, 45.617355],\n\t\t\t\t\t\t[-85.076284, 45.622660],\n\t\t\t\t\t\t[-85.075686, 45.623688],\n\t\t\t\t\t\t[-85.075678, 45.623742],\n\t\t\t\t\t\t[-85.075461, 45.625295],\n\t\t\t\t\t\t[-85.074910, 45.629242],\n\t\t\t\t\t\t[-85.074243, 45.629752],\n\t\t\t\t\t\t[-85.071381, 45.631940],\n\t\t\t\t\t\t[-85.065716, 45.636272],\n\t\t\t\t\t\t[-85.063974, 45.637604],\n\t\t\t\t\t\t[-85.061488, 45.639505],\n\t\t\t\t\t\t[-85.061006, 45.639631],\n\t\t\t\t\t\t[-85.044872, 45.643847],\n\t\t\t\t\t\t[-85.041037, 45.644849],\n\t\t\t\t\t\t[-85.035590, 45.646273],\n\t\t\t\t\t\t[-85.020107, 45.650319],\n\t\t\t\t\t\t[-85.019374, 45.650510],\n\t\t\t\t\t\t[-85.015341, 45.651564],\n\t\t\t\t\t\t[-85.014352, 45.652134],\n\t\t\t\t\t\t[-85.013218, 45.652789],\n\t\t\t\t\t\t[-85.007026, 45.656360],\n\t\t\t\t\t\t[-85.005645, 45.657504],\n\t\t\t\t\t\t[-85.002344, 45.660239],\n\t\t\t\t\t\t[-85.001154, 45.661225],\n\t\t\t\t\t\t[-84.997431, 45.667762],\n\t\t\t\t\t\t[-84.996336, 45.669685],\n\t\t\t\t\t\t[-84.996067, 45.669861],\n\t\t\t\t\t\t[-84.974237, 45.684178],\n\t\t\t\t\t\t[-84.970950, 45.686334],\n\t\t\t\t\t\t[-84.970213, 45.686984],\n\t\t\t\t\t\t[-84.945650, 45.708621],\n\t\t\t\t\t\t[-84.943756, 45.710290],\n\t\t\t\t\t\t[-84.942636, 45.714292],\n\t\t\t\t\t\t[-84.941073, 45.719879],\n\t\t\t\t\t\t[-84.940526, 45.721832],\n\t\t\t\t\t\t[-84.942098, 45.728349],\n\t\t\t\t\t\t[-84.942125, 45.728460],\n\t\t\t\t\t\t[-84.942543, 45.728865],\n\t\t\t\t\t\t[-84.943982, 45.730257],\n\t\t\t\t\t\t[-84.945958, 45.732169],\n\t\t\t\t\t\t[-84.947266, 45.733435],\n\t\t\t\t\t\t[-84.950226, 45.736299],\n\t\t\t\t\t\t[-84.950840, 45.736893],\n\t\t\t\t\t\t[-84.951745, 45.737326],\n\t\t\t\t\t\t[-84.954275, 45.738537],\n\t\t\t\t\t\t[-84.955394, 45.739072],\n\t\t\t\t\t\t[-84.958130, 45.740381],\n\t\t\t\t\t\t[-84.968309, 45.745252],\n\t\t\t\t\t\t[-84.982328, 45.751960],\n\t\t\t\t\t\t[-84.982973, 45.752022],\n\t\t\t\t\t\t[-84.983316, 45.752055],\n\t\t\t\t\t\t[-84.983829, 45.752104],\n\t\t\t\t\t\t[-84.983933, 45.752114],\n\t\t\t\t\t\t[-84.984568, 45.752175],\n\t\t\t\t\t\t[-84.985318, 45.752247],\n\t\t\t\t\t\t[-84.996755, 45.753347],\n\t\t\t\t\t\t[-85.001656, 45.753819],\n\t\t\t\t\t\t[-85.002914, 45.753940],\n\t\t\t\t\t\t[-85.011433, 45.757962],\n\t\t\t\t\t\t[-85.014509, 45.760329],\n\t\t\t\t\t\t[-85.009173, 45.762463],\n\t\t\t\t\t\t[-85.007410, 45.763168],\n\t\t\t\t\t\t[-84.995105, 45.759855],\n\t\t\t\t\t\t[-84.938312, 45.759892],\n\t\t\t\t\t\t[-84.937790, 45.759777],\n\t\t\t\t\t\t[-84.931463, 45.758389],\n\t\t\t\t\t\t[-84.926802, 45.757366],\n\t\t\t\t\t\t[-84.925230, 45.757021],\n\t\t\t\t\t\t[-84.924664, 45.756897],\n\t\t\t\t\t\t[-84.922478, 45.755842],\n\t\t\t\t\t\t[-84.920691, 45.754979],\n\t\t\t\t\t\t[-84.919996, 45.754643],\n\t\t\t\t\t\t[-84.910398, 45.750010],\n\t\t\t\t\t\t[-84.866976, 45.752066],\n\t\t\t\t\t\t[-84.840981, 45.744751],\n\t\t\t\t\t\t[-84.810953, 45.745993],\n\t\t\t\t\t\t[-84.810411, 45.746015],\n\t\t\t\t\t\t[-84.808285, 45.746103],\n\t\t\t\t\t\t[-84.806642, 45.746171],\n\t\t\t\t\t\t[-84.805114, 45.746378],\n\t\t\t\t\t\t[-84.800664, 45.746980],\n\t\t\t\t\t\t[-84.799558, 45.747130],\n\t\t\t\t\t\t[-84.792474, 45.750530],\n\t\t\t\t\t\t[-84.789580, 45.751919],\n\t\t\t\t\t\t[-84.788893, 45.752248],\n\t\t\t\t\t\t[-84.788821, 45.752283],\n\t\t\t\t\t\t[-84.788808, 45.752298],\n\t\t\t\t\t\t[-84.781995, 45.760345],\n\t\t\t\t\t\t[-84.781373, 45.761080],\n\t\t\t\t\t\t[-84.779800, 45.769650],\n\t\t\t\t\t\t[-84.787228, 45.774892],\n\t\t\t\t\t\t[-84.792290, 45.778464],\n\t\t\t\t\t\t[-84.792337, 45.778497],\n\t\t\t\t\t\t[-84.793153, 45.780463],\n\t\t\t\t\t\t[-84.780313, 45.787224],\n\t\t\t\t\t\t[-84.774156, 45.788918],\n\t\t\t\t\t\t[-84.774014, 45.788957],\n\t\t\t\t\t\t[-84.772765, 45.789301],\n\t\t\t\t\t\t[-84.751571, 45.782733],\n\t\t\t\t\t\t[-84.742000, 45.784134],\n\t\t\t\t\t\t[-84.734065, 45.788205],\n\t\t\t\t\t\t[-84.732388, 45.787928],\n\t\t\t\t\t\t[-84.732687, 45.289382],\n\t\t\t\t\t\t[-85.011769, 45.278711],\n\t\t\t\t\t\t[-85.095985, 45.367001]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26051\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"051\",\n\t\t\t\t\"NAME\": \"Gladwin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 501.779000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.608104, 44.160482],\n\t\t\t\t\t\t[-84.368039, 44.160538],\n\t\t\t\t\t\t[-84.166107, 44.161788],\n\t\t\t\t\t\t[-84.166377, 43.996901],\n\t\t\t\t\t\t[-84.167318, 43.825902],\n\t\t\t\t\t\t[-84.606035, 43.815218],\n\t\t\t\t\t\t[-84.608001, 44.158590],\n\t\t\t\t\t\t[-84.608104, 44.160482]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26065\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"065\",\n\t\t\t\t\"NAME\": \"Ingham\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 556.120000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.158189, 42.776639],\n\t\t\t\t\t\t[-84.151966, 42.710731],\n\t\t\t\t\t\t[-84.140713, 42.424611],\n\t\t\t\t\t\t[-84.600403, 42.421984],\n\t\t\t\t\t\t[-84.602761, 42.769880],\n\t\t\t\t\t\t[-84.363660, 42.769971],\n\t\t\t\t\t\t[-84.363659, 42.775778],\n\t\t\t\t\t\t[-84.158189, 42.776639]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26069\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"069\",\n\t\t\t\t\"NAME\": \"Iosco\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 549.096000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.318216, 44.511734],\n\t\t\t\t\t\t[-83.317610, 44.486058],\n\t\t\t\t\t\t[-83.326824, 44.444411],\n\t\t\t\t\t\t[-83.327171, 44.429234],\n\t\t\t\t\t\t[-83.324616, 44.415039],\n\t\t\t\t\t\t[-83.321553, 44.409119],\n\t\t\t\t\t\t[-83.321648, 44.404502],\n\t\t\t\t\t\t[-83.333757, 44.372486],\n\t\t\t\t\t\t[-83.335248, 44.357995],\n\t\t\t\t\t\t[-83.332533, 44.340464],\n\t\t\t\t\t\t[-83.336988, 44.332919],\n\t\t\t\t\t\t[-83.343738, 44.329763],\n\t\t\t\t\t\t[-83.352115, 44.332366],\n\t\t\t\t\t\t[-83.364312, 44.332590],\n\t\t\t\t\t\t[-83.373607, 44.327784],\n\t\t\t\t\t\t[-83.401822, 44.301831],\n\t\t\t\t\t\t[-83.414301, 44.294543],\n\t\t\t\t\t\t[-83.419236, 44.287800],\n\t\t\t\t\t\t[-83.425762, 44.272487],\n\t\t\t\t\t\t[-83.429689, 44.269708],\n\t\t\t\t\t\t[-83.442731, 44.265361],\n\t\t\t\t\t\t[-83.445805, 44.273378],\n\t\t\t\t\t\t[-83.447742, 44.273991],\n\t\t\t\t\t\t[-83.460958, 44.278176],\n\t\t\t\t\t\t[-83.463049, 44.278838],\n\t\t\t\t\t\t[-83.479531, 44.280090],\n\t\t\t\t\t\t[-83.500392, 44.276610],\n\t\t\t\t\t\t[-83.508839, 44.273711],\n\t\t\t\t\t\t[-83.524817, 44.261558],\n\t\t\t\t\t\t[-83.537710, 44.248171],\n\t\t\t\t\t\t[-83.549096, 44.227282],\n\t\t\t\t\t\t[-83.552872, 44.210718],\n\t\t\t\t\t\t[-83.553834, 44.197956],\n\t\t\t\t\t\t[-83.565225, 44.163517],\n\t\t\t\t\t\t[-83.883977, 44.161786],\n\t\t\t\t\t\t[-83.886634, 44.508973],\n\t\t\t\t\t\t[-83.318216, 44.511734]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17131\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"131\",\n\t\t\t\t\"NAME\": \"Mercer\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 561.202000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.948523, 41.070248],\n\t\t\t\t\t\t[-90.949383, 41.072710],\n\t\t\t\t\t\t[-90.949383, 41.072711],\n\t\t\t\t\t\t[-90.946627, 41.096632],\n\t\t\t\t\t\t[-90.989663, 41.155716],\n\t\t\t\t\t\t[-90.997906, 41.162564],\n\t\t\t\t\t\t[-91.005503, 41.165622],\n\t\t\t\t\t\t[-91.019036, 41.164910],\n\t\t\t\t\t\t[-91.049808, 41.178033],\n\t\t\t\t\t\t[-91.113648, 41.241401],\n\t\t\t\t\t\t[-91.114186, 41.250029],\n\t\t\t\t\t\t[-91.079657, 41.333727],\n\t\t\t\t\t\t[-91.078682, 41.336089],\n\t\t\t\t\t\t[-90.433771, 41.326983],\n\t\t\t\t\t\t[-90.437657, 41.151252],\n\t\t\t\t\t\t[-90.437847, 41.137221],\n\t\t\t\t\t\t[-90.438122, 41.136808],\n\t\t\t\t\t\t[-90.437957, 41.133884],\n\t\t\t\t\t\t[-90.439423, 41.063995],\n\t\t\t\t\t\t[-90.785194, 41.068749],\n\t\t\t\t\t\t[-90.948523, 41.070248]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13191\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"191\",\n\t\t\t\t\"NAME\": \"McIntosh\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 424.299000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.663206, 31.538667],\n\t\t\t\t\t\t[-81.566009, 31.576467],\n\t\t\t\t\t\t[-81.491798, 31.699575],\n\t\t\t\t\t\t[-81.435760, 31.642055],\n\t\t\t\t\t\t[-81.261868, 31.650142],\n\t\t\t\t\t\t[-81.194380, 31.568101],\n\t\t\t\t\t\t[-81.204315, 31.568183],\n\t\t\t\t\t\t[-81.214536, 31.557601],\n\t\t\t\t\t\t[-81.240699, 31.552313],\n\t\t\t\t\t\t[-81.254218, 31.555940],\n\t\t\t\t\t\t[-81.260076, 31.548280],\n\t\t\t\t\t\t[-81.263905, 31.532579],\n\t\t\t\t\t\t[-81.263437, 31.530932],\n\t\t\t\t\t\t[-81.258809, 31.529060],\n\t\t\t\t\t\t[-81.217948, 31.527284],\n\t\t\t\t\t\t[-81.213519, 31.528152],\n\t\t\t\t\t\t[-81.199518, 31.537596],\n\t\t\t\t\t\t[-81.193016, 31.535833],\n\t\t\t\t\t\t[-81.181592, 31.527697],\n\t\t\t\t\t\t[-81.178310, 31.522410],\n\t\t\t\t\t\t[-81.177254, 31.517074],\n\t\t\t\t\t\t[-81.189643, 31.503588],\n\t\t\t\t\t\t[-81.204883, 31.473124],\n\t\t\t\t\t\t[-81.246911, 31.422784],\n\t\t\t\t\t\t[-81.258616, 31.404425],\n\t\t\t\t\t\t[-81.278798, 31.367214],\n\t\t\t\t\t\t[-81.279338, 31.351127],\n\t\t\t\t\t\t[-81.282923, 31.326491],\n\t\t\t\t\t\t[-81.274513, 31.326237],\n\t\t\t\t\t\t[-81.268027, 31.324218],\n\t\t\t\t\t\t[-81.254820, 31.315452],\n\t\t\t\t\t\t[-81.260958, 31.303910],\n\t\t\t\t\t\t[-81.269906, 31.294489],\n\t\t\t\t\t\t[-81.435874, 31.313263],\n\t\t\t\t\t\t[-81.624290, 31.452982],\n\t\t\t\t\t\t[-81.663206, 31.538667]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31079\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"079\",\n\t\t\t\t\"NAME\": \"Hall\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 546.289000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.282851, 40.698284],\n\t\t\t\t\t\t[-98.721430, 40.698903],\n\t\t\t\t\t\t[-98.721975, 41.046674],\n\t\t\t\t\t\t[-98.287168, 41.046363],\n\t\t\t\t\t\t[-98.282359, 41.046355],\n\t\t\t\t\t\t[-98.282569, 40.872296],\n\t\t\t\t\t\t[-98.282851, 40.698284]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31081\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"081\",\n\t\t\t\t\"NAME\": \"Hamilton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 542.878000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.826287, 41.046581],\n\t\t\t\t\t\t[-97.825723, 40.698555],\n\t\t\t\t\t\t[-98.278103, 40.698291],\n\t\t\t\t\t\t[-98.282851, 40.698284],\n\t\t\t\t\t\t[-98.282569, 40.872296],\n\t\t\t\t\t\t[-98.019385, 41.066392],\n\t\t\t\t\t\t[-97.892531, 41.111496],\n\t\t\t\t\t\t[-97.828243, 41.173750],\n\t\t\t\t\t\t[-97.827964, 41.047315],\n\t\t\t\t\t\t[-97.826287, 41.046581]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31083\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"083\",\n\t\t\t\t\"NAME\": \"Harlan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 553.466000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.630459, 40.351120],\n\t\t\t\t\t\t[-99.179403, 40.350681],\n\t\t\t\t\t\t[-99.179133, 40.001977],\n\t\t\t\t\t\t[-99.186962, 40.001977],\n\t\t\t\t\t\t[-99.188905, 40.002023],\n\t\t\t\t\t\t[-99.197592, 40.002033],\n\t\t\t\t\t\t[-99.216376, 40.002016],\n\t\t\t\t\t\t[-99.250370, 40.001957],\n\t\t\t\t\t\t[-99.254012, 40.002074],\n\t\t\t\t\t\t[-99.282967, 40.001879],\n\t\t\t\t\t\t[-99.286656, 40.002017],\n\t\t\t\t\t\t[-99.290703, 40.001949],\n\t\t\t\t\t\t[-99.403389, 40.001969],\n\t\t\t\t\t\t[-99.412645, 40.001868],\n\t\t\t\t\t\t[-99.480728, 40.001942],\n\t\t\t\t\t\t[-99.493465, 40.001937],\n\t\t\t\t\t\t[-99.497660, 40.001912],\n\t\t\t\t\t\t[-99.498999, 40.001957],\n\t\t\t\t\t\t[-99.501792, 40.002026],\n\t\t\t\t\t\t[-99.625324, 40.001866],\n\t\t\t\t\t\t[-99.625980, 40.001865],\n\t\t\t\t\t\t[-99.628255, 40.001866],\n\t\t\t\t\t\t[-99.630459, 40.351120]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31087\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"087\",\n\t\t\t\t\"NAME\": \"Hitchcock\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 709.943000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.758435, 40.349507],\n\t\t\t\t\t\t[-100.758830, 40.002302],\n\t\t\t\t\t\t[-100.937427, 40.002145],\n\t\t\t\t\t\t[-101.027686, 40.002256],\n\t\t\t\t\t\t[-101.060317, 40.002307],\n\t\t\t\t\t\t[-101.130907, 40.002427],\n\t\t\t\t\t\t[-101.168704, 40.002547],\n\t\t\t\t\t\t[-101.178805, 40.002468],\n\t\t\t\t\t\t[-101.192219, 40.002491],\n\t\t\t\t\t\t[-101.215033, 40.002555],\n\t\t\t\t\t\t[-101.248673, 40.002543],\n\t\t\t\t\t\t[-101.286555, 40.002559],\n\t\t\t\t\t\t[-101.293991, 40.002559],\n\t\t\t\t\t\t[-101.324036, 40.002696],\n\t\t\t\t\t\t[-101.325514, 40.002687],\n\t\t\t\t\t\t[-101.324036, 40.002704],\n\t\t\t\t\t\t[-101.323353, 40.350553],\n\t\t\t\t\t\t[-100.777376, 40.349466],\n\t\t\t\t\t\t[-100.777372, 40.349447],\n\t\t\t\t\t\t[-100.758435, 40.349507]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31099\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"099\",\n\t\t\t\t\"NAME\": \"Kearney\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 516.244000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.723948, 40.350391],\n\t\t\t\t\t\t[-98.726827, 40.350398],\n\t\t\t\t\t\t[-99.179403, 40.350681],\n\t\t\t\t\t\t[-99.179248, 40.660541],\n\t\t\t\t\t\t[-98.906096, 40.652722],\n\t\t\t\t\t\t[-98.724387, 40.689772],\n\t\t\t\t\t\t[-98.723948, 40.350391]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31101\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"101\",\n\t\t\t\t\"NAME\": \"Keith\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1061.600000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-101.984630, 41.394712],\n\t\t\t\t\t\t[-101.407260, 41.395416],\n\t\t\t\t\t\t[-101.269695, 41.394934],\n\t\t\t\t\t\t[-101.270381, 41.047392],\n\t\t\t\t\t\t[-101.249975, 41.003950],\n\t\t\t\t\t\t[-102.051761, 41.003890],\n\t\t\t\t\t\t[-102.055535, 41.221547],\n\t\t\t\t\t\t[-102.055256, 41.395162],\n\t\t\t\t\t\t[-101.984630, 41.394712]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31105\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"105\",\n\t\t\t\t\"NAME\": \"Kimball\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 951.846000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-104.052324, 41.321144],\n\t\t\t\t\t\t[-104.052287, 41.393214],\n\t\t\t\t\t\t[-103.377620, 41.394633],\n\t\t\t\t\t\t[-103.382493, 41.001883],\n\t\t\t\t\t\t[-103.421925, 41.001969],\n\t\t\t\t\t\t[-103.421975, 41.002007],\n\t\t\t\t\t\t[-103.486697, 41.001914],\n\t\t\t\t\t\t[-103.497447, 41.001635],\n\t\t\t\t\t\t[-103.574522, 41.001721],\n\t\t\t\t\t\t[-103.858449, 41.001681],\n\t\t\t\t\t\t[-103.877967, 41.001673],\n\t\t\t\t\t\t[-103.896207, 41.001750],\n\t\t\t\t\t\t[-103.953525, 41.001596],\n\t\t\t\t\t\t[-103.971373, 41.001524],\n\t\t\t\t\t\t[-103.972642, 41.001615],\n\t\t\t\t\t\t[-104.018223, 41.001617],\n\t\t\t\t\t\t[-104.023383, 41.001887],\n\t\t\t\t\t\t[-104.039238, 41.001502],\n\t\t\t\t\t\t[-104.053249, 41.001406],\n\t\t\t\t\t\t[-104.053158, 41.016809],\n\t\t\t\t\t\t[-104.053097, 41.018045],\n\t\t\t\t\t\t[-104.053177, 41.089725],\n\t\t\t\t\t\t[-104.053025, 41.090274],\n\t\t\t\t\t\t[-104.053083, 41.104985],\n\t\t\t\t\t\t[-104.053142, 41.114457],\n\t\t\t\t\t\t[-104.052666, 41.275251],\n\t\t\t\t\t\t[-104.052574, 41.278019],\n\t\t\t\t\t\t[-104.052453, 41.278202],\n\t\t\t\t\t\t[-104.052568, 41.316202],\n\t\t\t\t\t\t[-104.052476, 41.320961],\n\t\t\t\t\t\t[-104.052324, 41.321144]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31109\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"109\",\n\t\t\t\t\"NAME\": \"Lancaster\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 837.548000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.910940, 41.046116],\n\t\t\t\t\t\t[-96.908507, 41.046091],\n\t\t\t\t\t\t[-96.463869, 41.045083],\n\t\t\t\t\t\t[-96.463861, 41.016069],\n\t\t\t\t\t\t[-96.463764, 40.783960],\n\t\t\t\t\t\t[-96.463632, 40.523013],\n\t\t\t\t\t\t[-96.912637, 40.523625],\n\t\t\t\t\t\t[-96.913493, 40.697948],\n\t\t\t\t\t\t[-96.911116, 40.697975],\n\t\t\t\t\t\t[-96.910940, 41.046116]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31115\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"115\",\n\t\t\t\t\"NAME\": \"Loup\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 568.290000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.222733, 42.087916],\n\t\t\t\t\t\t[-99.221830, 41.740792],\n\t\t\t\t\t\t[-99.686834, 41.740326],\n\t\t\t\t\t\t[-99.686959, 42.086075],\n\t\t\t\t\t\t[-99.662379, 42.086009],\n\t\t\t\t\t\t[-99.234629, 42.087995],\n\t\t\t\t\t\t[-99.224264, 42.088028],\n\t\t\t\t\t\t[-99.222733, 42.087916]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31119\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"119\",\n\t\t\t\t\"NAME\": \"Madison\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 572.743000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.368070, 41.743207],\n\t\t\t\t\t\t[-97.830493, 41.742238],\n\t\t\t\t\t\t[-97.832390, 41.742788],\n\t\t\t\t\t\t[-97.833288, 41.916286],\n\t\t\t\t\t\t[-97.834336, 42.088987],\n\t\t\t\t\t\t[-97.834536, 42.089750],\n\t\t\t\t\t\t[-97.368404, 42.090922],\n\t\t\t\t\t\t[-97.368070, 41.743207]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28091\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"091\",\n\t\t\t\t\"NAME\": \"Marion\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 542.384000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.654212, 31.433805],\n\t\t\t\t\t\t[-89.654400, 31.404663],\n\t\t\t\t\t\t[-89.654136, 31.375517],\n\t\t\t\t\t\t[-89.654038, 31.002502],\n\t\t\t\t\t\t[-89.728148, 31.002300],\n\t\t\t\t\t\t[-89.728147, 31.002431],\n\t\t\t\t\t\t[-89.732504, 31.004831],\n\t\t\t\t\t\t[-89.752642, 31.001853],\n\t\t\t\t\t\t[-89.816429, 31.002084],\n\t\t\t\t\t\t[-89.824617, 31.002060],\n\t\t\t\t\t\t[-89.835542, 31.002059],\n\t\t\t\t\t\t[-89.835908, 31.002059],\n\t\t\t\t\t\t[-89.835873, 31.074926],\n\t\t\t\t\t\t[-89.938108, 31.118956],\n\t\t\t\t\t\t[-90.031896, 31.175727],\n\t\t\t\t\t\t[-90.040466, 31.336014],\n\t\t\t\t\t\t[-90.040485, 31.394673],\n\t\t\t\t\t\t[-89.958940, 31.390489],\n\t\t\t\t\t\t[-89.823332, 31.390021],\n\t\t\t\t\t\t[-89.824236, 31.434093],\n\t\t\t\t\t\t[-89.654212, 31.433805]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28097\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"097\",\n\t\t\t\t\"NAME\": \"Montgomery\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 406.981000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.453808, 33.285942],\n\t\t\t\t\t\t[-89.645280, 33.285515],\n\t\t\t\t\t\t[-89.646314, 33.402544],\n\t\t\t\t\t\t[-89.785227, 33.416275],\n\t\t\t\t\t\t[-89.786890, 33.676727],\n\t\t\t\t\t\t[-89.506872, 33.677605],\n\t\t\t\t\t\t[-89.506496, 33.459806],\n\t\t\t\t\t\t[-89.381092, 33.460307],\n\t\t\t\t\t\t[-89.454050, 33.433200],\n\t\t\t\t\t\t[-89.453808, 33.285942]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28101\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"101\",\n\t\t\t\t\"NAME\": \"Newton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 578.104000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.117675, 32.223972],\n\t\t\t\t\t\t[-89.322692, 32.223472],\n\t\t\t\t\t\t[-89.322598, 32.576433],\n\t\t\t\t\t\t[-89.317588, 32.576458],\n\t\t\t\t\t\t[-88.914516, 32.576955],\n\t\t\t\t\t\t[-88.913847, 32.224186],\n\t\t\t\t\t\t[-89.117675, 32.223972]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28109\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"109\",\n\t\t\t\t\"NAME\": \"Pearl River\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 810.863000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.348950, 31.010370],\n\t\t\t\t\t\t[-89.340806, 30.909912],\n\t\t\t\t\t\t[-89.341446, 30.647720],\n\t\t\t\t\t\t[-89.544232, 30.648368],\n\t\t\t\t\t\t[-89.544510, 30.516862],\n\t\t\t\t\t\t[-89.690580, 30.458773],\n\t\t\t\t\t\t[-89.724614, 30.491902],\n\t\t\t\t\t\t[-89.732577, 30.492502],\n\t\t\t\t\t\t[-89.760570, 30.515761],\n\t\t\t\t\t\t[-89.806843, 30.572039],\n\t\t\t\t\t\t[-89.823384, 30.608535],\n\t\t\t\t\t\t[-89.842585, 30.666005],\n\t\t\t\t\t\t[-89.842596, 30.666038],\n\t\t\t\t\t\t[-89.826175, 30.736594],\n\t\t\t\t\t\t[-89.789863, 30.851527],\n\t\t\t\t\t\t[-89.773410, 30.897693],\n\t\t\t\t\t\t[-89.770931, 30.899432],\n\t\t\t\t\t\t[-89.756543, 30.900431],\n\t\t\t\t\t\t[-89.744789, 30.918933],\n\t\t\t\t\t\t[-89.728382, 30.971141],\n\t\t\t\t\t\t[-89.728148, 31.002300],\n\t\t\t\t\t\t[-89.654038, 31.002502],\n\t\t\t\t\t\t[-89.501411, 31.013907],\n\t\t\t\t\t\t[-89.476022, 30.982901],\n\t\t\t\t\t\t[-89.348950, 31.010370]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28119\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"119\",\n\t\t\t\t\"NAME\": \"Quitman\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 405.012000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.450981, 34.072932],\n\t\t\t\t\t\t[-90.450572, 34.262402],\n\t\t\t\t\t\t[-90.399014, 34.261524],\n\t\t\t\t\t\t[-90.399498, 34.423807],\n\t\t\t\t\t\t[-90.301851, 34.424546],\n\t\t\t\t\t\t[-90.304317, 34.509621],\n\t\t\t\t\t\t[-90.198536, 34.511088],\n\t\t\t\t\t\t[-90.194086, 34.301407],\n\t\t\t\t\t\t[-90.134441, 34.265195],\n\t\t\t\t\t\t[-90.135456, 34.160074],\n\t\t\t\t\t\t[-90.135695, 34.072900],\n\t\t\t\t\t\t[-90.450981, 34.072932]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28121\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"121\",\n\t\t\t\t\"NAME\": \"Rankin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 775.485000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.230331, 32.049728],\n\t\t\t\t\t\t[-90.245380, 32.171396],\n\t\t\t\t\t\t[-90.160477, 32.308340],\n\t\t\t\t\t\t[-90.065697, 32.399529],\n\t\t\t\t\t\t[-90.068820, 32.438078],\n\t\t\t\t\t\t[-89.962077, 32.491286],\n\t\t\t\t\t\t[-89.858878, 32.584836],\n\t\t\t\t\t\t[-89.784123, 32.586891],\n\t\t\t\t\t\t[-89.730063, 32.352733],\n\t\t\t\t\t\t[-89.730424, 32.222039],\n\t\t\t\t\t\t[-89.731059, 32.222045],\n\t\t\t\t\t\t[-89.730066, 32.047072],\n\t\t\t\t\t\t[-90.230331, 32.049728]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28129\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"129\",\n\t\t\t\t\"NAME\": \"Smith\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 636.252000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.359928, 31.799388],\n\t\t\t\t\t\t[-89.401227, 31.796863],\n\t\t\t\t\t\t[-89.653025, 31.780653],\n\t\t\t\t\t\t[-89.662086, 32.047239],\n\t\t\t\t\t\t[-89.730066, 32.047072],\n\t\t\t\t\t\t[-89.731059, 32.222045],\n\t\t\t\t\t\t[-89.730424, 32.222039],\n\t\t\t\t\t\t[-89.322692, 32.223472],\n\t\t\t\t\t\t[-89.321127, 31.885149],\n\t\t\t\t\t\t[-89.317086, 31.874305],\n\t\t\t\t\t\t[-89.316560, 31.802090],\n\t\t\t\t\t\t[-89.359928, 31.799388]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US35041\",\n\t\t\t\t\"STATE\": \"35\",\n\t\t\t\t\"COUNTY\": \"041\",\n\t\t\t\t\"NAME\": \"Roosevelt\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2447.431000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-103.043936, 34.302585],\n\t\t\t\t\t\t[-103.043719, 34.289441],\n\t\t\t\t\t\t[-103.043644, 34.256903],\n\t\t\t\t\t\t[-103.043569, 34.087947],\n\t\t\t\t\t\t[-103.043516, 34.079382],\n\t\t\t\t\t\t[-103.043686, 34.063078],\n\t\t\t\t\t\t[-103.043744, 34.049986],\n\t\t\t\t\t\t[-103.043767, 34.043545],\n\t\t\t\t\t\t[-103.043721, 34.042320],\n\t\t\t\t\t\t[-103.043771, 34.041538],\n\t\t\t\t\t\t[-103.043746, 34.037294],\n\t\t\t\t\t\t[-103.043555, 34.032714],\n\t\t\t\t\t\t[-103.043531, 34.018014],\n\t\t\t\t\t\t[-103.043617, 34.003633],\n\t\t\t\t\t\t[-103.043950, 33.974629],\n\t\t\t\t\t\t[-103.044893, 33.945617],\n\t\t\t\t\t\t[-103.045698, 33.906299],\n\t\t\t\t\t\t[-103.045644, 33.901537],\n\t\t\t\t\t\t[-103.046907, 33.850300],\n\t\t\t\t\t\t[-103.047346, 33.824675],\n\t\t\t\t\t\t[-103.049096, 33.746270],\n\t\t\t\t\t\t[-103.050148, 33.701971],\n\t\t\t\t\t\t[-103.050532, 33.672408],\n\t\t\t\t\t\t[-103.051087, 33.658186],\n\t\t\t\t\t\t[-103.051535, 33.650487],\n\t\t\t\t\t\t[-103.051363, 33.641950],\n\t\t\t\t\t\t[-103.051664, 33.629489],\n\t\t\t\t\t\t[-103.052610, 33.570599],\n\t\t\t\t\t\t[-103.510267, 33.570256],\n\t\t\t\t\t\t[-103.509726, 33.657218],\n\t\t\t\t\t\t[-103.718260, 33.656136],\n\t\t\t\t\t\t[-103.716794, 33.819300],\n\t\t\t\t\t\t[-103.841906, 33.819252],\n\t\t\t\t\t\t[-103.841619, 34.081681],\n\t\t\t\t\t\t[-103.945949, 34.082784],\n\t\t\t\t\t\t[-103.948839, 34.605058],\n\t\t\t\t\t\t[-103.738232, 34.604671],\n\t\t\t\t\t\t[-103.740017, 34.303076],\n\t\t\t\t\t\t[-103.043936, 34.302585]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US35043\",\n\t\t\t\t\"STATE\": \"35\",\n\t\t\t\t\"COUNTY\": \"043\",\n\t\t\t\t\"NAME\": \"Sandoval\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 3710.650000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-106.244827, 35.215204],\n\t\t\t\t\t\t[-106.598652, 35.217939],\n\t\t\t\t\t\t[-106.729852, 35.218073],\n\t\t\t\t\t\t[-106.763162, 35.218141],\n\t\t\t\t\t\t[-106.962038, 35.218392],\n\t\t\t\t\t\t[-107.196170, 35.219323],\n\t\t\t\t\t\t[-107.239160, 35.305368],\n\t\t\t\t\t\t[-107.310041, 35.305192],\n\t\t\t\t\t\t[-107.309634, 35.419011],\n\t\t\t\t\t\t[-107.306591, 35.418530],\n\t\t\t\t\t\t[-107.308212, 35.998690],\n\t\t\t\t\t\t[-107.626510, 36.000320],\n\t\t\t\t\t\t[-107.624250, 36.219799],\n\t\t\t\t\t\t[-106.884989, 36.216570],\n\t\t\t\t\t\t[-106.885269, 35.998967],\n\t\t\t\t\t\t[-106.247241, 36.001517],\n\t\t\t\t\t\t[-106.247949, 35.966335],\n\t\t\t\t\t\t[-106.399644, 35.960055],\n\t\t\t\t\t\t[-106.400700, 35.807567],\n\t\t\t\t\t\t[-106.248250, 35.755739],\n\t\t\t\t\t\t[-106.248491, 35.443199],\n\t\t\t\t\t\t[-106.245676, 35.238458],\n\t\t\t\t\t\t[-106.245160, 35.231820],\n\t\t\t\t\t\t[-106.245514, 35.229722],\n\t\t\t\t\t\t[-106.245061, 35.228292],\n\t\t\t\t\t\t[-106.244827, 35.215204]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US35049\",\n\t\t\t\t\"STATE\": \"35\",\n\t\t\t\t\"COUNTY\": \"049\",\n\t\t\t\t\"NAME\": \"Santa Fe\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1909.414000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-106.194229, 35.040274],\n\t\t\t\t\t\t[-106.243866, 35.040088],\n\t\t\t\t\t\t[-106.243683, 35.041219],\n\t\t\t\t\t\t[-106.244827, 35.215204],\n\t\t\t\t\t\t[-106.245061, 35.228292],\n\t\t\t\t\t\t[-106.245514, 35.229722],\n\t\t\t\t\t\t[-106.245160, 35.231820],\n\t\t\t\t\t\t[-106.245676, 35.238458],\n\t\t\t\t\t\t[-106.248491, 35.443199],\n\t\t\t\t\t\t[-106.248250, 35.755739],\n\t\t\t\t\t\t[-106.171656, 35.828176],\n\t\t\t\t\t\t[-106.248257, 35.839178],\n\t\t\t\t\t\t[-106.245439, 35.930930],\n\t\t\t\t\t\t[-106.054128, 35.930783],\n\t\t\t\t\t\t[-106.071394, 36.002028],\n\t\t\t\t\t\t[-105.716750, 36.002356],\n\t\t\t\t\t\t[-105.717374, 35.978760],\n\t\t\t\t\t\t[-105.720540, 35.875028],\n\t\t\t\t\t\t[-105.720280, 35.871015],\n\t\t\t\t\t\t[-105.714475, 35.041562],\n\t\t\t\t\t\t[-106.194229, 35.040274]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US35057\",\n\t\t\t\t\"STATE\": \"35\",\n\t\t\t\t\"COUNTY\": \"057\",\n\t\t\t\t\"NAME\": \"Torrance\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 3344.845000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-106.416990, 34.439797],\n\t\t\t\t\t\t[-106.417473, 34.521663],\n\t\t\t\t\t\t[-106.469975, 34.521163],\n\t\t\t\t\t\t[-106.464532, 34.809198],\n\t\t\t\t\t\t[-106.464177, 34.870153],\n\t\t\t\t\t\t[-106.410977, 34.870254],\n\t\t\t\t\t\t[-106.149575, 34.870142],\n\t\t\t\t\t\t[-106.150155, 34.953449],\n\t\t\t\t\t\t[-106.243866, 34.953293],\n\t\t\t\t\t\t[-106.243866, 35.040088],\n\t\t\t\t\t\t[-106.194229, 35.040274],\n\t\t\t\t\t\t[-105.714475, 35.041562],\n\t\t\t\t\t\t[-105.290884, 35.042093],\n\t\t\t\t\t\t[-105.290299, 34.606744],\n\t\t\t\t\t\t[-105.312626, 34.607052],\n\t\t\t\t\t\t[-105.312968, 34.346720],\n\t\t\t\t\t\t[-105.313218, 34.260015],\n\t\t\t\t\t\t[-105.923959, 34.259991],\n\t\t\t\t\t\t[-106.415861, 34.259715],\n\t\t\t\t\t\t[-106.416990, 34.439797]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US35061\",\n\t\t\t\t\"STATE\": \"35\",\n\t\t\t\t\"COUNTY\": \"061\",\n\t\t\t\t\"NAME\": \"Valencia\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1066.175000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-107.066694, 34.957189],\n\t\t\t\t\t\t[-107.024784, 34.870254],\n\t\t\t\t\t\t[-106.720666, 34.870053],\n\t\t\t\t\t\t[-106.685889, 34.906150],\n\t\t\t\t\t\t[-106.414475, 34.892225],\n\t\t\t\t\t\t[-106.410974, 34.889494],\n\t\t\t\t\t\t[-106.410977, 34.870254],\n\t\t\t\t\t\t[-106.464177, 34.870153],\n\t\t\t\t\t\t[-106.464532, 34.809198],\n\t\t\t\t\t\t[-106.469975, 34.521163],\n\t\t\t\t\t\t[-106.417473, 34.521663],\n\t\t\t\t\t\t[-106.416990, 34.439797],\n\t\t\t\t\t\t[-106.773060, 34.533290],\n\t\t\t\t\t\t[-106.882561, 34.579457],\n\t\t\t\t\t\t[-107.204410, 34.578813],\n\t\t\t\t\t\t[-107.203039, 34.958064],\n\t\t\t\t\t\t[-107.066694, 34.957189]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36007\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"007\",\n\t\t\t\t\"NAME\": \"Broome\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 705.766000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-75.359579, 41.999445],\n\t\t\t\t\t\t[-75.431961, 41.999363],\n\t\t\t\t\t\t[-75.436216, 41.999353],\n\t\t\t\t\t\t[-75.477144, 41.999407],\n\t\t\t\t\t\t[-75.483150, 41.999259],\n\t\t\t\t\t\t[-75.483738, 41.999244],\n\t\t\t\t\t\t[-75.980250, 41.999035],\n\t\t\t\t\t\t[-75.983082, 41.999035],\n\t\t\t\t\t\t[-76.105840, 41.998858],\n\t\t\t\t\t\t[-76.111106, 42.112436],\n\t\t\t\t\t\t[-76.114033, 42.153418],\n\t\t\t\t\t\t[-76.081134, 42.230495],\n\t\t\t\t\t\t[-76.130181, 42.410337],\n\t\t\t\t\t\t[-75.864020, 42.415702],\n\t\t\t\t\t\t[-75.843792, 42.259707],\n\t\t\t\t\t\t[-75.638299, 42.248686],\n\t\t\t\t\t\t[-75.637110, 42.195628],\n\t\t\t\t\t\t[-75.532776, 42.195241],\n\t\t\t\t\t\t[-75.419907, 42.194918],\n\t\t\t\t\t\t[-75.418421, 42.195032],\n\t\t\t\t\t\t[-75.418544, 42.189504],\n\t\t\t\t\t\t[-75.418807, 42.188104],\n\t\t\t\t\t\t[-75.418689, 42.188022],\n\t\t\t\t\t\t[-75.418438, 42.186797],\n\t\t\t\t\t\t[-75.418827, 42.180702],\n\t\t\t\t\t\t[-75.419664, 42.150436],\n\t\t\t\t\t\t[-75.421776, 42.042030],\n\t\t\t\t\t\t[-75.359579, 41.999445]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36011\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"011\",\n\t\t\t\t\"NAME\": \"Cayuga\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 691.582000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.479224, 43.227519],\n\t\t\t\t\t\t[-76.499312, 43.097949],\n\t\t\t\t\t\t[-76.462999, 43.006316],\n\t\t\t\t\t\t[-76.450738, 42.845760],\n\t\t\t\t\t\t[-76.356974, 42.849450],\n\t\t\t\t\t\t[-76.274673, 42.771257],\n\t\t\t\t\t\t[-76.265584, 42.623588],\n\t\t\t\t\t\t[-76.666543, 42.623457],\n\t\t\t\t\t\t[-76.733454, 42.727895],\n\t\t\t\t\t\t[-76.736740, 42.970286],\n\t\t\t\t\t\t[-76.713806, 43.024035],\n\t\t\t\t\t\t[-76.705345, 43.125463],\n\t\t\t\t\t\t[-76.722501, 43.343686],\n\t\t\t\t\t\t[-76.698360, 43.344436],\n\t\t\t\t\t\t[-76.684856, 43.352691],\n\t\t\t\t\t\t[-76.669624, 43.366526],\n\t\t\t\t\t\t[-76.642672, 43.401241],\n\t\t\t\t\t\t[-76.630774, 43.413356],\n\t\t\t\t\t\t[-76.617109, 43.419137],\n\t\t\t\t\t\t[-76.605012, 43.253570],\n\t\t\t\t\t\t[-76.479224, 43.227519]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36013\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"013\",\n\t\t\t\t\"NAME\": \"Chautauqua\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1060.226000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.610839, 41.998989],\n\t\t\t\t\t\t[-79.625301, 41.999068],\n\t\t\t\t\t\t[-79.625287, 41.999003],\n\t\t\t\t\t\t[-79.761374, 41.999067],\n\t\t\t\t\t\t[-79.762122, 42.131246],\n\t\t\t\t\t\t[-79.761861, 42.150712],\n\t\t\t\t\t\t[-79.761759, 42.162675],\n\t\t\t\t\t\t[-79.761921, 42.173319],\n\t\t\t\t\t\t[-79.761929, 42.179693],\n\t\t\t\t\t\t[-79.761833, 42.183627],\n\t\t\t\t\t\t[-79.762152, 42.243054],\n\t\t\t\t\t\t[-79.761964, 42.251354],\n\t\t\t\t\t\t[-79.761951, 42.269860],\n\t\t\t\t\t\t[-79.717825, 42.284711],\n\t\t\t\t\t\t[-79.645358, 42.315631],\n\t\t\t\t\t\t[-79.593992, 42.341641],\n\t\t\t\t\t\t[-79.546262, 42.363417],\n\t\t\t\t\t\t[-79.510999, 42.382373],\n\t\t\t\t\t\t[-79.474794, 42.404291],\n\t\t\t\t\t\t[-79.453533, 42.411157],\n\t\t\t\t\t\t[-79.429119, 42.428380],\n\t\t\t\t\t\t[-79.405458, 42.453281],\n\t\t\t\t\t\t[-79.381943, 42.466491],\n\t\t\t\t\t\t[-79.362130, 42.480195],\n\t\t\t\t\t\t[-79.351989, 42.488920],\n\t\t\t\t\t\t[-79.342316, 42.489664],\n\t\t\t\t\t\t[-79.335129, 42.488321],\n\t\t\t\t\t\t[-79.331483, 42.489076],\n\t\t\t\t\t\t[-79.323079, 42.494795],\n\t\t\t\t\t\t[-79.317740, 42.499884],\n\t\t\t\t\t\t[-79.283364, 42.511228],\n\t\t\t\t\t\t[-79.264624, 42.523159],\n\t\t\t\t\t\t[-79.242889, 42.531757],\n\t\t\t\t\t\t[-79.223195, 42.536087],\n\t\t\t\t\t\t[-79.193232, 42.545881],\n\t\t\t\t\t\t[-79.148723, 42.553672],\n\t\t\t\t\t\t[-79.138569, 42.564462],\n\t\t\t\t\t\t[-79.136725, 42.569693],\n\t\t\t\t\t\t[-79.060777, 42.537853],\n\t\t\t\t\t\t[-79.061265, 41.999259],\n\t\t\t\t\t\t[-79.538445, 41.998527],\n\t\t\t\t\t\t[-79.551385, 41.998666],\n\t\t\t\t\t\t[-79.610839, 41.998989]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36019\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"019\",\n\t\t\t\t\"NAME\": \"Clinton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1037.852000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-73.909687, 44.429699],\n\t\t\t\t\t\t[-73.966148, 44.709118],\n\t\t\t\t\t\t[-73.986382, 44.707773],\n\t\t\t\t\t\t[-74.027392, 44.995765],\n\t\t\t\t\t\t[-73.874597, 45.001223],\n\t\t\t\t\t\t[-73.624588, 45.003954],\n\t\t\t\t\t\t[-73.343124, 45.010840],\n\t\t\t\t\t\t[-73.350188, 44.994304],\n\t\t\t\t\t\t[-73.359450, 44.915684],\n\t\t\t\t\t\t[-73.369647, 44.829136],\n\t\t\t\t\t\t[-73.339958, 44.778893],\n\t\t\t\t\t\t[-73.365326, 44.703294],\n\t\t\t\t\t\t[-73.390231, 44.618353],\n\t\t\t\t\t\t[-73.374389, 44.575455],\n\t\t\t\t\t\t[-73.361952, 44.563064],\n\t\t\t\t\t\t[-73.356788, 44.557918],\n\t\t\t\t\t\t[-73.338634, 44.546847],\n\t\t\t\t\t\t[-73.463838, 44.537681],\n\t\t\t\t\t\t[-73.496604, 44.486081],\n\t\t\t\t\t\t[-73.700717, 44.445571],\n\t\t\t\t\t\t[-73.909687, 44.429699]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36027\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"027\",\n\t\t\t\t\"NAME\": \"Dutchess\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 795.630000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-73.953307, 41.589977],\n\t\t\t\t\t\t[-73.947382, 41.667493],\n\t\t\t\t\t\t[-73.942482, 41.684093],\n\t\t\t\t\t\t[-73.943482, 41.690293],\n\t\t\t\t\t\t[-73.945782, 41.695593],\n\t\t\t\t\t\t[-73.946682, 41.699396],\n\t\t\t\t\t\t[-73.944435, 41.714634],\n\t\t\t\t\t\t[-73.941081, 41.732693],\n\t\t\t\t\t\t[-73.941081, 41.735993],\n\t\t\t\t\t\t[-73.962221, 41.901020],\n\t\t\t\t\t\t[-73.929626, 42.078778],\n\t\t\t\t\t\t[-73.710930, 42.005488],\n\t\t\t\t\t\t[-73.527072, 41.977980],\n\t\t\t\t\t\t[-73.496879, 42.049675],\n\t\t\t\t\t\t[-73.487314, 42.049638],\n\t\t\t\t\t\t[-73.504944, 41.824285],\n\t\t\t\t\t\t[-73.505008, 41.823773],\n\t\t\t\t\t\t[-73.510171, 41.758686],\n\t\t\t\t\t\t[-73.517473, 41.666646],\n\t\t\t\t\t\t[-73.521457, 41.616429],\n\t\t\t\t\t\t[-73.530067, 41.527194],\n\t\t\t\t\t\t[-73.933775, 41.488279],\n\t\t\t\t\t\t[-73.981486, 41.438905],\n\t\t\t\t\t\t[-74.000108, 41.456549],\n\t\t\t\t\t\t[-73.997609, 41.487212],\n\t\t\t\t\t\t[-73.953307, 41.589977]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36033\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"033\",\n\t\t\t\t\"NAME\": \"Franklin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1629.119000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-74.093490, 44.137615],\n\t\t\t\t\t\t[-74.281870, 44.120552],\n\t\t\t\t\t\t[-74.535156, 44.099250],\n\t\t\t\t\t\t[-74.525683, 44.170636],\n\t\t\t\t\t\t[-74.641872, 44.952621],\n\t\t\t\t\t\t[-74.720307, 44.953011],\n\t\t\t\t\t\t[-74.724980, 45.005915],\n\t\t\t\t\t\t[-74.702018, 45.003322],\n\t\t\t\t\t\t[-74.291307, 44.992058],\n\t\t\t\t\t\t[-74.146814, 44.991500],\n\t\t\t\t\t\t[-74.027392, 44.995765],\n\t\t\t\t\t\t[-73.986382, 44.707773],\n\t\t\t\t\t\t[-73.966148, 44.709118],\n\t\t\t\t\t\t[-73.909687, 44.429699],\n\t\t\t\t\t\t[-74.141424, 44.407268],\n\t\t\t\t\t\t[-74.127560, 44.330211],\n\t\t\t\t\t\t[-74.093490, 44.137615]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36035\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"035\",\n\t\t\t\t\"NAME\": \"Fulton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 495.469000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-74.097467, 42.982934],\n\t\t\t\t\t\t[-74.289304, 42.984415],\n\t\t\t\t\t\t[-74.488844, 42.985118],\n\t\t\t\t\t\t[-74.542367, 42.985530],\n\t\t\t\t\t\t[-74.759895, 43.047423],\n\t\t\t\t\t\t[-74.696333, 43.173515],\n\t\t\t\t\t\t[-74.712615, 43.286143],\n\t\t\t\t\t\t[-74.534657, 43.228115],\n\t\t\t\t\t\t[-74.326378, 43.241635],\n\t\t\t\t\t\t[-74.220902, 43.221403],\n\t\t\t\t\t\t[-74.140147, 43.253979],\n\t\t\t\t\t\t[-74.097467, 42.982934]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36039\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"039\",\n\t\t\t\t\"NAME\": \"Greene\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 647.161000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-74.451713, 42.169225],\n\t\t\t\t\t\t[-74.537310, 42.201424],\n\t\t\t\t\t\t[-74.443506, 42.355017],\n\t\t\t\t\t\t[-74.244692, 42.377159],\n\t\t\t\t\t\t[-74.254303, 42.408207],\n\t\t\t\t\t\t[-73.783721, 42.464231],\n\t\t\t\t\t\t[-73.789502, 42.267738],\n\t\t\t\t\t\t[-73.910675, 42.127293],\n\t\t\t\t\t\t[-74.042393, 42.170386],\n\t\t\t\t\t\t[-74.074797, 42.096589],\n\t\t\t\t\t\t[-74.307571, 42.114346],\n\t\t\t\t\t\t[-74.451713, 42.169225]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40131\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"131\",\n\t\t\t\t\"NAME\": \"Rogers\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 675.632000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.726408, 36.162496],\n\t\t\t\t\t\t[-95.730293, 36.162288],\n\t\t\t\t\t\t[-95.732010, 36.162498],\n\t\t\t\t\t\t[-95.743981, 36.162498],\n\t\t\t\t\t\t[-95.745119, 36.162823],\n\t\t\t\t\t\t[-95.747764, 36.162498],\n\t\t\t\t\t\t[-95.751545, 36.162723],\n\t\t\t\t\t\t[-95.761650, 36.162750],\n\t\t\t\t\t\t[-95.815400, 36.162630],\n\t\t\t\t\t\t[-95.812680, 36.423560],\n\t\t\t\t\t\t[-95.812449, 36.597516],\n\t\t\t\t\t\t[-95.809617, 36.597476],\n\t\t\t\t\t\t[-95.660770, 36.597520],\n\t\t\t\t\t\t[-95.431570, 36.597540],\n\t\t\t\t\t\t[-95.328370, 36.597630],\n\t\t\t\t\t\t[-95.328170, 36.510240],\n\t\t\t\t\t\t[-95.435610, 36.510160],\n\t\t\t\t\t\t[-95.439970, 36.075200],\n\t\t\t\t\t\t[-95.571525, 36.075282],\n\t\t\t\t\t\t[-95.618520, 36.162512],\n\t\t\t\t\t\t[-95.726408, 36.162496]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40135\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"135\",\n\t\t\t\t\"NAME\": \"Sequoyah\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 673.271000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.463318, 35.582660],\n\t\t\t\t\t\t[-94.431789, 35.397659],\n\t\t\t\t\t\t[-94.431215, 35.394290],\n\t\t\t\t\t\t[-94.433915, 35.387391],\n\t\t\t\t\t\t[-94.433742, 35.386467],\n\t\t\t\t\t\t[-94.493889, 35.301223],\n\t\t\t\t\t\t[-94.594801, 35.327974],\n\t\t\t\t\t\t[-94.668796, 35.295029],\n\t\t\t\t\t\t[-94.750224, 35.356969],\n\t\t\t\t\t\t[-94.813629, 35.323344],\n\t\t\t\t\t\t[-94.911917, 35.346651],\n\t\t\t\t\t\t[-94.901832, 35.397940],\n\t\t\t\t\t\t[-95.049933, 35.458894],\n\t\t\t\t\t\t[-95.132437, 35.526196],\n\t\t\t\t\t\t[-95.127464, 35.638894],\n\t\t\t\t\t\t[-94.807297, 35.638604],\n\t\t\t\t\t\t[-94.472647, 35.638556],\n\t\t\t\t\t\t[-94.465272, 35.594037],\n\t\t\t\t\t\t[-94.464457, 35.588909],\n\t\t\t\t\t\t[-94.464097, 35.587265],\n\t\t\t\t\t\t[-94.463318, 35.582660]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40137\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"137\",\n\t\t\t\t\"NAME\": \"Stephens\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 870.244000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.142148, 34.506994],\n\t\t\t\t\t\t[-98.141799, 34.681158],\n\t\t\t\t\t\t[-98.089098, 34.681119],\n\t\t\t\t\t\t[-98.087756, 34.681255],\n\t\t\t\t\t\t[-97.668425, 34.681344],\n\t\t\t\t\t\t[-97.562757, 34.681147],\n\t\t\t\t\t\t[-97.562323, 34.507036],\n\t\t\t\t\t\t[-97.562575, 34.289182],\n\t\t\t\t\t\t[-98.139226, 34.289775],\n\t\t\t\t\t\t[-98.139237, 34.507003],\n\t\t\t\t\t\t[-98.142148, 34.506994]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40143\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"143\",\n\t\t\t\t\"NAME\": \"Tulsa\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 570.246000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.029544, 35.988387],\n\t\t\t\t\t\t[-96.029583, 36.075366],\n\t\t\t\t\t\t[-96.297786, 36.075779],\n\t\t\t\t\t\t[-96.297888, 36.162279],\n\t\t\t\t\t\t[-96.268287, 36.161980],\n\t\t\t\t\t\t[-96.001055, 36.161294],\n\t\t\t\t\t\t[-96.001171, 36.423686],\n\t\t\t\t\t\t[-95.812680, 36.423560],\n\t\t\t\t\t\t[-95.815400, 36.162630],\n\t\t\t\t\t\t[-95.761650, 36.162750],\n\t\t\t\t\t\t[-95.761687, 35.900811],\n\t\t\t\t\t\t[-95.819964, 35.855900],\n\t\t\t\t\t\t[-96.033118, 35.856824],\n\t\t\t\t\t\t[-96.029544, 35.988387]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40145\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"145\",\n\t\t\t\t\"NAME\": \"Wagoner\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 561.555000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.726408, 36.162496],\n\t\t\t\t\t\t[-95.618520, 36.162512],\n\t\t\t\t\t\t[-95.571525, 36.075282],\n\t\t\t\t\t\t[-95.439970, 36.075200],\n\t\t\t\t\t\t[-95.207946, 36.074708],\n\t\t\t\t\t\t[-95.278701, 35.964102],\n\t\t\t\t\t\t[-95.231459, 35.851195],\n\t\t\t\t\t\t[-95.265679, 35.813266],\n\t\t\t\t\t\t[-95.638313, 35.787596],\n\t\t\t\t\t\t[-95.650420, 35.856756],\n\t\t\t\t\t\t[-95.766166, 35.856403],\n\t\t\t\t\t\t[-95.805637, 35.856577],\n\t\t\t\t\t\t[-95.806224, 35.856028],\n\t\t\t\t\t\t[-95.819964, 35.855900],\n\t\t\t\t\t\t[-95.761687, 35.900811],\n\t\t\t\t\t\t[-95.761650, 36.162750],\n\t\t\t\t\t\t[-95.751545, 36.162723],\n\t\t\t\t\t\t[-95.747764, 36.162498],\n\t\t\t\t\t\t[-95.745119, 36.162823],\n\t\t\t\t\t\t[-95.743981, 36.162498],\n\t\t\t\t\t\t[-95.732010, 36.162498],\n\t\t\t\t\t\t[-95.730293, 36.162288],\n\t\t\t\t\t\t[-95.726408, 36.162496]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40149\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"149\",\n\t\t\t\t\"NAME\": \"Washita\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1003.167000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.621054, 35.097352],\n\t\t\t\t\t\t[-98.750344, 35.116343],\n\t\t\t\t\t\t[-99.360226, 35.116738],\n\t\t\t\t\t\t[-99.364217, 35.465328],\n\t\t\t\t\t\t[-98.623336, 35.464225],\n\t\t\t\t\t\t[-98.621054, 35.097352]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US41003\",\n\t\t\t\t\"STATE\": \"41\",\n\t\t\t\t\"COUNTY\": \"003\",\n\t\t\t\t\"NAME\": \"Benton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 675.941000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-123.602566, 44.721191],\n\t\t\t\t\t\t[-123.580757, 44.719441],\n\t\t\t\t\t\t[-123.347514, 44.720105],\n\t\t\t\t\t\t[-123.149058, 44.720277],\n\t\t\t\t\t\t[-123.073643, 44.657331],\n\t\t\t\t\t\t[-123.164428, 44.637507],\n\t\t\t\t\t\t[-123.260338, 44.555391],\n\t\t\t\t\t\t[-123.214683, 44.507681],\n\t\t\t\t\t\t[-123.205287, 44.443038],\n\t\t\t\t\t\t[-123.243600, 44.378545],\n\t\t\t\t\t\t[-123.183980, 44.283691],\n\t\t\t\t\t\t[-123.775420, 44.283561],\n\t\t\t\t\t\t[-123.816931, 44.344804],\n\t\t\t\t\t\t[-123.715212, 44.360569],\n\t\t\t\t\t\t[-123.720420, 44.433053],\n\t\t\t\t\t\t[-123.597217, 44.432890],\n\t\t\t\t\t\t[-123.602566, 44.721191]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US41005\",\n\t\t\t\t\"STATE\": \"41\",\n\t\t\t\t\"COUNTY\": \"005\",\n\t\t\t\t\"NAME\": \"Clackamas\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1870.322000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-121.696808, 45.258017],\n\t\t\t\t\t\t[-121.681033, 45.250788],\n\t\t\t\t\t\t[-121.682607, 45.228988],\n\t\t\t\t\t\t[-121.701557, 45.230198],\n\t\t\t\t\t\t[-121.745966, 45.186272],\n\t\t\t\t\t\t[-121.659355, 45.066511],\n\t\t\t\t\t\t[-121.805051, 45.011310],\n\t\t\t\t\t\t[-121.734167, 44.885782],\n\t\t\t\t\t\t[-122.395327, 44.885734],\n\t\t\t\t\t\t[-122.508396, 44.919805],\n\t\t\t\t\t\t[-122.788386, 45.130129],\n\t\t\t\t\t\t[-122.738988, 45.259532],\n\t\t\t\t\t\t[-122.849723, 45.259654],\n\t\t\t\t\t\t[-122.867816, 45.259585],\n\t\t\t\t\t\t[-122.868009, 45.317376],\n\t\t\t\t\t\t[-122.743741, 45.332010],\n\t\t\t\t\t\t[-122.744065, 45.433283],\n\t\t\t\t\t\t[-122.648725, 45.432718],\n\t\t\t\t\t\t[-122.651305, 45.436541],\n\t\t\t\t\t\t[-122.645205, 45.441641],\n\t\t\t\t\t\t[-122.652605, 45.445741],\n\t\t\t\t\t\t[-122.660979, 45.457819],\n\t\t\t\t\t\t[-121.820394, 45.461666],\n\t\t\t\t\t\t[-121.696889, 45.373758],\n\t\t\t\t\t\t[-121.696808, 45.258017]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US41011\",\n\t\t\t\t\"STATE\": \"41\",\n\t\t\t\t\"COUNTY\": \"011\",\n\t\t\t\t\"NAME\": \"Coos\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1596.173000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-123.812093, 42.789433],\n\t\t\t\t\t\t[-124.132985, 42.666379],\n\t\t\t\t\t\t[-124.141977, 42.849334],\n\t\t\t\t\t\t[-124.257111, 42.954757],\n\t\t\t\t\t\t[-124.479344, 42.954970],\n\t\t\t\t\t\t[-124.462619, 42.991430],\n\t\t\t\t\t\t[-124.456918, 43.000315],\n\t\t\t\t\t\t[-124.436198, 43.071312],\n\t\t\t\t\t\t[-124.432236, 43.097383],\n\t\t\t\t\t\t[-124.434451, 43.115986],\n\t\t\t\t\t\t[-124.424113, 43.126859],\n\t\t\t\t\t\t[-124.401726, 43.184896],\n\t\t\t\t\t\t[-124.395302, 43.211101],\n\t\t\t\t\t\t[-124.395607, 43.223908],\n\t\t\t\t\t\t[-124.382460, 43.270167],\n\t\t\t\t\t\t[-124.388891, 43.290523],\n\t\t\t\t\t\t[-124.393988, 43.299260],\n\t\t\t\t\t\t[-124.400404, 43.302121],\n\t\t\t\t\t\t[-124.402814, 43.305872],\n\t\t\t\t\t\t[-124.387642, 43.325968],\n\t\t\t\t\t\t[-124.373037, 43.338953],\n\t\t\t\t\t\t[-124.353332, 43.342667],\n\t\t\t\t\t\t[-124.341587, 43.351337],\n\t\t\t\t\t\t[-124.315012, 43.388389],\n\t\t\t\t\t\t[-124.286896, 43.436296],\n\t\t\t\t\t\t[-124.255609, 43.502172],\n\t\t\t\t\t\t[-124.233534, 43.557130],\n\t\t\t\t\t\t[-124.218876, 43.610319],\n\t\t\t\t\t\t[-123.875424, 43.608254],\n\t\t\t\t\t\t[-123.875529, 43.515949],\n\t\t\t\t\t\t[-123.816834, 43.516030],\n\t\t\t\t\t\t[-123.817707, 43.431237],\n\t\t\t\t\t\t[-123.764005, 43.432237],\n\t\t\t\t\t\t[-123.764000, 43.257935],\n\t\t\t\t\t\t[-123.703798, 43.257835],\n\t\t\t\t\t\t[-123.701989, 43.087288],\n\t\t\t\t\t\t[-123.760630, 43.083127],\n\t\t\t\t\t\t[-123.762095, 42.996036],\n\t\t\t\t\t\t[-123.820798, 42.995935],\n\t\t\t\t\t\t[-123.812093, 42.789433]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US41013\",\n\t\t\t\t\"STATE\": \"41\",\n\t\t\t\t\"COUNTY\": \"013\",\n\t\t\t\t\"NAME\": \"Crook\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2979.086000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-121.107344, 44.390542],\n\t\t\t\t\t\t[-120.988540, 44.390045],\n\t\t\t\t\t\t[-120.988721, 44.476444],\n\t\t\t\t\t\t[-120.827177, 44.476633],\n\t\t\t\t\t\t[-120.827342, 44.562849],\n\t\t\t\t\t\t[-120.385526, 44.563954],\n\t\t\t\t\t\t[-120.385823, 44.437556],\n\t\t\t\t\t\t[-120.021841, 44.438558],\n\t\t\t\t\t\t[-120.020663, 44.389651],\n\t\t\t\t\t\t[-119.899010, 44.389537],\n\t\t\t\t\t\t[-119.898796, 44.306662],\n\t\t\t\t\t\t[-119.655586, 44.306964],\n\t\t\t\t\t\t[-119.657577, 43.959051],\n\t\t\t\t\t\t[-119.775653, 43.959068],\n\t\t\t\t\t\t[-119.777526, 43.698081],\n\t\t\t\t\t\t[-119.898172, 43.698323],\n\t\t\t\t\t\t[-120.258018, 43.698762],\n\t\t\t\t\t\t[-120.257893, 43.785259],\n\t\t\t\t\t\t[-120.378508, 43.785033],\n\t\t\t\t\t\t[-120.378900, 43.871955],\n\t\t\t\t\t\t[-120.747946, 43.871266],\n\t\t\t\t\t\t[-120.748317, 43.957068],\n\t\t\t\t\t\t[-120.986527, 43.960943],\n\t\t\t\t\t\t[-120.987333, 44.133843],\n\t\t\t\t\t\t[-121.102637, 44.138042],\n\t\t\t\t\t\t[-121.107344, 44.390542]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US41021\",\n\t\t\t\t\"STATE\": \"41\",\n\t\t\t\t\"COUNTY\": \"021\",\n\t\t\t\t\"NAME\": \"Gilliam\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1204.809000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-120.653559, 45.737237],\n\t\t\t\t\t\t[-120.634968, 45.745847],\n\t\t\t\t\t\t[-120.591166, 45.746547],\n\t\t\t\t\t\t[-120.559465, 45.738348],\n\t\t\t\t\t\t[-120.521964, 45.709848],\n\t\t\t\t\t\t[-120.505863, 45.700048],\n\t\t\t\t\t\t[-120.482362, 45.694449],\n\t\t\t\t\t\t[-120.403960, 45.699249],\n\t\t\t\t\t\t[-120.210754, 45.725951],\n\t\t\t\t\t\t[-120.170453, 45.761951],\n\t\t\t\t\t\t[-120.141352, 45.773152],\n\t\t\t\t\t\t[-120.001148, 45.811902],\n\t\t\t\t\t\t[-119.999506, 45.812199],\n\t\t\t\t\t\t[-120.006740, 45.257454],\n\t\t\t\t\t\t[-119.882037, 45.255956],\n\t\t\t\t\t\t[-119.883034, 45.169657],\n\t\t\t\t\t\t[-119.760125, 45.167580],\n\t\t\t\t\t\t[-119.790426, 45.067761],\n\t\t\t\t\t\t[-120.495247, 45.068549],\n\t\t\t\t\t\t[-120.494548, 45.074650],\n\t\t\t\t\t\t[-120.503549, 45.082950],\n\t\t\t\t\t\t[-120.462548, 45.101150],\n\t\t\t\t\t\t[-120.481253, 45.192750],\n\t\t\t\t\t\t[-120.540256, 45.217049],\n\t\t\t\t\t\t[-120.525059, 45.405249],\n\t\t\t\t\t\t[-120.495859, 45.465349],\n\t\t\t\t\t\t[-120.357839, 45.533854],\n\t\t\t\t\t\t[-120.653559, 45.737237]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US41027\",\n\t\t\t\t\"STATE\": \"41\",\n\t\t\t\t\"COUNTY\": \"027\",\n\t\t\t\t\"NAME\": \"Hood River\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 521.949000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-121.908267, 45.654399],\n\t\t\t\t\t\t[-121.900858, 45.662009],\n\t\t\t\t\t\t[-121.901855, 45.670716],\n\t\t\t\t\t\t[-121.867167, 45.693277],\n\t\t\t\t\t\t[-121.820055, 45.704649],\n\t\t\t\t\t\t[-121.811304, 45.706761],\n\t\t\t\t\t\t[-121.735104, 45.694039],\n\t\t\t\t\t\t[-121.707358, 45.694809],\n\t\t\t\t\t\t[-121.626185, 45.705915],\n\t\t\t\t\t\t[-121.533106, 45.726541],\n\t\t\t\t\t\t[-121.522392, 45.724677],\n\t\t\t\t\t\t[-121.462849, 45.701367],\n\t\t\t\t\t\t[-121.441045, 45.697270],\n\t\t\t\t\t\t[-121.440612, 45.519301],\n\t\t\t\t\t\t[-121.482525, 45.519619],\n\t\t\t\t\t\t[-121.481527, 45.258279],\n\t\t\t\t\t\t[-121.696808, 45.258017],\n\t\t\t\t\t\t[-121.696889, 45.373758],\n\t\t\t\t\t\t[-121.820394, 45.461666],\n\t\t\t\t\t\t[-121.906742, 45.520497],\n\t\t\t\t\t\t[-121.922242, 45.648495],\n\t\t\t\t\t\t[-121.908267, 45.654399]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26075\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"075\",\n\t\t\t\t\"NAME\": \"Jackson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 701.666000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.131963, 42.071577],\n\t\t\t\t\t\t[-84.363297, 42.073456],\n\t\t\t\t\t\t[-84.709556, 42.070366],\n\t\t\t\t\t\t[-84.718493, 42.421520],\n\t\t\t\t\t\t[-84.600403, 42.421984],\n\t\t\t\t\t\t[-84.140713, 42.424611],\n\t\t\t\t\t\t[-84.131136, 42.424567],\n\t\t\t\t\t\t[-84.131963, 42.071577]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26079\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"079\",\n\t\t\t\t\"NAME\": \"Kalkaska\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 559.865000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.850929, 44.511069],\n\t\t\t\t\t\t[-85.334000, 44.512303],\n\t\t\t\t\t\t[-85.332836, 44.812372],\n\t\t\t\t\t\t[-85.291716, 44.859608],\n\t\t\t\t\t\t[-84.847309, 44.858037],\n\t\t\t\t\t\t[-84.850929, 44.511069]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26081\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"081\",\n\t\t\t\t\"NAME\": \"Kent\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 846.948000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.790448, 43.293003],\n\t\t\t\t\t\t[-85.571636, 43.294252],\n\t\t\t\t\t\t[-85.562538, 43.294271],\n\t\t\t\t\t\t[-85.312376, 43.294205],\n\t\t\t\t\t\t[-85.312513, 43.118793],\n\t\t\t\t\t\t[-85.309626, 42.769878],\n\t\t\t\t\t\t[-85.545564, 42.768139],\n\t\t\t\t\t\t[-85.712659, 42.768237],\n\t\t\t\t\t\t[-85.782498, 42.768200],\n\t\t\t\t\t\t[-85.785276, 42.986911],\n\t\t\t\t\t\t[-85.788503, 43.030877],\n\t\t\t\t\t\t[-85.790662, 43.205167],\n\t\t\t\t\t\t[-85.790448, 43.293003]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26087\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"087\",\n\t\t\t\t\"NAME\": \"Lapeer\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 643.014000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.460733, 43.223131],\n\t\t\t\t\t\t[-83.351709, 43.235193],\n\t\t\t\t\t\t[-83.354418, 43.322257],\n\t\t\t\t\t\t[-83.120396, 43.327049],\n\t\t\t\t\t\t[-83.119027, 43.283680],\n\t\t\t\t\t\t[-83.000430, 43.284913],\n\t\t\t\t\t\t[-82.996257, 43.154099],\n\t\t\t\t\t\t[-82.983647, 42.893741],\n\t\t\t\t\t\t[-83.003000, 42.893181],\n\t\t\t\t\t\t[-83.023573, 42.890543],\n\t\t\t\t\t\t[-83.102891, 42.888647],\n\t\t\t\t\t\t[-83.453364, 42.880432],\n\t\t\t\t\t\t[-83.460733, 43.223131]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26093\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"093\",\n\t\t\t\t\"NAME\": \"Livingston\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 565.254000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.686493, 42.783263],\n\t\t\t\t\t\t[-83.682727, 42.695582],\n\t\t\t\t\t\t[-83.664808, 42.431179],\n\t\t\t\t\t\t[-83.944650, 42.424149],\n\t\t\t\t\t\t[-84.131136, 42.424567],\n\t\t\t\t\t\t[-84.140713, 42.424611],\n\t\t\t\t\t\t[-84.151966, 42.710731],\n\t\t\t\t\t\t[-84.158189, 42.776639],\n\t\t\t\t\t\t[-83.922516, 42.780821],\n\t\t\t\t\t\t[-83.686493, 42.783263]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26095\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"095\",\n\t\t\t\t\"NAME\": \"Luce\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 899.078000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.864549, 46.690182],\n\t\t\t\t\t\t[-85.857755, 46.689810],\n\t\t\t\t\t\t[-85.856620, 46.689748],\n\t\t\t\t\t\t[-85.841057, 46.688896],\n\t\t\t\t\t\t[-85.840211, 46.688753],\n\t\t\t\t\t\t[-85.815747, 46.684610],\n\t\t\t\t\t\t[-85.796641, 46.681374],\n\t\t\t\t\t\t[-85.794923, 46.681083],\n\t\t\t\t\t\t[-85.792506, 46.680880],\n\t\t\t\t\t\t[-85.751345, 46.677430],\n\t\t\t\t\t\t[-85.750606, 46.677368],\n\t\t\t\t\t\t[-85.742834, 46.677322],\n\t\t\t\t\t\t[-85.739929, 46.677305],\n\t\t\t\t\t\t[-85.738624, 46.677298],\n\t\t\t\t\t\t[-85.714415, 46.677156],\n\t\t\t\t\t\t[-85.700945, 46.678114],\n\t\t\t\t\t\t[-85.674011, 46.680030],\n\t\t\t\t\t\t[-85.668753, 46.680404],\n\t\t\t\t\t\t[-85.663673, 46.680227],\n\t\t\t\t\t\t[-85.647387, 46.679658],\n\t\t\t\t\t\t[-85.624573, 46.678862],\n\t\t\t\t\t\t[-85.617470, 46.678054],\n\t\t\t\t\t\t[-85.595806, 46.675590],\n\t\t\t\t\t\t[-85.594158, 46.675402],\n\t\t\t\t\t\t[-85.593558, 46.675334],\n\t\t\t\t\t\t[-85.587741, 46.674672],\n\t\t\t\t\t\t[-85.587345, 46.674627],\n\t\t\t\t\t\t[-85.584989, 46.674608],\n\t\t\t\t\t\t[-85.558762, 46.674395],\n\t\t\t\t\t\t[-85.547593, 46.674304],\n\t\t\t\t\t\t[-85.542517, 46.674263],\n\t\t\t\t\t\t[-85.509510, 46.675786],\n\t\t\t\t\t\t[-85.482978, 46.680283],\n\t\t\t\t\t\t[-85.482096, 46.680432],\n\t\t\t\t\t\t[-85.369805, 46.713754],\n\t\t\t\t\t\t[-85.362572, 46.716548],\n\t\t\t\t\t\t[-85.347047, 46.722546],\n\t\t\t\t\t\t[-85.296395, 46.742114],\n\t\t\t\t\t\t[-85.289846, 46.744644],\n\t\t\t\t\t\t[-85.257999, 46.753078],\n\t\t\t\t\t\t[-85.256860, 46.753380],\n\t\t\t\t\t\t[-85.256031, 46.753481],\n\t\t\t\t\t\t[-85.237873, 46.755703],\n\t\t\t\t\t\t[-85.237839, 46.245421],\n\t\t\t\t\t\t[-85.865025, 46.244631],\n\t\t\t\t\t\t[-85.864932, 46.504758],\n\t\t\t\t\t\t[-85.864549, 46.690182]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26099\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"099\",\n\t\t\t\t\"NAME\": \"Macomb\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 479.223000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.083393, 42.447153],\n\t\t\t\t\t\t[-83.086882, 42.534792],\n\t\t\t\t\t\t[-83.088157, 42.549379],\n\t\t\t\t\t\t[-83.088776, 42.563843],\n\t\t\t\t\t\t[-83.099432, 42.800550],\n\t\t\t\t\t\t[-83.102891, 42.888647],\n\t\t\t\t\t\t[-83.023573, 42.890543],\n\t\t\t\t\t\t[-83.003000, 42.893181],\n\t\t\t\t\t\t[-82.983647, 42.893741],\n\t\t\t\t\t\t[-82.739010, 42.897541],\n\t\t\t\t\t\t[-82.707841, 42.683510],\n\t\t\t\t\t\t[-82.726366, 42.682768],\n\t\t\t\t\t\t[-82.753317, 42.669732],\n\t\t\t\t\t\t[-82.765583, 42.655725],\n\t\t\t\t\t\t[-82.780817, 42.652232],\n\t\t\t\t\t\t[-82.792418, 42.655132],\n\t\t\t\t\t\t[-82.797318, 42.654032],\n\t\t\t\t\t\t[-82.813518, 42.640833],\n\t\t\t\t\t\t[-82.820118, 42.626333],\n\t\t\t\t\t\t[-82.819017, 42.616333],\n\t\t\t\t\t\t[-82.811017, 42.610933],\n\t\t\t\t\t\t[-82.789017, 42.603434],\n\t\t\t\t\t\t[-82.787573, 42.598300],\n\t\t\t\t\t\t[-82.788977, 42.592661],\n\t\t\t\t\t\t[-82.788116, 42.582835],\n\t\t\t\t\t\t[-82.781514, 42.571634],\n\t\t\t\t\t\t[-82.782414, 42.564834],\n\t\t\t\t\t\t[-82.784514, 42.563634],\n\t\t\t\t\t\t[-82.789114, 42.568434],\n\t\t\t\t\t\t[-82.796715, 42.571034],\n\t\t\t\t\t\t[-82.821016, 42.570734],\n\t\t\t\t\t\t[-82.834216, 42.567849],\n\t\t\t\t\t\t[-82.845916, 42.560634],\n\t\t\t\t\t\t[-82.849316, 42.555734],\n\t\t\t\t\t\t[-82.851016, 42.548935],\n\t\t\t\t\t\t[-82.859316, 42.541935],\n\t\t\t\t\t\t[-82.860213, 42.540842],\n\t\t\t\t\t\t[-82.874416, 42.523535],\n\t\t\t\t\t\t[-82.882316, 42.501035],\n\t\t\t\t\t\t[-82.883915, 42.471836],\n\t\t\t\t\t\t[-82.870572, 42.451235],\n\t\t\t\t\t\t[-83.083393, 42.447153]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26101\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"101\",\n\t\t\t\t\"NAME\": \"Manistee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 542.149000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.386867, 44.178685],\n\t\t\t\t\t\t[-86.380188, 44.189272],\n\t\t\t\t\t\t[-86.380062, 44.189472],\n\t\t\t\t\t\t[-86.362847, 44.208113],\n\t\t\t\t\t\t[-86.354592, 44.223811],\n\t\t\t\t\t\t[-86.354313, 44.224342],\n\t\t\t\t\t\t[-86.351638, 44.229429],\n\t\t\t\t\t\t[-86.349294, 44.235459],\n\t\t\t\t\t\t[-86.343793, 44.249608],\n\t\t\t\t\t\t[-86.327287, 44.263057],\n\t\t\t\t\t\t[-86.326902, 44.263781],\n\t\t\t\t\t\t[-86.319063, 44.278503],\n\t\t\t\t\t\t[-86.318328, 44.279884],\n\t\t\t\t\t\t[-86.316651, 44.283034],\n\t\t\t\t\t\t[-86.316513, 44.283293],\n\t\t\t\t\t\t[-86.316025, 44.284210],\n\t\t\t\t\t\t[-86.313612, 44.287882],\n\t\t\t\t\t\t[-86.312774, 44.289158],\n\t\t\t\t\t\t[-86.311943, 44.290422],\n\t\t\t\t\t\t[-86.304691, 44.301459],\n\t\t\t\t\t\t[-86.304433, 44.301852],\n\t\t\t\t\t\t[-86.300264, 44.308197],\n\t\t\t\t\t\t[-86.268710, 44.345324],\n\t\t\t\t\t\t[-86.251926, 44.400984],\n\t\t\t\t\t\t[-86.248083, 44.420946],\n\t\t\t\t\t\t[-86.248320, 44.434758],\n\t\t\t\t\t\t[-86.251843, 44.451632],\n\t\t\t\t\t\t[-86.251605, 44.465443],\n\t\t\t\t\t\t[-86.248914, 44.483004],\n\t\t\t\t\t\t[-86.248897, 44.483024],\n\t\t\t\t\t\t[-86.248816, 44.483116],\n\t\t\t\t\t\t[-86.243745, 44.488929],\n\t\t\t\t\t\t[-86.238743, 44.501682],\n\t\t\t\t\t\t[-86.233503, 44.518278],\n\t\t\t\t\t\t[-85.817802, 44.512969],\n\t\t\t\t\t\t[-85.821186, 44.164197],\n\t\t\t\t\t\t[-86.041988, 44.167091],\n\t\t\t\t\t\t[-86.386867, 44.178685]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26115\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"115\",\n\t\t\t\t\"NAME\": \"Monroe\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 549.394000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.372198, 41.874122],\n\t\t\t\t\t\t[-83.372445, 41.874477],\n\t\t\t\t\t\t[-83.379705, 41.871729],\n\t\t\t\t\t\t[-83.381955, 41.870877],\n\t\t\t\t\t\t[-83.389289, 41.861668],\n\t\t\t\t\t\t[-83.393822, 41.855976],\n\t\t\t\t\t\t[-83.396220, 41.852965],\n\t\t\t\t\t\t[-83.408220, 41.832654],\n\t\t\t\t\t\t[-83.409596, 41.830325],\n\t\t\t\t\t\t[-83.422316, 41.822278],\n\t\t\t\t\t\t[-83.422391, 41.822255],\n\t\t\t\t\t\t[-83.425393, 41.821316],\n\t\t\t\t\t\t[-83.426321, 41.821026],\n\t\t\t\t\t\t[-83.431183, 41.819506],\n\t\t\t\t\t\t[-83.434204, 41.818562],\n\t\t\t\t\t\t[-83.435946, 41.816823],\n\t\t\t\t\t\t[-83.436298, 41.816471],\n\t\t\t\t\t\t[-83.439612, 41.813162],\n\t\t\t\t\t\t[-83.441668, 41.808646],\n\t\t\t\t\t\t[-83.442316, 41.801190],\n\t\t\t\t\t\t[-83.442521, 41.798830],\n\t\t\t\t\t\t[-83.442843, 41.795121],\n\t\t\t\t\t\t[-83.443364, 41.789118],\n\t\t\t\t\t\t[-83.437935, 41.771086],\n\t\t\t\t\t\t[-83.437516, 41.769694],\n\t\t\t\t\t\t[-83.437231, 41.769150],\n\t\t\t\t\t\t[-83.437197, 41.769085],\n\t\t\t\t\t\t[-83.435571, 41.765983],\n\t\t\t\t\t\t[-83.434238, 41.763439],\n\t\t\t\t\t\t[-83.432973, 41.761025],\n\t\t\t\t\t\t[-83.432832, 41.760756],\n\t\t\t\t\t\t[-83.432078, 41.759316],\n\t\t\t\t\t\t[-83.431951, 41.759074],\n\t\t\t\t\t\t[-83.431103, 41.757457],\n\t\t\t\t\t\t[-83.427377, 41.750346],\n\t\t\t\t\t\t[-83.427336, 41.750267],\n\t\t\t\t\t\t[-83.427308, 41.750214],\n\t\t\t\t\t\t[-83.426430, 41.747639],\n\t\t\t\t\t\t[-83.424180, 41.741042],\n\t\t\t\t\t\t[-83.424076, 41.740738],\n\t\t\t\t\t\t[-83.424155, 41.740710],\n\t\t\t\t\t\t[-83.434360, 41.737058],\n\t\t\t\t\t\t[-83.451897, 41.734486],\n\t\t\t\t\t\t[-83.453832, 41.732647],\n\t\t\t\t\t\t[-83.497733, 41.731847],\n\t\t\t\t\t\t[-83.499733, 41.731647],\n\t\t\t\t\t\t[-83.503433, 41.731547],\n\t\t\t\t\t\t[-83.504334, 41.731547],\n\t\t\t\t\t\t[-83.585235, 41.729348],\n\t\t\t\t\t\t[-83.593835, 41.729148],\n\t\t\t\t\t\t[-83.595235, 41.729148],\n\t\t\t\t\t\t[-83.636636, 41.727849],\n\t\t\t\t\t\t[-83.639636, 41.727749],\n\t\t\t\t\t\t[-83.665937, 41.726949],\n\t\t\t\t\t\t[-83.685337, 41.726449],\n\t\t\t\t\t\t[-83.763155, 41.723910],\n\t\t\t\t\t\t[-83.773922, 42.082430],\n\t\t\t\t\t\t[-83.539396, 42.085598],\n\t\t\t\t\t\t[-83.295275, 42.094234],\n\t\t\t\t\t\t[-83.185822, 42.029367],\n\t\t\t\t\t\t[-83.181475, 42.019301],\n\t\t\t\t\t\t[-83.187246, 42.007573],\n\t\t\t\t\t\t[-83.190535, 42.006172],\n\t\t\t\t\t\t[-83.208647, 42.005040],\n\t\t\t\t\t\t[-83.209379, 41.995736],\n\t\t\t\t\t\t[-83.216835, 41.988620],\n\t\t\t\t\t\t[-83.216897, 41.988561],\n\t\t\t\t\t\t[-83.223354, 41.989191],\n\t\t\t\t\t\t[-83.223369, 41.989185],\n\t\t\t\t\t\t[-83.224947, 41.988603],\n\t\t\t\t\t\t[-83.227744, 41.987571],\n\t\t\t\t\t\t[-83.228410, 41.987325],\n\t\t\t\t\t\t[-83.228502, 41.987291],\n\t\t\t\t\t\t[-83.228607, 41.987216],\n\t\t\t\t\t\t[-83.229290, 41.986725],\n\t\t\t\t\t\t[-83.248741, 41.972735],\n\t\t\t\t\t\t[-83.249204, 41.972402],\n\t\t\t\t\t\t[-83.249828, 41.971386],\n\t\t\t\t\t\t[-83.255123, 41.962759],\n\t\t\t\t\t\t[-83.256803, 41.960021],\n\t\t\t\t\t\t[-83.257009, 41.959686],\n\t\t\t\t\t\t[-83.257043, 41.958615],\n\t\t\t\t\t\t[-83.257143, 41.955438],\n\t\t\t\t\t\t[-83.257199, 41.953670],\n\t\t\t\t\t\t[-83.257292, 41.950745],\n\t\t\t\t\t\t[-83.269521, 41.939042],\n\t\t\t\t\t\t[-83.270491, 41.939337],\n\t\t\t\t\t\t[-83.287130, 41.944397],\n\t\t\t\t\t\t[-83.292761, 41.944616],\n\t\t\t\t\t\t[-83.293015, 41.944626],\n\t\t\t\t\t\t[-83.295982, 41.944742],\n\t\t\t\t\t\t[-83.298230, 41.944200],\n\t\t\t\t\t\t[-83.299467, 41.943902],\n\t\t\t\t\t\t[-83.302904, 41.943073],\n\t\t\t\t\t\t[-83.303465, 41.942762],\n\t\t\t\t\t\t[-83.305639, 41.941557],\n\t\t\t\t\t\t[-83.315859, 41.935893],\n\t\t\t\t\t\t[-83.326007, 41.924979],\n\t\t\t\t\t\t[-83.326024, 41.924961],\n\t\t\t\t\t\t[-83.326029, 41.924948],\n\t\t\t\t\t\t[-83.327060, 41.922554],\n\t\t\t\t\t\t[-83.330498, 41.914565],\n\t\t\t\t\t\t[-83.332998, 41.908757],\n\t\t\t\t\t\t[-83.333642, 41.907261],\n\t\t\t\t\t\t[-83.334173, 41.903247],\n\t\t\t\t\t\t[-83.334346, 41.901939],\n\t\t\t\t\t\t[-83.335103, 41.896209],\n\t\t\t\t\t\t[-83.335132, 41.895992],\n\t\t\t\t\t\t[-83.335658, 41.892009],\n\t\t\t\t\t\t[-83.335961, 41.889721],\n\t\t\t\t\t\t[-83.341557, 41.879956],\n\t\t\t\t\t\t[-83.359467, 41.867849],\n\t\t\t\t\t\t[-83.366187, 41.865505],\n\t\t\t\t\t\t[-83.372198, 41.874122]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28137\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"137\",\n\t\t\t\t\"NAME\": \"Tate\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 404.759000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.200199, 34.724418],\n\t\t\t\t\t\t[-90.128906, 34.760537],\n\t\t\t\t\t\t[-90.030051, 34.707950],\n\t\t\t\t\t\t[-89.912202, 34.772506],\n\t\t\t\t\t\t[-89.723635, 34.772121],\n\t\t\t\t\t\t[-89.722333, 34.685504],\n\t\t\t\t\t\t[-89.669160, 34.685786],\n\t\t\t\t\t\t[-89.668448, 34.554367],\n\t\t\t\t\t\t[-89.721341, 34.554274],\n\t\t\t\t\t\t[-90.198631, 34.554425],\n\t\t\t\t\t\t[-90.239971, 34.626237],\n\t\t\t\t\t\t[-90.200199, 34.724418]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28141\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"141\",\n\t\t\t\t\"NAME\": \"Tishomingo\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 424.254000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.258111, 34.995463],\n\t\t\t\t\t\t[-88.253825, 34.995553],\n\t\t\t\t\t\t[-88.200064, 34.995634],\n\t\t\t\t\t\t[-88.125038, 34.902227],\n\t\t\t\t\t\t[-88.097888, 34.892202],\n\t\t\t\t\t\t[-88.118407, 34.724292],\n\t\t\t\t\t\t[-88.138719, 34.589215],\n\t\t\t\t\t\t[-88.139246, 34.587795],\n\t\t\t\t\t\t[-88.139988, 34.581703],\n\t\t\t\t\t\t[-88.155305, 34.463087],\n\t\t\t\t\t\t[-88.329193, 34.463571],\n\t\t\t\t\t\t[-88.330699, 34.740721],\n\t\t\t\t\t\t[-88.365472, 34.755604],\n\t\t\t\t\t\t[-88.363531, 34.995590],\n\t\t\t\t\t\t[-88.258111, 34.995463]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28143\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"143\",\n\t\t\t\t\"NAME\": \"Tunica\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 454.668000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.293918, 34.860563],\n\t\t\t\t\t\t[-90.202126, 34.860374],\n\t\t\t\t\t\t[-90.200199, 34.724418],\n\t\t\t\t\t\t[-90.239971, 34.626237],\n\t\t\t\t\t\t[-90.198631, 34.554425],\n\t\t\t\t\t\t[-90.198536, 34.511088],\n\t\t\t\t\t\t[-90.304317, 34.509621],\n\t\t\t\t\t\t[-90.301851, 34.424546],\n\t\t\t\t\t\t[-90.399498, 34.423807],\n\t\t\t\t\t\t[-90.568867, 34.524584],\n\t\t\t\t\t\t[-90.570133, 34.524829],\n\t\t\t\t\t\t[-90.575786, 34.641749],\n\t\t\t\t\t\t[-90.576543, 34.657402],\n\t\t\t\t\t\t[-90.564033, 34.665742],\n\t\t\t\t\t\t[-90.549855, 34.662406],\n\t\t\t\t\t\t[-90.539013, 34.659070],\n\t\t\t\t\t\t[-90.521499, 34.663240],\n\t\t\t\t\t\t[-90.508989, 34.679086],\n\t\t\t\t\t\t[-90.509823, 34.689928],\n\t\t\t\t\t\t[-90.533175, 34.707442],\n\t\t\t\t\t\t[-90.554859, 34.727458],\n\t\t\t\t\t\t[-90.549855, 34.763320],\n\t\t\t\t\t\t[-90.537345, 34.784170],\n\t\t\t\t\t\t[-90.519831, 34.782502],\n\t\t\t\t\t\t[-90.501325, 34.769931],\n\t\t\t\t\t\t[-90.494811, 34.767490],\n\t\t\t\t\t\t[-90.479799, 34.769158],\n\t\t\t\t\t\t[-90.467289, 34.782502],\n\t\t\t\t\t\t[-90.478131, 34.832542],\n\t\t\t\t\t\t[-90.473961, 34.852558],\n\t\t\t\t\t\t[-90.461451, 34.856728],\n\t\t\t\t\t\t[-90.436431, 34.855060],\n\t\t\t\t\t\t[-90.423879, 34.834606],\n\t\t\t\t\t\t[-90.414864, 34.831846],\n\t\t\t\t\t\t[-90.407964, 34.832767],\n\t\t\t\t\t\t[-90.307384, 34.846195],\n\t\t\t\t\t\t[-90.293918, 34.860563]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28153\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"153\",\n\t\t\t\t\"NAME\": \"Wayne\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 810.750000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.943355, 31.824565],\n\t\t\t\t\t\t[-88.932017, 31.825472],\n\t\t\t\t\t\t[-88.926058, 31.825658],\n\t\t\t\t\t\t[-88.910459, 31.826649],\n\t\t\t\t\t\t[-88.622394, 31.857193],\n\t\t\t\t\t\t[-88.469960, 31.893759],\n\t\t\t\t\t\t[-88.471214, 31.851385],\n\t\t\t\t\t\t[-88.471106, 31.850949],\n\t\t\t\t\t\t[-88.464428, 31.697952],\n\t\t\t\t\t\t[-88.464425, 31.697881],\n\t\t\t\t\t\t[-88.459722, 31.624002],\n\t\t\t\t\t\t[-88.459478, 31.621652],\n\t\t\t\t\t\t[-88.449446, 31.435837],\n\t\t\t\t\t\t[-88.841707, 31.433703],\n\t\t\t\t\t\t[-88.943468, 31.433458],\n\t\t\t\t\t\t[-88.943355, 31.824565]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28155\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"155\",\n\t\t\t\t\"NAME\": \"Webster\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 420.940000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.088446, 33.533202],\n\t\t\t\t\t\t[-89.105747, 33.532941],\n\t\t\t\t\t\t[-89.296140, 33.506734],\n\t\t\t\t\t\t[-89.381092, 33.460307],\n\t\t\t\t\t\t[-89.506496, 33.459806],\n\t\t\t\t\t\t[-89.506872, 33.677605],\n\t\t\t\t\t\t[-89.506927, 33.713980],\n\t\t\t\t\t\t[-89.507135, 33.721819],\n\t\t\t\t\t\t[-89.191924, 33.722158],\n\t\t\t\t\t\t[-89.191781, 33.738602],\n\t\t\t\t\t\t[-89.034498, 33.739430],\n\t\t\t\t\t\t[-89.018625, 33.593037],\n\t\t\t\t\t\t[-89.018613, 33.562114],\n\t\t\t\t\t\t[-89.088263, 33.562039],\n\t\t\t\t\t\t[-89.088446, 33.533202]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28157\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"157\",\n\t\t\t\t\"NAME\": \"Wilkinson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 678.106000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.158150, 31.346695],\n\t\t\t\t\t\t[-91.095398, 31.320975],\n\t\t\t\t\t\t[-91.059431, 31.281858],\n\t\t\t\t\t\t[-91.060217, 30.998935],\n\t\t\t\t\t\t[-91.068270, 30.998920],\n\t\t\t\t\t\t[-91.080814, 30.998909],\n\t\t\t\t\t\t[-91.108114, 30.998857],\n\t\t\t\t\t\t[-91.108291, 30.998880],\n\t\t\t\t\t\t[-91.176140, 30.999144],\n\t\t\t\t\t\t[-91.176209, 30.999144],\n\t\t\t\t\t\t[-91.224068, 30.999183],\n\t\t\t\t\t\t[-91.224839, 30.999183],\n\t\t\t\t\t\t[-91.423621, 30.998984],\n\t\t\t\t\t\t[-91.425749, 30.999007],\n\t\t\t\t\t\t[-91.538727, 30.999388],\n\t\t\t\t\t\t[-91.625118, 30.999167],\n\t\t\t\t\t\t[-91.636942, 30.999416],\n\t\t\t\t\t\t[-91.584670, 31.020185],\n\t\t\t\t\t\t[-91.571695, 31.029782],\n\t\t\t\t\t\t[-91.562468, 31.043213],\n\t\t\t\t\t\t[-91.559907, 31.054119],\n\t\t\t\t\t\t[-91.561283, 31.060906],\n\t\t\t\t\t\t[-91.564150, 31.066830],\n\t\t\t\t\t\t[-91.577373, 31.078179],\n\t\t\t\t\t\t[-91.604197, 31.154545],\n\t\t\t\t\t\t[-91.599965, 31.192318],\n\t\t\t\t\t\t[-91.488954, 31.225920],\n\t\t\t\t\t\t[-91.468435, 31.319570],\n\t\t\t\t\t\t[-91.306294, 31.360862],\n\t\t\t\t\t\t[-91.158150, 31.346695]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28163\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"163\",\n\t\t\t\t\"NAME\": \"Yazoo\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 922.947000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.965882, 32.879573],\n\t\t\t\t\t\t[-90.049129, 32.735674],\n\t\t\t\t\t\t[-90.197729, 32.663850],\n\t\t\t\t\t\t[-90.278055, 32.660346],\n\t\t\t\t\t\t[-90.363868, 32.603268],\n\t\t\t\t\t\t[-90.450037, 32.573783],\n\t\t\t\t\t\t[-90.553821, 32.507574],\n\t\t\t\t\t\t[-90.654589, 32.546044],\n\t\t\t\t\t\t[-90.720102, 32.618858],\n\t\t\t\t\t\t[-90.697563, 32.625135],\n\t\t\t\t\t\t[-90.693011, 32.640113],\n\t\t\t\t\t\t[-90.712819, 32.642346],\n\t\t\t\t\t\t[-90.723159, 32.662128],\n\t\t\t\t\t\t[-90.664408, 32.689129],\n\t\t\t\t\t\t[-90.742634, 32.729225],\n\t\t\t\t\t\t[-90.694631, 32.815642],\n\t\t\t\t\t\t[-90.759753, 32.835763],\n\t\t\t\t\t\t[-90.656632, 32.922510],\n\t\t\t\t\t\t[-90.449893, 32.923290],\n\t\t\t\t\t\t[-90.449323, 33.009010],\n\t\t\t\t\t\t[-90.364031, 33.010596],\n\t\t\t\t\t\t[-89.965882, 32.879573]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29007\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"007\",\n\t\t\t\t\"NAME\": \"Audrain\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 692.235000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.314471, 39.246454],\n\t\t\t\t\t\t[-92.313836, 39.249986],\n\t\t\t\t\t\t[-92.310028, 39.347795],\n\t\t\t\t\t\t[-91.717968, 39.339122],\n\t\t\t\t\t\t[-91.718467, 39.324505],\n\t\t\t\t\t\t[-91.438235, 39.318716],\n\t\t\t\t\t\t[-91.409033, 39.142542],\n\t\t\t\t\t\t[-91.629598, 39.147853],\n\t\t\t\t\t\t[-91.633998, 39.059057],\n\t\t\t\t\t\t[-92.110387, 39.064204],\n\t\t\t\t\t\t[-92.104374, 39.239809],\n\t\t\t\t\t\t[-92.314471, 39.246454]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29017\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"017\",\n\t\t\t\t\"NAME\": \"Bollinger\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 617.906000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.866627, 37.126227],\n\t\t\t\t\t\t[-89.959576, 37.127353],\n\t\t\t\t\t\t[-89.959196, 37.054380],\n\t\t\t\t\t\t[-90.111247, 37.041205],\n\t\t\t\t\t\t[-90.110354, 37.085871],\n\t\t\t\t\t\t[-90.223230, 37.086533],\n\t\t\t\t\t\t[-90.217657, 37.314967],\n\t\t\t\t\t\t[-90.145699, 37.312091],\n\t\t\t\t\t\t[-90.146763, 37.597434],\n\t\t\t\t\t\t[-89.861123, 37.599286],\n\t\t\t\t\t\t[-89.866627, 37.126227]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29023\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"023\",\n\t\t\t\t\"NAME\": \"Butler\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 694.669000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.678562, 36.926490],\n\t\t\t\t\t\t[-90.258563, 36.922043],\n\t\t\t\t\t\t[-90.204205, 36.772262],\n\t\t\t\t\t\t[-90.140020, 36.696760],\n\t\t\t\t\t\t[-90.148398, 36.630656],\n\t\t\t\t\t\t[-90.220732, 36.497858],\n\t\t\t\t\t\t[-90.228943, 36.497771],\n\t\t\t\t\t\t[-90.339892, 36.498213],\n\t\t\t\t\t\t[-90.494575, 36.498368],\n\t\t\t\t\t\t[-90.495027, 36.498371],\n\t\t\t\t\t\t[-90.500160, 36.498399],\n\t\t\t\t\t\t[-90.576112, 36.498446],\n\t\t\t\t\t\t[-90.576180, 36.498446],\n\t\t\t\t\t\t[-90.592166, 36.679368],\n\t\t\t\t\t\t[-90.628387, 36.679544],\n\t\t\t\t\t\t[-90.627517, 36.810954],\n\t\t\t\t\t\t[-90.662617, 36.811453],\n\t\t\t\t\t\t[-90.678562, 36.926490]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29029\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"029\",\n\t\t\t\t\"NAME\": \"Camden\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 655.923000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.406872, 37.977802],\n\t\t\t\t\t\t[-92.409231, 37.859180],\n\t\t\t\t\t\t[-92.548934, 37.800470],\n\t\t\t\t\t\t[-92.620181, 37.892521],\n\t\t\t\t\t\t[-92.855384, 37.895736],\n\t\t\t\t\t\t[-93.072447, 37.902627],\n\t\t\t\t\t\t[-93.065199, 38.062479],\n\t\t\t\t\t\t[-93.077692, 38.263092],\n\t\t\t\t\t\t[-92.979558, 38.197734],\n\t\t\t\t\t\t[-92.764963, 38.189534],\n\t\t\t\t\t\t[-92.695886, 38.222031],\n\t\t\t\t\t\t[-92.604976, 38.156815],\n\t\t\t\t\t\t[-92.515979, 38.022336],\n\t\t\t\t\t\t[-92.406275, 38.021179],\n\t\t\t\t\t\t[-92.406872, 37.977802]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29035\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"035\",\n\t\t\t\t\"NAME\": \"Carter\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 507.361000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.678562, 36.926490],\n\t\t\t\t\t\t[-90.662617, 36.811453],\n\t\t\t\t\t\t[-91.115926, 36.823672],\n\t\t\t\t\t\t[-91.224825, 36.825679],\n\t\t\t\t\t\t[-91.222830, 36.883857],\n\t\t\t\t\t\t[-91.217150, 37.086197],\n\t\t\t\t\t\t[-91.017766, 37.095677],\n\t\t\t\t\t\t[-90.964466, 37.053584],\n\t\t\t\t\t\t[-90.779553, 37.050324],\n\t\t\t\t\t\t[-90.678562, 36.926490]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29041\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"041\",\n\t\t\t\t\"NAME\": \"Chariton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 751.181000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.266968, 39.703562],\n\t\t\t\t\t\t[-93.082799, 39.706709],\n\t\t\t\t\t\t[-92.857920, 39.699985],\n\t\t\t\t\t\t[-92.689331, 39.698094],\n\t\t\t\t\t\t[-92.692149, 39.610265],\n\t\t\t\t\t\t[-92.696592, 39.610371],\n\t\t\t\t\t\t[-92.707367, 39.321614],\n\t\t\t\t\t\t[-92.790369, 39.343586],\n\t\t\t\t\t\t[-92.849224, 39.226218],\n\t\t\t\t\t\t[-92.906142, 39.222339],\n\t\t\t\t\t\t[-92.959801, 39.312526],\n\t\t\t\t\t\t[-93.072915, 39.335520],\n\t\t\t\t\t\t[-93.104485, 39.383656],\n\t\t\t\t\t\t[-93.275932, 39.484371],\n\t\t\t\t\t\t[-93.278098, 39.615632],\n\t\t\t\t\t\t[-93.266968, 39.703562]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29045\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"045\",\n\t\t\t\t\"NAME\": \"Clark\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 504.692000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.950812, 40.257210],\n\t\t\t\t\t\t[-91.949747, 40.300832],\n\t\t\t\t\t\t[-91.943114, 40.605913],\n\t\t\t\t\t\t[-91.868401, 40.608059],\n\t\t\t\t\t\t[-91.832481, 40.609797],\n\t\t\t\t\t\t[-91.824826, 40.610191],\n\t\t\t\t\t\t[-91.813968, 40.610526],\n\t\t\t\t\t\t[-91.800133, 40.610953],\n\t\t\t\t\t\t[-91.795374, 40.611101],\n\t\t\t\t\t\t[-91.785916, 40.611488],\n\t\t\t\t\t\t[-91.729115, 40.613640],\n\t\t\t\t\t\t[-91.716769, 40.598530],\n\t\t\t\t\t\t[-91.696359, 40.588148],\n\t\t\t\t\t\t[-91.620071, 40.540817],\n\t\t\t\t\t\t[-91.618028, 40.534030],\n\t\t\t\t\t\t[-91.622362, 40.514362],\n\t\t\t\t\t\t[-91.619486, 40.507134],\n\t\t\t\t\t\t[-91.524612, 40.410765],\n\t\t\t\t\t\t[-91.490977, 40.393484],\n\t\t\t\t\t\t[-91.484507, 40.383900],\n\t\t\t\t\t\t[-91.419422, 40.378264],\n\t\t\t\t\t\t[-91.444833, 40.363170],\n\t\t\t\t\t\t[-91.462140, 40.342414],\n\t\t\t\t\t\t[-91.489868, 40.286048],\n\t\t\t\t\t\t[-91.501435, 40.248874],\n\t\t\t\t\t\t[-91.950812, 40.257210]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36041\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"041\",\n\t\t\t\t\"NAME\": \"Hamilton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1717.373000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-74.535156, 44.099250],\n\t\t\t\t\t\t[-74.281870, 44.120552],\n\t\t\t\t\t\t[-74.255998, 43.969797],\n\t\t\t\t\t\t[-74.336826, 43.925223],\n\t\t\t\t\t\t[-74.213734, 43.810875],\n\t\t\t\t\t\t[-74.047062, 43.796343],\n\t\t\t\t\t\t[-74.057005, 43.744513],\n\t\t\t\t\t\t[-74.214625, 43.728703],\n\t\t\t\t\t\t[-74.160100, 43.371532],\n\t\t\t\t\t\t[-74.140147, 43.253979],\n\t\t\t\t\t\t[-74.220902, 43.221403],\n\t\t\t\t\t\t[-74.326378, 43.241635],\n\t\t\t\t\t\t[-74.534657, 43.228115],\n\t\t\t\t\t\t[-74.712615, 43.286143],\n\t\t\t\t\t\t[-74.867712, 43.339826],\n\t\t\t\t\t\t[-74.775617, 43.486677],\n\t\t\t\t\t\t[-74.854171, 44.070089],\n\t\t\t\t\t\t[-74.535156, 44.099250]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36045\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"045\",\n\t\t\t\t\"NAME\": \"Jefferson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1268.590000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.355679, 44.133258],\n\t\t\t\t\t\t[-76.312647, 44.199044],\n\t\t\t\t\t\t[-76.286547, 44.203773],\n\t\t\t\t\t\t[-76.245487, 44.203669],\n\t\t\t\t\t\t[-76.206777, 44.214543],\n\t\t\t\t\t\t[-76.191328, 44.221244],\n\t\t\t\t\t\t[-76.164265, 44.239603],\n\t\t\t\t\t\t[-76.118136, 44.294850],\n\t\t\t\t\t\t[-76.045228, 44.331724],\n\t\t\t\t\t\t[-76.000998, 44.347534],\n\t\t\t\t\t\t[-75.978281, 44.346880],\n\t\t\t\t\t\t[-75.970185, 44.342835],\n\t\t\t\t\t\t[-75.949540, 44.349129],\n\t\t\t\t\t\t[-75.912985, 44.368084],\n\t\t\t\t\t\t[-75.871496, 44.394839],\n\t\t\t\t\t\t[-75.860060, 44.403282],\n\t\t\t\t\t\t[-75.446124, 44.217655],\n\t\t\t\t\t\t[-75.545886, 44.102978],\n\t\t\t\t\t\t[-75.484528, 44.074172],\n\t\t\t\t\t\t[-75.542898, 43.967795],\n\t\t\t\t\t\t[-75.603670, 43.971363],\n\t\t\t\t\t\t[-75.758157, 43.878785],\n\t\t\t\t\t\t[-75.840560, 43.883976],\n\t\t\t\t\t\t[-75.850534, 43.791886],\n\t\t\t\t\t\t[-75.786759, 43.788320],\n\t\t\t\t\t\t[-75.774553, 43.688884],\n\t\t\t\t\t\t[-76.025087, 43.707018],\n\t\t\t\t\t\t[-76.022003, 43.668143],\n\t\t\t\t\t\t[-76.200500, 43.680231],\n\t\t\t\t\t\t[-76.205436, 43.718751],\n\t\t\t\t\t\t[-76.213205, 43.753513],\n\t\t\t\t\t\t[-76.229268, 43.804135],\n\t\t\t\t\t\t[-76.250135, 43.825713],\n\t\t\t\t\t\t[-76.266977, 43.838046],\n\t\t\t\t\t\t[-76.277812, 43.841205],\n\t\t\t\t\t\t[-76.283307, 43.843923],\n\t\t\t\t\t\t[-76.284481, 43.850968],\n\t\t\t\t\t\t[-76.282720, 43.858601],\n\t\t\t\t\t\t[-76.276262, 43.863297],\n\t\t\t\t\t\t[-76.269217, 43.868581],\n\t\t\t\t\t\t[-76.261584, 43.873278],\n\t\t\t\t\t\t[-76.249842, 43.875626],\n\t\t\t\t\t\t[-76.243384, 43.877975],\n\t\t\t\t\t\t[-76.234578, 43.877388],\n\t\t\t\t\t\t[-76.227485, 43.875061],\n\t\t\t\t\t\t[-76.219313, 43.866820],\n\t\t\t\t\t\t[-76.202257, 43.864898],\n\t\t\t\t\t\t[-76.192777, 43.869175],\n\t\t\t\t\t\t[-76.180604, 43.877529],\n\t\t\t\t\t\t[-76.158249, 43.887542],\n\t\t\t\t\t\t[-76.145506, 43.888681],\n\t\t\t\t\t\t[-76.133267, 43.892975],\n\t\t\t\t\t\t[-76.127285, 43.897889],\n\t\t\t\t\t\t[-76.125023, 43.912773],\n\t\t\t\t\t\t[-76.130446, 43.933082],\n\t\t\t\t\t\t[-76.133697, 43.940356],\n\t\t\t\t\t\t[-76.134359, 43.945614],\n\t\t\t\t\t\t[-76.134296, 43.954726],\n\t\t\t\t\t\t[-76.139086, 43.962111],\n\t\t\t\t\t\t[-76.146072, 43.964705],\n\t\t\t\t\t\t[-76.169802, 43.962202],\n\t\t\t\t\t\t[-76.184874, 43.971128],\n\t\t\t\t\t\t[-76.228050, 43.982737],\n\t\t\t\t\t\t[-76.236864, 43.977900],\n\t\t\t\t\t\t[-76.244439, 43.975803],\n\t\t\t\t\t\t[-76.252318, 43.975803],\n\t\t\t\t\t\t[-76.258306, 43.976118],\n\t\t\t\t\t\t[-76.264294, 43.978009],\n\t\t\t\t\t\t[-76.268706, 43.980846],\n\t\t\t\t\t\t[-76.268702, 43.987278],\n\t\t\t\t\t\t[-76.266733, 43.995578],\n\t\t\t\t\t\t[-76.269672, 44.001148],\n\t\t\t\t\t\t[-76.281928, 44.009177],\n\t\t\t\t\t\t[-76.287821, 44.011420],\n\t\t\t\t\t\t[-76.296755, 44.013307],\n\t\t\t\t\t\t[-76.298962, 44.017719],\n\t\t\t\t\t\t[-76.300222, 44.022762],\n\t\t\t\t\t\t[-76.299592, 44.030956],\n\t\t\t\t\t\t[-76.296986, 44.045455],\n\t\t\t\t\t\t[-76.300532, 44.057188],\n\t\t\t\t\t\t[-76.304207, 44.059445],\n\t\t\t\t\t\t[-76.360306, 44.070907],\n\t\t\t\t\t\t[-76.360798, 44.087644],\n\t\t\t\t\t\t[-76.366972, 44.100409],\n\t\t\t\t\t\t[-76.363835, 44.111696],\n\t\t\t\t\t\t[-76.358163, 44.123337],\n\t\t\t\t\t\t[-76.355679, 44.133258]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36051\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"051\",\n\t\t\t\t\"NAME\": \"Livingston\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 631.763000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.909832, 42.987762],\n\t\t\t\t\t\t[-77.730957, 42.988372],\n\t\t\t\t\t\t[-77.732378, 42.945285],\n\t\t\t\t\t\t[-77.580377, 42.943963],\n\t\t\t\t\t\t[-77.611670, 42.763169],\n\t\t\t\t\t\t[-77.598815, 42.671965],\n\t\t\t\t\t\t[-77.486875, 42.670279],\n\t\t\t\t\t\t[-77.490889, 42.577288],\n\t\t\t\t\t\t[-77.659917, 42.580409],\n\t\t\t\t\t\t[-77.722964, 42.471216],\n\t\t\t\t\t\t[-77.840231, 42.474576],\n\t\t\t\t\t\t[-77.840901, 42.517767],\n\t\t\t\t\t\t[-78.038261, 42.521522],\n\t\t\t\t\t\t[-78.048247, 42.579306],\n\t\t\t\t\t\t[-77.956334, 42.667322],\n\t\t\t\t\t\t[-77.954964, 42.862754],\n\t\t\t\t\t\t[-77.909832, 42.987762]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36055\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"055\",\n\t\t\t\t\"NAME\": \"Monroe\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 657.205000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.995591, 43.365293],\n\t\t\t\t\t\t[-77.994838, 43.365259],\n\t\t\t\t\t\t[-77.976438, 43.369159],\n\t\t\t\t\t\t[-77.965238, 43.368059],\n\t\t\t\t\t\t[-77.952937, 43.363460],\n\t\t\t\t\t\t[-77.922736, 43.356960],\n\t\t\t\t\t\t[-77.904836, 43.356960],\n\t\t\t\t\t\t[-77.875335, 43.349660],\n\t\t\t\t\t\t[-77.816533, 43.343560],\n\t\t\t\t\t\t[-77.797381, 43.339857],\n\t\t\t\t\t\t[-77.785132, 43.339261],\n\t\t\t\t\t\t[-77.760231, 43.341161],\n\t\t\t\t\t\t[-77.756931, 43.337361],\n\t\t\t\t\t\t[-77.730630, 43.330161],\n\t\t\t\t\t\t[-77.714129, 43.323561],\n\t\t\t\t\t\t[-77.701429, 43.308261],\n\t\t\t\t\t\t[-77.660359, 43.282998],\n\t\t\t\t\t\t[-77.653759, 43.279484],\n\t\t\t\t\t\t[-77.628315, 43.271303],\n\t\t\t\t\t\t[-77.602161, 43.256949],\n\t\t\t\t\t\t[-77.577223, 43.243263],\n\t\t\t\t\t\t[-77.551022, 43.235763],\n\t\t\t\t\t\t[-77.534184, 43.234569],\n\t\t\t\t\t\t[-77.500920, 43.250363],\n\t\t\t\t\t\t[-77.476642, 43.254522],\n\t\t\t\t\t\t[-77.436831, 43.265701],\n\t\t\t\t\t\t[-77.414516, 43.269263],\n\t\t\t\t\t\t[-77.391015, 43.276363],\n\t\t\t\t\t\t[-77.385388, 43.276847],\n\t\t\t\t\t\t[-77.376038, 43.277652],\n\t\t\t\t\t\t[-77.374351, 43.152584],\n\t\t\t\t\t\t[-77.371478, 43.034696],\n\t\t\t\t\t\t[-77.485418, 43.034564],\n\t\t\t\t\t\t[-77.482517, 42.943164],\n\t\t\t\t\t\t[-77.580377, 42.943963],\n\t\t\t\t\t\t[-77.732378, 42.945285],\n\t\t\t\t\t\t[-77.730957, 42.988372],\n\t\t\t\t\t\t[-77.909832, 42.987762],\n\t\t\t\t\t\t[-77.951044, 43.039544],\n\t\t\t\t\t\t[-77.905934, 43.133561],\n\t\t\t\t\t\t[-77.997290, 43.132981],\n\t\t\t\t\t\t[-77.995723, 43.284963],\n\t\t\t\t\t\t[-77.995665, 43.287448],\n\t\t\t\t\t\t[-77.995591, 43.365293]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36059\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"059\",\n\t\t\t\t\"NAME\": \"Nassau\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 284.716000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-73.754323, 40.586357],\n\t\t\t\t\t\t[-73.700582, 40.743184],\n\t\t\t\t\t\t[-73.700872, 40.746866],\n\t\t\t\t\t\t[-73.701744, 40.752530],\n\t\t\t\t\t\t[-73.746760, 40.780382],\n\t\t\t\t\t\t[-73.768431, 40.800704],\n\t\t\t\t\t\t[-73.768301, 40.800797],\n\t\t\t\t\t\t[-73.754032, 40.820941],\n\t\t\t\t\t\t[-73.754400, 40.826837],\n\t\t\t\t\t\t[-73.728275, 40.852900],\n\t\t\t\t\t\t[-73.726675, 40.856800],\n\t\t\t\t\t\t[-73.730675, 40.865400],\n\t\t\t\t\t\t[-73.729575, 40.866500],\n\t\t\t\t\t\t[-73.713674, 40.870099],\n\t\t\t\t\t\t[-73.675573, 40.856999],\n\t\t\t\t\t\t[-73.670692, 40.858708],\n\t\t\t\t\t\t[-73.655872, 40.863899],\n\t\t\t\t\t\t[-73.654372, 40.878199],\n\t\t\t\t\t\t[-73.641072, 40.892599],\n\t\t\t\t\t\t[-73.633771, 40.898198],\n\t\t\t\t\t\t[-73.626972, 40.899397],\n\t\t\t\t\t\t[-73.617571, 40.897898],\n\t\t\t\t\t\t[-73.601870, 40.902798],\n\t\t\t\t\t\t[-73.595170, 40.907298],\n\t\t\t\t\t\t[-73.569969, 40.915398],\n\t\t\t\t\t\t[-73.566169, 40.915798],\n\t\t\t\t\t\t[-73.548068, 40.908698],\n\t\t\t\t\t\t[-73.519267, 40.914298],\n\t\t\t\t\t\t[-73.514999, 40.912821],\n\t\t\t\t\t\t[-73.499941, 40.918166],\n\t\t\t\t\t\t[-73.497061, 40.922801],\n\t\t\t\t\t\t[-73.454172, 40.834097],\n\t\t\t\t\t\t[-73.440967, 40.764399],\n\t\t\t\t\t\t[-73.424758, 40.679052],\n\t\t\t\t\t\t[-73.423269, 40.670893],\n\t\t\t\t\t\t[-73.424618, 40.666272],\n\t\t\t\t\t\t[-73.425586, 40.656291],\n\t\t\t\t\t\t[-73.423806, 40.609869],\n\t\t\t\t\t\t[-73.450369, 40.603501],\n\t\t\t\t\t\t[-73.562372, 40.583703],\n\t\t\t\t\t\t[-73.583773, 40.586703],\n\t\t\t\t\t\t[-73.610873, 40.587703],\n\t\t\t\t\t\t[-73.646674, 40.582804],\n\t\t\t\t\t\t[-73.701138, 40.583610],\n\t\t\t\t\t\t[-73.754776, 40.584404],\n\t\t\t\t\t\t[-73.754323, 40.586357]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36063\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"063\",\n\t\t\t\t\"NAME\": \"Niagara\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 522.359000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.828805, 43.030139],\n\t\t\t\t\t\t[-78.945262, 43.066956],\n\t\t\t\t\t\t[-79.009664, 43.069558],\n\t\t\t\t\t\t[-79.028353, 43.066897],\n\t\t\t\t\t\t[-79.028653, 43.069474],\n\t\t\t\t\t\t[-79.058399, 43.075231],\n\t\t\t\t\t\t[-79.066269, 43.090970],\n\t\t\t\t\t\t[-79.056767, 43.126855],\n\t\t\t\t\t\t[-79.044066, 43.138055],\n\t\t\t\t\t\t[-79.042366, 43.143655],\n\t\t\t\t\t\t[-79.058399, 43.238924],\n\t\t\t\t\t\t[-79.070469, 43.262454],\n\t\t\t\t\t\t[-79.019848, 43.273686],\n\t\t\t\t\t\t[-78.971866, 43.281254],\n\t\t\t\t\t\t[-78.930764, 43.293254],\n\t\t\t\t\t\t[-78.859362, 43.310955],\n\t\t\t\t\t\t[-78.836261, 43.318455],\n\t\t\t\t\t\t[-78.834061, 43.317555],\n\t\t\t\t\t\t[-78.777759, 43.327055],\n\t\t\t\t\t\t[-78.747158, 43.334555],\n\t\t\t\t\t\t[-78.696856, 43.341255],\n\t\t\t\t\t\t[-78.634346, 43.357624],\n\t\t\t\t\t\t[-78.547395, 43.369541],\n\t\t\t\t\t\t[-78.488857, 43.374763],\n\t\t\t\t\t\t[-78.482526, 43.374425],\n\t\t\t\t\t\t[-78.473099, 43.370812],\n\t\t\t\t\t\t[-78.465502, 43.371232],\n\t\t\t\t\t\t[-78.466429, 43.302775],\n\t\t\t\t\t\t[-78.460416, 43.216222],\n\t\t\t\t\t\t[-78.465505, 43.128619],\n\t\t\t\t\t\t[-78.464306, 43.091514],\n\t\t\t\t\t\t[-78.464449, 43.088703],\n\t\t\t\t\t\t[-78.733606, 43.084219],\n\t\t\t\t\t\t[-78.828805, 43.030139]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36071\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"071\",\n\t\t\t\t\"NAME\": \"Orange\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 811.686000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-73.953307, 41.589977],\n\t\t\t\t\t\t[-73.997609, 41.487212],\n\t\t\t\t\t\t[-74.000108, 41.456549],\n\t\t\t\t\t\t[-73.981486, 41.438905],\n\t\t\t\t\t\t[-73.981384, 41.324693],\n\t\t\t\t\t\t[-74.161789, 41.195794],\n\t\t\t\t\t\t[-74.234473, 41.142883],\n\t\t\t\t\t\t[-74.365664, 41.203400],\n\t\t\t\t\t\t[-74.392098, 41.215594],\n\t\t\t\t\t\t[-74.457584, 41.248225],\n\t\t\t\t\t\t[-74.694914, 41.357423],\n\t\t\t\t\t\t[-74.689767, 41.361558],\n\t\t\t\t\t\t[-74.691129, 41.367324],\n\t\t\t\t\t\t[-74.752562, 41.426518],\n\t\t\t\t\t\t[-74.755950, 41.426804],\n\t\t\t\t\t\t[-74.752399, 41.493743],\n\t\t\t\t\t\t[-74.475591, 41.504334],\n\t\t\t\t\t\t[-74.367055, 41.590977],\n\t\t\t\t\t\t[-74.264093, 41.632738],\n\t\t\t\t\t\t[-74.126393, 41.582544],\n\t\t\t\t\t\t[-73.953307, 41.589977]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36073\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"073\",\n\t\t\t\t\"NAME\": \"Orleans\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 391.259000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.995665, 43.287448],\n\t\t\t\t\t\t[-77.995723, 43.284963],\n\t\t\t\t\t\t[-77.997290, 43.132981],\n\t\t\t\t\t\t[-78.410876, 43.130643],\n\t\t\t\t\t\t[-78.465505, 43.128619],\n\t\t\t\t\t\t[-78.460416, 43.216222],\n\t\t\t\t\t\t[-78.466429, 43.302775],\n\t\t\t\t\t\t[-78.465502, 43.371232],\n\t\t\t\t\t\t[-78.370221, 43.376505],\n\t\t\t\t\t\t[-78.358711, 43.373988],\n\t\t\t\t\t\t[-78.250641, 43.370866],\n\t\t\t\t\t\t[-78.233609, 43.369070],\n\t\t\t\t\t\t[-78.145195, 43.375510],\n\t\t\t\t\t\t[-78.104509, 43.375628],\n\t\t\t\t\t\t[-78.023609, 43.366575],\n\t\t\t\t\t\t[-77.995591, 43.365293],\n\t\t\t\t\t\t[-77.995665, 43.287448]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36075\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"075\",\n\t\t\t\t\"NAME\": \"Oswego\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 951.650000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.479224, 43.227519],\n\t\t\t\t\t\t[-76.605012, 43.253570],\n\t\t\t\t\t\t[-76.617109, 43.419137],\n\t\t\t\t\t\t[-76.607093, 43.423374],\n\t\t\t\t\t\t[-76.562826, 43.448537],\n\t\t\t\t\t\t[-76.531810, 43.460299],\n\t\t\t\t\t\t[-76.521999, 43.468617],\n\t\t\t\t\t\t[-76.515882, 43.471136],\n\t\t\t\t\t\t[-76.506858, 43.469127],\n\t\t\t\t\t\t[-76.486962, 43.475350],\n\t\t\t\t\t\t[-76.472498, 43.492781],\n\t\t\t\t\t\t[-76.437473, 43.509213],\n\t\t\t\t\t\t[-76.417581, 43.521285],\n\t\t\t\t\t\t[-76.410636, 43.523159],\n\t\t\t\t\t\t[-76.368849, 43.525822],\n\t\t\t\t\t\t[-76.345492, 43.513437],\n\t\t\t\t\t\t[-76.330911, 43.511978],\n\t\t\t\t\t\t[-76.297103, 43.512870],\n\t\t\t\t\t\t[-76.259858, 43.524728],\n\t\t\t\t\t\t[-76.235834, 43.529256],\n\t\t\t\t\t\t[-76.228701, 43.532987],\n\t\t\t\t\t\t[-76.217958, 43.545156],\n\t\t\t\t\t\t[-76.209853, 43.560136],\n\t\t\t\t\t\t[-76.203473, 43.574978],\n\t\t\t\t\t\t[-76.199138, 43.600454],\n\t\t\t\t\t\t[-76.196596, 43.649761],\n\t\t\t\t\t\t[-76.200500, 43.680231],\n\t\t\t\t\t\t[-76.022003, 43.668143],\n\t\t\t\t\t\t[-76.025087, 43.707018],\n\t\t\t\t\t\t[-75.774553, 43.688884],\n\t\t\t\t\t\t[-75.756213, 43.470388],\n\t\t\t\t\t\t[-75.814627, 43.483578],\n\t\t\t\t\t\t[-75.886756, 43.325021],\n\t\t\t\t\t\t[-75.884275, 43.155562],\n\t\t\t\t\t\t[-75.927453, 43.162738],\n\t\t\t\t\t\t[-75.932778, 43.176583],\n\t\t\t\t\t\t[-75.955599, 43.172182],\n\t\t\t\t\t\t[-75.959359, 43.180389],\n\t\t\t\t\t\t[-75.973438, 43.179898],\n\t\t\t\t\t\t[-75.979489, 43.177401],\n\t\t\t\t\t\t[-75.986894, 43.183938],\n\t\t\t\t\t\t[-75.992428, 43.185164],\n\t\t\t\t\t\t[-75.993394, 43.183376],\n\t\t\t\t\t\t[-76.202944, 43.271605],\n\t\t\t\t\t\t[-76.258951, 43.237468],\n\t\t\t\t\t\t[-76.479224, 43.227519]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48435\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"435\",\n\t\t\t\t\"NAME\": \"Sutton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1453.926000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.960587, 30.706071],\n\t\t\t\t\t\t[-100.849229, 30.706222],\n\t\t\t\t\t\t[-100.116234, 30.710366],\n\t\t\t\t\t\t[-100.116461, 30.290296],\n\t\t\t\t\t\t[-100.381329, 30.288984],\n\t\t\t\t\t\t[-100.700393, 30.288276],\n\t\t\t\t\t\t[-100.960643, 30.287776],\n\t\t\t\t\t\t[-100.960587, 30.706071]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48437\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"437\",\n\t\t\t\t\"NAME\": \"Swisher\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 890.159000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-101.471580, 34.312290],\n\t\t\t\t\t\t[-101.564856, 34.312493],\n\t\t\t\t\t\t[-101.998020, 34.313039],\n\t\t\t\t\t\t[-101.998493, 34.748190],\n\t\t\t\t\t\t[-101.629257, 34.747649],\n\t\t\t\t\t\t[-101.471562, 34.747462],\n\t\t\t\t\t\t[-101.471580, 34.312290]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48441\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"441\",\n\t\t\t\t\"NAME\": \"Taylor\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 915.552000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.631413, 32.081274],\n\t\t\t\t\t\t[-99.713971, 32.082089],\n\t\t\t\t\t\t[-100.151911, 32.082638],\n\t\t\t\t\t\t[-100.146543, 32.522793],\n\t\t\t\t\t\t[-99.629639, 32.520713],\n\t\t\t\t\t\t[-99.629579, 32.514657],\n\t\t\t\t\t\t[-99.631413, 32.081274]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48447\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"447\",\n\t\t\t\t\"NAME\": \"Throckmorton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 912.552000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.472444, 33.399023],\n\t\t\t\t\t\t[-98.953938, 33.397534],\n\t\t\t\t\t\t[-98.950875, 32.956918],\n\t\t\t\t\t\t[-99.096016, 32.957037],\n\t\t\t\t\t\t[-99.471258, 32.957025],\n\t\t\t\t\t\t[-99.472444, 33.399023]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48451\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"451\",\n\t\t\t\t\"NAME\": \"Tom Green\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1521.972000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.688764, 31.086576],\n\t\t\t\t\t\t[-100.693065, 31.523954],\n\t\t\t\t\t\t[-101.223243, 31.528661],\n\t\t\t\t\t\t[-101.223944, 31.530035],\n\t\t\t\t\t\t[-101.267947, 31.528688],\n\t\t\t\t\t\t[-101.267630, 31.556462],\n\t\t\t\t\t\t[-100.865256, 31.562294],\n\t\t\t\t\t\t[-100.861099, 31.705418],\n\t\t\t\t\t\t[-100.825370, 31.696155],\n\t\t\t\t\t\t[-100.235761, 31.692970],\n\t\t\t\t\t\t[-100.234636, 31.587147],\n\t\t\t\t\t\t[-100.111234, 31.580267],\n\t\t\t\t\t\t[-100.115216, 31.087994],\n\t\t\t\t\t\t[-100.688764, 31.086576]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48453\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"453\",\n\t\t\t\t\"NAME\": \"Travis\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 990.202000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.409875, 30.351329],\n\t\t\t\t\t\t[-97.486329, 30.220528],\n\t\t\t\t\t\t[-97.492679, 30.209946],\n\t\t\t\t\t\t[-97.649449, 30.067866],\n\t\t\t\t\t\t[-97.655257, 30.072907],\n\t\t\t\t\t\t[-97.710215, 30.024499],\n\t\t\t\t\t\t[-98.011253, 30.242288],\n\t\t\t\t\t\t[-98.172977, 30.356312],\n\t\t\t\t\t\t[-98.125556, 30.426186],\n\t\t\t\t\t\t[-98.123111, 30.484723],\n\t\t\t\t\t\t[-98.049886, 30.624155],\n\t\t\t\t\t\t[-97.956734, 30.628249],\n\t\t\t\t\t\t[-97.775211, 30.429993],\n\t\t\t\t\t\t[-97.576167, 30.501799],\n\t\t\t\t\t\t[-97.369539, 30.419563],\n\t\t\t\t\t\t[-97.377227, 30.407086],\n\t\t\t\t\t\t[-97.409875, 30.351329]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48457\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"457\",\n\t\t\t\t\"NAME\": \"Tyler\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 924.501000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.545717, 30.526977],\n\t\t\t\t\t\t[-94.657992, 31.012007],\n\t\t\t\t\t\t[-94.561943, 31.058952],\n\t\t\t\t\t\t[-94.457820, 31.033326],\n\t\t\t\t\t\t[-94.451127, 31.003445],\n\t\t\t\t\t\t[-94.353782, 31.039371],\n\t\t\t\t\t\t[-94.238424, 31.013705],\n\t\t\t\t\t\t[-94.243766, 30.983554],\n\t\t\t\t\t\t[-94.179343, 30.794974],\n\t\t\t\t\t\t[-94.150119, 30.790203],\n\t\t\t\t\t\t[-94.125824, 30.684052],\n\t\t\t\t\t\t[-94.050960, 30.638568],\n\t\t\t\t\t\t[-94.094812, 30.575543],\n\t\t\t\t\t\t[-94.071689, 30.526033],\n\t\t\t\t\t\t[-94.545717, 30.526977]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48467\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"467\",\n\t\t\t\t\"NAME\": \"Van Zandt\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 842.557000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.075899, 32.357505],\n\t\t\t\t\t\t[-96.076685, 32.836799],\n\t\t\t\t\t\t[-96.076801, 32.838489],\n\t\t\t\t\t\t[-95.934433, 32.837217],\n\t\t\t\t\t\t[-95.829581, 32.766967],\n\t\t\t\t\t\t[-95.635017, 32.720380],\n\t\t\t\t\t\t[-95.626279, 32.708703],\n\t\t\t\t\t\t[-95.615764, 32.708095],\n\t\t\t\t\t\t[-95.605460, 32.702416],\n\t\t\t\t\t\t[-95.604027, 32.696294],\n\t\t\t\t\t\t[-95.593230, 32.693011],\n\t\t\t\t\t\t[-95.594541, 32.687026],\n\t\t\t\t\t\t[-95.594300, 32.479858],\n\t\t\t\t\t\t[-95.449165, 32.355233],\n\t\t\t\t\t\t[-96.075899, 32.357505]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48469\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"469\",\n\t\t\t\t\"NAME\": \"Victoria\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 882.143000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.645867, 28.710457],\n\t\t\t\t\t\t[-96.648758, 28.709627],\n\t\t\t\t\t\t[-96.655528, 28.704167],\n\t\t\t\t\t\t[-96.853757, 28.635199],\n\t\t\t\t\t\t[-96.930367, 28.586728],\n\t\t\t\t\t\t[-96.890951, 28.507178],\n\t\t\t\t\t\t[-96.982147, 28.499639],\n\t\t\t\t\t\t[-97.048529, 28.549976],\n\t\t\t\t\t\t[-97.160751, 28.553475],\n\t\t\t\t\t\t[-97.182359, 28.610602],\n\t\t\t\t\t\t[-97.158933, 28.776156],\n\t\t\t\t\t\t[-97.231971, 28.865303],\n\t\t\t\t\t\t[-97.305916, 28.864037],\n\t\t\t\t\t\t[-96.976378, 29.104046],\n\t\t\t\t\t\t[-96.947959, 29.073335],\n\t\t\t\t\t\t[-96.947333, 29.072716],\n\t\t\t\t\t\t[-96.946942, 29.072235],\n\t\t\t\t\t\t[-96.938587, 29.063244],\n\t\t\t\t\t\t[-96.832103, 29.021299],\n\t\t\t\t\t\t[-96.792133, 28.918803],\n\t\t\t\t\t\t[-96.711514, 28.851411],\n\t\t\t\t\t\t[-96.645867, 28.710457]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48477\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"477\",\n\t\t\t\t\"NAME\": \"Washington\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 603.954000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.640883, 30.296786],\n\t\t\t\t\t\t[-96.369190, 30.365072],\n\t\t\t\t\t\t[-96.358976, 30.372637],\n\t\t\t\t\t\t[-96.340485, 30.367925],\n\t\t\t\t\t\t[-96.312795, 30.384300],\n\t\t\t\t\t\t[-96.299173, 30.379152],\n\t\t\t\t\t\t[-96.199544, 30.382910],\n\t\t\t\t\t\t[-96.154630, 30.330288],\n\t\t\t\t\t\t[-96.085893, 30.288983],\n\t\t\t\t\t\t[-96.093165, 30.225187],\n\t\t\t\t\t\t[-96.159010, 30.206613],\n\t\t\t\t\t\t[-96.191418, 30.134669],\n\t\t\t\t\t\t[-96.146052, 30.070224],\n\t\t\t\t\t\t[-96.292849, 30.096150],\n\t\t\t\t\t\t[-96.621980, 30.044283],\n\t\t\t\t\t\t[-96.647223, 30.145174],\n\t\t\t\t\t\t[-96.794552, 30.160545],\n\t\t\t\t\t\t[-96.731645, 30.243886],\n\t\t\t\t\t\t[-96.640883, 30.296786]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48483\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"483\",\n\t\t\t\t\"NAME\": \"Wheeler\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 914.523000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.000385, 35.182702],\n\t\t\t\t\t\t[-100.538978, 35.183144],\n\t\t\t\t\t\t[-100.540158, 35.619296],\n\t\t\t\t\t\t[-100.000392, 35.619115],\n\t\t\t\t\t\t[-100.000389, 35.422364],\n\t\t\t\t\t\t[-100.000385, 35.182702]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48485\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"485\",\n\t\t\t\t\"NAME\": \"Wichita\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 627.776000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.423577, 33.836047],\n\t\t\t\t\t\t[-98.742358, 33.834552],\n\t\t\t\t\t\t[-98.953088, 33.834000],\n\t\t\t\t\t\t[-98.952527, 34.195621],\n\t\t\t\t\t\t[-98.920042, 34.182908],\n\t\t\t\t\t\t[-98.858419, 34.152732],\n\t\t\t\t\t\t[-98.765570, 34.136376],\n\t\t\t\t\t\t[-98.700182, 34.135995],\n\t\t\t\t\t\t[-98.665824, 34.151617],\n\t\t\t\t\t\t[-98.652347, 34.161029],\n\t\t\t\t\t\t[-98.637575, 34.162284],\n\t\t\t\t\t\t[-98.610112, 34.161039],\n\t\t\t\t\t\t[-98.599789, 34.160571],\n\t\t\t\t\t\t[-98.577356, 34.149100],\n\t\t\t\t\t\t[-98.553717, 34.133660],\n\t\t\t\t\t\t[-98.504182, 34.072371],\n\t\t\t\t\t\t[-98.475066, 34.064269],\n\t\t\t\t\t\t[-98.433769, 34.096116],\n\t\t\t\t\t\t[-98.423577, 33.836047]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48489\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"489\",\n\t\t\t\t\"NAME\": \"Willacy\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 590.554000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.790358, 26.337438],\n\t\t\t\t\t\t[-97.791666, 26.337715],\n\t\t\t\t\t\t[-97.798373, 26.338549],\n\t\t\t\t\t\t[-97.799073, 26.338749],\n\t\t\t\t\t\t[-97.800874, 26.338949],\n\t\t\t\t\t\t[-97.861875, 26.348156],\n\t\t\t\t\t\t[-97.861920, 26.433579],\n\t\t\t\t\t\t[-98.004189, 26.448784],\n\t\t\t\t\t\t[-97.957405, 26.611769],\n\t\t\t\t\t\t[-97.861688, 26.597995],\n\t\t\t\t\t\t[-97.441206, 26.599901],\n\t\t\t\t\t\t[-97.428151, 26.572466],\n\t\t\t\t\t\t[-97.416955, 26.553637],\n\t\t\t\t\t\t[-97.422299, 26.520303],\n\t\t\t\t\t\t[-97.425861, 26.516741],\n\t\t\t\t\t\t[-97.430696, 26.506563],\n\t\t\t\t\t\t[-97.430696, 26.494603],\n\t\t\t\t\t\t[-97.426370, 26.484425],\n\t\t\t\t\t\t[-97.429169, 26.478064],\n\t\t\t\t\t\t[-97.435530, 26.470176],\n\t\t\t\t\t\t[-97.441383, 26.466614],\n\t\t\t\t\t\t[-97.441383, 26.455418],\n\t\t\t\t\t\t[-97.437566, 26.449820],\n\t\t\t\t\t\t[-97.425861, 26.446003],\n\t\t\t\t\t\t[-97.421026, 26.446766],\n\t\t\t\t\t\t[-97.417210, 26.449820],\n\t\t\t\t\t\t[-97.411612, 26.447275],\n\t\t\t\t\t\t[-97.412884, 26.433026],\n\t\t\t\t\t\t[-97.421790, 26.417249],\n\t\t\t\t\t\t[-97.419500, 26.413178],\n\t\t\t\t\t\t[-97.406014, 26.409107],\n\t\t\t\t\t\t[-97.398126, 26.410888],\n\t\t\t\t\t\t[-97.394309, 26.414450],\n\t\t\t\t\t\t[-97.395072, 26.417249],\n\t\t\t\t\t\t[-97.382485, 26.411326],\n\t\t\t\t\t\t[-97.446987, 26.324947],\n\t\t\t\t\t\t[-97.527582, 26.299304],\n\t\t\t\t\t\t[-97.790358, 26.337438]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48499\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"499\",\n\t\t\t\t\"NAME\": \"Wood\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 645.234000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.153410, 32.570115],\n\t\t\t\t\t\t[-95.167523, 32.543957],\n\t\t\t\t\t\t[-95.332164, 32.604252],\n\t\t\t\t\t\t[-95.472970, 32.606426],\n\t\t\t\t\t\t[-95.594541, 32.687026],\n\t\t\t\t\t\t[-95.593230, 32.693011],\n\t\t\t\t\t\t[-95.604027, 32.696294],\n\t\t\t\t\t\t[-95.605460, 32.702416],\n\t\t\t\t\t\t[-95.615764, 32.708095],\n\t\t\t\t\t\t[-95.626279, 32.708703],\n\t\t\t\t\t\t[-95.635017, 32.720380],\n\t\t\t\t\t\t[-95.665389, 32.960434],\n\t\t\t\t\t\t[-95.308957, 32.962572],\n\t\t\t\t\t\t[-95.172947, 32.961829],\n\t\t\t\t\t\t[-95.152206, 33.013450],\n\t\t\t\t\t\t[-95.152110, 32.902641],\n\t\t\t\t\t\t[-95.153410, 32.570115]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US49001\",\n\t\t\t\t\"STATE\": \"49\",\n\t\t\t\t\"COUNTY\": \"001\",\n\t\t\t\t\"NAME\": \"Beaver\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2589.880000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-112.518504, 38.509852],\n\t\t\t\t\t\t[-112.335369, 38.332955],\n\t\t\t\t\t\t[-112.356853, 38.224750],\n\t\t\t\t\t\t[-112.443821, 38.149942],\n\t\t\t\t\t\t[-112.462139, 38.149912],\n\t\t\t\t\t\t[-112.478682, 38.147334],\n\t\t\t\t\t\t[-113.471600, 38.148665],\n\t\t\t\t\t\t[-114.049903, 38.148601],\n\t\t\t\t\t\t[-114.050120, 38.404536],\n\t\t\t\t\t\t[-114.050091, 38.404673],\n\t\t\t\t\t\t[-114.049834, 38.543784],\n\t\t\t\t\t\t[-114.049862, 38.547764],\n\t\t\t\t\t\t[-114.050154, 38.572920],\n\t\t\t\t\t\t[-112.919362, 38.576529],\n\t\t\t\t\t\t[-112.919308, 38.574709],\n\t\t\t\t\t\t[-112.515188, 38.573703],\n\t\t\t\t\t\t[-112.515196, 38.572325],\n\t\t\t\t\t\t[-112.518896, 38.567408],\n\t\t\t\t\t\t[-112.515673, 38.556623],\n\t\t\t\t\t\t[-112.517822, 38.553982],\n\t\t\t\t\t\t[-112.515965, 38.529047],\n\t\t\t\t\t\t[-112.522426, 38.519026],\n\t\t\t\t\t\t[-112.518504, 38.509852]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US49007\",\n\t\t\t\t\"STATE\": \"49\",\n\t\t\t\t\"COUNTY\": \"007\",\n\t\t\t\t\"NAME\": \"Carbon\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1478.493000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-109.967601, 39.805979],\n\t\t\t\t\t\t[-109.884708, 39.805742],\n\t\t\t\t\t\t[-109.993741, 39.702780],\n\t\t\t\t\t\t[-110.037952, 39.566667],\n\t\t\t\t\t\t[-110.024118, 39.468951],\n\t\t\t\t\t\t[-111.081200, 39.467533],\n\t\t\t\t\t\t[-111.131953, 39.613844],\n\t\t\t\t\t\t[-111.159113, 39.595947],\n\t\t\t\t\t\t[-111.247388, 39.704611],\n\t\t\t\t\t\t[-111.247502, 39.813269],\n\t\t\t\t\t\t[-110.857902, 39.812428],\n\t\t\t\t\t\t[-109.967601, 39.805979]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26071\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"071\",\n\t\t\t\t\"NAME\": \"Iron\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1166.149000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.932558, 46.073601],\n\t\t\t\t\t\t[-88.943279, 46.077943],\n\t\t\t\t\t\t[-88.948698, 46.080205],\n\t\t\t\t\t\t[-88.990807, 46.097298],\n\t\t\t\t\t\t[-88.990885, 46.097330],\n\t\t\t\t\t\t[-88.990588, 46.333251],\n\t\t\t\t\t\t[-88.991236, 46.419704],\n\t\t\t\t\t\t[-88.679392, 46.420139],\n\t\t\t\t\t\t[-88.116571, 46.419951],\n\t\t\t\t\t\t[-88.117407, 46.246618],\n\t\t\t\t\t\t[-88.116845, 45.921627],\n\t\t\t\t\t\t[-88.118516, 45.918562],\n\t\t\t\t\t\t[-88.139372, 45.929932],\n\t\t\t\t\t\t[-88.175532, 45.944897],\n\t\t\t\t\t\t[-88.202247, 45.949584],\n\t\t\t\t\t\t[-88.211158, 45.944531],\n\t\t\t\t\t\t[-88.239672, 45.948982],\n\t\t\t\t\t\t[-88.244452, 45.952142],\n\t\t\t\t\t\t[-88.250133, 45.963147],\n\t\t\t\t\t\t[-88.295559, 45.951459],\n\t\t\t\t\t\t[-88.376447, 45.989458],\n\t\t\t\t\t\t[-88.423437, 45.981930],\n\t\t\t\t\t\t[-88.489608, 45.991381],\n\t\t\t\t\t\t[-88.497417, 45.995149],\n\t\t\t\t\t\t[-88.500133, 46.000457],\n\t\t\t\t\t\t[-88.507188, 46.018300],\n\t\t\t\t\t\t[-88.532414, 46.021212],\n\t\t\t\t\t\t[-88.613063, 45.990627],\n\t\t\t\t\t\t[-88.616405, 45.987700],\n\t\t\t\t\t\t[-88.637500, 45.984960],\n\t\t\t\t\t\t[-88.666056, 45.988191],\n\t\t\t\t\t\t[-88.670939, 45.999957],\n\t\t\t\t\t\t[-88.670115, 45.999957],\n\t\t\t\t\t\t[-88.674606, 46.010567],\n\t\t\t\t\t\t[-88.679132, 46.013538],\n\t\t\t\t\t\t[-88.683198, 46.014563],\n\t\t\t\t\t\t[-88.730675, 46.026535],\n\t\t\t\t\t\t[-88.739994, 46.027308],\n\t\t\t\t\t\t[-88.769712, 46.018968],\n\t\t\t\t\t\t[-88.815629, 46.022320],\n\t\t\t\t\t\t[-88.840584, 46.031112],\n\t\t\t\t\t\t[-88.848464, 46.038858],\n\t\t\t\t\t\t[-88.850270, 46.040274],\n\t\t\t\t\t\t[-88.932558, 46.073601]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26125\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"125\",\n\t\t\t\t\"NAME\": \"Oakland\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 867.663000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.316825, 42.442033],\n\t\t\t\t\t\t[-83.433672, 42.438942],\n\t\t\t\t\t\t[-83.551907, 42.435166],\n\t\t\t\t\t\t[-83.664808, 42.431179],\n\t\t\t\t\t\t[-83.682727, 42.695582],\n\t\t\t\t\t\t[-83.686493, 42.783263],\n\t\t\t\t\t\t[-83.689384, 42.871263],\n\t\t\t\t\t\t[-83.453364, 42.880432],\n\t\t\t\t\t\t[-83.102891, 42.888647],\n\t\t\t\t\t\t[-83.099432, 42.800550],\n\t\t\t\t\t\t[-83.088776, 42.563843],\n\t\t\t\t\t\t[-83.088157, 42.549379],\n\t\t\t\t\t\t[-83.086882, 42.534792],\n\t\t\t\t\t\t[-83.083393, 42.447153],\n\t\t\t\t\t\t[-83.287959, 42.442680],\n\t\t\t\t\t\t[-83.316825, 42.442033]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26131\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"131\",\n\t\t\t\t\"NAME\": \"Ontonagon\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1311.225000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.168493, 46.965279],\n\t\t\t\t\t\t[-89.168244, 46.965536],\n\t\t\t\t\t\t[-89.142595, 46.984859],\n\t\t\t\t\t\t[-89.142425, 46.984954],\n\t\t\t\t\t\t[-89.142282, 46.985033],\n\t\t\t\t\t\t[-89.128698, 46.992599],\n\t\t\t\t\t\t[-89.128101, 46.992692],\n\t\t\t\t\t\t[-89.124799, 46.993209],\n\t\t\t\t\t\t[-89.118339, 46.994220],\n\t\t\t\t\t\t[-89.118106, 46.994002],\n\t\t\t\t\t\t[-89.115903, 46.991933],\n\t\t\t\t\t\t[-89.113158, 46.989356],\n\t\t\t\t\t\t[-89.106277, 46.986480],\n\t\t\t\t\t\t[-89.086742, 46.985298],\n\t\t\t\t\t\t[-89.063103, 46.988522],\n\t\t\t\t\t\t[-89.058591, 46.990604],\n\t\t\t\t\t\t[-89.048164, 46.995416],\n\t\t\t\t\t\t[-89.039490, 46.999419],\n\t\t\t\t\t\t[-89.038116, 46.999643],\n\t\t\t\t\t\t[-89.028930, 47.001140],\n\t\t\t\t\t\t[-89.027648, 46.999839],\n\t\t\t\t\t\t[-89.022994, 46.995120],\n\t\t\t\t\t\t[-88.998907, 46.995310],\n\t\t\t\t\t\t[-88.998417, 46.995314],\n\t\t\t\t\t\t[-88.992399, 46.996347],\n\t\t\t\t\t\t[-88.991720, 46.996463],\n\t\t\t\t\t\t[-88.987197, 46.997239],\n\t\t\t\t\t\t[-88.982483, 46.998830],\n\t\t\t\t\t\t[-88.978813, 47.000068],\n\t\t\t\t\t\t[-88.978433, 47.000196],\n\t\t\t\t\t\t[-88.972802, 47.002096],\n\t\t\t\t\t\t[-88.960337, 47.008053],\n\t\t\t\t\t\t[-88.959409, 47.008496],\n\t\t\t\t\t\t[-88.957276, 47.010111],\n\t\t\t\t\t\t[-88.944045, 47.020129],\n\t\t\t\t\t\t[-88.933329, 47.032200],\n\t\t\t\t\t\t[-88.932480, 46.764787],\n\t\t\t\t\t\t[-88.863906, 46.765013],\n\t\t\t\t\t\t[-88.864474, 46.679245],\n\t\t\t\t\t\t[-88.989529, 46.680119],\n\t\t\t\t\t\t[-88.991236, 46.419704],\n\t\t\t\t\t\t[-88.990588, 46.333251],\n\t\t\t\t\t\t[-89.365408, 46.332963],\n\t\t\t\t\t\t[-89.365347, 46.505645],\n\t\t\t\t\t\t[-89.741460, 46.505247],\n\t\t\t\t\t\t[-89.740260, 46.592147],\n\t\t\t\t\t\t[-89.864481, 46.592765],\n\t\t\t\t\t\t[-89.887721, 46.765825],\n\t\t\t\t\t\t[-89.888687, 46.765826],\n\t\t\t\t\t\t[-89.875069, 46.775991],\n\t\t\t\t\t\t[-89.862544, 46.785341],\n\t\t\t\t\t\t[-89.851966, 46.793237],\n\t\t\t\t\t\t[-89.850979, 46.793974],\n\t\t\t\t\t\t[-89.848652, 46.795711],\n\t\t\t\t\t\t[-89.846962, 46.796556],\n\t\t\t\t\t\t[-89.844691, 46.797690],\n\t\t\t\t\t\t[-89.841453, 46.799308],\n\t\t\t\t\t\t[-89.831956, 46.804053],\n\t\t\t\t\t\t[-89.830863, 46.804434],\n\t\t\t\t\t\t[-89.830093, 46.804703],\n\t\t\t\t\t\t[-89.828129, 46.805389],\n\t\t\t\t\t\t[-89.790663, 46.818469],\n\t\t\t\t\t\t[-89.788353, 46.818861],\n\t\t\t\t\t\t[-89.787080, 46.819077],\n\t\t\t\t\t\t[-89.757585, 46.824082],\n\t\t\t\t\t\t[-89.724471, 46.829701],\n\t\t\t\t\t\t[-89.720277, 46.830413],\n\t\t\t\t\t\t[-89.717848, 46.830559],\n\t\t\t\t\t\t[-89.713354, 46.830829],\n\t\t\t\t\t\t[-89.710062, 46.831026],\n\t\t\t\t\t\t[-89.708873, 46.831098],\n\t\t\t\t\t\t[-89.708303, 46.831132],\n\t\t\t\t\t\t[-89.708084, 46.831145],\n\t\t\t\t\t\t[-89.678469, 46.832923],\n\t\t\t\t\t\t[-89.677771, 46.832965],\n\t\t\t\t\t\t[-89.676878, 46.833019],\n\t\t\t\t\t\t[-89.673375, 46.833229],\n\t\t\t\t\t\t[-89.660625, 46.831056],\n\t\t\t\t\t\t[-89.659681, 46.830762],\n\t\t\t\t\t\t[-89.651795, 46.828309],\n\t\t\t\t\t\t[-89.646854, 46.826771],\n\t\t\t\t\t\t[-89.643440, 46.825709],\n\t\t\t\t\t\t[-89.642255, 46.825340],\n\t\t\t\t\t\t[-89.637309, 46.821384],\n\t\t\t\t\t\t[-89.634938, 46.819488],\n\t\t\t\t\t\t[-89.619329, 46.818890],\n\t\t\t\t\t\t[-89.598527, 46.824338],\n\t\t\t\t\t\t[-89.578217, 46.829657],\n\t\t\t\t\t\t[-89.572423, 46.831174],\n\t\t\t\t\t\t[-89.570326, 46.831723],\n\t\t\t\t\t\t[-89.569808, 46.831859],\n\t\t\t\t\t\t[-89.564509, 46.832483],\n\t\t\t\t\t\t[-89.542408, 46.835086],\n\t\t\t\t\t\t[-89.540709, 46.835286],\n\t\t\t\t\t\t[-89.538927, 46.835496],\n\t\t\t\t\t\t[-89.535683, 46.835878],\n\t\t\t\t\t\t[-89.534331, 46.836248],\n\t\t\t\t\t\t[-89.525656, 46.838625],\n\t\t\t\t\t\t[-89.516895, 46.841025],\n\t\t\t\t\t\t[-89.515665, 46.841362],\n\t\t\t\t\t\t[-89.513938, 46.841835],\n\t\t\t\t\t\t[-89.500227, 46.841638],\n\t\t\t\t\t\t[-89.499248, 46.841623],\n\t\t\t\t\t\t[-89.499080, 46.841621],\n\t\t\t\t\t\t[-89.497760, 46.841086],\n\t\t\t\t\t\t[-89.494019, 46.839570],\n\t\t\t\t\t\t[-89.491307, 46.838470],\n\t\t\t\t\t\t[-89.491252, 46.838448],\n\t\t\t\t\t\t[-89.491079, 46.838438],\n\t\t\t\t\t\t[-89.485166, 46.838112],\n\t\t\t\t\t\t[-89.475333, 46.837569],\n\t\t\t\t\t\t[-89.471849, 46.837376],\n\t\t\t\t\t\t[-89.471540, 46.837359],\n\t\t\t\t\t\t[-89.470915, 46.837398],\n\t\t\t\t\t\t[-89.470619, 46.837416],\n\t\t\t\t\t\t[-89.470547, 46.837421],\n\t\t\t\t\t\t[-89.469651, 46.837477],\n\t\t\t\t\t\t[-89.469446, 46.837490],\n\t\t\t\t\t\t[-89.453185, 46.838505],\n\t\t\t\t\t\t[-89.448454, 46.838800],\n\t\t\t\t\t\t[-89.448445, 46.838801],\n\t\t\t\t\t\t[-89.446583, 46.838917],\n\t\t\t\t\t\t[-89.445969, 46.838955],\n\t\t\t\t\t\t[-89.445313, 46.838996],\n\t\t\t\t\t\t[-89.440145, 46.839319],\n\t\t\t\t\t\t[-89.437047, 46.839512],\n\t\t\t\t\t\t[-89.434016, 46.840131],\n\t\t\t\t\t\t[-89.415154, 46.843983],\n\t\t\t\t\t\t[-89.413413, 46.844524],\n\t\t\t\t\t\t[-89.401123, 46.848344],\n\t\t\t\t\t\t[-89.395386, 46.850127],\n\t\t\t\t\t\t[-89.372032, 46.857386],\n\t\t\t\t\t\t[-89.370788, 46.857851],\n\t\t\t\t\t\t[-89.336130, 46.870807],\n\t\t\t\t\t\t[-89.317396, 46.877811],\n\t\t\t\t\t\t[-89.304623, 46.882586],\n\t\t\t\t\t\t[-89.285780, 46.889630],\n\t\t\t\t\t\t[-89.278612, 46.892310],\n\t\t\t\t\t\t[-89.249938, 46.903029],\n\t\t\t\t\t\t[-89.249143, 46.903326],\n\t\t\t\t\t\t[-89.228362, 46.912751],\n\t\t\t\t\t\t[-89.227914, 46.912954],\n\t\t\t\t\t\t[-89.226244, 46.914105],\n\t\t\t\t\t\t[-89.202811, 46.930253],\n\t\t\t\t\t\t[-89.201511, 46.931149],\n\t\t\t\t\t\t[-89.199648, 46.933075],\n\t\t\t\t\t\t[-89.183730, 46.949529],\n\t\t\t\t\t\t[-89.168493, 46.965279]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26135\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"135\",\n\t\t\t\t\"NAME\": \"Oscoda\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 565.731000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.371757, 44.855029],\n\t\t\t\t\t\t[-83.888484, 44.856458],\n\t\t\t\t\t\t[-83.886634, 44.508973],\n\t\t\t\t\t\t[-84.370643, 44.507223],\n\t\t\t\t\t\t[-84.371757, 44.855029]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26145\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"145\",\n\t\t\t\t\"NAME\": \"Saginaw\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 800.114000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.050000, 43.567324],\n\t\t\t\t\t\t[-84.050987, 43.524064],\n\t\t\t\t\t\t[-83.916091, 43.522629],\n\t\t\t\t\t\t[-83.817678, 43.479052],\n\t\t\t\t\t\t[-83.698816, 43.478957],\n\t\t\t\t\t\t[-83.695621, 43.221422],\n\t\t\t\t\t\t[-83.696516, 43.221396],\n\t\t\t\t\t\t[-83.814494, 43.221210],\n\t\t\t\t\t\t[-83.932071, 43.220377],\n\t\t\t\t\t\t[-83.929079, 43.132782],\n\t\t\t\t\t\t[-84.367891, 43.128452],\n\t\t\t\t\t\t[-84.369876, 43.466044],\n\t\t\t\t\t\t[-84.170576, 43.481969],\n\t\t\t\t\t\t[-84.168127, 43.568899],\n\t\t\t\t\t\t[-84.050000, 43.567324]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26147\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"147\",\n\t\t\t\t\"NAME\": \"St. Clair\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 721.170000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.503157, 43.168946],\n\t\t\t\t\t\t[-82.502990, 43.168137],\n\t\t\t\t\t\t[-82.501656, 43.161656],\n\t\t\t\t\t\t[-82.501529, 43.161351],\n\t\t\t\t\t\t[-82.500061, 43.157827],\n\t\t\t\t\t\t[-82.495685, 43.147316],\n\t\t\t\t\t\t[-82.494194, 43.143736],\n\t\t\t\t\t\t[-82.494072, 43.142864],\n\t\t\t\t\t\t[-82.494052, 43.142722],\n\t\t\t\t\t\t[-82.494014, 43.142453],\n\t\t\t\t\t\t[-82.493977, 43.142186],\n\t\t\t\t\t\t[-82.493347, 43.137685],\n\t\t\t\t\t\t[-82.493021, 43.135363],\n\t\t\t\t\t\t[-82.490979, 43.120782],\n\t\t\t\t\t\t[-82.490634, 43.118314],\n\t\t\t\t\t\t[-82.490614, 43.118172],\n\t\t\t\t\t\t[-82.490494, 43.117759],\n\t\t\t\t\t\t[-82.486684, 43.104688],\n\t\t\t\t\t\t[-82.486042, 43.102486],\n\t\t\t\t\t\t[-82.471053, 43.087581],\n\t\t\t\t\t\t[-82.457319, 43.061470],\n\t\t\t\t\t\t[-82.457221, 43.061285],\n\t\t\t\t\t\t[-82.450724, 43.051229],\n\t\t\t\t\t\t[-82.443433, 43.039942],\n\t\t\t\t\t\t[-82.422768, 43.007956],\n\t\t\t\t\t\t[-82.415937, 43.005555],\n\t\t\t\t\t\t[-82.447778, 42.937066],\n\t\t\t\t\t\t[-82.455027, 42.926866],\n\t\t\t\t\t\t[-82.469912, 42.887459],\n\t\t\t\t\t\t[-82.483697, 42.733212],\n\t\t\t\t\t\t[-82.509935, 42.637294],\n\t\t\t\t\t\t[-82.518782, 42.613888],\n\t\t\t\t\t\t[-82.523337, 42.607486],\n\t\t\t\t\t\t[-82.583996, 42.554041],\n\t\t\t\t\t\t[-82.589779, 42.550678],\n\t\t\t\t\t\t[-82.607068, 42.548843],\n\t\t\t\t\t\t[-82.624907, 42.557229],\n\t\t\t\t\t\t[-82.679059, 42.522210],\n\t\t\t\t\t\t[-82.686417, 42.518597],\n\t\t\t\t\t\t[-82.685397, 42.528659],\n\t\t\t\t\t\t[-82.679522, 42.535520],\n\t\t\t\t\t\t[-82.670956, 42.537989],\n\t\t\t\t\t\t[-82.664335, 42.546244],\n\t\t\t\t\t\t[-82.680758, 42.557909],\n\t\t\t\t\t\t[-82.681036, 42.574695],\n\t\t\t\t\t\t[-82.688061, 42.588417],\n\t\t\t\t\t\t[-82.701152, 42.585991],\n\t\t\t\t\t\t[-82.711151, 42.590884],\n\t\t\t\t\t\t[-82.713042, 42.597904],\n\t\t\t\t\t\t[-82.700818, 42.606687],\n\t\t\t\t\t\t[-82.683482, 42.609433],\n\t\t\t\t\t\t[-82.681593, 42.618672],\n\t\t\t\t\t\t[-82.690124, 42.625033],\n\t\t\t\t\t\t[-82.689836, 42.627148],\n\t\t\t\t\t\t[-82.669103, 42.637225],\n\t\t\t\t\t\t[-82.645715, 42.631145],\n\t\t\t\t\t\t[-82.630922, 42.642110],\n\t\t\t\t\t\t[-82.626396, 42.647385],\n\t\t\t\t\t\t[-82.623043, 42.655951],\n\t\t\t\t\t\t[-82.623797, 42.665395],\n\t\t\t\t\t\t[-82.630851, 42.673341],\n\t\t\t\t\t\t[-82.635262, 42.675552],\n\t\t\t\t\t\t[-82.659781, 42.678618],\n\t\t\t\t\t\t[-82.674287, 42.687049],\n\t\t\t\t\t\t[-82.685500, 42.690036],\n\t\t\t\t\t\t[-82.700964, 42.689548],\n\t\t\t\t\t\t[-82.706135, 42.683578],\n\t\t\t\t\t\t[-82.707841, 42.683510],\n\t\t\t\t\t\t[-82.739010, 42.897541],\n\t\t\t\t\t\t[-82.983647, 42.893741],\n\t\t\t\t\t\t[-82.996257, 43.154099],\n\t\t\t\t\t\t[-82.503157, 43.168946]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26157\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"157\",\n\t\t\t\t\"NAME\": \"Tuscola\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 803.127000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.695621, 43.221422],\n\t\t\t\t\t\t[-83.698816, 43.478957],\n\t\t\t\t\t\t[-83.699368, 43.595314],\n\t\t\t\t\t\t[-83.699253, 43.596792],\n\t\t\t\t\t\t[-83.669795, 43.590790],\n\t\t\t\t\t\t[-83.666052, 43.591292],\n\t\t\t\t\t\t[-83.654192, 43.599290],\n\t\t\t\t\t\t[-83.618602, 43.628891],\n\t\t\t\t\t\t[-83.595579, 43.650249],\n\t\t\t\t\t\t[-83.563157, 43.684564],\n\t\t\t\t\t\t[-83.553707, 43.685432],\n\t\t\t\t\t\t[-83.549044, 43.693798],\n\t\t\t\t\t\t[-83.551470, 43.699901],\n\t\t\t\t\t\t[-83.540187, 43.708746],\n\t\t\t\t\t\t[-83.524837, 43.716948],\n\t\t\t\t\t\t[-83.515853, 43.718157],\n\t\t\t\t\t\t[-83.513461, 43.714607],\n\t\t\t\t\t\t[-83.506657, 43.710907],\n\t\t\t\t\t\t[-83.480070, 43.714636],\n\t\t\t\t\t\t[-83.470053, 43.723418],\n\t\t\t\t\t\t[-83.467429, 43.728920],\n\t\t\t\t\t\t[-83.466592, 43.667621],\n\t\t\t\t\t\t[-83.117844, 43.675493],\n\t\t\t\t\t\t[-83.103826, 43.327365],\n\t\t\t\t\t\t[-83.120396, 43.327049],\n\t\t\t\t\t\t[-83.354418, 43.322257],\n\t\t\t\t\t\t[-83.351709, 43.235193],\n\t\t\t\t\t\t[-83.460733, 43.223131],\n\t\t\t\t\t\t[-83.695621, 43.221422]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29047\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"047\",\n\t\t\t\t\"NAME\": \"Clay\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 397.298000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.335213, 39.183337],\n\t\t\t\t\t\t[-94.389728, 39.193503],\n\t\t\t\t\t\t[-94.461590, 39.120372],\n\t\t\t\t\t\t[-94.523463, 39.148771],\n\t\t\t\t\t\t[-94.607354, 39.113444],\n\t\t\t\t\t\t[-94.589933, 39.140403],\n\t\t\t\t\t\t[-94.591933, 39.155003],\n\t\t\t\t\t\t[-94.596033, 39.157703],\n\t\t\t\t\t\t[-94.601733, 39.159603],\n\t\t\t\t\t\t[-94.600819, 39.456155],\n\t\t\t\t\t\t[-94.597879, 39.455838],\n\t\t\t\t\t\t[-94.210642, 39.454682],\n\t\t\t\t\t\t[-94.212515, 39.207086],\n\t\t\t\t\t\t[-94.289873, 39.237107],\n\t\t\t\t\t\t[-94.335213, 39.183337]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29051\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"051\",\n\t\t\t\t\"NAME\": \"Cole\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 393.750000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.194476, 38.335536],\n\t\t\t\t\t\t[-92.408407, 38.341344],\n\t\t\t\t\t\t[-92.403484, 38.425331],\n\t\t\t\t\t\t[-92.495185, 38.427829],\n\t\t\t\t\t\t[-92.394866, 38.739130],\n\t\t\t\t\t\t[-92.350605, 38.676398],\n\t\t\t\t\t\t[-92.220661, 38.643167],\n\t\t\t\t\t\t[-92.161663, 38.578057],\n\t\t\t\t\t\t[-92.065233, 38.557079],\n\t\t\t\t\t\t[-91.944238, 38.596925],\n\t\t\t\t\t\t[-92.025857, 38.552017],\n\t\t\t\t\t\t[-92.043489, 38.466479],\n\t\t\t\t\t\t[-92.168883, 38.466812],\n\t\t\t\t\t\t[-92.114977, 38.401937],\n\t\t\t\t\t\t[-92.194476, 38.335536]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29055\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"055\",\n\t\t\t\t\"NAME\": \"Crawford\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 742.517000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.100017, 37.740012],\n\t\t\t\t\t\t[-91.146521, 37.740811],\n\t\t\t\t\t\t[-91.153345, 37.697340],\n\t\t\t\t\t\t[-91.310655, 37.700048],\n\t\t\t\t\t\t[-91.308311, 37.787186],\n\t\t\t\t\t\t[-91.528797, 37.788989],\n\t\t\t\t\t\t[-91.525025, 38.152433],\n\t\t\t\t\t\t[-91.534384, 38.152593],\n\t\t\t\t\t\t[-91.535333, 38.210975],\n\t\t\t\t\t\t[-91.367482, 38.209741],\n\t\t\t\t\t\t[-91.095765, 38.204083],\n\t\t\t\t\t\t[-91.100017, 37.740012]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29057\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"057\",\n\t\t\t\t\"NAME\": \"Dade\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 490.012000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.616033, 37.572689],\n\t\t\t\t\t\t[-93.620379, 37.456289],\n\t\t\t\t\t\t[-93.621153, 37.427423],\n\t\t\t\t\t\t[-93.625844, 37.282011],\n\t\t\t\t\t\t[-94.052313, 37.290078],\n\t\t\t\t\t\t[-94.083833, 37.290851],\n\t\t\t\t\t\t[-94.082083, 37.349291],\n\t\t\t\t\t\t[-94.075385, 37.581570],\n\t\t\t\t\t\t[-93.616033, 37.572689]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29061\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"061\",\n\t\t\t\t\"NAME\": \"Daviess\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 563.240000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.216696, 40.136626],\n\t\t\t\t\t\t[-93.764021, 40.132909],\n\t\t\t\t\t\t[-93.761973, 39.959552],\n\t\t\t\t\t\t[-93.758992, 39.784674],\n\t\t\t\t\t\t[-94.205844, 39.788954],\n\t\t\t\t\t\t[-94.203457, 40.034539],\n\t\t\t\t\t\t[-94.218800, 40.034885],\n\t\t\t\t\t\t[-94.216494, 40.125030],\n\t\t\t\t\t\t[-94.216696, 40.136626]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29067\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"067\",\n\t\t\t\t\"NAME\": \"Douglas\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 813.632000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.251359, 37.059653],\n\t\t\t\t\t\t[-92.250160, 37.059753],\n\t\t\t\t\t\t[-92.088708, 37.056248],\n\t\t\t\t\t\t[-92.095982, 36.794011],\n\t\t\t\t\t\t[-92.112346, 36.794231],\n\t\t\t\t\t\t[-92.764869, 36.806097],\n\t\t\t\t\t\t[-92.909336, 36.809178],\n\t\t\t\t\t\t[-92.903273, 37.070651],\n\t\t\t\t\t\t[-92.685867, 37.067051],\n\t\t\t\t\t\t[-92.251359, 37.059653]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29073\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"073\",\n\t\t\t\t\"NAME\": \"Gasconade\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 517.803000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.367482, 38.209741],\n\t\t\t\t\t\t[-91.535333, 38.210975],\n\t\t\t\t\t\t[-91.534384, 38.152593],\n\t\t\t\t\t\t[-91.538016, 38.152490],\n\t\t\t\t\t\t[-91.580252, 38.152793],\n\t\t\t\t\t\t[-91.589527, 38.153249],\n\t\t\t\t\t\t[-91.630554, 38.153519],\n\t\t\t\t\t\t[-91.644893, 38.153679],\n\t\t\t\t\t\t[-91.644729, 38.288510],\n\t\t\t\t\t\t[-91.640372, 38.703792],\n\t\t\t\t\t\t[-91.545313, 38.676882],\n\t\t\t\t\t\t[-91.418637, 38.709778],\n\t\t\t\t\t\t[-91.395134, 38.707990],\n\t\t\t\t\t\t[-91.369192, 38.699324],\n\t\t\t\t\t\t[-91.367482, 38.209741]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29077\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"077\",\n\t\t\t\t\"NAME\": \"Greene\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 675.304000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.073380, 37.414989],\n\t\t\t\t\t\t[-93.065274, 37.088694],\n\t\t\t\t\t\t[-93.608899, 37.098153],\n\t\t\t\t\t\t[-93.605095, 37.281482],\n\t\t\t\t\t\t[-93.625844, 37.282011],\n\t\t\t\t\t\t[-93.621153, 37.427423],\n\t\t\t\t\t\t[-93.182489, 37.417204],\n\t\t\t\t\t\t[-93.158287, 37.416799],\n\t\t\t\t\t\t[-93.073380, 37.414989]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29079\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"079\",\n\t\t\t\t\"NAME\": \"Grundy\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 435.276000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.763324, 40.263988],\n\t\t\t\t\t\t[-93.367214, 40.266314],\n\t\t\t\t\t\t[-93.366556, 40.033099],\n\t\t\t\t\t\t[-93.361951, 40.033098],\n\t\t\t\t\t\t[-93.361957, 39.967606],\n\t\t\t\t\t\t[-93.761973, 39.959552],\n\t\t\t\t\t\t[-93.764021, 40.132909],\n\t\t\t\t\t\t[-93.763324, 40.263988]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29087\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"087\",\n\t\t\t\t\"NAME\": \"Holt\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 462.693000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.552473, 40.261904],\n\t\t\t\t\t\t[-95.552314, 40.264443],\n\t\t\t\t\t\t[-95.180614, 40.261706],\n\t\t\t\t\t\t[-95.071703, 40.260859],\n\t\t\t\t\t\t[-95.043080, 40.130096],\n\t\t\t\t\t\t[-94.993348, 39.900747],\n\t\t\t\t\t\t[-95.008440, 39.900596],\n\t\t\t\t\t\t[-95.016320, 39.898766],\n\t\t\t\t\t\t[-95.025240, 39.889700],\n\t\t\t\t\t\t[-95.025250, 39.877688],\n\t\t\t\t\t\t[-95.027931, 39.871522],\n\t\t\t\t\t\t[-95.035047, 39.866807],\n\t\t\t\t\t\t[-95.042142, 39.864805],\n\t\t\t\t\t\t[-95.085003, 39.861883],\n\t\t\t\t\t\t[-95.107745, 39.868579],\n\t\t\t\t\t\t[-95.132695, 39.875925],\n\t\t\t\t\t\t[-95.181222, 39.899996],\n\t\t\t\t\t\t[-95.301549, 39.983603],\n\t\t\t\t\t\t[-95.307780, 39.990618],\n\t\t\t\t\t\t[-95.308290, 39.999998],\n\t\t\t\t\t\t[-95.312211, 40.009395],\n\t\t\t\t\t\t[-95.521925, 40.249470],\n\t\t\t\t\t\t[-95.552473, 40.261904]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37011\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"011\",\n\t\t\t\t\"NAME\": \"Avery\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 247.087000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.981723, 35.911520],\n\t\t\t\t\t\t[-82.034192, 35.942107],\n\t\t\t\t\t\t[-82.080518, 36.105710],\n\t\t\t\t\t\t[-82.080143, 36.105720],\n\t\t\t\t\t\t[-82.026640, 36.130222],\n\t\t\t\t\t\t[-81.960101, 36.228131],\n\t\t\t\t\t\t[-81.932994, 36.264881],\n\t\t\t\t\t\t[-81.918113, 36.287110],\n\t\t\t\t\t\t[-81.909121, 36.216374],\n\t\t\t\t\t\t[-81.811520, 36.111544],\n\t\t\t\t\t\t[-81.735974, 36.066826],\n\t\t\t\t\t\t[-81.807120, 35.962057],\n\t\t\t\t\t\t[-81.899583, 36.000127],\n\t\t\t\t\t\t[-81.943674, 35.959448],\n\t\t\t\t\t\t[-81.962957, 35.941669],\n\t\t\t\t\t\t[-81.954501, 35.926742],\n\t\t\t\t\t\t[-81.981723, 35.911520]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37013\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"013\",\n\t\t\t\t\"NAME\": \"Beaufort\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 827.192000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.190423, 35.418955],\n\t\t\t\t\t\t[-77.189107, 35.426036],\n\t\t\t\t\t\t[-77.191230, 35.434744],\n\t\t\t\t\t\t[-77.181276, 35.440975],\n\t\t\t\t\t\t[-77.179935, 35.455811],\n\t\t\t\t\t\t[-77.173940, 35.456715],\n\t\t\t\t\t\t[-77.175418, 35.474071],\n\t\t\t\t\t\t[-77.087521, 35.564047],\n\t\t\t\t\t\t[-77.173788, 35.635336],\n\t\t\t\t\t\t[-77.174034, 35.733026],\n\t\t\t\t\t\t[-76.985749, 35.658485],\n\t\t\t\t\t\t[-76.845119, 35.705409],\n\t\t\t\t\t\t[-76.638031, 35.705233],\n\t\t\t\t\t\t[-76.564128, 35.601054],\n\t\t\t\t\t\t[-76.467761, 35.556504],\n\t\t\t\t\t\t[-76.599085, 35.519960],\n\t\t\t\t\t\t[-76.546901, 35.389673],\n\t\t\t\t\t\t[-76.580187, 35.387113],\n\t\t\t\t\t\t[-76.606041, 35.387113],\n\t\t\t\t\t\t[-76.620654, 35.378120],\n\t\t\t\t\t\t[-76.628125, 35.368515],\n\t\t\t\t\t\t[-76.628523, 35.368003],\n\t\t\t\t\t\t[-76.619530, 35.345521],\n\t\t\t\t\t\t[-76.604962, 35.337751],\n\t\t\t\t\t\t[-76.632535, 35.235233],\n\t\t\t\t\t\t[-76.845457, 35.216045],\n\t\t\t\t\t\t[-76.895546, 35.253532],\n\t\t\t\t\t\t[-77.190423, 35.418955]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37019\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"019\",\n\t\t\t\t\"NAME\": \"Brunswick\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 846.973000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.937313, 33.928645],\n\t\t\t\t\t\t[-77.946568, 33.912261],\n\t\t\t\t\t\t[-77.956881, 33.877790],\n\t\t\t\t\t\t[-77.960172, 33.853315],\n\t\t\t\t\t\t[-77.970606, 33.844517],\n\t\t\t\t\t\t[-78.006765, 33.858704],\n\t\t\t\t\t\t[-78.009973, 33.861406],\n\t\t\t\t\t\t[-78.009426, 33.867823],\n\t\t\t\t\t\t[-78.018689, 33.888289],\n\t\t\t\t\t\t[-78.095429, 33.906031],\n\t\t\t\t\t\t[-78.136952, 33.912178],\n\t\t\t\t\t\t[-78.177720, 33.914272],\n\t\t\t\t\t\t[-78.276147, 33.912364],\n\t\t\t\t\t\t[-78.383964, 33.901946],\n\t\t\t\t\t\t[-78.509042, 33.865515],\n\t\t\t\t\t\t[-78.541087, 33.851112],\n\t\t\t\t\t\t[-78.650500, 33.944035],\n\t\t\t\t\t\t[-78.556850, 34.062377],\n\t\t\t\t\t\t[-78.545218, 34.145747],\n\t\t\t\t\t\t[-78.494928, 34.166772],\n\t\t\t\t\t\t[-78.422567, 34.139217],\n\t\t\t\t\t\t[-78.374233, 34.205023],\n\t\t\t\t\t\t[-78.254470, 34.216318],\n\t\t\t\t\t\t[-78.162350, 34.357007],\n\t\t\t\t\t\t[-78.029922, 34.331768],\n\t\t\t\t\t\t[-77.951643, 34.232368],\n\t\t\t\t\t\t[-77.937313, 33.928645]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37025\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"025\",\n\t\t\t\t\"NAME\": \"Cabarrus\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 361.749000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.719625, 35.362842],\n\t\t\t\t\t\t[-80.744252, 35.380638],\n\t\t\t\t\t\t[-80.755284, 35.394927],\n\t\t\t\t\t\t[-80.764255, 35.400226],\n\t\t\t\t\t\t[-80.784339, 35.505840],\n\t\t\t\t\t\t[-80.737289, 35.505633],\n\t\t\t\t\t\t[-80.737069, 35.507163],\n\t\t\t\t\t\t[-80.688362, 35.506561],\n\t\t\t\t\t\t[-80.657612, 35.506059],\n\t\t\t\t\t\t[-80.650431, 35.506094],\n\t\t\t\t\t\t[-80.649002, 35.505915],\n\t\t\t\t\t\t[-80.645902, 35.505913],\n\t\t\t\t\t\t[-80.562402, 35.503110],\n\t\t\t\t\t\t[-80.295236, 35.502947],\n\t\t\t\t\t\t[-80.505334, 35.184048],\n\t\t\t\t\t\t[-80.506418, 35.185226],\n\t\t\t\t\t\t[-80.550297, 35.208381],\n\t\t\t\t\t\t[-80.665835, 35.268181],\n\t\t\t\t\t\t[-80.667274, 35.269014],\n\t\t\t\t\t\t[-80.693620, 35.346806],\n\t\t\t\t\t\t[-80.708556, 35.355213],\n\t\t\t\t\t\t[-80.719625, 35.362842]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13223\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"223\",\n\t\t\t\t\"NAME\": \"Paulding\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 312.219000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.050310, 33.904488],\n\t\t\t\t\t\t[-84.978683, 33.951393],\n\t\t\t\t\t\t[-84.922742, 34.082497],\n\t\t\t\t\t\t[-84.737836, 34.079399],\n\t\t\t\t\t\t[-84.724435, 33.881859],\n\t\t\t\t\t\t[-84.725035, 33.819905],\n\t\t\t\t\t\t[-84.725181, 33.816995],\n\t\t\t\t\t\t[-84.723969, 33.815306],\n\t\t\t\t\t\t[-84.724139, 33.806170],\n\t\t\t\t\t\t[-84.724122, 33.791439],\n\t\t\t\t\t\t[-84.725477, 33.788579],\n\t\t\t\t\t\t[-84.741348, 33.788568],\n\t\t\t\t\t\t[-84.769935, 33.784704],\n\t\t\t\t\t\t[-84.791993, 33.781162],\n\t\t\t\t\t\t[-84.795109, 33.779809],\n\t\t\t\t\t\t[-84.799853, 33.779909],\n\t\t\t\t\t\t[-84.832705, 33.778522],\n\t\t\t\t\t\t[-84.832708, 33.776019],\n\t\t\t\t\t\t[-84.879151, 33.774758],\n\t\t\t\t\t\t[-84.901688, 33.780703],\n\t\t\t\t\t\t[-84.918629, 33.786328],\n\t\t\t\t\t\t[-85.037926, 33.811942],\n\t\t\t\t\t\t[-85.036684, 33.904327],\n\t\t\t\t\t\t[-85.050310, 33.904488]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36081\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"081\",\n\t\t\t\t\"NAME\": \"Queens\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 108.532000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-73.868917, 40.695150],\n\t\t\t\t\t\t[-73.874021, 40.694191],\n\t\t\t\t\t\t[-73.889575, 40.684180],\n\t\t\t\t\t\t[-73.896497, 40.682447],\n\t\t\t\t\t\t[-73.904425, 40.695671],\n\t\t\t\t\t\t[-73.912058, 40.703446],\n\t\t\t\t\t\t[-73.921473, 40.709004],\n\t\t\t\t\t\t[-73.923865, 40.720056],\n\t\t\t\t\t\t[-73.929223, 40.727849],\n\t\t\t\t\t\t[-73.937339, 40.729920],\n\t\t\t\t\t\t[-73.947064, 40.737516],\n\t\t\t\t\t\t[-73.954732, 40.739292],\n\t\t\t\t\t\t[-73.961188, 40.737091],\n\t\t\t\t\t\t[-73.962795, 40.737674],\n\t\t\t\t\t\t[-73.961544, 40.743081],\n\t\t\t\t\t\t[-73.958300, 40.745731],\n\t\t\t\t\t\t[-73.954920, 40.751509],\n\t\t\t\t\t\t[-73.943951, 40.764434],\n\t\t\t\t\t\t[-73.940844, 40.767399],\n\t\t\t\t\t\t[-73.936536, 40.769835],\n\t\t\t\t\t\t[-73.935190, 40.771745],\n\t\t\t\t\t\t[-73.938076, 40.772551],\n\t\t\t\t\t\t[-73.938399, 40.774606],\n\t\t\t\t\t\t[-73.935080, 40.779218],\n\t\t\t\t\t\t[-73.927970, 40.776762],\n\t\t\t\t\t\t[-73.916316, 40.786601],\n\t\t\t\t\t\t[-73.910551, 40.790988],\n\t\t\t\t\t\t[-73.912506, 40.796180],\n\t\t\t\t\t\t[-73.899809, 40.792524],\n\t\t\t\t\t\t[-73.892205, 40.790380],\n\t\t\t\t\t\t[-73.890586, 40.790145],\n\t\t\t\t\t\t[-73.889918, 40.787398],\n\t\t\t\t\t\t[-73.884867, 40.786621],\n\t\t\t\t\t\t[-73.870992, 40.786979],\n\t\t\t\t\t\t[-73.866707, 40.793653],\n\t\t\t\t\t\t[-73.862704, 40.797276],\n\t\t\t\t\t\t[-73.830548, 40.803162],\n\t\t\t\t\t\t[-73.811001, 40.805077],\n\t\t\t\t\t\t[-73.793403, 40.799881],\n\t\t\t\t\t\t[-73.785964, 40.800862],\n\t\t\t\t\t\t[-73.781369, 40.794907],\n\t\t\t\t\t\t[-73.776032, 40.795275],\n\t\t\t\t\t\t[-73.768431, 40.800704],\n\t\t\t\t\t\t[-73.746760, 40.780382],\n\t\t\t\t\t\t[-73.701744, 40.752530],\n\t\t\t\t\t\t[-73.700872, 40.746866],\n\t\t\t\t\t\t[-73.700582, 40.743184],\n\t\t\t\t\t\t[-73.754323, 40.586357],\n\t\t\t\t\t\t[-73.753349, 40.590560],\n\t\t\t\t\t\t[-73.774928, 40.590759],\n\t\t\t\t\t\t[-73.801430, 40.585659],\n\t\t\t\t\t\t[-73.806834, 40.584619],\n\t\t\t\t\t\t[-73.834408, 40.577201],\n\t\t\t\t\t\t[-73.878906, 40.560888],\n\t\t\t\t\t\t[-73.934512, 40.545175],\n\t\t\t\t\t\t[-73.934466, 40.555281],\n\t\t\t\t\t\t[-73.932729, 40.560266],\n\t\t\t\t\t\t[-73.935686, 40.564914],\n\t\t\t\t\t\t[-73.938598, 40.566161],\n\t\t\t\t\t\t[-73.849852, 40.588669],\n\t\t\t\t\t\t[-73.860490, 40.654655],\n\t\t\t\t\t\t[-73.855660, 40.663802],\n\t\t\t\t\t\t[-73.866027, 40.681918],\n\t\t\t\t\t\t[-73.868917, 40.695150]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36087\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"087\",\n\t\t\t\t\"NAME\": \"Rockland\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 173.550000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-73.947965, 41.223101],\n\t\t\t\t\t\t[-73.931482, 41.204994],\n\t\t\t\t\t\t[-73.909281, 41.164395],\n\t\t\t\t\t\t[-73.895381, 41.153995],\n\t\t\t\t\t\t[-73.887180, 41.133095],\n\t\t\t\t\t\t[-73.894880, 41.082396],\n\t\t\t\t\t\t[-73.894700, 41.069937],\n\t\t\t\t\t\t[-73.889380, 41.037597],\n\t\t\t\t\t\t[-73.893979, 40.997197],\n\t\t\t\t\t\t[-73.902680, 40.997297],\n\t\t\t\t\t\t[-73.911880, 41.001297],\n\t\t\t\t\t\t[-74.041049, 41.059086],\n\t\t\t\t\t\t[-74.041054, 41.059088],\n\t\t\t\t\t\t[-74.092486, 41.081896],\n\t\t\t\t\t\t[-74.096786, 41.083796],\n\t\t\t\t\t\t[-74.213373, 41.133828],\n\t\t\t\t\t\t[-74.234473, 41.142883],\n\t\t\t\t\t\t[-74.161789, 41.195794],\n\t\t\t\t\t\t[-73.981384, 41.324693],\n\t\t\t\t\t\t[-73.982584, 41.321693],\n\t\t\t\t\t\t[-73.947965, 41.223101]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36089\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"089\",\n\t\t\t\t\"NAME\": \"St. Lawrence\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2680.377000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-74.724980, 45.005915],\n\t\t\t\t\t\t[-74.720307, 44.953011],\n\t\t\t\t\t\t[-74.641872, 44.952621],\n\t\t\t\t\t\t[-74.525683, 44.170636],\n\t\t\t\t\t\t[-74.535156, 44.099250],\n\t\t\t\t\t\t[-74.854171, 44.070089],\n\t\t\t\t\t\t[-75.062779, 44.050400],\n\t\t\t\t\t\t[-75.170159, 44.096959],\n\t\t\t\t\t\t[-75.446124, 44.217655],\n\t\t\t\t\t\t[-75.860060, 44.403282],\n\t\t\t\t\t\t[-75.820830, 44.432244],\n\t\t\t\t\t\t[-75.807778, 44.471644],\n\t\t\t\t\t\t[-75.765495, 44.516285],\n\t\t\t\t\t\t[-75.696586, 44.567583],\n\t\t\t\t\t\t[-75.491201, 44.712947],\n\t\t\t\t\t\t[-75.433124, 44.750062],\n\t\t\t\t\t\t[-75.333744, 44.806378],\n\t\t\t\t\t\t[-75.301975, 44.826637],\n\t\t\t\t\t\t[-75.307630, 44.836813],\n\t\t\t\t\t\t[-75.283136, 44.849156],\n\t\t\t\t\t\t[-75.216486, 44.877478],\n\t\t\t\t\t\t[-75.189313, 44.883037],\n\t\t\t\t\t\t[-75.139868, 44.896676],\n\t\t\t\t\t\t[-75.064826, 44.929449],\n\t\t\t\t\t\t[-75.027125, 44.946568],\n\t\t\t\t\t\t[-75.005155, 44.958402],\n\t\t\t\t\t\t[-74.999655, 44.965921],\n\t\t\t\t\t\t[-74.999270, 44.971638],\n\t\t\t\t\t\t[-74.992756, 44.977449],\n\t\t\t\t\t\t[-74.972463, 44.983402],\n\t\t\t\t\t\t[-74.826578, 45.015850],\n\t\t\t\t\t\t[-74.801625, 45.014571],\n\t\t\t\t\t\t[-74.724980, 45.005915]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36093\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"093\",\n\t\t\t\t\"NAME\": \"Schenectady\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 204.516000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-74.180274, 42.729979],\n\t\t\t\t\t\t[-74.272295, 42.714270],\n\t\t\t\t\t\t[-74.263314, 42.796534],\n\t\t\t\t\t\t[-74.083883, 42.897354],\n\t\t\t\t\t\t[-74.092980, 42.955868],\n\t\t\t\t\t\t[-73.895938, 42.851076],\n\t\t\t\t\t\t[-73.809369, 42.778869],\n\t\t\t\t\t\t[-73.809603, 42.775016],\n\t\t\t\t\t\t[-74.180274, 42.729979]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36099\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"099\",\n\t\t\t\t\"NAME\": \"Seneca\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 323.705000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.963350, 42.903020],\n\t\t\t\t\t\t[-76.963926, 43.013157],\n\t\t\t\t\t\t[-76.713806, 43.024035],\n\t\t\t\t\t\t[-76.736740, 42.970286],\n\t\t\t\t\t\t[-76.733454, 42.727895],\n\t\t\t\t\t\t[-76.666543, 42.623457],\n\t\t\t\t\t\t[-76.585989, 42.549910],\n\t\t\t\t\t\t[-76.696655, 42.546790],\n\t\t\t\t\t\t[-76.895596, 42.541537],\n\t\t\t\t\t\t[-76.895349, 42.656255],\n\t\t\t\t\t\t[-76.971392, 42.764223],\n\t\t\t\t\t\t[-76.963350, 42.903020]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36103\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"103\",\n\t\t\t\t\"NAME\": \"Suffolk\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 912.051000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-72.132225, 41.104387],\n\t\t\t\t\t\t\t[-72.128352, 41.108131],\n\t\t\t\t\t\t\t[-72.126704, 41.115139],\n\t\t\t\t\t\t\t[-72.084207, 41.101524],\n\t\t\t\t\t\t\t[-72.081167, 41.093940],\n\t\t\t\t\t\t\t[-72.086975, 41.058292],\n\t\t\t\t\t\t\t[-72.095711, 41.054020],\n\t\t\t\t\t\t\t[-72.097200, 41.054884],\n\t\t\t\t\t\t\t[-72.097136, 41.075844],\n\t\t\t\t\t\t\t[-72.103152, 41.086484],\n\t\t\t\t\t\t\t[-72.106400, 41.088883],\n\t\t\t\t\t\t\t[-72.120560, 41.093171],\n\t\t\t\t\t\t\t[-72.139233, 41.092451],\n\t\t\t\t\t\t\t[-72.141921, 41.094371],\n\t\t\t\t\t\t\t[-72.142929, 41.097811],\n\t\t\t\t\t\t\t[-72.140737, 41.100835],\n\t\t\t\t\t\t\t[-72.132225, 41.104387]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-71.943563, 41.286675],\n\t\t\t\t\t\t\t[-71.926802, 41.290122],\n\t\t\t\t\t\t\t[-71.935259, 41.280579],\n\t\t\t\t\t\t\t[-71.946270, 41.276306],\n\t\t\t\t\t\t\t[-71.962598, 41.270968],\n\t\t\t\t\t\t\t[-71.978926, 41.265002],\n\t\t\t\t\t\t\t[-71.994717, 41.256451],\n\t\t\t\t\t\t\t[-72.002461, 41.252867],\n\t\t\t\t\t\t\t[-72.036846, 41.249794],\n\t\t\t\t\t\t\t[-72.034958, 41.255458],\n\t\t\t\t\t\t\t[-72.029438, 41.263090],\n\t\t\t\t\t\t\t[-72.023422, 41.270994],\n\t\t\t\t\t\t\t[-72.018926, 41.274114],\n\t\t\t\t\t\t\t[-72.006872, 41.273480],\n\t\t\t\t\t\t\t[-71.991117, 41.281331],\n\t\t\t\t\t\t\t[-71.980061, 41.280291],\n\t\t\t\t\t\t\t[-71.952864, 41.285098],\n\t\t\t\t\t\t\t[-71.943563, 41.286675]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-73.454172, 40.834097],\n\t\t\t\t\t\t\t[-73.497061, 40.922801],\n\t\t\t\t\t\t\t[-73.496642, 40.923476],\n\t\t\t\t\t\t\t[-73.491765, 40.942097],\n\t\t\t\t\t\t\t[-73.485365, 40.946397],\n\t\t\t\t\t\t\t[-73.484798, 40.946065],\n\t\t\t\t\t\t\t[-73.480110, 40.943319],\n\t\t\t\t\t\t\t[-73.478365, 40.942297],\n\t\t\t\t\t\t\t[-73.474410, 40.941056],\n\t\t\t\t\t\t\t[-73.463708, 40.937697],\n\t\t\t\t\t\t\t[-73.460603, 40.937375],\n\t\t\t\t\t\t\t[-73.456523, 40.936953],\n\t\t\t\t\t\t\t[-73.445026, 40.935763],\n\t\t\t\t\t\t\t[-73.437509, 40.934985],\n\t\t\t\t\t\t\t[-73.436664, 40.934897],\n\t\t\t\t\t\t\t[-73.429863, 40.929797],\n\t\t\t\t\t\t\t[-73.429665, 40.928203],\n\t\t\t\t\t\t\t[-73.428836, 40.921506],\n\t\t\t\t\t\t\t[-73.406074, 40.920235],\n\t\t\t\t\t\t\t[-73.402963, 40.925097],\n\t\t\t\t\t\t\t[-73.403462, 40.942197],\n\t\t\t\t\t\t\t[-73.400862, 40.953997],\n\t\t\t\t\t\t\t[-73.399762, 40.955197],\n\t\t\t\t\t\t\t[-73.392862, 40.955297],\n\t\t\t\t\t\t\t[-73.374462, 40.937597],\n\t\t\t\t\t\t\t[-73.365961, 40.931697],\n\t\t\t\t\t\t\t[-73.352761, 40.926697],\n\t\t\t\t\t\t\t[-73.345561, 40.925297],\n\t\t\t\t\t\t\t[-73.344161, 40.927297],\n\t\t\t\t\t\t\t[-73.331360, 40.929597],\n\t\t\t\t\t\t\t[-73.295061, 40.924497],\n\t\t\t\t\t\t\t[-73.295059, 40.924497],\n\t\t\t\t\t\t\t[-73.229285, 40.905121],\n\t\t\t\t\t\t\t[-73.148994, 40.928898],\n\t\t\t\t\t\t\t[-73.146242, 40.935074],\n\t\t\t\t\t\t\t[-73.144673, 40.955842],\n\t\t\t\t\t\t\t[-73.140785, 40.966178],\n\t\t\t\t\t\t\t[-73.110368, 40.971938],\n\t\t\t\t\t\t\t[-73.081582, 40.973058],\n\t\t\t\t\t\t\t[-73.043701, 40.962185],\n\t\t\t\t\t\t\t[-73.040445, 40.964498],\n\t\t\t\t\t\t\t[-72.995931, 40.966498],\n\t\t\t\t\t\t\t[-72.955163, 40.966146],\n\t\t\t\t\t\t\t[-72.913834, 40.962466],\n\t\t\t\t\t\t\t[-72.888250, 40.962962],\n\t\t\t\t\t\t\t[-72.826057, 40.969794],\n\t\t\t\t\t\t\t[-72.774104, 40.965314],\n\t\t\t\t\t\t\t[-72.760031, 40.975334],\n\t\t\t\t\t\t\t[-72.714425, 40.985596],\n\t\t\t\t\t\t\t[-72.689341, 40.989776],\n\t\t\t\t\t\t\t[-72.665018, 40.987496],\n\t\t\t\t\t\t\t[-72.635374, 40.990536],\n\t\t\t\t\t\t\t[-72.585327, 40.997587],\n\t\t\t\t\t\t\t[-72.565406, 41.009508],\n\t\t\t\t\t\t\t[-72.560974, 41.015444],\n\t\t\t\t\t\t\t[-72.549853, 41.019844],\n\t\t\t\t\t\t\t[-72.521548, 41.037652],\n\t\t\t\t\t\t\t[-72.477306, 41.052212],\n\t\t\t\t\t\t\t[-72.460778, 41.067012],\n\t\t\t\t\t\t\t[-72.445242, 41.086116],\n\t\t\t\t\t\t\t[-72.417945, 41.087955],\n\t\t\t\t\t\t\t[-72.397000, 41.096307],\n\t\t\t\t\t\t\t[-72.356087, 41.133635],\n\t\t\t\t\t\t\t[-72.333351, 41.138018],\n\t\t\t\t\t\t\t[-72.322381, 41.140664],\n\t\t\t\t\t\t\t[-72.291109, 41.155874],\n\t\t\t\t\t\t\t[-72.278789, 41.158722],\n\t\t\t\t\t\t\t[-72.272997, 41.155010],\n\t\t\t\t\t\t\t[-72.268100, 41.154146],\n\t\t\t\t\t\t\t[-72.245348, 41.161217],\n\t\t\t\t\t\t\t[-72.238211, 41.159490],\n\t\t\t\t\t\t\t[-72.237731, 41.156434],\n\t\t\t\t\t\t\t[-72.253572, 41.137138],\n\t\t\t\t\t\t\t[-72.265124, 41.128482],\n\t\t\t\t\t\t\t[-72.300374, 41.112274],\n\t\t\t\t\t\t\t[-72.300044, 41.132059],\n\t\t\t\t\t\t\t[-72.306381, 41.137840],\n\t\t\t\t\t\t\t[-72.312734, 41.138546],\n\t\t\t\t\t\t\t[-72.318146, 41.137134],\n\t\t\t\t\t\t\t[-72.326630, 41.132162],\n\t\t\t\t\t\t\t[-72.335271, 41.120274],\n\t\t\t\t\t\t\t[-72.335177, 41.106917],\n\t\t\t\t\t\t\t[-72.317238, 41.088659],\n\t\t\t\t\t\t\t[-72.297718, 41.081042],\n\t\t\t\t\t\t\t[-72.280373, 41.080402],\n\t\t\t\t\t\t\t[-72.276709, 41.076722],\n\t\t\t\t\t\t\t[-72.283093, 41.067874],\n\t\t\t\t\t\t\t[-72.273657, 41.051533],\n\t\t\t\t\t\t\t[-72.260515, 41.042065],\n\t\t\t\t\t\t\t[-72.241252, 41.044770],\n\t\t\t\t\t\t\t[-72.229364, 41.044355],\n\t\t\t\t\t\t\t[-72.217476, 41.040611],\n\t\t\t\t\t\t\t[-72.201859, 41.032275],\n\t\t\t\t\t\t\t[-72.190563, 41.032579],\n\t\t\t\t\t\t\t[-72.183266, 41.035619],\n\t\t\t\t\t\t\t[-72.179490, 41.038435],\n\t\t\t\t\t\t\t[-72.174882, 41.046147],\n\t\t\t\t\t\t\t[-72.162898, 41.053187],\n\t\t\t\t\t\t\t[-72.160370, 41.053827],\n\t\t\t\t\t\t\t[-72.153857, 41.051859],\n\t\t\t\t\t\t\t[-72.137297, 41.039684],\n\t\t\t\t\t\t\t[-72.135137, 41.031284],\n\t\t\t\t\t\t\t[-72.137409, 41.023908],\n\t\t\t\t\t\t\t[-72.116368, 40.999796],\n\t\t\t\t\t\t\t[-72.109008, 40.994084],\n\t\t\t\t\t\t\t[-72.102160, 40.991509],\n\t\t\t\t\t\t\t[-72.095456, 40.991349],\n\t\t\t\t\t\t\t[-72.083039, 40.996453],\n\t\t\t\t\t\t\t[-72.079951, 41.003429],\n\t\t\t\t\t\t\t[-72.079208, 41.006437],\n\t\t\t\t\t\t\t[-72.076175, 41.009093],\n\t\t\t\t\t\t\t[-72.061448, 41.009442],\n\t\t\t\t\t\t\t[-72.057934, 41.004789],\n\t\t\t\t\t\t\t[-72.057075, 41.004893],\n\t\t\t\t\t\t\t[-72.055188, 41.005236],\n\t\t\t\t\t\t\t[-72.051585, 41.006437],\n\t\t\t\t\t\t\t[-72.049526, 41.009697],\n\t\t\t\t\t\t\t[-72.051549, 41.015741],\n\t\t\t\t\t\t\t[-72.051928, 41.020506],\n\t\t\t\t\t\t\t[-72.047468, 41.022565],\n\t\t\t\t\t\t\t[-72.035792, 41.020759],\n\t\t\t\t\t\t\t[-72.015013, 41.028348],\n\t\t\t\t\t\t\t[-71.999260, 41.039669],\n\t\t\t\t\t\t\t[-71.967040, 41.047772],\n\t\t\t\t\t\t\t[-71.961078, 41.054277],\n\t\t\t\t\t\t\t[-71.960355, 41.059878],\n\t\t\t\t\t\t\t[-71.961563, 41.064021],\n\t\t\t\t\t\t\t[-71.959595, 41.071237],\n\t\t\t\t\t\t\t[-71.938250, 41.077413],\n\t\t\t\t\t\t\t[-71.919385, 41.080517],\n\t\t\t\t\t\t\t[-71.899256, 41.080837],\n\t\t\t\t\t\t\t[-71.895496, 41.077381],\n\t\t\t\t\t\t\t[-71.889543, 41.075701],\n\t\t\t\t\t\t\t[-71.869558, 41.075046],\n\t\t\t\t\t\t\t[-71.864470, 41.076918],\n\t\t\t\t\t\t\t[-71.857494, 41.073558],\n\t\t\t\t\t\t\t[-71.856214, 41.070598],\n\t\t\t\t\t\t\t[-71.873910, 41.052278],\n\t\t\t\t\t\t\t[-71.903736, 41.040166],\n\t\t\t\t\t\t\t[-71.935689, 41.034182],\n\t\t\t\t\t\t\t[-72.029357, 40.999909],\n\t\t\t\t\t\t\t[-72.114448, 40.972085],\n\t\t\t\t\t\t\t[-72.395850, 40.866660],\n\t\t\t\t\t\t\t[-72.469996, 40.842740],\n\t\t\t\t\t\t\t[-72.573441, 40.813251],\n\t\t\t\t\t\t\t[-72.745208, 40.767091],\n\t\t\t\t\t\t\t[-72.753112, 40.763571],\n\t\t\t\t\t\t\t[-72.757176, 40.764371],\n\t\t\t\t\t\t\t[-72.768152, 40.761587],\n\t\t\t\t\t\t\t[-72.863164, 40.732962],\n\t\t\t\t\t\t\t[-72.923214, 40.713282],\n\t\t\t\t\t\t\t[-73.012545, 40.679651],\n\t\t\t\t\t\t\t[-73.054963, 40.666371],\n\t\t\t\t\t\t\t[-73.145266, 40.645491],\n\t\t\t\t\t\t\t[-73.208440, 40.630884],\n\t\t\t\t\t\t\t[-73.239140, 40.625100],\n\t\t\t\t\t\t\t[-73.262106, 40.621476],\n\t\t\t\t\t\t\t[-73.264493, 40.621437],\n\t\t\t\t\t\t\t[-73.306396, 40.620756],\n\t\t\t\t\t\t\t[-73.309740, 40.622532],\n\t\t\t\t\t\t\t[-73.319257, 40.635795],\n\t\t\t\t\t\t\t[-73.351465, 40.630500],\n\t\t\t\t\t\t\t[-73.391967, 40.617501],\n\t\t\t\t\t\t\t[-73.423806, 40.609869],\n\t\t\t\t\t\t\t[-73.425586, 40.656291],\n\t\t\t\t\t\t\t[-73.424618, 40.666272],\n\t\t\t\t\t\t\t[-73.423269, 40.670893],\n\t\t\t\t\t\t\t[-73.424758, 40.679052],\n\t\t\t\t\t\t\t[-73.440967, 40.764399],\n\t\t\t\t\t\t\t[-73.454172, 40.834097]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36107\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"107\",\n\t\t\t\t\"NAME\": \"Tioga\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 518.602000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.145519, 41.998913],\n\t\t\t\t\t\t[-76.343722, 41.998346],\n\t\t\t\t\t\t[-76.349898, 41.998410],\n\t\t\t\t\t\t[-76.462155, 41.998934],\n\t\t\t\t\t\t[-76.466540, 41.999025],\n\t\t\t\t\t\t[-76.557624, 42.000149],\n\t\t\t\t\t\t[-76.538349, 42.281755],\n\t\t\t\t\t\t[-76.416199, 42.262976],\n\t\t\t\t\t\t[-76.415305, 42.318368],\n\t\t\t\t\t\t[-76.394650, 42.318509],\n\t\t\t\t\t\t[-76.250149, 42.296676],\n\t\t\t\t\t\t[-76.253359, 42.407568],\n\t\t\t\t\t\t[-76.130181, 42.410337],\n\t\t\t\t\t\t[-76.081134, 42.230495],\n\t\t\t\t\t\t[-76.114033, 42.153418],\n\t\t\t\t\t\t[-76.111106, 42.112436],\n\t\t\t\t\t\t[-76.105840, 41.998858],\n\t\t\t\t\t\t[-76.123696, 41.998954],\n\t\t\t\t\t\t[-76.131201, 41.998954],\n\t\t\t\t\t\t[-76.145519, 41.998913]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36117\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"117\",\n\t\t\t\t\"NAME\": \"Wayne\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 603.826000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.374351, 43.152584],\n\t\t\t\t\t\t[-77.376038, 43.277652],\n\t\t\t\t\t\t[-77.341092, 43.280661],\n\t\t\t\t\t\t[-77.314619, 43.281030],\n\t\t\t\t\t\t[-77.303979, 43.278150],\n\t\t\t\t\t\t[-77.264177, 43.277363],\n\t\t\t\t\t\t[-77.214058, 43.284114],\n\t\t\t\t\t\t[-77.173088, 43.281509],\n\t\t\t\t\t\t[-77.143416, 43.287561],\n\t\t\t\t\t\t[-77.130429, 43.285635],\n\t\t\t\t\t\t[-77.111866, 43.287945],\n\t\t\t\t\t\t[-77.067295, 43.280937],\n\t\t\t\t\t\t[-77.033875, 43.271218],\n\t\t\t\t\t\t[-76.999691, 43.271456],\n\t\t\t\t\t\t[-76.988445, 43.274500],\n\t\t\t\t\t\t[-76.958402, 43.270005],\n\t\t\t\t\t\t[-76.952174, 43.270692],\n\t\t\t\t\t\t[-76.922351, 43.285006],\n\t\t\t\t\t\t[-76.904288, 43.291816],\n\t\t\t\t\t\t[-76.886913, 43.293891],\n\t\t\t\t\t\t[-76.877397, 43.292926],\n\t\t\t\t\t\t[-76.854976, 43.298443],\n\t\t\t\t\t\t[-76.841675, 43.305399],\n\t\t\t\t\t\t[-76.794708, 43.309632],\n\t\t\t\t\t\t[-76.769025, 43.318452],\n\t\t\t\t\t\t[-76.747067, 43.331477],\n\t\t\t\t\t\t[-76.731039, 43.343421],\n\t\t\t\t\t\t[-76.722501, 43.343686],\n\t\t\t\t\t\t[-76.705345, 43.125463],\n\t\t\t\t\t\t[-76.713806, 43.024035],\n\t\t\t\t\t\t[-76.963926, 43.013157],\n\t\t\t\t\t\t[-77.133397, 43.012463],\n\t\t\t\t\t\t[-77.134335, 43.039926],\n\t\t\t\t\t\t[-77.371478, 43.034696],\n\t\t\t\t\t\t[-77.374351, 43.152584]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42017\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"017\",\n\t\t\t\t\"NAME\": \"Bucks\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 604.307000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-75.106878, 40.192279],\n\t\t\t\t\t\t[-75.299774, 40.307835],\n\t\t\t\t\t\t[-75.484057, 40.418451],\n\t\t\t\t\t\t[-75.409733, 40.487984],\n\t\t\t\t\t\t[-75.367911, 40.514601],\n\t\t\t\t\t\t[-75.366610, 40.515424],\n\t\t\t\t\t\t[-75.338633, 40.534068],\n\t\t\t\t\t\t[-75.333514, 40.537057],\n\t\t\t\t\t\t[-75.196803, 40.608580],\n\t\t\t\t\t\t[-75.190858, 40.591342],\n\t\t\t\t\t\t[-75.190161, 40.589321],\n\t\t\t\t\t\t[-75.147368, 40.573152],\n\t\t\t\t\t\t[-75.135389, 40.575624],\n\t\t\t\t\t\t[-75.117292, 40.573211],\n\t\t\t\t\t\t[-75.100325, 40.567811],\n\t\t\t\t\t\t[-75.068615, 40.542223],\n\t\t\t\t\t\t[-75.067344, 40.536428],\n\t\t\t\t\t\t[-75.065090, 40.526148],\n\t\t\t\t\t\t[-75.065853, 40.519495],\n\t\t\t\t\t\t[-75.070568, 40.455165],\n\t\t\t\t\t\t[-75.061489, 40.422848],\n\t\t\t\t\t\t[-75.058848, 40.418065],\n\t\t\t\t\t\t[-75.035548, 40.406309],\n\t\t\t\t\t\t[-75.024775, 40.403455],\n\t\t\t\t\t\t[-74.937954, 40.340634],\n\t\t\t\t\t\t[-74.860492, 40.284584],\n\t\t\t\t\t\t[-74.770706, 40.214908],\n\t\t\t\t\t\t[-74.758613, 40.201342],\n\t\t\t\t\t\t[-74.722304, 40.160609],\n\t\t\t\t\t\t[-74.721604, 40.153810],\n\t\t\t\t\t\t[-74.724179, 40.147324],\n\t\t\t\t\t\t[-74.724304, 40.147010],\n\t\t\t\t\t\t[-74.740605, 40.135210],\n\t\t\t\t\t\t[-74.838008, 40.100910],\n\t\t\t\t\t\t[-74.900236, 40.077149],\n\t\t\t\t\t\t[-74.974290, 40.048872],\n\t\t\t\t\t\t[-74.984893, 40.057287],\n\t\t\t\t\t\t[-74.971268, 40.073744],\n\t\t\t\t\t\t[-74.958841, 40.082503],\n\t\t\t\t\t\t[-74.956164, 40.095745],\n\t\t\t\t\t\t[-74.961342, 40.097496],\n\t\t\t\t\t\t[-74.964991, 40.118635],\n\t\t\t\t\t\t[-74.981947, 40.120245],\n\t\t\t\t\t\t[-75.005946, 40.132524],\n\t\t\t\t\t\t[-75.008530, 40.133992],\n\t\t\t\t\t\t[-75.015066, 40.137992],\n\t\t\t\t\t\t[-75.104874, 40.191109],\n\t\t\t\t\t\t[-75.106878, 40.192279]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42023\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"023\",\n\t\t\t\t\"NAME\": \"Cameron\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 396.231000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.093381, 41.216931],\n\t\t\t\t\t\t[-78.236817, 41.230475],\n\t\t\t\t\t\t[-78.253959, 41.404721],\n\t\t\t\t\t\t[-78.420028, 41.405046],\n\t\t\t\t\t\t[-78.419118, 41.602188],\n\t\t\t\t\t\t[-78.419299, 41.616853],\n\t\t\t\t\t\t[-78.203422, 41.618157],\n\t\t\t\t\t\t[-78.050442, 41.475462],\n\t\t\t\t\t\t[-77.989194, 41.474822],\n\t\t\t\t\t\t[-77.988786, 41.367453],\n\t\t\t\t\t\t[-78.093381, 41.216931]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US45079\",\n\t\t\t\t\"STATE\": \"45\",\n\t\t\t\t\"COUNTY\": \"079\",\n\t\t\t\t\"NAME\": \"Richland\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 757.068000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.747337, 33.761742],\n\t\t\t\t\t\t[-80.917310, 33.813735],\n\t\t\t\t\t\t[-81.012330, 33.880080],\n\t\t\t\t\t\t[-81.059715, 34.005253],\n\t\t\t\t\t\t[-81.153617, 34.077950],\n\t\t\t\t\t\t[-81.275845, 34.097381],\n\t\t\t\t\t\t[-81.338961, 34.197587],\n\t\t\t\t\t\t[-81.345328, 34.205030],\n\t\t\t\t\t\t[-81.316911, 34.239458],\n\t\t\t\t\t\t[-81.178293, 34.174552],\n\t\t\t\t\t\t[-81.095863, 34.213872],\n\t\t\t\t\t\t[-80.825921, 34.268760],\n\t\t\t\t\t\t[-80.869733, 34.182389],\n\t\t\t\t\t\t[-80.719318, 34.068972],\n\t\t\t\t\t\t[-80.692965, 34.081280],\n\t\t\t\t\t\t[-80.683662, 34.081603],\n\t\t\t\t\t\t[-80.676421, 34.084610],\n\t\t\t\t\t\t[-80.672970, 34.083732],\n\t\t\t\t\t\t[-80.658978, 34.085743],\n\t\t\t\t\t\t[-80.658325, 34.088774],\n\t\t\t\t\t\t[-80.646696, 34.093990],\n\t\t\t\t\t\t[-80.639534, 34.095633],\n\t\t\t\t\t\t[-80.635594, 34.097666],\n\t\t\t\t\t\t[-80.616186, 34.099605],\n\t\t\t\t\t\t[-80.633545, 33.852680],\n\t\t\t\t\t\t[-80.620107, 33.743237],\n\t\t\t\t\t\t[-80.747337, 33.761742]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US45083\",\n\t\t\t\t\"STATE\": \"45\",\n\t\t\t\t\"COUNTY\": \"083\",\n\t\t\t\t\"NAME\": \"Spartanburg\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 807.926000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.012297, 34.668587],\n\t\t\t\t\t\t[-82.146792, 34.785554],\n\t\t\t\t\t\t[-82.225698, 34.850171],\n\t\t\t\t\t\t[-82.216217, 35.196044],\n\t\t\t\t\t\t[-82.195483, 35.194951],\n\t\t\t\t\t\t[-82.185513, 35.194355],\n\t\t\t\t\t\t[-82.176874, 35.193790],\n\t\t\t\t\t\t[-82.167676, 35.193699],\n\t\t\t\t\t\t[-81.969325, 35.187215],\n\t\t\t\t\t\t[-81.874433, 35.184113],\n\t\t\t\t\t\t[-81.754911, 34.932672],\n\t\t\t\t\t\t[-81.711694, 34.912577],\n\t\t\t\t\t\t[-81.783390, 34.837125],\n\t\t\t\t\t\t[-81.854002, 34.594549],\n\t\t\t\t\t\t[-82.012297, 34.668587]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US45085\",\n\t\t\t\t\"STATE\": \"45\",\n\t\t\t\t\"COUNTY\": \"085\",\n\t\t\t\t\"NAME\": \"Sumter\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 665.066000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.269060, 34.035100],\n\t\t\t\t\t\t[-80.180371, 33.952002],\n\t\t\t\t\t\t[-80.000594, 34.047877],\n\t\t\t\t\t\t[-79.893517, 33.988017],\n\t\t\t\t\t\t[-79.974601, 33.946527],\n\t\t\t\t\t\t[-80.255904, 33.803708],\n\t\t\t\t\t\t[-80.397131, 33.767821],\n\t\t\t\t\t\t[-80.392003, 33.715550],\n\t\t\t\t\t\t[-80.478709, 33.714265],\n\t\t\t\t\t\t[-80.534085, 33.643911],\n\t\t\t\t\t\t[-80.620107, 33.743237],\n\t\t\t\t\t\t[-80.633545, 33.852680],\n\t\t\t\t\t\t[-80.616186, 34.099605],\n\t\t\t\t\t\t[-80.618542, 34.109176],\n\t\t\t\t\t\t[-80.604403, 34.101671],\n\t\t\t\t\t\t[-80.578081, 34.101549],\n\t\t\t\t\t\t[-80.479857, 34.168696],\n\t\t\t\t\t\t[-80.481318, 34.112622],\n\t\t\t\t\t\t[-80.321721, 34.080356],\n\t\t\t\t\t\t[-80.279339, 34.036829],\n\t\t\t\t\t\t[-80.278827, 34.036706],\n\t\t\t\t\t\t[-80.278461, 34.036722],\n\t\t\t\t\t\t[-80.269060, 34.035100]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US45089\",\n\t\t\t\t\"STATE\": \"45\",\n\t\t\t\t\"COUNTY\": \"089\",\n\t\t\t\t\"NAME\": \"Williamsburg\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 934.159000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.324317, 33.799123],\n\t\t\t\t\t\t[-79.323988, 33.794965],\n\t\t\t\t\t\t[-79.320443, 33.790511],\n\t\t\t\t\t\t[-79.323081, 33.789247],\n\t\t\t\t\t\t[-79.319664, 33.785434],\n\t\t\t\t\t\t[-79.317041, 33.779878],\n\t\t\t\t\t\t[-79.409332, 33.688890],\n\t\t\t\t\t\t[-79.435733, 33.572702],\n\t\t\t\t\t\t[-79.538080, 33.496896],\n\t\t\t\t\t\t[-79.677014, 33.304944],\n\t\t\t\t\t\t[-79.756172, 33.329699],\n\t\t\t\t\t\t[-79.971963, 33.500937],\n\t\t\t\t\t\t[-80.101697, 33.496891],\n\t\t\t\t\t\t[-79.974382, 33.721590],\n\t\t\t\t\t\t[-79.995638, 33.767906],\n\t\t\t\t\t\t[-79.875620, 33.885245],\n\t\t\t\t\t\t[-79.798370, 33.835562],\n\t\t\t\t\t\t[-79.496486, 33.775357],\n\t\t\t\t\t\t[-79.324317, 33.799123]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46005\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"005\",\n\t\t\t\t\"NAME\": \"Beadle\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1258.710000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.700453, 44.196727],\n\t\t\t\t\t\t[-98.705762, 44.634159],\n\t\t\t\t\t\t[-97.977791, 44.631602],\n\t\t\t\t\t\t[-97.856226, 44.631178],\n\t\t\t\t\t\t[-97.853028, 44.544398],\n\t\t\t\t\t\t[-97.853206, 44.543254],\n\t\t\t\t\t\t[-97.853660, 44.195233],\n\t\t\t\t\t\t[-98.332042, 44.196620],\n\t\t\t\t\t\t[-98.700453, 44.196727]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46011\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"011\",\n\t\t\t\t\"NAME\": \"Brookings\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 792.206000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.129671, 44.195933],\n\t\t\t\t\t\t[-97.128024, 44.543126],\n\t\t\t\t\t\t[-96.885504, 44.543773],\n\t\t\t\t\t\t[-96.451990, 44.543639],\n\t\t\t\t\t\t[-96.452016, 44.543533],\n\t\t\t\t\t\t[-96.452236, 44.526871],\n\t\t\t\t\t\t[-96.452010, 44.516929],\n\t\t\t\t\t\t[-96.451974, 44.506849],\n\t\t\t\t\t\t[-96.452122, 44.473043],\n\t\t\t\t\t\t[-96.452218, 44.470873],\n\t\t\t\t\t\t[-96.451816, 44.460402],\n\t\t\t\t\t\t[-96.451924, 44.441549],\n\t\t\t\t\t\t[-96.452073, 44.389690],\n\t\t\t\t\t\t[-96.452134, 44.383679],\n\t\t\t\t\t\t[-96.452213, 44.360149],\n\t\t\t\t\t\t[-96.452282, 44.354857],\n\t\t\t\t\t\t[-96.452305, 44.345332],\n\t\t\t\t\t\t[-96.452152, 44.342219],\n\t\t\t\t\t\t[-96.452248, 44.340642],\n\t\t\t\t\t\t[-96.452309, 44.328094],\n\t\t\t\t\t\t[-96.452372, 44.325991],\n\t\t\t\t\t\t[-96.452248, 44.313362],\n\t\t\t\t\t\t[-96.452369, 44.312071],\n\t\t\t\t\t\t[-96.452239, 44.298655],\n\t\t\t\t\t\t[-96.452334, 44.297009],\n\t\t\t\t\t\t[-96.452500, 44.285687],\n\t\t\t\t\t\t[-96.452617, 44.282702],\n\t\t\t\t\t\t[-96.452365, 44.271972],\n\t\t\t\t\t\t[-96.452369, 44.268967],\n\t\t\t\t\t\t[-96.452419, 44.255274],\n\t\t\t\t\t\t[-96.452673, 44.254588],\n\t\t\t\t\t\t[-96.452774, 44.196895],\n\t\t\t\t\t\t[-96.452774, 44.196780],\n\t\t\t\t\t\t[-96.889216, 44.195705],\n\t\t\t\t\t\t[-97.129671, 44.195933]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46019\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"019\",\n\t\t\t\t\"NAME\": \"Butte\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2249.899000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-104.055877, 44.571016],\n\t\t\t\t\t\t[-104.055810, 44.691343],\n\t\t\t\t\t\t[-104.055938, 44.693881],\n\t\t\t\t\t\t[-104.055777, 44.700466],\n\t\t\t\t\t\t[-104.055870, 44.723422],\n\t\t\t\t\t\t[-104.055934, 44.723720],\n\t\t\t\t\t\t[-104.055963, 44.767962],\n\t\t\t\t\t\t[-104.055963, 44.768236],\n\t\t\t\t\t\t[-104.057698, 44.997431],\n\t\t\t\t\t\t[-104.040128, 44.999987],\n\t\t\t\t\t\t[-104.040274, 45.212891],\n\t\t\t\t\t\t[-102.957281, 45.212851],\n\t\t\t\t\t\t[-102.957371, 45.039569],\n\t\t\t\t\t\t[-102.964125, 44.604287],\n\t\t\t\t\t\t[-103.567653, 44.604098],\n\t\t\t\t\t\t[-103.820639, 44.604777],\n\t\t\t\t\t\t[-104.055877, 44.571016]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46023\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"023\",\n\t\t\t\t\"NAME\": \"Charles Mix\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1097.487000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.498550, 42.998560],\n\t\t\t\t\t\t[-98.524871, 43.039347],\n\t\t\t\t\t\t[-98.690460, 43.076556],\n\t\t\t\t\t\t[-98.773406, 43.145919],\n\t\t\t\t\t\t[-98.868762, 43.162009],\n\t\t\t\t\t\t[-98.896783, 43.246909],\n\t\t\t\t\t\t[-99.069285, 43.320688],\n\t\t\t\t\t\t[-99.152889, 43.426908],\n\t\t\t\t\t\t[-99.304332, 43.460386],\n\t\t\t\t\t\t[-99.297998, 43.499669],\n\t\t\t\t\t\t[-99.297882, 43.499856],\n\t\t\t\t\t\t[-98.794588, 43.499187],\n\t\t\t\t\t\t[-98.714946, 43.499121],\n\t\t\t\t\t\t[-98.705782, 43.499319],\n\t\t\t\t\t\t[-98.680688, 43.373157],\n\t\t\t\t\t\t[-98.109492, 43.196838],\n\t\t\t\t\t\t[-98.069044, 43.184887],\n\t\t\t\t\t\t[-98.077108, 43.168330],\n\t\t\t\t\t\t[-98.092782, 42.973921],\n\t\t\t\t\t\t[-98.157405, 42.831899],\n\t\t\t\t\t\t[-98.165835, 42.837011],\n\t\t\t\t\t\t[-98.204506, 42.846845],\n\t\t\t\t\t\t[-98.309741, 42.881232],\n\t\t\t\t\t\t[-98.325864, 42.886500],\n\t\t\t\t\t\t[-98.447047, 42.935117],\n\t\t\t\t\t\t[-98.467356, 42.947556],\n\t\t\t\t\t\t[-98.490483, 42.977948],\n\t\t\t\t\t\t[-98.495747, 42.988032],\n\t\t\t\t\t\t[-98.498550, 42.998560]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46033\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"033\",\n\t\t\t\t\"NAME\": \"Custer\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1557.002000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-104.054787, 43.503328],\n\t\t\t\t\t\t[-104.055032, 43.558603],\n\t\t\t\t\t\t[-104.054840, 43.579368],\n\t\t\t\t\t\t[-104.054885, 43.583512],\n\t\t\t\t\t\t[-104.054902, 43.583852],\n\t\t\t\t\t\t[-104.055133, 43.747105],\n\t\t\t\t\t\t[-104.055138, 43.750421],\n\t\t\t\t\t\t[-104.055104, 43.853478],\n\t\t\t\t\t\t[-102.687192, 43.855415],\n\t\t\t\t\t\t[-102.695526, 43.798150],\n\t\t\t\t\t\t[-102.817114, 43.689658],\n\t\t\t\t\t\t[-102.810419, 43.688132],\n\t\t\t\t\t\t[-102.902500, 43.674888],\n\t\t\t\t\t\t[-103.001068, 43.605799],\n\t\t\t\t\t\t[-103.000785, 43.476847],\n\t\t\t\t\t\t[-103.935373, 43.478824],\n\t\t\t\t\t\t[-104.054779, 43.477815],\n\t\t\t\t\t\t[-104.054786, 43.503072],\n\t\t\t\t\t\t[-104.054787, 43.503328]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46039\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"039\",\n\t\t\t\t\"NAME\": \"Deuel\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 622.686000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.882345, 44.976870],\n\t\t\t\t\t\t[-96.452092, 44.977494],\n\t\t\t\t\t\t[-96.452092, 44.977475],\n\t\t\t\t\t\t[-96.452347, 44.962734],\n\t\t\t\t\t\t[-96.452047, 44.910695],\n\t\t\t\t\t\t[-96.451853, 44.906672],\n\t\t\t\t\t\t[-96.452009, 44.890080],\n\t\t\t\t\t\t[-96.451560, 44.805569],\n\t\t\t\t\t\t[-96.451559, 44.805468],\n\t\t\t\t\t\t[-96.451829, 44.797691],\n\t\t\t\t\t\t[-96.451888, 44.792299],\n\t\t\t\t\t\t[-96.451823, 44.790471],\n\t\t\t\t\t\t[-96.451620, 44.776191],\n\t\t\t\t\t\t[-96.451380, 44.761788],\n\t\t\t\t\t\t[-96.451573, 44.760510],\n\t\t\t\t\t\t[-96.451543, 44.703135],\n\t\t\t\t\t\t[-96.451761, 44.631350],\n\t\t\t\t\t\t[-96.451761, 44.631194],\n\t\t\t\t\t\t[-96.451720, 44.630708],\n\t\t\t\t\t\t[-96.451888, 44.544058],\n\t\t\t\t\t\t[-96.451990, 44.543639],\n\t\t\t\t\t\t[-96.885504, 44.543773],\n\t\t\t\t\t\t[-96.884570, 44.804436],\n\t\t\t\t\t\t[-96.882345, 44.976870]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46041\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"041\",\n\t\t\t\t\"NAME\": \"Dewey\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2302.494000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.341924, 45.472904],\n\t\t\t\t\t\t[-100.274176, 45.381845],\n\t\t\t\t\t\t[-100.316659, 45.317904],\n\t\t\t\t\t\t[-100.260223, 45.246810],\n\t\t\t\t\t\t[-100.325451, 45.099337],\n\t\t\t\t\t\t[-100.280344, 45.018409],\n\t\t\t\t\t\t[-100.391818, 45.026006],\n\t\t\t\t\t\t[-100.404753, 44.897695],\n\t\t\t\t\t\t[-100.418682, 44.843366],\n\t\t\t\t\t\t[-100.543484, 44.761087],\n\t\t\t\t\t\t[-100.676387, 44.823162],\n\t\t\t\t\t\t[-100.717644, 44.770930],\n\t\t\t\t\t\t[-100.829795, 44.783248],\n\t\t\t\t\t\t[-101.022611, 44.724153],\n\t\t\t\t\t\t[-101.136838, 44.747126],\n\t\t\t\t\t\t[-101.136162, 44.994074],\n\t\t\t\t\t\t[-101.500988, 44.993649],\n\t\t\t\t\t\t[-101.486348, 45.385590],\n\t\t\t\t\t\t[-101.470190, 45.472416],\n\t\t\t\t\t\t[-101.261796, 45.472755],\n\t\t\t\t\t\t[-100.341924, 45.472904]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46045\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"045\",\n\t\t\t\t\"NAME\": \"Edmunds\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1125.956000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.708987, 45.245866],\n\t\t\t\t\t\t[-99.707705, 45.593391],\n\t\t\t\t\t\t[-98.725002, 45.591252],\n\t\t\t\t\t\t[-98.722174, 45.591242],\n\t\t\t\t\t\t[-98.722481, 45.243764],\n\t\t\t\t\t\t[-99.573445, 45.245364],\n\t\t\t\t\t\t[-99.708987, 45.245866]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46051\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"051\",\n\t\t\t\t\"NAME\": \"Grant\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 681.458000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.452949, 45.269059],\n\t\t\t\t\t\t[-96.452948, 45.268925],\n\t\t\t\t\t\t[-96.452315, 45.208986],\n\t\t\t\t\t\t[-96.452152, 45.204849],\n\t\t\t\t\t\t[-96.452162, 45.203109],\n\t\t\t\t\t\t[-96.452304, 45.178563],\n\t\t\t\t\t\t[-96.452353, 45.124071],\n\t\t\t\t\t\t[-96.452418, 45.122677],\n\t\t\t\t\t\t[-96.452026, 45.095138],\n\t\t\t\t\t\t[-96.452219, 45.093836],\n\t\t\t\t\t\t[-96.452210, 45.051602],\n\t\t\t\t\t\t[-96.452177, 45.050185],\n\t\t\t\t\t\t[-96.452240, 45.042347],\n\t\t\t\t\t\t[-96.452092, 44.977494],\n\t\t\t\t\t\t[-96.882345, 44.976870],\n\t\t\t\t\t\t[-96.883948, 45.150224],\n\t\t\t\t\t\t[-97.226281, 45.151826],\n\t\t\t\t\t\t[-97.226244, 45.297647],\n\t\t\t\t\t\t[-97.007543, 45.296866],\n\t\t\t\t\t\t[-96.992946, 45.326880],\n\t\t\t\t\t\t[-96.470020, 45.326832],\n\t\t\t\t\t\t[-96.454094, 45.301546],\n\t\t\t\t\t\t[-96.453067, 45.298115],\n\t\t\t\t\t\t[-96.452791, 45.284280],\n\t\t\t\t\t\t[-96.452949, 45.269059]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46059\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"059\",\n\t\t\t\t\"NAME\": \"Hand\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1436.613000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.705762, 44.634159],\n\t\t\t\t\t\t[-98.700453, 44.196727],\n\t\t\t\t\t\t[-98.925953, 44.196575],\n\t\t\t\t\t\t[-99.300180, 44.194830],\n\t\t\t\t\t\t[-99.311754, 44.897227],\n\t\t\t\t\t\t[-98.716498, 44.896925],\n\t\t\t\t\t\t[-98.705357, 44.896870],\n\t\t\t\t\t\t[-98.705762, 44.634159]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26159\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"159\",\n\t\t\t\t\"NAME\": \"Van Buren\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 607.474000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.222940, 42.071484],\n\t\t\t\t\t\t[-86.223563, 42.243379],\n\t\t\t\t\t\t[-86.364880, 42.243133],\n\t\t\t\t\t\t[-86.356218, 42.254166],\n\t\t\t\t\t\t[-86.321803, 42.310743],\n\t\t\t\t\t\t[-86.297168, 42.358207],\n\t\t\t\t\t\t[-86.284448, 42.394563],\n\t\t\t\t\t\t[-86.284969, 42.401814],\n\t\t\t\t\t\t[-86.276878, 42.413317],\n\t\t\t\t\t\t[-86.273893, 42.419280],\n\t\t\t\t\t\t[-85.764352, 42.420669],\n\t\t\t\t\t\t[-85.762943, 42.069327],\n\t\t\t\t\t\t[-86.222940, 42.071484]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26163\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"163\",\n\t\t\t\t\"NAME\": \"Wayne\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 612.080000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.551907, 42.435166],\n\t\t\t\t\t\t[-83.433672, 42.438942],\n\t\t\t\t\t\t[-83.316825, 42.442033],\n\t\t\t\t\t\t[-83.287959, 42.442680],\n\t\t\t\t\t\t[-83.083393, 42.447153],\n\t\t\t\t\t\t[-82.870572, 42.451235],\n\t\t\t\t\t\t[-82.870347, 42.450888],\n\t\t\t\t\t\t[-82.886113, 42.408137],\n\t\t\t\t\t\t[-82.888413, 42.398237],\n\t\t\t\t\t\t[-82.894013, 42.389437],\n\t\t\t\t\t\t[-82.898413, 42.385437],\n\t\t\t\t\t\t[-82.915114, 42.378137],\n\t\t\t\t\t\t[-82.919114, 42.374437],\n\t\t\t\t\t\t[-82.928815, 42.359437],\n\t\t\t\t\t\t[-82.923970, 42.352068],\n\t\t\t\t\t\t[-82.959416, 42.339638],\n\t\t\t\t\t\t[-82.988619, 42.332439],\n\t\t\t\t\t\t[-83.018320, 42.329739],\n\t\t\t\t\t\t[-83.064121, 42.317738],\n\t\t\t\t\t\t[-83.079721, 42.308638],\n\t\t\t\t\t\t[-83.096521, 42.290138],\n\t\t\t\t\t\t[-83.128022, 42.238839],\n\t\t\t\t\t\t[-83.131343, 42.202760],\n\t\t\t\t\t\t[-83.133923, 42.174740],\n\t\t\t\t\t\t[-83.124522, 42.137641],\n\t\t\t\t\t\t[-83.133511, 42.088143],\n\t\t\t\t\t\t[-83.157624, 42.085542],\n\t\t\t\t\t\t[-83.168759, 42.073601],\n\t\t\t\t\t\t[-83.170589, 42.072940],\n\t\t\t\t\t\t[-83.188598, 42.066431],\n\t\t\t\t\t\t[-83.189115, 42.061853],\n\t\t\t\t\t\t[-83.186877, 42.061206],\n\t\t\t\t\t\t[-83.185526, 42.052243],\n\t\t\t\t\t\t[-83.188240, 42.031329],\n\t\t\t\t\t\t[-83.185858, 42.029451],\n\t\t\t\t\t\t[-83.185822, 42.029367],\n\t\t\t\t\t\t[-83.295275, 42.094234],\n\t\t\t\t\t\t[-83.539396, 42.085598],\n\t\t\t\t\t\t[-83.542102, 42.174344],\n\t\t\t\t\t\t[-83.547548, 42.349217],\n\t\t\t\t\t\t[-83.551907, 42.435166]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27001\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"001\",\n\t\t\t\t\"NAME\": \"Aitkin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1821.663000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.775257, 47.030418],\n\t\t\t\t\t\t[-93.055943, 47.026415],\n\t\t\t\t\t\t[-93.061529, 46.766550],\n\t\t\t\t\t\t[-93.054847, 46.419269],\n\t\t\t\t\t\t[-93.053871, 46.158120],\n\t\t\t\t\t\t[-93.431831, 46.153991],\n\t\t\t\t\t\t[-93.430648, 46.246412],\n\t\t\t\t\t\t[-93.796281, 46.243199],\n\t\t\t\t\t\t[-93.811464, 46.584238],\n\t\t\t\t\t\t[-93.777905, 46.589671],\n\t\t\t\t\t\t[-93.776024, 46.802891],\n\t\t\t\t\t\t[-93.775257, 47.030418]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27003\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"003\",\n\t\t\t\t\"NAME\": \"Anoka\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 423.010000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.198985, 45.124394],\n\t\t\t\t\t\t[-93.227696, 45.124533],\n\t\t\t\t\t\t[-93.227059, 45.049937],\n\t\t\t\t\t\t[-93.226929, 45.035671],\n\t\t\t\t\t\t[-93.283426, 45.035365],\n\t\t\t\t\t\t[-93.282226, 45.051165],\n\t\t\t\t\t\t[-93.278327, 45.103365],\n\t\t\t\t\t\t[-93.296095, 45.121897],\n\t\t\t\t\t\t[-93.311544, 45.143778],\n\t\t\t\t\t\t[-93.373136, 45.178133],\n\t\t\t\t\t\t[-93.512190, 45.245683],\n\t\t\t\t\t\t[-93.512554, 45.250420],\n\t\t\t\t\t\t[-93.510070, 45.414798],\n\t\t\t\t\t\t[-93.019563, 45.411770],\n\t\t\t\t\t\t[-93.019439, 45.296837],\n\t\t\t\t\t\t[-93.020219, 45.126754],\n\t\t\t\t\t\t[-93.020518, 45.123866],\n\t\t\t\t\t\t[-93.188706, 45.124374],\n\t\t\t\t\t\t[-93.198985, 45.124394]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27011\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"011\",\n\t\t\t\t\"NAME\": \"Big Stone\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 499.022000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.452948, 45.268925],\n\t\t\t\t\t\t[-96.452949, 45.269059],\n\t\t\t\t\t\t[-96.452791, 45.284280],\n\t\t\t\t\t\t[-96.453067, 45.298115],\n\t\t\t\t\t\t[-96.454094, 45.301546],\n\t\t\t\t\t\t[-96.470020, 45.326832],\n\t\t\t\t\t\t[-96.489065, 45.357071],\n\t\t\t\t\t\t[-96.521787, 45.375645],\n\t\t\t\t\t\t[-96.617726, 45.408092],\n\t\t\t\t\t\t[-96.680454, 45.410499],\n\t\t\t\t\t\t[-96.692541, 45.417338],\n\t\t\t\t\t\t[-96.732739, 45.458737],\n\t\t\t\t\t\t[-96.742509, 45.478723],\n\t\t\t\t\t\t[-96.745487, 45.488712],\n\t\t\t\t\t\t[-96.765280, 45.521414],\n\t\t\t\t\t\t[-96.784863, 45.541300],\n\t\t\t\t\t\t[-96.835451, 45.586129],\n\t\t\t\t\t\t[-96.253026, 45.585526],\n\t\t\t\t\t\t[-96.241328, 45.412667],\n\t\t\t\t\t\t[-96.117036, 45.411993],\n\t\t\t\t\t\t[-96.103614, 45.176675],\n\t\t\t\t\t\t[-96.283470, 45.246972],\n\t\t\t\t\t\t[-96.452948, 45.268925]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27017\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"017\",\n\t\t\t\t\"NAME\": \"Carlton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 861.381000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.061529, 46.766550],\n\t\t\t\t\t\t[-92.301676, 46.764134],\n\t\t\t\t\t\t[-92.292192, 46.663242],\n\t\t\t\t\t\t[-92.291597, 46.624941],\n\t\t\t\t\t\t[-92.291647, 46.604649],\n\t\t\t\t\t\t[-92.292371, 46.495585],\n\t\t\t\t\t\t[-92.292510, 46.478761],\n\t\t\t\t\t\t[-92.292727, 46.431993],\n\t\t\t\t\t\t[-92.292847, 46.420876],\n\t\t\t\t\t\t[-92.292860, 46.417220],\n\t\t\t\t\t\t[-93.054847, 46.419269],\n\t\t\t\t\t\t[-93.061529, 46.766550]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27025\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"025\",\n\t\t\t\t\"NAME\": \"Chisago\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 414.862000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.732594, 45.304224],\n\t\t\t\t\t\t[-92.746139, 45.296046],\n\t\t\t\t\t\t[-93.019439, 45.296837],\n\t\t\t\t\t\t[-93.019563, 45.411770],\n\t\t\t\t\t\t[-93.022274, 45.557154],\n\t\t\t\t\t\t[-93.141974, 45.558109],\n\t\t\t\t\t\t[-93.141793, 45.730657],\n\t\t\t\t\t\t[-92.841051, 45.730024],\n\t\t\t\t\t\t[-92.863703, 45.721820],\n\t\t\t\t\t\t[-92.869193, 45.717568],\n\t\t\t\t\t\t[-92.883987, 45.654870],\n\t\t\t\t\t\t[-92.885661, 45.644126],\n\t\t\t\t\t\t[-92.888114, 45.628377],\n\t\t\t\t\t\t[-92.886421, 45.594881],\n\t\t\t\t\t\t[-92.883749, 45.575483],\n\t\t\t\t\t\t[-92.871082, 45.567581],\n\t\t\t\t\t\t[-92.823309, 45.560934],\n\t\t\t\t\t\t[-92.803432, 45.562500],\n\t\t\t\t\t\t[-92.726230, 45.531085],\n\t\t\t\t\t\t[-92.680234, 45.464344],\n\t\t\t\t\t\t[-92.664102, 45.393309],\n\t\t\t\t\t\t[-92.704794, 45.326526],\n\t\t\t\t\t\t[-92.732594, 45.304224]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27035\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"035\",\n\t\t\t\t\"NAME\": \"Crow Wing\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 999.095000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.810362, 46.156585],\n\t\t\t\t\t\t[-94.374592, 46.157093],\n\t\t\t\t\t\t[-94.341679, 46.277705],\n\t\t\t\t\t\t[-94.339351, 46.284649],\n\t\t\t\t\t\t[-94.332523, 46.279566],\n\t\t\t\t\t\t[-94.342895, 46.805530],\n\t\t\t\t\t\t[-93.776024, 46.802891],\n\t\t\t\t\t\t[-93.777905, 46.589671],\n\t\t\t\t\t\t[-93.811464, 46.584238],\n\t\t\t\t\t\t[-93.796281, 46.243199],\n\t\t\t\t\t\t[-93.810912, 46.243128],\n\t\t\t\t\t\t[-93.810362, 46.156585]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27037\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"037\",\n\t\t\t\t\"NAME\": \"Dakota\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 562.168000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.802402, 44.745167],\n\t\t\t\t\t\t[-92.737259, 44.717155],\n\t\t\t\t\t\t[-92.732042, 44.713775],\n\t\t\t\t\t\t[-92.732043, 44.629484],\n\t\t\t\t\t\t[-92.792584, 44.629722],\n\t\t\t\t\t\t[-92.792600, 44.542971],\n\t\t\t\t\t\t[-93.039344, 44.515350],\n\t\t\t\t\t\t[-93.039485, 44.471871],\n\t\t\t\t\t\t[-93.281686, 44.471998],\n\t\t\t\t\t\t[-93.281521, 44.543957],\n\t\t\t\t\t\t[-93.318731, 44.630578],\n\t\t\t\t\t\t[-93.329615, 44.791086],\n\t\t\t\t\t\t[-93.197918, 44.861977],\n\t\t\t\t\t\t[-93.200744, 44.864884],\n\t\t\t\t\t\t[-93.189886, 44.871537],\n\t\t\t\t\t\t[-93.188627, 44.874096],\n\t\t\t\t\t\t[-93.186212, 44.876364],\n\t\t\t\t\t\t[-93.181772, 44.877829],\n\t\t\t\t\t\t[-93.178618, 44.880337],\n\t\t\t\t\t\t[-93.179613, 44.882748],\n\t\t\t\t\t\t[-93.182381, 44.884728],\n\t\t\t\t\t\t[-93.183148, 44.886739],\n\t\t\t\t\t\t[-93.178539, 44.888338],\n\t\t\t\t\t\t[-93.128629, 44.919648],\n\t\t\t\t\t\t[-93.020044, 44.890750],\n\t\t\t\t\t\t[-93.016466, 44.884611],\n\t\t\t\t\t\t[-93.012639, 44.869102],\n\t\t\t\t\t\t[-93.010076, 44.863787],\n\t\t\t\t\t\t[-93.005978, 44.771685],\n\t\t\t\t\t\t[-92.802201, 44.745714],\n\t\t\t\t\t\t[-92.802402, 44.745167]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27041\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"041\",\n\t\t\t\t\"NAME\": \"Douglas\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 637.300000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.758508, 45.759932],\n\t\t\t\t\t\t[-95.769750, 46.107450],\n\t\t\t\t\t\t[-95.145880, 46.106761],\n\t\t\t\t\t\t[-95.139731, 45.773416],\n\t\t\t\t\t\t[-95.139670, 45.758891],\n\t\t\t\t\t\t[-95.758508, 45.759932]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27043\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"043\",\n\t\t\t\t\"NAME\": \"Faribault\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 712.476000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.247123, 43.847946],\n\t\t\t\t\t\t[-93.767761, 43.847956],\n\t\t\t\t\t\t[-93.648290, 43.848139],\n\t\t\t\t\t\t[-93.648533, 43.499559],\n\t\t\t\t\t\t[-93.699345, 43.499576],\n\t\t\t\t\t\t[-93.704916, 43.499568],\n\t\t\t\t\t\t[-93.708771, 43.499564],\n\t\t\t\t\t\t[-93.716217, 43.499563],\n\t\t\t\t\t\t[-93.794285, 43.499542],\n\t\t\t\t\t\t[-93.795793, 43.499520],\n\t\t\t\t\t\t[-93.970760, 43.499605],\n\t\t\t\t\t\t[-93.970762, 43.499605],\n\t\t\t\t\t\t[-94.092894, 43.500302],\n\t\t\t\t\t\t[-94.094339, 43.500302],\n\t\t\t\t\t\t[-94.108068, 43.500300],\n\t\t\t\t\t\t[-94.109880, 43.500283],\n\t\t\t\t\t\t[-94.247965, 43.500333],\n\t\t\t\t\t\t[-94.247123, 43.847946]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27045\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"045\",\n\t\t\t\t\"NAME\": \"Fillmore\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 861.300000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.448965, 43.834105],\n\t\t\t\t\t\t[-92.448830, 43.848274],\n\t\t\t\t\t\t[-92.079292, 43.847080],\n\t\t\t\t\t\t[-91.730424, 43.846935],\n\t\t\t\t\t\t[-91.730470, 43.502330],\n\t\t\t\t\t\t[-91.730217, 43.500680],\n\t\t\t\t\t\t[-91.730359, 43.500680],\n\t\t\t\t\t\t[-91.733330, 43.500623],\n\t\t\t\t\t\t[-91.736558, 43.500561],\n\t\t\t\t\t\t[-91.738446, 43.500525],\n\t\t\t\t\t\t[-91.761414, 43.500637],\n\t\t\t\t\t\t[-91.777688, 43.500711],\n\t\t\t\t\t\t[-91.779290, 43.500803],\n\t\t\t\t\t\t[-91.804925, 43.500716],\n\t\t\t\t\t\t[-91.807156, 43.500648],\n\t\t\t\t\t\t[-91.824848, 43.500684],\n\t\t\t\t\t\t[-91.941837, 43.500554],\n\t\t\t\t\t\t[-91.949879, 43.500485],\n\t\t\t\t\t\t[-92.079802, 43.500647],\n\t\t\t\t\t\t[-92.079954, 43.500647],\n\t\t\t\t\t\t[-92.089970, 43.500684],\n\t\t\t\t\t\t[-92.103886, 43.500735],\n\t\t\t\t\t\t[-92.178863, 43.500713],\n\t\t\t\t\t\t[-92.198788, 43.500527],\n\t\t\t\t\t\t[-92.277425, 43.500466],\n\t\t\t\t\t\t[-92.279084, 43.500436],\n\t\t\t\t\t\t[-92.368908, 43.500454],\n\t\t\t\t\t\t[-92.388298, 43.500483],\n\t\t\t\t\t\t[-92.406130, 43.500476],\n\t\t\t\t\t\t[-92.408832, 43.500614],\n\t\t\t\t\t\t[-92.448948, 43.500420],\n\t\t\t\t\t\t[-92.449087, 43.503302],\n\t\t\t\t\t\t[-92.448965, 43.834105]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27053\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"053\",\n\t\t\t\t\"NAME\": \"Hennepin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 553.591000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.208092, 45.035744],\n\t\t\t\t\t\t[-93.178539, 44.888338],\n\t\t\t\t\t\t[-93.183148, 44.886739],\n\t\t\t\t\t\t[-93.182381, 44.884728],\n\t\t\t\t\t\t[-93.179613, 44.882748],\n\t\t\t\t\t\t[-93.178618, 44.880337],\n\t\t\t\t\t\t[-93.181772, 44.877829],\n\t\t\t\t\t\t[-93.186212, 44.876364],\n\t\t\t\t\t\t[-93.188627, 44.874096],\n\t\t\t\t\t\t[-93.189886, 44.871537],\n\t\t\t\t\t\t[-93.200744, 44.864884],\n\t\t\t\t\t\t[-93.197918, 44.861977],\n\t\t\t\t\t\t[-93.329615, 44.791086],\n\t\t\t\t\t\t[-93.520431, 44.804263],\n\t\t\t\t\t\t[-93.520632, 44.858473],\n\t\t\t\t\t\t[-93.520725, 44.861999],\n\t\t\t\t\t\t[-93.520632, 44.864108],\n\t\t\t\t\t\t[-93.520706, 44.891502],\n\t\t\t\t\t\t[-93.767041, 44.890862],\n\t\t\t\t\t\t[-93.767367, 44.977964],\n\t\t\t\t\t\t[-93.761874, 45.081244],\n\t\t\t\t\t\t[-93.675914, 45.151134],\n\t\t\t\t\t\t[-93.667203, 45.154443],\n\t\t\t\t\t\t[-93.661545, 45.153274],\n\t\t\t\t\t\t[-93.647747, 45.158609],\n\t\t\t\t\t\t[-93.645168, 45.161561],\n\t\t\t\t\t\t[-93.638622, 45.165620],\n\t\t\t\t\t\t[-93.638745, 45.174363],\n\t\t\t\t\t\t[-93.521653, 45.246618],\n\t\t\t\t\t\t[-93.515342, 45.246320],\n\t\t\t\t\t\t[-93.512190, 45.245683],\n\t\t\t\t\t\t[-93.373136, 45.178133],\n\t\t\t\t\t\t[-93.311544, 45.143778],\n\t\t\t\t\t\t[-93.296095, 45.121897],\n\t\t\t\t\t\t[-93.278327, 45.103365],\n\t\t\t\t\t\t[-93.282226, 45.051165],\n\t\t\t\t\t\t[-93.283426, 45.035365],\n\t\t\t\t\t\t[-93.226929, 45.035671],\n\t\t\t\t\t\t[-93.208092, 45.035744]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27059\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"059\",\n\t\t\t\t\"NAME\": \"Isanti\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 435.794000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.510704, 45.558772],\n\t\t\t\t\t\t[-93.512402, 45.718817],\n\t\t\t\t\t\t[-93.513683, 45.734318],\n\t\t\t\t\t\t[-93.404626, 45.731324],\n\t\t\t\t\t\t[-93.141793, 45.730657],\n\t\t\t\t\t\t[-93.141974, 45.558109],\n\t\t\t\t\t\t[-93.022274, 45.557154],\n\t\t\t\t\t\t[-93.019563, 45.411770],\n\t\t\t\t\t\t[-93.510070, 45.414798],\n\t\t\t\t\t\t[-93.510704, 45.558772]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37035\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"035\",\n\t\t\t\t\"NAME\": \"Catawba\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 398.721000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.364055, 35.767865],\n\t\t\t\t\t\t[-81.353862, 35.768895],\n\t\t\t\t\t\t[-81.355709, 35.780385],\n\t\t\t\t\t\t[-81.346340, 35.794072],\n\t\t\t\t\t\t[-81.334255, 35.796460],\n\t\t\t\t\t\t[-81.142338, 35.827434],\n\t\t\t\t\t\t[-81.109416, 35.776638],\n\t\t\t\t\t\t[-80.924548, 35.621735],\n\t\t\t\t\t\t[-80.960029, 35.547810],\n\t\t\t\t\t\t[-80.961841, 35.548191],\n\t\t\t\t\t\t[-81.534359, 35.568811],\n\t\t\t\t\t\t[-81.364055, 35.767865]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37037\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"037\",\n\t\t\t\t\"NAME\": \"Chatham\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 682.185000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.906170, 35.867912],\n\t\t\t\t\t\t[-78.909427, 35.842941],\n\t\t\t\t\t\t[-78.971335, 35.675614],\n\t\t\t\t\t\t[-78.995054, 35.610233],\n\t\t\t\t\t\t[-78.913296, 35.583064],\n\t\t\t\t\t\t[-78.969761, 35.521433],\n\t\t\t\t\t\t[-79.118958, 35.628215],\n\t\t\t\t\t\t[-79.350009, 35.517991],\n\t\t\t\t\t\t[-79.351354, 35.517761],\n\t\t\t\t\t\t[-79.555896, 35.515085],\n\t\t\t\t\t\t[-79.542490, 35.843399],\n\t\t\t\t\t\t[-79.318849, 35.844078],\n\t\t\t\t\t\t[-79.249475, 35.876788],\n\t\t\t\t\t\t[-79.016699, 35.863201],\n\t\t\t\t\t\t[-78.906170, 35.867912]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37039\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"039\",\n\t\t\t\t\"NAME\": \"Cherokee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 455.426000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.321869, 34.988408],\n\t\t\t\t\t\t[-84.308576, 35.092761],\n\t\t\t\t\t\t[-84.308437, 35.093173],\n\t\t\t\t\t\t[-84.292321, 35.206677],\n\t\t\t\t\t\t[-84.290240, 35.225572],\n\t\t\t\t\t\t[-84.227818, 35.267878],\n\t\t\t\t\t\t[-84.223718, 35.269078],\n\t\t\t\t\t\t[-84.211818, 35.266078],\n\t\t\t\t\t\t[-84.202879, 35.255772],\n\t\t\t\t\t\t[-84.124915, 35.249830],\n\t\t\t\t\t\t[-84.121150, 35.250644],\n\t\t\t\t\t\t[-84.115279, 35.250438],\n\t\t\t\t\t\t[-84.115048, 35.249765],\n\t\t\t\t\t\t[-84.097508, 35.247382],\n\t\t\t\t\t\t[-84.055712, 35.268182],\n\t\t\t\t\t\t[-84.029033, 35.291049],\n\t\t\t\t\t\t[-83.958805, 35.216929],\n\t\t\t\t\t\t[-83.844709, 35.255408],\n\t\t\t\t\t\t[-83.702521, 35.248398],\n\t\t\t\t\t\t[-83.738106, 35.155911],\n\t\t\t\t\t\t[-83.857142, 35.137071],\n\t\t\t\t\t\t[-84.005457, 34.987440],\n\t\t\t\t\t\t[-84.021357, 34.987430],\n\t\t\t\t\t\t[-84.029954, 34.987321],\n\t\t\t\t\t\t[-84.129455, 34.987504],\n\t\t\t\t\t\t[-84.129555, 34.987504],\n\t\t\t\t\t\t[-84.321869, 34.988408]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37041\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"041\",\n\t\t\t\t\"NAME\": \"Chowan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 172.473000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.411844, 36.075376],\n\t\t\t\t\t\t[-76.412984, 36.072243],\n\t\t\t\t\t\t[-76.420881, 36.060660],\n\t\t\t\t\t\t[-76.442994, 36.042758],\n\t\t\t\t\t\t[-76.451418, 36.039073],\n\t\t\t\t\t\t[-76.458789, 36.028016],\n\t\t\t\t\t\t[-76.459316, 36.024331],\n\t\t\t\t\t\t[-76.491959, 36.018013],\n\t\t\t\t\t\t[-76.514335, 36.005640],\n\t\t\t\t\t\t[-76.547505, 36.009852],\n\t\t\t\t\t\t[-76.563300, 36.009852],\n\t\t\t\t\t\t[-76.575936, 36.006167],\n\t\t\t\t\t\t[-76.580674, 36.007220],\n\t\t\t\t\t\t[-76.589625, 36.015644],\n\t\t\t\t\t\t[-76.603840, 36.033018],\n\t\t\t\t\t\t[-76.615423, 36.037757],\n\t\t\t\t\t\t[-76.631745, 36.038283],\n\t\t\t\t\t\t[-76.653332, 36.035124],\n\t\t\t\t\t\t[-76.668814, 36.020968],\n\t\t\t\t\t\t[-76.736326, 36.147042],\n\t\t\t\t\t\t[-76.706556, 36.243869],\n\t\t\t\t\t\t[-76.690392, 36.267269],\n\t\t\t\t\t\t[-76.696601, 36.296211],\n\t\t\t\t\t\t[-76.559674, 36.351892],\n\t\t\t\t\t\t[-76.589897, 36.239009],\n\t\t\t\t\t\t[-76.573374, 36.112266],\n\t\t\t\t\t\t[-76.411844, 36.075376]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37047\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"047\",\n\t\t\t\t\"NAME\": \"Columbus\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 937.293000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.710141, 33.994688],\n\t\t\t\t\t\t[-78.712206, 33.996732],\n\t\t\t\t\t\t[-79.071169, 34.299240],\n\t\t\t\t\t\t[-78.951088, 34.449026],\n\t\t\t\t\t\t[-78.871530, 34.482668],\n\t\t\t\t\t\t[-78.677447, 34.469435],\n\t\t\t\t\t\t[-78.446230, 34.376839],\n\t\t\t\t\t\t[-78.337248, 34.367089],\n\t\t\t\t\t\t[-78.256316, 34.399763],\n\t\t\t\t\t\t[-78.162350, 34.357007],\n\t\t\t\t\t\t[-78.254470, 34.216318],\n\t\t\t\t\t\t[-78.374233, 34.205023],\n\t\t\t\t\t\t[-78.422567, 34.139217],\n\t\t\t\t\t\t[-78.494928, 34.166772],\n\t\t\t\t\t\t[-78.545218, 34.145747],\n\t\t\t\t\t\t[-78.556850, 34.062377],\n\t\t\t\t\t\t[-78.650500, 33.944035],\n\t\t\t\t\t\t[-78.710141, 33.994688]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37059\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"059\",\n\t\t\t\t\"NAME\": \"Davie\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 264.105000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.496403, 36.046536],\n\t\t\t\t\t\t[-80.395389, 35.973210],\n\t\t\t\t\t\t[-80.365681, 35.895787],\n\t\t\t\t\t\t[-80.464086, 35.827538],\n\t\t\t\t\t\t[-80.458904, 35.742811],\n\t\t\t\t\t\t[-80.631796, 35.845784],\n\t\t\t\t\t\t[-80.707670, 35.852913],\n\t\t\t\t\t\t[-80.693198, 36.051114],\n\t\t\t\t\t\t[-80.496403, 36.046536]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37061\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"061\",\n\t\t\t\t\"NAME\": \"Duplin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 816.219000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.113208, 34.721969],\n\t\t\t\t\t\t[-78.200473, 34.737301],\n\t\t\t\t\t\t[-78.147081, 34.902448],\n\t\t\t\t\t\t[-78.164810, 35.179145],\n\t\t\t\t\t\t[-78.163539, 35.189370],\n\t\t\t\t\t\t[-78.043617, 35.192769],\n\t\t\t\t\t\t[-77.893043, 35.146560],\n\t\t\t\t\t\t[-77.834250, 35.177814],\n\t\t\t\t\t\t[-77.769064, 35.145471],\n\t\t\t\t\t\t[-77.747639, 35.071354],\n\t\t\t\t\t\t[-77.745885, 35.022587],\n\t\t\t\t\t\t[-77.739660, 35.016641],\n\t\t\t\t\t\t[-77.730784, 35.008259],\n\t\t\t\t\t\t[-77.731030, 35.008140],\n\t\t\t\t\t\t[-77.683380, 34.979123],\n\t\t\t\t\t\t[-77.675373, 34.973417],\n\t\t\t\t\t\t[-77.671490, 34.811643],\n\t\t\t\t\t\t[-77.676395, 34.787182],\n\t\t\t\t\t\t[-77.680560, 34.720640],\n\t\t\t\t\t\t[-78.113208, 34.721969]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37065\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"065\",\n\t\t\t\t\"NAME\": \"Edgecombe\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 505.336000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.809100, 35.909272],\n\t\t\t\t\t\t[-77.777751, 35.984635],\n\t\t\t\t\t\t[-77.774125, 35.998742],\n\t\t\t\t\t\t[-77.697879, 36.152981],\n\t\t\t\t\t\t[-77.538311, 36.094037],\n\t\t\t\t\t\t[-77.526809, 36.037699],\n\t\t\t\t\t\t[-77.402701, 36.004933],\n\t\t\t\t\t\t[-77.342462, 35.905346],\n\t\t\t\t\t\t[-77.350602, 35.819214],\n\t\t\t\t\t\t[-77.390227, 35.832920],\n\t\t\t\t\t\t[-77.516479, 35.760866],\n\t\t\t\t\t\t[-77.538364, 35.750162],\n\t\t\t\t\t\t[-77.661312, 35.677321],\n\t\t\t\t\t\t[-77.751567, 35.827860],\n\t\t\t\t\t\t[-77.828444, 35.867208],\n\t\t\t\t\t\t[-77.822385, 35.878216],\n\t\t\t\t\t\t[-77.809100, 35.909272]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37069\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"069\",\n\t\t\t\t\"NAME\": \"Franklin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 491.682000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.496474, 36.175217],\n\t\t\t\t\t\t[-78.422426, 36.164160],\n\t\t\t\t\t\t[-78.307012, 36.266159],\n\t\t\t\t\t\t[-78.132887, 36.246445],\n\t\t\t\t\t\t[-78.006554, 36.202663],\n\t\t\t\t\t\t[-78.172179, 35.956301],\n\t\t\t\t\t\t[-78.254903, 35.817730],\n\t\t\t\t\t\t[-78.307314, 35.896587],\n\t\t\t\t\t\t[-78.546497, 36.021804],\n\t\t\t\t\t\t[-78.544801, 36.080678],\n\t\t\t\t\t\t[-78.496474, 36.175217]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37071\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"071\",\n\t\t\t\t\"NAME\": \"Gaston\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 356.027000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.043407, 35.148390],\n\t\t\t\t\t\t[-81.090215, 35.152627],\n\t\t\t\t\t\t[-81.239358, 35.159974],\n\t\t\t\t\t\t[-81.241686, 35.160081],\n\t\t\t\t\t\t[-81.269199, 35.161140],\n\t\t\t\t\t\t[-81.328020, 35.163404],\n\t\t\t\t\t\t[-81.321314, 35.260221],\n\t\t\t\t\t\t[-81.364925, 35.311225],\n\t\t\t\t\t\t[-81.456505, 35.419616],\n\t\t\t\t\t\t[-81.300355, 35.414611],\n\t\t\t\t\t\t[-80.955388, 35.400833],\n\t\t\t\t\t\t[-81.008979, 35.245740],\n\t\t\t\t\t\t[-81.013956, 35.220588],\n\t\t\t\t\t\t[-81.006196, 35.210301],\n\t\t\t\t\t\t[-81.005061, 35.189821],\n\t\t\t\t\t\t[-81.005851, 35.156562],\n\t\t\t\t\t\t[-81.042758, 35.146042],\n\t\t\t\t\t\t[-81.043407, 35.148390]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37075\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"075\",\n\t\t\t\t\"NAME\": \"Graham\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 292.079000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.029033, 35.291049],\n\t\t\t\t\t\t[-84.023510, 35.295783],\n\t\t\t\t\t\t[-84.021410, 35.301383],\n\t\t\t\t\t\t[-84.032479, 35.325318],\n\t\t\t\t\t\t[-84.032450, 35.326530],\n\t\t\t\t\t\t[-84.038081, 35.348363],\n\t\t\t\t\t\t[-84.037494, 35.349850],\n\t\t\t\t\t\t[-84.035343, 35.350833],\n\t\t\t\t\t\t[-84.024756, 35.353896],\n\t\t\t\t\t\t[-84.002250, 35.422548],\n\t\t\t\t\t\t[-83.999906, 35.425201],\n\t\t\t\t\t\t[-83.961400, 35.459496],\n\t\t\t\t\t\t[-83.961054, 35.462838],\n\t\t\t\t\t\t[-83.961056, 35.463738],\n\t\t\t\t\t\t[-83.961053, 35.464143],\n\t\t\t\t\t\t[-83.952882, 35.460635],\n\t\t\t\t\t\t[-83.952676, 35.460763],\n\t\t\t\t\t\t[-83.585544, 35.434867],\n\t\t\t\t\t\t[-83.680043, 35.279414],\n\t\t\t\t\t\t[-83.683552, 35.276808],\n\t\t\t\t\t\t[-83.683945, 35.274216],\n\t\t\t\t\t\t[-83.686290, 35.271745],\n\t\t\t\t\t\t[-83.689390, 35.266963],\n\t\t\t\t\t\t[-83.690005, 35.265040],\n\t\t\t\t\t\t[-83.691764, 35.263690],\n\t\t\t\t\t\t[-83.692965, 35.260761],\n\t\t\t\t\t\t[-83.694278, 35.259366],\n\t\t\t\t\t\t[-83.694698, 35.257329],\n\t\t\t\t\t\t[-83.696930, 35.255682],\n\t\t\t\t\t\t[-83.698745, 35.253279],\n\t\t\t\t\t\t[-83.700556, 35.252172],\n\t\t\t\t\t\t[-83.702521, 35.248398],\n\t\t\t\t\t\t[-83.844709, 35.255408],\n\t\t\t\t\t\t[-83.958805, 35.216929],\n\t\t\t\t\t\t[-84.029033, 35.291049]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37077\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"077\",\n\t\t\t\t\"NAME\": \"Granville\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 531.570000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.758392, 36.541852],\n\t\t\t\t\t\t[-78.734122, 36.541902],\n\t\t\t\t\t\t[-78.670051, 36.542035],\n\t\t\t\t\t\t[-78.663317, 36.542011],\n\t\t\t\t\t\t[-78.533013, 36.541004],\n\t\t\t\t\t\t[-78.529722, 36.540981],\n\t\t\t\t\t\t[-78.471022, 36.542307],\n\t\t\t\t\t\t[-78.470792, 36.542316],\n\t\t\t\t\t\t[-78.456970, 36.542474],\n\t\t\t\t\t\t[-78.511276, 36.430753],\n\t\t\t\t\t\t[-78.510658, 36.309712],\n\t\t\t\t\t\t[-78.511300, 36.267521],\n\t\t\t\t\t\t[-78.510319, 36.240763],\n\t\t\t\t\t\t[-78.508635, 36.183152],\n\t\t\t\t\t\t[-78.496474, 36.175217],\n\t\t\t\t\t\t[-78.544801, 36.080678],\n\t\t\t\t\t\t[-78.546497, 36.021804],\n\t\t\t\t\t\t[-78.749000, 36.071246],\n\t\t\t\t\t\t[-78.804983, 36.091883],\n\t\t\t\t\t\t[-78.802005, 36.235937],\n\t\t\t\t\t\t[-78.794823, 36.526689],\n\t\t\t\t\t\t[-78.796300, 36.541713],\n\t\t\t\t\t\t[-78.765430, 36.541727],\n\t\t\t\t\t\t[-78.758392, 36.541852]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37083\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"083\",\n\t\t\t\t\"NAME\": \"Halifax\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 724.086000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.897950, 36.506849],\n\t\t\t\t\t\t[-77.645496, 36.480956],\n\t\t\t\t\t\t[-77.557072, 36.418606],\n\t\t\t\t\t\t[-77.586041, 36.337015],\n\t\t\t\t\t\t[-77.441747, 36.324090],\n\t\t\t\t\t\t[-77.386724, 36.213662],\n\t\t\t\t\t\t[-77.350899, 36.191280],\n\t\t\t\t\t\t[-77.330993, 36.192774],\n\t\t\t\t\t\t[-77.300445, 36.164944],\n\t\t\t\t\t\t[-77.291810, 36.168490],\n\t\t\t\t\t\t[-77.264744, 36.159745],\n\t\t\t\t\t\t[-77.230694, 36.103618],\n\t\t\t\t\t\t[-77.327686, 36.074512],\n\t\t\t\t\t\t[-77.339263, 36.064681],\n\t\t\t\t\t\t[-77.402701, 36.004933],\n\t\t\t\t\t\t[-77.526809, 36.037699],\n\t\t\t\t\t\t[-77.538311, 36.094037],\n\t\t\t\t\t\t[-77.697879, 36.152981],\n\t\t\t\t\t\t[-77.887083, 36.143840],\n\t\t\t\t\t\t[-78.006554, 36.202663],\n\t\t\t\t\t\t[-77.912023, 36.382270],\n\t\t\t\t\t\t[-77.897950, 36.506849]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37087\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"087\",\n\t\t\t\t\"NAME\": \"Haywood\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 553.692000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.254231, 35.695807],\n\t\t\t\t\t\t[-83.250695, 35.709349],\n\t\t\t\t\t\t[-83.255489, 35.714974],\n\t\t\t\t\t\t[-83.251247, 35.719916],\n\t\t\t\t\t\t[-83.240669, 35.726760],\n\t\t\t\t\t\t[-83.164909, 35.759965],\n\t\t\t\t\t\t[-83.100233, 35.774745],\n\t\t\t\t\t\t[-83.100329, 35.774804],\n\t\t\t\t\t\t[-83.100225, 35.774765],\n\t\t\t\t\t\t[-82.995803, 35.773128],\n\t\t\t\t\t\t[-82.983970, 35.778010],\n\t\t\t\t\t\t[-82.964108, 35.794100],\n\t\t\t\t\t\t[-82.883665, 35.678190],\n\t\t\t\t\t\t[-82.766726, 35.566764],\n\t\t\t\t\t\t[-82.800276, 35.470536],\n\t\t\t\t\t\t[-82.744383, 35.423342],\n\t\t\t\t\t\t[-82.745209, 35.422924],\n\t\t\t\t\t\t[-82.832001, 35.318434],\n\t\t\t\t\t\t[-82.920819, 35.291868],\n\t\t\t\t\t\t[-82.996829, 35.372796],\n\t\t\t\t\t\t[-83.186052, 35.514573],\n\t\t\t\t\t\t[-83.181894, 35.671127],\n\t\t\t\t\t\t[-83.254231, 35.695807]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42027\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"027\",\n\t\t\t\t\"NAME\": \"Centre\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1109.921000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.667819, 40.735335],\n\t\t\t\t\t\t[-77.681334, 40.729758],\n\t\t\t\t\t\t[-77.824506, 40.743681],\n\t\t\t\t\t\t[-77.944250, 40.691557],\n\t\t\t\t\t\t[-78.116521, 40.739127],\n\t\t\t\t\t\t[-78.131834, 40.743017],\n\t\t\t\t\t\t[-78.359912, 40.732592],\n\t\t\t\t\t\t[-78.376518, 40.754417],\n\t\t\t\t\t\t[-78.249220, 40.855383],\n\t\t\t\t\t\t[-78.168128, 40.960865],\n\t\t\t\t\t\t[-78.077740, 40.958824],\n\t\t\t\t\t\t[-78.056276, 41.004170],\n\t\t\t\t\t\t[-78.112239, 41.114217],\n\t\t\t\t\t\t[-78.038203, 41.153633],\n\t\t\t\t\t\t[-77.898195, 41.252752],\n\t\t\t\t\t\t[-77.892724, 41.178259],\n\t\t\t\t\t\t[-77.798560, 41.181950],\n\t\t\t\t\t\t[-77.741911, 41.107614],\n\t\t\t\t\t\t[-77.621759, 41.091185],\n\t\t\t\t\t\t[-77.508596, 40.962938],\n\t\t\t\t\t\t[-77.144160, 41.044338],\n\t\t\t\t\t\t[-77.364180, 40.846937],\n\t\t\t\t\t\t[-77.667819, 40.735335]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42029\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"029\",\n\t\t\t\t\"NAME\": \"Chester\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 750.508000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-75.361066, 40.065543],\n\t\t\t\t\t\t[-75.414991, 40.041787],\n\t\t\t\t\t\t[-75.435816, 39.985059],\n\t\t\t\t\t\t[-75.562539, 39.901638],\n\t\t\t\t\t\t[-75.594846, 39.837286],\n\t\t\t\t\t\t[-75.595756, 39.837156],\n\t\t\t\t\t\t[-75.634706, 39.830164],\n\t\t\t\t\t\t[-75.641518, 39.828363],\n\t\t\t\t\t\t[-75.662822, 39.821150],\n\t\t\t\t\t\t[-75.685991, 39.811054],\n\t\t\t\t\t\t[-75.716969, 39.791998],\n\t\t\t\t\t\t[-75.739705, 39.772623],\n\t\t\t\t\t\t[-75.788359, 39.721811],\n\t\t\t\t\t\t[-75.799563, 39.721882],\n\t\t\t\t\t\t[-75.810068, 39.721906],\n\t\t\t\t\t\t[-76.013067, 39.721920],\n\t\t\t\t\t\t[-76.027618, 39.721833],\n\t\t\t\t\t\t[-76.135584, 39.721556],\n\t\t\t\t\t\t[-76.066685, 39.759969],\n\t\t\t\t\t\t[-75.991644, 39.868713],\n\t\t\t\t\t\t[-75.985056, 39.937871],\n\t\t\t\t\t\t[-75.942997, 40.109266],\n\t\t\t\t\t\t[-75.873375, 40.137107],\n\t\t\t\t\t\t[-75.729863, 40.224489],\n\t\t\t\t\t\t[-75.696782, 40.241863],\n\t\t\t\t\t\t[-75.592657, 40.225491],\n\t\t\t\t\t\t[-75.573338, 40.195303],\n\t\t\t\t\t\t[-75.562878, 40.197361],\n\t\t\t\t\t\t[-75.557148, 40.207213],\n\t\t\t\t\t\t[-75.549174, 40.189542],\n\t\t\t\t\t\t[-75.525945, 40.148611],\n\t\t\t\t\t\t[-75.361066, 40.065543]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42033\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"033\",\n\t\t\t\t\"NAME\": \"Clearfield\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1144.722000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.513712, 40.725968],\n\t\t\t\t\t\t[-78.712747, 40.724350],\n\t\t\t\t\t\t[-78.801697, 40.724539],\n\t\t\t\t\t\t[-78.806363, 40.845035],\n\t\t\t\t\t\t[-78.805167, 40.905980],\n\t\t\t\t\t\t[-78.804532, 41.132186],\n\t\t\t\t\t\t[-78.710248, 41.201859],\n\t\t\t\t\t\t[-78.646666, 41.253778],\n\t\t\t\t\t\t[-78.236817, 41.230475],\n\t\t\t\t\t\t[-78.093381, 41.216931],\n\t\t\t\t\t\t[-78.061007, 41.174539],\n\t\t\t\t\t\t[-78.038203, 41.153633],\n\t\t\t\t\t\t[-78.112239, 41.114217],\n\t\t\t\t\t\t[-78.056276, 41.004170],\n\t\t\t\t\t\t[-78.077740, 40.958824],\n\t\t\t\t\t\t[-78.168128, 40.960865],\n\t\t\t\t\t\t[-78.249220, 40.855383],\n\t\t\t\t\t\t[-78.376518, 40.754417],\n\t\t\t\t\t\t[-78.359912, 40.732592],\n\t\t\t\t\t\t[-78.350430, 40.724827],\n\t\t\t\t\t\t[-78.513712, 40.725968]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42039\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"039\",\n\t\t\t\t\"NAME\": \"Crawford\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1012.298000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.612598, 41.775030],\n\t\t\t\t\t\t[-79.612873, 41.623858],\n\t\t\t\t\t\t[-79.612866, 41.617058],\n\t\t\t\t\t\t[-79.748047, 41.617747],\n\t\t\t\t\t\t[-79.828876, 41.622057],\n\t\t\t\t\t\t[-79.999779, 41.490049],\n\t\t\t\t\t\t[-80.125316, 41.480395],\n\t\t\t\t\t\t[-80.519209, 41.489013],\n\t\t\t\t\t\t[-80.519225, 41.499924],\n\t\t\t\t\t\t[-80.519157, 41.528769],\n\t\t\t\t\t\t[-80.519339, 41.539297],\n\t\t\t\t\t\t[-80.519357, 41.669767],\n\t\t\t\t\t\t[-80.519424, 41.671228],\n\t\t\t\t\t\t[-80.519373, 41.701473],\n\t\t\t\t\t\t[-80.519408, 41.739359],\n\t\t\t\t\t\t[-80.519369, 41.752487],\n\t\t\t\t\t\t[-80.519239, 41.765138],\n\t\t\t\t\t\t[-80.519294, 41.849563],\n\t\t\t\t\t\t[-79.612072, 41.850056],\n\t\t\t\t\t\t[-79.612598, 41.775030]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42045\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"045\",\n\t\t\t\t\"NAME\": \"Delaware\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 183.843000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-75.562539, 39.901638],\n\t\t\t\t\t\t[-75.435816, 39.985059],\n\t\t\t\t\t\t[-75.414991, 40.041787],\n\t\t\t\t\t\t[-75.361066, 40.065543],\n\t\t\t\t\t\t[-75.356534, 40.062787],\n\t\t\t\t\t\t[-75.349457, 40.052905],\n\t\t\t\t\t\t[-75.276482, 39.976959],\n\t\t\t\t\t\t[-75.262539, 39.876578],\n\t\t\t\t\t\t[-75.240470, 39.872381],\n\t\t\t\t\t\t[-75.215722, 39.876087],\n\t\t\t\t\t\t[-75.210972, 39.865706],\n\t\t\t\t\t\t[-75.235026, 39.856613],\n\t\t\t\t\t\t[-75.271159, 39.849440],\n\t\t\t\t\t\t[-75.306500, 39.849812],\n\t\t\t\t\t\t[-75.374635, 39.825770],\n\t\t\t\t\t\t[-75.390169, 39.816549],\n\t\t\t\t\t\t[-75.415041, 39.801786],\n\t\t\t\t\t\t[-75.428038, 39.809212],\n\t\t\t\t\t\t[-75.453740, 39.820312],\n\t\t\t\t\t\t[-75.498843, 39.833312],\n\t\t\t\t\t\t[-75.539346, 39.838211],\n\t\t\t\t\t\t[-75.579849, 39.838526],\n\t\t\t\t\t\t[-75.579900, 39.838522],\n\t\t\t\t\t\t[-75.593082, 39.837500],\n\t\t\t\t\t\t[-75.593666, 39.837455],\n\t\t\t\t\t\t[-75.594846, 39.837286],\n\t\t\t\t\t\t[-75.562539, 39.901638]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42049\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"049\",\n\t\t\t\t\"NAME\": \"Erie\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 799.154000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.610839, 41.998989],\n\t\t\t\t\t\t[-79.612072, 41.850056],\n\t\t\t\t\t\t[-80.519294, 41.849563],\n\t\t\t\t\t\t[-80.519345, 41.929168],\n\t\t\t\t\t\t[-80.519304, 41.943992],\n\t\t\t\t\t\t[-80.519405, 41.976158],\n\t\t\t\t\t\t[-80.519425, 41.977522],\n\t\t\t\t\t\t[-80.519425, 41.977523],\n\t\t\t\t\t\t[-80.435451, 42.005611],\n\t\t\t\t\t\t[-80.409776, 42.011578],\n\t\t\t\t\t\t[-80.373066, 42.024102],\n\t\t\t\t\t\t[-80.371869, 42.023966],\n\t\t\t\t\t\t[-80.363251, 42.027973],\n\t\t\t\t\t\t[-80.349169, 42.030243],\n\t\t\t\t\t\t[-80.329976, 42.036168],\n\t\t\t\t\t\t[-80.296758, 42.049076],\n\t\t\t\t\t\t[-80.230486, 42.077957],\n\t\t\t\t\t\t[-80.188085, 42.094257],\n\t\t\t\t\t\t[-80.165884, 42.105857],\n\t\t\t\t\t\t[-80.154084, 42.114757],\n\t\t\t\t\t\t[-80.136213, 42.149937],\n\t\t\t\t\t\t[-80.130430, 42.156331],\n\t\t\t\t\t\t[-80.117368, 42.166341],\n\t\t\t\t\t\t[-80.088512, 42.173184],\n\t\t\t\t\t\t[-80.077388, 42.171262],\n\t\t\t\t\t\t[-80.073381, 42.168658],\n\t\t\t\t\t\t[-80.080028, 42.163625],\n\t\t\t\t\t\t[-80.071981, 42.155357],\n\t\t\t\t\t\t[-80.078781, 42.151457],\n\t\t\t\t\t\t[-80.076281, 42.147857],\n\t\t\t\t\t\t[-80.071980, 42.146057],\n\t\t\t\t\t\t[-80.061080, 42.144857],\n\t\t\t\t\t\t[-79.989186, 42.177051],\n\t\t\t\t\t\t[-79.931324, 42.206737],\n\t\t\t\t\t\t[-79.923924, 42.207546],\n\t\t\t\t\t\t[-79.901050, 42.216701],\n\t\t\t\t\t\t[-79.886187, 42.224933],\n\t\t\t\t\t\t[-79.867979, 42.230999],\n\t\t\t\t\t\t[-79.844661, 42.235486],\n\t\t\t\t\t\t[-79.798447, 42.255939],\n\t\t\t\t\t\t[-79.761951, 42.269860],\n\t\t\t\t\t\t[-79.761964, 42.251354],\n\t\t\t\t\t\t[-79.762152, 42.243054],\n\t\t\t\t\t\t[-79.761833, 42.183627],\n\t\t\t\t\t\t[-79.761929, 42.179693],\n\t\t\t\t\t\t[-79.761921, 42.173319],\n\t\t\t\t\t\t[-79.761759, 42.162675],\n\t\t\t\t\t\t[-79.761861, 42.150712],\n\t\t\t\t\t\t[-79.762122, 42.131246],\n\t\t\t\t\t\t[-79.761374, 41.999067],\n\t\t\t\t\t\t[-79.625287, 41.999003],\n\t\t\t\t\t\t[-79.625301, 41.999068],\n\t\t\t\t\t\t[-79.610839, 41.998989]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42051\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"051\",\n\t\t\t\t\"NAME\": \"Fayette\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 790.339000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.476662, 39.721078],\n\t\t\t\t\t\t[-79.608223, 39.721154],\n\t\t\t\t\t\t[-79.610623, 39.721245],\n\t\t\t\t\t\t[-79.763774, 39.720776],\n\t\t\t\t\t\t[-79.852904, 39.720713],\n\t\t\t\t\t\t[-79.853131, 39.720713],\n\t\t\t\t\t\t[-79.916266, 39.720792],\n\t\t\t\t\t\t[-79.915278, 39.880300],\n\t\t\t\t\t\t[-79.998014, 39.983322],\n\t\t\t\t\t\t[-79.877048, 40.036826],\n\t\t\t\t\t\t[-79.877385, 40.126792],\n\t\t\t\t\t\t[-79.722240, 40.121141],\n\t\t\t\t\t\t[-79.641098, 40.088317],\n\t\t\t\t\t\t[-79.592602, 40.092005],\n\t\t\t\t\t\t[-79.578966, 40.105496],\n\t\t\t\t\t\t[-79.540347, 40.114035],\n\t\t\t\t\t\t[-79.505188, 40.140568],\n\t\t\t\t\t\t[-79.479402, 40.142801],\n\t\t\t\t\t\t[-79.457008, 40.135108],\n\t\t\t\t\t\t[-79.293682, 40.040413],\n\t\t\t\t\t\t[-79.294283, 40.039429],\n\t\t\t\t\t\t[-79.296131, 40.036750],\n\t\t\t\t\t\t[-79.301533, 40.029860],\n\t\t\t\t\t\t[-79.302801, 40.028500],\n\t\t\t\t\t\t[-79.325250, 39.999872],\n\t\t\t\t\t\t[-79.330397, 39.992796],\n\t\t\t\t\t\t[-79.347363, 39.969492],\n\t\t\t\t\t\t[-79.417558, 39.853776],\n\t\t\t\t\t\t[-79.365695, 39.820546],\n\t\t\t\t\t\t[-79.392458, 39.721340],\n\t\t\t\t\t\t[-79.476662, 39.721078]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42055\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"055\",\n\t\t\t\t\"NAME\": \"Franklin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 772.224000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.703030, 40.263576],\n\t\t\t\t\t\t[-77.685163, 40.276304],\n\t\t\t\t\t\t[-77.671761, 40.289825],\n\t\t\t\t\t\t[-77.614665, 40.198549],\n\t\t\t\t\t\t[-77.471085, 39.944077],\n\t\t\t\t\t\t[-77.459427, 39.720017],\n\t\t\t\t\t\t[-77.469145, 39.720018],\n\t\t\t\t\t\t[-77.533371, 39.720165],\n\t\t\t\t\t\t[-77.534758, 39.720134],\n\t\t\t\t\t\t[-77.672249, 39.720778],\n\t\t\t\t\t\t[-77.674522, 39.720847],\n\t\t\t\t\t\t[-77.724115, 39.720894],\n\t\t\t\t\t\t[-77.732615, 39.721094],\n\t\t\t\t\t\t[-77.743204, 39.721205],\n\t\t\t\t\t\t[-77.768534, 39.721358],\n\t\t\t\t\t\t[-78.073736, 39.722314],\n\t\t\t\t\t\t[-78.075771, 39.722301],\n\t\t\t\t\t\t[-78.099140, 39.722322],\n\t\t\t\t\t\t[-78.002700, 39.826599],\n\t\t\t\t\t\t[-77.920952, 40.000450],\n\t\t\t\t\t\t[-77.864489, 40.061568],\n\t\t\t\t\t\t[-77.703030, 40.263576]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42061\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"061\",\n\t\t\t\t\"NAME\": \"Huntingdon\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 874.639000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.116521, 40.739127],\n\t\t\t\t\t\t[-77.944250, 40.691557],\n\t\t\t\t\t\t[-77.824506, 40.743681],\n\t\t\t\t\t\t[-77.681334, 40.729758],\n\t\t\t\t\t\t[-77.687080, 40.676750],\n\t\t\t\t\t\t[-77.841827, 40.550035],\n\t\t\t\t\t\t[-77.816513, 40.500074],\n\t\t\t\t\t\t[-77.913844, 40.398679],\n\t\t\t\t\t\t[-77.752120, 40.378545],\n\t\t\t\t\t\t[-77.703030, 40.263576],\n\t\t\t\t\t\t[-77.864489, 40.061568],\n\t\t\t\t\t\t[-77.925905, 40.101911],\n\t\t\t\t\t\t[-78.134863, 40.165131],\n\t\t\t\t\t\t[-78.236302, 40.224559],\n\t\t\t\t\t\t[-78.257305, 40.297883],\n\t\t\t\t\t\t[-78.130081, 40.481990],\n\t\t\t\t\t\t[-78.197083, 40.558444],\n\t\t\t\t\t\t[-78.221970, 40.674539],\n\t\t\t\t\t\t[-78.116521, 40.739127]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42067\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"067\",\n\t\t\t\t\"NAME\": \"Juniata\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 391.350000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.752120, 40.378545],\n\t\t\t\t\t\t[-77.611315, 40.515017],\n\t\t\t\t\t\t[-77.497760, 40.609484],\n\t\t\t\t\t\t[-77.360690, 40.669991],\n\t\t\t\t\t\t[-77.323053, 40.683082],\n\t\t\t\t\t\t[-77.287941, 40.693595],\n\t\t\t\t\t\t[-77.198923, 40.682511],\n\t\t\t\t\t\t[-77.035549, 40.676918],\n\t\t\t\t\t\t[-76.939749, 40.638378],\n\t\t\t\t\t\t[-76.947365, 40.629517],\n\t\t\t\t\t\t[-76.949414, 40.628163],\n\t\t\t\t\t\t[-77.182930, 40.582140],\n\t\t\t\t\t\t[-77.169960, 40.562726],\n\t\t\t\t\t\t[-77.338110, 40.495336],\n\t\t\t\t\t\t[-77.540141, 40.399221],\n\t\t\t\t\t\t[-77.671761, 40.289825],\n\t\t\t\t\t\t[-77.685163, 40.276304],\n\t\t\t\t\t\t[-77.703030, 40.263576],\n\t\t\t\t\t\t[-77.752120, 40.378545]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42073\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"073\",\n\t\t\t\t\"NAME\": \"Lawrence\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 358.175000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.096861, 41.069804],\n\t\t\t\t\t\t[-80.165290, 41.000470],\n\t\t\t\t\t\t[-80.160006, 40.886909],\n\t\t\t\t\t\t[-80.158534, 40.855157],\n\t\t\t\t\t\t[-80.519039, 40.851339],\n\t\t\t\t\t\t[-80.519764, 40.899858],\n\t\t\t\t\t\t[-80.519790, 40.900761],\n\t\t\t\t\t\t[-80.519091, 40.921061],\n\t\t\t\t\t\t[-80.519000, 40.987380],\n\t\t\t\t\t\t[-80.518989, 40.995445],\n\t\t\t\t\t\t[-80.518927, 41.015387],\n\t\t\t\t\t\t[-80.518960, 41.061546],\n\t\t\t\t\t\t[-80.518928, 41.070954],\n\t\t\t\t\t\t[-80.518960, 41.071866],\n\t\t\t\t\t\t[-80.518999, 41.075014],\n\t\t\t\t\t\t[-80.519088, 41.082074],\n\t\t\t\t\t\t[-80.519092, 41.090658],\n\t\t\t\t\t\t[-80.519125, 41.100819],\n\t\t\t\t\t\t[-80.519192, 41.105358],\n\t\t\t\t\t\t[-80.518992, 41.115958],\n\t\t\t\t\t\t[-80.519056, 41.125057],\n\t\t\t\t\t\t[-80.519012, 41.125057],\n\t\t\t\t\t\t[-80.519012, 41.125093],\n\t\t\t\t\t\t[-80.385094, 41.126492],\n\t\t\t\t\t\t[-80.147164, 41.113795],\n\t\t\t\t\t\t[-80.096861, 41.069804]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42079\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"079\",\n\t\t\t\t\"NAME\": \"Luzerne\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 890.333000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.207827, 40.949740],\n\t\t\t\t\t\t[-76.228975, 41.138466],\n\t\t\t\t\t\t[-76.317916, 41.205384],\n\t\t\t\t\t\t[-76.310133, 41.310199],\n\t\t\t\t\t\t[-76.284865, 41.372724],\n\t\t\t\t\t\t[-76.283100, 41.376517],\n\t\t\t\t\t\t[-76.005070, 41.384551],\n\t\t\t\t\t\t[-75.834695, 41.427246],\n\t\t\t\t\t\t[-75.832631, 41.399934],\n\t\t\t\t\t\t[-75.795286, 41.378127],\n\t\t\t\t\t\t[-75.767860, 41.365841],\n\t\t\t\t\t\t[-75.760518, 41.360942],\n\t\t\t\t\t\t[-75.741539, 41.348179],\n\t\t\t\t\t\t[-75.687244, 41.339216],\n\t\t\t\t\t\t[-75.649257, 41.190951],\n\t\t\t\t\t\t[-75.600736, 41.161497],\n\t\t\t\t\t\t[-75.603002, 41.151914],\n\t\t\t\t\t\t[-75.615557, 41.150001],\n\t\t\t\t\t\t[-75.634978, 41.123192],\n\t\t\t\t\t\t[-75.649637, 41.122344],\n\t\t\t\t\t\t[-75.771960, 41.076751],\n\t\t\t\t\t\t[-75.731930, 41.008220],\n\t\t\t\t\t\t[-75.997348, 40.912985],\n\t\t\t\t\t\t[-76.028150, 40.901986],\n\t\t\t\t\t\t[-76.207827, 40.949740]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US41029\",\n\t\t\t\t\"STATE\": \"41\",\n\t\t\t\t\"COUNTY\": \"029\",\n\t\t\t\t\"NAME\": \"Jackson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2783.548000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-123.230024, 42.287494],\n\t\t\t\t\t\t[-123.229857, 42.551783],\n\t\t\t\t\t\t[-123.229900, 42.702486],\n\t\t\t\t\t\t[-123.151421, 42.756069],\n\t\t\t\t\t\t[-122.794793, 42.779422],\n\t\t\t\t\t\t[-122.677211, 42.881341],\n\t\t\t\t\t\t[-122.460053, 42.939852],\n\t\t\t\t\t\t[-122.400467, 42.996426],\n\t\t\t\t\t\t[-122.281856, 42.996556],\n\t\t\t\t\t\t[-122.287446, 42.127168],\n\t\t\t\t\t\t[-122.290351, 42.127092],\n\t\t\t\t\t\t[-122.289740, 42.122561],\n\t\t\t\t\t\t[-122.289533, 42.007764],\n\t\t\t\t\t\t[-122.378193, 42.009518],\n\t\t\t\t\t\t[-122.501135, 42.008460],\n\t\t\t\t\t\t[-122.634739, 42.004858],\n\t\t\t\t\t\t[-123.001152, 42.003000],\n\t\t\t\t\t\t[-123.045254, 42.003049],\n\t\t\t\t\t\t[-123.154908, 42.008036],\n\t\t\t\t\t\t[-123.230762, 42.003845],\n\t\t\t\t\t\t[-123.230764, 42.003845],\n\t\t\t\t\t\t[-123.230024, 42.287494]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US41033\",\n\t\t\t\t\"STATE\": \"41\",\n\t\t\t\t\"COUNTY\": \"033\",\n\t\t\t\t\"NAME\": \"Josephine\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1639.668000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-123.230024, 42.287494],\n\t\t\t\t\t\t[-123.230764, 42.003845],\n\t\t\t\t\t\t[-123.347562, 41.999108],\n\t\t\t\t\t\t[-123.498830, 42.000525],\n\t\t\t\t\t\t[-123.498896, 42.000474],\n\t\t\t\t\t\t[-123.501997, 42.000527],\n\t\t\t\t\t\t[-123.518075, 42.000436],\n\t\t\t\t\t\t[-123.624554, 41.999837],\n\t\t\t\t\t\t[-123.821472, 41.995473],\n\t\t\t\t\t\t[-123.856786, 42.141132],\n\t\t\t\t\t\t[-123.791241, 42.236398],\n\t\t\t\t\t\t[-123.839687, 42.311532],\n\t\t\t\t\t\t[-123.892189, 42.352831],\n\t\t\t\t\t\t[-124.025894, 42.359130],\n\t\t\t\t\t\t[-124.041983, 42.387656],\n\t\t\t\t\t\t[-124.008397, 42.496352],\n\t\t\t\t\t\t[-123.885746, 42.504233],\n\t\t\t\t\t\t[-123.831762, 42.632561],\n\t\t\t\t\t\t[-123.716190, 42.784234],\n\t\t\t\t\t\t[-123.715088, 42.739735],\n\t\t\t\t\t\t[-123.444177, 42.703138],\n\t\t\t\t\t\t[-123.365975, 42.732040],\n\t\t\t\t\t\t[-123.229900, 42.702486],\n\t\t\t\t\t\t[-123.229857, 42.551783],\n\t\t\t\t\t\t[-123.230024, 42.287494]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US41039\",\n\t\t\t\t\"STATE\": \"41\",\n\t\t\t\t\"COUNTY\": \"039\",\n\t\t\t\t\"NAME\": \"Lane\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 4553.119000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-122.132044, 43.440445],\n\t\t\t\t\t\t[-122.740765, 43.437142],\n\t\t\t\t\t\t[-122.741771, 43.544553],\n\t\t\t\t\t\t[-123.107475, 43.540004],\n\t\t\t\t\t\t[-123.137064, 43.605970],\n\t\t\t\t\t\t[-123.137677, 43.779666],\n\t\t\t\t\t\t[-123.347659, 43.780169],\n\t\t\t\t\t\t[-123.348016, 43.809165],\n\t\t\t\t\t\t[-123.470506, 43.810196],\n\t\t\t\t\t\t[-123.579681, 43.868138],\n\t\t\t\t\t\t[-123.619300, 43.920130],\n\t\t\t\t\t\t[-123.703461, 43.945131],\n\t\t\t\t\t\t[-123.827622, 43.945045],\n\t\t\t\t\t\t[-123.925513, 43.899167],\n\t\t\t\t\t\t[-123.925510, 43.865633],\n\t\t\t\t\t\t[-124.158684, 43.863504],\n\t\t\t\t\t\t[-124.150267, 43.910850],\n\t\t\t\t\t\t[-124.142704, 43.958182],\n\t\t\t\t\t\t[-124.133547, 44.035845],\n\t\t\t\t\t\t[-124.122406, 44.104442],\n\t\t\t\t\t\t[-124.125824, 44.126130],\n\t\t\t\t\t\t[-124.117006, 44.171913],\n\t\t\t\t\t\t[-124.114424, 44.198164],\n\t\t\t\t\t\t[-124.115671, 44.206554],\n\t\t\t\t\t\t[-124.111054, 44.235071],\n\t\t\t\t\t\t[-124.108945, 44.265475],\n\t\t\t\t\t\t[-124.109744, 44.270597],\n\t\t\t\t\t\t[-124.114869, 44.272721],\n\t\t\t\t\t\t[-124.115953, 44.274641],\n\t\t\t\t\t\t[-124.115849, 44.276277],\n\t\t\t\t\t\t[-123.775420, 44.283561],\n\t\t\t\t\t\t[-123.183980, 44.283691],\n\t\t\t\t\t\t[-123.165394, 44.200021],\n\t\t\t\t\t\t[-122.905594, 44.200247],\n\t\t\t\t\t\t[-122.864595, 44.287947],\n\t\t\t\t\t\t[-122.760494, 44.290548],\n\t\t\t\t\t\t[-122.577089, 44.228149],\n\t\t\t\t\t\t[-122.386174, 44.217149],\n\t\t\t\t\t\t[-122.326584, 44.253349],\n\t\t\t\t\t\t[-121.799359, 44.258138],\n\t\t\t\t\t\t[-121.768550, 44.101437],\n\t\t\t\t\t\t[-121.869269, 43.911893],\n\t\t\t\t\t\t[-121.920180, 43.913816],\n\t\t\t\t\t\t[-121.975479, 43.856875],\n\t\t\t\t\t\t[-121.960872, 43.763805],\n\t\t\t\t\t\t[-121.986187, 43.661633],\n\t\t\t\t\t\t[-121.964854, 43.626826],\n\t\t\t\t\t\t[-122.002675, 43.615228],\n\t\t\t\t\t\t[-122.130944, 43.557149],\n\t\t\t\t\t\t[-122.132044, 43.440445]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US41043\",\n\t\t\t\t\"STATE\": \"41\",\n\t\t\t\t\"COUNTY\": \"043\",\n\t\t\t\t\"NAME\": \"Linn\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2290.129000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-123.260338, 44.555391],\n\t\t\t\t\t\t[-123.164428, 44.637507],\n\t\t\t\t\t\t[-123.073643, 44.657331],\n\t\t\t\t\t\t[-123.149058, 44.720277],\n\t\t\t\t\t\t[-123.150429, 44.727611],\n\t\t\t\t\t\t[-123.133529, 44.738662],\n\t\t\t\t\t\t[-123.143556, 44.749670],\n\t\t\t\t\t\t[-123.061509, 44.747952],\n\t\t\t\t\t\t[-123.006847, 44.686898],\n\t\t\t\t\t\t[-122.798369, 44.791564],\n\t\t\t\t\t\t[-122.619769, 44.788950],\n\t\t\t\t\t\t[-122.478373, 44.755551],\n\t\t\t\t\t\t[-122.288446, 44.753065],\n\t\t\t\t\t\t[-122.230559, 44.697867],\n\t\t\t\t\t\t[-122.154047, 44.719762],\n\t\t\t\t\t\t[-122.033233, 44.685678],\n\t\t\t\t\t\t[-121.794077, 44.683940],\n\t\t\t\t\t\t[-121.842667, 44.392440],\n\t\t\t\t\t\t[-121.799359, 44.258138],\n\t\t\t\t\t\t[-122.326584, 44.253349],\n\t\t\t\t\t\t[-122.386174, 44.217149],\n\t\t\t\t\t\t[-122.577089, 44.228149],\n\t\t\t\t\t\t[-122.760494, 44.290548],\n\t\t\t\t\t\t[-122.864595, 44.287947],\n\t\t\t\t\t\t[-122.905594, 44.200247],\n\t\t\t\t\t\t[-123.165394, 44.200021],\n\t\t\t\t\t\t[-123.183980, 44.283691],\n\t\t\t\t\t\t[-123.243600, 44.378545],\n\t\t\t\t\t\t[-123.205287, 44.443038],\n\t\t\t\t\t\t[-123.214683, 44.507681],\n\t\t\t\t\t\t[-123.260338, 44.555391]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US41049\",\n\t\t\t\t\"STATE\": \"41\",\n\t\t\t\t\"COUNTY\": \"049\",\n\t\t\t\t\"NAME\": \"Morrow\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2031.609000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-119.868135, 45.835962],\n\t\t\t\t\t\t[-119.802655, 45.847530],\n\t\t\t\t\t\t[-119.772927, 45.845578],\n\t\t\t\t\t\t[-119.669877, 45.856867],\n\t\t\t\t\t\t[-119.623393, 45.905639],\n\t\t\t\t\t\t[-119.600549, 45.919581],\n\t\t\t\t\t\t[-119.571584, 45.925456],\n\t\t\t\t\t\t[-119.524632, 45.908605],\n\t\t\t\t\t\t[-119.487829, 45.906307],\n\t\t\t\t\t\t[-119.432067, 45.913629],\n\t\t\t\t\t\t[-119.434639, 45.602771],\n\t\t\t\t\t\t[-119.248241, 45.601873],\n\t\t\t\t\t\t[-119.248276, 45.516102],\n\t\t\t\t\t\t[-119.145370, 45.516055],\n\t\t\t\t\t\t[-119.146402, 45.082963],\n\t\t\t\t\t\t[-119.163882, 44.995887],\n\t\t\t\t\t\t[-119.666708, 44.993525],\n\t\t\t\t\t\t[-119.671987, 44.994424],\n\t\t\t\t\t\t[-119.791055, 44.994636],\n\t\t\t\t\t\t[-119.790426, 45.067761],\n\t\t\t\t\t\t[-119.760125, 45.167580],\n\t\t\t\t\t\t[-119.883034, 45.169657],\n\t\t\t\t\t\t[-119.882037, 45.255956],\n\t\t\t\t\t\t[-120.006740, 45.257454],\n\t\t\t\t\t\t[-119.999506, 45.812199],\n\t\t\t\t\t\t[-119.868135, 45.835962]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US41051\",\n\t\t\t\t\"STATE\": \"41\",\n\t\t\t\t\"COUNTY\": \"051\",\n\t\t\t\t\"NAME\": \"Multnomah\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 431.297000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-122.248993, 45.547745],\n\t\t\t\t\t\t[-122.201700, 45.564141],\n\t\t\t\t\t\t[-122.183695, 45.577696],\n\t\t\t\t\t\t[-122.140750, 45.584508],\n\t\t\t\t\t\t[-122.129548, 45.582945],\n\t\t\t\t\t\t[-122.129490, 45.582967],\n\t\t\t\t\t\t[-122.126197, 45.582573],\n\t\t\t\t\t\t[-122.126197, 45.582617],\n\t\t\t\t\t\t[-122.112356, 45.581409],\n\t\t\t\t\t\t[-122.101675, 45.583516],\n\t\t\t\t\t\t[-121.983038, 45.622812],\n\t\t\t\t\t\t[-121.922242, 45.648495],\n\t\t\t\t\t\t[-121.906742, 45.520497],\n\t\t\t\t\t\t[-121.820394, 45.461666],\n\t\t\t\t\t\t[-122.660979, 45.457819],\n\t\t\t\t\t\t[-122.652605, 45.445741],\n\t\t\t\t\t\t[-122.645205, 45.441641],\n\t\t\t\t\t\t[-122.651305, 45.436541],\n\t\t\t\t\t\t[-122.648725, 45.432718],\n\t\t\t\t\t\t[-122.744065, 45.433283],\n\t\t\t\t\t\t[-122.743809, 45.440429],\n\t\t\t\t\t\t[-122.743904, 45.442774],\n\t\t\t\t\t\t[-122.743633, 45.442959],\n\t\t\t\t\t\t[-122.743608, 45.447667],\n\t\t\t\t\t\t[-122.743807, 45.447902],\n\t\t\t\t\t\t[-122.743810, 45.452021],\n\t\t\t\t\t\t[-122.743613, 45.454868],\n\t\t\t\t\t\t[-122.743862, 45.519515],\n\t\t\t\t\t\t[-122.764458, 45.529727],\n\t\t\t\t\t\t[-122.929214, 45.633864],\n\t\t\t\t\t\t[-122.928961, 45.721502],\n\t\t\t\t\t\t[-122.762182, 45.728598],\n\t\t\t\t\t\t[-122.772511, 45.699637],\n\t\t\t\t\t\t[-122.774511, 45.680437],\n\t\t\t\t\t\t[-122.763810, 45.657138],\n\t\t\t\t\t\t[-122.738109, 45.644138],\n\t\t\t\t\t\t[-122.675008, 45.618039],\n\t\t\t\t\t\t[-122.643907, 45.609739],\n\t\t\t\t\t\t[-122.492259, 45.583281],\n\t\t\t\t\t\t[-122.380302, 45.575941],\n\t\t\t\t\t\t[-122.352802, 45.569441],\n\t\t\t\t\t\t[-122.331502, 45.548241],\n\t\t\t\t\t\t[-122.294901, 45.543541],\n\t\t\t\t\t\t[-122.266701, 45.543841],\n\t\t\t\t\t\t[-122.248993, 45.547745]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US41059\",\n\t\t\t\t\"STATE\": \"41\",\n\t\t\t\t\"COUNTY\": \"059\",\n\t\t\t\t\"NAME\": \"Umatilla\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 3215.509000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-117.996911, 46.000787],\n\t\t\t\t\t\t[-117.977766, 46.000695],\n\t\t\t\t\t\t[-117.977688, 45.860558],\n\t\t\t\t\t\t[-117.972922, 45.860586],\n\t\t\t\t\t\t[-117.973666, 45.816978],\n\t\t\t\t\t\t[-118.045003, 45.817098],\n\t\t\t\t\t\t[-118.066823, 45.688365],\n\t\t\t\t\t\t[-118.117153, 45.688498],\n\t\t\t\t\t\t[-118.117053, 45.470754],\n\t\t\t\t\t\t[-118.198158, 45.470453],\n\t\t\t\t\t\t[-118.197957, 45.427153],\n\t\t\t\t\t\t[-118.428469, 45.428951],\n\t\t\t\t\t\t[-118.428268, 45.355151],\n\t\t\t\t\t\t[-118.697684, 45.345153],\n\t\t\t\t\t\t[-118.696782, 45.257653],\n\t\t\t\t\t\t[-118.655777, 45.196855],\n\t\t\t\t\t\t[-118.546678, 45.196951],\n\t\t\t\t\t\t[-118.548568, 45.080756],\n\t\t\t\t\t\t[-118.519063, 44.995956],\n\t\t\t\t\t\t[-119.163882, 44.995887],\n\t\t\t\t\t\t[-119.146402, 45.082963],\n\t\t\t\t\t\t[-119.145370, 45.516055],\n\t\t\t\t\t\t[-119.248276, 45.516102],\n\t\t\t\t\t\t[-119.248241, 45.601873],\n\t\t\t\t\t\t[-119.434639, 45.602771],\n\t\t\t\t\t\t[-119.432067, 45.913629],\n\t\t\t\t\t\t[-119.376130, 45.920974],\n\t\t\t\t\t\t[-119.322509, 45.933183],\n\t\t\t\t\t\t[-119.257150, 45.939926],\n\t\t\t\t\t\t[-119.225745, 45.932725],\n\t\t\t\t\t\t[-119.195530, 45.927870],\n\t\t\t\t\t\t[-119.169496, 45.927603],\n\t\t\t\t\t\t[-119.126120, 45.932859],\n\t\t\t\t\t\t[-119.093221, 45.942745],\n\t\t\t\t\t\t[-119.027056, 45.969134],\n\t\t\t\t\t\t[-119.008558, 45.979270],\n\t\t\t\t\t\t[-118.987129, 45.999855],\n\t\t\t\t\t\t[-118.677870, 46.000935],\n\t\t\t\t\t\t[-118.658717, 46.000955],\n\t\t\t\t\t\t[-118.639332, 46.000994],\n\t\t\t\t\t\t[-118.637725, 46.000970],\n\t\t\t\t\t\t[-118.579906, 46.000818],\n\t\t\t\t\t\t[-118.575710, 46.000718],\n\t\t\t\t\t\t[-118.569392, 46.000773],\n\t\t\t\t\t\t[-118.537119, 46.000840],\n\t\t\t\t\t\t[-118.497027, 46.000620],\n\t\t\t\t\t\t[-118.470756, 46.000632],\n\t\t\t\t\t\t[-118.378360, 46.000574],\n\t\t\t\t\t\t[-118.367790, 46.000622],\n\t\t\t\t\t\t[-118.314982, 46.000453],\n\t\t\t\t\t\t[-118.256368, 46.000439],\n\t\t\t\t\t\t[-118.252530, 46.000459],\n\t\t\t\t\t\t[-118.236584, 46.000418],\n\t\t\t\t\t\t[-118.228941, 46.000421],\n\t\t\t\t\t\t[-118.131019, 46.000280],\n\t\t\t\t\t\t[-118.126197, 46.000282],\n\t\t\t\t\t\t[-117.996911, 46.000787]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US41065\",\n\t\t\t\t\"STATE\": \"41\",\n\t\t\t\t\"COUNTY\": \"065\",\n\t\t\t\t\"NAME\": \"Wasco\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2381.519000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-121.734167, 44.885782],\n\t\t\t\t\t\t[-121.805051, 45.011310],\n\t\t\t\t\t\t[-121.659355, 45.066511],\n\t\t\t\t\t\t[-121.745966, 45.186272],\n\t\t\t\t\t\t[-121.701557, 45.230198],\n\t\t\t\t\t\t[-121.682607, 45.228988],\n\t\t\t\t\t\t[-121.681033, 45.250788],\n\t\t\t\t\t\t[-121.696808, 45.258017],\n\t\t\t\t\t\t[-121.481527, 45.258279],\n\t\t\t\t\t\t[-121.482525, 45.519619],\n\t\t\t\t\t\t[-121.440612, 45.519301],\n\t\t\t\t\t\t[-121.441045, 45.697270],\n\t\t\t\t\t\t[-121.423592, 45.693990],\n\t\t\t\t\t\t[-121.401739, 45.692887],\n\t\t\t\t\t\t[-121.372574, 45.703111],\n\t\t\t\t\t\t[-121.337770, 45.704949],\n\t\t\t\t\t\t[-121.312198, 45.699925],\n\t\t\t\t\t\t[-121.215779, 45.671238],\n\t\t\t\t\t\t[-121.200367, 45.649829],\n\t\t\t\t\t\t[-121.195233, 45.629513],\n\t\t\t\t\t\t[-121.086675, 45.646667],\n\t\t\t\t\t\t[-121.064370, 45.652549],\n\t\t\t\t\t\t[-120.943977, 45.656445],\n\t\t\t\t\t\t[-120.915876, 45.641345],\n\t\t\t\t\t\t[-120.882022, 45.527597],\n\t\t\t\t\t\t[-120.825275, 45.513788],\n\t\t\t\t\t\t[-120.868569, 45.401146],\n\t\t\t\t\t\t[-120.956471, 45.310345],\n\t\t\t\t\t\t[-121.031202, 45.285857],\n\t\t\t\t\t\t[-121.024080, 45.218726],\n\t\t\t\t\t\t[-120.889357, 45.202305],\n\t\t\t\t\t\t[-120.723569, 45.130911],\n\t\t\t\t\t\t[-120.729757, 45.083847],\n\t\t\t\t\t\t[-120.503549, 45.082950],\n\t\t\t\t\t\t[-120.494548, 45.074650],\n\t\t\t\t\t\t[-120.495247, 45.068549],\n\t\t\t\t\t\t[-120.455389, 44.866046],\n\t\t\t\t\t\t[-120.371422, 44.821568],\n\t\t\t\t\t\t[-121.759480, 44.825640],\n\t\t\t\t\t\t[-121.749381, 44.833540],\n\t\t\t\t\t\t[-121.742081, 44.845340],\n\t\t\t\t\t\t[-121.742481, 44.853140],\n\t\t\t\t\t\t[-121.751131, 44.856990],\n\t\t\t\t\t\t[-121.753182, 44.861240],\n\t\t\t\t\t\t[-121.745582, 44.875440],\n\t\t\t\t\t\t[-121.733782, 44.881740],\n\t\t\t\t\t\t[-121.734167, 44.885782]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US41071\",\n\t\t\t\t\"STATE\": \"41\",\n\t\t\t\t\"COUNTY\": \"071\",\n\t\t\t\t\"NAME\": \"Yamhill\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 715.860000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-122.849723, 45.259654],\n\t\t\t\t\t\t[-122.900435, 45.257063],\n\t\t\t\t\t\t[-122.962688, 45.284254],\n\t\t\t\t\t\t[-123.040165, 45.221961],\n\t\t\t\t\t\t[-122.996959, 45.119790],\n\t\t\t\t\t\t[-123.069955, 45.075108],\n\t\t\t\t\t\t[-123.724213, 45.076098],\n\t\t\t\t\t\t[-123.784794, 45.076315],\n\t\t\t\t\t\t[-123.784410, 45.216034],\n\t\t\t\t\t\t[-123.463278, 45.216269],\n\t\t\t\t\t\t[-123.464932, 45.433840],\n\t\t\t\t\t\t[-123.135329, 45.433302],\n\t\t\t\t\t\t[-122.868009, 45.317376],\n\t\t\t\t\t\t[-122.867816, 45.259585],\n\t\t\t\t\t\t[-122.849723, 45.259654]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27063\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"063\",\n\t\t\t\t\"NAME\": \"Jackson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 702.982000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.375269, 43.500322],\n\t\t\t\t\t\t[-95.387787, 43.500240],\n\t\t\t\t\t\t[-95.387812, 43.500240],\n\t\t\t\t\t\t[-95.387851, 43.500240],\n\t\t\t\t\t\t[-95.434199, 43.500314],\n\t\t\t\t\t\t[-95.434293, 43.500360],\n\t\t\t\t\t\t[-95.454433, 43.500644],\n\t\t\t\t\t\t[-95.452502, 43.847953],\n\t\t\t\t\t\t[-94.859388, 43.848093],\n\t\t\t\t\t\t[-94.854444, 43.848099],\n\t\t\t\t\t\t[-94.854555, 43.500614],\n\t\t\t\t\t\t[-94.857867, 43.500615],\n\t\t\t\t\t\t[-94.860192, 43.500546],\n\t\t\t\t\t\t[-94.872725, 43.500564],\n\t\t\t\t\t\t[-94.874235, 43.500557],\n\t\t\t\t\t\t[-94.887291, 43.500502],\n\t\t\t\t\t\t[-94.914523, 43.500450],\n\t\t\t\t\t\t[-94.914634, 43.500450],\n\t\t\t\t\t\t[-94.914905, 43.500450],\n\t\t\t\t\t\t[-94.914955, 43.500450],\n\t\t\t\t\t\t[-94.934625, 43.500490],\n\t\t\t\t\t\t[-94.954477, 43.500467],\n\t\t\t\t\t\t[-94.974359, 43.500508],\n\t\t\t\t\t\t[-94.994460, 43.500523],\n\t\t\t\t\t\t[-95.014245, 43.500872],\n\t\t\t\t\t\t[-95.034000, 43.500811],\n\t\t\t\t\t\t[-95.053504, 43.500769],\n\t\t\t\t\t\t[-95.054289, 43.500860],\n\t\t\t\t\t\t[-95.114874, 43.500667],\n\t\t\t\t\t\t[-95.122633, 43.500755],\n\t\t\t\t\t\t[-95.167294, 43.500771],\n\t\t\t\t\t\t[-95.167891, 43.500885],\n\t\t\t\t\t\t[-95.180423, 43.500774],\n\t\t\t\t\t\t[-95.214938, 43.500885],\n\t\t\t\t\t\t[-95.250762, 43.500406],\n\t\t\t\t\t\t[-95.250969, 43.500464],\n\t\t\t\t\t\t[-95.374737, 43.500314],\n\t\t\t\t\t\t[-95.375269, 43.500322]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27065\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"065\",\n\t\t\t\t\"NAME\": \"Kanabec\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 521.586000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.141793, 45.730657],\n\t\t\t\t\t\t[-93.404626, 45.731324],\n\t\t\t\t\t\t[-93.513683, 45.734318],\n\t\t\t\t\t\t[-93.518080, 45.981789],\n\t\t\t\t\t\t[-93.432492, 45.981398],\n\t\t\t\t\t\t[-93.431831, 46.153991],\n\t\t\t\t\t\t[-93.053871, 46.158120],\n\t\t\t\t\t\t[-93.055081, 45.981233],\n\t\t\t\t\t\t[-93.142869, 45.981005],\n\t\t\t\t\t\t[-93.141793, 45.730657]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27069\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"069\",\n\t\t\t\t\"NAME\": \"Kittson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1098.804000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.163050, 48.543963],\n\t\t\t\t\t\t[-97.092606, 48.682033],\n\t\t\t\t\t\t[-97.137571, 48.749191],\n\t\t\t\t\t\t[-97.157797, 48.787680],\n\t\t\t\t\t\t[-97.199549, 48.881183],\n\t\t\t\t\t\t[-97.232610, 48.946561],\n\t\t\t\t\t\t[-97.239155, 48.967596],\n\t\t\t\t\t\t[-97.238387, 48.982631],\n\t\t\t\t\t\t[-97.234005, 48.997470],\n\t\t\t\t\t\t[-97.229039, 49.000687],\n\t\t\t\t\t\t[-96.405412, 48.999820],\n\t\t\t\t\t\t[-96.387835, 48.544308],\n\t\t\t\t\t\t[-97.163050, 48.543963]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29105\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"105\",\n\t\t\t\t\"NAME\": \"Laclede\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 764.717000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.249463, 37.604543],\n\t\t\t\t\t\t[-92.252261, 37.472944],\n\t\t\t\t\t\t[-92.686671, 37.481545],\n\t\t\t\t\t\t[-92.852107, 37.484083],\n\t\t\t\t\t\t[-92.853481, 37.483970],\n\t\t\t\t\t\t[-92.855384, 37.895736],\n\t\t\t\t\t\t[-92.620181, 37.892521],\n\t\t\t\t\t\t[-92.548934, 37.800470],\n\t\t\t\t\t\t[-92.409231, 37.859180],\n\t\t\t\t\t\t[-92.413669, 37.713941],\n\t\t\t\t\t\t[-92.248865, 37.648442],\n\t\t\t\t\t\t[-92.249463, 37.604543]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29111\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"111\",\n\t\t\t\t\"NAME\": \"Lewis\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 505.042000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.455887, 39.945538],\n\t\t\t\t\t\t[-91.840353, 39.948235],\n\t\t\t\t\t\t[-91.952726, 39.949426],\n\t\t\t\t\t\t[-91.950812, 40.257210],\n\t\t\t\t\t\t[-91.501435, 40.248874],\n\t\t\t\t\t\t[-91.505968, 40.234305],\n\t\t\t\t\t\t[-91.510332, 40.201142],\n\t\t\t\t\t\t[-91.512974, 40.181062],\n\t\t\t\t\t\t[-91.510322, 40.127994],\n\t\t\t\t\t\t[-91.494865, 40.037421],\n\t\t\t\t\t\t[-91.460287, 39.980333],\n\t\t\t\t\t\t[-91.455887, 39.945538]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29119\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"119\",\n\t\t\t\t\"NAME\": \"McDonald\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 539.480000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.618019, 36.667921],\n\t\t\t\t\t\t[-94.618025, 36.669430],\n\t\t\t\t\t\t[-94.618130, 36.701423],\n\t\t\t\t\t\t[-94.618307, 36.766560],\n\t\t\t\t\t\t[-94.068898, 36.747818],\n\t\t\t\t\t\t[-94.077089, 36.498730],\n\t\t\t\t\t\t[-94.098588, 36.498676],\n\t\t\t\t\t\t[-94.100252, 36.498670],\n\t\t\t\t\t\t[-94.110673, 36.498587],\n\t\t\t\t\t\t[-94.111473, 36.498597],\n\t\t\t\t\t\t[-94.519478, 36.499214],\n\t\t\t\t\t\t[-94.559290, 36.499496],\n\t\t\t\t\t\t[-94.617919, 36.499414],\n\t\t\t\t\t\t[-94.617877, 36.514999],\n\t\t\t\t\t\t[-94.617883, 36.517799],\n\t\t\t\t\t\t[-94.617997, 36.534280],\n\t\t\t\t\t\t[-94.617868, 36.536090],\n\t\t\t\t\t\t[-94.617897, 36.536983],\n\t\t\t\t\t\t[-94.617814, 36.577732],\n\t\t\t\t\t\t[-94.617853, 36.599120],\n\t\t\t\t\t\t[-94.617865, 36.606851],\n\t\t\t\t\t\t[-94.617815, 36.612604],\n\t\t\t\t\t\t[-94.618019, 36.667921]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29125\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"125\",\n\t\t\t\t\"NAME\": \"Maries\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 526.979000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.185370, 38.016338],\n\t\t\t\t\t\t[-92.195675, 38.292237],\n\t\t\t\t\t\t[-91.644729, 38.288510],\n\t\t\t\t\t\t[-91.644893, 38.153679],\n\t\t\t\t\t\t[-91.630554, 38.153519],\n\t\t\t\t\t\t[-91.632431, 38.050951],\n\t\t\t\t\t\t[-91.895347, 38.051199],\n\t\t\t\t\t\t[-92.021165, 38.010639],\n\t\t\t\t\t\t[-92.185370, 38.015138],\n\t\t\t\t\t\t[-92.185370, 38.016338]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29129\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"129\",\n\t\t\t\t\"NAME\": \"Mercer\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 453.835000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.774344, 40.577584],\n\t\t\t\t\t\t[-93.770231, 40.577615],\n\t\t\t\t\t\t[-93.750223, 40.577720],\n\t\t\t\t\t\t[-93.742759, 40.577518],\n\t\t\t\t\t\t[-93.737259, 40.577542],\n\t\t\t\t\t\t[-93.728355, 40.577547],\n\t\t\t\t\t\t[-93.722443, 40.577641],\n\t\t\t\t\t\t[-93.690333, 40.577875],\n\t\t\t\t\t\t[-93.677099, 40.578127],\n\t\t\t\t\t\t[-93.668845, 40.578241],\n\t\t\t\t\t\t[-93.661913, 40.578354],\n\t\t\t\t\t\t[-93.659272, 40.578330],\n\t\t\t\t\t\t[-93.656211, 40.578352],\n\t\t\t\t\t\t[-93.597352, 40.579496],\n\t\t\t\t\t\t[-93.566189, 40.580117],\n\t\t\t\t\t\t[-93.565810, 40.580075],\n\t\t\t\t\t\t[-93.565240, 40.580143],\n\t\t\t\t\t\t[-93.560798, 40.580304],\n\t\t\t\t\t\t[-93.558938, 40.580189],\n\t\t\t\t\t\t[-93.556899, 40.580235],\n\t\t\t\t\t\t[-93.553986, 40.580303],\n\t\t\t\t\t\t[-93.548284, 40.580417],\n\t\t\t\t\t\t[-93.528177, 40.580367],\n\t\t\t\t\t\t[-93.527607, 40.580436],\n\t\t\t\t\t\t[-93.524124, 40.580481],\n\t\t\t\t\t\t[-93.466887, 40.580072],\n\t\t\t\t\t\t[-93.465297, 40.580164],\n\t\t\t\t\t\t[-93.441767, 40.579916],\n\t\t\t\t\t\t[-93.374386, 40.580334],\n\t\t\t\t\t\t[-93.366935, 40.382999],\n\t\t\t\t\t\t[-93.367214, 40.266314],\n\t\t\t\t\t\t[-93.763324, 40.263988],\n\t\t\t\t\t\t[-93.774344, 40.577584]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29139\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"139\",\n\t\t\t\t\"NAME\": \"Montgomery\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 536.247000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.260232, 39.139845],\n\t\t\t\t\t\t[-91.264287, 38.992762],\n\t\t\t\t\t\t[-91.264927, 38.843833],\n\t\t\t\t\t\t[-91.415832, 38.845300],\n\t\t\t\t\t\t[-91.418637, 38.709778],\n\t\t\t\t\t\t[-91.545313, 38.676882],\n\t\t\t\t\t\t[-91.640372, 38.703792],\n\t\t\t\t\t\t[-91.641376, 38.703939],\n\t\t\t\t\t\t[-91.645546, 38.703678],\n\t\t\t\t\t\t[-91.647171, 38.703396],\n\t\t\t\t\t\t[-91.633998, 39.059057],\n\t\t\t\t\t\t[-91.629598, 39.147853],\n\t\t\t\t\t\t[-91.409033, 39.142542],\n\t\t\t\t\t\t[-91.260232, 39.139845]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29141\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"141\",\n\t\t\t\t\"NAME\": \"Morgan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 597.631000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.695886, 38.222031],\n\t\t\t\t\t\t[-92.764963, 38.189534],\n\t\t\t\t\t\t[-92.979558, 38.197734],\n\t\t\t\t\t\t[-93.077692, 38.263092],\n\t\t\t\t\t\t[-93.067294, 38.529995],\n\t\t\t\t\t\t[-93.059974, 38.693077],\n\t\t\t\t\t\t[-92.950502, 38.686028],\n\t\t\t\t\t\t[-92.839837, 38.683974],\n\t\t\t\t\t\t[-92.841871, 38.596792],\n\t\t\t\t\t\t[-92.625189, 38.430778],\n\t\t\t\t\t\t[-92.633756, 38.348082],\n\t\t\t\t\t\t[-92.689834, 38.348472],\n\t\t\t\t\t\t[-92.695886, 38.222031]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29147\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"147\",\n\t\t\t\t\"NAME\": \"Nodaway\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 876.964000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.043080, 40.130096],\n\t\t\t\t\t\t[-95.071703, 40.260859],\n\t\t\t\t\t\t[-95.180614, 40.261706],\n\t\t\t\t\t\t[-95.177708, 40.478903],\n\t\t\t\t\t\t[-95.202264, 40.578528],\n\t\t\t\t\t\t[-95.164058, 40.578017],\n\t\t\t\t\t\t[-95.154499, 40.577860],\n\t\t\t\t\t\t[-95.120829, 40.577413],\n\t\t\t\t\t\t[-95.112222, 40.577228],\n\t\t\t\t\t\t[-95.110663, 40.577206],\n\t\t\t\t\t\t[-95.110303, 40.577160],\n\t\t\t\t\t\t[-95.107213, 40.577116],\n\t\t\t\t\t\t[-95.097607, 40.577168],\n\t\t\t\t\t\t[-95.079742, 40.577007],\n\t\t\t\t\t\t[-95.068921, 40.576880],\n\t\t\t\t\t\t[-94.966491, 40.575839],\n\t\t\t\t\t\t[-94.955134, 40.575669],\n\t\t\t\t\t\t[-94.914896, 40.575068],\n\t\t\t\t\t\t[-94.901451, 40.574877],\n\t\t\t\t\t\t[-94.896801, 40.574738],\n\t\t\t\t\t\t[-94.823758, 40.573942],\n\t\t\t\t\t\t[-94.819978, 40.573714],\n\t\t\t\t\t\t[-94.811188, 40.573532],\n\t\t\t\t\t\t[-94.773988, 40.572977],\n\t\t\t\t\t\t[-94.716665, 40.572201],\n\t\t\t\t\t\t[-94.714925, 40.572201],\n\t\t\t\t\t\t[-94.682601, 40.571787],\n\t\t\t\t\t\t[-94.632035, 40.571186],\n\t\t\t\t\t\t[-94.598487, 40.386714],\n\t\t\t\t\t\t[-94.605593, 40.127767],\n\t\t\t\t\t\t[-94.605942, 40.126127],\n\t\t\t\t\t\t[-95.043080, 40.130096]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29153\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"153\",\n\t\t\t\t\"NAME\": \"Ozark\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 744.972000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.112346, 36.794231],\n\t\t\t\t\t\t[-92.120415, 36.498863],\n\t\t\t\t\t\t[-92.137741, 36.498706],\n\t\t\t\t\t\t[-92.150295, 36.498634],\n\t\t\t\t\t\t[-92.199396, 36.498351],\n\t\t\t\t\t\t[-92.211449, 36.498395],\n\t\t\t\t\t\t[-92.214143, 36.498372],\n\t\t\t\t\t\t[-92.216412, 36.498417],\n\t\t\t\t\t\t[-92.309424, 36.497894],\n\t\t\t\t\t\t[-92.318415, 36.497711],\n\t\t\t\t\t\t[-92.529145, 36.497739],\n\t\t\t\t\t\t[-92.772333, 36.497772],\n\t\t\t\t\t\t[-92.772341, 36.497772],\n\t\t\t\t\t\t[-92.764869, 36.806097],\n\t\t\t\t\t\t[-92.112346, 36.794231]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29157\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"157\",\n\t\t\t\t\"NAME\": \"Perry\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 474.354000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.521523, 37.566208],\n\t\t\t\t\t\t[-89.603574, 37.592056],\n\t\t\t\t\t\t[-89.861123, 37.599286],\n\t\t\t\t\t\t[-90.146763, 37.597434],\n\t\t\t\t\t\t[-90.147306, 37.613546],\n\t\t\t\t\t\t[-90.146778, 37.641618],\n\t\t\t\t\t\t[-90.110537, 37.671340],\n\t\t\t\t\t\t[-89.999768, 37.821744],\n\t\t\t\t\t\t[-89.938191, 37.875111],\n\t\t\t\t\t\t[-89.937383, 37.874693],\n\t\t\t\t\t\t[-89.923185, 37.870672],\n\t\t\t\t\t\t[-89.901832, 37.869822],\n\t\t\t\t\t\t[-89.881475, 37.879591],\n\t\t\t\t\t\t[-89.862949, 37.896906],\n\t\t\t\t\t\t[-89.851048, 37.903980],\n\t\t\t\t\t\t[-89.844786, 37.905572],\n\t\t\t\t\t\t[-89.739873, 37.846930],\n\t\t\t\t\t\t[-89.674304, 37.803179],\n\t\t\t\t\t\t[-89.671255, 37.801144],\n\t\t\t\t\t\t[-89.515436, 37.671370],\n\t\t\t\t\t\t[-89.506563, 37.625050],\n\t\t\t\t\t\t[-89.511936, 37.584564],\n\t\t\t\t\t\t[-89.518007, 37.583962],\n\t\t\t\t\t\t[-89.521274, 37.578971],\n\t\t\t\t\t\t[-89.521407, 37.572143],\n\t\t\t\t\t\t[-89.521523, 37.566208]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29161\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"161\",\n\t\t\t\t\"NAME\": \"Phelps\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 671.784000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.809105, 37.598863],\n\t\t\t\t\t\t[-92.029258, 37.602542],\n\t\t\t\t\t\t[-92.021165, 38.010639],\n\t\t\t\t\t\t[-91.895347, 38.051199],\n\t\t\t\t\t\t[-91.632431, 38.050951],\n\t\t\t\t\t\t[-91.630554, 38.153519],\n\t\t\t\t\t\t[-91.589527, 38.153249],\n\t\t\t\t\t\t[-91.580252, 38.152793],\n\t\t\t\t\t\t[-91.538016, 38.152490],\n\t\t\t\t\t\t[-91.534384, 38.152593],\n\t\t\t\t\t\t[-91.525025, 38.152433],\n\t\t\t\t\t\t[-91.528797, 37.788989],\n\t\t\t\t\t\t[-91.806219, 37.791286],\n\t\t\t\t\t\t[-91.809105, 37.598863]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29167\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"167\",\n\t\t\t\t\"NAME\": \"Polk\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 635.523000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.621153, 37.427423],\n\t\t\t\t\t\t[-93.620379, 37.456289],\n\t\t\t\t\t\t[-93.616033, 37.572689],\n\t\t\t\t\t\t[-93.628404, 37.829435],\n\t\t\t\t\t\t[-93.573202, 37.828035],\n\t\t\t\t\t\t[-93.574103, 37.813336],\n\t\t\t\t\t\t[-93.187915, 37.802737],\n\t\t\t\t\t\t[-93.175222, 37.674890],\n\t\t\t\t\t\t[-93.182489, 37.417204],\n\t\t\t\t\t\t[-93.621153, 37.427423]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37095\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"095\",\n\t\t\t\t\"NAME\": \"Hyde\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 612.700000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-75.869869, 35.582743],\n\t\t\t\t\t\t[-75.895045, 35.573152],\n\t\t\t\t\t\t[-75.906848, 35.559101],\n\t\t\t\t\t\t[-75.908534, 35.555166],\n\t\t\t\t\t\t[-75.908534, 35.546174],\n\t\t\t\t\t\t[-75.916403, 35.538305],\n\t\t\t\t\t\t[-75.945630, 35.534370],\n\t\t\t\t\t\t[-75.950126, 35.530998],\n\t\t\t\t\t\t[-75.954623, 35.526502],\n\t\t\t\t\t\t[-75.964178, 35.511326],\n\t\t\t\t\t\t[-75.964740, 35.504582],\n\t\t\t\t\t\t[-75.961929, 35.496713],\n\t\t\t\t\t\t[-75.963053, 35.493903],\n\t\t\t\t\t\t[-75.987222, 35.484348],\n\t\t\t\t\t\t[-75.995652, 35.475355],\n\t\t\t\t\t\t[-75.994528, 35.463552],\n\t\t\t\t\t\t[-75.997901, 35.453435],\n\t\t\t\t\t\t[-76.009704, 35.442194],\n\t\t\t\t\t\t[-76.012514, 35.432639],\n\t\t\t\t\t\t[-76.011390, 35.423084],\n\t\t\t\t\t\t[-76.014762, 35.416902],\n\t\t\t\t\t\t[-76.020945, 35.410719],\n\t\t\t\t\t\t[-76.025441, 35.408471],\n\t\t\t\t\t\t[-76.037244, 35.414091],\n\t\t\t\t\t\t[-76.050171, 35.415778],\n\t\t\t\t\t\t[-76.059726, 35.410157],\n\t\t\t\t\t\t[-76.063661, 35.405099],\n\t\t\t\t\t\t[-76.063661, 35.398354],\n\t\t\t\t\t\t[-76.060850, 35.392733],\n\t\t\t\t\t\t[-76.059726, 35.383741],\n\t\t\t\t\t\t[-76.069281, 35.370813],\n\t\t\t\t\t\t[-76.092887, 35.361259],\n\t\t\t\t\t\t[-76.123238, 35.351142],\n\t\t\t\t\t\t[-76.132793, 35.349455],\n\t\t\t\t\t\t[-76.142910, 35.338776],\n\t\t\t\t\t\t[-76.142910, 35.328660],\n\t\t\t\t\t\t[-76.149655, 35.326411],\n\t\t\t\t\t\t[-76.165392, 35.328659],\n\t\t\t\t\t\t[-76.168764, 35.332032],\n\t\t\t\t\t\t[-76.182254, 35.336528],\n\t\t\t\t\t\t[-76.205860, 35.336528],\n\t\t\t\t\t\t[-76.235087, 35.350017],\n\t\t\t\t\t\t[-76.253072, 35.350017],\n\t\t\t\t\t\t[-76.257569, 35.344397],\n\t\t\t\t\t\t[-76.265437, 35.343273],\n\t\t\t\t\t\t[-76.282299, 35.345521],\n\t\t\t\t\t\t[-76.304781, 35.355638],\n\t\t\t\t\t\t[-76.327263, 35.356762],\n\t\t\t\t\t\t[-76.335132, 35.355638],\n\t\t\t\t\t\t[-76.340752, 35.346645],\n\t\t\t\t\t\t[-76.349745, 35.345521],\n\t\t\t\t\t\t[-76.365483, 35.348893],\n\t\t\t\t\t\t[-76.374475, 35.355638],\n\t\t\t\t\t\t[-76.382344, 35.356762],\n\t\t\t\t\t\t[-76.387965, 35.356762],\n\t\t\t\t\t\t[-76.399206, 35.348893],\n\t\t\t\t\t\t[-76.408199, 35.350017],\n\t\t\t\t\t\t[-76.409323, 35.353390],\n\t\t\t\t\t\t[-76.420564, 35.359010],\n\t\t\t\t\t\t[-76.431805, 35.362383],\n\t\t\t\t\t\t[-76.436301, 35.378120],\n\t\t\t\t\t\t[-76.448666, 35.383741],\n\t\t\t\t\t\t[-76.455411, 35.383741],\n\t\t\t\t\t\t[-76.462156, 35.380368],\n\t\t\t\t\t\t[-76.472273, 35.371375],\n\t\t\t\t\t\t[-76.485762, 35.371375],\n\t\t\t\t\t\t[-76.499251, 35.381492],\n\t\t\t\t\t\t[-76.521733, 35.391609],\n\t\t\t\t\t\t[-76.546901, 35.389673],\n\t\t\t\t\t\t[-76.599085, 35.519960],\n\t\t\t\t\t\t[-76.467761, 35.556504],\n\t\t\t\t\t\t[-76.564128, 35.601054],\n\t\t\t\t\t\t[-76.638031, 35.705233],\n\t\t\t\t\t\t[-76.546091, 35.705033],\n\t\t\t\t\t\t[-76.395283, 35.697469],\n\t\t\t\t\t\t[-76.269325, 35.690722],\n\t\t\t\t\t\t[-76.297845, 35.609052],\n\t\t\t\t\t\t[-76.214298, 35.597993],\n\t\t\t\t\t\t[-76.143577, 35.702741],\n\t\t\t\t\t\t[-76.045987, 35.666117],\n\t\t\t\t\t\t[-75.901164, 35.668998],\n\t\t\t\t\t\t[-75.869869, 35.582743]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37099\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"099\",\n\t\t\t\t\"NAME\": \"Jackson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 490.755000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.920819, 35.291868],\n\t\t\t\t\t\t[-82.983329, 35.131904],\n\t\t\t\t\t\t[-83.055352, 35.053865],\n\t\t\t\t\t\t[-83.008447, 35.026974],\n\t\t\t\t\t\t[-83.108535, 35.000771],\n\t\t\t\t\t\t[-83.108714, 35.000768],\n\t\t\t\t\t\t[-83.339707, 35.331004],\n\t\t\t\t\t\t[-83.351373, 35.468354],\n\t\t\t\t\t\t[-83.186052, 35.514573],\n\t\t\t\t\t\t[-82.996829, 35.372796],\n\t\t\t\t\t\t[-82.920819, 35.291868]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37105\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"105\",\n\t\t\t\t\"NAME\": \"Lee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 254.959000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.183301, 35.306976],\n\t\t\t\t\t\t[-79.273565, 35.353369],\n\t\t\t\t\t\t[-79.350009, 35.517991],\n\t\t\t\t\t\t[-79.118958, 35.628215],\n\t\t\t\t\t\t[-78.969761, 35.521433],\n\t\t\t\t\t\t[-79.183301, 35.306976]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37111\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"111\",\n\t\t\t\t\"NAME\": \"McDowell\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 440.608000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.824184, 35.574955],\n\t\t\t\t\t\t[-81.973556, 35.524565],\n\t\t\t\t\t\t[-82.002851, 35.551802],\n\t\t\t\t\t\t[-82.169018, 35.527841],\n\t\t\t\t\t\t[-82.290797, 35.591288],\n\t\t\t\t\t\t[-82.275394, 35.704423],\n\t\t\t\t\t\t[-82.197226, 35.736369],\n\t\t\t\t\t\t[-82.133182, 35.824446],\n\t\t\t\t\t\t[-81.981723, 35.911520],\n\t\t\t\t\t\t[-81.954501, 35.926742],\n\t\t\t\t\t\t[-81.962957, 35.941669],\n\t\t\t\t\t\t[-81.943674, 35.959448],\n\t\t\t\t\t\t[-81.906607, 35.883437],\n\t\t\t\t\t\t[-81.987035, 35.806936],\n\t\t\t\t\t\t[-81.869347, 35.719574],\n\t\t\t\t\t\t[-81.824184, 35.574955]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37115\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"115\",\n\t\t\t\t\"NAME\": \"Madison\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 449.570000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.898506, 35.945100],\n\t\t\t\t\t\t[-82.898505, 35.945101],\n\t\t\t\t\t\t[-82.874159, 35.952698],\n\t\t\t\t\t\t[-82.852554, 35.949089],\n\t\t\t\t\t\t[-82.830112, 35.932972],\n\t\t\t\t\t\t[-82.778625, 35.974792],\n\t\t\t\t\t\t[-82.754465, 36.004304],\n\t\t\t\t\t\t[-82.715365, 36.024253],\n\t\t\t\t\t\t[-82.683565, 36.046104],\n\t\t\t\t\t\t[-82.637165, 36.065805],\n\t\t\t\t\t\t[-82.632265, 36.065705],\n\t\t\t\t\t\t[-82.619205, 36.056556],\n\t\t\t\t\t\t[-82.602877, 36.039833],\n\t\t\t\t\t\t[-82.615062, 36.000306],\n\t\t\t\t\t\t[-82.611262, 35.973155],\n\t\t\t\t\t\t[-82.596774, 35.964987],\n\t\t\t\t\t\t[-82.557529, 35.954671],\n\t\t\t\t\t\t[-82.512598, 35.975664],\n\t\t\t\t\t\t[-82.507068, 35.977475],\n\t\t\t\t\t\t[-82.505860, 35.978342],\n\t\t\t\t\t\t[-82.408728, 35.818061],\n\t\t\t\t\t\t[-82.514519, 35.803194],\n\t\t\t\t\t\t[-82.806917, 35.685686],\n\t\t\t\t\t\t[-82.883665, 35.678190],\n\t\t\t\t\t\t[-82.964108, 35.794100],\n\t\t\t\t\t\t[-82.962842, 35.795126],\n\t\t\t\t\t\t[-82.918356, 35.845467],\n\t\t\t\t\t\t[-82.897980, 35.881278],\n\t\t\t\t\t\t[-82.913338, 35.924113],\n\t\t\t\t\t\t[-82.898506, 35.945100]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37121\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"121\",\n\t\t\t\t\"NAME\": \"Mitchell\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 221.425000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.416857, 36.072885],\n\t\t\t\t\t\t[-82.409458, 36.083409],\n\t\t\t\t\t\t[-82.375558, 36.105609],\n\t\t\t\t\t\t[-82.371383, 36.106388],\n\t\t\t\t\t\t[-82.366566, 36.107650],\n\t\t\t\t\t\t[-82.360919, 36.110614],\n\t\t\t\t\t\t[-82.348422, 36.115929],\n\t\t\t\t\t\t[-82.329177, 36.117427],\n\t\t\t\t\t\t[-82.325169, 36.119363],\n\t\t\t\t\t\t[-82.237737, 36.139189],\n\t\t\t\t\t\t[-82.236415, 36.139926],\n\t\t\t\t\t\t[-82.235479, 36.140748],\n\t\t\t\t\t\t[-82.234807, 36.141720],\n\t\t\t\t\t\t[-82.222052, 36.156911],\n\t\t\t\t\t\t[-82.211251, 36.159012],\n\t\t\t\t\t\t[-82.147948, 36.149516],\n\t\t\t\t\t\t[-82.136547, 36.128817],\n\t\t\t\t\t\t[-82.137974, 36.119576],\n\t\t\t\t\t\t[-82.130646, 36.106417],\n\t\t\t\t\t\t[-82.127146, 36.104417],\n\t\t\t\t\t\t[-82.080518, 36.105710],\n\t\t\t\t\t\t[-82.034192, 35.942107],\n\t\t\t\t\t\t[-81.981723, 35.911520],\n\t\t\t\t\t\t[-82.133182, 35.824446],\n\t\t\t\t\t\t[-82.199347, 36.015792],\n\t\t\t\t\t\t[-82.338245, 36.030294],\n\t\t\t\t\t\t[-82.416857, 36.072885]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37129\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"129\",\n\t\t\t\t\"NAME\": \"New Hanover\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 191.534000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.937313, 33.928645],\n\t\t\t\t\t\t[-77.951643, 34.232368],\n\t\t\t\t\t\t[-78.029922, 34.331768],\n\t\t\t\t\t\t[-77.822995, 34.389359],\n\t\t\t\t\t\t[-77.715916, 34.292719],\n\t\t\t\t\t\t[-77.740136, 34.272546],\n\t\t\t\t\t\t[-77.764022, 34.245641],\n\t\t\t\t\t\t[-77.829209, 34.162618],\n\t\t\t\t\t\t[-77.841785, 34.140747],\n\t\t\t\t\t\t[-77.870327, 34.079221],\n\t\t\t\t\t\t[-77.874384, 34.075671],\n\t\t\t\t\t\t[-77.878161, 34.067963],\n\t\t\t\t\t\t[-77.915536, 33.971723],\n\t\t\t\t\t\t[-77.927926, 33.945265],\n\t\t\t\t\t\t[-77.937313, 33.928645]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37135\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"135\",\n\t\t\t\t\"NAME\": \"Orange\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 397.958000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.259481, 36.137273],\n\t\t\t\t\t\t[-79.256964, 36.243866],\n\t\t\t\t\t\t[-79.153733, 36.242117],\n\t\t\t\t\t\t[-78.950790, 36.239160],\n\t\t\t\t\t\t[-79.016699, 35.863201],\n\t\t\t\t\t\t[-79.249475, 35.876788],\n\t\t\t\t\t\t[-79.259481, 36.137273]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37139\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"139\",\n\t\t\t\t\"NAME\": \"Pasquotank\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 226.880000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.491477, 36.510536],\n\t\t\t\t\t\t[-76.231218, 36.371712],\n\t\t\t\t\t\t[-76.216558, 36.298174],\n\t\t\t\t\t\t[-76.047100, 36.183106],\n\t\t\t\t\t\t[-76.051626, 36.181325],\n\t\t\t\t\t\t[-76.063498, 36.173518],\n\t\t\t\t\t\t[-76.065287, 36.170591],\n\t\t\t\t\t\t[-76.065450, 36.165224],\n\t\t\t\t\t\t[-76.059920, 36.155140],\n\t\t\t\t\t\t[-76.059270, 36.149285],\n\t\t\t\t\t\t[-76.064224, 36.143775],\n\t\t\t\t\t\t[-76.071672, 36.140183],\n\t\t\t\t\t\t[-76.092555, 36.135794],\n\t\t\t\t\t\t[-76.178946, 36.123424],\n\t\t\t\t\t\t[-76.184133, 36.121562],\n\t\t\t\t\t\t[-76.190510, 36.116333],\n\t\t\t\t\t\t[-76.289807, 36.222955],\n\t\t\t\t\t\t[-76.375078, 36.258853],\n\t\t\t\t\t\t[-76.453690, 36.378042],\n\t\t\t\t\t\t[-76.491405, 36.468648],\n\t\t\t\t\t\t[-76.491477, 36.510536]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37143\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"143\",\n\t\t\t\t\"NAME\": \"Perquimans\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 247.089000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.453690, 36.378042],\n\t\t\t\t\t\t[-76.375078, 36.258853],\n\t\t\t\t\t\t[-76.289807, 36.222955],\n\t\t\t\t\t\t[-76.190510, 36.116333],\n\t\t\t\t\t\t[-76.190784, 36.116108],\n\t\t\t\t\t\t[-76.192380, 36.113448],\n\t\t\t\t\t\t[-76.191715, 36.107197],\n\t\t\t\t\t\t[-76.216599, 36.095409],\n\t\t\t\t\t\t[-76.238712, 36.098568],\n\t\t\t\t\t\t[-76.265037, 36.104886],\n\t\t\t\t\t\t[-76.287150, 36.104886],\n\t\t\t\t\t\t[-76.298733, 36.101200],\n\t\t\t\t\t\t[-76.303998, 36.092776],\n\t\t\t\t\t\t[-76.323478, 36.084879],\n\t\t\t\t\t\t[-76.331902, 36.083826],\n\t\t\t\t\t\t[-76.337168, 36.086458],\n\t\t\t\t\t\t[-76.355069, 36.086458],\n\t\t\t\t\t\t[-76.410878, 36.078034],\n\t\t\t\t\t\t[-76.411844, 36.075376],\n\t\t\t\t\t\t[-76.573374, 36.112266],\n\t\t\t\t\t\t[-76.589897, 36.239009],\n\t\t\t\t\t\t[-76.559674, 36.351892],\n\t\t\t\t\t\t[-76.556837, 36.355186],\n\t\t\t\t\t\t[-76.539147, 36.357238],\n\t\t\t\t\t\t[-76.453690, 36.378042]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37147\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"147\",\n\t\t\t\t\"NAME\": \"Pitt\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 651.975000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.470067, 35.420157],\n\t\t\t\t\t\t[-77.472532, 35.425518],\n\t\t\t\t\t\t[-77.476000, 35.426684],\n\t\t\t\t\t\t[-77.509307, 35.519569],\n\t\t\t\t\t\t[-77.700502, 35.652256],\n\t\t\t\t\t\t[-77.688822, 35.660166],\n\t\t\t\t\t\t[-77.661312, 35.677321],\n\t\t\t\t\t\t[-77.538364, 35.750162],\n\t\t\t\t\t\t[-77.516479, 35.760866],\n\t\t\t\t\t\t[-77.390227, 35.832920],\n\t\t\t\t\t\t[-77.350602, 35.819214],\n\t\t\t\t\t\t[-77.174034, 35.733026],\n\t\t\t\t\t\t[-77.173788, 35.635336],\n\t\t\t\t\t\t[-77.087521, 35.564047],\n\t\t\t\t\t\t[-77.175418, 35.474071],\n\t\t\t\t\t\t[-77.173940, 35.456715],\n\t\t\t\t\t\t[-77.179935, 35.455811],\n\t\t\t\t\t\t[-77.181276, 35.440975],\n\t\t\t\t\t\t[-77.191230, 35.434744],\n\t\t\t\t\t\t[-77.189107, 35.426036],\n\t\t\t\t\t\t[-77.190423, 35.418955],\n\t\t\t\t\t\t[-77.295879, 35.379163],\n\t\t\t\t\t\t[-77.301155, 35.374239],\n\t\t\t\t\t\t[-77.353981, 35.327988],\n\t\t\t\t\t\t[-77.357402, 35.328827],\n\t\t\t\t\t\t[-77.361188, 35.331852],\n\t\t\t\t\t\t[-77.365484, 35.333651],\n\t\t\t\t\t\t[-77.374683, 35.333825],\n\t\t\t\t\t\t[-77.383581, 35.335360],\n\t\t\t\t\t\t[-77.390965, 35.340047],\n\t\t\t\t\t\t[-77.427046, 35.350424],\n\t\t\t\t\t\t[-77.470067, 35.420157]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37153\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"153\",\n\t\t\t\t\"NAME\": \"Richmond\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 473.821000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.744116, 34.805651],\n\t\t\t\t\t\t[-79.744925, 34.805686],\n\t\t\t\t\t\t[-79.772829, 34.805954],\n\t\t\t\t\t\t[-79.773607, 34.805931],\n\t\t\t\t\t\t[-79.927618, 34.806555],\n\t\t\t\t\t\t[-79.849990, 34.899317],\n\t\t\t\t\t\t[-79.875716, 35.037936],\n\t\t\t\t\t\t[-79.927887, 35.117713],\n\t\t\t\t\t\t[-79.999268, 35.085391],\n\t\t\t\t\t\t[-80.075390, 35.143081],\n\t\t\t\t\t\t[-79.851762, 35.183418],\n\t\t\t\t\t\t[-79.614306, 35.163679],\n\t\t\t\t\t\t[-79.575384, 35.069815],\n\t\t\t\t\t\t[-79.459176, 35.043096],\n\t\t\t\t\t\t[-79.572684, 34.991968],\n\t\t\t\t\t\t[-79.561826, 34.910363],\n\t\t\t\t\t\t[-79.692948, 34.804973],\n\t\t\t\t\t\t[-79.744116, 34.805651]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42085\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"085\",\n\t\t\t\t\"NAME\": \"Mercer\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 672.575000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.999780, 41.274178],\n\t\t\t\t\t\t[-79.999779, 41.171861],\n\t\t\t\t\t\t[-80.096861, 41.069804],\n\t\t\t\t\t\t[-80.147164, 41.113795],\n\t\t\t\t\t\t[-80.385094, 41.126492],\n\t\t\t\t\t\t[-80.519012, 41.125093],\n\t\t\t\t\t\t[-80.519012, 41.125116],\n\t\t\t\t\t\t[-80.519167, 41.133343],\n\t\t\t\t\t\t[-80.519167, 41.133388],\n\t\t\t\t\t\t[-80.519115, 41.145520],\n\t\t\t\t\t\t[-80.519144, 41.171203],\n\t\t\t\t\t\t[-80.518830, 41.209213],\n\t\t\t\t\t\t[-80.518893, 41.219356],\n\t\t\t\t\t\t[-80.518893, 41.219357],\n\t\t\t\t\t\t[-80.518893, 41.232556],\n\t\t\t\t\t\t[-80.518693, 41.248855],\n\t\t\t\t\t\t[-80.518893, 41.265155],\n\t\t\t\t\t\t[-80.518993, 41.268155],\n\t\t\t\t\t\t[-80.518996, 41.268300],\n\t\t\t\t\t\t[-80.518794, 41.305509],\n\t\t\t\t\t\t[-80.519129, 41.312408],\n\t\t\t\t\t\t[-80.519265, 41.333495],\n\t\t\t\t\t\t[-80.519281, 41.335958],\n\t\t\t\t\t\t[-80.519281, 41.337145],\n\t\t\t\t\t\t[-80.519281, 41.337174],\n\t\t\t\t\t\t[-80.519311, 41.339052],\n\t\t\t\t\t\t[-80.519293, 41.339054],\n\t\t\t\t\t\t[-80.519293, 41.339654],\n\t\t\t\t\t\t[-80.519345, 41.340145],\n\t\t\t\t\t\t[-80.519345, 41.340740],\n\t\t\t\t\t\t[-80.519297, 41.350833],\n\t\t\t\t\t\t[-80.519249, 41.361030],\n\t\t\t\t\t\t[-80.519217, 41.372006],\n\t\t\t\t\t\t[-80.519249, 41.378918],\n\t\t\t\t\t\t[-80.519025, 41.416438],\n\t\t\t\t\t\t[-80.518993, 41.416437],\n\t\t\t\t\t\t[-80.518993, 41.435454],\n\t\t\t\t\t\t[-80.519169, 41.462581],\n\t\t\t\t\t\t[-80.519209, 41.489013],\n\t\t\t\t\t\t[-80.125316, 41.480395],\n\t\t\t\t\t\t[-79.999779, 41.490049],\n\t\t\t\t\t\t[-79.999780, 41.274178]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42089\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"089\",\n\t\t\t\t\"NAME\": \"Monroe\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 608.286000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-75.600736, 41.161497],\n\t\t\t\t\t\t[-75.505607, 41.232539],\n\t\t\t\t\t\t[-75.359184, 41.239206],\n\t\t\t\t\t\t[-75.129721, 41.252101],\n\t\t\t\t\t\t[-75.156507, 41.150341],\n\t\t\t\t\t\t[-74.980674, 41.078178],\n\t\t\t\t\t\t[-75.026003, 41.042687],\n\t\t\t\t\t\t[-75.036982, 41.034702],\n\t\t\t\t\t\t[-75.051794, 41.027142],\n\t\t\t\t\t\t[-75.069277, 41.019348],\n\t\t\t\t\t\t[-75.091377, 41.012283],\n\t\t\t\t\t\t[-75.109114, 41.004102],\n\t\t\t\t\t\t[-75.130575, 40.991093],\n\t\t\t\t\t\t[-75.135526, 40.973807],\n\t\t\t\t\t\t[-75.131364, 40.969277],\n\t\t\t\t\t\t[-75.120564, 40.968313],\n\t\t\t\t\t\t[-75.300594, 40.859563],\n\t\t\t\t\t\t[-75.474193, 40.814746],\n\t\t\t\t\t\t[-75.574590, 40.951323],\n\t\t\t\t\t\t[-75.495990, 40.987181],\n\t\t\t\t\t\t[-75.649637, 41.122344],\n\t\t\t\t\t\t[-75.634978, 41.123192],\n\t\t\t\t\t\t[-75.615557, 41.150001],\n\t\t\t\t\t\t[-75.603002, 41.151914],\n\t\t\t\t\t\t[-75.600736, 41.161497]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42095\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"095\",\n\t\t\t\t\"NAME\": \"Northampton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 369.671000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-75.474193, 40.814746],\n\t\t\t\t\t\t[-75.300594, 40.859563],\n\t\t\t\t\t\t[-75.120564, 40.968313],\n\t\t\t\t\t\t[-75.120435, 40.968302],\n\t\t\t\t\t\t[-75.120316, 40.962630],\n\t\t\t\t\t\t[-75.119893, 40.961646],\n\t\t\t\t\t\t[-75.117764, 40.953023],\n\t\t\t\t\t\t[-75.052538, 40.872051],\n\t\t\t\t\t\t[-75.051029, 40.865662],\n\t\t\t\t\t\t[-75.053294, 40.859900],\n\t\t\t\t\t\t[-75.108505, 40.791094],\n\t\t\t\t\t\t[-75.134400, 40.773765],\n\t\t\t\t\t\t[-75.149378, 40.774786],\n\t\t\t\t\t\t[-75.163650, 40.778386],\n\t\t\t\t\t\t[-75.171587, 40.777745],\n\t\t\t\t\t\t[-75.196533, 40.751631],\n\t\t\t\t\t\t[-75.203920, 40.691498],\n\t\t\t\t\t\t[-75.200708, 40.618356],\n\t\t\t\t\t\t[-75.196803, 40.608580],\n\t\t\t\t\t\t[-75.333514, 40.537057],\n\t\t\t\t\t\t[-75.404412, 40.581154],\n\t\t\t\t\t\t[-75.430404, 40.674152],\n\t\t\t\t\t\t[-75.481469, 40.655744],\n\t\t\t\t\t\t[-75.608985, 40.787387],\n\t\t\t\t\t\t[-75.474193, 40.814746]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42101\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"101\",\n\t\t\t\t\"NAME\": \"Philadelphia\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 134.101000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-75.264431, 40.054094],\n\t\t\t\t\t\t[-75.176438, 40.084649],\n\t\t\t\t\t\t[-75.151596, 40.070328],\n\t\t\t\t\t\t[-75.135193, 40.061031],\n\t\t\t\t\t\t[-75.129021, 40.057091],\n\t\t\t\t\t\t[-75.124916, 40.054684],\n\t\t\t\t\t\t[-75.109406, 40.045840],\n\t\t\t\t\t\t[-75.087425, 40.063599],\n\t\t\t\t\t\t[-75.096733, 40.068989],\n\t\t\t\t\t\t[-75.015066, 40.137992],\n\t\t\t\t\t\t[-75.008530, 40.133992],\n\t\t\t\t\t\t[-75.005946, 40.132524],\n\t\t\t\t\t\t[-74.981947, 40.120245],\n\t\t\t\t\t\t[-74.964991, 40.118635],\n\t\t\t\t\t\t[-74.961342, 40.097496],\n\t\t\t\t\t\t[-74.956164, 40.095745],\n\t\t\t\t\t\t[-74.958841, 40.082503],\n\t\t\t\t\t\t[-74.971268, 40.073744],\n\t\t\t\t\t\t[-74.984893, 40.057287],\n\t\t\t\t\t\t[-74.974290, 40.048872],\n\t\t\t\t\t\t[-74.974713, 40.048711],\n\t\t\t\t\t\t[-75.014343, 40.020976],\n\t\t\t\t\t\t[-75.056039, 39.991795],\n\t\t\t\t\t\t[-75.072017, 39.980612],\n\t\t\t\t\t\t[-75.085754, 39.967572],\n\t\t\t\t\t\t[-75.133220, 39.922512],\n\t\t\t\t\t\t[-75.153925, 39.906144],\n\t\t\t\t\t\t[-75.184952, 39.881615],\n\t\t\t\t\t\t[-75.210425, 39.865913],\n\t\t\t\t\t\t[-75.210972, 39.865706],\n\t\t\t\t\t\t[-75.215722, 39.876087],\n\t\t\t\t\t\t[-75.240470, 39.872381],\n\t\t\t\t\t\t[-75.262539, 39.876578],\n\t\t\t\t\t\t[-75.276482, 39.976959],\n\t\t\t\t\t\t[-75.263687, 39.982658],\n\t\t\t\t\t\t[-75.256119, 39.987301],\n\t\t\t\t\t\t[-75.249214, 39.990547],\n\t\t\t\t\t\t[-75.264431, 40.054094]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42109\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"109\",\n\t\t\t\t\"NAME\": \"Snyder\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 328.705000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.800242, 40.881994],\n\t\t\t\t\t\t[-76.798714, 40.878366],\n\t\t\t\t\t\t[-76.798921, 40.876901],\n\t\t\t\t\t\t[-76.799523, 40.874749],\n\t\t\t\t\t\t[-76.801561, 40.870634],\n\t\t\t\t\t\t[-76.806246, 40.862535],\n\t\t\t\t\t\t[-76.808366, 40.857369],\n\t\t\t\t\t\t[-76.811228, 40.851712],\n\t\t\t\t\t\t[-76.812242, 40.850305],\n\t\t\t\t\t\t[-76.812728, 40.847457],\n\t\t\t\t\t\t[-76.817522, 40.843782],\n\t\t\t\t\t\t[-76.820895, 40.839898],\n\t\t\t\t\t\t[-76.825648, 40.835503],\n\t\t\t\t\t\t[-76.829685, 40.831029],\n\t\t\t\t\t\t[-76.836338, 40.825761],\n\t\t\t\t\t\t[-76.840626, 40.821324],\n\t\t\t\t\t\t[-76.845395, 40.815175],\n\t\t\t\t\t\t[-76.849280, 40.809755],\n\t\t\t\t\t\t[-76.849660, 40.808205],\n\t\t\t\t\t\t[-76.848912, 40.805989],\n\t\t\t\t\t\t[-76.852163, 40.800839],\n\t\t\t\t\t\t[-76.856094, 40.791211],\n\t\t\t\t\t\t[-76.856292, 40.789697],\n\t\t\t\t\t\t[-76.858703, 40.781521],\n\t\t\t\t\t\t[-76.858513, 40.779416],\n\t\t\t\t\t\t[-76.859252, 40.777043],\n\t\t\t\t\t\t[-76.858352, 40.769536],\n\t\t\t\t\t\t[-76.857522, 40.766000],\n\t\t\t\t\t\t[-76.857719, 40.764374],\n\t\t\t\t\t\t[-76.857209, 40.759446],\n\t\t\t\t\t\t[-76.856445, 40.755810],\n\t\t\t\t\t\t[-76.857521, 40.749612],\n\t\t\t\t\t\t[-76.856681, 40.747311],\n\t\t\t\t\t\t[-76.856979, 40.746001],\n\t\t\t\t\t\t[-76.855995, 40.737931],\n\t\t\t\t\t\t[-76.855523, 40.737119],\n\t\t\t\t\t\t[-76.855362, 40.728821],\n\t\t\t\t\t\t[-76.939749, 40.638378],\n\t\t\t\t\t\t[-77.035549, 40.676918],\n\t\t\t\t\t\t[-77.198923, 40.682511],\n\t\t\t\t\t\t[-77.287941, 40.693595],\n\t\t\t\t\t\t[-77.354097, 40.701667],\n\t\t\t\t\t\t[-77.356628, 40.807334],\n\t\t\t\t\t\t[-76.940706, 40.888023],\n\t\t\t\t\t\t[-76.800242, 40.881994]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42111\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"111\",\n\t\t\t\t\"NAME\": \"Somerset\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1074.374000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.768593, 40.243441],\n\t\t\t\t\t\t[-78.760311, 40.243171],\n\t\t\t\t\t\t[-78.658409, 40.242933],\n\t\t\t\t\t\t[-78.763206, 40.057005],\n\t\t\t\t\t\t[-78.757241, 39.823484],\n\t\t\t\t\t\t[-78.808387, 39.722726],\n\t\t\t\t\t\t[-78.931175, 39.722775],\n\t\t\t\t\t\t[-78.931176, 39.722775],\n\t\t\t\t\t\t[-79.392458, 39.721340],\n\t\t\t\t\t\t[-79.365695, 39.820546],\n\t\t\t\t\t\t[-79.417558, 39.853776],\n\t\t\t\t\t\t[-79.347363, 39.969492],\n\t\t\t\t\t\t[-79.330397, 39.992796],\n\t\t\t\t\t\t[-79.325250, 39.999872],\n\t\t\t\t\t\t[-79.302801, 40.028500],\n\t\t\t\t\t\t[-79.301533, 40.029860],\n\t\t\t\t\t\t[-79.296131, 40.036750],\n\t\t\t\t\t\t[-79.294283, 40.039429],\n\t\t\t\t\t\t[-79.293682, 40.040413],\n\t\t\t\t\t\t[-79.185222, 40.109848],\n\t\t\t\t\t\t[-79.088656, 40.241259],\n\t\t\t\t\t\t[-79.086174, 40.242665],\n\t\t\t\t\t\t[-79.086734, 40.245342],\n\t\t\t\t\t\t[-79.082472, 40.250074],\n\t\t\t\t\t\t[-79.079250, 40.251172],\n\t\t\t\t\t\t[-79.078084, 40.254840],\n\t\t\t\t\t\t[-79.079570, 40.257928],\n\t\t\t\t\t\t[-79.076638, 40.260307],\n\t\t\t\t\t\t[-79.073523, 40.266727],\n\t\t\t\t\t\t[-79.067963, 40.272471],\n\t\t\t\t\t\t[-79.059378, 40.275767],\n\t\t\t\t\t\t[-79.056646, 40.278604],\n\t\t\t\t\t\t[-79.055983, 40.285089],\n\t\t\t\t\t\t[-78.927601, 40.285041],\n\t\t\t\t\t\t[-78.884862, 40.244631],\n\t\t\t\t\t\t[-78.768593, 40.243441]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42115\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"115\",\n\t\t\t\t\"NAME\": \"Susquehanna\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 823.435000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-75.719887, 41.642263],\n\t\t\t\t\t\t[-76.115172, 41.651825],\n\t\t\t\t\t\t[-76.145519, 41.998913],\n\t\t\t\t\t\t[-76.131201, 41.998954],\n\t\t\t\t\t\t[-76.123696, 41.998954],\n\t\t\t\t\t\t[-76.105840, 41.998858],\n\t\t\t\t\t\t[-75.983082, 41.999035],\n\t\t\t\t\t\t[-75.980250, 41.999035],\n\t\t\t\t\t\t[-75.483738, 41.999244],\n\t\t\t\t\t\t[-75.483150, 41.999259],\n\t\t\t\t\t\t[-75.462411, 41.641587],\n\t\t\t\t\t\t[-75.469259, 41.641410],\n\t\t\t\t\t\t[-75.719887, 41.642263]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42119\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"119\",\n\t\t\t\t\"NAME\": \"Union\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 315.982000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.356628, 40.807334],\n\t\t\t\t\t\t[-77.357113, 40.844484],\n\t\t\t\t\t\t[-77.364180, 40.846937],\n\t\t\t\t\t\t[-77.144160, 41.044338],\n\t\t\t\t\t\t[-77.143723, 41.045780],\n\t\t\t\t\t\t[-77.144111, 41.068840],\n\t\t\t\t\t\t[-76.977939, 41.087883],\n\t\t\t\t\t\t[-76.896114, 41.139070],\n\t\t\t\t\t\t[-76.882280, 40.971334],\n\t\t\t\t\t\t[-76.800242, 40.881994],\n\t\t\t\t\t\t[-76.940706, 40.888023],\n\t\t\t\t\t\t[-77.356628, 40.807334]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42121\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"121\",\n\t\t\t\t\"NAME\": \"Venango\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 674.284000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.477822, 41.386479],\n\t\t\t\t\t\t[-79.478140, 41.335708],\n\t\t\t\t\t\t[-79.604161, 41.321478],\n\t\t\t\t\t\t[-79.694984, 41.172865],\n\t\t\t\t\t\t[-79.999779, 41.171861],\n\t\t\t\t\t\t[-79.999780, 41.274178],\n\t\t\t\t\t\t[-79.999779, 41.490049],\n\t\t\t\t\t\t[-79.828876, 41.622057],\n\t\t\t\t\t\t[-79.748047, 41.617747],\n\t\t\t\t\t\t[-79.612866, 41.617058],\n\t\t\t\t\t\t[-79.612873, 41.623858],\n\t\t\t\t\t\t[-79.512070, 41.624559],\n\t\t\t\t\t\t[-79.512276, 41.465240],\n\t\t\t\t\t\t[-79.477822, 41.386479]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42125\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"125\",\n\t\t\t\t\"NAME\": \"Washington\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 856.989000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.519217, 39.962199],\n\t\t\t\t\t\t[-80.519218, 39.962424],\n\t\t\t\t\t\t[-80.519207, 39.963381],\n\t\t\t\t\t\t[-80.519120, 40.016410],\n\t\t\t\t\t\t[-80.519008, 40.077001],\n\t\t\t\t\t\t[-80.518960, 40.078089],\n\t\t\t\t\t\t[-80.519104, 40.159672],\n\t\t\t\t\t\t[-80.519056, 40.172744],\n\t\t\t\t\t\t[-80.519056, 40.172771],\n\t\t\t\t\t\t[-80.517991, 40.398868],\n\t\t\t\t\t\t[-80.517998, 40.399644],\n\t\t\t\t\t\t[-80.518692, 40.477365],\n\t\t\t\t\t\t[-80.448114, 40.477717],\n\t\t\t\t\t\t[-80.360873, 40.477539],\n\t\t\t\t\t\t[-80.183129, 40.332515],\n\t\t\t\t\t\t[-80.033712, 40.288034],\n\t\t\t\t\t\t[-79.952098, 40.240877],\n\t\t\t\t\t\t[-79.964764, 40.237670],\n\t\t\t\t\t\t[-79.970652, 40.231814],\n\t\t\t\t\t\t[-79.968335, 40.223820],\n\t\t\t\t\t\t[-79.956073, 40.213582],\n\t\t\t\t\t\t[-79.927883, 40.206822],\n\t\t\t\t\t\t[-79.912586, 40.197767],\n\t\t\t\t\t\t[-79.893281, 40.194352],\n\t\t\t\t\t\t[-79.888986, 40.194823],\n\t\t\t\t\t\t[-79.881913, 40.196519],\n\t\t\t\t\t\t[-79.870585, 40.197415],\n\t\t\t\t\t\t[-79.877385, 40.126792],\n\t\t\t\t\t\t[-79.877048, 40.036826],\n\t\t\t\t\t\t[-79.998014, 39.983322],\n\t\t\t\t\t\t[-80.157339, 39.999581],\n\t\t\t\t\t\t[-80.379505, 39.994125],\n\t\t\t\t\t\t[-80.519217, 39.962199]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42133\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"133\",\n\t\t\t\t\"NAME\": \"York\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 904.181000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.721620, 40.120070],\n\t\t\t\t\t\t[-76.663825, 40.063227],\n\t\t\t\t\t\t[-76.534524, 40.051348],\n\t\t\t\t\t\t[-76.473580, 39.947352],\n\t\t\t\t\t\t[-76.239805, 39.721305],\n\t\t\t\t\t\t[-76.380083, 39.721304],\n\t\t\t\t\t\t[-76.380583, 39.721304],\n\t\t\t\t\t\t[-76.395583, 39.721204],\n\t\t\t\t\t\t[-76.418684, 39.721304],\n\t\t\t\t\t\t[-76.418784, 39.721204],\n\t\t\t\t\t\t[-76.491887, 39.721304],\n\t\t\t\t\t\t[-76.517087, 39.721304],\n\t\t\t\t\t\t[-76.569389, 39.721203],\n\t\t\t\t\t\t[-76.569475, 39.721203],\n\t\t\t\t\t\t[-76.711894, 39.721103],\n\t\t\t\t\t\t[-76.715594, 39.721103],\n\t\t\t\t\t\t[-76.787096, 39.720802],\n\t\t\t\t\t\t[-76.787097, 39.720802],\n\t\t\t\t\t\t[-76.806397, 39.720602],\n\t\t\t\t\t\t[-76.809197, 39.720702],\n\t\t\t\t\t\t[-76.890100, 39.720401],\n\t\t\t\t\t\t[-76.897566, 39.720401],\n\t\t\t\t\t\t[-76.999465, 39.720128],\n\t\t\t\t\t\t[-76.998377, 39.832115],\n\t\t\t\t\t\t[-76.954932, 39.856850],\n\t\t\t\t\t\t[-77.018648, 40.013947],\n\t\t\t\t\t\t[-77.137425, 40.069945],\n\t\t\t\t\t\t[-77.028853, 40.147838],\n\t\t\t\t\t\t[-76.905875, 40.165723],\n\t\t\t\t\t\t[-76.859023, 40.226328],\n\t\t\t\t\t\t[-76.721620, 40.120070]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US49009\",\n\t\t\t\t\"STATE\": \"49\",\n\t\t\t\t\"COUNTY\": \"009\",\n\t\t\t\t\"NAME\": \"Daggett\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 696.979000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-110.000708, 40.997352],\n\t\t\t\t\t\t[-109.999838, 40.997330],\n\t\t\t\t\t\t[-109.855299, 40.997614],\n\t\t\t\t\t\t[-109.854302, 40.997661],\n\t\t\t\t\t\t[-109.715409, 40.998191],\n\t\t\t\t\t\t[-109.713877, 40.998266],\n\t\t\t\t\t\t[-109.676421, 40.998395],\n\t\t\t\t\t\t[-109.207383, 41.001459],\n\t\t\t\t\t\t[-109.050076, 41.000659],\n\t\t\t\t\t\t[-109.048296, 40.662602],\n\t\t\t\t\t\t[-109.161063, 40.683817],\n\t\t\t\t\t\t[-109.163584, 40.785890],\n\t\t\t\t\t\t[-109.202356, 40.785814],\n\t\t\t\t\t\t[-109.203253, 40.858641],\n\t\t\t\t\t\t[-109.394481, 40.858073],\n\t\t\t\t\t\t[-109.394368, 40.790881],\n\t\t\t\t\t\t[-109.480252, 40.739929],\n\t\t\t\t\t\t[-109.525495, 40.826370],\n\t\t\t\t\t\t[-109.870207, 40.763829],\n\t\t\t\t\t\t[-109.977505, 40.809828],\n\t\t\t\t\t\t[-109.987631, 40.807616],\n\t\t\t\t\t\t[-109.993667, 40.815200],\n\t\t\t\t\t\t[-110.000709, 40.813750],\n\t\t\t\t\t\t[-110.000708, 40.997352]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US49013\",\n\t\t\t\t\"STATE\": \"49\",\n\t\t\t\t\"COUNTY\": \"013\",\n\t\t\t\t\"NAME\": \"Duchesne\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 3240.945000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-110.857902, 39.812428],\n\t\t\t\t\t\t[-110.857321, 39.898941],\n\t\t\t\t\t\t[-110.891872, 39.899146],\n\t\t\t\t\t\t[-110.901931, 40.678170],\n\t\t\t\t\t\t[-110.893090, 40.727330],\n\t\t\t\t\t\t[-110.375002, 40.788211],\n\t\t\t\t\t\t[-110.294317, 40.834228],\n\t\t\t\t\t\t[-110.000709, 40.813750],\n\t\t\t\t\t\t[-109.993667, 40.815200],\n\t\t\t\t\t\t[-109.987631, 40.807616],\n\t\t\t\t\t\t[-109.977505, 40.809828],\n\t\t\t\t\t\t[-109.973684, 40.039869],\n\t\t\t\t\t\t[-109.967601, 39.805979],\n\t\t\t\t\t\t[-110.857902, 39.812428]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US49019\",\n\t\t\t\t\"STATE\": \"49\",\n\t\t\t\t\"COUNTY\": \"019\",\n\t\t\t\t\"NAME\": \"Grand\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 3671.543000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-110.025402, 38.499981],\n\t\t\t\t\t\t[-109.994283, 38.527118],\n\t\t\t\t\t\t[-110.057897, 38.583740],\n\t\t\t\t\t\t[-109.996929, 38.608847],\n\t\t\t\t\t\t[-110.055950, 38.604953],\n\t\t\t\t\t\t[-110.036344, 38.652311],\n\t\t\t\t\t\t[-110.113526, 38.706507],\n\t\t\t\t\t\t[-110.083861, 38.751952],\n\t\t\t\t\t\t[-110.179252, 38.907248],\n\t\t\t\t\t\t[-110.150018, 38.980696],\n\t\t\t\t\t\t[-110.005576, 38.949914],\n\t\t\t\t\t\t[-110.097736, 39.001619],\n\t\t\t\t\t\t[-110.150496, 38.998655],\n\t\t\t\t\t\t[-110.098763, 39.189509],\n\t\t\t\t\t\t[-110.054570, 39.228283],\n\t\t\t\t\t\t[-110.077270, 39.275869],\n\t\t\t\t\t\t[-110.010617, 39.416322],\n\t\t\t\t\t\t[-110.024140, 39.461695],\n\t\t\t\t\t\t[-109.106972, 39.461979],\n\t\t\t\t\t\t[-109.051363, 39.497674],\n\t\t\t\t\t\t[-109.051417, 39.366677],\n\t\t\t\t\t\t[-109.051516, 39.124982],\n\t\t\t\t\t\t[-109.053292, 38.942878],\n\t\t\t\t\t\t[-109.053233, 38.942467],\n\t\t\t\t\t\t[-109.053797, 38.905284],\n\t\t\t\t\t\t[-109.053943, 38.904414],\n\t\t\t\t\t\t[-109.059541, 38.719888],\n\t\t\t\t\t\t[-109.059962, 38.499987],\n\t\t\t\t\t\t[-110.025402, 38.499981]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US49023\",\n\t\t\t\t\"STATE\": \"49\",\n\t\t\t\t\"COUNTY\": \"023\",\n\t\t\t\t\"NAME\": \"Juab\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 3392.278000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-112.179729, 40.011569],\n\t\t\t\t\t\t[-112.053359, 39.893194],\n\t\t\t\t\t\t[-112.071350, 39.777942],\n\t\t\t\t\t\t[-111.972000, 39.806657],\n\t\t\t\t\t\t[-111.909411, 39.894519],\n\t\t\t\t\t\t[-111.794837, 39.931159],\n\t\t\t\t\t\t[-111.734178, 39.853895],\n\t\t\t\t\t\t[-111.766193, 39.810601],\n\t\t\t\t\t\t[-111.640578, 39.813017],\n\t\t\t\t\t\t[-111.585068, 39.740135],\n\t\t\t\t\t\t[-111.718620, 39.694623],\n\t\t\t\t\t\t[-111.713224, 39.460107],\n\t\t\t\t\t\t[-111.747075, 39.382830],\n\t\t\t\t\t\t[-111.922462, 39.381452],\n\t\t\t\t\t\t[-112.015677, 39.314455],\n\t\t\t\t\t\t[-112.195578, 39.329600],\n\t\t\t\t\t\t[-112.220362, 39.554054],\n\t\t\t\t\t\t[-112.354345, 39.553871],\n\t\t\t\t\t\t[-112.462119, 39.552449],\n\t\t\t\t\t\t[-113.815570, 39.552624],\n\t\t\t\t\t\t[-113.815748, 39.544097],\n\t\t\t\t\t\t[-114.047728, 39.542742],\n\t\t\t\t\t\t[-114.047134, 39.906037],\n\t\t\t\t\t\t[-112.341883, 39.904247],\n\t\t\t\t\t\t[-112.331783, 39.952747],\n\t\t\t\t\t\t[-112.269882, 39.938947],\n\t\t\t\t\t\t[-112.179729, 40.011569]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48001\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"001\",\n\t\t\t\t\"NAME\": \"Anderson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1062.602000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.428512, 32.084475],\n\t\t\t\t\t\t[-95.446747, 31.843116],\n\t\t\t\t\t\t[-95.412908, 31.835157],\n\t\t\t\t\t\t[-95.258859, 31.609959],\n\t\t\t\t\t\t[-95.273203, 31.592886],\n\t\t\t\t\t\t[-95.651764, 31.541791],\n\t\t\t\t\t\t[-95.739279, 31.504056],\n\t\t\t\t\t\t[-95.710112, 31.615587],\n\t\t\t\t\t\t[-95.787300, 31.618385],\n\t\t\t\t\t\t[-95.794081, 31.660310],\n\t\t\t\t\t\t[-95.861262, 31.687451],\n\t\t\t\t\t\t[-95.875937, 31.755503],\n\t\t\t\t\t\t[-95.980568, 31.784561],\n\t\t\t\t\t\t[-95.994127, 31.866258],\n\t\t\t\t\t\t[-96.027788, 31.878242],\n\t\t\t\t\t\t[-96.022955, 31.957581],\n\t\t\t\t\t\t[-96.062172, 31.956340],\n\t\t\t\t\t\t[-96.052786, 32.005895],\n\t\t\t\t\t\t[-95.428512, 32.084475]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48013\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"013\",\n\t\t\t\t\"NAME\": \"Atascosa\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1219.544000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.800841, 28.647487],\n\t\t\t\t\t\t[-98.804900, 29.090434],\n\t\t\t\t\t\t[-98.804763, 29.250693],\n\t\t\t\t\t\t[-98.407336, 29.114435],\n\t\t\t\t\t\t[-98.190991, 28.882333],\n\t\t\t\t\t\t[-98.098315, 28.786949],\n\t\t\t\t\t\t[-98.335031, 28.612658],\n\t\t\t\t\t\t[-98.335047, 28.648275],\n\t\t\t\t\t\t[-98.800848, 28.647306],\n\t\t\t\t\t\t[-98.800841, 28.647487]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48015\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"015\",\n\t\t\t\t\"NAME\": \"Austin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 646.508000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.621980, 30.044283],\n\t\t\t\t\t\t[-96.292849, 30.096150],\n\t\t\t\t\t\t[-96.146052, 30.070224],\n\t\t\t\t\t\t[-96.084541, 30.005137],\n\t\t\t\t\t\t[-96.122754, 29.968545],\n\t\t\t\t\t\t[-96.121313, 29.841963],\n\t\t\t\t\t\t[-96.049234, 29.803187],\n\t\t\t\t\t\t[-96.032711, 29.727944],\n\t\t\t\t\t\t[-96.024850, 29.602877],\n\t\t\t\t\t\t[-96.088912, 29.601658],\n\t\t\t\t\t\t[-96.175422, 29.633806],\n\t\t\t\t\t\t[-96.259226, 29.668912],\n\t\t\t\t\t\t[-96.344476, 29.830147],\n\t\t\t\t\t\t[-96.413283, 29.824985],\n\t\t\t\t\t\t[-96.569844, 29.961516],\n\t\t\t\t\t\t[-96.621980, 30.044283]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48017\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"017\",\n\t\t\t\t\"NAME\": \"Bailey\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 826.797000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-103.043979, 34.312749],\n\t\t\t\t\t\t[-102.615150, 34.312891],\n\t\t\t\t\t\t[-102.615447, 33.825121],\n\t\t\t\t\t\t[-103.047346, 33.824675],\n\t\t\t\t\t\t[-103.046907, 33.850300],\n\t\t\t\t\t\t[-103.045644, 33.901537],\n\t\t\t\t\t\t[-103.045698, 33.906299],\n\t\t\t\t\t\t[-103.044893, 33.945617],\n\t\t\t\t\t\t[-103.043950, 33.974629],\n\t\t\t\t\t\t[-103.043617, 34.003633],\n\t\t\t\t\t\t[-103.043531, 34.018014],\n\t\t\t\t\t\t[-103.043555, 34.032714],\n\t\t\t\t\t\t[-103.043746, 34.037294],\n\t\t\t\t\t\t[-103.043771, 34.041538],\n\t\t\t\t\t\t[-103.043721, 34.042320],\n\t\t\t\t\t\t[-103.043767, 34.043545],\n\t\t\t\t\t\t[-103.043744, 34.049986],\n\t\t\t\t\t\t[-103.043686, 34.063078],\n\t\t\t\t\t\t[-103.043516, 34.079382],\n\t\t\t\t\t\t[-103.043569, 34.087947],\n\t\t\t\t\t\t[-103.043644, 34.256903],\n\t\t\t\t\t\t[-103.043719, 34.289441],\n\t\t\t\t\t\t[-103.043936, 34.302585],\n\t\t\t\t\t\t[-103.043979, 34.312749]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48023\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"023\",\n\t\t\t\t\"NAME\": \"Baylor\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 867.482000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.475650, 33.834005],\n\t\t\t\t\t\t[-98.953088, 33.834000],\n\t\t\t\t\t\t[-98.953938, 33.397534],\n\t\t\t\t\t\t[-99.472444, 33.399023],\n\t\t\t\t\t\t[-99.474498, 33.733849],\n\t\t\t\t\t\t[-99.475650, 33.834005]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48025\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"025\",\n\t\t\t\t\"NAME\": \"Bee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 880.239000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.375579, 28.388684],\n\t\t\t\t\t\t[-97.541071, 28.164669],\n\t\t\t\t\t\t[-97.567622, 28.129683],\n\t\t\t\t\t\t[-97.817716, 28.176848],\n\t\t\t\t\t\t[-97.808774, 28.183415],\n\t\t\t\t\t\t[-98.089764, 28.662979],\n\t\t\t\t\t\t[-98.005252, 28.690239],\n\t\t\t\t\t\t[-97.915106, 28.719648],\n\t\t\t\t\t\t[-97.778530, 28.668027],\n\t\t\t\t\t\t[-97.696945, 28.541856],\n\t\t\t\t\t\t[-97.558496, 28.514054],\n\t\t\t\t\t\t[-97.551369, 28.450441],\n\t\t\t\t\t\t[-97.375579, 28.388684]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48029\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"029\",\n\t\t\t\t\"NAME\": \"Bexar\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1239.820000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.287020, 29.257626],\n\t\t\t\t\t\t[-98.407336, 29.114435],\n\t\t\t\t\t\t[-98.804763, 29.250693],\n\t\t\t\t\t\t[-98.806552, 29.690709],\n\t\t\t\t\t\t[-98.778782, 29.720167],\n\t\t\t\t\t\t[-98.646124, 29.745181],\n\t\t\t\t\t\t[-98.550489, 29.760713],\n\t\t\t\t\t\t[-98.443852, 29.719650],\n\t\t\t\t\t\t[-98.338618, 29.721786],\n\t\t\t\t\t\t[-98.378068, 29.662613],\n\t\t\t\t\t\t[-98.310928, 29.594473],\n\t\t\t\t\t\t[-98.298524, 29.561141],\n\t\t\t\t\t\t[-98.272924, 29.550878],\n\t\t\t\t\t\t[-98.126767, 29.482248],\n\t\t\t\t\t\t[-98.134171, 29.441751],\n\t\t\t\t\t\t[-98.137187, 29.440428],\n\t\t\t\t\t\t[-98.287020, 29.257626]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48033\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"033\",\n\t\t\t\t\"NAME\": \"Borden\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 897.443000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-101.173378, 32.963597],\n\t\t\t\t\t\t[-101.174562, 32.527703],\n\t\t\t\t\t\t[-101.174571, 32.524112],\n\t\t\t\t\t\t[-101.688740, 32.525222],\n\t\t\t\t\t\t[-101.691284, 32.961838],\n\t\t\t\t\t\t[-101.557434, 32.961025],\n\t\t\t\t\t\t[-101.173378, 32.963597]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48035\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"035\",\n\t\t\t\t\"NAME\": \"Bosque\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 982.978000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.864864, 32.087328],\n\t\t\t\t\t\t[-97.615055, 32.203581],\n\t\t\t\t\t\t[-97.516121, 32.133612],\n\t\t\t\t\t\t[-97.476086, 32.173460],\n\t\t\t\t\t\t[-97.485968, 32.017611],\n\t\t\t\t\t\t[-97.379992, 31.972740],\n\t\t\t\t\t\t[-97.438765, 31.933506],\n\t\t\t\t\t\t[-97.382848, 31.870788],\n\t\t\t\t\t\t[-97.282060, 31.843152],\n\t\t\t\t\t\t[-97.326530, 31.788360],\n\t\t\t\t\t\t[-97.277265, 31.745492],\n\t\t\t\t\t\t[-97.580232, 31.598796],\n\t\t\t\t\t\t[-97.605230, 31.587762],\n\t\t\t\t\t\t[-97.689834, 31.711019],\n\t\t\t\t\t\t[-97.766431, 31.672461],\n\t\t\t\t\t\t[-98.005462, 32.017897],\n\t\t\t\t\t\t[-97.864864, 32.087328]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48039\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"039\",\n\t\t\t\t\"NAME\": \"Brazoria\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1357.701000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.424118, 29.580233],\n\t\t\t\t\t\t[-95.297409, 29.596514],\n\t\t\t\t\t\t[-95.216422, 29.556080],\n\t\t\t\t\t\t[-95.216788, 29.554643],\n\t\t\t\t\t\t[-95.217702, 29.549503],\n\t\t\t\t\t\t[-95.217794, 29.548449],\n\t\t\t\t\t\t[-95.219169, 29.541283],\n\t\t\t\t\t\t[-95.219395, 29.539122],\n\t\t\t\t\t\t[-95.219813, 29.536757],\n\t\t\t\t\t\t[-95.220748, 29.532688],\n\t\t\t\t\t\t[-95.221212, 29.529137],\n\t\t\t\t\t\t[-95.221862, 29.526521],\n\t\t\t\t\t\t[-95.223994, 29.514422],\n\t\t\t\t\t\t[-95.225168, 29.503974],\n\t\t\t\t\t\t[-95.229732, 29.480714],\n\t\t\t\t\t\t[-95.231803, 29.472607],\n\t\t\t\t\t\t[-95.233081, 29.465566],\n\t\t\t\t\t\t[-95.056528, 29.199934],\n\t\t\t\t\t\t[-95.119271, 29.077844],\n\t\t\t\t\t\t[-95.122525, 29.074000],\n\t\t\t\t\t\t[-95.125134, 29.067321],\n\t\t\t\t\t\t[-95.191391, 29.023090],\n\t\t\t\t\t\t[-95.238924, 28.988644],\n\t\t\t\t\t\t[-95.272266, 28.961546],\n\t\t\t\t\t\t[-95.297147, 28.934073],\n\t\t\t\t\t\t[-95.309704, 28.928262],\n\t\t\t\t\t\t[-95.353451, 28.898145],\n\t\t\t\t\t\t[-95.376979, 28.876160],\n\t\t\t\t\t\t[-95.382390, 28.866348],\n\t\t\t\t\t\t[-95.416174, 28.859482],\n\t\t\t\t\t\t[-95.439594, 28.859022],\n\t\t\t\t\t\t[-95.486769, 28.836287],\n\t\t\t\t\t\t[-95.507041, 28.824755],\n\t\t\t\t\t\t[-95.567708, 28.829758],\n\t\t\t\t\t\t[-95.679550, 28.965734],\n\t\t\t\t\t\t[-95.764937, 28.967359],\n\t\t\t\t\t\t[-95.770446, 29.066210],\n\t\t\t\t\t\t[-95.846310, 29.107799],\n\t\t\t\t\t\t[-95.874028, 29.229702],\n\t\t\t\t\t\t[-95.841948, 29.258707],\n\t\t\t\t\t\t[-95.847656, 29.262590],\n\t\t\t\t\t\t[-95.752866, 29.324503],\n\t\t\t\t\t\t[-95.654355, 29.290945],\n\t\t\t\t\t\t[-95.579598, 29.340129],\n\t\t\t\t\t\t[-95.549994, 29.438439],\n\t\t\t\t\t\t[-95.462503, 29.439240],\n\t\t\t\t\t\t[-95.443224, 29.510214],\n\t\t\t\t\t\t[-95.424118, 29.580233]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29171\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"171\",\n\t\t\t\t\"NAME\": \"Putnam\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 517.317000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.366935, 40.382999],\n\t\t\t\t\t\t[-93.374386, 40.580334],\n\t\t\t\t\t\t[-93.345442, 40.580514],\n\t\t\t\t\t\t[-93.317605, 40.580671],\n\t\t\t\t\t\t[-93.260612, 40.580797],\n\t\t\t\t\t\t[-93.098507, 40.583973],\n\t\t\t\t\t\t[-93.097296, 40.584014],\n\t\t\t\t\t\t[-93.085517, 40.584403],\n\t\t\t\t\t\t[-92.957747, 40.587430],\n\t\t\t\t\t\t[-92.941595, 40.587743],\n\t\t\t\t\t\t[-92.903544, 40.587860],\n\t\t\t\t\t\t[-92.889796, 40.588039],\n\t\t\t\t\t\t[-92.879178, 40.588341],\n\t\t\t\t\t\t[-92.863034, 40.588175],\n\t\t\t\t\t\t[-92.857391, 40.588360],\n\t\t\t\t\t\t[-92.835074, 40.588484],\n\t\t\t\t\t\t[-92.827992, 40.588515],\n\t\t\t\t\t\t[-92.828061, 40.588593],\n\t\t\t\t\t\t[-92.757407, 40.588908],\n\t\t\t\t\t\t[-92.742232, 40.589207],\n\t\t\t\t\t\t[-92.714598, 40.589564],\n\t\t\t\t\t\t[-92.667478, 40.408258],\n\t\t\t\t\t\t[-92.684167, 40.343466],\n\t\t\t\t\t\t[-92.855629, 40.342736],\n\t\t\t\t\t\t[-92.855313, 40.385894],\n\t\t\t\t\t\t[-93.366935, 40.382999]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29175\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"175\",\n\t\t\t\t\"NAME\": \"Randolph\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 482.684000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.692149, 39.610265],\n\t\t\t\t\t\t[-92.300871, 39.605348],\n\t\t\t\t\t\t[-92.310028, 39.347795],\n\t\t\t\t\t\t[-92.313836, 39.249986],\n\t\t\t\t\t\t[-92.314471, 39.246454],\n\t\t\t\t\t\t[-92.430229, 39.248795],\n\t\t\t\t\t\t[-92.707367, 39.321614],\n\t\t\t\t\t\t[-92.696592, 39.610371],\n\t\t\t\t\t\t[-92.692149, 39.610265]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29177\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"177\",\n\t\t\t\t\"NAME\": \"Ray\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 568.805000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.758463, 39.207021],\n\t\t\t\t\t\t[-93.840147, 39.215467],\n\t\t\t\t\t\t[-93.988892, 39.152786],\n\t\t\t\t\t\t[-94.104823, 39.143507],\n\t\t\t\t\t\t[-94.212515, 39.207086],\n\t\t\t\t\t\t[-94.210642, 39.454682],\n\t\t\t\t\t\t[-94.210830, 39.456337],\n\t\t\t\t\t\t[-94.208423, 39.527200],\n\t\t\t\t\t\t[-93.759183, 39.524558],\n\t\t\t\t\t\t[-93.758651, 39.209623],\n\t\t\t\t\t\t[-93.758463, 39.207021]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29181\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"181\",\n\t\t\t\t\"NAME\": \"Ripley\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 629.537000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.662617, 36.811453],\n\t\t\t\t\t\t[-90.627517, 36.810954],\n\t\t\t\t\t\t[-90.628387, 36.679544],\n\t\t\t\t\t\t[-90.592166, 36.679368],\n\t\t\t\t\t\t[-90.576180, 36.498446],\n\t\t\t\t\t\t[-90.585342, 36.498497],\n\t\t\t\t\t\t[-90.594300, 36.498459],\n\t\t\t\t\t\t[-90.605450, 36.498459],\n\t\t\t\t\t\t[-90.612554, 36.498559],\n\t\t\t\t\t\t[-90.648494, 36.498447],\n\t\t\t\t\t\t[-90.653246, 36.498488],\n\t\t\t\t\t\t[-90.693005, 36.498510],\n\t\t\t\t\t\t[-90.711226, 36.498318],\n\t\t\t\t\t\t[-90.765672, 36.498494],\n\t\t\t\t\t\t[-90.782454, 36.498523],\n\t\t\t\t\t\t[-90.784398, 36.498524],\n\t\t\t\t\t\t[-90.850434, 36.498548],\n\t\t\t\t\t\t[-90.873775, 36.498074],\n\t\t\t\t\t\t[-90.876567, 36.498313],\n\t\t\t\t\t\t[-90.876867, 36.498423],\n\t\t\t\t\t\t[-90.879220, 36.498378],\n\t\t\t\t\t\t[-90.960648, 36.498426],\n\t\t\t\t\t\t[-90.963063, 36.498418],\n\t\t\t\t\t\t[-91.008558, 36.498270],\n\t\t\t\t\t\t[-91.017974, 36.498062],\n\t\t\t\t\t\t[-91.095880, 36.497870],\n\t\t\t\t\t\t[-91.096277, 36.497893],\n\t\t\t\t\t\t[-91.126529, 36.497712],\n\t\t\t\t\t\t[-91.115926, 36.823672],\n\t\t\t\t\t\t[-90.662617, 36.811453]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29186\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"186\",\n\t\t\t\t\"NAME\": \"Ste. Genevieve\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 499.153000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.110537, 37.671340],\n\t\t\t\t\t\t[-90.200208, 37.669628],\n\t\t\t\t\t\t[-90.459133, 37.878924],\n\t\t\t\t\t\t[-90.322870, 37.981731],\n\t\t\t\t\t\t[-90.416022, 38.042315],\n\t\t\t\t\t\t[-90.254112, 38.121990],\n\t\t\t\t\t\t[-90.243116, 38.112669],\n\t\t\t\t\t\t[-90.203847, 38.088753],\n\t\t\t\t\t\t[-90.126532, 38.041666],\n\t\t\t\t\t\t[-90.072283, 38.017001],\n\t\t\t\t\t\t[-89.997103, 37.963225],\n\t\t\t\t\t\t[-89.974918, 37.926719],\n\t\t\t\t\t\t[-89.973642, 37.917661],\n\t\t\t\t\t\t[-89.950594, 37.881526],\n\t\t\t\t\t\t[-89.938191, 37.875111],\n\t\t\t\t\t\t[-89.999768, 37.821744],\n\t\t\t\t\t\t[-90.110537, 37.671340]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29187\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"187\",\n\t\t\t\t\"NAME\": \"St. Francois\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 451.887000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.535016, 37.643641],\n\t\t\t\t\t\t[-90.647874, 37.642809],\n\t\t\t\t\t\t[-90.645135, 37.734813],\n\t\t\t\t\t\t[-90.639980, 38.076548],\n\t\t\t\t\t\t[-90.583324, 38.003499],\n\t\t\t\t\t\t[-90.416022, 38.042315],\n\t\t\t\t\t\t[-90.322870, 37.981731],\n\t\t\t\t\t\t[-90.459133, 37.878924],\n\t\t\t\t\t\t[-90.200208, 37.669628],\n\t\t\t\t\t\t[-90.110537, 37.671340],\n\t\t\t\t\t\t[-90.146778, 37.641618],\n\t\t\t\t\t\t[-90.516756, 37.642665],\n\t\t\t\t\t\t[-90.535016, 37.643641]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29197\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"197\",\n\t\t\t\t\"NAME\": \"Schuyler\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 307.303000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.349975, 40.346505],\n\t\t\t\t\t\t[-92.684167, 40.343466],\n\t\t\t\t\t\t[-92.667478, 40.408258],\n\t\t\t\t\t\t[-92.714598, 40.589564],\n\t\t\t\t\t\t[-92.689854, 40.589884],\n\t\t\t\t\t\t[-92.686693, 40.589809],\n\t\t\t\t\t\t[-92.639223, 40.590825],\n\t\t\t\t\t\t[-92.637898, 40.590853],\n\t\t\t\t\t\t[-92.580278, 40.592151],\n\t\t\t\t\t\t[-92.484588, 40.594924],\n\t\t\t\t\t\t[-92.482394, 40.594894],\n\t\t\t\t\t\t[-92.481692, 40.594941],\n\t\t\t\t\t\t[-92.461609, 40.595355],\n\t\t\t\t\t\t[-92.453745, 40.595288],\n\t\t\t\t\t\t[-92.379691, 40.596509],\n\t\t\t\t\t\t[-92.350807, 40.597273],\n\t\t\t\t\t\t[-92.349975, 40.346505]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29203\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"203\",\n\t\t\t\t\"NAME\": \"Shannon\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1003.820000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.222830, 36.883857],\n\t\t\t\t\t\t[-91.250129, 36.885150],\n\t\t\t\t\t\t[-91.658111, 36.888724],\n\t\t\t\t\t\t[-91.657814, 36.889648],\n\t\t\t\t\t\t[-91.655607, 37.048925],\n\t\t\t\t\t\t[-91.646626, 37.422731],\n\t\t\t\t\t\t[-91.211863, 37.415277],\n\t\t\t\t\t\t[-91.175405, 37.414805],\n\t\t\t\t\t\t[-91.159323, 37.254936],\n\t\t\t\t\t\t[-91.034346, 37.169343],\n\t\t\t\t\t\t[-91.017766, 37.095677],\n\t\t\t\t\t\t[-91.217150, 37.086197],\n\t\t\t\t\t\t[-91.222830, 36.883857]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29207\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"207\",\n\t\t\t\t\"NAME\": \"Stoddard\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 823.222000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.958786, 36.629331],\n\t\t\t\t\t\t[-90.148398, 36.630656],\n\t\t\t\t\t\t[-90.140020, 36.696760],\n\t\t\t\t\t\t[-90.204205, 36.772262],\n\t\t\t\t\t\t[-90.258563, 36.922043],\n\t\t\t\t\t\t[-90.111247, 37.041205],\n\t\t\t\t\t\t[-89.959196, 37.054380],\n\t\t\t\t\t\t[-89.959576, 37.127353],\n\t\t\t\t\t\t[-89.866627, 37.126227],\n\t\t\t\t\t\t[-89.765211, 37.126066],\n\t\t\t\t\t\t[-89.786819, 37.087824],\n\t\t\t\t\t\t[-89.686620, 36.928293],\n\t\t\t\t\t\t[-89.691603, 36.859517],\n\t\t\t\t\t\t[-89.700952, 36.627453],\n\t\t\t\t\t\t[-89.958786, 36.629331]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29213\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"213\",\n\t\t\t\t\"NAME\": \"Taney\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 632.436000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.146854, 36.813820],\n\t\t\t\t\t\t[-92.909336, 36.809178],\n\t\t\t\t\t\t[-92.764869, 36.806097],\n\t\t\t\t\t\t[-92.772341, 36.497772],\n\t\t\t\t\t\t[-92.838621, 36.498079],\n\t\t\t\t\t\t[-92.838876, 36.498033],\n\t\t\t\t\t\t[-92.854049, 36.497983],\n\t\t\t\t\t\t[-92.894001, 36.497850],\n\t\t\t\t\t\t[-92.894336, 36.497867],\n\t\t\t\t\t\t[-93.013742, 36.498130],\n\t\t\t\t\t\t[-93.068455, 36.498250],\n\t\t\t\t\t\t[-93.069512, 36.498242],\n\t\t\t\t\t\t[-93.087635, 36.498239],\n\t\t\t\t\t\t[-93.088988, 36.498184],\n\t\t\t\t\t\t[-93.296117, 36.498389],\n\t\t\t\t\t\t[-93.315324, 36.498408],\n\t\t\t\t\t\t[-93.304359, 36.816866],\n\t\t\t\t\t\t[-93.146854, 36.813820]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29219\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"219\",\n\t\t\t\t\"NAME\": \"Warren\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 428.601000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.962200, 38.774200],\n\t\t\t\t\t\t[-90.964461, 38.547545],\n\t\t\t\t\t\t[-91.077324, 38.609343],\n\t\t\t\t\t\t[-91.226547, 38.621567],\n\t\t\t\t\t\t[-91.313093, 38.706715],\n\t\t\t\t\t\t[-91.369192, 38.699324],\n\t\t\t\t\t\t[-91.395134, 38.707990],\n\t\t\t\t\t\t[-91.418637, 38.709778],\n\t\t\t\t\t\t[-91.415832, 38.845300],\n\t\t\t\t\t\t[-91.264927, 38.843833],\n\t\t\t\t\t\t[-91.264287, 38.992762],\n\t\t\t\t\t\t[-91.188390, 38.992141],\n\t\t\t\t\t\t[-91.189348, 38.932151],\n\t\t\t\t\t\t[-91.110187, 38.931901],\n\t\t\t\t\t\t[-91.111251, 38.872709],\n\t\t\t\t\t\t[-90.958536, 38.870865],\n\t\t\t\t\t\t[-90.962200, 38.774200]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29225\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"225\",\n\t\t\t\t\"NAME\": \"Webster\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 592.562000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.065274, 37.088694],\n\t\t\t\t\t\t[-93.073380, 37.414989],\n\t\t\t\t\t\t[-93.071584, 37.487444],\n\t\t\t\t\t\t[-92.853481, 37.483970],\n\t\t\t\t\t\t[-92.852107, 37.484083],\n\t\t\t\t\t\t[-92.686671, 37.481545],\n\t\t\t\t\t\t[-92.685867, 37.067051],\n\t\t\t\t\t\t[-92.903273, 37.070651],\n\t\t\t\t\t\t[-93.065274, 37.088694]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29510\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"510\",\n\t\t\t\t\"NAME\": \"St. Louis\",\n\t\t\t\t\"LSAD\": \"city\",\n\t\t\t\t\"CENSUSAREA\": 61.909000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.301911, 38.655652],\n\t\t\t\t\t\t[-90.251709, 38.718948],\n\t\t\t\t\t\t[-90.165082, 38.770618],\n\t\t\t\t\t\t[-90.171309, 38.766549],\n\t\t\t\t\t\t[-90.209910, 38.726050],\n\t\t\t\t\t\t[-90.212010, 38.711750],\n\t\t\t\t\t\t[-90.209210, 38.702750],\n\t\t\t\t\t\t[-90.202210, 38.693450],\n\t\t\t\t\t\t[-90.195210, 38.687550],\n\t\t\t\t\t\t[-90.186410, 38.674750],\n\t\t\t\t\t\t[-90.181399, 38.660378],\n\t\t\t\t\t\t[-90.181110, 38.659550],\n\t\t\t\t\t\t[-90.177710, 38.642750],\n\t\t\t\t\t\t[-90.178010, 38.633750],\n\t\t\t\t\t\t[-90.182625, 38.617989],\n\t\t\t\t\t\t[-90.184510, 38.611551],\n\t\t\t\t\t\t[-90.196011, 38.594451],\n\t\t\t\t\t\t[-90.202511, 38.588651],\n\t\t\t\t\t\t[-90.224512, 38.574651],\n\t\t\t\t\t\t[-90.248913, 38.544752],\n\t\t\t\t\t\t[-90.257773, 38.532008],\n\t\t\t\t\t\t[-90.306433, 38.633590],\n\t\t\t\t\t\t[-90.304812, 38.642444],\n\t\t\t\t\t\t[-90.303600, 38.645003],\n\t\t\t\t\t\t[-90.301911, 38.655652]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30003\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"003\",\n\t\t\t\t\"NAME\": \"Big Horn\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 4995.462000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-106.888773, 44.995885],\n\t\t\t\t\t\t[-106.892875, 44.995947],\n\t\t\t\t\t\t[-107.080624, 44.996791],\n\t\t\t\t\t\t[-107.134180, 45.000109],\n\t\t\t\t\t\t[-107.607824, 45.000929],\n\t\t\t\t\t\t[-107.608854, 45.000860],\n\t\t\t\t\t\t[-107.911495, 45.000948],\n\t\t\t\t\t\t[-108.125666, 45.001011],\n\t\t\t\t\t\t[-108.249345, 44.999458],\n\t\t\t\t\t\t[-108.258630, 45.007576],\n\t\t\t\t\t\t[-108.127979, 45.217911],\n\t\t\t\t\t\t[-108.699552, 45.217952],\n\t\t\t\t\t\t[-108.682105, 45.433093],\n\t\t\t\t\t\t[-108.644971, 45.464091],\n\t\t\t\t\t\t[-108.316374, 45.460509],\n\t\t\t\t\t\t[-108.316249, 45.489459],\n\t\t\t\t\t\t[-108.193191, 45.489396],\n\t\t\t\t\t\t[-108.193125, 45.518413],\n\t\t\t\t\t\t[-108.069703, 45.518246],\n\t\t\t\t\t\t[-108.069044, 45.783599],\n\t\t\t\t\t\t[-108.047410, 45.899316],\n\t\t\t\t\t\t[-107.881553, 45.898970],\n\t\t\t\t\t\t[-107.798047, 45.985681],\n\t\t\t\t\t\t[-107.674438, 45.985685],\n\t\t\t\t\t\t[-107.674261, 46.043627],\n\t\t\t\t\t\t[-107.511497, 46.043257],\n\t\t\t\t\t\t[-107.424889, 46.043396],\n\t\t\t\t\t\t[-107.424923, 45.956786],\n\t\t\t\t\t\t[-107.176311, 45.956788],\n\t\t\t\t\t\t[-107.176433, 45.913323],\n\t\t\t\t\t\t[-107.051803, 45.913788],\n\t\t\t\t\t\t[-107.052103, 45.870088],\n\t\t\t\t\t\t[-106.939095, 45.870089],\n\t\t\t\t\t\t[-106.877217, 45.831714],\n\t\t\t\t\t\t[-106.912494, 45.788189],\n\t\t\t\t\t\t[-106.912997, 45.684087],\n\t\t\t\t\t\t[-106.727488, 45.676491],\n\t\t\t\t\t\t[-106.768014, 45.179677],\n\t\t\t\t\t\t[-106.279682, 45.179892],\n\t\t\t\t\t\t[-106.263682, 45.179792],\n\t\t\t\t\t\t[-106.263586, 44.993788],\n\t\t\t\t\t\t[-106.888773, 44.995885]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37159\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"159\",\n\t\t\t\t\"NAME\": \"Rowan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 511.374000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.757239, 35.616265],\n\t\t\t\t\t\t[-80.771518, 35.674926],\n\t\t\t\t\t\t[-80.707670, 35.852913],\n\t\t\t\t\t\t[-80.631796, 35.845784],\n\t\t\t\t\t\t[-80.458904, 35.742811],\n\t\t\t\t\t\t[-80.413844, 35.722471],\n\t\t\t\t\t\t[-80.391729, 35.722258],\n\t\t\t\t\t\t[-80.369852, 35.716236],\n\t\t\t\t\t\t[-80.339465, 35.721385],\n\t\t\t\t\t\t[-80.332228, 35.719047],\n\t\t\t\t\t\t[-80.326578, 35.675475],\n\t\t\t\t\t\t[-80.208176, 35.580401],\n\t\t\t\t\t\t[-80.182682, 35.504335],\n\t\t\t\t\t\t[-80.295236, 35.502947],\n\t\t\t\t\t\t[-80.562402, 35.503110],\n\t\t\t\t\t\t[-80.645902, 35.505913],\n\t\t\t\t\t\t[-80.649002, 35.505915],\n\t\t\t\t\t\t[-80.650431, 35.506094],\n\t\t\t\t\t\t[-80.657612, 35.506059],\n\t\t\t\t\t\t[-80.688362, 35.506561],\n\t\t\t\t\t\t[-80.737069, 35.507163],\n\t\t\t\t\t\t[-80.757239, 35.616265]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37163\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"163\",\n\t\t\t\t\"NAME\": \"Sampson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 944.740000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.391146, 35.262632],\n\t\t\t\t\t\t[-78.332587, 35.279446],\n\t\t\t\t\t\t[-78.304662, 35.286097],\n\t\t\t\t\t\t[-78.163539, 35.189370],\n\t\t\t\t\t\t[-78.164810, 35.179145],\n\t\t\t\t\t\t[-78.147081, 34.902448],\n\t\t\t\t\t\t[-78.200473, 34.737301],\n\t\t\t\t\t\t[-78.113208, 34.721969],\n\t\t\t\t\t\t[-78.254556, 34.553963],\n\t\t\t\t\t\t[-78.494610, 34.856464],\n\t\t\t\t\t\t[-78.495410, 34.857678],\n\t\t\t\t\t\t[-78.494838, 34.858841],\n\t\t\t\t\t\t[-78.496564, 34.859471],\n\t\t\t\t\t\t[-78.498938, 34.859302],\n\t\t\t\t\t\t[-78.502189, 34.861549],\n\t\t\t\t\t\t[-78.502835, 34.864663],\n\t\t\t\t\t\t[-78.506006, 34.865179],\n\t\t\t\t\t\t[-78.506940, 34.866669],\n\t\t\t\t\t\t[-78.511755, 34.867961],\n\t\t\t\t\t\t[-78.513300, 34.869287],\n\t\t\t\t\t\t[-78.513379, 34.873385],\n\t\t\t\t\t\t[-78.514758, 34.873734],\n\t\t\t\t\t\t[-78.515010, 34.875567],\n\t\t\t\t\t\t[-78.514079, 34.875956],\n\t\t\t\t\t\t[-78.512906, 34.880906],\n\t\t\t\t\t\t[-78.514457, 34.880927],\n\t\t\t\t\t\t[-78.513870, 34.881916],\n\t\t\t\t\t\t[-78.515626, 34.881958],\n\t\t\t\t\t\t[-78.515661, 34.883000],\n\t\t\t\t\t\t[-78.518023, 34.883846],\n\t\t\t\t\t\t[-78.519742, 34.883700],\n\t\t\t\t\t\t[-78.519347, 34.882653],\n\t\t\t\t\t\t[-78.521229, 34.882736],\n\t\t\t\t\t\t[-78.522724, 34.883550],\n\t\t\t\t\t\t[-78.647522, 34.994820],\n\t\t\t\t\t\t[-78.670100, 35.092964],\n\t\t\t\t\t\t[-78.617079, 35.245706],\n\t\t\t\t\t\t[-78.541262, 35.315116],\n\t\t\t\t\t\t[-78.491383, 35.263362],\n\t\t\t\t\t\t[-78.391146, 35.262632]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37169\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"169\",\n\t\t\t\t\"NAME\": \"Stokes\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 448.857000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.053455, 36.542623],\n\t\t\t\t\t\t[-80.027269, 36.542495],\n\t\t\t\t\t\t[-80.033218, 36.344867],\n\t\t\t\t\t\t[-80.035540, 36.257351],\n\t\t\t\t\t\t[-80.451954, 36.261635],\n\t\t\t\t\t\t[-80.440100, 36.550630],\n\t\t\t\t\t\t[-80.432628, 36.550302],\n\t\t\t\t\t\t[-80.431605, 36.550219],\n\t\t\t\t\t\t[-80.228263, 36.543867],\n\t\t\t\t\t\t[-80.225408, 36.543748],\n\t\t\t\t\t\t[-80.171636, 36.543219],\n\t\t\t\t\t\t[-80.169535, 36.543190],\n\t\t\t\t\t\t[-80.053455, 36.542623]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37175\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"175\",\n\t\t\t\t\"NAME\": \"Transylvania\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 378.528000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.764464, 35.068177],\n\t\t\t\t\t\t[-82.781973, 35.066817],\n\t\t\t\t\t\t[-82.780546, 35.069043],\n\t\t\t\t\t\t[-82.779116, 35.073674],\n\t\t\t\t\t\t[-82.777407, 35.076885],\n\t\t\t\t\t\t[-82.781062, 35.084492],\n\t\t\t\t\t\t[-82.781130, 35.084585],\n\t\t\t\t\t\t[-82.897499, 35.056021],\n\t\t\t\t\t\t[-83.008447, 35.026974],\n\t\t\t\t\t\t[-83.055352, 35.053865],\n\t\t\t\t\t\t[-82.983329, 35.131904],\n\t\t\t\t\t\t[-82.920819, 35.291868],\n\t\t\t\t\t\t[-82.832001, 35.318434],\n\t\t\t\t\t\t[-82.745209, 35.422924],\n\t\t\t\t\t\t[-82.619513, 35.303758],\n\t\t\t\t\t\t[-82.574406, 35.144216],\n\t\t\t\t\t\t[-82.580127, 35.141963],\n\t\t\t\t\t\t[-82.582264, 35.142268],\n\t\t\t\t\t\t[-82.686496, 35.121822],\n\t\t\t\t\t\t[-82.686738, 35.119790],\n\t\t\t\t\t\t[-82.764464, 35.068177]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39061\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"061\",\n\t\t\t\t\"NAME\": \"Hamilton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 405.910000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.510057, 39.093593],\n\t\t\t\t\t\t[-84.603444, 39.073699],\n\t\t\t\t\t\t[-84.620112, 39.073457],\n\t\t\t\t\t\t[-84.623732, 39.074427],\n\t\t\t\t\t\t[-84.632446, 39.076760],\n\t\t\t\t\t\t[-84.684847, 39.100459],\n\t\t\t\t\t\t[-84.689747, 39.104159],\n\t\t\t\t\t\t[-84.718548, 39.137059],\n\t\t\t\t\t\t[-84.732048, 39.144458],\n\t\t\t\t\t\t[-84.744149, 39.147458],\n\t\t\t\t\t\t[-84.754449, 39.146658],\n\t\t\t\t\t\t[-84.766749, 39.138558],\n\t\t\t\t\t\t[-84.787680, 39.115297],\n\t\t\t\t\t\t[-84.820157, 39.105480],\n\t\t\t\t\t\t[-84.819985, 39.149081],\n\t\t\t\t\t\t[-84.819826, 39.156504],\n\t\t\t\t\t\t[-84.819802, 39.157613],\n\t\t\t\t\t\t[-84.819813, 39.244334],\n\t\t\t\t\t\t[-84.819801, 39.247806],\n\t\t\t\t\t\t[-84.819859, 39.251018],\n\t\t\t\t\t\t[-84.819633, 39.261855],\n\t\t\t\t\t\t[-84.819622, 39.271590],\n\t\t\t\t\t\t[-84.819451, 39.305152],\n\t\t\t\t\t\t[-84.819451, 39.305153],\n\t\t\t\t\t\t[-84.630992, 39.311942],\n\t\t\t\t\t\t[-84.446960, 39.300808],\n\t\t\t\t\t\t[-84.428363, 39.298659],\n\t\t\t\t\t\t[-84.391125, 39.297585],\n\t\t\t\t\t\t[-84.353209, 39.292287],\n\t\t\t\t\t\t[-84.259431, 39.270796],\n\t\t\t\t\t\t[-84.316698, 39.226944],\n\t\t\t\t\t\t[-84.319936, 39.022081],\n\t\t\t\t\t\t[-84.326539, 39.027463],\n\t\t\t\t\t\t[-84.432841, 39.094261],\n\t\t\t\t\t\t[-84.493743, 39.102460],\n\t\t\t\t\t\t[-84.502062, 39.096641],\n\t\t\t\t\t\t[-84.506082, 39.095081],\n\t\t\t\t\t\t[-84.509743, 39.093660],\n\t\t\t\t\t\t[-84.510057, 39.093593]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39071\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"071\",\n\t\t\t\t\"NAME\": \"Highland\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 553.084000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.372714, 39.377416],\n\t\t\t\t\t\t[-83.393511, 39.267272],\n\t\t\t\t\t\t[-83.353531, 39.197585],\n\t\t\t\t\t\t[-83.385637, 39.055197],\n\t\t\t\t\t\t[-83.611592, 39.018890],\n\t\t\t\t\t\t[-83.673018, 39.020430],\n\t\t\t\t\t\t[-83.872214, 39.021304],\n\t\t\t\t\t\t[-83.865679, 39.247333],\n\t\t\t\t\t\t[-83.784793, 39.262888],\n\t\t\t\t\t\t[-83.590878, 39.378736],\n\t\t\t\t\t\t[-83.375389, 39.377521],\n\t\t\t\t\t\t[-83.372714, 39.377416]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39077\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"077\",\n\t\t\t\t\"NAME\": \"Huron\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 491.495000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.829512, 40.996624],\n\t\t\t\t\t\t[-82.840087, 41.255337],\n\t\t\t\t\t\t[-82.841475, 41.290023],\n\t\t\t\t\t\t[-82.342314, 41.283554],\n\t\t\t\t\t\t[-82.336496, 41.065761],\n\t\t\t\t\t\t[-82.436914, 41.065371],\n\t\t\t\t\t\t[-82.432852, 40.992944],\n\t\t\t\t\t\t[-82.724792, 40.995638],\n\t\t\t\t\t\t[-82.829512, 40.996624]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39081\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"081\",\n\t\t\t\t\"NAME\": \"Jefferson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 408.329000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.617346, 40.396004],\n\t\t\t\t\t\t[-80.619196, 40.381768],\n\t\t\t\t\t\t[-80.609313, 40.360468],\n\t\t\t\t\t\t[-80.599895, 40.317669],\n\t\t\t\t\t\t[-80.602895, 40.307069],\n\t\t\t\t\t\t[-80.616696, 40.280270],\n\t\t\t\t\t\t[-80.637198, 40.255070],\n\t\t\t\t\t\t[-80.644598, 40.251270],\n\t\t\t\t\t\t[-80.652098, 40.244970],\n\t\t\t\t\t\t[-80.685391, 40.187642],\n\t\t\t\t\t\t[-80.703052, 40.157231],\n\t\t\t\t\t\t[-80.882892, 40.159495],\n\t\t\t\t\t\t[-80.865504, 40.422929],\n\t\t\t\t\t\t[-80.941911, 40.424700],\n\t\t\t\t\t\t[-80.920920, 40.556315],\n\t\t\t\t\t\t[-80.861994, 40.599404],\n\t\t\t\t\t\t[-80.667957, 40.582496],\n\t\t\t\t\t\t[-80.666917, 40.573664],\n\t\t\t\t\t\t[-80.610259, 40.490962],\n\t\t\t\t\t\t[-80.599194, 40.482566],\n\t\t\t\t\t\t[-80.612295, 40.434867],\n\t\t\t\t\t\t[-80.617346, 40.396004]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39087\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"087\",\n\t\t\t\t\"NAME\": \"Lawrence\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 453.371000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.506670, 38.410092],\n\t\t\t\t\t\t[-82.520178, 38.407582],\n\t\t\t\t\t\t[-82.560664, 38.404338],\n\t\t\t\t\t\t[-82.593673, 38.421809],\n\t\t\t\t\t\t[-82.665485, 38.505734],\n\t\t\t\t\t\t[-82.665548, 38.505808],\n\t\t\t\t\t\t[-82.690509, 38.536576],\n\t\t\t\t\t\t[-82.696621, 38.542112],\n\t\t\t\t\t\t[-82.724846, 38.557600],\n\t\t\t\t\t\t[-82.730958, 38.559264],\n\t\t\t\t\t\t[-82.789776, 38.559951],\n\t\t\t\t\t\t[-82.800112, 38.563183],\n\t\t\t\t\t\t[-82.816012, 38.570733],\n\t\t\t\t\t\t[-82.740383, 38.597167],\n\t\t\t\t\t\t[-82.763895, 38.679974],\n\t\t\t\t\t\t[-82.706823, 38.677495],\n\t\t\t\t\t\t[-82.650039, 38.849073],\n\t\t\t\t\t\t[-82.626045, 38.847647],\n\t\t\t\t\t\t[-82.625022, 38.847540],\n\t\t\t\t\t\t[-82.575583, 38.844478],\n\t\t\t\t\t\t[-82.582683, 38.779077],\n\t\t\t\t\t\t[-82.483579, 38.772278],\n\t\t\t\t\t\t[-82.472478, 38.682279],\n\t\t\t\t\t\t[-82.354468, 38.676070],\n\t\t\t\t\t\t[-82.361674, 38.585182],\n\t\t\t\t\t\t[-82.287102, 38.582588],\n\t\t\t\t\t\t[-82.291271, 38.578983],\n\t\t\t\t\t\t[-82.293871, 38.572683],\n\t\t\t\t\t\t[-82.293271, 38.560283],\n\t\t\t\t\t\t[-82.295571, 38.539783],\n\t\t\t\t\t\t[-82.313935, 38.468084],\n\t\t\t\t\t\t[-82.320223, 38.454516],\n\t\t\t\t\t\t[-82.323999, 38.449268],\n\t\t\t\t\t\t[-82.330335, 38.444500],\n\t\t\t\t\t\t[-82.340640, 38.440948],\n\t\t\t\t\t\t[-82.506670, 38.410092]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39093\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"093\",\n\t\t\t\t\"NAME\": \"Lorain\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 491.101000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.968130, 41.506422],\n\t\t\t\t\t\t[-81.971262, 41.351268],\n\t\t\t\t\t\t[-81.877066, 41.343557],\n\t\t\t\t\t\t[-81.878053, 41.275044],\n\t\t\t\t\t\t[-81.897853, 41.274916],\n\t\t\t\t\t\t[-81.906227, 41.275392],\n\t\t\t\t\t\t[-81.914792, 41.275469],\n\t\t\t\t\t\t[-81.920513, 41.275379],\n\t\t\t\t\t\t[-81.927005, 41.274818],\n\t\t\t\t\t\t[-81.972485, 41.274829],\n\t\t\t\t\t\t[-81.973895, 41.199831],\n\t\t\t\t\t\t[-82.072465, 41.199850],\n\t\t\t\t\t\t[-82.074266, 41.136456],\n\t\t\t\t\t\t[-82.169875, 41.137102],\n\t\t\t\t\t\t[-82.171492, 41.063537],\n\t\t\t\t\t\t[-82.336496, 41.065761],\n\t\t\t\t\t\t[-82.342314, 41.283554],\n\t\t\t\t\t\t[-82.348076, 41.428431],\n\t\t\t\t\t\t[-82.334182, 41.430243],\n\t\t\t\t\t\t[-82.291580, 41.428442],\n\t\t\t\t\t\t[-82.283488, 41.429283],\n\t\t\t\t\t\t[-82.268479, 41.430842],\n\t\t\t\t\t\t[-82.254678, 41.434441],\n\t\t\t\t\t\t[-82.193375, 41.464540],\n\t\t\t\t\t\t[-82.188850, 41.468097],\n\t\t\t\t\t\t[-82.186174, 41.473440],\n\t\t\t\t\t\t[-82.184774, 41.474040],\n\t\t\t\t\t\t[-82.181598, 41.471634],\n\t\t\t\t\t\t[-82.165373, 41.474440],\n\t\t\t\t\t\t[-82.094169, 41.495039],\n\t\t\t\t\t\t[-82.011966, 41.515639],\n\t\t\t\t\t\t[-81.994565, 41.514440],\n\t\t\t\t\t\t[-81.968130, 41.506422]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39099\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"099\",\n\t\t\t\t\"NAME\": \"Mahoning\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 411.623000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.519167, 41.133388],\n\t\t\t\t\t\t[-80.519167, 41.133343],\n\t\t\t\t\t\t[-80.519012, 41.125116],\n\t\t\t\t\t\t[-80.519012, 41.125093],\n\t\t\t\t\t\t[-80.519012, 41.125057],\n\t\t\t\t\t\t[-80.519056, 41.125057],\n\t\t\t\t\t\t[-80.518992, 41.115958],\n\t\t\t\t\t\t[-80.519192, 41.105358],\n\t\t\t\t\t\t[-80.519125, 41.100819],\n\t\t\t\t\t\t[-80.519092, 41.090658],\n\t\t\t\t\t\t[-80.519088, 41.082074],\n\t\t\t\t\t\t[-80.518999, 41.075014],\n\t\t\t\t\t\t[-80.518960, 41.071866],\n\t\t\t\t\t\t[-80.518928, 41.070954],\n\t\t\t\t\t\t[-80.518960, 41.061546],\n\t\t\t\t\t\t[-80.518927, 41.015387],\n\t\t\t\t\t\t[-80.518989, 40.995445],\n\t\t\t\t\t\t[-80.519000, 40.987380],\n\t\t\t\t\t\t[-80.519091, 40.921061],\n\t\t\t\t\t\t[-80.519790, 40.900761],\n\t\t\t\t\t\t[-80.519764, 40.899858],\n\t\t\t\t\t\t[-81.086679, 40.901609],\n\t\t\t\t\t\t[-81.086688, 40.931737],\n\t\t\t\t\t\t[-81.086642, 40.932189],\n\t\t\t\t\t\t[-81.086601, 40.937622],\n\t\t\t\t\t\t[-81.086918, 40.939658],\n\t\t\t\t\t\t[-81.086614, 40.940774],\n\t\t\t\t\t\t[-81.086601, 40.944758],\n\t\t\t\t\t\t[-81.086719, 40.944945],\n\t\t\t\t\t\t[-81.086919, 40.981164],\n\t\t\t\t\t\t[-81.086817, 40.988158],\n\t\t\t\t\t\t[-81.001695, 40.987783],\n\t\t\t\t\t\t[-81.002290, 41.134189],\n\t\t\t\t\t\t[-80.789472, 41.134159],\n\t\t\t\t\t\t[-80.519167, 41.133388]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39101\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"101\",\n\t\t\t\t\"NAME\": \"Marion\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 403.757000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.419836, 40.686823],\n\t\t\t\t\t\t[-83.304687, 40.702006],\n\t\t\t\t\t\t[-83.111360, 40.702915],\n\t\t\t\t\t\t[-82.858302, 40.705019],\n\t\t\t\t\t\t[-82.859753, 40.646395],\n\t\t\t\t\t\t[-82.957817, 40.645148],\n\t\t\t\t\t\t[-82.958401, 40.490664],\n\t\t\t\t\t\t[-83.020798, 40.433795],\n\t\t\t\t\t\t[-83.248595, 40.443989],\n\t\t\t\t\t\t[-83.248183, 40.507034],\n\t\t\t\t\t\t[-83.418378, 40.505232],\n\t\t\t\t\t\t[-83.415303, 40.515495],\n\t\t\t\t\t\t[-83.419836, 40.686823]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US44001\",\n\t\t\t\t\"STATE\": \"44\",\n\t\t\t\t\"COUNTY\": \"001\",\n\t\t\t\t\"NAME\": \"Bristol\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 24.164000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-71.224798, 41.710498],\n\t\t\t\t\t\t[-71.227875, 41.705498],\n\t\t\t\t\t\t[-71.240991, 41.697744],\n\t\t\t\t\t\t[-71.237635, 41.681635],\n\t\t\t\t\t\t[-71.241550, 41.667205],\n\t\t\t\t\t\t[-71.259560, 41.642595],\n\t\t\t\t\t\t[-71.267055, 41.644945],\n\t\t\t\t\t\t[-71.270075, 41.652439],\n\t\t\t\t\t\t[-71.269180, 41.654900],\n\t\t\t\t\t\t[-71.280366, 41.672575],\n\t\t\t\t\t\t[-71.287637, 41.672463],\n\t\t\t\t\t\t[-71.290546, 41.662395],\n\t\t\t\t\t\t[-71.299159, 41.649531],\n\t\t\t\t\t\t[-71.301396, 41.649978],\n\t\t\t\t\t\t[-71.303746, 41.654788],\n\t\t\t\t\t\t[-71.306095, 41.672575],\n\t\t\t\t\t\t[-71.302627, 41.681747],\n\t\t\t\t\t\t[-71.298935, 41.681524],\n\t\t\t\t\t\t[-71.293119, 41.688347],\n\t\t\t\t\t\t[-71.291217, 41.702666],\n\t\t\t\t\t\t[-71.305759, 41.718662],\n\t\t\t\t\t\t[-71.314820, 41.723808],\n\t\t\t\t\t\t[-71.342786, 41.728506],\n\t\t\t\t\t\t[-71.350057, 41.727835],\n\t\t\t\t\t\t[-71.353172, 41.725191],\n\t\t\t\t\t\t[-71.355080, 41.726962],\n\t\t\t\t\t\t[-71.364561, 41.734928],\n\t\t\t\t\t\t[-71.365207, 41.735649],\n\t\t\t\t\t\t[-71.356997, 41.741601],\n\t\t\t\t\t\t[-71.353897, 41.751301],\n\t\t\t\t\t\t[-71.317790, 41.776099],\n\t\t\t\t\t\t[-71.261392, 41.752301],\n\t\t\t\t\t\t[-71.224798, 41.710498]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US44003\",\n\t\t\t\t\"STATE\": \"44\",\n\t\t\t\t\"COUNTY\": \"003\",\n\t\t\t\t\"NAME\": \"Kent\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 168.528000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-71.789678, 41.724568],\n\t\t\t\t\t\t[-71.455342, 41.732365],\n\t\t\t\t\t\t[-71.378273, 41.755297],\n\t\t\t\t\t\t[-71.372508, 41.744727],\n\t\t\t\t\t\t[-71.365207, 41.735649],\n\t\t\t\t\t\t[-71.364561, 41.734928],\n\t\t\t\t\t\t[-71.355080, 41.726962],\n\t\t\t\t\t\t[-71.353172, 41.725191],\n\t\t\t\t\t\t[-71.353748, 41.724702],\n\t\t\t\t\t\t[-71.365717, 41.711615],\n\t\t\t\t\t\t[-71.365717, 41.694947],\n\t\t\t\t\t\t[-71.372988, 41.672575],\n\t\t\t\t\t\t[-71.377910, 41.666646],\n\t\t\t\t\t\t[-71.382049, 41.667317],\n\t\t\t\t\t\t[-71.389880, 41.671903],\n\t\t\t\t\t\t[-71.390775, 41.680629],\n\t\t\t\t\t\t[-71.389432, 41.683425],\n\t\t\t\t\t\t[-71.390551, 41.684096],\n\t\t\t\t\t\t[-71.418069, 41.684208],\n\t\t\t\t\t\t[-71.441336, 41.686446],\n\t\t\t\t\t\t[-71.443082, 41.688303],\n\t\t\t\t\t\t[-71.441896, 41.690025],\n\t\t\t\t\t\t[-71.445923, 41.691144],\n\t\t\t\t\t\t[-71.449318, 41.687401],\n\t\t\t\t\t\t[-71.444468, 41.664409],\n\t\t\t\t\t\t[-71.430038, 41.667541],\n\t\t\t\t\t\t[-71.425452, 41.670785],\n\t\t\t\t\t\t[-71.409302, 41.662643],\n\t\t\t\t\t\t[-71.408636, 41.653819],\n\t\t\t\t\t\t[-71.484406, 41.602769],\n\t\t\t\t\t\t[-71.789359, 41.596852],\n\t\t\t\t\t\t[-71.789356, 41.596910],\n\t\t\t\t\t\t[-71.789465, 41.640017],\n\t\t\t\t\t\t[-71.789678, 41.724568]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US44005\",\n\t\t\t\t\"STATE\": \"44\",\n\t\t\t\t\"COUNTY\": \"005\",\n\t\t\t\t\"NAME\": \"Newport\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 102.386000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-71.383586, 41.464782],\n\t\t\t\t\t\t\t[-71.389284, 41.460605],\n\t\t\t\t\t\t\t[-71.390275, 41.455043],\n\t\t\t\t\t\t\t[-71.399568, 41.448596],\n\t\t\t\t\t\t\t[-71.400560, 41.460940],\n\t\t\t\t\t\t\t[-71.395927, 41.492215],\n\t\t\t\t\t\t\t[-71.386511, 41.493071],\n\t\t\t\t\t\t\t[-71.378914, 41.504948],\n\t\t\t\t\t\t\t[-71.391005, 41.514578],\n\t\t\t\t\t\t\t[-71.392137, 41.524468],\n\t\t\t\t\t\t\t[-71.384478, 41.556736],\n\t\t\t\t\t\t\t[-71.379021, 41.567772],\n\t\t\t\t\t\t\t[-71.373618, 41.573214],\n\t\t\t\t\t\t\t[-71.370194, 41.573963],\n\t\t\t\t\t\t\t[-71.363560, 41.570860],\n\t\t\t\t\t\t\t[-71.359868, 41.556308],\n\t\t\t\t\t\t\t[-71.363292, 41.501952],\n\t\t\t\t\t\t\t[-71.360403, 41.483121],\n\t\t\t\t\t\t\t[-71.380947, 41.474561],\n\t\t\t\t\t\t\t[-71.383586, 41.464782]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-71.326769, 41.491286],\n\t\t\t\t\t\t\t[-71.325365, 41.487601],\n\t\t\t\t\t\t\t[-71.327822, 41.482985],\n\t\t\t\t\t\t\t[-71.343013, 41.495615],\n\t\t\t\t\t\t\t[-71.341122, 41.498598],\n\t\t\t\t\t\t\t[-71.326769, 41.491286]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-71.331200, 41.580318],\n\t\t\t\t\t\t\t[-71.335949, 41.585898],\n\t\t\t\t\t\t\t[-71.337048, 41.594688],\n\t\t\t\t\t\t\t[-71.333751, 41.605859],\n\t\t\t\t\t\t\t[-71.329559, 41.609097],\n\t\t\t\t\t\t\t[-71.326609, 41.616114],\n\t\t\t\t\t\t\t[-71.325877, 41.623988],\n\t\t\t\t\t\t\t[-71.333305, 41.629536],\n\t\t\t\t\t\t\t[-71.346570, 41.632229],\n\t\t\t\t\t\t\t[-71.362869, 41.651457],\n\t\t\t\t\t\t\t[-71.366165, 41.660980],\n\t\t\t\t\t\t\t[-71.348402, 41.663727],\n\t\t\t\t\t\t\t[-71.338696, 41.658782],\n\t\t\t\t\t\t\t[-71.336182, 41.647961],\n\t\t\t\t\t\t\t[-71.337048, 41.646146],\n\t\t\t\t\t\t\t[-71.342514, 41.644791],\n\t\t\t\t\t\t\t[-71.343666, 41.639900],\n\t\t\t\t\t\t\t[-71.330711, 41.632992],\n\t\t\t\t\t\t\t[-71.314889, 41.630398],\n\t\t\t\t\t\t\t[-71.305550, 41.622523],\n\t\t\t\t\t\t\t[-71.303352, 41.606591],\n\t\t\t\t\t\t\t[-71.307381, 41.597984],\n\t\t\t\t\t\t\t[-71.317474, 41.583187],\n\t\t\t\t\t\t\t[-71.326103, 41.578583],\n\t\t\t\t\t\t\t[-71.331200, 41.580318]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-71.281571, 41.648207],\n\t\t\t\t\t\t\t[-71.278171, 41.647309],\n\t\t\t\t\t\t\t[-71.274315, 41.638125],\n\t\t\t\t\t\t\t[-71.283791, 41.637797],\n\t\t\t\t\t\t\t[-71.286755, 41.642725],\n\t\t\t\t\t\t\t[-71.283005, 41.644434],\n\t\t\t\t\t\t\t[-71.281571, 41.648207]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-71.120570, 41.497448],\n\t\t\t\t\t\t\t[-71.136867, 41.493942],\n\t\t\t\t\t\t\t[-71.141093, 41.489937],\n\t\t\t\t\t\t\t[-71.140224, 41.485855],\n\t\t\t\t\t\t\t[-71.167345, 41.471405],\n\t\t\t\t\t\t\t[-71.170131, 41.463974],\n\t\t\t\t\t\t\t[-71.193020, 41.457931],\n\t\t\t\t\t\t\t[-71.194967, 41.459037],\n\t\t\t\t\t\t\t[-71.196857, 41.461116],\n\t\t\t\t\t\t\t[-71.196607, 41.464756],\n\t\t\t\t\t\t\t[-71.190016, 41.478275],\n\t\t\t\t\t\t\t[-71.190167, 41.484285],\n\t\t\t\t\t\t\t[-71.199390, 41.491769],\n\t\t\t\t\t\t\t[-71.199692, 41.495511],\n\t\t\t\t\t\t\t[-71.206382, 41.499215],\n\t\t\t\t\t\t\t[-71.200788, 41.514371],\n\t\t\t\t\t\t\t[-71.213563, 41.545818],\n\t\t\t\t\t\t\t[-71.208650, 41.571028],\n\t\t\t\t\t\t\t[-71.207780, 41.600660],\n\t\t\t\t\t\t\t[-71.212656, 41.610072],\n\t\t\t\t\t\t\t[-71.212417, 41.618290],\n\t\t\t\t\t\t\t[-71.212004, 41.622990],\n\t\t\t\t\t\t\t[-71.216160, 41.625490],\n\t\t\t\t\t\t\t[-71.240709, 41.619225],\n\t\t\t\t\t\t\t[-71.243600, 41.587508],\n\t\t\t\t\t\t\t[-71.236130, 41.574767],\n\t\t\t\t\t\t\t[-71.236642, 41.535852],\n\t\t\t\t\t\t\t[-71.234775, 41.532538],\n\t\t\t\t\t\t\t[-71.227989, 41.528297],\n\t\t\t\t\t\t\t[-71.229444, 41.521544],\n\t\t\t\t\t\t\t[-71.233056, 41.514757],\n\t\t\t\t\t\t\t[-71.233141, 41.514598],\n\t\t\t\t\t\t\t[-71.233435, 41.514045],\n\t\t\t\t\t\t\t[-71.240614, 41.500557],\n\t\t\t\t\t\t\t[-71.238586, 41.486845],\n\t\t\t\t\t\t\t[-71.237175, 41.486546],\n\t\t\t\t\t\t\t[-71.236751, 41.483369],\n\t\t\t\t\t\t\t[-71.237783, 41.481155],\n\t\t\t\t\t\t\t[-71.237902, 41.480899],\n\t\t\t\t\t\t\t[-71.239804, 41.476817],\n\t\t\t\t\t\t\t[-71.240047, 41.476296],\n\t\t\t\t\t\t\t[-71.240710, 41.474872],\n\t\t\t\t\t\t\t[-71.246703, 41.471960],\n\t\t\t\t\t\t\t[-71.246676, 41.472323],\n\t\t\t\t\t\t\t[-71.246174, 41.478917],\n\t\t\t\t\t\t\t[-71.245992, 41.481302],\n\t\t\t\t\t\t\t[-71.252692, 41.485902],\n\t\t\t\t\t\t\t[-71.264793, 41.488902],\n\t\t\t\t\t\t\t[-71.267579, 41.488755],\n\t\t\t\t\t\t\t[-71.282262, 41.487982],\n\t\t\t\t\t\t\t[-71.285639, 41.487805],\n\t\t\t\t\t\t\t[-71.295111, 41.484350],\n\t\t\t\t\t\t\t[-71.296517, 41.479829],\n\t\t\t\t\t\t\t[-71.300438, 41.467220],\n\t\t\t\t\t\t\t[-71.302583, 41.460325],\n\t\t\t\t\t\t\t[-71.302741, 41.459817],\n\t\t\t\t\t\t\t[-71.302895, 41.459323],\n\t\t\t\t\t\t\t[-71.302929, 41.459213],\n\t\t\t\t\t\t\t[-71.304247, 41.454976],\n\t\t\t\t\t\t\t[-71.304394, 41.454502],\n\t\t\t\t\t\t\t[-71.304604, 41.454391],\n\t\t\t\t\t\t\t[-71.305896, 41.453708],\n\t\t\t\t\t\t\t[-71.310357, 41.451350],\n\t\t\t\t\t\t\t[-71.310473, 41.451289],\n\t\t\t\t\t\t\t[-71.311344, 41.450829],\n\t\t\t\t\t\t\t[-71.311394, 41.450802],\n\t\t\t\t\t\t\t[-71.311404, 41.450807],\n\t\t\t\t\t\t\t[-71.312694, 41.451402],\n\t\t\t\t\t\t\t[-71.312718, 41.454597],\n\t\t\t\t\t\t\t[-71.321410, 41.455600],\n\t\t\t\t\t\t\t[-71.337377, 41.449033],\n\t\t\t\t\t\t\t[-71.337695, 41.448902],\n\t\t\t\t\t\t\t[-71.351096, 41.450802],\n\t\t\t\t\t\t\t[-71.351457, 41.451099],\n\t\t\t\t\t\t\t[-71.358166, 41.456616],\n\t\t\t\t\t\t\t[-71.358262, 41.456695],\n\t\t\t\t\t\t\t[-71.358356, 41.456772],\n\t\t\t\t\t\t\t[-71.358657, 41.457019],\n\t\t\t\t\t\t\t[-71.359015, 41.457314],\n\t\t\t\t\t\t\t[-71.359136, 41.457414],\n\t\t\t\t\t\t\t[-71.359292, 41.457542],\n\t\t\t\t\t\t\t[-71.361852, 41.459647],\n\t\t\t\t\t\t\t[-71.362201, 41.459934],\n\t\t\t\t\t\t\t[-71.362288, 41.460006],\n\t\t\t\t\t\t\t[-71.362699, 41.460343],\n\t\t\t\t\t\t\t[-71.362743, 41.460379],\n\t\t\t\t\t\t\t[-71.362736, 41.460405],\n\t\t\t\t\t\t\t[-71.362012, 41.463041],\n\t\t\t\t\t\t\t[-71.361760, 41.463955],\n\t\t\t\t\t\t\t[-71.361520, 41.464831],\n\t\t\t\t\t\t\t[-71.347070, 41.471230],\n\t\t\t\t\t\t\t[-71.335992, 41.469647],\n\t\t\t\t\t\t\t[-71.316519, 41.477560],\n\t\t\t\t\t\t\t[-71.317414, 41.488776],\n\t\t\t\t\t\t\t[-71.323125, 41.503088],\n\t\t\t\t\t\t\t[-71.327804, 41.504258],\n\t\t\t\t\t\t\t[-71.330694, 41.507699],\n\t\t\t\t\t\t\t[-71.330831, 41.518364],\n\t\t\t\t\t\t\t[-71.313079, 41.534672],\n\t\t\t\t\t\t\t[-71.310533, 41.546920],\n\t\t\t\t\t\t\t[-71.303652, 41.559925],\n\t\t\t\t\t\t\t[-71.294363, 41.571416],\n\t\t\t\t\t\t\t[-71.288376, 41.573274],\n\t\t\t\t\t\t\t[-71.285142, 41.577127],\n\t\t\t\t\t\t\t[-71.273445, 41.606990],\n\t\t\t\t\t\t\t[-71.272412, 41.615041],\n\t\t\t\t\t\t\t[-71.275234, 41.619444],\n\t\t\t\t\t\t\t[-71.271862, 41.623986],\n\t\t\t\t\t\t\t[-71.251082, 41.638780],\n\t\t\t\t\t\t\t[-71.212136, 41.641945],\n\t\t\t\t\t\t\t[-71.195640, 41.675090],\n\t\t\t\t\t\t\t[-71.194390, 41.674802],\n\t\t\t\t\t\t\t[-71.191178, 41.674216],\n\t\t\t\t\t\t\t[-71.191175, 41.674292],\n\t\t\t\t\t\t\t[-71.181290, 41.672502],\n\t\t\t\t\t\t\t[-71.175990, 41.671402],\n\t\t\t\t\t\t\t[-71.176090, 41.668502],\n\t\t\t\t\t\t\t[-71.176090, 41.668102],\n\t\t\t\t\t\t\t[-71.153989, 41.664102],\n\t\t\t\t\t\t\t[-71.145870, 41.662795],\n\t\t\t\t\t\t\t[-71.135188, 41.660502],\n\t\t\t\t\t\t\t[-71.134688, 41.660502],\n\t\t\t\t\t\t\t[-71.134478, 41.641262],\n\t\t\t\t\t\t\t[-71.134484, 41.641198],\n\t\t\t\t\t\t\t[-71.133796, 41.634090],\n\t\t\t\t\t\t\t[-71.133608, 41.632152],\n\t\t\t\t\t\t\t[-71.133353, 41.629509],\n\t\t\t\t\t\t\t[-71.120570, 41.497448]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US45001\",\n\t\t\t\t\"STATE\": \"45\",\n\t\t\t\t\"COUNTY\": \"001\",\n\t\t\t\t\"NAME\": \"Abbeville\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 490.484000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.326947, 34.064120],\n\t\t\t\t\t\t[-82.530567, 34.071925],\n\t\t\t\t\t\t[-82.597079, 34.012390],\n\t\t\t\t\t\t[-82.640701, 34.088341],\n\t\t\t\t\t\t[-82.641252, 34.088914],\n\t\t\t\t\t\t[-82.652175, 34.099704],\n\t\t\t\t\t\t[-82.654019, 34.100346],\n\t\t\t\t\t\t[-82.658561, 34.103118],\n\t\t\t\t\t\t[-82.659077, 34.103544],\n\t\t\t\t\t\t[-82.668113, 34.120160],\n\t\t\t\t\t\t[-82.677320, 34.131657],\n\t\t\t\t\t\t[-82.704140, 34.141007],\n\t\t\t\t\t\t[-82.717507, 34.150504],\n\t\t\t\t\t\t[-82.731881, 34.178363],\n\t\t\t\t\t\t[-82.741491, 34.208709],\n\t\t\t\t\t\t[-82.313996, 34.484002],\n\t\t\t\t\t\t[-82.246337, 34.409676],\n\t\t\t\t\t\t[-82.334234, 34.342630],\n\t\t\t\t\t\t[-82.247747, 34.219619],\n\t\t\t\t\t\t[-82.267184, 34.108360],\n\t\t\t\t\t\t[-82.326947, 34.064120]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US45003\",\n\t\t\t\t\"STATE\": \"45\",\n\t\t\t\t\"COUNTY\": \"003\",\n\t\t\t\t\"NAME\": \"Aiken\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1071.034000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.522124, 33.825522],\n\t\t\t\t\t\t[-81.415308, 33.732161],\n\t\t\t\t\t\t[-81.187271, 33.652937],\n\t\t\t\t\t\t[-81.373494, 33.490510],\n\t\t\t\t\t\t[-81.372931, 33.490417],\n\t\t\t\t\t\t[-81.374827, 33.489652],\n\t\t\t\t\t\t[-81.516419, 33.382239],\n\t\t\t\t\t\t[-81.757035, 33.198148],\n\t\t\t\t\t\t[-81.772251, 33.180120],\n\t\t\t\t\t\t[-81.851975, 33.247408],\n\t\t\t\t\t\t[-81.852136, 33.247544],\n\t\t\t\t\t\t[-81.902737, 33.331242],\n\t\t\t\t\t\t[-81.912572, 33.408811],\n\t\t\t\t\t\t[-81.957934, 33.468632],\n\t\t\t\t\t\t[-81.967037, 33.480636],\n\t\t\t\t\t\t[-82.007138, 33.522835],\n\t\t\t\t\t\t[-82.007638, 33.523335],\n\t\t\t\t\t\t[-82.014293, 33.530313],\n\t\t\t\t\t\t[-82.012534, 33.532156],\n\t\t\t\t\t\t[-81.651759, 33.814510],\n\t\t\t\t\t\t[-81.571485, 33.877230],\n\t\t\t\t\t\t[-81.569149, 33.871845],\n\t\t\t\t\t\t[-81.563671, 33.865324],\n\t\t\t\t\t\t[-81.560733, 33.862645],\n\t\t\t\t\t\t[-81.554531, 33.860547],\n\t\t\t\t\t\t[-81.551552, 33.860657],\n\t\t\t\t\t\t[-81.546946, 33.858683],\n\t\t\t\t\t\t[-81.540865, 33.851915],\n\t\t\t\t\t\t[-81.542263, 33.848407],\n\t\t\t\t\t\t[-81.540866, 33.845608],\n\t\t\t\t\t\t[-81.538679, 33.844531],\n\t\t\t\t\t\t[-81.538291, 33.841496],\n\t\t\t\t\t\t[-81.534438, 33.837454],\n\t\t\t\t\t\t[-81.533590, 33.832154],\n\t\t\t\t\t\t[-81.527148, 33.829799],\n\t\t\t\t\t\t[-81.522860, 33.826967],\n\t\t\t\t\t\t[-81.522124, 33.825522]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US45007\",\n\t\t\t\t\"STATE\": \"45\",\n\t\t\t\t\"COUNTY\": \"007\",\n\t\t\t\t\"NAME\": \"Anderson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 715.426000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.486746, 34.819475],\n\t\t\t\t\t\t[-82.453789, 34.625114],\n\t\t\t\t\t\t[-82.419665, 34.557089],\n\t\t\t\t\t\t[-82.313996, 34.484002],\n\t\t\t\t\t\t[-82.741491, 34.208709],\n\t\t\t\t\t\t[-82.741920, 34.210063],\n\t\t\t\t\t\t[-82.744415, 34.224913],\n\t\t\t\t\t\t[-82.743461, 34.227343],\n\t\t\t\t\t\t[-82.741980, 34.230196],\n\t\t\t\t\t\t[-82.755028, 34.276067],\n\t\t\t\t\t\t[-82.766078, 34.293509],\n\t\t\t\t\t\t[-82.848651, 34.423844],\n\t\t\t\t\t\t[-82.874864, 34.468891],\n\t\t\t\t\t\t[-82.873831, 34.471508],\n\t\t\t\t\t\t[-82.882864, 34.479003],\n\t\t\t\t\t\t[-82.902665, 34.485902],\n\t\t\t\t\t\t[-82.939067, 34.486202],\n\t\t\t\t\t\t[-82.979568, 34.482702],\n\t\t\t\t\t\t[-82.992215, 34.479198],\n\t\t\t\t\t\t[-82.840253, 34.623212],\n\t\t\t\t\t\t[-82.788664, 34.672017],\n\t\t\t\t\t\t[-82.486746, 34.819475]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US45017\",\n\t\t\t\t\"STATE\": \"45\",\n\t\t\t\t\"COUNTY\": \"017\",\n\t\t\t\t\"NAME\": \"Calhoun\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 381.151000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.012330, 33.880080],\n\t\t\t\t\t\t[-80.917310, 33.813735],\n\t\t\t\t\t\t[-80.747337, 33.761742],\n\t\t\t\t\t\t[-80.620107, 33.743237],\n\t\t\t\t\t\t[-80.534085, 33.643911],\n\t\t\t\t\t\t[-80.496273, 33.558481],\n\t\t\t\t\t\t[-80.552272, 33.565414],\n\t\t\t\t\t\t[-80.659020, 33.470982],\n\t\t\t\t\t\t[-80.807631, 33.604081],\n\t\t\t\t\t\t[-80.879528, 33.619285],\n\t\t\t\t\t\t[-80.939790, 33.608798],\n\t\t\t\t\t\t[-81.042854, 33.707131],\n\t\t\t\t\t\t[-80.926321, 33.755583],\n\t\t\t\t\t\t[-81.058521, 33.747053],\n\t\t\t\t\t\t[-81.012330, 33.880080]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US45023\",\n\t\t\t\t\"STATE\": \"45\",\n\t\t\t\t\"COUNTY\": \"023\",\n\t\t\t\t\"NAME\": \"Chester\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 580.657000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.478454, 34.821509],\n\t\t\t\t\t\t[-80.898215, 34.820746],\n\t\t\t\t\t\t[-80.860274, 34.695847],\n\t\t\t\t\t\t[-80.896406, 34.631781],\n\t\t\t\t\t\t[-80.877491, 34.543146],\n\t\t\t\t\t\t[-80.949774, 34.545341],\n\t\t\t\t\t\t[-81.422706, 34.572029],\n\t\t\t\t\t\t[-81.478454, 34.821509]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US45025\",\n\t\t\t\t\"STATE\": \"45\",\n\t\t\t\t\"COUNTY\": \"025\",\n\t\t\t\t\"NAME\": \"Chesterfield\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 799.075000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.288596, 34.366207],\n\t\t\t\t\t\t[-80.328553, 34.501349],\n\t\t\t\t\t\t[-80.408373, 34.614765],\n\t\t\t\t\t\t[-80.561674, 34.817481],\n\t\t\t\t\t\t[-80.561657, 34.817481],\n\t\t\t\t\t\t[-80.485683, 34.816732],\n\t\t\t\t\t\t[-80.451660, 34.816396],\n\t\t\t\t\t\t[-80.448766, 34.816332],\n\t\t\t\t\t\t[-80.434843, 34.815968],\n\t\t\t\t\t\t[-80.425902, 34.815810],\n\t\t\t\t\t\t[-80.419586, 34.815581],\n\t\t\t\t\t\t[-80.418433, 34.815622],\n\t\t\t\t\t\t[-80.417014, 34.815508],\n\t\t\t\t\t\t[-80.399871, 34.815128],\n\t\t\t\t\t\t[-80.320413, 34.813813],\n\t\t\t\t\t\t[-80.098994, 34.810147],\n\t\t\t\t\t\t[-80.098022, 34.810147],\n\t\t\t\t\t\t[-80.077223, 34.809716],\n\t\t\t\t\t\t[-80.072912, 34.809736],\n\t\t\t\t\t\t[-80.042764, 34.809097],\n\t\t\t\t\t\t[-80.027464, 34.808726],\n\t\t\t\t\t\t[-79.927618, 34.806555],\n\t\t\t\t\t\t[-79.871959, 34.693841],\n\t\t\t\t\t\t[-79.778249, 34.614868],\n\t\t\t\t\t\t[-79.829981, 34.531925],\n\t\t\t\t\t\t[-79.884542, 34.491218],\n\t\t\t\t\t\t[-80.045439, 34.492631],\n\t\t\t\t\t\t[-80.288596, 34.366207]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46063\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"063\",\n\t\t\t\t\"NAME\": \"Harding\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2671.375000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-102.957281, 45.212851],\n\t\t\t\t\t\t[-104.040274, 45.212891],\n\t\t\t\t\t\t[-104.040358, 45.335946],\n\t\t\t\t\t\t[-104.040265, 45.345356],\n\t\t\t\t\t\t[-104.040114, 45.374214],\n\t\t\t\t\t\t[-104.040410, 45.393474],\n\t\t\t\t\t\t[-104.041764, 45.490789],\n\t\t\t\t\t\t[-104.041274, 45.499994],\n\t\t\t\t\t\t[-104.041145, 45.503367],\n\t\t\t\t\t\t[-104.041717, 45.539122],\n\t\t\t\t\t\t[-104.041647, 45.550691],\n\t\t\t\t\t\t[-104.041937, 45.557915],\n\t\t\t\t\t\t[-104.043814, 45.868385],\n\t\t\t\t\t\t[-104.044009, 45.871974],\n\t\t\t\t\t\t[-104.044030, 45.881971],\n\t\t\t\t\t\t[-104.044030, 45.881975],\n\t\t\t\t\t\t[-104.045443, 45.945310],\n\t\t\t\t\t\t[-103.668479, 45.945242],\n\t\t\t\t\t\t[-103.660779, 45.945241],\n\t\t\t\t\t\t[-103.660779, 45.945231],\n\t\t\t\t\t\t[-103.577083, 45.945283],\n\t\t\t\t\t\t[-103.558710, 45.945131],\n\t\t\t\t\t\t[-103.434851, 45.945291],\n\t\t\t\t\t\t[-103.432393, 45.945313],\n\t\t\t\t\t\t[-103.418040, 45.945186],\n\t\t\t\t\t\t[-103.411325, 45.945264],\n\t\t\t\t\t\t[-103.284109, 45.945152],\n\t\t\t\t\t\t[-103.284092, 45.945149],\n\t\t\t\t\t\t[-103.218396, 45.945208],\n\t\t\t\t\t\t[-103.210634, 45.945222],\n\t\t\t\t\t\t[-103.161251, 45.945309],\n\t\t\t\t\t\t[-103.140939, 45.945257],\n\t\t\t\t\t\t[-103.097872, 45.945262],\n\t\t\t\t\t\t[-103.078477, 45.945289],\n\t\t\t\t\t\t[-103.047779, 45.945335],\n\t\t\t\t\t\t[-103.026058, 45.945307],\n\t\t\t\t\t\t[-102.995668, 45.945167],\n\t\t\t\t\t\t[-102.995345, 45.945166],\n\t\t\t\t\t\t[-102.989902, 45.945211],\n\t\t\t\t\t\t[-102.942070, 45.945092],\n\t\t\t\t\t\t[-102.957281, 45.212851]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46065\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"065\",\n\t\t\t\t\"NAME\": \"Hughes\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 741.560000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.676398, 44.548111],\n\t\t\t\t\t\t[-99.663670, 44.548089],\n\t\t\t\t\t\t[-99.663508, 44.217517],\n\t\t\t\t\t\t[-99.695752, 44.172375],\n\t\t\t\t\t\t[-99.612249, 44.103694],\n\t\t\t\t\t\t[-99.884485, 44.129582],\n\t\t\t\t\t\t[-99.938217, 44.195195],\n\t\t\t\t\t\t[-99.892101, 44.241881],\n\t\t\t\t\t\t[-100.085330, 44.308451],\n\t\t\t\t\t\t[-100.365390, 44.355524],\n\t\t\t\t\t\t[-100.386376, 44.440008],\n\t\t\t\t\t\t[-100.573957, 44.455475],\n\t\t\t\t\t\t[-100.526498, 44.547422],\n\t\t\t\t\t\t[-99.676398, 44.548111]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46069\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"069\",\n\t\t\t\t\"NAME\": \"Hyde\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 860.524000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.663508, 44.217517],\n\t\t\t\t\t\t[-99.663670, 44.548089],\n\t\t\t\t\t\t[-99.676398, 44.548111],\n\t\t\t\t\t\t[-99.673050, 44.897492],\n\t\t\t\t\t\t[-99.572699, 44.897263],\n\t\t\t\t\t\t[-99.311754, 44.897227],\n\t\t\t\t\t\t[-99.300180, 44.194830],\n\t\t\t\t\t\t[-99.576571, 44.192421],\n\t\t\t\t\t\t[-99.593941, 44.204045],\n\t\t\t\t\t\t[-99.632350, 44.215661],\n\t\t\t\t\t\t[-99.663508, 44.217517]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46075\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"075\",\n\t\t\t\t\"NAME\": \"Jones\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 969.678000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.367207, 44.168694],\n\t\t\t\t\t\t[-100.366174, 43.846978],\n\t\t\t\t\t\t[-100.338970, 43.716942],\n\t\t\t\t\t\t[-100.473105, 43.720891],\n\t\t\t\t\t\t[-100.583380, 43.768012],\n\t\t\t\t\t\t[-100.735003, 43.707621],\n\t\t\t\t\t\t[-100.789635, 43.725438],\n\t\t\t\t\t\t[-100.795732, 43.754055],\n\t\t\t\t\t\t[-101.031377, 43.857896],\n\t\t\t\t\t\t[-101.064326, 43.841090],\n\t\t\t\t\t\t[-101.064068, 43.994929],\n\t\t\t\t\t\t[-101.046786, 43.994970],\n\t\t\t\t\t\t[-101.046916, 44.168484],\n\t\t\t\t\t\t[-100.367207, 44.168694]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46079\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"079\",\n\t\t\t\t\"NAME\": \"Lake\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 563.277000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.370115, 44.194971],\n\t\t\t\t\t\t[-97.129671, 44.195933],\n\t\t\t\t\t\t[-96.889216, 44.195705],\n\t\t\t\t\t\t[-96.888664, 43.848385],\n\t\t\t\t\t\t[-97.129089, 43.847973],\n\t\t\t\t\t\t[-97.369463, 43.848526],\n\t\t\t\t\t\t[-97.370115, 44.194971]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46085\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"085\",\n\t\t\t\t\"NAME\": \"Lyman\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1641.936000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.663508, 44.217517],\n\t\t\t\t\t\t[-99.632350, 44.215661],\n\t\t\t\t\t\t[-99.593941, 44.204045],\n\t\t\t\t\t\t[-99.576571, 44.192421],\n\t\t\t\t\t\t[-99.562536, 44.101519],\n\t\t\t\t\t\t[-99.353717, 43.995321],\n\t\t\t\t\t\t[-99.355864, 43.934371],\n\t\t\t\t\t\t[-99.310826, 43.855216],\n\t\t\t\t\t\t[-99.410150, 43.774619],\n\t\t\t\t\t\t[-99.458809, 43.655800],\n\t\t\t\t\t\t[-99.375378, 43.656869],\n\t\t\t\t\t\t[-99.297882, 43.499856],\n\t\t\t\t\t\t[-99.297998, 43.499669],\n\t\t\t\t\t\t[-99.529121, 43.499783],\n\t\t\t\t\t\t[-99.534482, 43.499648],\n\t\t\t\t\t\t[-99.623578, 43.499859],\n\t\t\t\t\t\t[-99.623587, 43.742414],\n\t\t\t\t\t\t[-99.656181, 43.765925],\n\t\t\t\t\t\t[-99.667613, 43.730241],\n\t\t\t\t\t\t[-99.688111, 43.759074],\n\t\t\t\t\t\t[-99.729978, 43.718827],\n\t\t\t\t\t\t[-99.837825, 43.689071],\n\t\t\t\t\t\t[-99.981465, 43.687119],\n\t\t\t\t\t\t[-100.016612, 43.706746],\n\t\t\t\t\t\t[-100.115169, 43.685434],\n\t\t\t\t\t\t[-100.230845, 43.713856],\n\t\t\t\t\t\t[-100.338970, 43.716942],\n\t\t\t\t\t\t[-100.366174, 43.846978],\n\t\t\t\t\t\t[-100.367207, 44.168694],\n\t\t\t\t\t\t[-100.367247, 44.194621],\n\t\t\t\t\t\t[-99.938217, 44.195195],\n\t\t\t\t\t\t[-99.884485, 44.129582],\n\t\t\t\t\t\t[-99.612249, 44.103694],\n\t\t\t\t\t\t[-99.695752, 44.172375],\n\t\t\t\t\t\t[-99.663508, 44.217517]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46093\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"093\",\n\t\t\t\t\"NAME\": \"Meade\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 3470.984000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-102.957371, 45.039569],\n\t\t\t\t\t\t[-101.999993, 45.037999],\n\t\t\t\t\t\t[-102.000432, 44.511663],\n\t\t\t\t\t\t[-102.000841, 44.511259],\n\t\t\t\t\t\t[-102.001068, 44.510926],\n\t\t\t\t\t\t[-102.164179, 44.427466],\n\t\t\t\t\t\t[-102.306223, 44.434085],\n\t\t\t\t\t\t[-102.388045, 44.140183],\n\t\t\t\t\t\t[-103.452453, 44.140772],\n\t\t\t\t\t\t[-103.453016, 44.256609],\n\t\t\t\t\t\t[-103.574396, 44.256077],\n\t\t\t\t\t\t[-103.567653, 44.604098],\n\t\t\t\t\t\t[-102.964125, 44.604287],\n\t\t\t\t\t\t[-102.957371, 45.039569]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46097\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"097\",\n\t\t\t\t\"NAME\": \"Miner\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 570.311000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.370115, 44.194971],\n\t\t\t\t\t\t[-97.369463, 43.848526],\n\t\t\t\t\t\t[-97.608517, 43.849059],\n\t\t\t\t\t\t[-97.851110, 43.849857],\n\t\t\t\t\t\t[-97.849492, 44.195235],\n\t\t\t\t\t\t[-97.370115, 44.194971]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46101\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"101\",\n\t\t\t\t\"NAME\": \"Moody\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 519.386000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.888664, 43.848385],\n\t\t\t\t\t\t[-96.889216, 44.195705],\n\t\t\t\t\t\t[-96.452774, 44.196780],\n\t\t\t\t\t\t[-96.453187, 44.038350],\n\t\t\t\t\t\t[-96.453313, 44.036430],\n\t\t\t\t\t\t[-96.453405, 44.025413],\n\t\t\t\t\t\t[-96.453373, 44.023744],\n\t\t\t\t\t\t[-96.453053, 44.008887],\n\t\t\t\t\t\t[-96.453116, 44.006876],\n\t\t\t\t\t\t[-96.453297, 43.994723],\n\t\t\t\t\t\t[-96.453328, 43.992871],\n\t\t\t\t\t\t[-96.453263, 43.980277],\n\t\t\t\t\t\t[-96.453389, 43.978060],\n\t\t\t\t\t\t[-96.453292, 43.967180],\n\t\t\t\t\t\t[-96.453165, 43.966540],\n\t\t\t\t\t\t[-96.453289, 43.950814],\n\t\t\t\t\t\t[-96.453352, 43.949122],\n\t\t\t\t\t\t[-96.453183, 43.878650],\n\t\t\t\t\t\t[-96.453304, 43.878583],\n\t\t\t\t\t\t[-96.453335, 43.877029],\n\t\t\t\t\t\t[-96.453264, 43.849604],\n\t\t\t\t\t\t[-96.453264, 43.849506],\n\t\t\t\t\t\t[-96.453264, 43.849501],\n\t\t\t\t\t\t[-96.508636, 43.847591],\n\t\t\t\t\t\t[-96.888664, 43.848385]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46113\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"113\",\n\t\t\t\t\"NAME\": \"Shannon\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2093.898000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-103.000785, 43.476847],\n\t\t\t\t\t\t[-103.001068, 43.605799],\n\t\t\t\t\t\t[-102.902500, 43.674888],\n\t\t\t\t\t\t[-102.810419, 43.688132],\n\t\t\t\t\t\t[-102.175231, 43.687756],\n\t\t\t\t\t\t[-102.139158, 43.700948],\n\t\t\t\t\t\t[-102.139051, 43.476676],\n\t\t\t\t\t\t[-102.110819, 43.389902],\n\t\t\t\t\t\t[-102.108892, 43.129258],\n\t\t\t\t\t\t[-102.082486, 42.999356],\n\t\t\t\t\t\t[-102.082546, 42.999356],\n\t\t\t\t\t\t[-102.440547, 42.999609],\n\t\t\t\t\t\t[-102.487329, 42.999559],\n\t\t\t\t\t\t[-102.792111, 42.999980],\n\t\t\t\t\t\t[-103.000897, 43.000474],\n\t\t\t\t\t\t[-103.000785, 43.476847]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46115\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"115\",\n\t\t\t\t\"NAME\": \"Spink\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1503.925000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.981457, 45.240415],\n\t\t\t\t\t\t[-97.981511, 45.172156],\n\t\t\t\t\t\t[-97.981641, 45.170965],\n\t\t\t\t\t\t[-97.981792, 45.153295],\n\t\t\t\t\t\t[-97.977791, 44.631602],\n\t\t\t\t\t\t[-98.705762, 44.634159],\n\t\t\t\t\t\t[-98.705357, 44.896870],\n\t\t\t\t\t\t[-98.716498, 44.896925],\n\t\t\t\t\t\t[-98.717759, 45.243732],\n\t\t\t\t\t\t[-97.981457, 45.240415]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46117\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"117\",\n\t\t\t\t\"NAME\": \"Stanley\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1444.432000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-101.136838, 44.747126],\n\t\t\t\t\t\t[-101.022611, 44.724153],\n\t\t\t\t\t\t[-100.829795, 44.783248],\n\t\t\t\t\t\t[-100.717644, 44.770930],\n\t\t\t\t\t\t[-100.613805, 44.707135],\n\t\t\t\t\t\t[-100.640061, 44.583723],\n\t\t\t\t\t\t[-100.526498, 44.547422],\n\t\t\t\t\t\t[-100.573957, 44.455475],\n\t\t\t\t\t\t[-100.386376, 44.440008],\n\t\t\t\t\t\t[-100.365390, 44.355524],\n\t\t\t\t\t\t[-100.085330, 44.308451],\n\t\t\t\t\t\t[-99.892101, 44.241881],\n\t\t\t\t\t\t[-99.938217, 44.195195],\n\t\t\t\t\t\t[-100.367247, 44.194621],\n\t\t\t\t\t\t[-100.367207, 44.168694],\n\t\t\t\t\t\t[-101.046916, 44.168484],\n\t\t\t\t\t\t[-101.166753, 44.168085],\n\t\t\t\t\t\t[-101.154516, 44.689947],\n\t\t\t\t\t\t[-101.136838, 44.747126]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46121\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"121\",\n\t\t\t\t\"NAME\": \"Todd\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1388.556000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-101.228104, 42.997874],\n\t\t\t\t\t\t[-101.227749, 43.002087],\n\t\t\t\t\t\t[-101.228179, 43.389185],\n\t\t\t\t\t\t[-100.214221, 43.390321],\n\t\t\t\t\t\t[-100.198413, 42.998542],\n\t\t\t\t\t\t[-100.198434, 42.998542],\n\t\t\t\t\t\t[-100.277793, 42.998674],\n\t\t\t\t\t\t[-100.283713, 42.998767],\n\t\t\t\t\t\t[-100.349548, 42.998740],\n\t\t\t\t\t\t[-100.355406, 42.998760],\n\t\t\t\t\t\t[-100.472742, 42.999288],\n\t\t\t\t\t\t[-100.534335, 42.999017],\n\t\t\t\t\t\t[-100.544018, 42.998795],\n\t\t\t\t\t\t[-100.553131, 42.998721],\n\t\t\t\t\t\t[-100.887898, 42.997881],\n\t\t\t\t\t\t[-100.906714, 42.997910],\n\t\t\t\t\t\t[-100.958365, 42.997796],\n\t\t\t\t\t\t[-100.964190, 42.997886],\n\t\t\t\t\t\t[-101.226494, 42.997901],\n\t\t\t\t\t\t[-101.226853, 42.997896],\n\t\t\t\t\t\t[-101.228104, 42.997874]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46127\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"127\",\n\t\t\t\t\"NAME\": \"Union\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 460.542000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.805682, 43.083670],\n\t\t\t\t\t\t[-96.455107, 43.083366],\n\t\t\t\t\t\t[-96.466017, 43.062235],\n\t\t\t\t\t\t[-96.513111, 43.027880],\n\t\t\t\t\t\t[-96.509479, 42.971122],\n\t\t\t\t\t\t[-96.510749, 42.944397],\n\t\t\t\t\t\t[-96.523264, 42.909059],\n\t\t\t\t\t\t[-96.541460, 42.857682],\n\t\t\t\t\t\t[-96.549513, 42.839143],\n\t\t\t\t\t\t[-96.552092, 42.836057],\n\t\t\t\t\t\t[-96.563058, 42.831051],\n\t\t\t\t\t\t[-96.577813, 42.828102],\n\t\t\t\t\t\t[-96.632142, 42.770863],\n\t\t\t\t\t\t[-96.633168, 42.768325],\n\t\t\t\t\t\t[-96.639704, 42.737071],\n\t\t\t\t\t\t[-96.630617, 42.705880],\n\t\t\t\t\t\t[-96.610975, 42.694751],\n\t\t\t\t\t\t[-96.606140, 42.694661],\n\t\t\t\t\t\t[-96.601989, 42.697429],\n\t\t\t\t\t\t[-96.575299, 42.682665],\n\t\t\t\t\t\t[-96.542366, 42.660736],\n\t\t\t\t\t\t[-96.516338, 42.630435],\n\t\t\t\t\t\t[-96.479685, 42.561238],\n\t\t\t\t\t\t[-96.476952, 42.556079],\n\t\t\t\t\t\t[-96.477709, 42.535595],\n\t\t\t\t\t\t[-96.479909, 42.524195],\n\t\t\t\t\t\t[-96.481308, 42.516556],\n\t\t\t\t\t\t[-96.476947, 42.508677],\n\t\t\t\t\t\t[-96.466253, 42.497702],\n\t\t\t\t\t\t[-96.443408, 42.489495],\n\t\t\t\t\t\t[-96.475565, 42.480036],\n\t\t\t\t\t\t[-96.487490, 42.479846],\n\t\t\t\t\t\t[-96.611489, 42.506088],\n\t\t\t\t\t\t[-96.625958, 42.513576],\n\t\t\t\t\t\t[-96.635982, 42.524324],\n\t\t\t\t\t\t[-96.708049, 42.601594],\n\t\t\t\t\t\t[-96.711332, 42.610399],\n\t\t\t\t\t\t[-96.710604, 42.619625],\n\t\t\t\t\t\t[-96.707245, 42.631258],\n\t\t\t\t\t\t[-96.712871, 42.648136],\n\t\t\t\t\t\t[-96.724033, 42.665971],\n\t\t\t\t\t\t[-96.806553, 42.703405],\n\t\t\t\t\t\t[-96.806213, 42.704154],\n\t\t\t\t\t\t[-96.805682, 43.083670]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30005\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"005\",\n\t\t\t\t\"NAME\": \"Blaine\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 4227.546000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-109.489686, 49.000267],\n\t\t\t\t\t\t[-109.384762, 49.000397],\n\t\t\t\t\t\t[-109.384068, 49.000374],\n\t\t\t\t\t\t[-109.060570, 48.999666],\n\t\t\t\t\t\t[-109.060292, 48.999621],\n\t\t\t\t\t\t[-109.000708, 48.999234],\n\t\t\t\t\t\t[-108.994722, 48.999237],\n\t\t\t\t\t\t[-108.543194, 48.999377],\n\t\t\t\t\t\t[-108.488063, 48.999368],\n\t\t\t\t\t\t[-108.236495, 48.999405],\n\t\t\t\t\t\t[-108.259372, 48.913592],\n\t\t\t\t\t\t[-108.259347, 48.742191],\n\t\t\t\t\t\t[-108.319144, 48.742290],\n\t\t\t\t\t\t[-108.318834, 48.568432],\n\t\t\t\t\t\t[-108.346193, 48.568450],\n\t\t\t\t\t\t[-108.345930, 48.422296],\n\t\t\t\t\t\t[-108.410374, 48.448484],\n\t\t\t\t\t\t[-108.411366, 48.219443],\n\t\t\t\t\t\t[-108.433848, 48.219443],\n\t\t\t\t\t\t[-108.433966, 47.976552],\n\t\t\t\t\t\t[-108.608027, 47.991075],\n\t\t\t\t\t\t[-108.625708, 47.920820],\n\t\t\t\t\t\t[-108.888163, 47.922746],\n\t\t\t\t\t\t[-108.891022, 47.734407],\n\t\t\t\t\t\t[-108.942745, 47.791824],\n\t\t\t\t\t\t[-109.274171, 47.793239],\n\t\t\t\t\t\t[-109.425315, 47.720153],\n\t\t\t\t\t\t[-109.538454, 47.738894],\n\t\t\t\t\t\t[-109.534295, 48.135086],\n\t\t\t\t\t\t[-109.551644, 48.293479],\n\t\t\t\t\t\t[-109.497259, 48.451748],\n\t\t\t\t\t\t[-109.464257, 48.452395],\n\t\t\t\t\t\t[-109.464442, 48.525260],\n\t\t\t\t\t\t[-109.505322, 48.567612],\n\t\t\t\t\t\t[-109.505778, 48.913913],\n\t\t\t\t\t\t[-109.489686, 49.000267]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30009\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"009\",\n\t\t\t\t\"NAME\": \"Carbon\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2048.788000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-108.249345, 44.999458],\n\t\t\t\t\t\t[-108.565921, 45.000578],\n\t\t\t\t\t\t[-108.578484, 45.000484],\n\t\t\t\t\t\t[-108.621313, 45.000408],\n\t\t\t\t\t\t[-109.062262, 44.999623],\n\t\t\t\t\t\t[-109.083010, 44.999610],\n\t\t\t\t\t\t[-109.103445, 45.005904],\n\t\t\t\t\t\t[-109.263431, 45.005345],\n\t\t\t\t\t\t[-109.269294, 45.005283],\n\t\t\t\t\t\t[-109.798687, 45.002188],\n\t\t\t\t\t\t[-109.798221, 45.167405],\n\t\t\t\t\t\t[-109.691105, 45.167198],\n\t\t\t\t\t\t[-109.690497, 45.261265],\n\t\t\t\t\t\t[-109.608660, 45.261214],\n\t\t\t\t\t\t[-109.562014, 45.362940],\n\t\t\t\t\t\t[-109.356241, 45.464445],\n\t\t\t\t\t\t[-109.191508, 45.464272],\n\t\t\t\t\t\t[-109.191449, 45.523141],\n\t\t\t\t\t\t[-109.128460, 45.523053],\n\t\t\t\t\t\t[-109.127810, 45.587454],\n\t\t\t\t\t\t[-108.842697, 45.611006],\n\t\t\t\t\t\t[-108.801661, 45.552067],\n\t\t\t\t\t\t[-108.644971, 45.464091],\n\t\t\t\t\t\t[-108.682105, 45.433093],\n\t\t\t\t\t\t[-108.699552, 45.217952],\n\t\t\t\t\t\t[-108.127979, 45.217911],\n\t\t\t\t\t\t[-108.258630, 45.007576],\n\t\t\t\t\t\t[-108.249345, 44.999458]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30015\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"015\",\n\t\t\t\t\"NAME\": \"Chouteau\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 3972.488000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-111.408495, 47.987045],\n\t\t\t\t\t\t[-111.409097, 48.132218],\n\t\t\t\t\t\t[-110.827168, 48.133173],\n\t\t\t\t\t\t[-110.827034, 48.219669],\n\t\t\t\t\t\t[-110.755649, 48.219671],\n\t\t\t\t\t\t[-110.625528, 48.219625],\n\t\t\t\t\t\t[-110.625313, 48.306479],\n\t\t\t\t\t\t[-109.845734, 48.305971],\n\t\t\t\t\t\t[-109.845811, 48.219109],\n\t\t\t\t\t\t[-109.726940, 48.221419],\n\t\t\t\t\t\t[-109.727044, 48.132619],\n\t\t\t\t\t\t[-109.534295, 48.135086],\n\t\t\t\t\t\t[-109.538454, 47.738894],\n\t\t\t\t\t\t[-109.836811, 47.712253],\n\t\t\t\t\t\t[-109.850627, 47.539301],\n\t\t\t\t\t\t[-110.159419, 47.415338],\n\t\t\t\t\t\t[-110.213293, 47.416659],\n\t\t\t\t\t\t[-110.639564, 47.416259],\n\t\t\t\t\t\t[-110.639934, 47.445332],\n\t\t\t\t\t\t[-110.769218, 47.445996],\n\t\t\t\t\t\t[-110.768771, 47.524837],\n\t\t\t\t\t\t[-110.863942, 47.525060],\n\t\t\t\t\t\t[-111.049832, 47.598325],\n\t\t\t\t\t\t[-110.976382, 47.698605],\n\t\t\t\t\t\t[-111.409117, 47.698277],\n\t\t\t\t\t\t[-111.408495, 47.987045]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30019\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"019\",\n\t\t\t\t\"NAME\": \"Daniels\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1426.105000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-105.804432, 48.563318],\n\t\t\t\t\t\t[-106.021212, 48.563220],\n\t\t\t\t\t\t[-106.021358, 48.823975],\n\t\t\t\t\t\t[-106.151940, 48.823898],\n\t\t\t\t\t\t[-106.112108, 48.999279],\n\t\t\t\t\t\t[-106.050543, 48.999207],\n\t\t\t\t\t\t[-105.966197, 48.999445],\n\t\t\t\t\t\t[-105.834181, 48.999707],\n\t\t\t\t\t\t[-105.775808, 48.999637],\n\t\t\t\t\t\t[-105.650270, 48.999444],\n\t\t\t\t\t\t[-105.612577, 48.999703],\n\t\t\t\t\t\t[-105.607542, 48.999624],\n\t\t\t\t\t\t[-105.578616, 48.999673],\n\t\t\t\t\t\t[-105.522636, 48.999591],\n\t\t\t\t\t\t[-105.411972, 48.999582],\n\t\t\t\t\t\t[-105.407909, 48.999480],\n\t\t\t\t\t\t[-105.391379, 48.999475],\n\t\t\t\t\t\t[-105.387490, 48.999382],\n\t\t\t\t\t\t[-105.355888, 48.999357],\n\t\t\t\t\t\t[-105.277521, 48.999457],\n\t\t\t\t\t\t[-105.265192, 48.999500],\n\t\t\t\t\t\t[-105.057514, 48.999448],\n\t\t\t\t\t\t[-105.038567, 48.650232],\n\t\t\t\t\t\t[-104.973283, 48.650085],\n\t\t\t\t\t\t[-104.973354, 48.563190],\n\t\t\t\t\t\t[-105.804432, 48.563318]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30023\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"023\",\n\t\t\t\t\"NAME\": \"Deer Lodge\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 736.530000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-113.085474, 45.860586],\n\t\t\t\t\t\t[-113.179791, 45.885009],\n\t\t\t\t\t\t[-113.395063, 45.766490],\n\t\t\t\t\t\t[-113.501295, 45.940807],\n\t\t\t\t\t\t[-113.516338, 45.938638],\n\t\t\t\t\t\t[-113.516912, 45.939420],\n\t\t\t\t\t\t[-113.517481, 45.939898],\n\t\t\t\t\t\t[-113.274361, 46.059484],\n\t\t\t\t\t\t[-113.284652, 46.222761],\n\t\t\t\t\t\t[-113.037160, 46.223078],\n\t\t\t\t\t\t[-113.036834, 46.266822],\n\t\t\t\t\t\t[-112.558457, 46.265925],\n\t\t\t\t\t\t[-112.576850, 46.178859],\n\t\t\t\t\t\t[-112.777685, 46.135807],\n\t\t\t\t\t\t[-112.777105, 46.048363],\n\t\t\t\t\t\t[-112.938373, 45.993224],\n\t\t\t\t\t\t[-112.923572, 45.935524],\n\t\t\t\t\t\t[-113.085474, 45.860586]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30029\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"029\",\n\t\t\t\t\"NAME\": \"Flathead\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 5087.660000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-113.349470, 48.310155],\n\t\t\t\t\t\t[-113.236785, 48.247345],\n\t\t\t\t\t\t[-113.231495, 48.170652],\n\t\t\t\t\t\t[-113.016894, 48.132460],\n\t\t\t\t\t\t[-112.878615, 47.975766],\n\t\t\t\t\t\t[-112.984705, 47.953982],\n\t\t\t\t\t\t[-113.086670, 47.918109],\n\t\t\t\t\t\t[-113.080938, 47.749885],\n\t\t\t\t\t\t[-113.165906, 47.720729],\n\t\t\t\t\t\t[-113.144926, 47.596363],\n\t\t\t\t\t\t[-113.466486, 47.599986],\n\t\t\t\t\t\t[-113.633957, 47.599861],\n\t\t\t\t\t\t[-113.604004, 47.721530],\n\t\t\t\t\t\t[-113.681245, 47.794662],\n\t\t\t\t\t\t[-113.667442, 47.890291],\n\t\t\t\t\t\t[-113.747738, 47.953079],\n\t\t\t\t\t\t[-113.841867, 47.978185],\n\t\t\t\t\t\t[-113.885757, 48.051129],\n\t\t\t\t\t\t[-114.028314, 48.051911],\n\t\t\t\t\t\t[-114.078146, 48.023454],\n\t\t\t\t\t\t[-114.038545, 47.962550],\n\t\t\t\t\t\t[-114.491992, 47.961906],\n\t\t\t\t\t\t[-114.477186, 47.789841],\n\t\t\t\t\t\t[-114.604326, 47.789744],\n\t\t\t\t\t\t[-114.604407, 47.875605],\n\t\t\t\t\t\t[-114.989630, 47.872819],\n\t\t\t\t\t\t[-115.010806, 48.017256],\n\t\t\t\t\t\t[-115.020079, 48.225954],\n\t\t\t\t\t\t[-114.847946, 48.226159],\n\t\t\t\t\t\t[-114.849699, 48.573549],\n\t\t\t\t\t\t[-114.888446, 48.573612],\n\t\t\t\t\t\t[-114.888676, 48.658490],\n\t\t\t\t\t\t[-114.639014, 48.658959],\n\t\t\t\t\t\t[-114.692445, 48.680372],\n\t\t\t\t\t\t[-114.611925, 48.751888],\n\t\t\t\t\t\t[-114.732480, 48.809234],\n\t\t\t\t\t\t[-114.691742, 48.842091],\n\t\t\t\t\t\t[-114.728125, 49.000623],\n\t\t\t\t\t\t[-114.678217, 49.000725],\n\t\t\t\t\t\t[-114.674398, 49.000679],\n\t\t\t\t\t\t[-114.438830, 49.001076],\n\t\t\t\t\t\t[-114.068151, 48.999364],\n\t\t\t\t\t\t[-114.014249, 48.907927],\n\t\t\t\t\t\t[-114.058090, 48.888935],\n\t\t\t\t\t\t[-113.957138, 48.817636],\n\t\t\t\t\t\t[-113.911428, 48.850196],\n\t\t\t\t\t\t[-113.790355, 48.845427],\n\t\t\t\t\t\t[-113.714910, 48.742789],\n\t\t\t\t\t\t[-113.750295, 48.613931],\n\t\t\t\t\t\t[-113.467378, 48.547600],\n\t\t\t\t\t\t[-113.480934, 48.459711],\n\t\t\t\t\t\t[-113.333137, 48.387820],\n\t\t\t\t\t\t[-113.349470, 48.310155]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30035\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"035\",\n\t\t\t\t\"NAME\": \"Glacier\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2995.937000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-112.193588, 48.998229],\n\t\t\t\t\t\t[-112.184375, 48.477593],\n\t\t\t\t\t\t[-112.229874, 48.483081],\n\t\t\t\t\t\t[-112.576892, 48.483478],\n\t\t\t\t\t\t[-112.575885, 48.309372],\n\t\t\t\t\t\t[-113.349470, 48.310155],\n\t\t\t\t\t\t[-113.333137, 48.387820],\n\t\t\t\t\t\t[-113.480934, 48.459711],\n\t\t\t\t\t\t[-113.467378, 48.547600],\n\t\t\t\t\t\t[-113.750295, 48.613931],\n\t\t\t\t\t\t[-113.714910, 48.742789],\n\t\t\t\t\t\t[-113.790355, 48.845427],\n\t\t\t\t\t\t[-113.911428, 48.850196],\n\t\t\t\t\t\t[-113.957138, 48.817636],\n\t\t\t\t\t\t[-114.058090, 48.888935],\n\t\t\t\t\t\t[-114.014249, 48.907927],\n\t\t\t\t\t\t[-114.068151, 48.999364],\n\t\t\t\t\t\t[-113.692982, 48.997632],\n\t\t\t\t\t\t[-113.116356, 48.998462],\n\t\t\t\t\t\t[-113.110155, 48.998550],\n\t\t\t\t\t\t[-113.106891, 48.998501],\n\t\t\t\t\t\t[-113.103212, 48.998530],\n\t\t\t\t\t\t[-113.098147, 48.998494],\n\t\t\t\t\t\t[-113.095436, 48.998533],\n\t\t\t\t\t\t[-113.092055, 48.998543],\n\t\t\t\t\t\t[-113.087863, 48.998557],\n\t\t\t\t\t\t[-113.085576, 48.998581],\n\t\t\t\t\t\t[-113.011041, 48.998643],\n\t\t\t\t\t\t[-113.009895, 48.998619],\n\t\t\t\t\t\t[-112.193588, 48.998229]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30041\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"041\",\n\t\t\t\t\"NAME\": \"Hill\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2898.955000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-109.489686, 49.000267],\n\t\t\t\t\t\t[-109.505778, 48.913913],\n\t\t\t\t\t\t[-109.505322, 48.567612],\n\t\t\t\t\t\t[-109.464442, 48.525260],\n\t\t\t\t\t\t[-109.464257, 48.452395],\n\t\t\t\t\t\t[-109.497259, 48.451748],\n\t\t\t\t\t\t[-109.551644, 48.293479],\n\t\t\t\t\t\t[-109.534295, 48.135086],\n\t\t\t\t\t\t[-109.727044, 48.132619],\n\t\t\t\t\t\t[-109.726940, 48.221419],\n\t\t\t\t\t\t[-109.845811, 48.219109],\n\t\t\t\t\t\t[-109.845734, 48.305971],\n\t\t\t\t\t\t[-110.625313, 48.306479],\n\t\t\t\t\t\t[-110.625528, 48.219625],\n\t\t\t\t\t\t[-110.755649, 48.219671],\n\t\t\t\t\t\t[-110.743209, 48.998363],\n\t\t\t\t\t\t[-110.216135, 48.999239],\n\t\t\t\t\t\t[-110.215516, 48.999197],\n\t\t\t\t\t\t[-110.171595, 48.999262],\n\t\t\t\t\t\t[-109.995618, 48.999642],\n\t\t\t\t\t\t[-109.489686, 49.000267]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31129\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"129\",\n\t\t\t\t\"NAME\": \"Nuckolls\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 575.155000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.931826, 40.002050],\n\t\t\t\t\t\t[-97.972186, 40.002114],\n\t\t\t\t\t\t[-98.010157, 40.002153],\n\t\t\t\t\t\t[-98.014412, 40.002223],\n\t\t\t\t\t\t[-98.047469, 40.002186],\n\t\t\t\t\t\t[-98.050057, 40.002278],\n\t\t\t\t\t\t[-98.068701, 40.002355],\n\t\t\t\t\t\t[-98.076034, 40.002301],\n\t\t\t\t\t\t[-98.099659, 40.002227],\n\t\t\t\t\t\t[-98.142031, 40.002452],\n\t\t\t\t\t\t[-98.172269, 40.002438],\n\t\t\t\t\t\t[-98.179315, 40.002483],\n\t\t\t\t\t\t[-98.193483, 40.002614],\n\t\t\t\t\t\t[-98.250008, 40.002307],\n\t\t\t\t\t\t[-98.268218, 40.002490],\n\t\t\t\t\t\t[-98.274015, 40.002516],\n\t\t\t\t\t\t[-98.274017, 40.002516],\n\t\t\t\t\t\t[-98.273776, 40.005385],\n\t\t\t\t\t\t[-98.273571, 40.350359],\n\t\t\t\t\t\t[-97.824114, 40.350541],\n\t\t\t\t\t\t[-97.821458, 40.350561],\n\t\t\t\t\t\t[-97.820816, 40.350545],\n\t\t\t\t\t\t[-97.821496, 40.002002],\n\t\t\t\t\t\t[-97.821598, 40.002004],\n\t\t\t\t\t\t[-97.838379, 40.001910],\n\t\t\t\t\t\t[-97.857450, 40.002065],\n\t\t\t\t\t\t[-97.876261, 40.002102],\n\t\t\t\t\t\t[-97.931811, 40.002050],\n\t\t\t\t\t\t[-97.931826, 40.002050]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31133\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"133\",\n\t\t\t\t\"NAME\": \"Pawnee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 431.075000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.301066, 40.000632],\n\t\t\t\t\t\t[-96.304555, 40.000629],\n\t\t\t\t\t\t[-96.463640, 40.000967],\n\t\t\t\t\t\t[-96.463713, 40.000968],\n\t\t\t\t\t\t[-96.463667, 40.262173],\n\t\t\t\t\t\t[-96.066736, 40.262038],\n\t\t\t\t\t\t[-96.012628, 40.261449],\n\t\t\t\t\t\t[-96.010176, 40.261482],\n\t\t\t\t\t\t[-96.010680, 40.000638],\n\t\t\t\t\t\t[-96.024090, 40.000719],\n\t\t\t\t\t\t[-96.051691, 40.000727],\n\t\t\t\t\t\t[-96.081395, 40.000603],\n\t\t\t\t\t\t[-96.089781, 40.000519],\n\t\t\t\t\t\t[-96.125788, 40.000467],\n\t\t\t\t\t\t[-96.125937, 40.000432],\n\t\t\t\t\t\t[-96.147167, 40.000479],\n\t\t\t\t\t\t[-96.154246, 40.000450],\n\t\t\t\t\t\t[-96.154365, 40.000495],\n\t\t\t\t\t\t[-96.220171, 40.000720],\n\t\t\t\t\t\t[-96.223839, 40.000729],\n\t\t\t\t\t\t[-96.239172, 40.000691],\n\t\t\t\t\t\t[-96.239208, 40.000691],\n\t\t\t\t\t\t[-96.301066, 40.000632]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31141\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"141\",\n\t\t\t\t\"NAME\": \"Platte\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 674.059000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.253519, 41.384212],\n\t\t\t\t\t\t[-97.368186, 41.396416],\n\t\t\t\t\t\t[-97.598253, 41.333119],\n\t\t\t\t\t\t[-97.598461, 41.395068],\n\t\t\t\t\t\t[-97.703765, 41.394876],\n\t\t\t\t\t\t[-97.703627, 41.526796],\n\t\t\t\t\t\t[-97.829846, 41.526174],\n\t\t\t\t\t\t[-97.830493, 41.742238],\n\t\t\t\t\t\t[-97.368070, 41.743207],\n\t\t\t\t\t\t[-97.252425, 41.743085],\n\t\t\t\t\t\t[-97.253519, 41.384212]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19007\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"007\",\n\t\t\t\t\"NAME\": \"Appanoose\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 497.292000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.637898, 40.590853],\n\t\t\t\t\t\t[-92.639223, 40.590825],\n\t\t\t\t\t\t[-92.686693, 40.589809],\n\t\t\t\t\t\t[-92.689854, 40.589884],\n\t\t\t\t\t\t[-92.714598, 40.589564],\n\t\t\t\t\t\t[-92.742232, 40.589207],\n\t\t\t\t\t\t[-92.757407, 40.588908],\n\t\t\t\t\t\t[-92.828061, 40.588593],\n\t\t\t\t\t\t[-92.827992, 40.588515],\n\t\t\t\t\t\t[-92.835074, 40.588484],\n\t\t\t\t\t\t[-92.857391, 40.588360],\n\t\t\t\t\t\t[-92.863034, 40.588175],\n\t\t\t\t\t\t[-92.879178, 40.588341],\n\t\t\t\t\t\t[-92.889796, 40.588039],\n\t\t\t\t\t\t[-92.903544, 40.587860],\n\t\t\t\t\t\t[-92.941595, 40.587743],\n\t\t\t\t\t\t[-92.957747, 40.587430],\n\t\t\t\t\t\t[-93.085517, 40.584403],\n\t\t\t\t\t\t[-93.097296, 40.584014],\n\t\t\t\t\t\t[-93.097595, 40.898451],\n\t\t\t\t\t\t[-92.639091, 40.898886],\n\t\t\t\t\t\t[-92.637898, 40.590853]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19011\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"011\",\n\t\t\t\t\"NAME\": \"Benton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 716.265000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.831089, 42.299063],\n\t\t\t\t\t\t[-91.831379, 41.861851],\n\t\t\t\t\t\t[-92.298164, 41.862779],\n\t\t\t\t\t\t[-92.298792, 42.297527],\n\t\t\t\t\t\t[-92.064766, 42.297259],\n\t\t\t\t\t\t[-91.831089, 42.299063]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19015\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"015\",\n\t\t\t\t\"NAME\": \"Boone\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 571.569000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.698390, 42.209339],\n\t\t\t\t\t\t[-93.698032, 41.863370],\n\t\t\t\t\t\t[-93.815527, 41.863419],\n\t\t\t\t\t\t[-94.164138, 41.863244],\n\t\t\t\t\t\t[-94.164704, 42.209920],\n\t\t\t\t\t\t[-93.931581, 42.210095],\n\t\t\t\t\t\t[-93.698390, 42.209339]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19019\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"019\",\n\t\t\t\t\"NAME\": \"Buchanan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 571.020000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.596981, 42.296408],\n\t\t\t\t\t\t[-91.831089, 42.299063],\n\t\t\t\t\t\t[-92.064766, 42.297259],\n\t\t\t\t\t\t[-92.081661, 42.642056],\n\t\t\t\t\t\t[-91.607059, 42.643973],\n\t\t\t\t\t\t[-91.596981, 42.296408]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19023\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"023\",\n\t\t\t\t\"NAME\": \"Butler\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 580.131000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.025144, 42.907549],\n\t\t\t\t\t\t[-92.554211, 42.907112],\n\t\t\t\t\t\t[-92.554492, 42.642314],\n\t\t\t\t\t\t[-92.554561, 42.559350],\n\t\t\t\t\t\t[-92.554300, 42.555854],\n\t\t\t\t\t\t[-93.027000, 42.556810],\n\t\t\t\t\t\t[-93.025144, 42.907549]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19027\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"027\",\n\t\t\t\t\"NAME\": \"Carroll\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 569.437000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.858412, 42.209692],\n\t\t\t\t\t\t[-94.628806, 42.209396],\n\t\t\t\t\t\t[-94.628724, 41.862763],\n\t\t\t\t\t\t[-94.667977, 41.862682],\n\t\t\t\t\t\t[-94.671695, 41.862828],\n\t\t\t\t\t\t[-94.672368, 41.862890],\n\t\t\t\t\t\t[-94.673119, 41.862650],\n\t\t\t\t\t\t[-94.674259, 41.862657],\n\t\t\t\t\t\t[-94.675420, 41.862895],\n\t\t\t\t\t\t[-94.676942, 41.862994],\n\t\t\t\t\t\t[-94.744876, 41.862394],\n\t\t\t\t\t\t[-95.092861, 41.863374],\n\t\t\t\t\t\t[-95.090851, 42.210405],\n\t\t\t\t\t\t[-94.858412, 42.209692]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19033\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"033\",\n\t\t\t\t\"NAME\": \"Cerro Gordo\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 568.313000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.024143, 43.255538],\n\t\t\t\t\t\t[-93.024092, 43.212812],\n\t\t\t\t\t\t[-93.025144, 42.907549],\n\t\t\t\t\t\t[-93.498617, 42.908512],\n\t\t\t\t\t\t[-93.497635, 43.255468],\n\t\t\t\t\t\t[-93.024143, 43.255538]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17081\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"081\",\n\t\t\t\t\"NAME\": \"Jefferson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 571.169000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.698961, 38.474914],\n\t\t\t\t\t\t[-88.702391, 38.256661],\n\t\t\t\t\t\t[-88.704606, 38.125195],\n\t\t\t\t\t\t[-89.129637, 38.124747],\n\t\t\t\t\t\t[-89.149739, 38.124945],\n\t\t\t\t\t\t[-89.147416, 38.212896],\n\t\t\t\t\t\t[-89.144388, 38.473878],\n\t\t\t\t\t\t[-88.698961, 38.474914]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17091\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"091\",\n\t\t\t\t\"NAME\": \"Kankakee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 676.556000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.526768, 41.298052],\n\t\t\t\t\t\t[-87.526570, 41.166097],\n\t\t\t\t\t\t[-87.526567, 41.163865],\n\t\t\t\t\t\t[-87.526660, 41.160090],\n\t\t\t\t\t\t[-87.526719, 41.159448],\n\t\t\t\t\t\t[-87.526693, 41.153958],\n\t\t\t\t\t\t[-87.526696, 41.149222],\n\t\t\t\t\t\t[-87.526700, 41.139658],\n\t\t\t\t\t\t[-87.526711, 41.121485],\n\t\t\t\t\t\t[-87.526520, 41.024837],\n\t\t\t\t\t\t[-87.526346, 41.010583],\n\t\t\t\t\t\t[-87.526307, 41.010355],\n\t\t\t\t\t\t[-88.131938, 40.997839],\n\t\t\t\t\t\t[-88.133741, 40.997605],\n\t\t\t\t\t\t[-88.236498, 40.995218],\n\t\t\t\t\t\t[-88.245975, 40.994607],\n\t\t\t\t\t\t[-88.247300, 40.994560],\n\t\t\t\t\t\t[-88.248258, 41.023547],\n\t\t\t\t\t\t[-88.251130, 41.103530],\n\t\t\t\t\t\t[-88.251995, 41.114229],\n\t\t\t\t\t\t[-88.240889, 41.114383],\n\t\t\t\t\t\t[-88.244155, 41.201546],\n\t\t\t\t\t\t[-88.011812, 41.205604],\n\t\t\t\t\t\t[-88.013919, 41.292447],\n\t\t\t\t\t\t[-87.526768, 41.298052]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17093\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"093\",\n\t\t\t\t\"NAME\": \"Kendall\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 320.335000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.261468, 41.724529],\n\t\t\t\t\t\t[-88.257274, 41.593469],\n\t\t\t\t\t\t[-88.252098, 41.463096],\n\t\t\t\t\t\t[-88.254972, 41.462768],\n\t\t\t\t\t\t[-88.595960, 41.457034],\n\t\t\t\t\t\t[-88.602240, 41.631389],\n\t\t\t\t\t\t[-88.603620, 41.719546],\n\t\t\t\t\t\t[-88.601933, 41.719563],\n\t\t\t\t\t\t[-88.261952, 41.724652],\n\t\t\t\t\t\t[-88.261468, 41.724529]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17099\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"099\",\n\t\t\t\t\"NAME\": \"LaSalle\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1135.124000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.166561, 41.585289],\n\t\t\t\t\t\t[-89.167200, 41.628707],\n\t\t\t\t\t\t[-88.938618, 41.628319],\n\t\t\t\t\t\t[-88.818462, 41.631352],\n\t\t\t\t\t\t[-88.602240, 41.631389],\n\t\t\t\t\t\t[-88.595960, 41.457034],\n\t\t\t\t\t\t[-88.586240, 41.108293],\n\t\t\t\t\t\t[-88.930881, 41.105900],\n\t\t\t\t\t\t[-88.931390, 40.927740],\n\t\t\t\t\t\t[-89.047718, 40.925749],\n\t\t\t\t\t\t[-89.047856, 41.104781],\n\t\t\t\t\t\t[-89.162238, 41.104080],\n\t\t\t\t\t\t[-89.163705, 41.310187],\n\t\t\t\t\t\t[-89.166561, 41.585289]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17101\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"101\",\n\t\t\t\t\"NAME\": \"Lawrence\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 372.178000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.532064, 38.852503],\n\t\t\t\t\t\t[-87.528194, 38.851691],\n\t\t\t\t\t\t[-87.525893, 38.848795],\n\t\t\t\t\t\t[-87.495211, 38.783060],\n\t\t\t\t\t\t[-87.498515, 38.758983],\n\t\t\t\t\t\t[-87.519609, 38.697198],\n\t\t\t\t\t\t[-87.531231, 38.684036],\n\t\t\t\t\t\t[-87.540052, 38.679143],\n\t\t\t\t\t\t[-87.579397, 38.672475],\n\t\t\t\t\t\t[-87.593678, 38.667402],\n\t\t\t\t\t\t[-87.600180, 38.662462],\n\t\t\t\t\t\t[-87.620120, 38.639489],\n\t\t\t\t\t\t[-87.627345, 38.607237],\n\t\t\t\t\t\t[-87.651529, 38.568166],\n\t\t\t\t\t\t[-87.653977, 38.568289],\n\t\t\t\t\t\t[-87.760094, 38.568783],\n\t\t\t\t\t\t[-87.769353, 38.568937],\n\t\t\t\t\t\t[-87.912286, 38.570104],\n\t\t\t\t\t\t[-87.908113, 38.850107],\n\t\t\t\t\t\t[-87.759592, 38.849514],\n\t\t\t\t\t\t[-87.532064, 38.852503]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17105\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"105\",\n\t\t\t\t\"NAME\": \"Livingston\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1044.285000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.459475, 40.617345],\n\t\t\t\t\t\t[-88.574502, 40.616550],\n\t\t\t\t\t\t[-88.584272, 40.757608],\n\t\t\t\t\t\t[-88.814487, 40.755060],\n\t\t\t\t\t\t[-88.929331, 40.753337],\n\t\t\t\t\t\t[-88.931390, 40.927740],\n\t\t\t\t\t\t[-88.930881, 41.105900],\n\t\t\t\t\t\t[-88.586240, 41.108293],\n\t\t\t\t\t\t[-88.363140, 41.111580],\n\t\t\t\t\t\t[-88.251995, 41.114229],\n\t\t\t\t\t\t[-88.251130, 41.103530],\n\t\t\t\t\t\t[-88.248258, 41.023547],\n\t\t\t\t\t\t[-88.247300, 40.994560],\n\t\t\t\t\t\t[-88.234949, 40.618166],\n\t\t\t\t\t\t[-88.459475, 40.617345]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17109\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"109\",\n\t\t\t\t\"NAME\": \"McDonough\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 589.407000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.789652, 40.635750],\n\t\t\t\t\t\t[-90.445506, 40.627843],\n\t\t\t\t\t\t[-90.450227, 40.276335],\n\t\t\t\t\t\t[-90.909756, 40.284394],\n\t\t\t\t\t\t[-90.904216, 40.639201],\n\t\t\t\t\t\t[-90.894339, 40.638683],\n\t\t\t\t\t\t[-90.789652, 40.635750]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17111\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"111\",\n\t\t\t\t\"NAME\": \"McHenry\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 603.171000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.304692, 42.494773],\n\t\t\t\t\t\t[-88.271691, 42.494818],\n\t\t\t\t\t\t[-88.216900, 42.495923],\n\t\t\t\t\t\t[-88.200172, 42.496016],\n\t\t\t\t\t\t[-88.199521, 42.496013],\n\t\t\t\t\t\t[-88.198750, 42.254220],\n\t\t\t\t\t\t[-88.199584, 42.154260],\n\t\t\t\t\t\t[-88.237402, 42.154281],\n\t\t\t\t\t\t[-88.238369, 42.154253],\n\t\t\t\t\t\t[-88.588657, 42.153590],\n\t\t\t\t\t\t[-88.705633, 42.153561],\n\t\t\t\t\t\t[-88.707378, 42.493587],\n\t\t\t\t\t\t[-88.506912, 42.494883],\n\t\t\t\t\t\t[-88.470597, 42.494672],\n\t\t\t\t\t\t[-88.461397, 42.494618],\n\t\t\t\t\t\t[-88.417396, 42.494618],\n\t\t\t\t\t\t[-88.304692, 42.494773]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17117\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"117\",\n\t\t\t\t\"NAME\": \"Macoupin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 862.906000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.813147, 39.522838],\n\t\t\t\t\t\t[-89.804458, 39.522876],\n\t\t\t\t\t\t[-89.800366, 39.523025],\n\t\t\t\t\t\t[-89.795316, 39.522939],\n\t\t\t\t\t\t[-89.701645, 39.523369],\n\t\t\t\t\t\t[-89.700338, 39.175440],\n\t\t\t\t\t\t[-89.698555, 38.998979],\n\t\t\t\t\t\t[-89.704020, 38.998940],\n\t\t\t\t\t\t[-89.705349, 38.998963],\n\t\t\t\t\t\t[-89.705675, 38.999161],\n\t\t\t\t\t\t[-89.707266, 38.999012],\n\t\t\t\t\t\t[-89.707911, 38.999009],\n\t\t\t\t\t\t[-89.811673, 38.998462],\n\t\t\t\t\t\t[-89.814620, 38.998349],\n\t\t\t\t\t\t[-90.145991, 39.000046],\n\t\t\t\t\t\t[-90.148069, 39.261947],\n\t\t\t\t\t\t[-90.149173, 39.334597],\n\t\t\t\t\t\t[-90.150641, 39.346315],\n\t\t\t\t\t\t[-90.153750, 39.520315],\n\t\t\t\t\t\t[-89.926037, 39.522104],\n\t\t\t\t\t\t[-89.813147, 39.522838]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17125\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"125\",\n\t\t\t\t\"NAME\": \"Mason\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 539.238000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.199556, 40.183945],\n\t\t\t\t\t\t[-90.118966, 40.235263],\n\t\t\t\t\t\t[-90.033026, 40.377806],\n\t\t\t\t\t\t[-89.924680, 40.435921],\n\t\t\t\t\t\t[-89.717104, 40.435655],\n\t\t\t\t\t\t[-89.714927, 40.319218],\n\t\t\t\t\t\t[-89.602979, 40.320129],\n\t\t\t\t\t\t[-89.601604, 40.122432],\n\t\t\t\t\t\t[-89.638262, 40.154870],\n\t\t\t\t\t\t[-89.749196, 40.126852],\n\t\t\t\t\t\t[-89.970490, 40.142082],\n\t\t\t\t\t\t[-89.994724, 40.108373],\n\t\t\t\t\t\t[-90.196609, 40.052499],\n\t\t\t\t\t\t[-90.286493, 40.055023],\n\t\t\t\t\t\t[-90.355198, 40.124245],\n\t\t\t\t\t\t[-90.199556, 40.183945]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17127\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"127\",\n\t\t\t\t\"NAME\": \"Massac\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 237.218000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.564152, 37.078440],\n\t\t\t\t\t\t[-88.576718, 37.085852],\n\t\t\t\t\t\t[-88.589207, 37.099655],\n\t\t\t\t\t\t[-88.625889, 37.119458],\n\t\t\t\t\t\t[-88.809206, 37.189235],\n\t\t\t\t\t\t[-88.916934, 37.224291],\n\t\t\t\t\t\t[-88.928021, 37.226281],\n\t\t\t\t\t\t[-88.929129, 37.302647],\n\t\t\t\t\t\t[-88.904003, 37.335629],\n\t\t\t\t\t\t[-88.710650, 37.337090],\n\t\t\t\t\t\t[-88.490336, 37.159358],\n\t\t\t\t\t\t[-88.490297, 37.066669],\n\t\t\t\t\t\t[-88.514356, 37.065231],\n\t\t\t\t\t\t[-88.531576, 37.067192],\n\t\t\t\t\t\t[-88.545403, 37.070003],\n\t\t\t\t\t\t[-88.560032, 37.076010],\n\t\t\t\t\t\t[-88.564152, 37.078440]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13185\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"185\",\n\t\t\t\t\"NAME\": \"Lowndes\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 496.066000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.475617, 31.031964],\n\t\t\t\t\t\t[-83.295052, 31.027278],\n\t\t\t\t\t\t[-83.280476, 31.026580],\n\t\t\t\t\t\t[-83.273731, 31.026658],\n\t\t\t\t\t\t[-83.197971, 31.025405],\n\t\t\t\t\t\t[-83.179465, 30.950128],\n\t\t\t\t\t\t[-83.042924, 30.947296],\n\t\t\t\t\t\t[-83.019419, 30.849453],\n\t\t\t\t\t\t[-83.088082, 30.848658],\n\t\t\t\t\t\t[-83.136236, 30.775229],\n\t\t\t\t\t\t[-83.136616, 30.624346],\n\t\t\t\t\t\t[-83.156170, 30.625504],\n\t\t\t\t\t\t[-83.163309, 30.625895],\n\t\t\t\t\t\t[-83.174411, 30.626444],\n\t\t\t\t\t\t[-83.187391, 30.627223],\n\t\t\t\t\t\t[-83.256218, 30.631279],\n\t\t\t\t\t\t[-83.309249, 30.634405],\n\t\t\t\t\t\t[-83.309250, 30.634405],\n\t\t\t\t\t\t[-83.309455, 30.634417],\n\t\t\t\t\t\t[-83.311647, 30.634577],\n\t\t\t\t\t\t[-83.340852, 30.636336],\n\t\t\t\t\t\t[-83.341011, 30.636346],\n\t\t\t\t\t\t[-83.357703, 30.637359],\n\t\t\t\t\t\t[-83.482461, 30.756931],\n\t\t\t\t\t\t[-83.449293, 30.817957],\n\t\t\t\t\t\t[-83.358989, 30.836710],\n\t\t\t\t\t\t[-83.458129, 31.000859],\n\t\t\t\t\t\t[-83.460412, 31.002812],\n\t\t\t\t\t\t[-83.461306, 31.005709],\n\t\t\t\t\t\t[-83.463689, 31.005935],\n\t\t\t\t\t\t[-83.464269, 31.011093],\n\t\t\t\t\t\t[-83.466784, 31.013886],\n\t\t\t\t\t\t[-83.465898, 31.018502],\n\t\t\t\t\t\t[-83.467778, 31.021635],\n\t\t\t\t\t\t[-83.471324, 31.023860],\n\t\t\t\t\t\t[-83.471596, 31.026583],\n\t\t\t\t\t\t[-83.468295, 31.028481],\n\t\t\t\t\t\t[-83.470776, 31.028531],\n\t\t\t\t\t\t[-83.472275, 31.029742],\n\t\t\t\t\t\t[-83.473260, 31.028452],\n\t\t\t\t\t\t[-83.473792, 31.031276],\n\t\t\t\t\t\t[-83.476889, 31.030987],\n\t\t\t\t\t\t[-83.475617, 31.031964]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13189\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"189\",\n\t\t\t\t\"NAME\": \"McDuffie\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 257.461000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.425328, 33.650629],\n\t\t\t\t\t\t[-82.436814, 33.549658],\n\t\t\t\t\t\t[-82.294179, 33.354635],\n\t\t\t\t\t\t[-82.350299, 33.314801],\n\t\t\t\t\t\t[-82.353498, 33.312318],\n\t\t\t\t\t\t[-82.357647, 33.312717],\n\t\t\t\t\t\t[-82.371972, 33.310879],\n\t\t\t\t\t\t[-82.383829, 33.312106],\n\t\t\t\t\t\t[-82.549373, 33.357748],\n\t\t\t\t\t\t[-82.649705, 33.608768],\n\t\t\t\t\t\t[-82.479518, 33.639535],\n\t\t\t\t\t\t[-82.476969, 33.644281],\n\t\t\t\t\t\t[-82.469880, 33.638617],\n\t\t\t\t\t\t[-82.458237, 33.637471],\n\t\t\t\t\t\t[-82.451692, 33.649591],\n\t\t\t\t\t\t[-82.435952, 33.652046],\n\t\t\t\t\t\t[-82.430915, 33.655076],\n\t\t\t\t\t\t[-82.425328, 33.650629]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13195\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"195\",\n\t\t\t\t\"NAME\": \"Madison\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 282.311000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.258413, 33.999098],\n\t\t\t\t\t\t[-83.360028, 34.040572],\n\t\t\t\t\t\t[-83.402428, 34.197499],\n\t\t\t\t\t\t[-83.400125, 34.200525],\n\t\t\t\t\t\t[-83.372429, 34.205933],\n\t\t\t\t\t\t[-83.355269, 34.223730],\n\t\t\t\t\t\t[-83.297317, 34.264587],\n\t\t\t\t\t\t[-83.172745, 34.238522],\n\t\t\t\t\t\t[-83.113360, 34.273530],\n\t\t\t\t\t\t[-83.115646, 34.262111],\n\t\t\t\t\t\t[-83.078004, 34.223606],\n\t\t\t\t\t\t[-83.102074, 34.173794],\n\t\t\t\t\t\t[-82.976294, 34.043219],\n\t\t\t\t\t\t[-83.049347, 34.016071],\n\t\t\t\t\t\t[-83.123878, 34.047558],\n\t\t\t\t\t\t[-83.258413, 33.999098]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13199\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"199\",\n\t\t\t\t\"NAME\": \"Meriwether\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 501.223000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.862359, 33.191173],\n\t\t\t\t\t\t[-84.852360, 33.223590],\n\t\t\t\t\t\t[-84.502352, 33.221055],\n\t\t\t\t\t\t[-84.492889, 33.200006],\n\t\t\t\t\t\t[-84.496783, 33.183866],\n\t\t\t\t\t\t[-84.527020, 32.970548],\n\t\t\t\t\t\t[-84.506888, 32.881788],\n\t\t\t\t\t\t[-84.570669, 32.845179],\n\t\t\t\t\t\t[-84.700538, 32.844640],\n\t\t\t\t\t\t[-84.861768, 32.872495],\n\t\t\t\t\t\t[-84.862359, 33.191173]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13205\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"205\",\n\t\t\t\t\"NAME\": \"Mitchell\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 512.085000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.376612, 31.078883],\n\t\t\t\t\t\t[-84.508078, 31.078400],\n\t\t\t\t\t\t[-84.483310, 31.155536],\n\t\t\t\t\t\t[-84.404350, 31.199143],\n\t\t\t\t\t\t[-84.340552, 31.305341],\n\t\t\t\t\t\t[-84.200660, 31.355525],\n\t\t\t\t\t\t[-84.141124, 31.440179],\n\t\t\t\t\t\t[-83.997796, 31.443753],\n\t\t\t\t\t\t[-83.999430, 31.334966],\n\t\t\t\t\t\t[-84.003627, 31.077290],\n\t\t\t\t\t\t[-84.004502, 31.077192],\n\t\t\t\t\t\t[-84.116644, 31.077971],\n\t\t\t\t\t\t[-84.376612, 31.078883]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13209\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"209\",\n\t\t\t\t\"NAME\": \"Montgomery\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 239.523000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.409130, 32.353738],\n\t\t\t\t\t\t[-82.483131, 31.968961],\n\t\t\t\t\t\t[-82.543655, 31.958914],\n\t\t\t\t\t\t[-82.598068, 32.014429],\n\t\t\t\t\t\t[-82.612876, 32.161549],\n\t\t\t\t\t\t[-82.655486, 32.297561],\n\t\t\t\t\t\t[-82.409130, 32.353738]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13213\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"213\",\n\t\t\t\t\"NAME\": \"Murray\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 344.466000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.775852, 34.987800],\n\t\t\t\t\t\t[-84.731022, 34.988088],\n\t\t\t\t\t\t[-84.727434, 34.988020],\n\t\t\t\t\t\t[-84.621483, 34.988329],\n\t\t\t\t\t\t[-84.618637, 34.855398],\n\t\t\t\t\t\t[-84.582306, 34.825141],\n\t\t\t\t\t\t[-84.657098, 34.728905],\n\t\t\t\t\t\t[-84.654523, 34.583187],\n\t\t\t\t\t\t[-84.716498, 34.622900],\n\t\t\t\t\t\t[-84.863793, 34.608597],\n\t\t\t\t\t\t[-84.913456, 34.634128],\n\t\t\t\t\t\t[-84.933722, 34.706799],\n\t\t\t\t\t\t[-84.864945, 34.707356],\n\t\t\t\t\t\t[-84.878499, 34.779610],\n\t\t\t\t\t\t[-84.818715, 34.876950],\n\t\t\t\t\t\t[-84.810477, 34.987607],\n\t\t\t\t\t\t[-84.809184, 34.987569],\n\t\t\t\t\t\t[-84.808127, 34.987592],\n\t\t\t\t\t\t[-84.775852, 34.987800]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13221\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"221\",\n\t\t\t\t\"NAME\": \"Oglethorpe\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 439.012000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.779506, 33.971124],\n\t\t\t\t\t\t[-82.874587, 33.921767],\n\t\t\t\t\t\t[-82.987286, 33.780710],\n\t\t\t\t\t\t[-82.949046, 33.733333],\n\t\t\t\t\t\t[-82.988880, 33.706315],\n\t\t\t\t\t\t[-82.995602, 33.693583],\n\t\t\t\t\t\t[-83.118729, 33.698818],\n\t\t\t\t\t\t[-83.280340, 33.761774],\n\t\t\t\t\t\t[-83.275933, 33.847977],\n\t\t\t\t\t\t[-83.240860, 33.904430],\n\t\t\t\t\t\t[-83.258413, 33.999098],\n\t\t\t\t\t\t[-83.123878, 34.047558],\n\t\t\t\t\t\t[-83.049347, 34.016071],\n\t\t\t\t\t\t[-82.976294, 34.043219],\n\t\t\t\t\t\t[-82.779506, 33.971124]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13229\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"229\",\n\t\t\t\t\"NAME\": \"Pierce\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 316.494000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.417246, 31.417119],\n\t\t\t\t\t\t[-82.344843, 31.430130],\n\t\t\t\t\t\t[-82.226585, 31.530699],\n\t\t\t\t\t\t[-82.132794, 31.471262],\n\t\t\t\t\t\t[-82.052754, 31.454567],\n\t\t\t\t\t\t[-82.041129, 31.373721],\n\t\t\t\t\t\t[-82.006775, 31.277063],\n\t\t\t\t\t\t[-82.100067, 31.276710],\n\t\t\t\t\t\t[-82.194824, 31.207590],\n\t\t\t\t\t\t[-82.284561, 31.224449],\n\t\t\t\t\t\t[-82.383705, 31.291143],\n\t\t\t\t\t\t[-82.417246, 31.417119]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13231\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"231\",\n\t\t\t\t\"NAME\": \"Pike\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 216.086000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.248185, 33.189019],\n\t\t\t\t\t\t[-84.270140, 32.991011],\n\t\t\t\t\t\t[-84.489708, 32.993729],\n\t\t\t\t\t\t[-84.527020, 32.970548],\n\t\t\t\t\t\t[-84.496783, 33.183866],\n\t\t\t\t\t\t[-84.451336, 33.208889],\n\t\t\t\t\t\t[-84.248185, 33.189019]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13235\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"235\",\n\t\t\t\t\"NAME\": \"Pulaski\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 249.031000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.498039, 32.401715],\n\t\t\t\t\t\t[-83.346528, 32.272489],\n\t\t\t\t\t\t[-83.291106, 32.178825],\n\t\t\t\t\t\t[-83.337313, 32.105885],\n\t\t\t\t\t\t[-83.608547, 32.118405],\n\t\t\t\t\t\t[-83.615579, 32.288556],\n\t\t\t\t\t\t[-83.498039, 32.401715]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13241\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"241\",\n\t\t\t\t\"NAME\": \"Rabun\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 369.993000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.108535, 35.000771],\n\t\t\t\t\t\t[-83.143261, 34.924756],\n\t\t\t\t\t\t[-83.242962, 34.877749],\n\t\t\t\t\t\t[-83.267293, 34.832748],\n\t\t\t\t\t\t[-83.283151, 34.821328],\n\t\t\t\t\t\t[-83.324060, 34.788691],\n\t\t\t\t\t\t[-83.339129, 34.741266],\n\t\t\t\t\t\t[-83.352422, 34.716111],\n\t\t\t\t\t\t[-83.548988, 34.749451],\n\t\t\t\t\t\t[-83.586897, 34.819991],\n\t\t\t\t\t\t[-83.652194, 34.822993],\n\t\t\t\t\t\t[-83.656792, 34.878492],\n\t\t\t\t\t\t[-83.549381, 34.992492],\n\t\t\t\t\t\t[-83.483064, 34.993737],\n\t\t\t\t\t\t[-83.108714, 35.000768],\n\t\t\t\t\t\t[-83.108535, 35.000771]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13247\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"247\",\n\t\t\t\t\"NAME\": \"Rockdale\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 129.793000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.023713, 33.752808],\n\t\t\t\t\t\t[-83.984555, 33.784332],\n\t\t\t\t\t\t[-83.982033, 33.786054],\n\t\t\t\t\t\t[-83.954499, 33.768920],\n\t\t\t\t\t\t[-83.953332, 33.768034],\n\t\t\t\t\t\t[-83.914823, 33.744203],\n\t\t\t\t\t\t[-83.972655, 33.605482],\n\t\t\t\t\t\t[-84.024279, 33.548226],\n\t\t\t\t\t\t[-84.024854, 33.547507],\n\t\t\t\t\t\t[-84.044493, 33.525776],\n\t\t\t\t\t\t[-84.136289, 33.572330],\n\t\t\t\t\t\t[-84.172130, 33.621919],\n\t\t\t\t\t\t[-84.181584, 33.629174],\n\t\t\t\t\t\t[-84.184143, 33.646157],\n\t\t\t\t\t\t[-84.104334, 33.636025],\n\t\t\t\t\t\t[-84.056614, 33.726608],\n\t\t\t\t\t\t[-84.023713, 33.752808]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13255\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"255\",\n\t\t\t\t\"NAME\": \"Spalding\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 196.469000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.502352, 33.221055],\n\t\t\t\t\t\t[-84.500290, 33.233444],\n\t\t\t\t\t\t[-84.508926, 33.245222],\n\t\t\t\t\t\t[-84.497527, 33.257422],\n\t\t\t\t\t\t[-84.432907, 33.256500],\n\t\t\t\t\t\t[-84.388118, 33.352465],\n\t\t\t\t\t\t[-84.354400, 33.352514],\n\t\t\t\t\t\t[-84.150581, 33.335639],\n\t\t\t\t\t\t[-84.102582, 33.298191],\n\t\t\t\t\t\t[-84.123767, 33.202824],\n\t\t\t\t\t\t[-84.248185, 33.189019],\n\t\t\t\t\t\t[-84.451336, 33.208889],\n\t\t\t\t\t\t[-84.496783, 33.183866],\n\t\t\t\t\t\t[-84.492889, 33.200006],\n\t\t\t\t\t\t[-84.502352, 33.221055]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13257\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"257\",\n\t\t\t\t\"NAME\": \"Stephens\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 179.131000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.337867, 34.687681],\n\t\t\t\t\t\t[-83.291683, 34.653396],\n\t\t\t\t\t\t[-83.240669, 34.624507],\n\t\t\t\t\t\t[-83.240676, 34.624307],\n\t\t\t\t\t\t[-83.167523, 34.600424],\n\t\t\t\t\t\t[-83.170978, 34.598798],\n\t\t\t\t\t\t[-83.170278, 34.592398],\n\t\t\t\t\t\t[-83.106874, 34.534053],\n\t\t\t\t\t\t[-83.177838, 34.477017],\n\t\t\t\t\t\t[-83.398396, 34.460883],\n\t\t\t\t\t\t[-83.413586, 34.468014],\n\t\t\t\t\t\t[-83.459770, 34.481142],\n\t\t\t\t\t\t[-83.337867, 34.687681]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13267\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"267\",\n\t\t\t\t\"NAME\": \"Tattnall\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 479.403000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.761735, 32.047900],\n\t\t\t\t\t\t[-81.809931, 32.019657],\n\t\t\t\t\t\t[-81.824405, 32.014882],\n\t\t\t\t\t\t[-81.969052, 31.789324],\n\t\t\t\t\t\t[-81.981941, 31.784405],\n\t\t\t\t\t\t[-82.006777, 31.800047],\n\t\t\t\t\t\t[-82.014639, 31.821800],\n\t\t\t\t\t\t[-82.028346, 31.815513],\n\t\t\t\t\t\t[-82.048582, 31.827075],\n\t\t\t\t\t\t[-82.142843, 31.899300],\n\t\t\t\t\t\t[-82.225042, 31.913074],\n\t\t\t\t\t\t[-82.182017, 32.165593],\n\t\t\t\t\t\t[-82.232788, 32.318838],\n\t\t\t\t\t\t[-82.025339, 32.278883],\n\t\t\t\t\t\t[-81.980041, 32.081502],\n\t\t\t\t\t\t[-81.761735, 32.047900]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13269\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"269\",\n\t\t\t\t\"NAME\": \"Taylor\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 376.686000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.254613, 32.372053],\n\t\t\t\t\t\t[-84.392316, 32.414046],\n\t\t\t\t\t\t[-84.444353, 32.562083],\n\t\t\t\t\t\t[-84.408866, 32.561923],\n\t\t\t\t\t\t[-84.337940, 32.720647],\n\t\t\t\t\t\t[-84.286246, 32.747626],\n\t\t\t\t\t\t[-84.202628, 32.690018],\n\t\t\t\t\t\t[-84.104966, 32.673385],\n\t\t\t\t\t\t[-84.003363, 32.529927],\n\t\t\t\t\t\t[-84.001069, 32.520586],\n\t\t\t\t\t\t[-84.008490, 32.521769],\n\t\t\t\t\t\t[-84.122347, 32.505921],\n\t\t\t\t\t\t[-84.254613, 32.372053]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20183\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"183\",\n\t\t\t\t\"NAME\": \"Smith\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 895.465000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.726373, 40.002222],\n\t\t\t\t\t\t[-98.726295, 40.002222],\n\t\t\t\t\t\t[-98.710404, 40.002180],\n\t\t\t\t\t\t[-98.693096, 40.002373],\n\t\t\t\t\t\t[-98.691443, 40.002505],\n\t\t\t\t\t\t[-98.690287, 40.002548],\n\t\t\t\t\t\t[-98.672819, 40.002364],\n\t\t\t\t\t\t[-98.669724, 40.002410],\n\t\t\t\t\t\t[-98.653833, 40.002269],\n\t\t\t\t\t\t[-98.652494, 40.002245],\n\t\t\t\t\t\t[-98.640710, 40.002493],\n\t\t\t\t\t\t[-98.613755, 40.002400],\n\t\t\t\t\t\t[-98.593342, 40.002476],\n\t\t\t\t\t\t[-98.575219, 40.002480],\n\t\t\t\t\t\t[-98.560578, 40.002274],\n\t\t\t\t\t\t[-98.543186, 40.002285],\n\t\t\t\t\t\t[-98.523053, 40.002336],\n\t\t\t\t\t\t[-98.504455, 40.002329],\n\t\t\t\t\t\t[-98.505152, 39.569754],\n\t\t\t\t\t\t[-98.505266, 39.567603],\n\t\t\t\t\t\t[-99.044398, 39.568035],\n\t\t\t\t\t\t[-99.066203, 39.568093],\n\t\t\t\t\t\t[-99.067022, 40.002170],\n\t\t\t\t\t\t[-99.020338, 40.002264],\n\t\t\t\t\t\t[-99.018701, 40.002333],\n\t\t\t\t\t\t[-98.992135, 40.002192],\n\t\t\t\t\t\t[-98.972287, 40.002245],\n\t\t\t\t\t\t[-98.971721, 40.002268],\n\t\t\t\t\t\t[-98.961009, 40.002317],\n\t\t\t\t\t\t[-98.960919, 40.002271],\n\t\t\t\t\t\t[-98.934792, 40.002205],\n\t\t\t\t\t\t[-98.834456, 40.002363],\n\t\t\t\t\t\t[-98.820590, 40.002319],\n\t\t\t\t\t\t[-98.777203, 40.002359],\n\t\t\t\t\t\t[-98.774941, 40.002336],\n\t\t\t\t\t\t[-98.726373, 40.002222]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20187\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"187\",\n\t\t\t\t\"NAME\": \"Stanton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 680.345000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-102.041990, 37.738541],\n\t\t\t\t\t\t[-101.527063, 37.736314],\n\t\t\t\t\t\t[-101.525810, 37.388392],\n\t\t\t\t\t\t[-101.543680, 37.388384],\n\t\t\t\t\t\t[-101.543876, 37.388457],\n\t\t\t\t\t\t[-101.556606, 37.388485],\n\t\t\t\t\t\t[-102.041826, 37.389191],\n\t\t\t\t\t\t[-102.041676, 37.409898],\n\t\t\t\t\t\t[-102.041669, 37.434740],\n\t\t\t\t\t\t[-102.041755, 37.434855],\n\t\t\t\t\t\t[-102.041801, 37.469488],\n\t\t\t\t\t\t[-102.041786, 37.506066],\n\t\t\t\t\t\t[-102.042016, 37.535261],\n\t\t\t\t\t\t[-102.041899, 37.541186],\n\t\t\t\t\t\t[-102.041894, 37.557977],\n\t\t\t\t\t\t[-102.041618, 37.607868],\n\t\t\t\t\t\t[-102.041585, 37.644282],\n\t\t\t\t\t\t[-102.041582, 37.654495],\n\t\t\t\t\t\t[-102.041694, 37.665681],\n\t\t\t\t\t\t[-102.041574, 37.680436],\n\t\t\t\t\t\t[-102.041876, 37.723875],\n\t\t\t\t\t\t[-102.041990, 37.738541]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20189\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"189\",\n\t\t\t\t\"NAME\": \"Stevens\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 727.293000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-101.556606, 37.388485],\n\t\t\t\t\t\t[-101.543876, 37.388457],\n\t\t\t\t\t\t[-101.543680, 37.388384],\n\t\t\t\t\t\t[-101.525810, 37.388392],\n\t\t\t\t\t\t[-101.089653, 37.387721],\n\t\t\t\t\t\t[-101.067904, 37.387779],\n\t\t\t\t\t\t[-101.066457, 36.998493],\n\t\t\t\t\t\t[-101.066742, 36.997921],\n\t\t\t\t\t\t[-101.211486, 36.997124],\n\t\t\t\t\t\t[-101.212909, 36.997044],\n\t\t\t\t\t\t[-101.357797, 36.996271],\n\t\t\t\t\t\t[-101.359674, 36.996232],\n\t\t\t\t\t\t[-101.378180, 36.996164],\n\t\t\t\t\t\t[-101.413868, 36.996008],\n\t\t\t\t\t\t[-101.415005, 36.995966],\n\t\t\t\t\t\t[-101.485326, 36.995611],\n\t\t\t\t\t\t[-101.519066, 36.995546],\n\t\t\t\t\t\t[-101.555239, 36.995414],\n\t\t\t\t\t\t[-101.555260, 36.995414],\n\t\t\t\t\t\t[-101.556606, 37.388485]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20197\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"197\",\n\t\t\t\t\"NAME\": \"Wabaunsee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 794.302000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.352613, 38.739021],\n\t\t\t\t\t\t[-96.390398, 38.825858],\n\t\t\t\t\t\t[-96.501397, 38.826188],\n\t\t\t\t\t\t[-96.501556, 38.869704],\n\t\t\t\t\t\t[-96.501174, 39.043666],\n\t\t\t\t\t\t[-96.390796, 39.043257],\n\t\t\t\t\t\t[-96.388884, 39.172724],\n\t\t\t\t\t\t[-96.331405, 39.158884],\n\t\t\t\t\t\t[-96.233671, 39.212279],\n\t\t\t\t\t\t[-96.083557, 39.193504],\n\t\t\t\t\t\t[-96.039060, 39.126527],\n\t\t\t\t\t\t[-95.946754, 39.098685],\n\t\t\t\t\t\t[-95.946587, 38.869973],\n\t\t\t\t\t\t[-95.945924, 38.739112],\n\t\t\t\t\t\t[-96.352613, 38.739021]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20207\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"207\",\n\t\t\t\t\"NAME\": \"Woodson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 497.820000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.960876, 37.734304],\n\t\t\t\t\t\t[-95.958554, 37.909245],\n\t\t\t\t\t\t[-95.959046, 38.040195],\n\t\t\t\t\t\t[-95.518970, 38.038230],\n\t\t\t\t\t\t[-95.525499, 37.732759],\n\t\t\t\t\t\t[-95.960876, 37.734304]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21191\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"191\",\n\t\t\t\t\"NAME\": \"Pendleton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 277.157000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.232478, 38.874638],\n\t\t\t\t\t\t[-84.233727, 38.853576],\n\t\t\t\t\t\t[-84.231306, 38.830552],\n\t\t\t\t\t\t[-84.229954, 38.827650],\n\t\t\t\t\t\t[-84.205346, 38.582039],\n\t\t\t\t\t\t[-84.476299, 38.542723],\n\t\t\t\t\t\t[-84.532288, 38.791937],\n\t\t\t\t\t\t[-84.420199, 38.805679],\n\t\t\t\t\t\t[-84.418107, 38.806596],\n\t\t\t\t\t\t[-84.232478, 38.874638]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21193\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"193\",\n\t\t\t\t\"NAME\": \"Perry\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 339.670000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.122090, 37.000997],\n\t\t\t\t\t\t[-83.124334, 37.005722],\n\t\t\t\t\t\t[-83.136701, 37.004150],\n\t\t\t\t\t\t[-83.144352, 37.013705],\n\t\t\t\t\t\t[-83.160106, 37.013859],\n\t\t\t\t\t\t[-83.160825, 37.020739],\n\t\t\t\t\t\t[-83.171706, 37.017192],\n\t\t\t\t\t\t[-83.182104, 37.021115],\n\t\t\t\t\t\t[-83.201887, 37.174130],\n\t\t\t\t\t\t[-83.324620, 37.225561],\n\t\t\t\t\t\t[-83.351774, 37.295682],\n\t\t\t\t\t\t[-83.460992, 37.293848],\n\t\t\t\t\t\t[-83.507886, 37.235877],\n\t\t\t\t\t\t[-83.511263, 37.255073],\n\t\t\t\t\t\t[-83.526907, 37.258529],\n\t\t\t\t\t\t[-83.547628, 37.334418],\n\t\t\t\t\t\t[-83.449454, 37.378853],\n\t\t\t\t\t\t[-83.381650, 37.338266],\n\t\t\t\t\t\t[-83.214735, 37.443538],\n\t\t\t\t\t\t[-83.124348, 37.404973],\n\t\t\t\t\t\t[-83.127249, 37.268401],\n\t\t\t\t\t\t[-83.000142, 37.195710],\n\t\t\t\t\t\t[-83.058818, 37.124079],\n\t\t\t\t\t\t[-83.054626, 37.020000],\n\t\t\t\t\t\t[-83.122090, 37.000997]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21201\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"201\",\n\t\t\t\t\"NAME\": \"Robertson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 99.911000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.930348, 38.492278],\n\t\t\t\t\t\t[-83.970010, 38.463997],\n\t\t\t\t\t\t[-83.980031, 38.439159],\n\t\t\t\t\t\t[-84.102100, 38.459379],\n\t\t\t\t\t\t[-84.183903, 38.498019],\n\t\t\t\t\t\t[-84.162031, 38.554125],\n\t\t\t\t\t\t[-83.991605, 38.593701],\n\t\t\t\t\t\t[-83.930348, 38.492278]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21205\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"205\",\n\t\t\t\t\"NAME\": \"Rowan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 279.795000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.433942, 38.033974],\n\t\t\t\t\t\t[-83.498846, 38.050620],\n\t\t\t\t\t\t[-83.635195, 38.187525],\n\t\t\t\t\t\t[-83.507160, 38.269447],\n\t\t\t\t\t\t[-83.452848, 38.381799],\n\t\t\t\t\t\t[-83.341347, 38.319521],\n\t\t\t\t\t\t[-83.306662, 38.225241],\n\t\t\t\t\t\t[-83.244306, 38.192380],\n\t\t\t\t\t\t[-83.263289, 38.115386],\n\t\t\t\t\t\t[-83.433942, 38.033974]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21207\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"207\",\n\t\t\t\t\"NAME\": \"Russell\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 253.657000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.043316, 37.186028],\n\t\t\t\t\t\t[-84.954406, 37.102271],\n\t\t\t\t\t\t[-84.901112, 37.116297],\n\t\t\t\t\t\t[-84.905778, 37.047187],\n\t\t\t\t\t\t[-84.835712, 36.997612],\n\t\t\t\t\t\t[-85.064307, 36.858743],\n\t\t\t\t\t\t[-85.118411, 36.827334],\n\t\t\t\t\t\t[-85.215405, 36.854467],\n\t\t\t\t\t\t[-85.274950, 36.897901],\n\t\t\t\t\t\t[-85.232026, 36.925069],\n\t\t\t\t\t\t[-85.205831, 36.996862],\n\t\t\t\t\t\t[-85.043316, 37.186028]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21217\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"217\",\n\t\t\t\t\"NAME\": \"Taylor\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 266.327000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.466250, 37.465595],\n\t\t\t\t\t\t[-85.340446, 37.469512],\n\t\t\t\t\t\t[-85.246759, 37.420205],\n\t\t\t\t\t\t[-85.171440, 37.465081],\n\t\t\t\t\t\t[-85.073772, 37.413669],\n\t\t\t\t\t\t[-85.165174, 37.310396],\n\t\t\t\t\t\t[-85.314663, 37.240740],\n\t\t\t\t\t\t[-85.352771, 37.192432],\n\t\t\t\t\t\t[-85.478081, 37.363673],\n\t\t\t\t\t\t[-85.584477, 37.432091],\n\t\t\t\t\t\t[-85.583497, 37.469917],\n\t\t\t\t\t\t[-85.466250, 37.465595]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21221\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"221\",\n\t\t\t\t\"NAME\": \"Trigg\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 441.433000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.694186, 36.636838],\n\t\t\t\t\t\t[-87.853204, 36.633247],\n\t\t\t\t\t\t[-87.849567, 36.663701],\n\t\t\t\t\t\t[-88.011792, 36.677025],\n\t\t\t\t\t\t[-88.070532, 36.678118],\n\t\t\t\t\t\t[-88.084215, 36.713147],\n\t\t\t\t\t\t[-88.110831, 36.747150],\n\t\t\t\t\t\t[-88.157347, 36.867183],\n\t\t\t\t\t\t[-87.876996, 36.960116],\n\t\t\t\t\t\t[-87.733368, 37.002103],\n\t\t\t\t\t\t[-87.659724, 36.966397],\n\t\t\t\t\t\t[-87.694186, 36.636838]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21231\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"231\",\n\t\t\t\t\"NAME\": \"Wayne\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 458.170000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.785341, 36.603372],\n\t\t\t\t\t\t[-84.785399, 36.603374],\n\t\t\t\t\t\t[-84.859759, 36.606428],\n\t\t\t\t\t\t[-84.859738, 36.606495],\n\t\t\t\t\t\t[-84.974888, 36.614327],\n\t\t\t\t\t\t[-85.004099, 36.756237],\n\t\t\t\t\t\t[-85.064307, 36.858743],\n\t\t\t\t\t\t[-84.835712, 36.997612],\n\t\t\t\t\t\t[-84.770172, 36.957735],\n\t\t\t\t\t\t[-84.679165, 36.980914],\n\t\t\t\t\t\t[-84.578158, 36.867133],\n\t\t\t\t\t\t[-84.579339, 36.814397],\n\t\t\t\t\t\t[-84.673964, 36.739542],\n\t\t\t\t\t\t[-84.778455, 36.603222],\n\t\t\t\t\t\t[-84.785341, 36.603372]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21233\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"233\",\n\t\t\t\t\"NAME\": \"Webster\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 331.943000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.813413, 37.350645],\n\t\t\t\t\t\t[-87.827977, 37.353711],\n\t\t\t\t\t\t[-87.819963, 37.366034],\n\t\t\t\t\t\t[-87.811461, 37.364087],\n\t\t\t\t\t\t[-87.801046, 37.379445],\n\t\t\t\t\t\t[-87.903034, 37.398197],\n\t\t\t\t\t\t[-87.932952, 37.480052],\n\t\t\t\t\t\t[-87.918474, 37.492937],\n\t\t\t\t\t\t[-87.734545, 37.638376],\n\t\t\t\t\t\t[-87.495331, 37.647547],\n\t\t\t\t\t\t[-87.375145, 37.569988],\n\t\t\t\t\t\t[-87.499968, 37.486741],\n\t\t\t\t\t\t[-87.593575, 37.461963],\n\t\t\t\t\t\t[-87.813413, 37.350645]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21237\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"237\",\n\t\t\t\t\"NAME\": \"Wolfe\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 222.171000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.707974, 37.716463],\n\t\t\t\t\t\t[-83.631060, 37.825372],\n\t\t\t\t\t\t[-83.495080, 37.861906],\n\t\t\t\t\t\t[-83.262172, 37.712657],\n\t\t\t\t\t\t[-83.243603, 37.699155],\n\t\t\t\t\t\t[-83.258467, 37.679926],\n\t\t\t\t\t\t[-83.248692, 37.669616],\n\t\t\t\t\t\t[-83.418474, 37.690729],\n\t\t\t\t\t\t[-83.522308, 37.638516],\n\t\t\t\t\t\t[-83.707974, 37.716463]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21239\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"239\",\n\t\t\t\t\"NAME\": \"Woodford\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 188.784000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.625079, 38.116397],\n\t\t\t\t\t\t[-84.657498, 38.017835],\n\t\t\t\t\t\t[-84.660135, 38.003745],\n\t\t\t\t\t\t[-84.709918, 37.861952],\n\t\t\t\t\t\t[-84.818833, 37.945838],\n\t\t\t\t\t\t[-84.796327, 37.970088],\n\t\t\t\t\t\t[-84.864908, 38.116926],\n\t\t\t\t\t\t[-84.725168, 38.195426],\n\t\t\t\t\t\t[-84.625079, 38.116397]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22005\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"005\",\n\t\t\t\t\"NAME\": \"Ascension\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 289.981000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.105951, 30.062478],\n\t\t\t\t\t\t[-91.059273, 30.213113],\n\t\t\t\t\t\t[-91.021014, 30.321489],\n\t\t\t\t\t\t[-90.891728, 30.345244],\n\t\t\t\t\t\t[-90.774577, 30.249808],\n\t\t\t\t\t\t[-90.689821, 30.176589],\n\t\t\t\t\t\t[-90.632811, 30.221409],\n\t\t\t\t\t\t[-90.632906, 30.219933],\n\t\t\t\t\t\t[-90.641998, 30.166430],\n\t\t\t\t\t\t[-90.915565, 30.113285],\n\t\t\t\t\t\t[-90.963693, 30.066450],\n\t\t\t\t\t\t[-91.105951, 30.062478]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22091\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"091\",\n\t\t\t\t\"NAME\": \"St. Helena\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 408.403000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.825829, 30.999360],\n\t\t\t\t\t\t[-90.783745, 30.999447],\n\t\t\t\t\t\t[-90.779858, 30.999457],\n\t\t\t\t\t\t[-90.775981, 30.999491],\n\t\t\t\t\t\t[-90.769333, 30.999374],\n\t\t\t\t\t\t[-90.758775, 30.999583],\n\t\t\t\t\t\t[-90.734552, 30.999222],\n\t\t\t\t\t\t[-90.734473, 30.999214],\n\t\t\t\t\t\t[-90.651193, 30.999510],\n\t\t\t\t\t\t[-90.648721, 30.999486],\n\t\t\t\t\t\t[-90.588676, 30.999650],\n\t\t\t\t\t\t[-90.587373, 30.999604],\n\t\t\t\t\t\t[-90.584448, 30.999698],\n\t\t\t\t\t\t[-90.583518, 30.999698],\n\t\t\t\t\t\t[-90.567195, 30.999733],\n\t\t\t\t\t\t[-90.565857, 30.663902],\n\t\t\t\t\t\t[-90.567165, 30.650023],\n\t\t\t\t\t\t[-90.910701, 30.649385],\n\t\t\t\t\t\t[-90.849041, 30.719311],\n\t\t\t\t\t\t[-90.863041, 30.941981],\n\t\t\t\t\t\t[-90.825829, 30.999360]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22093\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"093\",\n\t\t\t\t\"NAME\": \"St. James\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 241.537000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.963693, 30.066450],\n\t\t\t\t\t\t[-90.915565, 30.113285],\n\t\t\t\t\t\t[-90.641998, 30.166430],\n\t\t\t\t\t\t[-90.688850, 30.035953],\n\t\t\t\t\t\t[-90.656312, 29.889246],\n\t\t\t\t\t\t[-90.785659, 29.921592],\n\t\t\t\t\t\t[-90.885589, 29.905353],\n\t\t\t\t\t\t[-90.959869, 29.977924],\n\t\t\t\t\t\t[-90.963693, 30.066450]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22097\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"097\",\n\t\t\t\t\"NAME\": \"St. Landry\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 923.879000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.493259, 30.480499],\n\t\t\t\t\t\t[-92.420780, 30.538820],\n\t\t\t\t\t\t[-92.262719, 30.538738],\n\t\t\t\t\t\t[-92.211243, 30.568125],\n\t\t\t\t\t\t[-92.172550, 30.713365],\n\t\t\t\t\t\t[-92.212711, 30.848607],\n\t\t\t\t\t\t[-91.815258, 30.848107],\n\t\t\t\t\t\t[-91.733673, 30.701730],\n\t\t\t\t\t\t[-91.756193, 30.497738],\n\t\t\t\t\t\t[-91.678896, 30.394731],\n\t\t\t\t\t\t[-91.869273, 30.417235],\n\t\t\t\t\t\t[-91.988718, 30.368598],\n\t\t\t\t\t\t[-92.056066, 30.378237],\n\t\t\t\t\t\t[-92.142184, 30.298817],\n\t\t\t\t\t\t[-92.176444, 30.436852],\n\t\t\t\t\t\t[-92.244795, 30.480193],\n\t\t\t\t\t\t[-92.493259, 30.480499]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22099\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"099\",\n\t\t\t\t\"NAME\": \"St. Martin\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 737.648000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-91.471951, 29.955989],\n\t\t\t\t\t\t\t[-91.255229, 29.971457],\n\t\t\t\t\t\t\t[-91.182817, 29.846172],\n\t\t\t\t\t\t\t[-91.092748, 29.801574],\n\t\t\t\t\t\t\t[-91.100010, 29.699402],\n\t\t\t\t\t\t\t[-91.215195, 29.751211],\n\t\t\t\t\t\t\t[-91.386491, 29.783681],\n\t\t\t\t\t\t\t[-91.373642, 29.834401],\n\t\t\t\t\t\t\t[-91.471951, 29.955989]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-91.700933, 30.497433],\n\t\t\t\t\t\t\t[-91.640099, 30.442728],\n\t\t\t\t\t\t\t[-91.621055, 30.309938],\n\t\t\t\t\t\t\t[-91.562760, 30.241949],\n\t\t\t\t\t\t\t[-91.475277, 30.229231],\n\t\t\t\t\t\t\t[-91.463833, 30.102493],\n\t\t\t\t\t\t\t[-91.368835, 30.058824],\n\t\t\t\t\t\t\t[-91.600354, 30.033169],\n\t\t\t\t\t\t\t[-91.658886, 30.108226],\n\t\t\t\t\t\t\t[-91.765168, 30.108495],\n\t\t\t\t\t\t\t[-91.819216, 30.044013],\n\t\t\t\t\t\t\t[-91.950998, 30.073213],\n\t\t\t\t\t\t\t[-91.905544, 30.154616],\n\t\t\t\t\t\t\t[-91.980328, 30.185248],\n\t\t\t\t\t\t\t[-91.942818, 30.236599],\n\t\t\t\t\t\t\t[-91.988718, 30.368598],\n\t\t\t\t\t\t\t[-91.869273, 30.417235],\n\t\t\t\t\t\t\t[-91.678896, 30.394731],\n\t\t\t\t\t\t\t[-91.756193, 30.497738],\n\t\t\t\t\t\t\t[-91.700933, 30.497433]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22103\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"103\",\n\t\t\t\t\"NAME\": \"St. Tammany\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 845.551000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.690580, 30.458773],\n\t\t\t\t\t\t[-89.683410, 30.451793],\n\t\t\t\t\t\t[-89.629941, 30.339449],\n\t\t\t\t\t\t[-89.629877, 30.321017],\n\t\t\t\t\t\t[-89.640694, 30.301313],\n\t\t\t\t\t\t[-89.643575, 30.293099],\n\t\t\t\t\t\t[-89.643440, 30.287682],\n\t\t\t\t\t\t[-89.607655, 30.217096],\n\t\t\t\t\t\t[-89.580754, 30.186197],\n\t\t\t\t\t\t[-89.572654, 30.180897],\n\t\t\t\t\t\t[-89.524504, 30.180753],\n\t\t\t\t\t\t[-89.531213, 30.177099],\n\t\t\t\t\t\t[-89.537493, 30.171745],\n\t\t\t\t\t\t[-89.555013, 30.170798],\n\t\t\t\t\t\t[-89.562825, 30.168667],\n\t\t\t\t\t\t[-89.568270, 30.163932],\n\t\t\t\t\t\t[-89.572093, 30.160362],\n\t\t\t\t\t\t[-89.587062, 30.150648],\n\t\t\t\t\t\t[-89.595021, 30.149891],\n\t\t\t\t\t\t[-89.598027, 30.152409],\n\t\t\t\t\t\t[-89.617542, 30.156422],\n\t\t\t\t\t\t[-89.622880, 30.152368],\n\t\t\t\t\t\t[-89.749211, 30.176429],\n\t\t\t\t\t\t[-89.794106, 30.151326],\n\t\t\t\t\t\t[-89.878689, 30.199193],\n\t\t\t\t\t\t[-89.994260, 30.150039],\n\t\t\t\t\t\t[-90.105456, 30.191801],\n\t\t\t\t\t\t[-90.243034, 30.224447],\n\t\t\t\t\t\t[-90.255648, 30.711905],\n\t\t\t\t\t\t[-89.994201, 30.665430],\n\t\t\t\t\t\t[-89.842585, 30.666005],\n\t\t\t\t\t\t[-89.823384, 30.608535],\n\t\t\t\t\t\t[-89.806843, 30.572039],\n\t\t\t\t\t\t[-89.760570, 30.515761],\n\t\t\t\t\t\t[-89.732577, 30.492502],\n\t\t\t\t\t\t[-89.724614, 30.491902],\n\t\t\t\t\t\t[-89.690580, 30.458773]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22113\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"113\",\n\t\t\t\t\"NAME\": \"Vermilion\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 1173.199000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.041168, 29.581648],\n\t\t\t\t\t\t[-92.046316, 29.584362],\n\t\t\t\t\t\t[-92.066533, 29.583842],\n\t\t\t\t\t\t[-92.105923, 29.586335],\n\t\t\t\t\t\t[-92.158624, 29.581616],\n\t\t\t\t\t\t[-92.212590, 29.562479],\n\t\t\t\t\t\t[-92.251860, 29.539354],\n\t\t\t\t\t\t[-92.280392, 29.533434],\n\t\t\t\t\t\t[-92.309357, 29.533026],\n\t\t\t\t\t\t[-92.347236, 29.539394],\n\t\t\t\t\t\t[-92.402165, 29.551269],\n\t\t\t\t\t\t[-92.473585, 29.561081],\n\t\t\t\t\t\t[-92.558602, 29.569935],\n\t\t\t\t\t\t[-92.616270, 29.578729],\n\t\t\t\t\t\t[-92.617725, 29.579092],\n\t\t\t\t\t\t[-92.615610, 30.038168],\n\t\t\t\t\t\t[-92.738604, 30.037323],\n\t\t\t\t\t\t[-92.625484, 30.092330],\n\t\t\t\t\t\t[-92.534638, 30.107852],\n\t\t\t\t\t\t[-92.426039, 30.049369],\n\t\t\t\t\t\t[-92.284675, 30.147443],\n\t\t\t\t\t\t[-92.128120, 30.115904],\n\t\t\t\t\t\t[-91.964458, 30.036918],\n\t\t\t\t\t\t[-91.990396, 29.970326],\n\t\t\t\t\t\t[-91.970443, 29.804310],\n\t\t\t\t\t\t[-91.978381, 29.799217],\n\t\t\t\t\t\t[-91.983871, 29.794516],\n\t\t\t\t\t\t[-92.035666, 29.781662],\n\t\t\t\t\t\t[-92.056398, 29.772313],\n\t\t\t\t\t\t[-92.107486, 29.744429],\n\t\t\t\t\t\t[-92.144431, 29.716418],\n\t\t\t\t\t\t[-92.149349, 29.697052],\n\t\t\t\t\t\t[-92.134347, 29.669516],\n\t\t\t\t\t\t[-92.132804, 29.660462],\n\t\t\t\t\t\t[-92.111787, 29.621770],\n\t\t\t\t\t\t[-92.093419, 29.618694],\n\t\t\t\t\t\t[-92.065640, 29.619967],\n\t\t\t\t\t\t[-92.047670, 29.624527],\n\t\t\t\t\t\t[-92.025320, 29.625647],\n\t\t\t\t\t\t[-92.016270, 29.618741],\n\t\t\t\t\t\t[-92.000371, 29.613143],\n\t\t\t\t\t\t[-92.006448, 29.608158],\n\t\t\t\t\t\t[-92.009765, 29.598395],\n\t\t\t\t\t\t[-92.019499, 29.592973],\n\t\t\t\t\t\t[-92.025388, 29.585386],\n\t\t\t\t\t\t[-92.029150, 29.584432],\n\t\t\t\t\t\t[-92.038618, 29.585048],\n\t\t\t\t\t\t[-92.041168, 29.581648]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22117\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"117\",\n\t\t\t\t\"NAME\": \"Washington\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 669.525000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.347241, 31.000359],\n\t\t\t\t\t\t[-90.347230, 31.000359],\n\t\t\t\t\t\t[-90.346007, 31.000363],\n\t\t\t\t\t\t[-90.259555, 31.000657],\n\t\t\t\t\t\t[-90.164676, 31.000980],\n\t\t\t\t\t\t[-90.164278, 31.001025],\n\t\t\t\t\t\t[-90.131395, 31.000924],\n\t\t\t\t\t\t[-90.128406, 31.001047],\n\t\t\t\t\t\t[-90.050706, 31.001215],\n\t\t\t\t\t\t[-90.029574, 31.001190],\n\t\t\t\t\t\t[-90.022185, 31.001302],\n\t\t\t\t\t\t[-90.005332, 31.001364],\n\t\t\t\t\t\t[-89.975430, 31.001692],\n\t\t\t\t\t\t[-89.972802, 31.001392],\n\t\t\t\t\t\t[-89.927161, 31.001437],\n\t\t\t\t\t\t[-89.923119, 31.001446],\n\t\t\t\t\t\t[-89.897516, 31.001913],\n\t\t\t\t\t\t[-89.892708, 31.001759],\n\t\t\t\t\t\t[-89.856862, 31.002075],\n\t\t\t\t\t\t[-89.835908, 31.002059],\n\t\t\t\t\t\t[-89.835542, 31.002059],\n\t\t\t\t\t\t[-89.824617, 31.002060],\n\t\t\t\t\t\t[-89.816429, 31.002084],\n\t\t\t\t\t\t[-89.752642, 31.001853],\n\t\t\t\t\t\t[-89.732504, 31.004831],\n\t\t\t\t\t\t[-89.728147, 31.002431],\n\t\t\t\t\t\t[-89.728148, 31.002300],\n\t\t\t\t\t\t[-89.728382, 30.971141],\n\t\t\t\t\t\t[-89.744789, 30.918933],\n\t\t\t\t\t\t[-89.756543, 30.900431],\n\t\t\t\t\t\t[-89.770931, 30.899432],\n\t\t\t\t\t\t[-89.773410, 30.897693],\n\t\t\t\t\t\t[-89.789863, 30.851527],\n\t\t\t\t\t\t[-89.826175, 30.736594],\n\t\t\t\t\t\t[-89.842596, 30.666038],\n\t\t\t\t\t\t[-89.842585, 30.666005],\n\t\t\t\t\t\t[-89.994201, 30.665430],\n\t\t\t\t\t\t[-90.255648, 30.711905],\n\t\t\t\t\t\t[-90.347241, 31.000359]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21011\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"011\",\n\t\t\t\t\"NAME\": \"Bath\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 278.792000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.709507, 38.009317],\n\t\t\t\t\t\t[-83.712187, 38.009693],\n\t\t\t\t\t\t[-83.715208, 38.004399],\n\t\t\t\t\t\t[-83.718497, 38.003397],\n\t\t\t\t\t\t[-83.722177, 38.006011],\n\t\t\t\t\t\t[-83.727146, 38.006999],\n\t\t\t\t\t\t[-83.727154, 38.008629],\n\t\t\t\t\t\t[-83.730982, 38.010524],\n\t\t\t\t\t\t[-83.733293, 38.007642],\n\t\t\t\t\t\t[-83.735911, 38.007057],\n\t\t\t\t\t\t[-83.737673, 38.009972],\n\t\t\t\t\t\t[-83.740512, 38.007149],\n\t\t\t\t\t\t[-83.744082, 38.006919],\n\t\t\t\t\t\t[-83.747451, 38.003967],\n\t\t\t\t\t\t[-83.744956, 38.001578],\n\t\t\t\t\t\t[-83.749591, 37.996733],\n\t\t\t\t\t\t[-83.751818, 37.997098],\n\t\t\t\t\t\t[-83.756983, 37.992618],\n\t\t\t\t\t\t[-83.759430, 37.998731],\n\t\t\t\t\t\t[-83.881353, 38.136517],\n\t\t\t\t\t\t[-83.977924, 38.192118],\n\t\t\t\t\t\t[-83.850355, 38.296258],\n\t\t\t\t\t\t[-83.848355, 38.296949],\n\t\t\t\t\t\t[-83.725393, 38.292584],\n\t\t\t\t\t\t[-83.646546, 38.170963],\n\t\t\t\t\t\t[-83.638854, 38.178270],\n\t\t\t\t\t\t[-83.635195, 38.187525],\n\t\t\t\t\t\t[-83.498846, 38.050620],\n\t\t\t\t\t\t[-83.580530, 38.011702],\n\t\t\t\t\t\t[-83.709507, 38.009317]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21013\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"013\",\n\t\t\t\t\"NAME\": \"Bell\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 359.000000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.461013, 36.664916],\n\t\t\t\t\t\t[-83.498011, 36.670485],\n\t\t\t\t\t\t[-83.527212, 36.665984],\n\t\t\t\t\t\t[-83.649513, 36.616683],\n\t\t\t\t\t\t[-83.675413, 36.600814],\n\t\t\t\t\t\t[-83.677114, 36.596582],\n\t\t\t\t\t\t[-83.690714, 36.582581],\n\t\t\t\t\t\t[-83.930669, 36.588249],\n\t\t\t\t\t\t[-83.957274, 36.642204],\n\t\t\t\t\t\t[-83.877503, 36.687259],\n\t\t\t\t\t\t[-83.798248, 36.785197],\n\t\t\t\t\t\t[-83.581094, 36.904667],\n\t\t\t\t\t\t[-83.589521, 36.955786],\n\t\t\t\t\t\t[-83.530847, 36.943038],\n\t\t\t\t\t\t[-83.520687, 36.937550],\n\t\t\t\t\t\t[-83.509083, 36.938509],\n\t\t\t\t\t\t[-83.509482, 36.923375],\n\t\t\t\t\t\t[-83.494254, 36.919621],\n\t\t\t\t\t\t[-83.489423, 36.911302],\n\t\t\t\t\t\t[-83.504810, 36.903917],\n\t\t\t\t\t\t[-83.500388, 36.895504],\n\t\t\t\t\t\t[-83.489813, 36.895413],\n\t\t\t\t\t\t[-83.511729, 36.807362],\n\t\t\t\t\t\t[-83.461013, 36.664916]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21015\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"015\",\n\t\t\t\t\"NAME\": \"Boone\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 246.359000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.632446, 39.076760],\n\t\t\t\t\t\t[-84.623732, 39.074427],\n\t\t\t\t\t\t[-84.598031, 38.879540],\n\t\t\t\t\t\t[-84.615740, 38.802192],\n\t\t\t\t\t\t[-84.630007, 38.802901],\n\t\t\t\t\t\t[-84.656167, 38.790117],\n\t\t\t\t\t\t[-84.660107, 38.777293],\n\t\t\t\t\t\t[-84.791078, 38.855859],\n\t\t\t\t\t\t[-84.785799, 38.869496],\n\t\t\t\t\t\t[-84.785111, 38.879988],\n\t\t\t\t\t\t[-84.789521, 38.884687],\n\t\t\t\t\t\t[-84.813182, 38.930583],\n\t\t\t\t\t\t[-84.849445, 39.000923],\n\t\t\t\t\t\t[-84.878614, 39.030296],\n\t\t\t\t\t\t[-84.889065, 39.040820],\n\t\t\t\t\t\t[-84.897171, 39.052407],\n\t\t\t\t\t\t[-84.897364, 39.057378],\n\t\t\t\t\t\t[-84.888873, 39.066376],\n\t\t\t\t\t\t[-84.831197, 39.101920],\n\t\t\t\t\t\t[-84.820157, 39.105480],\n\t\t\t\t\t\t[-84.787680, 39.115297],\n\t\t\t\t\t\t[-84.766749, 39.138558],\n\t\t\t\t\t\t[-84.754449, 39.146658],\n\t\t\t\t\t\t[-84.744149, 39.147458],\n\t\t\t\t\t\t[-84.732048, 39.144458],\n\t\t\t\t\t\t[-84.718548, 39.137059],\n\t\t\t\t\t\t[-84.689747, 39.104159],\n\t\t\t\t\t\t[-84.684847, 39.100459],\n\t\t\t\t\t\t[-84.632446, 39.076760]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21027\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"027\",\n\t\t\t\t\"NAME\": \"Breckinridge\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 567.172000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.592810, 37.564360],\n\t\t\t\t\t\t[-86.638935, 37.661877],\n\t\t\t\t\t\t[-86.677871, 37.792845],\n\t\t\t\t\t\t[-86.655285, 37.842506],\n\t\t\t\t\t\t[-86.648028, 37.841425],\n\t\t\t\t\t\t[-86.634271, 37.843845],\n\t\t\t\t\t\t[-86.604624, 37.858272],\n\t\t\t\t\t\t[-86.525174, 37.968228],\n\t\t\t\t\t\t[-86.524969, 38.027879],\n\t\t\t\t\t\t[-86.521825, 38.038327],\n\t\t\t\t\t\t[-86.517289, 38.042634],\n\t\t\t\t\t\t[-86.511760, 38.044448],\n\t\t\t\t\t\t[-86.490858, 38.045796],\n\t\t\t\t\t\t[-86.242777, 37.877002],\n\t\t\t\t\t\t[-86.151285, 37.798878],\n\t\t\t\t\t\t[-86.275270, 37.593519],\n\t\t\t\t\t\t[-86.346230, 37.562718],\n\t\t\t\t\t\t[-86.503369, 37.622191],\n\t\t\t\t\t\t[-86.592810, 37.564360]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21029\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"029\",\n\t\t\t\t\"NAME\": \"Bullitt\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 297.024000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.623735, 38.079648],\n\t\t\t\t\t\t[-85.557270, 38.073841],\n\t\t\t\t\t\t[-85.428830, 38.118383],\n\t\t\t\t\t\t[-85.489202, 37.990654],\n\t\t\t\t\t\t[-85.651310, 37.828989],\n\t\t\t\t\t\t[-85.737777, 37.811790],\n\t\t\t\t\t\t[-85.838198, 37.879284],\n\t\t\t\t\t\t[-85.854871, 37.945385],\n\t\t\t\t\t\t[-85.938321, 37.998756],\n\t\t\t\t\t\t[-85.842259, 38.051485],\n\t\t\t\t\t\t[-85.712578, 38.087311],\n\t\t\t\t\t\t[-85.703163, 38.086499],\n\t\t\t\t\t\t[-85.623735, 38.079648]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17133\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"133\",\n\t\t\t\t\"NAME\": \"Monroe\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 385.011000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.203847, 38.088753],\n\t\t\t\t\t\t[-90.243116, 38.112669],\n\t\t\t\t\t\t[-90.254112, 38.121990],\n\t\t\t\t\t\t[-90.334258, 38.189932],\n\t\t\t\t\t\t[-90.353902, 38.213855],\n\t\t\t\t\t\t[-90.363926, 38.236355],\n\t\t\t\t\t\t[-90.373929, 38.281853],\n\t\t\t\t\t\t[-90.372519, 38.323354],\n\t\t\t\t\t\t[-90.370819, 38.333554],\n\t\t\t\t\t\t[-90.350918, 38.375053],\n\t\t\t\t\t\t[-90.346118, 38.381853],\n\t\t\t\t\t\t[-90.340297, 38.386998],\n\t\t\t\t\t\t[-90.295316, 38.426753],\n\t\t\t\t\t\t[-90.285215, 38.443453],\n\t\t\t\t\t\t[-90.279215, 38.472453],\n\t\t\t\t\t\t[-90.263064, 38.520220],\n\t\t\t\t\t\t[-90.036018, 38.308850],\n\t\t\t\t\t\t[-89.913226, 38.307829],\n\t\t\t\t\t\t[-89.899061, 38.220755],\n\t\t\t\t\t\t[-90.036385, 38.223125],\n\t\t\t\t\t\t[-90.035999, 38.135630],\n\t\t\t\t\t\t[-90.203847, 38.088753]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17137\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"137\",\n\t\t\t\t\"NAME\": \"Morgan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 568.791000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.571754, 39.839326],\n\t\t\t\t\t\t[-90.582435, 39.854574],\n\t\t\t\t\t\t[-90.583534, 39.876750],\n\t\t\t\t\t\t[-89.994405, 39.872860],\n\t\t\t\t\t\t[-89.984745, 39.718079],\n\t\t\t\t\t\t[-89.926037, 39.522104],\n\t\t\t\t\t\t[-90.153750, 39.520315],\n\t\t\t\t\t\t[-90.301801, 39.520192],\n\t\t\t\t\t\t[-90.300666, 39.636541],\n\t\t\t\t\t\t[-90.372969, 39.665781],\n\t\t\t\t\t\t[-90.371253, 39.753388],\n\t\t\t\t\t\t[-90.599105, 39.790060],\n\t\t\t\t\t\t[-90.566976, 39.826883],\n\t\t\t\t\t\t[-90.571754, 39.839326]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17141\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"141\",\n\t\t\t\t\"NAME\": \"Ogle\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 758.574000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.939732, 42.152320],\n\t\t\t\t\t\t[-88.941279, 41.891752],\n\t\t\t\t\t\t[-89.360682, 41.888070],\n\t\t\t\t\t\t[-89.629330, 41.901617],\n\t\t\t\t\t\t[-89.628907, 41.930044],\n\t\t\t\t\t\t[-89.685366, 41.930340],\n\t\t\t\t\t\t[-89.686549, 41.937493],\n\t\t\t\t\t\t[-89.688486, 42.199112],\n\t\t\t\t\t\t[-89.396192, 42.201916],\n\t\t\t\t\t\t[-89.173000, 42.204241],\n\t\t\t\t\t\t[-89.172799, 42.150297],\n\t\t\t\t\t\t[-88.939732, 42.152320]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17143\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"143\",\n\t\t\t\t\"NAME\": \"Peoria\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 619.209000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.986068, 40.712257],\n\t\t\t\t\t\t[-89.985333, 40.800032],\n\t\t\t\t\t\t[-89.985226, 40.848699],\n\t\t\t\t\t\t[-89.985376, 40.850576],\n\t\t\t\t\t\t[-89.985429, 40.887645],\n\t\t\t\t\t\t[-89.985479, 40.974495],\n\t\t\t\t\t\t[-89.982549, 40.974707],\n\t\t\t\t\t\t[-89.638727, 40.973707],\n\t\t\t\t\t\t[-89.447693, 40.973246],\n\t\t\t\t\t\t[-89.472330, 40.921206],\n\t\t\t\t\t\t[-89.552766, 40.810469],\n\t\t\t\t\t\t[-89.554994, 40.747637],\n\t\t\t\t\t\t[-89.658003, 40.567438],\n\t\t\t\t\t\t[-89.872463, 40.513127],\n\t\t\t\t\t\t[-89.873506, 40.624588],\n\t\t\t\t\t\t[-89.989018, 40.625835],\n\t\t\t\t\t\t[-89.986068, 40.712257]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17147\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"147\",\n\t\t\t\t\"NAME\": \"Piatt\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 439.202000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.462207, 39.879092],\n\t\t\t\t\t\t[-88.462328, 39.791820],\n\t\t\t\t\t\t[-88.473182, 39.791837],\n\t\t\t\t\t\t[-88.745671, 39.792146],\n\t\t\t\t\t\t[-88.745957, 39.858136],\n\t\t\t\t\t\t[-88.745164, 40.055191],\n\t\t\t\t\t\t[-88.574885, 40.281501],\n\t\t\t\t\t\t[-88.480900, 40.281216],\n\t\t\t\t\t\t[-88.460418, 40.281935],\n\t\t\t\t\t\t[-88.462207, 39.879092]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17153\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"153\",\n\t\t\t\t\"NAME\": \"Pulaski\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 199.185000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.928021, 37.226281],\n\t\t\t\t\t\t[-88.942111, 37.228811],\n\t\t\t\t\t\t[-88.933385, 37.225005],\n\t\t\t\t\t\t[-88.933399, 37.225007],\n\t\t\t\t\t\t[-88.966831, 37.229891],\n\t\t\t\t\t\t[-88.983260, 37.228685],\n\t\t\t\t\t\t[-89.000968, 37.224401],\n\t\t\t\t\t\t[-89.041263, 37.202881],\n\t\t\t\t\t\t[-89.086526, 37.165602],\n\t\t\t\t\t\t[-89.168087, 37.074218],\n\t\t\t\t\t\t[-89.171881, 37.068184],\n\t\t\t\t\t\t[-89.273631, 37.126968],\n\t\t\t\t\t\t[-89.248439, 37.335109],\n\t\t\t\t\t\t[-89.099448, 37.333559],\n\t\t\t\t\t\t[-89.044787, 37.329846],\n\t\t\t\t\t\t[-88.929129, 37.302647],\n\t\t\t\t\t\t[-88.928021, 37.226281]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17159\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"159\",\n\t\t\t\t\"NAME\": \"Richland\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 359.990000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.953898, 38.570094],\n\t\t\t\t\t\t[-88.147814, 38.569086],\n\t\t\t\t\t\t[-88.148044, 38.597988],\n\t\t\t\t\t\t[-88.253851, 38.599502],\n\t\t\t\t\t\t[-88.258608, 38.847521],\n\t\t\t\t\t\t[-87.945923, 38.850108],\n\t\t\t\t\t\t[-87.908113, 38.850107],\n\t\t\t\t\t\t[-87.912286, 38.570104],\n\t\t\t\t\t\t[-87.912351, 38.569909],\n\t\t\t\t\t\t[-87.953014, 38.570140],\n\t\t\t\t\t\t[-87.953898, 38.570094]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17165\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"165\",\n\t\t\t\t\"NAME\": \"Saline\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 379.819000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.706622, 37.906797],\n\t\t\t\t\t\t[-88.485265, 37.907032],\n\t\t\t\t\t\t[-88.484314, 37.906945],\n\t\t\t\t\t\t[-88.375019, 37.907750],\n\t\t\t\t\t\t[-88.374530, 37.907678],\n\t\t\t\t\t\t[-88.374406, 37.875066],\n\t\t\t\t\t\t[-88.374530, 37.874824],\n\t\t\t\t\t\t[-88.374593, 37.871139],\n\t\t\t\t\t\t[-88.374398, 37.870982],\n\t\t\t\t\t\t[-88.374395, 37.863935],\n\t\t\t\t\t\t[-88.373884, 37.776237],\n\t\t\t\t\t\t[-88.375332, 37.599563],\n\t\t\t\t\t\t[-88.412112, 37.599912],\n\t\t\t\t\t\t[-88.708546, 37.599277],\n\t\t\t\t\t\t[-88.706760, 37.863338],\n\t\t\t\t\t\t[-88.706688, 37.886951],\n\t\t\t\t\t\t[-88.706747, 37.887706],\n\t\t\t\t\t\t[-88.706665, 37.888866],\n\t\t\t\t\t\t[-88.706622, 37.906797]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17167\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"167\",\n\t\t\t\t\"NAME\": \"Sangamon\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 868.302000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.701645, 39.523369],\n\t\t\t\t\t\t[-89.795316, 39.522939],\n\t\t\t\t\t\t[-89.800366, 39.523025],\n\t\t\t\t\t\t[-89.804458, 39.522876],\n\t\t\t\t\t\t[-89.813147, 39.522838],\n\t\t\t\t\t\t[-89.926037, 39.522104],\n\t\t\t\t\t\t[-89.984745, 39.718079],\n\t\t\t\t\t\t[-89.994405, 39.872860],\n\t\t\t\t\t\t[-89.994506, 39.901925],\n\t\t\t\t\t\t[-89.701864, 39.916787],\n\t\t\t\t\t\t[-89.698259, 39.975309],\n\t\t\t\t\t\t[-89.578289, 39.976127],\n\t\t\t\t\t\t[-89.483419, 39.933140],\n\t\t\t\t\t\t[-89.217846, 39.916990],\n\t\t\t\t\t\t[-89.217810, 39.873818],\n\t\t\t\t\t\t[-89.217546, 39.872392],\n\t\t\t\t\t\t[-89.217470, 39.852960],\n\t\t\t\t\t\t[-89.217523, 39.813224],\n\t\t\t\t\t\t[-89.233523, 39.813159],\n\t\t\t\t\t\t[-89.240092, 39.823137],\n\t\t\t\t\t\t[-89.248609, 39.825723],\n\t\t\t\t\t\t[-89.252325, 39.820416],\n\t\t\t\t\t\t[-89.392858, 39.743850],\n\t\t\t\t\t\t[-89.425051, 39.683696],\n\t\t\t\t\t\t[-89.535028, 39.641138],\n\t\t\t\t\t\t[-89.533655, 39.524592],\n\t\t\t\t\t\t[-89.701645, 39.523369]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17177\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"177\",\n\t\t\t\t\"NAME\": \"Stephenson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 564.523000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.837587, 42.505543],\n\t\t\t\t\t\t[-89.801897, 42.505444],\n\t\t\t\t\t\t[-89.799704, 42.505421],\n\t\t\t\t\t\t[-89.793957, 42.505466],\n\t\t\t\t\t\t[-89.780302, 42.505349],\n\t\t\t\t\t\t[-89.769643, 42.505322],\n\t\t\t\t\t\t[-89.742395, 42.505382],\n\t\t\t\t\t\t[-89.693487, 42.505099],\n\t\t\t\t\t\t[-89.690088, 42.505191],\n\t\t\t\t\t\t[-89.667596, 42.504960],\n\t\t\t\t\t\t[-89.650324, 42.504613],\n\t\t\t\t\t\t[-89.644176, 42.504520],\n\t\t\t\t\t\t[-89.613410, 42.503942],\n\t\t\t\t\t\t[-89.603523, 42.503557],\n\t\t\t\t\t\t[-89.600001, 42.503672],\n\t\t\t\t\t\t[-89.594779, 42.503468],\n\t\t\t\t\t\t[-89.564407, 42.502628],\n\t\t\t\t\t\t[-89.522542, 42.501889],\n\t\t\t\t\t\t[-89.493216, 42.501514],\n\t\t\t\t\t\t[-89.492612, 42.501514],\n\t\t\t\t\t\t[-89.484300, 42.501426],\n\t\t\t\t\t\t[-89.425162, 42.500726],\n\t\t\t\t\t\t[-89.423926, 42.500818],\n\t\t\t\t\t\t[-89.422567, 42.500680],\n\t\t\t\t\t\t[-89.420991, 42.500589],\n\t\t\t\t\t\t[-89.401432, 42.500433],\n\t\t\t\t\t\t[-89.401416, 42.500433],\n\t\t\t\t\t\t[-89.396192, 42.201916],\n\t\t\t\t\t\t[-89.688486, 42.199112],\n\t\t\t\t\t\t[-89.919657, 42.196305],\n\t\t\t\t\t\t[-89.926224, 42.505788],\n\t\t\t\t\t\t[-89.837587, 42.505543]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17183\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"183\",\n\t\t\t\t\"NAME\": \"Vermilion\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 898.368000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.526379, 40.491237],\n\t\t\t\t\t\t[-87.526502, 40.477158],\n\t\t\t\t\t\t[-87.526511, 40.476879],\n\t\t\t\t\t\t[-87.526549, 40.475659],\n\t\t\t\t\t\t[-87.526809, 40.462170],\n\t\t\t\t\t\t[-87.530054, 40.250671],\n\t\t\t\t\t\t[-87.529992, 40.250036],\n\t\t\t\t\t\t[-87.530828, 40.191812],\n\t\t\t\t\t\t[-87.531133, 40.170030],\n\t\t\t\t\t\t[-87.531438, 40.148123],\n\t\t\t\t\t\t[-87.531439, 40.148027],\n\t\t\t\t\t\t[-87.531759, 40.144273],\n\t\t\t\t\t\t[-87.531561, 40.133005],\n\t\t\t\t\t\t[-87.532308, 40.011587],\n\t\t\t\t\t\t[-87.532308, 40.011492],\n\t\t\t\t\t\t[-87.532287, 40.000037],\n\t\t\t\t\t\t[-87.532331, 39.997776],\n\t\t\t\t\t\t[-87.532542, 39.987462],\n\t\t\t\t\t\t[-87.532683, 39.977691],\n\t\t\t\t\t\t[-87.532790, 39.975010],\n\t\t\t\t\t\t[-87.532776, 39.971077],\n\t\t\t\t\t\t[-87.533227, 39.883127],\n\t\t\t\t\t\t[-87.533227, 39.883000],\n\t\t\t\t\t\t[-87.937645, 39.879803],\n\t\t\t\t\t\t[-87.932858, 40.399401],\n\t\t\t\t\t\t[-87.931758, 40.400187],\n\t\t\t\t\t\t[-87.935309, 40.485923],\n\t\t\t\t\t\t[-87.526379, 40.491237]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17191\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"191\",\n\t\t\t\t\"NAME\": \"Wayne\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 713.814000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.702391, 38.256661],\n\t\t\t\t\t\t[-88.698961, 38.474914],\n\t\t\t\t\t\t[-88.698457, 38.606304],\n\t\t\t\t\t\t[-88.564109, 38.607093],\n\t\t\t\t\t\t[-88.253851, 38.599502],\n\t\t\t\t\t\t[-88.148044, 38.597988],\n\t\t\t\t\t\t[-88.147814, 38.569086],\n\t\t\t\t\t\t[-88.150900, 38.256097],\n\t\t\t\t\t\t[-88.370491, 38.255413],\n\t\t\t\t\t\t[-88.702391, 38.256661]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17195\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"195\",\n\t\t\t\t\"NAME\": \"Whiteside\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 684.250000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.208440, 41.797176],\n\t\t\t\t\t\t[-90.187969, 41.803163],\n\t\t\t\t\t\t[-90.181973, 41.807070],\n\t\t\t\t\t\t[-90.152104, 41.928947],\n\t\t\t\t\t\t[-89.685366, 41.930340],\n\t\t\t\t\t\t[-89.628907, 41.930044],\n\t\t\t\t\t\t[-89.629330, 41.901617],\n\t\t\t\t\t\t[-89.631368, 41.771297],\n\t\t\t\t\t\t[-89.631494, 41.584949],\n\t\t\t\t\t\t[-89.862351, 41.584005],\n\t\t\t\t\t\t[-90.185609, 41.584653],\n\t\t\t\t\t\t[-90.181412, 41.590993],\n\t\t\t\t\t\t[-90.170427, 41.591761],\n\t\t\t\t\t\t[-90.164842, 41.597322],\n\t\t\t\t\t\t[-90.165057, 41.602933],\n\t\t\t\t\t\t[-90.229749, 41.675375],\n\t\t\t\t\t\t[-90.242747, 41.783767],\n\t\t\t\t\t\t[-90.222263, 41.793133],\n\t\t\t\t\t\t[-90.208440, 41.797176]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17197\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"197\",\n\t\t\t\t\"NAME\": \"Will\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 836.908000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.525669, 41.470283],\n\t\t\t\t\t\t[-87.525671, 41.470115],\n\t\t\t\t\t\t[-87.525623, 41.453619],\n\t\t\t\t\t\t[-87.526768, 41.298177],\n\t\t\t\t\t\t[-87.526768, 41.298052],\n\t\t\t\t\t\t[-88.013919, 41.292447],\n\t\t\t\t\t\t[-88.011812, 41.205604],\n\t\t\t\t\t\t[-88.244155, 41.201546],\n\t\t\t\t\t\t[-88.252098, 41.463096],\n\t\t\t\t\t\t[-88.257274, 41.593469],\n\t\t\t\t\t\t[-88.261468, 41.724529],\n\t\t\t\t\t\t[-88.030561, 41.728930],\n\t\t\t\t\t\t[-88.029160, 41.685530],\n\t\t\t\t\t\t[-88.027688, 41.641506],\n\t\t\t\t\t\t[-87.911930, 41.643933],\n\t\t\t\t\t\t[-87.909453, 41.556732],\n\t\t\t\t\t\t[-87.792793, 41.558540],\n\t\t\t\t\t\t[-87.792292, 41.538662],\n\t\t\t\t\t\t[-87.790560, 41.539916],\n\t\t\t\t\t\t[-87.790408, 41.528134],\n\t\t\t\t\t\t[-87.790303, 41.469846],\n\t\t\t\t\t\t[-87.717554, 41.469733],\n\t\t\t\t\t\t[-87.712752, 41.469620],\n\t\t\t\t\t\t[-87.653236, 41.469754],\n\t\t\t\t\t\t[-87.525669, 41.470283]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18001\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"001\",\n\t\t\t\t\"NAME\": \"Adams\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 339.028000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.802936, 40.922568],\n\t\t\t\t\t\t[-84.802935, 40.922377],\n\t\t\t\t\t\t[-84.802538, 40.765515],\n\t\t\t\t\t\t[-84.802266, 40.742298],\n\t\t\t\t\t\t[-84.802119, 40.728163],\n\t\t\t\t\t\t[-84.802119, 40.728146],\n\t\t\t\t\t\t[-84.802181, 40.718602],\n\t\t\t\t\t\t[-84.802094, 40.702476],\n\t\t\t\t\t\t[-84.802127, 40.691405],\n\t\t\t\t\t\t[-84.802157, 40.689324],\n\t\t\t\t\t\t[-84.802220, 40.674776],\n\t\t\t\t\t\t[-84.802193, 40.660298],\n\t\t\t\t\t\t[-84.802135, 40.644859],\n\t\t\t\t\t\t[-84.802265, 40.572215],\n\t\t\t\t\t\t[-84.802265, 40.572212],\n\t\t\t\t\t\t[-85.068479, 40.568240],\n\t\t\t\t\t\t[-85.073861, 40.917823],\n\t\t\t\t\t\t[-84.802936, 40.922568]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13275\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"275\",\n\t\t\t\t\"NAME\": \"Thomas\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 544.596000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.083753, 30.675954],\n\t\t\t\t\t\t[-84.076964, 30.915570],\n\t\t\t\t\t\t[-84.119058, 30.980956],\n\t\t\t\t\t\t[-84.116644, 31.077971],\n\t\t\t\t\t\t[-84.004502, 31.077192],\n\t\t\t\t\t\t[-84.003627, 31.077290],\n\t\t\t\t\t\t[-84.003876, 31.041582],\n\t\t\t\t\t\t[-83.736158, 31.037679],\n\t\t\t\t\t\t[-83.743729, 30.658396],\n\t\t\t\t\t\t[-83.810536, 30.661880],\n\t\t\t\t\t\t[-83.820886, 30.662612],\n\t\t\t\t\t\t[-83.855216, 30.664412],\n\t\t\t\t\t\t[-83.880220, 30.665832],\n\t\t\t\t\t\t[-83.880317, 30.665807],\n\t\t\t\t\t\t[-84.007391, 30.672097],\n\t\t\t\t\t\t[-84.007454, 30.672100],\n\t\t\t\t\t\t[-84.039707, 30.673819],\n\t\t\t\t\t\t[-84.041810, 30.673878],\n\t\t\t\t\t\t[-84.046605, 30.674200],\n\t\t\t\t\t\t[-84.057228, 30.674705],\n\t\t\t\t\t\t[-84.083753, 30.675954]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13279\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"279\",\n\t\t\t\t\"NAME\": \"Toombs\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 364.005000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.431531, 31.966182],\n\t\t\t\t\t\t[-82.439351, 31.967790],\n\t\t\t\t\t\t[-82.444451, 31.967490],\n\t\t\t\t\t\t[-82.452051, 31.964590],\n\t\t\t\t\t\t[-82.458152, 31.963890],\n\t\t\t\t\t\t[-82.479607, 31.971653],\n\t\t\t\t\t\t[-82.483131, 31.968961],\n\t\t\t\t\t\t[-82.409130, 32.353738],\n\t\t\t\t\t\t[-82.409127, 32.353772],\n\t\t\t\t\t\t[-82.409118, 32.353810],\n\t\t\t\t\t\t[-82.409118, 32.353830],\n\t\t\t\t\t\t[-82.354546, 32.292194],\n\t\t\t\t\t\t[-82.232788, 32.318838],\n\t\t\t\t\t\t[-82.182017, 32.165593],\n\t\t\t\t\t\t[-82.225042, 31.913074],\n\t\t\t\t\t\t[-82.431531, 31.966182]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13281\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"281\",\n\t\t\t\t\"NAME\": \"Towns\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 166.563000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.780401, 34.792893],\n\t\t\t\t\t\t[-83.819099, 34.913690],\n\t\t\t\t\t\t[-83.915104, 34.926887],\n\t\t\t\t\t\t[-83.936413, 34.987485],\n\t\t\t\t\t\t[-83.673621, 34.987111],\n\t\t\t\t\t\t[-83.620185, 34.992091],\n\t\t\t\t\t\t[-83.549381, 34.992492],\n\t\t\t\t\t\t[-83.656792, 34.878492],\n\t\t\t\t\t\t[-83.652194, 34.822993],\n\t\t\t\t\t\t[-83.657921, 34.813682],\n\t\t\t\t\t\t[-83.666855, 34.806528],\n\t\t\t\t\t\t[-83.681596, 34.800593],\n\t\t\t\t\t\t[-83.685685, 34.800997],\n\t\t\t\t\t\t[-83.693155, 34.797322],\n\t\t\t\t\t\t[-83.695990, 34.793520],\n\t\t\t\t\t\t[-83.701813, 34.792488],\n\t\t\t\t\t\t[-83.704146, 34.790982],\n\t\t\t\t\t\t[-83.707757, 34.791710],\n\t\t\t\t\t\t[-83.711803, 34.790520],\n\t\t\t\t\t\t[-83.714186, 34.793112],\n\t\t\t\t\t\t[-83.721035, 34.796110],\n\t\t\t\t\t\t[-83.722030, 34.797271],\n\t\t\t\t\t\t[-83.726874, 34.797732],\n\t\t\t\t\t\t[-83.735981, 34.800071],\n\t\t\t\t\t\t[-83.743107, 34.801191],\n\t\t\t\t\t\t[-83.780401, 34.792893]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13289\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"289\",\n\t\t\t\t\"NAME\": \"Twiggs\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 358.398000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.406990, 32.898220],\n\t\t\t\t\t\t[-83.226536, 32.584201],\n\t\t\t\t\t\t[-83.497923, 32.452198],\n\t\t\t\t\t\t[-83.566198, 32.660786],\n\t\t\t\t\t\t[-83.597656, 32.664338],\n\t\t\t\t\t\t[-83.502603, 32.801119],\n\t\t\t\t\t\t[-83.513511, 32.844868],\n\t\t\t\t\t\t[-83.407668, 32.897822],\n\t\t\t\t\t\t[-83.406990, 32.898220]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13295\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"295\",\n\t\t\t\t\"NAME\": \"Walker\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 446.379000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.069159, 34.587184],\n\t\t\t\t\t\t[-85.107748, 34.587483],\n\t\t\t\t\t\t[-85.527127, 34.588684],\n\t\t\t\t\t\t[-85.534423, 34.623789],\n\t\t\t\t\t\t[-85.450409, 34.759241],\n\t\t\t\t\t\t[-85.450561, 34.831677],\n\t\t\t\t\t\t[-85.363919, 34.983375],\n\t\t\t\t\t\t[-85.308257, 34.984375],\n\t\t\t\t\t\t[-85.305457, 34.984475],\n\t\t\t\t\t\t[-85.301488, 34.984475],\n\t\t\t\t\t\t[-85.294500, 34.984651],\n\t\t\t\t\t\t[-85.277556, 34.984975],\n\t\t\t\t\t\t[-85.275856, 34.984975],\n\t\t\t\t\t\t[-85.265055, 34.985075],\n\t\t\t\t\t\t[-85.264762, 34.854277],\n\t\t\t\t\t\t[-85.202180, 34.854451],\n\t\t\t\t\t\t[-85.201856, 34.775080],\n\t\t\t\t\t\t[-85.144789, 34.767639],\n\t\t\t\t\t\t[-85.168851, 34.720279],\n\t\t\t\t\t\t[-85.050847, 34.719980],\n\t\t\t\t\t\t[-85.050446, 34.622482],\n\t\t\t\t\t\t[-85.055095, 34.622390],\n\t\t\t\t\t\t[-85.055206, 34.622383],\n\t\t\t\t\t\t[-85.060380, 34.622450],\n\t\t\t\t\t\t[-85.060499, 34.587184],\n\t\t\t\t\t\t[-85.069159, 34.587184]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13301\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"301\",\n\t\t\t\t\"NAME\": \"Warren\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 284.298000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.383829, 33.312106],\n\t\t\t\t\t\t[-82.431957, 33.274830],\n\t\t\t\t\t\t[-82.559753, 33.327270],\n\t\t\t\t\t\t[-82.755846, 33.253440],\n\t\t\t\t\t\t[-82.851954, 33.443543],\n\t\t\t\t\t\t[-82.815315, 33.521137],\n\t\t\t\t\t\t[-82.751275, 33.510143],\n\t\t\t\t\t\t[-82.679975, 33.599792],\n\t\t\t\t\t\t[-82.670284, 33.604138],\n\t\t\t\t\t\t[-82.659120, 33.603048],\n\t\t\t\t\t\t[-82.656606, 33.596812],\n\t\t\t\t\t\t[-82.652208, 33.596718],\n\t\t\t\t\t\t[-82.655937, 33.606610],\n\t\t\t\t\t\t[-82.652439, 33.611202],\n\t\t\t\t\t\t[-82.649705, 33.608768],\n\t\t\t\t\t\t[-82.549373, 33.357748],\n\t\t\t\t\t\t[-82.383829, 33.312106]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20035\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"035\",\n\t\t\t\t\"NAME\": \"Cowley\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1125.750000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.525493, 36.999147],\n\t\t\t\t\t\t[-96.705431, 36.999203],\n\t\t\t\t\t\t[-96.710482, 36.999271],\n\t\t\t\t\t\t[-96.736590, 36.999286],\n\t\t\t\t\t\t[-96.741270, 36.999239],\n\t\t\t\t\t\t[-96.749838, 36.998988],\n\t\t\t\t\t\t[-96.792060, 36.999180],\n\t\t\t\t\t\t[-96.795199, 36.998860],\n\t\t\t\t\t\t[-96.822791, 36.999182],\n\t\t\t\t\t\t[-96.867517, 36.999217],\n\t\t\t\t\t\t[-96.876290, 36.999233],\n\t\t\t\t\t\t[-96.902083, 36.999155],\n\t\t\t\t\t\t[-96.903510, 36.999132],\n\t\t\t\t\t\t[-96.917093, 36.999182],\n\t\t\t\t\t\t[-96.921915, 36.999151],\n\t\t\t\t\t\t[-96.934642, 36.999070],\n\t\t\t\t\t\t[-96.967371, 36.999067],\n\t\t\t\t\t\t[-96.975562, 36.999019],\n\t\t\t\t\t\t[-97.030082, 36.998929],\n\t\t\t\t\t\t[-97.039784, 36.999000],\n\t\t\t\t\t\t[-97.100652, 36.998998],\n\t\t\t\t\t\t[-97.104276, 36.999020],\n\t\t\t\t\t\t[-97.120285, 36.999014],\n\t\t\t\t\t\t[-97.122597, 36.999036],\n\t\t\t\t\t\t[-97.147721, 36.999111],\n\t\t\t\t\t\t[-97.153331, 37.475544],\n\t\t\t\t\t\t[-96.525690, 37.476405],\n\t\t\t\t\t\t[-96.524873, 37.302730],\n\t\t\t\t\t\t[-96.525493, 36.999147]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20041\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"041\",\n\t\t\t\t\"NAME\": \"Dickinson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 847.072000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.963177, 39.132300],\n\t\t\t\t\t\t[-96.963470, 38.964901],\n\t\t\t\t\t\t[-96.926209, 38.978941],\n\t\t\t\t\t\t[-96.890245, 38.870067],\n\t\t\t\t\t\t[-96.927234, 38.812160],\n\t\t\t\t\t\t[-96.930286, 38.609362],\n\t\t\t\t\t\t[-97.364088, 38.609146],\n\t\t\t\t\t\t[-97.371911, 38.609353],\n\t\t\t\t\t\t[-97.371614, 38.957852],\n\t\t\t\t\t\t[-97.371154, 39.131961],\n\t\t\t\t\t\t[-96.963177, 39.132300]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20047\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"047\",\n\t\t\t\t\"NAME\": \"Edwards\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 621.894000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.022136, 38.000236],\n\t\t\t\t\t\t[-99.022627, 37.825358],\n\t\t\t\t\t\t[-99.013318, 37.825336],\n\t\t\t\t\t\t[-99.013550, 37.732970],\n\t\t\t\t\t\t[-99.557681, 37.734925],\n\t\t\t\t\t\t[-99.559580, 37.734888],\n\t\t\t\t\t\t[-99.569879, 37.913016],\n\t\t\t\t\t\t[-99.569533, 38.087372],\n\t\t\t\t\t\t[-99.350359, 38.087594],\n\t\t\t\t\t\t[-99.350289, 38.000745],\n\t\t\t\t\t\t[-99.022136, 38.000236]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20051\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"051\",\n\t\t\t\t\"NAME\": \"Ellis\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 899.912000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.598323, 38.696514],\n\t\t\t\t\t\t[-99.591776, 39.132357],\n\t\t\t\t\t\t[-99.047687, 39.133014],\n\t\t\t\t\t\t[-99.037500, 39.133121],\n\t\t\t\t\t\t[-99.042626, 38.696807],\n\t\t\t\t\t\t[-99.585087, 38.696537],\n\t\t\t\t\t\t[-99.598323, 38.696514]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20053\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"053\",\n\t\t\t\t\"NAME\": \"Ellsworth\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 715.847000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.480377, 38.521841],\n\t\t\t\t\t\t[-98.479958, 38.696916],\n\t\t\t\t\t\t[-98.486108, 38.696878],\n\t\t\t\t\t\t[-98.484861, 38.870791],\n\t\t\t\t\t\t[-97.928595, 38.871102],\n\t\t\t\t\t\t[-97.924795, 38.609880],\n\t\t\t\t\t\t[-97.924269, 38.522755],\n\t\t\t\t\t\t[-98.480377, 38.521841]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20057\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"057\",\n\t\t\t\t\"NAME\": \"Ford\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1098.271000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.216229, 37.475190],\n\t\t\t\t\t\t[-100.214637, 37.826808],\n\t\t\t\t\t\t[-100.227090, 37.914018],\n\t\t\t\t\t\t[-99.569879, 37.913016],\n\t\t\t\t\t\t[-99.559580, 37.734888],\n\t\t\t\t\t\t[-99.556119, 37.467722],\n\t\t\t\t\t\t[-99.774512, 37.467404],\n\t\t\t\t\t\t[-100.107248, 37.474836],\n\t\t\t\t\t\t[-100.155812, 37.475016],\n\t\t\t\t\t\t[-100.158220, 37.474854],\n\t\t\t\t\t\t[-100.161075, 37.475021],\n\t\t\t\t\t\t[-100.216229, 37.475190]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20063\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"063\",\n\t\t\t\t\"NAME\": \"Gove\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1071.665000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.164200, 39.132071],\n\t\t\t\t\t\t[-100.162393, 39.131926],\n\t\t\t\t\t\t[-100.147940, 39.132179],\n\t\t\t\t\t\t[-100.153823, 38.697341],\n\t\t\t\t\t\t[-100.247200, 38.698165],\n\t\t\t\t\t\t[-100.688006, 38.700021],\n\t\t\t\t\t\t[-100.818698, 38.699861],\n\t\t\t\t\t\t[-100.811858, 39.133360],\n\t\t\t\t\t\t[-100.775311, 39.133375],\n\t\t\t\t\t\t[-100.775177, 39.133265],\n\t\t\t\t\t\t[-100.721296, 39.133381],\n\t\t\t\t\t\t[-100.164200, 39.132071]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20073\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"073\",\n\t\t\t\t\"NAME\": \"Greenwood\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1143.300000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.523755, 37.955899],\n\t\t\t\t\t\t[-96.522782, 38.086370],\n\t\t\t\t\t\t[-96.358099, 38.085817],\n\t\t\t\t\t\t[-96.357277, 38.172660],\n\t\t\t\t\t\t[-95.958862, 38.170939],\n\t\t\t\t\t\t[-95.959046, 38.040195],\n\t\t\t\t\t\t[-95.958554, 37.909245],\n\t\t\t\t\t\t[-95.960876, 37.734304],\n\t\t\t\t\t\t[-95.961002, 37.603761],\n\t\t\t\t\t\t[-96.525300, 37.607015],\n\t\t\t\t\t\t[-96.523755, 37.955899]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20077\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"077\",\n\t\t\t\t\"NAME\": \"Harper\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 801.269000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.802313, 36.998713],\n\t\t\t\t\t\t[-98.033955, 36.998366],\n\t\t\t\t\t\t[-98.039890, 36.998349],\n\t\t\t\t\t\t[-98.045342, 36.998327],\n\t\t\t\t\t\t[-98.111985, 36.998133],\n\t\t\t\t\t\t[-98.147452, 36.998162],\n\t\t\t\t\t\t[-98.177596, 36.998009],\n\t\t\t\t\t\t[-98.208218, 36.997997],\n\t\t\t\t\t\t[-98.219499, 36.997824],\n\t\t\t\t\t\t[-98.237712, 36.997972],\n\t\t\t\t\t\t[-98.346188, 36.997962],\n\t\t\t\t\t\t[-98.347149, 36.997962],\n\t\t\t\t\t\t[-98.349804, 37.384056],\n\t\t\t\t\t\t[-97.807057, 37.386293],\n\t\t\t\t\t\t[-97.804566, 37.386298],\n\t\t\t\t\t\t[-97.802313, 36.998713]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20079\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"079\",\n\t\t\t\t\"NAME\": \"Harvey\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 539.754000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.701969, 37.911325],\n\t\t\t\t\t\t[-97.701841, 38.173814],\n\t\t\t\t\t\t[-97.371750, 38.173673],\n\t\t\t\t\t\t[-97.153093, 38.174634],\n\t\t\t\t\t\t[-97.152913, 38.087704],\n\t\t\t\t\t\t[-97.152476, 37.912733],\n\t\t\t\t\t\t[-97.701969, 37.911325]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20087\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"087\",\n\t\t\t\t\"NAME\": \"Jefferson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 532.574000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.285425, 39.032162],\n\t\t\t\t\t\t[-95.500254, 39.056656],\n\t\t\t\t\t\t[-95.596759, 39.064672],\n\t\t\t\t\t\t[-95.589472, 39.216081],\n\t\t\t\t\t\t[-95.589295, 39.419086],\n\t\t\t\t\t\t[-95.570351, 39.419050],\n\t\t\t\t\t\t[-95.180891, 39.419218],\n\t\t\t\t\t\t[-95.187103, 39.044109],\n\t\t\t\t\t\t[-95.285425, 39.032162]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22011\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"011\",\n\t\t\t\t\"NAME\": \"Beauregard\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 1157.342000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.741701, 30.403007],\n\t\t\t\t\t\t[-93.702665, 30.429947],\n\t\t\t\t\t\t[-93.698302, 30.438657],\n\t\t\t\t\t\t[-93.697828, 30.443838],\n\t\t\t\t\t\t[-93.710117, 30.506400],\n\t\t\t\t\t\t[-93.740045, 30.538765],\n\t\t\t\t\t\t[-93.727844, 30.574070],\n\t\t\t\t\t\t[-93.578395, 30.802047],\n\t\t\t\t\t\t[-93.563292, 30.818503],\n\t\t\t\t\t\t[-93.558672, 30.868829],\n\t\t\t\t\t\t[-93.558617, 30.869424],\n\t\t\t\t\t\t[-93.554970, 30.876685],\n\t\t\t\t\t\t[-93.554576, 30.877470],\n\t\t\t\t\t\t[-92.978453, 30.878175],\n\t\t\t\t\t\t[-92.976886, 30.774040],\n\t\t\t\t\t\t[-92.979170, 30.598340],\n\t\t\t\t\t\t[-93.130294, 30.597886],\n\t\t\t\t\t\t[-93.131155, 30.423612],\n\t\t\t\t\t\t[-93.131109, 30.403057],\n\t\t\t\t\t\t[-93.385150, 30.402630],\n\t\t\t\t\t\t[-93.384673, 30.490109],\n\t\t\t\t\t\t[-93.486384, 30.490523],\n\t\t\t\t\t\t[-93.486116, 30.402500],\n\t\t\t\t\t\t[-93.741701, 30.403007]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22015\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"015\",\n\t\t\t\t\"NAME\": \"Bossier\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 840.057000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.428190, 32.235897],\n\t\t\t\t\t\t[-93.457933, 32.235970],\n\t\t\t\t\t\t[-93.463338, 32.237159],\n\t\t\t\t\t\t[-93.471249, 32.237186],\n\t\t\t\t\t\t[-93.659041, 32.406058],\n\t\t\t\t\t\t[-93.685569, 32.395498],\n\t\t\t\t\t\t[-93.661396, 32.427624],\n\t\t\t\t\t\t[-93.699506, 32.497480],\n\t\t\t\t\t\t[-93.767444, 32.538401],\n\t\t\t\t\t\t[-93.739474, 32.590773],\n\t\t\t\t\t\t[-93.782111, 32.712212],\n\t\t\t\t\t\t[-93.819169, 32.736002],\n\t\t\t\t\t\t[-93.783233, 32.784360],\n\t\t\t\t\t\t[-93.824253, 32.792451],\n\t\t\t\t\t\t[-93.785181, 32.857353],\n\t\t\t\t\t\t[-93.842597, 32.946764],\n\t\t\t\t\t\t[-93.814553, 33.019372],\n\t\t\t\t\t\t[-93.804930, 33.019347],\n\t\t\t\t\t\t[-93.531499, 33.018643],\n\t\t\t\t\t\t[-93.524916, 33.018637],\n\t\t\t\t\t\t[-93.520994, 33.018616],\n\t\t\t\t\t\t[-93.530405, 32.975397],\n\t\t\t\t\t\t[-93.448039, 32.866321],\n\t\t\t\t\t\t[-93.441212, 32.410431],\n\t\t\t\t\t\t[-93.372781, 32.410153],\n\t\t\t\t\t\t[-93.428190, 32.235897]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22017\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"017\",\n\t\t\t\t\"NAME\": \"Caddo\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 878.539000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.043147, 32.693030],\n\t\t\t\t\t\t[-94.043147, 32.693031],\n\t\t\t\t\t\t[-94.042947, 32.767991],\n\t\t\t\t\t\t[-94.043027, 32.776863],\n\t\t\t\t\t\t[-94.042938, 32.780558],\n\t\t\t\t\t\t[-94.042829, 32.785277],\n\t\t\t\t\t\t[-94.042747, 32.786973],\n\t\t\t\t\t\t[-94.043026, 32.797476],\n\t\t\t\t\t\t[-94.042785, 32.871486],\n\t\t\t\t\t\t[-94.043025, 32.880446],\n\t\t\t\t\t\t[-94.042886, 32.880965],\n\t\t\t\t\t\t[-94.042886, 32.881089],\n\t\t\t\t\t\t[-94.042859, 32.892771],\n\t\t\t\t\t\t[-94.042885, 32.898911],\n\t\t\t\t\t\t[-94.043092, 32.910021],\n\t\t\t\t\t\t[-94.043067, 32.937903],\n\t\t\t\t\t\t[-94.043088, 32.955592],\n\t\t\t\t\t\t[-94.042964, 33.019219],\n\t\t\t\t\t\t[-94.041444, 33.019188],\n\t\t\t\t\t\t[-94.035839, 33.019145],\n\t\t\t\t\t\t[-94.027983, 33.019139],\n\t\t\t\t\t\t[-94.024475, 33.019207],\n\t\t\t\t\t\t[-93.814553, 33.019372],\n\t\t\t\t\t\t[-93.842597, 32.946764],\n\t\t\t\t\t\t[-93.785181, 32.857353],\n\t\t\t\t\t\t[-93.824253, 32.792451],\n\t\t\t\t\t\t[-93.783233, 32.784360],\n\t\t\t\t\t\t[-93.819169, 32.736002],\n\t\t\t\t\t\t[-93.782111, 32.712212],\n\t\t\t\t\t\t[-93.739474, 32.590773],\n\t\t\t\t\t\t[-93.767444, 32.538401],\n\t\t\t\t\t\t[-93.699506, 32.497480],\n\t\t\t\t\t\t[-93.661396, 32.427624],\n\t\t\t\t\t\t[-93.685569, 32.395498],\n\t\t\t\t\t\t[-93.659041, 32.406058],\n\t\t\t\t\t\t[-93.471249, 32.237186],\n\t\t\t\t\t\t[-93.614690, 32.237526],\n\t\t\t\t\t\t[-93.666472, 32.317444],\n\t\t\t\t\t\t[-93.791282, 32.340224],\n\t\t\t\t\t\t[-93.951085, 32.195545],\n\t\t\t\t\t\t[-94.042621, 32.196005],\n\t\t\t\t\t\t[-94.042662, 32.218146],\n\t\t\t\t\t\t[-94.042732, 32.269620],\n\t\t\t\t\t\t[-94.042733, 32.269696],\n\t\t\t\t\t\t[-94.042739, 32.363559],\n\t\t\t\t\t\t[-94.042763, 32.373332],\n\t\t\t\t\t\t[-94.042901, 32.392283],\n\t\t\t\t\t\t[-94.042923, 32.399918],\n\t\t\t\t\t\t[-94.042899, 32.400659],\n\t\t\t\t\t\t[-94.042986, 32.435507],\n\t\t\t\t\t\t[-94.042908, 32.439891],\n\t\t\t\t\t\t[-94.042903, 32.470386],\n\t\t\t\t\t\t[-94.042875, 32.471348],\n\t\t\t\t\t\t[-94.042902, 32.472906],\n\t\t\t\t\t\t[-94.042995, 32.478004],\n\t\t\t\t\t\t[-94.042955, 32.480261],\n\t\t\t\t\t\t[-94.043072, 32.484300],\n\t\t\t\t\t\t[-94.043089, 32.486561],\n\t\t\t\t\t\t[-94.042911, 32.492852],\n\t\t\t\t\t\t[-94.042885, 32.505145],\n\t\t\t\t\t\t[-94.043081, 32.513613],\n\t\t\t\t\t\t[-94.043142, 32.559502],\n\t\t\t\t\t\t[-94.043083, 32.564261],\n\t\t\t\t\t\t[-94.042919, 32.610142],\n\t\t\t\t\t\t[-94.042929, 32.618260],\n\t\t\t\t\t\t[-94.042926, 32.622015],\n\t\t\t\t\t\t[-94.042824, 32.640305],\n\t\t\t\t\t\t[-94.042780, 32.643466],\n\t\t\t\t\t\t[-94.042913, 32.655127],\n\t\t\t\t\t\t[-94.043147, 32.693030]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22023\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"023\",\n\t\t\t\t\"NAME\": \"Cameron\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 1284.887000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.840799, 29.914423],\n\t\t\t\t\t\t[-93.789431, 29.987812],\n\t\t\t\t\t\t[-93.756630, 30.014163],\n\t\t\t\t\t\t[-93.752038, 30.016403],\n\t\t\t\t\t\t[-93.722481, 30.050898],\n\t\t\t\t\t\t[-93.128475, 30.052587],\n\t\t\t\t\t\t[-92.996371, 30.038479],\n\t\t\t\t\t\t[-92.756546, 30.039326],\n\t\t\t\t\t\t[-92.738604, 30.037323],\n\t\t\t\t\t\t[-92.615610, 30.038168],\n\t\t\t\t\t\t[-92.617725, 29.579092],\n\t\t\t\t\t\t[-92.653651, 29.588065],\n\t\t\t\t\t\t[-92.744126, 29.617608],\n\t\t\t\t\t\t[-92.871232, 29.670028],\n\t\t\t\t\t\t[-92.940455, 29.701033],\n\t\t\t\t\t\t[-92.974305, 29.713980],\n\t\t\t\t\t\t[-93.065354, 29.740966],\n\t\t\t\t\t\t[-93.088182, 29.749125],\n\t\t\t\t\t\t[-93.176930, 29.770487],\n\t\t\t\t\t\t[-93.226934, 29.777519],\n\t\t\t\t\t\t[-93.267456, 29.778113],\n\t\t\t\t\t\t[-93.295573, 29.775071],\n\t\t\t\t\t\t[-93.342104, 29.763402],\n\t\t\t\t\t\t[-93.344993, 29.759618],\n\t\t\t\t\t\t[-93.347331, 29.759046],\n\t\t\t\t\t\t[-93.372029, 29.763049],\n\t\t\t\t\t\t[-93.438973, 29.768949],\n\t\t\t\t\t\t[-93.475252, 29.769242],\n\t\t\t\t\t\t[-93.538462, 29.763299],\n\t\t\t\t\t\t[-93.590786, 29.755649],\n\t\t\t\t\t\t[-93.635304, 29.752806],\n\t\t\t\t\t\t[-93.683640, 29.747153],\n\t\t\t\t\t\t[-93.741948, 29.736343],\n\t\t\t\t\t\t[-93.766048, 29.729500],\n\t\t\t\t\t\t[-93.799250, 29.715260],\n\t\t\t\t\t\t[-93.818995, 29.704076],\n\t\t\t\t\t\t[-93.837971, 29.690619],\n\t\t\t\t\t\t[-93.892246, 29.765241],\n\t\t\t\t\t\t[-93.898470, 29.771577],\n\t\t\t\t\t\t[-93.890679, 29.843159],\n\t\t\t\t\t\t[-93.840799, 29.914423]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22031\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"031\",\n\t\t\t\t\"NAME\": \"De Soto\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 875.579000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.015630, 31.979856],\n\t\t\t\t\t\t[-94.042720, 31.999265],\n\t\t\t\t\t\t[-94.042700, 32.056012],\n\t\t\t\t\t\t[-94.042337, 32.119914],\n\t\t\t\t\t\t[-94.042681, 32.137956],\n\t\t\t\t\t\t[-94.042591, 32.158097],\n\t\t\t\t\t\t[-94.042539, 32.166826],\n\t\t\t\t\t\t[-94.042566, 32.166894],\n\t\t\t\t\t\t[-94.042621, 32.196005],\n\t\t\t\t\t\t[-93.951085, 32.195545],\n\t\t\t\t\t\t[-93.791282, 32.340224],\n\t\t\t\t\t\t[-93.666472, 32.317444],\n\t\t\t\t\t\t[-93.614690, 32.237526],\n\t\t\t\t\t\t[-93.535963, 32.193126],\n\t\t\t\t\t\t[-93.541353, 32.105880],\n\t\t\t\t\t\t[-93.441506, 31.989180],\n\t\t\t\t\t\t[-93.355452, 31.932222],\n\t\t\t\t\t\t[-93.440570, 31.913730],\n\t\t\t\t\t\t[-93.441171, 31.845233],\n\t\t\t\t\t\t[-93.878225, 31.844276],\n\t\t\t\t\t\t[-93.889193, 31.856819],\n\t\t\t\t\t\t[-93.920290, 31.888651],\n\t\t\t\t\t\t[-93.932135, 31.893672],\n\t\t\t\t\t\t[-93.975377, 31.923660],\n\t\t\t\t\t\t[-94.015630, 31.979856]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22035\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"035\",\n\t\t\t\t\"NAME\": \"East Carroll\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 420.704000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.090771, 32.563978],\n\t\t\t\t\t\t[-91.090611, 32.562705],\n\t\t\t\t\t\t[-91.133713, 32.537912],\n\t\t\t\t\t\t[-91.457643, 32.537807],\n\t\t\t\t\t\t[-91.430989, 32.561186],\n\t\t\t\t\t\t[-91.445299, 32.581956],\n\t\t\t\t\t\t[-91.344845, 32.756659],\n\t\t\t\t\t\t[-91.309380, 32.935237],\n\t\t\t\t\t\t[-91.265018, 33.005084],\n\t\t\t\t\t\t[-91.166073, 33.004106],\n\t\t\t\t\t\t[-91.201842, 32.961212],\n\t\t\t\t\t\t[-91.214027, 32.930320],\n\t\t\t\t\t\t[-91.212837, 32.922104],\n\t\t\t\t\t\t[-91.208263, 32.915354],\n\t\t\t\t\t\t[-91.196785, 32.906784],\n\t\t\t\t\t\t[-91.175405, 32.899998],\n\t\t\t\t\t\t[-91.159975, 32.899879],\n\t\t\t\t\t\t[-91.145076, 32.905494],\n\t\t\t\t\t\t[-91.134041, 32.917676],\n\t\t\t\t\t\t[-91.132115, 32.923122],\n\t\t\t\t\t\t[-91.130947, 32.963815],\n\t\t\t\t\t\t[-91.138585, 32.971352],\n\t\t\t\t\t\t[-91.134414, 32.980533],\n\t\t\t\t\t\t[-91.125107, 32.984669],\n\t\t\t\t\t\t[-91.106581, 32.988938],\n\t\t\t\t\t\t[-91.094265, 32.984371],\n\t\t\t\t\t\t[-91.086802, 32.976266],\n\t\t\t\t\t\t[-91.063974, 32.924113],\n\t\t\t\t\t\t[-91.063809, 32.903709],\n\t\t\t\t\t\t[-91.070602, 32.888659],\n\t\t\t\t\t\t[-91.086683, 32.873392],\n\t\t\t\t\t\t[-91.105631, 32.858396],\n\t\t\t\t\t\t[-91.116091, 32.855641],\n\t\t\t\t\t\t[-91.127886, 32.855059],\n\t\t\t\t\t\t[-91.145002, 32.842870],\n\t\t\t\t\t\t[-91.158336, 32.822304],\n\t\t\t\t\t\t[-91.161669, 32.812465],\n\t\t\t\t\t\t[-91.164397, 32.785821],\n\t\t\t\t\t\t[-91.165328, 32.751301],\n\t\t\t\t\t\t[-91.163389, 32.747009],\n\t\t\t\t\t\t[-91.154461, 32.742339],\n\t\t\t\t\t\t[-91.123152, 32.742798],\n\t\t\t\t\t\t[-91.077176, 32.732534],\n\t\t\t\t\t\t[-91.060766, 32.727494],\n\t\t\t\t\t\t[-91.054481, 32.722259],\n\t\t\t\t\t\t[-91.057043, 32.712576],\n\t\t\t\t\t\t[-91.063946, 32.702926],\n\t\t\t\t\t\t[-91.076061, 32.693751],\n\t\t\t\t\t\t[-91.098762, 32.685291],\n\t\t\t\t\t\t[-91.118258, 32.674075],\n\t\t\t\t\t\t[-91.152081, 32.641508],\n\t\t\t\t\t\t[-91.153821, 32.631282],\n\t\t\t\t\t\t[-91.151318, 32.615919],\n\t\t\t\t\t\t[-91.146204, 32.604144],\n\t\t\t\t\t\t[-91.141148, 32.597209],\n\t\t\t\t\t\t[-91.127912, 32.586493],\n\t\t\t\t\t\t[-91.119854, 32.584795],\n\t\t\t\t\t\t[-91.104111, 32.584657],\n\t\t\t\t\t\t[-91.096774, 32.576652],\n\t\t\t\t\t\t[-91.090771, 32.563978]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22041\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"041\",\n\t\t\t\t\"NAME\": \"Franklin\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 624.585000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.575721, 31.882560],\n\t\t\t\t\t\t[-91.596922, 31.969758],\n\t\t\t\t\t\t[-91.647500, 31.970428],\n\t\t\t\t\t\t[-91.729158, 31.882510],\n\t\t\t\t\t\t[-91.804869, 31.893193],\n\t\t\t\t\t\t[-91.889687, 31.971474],\n\t\t\t\t\t\t[-91.894729, 32.151550],\n\t\t\t\t\t\t[-91.775019, 32.243333],\n\t\t\t\t\t\t[-91.764379, 32.330018],\n\t\t\t\t\t\t[-91.634931, 32.405371],\n\t\t\t\t\t\t[-91.476739, 32.405808],\n\t\t\t\t\t\t[-91.526719, 32.300675],\n\t\t\t\t\t\t[-91.492718, 32.203349],\n\t\t\t\t\t\t[-91.489761, 32.092422],\n\t\t\t\t\t\t[-91.575721, 31.882560]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22043\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"043\",\n\t\t\t\t\"NAME\": \"Grant\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 643.026000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.973529, 31.708922],\n\t\t\t\t\t\t[-92.619976, 31.709572],\n\t\t\t\t\t\t[-92.619224, 31.797149],\n\t\t\t\t\t\t[-92.362608, 31.796633],\n\t\t\t\t\t\t[-92.347739, 31.696584],\n\t\t\t\t\t\t[-92.384441, 31.620437],\n\t\t\t\t\t\t[-92.306855, 31.589520],\n\t\t\t\t\t\t[-92.266202, 31.492791],\n\t\t\t\t\t\t[-92.196131, 31.477877],\n\t\t\t\t\t\t[-92.631944, 31.390478],\n\t\t\t\t\t\t[-92.694666, 31.407240],\n\t\t\t\t\t\t[-92.718983, 31.517594],\n\t\t\t\t\t\t[-92.806206, 31.598548],\n\t\t\t\t\t\t[-92.908313, 31.625169],\n\t\t\t\t\t\t[-92.973529, 31.708922]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22049\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"049\",\n\t\t\t\t\"NAME\": \"Jackson\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 569.183000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.311851, 32.277441],\n\t\t\t\t\t\t[-92.312218, 32.146123],\n\t\t\t\t\t\t[-92.814737, 32.146907],\n\t\t\t\t\t\t[-92.774936, 32.237055],\n\t\t\t\t\t\t[-92.777197, 32.453455],\n\t\t\t\t\t\t[-92.621678, 32.452999],\n\t\t\t\t\t\t[-92.622335, 32.496406],\n\t\t\t\t\t\t[-92.415350, 32.495486],\n\t\t\t\t\t\t[-92.415418, 32.407812],\n\t\t\t\t\t\t[-92.311829, 32.320755],\n\t\t\t\t\t\t[-92.311851, 32.277441]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22051\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"051\",\n\t\t\t\t\"NAME\": \"Jefferson\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 295.632000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.228157, 29.692028],\n\t\t\t\t\t\t[-90.173202, 29.827524],\n\t\t\t\t\t\t[-90.240173, 29.862117],\n\t\t\t\t\t\t[-90.279533, 29.967971],\n\t\t\t\t\t\t[-90.280296, 29.972618],\n\t\t\t\t\t\t[-90.280143, 29.992744],\n\t\t\t\t\t\t[-90.279510, 30.006448],\n\t\t\t\t\t\t[-90.279739, 30.013338],\n\t\t\t\t\t\t[-90.279220, 30.049118],\n\t\t\t\t\t\t[-90.277855, 30.230888],\n\t\t\t\t\t\t[-90.243034, 30.224447],\n\t\t\t\t\t\t[-90.105456, 30.191801],\n\t\t\t\t\t\t[-90.119373, 30.036637],\n\t\t\t\t\t\t[-90.118541, 30.029845],\n\t\t\t\t\t\t[-90.120959, 30.021975],\n\t\t\t\t\t\t[-90.124775, 29.975791],\n\t\t\t\t\t\t[-90.126559, 29.970265],\n\t\t\t\t\t\t[-90.140074, 29.947904],\n\t\t\t\t\t\t[-90.058547, 29.945334],\n\t\t\t\t\t\t[-90.008056, 29.895528],\n\t\t\t\t\t\t[-90.075683, 29.771850],\n\t\t\t\t\t\t[-89.980018, 29.607582],\n\t\t\t\t\t\t[-89.961950, 29.432874],\n\t\t\t\t\t\t[-89.964563, 29.434615],\n\t\t\t\t\t\t[-89.972934, 29.443748],\n\t\t\t\t\t\t[-89.991961, 29.463536],\n\t\t\t\t\t\t[-90.012510, 29.462775],\n\t\t\t\t\t\t[-90.018598, 29.452120],\n\t\t\t\t\t\t[-90.022404, 29.444509],\n\t\t\t\t\t\t[-90.029466, 29.432015],\n\t\t\t\t\t\t[-90.137504, 29.477163],\n\t\t\t\t\t\t[-90.186172, 29.563341],\n\t\t\t\t\t\t[-90.155807, 29.677530],\n\t\t\t\t\t\t[-90.228157, 29.692028]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22055\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"055\",\n\t\t\t\t\"NAME\": \"Lafayette\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 268.720000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.284675, 30.147443],\n\t\t\t\t\t\t[-92.142184, 30.298817],\n\t\t\t\t\t\t[-92.056066, 30.378237],\n\t\t\t\t\t\t[-91.988718, 30.368598],\n\t\t\t\t\t\t[-91.942818, 30.236599],\n\t\t\t\t\t\t[-91.980328, 30.185248],\n\t\t\t\t\t\t[-91.905544, 30.154616],\n\t\t\t\t\t\t[-91.950998, 30.073213],\n\t\t\t\t\t\t[-91.962790, 30.041370],\n\t\t\t\t\t\t[-91.963827, 30.038175],\n\t\t\t\t\t\t[-91.964458, 30.036918],\n\t\t\t\t\t\t[-92.128120, 30.115904],\n\t\t\t\t\t\t[-92.284675, 30.147443]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21035\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"035\",\n\t\t\t\t\"NAME\": \"Calloway\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 385.021000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.070532, 36.678118],\n\t\t\t\t\t\t[-88.068208, 36.659747],\n\t\t\t\t\t\t[-88.055604, 36.635710],\n\t\t\t\t\t\t[-88.045127, 36.602939],\n\t\t\t\t\t\t[-88.035625, 36.561736],\n\t\t\t\t\t\t[-88.032489, 36.540662],\n\t\t\t\t\t\t[-88.037822, 36.513850],\n\t\t\t\t\t\t[-88.039481, 36.510408],\n\t\t\t\t\t\t[-88.053205, 36.497129],\n\t\t\t\t\t\t[-88.053292, 36.497130],\n\t\t\t\t\t\t[-88.320794, 36.500432],\n\t\t\t\t\t\t[-88.325895, 36.500483],\n\t\t\t\t\t\t[-88.330799, 36.500531],\n\t\t\t\t\t\t[-88.416360, 36.500756],\n\t\t\t\t\t\t[-88.450161, 36.501101],\n\t\t\t\t\t\t[-88.452543, 36.500872],\n\t\t\t\t\t\t[-88.472564, 36.501028],\n\t\t\t\t\t\t[-88.489075, 36.501068],\n\t\t\t\t\t\t[-88.485697, 36.750328],\n\t\t\t\t\t\t[-88.110831, 36.747150],\n\t\t\t\t\t\t[-88.084215, 36.713147],\n\t\t\t\t\t\t[-88.070532, 36.678118]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21039\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"039\",\n\t\t\t\t\"NAME\": \"Carlisle\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 189.434000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.100766, 36.943973],\n\t\t\t\t\t\t[-89.100794, 36.944006],\n\t\t\t\t\t\t[-88.988811, 36.919491],\n\t\t\t\t\t\t[-88.815952, 36.954100],\n\t\t\t\t\t\t[-88.812897, 36.946864],\n\t\t\t\t\t\t[-88.813229, 36.773115],\n\t\t\t\t\t\t[-89.123548, 36.785220],\n\t\t\t\t\t\t[-89.123530, 36.785309],\n\t\t\t\t\t\t[-89.179229, 36.812915],\n\t\t\t\t\t\t[-89.178574, 36.816554],\n\t\t\t\t\t\t[-89.177177, 36.835779],\n\t\t\t\t\t\t[-89.147674, 36.847148],\n\t\t\t\t\t\t[-89.100766, 36.943973]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21041\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"041\",\n\t\t\t\t\"NAME\": \"Carroll\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 128.569000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.074583, 38.596838],\n\t\t\t\t\t\t[-85.168270, 38.585448],\n\t\t\t\t\t\t[-85.333285, 38.740480],\n\t\t\t\t\t\t[-85.289226, 38.742410],\n\t\t\t\t\t\t[-85.275454, 38.741172],\n\t\t\t\t\t\t[-85.258846, 38.737754],\n\t\t\t\t\t\t[-85.246505, 38.731821],\n\t\t\t\t\t\t[-85.226062, 38.705456],\n\t\t\t\t\t\t[-85.213257, 38.695446],\n\t\t\t\t\t\t[-85.201498, 38.691575],\n\t\t\t\t\t\t[-85.189362, 38.687579],\n\t\t\t\t\t\t[-85.172528, 38.688082],\n\t\t\t\t\t\t[-85.156158, 38.692251],\n\t\t\t\t\t\t[-85.138680, 38.699168],\n\t\t\t\t\t\t[-85.106902, 38.720789],\n\t\t\t\t\t\t[-85.100963, 38.726800],\n\t\t\t\t\t\t[-85.024205, 38.763311],\n\t\t\t\t\t\t[-84.934536, 38.662130],\n\t\t\t\t\t\t[-85.074583, 38.596838]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21045\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"045\",\n\t\t\t\t\"NAME\": \"Casey\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 444.230000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.043316, 37.186028],\n\t\t\t\t\t\t[-85.056898, 37.257041],\n\t\t\t\t\t\t[-85.165174, 37.310396],\n\t\t\t\t\t\t[-85.073772, 37.413669],\n\t\t\t\t\t\t[-85.039674, 37.545232],\n\t\t\t\t\t\t[-84.847326, 37.547894],\n\t\t\t\t\t\t[-84.850816, 37.427143],\n\t\t\t\t\t\t[-84.722826, 37.360043],\n\t\t\t\t\t\t[-84.720712, 37.238328],\n\t\t\t\t\t\t[-84.809338, 37.175034],\n\t\t\t\t\t\t[-84.901112, 37.116297],\n\t\t\t\t\t\t[-84.954406, 37.102271],\n\t\t\t\t\t\t[-85.043316, 37.186028]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21057\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"057\",\n\t\t\t\t\"NAME\": \"Cumberland\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 305.182000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.451830, 36.938138],\n\t\t\t\t\t\t[-85.232026, 36.925069],\n\t\t\t\t\t\t[-85.274950, 36.897901],\n\t\t\t\t\t\t[-85.215405, 36.854467],\n\t\t\t\t\t\t[-85.246357, 36.744294],\n\t\t\t\t\t\t[-85.295990, 36.625488],\n\t\t\t\t\t\t[-85.436418, 36.618194],\n\t\t\t\t\t\t[-85.596214, 36.818039],\n\t\t\t\t\t\t[-85.451830, 36.938138]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21065\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"065\",\n\t\t\t\t\"NAME\": \"Estill\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 253.078000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.905570, 37.542856],\n\t\t\t\t\t\t[-83.965244, 37.581421],\n\t\t\t\t\t\t[-84.090364, 37.566227],\n\t\t\t\t\t\t[-84.080337, 37.853066],\n\t\t\t\t\t\t[-84.001967, 37.837592],\n\t\t\t\t\t\t[-83.906251, 37.759363],\n\t\t\t\t\t\t[-83.722100, 37.716420],\n\t\t\t\t\t\t[-83.824102, 37.662746],\n\t\t\t\t\t\t[-83.905570, 37.542856]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21067\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"067\",\n\t\t\t\t\"NAME\": \"Fayette\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 283.649000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.401847, 38.207889],\n\t\t\t\t\t\t[-84.380928, 38.113563],\n\t\t\t\t\t\t[-84.286461, 38.067028],\n\t\t\t\t\t\t[-84.337393, 37.892007],\n\t\t\t\t\t\t[-84.435720, 37.847202],\n\t\t\t\t\t\t[-84.479277, 37.940076],\n\t\t\t\t\t\t[-84.660135, 38.003745],\n\t\t\t\t\t\t[-84.657498, 38.017835],\n\t\t\t\t\t\t[-84.625079, 38.116397],\n\t\t\t\t\t\t[-84.620650, 38.129527],\n\t\t\t\t\t\t[-84.401847, 38.207889]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21071\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"071\",\n\t\t\t\t\"NAME\": \"Floyd\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 393.345000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.925460, 37.486525],\n\t\t\t\t\t\t[-82.878723, 37.540134],\n\t\t\t\t\t\t[-82.940763, 37.716338],\n\t\t\t\t\t\t[-82.763313, 37.756120],\n\t\t\t\t\t\t[-82.640750, 37.720182],\n\t\t\t\t\t\t[-82.563561, 37.684844],\n\t\t\t\t\t\t[-82.623112, 37.503541],\n\t\t\t\t\t\t[-82.584711, 37.466574],\n\t\t\t\t\t\t[-82.672375, 37.306841],\n\t\t\t\t\t\t[-82.710805, 37.285323],\n\t\t\t\t\t\t[-82.752346, 37.308039],\n\t\t\t\t\t\t[-82.767605, 37.427777],\n\t\t\t\t\t\t[-82.925460, 37.486525]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21079\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"079\",\n\t\t\t\t\"NAME\": \"Garrard\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 230.077000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.716925, 37.815389],\n\t\t\t\t\t\t[-84.675889, 37.826242],\n\t\t\t\t\t\t[-84.570310, 37.728713],\n\t\t\t\t\t\t[-84.525643, 37.769497],\n\t\t\t\t\t\t[-84.347805, 37.539064],\n\t\t\t\t\t\t[-84.374440, 37.472663],\n\t\t\t\t\t\t[-84.446719, 37.485893],\n\t\t\t\t\t\t[-84.658296, 37.634501],\n\t\t\t\t\t\t[-84.744888, 37.713075],\n\t\t\t\t\t\t[-84.696741, 37.722830],\n\t\t\t\t\t\t[-84.716925, 37.815389]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21083\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"083\",\n\t\t\t\t\"NAME\": \"Graves\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 551.743000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.489210, 36.501068],\n\t\t\t\t\t\t[-88.511920, 36.501457],\n\t\t\t\t\t\t[-88.512270, 36.501506],\n\t\t\t\t\t\t[-88.516346, 36.501431],\n\t\t\t\t\t\t[-88.516427, 36.501430],\n\t\t\t\t\t\t[-88.545192, 36.501814],\n\t\t\t\t\t\t[-88.577283, 36.501940],\n\t\t\t\t\t\t[-88.661133, 36.502243],\n\t\t\t\t\t\t[-88.715255, 36.502662],\n\t\t\t\t\t\t[-88.747523, 36.502834],\n\t\t\t\t\t\t[-88.799594, 36.502757],\n\t\t\t\t\t\t[-88.816765, 36.502815],\n\t\t\t\t\t\t[-88.813229, 36.773115],\n\t\t\t\t\t\t[-88.812897, 36.946864],\n\t\t\t\t\t\t[-88.484103, 36.942096],\n\t\t\t\t\t\t[-88.485697, 36.750328],\n\t\t\t\t\t\t[-88.489075, 36.501068],\n\t\t\t\t\t\t[-88.489210, 36.501068]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21085\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"085\",\n\t\t\t\t\"NAME\": \"Grayson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 496.698000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.612095, 37.395123],\n\t\t\t\t\t\t[-86.664055, 37.546105],\n\t\t\t\t\t\t[-86.592810, 37.564360],\n\t\t\t\t\t\t[-86.503369, 37.622191],\n\t\t\t\t\t\t[-86.346230, 37.562718],\n\t\t\t\t\t\t[-86.275270, 37.593519],\n\t\t\t\t\t\t[-86.114095, 37.567131],\n\t\t\t\t\t\t[-86.047598, 37.449933],\n\t\t\t\t\t\t[-86.019089, 37.394537],\n\t\t\t\t\t\t[-86.072351, 37.381071],\n\t\t\t\t\t\t[-86.064554, 37.348613],\n\t\t\t\t\t\t[-86.157589, 37.335649],\n\t\t\t\t\t\t[-86.469126, 37.321099],\n\t\t\t\t\t\t[-86.487152, 37.362501],\n\t\t\t\t\t\t[-86.612095, 37.395123]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21091\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"091\",\n\t\t\t\t\"NAME\": \"Hancock\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 187.652000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.823429, 37.737754],\n\t\t\t\t\t\t[-86.854035, 37.840811],\n\t\t\t\t\t\t[-86.978830, 37.930214],\n\t\t\t\t\t\t[-86.919329, 37.936664],\n\t\t\t\t\t\t[-86.902413, 37.946161],\n\t\t\t\t\t\t[-86.884961, 37.964373],\n\t\t\t\t\t\t[-86.855950, 37.987292],\n\t\t\t\t\t\t[-86.823491, 37.998939],\n\t\t\t\t\t\t[-86.815267, 37.998877],\n\t\t\t\t\t\t[-86.814776, 37.998638],\n\t\t\t\t\t\t[-86.794985, 37.988982],\n\t\t\t\t\t\t[-86.787695, 37.971449],\n\t\t\t\t\t\t[-86.770179, 37.940264],\n\t\t\t\t\t\t[-86.750990, 37.912893],\n\t\t\t\t\t\t[-86.740877, 37.902568],\n\t\t\t\t\t\t[-86.731460, 37.894340],\n\t\t\t\t\t\t[-86.723510, 37.892831],\n\t\t\t\t\t\t[-86.718462, 37.893123],\n\t\t\t\t\t\t[-86.709164, 37.897640],\n\t\t\t\t\t\t[-86.660293, 37.865057],\n\t\t\t\t\t\t[-86.655296, 37.842508],\n\t\t\t\t\t\t[-86.655285, 37.842506],\n\t\t\t\t\t\t[-86.677871, 37.792845],\n\t\t\t\t\t\t[-86.638935, 37.661877],\n\t\t\t\t\t\t[-86.823429, 37.737754]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21097\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"097\",\n\t\t\t\t\"NAME\": \"Harrison\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 306.364000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.442661, 38.283236],\n\t\t\t\t\t\t[-84.440725, 38.296385],\n\t\t\t\t\t\t[-84.432831, 38.299442],\n\t\t\t\t\t\t[-84.443756, 38.324310],\n\t\t\t\t\t\t[-84.557375, 38.492917],\n\t\t\t\t\t\t[-84.476299, 38.542723],\n\t\t\t\t\t\t[-84.205346, 38.582039],\n\t\t\t\t\t\t[-84.211319, 38.550864],\n\t\t\t\t\t\t[-84.162031, 38.554125],\n\t\t\t\t\t\t[-84.183903, 38.498019],\n\t\t\t\t\t\t[-84.102100, 38.459379],\n\t\t\t\t\t\t[-84.194050, 38.371750],\n\t\t\t\t\t\t[-84.345476, 38.285099],\n\t\t\t\t\t\t[-84.442661, 38.283236]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21101\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"101\",\n\t\t\t\t\"NAME\": \"Henderson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 436.669000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.684018, 37.903498],\n\t\t\t\t\t\t[-87.675730, 37.901930],\n\t\t\t\t\t\t[-87.666481, 37.895786],\n\t\t\t\t\t\t[-87.662865, 37.885578],\n\t\t\t\t\t\t[-87.681633, 37.855917],\n\t\t\t\t\t\t[-87.681900, 37.846410],\n\t\t\t\t\t\t[-87.679188, 37.836321],\n\t\t\t\t\t\t[-87.670889, 37.828429],\n\t\t\t\t\t\t[-87.645858, 37.825899],\n\t\t\t\t\t\t[-87.615399, 37.831974],\n\t\t\t\t\t\t[-87.606599, 37.838669],\n\t\t\t\t\t\t[-87.591504, 37.856642],\n\t\t\t\t\t\t[-87.588729, 37.860984],\n\t\t\t\t\t\t[-87.588426, 37.868791],\n\t\t\t\t\t\t[-87.591582, 37.887194],\n\t\t\t\t\t\t[-87.597118, 37.892394],\n\t\t\t\t\t\t[-87.620272, 37.906922],\n\t\t\t\t\t\t[-87.626256, 37.916138],\n\t\t\t\t\t\t[-87.628960, 37.926714],\n\t\t\t\t\t\t[-87.601416, 37.972542],\n\t\t\t\t\t\t[-87.592916, 37.975842],\n\t\t\t\t\t\t[-87.585916, 37.975442],\n\t\t\t\t\t\t[-87.581115, 37.973442],\n\t\t\t\t\t\t[-87.574715, 37.967742],\n\t\t\t\t\t\t[-87.573415, 37.962642],\n\t\t\t\t\t\t[-87.574287, 37.954842],\n\t\t\t\t\t\t[-87.572030, 37.947466],\n\t\t\t\t\t\t[-87.559342, 37.931146],\n\t\t\t\t\t\t[-87.550333, 37.924890],\n\t\t\t\t\t\t[-87.511499, 37.906426],\n\t\t\t\t\t\t[-87.451185, 37.941034],\n\t\t\t\t\t\t[-87.450458, 37.941451],\n\t\t\t\t\t\t[-87.436859, 37.944192],\n\t\t\t\t\t\t[-87.418585, 37.944763],\n\t\t\t\t\t\t[-87.402632, 37.942267],\n\t\t\t\t\t\t[-87.380247, 37.935596],\n\t\t\t\t\t\t[-87.302324, 37.898445],\n\t\t\t\t\t\t[-87.323402, 37.819239],\n\t\t\t\t\t\t[-87.271608, 37.780120],\n\t\t\t\t\t\t[-87.408547, 37.683563],\n\t\t\t\t\t\t[-87.420533, 37.670153],\n\t\t\t\t\t\t[-87.438436, 37.670931],\n\t\t\t\t\t\t[-87.472811, 37.664869],\n\t\t\t\t\t\t[-87.495331, 37.647547],\n\t\t\t\t\t\t[-87.734545, 37.638376],\n\t\t\t\t\t\t[-87.755650, 37.727763],\n\t\t\t\t\t\t[-87.815093, 37.762423],\n\t\t\t\t\t\t[-87.927424, 37.902038],\n\t\t\t\t\t\t[-87.904789, 37.924892],\n\t\t\t\t\t\t[-87.898062, 37.927514],\n\t\t\t\t\t\t[-87.883321, 37.926238],\n\t\t\t\t\t\t[-87.872540, 37.920999],\n\t\t\t\t\t\t[-87.865558, 37.915056],\n\t\t\t\t\t\t[-87.857243, 37.900649],\n\t\t\t\t\t\t[-87.841193, 37.882325],\n\t\t\t\t\t\t[-87.830578, 37.876516],\n\t\t\t\t\t\t[-87.790900, 37.875714],\n\t\t\t\t\t\t[-87.783643, 37.877759],\n\t\t\t\t\t\t[-87.762260, 37.890906],\n\t\t\t\t\t\t[-87.700421, 37.900858],\n\t\t\t\t\t\t[-87.684018, 37.903498]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21107\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"107\",\n\t\t\t\t\"NAME\": \"Hopkins\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 541.995000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.680617, 37.149239],\n\t\t\t\t\t\t[-87.805029, 37.241083],\n\t\t\t\t\t\t[-87.850760, 37.322136],\n\t\t\t\t\t\t[-87.813413, 37.350645],\n\t\t\t\t\t\t[-87.593575, 37.461963],\n\t\t\t\t\t\t[-87.499968, 37.486741],\n\t\t\t\t\t\t[-87.375145, 37.569988],\n\t\t\t\t\t\t[-87.351893, 37.425655],\n\t\t\t\t\t\t[-87.295965, 37.391819],\n\t\t\t\t\t\t[-87.388826, 37.261395],\n\t\t\t\t\t\t[-87.333741, 37.157186],\n\t\t\t\t\t\t[-87.521609, 37.105344],\n\t\t\t\t\t\t[-87.680617, 37.149239]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48267\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"267\",\n\t\t\t\t\"NAME\": \"Kimble\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1250.987000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.754142, 30.290698],\n\t\t\t\t\t\t[-100.116461, 30.290296],\n\t\t\t\t\t\t[-100.116234, 30.710366],\n\t\t\t\t\t\t[-99.483869, 30.710771],\n\t\t\t\t\t\t[-99.484493, 30.499641],\n\t\t\t\t\t\t[-99.303996, 30.499832],\n\t\t\t\t\t\t[-99.301718, 30.286653],\n\t\t\t\t\t\t[-99.754142, 30.290698]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48271\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"271\",\n\t\t\t\t\"NAME\": \"Kinney\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1360.055000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.668356, 29.083970],\n\t\t\t\t\t\t[-100.674656, 29.099777],\n\t\t\t\t\t\t[-100.793662, 29.242146],\n\t\t\t\t\t\t[-100.745564, 29.254809],\n\t\t\t\t\t\t[-100.699141, 29.419747],\n\t\t\t\t\t\t[-100.699932, 29.623897],\n\t\t\t\t\t\t[-100.112098, 29.623263],\n\t\t\t\t\t\t[-100.111406, 29.086318],\n\t\t\t\t\t\t[-100.667168, 29.084310],\n\t\t\t\t\t\t[-100.668356, 29.083970]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48277\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"277\",\n\t\t\t\t\"NAME\": \"Lamar\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 907.190000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.857738, 33.461722],\n\t\t\t\t\t\t[-95.846334, 33.841136],\n\t\t\t\t\t\t[-95.824680, 33.837726],\n\t\t\t\t\t\t[-95.763622, 33.847954],\n\t\t\t\t\t\t[-95.757156, 33.867293],\n\t\t\t\t\t\t[-95.599678, 33.934247],\n\t\t\t\t\t\t[-95.567022, 33.932697],\n\t\t\t\t\t\t[-95.559414, 33.930179],\n\t\t\t\t\t\t[-95.549145, 33.907950],\n\t\t\t\t\t\t[-95.549475, 33.901311],\n\t\t\t\t\t\t[-95.552331, 33.894420],\n\t\t\t\t\t\t[-95.552085, 33.888422],\n\t\t\t\t\t\t[-95.548325, 33.882744],\n\t\t\t\t\t\t[-95.544346, 33.880111],\n\t\t\t\t\t\t[-95.445751, 33.868850],\n\t\t\t\t\t\t[-95.407795, 33.866308],\n\t\t\t\t\t\t[-95.339758, 33.868752],\n\t\t\t\t\t\t[-95.310475, 33.871481],\n\t\t\t\t\t\t[-95.308637, 33.380662],\n\t\t\t\t\t\t[-95.621027, 33.487060],\n\t\t\t\t\t\t[-95.758439, 33.495098],\n\t\t\t\t\t\t[-95.826730, 33.459038],\n\t\t\t\t\t\t[-95.857738, 33.461722]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48281\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"281\",\n\t\t\t\t\"NAME\": \"Lampasas\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 712.840000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.562739, 31.230582],\n\t\t\t\t\t\t[-98.266794, 31.410521],\n\t\t\t\t\t\t[-98.271070, 31.416398],\n\t\t\t\t\t\t[-98.180006, 31.463717],\n\t\t\t\t\t\t[-97.907100, 31.069374],\n\t\t\t\t\t\t[-97.913847, 31.065882],\n\t\t\t\t\t\t[-97.911684, 31.034919],\n\t\t\t\t\t\t[-98.439687, 31.029537],\n\t\t\t\t\t\t[-98.523459, 31.088886],\n\t\t\t\t\t\t[-98.510341, 31.155666],\n\t\t\t\t\t\t[-98.562739, 31.230582]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48285\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"285\",\n\t\t\t\t\"NAME\": \"Lavaca\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 969.708000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.938587, 29.063244],\n\t\t\t\t\t\t[-96.946942, 29.072235],\n\t\t\t\t\t\t[-96.947333, 29.072716],\n\t\t\t\t\t\t[-96.947959, 29.073335],\n\t\t\t\t\t\t[-96.976378, 29.104046],\n\t\t\t\t\t\t[-97.240108, 29.384488],\n\t\t\t\t\t\t[-97.204087, 29.580613],\n\t\t\t\t\t\t[-97.142643, 29.628101],\n\t\t\t\t\t\t[-96.874222, 29.632706],\n\t\t\t\t\t\t[-96.793132, 29.577378],\n\t\t\t\t\t\t[-96.560555, 29.335439],\n\t\t\t\t\t\t[-96.658466, 29.263876],\n\t\t\t\t\t\t[-96.938587, 29.063244]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48287\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"287\",\n\t\t\t\t\"NAME\": \"Lee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 629.016000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.024461, 30.051435],\n\t\t\t\t\t\t[-97.048210, 30.137947],\n\t\t\t\t\t\t[-97.081834, 30.259357],\n\t\t\t\t\t\t[-97.334463, 30.402843],\n\t\t\t\t\t\t[-97.155219, 30.457344],\n\t\t\t\t\t\t[-96.963629, 30.557169],\n\t\t\t\t\t\t[-96.740542, 30.318655],\n\t\t\t\t\t\t[-96.640883, 30.296786],\n\t\t\t\t\t\t[-96.731645, 30.243886],\n\t\t\t\t\t\t[-96.794552, 30.160545],\n\t\t\t\t\t\t[-97.019163, 30.032000],\n\t\t\t\t\t\t[-97.024461, 30.051435]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48291\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"291\",\n\t\t\t\t\"NAME\": \"Liberty\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1158.417000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.165897, 30.344976],\n\t\t\t\t\t\t[-95.032460, 30.404091],\n\t\t\t\t\t\t[-95.024589, 30.406903],\n\t\t\t\t\t\t[-94.849414, 30.493553],\n\t\t\t\t\t\t[-94.777341, 30.489002],\n\t\t\t\t\t\t[-94.732732, 30.490066],\n\t\t\t\t\t\t[-94.603159, 30.130904],\n\t\t\t\t\t\t[-94.444910, 30.113015],\n\t\t\t\t\t\t[-94.445096, 30.110966],\n\t\t\t\t\t\t[-94.442235, 29.889538],\n\t\t\t\t\t\t[-94.981460, 29.884276],\n\t\t\t\t\t\t[-94.985364, 29.972279],\n\t\t\t\t\t\t[-95.031179, 29.993324],\n\t\t\t\t\t\t[-95.096708, 30.167214],\n\t\t\t\t\t\t[-95.165897, 30.344976]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48293\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"293\",\n\t\t\t\t\"NAME\": \"Limestone\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 905.288000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.236629, 31.413392],\n\t\t\t\t\t\t[-96.304907, 31.382132],\n\t\t\t\t\t\t[-96.322853, 31.374067],\n\t\t\t\t\t\t[-96.319165, 31.357129],\n\t\t\t\t\t\t[-96.596862, 31.220900],\n\t\t\t\t\t\t[-96.801123, 31.522269],\n\t\t\t\t\t\t[-96.932215, 31.708887],\n\t\t\t\t\t\t[-96.735543, 31.806667],\n\t\t\t\t\t\t[-96.719114, 31.814887],\n\t\t\t\t\t\t[-96.496713, 31.796191],\n\t\t\t\t\t\t[-96.236629, 31.413392]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48295\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"295\",\n\t\t\t\t\"NAME\": \"Lipscomb\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 932.179000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.546724, 36.056536],\n\t\t\t\t\t\t[-100.546145, 36.499343],\n\t\t\t\t\t\t[-100.531215, 36.499341],\n\t\t\t\t\t\t[-100.531215, 36.499290],\n\t\t\t\t\t\t[-100.530478, 36.499240],\n\t\t\t\t\t\t[-100.530314, 36.499357],\n\t\t\t\t\t\t[-100.522227, 36.499291],\n\t\t\t\t\t\t[-100.441065, 36.499490],\n\t\t\t\t\t\t[-100.441064, 36.499462],\n\t\t\t\t\t\t[-100.433959, 36.499456],\n\t\t\t\t\t\t[-100.421328, 36.499447],\n\t\t\t\t\t\t[-100.421301, 36.499488],\n\t\t\t\t\t\t[-100.413634, 36.499444],\n\t\t\t\t\t\t[-100.413550, 36.499469],\n\t\t\t\t\t\t[-100.378634, 36.499517],\n\t\t\t\t\t\t[-100.378592, 36.499445],\n\t\t\t\t\t\t[-100.351852, 36.499487],\n\t\t\t\t\t\t[-100.351842, 36.499473],\n\t\t\t\t\t\t[-100.334464, 36.499420],\n\t\t\t\t\t\t[-100.334441, 36.499440],\n\t\t\t\t\t\t[-100.324150, 36.499679],\n\t\t\t\t\t\t[-100.311245, 36.499631],\n\t\t\t\t\t\t[-100.311018, 36.499688],\n\t\t\t\t\t\t[-100.310643, 36.499642],\n\t\t\t\t\t\t[-100.181221, 36.499633],\n\t\t\t\t\t\t[-100.090021, 36.499634],\n\t\t\t\t\t\t[-100.003762, 36.499699],\n\t\t\t\t\t\t[-100.000406, 36.499702],\n\t\t\t\t\t\t[-100.000399, 36.055677],\n\t\t\t\t\t\t[-100.540221, 36.056491],\n\t\t\t\t\t\t[-100.546724, 36.056536]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48301\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"301\",\n\t\t\t\t\"NAME\": \"Loving\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 668.925000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-103.326501, 32.000370],\n\t\t\t\t\t\t[-103.327538, 31.651420],\n\t\t\t\t\t\t[-103.610887, 31.651802],\n\t\t\t\t\t\t[-103.625726, 31.705032],\n\t\t\t\t\t\t[-103.797232, 31.770187],\n\t\t\t\t\t\t[-103.829385, 31.887992],\n\t\t\t\t\t\t[-103.885584, 31.870373],\n\t\t\t\t\t\t[-103.980179, 32.000125],\n\t\t\t\t\t\t[-103.722853, 32.000221],\n\t\t\t\t\t\t[-103.326501, 32.000370]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48305\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"305\",\n\t\t\t\t\"NAME\": \"Lynn\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 891.867000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-101.557434, 32.961025],\n\t\t\t\t\t\t[-101.691284, 32.961838],\n\t\t\t\t\t\t[-102.076214, 32.959702],\n\t\t\t\t\t\t[-102.075929, 33.389586],\n\t\t\t\t\t\t[-101.556884, 33.394760],\n\t\t\t\t\t\t[-101.557434, 32.961025]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48307\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"307\",\n\t\t\t\t\"NAME\": \"McCulloch\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1065.598000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.601850, 31.491950],\n\t\t\t\t\t\t[-99.513678, 31.425495],\n\t\t\t\t\t\t[-99.402284, 31.446198],\n\t\t\t\t\t\t[-99.314875, 31.409875],\n\t\t\t\t\t\t[-99.202768, 31.467234],\n\t\t\t\t\t\t[-99.090622, 31.460927],\n\t\t\t\t\t\t[-99.092317, 30.941002],\n\t\t\t\t\t\t[-99.484755, 30.940605],\n\t\t\t\t\t\t[-99.603627, 30.940726],\n\t\t\t\t\t\t[-99.603223, 31.087296],\n\t\t\t\t\t\t[-99.601850, 31.491950]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48317\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"317\",\n\t\t\t\t\"NAME\": \"Martin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 914.944000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-102.211037, 32.523244],\n\t\t\t\t\t\t[-102.202703, 32.523271],\n\t\t\t\t\t\t[-101.688740, 32.525222],\n\t\t\t\t\t\t[-101.695011, 32.087532],\n\t\t\t\t\t\t[-101.776085, 32.086925],\n\t\t\t\t\t\t[-102.211249, 32.086800],\n\t\t\t\t\t\t[-102.211037, 32.523244]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48323\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"323\",\n\t\t\t\t\"NAME\": \"Maverick\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1279.258000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.113719, 28.197819],\n\t\t\t\t\t\t[-100.209464, 28.196866],\n\t\t\t\t\t\t[-100.257788, 28.240341],\n\t\t\t\t\t\t[-100.291391, 28.275398],\n\t\t\t\t\t\t[-100.346986, 28.407232],\n\t\t\t\t\t\t[-100.333814, 28.499252],\n\t\t\t\t\t\t[-100.338518, 28.501833],\n\t\t\t\t\t\t[-100.386963, 28.514023],\n\t\t\t\t\t\t[-100.405058, 28.535780],\n\t\t\t\t\t\t[-100.429856, 28.596441],\n\t\t\t\t\t\t[-100.446659, 28.608659],\n\t\t\t\t\t\t[-100.500354, 28.661960],\n\t\t\t\t\t\t[-100.510055, 28.690723],\n\t\t\t\t\t\t[-100.511998, 28.705352],\n\t\t\t\t\t\t[-100.506701, 28.716745],\n\t\t\t\t\t\t[-100.507613, 28.740599],\n\t\t\t\t\t\t[-100.535438, 28.805195],\n\t\t\t\t\t\t[-100.546804, 28.825374],\n\t\t\t\t\t\t[-100.589854, 28.861618],\n\t\t\t\t\t\t[-100.640092, 28.915833],\n\t\t\t\t\t\t[-100.651512, 28.943432],\n\t\t\t\t\t\t[-100.648104, 28.983860],\n\t\t\t\t\t\t[-100.645894, 28.986421],\n\t\t\t\t\t\t[-100.664065, 29.073206],\n\t\t\t\t\t\t[-100.668356, 29.083970],\n\t\t\t\t\t\t[-100.667168, 29.084310],\n\t\t\t\t\t\t[-100.111406, 29.086318],\n\t\t\t\t\t\t[-100.114336, 28.648122],\n\t\t\t\t\t\t[-100.113719, 28.197819]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48327\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"327\",\n\t\t\t\t\"NAME\": \"Menard\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 902.030000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.115216, 31.087994],\n\t\t\t\t\t\t[-99.603223, 31.087296],\n\t\t\t\t\t\t[-99.603627, 30.940726],\n\t\t\t\t\t\t[-99.484755, 30.940605],\n\t\t\t\t\t\t[-99.483869, 30.710771],\n\t\t\t\t\t\t[-100.116234, 30.710366],\n\t\t\t\t\t\t[-100.115216, 31.087994]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48331\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"331\",\n\t\t\t\t\"NAME\": \"Milam\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1016.930000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.829121, 31.105871],\n\t\t\t\t\t\t[-96.756330, 30.927206],\n\t\t\t\t\t\t[-96.684970, 30.906191],\n\t\t\t\t\t\t[-96.661054, 30.829686],\n\t\t\t\t\t\t[-96.621281, 30.730819],\n\t\t\t\t\t\t[-96.963629, 30.557169],\n\t\t\t\t\t\t[-97.155219, 30.457344],\n\t\t\t\t\t\t[-97.271418, 30.735692],\n\t\t\t\t\t\t[-97.315507, 30.752371],\n\t\t\t\t\t\t[-97.259082, 30.889596],\n\t\t\t\t\t\t[-97.070188, 30.986220],\n\t\t\t\t\t\t[-96.829121, 31.105871]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48333\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"333\",\n\t\t\t\t\"NAME\": \"Mills\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 748.261000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.271070, 31.416398],\n\t\t\t\t\t\t[-98.266794, 31.410521],\n\t\t\t\t\t\t[-98.562739, 31.230582],\n\t\t\t\t\t\t[-98.726094, 31.428278],\n\t\t\t\t\t\t[-98.762589, 31.375282],\n\t\t\t\t\t\t[-98.773000, 31.410926],\n\t\t\t\t\t\t[-98.854292, 31.413425],\n\t\t\t\t\t\t[-98.872500, 31.444299],\n\t\t\t\t\t\t[-98.967159, 31.435903],\n\t\t\t\t\t\t[-98.991608, 31.484071],\n\t\t\t\t\t\t[-98.779951, 31.610735],\n\t\t\t\t\t\t[-98.760057, 31.687896],\n\t\t\t\t\t\t[-98.668441, 31.700514],\n\t\t\t\t\t\t[-98.492802, 31.723608],\n\t\t\t\t\t\t[-98.463736, 31.683989],\n\t\t\t\t\t\t[-98.271070, 31.416398]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51800\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"800\",\n\t\t\t\t\"NAME\": \"Suffolk\",\n\t\t\t\t\"LSAD\": \"city\",\n\t\t\t\t\"CENSUSAREA\": 400.168000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.897592, 36.644050],\n\t\t\t\t\t\t[-76.533520, 36.915563],\n\t\t\t\t\t\t[-76.484107, 36.928916],\n\t\t\t\t\t\t[-76.482407, 36.917364],\n\t\t\t\t\t\t[-76.482135, 36.901108],\n\t\t\t\t\t\t[-76.483369, 36.896239],\n\t\t\t\t\t\t[-76.469914, 36.882898],\n\t\t\t\t\t\t[-76.454692, 36.884077],\n\t\t\t\t\t\t[-76.453290, 36.887031],\n\t\t\t\t\t\t[-76.453941, 36.892740],\n\t\t\t\t\t\t[-76.447413, 36.903220],\n\t\t\t\t\t\t[-76.441605, 36.906116],\n\t\t\t\t\t\t[-76.431220, 36.904532],\n\t\t\t\t\t\t[-76.407507, 36.897444],\n\t\t\t\t\t\t[-76.406908, 36.897507],\n\t\t\t\t\t\t[-76.406667, 36.878448],\n\t\t\t\t\t\t[-76.420368, 36.866348],\n\t\t\t\t\t\t[-76.457469, 36.814841],\n\t\t\t\t\t\t[-76.491497, 36.550365],\n\t\t\t\t\t\t[-76.541391, 36.550312],\n\t\t\t\t\t\t[-76.541687, 36.550312],\n\t\t\t\t\t\t[-76.781296, 36.550659],\n\t\t\t\t\t\t[-76.807078, 36.550606],\n\t\t\t\t\t\t[-76.915384, 36.543856],\n\t\t\t\t\t\t[-76.897592, 36.644050]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51810\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"810\",\n\t\t\t\t\"NAME\": \"Virginia Beach\",\n\t\t\t\t\"LSAD\": \"city\",\n\t\t\t\t\"CENSUSAREA\": 249.016000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.226060, 36.839947],\n\t\t\t\t\t\t[-76.213959, 36.832347],\n\t\t\t\t\t\t[-76.210412, 36.832907],\n\t\t\t\t\t\t[-76.177019, 36.929290],\n\t\t\t\t\t\t[-76.139557, 36.923047],\n\t\t\t\t\t\t[-76.095508, 36.908817],\n\t\t\t\t\t\t[-76.087955, 36.908647],\n\t\t\t\t\t\t[-76.058154, 36.916947],\n\t\t\t\t\t\t[-76.043054, 36.927547],\n\t\t\t\t\t\t[-76.033454, 36.931946],\n\t\t\t\t\t\t[-76.013753, 36.930746],\n\t\t\t\t\t\t[-76.007553, 36.929047],\n\t\t\t\t\t\t[-75.996252, 36.922047],\n\t\t\t\t\t\t[-75.991552, 36.910847],\n\t\t\t\t\t\t[-75.972151, 36.842268],\n\t\t\t\t\t\t[-75.965451, 36.812449],\n\t\t\t\t\t\t[-75.949550, 36.761150],\n\t\t\t\t\t\t[-75.921748, 36.692051],\n\t\t\t\t\t\t[-75.890946, 36.630753],\n\t\t\t\t\t\t[-75.874145, 36.583853],\n\t\t\t\t\t\t[-75.867044, 36.550754],\n\t\t\t\t\t\t[-75.879744, 36.550754],\n\t\t\t\t\t\t[-75.880644, 36.550754],\n\t\t\t\t\t\t[-75.885945, 36.550754],\n\t\t\t\t\t\t[-75.886545, 36.550754],\n\t\t\t\t\t\t[-75.891945, 36.550754],\n\t\t\t\t\t\t[-75.893245, 36.550654],\n\t\t\t\t\t\t[-75.894145, 36.550754],\n\t\t\t\t\t\t[-75.903445, 36.550654],\n\t\t\t\t\t\t[-75.904745, 36.550654],\n\t\t\t\t\t\t[-75.909046, 36.550654],\n\t\t\t\t\t\t[-75.911446, 36.550654],\n\t\t\t\t\t\t[-75.922046, 36.550654],\n\t\t\t\t\t\t[-75.952847, 36.550553],\n\t\t\t\t\t\t[-75.953447, 36.550553],\n\t\t\t\t\t\t[-75.955748, 36.550553],\n\t\t\t\t\t\t[-75.957648, 36.550553],\n\t\t\t\t\t\t[-76.026750, 36.550553],\n\t\t\t\t\t\t[-76.034751, 36.550653],\n\t\t\t\t\t\t[-76.122360, 36.550621],\n\t\t\t\t\t\t[-76.121955, 36.665750],\n\t\t\t\t\t\t[-76.068154, 36.692350],\n\t\t\t\t\t\t[-76.203667, 36.769655],\n\t\t\t\t\t\t[-76.226060, 36.839947]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51840\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"840\",\n\t\t\t\t\"NAME\": \"Winchester\",\n\t\t\t\t\"LSAD\": \"city\",\n\t\t\t\t\"CENSUSAREA\": 9.233000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.196945, 39.191161],\n\t\t\t\t\t\t[-78.154919, 39.200895],\n\t\t\t\t\t\t[-78.136953, 39.184530],\n\t\t\t\t\t\t[-78.182890, 39.130970],\n\t\t\t\t\t\t[-78.196945, 39.191161]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US53001\",\n\t\t\t\t\"STATE\": \"53\",\n\t\t\t\t\"COUNTY\": \"001\",\n\t\t\t\t\"NAME\": \"Adams\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1924.978000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-119.136070, 46.912220],\n\t\t\t\t\t\t[-118.982545, 46.911346],\n\t\t\t\t\t\t[-118.979519, 47.261712],\n\t\t\t\t\t\t[-118.838281, 47.260957],\n\t\t\t\t\t\t[-117.960143, 47.260449],\n\t\t\t\t\t\t[-117.958856, 46.914878],\n\t\t\t\t\t\t[-118.012613, 46.790485],\n\t\t\t\t\t\t[-118.209807, 46.738938],\n\t\t\t\t\t\t[-119.081621, 46.738019],\n\t\t\t\t\t\t[-119.369387, 46.737696],\n\t\t\t\t\t\t[-119.368662, 46.912562],\n\t\t\t\t\t\t[-119.136070, 46.912220]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US53003\",\n\t\t\t\t\"STATE\": \"53\",\n\t\t\t\t\"COUNTY\": \"003\",\n\t\t\t\t\"NAME\": \"Asotin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 636.213000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-117.039813, 46.425425],\n\t\t\t\t\t\t[-117.046915, 46.379577],\n\t\t\t\t\t\t[-117.061045, 46.367747],\n\t\t\t\t\t\t[-117.047469, 46.342884],\n\t\t\t\t\t\t[-116.987939, 46.298031],\n\t\t\t\t\t\t[-116.985333, 46.294617],\n\t\t\t\t\t\t[-116.958801, 46.242320],\n\t\t\t\t\t\t[-116.925621, 46.158888],\n\t\t\t\t\t\t[-116.943530, 46.062173],\n\t\t\t\t\t\t[-116.915989, 45.995413],\n\t\t\t\t\t\t[-117.212616, 45.998321],\n\t\t\t\t\t\t[-117.214534, 45.998320],\n\t\t\t\t\t\t[-117.216731, 45.998356],\n\t\t\t\t\t\t[-117.475148, 45.997893],\n\t\t\t\t\t\t[-117.475360, 45.997855],\n\t\t\t\t\t\t[-117.480103, 45.997870],\n\t\t\t\t\t\t[-117.480130, 45.997870],\n\t\t\t\t\t\t[-117.480045, 46.121993],\n\t\t\t\t\t\t[-117.419591, 46.121921],\n\t\t\t\t\t\t[-117.419680, 46.383294],\n\t\t\t\t\t\t[-117.228758, 46.411293],\n\t\t\t\t\t\t[-117.228896, 46.462314],\n\t\t\t\t\t\t[-117.199044, 46.419786],\n\t\t\t\t\t\t[-117.039813, 46.425425]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US53005\",\n\t\t\t\t\"STATE\": \"53\",\n\t\t\t\t\"COUNTY\": \"005\",\n\t\t\t\t\"NAME\": \"Benton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1700.379000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-119.868135, 45.835962],\n\t\t\t\t\t\t[-119.866265, 46.040662],\n\t\t\t\t\t\t[-119.874057, 46.628585],\n\t\t\t\t\t\t[-119.626139, 46.644983],\n\t\t\t\t\t\t[-119.515653, 46.727396],\n\t\t\t\t\t\t[-119.453220, 46.679243],\n\t\t\t\t\t\t[-119.258292, 46.489457],\n\t\t\t\t\t\t[-119.268928, 46.277957],\n\t\t\t\t\t\t[-119.041418, 46.192856],\n\t\t\t\t\t\t[-118.980933, 46.146296],\n\t\t\t\t\t\t[-118.941075, 46.029339],\n\t\t\t\t\t\t[-118.987129, 45.999855],\n\t\t\t\t\t\t[-119.008558, 45.979270],\n\t\t\t\t\t\t[-119.027056, 45.969134],\n\t\t\t\t\t\t[-119.093221, 45.942745],\n\t\t\t\t\t\t[-119.126120, 45.932859],\n\t\t\t\t\t\t[-119.169496, 45.927603],\n\t\t\t\t\t\t[-119.195530, 45.927870],\n\t\t\t\t\t\t[-119.225745, 45.932725],\n\t\t\t\t\t\t[-119.257150, 45.939926],\n\t\t\t\t\t\t[-119.322509, 45.933183],\n\t\t\t\t\t\t[-119.376130, 45.920974],\n\t\t\t\t\t\t[-119.432067, 45.913629],\n\t\t\t\t\t\t[-119.487829, 45.906307],\n\t\t\t\t\t\t[-119.524632, 45.908605],\n\t\t\t\t\t\t[-119.571584, 45.925456],\n\t\t\t\t\t\t[-119.600549, 45.919581],\n\t\t\t\t\t\t[-119.623393, 45.905639],\n\t\t\t\t\t\t[-119.669877, 45.856867],\n\t\t\t\t\t\t[-119.772927, 45.845578],\n\t\t\t\t\t\t[-119.802655, 45.847530],\n\t\t\t\t\t\t[-119.868135, 45.835962]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US53015\",\n\t\t\t\t\"STATE\": \"53\",\n\t\t\t\t\"COUNTY\": \"015\",\n\t\t\t\t\"NAME\": \"Cowlitz\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1140.125000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-123.217841, 46.385128],\n\t\t\t\t\t\t[-123.091305, 46.387929],\n\t\t\t\t\t\t[-122.241696, 46.385292],\n\t\t\t\t\t\t[-122.239952, 46.384204],\n\t\t\t\t\t\t[-122.245633, 46.053932],\n\t\t\t\t\t\t[-122.357765, 45.956915],\n\t\t\t\t\t\t[-122.477104, 45.988089],\n\t\t\t\t\t\t[-122.738996, 45.915287],\n\t\t\t\t\t\t[-122.785515, 45.850536],\n\t\t\t\t\t\t[-122.785026, 45.867699],\n\t\t\t\t\t\t[-122.813998, 45.960984],\n\t\t\t\t\t\t[-122.884478, 46.060280],\n\t\t\t\t\t\t[-122.904119, 46.083734],\n\t\t\t\t\t\t[-123.115904, 46.185268],\n\t\t\t\t\t\t[-123.166414, 46.188973],\n\t\t\t\t\t\t[-123.213054, 46.172541],\n\t\t\t\t\t\t[-123.217841, 46.385128]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US53017\",\n\t\t\t\t\"STATE\": \"53\",\n\t\t\t\t\"COUNTY\": \"017\",\n\t\t\t\t\"NAME\": \"Douglas\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1819.264000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-120.007065, 47.220053],\n\t\t\t\t\t\t[-120.074669, 47.225152],\n\t\t\t\t\t\t[-120.094470, 47.262151],\n\t\t\t\t\t\t[-120.083274, 47.333690],\n\t\t\t\t\t\t[-120.129573, 47.366251],\n\t\t\t\t\t\t[-120.286530, 47.393111],\n\t\t\t\t\t\t[-120.318084, 47.457748],\n\t\t\t\t\t\t[-120.292814, 47.538172],\n\t\t\t\t\t\t[-120.233584, 47.597630],\n\t\t\t\t\t\t[-120.199048, 47.682276],\n\t\t\t\t\t\t[-120.209395, 47.748356],\n\t\t\t\t\t\t[-120.130914, 47.776601],\n\t\t\t\t\t\t[-119.994952, 47.781353],\n\t\t\t\t\t\t[-119.870307, 47.960328],\n\t\t\t\t\t\t[-119.891656, 48.055053],\n\t\t\t\t\t\t[-119.771307, 48.104713],\n\t\t\t\t\t\t[-119.670241, 48.069775],\n\t\t\t\t\t\t[-119.693627, 48.032554],\n\t\t\t\t\t\t[-119.629835, 47.996239],\n\t\t\t\t\t\t[-119.502391, 48.082116],\n\t\t\t\t\t\t[-119.340989, 48.049512],\n\t\t\t\t\t\t[-119.325444, 48.099645],\n\t\t\t\t\t\t[-119.126141, 48.150510],\n\t\t\t\t\t\t[-119.062237, 48.138378],\n\t\t\t\t\t\t[-119.006111, 48.046143],\n\t\t\t\t\t\t[-118.955484, 48.023185],\n\t\t\t\t\t\t[-118.982394, 47.962019],\n\t\t\t\t\t\t[-119.104041, 47.961763],\n\t\t\t\t\t\t[-119.125659, 47.917253],\n\t\t\t\t\t\t[-119.212149, 47.887617],\n\t\t\t\t\t\t[-119.212499, 47.800652],\n\t\t\t\t\t\t[-119.298744, 47.728277],\n\t\t\t\t\t\t[-119.341708, 47.612348],\n\t\t\t\t\t\t[-119.405196, 47.612471],\n\t\t\t\t\t\t[-119.532889, 47.527563],\n\t\t\t\t\t\t[-119.533624, 47.441317],\n\t\t\t\t\t\t[-119.875835, 47.437352],\n\t\t\t\t\t\t[-120.004767, 47.320052],\n\t\t\t\t\t\t[-120.007065, 47.220053]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US53019\",\n\t\t\t\t\"STATE\": \"53\",\n\t\t\t\t\"COUNTY\": \"019\",\n\t\t\t\t\"NAME\": \"Ferry\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2203.159000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-118.836794, 49.000209],\n\t\t\t\t\t\t[-118.196891, 49.000094],\n\t\t\t\t\t\t[-118.221669, 48.937098],\n\t\t\t\t\t\t[-118.195508, 48.840725],\n\t\t\t\t\t\t[-118.131002, 48.777653],\n\t\t\t\t\t\t[-118.104960, 48.653503],\n\t\t\t\t\t\t[-118.149709, 48.520568],\n\t\t\t\t\t\t[-118.206507, 48.470296],\n\t\t\t\t\t\t[-118.175602, 48.319492],\n\t\t\t\t\t\t[-118.141475, 48.259951],\n\t\t\t\t\t\t[-118.194500, 48.212889],\n\t\t\t\t\t\t[-118.191298, 48.159888],\n\t\t\t\t\t\t[-118.248606, 48.134255],\n\t\t\t\t\t\t[-118.238198, 48.058184],\n\t\t\t\t\t\t[-118.402407, 48.026382],\n\t\t\t\t\t\t[-118.340925, 47.894395],\n\t\t\t\t\t\t[-118.357065, 47.841599],\n\t\t\t\t\t\t[-118.544090, 47.883973],\n\t\t\t\t\t\t[-118.570396, 47.932318],\n\t\t\t\t\t\t[-118.711682, 47.903347],\n\t\t\t\t\t\t[-118.851972, 47.957686],\n\t\t\t\t\t\t[-118.845785, 47.963478],\n\t\t\t\t\t\t[-118.843439, 48.481682],\n\t\t\t\t\t\t[-118.869540, 48.481881],\n\t\t\t\t\t\t[-118.869672, 48.653598],\n\t\t\t\t\t\t[-118.835399, 48.654153],\n\t\t\t\t\t\t[-118.836794, 49.000209]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US53023\",\n\t\t\t\t\"STATE\": \"53\",\n\t\t\t\t\"COUNTY\": \"023\",\n\t\t\t\t\"NAME\": \"Garfield\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 710.686000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-117.603163, 45.998887],\n\t\t\t\t\t\t[-117.611815, 46.338496],\n\t\t\t\t\t\t[-117.675113, 46.337628],\n\t\t\t\t\t\t[-117.737301, 46.471366],\n\t\t\t\t\t\t[-117.863261, 46.470935],\n\t\t\t\t\t\t[-117.851844, 46.624772],\n\t\t\t\t\t\t[-117.751037, 46.690027],\n\t\t\t\t\t\t[-117.601227, 46.672679],\n\t\t\t\t\t\t[-117.475331, 46.700330],\n\t\t\t\t\t\t[-117.253902, 46.545082],\n\t\t\t\t\t\t[-117.228896, 46.462314],\n\t\t\t\t\t\t[-117.228758, 46.411293],\n\t\t\t\t\t\t[-117.419680, 46.383294],\n\t\t\t\t\t\t[-117.419591, 46.121921],\n\t\t\t\t\t\t[-117.480045, 46.121993],\n\t\t\t\t\t\t[-117.480130, 45.997870],\n\t\t\t\t\t\t[-117.504833, 45.998317],\n\t\t\t\t\t\t[-117.603163, 45.998887]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US53025\",\n\t\t\t\t\"STATE\": \"53\",\n\t\t\t\t\"COUNTY\": \"025\",\n\t\t\t\t\"NAME\": \"Grant\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2679.513000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-118.979519, 47.261712],\n\t\t\t\t\t\t[-118.982545, 46.911346],\n\t\t\t\t\t\t[-119.136070, 46.912220],\n\t\t\t\t\t\t[-119.368662, 46.912562],\n\t\t\t\t\t\t[-119.369387, 46.737696],\n\t\t\t\t\t\t[-119.368939, 46.678204],\n\t\t\t\t\t\t[-119.453220, 46.679243],\n\t\t\t\t\t\t[-119.515653, 46.727396],\n\t\t\t\t\t\t[-119.626139, 46.644983],\n\t\t\t\t\t\t[-119.874057, 46.628585],\n\t\t\t\t\t\t[-119.973017, 46.737171],\n\t\t\t\t\t\t[-119.927537, 46.817092],\n\t\t\t\t\t\t[-120.042866, 47.073453],\n\t\t\t\t\t\t[-120.007065, 47.220053],\n\t\t\t\t\t\t[-120.004767, 47.320052],\n\t\t\t\t\t\t[-119.875835, 47.437352],\n\t\t\t\t\t\t[-119.533624, 47.441317],\n\t\t\t\t\t\t[-119.532889, 47.527563],\n\t\t\t\t\t\t[-119.405196, 47.612471],\n\t\t\t\t\t\t[-119.341708, 47.612348],\n\t\t\t\t\t\t[-119.298744, 47.728277],\n\t\t\t\t\t\t[-119.212499, 47.800652],\n\t\t\t\t\t\t[-119.212149, 47.887617],\n\t\t\t\t\t\t[-119.125659, 47.917253],\n\t\t\t\t\t\t[-119.104041, 47.961763],\n\t\t\t\t\t\t[-118.982394, 47.962019],\n\t\t\t\t\t\t[-118.982754, 47.949782],\n\t\t\t\t\t\t[-118.973502, 47.943570],\n\t\t\t\t\t\t[-118.976480, 47.659033],\n\t\t\t\t\t\t[-118.979519, 47.261712]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51600\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"600\",\n\t\t\t\t\"NAME\": \"Fairfax\",\n\t\t\t\t\"LSAD\": \"city\",\n\t\t\t\t\"CENSUSAREA\": 6.239000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.334805, 38.851404],\n\t\t\t\t\t\t[-77.328788, 38.864848],\n\t\t\t\t\t\t[-77.270597, 38.866075],\n\t\t\t\t\t\t[-77.270500, 38.840992],\n\t\t\t\t\t\t[-77.318689, 38.834651],\n\t\t\t\t\t\t[-77.334805, 38.851404]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55101\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"101\",\n\t\t\t\t\"NAME\": \"Racine\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 332.501000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.827021, 42.842222],\n\t\t\t\t\t\t[-87.825352, 42.839144],\n\t\t\t\t\t\t[-87.824000, 42.836649],\n\t\t\t\t\t\t[-87.823278, 42.835318],\n\t\t\t\t\t\t[-87.822324, 42.834371],\n\t\t\t\t\t\t[-87.804033, 42.816205],\n\t\t\t\t\t\t[-87.803773, 42.815948],\n\t\t\t\t\t\t[-87.796201, 42.808428],\n\t\t\t\t\t\t[-87.793976, 42.806218],\n\t\t\t\t\t\t[-87.789953, 42.803691],\n\t\t\t\t\t\t[-87.786291, 42.801391],\n\t\t\t\t\t\t[-87.785936, 42.801168],\n\t\t\t\t\t\t[-87.773699, 42.793481],\n\t\t\t\t\t\t[-87.773623, 42.793388],\n\t\t\t\t\t\t[-87.766675, 42.784896],\n\t\t\t\t\t\t[-87.769774, 42.773719],\n\t\t\t\t\t\t[-87.771340, 42.771687],\n\t\t\t\t\t\t[-87.777432, 42.763781],\n\t\t\t\t\t\t[-87.778174, 42.762819],\n\t\t\t\t\t\t[-87.778774, 42.760556],\n\t\t\t\t\t\t[-87.780782, 42.752973],\n\t\t\t\t\t\t[-87.781016, 42.752090],\n\t\t\t\t\t\t[-87.781949, 42.748570],\n\t\t\t\t\t\t[-87.782174, 42.747719],\n\t\t\t\t\t\t[-87.781849, 42.745847],\n\t\t\t\t\t\t[-87.781655, 42.744733],\n\t\t\t\t\t\t[-87.781642, 42.744656],\n\t\t\t\t\t\t[-87.781333, 42.742879],\n\t\t\t\t\t\t[-87.779527, 42.732482],\n\t\t\t\t\t\t[-87.778824, 42.728432],\n\t\t\t\t\t\t[-87.778627, 42.727299],\n\t\t\t\t\t\t[-87.780320, 42.718679],\n\t\t\t\t\t\t[-87.782023, 42.710008],\n\t\t\t\t\t\t[-87.782374, 42.708219],\n\t\t\t\t\t\t[-87.783489, 42.705164],\n\t\t\t\t\t\t[-87.784015, 42.703720],\n\t\t\t\t\t\t[-87.785074, 42.700819],\n\t\t\t\t\t\t[-87.786774, 42.700719],\n\t\t\t\t\t\t[-87.794874, 42.689919],\n\t\t\t\t\t\t[-87.802377, 42.676651],\n\t\t\t\t\t\t[-87.802876, 42.675768],\n\t\t\t\t\t\t[-87.802989, 42.675569],\n\t\t\t\t\t\t[-87.803028, 42.675501],\n\t\t\t\t\t\t[-87.803074, 42.675419],\n\t\t\t\t\t\t[-87.803127, 42.675276],\n\t\t\t\t\t\t[-87.805421, 42.669067],\n\t\t\t\t\t\t[-87.805768, 42.668128],\n\t\t\t\t\t\t[-88.188306, 42.669709],\n\t\t\t\t\t\t[-88.188173, 42.611456],\n\t\t\t\t\t\t[-88.305891, 42.610817],\n\t\t\t\t\t\t[-88.306384, 42.842095],\n\t\t\t\t\t\t[-88.245499, 42.841356],\n\t\t\t\t\t\t[-88.069924, 42.843323],\n\t\t\t\t\t\t[-87.827021, 42.842222]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55107\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"107\",\n\t\t\t\t\"NAME\": \"Rusk\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 913.585000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.678749, 45.638264],\n\t\t\t\t\t\t[-90.678739, 45.377770],\n\t\t\t\t\t\t[-90.925170, 45.379350],\n\t\t\t\t\t\t[-90.925223, 45.291965],\n\t\t\t\t\t\t[-91.541322, 45.292015],\n\t\t\t\t\t\t[-91.540294, 45.637605],\n\t\t\t\t\t\t[-90.678749, 45.638264]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55111\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"111\",\n\t\t\t\t\"NAME\": \"Sauk\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 830.902000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.716768, 43.321806],\n\t\t\t\t\t\t[-89.727171, 43.301305],\n\t\t\t\t\t\t[-89.720295, 43.292928],\n\t\t\t\t\t\t[-89.838135, 43.206057],\n\t\t\t\t\t\t[-90.193814, 43.164464],\n\t\t\t\t\t\t[-90.191964, 43.554996],\n\t\t\t\t\t\t[-90.311069, 43.553991],\n\t\t\t\t\t\t[-90.311142, 43.565134],\n\t\t\t\t\t\t[-90.310979, 43.566408],\n\t\t\t\t\t\t[-90.312404, 43.640988],\n\t\t\t\t\t\t[-89.838112, 43.640930],\n\t\t\t\t\t\t[-89.835589, 43.640920],\n\t\t\t\t\t\t[-89.831781, 43.641095],\n\t\t\t\t\t\t[-89.825916, 43.641011],\n\t\t\t\t\t\t[-89.824362, 43.641146],\n\t\t\t\t\t\t[-89.823444, 43.641035],\n\t\t\t\t\t\t[-89.785809, 43.641049],\n\t\t\t\t\t\t[-89.732238, 43.571826],\n\t\t\t\t\t\t[-89.599357, 43.558041],\n\t\t\t\t\t\t[-89.600719, 43.380006],\n\t\t\t\t\t\t[-89.716768, 43.321806]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55113\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"113\",\n\t\t\t\t\"NAME\": \"Sawyer\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1257.305000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.924583, 46.154616],\n\t\t\t\t\t\t[-90.925174, 45.981055],\n\t\t\t\t\t\t[-90.676968, 45.981554],\n\t\t\t\t\t\t[-90.678749, 45.638264],\n\t\t\t\t\t\t[-91.540294, 45.637605],\n\t\t\t\t\t\t[-91.551282, 46.157045],\n\t\t\t\t\t\t[-90.924583, 46.154616]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55119\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"119\",\n\t\t\t\t\"NAME\": \"Taylor\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 974.876000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.678739, 45.377770],\n\t\t\t\t\t\t[-90.042273, 45.381866],\n\t\t\t\t\t\t[-90.046143, 45.340309],\n\t\t\t\t\t\t[-90.043685, 45.120214],\n\t\t\t\t\t\t[-90.197765, 45.120604],\n\t\t\t\t\t\t[-90.197514, 45.033640],\n\t\t\t\t\t\t[-90.315038, 45.033829],\n\t\t\t\t\t\t[-90.923362, 45.031143],\n\t\t\t\t\t\t[-90.925223, 45.291965],\n\t\t\t\t\t\t[-90.925170, 45.379350],\n\t\t\t\t\t\t[-90.678739, 45.377770]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55123\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"123\",\n\t\t\t\t\"NAME\": \"Vernon\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 791.579000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.312404, 43.640988],\n\t\t\t\t\t\t[-90.310979, 43.566408],\n\t\t\t\t\t\t[-90.311142, 43.565134],\n\t\t\t\t\t\t[-90.311069, 43.553991],\n\t\t\t\t\t\t[-90.671654, 43.552969],\n\t\t\t\t\t\t[-90.668561, 43.422994],\n\t\t\t\t\t\t[-91.205550, 43.422949],\n\t\t\t\t\t\t[-91.217706, 43.500550],\n\t\t\t\t\t\t[-91.265091, 43.609977],\n\t\t\t\t\t\t[-91.268748, 43.615348],\n\t\t\t\t\t\t[-91.273316, 43.668307],\n\t\t\t\t\t\t[-91.268198, 43.726571],\n\t\t\t\t\t\t[-90.910467, 43.725342],\n\t\t\t\t\t\t[-90.312195, 43.731312],\n\t\t\t\t\t\t[-90.312404, 43.640988]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55125\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"125\",\n\t\t\t\t\"NAME\": \"Vilas\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 856.604000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.990807, 46.097298],\n\t\t\t\t\t\t[-88.948698, 46.080205],\n\t\t\t\t\t\t[-88.943279, 46.077943],\n\t\t\t\t\t\t[-88.932558, 46.073601],\n\t\t\t\t\t\t[-88.933567, 45.982098],\n\t\t\t\t\t\t[-89.047562, 45.982167],\n\t\t\t\t\t\t[-89.047481, 45.895359],\n\t\t\t\t\t\t[-89.178269, 45.899395],\n\t\t\t\t\t\t[-89.175245, 45.856579],\n\t\t\t\t\t\t[-89.300849, 45.860903],\n\t\t\t\t\t\t[-89.300631, 45.901464],\n\t\t\t\t\t\t[-90.042854, 45.897151],\n\t\t\t\t\t\t[-90.043958, 45.981948],\n\t\t\t\t\t\t[-89.928837, 45.981967],\n\t\t\t\t\t\t[-89.929093, 46.300087],\n\t\t\t\t\t\t[-89.909910, 46.296402],\n\t\t\t\t\t\t[-89.908196, 46.296037],\n\t\t\t\t\t\t[-89.276883, 46.174116],\n\t\t\t\t\t\t[-89.276489, 46.174047],\n\t\t\t\t\t\t[-89.219964, 46.163319],\n\t\t\t\t\t\t[-89.218156, 46.162988],\n\t\t\t\t\t\t[-89.205657, 46.160408],\n\t\t\t\t\t\t[-89.203289, 46.160020],\n\t\t\t\t\t\t[-89.201283, 46.159426],\n\t\t\t\t\t\t[-89.194508, 46.157942],\n\t\t\t\t\t\t[-89.166887, 46.152868],\n\t\t\t\t\t\t[-89.161757, 46.151816],\n\t\t\t\t\t\t[-89.125136, 46.144531],\n\t\t\t\t\t\t[-89.058745, 46.124952],\n\t\t\t\t\t\t[-88.990885, 46.097330],\n\t\t\t\t\t\t[-88.990807, 46.097298]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55133\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"133\",\n\t\t\t\t\"NAME\": \"Waukesha\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 549.574000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.542026, 42.930940],\n\t\t\t\t\t\t[-88.539619, 43.107605],\n\t\t\t\t\t\t[-88.535843, 43.196048],\n\t\t\t\t\t\t[-88.417987, 43.194697],\n\t\t\t\t\t\t[-88.063353, 43.192117],\n\t\t\t\t\t\t[-88.068620, 42.980960],\n\t\t\t\t\t\t[-88.068588, 42.979814],\n\t\t\t\t\t\t[-88.068887, 42.973666],\n\t\t\t\t\t\t[-88.068817, 42.972832],\n\t\t\t\t\t\t[-88.068978, 42.967369],\n\t\t\t\t\t\t[-88.069098, 42.966397],\n\t\t\t\t\t\t[-88.069249, 42.959104],\n\t\t\t\t\t\t[-88.069924, 42.843323],\n\t\t\t\t\t\t[-88.245499, 42.841356],\n\t\t\t\t\t\t[-88.306384, 42.842095],\n\t\t\t\t\t\t[-88.531228, 42.842719],\n\t\t\t\t\t\t[-88.541535, 42.842996],\n\t\t\t\t\t\t[-88.542026, 42.930940]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55139\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"139\",\n\t\t\t\t\"NAME\": \"Winnebago\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 434.487000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.404043, 44.226903],\n\t\t\t\t\t\t[-88.404425, 44.209254],\n\t\t\t\t\t\t[-88.404187, 43.938200],\n\t\t\t\t\t\t[-88.403195, 43.892977],\n\t\t\t\t\t\t[-88.467570, 43.893415],\n\t\t\t\t\t\t[-88.885697, 43.895184],\n\t\t\t\t\t\t[-88.886193, 43.983233],\n\t\t\t\t\t\t[-88.886673, 44.242622],\n\t\t\t\t\t\t[-88.739770, 44.243303],\n\t\t\t\t\t\t[-88.404070, 44.244102],\n\t\t\t\t\t\t[-88.404043, 44.226903]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US56003\",\n\t\t\t\t\"STATE\": \"56\",\n\t\t\t\t\"COUNTY\": \"003\",\n\t\t\t\t\"NAME\": \"Big Horn\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 3137.097000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-107.146808, 44.165666],\n\t\t\t\t\t\t[-108.550562, 44.168455],\n\t\t\t\t\t\t[-108.573797, 44.168468],\n\t\t\t\t\t\t[-108.573420, 44.520811],\n\t\t\t\t\t\t[-108.592494, 44.520930],\n\t\t\t\t\t\t[-108.592296, 44.871444],\n\t\t\t\t\t\t[-108.621313, 45.000408],\n\t\t\t\t\t\t[-108.578484, 45.000484],\n\t\t\t\t\t\t[-108.565921, 45.000578],\n\t\t\t\t\t\t[-108.249345, 44.999458],\n\t\t\t\t\t\t[-108.125666, 45.001011],\n\t\t\t\t\t\t[-107.911495, 45.000948],\n\t\t\t\t\t\t[-107.832319, 44.790161],\n\t\t\t\t\t\t[-107.741543, 44.714352],\n\t\t\t\t\t\t[-107.615891, 44.701297],\n\t\t\t\t\t\t[-107.369621, 44.559837],\n\t\t\t\t\t\t[-107.304293, 44.463779],\n\t\t\t\t\t\t[-107.200149, 44.441962],\n\t\t\t\t\t\t[-107.145001, 44.324004],\n\t\t\t\t\t\t[-107.146808, 44.165666]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US56009\",\n\t\t\t\t\"STATE\": \"56\",\n\t\t\t\t\"COUNTY\": \"009\",\n\t\t\t\t\"NAME\": \"Converse\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 4254.883000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-105.079797, 43.498445],\n\t\t\t\t\t\t[-104.899941, 43.499640],\n\t\t\t\t\t\t[-104.892437, 42.608939],\n\t\t\t\t\t\t[-105.286511, 42.605826],\n\t\t\t\t\t\t[-105.283910, 42.431402],\n\t\t\t\t\t\t[-105.332638, 42.431106],\n\t\t\t\t\t\t[-105.375541, 42.290139],\n\t\t\t\t\t\t[-105.613865, 42.304455],\n\t\t\t\t\t\t[-105.556042, 42.430583],\n\t\t\t\t\t\t[-106.073403, 42.433236],\n\t\t\t\t\t\t[-106.075852, 42.433218],\n\t\t\t\t\t\t[-106.072669, 42.778165],\n\t\t\t\t\t\t[-106.078068, 43.494471],\n\t\t\t\t\t\t[-106.050599, 43.494751],\n\t\t\t\t\t\t[-106.017366, 43.494969],\n\t\t\t\t\t\t[-105.079797, 43.498445]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US56017\",\n\t\t\t\t\"STATE\": \"56\",\n\t\t\t\t\"COUNTY\": \"017\",\n\t\t\t\t\"NAME\": \"Hot Springs\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2004.092000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-108.550758, 44.079403],\n\t\t\t\t\t\t[-108.490254, 44.079760],\n\t\t\t\t\t\t[-108.489431, 43.991866],\n\t\t\t\t\t\t[-108.427064, 43.992054],\n\t\t\t\t\t\t[-108.429563, 43.903355],\n\t\t\t\t\t\t[-108.309360, 43.903255],\n\t\t\t\t\t\t[-108.309695, 43.846619],\n\t\t\t\t\t\t[-108.185255, 43.848255],\n\t\t\t\t\t\t[-108.174938, 43.818968],\n\t\t\t\t\t\t[-107.956448, 43.818666],\n\t\t\t\t\t\t[-107.956577, 43.733446],\n\t\t\t\t\t\t[-107.715876, 43.733343],\n\t\t\t\t\t\t[-107.716218, 43.645766],\n\t\t\t\t\t\t[-107.595157, 43.646427],\n\t\t\t\t\t\t[-107.595105, 43.501397],\n\t\t\t\t\t\t[-107.595137, 43.472279],\n\t\t\t\t\t\t[-108.337861, 43.459765],\n\t\t\t\t\t\t[-108.456973, 43.474279],\n\t\t\t\t\t\t[-108.456962, 43.503156],\n\t\t\t\t\t\t[-108.576167, 43.503256],\n\t\t\t\t\t\t[-108.576167, 43.532556],\n\t\t\t\t\t\t[-108.695072, 43.532255],\n\t\t\t\t\t\t[-108.694672, 43.575755],\n\t\t\t\t\t\t[-108.814276, 43.575555],\n\t\t\t\t\t\t[-108.814276, 43.605255],\n\t\t\t\t\t\t[-108.934141, 43.619163],\n\t\t\t\t\t\t[-109.171638, 43.619764],\n\t\t\t\t\t\t[-109.171448, 43.699198],\n\t\t\t\t\t\t[-109.312949, 43.813293],\n\t\t\t\t\t\t[-109.093603, 43.817619],\n\t\t\t\t\t\t[-109.092878, 43.904474],\n\t\t\t\t\t\t[-108.912783, 43.904754],\n\t\t\t\t\t\t[-108.915985, 43.990854],\n\t\t\t\t\t\t[-108.791779, 43.991053],\n\t\t\t\t\t\t[-108.792277, 44.079616],\n\t\t\t\t\t\t[-108.550758, 44.079403]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US56019\",\n\t\t\t\t\"STATE\": \"56\",\n\t\t\t\t\"COUNTY\": \"019\",\n\t\t\t\t\"NAME\": \"Johnson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 4154.153000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-106.078068, 43.494471],\n\t\t\t\t\t\t[-107.110920, 43.492362],\n\t\t\t\t\t\t[-107.110734, 43.500286],\n\t\t\t\t\t\t[-107.128584, 44.165692],\n\t\t\t\t\t\t[-107.146808, 44.165666],\n\t\t\t\t\t\t[-107.145001, 44.324004],\n\t\t\t\t\t\t[-107.200149, 44.441962],\n\t\t\t\t\t\t[-107.304293, 44.463779],\n\t\t\t\t\t\t[-107.369621, 44.559837],\n\t\t\t\t\t\t[-106.428897, 44.556777],\n\t\t\t\t\t\t[-106.009676, 44.563981],\n\t\t\t\t\t\t[-106.016504, 44.169729],\n\t\t\t\t\t\t[-106.009201, 43.821579],\n\t\t\t\t\t\t[-106.017366, 43.494969],\n\t\t\t\t\t\t[-106.050599, 43.494751],\n\t\t\t\t\t\t[-106.078068, 43.494471]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54023\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"023\",\n\t\t\t\t\"NAME\": \"Grant\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 477.373000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.979898, 39.237624],\n\t\t\t\t\t\t[-79.089655, 39.038208],\n\t\t\t\t\t\t[-79.045953, 38.928710],\n\t\t\t\t\t\t[-79.134296, 38.813340],\n\t\t\t\t\t\t[-79.349867, 38.957509],\n\t\t\t\t\t\t[-79.349566, 38.958709],\n\t\t\t\t\t\t[-79.357666, 38.964509],\n\t\t\t\t\t\t[-79.298164, 39.073210],\n\t\t\t\t\t\t[-79.355468, 39.086508],\n\t\t\t\t\t\t[-79.289264, 39.189706],\n\t\t\t\t\t\t[-79.487175, 39.194906],\n\t\t\t\t\t\t[-79.486873, 39.205961],\n\t\t\t\t\t\t[-79.402911, 39.250106],\n\t\t\t\t\t\t[-79.378687, 39.271920],\n\t\t\t\t\t\t[-79.280039, 39.340076],\n\t\t\t\t\t\t[-79.134456, 39.312501],\n\t\t\t\t\t\t[-78.979898, 39.237624]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54025\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"025\",\n\t\t\t\t\"NAME\": \"Greenbrier\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1019.569000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.882187, 38.103457],\n\t\t\t\t\t\t[-80.711961, 38.079129],\n\t\t\t\t\t\t[-80.436514, 38.267334],\n\t\t\t\t\t\t[-80.360048, 38.225845],\n\t\t\t\t\t\t[-80.363295, 38.114331],\n\t\t\t\t\t\t[-80.264653, 38.046616],\n\t\t\t\t\t\t[-80.169169, 38.036111],\n\t\t\t\t\t\t[-79.959844, 38.063697],\n\t\t\t\t\t\t[-79.978427, 38.029082],\n\t\t\t\t\t\t[-80.002507, 37.992767],\n\t\t\t\t\t\t[-80.055278, 37.951702],\n\t\t\t\t\t\t[-80.130464, 37.893194],\n\t\t\t\t\t\t[-80.146130, 37.884453],\n\t\t\t\t\t\t[-80.147316, 37.885936],\n\t\t\t\t\t\t[-80.148964, 37.886057],\n\t\t\t\t\t\t[-80.162202, 37.875122],\n\t\t\t\t\t\t[-80.227092, 37.798886],\n\t\t\t\t\t\t[-80.231551, 37.792591],\n\t\t\t\t\t\t[-80.257411, 37.756084],\n\t\t\t\t\t\t[-80.262765, 37.738336],\n\t\t\t\t\t\t[-80.260313, 37.733517],\n\t\t\t\t\t\t[-80.259342, 37.731205],\n\t\t\t\t\t\t[-80.263936, 37.719137],\n\t\t\t\t\t\t[-80.287107, 37.696403],\n\t\t\t\t\t\t[-80.296138, 37.691783],\n\t\t\t\t\t\t[-80.450651, 37.683858],\n\t\t\t\t\t\t[-80.663348, 37.731696],\n\t\t\t\t\t\t[-80.806316, 37.868915],\n\t\t\t\t\t\t[-80.769866, 37.985270],\n\t\t\t\t\t\t[-80.882187, 38.103457]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54027\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"027\",\n\t\t\t\t\"NAME\": \"Hampshire\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 640.249000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.508132, 39.088630],\n\t\t\t\t\t\t[-78.899695, 39.199137],\n\t\t\t\t\t\t[-78.979898, 39.237624],\n\t\t\t\t\t\t[-78.850723, 39.331093],\n\t\t\t\t\t\t[-78.767447, 39.447238],\n\t\t\t\t\t\t[-78.657324, 39.535087],\n\t\t\t\t\t\t[-78.655984, 39.534695],\n\t\t\t\t\t\t[-78.565929, 39.519444],\n\t\t\t\t\t\t[-78.468639, 39.516789],\n\t\t\t\t\t\t[-78.347087, 39.466012],\n\t\t\t\t\t\t[-78.362267, 39.357784],\n\t\t\t\t\t\t[-78.340480, 39.353492],\n\t\t\t\t\t\t[-78.358940, 39.319484],\n\t\t\t\t\t\t[-78.360035, 39.317771],\n\t\t\t\t\t\t[-78.399785, 39.244129],\n\t\t\t\t\t\t[-78.399669, 39.243874],\n\t\t\t\t\t\t[-78.423968, 39.212049],\n\t\t\t\t\t\t[-78.427911, 39.208611],\n\t\t\t\t\t\t[-78.429803, 39.207014],\n\t\t\t\t\t\t[-78.431167, 39.205744],\n\t\t\t\t\t\t[-78.432130, 39.204717],\n\t\t\t\t\t\t[-78.437053, 39.199766],\n\t\t\t\t\t\t[-78.438651, 39.198049],\n\t\t\t\t\t\t[-78.426722, 39.188903],\n\t\t\t\t\t\t[-78.410740, 39.171983],\n\t\t\t\t\t\t[-78.418377, 39.156656],\n\t\t\t\t\t\t[-78.439429, 39.132146],\n\t\t\t\t\t\t[-78.459869, 39.113351],\n\t\t\t\t\t\t[-78.508132, 39.088630]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54033\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"033\",\n\t\t\t\t\"NAME\": \"Harrison\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 416.008000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.544521, 39.429120],\n\t\t\t\t\t\t[-80.515598, 39.437740],\n\t\t\t\t\t\t[-80.512663, 39.458612],\n\t\t\t\t\t\t[-80.493991, 39.461148],\n\t\t\t\t\t\t[-80.494085, 39.469599],\n\t\t\t\t\t\t[-80.293693, 39.434312],\n\t\t\t\t\t\t[-80.197286, 39.393186],\n\t\t\t\t\t\t[-80.166387, 39.242283],\n\t\t\t\t\t\t[-80.224687, 39.170977],\n\t\t\t\t\t\t[-80.227173, 39.112792],\n\t\t\t\t\t\t[-80.240394, 39.113145],\n\t\t\t\t\t\t[-80.248771, 39.100809],\n\t\t\t\t\t\t[-80.300209, 39.103857],\n\t\t\t\t\t\t[-80.596126, 39.167069],\n\t\t\t\t\t\t[-80.525709, 39.209429],\n\t\t\t\t\t\t[-80.603684, 39.291041],\n\t\t\t\t\t\t[-80.531808, 39.360121],\n\t\t\t\t\t\t[-80.544521, 39.429120]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54037\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"037\",\n\t\t\t\t\"NAME\": \"Jefferson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 209.635000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.807821, 39.490241],\n\t\t\t\t\t\t[-77.765442, 39.428574],\n\t\t\t\t\t\t[-77.739204, 39.385730],\n\t\t\t\t\t\t[-77.760435, 39.344171],\n\t\t\t\t\t\t[-77.760586, 39.338864],\n\t\t\t\t\t\t[-77.755789, 39.333899],\n\t\t\t\t\t\t[-77.727379, 39.321666],\n\t\t\t\t\t\t[-77.719029, 39.321125],\n\t\t\t\t\t\t[-77.750267, 39.289284],\n\t\t\t\t\t\t[-77.753357, 39.280331],\n\t\t\t\t\t\t[-77.753060, 39.277971],\n\t\t\t\t\t\t[-77.753105, 39.277340],\n\t\t\t\t\t\t[-77.755193, 39.275191],\n\t\t\t\t\t\t[-77.755698, 39.274575],\n\t\t\t\t\t\t[-77.758412, 39.269197],\n\t\t\t\t\t\t[-77.758733, 39.268114],\n\t\t\t\t\t\t[-77.761217, 39.263721],\n\t\t\t\t\t\t[-77.761768, 39.263031],\n\t\t\t\t\t\t[-77.768000, 39.257657],\n\t\t\t\t\t\t[-77.768992, 39.256417],\n\t\t\t\t\t\t[-77.767277, 39.249380],\n\t\t\t\t\t\t[-77.771415, 39.236776],\n\t\t\t\t\t\t[-77.822182, 39.139985],\n\t\t\t\t\t\t[-77.828157, 39.132329],\n\t\t\t\t\t\t[-78.032841, 39.264403],\n\t\t\t\t\t\t[-78.033183, 39.264624],\n\t\t\t\t\t\t[-78.033185, 39.264626],\n\t\t\t\t\t\t[-77.966953, 39.367164],\n\t\t\t\t\t\t[-77.825411, 39.494036],\n\t\t\t\t\t\t[-77.807821, 39.490241]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54045\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"045\",\n\t\t\t\t\"NAME\": \"Logan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 453.737000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.802937, 37.660508],\n\t\t\t\t\t\t[-81.930238, 37.682011],\n\t\t\t\t\t\t[-81.991744, 37.642707],\n\t\t\t\t\t\t[-82.082648, 37.701565],\n\t\t\t\t\t\t[-82.112411, 37.854039],\n\t\t\t\t\t\t[-82.190658, 37.974778],\n\t\t\t\t\t\t[-81.932507, 38.025356],\n\t\t\t\t\t\t[-81.979706, 37.991360],\n\t\t\t\t\t\t[-81.785641, 37.936404],\n\t\t\t\t\t\t[-81.722136, 37.809507],\n\t\t\t\t\t\t[-81.607532, 37.788709],\n\t\t\t\t\t\t[-81.764737, 37.752108],\n\t\t\t\t\t\t[-81.701734, 37.701409],\n\t\t\t\t\t\t[-81.802937, 37.660508]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54051\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"051\",\n\t\t\t\t\"NAME\": \"Marshall\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 305.431000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.828618, 39.720848],\n\t\t\t\t\t\t[-80.812342, 39.848845],\n\t\t\t\t\t\t[-80.806179, 39.897306],\n\t\t\t\t\t\t[-80.809619, 39.905626],\n\t\t\t\t\t\t[-80.808722, 39.912570],\n\t\t\t\t\t\t[-80.806018, 39.917130],\n\t\t\t\t\t\t[-80.759455, 39.958233],\n\t\t\t\t\t\t[-80.743166, 39.969113],\n\t\t\t\t\t\t[-80.740126, 39.970793],\n\t\t\t\t\t\t[-80.732051, 40.033240],\n\t\t\t\t\t\t[-80.519120, 40.016410],\n\t\t\t\t\t\t[-80.519207, 39.963381],\n\t\t\t\t\t\t[-80.519218, 39.962424],\n\t\t\t\t\t\t[-80.519217, 39.962199],\n\t\t\t\t\t\t[-80.519203, 39.959394],\n\t\t\t\t\t\t[-80.519175, 39.956648],\n\t\t\t\t\t\t[-80.519115, 39.939188],\n\t\t\t\t\t\t[-80.519248, 39.936967],\n\t\t\t\t\t\t[-80.519342, 39.721403],\n\t\t\t\t\t\t[-80.828618, 39.720848]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54053\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"053\",\n\t\t\t\t\"NAME\": \"Mason\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 430.748000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.772843, 38.680843],\n\t\t\t\t\t\t[-81.955791, 38.657355],\n\t\t\t\t\t\t[-82.064562, 38.607985],\n\t\t\t\t\t\t[-82.055127, 38.474547],\n\t\t\t\t\t\t[-82.218967, 38.591683],\n\t\t\t\t\t\t[-82.193824, 38.593096],\n\t\t\t\t\t\t[-82.181967, 38.599384],\n\t\t\t\t\t\t[-82.177267, 38.603784],\n\t\t\t\t\t\t[-82.175167, 38.608484],\n\t\t\t\t\t\t[-82.172066, 38.619284],\n\t\t\t\t\t\t[-82.172066, 38.625984],\n\t\t\t\t\t\t[-82.182467, 38.708782],\n\t\t\t\t\t\t[-82.188268, 38.734082],\n\t\t\t\t\t\t[-82.198882, 38.757725],\n\t\t\t\t\t\t[-82.220449, 38.773739],\n\t\t\t\t\t\t[-82.221566, 38.787187],\n\t\t\t\t\t\t[-82.215759, 38.797462],\n\t\t\t\t\t\t[-82.191172, 38.815137],\n\t\t\t\t\t\t[-82.184428, 38.816529],\n\t\t\t\t\t\t[-82.139279, 38.866407],\n\t\t\t\t\t\t[-82.098762, 38.958288],\n\t\t\t\t\t\t[-82.093165, 38.970980],\n\t\t\t\t\t\t[-82.051563, 38.994378],\n\t\t\t\t\t\t[-82.045663, 39.003778],\n\t\t\t\t\t\t[-82.041563, 39.017878],\n\t\t\t\t\t\t[-82.035963, 39.025478],\n\t\t\t\t\t\t[-82.017562, 39.030078],\n\t\t\t\t\t\t[-82.002261, 39.027878],\n\t\t\t\t\t\t[-81.935619, 38.989500],\n\t\t\t\t\t\t[-81.919783, 38.968494],\n\t\t\t\t\t\t[-81.900595, 38.937671],\n\t\t\t\t\t\t[-81.898470, 38.929603],\n\t\t\t\t\t\t[-81.900910, 38.924338],\n\t\t\t\t\t\t[-81.926671, 38.901311],\n\t\t\t\t\t\t[-81.928352, 38.895371],\n\t\t\t\t\t\t[-81.926967, 38.891602],\n\t\t\t\t\t\t[-81.908645, 38.878460],\n\t\t\t\t\t\t[-81.772843, 38.680843]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54059\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"059\",\n\t\t\t\t\"NAME\": \"Mingo\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 423.109000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.802937, 37.660508],\n\t\t\t\t\t\t[-81.855939, 37.548910],\n\t\t\t\t\t\t[-81.865239, 37.543610],\n\t\t\t\t\t\t[-81.869439, 37.537810],\n\t\t\t\t\t\t[-81.882936, 37.538210],\n\t\t\t\t\t\t[-81.886050, 37.536744],\n\t\t\t\t\t\t[-81.889236, 37.528387],\n\t\t\t\t\t\t[-81.897951, 37.524395],\n\t\t\t\t\t\t[-81.909374, 37.527041],\n\t\t\t\t\t\t[-81.912826, 37.520410],\n\t\t\t\t\t\t[-81.922628, 37.511914],\n\t\t\t\t\t\t[-81.927870, 37.512118],\n\t\t\t\t\t\t[-81.968297, 37.537798],\n\t\t\t\t\t\t[-81.998177, 37.543082],\n\t\t\t\t\t\t[-81.999844, 37.542579],\n\t\t\t\t\t\t[-82.008274, 37.533357],\n\t\t\t\t\t\t[-82.048521, 37.531078],\n\t\t\t\t\t\t[-82.116584, 37.559588],\n\t\t\t\t\t\t[-82.125892, 37.574031],\n\t\t\t\t\t\t[-82.125601, 37.579021],\n\t\t\t\t\t\t[-82.141814, 37.595052],\n\t\t\t\t\t\t[-82.219670, 37.643046],\n\t\t\t\t\t\t[-82.250280, 37.657776],\n\t\t\t\t\t\t[-82.297011, 37.687273],\n\t\t\t\t\t\t[-82.307235, 37.707669],\n\t\t\t\t\t\t[-82.325739, 37.735799],\n\t\t\t\t\t\t[-82.326404, 37.740815],\n\t\t\t\t\t\t[-82.319023, 37.758892],\n\t\t\t\t\t\t[-82.329867, 37.775897],\n\t\t\t\t\t\t[-82.400234, 37.851833],\n\t\t\t\t\t\t[-82.306391, 37.943640],\n\t\t\t\t\t\t[-82.190658, 37.974778],\n\t\t\t\t\t\t[-82.112411, 37.854039],\n\t\t\t\t\t\t[-82.082648, 37.701565],\n\t\t\t\t\t\t[-81.991744, 37.642707],\n\t\t\t\t\t\t[-81.930238, 37.682011],\n\t\t\t\t\t\t[-81.802937, 37.660508]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54065\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"065\",\n\t\t\t\t\"NAME\": \"Morgan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 229.073000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.347087, 39.466012],\n\t\t\t\t\t\t[-78.468639, 39.516789],\n\t\t\t\t\t\t[-78.436939, 39.538959],\n\t\t\t\t\t\t[-78.432033, 39.561053],\n\t\t\t\t\t\t[-78.450207, 39.570889],\n\t\t\t\t\t\t[-78.454376, 39.574319],\n\t\t\t\t\t\t[-78.458456, 39.581158],\n\t\t\t\t\t\t[-78.457187, 39.587379],\n\t\t\t\t\t\t[-78.430250, 39.623290],\n\t\t\t\t\t\t[-78.355218, 39.640576],\n\t\t\t\t\t\t[-78.334044, 39.635770],\n\t\t\t\t\t\t[-78.313033, 39.631001],\n\t\t\t\t\t\t[-78.283039, 39.620470],\n\t\t\t\t\t\t[-78.271122, 39.619642],\n\t\t\t\t\t\t[-78.224337, 39.663270],\n\t\t\t\t\t\t[-78.191107, 39.690262],\n\t\t\t\t\t\t[-78.182759, 39.695110],\n\t\t\t\t\t\t[-78.176625, 39.695967],\n\t\t\t\t\t\t[-78.143478, 39.690412],\n\t\t\t\t\t\t[-78.107834, 39.682137],\n\t\t\t\t\t\t[-78.074595, 39.666686],\n\t\t\t\t\t\t[-78.035992, 39.635720],\n\t\t\t\t\t\t[-78.023427, 39.619860],\n\t\t\t\t\t\t[-78.138937, 39.593796],\n\t\t\t\t\t\t[-78.228766, 39.391233],\n\t\t\t\t\t\t[-78.347087, 39.466012]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54069\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"069\",\n\t\t\t\t\"NAME\": \"Ohio\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 105.820000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.705482, 40.153047],\n\t\t\t\t\t\t[-80.703052, 40.157231],\n\t\t\t\t\t\t[-80.685391, 40.187642],\n\t\t\t\t\t\t[-80.519104, 40.159672],\n\t\t\t\t\t\t[-80.518960, 40.078089],\n\t\t\t\t\t\t[-80.519008, 40.077001],\n\t\t\t\t\t\t[-80.519120, 40.016410],\n\t\t\t\t\t\t[-80.732051, 40.033240],\n\t\t\t\t\t\t[-80.731504, 40.037472],\n\t\t\t\t\t\t[-80.730904, 40.049172],\n\t\t\t\t\t\t[-80.733104, 40.058772],\n\t\t\t\t\t\t[-80.726504, 40.089072],\n\t\t\t\t\t\t[-80.705482, 40.153047]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54075\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"075\",\n\t\t\t\t\"NAME\": \"Pocahontas\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 940.284000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.245518, 38.388457],\n\t\t\t\t\t\t[-80.116920, 38.473953],\n\t\t\t\t\t\t[-80.029208, 38.459184],\n\t\t\t\t\t\t[-79.863250, 38.550820],\n\t\t\t\t\t\t[-79.781783, 38.736911],\n\t\t\t\t\t\t[-79.739180, 38.679613],\n\t\t\t\t\t\t[-79.626774, 38.664214],\n\t\t\t\t\t\t[-79.649075, 38.591515],\n\t\t\t\t\t\t[-79.669128, 38.510975],\n\t\t\t\t\t\t[-79.669128, 38.510883],\n\t\t\t\t\t\t[-79.695565, 38.477842],\n\t\t\t\t\t\t[-79.699006, 38.475148],\n\t\t\t\t\t\t[-79.688205, 38.450476],\n\t\t\t\t\t\t[-79.688962, 38.449538],\n\t\t\t\t\t\t[-79.689544, 38.442511],\n\t\t\t\t\t\t[-79.691377, 38.439558],\n\t\t\t\t\t\t[-79.731661, 38.374143],\n\t\t\t\t\t\t[-79.808711, 38.309429],\n\t\t\t\t\t\t[-79.810115, 38.305037],\n\t\t\t\t\t\t[-79.788945, 38.268703],\n\t\t\t\t\t\t[-79.790134, 38.267654],\n\t\t\t\t\t\t[-79.794568, 38.264856],\n\t\t\t\t\t\t[-79.891999, 38.203378],\n\t\t\t\t\t\t[-79.892345, 38.202397],\n\t\t\t\t\t\t[-79.916174, 38.184386],\n\t\t\t\t\t\t[-79.917061, 38.183741],\n\t\t\t\t\t\t[-79.921196, 38.180378],\n\t\t\t\t\t\t[-79.921026, 38.179954],\n\t\t\t\t\t\t[-79.925251, 38.150465],\n\t\t\t\t\t\t[-79.925512, 38.150237],\n\t\t\t\t\t\t[-79.928683, 38.144928],\n\t\t\t\t\t\t[-79.928747, 38.144436],\n\t\t\t\t\t\t[-79.933751, 38.135508],\n\t\t\t\t\t\t[-79.938394, 38.130563],\n\t\t\t\t\t\t[-79.931034, 38.101402],\n\t\t\t\t\t\t[-79.933911, 38.099168],\n\t\t\t\t\t\t[-79.959844, 38.063697],\n\t\t\t\t\t\t[-80.169169, 38.036111],\n\t\t\t\t\t\t[-80.264653, 38.046616],\n\t\t\t\t\t\t[-80.363295, 38.114331],\n\t\t\t\t\t\t[-80.360048, 38.225845],\n\t\t\t\t\t\t[-80.352171, 38.345337],\n\t\t\t\t\t\t[-80.245518, 38.388457]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48341\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"341\",\n\t\t\t\t\"NAME\": \"Moore\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 899.691000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-101.622831, 35.624057],\n\t\t\t\t\t\t[-101.622800, 35.620196],\n\t\t\t\t\t\t[-102.162752, 35.620035],\n\t\t\t\t\t\t[-102.162808, 35.625044],\n\t\t\t\t\t\t[-102.162809, 35.627515],\n\t\t\t\t\t\t[-102.163015, 36.055249],\n\t\t\t\t\t\t[-101.623466, 36.055405],\n\t\t\t\t\t\t[-101.622831, 35.624057]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54083\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"083\",\n\t\t\t\t\"NAME\": \"Randolph\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1039.681000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.825092, 39.115803],\n\t\t\t\t\t\t[-79.785685, 39.037404],\n\t\t\t\t\t\t[-79.508765, 38.975173],\n\t\t\t\t\t\t[-79.357666, 38.964509],\n\t\t\t\t\t\t[-79.349566, 38.958709],\n\t\t\t\t\t\t[-79.349867, 38.957509],\n\t\t\t\t\t\t[-79.455472, 38.929910],\n\t\t\t\t\t\t[-79.539075, 38.841411],\n\t\t\t\t\t\t[-79.510073, 38.780712],\n\t\t\t\t\t\t[-79.626774, 38.664214],\n\t\t\t\t\t\t[-79.739180, 38.679613],\n\t\t\t\t\t\t[-79.781783, 38.736911],\n\t\t\t\t\t\t[-79.863250, 38.550820],\n\t\t\t\t\t\t[-80.029208, 38.459184],\n\t\t\t\t\t\t[-80.116920, 38.473953],\n\t\t\t\t\t\t[-80.245518, 38.388457],\n\t\t\t\t\t\t[-80.183931, 38.525386],\n\t\t\t\t\t\t[-80.280059, 38.694867],\n\t\t\t\t\t\t[-80.236831, 38.743765],\n\t\t\t\t\t\t[-80.126105, 38.745836],\n\t\t\t\t\t\t[-80.085062, 38.947236],\n\t\t\t\t\t\t[-79.896094, 38.973404],\n\t\t\t\t\t\t[-79.825092, 39.115803]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54087\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"087\",\n\t\t\t\t\"NAME\": \"Roane\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 483.563000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.522166, 38.612746],\n\t\t\t\t\t\t[-81.546631, 38.672387],\n\t\t\t\t\t\t[-81.502628, 38.917922],\n\t\t\t\t\t\t[-81.448148, 38.941645],\n\t\t\t\t\t\t[-81.343911, 38.895633],\n\t\t\t\t\t\t[-81.278412, 38.914867],\n\t\t\t\t\t\t[-81.171819, 38.739805],\n\t\t\t\t\t\t[-81.158837, 38.644494],\n\t\t\t\t\t\t[-81.083710, 38.611982],\n\t\t\t\t\t\t[-81.130775, 38.565948],\n\t\t\t\t\t\t[-81.194113, 38.527634],\n\t\t\t\t\t\t[-81.465372, 38.549898],\n\t\t\t\t\t\t[-81.522166, 38.612746]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54091\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"091\",\n\t\t\t\t\"NAME\": \"Taylor\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 172.771000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.938878, 39.452465],\n\t\t\t\t\t\t[-79.894688, 39.435588],\n\t\t\t\t\t\t[-79.895536, 39.299584],\n\t\t\t\t\t\t[-80.023411, 39.247892],\n\t\t\t\t\t\t[-80.166387, 39.242283],\n\t\t\t\t\t\t[-80.197286, 39.393186],\n\t\t\t\t\t\t[-80.086785, 39.386463],\n\t\t\t\t\t\t[-79.938878, 39.452465]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54093\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"093\",\n\t\t\t\t\"NAME\": \"Tucker\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 418.922000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.809729, 39.230526],\n\t\t\t\t\t\t[-79.687283, 39.271398],\n\t\t\t\t\t\t[-79.487175, 39.194906],\n\t\t\t\t\t\t[-79.289264, 39.189706],\n\t\t\t\t\t\t[-79.355468, 39.086508],\n\t\t\t\t\t\t[-79.298164, 39.073210],\n\t\t\t\t\t\t[-79.357666, 38.964509],\n\t\t\t\t\t\t[-79.508765, 38.975173],\n\t\t\t\t\t\t[-79.785685, 39.037404],\n\t\t\t\t\t\t[-79.825092, 39.115803],\n\t\t\t\t\t\t[-79.809729, 39.230526]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54097\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"097\",\n\t\t\t\t\"NAME\": \"Upshur\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 354.638000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.300209, 39.103857],\n\t\t\t\t\t\t[-80.248771, 39.100809],\n\t\t\t\t\t\t[-80.240394, 39.113145],\n\t\t\t\t\t\t[-80.227173, 39.112792],\n\t\t\t\t\t\t[-80.128198, 39.037795],\n\t\t\t\t\t\t[-80.055820, 39.037160],\n\t\t\t\t\t\t[-80.085062, 38.947236],\n\t\t\t\t\t\t[-80.126105, 38.745836],\n\t\t\t\t\t\t[-80.236831, 38.743765],\n\t\t\t\t\t\t[-80.280059, 38.694867],\n\t\t\t\t\t\t[-80.393063, 38.727571],\n\t\t\t\t\t\t[-80.386989, 38.874808],\n\t\t\t\t\t\t[-80.317486, 38.958647],\n\t\t\t\t\t\t[-80.300209, 39.103857]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54099\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"099\",\n\t\t\t\t\"NAME\": \"Wayne\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 505.981000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.264849, 38.229199],\n\t\t\t\t\t\t[-82.283316, 38.141936],\n\t\t\t\t\t\t[-82.203865, 38.023606],\n\t\t\t\t\t\t[-82.306391, 37.943640],\n\t\t\t\t\t\t[-82.400234, 37.851833],\n\t\t\t\t\t\t[-82.417679, 37.870658],\n\t\t\t\t\t\t[-82.474666, 37.910388],\n\t\t\t\t\t\t[-82.500386, 37.936518],\n\t\t\t\t\t\t[-82.497358, 37.945338],\n\t\t\t\t\t\t[-82.497300, 37.945507],\n\t\t\t\t\t\t[-82.464987, 37.976859],\n\t\t\t\t\t\t[-82.464096, 37.982437],\n\t\t\t\t\t\t[-82.465473, 37.984780],\n\t\t\t\t\t\t[-82.487732, 37.998330],\n\t\t\t\t\t\t[-82.509812, 38.001249],\n\t\t\t\t\t\t[-82.519665, 38.008538],\n\t\t\t\t\t\t[-82.539139, 38.039093],\n\t\t\t\t\t\t[-82.547284, 38.061094],\n\t\t\t\t\t\t[-82.600127, 38.117389],\n\t\t\t\t\t\t[-82.602618, 38.118350],\n\t\t\t\t\t\t[-82.621164, 38.123239],\n\t\t\t\t\t\t[-82.636466, 38.137860],\n\t\t\t\t\t\t[-82.644739, 38.165487],\n\t\t\t\t\t\t[-82.604230, 38.247303],\n\t\t\t\t\t\t[-82.594970, 38.245453],\n\t\t\t\t\t\t[-82.584001, 38.246371],\n\t\t\t\t\t\t[-82.578254, 38.254809],\n\t\t\t\t\t\t[-82.574656, 38.263873],\n\t\t\t\t\t\t[-82.571877, 38.315781],\n\t\t\t\t\t\t[-82.593008, 38.375082],\n\t\t\t\t\t\t[-82.595382, 38.382712],\n\t\t\t\t\t\t[-82.595369, 38.382722],\n\t\t\t\t\t\t[-82.597113, 38.412881],\n\t\t\t\t\t\t[-82.596281, 38.417681],\n\t\t\t\t\t\t[-82.593673, 38.421809],\n\t\t\t\t\t\t[-82.560664, 38.404338],\n\t\t\t\t\t\t[-82.520178, 38.407582],\n\t\t\t\t\t\t[-82.506670, 38.410092],\n\t\t\t\t\t\t[-82.343911, 38.305209],\n\t\t\t\t\t\t[-82.297858, 38.327443],\n\t\t\t\t\t\t[-82.264849, 38.229199]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54103\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"103\",\n\t\t\t\t\"NAME\": \"Wetzel\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 358.063000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.494085, 39.469599],\n\t\t\t\t\t\t[-80.493991, 39.461148],\n\t\t\t\t\t\t[-80.512663, 39.458612],\n\t\t\t\t\t\t[-80.515598, 39.437740],\n\t\t\t\t\t\t[-80.544521, 39.429120],\n\t\t\t\t\t\t[-80.618629, 39.450375],\n\t\t\t\t\t\t[-80.720451, 39.481237],\n\t\t\t\t\t\t[-80.852182, 39.602048],\n\t\t\t\t\t\t[-80.943782, 39.606926],\n\t\t\t\t\t\t[-80.892208, 39.616756],\n\t\t\t\t\t\t[-80.880360, 39.620706],\n\t\t\t\t\t\t[-80.831871, 39.705655],\n\t\t\t\t\t\t[-80.829764, 39.711839],\n\t\t\t\t\t\t[-80.828618, 39.720848],\n\t\t\t\t\t\t[-80.519342, 39.721403],\n\t\t\t\t\t\t[-80.421388, 39.721189],\n\t\t\t\t\t\t[-80.395810, 39.637347],\n\t\t\t\t\t\t[-80.498163, 39.563327],\n\t\t\t\t\t\t[-80.494085, 39.469599]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54105\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"105\",\n\t\t\t\t\"NAME\": \"Wirt\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 232.509000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.502628, 38.917922],\n\t\t\t\t\t\t[-81.581447, 39.026179],\n\t\t\t\t\t\t[-81.424906, 39.135679],\n\t\t\t\t\t\t[-81.298017, 39.185572],\n\t\t\t\t\t\t[-81.328786, 39.152584],\n\t\t\t\t\t\t[-81.250252, 39.035074],\n\t\t\t\t\t\t[-81.162455, 39.030608],\n\t\t\t\t\t\t[-81.278412, 38.914867],\n\t\t\t\t\t\t[-81.343911, 38.895633],\n\t\t\t\t\t\t[-81.448148, 38.941645],\n\t\t\t\t\t\t[-81.502628, 38.917922]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54107\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"107\",\n\t\t\t\t\"NAME\": \"Wood\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 366.260000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.747253, 39.095379],\n\t\t\t\t\t\t[-81.749689, 39.180742],\n\t\t\t\t\t\t[-81.749853, 39.186489],\n\t\t\t\t\t\t[-81.740061, 39.190652],\n\t\t\t\t\t\t[-81.721551, 39.212448],\n\t\t\t\t\t\t[-81.695724, 39.242859],\n\t\t\t\t\t\t[-81.605816, 39.275851],\n\t\t\t\t\t\t[-81.542346, 39.352874],\n\t\t\t\t\t\t[-81.467744, 39.403774],\n\t\t\t\t\t\t[-81.456143, 39.409274],\n\t\t\t\t\t\t[-81.446543, 39.410374],\n\t\t\t\t\t\t[-81.435642, 39.408474],\n\t\t\t\t\t\t[-81.412706, 39.394618],\n\t\t\t\t\t\t[-81.406689, 39.388090],\n\t\t\t\t\t\t[-81.393794, 39.351706],\n\t\t\t\t\t\t[-81.384556, 39.343449],\n\t\t\t\t\t\t[-81.375961, 39.341697],\n\t\t\t\t\t\t[-81.371271, 39.342062],\n\t\t\t\t\t\t[-81.239477, 39.268328],\n\t\t\t\t\t\t[-81.298017, 39.185572],\n\t\t\t\t\t\t[-81.424906, 39.135679],\n\t\t\t\t\t\t[-81.581447, 39.026179],\n\t\t\t\t\t\t[-81.747253, 39.095379]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55011\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"011\",\n\t\t\t\t\"NAME\": \"Buffalo\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 671.635000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.529101, 44.596197],\n\t\t\t\t\t\t[-91.529741, 44.246777],\n\t\t\t\t\t\t[-91.612994, 44.172606],\n\t\t\t\t\t\t[-91.534229, 44.096046],\n\t\t\t\t\t\t[-91.559197, 44.023959],\n\t\t\t\t\t\t[-91.580019, 44.026925],\n\t\t\t\t\t\t[-91.592070, 44.031372],\n\t\t\t\t\t\t[-91.672520, 44.091286],\n\t\t\t\t\t\t[-91.721552, 44.130342],\n\t\t\t\t\t\t[-91.740871, 44.133918],\n\t\t\t\t\t\t[-91.808064, 44.159262],\n\t\t\t\t\t\t[-91.862858, 44.193001],\n\t\t\t\t\t\t[-91.875158, 44.200575],\n\t\t\t\t\t\t[-91.892698, 44.231105],\n\t\t\t\t\t\t[-91.892963, 44.235149],\n\t\t\t\t\t\t[-91.887905, 44.246398],\n\t\t\t\t\t\t[-91.887189, 44.252513],\n\t\t\t\t\t\t[-91.918625, 44.322671],\n\t\t\t\t\t\t[-91.925590, 44.333548],\n\t\t\t\t\t\t[-91.963600, 44.362112],\n\t\t\t\t\t\t[-91.972493, 44.366760],\n\t\t\t\t\t\t[-92.046285, 44.394398],\n\t\t\t\t\t\t[-92.083925, 44.406211],\n\t\t\t\t\t\t[-92.029180, 44.586292],\n\t\t\t\t\t\t[-91.650248, 44.596649],\n\t\t\t\t\t\t[-91.529101, 44.596197]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55013\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"013\",\n\t\t\t\t\"NAME\": \"Burnett\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 821.848000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.885661, 45.644126],\n\t\t\t\t\t\t[-92.883987, 45.654870],\n\t\t\t\t\t\t[-92.869193, 45.717568],\n\t\t\t\t\t\t[-92.863703, 45.721820],\n\t\t\t\t\t\t[-92.841051, 45.730024],\n\t\t\t\t\t\t[-92.803971, 45.749805],\n\t\t\t\t\t\t[-92.784621, 45.764196],\n\t\t\t\t\t\t[-92.768430, 45.798010],\n\t\t\t\t\t\t[-92.762490, 45.819239],\n\t\t\t\t\t\t[-92.734039, 45.868108],\n\t\t\t\t\t\t[-92.721128, 45.883805],\n\t\t\t\t\t\t[-92.707702, 45.894901],\n\t\t\t\t\t\t[-92.656125, 45.924442],\n\t\t\t\t\t\t[-92.443285, 46.014648],\n\t\t\t\t\t\t[-92.326877, 46.066618],\n\t\t\t\t\t\t[-92.306756, 46.072410],\n\t\t\t\t\t\t[-92.294033, 46.074377],\n\t\t\t\t\t\t[-92.294069, 46.078346],\n\t\t\t\t\t\t[-92.293530, 46.113824],\n\t\t\t\t\t\t[-92.293706, 46.157321],\n\t\t\t\t\t\t[-92.049636, 46.157597],\n\t\t\t\t\t\t[-92.033404, 45.983870],\n\t\t\t\t\t\t[-92.031417, 45.639928],\n\t\t\t\t\t\t[-92.154888, 45.639742],\n\t\t\t\t\t\t[-92.154443, 45.725616],\n\t\t\t\t\t\t[-92.528198, 45.728680],\n\t\t\t\t\t\t[-92.529111, 45.642171],\n\t\t\t\t\t\t[-92.885661, 45.644126]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55019\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"019\",\n\t\t\t\t\"NAME\": \"Clark\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1209.815000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.315919, 44.844187],\n\t\t\t\t\t\t[-90.316180, 44.840775],\n\t\t\t\t\t\t[-90.316253, 44.685154],\n\t\t\t\t\t\t[-90.316050, 44.424673],\n\t\t\t\t\t\t[-90.801904, 44.422347],\n\t\t\t\t\t\t[-90.801852, 44.509573],\n\t\t\t\t\t\t[-90.923104, 44.509838],\n\t\t\t\t\t\t[-90.922350, 44.596293],\n\t\t\t\t\t\t[-90.922247, 44.857309],\n\t\t\t\t\t\t[-90.922669, 44.944459],\n\t\t\t\t\t\t[-90.922395, 44.954816],\n\t\t\t\t\t\t[-90.923393, 44.995520],\n\t\t\t\t\t\t[-90.922838, 44.999966],\n\t\t\t\t\t\t[-90.923362, 45.031143],\n\t\t\t\t\t\t[-90.315038, 45.033829],\n\t\t\t\t\t\t[-90.315919, 44.844187]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55021\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"021\",\n\t\t\t\t\"NAME\": \"Columbia\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 765.529000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.720295, 43.292928],\n\t\t\t\t\t\t[-89.727171, 43.301305],\n\t\t\t\t\t\t[-89.716768, 43.321806],\n\t\t\t\t\t\t[-89.600719, 43.380006],\n\t\t\t\t\t\t[-89.599357, 43.558041],\n\t\t\t\t\t\t[-89.732238, 43.571826],\n\t\t\t\t\t\t[-89.785809, 43.641049],\n\t\t\t\t\t\t[-89.599985, 43.642596],\n\t\t\t\t\t\t[-89.245437, 43.643083],\n\t\t\t\t\t\t[-89.006848, 43.633045],\n\t\t\t\t\t\t[-89.009139, 43.284830],\n\t\t\t\t\t\t[-89.720295, 43.292928]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55023\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"023\",\n\t\t\t\t\"NAME\": \"Crawford\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 570.660000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.666786, 43.171778],\n\t\t\t\t\t\t[-90.845746, 43.077625],\n\t\t\t\t\t\t[-91.065270, 42.992074],\n\t\t\t\t\t\t[-91.163064, 42.986781],\n\t\t\t\t\t\t[-91.175167, 43.041267],\n\t\t\t\t\t\t[-91.178087, 43.062044],\n\t\t\t\t\t\t[-91.177222, 43.080247],\n\t\t\t\t\t\t[-91.178251, 43.124982],\n\t\t\t\t\t\t[-91.175253, 43.134665],\n\t\t\t\t\t\t[-91.156200, 43.142945],\n\t\t\t\t\t\t[-91.146200, 43.152405],\n\t\t\t\t\t\t[-91.062562, 43.243165],\n\t\t\t\t\t\t[-91.057918, 43.255366],\n\t\t\t\t\t\t[-91.085652, 43.291870],\n\t\t\t\t\t\t[-91.107237, 43.313645],\n\t\t\t\t\t\t[-91.210233, 43.372064],\n\t\t\t\t\t\t[-91.205550, 43.422949],\n\t\t\t\t\t\t[-90.668561, 43.422994],\n\t\t\t\t\t\t[-90.666786, 43.171778]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US53029\",\n\t\t\t\t\"STATE\": \"53\",\n\t\t\t\t\"COUNTY\": \"029\",\n\t\t\t\t\"NAME\": \"Island\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 208.449000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-122.397349, 47.912401],\n\t\t\t\t\t\t\t[-122.419274, 47.912125],\n\t\t\t\t\t\t\t[-122.431035, 47.914732],\n\t\t\t\t\t\t\t[-122.445519, 47.930226],\n\t\t\t\t\t\t\t[-122.445759, 47.936190],\n\t\t\t\t\t\t\t[-122.440790, 47.946594],\n\t\t\t\t\t\t\t[-122.440760, 47.951845],\n\t\t\t\t\t\t\t[-122.446682, 47.963155],\n\t\t\t\t\t\t\t[-122.472660, 47.988449],\n\t\t\t\t\t\t\t[-122.487505, 47.990729],\n\t\t\t\t\t\t\t[-122.501257, 47.987089],\n\t\t\t\t\t\t\t[-122.514813, 47.981152],\n\t\t\t\t\t\t\t[-122.517780, 47.974916],\n\t\t\t\t\t\t\t[-122.521219, 47.972997],\n\t\t\t\t\t\t\t[-122.546824, 47.967215],\n\t\t\t\t\t\t\t[-122.552053, 47.973644],\n\t\t\t\t\t\t\t[-122.551032, 47.977346],\n\t\t\t\t\t\t\t[-122.543063, 47.985983],\n\t\t\t\t\t\t\t[-122.541564, 47.992998],\n\t\t\t\t\t\t\t[-122.542924, 47.996404],\n\t\t\t\t\t\t\t[-122.560018, 48.006502],\n\t\t\t\t\t\t\t[-122.581780, 48.010386],\n\t\t\t\t\t\t\t[-122.607342, 48.030992],\n\t\t\t\t\t\t\t[-122.596786, 48.038834],\n\t\t\t\t\t\t\t[-122.593621, 48.047200],\n\t\t\t\t\t\t\t[-122.594922, 48.056318],\n\t\t\t\t\t\t\t[-122.614028, 48.072788],\n\t\t\t\t\t\t\t[-122.613217, 48.079485],\n\t\t\t\t\t\t\t[-122.607291, 48.088034],\n\t\t\t\t\t\t\t[-122.598301, 48.110616],\n\t\t\t\t\t\t\t[-122.602109, 48.135249],\n\t\t\t\t\t\t\t[-122.609568, 48.151860],\n\t\t\t\t\t\t\t[-122.617464, 48.159055],\n\t\t\t\t\t\t\t[-122.633167, 48.163281],\n\t\t\t\t\t\t\t[-122.656020, 48.162513],\n\t\t\t\t\t\t\t[-122.671235, 48.157312],\n\t\t\t\t\t\t\t[-122.677337, 48.154587],\n\t\t\t\t\t\t\t[-122.679556, 48.155113],\n\t\t\t\t\t\t\t[-122.686626, 48.174653],\n\t\t\t\t\t\t\t[-122.693084, 48.181509],\n\t\t\t\t\t\t\t[-122.711508, 48.193573],\n\t\t\t\t\t\t\t[-122.735030, 48.199964],\n\t\t\t\t\t\t\t[-122.744612, 48.209650],\n\t\t\t\t\t\t\t[-122.763042, 48.215342],\n\t\t\t\t\t\t\t[-122.770045, 48.224395],\n\t\t\t\t\t\t\t[-122.769939, 48.227548],\n\t\t\t\t\t\t\t[-122.752563, 48.260061],\n\t\t\t\t\t\t\t[-122.732022, 48.279425],\n\t\t\t\t\t\t\t[-122.722590, 48.304268],\n\t\t\t\t\t\t\t[-122.707077, 48.315286],\n\t\t\t\t\t\t\t[-122.673731, 48.354683],\n\t\t\t\t\t\t\t[-122.664928, 48.374823],\n\t\t\t\t\t\t\t[-122.664659, 48.401508],\n\t\t\t\t\t\t\t[-122.644798, 48.405488],\n\t\t\t\t\t\t\t[-122.634991, 48.404244],\n\t\t\t\t\t\t\t[-122.632643, 48.401068],\n\t\t\t\t\t\t\t[-122.634024, 48.398858],\n\t\t\t\t\t\t\t[-122.637339, 48.398029],\n\t\t\t\t\t\t\t[-122.637892, 48.395681],\n\t\t\t\t\t\t\t[-122.635820, 48.395128],\n\t\t\t\t\t\t\t[-122.627809, 48.397200],\n\t\t\t\t\t\t\t[-122.617174, 48.407145],\n\t\t\t\t\t\t\t[-122.609715, 48.411565],\n\t\t\t\t\t\t\t[-122.601980, 48.409907],\n\t\t\t\t\t\t\t[-122.596732, 48.405626],\n\t\t\t\t\t\t\t[-122.595351, 48.397200],\n\t\t\t\t\t\t\t[-122.585038, 48.395166],\n\t\t\t\t\t\t\t[-122.588891, 48.363005],\n\t\t\t\t\t\t\t[-122.585162, 48.353304],\n\t\t\t\t\t\t\t[-122.565525, 48.348217],\n\t\t\t\t\t\t\t[-122.551334, 48.342138],\n\t\t\t\t\t\t\t[-122.515979, 48.320419],\n\t\t\t\t\t\t\t[-122.506568, 48.310041],\n\t\t\t\t\t\t\t[-122.504729, 48.300373],\n\t\t\t\t\t\t\t[-122.505828, 48.297677],\n\t\t\t\t\t\t\t[-122.519535, 48.288314],\n\t\t\t\t\t\t\t[-122.522756, 48.285504],\n\t\t\t\t\t\t\t[-122.530976, 48.282445],\n\t\t\t\t\t\t\t[-122.551793, 48.281512],\n\t\t\t\t\t\t\t[-122.558332, 48.282061],\n\t\t\t\t\t\t\t[-122.574872, 48.294903],\n\t\t\t\t\t\t\t[-122.584086, 48.297987],\n\t\t\t\t\t\t\t[-122.599532, 48.298303],\n\t\t\t\t\t\t\t[-122.618466, 48.294159],\n\t\t\t\t\t\t\t[-122.626757, 48.288991],\n\t\t\t\t\t\t\t[-122.620748, 48.282961],\n\t\t\t\t\t\t\t[-122.623779, 48.269431],\n\t\t\t\t\t\t\t[-122.652639, 48.265081],\n\t\t\t\t\t\t\t[-122.653430, 48.259340],\n\t\t\t\t\t\t\t[-122.669210, 48.240614],\n\t\t\t\t\t\t\t[-122.668385, 48.223967],\n\t\t\t\t\t\t\t[-122.631260, 48.220686],\n\t\t\t\t\t\t\t[-122.628352, 48.222467],\n\t\t\t\t\t\t\t[-122.606406, 48.208262],\n\t\t\t\t\t\t\t[-122.588138, 48.185940],\n\t\t\t\t\t\t\t[-122.585778, 48.182352],\n\t\t\t\t\t\t\t[-122.582595, 48.170424],\n\t\t\t\t\t\t\t[-122.574905, 48.155593],\n\t\t\t\t\t\t\t[-122.567936, 48.148624],\n\t\t\t\t\t\t\t[-122.558205, 48.119579],\n\t\t\t\t\t\t\t[-122.559911, 48.114186],\n\t\t\t\t\t\t\t[-122.571615, 48.105113],\n\t\t\t\t\t\t\t[-122.571853, 48.102143],\n\t\t\t\t\t\t\t[-122.554559, 48.077392],\n\t\t\t\t\t\t\t[-122.545120, 48.052550],\n\t\t\t\t\t\t\t[-122.538953, 48.050232],\n\t\t\t\t\t\t\t[-122.516314, 48.057181],\n\t\t\t\t\t\t\t[-122.513994, 48.059077],\n\t\t\t\t\t\t\t[-122.511081, 48.075301],\n\t\t\t\t\t\t\t[-122.516906, 48.081085],\n\t\t\t\t\t\t\t[-122.525422, 48.096537],\n\t\t\t\t\t\t\t[-122.513276, 48.097538],\n\t\t\t\t\t\t\t[-122.491104, 48.094242],\n\t\t\t\t\t\t\t[-122.461606, 48.068501],\n\t\t\t\t\t\t\t[-122.448419, 48.054323],\n\t\t\t\t\t\t\t[-122.431266, 48.045001],\n\t\t\t\t\t\t\t[-122.400628, 48.036563],\n\t\t\t\t\t\t\t[-122.387382, 48.034030],\n\t\t\t\t\t\t\t[-122.376259, 48.034457],\n\t\t\t\t\t\t\t[-122.373263, 48.000791],\n\t\t\t\t\t\t\t[-122.369161, 47.995295],\n\t\t\t\t\t\t\t[-122.353611, 47.981433],\n\t\t\t\t\t\t\t[-122.350254, 47.969355],\n\t\t\t\t\t\t\t[-122.349597, 47.958796],\n\t\t\t\t\t\t\t[-122.350741, 47.953235],\n\t\t\t\t\t\t\t[-122.358812, 47.937420],\n\t\t\t\t\t\t\t[-122.367876, 47.932415],\n\t\t\t\t\t\t\t[-122.376837, 47.923703],\n\t\t\t\t\t\t\t[-122.375780, 47.910252],\n\t\t\t\t\t\t\t[-122.377300, 47.905941],\n\t\t\t\t\t\t\t[-122.380497, 47.904023],\n\t\t\t\t\t\t\t[-122.390420, 47.905696],\n\t\t\t\t\t\t\t[-122.397349, 47.912401]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-122.405757, 48.252193],\n\t\t\t\t\t\t\t[-122.398712, 48.241684],\n\t\t\t\t\t\t\t[-122.392851, 48.238555],\n\t\t\t\t\t\t\t[-122.395499, 48.228551],\n\t\t\t\t\t\t\t[-122.396121, 48.229233],\n\t\t\t\t\t\t\t[-122.425572, 48.232887],\n\t\t\t\t\t\t\t[-122.430578, 48.236237],\n\t\t\t\t\t\t\t[-122.433767, 48.236550],\n\t\t\t\t\t\t\t[-122.449605, 48.232598],\n\t\t\t\t\t\t\t[-122.453710, 48.228859],\n\t\t\t\t\t\t\t[-122.453618, 48.226830],\n\t\t\t\t\t\t\t[-122.449513, 48.214736],\n\t\t\t\t\t\t\t[-122.444508, 48.214522],\n\t\t\t\t\t\t\t[-122.441731, 48.211776],\n\t\t\t\t\t\t\t[-122.442051, 48.209350],\n\t\t\t\t\t\t\t[-122.454930, 48.196639],\n\t\t\t\t\t\t\t[-122.461888, 48.193137],\n\t\t\t\t\t\t\t[-122.464801, 48.194767],\n\t\t\t\t\t\t\t[-122.470250, 48.194007],\n\t\t\t\t\t\t\t[-122.478535, 48.188087],\n\t\t\t\t\t\t\t[-122.479008, 48.175703],\n\t\t\t\t\t\t\t[-122.475803, 48.166792],\n\t\t\t\t\t\t\t[-122.442383, 48.130841],\n\t\t\t\t\t\t\t[-122.411649, 48.113210],\n\t\t\t\t\t\t\t[-122.379481, 48.087384],\n\t\t\t\t\t\t\t[-122.360345, 48.061527],\n\t\t\t\t\t\t\t[-122.358375, 48.056133],\n\t\t\t\t\t\t\t[-122.363107, 48.054546],\n\t\t\t\t\t\t\t[-122.377114, 48.057568],\n\t\t\t\t\t\t\t[-122.387690, 48.065189],\n\t\t\t\t\t\t\t[-122.390787, 48.069477],\n\t\t\t\t\t\t\t[-122.393413, 48.078472],\n\t\t\t\t\t\t\t[-122.400692, 48.085255],\n\t\t\t\t\t\t\t[-122.423703, 48.102941],\n\t\t\t\t\t\t\t[-122.449660, 48.114041],\n\t\t\t\t\t\t\t[-122.467500, 48.130353],\n\t\t\t\t\t\t\t[-122.477983, 48.129048],\n\t\t\t\t\t\t\t[-122.486736, 48.120950],\n\t\t\t\t\t\t\t[-122.489986, 48.120617],\n\t\t\t\t\t\t\t[-122.512031, 48.133931],\n\t\t\t\t\t\t\t[-122.522576, 48.161712],\n\t\t\t\t\t\t\t[-122.537220, 48.183745],\n\t\t\t\t\t\t\t[-122.538916, 48.209683],\n\t\t\t\t\t\t\t[-122.534431, 48.223005],\n\t\t\t\t\t\t\t[-122.535209, 48.240213],\n\t\t\t\t\t\t\t[-122.530996, 48.249821],\n\t\t\t\t\t\t\t[-122.503786, 48.257045],\n\t\t\t\t\t\t\t[-122.499648, 48.256611],\n\t\t\t\t\t\t\t[-122.497727, 48.253389],\n\t\t\t\t\t\t\t[-122.493448, 48.252043],\n\t\t\t\t\t\t\t[-122.480925, 48.251706],\n\t\t\t\t\t\t\t[-122.474494, 48.255227],\n\t\t\t\t\t\t\t[-122.466803, 48.269604],\n\t\t\t\t\t\t\t[-122.463962, 48.270541],\n\t\t\t\t\t\t\t[-122.406516, 48.251830],\n\t\t\t\t\t\t\t[-122.405757, 48.252193]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US49039\",\n\t\t\t\t\"STATE\": \"49\",\n\t\t\t\t\"COUNTY\": \"039\",\n\t\t\t\t\"NAME\": \"Sanpete\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1590.152000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-112.014198, 39.045355],\n\t\t\t\t\t\t[-112.015677, 39.314455],\n\t\t\t\t\t\t[-111.922462, 39.381452],\n\t\t\t\t\t\t[-111.747075, 39.382830],\n\t\t\t\t\t\t[-111.713224, 39.460107],\n\t\t\t\t\t\t[-111.718620, 39.694623],\n\t\t\t\t\t\t[-111.585068, 39.740135],\n\t\t\t\t\t\t[-111.640578, 39.813017],\n\t\t\t\t\t\t[-111.247502, 39.813269],\n\t\t\t\t\t\t[-111.247388, 39.704611],\n\t\t\t\t\t\t[-111.247275, 39.467152],\n\t\t\t\t\t\t[-111.301222, 39.467302],\n\t\t\t\t\t\t[-111.299360, 39.032264],\n\t\t\t\t\t\t[-111.853462, 39.032981],\n\t\t\t\t\t\t[-112.014198, 39.045355]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US49043\",\n\t\t\t\t\"STATE\": \"49\",\n\t\t\t\t\"COUNTY\": \"043\",\n\t\t\t\t\"NAME\": \"Summit\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1871.712000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-111.046551, 41.251716],\n\t\t\t\t\t\t[-111.046723, 40.997959],\n\t\t\t\t\t\t[-110.500718, 40.994746],\n\t\t\t\t\t\t[-110.048474, 40.997103],\n\t\t\t\t\t\t[-110.000708, 40.997352],\n\t\t\t\t\t\t[-110.000709, 40.813750],\n\t\t\t\t\t\t[-110.294317, 40.834228],\n\t\t\t\t\t\t[-110.375002, 40.788211],\n\t\t\t\t\t\t[-110.893090, 40.727330],\n\t\t\t\t\t\t[-110.901931, 40.678170],\n\t\t\t\t\t\t[-111.024396, 40.577504],\n\t\t\t\t\t\t[-111.151360, 40.548352],\n\t\t\t\t\t\t[-111.374868, 40.632703],\n\t\t\t\t\t\t[-111.393697, 40.690384],\n\t\t\t\t\t\t[-111.489582, 40.599157],\n\t\t\t\t\t\t[-111.553105, 40.609362],\n\t\t\t\t\t\t[-111.641022, 40.799084],\n\t\t\t\t\t\t[-111.519624, 40.791758],\n\t\t\t\t\t\t[-111.479647, 40.858366],\n\t\t\t\t\t\t[-111.593025, 40.993044],\n\t\t\t\t\t\t[-111.508646, 41.062763],\n\t\t\t\t\t\t[-111.264820, 41.144253],\n\t\t\t\t\t\t[-111.046551, 41.251716]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US49045\",\n\t\t\t\t\"STATE\": \"49\",\n\t\t\t\t\"COUNTY\": \"045\",\n\t\t\t\t\"NAME\": \"Tooele\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 6941.352000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-112.222654, 40.722140],\n\t\t\t\t\t\t[-112.175465, 40.604476],\n\t\t\t\t\t\t[-112.173208, 40.466923],\n\t\t\t\t\t\t[-112.212216, 40.459233],\n\t\t\t\t\t\t[-112.179558, 40.232069],\n\t\t\t\t\t\t[-112.145163, 40.171239],\n\t\t\t\t\t\t[-112.179729, 40.011569],\n\t\t\t\t\t\t[-112.269882, 39.938947],\n\t\t\t\t\t\t[-112.331783, 39.952747],\n\t\t\t\t\t\t[-112.341883, 39.904247],\n\t\t\t\t\t\t[-114.047134, 39.906037],\n\t\t\t\t\t\t[-114.046555, 40.116931],\n\t\t\t\t\t\t[-114.045518, 40.494474],\n\t\t\t\t\t\t[-114.045577, 40.495801],\n\t\t\t\t\t\t[-114.045281, 40.506586],\n\t\t\t\t\t\t[-114.043505, 40.726292],\n\t\t\t\t\t\t[-114.043831, 40.758666],\n\t\t\t\t\t\t[-114.043803, 40.759205],\n\t\t\t\t\t\t[-114.042145, 40.999926],\n\t\t\t\t\t\t[-112.799307, 41.000236],\n\t\t\t\t\t\t[-112.493393, 41.076735],\n\t\t\t\t\t\t[-112.263510, 40.773450],\n\t\t\t\t\t\t[-112.227360, 40.725180],\n\t\t\t\t\t\t[-112.222654, 40.722140]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US49049\",\n\t\t\t\t\"STATE\": \"49\",\n\t\t\t\t\"COUNTY\": \"049\",\n\t\t\t\t\"NAME\": \"Utah\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2003.454000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-111.913848, 40.452454],\n\t\t\t\t\t\t[-111.593930, 40.577071],\n\t\t\t\t\t\t[-111.611734, 40.431466],\n\t\t\t\t\t\t[-111.555235, 40.362696],\n\t\t\t\t\t\t[-111.480337, 40.362169],\n\t\t\t\t\t\t[-111.426482, 40.286906],\n\t\t\t\t\t\t[-111.314830, 40.287566],\n\t\t\t\t\t\t[-111.278846, 40.258671],\n\t\t\t\t\t\t[-111.225507, 40.167324],\n\t\t\t\t\t\t[-111.246207, 40.047466],\n\t\t\t\t\t\t[-111.205772, 40.047368],\n\t\t\t\t\t\t[-111.083061, 39.943198],\n\t\t\t\t\t\t[-111.082455, 39.900155],\n\t\t\t\t\t\t[-110.891872, 39.899146],\n\t\t\t\t\t\t[-110.857321, 39.898941],\n\t\t\t\t\t\t[-110.857902, 39.812428],\n\t\t\t\t\t\t[-111.247502, 39.813269],\n\t\t\t\t\t\t[-111.640578, 39.813017],\n\t\t\t\t\t\t[-111.766193, 39.810601],\n\t\t\t\t\t\t[-111.734178, 39.853895],\n\t\t\t\t\t\t[-111.794837, 39.931159],\n\t\t\t\t\t\t[-111.909411, 39.894519],\n\t\t\t\t\t\t[-111.972000, 39.806657],\n\t\t\t\t\t\t[-112.071350, 39.777942],\n\t\t\t\t\t\t[-112.053359, 39.893194],\n\t\t\t\t\t\t[-112.179729, 40.011569],\n\t\t\t\t\t\t[-112.145163, 40.171239],\n\t\t\t\t\t\t[-112.179558, 40.232069],\n\t\t\t\t\t\t[-112.212216, 40.459233],\n\t\t\t\t\t\t[-112.173208, 40.466923],\n\t\t\t\t\t\t[-111.978236, 40.417270],\n\t\t\t\t\t\t[-111.931555, 40.433548],\n\t\t\t\t\t\t[-111.919120, 40.443191],\n\t\t\t\t\t\t[-111.913848, 40.452454]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US49057\",\n\t\t\t\t\"STATE\": \"49\",\n\t\t\t\t\"COUNTY\": \"057\",\n\t\t\t\t\"NAME\": \"Weber\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 576.084000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-111.885476, 41.426435],\n\t\t\t\t\t\t[-111.726510, 41.375814],\n\t\t\t\t\t\t[-111.666576, 41.428830],\n\t\t\t\t\t\t[-111.510839, 41.423100],\n\t\t\t\t\t\t[-111.420560, 41.361370],\n\t\t\t\t\t\t[-111.496630, 41.226877],\n\t\t\t\t\t\t[-111.595856, 41.239139],\n\t\t\t\t\t\t[-111.678190, 41.181028],\n\t\t\t\t\t\t[-111.858392, 41.197383],\n\t\t\t\t\t\t[-111.856305, 41.139118],\n\t\t\t\t\t\t[-112.189578, 41.152741],\n\t\t\t\t\t\t[-112.493393, 41.076735],\n\t\t\t\t\t\t[-112.237877, 41.336739],\n\t\t\t\t\t\t[-112.028376, 41.336439],\n\t\t\t\t\t\t[-111.959100, 41.433706],\n\t\t\t\t\t\t[-111.885476, 41.426435]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US50003\",\n\t\t\t\t\"STATE\": \"50\",\n\t\t\t\t\"COUNTY\": \"003\",\n\t\t\t\t\"NAME\": \"Bennington\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 674.980000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-73.274294, 42.943652],\n\t\t\t\t\t\t[-73.269472, 43.030686],\n\t\t\t\t\t\t[-73.259159, 43.216848],\n\t\t\t\t\t\t[-73.254848, 43.314684],\n\t\t\t\t\t\t[-72.867902, 43.300742],\n\t\t\t\t\t\t[-72.819900, 43.299210],\n\t\t\t\t\t\t[-72.819368, 43.255498],\n\t\t\t\t\t\t[-72.868737, 43.113170],\n\t\t\t\t\t\t[-72.996900, 43.119095],\n\t\t\t\t\t\t[-73.002789, 43.023007],\n\t\t\t\t\t\t[-73.008063, 42.930087],\n\t\t\t\t\t\t[-72.921376, 42.926792],\n\t\t\t\t\t\t[-72.924820, 42.856164],\n\t\t\t\t\t\t[-73.015111, 42.832074],\n\t\t\t\t\t\t[-73.018646, 42.741025],\n\t\t\t\t\t\t[-73.022903, 42.741133],\n\t\t\t\t\t\t[-73.142487, 42.743508],\n\t\t\t\t\t\t[-73.264957, 42.745940],\n\t\t\t\t\t\t[-73.276421, 42.746019],\n\t\t\t\t\t\t[-73.290944, 42.801920],\n\t\t\t\t\t\t[-73.285388, 42.834093],\n\t\t\t\t\t\t[-73.278673, 42.833410],\n\t\t\t\t\t\t[-73.274466, 42.940361],\n\t\t\t\t\t\t[-73.274393, 42.942482],\n\t\t\t\t\t\t[-73.274294, 42.943652]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US50007\",\n\t\t\t\t\"STATE\": \"50\",\n\t\t\t\t\"COUNTY\": \"007\",\n\t\t\t\t\"NAME\": \"Chittenden\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 536.578000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-72.924112, 44.633051],\n\t\t\t\t\t\t[-72.809349, 44.547921],\n\t\t\t\t\t\t[-72.804995, 44.451676],\n\t\t\t\t\t\t[-72.826112, 44.359190],\n\t\t\t\t\t\t[-72.855592, 44.365551],\n\t\t\t\t\t\t[-72.911398, 44.281769],\n\t\t\t\t\t\t[-72.895980, 44.276284],\n\t\t\t\t\t\t[-72.952167, 44.161271],\n\t\t\t\t\t\t[-72.973318, 44.293420],\n\t\t\t\t\t\t[-73.323268, 44.264796],\n\t\t\t\t\t\t[-73.315016, 44.388513],\n\t\t\t\t\t\t[-73.296031, 44.428339],\n\t\t\t\t\t\t[-73.293613, 44.438903],\n\t\t\t\t\t\t[-73.299885, 44.476652],\n\t\t\t\t\t\t[-73.306707, 44.500334],\n\t\t\t\t\t\t[-73.338630, 44.546844],\n\t\t\t\t\t\t[-73.338634, 44.546847],\n\t\t\t\t\t\t[-73.356788, 44.557918],\n\t\t\t\t\t\t[-73.361952, 44.563064],\n\t\t\t\t\t\t[-73.233209, 44.649791],\n\t\t\t\t\t\t[-73.228854, 44.722866],\n\t\t\t\t\t\t[-73.038028, 44.651157],\n\t\t\t\t\t\t[-72.924112, 44.633051]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US50011\",\n\t\t\t\t\"STATE\": \"50\",\n\t\t\t\t\"COUNTY\": \"011\",\n\t\t\t\t\"NAME\": \"Franklin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 633.706000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-72.578161, 44.781578],\n\t\t\t\t\t\t[-72.747360, 44.786170],\n\t\t\t\t\t\t[-72.786134, 44.727723],\n\t\t\t\t\t\t[-72.793958, 44.699397],\n\t\t\t\t\t\t[-72.795505, 44.692200],\n\t\t\t\t\t\t[-72.851068, 44.711070],\n\t\t\t\t\t\t[-72.924112, 44.633051],\n\t\t\t\t\t\t[-73.038028, 44.651157],\n\t\t\t\t\t\t[-73.228854, 44.722866],\n\t\t\t\t\t\t[-73.256321, 44.759444],\n\t\t\t\t\t\t[-73.194020, 44.886844],\n\t\t\t\t\t\t[-73.191310, 44.904762],\n\t\t\t\t\t\t[-73.226274, 44.919505],\n\t\t\t\t\t\t[-73.230777, 44.927437],\n\t\t\t\t\t\t[-73.191948, 45.013576],\n\t\t\t\t\t\t[-73.085972, 45.015494],\n\t\t\t\t\t\t[-73.015539, 45.015072],\n\t\t\t\t\t\t[-73.014766, 45.014980],\n\t\t\t\t\t\t[-72.845633, 45.016659],\n\t\t\t\t\t\t[-72.674770, 45.015459],\n\t\t\t\t\t\t[-72.554253, 45.011794],\n\t\t\t\t\t\t[-72.532638, 44.833346],\n\t\t\t\t\t\t[-72.578161, 44.781578]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US50015\",\n\t\t\t\t\"STATE\": \"50\",\n\t\t\t\t\"COUNTY\": \"015\",\n\t\t\t\t\"NAME\": \"Lamoille\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 458.797000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-72.786134, 44.727723],\n\t\t\t\t\t\t[-72.747360, 44.786170],\n\t\t\t\t\t\t[-72.578161, 44.781578],\n\t\t\t\t\t\t[-72.417315, 44.722893],\n\t\t\t\t\t\t[-72.482302, 44.633928],\n\t\t\t\t\t\t[-72.374786, 44.584125],\n\t\t\t\t\t\t[-72.434315, 44.506098],\n\t\t\t\t\t\t[-72.490548, 44.425693],\n\t\t\t\t\t\t[-72.596807, 44.479292],\n\t\t\t\t\t\t[-72.654398, 44.398224],\n\t\t\t\t\t\t[-72.765856, 44.442595],\n\t\t\t\t\t\t[-72.804995, 44.451676],\n\t\t\t\t\t\t[-72.809349, 44.547921],\n\t\t\t\t\t\t[-72.924112, 44.633051],\n\t\t\t\t\t\t[-72.851068, 44.711070],\n\t\t\t\t\t\t[-72.795505, 44.692200],\n\t\t\t\t\t\t[-72.793958, 44.699397],\n\t\t\t\t\t\t[-72.786134, 44.727723]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US50021\",\n\t\t\t\t\"STATE\": \"50\",\n\t\t\t\t\"COUNTY\": \"021\",\n\t\t\t\t\"NAME\": \"Rutland\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 929.821000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-72.771543, 43.477862],\n\t\t\t\t\t\t[-72.727184, 43.468717],\n\t\t\t\t\t\t[-72.759799, 43.354144],\n\t\t\t\t\t\t[-72.853439, 43.371076],\n\t\t\t\t\t\t[-72.867902, 43.300742],\n\t\t\t\t\t\t[-73.254848, 43.314684],\n\t\t\t\t\t\t[-73.253084, 43.354714],\n\t\t\t\t\t\t[-73.252832, 43.363493],\n\t\t\t\t\t\t[-73.252674, 43.370285],\n\t\t\t\t\t\t[-73.252582, 43.370997],\n\t\t\t\t\t\t[-73.247061, 43.514919],\n\t\t\t\t\t\t[-73.242042, 43.534925],\n\t\t\t\t\t\t[-73.245594, 43.540253],\n\t\t\t\t\t\t[-73.302552, 43.625708],\n\t\t\t\t\t\t[-73.306234, 43.628018],\n\t\t\t\t\t\t[-73.366537, 43.623462],\n\t\t\t\t\t\t[-73.375594, 43.613350],\n\t\t\t\t\t\t[-73.400295, 43.568889],\n\t\t\t\t\t\t[-73.428636, 43.583994],\n\t\t\t\t\t\t[-73.431229, 43.588285],\n\t\t\t\t\t\t[-73.421606, 43.646577],\n\t\t\t\t\t\t[-73.408697, 43.674020],\n\t\t\t\t\t\t[-73.403517, 43.685032],\n\t\t\t\t\t\t[-73.370724, 43.735571],\n\t\t\t\t\t\t[-73.360711, 43.753268],\n\t\t\t\t\t\t[-73.231377, 43.764469],\n\t\t\t\t\t\t[-73.155743, 43.839660],\n\t\t\t\t\t\t[-73.156173, 43.842314],\n\t\t\t\t\t\t[-73.029938, 43.846716],\n\t\t\t\t\t\t[-73.032082, 43.844718],\n\t\t\t\t\t\t[-73.026833, 43.842113],\n\t\t\t\t\t\t[-73.016831, 43.804953],\n\t\t\t\t\t\t[-72.989434, 43.814611],\n\t\t\t\t\t\t[-72.958853, 43.826542],\n\t\t\t\t\t\t[-72.874552, 43.858131],\n\t\t\t\t\t\t[-72.837188, 43.719878],\n\t\t\t\t\t\t[-72.700945, 43.682831],\n\t\t\t\t\t\t[-72.791070, 43.495000],\n\t\t\t\t\t\t[-72.771543, 43.477862]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US56023\",\n\t\t\t\t\"STATE\": \"56\",\n\t\t\t\t\"COUNTY\": \"023\",\n\t\t\t\t\"NAME\": \"Lincoln\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 4076.129000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-110.578656, 43.235224],\n\t\t\t\t\t\t[-110.587993, 43.126147],\n\t\t\t\t\t\t[-110.587662, 42.779188],\n\t\t\t\t\t\t[-110.623477, 42.710181],\n\t\t\t\t\t\t[-110.590074, 42.710087],\n\t\t\t\t\t\t[-110.541634, 42.277491],\n\t\t\t\t\t\t[-110.053708, 42.270744],\n\t\t\t\t\t\t[-110.048000, 41.578015],\n\t\t\t\t\t\t[-110.062787, 41.577519],\n\t\t\t\t\t\t[-111.046402, 41.579845],\n\t\t\t\t\t\t[-111.046689, 42.001567],\n\t\t\t\t\t\t[-111.047109, 42.142497],\n\t\t\t\t\t\t[-111.047107, 42.148971],\n\t\t\t\t\t\t[-111.047058, 42.182672],\n\t\t\t\t\t\t[-111.047097, 42.194773],\n\t\t\t\t\t\t[-111.047074, 42.280787],\n\t\t\t\t\t\t[-111.047080, 42.349420],\n\t\t\t\t\t\t[-111.046249, 42.513116],\n\t\t\t\t\t\t[-111.043959, 42.964450],\n\t\t\t\t\t\t[-111.043957, 42.969482],\n\t\t\t\t\t\t[-111.043924, 42.975063],\n\t\t\t\t\t\t[-111.044129, 43.018702],\n\t\t\t\t\t\t[-111.044156, 43.020052],\n\t\t\t\t\t\t[-111.044206, 43.022614],\n\t\t\t\t\t\t[-111.044034, 43.024581],\n\t\t\t\t\t\t[-111.044034, 43.024844],\n\t\t\t\t\t\t[-111.044033, 43.026411],\n\t\t\t\t\t\t[-111.044094, 43.029270],\n\t\t\t\t\t\t[-111.043997, 43.041415],\n\t\t\t\t\t\t[-111.044058, 43.044640],\n\t\t\t\t\t\t[-111.044063, 43.046302],\n\t\t\t\t\t\t[-111.044086, 43.054819],\n\t\t\t\t\t\t[-111.044117, 43.060309],\n\t\t\t\t\t\t[-111.044150, 43.066172],\n\t\t\t\t\t\t[-111.044162, 43.068222],\n\t\t\t\t\t\t[-111.044143, 43.072364],\n\t\t\t\t\t\t[-111.044235, 43.177121],\n\t\t\t\t\t\t[-111.044266, 43.177236],\n\t\t\t\t\t\t[-111.044232, 43.184440],\n\t\t\t\t\t\t[-111.044168, 43.189244],\n\t\t\t\t\t\t[-111.044229, 43.195579],\n\t\t\t\t\t\t[-111.044617, 43.315720],\n\t\t\t\t\t\t[-110.813988, 43.315906],\n\t\t\t\t\t\t[-110.813993, 43.235178],\n\t\t\t\t\t\t[-110.578656, 43.235224]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51005\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"005\",\n\t\t\t\t\"NAME\": \"Alleghany\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 445.457000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.220984, 37.627767],\n\t\t\t\t\t\t[-80.239288, 37.637672],\n\t\t\t\t\t\t[-80.254431, 37.642352],\n\t\t\t\t\t\t[-80.254469, 37.642333],\n\t\t\t\t\t\t[-80.263281, 37.645082],\n\t\t\t\t\t\t[-80.263291, 37.645101],\n\t\t\t\t\t\t[-80.264830, 37.645526],\n\t\t\t\t\t\t[-80.264874, 37.645511],\n\t\t\t\t\t\t[-80.267228, 37.646011],\n\t\t\t\t\t\t[-80.267455, 37.646108],\n\t\t\t\t\t\t[-80.270352, 37.648929],\n\t\t\t\t\t\t[-80.270323, 37.648982],\n\t\t\t\t\t\t[-80.292258, 37.683732],\n\t\t\t\t\t\t[-80.292337, 37.683976],\n\t\t\t\t\t\t[-80.296138, 37.691783],\n\t\t\t\t\t\t[-80.287107, 37.696403],\n\t\t\t\t\t\t[-80.263936, 37.719137],\n\t\t\t\t\t\t[-80.259342, 37.731205],\n\t\t\t\t\t\t[-80.260313, 37.733517],\n\t\t\t\t\t\t[-80.262765, 37.738336],\n\t\t\t\t\t\t[-80.257411, 37.756084],\n\t\t\t\t\t\t[-80.231551, 37.792591],\n\t\t\t\t\t\t[-80.227092, 37.798886],\n\t\t\t\t\t\t[-80.162202, 37.875122],\n\t\t\t\t\t\t[-80.148964, 37.886057],\n\t\t\t\t\t\t[-80.147316, 37.885936],\n\t\t\t\t\t\t[-80.146130, 37.884453],\n\t\t\t\t\t\t[-80.130464, 37.893194],\n\t\t\t\t\t\t[-80.055278, 37.951702],\n\t\t\t\t\t\t[-79.935356, 37.954365],\n\t\t\t\t\t\t[-79.881433, 37.892026],\n\t\t\t\t\t\t[-79.650757, 37.871566],\n\t\t\t\t\t\t[-79.674006, 37.763052],\n\t\t\t\t\t\t[-79.816702, 37.800989],\n\t\t\t\t\t\t[-79.917560, 37.701848],\n\t\t\t\t\t\t[-80.020519, 37.647459],\n\t\t\t\t\t\t[-80.144394, 37.596627],\n\t\t\t\t\t\t[-80.220984, 37.627767]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.983631, 37.802278],\n\t\t\t\t\t\t[-79.984451, 37.812016],\n\t\t\t\t\t\t[-79.987402, 37.813585],\n\t\t\t\t\t\t[-79.989210, 37.810961],\n\t\t\t\t\t\t[-79.999078, 37.806240],\n\t\t\t\t\t\t[-79.992055, 37.799810],\n\t\t\t\t\t\t[-79.992955, 37.797063],\n\t\t\t\t\t\t[-80.001360, 37.789826],\n\t\t\t\t\t\t[-79.995941, 37.782229],\n\t\t\t\t\t\t[-80.001196, 37.768848],\n\t\t\t\t\t\t[-80.008893, 37.762983],\n\t\t\t\t\t\t[-79.992566, 37.748244],\n\t\t\t\t\t\t[-79.966509, 37.757109],\n\t\t\t\t\t\t[-79.977265, 37.767344],\n\t\t\t\t\t\t[-79.980001, 37.781063],\n\t\t\t\t\t\t[-79.966452, 37.792484],\n\t\t\t\t\t\t[-79.967071, 37.803405],\n\t\t\t\t\t\t[-79.983631, 37.802278]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51011\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"011\",\n\t\t\t\t\"NAME\": \"Appomattox\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 333.494000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.869245, 37.542095],\n\t\t\t\t\t\t[-78.830938, 37.535642],\n\t\t\t\t\t\t[-78.825238, 37.552542],\n\t\t\t\t\t\t[-78.594436, 37.397974],\n\t\t\t\t\t\t[-78.681573, 37.248759],\n\t\t\t\t\t\t[-78.824209, 37.205361],\n\t\t\t\t\t\t[-78.917373, 37.242687],\n\t\t\t\t\t\t[-79.018526, 37.429917],\n\t\t\t\t\t\t[-78.869245, 37.542095]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51013\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"013\",\n\t\t\t\t\"NAME\": \"Arlington\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 25.974000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.032986, 38.839500],\n\t\t\t\t\t\t[-77.054550, 38.840995],\n\t\t\t\t\t\t[-77.063871, 38.845011],\n\t\t\t\t\t\t[-77.085609, 38.844190],\n\t\t\t\t\t\t[-77.087931, 38.827450],\n\t\t\t\t\t\t[-77.088047, 38.824973],\n\t\t\t\t\t\t[-77.110731, 38.843457],\n\t\t\t\t\t\t[-77.150287, 38.876192],\n\t\t\t\t\t\t[-77.172169, 38.893329],\n\t\t\t\t\t\t[-77.168110, 38.896521],\n\t\t\t\t\t\t[-77.157513, 38.904855],\n\t\t\t\t\t\t[-77.154368, 38.907044],\n\t\t\t\t\t\t[-77.149735, 38.910523],\n\t\t\t\t\t\t[-77.148492, 38.911993],\n\t\t\t\t\t\t[-77.119863, 38.934265],\n\t\t\t\t\t\t[-77.101200, 38.911111],\n\t\t\t\t\t\t[-77.090200, 38.904211],\n\t\t\t\t\t\t[-77.068199, 38.899811],\n\t\t\t\t\t\t[-77.040599, 38.871212],\n\t\t\t\t\t\t[-77.031698, 38.850512],\n\t\t\t\t\t\t[-77.032986, 38.839500]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51015\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"015\",\n\t\t\t\t\"NAME\": \"Augusta\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 966.999000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.512158, 38.180419],\n\t\t\t\t\t\t[-79.438103, 38.216235],\n\t\t\t\t\t\t[-79.312276, 38.411876],\n\t\t\t\t\t\t[-79.297758, 38.416438],\n\t\t\t\t\t\t[-79.295712, 38.418129],\n\t\t\t\t\t\t[-79.291813, 38.419627],\n\t\t\t\t\t\t[-79.290529, 38.420757],\n\t\t\t\t\t\t[-79.280263, 38.425475],\n\t\t\t\t\t\t[-79.282663, 38.431021],\n\t\t\t\t\t\t[-79.267414, 38.438322],\n\t\t\t\t\t\t[-79.265327, 38.441772],\n\t\t\t\t\t\t[-79.263376, 38.443762],\n\t\t\t\t\t\t[-79.262910, 38.444586],\n\t\t\t\t\t\t[-79.242024, 38.464332],\n\t\t\t\t\t\t[-79.240059, 38.469841],\n\t\t\t\t\t\t[-79.234408, 38.473011],\n\t\t\t\t\t\t[-79.231620, 38.474041],\n\t\t\t\t\t\t[-79.225839, 38.479446],\n\t\t\t\t\t\t[-78.749354, 38.206621],\n\t\t\t\t\t\t[-78.779230, 38.083451],\n\t\t\t\t\t\t[-78.839211, 38.047565],\n\t\t\t\t\t\t[-78.907278, 37.945959],\n\t\t\t\t\t\t[-79.005129, 37.881690],\n\t\t\t\t\t\t[-79.062454, 37.917600],\n\t\t\t\t\t\t[-79.157423, 37.890995],\n\t\t\t\t\t\t[-79.183978, 37.914194],\n\t\t\t\t\t\t[-79.482405, 38.086105],\n\t\t\t\t\t\t[-79.436942, 38.163243],\n\t\t\t\t\t\t[-79.512158, 38.180419]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.949568, 38.057183],\n\t\t\t\t\t\t[-78.872163, 38.039587],\n\t\t\t\t\t\t[-78.855796, 38.074375],\n\t\t\t\t\t\t[-78.903534, 38.099978],\n\t\t\t\t\t\t[-78.949568, 38.057183]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.091666, 38.132142],\n\t\t\t\t\t\t[-79.049779, 38.121112],\n\t\t\t\t\t\t[-79.023010, 38.195777],\n\t\t\t\t\t\t[-79.097110, 38.184771],\n\t\t\t\t\t\t[-79.091666, 38.132142]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51019\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"019\",\n\t\t\t\t\"NAME\": \"Bedford\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 753.021000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.626126, 37.455284],\n\t\t\t\t\t\t[-79.498553, 37.532887],\n\t\t\t\t\t\t[-79.436926, 37.617004],\n\t\t\t\t\t\t[-79.349319, 37.524840],\n\t\t\t\t\t\t[-79.183302, 37.465908],\n\t\t\t\t\t\t[-79.268727, 37.431028],\n\t\t\t\t\t\t[-79.257188, 37.355608],\n\t\t\t\t\t\t[-79.330491, 37.238435],\n\t\t\t\t\t\t[-79.442884, 37.055863],\n\t\t\t\t\t\t[-79.480727, 37.005876],\n\t\t\t\t\t\t[-79.594059, 37.042238],\n\t\t\t\t\t\t[-79.718272, 37.189757],\n\t\t\t\t\t\t[-79.847082, 37.225468],\n\t\t\t\t\t\t[-79.847599, 37.309177],\n\t\t\t\t\t\t[-79.844191, 37.317785],\n\t\t\t\t\t\t[-79.810750, 37.335305],\n\t\t\t\t\t\t[-79.788151, 37.351116],\n\t\t\t\t\t\t[-79.778608, 37.381816],\n\t\t\t\t\t\t[-79.814193, 37.403687],\n\t\t\t\t\t\t[-79.790467, 37.408830],\n\t\t\t\t\t\t[-79.719063, 37.448989],\n\t\t\t\t\t\t[-79.690053, 37.476403],\n\t\t\t\t\t\t[-79.659053, 37.485206],\n\t\t\t\t\t\t[-79.634201, 37.457050],\n\t\t\t\t\t\t[-79.628157, 37.453633],\n\t\t\t\t\t\t[-79.626126, 37.455284]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.543597, 37.324178],\n\t\t\t\t\t\t[-79.503624, 37.316653],\n\t\t\t\t\t\t[-79.487211, 37.345777],\n\t\t\t\t\t\t[-79.535648, 37.355314],\n\t\t\t\t\t\t[-79.543597, 37.324178]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51025\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"025\",\n\t\t\t\t\"NAME\": \"Brunswick\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 566.173000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.889813, 36.988818],\n\t\t\t\t\t\t[-77.733630, 36.945676],\n\t\t\t\t\t\t[-77.658036, 36.894514],\n\t\t\t\t\t\t[-77.655841, 36.713539],\n\t\t\t\t\t\t[-77.767117, 36.544752],\n\t\t\t\t\t\t[-77.875280, 36.544754],\n\t\t\t\t\t\t[-77.882357, 36.544737],\n\t\t\t\t\t\t[-77.899771, 36.544663],\n\t\t\t\t\t\t[-78.038938, 36.544173],\n\t\t\t\t\t\t[-78.039420, 36.544196],\n\t\t\t\t\t\t[-78.046202, 36.544168],\n\t\t\t\t\t\t[-78.033437, 36.708451],\n\t\t\t\t\t\t[-78.027419, 36.775951],\n\t\t\t\t\t\t[-78.027411, 36.777858],\n\t\t\t\t\t\t[-78.003639, 37.022756],\n\t\t\t\t\t\t[-77.889813, 36.988818]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51031\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"031\",\n\t\t\t\t\"NAME\": \"Campbell\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 503.867000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.330491, 37.238435],\n\t\t\t\t\t\t[-79.257188, 37.355608],\n\t\t\t\t\t\t[-79.214982, 37.333000],\n\t\t\t\t\t\t[-79.085244, 37.394743],\n\t\t\t\t\t\t[-79.018526, 37.429917],\n\t\t\t\t\t\t[-78.917373, 37.242687],\n\t\t\t\t\t\t[-78.824209, 37.205361],\n\t\t\t\t\t\t[-78.903393, 37.024371],\n\t\t\t\t\t\t[-78.904587, 37.022288],\n\t\t\t\t\t\t[-79.092264, 37.061498],\n\t\t\t\t\t\t[-79.194525, 37.055816],\n\t\t\t\t\t\t[-79.217104, 37.118874],\n\t\t\t\t\t\t[-79.332161, 37.125568],\n\t\t\t\t\t\t[-79.442884, 37.055863],\n\t\t\t\t\t\t[-79.330491, 37.238435]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51033\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"033\",\n\t\t\t\t\"NAME\": \"Caroline\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 527.513000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.181418, 37.891654],\n\t\t\t\t\t\t[-77.243162, 37.900241],\n\t\t\t\t\t\t[-77.345229, 37.789388],\n\t\t\t\t\t\t[-77.403642, 37.779569],\n\t\t\t\t\t\t[-77.445155, 37.894819],\n\t\t\t\t\t\t[-77.484098, 37.883505],\n\t\t\t\t\t\t[-77.642200, 37.990928],\n\t\t\t\t\t\t[-77.626219, 38.003429],\n\t\t\t\t\t\t[-77.551611, 38.073609],\n\t\t\t\t\t\t[-77.518179, 38.104890],\n\t\t\t\t\t\t[-77.374670, 38.243099],\n\t\t\t\t\t\t[-77.370301, 38.246576],\n\t\t\t\t\t\t[-77.360400, 38.242423],\n\t\t\t\t\t\t[-77.345931, 38.252227],\n\t\t\t\t\t\t[-77.338860, 38.252093],\n\t\t\t\t\t\t[-77.332738, 38.245840],\n\t\t\t\t\t\t[-77.326692, 38.245136],\n\t\t\t\t\t\t[-77.224689, 38.242207],\n\t\t\t\t\t\t[-77.115997, 38.149931],\n\t\t\t\t\t\t[-77.170100, 38.079543],\n\t\t\t\t\t\t[-77.070115, 37.964770],\n\t\t\t\t\t\t[-77.148634, 37.972000],\n\t\t\t\t\t\t[-77.181418, 37.891654]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51036\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"036\",\n\t\t\t\t\"NAME\": \"Charles City\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 182.817000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.883156, 37.223057],\n\t\t\t\t\t\t[-76.917081, 37.224365],\n\t\t\t\t\t\t[-76.972439, 37.248501],\n\t\t\t\t\t\t[-77.010096, 37.305251],\n\t\t\t\t\t\t[-77.069269, 37.269742],\n\t\t\t\t\t\t[-77.270675, 37.320756],\n\t\t\t\t\t\t[-77.264595, 37.344052],\n\t\t\t\t\t\t[-77.244167, 37.369274],\n\t\t\t\t\t\t[-77.249665, 37.382000],\n\t\t\t\t\t\t[-77.177324, 37.490600],\n\t\t\t\t\t\t[-76.904471, 37.377665],\n\t\t\t\t\t\t[-76.873507, 37.363415],\n\t\t\t\t\t\t[-76.883156, 37.223057]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51045\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"045\",\n\t\t\t\t\"NAME\": \"Craig\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 329.534000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.220984, 37.627767],\n\t\t\t\t\t\t[-80.144394, 37.596627],\n\t\t\t\t\t\t[-80.020519, 37.647459],\n\t\t\t\t\t\t[-79.969037, 37.544419],\n\t\t\t\t\t\t[-80.073985, 37.422305],\n\t\t\t\t\t\t[-80.261984, 37.340694],\n\t\t\t\t\t\t[-80.327898, 37.366792],\n\t\t\t\t\t\t[-80.433361, 37.314901],\n\t\t\t\t\t\t[-80.475601, 37.422949],\n\t\t\t\t\t\t[-80.464820, 37.426144],\n\t\t\t\t\t\t[-80.443025, 37.438126],\n\t\t\t\t\t\t[-80.425656, 37.449876],\n\t\t\t\t\t\t[-80.320627, 37.498880],\n\t\t\t\t\t\t[-80.314806, 37.500943],\n\t\t\t\t\t\t[-80.330306, 37.536244],\n\t\t\t\t\t\t[-80.312393, 37.546239],\n\t\t\t\t\t\t[-80.288766, 37.581960],\n\t\t\t\t\t\t[-80.240272, 37.606961],\n\t\t\t\t\t\t[-80.223386, 37.623185],\n\t\t\t\t\t\t[-80.220984, 37.627767]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51049\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"049\",\n\t\t\t\t\"NAME\": \"Cumberland\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 297.461000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.159278, 37.748528],\n\t\t\t\t\t\t[-78.072256, 37.657357],\n\t\t\t\t\t\t[-78.132048, 37.454686],\n\t\t\t\t\t\t[-78.235039, 37.368102],\n\t\t\t\t\t\t[-78.321840, 37.309292],\n\t\t\t\t\t\t[-78.465089, 37.339677],\n\t\t\t\t\t\t[-78.249021, 37.635546],\n\t\t\t\t\t\t[-78.239748, 37.690495],\n\t\t\t\t\t\t[-78.159278, 37.748528]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51051\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"051\",\n\t\t\t\t\"NAME\": \"Dickenson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 330.532000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.148718, 37.041691],\n\t\t\t\t\t\t[-82.328009, 36.970905],\n\t\t\t\t\t\t[-82.467419, 37.022144],\n\t\t\t\t\t\t[-82.546220, 37.124982],\n\t\t\t\t\t\t[-82.553549, 37.200867],\n\t\t\t\t\t\t[-82.510826, 37.218091],\n\t\t\t\t\t\t[-82.350948, 37.267077],\n\t\t\t\t\t\t[-82.310793, 37.297387],\n\t\t\t\t\t\t[-82.305874, 37.301100],\n\t\t\t\t\t\t[-82.135935, 37.061169],\n\t\t\t\t\t\t[-82.148718, 37.041691]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54081\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"081\",\n\t\t\t\t\"NAME\": \"Raleigh\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 605.351000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.456632, 37.987307],\n\t\t\t\t\t\t[-81.438531, 37.968008],\n\t\t\t\t\t\t[-81.414331, 37.973508],\n\t\t\t\t\t\t[-81.380829, 37.969109],\n\t\t\t\t\t\t[-81.296628, 37.944010],\n\t\t\t\t\t\t[-81.295127, 37.889311],\n\t\t\t\t\t\t[-81.073249, 37.875865],\n\t\t\t\t\t\t[-81.091041, 37.849674],\n\t\t\t\t\t\t[-80.945090, 37.819121],\n\t\t\t\t\t\t[-80.882316, 37.680766],\n\t\t\t\t\t\t[-80.947017, 37.715449],\n\t\t\t\t\t\t[-81.094630, 37.588658],\n\t\t\t\t\t\t[-81.199320, 37.574515],\n\t\t\t\t\t\t[-81.222121, 37.510416],\n\t\t\t\t\t\t[-81.304130, 37.546564],\n\t\t\t\t\t\t[-81.427781, 37.749352],\n\t\t\t\t\t\t[-81.514228, 37.791211],\n\t\t\t\t\t\t[-81.571334, 37.928107],\n\t\t\t\t\t\t[-81.456632, 37.987307]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51061\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"061\",\n\t\t\t\t\"NAME\": \"Fauquier\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 647.449000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.663346, 38.752917],\n\t\t\t\t\t\t[-77.580256, 38.627685],\n\t\t\t\t\t\t[-77.535808, 38.561621],\n\t\t\t\t\t\t[-77.530914, 38.555929],\n\t\t\t\t\t\t[-77.634157, 38.464508],\n\t\t\t\t\t\t[-77.634835, 38.409713],\n\t\t\t\t\t\t[-77.735536, 38.413116],\n\t\t\t\t\t\t[-77.877169, 38.584891],\n\t\t\t\t\t\t[-77.935454, 38.695853],\n\t\t\t\t\t\t[-78.028075, 38.759293],\n\t\t\t\t\t\t[-78.122166, 38.856607],\n\t\t\t\t\t\t[-78.123610, 38.864902],\n\t\t\t\t\t\t[-78.130574, 38.864865],\n\t\t\t\t\t\t[-78.004167, 38.979479],\n\t\t\t\t\t\t[-77.989780, 38.993834],\n\t\t\t\t\t\t[-77.990379, 38.996331],\n\t\t\t\t\t\t[-77.965138, 39.008927],\n\t\t\t\t\t\t[-77.961956, 39.013841],\n\t\t\t\t\t\t[-77.960269, 39.013384],\n\t\t\t\t\t\t[-77.655081, 38.942635],\n\t\t\t\t\t\t[-77.665797, 38.915867],\n\t\t\t\t\t\t[-77.680547, 38.893200],\n\t\t\t\t\t\t[-77.689176, 38.889231],\n\t\t\t\t\t\t[-77.715415, 38.832214],\n\t\t\t\t\t\t[-77.663346, 38.752917]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51067\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"067\",\n\t\t\t\t\"NAME\": \"Franklin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 690.426000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.640652, 36.856139],\n\t\t\t\t\t\t[-79.761756, 36.788337],\n\t\t\t\t\t\t[-79.999771, 36.830738],\n\t\t\t\t\t\t[-80.012032, 36.789644],\n\t\t\t\t\t\t[-80.027194, 36.791262],\n\t\t\t\t\t\t[-80.013194, 36.783748],\n\t\t\t\t\t\t[-80.025178, 36.780752],\n\t\t\t\t\t\t[-80.041493, 36.794365],\n\t\t\t\t\t\t[-80.066449, 36.841057],\n\t\t\t\t\t\t[-80.235455, 36.872130],\n\t\t\t\t\t\t[-80.121479, 36.991428],\n\t\t\t\t\t\t[-80.128119, 37.122912],\n\t\t\t\t\t\t[-80.030562, 37.174810],\n\t\t\t\t\t\t[-79.962301, 37.137099],\n\t\t\t\t\t\t[-79.847082, 37.225468],\n\t\t\t\t\t\t[-79.718272, 37.189757],\n\t\t\t\t\t\t[-79.594059, 37.042238],\n\t\t\t\t\t\t[-79.595930, 37.036349],\n\t\t\t\t\t\t[-79.640652, 36.856139]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51069\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"069\",\n\t\t\t\t\"NAME\": \"Frederick\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 413.496000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.544111, 39.056676],\n\t\t\t\t\t\t[-78.508132, 39.088630],\n\t\t\t\t\t\t[-78.459869, 39.113351],\n\t\t\t\t\t\t[-78.439429, 39.132146],\n\t\t\t\t\t\t[-78.418377, 39.156656],\n\t\t\t\t\t\t[-78.410740, 39.171983],\n\t\t\t\t\t\t[-78.426722, 39.188903],\n\t\t\t\t\t\t[-78.438651, 39.198049],\n\t\t\t\t\t\t[-78.437053, 39.199766],\n\t\t\t\t\t\t[-78.432130, 39.204717],\n\t\t\t\t\t\t[-78.431167, 39.205744],\n\t\t\t\t\t\t[-78.429803, 39.207014],\n\t\t\t\t\t\t[-78.427911, 39.208611],\n\t\t\t\t\t\t[-78.423968, 39.212049],\n\t\t\t\t\t\t[-78.399669, 39.243874],\n\t\t\t\t\t\t[-78.399785, 39.244129],\n\t\t\t\t\t\t[-78.360035, 39.317771],\n\t\t\t\t\t\t[-78.358940, 39.319484],\n\t\t\t\t\t\t[-78.340480, 39.353492],\n\t\t\t\t\t\t[-78.362267, 39.357784],\n\t\t\t\t\t\t[-78.347087, 39.466012],\n\t\t\t\t\t\t[-78.228766, 39.391233],\n\t\t\t\t\t\t[-78.033185, 39.264626],\n\t\t\t\t\t\t[-78.033183, 39.264624],\n\t\t\t\t\t\t[-78.151981, 39.036277],\n\t\t\t\t\t\t[-78.314196, 39.007977],\n\t\t\t\t\t\t[-78.335803, 39.101509],\n\t\t\t\t\t\t[-78.454023, 39.027599],\n\t\t\t\t\t\t[-78.544111, 39.056676]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.196945, 39.191161],\n\t\t\t\t\t\t[-78.182890, 39.130970],\n\t\t\t\t\t\t[-78.136953, 39.184530],\n\t\t\t\t\t\t[-78.154919, 39.200895],\n\t\t\t\t\t\t[-78.196945, 39.191161]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51073\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"073\",\n\t\t\t\t\"NAME\": \"Gloucester\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 217.807000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.712305, 37.431309],\n\t\t\t\t\t\t[-76.647086, 37.480685],\n\t\t\t\t\t\t[-76.654076, 37.603174],\n\t\t\t\t\t\t[-76.437561, 37.514360],\n\t\t\t\t\t\t[-76.404756, 37.400213],\n\t\t\t\t\t\t[-76.415167, 37.402133],\n\t\t\t\t\t\t[-76.418719, 37.397800],\n\t\t\t\t\t\t[-76.418176, 37.385064],\n\t\t\t\t\t\t[-76.422503, 37.381355],\n\t\t\t\t\t\t[-76.437525, 37.379750],\n\t\t\t\t\t\t[-76.445333, 37.366460],\n\t\t\t\t\t\t[-76.434965, 37.354524],\n\t\t\t\t\t\t[-76.406388, 37.332924],\n\t\t\t\t\t\t[-76.387770, 37.307670],\n\t\t\t\t\t\t[-76.385603, 37.294108],\n\t\t\t\t\t\t[-76.381075, 37.285340],\n\t\t\t\t\t\t[-76.369029, 37.279311],\n\t\t\t\t\t\t[-76.352556, 37.278334],\n\t\t\t\t\t\t[-76.349489, 37.273963],\n\t\t\t\t\t\t[-76.362290, 37.270226],\n\t\t\t\t\t\t[-76.392788, 37.264973],\n\t\t\t\t\t\t[-76.417173, 37.263950],\n\t\t\t\t\t\t[-76.421765, 37.255198],\n\t\t\t\t\t\t[-76.429141, 37.253310],\n\t\t\t\t\t\t[-76.475927, 37.250543],\n\t\t\t\t\t\t[-76.482840, 37.254831],\n\t\t\t\t\t\t[-76.493302, 37.249470],\n\t\t\t\t\t\t[-76.498900, 37.241015],\n\t\t\t\t\t\t[-76.658651, 37.380139],\n\t\t\t\t\t\t[-76.672296, 37.395808],\n\t\t\t\t\t\t[-76.712305, 37.431309]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51081\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"081\",\n\t\t\t\t\"NAME\": \"Greensville\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 295.226000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.658036, 36.894514],\n\t\t\t\t\t\t[-77.648037, 36.896884],\n\t\t\t\t\t\t[-77.645705, 36.888531],\n\t\t\t\t\t\t[-77.648045, 36.881507],\n\t\t\t\t\t\t[-77.639169, 36.873752],\n\t\t\t\t\t\t[-77.632266, 36.878709],\n\t\t\t\t\t\t[-77.638073, 36.885989],\n\t\t\t\t\t\t[-77.631207, 36.887610],\n\t\t\t\t\t\t[-77.626710, 36.881270],\n\t\t\t\t\t\t[-77.619029, 36.877844],\n\t\t\t\t\t\t[-77.458678, 36.862963],\n\t\t\t\t\t\t[-77.489999, 36.721009],\n\t\t\t\t\t\t[-77.430127, 36.707658],\n\t\t\t\t\t\t[-77.501917, 36.670506],\n\t\t\t\t\t\t[-77.377963, 36.633048],\n\t\t\t\t\t\t[-77.296875, 36.544746],\n\t\t\t\t\t\t[-77.767117, 36.544752],\n\t\t\t\t\t\t[-77.655841, 36.713539],\n\t\t\t\t\t\t[-77.658036, 36.894514]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.556524, 36.674874],\n\t\t\t\t\t\t[-77.509246, 36.682998],\n\t\t\t\t\t\t[-77.511921, 36.719122],\n\t\t\t\t\t\t[-77.557359, 36.713166],\n\t\t\t\t\t\t[-77.556524, 36.674874]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51085\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"085\",\n\t\t\t\t\"NAME\": \"Hanover\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 468.536000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.228504, 37.536398],\n\t\t\t\t\t\t[-77.333838, 37.576865],\n\t\t\t\t\t\t[-77.445827, 37.683975],\n\t\t\t\t\t\t[-77.630145, 37.706985],\n\t\t\t\t\t\t[-77.796920, 37.729069],\n\t\t\t\t\t\t[-77.796803, 37.730604],\n\t\t\t\t\t\t[-77.687294, 38.008011],\n\t\t\t\t\t\t[-77.684065, 38.008283],\n\t\t\t\t\t\t[-77.680592, 38.007587],\n\t\t\t\t\t\t[-77.676618, 38.006409],\n\t\t\t\t\t\t[-77.670898, 38.003769],\n\t\t\t\t\t\t[-77.667921, 38.000120],\n\t\t\t\t\t\t[-77.667985, 37.998379],\n\t\t\t\t\t\t[-77.667160, 37.997079],\n\t\t\t\t\t\t[-77.664779, 37.996902],\n\t\t\t\t\t\t[-77.662338, 37.997764],\n\t\t\t\t\t\t[-77.660602, 37.997145],\n\t\t\t\t\t\t[-77.660469, 37.993726],\n\t\t\t\t\t\t[-77.659698, 37.992082],\n\t\t\t\t\t\t[-77.657916, 37.991864],\n\t\t\t\t\t\t[-77.653670, 37.993595],\n\t\t\t\t\t\t[-77.649201, 37.994168],\n\t\t\t\t\t\t[-77.647163, 37.993948],\n\t\t\t\t\t\t[-77.642318, 37.992284],\n\t\t\t\t\t\t[-77.642200, 37.990928],\n\t\t\t\t\t\t[-77.484098, 37.883505],\n\t\t\t\t\t\t[-77.445155, 37.894819],\n\t\t\t\t\t\t[-77.403642, 37.779569],\n\t\t\t\t\t\t[-77.345229, 37.789388],\n\t\t\t\t\t\t[-77.292470, 37.714682],\n\t\t\t\t\t\t[-77.123675, 37.626881],\n\t\t\t\t\t\t[-77.228504, 37.536398]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51091\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"091\",\n\t\t\t\t\"NAME\": \"Highland\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 415.156000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.794568, 38.264856],\n\t\t\t\t\t\t[-79.790134, 38.267654],\n\t\t\t\t\t\t[-79.788945, 38.268703],\n\t\t\t\t\t\t[-79.810115, 38.305037],\n\t\t\t\t\t\t[-79.808711, 38.309429],\n\t\t\t\t\t\t[-79.731661, 38.374143],\n\t\t\t\t\t\t[-79.691377, 38.439558],\n\t\t\t\t\t\t[-79.689544, 38.442511],\n\t\t\t\t\t\t[-79.688962, 38.449538],\n\t\t\t\t\t\t[-79.688205, 38.450476],\n\t\t\t\t\t\t[-79.699006, 38.475148],\n\t\t\t\t\t\t[-79.695565, 38.477842],\n\t\t\t\t\t\t[-79.669128, 38.510883],\n\t\t\t\t\t\t[-79.669128, 38.510975],\n\t\t\t\t\t\t[-79.649075, 38.591515],\n\t\t\t\t\t\t[-79.597955, 38.572767],\n\t\t\t\t\t\t[-79.555471, 38.560217],\n\t\t\t\t\t\t[-79.536870, 38.550917],\n\t\t\t\t\t\t[-79.521469, 38.533918],\n\t\t\t\t\t\t[-79.476638, 38.457228],\n\t\t\t\t\t\t[-79.312276, 38.411876],\n\t\t\t\t\t\t[-79.438103, 38.216235],\n\t\t\t\t\t\t[-79.512158, 38.180419],\n\t\t\t\t\t\t[-79.706196, 38.221192],\n\t\t\t\t\t\t[-79.794568, 38.264856]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51095\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"095\",\n\t\t\t\t\"NAME\": \"James City\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 142.437000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.611018, 37.167097],\n\t\t\t\t\t\t[-76.612517, 37.170486],\n\t\t\t\t\t\t[-76.613599, 37.172931],\n\t\t\t\t\t\t[-76.614221, 37.174335],\n\t\t\t\t\t\t[-76.616268, 37.178962],\n\t\t\t\t\t\t[-76.616804, 37.181260],\n\t\t\t\t\t\t[-76.617537, 37.184409],\n\t\t\t\t\t\t[-76.618008, 37.186429],\n\t\t\t\t\t\t[-76.619340, 37.192146],\n\t\t\t\t\t\t[-76.619962, 37.193184],\n\t\t\t\t\t\t[-76.621113, 37.195103],\n\t\t\t\t\t\t[-76.623292, 37.198738],\n\t\t\t\t\t\t[-76.629868, 37.206738],\n\t\t\t\t\t\t[-76.639608, 37.214783],\n\t\t\t\t\t\t[-76.641085, 37.216002],\n\t\t\t\t\t\t[-76.649869, 37.220914],\n\t\t\t\t\t\t[-76.689166, 37.222866],\n\t\t\t\t\t\t[-76.693373, 37.221228],\n\t\t\t\t\t\t[-76.698943, 37.219059],\n\t\t\t\t\t\t[-76.730951, 37.213813],\n\t\t\t\t\t\t[-76.734320, 37.204211],\n\t\t\t\t\t\t[-76.740000, 37.195379],\n\t\t\t\t\t\t[-76.743040, 37.192611],\n\t\t\t\t\t\t[-76.750470, 37.190098],\n\t\t\t\t\t\t[-76.757765, 37.191658],\n\t\t\t\t\t\t[-76.773752, 37.206061],\n\t\t\t\t\t\t[-76.780532, 37.209336],\n\t\t\t\t\t\t[-76.791555, 37.207564],\n\t\t\t\t\t\t[-76.818511, 37.224618],\n\t\t\t\t\t\t[-76.883156, 37.223057],\n\t\t\t\t\t\t[-76.873507, 37.363415],\n\t\t\t\t\t\t[-76.904471, 37.377665],\n\t\t\t\t\t\t[-76.892677, 37.433067],\n\t\t\t\t\t\t[-76.741984, 37.467076],\n\t\t\t\t\t\t[-76.732961, 37.450235],\n\t\t\t\t\t\t[-76.712305, 37.431309],\n\t\t\t\t\t\t[-76.672296, 37.395808],\n\t\t\t\t\t\t[-76.658651, 37.380139],\n\t\t\t\t\t\t[-76.741667, 37.370440],\n\t\t\t\t\t\t[-76.727588, 37.304921],\n\t\t\t\t\t\t[-76.739665, 37.306255],\n\t\t\t\t\t\t[-76.725272, 37.279686],\n\t\t\t\t\t\t[-76.742487, 37.275092],\n\t\t\t\t\t\t[-76.726003, 37.249901],\n\t\t\t\t\t\t[-76.664621, 37.250490],\n\t\t\t\t\t\t[-76.679468, 37.265652],\n\t\t\t\t\t\t[-76.591432, 37.214721],\n\t\t\t\t\t\t[-76.577675, 37.190445],\n\t\t\t\t\t\t[-76.611018, 37.167097]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51103\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"103\",\n\t\t\t\t\"NAME\": \"Lancaster\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 133.250000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.642276, 37.792317],\n\t\t\t\t\t\t[-76.507828, 37.838814],\n\t\t\t\t\t\t[-76.418735, 37.822934],\n\t\t\t\t\t\t[-76.376721, 37.712908],\n\t\t\t\t\t\t[-76.320216, 37.680666],\n\t\t\t\t\t\t[-76.324808, 37.676983],\n\t\t\t\t\t\t[-76.339892, 37.655966],\n\t\t\t\t\t\t[-76.332562, 37.645817],\n\t\t\t\t\t\t[-76.306464, 37.642005],\n\t\t\t\t\t\t[-76.292534, 37.636098],\n\t\t\t\t\t\t[-76.287959, 37.631771],\n\t\t\t\t\t\t[-76.279447, 37.618225],\n\t\t\t\t\t\t[-76.280370, 37.613715],\n\t\t\t\t\t\t[-76.309174, 37.621892],\n\t\t\t\t\t\t[-76.362320, 37.610368],\n\t\t\t\t\t\t[-76.381106, 37.627003],\n\t\t\t\t\t\t[-76.390054, 37.630326],\n\t\t\t\t\t\t[-76.399236, 37.628636],\n\t\t\t\t\t\t[-76.443254, 37.652347],\n\t\t\t\t\t\t[-76.472392, 37.665772],\n\t\t\t\t\t\t[-76.489576, 37.666201],\n\t\t\t\t\t\t[-76.491799, 37.663614],\n\t\t\t\t\t\t[-76.497564, 37.647056],\n\t\t\t\t\t\t[-76.501522, 37.643762],\n\t\t\t\t\t\t[-76.510187, 37.642324],\n\t\t\t\t\t\t[-76.536548, 37.663574],\n\t\t\t\t\t\t[-76.537698, 37.668930],\n\t\t\t\t\t\t[-76.535302, 37.687516],\n\t\t\t\t\t\t[-76.537228, 37.698892],\n\t\t\t\t\t\t[-76.540050, 37.704432],\n\t\t\t\t\t\t[-76.560476, 37.727827],\n\t\t\t\t\t\t[-76.576387, 37.757493],\n\t\t\t\t\t\t[-76.584289, 37.768890],\n\t\t\t\t\t\t[-76.593835, 37.772848],\n\t\t\t\t\t\t[-76.595939, 37.771680],\n\t\t\t\t\t\t[-76.602024, 37.772731],\n\t\t\t\t\t\t[-76.615351, 37.780759],\n\t\t\t\t\t\t[-76.642276, 37.792317]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US49037\",\n\t\t\t\t\"STATE\": \"49\",\n\t\t\t\t\"COUNTY\": \"037\",\n\t\t\t\t\"NAME\": \"San Juan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 7819.988000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-109.043121, 37.974260],\n\t\t\t\t\t\t[-109.042137, 37.881160],\n\t\t\t\t\t\t[-109.041723, 37.842051],\n\t\t\t\t\t\t[-109.041754, 37.835826],\n\t\t\t\t\t\t[-109.041760, 37.713182],\n\t\t\t\t\t\t[-109.041732, 37.711214],\n\t\t\t\t\t\t[-109.042089, 37.623795],\n\t\t\t\t\t\t[-109.042131, 37.617662],\n\t\t\t\t\t\t[-109.041806, 37.604171],\n\t\t\t\t\t\t[-109.041865, 37.530726],\n\t\t\t\t\t\t[-109.041915, 37.530653],\n\t\t\t\t\t\t[-109.043053, 37.485161],\n\t\t\t\t\t\t[-109.045810, 37.374993],\n\t\t\t\t\t\t[-109.045156, 37.112064],\n\t\t\t\t\t\t[-109.045203, 37.111958],\n\t\t\t\t\t\t[-109.045173, 37.109464],\n\t\t\t\t\t\t[-109.045189, 37.096271],\n\t\t\t\t\t\t[-109.044995, 37.086429],\n\t\t\t\t\t\t[-109.045058, 37.074661],\n\t\t\t\t\t\t[-109.045166, 37.072742],\n\t\t\t\t\t\t[-109.045223, 36.999084],\n\t\t\t\t\t\t[-109.181196, 36.999271],\n\t\t\t\t\t\t[-109.233848, 36.999266],\n\t\t\t\t\t\t[-109.246917, 36.999346],\n\t\t\t\t\t\t[-109.263390, 36.999263],\n\t\t\t\t\t\t[-109.268213, 36.999242],\n\t\t\t\t\t\t[-109.270097, 36.999266],\n\t\t\t\t\t\t[-109.378039, 36.999135],\n\t\t\t\t\t\t[-109.381226, 36.999148],\n\t\t\t\t\t\t[-110.000677, 36.997968],\n\t\t\t\t\t\t[-110.331050, 36.998216],\n\t\t\t\t\t\t[-110.495259, 37.003875],\n\t\t\t\t\t\t[-110.750690, 37.003197],\n\t\t\t\t\t\t[-111.189888, 37.000959],\n\t\t\t\t\t\t[-111.405517, 37.001497],\n\t\t\t\t\t\t[-111.405869, 37.001481],\n\t\t\t\t\t\t[-111.412784, 37.001478],\n\t\t\t\t\t\t[-111.314856, 37.012133],\n\t\t\t\t\t\t[-111.268784, 37.054200],\n\t\t\t\t\t\t[-111.247488, 37.021604],\n\t\t\t\t\t\t[-111.178350, 37.102613],\n\t\t\t\t\t\t[-111.057670, 37.099395],\n\t\t\t\t\t\t[-110.958333, 37.124438],\n\t\t\t\t\t\t[-110.899517, 37.176153],\n\t\t\t\t\t\t[-110.869804, 37.348691],\n\t\t\t\t\t\t[-110.777799, 37.322992],\n\t\t\t\t\t\t[-110.736098, 37.345192],\n\t\t\t\t\t\t[-110.699197, 37.430691],\n\t\t\t\t\t\t[-110.719198, 37.481391],\n\t\t\t\t\t\t[-110.639097, 37.487091],\n\t\t\t\t\t\t[-110.646394, 37.541063],\n\t\t\t\t\t\t[-110.497711, 37.652205],\n\t\t\t\t\t\t[-110.428107, 37.778987],\n\t\t\t\t\t\t[-110.404612, 37.879923],\n\t\t\t\t\t\t[-110.304980, 37.890518],\n\t\t\t\t\t\t[-110.283035, 37.866227],\n\t\t\t\t\t\t[-109.927882, 38.151885],\n\t\t\t\t\t\t[-109.887266, 38.190214],\n\t\t\t\t\t\t[-110.015126, 38.364604],\n\t\t\t\t\t\t[-110.025402, 38.499981],\n\t\t\t\t\t\t[-109.059962, 38.499987],\n\t\t\t\t\t\t[-109.060062, 38.275489],\n\t\t\t\t\t\t[-109.042062, 38.155490],\n\t\t\t\t\t\t[-109.042074, 38.153023],\n\t\t\t\t\t\t[-109.042820, 37.999301],\n\t\t\t\t\t\t[-109.042819, 37.997068],\n\t\t\t\t\t\t[-109.043121, 37.974260]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51119\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"119\",\n\t\t\t\t\"NAME\": \"Middlesex\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 130.306000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.355084, 37.527364],\n\t\t\t\t\t\t[-76.404118, 37.535542],\n\t\t\t\t\t\t[-76.418786, 37.510385],\n\t\t\t\t\t\t[-76.437561, 37.514360],\n\t\t\t\t\t\t[-76.654076, 37.603174],\n\t\t\t\t\t\t[-76.751072, 37.728605],\n\t\t\t\t\t\t[-76.723086, 37.756697],\n\t\t\t\t\t\t[-76.703069, 37.755714],\n\t\t\t\t\t\t[-76.683359, 37.770258],\n\t\t\t\t\t\t[-76.683372, 37.765507],\n\t\t\t\t\t\t[-76.680922, 37.759647],\n\t\t\t\t\t\t[-76.677002, 37.756100],\n\t\t\t\t\t\t[-76.663887, 37.751887],\n\t\t\t\t\t\t[-76.639962, 37.750941],\n\t\t\t\t\t\t[-76.619710, 37.744795],\n\t\t\t\t\t\t[-76.617373, 37.742347],\n\t\t\t\t\t\t[-76.621433, 37.737973],\n\t\t\t\t\t\t[-76.619970, 37.731271],\n\t\t\t\t\t\t[-76.606466, 37.724819],\n\t\t\t\t\t\t[-76.597213, 37.717269],\n\t\t\t\t\t\t[-76.595943, 37.712989],\n\t\t\t\t\t\t[-76.598073, 37.709120],\n\t\t\t\t\t\t[-76.597868, 37.702918],\n\t\t\t\t\t\t[-76.579591, 37.671508],\n\t\t\t\t\t\t[-76.583143, 37.661986],\n\t\t\t\t\t\t[-76.574049, 37.646781],\n\t\t\t\t\t\t[-76.542666, 37.616857],\n\t\t\t\t\t\t[-76.533777, 37.612530],\n\t\t\t\t\t\t[-76.527188, 37.611315],\n\t\t\t\t\t\t[-76.435474, 37.612807],\n\t\t\t\t\t\t[-76.420252, 37.598686],\n\t\t\t\t\t\t[-76.410781, 37.581815],\n\t\t\t\t\t\t[-76.383188, 37.573056],\n\t\t\t\t\t\t[-76.357835, 37.573699],\n\t\t\t\t\t\t[-76.332641, 37.570042],\n\t\t\t\t\t\t[-76.300144, 37.561734],\n\t\t\t\t\t\t[-76.297960, 37.557636],\n\t\t\t\t\t\t[-76.302762, 37.551295],\n\t\t\t\t\t\t[-76.330598, 37.536391],\n\t\t\t\t\t\t[-76.339989, 37.538330],\n\t\t\t\t\t\t[-76.348992, 37.536548],\n\t\t\t\t\t\t[-76.355084, 37.527364]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72027\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"027\",\n\t\t\t\t\"NAME\": \"Camuy\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 46.355000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-66.898900, 18.366108],\n\t\t\t\t\t\t[-66.901430, 18.484552],\n\t\t\t\t\t\t[-66.867386, 18.490785],\n\t\t\t\t\t\t[-66.849673, 18.490745],\n\t\t\t\t\t\t[-66.836940, 18.487659],\n\t\t\t\t\t\t[-66.836635, 18.487701],\n\t\t\t\t\t\t[-66.824223, 18.342998],\n\t\t\t\t\t\t[-66.828738, 18.344375],\n\t\t\t\t\t\t[-66.836853, 18.348376],\n\t\t\t\t\t\t[-66.842901, 18.350373],\n\t\t\t\t\t\t[-66.846401, 18.351174],\n\t\t\t\t\t\t[-66.848462, 18.353682],\n\t\t\t\t\t\t[-66.851685, 18.353884],\n\t\t\t\t\t\t[-66.852063, 18.354626],\n\t\t\t\t\t\t[-66.854737, 18.355335],\n\t\t\t\t\t\t[-66.861541, 18.356003],\n\t\t\t\t\t\t[-66.871446, 18.356112],\n\t\t\t\t\t\t[-66.873457, 18.356876],\n\t\t\t\t\t\t[-66.876958, 18.356829],\n\t\t\t\t\t\t[-66.877784, 18.358463],\n\t\t\t\t\t\t[-66.879144, 18.358881],\n\t\t\t\t\t\t[-66.880939, 18.361254],\n\t\t\t\t\t\t[-66.880675, 18.362451],\n\t\t\t\t\t\t[-66.882193, 18.364590],\n\t\t\t\t\t\t[-66.884952, 18.365857],\n\t\t\t\t\t\t[-66.885509, 18.367087],\n\t\t\t\t\t\t[-66.887200, 18.367001],\n\t\t\t\t\t\t[-66.891242, 18.368177],\n\t\t\t\t\t\t[-66.893339, 18.367089],\n\t\t\t\t\t\t[-66.894481, 18.366195],\n\t\t\t\t\t\t[-66.895865, 18.366425],\n\t\t\t\t\t\t[-66.897696, 18.365701],\n\t\t\t\t\t\t[-66.898900, 18.366108]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72035\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"035\",\n\t\t\t\t\"NAME\": \"Cayey\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 51.934000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-66.051788, 18.109878],\n\t\t\t\t\t\t[-66.053208, 18.109526],\n\t\t\t\t\t\t[-66.053146, 18.107293],\n\t\t\t\t\t\t[-66.166145, 18.050063],\n\t\t\t\t\t\t[-66.224490, 18.095339],\n\t\t\t\t\t\t[-66.226805, 18.116389],\n\t\t\t\t\t\t[-66.220358, 18.120797],\n\t\t\t\t\t\t[-66.220693, 18.131684],\n\t\t\t\t\t\t[-66.216899, 18.143220],\n\t\t\t\t\t\t[-66.119213, 18.137907],\n\t\t\t\t\t\t[-66.095099, 18.169077],\n\t\t\t\t\t\t[-66.080343, 18.152146],\n\t\t\t\t\t\t[-66.065968, 18.148411],\n\t\t\t\t\t\t[-66.069490, 18.142397],\n\t\t\t\t\t\t[-66.060761, 18.116315],\n\t\t\t\t\t\t[-66.052555, 18.113069],\n\t\t\t\t\t\t[-66.051162, 18.111088],\n\t\t\t\t\t\t[-66.051788, 18.109878]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72041\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"041\",\n\t\t\t\t\"NAME\": \"Cidra\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 36.021000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-66.216899, 18.143220],\n\t\t\t\t\t\t[-66.228748, 18.159611],\n\t\t\t\t\t\t[-66.223578, 18.165038],\n\t\t\t\t\t\t[-66.242735, 18.180248],\n\t\t\t\t\t\t[-66.242623, 18.183408],\n\t\t\t\t\t\t[-66.240460, 18.184794],\n\t\t\t\t\t\t[-66.169126, 18.224290],\n\t\t\t\t\t\t[-66.117774, 18.209949],\n\t\t\t\t\t\t[-66.109374, 18.200934],\n\t\t\t\t\t\t[-66.101673, 18.183082],\n\t\t\t\t\t\t[-66.105096, 18.171544],\n\t\t\t\t\t\t[-66.102177, 18.169419],\n\t\t\t\t\t\t[-66.100635, 18.169824],\n\t\t\t\t\t\t[-66.096813, 18.168197],\n\t\t\t\t\t\t[-66.095099, 18.169077],\n\t\t\t\t\t\t[-66.119213, 18.137907],\n\t\t\t\t\t\t[-66.216899, 18.143220]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72043\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"043\",\n\t\t\t\t\"NAME\": \"Coamo\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 78.012000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-66.257527, 18.075884],\n\t\t\t\t\t\t[-66.331244, 18.015891],\n\t\t\t\t\t\t[-66.426989, 18.042627],\n\t\t\t\t\t\t[-66.424330, 18.052940],\n\t\t\t\t\t\t[-66.428167, 18.054931],\n\t\t\t\t\t\t[-66.431538, 18.063519],\n\t\t\t\t\t\t[-66.427541, 18.071666],\n\t\t\t\t\t\t[-66.430347, 18.077135],\n\t\t\t\t\t\t[-66.430314, 18.082053],\n\t\t\t\t\t\t[-66.444560, 18.176674],\n\t\t\t\t\t\t[-66.436075, 18.175501],\n\t\t\t\t\t\t[-66.427994, 18.170935],\n\t\t\t\t\t\t[-66.423649, 18.172025],\n\t\t\t\t\t\t[-66.420902, 18.166316],\n\t\t\t\t\t\t[-66.413686, 18.163337],\n\t\t\t\t\t\t[-66.373768, 18.173694],\n\t\t\t\t\t\t[-66.351258, 18.165488],\n\t\t\t\t\t\t[-66.322323, 18.165503],\n\t\t\t\t\t\t[-66.314848, 18.152088],\n\t\t\t\t\t\t[-66.257527, 18.075884]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72053\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"053\",\n\t\t\t\t\"NAME\": \"Fajardo\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 29.864000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-65.571523, 18.351635],\n\t\t\t\t\t\t\t[-65.569013, 18.352794],\n\t\t\t\t\t\t\t[-65.565744, 18.349524],\n\t\t\t\t\t\t\t[-65.565072, 18.347499],\n\t\t\t\t\t\t\t[-65.567951, 18.343341],\n\t\t\t\t\t\t\t[-65.571523, 18.351635]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-65.572248, 18.381757],\n\t\t\t\t\t\t\t[-65.568979, 18.382125],\n\t\t\t\t\t\t\t[-65.566355, 18.378212],\n\t\t\t\t\t\t\t[-65.571787, 18.376370],\n\t\t\t\t\t\t\t[-65.572248, 18.381757]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-65.587335, 18.381994],\n\t\t\t\t\t\t\t[-65.591650, 18.386287],\n\t\t\t\t\t\t\t[-65.592585, 18.390849],\n\t\t\t\t\t\t\t[-65.589332, 18.390516],\n\t\t\t\t\t\t\t[-65.584537, 18.386939],\n\t\t\t\t\t\t\t[-65.583571, 18.383751],\n\t\t\t\t\t\t\t[-65.587335, 18.381994]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-65.753591, 18.296755],\n\t\t\t\t\t\t\t[-65.669636, 18.362102],\n\t\t\t\t\t\t\t[-65.668845, 18.361939],\n\t\t\t\t\t\t\t[-65.634431, 18.369835],\n\t\t\t\t\t\t\t[-65.627246, 18.376436],\n\t\t\t\t\t\t\t[-65.626527, 18.381728],\n\t\t\t\t\t\t\t[-65.624975, 18.386553],\n\t\t\t\t\t\t\t[-65.622761, 18.387771],\n\t\t\t\t\t\t\t[-65.618229, 18.386496],\n\t\t\t\t\t\t\t[-65.614891, 18.382473],\n\t\t\t\t\t\t\t[-65.619068, 18.367755],\n\t\t\t\t\t\t\t[-65.628198, 18.353711],\n\t\t\t\t\t\t\t[-65.634190, 18.338965],\n\t\t\t\t\t\t\t[-65.628047, 18.328252],\n\t\t\t\t\t\t\t[-65.626456, 18.298982],\n\t\t\t\t\t\t\t[-65.634389, 18.292349],\n\t\t\t\t\t\t\t[-65.635826, 18.288271],\n\t\t\t\t\t\t\t[-65.634893, 18.283923],\n\t\t\t\t\t\t\t[-65.717510, 18.267744],\n\t\t\t\t\t\t\t[-65.753591, 18.296755]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72055\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"055\",\n\t\t\t\t\"NAME\": \"Gu�nica\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 37.050000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-66.884653, 18.024816],\n\t\t\t\t\t\t[-66.863219, 17.998029],\n\t\t\t\t\t\t[-66.859471, 17.954316],\n\t\t\t\t\t\t[-66.862545, 17.952022],\n\t\t\t\t\t\t[-66.871697, 17.952707],\n\t\t\t\t\t\t[-66.883440, 17.952526],\n\t\t\t\t\t\t[-66.899639, 17.948298],\n\t\t\t\t\t\t[-66.904585, 17.950527],\n\t\t\t\t\t\t[-66.906532, 17.955356],\n\t\t\t\t\t\t[-66.906276, 17.963368],\n\t\t\t\t\t\t[-66.924529, 17.972808],\n\t\t\t\t\t\t[-66.928651, 17.970204],\n\t\t\t\t\t\t[-66.930414, 17.963127],\n\t\t\t\t\t\t[-66.916127, 17.959102],\n\t\t\t\t\t\t[-66.909483, 17.952559],\n\t\t\t\t\t\t[-66.909359, 17.949880],\n\t\t\t\t\t\t[-66.912522, 17.947446],\n\t\t\t\t\t\t[-66.930313, 17.943389],\n\t\t\t\t\t\t[-66.932636, 17.939998],\n\t\t\t\t\t\t[-66.931581, 17.936900],\n\t\t\t\t\t\t[-66.919298, 17.932062],\n\t\t\t\t\t\t[-66.923826, 17.926923],\n\t\t\t\t\t\t[-66.927261, 17.926875],\n\t\t\t\t\t\t[-66.959998, 17.940216],\n\t\t\t\t\t\t[-66.980516, 17.951648],\n\t\t\t\t\t\t[-66.981050, 17.952505],\n\t\t\t\t\t\t[-66.961935, 17.991592],\n\t\t\t\t\t\t[-66.958748, 18.032477],\n\t\t\t\t\t\t[-66.947158, 18.033439],\n\t\t\t\t\t\t[-66.935902, 18.029324],\n\t\t\t\t\t\t[-66.930811, 18.030583],\n\t\t\t\t\t\t[-66.924206, 18.027377],\n\t\t\t\t\t\t[-66.919535, 18.027692],\n\t\t\t\t\t\t[-66.910887, 18.023883],\n\t\t\t\t\t\t[-66.905108, 18.026523],\n\t\t\t\t\t\t[-66.895027, 18.023247],\n\t\t\t\t\t\t[-66.884653, 18.024816]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72059\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"059\",\n\t\t\t\t\"NAME\": \"Guayanilla\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 42.270000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-66.769049, 18.134983],\n\t\t\t\t\t\t[-66.753964, 17.999590],\n\t\t\t\t\t\t[-66.755341, 18.001203],\n\t\t\t\t\t\t[-66.764491, 18.006317],\n\t\t\t\t\t\t[-66.770307, 18.005955],\n\t\t\t\t\t\t[-66.799656, 17.992450],\n\t\t\t\t\t\t[-66.806866, 17.983786],\n\t\t\t\t\t\t[-66.807924, 17.979606],\n\t\t\t\t\t\t[-66.806903, 17.976046],\n\t\t\t\t\t\t[-66.805683, 17.975052],\n\t\t\t\t\t\t[-66.795106, 17.977438],\n\t\t\t\t\t\t[-66.789302, 17.980793],\n\t\t\t\t\t\t[-66.784953, 17.978326],\n\t\t\t\t\t\t[-66.787245, 17.972914],\n\t\t\t\t\t\t[-66.808270, 17.965635],\n\t\t\t\t\t\t[-66.822400, 17.954499],\n\t\t\t\t\t\t[-66.838584, 17.949931],\n\t\t\t\t\t\t[-66.852288, 17.955004],\n\t\t\t\t\t\t[-66.797557, 18.133445],\n\t\t\t\t\t\t[-66.788544, 18.134404],\n\t\t\t\t\t\t[-66.784400, 18.138652],\n\t\t\t\t\t\t[-66.775694, 18.133788],\n\t\t\t\t\t\t[-66.769049, 18.134983]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72067\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"067\",\n\t\t\t\t\"NAME\": \"Hormigueros\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 11.344000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-67.159733, 18.153227],\n\t\t\t\t\t\t[-67.086698, 18.151990],\n\t\t\t\t\t\t[-67.084230, 18.148440],\n\t\t\t\t\t\t[-67.087787, 18.145535],\n\t\t\t\t\t\t[-67.092501, 18.145915],\n\t\t\t\t\t\t[-67.093340, 18.141064],\n\t\t\t\t\t\t[-67.092797, 18.136883],\n\t\t\t\t\t\t[-67.091960, 18.129903],\n\t\t\t\t\t\t[-67.085329, 18.120752],\n\t\t\t\t\t\t[-67.081658, 18.118290],\n\t\t\t\t\t\t[-67.078170, 18.114952],\n\t\t\t\t\t\t[-67.079880, 18.110680],\n\t\t\t\t\t\t[-67.082935, 18.106780],\n\t\t\t\t\t\t[-67.088155, 18.106136],\n\t\t\t\t\t\t[-67.092542, 18.106115],\n\t\t\t\t\t\t[-67.100492, 18.106395],\n\t\t\t\t\t\t[-67.159733, 18.153227]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72073\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"073\",\n\t\t\t\t\"NAME\": \"Jayuya\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 44.533000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-66.552766, 18.152057],\n\t\t\t\t\t\t[-66.649467, 18.158857],\n\t\t\t\t\t\t[-66.566620, 18.298549],\n\t\t\t\t\t\t[-66.543133, 18.163098],\n\t\t\t\t\t\t[-66.543211, 18.161577],\n\t\t\t\t\t\t[-66.544836, 18.160262],\n\t\t\t\t\t\t[-66.544152, 18.158328],\n\t\t\t\t\t\t[-66.546835, 18.155019],\n\t\t\t\t\t\t[-66.547220, 18.153130],\n\t\t\t\t\t\t[-66.548160, 18.152966],\n\t\t\t\t\t\t[-66.549188, 18.152507],\n\t\t\t\t\t\t[-66.549955, 18.152516],\n\t\t\t\t\t\t[-66.550433, 18.153094],\n\t\t\t\t\t\t[-66.551267, 18.152848],\n\t\t\t\t\t\t[-66.552037, 18.152237],\n\t\t\t\t\t\t[-66.552766, 18.152057]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US50025\",\n\t\t\t\t\"STATE\": \"50\",\n\t\t\t\t\"COUNTY\": \"025\",\n\t\t\t\t\"NAME\": \"Windham\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 785.305000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-72.864180, 42.737117],\n\t\t\t\t\t\t[-72.927291, 42.738714],\n\t\t\t\t\t\t[-72.930271, 42.738789],\n\t\t\t\t\t\t[-73.018646, 42.741025],\n\t\t\t\t\t\t[-73.015111, 42.832074],\n\t\t\t\t\t\t[-72.924820, 42.856164],\n\t\t\t\t\t\t[-72.921376, 42.926792],\n\t\t\t\t\t\t[-73.008063, 42.930087],\n\t\t\t\t\t\t[-73.002789, 43.023007],\n\t\t\t\t\t\t[-72.996900, 43.119095],\n\t\t\t\t\t\t[-72.868737, 43.113170],\n\t\t\t\t\t\t[-72.819368, 43.255498],\n\t\t\t\t\t\t[-72.685637, 43.222495],\n\t\t\t\t\t\t[-72.431187, 43.231786],\n\t\t\t\t\t\t[-72.439407, 43.211322],\n\t\t\t\t\t\t[-72.452100, 43.161414],\n\t\t\t\t\t\t[-72.441904, 43.136615],\n\t\t\t\t\t\t[-72.433097, 43.120021],\n\t\t\t\t\t\t[-72.432661, 43.114077],\n\t\t\t\t\t\t[-72.443762, 43.006245],\n\t\t\t\t\t\t[-72.556214, 42.866950],\n\t\t\t\t\t\t[-72.556112, 42.866252],\n\t\t\t\t\t\t[-72.555768, 42.858153],\n\t\t\t\t\t\t[-72.555693, 42.856380],\n\t\t\t\t\t\t[-72.542784, 42.808482],\n\t\t\t\t\t\t[-72.509506, 42.781183],\n\t\t\t\t\t\t[-72.491122, 42.772465],\n\t\t\t\t\t\t[-72.478453, 42.762296],\n\t\t\t\t\t\t[-72.460195, 42.732066],\n\t\t\t\t\t\t[-72.458519, 42.726853],\n\t\t\t\t\t\t[-72.864180, 42.737117]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72005\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"005\",\n\t\t\t\t\"NAME\": \"Aguadilla\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 36.529000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-67.103468, 18.514523],\n\t\t\t\t\t\t[-67.077061, 18.488966],\n\t\t\t\t\t\t[-67.058460, 18.479982],\n\t\t\t\t\t\t[-67.056515, 18.460984],\n\t\t\t\t\t\t[-67.132210, 18.389391],\n\t\t\t\t\t\t[-67.150689, 18.392377],\n\t\t\t\t\t\t[-67.160144, 18.415587],\n\t\t\t\t\t\t[-67.159608, 18.415915],\n\t\t\t\t\t\t[-67.156599, 18.418983],\n\t\t\t\t\t\t[-67.155245, 18.424401],\n\t\t\t\t\t\t[-67.156619, 18.439562],\n\t\t\t\t\t\t[-67.161746, 18.453462],\n\t\t\t\t\t\t[-67.169011, 18.466352],\n\t\t\t\t\t\t[-67.169016, 18.478488],\n\t\t\t\t\t\t[-67.164144, 18.487396],\n\t\t\t\t\t\t[-67.142830, 18.505485],\n\t\t\t\t\t\t[-67.138249, 18.507776],\n\t\t\t\t\t\t[-67.125655, 18.511706],\n\t\t\t\t\t\t[-67.103468, 18.514523]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US53037\",\n\t\t\t\t\"STATE\": \"53\",\n\t\t\t\t\"COUNTY\": \"037\",\n\t\t\t\t\"NAME\": \"Kittitas\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2297.271000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-121.243207, 47.540334],\n\t\t\t\t\t\t[-121.113606, 47.597135],\n\t\t\t\t\t\t[-120.916098, 47.428540],\n\t\t\t\t\t\t[-120.525137, 47.333239],\n\t\t\t\t\t\t[-120.388978, 47.260889],\n\t\t\t\t\t\t[-120.094470, 47.262151],\n\t\t\t\t\t\t[-120.074669, 47.225152],\n\t\t\t\t\t\t[-120.007065, 47.220053],\n\t\t\t\t\t\t[-120.042866, 47.073453],\n\t\t\t\t\t\t[-119.927537, 46.817092],\n\t\t\t\t\t\t[-119.973017, 46.737171],\n\t\t\t\t\t\t[-120.509618, 46.738114],\n\t\t\t\t\t\t[-120.509227, 46.824534],\n\t\t\t\t\t\t[-120.634431, 46.825831],\n\t\t\t\t\t\t[-120.634883, 46.911995],\n\t\t\t\t\t\t[-121.026490, 46.911341],\n\t\t\t\t\t\t[-121.089794, 46.991039],\n\t\t\t\t\t\t[-121.282039, 47.088954],\n\t\t\t\t\t\t[-121.379671, 47.086765],\n\t\t\t\t\t\t[-121.298041, 47.148230],\n\t\t\t\t\t\t[-121.432652, 47.293591],\n\t\t\t\t\t\t[-121.425421, 47.422354],\n\t\t\t\t\t\t[-121.310953, 47.479271],\n\t\t\t\t\t\t[-121.243207, 47.540334]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US53039\",\n\t\t\t\t\"STATE\": \"53\",\n\t\t\t\t\"COUNTY\": \"039\",\n\t\t\t\t\"NAME\": \"Klickitat\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1871.313000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-121.608576, 45.858220],\n\t\t\t\t\t\t[-121.612502, 46.043840],\n\t\t\t\t\t\t[-121.523938, 46.044048],\n\t\t\t\t\t\t[-121.070459, 46.042575],\n\t\t\t\t\t\t[-119.866265, 46.040662],\n\t\t\t\t\t\t[-119.868135, 45.835962],\n\t\t\t\t\t\t[-119.999506, 45.812199],\n\t\t\t\t\t\t[-120.001148, 45.811902],\n\t\t\t\t\t\t[-120.141352, 45.773152],\n\t\t\t\t\t\t[-120.170453, 45.761951],\n\t\t\t\t\t\t[-120.210754, 45.725951],\n\t\t\t\t\t\t[-120.403960, 45.699249],\n\t\t\t\t\t\t[-120.482362, 45.694449],\n\t\t\t\t\t\t[-120.505863, 45.700048],\n\t\t\t\t\t\t[-120.521964, 45.709848],\n\t\t\t\t\t\t[-120.559465, 45.738348],\n\t\t\t\t\t\t[-120.591166, 45.746547],\n\t\t\t\t\t\t[-120.634968, 45.745847],\n\t\t\t\t\t\t[-120.653559, 45.737237],\n\t\t\t\t\t\t[-120.668869, 45.730147],\n\t\t\t\t\t\t[-120.689370, 45.715847],\n\t\t\t\t\t\t[-120.788872, 45.686246],\n\t\t\t\t\t\t[-120.855674, 45.671545],\n\t\t\t\t\t\t[-120.870042, 45.661242],\n\t\t\t\t\t\t[-120.915876, 45.641345],\n\t\t\t\t\t\t[-120.943977, 45.656445],\n\t\t\t\t\t\t[-121.064370, 45.652549],\n\t\t\t\t\t\t[-121.086675, 45.646667],\n\t\t\t\t\t\t[-121.195233, 45.629513],\n\t\t\t\t\t\t[-121.200367, 45.649829],\n\t\t\t\t\t\t[-121.215779, 45.671238],\n\t\t\t\t\t\t[-121.312198, 45.699925],\n\t\t\t\t\t\t[-121.337770, 45.704949],\n\t\t\t\t\t\t[-121.372574, 45.703111],\n\t\t\t\t\t\t[-121.401739, 45.692887],\n\t\t\t\t\t\t[-121.423592, 45.693990],\n\t\t\t\t\t\t[-121.441045, 45.697270],\n\t\t\t\t\t\t[-121.462849, 45.701367],\n\t\t\t\t\t\t[-121.522392, 45.724677],\n\t\t\t\t\t\t[-121.608928, 45.782580],\n\t\t\t\t\t\t[-121.608576, 45.858220]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US53059\",\n\t\t\t\t\"STATE\": \"53\",\n\t\t\t\t\"COUNTY\": \"059\",\n\t\t\t\t\"NAME\": \"Skamania\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1655.677000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-121.820055, 45.704649],\n\t\t\t\t\t\t[-121.867167, 45.693277],\n\t\t\t\t\t\t[-121.901855, 45.670716],\n\t\t\t\t\t\t[-121.900858, 45.662009],\n\t\t\t\t\t\t[-121.908267, 45.654399],\n\t\t\t\t\t\t[-121.922242, 45.648495],\n\t\t\t\t\t\t[-121.983038, 45.622812],\n\t\t\t\t\t\t[-122.101675, 45.583516],\n\t\t\t\t\t\t[-122.112356, 45.581409],\n\t\t\t\t\t\t[-122.126197, 45.582617],\n\t\t\t\t\t\t[-122.126197, 45.582573],\n\t\t\t\t\t\t[-122.129490, 45.582967],\n\t\t\t\t\t\t[-122.129548, 45.582945],\n\t\t\t\t\t\t[-122.140750, 45.584508],\n\t\t\t\t\t\t[-122.183695, 45.577696],\n\t\t\t\t\t\t[-122.201700, 45.564141],\n\t\t\t\t\t\t[-122.248993, 45.547745],\n\t\t\t\t\t\t[-122.245633, 46.053932],\n\t\t\t\t\t\t[-122.239952, 46.384204],\n\t\t\t\t\t\t[-122.241696, 46.385292],\n\t\t\t\t\t\t[-122.241011, 46.386371],\n\t\t\t\t\t\t[-121.523556, 46.388221],\n\t\t\t\t\t\t[-121.523938, 46.044048],\n\t\t\t\t\t\t[-121.612502, 46.043840],\n\t\t\t\t\t\t[-121.608576, 45.858220],\n\t\t\t\t\t\t[-121.608928, 45.782580],\n\t\t\t\t\t\t[-121.522392, 45.724677],\n\t\t\t\t\t\t[-121.533106, 45.726541],\n\t\t\t\t\t\t[-121.626185, 45.705915],\n\t\t\t\t\t\t[-121.707358, 45.694809],\n\t\t\t\t\t\t[-121.735104, 45.694039],\n\t\t\t\t\t\t[-121.811304, 45.706761],\n\t\t\t\t\t\t[-121.820055, 45.704649]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US53075\",\n\t\t\t\t\"STATE\": \"53\",\n\t\t\t\t\"COUNTY\": \"075\",\n\t\t\t\t\"NAME\": \"Whitman\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2159.090000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-118.209807, 46.738938],\n\t\t\t\t\t\t[-118.012613, 46.790485],\n\t\t\t\t\t\t[-117.958856, 46.914878],\n\t\t\t\t\t\t[-117.960143, 47.260449],\n\t\t\t\t\t\t[-117.823695, 47.260378],\n\t\t\t\t\t\t[-117.040019, 47.259272],\n\t\t\t\t\t\t[-117.039899, 47.225515],\n\t\t\t\t\t\t[-117.039888, 47.203282],\n\t\t\t\t\t\t[-117.039871, 47.181858],\n\t\t\t\t\t\t[-117.039836, 47.154734],\n\t\t\t\t\t\t[-117.039821, 47.127265],\n\t\t\t\t\t\t[-117.039657, 46.825798],\n\t\t\t\t\t\t[-117.039828, 46.815443],\n\t\t\t\t\t\t[-117.039783, 46.541785],\n\t\t\t\t\t\t[-117.039771, 46.471779],\n\t\t\t\t\t\t[-117.039763, 46.469570],\n\t\t\t\t\t\t[-117.039741, 46.462704],\n\t\t\t\t\t\t[-117.039813, 46.425425],\n\t\t\t\t\t\t[-117.199044, 46.419786],\n\t\t\t\t\t\t[-117.228896, 46.462314],\n\t\t\t\t\t\t[-117.253902, 46.545082],\n\t\t\t\t\t\t[-117.475331, 46.700330],\n\t\t\t\t\t\t[-117.601227, 46.672679],\n\t\t\t\t\t\t[-117.751037, 46.690027],\n\t\t\t\t\t\t[-117.851844, 46.624772],\n\t\t\t\t\t\t[-118.172552, 46.556947],\n\t\t\t\t\t\t[-118.215660, 46.588924],\n\t\t\t\t\t\t[-118.249122, 46.734138],\n\t\t\t\t\t\t[-118.209807, 46.738938]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54017\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"017\",\n\t\t\t\t\"NAME\": \"Doddridge\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 319.720000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.544521, 39.429120],\n\t\t\t\t\t\t[-80.531808, 39.360121],\n\t\t\t\t\t\t[-80.603684, 39.291041],\n\t\t\t\t\t\t[-80.525709, 39.209429],\n\t\t\t\t\t\t[-80.596126, 39.167069],\n\t\t\t\t\t\t[-80.728326, 39.095679],\n\t\t\t\t\t\t[-80.749214, 39.099843],\n\t\t\t\t\t\t[-80.812970, 39.109401],\n\t\t\t\t\t\t[-80.913840, 39.272947],\n\t\t\t\t\t\t[-80.888744, 39.294298],\n\t\t\t\t\t\t[-80.618629, 39.450375],\n\t\t\t\t\t\t[-80.544521, 39.429120]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54029\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"029\",\n\t\t\t\t\"NAME\": \"Hancock\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 82.609000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.519054, 40.517922],\n\t\t\t\t\t\t[-80.518692, 40.477365],\n\t\t\t\t\t\t[-80.517998, 40.399644],\n\t\t\t\t\t\t[-80.573784, 40.399755],\n\t\t\t\t\t\t[-80.617346, 40.396004],\n\t\t\t\t\t\t[-80.612295, 40.434867],\n\t\t\t\t\t\t[-80.599194, 40.482566],\n\t\t\t\t\t\t[-80.610259, 40.490962],\n\t\t\t\t\t\t[-80.666917, 40.573664],\n\t\t\t\t\t\t[-80.667957, 40.582496],\n\t\t\t\t\t\t[-80.665892, 40.587728],\n\t\t\t\t\t\t[-80.634355, 40.616095],\n\t\t\t\t\t\t[-80.627171, 40.619936],\n\t\t\t\t\t\t[-80.601494, 40.625387],\n\t\t\t\t\t\t[-80.594065, 40.623664],\n\t\t\t\t\t\t[-80.589041, 40.620128],\n\t\t\t\t\t\t[-80.560720, 40.623680],\n\t\t\t\t\t\t[-80.518991, 40.638801],\n\t\t\t\t\t\t[-80.519039, 40.616391],\n\t\t\t\t\t\t[-80.519086, 40.616385],\n\t\t\t\t\t\t[-80.519086, 40.590161],\n\t\t\t\t\t\t[-80.519055, 40.590173],\n\t\t\t\t\t\t[-80.519057, 40.517922],\n\t\t\t\t\t\t[-80.519054, 40.517922]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54043\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"043\",\n\t\t\t\t\"NAME\": \"Lincoln\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 437.039000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.915197, 38.325597],\n\t\t\t\t\t\t[-81.818234, 38.316751],\n\t\t\t\t\t\t[-81.833470, 38.209570],\n\t\t\t\t\t\t[-81.927565, 38.152492],\n\t\t\t\t\t\t[-81.932507, 38.025356],\n\t\t\t\t\t\t[-82.190658, 37.974778],\n\t\t\t\t\t\t[-82.306391, 37.943640],\n\t\t\t\t\t\t[-82.203865, 38.023606],\n\t\t\t\t\t\t[-82.283316, 38.141936],\n\t\t\t\t\t\t[-82.264849, 38.229199],\n\t\t\t\t\t\t[-82.176790, 38.339600],\n\t\t\t\t\t\t[-82.047128, 38.374432],\n\t\t\t\t\t\t[-82.048589, 38.290138],\n\t\t\t\t\t\t[-81.991774, 38.269085],\n\t\t\t\t\t\t[-81.915197, 38.325597]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54055\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"055\",\n\t\t\t\t\"NAME\": \"Mercer\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 418.993000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.222121, 37.510416],\n\t\t\t\t\t\t[-81.199320, 37.574515],\n\t\t\t\t\t\t[-81.094630, 37.588658],\n\t\t\t\t\t\t[-80.859558, 37.429555],\n\t\t\t\t\t\t[-80.862761, 37.411829],\n\t\t\t\t\t\t[-80.872589, 37.372347],\n\t\t\t\t\t\t[-80.849451, 37.346909],\n\t\t\t\t\t\t[-80.900535, 37.315000],\n\t\t\t\t\t\t[-80.919259, 37.306163],\n\t\t\t\t\t\t[-80.947896, 37.295872],\n\t\t\t\t\t\t[-80.966556, 37.292158],\n\t\t\t\t\t\t[-80.973889, 37.291444],\n\t\t\t\t\t\t[-80.980044, 37.293118],\n\t\t\t\t\t\t[-80.981322, 37.293465],\n\t\t\t\t\t\t[-81.034652, 37.290751],\n\t\t\t\t\t\t[-81.084012, 37.284401],\n\t\t\t\t\t\t[-81.112596, 37.278497],\n\t\t\t\t\t\t[-81.167029, 37.262881],\n\t\t\t\t\t\t[-81.204774, 37.243013],\n\t\t\t\t\t\t[-81.225104, 37.234874],\n\t\t\t\t\t\t[-81.320105, 37.299323],\n\t\t\t\t\t\t[-81.362156, 37.337687],\n\t\t\t\t\t\t[-81.311201, 37.424509],\n\t\t\t\t\t\t[-81.222121, 37.510416]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54073\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"073\",\n\t\t\t\t\"NAME\": \"Pleasants\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 130.103000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.239477, 39.268328],\n\t\t\t\t\t\t[-81.371271, 39.342062],\n\t\t\t\t\t\t[-81.356911, 39.343178],\n\t\t\t\t\t\t[-81.347567, 39.345770],\n\t\t\t\t\t\t[-81.295373, 39.375290],\n\t\t\t\t\t\t[-81.270716, 39.385914],\n\t\t\t\t\t\t[-81.249088, 39.389992],\n\t\t\t\t\t\t[-81.223581, 39.386062],\n\t\t\t\t\t\t[-81.215617, 39.388602],\n\t\t\t\t\t\t[-81.127696, 39.464879],\n\t\t\t\t\t\t[-81.029337, 39.467383],\n\t\t\t\t\t\t[-81.007836, 39.350923],\n\t\t\t\t\t\t[-81.239477, 39.268328]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54085\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"085\",\n\t\t\t\t\"NAME\": \"Ritchie\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 451.991000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.298017, 39.185572],\n\t\t\t\t\t\t[-81.239477, 39.268328],\n\t\t\t\t\t\t[-81.007836, 39.350923],\n\t\t\t\t\t\t[-80.932140, 39.389119],\n\t\t\t\t\t\t[-80.888744, 39.294298],\n\t\t\t\t\t\t[-80.913840, 39.272947],\n\t\t\t\t\t\t[-80.812970, 39.109401],\n\t\t\t\t\t\t[-81.033632, 39.009584],\n\t\t\t\t\t\t[-81.162455, 39.030608],\n\t\t\t\t\t\t[-81.250252, 39.035074],\n\t\t\t\t\t\t[-81.328786, 39.152584],\n\t\t\t\t\t\t[-81.298017, 39.185572]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54095\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"095\",\n\t\t\t\t\"NAME\": \"Tyler\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 256.294000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.888744, 39.294298],\n\t\t\t\t\t\t[-80.932140, 39.389119],\n\t\t\t\t\t\t[-81.007836, 39.350923],\n\t\t\t\t\t\t[-81.029337, 39.467383],\n\t\t\t\t\t\t[-81.127696, 39.464879],\n\t\t\t\t\t\t[-81.063587, 39.520497],\n\t\t\t\t\t\t[-81.038691, 39.540464],\n\t\t\t\t\t\t[-81.020055, 39.555410],\n\t\t\t\t\t\t[-80.943782, 39.606926],\n\t\t\t\t\t\t[-80.852182, 39.602048],\n\t\t\t\t\t\t[-80.720451, 39.481237],\n\t\t\t\t\t\t[-80.618629, 39.450375],\n\t\t\t\t\t\t[-80.888744, 39.294298]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51057\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"057\",\n\t\t\t\t\"NAME\": \"Essex\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 257.123000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.751072, 37.728605],\n\t\t\t\t\t\t[-76.804423, 37.794892],\n\t\t\t\t\t\t[-76.943137, 37.782910],\n\t\t\t\t\t\t[-77.018849, 37.844848],\n\t\t\t\t\t\t[-77.070115, 37.964770],\n\t\t\t\t\t\t[-77.170100, 38.079543],\n\t\t\t\t\t\t[-77.115997, 38.149931],\n\t\t\t\t\t\t[-77.094796, 38.161631],\n\t\t\t\t\t\t[-77.084596, 38.160231],\n\t\t\t\t\t\t[-77.082596, 38.146831],\n\t\t\t\t\t\t[-77.075496, 38.141131],\n\t\t\t\t\t\t[-77.066895, 38.147631],\n\t\t\t\t\t\t[-77.069296, 38.157731],\n\t\t\t\t\t\t[-77.061695, 38.161631],\n\t\t\t\t\t\t[-77.049695, 38.109832],\n\t\t\t\t\t\t[-76.936959, 38.077074],\n\t\t\t\t\t\t[-76.905403, 38.003469],\n\t\t\t\t\t\t[-76.775390, 37.874306],\n\t\t\t\t\t\t[-76.784618, 37.869569],\n\t\t\t\t\t\t[-76.782826, 37.863184],\n\t\t\t\t\t\t[-76.766328, 37.840437],\n\t\t\t\t\t\t[-76.751200, 37.824141],\n\t\t\t\t\t\t[-76.734309, 37.798660],\n\t\t\t\t\t\t[-76.723863, 37.788503],\n\t\t\t\t\t\t[-76.715498, 37.785873],\n\t\t\t\t\t\t[-76.689773, 37.785190],\n\t\t\t\t\t\t[-76.683775, 37.781391],\n\t\t\t\t\t\t[-76.681901, 37.778118],\n\t\t\t\t\t\t[-76.683343, 37.775783],\n\t\t\t\t\t\t[-76.683359, 37.770258],\n\t\t\t\t\t\t[-76.703069, 37.755714],\n\t\t\t\t\t\t[-76.723086, 37.756697],\n\t\t\t\t\t\t[-76.751072, 37.728605]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72079\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"079\",\n\t\t\t\t\"NAME\": \"Lajas\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 59.953000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-67.109986, 17.945806],\n\t\t\t\t\t\t[-67.109044, 18.056085],\n\t\t\t\t\t\t[-66.983337, 18.052518],\n\t\t\t\t\t\t[-66.982675, 18.041202],\n\t\t\t\t\t\t[-66.960370, 18.036519],\n\t\t\t\t\t\t[-66.958748, 18.032477],\n\t\t\t\t\t\t[-66.961935, 17.991592],\n\t\t\t\t\t\t[-66.981050, 17.952505],\n\t\t\t\t\t\t[-66.982669, 17.955100],\n\t\t\t\t\t\t[-66.982206, 17.961192],\n\t\t\t\t\t\t[-66.987287, 17.970663],\n\t\t\t\t\t\t[-66.996738, 17.972899],\n\t\t\t\t\t\t[-67.003972, 17.970799],\n\t\t\t\t\t\t[-67.014744, 17.968468],\n\t\t\t\t\t\t[-67.024522, 17.970722],\n\t\t\t\t\t\t[-67.062478, 17.973819],\n\t\t\t\t\t\t[-67.076534, 17.967759],\n\t\t\t\t\t\t[-67.089827, 17.951418],\n\t\t\t\t\t\t[-67.101468, 17.946621],\n\t\t\t\t\t\t[-67.109985, 17.945806],\n\t\t\t\t\t\t[-67.109986, 17.945806]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72081\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"081\",\n\t\t\t\t\"NAME\": \"Lares\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 61.450000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-66.826128, 18.323382],\n\t\t\t\t\t\t[-66.817271, 18.230336],\n\t\t\t\t\t\t[-66.827327, 18.171242],\n\t\t\t\t\t\t[-66.828278, 18.170427],\n\t\t\t\t\t\t[-66.830798, 18.171018],\n\t\t\t\t\t\t[-66.832474, 18.170514],\n\t\t\t\t\t\t[-66.836760, 18.170553],\n\t\t\t\t\t\t[-66.850765, 18.170357],\n\t\t\t\t\t\t[-66.862832, 18.174808],\n\t\t\t\t\t\t[-66.863848, 18.186610],\n\t\t\t\t\t\t[-66.897964, 18.187744],\n\t\t\t\t\t\t[-66.912859, 18.233009],\n\t\t\t\t\t\t[-66.907236, 18.253090],\n\t\t\t\t\t\t[-66.893339, 18.367089],\n\t\t\t\t\t\t[-66.891242, 18.368177],\n\t\t\t\t\t\t[-66.887200, 18.367001],\n\t\t\t\t\t\t[-66.885509, 18.367087],\n\t\t\t\t\t\t[-66.884952, 18.365857],\n\t\t\t\t\t\t[-66.882193, 18.364590],\n\t\t\t\t\t\t[-66.880675, 18.362451],\n\t\t\t\t\t\t[-66.880939, 18.361254],\n\t\t\t\t\t\t[-66.879144, 18.358881],\n\t\t\t\t\t\t[-66.877784, 18.358463],\n\t\t\t\t\t\t[-66.876958, 18.356829],\n\t\t\t\t\t\t[-66.873457, 18.356876],\n\t\t\t\t\t\t[-66.871446, 18.356112],\n\t\t\t\t\t\t[-66.861541, 18.356003],\n\t\t\t\t\t\t[-66.854737, 18.355335],\n\t\t\t\t\t\t[-66.852063, 18.354626],\n\t\t\t\t\t\t[-66.851685, 18.353884],\n\t\t\t\t\t\t[-66.848462, 18.353682],\n\t\t\t\t\t\t[-66.846401, 18.351174],\n\t\t\t\t\t\t[-66.842901, 18.350373],\n\t\t\t\t\t\t[-66.836853, 18.348376],\n\t\t\t\t\t\t[-66.828738, 18.344375],\n\t\t\t\t\t\t[-66.824223, 18.342998],\n\t\t\t\t\t\t[-66.824794, 18.337546],\n\t\t\t\t\t\t[-66.824852, 18.333114],\n\t\t\t\t\t\t[-66.825428, 18.327709],\n\t\t\t\t\t\t[-66.826128, 18.323382]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72089\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"089\",\n\t\t\t\t\"NAME\": \"Luquillo\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 25.811000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-65.750179, 18.385050],\n\t\t\t\t\t\t[-65.742154, 18.380459],\n\t\t\t\t\t\t[-65.733567, 18.382211],\n\t\t\t\t\t\t[-65.699069, 18.368156],\n\t\t\t\t\t\t[-65.669636, 18.362102],\n\t\t\t\t\t\t[-65.753591, 18.296755],\n\t\t\t\t\t\t[-65.754723, 18.295230],\n\t\t\t\t\t\t[-65.756027, 18.294456],\n\t\t\t\t\t\t[-65.757383, 18.293022],\n\t\t\t\t\t\t[-65.757681, 18.291596],\n\t\t\t\t\t\t[-65.758861, 18.290604],\n\t\t\t\t\t\t[-65.750179, 18.385050]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72095\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"095\",\n\t\t\t\t\"NAME\": \"Maunabo\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 21.066000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-65.910537, 17.981855],\n\t\t\t\t\t\t[-65.988523, 18.058941],\n\t\t\t\t\t\t[-65.850913, 18.011954],\n\t\t\t\t\t\t[-65.870335, 18.006597],\n\t\t\t\t\t\t[-65.875122, 18.002826],\n\t\t\t\t\t\t[-65.884937, 17.988521],\n\t\t\t\t\t\t[-65.896102, 17.990260],\n\t\t\t\t\t\t[-65.905319, 17.983974],\n\t\t\t\t\t\t[-65.910537, 17.981855]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72101\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"101\",\n\t\t\t\t\"NAME\": \"Morovis\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 38.871000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-66.377712, 18.293976],\n\t\t\t\t\t\t[-66.455703, 18.257726],\n\t\t\t\t\t\t[-66.463211, 18.371473],\n\t\t\t\t\t\t[-66.459029, 18.371249],\n\t\t\t\t\t\t[-66.451578, 18.372214],\n\t\t\t\t\t\t[-66.443800, 18.371027],\n\t\t\t\t\t\t[-66.377058, 18.344246],\n\t\t\t\t\t\t[-66.374720, 18.344189],\n\t\t\t\t\t\t[-66.374295, 18.342625],\n\t\t\t\t\t\t[-66.371731, 18.340491],\n\t\t\t\t\t\t[-66.371131, 18.337902],\n\t\t\t\t\t\t[-66.367130, 18.335119],\n\t\t\t\t\t\t[-66.365272, 18.333229],\n\t\t\t\t\t\t[-66.372457, 18.309835],\n\t\t\t\t\t\t[-66.373312, 18.301937],\n\t\t\t\t\t\t[-66.376090, 18.299733],\n\t\t\t\t\t\t[-66.377712, 18.293976]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72103\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"103\",\n\t\t\t\t\"NAME\": \"Naguabo\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 51.661000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-65.739125, 18.173453],\n\t\t\t\t\t\t[-65.826063, 18.200408],\n\t\t\t\t\t\t[-65.831388, 18.214222],\n\t\t\t\t\t\t[-65.828789, 18.230243],\n\t\t\t\t\t\t[-65.822164, 18.244701],\n\t\t\t\t\t\t[-65.817246, 18.252327],\n\t\t\t\t\t\t[-65.815664, 18.262527],\n\t\t\t\t\t\t[-65.823769, 18.268738],\n\t\t\t\t\t\t[-65.824220, 18.273054],\n\t\t\t\t\t\t[-65.811424, 18.290141],\n\t\t\t\t\t\t[-65.784859, 18.294000],\n\t\t\t\t\t\t[-65.766831, 18.280004],\n\t\t\t\t\t\t[-65.662185, 18.207018],\n\t\t\t\t\t\t[-65.664127, 18.207136],\n\t\t\t\t\t\t[-65.690749, 18.194990],\n\t\t\t\t\t\t[-65.694515, 18.187011],\n\t\t\t\t\t\t[-65.691021, 18.178998],\n\t\t\t\t\t\t[-65.695856, 18.179324],\n\t\t\t\t\t\t[-65.710895, 18.186963],\n\t\t\t\t\t\t[-65.712533, 18.189146],\n\t\t\t\t\t\t[-65.717999, 18.190176],\n\t\t\t\t\t\t[-65.728471, 18.185588],\n\t\t\t\t\t\t[-65.734664, 18.180368],\n\t\t\t\t\t\t[-65.738834, 18.174066],\n\t\t\t\t\t\t[-65.739125, 18.173453]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72109\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"109\",\n\t\t\t\t\"NAME\": \"Patillas\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 46.699000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-66.019539, 17.978354],\n\t\t\t\t\t\t[-66.082263, 18.032958],\n\t\t\t\t\t\t[-66.053146, 18.107293],\n\t\t\t\t\t\t[-66.053208, 18.109526],\n\t\t\t\t\t\t[-66.051788, 18.109878],\n\t\t\t\t\t\t[-66.019442, 18.102576],\n\t\t\t\t\t\t[-66.019443, 18.083723],\n\t\t\t\t\t\t[-66.010245, 18.075565],\n\t\t\t\t\t\t[-66.010266, 18.067432],\n\t\t\t\t\t\t[-66.000072, 18.060275],\n\t\t\t\t\t\t[-65.988523, 18.058941],\n\t\t\t\t\t\t[-65.910537, 17.981855],\n\t\t\t\t\t\t[-65.924738, 17.976087],\n\t\t\t\t\t\t[-65.976611, 17.967669],\n\t\t\t\t\t\t[-65.984550, 17.969411],\n\t\t\t\t\t\t[-65.985358, 17.971854],\n\t\t\t\t\t\t[-65.995185, 17.978989],\n\t\t\t\t\t\t[-66.007731, 17.980541],\n\t\t\t\t\t\t[-66.017308, 17.979583],\n\t\t\t\t\t\t[-66.019539, 17.978354]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72117\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"117\",\n\t\t\t\t\"NAME\": \"Rinc�n\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 14.288000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-67.182852, 18.313026],\n\t\t\t\t\t\t[-67.195908, 18.307539],\n\t\t\t\t\t\t[-67.220709, 18.305700],\n\t\t\t\t\t\t[-67.225403, 18.296648],\n\t\t\t\t\t\t[-67.226081, 18.296722],\n\t\t\t\t\t\t[-67.235137, 18.299935],\n\t\t\t\t\t\t[-67.267484, 18.353149],\n\t\t\t\t\t\t[-67.271350, 18.362329],\n\t\t\t\t\t\t[-67.268259, 18.366989],\n\t\t\t\t\t\t[-67.260671, 18.370197],\n\t\t\t\t\t\t[-67.239090, 18.375318],\n\t\t\t\t\t\t[-67.182852, 18.313026]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72119\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"119\",\n\t\t\t\t\"NAME\": \"R�o Grande\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 60.623000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-65.828457, 18.423543],\n\t\t\t\t\t\t[-65.816691, 18.410663],\n\t\t\t\t\t\t[-65.794556, 18.402845],\n\t\t\t\t\t\t[-65.787666, 18.402544],\n\t\t\t\t\t\t[-65.774937, 18.413951],\n\t\t\t\t\t\t[-65.770530, 18.412940],\n\t\t\t\t\t\t[-65.769749, 18.409473],\n\t\t\t\t\t\t[-65.771695, 18.406277],\n\t\t\t\t\t\t[-65.750455, 18.385208],\n\t\t\t\t\t\t[-65.750179, 18.385050],\n\t\t\t\t\t\t[-65.758861, 18.290604],\n\t\t\t\t\t\t[-65.761818, 18.289268],\n\t\t\t\t\t\t[-65.766831, 18.280004],\n\t\t\t\t\t\t[-65.784859, 18.294000],\n\t\t\t\t\t\t[-65.811424, 18.290141],\n\t\t\t\t\t\t[-65.824220, 18.273054],\n\t\t\t\t\t\t[-65.831717, 18.271736],\n\t\t\t\t\t\t[-65.836387, 18.275246],\n\t\t\t\t\t\t[-65.867478, 18.378128],\n\t\t\t\t\t\t[-65.859635, 18.381868],\n\t\t\t\t\t\t[-65.855633, 18.395752],\n\t\t\t\t\t\t[-65.852538, 18.401700],\n\t\t\t\t\t\t[-65.843816, 18.405700],\n\t\t\t\t\t\t[-65.832623, 18.420692],\n\t\t\t\t\t\t[-65.828457, 18.423543]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72125\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"125\",\n\t\t\t\t\"NAME\": \"San Germ�n\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 54.498000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-67.086698, 18.151990],\n\t\t\t\t\t\t[-67.085920, 18.162400],\n\t\t\t\t\t\t[-67.072183, 18.173053],\n\t\t\t\t\t\t[-67.051461, 18.174053],\n\t\t\t\t\t\t[-67.044039, 18.169202],\n\t\t\t\t\t\t[-67.013844, 18.165874],\n\t\t\t\t\t\t[-67.009600, 18.158915],\n\t\t\t\t\t\t[-66.994529, 18.154774],\n\t\t\t\t\t\t[-66.977855, 18.143799],\n\t\t\t\t\t\t[-66.983337, 18.052518],\n\t\t\t\t\t\t[-67.109044, 18.056085],\n\t\t\t\t\t\t[-67.107110, 18.061780],\n\t\t\t\t\t\t[-67.099120, 18.067358],\n\t\t\t\t\t\t[-67.101267, 18.074203],\n\t\t\t\t\t\t[-67.105566, 18.073861],\n\t\t\t\t\t\t[-67.106123, 18.079693],\n\t\t\t\t\t\t[-67.104044, 18.098804],\n\t\t\t\t\t\t[-67.100492, 18.106395],\n\t\t\t\t\t\t[-67.092542, 18.106115],\n\t\t\t\t\t\t[-67.088155, 18.106136],\n\t\t\t\t\t\t[-67.082935, 18.106780],\n\t\t\t\t\t\t[-67.079880, 18.110680],\n\t\t\t\t\t\t[-67.078170, 18.114952],\n\t\t\t\t\t\t[-67.081658, 18.118290],\n\t\t\t\t\t\t[-67.085329, 18.120752],\n\t\t\t\t\t\t[-67.091960, 18.129903],\n\t\t\t\t\t\t[-67.092797, 18.136883],\n\t\t\t\t\t\t[-67.093340, 18.141064],\n\t\t\t\t\t\t[-67.092501, 18.145915],\n\t\t\t\t\t\t[-67.087787, 18.145535],\n\t\t\t\t\t\t[-67.084230, 18.148440],\n\t\t\t\t\t\t[-67.086698, 18.151990]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72131\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"131\",\n\t\t\t\t\"NAME\": \"San Sebasti�n\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 70.423000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-66.922020, 18.393204],\n\t\t\t\t\t\t[-66.919497, 18.378578],\n\t\t\t\t\t\t[-66.898900, 18.366108],\n\t\t\t\t\t\t[-66.897696, 18.365701],\n\t\t\t\t\t\t[-66.895865, 18.366425],\n\t\t\t\t\t\t[-66.894481, 18.366195],\n\t\t\t\t\t\t[-66.893339, 18.367089],\n\t\t\t\t\t\t[-66.907236, 18.253090],\n\t\t\t\t\t\t[-67.037935, 18.289705],\n\t\t\t\t\t\t[-67.040709, 18.300302],\n\t\t\t\t\t\t[-67.052583, 18.306655],\n\t\t\t\t\t\t[-67.027173, 18.393376],\n\t\t\t\t\t\t[-66.922020, 18.393204]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72137\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"137\",\n\t\t\t\t\"NAME\": \"Toa Baja\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 23.241000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-66.199032, 18.466163],\n\t\t\t\t\t\t[-66.192664, 18.466212],\n\t\t\t\t\t\t[-66.183886, 18.460506],\n\t\t\t\t\t\t[-66.179218, 18.455305],\n\t\t\t\t\t\t[-66.172315, 18.451462],\n\t\t\t\t\t\t[-66.159796, 18.451706],\n\t\t\t\t\t\t[-66.153037, 18.454457],\n\t\t\t\t\t\t[-66.143950, 18.459761],\n\t\t\t\t\t\t[-66.148318, 18.451163],\n\t\t\t\t\t\t[-66.154670, 18.445635],\n\t\t\t\t\t\t[-66.163774, 18.444673],\n\t\t\t\t\t\t[-66.165015, 18.437665],\n\t\t\t\t\t\t[-66.170096, 18.433586],\n\t\t\t\t\t\t[-66.169516, 18.430998],\n\t\t\t\t\t\t[-66.172653, 18.421050],\n\t\t\t\t\t\t[-66.198013, 18.414626],\n\t\t\t\t\t\t[-66.196980, 18.389289],\n\t\t\t\t\t\t[-66.234345, 18.401464],\n\t\t\t\t\t\t[-66.252554, 18.394187],\n\t\t\t\t\t\t[-66.199032, 18.466163]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72143\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"143\",\n\t\t\t\t\"NAME\": \"Vega Alta\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 27.728000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-66.315030, 18.474680],\n\t\t\t\t\t\t[-66.303663, 18.384077],\n\t\t\t\t\t\t[-66.314158, 18.380801],\n\t\t\t\t\t\t[-66.318764, 18.367411],\n\t\t\t\t\t\t[-66.365272, 18.333229],\n\t\t\t\t\t\t[-66.367130, 18.335119],\n\t\t\t\t\t\t[-66.371131, 18.337902],\n\t\t\t\t\t\t[-66.371731, 18.340491],\n\t\t\t\t\t\t[-66.374295, 18.342625],\n\t\t\t\t\t\t[-66.374720, 18.344189],\n\t\t\t\t\t\t[-66.377058, 18.344246],\n\t\t\t\t\t\t[-66.349647, 18.486335],\n\t\t\t\t\t\t[-66.337728, 18.485620],\n\t\t\t\t\t\t[-66.315477, 18.474724],\n\t\t\t\t\t\t[-66.315030, 18.474680]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51115\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"115\",\n\t\t\t\t\"NAME\": \"Mathews\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 85.929000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.437561, 37.514360],\n\t\t\t\t\t\t[-76.418786, 37.510385],\n\t\t\t\t\t\t[-76.404118, 37.535542],\n\t\t\t\t\t\t[-76.355084, 37.527364],\n\t\t\t\t\t\t[-76.360474, 37.519240],\n\t\t\t\t\t\t[-76.359378, 37.513426],\n\t\t\t\t\t\t[-76.352678, 37.504913],\n\t\t\t\t\t\t[-76.329470, 37.494920],\n\t\t\t\t\t\t[-76.306952, 37.497488],\n\t\t\t\t\t\t[-76.297739, 37.506863],\n\t\t\t\t\t\t[-76.296445, 37.511235],\n\t\t\t\t\t\t[-76.298456, 37.512677],\n\t\t\t\t\t\t[-76.297651, 37.515424],\n\t\t\t\t\t\t[-76.293599, 37.516499],\n\t\t\t\t\t\t[-76.288167, 37.514118],\n\t\t\t\t\t\t[-76.281043, 37.507821],\n\t\t\t\t\t\t[-76.265056, 37.481365],\n\t\t\t\t\t\t[-76.252415, 37.447274],\n\t\t\t\t\t\t[-76.250454, 37.421886],\n\t\t\t\t\t\t[-76.246617, 37.404122],\n\t\t\t\t\t\t[-76.245283, 37.386839],\n\t\t\t\t\t\t[-76.248460, 37.375135],\n\t\t\t\t\t\t[-76.258277, 37.362020],\n\t\t\t\t\t\t[-76.262407, 37.360786],\n\t\t\t\t\t\t[-76.264847, 37.357399],\n\t\t\t\t\t\t[-76.272888, 37.335174],\n\t\t\t\t\t\t[-76.272005, 37.322194],\n\t\t\t\t\t\t[-76.275552, 37.309964],\n\t\t\t\t\t\t[-76.282555, 37.319107],\n\t\t\t\t\t\t[-76.291324, 37.324145],\n\t\t\t\t\t\t[-76.308581, 37.329366],\n\t\t\t\t\t\t[-76.312050, 37.338088],\n\t\t\t\t\t\t[-76.337476, 37.364014],\n\t\t\t\t\t\t[-76.366751, 37.374495],\n\t\t\t\t\t\t[-76.387112, 37.385061],\n\t\t\t\t\t\t[-76.391437, 37.390284],\n\t\t\t\t\t\t[-76.393958, 37.395940],\n\t\t\t\t\t\t[-76.393125, 37.398068],\n\t\t\t\t\t\t[-76.404756, 37.400213],\n\t\t\t\t\t\t[-76.437561, 37.514360]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22095\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"095\",\n\t\t\t\t\"NAME\": \"St. John the Baptist\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 213.071000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.641998, 30.166430],\n\t\t\t\t\t\t[-90.632906, 30.219933],\n\t\t\t\t\t\t[-90.632811, 30.221409],\n\t\t\t\t\t\t[-90.558638, 30.193737],\n\t\t\t\t\t\t[-90.497899, 30.255946],\n\t\t\t\t\t\t[-90.401254, 30.285534],\n\t\t\t\t\t\t[-90.297375, 30.293658],\n\t\t\t\t\t\t[-90.277855, 30.230888],\n\t\t\t\t\t\t[-90.449133, 30.032863],\n\t\t\t\t\t\t[-90.538132, 30.016884],\n\t\t\t\t\t\t[-90.541943, 29.891522],\n\t\t\t\t\t\t[-90.656312, 29.889246],\n\t\t\t\t\t\t[-90.688850, 30.035953],\n\t\t\t\t\t\t[-90.641998, 30.166430]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22111\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"111\",\n\t\t\t\t\"NAME\": \"Union\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 876.988000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.065179, 32.723003],\n\t\t\t\t\t\t[-92.272313, 32.580975],\n\t\t\t\t\t\t[-92.415071, 32.582845],\n\t\t\t\t\t\t[-92.415050, 32.670056],\n\t\t\t\t\t\t[-92.518356, 32.670720],\n\t\t\t\t\t\t[-92.571295, 32.748579],\n\t\t\t\t\t\t[-92.725439, 32.759540],\n\t\t\t\t\t\t[-92.724743, 33.014347],\n\t\t\t\t\t\t[-92.723553, 33.014328],\n\t\t\t\t\t\t[-92.715884, 33.014398],\n\t\t\t\t\t\t[-92.711289, 33.014307],\n\t\t\t\t\t\t[-92.503776, 33.012161],\n\t\t\t\t\t\t[-92.501383, 33.012160],\n\t\t\t\t\t\t[-92.469762, 33.012010],\n\t\t\t\t\t\t[-92.370290, 33.010717],\n\t\t\t\t\t\t[-92.362865, 33.010628],\n\t\t\t\t\t\t[-92.335893, 33.010349],\n\t\t\t\t\t\t[-92.292664, 33.010103],\n\t\t\t\t\t\t[-92.222825, 33.009080],\n\t\t\t\t\t\t[-92.069105, 33.008163],\n\t\t\t\t\t\t[-92.065179, 32.723003]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21001\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"001\",\n\t\t\t\t\"NAME\": \"Adair\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 405.283000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.165174, 37.310396],\n\t\t\t\t\t\t[-85.056898, 37.257041],\n\t\t\t\t\t\t[-85.043316, 37.186028],\n\t\t\t\t\t\t[-85.205831, 36.996862],\n\t\t\t\t\t\t[-85.232026, 36.925069],\n\t\t\t\t\t\t[-85.451830, 36.938138],\n\t\t\t\t\t\t[-85.526881, 37.109450],\n\t\t\t\t\t\t[-85.380258, 37.168314],\n\t\t\t\t\t\t[-85.352771, 37.192432],\n\t\t\t\t\t\t[-85.314663, 37.240740],\n\t\t\t\t\t\t[-85.165174, 37.310396]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21005\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"005\",\n\t\t\t\t\"NAME\": \"Anderson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 201.832000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.152797, 37.897661],\n\t\t\t\t\t\t[-85.167834, 37.971809],\n\t\t\t\t\t\t[-85.101646, 38.037270],\n\t\t\t\t\t\t[-85.023711, 38.129052],\n\t\t\t\t\t\t[-84.864908, 38.116926],\n\t\t\t\t\t\t[-84.796327, 37.970088],\n\t\t\t\t\t\t[-84.937780, 37.952826],\n\t\t\t\t\t\t[-85.030528, 37.891538],\n\t\t\t\t\t\t[-85.152797, 37.897661]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21007\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"007\",\n\t\t\t\t\"NAME\": \"Ballard\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 246.659000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.100794, 36.944006],\n\t\t\t\t\t\t[-89.132685, 36.982200],\n\t\t\t\t\t\t[-89.166447, 37.003337],\n\t\t\t\t\t\t[-89.173595, 37.011409],\n\t\t\t\t\t\t[-89.178975, 37.020928],\n\t\t\t\t\t\t[-89.182509, 37.037275],\n\t\t\t\t\t\t[-89.181369, 37.046305],\n\t\t\t\t\t\t[-89.175725, 37.062069],\n\t\t\t\t\t\t[-89.171881, 37.068184],\n\t\t\t\t\t\t[-89.168087, 37.074218],\n\t\t\t\t\t\t[-89.086526, 37.165602],\n\t\t\t\t\t\t[-89.041263, 37.202881],\n\t\t\t\t\t\t[-89.000968, 37.224401],\n\t\t\t\t\t\t[-88.983260, 37.228685],\n\t\t\t\t\t\t[-88.966831, 37.229891],\n\t\t\t\t\t\t[-88.933399, 37.225007],\n\t\t\t\t\t\t[-88.815952, 36.954100],\n\t\t\t\t\t\t[-88.988811, 36.919491],\n\t\t\t\t\t\t[-89.100794, 36.944006]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21019\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"019\",\n\t\t\t\t\"NAME\": \"Boyd\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 159.864000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.665485, 38.505734],\n\t\t\t\t\t\t[-82.593673, 38.421809],\n\t\t\t\t\t\t[-82.596281, 38.417681],\n\t\t\t\t\t\t[-82.597113, 38.412881],\n\t\t\t\t\t\t[-82.595369, 38.382722],\n\t\t\t\t\t\t[-82.595382, 38.382712],\n\t\t\t\t\t\t[-82.593008, 38.375082],\n\t\t\t\t\t\t[-82.571877, 38.315781],\n\t\t\t\t\t\t[-82.574656, 38.263873],\n\t\t\t\t\t\t[-82.578254, 38.254809],\n\t\t\t\t\t\t[-82.584001, 38.246371],\n\t\t\t\t\t\t[-82.594970, 38.245453],\n\t\t\t\t\t\t[-82.604230, 38.247303],\n\t\t\t\t\t\t[-82.794206, 38.243772],\n\t\t\t\t\t\t[-82.771737, 38.362588],\n\t\t\t\t\t\t[-82.817454, 38.373935],\n\t\t\t\t\t\t[-82.665485, 38.505734]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21037\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"037\",\n\t\t\t\t\"NAME\": \"Campbell\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 151.308000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.506082, 39.095081],\n\t\t\t\t\t\t[-84.502062, 39.096641],\n\t\t\t\t\t\t[-84.493743, 39.102460],\n\t\t\t\t\t\t[-84.432841, 39.094261],\n\t\t\t\t\t\t[-84.326539, 39.027463],\n\t\t\t\t\t\t[-84.319936, 39.022081],\n\t\t\t\t\t\t[-84.313680, 39.016981],\n\t\t\t\t\t\t[-84.304698, 39.006455],\n\t\t\t\t\t\t[-84.234453, 38.893226],\n\t\t\t\t\t\t[-84.232132, 38.880483],\n\t\t\t\t\t\t[-84.232478, 38.874638],\n\t\t\t\t\t\t[-84.418107, 38.806596],\n\t\t\t\t\t\t[-84.463400, 38.852059],\n\t\t\t\t\t\t[-84.450800, 38.993609],\n\t\t\t\t\t\t[-84.506082, 39.095081]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21049\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"049\",\n\t\t\t\t\"NAME\": \"Clark\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 252.463000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.337393, 37.892007],\n\t\t\t\t\t\t[-84.286461, 38.067028],\n\t\t\t\t\t\t[-84.080527, 38.115118],\n\t\t\t\t\t\t[-84.051053, 38.070499],\n\t\t\t\t\t\t[-83.966310, 37.930768],\n\t\t\t\t\t\t[-84.001967, 37.837592],\n\t\t\t\t\t\t[-84.080337, 37.853066],\n\t\t\t\t\t\t[-84.337393, 37.892007]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21061\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"061\",\n\t\t\t\t\"NAME\": \"Edmonson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 302.883000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.469126, 37.321099],\n\t\t\t\t\t\t[-86.157589, 37.335649],\n\t\t\t\t\t\t[-86.049133, 37.215285],\n\t\t\t\t\t\t[-86.056443, 37.167208],\n\t\t\t\t\t\t[-86.074267, 37.053285],\n\t\t\t\t\t\t[-86.113512, 37.061072],\n\t\t\t\t\t\t[-86.218607, 37.104029],\n\t\t\t\t\t\t[-86.281750, 37.080597],\n\t\t\t\t\t\t[-86.399165, 37.169896],\n\t\t\t\t\t\t[-86.469126, 37.321099]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21069\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"069\",\n\t\t\t\t\"NAME\": \"Fleming\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 348.542000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.646546, 38.170963],\n\t\t\t\t\t\t[-83.725393, 38.292584],\n\t\t\t\t\t\t[-83.848355, 38.296949],\n\t\t\t\t\t\t[-83.980031, 38.439159],\n\t\t\t\t\t\t[-83.970010, 38.463997],\n\t\t\t\t\t\t[-83.930348, 38.492278],\n\t\t\t\t\t\t[-83.859280, 38.456348],\n\t\t\t\t\t\t[-83.641852, 38.525381],\n\t\t\t\t\t\t[-83.579966, 38.429935],\n\t\t\t\t\t\t[-83.452848, 38.381799],\n\t\t\t\t\t\t[-83.507160, 38.269447],\n\t\t\t\t\t\t[-83.635195, 38.187525],\n\t\t\t\t\t\t[-83.638854, 38.178270],\n\t\t\t\t\t\t[-83.646546, 38.170963]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21081\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"081\",\n\t\t\t\t\"NAME\": \"Grant\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 257.965000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.615740, 38.802192],\n\t\t\t\t\t\t[-84.597775, 38.791170],\n\t\t\t\t\t\t[-84.532288, 38.791937],\n\t\t\t\t\t\t[-84.476299, 38.542723],\n\t\t\t\t\t\t[-84.557375, 38.492917],\n\t\t\t\t\t\t[-84.560674, 38.492378],\n\t\t\t\t\t\t[-84.580539, 38.473039],\n\t\t\t\t\t\t[-84.774322, 38.618594],\n\t\t\t\t\t\t[-84.785788, 38.720459],\n\t\t\t\t\t\t[-84.780766, 38.765208],\n\t\t\t\t\t\t[-84.660107, 38.777293],\n\t\t\t\t\t\t[-84.656167, 38.790117],\n\t\t\t\t\t\t[-84.630007, 38.802901],\n\t\t\t\t\t\t[-84.615740, 38.802192]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21093\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"093\",\n\t\t\t\t\"NAME\": \"Hardin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 623.278000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.047598, 37.449933],\n\t\t\t\t\t\t[-86.114095, 37.567131],\n\t\t\t\t\t\t[-86.275270, 37.593519],\n\t\t\t\t\t\t[-86.151285, 37.798878],\n\t\t\t\t\t\t[-86.007432, 37.818439],\n\t\t\t\t\t\t[-85.975948, 37.875793],\n\t\t\t\t\t\t[-85.998609, 37.997775],\n\t\t\t\t\t\t[-85.951467, 38.005608],\n\t\t\t\t\t\t[-85.947952, 38.007083],\n\t\t\t\t\t\t[-85.945044, 38.002426],\n\t\t\t\t\t\t[-85.938321, 37.998756],\n\t\t\t\t\t\t[-85.854871, 37.945385],\n\t\t\t\t\t\t[-85.838198, 37.879284],\n\t\t\t\t\t\t[-85.737777, 37.811790],\n\t\t\t\t\t\t[-85.680488, 37.732284],\n\t\t\t\t\t\t[-85.876006, 37.543259],\n\t\t\t\t\t\t[-85.892804, 37.440308],\n\t\t\t\t\t\t[-86.047598, 37.449933]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21109\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"109\",\n\t\t\t\t\"NAME\": \"Jackson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 345.201000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.784975, 37.348717],\n\t\t\t\t\t\t[-83.943718, 37.250551],\n\t\t\t\t\t\t[-84.137898, 37.319759],\n\t\t\t\t\t\t[-84.199489, 37.522858],\n\t\t\t\t\t\t[-84.090364, 37.566227],\n\t\t\t\t\t\t[-83.965244, 37.581421],\n\t\t\t\t\t\t[-83.905570, 37.542856],\n\t\t\t\t\t\t[-83.900265, 37.535795],\n\t\t\t\t\t\t[-83.893514, 37.531119],\n\t\t\t\t\t\t[-83.893100, 37.526583],\n\t\t\t\t\t\t[-83.888697, 37.522189],\n\t\t\t\t\t\t[-83.885262, 37.517688],\n\t\t\t\t\t\t[-83.784975, 37.348717]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21125\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"125\",\n\t\t\t\t\"NAME\": \"Laurel\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 433.953000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.871315, 37.054919],\n\t\t\t\t\t\t[-83.959385, 36.977128],\n\t\t\t\t\t\t[-84.091853, 36.955992],\n\t\t\t\t\t\t[-84.297416, 36.945931],\n\t\t\t\t\t\t[-84.345872, 36.939496],\n\t\t\t\t\t\t[-84.368212, 36.945588],\n\t\t\t\t\t\t[-84.358024, 36.959400],\n\t\t\t\t\t\t[-84.289076, 37.151740],\n\t\t\t\t\t\t[-84.253696, 37.239516],\n\t\t\t\t\t\t[-84.137898, 37.319759],\n\t\t\t\t\t\t[-83.943718, 37.250551],\n\t\t\t\t\t\t[-83.968990, 37.174794],\n\t\t\t\t\t\t[-83.871315, 37.054919]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21131\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"131\",\n\t\t\t\t\"NAME\": \"Leslie\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 400.844000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.507886, 37.235877],\n\t\t\t\t\t\t[-83.460992, 37.293848],\n\t\t\t\t\t\t[-83.351774, 37.295682],\n\t\t\t\t\t\t[-83.324620, 37.225561],\n\t\t\t\t\t\t[-83.201887, 37.174130],\n\t\t\t\t\t\t[-83.182104, 37.021115],\n\t\t\t\t\t\t[-83.260020, 36.968951],\n\t\t\t\t\t\t[-83.489813, 36.895413],\n\t\t\t\t\t\t[-83.500388, 36.895504],\n\t\t\t\t\t\t[-83.504810, 36.903917],\n\t\t\t\t\t\t[-83.489423, 36.911302],\n\t\t\t\t\t\t[-83.494254, 36.919621],\n\t\t\t\t\t\t[-83.509482, 36.923375],\n\t\t\t\t\t\t[-83.509083, 36.938509],\n\t\t\t\t\t\t[-83.551303, 37.167510],\n\t\t\t\t\t\t[-83.507886, 37.235877]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72075\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"075\",\n\t\t\t\t\"NAME\": \"Juana D�az\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 60.277000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-66.450368, 17.983226],\n\t\t\t\t\t\t[-66.454888, 17.986784],\n\t\t\t\t\t\t[-66.461342, 17.990273],\n\t\t\t\t\t\t[-66.491396, 17.990262],\n\t\t\t\t\t\t[-66.510143, 17.985618],\n\t\t\t\t\t\t[-66.540537, 17.975476],\n\t\t\t\t\t\t[-66.552766, 18.152057],\n\t\t\t\t\t\t[-66.552037, 18.152237],\n\t\t\t\t\t\t[-66.551267, 18.152848],\n\t\t\t\t\t\t[-66.550433, 18.153094],\n\t\t\t\t\t\t[-66.549955, 18.152516],\n\t\t\t\t\t\t[-66.549188, 18.152507],\n\t\t\t\t\t\t[-66.548160, 18.152966],\n\t\t\t\t\t\t[-66.547220, 18.153130],\n\t\t\t\t\t\t[-66.544281, 18.147619],\n\t\t\t\t\t\t[-66.534862, 18.152293],\n\t\t\t\t\t\t[-66.521899, 18.151954],\n\t\t\t\t\t\t[-66.528745, 18.100673],\n\t\t\t\t\t\t[-66.430314, 18.082053],\n\t\t\t\t\t\t[-66.430347, 18.077135],\n\t\t\t\t\t\t[-66.427541, 18.071666],\n\t\t\t\t\t\t[-66.431538, 18.063519],\n\t\t\t\t\t\t[-66.428167, 18.054931],\n\t\t\t\t\t\t[-66.424330, 18.052940],\n\t\t\t\t\t\t[-66.426989, 18.042627],\n\t\t\t\t\t\t[-66.450368, 17.983226]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40037\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"037\",\n\t\t\t\t\"NAME\": \"Creek\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 950.141000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.033118, 35.856824],\n\t\t\t\t\t\t[-96.192482, 35.857021],\n\t\t\t\t\t\t[-96.192563, 35.639087],\n\t\t\t\t\t\t[-96.620648, 35.639005],\n\t\t\t\t\t\t[-96.621097, 35.941519],\n\t\t\t\t\t\t[-96.621441, 36.159929],\n\t\t\t\t\t\t[-96.621333, 36.163553],\n\t\t\t\t\t\t[-96.297888, 36.162279],\n\t\t\t\t\t\t[-96.297786, 36.075779],\n\t\t\t\t\t\t[-96.029583, 36.075366],\n\t\t\t\t\t\t[-96.029544, 35.988387],\n\t\t\t\t\t\t[-96.033118, 35.856824]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40047\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"047\",\n\t\t\t\t\"NAME\": \"Garfield\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1058.466000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.462459, 36.593627],\n\t\t\t\t\t\t[-97.461603, 36.593637],\n\t\t\t\t\t\t[-97.460792, 36.164462],\n\t\t\t\t\t\t[-97.675617, 36.164663],\n\t\t\t\t\t\t[-98.103904, 36.164877],\n\t\t\t\t\t\t[-98.104427, 36.463105],\n\t\t\t\t\t\t[-98.104286, 36.593578],\n\t\t\t\t\t\t[-97.462459, 36.593627]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37183\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"183\",\n\t\t\t\t\"NAME\": \"Wake\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 835.219000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.254903, 35.817730],\n\t\t\t\t\t\t[-78.473733, 35.701551],\n\t\t\t\t\t\t[-78.566633, 35.628950],\n\t\t\t\t\t\t[-78.708629, 35.519081],\n\t\t\t\t\t\t[-78.913296, 35.583064],\n\t\t\t\t\t\t[-78.995054, 35.610233],\n\t\t\t\t\t\t[-78.971335, 35.675614],\n\t\t\t\t\t\t[-78.909427, 35.842941],\n\t\t\t\t\t\t[-78.906170, 35.867912],\n\t\t\t\t\t\t[-78.831781, 35.867314],\n\t\t\t\t\t\t[-78.697930, 36.012306],\n\t\t\t\t\t\t[-78.749000, 36.071246],\n\t\t\t\t\t\t[-78.546497, 36.021804],\n\t\t\t\t\t\t[-78.307314, 35.896587],\n\t\t\t\t\t\t[-78.254903, 35.817730]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37187\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"187\",\n\t\t\t\t\"NAME\": \"Washington\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 348.135000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.692376, 35.945342],\n\t\t\t\t\t\t[-76.691766, 35.944566],\n\t\t\t\t\t\t[-76.673865, 35.935089],\n\t\t\t\t\t\t[-76.667547, 35.933509],\n\t\t\t\t\t\t[-76.657017, 35.935089],\n\t\t\t\t\t\t[-76.608052, 35.936668],\n\t\t\t\t\t\t[-76.603840, 35.939827],\n\t\t\t\t\t\t[-76.586992, 35.941933],\n\t\t\t\t\t\t[-76.528551, 35.944039],\n\t\t\t\t\t\t[-76.507491, 35.949831],\n\t\t\t\t\t\t[-76.496961, 35.955096],\n\t\t\t\t\t\t[-76.473795, 35.960888],\n\t\t\t\t\t\t[-76.460632, 35.970365],\n\t\t\t\t\t\t[-76.398242, 35.984317],\n\t\t\t\t\t\t[-76.389818, 35.980105],\n\t\t\t\t\t\t[-76.381920, 35.971681],\n\t\t\t\t\t\t[-76.381394, 35.962730],\n\t\t\t\t\t\t[-76.365210, 35.944697],\n\t\t\t\t\t\t[-76.353444, 35.861353],\n\t\t\t\t\t\t[-76.405993, 35.785045],\n\t\t\t\t\t\t[-76.395283, 35.697469],\n\t\t\t\t\t\t[-76.546091, 35.705033],\n\t\t\t\t\t\t[-76.638031, 35.705233],\n\t\t\t\t\t\t[-76.845119, 35.705409],\n\t\t\t\t\t\t[-76.760842, 35.864822],\n\t\t\t\t\t\t[-76.692376, 35.945342]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US38003\",\n\t\t\t\t\"STATE\": \"38\",\n\t\t\t\t\"COUNTY\": \"003\",\n\t\t\t\t\"NAME\": \"Barnes\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1491.554000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.033862, 46.630727],\n\t\t\t\t\t\t[-98.439056, 46.631120],\n\t\t\t\t\t\t[-98.439466, 46.979658],\n\t\t\t\t\t\t[-98.467530, 46.979594],\n\t\t\t\t\t\t[-98.467476, 47.240453],\n\t\t\t\t\t\t[-97.961208, 47.240512],\n\t\t\t\t\t\t[-97.706034, 47.239978],\n\t\t\t\t\t\t[-97.706027, 46.978558],\n\t\t\t\t\t\t[-97.681508, 46.978481],\n\t\t\t\t\t\t[-97.682006, 46.629928],\n\t\t\t\t\t\t[-98.033862, 46.630727]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US38013\",\n\t\t\t\t\"STATE\": \"38\",\n\t\t\t\t\"COUNTY\": \"013\",\n\t\t\t\t\"NAME\": \"Burke\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1103.568000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-102.938793, 48.998998],\n\t\t\t\t\t\t[-102.216993, 48.998553],\n\t\t\t\t\t\t[-102.211301, 48.998554],\n\t\t\t\t\t\t[-102.151847, 48.998798],\n\t\t\t\t\t\t[-102.131614, 48.998842],\n\t\t\t\t\t\t[-102.021144, 48.999015],\n\t\t\t\t\t\t[-102.021655, 48.807108],\n\t\t\t\t\t\t[-102.152164, 48.807200],\n\t\t\t\t\t\t[-102.152545, 48.720294],\n\t\t\t\t\t\t[-102.233600, 48.720290],\n\t\t\t\t\t\t[-102.233892, 48.546339],\n\t\t\t\t\t\t[-102.885763, 48.546390],\n\t\t\t\t\t\t[-102.885775, 48.560628],\n\t\t\t\t\t\t[-102.886015, 48.561179],\n\t\t\t\t\t\t[-102.885775, 48.633298],\n\t\t\t\t\t\t[-102.939932, 48.720469],\n\t\t\t\t\t\t[-102.938793, 48.998998]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US38025\",\n\t\t\t\t\"STATE\": \"38\",\n\t\t\t\t\"COUNTY\": \"025\",\n\t\t\t\t\"NAME\": \"Dunn\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2008.460000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-103.099197, 47.328714],\n\t\t\t\t\t\t[-103.099867, 47.674416],\n\t\t\t\t\t\t[-102.642766, 47.673911],\n\t\t\t\t\t\t[-102.642266, 47.823713],\n\t\t\t\t\t\t[-102.561965, 47.780111],\n\t\t\t\t\t\t[-102.385758, 47.758008],\n\t\t\t\t\t\t[-102.260951, 47.781409],\n\t\t\t\t\t\t[-102.265452, 47.624307],\n\t\t\t\t\t\t[-102.205350, 47.574506],\n\t\t\t\t\t\t[-102.205601, 47.328071],\n\t\t\t\t\t\t[-102.144453, 47.328079],\n\t\t\t\t\t\t[-102.144771, 47.010307],\n\t\t\t\t\t\t[-102.525463, 47.010240],\n\t\t\t\t\t\t[-102.525462, 46.981307],\n\t\t\t\t\t\t[-103.032681, 46.980580],\n\t\t\t\t\t\t[-103.032569, 47.328692],\n\t\t\t\t\t\t[-103.099197, 47.328714]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US38041\",\n\t\t\t\t\"STATE\": \"38\",\n\t\t\t\t\"COUNTY\": \"041\",\n\t\t\t\t\"NAME\": \"Hettinger\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1132.221000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-102.928003, 46.630065],\n\t\t\t\t\t\t[-102.096585, 46.631024],\n\t\t\t\t\t\t[-102.050986, 46.630871],\n\t\t\t\t\t\t[-102.046929, 46.283606],\n\t\t\t\t\t\t[-101.997888, 46.205480],\n\t\t\t\t\t\t[-102.497475, 46.206077],\n\t\t\t\t\t\t[-102.497449, 46.283196],\n\t\t\t\t\t\t[-102.924547, 46.281519],\n\t\t\t\t\t\t[-102.924509, 46.282589],\n\t\t\t\t\t\t[-102.928003, 46.630065]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US38055\",\n\t\t\t\t\"STATE\": \"38\",\n\t\t\t\t\"COUNTY\": \"055\",\n\t\t\t\t\"NAME\": \"McLean\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2110.876000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.965156, 47.156631],\n\t\t\t\t\t\t[-100.977629, 47.249992],\n\t\t\t\t\t\t[-101.060424, 47.293293],\n\t\t\t\t\t\t[-101.257031, 47.264895],\n\t\t\t\t\t\t[-101.345735, 47.291897],\n\t\t\t\t\t\t[-101.362536, 47.367998],\n\t\t\t\t\t\t[-101.440139, 47.477299],\n\t\t\t\t\t\t[-101.370866, 47.518696],\n\t\t\t\t\t\t[-101.428037, 47.561986],\n\t\t\t\t\t\t[-101.641696, 47.528379],\n\t\t\t\t\t\t[-101.707537, 47.538278],\n\t\t\t\t\t\t[-101.826148, 47.494402],\n\t\t\t\t\t\t[-102.036648, 47.572705],\n\t\t\t\t\t\t[-102.205350, 47.574506],\n\t\t\t\t\t\t[-102.265452, 47.624307],\n\t\t\t\t\t\t[-102.260951, 47.781409],\n\t\t\t\t\t\t[-102.385758, 47.758008],\n\t\t\t\t\t\t[-102.385565, 47.847750],\n\t\t\t\t\t\t[-101.871862, 47.847589],\n\t\t\t\t\t\t[-100.971325, 47.848703],\n\t\t\t\t\t\t[-100.585161, 47.847480],\n\t\t\t\t\t\t[-100.585106, 47.673912],\n\t\t\t\t\t\t[-100.672262, 47.674128],\n\t\t\t\t\t\t[-100.673445, 47.327720],\n\t\t\t\t\t\t[-100.749334, 47.327685],\n\t\t\t\t\t\t[-100.749370, 47.157245],\n\t\t\t\t\t\t[-100.965156, 47.156631]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US38069\",\n\t\t\t\t\"STATE\": \"38\",\n\t\t\t\t\"COUNTY\": \"069\",\n\t\t\t\t\"NAME\": \"Pierce\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1018.600000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.492919, 48.370946],\n\t\t\t\t\t\t[-99.846613, 48.371298],\n\t\t\t\t\t\t[-99.848222, 48.021424],\n\t\t\t\t\t\t[-99.812133, 48.021451],\n\t\t\t\t\t\t[-99.812167, 47.847257],\n\t\t\t\t\t\t[-100.069206, 47.847301],\n\t\t\t\t\t\t[-100.164591, 47.847465],\n\t\t\t\t\t\t[-100.166099, 47.847581],\n\t\t\t\t\t\t[-100.197996, 47.847600],\n\t\t\t\t\t\t[-100.197558, 48.021857],\n\t\t\t\t\t\t[-100.237092, 48.021866],\n\t\t\t\t\t\t[-100.237332, 48.371246],\n\t\t\t\t\t\t[-100.276401, 48.371334],\n\t\t\t\t\t\t[-100.276660, 48.544813],\n\t\t\t\t\t\t[-100.145858, 48.545211],\n\t\t\t\t\t\t[-99.493189, 48.544834],\n\t\t\t\t\t\t[-99.493356, 48.373675],\n\t\t\t\t\t\t[-99.492919, 48.370946]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US38087\",\n\t\t\t\t\"STATE\": \"38\",\n\t\t\t\t\"COUNTY\": \"087\",\n\t\t\t\t\"NAME\": \"Slope\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1214.922000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-104.045335, 46.540929],\n\t\t\t\t\t\t[-103.800881, 46.540747],\n\t\t\t\t\t\t[-103.800825, 46.629563],\n\t\t\t\t\t\t[-103.609210, 46.629797],\n\t\t\t\t\t\t[-103.231566, 46.629918],\n\t\t\t\t\t\t[-102.928003, 46.630065],\n\t\t\t\t\t\t[-102.924509, 46.282589],\n\t\t\t\t\t\t[-102.924547, 46.281519],\n\t\t\t\t\t\t[-102.969946, 46.281144],\n\t\t\t\t\t\t[-102.995454, 46.280713],\n\t\t\t\t\t\t[-104.045633, 46.280188],\n\t\t\t\t\t\t[-104.045469, 46.324545],\n\t\t\t\t\t\t[-104.045462, 46.341895],\n\t\t\t\t\t\t[-104.045335, 46.540929]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US38095\",\n\t\t\t\t\"STATE\": \"38\",\n\t\t\t\t\"COUNTY\": \"095\",\n\t\t\t\t\"NAME\": \"Towner\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1024.561000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.999819, 48.999769],\n\t\t\t\t\t\t[-98.999890, 48.718129],\n\t\t\t\t\t\t[-98.970368, 48.718089],\n\t\t\t\t\t\t[-98.970392, 48.544232],\n\t\t\t\t\t\t[-98.970975, 48.370472],\n\t\t\t\t\t\t[-99.200306, 48.370658],\n\t\t\t\t\t\t[-99.492919, 48.370946],\n\t\t\t\t\t\t[-99.493356, 48.373675],\n\t\t\t\t\t\t[-99.493189, 48.544834],\n\t\t\t\t\t\t[-99.493002, 48.718359],\n\t\t\t\t\t\t[-99.525895, 48.718384],\n\t\t\t\t\t\t[-99.525700, 48.999423],\n\t\t\t\t\t\t[-98.999819, 48.999769]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39009\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"009\",\n\t\t\t\t\"NAME\": \"Athens\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 503.598000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.055779, 39.460053],\n\t\t\t\t\t\t[-81.844863, 39.450216],\n\t\t\t\t\t\t[-81.853668, 39.318165],\n\t\t\t\t\t\t[-81.721808, 39.269597],\n\t\t\t\t\t\t[-81.721551, 39.212448],\n\t\t\t\t\t\t[-81.740061, 39.190652],\n\t\t\t\t\t\t[-81.749853, 39.186489],\n\t\t\t\t\t\t[-81.749689, 39.180742],\n\t\t\t\t\t\t[-82.268583, 39.203760],\n\t\t\t\t\t\t[-82.263952, 39.253289],\n\t\t\t\t\t\t[-82.263767, 39.253786],\n\t\t\t\t\t\t[-82.263645, 39.255898],\n\t\t\t\t\t\t[-82.263682, 39.256194],\n\t\t\t\t\t\t[-82.260243, 39.292915],\n\t\t\t\t\t\t[-82.298476, 39.294996],\n\t\t\t\t\t\t[-82.289663, 39.384195],\n\t\t\t\t\t\t[-82.280410, 39.472906],\n\t\t\t\t\t\t[-82.167379, 39.466307],\n\t\t\t\t\t\t[-82.159161, 39.556574],\n\t\t\t\t\t\t[-82.047528, 39.550825],\n\t\t\t\t\t\t[-82.055779, 39.460053]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39021\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"021\",\n\t\t\t\t\"NAME\": \"Champaign\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 428.669000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.551338, 40.229370],\n\t\t\t\t\t\t[-83.494498, 40.225467],\n\t\t\t\t\t\t[-83.503714, 40.111468],\n\t\t\t\t\t\t[-83.516155, 40.010188],\n\t\t\t\t\t\t[-84.036069, 40.040182],\n\t\t\t\t\t\t[-84.022919, 40.183945],\n\t\t\t\t\t\t[-84.014763, 40.273459],\n\t\t\t\t\t\t[-83.551338, 40.229370]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54109\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"109\",\n\t\t\t\t\"NAME\": \"Wyoming\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 499.453000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.514228, 37.791211],\n\t\t\t\t\t\t[-81.427781, 37.749352],\n\t\t\t\t\t\t[-81.304130, 37.546564],\n\t\t\t\t\t\t[-81.222121, 37.510416],\n\t\t\t\t\t\t[-81.311201, 37.424509],\n\t\t\t\t\t\t[-81.465845, 37.484703],\n\t\t\t\t\t\t[-81.654431, 37.523312],\n\t\t\t\t\t\t[-81.729433, 37.494585],\n\t\t\t\t\t\t[-81.855939, 37.548910],\n\t\t\t\t\t\t[-81.802937, 37.660508],\n\t\t\t\t\t\t[-81.701734, 37.701409],\n\t\t\t\t\t\t[-81.764737, 37.752108],\n\t\t\t\t\t\t[-81.607532, 37.788709],\n\t\t\t\t\t\t[-81.514228, 37.791211]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55015\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"015\",\n\t\t\t\t\"NAME\": \"Calumet\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 318.236000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.404070, 44.244102],\n\t\t\t\t\t\t[-88.354532, 44.243863],\n\t\t\t\t\t\t[-88.351301, 44.243768],\n\t\t\t\t\t\t[-88.346334, 44.243718],\n\t\t\t\t\t\t[-88.303974, 44.243335],\n\t\t\t\t\t\t[-88.192611, 44.241947],\n\t\t\t\t\t\t[-88.043240, 44.241018],\n\t\t\t\t\t\t[-88.041794, 43.891692],\n\t\t\t\t\t\t[-88.162274, 43.891511],\n\t\t\t\t\t\t[-88.161654, 43.937683],\n\t\t\t\t\t\t[-88.314948, 43.937665],\n\t\t\t\t\t\t[-88.404187, 43.938200],\n\t\t\t\t\t\t[-88.404425, 44.209254],\n\t\t\t\t\t\t[-88.404043, 44.226903],\n\t\t\t\t\t\t[-88.404070, 44.244102]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55027\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"027\",\n\t\t\t\t\"NAME\": \"Dodge\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 875.625000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.832098, 43.197897],\n\t\t\t\t\t\t[-89.008920, 43.197721],\n\t\t\t\t\t\t[-89.009139, 43.284830],\n\t\t\t\t\t\t[-89.006848, 43.633045],\n\t\t\t\t\t\t[-88.886052, 43.633540],\n\t\t\t\t\t\t[-88.401041, 43.630933],\n\t\t\t\t\t\t[-88.400426, 43.543532],\n\t\t\t\t\t\t[-88.417987, 43.194697],\n\t\t\t\t\t\t[-88.535843, 43.196048],\n\t\t\t\t\t\t[-88.832098, 43.197897]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US49027\",\n\t\t\t\t\"STATE\": \"49\",\n\t\t\t\t\"COUNTY\": \"027\",\n\t\t\t\t\"NAME\": \"Millard\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 6572.425000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-112.354345, 39.553871],\n\t\t\t\t\t\t[-112.220362, 39.554054],\n\t\t\t\t\t\t[-112.195578, 39.329600],\n\t\t\t\t\t\t[-112.015677, 39.314455],\n\t\t\t\t\t\t[-112.014198, 39.045355],\n\t\t\t\t\t\t[-112.065343, 38.957677],\n\t\t\t\t\t\t[-112.132228, 38.956716],\n\t\t\t\t\t\t[-112.224831, 38.865105],\n\t\t\t\t\t\t[-112.218662, 38.727674],\n\t\t\t\t\t\t[-112.309841, 38.676233],\n\t\t\t\t\t\t[-112.447764, 38.681162],\n\t\t\t\t\t\t[-112.515196, 38.572325],\n\t\t\t\t\t\t[-112.515188, 38.573703],\n\t\t\t\t\t\t[-112.919308, 38.574709],\n\t\t\t\t\t\t[-112.919362, 38.576529],\n\t\t\t\t\t\t[-114.050154, 38.572920],\n\t\t\t\t\t\t[-114.049893, 38.677365],\n\t\t\t\t\t\t[-114.047728, 39.542742],\n\t\t\t\t\t\t[-113.815748, 39.544097],\n\t\t\t\t\t\t[-113.815570, 39.552624],\n\t\t\t\t\t\t[-112.462119, 39.552449],\n\t\t\t\t\t\t[-112.354345, 39.553871]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US49033\",\n\t\t\t\t\"STATE\": \"49\",\n\t\t\t\t\"COUNTY\": \"033\",\n\t\t\t\t\"NAME\": \"Rich\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1028.775000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-111.046689, 42.001567],\n\t\t\t\t\t\t[-111.046402, 41.579845],\n\t\t\t\t\t\t[-111.046264, 41.377731],\n\t\t\t\t\t\t[-111.046600, 41.360692],\n\t\t\t\t\t\t[-111.046551, 41.251716],\n\t\t\t\t\t\t[-111.264820, 41.144253],\n\t\t\t\t\t\t[-111.221378, 41.212852],\n\t\t\t\t\t\t[-111.331662, 41.357364],\n\t\t\t\t\t\t[-111.420560, 41.361370],\n\t\t\t\t\t\t[-111.510839, 41.423100],\n\t\t\t\t\t\t[-111.442949, 41.531365],\n\t\t\t\t\t\t[-111.426855, 41.677864],\n\t\t\t\t\t\t[-111.471321, 41.928157],\n\t\t\t\t\t\t[-111.507264, 41.999518],\n\t\t\t\t\t\t[-111.425535, 42.000840],\n\t\t\t\t\t\t[-111.420898, 42.000793],\n\t\t\t\t\t\t[-111.415873, 42.000748],\n\t\t\t\t\t\t[-111.046689, 42.001567]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US49041\",\n\t\t\t\t\"STATE\": \"49\",\n\t\t\t\t\"COUNTY\": \"041\",\n\t\t\t\t\"NAME\": \"Sevier\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1910.577000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-111.305825, 38.510178],\n\t\t\t\t\t\t[-111.756242, 38.509977],\n\t\t\t\t\t\t[-111.766741, 38.501977],\n\t\t\t\t\t\t[-112.518504, 38.509852],\n\t\t\t\t\t\t[-112.522426, 38.519026],\n\t\t\t\t\t\t[-112.515965, 38.529047],\n\t\t\t\t\t\t[-112.517822, 38.553982],\n\t\t\t\t\t\t[-112.515673, 38.556623],\n\t\t\t\t\t\t[-112.518896, 38.567408],\n\t\t\t\t\t\t[-112.515196, 38.572325],\n\t\t\t\t\t\t[-112.447764, 38.681162],\n\t\t\t\t\t\t[-112.309841, 38.676233],\n\t\t\t\t\t\t[-112.218662, 38.727674],\n\t\t\t\t\t\t[-112.224831, 38.865105],\n\t\t\t\t\t\t[-112.132228, 38.956716],\n\t\t\t\t\t\t[-112.065343, 38.957677],\n\t\t\t\t\t\t[-112.014198, 39.045355],\n\t\t\t\t\t\t[-111.853462, 39.032981],\n\t\t\t\t\t\t[-111.299360, 39.032264],\n\t\t\t\t\t\t[-111.305825, 38.510178]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US49055\",\n\t\t\t\t\"STATE\": \"49\",\n\t\t\t\t\"COUNTY\": \"055\",\n\t\t\t\t\"NAME\": \"Wayne\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2460.676000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-109.927882, 38.151885],\n\t\t\t\t\t\t[-110.687406, 38.151385],\n\t\t\t\t\t\t[-111.414430, 38.150082],\n\t\t\t\t\t\t[-111.842800, 38.151280],\n\t\t\t\t\t\t[-111.848871, 38.425001],\n\t\t\t\t\t\t[-111.766741, 38.501977],\n\t\t\t\t\t\t[-111.756242, 38.509977],\n\t\t\t\t\t\t[-111.305825, 38.510178],\n\t\t\t\t\t\t[-111.305858, 38.499978],\n\t\t\t\t\t\t[-110.025402, 38.499981],\n\t\t\t\t\t\t[-110.015126, 38.364604],\n\t\t\t\t\t\t[-109.887266, 38.190214],\n\t\t\t\t\t\t[-109.927882, 38.151885]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US50013\",\n\t\t\t\t\"STATE\": \"50\",\n\t\t\t\t\"COUNTY\": \"013\",\n\t\t\t\t\"NAME\": \"Grand Isle\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 81.811000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-73.230777, 44.927437],\n\t\t\t\t\t\t[-73.226274, 44.919505],\n\t\t\t\t\t\t[-73.191310, 44.904762],\n\t\t\t\t\t\t[-73.194020, 44.886844],\n\t\t\t\t\t\t[-73.256321, 44.759444],\n\t\t\t\t\t\t[-73.228854, 44.722866],\n\t\t\t\t\t\t[-73.233209, 44.649791],\n\t\t\t\t\t\t[-73.361952, 44.563064],\n\t\t\t\t\t\t[-73.374389, 44.575455],\n\t\t\t\t\t\t[-73.390231, 44.618353],\n\t\t\t\t\t\t[-73.365326, 44.703294],\n\t\t\t\t\t\t[-73.339958, 44.778893],\n\t\t\t\t\t\t[-73.369647, 44.829136],\n\t\t\t\t\t\t[-73.359450, 44.915684],\n\t\t\t\t\t\t[-73.350188, 44.994304],\n\t\t\t\t\t\t[-73.343124, 45.010840],\n\t\t\t\t\t\t[-73.191948, 45.013576],\n\t\t\t\t\t\t[-73.230777, 44.927437]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51003\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"003\",\n\t\t\t\t\"NAME\": \"Albemarle\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 720.698000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.208092, 38.133150],\n\t\t\t\t\t\t[-78.254287, 38.063831],\n\t\t\t\t\t\t[-78.306607, 38.006399],\n\t\t\t\t\t\t[-78.310250, 38.002728],\n\t\t\t\t\t\t[-78.491567, 37.796712],\n\t\t\t\t\t\t[-78.510971, 37.757594],\n\t\t\t\t\t\t[-78.644036, 37.733143],\n\t\t\t\t\t\t[-78.839211, 38.047565],\n\t\t\t\t\t\t[-78.779230, 38.083451],\n\t\t\t\t\t\t[-78.749354, 38.206621],\n\t\t\t\t\t\t[-78.663174, 38.277923],\n\t\t\t\t\t\t[-78.369797, 38.184757],\n\t\t\t\t\t\t[-78.344500, 38.177931],\n\t\t\t\t\t\t[-78.208092, 38.133150]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.520375, 38.018355],\n\t\t\t\t\t\t[-78.469733, 38.011439],\n\t\t\t\t\t\t[-78.449050, 38.058728],\n\t\t\t\t\t\t[-78.495034, 38.065337],\n\t\t\t\t\t\t[-78.520375, 38.018355]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51009\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"009\",\n\t\t\t\t\"NAME\": \"Amherst\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 473.934000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.183302, 37.465908],\n\t\t\t\t\t\t[-79.349319, 37.524840],\n\t\t\t\t\t\t[-79.436926, 37.617004],\n\t\t\t\t\t\t[-79.345010, 37.661129],\n\t\t\t\t\t\t[-79.264384, 37.794720],\n\t\t\t\t\t\t[-79.171926, 37.803135],\n\t\t\t\t\t\t[-79.071417, 37.778303],\n\t\t\t\t\t\t[-79.067355, 37.720255],\n\t\t\t\t\t\t[-78.986017, 37.695546],\n\t\t\t\t\t\t[-78.869245, 37.542095],\n\t\t\t\t\t\t[-79.018526, 37.429917],\n\t\t\t\t\t\t[-79.085244, 37.394743],\n\t\t\t\t\t\t[-79.183302, 37.465908]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51023\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"023\",\n\t\t\t\t\"NAME\": \"Botetourt\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 541.202000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.847599, 37.309177],\n\t\t\t\t\t\t[-79.865099, 37.328417],\n\t\t\t\t\t\t[-79.945616, 37.362997],\n\t\t\t\t\t\t[-80.062622, 37.408325],\n\t\t\t\t\t\t[-80.073985, 37.422305],\n\t\t\t\t\t\t[-79.969037, 37.544419],\n\t\t\t\t\t\t[-80.020519, 37.647459],\n\t\t\t\t\t\t[-79.917560, 37.701848],\n\t\t\t\t\t\t[-79.816702, 37.800989],\n\t\t\t\t\t\t[-79.674006, 37.763052],\n\t\t\t\t\t\t[-79.683594, 37.661668],\n\t\t\t\t\t\t[-79.498553, 37.532887],\n\t\t\t\t\t\t[-79.626126, 37.455284],\n\t\t\t\t\t\t[-79.628157, 37.453633],\n\t\t\t\t\t\t[-79.634201, 37.457050],\n\t\t\t\t\t\t[-79.659053, 37.485206],\n\t\t\t\t\t\t[-79.690053, 37.476403],\n\t\t\t\t\t\t[-79.719063, 37.448989],\n\t\t\t\t\t\t[-79.790467, 37.408830],\n\t\t\t\t\t\t[-79.814193, 37.403687],\n\t\t\t\t\t\t[-79.778608, 37.381816],\n\t\t\t\t\t\t[-79.788151, 37.351116],\n\t\t\t\t\t\t[-79.810750, 37.335305],\n\t\t\t\t\t\t[-79.844191, 37.317785],\n\t\t\t\t\t\t[-79.847599, 37.309177]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51035\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"035\",\n\t\t\t\t\"NAME\": \"Carroll\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 474.690000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.042406, 36.806422],\n\t\t\t\t\t\t[-80.740483, 36.879001],\n\t\t\t\t\t\t[-80.633987, 36.931780],\n\t\t\t\t\t\t[-80.464180, 36.708718],\n\t\t\t\t\t\t[-80.525522, 36.644114],\n\t\t\t\t\t\t[-80.578148, 36.662118],\n\t\t\t\t\t\t[-80.612158, 36.558127],\n\t\t\t\t\t\t[-80.687539, 36.561411],\n\t\t\t\t\t\t[-80.744101, 36.561686],\n\t\t\t\t\t\t[-80.837089, 36.559154],\n\t\t\t\t\t\t[-80.837641, 36.559118],\n\t\t\t\t\t\t[-80.837954, 36.559131],\n\t\t\t\t\t\t[-80.914173, 36.650246],\n\t\t\t\t\t\t[-80.877274, 36.692215],\n\t\t\t\t\t\t[-80.917573, 36.694133],\n\t\t\t\t\t\t[-80.920497, 36.678139],\n\t\t\t\t\t\t[-80.932271, 36.671593],\n\t\t\t\t\t\t[-81.042406, 36.806422]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51053\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"053\",\n\t\t\t\t\"NAME\": \"Dinwiddie\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 503.716000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.733630, 36.945676],\n\t\t\t\t\t\t[-77.889813, 36.988818],\n\t\t\t\t\t\t[-77.900338, 37.143882],\n\t\t\t\t\t\t[-77.795926, 37.192592],\n\t\t\t\t\t\t[-77.650610, 37.265112],\n\t\t\t\t\t\t[-77.447521, 37.222710],\n\t\t\t\t\t\t[-77.399203, 37.170850],\n\t\t\t\t\t\t[-77.396791, 37.152758],\n\t\t\t\t\t\t[-77.398498, 36.992985],\n\t\t\t\t\t\t[-77.616204, 36.879202],\n\t\t\t\t\t\t[-77.619029, 36.877844],\n\t\t\t\t\t\t[-77.626710, 36.881270],\n\t\t\t\t\t\t[-77.631207, 36.887610],\n\t\t\t\t\t\t[-77.638073, 36.885989],\n\t\t\t\t\t\t[-77.632266, 36.878709],\n\t\t\t\t\t\t[-77.639169, 36.873752],\n\t\t\t\t\t\t[-77.648045, 36.881507],\n\t\t\t\t\t\t[-77.645705, 36.888531],\n\t\t\t\t\t\t[-77.648037, 36.896884],\n\t\t\t\t\t\t[-77.658036, 36.894514],\n\t\t\t\t\t\t[-77.733630, 36.945676]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51065\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"065\",\n\t\t\t\t\"NAME\": \"Fluvanna\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 286.005000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.306607, 38.006399],\n\t\t\t\t\t\t[-78.063310, 37.905108],\n\t\t\t\t\t\t[-78.151822, 37.770443],\n\t\t\t\t\t\t[-78.159278, 37.748528],\n\t\t\t\t\t\t[-78.239748, 37.690495],\n\t\t\t\t\t\t[-78.405596, 37.735263],\n\t\t\t\t\t\t[-78.491567, 37.796712],\n\t\t\t\t\t\t[-78.310250, 38.002728],\n\t\t\t\t\t\t[-78.306607, 38.006399]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72147\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"147\",\n\t\t\t\t\"NAME\": \"Vieques\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 50.768000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-65.308717, 18.145172],\n\t\t\t\t\t\t[-65.302295, 18.141089],\n\t\t\t\t\t\t[-65.294896, 18.142830],\n\t\t\t\t\t\t[-65.287962, 18.148097],\n\t\t\t\t\t\t[-65.275165, 18.134430],\n\t\t\t\t\t\t[-65.276214, 18.131936],\n\t\t\t\t\t\t[-65.283248, 18.132999],\n\t\t\t\t\t\t[-65.296036, 18.127990],\n\t\t\t\t\t\t[-65.322794, 18.126589],\n\t\t\t\t\t\t[-65.327184, 18.124106],\n\t\t\t\t\t\t[-65.338506, 18.112439],\n\t\t\t\t\t\t[-65.342037, 18.111380],\n\t\t\t\t\t\t[-65.350493, 18.111914],\n\t\t\t\t\t\t[-65.364733, 18.120377],\n\t\t\t\t\t\t[-65.397837, 18.110873],\n\t\t\t\t\t\t[-65.399791, 18.108832],\n\t\t\t\t\t\t[-65.411767, 18.106211],\n\t\t\t\t\t\t[-65.423765, 18.097764],\n\t\t\t\t\t\t[-65.426311, 18.093749],\n\t\t\t\t\t\t[-65.451380, 18.086096],\n\t\t\t\t\t\t[-65.456810, 18.087778],\n\t\t\t\t\t\t[-65.465849, 18.087715],\n\t\t\t\t\t\t[-65.468768, 18.092643],\n\t\t\t\t\t\t[-65.479790, 18.096352],\n\t\t\t\t\t\t[-65.507265, 18.091646],\n\t\t\t\t\t\t[-65.524209, 18.081977],\n\t\t\t\t\t\t[-65.542087, 18.081177],\n\t\t\t\t\t\t[-65.558646, 18.085660],\n\t\t\t\t\t\t[-65.569305, 18.091616],\n\t\t\t\t\t\t[-65.570628, 18.097325],\n\t\t\t\t\t\t[-65.576860, 18.103224],\n\t\t\t\t\t\t[-65.575579, 18.115669],\n\t\t\t\t\t\t[-65.546199, 18.119329],\n\t\t\t\t\t\t[-65.511712, 18.132840],\n\t\t\t\t\t\t[-65.489829, 18.135912],\n\t\t\t\t\t\t[-65.467910, 18.143767],\n\t\t\t\t\t\t[-65.437058, 18.157660],\n\t\t\t\t\t\t[-65.399517, 18.161935],\n\t\t\t\t\t\t[-65.371373, 18.157517],\n\t\t\t\t\t\t[-65.334289, 18.147761],\n\t\t\t\t\t\t[-65.313476, 18.144296],\n\t\t\t\t\t\t[-65.308717, 18.145172]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72151\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"151\",\n\t\t\t\t\"NAME\": \"Yabucoa\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 55.215000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-65.988523, 18.058941],\n\t\t\t\t\t\t[-66.000072, 18.060275],\n\t\t\t\t\t\t[-66.010266, 18.067432],\n\t\t\t\t\t\t[-66.010245, 18.075565],\n\t\t\t\t\t\t[-65.926227, 18.119963],\n\t\t\t\t\t\t[-65.900893, 18.125856],\n\t\t\t\t\t\t[-65.877615, 18.118167],\n\t\t\t\t\t\t[-65.796711, 18.069842],\n\t\t\t\t\t\t[-65.801831, 18.058527],\n\t\t\t\t\t\t[-65.809174, 18.056818],\n\t\t\t\t\t\t[-65.817107, 18.063378],\n\t\t\t\t\t\t[-65.825848, 18.057482],\n\t\t\t\t\t\t[-65.831090, 18.050664],\n\t\t\t\t\t\t[-65.834274, 18.038988],\n\t\t\t\t\t\t[-65.832429, 18.014916],\n\t\t\t\t\t\t[-65.839591, 18.015077],\n\t\t\t\t\t\t[-65.850913, 18.011954],\n\t\t\t\t\t\t[-65.988523, 18.058941]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72153\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"153\",\n\t\t\t\t\"NAME\": \"Yauco\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 68.192000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-66.859471, 17.954316],\n\t\t\t\t\t\t[-66.863219, 17.998029],\n\t\t\t\t\t\t[-66.884653, 18.024816],\n\t\t\t\t\t\t[-66.926517, 18.151267],\n\t\t\t\t\t\t[-66.836760, 18.170553],\n\t\t\t\t\t\t[-66.832474, 18.170514],\n\t\t\t\t\t\t[-66.830798, 18.171018],\n\t\t\t\t\t\t[-66.828278, 18.170427],\n\t\t\t\t\t\t[-66.827327, 18.171242],\n\t\t\t\t\t\t[-66.826278, 18.160216],\n\t\t\t\t\t\t[-66.818090, 18.150509],\n\t\t\t\t\t\t[-66.804058, 18.148056],\n\t\t\t\t\t\t[-66.803365, 18.140384],\n\t\t\t\t\t\t[-66.797557, 18.133445],\n\t\t\t\t\t\t[-66.852288, 17.955004],\n\t\t\t\t\t\t[-66.856474, 17.956553],\n\t\t\t\t\t\t[-66.859471, 17.954316]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01003\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"003\",\n\t\t\t\t\"NAME\": \"Baldwin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1589.784000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.598927, 30.997454],\n\t\t\t\t\t\t[-87.594111, 30.976335],\n\t\t\t\t\t\t[-87.601355, 30.936294],\n\t\t\t\t\t\t[-87.622203, 30.897508],\n\t\t\t\t\t\t[-87.634938, 30.865886],\n\t\t\t\t\t\t[-87.624137, 30.845713],\n\t\t\t\t\t\t[-87.532607, 30.743489],\n\t\t\t\t\t\t[-87.502926, 30.722369],\n\t\t\t\t\t\t[-87.497515, 30.720123],\n\t\t\t\t\t\t[-87.481225, 30.716508],\n\t\t\t\t\t\t[-87.449362, 30.698913],\n\t\t\t\t\t\t[-87.407118, 30.671796],\n\t\t\t\t\t\t[-87.396997, 30.653640],\n\t\t\t\t\t\t[-87.394219, 30.641699],\n\t\t\t\t\t\t[-87.394479, 30.625192],\n\t\t\t\t\t\t[-87.449921, 30.514690],\n\t\t\t\t\t\t[-87.449841, 30.514369],\n\t\t\t\t\t\t[-87.448332, 30.513063],\n\t\t\t\t\t\t[-87.430578, 30.491096],\n\t\t\t\t\t\t[-87.419177, 30.410198],\n\t\t\t\t\t\t[-87.427478, 30.408398],\n\t\t\t\t\t\t[-87.440678, 30.391498],\n\t\t\t\t\t\t[-87.451378, 30.367199],\n\t\t\t\t\t\t[-87.450962, 30.346262],\n\t\t\t\t\t\t[-87.450078, 30.311100],\n\t\t\t\t\t\t[-87.452378, 30.300201],\n\t\t\t\t\t\t[-87.518324, 30.280435],\n\t\t\t\t\t\t[-87.544533, 30.275659],\n\t\t\t\t\t\t[-87.558097, 30.274437],\n\t\t\t\t\t\t[-87.581362, 30.269257],\n\t\t\t\t\t\t[-87.656888, 30.249709],\n\t\t\t\t\t\t[-87.735530, 30.240679],\n\t\t\t\t\t\t[-87.800560, 30.229365],\n\t\t\t\t\t\t[-87.838462, 30.227185],\n\t\t\t\t\t\t[-87.926119, 30.230373],\n\t\t\t\t\t\t[-87.962253, 30.229522],\n\t\t\t\t\t\t[-87.999996, 30.225753],\n\t\t\t\t\t\t[-88.014572, 30.222366],\n\t\t\t\t\t\t[-88.028401, 30.221132],\n\t\t\t\t\t\t[-88.029272, 30.222714],\n\t\t\t\t\t\t[-88.023991, 30.230390],\n\t\t\t\t\t\t[-87.966847, 30.235618],\n\t\t\t\t\t\t[-87.948979, 30.256564],\n\t\t\t\t\t\t[-87.936041, 30.261469],\n\t\t\t\t\t\t[-87.918247, 30.253308],\n\t\t\t\t\t\t[-87.913762, 30.247837],\n\t\t\t\t\t\t[-87.900460, 30.241531],\n\t\t\t\t\t\t[-87.893201, 30.239237],\n\t\t\t\t\t\t[-87.879343, 30.238590],\n\t\t\t\t\t\t[-87.860085, 30.240289],\n\t\t\t\t\t\t[-87.817743, 30.254292],\n\t\t\t\t\t\t[-87.802087, 30.253054],\n\t\t\t\t\t\t[-87.787750, 30.254244],\n\t\t\t\t\t\t[-87.766626, 30.262353],\n\t\t\t\t\t\t[-87.755263, 30.277292],\n\t\t\t\t\t\t[-87.755516, 30.291217],\n\t\t\t\t\t\t[-87.772758, 30.311701],\n\t\t\t\t\t\t[-87.796717, 30.324198],\n\t\t\t\t\t\t[-87.809266, 30.332702],\n\t\t\t\t\t\t[-87.829880, 30.353809],\n\t\t\t\t\t\t[-87.837239, 30.369324],\n\t\t\t\t\t\t[-87.845132, 30.377446],\n\t\t\t\t\t\t[-87.853806, 30.378481],\n\t\t\t\t\t\t[-87.865017, 30.383450],\n\t\t\t\t\t\t[-87.906343, 30.409380],\n\t\t\t\t\t\t[-87.908908, 30.414240],\n\t\t\t\t\t\t[-87.914136, 30.446144],\n\t\t\t\t\t\t[-87.920031, 30.470645],\n\t\t\t\t\t\t[-87.924211, 30.476100],\n\t\t\t\t\t\t[-87.931902, 30.481100],\n\t\t\t\t\t\t[-87.933355, 30.487357],\n\t\t\t\t\t\t[-87.911141, 30.525848],\n\t\t\t\t\t\t[-87.905343, 30.537566],\n\t\t\t\t\t\t[-87.901711, 30.550879],\n\t\t\t\t\t\t[-87.904168, 30.565985],\n\t\t\t\t\t\t[-87.907891, 30.573114],\n\t\t\t\t\t\t[-87.911431, 30.576261],\n\t\t\t\t\t\t[-87.914956, 30.585893],\n\t\t\t\t\t\t[-87.912530, 30.615795],\n\t\t\t\t\t\t[-87.919346, 30.636060],\n\t\t\t\t\t\t[-87.931070, 30.652694],\n\t\t\t\t\t\t[-87.936717, 30.657432],\n\t\t\t\t\t\t[-87.955989, 30.658862],\n\t\t\t\t\t\t[-87.981196, 30.675090],\n\t\t\t\t\t\t[-88.008396, 30.684956],\n\t\t\t\t\t\t[-88.026319, 30.753358],\n\t\t\t\t\t\t[-87.944546, 30.827046],\n\t\t\t\t\t\t[-87.981261, 30.886895],\n\t\t\t\t\t\t[-87.941152, 31.048161],\n\t\t\t\t\t\t[-87.972869, 31.162694],\n\t\t\t\t\t\t[-87.943748, 31.161341],\n\t\t\t\t\t\t[-87.946588, 31.192930],\n\t\t\t\t\t\t[-87.913637, 31.187356],\n\t\t\t\t\t\t[-87.765152, 31.297346],\n\t\t\t\t\t\t[-87.615890, 31.244458],\n\t\t\t\t\t\t[-87.615431, 30.997361],\n\t\t\t\t\t\t[-87.598927, 30.997454]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01027\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"027\",\n\t\t\t\t\"NAME\": \"Clay\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 603.961000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.851890, 33.498742],\n\t\t\t\t\t\t[-85.887782, 33.469427],\n\t\t\t\t\t\t[-85.782735, 33.469349],\n\t\t\t\t\t\t[-85.765427, 33.498593],\n\t\t\t\t\t\t[-85.643482, 33.495885],\n\t\t\t\t\t\t[-85.653654, 33.106634],\n\t\t\t\t\t\t[-85.974715, 33.105286],\n\t\t\t\t\t\t[-86.009170, 33.090260],\n\t\t\t\t\t\t[-86.174370, 33.104394],\n\t\t\t\t\t\t[-86.172830, 33.195681],\n\t\t\t\t\t\t[-86.120567, 33.194511],\n\t\t\t\t\t\t[-86.118198, 33.296320],\n\t\t\t\t\t\t[-85.980293, 33.294190],\n\t\t\t\t\t\t[-85.976525, 33.381870],\n\t\t\t\t\t\t[-85.923762, 33.396206],\n\t\t\t\t\t\t[-85.904909, 33.498655],\n\t\t\t\t\t\t[-85.851890, 33.498742]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01041\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"041\",\n\t\t\t\t\"NAME\": \"Crenshaw\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 608.840000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.193951, 31.440072],\n\t\t\t\t\t\t[-86.277031, 31.455602],\n\t\t\t\t\t\t[-86.280155, 31.528510],\n\t\t\t\t\t\t[-86.398536, 31.451325],\n\t\t\t\t\t\t[-86.399940, 31.527128],\n\t\t\t\t\t\t[-86.499213, 31.525331],\n\t\t\t\t\t\t[-86.499533, 31.655247],\n\t\t\t\t\t\t[-86.448635, 31.655617],\n\t\t\t\t\t\t[-86.448198, 31.964629],\n\t\t\t\t\t\t[-86.406276, 32.050731],\n\t\t\t\t\t\t[-86.303616, 32.051664],\n\t\t\t\t\t\t[-86.302217, 31.965065],\n\t\t\t\t\t\t[-86.191379, 31.966453],\n\t\t\t\t\t\t[-86.199378, 31.790450],\n\t\t\t\t\t\t[-86.148339, 31.790951],\n\t\t\t\t\t\t[-86.145895, 31.617741],\n\t\t\t\t\t\t[-86.143950, 31.537675],\n\t\t\t\t\t\t[-86.194784, 31.529949],\n\t\t\t\t\t\t[-86.193951, 31.440072]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01057\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"057\",\n\t\t\t\t\"NAME\": \"Fayette\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 627.660000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.951785, 33.919930],\n\t\t\t\t\t\t[-87.635932, 33.915251],\n\t\t\t\t\t\t[-87.636040, 33.871999],\n\t\t\t\t\t\t[-87.531602, 33.867618],\n\t\t\t\t\t\t[-87.528338, 33.692049],\n\t\t\t\t\t\t[-87.423843, 33.689112],\n\t\t\t\t\t\t[-87.423701, 33.602096],\n\t\t\t\t\t\t[-87.631718, 33.609833],\n\t\t\t\t\t\t[-87.666661, 33.521667],\n\t\t\t\t\t\t[-87.840683, 33.524839],\n\t\t\t\t\t\t[-87.858560, 33.525326],\n\t\t\t\t\t\t[-87.946519, 33.524065],\n\t\t\t\t\t\t[-87.951785, 33.919930]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01073\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"073\",\n\t\t\t\t\"NAME\": \"Jefferson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1111.276000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.023586, 33.246422],\n\t\t\t\t\t\t[-87.026846, 33.246459],\n\t\t\t\t\t\t[-87.065738, 33.246907],\n\t\t\t\t\t\t[-87.065754, 33.275937],\n\t\t\t\t\t\t[-87.074634, 33.276018],\n\t\t\t\t\t\t[-87.074602, 33.279682],\n\t\t\t\t\t\t[-87.087546, 33.279666],\n\t\t\t\t\t\t[-87.087497, 33.290675],\n\t\t\t\t\t\t[-87.126756, 33.290844],\n\t\t\t\t\t\t[-87.127142, 33.306013],\n\t\t\t\t\t\t[-87.162007, 33.306587],\n\t\t\t\t\t\t[-87.162175, 33.321012],\n\t\t\t\t\t\t[-87.179638, 33.321112],\n\t\t\t\t\t\t[-87.179754, 33.328010],\n\t\t\t\t\t\t[-87.180006, 33.342979],\n\t\t\t\t\t\t[-87.194841, 33.343069],\n\t\t\t\t\t\t[-87.330816, 33.491501],\n\t\t\t\t\t\t[-87.266923, 33.512929],\n\t\t\t\t\t\t[-87.185794, 33.555882],\n\t\t\t\t\t\t[-87.179430, 33.613794],\n\t\t\t\t\t\t[-87.057757, 33.656363],\n\t\t\t\t\t\t[-87.005965, 33.787237],\n\t\t\t\t\t\t[-86.953664, 33.815297],\n\t\t\t\t\t\t[-86.759144, 33.840617],\n\t\t\t\t\t\t[-86.577799, 33.765316],\n\t\t\t\t\t\t[-86.542758, 33.765173],\n\t\t\t\t\t\t[-86.516783, 33.545896],\n\t\t\t\t\t\t[-86.604510, 33.467053],\n\t\t\t\t\t\t[-86.674418, 33.466521],\n\t\t\t\t\t\t[-86.830597, 33.332015],\n\t\t\t\t\t\t[-87.023586, 33.246422]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01091\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"091\",\n\t\t\t\t\"NAME\": \"Marengo\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 976.882000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.667769, 31.991355],\n\t\t\t\t\t\t[-87.944233, 31.989872],\n\t\t\t\t\t\t[-88.073490, 31.990182],\n\t\t\t\t\t\t[-88.070615, 32.061700],\n\t\t\t\t\t\t[-88.007077, 32.185313],\n\t\t\t\t\t\t[-88.019145, 32.285240],\n\t\t\t\t\t\t[-87.930661, 32.310574],\n\t\t\t\t\t\t[-88.046335, 32.377087],\n\t\t\t\t\t\t[-88.031623, 32.433610],\n\t\t\t\t\t\t[-87.853420, 32.532086],\n\t\t\t\t\t\t[-87.845144, 32.546687],\n\t\t\t\t\t\t[-87.822317, 32.543748],\n\t\t\t\t\t\t[-87.823383, 32.520443],\n\t\t\t\t\t\t[-87.812559, 32.524560],\n\t\t\t\t\t\t[-87.728744, 32.480918],\n\t\t\t\t\t\t[-87.524485, 32.482028],\n\t\t\t\t\t\t[-87.524290, 32.307293],\n\t\t\t\t\t\t[-87.473080, 32.307614],\n\t\t\t\t\t\t[-87.472206, 32.264919],\n\t\t\t\t\t\t[-87.523405, 32.254830],\n\t\t\t\t\t\t[-87.521946, 32.132816],\n\t\t\t\t\t\t[-87.624005, 32.132345],\n\t\t\t\t\t\t[-87.622756, 32.005482],\n\t\t\t\t\t\t[-87.667769, 31.991355]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01103\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"103\",\n\t\t\t\t\"NAME\": \"Morgan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 579.337000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.110111, 34.313799],\n\t\t\t\t\t\t[-87.105913, 34.587643],\n\t\t\t\t\t\t[-87.105073, 34.686037],\n\t\t\t\t\t\t[-86.942899, 34.598053],\n\t\t\t\t\t\t[-86.790056, 34.550790],\n\t\t\t\t\t\t[-86.689353, 34.586425],\n\t\t\t\t\t\t[-86.550166, 34.545963],\n\t\t\t\t\t\t[-86.581936, 34.304694],\n\t\t\t\t\t\t[-87.092311, 34.312297],\n\t\t\t\t\t\t[-87.110111, 34.313799]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01115\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"115\",\n\t\t\t\t\"NAME\": \"St. Clair\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 631.902000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.065272, 33.842198],\n\t\t\t\t\t\t[-86.066439, 33.841094],\n\t\t\t\t\t\t[-86.066972, 33.839198],\n\t\t\t\t\t\t[-86.043993, 33.763595],\n\t\t\t\t\t\t[-86.145562, 33.679098],\n\t\t\t\t\t\t[-86.235328, 33.494532],\n\t\t\t\t\t\t[-86.281999, 33.509895],\n\t\t\t\t\t\t[-86.378665, 33.390983],\n\t\t\t\t\t\t[-86.378222, 33.502411],\n\t\t\t\t\t\t[-86.481939, 33.502544],\n\t\t\t\t\t\t[-86.516783, 33.545896],\n\t\t\t\t\t\t[-86.542758, 33.765173],\n\t\t\t\t\t\t[-86.577799, 33.765316],\n\t\t\t\t\t\t[-86.577528, 33.801977],\n\t\t\t\t\t\t[-86.377532, 33.861706],\n\t\t\t\t\t\t[-86.325622, 33.940147],\n\t\t\t\t\t\t[-86.199164, 33.988918],\n\t\t\t\t\t\t[-86.065272, 33.842198]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01129\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"129\",\n\t\t\t\t\"NAME\": \"Washington\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1080.207000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.432007, 31.114298],\n\t\t\t\t\t\t[-88.438104, 31.230060],\n\t\t\t\t\t\t[-88.438211, 31.231252],\n\t\t\t\t\t\t[-88.445182, 31.355855],\n\t\t\t\t\t\t[-88.445209, 31.355969],\n\t\t\t\t\t\t[-88.448686, 31.420888],\n\t\t\t\t\t\t[-88.448660, 31.421277],\n\t\t\t\t\t\t[-88.449446, 31.435837],\n\t\t\t\t\t\t[-88.459478, 31.621652],\n\t\t\t\t\t\t[-88.459722, 31.624002],\n\t\t\t\t\t\t[-88.464425, 31.697881],\n\t\t\t\t\t\t[-88.464428, 31.697952],\n\t\t\t\t\t\t[-88.088288, 31.699303],\n\t\t\t\t\t\t[-88.086946, 31.686181],\n\t\t\t\t\t\t[-88.080629, 31.677850],\n\t\t\t\t\t\t[-88.078711, 31.669618],\n\t\t\t\t\t\t[-88.072234, 31.594500],\n\t\t\t\t\t\t[-87.906143, 31.491752],\n\t\t\t\t\t\t[-87.908068, 31.323041],\n\t\t\t\t\t\t[-87.959619, 31.316206],\n\t\t\t\t\t\t[-87.946588, 31.192930],\n\t\t\t\t\t\t[-87.943748, 31.161341],\n\t\t\t\t\t\t[-87.972869, 31.162694],\n\t\t\t\t\t\t[-88.022649, 31.144267],\n\t\t\t\t\t\t[-88.329782, 31.143821],\n\t\t\t\t\t\t[-88.432007, 31.114298]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21147\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"147\",\n\t\t\t\t\"NAME\": \"McCreary\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 426.803000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.227295, 36.591685],\n\t\t\t\t\t\t[-84.261333, 36.591981],\n\t\t\t\t\t\t[-84.778455, 36.603222],\n\t\t\t\t\t\t[-84.673964, 36.739542],\n\t\t\t\t\t\t[-84.579339, 36.814397],\n\t\t\t\t\t\t[-84.578158, 36.867133],\n\t\t\t\t\t\t[-84.358024, 36.959400],\n\t\t\t\t\t\t[-84.368212, 36.945588],\n\t\t\t\t\t\t[-84.345872, 36.939496],\n\t\t\t\t\t\t[-84.297416, 36.945931],\n\t\t\t\t\t\t[-84.350006, 36.780681],\n\t\t\t\t\t\t[-84.307598, 36.676809],\n\t\t\t\t\t\t[-84.227295, 36.591685]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21165\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"165\",\n\t\t\t\t\"NAME\": \"Menifee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 203.585000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.709507, 38.009317],\n\t\t\t\t\t\t[-83.580530, 38.011702],\n\t\t\t\t\t\t[-83.498846, 38.050620],\n\t\t\t\t\t\t[-83.433942, 38.033974],\n\t\t\t\t\t\t[-83.495080, 37.861906],\n\t\t\t\t\t\t[-83.631060, 37.825372],\n\t\t\t\t\t\t[-83.768783, 37.918371],\n\t\t\t\t\t\t[-83.759430, 37.998731],\n\t\t\t\t\t\t[-83.756983, 37.992618],\n\t\t\t\t\t\t[-83.751818, 37.997098],\n\t\t\t\t\t\t[-83.749591, 37.996733],\n\t\t\t\t\t\t[-83.744956, 38.001578],\n\t\t\t\t\t\t[-83.747451, 38.003967],\n\t\t\t\t\t\t[-83.744082, 38.006919],\n\t\t\t\t\t\t[-83.740512, 38.007149],\n\t\t\t\t\t\t[-83.737673, 38.009972],\n\t\t\t\t\t\t[-83.735911, 38.007057],\n\t\t\t\t\t\t[-83.733293, 38.007642],\n\t\t\t\t\t\t[-83.730982, 38.010524],\n\t\t\t\t\t\t[-83.727154, 38.008629],\n\t\t\t\t\t\t[-83.727146, 38.006999],\n\t\t\t\t\t\t[-83.722177, 38.006011],\n\t\t\t\t\t\t[-83.718497, 38.003397],\n\t\t\t\t\t\t[-83.715208, 38.004399],\n\t\t\t\t\t\t[-83.712187, 38.009693],\n\t\t\t\t\t\t[-83.709507, 38.009317]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21181\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"181\",\n\t\t\t\t\"NAME\": \"Nicholas\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 195.171000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.980031, 38.439159],\n\t\t\t\t\t\t[-83.848355, 38.296949],\n\t\t\t\t\t\t[-83.850355, 38.296258],\n\t\t\t\t\t\t[-83.977924, 38.192118],\n\t\t\t\t\t\t[-84.120185, 38.275516],\n\t\t\t\t\t\t[-84.194050, 38.371750],\n\t\t\t\t\t\t[-84.102100, 38.459379],\n\t\t\t\t\t\t[-83.980031, 38.439159]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19041\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"041\",\n\t\t\t\t\"NAME\": \"Clay\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 567.238000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.388078, 43.255221],\n\t\t\t\t\t\t[-94.913723, 43.255054],\n\t\t\t\t\t\t[-94.913890, 42.909700],\n\t\t\t\t\t\t[-95.388182, 42.909897],\n\t\t\t\t\t\t[-95.388078, 43.255221]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19043\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"043\",\n\t\t\t\t\"NAME\": \"Clayton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 778.539000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.163064, 42.986781],\n\t\t\t\t\t\t[-91.145560, 42.907980],\n\t\t\t\t\t\t[-91.143375, 42.904670],\n\t\t\t\t\t\t[-91.117411, 42.895837],\n\t\t\t\t\t\t[-91.100565, 42.883078],\n\t\t\t\t\t\t[-91.077643, 42.803798],\n\t\t\t\t\t\t[-91.069549, 42.769628],\n\t\t\t\t\t\t[-91.064896, 42.757272],\n\t\t\t\t\t\t[-91.053733, 42.738238],\n\t\t\t\t\t\t[-90.976314, 42.695996],\n\t\t\t\t\t\t[-90.949213, 42.685573],\n\t\t\t\t\t\t[-90.896961, 42.674407],\n\t\t\t\t\t\t[-90.897415, 42.645714],\n\t\t\t\t\t\t[-91.132766, 42.645844],\n\t\t\t\t\t\t[-91.607059, 42.643973],\n\t\t\t\t\t\t[-91.605307, 43.081653],\n\t\t\t\t\t\t[-91.177222, 43.080247],\n\t\t\t\t\t\t[-91.178087, 43.062044],\n\t\t\t\t\t\t[-91.175167, 43.041267],\n\t\t\t\t\t\t[-91.163064, 42.986781]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19049\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"049\",\n\t\t\t\t\"NAME\": \"Dallas\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 588.447000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.280340, 41.862999],\n\t\t\t\t\t\t[-94.164138, 41.863244],\n\t\t\t\t\t\t[-93.815527, 41.863419],\n\t\t\t\t\t\t[-93.814282, 41.600448],\n\t\t\t\t\t\t[-93.790612, 41.511916],\n\t\t\t\t\t\t[-93.896807, 41.503098],\n\t\t\t\t\t\t[-94.241593, 41.503679],\n\t\t\t\t\t\t[-94.280057, 41.601312],\n\t\t\t\t\t\t[-94.280340, 41.862999]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19057\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"057\",\n\t\t\t\t\"NAME\": \"Des Moines\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 416.123000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.370710, 41.074112],\n\t\t\t\t\t\t[-90.949383, 41.072710],\n\t\t\t\t\t\t[-90.948523, 41.070248],\n\t\t\t\t\t\t[-90.945549, 41.061730],\n\t\t\t\t\t\t[-90.942253, 41.034702],\n\t\t\t\t\t\t[-90.952233, 40.954047],\n\t\t\t\t\t\t[-90.962916, 40.924957],\n\t\t\t\t\t\t[-90.968995, 40.919127],\n\t\t\t\t\t\t[-90.998500, 40.908120],\n\t\t\t\t\t\t[-91.009536, 40.900565],\n\t\t\t\t\t\t[-91.092993, 40.821079],\n\t\t\t\t\t\t[-91.097553, 40.808433],\n\t\t\t\t\t\t[-91.097031, 40.802471],\n\t\t\t\t\t\t[-91.094728, 40.797833],\n\t\t\t\t\t\t[-91.111940, 40.697018],\n\t\t\t\t\t\t[-91.112258, 40.696218],\n\t\t\t\t\t\t[-91.182551, 40.708100],\n\t\t\t\t\t\t[-91.409324, 40.812682],\n\t\t\t\t\t\t[-91.372095, 40.812631],\n\t\t\t\t\t\t[-91.370710, 41.074112]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19073\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"073\",\n\t\t\t\t\"NAME\": \"Greene\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 569.574000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.397526, 42.209161],\n\t\t\t\t\t\t[-94.164704, 42.209920],\n\t\t\t\t\t\t[-94.164138, 41.863244],\n\t\t\t\t\t\t[-94.280340, 41.862999],\n\t\t\t\t\t\t[-94.628724, 41.862763],\n\t\t\t\t\t\t[-94.628806, 42.209396],\n\t\t\t\t\t\t[-94.397526, 42.209161]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19081\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"081\",\n\t\t\t\t\"NAME\": \"Hancock\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 571.005000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.971238, 42.907762],\n\t\t\t\t\t\t[-93.970415, 43.255358],\n\t\t\t\t\t\t[-93.497635, 43.255468],\n\t\t\t\t\t\t[-93.498617, 42.908512],\n\t\t\t\t\t\t[-93.971238, 42.907762]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19091\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"091\",\n\t\t\t\t\"NAME\": \"Humboldt\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 434.352000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.443083, 42.645164],\n\t\t\t\t\t\t[-94.442954, 42.908073],\n\t\t\t\t\t\t[-93.971238, 42.907762],\n\t\t\t\t\t\t[-93.971714, 42.644707],\n\t\t\t\t\t\t[-94.443083, 42.645164]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19099\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"099\",\n\t\t\t\t\"NAME\": \"Jasper\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 730.420000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.231858, 41.862711],\n\t\t\t\t\t\t[-92.765999, 41.862373],\n\t\t\t\t\t\t[-92.756508, 41.508794],\n\t\t\t\t\t\t[-92.871421, 41.508522],\n\t\t\t\t\t\t[-93.328614, 41.507824],\n\t\t\t\t\t\t[-93.348681, 41.600999],\n\t\t\t\t\t\t[-93.347933, 41.863104],\n\t\t\t\t\t\t[-93.231858, 41.862711]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19115\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"115\",\n\t\t\t\t\"NAME\": \"Louisa\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 401.766000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.370710, 41.074112],\n\t\t\t\t\t\t[-91.370298, 41.161247],\n\t\t\t\t\t\t[-91.485717, 41.162405],\n\t\t\t\t\t\t[-91.483995, 41.423848],\n\t\t\t\t\t\t[-91.368521, 41.423178],\n\t\t\t\t\t\t[-91.369332, 41.336063],\n\t\t\t\t\t\t[-91.079657, 41.333727],\n\t\t\t\t\t\t[-91.114186, 41.250029],\n\t\t\t\t\t\t[-91.113648, 41.241401],\n\t\t\t\t\t\t[-91.049808, 41.178033],\n\t\t\t\t\t\t[-91.019036, 41.164910],\n\t\t\t\t\t\t[-91.005503, 41.165622],\n\t\t\t\t\t\t[-90.997906, 41.162564],\n\t\t\t\t\t\t[-90.989663, 41.155716],\n\t\t\t\t\t\t[-90.946627, 41.096632],\n\t\t\t\t\t\t[-90.949383, 41.072711],\n\t\t\t\t\t\t[-90.949383, 41.072710],\n\t\t\t\t\t\t[-91.370710, 41.074112]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19131\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"131\",\n\t\t\t\t\"NAME\": \"Mitchell\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 469.133000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.024348, 43.499572],\n\t\t\t\t\t\t[-93.007871, 43.499604],\n\t\t\t\t\t\t[-92.870277, 43.499548],\n\t\t\t\t\t\t[-92.790317, 43.499567],\n\t\t\t\t\t\t[-92.752088, 43.500084],\n\t\t\t\t\t\t[-92.707312, 43.500069],\n\t\t\t\t\t\t[-92.692786, 43.500063],\n\t\t\t\t\t\t[-92.689033, 43.500062],\n\t\t\t\t\t\t[-92.672580, 43.500055],\n\t\t\t\t\t\t[-92.653318, 43.500050],\n\t\t\t\t\t\t[-92.649194, 43.500049],\n\t\t\t\t\t\t[-92.553161, 43.500300],\n\t\t\t\t\t\t[-92.553128, 43.500300],\n\t\t\t\t\t\t[-92.554381, 43.212813],\n\t\t\t\t\t\t[-93.024092, 43.212812],\n\t\t\t\t\t\t[-93.024143, 43.255538],\n\t\t\t\t\t\t[-93.024348, 43.499572]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19147\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"147\",\n\t\t\t\t\"NAME\": \"Palo Alto\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 563.844000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.443137, 43.255014],\n\t\t\t\t\t\t[-94.443136, 42.909498],\n\t\t\t\t\t\t[-94.442954, 42.908073],\n\t\t\t\t\t\t[-94.913890, 42.909700],\n\t\t\t\t\t\t[-94.913723, 43.255054],\n\t\t\t\t\t\t[-94.443137, 43.255014]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19157\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"157\",\n\t\t\t\t\"NAME\": \"Poweshiek\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 584.932000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.297494, 41.509790],\n\t\t\t\t\t\t[-92.411995, 41.509548],\n\t\t\t\t\t\t[-92.756508, 41.508794],\n\t\t\t\t\t\t[-92.765999, 41.862373],\n\t\t\t\t\t\t[-92.298164, 41.862779],\n\t\t\t\t\t\t[-92.297494, 41.509790]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19165\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"165\",\n\t\t\t\t\"NAME\": \"Shelby\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 590.779000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.040770, 41.504690],\n\t\t\t\t\t\t[-95.154722, 41.505211],\n\t\t\t\t\t\t[-95.497997, 41.506074],\n\t\t\t\t\t\t[-95.497793, 41.602333],\n\t\t\t\t\t\t[-95.558143, 41.602383],\n\t\t\t\t\t\t[-95.557277, 41.863449],\n\t\t\t\t\t\t[-95.092861, 41.863374],\n\t\t\t\t\t\t[-95.092520, 41.602055],\n\t\t\t\t\t\t[-95.040748, 41.602152],\n\t\t\t\t\t\t[-95.040770, 41.504690]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19179\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"179\",\n\t\t\t\t\"NAME\": \"Wapello\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 431.833000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.410233, 41.161942],\n\t\t\t\t\t\t[-92.179974, 41.162662],\n\t\t\t\t\t\t[-92.179072, 40.899720],\n\t\t\t\t\t\t[-92.639091, 40.898886],\n\t\t\t\t\t\t[-92.640361, 41.161298],\n\t\t\t\t\t\t[-92.410233, 41.161942]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19187\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"187\",\n\t\t\t\t\"NAME\": \"Webster\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 715.619000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.443024, 42.558843],\n\t\t\t\t\t\t[-94.443083, 42.645164],\n\t\t\t\t\t\t[-93.971714, 42.644707],\n\t\t\t\t\t\t[-93.971583, 42.558139],\n\t\t\t\t\t\t[-93.931684, 42.472011],\n\t\t\t\t\t\t[-93.931581, 42.210095],\n\t\t\t\t\t\t[-94.164704, 42.209920],\n\t\t\t\t\t\t[-94.397526, 42.209161],\n\t\t\t\t\t\t[-94.397671, 42.473300],\n\t\t\t\t\t\t[-94.443024, 42.558843]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19197\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"197\",\n\t\t\t\t\"NAME\": \"Wright\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 580.422000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.971238, 42.907762],\n\t\t\t\t\t\t[-93.498617, 42.908512],\n\t\t\t\t\t\t[-93.499485, 42.557700],\n\t\t\t\t\t\t[-93.500212, 42.557836],\n\t\t\t\t\t\t[-93.971583, 42.558139],\n\t\t\t\t\t\t[-93.971714, 42.644707],\n\t\t\t\t\t\t[-93.971238, 42.907762]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39031\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"031\",\n\t\t\t\t\"NAME\": \"Coshocton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 563.913000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.187105, 40.166880],\n\t\t\t\t\t\t[-82.182823, 40.238624],\n\t\t\t\t\t\t[-82.195911, 40.239071],\n\t\t\t\t\t\t[-82.184467, 40.454262],\n\t\t\t\t\t\t[-82.184607, 40.456280],\n\t\t\t\t\t\t[-81.709132, 40.444775],\n\t\t\t\t\t\t[-81.712288, 40.370804],\n\t\t\t\t\t\t[-81.616030, 40.368118],\n\t\t\t\t\t\t[-81.622683, 40.221308],\n\t\t\t\t\t\t[-81.716276, 40.152166],\n\t\t\t\t\t\t[-81.716868, 40.152863],\n\t\t\t\t\t\t[-82.187105, 40.166880]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39045\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"045\",\n\t\t\t\t\"NAME\": \"Fairfield\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 504.411000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.824254, 39.794996],\n\t\t\t\t\t\t[-82.811458, 39.932374],\n\t\t\t\t\t\t[-82.810797, 39.941162],\n\t\t\t\t\t\t[-82.782495, 39.939662],\n\t\t\t\t\t\t[-82.581813, 39.930156],\n\t\t\t\t\t\t[-82.473423, 39.925065],\n\t\t\t\t\t\t[-82.462813, 39.930380],\n\t\t\t\t\t\t[-82.472402, 39.837223],\n\t\t\t\t\t\t[-82.396594, 39.833057],\n\t\t\t\t\t\t[-82.374531, 39.654959],\n\t\t\t\t\t\t[-82.490329, 39.661704],\n\t\t\t\t\t\t[-82.496123, 39.602849],\n\t\t\t\t\t\t[-82.617546, 39.608605],\n\t\t\t\t\t\t[-82.620088, 39.563987],\n\t\t\t\t\t\t[-82.731518, 39.554445],\n\t\t\t\t\t\t[-82.842953, 39.561480],\n\t\t\t\t\t\t[-82.824254, 39.794996]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US35013\",\n\t\t\t\t\"STATE\": \"35\",\n\t\t\t\t\"COUNTY\": \"013\",\n\t\t\t\t\"NAME\": \"Do�a Ana\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 3807.511000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-106.377174, 32.001490],\n\t\t\t\t\t\t[-106.394298, 32.001484],\n\t\t\t\t\t\t[-106.411075, 32.001334],\n\t\t\t\t\t\t[-106.565142, 32.000736],\n\t\t\t\t\t\t[-106.566056, 32.000759],\n\t\t\t\t\t\t[-106.587972, 32.000749],\n\t\t\t\t\t\t[-106.595333, 32.000778],\n\t\t\t\t\t\t[-106.598639, 32.000754],\n\t\t\t\t\t\t[-106.599096, 32.000731],\n\t\t\t\t\t\t[-106.614702, 31.956000],\n\t\t\t\t\t\t[-106.616136, 31.948439],\n\t\t\t\t\t\t[-106.627808, 31.860593],\n\t\t\t\t\t\t[-106.625763, 31.856276],\n\t\t\t\t\t\t[-106.621857, 31.852854],\n\t\t\t\t\t\t[-106.614637, 31.846490],\n\t\t\t\t\t\t[-106.605845, 31.846305],\n\t\t\t\t\t\t[-106.605245, 31.845905],\n\t\t\t\t\t\t[-106.566844, 31.813306],\n\t\t\t\t\t\t[-106.563444, 31.812606],\n\t\t\t\t\t\t[-106.545344, 31.805007],\n\t\t\t\t\t\t[-106.544714, 31.804287],\n\t\t\t\t\t\t[-106.542144, 31.802107],\n\t\t\t\t\t\t[-106.542097, 31.802146],\n\t\t\t\t\t\t[-106.535843, 31.798607],\n\t\t\t\t\t\t[-106.535343, 31.797507],\n\t\t\t\t\t\t[-106.535154, 31.797089],\n\t\t\t\t\t\t[-106.534743, 31.796107],\n\t\t\t\t\t\t[-106.533043, 31.791907],\n\t\t\t\t\t\t[-106.533000, 31.791829],\n\t\t\t\t\t\t[-106.532480, 31.791914],\n\t\t\t\t\t\t[-106.530515, 31.792103],\n\t\t\t\t\t\t[-106.527943, 31.790507],\n\t\t\t\t\t\t[-106.527738, 31.789761],\n\t\t\t\t\t\t[-106.527623, 31.789119],\n\t\t\t\t\t\t[-106.527997, 31.786945],\n\t\t\t\t\t\t[-106.528543, 31.784407],\n\t\t\t\t\t\t[-106.528543, 31.783907],\n\t\t\t\t\t\t[-106.750547, 31.783706],\n\t\t\t\t\t\t[-106.750547, 31.783898],\n\t\t\t\t\t\t[-106.993544, 31.783689],\n\t\t\t\t\t\t[-106.998235, 31.783671],\n\t\t\t\t\t\t[-107.000560, 31.783679],\n\t\t\t\t\t\t[-107.000560, 31.783513],\n\t\t\t\t\t\t[-107.296824, 31.783762],\n\t\t\t\t\t\t[-107.299463, 32.605534],\n\t\t\t\t\t\t[-107.299371, 32.780603],\n\t\t\t\t\t\t[-106.887733, 32.779311],\n\t\t\t\t\t\t[-106.887859, 32.822844],\n\t\t\t\t\t\t[-106.340473, 33.052795],\n\t\t\t\t\t\t[-106.340731, 32.958250],\n\t\t\t\t\t\t[-106.376614, 32.957941],\n\t\t\t\t\t\t[-106.377174, 32.001490]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US35017\",\n\t\t\t\t\"STATE\": \"35\",\n\t\t\t\t\"COUNTY\": \"017\",\n\t\t\t\t\"NAME\": \"Grant\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 3961.625000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-107.608283, 32.605382],\n\t\t\t\t\t\t[-107.923490, 32.604380],\n\t\t\t\t\t\t[-107.923489, 32.517283],\n\t\t\t\t\t\t[-108.229259, 32.516996],\n\t\t\t\t\t\t[-108.217194, 31.864096],\n\t\t\t\t\t\t[-108.524702, 31.863694],\n\t\t\t\t\t\t[-108.524586, 32.079732],\n\t\t\t\t\t\t[-108.538135, 32.079836],\n\t\t\t\t\t\t[-108.537035, 32.516751],\n\t\t\t\t\t\t[-108.647155, 32.516897],\n\t\t\t\t\t\t[-108.646373, 32.603582],\n\t\t\t\t\t\t[-108.853075, 32.603627],\n\t\t\t\t\t\t[-108.854381, 32.777276],\n\t\t\t\t\t\t[-109.047117, 32.777569],\n\t\t\t\t\t\t[-109.047117, 32.777570],\n\t\t\t\t\t\t[-109.047480, 33.068420],\n\t\t\t\t\t\t[-109.047453, 33.069427],\n\t\t\t\t\t\t[-109.046905, 33.091931],\n\t\t\t\t\t\t[-109.047013, 33.092917],\n\t\t\t\t\t\t[-109.047117, 33.137559],\n\t\t\t\t\t\t[-109.047116, 33.137995],\n\t\t\t\t\t\t[-109.047237, 33.208965],\n\t\t\t\t\t\t[-108.449988, 33.200997],\n\t\t\t\t\t\t[-108.000597, 33.201563],\n\t\t\t\t\t\t[-107.858292, 33.200879],\n\t\t\t\t\t\t[-107.836192, 33.067763],\n\t\t\t\t\t\t[-107.856672, 33.002539],\n\t\t\t\t\t\t[-107.780548, 32.952776],\n\t\t\t\t\t\t[-107.773088, 32.853775],\n\t\t\t\t\t\t[-107.716186, 32.762676],\n\t\t\t\t\t\t[-107.736949, 32.629494],\n\t\t\t\t\t\t[-107.608283, 32.605382]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US35037\",\n\t\t\t\t\"STATE\": \"35\",\n\t\t\t\t\"COUNTY\": \"037\",\n\t\t\t\t\"NAME\": \"Quay\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2874.349000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-103.042520, 35.135596],\n\t\t\t\t\t\t[-103.042521, 34.954101],\n\t\t\t\t\t\t[-103.282998, 34.953957],\n\t\t\t\t\t\t[-103.284157, 34.864990],\n\t\t\t\t\t\t[-103.389359, 34.865320],\n\t\t\t\t\t\t[-103.390274, 34.778122],\n\t\t\t\t\t\t[-103.495379, 34.778699],\n\t\t\t\t\t\t[-103.496024, 34.691473],\n\t\t\t\t\t\t[-103.705788, 34.692463],\n\t\t\t\t\t\t[-103.706528, 34.604935],\n\t\t\t\t\t\t[-103.738232, 34.604671],\n\t\t\t\t\t\t[-103.948839, 34.605058],\n\t\t\t\t\t\t[-104.128880, 34.605220],\n\t\t\t\t\t\t[-104.129424, 34.779324],\n\t\t\t\t\t\t[-104.124841, 35.142183],\n\t\t\t\t\t\t[-103.857698, 35.264082],\n\t\t\t\t\t\t[-103.857529, 35.242199],\n\t\t\t\t\t\t[-103.637057, 35.240881],\n\t\t\t\t\t\t[-103.637147, 35.389722],\n\t\t\t\t\t\t[-103.379941, 35.397987],\n\t\t\t\t\t\t[-103.374988, 35.740011],\n\t\t\t\t\t\t[-103.041357, 35.739274],\n\t\t\t\t\t\t[-103.041554, 35.622487],\n\t\t\t\t\t\t[-103.042497, 35.211862],\n\t\t\t\t\t\t[-103.042377, 35.183156],\n\t\t\t\t\t\t[-103.042377, 35.183149],\n\t\t\t\t\t\t[-103.042366, 35.182786],\n\t\t\t\t\t\t[-103.042339, 35.181922],\n\t\t\t\t\t\t[-103.042395, 35.178573],\n\t\t\t\t\t\t[-103.042568, 35.159318],\n\t\t\t\t\t\t[-103.042711, 35.144735],\n\t\t\t\t\t\t[-103.042600, 35.142766],\n\t\t\t\t\t\t[-103.042520, 35.135596]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US35059\",\n\t\t\t\t\"STATE\": \"35\",\n\t\t\t\t\"COUNTY\": \"059\",\n\t\t\t\t\"NAME\": \"Union\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 3823.744000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-103.040824, 36.055231],\n\t\t\t\t\t\t[-103.041357, 35.739274],\n\t\t\t\t\t\t[-103.374988, 35.740011],\n\t\t\t\t\t\t[-103.364975, 36.086373],\n\t\t\t\t\t\t[-103.794342, 36.085787],\n\t\t\t\t\t\t[-103.793986, 36.173995],\n\t\t\t\t\t\t[-104.008991, 36.174503],\n\t\t\t\t\t\t[-104.008927, 36.218018],\n\t\t\t\t\t\t[-104.007855, 36.996239],\n\t\t\t\t\t\t[-103.734364, 36.998041],\n\t\t\t\t\t\t[-103.733247, 36.998016],\n\t\t\t\t\t\t[-103.086105, 36.999864],\n\t\t\t\t\t\t[-103.002199, 37.000104],\n\t\t\t\t\t\t[-103.002247, 36.911587],\n\t\t\t\t\t\t[-103.001964, 36.909573],\n\t\t\t\t\t\t[-103.002198, 36.719427],\n\t\t\t\t\t\t[-103.002518, 36.675186],\n\t\t\t\t\t\t[-103.002252, 36.617180],\n\t\t\t\t\t\t[-103.002188, 36.602716],\n\t\t\t\t\t\t[-103.002565, 36.526588],\n\t\t\t\t\t\t[-103.002434, 36.500397],\n\t\t\t\t\t\t[-103.041669, 36.478514],\n\t\t\t\t\t\t[-103.041745, 36.318267],\n\t\t\t\t\t\t[-103.041674, 36.317534],\n\t\t\t\t\t\t[-103.040824, 36.055231]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36017\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"017\",\n\t\t\t\t\"NAME\": \"Chenango\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 893.548000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-75.532776, 42.195241],\n\t\t\t\t\t\t[-75.637110, 42.195628],\n\t\t\t\t\t\t[-75.638299, 42.248686],\n\t\t\t\t\t\t[-75.843792, 42.259707],\n\t\t\t\t\t\t[-75.864020, 42.415702],\n\t\t\t\t\t\t[-75.889832, 42.723844],\n\t\t\t\t\t\t[-75.295877, 42.744106],\n\t\t\t\t\t\t[-75.330143, 42.568082],\n\t\t\t\t\t\t[-75.404464, 42.479117],\n\t\t\t\t\t\t[-75.374905, 42.410784],\n\t\t\t\t\t\t[-75.415319, 42.314151],\n\t\t\t\t\t\t[-75.418421, 42.195032],\n\t\t\t\t\t\t[-75.419907, 42.194918],\n\t\t\t\t\t\t[-75.532776, 42.195241]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36031\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"031\",\n\t\t\t\t\"NAME\": \"Essex\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1794.228000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-73.324681, 44.243614],\n\t\t\t\t\t\t[-73.350806, 44.225943],\n\t\t\t\t\t\t[-73.390583, 44.190886],\n\t\t\t\t\t\t[-73.403686, 44.153102],\n\t\t\t\t\t\t[-73.429239, 44.079414],\n\t\t\t\t\t\t[-73.437429, 44.046861],\n\t\t\t\t\t\t[-73.436880, 44.042578],\n\t\t\t\t\t\t[-73.410776, 44.026944],\n\t\t\t\t\t\t[-73.405999, 44.016229],\n\t\t\t\t\t\t[-73.405525, 43.948813],\n\t\t\t\t\t\t[-73.407742, 43.929887],\n\t\t\t\t\t\t[-73.397256, 43.905668],\n\t\t\t\t\t\t[-73.388389, 43.832404],\n\t\t\t\t\t\t[-73.379312, 43.808478],\n\t\t\t\t\t\t[-73.433237, 43.804083],\n\t\t\t\t\t\t[-73.435909, 43.803836],\n\t\t\t\t\t\t[-73.438120, 43.803687],\n\t\t\t\t\t\t[-73.495503, 43.799319],\n\t\t\t\t\t\t[-73.868690, 43.762803],\n\t\t\t\t\t\t[-74.057005, 43.744513],\n\t\t\t\t\t\t[-74.047062, 43.796343],\n\t\t\t\t\t\t[-74.213734, 43.810875],\n\t\t\t\t\t\t[-74.336826, 43.925223],\n\t\t\t\t\t\t[-74.255998, 43.969797],\n\t\t\t\t\t\t[-74.281870, 44.120552],\n\t\t\t\t\t\t[-74.093490, 44.137615],\n\t\t\t\t\t\t[-74.127560, 44.330211],\n\t\t\t\t\t\t[-74.141424, 44.407268],\n\t\t\t\t\t\t[-73.909687, 44.429699],\n\t\t\t\t\t\t[-73.700717, 44.445571],\n\t\t\t\t\t\t[-73.496604, 44.486081],\n\t\t\t\t\t\t[-73.463838, 44.537681],\n\t\t\t\t\t\t[-73.338634, 44.546847],\n\t\t\t\t\t\t[-73.338630, 44.546844],\n\t\t\t\t\t\t[-73.306707, 44.500334],\n\t\t\t\t\t\t[-73.299885, 44.476652],\n\t\t\t\t\t\t[-73.293613, 44.438903],\n\t\t\t\t\t\t[-73.296031, 44.428339],\n\t\t\t\t\t\t[-73.315016, 44.388513],\n\t\t\t\t\t\t[-73.323268, 44.264796],\n\t\t\t\t\t\t[-73.324681, 44.243614]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36049\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"049\",\n\t\t\t\t\"NAME\": \"Lewis\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1274.679000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-75.170159, 44.096959],\n\t\t\t\t\t\t[-75.110160, 43.615229],\n\t\t\t\t\t\t[-75.533500, 43.419756],\n\t\t\t\t\t\t[-75.756213, 43.470388],\n\t\t\t\t\t\t[-75.774553, 43.688884],\n\t\t\t\t\t\t[-75.786759, 43.788320],\n\t\t\t\t\t\t[-75.850534, 43.791886],\n\t\t\t\t\t\t[-75.840560, 43.883976],\n\t\t\t\t\t\t[-75.758157, 43.878785],\n\t\t\t\t\t\t[-75.603670, 43.971363],\n\t\t\t\t\t\t[-75.542898, 43.967795],\n\t\t\t\t\t\t[-75.484528, 44.074172],\n\t\t\t\t\t\t[-75.545886, 44.102978],\n\t\t\t\t\t\t[-75.446124, 44.217655],\n\t\t\t\t\t\t[-75.170159, 44.096959]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36065\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"065\",\n\t\t\t\t\"NAME\": \"Oneida\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1212.429000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-75.247963, 42.871604],\n\t\t\t\t\t\t[-75.437167, 42.863319],\n\t\t\t\t\t\t[-75.444173, 42.933089],\n\t\t\t\t\t\t[-75.544211, 42.931770],\n\t\t\t\t\t\t[-75.552774, 43.037554],\n\t\t\t\t\t\t[-75.737774, 43.164673],\n\t\t\t\t\t\t[-75.884275, 43.155562],\n\t\t\t\t\t\t[-75.886756, 43.325021],\n\t\t\t\t\t\t[-75.814627, 43.483578],\n\t\t\t\t\t\t[-75.756213, 43.470388],\n\t\t\t\t\t\t[-75.533500, 43.419756],\n\t\t\t\t\t\t[-75.110160, 43.615229],\n\t\t\t\t\t\t[-75.086851, 43.417010],\n\t\t\t\t\t\t[-75.076581, 43.330705],\n\t\t\t\t\t\t[-75.160350, 43.255805],\n\t\t\t\t\t\t[-75.069165, 43.227333],\n\t\t\t\t\t\t[-75.219106, 43.052469],\n\t\t\t\t\t\t[-75.212158, 42.879973],\n\t\t\t\t\t\t[-75.242745, 42.877869],\n\t\t\t\t\t\t[-75.247963, 42.871604]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36077\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"077\",\n\t\t\t\t\"NAME\": \"Otsego\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1001.700000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-74.711580, 42.517799],\n\t\t\t\t\t\t[-74.974940, 42.467488],\n\t\t\t\t\t\t[-75.197237, 42.358329],\n\t\t\t\t\t\t[-75.415319, 42.314151],\n\t\t\t\t\t\t[-75.374905, 42.410784],\n\t\t\t\t\t\t[-75.404464, 42.479117],\n\t\t\t\t\t\t[-75.330143, 42.568082],\n\t\t\t\t\t\t[-75.295877, 42.744106],\n\t\t\t\t\t\t[-75.247963, 42.871604],\n\t\t\t\t\t\t[-75.242745, 42.877869],\n\t\t\t\t\t\t[-75.212158, 42.879973],\n\t\t\t\t\t\t[-75.139870, 42.859760],\n\t\t\t\t\t\t[-75.100999, 42.908363],\n\t\t\t\t\t\t[-74.906738, 42.824943],\n\t\t\t\t\t\t[-74.878822, 42.898274],\n\t\t\t\t\t\t[-74.763303, 42.863237],\n\t\t\t\t\t\t[-74.702054, 42.845305],\n\t\t\t\t\t\t[-74.650213, 42.829941],\n\t\t\t\t\t\t[-74.648298, 42.829558],\n\t\t\t\t\t\t[-74.667512, 42.750710],\n\t\t\t\t\t\t[-74.630631, 42.626674],\n\t\t\t\t\t\t[-74.711580, 42.517799]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51079\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"079\",\n\t\t\t\t\"NAME\": \"Greene\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 156.246000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.452918, 38.475508],\n\t\t\t\t\t\t[-78.430031, 38.367150],\n\t\t\t\t\t\t[-78.286968, 38.271533],\n\t\t\t\t\t\t[-78.297716, 38.261585],\n\t\t\t\t\t\t[-78.369797, 38.184757],\n\t\t\t\t\t\t[-78.663174, 38.277923],\n\t\t\t\t\t\t[-78.551491, 38.336315],\n\t\t\t\t\t\t[-78.486003, 38.421486],\n\t\t\t\t\t\t[-78.484246, 38.423648],\n\t\t\t\t\t\t[-78.481647, 38.430603],\n\t\t\t\t\t\t[-78.476566, 38.432146],\n\t\t\t\t\t\t[-78.477718, 38.438574],\n\t\t\t\t\t\t[-78.472509, 38.447627],\n\t\t\t\t\t\t[-78.465073, 38.447000],\n\t\t\t\t\t\t[-78.464699, 38.452542],\n\t\t\t\t\t\t[-78.462113, 38.454720],\n\t\t\t\t\t\t[-78.462658, 38.459528],\n\t\t\t\t\t\t[-78.457711, 38.464804],\n\t\t\t\t\t\t[-78.455495, 38.472532],\n\t\t\t\t\t\t[-78.452918, 38.475508]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12129\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"129\",\n\t\t\t\t\"NAME\": \"Wakulla\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 606.419000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.075539, 30.273617],\n\t\t\t\t\t\t[-84.076043, 30.095464],\n\t\t\t\t\t\t[-84.083057, 30.092286],\n\t\t\t\t\t\t[-84.087034, 30.092103],\n\t\t\t\t\t\t[-84.094725, 30.094964],\n\t\t\t\t\t\t[-84.102730, 30.093611],\n\t\t\t\t\t\t[-84.113840, 30.085478],\n\t\t\t\t\t\t[-84.124889, 30.090601],\n\t\t\t\t\t\t[-84.135683, 30.083018],\n\t\t\t\t\t\t[-84.157278, 30.072714],\n\t\t\t\t\t\t[-84.167881, 30.071422],\n\t\t\t\t\t\t[-84.179149, 30.073187],\n\t\t\t\t\t\t[-84.198530, 30.087937],\n\t\t\t\t\t\t[-84.201585, 30.087982],\n\t\t\t\t\t\t[-84.203349, 30.085875],\n\t\t\t\t\t\t[-84.208010, 30.084776],\n\t\t\t\t\t\t[-84.237014, 30.085560],\n\t\t\t\t\t\t[-84.245668, 30.093021],\n\t\t\t\t\t\t[-84.247491, 30.101140],\n\t\t\t\t\t\t[-84.256439, 30.103791],\n\t\t\t\t\t\t[-84.269363, 30.097660],\n\t\t\t\t\t\t[-84.272511, 30.092358],\n\t\t\t\t\t\t[-84.274003, 30.083079],\n\t\t\t\t\t\t[-84.270368, 30.075469],\n\t\t\t\t\t\t[-84.270792, 30.068094],\n\t\t\t\t\t\t[-84.277168, 30.060263],\n\t\t\t\t\t\t[-84.289727, 30.057197],\n\t\t\t\t\t\t[-84.297836, 30.057451],\n\t\t\t\t\t\t[-84.315344, 30.069492],\n\t\t\t\t\t\t[-84.342022, 30.063858],\n\t\t\t\t\t\t[-84.358923, 30.058224],\n\t\t\t\t\t\t[-84.365882, 30.024588],\n\t\t\t\t\t\t[-84.361962, 29.987739],\n\t\t\t\t\t\t[-84.359986, 29.984739],\n\t\t\t\t\t\t[-84.347700, 29.984123],\n\t\t\t\t\t\t[-84.343041, 29.975100],\n\t\t\t\t\t\t[-84.341261, 29.960775],\n\t\t\t\t\t\t[-84.544450, 30.011030],\n\t\t\t\t\t\t[-84.669258, 30.125200],\n\t\t\t\t\t\t[-84.713351, 30.300170],\n\t\t\t\t\t\t[-84.247673, 30.303493],\n\t\t\t\t\t\t[-84.241222, 30.274244],\n\t\t\t\t\t\t[-84.075539, 30.273617]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13011\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"011\",\n\t\t\t\t\"NAME\": \"Banks\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 232.091000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.355269, 34.223730],\n\t\t\t\t\t\t[-83.372429, 34.205933],\n\t\t\t\t\t\t[-83.400125, 34.200525],\n\t\t\t\t\t\t[-83.402428, 34.197499],\n\t\t\t\t\t\t[-83.480361, 34.262038],\n\t\t\t\t\t\t[-83.620115, 34.295276],\n\t\t\t\t\t\t[-83.669473, 34.366689],\n\t\t\t\t\t\t[-83.615251, 34.431748],\n\t\t\t\t\t\t[-83.537538, 34.491725],\n\t\t\t\t\t\t[-83.459770, 34.481142],\n\t\t\t\t\t\t[-83.413586, 34.468014],\n\t\t\t\t\t\t[-83.398396, 34.460883],\n\t\t\t\t\t\t[-83.393915, 34.324801],\n\t\t\t\t\t\t[-83.355269, 34.223730]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13019\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"019\",\n\t\t\t\t\"NAME\": \"Berrien\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 451.897000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.197971, 31.025405],\n\t\t\t\t\t\t[-83.273731, 31.026658],\n\t\t\t\t\t\t[-83.280476, 31.026580],\n\t\t\t\t\t\t[-83.295052, 31.027278],\n\t\t\t\t\t\t[-83.305611, 31.167233],\n\t\t\t\t\t\t[-83.434492, 31.350361],\n\t\t\t\t\t\t[-83.338728, 31.475991],\n\t\t\t\t\t\t[-83.146085, 31.472088],\n\t\t\t\t\t\t[-83.145587, 31.472276],\n\t\t\t\t\t\t[-83.145874, 31.468926],\n\t\t\t\t\t\t[-83.150846, 31.462262],\n\t\t\t\t\t\t[-83.150474, 31.456787],\n\t\t\t\t\t\t[-83.144891, 31.454633],\n\t\t\t\t\t\t[-83.138618, 31.441528],\n\t\t\t\t\t\t[-83.139448, 31.436466],\n\t\t\t\t\t\t[-83.135927, 31.430510],\n\t\t\t\t\t\t[-83.138998, 31.427784],\n\t\t\t\t\t\t[-83.140483, 31.420395],\n\t\t\t\t\t\t[-83.033531, 31.274670],\n\t\t\t\t\t\t[-83.046885, 31.183680],\n\t\t\t\t\t\t[-83.038246, 31.146705],\n\t\t\t\t\t\t[-83.165072, 31.147198],\n\t\t\t\t\t\t[-83.197971, 31.025405]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13027\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"027\",\n\t\t\t\t\"NAME\": \"Brooks\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 493.046000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.574857, 31.078135],\n\t\t\t\t\t\t[-83.475617, 31.031964],\n\t\t\t\t\t\t[-83.476889, 31.030987],\n\t\t\t\t\t\t[-83.473792, 31.031276],\n\t\t\t\t\t\t[-83.473260, 31.028452],\n\t\t\t\t\t\t[-83.472275, 31.029742],\n\t\t\t\t\t\t[-83.470776, 31.028531],\n\t\t\t\t\t\t[-83.468295, 31.028481],\n\t\t\t\t\t\t[-83.471596, 31.026583],\n\t\t\t\t\t\t[-83.471324, 31.023860],\n\t\t\t\t\t\t[-83.467778, 31.021635],\n\t\t\t\t\t\t[-83.465898, 31.018502],\n\t\t\t\t\t\t[-83.466784, 31.013886],\n\t\t\t\t\t\t[-83.464269, 31.011093],\n\t\t\t\t\t\t[-83.463689, 31.005935],\n\t\t\t\t\t\t[-83.461306, 31.005709],\n\t\t\t\t\t\t[-83.460412, 31.002812],\n\t\t\t\t\t\t[-83.458129, 31.000859],\n\t\t\t\t\t\t[-83.358989, 30.836710],\n\t\t\t\t\t\t[-83.449293, 30.817957],\n\t\t\t\t\t\t[-83.482461, 30.756931],\n\t\t\t\t\t\t[-83.357703, 30.637359],\n\t\t\t\t\t\t[-83.379460, 30.638680],\n\t\t\t\t\t\t[-83.390062, 30.639333],\n\t\t\t\t\t\t[-83.429477, 30.641519],\n\t\t\t\t\t\t[-83.429584, 30.641496],\n\t\t\t\t\t\t[-83.440021, 30.642023],\n\t\t\t\t\t\t[-83.448895, 30.642410],\n\t\t\t\t\t\t[-83.611667, 30.651255],\n\t\t\t\t\t\t[-83.611720, 30.651258],\n\t\t\t\t\t\t[-83.674058, 30.654747],\n\t\t\t\t\t\t[-83.676773, 30.654905],\n\t\t\t\t\t\t[-83.743729, 30.658396],\n\t\t\t\t\t\t[-83.736158, 31.037679],\n\t\t\t\t\t\t[-83.573959, 31.033875],\n\t\t\t\t\t\t[-83.574857, 31.078135]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13033\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"033\",\n\t\t\t\t\"NAME\": \"Burke\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 826.968000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.851975, 33.247408],\n\t\t\t\t\t\t[-81.772251, 33.180120],\n\t\t\t\t\t\t[-81.696934, 33.116551],\n\t\t\t\t\t\t[-81.620287, 33.095408],\n\t\t\t\t\t\t[-81.615756, 33.092534],\n\t\t\t\t\t\t[-81.541831, 33.045654],\n\t\t\t\t\t\t[-81.767553, 32.909411],\n\t\t\t\t\t\t[-81.857976, 32.953882],\n\t\t\t\t\t\t[-82.081331, 32.916782],\n\t\t\t\t\t\t[-82.144977, 32.812741],\n\t\t\t\t\t\t[-82.316512, 32.835772],\n\t\t\t\t\t\t[-82.272353, 32.937796],\n\t\t\t\t\t\t[-82.291180, 33.062827],\n\t\t\t\t\t\t[-82.232554, 33.231211],\n\t\t\t\t\t\t[-82.267580, 33.267397],\n\t\t\t\t\t\t[-82.174240, 33.296771],\n\t\t\t\t\t\t[-82.088162, 33.230245],\n\t\t\t\t\t\t[-81.851975, 33.247408]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13039\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"039\",\n\t\t\t\t\"NAME\": \"Camden\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 613.025000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.906014, 30.822176],\n\t\t\t\t\t\t[-81.892028, 30.960474],\n\t\t\t\t\t\t[-81.936006, 31.047993],\n\t\t\t\t\t\t[-81.766322, 31.169595],\n\t\t\t\t\t\t[-81.572692, 31.097269],\n\t\t\t\t\t\t[-81.443170, 31.016661],\n\t\t\t\t\t\t[-81.451444, 31.015515],\n\t\t\t\t\t\t[-81.457795, 31.010259],\n\t\t\t\t\t\t[-81.459240, 31.005692],\n\t\t\t\t\t\t[-81.469298, 30.996028],\n\t\t\t\t\t\t[-81.490586, 30.984952],\n\t\t\t\t\t\t[-81.493651, 30.977528],\n\t\t\t\t\t\t[-81.486966, 30.969602],\n\t\t\t\t\t\t[-81.475789, 30.965976],\n\t\t\t\t\t\t[-81.472321, 30.969899],\n\t\t\t\t\t\t[-81.466814, 30.970910],\n\t\t\t\t\t\t[-81.453568, 30.965573],\n\t\t\t\t\t\t[-81.447388, 30.956732],\n\t\t\t\t\t\t[-81.426929, 30.956615],\n\t\t\t\t\t\t[-81.420108, 30.974076],\n\t\t\t\t\t\t[-81.415825, 30.977192],\n\t\t\t\t\t\t[-81.408484, 30.977718],\n\t\t\t\t\t\t[-81.403409, 30.957914],\n\t\t\t\t\t\t[-81.405153, 30.908203],\n\t\t\t\t\t\t[-81.428577, 30.836336],\n\t\t\t\t\t\t[-81.430835, 30.831156],\n\t\t\t\t\t\t[-81.440130, 30.821369],\n\t\t\t\t\t\t[-81.446927, 30.810390],\n\t\t\t\t\t\t[-81.455287, 30.790930],\n\t\t\t\t\t\t[-81.460061, 30.769912],\n\t\t\t\t\t\t[-81.461065, 30.753684],\n\t\t\t\t\t\t[-81.459470, 30.741979],\n\t\t\t\t\t\t[-81.449375, 30.715601],\n\t\t\t\t\t\t[-81.444124, 30.709714],\n\t\t\t\t\t\t[-81.544618, 30.712636],\n\t\t\t\t\t\t[-81.606221, 30.718135],\n\t\t\t\t\t\t[-81.624298, 30.736194],\n\t\t\t\t\t\t[-81.637222, 30.733835],\n\t\t\t\t\t\t[-81.719927, 30.744634],\n\t\t\t\t\t\t[-81.732627, 30.749934],\n\t\t\t\t\t\t[-81.741278, 30.762681],\n\t\t\t\t\t\t[-81.759338, 30.771377],\n\t\t\t\t\t\t[-81.806652, 30.789683],\n\t\t\t\t\t\t[-81.827014, 30.788933],\n\t\t\t\t\t\t[-81.840375, 30.786384],\n\t\t\t\t\t\t[-81.868608, 30.792754],\n\t\t\t\t\t\t[-81.906014, 30.822176]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13051\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"051\",\n\t\t\t\t\"NAME\": \"Chatham\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 426.437000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.004115, 32.072225],\n\t\t\t\t\t\t[-80.885517, 32.034600],\n\t\t\t\t\t\t[-80.859111, 32.023693],\n\t\t\t\t\t\t[-80.852276, 32.026676],\n\t\t\t\t\t\t[-80.843130, 32.024226],\n\t\t\t\t\t\t[-80.840549, 32.011306],\n\t\t\t\t\t\t[-80.841913, 32.002643],\n\t\t\t\t\t\t[-80.848441, 31.988279],\n\t\t\t\t\t\t[-80.862814, 31.969346],\n\t\t\t\t\t\t[-80.882814, 31.959075],\n\t\t\t\t\t\t[-80.897687, 31.949065],\n\t\t\t\t\t\t[-80.911207, 31.943769],\n\t\t\t\t\t\t[-80.929101, 31.944964],\n\t\t\t\t\t\t[-80.930279, 31.956705],\n\t\t\t\t\t\t[-80.948491, 31.957230],\n\t\t\t\t\t\t[-80.972392, 31.941270],\n\t\t\t\t\t\t[-80.975714, 31.923602],\n\t\t\t\t\t\t[-80.968494, 31.915822],\n\t\t\t\t\t\t[-80.954469, 31.911768],\n\t\t\t\t\t\t[-80.941359, 31.912984],\n\t\t\t\t\t\t[-80.934508, 31.909180],\n\t\t\t\t\t\t[-80.947294, 31.896210],\n\t\t\t\t\t\t[-80.971434, 31.877941],\n\t\t\t\t\t\t[-80.992690, 31.857641],\n\t\t\t\t\t\t[-81.000317, 31.856744],\n\t\t\t\t\t\t[-81.014478, 31.867474],\n\t\t\t\t\t\t[-81.041548, 31.876198],\n\t\t\t\t\t\t[-81.065255, 31.877095],\n\t\t\t\t\t\t[-81.058596, 31.857811],\n\t\t\t\t\t\t[-81.059070, 31.850106],\n\t\t\t\t\t\t[-81.062790, 31.844740],\n\t\t\t\t\t\t[-81.076178, 31.836132],\n\t\t\t\t\t\t[-81.075812, 31.829031],\n\t\t\t\t\t\t[-81.057181, 31.822687],\n\t\t\t\t\t\t[-81.050946, 31.822383],\n\t\t\t\t\t\t[-81.047940, 31.824881],\n\t\t\t\t\t\t[-81.039808, 31.823000],\n\t\t\t\t\t\t[-81.036958, 31.819558],\n\t\t\t\t\t\t[-81.036873, 31.812721],\n\t\t\t\t\t\t[-81.047345, 31.802865],\n\t\t\t\t\t\t[-81.068116, 31.768735],\n\t\t\t\t\t\t[-81.077057, 31.761256],\n\t\t\t\t\t\t[-81.097402, 31.753126],\n\t\t\t\t\t\t[-81.130634, 31.722692],\n\t\t\t\t\t\t[-81.138448, 31.720934],\n\t\t\t\t\t\t[-81.154686, 31.726203],\n\t\t\t\t\t\t[-81.177027, 31.816113],\n\t\t\t\t\t\t[-81.138533, 31.855921],\n\t\t\t\t\t\t[-81.285467, 31.942994],\n\t\t\t\t\t\t[-81.323529, 32.019854],\n\t\t\t\t\t\t[-81.391698, 32.095886],\n\t\t\t\t\t\t[-81.195634, 32.237499],\n\t\t\t\t\t\t[-81.125457, 32.227130],\n\t\t\t\t\t\t[-81.122034, 32.161803],\n\t\t\t\t\t\t[-81.117234, 32.117605],\n\t\t\t\t\t\t[-81.113334, 32.113205],\n\t\t\t\t\t\t[-81.061850, 32.087935],\n\t\t\t\t\t\t[-81.042833, 32.084508],\n\t\t\t\t\t\t[-81.004115, 32.072225]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13061\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"061\",\n\t\t\t\t\"NAME\": \"Clay\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 195.381000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.817843, 31.619771],\n\t\t\t\t\t\t[-84.819807, 31.501192],\n\t\t\t\t\t\t[-85.029227, 31.486071],\n\t\t\t\t\t\t[-85.046859, 31.517451],\n\t\t\t\t\t\t[-85.041305, 31.540987],\n\t\t\t\t\t\t[-85.057473, 31.618624],\n\t\t\t\t\t\t[-85.059534, 31.621717],\n\t\t\t\t\t\t[-85.065236, 31.624351],\n\t\t\t\t\t\t[-85.087029, 31.640966],\n\t\t\t\t\t\t[-85.125530, 31.694965],\n\t\t\t\t\t\t[-85.126530, 31.716764],\n\t\t\t\t\t\t[-85.122230, 31.722764],\n\t\t\t\t\t\t[-85.118930, 31.732664],\n\t\t\t\t\t\t[-85.124501, 31.763081],\n\t\t\t\t\t\t[-85.125230, 31.767063],\n\t\t\t\t\t\t[-85.130731, 31.772263],\n\t\t\t\t\t\t[-85.138668, 31.780425],\n\t\t\t\t\t\t[-84.958640, 31.777854],\n\t\t\t\t\t\t[-84.942353, 31.618669],\n\t\t\t\t\t\t[-84.817843, 31.619771]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US02240\",\n\t\t\t\t\"STATE\": \"02\",\n\t\t\t\t\"COUNTY\": \"240\",\n\t\t\t\t\"NAME\": \"Southeast Fairbanks\",\n\t\t\t\t\"LSAD\": \"CA\",\n\t\t\t\t\"CENSUSAREA\": 24768.808000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-146.484119, 63.173325],\n\t\t\t\t\t\t[-146.489541, 63.482913],\n\t\t\t\t\t\t[-146.975489, 63.479746],\n\t\t\t\t\t\t[-146.972014, 63.911791],\n\t\t\t\t\t\t[-147.003185, 64.258928],\n\t\t\t\t\t\t[-146.357350, 64.278453],\n\t\t\t\t\t\t[-146.227064, 64.363752],\n\t\t\t\t\t\t[-144.046530, 64.666771],\n\t\t\t\t\t\t[-144.061159, 64.683442],\n\t\t\t\t\t\t[-143.751216, 64.647777],\n\t\t\t\t\t\t[-143.647213, 64.669506],\n\t\t\t\t\t\t[-143.433715, 64.821828],\n\t\t\t\t\t\t[-143.503643, 64.858251],\n\t\t\t\t\t\t[-143.525172, 64.960080],\n\t\t\t\t\t\t[-143.364478, 64.996996],\n\t\t\t\t\t\t[-143.081816, 65.120937],\n\t\t\t\t\t\t[-142.847089, 65.145564],\n\t\t\t\t\t\t[-142.731900, 65.233639],\n\t\t\t\t\t\t[-142.726364, 65.307742],\n\t\t\t\t\t\t[-142.629971, 65.385368],\n\t\t\t\t\t\t[-142.487301, 65.371898],\n\t\t\t\t\t\t[-142.307081, 65.440633],\n\t\t\t\t\t\t[-142.121380, 65.471690],\n\t\t\t\t\t\t[-141.855761, 65.445786],\n\t\t\t\t\t\t[-141.789050, 65.501546],\n\t\t\t\t\t\t[-141.387842, 65.614395],\n\t\t\t\t\t\t[-141.336224, 65.711614],\n\t\t\t\t\t\t[-141.093233, 65.827388],\n\t\t\t\t\t\t[-141.002465, 65.839421],\n\t\t\t\t\t\t[-141.002020, 61.901922],\n\t\t\t\t\t\t[-141.828648, 61.901030],\n\t\t\t\t\t\t[-141.830194, 62.127580],\n\t\t\t\t\t\t[-142.017011, 62.127586],\n\t\t\t\t\t\t[-141.978417, 62.165011],\n\t\t\t\t\t\t[-141.963703, 62.510628],\n\t\t\t\t\t\t[-142.320598, 62.598671],\n\t\t\t\t\t\t[-142.314531, 62.683952],\n\t\t\t\t\t\t[-142.629088, 62.683657],\n\t\t\t\t\t\t[-142.736106, 62.702023],\n\t\t\t\t\t\t[-142.842155, 62.597198],\n\t\t\t\t\t\t[-143.104753, 62.613456],\n\t\t\t\t\t\t[-143.159193, 62.636952],\n\t\t\t\t\t\t[-143.138459, 62.691159],\n\t\t\t\t\t\t[-143.007728, 62.766011],\n\t\t\t\t\t\t[-143.196314, 62.826152],\n\t\t\t\t\t\t[-143.027483, 62.935424],\n\t\t\t\t\t\t[-143.001212, 62.993787],\n\t\t\t\t\t\t[-143.088616, 63.008567],\n\t\t\t\t\t\t[-143.126854, 63.115888],\n\t\t\t\t\t\t[-143.876857, 63.113153],\n\t\t\t\t\t\t[-144.576439, 63.117871],\n\t\t\t\t\t\t[-144.575427, 63.133381],\n\t\t\t\t\t\t[-145.148422, 63.133568],\n\t\t\t\t\t\t[-145.148881, 63.222211],\n\t\t\t\t\t\t[-146.111233, 63.221250],\n\t\t\t\t\t\t[-146.140827, 63.184013],\n\t\t\t\t\t\t[-146.329260, 63.190562],\n\t\t\t\t\t\t[-146.484119, 63.173325]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05149\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"149\",\n\t\t\t\t\"NAME\": \"Yell\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 929.984000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.896109, 35.170678],\n\t\t\t\t\t\t[-93.040525, 35.076923],\n\t\t\t\t\t\t[-93.181478, 34.976390],\n\t\t\t\t\t\t[-93.288284, 34.860992],\n\t\t\t\t\t\t[-93.287785, 34.773193],\n\t\t\t\t\t\t[-93.394456, 34.772355],\n\t\t\t\t\t\t[-93.394289, 34.743393],\n\t\t\t\t\t\t[-93.710297, 34.745296],\n\t\t\t\t\t\t[-93.704885, 35.019715],\n\t\t\t\t\t\t[-93.706692, 35.134943],\n\t\t\t\t\t\t[-93.529838, 35.145441],\n\t\t\t\t\t\t[-93.457022, 35.215782],\n\t\t\t\t\t\t[-93.279959, 35.212552],\n\t\t\t\t\t\t[-93.278293, 35.317402],\n\t\t\t\t\t\t[-93.156078, 35.235307],\n\t\t\t\t\t\t[-93.084678, 35.127390],\n\t\t\t\t\t\t[-92.896109, 35.170678]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06011\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"011\",\n\t\t\t\t\"NAME\": \"Colusa\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1150.731000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-121.908269, 39.303878],\n\t\t\t\t\t\t[-121.945509, 39.180959],\n\t\t\t\t\t\t[-121.847964, 39.070817],\n\t\t\t\t\t\t[-121.835488, 38.924481],\n\t\t\t\t\t\t[-122.337967, 38.923945],\n\t\t\t\t\t\t[-122.340172, 38.924246],\n\t\t\t\t\t\t[-122.492215, 39.054092],\n\t\t\t\t\t\t[-122.476083, 39.172609],\n\t\t\t\t\t\t[-122.680927, 39.238726],\n\t\t\t\t\t\t[-122.775043, 39.311778],\n\t\t\t\t\t\t[-122.785090, 39.382975],\n\t\t\t\t\t\t[-122.739062, 39.383266],\n\t\t\t\t\t\t[-122.136006, 39.385494],\n\t\t\t\t\t\t[-122.136161, 39.414499],\n\t\t\t\t\t\t[-121.890013, 39.383864],\n\t\t\t\t\t\t[-121.908269, 39.303878]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06027\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"027\",\n\t\t\t\t\"NAME\": \"Inyo\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 10180.879000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-117.832726, 37.464929],\n\t\t\t\t\t\t[-117.500909, 37.220282],\n\t\t\t\t\t\t[-117.166187, 36.970862],\n\t\t\t\t\t\t[-117.000895, 36.847694],\n\t\t\t\t\t\t[-116.488233, 36.459097],\n\t\t\t\t\t\t[-116.097216, 36.158346],\n\t\t\t\t\t\t[-116.093601, 36.155805],\n\t\t\t\t\t\t[-115.912858, 36.015359],\n\t\t\t\t\t\t[-115.892975, 35.999967],\n\t\t\t\t\t\t[-115.846080, 35.963596],\n\t\t\t\t\t\t[-115.689302, 35.842003],\n\t\t\t\t\t\t[-115.648029, 35.809629],\n\t\t\t\t\t\t[-115.648925, 35.809128],\n\t\t\t\t\t\t[-115.735745, 35.809097],\n\t\t\t\t\t\t[-115.735891, 35.793620],\n\t\t\t\t\t\t[-117.632996, 35.797251],\n\t\t\t\t\t\t[-118.008043, 35.789161],\n\t\t\t\t\t\t[-117.998258, 35.868782],\n\t\t\t\t\t\t[-117.980761, 35.867515],\n\t\t\t\t\t\t[-118.003577, 35.983718],\n\t\t\t\t\t\t[-118.033611, 36.008944],\n\t\t\t\t\t\t[-118.127147, 36.279656],\n\t\t\t\t\t\t[-118.100317, 36.346137],\n\t\t\t\t\t\t[-118.214820, 36.435036],\n\t\t\t\t\t\t[-118.274624, 36.597334],\n\t\t\t\t\t\t[-118.366328, 36.691635],\n\t\t\t\t\t\t[-118.360586, 36.744773],\n\t\t\t\t\t\t[-118.437137, 37.059818],\n\t\t\t\t\t\t[-118.654593, 37.141826],\n\t\t\t\t\t\t[-118.665167, 37.261009],\n\t\t\t\t\t\t[-118.716016, 37.328208],\n\t\t\t\t\t\t[-118.786736, 37.343380],\n\t\t\t\t\t\t[-118.775014, 37.463052],\n\t\t\t\t\t\t[-117.832726, 37.464929]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06047\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"047\",\n\t\t\t\t\"NAME\": \"Merced\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1934.972000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-120.931374, 37.421753],\n\t\t\t\t\t\t[-120.387670, 37.633364],\n\t\t\t\t\t\t[-120.266010, 37.400607],\n\t\t\t\t\t\t[-120.143826, 37.239192],\n\t\t\t\t\t\t[-120.052055, 37.183108],\n\t\t\t\t\t\t[-120.400758, 37.117764],\n\t\t\t\t\t\t[-120.541696, 37.044505],\n\t\t\t\t\t\t[-120.590566, 36.952641],\n\t\t\t\t\t\t[-120.655950, 36.952832],\n\t\t\t\t\t\t[-120.918731, 36.740381],\n\t\t\t\t\t\t[-121.141523, 36.836656],\n\t\t\t\t\t\t[-121.215406, 36.961248],\n\t\t\t\t\t\t[-121.226804, 37.134774],\n\t\t\t\t\t\t[-120.964223, 37.345782],\n\t\t\t\t\t\t[-120.931374, 37.421753]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06063\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"063\",\n\t\t\t\t\"NAME\": \"Plumas\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2553.043000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-121.076695, 39.597264],\n\t\t\t\t\t\t[-121.360516, 39.840740],\n\t\t\t\t\t\t[-121.430012, 39.914833],\n\t\t\t\t\t\t[-121.366818, 40.086054],\n\t\t\t\t\t\t[-121.436886, 40.151905],\n\t\t\t\t\t\t[-121.368395, 40.212230],\n\t\t\t\t\t\t[-121.345571, 40.312667],\n\t\t\t\t\t\t[-121.470395, 40.350213],\n\t\t\t\t\t\t[-121.497635, 40.445591],\n\t\t\t\t\t\t[-121.327826, 40.445367],\n\t\t\t\t\t\t[-121.061417, 40.446536],\n\t\t\t\t\t\t[-121.061493, 40.256417],\n\t\t\t\t\t\t[-120.928582, 40.191931],\n\t\t\t\t\t\t[-120.764403, 40.316010],\n\t\t\t\t\t\t[-120.652158, 40.307656],\n\t\t\t\t\t\t[-120.510817, 40.248945],\n\t\t\t\t\t\t[-120.445892, 40.176854],\n\t\t\t\t\t\t[-120.341385, 40.115243],\n\t\t\t\t\t\t[-120.209641, 40.086008],\n\t\t\t\t\t\t[-120.201264, 40.013474],\n\t\t\t\t\t\t[-120.108761, 39.939510],\n\t\t\t\t\t\t[-120.110627, 39.765779],\n\t\t\t\t\t\t[-120.147149, 39.707658],\n\t\t\t\t\t\t[-120.792484, 39.709794],\n\t\t\t\t\t\t[-120.873618, 39.775875],\n\t\t\t\t\t\t[-121.009477, 39.639459],\n\t\t\t\t\t\t[-121.050922, 39.613801],\n\t\t\t\t\t\t[-121.052670, 39.612334],\n\t\t\t\t\t\t[-121.076695, 39.597264]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06077\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"077\",\n\t\t\t\t\"NAME\": \"San Joaquin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1391.322000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-120.926449, 38.077421],\n\t\t\t\t\t\t[-120.920665, 37.738392],\n\t\t\t\t\t\t[-120.995754, 37.760152],\n\t\t\t\t\t\t[-121.155849, 37.719844],\n\t\t\t\t\t\t[-121.258171, 37.653495],\n\t\t\t\t\t\t[-121.273751, 37.638330],\n\t\t\t\t\t\t[-121.333388, 37.591050],\n\t\t\t\t\t\t[-121.471925, 37.481783],\n\t\t\t\t\t\t[-121.556655, 37.542732],\n\t\t\t\t\t\t[-121.556936, 37.817218],\n\t\t\t\t\t\t[-121.550971, 37.831155],\n\t\t\t\t\t\t[-121.538931, 37.839563],\n\t\t\t\t\t\t[-121.536595, 37.844723],\n\t\t\t\t\t\t[-121.538026, 37.849622],\n\t\t\t\t\t\t[-121.549517, 37.856986],\n\t\t\t\t\t\t[-121.561813, 37.857135],\n\t\t\t\t\t\t[-121.569370, 37.858881],\n\t\t\t\t\t\t[-121.575463, 37.863118],\n\t\t\t\t\t\t[-121.574849, 37.885021],\n\t\t\t\t\t\t[-121.569113, 37.901521],\n\t\t\t\t\t\t[-121.559870, 37.920862],\n\t\t\t\t\t\t[-121.561937, 37.937612],\n\t\t\t\t\t\t[-121.563640, 37.946110],\n\t\t\t\t\t\t[-121.569889, 37.957495],\n\t\t\t\t\t\t[-121.574823, 37.973025],\n\t\t\t\t\t\t[-121.579943, 37.976113],\n\t\t\t\t\t\t[-121.580022, 38.094414],\n\t\t\t\t\t\t[-121.484317, 38.241509],\n\t\t\t\t\t\t[-121.344024, 38.228260],\n\t\t\t\t\t\t[-121.027084, 38.300252],\n\t\t\t\t\t\t[-120.995497, 38.225405],\n\t\t\t\t\t\t[-120.938850, 38.088321],\n\t\t\t\t\t\t[-120.926449, 38.077421]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06091\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"091\",\n\t\t\t\t\"NAME\": \"Sierra\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 953.214000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-120.001319, 39.722416],\n\t\t\t\t\t\t[-120.003116, 39.445113],\n\t\t\t\t\t\t[-120.003117, 39.445045],\n\t\t\t\t\t\t[-120.505445, 39.446117],\n\t\t\t\t\t\t[-120.575059, 39.522280],\n\t\t\t\t\t\t[-120.654332, 39.526889],\n\t\t\t\t\t\t[-120.755729, 39.452663],\n\t\t\t\t\t\t[-121.022085, 39.391558],\n\t\t\t\t\t\t[-121.034406, 39.514509],\n\t\t\t\t\t\t[-121.009477, 39.639459],\n\t\t\t\t\t\t[-120.873618, 39.775875],\n\t\t\t\t\t\t[-120.792484, 39.709794],\n\t\t\t\t\t\t[-120.147149, 39.707658],\n\t\t\t\t\t\t[-120.001319, 39.722416]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06107\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"107\",\n\t\t\t\t\"NAME\": \"Tulare\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 4824.215000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-119.214033, 35.790489],\n\t\t\t\t\t\t[-119.534559, 35.789758],\n\t\t\t\t\t\t[-119.538116, 35.789567],\n\t\t\t\t\t\t[-119.529358, 36.269850],\n\t\t\t\t\t\t[-119.474607, 36.269025],\n\t\t\t\t\t\t[-119.474892, 36.400953],\n\t\t\t\t\t\t[-119.528792, 36.401465],\n\t\t\t\t\t\t[-119.573194, 36.488835],\n\t\t\t\t\t\t[-119.466322, 36.575238],\n\t\t\t\t\t\t[-119.305102, 36.573725],\n\t\t\t\t\t\t[-119.304625, 36.660606],\n\t\t\t\t\t\t[-118.984779, 36.657147],\n\t\t\t\t\t\t[-118.982441, 36.741646],\n\t\t\t\t\t\t[-118.360586, 36.744773],\n\t\t\t\t\t\t[-118.366328, 36.691635],\n\t\t\t\t\t\t[-118.274624, 36.597334],\n\t\t\t\t\t\t[-118.214820, 36.435036],\n\t\t\t\t\t\t[-118.100317, 36.346137],\n\t\t\t\t\t\t[-118.127147, 36.279656],\n\t\t\t\t\t\t[-118.033611, 36.008944],\n\t\t\t\t\t\t[-118.003577, 35.983718],\n\t\t\t\t\t\t[-117.980761, 35.867515],\n\t\t\t\t\t\t[-117.998258, 35.868782],\n\t\t\t\t\t\t[-118.008043, 35.789161],\n\t\t\t\t\t\t[-118.270456, 35.790009],\n\t\t\t\t\t\t[-119.214033, 35.790489]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08011\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"011\",\n\t\t\t\t\"NAME\": \"Bent\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1512.861000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-103.403592, 37.792397],\n\t\t\t\t\t\t[-103.399938, 38.265435],\n\t\t\t\t\t\t[-102.742330, 38.266971],\n\t\t\t\t\t\t[-102.747615, 37.643642],\n\t\t\t\t\t\t[-103.075938, 37.643420],\n\t\t\t\t\t\t[-103.404339, 37.643576],\n\t\t\t\t\t\t[-103.403592, 37.792397]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08019\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"019\",\n\t\t\t\t\"NAME\": \"Clear Creek\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 395.227000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-105.398949, 39.566056],\n\t\t\t\t\t\t[-105.587986, 39.568197],\n\t\t\t\t\t\t[-105.642798, 39.566584],\n\t\t\t\t\t\t[-105.829662, 39.564865],\n\t\t\t\t\t\t[-105.793058, 39.636328],\n\t\t\t\t\t\t[-105.924618, 39.698972],\n\t\t\t\t\t\t[-105.887395, 39.796996],\n\t\t\t\t\t\t[-105.736426, 39.804801],\n\t\t\t\t\t\t[-105.690348, 39.851996],\n\t\t\t\t\t\t[-105.545076, 39.773635],\n\t\t\t\t\t\t[-105.397949, 39.747087],\n\t\t\t\t\t\t[-105.398949, 39.566056]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08027\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"027\",\n\t\t\t\t\"NAME\": \"Custer\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 738.625000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-105.049215, 38.257973],\n\t\t\t\t\t\t[-105.049917, 37.915479],\n\t\t\t\t\t\t[-105.194586, 38.007560],\n\t\t\t\t\t\t[-105.285076, 37.899421],\n\t\t\t\t\t\t[-105.317081, 37.938949],\n\t\t\t\t\t\t[-105.473204, 37.895970],\n\t\t\t\t\t\t[-105.604355, 38.008745],\n\t\t\t\t\t\t[-105.676270, 38.146173],\n\t\t\t\t\t\t[-105.796897, 38.265047],\n\t\t\t\t\t\t[-105.049215, 38.257973]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20013\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"013\",\n\t\t\t\t\"NAME\": \"Brown\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 570.872000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.788941, 39.653001],\n\t\t\t\t\t\t[-95.788315, 39.883502],\n\t\t\t\t\t\t[-95.788111, 40.000452],\n\t\t\t\t\t\t[-95.788024, 40.000452],\n\t\t\t\t\t\t[-95.784575, 40.000463],\n\t\t\t\t\t\t[-95.375257, 40.000000],\n\t\t\t\t\t\t[-95.339896, 39.999999],\n\t\t\t\t\t\t[-95.339740, 39.652980],\n\t\t\t\t\t\t[-95.564126, 39.652872],\n\t\t\t\t\t\t[-95.788941, 39.653001]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20023\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"023\",\n\t\t\t\t\"NAME\": \"Cheyenne\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1019.887000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-101.411043, 40.002365],\n\t\t\t\t\t\t[-101.411240, 39.999997],\n\t\t\t\t\t\t[-101.413913, 39.568361],\n\t\t\t\t\t\t[-102.049764, 39.568180],\n\t\t\t\t\t\t[-102.049806, 39.574058],\n\t\t\t\t\t\t[-102.049954, 39.592331],\n\t\t\t\t\t\t[-102.050594, 39.675594],\n\t\t\t\t\t\t[-102.051254, 39.818992],\n\t\t\t\t\t\t[-102.051318, 39.833311],\n\t\t\t\t\t\t[-102.051363, 39.843471],\n\t\t\t\t\t\t[-102.051569, 39.849805],\n\t\t\t\t\t\t[-102.051744, 40.003078],\n\t\t\t\t\t\t[-101.916696, 40.003142],\n\t\t\t\t\t\t[-101.904176, 40.003162],\n\t\t\t\t\t\t[-101.841025, 40.002784],\n\t\t\t\t\t\t[-101.832161, 40.002933],\n\t\t\t\t\t\t[-101.807687, 40.002798],\n\t\t\t\t\t\t[-101.804862, 40.002752],\n\t\t\t\t\t\t[-101.627071, 40.002620],\n\t\t\t\t\t\t[-101.625809, 40.002711],\n\t\t\t\t\t\t[-101.542273, 40.002609],\n\t\t\t\t\t\t[-101.417209, 40.002424],\n\t\t\t\t\t\t[-101.411043, 40.002365]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27071\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"071\",\n\t\t\t\t\"NAME\": \"Koochiching\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 3104.070000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.088438, 48.627597],\n\t\t\t\t\t\t[-93.096488, 48.067826],\n\t\t\t\t\t\t[-93.081158, 47.891870],\n\t\t\t\t\t\t[-93.775772, 47.898950],\n\t\t\t\t\t\t[-93.776173, 47.846404],\n\t\t\t\t\t\t[-94.418543, 47.845816],\n\t\t\t\t\t\t[-94.425771, 48.367339],\n\t\t\t\t\t\t[-94.428702, 48.367333],\n\t\t\t\t\t\t[-94.430273, 48.700909],\n\t\t\t\t\t\t[-94.431854, 48.706588],\n\t\t\t\t\t\t[-94.416191, 48.710948],\n\t\t\t\t\t\t[-94.388848, 48.711945],\n\t\t\t\t\t\t[-94.308446, 48.710239],\n\t\t\t\t\t\t[-94.290737, 48.707747],\n\t\t\t\t\t\t[-94.260541, 48.696381],\n\t\t\t\t\t\t[-94.251169, 48.683514],\n\t\t\t\t\t\t[-94.250497, 48.656654],\n\t\t\t\t\t\t[-94.250191, 48.656323],\n\t\t\t\t\t\t[-94.244394, 48.653442],\n\t\t\t\t\t\t[-94.224276, 48.649527],\n\t\t\t\t\t\t[-94.126336, 48.644447],\n\t\t\t\t\t\t[-94.052452, 48.644020],\n\t\t\t\t\t\t[-93.840754, 48.628548],\n\t\t\t\t\t\t[-93.834323, 48.624954],\n\t\t\t\t\t\t[-93.822644, 48.609067],\n\t\t\t\t\t\t[-93.806763, 48.577616],\n\t\t\t\t\t\t[-93.805369, 48.568393],\n\t\t\t\t\t\t[-93.811201, 48.542385],\n\t\t\t\t\t\t[-93.818375, 48.534442],\n\t\t\t\t\t\t[-93.818253, 48.530046],\n\t\t\t\t\t\t[-93.815178, 48.526508],\n\t\t\t\t\t\t[-93.794454, 48.516021],\n\t\t\t\t\t\t[-93.771741, 48.515825],\n\t\t\t\t\t\t[-93.756483, 48.515366],\n\t\t\t\t\t\t[-93.662337, 48.515708],\n\t\t\t\t\t\t[-93.544361, 48.529109],\n\t\t\t\t\t\t[-93.467504, 48.545664],\n\t\t\t\t\t\t[-93.460798, 48.550552],\n\t\t\t\t\t\t[-93.456675, 48.561834],\n\t\t\t\t\t\t[-93.457046, 48.567199],\n\t\t\t\t\t\t[-93.461731, 48.574030],\n\t\t\t\t\t\t[-93.466007, 48.587291],\n\t\t\t\t\t\t[-93.464308, 48.591792],\n\t\t\t\t\t\t[-93.403660, 48.607593],\n\t\t\t\t\t\t[-93.367025, 48.608283],\n\t\t\t\t\t\t[-93.347528, 48.626620],\n\t\t\t\t\t\t[-93.254854, 48.642784],\n\t\t\t\t\t\t[-93.207398, 48.642474],\n\t\t\t\t\t\t[-93.179990, 48.624926],\n\t\t\t\t\t\t[-93.142420, 48.624924],\n\t\t\t\t\t\t[-93.088438, 48.627597]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27079\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"079\",\n\t\t\t\t\"NAME\": \"Le Sueur\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 448.760000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.646696, 44.195993],\n\t\t\t\t\t\t[-93.727389, 44.196104],\n\t\t\t\t\t\t[-93.767971, 44.195836],\n\t\t\t\t\t\t[-93.768031, 44.239384],\n\t\t\t\t\t\t[-94.011834, 44.239192],\n\t\t\t\t\t\t[-93.932685, 44.344885],\n\t\t\t\t\t\t[-93.929550, 44.456640],\n\t\t\t\t\t\t[-93.910405, 44.543163],\n\t\t\t\t\t\t[-93.524327, 44.543618],\n\t\t\t\t\t\t[-93.525230, 44.195975],\n\t\t\t\t\t\t[-93.646696, 44.195993]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27087\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"087\",\n\t\t\t\t\"NAME\": \"Mahnomen\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 557.878000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.067621, 47.499136],\n\t\t\t\t\t\t[-95.563189, 47.500268],\n\t\t\t\t\t\t[-95.554248, 47.499893],\n\t\t\t\t\t\t[-95.551458, 47.500020],\n\t\t\t\t\t\t[-95.551186, 47.151453],\n\t\t\t\t\t\t[-96.067069, 47.151813],\n\t\t\t\t\t\t[-96.067621, 47.499136]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27101\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"101\",\n\t\t\t\t\"NAME\": \"Murray\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 704.702000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.462427, 43.847911],\n\t\t\t\t\t\t[-96.052320, 43.849070],\n\t\t\t\t\t\t[-96.064620, 43.849039],\n\t\t\t\t\t\t[-96.063778, 44.196425],\n\t\t\t\t\t\t[-95.593570, 44.195530],\n\t\t\t\t\t\t[-95.462547, 44.195942],\n\t\t\t\t\t\t[-95.462427, 43.847911]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27107\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"107\",\n\t\t\t\t\"NAME\": \"Norman\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 872.789000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.826655, 47.150539],\n\t\t\t\t\t\t[-96.832946, 47.237588],\n\t\t\t\t\t\t[-96.833019, 47.238095],\n\t\t\t\t\t\t[-96.852676, 47.374973],\n\t\t\t\t\t\t[-96.862312, 47.422333],\n\t\t\t\t\t\t[-96.853768, 47.499527],\n\t\t\t\t\t\t[-96.848923, 47.498991],\n\t\t\t\t\t\t[-96.067621, 47.499136],\n\t\t\t\t\t\t[-96.067069, 47.151813],\n\t\t\t\t\t\t[-96.194671, 47.151149],\n\t\t\t\t\t\t[-96.826655, 47.150539]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27125\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"125\",\n\t\t\t\t\"NAME\": \"Red Lake\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 432.407000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.709619, 47.935805],\n\t\t\t\t\t\t[-95.709148, 47.848594],\n\t\t\t\t\t\t[-95.836827, 47.848219],\n\t\t\t\t\t\t[-95.837177, 47.760894],\n\t\t\t\t\t\t[-96.351727, 47.760300],\n\t\t\t\t\t\t[-96.352708, 47.847328],\n\t\t\t\t\t\t[-96.482092, 47.847428],\n\t\t\t\t\t\t[-96.482550, 47.963595],\n\t\t\t\t\t\t[-95.709840, 47.964330],\n\t\t\t\t\t\t[-95.709619, 47.935805]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27131\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"131\",\n\t\t\t\t\"NAME\": \"Rice\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 495.684000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.281521, 44.543957],\n\t\t\t\t\t\t[-93.281686, 44.471998],\n\t\t\t\t\t\t[-93.039485, 44.471871],\n\t\t\t\t\t\t[-93.041159, 44.196726],\n\t\t\t\t\t\t[-93.045910, 44.196716],\n\t\t\t\t\t\t[-93.406565, 44.196377],\n\t\t\t\t\t\t[-93.525230, 44.195975],\n\t\t\t\t\t\t[-93.524327, 44.543618],\n\t\t\t\t\t\t[-93.281521, 44.543957]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27143\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"143\",\n\t\t\t\t\"NAME\": \"Sibley\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 588.779000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.929550, 44.456640],\n\t\t\t\t\t\t[-94.624200, 44.456030],\n\t\t\t\t\t\t[-94.629489, 44.716663],\n\t\t\t\t\t\t[-94.498074, 44.717171],\n\t\t\t\t\t\t[-94.497835, 44.629921],\n\t\t\t\t\t\t[-94.254719, 44.630311],\n\t\t\t\t\t\t[-94.254076, 44.717855],\n\t\t\t\t\t\t[-94.010494, 44.717464],\n\t\t\t\t\t\t[-93.888636, 44.717044],\n\t\t\t\t\t\t[-93.768039, 44.640303],\n\t\t\t\t\t\t[-93.857678, 44.621095],\n\t\t\t\t\t\t[-93.910405, 44.543163],\n\t\t\t\t\t\t[-93.929550, 44.456640]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27159\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"159\",\n\t\t\t\t\"NAME\": \"Wadena\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 536.268000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.787126, 46.803943],\n\t\t\t\t\t\t[-94.779121, 46.394215],\n\t\t\t\t\t\t[-94.731442, 46.368605],\n\t\t\t\t\t\t[-95.155570, 46.368880],\n\t\t\t\t\t\t[-95.163710, 46.717640],\n\t\t\t\t\t\t[-95.163010, 46.804720],\n\t\t\t\t\t\t[-94.787126, 46.803943]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27169\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"169\",\n\t\t\t\t\"NAME\": \"Winona\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 626.206000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.559197, 44.023959],\n\t\t\t\t\t\t[-91.547028, 44.022226],\n\t\t\t\t\t\t[-91.505918, 44.018651],\n\t\t\t\t\t\t[-91.463515, 44.009041],\n\t\t\t\t\t\t[-91.437380, 43.999962],\n\t\t\t\t\t\t[-91.432522, 43.996827],\n\t\t\t\t\t\t[-91.420114, 43.984243],\n\t\t\t\t\t\t[-91.363242, 43.926563],\n\t\t\t\t\t\t[-91.310991, 43.867381],\n\t\t\t\t\t\t[-91.298815, 43.856555],\n\t\t\t\t\t\t[-91.284138, 43.847065],\n\t\t\t\t\t\t[-91.730424, 43.846935],\n\t\t\t\t\t\t[-92.079292, 43.847080],\n\t\t\t\t\t\t[-92.079491, 44.106988],\n\t\t\t\t\t\t[-92.079397, 44.192722],\n\t\t\t\t\t\t[-91.862858, 44.193001],\n\t\t\t\t\t\t[-91.808064, 44.159262],\n\t\t\t\t\t\t[-91.740871, 44.133918],\n\t\t\t\t\t\t[-91.721552, 44.130342],\n\t\t\t\t\t\t[-91.672520, 44.091286],\n\t\t\t\t\t\t[-91.592070, 44.031372],\n\t\t\t\t\t\t[-91.580019, 44.026925],\n\t\t\t\t\t\t[-91.559197, 44.023959]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28007\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"007\",\n\t\t\t\t\"NAME\": \"Attala\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 734.982000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.645280, 33.285515],\n\t\t\t\t\t\t[-89.453808, 33.285942],\n\t\t\t\t\t\t[-89.316408, 33.285556],\n\t\t\t\t\t\t[-89.317855, 33.108871],\n\t\t\t\t\t\t[-89.319163, 32.931654],\n\t\t\t\t\t\t[-89.473311, 32.931115],\n\t\t\t\t\t\t[-89.730154, 32.929924],\n\t\t\t\t\t\t[-89.730016, 32.884773],\n\t\t\t\t\t\t[-89.965882, 32.879573],\n\t\t\t\t\t\t[-89.895518, 32.936014],\n\t\t\t\t\t\t[-89.749441, 33.214478],\n\t\t\t\t\t\t[-89.645280, 33.285515]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28023\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"023\",\n\t\t\t\t\"NAME\": \"Clarke\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 691.554000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.910459, 31.826649],\n\t\t\t\t\t\t[-88.913847, 32.224186],\n\t\t\t\t\t\t[-88.431707, 32.227662],\n\t\t\t\t\t\t[-88.438650, 32.172806],\n\t\t\t\t\t\t[-88.438710, 32.172078],\n\t\t\t\t\t\t[-88.454959, 32.040576],\n\t\t\t\t\t\t[-88.455039, 32.039719],\n\t\t\t\t\t\t[-88.468660, 31.933173],\n\t\t\t\t\t\t[-88.468879, 31.930262],\n\t\t\t\t\t\t[-88.469960, 31.893759],\n\t\t\t\t\t\t[-88.622394, 31.857193],\n\t\t\t\t\t\t[-88.910459, 31.826649]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28035\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"035\",\n\t\t\t\t\"NAME\": \"Forrest\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 466.314000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.348950, 31.010370],\n\t\t\t\t\t\t[-89.347863, 31.346700],\n\t\t\t\t\t\t[-89.451073, 31.346383],\n\t\t\t\t\t\t[-89.451616, 31.434029],\n\t\t\t\t\t\t[-89.420857, 31.434043],\n\t\t\t\t\t\t[-89.399178, 31.434029],\n\t\t\t\t\t\t[-89.146092, 31.434052],\n\t\t\t\t\t\t[-89.137967, 30.909877],\n\t\t\t\t\t\t[-89.340806, 30.909912],\n\t\t\t\t\t\t[-89.348950, 31.010370]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28043\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"043\",\n\t\t\t\t\"NAME\": \"Grenada\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 422.107000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.136787, 33.721648],\n\t\t\t\t\t\t[-90.136491, 33.809319],\n\t\t\t\t\t\t[-89.926294, 33.823854],\n\t\t\t\t\t\t[-89.926099, 33.897957],\n\t\t\t\t\t\t[-89.769296, 33.897137],\n\t\t\t\t\t\t[-89.769050, 33.867334],\n\t\t\t\t\t\t[-89.507353, 33.867469],\n\t\t\t\t\t\t[-89.507135, 33.721819],\n\t\t\t\t\t\t[-89.506927, 33.713980],\n\t\t\t\t\t\t[-89.506872, 33.677605],\n\t\t\t\t\t\t[-89.786890, 33.676727],\n\t\t\t\t\t\t[-90.127775, 33.676956],\n\t\t\t\t\t\t[-90.137011, 33.676944],\n\t\t\t\t\t\t[-90.136787, 33.721648]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36091\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"091\",\n\t\t\t\t\"NAME\": \"Saratoga\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 809.984000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-73.676762, 42.783277],\n\t\t\t\t\t\t[-73.688362, 42.775477],\n\t\t\t\t\t\t[-73.719863, 42.801277],\n\t\t\t\t\t\t[-73.722663, 42.820677],\n\t\t\t\t\t\t[-73.809369, 42.778869],\n\t\t\t\t\t\t[-73.895938, 42.851076],\n\t\t\t\t\t\t[-74.092980, 42.955868],\n\t\t\t\t\t\t[-74.093814, 42.959378],\n\t\t\t\t\t\t[-74.097467, 42.982934],\n\t\t\t\t\t\t[-74.140147, 43.253979],\n\t\t\t\t\t\t[-74.160100, 43.371532],\n\t\t\t\t\t\t[-73.884139, 43.398041],\n\t\t\t\t\t\t[-73.835811, 43.253756],\n\t\t\t\t\t\t[-73.594960, 43.306118],\n\t\t\t\t\t\t[-73.573342, 43.100545],\n\t\t\t\t\t\t[-73.635463, 42.941290],\n\t\t\t\t\t\t[-73.684610, 42.892399],\n\t\t\t\t\t\t[-73.659663, 42.818978],\n\t\t\t\t\t\t[-73.661362, 42.802977],\n\t\t\t\t\t\t[-73.672355, 42.795791],\n\t\t\t\t\t\t[-73.673463, 42.790276],\n\t\t\t\t\t\t[-73.676762, 42.783277]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36101\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"101\",\n\t\t\t\t\"NAME\": \"Steuben\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1390.559000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.965728, 42.001274],\n\t\t\t\t\t\t[-77.007536, 42.000819],\n\t\t\t\t\t\t[-77.007635, 42.000848],\n\t\t\t\t\t\t[-77.124693, 41.999395],\n\t\t\t\t\t\t[-77.505308, 42.000070],\n\t\t\t\t\t\t[-77.610028, 41.999519],\n\t\t\t\t\t\t[-77.749931, 41.998782],\n\t\t\t\t\t\t[-77.722964, 42.471216],\n\t\t\t\t\t\t[-77.659917, 42.580409],\n\t\t\t\t\t\t[-77.490889, 42.577288],\n\t\t\t\t\t\t[-77.366505, 42.576368],\n\t\t\t\t\t\t[-77.143795, 42.576869],\n\t\t\t\t\t\t[-77.107203, 42.483771],\n\t\t\t\t\t\t[-77.099657, 42.272356],\n\t\t\t\t\t\t[-76.965028, 42.278495],\n\t\t\t\t\t\t[-76.965728, 42.001274]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36113\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"113\",\n\t\t\t\t\"NAME\": \"Warren\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 866.952000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-73.868690, 43.762803],\n\t\t\t\t\t\t[-73.495503, 43.799319],\n\t\t\t\t\t\t[-73.438120, 43.803687],\n\t\t\t\t\t\t[-73.492893, 43.657303],\n\t\t\t\t\t\t[-73.628940, 43.486391],\n\t\t\t\t\t\t[-73.594960, 43.306118],\n\t\t\t\t\t\t[-73.835811, 43.253756],\n\t\t\t\t\t\t[-73.884139, 43.398041],\n\t\t\t\t\t\t[-74.160100, 43.371532],\n\t\t\t\t\t\t[-74.214625, 43.728703],\n\t\t\t\t\t\t[-74.057005, 43.744513],\n\t\t\t\t\t\t[-73.868690, 43.762803]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42011\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"011\",\n\t\t\t\t\"NAME\": \"Berks\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 856.506000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-75.739442, 40.579940],\n\t\t\t\t\t\t[-75.738038, 40.579105],\n\t\t\t\t\t\t[-75.694308, 40.551149],\n\t\t\t\t\t\t[-75.682238, 40.543638],\n\t\t\t\t\t\t[-75.529694, 40.446995],\n\t\t\t\t\t\t[-75.695955, 40.242359],\n\t\t\t\t\t\t[-75.696782, 40.241863],\n\t\t\t\t\t\t[-75.729863, 40.224489],\n\t\t\t\t\t\t[-75.873375, 40.137107],\n\t\t\t\t\t\t[-75.875162, 40.138071],\n\t\t\t\t\t\t[-76.091764, 40.277692],\n\t\t\t\t\t\t[-76.149509, 40.314454],\n\t\t\t\t\t\t[-76.151215, 40.315971],\n\t\t\t\t\t\t[-76.151994, 40.316540],\n\t\t\t\t\t\t[-76.440181, 40.495952],\n\t\t\t\t\t\t[-76.171624, 40.534947],\n\t\t\t\t\t\t[-76.012226, 40.577713],\n\t\t\t\t\t\t[-75.996233, 40.629971],\n\t\t\t\t\t\t[-75.993212, 40.639712],\n\t\t\t\t\t\t[-75.891473, 40.677270],\n\t\t\t\t\t\t[-75.766740, 40.597033],\n\t\t\t\t\t\t[-75.739442, 40.579940]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42019\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"019\",\n\t\t\t\t\"NAME\": \"Butler\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 788.604000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.160006, 40.886909],\n\t\t\t\t\t\t[-80.165290, 41.000470],\n\t\t\t\t\t\t[-80.096861, 41.069804],\n\t\t\t\t\t\t[-79.999779, 41.171861],\n\t\t\t\t\t\t[-79.694984, 41.172865],\n\t\t\t\t\t\t[-79.692350, 41.172028],\n\t\t\t\t\t\t[-79.690711, 41.170691],\n\t\t\t\t\t\t[-79.689994, 40.741362],\n\t\t\t\t\t\t[-79.692331, 40.716656],\n\t\t\t\t\t\t[-79.692615, 40.688784],\n\t\t\t\t\t\t[-79.692794, 40.674604],\n\t\t\t\t\t\t[-79.692357, 40.672857],\n\t\t\t\t\t\t[-79.692930, 40.669744],\n\t\t\t\t\t\t[-80.148451, 40.674290],\n\t\t\t\t\t\t[-80.148787, 40.676432],\n\t\t\t\t\t\t[-80.158534, 40.855157],\n\t\t\t\t\t\t[-80.160006, 40.886909]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42025\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"025\",\n\t\t\t\t\"NAME\": \"Carbon\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 381.460000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-75.997348, 40.912985],\n\t\t\t\t\t\t[-75.731930, 41.008220],\n\t\t\t\t\t\t[-75.771960, 41.076751],\n\t\t\t\t\t\t[-75.649637, 41.122344],\n\t\t\t\t\t\t[-75.495990, 40.987181],\n\t\t\t\t\t\t[-75.574590, 40.951323],\n\t\t\t\t\t\t[-75.474193, 40.814746],\n\t\t\t\t\t\t[-75.608985, 40.787387],\n\t\t\t\t\t\t[-75.757807, 40.735414],\n\t\t\t\t\t\t[-75.997348, 40.912985]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42037\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"037\",\n\t\t\t\t\"NAME\": \"Columbia\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 483.108000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.463481, 41.262612],\n\t\t\t\t\t\t[-76.460762, 41.264848],\n\t\t\t\t\t\t[-76.447597, 41.275629],\n\t\t\t\t\t\t[-76.407934, 41.308418],\n\t\t\t\t\t\t[-76.310133, 41.310199],\n\t\t\t\t\t\t[-76.317916, 41.205384],\n\t\t\t\t\t\t[-76.228975, 41.138466],\n\t\t\t\t\t\t[-76.207827, 40.949740],\n\t\t\t\t\t\t[-76.284611, 40.883588],\n\t\t\t\t\t\t[-76.307170, 40.801809],\n\t\t\t\t\t\t[-76.380152, 40.775511],\n\t\t\t\t\t\t[-76.409667, 40.833624],\n\t\t\t\t\t\t[-76.501312, 40.824817],\n\t\t\t\t\t\t[-76.528034, 40.882515],\n\t\t\t\t\t\t[-76.514951, 40.958959],\n\t\t\t\t\t\t[-76.618971, 41.063759],\n\t\t\t\t\t\t[-76.640767, 41.155718],\n\t\t\t\t\t\t[-76.592607, 41.157765],\n\t\t\t\t\t\t[-76.463481, 41.262612]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42053\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"053\",\n\t\t\t\t\"NAME\": \"Forest\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 427.185000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.402653, 41.625968],\n\t\t\t\t\t\t[-78.956042, 41.623402],\n\t\t\t\t\t\t[-78.958957, 41.437061],\n\t\t\t\t\t\t[-79.063520, 41.453207],\n\t\t\t\t\t\t[-79.095096, 41.340658],\n\t\t\t\t\t\t[-79.208878, 41.331861],\n\t\t\t\t\t\t[-79.207196, 41.430922],\n\t\t\t\t\t\t[-79.400269, 41.436145],\n\t\t\t\t\t\t[-79.477822, 41.386479],\n\t\t\t\t\t\t[-79.512276, 41.465240],\n\t\t\t\t\t\t[-79.512070, 41.624559],\n\t\t\t\t\t\t[-79.402653, 41.625968]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42057\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"057\",\n\t\t\t\t\"NAME\": \"Fulton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 437.551000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.342520, 39.722539],\n\t\t\t\t\t\t[-78.342834, 39.722539],\n\t\t\t\t\t\t[-78.380599, 39.722554],\n\t\t\t\t\t\t[-78.299003, 39.825500],\n\t\t\t\t\t\t[-78.134863, 40.165131],\n\t\t\t\t\t\t[-77.925905, 40.101911],\n\t\t\t\t\t\t[-77.864489, 40.061568],\n\t\t\t\t\t\t[-77.920952, 40.000450],\n\t\t\t\t\t\t[-78.002700, 39.826599],\n\t\t\t\t\t\t[-78.099140, 39.722322],\n\t\t\t\t\t\t[-78.202895, 39.722416],\n\t\t\t\t\t\t[-78.204450, 39.722520],\n\t\t\t\t\t\t[-78.240334, 39.722498],\n\t\t\t\t\t\t[-78.243103, 39.722481],\n\t\t\t\t\t\t[-78.268948, 39.722590],\n\t\t\t\t\t\t[-78.269020, 39.722613],\n\t\t\t\t\t\t[-78.330715, 39.722689],\n\t\t\t\t\t\t[-78.337111, 39.722461],\n\t\t\t\t\t\t[-78.339539, 39.722552],\n\t\t\t\t\t\t[-78.340498, 39.722514],\n\t\t\t\t\t\t[-78.342520, 39.722539]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42075\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"075\",\n\t\t\t\t\"NAME\": \"Lebanon\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 361.833000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.151994, 40.316540],\n\t\t\t\t\t\t[-76.151215, 40.315971],\n\t\t\t\t\t\t[-76.307578, 40.255066],\n\t\t\t\t\t\t[-76.566339, 40.196644],\n\t\t\t\t\t\t[-76.678040, 40.474717],\n\t\t\t\t\t\t[-76.535414, 40.555157],\n\t\t\t\t\t\t[-76.440181, 40.495952],\n\t\t\t\t\t\t[-76.151994, 40.316540]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42081\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"081\",\n\t\t\t\t\"NAME\": \"Lycoming\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1228.594000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.463481, 41.262612],\n\t\t\t\t\t\t[-76.592607, 41.157765],\n\t\t\t\t\t\t[-76.640767, 41.155718],\n\t\t\t\t\t\t[-76.678776, 41.154172],\n\t\t\t\t\t\t[-76.732672, 41.172040],\n\t\t\t\t\t\t[-76.788659, 41.175762],\n\t\t\t\t\t\t[-76.880963, 41.158044],\n\t\t\t\t\t\t[-76.888145, 41.153807],\n\t\t\t\t\t\t[-76.896114, 41.139070],\n\t\t\t\t\t\t[-76.977939, 41.087883],\n\t\t\t\t\t\t[-77.144111, 41.068840],\n\t\t\t\t\t\t[-77.320891, 41.218932],\n\t\t\t\t\t\t[-77.526537, 41.358528],\n\t\t\t\t\t\t[-77.598129, 41.478576],\n\t\t\t\t\t\t[-77.599278, 41.542271],\n\t\t\t\t\t\t[-77.008710, 41.549883],\n\t\t\t\t\t\t[-76.874714, 41.596919],\n\t\t\t\t\t\t[-76.813731, 41.590034],\n\t\t\t\t\t\t[-76.749497, 41.405572],\n\t\t\t\t\t\t[-76.592532, 41.304332],\n\t\t\t\t\t\t[-76.447597, 41.275629],\n\t\t\t\t\t\t[-76.460762, 41.264848],\n\t\t\t\t\t\t[-76.463481, 41.262612]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42099\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"099\",\n\t\t\t\t\"NAME\": \"Perry\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 551.445000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.083942, 40.301220],\n\t\t\t\t\t\t[-77.229166, 40.283744],\n\t\t\t\t\t\t[-77.241691, 40.282847],\n\t\t\t\t\t\t[-77.270057, 40.278652],\n\t\t\t\t\t\t[-77.280548, 40.275923],\n\t\t\t\t\t\t[-77.419795, 40.264070],\n\t\t\t\t\t\t[-77.366018, 40.313569],\n\t\t\t\t\t\t[-77.614665, 40.198549],\n\t\t\t\t\t\t[-77.671761, 40.289825],\n\t\t\t\t\t\t[-77.540141, 40.399221],\n\t\t\t\t\t\t[-77.338110, 40.495336],\n\t\t\t\t\t\t[-77.169960, 40.562726],\n\t\t\t\t\t\t[-77.182930, 40.582140],\n\t\t\t\t\t\t[-76.949414, 40.628163],\n\t\t\t\t\t\t[-76.957444, 40.594677],\n\t\t\t\t\t\t[-76.983673, 40.578259],\n\t\t\t\t\t\t[-76.991939, 40.561475],\n\t\t\t\t\t\t[-76.949397, 40.469037],\n\t\t\t\t\t\t[-77.028645, 40.391197],\n\t\t\t\t\t\t[-76.933589, 40.356045],\n\t\t\t\t\t\t[-76.928521, 40.347985],\n\t\t\t\t\t\t[-76.926180, 40.340980],\n\t\t\t\t\t\t[-76.917270, 40.332715],\n\t\t\t\t\t\t[-76.914970, 40.328484],\n\t\t\t\t\t\t[-77.083942, 40.301220]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42117\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"117\",\n\t\t\t\t\"NAME\": \"Tioga\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1133.788000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.008710, 41.549883],\n\t\t\t\t\t\t[-77.599278, 41.542271],\n\t\t\t\t\t\t[-77.610028, 41.999519],\n\t\t\t\t\t\t[-77.505308, 42.000070],\n\t\t\t\t\t\t[-77.124693, 41.999395],\n\t\t\t\t\t\t[-77.007635, 42.000848],\n\t\t\t\t\t\t[-77.007536, 42.000819],\n\t\t\t\t\t\t[-76.965728, 42.001274],\n\t\t\t\t\t\t[-76.965686, 42.001274],\n\t\t\t\t\t\t[-76.942585, 42.001574],\n\t\t\t\t\t\t[-76.937084, 42.001674],\n\t\t\t\t\t\t[-76.927084, 42.001674],\n\t\t\t\t\t\t[-76.893201, 41.748463],\n\t\t\t\t\t\t[-76.883511, 41.666314],\n\t\t\t\t\t\t[-76.878699, 41.620344],\n\t\t\t\t\t\t[-76.874714, 41.596919],\n\t\t\t\t\t\t[-77.008710, 41.549883]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42131\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"131\",\n\t\t\t\t\"NAME\": \"Wyoming\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 397.324000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.283100, 41.376517],\n\t\t\t\t\t\t[-76.223866, 41.524544],\n\t\t\t\t\t\t[-76.220139, 41.541285],\n\t\t\t\t\t\t[-76.197998, 41.647823],\n\t\t\t\t\t\t[-76.115172, 41.651825],\n\t\t\t\t\t\t[-75.719887, 41.642263],\n\t\t\t\t\t\t[-75.834695, 41.427246],\n\t\t\t\t\t\t[-76.005070, 41.384551],\n\t\t\t\t\t\t[-76.283100, 41.376517]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72149\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"149\",\n\t\t\t\t\"NAME\": \"Villalba\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 35.637000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-66.521899, 18.151954],\n\t\t\t\t\t\t[-66.444560, 18.176674],\n\t\t\t\t\t\t[-66.430314, 18.082053],\n\t\t\t\t\t\t[-66.528745, 18.100673],\n\t\t\t\t\t\t[-66.521899, 18.151954]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01005\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"005\",\n\t\t\t\t\"NAME\": \"Barbour\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 884.876000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.056029, 32.063055],\n\t\t\t\t\t\t[-85.050212, 32.024196],\n\t\t\t\t\t\t[-85.062246, 31.991857],\n\t\t\t\t\t\t[-85.072330, 31.964758],\n\t\t\t\t\t\t[-85.082130, 31.944658],\n\t\t\t\t\t\t[-85.106630, 31.915159],\n\t\t\t\t\t\t[-85.132931, 31.888260],\n\t\t\t\t\t\t[-85.141831, 31.839861],\n\t\t\t\t\t\t[-85.141331, 31.783163],\n\t\t\t\t\t\t[-85.138668, 31.780425],\n\t\t\t\t\t\t[-85.130731, 31.772263],\n\t\t\t\t\t\t[-85.125230, 31.767063],\n\t\t\t\t\t\t[-85.124501, 31.763081],\n\t\t\t\t\t\t[-85.216076, 31.702409],\n\t\t\t\t\t\t[-85.416038, 31.706664],\n\t\t\t\t\t\t[-85.416437, 31.619466],\n\t\t\t\t\t\t[-85.748251, 31.618048],\n\t\t\t\t\t\t[-85.666230, 31.772877],\n\t\t\t\t\t\t[-85.657668, 31.880275],\n\t\t\t\t\t\t[-85.587344, 31.997355],\n\t\t\t\t\t\t[-85.428476, 32.014951],\n\t\t\t\t\t\t[-85.410241, 32.146651],\n\t\t\t\t\t\t[-85.257747, 32.148251],\n\t\t\t\t\t\t[-85.185067, 32.061708],\n\t\t\t\t\t\t[-85.056029, 32.063055]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01013\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"013\",\n\t\t\t\t\"NAME\": \"Butler\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 776.829000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.701554, 31.523946],\n\t\t\t\t\t\t[-86.839386, 31.525204],\n\t\t\t\t\t\t[-86.906769, 31.632671],\n\t\t\t\t\t\t[-86.905899, 31.753035],\n\t\t\t\t\t\t[-86.906899, 31.830628],\n\t\t\t\t\t\t[-86.908939, 31.961673],\n\t\t\t\t\t\t[-86.857583, 31.962167],\n\t\t\t\t\t\t[-86.448198, 31.964629],\n\t\t\t\t\t\t[-86.448635, 31.655617],\n\t\t\t\t\t\t[-86.499533, 31.655247],\n\t\t\t\t\t\t[-86.499213, 31.525331],\n\t\t\t\t\t\t[-86.690217, 31.523693],\n\t\t\t\t\t\t[-86.701554, 31.523946]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01019\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"019\",\n\t\t\t\t\"NAME\": \"Cherokee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 553.700000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.512108, 34.518252],\n\t\t\t\t\t\t[-85.508384, 34.501212],\n\t\t\t\t\t\t[-85.502454, 34.474527],\n\t\t\t\t\t\t[-85.502316, 34.473954],\n\t\t\t\t\t\t[-85.462304, 34.286365],\n\t\t\t\t\t\t[-85.458693, 34.269437],\n\t\t\t\t\t\t[-85.458071, 34.265736],\n\t\t\t\t\t\t[-85.455371, 34.252854],\n\t\t\t\t\t\t[-85.455057, 34.250689],\n\t\t\t\t\t\t[-85.421731, 34.080821],\n\t\t\t\t\t\t[-85.398837, 33.964129],\n\t\t\t\t\t\t[-85.530094, 33.941423],\n\t\t\t\t\t\t[-85.529432, 33.955980],\n\t\t\t\t\t\t[-85.738975, 33.968460],\n\t\t\t\t\t\t[-85.843617, 34.200006],\n\t\t\t\t\t\t[-85.636645, 34.366622],\n\t\t\t\t\t\t[-85.576981, 34.483543],\n\t\t\t\t\t\t[-85.513699, 34.524133],\n\t\t\t\t\t\t[-85.512108, 34.518252]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06041\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"041\",\n\t\t\t\t\"NAME\": \"Marin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 520.306000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-122.490727, 38.109755],\n\t\t\t\t\t\t[-122.491283, 38.108087],\n\t\t\t\t\t\t[-122.489974, 38.096961],\n\t\t\t\t\t\t[-122.486702, 38.090088],\n\t\t\t\t\t\t[-122.483757, 38.071762],\n\t\t\t\t\t\t[-122.492265, 38.056381],\n\t\t\t\t\t\t[-122.499465, 38.032165],\n\t\t\t\t\t\t[-122.497828, 38.019402],\n\t\t\t\t\t\t[-122.494556, 38.015148],\n\t\t\t\t\t\t[-122.481466, 38.007621],\n\t\t\t\t\t\t[-122.462812, 38.003367],\n\t\t\t\t\t\t[-122.452995, 37.996167],\n\t\t\t\t\t\t[-122.448413, 37.988313],\n\t\t\t\t\t\t[-122.448413, 37.984713],\n\t\t\t\t\t\t[-122.456595, 37.978823],\n\t\t\t\t\t\t[-122.462485, 37.981441],\n\t\t\t\t\t\t[-122.471975, 37.981768],\n\t\t\t\t\t\t[-122.488665, 37.966714],\n\t\t\t\t\t\t[-122.490302, 37.964751],\n\t\t\t\t\t\t[-122.490302, 37.959188],\n\t\t\t\t\t\t[-122.487684, 37.948716],\n\t\t\t\t\t\t[-122.480484, 37.945443],\n\t\t\t\t\t\t[-122.479175, 37.941516],\n\t\t\t\t\t\t[-122.485720, 37.937589],\n\t\t\t\t\t\t[-122.499465, 37.939225],\n\t\t\t\t\t\t[-122.503064, 37.936607],\n\t\t\t\t\t\t[-122.503064, 37.928753],\n\t\t\t\t\t\t[-122.493574, 37.921881],\n\t\t\t\t\t\t[-122.486375, 37.921881],\n\t\t\t\t\t\t[-122.478193, 37.918608],\n\t\t\t\t\t\t[-122.471975, 37.910427],\n\t\t\t\t\t\t[-122.472303, 37.902573],\n\t\t\t\t\t\t[-122.458558, 37.894064],\n\t\t\t\t\t\t[-122.448413, 37.893410],\n\t\t\t\t\t\t[-122.439250, 37.883920],\n\t\t\t\t\t\t[-122.438268, 37.880974],\n\t\t\t\t\t\t[-122.450050, 37.871157],\n\t\t\t\t\t\t[-122.462158, 37.868866],\n\t\t\t\t\t\t[-122.474266, 37.874429],\n\t\t\t\t\t\t[-122.480811, 37.873448],\n\t\t\t\t\t\t[-122.483429, 37.868866],\n\t\t\t\t\t\t[-122.483102, 37.863957],\n\t\t\t\t\t\t[-122.476536, 37.832812],\n\t\t\t\t\t\t[-122.476473, 37.832513],\n\t\t\t\t\t\t[-122.479151, 37.825428],\n\t\t\t\t\t\t[-122.479860, 37.825641],\n\t\t\t\t\t\t[-122.483483, 37.826728],\n\t\t\t\t\t\t[-122.492474, 37.824840],\n\t\t\t\t\t\t[-122.505383, 37.822128],\n\t\t\t\t\t\t[-122.522836, 37.824717],\n\t\t\t\t\t\t[-122.523585, 37.824828],\n\t\t\t\t\t\t[-122.537285, 37.830328],\n\t\t\t\t\t\t[-122.548986, 37.836227],\n\t\t\t\t\t\t[-122.561487, 37.851827],\n\t\t\t\t\t\t[-122.584289, 37.859227],\n\t\t\t\t\t\t[-122.601290, 37.875126],\n\t\t\t\t\t\t[-122.627113, 37.886080],\n\t\t\t\t\t\t[-122.639977, 37.897349],\n\t\t\t\t\t\t[-122.656519, 37.904519],\n\t\t\t\t\t\t[-122.678474, 37.906604],\n\t\t\t\t\t\t[-122.682171, 37.906450],\n\t\t\t\t\t\t[-122.693569, 37.901171],\n\t\t\t\t\t\t[-122.702640, 37.893820],\n\t\t\t\t\t\t[-122.727297, 37.904626],\n\t\t\t\t\t\t[-122.732898, 37.920225],\n\t\t\t\t\t\t[-122.736898, 37.925825],\n\t\t\t\t\t\t[-122.754606, 37.935527],\n\t\t\t\t\t\t[-122.766138, 37.938004],\n\t\t\t\t\t\t[-122.783244, 37.951334],\n\t\t\t\t\t\t[-122.791739, 37.969422],\n\t\t\t\t\t\t[-122.797405, 37.976657],\n\t\t\t\t\t\t[-122.821383, 37.996735],\n\t\t\t\t\t\t[-122.856573, 38.016717],\n\t\t\t\t\t\t[-122.882114, 38.025273],\n\t\t\t\t\t\t[-122.939711, 38.031908],\n\t\t\t\t\t\t[-122.956811, 38.028720],\n\t\t\t\t\t\t[-122.972378, 38.020247],\n\t\t\t\t\t\t[-122.981776, 38.009119],\n\t\t\t\t\t\t[-122.982386, 38.004274],\n\t\t\t\t\t\t[-122.980147, 38.000831],\n\t\t\t\t\t\t[-122.976764, 37.995680],\n\t\t\t\t\t\t[-122.974390, 37.992429],\n\t\t\t\t\t\t[-123.024066, 37.994878],\n\t\t\t\t\t\t[-123.020562, 37.999544],\n\t\t\t\t\t\t[-123.016303, 38.001691],\n\t\t\t\t\t\t[-123.011533, 38.003438],\n\t\t\t\t\t\t[-122.992420, 38.041758],\n\t\t\t\t\t\t[-122.960889, 38.112962],\n\t\t\t\t\t\t[-122.952086, 38.138562],\n\t\t\t\t\t\t[-122.949074, 38.154060],\n\t\t\t\t\t\t[-122.949626, 38.164041],\n\t\t\t\t\t\t[-122.953629, 38.175670],\n\t\t\t\t\t\t[-122.965408, 38.187113],\n\t\t\t\t\t\t[-122.966370, 38.198514],\n\t\t\t\t\t\t[-122.968112, 38.202428],\n\t\t\t\t\t\t[-122.991953, 38.233185],\n\t\t\t\t\t\t[-122.993959, 38.237602],\n\t\t\t\t\t\t[-122.993235, 38.239686],\n\t\t\t\t\t\t[-122.987149, 38.237538],\n\t\t\t\t\t\t[-122.968569, 38.242879],\n\t\t\t\t\t\t[-122.967203, 38.250691],\n\t\t\t\t\t\t[-122.977082, 38.267902],\n\t\t\t\t\t\t[-122.986319, 38.273164],\n\t\t\t\t\t\t[-122.994603, 38.283096],\n\t\t\t\t\t\t[-122.997106, 38.289458],\n\t\t\t\t\t\t[-123.002911, 38.295708],\n\t\t\t\t\t\t[-122.901726, 38.316943],\n\t\t\t\t\t\t[-122.739900, 38.207018],\n\t\t\t\t\t\t[-122.648986, 38.181077],\n\t\t\t\t\t\t[-122.565093, 38.182217],\n\t\t\t\t\t\t[-122.490727, 38.109755]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06053\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"053\",\n\t\t\t\t\"NAME\": \"Monterey\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 3280.595000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-120.213979, 35.789276],\n\t\t\t\t\t\t[-121.175695, 35.794102],\n\t\t\t\t\t\t[-121.346363, 35.795183],\n\t\t\t\t\t\t[-121.356737, 35.804187],\n\t\t\t\t\t\t[-121.388053, 35.823483],\n\t\t\t\t\t\t[-121.406823, 35.844623],\n\t\t\t\t\t\t[-121.413146, 35.855316],\n\t\t\t\t\t\t[-121.426955, 35.860103],\n\t\t\t\t\t\t[-121.439584, 35.866950],\n\t\t\t\t\t\t[-121.462264, 35.885618],\n\t\t\t\t\t\t[-121.461227, 35.896906],\n\t\t\t\t\t\t[-121.463452, 35.904416],\n\t\t\t\t\t\t[-121.472435, 35.919890],\n\t\t\t\t\t\t[-121.486200, 35.970348],\n\t\t\t\t\t\t[-121.503112, 36.000299],\n\t\t\t\t\t\t[-121.511590, 36.006598],\n\t\t\t\t\t\t[-121.531876, 36.014368],\n\t\t\t\t\t\t[-121.553716, 36.019798],\n\t\t\t\t\t\t[-121.569612, 36.021539],\n\t\t\t\t\t\t[-121.574602, 36.025156],\n\t\t\t\t\t\t[-121.590395, 36.050363],\n\t\t\t\t\t\t[-121.589183, 36.053775],\n\t\t\t\t\t\t[-121.592853, 36.065062],\n\t\t\t\t\t\t[-121.606845, 36.072065],\n\t\t\t\t\t\t[-121.618672, 36.087767],\n\t\t\t\t\t\t[-121.622009, 36.099695],\n\t\t\t\t\t\t[-121.629634, 36.114452],\n\t\t\t\t\t\t[-121.680145, 36.165818],\n\t\t\t\t\t\t[-121.717176, 36.195146],\n\t\t\t\t\t\t[-121.779851, 36.227407],\n\t\t\t\t\t\t[-121.797059, 36.234211],\n\t\t\t\t\t\t[-121.806979, 36.232907],\n\t\t\t\t\t\t[-121.813734, 36.234235],\n\t\t\t\t\t\t[-121.826425, 36.241860],\n\t\t\t\t\t\t[-121.835785, 36.250748],\n\t\t\t\t\t\t[-121.839350, 36.260478],\n\t\t\t\t\t\t[-121.851967, 36.277831],\n\t\t\t\t\t\t[-121.874797, 36.289064],\n\t\t\t\t\t\t[-121.888491, 36.302810],\n\t\t\t\t\t\t[-121.894714, 36.317806],\n\t\t\t\t\t\t[-121.892917, 36.340428],\n\t\t\t\t\t\t[-121.905446, 36.358269],\n\t\t\t\t\t\t[-121.902669, 36.363901],\n\t\t\t\t\t\t[-121.901813, 36.381879],\n\t\t\t\t\t\t[-121.903195, 36.393603],\n\t\t\t\t\t\t[-121.905657, 36.398206],\n\t\t\t\t\t\t[-121.914378, 36.404344],\n\t\t\t\t\t\t[-121.917463, 36.414809],\n\t\t\t\t\t\t[-121.914740, 36.425890],\n\t\t\t\t\t\t[-121.925500, 36.453918],\n\t\t\t\t\t\t[-121.937205, 36.472488],\n\t\t\t\t\t\t[-121.941600, 36.485602],\n\t\t\t\t\t\t[-121.939216, 36.496896],\n\t\t\t\t\t\t[-121.938763, 36.506423],\n\t\t\t\t\t\t[-121.943678, 36.511802],\n\t\t\t\t\t\t[-121.944666, 36.521861],\n\t\t\t\t\t\t[-121.928769, 36.523147],\n\t\t\t\t\t\t[-121.925937, 36.525173],\n\t\t\t\t\t\t[-121.932508, 36.559935],\n\t\t\t\t\t\t[-121.942533, 36.566435],\n\t\t\t\t\t\t[-121.949659, 36.567602],\n\t\t\t\t\t\t[-121.951460, 36.564009],\n\t\t\t\t\t\t[-121.957335, 36.564482],\n\t\t\t\t\t\t[-121.972594, 36.573370],\n\t\t\t\t\t\t[-121.978592, 36.580488],\n\t\t\t\t\t\t[-121.970427, 36.582754],\n\t\t\t\t\t\t[-121.941666, 36.618059],\n\t\t\t\t\t\t[-121.938551, 36.633908],\n\t\t\t\t\t\t[-121.936430, 36.636746],\n\t\t\t\t\t\t[-121.929666, 36.636959],\n\t\t\t\t\t\t[-121.923866, 36.634559],\n\t\t\t\t\t\t[-121.890164, 36.609259],\n\t\t\t\t\t\t[-121.889064, 36.601759],\n\t\t\t\t\t\t[-121.886764, 36.601459],\n\t\t\t\t\t\t[-121.871364, 36.604559],\n\t\t\t\t\t\t[-121.860604, 36.611136],\n\t\t\t\t\t\t[-121.842263, 36.630059],\n\t\t\t\t\t\t[-121.831995, 36.644856],\n\t\t\t\t\t\t[-121.825052, 36.657207],\n\t\t\t\t\t\t[-121.814462, 36.682858],\n\t\t\t\t\t\t[-121.807062, 36.714157],\n\t\t\t\t\t\t[-121.805643, 36.750239],\n\t\t\t\t\t\t[-121.788278, 36.803994],\n\t\t\t\t\t\t[-121.791544, 36.815186],\n\t\t\t\t\t\t[-121.809363, 36.848654],\n\t\t\t\t\t\t[-121.810552, 36.850648],\n\t\t\t\t\t\t[-121.745288, 36.909341],\n\t\t\t\t\t\t[-121.644001, 36.893996],\n\t\t\t\t\t\t[-121.597698, 36.837350],\n\t\t\t\t\t\t[-121.451340, 36.724793],\n\t\t\t\t\t\t[-121.468086, 36.685518],\n\t\t\t\t\t\t[-121.350092, 36.648357],\n\t\t\t\t\t\t[-121.318373, 36.610026],\n\t\t\t\t\t\t[-121.311788, 36.502736],\n\t\t\t\t\t\t[-121.244091, 36.506911],\n\t\t\t\t\t\t[-121.193465, 36.445751],\n\t\t\t\t\t\t[-121.040797, 36.323969],\n\t\t\t\t\t\t[-121.027240, 36.259893],\n\t\t\t\t\t\t[-120.920551, 36.311012],\n\t\t\t\t\t\t[-120.865080, 36.292578],\n\t\t\t\t\t\t[-120.761483, 36.203580],\n\t\t\t\t\t\t[-120.718169, 36.196848],\n\t\t\t\t\t\t[-120.758340, 36.308604],\n\t\t\t\t\t\t[-120.678582, 36.267319],\n\t\t\t\t\t\t[-120.626910, 36.203227],\n\t\t\t\t\t\t[-120.648784, 36.107990],\n\t\t\t\t\t\t[-120.315068, 35.907186],\n\t\t\t\t\t\t[-120.243275, 35.877669],\n\t\t\t\t\t\t[-120.213979, 35.789276]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06061\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"061\",\n\t\t\t\t\"NAME\": \"Placer\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1407.009000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-120.005318, 39.316479],\n\t\t\t\t\t\t[-120.005320, 39.316350],\n\t\t\t\t\t\t[-120.005413, 39.313848],\n\t\t\t\t\t\t[-120.005414, 39.313345],\n\t\t\t\t\t\t[-120.005743, 39.228664],\n\t\t\t\t\t\t[-120.005746, 39.225210],\n\t\t\t\t\t\t[-120.004504, 39.165599],\n\t\t\t\t\t\t[-120.003402, 39.112687],\n\t\t\t\t\t\t[-120.002461, 39.067489],\n\t\t\t\t\t\t[-120.143663, 39.067285],\n\t\t\t\t\t\t[-120.184098, 39.031014],\n\t\t\t\t\t\t[-120.435240, 39.028397],\n\t\t\t\t\t\t[-120.470985, 38.965507],\n\t\t\t\t\t\t[-120.556321, 38.915164],\n\t\t\t\t\t\t[-120.642458, 38.944404],\n\t\t\t\t\t\t[-120.746395, 39.010352],\n\t\t\t\t\t\t[-121.040406, 38.915651],\n\t\t\t\t\t\t[-121.141009, 38.711980],\n\t\t\t\t\t\t[-121.151857, 38.711502],\n\t\t\t\t\t\t[-121.188571, 38.714308],\n\t\t\t\t\t\t[-121.242795, 38.718241],\n\t\t\t\t\t\t[-121.484396, 38.734598],\n\t\t\t\t\t\t[-121.469356, 38.925992],\n\t\t\t\t\t\t[-121.414885, 38.996429],\n\t\t\t\t\t\t[-121.279533, 39.034618],\n\t\t\t\t\t\t[-121.137397, 39.037858],\n\t\t\t\t\t\t[-121.068788, 39.005177],\n\t\t\t\t\t\t[-120.986348, 39.102234],\n\t\t\t\t\t\t[-120.857909, 39.206235],\n\t\t\t\t\t\t[-120.691606, 39.303981],\n\t\t\t\t\t\t[-120.645795, 39.315155],\n\t\t\t\t\t\t[-120.005318, 39.316479]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US02090\",\n\t\t\t\t\"STATE\": \"02\",\n\t\t\t\t\"COUNTY\": \"090\",\n\t\t\t\t\"NAME\": \"Fairbanks North Star\",\n\t\t\t\t\"LSAD\": \"Borough\",\n\t\t\t\t\"CENSUSAREA\": 7338.209000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-147.995157, 64.341691],\n\t\t\t\t\t\t[-148.229784, 64.436621],\n\t\t\t\t\t\t[-148.242175, 64.483426],\n\t\t\t\t\t\t[-148.380509, 64.520562],\n\t\t\t\t\t\t[-148.441058, 64.577791],\n\t\t\t\t\t\t[-148.652370, 64.591053],\n\t\t\t\t\t\t[-148.642697, 64.865694],\n\t\t\t\t\t\t[-148.663844, 65.211355],\n\t\t\t\t\t\t[-147.550245, 65.211023],\n\t\t\t\t\t\t[-147.334764, 65.273291],\n\t\t\t\t\t\t[-147.017089, 65.290432],\n\t\t\t\t\t\t[-146.919725, 65.272970],\n\t\t\t\t\t\t[-146.568819, 65.344746],\n\t\t\t\t\t\t[-146.490362, 65.386878],\n\t\t\t\t\t\t[-146.192406, 65.454475],\n\t\t\t\t\t\t[-146.119758, 65.405823],\n\t\t\t\t\t\t[-145.994261, 65.406031],\n\t\t\t\t\t\t[-146.137530, 65.309851],\n\t\t\t\t\t\t[-146.078123, 65.245244],\n\t\t\t\t\t\t[-145.873843, 65.214026],\n\t\t\t\t\t\t[-145.615545, 65.144070],\n\t\t\t\t\t\t[-145.749681, 65.098233],\n\t\t\t\t\t\t[-145.646437, 65.033682],\n\t\t\t\t\t\t[-145.417480, 65.084836],\n\t\t\t\t\t\t[-145.209906, 65.072978],\n\t\t\t\t\t\t[-144.891387, 65.137197],\n\t\t\t\t\t\t[-144.445443, 65.062319],\n\t\t\t\t\t\t[-144.247190, 65.118774],\n\t\t\t\t\t\t[-143.977969, 65.119043],\n\t\t\t\t\t\t[-143.884795, 65.090281],\n\t\t\t\t\t\t[-144.105524, 65.015542],\n\t\t\t\t\t\t[-143.992045, 64.977011],\n\t\t\t\t\t\t[-144.120089, 64.798317],\n\t\t\t\t\t\t[-144.061159, 64.683442],\n\t\t\t\t\t\t[-144.046530, 64.666771],\n\t\t\t\t\t\t[-146.227064, 64.363752],\n\t\t\t\t\t\t[-146.357350, 64.278453],\n\t\t\t\t\t\t[-147.003185, 64.258928],\n\t\t\t\t\t\t[-147.761557, 64.257854],\n\t\t\t\t\t\t[-147.995157, 64.341691]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08041\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"041\",\n\t\t\t\t\"NAME\": \"El Paso\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2126.801000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-104.053921, 38.522393],\n\t\t\t\t\t\t[-104.941533, 38.519569],\n\t\t\t\t\t\t[-104.942426, 38.649882],\n\t\t\t\t\t\t[-104.938994, 38.796884],\n\t\t\t\t\t\t[-105.072184, 38.799382],\n\t\t\t\t\t\t[-105.028903, 38.868907],\n\t\t\t\t\t\t[-105.033544, 39.129819],\n\t\t\t\t\t\t[-104.662896, 39.129527],\n\t\t\t\t\t\t[-104.051663, 39.128366],\n\t\t\t\t\t\t[-104.055528, 38.868868],\n\t\t\t\t\t\t[-104.053921, 38.522393]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08049\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"049\",\n\t\t\t\t\"NAME\": \"Grand\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1846.330000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-106.652112, 40.445231],\n\t\t\t\t\t\t[-106.612321, 40.379383],\n\t\t\t\t\t\t[-106.489842, 40.411578],\n\t\t\t\t\t\t[-106.443420, 40.346533],\n\t\t\t\t\t\t[-106.353758, 40.357536],\n\t\t\t\t\t\t[-106.230074, 40.323382],\n\t\t\t\t\t\t[-106.018622, 40.373295],\n\t\t\t\t\t\t[-105.959659, 40.348149],\n\t\t\t\t\t\t[-105.891754, 40.476661],\n\t\t\t\t\t\t[-105.854926, 40.486252],\n\t\t\t\t\t\t[-105.653321, 40.260457],\n\t\t\t\t\t\t[-105.638797, 40.038787],\n\t\t\t\t\t\t[-105.675798, 39.932445],\n\t\t\t\t\t\t[-105.690348, 39.851996],\n\t\t\t\t\t\t[-105.736426, 39.804801],\n\t\t\t\t\t\t[-105.887395, 39.796996],\n\t\t\t\t\t\t[-105.924618, 39.698972],\n\t\t\t\t\t\t[-106.023783, 39.688420],\n\t\t\t\t\t\t[-106.083711, 39.805964],\n\t\t\t\t\t\t[-106.252027, 39.914712],\n\t\t\t\t\t\t[-106.434508, 39.924914],\n\t\t\t\t\t\t[-106.626569, 39.924785],\n\t\t\t\t\t\t[-106.632257, 40.341559],\n\t\t\t\t\t\t[-106.652112, 40.445231]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12085\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"085\",\n\t\t\t\t\"NAME\": \"Martin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 543.464000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.384690, 26.958382],\n\t\t\t\t\t\t[-80.885639, 26.958919],\n\t\t\t\t\t\t[-80.677427, 27.121619],\n\t\t\t\t\t\t[-80.677862, 27.205988],\n\t\t\t\t\t\t[-80.481534, 27.206370],\n\t\t\t\t\t\t[-80.481413, 27.206370],\n\t\t\t\t\t\t[-80.285510, 27.206025],\n\t\t\t\t\t\t[-80.284771, 27.263723],\n\t\t\t\t\t\t[-80.199288, 27.263022],\n\t\t\t\t\t\t[-80.193090, 27.249546],\n\t\t\t\t\t\t[-80.161470, 27.192814],\n\t\t\t\t\t\t[-80.153375, 27.169308],\n\t\t\t\t\t\t[-80.159554, 27.163325],\n\t\t\t\t\t\t[-80.149820, 27.143557],\n\t\t\t\t\t\t[-80.138605, 27.111517],\n\t\t\t\t\t\t[-80.116772, 27.072397],\n\t\t\t\t\t\t[-80.093909, 27.018587],\n\t\t\t\t\t\t[-80.079531, 26.970500],\n\t\t\t\t\t\t[-80.246728, 26.957189],\n\t\t\t\t\t\t[-80.374523, 26.958386],\n\t\t\t\t\t\t[-80.384690, 26.958382]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12093\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"093\",\n\t\t\t\t\"NAME\": \"Okeechobee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 768.908000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.679821, 27.558470],\n\t\t\t\t\t\t[-80.679288, 27.455697],\n\t\t\t\t\t\t[-80.678609, 27.448598],\n\t\t\t\t\t\t[-80.677862, 27.205988],\n\t\t\t\t\t\t[-80.677427, 27.121619],\n\t\t\t\t\t\t[-80.885639, 26.958919],\n\t\t\t\t\t\t[-80.871169, 27.154951],\n\t\t\t\t\t\t[-80.943186, 27.210599],\n\t\t\t\t\t\t[-80.951656, 27.224825],\n\t\t\t\t\t\t[-80.970916, 27.217698],\n\t\t\t\t\t\t[-81.213717, 27.528654],\n\t\t\t\t\t\t[-81.142164, 27.643238],\n\t\t\t\t\t\t[-80.873150, 27.642288],\n\t\t\t\t\t\t[-80.778047, 27.643195],\n\t\t\t\t\t\t[-80.777166, 27.558733],\n\t\t\t\t\t\t[-80.679821, 27.558470]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12105\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"105\",\n\t\t\t\t\"NAME\": \"Polk\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1797.837000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.818903, 28.361712],\n\t\t\t\t\t\t[-81.657268, 28.347098],\n\t\t\t\t\t\t[-81.657189, 28.259217],\n\t\t\t\t\t\t[-81.551345, 28.249045],\n\t\t\t\t\t\t[-81.524083, 28.201012],\n\t\t\t\t\t\t[-81.524227, 28.142805],\n\t\t\t\t\t\t[-81.455647, 28.142894],\n\t\t\t\t\t\t[-81.455315, 28.085367],\n\t\t\t\t\t\t[-81.375467, 28.085100],\n\t\t\t\t\t\t[-81.378718, 28.011743],\n\t\t\t\t\t\t[-81.308696, 27.921880],\n\t\t\t\t\t\t[-81.301862, 27.862081],\n\t\t\t\t\t\t[-81.208124, 27.821125],\n\t\t\t\t\t\t[-81.131495, 27.649400],\n\t\t\t\t\t\t[-81.142164, 27.643238],\n\t\t\t\t\t\t[-81.563318, 27.646647],\n\t\t\t\t\t\t[-82.054349, 27.646382],\n\t\t\t\t\t\t[-82.054035, 27.850683],\n\t\t\t\t\t\t[-82.056404, 28.080385],\n\t\t\t\t\t\t[-82.056261, 28.171592],\n\t\t\t\t\t\t[-82.105853, 28.171650],\n\t\t\t\t\t\t[-82.106206, 28.259240],\n\t\t\t\t\t\t[-82.055819, 28.312794],\n\t\t\t\t\t\t[-81.957641, 28.345180],\n\t\t\t\t\t\t[-81.818903, 28.361712]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12121\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"121\",\n\t\t\t\t\"NAME\": \"Suwannee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 688.552000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.247253, 30.260670],\n\t\t\t\t\t\t[-83.170969, 30.385225],\n\t\t\t\t\t\t[-83.078706, 30.438116],\n\t\t\t\t\t\t[-83.002058, 30.429371],\n\t\t\t\t\t\t[-82.794594, 30.337024],\n\t\t\t\t\t\t[-82.800477, 29.932126],\n\t\t\t\t\t\t[-82.864246, 29.909836],\n\t\t\t\t\t\t[-82.879802, 29.886847],\n\t\t\t\t\t\t[-82.963112, 29.993050],\n\t\t\t\t\t\t[-83.160557, 30.109823],\n\t\t\t\t\t\t[-83.226360, 30.114621],\n\t\t\t\t\t\t[-83.247253, 30.260670]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12133\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"133\",\n\t\t\t\t\"NAME\": \"Washington\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 582.803000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.434782, 30.567560],\n\t\t\t\t\t\t[-85.486358, 30.567574],\n\t\t\t\t\t\t[-85.487968, 30.436655],\n\t\t\t\t\t\t[-85.853500, 30.440623],\n\t\t\t\t\t\t[-85.992736, 30.389320],\n\t\t\t\t\t\t[-85.858001, 30.496905],\n\t\t\t\t\t\t[-85.915297, 30.636427],\n\t\t\t\t\t\t[-85.844421, 30.703130],\n\t\t\t\t\t\t[-85.821616, 30.790775],\n\t\t\t\t\t\t[-85.736051, 30.746370],\n\t\t\t\t\t\t[-85.619011, 30.743868],\n\t\t\t\t\t\t[-85.599934, 30.830552],\n\t\t\t\t\t\t[-85.482276, 30.829509],\n\t\t\t\t\t\t[-85.432274, 30.785457],\n\t\t\t\t\t\t[-85.434782, 30.567560]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13007\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"007\",\n\t\t\t\t\"NAME\": \"Baker\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 341.944000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.637579, 31.433926],\n\t\t\t\t\t\t[-84.429876, 31.436661],\n\t\t\t\t\t\t[-84.141124, 31.440179],\n\t\t\t\t\t\t[-84.200660, 31.355525],\n\t\t\t\t\t\t[-84.340552, 31.305341],\n\t\t\t\t\t\t[-84.404350, 31.199143],\n\t\t\t\t\t\t[-84.483310, 31.155536],\n\t\t\t\t\t\t[-84.508078, 31.078400],\n\t\t\t\t\t\t[-84.542653, 31.079029],\n\t\t\t\t\t\t[-84.537101, 31.255932],\n\t\t\t\t\t\t[-84.641673, 31.258967],\n\t\t\t\t\t\t[-84.637579, 31.433926]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13021\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"021\",\n\t\t\t\t\"NAME\": \"Bibb\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 249.762000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.710685, 32.952792],\n\t\t\t\t\t\t[-83.658211, 32.887913],\n\t\t\t\t\t\t[-83.513511, 32.844868],\n\t\t\t\t\t\t[-83.502603, 32.801119],\n\t\t\t\t\t\t[-83.597656, 32.664338],\n\t\t\t\t\t\t[-83.701152, 32.692169],\n\t\t\t\t\t\t[-83.824398, 32.741861],\n\t\t\t\t\t\t[-83.891922, 32.848351],\n\t\t\t\t\t\t[-83.710685, 32.952792]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13035\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"035\",\n\t\t\t\t\"NAME\": \"Butts\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 184.393000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.863058, 33.368278],\n\t\t\t\t\t\t[-83.814103, 33.242134],\n\t\t\t\t\t\t[-83.822261, 33.180238],\n\t\t\t\t\t\t[-84.041498, 33.202629],\n\t\t\t\t\t\t[-84.123767, 33.202824],\n\t\t\t\t\t\t[-84.102582, 33.298191],\n\t\t\t\t\t\t[-84.042663, 33.333501],\n\t\t\t\t\t\t[-84.044597, 33.333495],\n\t\t\t\t\t\t[-84.044594, 33.333656],\n\t\t\t\t\t\t[-83.923913, 33.444194],\n\t\t\t\t\t\t[-83.863058, 33.368278]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13047\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"047\",\n\t\t\t\t\"NAME\": \"Catoosa\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 162.159000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.144789, 34.767639],\n\t\t\t\t\t\t[-85.201856, 34.775080],\n\t\t\t\t\t\t[-85.202180, 34.854451],\n\t\t\t\t\t\t[-85.264762, 34.854277],\n\t\t\t\t\t\t[-85.265055, 34.985075],\n\t\t\t\t\t\t[-85.254955, 34.985175],\n\t\t\t\t\t\t[-85.235555, 34.985475],\n\t\t\t\t\t\t[-85.230354, 34.985475],\n\t\t\t\t\t\t[-85.221854, 34.985475],\n\t\t\t\t\t\t[-85.220554, 34.985575],\n\t\t\t\t\t\t[-85.217854, 34.985675],\n\t\t\t\t\t\t[-85.216554, 34.985675],\n\t\t\t\t\t\t[-85.185905, 34.985995],\n\t\t\t\t\t\t[-85.180553, 34.986075],\n\t\t\t\t\t\t[-85.045183, 34.986883],\n\t\t\t\t\t\t[-85.045052, 34.986859],\n\t\t\t\t\t\t[-84.979860, 34.987647],\n\t\t\t\t\t\t[-85.061648, 34.819478],\n\t\t\t\t\t\t[-85.144789, 34.767639]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13065\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"065\",\n\t\t\t\t\"NAME\": \"Clinch\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 800.222000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.459792, 30.584287],\n\t\t\t\t\t\t[-82.524899, 30.588189],\n\t\t\t\t\t\t[-82.536233, 30.588885],\n\t\t\t\t\t\t[-82.545055, 30.589361],\n\t\t\t\t\t\t[-82.553159, 30.589934],\n\t\t\t\t\t\t[-82.565476, 30.590622],\n\t\t\t\t\t\t[-82.569237, 30.590965],\n\t\t\t\t\t\t[-82.584002, 30.591796],\n\t\t\t\t\t\t[-82.604005, 30.713676],\n\t\t\t\t\t\t[-82.766159, 30.732404],\n\t\t\t\t\t\t[-82.846353, 30.834988],\n\t\t\t\t\t\t[-82.971336, 30.869392],\n\t\t\t\t\t\t[-82.971247, 31.183988],\n\t\t\t\t\t\t[-82.671669, 31.183739],\n\t\t\t\t\t\t[-82.592071, 31.018487],\n\t\t\t\t\t\t[-82.490558, 30.963166],\n\t\t\t\t\t\t[-82.495476, 30.819553],\n\t\t\t\t\t\t[-82.435852, 30.820068],\n\t\t\t\t\t\t[-82.418915, 30.581745],\n\t\t\t\t\t\t[-82.459544, 30.584272],\n\t\t\t\t\t\t[-82.459792, 30.584287]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13075\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"075\",\n\t\t\t\t\"NAME\": \"Cook\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 227.162000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.295052, 31.027278],\n\t\t\t\t\t\t[-83.475617, 31.031964],\n\t\t\t\t\t\t[-83.574857, 31.078135],\n\t\t\t\t\t\t[-83.509810, 31.206181],\n\t\t\t\t\t\t[-83.512607, 31.327405],\n\t\t\t\t\t\t[-83.460644, 31.326263],\n\t\t\t\t\t\t[-83.434492, 31.350361],\n\t\t\t\t\t\t[-83.305611, 31.167233],\n\t\t\t\t\t\t[-83.295052, 31.027278]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28057\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"057\",\n\t\t\t\t\"NAME\": \"Itawamba\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 532.787000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.542079, 34.465276],\n\t\t\t\t\t\t[-88.329193, 34.463571],\n\t\t\t\t\t\t[-88.155305, 34.463087],\n\t\t\t\t\t\t[-88.165634, 34.383102],\n\t\t\t\t\t\t[-88.165910, 34.380926],\n\t\t\t\t\t\t[-88.173632, 34.321054],\n\t\t\t\t\t\t[-88.175867, 34.302171],\n\t\t\t\t\t\t[-88.176889, 34.293858],\n\t\t\t\t\t\t[-88.203597, 34.086530],\n\t\t\t\t\t\t[-88.543352, 34.089044],\n\t\t\t\t\t\t[-88.542079, 34.465276]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28069\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"069\",\n\t\t\t\t\"NAME\": \"Kemper\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 766.182000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.812782, 32.925973],\n\t\t\t\t\t\t[-88.347692, 32.929059],\n\t\t\t\t\t\t[-88.382985, 32.626954],\n\t\t\t\t\t\t[-88.383039, 32.626679],\n\t\t\t\t\t\t[-88.388739, 32.578116],\n\t\t\t\t\t\t[-88.914516, 32.576955],\n\t\t\t\t\t\t[-88.914413, 32.926600],\n\t\t\t\t\t\t[-88.812782, 32.925973]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22119\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"119\",\n\t\t\t\t\"NAME\": \"Webster\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 593.030000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.372781, 32.410153],\n\t\t\t\t\t\t[-93.441212, 32.410431],\n\t\t\t\t\t\t[-93.448039, 32.866321],\n\t\t\t\t\t\t[-93.530405, 32.975397],\n\t\t\t\t\t\t[-93.520994, 33.018616],\n\t\t\t\t\t\t[-93.520971, 33.018616],\n\t\t\t\t\t\t[-93.490893, 33.018442],\n\t\t\t\t\t\t[-93.490520, 33.018442],\n\t\t\t\t\t\t[-93.489506, 33.018443],\n\t\t\t\t\t\t[-93.467042, 33.018611],\n\t\t\t\t\t\t[-93.377134, 33.018234],\n\t\t\t\t\t\t[-93.340353, 33.018337],\n\t\t\t\t\t\t[-93.308398, 33.018179],\n\t\t\t\t\t\t[-93.308181, 33.018156],\n\t\t\t\t\t\t[-93.238607, 33.017992],\n\t\t\t\t\t\t[-93.237381, 32.716250],\n\t\t\t\t\t\t[-93.186571, 32.716755],\n\t\t\t\t\t\t[-93.178767, 32.584916],\n\t\t\t\t\t\t[-93.147193, 32.455173],\n\t\t\t\t\t\t[-93.236656, 32.410071],\n\t\t\t\t\t\t[-93.372781, 32.410153]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22125\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"125\",\n\t\t\t\t\"NAME\": \"West Feliciana\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 403.214000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.330870, 30.658677],\n\t\t\t\t\t\t[-91.340652, 30.670238],\n\t\t\t\t\t\t[-91.353092, 30.721770],\n\t\t\t\t\t\t[-91.380620, 30.758804],\n\t\t\t\t\t\t[-91.553019, 30.730798],\n\t\t\t\t\t\t[-91.515626, 30.861378],\n\t\t\t\t\t\t[-91.661372, 30.857099],\n\t\t\t\t\t\t[-91.662506, 30.970362],\n\t\t\t\t\t\t[-91.646409, 30.986146],\n\t\t\t\t\t\t[-91.640613, 30.996125],\n\t\t\t\t\t\t[-91.636942, 30.999416],\n\t\t\t\t\t\t[-91.625118, 30.999167],\n\t\t\t\t\t\t[-91.538727, 30.999388],\n\t\t\t\t\t\t[-91.425749, 30.999007],\n\t\t\t\t\t\t[-91.423621, 30.998984],\n\t\t\t\t\t\t[-91.224839, 30.999183],\n\t\t\t\t\t\t[-91.224068, 30.999183],\n\t\t\t\t\t\t[-91.176209, 30.999144],\n\t\t\t\t\t\t[-91.176140, 30.999144],\n\t\t\t\t\t\t[-91.236164, 30.795093],\n\t\t\t\t\t\t[-91.320706, 30.699417],\n\t\t\t\t\t\t[-91.310061, 30.653961],\n\t\t\t\t\t\t[-91.322256, 30.656025],\n\t\t\t\t\t\t[-91.330870, 30.658677]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US23017\",\n\t\t\t\t\"STATE\": \"23\",\n\t\t\t\t\"COUNTY\": \"017\",\n\t\t\t\t\"NAME\": \"Oxford\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2076.840000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-70.595631, 44.032057],\n\t\t\t\t\t\t[-70.587331, 44.122516],\n\t\t\t\t\t\t[-70.624329, 44.171036],\n\t\t\t\t\t\t[-70.821803, 44.077089],\n\t\t\t\t\t\t[-70.715418, 43.961815],\n\t\t\t\t\t\t[-70.747507, 43.945901],\n\t\t\t\t\t\t[-70.729780, 43.928330],\n\t\t\t\t\t\t[-70.782984, 43.814147],\n\t\t\t\t\t\t[-70.989041, 43.792152],\n\t\t\t\t\t\t[-70.989067, 43.792440],\n\t\t\t\t\t\t[-70.992086, 43.886261],\n\t\t\t\t\t\t[-70.992986, 43.914232],\n\t\t\t\t\t\t[-71.001367, 44.092931],\n\t\t\t\t\t\t[-71.001335, 44.093205],\n\t\t\t\t\t\t[-71.008764, 44.258443],\n\t\t\t\t\t\t[-71.008736, 44.258825],\n\t\t\t\t\t\t[-71.010239, 44.284774],\n\t\t\t\t\t\t[-71.013490, 44.340882],\n\t\t\t\t\t\t[-71.029101, 44.610331],\n\t\t\t\t\t\t[-71.037518, 44.755607],\n\t\t\t\t\t\t[-71.060101, 45.019661],\n\t\t\t\t\t\t[-71.075640, 45.224093],\n\t\t\t\t\t\t[-71.084334, 45.305293],\n\t\t\t\t\t\t[-71.030565, 45.312652],\n\t\t\t\t\t\t[-71.014268, 45.316761],\n\t\t\t\t\t\t[-71.009050, 45.319022],\n\t\t\t\t\t\t[-71.002401, 45.327956],\n\t\t\t\t\t\t[-71.005087, 45.331545],\n\t\t\t\t\t\t[-70.990233, 45.336277],\n\t\t\t\t\t\t[-70.950824, 45.334530],\n\t\t\t\t\t\t[-70.917904, 45.311924],\n\t\t\t\t\t\t[-70.912176, 45.296768],\n\t\t\t\t\t\t[-70.913732, 45.292746],\n\t\t\t\t\t\t[-70.907978, 45.269316],\n\t\t\t\t\t\t[-70.896898, 45.242031],\n\t\t\t\t\t\t[-70.885029, 45.234873],\n\t\t\t\t\t\t[-70.857042, 45.229160],\n\t\t\t\t\t\t[-70.842845, 45.234422],\n\t\t\t\t\t\t[-70.839482, 45.237829],\n\t\t\t\t\t\t[-70.831612, 45.260055],\n\t\t\t\t\t\t[-70.769228, 44.732228],\n\t\t\t\t\t\t[-70.615030, 44.795634],\n\t\t\t\t\t\t[-70.510598, 44.627216],\n\t\t\t\t\t\t[-70.549985, 44.610727],\n\t\t\t\t\t\t[-70.280748, 44.569619],\n\t\t\t\t\t\t[-70.280908, 44.505095],\n\t\t\t\t\t\t[-70.238904, 44.458942],\n\t\t\t\t\t\t[-70.274412, 44.440632],\n\t\t\t\t\t\t[-70.268350, 44.416398],\n\t\t\t\t\t\t[-70.276752, 44.407534],\n\t\t\t\t\t\t[-70.265223, 44.362913],\n\t\t\t\t\t\t[-70.325218, 44.208399],\n\t\t\t\t\t\t[-70.334094, 44.210753],\n\t\t\t\t\t\t[-70.391735, 44.153562],\n\t\t\t\t\t\t[-70.480078, 44.032078],\n\t\t\t\t\t\t[-70.595631, 44.032057]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US24015\",\n\t\t\t\t\"STATE\": \"24\",\n\t\t\t\t\"COUNTY\": \"015\",\n\t\t\t\t\"NAME\": \"Cecil\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 346.273000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.233259, 39.721305],\n\t\t\t\t\t\t[-76.224191, 39.721328],\n\t\t\t\t\t\t[-76.135584, 39.721556],\n\t\t\t\t\t\t[-76.027618, 39.721833],\n\t\t\t\t\t\t[-76.013067, 39.721920],\n\t\t\t\t\t\t[-75.810068, 39.721906],\n\t\t\t\t\t\t[-75.799563, 39.721882],\n\t\t\t\t\t\t[-75.788359, 39.721811],\n\t\t\t\t\t\t[-75.788395, 39.700287],\n\t\t\t\t\t\t[-75.788395, 39.700031],\n\t\t\t\t\t\t[-75.788658, 39.681911],\n\t\t\t\t\t\t[-75.788616, 39.680742],\n\t\t\t\t\t\t[-75.787450, 39.637455],\n\t\t\t\t\t\t[-75.786890, 39.630575],\n\t\t\t\t\t\t[-75.779383, 39.536522],\n\t\t\t\t\t\t[-75.779240, 39.534737],\n\t\t\t\t\t\t[-75.766693, 39.377537],\n\t\t\t\t\t\t[-75.766714, 39.377537],\n\t\t\t\t\t\t[-75.766731, 39.377537],\n\t\t\t\t\t\t[-75.766800, 39.377586],\n\t\t\t\t\t\t[-75.767044, 39.377739],\n\t\t\t\t\t\t[-75.767105, 39.377796],\n\t\t\t\t\t\t[-75.767253, 39.377833],\n\t\t\t\t\t\t[-75.767358, 39.377871],\n\t\t\t\t\t\t[-75.767413, 39.377900],\n\t\t\t\t\t\t[-75.767542, 39.377937],\n\t\t\t\t\t\t[-75.767665, 39.377913],\n\t\t\t\t\t\t[-75.767769, 39.377875],\n\t\t\t\t\t\t[-75.767831, 39.377937],\n\t\t\t\t\t\t[-75.767985, 39.378079],\n\t\t\t\t\t\t[-75.768059, 39.378126],\n\t\t\t\t\t\t[-75.768102, 39.378117],\n\t\t\t\t\t\t[-75.768249, 39.378007],\n\t\t\t\t\t\t[-75.768304, 39.377978],\n\t\t\t\t\t\t[-75.768365, 39.377968],\n\t\t\t\t\t\t[-75.768439, 39.378040],\n\t\t\t\t\t\t[-75.768489, 39.378101],\n\t\t\t\t\t\t[-75.768526, 39.378111],\n\t\t\t\t\t\t[-75.768569, 39.378106],\n\t\t\t\t\t\t[-75.768642, 39.378053],\n\t\t\t\t\t\t[-75.768691, 39.378034],\n\t\t\t\t\t\t[-75.768783, 39.378043],\n\t\t\t\t\t\t[-75.768900, 39.378086],\n\t\t\t\t\t\t[-75.768999, 39.378114],\n\t\t\t\t\t\t[-75.769116, 39.378166],\n\t\t\t\t\t\t[-75.769165, 39.378209],\n\t\t\t\t\t\t[-75.769233, 39.378228],\n\t\t\t\t\t\t[-75.769294, 39.378213],\n\t\t\t\t\t\t[-75.769331, 39.378194],\n\t\t\t\t\t\t[-75.769386, 39.378237],\n\t\t\t\t\t\t[-75.769423, 39.378294],\n\t\t\t\t\t\t[-75.769455, 39.378394],\n\t\t\t\t\t\t[-75.769461, 39.378461],\n\t\t\t\t\t\t[-75.769443, 39.378489],\n\t\t\t\t\t\t[-75.769437, 39.378532],\n\t\t\t\t\t\t[-75.769474, 39.378570],\n\t\t\t\t\t\t[-75.769535, 39.378570],\n\t\t\t\t\t\t[-75.769621, 39.378546],\n\t\t\t\t\t\t[-75.769695, 39.378603],\n\t\t\t\t\t\t[-75.769792, 39.378622],\n\t\t\t\t\t\t[-75.769865, 39.378622],\n\t\t\t\t\t\t[-75.770047, 39.378640],\n\t\t\t\t\t\t[-75.770388, 39.378743],\n\t\t\t\t\t\t[-75.770485, 39.378724],\n\t\t\t\t\t\t[-75.770545, 39.378657],\n\t\t\t\t\t\t[-75.770836, 39.378647],\n\t\t\t\t\t\t[-75.770994, 39.378684],\n\t\t\t\t\t\t[-75.771116, 39.378693],\n\t\t\t\t\t\t[-75.771334, 39.378664],\n\t\t\t\t\t\t[-75.771480, 39.378739],\n\t\t\t\t\t\t[-75.771578, 39.378833],\n\t\t\t\t\t\t[-75.771699, 39.378899],\n\t\t\t\t\t\t[-75.771845, 39.378927],\n\t\t\t\t\t\t[-75.771870, 39.379002],\n\t\t\t\t\t\t[-75.771870, 39.379115],\n\t\t\t\t\t\t[-75.771968, 39.379143],\n\t\t\t\t\t\t[-75.771990, 39.379150],\n\t\t\t\t\t\t[-75.772462, 39.379431],\n\t\t\t\t\t\t[-75.772688, 39.379525],\n\t\t\t\t\t\t[-75.773112, 39.379544],\n\t\t\t\t\t\t[-75.773171, 39.379497],\n\t\t\t\t\t\t[-75.773305, 39.379450],\n\t\t\t\t\t\t[-75.773451, 39.379515],\n\t\t\t\t\t\t[-75.773508, 39.379549],\n\t\t\t\t\t\t[-75.773651, 39.379486],\n\t\t\t\t\t\t[-75.773870, 39.379371],\n\t\t\t\t\t\t[-75.773962, 39.379294],\n\t\t\t\t\t\t[-75.774140, 39.379003],\n\t\t\t\t\t\t[-75.774253, 39.378916],\n\t\t\t\t\t\t[-75.774387, 39.378921],\n\t\t\t\t\t\t[-75.774635, 39.379042],\n\t\t\t\t\t\t[-75.775045, 39.379070],\n\t\t\t\t\t\t[-75.775088, 39.379070],\n\t\t\t\t\t\t[-75.775449, 39.378960],\n\t\t\t\t\t\t[-75.775668, 39.378960],\n\t\t\t\t\t\t[-75.775909, 39.379015],\n\t\t\t\t\t\t[-75.776093, 39.378971],\n\t\t\t\t\t\t[-75.776312, 39.378993],\n\t\t\t\t\t\t[-75.776369, 39.379059],\n\t\t\t\t\t\t[-75.776213, 39.380026],\n\t\t\t\t\t\t[-75.776248, 39.380190],\n\t\t\t\t\t\t[-75.776304, 39.380256],\n\t\t\t\t\t\t[-75.776355, 39.380268],\n\t\t\t\t\t\t[-75.776503, 39.380306],\n\t\t\t\t\t\t[-75.776757, 39.380300],\n\t\t\t\t\t\t[-75.776998, 39.380405],\n\t\t\t\t\t\t[-75.777671, 39.380240],\n\t\t\t\t\t\t[-75.777918, 39.380246],\n\t\t\t\t\t\t[-75.778060, 39.380290],\n\t\t\t\t\t\t[-75.779220, 39.380916],\n\t\t\t\t\t\t[-75.779503, 39.381169],\n\t\t\t\t\t\t[-75.780126, 39.381471],\n\t\t\t\t\t\t[-75.780331, 39.381653],\n\t\t\t\t\t\t[-75.780409, 39.381889],\n\t\t\t\t\t\t[-75.780473, 39.381944],\n\t\t\t\t\t\t[-75.781095, 39.382125],\n\t\t\t\t\t\t[-75.781131, 39.382125],\n\t\t\t\t\t\t[-75.781548, 39.381966],\n\t\t\t\t\t\t[-75.781753, 39.381954],\n\t\t\t\t\t\t[-75.781846, 39.381950],\n\t\t\t\t\t\t[-75.782023, 39.381867],\n\t\t\t\t\t\t[-75.782235, 39.381856],\n\t\t\t\t\t\t[-75.782957, 39.382164],\n\t\t\t\t\t\t[-75.783650, 39.382439],\n\t\t\t\t\t\t[-75.783891, 39.382505],\n\t\t\t\t\t\t[-75.784224, 39.382549],\n\t\t\t\t\t\t[-75.784415, 39.382527],\n\t\t\t\t\t\t[-75.784443, 39.382500],\n\t\t\t\t\t\t[-75.784465, 39.382310],\n\t\t\t\t\t\t[-75.784486, 39.382143],\n\t\t\t\t\t\t[-75.784330, 39.381385],\n\t\t\t\t\t\t[-75.784309, 39.380940],\n\t\t\t\t\t\t[-75.784330, 39.380687],\n\t\t\t\t\t\t[-75.784415, 39.380363],\n\t\t\t\t\t\t[-75.784656, 39.380165],\n\t\t\t\t\t\t[-75.784968, 39.380088],\n\t\t\t\t\t\t[-75.785380, 39.380091],\n\t\t\t\t\t\t[-75.785732, 39.380094],\n\t\t\t\t\t\t[-75.786036, 39.380061],\n\t\t\t\t\t\t[-75.786383, 39.380105],\n\t\t\t\t\t\t[-75.786567, 39.380155],\n\t\t\t\t\t\t[-75.786585, 39.380158],\n\t\t\t\t\t\t[-75.787202, 39.380267],\n\t\t\t\t\t\t[-75.787310, 39.380287],\n\t\t\t\t\t\t[-75.787410, 39.380296],\n\t\t\t\t\t\t[-75.788032, 39.380353],\n\t\t\t\t\t\t[-75.788230, 39.380424],\n\t\t\t\t\t\t[-75.788351, 39.380512],\n\t\t\t\t\t\t[-75.788381, 39.380610],\n\t\t\t\t\t\t[-75.788478, 39.380919],\n\t\t\t\t\t\t[-75.788584, 39.381061],\n\t\t\t\t\t\t[-75.788768, 39.381111],\n\t\t\t\t\t\t[-75.789398, 39.381128],\n\t\t\t\t\t\t[-75.789490, 39.381095],\n\t\t\t\t\t\t[-75.789667, 39.381012],\n\t\t\t\t\t\t[-75.789865, 39.380891],\n\t\t\t\t\t\t[-75.789971, 39.380815],\n\t\t\t\t\t\t[-75.790531, 39.380342],\n\t\t\t\t\t\t[-75.790996, 39.380043],\n\t\t\t\t\t\t[-75.791182, 39.379925],\n\t\t\t\t\t\t[-75.791833, 39.379843],\n\t\t\t\t\t\t[-75.792043, 39.379822],\n\t\t\t\t\t\t[-75.792279, 39.379799],\n\t\t\t\t\t\t[-75.792357, 39.379804],\n\t\t\t\t\t\t[-75.792484, 39.379826],\n\t\t\t\t\t\t[-75.792534, 39.379843],\n\t\t\t\t\t\t[-75.792880, 39.380096],\n\t\t\t\t\t\t[-75.792950, 39.380116],\n\t\t\t\t\t\t[-75.792994, 39.380129],\n\t\t\t\t\t\t[-75.793800, 39.379980],\n\t\t\t\t\t\t[-75.793907, 39.379936],\n\t\t\t\t\t\t[-75.794239, 39.379744],\n\t\t\t\t\t\t[-75.794310, 39.379641],\n\t\t\t\t\t\t[-75.794381, 39.379541],\n\t\t\t\t\t\t[-75.794423, 39.379102],\n\t\t\t\t\t\t[-75.794494, 39.378959],\n\t\t\t\t\t\t[-75.794664, 39.378756],\n\t\t\t\t\t\t[-75.794820, 39.378009],\n\t\t\t\t\t\t[-75.795018, 39.377789],\n\t\t\t\t\t\t[-75.795216, 39.377701],\n\t\t\t\t\t\t[-75.795443, 39.377586],\n\t\t\t\t\t\t[-75.795606, 39.377317],\n\t\t\t\t\t\t[-75.795726, 39.377240],\n\t\t\t\t\t\t[-75.795825, 39.377245],\n\t\t\t\t\t\t[-75.796038, 39.377322],\n\t\t\t\t\t\t[-75.796250, 39.377229],\n\t\t\t\t\t\t[-75.796356, 39.377229],\n\t\t\t\t\t\t[-75.796441, 39.377542],\n\t\t\t\t\t\t[-75.796483, 39.377575],\n\t\t\t\t\t\t[-75.796547, 39.377586],\n\t\t\t\t\t\t[-75.796660, 39.377564],\n\t\t\t\t\t\t[-75.796965, 39.377295],\n\t\t\t\t\t\t[-75.797290, 39.377273],\n\t\t\t\t\t\t[-75.797566, 39.377268],\n\t\t\t\t\t\t[-75.797779, 39.377141],\n\t\t\t\t\t\t[-75.797998, 39.377251],\n\t\t\t\t\t\t[-75.798225, 39.377279],\n\t\t\t\t\t\t[-75.798607, 39.377240],\n\t\t\t\t\t\t[-75.798748, 39.377130],\n\t\t\t\t\t\t[-75.798847, 39.377119],\n\t\t\t\t\t\t[-75.799222, 39.377224],\n\t\t\t\t\t\t[-75.799605, 39.377372],\n\t\t\t\t\t\t[-75.799678, 39.377368],\n\t\t\t\t\t\t[-75.799852, 39.377361],\n\t\t\t\t\t\t[-75.800263, 39.377224],\n\t\t\t\t\t\t[-75.800461, 39.377202],\n\t\t\t\t\t\t[-75.800567, 39.377229],\n\t\t\t\t\t\t[-75.800617, 39.377317],\n\t\t\t\t\t\t[-75.800588, 39.377608],\n\t\t\t\t\t\t[-75.800701, 39.377691],\n\t\t\t\t\t\t[-75.800907, 39.377746],\n\t\t\t\t\t\t[-75.801098, 39.377867],\n\t\t\t\t\t\t[-75.801695, 39.377912],\n\t\t\t\t\t\t[-75.801820, 39.377922],\n\t\t\t\t\t\t[-75.802237, 39.377653],\n\t\t\t\t\t\t[-75.802605, 39.377592],\n\t\t\t\t\t\t[-75.802752, 39.377493],\n\t\t\t\t\t\t[-75.802761, 39.377488],\n\t\t\t\t\t\t[-75.802874, 39.377334],\n\t\t\t\t\t\t[-75.802917, 39.377318],\n\t\t\t\t\t\t[-75.803370, 39.377219],\n\t\t\t\t\t\t[-75.803794, 39.376972],\n\t\t\t\t\t\t[-75.804162, 39.376576],\n\t\t\t\t\t\t[-75.804304, 39.376291],\n\t\t\t\t\t\t[-75.804311, 39.375939],\n\t\t\t\t\t\t[-75.804354, 39.375818],\n\t\t\t\t\t\t[-75.804495, 39.375609],\n\t\t\t\t\t\t[-75.804686, 39.375434],\n\t\t\t\t\t\t[-75.804757, 39.375417],\n\t\t\t\t\t\t[-75.804955, 39.375456],\n\t\t\t\t\t\t[-75.805141, 39.375464],\n\t\t\t\t\t\t[-75.805514, 39.375483],\n\t\t\t\t\t\t[-75.805684, 39.375505],\n\t\t\t\t\t\t[-75.805741, 39.375500],\n\t\t\t\t\t\t[-75.805861, 39.375467],\n\t\t\t\t\t\t[-75.805925, 39.375439],\n\t\t\t\t\t\t[-75.806073, 39.375258],\n\t\t\t\t\t\t[-75.806201, 39.375198],\n\t\t\t\t\t\t[-75.806378, 39.375274],\n\t\t\t\t\t\t[-75.806484, 39.375384],\n\t\t\t\t\t\t[-75.806498, 39.375467],\n\t\t\t\t\t\t[-75.806472, 39.375483],\n\t\t\t\t\t\t[-75.806318, 39.375583],\n\t\t\t\t\t\t[-75.806229, 39.375897],\n\t\t\t\t\t\t[-75.806333, 39.376206],\n\t\t\t\t\t\t[-75.806184, 39.376730],\n\t\t\t\t\t\t[-75.806165, 39.376799],\n\t\t\t\t\t\t[-75.806417, 39.377096],\n\t\t\t\t\t\t[-75.806552, 39.377135],\n\t\t\t\t\t\t[-75.806958, 39.377254],\n\t\t\t\t\t\t[-75.806992, 39.377264],\n\t\t\t\t\t\t[-75.807076, 39.377328],\n\t\t\t\t\t\t[-75.807139, 39.377376],\n\t\t\t\t\t\t[-75.807328, 39.377522],\n\t\t\t\t\t\t[-75.807392, 39.377571],\n\t\t\t\t\t\t[-75.807435, 39.377604],\n\t\t\t\t\t\t[-75.807564, 39.377703],\n\t\t\t\t\t\t[-75.807608, 39.377737],\n\t\t\t\t\t\t[-75.807696, 39.377804],\n\t\t\t\t\t\t[-75.807898, 39.377960],\n\t\t\t\t\t\t[-75.807976, 39.377972],\n\t\t\t\t\t\t[-75.808087, 39.377991],\n\t\t\t\t\t\t[-75.808631, 39.378081],\n\t\t\t\t\t\t[-75.808741, 39.378066],\n\t\t\t\t\t\t[-75.808879, 39.378048],\n\t\t\t\t\t\t[-75.809200, 39.378101],\n\t\t\t\t\t\t[-75.809396, 39.378425],\n\t\t\t\t\t\t[-75.809425, 39.378832],\n\t\t\t\t\t\t[-75.809359, 39.378894],\n\t\t\t\t\t\t[-75.809237, 39.379495],\n\t\t\t\t\t\t[-75.809259, 39.379521],\n\t\t\t\t\t\t[-75.809452, 39.379749],\n\t\t\t\t\t\t[-75.809634, 39.379758],\n\t\t\t\t\t\t[-75.809817, 39.379768],\n\t\t\t\t\t\t[-75.809989, 39.379806],\n\t\t\t\t\t\t[-75.810108, 39.379830],\n\t\t\t\t\t\t[-75.811537, 39.379984],\n\t\t\t\t\t\t[-75.812984, 39.380026],\n\t\t\t\t\t\t[-75.814614, 39.380270],\n\t\t\t\t\t\t[-75.816313, 39.380654],\n\t\t\t\t\t\t[-75.816356, 39.380681],\n\t\t\t\t\t\t[-75.816968, 39.381064],\n\t\t\t\t\t\t[-75.817365, 39.381400],\n\t\t\t\t\t\t[-75.817646, 39.381638],\n\t\t\t\t\t\t[-75.817925, 39.381874],\n\t\t\t\t\t\t[-75.817975, 39.381916],\n\t\t\t\t\t\t[-75.818345, 39.382081],\n\t\t\t\t\t\t[-75.818696, 39.382239],\n\t\t\t\t\t\t[-75.818829, 39.382299],\n\t\t\t\t\t\t[-75.819576, 39.382141],\n\t\t\t\t\t\t[-75.819956, 39.382061],\n\t\t\t\t\t\t[-75.821266, 39.381755],\n\t\t\t\t\t\t[-75.822289, 39.381609],\n\t\t\t\t\t\t[-75.823658, 39.381413],\n\t\t\t\t\t\t[-75.823761, 39.381354],\n\t\t\t\t\t\t[-75.824392, 39.380998],\n\t\t\t\t\t\t[-75.824458, 39.380961],\n\t\t\t\t\t\t[-75.825426, 39.379846],\n\t\t\t\t\t\t[-75.827420, 39.378236],\n\t\t\t\t\t\t[-75.827991, 39.377921],\n\t\t\t\t\t\t[-75.828161, 39.377762],\n\t\t\t\t\t\t[-75.829369, 39.376632],\n\t\t\t\t\t\t[-75.829513, 39.376499],\n\t\t\t\t\t\t[-75.829736, 39.376173],\n\t\t\t\t\t\t[-75.830031, 39.375742],\n\t\t\t\t\t\t[-75.830062, 39.375659],\n\t\t\t\t\t\t[-75.830183, 39.375337],\n\t\t\t\t\t\t[-75.830023, 39.375086],\n\t\t\t\t\t\t[-75.830523, 39.374689],\n\t\t\t\t\t\t[-75.830661, 39.374579],\n\t\t\t\t\t\t[-75.830800, 39.374469],\n\t\t\t\t\t\t[-75.831173, 39.374173],\n\t\t\t\t\t\t[-75.831533, 39.374109],\n\t\t\t\t\t\t[-75.832316, 39.373970],\n\t\t\t\t\t\t[-75.833400, 39.373834],\n\t\t\t\t\t\t[-75.834014, 39.373757],\n\t\t\t\t\t\t[-75.835534, 39.373174],\n\t\t\t\t\t\t[-75.835719, 39.373103],\n\t\t\t\t\t\t[-75.836593, 39.372770],\n\t\t\t\t\t\t[-75.836611, 39.372763],\n\t\t\t\t\t\t[-75.839605, 39.371978],\n\t\t\t\t\t\t[-75.840283, 39.371734],\n\t\t\t\t\t\t[-75.841682, 39.371230],\n\t\t\t\t\t\t[-75.841727, 39.371213],\n\t\t\t\t\t\t[-75.842385, 39.370978],\n\t\t\t\t\t\t[-75.843785, 39.369951],\n\t\t\t\t\t\t[-75.844304, 39.369571],\n\t\t\t\t\t\t[-75.844320, 39.369544],\n\t\t\t\t\t\t[-75.845476, 39.367698],\n\t\t\t\t\t\t[-75.846048, 39.367628],\n\t\t\t\t\t\t[-75.846611, 39.367561],\n\t\t\t\t\t\t[-75.846694, 39.367551],\n\t\t\t\t\t\t[-75.846776, 39.367541],\n\t\t\t\t\t\t[-75.846901, 39.367526],\n\t\t\t\t\t\t[-75.847037, 39.367584],\n\t\t\t\t\t\t[-75.848501, 39.368208],\n\t\t\t\t\t\t[-75.848720, 39.368065],\n\t\t\t\t\t\t[-75.848845, 39.367984],\n\t\t\t\t\t\t[-75.848970, 39.367902],\n\t\t\t\t\t\t[-75.849392, 39.367627],\n\t\t\t\t\t\t[-75.851468, 39.366866],\n\t\t\t\t\t\t[-75.852394, 39.366527],\n\t\t\t\t\t\t[-75.853064, 39.365890],\n\t\t\t\t\t\t[-75.853652, 39.365333],\n\t\t\t\t\t\t[-75.855430, 39.364562],\n\t\t\t\t\t\t[-75.856646, 39.364892],\n\t\t\t\t\t\t[-75.857246, 39.365055],\n\t\t\t\t\t\t[-75.858592, 39.365930],\n\t\t\t\t\t\t[-75.859169, 39.366306],\n\t\t\t\t\t\t[-75.860832, 39.367466],\n\t\t\t\t\t\t[-75.861038, 39.367610],\n\t\t\t\t\t\t[-75.861415, 39.367549],\n\t\t\t\t\t\t[-75.862518, 39.367370],\n\t\t\t\t\t\t[-75.863754, 39.366436],\n\t\t\t\t\t\t[-75.864978, 39.366503],\n\t\t\t\t\t\t[-75.865669, 39.366542],\n\t\t\t\t\t\t[-75.866206, 39.366893],\n\t\t\t\t\t\t[-75.866780, 39.367268],\n\t\t\t\t\t\t[-75.867355, 39.367644],\n\t\t\t\t\t\t[-75.867614, 39.367813],\n\t\t\t\t\t\t[-75.868066, 39.367759],\n\t\t\t\t\t\t[-75.868377, 39.367721],\n\t\t\t\t\t\t[-75.872062, 39.366344],\n\t\t\t\t\t\t[-75.872575, 39.366223],\n\t\t\t\t\t\t[-75.873341, 39.366043],\n\t\t\t\t\t\t[-75.874412, 39.365791],\n\t\t\t\t\t\t[-75.875024, 39.365789],\n\t\t\t\t\t\t[-75.875801, 39.365787],\n\t\t\t\t\t\t[-75.876636, 39.365707],\n\t\t\t\t\t\t[-75.877848, 39.365590],\n\t\t\t\t\t\t[-75.877952, 39.365581],\n\t\t\t\t\t\t[-75.877965, 39.365580],\n\t\t\t\t\t\t[-75.879463, 39.365467],\n\t\t\t\t\t\t[-75.879839, 39.365329],\n\t\t\t\t\t\t[-75.880935, 39.364929],\n\t\t\t\t\t\t[-75.882131, 39.364327],\n\t\t\t\t\t\t[-75.882141, 39.364322],\n\t\t\t\t\t\t[-75.882827, 39.363452],\n\t\t\t\t\t\t[-75.883628, 39.362251],\n\t\t\t\t\t\t[-75.884391, 39.361354],\n\t\t\t\t\t\t[-75.885101, 39.360843],\n\t\t\t\t\t\t[-75.885864, 39.360797],\n\t\t\t\t\t\t[-75.888499, 39.361889],\n\t\t\t\t\t\t[-75.888542, 39.361907],\n\t\t\t\t\t\t[-75.888874, 39.362131],\n\t\t\t\t\t\t[-75.890174, 39.363010],\n\t\t\t\t\t\t[-75.891222, 39.363808],\n\t\t\t\t\t\t[-75.892288, 39.364620],\n\t\t\t\t\t\t[-75.894523, 39.365638],\n\t\t\t\t\t\t[-75.894855, 39.365691],\n\t\t\t\t\t\t[-75.894911, 39.365700],\n\t\t\t\t\t\t[-75.895980, 39.365871],\n\t\t\t\t\t\t[-75.897376, 39.365567],\n\t\t\t\t\t\t[-75.897782, 39.365478],\n\t\t\t\t\t\t[-75.898187, 39.365390],\n\t\t\t\t\t\t[-75.898292, 39.365367],\n\t\t\t\t\t\t[-75.899827, 39.364914],\n\t\t\t\t\t\t[-75.900360, 39.364757],\n\t\t\t\t\t\t[-75.902687, 39.364478],\n\t\t\t\t\t\t[-75.903793, 39.364345],\n\t\t\t\t\t\t[-75.908035, 39.364501],\n\t\t\t\t\t\t[-75.908470, 39.364601],\n\t\t\t\t\t\t[-75.909337, 39.364800],\n\t\t\t\t\t\t[-75.910202, 39.364999],\n\t\t\t\t\t\t[-75.911805, 39.365367],\n\t\t\t\t\t\t[-75.912002, 39.365413],\n\t\t\t\t\t\t[-75.913581, 39.366096],\n\t\t\t\t\t\t[-75.915008, 39.366584],\n\t\t\t\t\t\t[-75.915029, 39.366587],\n\t\t\t\t\t\t[-75.916557, 39.366817],\n\t\t\t\t\t\t[-75.916699, 39.366821],\n\t\t\t\t\t\t[-75.917606, 39.366844],\n\t\t\t\t\t\t[-75.918515, 39.366868],\n\t\t\t\t\t\t[-75.918914, 39.366878],\n\t\t\t\t\t\t[-75.919789, 39.366948],\n\t\t\t\t\t\t[-75.919914, 39.366958],\n\t\t\t\t\t\t[-75.921150, 39.367057],\n\t\t\t\t\t\t[-75.922775, 39.367248],\n\t\t\t\t\t\t[-75.923884, 39.367968],\n\t\t\t\t\t\t[-75.923950, 39.368011],\n\t\t\t\t\t\t[-75.925285, 39.369750],\n\t\t\t\t\t\t[-75.926589, 39.370994],\n\t\t\t\t\t\t[-75.927154, 39.371187],\n\t\t\t\t\t\t[-75.927940, 39.371456],\n\t\t\t\t\t\t[-75.929962, 39.371681],\n\t\t\t\t\t\t[-75.930638, 39.371623],\n\t\t\t\t\t\t[-75.932022, 39.371505],\n\t\t\t\t\t\t[-75.934112, 39.370857],\n\t\t\t\t\t\t[-75.936424, 39.369544],\n\t\t\t\t\t\t[-75.937728, 39.368743],\n\t\t\t\t\t\t[-75.937790, 39.368715],\n\t\t\t\t\t\t[-75.939849, 39.367786],\n\t\t\t\t\t\t[-75.941032, 39.367675],\n\t\t\t\t\t\t[-75.942337, 39.367752],\n\t\t\t\t\t\t[-75.943750, 39.368064],\n\t\t\t\t\t\t[-75.943893, 39.368095],\n\t\t\t\t\t\t[-75.944429, 39.368272],\n\t\t\t\t\t\t[-75.945365, 39.368583],\n\t\t\t\t\t\t[-75.946160, 39.369266],\n\t\t\t\t\t\t[-75.946425, 39.369494],\n\t\t\t\t\t\t[-75.946830, 39.369842],\n\t\t\t\t\t\t[-75.947769, 39.371032],\n\t\t\t\t\t\t[-75.949246, 39.372421],\n\t\t\t\t\t\t[-75.949340, 39.372509],\n\t\t\t\t\t\t[-75.950401, 39.373153],\n\t\t\t\t\t\t[-75.951219, 39.373432],\n\t\t\t\t\t\t[-75.951820, 39.373638],\n\t\t\t\t\t\t[-75.954299, 39.374145],\n\t\t\t\t\t\t[-75.956970, 39.374603],\n\t\t\t\t\t\t[-75.958488, 39.374553],\n\t\t\t\t\t\t[-75.960083, 39.374698],\n\t\t\t\t\t\t[-75.960143, 39.374697],\n\t\t\t\t\t\t[-75.961448, 39.374694],\n\t\t\t\t\t\t[-75.964065, 39.374725],\n\t\t\t\t\t\t[-75.964388, 39.374688],\n\t\t\t\t\t\t[-75.966011, 39.374504],\n\t\t\t\t\t\t[-75.968269, 39.373973],\n\t\t\t\t\t\t[-75.969410, 39.373424],\n\t\t\t\t\t\t[-75.970603, 39.372852],\n\t\t\t\t\t\t[-75.971952, 39.371644],\n\t\t\t\t\t\t[-75.972793, 39.370891],\n\t\t\t\t\t\t[-75.973640, 39.369632],\n\t\t\t\t\t\t[-75.974418, 39.368621],\n\t\t\t\t\t\t[-75.976249, 39.367458],\n\t\t\t\t\t\t[-75.977714, 39.366874],\n\t\t\t\t\t\t[-75.979034, 39.366577],\n\t\t\t\t\t\t[-75.980539, 39.366571],\n\t\t\t\t\t\t[-75.981109, 39.366569],\n\t\t\t\t\t\t[-75.981506, 39.366840],\n\t\t\t\t\t\t[-75.982696, 39.367492],\n\t\t\t\t\t\t[-75.983985, 39.369182],\n\t\t\t\t\t\t[-75.984054, 39.369270],\n\t\t\t\t\t\t[-75.985267, 39.370807],\n\t\t\t\t\t\t[-75.987136, 39.372577],\n\t\t\t\t\t\t[-75.988998, 39.373771],\n\t\t\t\t\t\t[-75.990951, 39.374710],\n\t\t\t\t\t\t[-75.991996, 39.375129],\n\t\t\t\t\t\t[-75.992193, 39.375263],\n\t\t\t\t\t\t[-75.992317, 39.375347],\n\t\t\t\t\t\t[-75.993125, 39.375667],\n\t\t\t\t\t\t[-75.993932, 39.375848],\n\t\t\t\t\t\t[-75.994178, 39.375904],\n\t\t\t\t\t\t[-75.995094, 39.376106],\n\t\t\t\t\t\t[-75.996147, 39.376235],\n\t\t\t\t\t\t[-75.998550, 39.376453],\n\t\t\t\t\t\t[-75.999397, 39.376636],\n\t\t\t\t\t\t[-76.000221, 39.376651],\n\t\t\t\t\t\t[-76.001113, 39.376579],\n\t\t\t\t\t\t[-76.001541, 39.376522],\n\t\t\t\t\t\t[-76.001704, 39.376507],\n\t\t\t\t\t\t[-76.002197, 39.376462],\n\t\t\t\t\t\t[-76.002361, 39.376448],\n\t\t\t\t\t\t[-76.002463, 39.376440],\n\t\t\t\t\t\t[-76.002514, 39.384805],\n\t\t\t\t\t\t[-76.002515, 39.385024],\n\t\t\t\t\t\t[-76.006805, 39.385174],\n\t\t\t\t\t\t[-76.022304, 39.385716],\n\t\t\t\t\t\t[-76.035464, 39.386176],\n\t\t\t\t\t\t[-76.035568, 39.386180],\n\t\t\t\t\t\t[-76.035644, 39.386213],\n\t\t\t\t\t\t[-76.039279, 39.387796],\n\t\t\t\t\t\t[-76.039932, 39.388080],\n\t\t\t\t\t\t[-76.039973, 39.388327],\n\t\t\t\t\t\t[-76.040854, 39.393594],\n\t\t\t\t\t\t[-76.040962, 39.394237],\n\t\t\t\t\t\t[-76.040612, 39.394692],\n\t\t\t\t\t\t[-76.035298, 39.401609],\n\t\t\t\t\t\t[-76.035002, 39.401994],\n\t\t\t\t\t\t[-76.034720, 39.402093],\n\t\t\t\t\t\t[-76.018726, 39.407696],\n\t\t\t\t\t\t[-76.018061, 39.407929],\n\t\t\t\t\t\t[-76.016531, 39.408465],\n\t\t\t\t\t\t[-76.015763, 39.408947],\n\t\t\t\t\t\t[-76.012567, 39.410955],\n\t\t\t\t\t\t[-76.009693, 39.412760],\n\t\t\t\t\t\t[-76.006880, 39.414527],\n\t\t\t\t\t\t[-76.002856, 39.421225],\n\t\t\t\t\t\t[-75.998586, 39.428333],\n\t\t\t\t\t\t[-75.997396, 39.430314],\n\t\t\t\t\t\t[-75.996697, 39.430549],\n\t\t\t\t\t\t[-75.992742, 39.431877],\n\t\t\t\t\t\t[-75.992425, 39.431983],\n\t\t\t\t\t\t[-75.988840, 39.433187],\n\t\t\t\t\t\t[-75.982585, 39.435287],\n\t\t\t\t\t\t[-75.977751, 39.443020],\n\t\t\t\t\t\t[-75.976747, 39.444627],\n\t\t\t\t\t\t[-75.976698, 39.445690],\n\t\t\t\t\t\t[-75.976601, 39.447808],\n\t\t\t\t\t\t[-75.990005, 39.458646],\n\t\t\t\t\t\t[-75.990128, 39.458624],\n\t\t\t\t\t\t[-75.991779, 39.458332],\n\t\t\t\t\t\t[-75.994432, 39.457862],\n\t\t\t\t\t\t[-75.998276, 39.457182],\n\t\t\t\t\t\t[-76.002497, 39.450231],\n\t\t\t\t\t\t[-76.002513, 39.450204],\n\t\t\t\t\t\t[-76.002579, 39.450194],\n\t\t\t\t\t\t[-76.009071, 39.449256],\n\t\t\t\t\t\t[-76.009452, 39.449201],\n\t\t\t\t\t\t[-76.009536, 39.449316],\n\t\t\t\t\t\t[-76.011880, 39.452524],\n\t\t\t\t\t\t[-76.012312, 39.453115],\n\t\t\t\t\t\t[-76.011716, 39.454165],\n\t\t\t\t\t\t[-76.010009, 39.457170],\n\t\t\t\t\t\t[-76.002926, 39.469642],\n\t\t\t\t\t\t[-75.996570, 39.476658],\n\t\t\t\t\t\t[-75.995289, 39.483014],\n\t\t\t\t\t\t[-75.994135, 39.488743],\n\t\t\t\t\t\t[-75.993469, 39.490583],\n\t\t\t\t\t\t[-75.986298, 39.510398],\n\t\t\t\t\t\t[-75.985403, 39.512108],\n\t\t\t\t\t\t[-75.985238, 39.512424],\n\t\t\t\t\t\t[-75.980279, 39.521900],\n\t\t\t\t\t\t[-75.976105, 39.529876],\n\t\t\t\t\t\t[-75.976057, 39.529968],\n\t\t\t\t\t\t[-75.975313, 39.530678],\n\t\t\t\t\t\t[-75.973678, 39.532237],\n\t\t\t\t\t\t[-75.966955, 39.538650],\n\t\t\t\t\t\t[-75.966959, 39.538839],\n\t\t\t\t\t\t[-75.967093, 39.544623],\n\t\t\t\t\t\t[-75.967173, 39.548047],\n\t\t\t\t\t\t[-75.967186, 39.548627],\n\t\t\t\t\t\t[-75.967221, 39.550140],\n\t\t\t\t\t\t[-75.970337, 39.557637],\n\t\t\t\t\t\t[-75.992633, 39.563098],\n\t\t\t\t\t\t[-75.999669, 39.560488],\n\t\t\t\t\t\t[-76.000190, 39.559696],\n\t\t\t\t\t\t[-76.001244, 39.558096],\n\t\t\t\t\t\t[-76.002793, 39.555741],\n\t\t\t\t\t\t[-76.003434, 39.554768],\n\t\t\t\t\t\t[-76.004207, 39.553594],\n\t\t\t\t\t\t[-76.006213, 39.550546],\n\t\t\t\t\t\t[-76.006272, 39.550457],\n\t\t\t\t\t\t[-76.006341, 39.550352],\n\t\t\t\t\t\t[-76.030420, 39.548784],\n\t\t\t\t\t\t[-76.046876, 39.547713],\n\t\t\t\t\t\t[-76.063379, 39.546638],\n\t\t\t\t\t\t[-76.063811, 39.546610],\n\t\t\t\t\t\t[-76.075714, 39.543032],\n\t\t\t\t\t\t[-76.085972, 39.559011],\n\t\t\t\t\t\t[-76.106161, 39.580610],\n\t\t\t\t\t\t[-76.135674, 39.613108],\n\t\t\t\t\t\t[-76.144081, 39.617709],\n\t\t\t\t\t\t[-76.233259, 39.721305]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US24027\",\n\t\t\t\t\"STATE\": \"24\",\n\t\t\t\t\"COUNTY\": \"027\",\n\t\t\t\t\"NAME\": \"Howard\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 250.741000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.144669, 39.294707],\n\t\t\t\t\t\t[-77.186804, 39.338203],\n\t\t\t\t\t\t[-77.168801, 39.353502],\n\t\t\t\t\t\t[-77.168558, 39.353719],\n\t\t\t\t\t\t[-77.168080, 39.353957],\n\t\t\t\t\t\t[-76.882274, 39.350185],\n\t\t\t\t\t\t[-76.763830, 39.251312],\n\t\t\t\t\t\t[-76.739528, 39.232163],\n\t\t\t\t\t\t[-76.723811, 39.228181],\n\t\t\t\t\t\t[-76.705184, 39.215548],\n\t\t\t\t\t\t[-76.697085, 39.214092],\n\t\t\t\t\t\t[-76.719217, 39.191480],\n\t\t\t\t\t\t[-76.722606, 39.182857],\n\t\t\t\t\t\t[-76.740631, 39.179221],\n\t\t\t\t\t\t[-76.763738, 39.166229],\n\t\t\t\t\t\t[-76.776962, 39.150883],\n\t\t\t\t\t\t[-76.786966, 39.128782],\n\t\t\t\t\t\t[-76.824608, 39.117217],\n\t\t\t\t\t\t[-76.840362, 39.103142],\n\t\t\t\t\t\t[-76.849084, 39.109097],\n\t\t\t\t\t\t[-76.869003, 39.112214],\n\t\t\t\t\t\t[-76.888505, 39.130967],\n\t\t\t\t\t\t[-77.144669, 39.294707]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US25001\",\n\t\t\t\t\"STATE\": \"25\",\n\t\t\t\t\"COUNTY\": \"001\",\n\t\t\t\t\"NAME\": \"Barnstable\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 393.723000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-70.147411, 42.061590],\n\t\t\t\t\t\t[-70.148294, 42.061950],\n\t\t\t\t\t\t[-70.155415, 42.062409],\n\t\t\t\t\t\t[-70.169781, 42.059736],\n\t\t\t\t\t\t[-70.178468, 42.056420],\n\t\t\t\t\t\t[-70.186816, 42.050450],\n\t\t\t\t\t\t[-70.194456, 42.039470],\n\t\t\t\t\t\t[-70.195345, 42.034163],\n\t\t\t\t\t\t[-70.193074, 42.027576],\n\t\t\t\t\t\t[-70.186295, 42.021308],\n\t\t\t\t\t\t[-70.186708, 42.019904],\n\t\t\t\t\t\t[-70.190834, 42.020028],\n\t\t\t\t\t\t[-70.196693, 42.022429],\n\t\t\t\t\t\t[-70.208016, 42.030730],\n\t\t\t\t\t\t[-70.218701, 42.045848],\n\t\t\t\t\t\t[-70.233256, 42.057714],\n\t\t\t\t\t\t[-70.238875, 42.060479],\n\t\t\t\t\t\t[-70.243540, 42.060569],\n\t\t\t\t\t\t[-70.245385, 42.063733],\n\t\t\t\t\t\t[-70.238087, 42.072878],\n\t\t\t\t\t\t[-70.225626, 42.078601],\n\t\t\t\t\t\t[-70.206899, 42.081900],\n\t\t\t\t\t\t[-70.189305, 42.082337],\n\t\t\t\t\t\t[-70.160166, 42.078628],\n\t\t\t\t\t\t[-70.154177, 42.077139],\n\t\t\t\t\t\t[-70.115968, 42.067638],\n\t\t\t\t\t\t[-70.082624, 42.054657],\n\t\t\t\t\t\t[-70.058531, 42.040363],\n\t\t\t\t\t\t[-70.034806, 42.018916],\n\t\t\t\t\t\t[-70.033501, 42.017736],\n\t\t\t\t\t\t[-70.031054, 42.014562],\n\t\t\t\t\t\t[-70.029953, 42.013135],\n\t\t\t\t\t\t[-70.029449, 42.012482],\n\t\t\t\t\t\t[-70.016280, 41.995403],\n\t\t\t\t\t\t[-70.014109, 41.992587],\n\t\t\t\t\t\t[-70.013876, 41.992285],\n\t\t\t\t\t\t[-70.011957, 41.989796],\n\t\t\t\t\t\t[-70.011898, 41.989720],\n\t\t\t\t\t\t[-70.010510, 41.987563],\n\t\t\t\t\t\t[-70.005717, 41.980113],\n\t\t\t\t\t\t[-70.005458, 41.979710],\n\t\t\t\t\t\t[-70.005332, 41.979515],\n\t\t\t\t\t\t[-70.004608, 41.978389],\n\t\t\t\t\t\t[-70.004271, 41.977865],\n\t\t\t\t\t\t[-69.986196, 41.949769],\n\t\t\t\t\t\t[-69.986085, 41.949597],\n\t\t\t\t\t\t[-69.986024, 41.949465],\n\t\t\t\t\t\t[-69.968598, 41.911700],\n\t\t\t\t\t\t[-69.945314, 41.845222],\n\t\t\t\t\t\t[-69.935952, 41.809422],\n\t\t\t\t\t\t[-69.928652, 41.741250],\n\t\t\t\t\t\t[-69.928311, 41.697981],\n\t\t\t\t\t\t[-69.928308, 41.697681],\n\t\t\t\t\t\t[-69.928275, 41.693504],\n\t\t\t\t\t\t[-69.928265, 41.692247],\n\t\t\t\t\t\t[-69.928265, 41.692242],\n\t\t\t\t\t\t[-69.928261, 41.691700],\n\t\t\t\t\t\t[-69.928723, 41.689634],\n\t\t\t\t\t\t[-69.929377, 41.686713],\n\t\t\t\t\t\t[-69.929457, 41.686357],\n\t\t\t\t\t\t[-69.930900, 41.679910],\n\t\t\t\t\t\t[-69.933114, 41.670014],\n\t\t\t\t\t\t[-69.933149, 41.669955],\n\t\t\t\t\t\t[-69.934120, 41.668304],\n\t\t\t\t\t\t[-69.942742, 41.653649],\n\t\t\t\t\t\t[-69.943474, 41.652406],\n\t\t\t\t\t\t[-69.947599, 41.645394],\n\t\t\t\t\t\t[-69.951169, 41.640799],\n\t\t\t\t\t\t[-69.951911, 41.640656],\n\t\t\t\t\t\t[-69.952844, 41.640476],\n\t\t\t\t\t\t[-69.953924, 41.640268],\n\t\t\t\t\t\t[-69.956862, 41.639701],\n\t\t\t\t\t\t[-69.958272, 41.639429],\n\t\t\t\t\t\t[-69.963234, 41.633794],\n\t\t\t\t\t\t[-69.967869, 41.627503],\n\t\t\t\t\t\t[-69.976478, 41.603664],\n\t\t\t\t\t\t[-69.982768, 41.581812],\n\t\t\t\t\t\t[-69.988215, 41.554704],\n\t\t\t\t\t\t[-69.988495, 41.554390],\n\t\t\t\t\t\t[-69.996546, 41.545360],\n\t\t\t\t\t\t[-69.998071, 41.543650],\n\t\t\t\t\t\t[-69.999063, 41.543400],\n\t\t\t\t\t\t[-70.003768, 41.542213],\n\t\t\t\t\t\t[-70.004136, 41.542120],\n\t\t\t\t\t\t[-70.004554, 41.542166],\n\t\t\t\t\t\t[-70.011211, 41.542892],\n\t\t\t\t\t\t[-70.011504, 41.542924],\n\t\t\t\t\t\t[-70.011725, 41.543120],\n\t\t\t\t\t\t[-70.014456, 41.545534],\n\t\t\t\t\t\t[-70.016584, 41.550772],\n\t\t\t\t\t\t[-70.015059, 41.553037],\n\t\t\t\t\t\t[-70.011596, 41.552766],\n\t\t\t\t\t\t[-70.010644, 41.552692],\n\t\t\t\t\t\t[-70.008854, 41.554510],\n\t\t\t\t\t\t[-70.001530, 41.561953],\n\t\t\t\t\t\t[-70.001281, 41.562470],\n\t\t\t\t\t\t[-70.000937, 41.563184],\n\t\t\t\t\t\t[-70.000627, 41.563827],\n\t\t\t\t\t\t[-69.994357, 41.576846],\n\t\t\t\t\t\t[-69.991723, 41.588510],\n\t\t\t\t\t\t[-69.987192, 41.608579],\n\t\t\t\t\t\t[-69.987111, 41.608765],\n\t\t\t\t\t\t[-69.982946, 41.618316],\n\t\t\t\t\t\t[-69.980418, 41.624113],\n\t\t\t\t\t\t[-69.977489, 41.630832],\n\t\t\t\t\t\t[-69.976886, 41.632213],\n\t\t\t\t\t\t[-69.976641, 41.632777],\n\t\t\t\t\t\t[-69.975579, 41.635212],\n\t\t\t\t\t\t[-69.975245, 41.635978],\n\t\t\t\t\t\t[-69.973035, 41.641046],\n\t\t\t\t\t\t[-69.973037, 41.641126],\n\t\t\t\t\t\t[-69.973153, 41.646963],\n\t\t\t\t\t\t[-69.975719, 41.653738],\n\t\t\t\t\t\t[-69.975811, 41.653798],\n\t\t\t\t\t\t[-69.990659, 41.663471],\n\t\t\t\t\t\t[-69.990668, 41.663476],\n\t\t\t\t\t\t[-69.990734, 41.663519],\n\t\t\t\t\t\t[-69.990748, 41.663528],\n\t\t\t\t\t\t[-69.990790, 41.663556],\n\t\t\t\t\t\t[-69.996194, 41.667076],\n\t\t\t\t\t\t[-69.996359, 41.667184],\n\t\t\t\t\t\t[-69.996509, 41.667246],\n\t\t\t\t\t\t[-70.002697, 41.669799],\n\t\t\t\t\t\t[-70.003016, 41.669931],\n\t\t\t\t\t\t[-70.006833, 41.671506],\n\t\t\t\t\t\t[-70.007011, 41.671579],\n\t\t\t\t\t\t[-70.007153, 41.671587],\n\t\t\t\t\t\t[-70.014211, 41.671971],\n\t\t\t\t\t\t[-70.015789, 41.671530],\n\t\t\t\t\t\t[-70.020964, 41.670085],\n\t\t\t\t\t\t[-70.029119, 41.667807],\n\t\t\t\t\t\t[-70.029319, 41.667751],\n\t\t\t\t\t\t[-70.029346, 41.667744],\n\t\t\t\t\t\t[-70.037145, 41.666880],\n\t\t\t\t\t\t[-70.037255, 41.666868],\n\t\t\t\t\t\t[-70.037757, 41.666812],\n\t\t\t\t\t\t[-70.055523, 41.664843],\n\t\t\t\t\t\t[-70.089238, 41.662813],\n\t\t\t\t\t\t[-70.119904, 41.655455],\n\t\t\t\t\t\t[-70.120935, 41.655208],\n\t\t\t\t\t\t[-70.121351, 41.655108],\n\t\t\t\t\t\t[-70.122597, 41.654809],\n\t\t\t\t\t\t[-70.122689, 41.654787],\n\t\t\t\t\t\t[-70.134702, 41.651905],\n\t\t\t\t\t\t[-70.140163, 41.650594],\n\t\t\t\t\t\t[-70.140207, 41.650584],\n\t\t\t\t\t\t[-70.140437, 41.650529],\n\t\t\t\t\t\t[-70.140877, 41.650423],\n\t\t\t\t\t\t[-70.141049, 41.650423],\n\t\t\t\t\t\t[-70.141141, 41.650423],\n\t\t\t\t\t\t[-70.142592, 41.650424],\n\t\t\t\t\t\t[-70.145882, 41.650427],\n\t\t\t\t\t\t[-70.147011, 41.650428],\n\t\t\t\t\t\t[-70.148435, 41.650429],\n\t\t\t\t\t\t[-70.158621, 41.650438],\n\t\t\t\t\t\t[-70.191061, 41.645259],\n\t\t\t\t\t\t[-70.245867, 41.628479],\n\t\t\t\t\t\t[-70.256210, 41.620698],\n\t\t\t\t\t\t[-70.255420, 41.617541],\n\t\t\t\t\t\t[-70.259601, 41.610863],\n\t\t\t\t\t\t[-70.265424, 41.609333],\n\t\t\t\t\t\t[-70.267587, 41.610912],\n\t\t\t\t\t\t[-70.269687, 41.617775],\n\t\t\t\t\t\t[-70.269130, 41.625742],\n\t\t\t\t\t\t[-70.274522, 41.632927],\n\t\t\t\t\t\t[-70.281320, 41.635125],\n\t\t\t\t\t\t[-70.290620, 41.635196],\n\t\t\t\t\t\t[-70.321588, 41.630508],\n\t\t\t\t\t\t[-70.329924, 41.634578],\n\t\t\t\t\t\t[-70.338067, 41.636338],\n\t\t\t\t\t\t[-70.351634, 41.634687],\n\t\t\t\t\t\t[-70.360352, 41.631069],\n\t\t\t\t\t\t[-70.364892, 41.626721],\n\t\t\t\t\t\t[-70.364744, 41.623671],\n\t\t\t\t\t\t[-70.369854, 41.615888],\n\t\t\t\t\t\t[-70.379151, 41.611361],\n\t\t\t\t\t\t[-70.400581, 41.606382],\n\t\t\t\t\t\t[-70.401148, 41.606451],\n\t\t\t\t\t\t[-70.408535, 41.607345],\n\t\t\t\t\t\t[-70.413944, 41.606965],\n\t\t\t\t\t\t[-70.437246, 41.605329],\n\t\t\t\t\t\t[-70.437889, 41.604249],\n\t\t\t\t\t\t[-70.440556, 41.599767],\n\t\t\t\t\t\t[-70.442225, 41.596963],\n\t\t\t\t\t\t[-70.444350, 41.593393],\n\t\t\t\t\t\t[-70.445289, 41.591815],\n\t\t\t\t\t\t[-70.446543, 41.590247],\n\t\t\t\t\t\t[-70.450382, 41.585445],\n\t\t\t\t\t\t[-70.456052, 41.578355],\n\t\t\t\t\t\t[-70.457356, 41.576724],\n\t\t\t\t\t\t[-70.461093, 41.572051],\n\t\t\t\t\t\t[-70.461278, 41.571820],\n\t\t\t\t\t\t[-70.461960, 41.571213],\n\t\t\t\t\t\t[-70.462206, 41.570995],\n\t\t\t\t\t\t[-70.462239, 41.570965],\n\t\t\t\t\t\t[-70.472778, 41.561595],\n\t\t\t\t\t\t[-70.473328, 41.561106],\n\t\t\t\t\t\t[-70.476231, 41.558524],\n\t\t\t\t\t\t[-70.476256, 41.558502],\n\t\t\t\t\t\t[-70.476275, 41.558493],\n\t\t\t\t\t\t[-70.483350, 41.555259],\n\t\t\t\t\t\t[-70.485155, 41.554434],\n\t\t\t\t\t\t[-70.485571, 41.554244],\n\t\t\t\t\t\t[-70.486815, 41.553887],\n\t\t\t\t\t\t[-70.493244, 41.552044],\n\t\t\t\t\t\t[-70.522009, 41.548999],\n\t\t\t\t\t\t[-70.522327, 41.548965],\n\t\t\t\t\t\t[-70.531640, 41.548807],\n\t\t\t\t\t\t[-70.559482, 41.548334],\n\t\t\t\t\t\t[-70.559689, 41.548330],\n\t\t\t\t\t\t[-70.559728, 41.548326],\n\t\t\t\t\t\t[-70.560909, 41.548203],\n\t\t\t\t\t\t[-70.561261, 41.548167],\n\t\t\t\t\t\t[-70.574023, 41.546840],\n\t\t\t\t\t\t[-70.588412, 41.545345],\n\t\t\t\t\t\t[-70.588494, 41.545336],\n\t\t\t\t\t\t[-70.588810, 41.545304],\n\t\t\t\t\t\t[-70.588894, 41.545295],\n\t\t\t\t\t\t[-70.589570, 41.545225],\n\t\t\t\t\t\t[-70.596570, 41.544497],\n\t\t\t\t\t\t[-70.611081, 41.542989],\n\t\t\t\t\t\t[-70.611147, 41.542975],\n\t\t\t\t\t\t[-70.613006, 41.542584],\n\t\t\t\t\t\t[-70.614398, 41.542292],\n\t\t\t\t\t\t[-70.616715, 41.541805],\n\t\t\t\t\t\t[-70.617223, 41.541698],\n\t\t\t\t\t\t[-70.617638, 41.541611],\n\t\t\t\t\t\t[-70.617911, 41.541553],\n\t\t\t\t\t\t[-70.633607, 41.538254],\n\t\t\t\t\t\t[-70.633713, 41.538192],\n\t\t\t\t\t\t[-70.633800, 41.538141],\n\t\t\t\t\t\t[-70.643627, 41.532357],\n\t\t\t\t\t\t[-70.650059, 41.524172],\n\t\t\t\t\t\t[-70.650128, 41.524084],\n\t\t\t\t\t\t[-70.651566, 41.522254],\n\t\t\t\t\t\t[-70.652050, 41.521639],\n\t\t\t\t\t\t[-70.654104, 41.519025],\n\t\t\t\t\t\t[-70.654168, 41.518992],\n\t\t\t\t\t\t[-70.663856, 41.514031],\n\t\t\t\t\t\t[-70.669518, 41.513339],\n\t\t\t\t\t\t[-70.672253, 41.515774],\n\t\t\t\t\t\t[-70.674646, 41.519385],\n\t\t\t\t\t\t[-70.681397, 41.517550],\n\t\t\t\t\t\t[-70.688353, 41.516789],\n\t\t\t\t\t\t[-70.691364, 41.517842],\n\t\t\t\t\t\t[-70.694800, 41.525640],\n\t\t\t\t\t\t[-70.658659, 41.543385],\n\t\t\t\t\t\t[-70.654302, 41.549926],\n\t\t\t\t\t\t[-70.655365, 41.557498],\n\t\t\t\t\t\t[-70.653899, 41.565160],\n\t\t\t\t\t\t[-70.648780, 41.569870],\n\t\t\t\t\t\t[-70.642748, 41.572385],\n\t\t\t\t\t\t[-70.640948, 41.577325],\n\t\t\t\t\t\t[-70.642040, 41.583066],\n\t\t\t\t\t\t[-70.652449, 41.605210],\n\t\t\t\t\t\t[-70.651986, 41.610184],\n\t\t\t\t\t\t[-70.640003, 41.624616],\n\t\t\t\t\t\t[-70.645251, 41.633547],\n\t\t\t\t\t\t[-70.652614, 41.637829],\n\t\t\t\t\t\t[-70.650419, 41.644202],\n\t\t\t\t\t\t[-70.638695, 41.649427],\n\t\t\t\t\t\t[-70.637632, 41.654573],\n\t\t\t\t\t\t[-70.646308, 41.678433],\n\t\t\t\t\t\t[-70.649285, 41.680943],\n\t\t\t\t\t\t[-70.661475, 41.681756],\n\t\t\t\t\t\t[-70.645962, 41.693794],\n\t\t\t\t\t\t[-70.625440, 41.698691],\n\t\t\t\t\t\t[-70.623652, 41.707398],\n\t\t\t\t\t\t[-70.626529, 41.712995],\n\t\t\t\t\t\t[-70.642914, 41.718410],\n\t\t\t\t\t\t[-70.621622, 41.748972],\n\t\t\t\t\t\t[-70.632578, 41.762821],\n\t\t\t\t\t\t[-70.565281, 41.786705],\n\t\t\t\t\t\t[-70.537289, 41.810859],\n\t\t\t\t\t\t[-70.533823, 41.806323],\n\t\t\t\t\t\t[-70.533303, 41.805643],\n\t\t\t\t\t\t[-70.532656, 41.804796],\n\t\t\t\t\t\t[-70.525070, 41.797907],\n\t\t\t\t\t\t[-70.518468, 41.791912],\n\t\t\t\t\t\t[-70.517615, 41.791139],\n\t\t\t\t\t\t[-70.517411, 41.790953],\n\t\t\t\t\t\t[-70.516921, 41.790595],\n\t\t\t\t\t\t[-70.516651, 41.790398],\n\t\t\t\t\t\t[-70.516101, 41.789996],\n\t\t\t\t\t\t[-70.514603, 41.788901],\n\t\t\t\t\t\t[-70.514483, 41.788814],\n\t\t\t\t\t\t[-70.514424, 41.788771],\n\t\t\t\t\t\t[-70.494048, 41.773883],\n\t\t\t\t\t\t[-70.493016, 41.773318],\n\t\t\t\t\t\t[-70.492884, 41.773245],\n\t\t\t\t\t\t[-70.483477, 41.768094],\n\t\t\t\t\t\t[-70.482152, 41.767368],\n\t\t\t\t\t\t[-70.474051, 41.762931],\n\t\t\t\t\t\t[-70.473707, 41.762743],\n\t\t\t\t\t\t[-70.473335, 41.762539],\n\t\t\t\t\t\t[-70.471999, 41.761808],\n\t\t\t\t\t\t[-70.471969, 41.761791],\n\t\t\t\t\t\t[-70.471807, 41.761702],\n\t\t\t\t\t\t[-70.471552, 41.761563],\n\t\t\t\t\t\t[-70.458968, 41.757906],\n\t\t\t\t\t\t[-70.413713, 41.744756],\n\t\t\t\t\t\t[-70.412476, 41.744397],\n\t\t\t\t\t\t[-70.412071, 41.744336],\n\t\t\t\t\t\t[-70.376992, 41.739029],\n\t\t\t\t\t\t[-70.375341, 41.738779],\n\t\t\t\t\t\t[-70.375253, 41.738774],\n\t\t\t\t\t\t[-70.318091, 41.735748],\n\t\t\t\t\t\t[-70.315290, 41.735600],\n\t\t\t\t\t\t[-70.314667, 41.735567],\n\t\t\t\t\t\t[-70.291301, 41.734330],\n\t\t\t\t\t\t[-70.290957, 41.734312],\n\t\t\t\t\t\t[-70.290788, 41.734224],\n\t\t\t\t\t\t[-70.288323, 41.732946],\n\t\t\t\t\t\t[-70.277064, 41.727108],\n\t\t\t\t\t\t[-70.275393, 41.726242],\n\t\t\t\t\t\t[-70.275203, 41.726143],\n\t\t\t\t\t\t[-70.275164, 41.726079],\n\t\t\t\t\t\t[-70.274188, 41.724471],\n\t\t\t\t\t\t[-70.272289, 41.721346],\n\t\t\t\t\t\t[-70.263831, 41.714263],\n\t\t\t\t\t\t[-70.263654, 41.714115],\n\t\t\t\t\t\t[-70.263097, 41.714095],\n\t\t\t\t\t\t[-70.261440, 41.714035],\n\t\t\t\t\t\t[-70.259205, 41.713954],\n\t\t\t\t\t\t[-70.256395, 41.716236],\n\t\t\t\t\t\t[-70.252686, 41.719248],\n\t\t\t\t\t\t[-70.251794, 41.719973],\n\t\t\t\t\t\t[-70.250704, 41.720858],\n\t\t\t\t\t\t[-70.247935, 41.723106],\n\t\t\t\t\t\t[-70.247379, 41.723558],\n\t\t\t\t\t\t[-70.247050, 41.723825],\n\t\t\t\t\t\t[-70.237418, 41.731648],\n\t\t\t\t\t\t[-70.235048, 41.733572],\n\t\t\t\t\t\t[-70.234850, 41.733733],\n\t\t\t\t\t\t[-70.225881, 41.738150],\n\t\t\t\t\t\t[-70.225312, 41.738431],\n\t\t\t\t\t\t[-70.224462, 41.738849],\n\t\t\t\t\t\t[-70.224006, 41.739074],\n\t\t\t\t\t\t[-70.220842, 41.740632],\n\t\t\t\t\t\t[-70.216697, 41.742674],\n\t\t\t\t\t\t[-70.216073, 41.742981],\n\t\t\t\t\t\t[-70.198037, 41.749034],\n\t\t\t\t\t\t[-70.197525, 41.749206],\n\t\t\t\t\t\t[-70.193202, 41.750657],\n\t\t\t\t\t\t[-70.189254, 41.751982],\n\t\t\t\t\t\t[-70.189117, 41.751961],\n\t\t\t\t\t\t[-70.182076, 41.750885],\n\t\t\t\t\t\t[-70.176566, 41.752134],\n\t\t\t\t\t\t[-70.159127, 41.756085],\n\t\t\t\t\t\t[-70.143848, 41.759547],\n\t\t\t\t\t\t[-70.143444, 41.759639],\n\t\t\t\t\t\t[-70.141533, 41.760072],\n\t\t\t\t\t\t[-70.141519, 41.760071],\n\t\t\t\t\t\t[-70.140380, 41.759999],\n\t\t\t\t\t\t[-70.136007, 41.759724],\n\t\t\t\t\t\t[-70.129065, 41.759287],\n\t\t\t\t\t\t[-70.124364, 41.758991],\n\t\t\t\t\t\t[-70.124070, 41.758973],\n\t\t\t\t\t\t[-70.122132, 41.758851],\n\t\t\t\t\t\t[-70.121978, 41.758841],\n\t\t\t\t\t\t[-70.115895, 41.760650],\n\t\t\t\t\t\t[-70.115067, 41.760896],\n\t\t\t\t\t\t[-70.109319, 41.762606],\n\t\t\t\t\t\t[-70.097666, 41.766072],\n\t\t\t\t\t\t[-70.097658, 41.766074],\n\t\t\t\t\t\t[-70.096768, 41.766339],\n\t\t\t\t\t\t[-70.096061, 41.766549],\n\t\t\t\t\t\t[-70.086376, 41.768470],\n\t\t\t\t\t\t[-70.081833, 41.769371],\n\t\t\t\t\t\t[-70.067603, 41.772193],\n\t\t\t\t\t\t[-70.065142, 41.772681],\n\t\t\t\t\t\t[-70.064314, 41.772845],\n\t\t\t\t\t\t[-70.060674, 41.774180],\n\t\t\t\t\t\t[-70.034390, 41.783822],\n\t\t\t\t\t\t[-70.033874, 41.784011],\n\t\t\t\t\t\t[-70.033223, 41.784250],\n\t\t\t\t\t\t[-70.024734, 41.787364],\n\t\t\t\t\t\t[-70.024658, 41.787427],\n\t\t\t\t\t\t[-70.023082, 41.788726],\n\t\t\t\t\t\t[-70.022809, 41.788952],\n\t\t\t\t\t\t[-70.022381, 41.789305],\n\t\t\t\t\t\t[-70.009936, 41.799570],\n\t\t\t\t\t\t[-70.008882, 41.800440],\n\t\t\t\t\t\t[-70.008462, 41.800786],\n\t\t\t\t\t\t[-70.003842, 41.808520],\n\t\t\t\t\t\t[-70.004486, 41.838826],\n\t\t\t\t\t\t[-70.009013, 41.876625],\n\t\t\t\t\t\t[-70.000188, 41.886938],\n\t\t\t\t\t\t[-70.002922, 41.890315],\n\t\t\t\t\t\t[-70.012154, 41.891656],\n\t\t\t\t\t\t[-70.024335, 41.898820],\n\t\t\t\t\t\t[-70.025553, 41.911699],\n\t\t\t\t\t\t[-70.030537, 41.929154],\n\t\t\t\t\t\t[-70.044995, 41.930049],\n\t\t\t\t\t\t[-70.054464, 41.927366],\n\t\t\t\t\t\t[-70.065671, 41.911658],\n\t\t\t\t\t\t[-70.065723, 41.899641],\n\t\t\t\t\t\t[-70.065372, 41.887702],\n\t\t\t\t\t\t[-70.064084, 41.878924],\n\t\t\t\t\t\t[-70.066002, 41.877011],\n\t\t\t\t\t\t[-70.067566, 41.877793],\n\t\t\t\t\t\t[-70.070889, 41.882973],\n\t\t\t\t\t\t[-70.073039, 41.899783],\n\t\t\t\t\t\t[-70.074006, 41.938650],\n\t\t\t\t\t\t[-70.077421, 41.985497],\n\t\t\t\t\t\t[-70.083775, 42.012041],\n\t\t\t\t\t\t[-70.089578, 42.024896],\n\t\t\t\t\t\t[-70.095595, 42.032832],\n\t\t\t\t\t\t[-70.108060, 42.043601],\n\t\t\t\t\t\t[-70.123043, 42.051668],\n\t\t\t\t\t\t[-70.147411, 42.061590]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US25003\",\n\t\t\t\t\"STATE\": \"25\",\n\t\t\t\t\"COUNTY\": \"003\",\n\t\t\t\t\"NAME\": \"Berkshire\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 926.825000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-73.000067, 42.312693],\n\t\t\t\t\t\t[-73.001846, 42.251090],\n\t\t\t\t\t\t[-73.007993, 42.238409],\n\t\t\t\t\t\t[-73.071199, 42.148214],\n\t\t\t\t\t\t[-73.053254, 42.039861],\n\t\t\t\t\t\t[-73.127276, 42.041964],\n\t\t\t\t\t\t[-73.229798, 42.044877],\n\t\t\t\t\t\t[-73.231056, 42.044945],\n\t\t\t\t\t\t[-73.293097, 42.046940],\n\t\t\t\t\t\t[-73.294420, 42.046984],\n\t\t\t\t\t\t[-73.487314, 42.049638],\n\t\t\t\t\t\t[-73.496879, 42.049675],\n\t\t\t\t\t\t[-73.508142, 42.086257],\n\t\t\t\t\t\t[-73.410647, 42.351738],\n\t\t\t\t\t\t[-73.352527, 42.510002],\n\t\t\t\t\t\t[-73.307004, 42.632653],\n\t\t\t\t\t\t[-73.264957, 42.745940],\n\t\t\t\t\t\t[-73.142487, 42.743508],\n\t\t\t\t\t\t[-73.022903, 42.741133],\n\t\t\t\t\t\t[-72.949742, 42.705103],\n\t\t\t\t\t\t[-72.951039, 42.641006],\n\t\t\t\t\t\t[-72.975379, 42.555933],\n\t\t\t\t\t\t[-73.000067, 42.312693]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US25027\",\n\t\t\t\t\"STATE\": \"25\",\n\t\t\t\t\"COUNTY\": \"027\",\n\t\t\t\t\"NAME\": \"Worcester\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1510.770000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-72.211079, 42.251262],\n\t\t\t\t\t\t[-72.211275, 42.255635],\n\t\t\t\t\t\t[-72.216138, 42.256144],\n\t\t\t\t\t\t[-72.217879, 42.270089],\n\t\t\t\t\t\t[-72.212941, 42.269925],\n\t\t\t\t\t\t[-72.212128, 42.282672],\n\t\t\t\t\t\t[-72.207245, 42.285210],\n\t\t\t\t\t\t[-72.203363, 42.291162],\n\t\t\t\t\t\t[-72.210815, 42.294460],\n\t\t\t\t\t\t[-72.213946, 42.294290],\n\t\t\t\t\t\t[-72.314599, 42.343526],\n\t\t\t\t\t\t[-72.244952, 42.513552],\n\t\t\t\t\t\t[-72.224839, 42.638981],\n\t\t\t\t\t\t[-72.282968, 42.722008],\n\t\t\t\t\t\t[-72.111068, 42.717264],\n\t\t\t\t\t\t[-72.078463, 42.716364],\n\t\t\t\t\t\t[-71.928811, 42.712234],\n\t\t\t\t\t\t[-71.898714, 42.711478],\n\t\t\t\t\t\t[-71.858410, 42.633840],\n\t\t\t\t\t\t[-71.775742, 42.644216],\n\t\t\t\t\t\t[-71.664614, 42.611589],\n\t\t\t\t\t\t[-71.677730, 42.539397],\n\t\t\t\t\t\t[-71.678980, 42.530351],\n\t\t\t\t\t\t[-71.675714, 42.529990],\n\t\t\t\t\t\t[-71.665513, 42.528391],\n\t\t\t\t\t\t[-71.664613, 42.528291],\n\t\t\t\t\t\t[-71.655413, 42.526891],\n\t\t\t\t\t\t[-71.651713, 42.526391],\n\t\t\t\t\t\t[-71.650613, 42.526191],\n\t\t\t\t\t\t[-71.635812, 42.524091],\n\t\t\t\t\t\t[-71.538949, 42.543069],\n\t\t\t\t\t\t[-71.543297, 42.466451],\n\t\t\t\t\t\t[-71.624702, 42.350465],\n\t\t\t\t\t\t[-71.625825, 42.349724],\n\t\t\t\t\t\t[-71.619131, 42.343349],\n\t\t\t\t\t\t[-71.611573, 42.339008],\n\t\t\t\t\t\t[-71.604099, 42.336768],\n\t\t\t\t\t\t[-71.603591, 42.331676],\n\t\t\t\t\t\t[-71.605158, 42.330259],\n\t\t\t\t\t\t[-71.601885, 42.326971],\n\t\t\t\t\t\t[-71.597350, 42.321149],\n\t\t\t\t\t\t[-71.592502, 42.317901],\n\t\t\t\t\t\t[-71.585168, 42.310977],\n\t\t\t\t\t\t[-71.551126, 42.326395],\n\t\t\t\t\t\t[-71.486768, 42.330075],\n\t\t\t\t\t\t[-71.486125, 42.310885],\n\t\t\t\t\t\t[-71.497046, 42.289829],\n\t\t\t\t\t\t[-71.513048, 42.267148],\n\t\t\t\t\t\t[-71.549466, 42.266124],\n\t\t\t\t\t\t[-71.586759, 42.259545],\n\t\t\t\t\t\t[-71.599318, 42.225959],\n\t\t\t\t\t\t[-71.478119, 42.156782],\n\t\t\t\t\t\t[-71.478521, 42.131421],\n\t\t\t\t\t\t[-71.500910, 42.117041],\n\t\t\t\t\t\t[-71.498284, 42.064802],\n\t\t\t\t\t\t[-71.498262, 42.031333],\n\t\t\t\t\t\t[-71.497901, 42.031513],\n\t\t\t\t\t\t[-71.498259, 42.027813],\n\t\t\t\t\t\t[-71.498258, 42.017220],\n\t\t\t\t\t\t[-71.499905, 42.017198],\n\t\t\t\t\t\t[-71.500905, 42.017098],\n\t\t\t\t\t\t[-71.527306, 42.015098],\n\t\t\t\t\t\t[-71.527606, 42.014998],\n\t\t\t\t\t\t[-71.559439, 42.014342],\n\t\t\t\t\t\t[-71.576908, 42.014098],\n\t\t\t\t\t\t[-71.591104, 42.013713],\n\t\t\t\t\t\t[-71.799242, 42.008065],\n\t\t\t\t\t\t[-71.800650, 42.023569],\n\t\t\t\t\t\t[-72.059752, 42.027339],\n\t\t\t\t\t\t[-72.102160, 42.028962],\n\t\t\t\t\t\t[-72.135687, 42.030245],\n\t\t\t\t\t\t[-72.135715, 42.030245],\n\t\t\t\t\t\t[-72.134954, 42.090665],\n\t\t\t\t\t\t[-72.135023, 42.161708],\n\t\t\t\t\t\t[-72.141843, 42.160898],\n\t\t\t\t\t\t[-72.263876, 42.183885],\n\t\t\t\t\t\t[-72.221218, 42.245252],\n\t\t\t\t\t\t[-72.218068, 42.248605],\n\t\t\t\t\t\t[-72.214821, 42.249041],\n\t\t\t\t\t\t[-72.214584, 42.247571],\n\t\t\t\t\t\t[-72.210460, 42.247205],\n\t\t\t\t\t\t[-72.211079, 42.251262]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26025\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"025\",\n\t\t\t\t\"NAME\": \"Calhoun\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 706.233000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.259847, 42.071851],\n\t\t\t\t\t\t[-85.293626, 42.071553],\n\t\t\t\t\t\t[-85.296996, 42.246071],\n\t\t\t\t\t\t[-85.299480, 42.416794],\n\t\t\t\t\t\t[-85.298879, 42.419849],\n\t\t\t\t\t\t[-85.071609, 42.421428],\n\t\t\t\t\t\t[-84.718493, 42.421520],\n\t\t\t\t\t\t[-84.709556, 42.070366],\n\t\t\t\t\t\t[-84.826491, 42.072468],\n\t\t\t\t\t\t[-85.259847, 42.071851]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26039\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"039\",\n\t\t\t\t\"NAME\": \"Crawford\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 556.280000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.371757, 44.855029],\n\t\t\t\t\t\t[-84.370643, 44.507223],\n\t\t\t\t\t\t[-84.850929, 44.511069],\n\t\t\t\t\t\t[-84.847309, 44.858037],\n\t\t\t\t\t\t[-84.371757, 44.855029]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26049\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"049\",\n\t\t\t\t\"NAME\": \"Genesee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 636.977000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.927555, 42.880750],\n\t\t\t\t\t\t[-83.929079, 43.132782],\n\t\t\t\t\t\t[-83.932071, 43.220377],\n\t\t\t\t\t\t[-83.814494, 43.221210],\n\t\t\t\t\t\t[-83.696516, 43.221396],\n\t\t\t\t\t\t[-83.695621, 43.221422],\n\t\t\t\t\t\t[-83.460733, 43.223131],\n\t\t\t\t\t\t[-83.453364, 42.880432],\n\t\t\t\t\t\t[-83.689384, 42.871263],\n\t\t\t\t\t\t[-83.686493, 42.783263],\n\t\t\t\t\t\t[-83.922516, 42.780821],\n\t\t\t\t\t\t[-83.927555, 42.880750]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US44007\",\n\t\t\t\t\"STATE\": \"44\",\n\t\t\t\t\"COUNTY\": \"007\",\n\t\t\t\t\"NAME\": \"Providence\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 409.502000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-71.796822, 41.928552],\n\t\t\t\t\t\t[-71.799242, 42.008065],\n\t\t\t\t\t\t[-71.591104, 42.013713],\n\t\t\t\t\t\t[-71.576908, 42.014098],\n\t\t\t\t\t\t[-71.559439, 42.014342],\n\t\t\t\t\t\t[-71.527606, 42.014998],\n\t\t\t\t\t\t[-71.527306, 42.015098],\n\t\t\t\t\t\t[-71.500905, 42.017098],\n\t\t\t\t\t\t[-71.499905, 42.017198],\n\t\t\t\t\t\t[-71.498258, 42.017220],\n\t\t\t\t\t\t[-71.458104, 42.017762],\n\t\t\t\t\t\t[-71.381401, 42.018798],\n\t\t\t\t\t\t[-71.381466, 41.984998],\n\t\t\t\t\t\t[-71.381501, 41.966699],\n\t\t\t\t\t\t[-71.381401, 41.964799],\n\t\t\t\t\t\t[-71.381600, 41.922899],\n\t\t\t\t\t\t[-71.381700, 41.922699],\n\t\t\t\t\t\t[-71.376600, 41.893999],\n\t\t\t\t\t\t[-71.373799, 41.894399],\n\t\t\t\t\t\t[-71.370999, 41.894599],\n\t\t\t\t\t\t[-71.365399, 41.895299],\n\t\t\t\t\t\t[-71.364699, 41.895399],\n\t\t\t\t\t\t[-71.362499, 41.895599],\n\t\t\t\t\t\t[-71.354699, 41.896499],\n\t\t\t\t\t\t[-71.352699, 41.896699],\n\t\t\t\t\t\t[-71.339298, 41.893599],\n\t\t\t\t\t\t[-71.339298, 41.893399],\n\t\t\t\t\t\t[-71.337597, 41.833700],\n\t\t\t\t\t\t[-71.339597, 41.832000],\n\t\t\t\t\t\t[-71.339297, 41.806500],\n\t\t\t\t\t\t[-71.327896, 41.780501],\n\t\t\t\t\t\t[-71.317795, 41.776101],\n\t\t\t\t\t\t[-71.317790, 41.776099],\n\t\t\t\t\t\t[-71.353897, 41.751301],\n\t\t\t\t\t\t[-71.356997, 41.741601],\n\t\t\t\t\t\t[-71.365207, 41.735649],\n\t\t\t\t\t\t[-71.372508, 41.744727],\n\t\t\t\t\t\t[-71.378273, 41.755297],\n\t\t\t\t\t\t[-71.455342, 41.732365],\n\t\t\t\t\t\t[-71.789678, 41.724568],\n\t\t\t\t\t\t[-71.789678, 41.724734],\n\t\t\t\t\t\t[-71.792767, 41.807001],\n\t\t\t\t\t\t[-71.792786, 41.808670],\n\t\t\t\t\t\t[-71.794161, 41.840141],\n\t\t\t\t\t\t[-71.794161, 41.841101],\n\t\t\t\t\t\t[-71.796089, 41.904468],\n\t\t\t\t\t\t[-71.796822, 41.928552]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US45021\",\n\t\t\t\t\"STATE\": \"45\",\n\t\t\t\t\"COUNTY\": \"021\",\n\t\t\t\t\"NAME\": \"Cherokee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 392.659000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.457257, 34.839280],\n\t\t\t\t\t\t[-81.481613, 34.866221],\n\t\t\t\t\t\t[-81.711694, 34.912577],\n\t\t\t\t\t\t[-81.754911, 34.932672],\n\t\t\t\t\t\t[-81.874433, 35.184113],\n\t\t\t\t\t\t[-81.857832, 35.183492],\n\t\t\t\t\t\t[-81.768073, 35.180132],\n\t\t\t\t\t\t[-81.494265, 35.169882],\n\t\t\t\t\t\t[-81.493401, 35.169951],\n\t\t\t\t\t\t[-81.461408, 35.168657],\n\t\t\t\t\t\t[-81.452398, 35.168293],\n\t\t\t\t\t\t[-81.366691, 35.164893],\n\t\t\t\t\t\t[-81.366599, 35.164889],\n\t\t\t\t\t\t[-81.409586, 35.046396],\n\t\t\t\t\t\t[-81.488434, 35.029516],\n\t\t\t\t\t\t[-81.457257, 34.839280]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US45033\",\n\t\t\t\t\"STATE\": \"45\",\n\t\t\t\t\"COUNTY\": \"033\",\n\t\t\t\t\"NAME\": \"Dillon\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 404.872000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.547930, 34.230913],\n\t\t\t\t\t\t[-79.633413, 34.297994],\n\t\t\t\t\t\t[-79.450034, 34.621036],\n\t\t\t\t\t\t[-79.358317, 34.545358],\n\t\t\t\t\t\t[-79.331328, 34.521869],\n\t\t\t\t\t\t[-79.324854, 34.516282],\n\t\t\t\t\t\t[-79.323249, 34.514634],\n\t\t\t\t\t\t[-79.198982, 34.406699],\n\t\t\t\t\t\t[-79.192041, 34.401040],\n\t\t\t\t\t\t[-79.190739, 34.399751],\n\t\t\t\t\t\t[-79.151485, 34.366753],\n\t\t\t\t\t\t[-79.143242, 34.359817],\n\t\t\t\t\t\t[-79.071169, 34.299240],\n\t\t\t\t\t\t[-79.128165, 34.253652],\n\t\t\t\t\t\t[-79.380264, 34.300572],\n\t\t\t\t\t\t[-79.480712, 34.288081],\n\t\t\t\t\t\t[-79.547930, 34.230913]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US45045\",\n\t\t\t\t\"STATE\": \"45\",\n\t\t\t\t\"COUNTY\": \"045\",\n\t\t\t\t\"NAME\": \"Greenville\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 785.120000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.193006, 34.686303],\n\t\t\t\t\t\t[-82.236000, 34.535962],\n\t\t\t\t\t\t[-82.313996, 34.484002],\n\t\t\t\t\t\t[-82.419665, 34.557089],\n\t\t\t\t\t\t[-82.453789, 34.625114],\n\t\t\t\t\t\t[-82.486746, 34.819475],\n\t\t\t\t\t\t[-82.537866, 35.015696],\n\t\t\t\t\t\t[-82.588598, 35.073973],\n\t\t\t\t\t\t[-82.764464, 35.068177],\n\t\t\t\t\t\t[-82.686738, 35.119790],\n\t\t\t\t\t\t[-82.686496, 35.121822],\n\t\t\t\t\t\t[-82.582264, 35.142268],\n\t\t\t\t\t\t[-82.580127, 35.141963],\n\t\t\t\t\t\t[-82.574406, 35.144216],\n\t\t\t\t\t\t[-82.536527, 35.159137],\n\t\t\t\t\t\t[-82.535804, 35.158699],\n\t\t\t\t\t\t[-82.517284, 35.162643],\n\t\t\t\t\t\t[-82.516910, 35.163029],\n\t\t\t\t\t\t[-82.476136, 35.175486],\n\t\t\t\t\t\t[-82.384029, 35.210542],\n\t\t\t\t\t\t[-82.352430, 35.206595],\n\t\t\t\t\t\t[-82.288453, 35.198605],\n\t\t\t\t\t\t[-82.257515, 35.198636],\n\t\t\t\t\t\t[-82.230915, 35.196784],\n\t\t\t\t\t\t[-82.230517, 35.196764],\n\t\t\t\t\t\t[-82.216217, 35.196044],\n\t\t\t\t\t\t[-82.225698, 34.850171],\n\t\t\t\t\t\t[-82.146792, 34.785554],\n\t\t\t\t\t\t[-82.193006, 34.686303]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47009\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"009\",\n\t\t\t\t\"NAME\": \"Blount\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 558.706000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.794275, 35.887125],\n\t\t\t\t\t\t[-83.784186, 35.879205],\n\t\t\t\t\t\t[-83.784436, 35.868744],\n\t\t\t\t\t\t[-83.779880, 35.860184],\n\t\t\t\t\t\t[-83.662814, 35.690618],\n\t\t\t\t\t\t[-83.662957, 35.569138],\n\t\t\t\t\t\t[-83.676268, 35.570289],\n\t\t\t\t\t\t[-83.756917, 35.563604],\n\t\t\t\t\t\t[-83.880074, 35.518745],\n\t\t\t\t\t\t[-83.933876, 35.472438],\n\t\t\t\t\t\t[-83.952676, 35.460763],\n\t\t\t\t\t\t[-83.952882, 35.460635],\n\t\t\t\t\t\t[-83.961053, 35.464143],\n\t\t\t\t\t\t[-83.961056, 35.463738],\n\t\t\t\t\t\t[-83.993815, 35.550001],\n\t\t\t\t\t\t[-84.081561, 35.541231],\n\t\t\t\t\t\t[-84.188319, 35.610549],\n\t\t\t\t\t\t[-84.133072, 35.660733],\n\t\t\t\t\t\t[-84.166267, 35.805106],\n\t\t\t\t\t\t[-83.994677, 35.883749],\n\t\t\t\t\t\t[-83.853457, 35.841138],\n\t\t\t\t\t\t[-83.794275, 35.887125]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47019\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"019\",\n\t\t\t\t\"NAME\": \"Carter\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 341.203000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.983843, 36.508314],\n\t\t\t\t\t\t[-81.949840, 36.472385],\n\t\t\t\t\t\t[-82.058946, 36.367515],\n\t\t\t\t\t\t[-81.932994, 36.264881],\n\t\t\t\t\t\t[-81.960101, 36.228131],\n\t\t\t\t\t\t[-82.026640, 36.130222],\n\t\t\t\t\t\t[-82.080143, 36.105720],\n\t\t\t\t\t\t[-82.080518, 36.105710],\n\t\t\t\t\t\t[-82.127146, 36.104417],\n\t\t\t\t\t\t[-82.130646, 36.106417],\n\t\t\t\t\t\t[-82.137974, 36.119576],\n\t\t\t\t\t\t[-82.136547, 36.128817],\n\t\t\t\t\t\t[-82.147948, 36.149516],\n\t\t\t\t\t\t[-82.211251, 36.159012],\n\t\t\t\t\t\t[-82.222052, 36.156911],\n\t\t\t\t\t\t[-82.256356, 36.233208],\n\t\t\t\t\t\t[-82.340460, 36.252807],\n\t\t\t\t\t\t[-82.299859, 36.396505],\n\t\t\t\t\t\t[-82.188053, 36.400608],\n\t\t\t\t\t\t[-81.983843, 36.508314]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47037\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"037\",\n\t\t\t\t\"NAME\": \"Davidson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 504.033000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.864957, 36.044672],\n\t\t\t\t\t\t[-86.929200, 36.052722],\n\t\t\t\t\t\t[-87.027705, 35.989423],\n\t\t\t\t\t\t[-87.054114, 36.045535],\n\t\t\t\t\t\t[-86.997705, 36.128512],\n\t\t\t\t\t\t[-86.913233, 36.382621],\n\t\t\t\t\t\t[-86.824784, 36.349872],\n\t\t\t\t\t\t[-86.754795, 36.405496],\n\t\t\t\t\t\t[-86.723495, 36.347680],\n\t\t\t\t\t\t[-86.594286, 36.245105],\n\t\t\t\t\t\t[-86.515589, 36.100610],\n\t\t\t\t\t\t[-86.618892, 35.968224],\n\t\t\t\t\t\t[-86.627397, 35.974027],\n\t\t\t\t\t\t[-86.648288, 35.976422],\n\t\t\t\t\t\t[-86.681889, 35.989399],\n\t\t\t\t\t\t[-86.686164, 35.994092],\n\t\t\t\t\t\t[-86.687714, 35.995343],\n\t\t\t\t\t\t[-86.691904, 35.994581],\n\t\t\t\t\t\t[-86.787205, 36.035999],\n\t\t\t\t\t\t[-86.864957, 36.044672]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47051\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"051\",\n\t\t\t\t\"NAME\": \"Franklin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 554.542000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.318761, 34.991147],\n\t\t\t\t\t\t[-86.320277, 35.032503],\n\t\t\t\t\t\t[-86.318168, 35.126986],\n\t\t\t\t\t\t[-86.261489, 35.333579],\n\t\t\t\t\t\t[-86.158018, 35.362607],\n\t\t\t\t\t\t[-85.913593, 35.289189],\n\t\t\t\t\t\t[-85.908120, 35.276522],\n\t\t\t\t\t\t[-85.893394, 35.257333],\n\t\t\t\t\t\t[-85.886750, 35.247379],\n\t\t\t\t\t\t[-85.874977, 35.227287],\n\t\t\t\t\t\t[-85.873025, 35.223362],\n\t\t\t\t\t\t[-85.863935, 34.988379],\n\t\t\t\t\t\t[-86.311274, 34.991098],\n\t\t\t\t\t\t[-86.318761, 34.991147]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47063\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"063\",\n\t\t\t\t\"NAME\": \"Hamblen\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 161.179000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.457728, 36.155375],\n\t\t\t\t\t\t[-83.458695, 36.155289],\n\t\t\t\t\t\t[-83.467097, 36.174688],\n\t\t\t\t\t\t[-83.321695, 36.294590],\n\t\t\t\t\t\t[-83.255292, 36.289092],\n\t\t\t\t\t\t[-83.162590, 36.345292],\n\t\t\t\t\t\t[-83.082312, 36.242296],\n\t\t\t\t\t\t[-83.166085, 36.180894],\n\t\t\t\t\t\t[-83.234585, 36.085094],\n\t\t\t\t\t\t[-83.293689, 36.138193],\n\t\t\t\t\t\t[-83.457728, 36.155375]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47075\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"075\",\n\t\t\t\t\"NAME\": \"Haywood\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 533.112000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.502118, 35.580621],\n\t\t\t\t\t\t[-89.401805, 35.822657],\n\t\t\t\t\t\t[-89.356033, 35.817635],\n\t\t\t\t\t\t[-89.271224, 35.754922],\n\t\t\t\t\t\t[-89.069544, 35.692679],\n\t\t\t\t\t\t[-89.078876, 35.431428],\n\t\t\t\t\t\t[-89.182551, 35.432816],\n\t\t\t\t\t\t[-89.183944, 35.397126],\n\t\t\t\t\t\t[-89.474171, 35.403039],\n\t\t\t\t\t\t[-89.469862, 35.546566],\n\t\t\t\t\t\t[-89.502118, 35.580621]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47085\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"085\",\n\t\t\t\t\"NAME\": \"Humphreys\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 530.980000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.534530, 35.993074],\n\t\t\t\t\t\t[-87.706960, 35.905884],\n\t\t\t\t\t\t[-87.716760, 35.838750],\n\t\t\t\t\t\t[-87.848144, 35.804079],\n\t\t\t\t\t\t[-87.962740, 35.840921],\n\t\t\t\t\t\t[-87.925835, 35.930432],\n\t\t\t\t\t\t[-88.012932, 35.946648],\n\t\t\t\t\t\t[-88.000809, 36.028089],\n\t\t\t\t\t\t[-87.919043, 36.130049],\n\t\t\t\t\t\t[-87.949603, 36.243160],\n\t\t\t\t\t\t[-87.798508, 36.244754],\n\t\t\t\t\t\t[-87.566798, 36.177857],\n\t\t\t\t\t\t[-87.534530, 35.993074]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47099\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"099\",\n\t\t\t\t\"NAME\": \"Lawrence\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 617.128000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.575352, 35.398454],\n\t\t\t\t\t\t[-87.448820, 35.420622],\n\t\t\t\t\t\t[-87.448485, 35.457844],\n\t\t\t\t\t\t[-87.294534, 35.444676],\n\t\t\t\t\t\t[-87.295242, 35.442128],\n\t\t\t\t\t\t[-87.227932, 35.429332],\n\t\t\t\t\t\t[-87.226311, 35.440509],\n\t\t\t\t\t\t[-87.206578, 35.433207],\n\t\t\t\t\t\t[-87.224053, 34.999327],\n\t\t\t\t\t\t[-87.230544, 34.999484],\n\t\t\t\t\t\t[-87.270014, 35.000390],\n\t\t\t\t\t\t[-87.299185, 35.000915],\n\t\t\t\t\t\t[-87.349251, 35.001662],\n\t\t\t\t\t\t[-87.359281, 35.001823],\n\t\t\t\t\t\t[-87.381071, 35.002118],\n\t\t\t\t\t\t[-87.391314, 35.002374],\n\t\t\t\t\t\t[-87.417400, 35.002669],\n\t\t\t\t\t\t[-87.421543, 35.002679],\n\t\t\t\t\t\t[-87.428613, 35.002795],\n\t\t\t\t\t\t[-87.606031, 35.003343],\n\t\t\t\t\t\t[-87.588833, 35.058431],\n\t\t\t\t\t\t[-87.575352, 35.398454]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47113\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"113\",\n\t\t\t\t\"NAME\": \"Madison\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 557.117000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.606862, 35.789354],\n\t\t\t\t\t\t[-88.613611, 35.588089],\n\t\t\t\t\t\t[-88.675867, 35.489163],\n\t\t\t\t\t\t[-88.841607, 35.427826],\n\t\t\t\t\t\t[-89.078876, 35.431428],\n\t\t\t\t\t\t[-89.069544, 35.692679],\n\t\t\t\t\t\t[-89.020960, 35.671046],\n\t\t\t\t\t\t[-88.892938, 35.783842],\n\t\t\t\t\t\t[-88.916181, 35.797307],\n\t\t\t\t\t\t[-88.910964, 35.797336],\n\t\t\t\t\t\t[-88.706811, 35.791075],\n\t\t\t\t\t\t[-88.606862, 35.789354]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47127\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"127\",\n\t\t\t\t\"NAME\": \"Moore\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 129.223000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.525306, 35.354718],\n\t\t\t\t\t\t[-86.444169, 35.320700],\n\t\t\t\t\t\t[-86.257590, 35.412476],\n\t\t\t\t\t\t[-86.261489, 35.333579],\n\t\t\t\t\t\t[-86.318168, 35.126986],\n\t\t\t\t\t\t[-86.366236, 35.124405],\n\t\t\t\t\t\t[-86.392192, 35.235381],\n\t\t\t\t\t\t[-86.527280, 35.311536],\n\t\t\t\t\t\t[-86.525306, 35.354718]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06019\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"019\",\n\t\t\t\t\"NAME\": \"Fresno\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 5957.991000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-119.573194, 36.488835],\n\t\t\t\t\t\t[-119.666290, 36.418960],\n\t\t\t\t\t\t[-119.905119, 36.401741],\n\t\t\t\t\t\t[-119.959227, 36.400975],\n\t\t\t\t\t\t[-119.959210, 36.181403],\n\t\t\t\t\t\t[-120.315068, 35.907186],\n\t\t\t\t\t\t[-120.648784, 36.107990],\n\t\t\t\t\t\t[-120.626910, 36.203227],\n\t\t\t\t\t\t[-120.678582, 36.267319],\n\t\t\t\t\t\t[-120.596562, 36.328488],\n\t\t\t\t\t\t[-120.603706, 36.488242],\n\t\t\t\t\t\t[-120.918731, 36.740381],\n\t\t\t\t\t\t[-120.655950, 36.952832],\n\t\t\t\t\t\t[-120.590566, 36.952641],\n\t\t\t\t\t\t[-120.541696, 37.044505],\n\t\t\t\t\t\t[-120.422187, 36.840139],\n\t\t\t\t\t\t[-120.229179, 36.769687],\n\t\t\t\t\t\t[-120.132898, 36.809841],\n\t\t\t\t\t\t[-120.079458, 36.825345],\n\t\t\t\t\t\t[-120.027775, 36.814505],\n\t\t\t\t\t\t[-120.013334, 36.828228],\n\t\t\t\t\t\t[-119.932551, 36.842990],\n\t\t\t\t\t\t[-119.823421, 36.848333],\n\t\t\t\t\t\t[-119.733852, 36.948558],\n\t\t\t\t\t\t[-119.537677, 37.104019],\n\t\t\t\t\t\t[-119.559412, 37.143619],\n\t\t\t\t\t\t[-119.470844, 37.110548],\n\t\t\t\t\t\t[-119.433060, 37.161516],\n\t\t\t\t\t\t[-119.361916, 37.167849],\n\t\t\t\t\t\t[-119.330573, 37.205791],\n\t\t\t\t\t\t[-119.335189, 37.310774],\n\t\t\t\t\t\t[-119.286658, 37.374943],\n\t\t\t\t\t\t[-119.022363, 37.585737],\n\t\t\t\t\t\t[-118.775014, 37.463052],\n\t\t\t\t\t\t[-118.786736, 37.343380],\n\t\t\t\t\t\t[-118.716016, 37.328208],\n\t\t\t\t\t\t[-118.665167, 37.261009],\n\t\t\t\t\t\t[-118.654593, 37.141826],\n\t\t\t\t\t\t[-118.437137, 37.059818],\n\t\t\t\t\t\t[-118.360586, 36.744773],\n\t\t\t\t\t\t[-118.982441, 36.741646],\n\t\t\t\t\t\t[-118.984779, 36.657147],\n\t\t\t\t\t\t[-119.304625, 36.660606],\n\t\t\t\t\t\t[-119.305102, 36.573725],\n\t\t\t\t\t\t[-119.466322, 36.575238],\n\t\t\t\t\t\t[-119.573194, 36.488835]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06023\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"023\",\n\t\t\t\t\"NAME\": \"Humboldt\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 3567.987000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-123.544458, 40.001923],\n\t\t\t\t\t\t[-124.023938, 40.001284],\n\t\t\t\t\t\t[-124.035904, 40.013319],\n\t\t\t\t\t\t[-124.056408, 40.024305],\n\t\t\t\t\t\t[-124.065069, 40.024785],\n\t\t\t\t\t\t[-124.068908, 40.021307],\n\t\t\t\t\t\t[-124.072509, 40.022657],\n\t\t\t\t\t\t[-124.079983, 40.029773],\n\t\t\t\t\t\t[-124.080709, 40.066110],\n\t\t\t\t\t\t[-124.087086, 40.078442],\n\t\t\t\t\t\t[-124.110549, 40.103765],\n\t\t\t\t\t\t[-124.139952, 40.116350],\n\t\t\t\t\t\t[-124.170767, 40.124207],\n\t\t\t\t\t\t[-124.187874, 40.130542],\n\t\t\t\t\t\t[-124.214895, 40.160902],\n\t\t\t\t\t\t[-124.231095, 40.171581],\n\t\t\t\t\t\t[-124.258405, 40.184277],\n\t\t\t\t\t\t[-124.296497, 40.208816],\n\t\t\t\t\t\t[-124.320912, 40.226617],\n\t\t\t\t\t\t[-124.327691, 40.237370],\n\t\t\t\t\t\t[-124.343070, 40.243979],\n\t\t\t\t\t\t[-124.352715, 40.250453],\n\t\t\t\t\t\t[-124.363414, 40.260974],\n\t\t\t\t\t\t[-124.363634, 40.276212],\n\t\t\t\t\t\t[-124.347853, 40.314634],\n\t\t\t\t\t\t[-124.353124, 40.331425],\n\t\t\t\t\t\t[-124.356595, 40.335016],\n\t\t\t\t\t\t[-124.362796, 40.350046],\n\t\t\t\t\t\t[-124.365357, 40.374855],\n\t\t\t\t\t\t[-124.373599, 40.392923],\n\t\t\t\t\t\t[-124.379082, 40.398828],\n\t\t\t\t\t\t[-124.391496, 40.407047],\n\t\t\t\t\t\t[-124.402623, 40.422105],\n\t\t\t\t\t\t[-124.409591, 40.438076],\n\t\t\t\t\t\t[-124.408601, 40.443201],\n\t\t\t\t\t\t[-124.396642, 40.462119],\n\t\t\t\t\t\t[-124.384940, 40.489820],\n\t\t\t\t\t\t[-124.383224, 40.499852],\n\t\t\t\t\t\t[-124.387023, 40.504954],\n\t\t\t\t\t\t[-124.382816, 40.519000],\n\t\t\t\t\t\t[-124.379096, 40.522865],\n\t\t\t\t\t\t[-124.363545, 40.548698],\n\t\t\t\t\t\t[-124.329404, 40.616430],\n\t\t\t\t\t\t[-124.315141, 40.639526],\n\t\t\t\t\t\t[-124.312558, 40.641333],\n\t\t\t\t\t\t[-124.289119, 40.679630],\n\t\t\t\t\t\t[-124.248406, 40.735166],\n\t\t\t\t\t\t[-124.228244, 40.769390],\n\t\t\t\t\t\t[-124.201921, 40.805111],\n\t\t\t\t\t\t[-124.176715, 40.843618],\n\t\t\t\t\t\t[-124.158322, 40.876069],\n\t\t\t\t\t\t[-124.137066, 40.925732],\n\t\t\t\t\t\t[-124.118147, 40.989263],\n\t\t\t\t\t\t[-124.112165, 41.028173],\n\t\t\t\t\t\t[-124.125448, 41.048504],\n\t\t\t\t\t\t[-124.132946, 41.052482],\n\t\t\t\t\t\t[-124.138217, 41.054342],\n\t\t\t\t\t\t[-124.142867, 41.054032],\n\t\t\t\t\t\t[-124.147216, 41.052884],\n\t\t\t\t\t\t[-124.148939, 41.051467],\n\t\t\t\t\t\t[-124.151266, 41.051101],\n\t\t\t\t\t\t[-124.153622, 41.053550],\n\t\t\t\t\t\t[-124.154028, 41.059923],\n\t\t\t\t\t\t[-124.154513, 41.087159],\n\t\t\t\t\t\t[-124.160556, 41.099011],\n\t\t\t\t\t\t[-124.159065, 41.121957],\n\t\t\t\t\t\t[-124.165414, 41.129822],\n\t\t\t\t\t\t[-124.163988, 41.138675],\n\t\t\t\t\t\t[-124.158539, 41.143021],\n\t\t\t\t\t\t[-124.149674, 41.140845],\n\t\t\t\t\t\t[-124.143800, 41.144686],\n\t\t\t\t\t\t[-124.122677, 41.189726],\n\t\t\t\t\t\t[-124.106986, 41.229678],\n\t\t\t\t\t\t[-124.106389, 41.240682],\n\t\t\t\t\t\t[-124.092284, 41.287695],\n\t\t\t\t\t\t[-124.079015, 41.347135],\n\t\t\t\t\t\t[-124.072294, 41.374844],\n\t\t\t\t\t\t[-124.063076, 41.439579],\n\t\t\t\t\t\t[-124.065521, 41.464739],\n\t\t\t\t\t\t[-123.770551, 41.464193],\n\t\t\t\t\t\t[-123.770239, 41.380776],\n\t\t\t\t\t\t[-123.661363, 41.382090],\n\t\t\t\t\t\t[-123.474085, 41.366193],\n\t\t\t\t\t\t[-123.408291, 41.179944],\n\t\t\t\t\t\t[-123.481457, 40.914957],\n\t\t\t\t\t\t[-123.560163, 40.950257],\n\t\t\t\t\t\t[-123.623826, 40.929421],\n\t\t\t\t\t\t[-123.559850, 40.829584],\n\t\t\t\t\t\t[-123.544059, 40.739386],\n\t\t\t\t\t\t[-123.544458, 40.001923]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06035\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"035\",\n\t\t\t\t\"NAME\": \"Lassen\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 4541.184000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-120.001319, 39.722420],\n\t\t\t\t\t\t[-120.001319, 39.722416],\n\t\t\t\t\t\t[-120.147149, 39.707658],\n\t\t\t\t\t\t[-120.110627, 39.765779],\n\t\t\t\t\t\t[-120.108761, 39.939510],\n\t\t\t\t\t\t[-120.201264, 40.013474],\n\t\t\t\t\t\t[-120.209641, 40.086008],\n\t\t\t\t\t\t[-120.341385, 40.115243],\n\t\t\t\t\t\t[-120.445892, 40.176854],\n\t\t\t\t\t\t[-120.510817, 40.248945],\n\t\t\t\t\t\t[-120.652158, 40.307656],\n\t\t\t\t\t\t[-120.764403, 40.316010],\n\t\t\t\t\t\t[-120.928582, 40.191931],\n\t\t\t\t\t\t[-121.061493, 40.256417],\n\t\t\t\t\t\t[-121.061417, 40.446536],\n\t\t\t\t\t\t[-121.327826, 40.445367],\n\t\t\t\t\t\t[-121.319972, 40.905886],\n\t\t\t\t\t\t[-121.331786, 41.183886],\n\t\t\t\t\t\t[-119.999866, 41.183974],\n\t\t\t\t\t\t[-119.999358, 40.873101],\n\t\t\t\t\t\t[-119.999232, 40.867454],\n\t\t\t\t\t\t[-119.999231, 40.865899],\n\t\t\t\t\t\t[-119.995926, 40.499901],\n\t\t\t\t\t\t[-119.996155, 40.321838],\n\t\t\t\t\t\t[-119.996155, 40.321250],\n\t\t\t\t\t\t[-119.996182, 40.263532],\n\t\t\t\t\t\t[-119.996183, 40.262461],\n\t\t\t\t\t\t[-119.997124, 40.126363],\n\t\t\t\t\t\t[-119.997234, 40.091591],\n\t\t\t\t\t\t[-119.997175, 40.077245],\n\t\t\t\t\t\t[-119.997291, 40.071803],\n\t\t\t\t\t\t[-120.000607, 39.780779],\n\t\t\t\t\t\t[-120.000502, 39.779956],\n\t\t\t\t\t\t[-120.001319, 39.722420]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06037\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"037\",\n\t\t\t\t\"NAME\": \"Los Angeles\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 4057.884000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-118.524531, 32.895488],\n\t\t\t\t\t\t\t[-118.535823, 32.906280],\n\t\t\t\t\t\t\t[-118.551134, 32.945155],\n\t\t\t\t\t\t\t[-118.560887, 32.957891],\n\t\t\t\t\t\t\t[-118.573522, 32.969183],\n\t\t\t\t\t\t\t[-118.586928, 33.008281],\n\t\t\t\t\t\t\t[-118.596037, 33.015357],\n\t\t\t\t\t\t\t[-118.606559, 33.014690],\n\t\t\t\t\t\t\t[-118.605534, 33.030999],\n\t\t\t\t\t\t\t[-118.594033, 33.035951],\n\t\t\t\t\t\t\t[-118.575160, 33.033961],\n\t\t\t\t\t\t\t[-118.569013, 33.029151],\n\t\t\t\t\t\t\t[-118.564445, 33.024914],\n\t\t\t\t\t\t\t[-118.564527, 33.018637],\n\t\t\t\t\t\t\t[-118.559171, 33.006291],\n\t\t\t\t\t\t\t[-118.540069, 32.980933],\n\t\t\t\t\t\t\t[-118.529228, 32.970921],\n\t\t\t\t\t\t\t[-118.496811, 32.933847],\n\t\t\t\t\t\t\t[-118.485288, 32.923545],\n\t\t\t\t\t\t\t[-118.479039, 32.920363],\n\t\t\t\t\t\t\t[-118.460623, 32.909510],\n\t\t\t\t\t\t\t[-118.446771, 32.895424],\n\t\t\t\t\t\t\t[-118.369984, 32.839273],\n\t\t\t\t\t\t\t[-118.353504, 32.821962],\n\t\t\t\t\t\t\t[-118.356541, 32.817311],\n\t\t\t\t\t\t\t[-118.360530, 32.819921],\n\t\t\t\t\t\t\t[-118.379968, 32.824545],\n\t\t\t\t\t\t\t[-118.387375, 32.825327],\n\t\t\t\t\t\t\t[-118.394565, 32.823978],\n\t\t\t\t\t\t\t[-118.401268, 32.820338],\n\t\t\t\t\t\t\t[-118.425634, 32.800595],\n\t\t\t\t\t\t\t[-118.429430, 32.805429],\n\t\t\t\t\t\t\t[-118.428372, 32.806872],\n\t\t\t\t\t\t\t[-118.444920, 32.820593],\n\t\t\t\t\t\t\t[-118.476074, 32.841754],\n\t\t\t\t\t\t\t[-118.487908, 32.844590],\n\t\t\t\t\t\t\t[-118.496298, 32.851572],\n\t\t\t\t\t\t\t[-118.506902, 32.868503],\n\t\t\t\t\t\t\t[-118.508095, 32.871321],\n\t\t\t\t\t\t\t[-118.507193, 32.876264],\n\t\t\t\t\t\t\t[-118.524641, 32.893175],\n\t\t\t\t\t\t\t[-118.524531, 32.895488]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-118.500212, 33.449592],\n\t\t\t\t\t\t\t[-118.499669, 33.447879],\n\t\t\t\t\t\t\t[-118.485570, 33.446213],\n\t\t\t\t\t\t\t[-118.477646, 33.448392],\n\t\t\t\t\t\t\t[-118.445812, 33.428907],\n\t\t\t\t\t\t\t[-118.423576, 33.427258],\n\t\t\t\t\t\t\t[-118.382037, 33.409883],\n\t\t\t\t\t\t\t[-118.370323, 33.409285],\n\t\t\t\t\t\t\t[-118.368301, 33.407110],\n\t\t\t\t\t\t\t[-118.365094, 33.388374],\n\t\t\t\t\t\t\t[-118.324460, 33.348782],\n\t\t\t\t\t\t\t[-118.316083, 33.342928],\n\t\t\t\t\t\t\t[-118.310213, 33.335795],\n\t\t\t\t\t\t\t[-118.303174, 33.320264],\n\t\t\t\t\t\t\t[-118.305084, 33.310323],\n\t\t\t\t\t\t\t[-118.316787, 33.301137],\n\t\t\t\t\t\t\t[-118.325244, 33.299075],\n\t\t\t\t\t\t\t[-118.343249, 33.305234],\n\t\t\t\t\t\t\t[-118.360332, 33.315330],\n\t\t\t\t\t\t\t[-118.374768, 33.320065],\n\t\t\t\t\t\t\t[-118.402941, 33.320901],\n\t\t\t\t\t\t\t[-118.440047, 33.318638],\n\t\t\t\t\t\t\t[-118.456309, 33.321820],\n\t\t\t\t\t\t\t[-118.465368, 33.326056],\n\t\t\t\t\t\t\t[-118.481886, 33.344123],\n\t\t\t\t\t\t\t[-118.488770, 33.356649],\n\t\t\t\t\t\t\t[-118.482609, 33.369914],\n\t\t\t\t\t\t\t[-118.478465, 33.386320],\n\t\t\t\t\t\t\t[-118.484949, 33.412131],\n\t\t\t\t\t\t\t[-118.488750, 33.419826],\n\t\t\t\t\t\t\t[-118.503952, 33.424234],\n\t\t\t\t\t\t\t[-118.515914, 33.422417],\n\t\t\t\t\t\t\t[-118.516267, 33.425075],\n\t\t\t\t\t\t\t[-118.523230, 33.430733],\n\t\t\t\t\t\t\t[-118.537380, 33.434608],\n\t\t\t\t\t\t\t[-118.558715, 33.433419],\n\t\t\t\t\t\t\t[-118.563442, 33.434381],\n\t\t\t\t\t\t\t[-118.570927, 33.439351],\n\t\t\t\t\t\t\t[-118.575901, 33.448261],\n\t\t\t\t\t\t\t[-118.593969, 33.467198],\n\t\t\t\t\t\t\t[-118.601185, 33.469853],\n\t\t\t\t\t\t\t[-118.604030, 33.476540],\n\t\t\t\t\t\t\t[-118.603375, 33.478098],\n\t\t\t\t\t\t\t[-118.598783, 33.477939],\n\t\t\t\t\t\t\t[-118.585936, 33.473819],\n\t\t\t\t\t\t\t[-118.544530, 33.474119],\n\t\t\t\t\t\t\t[-118.530702, 33.468071],\n\t\t\t\t\t\t\t[-118.500212, 33.449592]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-118.796692, 34.616559],\n\t\t\t\t\t\t\t[-118.881364, 34.790629],\n\t\t\t\t\t\t\t[-118.854253, 34.817772],\n\t\t\t\t\t\t\t[-118.140074, 34.820780],\n\t\t\t\t\t\t\t[-117.667292, 34.822526],\n\t\t\t\t\t\t\t[-117.658798, 34.440580],\n\t\t\t\t\t\t\t[-117.650459, 34.339025],\n\t\t\t\t\t\t\t[-117.711067, 34.079536],\n\t\t\t\t\t\t\t[-117.719481, 34.059731],\n\t\t\t\t\t\t\t[-117.726010, 34.041128],\n\t\t\t\t\t\t\t[-117.735846, 34.018554],\n\t\t\t\t\t\t\t[-117.767752, 34.019429],\n\t\t\t\t\t\t\t[-117.783287, 33.946411],\n\t\t\t\t\t\t\t[-117.976530, 33.928034],\n\t\t\t\t\t\t\t[-117.976498, 33.919171],\n\t\t\t\t\t\t\t[-117.976571, 33.911205],\n\t\t\t\t\t\t\t[-117.976692, 33.910614],\n\t\t\t\t\t\t\t[-117.976588, 33.909757],\n\t\t\t\t\t\t\t[-117.976586, 33.906225],\n\t\t\t\t\t\t\t[-118.063268, 33.824220],\n\t\t\t\t\t\t\t[-118.063162, 33.819610],\n\t\t\t\t\t\t\t[-118.072597, 33.815115],\n\t\t\t\t\t\t\t[-118.084597, 33.803216],\n\t\t\t\t\t\t\t[-118.093008, 33.786289],\n\t\t\t\t\t\t\t[-118.099107, 33.776518],\n\t\t\t\t\t\t\t[-118.091970, 33.758472],\n\t\t\t\t\t\t\t[-118.116703, 33.743549],\n\t\t\t\t\t\t\t[-118.132698, 33.753217],\n\t\t\t\t\t\t\t[-118.156900, 33.760317],\n\t\t\t\t\t\t\t[-118.175500, 33.763617],\n\t\t\t\t\t\t\t[-118.180831, 33.763072],\n\t\t\t\t\t\t\t[-118.187701, 33.749218],\n\t\t\t\t\t\t\t[-118.183700, 33.736118],\n\t\t\t\t\t\t\t[-118.181367, 33.717367],\n\t\t\t\t\t\t\t[-118.207476, 33.716905],\n\t\t\t\t\t\t\t[-118.258687, 33.703741],\n\t\t\t\t\t\t\t[-118.277208, 33.707091],\n\t\t\t\t\t\t\t[-118.297104, 33.708319],\n\t\t\t\t\t\t\t[-118.317205, 33.712818],\n\t\t\t\t\t\t\t[-118.354705, 33.732317],\n\t\t\t\t\t\t\t[-118.360505, 33.736817],\n\t\t\t\t\t\t\t[-118.385006, 33.741417],\n\t\t\t\t\t\t\t[-118.396606, 33.735917],\n\t\t\t\t\t\t\t[-118.411211, 33.741985],\n\t\t\t\t\t\t\t[-118.428407, 33.774715],\n\t\t\t\t\t\t\t[-118.423407, 33.782015],\n\t\t\t\t\t\t\t[-118.405007, 33.800215],\n\t\t\t\t\t\t\t[-118.394376, 33.804289],\n\t\t\t\t\t\t\t[-118.394307, 33.804315],\n\t\t\t\t\t\t\t[-118.391507, 33.815415],\n\t\t\t\t\t\t\t[-118.392107, 33.840915],\n\t\t\t\t\t\t\t[-118.412708, 33.883913],\n\t\t\t\t\t\t\t[-118.442410, 33.940312],\n\t\t\t\t\t\t\t[-118.460611, 33.969111],\n\t\t\t\t\t\t\t[-118.482729, 33.995912],\n\t\t\t\t\t\t\t[-118.484212, 33.997710],\n\t\t\t\t\t\t\t[-118.502813, 34.015509],\n\t\t\t\t\t\t\t[-118.519514, 34.027509],\n\t\t\t\t\t\t\t[-118.543115, 34.038508],\n\t\t\t\t\t\t\t[-118.569235, 34.041640],\n\t\t\t\t\t\t\t[-118.603572, 34.039048],\n\t\t\t\t\t\t\t[-118.609652, 34.036424],\n\t\t\t\t\t\t\t[-118.668358, 34.038887],\n\t\t\t\t\t\t\t[-118.675430, 34.037479],\n\t\t\t\t\t\t\t[-118.679366, 34.033255],\n\t\t\t\t\t\t\t[-118.706215, 34.029383],\n\t\t\t\t\t\t\t[-118.732391, 34.032743],\n\t\t\t\t\t\t\t[-118.744952, 34.032103],\n\t\t\t\t\t\t\t[-118.783433, 34.021543],\n\t\t\t\t\t\t\t[-118.787094, 34.019545],\n\t\t\t\t\t\t\t[-118.805114, 34.001239],\n\t\t\t\t\t\t\t[-118.821579, 34.013959],\n\t\t\t\t\t\t\t[-118.840380, 34.027527],\n\t\t\t\t\t\t\t[-118.854653, 34.034215],\n\t\t\t\t\t\t\t[-118.896159, 34.039207],\n\t\t\t\t\t\t\t[-118.928048, 34.045847],\n\t\t\t\t\t\t\t[-118.938081, 34.043383],\n\t\t\t\t\t\t\t[-118.944887, 34.045340],\n\t\t\t\t\t\t\t[-118.940965, 34.074830],\n\t\t\t\t\t\t\t[-118.788889, 34.168214],\n\t\t\t\t\t\t\t[-118.668152, 34.168195],\n\t\t\t\t\t\t\t[-118.633473, 34.269626],\n\t\t\t\t\t\t\t[-118.636789, 34.291804],\n\t\t\t\t\t\t\t[-118.650859, 34.320484],\n\t\t\t\t\t\t\t[-118.796692, 34.616559]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13085\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"085\",\n\t\t\t\t\"NAME\": \"Dawson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 210.830000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.258075, 34.335156],\n\t\t\t\t\t\t[-84.257812, 34.372631],\n\t\t\t\t\t\t[-84.257652, 34.375111],\n\t\t\t\t\t\t[-84.257586, 34.380992],\n\t\t\t\t\t\t[-84.256867, 34.467327],\n\t\t\t\t\t\t[-84.319679, 34.467857],\n\t\t\t\t\t\t[-84.345553, 34.562735],\n\t\t\t\t\t\t[-84.255112, 34.568333],\n\t\t\t\t\t\t[-84.196754, 34.617924],\n\t\t\t\t\t\t[-84.189026, 34.608109],\n\t\t\t\t\t\t[-84.188557, 34.602692],\n\t\t\t\t\t\t[-84.191040, 34.539181],\n\t\t\t\t\t\t[-84.102037, 34.464544],\n\t\t\t\t\t\t[-83.980649, 34.418389],\n\t\t\t\t\t\t[-83.957077, 34.334011],\n\t\t\t\t\t\t[-84.258075, 34.335156]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13099\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"099\",\n\t\t\t\t\"NAME\": \"Early\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 512.594000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.046859, 31.517451],\n\t\t\t\t\t\t[-85.029227, 31.486071],\n\t\t\t\t\t\t[-84.819807, 31.501192],\n\t\t\t\t\t\t[-84.789032, 31.436356],\n\t\t\t\t\t\t[-84.637579, 31.433926],\n\t\t\t\t\t\t[-84.641673, 31.258967],\n\t\t\t\t\t\t[-84.917430, 31.255990],\n\t\t\t\t\t\t[-84.922423, 31.072590],\n\t\t\t\t\t\t[-84.999869, 31.074736],\n\t\t\t\t\t\t[-85.001928, 31.074983],\n\t\t\t\t\t\t[-85.022121, 31.075480],\n\t\t\t\t\t\t[-85.029736, 31.096163],\n\t\t\t\t\t\t[-85.035615, 31.108192],\n\t\t\t\t\t\t[-85.076628, 31.156927],\n\t\t\t\t\t\t[-85.083582, 31.159630],\n\t\t\t\t\t\t[-85.092106, 31.160293],\n\t\t\t\t\t\t[-85.100207, 31.165490],\n\t\t\t\t\t\t[-85.107516, 31.186451],\n\t\t\t\t\t\t[-85.111871, 31.258388],\n\t\t\t\t\t\t[-85.101561, 31.283362],\n\t\t\t\t\t\t[-85.087651, 31.308677],\n\t\t\t\t\t\t[-85.068065, 31.427586],\n\t\t\t\t\t\t[-85.046859, 31.517451]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13117\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"117\",\n\t\t\t\t\"NAME\": \"Forsyth\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 224.021000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.258075, 34.335156],\n\t\t\t\t\t\t[-83.957077, 34.334011],\n\t\t\t\t\t\t[-83.927284, 34.279399],\n\t\t\t\t\t\t[-83.989059, 34.195732],\n\t\t\t\t\t\t[-84.062841, 34.167873],\n\t\t\t\t\t\t[-84.074624, 34.163687],\n\t\t\t\t\t\t[-84.094763, 34.131708],\n\t\t\t\t\t\t[-84.101343, 34.106305],\n\t\t\t\t\t\t[-84.102610, 34.103788],\n\t\t\t\t\t\t[-84.105403, 34.102223],\n\t\t\t\t\t\t[-84.107143, 34.100030],\n\t\t\t\t\t\t[-84.109894, 34.098423],\n\t\t\t\t\t\t[-84.117801, 34.065315],\n\t\t\t\t\t\t[-84.097692, 34.050654],\n\t\t\t\t\t\t[-84.200373, 34.090118],\n\t\t\t\t\t\t[-84.258934, 34.109539],\n\t\t\t\t\t\t[-84.258743, 34.185909],\n\t\t\t\t\t\t[-84.258075, 34.335156]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08051\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"051\",\n\t\t\t\t\"NAME\": \"Gunnison\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 3239.100000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-107.500606, 39.217916],\n\t\t\t\t\t\t[-107.394486, 39.256299],\n\t\t\t\t\t\t[-107.375608, 39.197931],\n\t\t\t\t\t\t[-107.282490, 39.118718],\n\t\t\t\t\t\t[-107.066320, 39.118805],\n\t\t\t\t\t\t[-107.001622, 39.042273],\n\t\t\t\t\t\t[-106.906422, 38.992091],\n\t\t\t\t\t\t[-106.801874, 38.978303],\n\t\t\t\t\t\t[-106.694969, 39.055667],\n\t\t\t\t\t\t[-106.599214, 38.997994],\n\t\t\t\t\t\t[-106.465032, 38.910354],\n\t\t\t\t\t\t[-106.326099, 38.911004],\n\t\t\t\t\t\t[-106.452126, 38.698777],\n\t\t\t\t\t\t[-106.246940, 38.422768],\n\t\t\t\t\t\t[-107.000601, 38.425619],\n\t\t\t\t\t\t[-107.001119, 38.147072],\n\t\t\t\t\t\t[-107.568620, 38.147267],\n\t\t\t\t\t\t[-107.635040, 38.301896],\n\t\t\t\t\t\t[-107.500020, 38.301926],\n\t\t\t\t\t\t[-107.500655, 38.668553],\n\t\t\t\t\t\t[-107.500606, 39.217916]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08055\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"055\",\n\t\t\t\t\"NAME\": \"Huerfano\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1591.001000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-105.473204, 37.895970],\n\t\t\t\t\t\t[-105.317081, 37.938949],\n\t\t\t\t\t\t[-105.285076, 37.899421],\n\t\t\t\t\t\t[-105.194586, 38.007560],\n\t\t\t\t\t\t[-105.049917, 37.915479],\n\t\t\t\t\t\t[-105.013729, 37.881271],\n\t\t\t\t\t\t[-104.646383, 37.900527],\n\t\t\t\t\t\t[-104.351109, 37.817488],\n\t\t\t\t\t\t[-104.454930, 37.740839],\n\t\t\t\t\t\t[-104.548417, 37.609424],\n\t\t\t\t\t\t[-104.548652, 37.574700],\n\t\t\t\t\t\t[-104.649229, 37.495320],\n\t\t\t\t\t\t[-104.696111, 37.485425],\n\t\t\t\t\t\t[-104.695075, 37.439915],\n\t\t\t\t\t\t[-104.748938, 37.407029],\n\t\t\t\t\t\t[-104.995505, 37.375551],\n\t\t\t\t\t\t[-105.154176, 37.293129],\n\t\t\t\t\t\t[-105.187549, 37.619669],\n\t\t\t\t\t\t[-105.295587, 37.654416],\n\t\t\t\t\t\t[-105.485516, 37.577899],\n\t\t\t\t\t\t[-105.457255, 37.751464],\n\t\t\t\t\t\t[-105.428893, 37.851733],\n\t\t\t\t\t\t[-105.473204, 37.895970]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08065\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"065\",\n\t\t\t\t\"NAME\": \"Lake\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 376.911000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-106.426487, 39.361871],\n\t\t\t\t\t\t[-106.206732, 39.379636],\n\t\t\t\t\t\t[-106.136412, 39.379694],\n\t\t\t\t\t\t[-106.135529, 39.379546],\n\t\t\t\t\t\t[-106.183972, 39.309354],\n\t\t\t\t\t\t[-106.191006, 39.056073],\n\t\t\t\t\t\t[-106.577966, 39.057908],\n\t\t\t\t\t\t[-106.508614, 39.166681],\n\t\t\t\t\t\t[-106.485121, 39.312566],\n\t\t\t\t\t\t[-106.426487, 39.361871]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08079\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"079\",\n\t\t\t\t\"NAME\": \"Mineral\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 875.666000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-106.693845, 37.835244],\n\t\t\t\t\t\t[-106.711624, 37.664273],\n\t\t\t\t\t\t[-106.710775, 37.404228],\n\t\t\t\t\t\t[-107.128737, 37.392409],\n\t\t\t\t\t\t[-107.128680, 37.422942],\n\t\t\t\t\t\t[-107.123868, 37.675029],\n\t\t\t\t\t\t[-107.145138, 37.675497],\n\t\t\t\t\t\t[-107.138191, 37.938848],\n\t\t\t\t\t\t[-107.000602, 37.956041],\n\t\t\t\t\t\t[-106.879167, 37.961110],\n\t\t\t\t\t\t[-106.693523, 37.873519],\n\t\t\t\t\t\t[-106.693845, 37.835244]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08089\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"089\",\n\t\t\t\t\"NAME\": \"Otero\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1261.961000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-103.619172, 38.113355],\n\t\t\t\t\t\t[-103.619283, 38.171455],\n\t\t\t\t\t\t[-103.509364, 38.172514],\n\t\t\t\t\t\t[-103.501764, 38.265016],\n\t\t\t\t\t\t[-103.399938, 38.265435],\n\t\t\t\t\t\t[-103.403592, 37.792397],\n\t\t\t\t\t\t[-103.404339, 37.643576],\n\t\t\t\t\t\t[-104.058196, 37.644049],\n\t\t\t\t\t\t[-104.061132, 37.734704],\n\t\t\t\t\t\t[-104.058242, 38.146492],\n\t\t\t\t\t\t[-103.835616, 38.113340],\n\t\t\t\t\t\t[-103.619172, 38.113355]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08101\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"101\",\n\t\t\t\t\"NAME\": \"Pueblo\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2386.104000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-104.053921, 38.522393],\n\t\t\t\t\t\t[-104.058242, 38.146492],\n\t\t\t\t\t\t[-104.061132, 37.734704],\n\t\t\t\t\t\t[-104.351109, 37.817488],\n\t\t\t\t\t\t[-104.646383, 37.900527],\n\t\t\t\t\t\t[-105.013729, 37.881271],\n\t\t\t\t\t\t[-105.049917, 37.915479],\n\t\t\t\t\t\t[-105.049215, 38.257973],\n\t\t\t\t\t\t[-104.940366, 38.258275],\n\t\t\t\t\t\t[-104.941533, 38.519569],\n\t\t\t\t\t\t[-104.053921, 38.522393]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08117\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"117\",\n\t\t\t\t\"NAME\": \"Summit\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 608.358000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-106.434508, 39.924914],\n\t\t\t\t\t\t[-106.252027, 39.914712],\n\t\t\t\t\t\t[-106.083711, 39.805964],\n\t\t\t\t\t\t[-106.023783, 39.688420],\n\t\t\t\t\t\t[-105.924618, 39.698972],\n\t\t\t\t\t\t[-105.793058, 39.636328],\n\t\t\t\t\t\t[-105.829662, 39.564865],\n\t\t\t\t\t\t[-105.817631, 39.538310],\n\t\t\t\t\t\t[-105.966786, 39.438035],\n\t\t\t\t\t\t[-106.017619, 39.365503],\n\t\t\t\t\t\t[-106.135529, 39.379546],\n\t\t\t\t\t\t[-106.136412, 39.379694],\n\t\t\t\t\t\t[-106.206732, 39.379636],\n\t\t\t\t\t\t[-106.251638, 39.465039],\n\t\t\t\t\t\t[-106.177604, 39.609056],\n\t\t\t\t\t\t[-106.385478, 39.767164],\n\t\t\t\t\t\t[-106.434508, 39.924914]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US09005\",\n\t\t\t\t\"STATE\": \"09\",\n\t\t\t\t\"COUNTY\": \"005\",\n\t\t\t\t\"NAME\": \"Litchfield\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 920.560000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-73.145036, 41.557822],\n\t\t\t\t\t\t[-73.164676, 41.557088],\n\t\t\t\t\t\t[-73.155730, 41.515279],\n\t\t\t\t\t\t[-73.318889, 41.505189],\n\t\t\t\t\t\t[-73.327114, 41.484527],\n\t\t\t\t\t\t[-73.310473, 41.468815],\n\t\t\t\t\t\t[-73.312873, 41.467415],\n\t\t\t\t\t\t[-73.326774, 41.469515],\n\t\t\t\t\t\t[-73.331569, 41.472677],\n\t\t\t\t\t\t[-73.441466, 41.491294],\n\t\t\t\t\t\t[-73.506923, 41.665802],\n\t\t\t\t\t\t[-73.510379, 41.666498],\n\t\t\t\t\t\t[-73.511149, 41.666488],\n\t\t\t\t\t\t[-73.514784, 41.665886],\n\t\t\t\t\t\t[-73.516019, 41.665964],\n\t\t\t\t\t\t[-73.517473, 41.666646],\n\t\t\t\t\t\t[-73.510171, 41.758686],\n\t\t\t\t\t\t[-73.505008, 41.823773],\n\t\t\t\t\t\t[-73.504944, 41.824285],\n\t\t\t\t\t\t[-73.487314, 42.049638],\n\t\t\t\t\t\t[-73.294420, 42.046984],\n\t\t\t\t\t\t[-73.293097, 42.046940],\n\t\t\t\t\t\t[-73.231056, 42.044945],\n\t\t\t\t\t\t[-73.229798, 42.044877],\n\t\t\t\t\t\t[-73.127276, 42.041964],\n\t\t\t\t\t\t[-73.053254, 42.039861],\n\t\t\t\t\t\t[-73.008739, 42.039356],\n\t\t\t\t\t\t[-73.008745, 42.038854],\n\t\t\t\t\t\t[-73.029537, 41.966606],\n\t\t\t\t\t\t[-72.887060, 41.973121],\n\t\t\t\t\t\t[-72.905945, 41.921696],\n\t\t\t\t\t\t[-72.949024, 41.806431],\n\t\t\t\t\t\t[-73.016936, 41.798183],\n\t\t\t\t\t\t[-73.016534, 41.795655],\n\t\t\t\t\t\t[-73.012633, 41.777457],\n\t\t\t\t\t\t[-73.012534, 41.775410],\n\t\t\t\t\t\t[-73.012256, 41.775132],\n\t\t\t\t\t\t[-72.998550, 41.712498],\n\t\t\t\t\t\t[-72.983250, 41.639598],\n\t\t\t\t\t\t[-73.004046, 41.628577],\n\t\t\t\t\t\t[-73.021471, 41.627104],\n\t\t\t\t\t\t[-73.018650, 41.614097],\n\t\t\t\t\t\t[-73.036156, 41.615197],\n\t\t\t\t\t\t[-73.058024, 41.606740],\n\t\t\t\t\t\t[-73.145036, 41.557822]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12007\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"007\",\n\t\t\t\t\"NAME\": \"Bradford\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 293.962000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.049244, 29.718670],\n\t\t\t\t\t\t[-82.055625, 29.718232],\n\t\t\t\t\t\t[-82.133126, 29.835949],\n\t\t\t\t\t\t[-82.272563, 29.843011],\n\t\t\t\t\t\t[-82.418728, 29.923093],\n\t\t\t\t\t\t[-82.307409, 29.956156],\n\t\t\t\t\t\t[-82.142578, 30.143117],\n\t\t\t\t\t\t[-82.049425, 30.143136],\n\t\t\t\t\t\t[-82.046112, 29.747129],\n\t\t\t\t\t\t[-82.049244, 29.718670]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12019\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"019\",\n\t\t\t\t\"NAME\": \"Clay\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 604.360000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.049411, 30.186933],\n\t\t\t\t\t\t[-81.711348, 30.191193],\n\t\t\t\t\t\t[-81.680215, 30.121240],\n\t\t\t\t\t\t[-81.688876, 30.028566],\n\t\t\t\t\t\t[-81.600990, 29.956017],\n\t\t\t\t\t\t[-81.581207, 29.840176],\n\t\t\t\t\t\t[-81.797218, 29.836649],\n\t\t\t\t\t\t[-81.939427, 29.747497],\n\t\t\t\t\t\t[-82.049244, 29.718670],\n\t\t\t\t\t\t[-82.046112, 29.747129],\n\t\t\t\t\t\t[-82.049425, 30.143136],\n\t\t\t\t\t\t[-82.049411, 30.186933]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12027\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"027\",\n\t\t\t\t\"NAME\": \"DeSoto\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 637.059000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.057469, 27.032119],\n\t\t\t\t\t\t[-82.056497, 27.207769],\n\t\t\t\t\t\t[-82.055753, 27.338264],\n\t\t\t\t\t\t[-81.563696, 27.340680],\n\t\t\t\t\t\t[-81.562202, 27.033836],\n\t\t\t\t\t\t[-82.057469, 27.032119]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12035\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"035\",\n\t\t\t\t\"NAME\": \"Flagler\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 485.461000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.212878, 29.670667],\n\t\t\t\t\t\t[-81.211565, 29.667085],\n\t\t\t\t\t\t[-81.163581, 29.555290],\n\t\t\t\t\t\t[-81.123896, 29.474465],\n\t\t\t\t\t\t[-81.101923, 29.427055],\n\t\t\t\t\t\t[-81.155881, 29.410954],\n\t\t\t\t\t\t[-81.150081, 29.265957],\n\t\t\t\t\t\t[-81.417290, 29.261156],\n\t\t\t\t\t\t[-81.433992, 29.398552],\n\t\t\t\t\t\t[-81.478793, 29.399052],\n\t\t\t\t\t\t[-81.520596, 29.500249],\n\t\t\t\t\t\t[-81.523660, 29.622432],\n\t\t\t\t\t\t[-81.324059, 29.625610],\n\t\t\t\t\t\t[-81.212878, 29.670667]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26059\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"059\",\n\t\t\t\t\"NAME\": \"Hillsdale\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 598.133000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.396547, 41.705935],\n\t\t\t\t\t\t[-84.399430, 41.705761],\n\t\t\t\t\t\t[-84.399546, 41.705758],\n\t\t\t\t\t\t[-84.438067, 41.704903],\n\t\t\t\t\t\t[-84.806082, 41.696089],\n\t\t\t\t\t\t[-84.806018, 41.707485],\n\t\t\t\t\t\t[-84.806042, 41.720544],\n\t\t\t\t\t\t[-84.806065, 41.732909],\n\t\t\t\t\t\t[-84.806074, 41.737603],\n\t\t\t\t\t\t[-84.806134, 41.743115],\n\t\t\t\t\t\t[-84.818873, 41.760059],\n\t\t\t\t\t\t[-84.825130, 41.759991],\n\t\t\t\t\t\t[-84.826491, 42.072468],\n\t\t\t\t\t\t[-84.709556, 42.070366],\n\t\t\t\t\t\t[-84.363297, 42.073456],\n\t\t\t\t\t\t[-84.360419, 41.706925],\n\t\t\t\t\t\t[-84.396547, 41.705935]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26063\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"063\",\n\t\t\t\t\"NAME\": \"Huron\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 835.706000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.606233, 43.690437],\n\t\t\t\t\t\t[-83.117844, 43.675493],\n\t\t\t\t\t\t[-83.466592, 43.667621],\n\t\t\t\t\t\t[-83.467429, 43.728920],\n\t\t\t\t\t\t[-83.465080, 43.733843],\n\t\t\t\t\t\t[-83.459628, 43.740931],\n\t\t\t\t\t\t[-83.440171, 43.761694],\n\t\t\t\t\t\t[-83.438878, 43.767135],\n\t\t\t\t\t\t[-83.441591, 43.770175],\n\t\t\t\t\t\t[-83.446752, 43.771860],\n\t\t\t\t\t\t[-83.438311, 43.786846],\n\t\t\t\t\t\t[-83.426068, 43.799915],\n\t\t\t\t\t\t[-83.416378, 43.801034],\n\t\t\t\t\t\t[-83.411453, 43.805033],\n\t\t\t\t\t\t[-83.410663, 43.807730],\n\t\t\t\t\t\t[-83.412456, 43.817569],\n\t\t\t\t\t\t[-83.410853, 43.825585],\n\t\t\t\t\t\t[-83.407647, 43.831998],\n\t\t\t\t\t\t[-83.390344, 43.839132],\n\t\t\t\t\t\t[-83.389017, 43.840457],\n\t\t\t\t\t\t[-83.389424, 43.844229],\n\t\t\t\t\t\t[-83.358869, 43.857395],\n\t\t\t\t\t\t[-83.332270, 43.880522],\n\t\t\t\t\t\t[-83.331788, 43.893901],\n\t\t\t\t\t\t[-83.333532, 43.898520],\n\t\t\t\t\t\t[-83.340976, 43.904541],\n\t\t\t\t\t\t[-83.348007, 43.906388],\n\t\t\t\t\t\t[-83.348648, 43.909915],\n\t\t\t\t\t\t[-83.347365, 43.912160],\n\t\t\t\t\t\t[-83.338067, 43.915687],\n\t\t\t\t\t\t[-83.318656, 43.917620],\n\t\t\t\t\t\t[-83.305690, 43.922489],\n\t\t\t\t\t\t[-83.282310, 43.938031],\n\t\t\t\t\t\t[-83.268980, 43.956132],\n\t\t\t\t\t\t[-83.261850, 43.969021],\n\t\t\t\t\t\t[-83.261530, 43.973525],\n\t\t\t\t\t\t[-83.227093, 43.981003],\n\t\t\t\t\t\t[-83.195688, 43.983137],\n\t\t\t\t\t\t[-83.180618, 43.982109],\n\t\t\t\t\t\t[-83.145407, 43.989441],\n\t\t\t\t\t\t[-83.134881, 43.993147],\n\t\t\t\t\t\t[-83.120659, 44.000950],\n\t\t\t\t\t\t[-83.107820, 44.003245],\n\t\t\t\t\t\t[-83.079297, 44.001079],\n\t\t\t\t\t\t[-83.066026, 44.003366],\n\t\t\t\t\t\t[-83.058741, 44.006224],\n\t\t\t\t\t\t[-83.046577, 44.015710],\n\t\t\t\t\t\t[-83.029868, 44.041175],\n\t\t\t\t\t\t[-83.024604, 44.045174],\n\t\t\t\t\t\t[-82.999283, 44.046510],\n\t\t\t\t\t\t[-82.990728, 44.048846],\n\t\t\t\t\t\t[-82.967439, 44.066138],\n\t\t\t\t\t\t[-82.958688, 44.065774],\n\t\t\t\t\t\t[-82.956658, 44.063306],\n\t\t\t\t\t\t[-82.947368, 44.062187],\n\t\t\t\t\t\t[-82.928884, 44.069389],\n\t\t\t\t\t\t[-82.915976, 44.070503],\n\t\t\t\t\t\t[-82.889831, 44.050952],\n\t\t\t\t\t\t[-82.875889, 44.045046],\n\t\t\t\t\t\t[-82.833103, 44.036851],\n\t\t\t\t\t\t[-82.793205, 44.023247],\n\t\t\t\t\t\t[-82.788298, 44.013712],\n\t\t\t\t\t\t[-82.783198, 44.009366],\n\t\t\t\t\t\t[-82.765018, 44.006845],\n\t\t\t\t\t\t[-82.746255, 43.996037],\n\t\t\t\t\t\t[-82.738992, 43.989506],\n\t\t\t\t\t\t[-82.728528, 43.972615],\n\t\t\t\t\t\t[-82.712235, 43.949610],\n\t\t\t\t\t\t[-82.709839, 43.948226],\n\t\t\t\t\t\t[-82.693505, 43.917980],\n\t\t\t\t\t\t[-82.678642, 43.883730],\n\t\t\t\t\t\t[-82.655450, 43.867883],\n\t\t\t\t\t\t[-82.643166, 43.852468],\n\t\t\t\t\t\t[-82.642899, 43.846419],\n\t\t\t\t\t\t[-82.647467, 43.844490],\n\t\t\t\t\t\t[-82.647784, 43.842684],\n\t\t\t\t\t\t[-82.644345, 43.837539],\n\t\t\t\t\t\t[-82.633641, 43.831224],\n\t\t\t\t\t\t[-82.617955, 43.768596],\n\t\t\t\t\t\t[-82.619079, 43.756088],\n\t\t\t\t\t\t[-82.617213, 43.746788],\n\t\t\t\t\t\t[-82.612224, 43.739771],\n\t\t\t\t\t\t[-82.606233, 43.690437]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26113\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"113\",\n\t\t\t\t\"NAME\": \"Missaukee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 564.726000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.850929, 44.511069],\n\t\t\t\t\t\t[-84.855795, 44.421984],\n\t\t\t\t\t\t[-84.851705, 44.161375],\n\t\t\t\t\t\t[-85.087040, 44.164239],\n\t\t\t\t\t\t[-85.334777, 44.165118],\n\t\t\t\t\t\t[-85.334000, 44.512303],\n\t\t\t\t\t\t[-84.850929, 44.511069]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26119\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"119\",\n\t\t\t\t\"NAME\": \"Montmorency\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 546.663000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.371757, 44.855029],\n\t\t\t\t\t\t[-84.366827, 45.198762],\n\t\t\t\t\t\t[-84.246634, 45.198718],\n\t\t\t\t\t\t[-83.881218, 45.202062],\n\t\t\t\t\t\t[-83.888484, 44.856458],\n\t\t\t\t\t\t[-84.371757, 44.855029]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26129\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"129\",\n\t\t\t\t\"NAME\": \"Ogemaw\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 563.488000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.370643, 44.507223],\n\t\t\t\t\t\t[-83.886634, 44.508973],\n\t\t\t\t\t\t[-83.883977, 44.161786],\n\t\t\t\t\t\t[-84.166107, 44.161788],\n\t\t\t\t\t\t[-84.368039, 44.160538],\n\t\t\t\t\t\t[-84.366324, 44.175508],\n\t\t\t\t\t\t[-84.370643, 44.507223]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26137\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"137\",\n\t\t\t\t\"NAME\": \"Otsego\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 514.971000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.371757, 44.855029],\n\t\t\t\t\t\t[-84.847309, 44.858037],\n\t\t\t\t\t\t[-84.857452, 45.116707],\n\t\t\t\t\t\t[-84.734799, 45.114903],\n\t\t\t\t\t\t[-84.734303, 45.201936],\n\t\t\t\t\t\t[-84.366827, 45.198762],\n\t\t\t\t\t\t[-84.371757, 44.855029]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26149\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"149\",\n\t\t\t\t\"NAME\": \"St. Joseph\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 500.591000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.724534, 41.759085],\n\t\t\t\t\t\t[-85.749992, 41.759091],\n\t\t\t\t\t\t[-85.750469, 41.759090],\n\t\t\t\t\t\t[-85.775039, 41.759147],\n\t\t\t\t\t\t[-85.791335, 41.759051],\n\t\t\t\t\t\t[-85.760186, 41.798814],\n\t\t\t\t\t\t[-85.762943, 42.069327],\n\t\t\t\t\t\t[-85.293626, 42.071553],\n\t\t\t\t\t\t[-85.292178, 41.759963],\n\t\t\t\t\t\t[-85.298365, 41.760028],\n\t\t\t\t\t\t[-85.308140, 41.760097],\n\t\t\t\t\t\t[-85.318129, 41.759983],\n\t\t\t\t\t\t[-85.330623, 41.759982],\n\t\t\t\t\t\t[-85.350174, 41.759908],\n\t\t\t\t\t\t[-85.379133, 41.759875],\n\t\t\t\t\t\t[-85.427553, 41.759706],\n\t\t\t\t\t\t[-85.432471, 41.759684],\n\t\t\t\t\t\t[-85.515959, 41.759352],\n\t\t\t\t\t\t[-85.518251, 41.759513],\n\t\t\t\t\t\t[-85.607548, 41.759079],\n\t\t\t\t\t\t[-85.608312, 41.759193],\n\t\t\t\t\t\t[-85.622608, 41.759049],\n\t\t\t\t\t\t[-85.624987, 41.759093],\n\t\t\t\t\t\t[-85.632714, 41.759164],\n\t\t\t\t\t\t[-85.647683, 41.759125],\n\t\t\t\t\t\t[-85.650738, 41.759103],\n\t\t\t\t\t\t[-85.659750, 41.759101],\n\t\t\t\t\t\t[-85.724534, 41.759085]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27005\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"005\",\n\t\t\t\t\"NAME\": \"Becker\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1315.203000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.163010, 46.804720],\n\t\t\t\t\t\t[-95.163710, 46.717640],\n\t\t\t\t\t\t[-95.247999, 46.716255],\n\t\t\t\t\t\t[-96.174587, 46.717854],\n\t\t\t\t\t\t[-96.174108, 46.977375],\n\t\t\t\t\t\t[-96.194671, 47.151149],\n\t\t\t\t\t\t[-96.067069, 47.151813],\n\t\t\t\t\t\t[-95.551186, 47.151453],\n\t\t\t\t\t\t[-95.169172, 47.152515],\n\t\t\t\t\t\t[-95.163010, 46.804720]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27013\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"013\",\n\t\t\t\t\"NAME\": \"Blue Earth\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 747.844000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.767761, 43.847956],\n\t\t\t\t\t\t[-94.247123, 43.847946],\n\t\t\t\t\t\t[-94.368974, 43.848047],\n\t\t\t\t\t\t[-94.368850, 44.108698],\n\t\t\t\t\t\t[-94.371731, 44.264448],\n\t\t\t\t\t\t[-94.055349, 44.154018],\n\t\t\t\t\t\t[-94.011834, 44.239192],\n\t\t\t\t\t\t[-93.768031, 44.239384],\n\t\t\t\t\t\t[-93.767971, 44.195836],\n\t\t\t\t\t\t[-93.767761, 43.847956]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27023\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"023\",\n\t\t\t\t\"NAME\": \"Chippewa\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 581.122000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.737015, 44.936180],\n\t\t\t\t\t\t[-96.036698, 45.152206],\n\t\t\t\t\t\t[-95.246490, 45.152384],\n\t\t\t\t\t\t[-95.248520, 44.891310],\n\t\t\t\t\t\t[-95.482889, 44.890712],\n\t\t\t\t\t\t[-95.482843, 44.752505],\n\t\t\t\t\t\t[-95.498456, 44.786867],\n\t\t\t\t\t\t[-95.737015, 44.936180]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27033\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"033\",\n\t\t\t\t\"NAME\": \"Cottonwood\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 638.610000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.859388, 43.848093],\n\t\t\t\t\t\t[-95.452502, 43.847953],\n\t\t\t\t\t\t[-95.462427, 43.847911],\n\t\t\t\t\t\t[-95.462547, 44.195942],\n\t\t\t\t\t\t[-95.108777, 44.195044],\n\t\t\t\t\t\t[-95.100221, 44.108034],\n\t\t\t\t\t\t[-94.859803, 44.108016],\n\t\t\t\t\t\t[-94.859388, 43.848093]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27047\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"047\",\n\t\t\t\t\"NAME\": \"Freeborn\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 707.087000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.648290, 43.848139],\n\t\t\t\t\t\t[-93.406642, 43.848120],\n\t\t\t\t\t\t[-93.049524, 43.848443],\n\t\t\t\t\t\t[-93.049192, 43.499571],\n\t\t\t\t\t\t[-93.228861, 43.499567],\n\t\t\t\t\t\t[-93.271800, 43.499356],\n\t\t\t\t\t\t[-93.399035, 43.499485],\n\t\t\t\t\t\t[-93.428509, 43.499478],\n\t\t\t\t\t\t[-93.468563, 43.499473],\n\t\t\t\t\t\t[-93.472804, 43.499400],\n\t\t\t\t\t\t[-93.482009, 43.499482],\n\t\t\t\t\t\t[-93.488261, 43.499417],\n\t\t\t\t\t\t[-93.497350, 43.499456],\n\t\t\t\t\t\t[-93.497405, 43.499456],\n\t\t\t\t\t\t[-93.528482, 43.499471],\n\t\t\t\t\t\t[-93.532178, 43.499472],\n\t\t\t\t\t\t[-93.558631, 43.499521],\n\t\t\t\t\t\t[-93.576728, 43.499520],\n\t\t\t\t\t\t[-93.617131, 43.499548],\n\t\t\t\t\t\t[-93.648533, 43.499559],\n\t\t\t\t\t\t[-93.648290, 43.848139]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27061\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"061\",\n\t\t\t\t\"NAME\": \"Itasca\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2667.722000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.416279, 47.444828],\n\t\t\t\t\t\t[-94.419040, 47.758929],\n\t\t\t\t\t\t[-94.418543, 47.845816],\n\t\t\t\t\t\t[-93.776173, 47.846404],\n\t\t\t\t\t\t[-93.775772, 47.898950],\n\t\t\t\t\t\t[-93.081158, 47.891870],\n\t\t\t\t\t\t[-93.061253, 47.720187],\n\t\t\t\t\t\t[-93.069500, 47.393915],\n\t\t\t\t\t\t[-93.055943, 47.026415],\n\t\t\t\t\t\t[-93.775257, 47.030418],\n\t\t\t\t\t\t[-93.773930, 47.211335],\n\t\t\t\t\t\t[-93.808820, 47.232622],\n\t\t\t\t\t\t[-93.774010, 47.305060],\n\t\t\t\t\t\t[-93.933270, 47.304639],\n\t\t\t\t\t\t[-94.027108, 47.352277],\n\t\t\t\t\t\t[-94.027858, 47.408633],\n\t\t\t\t\t\t[-94.095115, 47.477972],\n\t\t\t\t\t\t[-94.327531, 47.415844],\n\t\t\t\t\t\t[-94.416279, 47.444828]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29095\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"095\",\n\t\t\t\t\"NAME\": \"Jackson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 604.462000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.607354, 39.113444],\n\t\t\t\t\t\t[-94.523463, 39.148771],\n\t\t\t\t\t\t[-94.461590, 39.120372],\n\t\t\t\t\t\t[-94.389728, 39.193503],\n\t\t\t\t\t\t[-94.335213, 39.183337],\n\t\t\t\t\t\t[-94.289873, 39.237107],\n\t\t\t\t\t\t[-94.212515, 39.207086],\n\t\t\t\t\t\t[-94.104823, 39.143507],\n\t\t\t\t\t\t[-94.109584, 39.018745],\n\t\t\t\t\t\t[-94.109953, 39.015815],\n\t\t\t\t\t\t[-94.110863, 38.986311],\n\t\t\t\t\t\t[-94.111478, 38.982862],\n\t\t\t\t\t\t[-94.112928, 38.960904],\n\t\t\t\t\t\t[-94.114270, 38.928570],\n\t\t\t\t\t\t[-94.114175, 38.917304],\n\t\t\t\t\t\t[-94.113712, 38.915366],\n\t\t\t\t\t\t[-94.119096, 38.833167],\n\t\t\t\t\t\t[-94.120778, 38.833006],\n\t\t\t\t\t\t[-94.399447, 38.838809],\n\t\t\t\t\t\t[-94.608033, 38.847207],\n\t\t\t\t\t\t[-94.608033, 38.855007],\n\t\t\t\t\t\t[-94.608033, 38.861207],\n\t\t\t\t\t\t[-94.607993, 38.867271],\n\t\t\t\t\t\t[-94.608033, 38.868107],\n\t\t\t\t\t\t[-94.608033, 38.869207],\n\t\t\t\t\t\t[-94.608033, 38.883807],\n\t\t\t\t\t\t[-94.607978, 38.936870],\n\t\t\t\t\t\t[-94.607866, 38.937398],\n\t\t\t\t\t\t[-94.608134, 38.940006],\n\t\t\t\t\t\t[-94.608134, 38.942006],\n\t\t\t\t\t\t[-94.607391, 39.044086],\n\t\t\t\t\t\t[-94.607234, 39.065704],\n\t\t\t\t\t\t[-94.607334, 39.081704],\n\t\t\t\t\t\t[-94.607234, 39.089604],\n\t\t\t\t\t\t[-94.607354, 39.113444]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47133\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"133\",\n\t\t\t\t\"NAME\": \"Overton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 433.483000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.495124, 36.302278],\n\t\t\t\t\t\t[-85.497587, 36.375051],\n\t\t\t\t\t\t[-85.495422, 36.403074],\n\t\t\t\t\t\t[-85.438808, 36.501102],\n\t\t\t\t\t\t[-85.284878, 36.531293],\n\t\t\t\t\t\t[-85.185359, 36.490359],\n\t\t\t\t\t\t[-85.120445, 36.407164],\n\t\t\t\t\t\t[-85.122245, 36.304599],\n\t\t\t\t\t\t[-85.082497, 36.196171],\n\t\t\t\t\t\t[-85.119583, 36.144719],\n\t\t\t\t\t\t[-85.204156, 36.152489],\n\t\t\t\t\t\t[-85.419432, 36.236145],\n\t\t\t\t\t\t[-85.495124, 36.302278]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47145\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"145\",\n\t\t\t\t\"NAME\": \"Roane\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 360.708000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.324987, 36.004535],\n\t\t\t\t\t\t[-84.320060, 35.991607],\n\t\t\t\t\t\t[-84.271587, 35.910165],\n\t\t\t\t\t\t[-84.268393, 35.902563],\n\t\t\t\t\t\t[-84.263383, 35.896940],\n\t\t\t\t\t\t[-84.584472, 35.644424],\n\t\t\t\t\t\t[-84.619865, 35.644651],\n\t\t\t\t\t\t[-84.619880, 35.658865],\n\t\t\t\t\t\t[-84.625868, 35.658869],\n\t\t\t\t\t\t[-84.723853, 35.752896],\n\t\t\t\t\t\t[-84.781901, 35.825000],\n\t\t\t\t\t\t[-84.680633, 35.908454],\n\t\t\t\t\t\t[-84.606659, 35.951145],\n\t\t\t\t\t\t[-84.446054, 35.985984],\n\t\t\t\t\t\t[-84.341812, 36.048977],\n\t\t\t\t\t\t[-84.340405, 36.045727],\n\t\t\t\t\t\t[-84.340197, 36.044973],\n\t\t\t\t\t\t[-84.324987, 36.004535]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47159\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"159\",\n\t\t\t\t\"NAME\": \"Smith\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 314.289000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.978893, 36.426073],\n\t\t\t\t\t\t[-85.828026, 36.411836],\n\t\t\t\t\t\t[-85.846483, 36.288167],\n\t\t\t\t\t\t[-85.780148, 36.238011],\n\t\t\t\t\t\t[-85.807415, 36.131582],\n\t\t\t\t\t\t[-86.059706, 36.086024],\n\t\t\t\t\t\t[-86.136803, 36.295859],\n\t\t\t\t\t\t[-85.978893, 36.426073]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47165\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"165\",\n\t\t\t\t\"NAME\": \"Sumner\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 529.449000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.228434, 36.487472],\n\t\t\t\t\t\t[-86.283256, 36.347500],\n\t\t\t\t\t\t[-86.298452, 36.313634],\n\t\t\t\t\t\t[-86.451721, 36.335629],\n\t\t\t\t\t\t[-86.543434, 36.320602],\n\t\t\t\t\t\t[-86.594286, 36.245105],\n\t\t\t\t\t\t[-86.723495, 36.347680],\n\t\t\t\t\t\t[-86.754795, 36.405496],\n\t\t\t\t\t\t[-86.698750, 36.407400],\n\t\t\t\t\t\t[-86.564252, 36.633522],\n\t\t\t\t\t\t[-86.564143, 36.633472],\n\t\t\t\t\t\t[-86.473497, 36.651671],\n\t\t\t\t\t\t[-86.473413, 36.651676],\n\t\t\t\t\t\t[-86.472190, 36.651763],\n\t\t\t\t\t\t[-86.468497, 36.651841],\n\t\t\t\t\t\t[-86.411387, 36.650550],\n\t\t\t\t\t\t[-86.333051, 36.648778],\n\t\t\t\t\t\t[-86.222151, 36.640891],\n\t\t\t\t\t\t[-86.219081, 36.640824],\n\t\t\t\t\t\t[-86.216410, 36.640595],\n\t\t\t\t\t\t[-86.216183, 36.640527],\n\t\t\t\t\t\t[-86.205468, 36.639783],\n\t\t\t\t\t\t[-86.228434, 36.487472]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US45047\",\n\t\t\t\t\"STATE\": \"45\",\n\t\t\t\t\"COUNTY\": \"047\",\n\t\t\t\t\"NAME\": \"Greenwood\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 454.726000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.870084, 34.135357],\n\t\t\t\t\t\t[-82.008298, 33.961646],\n\t\t\t\t\t\t[-82.046974, 33.953210],\n\t\t\t\t\t\t[-82.045130, 33.983396],\n\t\t\t\t\t\t[-82.200286, 33.978597],\n\t\t\t\t\t\t[-82.245055, 34.018781],\n\t\t\t\t\t\t[-82.306243, 33.971584],\n\t\t\t\t\t\t[-82.326947, 34.064120],\n\t\t\t\t\t\t[-82.267184, 34.108360],\n\t\t\t\t\t\t[-82.247747, 34.219619],\n\t\t\t\t\t\t[-82.334234, 34.342630],\n\t\t\t\t\t\t[-82.246337, 34.409676],\n\t\t\t\t\t\t[-82.169297, 34.330746],\n\t\t\t\t\t\t[-81.945019, 34.203148],\n\t\t\t\t\t\t[-81.870084, 34.135357]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US45051\",\n\t\t\t\t\"STATE\": \"45\",\n\t\t\t\t\"COUNTY\": \"051\",\n\t\t\t\t\"NAME\": \"Horry\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1133.896000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.002109, 33.572114],\n\t\t\t\t\t\t[-79.100653, 33.571807],\n\t\t\t\t\t\t[-79.190264, 33.705787],\n\t\t\t\t\t\t[-79.339076, 33.969722],\n\t\t\t\t\t\t[-79.126681, 34.235362],\n\t\t\t\t\t\t[-79.135118, 34.241458],\n\t\t\t\t\t\t[-79.128165, 34.253652],\n\t\t\t\t\t\t[-79.071169, 34.299240],\n\t\t\t\t\t\t[-78.712206, 33.996732],\n\t\t\t\t\t\t[-78.710141, 33.994688],\n\t\t\t\t\t\t[-78.650500, 33.944035],\n\t\t\t\t\t\t[-78.541087, 33.851112],\n\t\t\t\t\t\t[-78.553944, 33.847831],\n\t\t\t\t\t\t[-78.584841, 33.844282],\n\t\t\t\t\t\t[-78.672260, 33.817587],\n\t\t\t\t\t\t[-78.714116, 33.800138],\n\t\t\t\t\t\t[-78.772737, 33.768511],\n\t\t\t\t\t\t[-78.812931, 33.743472],\n\t\t\t\t\t\t[-78.862931, 33.705654],\n\t\t\t\t\t\t[-78.938076, 33.639826],\n\t\t\t\t\t\t[-79.002109, 33.572114]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US45059\",\n\t\t\t\t\"STATE\": \"45\",\n\t\t\t\t\"COUNTY\": \"059\",\n\t\t\t\t\"NAME\": \"Laurens\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 713.804000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.313996, 34.484002],\n\t\t\t\t\t\t[-82.236000, 34.535962],\n\t\t\t\t\t\t[-82.193006, 34.686303],\n\t\t\t\t\t\t[-82.146792, 34.785554],\n\t\t\t\t\t\t[-82.012297, 34.668587],\n\t\t\t\t\t\t[-81.854002, 34.594549],\n\t\t\t\t\t\t[-81.643552, 34.533652],\n\t\t\t\t\t\t[-81.782627, 34.365089],\n\t\t\t\t\t\t[-81.895713, 34.299880],\n\t\t\t\t\t\t[-81.945019, 34.203148],\n\t\t\t\t\t\t[-82.169297, 34.330746],\n\t\t\t\t\t\t[-82.246337, 34.409676],\n\t\t\t\t\t\t[-82.313996, 34.484002]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US45069\",\n\t\t\t\t\"STATE\": \"45\",\n\t\t\t\t\"COUNTY\": \"069\",\n\t\t\t\t\"NAME\": \"Marlboro\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 479.674000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.744116, 34.805651],\n\t\t\t\t\t\t[-79.692948, 34.804973],\n\t\t\t\t\t\t[-79.690201, 34.804937],\n\t\t\t\t\t\t[-79.688088, 34.804897],\n\t\t\t\t\t\t[-79.634216, 34.771012],\n\t\t\t\t\t\t[-79.631577, 34.768835],\n\t\t\t\t\t\t[-79.561691, 34.711996],\n\t\t\t\t\t\t[-79.554454, 34.706363],\n\t\t\t\t\t\t[-79.520269, 34.678327],\n\t\t\t\t\t\t[-79.519043, 34.677321],\n\t\t\t\t\t\t[-79.490201, 34.653819],\n\t\t\t\t\t\t[-79.479305, 34.644640],\n\t\t\t\t\t\t[-79.471599, 34.637200],\n\t\t\t\t\t\t[-79.468717, 34.635323],\n\t\t\t\t\t\t[-79.461754, 34.630432],\n\t\t\t\t\t\t[-79.461318, 34.630126],\n\t\t\t\t\t\t[-79.459766, 34.629027],\n\t\t\t\t\t\t[-79.450034, 34.621036],\n\t\t\t\t\t\t[-79.633413, 34.297994],\n\t\t\t\t\t\t[-79.635373, 34.301299],\n\t\t\t\t\t\t[-79.641751, 34.299762],\n\t\t\t\t\t\t[-79.644463, 34.301190],\n\t\t\t\t\t\t[-79.657764, 34.305190],\n\t\t\t\t\t\t[-79.684559, 34.400490],\n\t\t\t\t\t\t[-79.750566, 34.436797],\n\t\t\t\t\t\t[-79.721794, 34.485416],\n\t\t\t\t\t\t[-79.829981, 34.531925],\n\t\t\t\t\t\t[-79.778249, 34.614868],\n\t\t\t\t\t\t[-79.871959, 34.693841],\n\t\t\t\t\t\t[-79.927618, 34.806555],\n\t\t\t\t\t\t[-79.773607, 34.805931],\n\t\t\t\t\t\t[-79.772829, 34.805954],\n\t\t\t\t\t\t[-79.744925, 34.805686],\n\t\t\t\t\t\t[-79.744116, 34.805651]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US45087\",\n\t\t\t\t\"STATE\": \"45\",\n\t\t\t\t\"COUNTY\": \"087\",\n\t\t\t\t\"NAME\": \"Union\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 514.171000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.854002, 34.594549],\n\t\t\t\t\t\t[-81.783390, 34.837125],\n\t\t\t\t\t\t[-81.711694, 34.912577],\n\t\t\t\t\t\t[-81.481613, 34.866221],\n\t\t\t\t\t\t[-81.457257, 34.839280],\n\t\t\t\t\t\t[-81.461755, 34.831018],\n\t\t\t\t\t\t[-81.478454, 34.821509],\n\t\t\t\t\t\t[-81.422706, 34.572029],\n\t\t\t\t\t\t[-81.419829, 34.566588],\n\t\t\t\t\t\t[-81.424304, 34.555990],\n\t\t\t\t\t\t[-81.427545, 34.529482],\n\t\t\t\t\t\t[-81.424907, 34.524073],\n\t\t\t\t\t\t[-81.421139, 34.503224],\n\t\t\t\t\t\t[-81.423241, 34.494379],\n\t\t\t\t\t\t[-81.540430, 34.445027],\n\t\t\t\t\t\t[-81.643552, 34.533652],\n\t\t\t\t\t\t[-81.854002, 34.594549]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46015\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"015\",\n\t\t\t\t\"NAME\": \"Brule\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 817.240000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.926997, 43.935143],\n\t\t\t\t\t\t[-98.807771, 43.935223],\n\t\t\t\t\t\t[-98.794588, 43.499187],\n\t\t\t\t\t\t[-99.297882, 43.499856],\n\t\t\t\t\t\t[-99.375378, 43.656869],\n\t\t\t\t\t\t[-99.458809, 43.655800],\n\t\t\t\t\t\t[-99.410150, 43.774619],\n\t\t\t\t\t\t[-99.310826, 43.855216],\n\t\t\t\t\t\t[-99.355864, 43.934371],\n\t\t\t\t\t\t[-99.350695, 43.933752],\n\t\t\t\t\t\t[-98.926997, 43.935143]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46025\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"025\",\n\t\t\t\t\"NAME\": \"Clark\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 957.604000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.491346, 44.804035],\n\t\t\t\t\t\t[-97.492266, 44.543884],\n\t\t\t\t\t\t[-97.853028, 44.544398],\n\t\t\t\t\t\t[-97.856226, 44.631178],\n\t\t\t\t\t\t[-97.977791, 44.631602],\n\t\t\t\t\t\t[-97.981792, 45.153295],\n\t\t\t\t\t\t[-97.494254, 45.151631],\n\t\t\t\t\t\t[-97.491346, 44.804035]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46037\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"037\",\n\t\t\t\t\"NAME\": \"Day\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1027.868000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.981457, 45.240415],\n\t\t\t\t\t\t[-97.979592, 45.588483],\n\t\t\t\t\t\t[-97.373366, 45.587634],\n\t\t\t\t\t\t[-97.227089, 45.558158],\n\t\t\t\t\t\t[-97.226244, 45.297647],\n\t\t\t\t\t\t[-97.226281, 45.151826],\n\t\t\t\t\t\t[-97.494254, 45.151631],\n\t\t\t\t\t\t[-97.981792, 45.153295],\n\t\t\t\t\t\t[-97.981641, 45.170965],\n\t\t\t\t\t\t[-97.981511, 45.172156],\n\t\t\t\t\t\t[-97.981457, 45.240415]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46049\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"049\",\n\t\t\t\t\"NAME\": \"Faulk\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 981.750000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.311754, 44.897227],\n\t\t\t\t\t\t[-99.572699, 44.897263],\n\t\t\t\t\t\t[-99.573445, 45.245364],\n\t\t\t\t\t\t[-98.722481, 45.243764],\n\t\t\t\t\t\t[-98.717759, 45.243732],\n\t\t\t\t\t\t[-98.716498, 44.896925],\n\t\t\t\t\t\t[-99.311754, 44.897227]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46057\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"057\",\n\t\t\t\t\"NAME\": \"Hamlin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 507.231000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.492266, 44.543884],\n\t\t\t\t\t\t[-97.491346, 44.804035],\n\t\t\t\t\t\t[-96.884570, 44.804436],\n\t\t\t\t\t\t[-96.885504, 44.543773],\n\t\t\t\t\t\t[-97.128024, 44.543126],\n\t\t\t\t\t\t[-97.492266, 44.543884]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46067\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"067\",\n\t\t\t\t\"NAME\": \"Hutchinson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 812.904000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.077108, 43.168330],\n\t\t\t\t\t\t[-98.069044, 43.184887],\n\t\t\t\t\t\t[-98.109492, 43.196838],\n\t\t\t\t\t\t[-98.113196, 43.484439],\n\t\t\t\t\t\t[-98.114758, 43.498297],\n\t\t\t\t\t\t[-97.965012, 43.499040],\n\t\t\t\t\t\t[-97.607012, 43.499826],\n\t\t\t\t\t\t[-97.401450, 43.499783],\n\t\t\t\t\t\t[-97.399191, 43.169419],\n\t\t\t\t\t\t[-97.637496, 43.168770],\n\t\t\t\t\t\t[-98.077108, 43.168330]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46077\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"077\",\n\t\t\t\t\"NAME\": \"Kingsbury\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 832.236000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.370115, 44.194971],\n\t\t\t\t\t\t[-97.849492, 44.195235],\n\t\t\t\t\t\t[-97.853150, 44.195220],\n\t\t\t\t\t\t[-97.853660, 44.195233],\n\t\t\t\t\t\t[-97.853206, 44.543254],\n\t\t\t\t\t\t[-97.853028, 44.544398],\n\t\t\t\t\t\t[-97.492266, 44.543884],\n\t\t\t\t\t\t[-97.128024, 44.543126],\n\t\t\t\t\t\t[-97.129671, 44.195933],\n\t\t\t\t\t\t[-97.370115, 44.194971]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51097\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"097\",\n\t\t\t\t\"NAME\": \"King and Queen\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 315.138000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.654076, 37.603174],\n\t\t\t\t\t\t[-76.647086, 37.480685],\n\t\t\t\t\t\t[-76.712305, 37.431309],\n\t\t\t\t\t\t[-76.732961, 37.450235],\n\t\t\t\t\t\t[-76.741984, 37.467076],\n\t\t\t\t\t\t[-76.747411, 37.478153],\n\t\t\t\t\t\t[-76.751693, 37.483941],\n\t\t\t\t\t\t[-76.764540, 37.493563],\n\t\t\t\t\t\t[-76.781293, 37.501339],\n\t\t\t\t\t\t[-76.789524, 37.503862],\n\t\t\t\t\t\t[-76.791457, 37.508339],\n\t\t\t\t\t\t[-76.792184, 37.517594],\n\t\t\t\t\t\t[-76.777729, 37.554446],\n\t\t\t\t\t\t[-76.915586, 37.693325],\n\t\t\t\t\t\t[-77.033273, 37.720809],\n\t\t\t\t\t\t[-77.181418, 37.891654],\n\t\t\t\t\t\t[-77.148634, 37.972000],\n\t\t\t\t\t\t[-77.070115, 37.964770],\n\t\t\t\t\t\t[-77.018849, 37.844848],\n\t\t\t\t\t\t[-76.943137, 37.782910],\n\t\t\t\t\t\t[-76.804423, 37.794892],\n\t\t\t\t\t\t[-76.751072, 37.728605],\n\t\t\t\t\t\t[-76.654076, 37.603174]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51109\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"109\",\n\t\t\t\t\"NAME\": \"Louisa\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 496.300000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.687294, 38.008011],\n\t\t\t\t\t\t[-77.796803, 37.730604],\n\t\t\t\t\t\t[-77.796920, 37.729069],\n\t\t\t\t\t\t[-77.888908, 37.760808],\n\t\t\t\t\t\t[-77.948552, 37.846338],\n\t\t\t\t\t\t[-78.063310, 37.905108],\n\t\t\t\t\t\t[-78.306607, 38.006399],\n\t\t\t\t\t\t[-78.254287, 38.063831],\n\t\t\t\t\t\t[-78.208092, 38.133150],\n\t\t\t\t\t\t[-78.093063, 38.151611],\n\t\t\t\t\t\t[-77.954819, 38.117437],\n\t\t\t\t\t\t[-77.786614, 38.076337],\n\t\t\t\t\t\t[-77.687294, 38.008011]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01035\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"035\",\n\t\t\t\t\"NAME\": \"Conecuh\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 850.156000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.701554, 31.523946],\n\t\t\t\t\t\t[-86.667245, 31.369404],\n\t\t\t\t\t\t[-86.700282, 31.192217],\n\t\t\t\t\t\t[-86.772519, 31.202243],\n\t\t\t\t\t\t[-86.763961, 31.261293],\n\t\t\t\t\t\t[-87.427455, 31.260386],\n\t\t\t\t\t\t[-87.166581, 31.519561],\n\t\t\t\t\t\t[-87.135051, 31.642417],\n\t\t\t\t\t\t[-87.052284, 31.716761],\n\t\t\t\t\t\t[-86.905899, 31.753035],\n\t\t\t\t\t\t[-86.906769, 31.632671],\n\t\t\t\t\t\t[-86.839386, 31.525204],\n\t\t\t\t\t\t[-86.701554, 31.523946]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01039\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"039\",\n\t\t\t\t\"NAME\": \"Covington\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1030.456000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.388646, 30.994181],\n\t\t\t\t\t\t[-86.388647, 30.994181],\n\t\t\t\t\t\t[-86.391937, 30.994172],\n\t\t\t\t\t\t[-86.404912, 30.994049],\n\t\t\t\t\t\t[-86.454704, 30.993791],\n\t\t\t\t\t\t[-86.458319, 30.993998],\n\t\t\t\t\t\t[-86.512834, 30.993700],\n\t\t\t\t\t\t[-86.519938, 30.993245],\n\t\t\t\t\t\t[-86.563436, 30.995223],\n\t\t\t\t\t\t[-86.567586, 30.995109],\n\t\t\t\t\t\t[-86.664681, 30.994534],\n\t\t\t\t\t\t[-86.678383, 30.994537],\n\t\t\t\t\t\t[-86.688294, 30.995029],\n\t\t\t\t\t\t[-86.700282, 31.192217],\n\t\t\t\t\t\t[-86.667245, 31.369404],\n\t\t\t\t\t\t[-86.701554, 31.523946],\n\t\t\t\t\t\t[-86.690217, 31.523693],\n\t\t\t\t\t\t[-86.499213, 31.525331],\n\t\t\t\t\t\t[-86.399940, 31.527128],\n\t\t\t\t\t\t[-86.398536, 31.451325],\n\t\t\t\t\t\t[-86.280155, 31.528510],\n\t\t\t\t\t\t[-86.277031, 31.455602],\n\t\t\t\t\t\t[-86.193951, 31.440072],\n\t\t\t\t\t\t[-86.196365, 31.425431],\n\t\t\t\t\t\t[-86.193476, 31.192213],\n\t\t\t\t\t\t[-86.187246, 30.993992],\n\t\t\t\t\t\t[-86.289247, 30.993798],\n\t\t\t\t\t\t[-86.304596, 30.994029],\n\t\t\t\t\t\t[-86.364907, 30.994455],\n\t\t\t\t\t\t[-86.369270, 30.994477],\n\t\t\t\t\t\t[-86.374545, 30.994474],\n\t\t\t\t\t\t[-86.388646, 30.994181]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01049\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"049\",\n\t\t\t\t\"NAME\": \"DeKalb\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 777.093000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.513709, 34.524170],\n\t\t\t\t\t\t[-85.513699, 34.524133],\n\t\t\t\t\t\t[-85.576981, 34.483543],\n\t\t\t\t\t\t[-85.636645, 34.366622],\n\t\t\t\t\t\t[-85.843617, 34.200006],\n\t\t\t\t\t\t[-86.106086, 34.200756],\n\t\t\t\t\t\t[-86.110362, 34.427797],\n\t\t\t\t\t\t[-86.057712, 34.475994],\n\t\t\t\t\t\t[-86.003840, 34.480031],\n\t\t\t\t\t\t[-85.785471, 34.624584],\n\t\t\t\t\t\t[-85.583145, 34.860371],\n\t\t\t\t\t\t[-85.552482, 34.708321],\n\t\t\t\t\t\t[-85.552454, 34.708138],\n\t\t\t\t\t\t[-85.541267, 34.656783],\n\t\t\t\t\t\t[-85.541264, 34.656701],\n\t\t\t\t\t\t[-85.534423, 34.623789],\n\t\t\t\t\t\t[-85.527127, 34.588684],\n\t\t\t\t\t\t[-85.513930, 34.525192],\n\t\t\t\t\t\t[-85.513709, 34.524170]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01053\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"053\",\n\t\t\t\t\"NAME\": \"Escambia\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 945.080000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.163084, 30.999051],\n\t\t\t\t\t\t[-87.254980, 30.998285],\n\t\t\t\t\t\t[-87.255592, 30.998216],\n\t\t\t\t\t\t[-87.257002, 30.998194],\n\t\t\t\t\t\t[-87.257960, 30.998263],\n\t\t\t\t\t\t[-87.259689, 30.998172],\n\t\t\t\t\t\t[-87.260540, 30.998195],\n\t\t\t\t\t\t[-87.265564, 30.998267],\n\t\t\t\t\t\t[-87.288905, 30.998345],\n\t\t\t\t\t\t[-87.290995, 30.998352],\n\t\t\t\t\t\t[-87.301567, 30.998434],\n\t\t\t\t\t\t[-87.304030, 30.998191],\n\t\t\t\t\t\t[-87.312183, 30.998435],\n\t\t\t\t\t\t[-87.333973, 30.998272],\n\t\t\t\t\t\t[-87.355656, 30.998244],\n\t\t\t\t\t\t[-87.364011, 30.998218],\n\t\t\t\t\t\t[-87.367842, 30.998292],\n\t\t\t\t\t\t[-87.425774, 30.998090],\n\t\t\t\t\t\t[-87.432292, 30.998205],\n\t\t\t\t\t\t[-87.449811, 30.998272],\n\t\t\t\t\t\t[-87.455705, 30.998318],\n\t\t\t\t\t\t[-87.458658, 30.998386],\n\t\t\t\t\t\t[-87.461638, 30.998202],\n\t\t\t\t\t\t[-87.461783, 30.998201],\n\t\t\t\t\t\t[-87.466827, 30.998178],\n\t\t\t\t\t\t[-87.466879, 30.998178],\n\t\t\t\t\t\t[-87.478706, 30.998213],\n\t\t\t\t\t\t[-87.479703, 30.998197],\n\t\t\t\t\t\t[-87.480243, 30.998202],\n\t\t\t\t\t\t[-87.548543, 30.997927],\n\t\t\t\t\t\t[-87.571281, 30.997870],\n\t\t\t\t\t\t[-87.598928, 30.997457],\n\t\t\t\t\t\t[-87.598927, 30.997454],\n\t\t\t\t\t\t[-87.615431, 30.997361],\n\t\t\t\t\t\t[-87.615890, 31.244458],\n\t\t\t\t\t\t[-87.427455, 31.260386],\n\t\t\t\t\t\t[-86.763961, 31.261293],\n\t\t\t\t\t\t[-86.772519, 31.202243],\n\t\t\t\t\t\t[-86.700282, 31.192217],\n\t\t\t\t\t\t[-86.688294, 30.995029],\n\t\t\t\t\t\t[-86.725379, 30.996872],\n\t\t\t\t\t\t[-86.727293, 30.996882],\n\t\t\t\t\t\t[-86.728392, 30.996739],\n\t\t\t\t\t\t[-86.785692, 30.996977],\n\t\t\t\t\t\t[-86.785918, 30.996978],\n\t\t\t\t\t\t[-86.830497, 30.997401],\n\t\t\t\t\t\t[-86.831934, 30.997378],\n\t\t\t\t\t\t[-86.872989, 30.997631],\n\t\t\t\t\t\t[-86.888135, 30.997577],\n\t\t\t\t\t\t[-87.027107, 30.999255],\n\t\t\t\t\t\t[-87.036366, 30.999348],\n\t\t\t\t\t\t[-87.039989, 30.999594],\n\t\t\t\t\t\t[-87.053737, 30.999131],\n\t\t\t\t\t\t[-87.064063, 30.999191],\n\t\t\t\t\t\t[-87.068633, 30.999143],\n\t\t\t\t\t\t[-87.162614, 30.999055],\n\t\t\t\t\t\t[-87.163084, 30.999051]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01063\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"063\",\n\t\t\t\t\"NAME\": \"Greene\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 647.110000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.026971, 33.063602],\n\t\t\t\t\t\t[-87.837521, 33.153637],\n\t\t\t\t\t\t[-87.838047, 33.136864],\n\t\t\t\t\t\t[-87.832233, 33.017258],\n\t\t\t\t\t\t[-87.715709, 33.006824],\n\t\t\t\t\t\t[-87.870464, 32.762442],\n\t\t\t\t\t\t[-87.828542, 32.768903],\n\t\t\t\t\t\t[-87.796043, 32.715632],\n\t\t\t\t\t\t[-87.813401, 32.633875],\n\t\t\t\t\t\t[-87.736786, 32.589190],\n\t\t\t\t\t\t[-87.812559, 32.524560],\n\t\t\t\t\t\t[-87.823383, 32.520443],\n\t\t\t\t\t\t[-87.822317, 32.543748],\n\t\t\t\t\t\t[-87.845144, 32.546687],\n\t\t\t\t\t\t[-87.853420, 32.532086],\n\t\t\t\t\t\t[-87.897913, 32.600046],\n\t\t\t\t\t\t[-87.840858, 32.605036],\n\t\t\t\t\t\t[-87.928689, 32.632284],\n\t\t\t\t\t\t[-88.057333, 32.593441],\n\t\t\t\t\t\t[-88.109633, 32.770989],\n\t\t\t\t\t\t[-88.079338, 32.772948],\n\t\t\t\t\t\t[-88.207316, 32.924782],\n\t\t\t\t\t\t[-88.171852, 32.995860],\n\t\t\t\t\t\t[-88.026971, 33.063602]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01069\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"069\",\n\t\t\t\t\"NAME\": \"Houston\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 579.824000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.002368, 31.000682],\n\t\t\t\t\t\t[-85.024108, 31.000681],\n\t\t\t\t\t\t[-85.027512, 31.000670],\n\t\t\t\t\t\t[-85.030107, 31.000653],\n\t\t\t\t\t\t[-85.031155, 31.000647],\n\t\t\t\t\t\t[-85.052088, 31.000585],\n\t\t\t\t\t\t[-85.054802, 31.000585],\n\t\t\t\t\t\t[-85.057534, 31.000585],\n\t\t\t\t\t\t[-85.145835, 31.000695],\n\t\t\t\t\t\t[-85.152085, 31.000888],\n\t\t\t\t\t\t[-85.152218, 31.000834],\n\t\t\t\t\t\t[-85.154452, 31.000835],\n\t\t\t\t\t\t[-85.488298, 30.997041],\n\t\t\t\t\t\t[-85.485760, 31.199886],\n\t\t\t\t\t\t[-85.710866, 31.195179],\n\t\t\t\t\t\t[-85.659985, 31.270889],\n\t\t\t\t\t\t[-85.485854, 31.246096],\n\t\t\t\t\t\t[-85.417434, 31.314973],\n\t\t\t\t\t\t[-85.179131, 31.307675],\n\t\t\t\t\t\t[-85.087651, 31.308677],\n\t\t\t\t\t\t[-85.101561, 31.283362],\n\t\t\t\t\t\t[-85.111871, 31.258388],\n\t\t\t\t\t\t[-85.107516, 31.186451],\n\t\t\t\t\t\t[-85.100207, 31.165490],\n\t\t\t\t\t\t[-85.092106, 31.160293],\n\t\t\t\t\t\t[-85.083582, 31.159630],\n\t\t\t\t\t\t[-85.076628, 31.156927],\n\t\t\t\t\t\t[-85.035615, 31.108192],\n\t\t\t\t\t\t[-85.029736, 31.096163],\n\t\t\t\t\t\t[-85.022121, 31.075480],\n\t\t\t\t\t\t[-84.999428, 31.013843],\n\t\t\t\t\t\t[-85.002368, 31.000682]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01075\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"075\",\n\t\t\t\t\"NAME\": \"Lamar\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 604.846000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.248390, 33.744908],\n\t\t\t\t\t\t[-88.226517, 33.911551],\n\t\t\t\t\t\t[-88.226517, 33.911665],\n\t\t\t\t\t\t[-88.226428, 33.912875],\n\t\t\t\t\t\t[-88.207229, 34.058333],\n\t\t\t\t\t\t[-87.986930, 34.052102],\n\t\t\t\t\t\t[-87.951785, 33.919930],\n\t\t\t\t\t\t[-87.946519, 33.524065],\n\t\t\t\t\t\t[-88.274619, 33.534008],\n\t\t\t\t\t\t[-88.270050, 33.570819],\n\t\t\t\t\t\t[-88.269532, 33.572894],\n\t\t\t\t\t\t[-88.269076, 33.576929],\n\t\t\t\t\t\t[-88.268160, 33.585040],\n\t\t\t\t\t\t[-88.267148, 33.591989],\n\t\t\t\t\t\t[-88.267005, 33.594229],\n\t\t\t\t\t\t[-88.256343, 33.682053],\n\t\t\t\t\t\t[-88.256131, 33.682860],\n\t\t\t\t\t\t[-88.254622, 33.695780],\n\t\t\t\t\t\t[-88.254445, 33.698779],\n\t\t\t\t\t\t[-88.248390, 33.744908]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01077\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"077\",\n\t\t\t\t\"NAME\": \"Lauderdale\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 667.697000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.182450, 35.007712],\n\t\t\t\t\t\t[-87.984916, 35.006256],\n\t\t\t\t\t\t[-87.877969, 35.005468],\n\t\t\t\t\t\t[-87.877742, 35.005512],\n\t\t\t\t\t\t[-87.872626, 35.005571],\n\t\t\t\t\t\t[-87.853528, 35.005541],\n\t\t\t\t\t\t[-87.853411, 35.005576],\n\t\t\t\t\t\t[-87.851886, 35.005656],\n\t\t\t\t\t\t[-87.773586, 35.004946],\n\t\t\t\t\t\t[-87.767602, 35.004783],\n\t\t\t\t\t\t[-87.758890, 35.004711],\n\t\t\t\t\t\t[-87.709491, 35.004089],\n\t\t\t\t\t\t[-87.702321, 35.003945],\n\t\t\t\t\t\t[-87.700543, 35.003988],\n\t\t\t\t\t\t[-87.696834, 35.003852],\n\t\t\t\t\t\t[-87.671405, 35.003537],\n\t\t\t\t\t\t[-87.664123, 35.003523],\n\t\t\t\t\t\t[-87.606031, 35.003343],\n\t\t\t\t\t\t[-87.428613, 35.002795],\n\t\t\t\t\t\t[-87.421543, 35.002679],\n\t\t\t\t\t\t[-87.417400, 35.002669],\n\t\t\t\t\t\t[-87.391314, 35.002374],\n\t\t\t\t\t\t[-87.381071, 35.002118],\n\t\t\t\t\t\t[-87.359281, 35.001823],\n\t\t\t\t\t\t[-87.349251, 35.001662],\n\t\t\t\t\t\t[-87.299185, 35.000915],\n\t\t\t\t\t\t[-87.270014, 35.000390],\n\t\t\t\t\t\t[-87.230544, 34.999484],\n\t\t\t\t\t\t[-87.224053, 34.999327],\n\t\t\t\t\t\t[-87.216683, 34.999148],\n\t\t\t\t\t\t[-87.210759, 34.999024],\n\t\t\t\t\t\t[-87.214914, 34.816011],\n\t\t\t\t\t\t[-87.260676, 34.758626],\n\t\t\t\t\t\t[-87.426510, 34.800022],\n\t\t\t\t\t\t[-87.524363, 34.832384],\n\t\t\t\t\t\t[-87.835833, 34.741239],\n\t\t\t\t\t\t[-87.973222, 34.882550],\n\t\t\t\t\t\t[-88.097888, 34.892202],\n\t\t\t\t\t\t[-88.125038, 34.902227],\n\t\t\t\t\t\t[-88.200064, 34.995634],\n\t\t\t\t\t\t[-88.182450, 35.007712]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12047\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"047\",\n\t\t\t\t\"NAME\": \"Hamilton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 513.790000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.187391, 30.627223],\n\t\t\t\t\t\t[-83.174411, 30.626444],\n\t\t\t\t\t\t[-83.163309, 30.625895],\n\t\t\t\t\t\t[-83.156170, 30.625504],\n\t\t\t\t\t\t[-83.136616, 30.624346],\n\t\t\t\t\t\t[-82.878779, 30.609082],\n\t\t\t\t\t\t[-82.877259, 30.609024],\n\t\t\t\t\t\t[-82.698902, 30.598271],\n\t\t\t\t\t\t[-82.698618, 30.598232],\n\t\t\t\t\t\t[-82.689539, 30.597734],\n\t\t\t\t\t\t[-82.726583, 30.559486],\n\t\t\t\t\t\t[-82.645768, 30.407992],\n\t\t\t\t\t\t[-82.681473, 30.342805],\n\t\t\t\t\t\t[-82.794594, 30.337024],\n\t\t\t\t\t\t[-83.002058, 30.429371],\n\t\t\t\t\t\t[-83.078706, 30.438116],\n\t\t\t\t\t\t[-83.170969, 30.385225],\n\t\t\t\t\t\t[-83.243766, 30.473132],\n\t\t\t\t\t\t[-83.272612, 30.627687],\n\t\t\t\t\t\t[-83.309250, 30.634405],\n\t\t\t\t\t\t[-83.309249, 30.634405],\n\t\t\t\t\t\t[-83.256218, 30.631279],\n\t\t\t\t\t\t[-83.187391, 30.627223]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12067\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"067\",\n\t\t\t\t\"NAME\": \"Lafayette\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 543.411000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.367260, 30.260440],\n\t\t\t\t\t\t[-83.249862, 30.260353],\n\t\t\t\t\t\t[-83.247253, 30.260670],\n\t\t\t\t\t\t[-83.226360, 30.114621],\n\t\t\t\t\t\t[-83.160557, 30.109823],\n\t\t\t\t\t\t[-82.963112, 29.993050],\n\t\t\t\t\t\t[-82.879802, 29.886847],\n\t\t\t\t\t\t[-82.875616, 29.866527],\n\t\t\t\t\t\t[-82.892872, 29.827460],\n\t\t\t\t\t\t[-82.920608, 29.824143],\n\t\t\t\t\t\t[-83.318859, 29.822623],\n\t\t\t\t\t\t[-83.370890, 29.887934],\n\t\t\t\t\t\t[-83.367260, 30.260440]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12077\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"077\",\n\t\t\t\t\"NAME\": \"Liberty\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 835.562000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.544450, 30.011030],\n\t\t\t\t\t\t[-85.007626, 30.013883],\n\t\t\t\t\t\t[-85.025439, 29.971399],\n\t\t\t\t\t\t[-85.113691, 30.023173],\n\t\t\t\t\t\t[-85.153773, 30.091294],\n\t\t\t\t\t\t[-85.115660, 30.199976],\n\t\t\t\t\t\t[-85.059092, 30.263229],\n\t\t\t\t\t\t[-84.983203, 30.441837],\n\t\t\t\t\t\t[-84.990017, 30.524795],\n\t\t\t\t\t\t[-84.932519, 30.606393],\n\t\t\t\t\t\t[-84.882616, 30.533094],\n\t\t\t\t\t\t[-84.781813, 30.518693],\n\t\t\t\t\t\t[-84.781111, 30.459794],\n\t\t\t\t\t\t[-84.646408, 30.388281],\n\t\t\t\t\t\t[-84.713351, 30.300170],\n\t\t\t\t\t\t[-84.669258, 30.125200],\n\t\t\t\t\t\t[-84.544450, 30.011030]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US04001\",\n\t\t\t\t\"STATE\": \"04\",\n\t\t\t\t\"COUNTY\": \"001\",\n\t\t\t\t\"NAME\": \"Apache\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 11197.521000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-109.045973, 36.002338],\n\t\t\t\t\t\t[-109.046011, 35.925896],\n\t\t\t\t\t\t[-109.046054, 35.925860],\n\t\t\t\t\t\t[-109.046055, 35.888721],\n\t\t\t\t\t\t[-109.046024, 35.879800],\n\t\t\t\t\t\t[-109.046295, 35.616517],\n\t\t\t\t\t\t[-109.046296, 35.614251],\n\t\t\t\t\t\t[-109.046509, 35.546440],\n\t\t\t\t\t\t[-109.046481, 35.546326],\n\t\t\t\t\t\t[-109.046082, 35.174665],\n\t\t\t\t\t\t[-109.045851, 34.959718],\n\t\t\t\t\t\t[-109.046156, 34.579291],\n\t\t\t\t\t\t[-109.046182, 34.522553],\n\t\t\t\t\t\t[-109.046182, 34.522393],\n\t\t\t\t\t\t[-109.046627, 33.778233],\n\t\t\t\t\t\t[-109.348062, 33.777520],\n\t\t\t\t\t\t[-109.495440, 33.652697],\n\t\t\t\t\t\t[-109.799782, 33.488314],\n\t\t\t\t\t\t[-109.891759, 33.567829],\n\t\t\t\t\t\t[-109.891766, 33.777777],\n\t\t\t\t\t\t[-109.859274, 33.777683],\n\t\t\t\t\t\t[-109.849387, 34.125945],\n\t\t\t\t\t\t[-109.848246, 34.473435],\n\t\t\t\t\t\t[-109.865231, 34.559689],\n\t\t\t\t\t\t[-109.844624, 34.822562],\n\t\t\t\t\t\t[-109.843764, 35.517875],\n\t\t\t\t\t\t[-109.826936, 35.662484],\n\t\t\t\t\t\t[-110.000674, 35.662657],\n\t\t\t\t\t\t[-110.000673, 35.844269],\n\t\t\t\t\t\t[-109.999188, 36.695911],\n\t\t\t\t\t\t[-110.000677, 36.997968],\n\t\t\t\t\t\t[-109.381226, 36.999148],\n\t\t\t\t\t\t[-109.378039, 36.999135],\n\t\t\t\t\t\t[-109.270097, 36.999266],\n\t\t\t\t\t\t[-109.268213, 36.999242],\n\t\t\t\t\t\t[-109.263390, 36.999263],\n\t\t\t\t\t\t[-109.246917, 36.999346],\n\t\t\t\t\t\t[-109.233848, 36.999266],\n\t\t\t\t\t\t[-109.181196, 36.999271],\n\t\t\t\t\t\t[-109.045223, 36.999084],\n\t\t\t\t\t\t[-109.045244, 36.969489],\n\t\t\t\t\t\t[-109.045272, 36.968871],\n\t\t\t\t\t\t[-109.045407, 36.874998],\n\t\t\t\t\t\t[-109.045433, 36.874589],\n\t\t\t\t\t\t[-109.045973, 36.002338]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US04007\",\n\t\t\t\t\"STATE\": \"04\",\n\t\t\t\t\"COUNTY\": \"007\",\n\t\t\t\t\"NAME\": \"Gila\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 4757.933000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-111.039905, 33.466104],\n\t\t\t\t\t\t[-111.153354, 33.677606],\n\t\t\t\t\t\t[-111.222055, 33.602446],\n\t\t\t\t\t\t[-111.262830, 33.623157],\n\t\t\t\t\t\t[-111.389444, 33.776663],\n\t\t\t\t\t\t[-111.372317, 33.823924],\n\t\t\t\t\t\t[-111.450904, 33.919877],\n\t\t\t\t\t\t[-111.433271, 33.983321],\n\t\t\t\t\t\t[-111.494778, 33.999817],\n\t\t\t\t\t\t[-111.477853, 34.151108],\n\t\t\t\t\t\t[-111.720728, 34.161704],\n\t\t\t\t\t\t[-111.659514, 34.386424],\n\t\t\t\t\t\t[-111.555124, 34.472196],\n\t\t\t\t\t\t[-111.502415, 34.498057],\n\t\t\t\t\t\t[-111.472046, 34.462265],\n\t\t\t\t\t\t[-111.550328, 34.419057],\n\t\t\t\t\t\t[-111.423066, 34.437225],\n\t\t\t\t\t\t[-111.427266, 34.386149],\n\t\t\t\t\t\t[-111.397229, 34.426062],\n\t\t\t\t\t\t[-111.250878, 34.453301],\n\t\t\t\t\t\t[-111.147094, 34.375185],\n\t\t\t\t\t\t[-111.096661, 34.396431],\n\t\t\t\t\t\t[-110.848059, 34.267205],\n\t\t\t\t\t\t[-110.788078, 34.309060],\n\t\t\t\t\t\t[-110.750678, 34.263314],\n\t\t\t\t\t\t[-110.750672, 34.000048],\n\t\t\t\t\t\t[-110.000660, 34.000046],\n\t\t\t\t\t\t[-110.000649, 33.576930],\n\t\t\t\t\t\t[-110.000646, 33.465916],\n\t\t\t\t\t\t[-110.340949, 33.427066],\n\t\t\t\t\t\t[-110.441544, 33.381670],\n\t\t\t\t\t\t[-110.457194, 33.295268],\n\t\t\t\t\t\t[-110.401536, 33.196612],\n\t\t\t\t\t\t[-110.449021, 33.194526],\n\t\t\t\t\t\t[-110.525952, 33.159198],\n\t\t\t\t\t\t[-110.678006, 33.111182],\n\t\t\t\t\t\t[-110.780811, 32.983722],\n\t\t\t\t\t\t[-110.946684, 33.250053],\n\t\t\t\t\t\t[-110.974706, 33.342095],\n\t\t\t\t\t\t[-111.039905, 33.466104]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US04019\",\n\t\t\t\t\"STATE\": \"04\",\n\t\t\t\t\"COUNTY\": \"019\",\n\t\t\t\t\"NAME\": \"Pima\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 9187.036000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-111.792534, 32.506779],\n\t\t\t\t\t\t[-111.270610, 32.501366],\n\t\t\t\t\t\t[-110.925567, 32.511391],\n\t\t\t\t\t\t[-110.844943, 32.511211],\n\t\t\t\t\t\t[-110.844923, 32.513767],\n\t\t\t\t\t\t[-110.785444, 32.513539],\n\t\t\t\t\t\t[-110.451221, 32.513807],\n\t\t\t\t\t\t[-110.451228, 32.504408],\n\t\t\t\t\t\t[-110.451503, 32.427354],\n\t\t\t\t\t\t[-110.451736, 31.731267],\n\t\t\t\t\t\t[-111.158299, 31.726007],\n\t\t\t\t\t\t[-111.164183, 31.725983],\n\t\t\t\t\t\t[-111.163995, 31.618687],\n\t\t\t\t\t\t[-111.163725, 31.521826],\n\t\t\t\t\t\t[-111.366613, 31.521291],\n\t\t\t\t\t\t[-111.366635, 31.425880],\n\t\t\t\t\t\t[-111.579530, 31.494095],\n\t\t\t\t\t\t[-112.246102, 31.704195],\n\t\t\t\t\t\t[-112.867074, 31.895488],\n\t\t\t\t\t\t[-113.125961, 31.972780],\n\t\t\t\t\t\t[-113.333794, 32.038521],\n\t\t\t\t\t\t[-113.333897, 32.504938],\n\t\t\t\t\t\t[-112.203719, 32.506760],\n\t\t\t\t\t\t[-111.792534, 32.506779]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05011\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"011\",\n\t\t\t\t\"NAME\": \"Bradley\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 649.231000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.975844, 33.704414],\n\t\t\t\t\t\t[-91.976080, 33.529687],\n\t\t\t\t\t\t[-92.007850, 33.529396],\n\t\t\t\t\t\t[-91.990167, 33.398214],\n\t\t\t\t\t\t[-91.977284, 33.302026],\n\t\t\t\t\t\t[-92.128464, 33.208775],\n\t\t\t\t\t\t[-92.137527, 33.162956],\n\t\t\t\t\t\t[-92.224060, 33.251782],\n\t\t\t\t\t\t[-92.350432, 33.298941],\n\t\t\t\t\t\t[-92.374467, 33.378650],\n\t\t\t\t\t\t[-92.311079, 33.499782],\n\t\t\t\t\t\t[-92.330839, 33.707806],\n\t\t\t\t\t\t[-91.975844, 33.704414]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05023\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"023\",\n\t\t\t\t\"NAME\": \"Cleburne\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 553.692000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.837179, 35.704932],\n\t\t\t\t\t\t[-91.789823, 35.711734],\n\t\t\t\t\t\t[-91.793958, 35.534114],\n\t\t\t\t\t\t[-91.795855, 35.455574],\n\t\t\t\t\t\t[-91.850144, 35.436442],\n\t\t\t\t\t\t[-91.851958, 35.358287],\n\t\t\t\t\t\t[-92.111463, 35.362725],\n\t\t\t\t\t\t[-92.252759, 35.363718],\n\t\t\t\t\t\t[-92.240520, 35.712190],\n\t\t\t\t\t\t[-91.837179, 35.704932]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05037\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"037\",\n\t\t\t\t\"NAME\": \"Cross\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 616.381000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.039783, 35.354256],\n\t\t\t\t\t\t[-91.039230, 35.444717],\n\t\t\t\t\t\t[-90.502429, 35.441726],\n\t\t\t\t\t\t[-90.502993, 35.144214],\n\t\t\t\t\t\t[-91.042670, 35.148189],\n\t\t\t\t\t\t[-91.039783, 35.354256]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05039\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"039\",\n\t\t\t\t\"NAME\": \"Dallas\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 667.386000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.336765, 34.059633],\n\t\t\t\t\t\t[-92.471667, 34.057054],\n\t\t\t\t\t\t[-92.475602, 33.972696],\n\t\t\t\t\t\t[-92.400798, 33.913560],\n\t\t\t\t\t\t[-92.334249, 33.795065],\n\t\t\t\t\t\t[-92.583054, 33.802198],\n\t\t\t\t\t\t[-92.893534, 33.809943],\n\t\t\t\t\t\t[-92.893140, 33.902751],\n\t\t\t\t\t\t[-92.961185, 33.974820],\n\t\t\t\t\t\t[-92.893116, 33.983284],\n\t\t\t\t\t\t[-92.886285, 34.155877],\n\t\t\t\t\t\t[-92.813986, 34.151660],\n\t\t\t\t\t\t[-92.678383, 34.149622],\n\t\t\t\t\t\t[-92.493672, 34.144234],\n\t\t\t\t\t\t[-92.336765, 34.059633]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05055\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"055\",\n\t\t\t\t\"NAME\": \"Greene\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 577.699000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.198735, 36.201382],\n\t\t\t\t\t\t[-90.220425, 36.184764],\n\t\t\t\t\t\t[-90.319168, 36.089976],\n\t\t\t\t\t\t[-90.364430, 36.013625],\n\t\t\t\t\t\t[-90.368718, 35.995812],\n\t\t\t\t\t\t[-90.387378, 35.964708],\n\t\t\t\t\t\t[-90.852064, 35.968092],\n\t\t\t\t\t\t[-90.820763, 36.079770],\n\t\t\t\t\t\t[-90.747425, 36.149116],\n\t\t\t\t\t\t[-90.809816, 36.149567],\n\t\t\t\t\t\t[-90.806615, 36.266865],\n\t\t\t\t\t\t[-90.319820, 36.259144],\n\t\t\t\t\t\t[-90.320960, 36.200575],\n\t\t\t\t\t\t[-90.198735, 36.201382]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05065\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"065\",\n\t\t\t\t\"NAME\": \"Izard\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 580.577000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.849448, 35.867411],\n\t\t\t\t\t\t[-91.953020, 35.931644],\n\t\t\t\t\t\t[-92.108622, 35.931328],\n\t\t\t\t\t\t[-92.063576, 36.024372],\n\t\t\t\t\t\t[-92.195430, 36.132798],\n\t\t\t\t\t\t[-92.156990, 36.261248],\n\t\t\t\t\t\t[-91.691435, 36.253301],\n\t\t\t\t\t\t[-91.682277, 36.000535],\n\t\t\t\t\t\t[-91.710552, 35.941759],\n\t\t\t\t\t\t[-91.753345, 35.942883],\n\t\t\t\t\t\t[-91.849448, 35.867411]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05079\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"079\",\n\t\t\t\t\"NAME\": \"Lincoln\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 561.517000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.445614, 34.080147],\n\t\t\t\t\t\t[-91.435887, 34.068440],\n\t\t\t\t\t\t[-91.434621, 34.052702],\n\t\t\t\t\t\t[-91.437131, 34.034663],\n\t\t\t\t\t\t[-91.431239, 34.020363],\n\t\t\t\t\t\t[-91.421715, 34.014472],\n\t\t\t\t\t\t[-91.548668, 33.976799],\n\t\t\t\t\t\t[-91.557648, 33.783384],\n\t\t\t\t\t\t[-91.663738, 33.792246],\n\t\t\t\t\t\t[-91.975974, 33.791787],\n\t\t\t\t\t\t[-91.976439, 33.977297],\n\t\t\t\t\t\t[-91.953799, 34.064141],\n\t\t\t\t\t\t[-91.953629, 34.093380],\n\t\t\t\t\t\t[-91.744990, 34.094021],\n\t\t\t\t\t\t[-91.727276, 34.174093],\n\t\t\t\t\t\t[-91.445614, 34.080147]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29099\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"099\",\n\t\t\t\t\"NAME\": \"Jefferson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 656.629000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.736319, 38.466645],\n\t\t\t\t\t\t[-90.591123, 38.501652],\n\t\t\t\t\t\t[-90.405262, 38.501153],\n\t\t\t\t\t\t[-90.376841, 38.452861],\n\t\t\t\t\t\t[-90.340297, 38.386998],\n\t\t\t\t\t\t[-90.346118, 38.381853],\n\t\t\t\t\t\t[-90.350918, 38.375053],\n\t\t\t\t\t\t[-90.370819, 38.333554],\n\t\t\t\t\t\t[-90.372519, 38.323354],\n\t\t\t\t\t\t[-90.373929, 38.281853],\n\t\t\t\t\t\t[-90.363926, 38.236355],\n\t\t\t\t\t\t[-90.353902, 38.213855],\n\t\t\t\t\t\t[-90.334258, 38.189932],\n\t\t\t\t\t\t[-90.254112, 38.121990],\n\t\t\t\t\t\t[-90.416022, 38.042315],\n\t\t\t\t\t\t[-90.583324, 38.003499],\n\t\t\t\t\t\t[-90.639980, 38.076548],\n\t\t\t\t\t\t[-90.780185, 38.204112],\n\t\t\t\t\t\t[-90.737599, 38.415897],\n\t\t\t\t\t\t[-90.736319, 38.466645]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29115\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"115\",\n\t\t\t\t\"NAME\": \"Linn\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 615.564000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.266968, 39.703562],\n\t\t\t\t\t\t[-93.364808, 39.703803],\n\t\t\t\t\t\t[-93.361957, 39.967606],\n\t\t\t\t\t\t[-93.361951, 40.033098],\n\t\t\t\t\t\t[-92.856191, 40.037253],\n\t\t\t\t\t\t[-92.847477, 40.037301],\n\t\t\t\t\t\t[-92.857920, 39.699985],\n\t\t\t\t\t\t[-93.082799, 39.706709],\n\t\t\t\t\t\t[-93.266968, 39.703562]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29121\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"121\",\n\t\t\t\t\"NAME\": \"Macon\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 801.227000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.345064, 40.037210],\n\t\t\t\t\t\t[-92.344708, 39.953297],\n\t\t\t\t\t\t[-92.287882, 39.952490],\n\t\t\t\t\t\t[-92.299316, 39.605344],\n\t\t\t\t\t\t[-92.300871, 39.605348],\n\t\t\t\t\t\t[-92.692149, 39.610265],\n\t\t\t\t\t\t[-92.689331, 39.698094],\n\t\t\t\t\t\t[-92.857920, 39.699985],\n\t\t\t\t\t\t[-92.847477, 40.037301],\n\t\t\t\t\t\t[-92.345064, 40.037210]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29135\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"135\",\n\t\t\t\t\"NAME\": \"Moniteau\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 415.025000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.495185, 38.427829],\n\t\t\t\t\t\t[-92.623858, 38.430639],\n\t\t\t\t\t\t[-92.625189, 38.430778],\n\t\t\t\t\t\t[-92.841871, 38.596792],\n\t\t\t\t\t\t[-92.839837, 38.683974],\n\t\t\t\t\t\t[-92.617147, 38.680013],\n\t\t\t\t\t\t[-92.498377, 38.922084],\n\t\t\t\t\t\t[-92.379614, 38.800076],\n\t\t\t\t\t\t[-92.394866, 38.739130],\n\t\t\t\t\t\t[-92.495185, 38.427829]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29145\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"145\",\n\t\t\t\t\"NAME\": \"Newton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 624.765000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.068898, 36.747818],\n\t\t\t\t\t\t[-94.618307, 36.766560],\n\t\t\t\t\t\t[-94.618380, 36.847320],\n\t\t\t\t\t\t[-94.618658, 36.880064],\n\t\t\t\t\t\t[-94.618243, 36.897027],\n\t\t\t\t\t\t[-94.618282, 36.911472],\n\t\t\t\t\t\t[-94.618207, 36.926236],\n\t\t\t\t\t\t[-94.618295, 36.929647],\n\t\t\t\t\t\t[-94.618166, 36.937584],\n\t\t\t\t\t\t[-94.618109, 36.946564],\n\t\t\t\t\t\t[-94.618026, 36.950158],\n\t\t\t\t\t\t[-94.618031, 36.994704],\n\t\t\t\t\t\t[-94.618049, 36.996208],\n\t\t\t\t\t\t[-94.618080, 36.998135],\n\t\t\t\t\t\t[-94.617995, 37.009016],\n\t\t\t\t\t\t[-94.617965, 37.040537],\n\t\t\t\t\t\t[-94.617875, 37.056797],\n\t\t\t\t\t\t[-94.059211, 37.048127],\n\t\t\t\t\t\t[-94.062740, 36.931775],\n\t\t\t\t\t\t[-94.068898, 36.747818]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29163\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"163\",\n\t\t\t\t\"NAME\": \"Pike\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 670.438000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.260232, 39.139845],\n\t\t\t\t\t\t[-91.409033, 39.142542],\n\t\t\t\t\t\t[-91.438235, 39.318716],\n\t\t\t\t\t\t[-91.460442, 39.450722],\n\t\t\t\t\t\t[-91.178012, 39.598196],\n\t\t\t\t\t\t[-91.168419, 39.564928],\n\t\t\t\t\t\t[-91.158606, 39.553048],\n\t\t\t\t\t\t[-91.042351, 39.452062],\n\t\t\t\t\t\t[-90.993789, 39.422959],\n\t\t\t\t\t\t[-90.939983, 39.393555],\n\t\t\t\t\t\t[-90.882706, 39.362254],\n\t\t\t\t\t\t[-90.842175, 39.341932],\n\t\t\t\t\t\t[-90.799346, 39.313087],\n\t\t\t\t\t\t[-90.729960, 39.255894],\n\t\t\t\t\t\t[-90.726981, 39.251173],\n\t\t\t\t\t\t[-90.718996, 39.224973],\n\t\t\t\t\t\t[-91.182942, 39.227233],\n\t\t\t\t\t\t[-91.185460, 39.139050],\n\t\t\t\t\t\t[-91.260232, 39.139845]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29173\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"173\",\n\t\t\t\t\"NAME\": \"Ralls\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 469.781000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.715247, 39.657644],\n\t\t\t\t\t\t[-91.715497, 39.686492],\n\t\t\t\t\t\t[-91.313162, 39.684907],\n\t\t\t\t\t\t[-91.229317, 39.620853],\n\t\t\t\t\t\t[-91.178012, 39.598196],\n\t\t\t\t\t\t[-91.460442, 39.450722],\n\t\t\t\t\t\t[-91.438235, 39.318716],\n\t\t\t\t\t\t[-91.718467, 39.324505],\n\t\t\t\t\t\t[-91.717968, 39.339122],\n\t\t\t\t\t\t[-91.715247, 39.657644]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29185\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"185\",\n\t\t\t\t\"NAME\": \"St. Clair\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 669.983000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.049895, 38.213985],\n\t\t\t\t\t\t[-93.523484, 38.207216],\n\t\t\t\t\t\t[-93.504025, 38.071757],\n\t\t\t\t\t\t[-93.512103, 37.913535],\n\t\t\t\t\t\t[-93.568709, 37.914918],\n\t\t\t\t\t\t[-93.573202, 37.828035],\n\t\t\t\t\t\t[-93.628404, 37.829435],\n\t\t\t\t\t\t[-93.811402, 37.834571],\n\t\t\t\t\t\t[-93.808648, 37.892775],\n\t\t\t\t\t\t[-94.065675, 37.900987],\n\t\t\t\t\t\t[-94.058285, 38.036627],\n\t\t\t\t\t\t[-94.049895, 38.213985]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29201\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"201\",\n\t\t\t\t\"NAME\": \"Scott\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 419.990000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.691603, 36.859517],\n\t\t\t\t\t\t[-89.686620, 36.928293],\n\t\t\t\t\t\t[-89.786819, 37.087824],\n\t\t\t\t\t\t[-89.765211, 37.126066],\n\t\t\t\t\t\t[-89.620256, 37.233008],\n\t\t\t\t\t\t[-89.491222, 37.248629],\n\t\t\t\t\t\t[-89.467631, 37.218200],\n\t\t\t\t\t\t[-89.414471, 37.125050],\n\t\t\t\t\t\t[-89.385434, 37.055130],\n\t\t\t\t\t\t[-89.383937, 37.046441],\n\t\t\t\t\t\t[-89.378277, 37.039605],\n\t\t\t\t\t\t[-89.322733, 37.009033],\n\t\t\t\t\t\t[-89.465393, 36.935729],\n\t\t\t\t\t\t[-89.519809, 36.869617],\n\t\t\t\t\t\t[-89.691603, 36.859517]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29215\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"215\",\n\t\t\t\t\"NAME\": \"Texas\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1177.266000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.252261, 37.472944],\n\t\t\t\t\t\t[-92.249463, 37.604543],\n\t\t\t\t\t\t[-92.029258, 37.602542],\n\t\t\t\t\t\t[-91.809105, 37.598863],\n\t\t\t\t\t\t[-91.754795, 37.598768],\n\t\t\t\t\t\t[-91.755040, 37.424110],\n\t\t\t\t\t\t[-91.646626, 37.422731],\n\t\t\t\t\t\t[-91.655607, 37.048925],\n\t\t\t\t\t\t[-92.088708, 37.056248],\n\t\t\t\t\t\t[-92.250160, 37.059753],\n\t\t\t\t\t\t[-92.251359, 37.059653],\n\t\t\t\t\t\t[-92.252261, 37.472944]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29223\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"223\",\n\t\t\t\t\"NAME\": \"Wayne\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 759.176000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.258563, 36.922043],\n\t\t\t\t\t\t[-90.678562, 36.926490],\n\t\t\t\t\t\t[-90.779553, 37.050324],\n\t\t\t\t\t\t[-90.737146, 37.166413],\n\t\t\t\t\t\t[-90.735453, 37.271040],\n\t\t\t\t\t\t[-90.550603, 37.272608],\n\t\t\t\t\t\t[-90.549729, 37.317594],\n\t\t\t\t\t\t[-90.217657, 37.314967],\n\t\t\t\t\t\t[-90.223230, 37.086533],\n\t\t\t\t\t\t[-90.110354, 37.085871],\n\t\t\t\t\t\t[-90.111247, 37.041205],\n\t\t\t\t\t\t[-90.258563, 36.922043]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30007\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"007\",\n\t\t\t\t\"NAME\": \"Broadwater\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1192.541000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-111.659995, 45.833512],\n\t\t\t\t\t\t[-111.660441, 46.049449],\n\t\t\t\t\t\t[-111.784333, 46.050004],\n\t\t\t\t\t\t[-111.787875, 46.568998],\n\t\t\t\t\t\t[-111.631643, 46.569108],\n\t\t\t\t\t\t[-111.639261, 46.738180],\n\t\t\t\t\t\t[-111.497961, 46.762469],\n\t\t\t\t\t\t[-111.412842, 46.646878],\n\t\t\t\t\t\t[-111.330541, 46.633458],\n\t\t\t\t\t\t[-111.344970, 46.545832],\n\t\t\t\t\t\t[-111.276801, 46.516821],\n\t\t\t\t\t\t[-111.246288, 46.437997],\n\t\t\t\t\t\t[-111.126362, 46.441322],\n\t\t\t\t\t\t[-111.057211, 46.403450],\n\t\t\t\t\t\t[-111.127070, 46.273754],\n\t\t\t\t\t\t[-111.062560, 46.192897],\n\t\t\t\t\t\t[-111.346460, 46.188102],\n\t\t\t\t\t\t[-111.415802, 46.001785],\n\t\t\t\t\t\t[-111.659995, 45.833512]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30021\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"021\",\n\t\t\t\t\"NAME\": \"Dawson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2371.865000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-104.603766, 46.860880],\n\t\t\t\t\t\t[-105.027522, 46.861490],\n\t\t\t\t\t\t[-105.069484, 46.919128],\n\t\t\t\t\t\t[-105.196945, 46.919179],\n\t\t\t\t\t\t[-105.196735, 46.977172],\n\t\t\t\t\t\t[-105.324898, 46.977161],\n\t\t\t\t\t\t[-105.324817, 47.181586],\n\t\t\t\t\t\t[-105.406237, 47.181563],\n\t\t\t\t\t\t[-105.406511, 47.529214],\n\t\t\t\t\t\t[-105.363449, 47.529400],\n\t\t\t\t\t\t[-105.362992, 47.790420],\n\t\t\t\t\t\t[-105.234619, 47.790760],\n\t\t\t\t\t\t[-105.234880, 47.703634],\n\t\t\t\t\t\t[-104.978000, 47.703374],\n\t\t\t\t\t\t[-104.978516, 47.616288],\n\t\t\t\t\t\t[-104.593630, 47.615951],\n\t\t\t\t\t\t[-104.593811, 47.528966],\n\t\t\t\t\t\t[-104.512883, 47.529252],\n\t\t\t\t\t\t[-104.513279, 47.354718],\n\t\t\t\t\t\t[-104.420263, 47.354596],\n\t\t\t\t\t\t[-104.451518, 47.318417],\n\t\t\t\t\t\t[-104.341603, 47.245598],\n\t\t\t\t\t\t[-104.305564, 47.042311],\n\t\t\t\t\t\t[-104.369228, 46.947439],\n\t\t\t\t\t\t[-104.496529, 46.860910],\n\t\t\t\t\t\t[-104.603766, 46.860880]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30031\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"031\",\n\t\t\t\t\"NAME\": \"Gallatin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2602.689000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-111.044275, 45.001345],\n\t\t\t\t\t\t[-111.056207, 44.935901],\n\t\t\t\t\t\t[-111.055629, 44.933578],\n\t\t\t\t\t\t[-111.056888, 44.866658],\n\t\t\t\t\t\t[-111.055495, 44.666262],\n\t\t\t\t\t\t[-111.055208, 44.624927],\n\t\t\t\t\t\t[-111.048974, 44.474072],\n\t\t\t\t\t\t[-111.106574, 44.486330],\n\t\t\t\t\t\t[-111.122654, 44.493659],\n\t\t\t\t\t\t[-111.131379, 44.499925],\n\t\t\t\t\t\t[-111.139455, 44.517112],\n\t\t\t\t\t\t[-111.219236, 44.622616],\n\t\t\t\t\t\t[-111.323669, 44.724474],\n\t\t\t\t\t\t[-111.377682, 44.751744],\n\t\t\t\t\t\t[-111.351346, 45.641938],\n\t\t\t\t\t\t[-111.536614, 45.642131],\n\t\t\t\t\t\t[-111.536816, 45.656736],\n\t\t\t\t\t\t[-111.805134, 45.798018],\n\t\t\t\t\t\t[-111.659995, 45.833512],\n\t\t\t\t\t\t[-111.415802, 46.001785],\n\t\t\t\t\t\t[-111.346460, 46.188102],\n\t\t\t\t\t\t[-111.062560, 46.192897],\n\t\t\t\t\t\t[-110.790022, 46.192567],\n\t\t\t\t\t\t[-110.783982, 46.192408],\n\t\t\t\t\t\t[-110.790447, 46.142024],\n\t\t\t\t\t\t[-110.794977, 45.590289],\n\t\t\t\t\t\t[-110.857054, 45.590872],\n\t\t\t\t\t\t[-110.858228, 45.525089],\n\t\t\t\t\t\t[-110.919212, 45.525338],\n\t\t\t\t\t\t[-110.917661, 45.351328],\n\t\t\t\t\t\t[-111.038168, 45.351174],\n\t\t\t\t\t\t[-111.044275, 45.001345]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46091\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"091\",\n\t\t\t\t\"NAME\": \"Marshall\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 838.066000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.978778, 45.935937],\n\t\t\t\t\t\t[-97.958718, 45.935878],\n\t\t\t\t\t\t[-97.784575, 45.935327],\n\t\t\t\t\t\t[-97.777040, 45.935393],\n\t\t\t\t\t\t[-97.696691, 45.935352],\n\t\t\t\t\t\t[-97.542598, 45.935258],\n\t\t\t\t\t\t[-97.519035, 45.935304],\n\t\t\t\t\t\t[-97.518944, 45.935304],\n\t\t\t\t\t\t[-97.491892, 45.935111],\n\t\t\t\t\t\t[-97.481967, 45.935138],\n\t\t\t\t\t\t[-97.318899, 45.935054],\n\t\t\t\t\t\t[-97.312184, 45.935077],\n\t\t\t\t\t\t[-97.228323, 45.935141],\n\t\t\t\t\t\t[-97.228304, 45.935141],\n\t\t\t\t\t\t[-97.227089, 45.558158],\n\t\t\t\t\t\t[-97.373366, 45.587634],\n\t\t\t\t\t\t[-97.979592, 45.588483],\n\t\t\t\t\t\t[-97.978778, 45.935937]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46107\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"107\",\n\t\t\t\t\"NAME\": \"Potter\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 861.140000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.673050, 44.897492],\n\t\t\t\t\t\t[-100.404753, 44.897695],\n\t\t\t\t\t\t[-100.391818, 45.026006],\n\t\t\t\t\t\t[-100.280344, 45.018409],\n\t\t\t\t\t\t[-100.325451, 45.099337],\n\t\t\t\t\t\t[-100.260223, 45.246810],\n\t\t\t\t\t\t[-99.708987, 45.245866],\n\t\t\t\t\t\t[-99.573445, 45.245364],\n\t\t\t\t\t\t[-99.572699, 44.897263],\n\t\t\t\t\t\t[-99.673050, 44.897492]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46119\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"119\",\n\t\t\t\t\"NAME\": \"Sully\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1006.817000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.676398, 44.548111],\n\t\t\t\t\t\t[-100.526498, 44.547422],\n\t\t\t\t\t\t[-100.640061, 44.583723],\n\t\t\t\t\t\t[-100.613805, 44.707135],\n\t\t\t\t\t\t[-100.717644, 44.770930],\n\t\t\t\t\t\t[-100.676387, 44.823162],\n\t\t\t\t\t\t[-100.543484, 44.761087],\n\t\t\t\t\t\t[-100.418682, 44.843366],\n\t\t\t\t\t\t[-100.404753, 44.897695],\n\t\t\t\t\t\t[-99.673050, 44.897492],\n\t\t\t\t\t\t[-99.676398, 44.548111]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46129\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"129\",\n\t\t\t\t\"NAME\": \"Walworth\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 708.630000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.260223, 45.246810],\n\t\t\t\t\t\t[-100.316659, 45.317904],\n\t\t\t\t\t\t[-100.274176, 45.381845],\n\t\t\t\t\t\t[-100.341924, 45.472904],\n\t\t\t\t\t\t[-100.486561, 45.536521],\n\t\t\t\t\t\t[-100.430079, 45.594823],\n\t\t\t\t\t\t[-99.717466, 45.593428],\n\t\t\t\t\t\t[-99.707705, 45.593391],\n\t\t\t\t\t\t[-99.708987, 45.245866],\n\t\t\t\t\t\t[-100.260223, 45.246810]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40057\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"057\",\n\t\t\t\t\"NAME\": \"Harmon\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 537.194000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.000381, 34.746358],\n\t\t\t\t\t\t[-100.000381, 34.746461],\n\t\t\t\t\t\t[-100.000384, 35.030385],\n\t\t\t\t\t\t[-99.888571, 35.030262],\n\t\t\t\t\t\t[-99.888425, 34.943946],\n\t\t\t\t\t\t[-99.731092, 34.944058],\n\t\t\t\t\t\t[-99.720066, 34.768450],\n\t\t\t\t\t\t[-99.666849, 34.724555],\n\t\t\t\t\t\t[-99.666512, 34.507121],\n\t\t\t\t\t\t[-99.846399, 34.505045],\n\t\t\t\t\t\t[-99.864922, 34.523018],\n\t\t\t\t\t\t[-99.872357, 34.532096],\n\t\t\t\t\t\t[-99.874403, 34.537095],\n\t\t\t\t\t\t[-99.884842, 34.546953],\n\t\t\t\t\t\t[-99.923211, 34.574552],\n\t\t\t\t\t\t[-99.945720, 34.579273],\n\t\t\t\t\t\t[-99.954567, 34.578195],\n\t\t\t\t\t\t[-99.997853, 34.561485],\n\t\t\t\t\t\t[-100.000381, 34.560509],\n\t\t\t\t\t\t[-100.000381, 34.746358]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40061\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"061\",\n\t\t\t\t\"NAME\": \"Haskell\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 576.521000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.349233, 35.058514],\n\t\t\t\t\t\t[-95.349339, 35.160296],\n\t\t\t\t\t\t[-95.454954, 35.160577],\n\t\t\t\t\t\t[-95.451250, 35.296019],\n\t\t\t\t\t\t[-95.344650, 35.293097],\n\t\t\t\t\t\t[-95.243809, 35.261636],\n\t\t\t\t\t\t[-95.170462, 35.310106],\n\t\t\t\t\t\t[-95.049933, 35.458894],\n\t\t\t\t\t\t[-94.901832, 35.397940],\n\t\t\t\t\t\t[-94.911917, 35.346651],\n\t\t\t\t\t\t[-94.813629, 35.323344],\n\t\t\t\t\t\t[-94.814284, 35.202331],\n\t\t\t\t\t\t[-94.927936, 35.202611],\n\t\t\t\t\t\t[-94.927863, 35.058279],\n\t\t\t\t\t\t[-95.349233, 35.058514]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40069\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"069\",\n\t\t\t\t\"NAME\": \"Johnston\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 642.940000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.407330, 34.418391],\n\t\t\t\t\t\t[-96.407640, 34.157317],\n\t\t\t\t\t\t[-96.453839, 34.114406],\n\t\t\t\t\t\t[-96.585355, 34.114459],\n\t\t\t\t\t\t[-96.669965, 34.172254],\n\t\t\t\t\t\t[-96.933671, 34.172553],\n\t\t\t\t\t\t[-96.933457, 34.332661],\n\t\t\t\t\t\t[-96.881005, 34.332977],\n\t\t\t\t\t\t[-96.880814, 34.506053],\n\t\t\t\t\t\t[-96.827288, 34.505989],\n\t\t\t\t\t\t[-96.513865, 34.505389],\n\t\t\t\t\t\t[-96.513786, 34.419569],\n\t\t\t\t\t\t[-96.407330, 34.418391]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40075\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"075\",\n\t\t\t\t\"NAME\": \"Kiowa\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1015.226000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.621054, 35.097352],\n\t\t\t\t\t\t[-98.619816, 34.854953],\n\t\t\t\t\t\t[-98.826124, 34.855466],\n\t\t\t\t\t\t[-98.826008, 34.594413],\n\t\t\t\t\t\t[-99.001107, 34.594366],\n\t\t\t\t\t\t[-99.001025, 34.637872],\n\t\t\t\t\t\t[-99.103150, 34.637950],\n\t\t\t\t\t\t[-99.052511, 34.701557],\n\t\t\t\t\t\t[-99.149114, 34.702352],\n\t\t\t\t\t\t[-99.147265, 34.850389],\n\t\t\t\t\t\t[-99.246462, 34.822114],\n\t\t\t\t\t\t[-99.306220, 34.857632],\n\t\t\t\t\t\t[-99.327788, 35.041697],\n\t\t\t\t\t\t[-99.409291, 35.114509],\n\t\t\t\t\t\t[-99.409268, 35.116493],\n\t\t\t\t\t\t[-99.360226, 35.116738],\n\t\t\t\t\t\t[-98.750344, 35.116343],\n\t\t\t\t\t\t[-98.621054, 35.097352]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40093\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"093\",\n\t\t\t\t\"NAME\": \"Major\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 954.988000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.636899, 36.164894],\n\t\t\t\t\t\t[-98.955849, 36.161577],\n\t\t\t\t\t\t[-98.960334, 36.506914],\n\t\t\t\t\t\t[-98.843646, 36.506248],\n\t\t\t\t\t\t[-98.807820, 36.460744],\n\t\t\t\t\t\t[-98.625361, 36.392595],\n\t\t\t\t\t\t[-98.533550, 36.397592],\n\t\t\t\t\t\t[-98.533617, 36.463230],\n\t\t\t\t\t\t[-98.104427, 36.463105],\n\t\t\t\t\t\t[-98.103904, 36.164877],\n\t\t\t\t\t\t[-98.210544, 36.164890],\n\t\t\t\t\t\t[-98.601244, 36.165771],\n\t\t\t\t\t\t[-98.636899, 36.164894]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40103\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"103\",\n\t\t\t\t\"NAME\": \"Noble\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 731.895000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.925069, 36.246474],\n\t\t\t\t\t\t[-97.140968, 36.246435],\n\t\t\t\t\t\t[-97.140668, 36.159231],\n\t\t\t\t\t\t[-97.354132, 36.159072],\n\t\t\t\t\t\t[-97.353946, 36.164304],\n\t\t\t\t\t\t[-97.460792, 36.164462],\n\t\t\t\t\t\t[-97.461603, 36.593637],\n\t\t\t\t\t\t[-97.057414, 36.593647],\n\t\t\t\t\t\t[-96.912756, 36.598949],\n\t\t\t\t\t\t[-96.902643, 36.551388],\n\t\t\t\t\t\t[-97.009785, 36.506935],\n\t\t\t\t\t\t[-97.032106, 36.333354],\n\t\t\t\t\t\t[-96.924936, 36.333344],\n\t\t\t\t\t\t[-96.925069, 36.246474]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40115\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"115\",\n\t\t\t\t\"NAME\": \"Ottawa\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 470.821000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.007620, 36.999514],\n\t\t\t\t\t\t[-94.995293, 36.999529],\n\t\t\t\t\t\t[-94.853197, 36.998874],\n\t\t\t\t\t\t[-94.849801, 36.998876],\n\t\t\t\t\t\t[-94.840926, 36.998833],\n\t\t\t\t\t\t[-94.831280, 36.998812],\n\t\t\t\t\t\t[-94.777257, 36.998764],\n\t\t\t\t\t\t[-94.739324, 36.998687],\n\t\t\t\t\t\t[-94.737183, 36.998665],\n\t\t\t\t\t\t[-94.712770, 36.998794],\n\t\t\t\t\t\t[-94.701797, 36.998814],\n\t\t\t\t\t\t[-94.699735, 36.998805],\n\t\t\t\t\t\t[-94.618080, 36.998135],\n\t\t\t\t\t\t[-94.618049, 36.996208],\n\t\t\t\t\t\t[-94.618031, 36.994704],\n\t\t\t\t\t\t[-94.618026, 36.950158],\n\t\t\t\t\t\t[-94.618109, 36.946564],\n\t\t\t\t\t\t[-94.618166, 36.937584],\n\t\t\t\t\t\t[-94.618295, 36.929647],\n\t\t\t\t\t\t[-94.618207, 36.926236],\n\t\t\t\t\t\t[-94.618282, 36.911472],\n\t\t\t\t\t\t[-94.618243, 36.897027],\n\t\t\t\t\t\t[-94.618658, 36.880064],\n\t\t\t\t\t\t[-94.618380, 36.847320],\n\t\t\t\t\t\t[-94.618307, 36.766560],\n\t\t\t\t\t\t[-94.618130, 36.701423],\n\t\t\t\t\t\t[-94.618025, 36.669430],\n\t\t\t\t\t\t[-94.618019, 36.667921],\n\t\t\t\t\t\t[-94.999403, 36.670631],\n\t\t\t\t\t\t[-95.007620, 36.999514]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40133\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"133\",\n\t\t\t\t\"NAME\": \"Seminole\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 632.837000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.623699, 35.400722],\n\t\t\t\t\t\t[-96.536718, 35.390772],\n\t\t\t\t\t\t[-96.441290, 35.467712],\n\t\t\t\t\t\t[-96.441368, 35.290122],\n\t\t\t\t\t\t[-96.441401, 35.115770],\n\t\t\t\t\t\t[-96.490434, 35.115858],\n\t\t\t\t\t\t[-96.490786, 34.910585],\n\t\t\t\t\t\t[-96.556889, 34.914184],\n\t\t\t\t\t\t[-96.722891, 34.856782],\n\t\t\t\t\t\t[-96.775681, 34.899958],\n\t\t\t\t\t\t[-96.776707, 35.411372],\n\t\t\t\t\t\t[-96.623699, 35.400722]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40141\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"141\",\n\t\t\t\t\"NAME\": \"Tillman\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 871.134000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.952527, 34.195621],\n\t\t\t\t\t\t[-98.966743, 34.201185],\n\t\t\t\t\t\t[-99.060344, 34.204761],\n\t\t\t\t\t\t[-99.119204, 34.201747],\n\t\t\t\t\t\t[-99.157114, 34.207414],\n\t\t\t\t\t\t[-99.190890, 34.215251],\n\t\t\t\t\t\t[-99.211648, 34.292232],\n\t\t\t\t\t\t[-99.211600, 34.313970],\n\t\t\t\t\t\t[-99.209724, 34.324935],\n\t\t\t\t\t\t[-99.211396, 34.337688],\n\t\t\t\t\t\t[-99.220707, 34.494484],\n\t\t\t\t\t\t[-99.103150, 34.637950],\n\t\t\t\t\t\t[-99.001025, 34.637872],\n\t\t\t\t\t\t[-99.001107, 34.594366],\n\t\t\t\t\t\t[-98.826008, 34.594413],\n\t\t\t\t\t\t[-98.826070, 34.507370],\n\t\t\t\t\t\t[-98.661982, 34.507460],\n\t\t\t\t\t\t[-98.661956, 34.405948],\n\t\t\t\t\t\t[-98.609660, 34.333720],\n\t\t\t\t\t\t[-98.610112, 34.161039],\n\t\t\t\t\t\t[-98.637575, 34.162284],\n\t\t\t\t\t\t[-98.652347, 34.161029],\n\t\t\t\t\t\t[-98.665824, 34.151617],\n\t\t\t\t\t\t[-98.700182, 34.135995],\n\t\t\t\t\t\t[-98.765570, 34.136376],\n\t\t\t\t\t\t[-98.858419, 34.152732],\n\t\t\t\t\t\t[-98.920042, 34.182908],\n\t\t\t\t\t\t[-98.952527, 34.195621]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US41009\",\n\t\t\t\t\"STATE\": \"41\",\n\t\t\t\t\"COUNTY\": \"009\",\n\t\t\t\t\"NAME\": \"Columbia\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 657.357000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-123.213054, 46.172541],\n\t\t\t\t\t\t[-123.166414, 46.188973],\n\t\t\t\t\t\t[-123.115904, 46.185268],\n\t\t\t\t\t\t[-122.904119, 46.083734],\n\t\t\t\t\t\t[-122.884478, 46.060280],\n\t\t\t\t\t\t[-122.813998, 45.960984],\n\t\t\t\t\t\t[-122.785026, 45.867699],\n\t\t\t\t\t\t[-122.785515, 45.850536],\n\t\t\t\t\t\t[-122.795963, 45.825024],\n\t\t\t\t\t\t[-122.795605, 45.810000],\n\t\t\t\t\t\t[-122.769532, 45.780583],\n\t\t\t\t\t\t[-122.761451, 45.759163],\n\t\t\t\t\t\t[-122.760108, 45.734413],\n\t\t\t\t\t\t[-122.762182, 45.728598],\n\t\t\t\t\t\t[-122.928961, 45.721502],\n\t\t\t\t\t\t[-123.030996, 45.779199],\n\t\t\t\t\t\t[-123.360962, 45.779669],\n\t\t\t\t\t\t[-123.363638, 46.146241],\n\t\t\t\t\t\t[-123.280166, 46.144843],\n\t\t\t\t\t\t[-123.213054, 46.172541]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06067\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"067\",\n\t\t\t\t\"NAME\": \"Sacramento\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 964.644000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-121.242795, 38.718241],\n\t\t\t\t\t\t[-121.188571, 38.714308],\n\t\t\t\t\t\t[-121.151857, 38.711502],\n\t\t\t\t\t\t[-121.141009, 38.711980],\n\t\t\t\t\t\t[-121.133264, 38.705427],\n\t\t\t\t\t\t[-121.118617, 38.717118],\n\t\t\t\t\t\t[-121.027507, 38.508292],\n\t\t\t\t\t\t[-121.027084, 38.300252],\n\t\t\t\t\t\t[-121.344024, 38.228260],\n\t\t\t\t\t\t[-121.484317, 38.241509],\n\t\t\t\t\t\t[-121.580022, 38.094414],\n\t\t\t\t\t\t[-121.679265, 38.089319],\n\t\t\t\t\t\t[-121.737824, 38.026630],\n\t\t\t\t\t\t[-121.862462, 38.066030],\n\t\t\t\t\t\t[-121.713926, 38.084542],\n\t\t\t\t\t\t[-121.688233, 38.145421],\n\t\t\t\t\t\t[-121.602763, 38.230219],\n\t\t\t\t\t\t[-121.603208, 38.237283],\n\t\t\t\t\t\t[-121.602121, 38.241674],\n\t\t\t\t\t\t[-121.601993, 38.252426],\n\t\t\t\t\t\t[-121.600249, 38.257817],\n\t\t\t\t\t\t[-121.604010, 38.270103],\n\t\t\t\t\t\t[-121.600730, 38.278375],\n\t\t\t\t\t\t[-121.605258, 38.295352],\n\t\t\t\t\t\t[-121.593273, 38.313089],\n\t\t\t\t\t\t[-121.521641, 38.360104],\n\t\t\t\t\t\t[-121.504139, 38.466563],\n\t\t\t\t\t\t[-121.538766, 38.474707],\n\t\t\t\t\t\t[-121.559167, 38.498007],\n\t\t\t\t\t\t[-121.511290, 38.546290],\n\t\t\t\t\t\t[-121.520965, 38.566205],\n\t\t\t\t\t\t[-121.506269, 38.586305],\n\t\t\t\t\t\t[-121.527667, 38.604604],\n\t\t\t\t\t\t[-121.549869, 38.599405],\n\t\t\t\t\t\t[-121.576068, 38.648604],\n\t\t\t\t\t\t[-121.594069, 38.644106],\n\t\t\t\t\t\t[-121.625760, 38.673133],\n\t\t\t\t\t\t[-121.630446, 38.697571],\n\t\t\t\t\t\t[-121.605774, 38.718319],\n\t\t\t\t\t\t[-121.602894, 38.735838],\n\t\t\t\t\t\t[-121.521767, 38.736401],\n\t\t\t\t\t\t[-121.484396, 38.734598],\n\t\t\t\t\t\t[-121.242795, 38.718241]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06071\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"071\",\n\t\t\t\t\"NAME\": \"San Bernardino\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 20056.938000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-115.648029, 35.809629],\n\t\t\t\t\t\t[-115.647683, 35.809358],\n\t\t\t\t\t\t[-115.647202, 35.808995],\n\t\t\t\t\t\t[-115.406079, 35.618613],\n\t\t\t\t\t\t[-115.404537, 35.617605],\n\t\t\t\t\t\t[-115.393996, 35.609344],\n\t\t\t\t\t\t[-115.391535, 35.607271],\n\t\t\t\t\t\t[-115.388866, 35.605171],\n\t\t\t\t\t\t[-115.303743, 35.538207],\n\t\t\t\t\t\t[-115.271342, 35.512660],\n\t\t\t\t\t\t[-115.225273, 35.475907],\n\t\t\t\t\t\t[-115.160599, 35.424313],\n\t\t\t\t\t\t[-115.160068, 35.424129],\n\t\t\t\t\t\t[-115.146788, 35.413662],\n\t\t\t\t\t\t[-115.145813, 35.413182],\n\t\t\t\t\t\t[-114.925480, 35.237054],\n\t\t\t\t\t\t[-114.925381, 35.237039],\n\t\t\t\t\t\t[-114.805030, 35.140284],\n\t\t\t\t\t\t[-114.804249, 35.139689],\n\t\t\t\t\t\t[-114.633013, 35.002085],\n\t\t\t\t\t\t[-114.629190, 34.991887],\n\t\t\t\t\t\t[-114.629015, 34.986148],\n\t\t\t\t\t\t[-114.630877, 34.907263],\n\t\t\t\t\t\t[-114.636725, 34.889107],\n\t\t\t\t\t\t[-114.635176, 34.875003],\n\t\t\t\t\t\t[-114.633051, 34.869971],\n\t\t\t\t\t\t[-114.552682, 34.766871],\n\t\t\t\t\t\t[-114.465607, 34.692260],\n\t\t\t\t\t\t[-114.452547, 34.653494],\n\t\t\t\t\t\t[-114.339627, 34.451435],\n\t\t\t\t\t\t[-114.264317, 34.401329],\n\t\t\t\t\t\t[-114.199482, 34.361373],\n\t\t\t\t\t\t[-114.176909, 34.349306],\n\t\t\t\t\t\t[-114.138282, 34.303230],\n\t\t\t\t\t\t[-114.131489, 34.260387],\n\t\t\t\t\t\t[-114.133264, 34.258462],\n\t\t\t\t\t\t[-114.164476, 34.251667],\n\t\t\t\t\t\t[-114.225861, 34.201774],\n\t\t\t\t\t\t[-114.244191, 34.179625],\n\t\t\t\t\t\t[-114.312592, 34.144453],\n\t\t\t\t\t\t[-114.321618, 34.138093],\n\t\t\t\t\t\t[-114.366521, 34.118575],\n\t\t\t\t\t\t[-114.390565, 34.110084],\n\t\t\t\t\t\t[-114.401352, 34.111652],\n\t\t\t\t\t\t[-114.411681, 34.110031],\n\t\t\t\t\t\t[-114.420499, 34.103466],\n\t\t\t\t\t\t[-114.433380, 34.088413],\n\t\t\t\t\t\t[-114.435429, 34.079727],\n\t\t\t\t\t\t[-115.316065, 34.077843],\n\t\t\t\t\t\t[-115.316212, 34.034110],\n\t\t\t\t\t\t[-116.457775, 34.032881],\n\t\t\t\t\t\t[-116.929558, 34.034113],\n\t\t\t\t\t\t[-116.929357, 34.004914],\n\t\t\t\t\t\t[-117.225372, 34.004314],\n\t\t\t\t\t\t[-117.284475, 34.019015],\n\t\t\t\t\t\t[-117.336161, 34.019378],\n\t\t\t\t\t\t[-117.558312, 34.033451],\n\t\t\t\t\t\t[-117.600066, 33.975316],\n\t\t\t\t\t\t[-117.673749, 33.870831],\n\t\t\t\t\t\t[-117.680289, 33.877412],\n\t\t\t\t\t\t[-117.783287, 33.946411],\n\t\t\t\t\t\t[-117.767752, 34.019429],\n\t\t\t\t\t\t[-117.735846, 34.018554],\n\t\t\t\t\t\t[-117.726010, 34.041128],\n\t\t\t\t\t\t[-117.719481, 34.059731],\n\t\t\t\t\t\t[-117.711067, 34.079536],\n\t\t\t\t\t\t[-117.650459, 34.339025],\n\t\t\t\t\t\t[-117.658798, 34.440580],\n\t\t\t\t\t\t[-117.667292, 34.822526],\n\t\t\t\t\t\t[-117.632011, 34.822270],\n\t\t\t\t\t\t[-117.630126, 35.564071],\n\t\t\t\t\t\t[-117.616195, 35.680856],\n\t\t\t\t\t\t[-117.651986, 35.709934],\n\t\t\t\t\t\t[-117.632996, 35.797251],\n\t\t\t\t\t\t[-115.735891, 35.793620],\n\t\t\t\t\t\t[-115.735745, 35.809097],\n\t\t\t\t\t\t[-115.648925, 35.809128],\n\t\t\t\t\t\t[-115.648029, 35.809629]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06111\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"111\",\n\t\t\t\t\"NAME\": \"Ventura\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1843.133000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-119.543842, 33.280329],\n\t\t\t\t\t\t\t[-119.532941, 33.284728],\n\t\t\t\t\t\t\t[-119.528141, 33.284929],\n\t\t\t\t\t\t\t[-119.505040, 33.272829],\n\t\t\t\t\t\t\t[-119.482780, 33.263973],\n\t\t\t\t\t\t\t[-119.465717, 33.259239],\n\t\t\t\t\t\t\t[-119.458466, 33.254661],\n\t\t\t\t\t\t\t[-119.429559, 33.228167],\n\t\t\t\t\t\t\t[-119.444269, 33.219190],\n\t\t\t\t\t\t\t[-119.464725, 33.215432],\n\t\t\t\t\t\t\t[-119.476029, 33.215520],\n\t\t\t\t\t\t\t[-119.500684, 33.220569],\n\t\t\t\t\t\t\t[-119.511659, 33.223027],\n\t\t\t\t\t\t\t[-119.517514, 33.226737],\n\t\t\t\t\t\t\t[-119.545872, 33.233406],\n\t\t\t\t\t\t\t[-119.564971, 33.247440],\n\t\t\t\t\t\t\t[-119.565641, 33.250029],\n\t\t\t\t\t\t\t[-119.566014, 33.252639],\n\t\t\t\t\t\t\t[-119.570642, 33.257729],\n\t\t\t\t\t\t\t[-119.578942, 33.278628],\n\t\t\t\t\t\t\t[-119.562042, 33.271129],\n\t\t\t\t\t\t\t[-119.555242, 33.273429],\n\t\t\t\t\t\t\t[-119.547642, 33.280328],\n\t\t\t\t\t\t\t[-119.543842, 33.280329]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-119.422972, 34.004368],\n\t\t\t\t\t\t\t[-119.427589, 34.006445],\n\t\t\t\t\t\t\t[-119.437734, 34.010000],\n\t\t\t\t\t\t\t[-119.441116, 34.012426],\n\t\t\t\t\t\t\t[-119.441226, 34.014075],\n\t\t\t\t\t\t\t[-119.433912, 34.015975],\n\t\t\t\t\t\t\t[-119.421376, 34.015012],\n\t\t\t\t\t\t\t[-119.411317, 34.008005],\n\t\t\t\t\t\t\t[-119.396251, 34.005918],\n\t\t\t\t\t\t\t[-119.389983, 34.006099],\n\t\t\t\t\t\t\t[-119.366591, 34.016785],\n\t\t\t\t\t\t\t[-119.357462, 34.015919],\n\t\t\t\t\t\t\t[-119.376396, 34.010551],\n\t\t\t\t\t\t\t[-119.391551, 34.002505],\n\t\t\t\t\t\t\t[-119.414528, 34.004994],\n\t\t\t\t\t\t\t[-119.422972, 34.004368]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-118.881364, 34.790629],\n\t\t\t\t\t\t\t[-118.796692, 34.616559],\n\t\t\t\t\t\t\t[-118.650859, 34.320484],\n\t\t\t\t\t\t\t[-118.636789, 34.291804],\n\t\t\t\t\t\t\t[-118.633473, 34.269626],\n\t\t\t\t\t\t\t[-118.668152, 34.168195],\n\t\t\t\t\t\t\t[-118.788889, 34.168214],\n\t\t\t\t\t\t\t[-118.940965, 34.074830],\n\t\t\t\t\t\t\t[-118.944887, 34.045340],\n\t\t\t\t\t\t\t[-118.954722, 34.048167],\n\t\t\t\t\t\t\t[-118.977751, 34.059822],\n\t\t\t\t\t\t\t[-118.996980, 34.065943],\n\t\t\t\t\t\t\t[-119.004644, 34.066231],\n\t\t\t\t\t\t\t[-119.037494, 34.083111],\n\t\t\t\t\t\t\t[-119.069959, 34.090470],\n\t\t\t\t\t\t\t[-119.088536, 34.098310],\n\t\t\t\t\t\t\t[-119.098216, 34.099334],\n\t\t\t\t\t\t\t[-119.109784, 34.094566],\n\t\t\t\t\t\t\t[-119.130169, 34.100102],\n\t\t\t\t\t\t\t[-119.159554, 34.119653],\n\t\t\t\t\t\t\t[-119.188640, 34.139005],\n\t\t\t\t\t\t\t[-119.203140, 34.144505],\n\t\t\t\t\t\t\t[-119.211241, 34.144905],\n\t\t\t\t\t\t\t[-119.216441, 34.146105],\n\t\t\t\t\t\t\t[-119.227743, 34.161728],\n\t\t\t\t\t\t\t[-119.237142, 34.175804],\n\t\t\t\t\t\t\t[-119.257043, 34.213304],\n\t\t\t\t\t\t\t[-119.265927, 34.234609],\n\t\t\t\t\t\t\t[-119.270144, 34.252903],\n\t\t\t\t\t\t\t[-119.278644, 34.266902],\n\t\t\t\t\t\t\t[-119.290945, 34.274902],\n\t\t\t\t\t\t\t[-119.302131, 34.272761],\n\t\t\t\t\t\t\t[-119.313034, 34.275689],\n\t\t\t\t\t\t\t[-119.337475, 34.290576],\n\t\t\t\t\t\t\t[-119.349187, 34.304383],\n\t\t\t\t\t\t\t[-119.370356, 34.319486],\n\t\t\t\t\t\t\t[-119.375780, 34.321118],\n\t\t\t\t\t\t\t[-119.388249, 34.317398],\n\t\t\t\t\t\t\t[-119.390449, 34.318198],\n\t\t\t\t\t\t\t[-119.427770, 34.353016],\n\t\t\t\t\t\t\t[-119.431066, 34.355297],\n\t\t\t\t\t\t\t[-119.435888, 34.355839],\n\t\t\t\t\t\t\t[-119.461036, 34.374064],\n\t\t\t\t\t\t\t[-119.472678, 34.375628],\n\t\t\t\t\t\t\t[-119.478265, 34.377197],\n\t\t\t\t\t\t\t[-119.473793, 34.379115],\n\t\t\t\t\t\t\t[-119.472481, 34.383830],\n\t\t\t\t\t\t\t[-119.454101, 34.395568],\n\t\t\t\t\t\t\t[-119.445411, 34.408881],\n\t\t\t\t\t\t\t[-119.454277, 34.418166],\n\t\t\t\t\t\t\t[-119.453423, 34.428610],\n\t\t\t\t\t\t\t[-119.444717, 34.429510],\n\t\t\t\t\t\t\t[-119.440414, 34.441842],\n\t\t\t\t\t\t\t[-119.442278, 34.465509],\n\t\t\t\t\t\t\t[-119.442352, 34.901274],\n\t\t\t\t\t\t\t[-119.276946, 34.879675],\n\t\t\t\t\t\t\t[-119.243645, 34.814178],\n\t\t\t\t\t\t\t[-118.976721, 34.812199],\n\t\t\t\t\t\t\t[-118.881364, 34.790629]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08005\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"005\",\n\t\t\t\t\"NAME\": \"Arapahoe\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 798.100000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-104.884646, 39.740156],\n\t\t\t\t\t\t[-104.734969, 39.740302],\n\t\t\t\t\t\t[-103.706547, 39.739894],\n\t\t\t\t\t\t[-103.707072, 39.566295],\n\t\t\t\t\t\t[-103.714355, 39.566331],\n\t\t\t\t\t\t[-104.660626, 39.565909],\n\t\t\t\t\t\t[-105.048740, 39.566088],\n\t\t\t\t\t\t[-105.054140, 39.566088],\n\t\t\t\t\t\t[-105.053439, 39.621423],\n\t\t\t\t\t\t[-105.053411, 39.631586],\n\t\t\t\t\t\t[-105.034822, 39.627809],\n\t\t\t\t\t\t[-105.032038, 39.657087],\n\t\t\t\t\t\t[-105.015696, 39.678684],\n\t\t\t\t\t\t[-104.931703, 39.653044],\n\t\t\t\t\t\t[-104.913341, 39.624213],\n\t\t\t\t\t\t[-104.911935, 39.624346],\n\t\t\t\t\t\t[-104.911686, 39.624342],\n\t\t\t\t\t\t[-104.908862, 39.624301],\n\t\t\t\t\t\t[-104.908587, 39.624297],\n\t\t\t\t\t\t[-104.906942, 39.624268],\n\t\t\t\t\t\t[-104.906394, 39.624259],\n\t\t\t\t\t\t[-104.905490, 39.624158],\n\t\t\t\t\t\t[-104.904030, 39.623995],\n\t\t\t\t\t\t[-104.902451, 39.623939],\n\t\t\t\t\t\t[-104.901763, 39.623907],\n\t\t\t\t\t\t[-104.901719, 39.623905],\n\t\t\t\t\t\t[-104.901561, 39.623905],\n\t\t\t\t\t\t[-104.900933, 39.623906],\n\t\t\t\t\t\t[-104.899371, 39.624097],\n\t\t\t\t\t\t[-104.899339, 39.624097],\n\t\t\t\t\t\t[-104.899263, 39.624097],\n\t\t\t\t\t\t[-104.898639, 39.624099],\n\t\t\t\t\t\t[-104.897084, 39.624127],\n\t\t\t\t\t\t[-104.894642, 39.624173],\n\t\t\t\t\t\t[-104.894522, 39.624175],\n\t\t\t\t\t\t[-104.892667, 39.624135],\n\t\t\t\t\t\t[-104.891733, 39.624115],\n\t\t\t\t\t\t[-104.889813, 39.624191],\n\t\t\t\t\t\t[-104.889661, 39.624200],\n\t\t\t\t\t\t[-104.889037, 39.624176],\n\t\t\t\t\t\t[-104.888758, 39.624165],\n\t\t\t\t\t\t[-104.888331, 39.624143],\n\t\t\t\t\t\t[-104.887773, 39.624116],\n\t\t\t\t\t\t[-104.885282, 39.624129],\n\t\t\t\t\t\t[-104.885280, 39.627128],\n\t\t\t\t\t\t[-104.885213, 39.629087],\n\t\t\t\t\t\t[-104.885218, 39.629513],\n\t\t\t\t\t\t[-104.885231, 39.631345],\n\t\t\t\t\t\t[-104.885156, 39.633467],\n\t\t\t\t\t\t[-104.885173, 39.636268],\n\t\t\t\t\t\t[-104.885167, 39.636493],\n\t\t\t\t\t\t[-104.885132, 39.638093],\n\t\t\t\t\t\t[-104.885121, 39.638283],\n\t\t\t\t\t\t[-104.885124, 39.638444],\n\t\t\t\t\t\t[-104.885128, 39.638637],\n\t\t\t\t\t\t[-104.885129, 39.638788],\n\t\t\t\t\t\t[-104.885119, 39.638961],\n\t\t\t\t\t\t[-104.885112, 39.639262],\n\t\t\t\t\t\t[-104.884936, 39.639344],\n\t\t\t\t\t\t[-104.884765, 39.639425],\n\t\t\t\t\t\t[-104.883680, 39.639939],\n\t\t\t\t\t\t[-104.882917, 39.640301],\n\t\t\t\t\t\t[-104.882827, 39.640345],\n\t\t\t\t\t\t[-104.880929, 39.641216],\n\t\t\t\t\t\t[-104.880329, 39.641491],\n\t\t\t\t\t\t[-104.880322, 39.641651],\n\t\t\t\t\t\t[-104.880326, 39.641730],\n\t\t\t\t\t\t[-104.880326, 39.641819],\n\t\t\t\t\t\t[-104.880338, 39.641955],\n\t\t\t\t\t\t[-104.880340, 39.641993],\n\t\t\t\t\t\t[-104.880368, 39.642193],\n\t\t\t\t\t\t[-104.880381, 39.642475],\n\t\t\t\t\t\t[-104.880372, 39.642605],\n\t\t\t\t\t\t[-104.880313, 39.643949],\n\t\t\t\t\t\t[-104.880313, 39.645902],\n\t\t\t\t\t\t[-104.880239, 39.645993],\n\t\t\t\t\t\t[-104.880239, 39.646068],\n\t\t\t\t\t\t[-104.880246, 39.646530],\n\t\t\t\t\t\t[-104.880246, 39.647751],\n\t\t\t\t\t\t[-104.880228, 39.647994],\n\t\t\t\t\t\t[-104.880086, 39.650773],\n\t\t\t\t\t\t[-104.880140, 39.653057],\n\t\t\t\t\t\t[-104.880078, 39.653055],\n\t\t\t\t\t\t[-104.878034, 39.653051],\n\t\t\t\t\t\t[-104.877498, 39.653051],\n\t\t\t\t\t\t[-104.877497, 39.653052],\n\t\t\t\t\t\t[-104.877218, 39.652875],\n\t\t\t\t\t\t[-104.876306, 39.652295],\n\t\t\t\t\t\t[-104.876297, 39.652021],\n\t\t\t\t\t\t[-104.876281, 39.651459],\n\t\t\t\t\t\t[-104.876240, 39.650110],\n\t\t\t\t\t\t[-104.876195, 39.648600],\n\t\t\t\t\t\t[-104.876195, 39.648583],\n\t\t\t\t\t\t[-104.876151, 39.647061],\n\t\t\t\t\t\t[-104.876149, 39.647004],\n\t\t\t\t\t\t[-104.876130, 39.646499],\n\t\t\t\t\t\t[-104.876224, 39.644301],\n\t\t\t\t\t\t[-104.875552, 39.644617],\n\t\t\t\t\t\t[-104.857203, 39.653246],\n\t\t\t\t\t\t[-104.856830, 39.653419],\n\t\t\t\t\t\t[-104.856753, 39.653456],\n\t\t\t\t\t\t[-104.856038, 39.654178],\n\t\t\t\t\t\t[-104.854747, 39.654888],\n\t\t\t\t\t\t[-104.854474, 39.655011],\n\t\t\t\t\t\t[-104.852944, 39.655706],\n\t\t\t\t\t\t[-104.850762, 39.656305],\n\t\t\t\t\t\t[-104.849397, 39.656482],\n\t\t\t\t\t\t[-104.848967, 39.656538],\n\t\t\t\t\t\t[-104.848120, 39.656648],\n\t\t\t\t\t\t[-104.847697, 39.656704],\n\t\t\t\t\t\t[-104.847639, 39.656712],\n\t\t\t\t\t\t[-104.847119, 39.656780],\n\t\t\t\t\t\t[-104.847449, 39.656783],\n\t\t\t\t\t\t[-104.847536, 39.656785],\n\t\t\t\t\t\t[-104.847604, 39.656786],\n\t\t\t\t\t\t[-104.847733, 39.656788],\n\t\t\t\t\t\t[-104.847731, 39.656927],\n\t\t\t\t\t\t[-104.847730, 39.657239],\n\t\t\t\t\t\t[-104.847730, 39.657789],\n\t\t\t\t\t\t[-104.847940, 39.657824],\n\t\t\t\t\t\t[-104.848048, 39.657842],\n\t\t\t\t\t\t[-104.848336, 39.657891],\n\t\t\t\t\t\t[-104.848332, 39.659161],\n\t\t\t\t\t\t[-104.884646, 39.740156]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05109\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"109\",\n\t\t\t\t\"NAME\": \"Pike\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 600.618000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.935371, 34.350097],\n\t\t\t\t\t\t[-93.478646, 34.340851],\n\t\t\t\t\t\t[-93.434165, 34.049739],\n\t\t\t\t\t\t[-93.373406, 33.957070],\n\t\t\t\t\t\t[-93.456709, 33.956837],\n\t\t\t\t\t\t[-93.528752, 33.943171],\n\t\t\t\t\t\t[-93.823076, 34.008893],\n\t\t\t\t\t\t[-93.820722, 34.183802],\n\t\t\t\t\t\t[-93.925830, 34.186496],\n\t\t\t\t\t\t[-93.935371, 34.350097]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05117\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"117\",\n\t\t\t\t\"NAME\": \"Prairie\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 647.958000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.465114, 35.089454],\n\t\t\t\t\t\t[-91.363778, 35.051891],\n\t\t\t\t\t\t[-91.368560, 34.912735],\n\t\t\t\t\t\t[-91.374765, 34.665964],\n\t\t\t\t\t\t[-91.446983, 34.667531],\n\t\t\t\t\t\t[-91.447795, 34.609185],\n\t\t\t\t\t\t[-91.377820, 34.563480],\n\t\t\t\t\t\t[-91.594429, 34.568050],\n\t\t\t\t\t\t[-91.595520, 34.480510],\n\t\t\t\t\t\t[-91.678037, 34.481920],\n\t\t\t\t\t\t[-91.638531, 34.626093],\n\t\t\t\t\t\t[-91.700828, 34.672029],\n\t\t\t\t\t\t[-91.693705, 34.919605],\n\t\t\t\t\t\t[-91.803703, 34.921524],\n\t\t\t\t\t\t[-91.802505, 35.030425],\n\t\t\t\t\t\t[-91.695463, 35.062344],\n\t\t\t\t\t\t[-91.585100, 35.025234],\n\t\t\t\t\t\t[-91.584005, 35.091584],\n\t\t\t\t\t\t[-91.465114, 35.089454]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05135\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"135\",\n\t\t\t\t\"NAME\": \"Sharp\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 604.439000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.407137, 36.497112],\n\t\t\t\t\t\t[-91.308733, 36.420363],\n\t\t\t\t\t\t[-91.258920, 36.257880],\n\t\t\t\t\t\t[-91.349834, 36.230967],\n\t\t\t\t\t\t[-91.357230, 35.890621],\n\t\t\t\t\t\t[-91.464678, 35.892497],\n\t\t\t\t\t\t[-91.463198, 35.936810],\n\t\t\t\t\t\t[-91.710552, 35.941759],\n\t\t\t\t\t\t[-91.682277, 36.000535],\n\t\t\t\t\t\t[-91.691435, 36.253301],\n\t\t\t\t\t\t[-91.566078, 36.249945],\n\t\t\t\t\t\t[-91.565866, 36.337400],\n\t\t\t\t\t\t[-91.454437, 36.335465],\n\t\t\t\t\t\t[-91.450005, 36.497538],\n\t\t\t\t\t\t[-91.446284, 36.497469],\n\t\t\t\t\t\t[-91.436502, 36.497377],\n\t\t\t\t\t\t[-91.433298, 36.497262],\n\t\t\t\t\t\t[-91.407261, 36.497123],\n\t\t\t\t\t\t[-91.407137, 36.497112]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13307\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"307\",\n\t\t\t\t\"NAME\": \"Webster\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 209.118000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.655820, 31.920308],\n\t\t\t\t\t\t[-84.649319, 32.232953],\n\t\t\t\t\t\t[-84.527117, 32.134556],\n\t\t\t\t\t\t[-84.431214, 32.134058],\n\t\t\t\t\t\t[-84.443807, 31.967456],\n\t\t\t\t\t\t[-84.453310, 31.919224],\n\t\t\t\t\t\t[-84.599776, 31.920171],\n\t\t\t\t\t\t[-84.655820, 31.920308]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13311\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"311\",\n\t\t\t\t\"NAME\": \"White\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 240.686000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.856506, 34.722191],\n\t\t\t\t\t\t[-83.780401, 34.792893],\n\t\t\t\t\t\t[-83.743107, 34.801191],\n\t\t\t\t\t\t[-83.735981, 34.800071],\n\t\t\t\t\t\t[-83.726874, 34.797732],\n\t\t\t\t\t\t[-83.722030, 34.797271],\n\t\t\t\t\t\t[-83.721035, 34.796110],\n\t\t\t\t\t\t[-83.714186, 34.793112],\n\t\t\t\t\t\t[-83.711803, 34.790520],\n\t\t\t\t\t\t[-83.707757, 34.791710],\n\t\t\t\t\t\t[-83.704146, 34.790982],\n\t\t\t\t\t\t[-83.701813, 34.792488],\n\t\t\t\t\t\t[-83.695990, 34.793520],\n\t\t\t\t\t\t[-83.693155, 34.797322],\n\t\t\t\t\t\t[-83.685685, 34.800997],\n\t\t\t\t\t\t[-83.681596, 34.800593],\n\t\t\t\t\t\t[-83.623296, 34.732194],\n\t\t\t\t\t\t[-83.662819, 34.659801],\n\t\t\t\t\t\t[-83.615540, 34.552864],\n\t\t\t\t\t\t[-83.666413, 34.503598],\n\t\t\t\t\t\t[-83.843405, 34.505494],\n\t\t\t\t\t\t[-83.877276, 34.629597],\n\t\t\t\t\t\t[-83.856506, 34.722191]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13315\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"315\",\n\t\t\t\t\"NAME\": \"Wilcox\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 377.705000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.177469, 31.847857],\n\t\t\t\t\t\t[-83.480176, 31.847312],\n\t\t\t\t\t\t[-83.612256, 31.854089],\n\t\t\t\t\t\t[-83.609663, 32.027938],\n\t\t\t\t\t\t[-83.608407, 32.116466],\n\t\t\t\t\t\t[-83.608547, 32.118405],\n\t\t\t\t\t\t[-83.337313, 32.105885],\n\t\t\t\t\t\t[-83.292061, 31.984506],\n\t\t\t\t\t\t[-83.205739, 31.900325],\n\t\t\t\t\t\t[-83.177469, 31.847857]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US15005\",\n\t\t\t\t\"STATE\": \"15\",\n\t\t\t\t\"COUNTY\": \"005\",\n\t\t\t\t\"NAME\": \"Kalawao\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 11.991000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-157.014553, 21.185503],\n\t\t\t\t\t\t[-156.999108, 21.182221],\n\t\t\t\t\t\t[-156.991318, 21.185510],\n\t\t\t\t\t\t[-156.987768, 21.189350],\n\t\t\t\t\t\t[-156.982343, 21.207798],\n\t\t\t\t\t\t[-156.984464, 21.210063],\n\t\t\t\t\t\t[-156.984032, 21.212198],\n\t\t\t\t\t\t[-156.974002, 21.218503],\n\t\t\t\t\t\t[-156.969064, 21.217018],\n\t\t\t\t\t\t[-156.962847, 21.212131],\n\t\t\t\t\t\t[-156.951654, 21.191662],\n\t\t\t\t\t\t[-156.950808, 21.182636],\n\t\t\t\t\t\t[-156.946159, 21.175963],\n\t\t\t\t\t\t[-156.918248, 21.168279],\n\t\t\t\t\t\t[-156.898876, 21.147604],\n\t\t\t\t\t\t[-156.918072, 21.129479],\n\t\t\t\t\t\t[-156.942135, 21.160173],\n\t\t\t\t\t\t[-157.014553, 21.185503]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US16005\",\n\t\t\t\t\"STATE\": \"16\",\n\t\t\t\t\"COUNTY\": \"005\",\n\t\t\t\t\"NAME\": \"Bannock\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1111.988000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-111.875573, 42.416335],\n\t\t\t\t\t\t[-111.897244, 42.256646],\n\t\t\t\t\t\t[-112.126286, 42.285330],\n\t\t\t\t\t\t[-112.190692, 42.351200],\n\t\t\t\t\t\t[-112.327029, 42.323854],\n\t\t\t\t\t\t[-112.297202, 42.454097],\n\t\t\t\t\t\t[-112.419995, 42.502857],\n\t\t\t\t\t\t[-112.379610, 42.646225],\n\t\t\t\t\t\t[-112.496937, 42.733053],\n\t\t\t\t\t\t[-112.515974, 42.910003],\n\t\t\t\t\t\t[-112.558535, 42.961101],\n\t\t\t\t\t\t[-112.737583, 42.905549],\n\t\t\t\t\t\t[-112.750503, 42.951443],\n\t\t\t\t\t\t[-112.676152, 43.022012],\n\t\t\t\t\t\t[-112.063055, 43.022364],\n\t\t\t\t\t\t[-112.082064, 42.950516],\n\t\t\t\t\t\t[-112.149792, 42.895603],\n\t\t\t\t\t\t[-112.120692, 42.831618],\n\t\t\t\t\t\t[-112.141140, 42.763051],\n\t\t\t\t\t\t[-112.105476, 42.699195],\n\t\t\t\t\t\t[-111.969449, 42.718039],\n\t\t\t\t\t\t[-111.875573, 42.416335]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US16027\",\n\t\t\t\t\"STATE\": \"16\",\n\t\t\t\t\"COUNTY\": \"027\",\n\t\t\t\t\"NAME\": \"Canyon\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 587.370000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-117.026623, 43.680865],\n\t\t\t\t\t\t[-117.026586, 43.683001],\n\t\t\t\t\t\t[-117.026825, 43.706193],\n\t\t\t\t\t\t[-117.026725, 43.714815],\n\t\t\t\t\t\t[-117.026841, 43.732905],\n\t\t\t\t\t\t[-117.026651, 43.733935],\n\t\t\t\t\t\t[-117.026634, 43.808104],\n\t\t\t\t\t\t[-116.996504, 43.864714],\n\t\t\t\t\t\t[-116.982482, 43.872799],\n\t\t\t\t\t\t[-116.979186, 43.879973],\n\t\t\t\t\t\t[-116.853220, 43.792600],\n\t\t\t\t\t\t[-116.712672, 43.807161],\n\t\t\t\t\t\t[-116.707332, 43.807279],\n\t\t\t\t\t\t[-116.512559, 43.807216],\n\t\t\t\t\t\t[-116.513123, 43.634183],\n\t\t\t\t\t\t[-116.473492, 43.634103],\n\t\t\t\t\t\t[-116.473713, 43.459216],\n\t\t\t\t\t\t[-116.513364, 43.459320],\n\t\t\t\t\t\t[-116.511722, 43.290253],\n\t\t\t\t\t\t[-116.780671, 43.477217],\n\t\t\t\t\t\t[-116.841528, 43.593168],\n\t\t\t\t\t\t[-117.026623, 43.680865]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US16039\",\n\t\t\t\t\"STATE\": \"16\",\n\t\t\t\t\"COUNTY\": \"039\",\n\t\t\t\t\"NAME\": \"Elmore\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 3074.738000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-116.266168, 43.112553],\n\t\t\t\t\t\t[-115.978695, 43.113421],\n\t\t\t\t\t\t[-115.974946, 43.365081],\n\t\t\t\t\t\t[-115.975767, 43.591338],\n\t\t\t\t\t\t[-115.698219, 43.665088],\n\t\t\t\t\t\t[-115.645864, 43.700272],\n\t\t\t\t\t\t[-115.592970, 43.798087],\n\t\t\t\t\t\t[-115.547540, 43.792655],\n\t\t\t\t\t\t[-115.513842, 43.880723],\n\t\t\t\t\t\t[-115.287258, 43.935501],\n\t\t\t\t\t\t[-115.197061, 44.068328],\n\t\t\t\t\t\t[-115.230685, 44.098685],\n\t\t\t\t\t\t[-115.182416, 44.092262],\n\t\t\t\t\t\t[-115.147722, 44.002364],\n\t\t\t\t\t\t[-115.067174, 43.940350],\n\t\t\t\t\t\t[-114.990750, 43.949725],\n\t\t\t\t\t\t[-114.983747, 43.945988],\n\t\t\t\t\t\t[-114.978209, 43.946841],\n\t\t\t\t\t\t[-114.971258, 43.938134],\n\t\t\t\t\t\t[-114.989384, 43.858611],\n\t\t\t\t\t\t[-115.042177, 43.745451],\n\t\t\t\t\t\t[-115.008925, 43.697398],\n\t\t\t\t\t\t[-115.083089, 43.604292],\n\t\t\t\t\t\t[-115.086480, 43.198436],\n\t\t\t\t\t\t[-115.086808, 42.914691],\n\t\t\t\t\t\t[-115.037262, 42.911931],\n\t\t\t\t\t\t[-115.037716, 42.768480],\n\t\t\t\t\t\t[-115.454314, 42.767732],\n\t\t\t\t\t\t[-115.441570, 42.930904],\n\t\t\t\t\t\t[-115.603730, 42.937249],\n\t\t\t\t\t\t[-115.641066, 42.955360],\n\t\t\t\t\t\t[-115.769910, 42.938948],\n\t\t\t\t\t\t[-115.926546, 43.001526],\n\t\t\t\t\t\t[-115.965669, 42.943725],\n\t\t\t\t\t\t[-116.012092, 42.949917],\n\t\t\t\t\t\t[-116.266168, 43.112553]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US16063\",\n\t\t\t\t\"STATE\": \"16\",\n\t\t\t\t\"COUNTY\": \"063\",\n\t\t\t\t\"NAME\": \"Lincoln\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1201.405000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-113.714701, 43.200030],\n\t\t\t\t\t\t[-113.713928, 42.849733],\n\t\t\t\t\t\t[-113.763862, 42.764508],\n\t\t\t\t\t\t[-113.932904, 42.765032],\n\t\t\t\t\t\t[-114.049868, 42.765121],\n\t\t\t\t\t\t[-114.049870, 42.808521],\n\t\t\t\t\t\t[-114.345659, 42.809055],\n\t\t\t\t\t\t[-114.365366, 42.850790],\n\t\t\t\t\t\t[-114.594375, 42.850826],\n\t\t\t\t\t\t[-114.594685, 43.198302],\n\t\t\t\t\t\t[-114.374877, 43.199603],\n\t\t\t\t\t\t[-113.714701, 43.200030]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US16075\",\n\t\t\t\t\"STATE\": \"16\",\n\t\t\t\t\"COUNTY\": \"075\",\n\t\t\t\t\"NAME\": \"Payette\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 406.867000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-116.961535, 43.918388],\n\t\t\t\t\t\t[-116.935301, 43.988616],\n\t\t\t\t\t\t[-116.931719, 44.102474],\n\t\t\t\t\t\t[-116.897145, 44.152537],\n\t\t\t\t\t\t[-116.452012, 44.151417],\n\t\t\t\t\t\t[-116.452526, 44.065345],\n\t\t\t\t\t\t[-116.532176, 44.066060],\n\t\t\t\t\t\t[-116.572245, 43.980334],\n\t\t\t\t\t\t[-116.712591, 43.981259],\n\t\t\t\t\t\t[-116.712672, 43.807161],\n\t\t\t\t\t\t[-116.853220, 43.792600],\n\t\t\t\t\t\t[-116.979186, 43.879973],\n\t\t\t\t\t\t[-116.961535, 43.918388]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17001\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"001\",\n\t\t\t\t\"NAME\": \"Adams\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 855.202000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.365396, 39.777266],\n\t\t\t\t\t\t[-91.432919, 39.840554],\n\t\t\t\t\t\t[-91.446385, 39.870394],\n\t\t\t\t\t\t[-91.455887, 39.945538],\n\t\t\t\t\t\t[-91.460287, 39.980333],\n\t\t\t\t\t\t[-91.494865, 40.037421],\n\t\t\t\t\t\t[-91.510322, 40.127994],\n\t\t\t\t\t\t[-91.512974, 40.181062],\n\t\t\t\t\t\t[-91.510332, 40.201142],\n\t\t\t\t\t\t[-91.258828, 40.197299],\n\t\t\t\t\t\t[-90.911969, 40.193088],\n\t\t\t\t\t\t[-90.913616, 40.104452],\n\t\t\t\t\t\t[-90.916609, 39.845075],\n\t\t\t\t\t\t[-90.916071, 39.757168],\n\t\t\t\t\t\t[-91.147678, 39.757070],\n\t\t\t\t\t\t[-91.265848, 39.757258],\n\t\t\t\t\t\t[-91.365125, 39.758723],\n\t\t\t\t\t\t[-91.367962, 39.759124],\n\t\t\t\t\t\t[-91.365396, 39.777266]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17017\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"017\",\n\t\t\t\t\"NAME\": \"Cass\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 375.818000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.355198, 40.124245],\n\t\t\t\t\t\t[-90.286493, 40.055023],\n\t\t\t\t\t\t[-90.196609, 40.052499],\n\t\t\t\t\t\t[-89.994724, 40.108373],\n\t\t\t\t\t\t[-89.994506, 39.901925],\n\t\t\t\t\t\t[-89.994405, 39.872860],\n\t\t\t\t\t\t[-90.583534, 39.876750],\n\t\t\t\t\t\t[-90.536721, 39.923027],\n\t\t\t\t\t\t[-90.513747, 39.987891],\n\t\t\t\t\t\t[-90.433523, 40.024001],\n\t\t\t\t\t\t[-90.355198, 40.124245]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30047\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"047\",\n\t\t\t\t\"NAME\": \"Lake\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1490.150000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-114.187383, 47.138192],\n\t\t\t\t\t\t[-114.203293, 47.355899],\n\t\t\t\t\t\t[-114.288557, 47.355875],\n\t\t\t\t\t\t[-114.353080, 47.389850],\n\t\t\t\t\t\t[-114.301457, 47.497050],\n\t\t\t\t\t\t[-114.383453, 47.483254],\n\t\t\t\t\t\t[-114.321479, 47.595551],\n\t\t\t\t\t\t[-114.583290, 47.601680],\n\t\t\t\t\t\t[-114.604326, 47.789744],\n\t\t\t\t\t\t[-114.477186, 47.789841],\n\t\t\t\t\t\t[-114.491992, 47.961906],\n\t\t\t\t\t\t[-114.038545, 47.962550],\n\t\t\t\t\t\t[-114.078146, 48.023454],\n\t\t\t\t\t\t[-114.028314, 48.051911],\n\t\t\t\t\t\t[-113.885757, 48.051129],\n\t\t\t\t\t\t[-113.841867, 47.978185],\n\t\t\t\t\t\t[-113.747738, 47.953079],\n\t\t\t\t\t\t[-113.667442, 47.890291],\n\t\t\t\t\t\t[-113.681245, 47.794662],\n\t\t\t\t\t\t[-113.604004, 47.721530],\n\t\t\t\t\t\t[-113.633957, 47.599861],\n\t\t\t\t\t\t[-113.948763, 47.600517],\n\t\t\t\t\t\t[-113.929999, 47.598483],\n\t\t\t\t\t\t[-113.914926, 47.500299],\n\t\t\t\t\t\t[-113.951187, 47.476007],\n\t\t\t\t\t\t[-113.870895, 47.392118],\n\t\t\t\t\t\t[-113.886455, 47.318622],\n\t\t\t\t\t\t[-113.821126, 47.268599],\n\t\t\t\t\t\t[-113.821994, 47.181622],\n\t\t\t\t\t\t[-114.187383, 47.138192]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31123\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"123\",\n\t\t\t\t\"NAME\": \"Morrill\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1423.838000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-103.369024, 41.437655],\n\t\t\t\t\t\t[-103.370391, 41.699210],\n\t\t\t\t\t\t[-103.363337, 42.002930],\n\t\t\t\t\t\t[-102.697835, 42.004843],\n\t\t\t\t\t\t[-102.677582, 42.005282],\n\t\t\t\t\t\t[-102.664870, 41.743457],\n\t\t\t\t\t\t[-102.636476, 41.743139],\n\t\t\t\t\t\t[-102.636695, 41.439053],\n\t\t\t\t\t\t[-103.369024, 41.437655]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31127\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"127\",\n\t\t\t\t\"NAME\": \"Nemaha\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 407.382000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.066736, 40.262038],\n\t\t\t\t\t\t[-96.067012, 40.523148],\n\t\t\t\t\t\t[-95.709974, 40.523798],\n\t\t\t\t\t\t[-95.697281, 40.536985],\n\t\t\t\t\t\t[-95.696673, 40.545137],\n\t\t\t\t\t\t[-95.659281, 40.519808],\n\t\t\t\t\t\t[-95.681409, 40.490820],\n\t\t\t\t\t\t[-95.692665, 40.483022],\n\t\t\t\t\t\t[-95.687280, 40.465059],\n\t\t\t\t\t\t[-95.622684, 40.342323],\n\t\t\t\t\t\t[-95.553292, 40.291158],\n\t\t\t\t\t\t[-95.550966, 40.285947],\n\t\t\t\t\t\t[-95.552314, 40.264443],\n\t\t\t\t\t\t[-95.552473, 40.261904],\n\t\t\t\t\t\t[-96.010176, 40.261482],\n\t\t\t\t\t\t[-96.012628, 40.261449],\n\t\t\t\t\t\t[-96.066736, 40.262038]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31143\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"143\",\n\t\t\t\t\"NAME\": \"Polk\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 438.345000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.368186, 41.396416],\n\t\t\t\t\t\t[-97.368118, 41.046947],\n\t\t\t\t\t\t[-97.826287, 41.046581],\n\t\t\t\t\t\t[-97.827964, 41.047315],\n\t\t\t\t\t\t[-97.828243, 41.173750],\n\t\t\t\t\t\t[-97.598253, 41.333119],\n\t\t\t\t\t\t[-97.368186, 41.396416]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31153\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"153\",\n\t\t\t\t\"NAME\": \"Sarpy\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 238.990000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.927930, 41.058800],\n\t\t\t\t\t\t[-96.056256, 41.065356],\n\t\t\t\t\t\t[-96.207648, 40.995628],\n\t\t\t\t\t\t[-96.319191, 41.044998],\n\t\t\t\t\t\t[-96.327399, 41.189999],\n\t\t\t\t\t\t[-96.158333, 41.190762],\n\t\t\t\t\t\t[-95.923219, 41.191046],\n\t\t\t\t\t\t[-95.923190, 41.190998],\n\t\t\t\t\t\t[-95.914590, 41.185098],\n\t\t\t\t\t\t[-95.852788, 41.165398],\n\t\t\t\t\t\t[-95.853396, 41.160280],\n\t\t\t\t\t\t[-95.866289, 41.051731],\n\t\t\t\t\t\t[-95.889215, 41.058443],\n\t\t\t\t\t\t[-95.927930, 41.058800]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31167\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"167\",\n\t\t\t\t\"NAME\": \"Stanton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 427.949000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.019911, 41.742980],\n\t\t\t\t\t\t[-97.252425, 41.743085],\n\t\t\t\t\t\t[-97.368070, 41.743207],\n\t\t\t\t\t\t[-97.368404, 42.090922],\n\t\t\t\t\t\t[-97.019359, 42.090577],\n\t\t\t\t\t\t[-97.019911, 41.742980]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31179\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"179\",\n\t\t\t\t\"NAME\": \"Wayne\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 442.915000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.251888, 42.351626],\n\t\t\t\t\t\t[-97.017789, 42.351347],\n\t\t\t\t\t\t[-97.017730, 42.264453],\n\t\t\t\t\t\t[-96.822497, 42.264292],\n\t\t\t\t\t\t[-96.823670, 42.090411],\n\t\t\t\t\t\t[-97.019359, 42.090577],\n\t\t\t\t\t\t[-97.368404, 42.090922],\n\t\t\t\t\t\t[-97.367724, 42.351861],\n\t\t\t\t\t\t[-97.251888, 42.351626]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31185\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"185\",\n\t\t\t\t\"NAME\": \"York\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 572.510000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.824780, 40.698537],\n\t\t\t\t\t\t[-97.825723, 40.698555],\n\t\t\t\t\t\t[-97.826287, 41.046581],\n\t\t\t\t\t\t[-97.368118, 41.046947],\n\t\t\t\t\t\t[-97.368401, 40.698625],\n\t\t\t\t\t\t[-97.824780, 40.698537]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US32011\",\n\t\t\t\t\"STATE\": \"32\",\n\t\t\t\t\"COUNTY\": \"011\",\n\t\t\t\t\"NAME\": \"Eureka\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 4175.684000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-115.834969, 40.127842],\n\t\t\t\t\t\t[-115.813476, 39.593521],\n\t\t\t\t\t\t[-115.898339, 39.453890],\n\t\t\t\t\t\t[-115.907659, 39.464432],\n\t\t\t\t\t\t[-115.907071, 39.161848],\n\t\t\t\t\t\t[-116.600946, 39.161463],\n\t\t\t\t\t\t[-116.597109, 39.176241],\n\t\t\t\t\t\t[-116.590238, 39.706440],\n\t\t\t\t\t\t[-116.596815, 40.946460],\n\t\t\t\t\t\t[-116.587104, 40.947021],\n\t\t\t\t\t\t[-116.586786, 41.000398],\n\t\t\t\t\t\t[-116.158155, 40.999912],\n\t\t\t\t\t\t[-116.157834, 40.666389],\n\t\t\t\t\t\t[-116.000897, 40.127376],\n\t\t\t\t\t\t[-115.834969, 40.127842]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US32027\",\n\t\t\t\t\"STATE\": \"32\",\n\t\t\t\t\"COUNTY\": \"027\",\n\t\t\t\t\"NAME\": \"Pershing\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 6036.563000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-119.225176, 39.999385],\n\t\t\t\t\t\t[-119.339296, 39.998609],\n\t\t\t\t\t\t[-119.338504, 40.517805],\n\t\t\t\t\t\t[-119.313037, 40.518314],\n\t\t\t\t\t\t[-119.309598, 40.960378],\n\t\t\t\t\t\t[-118.786705, 40.960850],\n\t\t\t\t\t\t[-118.786738, 40.855929],\n\t\t\t\t\t\t[-117.644220, 40.857824],\n\t\t\t\t\t\t[-117.644399, 40.684343],\n\t\t\t\t\t\t[-117.301168, 40.682348],\n\t\t\t\t\t\t[-117.300597, 40.526136],\n\t\t\t\t\t\t[-117.541749, 40.001034],\n\t\t\t\t\t\t[-117.732700, 40.002466],\n\t\t\t\t\t\t[-117.734782, 40.002168],\n\t\t\t\t\t\t[-117.736241, 40.002464],\n\t\t\t\t\t\t[-119.225176, 39.999385]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US33005\",\n\t\t\t\t\"STATE\": \"33\",\n\t\t\t\t\"COUNTY\": \"005\",\n\t\t\t\t\"NAME\": \"Cheshire\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 706.660000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-72.001034, 42.919510],\n\t\t\t\t\t\t[-71.928811, 42.712234],\n\t\t\t\t\t\t[-72.078463, 42.716364],\n\t\t\t\t\t\t[-72.111068, 42.717264],\n\t\t\t\t\t\t[-72.282968, 42.722008],\n\t\t\t\t\t\t[-72.412011, 42.725569],\n\t\t\t\t\t\t[-72.451257, 42.726653],\n\t\t\t\t\t\t[-72.458519, 42.726853],\n\t\t\t\t\t\t[-72.460195, 42.732066],\n\t\t\t\t\t\t[-72.478453, 42.762296],\n\t\t\t\t\t\t[-72.491122, 42.772465],\n\t\t\t\t\t\t[-72.509506, 42.781183],\n\t\t\t\t\t\t[-72.542784, 42.808482],\n\t\t\t\t\t\t[-72.555693, 42.856380],\n\t\t\t\t\t\t[-72.555768, 42.858153],\n\t\t\t\t\t\t[-72.556112, 42.866252],\n\t\t\t\t\t\t[-72.556214, 42.866950],\n\t\t\t\t\t\t[-72.443762, 43.006245],\n\t\t\t\t\t\t[-72.432661, 43.114077],\n\t\t\t\t\t\t[-72.433097, 43.120021],\n\t\t\t\t\t\t[-72.441904, 43.136615],\n\t\t\t\t\t\t[-72.452100, 43.161414],\n\t\t\t\t\t\t[-72.156548, 43.181962],\n\t\t\t\t\t\t[-72.178457, 43.131955],\n\t\t\t\t\t\t[-72.038149, 43.128807],\n\t\t\t\t\t\t[-72.062374, 42.944837],\n\t\t\t\t\t\t[-72.001034, 42.919510]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US33017\",\n\t\t\t\t\"STATE\": \"33\",\n\t\t\t\t\"COUNTY\": \"017\",\n\t\t\t\t\"NAME\": \"Strafford\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 368.975000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-71.037296, 43.529689],\n\t\t\t\t\t\t[-70.958958, 43.537634],\n\t\t\t\t\t\t[-70.962556, 43.534310],\n\t\t\t\t\t\t[-70.954755, 43.509802],\n\t\t\t\t\t\t[-70.963742, 43.476248],\n\t\t\t\t\t\t[-70.964542, 43.473262],\n\t\t\t\t\t\t[-70.964433, 43.473276],\n\t\t\t\t\t\t[-70.986812, 43.414264],\n\t\t\t\t\t\t[-70.987733, 43.391513],\n\t\t\t\t\t\t[-70.984305, 43.376814],\n\t\t\t\t\t\t[-70.984335, 43.376128],\n\t\t\t\t\t\t[-70.967229, 43.343777],\n\t\t\t\t\t\t[-70.952356, 43.333983],\n\t\t\t\t\t\t[-70.930783, 43.329569],\n\t\t\t\t\t\t[-70.916751, 43.317731],\n\t\t\t\t\t\t[-70.912460, 43.308289],\n\t\t\t\t\t\t[-70.909805, 43.306682],\n\t\t\t\t\t\t[-70.863230, 43.265109],\n\t\t\t\t\t\t[-70.863231, 43.265098],\n\t\t\t\t\t\t[-70.839213, 43.251224],\n\t\t\t\t\t\t[-70.839717, 43.250393],\n\t\t\t\t\t\t[-70.833650, 43.242868],\n\t\t\t\t\t\t[-70.828022, 43.241597],\n\t\t\t\t\t\t[-70.826711, 43.241301],\n\t\t\t\t\t\t[-70.825071, 43.240930],\n\t\t\t\t\t\t[-70.823309, 43.240343],\n\t\t\t\t\t\t[-70.822959, 43.240187],\n\t\t\t\t\t\t[-70.817865, 43.237911],\n\t\t\t\t\t\t[-70.817773, 43.237408],\n\t\t\t\t\t\t[-70.816232, 43.234997],\n\t\t\t\t\t\t[-70.828301, 43.186685],\n\t\t\t\t\t\t[-70.829174, 43.180365],\n\t\t\t\t\t\t[-70.833800, 43.146886],\n\t\t\t\t\t\t[-70.828100, 43.129086],\n\t\t\t\t\t\t[-70.819549, 43.123231],\n\t\t\t\t\t\t[-70.861535, 43.125021],\n\t\t\t\t\t\t[-70.861030, 43.095602],\n\t\t\t\t\t\t[-70.875486, 43.080457],\n\t\t\t\t\t\t[-71.072984, 43.081748],\n\t\t\t\t\t\t[-71.026688, 43.138086],\n\t\t\t\t\t\t[-71.247215, 43.274201],\n\t\t\t\t\t\t[-71.235828, 43.284717],\n\t\t\t\t\t\t[-71.160134, 43.355860],\n\t\t\t\t\t\t[-71.192207, 43.512589],\n\t\t\t\t\t\t[-71.163626, 43.539370],\n\t\t\t\t\t\t[-71.037296, 43.529689]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US34027\",\n\t\t\t\t\"STATE\": \"34\",\n\t\t\t\t\"COUNTY\": \"027\",\n\t\t\t\t\"NAME\": \"Morris\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 460.177000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-74.767874, 40.911823],\n\t\t\t\t\t\t[-74.653030, 40.921623],\n\t\t\t\t\t\t[-74.536002, 41.058497],\n\t\t\t\t\t\t[-74.504928, 41.084805],\n\t\t\t\t\t\t[-74.502892, 41.085904],\n\t\t\t\t\t\t[-74.334605, 41.003719],\n\t\t\t\t\t\t[-74.315226, 41.001991],\n\t\t\t\t\t\t[-74.309838, 40.998484],\n\t\t\t\t\t\t[-74.300327, 41.002743],\n\t\t\t\t\t\t[-74.270702, 40.896920],\n\t\t\t\t\t\t[-74.334316, 40.905302],\n\t\t\t\t\t\t[-74.371923, 40.739229],\n\t\t\t\t\t\t[-74.461231, 40.673397],\n\t\t\t\t\t\t[-74.470020, 40.667934],\n\t\t\t\t\t\t[-74.484289, 40.666065],\n\t\t\t\t\t\t[-74.484118, 40.663387],\n\t\t\t\t\t\t[-74.503863, 40.659627],\n\t\t\t\t\t\t[-74.510502, 40.650295],\n\t\t\t\t\t\t[-74.523627, 40.649702],\n\t\t\t\t\t\t[-74.534387, 40.667256],\n\t\t\t\t\t\t[-74.513608, 40.697339],\n\t\t\t\t\t\t[-74.526846, 40.710872],\n\t\t\t\t\t\t[-74.528827, 40.728133],\n\t\t\t\t\t\t[-74.548999, 40.740994],\n\t\t\t\t\t\t[-74.555771, 40.758005],\n\t\t\t\t\t\t[-74.724418, 40.719455],\n\t\t\t\t\t\t[-74.889753, 40.787832],\n\t\t\t\t\t\t[-74.767874, 40.911823]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US34037\",\n\t\t\t\t\"STATE\": \"34\",\n\t\t\t\t\"COUNTY\": \"037\",\n\t\t\t\t\"NAME\": \"Sussex\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 519.014000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-74.969434, 41.096074],\n\t\t\t\t\t\t[-74.974338, 41.103912],\n\t\t\t\t\t\t[-74.923169, 41.138146],\n\t\t\t\t\t\t[-74.882139, 41.180836],\n\t\t\t\t\t\t[-74.867287, 41.208754],\n\t\t\t\t\t\t[-74.864356, 41.224854],\n\t\t\t\t\t\t[-74.867267, 41.228861],\n\t\t\t\t\t\t[-74.861678, 41.241575],\n\t\t\t\t\t\t[-74.838366, 41.277286],\n\t\t\t\t\t\t[-74.830057, 41.287200],\n\t\t\t\t\t\t[-74.795847, 41.318951],\n\t\t\t\t\t\t[-74.761730, 41.336398],\n\t\t\t\t\t\t[-74.694914, 41.357423],\n\t\t\t\t\t\t[-74.457584, 41.248225],\n\t\t\t\t\t\t[-74.392098, 41.215594],\n\t\t\t\t\t\t[-74.365664, 41.203400],\n\t\t\t\t\t\t[-74.365897, 41.202894],\n\t\t\t\t\t\t[-74.502892, 41.085904],\n\t\t\t\t\t\t[-74.504928, 41.084805],\n\t\t\t\t\t\t[-74.536002, 41.058497],\n\t\t\t\t\t\t[-74.653030, 40.921623],\n\t\t\t\t\t\t[-74.767874, 40.911823],\n\t\t\t\t\t\t[-74.789210, 40.931298],\n\t\t\t\t\t\t[-74.966349, 41.094003],\n\t\t\t\t\t\t[-74.967389, 41.094049],\n\t\t\t\t\t\t[-74.969434, 41.096074]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US41023\",\n\t\t\t\t\"STATE\": \"41\",\n\t\t\t\t\"COUNTY\": \"023\",\n\t\t\t\t\"NAME\": \"Grant\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 4528.541000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-119.655586, 44.306964],\n\t\t\t\t\t\t[-119.652128, 44.823171],\n\t\t\t\t\t\t[-119.671987, 44.994424],\n\t\t\t\t\t\t[-119.666708, 44.993525],\n\t\t\t\t\t\t[-119.163882, 44.995887],\n\t\t\t\t\t\t[-118.519063, 44.995956],\n\t\t\t\t\t\t[-118.244751, 44.958256],\n\t\t\t\t\t\t[-118.236652, 44.861565],\n\t\t\t\t\t\t[-118.296153, 44.862664],\n\t\t\t\t\t\t[-118.285153, 44.751172],\n\t\t\t\t\t\t[-118.519257, 44.706374],\n\t\t\t\t\t\t[-118.504257, 44.665575],\n\t\t\t\t\t\t[-118.372953, 44.645376],\n\t\t\t\t\t\t[-118.306150, 44.588979],\n\t\t\t\t\t\t[-118.408450, 44.452782],\n\t\t\t\t\t\t[-118.409749, 44.378683],\n\t\t\t\t\t\t[-118.469050, 44.334583],\n\t\t\t\t\t\t[-118.497249, 44.255084],\n\t\t\t\t\t\t[-118.232140, 44.256083],\n\t\t\t\t\t\t[-118.227435, 44.039981],\n\t\t\t\t\t\t[-118.586746, 44.040078],\n\t\t\t\t\t\t[-118.816250, 44.047678],\n\t\t\t\t\t\t[-118.816649, 43.959975],\n\t\t\t\t\t\t[-119.657577, 43.959051],\n\t\t\t\t\t\t[-119.655586, 44.306964]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US41047\",\n\t\t\t\t\"STATE\": \"41\",\n\t\t\t\t\"COUNTY\": \"047\",\n\t\t\t\t\"NAME\": \"Marion\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1182.326000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-121.734167, 44.885782],\n\t\t\t\t\t\t[-121.733782, 44.881740],\n\t\t\t\t\t\t[-121.745582, 44.875440],\n\t\t\t\t\t\t[-121.753182, 44.861240],\n\t\t\t\t\t\t[-121.751131, 44.856990],\n\t\t\t\t\t\t[-121.742481, 44.853140],\n\t\t\t\t\t\t[-121.742081, 44.845340],\n\t\t\t\t\t\t[-121.749381, 44.833540],\n\t\t\t\t\t\t[-121.759480, 44.825640],\n\t\t\t\t\t\t[-121.794077, 44.683940],\n\t\t\t\t\t\t[-122.033233, 44.685678],\n\t\t\t\t\t\t[-122.154047, 44.719762],\n\t\t\t\t\t\t[-122.230559, 44.697867],\n\t\t\t\t\t\t[-122.288446, 44.753065],\n\t\t\t\t\t\t[-122.478373, 44.755551],\n\t\t\t\t\t\t[-122.619769, 44.788950],\n\t\t\t\t\t\t[-122.798369, 44.791564],\n\t\t\t\t\t\t[-123.006847, 44.686898],\n\t\t\t\t\t\t[-123.061509, 44.747952],\n\t\t\t\t\t\t[-123.143556, 44.749670],\n\t\t\t\t\t\t[-123.092503, 44.813538],\n\t\t\t\t\t\t[-123.178687, 44.833551],\n\t\t\t\t\t\t[-123.113081, 44.928577],\n\t\t\t\t\t\t[-123.039507, 44.951741],\n\t\t\t\t\t\t[-123.069955, 45.075108],\n\t\t\t\t\t\t[-122.996959, 45.119790],\n\t\t\t\t\t\t[-123.040165, 45.221961],\n\t\t\t\t\t\t[-122.962688, 45.284254],\n\t\t\t\t\t\t[-122.900435, 45.257063],\n\t\t\t\t\t\t[-122.849723, 45.259654],\n\t\t\t\t\t\t[-122.738988, 45.259532],\n\t\t\t\t\t\t[-122.788386, 45.130129],\n\t\t\t\t\t\t[-122.508396, 44.919805],\n\t\t\t\t\t\t[-122.395327, 44.885734],\n\t\t\t\t\t\t[-121.734167, 44.885782]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US41061\",\n\t\t\t\t\"STATE\": \"41\",\n\t\t\t\t\"COUNTY\": \"061\",\n\t\t\t\t\"NAME\": \"Union\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2036.606000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-118.519063, 44.995956],\n\t\t\t\t\t\t[-118.548568, 45.080756],\n\t\t\t\t\t\t[-118.546678, 45.196951],\n\t\t\t\t\t\t[-118.655777, 45.196855],\n\t\t\t\t\t\t[-118.696782, 45.257653],\n\t\t\t\t\t\t[-118.697684, 45.345153],\n\t\t\t\t\t\t[-118.428268, 45.355151],\n\t\t\t\t\t\t[-118.428469, 45.428951],\n\t\t\t\t\t\t[-118.197957, 45.427153],\n\t\t\t\t\t\t[-118.198158, 45.470453],\n\t\t\t\t\t\t[-118.117053, 45.470754],\n\t\t\t\t\t\t[-118.117153, 45.688498],\n\t\t\t\t\t\t[-118.066823, 45.688365],\n\t\t\t\t\t\t[-118.045003, 45.817098],\n\t\t\t\t\t\t[-117.973666, 45.816978],\n\t\t\t\t\t\t[-117.972922, 45.860586],\n\t\t\t\t\t\t[-117.747313, 45.861012],\n\t\t\t\t\t\t[-117.747101, 45.773346],\n\t\t\t\t\t\t[-117.788236, 45.773726],\n\t\t\t\t\t\t[-117.787637, 45.689597],\n\t\t\t\t\t\t[-117.727149, 45.617272],\n\t\t\t\t\t\t[-117.727271, 45.514705],\n\t\t\t\t\t\t[-117.683957, 45.515143],\n\t\t\t\t\t\t[-117.663557, 45.365757],\n\t\t\t\t\t\t[-117.583018, 45.338291],\n\t\t\t\t\t\t[-117.521904, 45.267762],\n\t\t\t\t\t\t[-117.476987, 45.165315],\n\t\t\t\t\t\t[-117.267162, 45.165858],\n\t\t\t\t\t\t[-117.266572, 45.080805],\n\t\t\t\t\t\t[-117.563138, 45.079588],\n\t\t\t\t\t\t[-117.563714, 44.992788],\n\t\t\t\t\t\t[-117.777504, 44.992161],\n\t\t\t\t\t\t[-117.843430, 45.058477],\n\t\t\t\t\t\t[-117.969185, 44.995803],\n\t\t\t\t\t\t[-118.130309, 45.045124],\n\t\t\t\t\t\t[-118.244751, 44.958256],\n\t\t\t\t\t\t[-118.519063, 44.995956]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42009\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"009\",\n\t\t\t\t\"NAME\": \"Bedford\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1012.296000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.620383, 40.327025],\n\t\t\t\t\t\t[-78.447895, 40.244395],\n\t\t\t\t\t\t[-78.434288, 40.302301],\n\t\t\t\t\t\t[-78.288764, 40.242107],\n\t\t\t\t\t\t[-78.257305, 40.297883],\n\t\t\t\t\t\t[-78.236302, 40.224559],\n\t\t\t\t\t\t[-78.134863, 40.165131],\n\t\t\t\t\t\t[-78.299003, 39.825500],\n\t\t\t\t\t\t[-78.380599, 39.722554],\n\t\t\t\t\t\t[-78.808387, 39.722726],\n\t\t\t\t\t\t[-78.757241, 39.823484],\n\t\t\t\t\t\t[-78.763206, 40.057005],\n\t\t\t\t\t\t[-78.658409, 40.242933],\n\t\t\t\t\t\t[-78.620383, 40.327025]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48355\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"355\",\n\t\t\t\t\"NAME\": \"Nueces\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 838.482000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.377166, 27.875181],\n\t\t\t\t\t\t[-97.361246, 27.849891],\n\t\t\t\t\t\t[-97.379042, 27.837867],\n\t\t\t\t\t\t[-97.391764, 27.813948],\n\t\t\t\t\t\t[-97.393291, 27.782905],\n\t\t\t\t\t\t[-97.386166, 27.766620],\n\t\t\t\t\t\t[-97.368355, 27.741683],\n\t\t\t\t\t\t[-97.346980, 27.725398],\n\t\t\t\t\t\t[-97.316446, 27.712676],\n\t\t\t\t\t\t[-97.253955, 27.696696],\n\t\t\t\t\t\t[-97.259957, 27.679597],\n\t\t\t\t\t\t[-97.266064, 27.678579],\n\t\t\t\t\t\t[-97.296598, 27.613947],\n\t\t\t\t\t\t[-97.298634, 27.604787],\n\t\t\t\t\t\t[-97.297616, 27.598680],\n\t\t\t\t\t\t[-97.294054, 27.594100],\n\t\t\t\t\t\t[-97.302196, 27.585957],\n\t\t\t\t\t\t[-97.321535, 27.571199],\n\t\t\t\t\t\t[-97.325118, 27.560927],\n\t\t\t\t\t\t[-97.840678, 27.558358],\n\t\t\t\t\t\t[-97.942146, 27.635932],\n\t\t\t\t\t\t[-97.934274, 27.885202],\n\t\t\t\t\t\t[-97.798517, 27.995659],\n\t\t\t\t\t\t[-97.805765, 27.934287],\n\t\t\t\t\t\t[-97.691074, 27.917353],\n\t\t\t\t\t\t[-97.589473, 27.856101],\n\t\t\t\t\t\t[-97.377166, 27.875181]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48363\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"363\",\n\t\t\t\t\"NAME\": \"Palo Pinto\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 951.791000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.576256, 32.515163],\n\t\t\t\t\t\t[-98.575616, 32.954349],\n\t\t\t\t\t\t[-98.427211, 32.952300],\n\t\t\t\t\t\t[-98.426553, 33.007913],\n\t\t\t\t\t\t[-98.056094, 33.003332],\n\t\t\t\t\t\t[-98.066836, 32.558822],\n\t\t\t\t\t\t[-98.068545, 32.511626],\n\t\t\t\t\t\t[-98.475177, 32.513039],\n\t\t\t\t\t\t[-98.495775, 32.513026],\n\t\t\t\t\t\t[-98.573016, 32.515261],\n\t\t\t\t\t\t[-98.576256, 32.515163]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48373\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"373\",\n\t\t\t\t\"NAME\": \"Polk\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1057.093000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.061113, 30.941302],\n\t\t\t\t\t\t[-94.939245, 31.041981],\n\t\t\t\t\t\t[-94.842947, 31.146578],\n\t\t\t\t\t\t[-94.561943, 31.058952],\n\t\t\t\t\t\t[-94.657992, 31.012007],\n\t\t\t\t\t\t[-94.545717, 30.526977],\n\t\t\t\t\t\t[-94.537926, 30.491059],\n\t\t\t\t\t\t[-94.732732, 30.490066],\n\t\t\t\t\t\t[-94.777341, 30.489002],\n\t\t\t\t\t\t[-94.849414, 30.493553],\n\t\t\t\t\t\t[-94.830429, 30.541613],\n\t\t\t\t\t\t[-95.028628, 30.578485],\n\t\t\t\t\t\t[-95.054602, 30.680173],\n\t\t\t\t\t\t[-95.135384, 30.693816],\n\t\t\t\t\t\t[-95.131205, 30.781703],\n\t\t\t\t\t\t[-95.200180, 30.824566],\n\t\t\t\t\t\t[-95.061113, 30.941302]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48389\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"389\",\n\t\t\t\t\"NAME\": \"Reeves\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2635.375000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-103.980179, 32.000125],\n\t\t\t\t\t\t[-103.885584, 31.870373],\n\t\t\t\t\t\t[-103.829385, 31.887992],\n\t\t\t\t\t\t[-103.797232, 31.770187],\n\t\t\t\t\t\t[-103.625726, 31.705032],\n\t\t\t\t\t\t[-103.610887, 31.651802],\n\t\t\t\t\t\t[-103.574890, 31.632662],\n\t\t\t\t\t\t[-103.530927, 31.642284],\n\t\t\t\t\t\t[-103.459426, 31.428494],\n\t\t\t\t\t\t[-103.011040, 31.371306],\n\t\t\t\t\t\t[-103.585084, 30.766470],\n\t\t\t\t\t\t[-104.102351, 31.105203],\n\t\t\t\t\t\t[-104.024521, 32.000010],\n\t\t\t\t\t\t[-103.980179, 32.000125]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48405\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"405\",\n\t\t\t\t\"NAME\": \"San Augustine\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 530.657000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.326616, 31.224754],\n\t\t\t\t\t\t[-94.339773, 31.240820],\n\t\t\t\t\t\t[-94.311042, 31.589252],\n\t\t\t\t\t\t[-94.395361, 31.638752],\n\t\t\t\t\t\t[-94.399091, 31.653596],\n\t\t\t\t\t\t[-94.090717, 31.620609],\n\t\t\t\t\t\t[-93.984461, 31.569419],\n\t\t\t\t\t\t[-93.983239, 31.466114],\n\t\t\t\t\t\t[-94.044154, 31.409979],\n\t\t\t\t\t\t[-94.039034, 31.134271],\n\t\t\t\t\t\t[-94.129632, 31.099280],\n\t\t\t\t\t\t[-94.326616, 31.224754]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48413\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"413\",\n\t\t\t\t\"NAME\": \"Schleicher\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1310.630000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.116234, 30.710366],\n\t\t\t\t\t\t[-100.849229, 30.706222],\n\t\t\t\t\t\t[-100.960587, 30.706071],\n\t\t\t\t\t\t[-100.962176, 31.082490],\n\t\t\t\t\t\t[-100.688764, 31.086576],\n\t\t\t\t\t\t[-100.115216, 31.087994],\n\t\t\t\t\t\t[-100.116234, 30.710366]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48421\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"421\",\n\t\t\t\t\"NAME\": \"Sherman\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 923.035000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-102.162463, 36.500326],\n\t\t\t\t\t\t[-102.032339, 36.500066],\n\t\t\t\t\t\t[-101.826565, 36.499654],\n\t\t\t\t\t\t[-101.826498, 36.499535],\n\t\t\t\t\t\t[-101.788110, 36.499678],\n\t\t\t\t\t\t[-101.783359, 36.499709],\n\t\t\t\t\t\t[-101.781987, 36.499718],\n\t\t\t\t\t\t[-101.780610, 36.499727],\n\t\t\t\t\t\t[-101.779435, 36.499734],\n\t\t\t\t\t\t[-101.709314, 36.499722],\n\t\t\t\t\t\t[-101.698685, 36.499508],\n\t\t\t\t\t\t[-101.653708, 36.499573],\n\t\t\t\t\t\t[-101.649966, 36.499573],\n\t\t\t\t\t\t[-101.623915, 36.499528],\n\t\t\t\t\t\t[-101.623466, 36.055405],\n\t\t\t\t\t\t[-102.163015, 36.055249],\n\t\t\t\t\t\t[-102.162771, 36.497902],\n\t\t\t\t\t\t[-102.162463, 36.500326]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48439\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"439\",\n\t\t\t\t\"NAME\": \"Tarrant\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 863.608000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.550582, 32.555391],\n\t\t\t\t\t\t[-97.550368, 32.580323],\n\t\t\t\t\t\t[-97.544181, 32.994177],\n\t\t\t\t\t\t[-97.414843, 32.992029],\n\t\t\t\t\t\t[-97.398480, 32.990839],\n\t\t\t\t\t\t[-97.397205, 32.990747],\n\t\t\t\t\t\t[-97.379940, 32.990144],\n\t\t\t\t\t\t[-97.294230, 32.990260],\n\t\t\t\t\t\t[-97.167261, 32.989802],\n\t\t\t\t\t\t[-97.032287, 32.989324],\n\t\t\t\t\t\t[-97.032687, 32.920614],\n\t\t\t\t\t\t[-97.038385, 32.548662],\n\t\t\t\t\t\t[-97.052620, 32.548907],\n\t\t\t\t\t\t[-97.086834, 32.549428],\n\t\t\t\t\t\t[-97.550582, 32.555391]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48455\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"455\",\n\t\t\t\t\"NAME\": \"Trinity\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 693.608000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.842947, 31.146578],\n\t\t\t\t\t\t[-94.939245, 31.041981],\n\t\t\t\t\t\t[-95.061113, 30.941302],\n\t\t\t\t\t\t[-95.200180, 30.824566],\n\t\t\t\t\t\t[-95.252385, 30.906719],\n\t\t\t\t\t\t[-95.327482, 30.859537],\n\t\t\t\t\t\t[-95.434335, 30.937405],\n\t\t\t\t\t\t[-95.434711, 31.046630],\n\t\t\t\t\t\t[-95.434781, 31.058098],\n\t\t\t\t\t\t[-94.958110, 31.386930],\n\t\t\t\t\t\t[-94.909502, 31.337059],\n\t\t\t\t\t\t[-94.842947, 31.146578]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48471\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"471\",\n\t\t\t\t\"NAME\": \"Walker\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 784.169000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.434711, 31.046630],\n\t\t\t\t\t\t[-95.434335, 30.937405],\n\t\t\t\t\t\t[-95.327482, 30.859537],\n\t\t\t\t\t\t[-95.359156, 30.504369],\n\t\t\t\t\t\t[-95.598971, 30.509002],\n\t\t\t\t\t\t[-95.830240, 30.630284],\n\t\t\t\t\t\t[-95.863059, 30.864125],\n\t\t\t\t\t\t[-95.617872, 30.930418],\n\t\t\t\t\t\t[-95.434781, 31.058098],\n\t\t\t\t\t\t[-95.434711, 31.046630]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13083\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"083\",\n\t\t\t\t\"NAME\": \"Dade\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 173.981000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.605165, 34.984678],\n\t\t\t\t\t\t[-85.474472, 34.983972],\n\t\t\t\t\t\t[-85.363919, 34.983375],\n\t\t\t\t\t\t[-85.450561, 34.831677],\n\t\t\t\t\t\t[-85.450409, 34.759241],\n\t\t\t\t\t\t[-85.534423, 34.623789],\n\t\t\t\t\t\t[-85.541264, 34.656701],\n\t\t\t\t\t\t[-85.541267, 34.656783],\n\t\t\t\t\t\t[-85.552454, 34.708138],\n\t\t\t\t\t\t[-85.552482, 34.708321],\n\t\t\t\t\t\t[-85.583145, 34.860371],\n\t\t\t\t\t\t[-85.595163, 34.924171],\n\t\t\t\t\t\t[-85.595191, 34.924331],\n\t\t\t\t\t\t[-85.605165, 34.984678]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13089\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"089\",\n\t\t\t\t\"NAME\": \"DeKalb\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 267.582000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.254149, 33.647045],\n\t\t\t\t\t\t[-84.281273, 33.647411],\n\t\t\t\t\t\t[-84.282619, 33.647009],\n\t\t\t\t\t\t[-84.350224, 33.647908],\n\t\t\t\t\t\t[-84.349799, 33.664035],\n\t\t\t\t\t\t[-84.348325, 33.852503],\n\t\t\t\t\t\t[-84.348138, 33.857692],\n\t\t\t\t\t\t[-84.348225, 33.859502],\n\t\t\t\t\t\t[-84.348525, 33.861903],\n\t\t\t\t\t\t[-84.348125, 33.864903],\n\t\t\t\t\t\t[-84.348325, 33.867903],\n\t\t\t\t\t\t[-84.348125, 33.879203],\n\t\t\t\t\t\t[-84.348425, 33.881902],\n\t\t\t\t\t\t[-84.348224, 33.892900],\n\t\t\t\t\t\t[-84.348225, 33.904802],\n\t\t\t\t\t\t[-84.348025, 33.918302],\n\t\t\t\t\t\t[-84.347825, 33.918902],\n\t\t\t\t\t\t[-84.347925, 33.927001],\n\t\t\t\t\t\t[-84.347823, 33.938017],\n\t\t\t\t\t\t[-84.276822, 33.957700],\n\t\t\t\t\t\t[-84.275722, 33.954201],\n\t\t\t\t\t\t[-84.271922, 33.955900],\n\t\t\t\t\t\t[-84.266306, 33.947577],\n\t\t\t\t\t\t[-84.272216, 33.944853],\n\t\t\t\t\t\t[-84.265337, 33.932576],\n\t\t\t\t\t\t[-84.259011, 33.918820],\n\t\t\t\t\t\t[-84.256022, 33.914401],\n\t\t\t\t\t\t[-84.250413, 33.910812],\n\t\t\t\t\t\t[-84.232220, 33.902002],\n\t\t\t\t\t\t[-84.216630, 33.884976],\n\t\t\t\t\t\t[-84.204720, 33.877003],\n\t\t\t\t\t\t[-84.203519, 33.873003],\n\t\t\t\t\t\t[-84.187005, 33.865515],\n\t\t\t\t\t\t[-84.179418, 33.864403],\n\t\t\t\t\t\t[-84.172139, 33.857516],\n\t\t\t\t\t\t[-84.023713, 33.752808],\n\t\t\t\t\t\t[-84.056614, 33.726608],\n\t\t\t\t\t\t[-84.104334, 33.636025],\n\t\t\t\t\t\t[-84.184143, 33.646157],\n\t\t\t\t\t\t[-84.223952, 33.646572],\n\t\t\t\t\t\t[-84.224235, 33.630657],\n\t\t\t\t\t\t[-84.245453, 33.630730],\n\t\t\t\t\t\t[-84.254149, 33.647045]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13097\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"097\",\n\t\t\t\t\"NAME\": \"Douglas\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 200.067000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.769935, 33.784704],\n\t\t\t\t\t\t[-84.741348, 33.788568],\n\t\t\t\t\t\t[-84.725477, 33.788579],\n\t\t\t\t\t\t[-84.724122, 33.791439],\n\t\t\t\t\t\t[-84.724139, 33.806170],\n\t\t\t\t\t\t[-84.619892, 33.805024],\n\t\t\t\t\t\t[-84.578132, 33.743507],\n\t\t\t\t\t\t[-84.586826, 33.729114],\n\t\t\t\t\t\t[-84.594332, 33.729007],\n\t\t\t\t\t\t[-84.601732, 33.724408],\n\t\t\t\t\t\t[-84.608032, 33.712908],\n\t\t\t\t\t\t[-84.621232, 33.704508],\n\t\t\t\t\t\t[-84.632131, 33.700312],\n\t\t\t\t\t\t[-84.630117, 33.693116],\n\t\t\t\t\t\t[-84.752735, 33.630210],\n\t\t\t\t\t\t[-84.763097, 33.614211],\n\t\t\t\t\t\t[-84.775591, 33.609662],\n\t\t\t\t\t\t[-84.805655, 33.586420],\n\t\t\t\t\t\t[-84.808934, 33.574085],\n\t\t\t\t\t\t[-84.905788, 33.573378],\n\t\t\t\t\t\t[-84.902546, 33.661066],\n\t\t\t\t\t\t[-84.901688, 33.780703],\n\t\t\t\t\t\t[-84.879151, 33.774758],\n\t\t\t\t\t\t[-84.832708, 33.776019],\n\t\t\t\t\t\t[-84.832705, 33.778522],\n\t\t\t\t\t\t[-84.799853, 33.779909],\n\t\t\t\t\t\t[-84.795109, 33.779809],\n\t\t\t\t\t\t[-84.791993, 33.781162],\n\t\t\t\t\t\t[-84.769935, 33.784704]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13105\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"105\",\n\t\t\t\t\"NAME\": \"Elbert\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 351.055000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.741491, 34.208709],\n\t\t\t\t\t\t[-82.731881, 34.178363],\n\t\t\t\t\t\t[-82.717507, 34.150504],\n\t\t\t\t\t\t[-82.704140, 34.141007],\n\t\t\t\t\t\t[-82.677320, 34.131657],\n\t\t\t\t\t\t[-82.668113, 34.120160],\n\t\t\t\t\t\t[-82.659077, 34.103544],\n\t\t\t\t\t\t[-82.658561, 34.103118],\n\t\t\t\t\t\t[-82.654019, 34.100346],\n\t\t\t\t\t\t[-82.652175, 34.099704],\n\t\t\t\t\t\t[-82.641252, 34.088914],\n\t\t\t\t\t\t[-82.640701, 34.088341],\n\t\t\t\t\t\t[-82.597079, 34.012390],\n\t\t\t\t\t\t[-82.564582, 33.955810],\n\t\t\t\t\t\t[-82.564483, 33.955744],\n\t\t\t\t\t\t[-82.645451, 33.984195],\n\t\t\t\t\t\t[-82.779506, 33.971124],\n\t\t\t\t\t\t[-82.976294, 34.043219],\n\t\t\t\t\t\t[-83.102074, 34.173794],\n\t\t\t\t\t\t[-83.078004, 34.223606],\n\t\t\t\t\t\t[-82.980905, 34.211505],\n\t\t\t\t\t\t[-82.766078, 34.293509],\n\t\t\t\t\t\t[-82.755028, 34.276067],\n\t\t\t\t\t\t[-82.741980, 34.230196],\n\t\t\t\t\t\t[-82.743461, 34.227343],\n\t\t\t\t\t\t[-82.744415, 34.224913],\n\t\t\t\t\t\t[-82.741920, 34.210063],\n\t\t\t\t\t\t[-82.741491, 34.208709]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13111\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"111\",\n\t\t\t\t\"NAME\": \"Fannin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 386.723000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.621483, 34.988329],\n\t\t\t\t\t\t[-84.509886, 34.988010],\n\t\t\t\t\t\t[-84.509052, 34.988033],\n\t\t\t\t\t\t[-84.394903, 34.988030],\n\t\t\t\t\t\t[-84.393935, 34.988068],\n\t\t\t\t\t\t[-84.321869, 34.988408],\n\t\t\t\t\t\t[-84.129555, 34.987504],\n\t\t\t\t\t\t[-84.129455, 34.987504],\n\t\t\t\t\t\t[-84.178672, 34.946497],\n\t\t\t\t\t\t[-84.107422, 34.886896],\n\t\t\t\t\t\t[-84.093193, 34.801411],\n\t\t\t\t\t\t[-84.158035, 34.648243],\n\t\t\t\t\t\t[-84.188557, 34.602692],\n\t\t\t\t\t\t[-84.189026, 34.608109],\n\t\t\t\t\t\t[-84.196754, 34.617924],\n\t\t\t\t\t\t[-84.314653, 34.807328],\n\t\t\t\t\t\t[-84.429093, 34.855036],\n\t\t\t\t\t\t[-84.618637, 34.855398],\n\t\t\t\t\t\t[-84.621483, 34.988329]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13121\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"121\",\n\t\t\t\t\"NAME\": \"Fulton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 526.635000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.752735, 33.630210],\n\t\t\t\t\t\t[-84.630117, 33.693116],\n\t\t\t\t\t\t[-84.632131, 33.700312],\n\t\t\t\t\t\t[-84.621232, 33.704508],\n\t\t\t\t\t\t[-84.608032, 33.712908],\n\t\t\t\t\t\t[-84.601732, 33.724408],\n\t\t\t\t\t\t[-84.594332, 33.729007],\n\t\t\t\t\t\t[-84.586826, 33.729114],\n\t\t\t\t\t\t[-84.578132, 33.743507],\n\t\t\t\t\t\t[-84.480134, 33.817319],\n\t\t\t\t\t\t[-84.442708, 33.901543],\n\t\t\t\t\t\t[-84.383027, 33.963800],\n\t\t\t\t\t\t[-84.418927, 34.073298],\n\t\t\t\t\t\t[-84.328263, 34.186144],\n\t\t\t\t\t\t[-84.258743, 34.185909],\n\t\t\t\t\t\t[-84.258934, 34.109539],\n\t\t\t\t\t\t[-84.200373, 34.090118],\n\t\t\t\t\t\t[-84.097692, 34.050654],\n\t\t\t\t\t\t[-84.276822, 33.957700],\n\t\t\t\t\t\t[-84.347823, 33.938017],\n\t\t\t\t\t\t[-84.347925, 33.927001],\n\t\t\t\t\t\t[-84.347825, 33.918902],\n\t\t\t\t\t\t[-84.348025, 33.918302],\n\t\t\t\t\t\t[-84.348225, 33.904802],\n\t\t\t\t\t\t[-84.348224, 33.892900],\n\t\t\t\t\t\t[-84.348425, 33.881902],\n\t\t\t\t\t\t[-84.348125, 33.879203],\n\t\t\t\t\t\t[-84.348325, 33.867903],\n\t\t\t\t\t\t[-84.348125, 33.864903],\n\t\t\t\t\t\t[-84.348525, 33.861903],\n\t\t\t\t\t\t[-84.348225, 33.859502],\n\t\t\t\t\t\t[-84.348138, 33.857692],\n\t\t\t\t\t\t[-84.348325, 33.852503],\n\t\t\t\t\t\t[-84.349799, 33.664035],\n\t\t\t\t\t\t[-84.350224, 33.647908],\n\t\t\t\t\t\t[-84.360224, 33.647909],\n\t\t\t\t\t\t[-84.365325, 33.647809],\n\t\t\t\t\t\t[-84.457726, 33.648870],\n\t\t\t\t\t\t[-84.458514, 33.608625],\n\t\t\t\t\t\t[-84.458627, 33.586456],\n\t\t\t\t\t\t[-84.458399, 33.572743],\n\t\t\t\t\t\t[-84.458630, 33.572107],\n\t\t\t\t\t\t[-84.458927, 33.565911],\n\t\t\t\t\t\t[-84.458924, 33.559759],\n\t\t\t\t\t\t[-84.458579, 33.556242],\n\t\t\t\t\t\t[-84.458665, 33.550933],\n\t\t\t\t\t\t[-84.609540, 33.502511],\n\t\t\t\t\t\t[-84.850713, 33.511457],\n\t\t\t\t\t\t[-84.808934, 33.574085],\n\t\t\t\t\t\t[-84.805655, 33.586420],\n\t\t\t\t\t\t[-84.775591, 33.609662],\n\t\t\t\t\t\t[-84.763097, 33.614211],\n\t\t\t\t\t\t[-84.752735, 33.630210]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08067\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"067\",\n\t\t\t\t\"NAME\": \"La Plata\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1692.078000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-107.481737, 36.999973],\n\t\t\t\t\t\t[-108.288086, 36.999555],\n\t\t\t\t\t\t[-108.288400, 36.999520],\n\t\t\t\t\t\t[-108.320464, 36.999499],\n\t\t\t\t\t\t[-108.320721, 36.999510],\n\t\t\t\t\t\t[-108.379203, 36.999459],\n\t\t\t\t\t\t[-108.197197, 37.355475],\n\t\t\t\t\t\t[-108.038409, 37.451931],\n\t\t\t\t\t\t[-108.023006, 37.590999],\n\t\t\t\t\t\t[-107.970086, 37.639587],\n\t\t\t\t\t\t[-107.482179, 37.639501],\n\t\t\t\t\t\t[-107.482131, 37.422673],\n\t\t\t\t\t\t[-107.481737, 36.999973]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08071\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"071\",\n\t\t\t\t\"NAME\": \"Las Animas\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 4772.672000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-104.007855, 36.996239],\n\t\t\t\t\t\t[-104.732031, 36.993447],\n\t\t\t\t\t\t[-104.732120, 36.993484],\n\t\t\t\t\t\t[-105.000554, 36.993264],\n\t\t\t\t\t\t[-105.120800, 36.995428],\n\t\t\t\t\t\t[-105.155042, 36.995339],\n\t\t\t\t\t\t[-105.154176, 37.293129],\n\t\t\t\t\t\t[-104.995505, 37.375551],\n\t\t\t\t\t\t[-104.748938, 37.407029],\n\t\t\t\t\t\t[-104.695075, 37.439915],\n\t\t\t\t\t\t[-104.696111, 37.485425],\n\t\t\t\t\t\t[-104.649229, 37.495320],\n\t\t\t\t\t\t[-104.548652, 37.574700],\n\t\t\t\t\t\t[-104.548417, 37.609424],\n\t\t\t\t\t\t[-104.454930, 37.740839],\n\t\t\t\t\t\t[-104.351109, 37.817488],\n\t\t\t\t\t\t[-104.061132, 37.734704],\n\t\t\t\t\t\t[-104.058196, 37.644049],\n\t\t\t\t\t\t[-103.404339, 37.643576],\n\t\t\t\t\t\t[-103.075938, 37.643420],\n\t\t\t\t\t\t[-103.086105, 36.999864],\n\t\t\t\t\t\t[-103.733247, 36.998016],\n\t\t\t\t\t\t[-103.734364, 36.998041],\n\t\t\t\t\t\t[-104.007855, 36.996239]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05095\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"095\",\n\t\t\t\t\"NAME\": \"Monroe\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 607.122000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.056276, 34.336605],\n\t\t\t\t\t\t[-91.107762, 34.353404],\n\t\t\t\t\t\t[-91.209161, 34.483221],\n\t\t\t\t\t\t[-91.377820, 34.563480],\n\t\t\t\t\t\t[-91.447795, 34.609185],\n\t\t\t\t\t\t[-91.446983, 34.667531],\n\t\t\t\t\t\t[-91.374765, 34.665964],\n\t\t\t\t\t\t[-91.368560, 34.912735],\n\t\t\t\t\t\t[-91.294790, 34.912452],\n\t\t\t\t\t\t[-91.293111, 34.985091],\n\t\t\t\t\t\t[-91.149842, 35.002470],\n\t\t\t\t\t\t[-91.152457, 34.911847],\n\t\t\t\t\t\t[-91.099961, 34.867120],\n\t\t\t\t\t\t[-91.102542, 34.734864],\n\t\t\t\t\t\t[-91.049474, 34.734184],\n\t\t\t\t\t\t[-91.051918, 34.645721],\n\t\t\t\t\t\t[-91.054774, 34.470880],\n\t\t\t\t\t\t[-91.000459, 34.469372],\n\t\t\t\t\t\t[-91.002693, 34.336353],\n\t\t\t\t\t\t[-91.056276, 34.336605]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17025\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"025\",\n\t\t\t\t\"NAME\": \"Clay\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 468.316000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.253851, 38.599502],\n\t\t\t\t\t\t[-88.564109, 38.607093],\n\t\t\t\t\t\t[-88.698457, 38.606304],\n\t\t\t\t\t\t[-88.695165, 38.826299],\n\t\t\t\t\t\t[-88.693531, 38.914617],\n\t\t\t\t\t\t[-88.620486, 38.915303],\n\t\t\t\t\t\t[-88.361745, 38.910847],\n\t\t\t\t\t\t[-88.361760, 38.851949],\n\t\t\t\t\t\t[-88.258608, 38.847521],\n\t\t\t\t\t\t[-88.253851, 38.599502]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17039\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"039\",\n\t\t\t\t\"NAME\": \"De Witt\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 397.513000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.689271, 40.282148],\n\t\t\t\t\t\t[-88.574885, 40.281501],\n\t\t\t\t\t\t[-88.745164, 40.055191],\n\t\t\t\t\t\t[-89.144764, 40.048853],\n\t\t\t\t\t\t[-89.148764, 40.282038],\n\t\t\t\t\t\t[-88.689271, 40.282148]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17045\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"045\",\n\t\t\t\t\"NAME\": \"Edgar\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 623.374000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.533227, 39.883000],\n\t\t\t\t\t\t[-87.533142, 39.810947],\n\t\t\t\t\t\t[-87.533056, 39.803922],\n\t\t\t\t\t\t[-87.533058, 39.796243],\n\t\t\t\t\t\t[-87.533066, 39.781743],\n\t\t\t\t\t\t[-87.532703, 39.664868],\n\t\t\t\t\t\t[-87.532444, 39.646102],\n\t\t\t\t\t\t[-87.532365, 39.646126],\n\t\t\t\t\t\t[-87.532196, 39.607306],\n\t\t\t\t\t\t[-87.532008, 39.564013],\n\t\t\t\t\t\t[-87.531939, 39.545853],\n\t\t\t\t\t\t[-87.531965, 39.526937],\n\t\t\t\t\t\t[-87.531692, 39.495516],\n\t\t\t\t\t\t[-87.531627, 39.491698],\n\t\t\t\t\t\t[-87.531663, 39.477120],\n\t\t\t\t\t\t[-87.531663, 39.477110],\n\t\t\t\t\t\t[-87.960179, 39.481309],\n\t\t\t\t\t\t[-87.966600, 39.685928],\n\t\t\t\t\t\t[-87.937645, 39.879803],\n\t\t\t\t\t\t[-87.533227, 39.883000]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17061\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"061\",\n\t\t\t\t\"NAME\": \"Greene\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 543.019000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.487490, 39.175133],\n\t\t\t\t\t\t[-90.574615, 39.178623],\n\t\t\t\t\t\t[-90.603569, 39.117592],\n\t\t\t\t\t\t[-90.613694, 39.395775],\n\t\t\t\t\t\t[-90.593256, 39.484586],\n\t\t\t\t\t\t[-90.590605, 39.493675],\n\t\t\t\t\t\t[-90.582202, 39.510332],\n\t\t\t\t\t\t[-90.581055, 39.521728],\n\t\t\t\t\t\t[-90.301801, 39.520192],\n\t\t\t\t\t\t[-90.153750, 39.520315],\n\t\t\t\t\t\t[-90.150641, 39.346315],\n\t\t\t\t\t\t[-90.149173, 39.334597],\n\t\t\t\t\t\t[-90.148069, 39.261947],\n\t\t\t\t\t\t[-90.314071, 39.225053],\n\t\t\t\t\t\t[-90.370711, 39.174444],\n\t\t\t\t\t\t[-90.487490, 39.175133]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17069\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"069\",\n\t\t\t\t\"NAME\": \"Hardin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 177.528000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.133416, 37.574277],\n\t\t\t\t\t\t[-88.133393, 37.574235],\n\t\t\t\t\t\t[-88.133306, 37.574191],\n\t\t\t\t\t\t[-88.133235, 37.574154],\n\t\t\t\t\t\t[-88.121517, 37.568166],\n\t\t\t\t\t\t[-88.072242, 37.528826],\n\t\t\t\t\t\t[-88.063311, 37.515755],\n\t\t\t\t\t\t[-88.061311, 37.505332],\n\t\t\t\t\t\t[-88.061292, 37.505232],\n\t\t\t\t\t\t[-88.062562, 37.489385],\n\t\t\t\t\t\t[-88.083395, 37.473683],\n\t\t\t\t\t\t[-88.255193, 37.456748],\n\t\t\t\t\t\t[-88.281667, 37.452596],\n\t\t\t\t\t\t[-88.312585, 37.440591],\n\t\t\t\t\t\t[-88.330622, 37.429316],\n\t\t\t\t\t\t[-88.358436, 37.404860],\n\t\t\t\t\t\t[-88.408808, 37.425216],\n\t\t\t\t\t\t[-88.414895, 37.423461],\n\t\t\t\t\t\t[-88.415149, 37.424863],\n\t\t\t\t\t\t[-88.412112, 37.599912],\n\t\t\t\t\t\t[-88.375332, 37.599563],\n\t\t\t\t\t\t[-88.133416, 37.574277]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18049\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"049\",\n\t\t\t\t\"NAME\": \"Fulton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 368.388000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.945561, 41.042876],\n\t\t\t\t\t\t[-85.945400, 41.000149],\n\t\t\t\t\t\t[-85.946436, 40.999195],\n\t\t\t\t\t\t[-86.168459, 40.996097],\n\t\t\t\t\t\t[-86.169012, 40.909836],\n\t\t\t\t\t\t[-86.468509, 40.909889],\n\t\t\t\t\t\t[-86.467046, 41.171442],\n\t\t\t\t\t\t[-86.077551, 41.172868],\n\t\t\t\t\t\t[-86.075939, 41.084878],\n\t\t\t\t\t\t[-85.945561, 41.042876]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18053\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"053\",\n\t\t\t\t\"NAME\": \"Grant\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 414.074000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.863641, 40.565525],\n\t\t\t\t\t\t[-85.864791, 40.651693],\n\t\t\t\t\t\t[-85.857147, 40.651364],\n\t\t\t\t\t\t[-85.638587, 40.653129],\n\t\t\t\t\t\t[-85.448825, 40.653607],\n\t\t\t\t\t\t[-85.448993, 40.651271],\n\t\t\t\t\t\t[-85.447014, 40.566929],\n\t\t\t\t\t\t[-85.444330, 40.379140],\n\t\t\t\t\t\t[-85.552303, 40.378666],\n\t\t\t\t\t\t[-85.578589, 40.379524],\n\t\t\t\t\t\t[-85.587859, 40.379757],\n\t\t\t\t\t\t[-85.862296, 40.378367],\n\t\t\t\t\t\t[-85.862117, 40.406889],\n\t\t\t\t\t\t[-85.863641, 40.565525]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18063\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"063\",\n\t\t\t\t\"NAME\": \"Hendricks\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 406.911000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.326576, 39.682896],\n\t\t\t\t\t\t[-86.326341, 39.632177],\n\t\t\t\t\t\t[-86.465605, 39.600769],\n\t\t\t\t\t\t[-86.656650, 39.601395],\n\t\t\t\t\t\t[-86.687406, 39.630437],\n\t\t\t\t\t\t[-86.695127, 39.864845],\n\t\t\t\t\t\t[-86.695071, 39.922770],\n\t\t\t\t\t\t[-86.326293, 39.924029],\n\t\t\t\t\t\t[-86.326576, 39.682896]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18075\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"075\",\n\t\t\t\t\"NAME\": \"Jay\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 383.905000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.804119, 40.352757],\n\t\t\t\t\t\t[-84.803917, 40.310115],\n\t\t\t\t\t\t[-84.803918, 40.310094],\n\t\t\t\t\t\t[-85.218758, 40.306706],\n\t\t\t\t\t\t[-85.220028, 40.375043],\n\t\t\t\t\t\t[-85.219901, 40.379034],\n\t\t\t\t\t\t[-85.206831, 40.379182],\n\t\t\t\t\t\t[-85.201146, 40.567242],\n\t\t\t\t\t\t[-85.068479, 40.568240],\n\t\t\t\t\t\t[-84.802265, 40.572212],\n\t\t\t\t\t\t[-84.802483, 40.528046],\n\t\t\t\t\t\t[-84.803068, 40.465388],\n\t\t\t\t\t\t[-84.804119, 40.352844],\n\t\t\t\t\t\t[-84.804119, 40.352757]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18093\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"093\",\n\t\t\t\t\"NAME\": \"Lawrence\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 449.168000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.573548, 38.992147],\n\t\t\t\t\t\t[-86.317474, 38.990870],\n\t\t\t\t\t\t[-86.280389, 38.991028],\n\t\t\t\t\t\t[-86.275281, 38.763795],\n\t\t\t\t\t\t[-86.308701, 38.688101],\n\t\t\t\t\t\t[-86.683102, 38.686561],\n\t\t\t\t\t\t[-86.682853, 38.904697],\n\t\t\t\t\t\t[-86.682277, 38.992404],\n\t\t\t\t\t\t[-86.573548, 38.992147]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18099\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"099\",\n\t\t\t\t\"NAME\": \"Marshall\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 443.629000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.059230, 41.435812],\n\t\t\t\t\t\t[-86.054047, 41.173147],\n\t\t\t\t\t\t[-86.077551, 41.172868],\n\t\t\t\t\t\t[-86.467046, 41.171442],\n\t\t\t\t\t\t[-86.466603, 41.432968],\n\t\t\t\t\t\t[-86.467108, 41.476459],\n\t\t\t\t\t\t[-86.059451, 41.479154],\n\t\t\t\t\t\t[-86.059052, 41.445236],\n\t\t\t\t\t\t[-86.059237, 41.442753],\n\t\t\t\t\t\t[-86.059230, 41.435812]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18113\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"113\",\n\t\t\t\t\"NAME\": \"Noble\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 410.843000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.653507, 41.436856],\n\t\t\t\t\t\t[-85.654274, 41.515695],\n\t\t\t\t\t\t[-85.654747, 41.523347],\n\t\t\t\t\t\t[-85.194084, 41.526437],\n\t\t\t\t\t\t[-85.192094, 41.264209],\n\t\t\t\t\t\t[-85.307781, 41.264158],\n\t\t\t\t\t\t[-85.537180, 41.266157],\n\t\t\t\t\t\t[-85.651928, 41.294776],\n\t\t\t\t\t\t[-85.653507, 41.436856]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18119\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"119\",\n\t\t\t\t\"NAME\": \"Owen\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 385.288000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.683002, 39.165746],\n\t\t\t\t\t\t[-87.054578, 39.168086],\n\t\t\t\t\t\t[-87.053646, 39.342621],\n\t\t\t\t\t\t[-86.942473, 39.342043],\n\t\t\t\t\t\t[-86.939981, 39.473345],\n\t\t\t\t\t\t[-86.685710, 39.470063],\n\t\t\t\t\t\t[-86.632206, 39.470214],\n\t\t\t\t\t\t[-86.630818, 39.346948],\n\t\t\t\t\t\t[-86.685610, 39.336043],\n\t\t\t\t\t\t[-86.683002, 39.165746]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18133\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"133\",\n\t\t\t\t\"NAME\": \"Putnam\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 480.528000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.013062, 39.604787],\n\t\t\t\t\t\t[-87.009477, 39.866705],\n\t\t\t\t\t\t[-86.695127, 39.864845],\n\t\t\t\t\t\t[-86.687406, 39.630437],\n\t\t\t\t\t\t[-86.656650, 39.601395],\n\t\t\t\t\t\t[-86.685710, 39.470063],\n\t\t\t\t\t\t[-86.939981, 39.473345],\n\t\t\t\t\t\t[-87.014533, 39.473572],\n\t\t\t\t\t\t[-87.013062, 39.604787]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18145\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"145\",\n\t\t\t\t\"NAME\": \"Shelby\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 411.147000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.684515, 39.350049],\n\t\t\t\t\t\t[-85.854064, 39.349498],\n\t\t\t\t\t\t[-85.857460, 39.349312],\n\t\t\t\t\t\t[-85.952005, 39.347373],\n\t\t\t\t\t\t[-85.953220, 39.383520],\n\t\t\t\t\t\t[-85.952545, 39.435921],\n\t\t\t\t\t\t[-85.951220, 39.436053],\n\t\t\t\t\t\t[-85.950800, 39.495220],\n\t\t\t\t\t\t[-85.952523, 39.609150],\n\t\t\t\t\t\t[-85.952080, 39.638345],\n\t\t\t\t\t\t[-85.951721, 39.697136],\n\t\t\t\t\t\t[-85.633228, 39.698462],\n\t\t\t\t\t\t[-85.632525, 39.697504],\n\t\t\t\t\t\t[-85.629327, 39.452750],\n\t\t\t\t\t\t[-85.630630, 39.350205],\n\t\t\t\t\t\t[-85.684515, 39.350049]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18157\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"157\",\n\t\t\t\t\"NAME\": \"Tippecanoe\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 499.806000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.093676, 40.475745],\n\t\t\t\t\t\t[-87.095357, 40.562895],\n\t\t\t\t\t\t[-86.771293, 40.562082],\n\t\t\t\t\t\t[-86.695353, 40.561874],\n\t\t\t\t\t\t[-86.694665, 40.432156],\n\t\t\t\t\t\t[-86.695637, 40.214367],\n\t\t\t\t\t\t[-87.092563, 40.214806],\n\t\t\t\t\t\t[-87.092148, 40.366612],\n\t\t\t\t\t\t[-87.092780, 40.475075],\n\t\t\t\t\t\t[-87.093676, 40.475745]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US35011\",\n\t\t\t\t\"STATE\": \"35\",\n\t\t\t\t\"COUNTY\": \"011\",\n\t\t\t\t\"NAME\": \"De Baca\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2322.623000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-103.948839, 34.605058],\n\t\t\t\t\t\t[-103.945949, 34.082784],\n\t\t\t\t\t\t[-104.155841, 34.083320],\n\t\t\t\t\t\t[-104.156269, 33.995413],\n\t\t\t\t\t\t[-104.785964, 34.000057],\n\t\t\t\t\t\t[-104.786238, 34.087763],\n\t\t\t\t\t\t[-104.893141, 34.088304],\n\t\t\t\t\t\t[-104.891850, 34.346989],\n\t\t\t\t\t\t[-104.892023, 34.604426],\n\t\t\t\t\t\t[-104.444913, 34.604821],\n\t\t\t\t\t\t[-104.340132, 34.779062],\n\t\t\t\t\t\t[-104.129424, 34.779324],\n\t\t\t\t\t\t[-104.128880, 34.605220],\n\t\t\t\t\t\t[-103.948839, 34.605058]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30049\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"049\",\n\t\t\t\t\"NAME\": \"Lewis and Clark\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 3458.828000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-112.310610, 46.421006],\n\t\t\t\t\t\t[-112.298607, 46.625918],\n\t\t\t\t\t\t[-112.410855, 46.656711],\n\t\t\t\t\t\t[-112.410790, 46.699696],\n\t\t\t\t\t\t[-112.535313, 46.698527],\n\t\t\t\t\t\t[-112.535608, 46.834382],\n\t\t\t\t\t\t[-112.795320, 46.831772],\n\t\t\t\t\t\t[-112.796594, 47.177222],\n\t\t\t\t\t\t[-113.058866, 47.179369],\n\t\t\t\t\t\t[-113.059444, 47.488096],\n\t\t\t\t\t\t[-113.114863, 47.490564],\n\t\t\t\t\t\t[-113.144926, 47.596363],\n\t\t\t\t\t\t[-113.165906, 47.720729],\n\t\t\t\t\t\t[-113.080938, 47.749885],\n\t\t\t\t\t\t[-113.086670, 47.918109],\n\t\t\t\t\t\t[-112.984705, 47.953982],\n\t\t\t\t\t\t[-112.913256, 47.826216],\n\t\t\t\t\t\t[-112.914220, 47.694958],\n\t\t\t\t\t\t[-112.818574, 47.607849],\n\t\t\t\t\t\t[-112.552310, 47.652231],\n\t\t\t\t\t\t[-112.278406, 47.505955],\n\t\t\t\t\t\t[-112.047308, 47.516028],\n\t\t\t\t\t\t[-112.044923, 47.192710],\n\t\t\t\t\t\t[-111.789326, 47.128993],\n\t\t\t\t\t\t[-111.790092, 46.913930],\n\t\t\t\t\t\t[-111.658131, 46.913364],\n\t\t\t\t\t\t[-111.645393, 46.841937],\n\t\t\t\t\t\t[-111.497961, 46.762469],\n\t\t\t\t\t\t[-111.639261, 46.738180],\n\t\t\t\t\t\t[-111.631643, 46.569108],\n\t\t\t\t\t\t[-111.787875, 46.568998],\n\t\t\t\t\t\t[-112.029312, 46.569096],\n\t\t\t\t\t\t[-112.188399, 46.499211],\n\t\t\t\t\t\t[-112.175790, 46.456606],\n\t\t\t\t\t\t[-112.310610, 46.421006]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30053\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"053\",\n\t\t\t\t\"NAME\": \"Lincoln\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 3612.916000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-116.049353, 48.215460],\n\t\t\t\t\t\t[-116.049226, 48.502058],\n\t\t\t\t\t\t[-116.049023, 48.957947],\n\t\t\t\t\t\t[-116.049025, 48.958351],\n\t\t\t\t\t\t[-116.049193, 49.000912],\n\t\t\t\t\t\t[-115.251126, 48.999557],\n\t\t\t\t\t\t[-114.728125, 49.000623],\n\t\t\t\t\t\t[-114.691742, 48.842091],\n\t\t\t\t\t\t[-114.732480, 48.809234],\n\t\t\t\t\t\t[-114.611925, 48.751888],\n\t\t\t\t\t\t[-114.692445, 48.680372],\n\t\t\t\t\t\t[-114.639014, 48.658959],\n\t\t\t\t\t\t[-114.888676, 48.658490],\n\t\t\t\t\t\t[-114.888446, 48.573612],\n\t\t\t\t\t\t[-114.849699, 48.573549],\n\t\t\t\t\t\t[-114.847946, 48.226159],\n\t\t\t\t\t\t[-115.020079, 48.225954],\n\t\t\t\t\t\t[-115.010806, 48.017256],\n\t\t\t\t\t\t[-115.154475, 48.017703],\n\t\t\t\t\t\t[-115.185098, 47.919079],\n\t\t\t\t\t\t[-115.278707, 47.890261],\n\t\t\t\t\t\t[-115.525428, 47.908957],\n\t\t\t\t\t\t[-115.537646, 47.981705],\n\t\t\t\t\t\t[-115.636930, 48.074611],\n\t\t\t\t\t\t[-115.671869, 48.206171],\n\t\t\t\t\t\t[-115.737709, 48.263009],\n\t\t\t\t\t\t[-115.799976, 48.222967],\n\t\t\t\t\t\t[-116.007724, 48.158901],\n\t\t\t\t\t\t[-116.049353, 48.215460]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30075\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"075\",\n\t\t\t\t\"NAME\": \"Powder River\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 3297.298000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-105.038405, 45.000345],\n\t\t\t\t\t\t[-105.076607, 45.000347],\n\t\t\t\t\t\t[-105.848065, 45.000396],\n\t\t\t\t\t\t[-105.918995, 44.997771],\n\t\t\t\t\t\t[-105.928184, 44.993647],\n\t\t\t\t\t\t[-106.024814, 44.993688],\n\t\t\t\t\t\t[-106.263586, 44.993788],\n\t\t\t\t\t\t[-106.263682, 45.179792],\n\t\t\t\t\t\t[-106.279682, 45.179892],\n\t\t\t\t\t\t[-106.279478, 45.351796],\n\t\t\t\t\t\t[-106.235575, 45.351796],\n\t\t\t\t\t\t[-106.234263, 45.788401],\n\t\t\t\t\t\t[-106.191861, 45.788600],\n\t\t\t\t\t\t[-104.982036, 45.787009],\n\t\t\t\t\t\t[-104.987143, 45.352023],\n\t\t\t\t\t\t[-105.038235, 45.352052],\n\t\t\t\t\t\t[-105.038405, 45.000345]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30085\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"085\",\n\t\t\t\t\"NAME\": \"Roosevelt\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2354.793000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-104.046913, 48.389429],\n\t\t\t\t\t\t[-104.046654, 48.374773],\n\t\t\t\t\t\t[-104.046371, 48.374154],\n\t\t\t\t\t\t[-104.046332, 48.342290],\n\t\t\t\t\t\t[-104.046039, 48.256761],\n\t\t\t\t\t\t[-104.045861, 48.255097],\n\t\t\t\t\t\t[-104.045645, 48.246179],\n\t\t\t\t\t\t[-104.045729, 48.244586],\n\t\t\t\t\t\t[-104.045692, 48.241415],\n\t\t\t\t\t\t[-104.045560, 48.193913],\n\t\t\t\t\t\t[-104.045424, 48.192473],\n\t\t\t\t\t\t[-104.045498, 48.176249],\n\t\t\t\t\t\t[-104.045399, 48.164390],\n\t\t\t\t\t\t[-104.044120, 47.996107],\n\t\t\t\t\t\t[-104.098921, 48.000019],\n\t\t\t\t\t\t[-104.142470, 48.055005],\n\t\t\t\t\t\t[-104.245936, 48.031005],\n\t\t\t\t\t\t[-104.544517, 48.126553],\n\t\t\t\t\t\t[-104.681633, 48.103323],\n\t\t\t\t\t\t[-104.822581, 48.118945],\n\t\t\t\t\t\t[-104.891321, 48.150690],\n\t\t\t\t\t\t[-104.990346, 48.066449],\n\t\t\t\t\t\t[-105.119117, 48.059600],\n\t\t\t\t\t\t[-105.177722, 48.103100],\n\t\t\t\t\t\t[-105.194742, 48.065669],\n\t\t\t\t\t\t[-105.228200, 48.092390],\n\t\t\t\t\t\t[-105.498036, 48.097903],\n\t\t\t\t\t\t[-105.647941, 48.077304],\n\t\t\t\t\t\t[-105.843797, 48.010314],\n\t\t\t\t\t\t[-105.843462, 48.219030],\n\t\t\t\t\t\t[-105.804345, 48.219179],\n\t\t\t\t\t\t[-105.804432, 48.563318],\n\t\t\t\t\t\t[-104.973354, 48.563190],\n\t\t\t\t\t\t[-104.757595, 48.563122],\n\t\t\t\t\t\t[-104.757861, 48.476556],\n\t\t\t\t\t\t[-104.627710, 48.476349],\n\t\t\t\t\t\t[-104.628048, 48.389239],\n\t\t\t\t\t\t[-104.046913, 48.389429]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31001\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"001\",\n\t\t\t\t\"NAME\": \"Adams\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 563.272000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.278103, 40.698291],\n\t\t\t\t\t\t[-98.278090, 40.350347],\n\t\t\t\t\t\t[-98.723948, 40.350391],\n\t\t\t\t\t\t[-98.724387, 40.689772],\n\t\t\t\t\t\t[-98.724412, 40.698891],\n\t\t\t\t\t\t[-98.721430, 40.698903],\n\t\t\t\t\t\t[-98.282851, 40.698284],\n\t\t\t\t\t\t[-98.278103, 40.698291]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31005\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"005\",\n\t\t\t\t\"NAME\": \"Arthur\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 715.355000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-101.985523, 41.742290],\n\t\t\t\t\t\t[-101.425920, 41.743059],\n\t\t\t\t\t\t[-101.406466, 41.743200],\n\t\t\t\t\t\t[-101.407260, 41.395416],\n\t\t\t\t\t\t[-101.984630, 41.394712],\n\t\t\t\t\t\t[-101.985523, 41.742290]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31017\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"017\",\n\t\t\t\t\"NAME\": \"Brown\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1221.333000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.198478, 42.846102],\n\t\t\t\t\t\t[-100.133978, 42.807819],\n\t\t\t\t\t\t[-99.677684, 42.730903],\n\t\t\t\t\t\t[-99.662379, 42.086009],\n\t\t\t\t\t\t[-99.686959, 42.086075],\n\t\t\t\t\t\t[-100.167605, 42.085848],\n\t\t\t\t\t\t[-100.183167, 42.433430],\n\t\t\t\t\t\t[-100.183270, 42.781005],\n\t\t\t\t\t\t[-100.198478, 42.846102]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31027\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"027\",\n\t\t\t\t\"NAME\": \"Cedar\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 740.312000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.163082, 42.793385],\n\t\t\t\t\t\t[-97.137460, 42.782313],\n\t\t\t\t\t\t[-97.052180, 42.770187],\n\t\t\t\t\t\t[-97.026103, 42.762625],\n\t\t\t\t\t\t[-97.015691, 42.758697],\n\t\t\t\t\t\t[-97.015116, 42.698797],\n\t\t\t\t\t\t[-97.017789, 42.351347],\n\t\t\t\t\t\t[-97.251888, 42.351626],\n\t\t\t\t\t\t[-97.367724, 42.351861],\n\t\t\t\t\t\t[-97.367590, 42.438775],\n\t\t\t\t\t\t[-97.485298, 42.438578],\n\t\t\t\t\t\t[-97.485376, 42.854838],\n\t\t\t\t\t\t[-97.423190, 42.861168],\n\t\t\t\t\t\t[-97.328511, 42.859501],\n\t\t\t\t\t\t[-97.257089, 42.853854],\n\t\t\t\t\t\t[-97.218269, 42.829561],\n\t\t\t\t\t\t[-97.190135, 42.805076],\n\t\t\t\t\t\t[-97.163082, 42.793385]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31041\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"041\",\n\t\t\t\t\"NAME\": \"Custer\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2575.522000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.221830, 41.740792],\n\t\t\t\t\t\t[-99.212773, 41.740644],\n\t\t\t\t\t\t[-99.212016, 41.740613],\n\t\t\t\t\t\t[-99.203261, 41.394140],\n\t\t\t\t\t\t[-99.207564, 41.047003],\n\t\t\t\t\t\t[-99.425986, 41.046471],\n\t\t\t\t\t\t[-100.224235, 41.046597],\n\t\t\t\t\t\t[-100.238155, 41.046536],\n\t\t\t\t\t\t[-100.236106, 41.393324],\n\t\t\t\t\t\t[-100.251098, 41.393298],\n\t\t\t\t\t\t[-100.251224, 41.739817],\n\t\t\t\t\t\t[-99.686834, 41.740326],\n\t\t\t\t\t\t[-99.221830, 41.740792]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31059\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"059\",\n\t\t\t\t\"NAME\": \"Fillmore\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 575.371000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.368688, 40.350392],\n\t\t\t\t\t\t[-97.370694, 40.350312],\n\t\t\t\t\t\t[-97.820816, 40.350545],\n\t\t\t\t\t\t[-97.821458, 40.350561],\n\t\t\t\t\t\t[-97.824114, 40.350541],\n\t\t\t\t\t\t[-97.824780, 40.698537],\n\t\t\t\t\t\t[-97.368401, 40.698625],\n\t\t\t\t\t\t[-97.368688, 40.350392]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31069\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"069\",\n\t\t\t\t\"NAME\": \"Garden\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1704.283000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-102.066650, 42.009195],\n\t\t\t\t\t\t[-102.067918, 41.742099],\n\t\t\t\t\t\t[-101.985523, 41.742290],\n\t\t\t\t\t\t[-101.984630, 41.394712],\n\t\t\t\t\t\t[-102.055256, 41.395162],\n\t\t\t\t\t\t[-102.055535, 41.221547],\n\t\t\t\t\t\t[-102.610413, 41.221614],\n\t\t\t\t\t\t[-102.609386, 41.395115],\n\t\t\t\t\t\t[-102.636695, 41.439053],\n\t\t\t\t\t\t[-102.636476, 41.743139],\n\t\t\t\t\t\t[-102.664870, 41.743457],\n\t\t\t\t\t\t[-102.677582, 42.005282],\n\t\t\t\t\t\t[-102.066650, 42.009195]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31077\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"077\",\n\t\t\t\t\"NAME\": \"Greeley\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 569.811000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.291344, 41.480727],\n\t\t\t\t\t\t[-98.291419, 41.393894],\n\t\t\t\t\t\t[-98.744330, 41.394178],\n\t\t\t\t\t\t[-98.751558, 41.394084],\n\t\t\t\t\t\t[-98.752225, 41.740372],\n\t\t\t\t\t\t[-98.295760, 41.741178],\n\t\t\t\t\t\t[-98.290943, 41.741210],\n\t\t\t\t\t\t[-98.291344, 41.480727]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31089\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"089\",\n\t\t\t\t\"NAME\": \"Holt\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2412.399000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.305149, 42.761207],\n\t\t\t\t\t\t[-98.305456, 42.436930],\n\t\t\t\t\t\t[-98.300235, 42.436913],\n\t\t\t\t\t\t[-98.300592, 42.088853],\n\t\t\t\t\t\t[-98.761155, 42.088518],\n\t\t\t\t\t\t[-99.222733, 42.087916],\n\t\t\t\t\t\t[-99.224264, 42.088028],\n\t\t\t\t\t\t[-99.234629, 42.087995],\n\t\t\t\t\t\t[-99.245803, 42.782499],\n\t\t\t\t\t\t[-99.257039, 42.804296],\n\t\t\t\t\t\t[-98.954634, 42.894077],\n\t\t\t\t\t\t[-98.892846, 42.845792],\n\t\t\t\t\t\t[-98.583760, 42.779736],\n\t\t\t\t\t\t[-98.305149, 42.761207]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48481\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"481\",\n\t\t\t\t\"NAME\": \"Wharton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1086.150000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.088912, 29.601658],\n\t\t\t\t\t\t[-96.044596, 29.562238],\n\t\t\t\t\t\t[-96.060676, 29.476473],\n\t\t\t\t\t\t[-95.973430, 29.411445],\n\t\t\t\t\t\t[-95.937434, 29.358086],\n\t\t\t\t\t\t[-95.946810, 29.333433],\n\t\t\t\t\t\t[-95.894468, 29.314980],\n\t\t\t\t\t\t[-95.879600, 29.266761],\n\t\t\t\t\t\t[-95.847656, 29.262590],\n\t\t\t\t\t\t[-95.841948, 29.258707],\n\t\t\t\t\t\t[-95.874028, 29.229702],\n\t\t\t\t\t\t[-95.965196, 29.146865],\n\t\t\t\t\t\t[-96.309178, 28.963291],\n\t\t\t\t\t\t[-96.640315, 29.247804],\n\t\t\t\t\t\t[-96.349217, 29.406052],\n\t\t\t\t\t\t[-96.307672, 29.514523],\n\t\t\t\t\t\t[-96.175422, 29.633806],\n\t\t\t\t\t\t[-96.088912, 29.601658]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48493\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"493\",\n\t\t\t\t\"NAME\": \"Wilson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 803.733000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.287020, 29.257626],\n\t\t\t\t\t\t[-98.137187, 29.440428],\n\t\t\t\t\t\t[-98.134171, 29.441751],\n\t\t\t\t\t\t[-98.084684, 29.379594],\n\t\t\t\t\t\t[-97.840383, 29.376791],\n\t\t\t\t\t\t[-97.858782, 29.352890],\n\t\t\t\t\t\t[-97.728443, 29.221748],\n\t\t\t\t\t\t[-98.190991, 28.882333],\n\t\t\t\t\t\t[-98.407336, 29.114435],\n\t\t\t\t\t\t[-98.287020, 29.257626]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48503\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"503\",\n\t\t\t\t\"NAME\": \"Young\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 914.468000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.950875, 32.956918],\n\t\t\t\t\t\t[-98.953938, 33.397534],\n\t\t\t\t\t\t[-98.420666, 33.396195],\n\t\t\t\t\t\t[-98.426553, 33.007913],\n\t\t\t\t\t\t[-98.427211, 32.952300],\n\t\t\t\t\t\t[-98.575616, 32.954349],\n\t\t\t\t\t\t[-98.950875, 32.956918]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US49005\",\n\t\t\t\t\"STATE\": \"49\",\n\t\t\t\t\"COUNTY\": \"005\",\n\t\t\t\t\"NAME\": \"Cache\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1164.813000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-111.885476, 41.426435],\n\t\t\t\t\t\t[-111.916568, 41.538573],\n\t\t\t\t\t\t[-111.982078, 41.534032],\n\t\t\t\t\t\t[-112.051815, 41.699789],\n\t\t\t\t\t\t[-112.052735, 41.866015],\n\t\t\t\t\t\t[-112.163956, 41.996708],\n\t\t\t\t\t\t[-112.109528, 41.997105],\n\t\t\t\t\t\t[-111.915837, 41.998519],\n\t\t\t\t\t\t[-111.915622, 41.998496],\n\t\t\t\t\t\t[-111.876491, 41.998528],\n\t\t\t\t\t\t[-111.507264, 41.999518],\n\t\t\t\t\t\t[-111.471321, 41.928157],\n\t\t\t\t\t\t[-111.426855, 41.677864],\n\t\t\t\t\t\t[-111.442949, 41.531365],\n\t\t\t\t\t\t[-111.510839, 41.423100],\n\t\t\t\t\t\t[-111.666576, 41.428830],\n\t\t\t\t\t\t[-111.726510, 41.375814],\n\t\t\t\t\t\t[-111.885476, 41.426435]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US49017\",\n\t\t\t\t\"STATE\": \"49\",\n\t\t\t\t\"COUNTY\": \"017\",\n\t\t\t\t\"NAME\": \"Garfield\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 5175.121000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-111.842800, 38.151280],\n\t\t\t\t\t\t[-111.414430, 38.150082],\n\t\t\t\t\t\t[-110.687406, 38.151385],\n\t\t\t\t\t\t[-109.927882, 38.151885],\n\t\t\t\t\t\t[-110.283035, 37.866227],\n\t\t\t\t\t\t[-110.304980, 37.890518],\n\t\t\t\t\t\t[-110.404612, 37.879923],\n\t\t\t\t\t\t[-110.428107, 37.778987],\n\t\t\t\t\t\t[-110.497711, 37.652205],\n\t\t\t\t\t\t[-110.646394, 37.541063],\n\t\t\t\t\t\t[-111.853181, 37.535578],\n\t\t\t\t\t\t[-112.361333, 37.536425],\n\t\t\t\t\t\t[-112.361187, 37.543118],\n\t\t\t\t\t\t[-112.683197, 37.543193],\n\t\t\t\t\t\t[-112.689222, 37.805814],\n\t\t\t\t\t\t[-112.578550, 37.804540],\n\t\t\t\t\t\t[-112.588402, 37.890423],\n\t\t\t\t\t\t[-112.468177, 37.890464],\n\t\t\t\t\t\t[-112.478682, 38.147334],\n\t\t\t\t\t\t[-112.462139, 38.149912],\n\t\t\t\t\t\t[-112.443821, 38.149942],\n\t\t\t\t\t\t[-111.842800, 38.151280]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47183\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"183\",\n\t\t\t\t\"NAME\": \"Weakley\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 580.364000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.692709, 36.062746],\n\t\t\t\t\t\t[-88.840884, 36.123495],\n\t\t\t\t\t\t[-88.959839, 36.222834],\n\t\t\t\t\t\t[-88.950205, 36.409248],\n\t\t\t\t\t\t[-88.816420, 36.410732],\n\t\t\t\t\t\t[-88.827301, 36.502852],\n\t\t\t\t\t\t[-88.827012, 36.502850],\n\t\t\t\t\t\t[-88.816765, 36.502815],\n\t\t\t\t\t\t[-88.799594, 36.502757],\n\t\t\t\t\t\t[-88.747523, 36.502834],\n\t\t\t\t\t\t[-88.715255, 36.502662],\n\t\t\t\t\t\t[-88.661133, 36.502243],\n\t\t\t\t\t\t[-88.577283, 36.501940],\n\t\t\t\t\t\t[-88.545192, 36.501814],\n\t\t\t\t\t\t[-88.516427, 36.501430],\n\t\t\t\t\t\t[-88.516346, 36.501431],\n\t\t\t\t\t\t[-88.530346, 36.151573],\n\t\t\t\t\t\t[-88.532233, 36.115416],\n\t\t\t\t\t\t[-88.655488, 36.117338],\n\t\t\t\t\t\t[-88.692709, 36.062746]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47187\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"187\",\n\t\t\t\t\"NAME\": \"Williamson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 582.599000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.205070, 35.914639],\n\t\t\t\t\t\t[-87.202092, 35.936075],\n\t\t\t\t\t\t[-87.201426, 35.940579],\n\t\t\t\t\t\t[-87.205665, 35.940967],\n\t\t\t\t\t\t[-87.204242, 35.959186],\n\t\t\t\t\t\t[-87.182573, 36.049726],\n\t\t\t\t\t\t[-87.142341, 36.048028],\n\t\t\t\t\t\t[-87.106124, 36.045167],\n\t\t\t\t\t\t[-87.085304, 36.043761],\n\t\t\t\t\t\t[-87.054114, 36.045535],\n\t\t\t\t\t\t[-87.027705, 35.989423],\n\t\t\t\t\t\t[-86.929200, 36.052722],\n\t\t\t\t\t\t[-86.864957, 36.044672],\n\t\t\t\t\t\t[-86.787205, 36.035999],\n\t\t\t\t\t\t[-86.691904, 35.994581],\n\t\t\t\t\t\t[-86.687714, 35.995343],\n\t\t\t\t\t\t[-86.686164, 35.994092],\n\t\t\t\t\t\t[-86.681889, 35.989399],\n\t\t\t\t\t\t[-86.648288, 35.976422],\n\t\t\t\t\t\t[-86.627397, 35.974027],\n\t\t\t\t\t\t[-86.618892, 35.968224],\n\t\t\t\t\t\t[-86.613328, 35.790331],\n\t\t\t\t\t\t[-86.686193, 35.710051],\n\t\t\t\t\t\t[-86.782016, 35.706595],\n\t\t\t\t\t\t[-86.953593, 35.781904],\n\t\t\t\t\t\t[-87.215099, 35.850651],\n\t\t\t\t\t\t[-87.205070, 35.914639]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48003\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"003\",\n\t\t\t\t\"NAME\": \"Andrews\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1500.713000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-102.287048, 32.086991],\n\t\t\t\t\t\t[-102.799086, 32.085795],\n\t\t\t\t\t\t[-103.064344, 32.087051],\n\t\t\t\t\t\t[-103.064348, 32.123041],\n\t\t\t\t\t\t[-103.064422, 32.145006],\n\t\t\t\t\t\t[-103.064696, 32.522193],\n\t\t\t\t\t\t[-102.211037, 32.523244],\n\t\t\t\t\t\t[-102.211249, 32.086800],\n\t\t\t\t\t\t[-102.287048, 32.086991]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48019\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"019\",\n\t\t\t\t\"NAME\": \"Bandera\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 790.961000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.603130, 29.627181],\n\t\t\t\t\t\t[-99.602803, 29.899244],\n\t\t\t\t\t\t[-99.600862, 29.907662],\n\t\t\t\t\t\t[-99.176988, 29.895063],\n\t\t\t\t\t\t[-98.917725, 29.781398],\n\t\t\t\t\t\t[-98.781017, 29.720890],\n\t\t\t\t\t\t[-98.778782, 29.720167],\n\t\t\t\t\t\t[-98.806552, 29.690709],\n\t\t\t\t\t\t[-98.927161, 29.562250],\n\t\t\t\t\t\t[-98.983787, 29.623450],\n\t\t\t\t\t\t[-99.411817, 29.627514],\n\t\t\t\t\t\t[-99.603130, 29.627181]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48027\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"027\",\n\t\t\t\t\"NAME\": \"Bell\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1051.016000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.070188, 30.986220],\n\t\t\t\t\t\t[-97.259082, 30.889596],\n\t\t\t\t\t\t[-97.315507, 30.752371],\n\t\t\t\t\t\t[-97.625288, 30.870430],\n\t\t\t\t\t\t[-97.828512, 30.906188],\n\t\t\t\t\t\t[-97.840365, 30.929318],\n\t\t\t\t\t\t[-97.911684, 31.034919],\n\t\t\t\t\t\t[-97.913847, 31.065882],\n\t\t\t\t\t\t[-97.907100, 31.069374],\n\t\t\t\t\t\t[-97.418606, 31.320202],\n\t\t\t\t\t\t[-97.343426, 31.244215],\n\t\t\t\t\t\t[-97.278113, 31.279799],\n\t\t\t\t\t\t[-97.070188, 30.986220]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48041\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"041\",\n\t\t\t\t\"NAME\": \"Brazos\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 585.445000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.566983, 30.695670],\n\t\t\t\t\t\t[-96.457630, 30.744474],\n\t\t\t\t\t\t[-96.349364, 30.911423],\n\t\t\t\t\t\t[-96.336193, 30.921700],\n\t\t\t\t\t\t[-96.263223, 30.964123],\n\t\t\t\t\t\t[-96.241020, 30.973737],\n\t\t\t\t\t\t[-96.168370, 30.822997],\n\t\t\t\t\t\t[-96.187765, 30.598737],\n\t\t\t\t\t\t[-96.121806, 30.443426],\n\t\t\t\t\t\t[-96.079969, 30.430030],\n\t\t\t\t\t\t[-96.147255, 30.382840],\n\t\t\t\t\t\t[-96.154630, 30.330288],\n\t\t\t\t\t\t[-96.199544, 30.382910],\n\t\t\t\t\t\t[-96.299173, 30.379152],\n\t\t\t\t\t\t[-96.294068, 30.380235],\n\t\t\t\t\t\t[-96.294939, 30.385623],\n\t\t\t\t\t\t[-96.306356, 30.391715],\n\t\t\t\t\t\t[-96.302498, 30.399403],\n\t\t\t\t\t\t[-96.297599, 30.400421],\n\t\t\t\t\t\t[-96.298866, 30.410502],\n\t\t\t\t\t\t[-96.286590, 30.411661],\n\t\t\t\t\t\t[-96.278998, 30.407422],\n\t\t\t\t\t\t[-96.272837, 30.409042],\n\t\t\t\t\t\t[-96.272049, 30.416145],\n\t\t\t\t\t\t[-96.281109, 30.414831],\n\t\t\t\t\t\t[-96.287993, 30.421281],\n\t\t\t\t\t\t[-96.282564, 30.426614],\n\t\t\t\t\t\t[-96.286449, 30.433756],\n\t\t\t\t\t\t[-96.285516, 30.448393],\n\t\t\t\t\t\t[-96.290895, 30.443999],\n\t\t\t\t\t\t[-96.358817, 30.541753],\n\t\t\t\t\t\t[-96.510494, 30.627828],\n\t\t\t\t\t\t[-96.601708, 30.640535],\n\t\t\t\t\t\t[-96.594308, 30.652589],\n\t\t\t\t\t\t[-96.584439, 30.658957],\n\t\t\t\t\t\t[-96.582804, 30.663792],\n\t\t\t\t\t\t[-96.584171, 30.683191],\n\t\t\t\t\t\t[-96.581519, 30.688890],\n\t\t\t\t\t\t[-96.572064, 30.688849],\n\t\t\t\t\t\t[-96.566983, 30.695670]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48059\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"059\",\n\t\t\t\t\"NAME\": \"Callahan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 899.372000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.195871, 32.079235],\n\t\t\t\t\t\t[-99.631413, 32.081274],\n\t\t\t\t\t\t[-99.629579, 32.514657],\n\t\t\t\t\t\t[-99.612026, 32.514654],\n\t\t\t\t\t\t[-99.114293, 32.514811],\n\t\t\t\t\t\t[-99.118665, 32.079585],\n\t\t\t\t\t\t[-99.125340, 32.079187],\n\t\t\t\t\t\t[-99.147918, 32.079242],\n\t\t\t\t\t\t[-99.195871, 32.079235]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48075\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"075\",\n\t\t\t\t\"NAME\": \"Childress\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 696.405000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.997720, 34.311829],\n\t\t\t\t\t\t[-100.417783, 34.313524],\n\t\t\t\t\t\t[-100.415895, 34.747525],\n\t\t\t\t\t\t[-100.000381, 34.746358],\n\t\t\t\t\t\t[-100.000381, 34.560509],\n\t\t\t\t\t\t[-99.997853, 34.561485],\n\t\t\t\t\t\t[-99.997508, 34.558017],\n\t\t\t\t\t\t[-99.997720, 34.311829]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48083\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"083\",\n\t\t\t\t\"NAME\": \"Coleman\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1261.946000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.721698, 31.576759],\n\t\t\t\t\t\t[-99.713971, 32.082089],\n\t\t\t\t\t\t[-99.631413, 32.081274],\n\t\t\t\t\t\t[-99.195871, 32.079235],\n\t\t\t\t\t\t[-99.202768, 31.467234],\n\t\t\t\t\t\t[-99.314875, 31.409875],\n\t\t\t\t\t\t[-99.402284, 31.446198],\n\t\t\t\t\t\t[-99.513678, 31.425495],\n\t\t\t\t\t\t[-99.601850, 31.491950],\n\t\t\t\t\t\t[-99.721698, 31.576759]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48089\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"089\",\n\t\t\t\t\"NAME\": \"Colorado\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 960.274000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.640315, 29.247804],\n\t\t\t\t\t\t[-96.642303, 29.249576],\n\t\t\t\t\t\t[-96.643316, 29.250250],\n\t\t\t\t\t\t[-96.658466, 29.263876],\n\t\t\t\t\t\t[-96.560555, 29.335439],\n\t\t\t\t\t\t[-96.793132, 29.577378],\n\t\t\t\t\t\t[-96.874222, 29.632706],\n\t\t\t\t\t\t[-96.754307, 29.755502],\n\t\t\t\t\t\t[-96.569844, 29.961516],\n\t\t\t\t\t\t[-96.413283, 29.824985],\n\t\t\t\t\t\t[-96.344476, 29.830147],\n\t\t\t\t\t\t[-96.259226, 29.668912],\n\t\t\t\t\t\t[-96.175422, 29.633806],\n\t\t\t\t\t\t[-96.307672, 29.514523],\n\t\t\t\t\t\t[-96.349217, 29.406052],\n\t\t\t\t\t\t[-96.640315, 29.247804]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US02100\",\n\t\t\t\t\"STATE\": \"02\",\n\t\t\t\t\"COUNTY\": \"100\",\n\t\t\t\t\"NAME\": \"Haines\",\n\t\t\t\t\"LSAD\": \"Borough\",\n\t\t\t\t\"CENSUSAREA\": 2318.600000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-135.219128, 58.974972],\n\t\t\t\t\t\t[-135.175756, 58.973868],\n\t\t\t\t\t\t[-135.180116, 58.997871],\n\t\t\t\t\t\t[-135.208585, 59.076824],\n\t\t\t\t\t\t[-135.238267, 59.130134],\n\t\t\t\t\t\t[-135.283964, 59.192532],\n\t\t\t\t\t\t[-135.368331, 59.263275],\n\t\t\t\t\t\t[-135.430331, 59.327200],\n\t\t\t\t\t\t[-135.436438, 59.315791],\n\t\t\t\t\t\t[-135.444526, 59.277689],\n\t\t\t\t\t\t[-135.429601, 59.242722],\n\t\t\t\t\t\t[-135.403687, 59.222767],\n\t\t\t\t\t\t[-135.364060, 59.211403],\n\t\t\t\t\t\t[-135.342254, 59.177825],\n\t\t\t\t\t\t[-135.329458, 59.152700],\n\t\t\t\t\t\t[-135.377826, 59.099262],\n\t\t\t\t\t\t[-135.382354, 59.060749],\n\t\t\t\t\t\t[-135.382641, 59.033366],\n\t\t\t\t\t\t[-135.339375, 59.017667],\n\t\t\t\t\t\t[-135.326711, 59.011469],\n\t\t\t\t\t\t[-135.322604, 59.007812],\n\t\t\t\t\t\t[-135.297293, 58.959860],\n\t\t\t\t\t\t[-135.298627, 58.919262],\n\t\t\t\t\t\t[-135.305907, 58.901340],\n\t\t\t\t\t\t[-135.322622, 58.900661],\n\t\t\t\t\t\t[-135.339948, 58.888955],\n\t\t\t\t\t\t[-135.284657, 58.818114],\n\t\t\t\t\t\t[-135.274203, 58.813122],\n\t\t\t\t\t\t[-135.248985, 58.790878],\n\t\t\t\t\t\t[-135.243200, 58.783112],\n\t\t\t\t\t\t[-135.233878, 58.735487],\n\t\t\t\t\t\t[-135.142322, 58.616370],\n\t\t\t\t\t\t[-135.135843, 58.588225],\n\t\t\t\t\t\t[-135.137516, 58.577835],\n\t\t\t\t\t\t[-135.142161, 58.577107],\n\t\t\t\t\t\t[-135.145521, 58.578332],\n\t\t\t\t\t\t[-135.153827, 58.586626],\n\t\t\t\t\t\t[-135.159062, 58.595525],\n\t\t\t\t\t\t[-135.186357, 58.597770],\n\t\t\t\t\t\t[-135.190544, 58.592417],\n\t\t\t\t\t\t[-135.189368, 58.576244],\n\t\t\t\t\t\t[-135.165861, 58.546605],\n\t\t\t\t\t\t[-135.132273, 58.496536],\n\t\t\t\t\t\t[-135.088983, 58.423022],\n\t\t\t\t\t\t[-135.058071, 58.349447],\n\t\t\t\t\t\t[-135.049062, 58.309295],\n\t\t\t\t\t\t[-135.053488, 58.290498],\n\t\t\t\t\t\t[-135.056552, 58.288699],\n\t\t\t\t\t\t[-135.060452, 58.290338],\n\t\t\t\t\t\t[-135.069775, 58.302694],\n\t\t\t\t\t\t[-135.095814, 58.297233],\n\t\t\t\t\t\t[-135.101210, 58.292607],\n\t\t\t\t\t\t[-135.107700, 58.265034],\n\t\t\t\t\t\t[-135.099106, 58.245096],\n\t\t\t\t\t\t[-135.056227, 58.189884],\n\t\t\t\t\t\t[-135.073269, 58.190575],\n\t\t\t\t\t\t[-135.087872, 58.200073],\n\t\t\t\t\t\t[-135.112868, 58.201553],\n\t\t\t\t\t\t[-135.159055, 58.210178],\n\t\t\t\t\t\t[-135.220281, 58.235584],\n\t\t\t\t\t\t[-135.227736, 58.236900],\n\t\t\t\t\t\t[-135.246709, 58.236368],\n\t\t\t\t\t\t[-135.277198, 58.233634],\n\t\t\t\t\t\t[-135.287700, 58.234933],\n\t\t\t\t\t\t[-135.306507, 58.242916],\n\t\t\t\t\t\t[-135.344868, 58.270795],\n\t\t\t\t\t\t[-135.398260, 58.327689],\n\t\t\t\t\t\t[-135.408059, 58.342999],\n\t\t\t\t\t\t[-135.433061, 58.399899],\n\t\t\t\t\t\t[-135.447381, 58.399891],\n\t\t\t\t\t\t[-135.496814, 58.498602],\n\t\t\t\t\t\t[-135.318523, 58.500523],\n\t\t\t\t\t\t[-135.413387, 58.584665],\n\t\t\t\t\t\t[-135.401945, 58.616146],\n\t\t\t\t\t\t[-135.528150, 58.655985],\n\t\t\t\t\t\t[-135.548348, 58.698345],\n\t\t\t\t\t\t[-135.757086, 58.742314],\n\t\t\t\t\t\t[-135.682038, 58.858190],\n\t\t\t\t\t\t[-135.522232, 58.889400],\n\t\t\t\t\t\t[-135.604265, 58.909481],\n\t\t\t\t\t\t[-135.585301, 58.986033],\n\t\t\t\t\t\t[-135.688248, 59.016726],\n\t\t\t\t\t\t[-135.701868, 59.104076],\n\t\t\t\t\t\t[-135.892056, 59.172783],\n\t\t\t\t\t\t[-136.053534, 59.177538],\n\t\t\t\t\t\t[-136.122285, 59.207775],\n\t\t\t\t\t\t[-136.368850, 59.232652],\n\t\t\t\t\t\t[-136.486609, 59.261108],\n\t\t\t\t\t\t[-136.466815, 59.284252],\n\t\t\t\t\t\t[-136.472941, 59.421683],\n\t\t\t\t\t\t[-136.365825, 59.448008],\n\t\t\t\t\t\t[-136.358141, 59.449799],\n\t\t\t\t\t\t[-136.301846, 59.464128],\n\t\t\t\t\t\t[-136.234229, 59.524731],\n\t\t\t\t\t\t[-136.237340, 59.558734],\n\t\t\t\t\t\t[-136.225748, 59.604573],\n\t\t\t\t\t\t[-136.190352, 59.639854],\n\t\t\t\t\t\t[-136.005158, 59.658160],\n\t\t\t\t\t\t[-135.854166, 59.691846],\n\t\t\t\t\t\t[-135.722460, 59.729526],\n\t\t\t\t\t\t[-135.375820, 59.340621],\n\t\t\t\t\t\t[-135.029245, 59.345364],\n\t\t\t\t\t\t[-135.005180, 59.357217],\n\t\t\t\t\t\t[-134.992117, 59.330695],\n\t\t\t\t\t\t[-134.961972, 59.280376],\n\t\t\t\t\t\t[-134.766204, 59.231430],\n\t\t\t\t\t\t[-134.681924, 59.190843],\n\t\t\t\t\t\t[-134.566689, 59.128278],\n\t\t\t\t\t\t[-134.481241, 59.128071],\n\t\t\t\t\t\t[-134.389798, 59.032673],\n\t\t\t\t\t\t[-134.383637, 59.001867],\n\t\t\t\t\t\t[-134.369945, 58.971745],\n\t\t\t\t\t\t[-134.363773, 58.963891],\n\t\t\t\t\t\t[-135.175760, 58.973867],\n\t\t\t\t\t\t[-135.219128, 58.974972]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US02170\",\n\t\t\t\t\"STATE\": \"02\",\n\t\t\t\t\"COUNTY\": \"170\",\n\t\t\t\t\"NAME\": \"Matanuska-Susitna\",\n\t\t\t\t\"LSAD\": \"Borough\",\n\t\t\t\t\"CENSUSAREA\": 24607.898000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-150.971775, 61.192041],\n\t\t\t\t\t\t[-150.972661, 61.253489],\n\t\t\t\t\t\t[-151.332978, 61.254634],\n\t\t\t\t\t\t[-151.334175, 61.424601],\n\t\t\t\t\t\t[-153.002181, 61.425686],\n\t\t\t\t\t\t[-153.001288, 62.106276],\n\t\t\t\t\t\t[-153.001262, 62.295331],\n\t\t\t\t\t\t[-153.001339, 62.727440],\n\t\t\t\t\t\t[-151.893149, 62.722992],\n\t\t\t\t\t\t[-151.888963, 62.795348],\n\t\t\t\t\t\t[-151.387904, 62.910327],\n\t\t\t\t\t\t[-149.506984, 63.332164],\n\t\t\t\t\t\t[-148.035867, 63.330788],\n\t\t\t\t\t\t[-148.032727, 63.469757],\n\t\t\t\t\t\t[-146.975489, 63.479746],\n\t\t\t\t\t\t[-146.489541, 63.482913],\n\t\t\t\t\t\t[-146.484119, 63.173325],\n\t\t\t\t\t\t[-146.428648, 62.863288],\n\t\t\t\t\t\t[-146.426334, 62.247221],\n\t\t\t\t\t\t[-146.981731, 62.248681],\n\t\t\t\t\t\t[-146.961638, 62.160211],\n\t\t\t\t\t\t[-146.941834, 61.811907],\n\t\t\t\t\t\t[-146.945124, 61.474349],\n\t\t\t\t\t\t[-147.205707, 61.475073],\n\t\t\t\t\t\t[-147.206028, 61.425265],\n\t\t\t\t\t\t[-148.460007, 61.426972],\n\t\t\t\t\t\t[-149.187447, 61.425285],\n\t\t\t\t\t\t[-149.237556, 61.483144],\n\t\t\t\t\t\t[-149.359442, 61.483938],\n\t\t\t\t\t\t[-149.792423, 61.388896],\n\t\t\t\t\t\t[-149.897888, 61.267043],\n\t\t\t\t\t\t[-149.986576, 61.228323],\n\t\t\t\t\t\t[-149.985874, 61.237515],\n\t\t\t\t\t\t[-150.074793, 61.253500],\n\t\t\t\t\t\t[-150.132634, 61.257915],\n\t\t\t\t\t\t[-150.204894, 61.259548],\n\t\t\t\t\t\t[-150.254296, 61.254501],\n\t\t\t\t\t\t[-150.266124, 61.251237],\n\t\t\t\t\t\t[-150.273575, 61.251559],\n\t\t\t\t\t\t[-150.286978, 61.257443],\n\t\t\t\t\t\t[-150.303688, 61.257467],\n\t\t\t\t\t\t[-150.303639, 61.255871],\n\t\t\t\t\t\t[-150.312226, 61.254029],\n\t\t\t\t\t\t[-150.334576, 61.251301],\n\t\t\t\t\t\t[-150.394411, 61.249107],\n\t\t\t\t\t\t[-150.425000, 61.245552],\n\t\t\t\t\t\t[-150.468812, 61.244627],\n\t\t\t\t\t\t[-150.484391, 61.247262],\n\t\t\t\t\t\t[-150.495726, 61.251245],\n\t\t\t\t\t\t[-150.561670, 61.281487],\n\t\t\t\t\t\t[-150.590166, 61.281487],\n\t\t\t\t\t\t[-150.591842, 61.279485],\n\t\t\t\t\t\t[-150.606961, 61.277732],\n\t\t\t\t\t\t[-150.628459, 61.284407],\n\t\t\t\t\t\t[-150.646221, 61.296689],\n\t\t\t\t\t\t[-150.655804, 61.298173],\n\t\t\t\t\t\t[-150.662620, 61.295356],\n\t\t\t\t\t\t[-150.671250, 61.273652],\n\t\t\t\t\t\t[-150.679902, 61.265888],\n\t\t\t\t\t\t[-150.690497, 61.259297],\n\t\t\t\t\t\t[-150.711291, 61.251089],\n\t\t\t\t\t\t[-150.827295, 61.228390],\n\t\t\t\t\t\t[-150.842410, 61.224213],\n\t\t\t\t\t\t[-150.848842, 61.220588],\n\t\t\t\t\t\t[-150.895905, 61.208915],\n\t\t\t\t\t\t[-150.926773, 61.206351],\n\t\t\t\t\t\t[-150.939251, 61.210299],\n\t\t\t\t\t\t[-150.941944, 61.209947],\n\t\t\t\t\t\t[-150.946243, 61.208644],\n\t\t\t\t\t\t[-150.947155, 61.206299],\n\t\t\t\t\t\t[-150.947425, 61.203140],\n\t\t\t\t\t\t[-150.951153, 61.198778],\n\t\t\t\t\t\t[-150.960114, 61.194037],\n\t\t\t\t\t\t[-150.971775, 61.192041]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06001\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"001\",\n\t\t\t\t\"NAME\": \"Alameda\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 739.017000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-121.855762, 37.484537],\n\t\t\t\t\t\t[-122.045271, 37.460276],\n\t\t\t\t\t\t[-122.052648, 37.459656],\n\t\t\t\t\t\t[-122.081473, 37.477838],\n\t\t\t\t\t\t[-122.109574, 37.497637],\n\t\t\t\t\t\t[-122.116112, 37.505386],\n\t\t\t\t\t\t[-122.111344, 37.507580],\n\t\t\t\t\t\t[-122.111998, 37.528851],\n\t\t\t\t\t\t[-122.128688, 37.560594],\n\t\t\t\t\t\t[-122.133924, 37.562885],\n\t\t\t\t\t\t[-122.137524, 37.567467],\n\t\t\t\t\t\t[-122.144396, 37.581866],\n\t\t\t\t\t\t[-122.147014, 37.588411],\n\t\t\t\t\t\t[-122.145378, 37.600846],\n\t\t\t\t\t\t[-122.146360, 37.607391],\n\t\t\t\t\t\t[-122.152905, 37.640771],\n\t\t\t\t\t\t[-122.163049, 37.667933],\n\t\t\t\t\t\t[-122.170904, 37.676114],\n\t\t\t\t\t\t[-122.179085, 37.680041],\n\t\t\t\t\t\t[-122.197411, 37.692804],\n\t\t\t\t\t\t[-122.203971, 37.697769],\n\t\t\t\t\t\t[-122.213774, 37.698695],\n\t\t\t\t\t\t[-122.221628, 37.705567],\n\t\t\t\t\t\t[-122.246826, 37.721930],\n\t\t\t\t\t\t[-122.255989, 37.735674],\n\t\t\t\t\t\t[-122.257953, 37.739601],\n\t\t\t\t\t\t[-122.257134, 37.745001],\n\t\t\t\t\t\t[-122.252226, 37.747619],\n\t\t\t\t\t\t[-122.244938, 37.750294],\n\t\t\t\t\t\t[-122.242638, 37.753744],\n\t\t\t\t\t\t[-122.253753, 37.761218],\n\t\t\t\t\t\t[-122.264101, 37.764667],\n\t\t\t\t\t\t[-122.275408, 37.767350],\n\t\t\t\t\t\t[-122.286139, 37.769458],\n\t\t\t\t\t\t[-122.293996, 37.770416],\n\t\t\t\t\t\t[-122.304345, 37.774632],\n\t\t\t\t\t\t[-122.318909, 37.779040],\n\t\t\t\t\t\t[-122.329159, 37.783173],\n\t\t\t\t\t\t[-122.330790, 37.783830],\n\t\t\t\t\t\t[-122.330963, 37.786035],\n\t\t\t\t\t\t[-122.331748, 37.796052],\n\t\t\t\t\t\t[-122.335550, 37.799538],\n\t\t\t\t\t\t[-122.335675, 37.799652],\n\t\t\t\t\t\t[-122.333711, 37.809797],\n\t\t\t\t\t\t[-122.323567, 37.823214],\n\t\t\t\t\t\t[-122.317676, 37.826814],\n\t\t\t\t\t\t[-122.306222, 37.827469],\n\t\t\t\t\t\t[-122.303931, 37.830087],\n\t\t\t\t\t\t[-122.301313, 37.847758],\n\t\t\t\t\t\t[-122.310477, 37.873938],\n\t\t\t\t\t\t[-122.309986, 37.892755],\n\t\t\t\t\t\t[-122.313258, 37.897010],\n\t\t\t\t\t\t[-122.313496, 37.897211],\n\t\t\t\t\t\t[-122.310881, 37.897825],\n\t\t\t\t\t\t[-122.306180, 37.898225],\n\t\t\t\t\t\t[-122.185977, 37.820726],\n\t\t\t\t\t\t[-122.004228, 37.770058],\n\t\t\t\t\t\t[-122.010771, 37.755127],\n\t\t\t\t\t\t[-122.001071, 37.739028],\n\t\t\t\t\t\t[-121.977999, 37.729579],\n\t\t\t\t\t\t[-121.960770, 37.718629],\n\t\t\t\t\t\t[-121.910138, 37.730460],\n\t\t\t\t\t\t[-121.881567, 37.737328],\n\t\t\t\t\t\t[-121.623724, 37.799291],\n\t\t\t\t\t\t[-121.559160, 37.818927],\n\t\t\t\t\t\t[-121.556936, 37.817218],\n\t\t\t\t\t\t[-121.556655, 37.542732],\n\t\t\t\t\t\t[-121.471925, 37.481783],\n\t\t\t\t\t\t[-121.472648, 37.482170],\n\t\t\t\t\t\t[-121.855762, 37.484537]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01105\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"105\",\n\t\t\t\t\"NAME\": \"Perry\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 719.664000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.524485, 32.482028],\n\t\t\t\t\t\t[-87.525198, 32.655713],\n\t\t\t\t\t\t[-87.473915, 32.655867],\n\t\t\t\t\t\t[-87.472174, 32.830620],\n\t\t\t\t\t\t[-87.421200, 32.874508],\n\t\t\t\t\t\t[-87.319473, 32.875124],\n\t\t\t\t\t\t[-87.319184, 32.831522],\n\t\t\t\t\t\t[-87.019157, 32.837034],\n\t\t\t\t\t\t[-87.017762, 32.729532],\n\t\t\t\t\t\t[-87.116515, 32.487659],\n\t\t\t\t\t\t[-87.423153, 32.482965],\n\t\t\t\t\t\t[-87.421744, 32.308101],\n\t\t\t\t\t\t[-87.473080, 32.307614],\n\t\t\t\t\t\t[-87.524290, 32.307293],\n\t\t\t\t\t\t[-87.524485, 32.482028]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01111\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"111\",\n\t\t\t\t\"NAME\": \"Randolph\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 580.550000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.643482, 33.495885],\n\t\t\t\t\t\t[-85.304439, 33.482884],\n\t\t\t\t\t\t[-85.293902, 33.428079],\n\t\t\t\t\t\t[-85.236509, 33.129562],\n\t\t\t\t\t\t[-85.232378, 33.108077],\n\t\t\t\t\t\t[-85.593177, 33.107340],\n\t\t\t\t\t\t[-85.653654, 33.106634],\n\t\t\t\t\t\t[-85.643482, 33.495885]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01113\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"113\",\n\t\t\t\t\"NAME\": \"Russell\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 641.140000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.987278, 32.381623],\n\t\t\t\t\t\t[-84.987386, 32.381201],\n\t\t\t\t\t\t[-85.008096, 32.336677],\n\t\t\t\t\t\t[-85.007103, 32.328362],\n\t\t\t\t\t\t[-85.001874, 32.322015],\n\t\t\t\t\t\t[-84.938680, 32.300708],\n\t\t\t\t\t\t[-84.916611, 32.281177],\n\t\t\t\t\t\t[-84.909052, 32.263540],\n\t\t\t\t\t\t[-84.921650, 32.233306],\n\t\t\t\t\t\t[-84.923638, 32.231539],\n\t\t\t\t\t\t[-84.964828, 32.194952],\n\t\t\t\t\t\t[-84.995929, 32.184852],\n\t\t\t\t\t\t[-85.047865, 32.142033],\n\t\t\t\t\t\t[-85.056029, 32.063055],\n\t\t\t\t\t\t[-85.185067, 32.061708],\n\t\t\t\t\t\t[-85.257747, 32.148251],\n\t\t\t\t\t\t[-85.410241, 32.146651],\n\t\t\t\t\t\t[-85.427442, 32.146551],\n\t\t\t\t\t\t[-85.433543, 32.234648],\n\t\t\t\t\t\t[-85.434045, 32.409840],\n\t\t\t\t\t\t[-85.330143, 32.410842],\n\t\t\t\t\t\t[-85.333843, 32.468639],\n\t\t\t\t\t\t[-85.059294, 32.472909],\n\t\t\t\t\t\t[-85.001030, 32.510157],\n\t\t\t\t\t\t[-85.000779, 32.506548],\n\t\t\t\t\t\t[-84.998231, 32.469842],\n\t\t\t\t\t\t[-84.983831, 32.445643],\n\t\t\t\t\t\t[-84.979431, 32.412244],\n\t\t\t\t\t\t[-84.987278, 32.381623]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01123\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"123\",\n\t\t\t\t\"NAME\": \"Tallapoosa\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 716.521000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.886148, 32.493053],\n\t\t\t\t\t\t[-85.879860, 32.754528],\n\t\t\t\t\t\t[-86.007187, 32.754984],\n\t\t\t\t\t\t[-86.009170, 33.090260],\n\t\t\t\t\t\t[-85.974715, 33.105286],\n\t\t\t\t\t\t[-85.653654, 33.106634],\n\t\t\t\t\t\t[-85.593177, 33.107340],\n\t\t\t\t\t\t[-85.593151, 32.728530],\n\t\t\t\t\t\t[-85.696755, 32.697429],\n\t\t\t\t\t\t[-85.695854, 32.595933],\n\t\t\t\t\t\t[-85.798585, 32.581089],\n\t\t\t\t\t\t[-85.797156, 32.494236],\n\t\t\t\t\t\t[-85.886148, 32.493053]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18165\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"165\",\n\t\t\t\t\"NAME\": \"Vermillion\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 256.878000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.382418, 39.607937],\n\t\t\t\t\t\t[-87.532196, 39.607306],\n\t\t\t\t\t\t[-87.532365, 39.646126],\n\t\t\t\t\t\t[-87.532444, 39.646102],\n\t\t\t\t\t\t[-87.532703, 39.664868],\n\t\t\t\t\t\t[-87.533066, 39.781743],\n\t\t\t\t\t\t[-87.533058, 39.796243],\n\t\t\t\t\t\t[-87.533056, 39.803922],\n\t\t\t\t\t\t[-87.533142, 39.810947],\n\t\t\t\t\t\t[-87.533227, 39.883000],\n\t\t\t\t\t\t[-87.533227, 39.883127],\n\t\t\t\t\t\t[-87.532776, 39.971077],\n\t\t\t\t\t\t[-87.532790, 39.975010],\n\t\t\t\t\t\t[-87.532683, 39.977691],\n\t\t\t\t\t\t[-87.532542, 39.987462],\n\t\t\t\t\t\t[-87.532331, 39.997776],\n\t\t\t\t\t\t[-87.532287, 40.000037],\n\t\t\t\t\t\t[-87.532308, 40.011492],\n\t\t\t\t\t\t[-87.532308, 40.011587],\n\t\t\t\t\t\t[-87.531561, 40.133005],\n\t\t\t\t\t\t[-87.531759, 40.144273],\n\t\t\t\t\t\t[-87.531439, 40.148027],\n\t\t\t\t\t\t[-87.531438, 40.148123],\n\t\t\t\t\t\t[-87.406667, 40.127508],\n\t\t\t\t\t\t[-87.420221, 39.952452],\n\t\t\t\t\t\t[-87.353863, 39.862077],\n\t\t\t\t\t\t[-87.395625, 39.652950],\n\t\t\t\t\t\t[-87.382418, 39.607937]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19003\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"003\",\n\t\t\t\t\"NAME\": \"Adams\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 423.439000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.927587, 41.158508],\n\t\t\t\t\t\t[-94.704975, 41.157903],\n\t\t\t\t\t\t[-94.700589, 41.158085],\n\t\t\t\t\t\t[-94.470603, 41.157566],\n\t\t\t\t\t\t[-94.470779, 40.899502],\n\t\t\t\t\t\t[-94.928459, 40.900653],\n\t\t\t\t\t\t[-94.927587, 41.158508]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19013\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"013\",\n\t\t\t\t\"NAME\": \"Black Hawk\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 565.769000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.064766, 42.297259],\n\t\t\t\t\t\t[-92.298792, 42.297527],\n\t\t\t\t\t\t[-92.533510, 42.297001],\n\t\t\t\t\t\t[-92.554300, 42.555854],\n\t\t\t\t\t\t[-92.554561, 42.559350],\n\t\t\t\t\t\t[-92.554492, 42.642314],\n\t\t\t\t\t\t[-92.081661, 42.642056],\n\t\t\t\t\t\t[-92.064766, 42.297259]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19025\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"025\",\n\t\t\t\t\"NAME\": \"Calhoun\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 569.968000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.914485, 42.560309],\n\t\t\t\t\t\t[-94.443024, 42.558843],\n\t\t\t\t\t\t[-94.397671, 42.473300],\n\t\t\t\t\t\t[-94.397526, 42.209161],\n\t\t\t\t\t\t[-94.628806, 42.209396],\n\t\t\t\t\t\t[-94.858412, 42.209692],\n\t\t\t\t\t\t[-94.856702, 42.473967],\n\t\t\t\t\t\t[-94.914487, 42.474190],\n\t\t\t\t\t\t[-94.914485, 42.560309]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19035\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"035\",\n\t\t\t\t\"NAME\": \"Cherokee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 576.906000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.859377, 42.909097],\n\t\t\t\t\t\t[-95.388182, 42.909897],\n\t\t\t\t\t\t[-95.388010, 42.561742],\n\t\t\t\t\t\t[-95.741611, 42.561285],\n\t\t\t\t\t\t[-95.750287, 42.561106],\n\t\t\t\t\t\t[-95.859949, 42.560620],\n\t\t\t\t\t\t[-95.859377, 42.909097]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17071\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"071\",\n\t\t\t\t\"NAME\": \"Henderson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 378.872000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.112258, 40.696218],\n\t\t\t\t\t\t[-91.111940, 40.697018],\n\t\t\t\t\t\t[-91.094728, 40.797833],\n\t\t\t\t\t\t[-91.097031, 40.802471],\n\t\t\t\t\t\t[-91.097553, 40.808433],\n\t\t\t\t\t\t[-91.092993, 40.821079],\n\t\t\t\t\t\t[-91.009536, 40.900565],\n\t\t\t\t\t\t[-90.998500, 40.908120],\n\t\t\t\t\t\t[-90.968995, 40.919127],\n\t\t\t\t\t\t[-90.962916, 40.924957],\n\t\t\t\t\t\t[-90.952233, 40.954047],\n\t\t\t\t\t\t[-90.942253, 41.034702],\n\t\t\t\t\t\t[-90.945549, 41.061730],\n\t\t\t\t\t\t[-90.948523, 41.070248],\n\t\t\t\t\t\t[-90.785194, 41.068749],\n\t\t\t\t\t\t[-90.789652, 40.635750],\n\t\t\t\t\t\t[-90.894339, 40.638683],\n\t\t\t\t\t\t[-90.904216, 40.639201],\n\t\t\t\t\t\t[-90.913894, 40.637748],\n\t\t\t\t\t\t[-91.185415, 40.638052],\n\t\t\t\t\t\t[-91.138055, 40.660893],\n\t\t\t\t\t\t[-91.122421, 40.670675],\n\t\t\t\t\t\t[-91.112258, 40.696218]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17075\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"075\",\n\t\t\t\t\"NAME\": \"Iroquois\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1117.316000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.526129, 40.736885],\n\t\t\t\t\t\t[-87.526292, 40.535409],\n\t\t\t\t\t\t[-87.526352, 40.535111],\n\t\t\t\t\t\t[-87.526376, 40.491574],\n\t\t\t\t\t\t[-87.526379, 40.491237],\n\t\t\t\t\t\t[-87.935309, 40.485923],\n\t\t\t\t\t\t[-88.117905, 40.488086],\n\t\t\t\t\t\t[-88.131938, 40.997839],\n\t\t\t\t\t\t[-87.526307, 41.010355],\n\t\t\t\t\t\t[-87.526305, 41.010346],\n\t\t\t\t\t\t[-87.526084, 40.911914],\n\t\t\t\t\t\t[-87.526437, 40.894209],\n\t\t\t\t\t\t[-87.525962, 40.880618],\n\t\t\t\t\t\t[-87.526113, 40.879703],\n\t\t\t\t\t\t[-87.525783, 40.854357],\n\t\t\t\t\t\t[-87.526129, 40.736950],\n\t\t\t\t\t\t[-87.526129, 40.736885]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17087\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"087\",\n\t\t\t\t\"NAME\": \"Johnson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 343.915000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.041401, 37.596576],\n\t\t\t\t\t\t[-88.851487, 37.597236],\n\t\t\t\t\t\t[-88.708546, 37.599277],\n\t\t\t\t\t\t[-88.710650, 37.337090],\n\t\t\t\t\t\t[-88.904003, 37.335629],\n\t\t\t\t\t\t[-88.929129, 37.302647],\n\t\t\t\t\t\t[-89.044787, 37.329846],\n\t\t\t\t\t\t[-89.041401, 37.596576]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17095\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"095\",\n\t\t\t\t\"NAME\": \"Knox\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 716.395000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.215267, 40.713598],\n\t\t\t\t\t\t[-90.444343, 40.714667],\n\t\t\t\t\t\t[-90.439423, 41.063995],\n\t\t\t\t\t\t[-90.437957, 41.133884],\n\t\t\t\t\t\t[-90.438122, 41.136808],\n\t\t\t\t\t\t[-90.437847, 41.137221],\n\t\t\t\t\t\t[-90.437657, 41.151252],\n\t\t\t\t\t\t[-90.323178, 41.151288],\n\t\t\t\t\t\t[-89.984559, 41.149366],\n\t\t\t\t\t\t[-89.985479, 40.974495],\n\t\t\t\t\t\t[-89.985429, 40.887645],\n\t\t\t\t\t\t[-89.985376, 40.850576],\n\t\t\t\t\t\t[-89.985226, 40.848699],\n\t\t\t\t\t\t[-89.985333, 40.800032],\n\t\t\t\t\t\t[-89.986068, 40.712257],\n\t\t\t\t\t\t[-90.215267, 40.713598]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17113\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"113\",\n\t\t\t\t\"NAME\": \"McLean\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1183.378000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.814487, 40.755060],\n\t\t\t\t\t\t[-88.584272, 40.757608],\n\t\t\t\t\t\t[-88.574502, 40.616550],\n\t\t\t\t\t\t[-88.459475, 40.617345],\n\t\t\t\t\t\t[-88.459957, 40.398850],\n\t\t\t\t\t\t[-88.460418, 40.281935],\n\t\t\t\t\t\t[-88.480900, 40.281216],\n\t\t\t\t\t\t[-88.574885, 40.281501],\n\t\t\t\t\t\t[-88.689271, 40.282148],\n\t\t\t\t\t\t[-89.148764, 40.282038],\n\t\t\t\t\t\t[-89.262650, 40.280919],\n\t\t\t\t\t\t[-89.263740, 40.325344],\n\t\t\t\t\t\t[-89.269390, 40.594329],\n\t\t\t\t\t\t[-89.155175, 40.596417],\n\t\t\t\t\t\t[-89.145649, 40.662057],\n\t\t\t\t\t\t[-88.984700, 40.664954],\n\t\t\t\t\t\t[-88.986896, 40.752297],\n\t\t\t\t\t\t[-88.929331, 40.753337],\n\t\t\t\t\t\t[-88.814487, 40.755060]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17123\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"123\",\n\t\t\t\t\"NAME\": \"Marshall\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 386.789000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.638429, 41.148591],\n\t\t\t\t\t\t[-89.466421, 41.148558],\n\t\t\t\t\t\t[-89.329270, 41.147931],\n\t\t\t\t\t\t[-89.358597, 41.103665],\n\t\t\t\t\t\t[-89.162238, 41.104080],\n\t\t\t\t\t\t[-89.047856, 41.104781],\n\t\t\t\t\t\t[-89.047718, 40.925749],\n\t\t\t\t\t\t[-89.472330, 40.921206],\n\t\t\t\t\t\t[-89.447693, 40.973246],\n\t\t\t\t\t\t[-89.638727, 40.973707],\n\t\t\t\t\t\t[-89.638429, 41.148591]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17135\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"135\",\n\t\t\t\t\"NAME\": \"Montgomery\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 703.687000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.700338, 39.175440],\n\t\t\t\t\t\t[-89.701645, 39.523369],\n\t\t\t\t\t\t[-89.533655, 39.524592],\n\t\t\t\t\t\t[-89.530836, 39.348864],\n\t\t\t\t\t\t[-89.139807, 39.348888],\n\t\t\t\t\t\t[-89.140076, 39.217907],\n\t\t\t\t\t\t[-89.250513, 39.217512],\n\t\t\t\t\t\t[-89.250658, 39.086442],\n\t\t\t\t\t\t[-89.250335, 39.029942],\n\t\t\t\t\t\t[-89.250447, 39.028145],\n\t\t\t\t\t\t[-89.586088, 39.028246],\n\t\t\t\t\t\t[-89.639265, 38.999129],\n\t\t\t\t\t\t[-89.648846, 38.999167],\n\t\t\t\t\t\t[-89.652405, 38.999581],\n\t\t\t\t\t\t[-89.653446, 38.999191],\n\t\t\t\t\t\t[-89.698555, 38.998979],\n\t\t\t\t\t\t[-89.700338, 39.175440]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17151\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"151\",\n\t\t\t\t\"NAME\": \"Pope\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 368.770000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.490297, 37.066669],\n\t\t\t\t\t\t[-88.490336, 37.159358],\n\t\t\t\t\t\t[-88.710650, 37.337090],\n\t\t\t\t\t\t[-88.708546, 37.599277],\n\t\t\t\t\t\t[-88.412112, 37.599912],\n\t\t\t\t\t\t[-88.415149, 37.424863],\n\t\t\t\t\t\t[-88.414895, 37.423461],\n\t\t\t\t\t\t[-88.439333, 37.416416],\n\t\t\t\t\t\t[-88.456000, 37.408482],\n\t\t\t\t\t\t[-88.470224, 37.396255],\n\t\t\t\t\t\t[-88.476592, 37.386875],\n\t\t\t\t\t\t[-88.514661, 37.290948],\n\t\t\t\t\t\t[-88.515939, 37.284043],\n\t\t\t\t\t\t[-88.509328, 37.262130],\n\t\t\t\t\t\t[-88.471753, 37.220155],\n\t\t\t\t\t\t[-88.458763, 37.213536],\n\t\t\t\t\t\t[-88.447764, 37.203527],\n\t\t\t\t\t\t[-88.424403, 37.152428],\n\t\t\t\t\t\t[-88.444605, 37.098601],\n\t\t\t\t\t\t[-88.458948, 37.073796],\n\t\t\t\t\t\t[-88.482856, 37.067114],\n\t\t\t\t\t\t[-88.490297, 37.066669]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17163\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"163\",\n\t\t\t\t\"NAME\": \"St. Clair\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 657.759000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.184510, 38.611551],\n\t\t\t\t\t\t[-90.182625, 38.617989],\n\t\t\t\t\t\t[-90.178010, 38.633750],\n\t\t\t\t\t\t[-90.177710, 38.642750],\n\t\t\t\t\t\t[-90.181110, 38.659550],\n\t\t\t\t\t\t[-90.181399, 38.660378],\n\t\t\t\t\t\t[-90.177720, 38.660536],\n\t\t\t\t\t\t[-90.037105, 38.658449],\n\t\t\t\t\t\t[-89.707024, 38.655152],\n\t\t\t\t\t\t[-89.704417, 38.415667],\n\t\t\t\t\t\t[-89.703256, 38.219404],\n\t\t\t\t\t\t[-89.899061, 38.220755],\n\t\t\t\t\t\t[-89.913226, 38.307829],\n\t\t\t\t\t\t[-90.036018, 38.308850],\n\t\t\t\t\t\t[-90.263064, 38.520220],\n\t\t\t\t\t\t[-90.260314, 38.528352],\n\t\t\t\t\t\t[-90.257773, 38.532008],\n\t\t\t\t\t\t[-90.248913, 38.544752],\n\t\t\t\t\t\t[-90.224512, 38.574651],\n\t\t\t\t\t\t[-90.202511, 38.588651],\n\t\t\t\t\t\t[-90.196011, 38.594451],\n\t\t\t\t\t\t[-90.184510, 38.611551]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17187\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"187\",\n\t\t\t\t\"NAME\": \"Warren\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 542.405000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.445506, 40.627843],\n\t\t\t\t\t\t[-90.789652, 40.635750],\n\t\t\t\t\t\t[-90.785194, 41.068749],\n\t\t\t\t\t\t[-90.439423, 41.063995],\n\t\t\t\t\t\t[-90.444343, 40.714667],\n\t\t\t\t\t\t[-90.444429, 40.697371],\n\t\t\t\t\t\t[-90.444606, 40.695505],\n\t\t\t\t\t\t[-90.444875, 40.677784],\n\t\t\t\t\t\t[-90.444750, 40.677479],\n\t\t\t\t\t\t[-90.444877, 40.663944],\n\t\t\t\t\t\t[-90.445009, 40.662406],\n\t\t\t\t\t\t[-90.445084, 40.657202],\n\t\t\t\t\t\t[-90.445217, 40.656870],\n\t\t\t\t\t\t[-90.445506, 40.627843]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17199\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"199\",\n\t\t\t\t\"NAME\": \"Williamson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 420.149000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.708546, 37.599277],\n\t\t\t\t\t\t[-88.851487, 37.597236],\n\t\t\t\t\t\t[-89.041401, 37.596576],\n\t\t\t\t\t\t[-89.153668, 37.600469],\n\t\t\t\t\t\t[-89.151176, 37.861999],\n\t\t\t\t\t\t[-88.706760, 37.863338],\n\t\t\t\t\t\t[-88.708546, 37.599277]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31107\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"107\",\n\t\t\t\t\"NAME\": \"Knox\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1108.350000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.157405, 42.831899],\n\t\t\t\t\t\t[-98.056625, 42.770781],\n\t\t\t\t\t\t[-98.035034, 42.764205],\n\t\t\t\t\t\t[-98.017228, 42.762411],\n\t\t\t\t\t\t[-98.000348, 42.763256],\n\t\t\t\t\t\t[-97.950147, 42.769619],\n\t\t\t\t\t\t[-97.936716, 42.775754],\n\t\t\t\t\t\t[-97.908983, 42.794909],\n\t\t\t\t\t\t[-97.888562, 42.817251],\n\t\t\t\t\t\t[-97.879878, 42.835395],\n\t\t\t\t\t\t[-97.875345, 42.858724],\n\t\t\t\t\t\t[-97.865695, 42.862860],\n\t\t\t\t\t\t[-97.845270, 42.867734],\n\t\t\t\t\t\t[-97.828496, 42.868797],\n\t\t\t\t\t\t[-97.814382, 42.861119],\n\t\t\t\t\t\t[-97.774456, 42.849774],\n\t\t\t\t\t\t[-97.686506, 42.842435],\n\t\t\t\t\t\t[-97.635115, 42.844984],\n\t\t\t\t\t\t[-97.531867, 42.850105],\n\t\t\t\t\t\t[-97.485376, 42.854838],\n\t\t\t\t\t\t[-97.485298, 42.438578],\n\t\t\t\t\t\t[-97.834431, 42.437684],\n\t\t\t\t\t\t[-98.300235, 42.436913],\n\t\t\t\t\t\t[-98.305456, 42.436930],\n\t\t\t\t\t\t[-98.305149, 42.761207],\n\t\t\t\t\t\t[-98.309741, 42.881232],\n\t\t\t\t\t\t[-98.204506, 42.846845],\n\t\t\t\t\t\t[-98.165835, 42.837011],\n\t\t\t\t\t\t[-98.157405, 42.831899]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28077\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"077\",\n\t\t\t\t\"NAME\": \"Lawrence\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 430.668000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.974586, 31.761655],\n\t\t\t\t\t\t[-89.976052, 31.522477],\n\t\t\t\t\t\t[-89.958940, 31.390489],\n\t\t\t\t\t\t[-90.040485, 31.394673],\n\t\t\t\t\t\t[-90.040466, 31.336014],\n\t\t\t\t\t\t[-90.243890, 31.350274],\n\t\t\t\t\t\t[-90.245191, 31.717524],\n\t\t\t\t\t\t[-90.122565, 31.752680],\n\t\t\t\t\t\t[-89.974586, 31.761655]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28081\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"081\",\n\t\t\t\t\"NAME\": \"Lee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 449.951000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.824523, 34.074948],\n\t\t\t\t\t\t[-88.824966, 34.364759],\n\t\t\t\t\t\t[-88.789442, 34.494930],\n\t\t\t\t\t\t[-88.736465, 34.508910],\n\t\t\t\t\t\t[-88.541749, 34.509192],\n\t\t\t\t\t\t[-88.542079, 34.465276],\n\t\t\t\t\t\t[-88.543352, 34.089044],\n\t\t\t\t\t\t[-88.718693, 34.089340],\n\t\t\t\t\t\t[-88.718964, 34.074521],\n\t\t\t\t\t\t[-88.725125, 34.074815],\n\t\t\t\t\t\t[-88.824523, 34.074948]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28085\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"085\",\n\t\t\t\t\"NAME\": \"Lincoln\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 586.115000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.736824, 31.698491],\n\t\t\t\t\t\t[-90.279953, 31.699865],\n\t\t\t\t\t\t[-90.245191, 31.717524],\n\t\t\t\t\t\t[-90.243890, 31.350274],\n\t\t\t\t\t\t[-90.260391, 31.350274],\n\t\t\t\t\t\t[-90.548199, 31.349574],\n\t\t\t\t\t\t[-90.633302, 31.349306],\n\t\t\t\t\t\t[-90.633231, 31.611409],\n\t\t\t\t\t\t[-90.737330, 31.611124],\n\t\t\t\t\t\t[-90.736824, 31.698491]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28087\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"087\",\n\t\t\t\t\"NAME\": \"Lowndes\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 505.509000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.277421, 33.512436],\n\t\t\t\t\t\t[-88.291127, 33.399061],\n\t\t\t\t\t\t[-88.304514, 33.288320],\n\t\t\t\t\t\t[-88.669076, 33.286922],\n\t\t\t\t\t\t[-88.671250, 33.506168],\n\t\t\t\t\t\t[-88.480299, 33.522741],\n\t\t\t\t\t\t[-88.513917, 33.650209],\n\t\t\t\t\t\t[-88.370330, 33.685918],\n\t\t\t\t\t\t[-88.325119, 33.745591],\n\t\t\t\t\t\t[-88.248390, 33.744908],\n\t\t\t\t\t\t[-88.254445, 33.698779],\n\t\t\t\t\t\t[-88.254622, 33.695780],\n\t\t\t\t\t\t[-88.256131, 33.682860],\n\t\t\t\t\t\t[-88.256343, 33.682053],\n\t\t\t\t\t\t[-88.267005, 33.594229],\n\t\t\t\t\t\t[-88.267148, 33.591989],\n\t\t\t\t\t\t[-88.268160, 33.585040],\n\t\t\t\t\t\t[-88.269076, 33.576929],\n\t\t\t\t\t\t[-88.269532, 33.572894],\n\t\t\t\t\t\t[-88.270050, 33.570819],\n\t\t\t\t\t\t[-88.274619, 33.534008],\n\t\t\t\t\t\t[-88.276805, 33.516463],\n\t\t\t\t\t\t[-88.277421, 33.512436]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28107\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"107\",\n\t\t\t\t\"NAME\": \"Panola\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 685.144000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.721341, 34.554274],\n\t\t\t\t\t\t[-89.721050, 34.192545],\n\t\t\t\t\t\t[-89.721431, 34.163513],\n\t\t\t\t\t\t[-89.931485, 34.164303],\n\t\t\t\t\t\t[-90.135456, 34.160074],\n\t\t\t\t\t\t[-90.134441, 34.265195],\n\t\t\t\t\t\t[-90.194086, 34.301407],\n\t\t\t\t\t\t[-90.198536, 34.511088],\n\t\t\t\t\t\t[-90.198631, 34.554425],\n\t\t\t\t\t\t[-89.721341, 34.554274]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28123\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"123\",\n\t\t\t\t\"NAME\": \"Scott\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 609.185000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.322692, 32.223472],\n\t\t\t\t\t\t[-89.730424, 32.222039],\n\t\t\t\t\t\t[-89.730063, 32.352733],\n\t\t\t\t\t\t[-89.784123, 32.586891],\n\t\t\t\t\t\t[-89.781805, 32.597364],\n\t\t\t\t\t\t[-89.770781, 32.599184],\n\t\t\t\t\t\t[-89.759155, 32.613543],\n\t\t\t\t\t\t[-89.730304, 32.634228],\n\t\t\t\t\t\t[-89.730152, 32.577248],\n\t\t\t\t\t\t[-89.322598, 32.576433],\n\t\t\t\t\t\t[-89.322692, 32.223472]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28133\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"133\",\n\t\t\t\t\"NAME\": \"Sunflower\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 697.754000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.451643, 33.811390],\n\t\t\t\t\t\t[-90.453233, 33.329484],\n\t\t\t\t\t\t[-90.555549, 33.329181],\n\t\t\t\t\t\t[-90.555211, 33.270533],\n\t\t\t\t\t\t[-90.716277, 33.270032],\n\t\t\t\t\t\t[-90.763773, 33.270359],\n\t\t\t\t\t\t[-90.763509, 33.529389],\n\t\t\t\t\t\t[-90.763469, 33.616164],\n\t\t\t\t\t\t[-90.658600, 33.616272],\n\t\t\t\t\t\t[-90.657002, 33.987586],\n\t\t\t\t\t\t[-90.451012, 33.985689],\n\t\t\t\t\t\t[-90.450289, 33.970944],\n\t\t\t\t\t\t[-90.451643, 33.811390]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28145\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"145\",\n\t\t\t\t\"NAME\": \"Union\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 415.598000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.735440, 34.596483],\n\t\t\t\t\t\t[-88.736465, 34.508910],\n\t\t\t\t\t\t[-88.789442, 34.494930],\n\t\t\t\t\t\t[-88.824966, 34.364759],\n\t\t\t\t\t\t[-88.928901, 34.379361],\n\t\t\t\t\t\t[-89.246339, 34.379344],\n\t\t\t\t\t\t[-89.246133, 34.495633],\n\t\t\t\t\t\t[-89.245920, 34.541350],\n\t\t\t\t\t\t[-89.244591, 34.542329],\n\t\t\t\t\t\t[-89.245922, 34.542942],\n\t\t\t\t\t\t[-89.245645, 34.583234],\n\t\t\t\t\t\t[-89.245611, 34.597601],\n\t\t\t\t\t\t[-89.088488, 34.598247],\n\t\t\t\t\t\t[-88.735440, 34.596483]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28159\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"159\",\n\t\t\t\t\"NAME\": \"Winston\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 607.245000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.108824, 33.215886],\n\t\t\t\t\t\t[-89.108886, 33.285937],\n\t\t\t\t\t\t[-89.088255, 33.286003],\n\t\t\t\t\t\t[-88.988471, 33.286087],\n\t\t\t\t\t\t[-88.813053, 33.286424],\n\t\t\t\t\t\t[-88.812782, 32.925973],\n\t\t\t\t\t\t[-88.914413, 32.926600],\n\t\t\t\t\t\t[-89.319163, 32.931654],\n\t\t\t\t\t\t[-89.317855, 33.108871],\n\t\t\t\t\t\t[-89.213921, 33.109402],\n\t\t\t\t\t\t[-89.213422, 33.197543],\n\t\t\t\t\t\t[-89.108824, 33.215886]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29003\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"003\",\n\t\t\t\t\"NAME\": \"Andrew\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 432.703000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.043080, 40.130096],\n\t\t\t\t\t\t[-94.605942, 40.126127],\n\t\t\t\t\t\t[-94.606575, 40.042049],\n\t\t\t\t\t\t[-94.605377, 40.039217],\n\t\t\t\t\t\t[-94.602819, 39.819608],\n\t\t\t\t\t\t[-94.876544, 39.820594],\n\t\t\t\t\t\t[-94.908267, 39.812172],\n\t\t\t\t\t\t[-94.927897, 39.886112],\n\t\t\t\t\t\t[-94.935963, 39.894355],\n\t\t\t\t\t\t[-94.954155, 39.901138],\n\t\t\t\t\t\t[-94.993348, 39.900747],\n\t\t\t\t\t\t[-95.043080, 40.130096]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29015\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"015\",\n\t\t\t\t\"NAME\": \"Benton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 704.060000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.504025, 38.071757],\n\t\t\t\t\t\t[-93.523484, 38.207216],\n\t\t\t\t\t\t[-93.512743, 38.512476],\n\t\t\t\t\t\t[-93.291851, 38.506321],\n\t\t\t\t\t\t[-93.290454, 38.535388],\n\t\t\t\t\t\t[-93.067294, 38.529995],\n\t\t\t\t\t\t[-93.077692, 38.263092],\n\t\t\t\t\t\t[-93.065199, 38.062479],\n\t\t\t\t\t\t[-93.497132, 38.072573],\n\t\t\t\t\t\t[-93.504025, 38.071757]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29027\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"027\",\n\t\t\t\t\"NAME\": \"Callaway\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 834.575000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.944238, 38.596925],\n\t\t\t\t\t\t[-92.065233, 38.557079],\n\t\t\t\t\t\t[-92.161663, 38.578057],\n\t\t\t\t\t\t[-92.220661, 38.643167],\n\t\t\t\t\t\t[-92.170950, 38.765300],\n\t\t\t\t\t\t[-92.131512, 39.064484],\n\t\t\t\t\t\t[-92.110387, 39.064204],\n\t\t\t\t\t\t[-91.633998, 39.059057],\n\t\t\t\t\t\t[-91.647171, 38.703396],\n\t\t\t\t\t\t[-91.869489, 38.663940],\n\t\t\t\t\t\t[-91.944238, 38.596925]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29039\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"039\",\n\t\t\t\t\"NAME\": \"Cedar\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 474.483000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.616033, 37.572689],\n\t\t\t\t\t\t[-94.075385, 37.581570],\n\t\t\t\t\t\t[-94.073524, 37.639722],\n\t\t\t\t\t\t[-94.065675, 37.900987],\n\t\t\t\t\t\t[-93.808648, 37.892775],\n\t\t\t\t\t\t[-93.811402, 37.834571],\n\t\t\t\t\t\t[-93.628404, 37.829435],\n\t\t\t\t\t\t[-93.616033, 37.572689]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29049\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"049\",\n\t\t\t\t\"NAME\": \"Clinton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 418.956000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.602257, 39.747195],\n\t\t\t\t\t\t[-94.205961, 39.745841],\n\t\t\t\t\t\t[-94.208423, 39.527200],\n\t\t\t\t\t\t[-94.210830, 39.456337],\n\t\t\t\t\t\t[-94.210642, 39.454682],\n\t\t\t\t\t\t[-94.597879, 39.455838],\n\t\t\t\t\t\t[-94.600819, 39.456155],\n\t\t\t\t\t\t[-94.601246, 39.530372],\n\t\t\t\t\t\t[-94.602257, 39.747195]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29059\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"059\",\n\t\t\t\t\"NAME\": \"Dallas\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 540.770000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.182489, 37.417204],\n\t\t\t\t\t\t[-93.175222, 37.674890],\n\t\t\t\t\t\t[-93.187915, 37.802737],\n\t\t\t\t\t\t[-93.182706, 37.904144],\n\t\t\t\t\t\t[-93.072447, 37.902627],\n\t\t\t\t\t\t[-92.855384, 37.895736],\n\t\t\t\t\t\t[-92.853481, 37.483970],\n\t\t\t\t\t\t[-93.071584, 37.487444],\n\t\t\t\t\t\t[-93.073380, 37.414989],\n\t\t\t\t\t\t[-93.158287, 37.416799],\n\t\t\t\t\t\t[-93.182489, 37.417204]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29071\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"071\",\n\t\t\t\t\"NAME\": \"Franklin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 922.681000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.964461, 38.547545],\n\t\t\t\t\t\t[-90.916554, 38.534725],\n\t\t\t\t\t\t[-90.732328, 38.639302],\n\t\t\t\t\t\t[-90.736319, 38.466645],\n\t\t\t\t\t\t[-90.737599, 38.415897],\n\t\t\t\t\t\t[-90.780185, 38.204112],\n\t\t\t\t\t\t[-91.095765, 38.204083],\n\t\t\t\t\t\t[-91.367482, 38.209741],\n\t\t\t\t\t\t[-91.369192, 38.699324],\n\t\t\t\t\t\t[-91.313093, 38.706715],\n\t\t\t\t\t\t[-91.226547, 38.621567],\n\t\t\t\t\t\t[-91.077324, 38.609343],\n\t\t\t\t\t\t[-90.964461, 38.547545]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48107\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"107\",\n\t\t\t\t\"NAME\": \"Crosby\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 900.198000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-101.563580, 33.830451],\n\t\t\t\t\t\t[-101.041158, 33.833625],\n\t\t\t\t\t\t[-101.038788, 33.397214],\n\t\t\t\t\t\t[-101.556884, 33.394760],\n\t\t\t\t\t\t[-101.563580, 33.830451]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48119\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"119\",\n\t\t\t\t\"NAME\": \"Delta\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 256.825000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.861778, 33.219330],\n\t\t\t\t\t\t[-95.858723, 33.409530],\n\t\t\t\t\t\t[-95.857738, 33.461722],\n\t\t\t\t\t\t[-95.826730, 33.459038],\n\t\t\t\t\t\t[-95.758439, 33.495098],\n\t\t\t\t\t\t[-95.621027, 33.487060],\n\t\t\t\t\t\t[-95.308637, 33.380662],\n\t\t\t\t\t\t[-95.307545, 33.380676],\n\t\t\t\t\t\t[-95.306640, 33.378027],\n\t\t\t\t\t\t[-95.307770, 33.377769],\n\t\t\t\t\t\t[-95.308593, 33.377190],\n\t\t\t\t\t\t[-95.314165, 33.367232],\n\t\t\t\t\t\t[-95.584353, 33.359405],\n\t\t\t\t\t\t[-95.730784, 33.305405],\n\t\t\t\t\t\t[-95.861778, 33.219330]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48131\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"131\",\n\t\t\t\t\"NAME\": \"Duval\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1793.481000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.798323, 27.354029],\n\t\t\t\t\t\t[-98.803325, 28.057480],\n\t\t\t\t\t\t[-98.334323, 28.057800],\n\t\t\t\t\t\t[-98.235497, 28.057966],\n\t\t\t\t\t\t[-98.232464, 27.262487],\n\t\t\t\t\t\t[-98.523723, 27.265115],\n\t\t\t\t\t\t[-98.522293, 27.343284],\n\t\t\t\t\t\t[-98.798323, 27.354029]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48143\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"143\",\n\t\t\t\t\"NAME\": \"Erath\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1083.071000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.945625, 32.233468],\n\t\t\t\t\t\t[-97.940474, 32.221738],\n\t\t\t\t\t\t[-97.864864, 32.087328],\n\t\t\t\t\t\t[-98.005462, 32.017897],\n\t\t\t\t\t\t[-98.208386, 31.917511],\n\t\t\t\t\t\t[-98.251211, 31.980127],\n\t\t\t\t\t\t[-98.327499, 31.941261],\n\t\t\t\t\t\t[-98.551158, 32.261436],\n\t\t\t\t\t\t[-98.475133, 32.298916],\n\t\t\t\t\t\t[-98.475177, 32.513039],\n\t\t\t\t\t\t[-98.068545, 32.511626],\n\t\t\t\t\t\t[-97.945625, 32.233468]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48153\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"153\",\n\t\t\t\t\"NAME\": \"Floyd\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 992.143000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-101.471580, 34.312290],\n\t\t\t\t\t\t[-101.041484, 34.312444],\n\t\t\t\t\t\t[-101.041158, 33.833625],\n\t\t\t\t\t\t[-101.563580, 33.830451],\n\t\t\t\t\t\t[-101.564856, 34.312493],\n\t\t\t\t\t\t[-101.471580, 34.312290]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48163\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"163\",\n\t\t\t\t\"NAME\": \"Frio\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1133.500000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.804900, 29.090434],\n\t\t\t\t\t\t[-98.800841, 28.647487],\n\t\t\t\t\t\t[-99.395736, 28.640784],\n\t\t\t\t\t\t[-99.409021, 28.640566],\n\t\t\t\t\t\t[-99.413880, 29.091335],\n\t\t\t\t\t\t[-98.804900, 29.090434]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48171\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"171\",\n\t\t\t\t\"NAME\": \"Gillespie\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1058.214000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.920147, 30.138290],\n\t\t\t\t\t\t[-99.300988, 30.134298],\n\t\t\t\t\t\t[-99.301718, 30.286653],\n\t\t\t\t\t\t[-99.303996, 30.499832],\n\t\t\t\t\t\t[-98.964232, 30.498482],\n\t\t\t\t\t\t[-98.591670, 30.499875],\n\t\t\t\t\t\t[-98.587897, 30.138954],\n\t\t\t\t\t\t[-98.920147, 30.138290]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48173\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"173\",\n\t\t\t\t\"NAME\": \"Glasscock\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 900.218000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-101.267122, 31.650854],\n\t\t\t\t\t\t[-101.775802, 31.651319],\n\t\t\t\t\t\t[-101.776085, 32.086925],\n\t\t\t\t\t\t[-101.695011, 32.087532],\n\t\t\t\t\t\t[-101.264216, 32.087136],\n\t\t\t\t\t\t[-101.267122, 31.650854]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48175\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"175\",\n\t\t\t\t\"NAME\": \"Goliad\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 852.014000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.574639, 28.813300],\n\t\t\t\t\t\t[-97.417340, 28.925228],\n\t\t\t\t\t\t[-97.305916, 28.864037],\n\t\t\t\t\t\t[-97.231971, 28.865303],\n\t\t\t\t\t\t[-97.158933, 28.776156],\n\t\t\t\t\t\t[-97.182359, 28.610602],\n\t\t\t\t\t\t[-97.160751, 28.553475],\n\t\t\t\t\t\t[-97.375268, 28.389116],\n\t\t\t\t\t\t[-97.375579, 28.388684],\n\t\t\t\t\t\t[-97.551369, 28.450441],\n\t\t\t\t\t\t[-97.558496, 28.514054],\n\t\t\t\t\t\t[-97.696945, 28.541856],\n\t\t\t\t\t\t[-97.778530, 28.668027],\n\t\t\t\t\t\t[-97.574639, 28.813300]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48183\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"183\",\n\t\t\t\t\"NAME\": \"Gregg\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 273.303000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.986935, 32.537246],\n\t\t\t\t\t\t[-94.701790, 32.652209],\n\t\t\t\t\t\t[-94.701986, 32.421782],\n\t\t\t\t\t\t[-94.579219, 32.394916],\n\t\t\t\t\t\t[-94.600776, 32.360044],\n\t\t\t\t\t\t[-94.638347, 32.370539],\n\t\t\t\t\t\t[-94.985411, 32.370820],\n\t\t\t\t\t\t[-94.986406, 32.371322],\n\t\t\t\t\t\t[-94.986935, 32.537246]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48187\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"187\",\n\t\t\t\t\"NAME\": \"Guadalupe\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 711.300000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.134171, 29.441751],\n\t\t\t\t\t\t[-98.126767, 29.482248],\n\t\t\t\t\t\t[-98.272924, 29.550878],\n\t\t\t\t\t\t[-98.298524, 29.561141],\n\t\t\t\t\t\t[-98.310928, 29.594473],\n\t\t\t\t\t\t[-98.089941, 29.683479],\n\t\t\t\t\t\t[-97.999271, 29.752444],\n\t\t\t\t\t\t[-97.875259, 29.858208],\n\t\t\t\t\t\t[-97.721852, 29.682088],\n\t\t\t\t\t\t[-97.633176, 29.649863],\n\t\t\t\t\t\t[-97.840383, 29.376791],\n\t\t\t\t\t\t[-98.084684, 29.379594],\n\t\t\t\t\t\t[-98.134171, 29.441751]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48205\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"205\",\n\t\t\t\t\"NAME\": \"Hartley\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1462.033000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-102.163015, 36.055249],\n\t\t\t\t\t\t[-102.162809, 35.627515],\n\t\t\t\t\t\t[-103.041554, 35.622487],\n\t\t\t\t\t\t[-103.041357, 35.739274],\n\t\t\t\t\t\t[-103.040824, 36.055231],\n\t\t\t\t\t\t[-102.163015, 36.055249]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48209\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"209\",\n\t\t\t\t\"NAME\": \"Hays\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 677.978000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.172977, 30.356312],\n\t\t\t\t\t\t[-98.011253, 30.242288],\n\t\t\t\t\t\t[-97.710215, 30.024499],\n\t\t\t\t\t\t[-97.893896, 29.883734],\n\t\t\t\t\t\t[-97.875259, 29.858208],\n\t\t\t\t\t\t[-97.999271, 29.752444],\n\t\t\t\t\t\t[-98.030523, 29.848539],\n\t\t\t\t\t\t[-98.297600, 30.037994],\n\t\t\t\t\t\t[-98.172977, 30.356312]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48219\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"219\",\n\t\t\t\t\"NAME\": \"Hockley\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 908.392000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-102.075929, 33.389586],\n\t\t\t\t\t\t[-102.594836, 33.388489],\n\t\t\t\t\t\t[-102.615447, 33.825121],\n\t\t\t\t\t\t[-102.085733, 33.824675],\n\t\t\t\t\t\t[-102.075929, 33.389586]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48231\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"231\",\n\t\t\t\t\"NAME\": \"Hunt\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 840.318000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.297322, 32.841723],\n\t\t\t\t\t\t[-96.297227, 32.981752],\n\t\t\t\t\t\t[-96.295413, 33.351936],\n\t\t\t\t\t\t[-95.858723, 33.409530],\n\t\t\t\t\t\t[-95.861778, 33.219330],\n\t\t\t\t\t\t[-95.863296, 33.000117],\n\t\t\t\t\t\t[-95.862521, 32.979571],\n\t\t\t\t\t\t[-95.945300, 32.979877],\n\t\t\t\t\t\t[-95.987259, 32.876415],\n\t\t\t\t\t\t[-95.934433, 32.837217],\n\t\t\t\t\t\t[-96.076801, 32.838489],\n\t\t\t\t\t\t[-96.297322, 32.841723]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48241\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"241\",\n\t\t\t\t\"NAME\": \"Jasper\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 938.845000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.129632, 31.099280],\n\t\t\t\t\t\t[-94.039034, 31.134271],\n\t\t\t\t\t\t[-93.911126, 31.158071],\n\t\t\t\t\t\t[-93.865711, 30.947218],\n\t\t\t\t\t\t[-93.901452, 30.242672],\n\t\t\t\t\t\t[-94.117604, 30.241665],\n\t\t\t\t\t\t[-94.083386, 30.342181],\n\t\t\t\t\t\t[-94.116498, 30.433966],\n\t\t\t\t\t\t[-94.071689, 30.526033],\n\t\t\t\t\t\t[-94.094812, 30.575543],\n\t\t\t\t\t\t[-94.050960, 30.638568],\n\t\t\t\t\t\t[-94.125824, 30.684052],\n\t\t\t\t\t\t[-94.150119, 30.790203],\n\t\t\t\t\t\t[-94.179343, 30.794974],\n\t\t\t\t\t\t[-94.243766, 30.983554],\n\t\t\t\t\t\t[-94.238424, 31.013705],\n\t\t\t\t\t\t[-94.353782, 31.039371],\n\t\t\t\t\t\t[-94.451127, 31.003445],\n\t\t\t\t\t\t[-94.457820, 31.033326],\n\t\t\t\t\t\t[-94.129632, 31.099280]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48255\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"255\",\n\t\t\t\t\"NAME\": \"Karnes\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 747.556000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.098315, 28.786949],\n\t\t\t\t\t\t[-98.190991, 28.882333],\n\t\t\t\t\t\t[-97.728443, 29.221748],\n\t\t\t\t\t\t[-97.613132, 29.109765],\n\t\t\t\t\t\t[-97.755110, 29.007113],\n\t\t\t\t\t\t[-97.574639, 28.813300],\n\t\t\t\t\t\t[-97.778530, 28.668027],\n\t\t\t\t\t\t[-97.915106, 28.719648],\n\t\t\t\t\t\t[-98.005252, 28.690239],\n\t\t\t\t\t\t[-98.098315, 28.786949]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48269\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"269\",\n\t\t\t\t\"NAME\": \"King\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 910.872000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.518691, 33.835650],\n\t\t\t\t\t\t[-100.048480, 33.835974],\n\t\t\t\t\t\t[-99.996434, 33.835967],\n\t\t\t\t\t\t[-99.990980, 33.397404],\n\t\t\t\t\t\t[-100.517449, 33.397866],\n\t\t\t\t\t\t[-100.518691, 33.835650]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48279\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"279\",\n\t\t\t\t\"NAME\": \"Lamb\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1016.181000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-102.525631, 34.313034],\n\t\t\t\t\t\t[-102.090415, 34.313132],\n\t\t\t\t\t\t[-102.085733, 33.824675],\n\t\t\t\t\t\t[-102.615447, 33.825121],\n\t\t\t\t\t\t[-102.615150, 34.312891],\n\t\t\t\t\t\t[-102.525631, 34.313034]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48289\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"289\",\n\t\t\t\t\"NAME\": \"Leon\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1073.151000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.319165, 31.357129],\n\t\t\t\t\t\t[-96.322853, 31.374067],\n\t\t\t\t\t\t[-96.304907, 31.382132],\n\t\t\t\t\t\t[-96.236629, 31.413392],\n\t\t\t\t\t\t[-95.787300, 31.618385],\n\t\t\t\t\t\t[-95.710112, 31.615587],\n\t\t\t\t\t\t[-95.739279, 31.504056],\n\t\t\t\t\t\t[-95.657202, 31.317999],\n\t\t\t\t\t\t[-95.725226, 31.271084],\n\t\t\t\t\t\t[-95.764410, 31.094211],\n\t\t\t\t\t\t[-95.973841, 31.092150],\n\t\t\t\t\t\t[-96.241020, 30.973737],\n\t\t\t\t\t\t[-96.331090, 31.252230],\n\t\t\t\t\t\t[-96.319165, 31.357129]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08033\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"033\",\n\t\t\t\t\"NAME\": \"Dolores\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1067.051000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-109.041915, 37.530653],\n\t\t\t\t\t\t[-109.041865, 37.530726],\n\t\t\t\t\t\t[-109.041806, 37.604171],\n\t\t\t\t\t\t[-109.042131, 37.617662],\n\t\t\t\t\t\t[-109.042089, 37.623795],\n\t\t\t\t\t\t[-109.041732, 37.711214],\n\t\t\t\t\t\t[-109.041760, 37.713182],\n\t\t\t\t\t\t[-109.041754, 37.835826],\n\t\t\t\t\t\t[-109.041723, 37.842051],\n\t\t\t\t\t\t[-109.042137, 37.881160],\n\t\t\t\t\t\t[-108.256427, 37.894446],\n\t\t\t\t\t\t[-108.209093, 37.820936],\n\t\t\t\t\t\t[-107.989208, 37.856640],\n\t\t\t\t\t\t[-107.860845, 37.775517],\n\t\t\t\t\t\t[-107.968875, 37.696485],\n\t\t\t\t\t\t[-107.970086, 37.639587],\n\t\t\t\t\t\t[-108.917081, 37.631902],\n\t\t\t\t\t\t[-109.043053, 37.485161],\n\t\t\t\t\t\t[-109.041915, 37.530653]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08039\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"039\",\n\t\t\t\t\"NAME\": \"Elbert\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1850.847000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-104.662896, 39.129527],\n\t\t\t\t\t\t[-104.660626, 39.565909],\n\t\t\t\t\t\t[-103.714355, 39.566331],\n\t\t\t\t\t\t[-103.715254, 39.128246],\n\t\t\t\t\t\t[-103.722007, 39.084085],\n\t\t\t\t\t\t[-103.719664, 38.866827],\n\t\t\t\t\t\t[-104.055528, 38.868868],\n\t\t\t\t\t\t[-104.051663, 39.128366],\n\t\t\t\t\t\t[-104.662896, 39.129527]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08045\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"045\",\n\t\t\t\t\"NAME\": \"Garfield\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2947.563000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-109.051417, 39.366677],\n\t\t\t\t\t\t[-109.051363, 39.497674],\n\t\t\t\t\t\t[-109.051221, 39.660472],\n\t\t\t\t\t\t[-107.938546, 39.694464],\n\t\t\t\t\t\t[-107.938502, 39.824996],\n\t\t\t\t\t\t[-107.431770, 39.828377],\n\t\t\t\t\t\t[-107.431665, 39.917725],\n\t\t\t\t\t\t[-107.318751, 39.914968],\n\t\t\t\t\t\t[-107.316993, 40.090765],\n\t\t\t\t\t\t[-107.037363, 40.091538],\n\t\t\t\t\t\t[-107.033968, 39.918913],\n\t\t\t\t\t\t[-107.113672, 39.919112],\n\t\t\t\t\t\t[-107.113446, 39.366066],\n\t\t\t\t\t\t[-107.430949, 39.366178],\n\t\t\t\t\t\t[-108.865465, 39.366251],\n\t\t\t\t\t\t[-108.874002, 39.366269],\n\t\t\t\t\t\t[-108.875659, 39.366531],\n\t\t\t\t\t\t[-109.051417, 39.366677]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06079\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"079\",\n\t\t\t\t\"NAME\": \"San Luis Obispo\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 3298.567000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-120.194146, 35.789204],\n\t\t\t\t\t\t[-120.194053, 35.749964],\n\t\t\t\t\t\t[-120.193934, 35.749393],\n\t\t\t\t\t\t[-120.193892, 35.726513],\n\t\t\t\t\t\t[-120.193918, 35.614359],\n\t\t\t\t\t\t[-120.085922, 35.614524],\n\t\t\t\t\t\t[-120.086674, 35.526554],\n\t\t\t\t\t\t[-119.997382, 35.468702],\n\t\t\t\t\t\t[-119.997392, 35.439495],\n\t\t\t\t\t\t[-119.880045, 35.439133],\n\t\t\t\t\t\t[-119.880172, 35.351211],\n\t\t\t\t\t\t[-119.809346, 35.350865],\n\t\t\t\t\t\t[-119.809449, 35.263584],\n\t\t\t\t\t\t[-119.666663, 35.262527],\n\t\t\t\t\t\t[-119.667056, 35.174809],\n\t\t\t\t\t\t[-119.553641, 35.179975],\n\t\t\t\t\t\t[-119.560975, 35.087673],\n\t\t\t\t\t\t[-119.472719, 35.076885],\n\t\t\t\t\t\t[-119.472754, 34.901174],\n\t\t\t\t\t\t[-119.535757, 34.897576],\n\t\t\t\t\t\t[-119.672963, 34.973375],\n\t\t\t\t\t\t[-119.745566, 34.973676],\n\t\t\t\t\t\t[-119.928419, 35.059794],\n\t\t\t\t\t\t[-119.980122, 35.057573],\n\t\t\t\t\t\t[-120.093376, 35.114102],\n\t\t\t\t\t\t[-120.188383, 35.030378],\n\t\t\t\t\t\t[-120.334548, 35.006315],\n\t\t\t\t\t\t[-120.311498, 34.903764],\n\t\t\t\t\t\t[-120.355343, 34.941265],\n\t\t\t\t\t\t[-120.513924, 34.989276],\n\t\t\t\t\t\t[-120.648905, 34.974393],\n\t\t\t\t\t\t[-120.639990, 35.002963],\n\t\t\t\t\t\t[-120.633570, 35.033085],\n\t\t\t\t\t\t[-120.629931, 35.061515],\n\t\t\t\t\t\t[-120.629583, 35.078362],\n\t\t\t\t\t\t[-120.630957, 35.101941],\n\t\t\t\t\t\t[-120.635787, 35.123805],\n\t\t\t\t\t\t[-120.644311, 35.139616],\n\t\t\t\t\t\t[-120.651134, 35.147768],\n\t\t\t\t\t\t[-120.662475, 35.153357],\n\t\t\t\t\t\t[-120.667994, 35.152030],\n\t\t\t\t\t\t[-120.675074, 35.153061],\n\t\t\t\t\t\t[-120.686974, 35.160708],\n\t\t\t\t\t\t[-120.698906, 35.171192],\n\t\t\t\t\t\t[-120.704203, 35.173206],\n\t\t\t\t\t\t[-120.714185, 35.175998],\n\t\t\t\t\t\t[-120.734231, 35.178472],\n\t\t\t\t\t\t[-120.748870, 35.177795],\n\t\t\t\t\t\t[-120.754823, 35.174701],\n\t\t\t\t\t\t[-120.756862, 35.169208],\n\t\t\t\t\t\t[-120.756086, 35.160459],\n\t\t\t\t\t\t[-120.760492, 35.159710],\n\t\t\t\t\t\t[-120.778998, 35.168897],\n\t\t\t\t\t\t[-120.786076, 35.177666],\n\t\t\t\t\t\t[-120.805258, 35.184973],\n\t\t\t\t\t\t[-120.846674, 35.204429],\n\t\t\t\t\t\t[-120.856047, 35.206487],\n\t\t\t\t\t\t[-120.873046, 35.225688],\n\t\t\t\t\t\t[-120.896790, 35.247877],\n\t\t\t\t\t\t[-120.896876, 35.253990],\n\t\t\t\t\t\t[-120.889354, 35.277819],\n\t\t\t\t\t\t[-120.879570, 35.294184],\n\t\t\t\t\t\t[-120.867200, 35.327154],\n\t\t\t\t\t\t[-120.862684, 35.346776],\n\t\t\t\t\t\t[-120.862133, 35.360763],\n\t\t\t\t\t\t[-120.866099, 35.393045],\n\t\t\t\t\t\t[-120.869209, 35.403276],\n\t\t\t\t\t\t[-120.884757, 35.430196],\n\t\t\t\t\t\t[-120.896862, 35.442243],\n\t\t\t\t\t\t[-120.907937, 35.449069],\n\t\t\t\t\t\t[-120.946546, 35.446715],\n\t\t\t\t\t\t[-120.950742, 35.448020],\n\t\t\t\t\t\t[-120.955863, 35.453743],\n\t\t\t\t\t\t[-120.969436, 35.460197],\n\t\t\t\t\t\t[-120.976122, 35.459028],\n\t\t\t\t\t\t[-121.003359, 35.460710],\n\t\t\t\t\t\t[-121.025621, 35.484598],\n\t\t\t\t\t\t[-121.053080, 35.507530],\n\t\t\t\t\t\t[-121.059913, 35.509671],\n\t\t\t\t\t\t[-121.101595, 35.548814],\n\t\t\t\t\t\t[-121.126027, 35.593058],\n\t\t\t\t\t\t[-121.133556, 35.600455],\n\t\t\t\t\t\t[-121.143561, 35.606046],\n\t\t\t\t\t\t[-121.166712, 35.635399],\n\t\t\t\t\t\t[-121.188897, 35.643138],\n\t\t\t\t\t\t[-121.195291, 35.640734],\n\t\t\t\t\t\t[-121.251034, 35.656641],\n\t\t\t\t\t\t[-121.272322, 35.666711],\n\t\t\t\t\t\t[-121.284973, 35.674109],\n\t\t\t\t\t\t[-121.289794, 35.689428],\n\t\t\t\t\t\t[-121.296473, 35.696824],\n\t\t\t\t\t\t[-121.304583, 35.701794],\n\t\t\t\t\t\t[-121.314632, 35.713310],\n\t\t\t\t\t\t[-121.315786, 35.752520],\n\t\t\t\t\t\t[-121.324918, 35.769347],\n\t\t\t\t\t\t[-121.332449, 35.783106],\n\t\t\t\t\t\t[-121.346363, 35.795183],\n\t\t\t\t\t\t[-121.175695, 35.794102],\n\t\t\t\t\t\t[-120.213979, 35.789276],\n\t\t\t\t\t\t[-120.194146, 35.789204]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06093\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"093\",\n\t\t\t\t\"NAME\": \"Siskiyou\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 6277.887000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-122.289533, 42.007764],\n\t\t\t\t\t\t[-122.289527, 42.007764],\n\t\t\t\t\t\t[-122.161328, 42.007637],\n\t\t\t\t\t\t[-122.160438, 42.007637],\n\t\t\t\t\t\t[-122.156666, 42.007384],\n\t\t\t\t\t\t[-122.155408, 42.007429],\n\t\t\t\t\t\t[-122.001119, 42.004017],\n\t\t\t\t\t\t[-121.708199, 42.000815],\n\t\t\t\t\t\t[-121.705045, 42.000766],\n\t\t\t\t\t\t[-121.689159, 42.000584],\n\t\t\t\t\t\t[-121.675348, 42.000351],\n\t\t\t\t\t\t[-121.580865, 41.998668],\n\t\t\t\t\t\t[-121.520250, 41.997983],\n\t\t\t\t\t\t[-121.447540, 41.997169],\n\t\t\t\t\t\t[-121.446495, 41.183484],\n\t\t\t\t\t\t[-122.376123, 41.182904],\n\t\t\t\t\t\t[-122.498376, 41.182675],\n\t\t\t\t\t\t[-122.522636, 41.213525],\n\t\t\t\t\t\t[-122.503890, 41.342985],\n\t\t\t\t\t\t[-122.585241, 41.359008],\n\t\t\t\t\t\t[-122.653686, 41.289237],\n\t\t\t\t\t\t[-122.811342, 41.202451],\n\t\t\t\t\t\t[-122.961347, 41.181525],\n\t\t\t\t\t\t[-122.966949, 41.082050],\n\t\t\t\t\t\t[-122.897411, 41.028475],\n\t\t\t\t\t\t[-122.917529, 40.993990],\n\t\t\t\t\t\t[-123.036808, 41.004058],\n\t\t\t\t\t\t[-123.141338, 41.079178],\n\t\t\t\t\t\t[-123.239480, 41.075763],\n\t\t\t\t\t\t[-123.273402, 41.122891],\n\t\t\t\t\t\t[-123.408291, 41.179944],\n\t\t\t\t\t\t[-123.474085, 41.366193],\n\t\t\t\t\t\t[-123.661363, 41.382090],\n\t\t\t\t\t\t[-123.612395, 41.448954],\n\t\t\t\t\t\t[-123.719089, 41.595258],\n\t\t\t\t\t\t[-123.660205, 41.714055],\n\t\t\t\t\t\t[-123.703768, 41.829117],\n\t\t\t\t\t\t[-123.642812, 41.889353],\n\t\t\t\t\t\t[-123.565442, 41.903141],\n\t\t\t\t\t\t[-123.518075, 42.000436],\n\t\t\t\t\t\t[-123.501997, 42.000527],\n\t\t\t\t\t\t[-123.498896, 42.000474],\n\t\t\t\t\t\t[-123.498830, 42.000525],\n\t\t\t\t\t\t[-123.347562, 41.999108],\n\t\t\t\t\t\t[-123.230764, 42.003845],\n\t\t\t\t\t\t[-123.230762, 42.003845],\n\t\t\t\t\t\t[-123.154908, 42.008036],\n\t\t\t\t\t\t[-123.045254, 42.003049],\n\t\t\t\t\t\t[-123.001152, 42.003000],\n\t\t\t\t\t\t[-122.634739, 42.004858],\n\t\t\t\t\t\t[-122.501135, 42.008460],\n\t\t\t\t\t\t[-122.378193, 42.009518],\n\t\t\t\t\t\t[-122.289533, 42.007764]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06097\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"097\",\n\t\t\t\t\"NAME\": \"Sonoma\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1575.849000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-123.268710, 38.808369],\n\t\t\t\t\t\t[-123.136253, 38.809136],\n\t\t\t\t\t\t[-123.080997, 38.852438],\n\t\t\t\t\t\t[-122.821592, 38.850140],\n\t\t\t\t\t\t[-122.627396, 38.667506],\n\t\t\t\t\t\t[-122.646268, 38.599120],\n\t\t\t\t\t\t[-122.543893, 38.519966],\n\t\t\t\t\t\t[-122.378987, 38.250714],\n\t\t\t\t\t\t[-122.406786, 38.155632],\n\t\t\t\t\t\t[-122.406978, 38.155663],\n\t\t\t\t\t\t[-122.403514, 38.150624],\n\t\t\t\t\t\t[-122.403580, 38.150630],\n\t\t\t\t\t\t[-122.409798, 38.136231],\n\t\t\t\t\t\t[-122.439577, 38.116923],\n\t\t\t\t\t\t[-122.450377, 38.116269],\n\t\t\t\t\t\t[-122.454958, 38.118887],\n\t\t\t\t\t\t[-122.484411, 38.114960],\n\t\t\t\t\t\t[-122.489974, 38.112014],\n\t\t\t\t\t\t[-122.490727, 38.109755],\n\t\t\t\t\t\t[-122.565093, 38.182217],\n\t\t\t\t\t\t[-122.648986, 38.181077],\n\t\t\t\t\t\t[-122.739900, 38.207018],\n\t\t\t\t\t\t[-122.901726, 38.316943],\n\t\t\t\t\t\t[-123.002911, 38.295708],\n\t\t\t\t\t\t[-123.004122, 38.297012],\n\t\t\t\t\t\t[-123.024333, 38.310573],\n\t\t\t\t\t\t[-123.038742, 38.313576],\n\t\t\t\t\t\t[-123.051061, 38.310693],\n\t\t\t\t\t\t[-123.053476, 38.305722],\n\t\t\t\t\t\t[-123.052021, 38.302246],\n\t\t\t\t\t\t[-123.053504, 38.299385],\n\t\t\t\t\t\t[-123.058239, 38.298355],\n\t\t\t\t\t\t[-123.063671, 38.302178],\n\t\t\t\t\t\t[-123.074684, 38.322574],\n\t\t\t\t\t\t[-123.068437, 38.335210],\n\t\t\t\t\t\t[-123.068265, 38.359865],\n\t\t\t\t\t\t[-123.085572, 38.390525],\n\t\t\t\t\t\t[-123.103706, 38.415541],\n\t\t\t\t\t\t[-123.122379, 38.437314],\n\t\t\t\t\t\t[-123.128825, 38.450418],\n\t\t\t\t\t\t[-123.145325, 38.459422],\n\t\t\t\t\t\t[-123.166428, 38.474947],\n\t\t\t\t\t\t[-123.202277, 38.494314],\n\t\t\t\t\t\t[-123.249797, 38.511045],\n\t\t\t\t\t\t[-123.287156, 38.540223],\n\t\t\t\t\t\t[-123.297151, 38.543452],\n\t\t\t\t\t\t[-123.331899, 38.565542],\n\t\t\t\t\t\t[-123.343338, 38.590008],\n\t\t\t\t\t\t[-123.349612, 38.596805],\n\t\t\t\t\t\t[-123.371876, 38.607235],\n\t\t\t\t\t\t[-123.379303, 38.621953],\n\t\t\t\t\t\t[-123.398166, 38.647044],\n\t\t\t\t\t\t[-123.403010, 38.649449],\n\t\t\t\t\t\t[-123.405663, 38.656729],\n\t\t\t\t\t\t[-123.432720, 38.687131],\n\t\t\t\t\t\t[-123.441774, 38.699744],\n\t\t\t\t\t\t[-123.461291, 38.717001],\n\t\t\t\t\t\t[-123.490021, 38.732213],\n\t\t\t\t\t\t[-123.514784, 38.741966],\n\t\t\t\t\t\t[-123.525152, 38.753801],\n\t\t\t\t\t\t[-123.533535, 38.768408],\n\t\t\t\t\t\t[-123.268710, 38.808369]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06105\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"105\",\n\t\t\t\t\"NAME\": \"Trinity\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 3179.254000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-123.065426, 40.286971],\n\t\t\t\t\t\t[-122.989015, 40.250145],\n\t\t\t\t\t\t[-122.989623, 40.145496],\n\t\t\t\t\t\t[-122.934013, 39.978131],\n\t\t\t\t\t\t[-123.544563, 39.977015],\n\t\t\t\t\t\t[-123.544458, 40.001923],\n\t\t\t\t\t\t[-123.544059, 40.739386],\n\t\t\t\t\t\t[-123.559850, 40.829584],\n\t\t\t\t\t\t[-123.623826, 40.929421],\n\t\t\t\t\t\t[-123.560163, 40.950257],\n\t\t\t\t\t\t[-123.481457, 40.914957],\n\t\t\t\t\t\t[-123.408291, 41.179944],\n\t\t\t\t\t\t[-123.273402, 41.122891],\n\t\t\t\t\t\t[-123.239480, 41.075763],\n\t\t\t\t\t\t[-123.141338, 41.079178],\n\t\t\t\t\t\t[-123.036808, 41.004058],\n\t\t\t\t\t\t[-122.917529, 40.993990],\n\t\t\t\t\t\t[-122.897411, 41.028475],\n\t\t\t\t\t\t[-122.966949, 41.082050],\n\t\t\t\t\t\t[-122.961347, 41.181525],\n\t\t\t\t\t\t[-122.811342, 41.202451],\n\t\t\t\t\t\t[-122.653686, 41.289237],\n\t\t\t\t\t\t[-122.585241, 41.359008],\n\t\t\t\t\t\t[-122.503890, 41.342985],\n\t\t\t\t\t\t[-122.522636, 41.213525],\n\t\t\t\t\t\t[-122.498376, 41.182675],\n\t\t\t\t\t\t[-122.445453, 41.157930],\n\t\t\t\t\t\t[-122.752266, 40.689642],\n\t\t\t\t\t\t[-122.695298, 40.572514],\n\t\t\t\t\t\t[-122.845954, 40.505181],\n\t\t\t\t\t\t[-122.903738, 40.445071],\n\t\t\t\t\t\t[-122.998682, 40.418142],\n\t\t\t\t\t\t[-123.068789, 40.332233],\n\t\t\t\t\t\t[-123.065426, 40.286971]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06017\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"017\",\n\t\t\t\t\"NAME\": \"El Dorado\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1707.883000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-121.141009, 38.711980],\n\t\t\t\t\t\t[-121.040406, 38.915651],\n\t\t\t\t\t\t[-120.746395, 39.010352],\n\t\t\t\t\t\t[-120.642458, 38.944404],\n\t\t\t\t\t\t[-120.556321, 38.915164],\n\t\t\t\t\t\t[-120.470985, 38.965507],\n\t\t\t\t\t\t[-120.435240, 39.028397],\n\t\t\t\t\t\t[-120.184098, 39.031014],\n\t\t\t\t\t\t[-120.143663, 39.067285],\n\t\t\t\t\t\t[-120.002461, 39.067489],\n\t\t\t\t\t\t[-120.001014, 38.999574],\n\t\t\t\t\t\t[-119.904315, 38.933324],\n\t\t\t\t\t\t[-119.880303, 38.864776],\n\t\t\t\t\t\t[-120.072392, 38.702767],\n\t\t\t\t\t\t[-120.098322, 38.709029],\n\t\t\t\t\t\t[-120.301721, 38.549109],\n\t\t\t\t\t\t[-120.510596, 38.511467],\n\t\t\t\t\t\t[-120.627604, 38.503143],\n\t\t\t\t\t\t[-120.813554, 38.562193],\n\t\t\t\t\t\t[-121.027507, 38.508292],\n\t\t\t\t\t\t[-121.118617, 38.717118],\n\t\t\t\t\t\t[-121.133264, 38.705427],\n\t\t\t\t\t\t[-121.141009, 38.711980]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18005\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"005\",\n\t\t\t\t\"NAME\": \"Bartholomew\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 406.908000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.952005, 39.347373],\n\t\t\t\t\t\t[-85.857460, 39.349312],\n\t\t\t\t\t\t[-85.854064, 39.349498],\n\t\t\t\t\t\t[-85.684515, 39.350049],\n\t\t\t\t\t\t[-85.687295, 39.190076],\n\t\t\t\t\t\t[-85.687161, 39.189026],\n\t\t\t\t\t\t[-85.687294, 39.185605],\n\t\t\t\t\t\t[-85.686783, 39.130859],\n\t\t\t\t\t\t[-85.799834, 39.128897],\n\t\t\t\t\t\t[-85.798804, 39.068536],\n\t\t\t\t\t\t[-85.860573, 39.040910],\n\t\t\t\t\t\t[-86.080272, 39.050270],\n\t\t\t\t\t\t[-86.080294, 39.152543],\n\t\t\t\t\t\t[-86.085601, 39.344189],\n\t\t\t\t\t\t[-86.081531, 39.344446],\n\t\t\t\t\t\t[-85.952005, 39.347373]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18017\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"017\",\n\t\t\t\t\"NAME\": \"Cass\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 412.155000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.165024, 40.562649],\n\t\t\t\t\t\t[-86.184044, 40.562459],\n\t\t\t\t\t\t[-86.374417, 40.561361],\n\t\t\t\t\t\t[-86.373521, 40.692460],\n\t\t\t\t\t\t[-86.525164, 40.692419],\n\t\t\t\t\t\t[-86.581739, 40.735765],\n\t\t\t\t\t\t[-86.581532, 40.910925],\n\t\t\t\t\t\t[-86.468509, 40.909889],\n\t\t\t\t\t\t[-86.169012, 40.909836],\n\t\t\t\t\t\t[-86.165024, 40.562649]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18027\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"027\",\n\t\t\t\t\"NAME\": \"Daviess\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 429.487000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.242097, 38.544930],\n\t\t\t\t\t\t[-87.279333, 38.693314],\n\t\t\t\t\t\t[-87.241463, 38.817476],\n\t\t\t\t\t\t[-87.192243, 38.814688],\n\t\t\t\t\t\t[-87.098771, 38.903974],\n\t\t\t\t\t\t[-87.031263, 38.902516],\n\t\t\t\t\t\t[-86.904252, 38.904204],\n\t\t\t\t\t\t[-86.922943, 38.817238],\n\t\t\t\t\t\t[-86.924186, 38.505358],\n\t\t\t\t\t\t[-87.072369, 38.514700],\n\t\t\t\t\t\t[-87.242097, 38.544930]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18041\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"041\",\n\t\t\t\t\"NAME\": \"Fayette\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 215.014000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.036087, 39.526213],\n\t\t\t\t\t\t[-85.298110, 39.525476],\n\t\t\t\t\t\t[-85.301584, 39.787579],\n\t\t\t\t\t\t[-85.221118, 39.788449],\n\t\t\t\t\t\t[-85.185089, 39.715515],\n\t\t\t\t\t\t[-85.034575, 39.714764],\n\t\t\t\t\t\t[-85.036087, 39.526213]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18043\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"043\",\n\t\t\t\t\"NAME\": \"Floyd\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 147.935000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.816164, 38.282969],\n\t\t\t\t\t\t[-85.823764, 38.280569],\n\t\t\t\t\t\t[-85.829364, 38.276769],\n\t\t\t\t\t\t[-85.897664, 38.184269],\n\t\t\t\t\t\t[-85.899550, 38.180343],\n\t\t\t\t\t\t[-86.032559, 38.330660],\n\t\t\t\t\t\t[-86.032817, 38.417898],\n\t\t\t\t\t\t[-86.014446, 38.418683],\n\t\t\t\t\t\t[-86.014139, 38.419079],\n\t\t\t\t\t\t[-85.994620, 38.418345],\n\t\t\t\t\t\t[-85.807704, 38.404443],\n\t\t\t\t\t\t[-85.760844, 38.350218],\n\t\t\t\t\t\t[-85.791575, 38.288566],\n\t\t\t\t\t\t[-85.816164, 38.282969]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13127\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"127\",\n\t\t\t\t\"NAME\": \"Glynn\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 419.753000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.443170, 31.016661],\n\t\t\t\t\t\t[-81.572692, 31.097269],\n\t\t\t\t\t\t[-81.766322, 31.169595],\n\t\t\t\t\t\t[-81.731694, 31.330048],\n\t\t\t\t\t\t[-81.691990, 31.400519],\n\t\t\t\t\t\t[-81.624290, 31.452982],\n\t\t\t\t\t\t[-81.435874, 31.313263],\n\t\t\t\t\t\t[-81.269906, 31.294489],\n\t\t\t\t\t\t[-81.274688, 31.289454],\n\t\t\t\t\t\t[-81.276862, 31.254734],\n\t\t\t\t\t\t[-81.282842, 31.244330],\n\t\t\t\t\t\t[-81.289136, 31.225487],\n\t\t\t\t\t\t[-81.288403, 31.211065],\n\t\t\t\t\t\t[-81.293359, 31.206332],\n\t\t\t\t\t\t[-81.304957, 31.206173],\n\t\t\t\t\t\t[-81.314183, 31.207938],\n\t\t\t\t\t\t[-81.339028, 31.186918],\n\t\t\t\t\t\t[-81.354880, 31.167204],\n\t\t\t\t\t\t[-81.360791, 31.155903],\n\t\t\t\t\t\t[-81.359349, 31.149166],\n\t\t\t\t\t\t[-81.368241, 31.136534],\n\t\t\t\t\t\t[-81.386830, 31.133214],\n\t\t\t\t\t\t[-81.399677, 31.134113],\n\t\t\t\t\t\t[-81.402096, 31.125383],\n\t\t\t\t\t\t[-81.403732, 31.107115],\n\t\t\t\t\t\t[-81.401209, 31.086143],\n\t\t\t\t\t\t[-81.401267, 31.072781],\n\t\t\t\t\t\t[-81.415123, 31.026718],\n\t\t\t\t\t\t[-81.420474, 31.016703],\n\t\t\t\t\t\t[-81.424732, 31.013678],\n\t\t\t\t\t\t[-81.432475, 31.012991],\n\t\t\t\t\t\t[-81.434710, 31.014641],\n\t\t\t\t\t\t[-81.434923, 31.017804],\n\t\t\t\t\t\t[-81.443170, 31.016661]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13133\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"133\",\n\t\t\t\t\"NAME\": \"Greene\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 387.435000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.164207, 33.355030],\n\t\t\t\t\t\t[-83.279931, 33.483438],\n\t\t\t\t\t\t[-83.269213, 33.533226],\n\t\t\t\t\t\t[-83.406189, 33.698307],\n\t\t\t\t\t\t[-83.280340, 33.761774],\n\t\t\t\t\t\t[-83.118729, 33.698818],\n\t\t\t\t\t\t[-82.995602, 33.693583],\n\t\t\t\t\t\t[-82.951142, 33.658032],\n\t\t\t\t\t\t[-83.014038, 33.580383],\n\t\t\t\t\t\t[-83.012853, 33.469178],\n\t\t\t\t\t\t[-83.164207, 33.355030]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13143\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"143\",\n\t\t\t\t\"NAME\": \"Haralson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 282.165000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.386693, 33.901697],\n\t\t\t\t\t\t[-85.050310, 33.904488],\n\t\t\t\t\t\t[-85.036684, 33.904327],\n\t\t\t\t\t\t[-85.037926, 33.811942],\n\t\t\t\t\t\t[-85.050889, 33.714632],\n\t\t\t\t\t\t[-85.337974, 33.653111],\n\t\t\t\t\t\t[-85.360491, 33.767958],\n\t\t\t\t\t\t[-85.361844, 33.773951],\n\t\t\t\t\t\t[-85.386693, 33.901697]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13153\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"153\",\n\t\t\t\t\"NAME\": \"Houston\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 375.541000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.848379, 32.290970],\n\t\t\t\t\t\t[-83.846676, 32.468514],\n\t\t\t\t\t\t[-83.719859, 32.531760],\n\t\t\t\t\t\t[-83.701090, 32.691598],\n\t\t\t\t\t\t[-83.701152, 32.692169],\n\t\t\t\t\t\t[-83.597656, 32.664338],\n\t\t\t\t\t\t[-83.566198, 32.660786],\n\t\t\t\t\t\t[-83.497923, 32.452198],\n\t\t\t\t\t\t[-83.482648, 32.424536],\n\t\t\t\t\t\t[-83.498039, 32.401715],\n\t\t\t\t\t\t[-83.615579, 32.288556],\n\t\t\t\t\t\t[-83.848379, 32.290970]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13163\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"163\",\n\t\t\t\t\"NAME\": \"Jefferson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 526.485000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.434149, 32.762258],\n\t\t\t\t\t\t[-82.521052, 32.822356],\n\t\t\t\t\t\t[-82.510851, 32.917754],\n\t\t\t\t\t\t[-82.550197, 33.019247],\n\t\t\t\t\t\t[-82.661917, 33.126331],\n\t\t\t\t\t\t[-82.431957, 33.274830],\n\t\t\t\t\t\t[-82.383829, 33.312106],\n\t\t\t\t\t\t[-82.371972, 33.310879],\n\t\t\t\t\t\t[-82.357647, 33.312717],\n\t\t\t\t\t\t[-82.353498, 33.312318],\n\t\t\t\t\t\t[-82.311539, 33.297146],\n\t\t\t\t\t\t[-82.296855, 33.277349],\n\t\t\t\t\t\t[-82.286507, 33.274135],\n\t\t\t\t\t\t[-82.278539, 33.269174],\n\t\t\t\t\t\t[-82.267580, 33.267397],\n\t\t\t\t\t\t[-82.232554, 33.231211],\n\t\t\t\t\t\t[-82.291180, 33.062827],\n\t\t\t\t\t\t[-82.272353, 32.937796],\n\t\t\t\t\t\t[-82.316512, 32.835772],\n\t\t\t\t\t\t[-82.434149, 32.762258]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13183\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"183\",\n\t\t\t\t\"NAME\": \"Long\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 400.293000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.491798, 31.699575],\n\t\t\t\t\t\t[-81.566009, 31.576467],\n\t\t\t\t\t\t[-81.663206, 31.538667],\n\t\t\t\t\t\t[-81.850624, 31.667671],\n\t\t\t\t\t\t[-81.969052, 31.789324],\n\t\t\t\t\t\t[-81.824405, 32.014882],\n\t\t\t\t\t\t[-81.750257, 31.973207],\n\t\t\t\t\t\t[-81.765357, 31.874540],\n\t\t\t\t\t\t[-81.641761, 31.765451],\n\t\t\t\t\t\t[-81.491798, 31.699575]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13193\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"193\",\n\t\t\t\t\"NAME\": \"Macon\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 400.641000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.181657, 32.229703],\n\t\t\t\t\t\t[-84.255912, 32.296156],\n\t\t\t\t\t\t[-84.254613, 32.372053],\n\t\t\t\t\t\t[-84.122347, 32.505921],\n\t\t\t\t\t\t[-84.008490, 32.521769],\n\t\t\t\t\t\t[-83.846676, 32.468514],\n\t\t\t\t\t\t[-83.848379, 32.290970],\n\t\t\t\t\t\t[-83.965121, 32.248005],\n\t\t\t\t\t\t[-84.027853, 32.171083],\n\t\t\t\t\t\t[-84.181657, 32.229703]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13207\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"207\",\n\t\t\t\t\"NAME\": \"Monroe\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 395.658000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.822261, 33.180238],\n\t\t\t\t\t\t[-83.824585, 33.175640],\n\t\t\t\t\t\t[-83.822929, 33.157856],\n\t\t\t\t\t\t[-83.814056, 33.148460],\n\t\t\t\t\t\t[-83.817268, 33.141540],\n\t\t\t\t\t\t[-83.816048, 33.131816],\n\t\t\t\t\t\t[-83.747004, 33.063373],\n\t\t\t\t\t\t[-83.710685, 32.952792],\n\t\t\t\t\t\t[-83.891922, 32.848351],\n\t\t\t\t\t\t[-84.124275, 32.849562],\n\t\t\t\t\t\t[-84.123340, 32.932184],\n\t\t\t\t\t\t[-84.044113, 32.947874],\n\t\t\t\t\t\t[-84.041498, 33.202629],\n\t\t\t\t\t\t[-83.822261, 33.180238]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13219\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"219\",\n\t\t\t\t\"NAME\": \"Oconee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 184.290000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.505928, 33.817760],\n\t\t\t\t\t\t[-83.647031, 33.906198],\n\t\t\t\t\t\t[-83.537385, 33.965912],\n\t\t\t\t\t\t[-83.275933, 33.847977],\n\t\t\t\t\t\t[-83.280340, 33.761774],\n\t\t\t\t\t\t[-83.406189, 33.698307],\n\t\t\t\t\t\t[-83.505928, 33.817760]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13227\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"227\",\n\t\t\t\t\"NAME\": \"Pickens\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 232.057000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.654366, 34.548946],\n\t\t\t\t\t\t[-84.345553, 34.562735],\n\t\t\t\t\t\t[-84.319679, 34.467857],\n\t\t\t\t\t\t[-84.256867, 34.467327],\n\t\t\t\t\t\t[-84.257586, 34.380992],\n\t\t\t\t\t\t[-84.582630, 34.381492],\n\t\t\t\t\t\t[-84.653232, 34.412590],\n\t\t\t\t\t\t[-84.654366, 34.548946]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13237\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"237\",\n\t\t\t\t\"NAME\": \"Putnam\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 344.639000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.545876, 33.171944],\n\t\t\t\t\t\t[-83.537811, 33.393803],\n\t\t\t\t\t\t[-83.533736, 33.434472],\n\t\t\t\t\t\t[-83.279931, 33.483438],\n\t\t\t\t\t\t[-83.164207, 33.355030],\n\t\t\t\t\t\t[-83.145774, 33.312084],\n\t\t\t\t\t\t[-83.253461, 33.259290],\n\t\t\t\t\t\t[-83.274108, 33.187238],\n\t\t\t\t\t\t[-83.429090, 33.185352],\n\t\t\t\t\t\t[-83.545876, 33.171944]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13249\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"249\",\n\t\t\t\t\"NAME\": \"Schley\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 166.906000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.254613, 32.372053],\n\t\t\t\t\t\t[-84.255912, 32.296156],\n\t\t\t\t\t\t[-84.181657, 32.229703],\n\t\t\t\t\t\t[-84.183569, 32.158493],\n\t\t\t\t\t\t[-84.430215, 32.166257],\n\t\t\t\t\t\t[-84.392316, 32.414046],\n\t\t\t\t\t\t[-84.254613, 32.372053]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29083\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"083\",\n\t\t\t\t\"NAME\": \"Henry\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 696.947000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.064317, 38.567380],\n\t\t\t\t\t\t[-93.511030, 38.556210],\n\t\t\t\t\t\t[-93.511364, 38.548889],\n\t\t\t\t\t\t[-93.511303, 38.548565],\n\t\t\t\t\t\t[-93.512743, 38.512476],\n\t\t\t\t\t\t[-93.523484, 38.207216],\n\t\t\t\t\t\t[-94.049895, 38.213985],\n\t\t\t\t\t\t[-94.075214, 38.214502],\n\t\t\t\t\t\t[-94.065713, 38.447087],\n\t\t\t\t\t\t[-94.064317, 38.567380]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29093\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"093\",\n\t\t\t\t\"NAME\": \"Iron\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 550.259000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.535016, 37.643641],\n\t\t\t\t\t\t[-90.549729, 37.317594],\n\t\t\t\t\t\t[-90.550603, 37.272608],\n\t\t\t\t\t\t[-90.735453, 37.271040],\n\t\t\t\t\t\t[-90.772949, 37.373659],\n\t\t\t\t\t\t[-90.768695, 37.603011],\n\t\t\t\t\t\t[-91.155073, 37.588092],\n\t\t\t\t\t\t[-91.153345, 37.697340],\n\t\t\t\t\t\t[-91.146521, 37.740811],\n\t\t\t\t\t\t[-91.100017, 37.740012],\n\t\t\t\t\t\t[-90.645135, 37.734813],\n\t\t\t\t\t\t[-90.647874, 37.642809],\n\t\t\t\t\t\t[-90.535016, 37.643641]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37003\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"003\",\n\t\t\t\t\"NAME\": \"Alexander\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 259.994000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.028884, 36.045762],\n\t\t\t\t\t\t[-81.005381, 35.958205],\n\t\t\t\t\t\t[-81.052130, 35.844848],\n\t\t\t\t\t\t[-81.064742, 35.824393],\n\t\t\t\t\t\t[-81.075682, 35.814955],\n\t\t\t\t\t\t[-81.078943, 35.802775],\n\t\t\t\t\t\t[-81.093699, 35.794033],\n\t\t\t\t\t\t[-81.109416, 35.776638],\n\t\t\t\t\t\t[-81.142338, 35.827434],\n\t\t\t\t\t\t[-81.334255, 35.796460],\n\t\t\t\t\t\t[-81.328385, 35.996550],\n\t\t\t\t\t\t[-81.190911, 36.036949],\n\t\t\t\t\t\t[-81.028884, 36.045762]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37007\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"007\",\n\t\t\t\t\"NAME\": \"Anson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 531.452000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.098994, 34.810147],\n\t\t\t\t\t\t[-80.320413, 34.813813],\n\t\t\t\t\t\t[-80.277052, 35.196136],\n\t\t\t\t\t\t[-80.174176, 35.147992],\n\t\t\t\t\t\t[-80.075390, 35.143081],\n\t\t\t\t\t\t[-79.999268, 35.085391],\n\t\t\t\t\t\t[-79.927887, 35.117713],\n\t\t\t\t\t\t[-79.875716, 35.037936],\n\t\t\t\t\t\t[-79.849990, 34.899317],\n\t\t\t\t\t\t[-79.927618, 34.806555],\n\t\t\t\t\t\t[-80.027464, 34.808726],\n\t\t\t\t\t\t[-80.042764, 34.809097],\n\t\t\t\t\t\t[-80.072912, 34.809736],\n\t\t\t\t\t\t[-80.077223, 34.809716],\n\t\t\t\t\t\t[-80.098022, 34.810147],\n\t\t\t\t\t\t[-80.098994, 34.810147]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37009\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"009\",\n\t\t\t\t\"NAME\": \"Ashe\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 426.135000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.677535, 36.588117],\n\t\t\t\t\t\t[-81.606970, 36.587094],\n\t\t\t\t\t\t[-81.521032, 36.580520],\n\t\t\t\t\t\t[-81.353322, 36.574723],\n\t\t\t\t\t\t[-81.353169, 36.574724],\n\t\t\t\t\t\t[-81.253482, 36.365351],\n\t\t\t\t\t\t[-81.354467, 36.355678],\n\t\t\t\t\t\t[-81.378809, 36.277983],\n\t\t\t\t\t\t[-81.477298, 36.240272],\n\t\t\t\t\t\t[-81.566170, 36.272064],\n\t\t\t\t\t\t[-81.720969, 36.387500],\n\t\t\t\t\t\t[-81.714277, 36.450978],\n\t\t\t\t\t\t[-81.715082, 36.453365],\n\t\t\t\t\t\t[-81.697287, 36.484738],\n\t\t\t\t\t\t[-81.695907, 36.491580],\n\t\t\t\t\t\t[-81.696835, 36.493393],\n\t\t\t\t\t\t[-81.697261, 36.496141],\n\t\t\t\t\t\t[-81.698265, 36.497221],\n\t\t\t\t\t\t[-81.699928, 36.498018],\n\t\t\t\t\t\t[-81.700238, 36.500475],\n\t\t\t\t\t\t[-81.699923, 36.500865],\n\t\t\t\t\t\t[-81.697970, 36.504063],\n\t\t\t\t\t\t[-81.697290, 36.504887],\n\t\t\t\t\t\t[-81.697829, 36.507544],\n\t\t\t\t\t\t[-81.697744, 36.508448],\n\t\t\t\t\t\t[-81.699446, 36.511504],\n\t\t\t\t\t\t[-81.699601, 36.512883],\n\t\t\t\t\t\t[-81.700093, 36.514158],\n\t\t\t\t\t\t[-81.700553, 36.515190],\n\t\t\t\t\t\t[-81.707963, 36.536209],\n\t\t\t\t\t\t[-81.699962, 36.539714],\n\t\t\t\t\t\t[-81.677535, 36.588117]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37033\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"033\",\n\t\t\t\t\"NAME\": \"Caswell\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 424.922000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.510961, 36.540740],\n\t\t\t\t\t\t[-79.510647, 36.540738],\n\t\t\t\t\t\t[-79.470047, 36.541025],\n\t\t\t\t\t\t[-79.445961, 36.541195],\n\t\t\t\t\t\t[-79.445687, 36.541218],\n\t\t\t\t\t\t[-79.342696, 36.541382],\n\t\t\t\t\t\t[-79.218638, 36.541579],\n\t\t\t\t\t\t[-79.209480, 36.541594],\n\t\t\t\t\t\t[-79.208686, 36.541571],\n\t\t\t\t\t\t[-79.137936, 36.541739],\n\t\t\t\t\t\t[-79.153733, 36.242117],\n\t\t\t\t\t\t[-79.256964, 36.243866],\n\t\t\t\t\t\t[-79.315828, 36.245331],\n\t\t\t\t\t\t[-79.365366, 36.246411],\n\t\t\t\t\t\t[-79.523399, 36.249851],\n\t\t\t\t\t\t[-79.532096, 36.248584],\n\t\t\t\t\t\t[-79.510961, 36.540740]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37045\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"045\",\n\t\t\t\t\"NAME\": \"Cleveland\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 464.252000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.328020, 35.163404],\n\t\t\t\t\t\t[-81.366599, 35.164889],\n\t\t\t\t\t\t[-81.366691, 35.164893],\n\t\t\t\t\t\t[-81.452398, 35.168293],\n\t\t\t\t\t\t[-81.461408, 35.168657],\n\t\t\t\t\t\t[-81.493401, 35.169951],\n\t\t\t\t\t\t[-81.494265, 35.169882],\n\t\t\t\t\t\t[-81.768073, 35.180132],\n\t\t\t\t\t\t[-81.702850, 35.357194],\n\t\t\t\t\t\t[-81.692329, 35.579789],\n\t\t\t\t\t\t[-81.537760, 35.564472],\n\t\t\t\t\t\t[-81.456505, 35.419616],\n\t\t\t\t\t\t[-81.364925, 35.311225],\n\t\t\t\t\t\t[-81.321314, 35.260221],\n\t\t\t\t\t\t[-81.328020, 35.163404]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37063\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"063\",\n\t\t\t\t\"NAME\": \"Durham\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 285.975000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.016699, 35.863201],\n\t\t\t\t\t\t[-78.950790, 36.239160],\n\t\t\t\t\t\t[-78.949311, 36.239435],\n\t\t\t\t\t\t[-78.802005, 36.235937],\n\t\t\t\t\t\t[-78.804983, 36.091883],\n\t\t\t\t\t\t[-78.749000, 36.071246],\n\t\t\t\t\t\t[-78.697930, 36.012306],\n\t\t\t\t\t\t[-78.831781, 35.867314],\n\t\t\t\t\t\t[-78.906170, 35.867912],\n\t\t\t\t\t\t[-79.016699, 35.863201]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37073\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"073\",\n\t\t\t\t\"NAME\": \"Gates\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 340.445000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.541687, 36.550312],\n\t\t\t\t\t\t[-76.541391, 36.550312],\n\t\t\t\t\t\t[-76.491477, 36.510536],\n\t\t\t\t\t\t[-76.491405, 36.468648],\n\t\t\t\t\t\t[-76.453690, 36.378042],\n\t\t\t\t\t\t[-76.539147, 36.357238],\n\t\t\t\t\t\t[-76.556837, 36.355186],\n\t\t\t\t\t\t[-76.559674, 36.351892],\n\t\t\t\t\t\t[-76.696601, 36.296211],\n\t\t\t\t\t\t[-76.762156, 36.352687],\n\t\t\t\t\t\t[-76.931821, 36.401070],\n\t\t\t\t\t\t[-76.916001, 36.543818],\n\t\t\t\t\t\t[-76.915384, 36.543856],\n\t\t\t\t\t\t[-76.807078, 36.550606],\n\t\t\t\t\t\t[-76.781296, 36.550659],\n\t\t\t\t\t\t[-76.541687, 36.550312]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37085\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"085\",\n\t\t\t\t\"NAME\": \"Harnett\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 594.987000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.617079, 35.245706],\n\t\t\t\t\t\t[-78.825828, 35.259287],\n\t\t\t\t\t\t[-78.941859, 35.219211],\n\t\t\t\t\t\t[-79.096130, 35.192181],\n\t\t\t\t\t\t[-79.223065, 35.268134],\n\t\t\t\t\t\t[-79.183301, 35.306976],\n\t\t\t\t\t\t[-78.969761, 35.521433],\n\t\t\t\t\t\t[-78.913296, 35.583064],\n\t\t\t\t\t\t[-78.708629, 35.519081],\n\t\t\t\t\t\t[-78.660555, 35.496245],\n\t\t\t\t\t\t[-78.530282, 35.333775],\n\t\t\t\t\t\t[-78.541262, 35.315116],\n\t\t\t\t\t\t[-78.617079, 35.245706]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37097\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"097\",\n\t\t\t\t\"NAME\": \"Iredell\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 573.833000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.109416, 35.776638],\n\t\t\t\t\t\t[-81.093699, 35.794033],\n\t\t\t\t\t\t[-81.078943, 35.802775],\n\t\t\t\t\t\t[-81.075682, 35.814955],\n\t\t\t\t\t\t[-81.064742, 35.824393],\n\t\t\t\t\t\t[-81.052130, 35.844848],\n\t\t\t\t\t\t[-81.005381, 35.958205],\n\t\t\t\t\t\t[-81.028884, 36.045762],\n\t\t\t\t\t\t[-80.882180, 36.055731],\n\t\t\t\t\t\t[-80.693198, 36.051114],\n\t\t\t\t\t\t[-80.707670, 35.852913],\n\t\t\t\t\t\t[-80.771518, 35.674926],\n\t\t\t\t\t\t[-80.757239, 35.616265],\n\t\t\t\t\t\t[-80.737069, 35.507163],\n\t\t\t\t\t\t[-80.737289, 35.505633],\n\t\t\t\t\t\t[-80.784339, 35.505840],\n\t\t\t\t\t\t[-80.947030, 35.487699],\n\t\t\t\t\t\t[-80.960029, 35.547810],\n\t\t\t\t\t\t[-80.924548, 35.621735],\n\t\t\t\t\t\t[-81.109416, 35.776638]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37109\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"109\",\n\t\t\t\t\"NAME\": \"Lincoln\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 297.938000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.955388, 35.400833],\n\t\t\t\t\t\t[-81.300355, 35.414611],\n\t\t\t\t\t\t[-81.456505, 35.419616],\n\t\t\t\t\t\t[-81.537760, 35.564472],\n\t\t\t\t\t\t[-81.536076, 35.566555],\n\t\t\t\t\t\t[-81.535733, 35.567064],\n\t\t\t\t\t\t[-81.535632, 35.567324],\n\t\t\t\t\t\t[-81.534359, 35.568811],\n\t\t\t\t\t\t[-80.961841, 35.548191],\n\t\t\t\t\t\t[-80.960029, 35.547810],\n\t\t\t\t\t\t[-80.947030, 35.487699],\n\t\t\t\t\t\t[-80.955388, 35.400833]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37123\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"123\",\n\t\t\t\t\"NAME\": \"Montgomery\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 491.760000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.769285, 35.511457],\n\t\t\t\t\t\t[-79.698036, 35.251451],\n\t\t\t\t\t\t[-79.614306, 35.163679],\n\t\t\t\t\t\t[-79.851762, 35.183418],\n\t\t\t\t\t\t[-80.075390, 35.143081],\n\t\t\t\t\t\t[-80.098185, 35.255173],\n\t\t\t\t\t\t[-80.051739, 35.372585],\n\t\t\t\t\t\t[-80.182682, 35.504335],\n\t\t\t\t\t\t[-80.066842, 35.505661],\n\t\t\t\t\t\t[-79.769285, 35.511457]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37133\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"133\",\n\t\t\t\t\"NAME\": \"Onslow\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 762.744000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.671490, 34.811643],\n\t\t\t\t\t\t[-77.675373, 34.973417],\n\t\t\t\t\t\t[-77.452144, 34.946963],\n\t\t\t\t\t\t[-77.367414, 34.906631],\n\t\t\t\t\t\t[-77.328398, 34.938317],\n\t\t\t\t\t\t[-77.221606, 34.887088],\n\t\t\t\t\t\t[-77.165803, 34.784945],\n\t\t\t\t\t\t[-77.126100, 34.756927],\n\t\t\t\t\t\t[-77.112800, 34.639352],\n\t\t\t\t\t\t[-77.136843, 34.632926],\n\t\t\t\t\t\t[-77.169701, 34.622023],\n\t\t\t\t\t\t[-77.209161, 34.605032],\n\t\t\t\t\t\t[-77.240991, 34.587507],\n\t\t\t\t\t\t[-77.322524, 34.535574],\n\t\t\t\t\t\t[-77.462922, 34.471354],\n\t\t\t\t\t\t[-77.491796, 34.456098],\n\t\t\t\t\t\t[-77.517960, 34.440483],\n\t\t\t\t\t\t[-77.576411, 34.478737],\n\t\t\t\t\t\t[-77.680560, 34.720640],\n\t\t\t\t\t\t[-77.676395, 34.787182],\n\t\t\t\t\t\t[-77.671490, 34.811643]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37145\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"145\",\n\t\t\t\t\"NAME\": \"Person\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 392.322000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.796300, 36.541713],\n\t\t\t\t\t\t[-78.794823, 36.526689],\n\t\t\t\t\t\t[-78.802005, 36.235937],\n\t\t\t\t\t\t[-78.949311, 36.239435],\n\t\t\t\t\t\t[-78.950790, 36.239160],\n\t\t\t\t\t\t[-79.153733, 36.242117],\n\t\t\t\t\t\t[-79.137936, 36.541739],\n\t\t\t\t\t\t[-79.126078, 36.541533],\n\t\t\t\t\t\t[-79.124736, 36.541568],\n\t\t\t\t\t\t[-78.971814, 36.542123],\n\t\t\t\t\t\t[-78.970577, 36.542154],\n\t\t\t\t\t\t[-78.942254, 36.542079],\n\t\t\t\t\t\t[-78.942009, 36.542113],\n\t\t\t\t\t\t[-78.915420, 36.541974],\n\t\t\t\t\t\t[-78.914543, 36.541972],\n\t\t\t\t\t\t[-78.796300, 36.541713]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48299\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"299\",\n\t\t\t\t\"NAME\": \"Llano\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 934.034000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.964232, 30.498482],\n\t\t\t\t\t\t[-98.964112, 30.500742],\n\t\t\t\t\t\t[-98.964612, 30.921368],\n\t\t\t\t\t\t[-98.445782, 30.921439],\n\t\t\t\t\t\t[-98.376877, 30.834890],\n\t\t\t\t\t\t[-98.432098, 30.786310],\n\t\t\t\t\t\t[-98.371905, 30.740485],\n\t\t\t\t\t\t[-98.438995, 30.673285],\n\t\t\t\t\t\t[-98.351041, 30.486096],\n\t\t\t\t\t\t[-98.411462, 30.502095],\n\t\t\t\t\t\t[-98.591670, 30.499875],\n\t\t\t\t\t\t[-98.964232, 30.498482]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48313\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"313\",\n\t\t\t\t\"NAME\": \"Madison\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 466.065000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.617872, 30.930418],\n\t\t\t\t\t\t[-95.863059, 30.864125],\n\t\t\t\t\t\t[-96.168370, 30.822997],\n\t\t\t\t\t\t[-96.241020, 30.973737],\n\t\t\t\t\t\t[-95.973841, 31.092150],\n\t\t\t\t\t\t[-95.764410, 31.094211],\n\t\t\t\t\t\t[-95.663546, 31.083884],\n\t\t\t\t\t\t[-95.681158, 30.986958],\n\t\t\t\t\t\t[-95.617872, 30.930418]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48325\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"325\",\n\t\t\t\t\"NAME\": \"Medina\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1325.356000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.804900, 29.090434],\n\t\t\t\t\t\t[-99.413880, 29.091335],\n\t\t\t\t\t\t[-99.411817, 29.627514],\n\t\t\t\t\t\t[-98.983787, 29.623450],\n\t\t\t\t\t\t[-98.927161, 29.562250],\n\t\t\t\t\t\t[-98.806552, 29.690709],\n\t\t\t\t\t\t[-98.804763, 29.250693],\n\t\t\t\t\t\t[-98.804900, 29.090434]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48335\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"335\",\n\t\t\t\t\"NAME\": \"Mitchell\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 911.090000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.660626, 32.525312],\n\t\t\t\t\t\t[-100.662215, 32.380297],\n\t\t\t\t\t\t[-100.665353, 32.085407],\n\t\t\t\t\t\t[-100.821594, 32.086610],\n\t\t\t\t\t\t[-101.183997, 32.087208],\n\t\t\t\t\t\t[-101.174571, 32.524112],\n\t\t\t\t\t\t[-101.174562, 32.527703],\n\t\t\t\t\t\t[-100.660626, 32.525312]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48343\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"343\",\n\t\t\t\t\"NAME\": \"Morris\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 251.985000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.746925, 33.328938],\n\t\t\t\t\t\t[-94.652260, 33.268861],\n\t\t\t\t\t\t[-94.653994, 32.879506],\n\t\t\t\t\t\t[-94.705878, 32.879177],\n\t\t\t\t\t\t[-94.705177, 32.892062],\n\t\t\t\t\t\t[-94.720065, 32.900450],\n\t\t\t\t\t\t[-94.719942, 32.904502],\n\t\t\t\t\t\t[-94.819828, 32.982886],\n\t\t\t\t\t\t[-94.808783, 33.363636],\n\t\t\t\t\t\t[-94.746925, 33.328938]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51127\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"127\",\n\t\t\t\t\"NAME\": \"New Kent\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 209.729000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.228504, 37.536398],\n\t\t\t\t\t\t[-77.123675, 37.626881],\n\t\t\t\t\t\t[-76.981158, 37.567113],\n\t\t\t\t\t\t[-76.853577, 37.572627],\n\t\t\t\t\t\t[-76.792184, 37.517594],\n\t\t\t\t\t\t[-76.791457, 37.508339],\n\t\t\t\t\t\t[-76.789524, 37.503862],\n\t\t\t\t\t\t[-76.781293, 37.501339],\n\t\t\t\t\t\t[-76.764540, 37.493563],\n\t\t\t\t\t\t[-76.751693, 37.483941],\n\t\t\t\t\t\t[-76.747411, 37.478153],\n\t\t\t\t\t\t[-76.741984, 37.467076],\n\t\t\t\t\t\t[-76.892677, 37.433067],\n\t\t\t\t\t\t[-76.904471, 37.377665],\n\t\t\t\t\t\t[-77.177324, 37.490600],\n\t\t\t\t\t\t[-77.184836, 37.495720],\n\t\t\t\t\t\t[-77.188164, 37.500224],\n\t\t\t\t\t\t[-77.191937, 37.501237],\n\t\t\t\t\t\t[-77.192962, 37.506598],\n\t\t\t\t\t\t[-77.198184, 37.508965],\n\t\t\t\t\t\t[-77.202667, 37.512866],\n\t\t\t\t\t\t[-77.207007, 37.513446],\n\t\t\t\t\t\t[-77.206239, 37.515977],\n\t\t\t\t\t\t[-77.214847, 37.525372],\n\t\t\t\t\t\t[-77.220254, 37.527221],\n\t\t\t\t\t\t[-77.221244, 37.533229],\n\t\t\t\t\t\t[-77.226512, 37.533870],\n\t\t\t\t\t\t[-77.228504, 37.536398]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51133\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"133\",\n\t\t\t\t\"NAME\": \"Northumberland\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 191.295000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.519536, 38.034814],\n\t\t\t\t\t\t[-76.516547, 38.026566],\n\t\t\t\t\t\t[-76.491998, 38.017222],\n\t\t\t\t\t\t[-76.469343, 38.013544],\n\t\t\t\t\t\t[-76.465291, 38.010226],\n\t\t\t\t\t\t[-76.462542, 37.998572],\n\t\t\t\t\t\t[-76.427487, 37.977038],\n\t\t\t\t\t\t[-76.416299, 37.966828],\n\t\t\t\t\t\t[-76.391439, 37.958742],\n\t\t\t\t\t\t[-76.360211, 37.952329],\n\t\t\t\t\t\t[-76.343848, 37.947345],\n\t\t\t\t\t\t[-76.265998, 37.911380],\n\t\t\t\t\t\t[-76.236725, 37.889174],\n\t\t\t\t\t\t[-76.245072, 37.861918],\n\t\t\t\t\t\t[-76.251358, 37.833072],\n\t\t\t\t\t\t[-76.266057, 37.817400],\n\t\t\t\t\t\t[-76.275178, 37.812664],\n\t\t\t\t\t\t[-76.280544, 37.812597],\n\t\t\t\t\t\t[-76.282592, 37.814109],\n\t\t\t\t\t\t[-76.281985, 37.818068],\n\t\t\t\t\t\t[-76.284904, 37.822308],\n\t\t\t\t\t\t[-76.293525, 37.822717],\n\t\t\t\t\t\t[-76.307482, 37.812350],\n\t\t\t\t\t\t[-76.310307, 37.794849],\n\t\t\t\t\t\t[-76.306489, 37.788646],\n\t\t\t\t\t\t[-76.312108, 37.750522],\n\t\t\t\t\t\t[-76.304917, 37.729913],\n\t\t\t\t\t\t[-76.312858, 37.720338],\n\t\t\t\t\t\t[-76.302803, 37.704474],\n\t\t\t\t\t\t[-76.300067, 37.695364],\n\t\t\t\t\t\t[-76.302545, 37.689000],\n\t\t\t\t\t\t[-76.312079, 37.684651],\n\t\t\t\t\t\t[-76.315161, 37.684720],\n\t\t\t\t\t\t[-76.320216, 37.680666],\n\t\t\t\t\t\t[-76.376721, 37.712908],\n\t\t\t\t\t\t[-76.418735, 37.822934],\n\t\t\t\t\t\t[-76.507828, 37.838814],\n\t\t\t\t\t\t[-76.556042, 37.931524],\n\t\t\t\t\t\t[-76.634230, 37.966630],\n\t\t\t\t\t\t[-76.519536, 38.034814]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51167\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"167\",\n\t\t\t\t\"NAME\": \"Russell\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 473.822000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.148718, 37.041691],\n\t\t\t\t\t\t[-82.017673, 37.068787],\n\t\t\t\t\t\t[-81.901087, 37.142546],\n\t\t\t\t\t\t[-81.780539, 36.958614],\n\t\t\t\t\t\t[-81.819041, 36.947513],\n\t\t\t\t\t\t[-81.836842, 36.929013],\n\t\t\t\t\t\t[-81.949151, 36.864409],\n\t\t\t\t\t\t[-82.077936, 36.855005],\n\t\t\t\t\t\t[-82.107614, 36.796385],\n\t\t\t\t\t\t[-82.332089, 36.709355],\n\t\t\t\t\t\t[-82.356728, 36.780309],\n\t\t\t\t\t\t[-82.406633, 36.876356],\n\t\t\t\t\t\t[-82.298594, 36.905419],\n\t\t\t\t\t\t[-82.328009, 36.970905],\n\t\t\t\t\t\t[-82.148718, 37.041691]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51179\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"179\",\n\t\t\t\t\"NAME\": \"Stafford\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 268.956000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.634835, 38.409713],\n\t\t\t\t\t\t[-77.634157, 38.464508],\n\t\t\t\t\t\t[-77.530914, 38.555929],\n\t\t\t\t\t\t[-77.491569, 38.590899],\n\t\t\t\t\t\t[-77.302457, 38.504683],\n\t\t\t\t\t\t[-77.310334, 38.493926],\n\t\t\t\t\t\t[-77.322622, 38.467131],\n\t\t\t\t\t\t[-77.325440, 38.448850],\n\t\t\t\t\t\t[-77.319036, 38.417803],\n\t\t\t\t\t\t[-77.310719, 38.397669],\n\t\t\t\t\t\t[-77.312201, 38.390958],\n\t\t\t\t\t\t[-77.314848, 38.389579],\n\t\t\t\t\t\t[-77.317288, 38.383576],\n\t\t\t\t\t\t[-77.296077, 38.369797],\n\t\t\t\t\t\t[-77.288145, 38.359477],\n\t\t\t\t\t\t[-77.288350, 38.351286],\n\t\t\t\t\t\t[-77.286202, 38.347025],\n\t\t\t\t\t\t[-77.286202, 38.347024],\n\t\t\t\t\t\t[-77.326692, 38.245136],\n\t\t\t\t\t\t[-77.332738, 38.245840],\n\t\t\t\t\t\t[-77.338860, 38.252093],\n\t\t\t\t\t\t[-77.345931, 38.252227],\n\t\t\t\t\t\t[-77.360400, 38.242423],\n\t\t\t\t\t\t[-77.370301, 38.246576],\n\t\t\t\t\t\t[-77.390850, 38.245589],\n\t\t\t\t\t\t[-77.420148, 38.257986],\n\t\t\t\t\t\t[-77.447126, 38.284614],\n\t\t\t\t\t\t[-77.455692, 38.301341],\n\t\t\t\t\t\t[-77.467053, 38.318660],\n\t\t\t\t\t\t[-77.475137, 38.320960],\n\t\t\t\t\t\t[-77.478996, 38.316693],\n\t\t\t\t\t\t[-77.498754, 38.325430],\n\t\t\t\t\t\t[-77.506782, 38.325925],\n\t\t\t\t\t\t[-77.527185, 38.320655],\n\t\t\t\t\t\t[-77.526243, 38.309531],\n\t\t\t\t\t\t[-77.530289, 38.309172],\n\t\t\t\t\t\t[-77.618727, 38.367835],\n\t\t\t\t\t\t[-77.621410, 38.388727],\n\t\t\t\t\t\t[-77.632710, 38.392627],\n\t\t\t\t\t\t[-77.634216, 38.398366],\n\t\t\t\t\t\t[-77.632438, 38.407370],\n\t\t\t\t\t\t[-77.634835, 38.409713]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51515\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"515\",\n\t\t\t\t\"NAME\": \"Bedford\",\n\t\t\t\t\"LSAD\": \"city\",\n\t\t\t\t\"CENSUSAREA\": 6.878000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.543597, 37.324178],\n\t\t\t\t\t\t[-79.535648, 37.355314],\n\t\t\t\t\t\t[-79.487211, 37.345777],\n\t\t\t\t\t\t[-79.503624, 37.316653],\n\t\t\t\t\t\t[-79.543597, 37.324178]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51590\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"590\",\n\t\t\t\t\"NAME\": \"Danville\",\n\t\t\t\t\"LSAD\": \"city\",\n\t\t\t\t\"CENSUSAREA\": 42.934000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.470047, 36.541025],\n\t\t\t\t\t\t[-79.456646, 36.576738],\n\t\t\t\t\t\t[-79.501101, 36.618250],\n\t\t\t\t\t\t[-79.422097, 36.600681],\n\t\t\t\t\t\t[-79.398845, 36.644537],\n\t\t\t\t\t\t[-79.304486, 36.582202],\n\t\t\t\t\t\t[-79.342696, 36.541382],\n\t\t\t\t\t\t[-79.445687, 36.541218],\n\t\t\t\t\t\t[-79.445961, 36.541195],\n\t\t\t\t\t\t[-79.470047, 36.541025]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51620\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"620\",\n\t\t\t\t\"NAME\": \"Franklin\",\n\t\t\t\t\"LSAD\": \"city\",\n\t\t\t\t\"CENSUSAREA\": 8.206000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.924629, 36.707729],\n\t\t\t\t\t\t[-76.926142, 36.698587],\n\t\t\t\t\t\t[-76.912221, 36.698408],\n\t\t\t\t\t\t[-76.925167, 36.683583],\n\t\t\t\t\t\t[-76.912015, 36.672717],\n\t\t\t\t\t\t[-76.917742, 36.662368],\n\t\t\t\t\t\t[-76.909672, 36.648175],\n\t\t\t\t\t\t[-76.962339, 36.667515],\n\t\t\t\t\t\t[-76.949327, 36.678730],\n\t\t\t\t\t\t[-76.968027, 36.682971],\n\t\t\t\t\t\t[-76.967212, 36.702588],\n\t\t\t\t\t\t[-76.949535, 36.708617],\n\t\t\t\t\t\t[-76.924629, 36.707729]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51680\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"680\",\n\t\t\t\t\"NAME\": \"Lynchburg\",\n\t\t\t\t\"LSAD\": \"city\",\n\t\t\t\t\"CENSUSAREA\": 49.128000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.183302, 37.465908],\n\t\t\t\t\t\t[-79.085244, 37.394743],\n\t\t\t\t\t\t[-79.214982, 37.333000],\n\t\t\t\t\t\t[-79.257188, 37.355608],\n\t\t\t\t\t\t[-79.268727, 37.431028],\n\t\t\t\t\t\t[-79.183302, 37.465908]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51720\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"720\",\n\t\t\t\t\"NAME\": \"Norton\",\n\t\t\t\t\"LSAD\": \"city\",\n\t\t\t\t\"CENSUSAREA\": 7.481000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.660291, 36.918804],\n\t\t\t\t\t\t[-82.616375, 36.956694],\n\t\t\t\t\t\t[-82.588890, 36.951182],\n\t\t\t\t\t\t[-82.615137, 36.905251],\n\t\t\t\t\t\t[-82.660291, 36.918804]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51740\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"740\",\n\t\t\t\t\"NAME\": \"Portsmouth\",\n\t\t\t\t\"LSAD\": \"city\",\n\t\t\t\t\"CENSUSAREA\": 33.653000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.344663, 36.919313],\n\t\t\t\t\t\t[-76.340769, 36.901603],\n\t\t\t\t\t\t[-76.328480, 36.893219],\n\t\t\t\t\t\t[-76.336784, 36.875027],\n\t\t\t\t\t\t[-76.313533, 36.858533],\n\t\t\t\t\t\t[-76.294262, 36.841647],\n\t\t\t\t\t\t[-76.289962, 36.822048],\n\t\t\t\t\t\t[-76.375679, 36.786062],\n\t\t\t\t\t\t[-76.420368, 36.866348],\n\t\t\t\t\t\t[-76.406667, 36.878448],\n\t\t\t\t\t\t[-76.406908, 36.897507],\n\t\t\t\t\t\t[-76.387567, 36.899547],\n\t\t\t\t\t\t[-76.385867, 36.923247],\n\t\t\t\t\t\t[-76.353765, 36.922747],\n\t\t\t\t\t\t[-76.345569, 36.924531],\n\t\t\t\t\t\t[-76.344663, 36.919313]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51830\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"830\",\n\t\t\t\t\"NAME\": \"Williamsburg\",\n\t\t\t\t\"LSAD\": \"city\",\n\t\t\t\t\"CENSUSAREA\": 9.022000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.727588, 37.304921],\n\t\t\t\t\t\t[-76.727264, 37.298783],\n\t\t\t\t\t\t[-76.715314, 37.280562],\n\t\t\t\t\t\t[-76.710367, 37.277650],\n\t\t\t\t\t\t[-76.709775, 37.282290],\n\t\t\t\t\t\t[-76.691736, 37.287459],\n\t\t\t\t\t\t[-76.690217, 37.292656],\n\t\t\t\t\t\t[-76.681182, 37.292721],\n\t\t\t\t\t\t[-76.677054, 37.277170],\n\t\t\t\t\t\t[-76.684705, 37.270068],\n\t\t\t\t\t\t[-76.679468, 37.265652],\n\t\t\t\t\t\t[-76.664621, 37.250490],\n\t\t\t\t\t\t[-76.726003, 37.249901],\n\t\t\t\t\t\t[-76.742487, 37.275092],\n\t\t\t\t\t\t[-76.725272, 37.279686],\n\t\t\t\t\t\t[-76.739665, 37.306255],\n\t\t\t\t\t\t[-76.727588, 37.304921]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12086\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"086\",\n\t\t\t\t\"NAME\": \"Miami-Dade\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1897.716000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.440490, 25.956861],\n\t\t\t\t\t\t[-80.326712, 25.957118],\n\t\t\t\t\t\t[-80.294972, 25.956770],\n\t\t\t\t\t\t[-80.295187, 25.970570],\n\t\t\t\t\t\t[-80.278764, 25.970968],\n\t\t\t\t\t\t[-80.246763, 25.971874],\n\t\t\t\t\t\t[-80.143501, 25.974511],\n\t\t\t\t\t\t[-80.142227, 25.974674],\n\t\t\t\t\t\t[-80.133867, 25.974868],\n\t\t\t\t\t\t[-80.133862, 25.974110],\n\t\t\t\t\t\t[-80.123874, 25.974484],\n\t\t\t\t\t\t[-80.118078, 25.975158],\n\t\t\t\t\t\t[-80.117798, 25.975152],\n\t\t\t\t\t\t[-80.117904, 25.915772],\n\t\t\t\t\t\t[-80.120870, 25.883152],\n\t\t\t\t\t\t[-80.119684, 25.841043],\n\t\t\t\t\t\t[-80.122056, 25.817913],\n\t\t\t\t\t\t[-80.127394, 25.791224],\n\t\t\t\t\t\t[-80.127987, 25.772245],\n\t\t\t\t\t\t[-80.137476, 25.750301],\n\t\t\t\t\t\t[-80.144000, 25.740812],\n\t\t\t\t\t\t[-80.152896, 25.702855],\n\t\t\t\t\t\t[-80.154082, 25.683283],\n\t\t\t\t\t\t[-80.152303, 25.676759],\n\t\t\t\t\t\t[-80.154972, 25.665490],\n\t\t\t\t\t\t[-80.160903, 25.664897],\n\t\t\t\t\t\t[-80.176916, 25.685062],\n\t\t\t\t\t\t[-80.170392, 25.710565],\n\t\t\t\t\t\t[-80.164461, 25.721833],\n\t\t\t\t\t\t[-80.166241, 25.728950],\n\t\t\t\t\t\t[-80.172765, 25.737847],\n\t\t\t\t\t\t[-80.184626, 25.745557],\n\t\t\t\t\t\t[-80.197674, 25.744370],\n\t\t\t\t\t\t[-80.229107, 25.732509],\n\t\t\t\t\t\t[-80.240376, 25.724206],\n\t\t\t\t\t\t[-80.244528, 25.717089],\n\t\t\t\t\t\t[-80.250459, 25.688028],\n\t\t\t\t\t\t[-80.265879, 25.658373],\n\t\t\t\t\t\t[-80.267065, 25.651849],\n\t\t\t\t\t\t[-80.277147, 25.637022],\n\t\t\t\t\t\t[-80.288416, 25.630498],\n\t\t\t\t\t\t[-80.296719, 25.622195],\n\t\t\t\t\t\t[-80.301464, 25.613299],\n\t\t\t\t\t\t[-80.305615, 25.593134],\n\t\t\t\t\t\t[-80.305615, 25.575342],\n\t\t\t\t\t\t[-80.302057, 25.567632],\n\t\t\t\t\t\t[-80.313918, 25.539164],\n\t\t\t\t\t\t[-80.324594, 25.535605],\n\t\t\t\t\t\t[-80.328746, 25.532640],\n\t\t\t\t\t\t[-80.339421, 25.499427],\n\t\t\t\t\t\t[-80.339421, 25.478669],\n\t\t\t\t\t\t[-80.337049, 25.465621],\n\t\t\t\t\t\t[-80.328152, 25.443084],\n\t\t\t\t\t\t[-80.320442, 25.437153],\n\t\t\t\t\t\t[-80.326373, 25.422919],\n\t\t\t\t\t\t[-80.325780, 25.398010],\n\t\t\t\t\t\t[-80.320442, 25.391486],\n\t\t\t\t\t\t[-80.310360, 25.389707],\n\t\t\t\t\t\t[-80.306801, 25.384369],\n\t\t\t\t\t\t[-80.310360, 25.373100],\n\t\t\t\t\t\t[-80.335269, 25.338701],\n\t\t\t\t\t\t[-80.352469, 25.329805],\n\t\t\t\t\t\t[-80.361662, 25.327433],\n\t\t\t\t\t\t[-80.374116, 25.317350],\n\t\t\t\t\t\t[-80.383013, 25.301337],\n\t\t\t\t\t\t[-80.385978, 25.288289],\n\t\t\t\t\t\t[-80.419191, 25.263380],\n\t\t\t\t\t\t[-80.437815, 25.253077],\n\t\t\t\t\t\t[-80.447066, 25.247960],\n\t\t\t\t\t\t[-80.462832, 25.236248],\n\t\t\t\t\t\t[-80.467824, 25.232540],\n\t\t\t\t\t\t[-80.468366, 25.231977],\n\t\t\t\t\t\t[-80.469843, 25.230442],\n\t\t\t\t\t\t[-80.483244, 25.216526],\n\t\t\t\t\t\t[-80.487591, 25.207829],\n\t\t\t\t\t\t[-80.488035, 25.206942],\n\t\t\t\t\t\t[-80.488216, 25.206757],\n\t\t\t\t\t\t[-80.495341, 25.199463],\n\t\t\t\t\t\t[-80.496179, 25.199637],\n\t\t\t\t\t\t[-80.498361, 25.200091],\n\t\t\t\t\t\t[-80.498644, 25.200150],\n\t\t\t\t\t\t[-80.502983, 25.203160],\n\t\t\t\t\t\t[-80.503125, 25.203259],\n\t\t\t\t\t\t[-80.507780, 25.206488],\n\t\t\t\t\t\t[-80.508113, 25.206719],\n\t\t\t\t\t\t[-80.508116, 25.206725],\n\t\t\t\t\t\t[-80.512928, 25.216719],\n\t\t\t\t\t\t[-80.514724, 25.217702],\n\t\t\t\t\t\t[-80.515297, 25.218016],\n\t\t\t\t\t\t[-80.520359, 25.220788],\n\t\t\t\t\t\t[-80.523190, 25.220080],\n\t\t\t\t\t\t[-80.525784, 25.218649],\n\t\t\t\t\t\t[-80.530207, 25.216207],\n\t\t\t\t\t\t[-80.540947, 25.218210],\n\t\t\t\t\t\t[-80.542040, 25.221850],\n\t\t\t\t\t\t[-80.540947, 25.224945],\n\t\t\t\t\t\t[-80.540765, 25.229678],\n\t\t\t\t\t\t[-80.548491, 25.236535],\n\t\t\t\t\t\t[-80.558223, 25.239012],\n\t\t\t\t\t\t[-80.570785, 25.239366],\n\t\t\t\t\t\t[-80.589186, 25.223796],\n\t\t\t\t\t\t[-80.587593, 25.207695],\n\t\t\t\t\t\t[-80.584783, 25.200695],\n\t\t\t\t\t\t[-80.584771, 25.200665],\n\t\t\t\t\t\t[-80.594338, 25.193437],\n\t\t\t\t\t\t[-80.601627, 25.187931],\n\t\t\t\t\t\t[-80.609607, 25.181902],\n\t\t\t\t\t\t[-80.609609, 25.181901],\n\t\t\t\t\t\t[-80.618989, 25.177345],\n\t\t\t\t\t\t[-80.619024, 25.177328],\n\t\t\t\t\t\t[-80.633992, 25.176829],\n\t\t\t\t\t\t[-80.639873, 25.176633],\n\t\t\t\t\t\t[-80.640275, 25.176620],\n\t\t\t\t\t\t[-80.640823, 25.176364],\n\t\t\t\t\t\t[-80.642456, 25.175601],\n\t\t\t\t\t\t[-80.645737, 25.174069],\n\t\t\t\t\t\t[-80.645822, 25.174029],\n\t\t\t\t\t\t[-80.646099, 25.173599],\n\t\t\t\t\t\t[-80.648565, 25.169773],\n\t\t\t\t\t\t[-80.649251, 25.168708],\n\t\t\t\t\t\t[-80.656944, 25.168216],\n\t\t\t\t\t\t[-80.660692, 25.167976],\n\t\t\t\t\t\t[-80.669950, 25.167384],\n\t\t\t\t\t\t[-80.674324, 25.167104],\n\t\t\t\t\t\t[-80.679852, 25.166751],\n\t\t\t\t\t\t[-80.683909, 25.166491],\n\t\t\t\t\t\t[-80.688361, 25.164711],\n\t\t\t\t\t\t[-80.695038, 25.157588],\n\t\t\t\t\t\t[-80.701270, 25.146683],\n\t\t\t\t\t\t[-80.703718, 25.139115],\n\t\t\t\t\t\t[-80.715099, 25.140872],\n\t\t\t\t\t\t[-80.721886, 25.145101],\n\t\t\t\t\t\t[-80.728602, 25.144316],\n\t\t\t\t\t\t[-80.734741, 25.143598],\n\t\t\t\t\t\t[-80.738330, 25.143178],\n\t\t\t\t\t\t[-80.742877, 25.142646],\n\t\t\t\t\t\t[-80.746379, 25.148559],\n\t\t\t\t\t\t[-80.746264, 25.155303],\n\t\t\t\t\t\t[-80.751866, 25.163762],\n\t\t\t\t\t\t[-80.757581, 25.166734],\n\t\t\t\t\t\t[-80.795456, 25.172337],\n\t\t\t\t\t\t[-80.796219, 25.172450],\n\t\t\t\t\t\t[-80.815193, 25.164956],\n\t\t\t\t\t\t[-80.817116, 25.164196],\n\t\t\t\t\t\t[-80.823441, 25.161698],\n\t\t\t\t\t\t[-80.826465, 25.160504],\n\t\t\t\t\t\t[-80.826530, 25.160478],\n\t\t\t\t\t\t[-80.826544, 25.160509],\n\t\t\t\t\t\t[-80.827179, 25.161888],\n\t\t\t\t\t\t[-80.827489, 25.162562],\n\t\t\t\t\t\t[-80.828435, 25.164619],\n\t\t\t\t\t\t[-80.830034, 25.168094],\n\t\t\t\t\t\t[-80.838227, 25.174791],\n\t\t\t\t\t\t[-80.843703, 25.176312],\n\t\t\t\t\t\t[-80.846395, 25.177060],\n\t\t\t\t\t\t[-80.846400, 25.177060],\n\t\t\t\t\t\t[-80.858167, 25.176576],\n\t\t\t\t\t\t[-80.873190, 25.363993],\n\t\t\t\t\t\t[-80.873096, 25.805377],\n\t\t\t\t\t\t[-80.872932, 25.979434],\n\t\t\t\t\t\t[-80.680038, 25.978749],\n\t\t\t\t\t\t[-80.680016, 25.956857],\n\t\t\t\t\t\t[-80.440490, 25.956861]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12103\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"103\",\n\t\t\t\t\"NAME\": \"Pinellas\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 273.799000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-82.821585, 27.964443],\n\t\t\t\t\t\t\t[-82.829801, 27.968469],\n\t\t\t\t\t\t\t[-82.828625, 28.019795],\n\t\t\t\t\t\t\t[-82.823025, 28.030695],\n\t\t\t\t\t\t\t[-82.823063, 28.044758],\n\t\t\t\t\t\t\t[-82.826282, 28.053450],\n\t\t\t\t\t\t\t[-82.831825, 28.062893],\n\t\t\t\t\t\t\t[-82.836326, 28.073193],\n\t\t\t\t\t\t\t[-82.833225, 28.082193],\n\t\t\t\t\t\t\t[-82.830525, 28.085293],\n\t\t\t\t\t\t\t[-82.826125, 28.083793],\n\t\t\t\t\t\t\t[-82.823063, 28.068258],\n\t\t\t\t\t\t\t[-82.818288, 28.057613],\n\t\t\t\t\t\t\t[-82.813435, 28.037160],\n\t\t\t\t\t\t\t[-82.815168, 28.012547],\n\t\t\t\t\t\t\t[-82.821408, 28.008387],\n\t\t\t\t\t\t\t[-82.821755, 28.002494],\n\t\t\t\t\t\t\t[-82.817248, 27.992094],\n\t\t\t\t\t\t\t[-82.815168, 27.973721],\n\t\t\t\t\t\t\t[-82.821585, 27.964443]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-82.679019, 27.696054],\n\t\t\t\t\t\t\t[-82.679251, 27.694665],\n\t\t\t\t\t\t\t[-82.693748, 27.700217],\n\t\t\t\t\t\t\t[-82.713629, 27.698661],\n\t\t\t\t\t\t\t[-82.718822, 27.692007],\n\t\t\t\t\t\t\t[-82.723022, 27.671208],\n\t\t\t\t\t\t\t[-82.721622, 27.663908],\n\t\t\t\t\t\t\t[-82.716322, 27.651409],\n\t\t\t\t\t\t\t[-82.712555, 27.646647],\n\t\t\t\t\t\t\t[-82.698091, 27.638858],\n\t\t\t\t\t\t\t[-82.705017, 27.625310],\n\t\t\t\t\t\t\t[-82.733076, 27.612972],\n\t\t\t\t\t\t\t[-82.736552, 27.617326],\n\t\t\t\t\t\t\t[-82.737312, 27.623115],\n\t\t\t\t\t\t\t[-82.737790, 27.626758],\n\t\t\t\t\t\t\t[-82.739122, 27.636909],\n\t\t\t\t\t\t\t[-82.738022, 27.706807],\n\t\t\t\t\t\t\t[-82.740323, 27.718206],\n\t\t\t\t\t\t\t[-82.746223, 27.731306],\n\t\t\t\t\t\t\t[-82.753723, 27.736306],\n\t\t\t\t\t\t\t[-82.760923, 27.745205],\n\t\t\t\t\t\t\t[-82.770023, 27.767904],\n\t\t\t\t\t\t\t[-82.783124, 27.783804],\n\t\t\t\t\t\t\t[-82.790224, 27.791603],\n\t\t\t\t\t\t\t[-82.820433, 27.813742],\n\t\t\t\t\t\t\t[-82.828561, 27.822254],\n\t\t\t\t\t\t\t[-82.846526, 27.854301],\n\t\t\t\t\t\t\t[-82.849126, 27.863200],\n\t\t\t\t\t\t\t[-82.851126, 27.886300],\n\t\t\t\t\t\t\t[-82.847826, 27.910199],\n\t\t\t\t\t\t\t[-82.840882, 27.937162],\n\t\t\t\t\t\t\t[-82.831388, 27.962117],\n\t\t\t\t\t\t\t[-82.824875, 27.960201],\n\t\t\t\t\t\t\t[-82.821975, 27.956868],\n\t\t\t\t\t\t\t[-82.830819, 27.930926],\n\t\t\t\t\t\t\t[-82.838484, 27.909111],\n\t\t\t\t\t\t\t[-82.832155, 27.909242],\n\t\t\t\t\t\t\t[-82.820715, 27.927268],\n\t\t\t\t\t\t\t[-82.808745, 27.953112],\n\t\t\t\t\t\t\t[-82.805462, 27.960201],\n\t\t\t\t\t\t\t[-82.797820, 27.990563],\n\t\t\t\t\t\t\t[-82.792635, 28.011160],\n\t\t\t\t\t\t\t[-82.792635, 28.032307],\n\t\t\t\t\t\t\t[-82.782724, 28.055894],\n\t\t\t\t\t\t\t[-82.783824, 28.106292],\n\t\t\t\t\t\t\t[-82.782181, 28.120287],\n\t\t\t\t\t\t\t[-82.781324, 28.127591],\n\t\t\t\t\t\t\t[-82.786624, 28.144991],\n\t\t\t\t\t\t\t[-82.790724, 28.152490],\n\t\t\t\t\t\t\t[-82.799024, 28.151790],\n\t\t\t\t\t\t\t[-82.808474, 28.154803],\n\t\t\t\t\t\t\t[-82.805097, 28.172181],\n\t\t\t\t\t\t\t[-82.651165, 28.173266],\n\t\t\t\t\t\t\t[-82.648557, 28.038630],\n\t\t\t\t\t\t\t[-82.648616, 27.966309],\n\t\t\t\t\t\t\t[-82.716522, 27.958398],\n\t\t\t\t\t\t\t[-82.720522, 27.955798],\n\t\t\t\t\t\t\t[-82.724122, 27.948098],\n\t\t\t\t\t\t\t[-82.721975, 27.941819],\n\t\t\t\t\t\t\t[-82.721429, 27.940222],\n\t\t\t\t\t\t\t[-82.720395, 27.937199],\n\t\t\t\t\t\t\t[-82.720122, 27.936399],\n\t\t\t\t\t\t\t[-82.710022, 27.928299],\n\t\t\t\t\t\t\t[-82.691621, 27.924899],\n\t\t\t\t\t\t\t[-82.685121, 27.916299],\n\t\t\t\t\t\t\t[-82.671221, 27.913000],\n\t\t\t\t\t\t\t[-82.628063, 27.910397],\n\t\t\t\t\t\t\t[-82.634220, 27.903700],\n\t\t\t\t\t\t\t[-82.632120, 27.891100],\n\t\t\t\t\t\t\t[-82.610020, 27.873501],\n\t\t\t\t\t\t\t[-82.567919, 27.883701],\n\t\t\t\t\t\t\t[-82.567826, 27.881537],\n\t\t\t\t\t\t\t[-82.566819, 27.858002],\n\t\t\t\t\t\t\t[-82.598443, 27.857582],\n\t\t\t\t\t\t\t[-82.594819, 27.843402],\n\t\t\t\t\t\t\t[-82.589319, 27.835702],\n\t\t\t\t\t\t\t[-82.586519, 27.816703],\n\t\t\t\t\t\t\t[-82.607420, 27.798904],\n\t\t\t\t\t\t\t[-82.622723, 27.779868],\n\t\t\t\t\t\t\t[-82.630520, 27.753905],\n\t\t\t\t\t\t\t[-82.625020, 27.732706],\n\t\t\t\t\t\t\t[-82.625720, 27.727006],\n\t\t\t\t\t\t\t[-82.633620, 27.710607],\n\t\t\t\t\t\t\t[-82.639820, 27.703907],\n\t\t\t\t\t\t\t[-82.652521, 27.700307],\n\t\t\t\t\t\t\t[-82.662921, 27.702307],\n\t\t\t\t\t\t\t[-82.663246, 27.702442],\n\t\t\t\t\t\t\t[-82.667445, 27.704179],\n\t\t\t\t\t\t\t[-82.668772, 27.704728],\n\t\t\t\t\t\t\t[-82.670449, 27.705422],\n\t\t\t\t\t\t\t[-82.670942, 27.705626],\n\t\t\t\t\t\t\t[-82.671549, 27.705877],\n\t\t\t\t\t\t\t[-82.671621, 27.705907],\n\t\t\t\t\t\t\t[-82.672093, 27.705932],\n\t\t\t\t\t\t\t[-82.673061, 27.705983],\n\t\t\t\t\t\t\t[-82.674123, 27.706039],\n\t\t\t\t\t\t\t[-82.677321, 27.706207],\n\t\t\t\t\t\t\t[-82.679019, 27.696054]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12123\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"123\",\n\t\t\t\t\"NAME\": \"Taylor\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1043.305000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.856987, 30.273318],\n\t\t\t\t\t\t[-83.829465, 30.287863],\n\t\t\t\t\t\t[-83.820235, 30.303540],\n\t\t\t\t\t\t[-83.468768, 30.304212],\n\t\t\t\t\t\t[-83.469267, 30.260351],\n\t\t\t\t\t\t[-83.367260, 30.260440],\n\t\t\t\t\t\t[-83.370890, 29.887934],\n\t\t\t\t\t\t[-83.318859, 29.822623],\n\t\t\t\t\t\t[-83.373351, 29.665951],\n\t\t\t\t\t\t[-83.412278, 29.666922],\n\t\t\t\t\t\t[-83.412768, 29.668485],\n\t\t\t\t\t\t[-83.414701, 29.670536],\n\t\t\t\t\t\t[-83.436259, 29.677389],\n\t\t\t\t\t\t[-83.444635, 29.677155],\n\t\t\t\t\t\t[-83.448194, 29.675254],\n\t\t\t\t\t\t[-83.455356, 29.676444],\n\t\t\t\t\t\t[-83.483143, 29.690478],\n\t\t\t\t\t\t[-83.483567, 29.698542],\n\t\t\t\t\t\t[-83.493728, 29.708388],\n\t\t\t\t\t\t[-83.512716, 29.716480],\n\t\t\t\t\t\t[-83.537645, 29.723060],\n\t\t\t\t\t\t[-83.547172, 29.732223],\n\t\t\t\t\t\t[-83.554993, 29.742600],\n\t\t\t\t\t\t[-83.566018, 29.761434],\n\t\t\t\t\t\t[-83.578955, 29.768378],\n\t\t\t\t\t\t[-83.584716, 29.776080],\n\t\t\t\t\t\t[-83.586089, 29.784644],\n\t\t\t\t\t\t[-83.583045, 29.787307],\n\t\t\t\t\t\t[-83.581903, 29.792063],\n\t\t\t\t\t\t[-83.585899, 29.811754],\n\t\t\t\t\t\t[-83.595493, 29.827984],\n\t\t\t\t\t\t[-83.605244, 29.836387],\n\t\t\t\t\t\t[-83.618568, 29.842336],\n\t\t\t\t\t\t[-83.637980, 29.886073],\n\t\t\t\t\t\t[-83.659951, 29.899524],\n\t\t\t\t\t\t[-83.679219, 29.918513],\n\t\t\t\t\t\t[-83.686423, 29.923735],\n\t\t\t\t\t\t[-83.757249, 29.957943],\n\t\t\t\t\t\t[-83.788729, 29.976982],\n\t\t\t\t\t\t[-83.828690, 29.983187],\n\t\t\t\t\t\t[-83.845427, 29.998068],\n\t\t\t\t\t\t[-83.931510, 30.039068],\n\t\t\t\t\t\t[-83.933668, 30.041152],\n\t\t\t\t\t\t[-83.931879, 30.044175],\n\t\t\t\t\t\t[-83.933432, 30.046305],\n\t\t\t\t\t\t[-83.959680, 30.064943],\n\t\t\t\t\t\t[-83.991607, 30.083920],\n\t\t\t\t\t\t[-83.915533, 30.245386],\n\t\t\t\t\t\t[-83.856987, 30.273318]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13259\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"259\",\n\t\t\t\t\"NAME\": \"Stewart\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 458.733000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.923638, 32.231539],\n\t\t\t\t\t\t[-84.658920, 32.232852],\n\t\t\t\t\t\t[-84.649319, 32.232953],\n\t\t\t\t\t\t[-84.655820, 31.920308],\n\t\t\t\t\t\t[-84.907006, 31.924465],\n\t\t\t\t\t\t[-85.062246, 31.991857],\n\t\t\t\t\t\t[-85.050212, 32.024196],\n\t\t\t\t\t\t[-85.056029, 32.063055],\n\t\t\t\t\t\t[-85.047865, 32.142033],\n\t\t\t\t\t\t[-84.995929, 32.184852],\n\t\t\t\t\t\t[-84.964828, 32.194952],\n\t\t\t\t\t\t[-84.923638, 32.231539]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13271\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"271\",\n\t\t\t\t\"NAME\": \"Telfair\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 437.303000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.995698, 31.780983],\n\t\t\t\t\t\t[-83.177469, 31.847857],\n\t\t\t\t\t\t[-83.205739, 31.900325],\n\t\t\t\t\t\t[-82.942066, 32.124074],\n\t\t\t\t\t\t[-82.955466, 32.135274],\n\t\t\t\t\t\t[-82.934566, 32.153274],\n\t\t\t\t\t\t[-82.927865, 32.135274],\n\t\t\t\t\t\t[-82.887657, 32.079891],\n\t\t\t\t\t\t[-82.729112, 32.006878],\n\t\t\t\t\t\t[-82.645659, 31.918883],\n\t\t\t\t\t\t[-82.836366, 31.816154],\n\t\t\t\t\t\t[-82.863090, 31.783005],\n\t\t\t\t\t\t[-82.995698, 31.780983]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13283\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"283\",\n\t\t\t\t\"NAME\": \"Treutlen\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 199.436000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.409118, 32.353830],\n\t\t\t\t\t\t[-82.409118, 32.353810],\n\t\t\t\t\t\t[-82.409127, 32.353772],\n\t\t\t\t\t\t[-82.409130, 32.353738],\n\t\t\t\t\t\t[-82.655486, 32.297561],\n\t\t\t\t\t\t[-82.721964, 32.309283],\n\t\t\t\t\t\t[-82.737137, 32.338030],\n\t\t\t\t\t\t[-82.647733, 32.512507],\n\t\t\t\t\t\t[-82.488941, 32.491830],\n\t\t\t\t\t\t[-82.381940, 32.440596],\n\t\t\t\t\t\t[-82.409118, 32.353830]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13297\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"297\",\n\t\t\t\t\"NAME\": \"Walton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 325.680000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.914823, 33.744203],\n\t\t\t\t\t\t[-83.953332, 33.768034],\n\t\t\t\t\t\t[-83.954499, 33.768920],\n\t\t\t\t\t\t[-83.982033, 33.786054],\n\t\t\t\t\t\t[-83.799104, 33.929844],\n\t\t\t\t\t\t[-83.763835, 33.896682],\n\t\t\t\t\t\t[-83.647031, 33.906198],\n\t\t\t\t\t\t[-83.505928, 33.817760],\n\t\t\t\t\t\t[-83.680896, 33.596919],\n\t\t\t\t\t\t[-83.777350, 33.658301],\n\t\t\t\t\t\t[-83.914823, 33.744203]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20025\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"025\",\n\t\t\t\t\"NAME\": \"Clark\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 974.632000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.558068, 36.999528],\n\t\t\t\t\t\t[-99.625399, 36.999671],\n\t\t\t\t\t\t[-99.657658, 37.000197],\n\t\t\t\t\t\t[-99.774255, 37.000837],\n\t\t\t\t\t\t[-99.774816, 37.000841],\n\t\t\t\t\t\t[-99.786016, 37.000931],\n\t\t\t\t\t\t[-99.995201, 37.001631],\n\t\t\t\t\t\t[-100.001286, 37.001699],\n\t\t\t\t\t\t[-100.002563, 37.001706],\n\t\t\t\t\t\t[-100.005706, 37.001726],\n\t\t\t\t\t\t[-100.089484, 37.002092],\n\t\t\t\t\t\t[-100.091529, 37.386892],\n\t\t\t\t\t\t[-100.107248, 37.474836],\n\t\t\t\t\t\t[-99.774512, 37.467404],\n\t\t\t\t\t\t[-99.556119, 37.467722],\n\t\t\t\t\t\t[-99.555774, 37.381112],\n\t\t\t\t\t\t[-99.543189, 37.381124],\n\t\t\t\t\t\t[-99.541116, 36.999573],\n\t\t\t\t\t\t[-99.558068, 36.999528]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20031\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"031\",\n\t\t\t\t\"NAME\": \"Coffey\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 626.947000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.508267, 38.433933],\n\t\t\t\t\t\t[-95.508328, 38.390278],\n\t\t\t\t\t\t[-95.518970, 38.038230],\n\t\t\t\t\t\t[-95.959046, 38.040195],\n\t\t\t\t\t\t[-95.958862, 38.170939],\n\t\t\t\t\t\t[-95.950282, 38.434105],\n\t\t\t\t\t\t[-95.508267, 38.433933]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20033\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"033\",\n\t\t\t\t\"NAME\": \"Comanche\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 788.298000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.000303, 36.999510],\n\t\t\t\t\t\t[-99.029337, 36.999595],\n\t\t\t\t\t\t[-99.124883, 36.999420],\n\t\t\t\t\t\t[-99.129449, 36.999422],\n\t\t\t\t\t\t[-99.248120, 36.999565],\n\t\t\t\t\t\t[-99.277506, 36.999579],\n\t\t\t\t\t\t[-99.456203, 36.999471],\n\t\t\t\t\t\t[-99.484333, 36.999626],\n\t\t\t\t\t\t[-99.500395, 36.999576],\n\t\t\t\t\t\t[-99.500395, 36.999637],\n\t\t\t\t\t\t[-99.502665, 36.999645],\n\t\t\t\t\t\t[-99.504093, 36.999648],\n\t\t\t\t\t\t[-99.508574, 36.999658],\n\t\t\t\t\t\t[-99.541116, 36.999573],\n\t\t\t\t\t\t[-99.543189, 37.381124],\n\t\t\t\t\t\t[-99.011499, 37.384263],\n\t\t\t\t\t\t[-99.001294, 37.384296],\n\t\t\t\t\t\t[-99.000303, 36.999510]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20045\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"045\",\n\t\t\t\t\"NAME\": \"Douglas\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 455.871000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.056207, 38.811432],\n\t\t\t\t\t\t[-95.056412, 38.738587],\n\t\t\t\t\t\t[-95.500738, 38.738808],\n\t\t\t\t\t\t[-95.501038, 38.739721],\n\t\t\t\t\t\t[-95.500724, 38.869815],\n\t\t\t\t\t\t[-95.500254, 39.056656],\n\t\t\t\t\t\t[-95.285425, 39.032162],\n\t\t\t\t\t\t[-95.187103, 39.044109],\n\t\t\t\t\t\t[-95.164123, 38.981630],\n\t\t\t\t\t\t[-95.056258, 38.982120],\n\t\t\t\t\t\t[-95.056207, 38.811432]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20055\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"055\",\n\t\t\t\t\"NAME\": \"Finney\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1301.967000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.227137, 38.262237],\n\t\t\t\t\t\t[-100.226610, 38.001015],\n\t\t\t\t\t\t[-100.664166, 38.002530],\n\t\t\t\t\t\t[-100.652251, 37.736275],\n\t\t\t\t\t\t[-101.089667, 37.736337],\n\t\t\t\t\t\t[-101.103778, 37.829035],\n\t\t\t\t\t\t[-101.103268, 38.264557],\n\t\t\t\t\t\t[-100.687836, 38.264150],\n\t\t\t\t\t\t[-100.244393, 38.262290],\n\t\t\t\t\t\t[-100.227137, 38.262237]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20069\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"069\",\n\t\t\t\t\"NAME\": \"Gray\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 868.867000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.226610, 38.001015],\n\t\t\t\t\t\t[-100.227090, 37.914018],\n\t\t\t\t\t\t[-100.214637, 37.826808],\n\t\t\t\t\t\t[-100.216229, 37.475190],\n\t\t\t\t\t\t[-100.652642, 37.474848],\n\t\t\t\t\t\t[-100.652251, 37.736275],\n\t\t\t\t\t\t[-100.664166, 38.002530],\n\t\t\t\t\t\t[-100.226610, 38.001015]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20081\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"081\",\n\t\t\t\t\"NAME\": \"Haskell\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 577.521000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.652251, 37.736275],\n\t\t\t\t\t\t[-100.652642, 37.474848],\n\t\t\t\t\t\t[-100.652728, 37.387627],\n\t\t\t\t\t\t[-101.067904, 37.387779],\n\t\t\t\t\t\t[-101.089653, 37.387721],\n\t\t\t\t\t\t[-101.089667, 37.736337],\n\t\t\t\t\t\t[-100.652251, 37.736275]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20093\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"093\",\n\t\t\t\t\"NAME\": \"Kearny\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 870.543000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-101.542312, 38.263207],\n\t\t\t\t\t\t[-101.125438, 38.264509],\n\t\t\t\t\t\t[-101.103268, 38.264557],\n\t\t\t\t\t\t[-101.103778, 37.829035],\n\t\t\t\t\t\t[-101.089667, 37.736337],\n\t\t\t\t\t\t[-101.527063, 37.736314],\n\t\t\t\t\t\t[-101.542757, 37.827594],\n\t\t\t\t\t\t[-101.542312, 38.263207]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20101\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"101\",\n\t\t\t\t\"NAME\": \"Lane\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 717.455000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.244393, 38.262290],\n\t\t\t\t\t\t[-100.687836, 38.264150],\n\t\t\t\t\t\t[-100.684637, 38.271122],\n\t\t\t\t\t\t[-100.688006, 38.700021],\n\t\t\t\t\t\t[-100.247200, 38.698165],\n\t\t\t\t\t\t[-100.244393, 38.262290]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20111\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"111\",\n\t\t\t\t\"NAME\": \"Lyon\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 847.474000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.357277, 38.172660],\n\t\t\t\t\t\t[-96.353780, 38.521657],\n\t\t\t\t\t\t[-96.352613, 38.739021],\n\t\t\t\t\t\t[-95.945924, 38.739112],\n\t\t\t\t\t\t[-95.950282, 38.434105],\n\t\t\t\t\t\t[-95.958862, 38.170939],\n\t\t\t\t\t\t[-96.357277, 38.172660]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20123\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"123\",\n\t\t\t\t\"NAME\": \"Mitchell\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 701.792000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.929097, 39.306397],\n\t\t\t\t\t\t[-97.931614, 39.277094],\n\t\t\t\t\t\t[-97.929746, 39.219273],\n\t\t\t\t\t\t[-98.490149, 39.219780],\n\t\t\t\t\t\t[-98.487384, 39.567492],\n\t\t\t\t\t\t[-97.931844, 39.566921],\n\t\t\t\t\t\t[-97.928462, 39.566915],\n\t\t\t\t\t\t[-97.929097, 39.306397]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20133\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"133\",\n\t\t\t\t\"NAME\": \"Neosho\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 571.472000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.088012, 37.674519],\n\t\t\t\t\t\t[-95.088189, 37.383837],\n\t\t\t\t\t\t[-95.521130, 37.383990],\n\t\t\t\t\t\t[-95.525560, 37.383979],\n\t\t\t\t\t\t[-95.525499, 37.732759],\n\t\t\t\t\t\t[-95.088082, 37.732476],\n\t\t\t\t\t\t[-95.088012, 37.674519]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20139\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"139\",\n\t\t\t\t\"NAME\": \"Osage\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 705.518000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.508267, 38.433933],\n\t\t\t\t\t\t[-95.950282, 38.434105],\n\t\t\t\t\t\t[-95.945924, 38.739112],\n\t\t\t\t\t\t[-95.946587, 38.869973],\n\t\t\t\t\t\t[-95.500724, 38.869815],\n\t\t\t\t\t\t[-95.501038, 38.739721],\n\t\t\t\t\t\t[-95.500738, 38.738808],\n\t\t\t\t\t\t[-95.508267, 38.433933]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20151\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"151\",\n\t\t\t\t\"NAME\": \"Pratt\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 735.045000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.472257, 37.824497],\n\t\t\t\t\t\t[-98.464899, 37.824512],\n\t\t\t\t\t\t[-98.464804, 37.732675],\n\t\t\t\t\t\t[-98.464663, 37.471013],\n\t\t\t\t\t\t[-99.012598, 37.470421],\n\t\t\t\t\t\t[-99.013550, 37.732970],\n\t\t\t\t\t\t[-99.013318, 37.825336],\n\t\t\t\t\t\t[-98.472257, 37.824497]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20159\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"159\",\n\t\t\t\t\"NAME\": \"Rice\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 726.237000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.480377, 38.521841],\n\t\t\t\t\t\t[-97.924269, 38.522755],\n\t\t\t\t\t\t[-97.922136, 38.173713],\n\t\t\t\t\t\t[-98.472794, 38.172757],\n\t\t\t\t\t\t[-98.479841, 38.260790],\n\t\t\t\t\t\t[-98.480377, 38.521841]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20169\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"169\",\n\t\t\t\t\"NAME\": \"Saline\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 720.225000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.928595, 38.871102],\n\t\t\t\t\t\t[-97.928967, 38.882176],\n\t\t\t\t\t\t[-97.928702, 38.886208],\n\t\t\t\t\t\t[-97.928560, 38.958395],\n\t\t\t\t\t\t[-97.371614, 38.957852],\n\t\t\t\t\t\t[-97.371911, 38.609353],\n\t\t\t\t\t\t[-97.924795, 38.609880],\n\t\t\t\t\t\t[-97.928595, 38.871102]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37157\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"157\",\n\t\t\t\t\"NAME\": \"Rockingham\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 565.551000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.027269, 36.542495],\n\t\t\t\t\t\t[-79.967511, 36.542502],\n\t\t\t\t\t\t[-79.966979, 36.542475],\n\t\t\t\t\t\t[-79.920239, 36.542365],\n\t\t\t\t\t\t[-79.714855, 36.541884],\n\t\t\t\t\t\t[-79.667309, 36.541772],\n\t\t\t\t\t\t[-79.666827, 36.541772],\n\t\t\t\t\t\t[-79.510961, 36.540740],\n\t\t\t\t\t\t[-79.532096, 36.248584],\n\t\t\t\t\t\t[-79.532329, 36.241427],\n\t\t\t\t\t\t[-79.532365, 36.241342],\n\t\t\t\t\t\t[-79.700569, 36.246043],\n\t\t\t\t\t\t[-79.797538, 36.248806],\n\t\t\t\t\t\t[-79.808899, 36.249619],\n\t\t\t\t\t\t[-80.027352, 36.257507],\n\t\t\t\t\t\t[-80.035540, 36.257351],\n\t\t\t\t\t\t[-80.033218, 36.344867],\n\t\t\t\t\t\t[-80.027269, 36.542495]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37173\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"173\",\n\t\t\t\t\"NAME\": \"Swain\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 527.996000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.662957, 35.569138],\n\t\t\t\t\t\t[-83.640498, 35.566075],\n\t\t\t\t\t\t[-83.498335, 35.562981],\n\t\t\t\t\t\t[-83.485527, 35.568204],\n\t\t\t\t\t\t[-83.480617, 35.576633],\n\t\t\t\t\t\t[-83.478523, 35.579202],\n\t\t\t\t\t\t[-83.479082, 35.583316],\n\t\t\t\t\t\t[-83.445802, 35.611803],\n\t\t\t\t\t\t[-83.366941, 35.638728],\n\t\t\t\t\t\t[-83.297154, 35.657750],\n\t\t\t\t\t\t[-83.254231, 35.695807],\n\t\t\t\t\t\t[-83.181894, 35.671127],\n\t\t\t\t\t\t[-83.186052, 35.514573],\n\t\t\t\t\t\t[-83.351373, 35.468354],\n\t\t\t\t\t\t[-83.339707, 35.331004],\n\t\t\t\t\t\t[-83.680043, 35.279414],\n\t\t\t\t\t\t[-83.585544, 35.434867],\n\t\t\t\t\t\t[-83.952676, 35.460763],\n\t\t\t\t\t\t[-83.933876, 35.472438],\n\t\t\t\t\t\t[-83.880074, 35.518745],\n\t\t\t\t\t\t[-83.756917, 35.563604],\n\t\t\t\t\t\t[-83.676268, 35.570289],\n\t\t\t\t\t\t[-83.662957, 35.569138]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37179\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"179\",\n\t\t\t\t\"NAME\": \"Union\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 631.520000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.561657, 34.817481],\n\t\t\t\t\t\t[-80.561674, 34.817481],\n\t\t\t\t\t\t[-80.621222, 34.818174],\n\t\t\t\t\t\t[-80.625993, 34.818239],\n\t\t\t\t\t\t[-80.626077, 34.818217],\n\t\t\t\t\t\t[-80.644656, 34.818568],\n\t\t\t\t\t\t[-80.646601, 34.818592],\n\t\t\t\t\t\t[-80.771792, 34.819646],\n\t\t\t\t\t\t[-80.777712, 34.819697],\n\t\t\t\t\t\t[-80.796750, 34.825281],\n\t\t\t\t\t\t[-80.782042, 34.935782],\n\t\t\t\t\t\t[-80.806461, 34.962894],\n\t\t\t\t\t\t[-80.806784, 34.963249],\n\t\t\t\t\t\t[-80.840461, 35.001566],\n\t\t\t\t\t\t[-80.770385, 35.034234],\n\t\t\t\t\t\t[-80.550297, 35.208381],\n\t\t\t\t\t\t[-80.506418, 35.185226],\n\t\t\t\t\t\t[-80.505334, 35.184048],\n\t\t\t\t\t\t[-80.482590, 35.180278],\n\t\t\t\t\t\t[-80.468247, 35.166815],\n\t\t\t\t\t\t[-80.438682, 35.161758],\n\t\t\t\t\t\t[-80.428251, 35.167347],\n\t\t\t\t\t\t[-80.277052, 35.196136],\n\t\t\t\t\t\t[-80.320413, 34.813813],\n\t\t\t\t\t\t[-80.399871, 34.815128],\n\t\t\t\t\t\t[-80.417014, 34.815508],\n\t\t\t\t\t\t[-80.418433, 34.815622],\n\t\t\t\t\t\t[-80.419586, 34.815581],\n\t\t\t\t\t\t[-80.425902, 34.815810],\n\t\t\t\t\t\t[-80.434843, 34.815968],\n\t\t\t\t\t\t[-80.448766, 34.816332],\n\t\t\t\t\t\t[-80.451660, 34.816396],\n\t\t\t\t\t\t[-80.485683, 34.816732],\n\t\t\t\t\t\t[-80.561657, 34.817481]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39059\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"059\",\n\t\t\t\t\"NAME\": \"Guernsey\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 522.254000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.694146, 39.842636],\n\t\t\t\t\t\t[-81.728611, 39.931728],\n\t\t\t\t\t\t[-81.716276, 40.152166],\n\t\t\t\t\t\t[-81.622683, 40.221308],\n\t\t\t\t\t\t[-81.338057, 40.214253],\n\t\t\t\t\t\t[-81.339565, 40.171999],\n\t\t\t\t\t\t[-81.225924, 40.170075],\n\t\t\t\t\t\t[-81.234053, 39.951270],\n\t\t\t\t\t\t[-81.386006, 39.950694],\n\t\t\t\t\t\t[-81.464108, 39.894550],\n\t\t\t\t\t\t[-81.578590, 39.897683],\n\t\t\t\t\t\t[-81.580313, 39.839104],\n\t\t\t\t\t\t[-81.694146, 39.842636]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39069\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"069\",\n\t\t\t\t\"NAME\": \"Henry\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 416.010000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.228222, 41.165862],\n\t\t\t\t\t\t[-84.228454, 41.427810],\n\t\t\t\t\t\t[-84.341664, 41.427568],\n\t\t\t\t\t\t[-84.341902, 41.485519],\n\t\t\t\t\t\t[-83.882943, 41.487543],\n\t\t\t\t\t\t[-83.883234, 41.414503],\n\t\t\t\t\t\t[-83.881149, 41.167824],\n\t\t\t\t\t\t[-84.228222, 41.165862]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39083\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"083\",\n\t\t\t\t\"NAME\": \"Knox\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 525.494000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.364344, 40.240957],\n\t\t\t\t\t\t[-82.476114, 40.264703],\n\t\t\t\t\t\t[-82.750747, 40.276996],\n\t\t\t\t\t\t[-82.750235, 40.284087],\n\t\t\t\t\t\t[-82.749896, 40.288636],\n\t\t\t\t\t\t[-82.744931, 40.349603],\n\t\t\t\t\t\t[-82.646503, 40.345076],\n\t\t\t\t\t\t[-82.623609, 40.549879],\n\t\t\t\t\t\t[-82.374898, 40.550871],\n\t\t\t\t\t\t[-82.336962, 40.555001],\n\t\t\t\t\t\t[-82.220110, 40.568206],\n\t\t\t\t\t\t[-82.179069, 40.573112],\n\t\t\t\t\t\t[-82.184607, 40.456280],\n\t\t\t\t\t\t[-82.184467, 40.454262],\n\t\t\t\t\t\t[-82.195911, 40.239071],\n\t\t\t\t\t\t[-82.326025, 40.239725],\n\t\t\t\t\t\t[-82.364344, 40.240957]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39091\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"091\",\n\t\t\t\t\"NAME\": \"Logan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 458.429000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.551338, 40.229370],\n\t\t\t\t\t\t[-84.014763, 40.273459],\n\t\t\t\t\t\t[-84.002372, 40.483115],\n\t\t\t\t\t\t[-83.993867, 40.535174],\n\t\t\t\t\t\t[-83.879932, 40.538708],\n\t\t\t\t\t\t[-83.520227, 40.504077],\n\t\t\t\t\t\t[-83.551338, 40.229370]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39103\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"103\",\n\t\t\t\t\"NAME\": \"Medina\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 421.358000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.973895, 41.199831],\n\t\t\t\t\t\t[-81.972485, 41.274829],\n\t\t\t\t\t\t[-81.927005, 41.274818],\n\t\t\t\t\t\t[-81.920513, 41.275379],\n\t\t\t\t\t\t[-81.914792, 41.275469],\n\t\t\t\t\t\t[-81.906227, 41.275392],\n\t\t\t\t\t\t[-81.897853, 41.274916],\n\t\t\t\t\t\t[-81.878053, 41.275044],\n\t\t\t\t\t\t[-81.684950, 41.277146],\n\t\t\t\t\t\t[-81.685646, 41.202132],\n\t\t\t\t\t\t[-81.688491, 40.988590],\n\t\t\t\t\t\t[-82.129334, 40.991807],\n\t\t\t\t\t\t[-82.173359, 40.992046],\n\t\t\t\t\t\t[-82.171492, 41.063537],\n\t\t\t\t\t\t[-82.169875, 41.137102],\n\t\t\t\t\t\t[-82.074266, 41.136456],\n\t\t\t\t\t\t[-82.072465, 41.199850],\n\t\t\t\t\t\t[-81.973895, 41.199831]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39115\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"115\",\n\t\t\t\t\"NAME\": \"Morgan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 416.423000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.844863, 39.450216],\n\t\t\t\t\t\t[-82.055779, 39.460053],\n\t\t\t\t\t\t[-82.047528, 39.550825],\n\t\t\t\t\t\t[-82.024219, 39.724686],\n\t\t\t\t\t\t[-82.076639, 39.770960],\n\t\t\t\t\t\t[-81.697442, 39.755572],\n\t\t\t\t\t\t[-81.639886, 39.753420],\n\t\t\t\t\t\t[-81.643200, 39.665681],\n\t\t\t\t\t\t[-81.586132, 39.663993],\n\t\t\t\t\t\t[-81.588185, 39.586973],\n\t\t\t\t\t\t[-81.714447, 39.584236],\n\t\t\t\t\t\t[-81.708527, 39.480775],\n\t\t\t\t\t\t[-81.823158, 39.494072],\n\t\t\t\t\t\t[-81.844863, 39.450216]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39127\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"127\",\n\t\t\t\t\"NAME\": \"Perry\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 407.971000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.076639, 39.770960],\n\t\t\t\t\t\t[-82.024219, 39.724686],\n\t\t\t\t\t\t[-82.047528, 39.550825],\n\t\t\t\t\t\t[-82.159161, 39.556574],\n\t\t\t\t\t\t[-82.379890, 39.596738],\n\t\t\t\t\t\t[-82.374531, 39.654959],\n\t\t\t\t\t\t[-82.396594, 39.833057],\n\t\t\t\t\t\t[-82.472402, 39.837223],\n\t\t\t\t\t\t[-82.462813, 39.930380],\n\t\t\t\t\t\t[-82.233974, 39.913260],\n\t\t\t\t\t\t[-82.162372, 39.909374],\n\t\t\t\t\t\t[-82.170047, 39.820750],\n\t\t\t\t\t\t[-82.072934, 39.816227],\n\t\t\t\t\t\t[-82.076639, 39.770960]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39137\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"137\",\n\t\t\t\t\"NAME\": \"Putnam\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 482.522000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.341602, 41.165524],\n\t\t\t\t\t\t[-84.228222, 41.165862],\n\t\t\t\t\t\t[-83.881149, 41.167824],\n\t\t\t\t\t\t[-83.880423, 40.920429],\n\t\t\t\t\t\t[-84.109516, 40.904730],\n\t\t\t\t\t\t[-84.109586, 40.860994],\n\t\t\t\t\t\t[-84.340531, 40.859099],\n\t\t\t\t\t\t[-84.398407, 40.903265],\n\t\t\t\t\t\t[-84.399486, 40.990315],\n\t\t\t\t\t\t[-84.341911, 40.990692],\n\t\t\t\t\t\t[-84.341602, 41.165524]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39153\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"153\",\n\t\t\t\t\"NAME\": \"Summit\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 412.748000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.590542, 41.277554],\n\t\t\t\t\t\t[-81.598061, 41.350913],\n\t\t\t\t\t\t[-81.592653, 41.351119],\n\t\t\t\t\t\t[-81.450331, 41.349148],\n\t\t\t\t\t\t[-81.399585, 41.348573],\n\t\t\t\t\t\t[-81.391694, 41.348272],\n\t\t\t\t\t\t[-81.391686, 41.341300],\n\t\t\t\t\t\t[-81.391933, 41.336635],\n\t\t\t\t\t\t[-81.391593, 41.331550],\n\t\t\t\t\t\t[-81.391831, 41.276654],\n\t\t\t\t\t\t[-81.392357, 41.136952],\n\t\t\t\t\t\t[-81.392114, 41.135722],\n\t\t\t\t\t\t[-81.393429, 40.988528],\n\t\t\t\t\t\t[-81.420418, 40.906504],\n\t\t\t\t\t\t[-81.467584, 40.907965],\n\t\t\t\t\t\t[-81.645950, 40.914257],\n\t\t\t\t\t\t[-81.647736, 40.914386],\n\t\t\t\t\t\t[-81.688491, 40.988590],\n\t\t\t\t\t\t[-81.685646, 41.202132],\n\t\t\t\t\t\t[-81.684950, 41.277146],\n\t\t\t\t\t\t[-81.590542, 41.277554]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39165\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"165\",\n\t\t\t\t\"NAME\": \"Warren\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 401.314000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.988613, 39.444397],\n\t\t\t\t\t\t[-84.006782, 39.255068],\n\t\t\t\t\t\t[-84.259431, 39.270796],\n\t\t\t\t\t\t[-84.353209, 39.292287],\n\t\t\t\t\t\t[-84.348199, 39.348512],\n\t\t\t\t\t\t[-84.332089, 39.548803],\n\t\t\t\t\t\t[-84.365232, 39.589493],\n\t\t\t\t\t\t[-84.187334, 39.583081],\n\t\t\t\t\t\t[-84.114195, 39.577983],\n\t\t\t\t\t\t[-83.977005, 39.569169],\n\t\t\t\t\t\t[-83.988613, 39.444397]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40005\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"005\",\n\t\t\t\t\"NAME\": \"Atoka\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 975.517000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.671976, 34.593852],\n\t\t\t\t\t\t[-95.671700, 34.506799],\n\t\t\t\t\t\t[-95.779425, 34.506556],\n\t\t\t\t\t\t[-95.779376, 34.156699],\n\t\t\t\t\t\t[-95.991578, 34.156815],\n\t\t\t\t\t\t[-96.407640, 34.157317],\n\t\t\t\t\t\t[-96.407330, 34.418391],\n\t\t\t\t\t\t[-96.145096, 34.418677],\n\t\t\t\t\t\t[-96.145342, 34.506102],\n\t\t\t\t\t\t[-96.091873, 34.506155],\n\t\t\t\t\t\t[-96.092043, 34.680556],\n\t\t\t\t\t\t[-95.882103, 34.680475],\n\t\t\t\t\t\t[-95.881987, 34.593528],\n\t\t\t\t\t\t[-95.671976, 34.593852]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40015\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"015\",\n\t\t\t\t\"NAME\": \"Caddo\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1278.289000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.619816, 34.854953],\n\t\t\t\t\t\t[-98.621054, 35.097352],\n\t\t\t\t\t\t[-98.623336, 35.464225],\n\t\t\t\t\t\t[-98.623149, 35.551597],\n\t\t\t\t\t\t[-98.313251, 35.551523],\n\t\t\t\t\t\t[-98.306326, 35.377239],\n\t\t\t\t\t\t[-98.096014, 35.377753],\n\t\t\t\t\t\t[-98.092645, 34.854919],\n\t\t\t\t\t\t[-98.619816, 34.854953]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40027\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"027\",\n\t\t\t\t\"NAME\": \"Cleveland\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 538.766000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.671369, 35.377151],\n\t\t\t\t\t\t[-97.423566, 35.377316],\n\t\t\t\t\t\t[-97.264992, 35.377368],\n\t\t\t\t\t\t[-97.142114, 35.376860],\n\t\t\t\t\t\t[-97.142349, 34.928176],\n\t\t\t\t\t\t[-97.341509, 34.964001],\n\t\t\t\t\t\t[-97.354192, 35.076656],\n\t\t\t\t\t\t[-97.541460, 35.214165],\n\t\t\t\t\t\t[-97.556987, 35.288440],\n\t\t\t\t\t\t[-97.671529, 35.337508],\n\t\t\t\t\t\t[-97.671369, 35.377151]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US53011\",\n\t\t\t\t\"STATE\": \"53\",\n\t\t\t\t\"COUNTY\": \"011\",\n\t\t\t\t\"NAME\": \"Clark\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 629.004000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-122.245633, 46.053932],\n\t\t\t\t\t\t[-122.248993, 45.547745],\n\t\t\t\t\t\t[-122.266701, 45.543841],\n\t\t\t\t\t\t[-122.294901, 45.543541],\n\t\t\t\t\t\t[-122.331502, 45.548241],\n\t\t\t\t\t\t[-122.352802, 45.569441],\n\t\t\t\t\t\t[-122.380302, 45.575941],\n\t\t\t\t\t\t[-122.492259, 45.583281],\n\t\t\t\t\t\t[-122.643907, 45.609739],\n\t\t\t\t\t\t[-122.675008, 45.618039],\n\t\t\t\t\t\t[-122.738109, 45.644138],\n\t\t\t\t\t\t[-122.763810, 45.657138],\n\t\t\t\t\t\t[-122.774511, 45.680437],\n\t\t\t\t\t\t[-122.772511, 45.699637],\n\t\t\t\t\t\t[-122.762182, 45.728598],\n\t\t\t\t\t\t[-122.760108, 45.734413],\n\t\t\t\t\t\t[-122.761451, 45.759163],\n\t\t\t\t\t\t[-122.769532, 45.780583],\n\t\t\t\t\t\t[-122.795605, 45.810000],\n\t\t\t\t\t\t[-122.795963, 45.825024],\n\t\t\t\t\t\t[-122.785515, 45.850536],\n\t\t\t\t\t\t[-122.738996, 45.915287],\n\t\t\t\t\t\t[-122.477104, 45.988089],\n\t\t\t\t\t\t[-122.357765, 45.956915],\n\t\t\t\t\t\t[-122.245633, 46.053932]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US53035\",\n\t\t\t\t\"STATE\": \"53\",\n\t\t\t\t\"COUNTY\": \"035\",\n\t\t\t\t\"NAME\": \"Kitsap\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 394.941000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-122.749199, 47.741063],\n\t\t\t\t\t\t[-122.740159, 47.736228],\n\t\t\t\t\t\t[-122.733012, 47.737625],\n\t\t\t\t\t\t[-122.722686, 47.748827],\n\t\t\t\t\t\t[-122.719712, 47.760976],\n\t\t\t\t\t\t[-122.714801, 47.768176],\n\t\t\t\t\t\t[-122.690562, 47.778372],\n\t\t\t\t\t\t[-122.684085, 47.798574],\n\t\t\t\t\t\t[-122.682015, 47.800882],\n\t\t\t\t\t\t[-122.648108, 47.825123],\n\t\t\t\t\t\t[-122.623192, 47.836199],\n\t\t\t\t\t\t[-122.614585, 47.850806],\n\t\t\t\t\t\t[-122.608105, 47.856728],\n\t\t\t\t\t\t[-122.573672, 47.857582],\n\t\t\t\t\t\t[-122.573098, 47.874081],\n\t\t\t\t\t\t[-122.586339, 47.902023],\n\t\t\t\t\t\t[-122.588235, 47.912923],\n\t\t\t\t\t\t[-122.596228, 47.920210],\n\t\t\t\t\t\t[-122.616701, 47.925139],\n\t\t\t\t\t\t[-122.620316, 47.931553],\n\t\t\t\t\t\t[-122.617022, 47.938987],\n\t\t\t\t\t\t[-122.611956, 47.940772],\n\t\t\t\t\t\t[-122.603861, 47.940478],\n\t\t\t\t\t\t[-122.601507, 47.931726],\n\t\t\t\t\t\t[-122.592184, 47.922519],\n\t\t\t\t\t\t[-122.581846, 47.920282],\n\t\t\t\t\t\t[-122.549072, 47.919072],\n\t\t\t\t\t\t[-122.527593, 47.905882],\n\t\t\t\t\t\t[-122.513986, 47.880807],\n\t\t\t\t\t\t[-122.512778, 47.863879],\n\t\t\t\t\t\t[-122.506122, 47.831745],\n\t\t\t\t\t\t[-122.502224, 47.826395],\n\t\t\t\t\t\t[-122.482529, 47.815511],\n\t\t\t\t\t\t[-122.482437, 47.809255],\n\t\t\t\t\t\t[-122.485214, 47.804128],\n\t\t\t\t\t\t[-122.495346, 47.797040],\n\t\t\t\t\t\t[-122.495458, 47.786692],\n\t\t\t\t\t\t[-122.471402, 47.765965],\n\t\t\t\t\t\t[-122.470333, 47.757109],\n\t\t\t\t\t\t[-122.471844, 47.749819],\n\t\t\t\t\t\t[-122.477344, 47.746019],\n\t\t\t\t\t\t[-122.488491, 47.743605],\n\t\t\t\t\t\t[-122.507638, 47.743040],\n\t\t\t\t\t\t[-122.515193, 47.743911],\n\t\t\t\t\t\t[-122.519325, 47.746220],\n\t\t\t\t\t\t[-122.537318, 47.747140],\n\t\t\t\t\t\t[-122.554454, 47.745704],\n\t\t\t\t\t\t[-122.543161, 47.710941],\n\t\t\t\t\t\t[-122.530940, 47.704814],\n\t\t\t\t\t\t[-122.525851, 47.705095],\n\t\t\t\t\t\t[-122.523962, 47.708034],\n\t\t\t\t\t\t[-122.511196, 47.708715],\n\t\t\t\t\t\t[-122.504604, 47.699136],\n\t\t\t\t\t\t[-122.504452, 47.685888],\n\t\t\t\t\t\t[-122.508709, 47.670843],\n\t\t\t\t\t\t[-122.518277, 47.651320],\n\t\t\t\t\t\t[-122.502116, 47.639074],\n\t\t\t\t\t\t[-122.493205, 47.635122],\n\t\t\t\t\t\t[-122.492809, 47.629591],\n\t\t\t\t\t\t[-122.494518, 47.623625],\n\t\t\t\t\t\t[-122.500357, 47.617816],\n\t\t\t\t\t\t[-122.498240, 47.598242],\n\t\t\t\t\t\t[-122.493933, 47.588963],\n\t\t\t\t\t\t[-122.483805, 47.586721],\n\t\t\t\t\t\t[-122.479089, 47.583654],\n\t\t\t\t\t\t[-122.503672, 47.575178],\n\t\t\t\t\t\t[-122.518367, 47.574080],\n\t\t\t\t\t\t[-122.529915, 47.568441],\n\t\t\t\t\t\t[-122.534664, 47.566122],\n\t\t\t\t\t\t[-122.543118, 47.556326],\n\t\t\t\t\t\t[-122.542355, 47.537840],\n\t\t\t\t\t\t[-122.547207, 47.528257],\n\t\t\t\t\t\t[-122.546611, 47.523550],\n\t\t\t\t\t\t[-122.532909, 47.522184],\n\t\t\t\t\t\t[-122.523050, 47.524000],\n\t\t\t\t\t\t[-122.500543, 47.515280],\n\t\t\t\t\t\t[-122.494882, 47.510265],\n\t\t\t\t\t\t[-122.484993, 47.512731],\n\t\t\t\t\t\t[-122.536720, 47.402990],\n\t\t\t\t\t\t[-122.801451, 47.404016],\n\t\t\t\t\t\t[-122.800150, 47.520165],\n\t\t\t\t\t\t[-122.872192, 47.521495],\n\t\t\t\t\t\t[-123.037766, 47.520214],\n\t\t\t\t\t\t[-122.950473, 47.606266],\n\t\t\t\t\t\t[-122.783237, 47.672754],\n\t\t\t\t\t\t[-122.749199, 47.741063]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55053\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"053\",\n\t\t\t\t\"NAME\": \"Jackson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 987.720000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.151843, 44.079656],\n\t\t\t\t\t\t[-91.165786, 44.247429],\n\t\t\t\t\t\t[-91.165619, 44.596987],\n\t\t\t\t\t\t[-90.922350, 44.596293],\n\t\t\t\t\t\t[-90.923104, 44.509838],\n\t\t\t\t\t\t[-90.801852, 44.509573],\n\t\t\t\t\t\t[-90.801904, 44.422347],\n\t\t\t\t\t\t[-90.316050, 44.424673],\n\t\t\t\t\t\t[-90.312035, 44.248758],\n\t\t\t\t\t\t[-90.312570, 44.240933],\n\t\t\t\t\t\t[-90.312575, 44.155284],\n\t\t\t\t\t\t[-90.906152, 44.158316],\n\t\t\t\t\t\t[-90.972764, 44.070775],\n\t\t\t\t\t\t[-91.151843, 44.079656]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55067\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"067\",\n\t\t\t\t\"NAME\": \"Langlade\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 870.640000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.981680, 45.028917],\n\t\t\t\t\t\t[-89.102069, 45.029499],\n\t\t\t\t\t\t[-89.223814, 45.029246],\n\t\t\t\t\t\t[-89.224214, 45.118567],\n\t\t\t\t\t\t[-89.425971, 45.119098],\n\t\t\t\t\t\t[-89.424824, 45.467257],\n\t\t\t\t\t\t[-89.364049, 45.469886],\n\t\t\t\t\t\t[-89.046315, 45.464762],\n\t\t\t\t\t\t[-88.923062, 45.465137],\n\t\t\t\t\t\t[-88.926025, 45.378637],\n\t\t\t\t\t\t[-88.677826, 45.378682],\n\t\t\t\t\t\t[-88.680066, 45.204994],\n\t\t\t\t\t\t[-88.641159, 45.117346],\n\t\t\t\t\t\t[-88.982176, 45.117733],\n\t\t\t\t\t\t[-88.981680, 45.028917]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55078\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"078\",\n\t\t\t\t\"NAME\": \"Menominee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 357.608000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.641159, 45.117346],\n\t\t\t\t\t\t[-88.483732, 45.116887],\n\t\t\t\t\t\t[-88.489149, 44.855445],\n\t\t\t\t\t\t[-88.736194, 44.856376],\n\t\t\t\t\t\t[-88.735548, 44.943178],\n\t\t\t\t\t\t[-88.981432, 44.942841],\n\t\t\t\t\t\t[-88.981680, 45.028917],\n\t\t\t\t\t\t[-88.982176, 45.117733],\n\t\t\t\t\t\t[-88.641159, 45.117346]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55087\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"087\",\n\t\t\t\t\"NAME\": \"Outagamie\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 637.523000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.346334, 44.243718],\n\t\t\t\t\t\t[-88.351301, 44.243768],\n\t\t\t\t\t\t[-88.354532, 44.243863],\n\t\t\t\t\t\t[-88.404070, 44.244102],\n\t\t\t\t\t\t[-88.739770, 44.243303],\n\t\t\t\t\t\t[-88.736802, 44.590605],\n\t\t\t\t\t\t[-88.606083, 44.590515],\n\t\t\t\t\t\t[-88.577163, 44.590630],\n\t\t\t\t\t\t[-88.245204, 44.584746],\n\t\t\t\t\t\t[-88.190603, 44.586791],\n\t\t\t\t\t\t[-88.192611, 44.241947],\n\t\t\t\t\t\t[-88.303974, 44.243335],\n\t\t\t\t\t\t[-88.346334, 44.243718]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55099\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"099\",\n\t\t\t\t\"NAME\": \"Price\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1254.376000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.043309, 45.730053],\n\t\t\t\t\t\t[-90.043414, 45.555082],\n\t\t\t\t\t\t[-90.042273, 45.381866],\n\t\t\t\t\t\t[-90.678739, 45.377770],\n\t\t\t\t\t\t[-90.678749, 45.638264],\n\t\t\t\t\t\t[-90.676968, 45.981554],\n\t\t\t\t\t\t[-90.302063, 45.981349],\n\t\t\t\t\t\t[-90.043958, 45.981948],\n\t\t\t\t\t\t[-90.042854, 45.897151],\n\t\t\t\t\t\t[-90.044358, 45.749992],\n\t\t\t\t\t\t[-90.043309, 45.730053]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55109\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"109\",\n\t\t\t\t\"NAME\": \"St. Croix\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 722.329000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.765898, 45.210173],\n\t\t\t\t\t\t[-92.156465, 45.209554],\n\t\t\t\t\t\t[-92.136113, 45.121432],\n\t\t\t\t\t\t[-92.136348, 44.857848],\n\t\t\t\t\t\t[-92.761677, 44.862022],\n\t\t\t\t\t\t[-92.750645, 44.937299],\n\t\t\t\t\t\t[-92.768606, 45.008016],\n\t\t\t\t\t\t[-92.791206, 45.045698],\n\t\t\t\t\t\t[-92.792875, 45.078489],\n\t\t\t\t\t\t[-92.767130, 45.194165],\n\t\t\t\t\t\t[-92.765898, 45.210173]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55121\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"121\",\n\t\t\t\t\"NAME\": \"Trempealeau\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 732.965000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.165619, 44.596987],\n\t\t\t\t\t\t[-91.165786, 44.247429],\n\t\t\t\t\t\t[-91.151843, 44.079656],\n\t\t\t\t\t\t[-91.337329, 44.037499],\n\t\t\t\t\t\t[-91.322143, 43.984462],\n\t\t\t\t\t\t[-91.420114, 43.984243],\n\t\t\t\t\t\t[-91.432522, 43.996827],\n\t\t\t\t\t\t[-91.437380, 43.999962],\n\t\t\t\t\t\t[-91.463515, 44.009041],\n\t\t\t\t\t\t[-91.505918, 44.018651],\n\t\t\t\t\t\t[-91.547028, 44.022226],\n\t\t\t\t\t\t[-91.559197, 44.023959],\n\t\t\t\t\t\t[-91.534229, 44.096046],\n\t\t\t\t\t\t[-91.612994, 44.172606],\n\t\t\t\t\t\t[-91.529741, 44.246777],\n\t\t\t\t\t\t[-91.529101, 44.596197],\n\t\t\t\t\t\t[-91.165619, 44.596987]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55135\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"135\",\n\t\t\t\t\"NAME\": \"Waupaca\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 747.713000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.606083, 44.590515],\n\t\t\t\t\t\t[-88.736802, 44.590605],\n\t\t\t\t\t\t[-88.739770, 44.243303],\n\t\t\t\t\t\t[-88.886673, 44.242622],\n\t\t\t\t\t\t[-89.224892, 44.243546],\n\t\t\t\t\t\t[-89.223745, 44.681365],\n\t\t\t\t\t\t[-88.605159, 44.678331],\n\t\t\t\t\t\t[-88.606083, 44.590515]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US56005\",\n\t\t\t\t\"STATE\": \"56\",\n\t\t\t\t\"COUNTY\": \"005\",\n\t\t\t\t\"NAME\": \"Campbell\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 4802.709000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-105.076607, 45.000347],\n\t\t\t\t\t\t[-105.082181, 44.176175],\n\t\t\t\t\t\t[-105.079281, 44.176182],\n\t\t\t\t\t\t[-105.079797, 43.498445],\n\t\t\t\t\t\t[-106.017366, 43.494969],\n\t\t\t\t\t\t[-106.009201, 43.821579],\n\t\t\t\t\t\t[-106.016504, 44.169729],\n\t\t\t\t\t\t[-106.009676, 44.563981],\n\t\t\t\t\t\t[-106.024814, 44.993688],\n\t\t\t\t\t\t[-105.928184, 44.993647],\n\t\t\t\t\t\t[-105.918995, 44.997771],\n\t\t\t\t\t\t[-105.848065, 45.000396],\n\t\t\t\t\t\t[-105.076607, 45.000347]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US56015\",\n\t\t\t\t\"STATE\": \"56\",\n\t\t\t\t\"COUNTY\": \"015\",\n\t\t\t\t\"NAME\": \"Goshen\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2225.391000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-104.052774, 41.733401],\n\t\t\t\t\t\t[-104.052830, 41.697954],\n\t\t\t\t\t\t[-104.052913, 41.645190],\n\t\t\t\t\t\t[-104.052945, 41.638167],\n\t\t\t\t\t\t[-104.052975, 41.622931],\n\t\t\t\t\t\t[-104.052735, 41.613676],\n\t\t\t\t\t\t[-104.052859, 41.592254],\n\t\t\t\t\t\t[-104.052540, 41.564274],\n\t\t\t\t\t\t[-104.652992, 41.565014],\n\t\t\t\t\t\t[-104.653338, 41.653007],\n\t\t\t\t\t\t[-104.655027, 42.216785],\n\t\t\t\t\t\t[-104.655639, 42.609468],\n\t\t\t\t\t\t[-104.612350, 42.608805],\n\t\t\t\t\t\t[-104.052773, 42.611766],\n\t\t\t\t\t\t[-104.052775, 42.611590],\n\t\t\t\t\t\t[-104.052775, 42.610813],\n\t\t\t\t\t\t[-104.052776, 42.258220],\n\t\t\t\t\t\t[-104.052793, 42.249962],\n\t\t\t\t\t\t[-104.052761, 42.170278],\n\t\t\t\t\t\t[-104.052547, 42.166801],\n\t\t\t\t\t\t[-104.053001, 42.137254],\n\t\t\t\t\t\t[-104.052738, 42.133769],\n\t\t\t\t\t\t[-104.052600, 42.124963],\n\t\t\t\t\t\t[-104.052954, 42.089077],\n\t\t\t\t\t\t[-104.052967, 42.075004],\n\t\t\t\t\t\t[-104.052880, 42.021761],\n\t\t\t\t\t\t[-104.052729, 42.016318],\n\t\t\t\t\t\t[-104.052704, 42.001718],\n\t\t\t\t\t\t[-104.052699, 41.998673],\n\t\t\t\t\t\t[-104.052761, 41.994967],\n\t\t\t\t\t\t[-104.052830, 41.994600],\n\t\t\t\t\t\t[-104.052856, 41.975958],\n\t\t\t\t\t\t[-104.052734, 41.973007],\n\t\t\t\t\t\t[-104.052991, 41.914973],\n\t\t\t\t\t\t[-104.052931, 41.906143],\n\t\t\t\t\t\t[-104.053026, 41.885464],\n\t\t\t\t\t\t[-104.052774, 41.733401]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US56041\",\n\t\t\t\t\"STATE\": \"56\",\n\t\t\t\t\"COUNTY\": \"041\",\n\t\t\t\t\"NAME\": \"Uinta\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2081.264000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-111.046402, 41.579845],\n\t\t\t\t\t\t[-110.062787, 41.577519],\n\t\t\t\t\t\t[-110.048000, 41.578015],\n\t\t\t\t\t\t[-110.048474, 40.997103],\n\t\t\t\t\t\t[-110.500718, 40.994746],\n\t\t\t\t\t\t[-111.046723, 40.997959],\n\t\t\t\t\t\t[-111.046551, 41.251716],\n\t\t\t\t\t\t[-111.046600, 41.360692],\n\t\t\t\t\t\t[-111.046264, 41.377731],\n\t\t\t\t\t\t[-111.046402, 41.579845]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01127\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"127\",\n\t\t\t\t\"NAME\": \"Walker\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 791.192000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.423701, 33.602096],\n\t\t\t\t\t\t[-87.423843, 33.689112],\n\t\t\t\t\t\t[-87.528338, 33.692049],\n\t\t\t\t\t\t[-87.531602, 33.867618],\n\t\t\t\t\t\t[-87.636040, 33.871999],\n\t\t\t\t\t\t[-87.635932, 33.915251],\n\t\t\t\t\t\t[-87.636118, 34.002203],\n\t\t\t\t\t\t[-87.151036, 33.993225],\n\t\t\t\t\t\t[-87.091836, 33.890093],\n\t\t\t\t\t\t[-86.963358, 33.858221],\n\t\t\t\t\t\t[-86.962960, 33.844865],\n\t\t\t\t\t\t[-86.954305, 33.844862],\n\t\t\t\t\t\t[-86.953664, 33.815297],\n\t\t\t\t\t\t[-87.005965, 33.787237],\n\t\t\t\t\t\t[-87.057757, 33.656363],\n\t\t\t\t\t\t[-87.179430, 33.613794],\n\t\t\t\t\t\t[-87.185794, 33.555882],\n\t\t\t\t\t\t[-87.266923, 33.512929],\n\t\t\t\t\t\t[-87.318532, 33.587393],\n\t\t\t\t\t\t[-87.423701, 33.602096]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01133\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"133\",\n\t\t\t\t\"NAME\": \"Winston\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 612.979000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.634725, 34.306997],\n\t\t\t\t\t\t[-87.529722, 34.304598],\n\t\t\t\t\t\t[-87.109911, 34.299299],\n\t\t\t\t\t\t[-87.111992, 33.992385],\n\t\t\t\t\t\t[-87.151036, 33.993225],\n\t\t\t\t\t\t[-87.636118, 34.002203],\n\t\t\t\t\t\t[-87.634725, 34.306997]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US02016\",\n\t\t\t\t\"STATE\": \"02\",\n\t\t\t\t\"COUNTY\": \"016\",\n\t\t\t\t\"NAME\": \"Aleutians West\",\n\t\t\t\t\"LSAD\": \"CA\",\n\t\t\t\t\"CENSUSAREA\": 4390.276000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-179.069176, 51.262874],\n\t\t\t\t\t\t\t[-179.072320, 51.250963],\n\t\t\t\t\t\t\t[-179.097619, 51.226135],\n\t\t\t\t\t\t\t[-179.126856, 51.219862],\n\t\t\t\t\t\t\t[-179.136196, 51.229216],\n\t\t\t\t\t\t\t[-179.147340, 51.276781],\n\t\t\t\t\t\t\t[-179.137239, 51.286006],\n\t\t\t\t\t\t\t[-179.113495, 51.300801],\n\t\t\t\t\t\t\t[-179.094665, 51.301229],\n\t\t\t\t\t\t\t[-179.075466, 51.284619],\n\t\t\t\t\t\t\t[-179.069176, 51.262874]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-178.954338, 51.339247],\n\t\t\t\t\t\t\t[-178.954460, 51.332731],\n\t\t\t\t\t\t\t[-178.965171, 51.322682],\n\t\t\t\t\t\t\t[-178.979179, 51.314380],\n\t\t\t\t\t\t\t[-178.987236, 51.311038],\n\t\t\t\t\t\t\t[-178.990684, 51.311648],\n\t\t\t\t\t\t\t[-178.992094, 51.381311],\n\t\t\t\t\t\t\t[-178.977782, 51.398929],\n\t\t\t\t\t\t\t[-178.964323, 51.402492],\n\t\t\t\t\t\t\t[-178.926874, 51.383640],\n\t\t\t\t\t\t\t[-178.914207, 51.363992],\n\t\t\t\t\t\t\t[-178.908883, 51.340582],\n\t\t\t\t\t\t\t[-178.954338, 51.339247]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[178.785825, 51.633434],\n\t\t\t\t\t\t\t[178.804128, 51.635034],\n\t\t\t\t\t\t\t[178.864937, 51.623133],\n\t\t\t\t\t\t\t[178.903910, 51.614914],\n\t\t\t\t\t\t\t[178.919136, 51.605546],\n\t\t\t\t\t\t\t[178.917608, 51.594949],\n\t\t\t\t\t\t\t[178.918827, 51.588337],\n\t\t\t\t\t\t\t[178.920826, 51.586137],\n\t\t\t\t\t\t\t[179.002896, 51.552486],\n\t\t\t\t\t\t\t[179.076803, 51.498518],\n\t\t\t\t\t\t\t[179.101442, 51.485497],\n\t\t\t\t\t\t\t[179.143656, 51.469442],\n\t\t\t\t\t\t\t[179.164531, 51.464635],\n\t\t\t\t\t\t\t[179.178081, 51.464812],\n\t\t\t\t\t\t\t[179.191082, 51.462935],\n\t\t\t\t\t\t\t[179.218031, 51.438940],\n\t\t\t\t\t\t\t[179.226883, 51.423941],\n\t\t\t\t\t\t\t[179.230270, 51.413419],\n\t\t\t\t\t\t\t[179.236253, 51.409606],\n\t\t\t\t\t\t\t[179.263934, 51.405838],\n\t\t\t\t\t\t\t[179.334980, 51.404933],\n\t\t\t\t\t\t\t[179.386221, 51.404401],\n\t\t\t\t\t\t\t[179.400809, 51.400557],\n\t\t\t\t\t\t\t[179.462765, 51.376176],\n\t\t\t\t\t\t\t[179.467581, 51.371629],\n\t\t\t\t\t\t\t[179.450191, 51.365142],\n\t\t\t\t\t\t\t[179.399469, 51.359433],\n\t\t\t\t\t\t\t[179.389855, 51.361004],\n\t\t\t\t\t\t\t[179.384679, 51.364210],\n\t\t\t\t\t\t\t[179.366788, 51.371837],\n\t\t\t\t\t\t\t[179.261618, 51.357688],\n\t\t\t\t\t\t\t[179.220471, 51.376667],\n\t\t\t\t\t\t\t[179.218185, 51.387377],\n\t\t\t\t\t\t\t[179.206500, 51.393284],\n\t\t\t\t\t\t\t[179.097477, 51.440580],\n\t\t\t\t\t\t\t[179.060354, 51.454875],\n\t\t\t\t\t\t\t[179.034532, 51.478530],\n\t\t\t\t\t\t\t[179.013516, 51.497280],\n\t\t\t\t\t\t\t[178.969019, 51.531237],\n\t\t\t\t\t\t\t[178.951626, 51.541963],\n\t\t\t\t\t\t\t[178.843631, 51.578642],\n\t\t\t\t\t\t\t[178.831825, 51.580534],\n\t\t\t\t\t\t\t[178.795194, 51.575429],\n\t\t\t\t\t\t\t[178.785061, 51.571866],\n\t\t\t\t\t\t\t[178.767787, 51.576123],\n\t\t\t\t\t\t\t[178.706047, 51.593182],\n\t\t\t\t\t\t\t[178.634021, 51.623981],\n\t\t\t\t\t\t\t[178.631609, 51.625782],\n\t\t\t\t\t\t\t[178.625536, 51.637303],\n\t\t\t\t\t\t\t[178.645511, 51.657634],\n\t\t\t\t\t\t\t[178.664013, 51.661935],\n\t\t\t\t\t\t\t[178.675528, 51.659064],\n\t\t\t\t\t\t\t[178.681998, 51.649946],\n\t\t\t\t\t\t\t[178.689903, 51.644422],\n\t\t\t\t\t\t\t[178.738019, 51.632734],\n\t\t\t\t\t\t\t[178.785825, 51.633434]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-176.762478, 51.867878],\n\t\t\t\t\t\t\t[-176.797799, 51.908512],\n\t\t\t\t\t\t\t[-176.810433, 51.927089],\n\t\t\t\t\t\t\t[-176.789558, 51.957211],\n\t\t\t\t\t\t\t[-176.774023, 51.965895],\n\t\t\t\t\t\t\t[-176.736549, 51.969808],\n\t\t\t\t\t\t\t[-176.720780, 51.969518],\n\t\t\t\t\t\t\t[-176.698771, 51.964454],\n\t\t\t\t\t\t\t[-176.630510, 51.970352],\n\t\t\t\t\t\t\t[-176.627155, 51.978294],\n\t\t\t\t\t\t\t[-176.603598, 51.997056],\n\t\t\t\t\t\t\t[-176.589955, 52.002741],\n\t\t\t\t\t\t\t[-176.579975, 52.003238],\n\t\t\t\t\t\t\t[-176.560565, 51.996732],\n\t\t\t\t\t\t\t[-176.554398, 51.990660],\n\t\t\t\t\t\t\t[-176.544867, 51.927245],\n\t\t\t\t\t\t\t[-176.554661, 51.909834],\n\t\t\t\t\t\t\t[-176.558376, 51.908725],\n\t\t\t\t\t\t\t[-176.566275, 51.914702],\n\t\t\t\t\t\t\t[-176.568916, 51.921300],\n\t\t\t\t\t\t\t[-176.565559, 51.925862],\n\t\t\t\t\t\t\t[-176.569683, 51.951324],\n\t\t\t\t\t\t\t[-176.575635, 51.952641],\n\t\t\t\t\t\t\t[-176.578931, 51.951328],\n\t\t\t\t\t\t\t[-176.582927, 51.947964],\n\t\t\t\t\t\t\t[-176.616095, 51.903013],\n\t\t\t\t\t\t\t[-176.620015, 51.895630],\n\t\t\t\t\t\t\t[-176.623452, 51.883205],\n\t\t\t\t\t\t\t[-176.625463, 51.859824],\n\t\t\t\t\t\t\t[-176.576381, 51.842275],\n\t\t\t\t\t\t\t[-176.543309, 51.838624],\n\t\t\t\t\t\t\t[-176.517599, 51.839557],\n\t\t\t\t\t\t\t[-176.507989, 51.845970],\n\t\t\t\t\t\t\t[-176.398062, 51.867842],\n\t\t\t\t\t\t\t[-176.311573, 51.872463],\n\t\t\t\t\t\t\t[-176.290728, 51.872136],\n\t\t\t\t\t\t\t[-176.287188, 51.870313],\n\t\t\t\t\t\t\t[-176.281694, 51.863919],\n\t\t\t\t\t\t\t[-176.266490, 51.817716],\n\t\t\t\t\t\t\t[-176.268243, 51.785498],\n\t\t\t\t\t\t\t[-176.273792, 51.772019],\n\t\t\t\t\t\t\t[-176.289921, 51.741678],\n\t\t\t\t\t\t\t[-176.343756, 51.731520],\n\t\t\t\t\t\t\t[-176.474132, 51.747208],\n\t\t\t\t\t\t\t[-176.497054, 51.761426],\n\t\t\t\t\t\t\t[-176.509655, 51.763326],\n\t\t\t\t\t\t\t[-176.519330, 51.758482],\n\t\t\t\t\t\t\t[-176.582933, 51.691822],\n\t\t\t\t\t\t\t[-176.608482, 51.693349],\n\t\t\t\t\t\t\t[-176.702660, 51.685404],\n\t\t\t\t\t\t\t[-176.713062, 51.683330],\n\t\t\t\t\t\t\t[-176.735912, 51.662154],\n\t\t\t\t\t\t\t[-176.751817, 51.635017],\n\t\t\t\t\t\t\t[-176.801675, 51.613488],\n\t\t\t\t\t\t\t[-176.809000, 51.616235],\n\t\t\t\t\t\t\t[-176.823682, 51.634011],\n\t\t\t\t\t\t\t[-176.826252, 51.640932],\n\t\t\t\t\t\t\t[-176.814437, 51.660250],\n\t\t\t\t\t\t\t[-176.837514, 51.682745],\n\t\t\t\t\t\t\t[-176.863062, 51.684921],\n\t\t\t\t\t\t\t[-176.903184, 51.635648],\n\t\t\t\t\t\t\t[-176.930952, 51.592470],\n\t\t\t\t\t\t\t[-176.938917, 51.590982],\n\t\t\t\t\t\t\t[-176.954147, 51.592568],\n\t\t\t\t\t\t\t[-176.984331, 51.602135],\n\t\t\t\t\t\t\t[-176.987383, 51.606872],\n\t\t\t\t\t\t\t[-176.991322, 51.629052],\n\t\t\t\t\t\t\t[-176.984489, 51.657411],\n\t\t\t\t\t\t\t[-176.976249, 51.666400],\n\t\t\t\t\t\t\t[-176.950128, 51.686719],\n\t\t\t\t\t\t\t[-176.930872, 51.697195],\n\t\t\t\t\t\t\t[-176.906884, 51.696639],\n\t\t\t\t\t\t\t[-176.896966, 51.700424],\n\t\t\t\t\t\t\t[-176.873924, 51.724071],\n\t\t\t\t\t\t\t[-176.870997, 51.729410],\n\t\t\t\t\t\t\t[-176.870700, 51.731969],\n\t\t\t\t\t\t\t[-176.882018, 51.766628],\n\t\t\t\t\t\t\t[-176.905030, 51.771532],\n\t\t\t\t\t\t\t[-176.918065, 51.788003],\n\t\t\t\t\t\t\t[-176.917088, 51.797016],\n\t\t\t\t\t\t\t[-176.911016, 51.807597],\n\t\t\t\t\t\t\t[-176.904302, 51.811772],\n\t\t\t\t\t\t\t[-176.856205, 51.818366],\n\t\t\t\t\t\t\t[-176.790163, 51.817217],\n\t\t\t\t\t\t\t[-176.762478, 51.867878]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-177.800647, 51.778294],\n\t\t\t\t\t\t\t[-177.796308, 51.770831],\n\t\t\t\t\t\t\t[-177.813886, 51.754280],\n\t\t\t\t\t\t\t[-177.842267, 51.732480],\n\t\t\t\t\t\t\t[-177.842419, 51.722645],\n\t\t\t\t\t\t\t[-177.838054, 51.717198],\n\t\t\t\t\t\t\t[-177.827524, 51.712086],\n\t\t\t\t\t\t\t[-177.826997, 51.705972],\n\t\t\t\t\t\t\t[-177.841411, 51.689560],\n\t\t\t\t\t\t\t[-177.856332, 51.681015],\n\t\t\t\t\t\t\t[-177.867960, 51.679374],\n\t\t\t\t\t\t\t[-177.876811, 51.681411],\n\t\t\t\t\t\t\t[-177.887768, 51.689483],\n\t\t\t\t\t\t\t[-177.899416, 51.692557],\n\t\t\t\t\t\t\t[-177.902693, 51.691581],\n\t\t\t\t\t\t\t[-177.918806, 51.674390],\n\t\t\t\t\t\t\t[-177.928907, 51.655368],\n\t\t\t\t\t\t\t[-177.929023, 51.650520],\n\t\t\t\t\t\t\t[-177.925640, 51.642481],\n\t\t\t\t\t\t\t[-177.915445, 51.630684],\n\t\t\t\t\t\t\t[-177.903083, 51.606497],\n\t\t\t\t\t\t\t[-177.906072, 51.597670],\n\t\t\t\t\t\t\t[-177.909185, 51.596671],\n\t\t\t\t\t\t\t[-177.930123, 51.601499],\n\t\t\t\t\t\t\t[-177.944957, 51.611539],\n\t\t\t\t\t\t\t[-177.950665, 51.620001],\n\t\t\t\t\t\t\t[-177.953024, 51.638175],\n\t\t\t\t\t\t\t[-177.957443, 51.647149],\n\t\t\t\t\t\t\t[-177.963852, 51.650231],\n\t\t\t\t\t\t\t[-178.069823, 51.670676],\n\t\t\t\t\t\t\t[-178.086304, 51.663618],\n\t\t\t\t\t\t\t[-178.109378, 51.670461],\n\t\t\t\t\t\t\t[-178.117864, 51.677831],\n\t\t\t\t\t\t\t[-178.104285, 51.701539],\n\t\t\t\t\t\t\t[-178.021818, 51.706906],\n\t\t\t\t\t\t\t[-177.962426, 51.719772],\n\t\t\t\t\t\t\t[-177.956443, 51.722862],\n\t\t\t\t\t\t\t[-177.947777, 51.740381],\n\t\t\t\t\t\t\t[-177.946649, 51.752681],\n\t\t\t\t\t\t\t[-177.950283, 51.765682],\n\t\t\t\t\t\t\t[-177.956998, 51.772541],\n\t\t\t\t\t\t\t[-177.965031, 51.778162],\n\t\t\t\t\t\t\t[-177.995272, 51.781535],\n\t\t\t\t\t\t\t[-178.039344, 51.778925],\n\t\t\t\t\t\t\t[-178.059335, 51.786829],\n\t\t\t\t\t\t\t[-178.080640, 51.798739],\n\t\t\t\t\t\t\t[-178.086074, 51.808047],\n\t\t\t\t\t\t\t[-178.172666, 51.839985],\n\t\t\t\t\t\t\t[-178.215124, 51.857801],\n\t\t\t\t\t\t\t[-178.224129, 51.864881],\n\t\t\t\t\t\t\t[-178.227822, 51.873526],\n\t\t\t\t\t\t\t[-178.224618, 51.880675],\n\t\t\t\t\t\t\t[-178.220742, 51.884841],\n\t\t\t\t\t\t\t[-178.197090, 51.905464],\n\t\t\t\t\t\t\t[-178.175023, 51.911584],\n\t\t\t\t\t\t\t[-178.145326, 51.917216],\n\t\t\t\t\t\t\t[-178.124786, 51.920093],\n\t\t\t\t\t\t\t[-178.090632, 51.919399],\n\t\t\t\t\t\t\t[-178.070548, 51.917408],\n\t\t\t\t\t\t\t[-178.061147, 51.912539],\n\t\t\t\t\t\t\t[-178.002345, 51.909968],\n\t\t\t\t\t\t\t[-177.963723, 51.917919],\n\t\t\t\t\t\t\t[-177.952094, 51.915348],\n\t\t\t\t\t\t\t[-177.913269, 51.879748],\n\t\t\t\t\t\t\t[-177.924315, 51.857522],\n\t\t\t\t\t\t\t[-177.921569, 51.853883],\n\t\t\t\t\t\t\t[-177.859763, 51.826944],\n\t\t\t\t\t\t\t[-177.852285, 51.826045],\n\t\t\t\t\t\t\t[-177.759641, 51.831195],\n\t\t\t\t\t\t\t[-177.691714, 51.843975],\n\t\t\t\t\t\t\t[-177.615311, 51.855080],\n\t\t\t\t\t\t\t[-177.614511, 51.853033],\n\t\t\t\t\t\t\t[-177.625008, 51.837529],\n\t\t\t\t\t\t\t[-177.649208, 51.820727],\n\t\t\t\t\t\t\t[-177.685555, 51.812745],\n\t\t\t\t\t\t\t[-177.692118, 51.813897],\n\t\t\t\t\t\t\t[-177.735909, 51.807991],\n\t\t\t\t\t\t\t[-177.797719, 51.793297],\n\t\t\t\t\t\t\t[-177.800647, 51.778294]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-177.360408, 51.727533],\n\t\t\t\t\t\t\t[-177.390760, 51.733525],\n\t\t\t\t\t\t\t[-177.417678, 51.730875],\n\t\t\t\t\t\t\t[-177.444717, 51.725419],\n\t\t\t\t\t\t\t[-177.463577, 51.713943],\n\t\t\t\t\t\t\t[-177.490005, 51.705106],\n\t\t\t\t\t\t\t[-177.540393, 51.698755],\n\t\t\t\t\t\t\t[-177.570973, 51.698220],\n\t\t\t\t\t\t\t[-177.608055, 51.705184],\n\t\t\t\t\t\t\t[-177.616753, 51.703978],\n\t\t\t\t\t\t\t[-177.631523, 51.696844],\n\t\t\t\t\t\t\t[-177.640524, 51.672084],\n\t\t\t\t\t\t\t[-177.635883, 51.659541],\n\t\t\t\t\t\t\t[-177.651386, 51.653604],\n\t\t\t\t\t\t\t[-177.670951, 51.663980],\n\t\t\t\t\t\t\t[-177.707802, 51.703268],\n\t\t\t\t\t\t\t[-177.705261, 51.707240],\n\t\t\t\t\t\t\t[-177.697662, 51.713123],\n\t\t\t\t\t\t\t[-177.639983, 51.736061],\n\t\t\t\t\t\t\t[-177.597498, 51.726464],\n\t\t\t\t\t\t\t[-177.555197, 51.721125],\n\t\t\t\t\t\t\t[-177.536977, 51.721470],\n\t\t\t\t\t\t\t[-177.515591, 51.724978],\n\t\t\t\t\t\t\t[-177.497974, 51.738624],\n\t\t\t\t\t\t\t[-177.461200, 51.750718],\n\t\t\t\t\t\t\t[-177.281479, 51.784075],\n\t\t\t\t\t\t\t[-177.238175, 51.798520],\n\t\t\t\t\t\t\t[-177.211930, 51.812331],\n\t\t\t\t\t\t\t[-177.205675, 51.820639],\n\t\t\t\t\t\t\t[-177.200825, 51.844605],\n\t\t\t\t\t\t\t[-177.199120, 51.883142],\n\t\t\t\t\t\t\t[-177.199764, 51.924816],\n\t\t\t\t\t\t\t[-177.197506, 51.931339],\n\t\t\t\t\t\t\t[-177.191399, 51.938001],\n\t\t\t\t\t\t\t[-177.181271, 51.943167],\n\t\t\t\t\t\t\t[-177.154842, 51.944381],\n\t\t\t\t\t\t\t[-177.099266, 51.936119],\n\t\t\t\t\t\t\t[-177.054768, 51.908944],\n\t\t\t\t\t\t\t[-177.045090, 51.898605],\n\t\t\t\t\t\t\t[-177.081010, 51.855497],\n\t\t\t\t\t\t\t[-177.120377, 51.839687],\n\t\t\t\t\t\t\t[-177.128617, 51.833835],\n\t\t\t\t\t\t\t[-177.136977, 51.814493],\n\t\t\t\t\t\t\t[-177.130960, 51.762772],\n\t\t\t\t\t\t\t[-177.120581, 51.739815],\n\t\t\t\t\t\t\t[-177.122808, 51.729355],\n\t\t\t\t\t\t\t[-177.145675, 51.707294],\n\t\t\t\t\t\t\t[-177.261631, 51.680846],\n\t\t\t\t\t\t\t[-177.275121, 51.680510],\n\t\t\t\t\t\t\t[-177.296369, 51.684245],\n\t\t\t\t\t\t\t[-177.316501, 51.690353],\n\t\t\t\t\t\t\t[-177.317888, 51.693447],\n\t\t\t\t\t\t\t[-177.317939, 51.696866],\n\t\t\t\t\t\t\t[-177.316353, 51.700811],\n\t\t\t\t\t\t\t[-177.322977, 51.711416],\n\t\t\t\t\t\t\t[-177.342784, 51.721395],\n\t\t\t\t\t\t\t[-177.360408, 51.727533]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-178.792409, 51.746071],\n\t\t\t\t\t\t\t[-178.808157, 51.747078],\n\t\t\t\t\t\t\t[-178.815757, 51.749176],\n\t\t\t\t\t\t\t[-178.873024, 51.782623],\n\t\t\t\t\t\t\t[-178.870118, 51.795261],\n\t\t\t\t\t\t\t[-178.858248, 51.820966],\n\t\t\t\t\t\t\t[-178.828645, 51.836150],\n\t\t\t\t\t\t\t[-178.819459, 51.839575],\n\t\t\t\t\t\t\t[-178.811249, 51.839018],\n\t\t\t\t\t\t\t[-178.788541, 51.832602],\n\t\t\t\t\t\t\t[-178.767695, 51.823179],\n\t\t\t\t\t\t\t[-178.748283, 51.809942],\n\t\t\t\t\t\t\t[-178.733355, 51.783947],\n\t\t\t\t\t\t\t[-178.750414, 51.757752],\n\t\t\t\t\t\t\t[-178.776661, 51.748612],\n\t\t\t\t\t\t\t[-178.792409, 51.746071]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[178.380741, 51.763907],\n\t\t\t\t\t\t\t[178.367465, 51.772758],\n\t\t\t\t\t\t\t[178.363680, 51.773948],\n\t\t\t\t\t\t\t[178.339082, 51.771529],\n\t\t\t\t\t\t\t[178.335664, 51.769926],\n\t\t\t\t\t\t\t[178.318757, 51.772322],\n\t\t\t\t\t\t\t[178.308563, 51.775701],\n\t\t\t\t\t\t\t[178.304892, 51.777434],\n\t\t\t\t\t\t\t[178.246209, 51.817078],\n\t\t\t\t\t\t\t[178.236931, 51.828209],\n\t\t\t\t\t\t\t[178.305568, 51.821748],\n\t\t\t\t\t\t\t[178.310298, 51.819993],\n\t\t\t\t\t\t\t[178.319389, 51.815737],\n\t\t\t\t\t\t\t[178.332190, 51.809037],\n\t\t\t\t\t\t\t[178.335631, 51.807031],\n\t\t\t\t\t\t\t[178.372348, 51.774146],\n\t\t\t\t\t\t\t[178.380741, 51.763907]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-175.971562, 51.888631],\n\t\t\t\t\t\t\t[-175.957546, 51.893455],\n\t\t\t\t\t\t\t[-175.953251, 51.881376],\n\t\t\t\t\t\t\t[-175.954287, 51.868381],\n\t\t\t\t\t\t\t[-175.963041, 51.846253],\n\t\t\t\t\t\t\t[-175.983742, 51.852352],\n\t\t\t\t\t\t\t[-176.047892, 51.846309],\n\t\t\t\t\t\t\t[-176.101070, 51.810609],\n\t\t\t\t\t\t\t[-176.123965, 51.802745],\n\t\t\t\t\t\t\t[-176.139622, 51.802386],\n\t\t\t\t\t\t\t[-176.183142, 51.807099],\n\t\t\t\t\t\t\t[-176.216957, 51.812714],\n\t\t\t\t\t\t\t[-176.235544, 51.823157],\n\t\t\t\t\t\t\t[-176.236246, 51.825965],\n\t\t\t\t\t\t\t[-176.217544, 51.874627],\n\t\t\t\t\t\t\t[-176.206069, 51.883089],\n\t\t\t\t\t\t\t[-176.173871, 51.882449],\n\t\t\t\t\t\t\t[-176.169751, 51.880138],\n\t\t\t\t\t\t\t[-176.168775, 51.877330],\n\t\t\t\t\t\t\t[-176.161052, 51.869685],\n\t\t\t\t\t\t\t[-176.140908, 51.859562],\n\t\t\t\t\t\t\t[-176.099137, 51.855533],\n\t\t\t\t\t\t\t[-176.080442, 51.858567],\n\t\t\t\t\t\t\t[-176.072225, 51.867938],\n\t\t\t\t\t\t\t[-176.073431, 51.870312],\n\t\t\t\t\t\t\t[-176.078865, 51.874778],\n\t\t\t\t\t\t\t[-176.115489, 51.887015],\n\t\t\t\t\t\t\t[-176.111452, 51.889748],\n\t\t\t\t\t\t\t[-176.065288, 51.902986],\n\t\t\t\t\t\t\t[-176.020182, 51.911373],\n\t\t\t\t\t\t\t[-175.992650, 51.912655],\n\t\t\t\t\t\t\t[-175.984993, 51.908445],\n\t\t\t\t\t\t\t[-175.971562, 51.888631]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[177.601645, 52.016377],\n\t\t\t\t\t\t\t[177.577226, 52.004970],\n\t\t\t\t\t\t\t[177.572068, 52.001812],\n\t\t\t\t\t\t\t[177.538223, 51.978897],\n\t\t\t\t\t\t\t[177.532729, 51.970070],\n\t\t\t\t\t\t\t[177.539627, 51.959418],\n\t\t\t\t\t\t\t[177.543534, 51.956175],\n\t\t\t\t\t\t\t[177.571796, 51.951590],\n\t\t\t\t\t\t\t[177.579823, 51.950836],\n\t\t\t\t\t\t\t[177.607535, 51.954720],\n\t\t\t\t\t\t\t[177.611553, 51.950829],\n\t\t\t\t\t\t\t[177.610618, 51.936713],\n\t\t\t\t\t\t\t[177.606529, 51.925069],\n\t\t\t\t\t\t\t[177.601005, 51.922254],\n\t\t\t\t\t\t\t[177.560513, 51.916364],\n\t\t\t\t\t\t\t[177.484313, 51.923413],\n\t\t\t\t\t\t\t[177.409536, 51.930821],\n\t\t\t\t\t\t\t[177.373934, 51.919760],\n\t\t\t\t\t\t\t[177.348816, 51.904469],\n\t\t\t\t\t\t\t[177.326781, 51.873636],\n\t\t\t\t\t\t\t[177.327179, 51.871049],\n\t\t\t\t\t\t\t[177.334229, 51.866769],\n\t\t\t\t\t\t\t[177.334017, 51.844444],\n\t\t\t\t\t\t\t[177.321687, 51.828543],\n\t\t\t\t\t\t\t[177.311768, 51.825971],\n\t\t\t\t\t\t\t[177.303314, 51.829458],\n\t\t\t\t\t\t\t[177.294035, 51.837301],\n\t\t\t\t\t\t\t[177.296018, 51.839866],\n\t\t\t\t\t\t\t[177.293424, 51.845610],\n\t\t\t\t\t\t\t[177.273370, 51.857123],\n\t\t\t\t\t\t\t[177.235523, 51.873260],\n\t\t\t\t\t\t\t[177.212422, 51.876431],\n\t\t\t\t\t\t\t[177.203996, 51.880531],\n\t\t\t\t\t\t\t[177.200423, 51.894746],\n\t\t\t\t\t\t\t[177.203323, 51.896562],\n\t\t\t\t\t\t\t[177.233904, 51.909624],\n\t\t\t\t\t\t\t[177.272695, 51.920054],\n\t\t\t\t\t\t\t[177.291312, 51.919430],\n\t\t\t\t\t\t\t[177.341518, 51.955016],\n\t\t\t\t\t\t\t[177.345577, 51.963005],\n\t\t\t\t\t\t\t[177.413484, 51.979724],\n\t\t\t\t\t\t\t[177.483712, 51.984877],\n\t\t\t\t\t\t\t[177.497441, 51.993328],\n\t\t\t\t\t\t\t[177.503441, 52.008829],\n\t\t\t\t\t\t\t[177.505747, 52.016374],\n\t\t\t\t\t\t\t[177.505319, 52.038768],\n\t\t\t\t\t\t\t[177.545604, 52.101091],\n\t\t\t\t\t\t\t[177.563396, 52.121959],\n\t\t\t\t\t\t\t[177.602673, 52.137320],\n\t\t\t\t\t\t\t[177.661607, 52.112746],\n\t\t\t\t\t\t\t[177.675952, 52.092167],\n\t\t\t\t\t\t\t[177.667256, 52.076274],\n\t\t\t\t\t\t\t[177.659451, 52.069439],\n\t\t\t\t\t\t\t[177.653614, 52.070323],\n\t\t\t\t\t\t\t[177.641864, 52.068316],\n\t\t\t\t\t\t\t[177.632555, 52.064844],\n\t\t\t\t\t\t\t[177.609087, 52.028518],\n\t\t\t\t\t\t\t[177.601645, 52.016377]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[179.758993, 51.946595],\n\t\t\t\t\t\t\t[179.751525, 51.923933],\n\t\t\t\t\t\t\t[179.743012, 51.911749],\n\t\t\t\t\t\t\t[179.734772, 51.907606],\n\t\t\t\t\t\t\t[179.649484, 51.873670],\n\t\t\t\t\t\t\t[179.639077, 51.871931],\n\t\t\t\t\t\t\t[179.614364, 51.871772],\n\t\t\t\t\t\t\t[179.521868, 51.896765],\n\t\t\t\t\t\t\t[179.484634, 51.921268],\n\t\t\t\t\t\t\t[179.475569, 51.937456],\n\t\t\t\t\t\t\t[179.482464, 51.982834],\n\t\t\t\t\t\t\t[179.486565, 51.983959],\n\t\t\t\t\t\t\t[179.515025, 51.983751],\n\t\t\t\t\t\t\t[179.526743, 51.981164],\n\t\t\t\t\t\t\t[179.539223, 51.985178],\n\t\t\t\t\t\t\t[179.571049, 52.011111],\n\t\t\t\t\t\t\t[179.582857, 52.016841],\n\t\t\t\t\t\t\t[179.622283, 52.024975],\n\t\t\t\t\t\t\t[179.647641, 52.026259],\n\t\t\t\t\t\t\t[179.663327, 52.022941],\n\t\t\t\t\t\t\t[179.704433, 52.004877],\n\t\t\t\t\t\t\t[179.773922, 51.970693],\n\t\t\t\t\t\t\t[179.778470, 51.962217],\n\t\t\t\t\t\t\t[179.777158, 51.958700],\n\t\t\t\t\t\t\t[179.767251, 51.947572],\n\t\t\t\t\t\t\t[179.758993, 51.946595]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[178.446964, 51.978222],\n\t\t\t\t\t\t\t[178.463385, 51.987849],\n\t\t\t\t\t\t\t[178.478586, 51.987549],\n\t\t\t\t\t\t\t[178.552612, 51.973968],\n\t\t\t\t\t\t\t[178.570619, 51.968064],\n\t\t\t\t\t\t\t[178.591597, 51.952652],\n\t\t\t\t\t\t\t[178.590245, 51.945457],\n\t\t\t\t\t\t\t[178.567447, 51.925939],\n\t\t\t\t\t\t\t[178.539395, 51.903246],\n\t\t\t\t\t\t\t[178.518861, 51.899759],\n\t\t\t\t\t\t\t[178.502493, 51.899644],\n\t\t\t\t\t\t\t[178.484831, 51.909898],\n\t\t\t\t\t\t\t[178.468045, 51.931635],\n\t\t\t\t\t\t\t[178.454664, 51.960501],\n\t\t\t\t\t\t\t[178.446964, 51.978222]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-175.680144, 51.968970],\n\t\t\t\t\t\t\t[-175.672640, 51.972471],\n\t\t\t\t\t\t\t[-175.669707, 51.972166],\n\t\t\t\t\t\t\t[-175.655056, 51.966651],\n\t\t\t\t\t\t\t[-175.652493, 51.964813],\n\t\t\t\t\t\t\t[-175.653194, 51.961669],\n\t\t\t\t\t\t\t[-175.717436, 51.933695],\n\t\t\t\t\t\t\t[-175.730011, 51.933817],\n\t\t\t\t\t\t\t[-175.747438, 51.946200],\n\t\t\t\t\t\t\t[-175.747836, 51.950655],\n\t\t\t\t\t\t\t[-175.742618, 51.966632],\n\t\t\t\t\t\t\t[-175.735477, 51.973331],\n\t\t\t\t\t\t\t[-175.726245, 51.975969],\n\t\t\t\t\t\t\t[-175.680144, 51.968970]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-176.018089, 52.020099],\n\t\t\t\t\t\t\t[-176.044001, 52.009331],\n\t\t\t\t\t\t\t[-176.032156, 51.993667],\n\t\t\t\t\t\t\t[-176.027546, 51.991630],\n\t\t\t\t\t\t\t[-176.021839, 51.984848],\n\t\t\t\t\t\t\t[-176.022663, 51.980621],\n\t\t\t\t\t\t\t[-176.027667, 51.975112],\n\t\t\t\t\t\t\t[-176.057085, 51.967825],\n\t\t\t\t\t\t\t[-176.079181, 51.968884],\n\t\t\t\t\t\t\t[-176.180356, 52.000426],\n\t\t\t\t\t\t\t[-176.185086, 52.005705],\n\t\t\t\t\t\t\t[-176.201935, 52.040212],\n\t\t\t\t\t\t\t[-176.211855, 52.065533],\n\t\t\t\t\t\t\t[-176.205324, 52.076246],\n\t\t\t\t\t\t\t[-176.173155, 52.102314],\n\t\t\t\t\t\t\t[-176.143914, 52.116097],\n\t\t\t\t\t\t\t[-176.058103, 52.106467],\n\t\t\t\t\t\t\t[-175.988653, 52.035509],\n\t\t\t\t\t\t\t[-175.999044, 52.025385],\n\t\t\t\t\t\t\t[-176.018089, 52.020099]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[178.117600, 52.048612],\n\t\t\t\t\t\t\t[178.119144, 52.051659],\n\t\t\t\t\t\t\t[178.141695, 52.051034],\n\t\t\t\t\t\t\t[178.175781, 52.036777],\n\t\t\t\t\t\t\t[178.179962, 52.033247],\n\t\t\t\t\t\t\t[178.190963, 52.003546],\n\t\t\t\t\t\t\t[178.174473, 51.991684],\n\t\t\t\t\t\t\t[178.132547, 51.986982],\n\t\t\t\t\t\t\t[178.105874, 51.998357],\n\t\t\t\t\t\t\t[178.102730, 52.003927],\n\t\t\t\t\t\t\t[178.094610, 52.033294],\n\t\t\t\t\t\t\t[178.107266, 52.045744],\n\t\t\t\t\t\t\t[178.117600, 52.048612]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-174.301818, 52.278949],\n\t\t\t\t\t\t\t[-174.323471, 52.283990],\n\t\t\t\t\t\t\t[-174.346089, 52.285036],\n\t\t\t\t\t\t\t[-174.349404, 52.281336],\n\t\t\t\t\t\t\t[-174.368754, 52.280405],\n\t\t\t\t\t\t\t[-174.408277, 52.289872],\n\t\t\t\t\t\t\t[-174.451554, 52.305557],\n\t\t\t\t\t\t\t[-174.455979, 52.313690],\n\t\t\t\t\t\t\t[-174.453660, 52.319367],\n\t\t\t\t\t\t\t[-174.443132, 52.325654],\n\t\t\t\t\t\t\t[-174.432846, 52.328004],\n\t\t\t\t\t\t\t[-174.384199, 52.321139],\n\t\t\t\t\t\t\t[-174.367047, 52.314105],\n\t\t\t\t\t\t\t[-174.358624, 52.314190],\n\t\t\t\t\t\t\t[-174.340679, 52.322284],\n\t\t\t\t\t\t\t[-174.331065, 52.328465],\n\t\t\t\t\t\t\t[-174.317700, 52.344869],\n\t\t\t\t\t\t\t[-174.320813, 52.355726],\n\t\t\t\t\t\t\t[-174.330494, 52.366439],\n\t\t\t\t\t\t\t[-174.329818, 52.373548],\n\t\t\t\t\t\t\t[-174.324935, 52.378095],\n\t\t\t\t\t\t\t[-174.185347, 52.417788],\n\t\t\t\t\t\t\t[-174.155774, 52.416041],\n\t\t\t\t\t\t\t[-174.068248, 52.390331],\n\t\t\t\t\t\t\t[-174.016822, 52.348537],\n\t\t\t\t\t\t\t[-173.989415, 52.325275],\n\t\t\t\t\t\t\t[-173.985203, 52.317600],\n\t\t\t\t\t\t\t[-173.986421, 52.298565],\n\t\t\t\t\t\t\t[-173.987917, 52.295345],\n\t\t\t\t\t\t\t[-174.036222, 52.245011],\n\t\t\t\t\t\t\t[-174.060451, 52.225326],\n\t\t\t\t\t\t\t[-174.084042, 52.223677],\n\t\t\t\t\t\t\t[-174.106533, 52.228392],\n\t\t\t\t\t\t\t[-174.177679, 52.233638],\n\t\t\t\t\t\t\t[-174.182857, 52.232762],\n\t\t\t\t\t\t\t[-174.198624, 52.219244],\n\t\t\t\t\t\t\t[-174.200389, 52.211861],\n\t\t\t\t\t\t\t[-174.196836, 52.195856],\n\t\t\t\t\t\t\t[-174.190100, 52.190320],\n\t\t\t\t\t\t\t[-174.175044, 52.181835],\n\t\t\t\t\t\t\t[-174.135217, 52.168514],\n\t\t\t\t\t\t\t[-174.090169, 52.139119],\n\t\t\t\t\t\t\t[-174.082814, 52.132069],\n\t\t\t\t\t\t\t[-174.080677, 52.128026],\n\t\t\t\t\t\t\t[-174.089100, 52.107251],\n\t\t\t\t\t\t\t[-174.094470, 52.104274],\n\t\t\t\t\t\t\t[-174.102161, 52.104534],\n\t\t\t\t\t\t\t[-174.109089, 52.113117],\n\t\t\t\t\t\t\t[-174.114370, 52.117107],\n\t\t\t\t\t\t\t[-174.142262, 52.125452],\n\t\t\t\t\t\t\t[-174.206353, 52.116554],\n\t\t\t\t\t\t\t[-174.218469, 52.104880],\n\t\t\t\t\t\t\t[-174.302947, 52.111325],\n\t\t\t\t\t\t\t[-174.334424, 52.115198],\n\t\t\t\t\t\t\t[-174.348463, 52.109245],\n\t\t\t\t\t\t\t[-174.365667, 52.097238],\n\t\t\t\t\t\t\t[-174.382661, 52.081658],\n\t\t\t\t\t\t\t[-174.411255, 52.048757],\n\t\t\t\t\t\t\t[-174.452760, 52.061047],\n\t\t\t\t\t\t\t[-174.507816, 52.054955],\n\t\t\t\t\t\t\t[-174.508822, 52.048623],\n\t\t\t\t\t\t\t[-174.556278, 52.036733],\n\t\t\t\t\t\t\t[-174.580676, 52.040453],\n\t\t\t\t\t\t\t[-174.593635, 52.045247],\n\t\t\t\t\t\t\t[-174.615943, 52.032665],\n\t\t\t\t\t\t\t[-174.714610, 52.009863],\n\t\t\t\t\t\t\t[-174.736592, 52.007308],\n\t\t\t\t\t\t\t[-174.783189, 52.032293],\n\t\t\t\t\t\t\t[-174.885554, 52.043001],\n\t\t\t\t\t\t\t[-174.967907, 52.037203],\n\t\t\t\t\t\t\t[-175.000792, 52.028354],\n\t\t\t\t\t\t\t[-175.014748, 52.020584],\n\t\t\t\t\t\t\t[-175.014807, 52.007000],\n\t\t\t\t\t\t\t[-175.095510, 52.000797],\n\t\t\t\t\t\t\t[-175.104889, 52.003548],\n\t\t\t\t\t\t\t[-175.155673, 52.011512],\n\t\t\t\t\t\t\t[-175.274850, 52.018619],\n\t\t\t\t\t\t\t[-175.292821, 52.018790],\n\t\t\t\t\t\t\t[-175.300639, 52.014970],\n\t\t\t\t\t\t\t[-175.302683, 52.011499],\n\t\t\t\t\t\t\t[-175.323322, 52.007488],\n\t\t\t\t\t\t\t[-175.341624, 52.021588],\n\t\t\t\t\t\t\t[-175.327070, 52.027032],\n\t\t\t\t\t\t\t[-175.195900, 52.051407],\n\t\t\t\t\t\t\t[-175.156744, 52.057642],\n\t\t\t\t\t\t\t[-175.132635, 52.059223],\n\t\t\t\t\t\t\t[-175.117115, 52.054499],\n\t\t\t\t\t\t\t[-175.117680, 52.053234],\n\t\t\t\t\t\t\t[-175.113721, 52.046308],\n\t\t\t\t\t\t\t[-175.092867, 52.034794],\n\t\t\t\t\t\t\t[-175.044344, 52.057519],\n\t\t\t\t\t\t\t[-174.995237, 52.061417],\n\t\t\t\t\t\t\t[-174.992309, 52.058603],\n\t\t\t\t\t\t\t[-174.980497, 52.061471],\n\t\t\t\t\t\t\t[-174.937497, 52.078334],\n\t\t\t\t\t\t\t[-174.922299, 52.091580],\n\t\t\t\t\t\t\t[-174.927549, 52.101415],\n\t\t\t\t\t\t\t[-174.920042, 52.109274],\n\t\t\t\t\t\t\t[-174.905409, 52.116509],\n\t\t\t\t\t\t\t[-174.866725, 52.103172],\n\t\t\t\t\t\t\t[-174.839715, 52.091338],\n\t\t\t\t\t\t\t[-174.786809, 52.091324],\n\t\t\t\t\t\t\t[-174.656294, 52.107962],\n\t\t\t\t\t\t\t[-174.604871, 52.122124],\n\t\t\t\t\t\t\t[-174.568402, 52.138426],\n\t\t\t\t\t\t\t[-174.557080, 52.153637],\n\t\t\t\t\t\t\t[-174.554670, 52.160405],\n\t\t\t\t\t\t\t[-174.527081, 52.174720],\n\t\t\t\t\t\t\t[-174.496880, 52.179151],\n\t\t\t\t\t\t\t[-174.465189, 52.180711],\n\t\t\t\t\t\t\t[-174.455707, 52.176802],\n\t\t\t\t\t\t\t[-174.424054, 52.169053],\n\t\t\t\t\t\t\t[-174.415290, 52.169376],\n\t\t\t\t\t\t\t[-174.404588, 52.181330],\n\t\t\t\t\t\t\t[-174.405464, 52.183560],\n\t\t\t\t\t\t\t[-174.457804, 52.202831],\n\t\t\t\t\t\t\t[-174.462962, 52.213031],\n\t\t\t\t\t\t\t[-174.453746, 52.218823],\n\t\t\t\t\t\t\t[-174.400139, 52.219053],\n\t\t\t\t\t\t\t[-174.360631, 52.212994],\n\t\t\t\t\t\t\t[-174.328599, 52.211647],\n\t\t\t\t\t\t\t[-174.299044, 52.214670],\n\t\t\t\t\t\t\t[-174.249848, 52.243694],\n\t\t\t\t\t\t\t[-174.255832, 52.274152],\n\t\t\t\t\t\t\t[-174.301818, 52.278949]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-173.602446, 52.153773],\n\t\t\t\t\t\t\t[-173.590560, 52.145393],\n\t\t\t\t\t\t\t[-173.514171, 52.108348],\n\t\t\t\t\t\t\t[-173.497020, 52.103641],\n\t\t\t\t\t\t\t[-173.467877, 52.116423],\n\t\t\t\t\t\t\t[-173.375229, 52.108228],\n\t\t\t\t\t\t\t[-173.375595, 52.106343],\n\t\t\t\t\t\t\t[-173.372574, 52.102750],\n\t\t\t\t\t\t\t[-173.357498, 52.096129],\n\t\t\t\t\t\t\t[-173.238295, 52.100443],\n\t\t\t\t\t\t\t[-173.173206, 52.109136],\n\t\t\t\t\t\t\t[-173.124504, 52.109420],\n\t\t\t\t\t\t\t[-173.119255, 52.107628],\n\t\t\t\t\t\t\t[-173.107373, 52.099280],\n\t\t\t\t\t\t\t[-173.066430, 52.096330],\n\t\t\t\t\t\t\t[-173.019588, 52.097881],\n\t\t\t\t\t\t\t[-172.958523, 52.093648],\n\t\t\t\t\t\t\t[-172.960751, 52.087018],\n\t\t\t\t\t\t\t[-173.033166, 52.074611],\n\t\t\t\t\t\t\t[-173.047540, 52.073329],\n\t\t\t\t\t\t\t[-173.107933, 52.078828],\n\t\t\t\t\t\t\t[-173.206837, 52.063532],\n\t\t\t\t\t\t\t[-173.313705, 52.058701],\n\t\t\t\t\t\t\t[-173.424178, 52.046298],\n\t\t\t\t\t\t\t[-173.511915, 52.031278],\n\t\t\t\t\t\t\t[-173.548385, 52.029308],\n\t\t\t\t\t\t\t[-173.612014, 52.051148],\n\t\t\t\t\t\t\t[-173.718000, 52.063069],\n\t\t\t\t\t\t\t[-173.799574, 52.053650],\n\t\t\t\t\t\t\t[-173.816999, 52.048538],\n\t\t\t\t\t\t\t[-173.820692, 52.043312],\n\t\t\t\t\t\t\t[-173.831555, 52.040763],\n\t\t\t\t\t\t\t[-173.901075, 52.049435],\n\t\t\t\t\t\t\t[-173.937239, 52.057513],\n\t\t\t\t\t\t\t[-173.935561, 52.064731],\n\t\t\t\t\t\t\t[-173.971330, 52.099428],\n\t\t\t\t\t\t\t[-173.992274, 52.100590],\n\t\t\t\t\t\t\t[-174.001866, 52.097641],\n\t\t\t\t\t\t\t[-174.011338, 52.098862],\n\t\t\t\t\t\t\t[-174.035082, 52.112952],\n\t\t\t\t\t\t\t[-174.046750, 52.122403],\n\t\t\t\t\t\t\t[-174.052296, 52.130400],\n\t\t\t\t\t\t\t[-174.048451, 52.132911],\n\t\t\t\t\t\t\t[-174.036854, 52.135878],\n\t\t\t\t\t\t\t[-173.984245, 52.127855],\n\t\t\t\t\t\t\t[-173.890733, 52.125470],\n\t\t\t\t\t\t\t[-173.830906, 52.110450],\n\t\t\t\t\t\t\t[-173.824087, 52.105892],\n\t\t\t\t\t\t\t[-173.818277, 52.105363],\n\t\t\t\t\t\t\t[-173.802339, 52.106390],\n\t\t\t\t\t\t\t[-173.721266, 52.130207],\n\t\t\t\t\t\t\t[-173.654404, 52.146192],\n\t\t\t\t\t\t\t[-173.624771, 52.152213],\n\t\t\t\t\t\t\t[-173.602446, 52.153773]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[177.355215, 52.071396],\n\t\t\t\t\t\t\t[177.332629, 52.075209],\n\t\t\t\t\t\t\t[177.321366, 52.080428],\n\t\t\t\t\t\t\t[177.305190, 52.090324],\n\t\t\t\t\t\t\t[177.290600, 52.102150],\n\t\t\t\t\t\t\t[177.283488, 52.114159],\n\t\t\t\t\t\t\t[177.280160, 52.127579],\n\t\t\t\t\t\t\t[177.281807, 52.135126],\n\t\t\t\t\t\t\t[177.288827, 52.144190],\n\t\t\t\t\t\t\t[177.306009, 52.156108],\n\t\t\t\t\t\t\t[177.329296, 52.166669],\n\t\t\t\t\t\t\t[177.340528, 52.170323],\n\t\t\t\t\t\t\t[177.367356, 52.175299],\n\t\t\t\t\t\t\t[177.383655, 52.174276],\n\t\t\t\t\t\t\t[177.408835, 52.167632],\n\t\t\t\t\t\t\t[177.425775, 52.157203],\n\t\t\t\t\t\t\t[177.437924, 52.146873],\n\t\t\t\t\t\t\t[177.445983, 52.135130],\n\t\t\t\t\t\t\t[177.446563, 52.114453],\n\t\t\t\t\t\t\t[177.443023, 52.105259],\n\t\t\t\t\t\t\t[177.435577, 52.097011],\n\t\t\t\t\t\t\t[177.428801, 52.091738],\n\t\t\t\t\t\t\t[177.402034, 52.079668],\n\t\t\t\t\t\t\t[177.386805, 52.075196],\n\t\t\t\t\t\t\t[177.355215, 52.071396]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-172.633153, 52.266215],\n\t\t\t\t\t\t\t[-172.620261, 52.298751],\n\t\t\t\t\t\t\t[-172.574154, 52.345323],\n\t\t\t\t\t\t\t[-172.568051, 52.349420],\n\t\t\t\t\t\t\t[-172.474610, 52.383763],\n\t\t\t\t\t\t\t[-172.448182, 52.391439],\n\t\t\t\t\t\t\t[-172.405243, 52.389442],\n\t\t\t\t\t\t\t[-172.326444, 52.366472],\n\t\t\t\t\t\t\t[-172.311427, 52.356456],\n\t\t\t\t\t\t\t[-172.302393, 52.342357],\n\t\t\t\t\t\t\t[-172.301445, 52.329951],\n\t\t\t\t\t\t\t[-172.313133, 52.320697],\n\t\t\t\t\t\t\t[-172.414419, 52.276740],\n\t\t\t\t\t\t\t[-172.528095, 52.254336],\n\t\t\t\t\t\t\t[-172.608935, 52.253014],\n\t\t\t\t\t\t\t[-172.616839, 52.255317],\n\t\t\t\t\t\t\t[-172.633153, 52.266215]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[175.911286, 52.334831],\n\t\t\t\t\t\t\t[175.902770, 52.336823],\n\t\t\t\t\t\t\t[175.890684, 52.344514],\n\t\t\t\t\t\t\t[175.873317, 52.361138],\n\t\t\t\t\t\t\t[175.874353, 52.371004],\n\t\t\t\t\t\t\t[175.906734, 52.375651],\n\t\t\t\t\t\t\t[175.950560, 52.368357],\n\t\t\t\t\t\t\t[175.966521, 52.359728],\n\t\t\t\t\t\t\t[175.944180, 52.336437],\n\t\t\t\t\t\t\t[175.911286, 52.334831]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[173.587554, 52.476785],\n\t\t\t\t\t\t\t[173.623883, 52.506948],\n\t\t\t\t\t\t\t[173.680586, 52.512878],\n\t\t\t\t\t\t\t[173.736270, 52.512422],\n\t\t\t\t\t\t\t[173.769503, 52.512072],\n\t\t\t\t\t\t\t[173.772799, 52.509905],\n\t\t\t\t\t\t\t[173.772402, 52.506877],\n\t\t\t\t\t\t\t[173.754979, 52.496127],\n\t\t\t\t\t\t\t[173.739385, 52.493257],\n\t\t\t\t\t\t\t[173.707741, 52.477377],\n\t\t\t\t\t\t\t[173.695719, 52.458935],\n\t\t\t\t\t\t\t[173.691601, 52.445935],\n\t\t\t\t\t\t\t[173.693860, 52.438694],\n\t\t\t\t\t\t\t[173.702252, 52.434804],\n\t\t\t\t\t\t\t[173.704299, 52.432192],\n\t\t\t\t\t\t\t[173.712323, 52.421033],\n\t\t\t\t\t\t\t[173.719161, 52.397703],\n\t\t\t\t\t\t\t[173.725696, 52.356579],\n\t\t\t\t\t\t\t[173.651293, 52.356370],\n\t\t\t\t\t\t\t[173.644793, 52.357598],\n\t\t\t\t\t\t\t[173.640825, 52.359428],\n\t\t\t\t\t\t\t[173.606767, 52.378249],\n\t\t\t\t\t\t\t[173.595397, 52.391893],\n\t\t\t\t\t\t\t[173.588794, 52.400973],\n\t\t\t\t\t\t\t[173.559891, 52.401165],\n\t\t\t\t\t\t\t[173.543778, 52.392666],\n\t\t\t\t\t\t\t[173.512162, 52.385035],\n\t\t\t\t\t\t\t[173.483843, 52.383485],\n\t\t\t\t\t\t\t[173.465442, 52.384621],\n\t\t\t\t\t\t\t[173.455586, 52.389656],\n\t\t\t\t\t\t\t[173.395500, 52.402647],\n\t\t\t\t\t\t\t[173.385704, 52.404072],\n\t\t\t\t\t\t\t[173.356927, 52.403873],\n\t\t\t\t\t\t\t[173.356103, 52.405563],\n\t\t\t\t\t\t\t[173.380058, 52.431843],\n\t\t\t\t\t\t\t[173.440111, 52.453664],\n\t\t\t\t\t\t\t[173.445696, 52.455031],\n\t\t\t\t\t\t\t[173.467698, 52.444473],\n\t\t\t\t\t\t\t[173.476243, 52.441909],\n\t\t\t\t\t\t\t[173.501022, 52.440926],\n\t\t\t\t\t\t\t[173.525161, 52.448137],\n\t\t\t\t\t\t\t[173.530105, 52.449968],\n\t\t\t\t\t\t\t[173.550002, 52.467067],\n\t\t\t\t\t\t\t[173.549605, 52.469989],\n\t\t\t\t\t\t\t[173.545302, 52.476000],\n\t\t\t\t\t\t\t[173.555739, 52.479472],\n\t\t\t\t\t\t\t[173.587554, 52.476785]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-171.294554, 52.451105],\n\t\t\t\t\t\t\t[-171.299348, 52.448716],\n\t\t\t\t\t\t\t[-171.304170, 52.449952],\n\t\t\t\t\t\t\t[-171.313083, 52.472932],\n\t\t\t\t\t\t\t[-171.312658, 52.493502],\n\t\t\t\t\t\t\t[-171.307500, 52.501514],\n\t\t\t\t\t\t\t[-171.291387, 52.514813],\n\t\t\t\t\t\t\t[-171.277165, 52.522634],\n\t\t\t\t\t\t\t[-171.252053, 52.529954],\n\t\t\t\t\t\t\t[-171.196013, 52.500106],\n\t\t\t\t\t\t\t[-171.194639, 52.498039],\n\t\t\t\t\t\t\t[-171.208919, 52.469023],\n\t\t\t\t\t\t\t[-171.214565, 52.463300],\n\t\t\t\t\t\t\t[-171.236843, 52.450527],\n\t\t\t\t\t\t\t[-171.252316, 52.449466],\n\t\t\t\t\t\t\t[-171.294554, 52.451105]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-170.841936, 52.558171],\n\t\t\t\t\t\t\t[-170.833364, 52.599985],\n\t\t\t\t\t\t\t[-170.820641, 52.633091],\n\t\t\t\t\t\t\t[-170.817943, 52.636275],\n\t\t\t\t\t\t\t[-170.727717, 52.679978],\n\t\t\t\t\t\t\t[-170.671545, 52.698082],\n\t\t\t\t\t\t\t[-170.633753, 52.697469],\n\t\t\t\t\t\t\t[-170.579913, 52.682029],\n\t\t\t\t\t\t\t[-170.562734, 52.674785],\n\t\t\t\t\t\t\t[-170.559523, 52.667907],\n\t\t\t\t\t\t\t[-170.557324, 52.652105],\n\t\t\t\t\t\t\t[-170.563610, 52.640706],\n\t\t\t\t\t\t\t[-170.603862, 52.601732],\n\t\t\t\t\t\t\t[-170.635419, 52.595711],\n\t\t\t\t\t\t\t[-170.659041, 52.593811],\n\t\t\t\t\t\t\t[-170.665266, 52.595260],\n\t\t\t\t\t\t\t[-170.668075, 52.600677],\n\t\t\t\t\t\t\t[-170.674453, 52.603385],\n\t\t\t\t\t\t\t[-170.683854, 52.602485],\n\t\t\t\t\t\t\t[-170.696488, 52.598364],\n\t\t\t\t\t\t\t[-170.735824, 52.580823],\n\t\t\t\t\t\t\t[-170.767378, 52.558254],\n\t\t\t\t\t\t\t[-170.777143, 52.546664],\n\t\t\t\t\t\t\t[-170.788495, 52.540240],\n\t\t\t\t\t\t\t[-170.841936, 52.558171]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[174.069186, 52.734888],\n\t\t\t\t\t\t\t[174.092073, 52.742060],\n\t\t\t\t\t\t\t[174.096650, 52.743485],\n\t\t\t\t\t\t\t[174.133150, 52.733786],\n\t\t\t\t\t\t\t[174.145326, 52.728550],\n\t\t\t\t\t\t\t[174.155764, 52.715375],\n\t\t\t\t\t\t\t[174.159252, 52.707387],\n\t\t\t\t\t\t\t[174.158146, 52.706059],\n\t\t\t\t\t\t\t[174.109409, 52.708560],\n\t\t\t\t\t\t\t[174.071842, 52.718295],\n\t\t\t\t\t\t\t[174.066195, 52.731042],\n\t\t\t\t\t\t\t[174.069186, 52.734888]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-170.170683, 52.784918],\n\t\t\t\t\t\t\t[-170.128714, 52.787425],\n\t\t\t\t\t\t\t[-170.061868, 52.773525],\n\t\t\t\t\t\t\t[-170.053443, 52.769076],\n\t\t\t\t\t\t\t[-170.052922, 52.758745],\n\t\t\t\t\t\t\t[-170.055363, 52.745887],\n\t\t\t\t\t\t\t[-170.070287, 52.724301],\n\t\t\t\t\t\t\t[-170.077734, 52.720416],\n\t\t\t\t\t\t\t[-170.114087, 52.716172],\n\t\t\t\t\t\t\t[-170.170646, 52.717359],\n\t\t\t\t\t\t\t[-170.184564, 52.721937],\n\t\t\t\t\t\t\t[-170.185684, 52.723007],\n\t\t\t\t\t\t\t[-170.170683, 52.784918]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[174.004827, 52.719857],\n\t\t\t\t\t\t\t[173.972600, 52.729423],\n\t\t\t\t\t\t\t[173.960880, 52.738136],\n\t\t\t\t\t\t\t[173.952793, 52.747885],\n\t\t\t\t\t\t\t[173.954075, 52.751410],\n\t\t\t\t\t\t\t[173.983432, 52.749053],\n\t\t\t\t\t\t\t[174.003651, 52.744283],\n\t\t\t\t\t\t\t[174.021702, 52.730286],\n\t\t\t\t\t\t\t[174.004827, 52.719857]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[173.932926, 52.746649],\n\t\t\t\t\t\t\t[173.930912, 52.750227],\n\t\t\t\t\t\t\t[173.925271, 52.752433],\n\t\t\t\t\t\t\t[173.894753, 52.750780],\n\t\t\t\t\t\t\t[173.875585, 52.761898],\n\t\t\t\t\t\t\t[173.861653, 52.773579],\n\t\t\t\t\t\t\t[173.867436, 52.775128],\n\t\t\t\t\t\t\t[173.881412, 52.775028],\n\t\t\t\t\t\t\t[173.897452, 52.771780],\n\t\t\t\t\t\t\t[173.931553, 52.758574],\n\t\t\t\t\t\t\t[173.940037, 52.751860],\n\t\t\t\t\t\t\t[173.932926, 52.746649]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[172.763366, 52.823656],\n\t\t\t\t\t\t\t[172.767390, 52.848372],\n\t\t\t\t\t\t\t[172.766693, 52.862669],\n\t\t\t\t\t\t\t[172.754236, 52.877490],\n\t\t\t\t\t\t\t[172.640372, 52.925441],\n\t\t\t\t\t\t\t[172.585075, 52.921327],\n\t\t\t\t\t\t\t[172.548700, 52.914322],\n\t\t\t\t\t\t\t[172.512996, 52.905181],\n\t\t\t\t\t\t\t[172.469022, 52.911337],\n\t\t\t\t\t\t\t[172.461667, 52.927160],\n\t\t\t\t\t\t\t[172.629077, 53.001324],\n\t\t\t\t\t\t\t[172.643266, 53.004979],\n\t\t\t\t\t\t\t[172.746566, 53.010750],\n\t\t\t\t\t\t\t[173.107249, 52.993228],\n\t\t\t\t\t\t\t[173.121988, 52.990352],\n\t\t\t\t\t\t\t[173.131510, 52.987521],\n\t\t\t\t\t\t\t[173.159648, 52.974163],\n\t\t\t\t\t\t\t[173.172406, 52.960545],\n\t\t\t\t\t\t\t[173.211752, 52.939489],\n\t\t\t\t\t\t\t[173.235265, 52.943628],\n\t\t\t\t\t\t\t[173.251326, 52.944362],\n\t\t\t\t\t\t\t[173.295399, 52.926987],\n\t\t\t\t\t\t\t[173.421682, 52.845477],\n\t\t\t\t\t\t\t[173.427670, 52.830763],\n\t\t\t\t\t\t\t[173.423819, 52.828799],\n\t\t\t\t\t\t\t[173.413016, 52.827891],\n\t\t\t\t\t\t\t[173.302331, 52.823286],\n\t\t\t\t\t\t\t[173.284417, 52.827933],\n\t\t\t\t\t\t\t[173.229070, 52.856156],\n\t\t\t\t\t\t\t[173.224051, 52.856403],\n\t\t\t\t\t\t\t[173.204948, 52.848911],\n\t\t\t\t\t\t\t[173.187952, 52.831500],\n\t\t\t\t\t\t\t[173.173543, 52.804378],\n\t\t\t\t\t\t\t[173.166899, 52.795229],\n\t\t\t\t\t\t\t[173.142678, 52.786254],\n\t\t\t\t\t\t\t[173.134521, 52.784357],\n\t\t\t\t\t\t\t[173.118560, 52.784440],\n\t\t\t\t\t\t\t[172.998472, 52.796979],\n\t\t\t\t\t\t\t[172.903628, 52.761667],\n\t\t\t\t\t\t\t[172.809387, 52.789290],\n\t\t\t\t\t\t\t[172.763366, 52.823656]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-169.943521, 52.861099],\n\t\t\t\t\t\t\t[-169.905631, 52.853240],\n\t\t\t\t\t\t\t[-169.860214, 52.858377],\n\t\t\t\t\t\t\t[-169.818139, 52.878446],\n\t\t\t\t\t\t\t[-169.773504, 52.894450],\n\t\t\t\t\t\t\t[-169.749177, 52.893269],\n\t\t\t\t\t\t\t[-169.704736, 52.886272],\n\t\t\t\t\t\t\t[-169.666512, 52.864349],\n\t\t\t\t\t\t\t[-169.683482, 52.826618],\n\t\t\t\t\t\t\t[-169.704105, 52.793938],\n\t\t\t\t\t\t\t[-169.750136, 52.790576],\n\t\t\t\t\t\t\t[-169.838232, 52.817280],\n\t\t\t\t\t\t\t[-169.879866, 52.816088],\n\t\t\t\t\t\t\t[-169.886671, 52.808563],\n\t\t\t\t\t\t\t[-169.897078, 52.802131],\n\t\t\t\t\t\t\t[-169.927446, 52.792675],\n\t\t\t\t\t\t\t[-169.951498, 52.788615],\n\t\t\t\t\t\t\t[-169.962883, 52.789882],\n\t\t\t\t\t\t\t[-169.995422, 52.804676],\n\t\t\t\t\t\t\t[-170.012487, 52.831161],\n\t\t\t\t\t\t\t[-170.004218, 52.846743],\n\t\t\t\t\t\t\t[-169.990149, 52.856266],\n\t\t\t\t\t\t\t[-169.975345, 52.858884],\n\t\t\t\t\t\t\t[-169.943521, 52.861099]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-168.211705, 53.256184],\n\t\t\t\t\t\t\t[-168.226915, 53.254822],\n\t\t\t\t\t\t\t[-168.270744, 53.242811],\n\t\t\t\t\t\t\t[-168.296229, 53.227235],\n\t\t\t\t\t\t\t[-168.312376, 53.215231],\n\t\t\t\t\t\t\t[-168.341678, 53.185911],\n\t\t\t\t\t\t\t[-168.344468, 53.155215],\n\t\t\t\t\t\t\t[-168.373150, 53.128891],\n\t\t\t\t\t\t\t[-168.392379, 53.123609],\n\t\t\t\t\t\t\t[-168.412522, 53.110683],\n\t\t\t\t\t\t\t[-168.433734, 53.093934],\n\t\t\t\t\t\t\t[-168.442859, 53.085562],\n\t\t\t\t\t\t\t[-168.451161, 53.075131],\n\t\t\t\t\t\t\t[-168.457103, 53.055839],\n\t\t\t\t\t\t\t[-168.497490, 53.035403],\n\t\t\t\t\t\t\t[-168.527404, 53.028588],\n\t\t\t\t\t\t\t[-168.546059, 53.029580],\n\t\t\t\t\t\t\t[-168.553195, 53.033296],\n\t\t\t\t\t\t\t[-168.578895, 53.029915],\n\t\t\t\t\t\t\t[-168.587808, 53.027175],\n\t\t\t\t\t\t\t[-168.613964, 53.008776],\n\t\t\t\t\t\t\t[-168.625257, 52.998214],\n\t\t\t\t\t\t\t[-168.688468, 52.966400],\n\t\t\t\t\t\t\t[-168.741851, 52.951442],\n\t\t\t\t\t\t\t[-168.808854, 52.926102],\n\t\t\t\t\t\t\t[-168.907003, 52.884006],\n\t\t\t\t\t\t\t[-169.041338, 52.839348],\n\t\t\t\t\t\t\t[-169.102465, 52.824349],\n\t\t\t\t\t\t\t[-169.054243, 52.863266],\n\t\t\t\t\t\t\t[-169.038767, 52.869662],\n\t\t\t\t\t\t\t[-168.992403, 52.873440],\n\t\t\t\t\t\t\t[-168.971710, 52.878028],\n\t\t\t\t\t\t\t[-168.958983, 52.886048],\n\t\t\t\t\t\t\t[-168.861078, 52.968046],\n\t\t\t\t\t\t\t[-168.785236, 53.045038],\n\t\t\t\t\t\t\t[-168.763689, 53.070961],\n\t\t\t\t\t\t\t[-168.759691, 53.081461],\n\t\t\t\t\t\t\t[-168.768544, 53.093684],\n\t\t\t\t\t\t\t[-168.776176, 53.097766],\n\t\t\t\t\t\t\t[-168.789424, 53.100970],\n\t\t\t\t\t\t\t[-168.802030, 53.108226],\n\t\t\t\t\t\t\t[-168.804901, 53.120015],\n\t\t\t\t\t\t\t[-168.799469, 53.143794],\n\t\t\t\t\t\t\t[-168.792327, 53.155720],\n\t\t\t\t\t\t\t[-168.788756, 53.160749],\n\t\t\t\t\t\t\t[-168.763331, 53.182812],\n\t\t\t\t\t\t\t[-168.617143, 53.260985],\n\t\t\t\t\t\t\t[-168.539398, 53.251670],\n\t\t\t\t\t\t\t[-168.524991, 53.252311],\n\t\t\t\t\t\t\t[-168.501365, 53.257340],\n\t\t\t\t\t\t\t[-168.490957, 53.264009],\n\t\t\t\t\t\t\t[-168.445083, 53.265330],\n\t\t\t\t\t\t\t[-168.412851, 53.257859],\n\t\t\t\t\t\t\t[-168.366519, 53.252024],\n\t\t\t\t\t\t\t[-168.361758, 53.252253],\n\t\t\t\t\t\t\t[-168.343994, 53.262150],\n\t\t\t\t\t\t\t[-168.365388, 53.309105],\n\t\t\t\t\t\t\t[-168.371218, 53.316575],\n\t\t\t\t\t\t\t[-168.375674, 53.318291],\n\t\t\t\t\t\t\t[-168.406531, 53.346393],\n\t\t\t\t\t\t\t[-168.386886, 53.431496],\n\t\t\t\t\t\t\t[-168.342127, 53.475992],\n\t\t\t\t\t\t\t[-168.315847, 53.481729],\n\t\t\t\t\t\t\t[-168.295793, 53.489062],\n\t\t\t\t\t\t\t[-168.239572, 53.518491],\n\t\t\t\t\t\t\t[-168.238321, 53.521902],\n\t\t\t\t\t\t\t[-168.200443, 53.534079],\n\t\t\t\t\t\t\t[-168.144620, 53.545342],\n\t\t\t\t\t\t\t[-168.004624, 53.566053],\n\t\t\t\t\t\t\t[-167.981038, 53.561714],\n\t\t\t\t\t\t\t[-167.962723, 53.554069],\n\t\t\t\t\t\t\t[-167.960861, 53.552550],\n\t\t\t\t\t\t\t[-167.965714, 53.543440],\n\t\t\t\t\t\t\t[-167.965038, 53.538913],\n\t\t\t\t\t\t\t[-167.938981, 53.526907],\n\t\t\t\t\t\t\t[-167.901871, 53.520508],\n\t\t\t\t\t\t\t[-167.888901, 53.519691],\n\t\t\t\t\t\t\t[-167.816998, 53.517947],\n\t\t\t\t\t\t\t[-167.796866, 53.521113],\n\t\t\t\t\t\t\t[-167.791026, 53.521076],\n\t\t\t\t\t\t\t[-167.789164, 53.519329],\n\t\t\t\t\t\t\t[-167.786387, 53.513896],\n\t\t\t\t\t\t\t[-167.784099, 53.501048],\n\t\t\t\t\t\t\t[-167.788066, 53.492411],\n\t\t\t\t\t\t\t[-167.808117, 53.473861],\n\t\t\t\t\t\t\t[-167.843611, 53.453893],\n\t\t\t\t\t\t\t[-167.853225, 53.445469],\n\t\t\t\t\t\t\t[-167.858337, 53.437910],\n\t\t\t\t\t\t\t[-167.856837, 53.428609],\n\t\t\t\t\t\t\t[-167.851698, 53.421236],\n\t\t\t\t\t\t\t[-167.844800, 53.417497],\n\t\t\t\t\t\t\t[-167.839520, 53.410325],\n\t\t\t\t\t\t\t[-167.839887, 53.394432],\n\t\t\t\t\t\t\t[-167.842328, 53.386489],\n\t\t\t\t\t\t\t[-167.852217, 53.378294],\n\t\t\t\t\t\t\t[-167.872879, 53.367360],\n\t\t\t\t\t\t\t[-167.878128, 53.366902],\n\t\t\t\t\t\t\t[-167.959096, 53.341788],\n\t\t\t\t\t\t\t[-167.988487, 53.329578],\n\t\t\t\t\t\t\t[-168.009301, 53.317263],\n\t\t\t\t\t\t\t[-168.039760, 53.304276],\n\t\t\t\t\t\t\t[-168.158943, 53.267710],\n\t\t\t\t\t\t\t[-168.211705, 53.256184]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-169.996712, 52.891475],\n\t\t\t\t\t\t\t[-169.999094, 52.884034],\n\t\t\t\t\t\t\t[-170.002368, 52.880239],\n\t\t\t\t\t\t\t[-170.015514, 52.870260],\n\t\t\t\t\t\t\t[-170.050274, 52.857433],\n\t\t\t\t\t\t\t[-170.095331, 52.870851],\n\t\t\t\t\t\t\t[-170.113189, 52.891078],\n\t\t\t\t\t\t\t[-170.112853, 52.902043],\n\t\t\t\t\t\t\t[-170.092221, 52.919387],\n\t\t\t\t\t\t\t[-170.083985, 52.923640],\n\t\t\t\t\t\t\t[-170.046560, 52.923853],\n\t\t\t\t\t\t\t[-170.020493, 52.917171],\n\t\t\t\t\t\t\t[-170.002071, 52.910043],\n\t\t\t\t\t\t\t[-169.995982, 52.902378],\n\t\t\t\t\t\t\t[-169.996712, 52.891475]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-169.721744, 52.947117],\n\t\t\t\t\t\t\t[-169.741096, 52.951512],\n\t\t\t\t\t\t\t[-169.758008, 52.967246],\n\t\t\t\t\t\t\t[-169.760725, 52.971556],\n\t\t\t\t\t\t\t[-169.762740, 52.978050],\n\t\t\t\t\t\t\t[-169.745743, 53.021470],\n\t\t\t\t\t\t\t[-169.742538, 53.024072],\n\t\t\t\t\t\t\t[-169.698128, 53.033779],\n\t\t\t\t\t\t\t[-169.680033, 53.035075],\n\t\t\t\t\t\t\t[-169.664930, 53.023973],\n\t\t\t\t\t\t\t[-169.663576, 53.021258],\n\t\t\t\t\t\t\t[-169.666078, 52.997068],\n\t\t\t\t\t\t\t[-169.698274, 52.958267],\n\t\t\t\t\t\t\t[-169.721744, 52.947117]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-166.728918, 54.003111],\n\t\t\t\t\t\t\t[-166.676640, 54.017419],\n\t\t\t\t\t\t\t[-166.644627, 54.014495],\n\t\t\t\t\t\t\t[-166.636936, 54.012000],\n\t\t\t\t\t\t\t[-166.619754, 54.001264],\n\t\t\t\t\t\t\t[-166.599947, 53.983695],\n\t\t\t\t\t\t\t[-166.587393, 53.959831],\n\t\t\t\t\t\t\t[-166.605438, 53.955354],\n\t\t\t\t\t\t\t[-166.621979, 53.953744],\n\t\t\t\t\t\t\t[-166.646786, 53.923785],\n\t\t\t\t\t\t\t[-166.640466, 53.912519],\n\t\t\t\t\t\t\t[-166.619003, 53.893514],\n\t\t\t\t\t\t\t[-166.597182, 53.883990],\n\t\t\t\t\t\t\t[-166.575090, 53.879236],\n\t\t\t\t\t\t\t[-166.560546, 53.878775],\n\t\t\t\t\t\t\t[-166.487847, 53.895448],\n\t\t\t\t\t\t\t[-166.443699, 53.909727],\n\t\t\t\t\t\t\t[-166.436526, 53.916151],\n\t\t\t\t\t\t\t[-166.435153, 53.920415],\n\t\t\t\t\t\t\t[-166.437083, 53.955644],\n\t\t\t\t\t\t\t[-166.373689, 54.010030],\n\t\t\t\t\t\t\t[-166.367460, 54.008903],\n\t\t\t\t\t\t\t[-166.357117, 54.002343],\n\t\t\t\t\t\t\t[-166.354614, 53.999039],\n\t\t\t\t\t\t\t[-166.354341, 53.995515],\n\t\t\t\t\t\t\t[-166.359925, 53.977136],\n\t\t\t\t\t\t\t[-166.319895, 53.960126],\n\t\t\t\t\t\t\t[-166.279407, 53.982532],\n\t\t\t\t\t\t\t[-166.264519, 53.977550],\n\t\t\t\t\t\t\t[-166.210964, 53.933557],\n\t\t\t\t\t\t\t[-166.208767, 53.929110],\n\t\t\t\t\t\t\t[-166.211207, 53.912334],\n\t\t\t\t\t\t\t[-166.236513, 53.881343],\n\t\t\t\t\t\t\t[-166.250935, 53.876851],\n\t\t\t\t\t\t\t[-166.320004, 53.869527],\n\t\t\t\t\t\t\t[-166.351999, 53.858532],\n\t\t\t\t\t\t\t[-166.389196, 53.832343],\n\t\t\t\t\t\t\t[-166.404896, 53.809345],\n\t\t\t\t\t\t\t[-166.434846, 53.798012],\n\t\t\t\t\t\t\t[-166.547438, 53.749404],\n\t\t\t\t\t\t\t[-166.552078, 53.728498],\n\t\t\t\t\t\t\t[-166.540531, 53.715926],\n\t\t\t\t\t\t\t[-166.469112, 53.735935],\n\t\t\t\t\t\t\t[-166.460324, 53.745838],\n\t\t\t\t\t\t\t[-166.420471, 53.762088],\n\t\t\t\t\t\t\t[-166.336768, 53.787090],\n\t\t\t\t\t\t\t[-166.303201, 53.791538],\n\t\t\t\t\t\t\t[-166.212603, 53.817127],\n\t\t\t\t\t\t\t[-166.214312, 53.820430],\n\t\t\t\t\t\t\t[-166.212330, 53.827769],\n\t\t\t\t\t\t\t[-166.198751, 53.836100],\n\t\t\t\t\t\t\t[-166.119922, 53.855048],\n\t\t\t\t\t\t\t[-166.113037, 53.853716],\n\t\t\t\t\t\t\t[-166.097565, 53.843990],\n\t\t\t\t\t\t\t[-166.094147, 53.839200],\n\t\t\t\t\t\t\t[-166.111317, 53.776856],\n\t\t\t\t\t\t\t[-166.166703, 53.733402],\n\t\t\t\t\t\t\t[-166.199060, 53.727328],\n\t\t\t\t\t\t\t[-166.262974, 53.703710],\n\t\t\t\t\t\t\t[-166.265182, 53.698248],\n\t\t\t\t\t\t\t[-166.274896, 53.687253],\n\t\t\t\t\t\t\t[-166.283267, 53.684219],\n\t\t\t\t\t\t\t[-166.444909, 53.640646],\n\t\t\t\t\t\t\t[-166.467583, 53.646574],\n\t\t\t\t\t\t\t[-166.532639, 53.630533],\n\t\t\t\t\t\t\t[-166.553983, 53.623448],\n\t\t\t\t\t\t\t[-166.581011, 53.530449],\n\t\t\t\t\t\t\t[-166.656234, 53.487119],\n\t\t\t\t\t\t\t[-166.662276, 53.485349],\n\t\t\t\t\t\t\t[-166.667921, 53.486027],\n\t\t\t\t\t\t\t[-166.712475, 53.498445],\n\t\t\t\t\t\t\t[-166.735039, 53.506640],\n\t\t\t\t\t\t\t[-166.743054, 53.514820],\n\t\t\t\t\t\t\t[-166.772655, 53.496371],\n\t\t\t\t\t\t\t[-166.789062, 53.453100],\n\t\t\t\t\t\t\t[-166.863119, 53.443878],\n\t\t\t\t\t\t\t[-166.878087, 53.429884],\n\t\t\t\t\t\t\t[-166.922674, 53.441136],\n\t\t\t\t\t\t\t[-166.959082, 53.455753],\n\t\t\t\t\t\t\t[-166.994329, 53.429201],\n\t\t\t\t\t\t\t[-167.036104, 53.449289],\n\t\t\t\t\t\t\t[-167.048210, 53.448844],\n\t\t\t\t\t\t\t[-167.050025, 53.433067],\n\t\t\t\t\t\t\t[-167.075386, 53.424979],\n\t\t\t\t\t\t\t[-167.112008, 53.416775],\n\t\t\t\t\t\t\t[-167.124277, 53.425534],\n\t\t\t\t\t\t\t[-167.134134, 53.426448],\n\t\t\t\t\t\t\t[-167.201432, 53.397900],\n\t\t\t\t\t\t\t[-167.291831, 53.364102],\n\t\t\t\t\t\t\t[-167.302982, 53.336911],\n\t\t\t\t\t\t\t[-167.308126, 53.334330],\n\t\t\t\t\t\t\t[-167.348653, 53.333262],\n\t\t\t\t\t\t\t[-167.386984, 53.340671],\n\t\t\t\t\t\t\t[-167.442804, 53.321015],\n\t\t\t\t\t\t\t[-167.466304, 53.295888],\n\t\t\t\t\t\t\t[-167.488215, 53.269121],\n\t\t\t\t\t\t\t[-167.515470, 53.267876],\n\t\t\t\t\t\t\t[-167.530884, 53.275659],\n\t\t\t\t\t\t\t[-167.539247, 53.277864],\n\t\t\t\t\t\t\t[-167.589180, 53.288698],\n\t\t\t\t\t\t\t[-167.598428, 53.288048],\n\t\t\t\t\t\t\t[-167.609903, 53.285300],\n\t\t\t\t\t\t\t[-167.622173, 53.250362],\n\t\t\t\t\t\t\t[-167.644179, 53.250842],\n\t\t\t\t\t\t\t[-167.798984, 53.284757],\n\t\t\t\t\t\t\t[-167.835090, 53.299620],\n\t\t\t\t\t\t\t[-167.851511, 53.308668],\n\t\t\t\t\t\t\t[-167.852333, 53.315599],\n\t\t\t\t\t\t\t[-167.790928, 53.335520],\n\t\t\t\t\t\t\t[-167.710446, 53.381326],\n\t\t\t\t\t\t\t[-167.694484, 53.388034],\n\t\t\t\t\t\t\t[-167.653113, 53.392276],\n\t\t\t\t\t\t\t[-167.622089, 53.385329],\n\t\t\t\t\t\t\t[-167.488252, 53.420001],\n\t\t\t\t\t\t\t[-167.474457, 53.431782],\n\t\t\t\t\t\t\t[-167.473328, 53.438001],\n\t\t\t\t\t\t\t[-167.457366, 53.442793],\n\t\t\t\t\t\t\t[-167.393985, 53.439752],\n\t\t\t\t\t\t\t[-167.373527, 53.432776],\n\t\t\t\t\t\t\t[-167.355624, 53.424498],\n\t\t\t\t\t\t\t[-167.332792, 53.433107],\n\t\t\t\t\t\t\t[-167.319143, 53.451317],\n\t\t\t\t\t\t\t[-167.301290, 53.466006],\n\t\t\t\t\t\t\t[-167.278827, 53.478565],\n\t\t\t\t\t\t\t[-167.267902, 53.478115],\n\t\t\t\t\t\t\t[-167.226182, 53.468692],\n\t\t\t\t\t\t\t[-167.217606, 53.465389],\n\t\t\t\t\t\t\t[-167.199966, 53.463039],\n\t\t\t\t\t\t\t[-167.193801, 53.467007],\n\t\t\t\t\t\t\t[-167.158520, 53.503747],\n\t\t\t\t\t\t\t[-167.102305, 53.515077],\n\t\t\t\t\t\t\t[-167.105816, 53.540507],\n\t\t\t\t\t\t\t[-167.131239, 53.547267],\n\t\t\t\t\t\t\t[-167.135695, 53.551227],\n\t\t\t\t\t\t\t[-167.161640, 53.605909],\n\t\t\t\t\t\t\t[-167.163196, 53.613813],\n\t\t\t\t\t\t\t[-167.159808, 53.617308],\n\t\t\t\t\t\t\t[-167.140430, 53.626968],\n\t\t\t\t\t\t\t[-167.107836, 53.633056],\n\t\t\t\t\t\t\t[-167.091377, 53.633438],\n\t\t\t\t\t\t\t[-167.084579, 53.626502],\n\t\t\t\t\t\t\t[-167.070082, 53.619857],\n\t\t\t\t\t\t\t[-167.062187, 53.620058],\n\t\t\t\t\t\t\t[-167.009635, 53.635344],\n\t\t\t\t\t\t\t[-167.008671, 53.642040],\n\t\t\t\t\t\t\t[-167.017863, 53.648607],\n\t\t\t\t\t\t\t[-167.030011, 53.653559],\n\t\t\t\t\t\t\t[-167.071823, 53.665560],\n\t\t\t\t\t\t\t[-167.067674, 53.687267],\n\t\t\t\t\t\t\t[-167.057695, 53.698864],\n\t\t\t\t\t\t\t[-167.041245, 53.707929],\n\t\t\t\t\t\t\t[-167.022385, 53.715467],\n\t\t\t\t\t\t\t[-166.999282, 53.718520],\n\t\t\t\t\t\t\t[-166.923324, 53.719719],\n\t\t\t\t\t\t\t[-166.894976, 53.717746],\n\t\t\t\t\t\t\t[-166.859022, 53.674439],\n\t\t\t\t\t\t\t[-166.861769, 53.659234],\n\t\t\t\t\t\t\t[-166.832725, 53.657376],\n\t\t\t\t\t\t\t[-166.805874, 53.665733],\n\t\t\t\t\t\t\t[-166.779991, 53.719126],\n\t\t\t\t\t\t\t[-166.787318, 53.734577],\n\t\t\t\t\t\t\t[-166.856491, 53.747301],\n\t\t\t\t\t\t\t[-166.942766, 53.769562],\n\t\t\t\t\t\t\t[-166.960681, 53.776841],\n\t\t\t\t\t\t\t[-166.975635, 53.775254],\n\t\t\t\t\t\t\t[-166.983294, 53.771348],\n\t\t\t\t\t\t\t[-166.992846, 53.762604],\n\t\t\t\t\t\t\t[-167.005778, 53.755446],\n\t\t\t\t\t\t\t[-167.016863, 53.754936],\n\t\t\t\t\t\t\t[-167.024981, 53.757241],\n\t\t\t\t\t\t\t[-167.075859, 53.786272],\n\t\t\t\t\t\t\t[-167.141966, 53.826932],\n\t\t\t\t\t\t\t[-167.140992, 53.866774],\n\t\t\t\t\t\t\t[-167.058168, 53.929778],\n\t\t\t\t\t\t\t[-167.031252, 53.945204],\n\t\t\t\t\t\t\t[-166.930452, 53.976091],\n\t\t\t\t\t\t\t[-166.879488, 53.988716],\n\t\t\t\t\t\t\t[-166.818635, 53.993198],\n\t\t\t\t\t\t\t[-166.751681, 54.016050],\n\t\t\t\t\t\t\t[-166.746095, 54.016936],\n\t\t\t\t\t\t\t[-166.742587, 54.015501],\n\t\t\t\t\t\t\t[-166.728918, 54.003111]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-169.553937, 56.608682],\n\t\t\t\t\t\t\t[-169.528659, 56.612181],\n\t\t\t\t\t\t\t[-169.507415, 56.610702],\n\t\t\t\t\t\t\t[-169.473138, 56.601741],\n\t\t\t\t\t\t\t[-169.471550, 56.598864],\n\t\t\t\t\t\t\t[-169.490133, 56.583482],\n\t\t\t\t\t\t\t[-169.568984, 56.540935],\n\t\t\t\t\t\t\t[-169.582624, 56.536939],\n\t\t\t\t\t\t\t[-169.640735, 56.542162],\n\t\t\t\t\t\t\t[-169.650135, 56.544230],\n\t\t\t\t\t\t\t[-169.657736, 56.547319],\n\t\t\t\t\t\t\t[-169.667749, 56.554535],\n\t\t\t\t\t\t\t[-169.672818, 56.560866],\n\t\t\t\t\t\t\t[-169.671324, 56.567328],\n\t\t\t\t\t\t\t[-169.675327, 56.578414],\n\t\t\t\t\t\t\t[-169.683639, 56.583340],\n\t\t\t\t\t\t\t[-169.755750, 56.591922],\n\t\t\t\t\t\t\t[-169.785692, 56.613245],\n\t\t\t\t\t\t\t[-169.789659, 56.618217],\n\t\t\t\t\t\t\t[-169.763506, 56.620739],\n\t\t\t\t\t\t\t[-169.679305, 56.611593],\n\t\t\t\t\t\t\t[-169.611548, 56.606924],\n\t\t\t\t\t\t\t[-169.553937, 56.608682]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-170.286318, 57.128169],\n\t\t\t\t\t\t\t[-170.290793, 57.145052],\n\t\t\t\t\t\t\t[-170.303963, 57.154910],\n\t\t\t\t\t\t\t[-170.324840, 57.156769],\n\t\t\t\t\t\t\t[-170.359817, 57.156118],\n\t\t\t\t\t\t\t[-170.421867, 57.161202],\n\t\t\t\t\t\t\t[-170.423548, 57.169327],\n\t\t\t\t\t\t\t[-170.420410, 57.191760],\n\t\t\t\t\t\t\t[-170.418919, 57.192844],\n\t\t\t\t\t\t\t[-170.402772, 57.201933],\n\t\t\t\t\t\t\t[-170.390121, 57.206248],\n\t\t\t\t\t\t\t[-170.331880, 57.217488],\n\t\t\t\t\t\t\t[-170.311707, 57.219122],\n\t\t\t\t\t\t\t[-170.291916, 57.212056],\n\t\t\t\t\t\t\t[-170.267664, 57.210649],\n\t\t\t\t\t\t\t[-170.239557, 57.214658],\n\t\t\t\t\t\t\t[-170.161647, 57.229656],\n\t\t\t\t\t\t\t[-170.150813, 57.223168],\n\t\t\t\t\t\t\t[-170.170848, 57.181100],\n\t\t\t\t\t\t\t[-170.286318, 57.128169]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US02060\",\n\t\t\t\t\"STATE\": \"02\",\n\t\t\t\t\"COUNTY\": \"060\",\n\t\t\t\t\"NAME\": \"Bristol Bay\",\n\t\t\t\t\"LSAD\": \"Borough\",\n\t\t\t\t\"CENSUSAREA\": 503.843000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-156.985833, 58.888654],\n\t\t\t\t\t\t[-156.318135, 58.894948],\n\t\t\t\t\t\t[-156.317671, 58.609610],\n\t\t\t\t\t\t[-157.267437, 58.609794],\n\t\t\t\t\t\t[-157.251462, 58.620786],\n\t\t\t\t\t\t[-157.178834, 58.660440],\n\t\t\t\t\t\t[-157.077914, 58.708103],\n\t\t\t\t\t\t[-157.061928, 58.726102],\n\t\t\t\t\t\t[-157.008226, 58.817139],\n\t\t\t\t\t\t[-157.003401, 58.836822],\n\t\t\t\t\t\t[-157.003607, 58.839306],\n\t\t\t\t\t\t[-157.010984, 58.848400],\n\t\t\t\t\t\t[-157.016088, 58.863490],\n\t\t\t\t\t\t[-157.012392, 58.875889],\n\t\t\t\t\t\t[-156.985833, 58.888654]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72017\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"017\",\n\t\t\t\t\"NAME\": \"Barceloneta\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 18.693000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-66.586778, 18.484948],\n\t\t\t\t\t\t[-66.584074, 18.484287],\n\t\t\t\t\t\t[-66.565241, 18.485523],\n\t\t\t\t\t\t[-66.562916, 18.488450],\n\t\t\t\t\t\t[-66.563485, 18.490512],\n\t\t\t\t\t\t[-66.558503, 18.489987],\n\t\t\t\t\t\t[-66.534840, 18.481253],\n\t\t\t\t\t\t[-66.533487, 18.481663],\n\t\t\t\t\t\t[-66.543079, 18.405422],\n\t\t\t\t\t\t[-66.564313, 18.413309],\n\t\t\t\t\t\t[-66.588181, 18.389408],\n\t\t\t\t\t\t[-66.586778, 18.484948]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72021\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"021\",\n\t\t\t\t\"NAME\": \"Bayam�n\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 44.324000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-66.143861, 18.279590],\n\t\t\t\t\t\t[-66.177099, 18.276194],\n\t\t\t\t\t\t[-66.190676, 18.258840],\n\t\t\t\t\t\t[-66.193248, 18.268138],\n\t\t\t\t\t\t[-66.200802, 18.271477],\n\t\t\t\t\t\t[-66.201280, 18.276280],\n\t\t\t\t\t\t[-66.206135, 18.276660],\n\t\t\t\t\t\t[-66.213072, 18.307003],\n\t\t\t\t\t\t[-66.205908, 18.306921],\n\t\t\t\t\t\t[-66.204734, 18.316035],\n\t\t\t\t\t\t[-66.201531, 18.328983],\n\t\t\t\t\t\t[-66.203616, 18.336673],\n\t\t\t\t\t\t[-66.197293, 18.360199],\n\t\t\t\t\t\t[-66.199568, 18.369616],\n\t\t\t\t\t\t[-66.196980, 18.389289],\n\t\t\t\t\t\t[-66.198013, 18.414626],\n\t\t\t\t\t\t[-66.172653, 18.421050],\n\t\t\t\t\t\t[-66.169516, 18.430998],\n\t\t\t\t\t\t[-66.157782, 18.420843],\n\t\t\t\t\t\t[-66.131580, 18.424656],\n\t\t\t\t\t\t[-66.143861, 18.279590]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72029\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"029\",\n\t\t\t\t\"NAME\": \"Can�vanas\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 32.865000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-65.919278, 18.402993],\n\t\t\t\t\t\t[-65.867478, 18.378128],\n\t\t\t\t\t\t[-65.836387, 18.275246],\n\t\t\t\t\t\t[-65.839854, 18.265696],\n\t\t\t\t\t\t[-65.846289, 18.258083],\n\t\t\t\t\t\t[-65.852616, 18.254972],\n\t\t\t\t\t\t[-65.874602, 18.253081],\n\t\t\t\t\t\t[-65.889216, 18.261757],\n\t\t\t\t\t\t[-65.918535, 18.270130],\n\t\t\t\t\t\t[-65.919278, 18.402993]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72039\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"039\",\n\t\t\t\t\"NAME\": \"Ciales\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 66.529000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-66.463211, 18.371473],\n\t\t\t\t\t\t[-66.455703, 18.257726],\n\t\t\t\t\t\t[-66.500762, 18.256011],\n\t\t\t\t\t\t[-66.543133, 18.163098],\n\t\t\t\t\t\t[-66.566620, 18.298549],\n\t\t\t\t\t\t[-66.585269, 18.322689],\n\t\t\t\t\t\t[-66.604552, 18.321306],\n\t\t\t\t\t\t[-66.606989, 18.328186],\n\t\t\t\t\t\t[-66.600229, 18.339603],\n\t\t\t\t\t\t[-66.590785, 18.338060],\n\t\t\t\t\t\t[-66.573822, 18.342517],\n\t\t\t\t\t\t[-66.552734, 18.340438],\n\t\t\t\t\t\t[-66.533623, 18.351333],\n\t\t\t\t\t\t[-66.528304, 18.350564],\n\t\t\t\t\t\t[-66.511776, 18.362003],\n\t\t\t\t\t\t[-66.494806, 18.366445],\n\t\t\t\t\t\t[-66.473346, 18.367604],\n\t\t\t\t\t\t[-66.463211, 18.371473]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72051\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"051\",\n\t\t\t\t\"NAME\": \"Dorado\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 23.089000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-66.303663, 18.384077],\n\t\t\t\t\t\t[-66.315030, 18.474680],\n\t\t\t\t\t\t[-66.291225, 18.472347],\n\t\t\t\t\t\t[-66.283675, 18.472203],\n\t\t\t\t\t\t[-66.276599, 18.478129],\n\t\t\t\t\t\t[-66.269799, 18.480281],\n\t\t\t\t\t\t[-66.258015, 18.476906],\n\t\t\t\t\t\t[-66.251547, 18.472464],\n\t\t\t\t\t\t[-66.241797, 18.468740],\n\t\t\t\t\t\t[-66.220148, 18.466000],\n\t\t\t\t\t\t[-66.199032, 18.466163],\n\t\t\t\t\t\t[-66.252554, 18.394187],\n\t\t\t\t\t\t[-66.271288, 18.383718],\n\t\t\t\t\t\t[-66.303663, 18.384077]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72063\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"063\",\n\t\t\t\t\"NAME\": \"Gurabo\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 27.887000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-66.021747, 18.305034],\n\t\t\t\t\t\t[-65.942429, 18.293469],\n\t\t\t\t\t\t[-65.939296, 18.286771],\n\t\t\t\t\t\t[-65.924175, 18.272622],\n\t\t\t\t\t\t[-65.918535, 18.270130],\n\t\t\t\t\t\t[-65.951019, 18.229292],\n\t\t\t\t\t\t[-65.971036, 18.229239],\n\t\t\t\t\t\t[-65.988847, 18.220472],\n\t\t\t\t\t\t[-65.997650, 18.206992],\n\t\t\t\t\t\t[-66.021747, 18.305034]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72077\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"077\",\n\t\t\t\t\"NAME\": \"Juncos\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 26.489000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-65.928341, 18.142845],\n\t\t\t\t\t\t[-65.951019, 18.229292],\n\t\t\t\t\t\t[-65.918535, 18.270130],\n\t\t\t\t\t\t[-65.889216, 18.261757],\n\t\t\t\t\t\t[-65.874602, 18.253081],\n\t\t\t\t\t\t[-65.852616, 18.254972],\n\t\t\t\t\t\t[-65.928341, 18.142845]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72085\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"085\",\n\t\t\t\t\"NAME\": \"Las Piedras\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 33.880000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-65.836387, 18.275246],\n\t\t\t\t\t\t[-65.831717, 18.271736],\n\t\t\t\t\t\t[-65.824220, 18.273054],\n\t\t\t\t\t\t[-65.823769, 18.268738],\n\t\t\t\t\t\t[-65.815664, 18.262527],\n\t\t\t\t\t\t[-65.817246, 18.252327],\n\t\t\t\t\t\t[-65.822164, 18.244701],\n\t\t\t\t\t\t[-65.828789, 18.230243],\n\t\t\t\t\t\t[-65.831388, 18.214222],\n\t\t\t\t\t\t[-65.826063, 18.200408],\n\t\t\t\t\t\t[-65.877615, 18.118167],\n\t\t\t\t\t\t[-65.900893, 18.125856],\n\t\t\t\t\t\t[-65.926227, 18.119963],\n\t\t\t\t\t\t[-65.927429, 18.121821],\n\t\t\t\t\t\t[-65.924448, 18.135673],\n\t\t\t\t\t\t[-65.928341, 18.142845],\n\t\t\t\t\t\t[-65.852616, 18.254972],\n\t\t\t\t\t\t[-65.846289, 18.258083],\n\t\t\t\t\t\t[-65.839854, 18.265696],\n\t\t\t\t\t\t[-65.836387, 18.275246]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72099\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"099\",\n\t\t\t\t\"NAME\": \"Moca\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 50.344000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-67.027173, 18.393376],\n\t\t\t\t\t\t[-67.052583, 18.306655],\n\t\t\t\t\t\t[-67.121432, 18.323938],\n\t\t\t\t\t\t[-67.130167, 18.317927],\n\t\t\t\t\t\t[-67.130389, 18.325143],\n\t\t\t\t\t\t[-67.134138, 18.330531],\n\t\t\t\t\t\t[-67.131025, 18.334689],\n\t\t\t\t\t\t[-67.134515, 18.346514],\n\t\t\t\t\t\t[-67.128124, 18.353859],\n\t\t\t\t\t\t[-67.128629, 18.365545],\n\t\t\t\t\t\t[-67.126434, 18.371203],\n\t\t\t\t\t\t[-67.132210, 18.389391],\n\t\t\t\t\t\t[-67.056515, 18.460984],\n\t\t\t\t\t\t[-67.052813, 18.448354],\n\t\t\t\t\t\t[-67.027173, 18.393376]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72111\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"111\",\n\t\t\t\t\"NAME\": \"Pe�uelas\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 44.617000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-66.694070, 18.130534],\n\t\t\t\t\t\t[-66.699115, 17.977568],\n\t\t\t\t\t\t[-66.709856, 17.982109],\n\t\t\t\t\t\t[-66.713394, 17.987763],\n\t\t\t\t\t\t[-66.716957, 17.990344],\n\t\t\t\t\t\t[-66.731118, 17.991658],\n\t\t\t\t\t\t[-66.746248, 17.990349],\n\t\t\t\t\t\t[-66.750427, 17.995443],\n\t\t\t\t\t\t[-66.753964, 17.999590],\n\t\t\t\t\t\t[-66.769049, 18.134983],\n\t\t\t\t\t\t[-66.694070, 18.130534]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72123\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"123\",\n\t\t\t\t\"NAME\": \"Salinas\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 69.365000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-66.338152, 17.976492],\n\t\t\t\t\t\t[-66.342515, 17.993786],\n\t\t\t\t\t\t[-66.331244, 18.015891],\n\t\t\t\t\t\t[-66.257527, 18.075884],\n\t\t\t\t\t\t[-66.242238, 18.077148],\n\t\t\t\t\t\t[-66.242890, 18.079405],\n\t\t\t\t\t\t[-66.240900, 18.081894],\n\t\t\t\t\t\t[-66.239785, 18.084691],\n\t\t\t\t\t\t[-66.240053, 18.093186],\n\t\t\t\t\t\t[-66.234899, 18.094213],\n\t\t\t\t\t\t[-66.230920, 18.095925],\n\t\t\t\t\t\t[-66.229539, 18.095370],\n\t\t\t\t\t\t[-66.224490, 18.095339],\n\t\t\t\t\t\t[-66.166145, 18.050063],\n\t\t\t\t\t\t[-66.206207, 17.963050],\n\t\t\t\t\t\t[-66.206807, 17.963307],\n\t\t\t\t\t\t[-66.215355, 17.959376],\n\t\t\t\t\t\t[-66.218081, 17.957290],\n\t\t\t\t\t\t[-66.231519, 17.943912],\n\t\t\t\t\t\t[-66.229181, 17.934651],\n\t\t\t\t\t\t[-66.232013, 17.931154],\n\t\t\t\t\t\t[-66.252737, 17.934574],\n\t\t\t\t\t\t[-66.260684, 17.936083],\n\t\t\t\t\t\t[-66.270905, 17.947098],\n\t\t\t\t\t\t[-66.275651, 17.948260],\n\t\t\t\t\t\t[-66.290782, 17.946491],\n\t\t\t\t\t\t[-66.297679, 17.959148],\n\t\t\t\t\t\t[-66.316950, 17.976683],\n\t\t\t\t\t\t[-66.323659, 17.978536],\n\t\t\t\t\t\t[-66.338152, 17.976492]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72139\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"139\",\n\t\t\t\t\"NAME\": \"Trujillo Alto\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 20.764000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-65.999556, 18.380065],\n\t\t\t\t\t\t[-65.942429, 18.293469],\n\t\t\t\t\t\t[-66.021747, 18.305034],\n\t\t\t\t\t\t[-66.027073, 18.310201],\n\t\t\t\t\t\t[-66.031631, 18.308877],\n\t\t\t\t\t\t[-66.041535, 18.312344],\n\t\t\t\t\t\t[-65.999556, 18.380065]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20179\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"179\",\n\t\t\t\t\"NAME\": \"Sheridan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 895.957000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.720213, 39.568034],\n\t\t\t\t\t\t[-100.180351, 39.566890],\n\t\t\t\t\t\t[-100.161667, 39.567277],\n\t\t\t\t\t\t[-100.164200, 39.132071],\n\t\t\t\t\t\t[-100.721296, 39.133381],\n\t\t\t\t\t\t[-100.720213, 39.568034]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20191\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"191\",\n\t\t\t\t\"NAME\": \"Sumner\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1181.941000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.147721, 36.999111],\n\t\t\t\t\t\t[-97.372421, 36.998861],\n\t\t\t\t\t\t[-97.384925, 36.998843],\n\t\t\t\t\t\t[-97.462280, 36.998685],\n\t\t\t\t\t\t[-97.462346, 36.998685],\n\t\t\t\t\t\t[-97.472861, 36.998721],\n\t\t\t\t\t\t[-97.527292, 36.998750],\n\t\t\t\t\t\t[-97.545900, 36.998709],\n\t\t\t\t\t\t[-97.546498, 36.998747],\n\t\t\t\t\t\t[-97.564536, 36.998711],\n\t\t\t\t\t\t[-97.606549, 36.998682],\n\t\t\t\t\t\t[-97.637137, 36.999090],\n\t\t\t\t\t\t[-97.650466, 36.999004],\n\t\t\t\t\t\t[-97.697104, 36.998826],\n\t\t\t\t\t\t[-97.768704, 36.998750],\n\t\t\t\t\t\t[-97.783432, 36.998961],\n\t\t\t\t\t\t[-97.783489, 36.998847],\n\t\t\t\t\t\t[-97.802298, 36.998713],\n\t\t\t\t\t\t[-97.802313, 36.998713],\n\t\t\t\t\t\t[-97.804566, 37.386298],\n\t\t\t\t\t\t[-97.807057, 37.386293],\n\t\t\t\t\t\t[-97.807576, 37.473888],\n\t\t\t\t\t\t[-97.807600, 37.474184],\n\t\t\t\t\t\t[-97.153331, 37.475544],\n\t\t\t\t\t\t[-97.147721, 36.999111]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20209\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"209\",\n\t\t\t\t\"NAME\": \"Wyandotte\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 151.600000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.607354, 39.113444],\n\t\t\t\t\t\t[-94.607234, 39.089604],\n\t\t\t\t\t\t[-94.607334, 39.081704],\n\t\t\t\t\t\t[-94.607234, 39.065704],\n\t\t\t\t\t\t[-94.607391, 39.044086],\n\t\t\t\t\t\t[-94.872442, 39.059088],\n\t\t\t\t\t\t[-94.908765, 38.991401],\n\t\t\t\t\t\t[-94.900191, 39.202911],\n\t\t\t\t\t\t[-94.793948, 39.201276],\n\t\t\t\t\t\t[-94.752338, 39.173203],\n\t\t\t\t\t\t[-94.736537, 39.169203],\n\t\t\t\t\t\t[-94.723637, 39.169003],\n\t\t\t\t\t\t[-94.714137, 39.170403],\n\t\t\t\t\t\t[-94.706723, 39.173801],\n\t\t\t\t\t\t[-94.601733, 39.159603],\n\t\t\t\t\t\t[-94.596033, 39.157703],\n\t\t\t\t\t\t[-94.591933, 39.155003],\n\t\t\t\t\t\t[-94.589933, 39.140403],\n\t\t\t\t\t\t[-94.607354, 39.113444]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21185\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"185\",\n\t\t\t\t\"NAME\": \"Oldham\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 187.218000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.468206, 38.285309],\n\t\t\t\t\t\t[-85.638044, 38.380270],\n\t\t\t\t\t\t[-85.638041, 38.380338],\n\t\t\t\t\t\t[-85.632937, 38.395666],\n\t\t\t\t\t\t[-85.620521, 38.423105],\n\t\t\t\t\t\t[-85.607629, 38.439295],\n\t\t\t\t\t\t[-85.462518, 38.512602],\n\t\t\t\t\t\t[-85.433136, 38.523914],\n\t\t\t\t\t\t[-85.432928, 38.524072],\n\t\t\t\t\t\t[-85.314006, 38.492592],\n\t\t\t\t\t\t[-85.346080, 38.459540],\n\t\t\t\t\t\t[-85.283082, 38.358054],\n\t\t\t\t\t\t[-85.324453, 38.310112],\n\t\t\t\t\t\t[-85.468206, 38.285309]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21197\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"197\",\n\t\t\t\t\"NAME\": \"Powell\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 178.979000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.722100, 37.716420],\n\t\t\t\t\t\t[-83.906251, 37.759363],\n\t\t\t\t\t\t[-84.001967, 37.837592],\n\t\t\t\t\t\t[-83.966310, 37.930768],\n\t\t\t\t\t\t[-83.768783, 37.918371],\n\t\t\t\t\t\t[-83.631060, 37.825372],\n\t\t\t\t\t\t[-83.707974, 37.716463],\n\t\t\t\t\t\t[-83.712210, 37.720135],\n\t\t\t\t\t\t[-83.722100, 37.716420]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21203\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"203\",\n\t\t\t\t\"NAME\": \"Rockcastle\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 316.545000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.502932, 37.328801],\n\t\t\t\t\t\t[-84.446719, 37.485893],\n\t\t\t\t\t\t[-84.374440, 37.472663],\n\t\t\t\t\t\t[-84.347805, 37.539064],\n\t\t\t\t\t\t[-84.199489, 37.522858],\n\t\t\t\t\t\t[-84.137898, 37.319759],\n\t\t\t\t\t\t[-84.253696, 37.239516],\n\t\t\t\t\t\t[-84.289076, 37.151740],\n\t\t\t\t\t\t[-84.502932, 37.328801]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21215\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"215\",\n\t\t\t\t\"NAME\": \"Spencer\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 186.677000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.489202, 37.990654],\n\t\t\t\t\t\t[-85.428830, 38.118383],\n\t\t\t\t\t\t[-85.424054, 38.147438],\n\t\t\t\t\t\t[-85.232406, 38.089431],\n\t\t\t\t\t\t[-85.101646, 38.037270],\n\t\t\t\t\t\t[-85.167834, 37.971809],\n\t\t\t\t\t\t[-85.399871, 37.939956],\n\t\t\t\t\t\t[-85.489202, 37.990654]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21227\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"227\",\n\t\t\t\t\"NAME\": \"Warren\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 541.600000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.399165, 37.169896],\n\t\t\t\t\t\t[-86.281750, 37.080597],\n\t\t\t\t\t\t[-86.218607, 37.104029],\n\t\t\t\t\t\t[-86.113512, 37.061072],\n\t\t\t\t\t\t[-86.166740, 36.934015],\n\t\t\t\t\t\t[-86.405769, 36.776187],\n\t\t\t\t\t\t[-86.400518, 36.807226],\n\t\t\t\t\t\t[-86.583289, 36.830282],\n\t\t\t\t\t\t[-86.611586, 36.883057],\n\t\t\t\t\t\t[-86.674462, 36.999766],\n\t\t\t\t\t\t[-86.618158, 37.183906],\n\t\t\t\t\t\t[-86.399165, 37.169896]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21235\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"235\",\n\t\t\t\t\"NAME\": \"Whitley\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 437.830000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.930669, 36.588249],\n\t\t\t\t\t\t[-83.987612, 36.589595],\n\t\t\t\t\t\t[-83.987842, 36.589600],\n\t\t\t\t\t\t[-84.227295, 36.591685],\n\t\t\t\t\t\t[-84.307598, 36.676809],\n\t\t\t\t\t\t[-84.350006, 36.780681],\n\t\t\t\t\t\t[-84.297416, 36.945931],\n\t\t\t\t\t\t[-84.091853, 36.955992],\n\t\t\t\t\t\t[-84.065755, 36.853961],\n\t\t\t\t\t\t[-83.958534, 36.727245],\n\t\t\t\t\t\t[-83.877503, 36.687259],\n\t\t\t\t\t\t[-83.957274, 36.642204],\n\t\t\t\t\t\t[-83.930669, 36.588249]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22007\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"007\",\n\t\t\t\t\"NAME\": \"Assumption\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 338.658000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.224356, 30.025336],\n\t\t\t\t\t\t[-91.105951, 30.062478],\n\t\t\t\t\t\t[-90.963693, 30.066450],\n\t\t\t\t\t\t[-90.959869, 29.977924],\n\t\t\t\t\t\t[-90.885589, 29.905353],\n\t\t\t\t\t\t[-91.006743, 29.714771],\n\t\t\t\t\t\t[-91.082602, 29.626368],\n\t\t\t\t\t\t[-91.104912, 29.642496],\n\t\t\t\t\t\t[-91.100010, 29.699402],\n\t\t\t\t\t\t[-91.092748, 29.801574],\n\t\t\t\t\t\t[-91.182817, 29.846172],\n\t\t\t\t\t\t[-91.255229, 29.971457],\n\t\t\t\t\t\t[-91.259388, 30.000200],\n\t\t\t\t\t\t[-91.235889, 30.001128],\n\t\t\t\t\t\t[-91.224356, 30.025336]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22021\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"021\",\n\t\t\t\t\"NAME\": \"Caldwell\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 529.425000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.312623, 31.927382],\n\t\t\t\t\t\t[-92.312218, 32.146123],\n\t\t\t\t\t\t[-92.311851, 32.277441],\n\t\t\t\t\t\t[-92.034397, 32.277068],\n\t\t\t\t\t\t[-91.979868, 32.166148],\n\t\t\t\t\t\t[-91.894729, 32.151550],\n\t\t\t\t\t\t[-91.889687, 31.971474],\n\t\t\t\t\t\t[-91.904381, 31.927561],\n\t\t\t\t\t\t[-92.005434, 31.927296],\n\t\t\t\t\t\t[-92.312623, 31.927382]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22025\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"025\",\n\t\t\t\t\"NAME\": \"Catahoula\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 708.030000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.008121, 31.325797],\n\t\t\t\t\t\t[-92.005434, 31.927296],\n\t\t\t\t\t\t[-91.904381, 31.927561],\n\t\t\t\t\t\t[-91.889687, 31.971474],\n\t\t\t\t\t\t[-91.804869, 31.893193],\n\t\t\t\t\t\t[-91.729158, 31.882510],\n\t\t\t\t\t\t[-91.647500, 31.970428],\n\t\t\t\t\t\t[-91.596922, 31.969758],\n\t\t\t\t\t\t[-91.575721, 31.882560],\n\t\t\t\t\t\t[-91.544791, 31.751731],\n\t\t\t\t\t\t[-91.601622, 31.761864],\n\t\t\t\t\t\t[-91.694469, 31.735286],\n\t\t\t\t\t\t[-91.705948, 31.642863],\n\t\t\t\t\t\t[-91.775836, 31.648626],\n\t\t\t\t\t\t[-91.824426, 31.599671],\n\t\t\t\t\t\t[-91.738331, 31.431572],\n\t\t\t\t\t\t[-91.807098, 31.438794],\n\t\t\t\t\t\t[-91.857083, 31.494527],\n\t\t\t\t\t\t[-91.855889, 31.423831],\n\t\t\t\t\t\t[-91.776779, 31.385215],\n\t\t\t\t\t\t[-91.845019, 31.375916],\n\t\t\t\t\t\t[-91.862168, 31.302314],\n\t\t\t\t\t\t[-91.834280, 31.266344],\n\t\t\t\t\t\t[-91.926854, 31.294830],\n\t\t\t\t\t\t[-91.994828, 31.229561],\n\t\t\t\t\t\t[-92.008121, 31.325797]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22047\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"047\",\n\t\t\t\t\"NAME\": \"Iberville\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 618.627000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.475277, 30.229231],\n\t\t\t\t\t\t[-91.562760, 30.241949],\n\t\t\t\t\t\t[-91.621055, 30.309938],\n\t\t\t\t\t\t[-91.640099, 30.442728],\n\t\t\t\t\t\t[-91.700933, 30.497433],\n\t\t\t\t\t\t[-91.485089, 30.497138],\n\t\t\t\t\t\t[-91.311660, 30.322471],\n\t\t\t\t\t\t[-91.142105, 30.323293],\n\t\t\t\t\t\t[-91.142042, 30.322718],\n\t\t\t\t\t\t[-91.142088, 30.322028],\n\t\t\t\t\t\t[-91.142332, 30.320437],\n\t\t\t\t\t\t[-91.142305, 30.319893],\n\t\t\t\t\t\t[-91.021014, 30.321489],\n\t\t\t\t\t\t[-91.059273, 30.213113],\n\t\t\t\t\t\t[-91.105951, 30.062478],\n\t\t\t\t\t\t[-91.224356, 30.025336],\n\t\t\t\t\t\t[-91.368835, 30.058824],\n\t\t\t\t\t\t[-91.463833, 30.102493],\n\t\t\t\t\t\t[-91.475277, 30.229231]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22059\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"059\",\n\t\t\t\t\"NAME\": \"La Salle\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 624.684000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.196131, 31.477877],\n\t\t\t\t\t\t[-92.266202, 31.492791],\n\t\t\t\t\t\t[-92.306855, 31.589520],\n\t\t\t\t\t\t[-92.384441, 31.620437],\n\t\t\t\t\t\t[-92.347739, 31.696584],\n\t\t\t\t\t\t[-92.362608, 31.796633],\n\t\t\t\t\t\t[-92.312623, 31.927382],\n\t\t\t\t\t\t[-92.005434, 31.927296],\n\t\t\t\t\t\t[-92.008121, 31.325797],\n\t\t\t\t\t\t[-92.086718, 31.335374],\n\t\t\t\t\t\t[-92.196131, 31.477877]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22067\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"067\",\n\t\t\t\t\"NAME\": \"Morehouse\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 794.934000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.913057, 32.505902],\n\t\t\t\t\t\t[-91.910952, 32.661119],\n\t\t\t\t\t\t[-92.065179, 32.723003],\n\t\t\t\t\t\t[-92.069105, 33.008163],\n\t\t\t\t\t\t[-91.951958, 33.007428],\n\t\t\t\t\t\t[-91.950001, 33.007520],\n\t\t\t\t\t\t[-91.626670, 33.006639],\n\t\t\t\t\t\t[-91.617615, 33.006717],\n\t\t\t\t\t\t[-91.609001, 33.006556],\n\t\t\t\t\t\t[-91.579802, 33.006518],\n\t\t\t\t\t\t[-91.579639, 33.006472],\n\t\t\t\t\t\t[-91.572326, 33.006908],\n\t\t\t\t\t\t[-91.559494, 33.006840],\n\t\t\t\t\t\t[-91.460370, 33.006246],\n\t\t\t\t\t\t[-91.435782, 33.006099],\n\t\t\t\t\t\t[-91.511515, 32.879007],\n\t\t\t\t\t\t[-91.566363, 32.855561],\n\t\t\t\t\t\t[-91.637587, 32.667341],\n\t\t\t\t\t\t[-91.742286, 32.558906],\n\t\t\t\t\t\t[-91.804320, 32.571316],\n\t\t\t\t\t\t[-91.913057, 32.505902]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22083\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"083\",\n\t\t\t\t\"NAME\": \"Richland\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 559.043000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.476739, 32.405808],\n\t\t\t\t\t\t[-91.634931, 32.405371],\n\t\t\t\t\t\t[-91.764379, 32.330018],\n\t\t\t\t\t\t[-91.775019, 32.243333],\n\t\t\t\t\t\t[-91.894729, 32.151550],\n\t\t\t\t\t\t[-91.979868, 32.166148],\n\t\t\t\t\t\t[-92.034397, 32.277068],\n\t\t\t\t\t\t[-92.004340, 32.380499],\n\t\t\t\t\t\t[-91.913057, 32.505902],\n\t\t\t\t\t\t[-91.804320, 32.571316],\n\t\t\t\t\t\t[-91.742286, 32.558906],\n\t\t\t\t\t\t[-91.637587, 32.667341],\n\t\t\t\t\t\t[-91.596027, 32.582192],\n\t\t\t\t\t\t[-91.445299, 32.581956],\n\t\t\t\t\t\t[-91.430989, 32.561186],\n\t\t\t\t\t\t[-91.457643, 32.537807],\n\t\t\t\t\t\t[-91.476739, 32.405808]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48101\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"101\",\n\t\t\t\t\"NAME\": \"Cottle\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 900.563000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.997720, 34.311829],\n\t\t\t\t\t\t[-99.997671, 34.284652],\n\t\t\t\t\t\t[-99.997867, 34.282934],\n\t\t\t\t\t\t[-99.997621, 34.224355],\n\t\t\t\t\t\t[-100.047028, 34.229780],\n\t\t\t\t\t\t[-100.048480, 33.835974],\n\t\t\t\t\t\t[-100.518691, 33.835650],\n\t\t\t\t\t\t[-100.517340, 34.314102],\n\t\t\t\t\t\t[-100.500398, 34.314074],\n\t\t\t\t\t\t[-100.498193, 34.313527],\n\t\t\t\t\t\t[-100.417783, 34.313524],\n\t\t\t\t\t\t[-99.997720, 34.311829]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48105\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"105\",\n\t\t\t\t\"NAME\": \"Crockett\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2807.327000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-101.758400, 30.288044],\n\t\t\t\t\t\t[-101.658530, 30.357861],\n\t\t\t\t\t\t[-101.740429, 30.420897],\n\t\t\t\t\t\t[-101.646245, 30.560763],\n\t\t\t\t\t\t[-101.652630, 30.619374],\n\t\t\t\t\t\t[-101.768420, 30.653077],\n\t\t\t\t\t\t[-101.883436, 30.925647],\n\t\t\t\t\t\t[-101.983640, 30.987170],\n\t\t\t\t\t\t[-102.191731, 31.003788],\n\t\t\t\t\t\t[-102.388804, 31.087156],\n\t\t\t\t\t\t[-102.301212, 31.086212],\n\t\t\t\t\t\t[-101.776191, 31.079784],\n\t\t\t\t\t\t[-101.274799, 31.079379],\n\t\t\t\t\t\t[-100.962176, 31.082490],\n\t\t\t\t\t\t[-100.960587, 30.706071],\n\t\t\t\t\t\t[-100.960643, 30.287776],\n\t\t\t\t\t\t[-101.758400, 30.288044]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48109\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"109\",\n\t\t\t\t\"NAME\": \"Culberson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 3812.798000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-104.024521, 32.000010],\n\t\t\t\t\t\t[-104.102351, 31.105203],\n\t\t\t\t\t\t[-104.917163, 30.663626],\n\t\t\t\t\t\t[-104.916396, 30.835979],\n\t\t\t\t\t\t[-104.907592, 30.835919],\n\t\t\t\t\t\t[-104.918637, 31.991805],\n\t\t\t\t\t\t[-104.918272, 32.000496],\n\t\t\t\t\t\t[-104.847757, 32.000482],\n\t\t\t\t\t\t[-104.643526, 32.000443],\n\t\t\t\t\t\t[-104.640918, 32.000396],\n\t\t\t\t\t\t[-104.531937, 32.000311],\n\t\t\t\t\t\t[-104.531756, 32.000117],\n\t\t\t\t\t\t[-104.024521, 32.000010]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48111\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"111\",\n\t\t\t\t\"NAME\": \"Dallam\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1503.259000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-102.162463, 36.500326],\n\t\t\t\t\t\t[-102.162771, 36.497902],\n\t\t\t\t\t\t[-102.163015, 36.055249],\n\t\t\t\t\t\t[-103.040824, 36.055231],\n\t\t\t\t\t\t[-103.041674, 36.317534],\n\t\t\t\t\t\t[-103.041745, 36.318267],\n\t\t\t\t\t\t[-103.041669, 36.478514],\n\t\t\t\t\t\t[-103.002434, 36.500397],\n\t\t\t\t\t\t[-102.162463, 36.500326]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48113\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"113\",\n\t\t\t\t\"NAME\": \"Dallas\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 871.279000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.838963, 32.987521],\n\t\t\t\t\t\t[-96.687954, 32.985259],\n\t\t\t\t\t\t[-96.682467, 32.985325],\n\t\t\t\t\t\t[-96.660185, 32.985127],\n\t\t\t\t\t\t[-96.613377, 32.984021],\n\t\t\t\t\t\t[-96.516866, 32.982308],\n\t\t\t\t\t\t[-96.518273, 32.891534],\n\t\t\t\t\t\t[-96.518314, 32.877153],\n\t\t\t\t\t\t[-96.518586, 32.873389],\n\t\t\t\t\t\t[-96.518970, 32.813616],\n\t\t\t\t\t\t[-96.523118, 32.545214],\n\t\t\t\t\t\t[-96.529987, 32.545282],\n\t\t\t\t\t\t[-96.908135, 32.547838],\n\t\t\t\t\t\t[-97.038385, 32.548662],\n\t\t\t\t\t\t[-97.032687, 32.920614],\n\t\t\t\t\t\t[-97.032287, 32.989324],\n\t\t\t\t\t\t[-97.016602, 32.989320],\n\t\t\t\t\t\t[-97.016332, 32.989324],\n\t\t\t\t\t\t[-96.843979, 32.987554],\n\t\t\t\t\t\t[-96.839552, 32.987508],\n\t\t\t\t\t\t[-96.838963, 32.987521]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48121\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"121\",\n\t\t\t\t\"NAME\": \"Denton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 878.432000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.834004, 33.405504],\n\t\t\t\t\t\t[-96.840426, 33.152585],\n\t\t\t\t\t\t[-96.841854, 33.086264],\n\t\t\t\t\t\t[-96.843979, 32.987554],\n\t\t\t\t\t\t[-97.016332, 32.989324],\n\t\t\t\t\t\t[-97.016602, 32.989320],\n\t\t\t\t\t\t[-97.032287, 32.989324],\n\t\t\t\t\t\t[-97.167261, 32.989802],\n\t\t\t\t\t\t[-97.294230, 32.990260],\n\t\t\t\t\t\t[-97.379940, 32.990144],\n\t\t\t\t\t\t[-97.397205, 32.990747],\n\t\t\t\t\t\t[-97.398480, 32.990839],\n\t\t\t\t\t\t[-97.383095, 33.430450],\n\t\t\t\t\t\t[-97.051253, 33.419950],\n\t\t\t\t\t\t[-96.943860, 33.416410],\n\t\t\t\t\t\t[-96.834004, 33.405504]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48125\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"125\",\n\t\t\t\t\"NAME\": \"Dickens\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 901.724000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-101.041158, 33.833625],\n\t\t\t\t\t\t[-100.518691, 33.835650],\n\t\t\t\t\t\t[-100.517449, 33.397866],\n\t\t\t\t\t\t[-101.038788, 33.397214],\n\t\t\t\t\t\t[-101.041158, 33.833625]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48133\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"133\",\n\t\t\t\t\"NAME\": \"Eastland\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 926.491000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.924401, 32.078018],\n\t\t\t\t\t\t[-99.118665, 32.079585],\n\t\t\t\t\t\t[-99.114293, 32.514811],\n\t\t\t\t\t\t[-99.096050, 32.514768],\n\t\t\t\t\t\t[-98.576256, 32.515163],\n\t\t\t\t\t\t[-98.573016, 32.515261],\n\t\t\t\t\t\t[-98.495775, 32.513026],\n\t\t\t\t\t\t[-98.475177, 32.513039],\n\t\t\t\t\t\t[-98.475133, 32.298916],\n\t\t\t\t\t\t[-98.551158, 32.261436],\n\t\t\t\t\t\t[-98.660316, 32.204408],\n\t\t\t\t\t\t[-98.924401, 32.078018]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48139\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"139\",\n\t\t\t\t\"NAME\": \"Ellis\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 935.487000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.086834, 32.549428],\n\t\t\t\t\t\t[-97.052620, 32.548907],\n\t\t\t\t\t\t[-97.038385, 32.548662],\n\t\t\t\t\t\t[-96.908135, 32.547838],\n\t\t\t\t\t\t[-96.529987, 32.545282],\n\t\t\t\t\t\t[-96.452138, 32.358631],\n\t\t\t\t\t\t[-96.383082, 32.328851],\n\t\t\t\t\t\t[-96.896209, 32.073977],\n\t\t\t\t\t\t[-96.940656, 32.052087],\n\t\t\t\t\t\t[-97.086191, 32.265451],\n\t\t\t\t\t\t[-97.086834, 32.549428]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48145\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"145\",\n\t\t\t\t\"NAME\": \"Falls\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 765.483000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.070188, 30.986220],\n\t\t\t\t\t\t[-97.278113, 31.279799],\n\t\t\t\t\t\t[-96.801123, 31.522269],\n\t\t\t\t\t\t[-96.596862, 31.220900],\n\t\t\t\t\t\t[-96.829121, 31.105871],\n\t\t\t\t\t\t[-97.070188, 30.986220]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48147\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"147\",\n\t\t\t\t\"NAME\": \"Fannin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 890.837000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.378473, 33.726648],\n\t\t\t\t\t\t[-96.369590, 33.716809],\n\t\t\t\t\t\t[-96.304675, 33.745901],\n\t\t\t\t\t\t[-96.229859, 33.748320],\n\t\t\t\t\t\t[-96.220521, 33.747390],\n\t\t\t\t\t\t[-96.199900, 33.752117],\n\t\t\t\t\t\t[-96.181704, 33.758504],\n\t\t\t\t\t\t[-96.170055, 33.769170],\n\t\t\t\t\t\t[-96.164100, 33.784261],\n\t\t\t\t\t\t[-96.156717, 33.813324],\n\t\t\t\t\t\t[-96.148070, 33.837799],\n\t\t\t\t\t\t[-96.097526, 33.847544],\n\t\t\t\t\t\t[-95.949935, 33.857452],\n\t\t\t\t\t\t[-95.846334, 33.841136],\n\t\t\t\t\t\t[-95.857738, 33.461722],\n\t\t\t\t\t\t[-95.858723, 33.409530],\n\t\t\t\t\t\t[-96.295413, 33.351936],\n\t\t\t\t\t\t[-96.384495, 33.341119],\n\t\t\t\t\t\t[-96.384602, 33.397826],\n\t\t\t\t\t\t[-96.379470, 33.724876],\n\t\t\t\t\t\t[-96.378473, 33.726648]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48151\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"151\",\n\t\t\t\t\"NAME\": \"Fisher\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 898.941000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.146543, 32.522793],\n\t\t\t\t\t\t[-100.379054, 32.523798],\n\t\t\t\t\t\t[-100.660626, 32.525312],\n\t\t\t\t\t\t[-100.655870, 32.963469],\n\t\t\t\t\t\t[-100.519208, 32.962926],\n\t\t\t\t\t\t[-100.144224, 32.959978],\n\t\t\t\t\t\t[-100.146543, 32.522793]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48157\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"157\",\n\t\t\t\t\"NAME\": \"Fort Bend\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 861.481000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.688349, 29.710862],\n\t\t\t\t\t\t[-95.687994, 29.710667],\n\t\t\t\t\t\t[-95.687082, 29.710078],\n\t\t\t\t\t\t[-95.610025, 29.666990],\n\t\t\t\t\t\t[-95.537948, 29.633282],\n\t\t\t\t\t\t[-95.446970, 29.590978],\n\t\t\t\t\t\t[-95.440415, 29.588065],\n\t\t\t\t\t\t[-95.435618, 29.585633],\n\t\t\t\t\t\t[-95.424118, 29.580233],\n\t\t\t\t\t\t[-95.443224, 29.510214],\n\t\t\t\t\t\t[-95.462503, 29.439240],\n\t\t\t\t\t\t[-95.549994, 29.438439],\n\t\t\t\t\t\t[-95.579598, 29.340129],\n\t\t\t\t\t\t[-95.654355, 29.290945],\n\t\t\t\t\t\t[-95.752866, 29.324503],\n\t\t\t\t\t\t[-95.847656, 29.262590],\n\t\t\t\t\t\t[-95.879600, 29.266761],\n\t\t\t\t\t\t[-95.894468, 29.314980],\n\t\t\t\t\t\t[-95.946810, 29.333433],\n\t\t\t\t\t\t[-95.937434, 29.358086],\n\t\t\t\t\t\t[-95.973430, 29.411445],\n\t\t\t\t\t\t[-96.060676, 29.476473],\n\t\t\t\t\t\t[-96.044596, 29.562238],\n\t\t\t\t\t\t[-96.088912, 29.601658],\n\t\t\t\t\t\t[-96.024850, 29.602877],\n\t\t\t\t\t\t[-96.032711, 29.727944],\n\t\t\t\t\t\t[-95.826220, 29.788280],\n\t\t\t\t\t\t[-95.688349, 29.710862]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48181\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"181\",\n\t\t\t\t\"NAME\": \"Grayson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 932.804000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.922114, 33.959579],\n\t\t\t\t\t\t[-96.916300, 33.957798],\n\t\t\t\t\t\t[-96.907387, 33.950025],\n\t\t\t\t\t\t[-96.899442, 33.933728],\n\t\t\t\t\t\t[-96.895728, 33.896414],\n\t\t\t\t\t\t[-96.883010, 33.868019],\n\t\t\t\t\t\t[-96.866438, 33.853149],\n\t\t\t\t\t\t[-96.856090, 33.847490],\n\t\t\t\t\t\t[-96.761588, 33.824406],\n\t\t\t\t\t\t[-96.712422, 33.831633],\n\t\t\t\t\t\t[-96.707274, 33.835398],\n\t\t\t\t\t\t[-96.700952, 33.840748],\n\t\t\t\t\t\t[-96.694629, 33.849988],\n\t\t\t\t\t\t[-96.689280, 33.861660],\n\t\t\t\t\t\t[-96.685389, 33.872846],\n\t\t\t\t\t\t[-96.682471, 33.883059],\n\t\t\t\t\t\t[-96.678580, 33.892786],\n\t\t\t\t\t\t[-96.672258, 33.899595],\n\t\t\t\t\t\t[-96.658640, 33.900081],\n\t\t\t\t\t\t[-96.646968, 33.895218],\n\t\t\t\t\t\t[-96.633351, 33.889382],\n\t\t\t\t\t\t[-96.622165, 33.885977],\n\t\t\t\t\t\t[-96.615356, 33.881114],\n\t\t\t\t\t\t[-96.613494, 33.878321],\n\t\t\t\t\t\t[-96.611466, 33.875278],\n\t\t\t\t\t\t[-96.612963, 33.867651],\n\t\t\t\t\t\t[-96.615843, 33.853393],\n\t\t\t\t\t\t[-96.614870, 33.841234],\n\t\t\t\t\t\t[-96.612925, 33.833939],\n\t\t\t\t\t\t[-96.500268, 33.772583],\n\t\t\t\t\t\t[-96.448045, 33.781031],\n\t\t\t\t\t\t[-96.436455, 33.780050],\n\t\t\t\t\t\t[-96.423362, 33.776365],\n\t\t\t\t\t\t[-96.378473, 33.726648],\n\t\t\t\t\t\t[-96.379470, 33.724876],\n\t\t\t\t\t\t[-96.384602, 33.397826],\n\t\t\t\t\t\t[-96.386474, 33.398075],\n\t\t\t\t\t\t[-96.834004, 33.405504],\n\t\t\t\t\t\t[-96.943860, 33.416410],\n\t\t\t\t\t\t[-96.944611, 33.948994],\n\t\t\t\t\t\t[-96.934508, 33.953748],\n\t\t\t\t\t\t[-96.922114, 33.959579]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48189\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"189\",\n\t\t\t\t\"NAME\": \"Hale\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1004.683000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-101.998020, 34.313039],\n\t\t\t\t\t\t[-101.564856, 34.312493],\n\t\t\t\t\t\t[-101.563580, 33.830451],\n\t\t\t\t\t\t[-102.085733, 33.824675],\n\t\t\t\t\t\t[-102.090415, 34.313132],\n\t\t\t\t\t\t[-101.998020, 34.313039]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48193\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"193\",\n\t\t\t\t\"NAME\": \"Hamilton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 835.914000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.180006, 31.463717],\n\t\t\t\t\t\t[-98.271070, 31.416398],\n\t\t\t\t\t\t[-98.463736, 31.683989],\n\t\t\t\t\t\t[-98.156568, 31.841713],\n\t\t\t\t\t\t[-98.208386, 31.917511],\n\t\t\t\t\t\t[-98.005462, 32.017897],\n\t\t\t\t\t\t[-97.766431, 31.672461],\n\t\t\t\t\t\t[-98.180006, 31.463717]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48345\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"345\",\n\t\t\t\t\"NAME\": \"Motley\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 989.562000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-101.041158, 33.833625],\n\t\t\t\t\t\t[-101.041484, 34.312444],\n\t\t\t\t\t\t[-100.966969, 34.312640],\n\t\t\t\t\t\t[-100.966896, 34.312711],\n\t\t\t\t\t\t[-100.946132, 34.312759],\n\t\t\t\t\t\t[-100.517340, 34.314102],\n\t\t\t\t\t\t[-100.518691, 33.835650],\n\t\t\t\t\t\t[-101.041158, 33.833625]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48347\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"347\",\n\t\t\t\t\"NAME\": \"Nacogdoches\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 946.537000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.326616, 31.224754],\n\t\t\t\t\t\t[-94.495874, 31.405728],\n\t\t\t\t\t\t[-94.530634, 31.398654],\n\t\t\t\t\t\t[-94.544888, 31.431715],\n\t\t\t\t\t\t[-94.728679, 31.457226],\n\t\t\t\t\t\t[-94.865857, 31.526916],\n\t\t\t\t\t\t[-94.951969, 31.641351],\n\t\t\t\t\t\t[-94.967167, 31.753767],\n\t\t\t\t\t\t[-94.937532, 31.845555],\n\t\t\t\t\t\t[-94.452416, 31.844281],\n\t\t\t\t\t\t[-94.399091, 31.653596],\n\t\t\t\t\t\t[-94.395361, 31.638752],\n\t\t\t\t\t\t[-94.311042, 31.589252],\n\t\t\t\t\t\t[-94.339773, 31.240820],\n\t\t\t\t\t\t[-94.326616, 31.224754]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48351\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"351\",\n\t\t\t\t\"NAME\": \"Newton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 933.677000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.901452, 30.242672],\n\t\t\t\t\t\t[-93.865711, 30.947218],\n\t\t\t\t\t\t[-93.911126, 31.158071],\n\t\t\t\t\t\t[-93.600308, 31.176158],\n\t\t\t\t\t\t[-93.599705, 31.176456],\n\t\t\t\t\t\t[-93.598828, 31.174679],\n\t\t\t\t\t\t[-93.588503, 31.165581],\n\t\t\t\t\t\t[-93.579215, 31.167422],\n\t\t\t\t\t\t[-93.552649, 31.185575],\n\t\t\t\t\t\t[-93.552540, 31.185605],\n\t\t\t\t\t\t[-93.548931, 31.186601],\n\t\t\t\t\t\t[-93.535097, 31.185614],\n\t\t\t\t\t\t[-93.531744, 31.180817],\n\t\t\t\t\t\t[-93.527644, 31.074509],\n\t\t\t\t\t\t[-93.540354, 31.008135],\n\t\t\t\t\t\t[-93.530936, 30.924534],\n\t\t\t\t\t\t[-93.554576, 30.877470],\n\t\t\t\t\t\t[-93.554970, 30.876685],\n\t\t\t\t\t\t[-93.558617, 30.869424],\n\t\t\t\t\t\t[-93.558672, 30.868829],\n\t\t\t\t\t\t[-93.563292, 30.818503],\n\t\t\t\t\t\t[-93.578395, 30.802047],\n\t\t\t\t\t\t[-93.727844, 30.574070],\n\t\t\t\t\t\t[-93.740045, 30.538765],\n\t\t\t\t\t\t[-93.710117, 30.506400],\n\t\t\t\t\t\t[-93.697828, 30.443838],\n\t\t\t\t\t\t[-93.698302, 30.438657],\n\t\t\t\t\t\t[-93.702665, 30.429947],\n\t\t\t\t\t\t[-93.741701, 30.403007],\n\t\t\t\t\t\t[-93.751437, 30.396288],\n\t\t\t\t\t\t[-93.757654, 30.390423],\n\t\t\t\t\t\t[-93.765822, 30.333318],\n\t\t\t\t\t\t[-93.735896, 30.299440],\n\t\t\t\t\t\t[-93.723586, 30.294951],\n\t\t\t\t\t\t[-93.720575, 30.295961],\n\t\t\t\t\t\t[-93.716223, 30.244318],\n\t\t\t\t\t\t[-93.901452, 30.242672]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51135\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"135\",\n\t\t\t\t\"NAME\": \"Nottoway\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 314.392000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.889813, 36.988818],\n\t\t\t\t\t\t[-78.003639, 37.022756],\n\t\t\t\t\t\t[-78.082652, 37.016406],\n\t\t\t\t\t\t[-78.239354, 37.120089],\n\t\t\t\t\t\t[-78.231234, 37.296220],\n\t\t\t\t\t\t[-77.856209, 37.209958],\n\t\t\t\t\t\t[-77.795926, 37.192592],\n\t\t\t\t\t\t[-77.900338, 37.143882],\n\t\t\t\t\t\t[-77.889813, 36.988818]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51137\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"137\",\n\t\t\t\t\"NAME\": \"Orange\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 340.783000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.703189, 38.360598],\n\t\t\t\t\t\t[-77.707798, 38.358565],\n\t\t\t\t\t\t[-77.705491, 38.354837],\n\t\t\t\t\t\t[-77.713032, 38.351431],\n\t\t\t\t\t\t[-77.712450, 38.345447],\n\t\t\t\t\t\t[-77.718646, 38.341602],\n\t\t\t\t\t\t[-77.714698, 38.336690],\n\t\t\t\t\t\t[-77.719737, 38.335508],\n\t\t\t\t\t\t[-77.726689, 38.323905],\n\t\t\t\t\t\t[-77.954819, 38.117437],\n\t\t\t\t\t\t[-78.093063, 38.151611],\n\t\t\t\t\t\t[-78.208092, 38.133150],\n\t\t\t\t\t\t[-78.344500, 38.177931],\n\t\t\t\t\t\t[-78.369797, 38.184757],\n\t\t\t\t\t\t[-78.297716, 38.261585],\n\t\t\t\t\t\t[-78.286968, 38.271533],\n\t\t\t\t\t\t[-78.220645, 38.230308],\n\t\t\t\t\t\t[-78.094571, 38.311361],\n\t\t\t\t\t\t[-77.891822, 38.388953],\n\t\t\t\t\t\t[-77.703189, 38.360598]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51139\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"139\",\n\t\t\t\t\"NAME\": \"Page\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 310.856000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.284877, 38.759229],\n\t\t\t\t\t\t[-78.338320, 38.627282],\n\t\t\t\t\t\t[-78.452918, 38.475508],\n\t\t\t\t\t\t[-78.455495, 38.472532],\n\t\t\t\t\t\t[-78.457711, 38.464804],\n\t\t\t\t\t\t[-78.462658, 38.459528],\n\t\t\t\t\t\t[-78.462113, 38.454720],\n\t\t\t\t\t\t[-78.464699, 38.452542],\n\t\t\t\t\t\t[-78.465073, 38.447000],\n\t\t\t\t\t\t[-78.472509, 38.447627],\n\t\t\t\t\t\t[-78.477718, 38.438574],\n\t\t\t\t\t\t[-78.476566, 38.432146],\n\t\t\t\t\t\t[-78.481647, 38.430603],\n\t\t\t\t\t\t[-78.484246, 38.423648],\n\t\t\t\t\t\t[-78.486003, 38.421486],\n\t\t\t\t\t\t[-78.691312, 38.510008],\n\t\t\t\t\t\t[-78.641769, 38.604719],\n\t\t\t\t\t\t[-78.548828, 38.738655],\n\t\t\t\t\t\t[-78.509260, 38.725626],\n\t\t\t\t\t\t[-78.386682, 38.830152],\n\t\t\t\t\t\t[-78.284877, 38.759229]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51143\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"143\",\n\t\t\t\t\"NAME\": \"Pittsylvania\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 968.941000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.442884, 37.055863],\n\t\t\t\t\t\t[-79.332161, 37.125568],\n\t\t\t\t\t\t[-79.217104, 37.118874],\n\t\t\t\t\t\t[-79.194525, 37.055816],\n\t\t\t\t\t\t[-79.092264, 37.061498],\n\t\t\t\t\t\t[-79.218638, 36.541579],\n\t\t\t\t\t\t[-79.342696, 36.541382],\n\t\t\t\t\t\t[-79.304486, 36.582202],\n\t\t\t\t\t\t[-79.398845, 36.644537],\n\t\t\t\t\t\t[-79.422097, 36.600681],\n\t\t\t\t\t\t[-79.501101, 36.618250],\n\t\t\t\t\t\t[-79.456646, 36.576738],\n\t\t\t\t\t\t[-79.470047, 36.541025],\n\t\t\t\t\t\t[-79.510647, 36.540738],\n\t\t\t\t\t\t[-79.510961, 36.540740],\n\t\t\t\t\t\t[-79.666827, 36.541772],\n\t\t\t\t\t\t[-79.667309, 36.541772],\n\t\t\t\t\t\t[-79.714855, 36.541884],\n\t\t\t\t\t\t[-79.640652, 36.856139],\n\t\t\t\t\t\t[-79.595930, 37.036349],\n\t\t\t\t\t\t[-79.594059, 37.042238],\n\t\t\t\t\t\t[-79.480727, 37.005876],\n\t\t\t\t\t\t[-79.442884, 37.055863]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51153\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"153\",\n\t\t\t\t\"NAME\": \"Prince William\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 336.402000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.530914, 38.555929],\n\t\t\t\t\t\t[-77.535808, 38.561621],\n\t\t\t\t\t\t[-77.580256, 38.627685],\n\t\t\t\t\t\t[-77.663346, 38.752917],\n\t\t\t\t\t\t[-77.715415, 38.832214],\n\t\t\t\t\t\t[-77.689176, 38.889231],\n\t\t\t\t\t\t[-77.680547, 38.893200],\n\t\t\t\t\t\t[-77.665797, 38.915867],\n\t\t\t\t\t\t[-77.655081, 38.942635],\n\t\t\t\t\t\t[-77.535760, 38.847474],\n\t\t\t\t\t\t[-77.449084, 38.803133],\n\t\t\t\t\t\t[-77.387917, 38.748217],\n\t\t\t\t\t\t[-77.380451, 38.722516],\n\t\t\t\t\t\t[-77.222350, 38.638091],\n\t\t\t\t\t\t[-77.240604, 38.638917],\n\t\t\t\t\t\t[-77.246704, 38.635217],\n\t\t\t\t\t\t[-77.248904, 38.628617],\n\t\t\t\t\t\t[-77.245104, 38.620717],\n\t\t\t\t\t\t[-77.246441, 38.599532],\n\t\t\t\t\t\t[-77.247003, 38.590618],\n\t\t\t\t\t\t[-77.264430, 38.582845],\n\t\t\t\t\t\t[-77.265304, 38.580319],\n\t\t\t\t\t\t[-77.260830, 38.565330],\n\t\t\t\t\t\t[-77.276603, 38.547120],\n\t\t\t\t\t\t[-77.276303, 38.539620],\n\t\t\t\t\t\t[-77.283503, 38.525221],\n\t\t\t\t\t\t[-77.291103, 38.515721],\n\t\t\t\t\t\t[-77.295820, 38.511457],\n\t\t\t\t\t\t[-77.298844, 38.508724],\n\t\t\t\t\t\t[-77.300776, 38.506978],\n\t\t\t\t\t\t[-77.302457, 38.504683],\n\t\t\t\t\t\t[-77.491569, 38.590899],\n\t\t\t\t\t\t[-77.530914, 38.555929]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.471425, 38.728152],\n\t\t\t\t\t\t[-77.451642, 38.738337],\n\t\t\t\t\t\t[-77.447510, 38.761115],\n\t\t\t\t\t\t[-77.459310, 38.772614],\n\t\t\t\t\t\t[-77.427503, 38.753400],\n\t\t\t\t\t\t[-77.420682, 38.762242],\n\t\t\t\t\t\t[-77.422236, 38.768917],\n\t\t\t\t\t\t[-77.440610, 38.782615],\n\t\t\t\t\t\t[-77.445282, 38.770722],\n\t\t\t\t\t\t[-77.459499, 38.778395],\n\t\t\t\t\t\t[-77.458507, 38.787394],\n\t\t\t\t\t\t[-77.473195, 38.788248],\n\t\t\t\t\t\t[-77.475711, 38.781214],\n\t\t\t\t\t\t[-77.495927, 38.770607],\n\t\t\t\t\t\t[-77.526457, 38.732466],\n\t\t\t\t\t\t[-77.524721, 38.723966],\n\t\t\t\t\t\t[-77.471425, 38.728152]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51163\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"163\",\n\t\t\t\t\"NAME\": \"Rockbridge\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 597.558000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.482405, 38.086105],\n\t\t\t\t\t\t[-79.183978, 37.914194],\n\t\t\t\t\t\t[-79.157423, 37.890995],\n\t\t\t\t\t\t[-79.171926, 37.803135],\n\t\t\t\t\t\t[-79.264384, 37.794720],\n\t\t\t\t\t\t[-79.345010, 37.661129],\n\t\t\t\t\t\t[-79.436926, 37.617004],\n\t\t\t\t\t\t[-79.498553, 37.532887],\n\t\t\t\t\t\t[-79.683594, 37.661668],\n\t\t\t\t\t\t[-79.674006, 37.763052],\n\t\t\t\t\t\t[-79.650757, 37.871566],\n\t\t\t\t\t\t[-79.482405, 38.086105]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.366811, 37.727220],\n\t\t\t\t\t\t[-79.382642, 37.706345],\n\t\t\t\t\t\t[-79.359875, 37.702359],\n\t\t\t\t\t\t[-79.328768, 37.760576],\n\t\t\t\t\t\t[-79.380389, 37.743771],\n\t\t\t\t\t\t[-79.366811, 37.727220]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.457611, 37.766222],\n\t\t\t\t\t\t[-79.415304, 37.789111],\n\t\t\t\t\t\t[-79.456515, 37.791261],\n\t\t\t\t\t\t[-79.461917, 37.786160],\n\t\t\t\t\t\t[-79.457611, 37.766222]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51169\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"169\",\n\t\t\t\t\"NAME\": \"Scott\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 535.530000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.771308, 36.799880],\n\t\t\t\t\t\t[-82.634608, 36.878484],\n\t\t\t\t\t\t[-82.406633, 36.876356],\n\t\t\t\t\t\t[-82.356728, 36.780309],\n\t\t\t\t\t\t[-82.332089, 36.709355],\n\t\t\t\t\t\t[-82.308000, 36.619525],\n\t\t\t\t\t\t[-82.293814, 36.595565],\n\t\t\t\t\t\t[-82.554294, 36.594876],\n\t\t\t\t\t\t[-82.559774, 36.594800],\n\t\t\t\t\t\t[-82.561074, 36.594800],\n\t\t\t\t\t\t[-82.609176, 36.594099],\n\t\t\t\t\t\t[-82.679879, 36.593698],\n\t\t\t\t\t\t[-82.695780, 36.593698],\n\t\t\t\t\t\t[-82.830433, 36.593761],\n\t\t\t\t\t\t[-82.985087, 36.593829],\n\t\t\t\t\t\t[-82.947535, 36.675840],\n\t\t\t\t\t\t[-82.823163, 36.733295],\n\t\t\t\t\t\t[-82.771308, 36.799880]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51171\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"171\",\n\t\t\t\t\"NAME\": \"Shenandoah\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 508.776000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.869276, 38.762991],\n\t\t\t\t\t\t[-78.835191, 38.811499],\n\t\t\t\t\t\t[-78.808181, 38.856175],\n\t\t\t\t\t\t[-78.788031, 38.885123],\n\t\t\t\t\t\t[-78.779198, 38.892298],\n\t\t\t\t\t\t[-78.757278, 38.903203],\n\t\t\t\t\t\t[-78.719806, 38.922638],\n\t\t\t\t\t\t[-78.719755, 38.922135],\n\t\t\t\t\t\t[-78.716956, 38.916273],\n\t\t\t\t\t\t[-78.714135, 38.911176],\n\t\t\t\t\t\t[-78.710949, 38.910175],\n\t\t\t\t\t\t[-78.601655, 38.964603],\n\t\t\t\t\t\t[-78.557647, 39.013189],\n\t\t\t\t\t\t[-78.554222, 39.019672],\n\t\t\t\t\t\t[-78.565837, 39.026303],\n\t\t\t\t\t\t[-78.571901, 39.031995],\n\t\t\t\t\t\t[-78.544111, 39.056676],\n\t\t\t\t\t\t[-78.454023, 39.027599],\n\t\t\t\t\t\t[-78.335803, 39.101509],\n\t\t\t\t\t\t[-78.314196, 39.007977],\n\t\t\t\t\t\t[-78.300544, 38.943530],\n\t\t\t\t\t\t[-78.386682, 38.830152],\n\t\t\t\t\t\t[-78.509260, 38.725626],\n\t\t\t\t\t\t[-78.548828, 38.738655],\n\t\t\t\t\t\t[-78.641769, 38.604719],\n\t\t\t\t\t\t[-78.869276, 38.762991]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51181\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"181\",\n\t\t\t\t\"NAME\": \"Surry\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 278.949000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.671588, 37.142060],\n\t\t\t\t\t\t[-76.711775, 37.055380],\n\t\t\t\t\t\t[-76.849684, 36.996211],\n\t\t\t\t\t\t[-76.953546, 36.944450],\n\t\t\t\t\t\t[-76.965681, 37.054835],\n\t\t\t\t\t\t[-77.155415, 37.112034],\n\t\t\t\t\t\t[-76.972439, 37.248501],\n\t\t\t\t\t\t[-76.917081, 37.224365],\n\t\t\t\t\t\t[-76.883156, 37.223057],\n\t\t\t\t\t\t[-76.818511, 37.224618],\n\t\t\t\t\t\t[-76.791555, 37.207564],\n\t\t\t\t\t\t[-76.801023, 37.206043],\n\t\t\t\t\t\t[-76.803198, 37.201513],\n\t\t\t\t\t\t[-76.802511, 37.198308],\n\t\t\t\t\t\t[-76.796905, 37.189404],\n\t\t\t\t\t\t[-76.756899, 37.161582],\n\t\t\t\t\t\t[-76.747632, 37.150548],\n\t\t\t\t\t\t[-76.737280, 37.146164],\n\t\t\t\t\t\t[-76.730320, 37.145395],\n\t\t\t\t\t\t[-76.715295, 37.148035],\n\t\t\t\t\t\t[-76.696735, 37.174403],\n\t\t\t\t\t\t[-76.692926, 37.186147],\n\t\t\t\t\t\t[-76.691918, 37.195731],\n\t\t\t\t\t\t[-76.685614, 37.198851],\n\t\t\t\t\t\t[-76.669886, 37.183571],\n\t\t\t\t\t\t[-76.663774, 37.173875],\n\t\t\t\t\t\t[-76.664270, 37.171027],\n\t\t\t\t\t\t[-76.668670, 37.166771],\n\t\t\t\t\t\t[-76.671470, 37.158739],\n\t\t\t\t\t\t[-76.671588, 37.142060]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51183\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"183\",\n\t\t\t\t\"NAME\": \"Sussex\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 490.220000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.398498, 36.992985],\n\t\t\t\t\t\t[-77.382384, 37.000150],\n\t\t\t\t\t\t[-77.173440, 37.105238],\n\t\t\t\t\t\t[-77.173095, 37.105391],\n\t\t\t\t\t\t[-77.155415, 37.112034],\n\t\t\t\t\t\t[-76.965681, 37.054835],\n\t\t\t\t\t\t[-76.953546, 36.944450],\n\t\t\t\t\t\t[-77.430127, 36.707658],\n\t\t\t\t\t\t[-77.489999, 36.721009],\n\t\t\t\t\t\t[-77.458678, 36.862963],\n\t\t\t\t\t\t[-77.619029, 36.877844],\n\t\t\t\t\t\t[-77.616204, 36.879202],\n\t\t\t\t\t\t[-77.398498, 36.992985]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US53033\",\n\t\t\t\t\"STATE\": \"53\",\n\t\t\t\t\"COUNTY\": \"033\",\n\t\t\t\t\"NAME\": \"King\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2115.566000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-122.484993, 47.512731],\n\t\t\t\t\t\t\t[-122.467796, 47.509956],\n\t\t\t\t\t\t\t[-122.452399, 47.503471],\n\t\t\t\t\t\t\t[-122.460503, 47.494773],\n\t\t\t\t\t\t\t[-122.460029, 47.486861],\n\t\t\t\t\t\t\t[-122.433386, 47.466430],\n\t\t\t\t\t\t\t[-122.439840, 47.458083],\n\t\t\t\t\t\t\t[-122.440083, 47.417647],\n\t\t\t\t\t\t\t[-122.437657, 47.407424],\n\t\t\t\t\t\t\t[-122.427327, 47.402129],\n\t\t\t\t\t\t\t[-122.395054, 47.399277],\n\t\t\t\t\t\t\t[-122.373629, 47.388718],\n\t\t\t\t\t\t\t[-122.378482, 47.385330],\n\t\t\t\t\t\t\t[-122.401768, 47.381325],\n\t\t\t\t\t\t\t[-122.437809, 47.365607],\n\t\t\t\t\t\t\t[-122.448399, 47.354987],\n\t\t\t\t\t\t\t[-122.453998, 47.343337],\n\t\t\t\t\t\t\t[-122.457494, 47.342567],\n\t\t\t\t\t\t\t[-122.469703, 47.344623],\n\t\t\t\t\t\t\t[-122.491237, 47.335172],\n\t\t\t\t\t\t\t[-122.491063, 47.332427],\n\t\t\t\t\t\t\t[-122.493123, 47.330253],\n\t\t\t\t\t\t\t[-122.504918, 47.330680],\n\t\t\t\t\t\t\t[-122.518850, 47.333320],\n\t\t\t\t\t\t\t[-122.524160, 47.338370],\n\t\t\t\t\t\t\t[-122.528129, 47.345542],\n\t\t\t\t\t\t\t[-122.526030, 47.358908],\n\t\t\t\t\t\t\t[-122.537935, 47.359203],\n\t\t\t\t\t\t\t[-122.528434, 47.378211],\n\t\t\t\t\t\t\t[-122.538429, 47.390829],\n\t\t\t\t\t\t\t[-122.536720, 47.402990],\n\t\t\t\t\t\t\t[-122.484993, 47.512731]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-122.418268, 47.320614],\n\t\t\t\t\t\t\t[-122.364168, 47.335953],\n\t\t\t\t\t\t\t[-122.336934, 47.341421],\n\t\t\t\t\t\t\t[-122.324833, 47.348521],\n\t\t\t\t\t\t\t[-122.325734, 47.391521],\n\t\t\t\t\t\t\t[-122.328434, 47.400621],\n\t\t\t\t\t\t\t[-122.335234, 47.408421],\n\t\t\t\t\t\t\t[-122.348035, 47.415921],\n\t\t\t\t\t\t\t[-122.355135, 47.441921],\n\t\t\t\t\t\t\t[-122.367036, 47.447621],\n\t\t\t\t\t\t\t[-122.383136, 47.450521],\n\t\t\t\t\t\t\t[-122.368036, 47.459221],\n\t\t\t\t\t\t\t[-122.363062, 47.475702],\n\t\t\t\t\t\t\t[-122.361336, 47.481421],\n\t\t\t\t\t\t\t[-122.365236, 47.488420],\n\t\t\t\t\t\t\t[-122.386637, 47.502220],\n\t\t\t\t\t\t\t[-122.396538, 47.515220],\n\t\t\t\t\t\t\t[-122.393938, 47.524820],\n\t\t\t\t\t\t\t[-122.398338, 47.550120],\n\t\t\t\t\t\t\t[-122.409839, 47.568920],\n\t\t\t\t\t\t\t[-122.421139, 47.576020],\n\t\t\t\t\t\t\t[-122.401839, 47.583920],\n\t\t\t\t\t\t\t[-122.387139, 47.595720],\n\t\t\t\t\t\t\t[-122.375421, 47.585181],\n\t\t\t\t\t\t\t[-122.370167, 47.583087],\n\t\t\t\t\t\t\t[-122.358238, 47.584820],\n\t\t\t\t\t\t\t[-122.342937, 47.591220],\n\t\t\t\t\t\t\t[-122.339513, 47.599113],\n\t\t\t\t\t\t\t[-122.344937, 47.609120],\n\t\t\t\t\t\t\t[-122.367819, 47.624213],\n\t\t\t\t\t\t\t[-122.386039, 47.631720],\n\t\t\t\t\t\t\t[-122.393739, 47.631020],\n\t\t\t\t\t\t\t[-122.404240, 47.633920],\n\t\t\t\t\t\t\t[-122.414645, 47.639766],\n\t\t\t\t\t\t\t[-122.429841, 47.658919],\n\t\t\t\t\t\t\t[-122.407841, 47.680119],\n\t\t\t\t\t\t\t[-122.403841, 47.689419],\n\t\t\t\t\t\t\t[-122.393248, 47.701602],\n\t\t\t\t\t\t\t[-122.380440, 47.709119],\n\t\t\t\t\t\t\t[-122.376440, 47.716519],\n\t\t\t\t\t\t\t[-122.375607, 47.719724],\n\t\t\t\t\t\t\t[-122.373140, 47.729219],\n\t\t\t\t\t\t\t[-122.382641, 47.749119],\n\t\t\t\t\t\t\t[-122.380241, 47.758519],\n\t\t\t\t\t\t\t[-122.394442, 47.772219],\n\t\t\t\t\t\t\t[-122.396422, 47.777927],\n\t\t\t\t\t\t\t[-122.000425, 47.775284],\n\t\t\t\t\t\t\t[-122.000396, 47.775284],\n\t\t\t\t\t\t\t[-121.928146, 47.776971],\n\t\t\t\t\t\t\t[-121.584537, 47.776726],\n\t\t\t\t\t\t\t[-121.580986, 47.777534],\n\t\t\t\t\t\t\t[-121.119010, 47.779933],\n\t\t\t\t\t\t\t[-121.068409, 47.706234],\n\t\t\t\t\t\t\t[-121.113606, 47.597135],\n\t\t\t\t\t\t\t[-121.243207, 47.540334],\n\t\t\t\t\t\t\t[-121.310953, 47.479271],\n\t\t\t\t\t\t\t[-121.425421, 47.422354],\n\t\t\t\t\t\t\t[-121.432652, 47.293591],\n\t\t\t\t\t\t\t[-121.298041, 47.148230],\n\t\t\t\t\t\t\t[-121.379671, 47.086765],\n\t\t\t\t\t\t\t[-121.796678, 47.173059],\n\t\t\t\t\t\t\t[-121.839148, 47.143356],\n\t\t\t\t\t\t\t[-122.047909, 47.171645],\n\t\t\t\t\t\t\t[-122.143967, 47.257347],\n\t\t\t\t\t\t\t[-122.229208, 47.257538],\n\t\t\t\t\t\t\t[-122.229494, 47.257538],\n\t\t\t\t\t\t\t[-122.334860, 47.257594],\n\t\t\t\t\t\t\t[-122.418268, 47.320614]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55035\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"035\",\n\t\t\t\t\"NAME\": \"Eau Claire\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 637.983000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.165619, 44.596987],\n\t\t\t\t\t\t[-91.529101, 44.596197],\n\t\t\t\t\t\t[-91.650248, 44.596649],\n\t\t\t\t\t\t[-91.650324, 44.623005],\n\t\t\t\t\t\t[-91.650474, 44.624963],\n\t\t\t\t\t\t[-91.650361, 44.683633],\n\t\t\t\t\t\t[-91.650455, 44.855951],\n\t\t\t\t\t\t[-90.922247, 44.857309],\n\t\t\t\t\t\t[-90.922350, 44.596293],\n\t\t\t\t\t\t[-91.165619, 44.596987]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55037\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"037\",\n\t\t\t\t\"NAME\": \"Florence\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 488.195000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.425302, 45.722426],\n\t\t\t\t\t\t[-88.675980, 45.722835],\n\t\t\t\t\t\t[-88.683198, 46.014563],\n\t\t\t\t\t\t[-88.679132, 46.013538],\n\t\t\t\t\t\t[-88.674606, 46.010567],\n\t\t\t\t\t\t[-88.670115, 45.999957],\n\t\t\t\t\t\t[-88.670939, 45.999957],\n\t\t\t\t\t\t[-88.666056, 45.988191],\n\t\t\t\t\t\t[-88.637500, 45.984960],\n\t\t\t\t\t\t[-88.616405, 45.987700],\n\t\t\t\t\t\t[-88.613063, 45.990627],\n\t\t\t\t\t\t[-88.532414, 46.021212],\n\t\t\t\t\t\t[-88.507188, 46.018300],\n\t\t\t\t\t\t[-88.500133, 46.000457],\n\t\t\t\t\t\t[-88.497417, 45.995149],\n\t\t\t\t\t\t[-88.489608, 45.991381],\n\t\t\t\t\t\t[-88.423437, 45.981930],\n\t\t\t\t\t\t[-88.376447, 45.989458],\n\t\t\t\t\t\t[-88.295559, 45.951459],\n\t\t\t\t\t\t[-88.250133, 45.963147],\n\t\t\t\t\t\t[-88.244452, 45.952142],\n\t\t\t\t\t\t[-88.239672, 45.948982],\n\t\t\t\t\t\t[-88.211158, 45.944531],\n\t\t\t\t\t\t[-88.202247, 45.949584],\n\t\t\t\t\t\t[-88.175532, 45.944897],\n\t\t\t\t\t\t[-88.139372, 45.929932],\n\t\t\t\t\t\t[-88.118516, 45.918562],\n\t\t\t\t\t\t[-88.102603, 45.909888],\n\t\t\t\t\t\t[-88.073944, 45.875593],\n\t\t\t\t\t\t[-88.073134, 45.871952],\n\t\t\t\t\t\t[-88.088825, 45.855860],\n\t\t\t\t\t\t[-88.106622, 45.841072],\n\t\t\t\t\t\t[-88.114267, 45.837891],\n\t\t\t\t\t\t[-88.133640, 45.823128],\n\t\t\t\t\t\t[-88.136110, 45.819029],\n\t\t\t\t\t\t[-88.130434, 45.810020],\n\t\t\t\t\t\t[-88.094047, 45.785658],\n\t\t\t\t\t\t[-88.072091, 45.780261],\n\t\t\t\t\t\t[-88.058256, 45.780719],\n\t\t\t\t\t\t[-88.059246, 45.713063],\n\t\t\t\t\t\t[-88.425302, 45.722426]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55041\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"041\",\n\t\t\t\t\"NAME\": \"Forest\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1014.067000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.046315, 45.464762],\n\t\t\t\t\t\t[-89.046781, 45.637517],\n\t\t\t\t\t\t[-89.047159, 45.640801],\n\t\t\t\t\t\t[-89.047481, 45.895359],\n\t\t\t\t\t\t[-89.047562, 45.982167],\n\t\t\t\t\t\t[-88.933567, 45.982098],\n\t\t\t\t\t\t[-88.932558, 46.073601],\n\t\t\t\t\t\t[-88.850270, 46.040274],\n\t\t\t\t\t\t[-88.848464, 46.038858],\n\t\t\t\t\t\t[-88.840584, 46.031112],\n\t\t\t\t\t\t[-88.815629, 46.022320],\n\t\t\t\t\t\t[-88.769712, 46.018968],\n\t\t\t\t\t\t[-88.739994, 46.027308],\n\t\t\t\t\t\t[-88.730675, 46.026535],\n\t\t\t\t\t\t[-88.683198, 46.014563],\n\t\t\t\t\t\t[-88.675980, 45.722835],\n\t\t\t\t\t\t[-88.425302, 45.722426],\n\t\t\t\t\t\t[-88.428102, 45.377010],\n\t\t\t\t\t\t[-88.677826, 45.378682],\n\t\t\t\t\t\t[-88.926025, 45.378637],\n\t\t\t\t\t\t[-88.923062, 45.465137],\n\t\t\t\t\t\t[-89.046315, 45.464762]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55043\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"043\",\n\t\t\t\t\"NAME\": \"Grant\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1146.849000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.949213, 42.685573],\n\t\t\t\t\t\t[-90.976314, 42.695996],\n\t\t\t\t\t\t[-91.053733, 42.738238],\n\t\t\t\t\t\t[-91.064896, 42.757272],\n\t\t\t\t\t\t[-91.069549, 42.769628],\n\t\t\t\t\t\t[-91.077643, 42.803798],\n\t\t\t\t\t\t[-91.100565, 42.883078],\n\t\t\t\t\t\t[-91.117411, 42.895837],\n\t\t\t\t\t\t[-91.143375, 42.904670],\n\t\t\t\t\t\t[-91.145560, 42.907980],\n\t\t\t\t\t\t[-91.163064, 42.986781],\n\t\t\t\t\t\t[-91.065270, 42.992074],\n\t\t\t\t\t\t[-90.845746, 43.077625],\n\t\t\t\t\t\t[-90.666786, 43.171778],\n\t\t\t\t\t\t[-90.545408, 43.211455],\n\t\t\t\t\t\t[-90.429825, 43.200940],\n\t\t\t\t\t\t[-90.426902, 42.812862],\n\t\t\t\t\t\t[-90.426378, 42.507059],\n\t\t\t\t\t\t[-90.437011, 42.507147],\n\t\t\t\t\t\t[-90.474955, 42.507484],\n\t\t\t\t\t\t[-90.479446, 42.507416],\n\t\t\t\t\t\t[-90.491716, 42.507624],\n\t\t\t\t\t\t[-90.532254, 42.507573],\n\t\t\t\t\t\t[-90.544347, 42.507707],\n\t\t\t\t\t\t[-90.544799, 42.507713],\n\t\t\t\t\t\t[-90.551165, 42.507691],\n\t\t\t\t\t\t[-90.555862, 42.507509],\n\t\t\t\t\t\t[-90.565441, 42.507600],\n\t\t\t\t\t\t[-90.614589, 42.508053],\n\t\t\t\t\t\t[-90.617731, 42.508077],\n\t\t\t\t\t\t[-90.640927, 42.508302],\n\t\t\t\t\t\t[-90.636927, 42.513202],\n\t\t\t\t\t\t[-90.636727, 42.518702],\n\t\t\t\t\t\t[-90.645627, 42.544100],\n\t\t\t\t\t\t[-90.702671, 42.630756],\n\t\t\t\t\t\t[-90.709204, 42.636078],\n\t\t\t\t\t\t[-90.720209, 42.640758],\n\t\t\t\t\t\t[-90.769495, 42.651443],\n\t\t\t\t\t\t[-90.843910, 42.663071],\n\t\t\t\t\t\t[-90.896961, 42.674407],\n\t\t\t\t\t\t[-90.949213, 42.685573]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55047\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"047\",\n\t\t\t\t\"NAME\": \"Green Lake\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 349.437000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.006848, 43.633045],\n\t\t\t\t\t\t[-89.245437, 43.643083],\n\t\t\t\t\t\t[-89.245471, 43.766416],\n\t\t\t\t\t\t[-89.198299, 43.812677],\n\t\t\t\t\t\t[-89.168612, 43.982834],\n\t\t\t\t\t\t[-88.886193, 43.983233],\n\t\t\t\t\t\t[-88.885697, 43.895184],\n\t\t\t\t\t\t[-88.886052, 43.633540],\n\t\t\t\t\t\t[-89.006848, 43.633045]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55049\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"049\",\n\t\t\t\t\"NAME\": \"Iowa\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 762.580000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.838410, 42.813799],\n\t\t\t\t\t\t[-90.426902, 42.812862],\n\t\t\t\t\t\t[-90.429825, 43.200940],\n\t\t\t\t\t\t[-90.292534, 43.206859],\n\t\t\t\t\t\t[-90.193814, 43.164464],\n\t\t\t\t\t\t[-89.838135, 43.206057],\n\t\t\t\t\t\t[-89.838167, 42.857397],\n\t\t\t\t\t\t[-89.838410, 42.813799]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55055\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"055\",\n\t\t\t\t\"NAME\": \"Jefferson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 556.474000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.539619, 43.107605],\n\t\t\t\t\t\t[-88.542026, 42.930940],\n\t\t\t\t\t\t[-88.541535, 42.842996],\n\t\t\t\t\t\t[-88.659279, 42.842541],\n\t\t\t\t\t\t[-88.707961, 42.842657],\n\t\t\t\t\t\t[-88.771719, 42.842825],\n\t\t\t\t\t\t[-88.777076, 42.842694],\n\t\t\t\t\t\t[-89.013489, 42.847347],\n\t\t\t\t\t\t[-89.008920, 43.197721],\n\t\t\t\t\t\t[-88.832098, 43.197897],\n\t\t\t\t\t\t[-88.535843, 43.196048],\n\t\t\t\t\t\t[-88.539619, 43.107605]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55057\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"057\",\n\t\t\t\t\"NAME\": \"Juneau\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 766.925000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.785809, 43.641049],\n\t\t\t\t\t\t[-89.823444, 43.641035],\n\t\t\t\t\t\t[-89.824362, 43.641146],\n\t\t\t\t\t\t[-89.825916, 43.641011],\n\t\t\t\t\t\t[-89.831781, 43.641095],\n\t\t\t\t\t\t[-89.835589, 43.640920],\n\t\t\t\t\t\t[-89.838112, 43.640930],\n\t\t\t\t\t\t[-90.312404, 43.640988],\n\t\t\t\t\t\t[-90.312195, 43.731312],\n\t\t\t\t\t\t[-90.312575, 44.155284],\n\t\t\t\t\t\t[-90.312570, 44.240933],\n\t\t\t\t\t\t[-90.312035, 44.248758],\n\t\t\t\t\t\t[-89.902565, 44.249470],\n\t\t\t\t\t\t[-89.925822, 44.192715],\n\t\t\t\t\t\t[-89.903344, 44.178696],\n\t\t\t\t\t\t[-90.028807, 44.090232],\n\t\t\t\t\t\t[-89.968949, 43.994074],\n\t\t\t\t\t\t[-89.958101, 43.859902],\n\t\t\t\t\t\t[-89.865478, 43.783177],\n\t\t\t\t\t\t[-89.785809, 43.641049]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55059\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"059\",\n\t\t\t\t\"NAME\": \"Kenosha\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 271.990000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.812632, 42.547562],\n\t\t\t\t\t\t[-87.812273, 42.529820],\n\t\t\t\t\t\t[-87.809672, 42.514820],\n\t\t\t\t\t\t[-87.800477, 42.491920],\n\t\t\t\t\t\t[-87.800561, 42.491920],\n\t\t\t\t\t\t[-87.815872, 42.491920],\n\t\t\t\t\t\t[-87.843594, 42.492307],\n\t\t\t\t\t\t[-87.900242, 42.493020],\n\t\t\t\t\t\t[-87.971279, 42.494019],\n\t\t\t\t\t\t[-87.990180, 42.494519],\n\t\t\t\t\t\t[-88.049782, 42.495319],\n\t\t\t\t\t\t[-88.199521, 42.496013],\n\t\t\t\t\t\t[-88.200172, 42.496016],\n\t\t\t\t\t\t[-88.216900, 42.495923],\n\t\t\t\t\t\t[-88.271691, 42.494818],\n\t\t\t\t\t\t[-88.304692, 42.494773],\n\t\t\t\t\t\t[-88.305891, 42.610817],\n\t\t\t\t\t\t[-88.188173, 42.611456],\n\t\t\t\t\t\t[-88.188306, 42.669709],\n\t\t\t\t\t\t[-87.805768, 42.668128],\n\t\t\t\t\t\t[-87.807082, 42.664571],\n\t\t\t\t\t\t[-87.809880, 42.656997],\n\t\t\t\t\t\t[-87.809885, 42.656982],\n\t\t\t\t\t\t[-87.811371, 42.652959],\n\t\t\t\t\t\t[-87.813445, 42.647345],\n\t\t\t\t\t\t[-87.814674, 42.644020],\n\t\t\t\t\t\t[-87.819407, 42.617327],\n\t\t\t\t\t\t[-87.819674, 42.615820],\n\t\t\t\t\t\t[-87.819374, 42.606620],\n\t\t\t\t\t\t[-87.815736, 42.596045],\n\t\t\t\t\t\t[-87.815074, 42.594120],\n\t\t\t\t\t\t[-87.810873, 42.587320],\n\t\t\t\t\t\t[-87.811617, 42.584809],\n\t\t\t\t\t\t[-87.812871, 42.580576],\n\t\t\t\t\t\t[-87.813273, 42.579220],\n\t\t\t\t\t\t[-87.813223, 42.576759],\n\t\t\t\t\t\t[-87.813142, 42.572768],\n\t\t\t\t\t\t[-87.813135, 42.572424],\n\t\t\t\t\t\t[-87.812851, 42.558352],\n\t\t\t\t\t\t[-87.812724, 42.552104],\n\t\t\t\t\t\t[-87.812632, 42.547562]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US56027\",\n\t\t\t\t\"STATE\": \"56\",\n\t\t\t\t\"COUNTY\": \"027\",\n\t\t\t\t\"NAME\": \"Niobrara\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2626.037000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-104.655639, 42.609468],\n\t\t\t\t\t\t[-104.892437, 42.608939],\n\t\t\t\t\t\t[-104.899941, 43.499640],\n\t\t\t\t\t\t[-104.054787, 43.503328],\n\t\t\t\t\t\t[-104.054786, 43.503072],\n\t\t\t\t\t\t[-104.054779, 43.477815],\n\t\t\t\t\t\t[-104.054766, 43.428914],\n\t\t\t\t\t\t[-104.054614, 43.390949],\n\t\t\t\t\t\t[-104.054403, 43.325914],\n\t\t\t\t\t\t[-104.054218, 43.304370],\n\t\t\t\t\t\t[-104.053884, 43.297047],\n\t\t\t\t\t\t[-104.053876, 43.289801],\n\t\t\t\t\t\t[-104.053127, 43.000585],\n\t\t\t\t\t\t[-104.052863, 42.754569],\n\t\t\t\t\t\t[-104.052809, 42.749966],\n\t\t\t\t\t\t[-104.052583, 42.650062],\n\t\t\t\t\t\t[-104.052741, 42.633982],\n\t\t\t\t\t\t[-104.052586, 42.630917],\n\t\t\t\t\t\t[-104.052773, 42.611766],\n\t\t\t\t\t\t[-104.612350, 42.608805],\n\t\t\t\t\t\t[-104.655639, 42.609468]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US56029\",\n\t\t\t\t\"STATE\": \"56\",\n\t\t\t\t\"COUNTY\": \"029\",\n\t\t\t\t\"NAME\": \"Park\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 6942.078000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-110.053179, 44.008022],\n\t\t\t\t\t\t[-110.053357, 44.132628],\n\t\t\t\t\t\t[-110.119193, 44.132584],\n\t\t\t\t\t\t[-110.111284, 44.199375],\n\t\t\t\t\t\t[-110.151100, 44.292464],\n\t\t\t\t\t\t[-110.296648, 44.431341],\n\t\t\t\t\t\t[-110.294850, 44.546923],\n\t\t\t\t\t\t[-110.375334, 44.583016],\n\t\t\t\t\t\t[-110.667899, 44.582792],\n\t\t\t\t\t\t[-110.667867, 44.666291],\n\t\t\t\t\t\t[-111.055495, 44.666262],\n\t\t\t\t\t\t[-111.056888, 44.866658],\n\t\t\t\t\t\t[-111.055629, 44.933578],\n\t\t\t\t\t\t[-111.056207, 44.935901],\n\t\t\t\t\t\t[-111.044275, 45.001345],\n\t\t\t\t\t\t[-110.875772, 45.002101],\n\t\t\t\t\t\t[-110.750767, 44.997948],\n\t\t\t\t\t\t[-110.705272, 44.992324],\n\t\t\t\t\t\t[-110.552433, 44.992237],\n\t\t\t\t\t\t[-110.547165, 44.992459],\n\t\t\t\t\t\t[-110.221343, 44.996176],\n\t\t\t\t\t\t[-110.110103, 45.003905],\n\t\t\t\t\t\t[-110.026347, 45.003665],\n\t\t\t\t\t\t[-110.025544, 45.003602],\n\t\t\t\t\t\t[-109.798687, 45.002188],\n\t\t\t\t\t\t[-109.269294, 45.005283],\n\t\t\t\t\t\t[-109.263431, 45.005345],\n\t\t\t\t\t\t[-109.103445, 45.005904],\n\t\t\t\t\t\t[-109.083010, 44.999610],\n\t\t\t\t\t\t[-109.062262, 44.999623],\n\t\t\t\t\t\t[-108.621313, 45.000408],\n\t\t\t\t\t\t[-108.592296, 44.871444],\n\t\t\t\t\t\t[-108.592494, 44.520930],\n\t\t\t\t\t\t[-108.573420, 44.520811],\n\t\t\t\t\t\t[-108.573797, 44.168468],\n\t\t\t\t\t\t[-108.550562, 44.168455],\n\t\t\t\t\t\t[-108.550758, 44.079403],\n\t\t\t\t\t\t[-108.792277, 44.079616],\n\t\t\t\t\t\t[-108.791779, 43.991053],\n\t\t\t\t\t\t[-108.915985, 43.990854],\n\t\t\t\t\t\t[-108.912783, 43.904754],\n\t\t\t\t\t\t[-109.092878, 43.904474],\n\t\t\t\t\t\t[-109.093603, 43.817619],\n\t\t\t\t\t\t[-109.312949, 43.813293],\n\t\t\t\t\t\t[-109.542332, 43.961352],\n\t\t\t\t\t\t[-109.641808, 43.922785],\n\t\t\t\t\t\t[-109.665893, 43.845726],\n\t\t\t\t\t\t[-109.789900, 43.803252],\n\t\t\t\t\t\t[-109.843455, 43.819864],\n\t\t\t\t\t\t[-109.816179, 43.881974],\n\t\t\t\t\t\t[-109.858754, 43.957988],\n\t\t\t\t\t\t[-109.990073, 43.949066],\n\t\t\t\t\t\t[-110.053179, 44.008022]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US56035\",\n\t\t\t\t\"STATE\": \"56\",\n\t\t\t\t\"COUNTY\": \"035\",\n\t\t\t\t\"NAME\": \"Sublette\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 4886.537000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-110.051570, 43.464783],\n\t\t\t\t\t\t[-109.754717, 43.463200],\n\t\t\t\t\t\t[-109.754462, 43.365905],\n\t\t\t\t\t\t[-109.694942, 43.366152],\n\t\t\t\t\t\t[-109.692716, 43.265030],\n\t\t\t\t\t\t[-109.651451, 43.167036],\n\t\t\t\t\t\t[-109.560451, 43.083538],\n\t\t\t\t\t\t[-109.552579, 43.012538],\n\t\t\t\t\t\t[-109.370658, 42.945728],\n\t\t\t\t\t\t[-109.315360, 42.856131],\n\t\t\t\t\t\t[-109.072851, 42.693514],\n\t\t\t\t\t\t[-109.069477, 42.433477],\n\t\t\t\t\t\t[-109.043801, 42.433644],\n\t\t\t\t\t\t[-109.043864, 42.263684],\n\t\t\t\t\t\t[-109.496675, 42.263318],\n\t\t\t\t\t\t[-110.053708, 42.270744],\n\t\t\t\t\t\t[-110.541634, 42.277491],\n\t\t\t\t\t\t[-110.590074, 42.710087],\n\t\t\t\t\t\t[-110.623477, 42.710181],\n\t\t\t\t\t\t[-110.587662, 42.779188],\n\t\t\t\t\t\t[-110.587993, 43.126147],\n\t\t\t\t\t\t[-110.578656, 43.235224],\n\t\t\t\t\t\t[-110.578380, 43.291640],\n\t\t\t\t\t\t[-110.343959, 43.291165],\n\t\t\t\t\t\t[-110.344218, 43.377918],\n\t\t\t\t\t\t[-110.057310, 43.377768],\n\t\t\t\t\t\t[-110.051570, 43.464783]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US56037\",\n\t\t\t\t\"STATE\": \"56\",\n\t\t\t\t\"COUNTY\": \"037\",\n\t\t\t\t\"NAME\": \"Sweetwater\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 10426.649000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-110.048000, 41.578015],\n\t\t\t\t\t\t[-110.053708, 42.270744],\n\t\t\t\t\t\t[-109.496675, 42.263318],\n\t\t\t\t\t\t[-109.043864, 42.263684],\n\t\t\t\t\t\t[-108.375655, 42.263672],\n\t\t\t\t\t\t[-107.522722, 42.261756],\n\t\t\t\t\t\t[-107.503821, 42.087957],\n\t\t\t\t\t\t[-107.509720, 41.657452],\n\t\t\t\t\t\t[-107.929736, 41.659596],\n\t\t\t\t\t\t[-107.918421, 41.002036],\n\t\t\t\t\t\t[-108.250649, 41.000114],\n\t\t\t\t\t\t[-109.050076, 41.000659],\n\t\t\t\t\t\t[-109.207383, 41.001459],\n\t\t\t\t\t\t[-109.676421, 40.998395],\n\t\t\t\t\t\t[-109.713877, 40.998266],\n\t\t\t\t\t\t[-109.715409, 40.998191],\n\t\t\t\t\t\t[-109.854302, 40.997661],\n\t\t\t\t\t\t[-109.855299, 40.997614],\n\t\t\t\t\t\t[-109.999838, 40.997330],\n\t\t\t\t\t\t[-110.000708, 40.997352],\n\t\t\t\t\t\t[-110.048474, 40.997103],\n\t\t\t\t\t\t[-110.048000, 41.578015]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US56043\",\n\t\t\t\t\"STATE\": \"56\",\n\t\t\t\t\"COUNTY\": \"043\",\n\t\t\t\t\"NAME\": \"Washakie\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2238.549000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-108.550758, 44.079403],\n\t\t\t\t\t\t[-108.550562, 44.168455],\n\t\t\t\t\t\t[-107.146808, 44.165666],\n\t\t\t\t\t\t[-107.128584, 44.165692],\n\t\t\t\t\t\t[-107.110734, 43.500286],\n\t\t\t\t\t\t[-107.534897, 43.501362],\n\t\t\t\t\t\t[-107.595105, 43.501397],\n\t\t\t\t\t\t[-107.595157, 43.646427],\n\t\t\t\t\t\t[-107.716218, 43.645766],\n\t\t\t\t\t\t[-107.715876, 43.733343],\n\t\t\t\t\t\t[-107.956577, 43.733446],\n\t\t\t\t\t\t[-107.956448, 43.818666],\n\t\t\t\t\t\t[-108.174938, 43.818968],\n\t\t\t\t\t\t[-108.185255, 43.848255],\n\t\t\t\t\t\t[-108.309695, 43.846619],\n\t\t\t\t\t\t[-108.309360, 43.903255],\n\t\t\t\t\t\t[-108.429563, 43.903355],\n\t\t\t\t\t\t[-108.427064, 43.992054],\n\t\t\t\t\t\t[-108.489431, 43.991866],\n\t\t\t\t\t\t[-108.490254, 44.079760],\n\t\t\t\t\t\t[-108.550758, 44.079403]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72001\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"001\",\n\t\t\t\t\"NAME\": \"Adjuntas\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 66.690000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-66.670494, 18.152831],\n\t\t\t\t\t\t[-66.676951, 18.129977],\n\t\t\t\t\t\t[-66.694070, 18.130534],\n\t\t\t\t\t\t[-66.769049, 18.134983],\n\t\t\t\t\t\t[-66.775694, 18.133788],\n\t\t\t\t\t\t[-66.784400, 18.138652],\n\t\t\t\t\t\t[-66.788544, 18.134404],\n\t\t\t\t\t\t[-66.797557, 18.133445],\n\t\t\t\t\t\t[-66.803365, 18.140384],\n\t\t\t\t\t\t[-66.804058, 18.148056],\n\t\t\t\t\t\t[-66.818090, 18.150509],\n\t\t\t\t\t\t[-66.826278, 18.160216],\n\t\t\t\t\t\t[-66.827327, 18.171242],\n\t\t\t\t\t\t[-66.817271, 18.230336],\n\t\t\t\t\t\t[-66.693730, 18.216891],\n\t\t\t\t\t\t[-66.670494, 18.152831]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72007\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"007\",\n\t\t\t\t\"NAME\": \"Aguas Buenas\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 30.085000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-66.143861, 18.279590],\n\t\t\t\t\t\t[-66.107787, 18.277874],\n\t\t\t\t\t\t[-66.086465, 18.285094],\n\t\t\t\t\t\t[-66.080475, 18.297295],\n\t\t\t\t\t\t[-66.072824, 18.297841],\n\t\t\t\t\t\t[-66.066103, 18.303321],\n\t\t\t\t\t\t[-66.117774, 18.209949],\n\t\t\t\t\t\t[-66.169126, 18.224290],\n\t\t\t\t\t\t[-66.169141, 18.226013],\n\t\t\t\t\t\t[-66.176409, 18.230251],\n\t\t\t\t\t\t[-66.174947, 18.233095],\n\t\t\t\t\t\t[-66.178855, 18.237540],\n\t\t\t\t\t\t[-66.179052, 18.246969],\n\t\t\t\t\t\t[-66.187298, 18.253790],\n\t\t\t\t\t\t[-66.190676, 18.258840],\n\t\t\t\t\t\t[-66.177099, 18.276194],\n\t\t\t\t\t\t[-66.143861, 18.279590]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72011\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"011\",\n\t\t\t\t\"NAME\": \"A�asco\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 39.285000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-67.082002, 18.254946],\n\t\t\t\t\t\t[-67.187873, 18.266874],\n\t\t\t\t\t\t[-67.189971, 18.281015],\n\t\t\t\t\t\t[-67.196056, 18.290443],\n\t\t\t\t\t\t[-67.209963, 18.294974],\n\t\t\t\t\t\t[-67.225403, 18.296648],\n\t\t\t\t\t\t[-67.220709, 18.305700],\n\t\t\t\t\t\t[-67.195908, 18.307539],\n\t\t\t\t\t\t[-67.182852, 18.313026],\n\t\t\t\t\t\t[-67.172608, 18.318232],\n\t\t\t\t\t\t[-67.160990, 18.316072],\n\t\t\t\t\t\t[-67.148707, 18.322239],\n\t\t\t\t\t\t[-67.130167, 18.317927],\n\t\t\t\t\t\t[-67.121432, 18.323938],\n\t\t\t\t\t\t[-67.052583, 18.306655],\n\t\t\t\t\t\t[-67.040709, 18.300302],\n\t\t\t\t\t\t[-67.037935, 18.289705],\n\t\t\t\t\t\t[-67.040228, 18.271985],\n\t\t\t\t\t\t[-67.061828, 18.270082],\n\t\t\t\t\t\t[-67.082002, 18.254946]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US53043\",\n\t\t\t\t\"STATE\": \"53\",\n\t\t\t\t\"COUNTY\": \"043\",\n\t\t\t\t\"NAME\": \"Lincoln\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2310.494000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-117.820784, 47.825188],\n\t\t\t\t\t\t[-117.823695, 47.260378],\n\t\t\t\t\t\t[-117.960143, 47.260449],\n\t\t\t\t\t\t[-118.838281, 47.260957],\n\t\t\t\t\t\t[-118.979519, 47.261712],\n\t\t\t\t\t\t[-118.976480, 47.659033],\n\t\t\t\t\t\t[-118.973502, 47.943570],\n\t\t\t\t\t\t[-118.954307, 47.940809],\n\t\t\t\t\t\t[-118.851972, 47.957686],\n\t\t\t\t\t\t[-118.711682, 47.903347],\n\t\t\t\t\t\t[-118.570396, 47.932318],\n\t\t\t\t\t\t[-118.544090, 47.883973],\n\t\t\t\t\t\t[-118.357065, 47.841599],\n\t\t\t\t\t\t[-118.340925, 47.894395],\n\t\t\t\t\t\t[-118.213025, 47.945298],\n\t\t\t\t\t\t[-118.078212, 47.800161],\n\t\t\t\t\t\t[-117.882083, 47.847152],\n\t\t\t\t\t\t[-117.820784, 47.825188]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US53051\",\n\t\t\t\t\"STATE\": \"53\",\n\t\t\t\t\"COUNTY\": \"051\",\n\t\t\t\t\"NAME\": \"Pend Oreille\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1399.989000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-117.429539, 48.999957],\n\t\t\t\t\t\t[-117.268192, 48.999928],\n\t\t\t\t\t\t[-117.268247, 48.999818],\n\t\t\t\t\t\t[-117.032351, 48.999188],\n\t\t\t\t\t\t[-117.033177, 48.846563],\n\t\t\t\t\t\t[-117.034358, 48.628523],\n\t\t\t\t\t\t[-117.034499, 48.620769],\n\t\t\t\t\t\t[-117.035285, 48.430113],\n\t\t\t\t\t\t[-117.035285, 48.429816],\n\t\t\t\t\t\t[-117.035254, 48.423144],\n\t\t\t\t\t\t[-117.035289, 48.422732],\n\t\t\t\t\t\t[-117.035178, 48.371221],\n\t\t\t\t\t\t[-117.035178, 48.370878],\n\t\t\t\t\t\t[-117.039599, 48.184387],\n\t\t\t\t\t\t[-117.039615, 48.184015],\n\t\t\t\t\t\t[-117.039582, 48.181124],\n\t\t\t\t\t\t[-117.039582, 48.180853],\n\t\t\t\t\t\t[-117.039583, 48.180313],\n\t\t\t\t\t\t[-117.039618, 48.178142],\n\t\t\t\t\t\t[-117.039413, 48.177250],\n\t\t\t\t\t\t[-117.039552, 48.173960],\n\t\t\t\t\t\t[-117.041401, 48.085500],\n\t\t\t\t\t\t[-117.041676, 48.045560],\n\t\t\t\t\t\t[-117.436903, 48.047206],\n\t\t\t\t\t\t[-117.437521, 48.134631],\n\t\t\t\t\t\t[-117.502314, 48.134864],\n\t\t\t\t\t\t[-117.499695, 48.656227],\n\t\t\t\t\t\t[-117.629241, 48.655848],\n\t\t\t\t\t\t[-117.629512, 48.742683],\n\t\t\t\t\t\t[-117.563527, 48.742464],\n\t\t\t\t\t\t[-117.563619, 48.836699],\n\t\t\t\t\t\t[-117.498577, 48.836813],\n\t\t\t\t\t\t[-117.498868, 48.922786],\n\t\t\t\t\t\t[-117.430203, 48.923068],\n\t\t\t\t\t\t[-117.429539, 48.999957]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US53053\",\n\t\t\t\t\"STATE\": \"53\",\n\t\t\t\t\"COUNTY\": \"053\",\n\t\t\t\t\"NAME\": \"Pierce\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1669.508000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-122.444200, 47.266723],\n\t\t\t\t\t\t[-122.437727, 47.268046],\n\t\t\t\t\t\t[-122.429605, 47.269707],\n\t\t\t\t\t\t[-122.418074, 47.281765],\n\t\t\t\t\t\t[-122.409199, 47.288556],\n\t\t\t\t\t\t[-122.413735, 47.293921],\n\t\t\t\t\t\t[-122.424235, 47.297521],\n\t\t\t\t\t\t[-122.432335, 47.296021],\n\t\t\t\t\t\t[-122.444635, 47.300421],\n\t\t\t\t\t\t[-122.443008, 47.306333],\n\t\t\t\t\t\t[-122.423535, 47.319121],\n\t\t\t\t\t\t[-122.418268, 47.320614],\n\t\t\t\t\t\t[-122.334860, 47.257594],\n\t\t\t\t\t\t[-122.229494, 47.257538],\n\t\t\t\t\t\t[-122.229208, 47.257538],\n\t\t\t\t\t\t[-122.143967, 47.257347],\n\t\t\t\t\t\t[-122.047909, 47.171645],\n\t\t\t\t\t\t[-121.839148, 47.143356],\n\t\t\t\t\t\t[-121.796678, 47.173059],\n\t\t\t\t\t\t[-121.379671, 47.086765],\n\t\t\t\t\t\t[-121.456500, 46.922733],\n\t\t\t\t\t\t[-121.523270, 46.873280],\n\t\t\t\t\t\t[-121.456356, 46.783744],\n\t\t\t\t\t\t[-121.758941, 46.783734],\n\t\t\t\t\t\t[-121.832590, 46.729721],\n\t\t\t\t\t\t[-122.202721, 46.762628],\n\t\t\t\t\t\t[-122.372977, 46.845038],\n\t\t\t\t\t\t[-122.491497, 46.867863],\n\t\t\t\t\t\t[-122.637396, 46.977097],\n\t\t\t\t\t\t[-122.759500, 47.141216],\n\t\t\t\t\t\t[-122.775997, 47.155187],\n\t\t\t\t\t\t[-122.792371, 47.174169],\n\t\t\t\t\t\t[-122.821426, 47.194211],\n\t\t\t\t\t\t[-122.850050, 47.272917],\n\t\t\t\t\t\t[-122.801451, 47.404016],\n\t\t\t\t\t\t[-122.536720, 47.402990],\n\t\t\t\t\t\t[-122.538429, 47.390829],\n\t\t\t\t\t\t[-122.528434, 47.378211],\n\t\t\t\t\t\t[-122.537935, 47.359203],\n\t\t\t\t\t\t[-122.551536, 47.359540],\n\t\t\t\t\t\t[-122.555840, 47.347519],\n\t\t\t\t\t\t[-122.571340, 47.327219],\n\t\t\t\t\t\t[-122.575985, 47.326420],\n\t\t\t\t\t\t[-122.573739, 47.318419],\n\t\t\t\t\t\t[-122.571239, 47.315619],\n\t\t\t\t\t\t[-122.547747, 47.316403],\n\t\t\t\t\t\t[-122.547408, 47.317734],\n\t\t\t\t\t\t[-122.540238, 47.318520],\n\t\t\t\t\t\t[-122.533338, 47.316620],\n\t\t\t\t\t\t[-122.471652, 47.277321],\n\t\t\t\t\t\t[-122.444200, 47.266723]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48197\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"197\",\n\t\t\t\t\"NAME\": \"Hardeman\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 695.114000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.997720, 34.311829],\n\t\t\t\t\t\t[-99.997508, 34.558017],\n\t\t\t\t\t\t[-99.997853, 34.561485],\n\t\t\t\t\t\t[-99.954567, 34.578195],\n\t\t\t\t\t\t[-99.945720, 34.579273],\n\t\t\t\t\t\t[-99.923211, 34.574552],\n\t\t\t\t\t\t[-99.884842, 34.546953],\n\t\t\t\t\t\t[-99.874403, 34.537095],\n\t\t\t\t\t\t[-99.872357, 34.532096],\n\t\t\t\t\t\t[-99.864922, 34.523018],\n\t\t\t\t\t\t[-99.846399, 34.505045],\n\t\t\t\t\t\t[-99.793684, 34.453894],\n\t\t\t\t\t\t[-99.767234, 34.430502],\n\t\t\t\t\t\t[-99.694970, 34.378333],\n\t\t\t\t\t\t[-99.663948, 34.373680],\n\t\t\t\t\t\t[-99.616793, 34.375391],\n\t\t\t\t\t\t[-99.580060, 34.416653],\n\t\t\t\t\t\t[-99.574367, 34.418281],\n\t\t\t\t\t\t[-99.515385, 34.414333],\n\t\t\t\t\t\t[-99.499875, 34.409608],\n\t\t\t\t\t\t[-99.474161, 34.398052],\n\t\t\t\t\t\t[-99.475115, 34.395930],\n\t\t\t\t\t\t[-99.475294, 34.085618],\n\t\t\t\t\t\t[-99.547509, 34.055980],\n\t\t\t\t\t\t[-99.653010, 34.098971],\n\t\t\t\t\t\t[-99.772043, 34.093286],\n\t\t\t\t\t\t[-99.997621, 34.224355],\n\t\t\t\t\t\t[-99.997867, 34.282934],\n\t\t\t\t\t\t[-99.997671, 34.284652],\n\t\t\t\t\t\t[-99.997720, 34.311829]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48199\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"199\",\n\t\t\t\t\"NAME\": \"Hardin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 890.567000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.545717, 30.526977],\n\t\t\t\t\t\t[-94.071689, 30.526033],\n\t\t\t\t\t\t[-94.116498, 30.433966],\n\t\t\t\t\t\t[-94.083386, 30.342181],\n\t\t\t\t\t\t[-94.117604, 30.241665],\n\t\t\t\t\t\t[-94.115917, 30.160347],\n\t\t\t\t\t\t[-94.209577, 30.187724],\n\t\t\t\t\t\t[-94.292629, 30.117671],\n\t\t\t\t\t\t[-94.444910, 30.113015],\n\t\t\t\t\t\t[-94.603159, 30.130904],\n\t\t\t\t\t\t[-94.732732, 30.490066],\n\t\t\t\t\t\t[-94.537926, 30.491059],\n\t\t\t\t\t\t[-94.545717, 30.526977]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48201\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"201\",\n\t\t\t\t\"NAME\": \"Harris\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1703.478000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.688349, 29.710862],\n\t\t\t\t\t\t[-95.826220, 29.788280],\n\t\t\t\t\t\t[-95.960733, 30.163415],\n\t\t\t\t\t\t[-95.803330, 30.090096],\n\t\t\t\t\t\t[-95.655430, 30.108994],\n\t\t\t\t\t\t[-95.551421, 30.170606],\n\t\t\t\t\t\t[-95.505125, 30.145153],\n\t\t\t\t\t\t[-95.264013, 30.032217],\n\t\t\t\t\t\t[-95.096708, 30.167214],\n\t\t\t\t\t\t[-95.031179, 29.993324],\n\t\t\t\t\t\t[-94.985364, 29.972279],\n\t\t\t\t\t\t[-94.981460, 29.884276],\n\t\t\t\t\t\t[-94.908654, 29.825181],\n\t\t\t\t\t\t[-94.931154, 29.673874],\n\t\t\t\t\t\t[-94.934167, 29.678682],\n\t\t\t\t\t\t[-94.936089, 29.692704],\n\t\t\t\t\t\t[-94.942681, 29.697778],\n\t\t\t\t\t\t[-94.965963, 29.700330],\n\t\t\t\t\t\t[-94.972666, 29.684870],\n\t\t\t\t\t\t[-94.988924, 29.672202],\n\t\t\t\t\t\t[-95.005398, 29.659366],\n\t\t\t\t\t\t[-95.005648, 29.658985],\n\t\t\t\t\t\t[-95.006381, 29.657871],\n\t\t\t\t\t\t[-95.007623, 29.655980],\n\t\t\t\t\t\t[-95.011025, 29.650803],\n\t\t\t\t\t\t[-95.011683, 29.649802],\n\t\t\t\t\t\t[-95.012720, 29.647088],\n\t\t\t\t\t\t[-95.013777, 29.644322],\n\t\t\t\t\t\t[-95.015636, 29.639457],\n\t\t\t\t\t\t[-95.015600, 29.639285],\n\t\t\t\t\t\t[-95.013623, 29.629790],\n\t\t\t\t\t\t[-95.013499, 29.629194],\n\t\t\t\t\t\t[-95.011660, 29.627768],\n\t\t\t\t\t\t[-95.000781, 29.619331],\n\t\t\t\t\t\t[-95.000460, 29.619082],\n\t\t\t\t\t\t[-94.999481, 29.618323],\n\t\t\t\t\t\t[-94.999082, 29.618014],\n\t\t\t\t\t\t[-94.988871, 29.610095],\n\t\t\t\t\t\t[-94.984831, 29.604361],\n\t\t\t\t\t\t[-94.982936, 29.601670],\n\t\t\t\t\t\t[-94.982706, 29.601344],\n\t\t\t\t\t\t[-94.982855, 29.601103],\n\t\t\t\t\t\t[-94.982923, 29.600992],\n\t\t\t\t\t\t[-94.988993, 29.591155],\n\t\t\t\t\t\t[-95.007670, 29.574257],\n\t\t\t\t\t\t[-95.016145, 29.559336],\n\t\t\t\t\t\t[-95.016353, 29.558970],\n\t\t\t\t\t\t[-95.016627, 29.558487],\n\t\t\t\t\t\t[-95.016672, 29.558388],\n\t\t\t\t\t\t[-95.018253, 29.554885],\n\t\t\t\t\t\t[-95.018198, 29.554618],\n\t\t\t\t\t\t[-95.018191, 29.554584],\n\t\t\t\t\t\t[-95.163927, 29.498051],\n\t\t\t\t\t\t[-95.216422, 29.556080],\n\t\t\t\t\t\t[-95.297409, 29.596514],\n\t\t\t\t\t\t[-95.424118, 29.580233],\n\t\t\t\t\t\t[-95.435618, 29.585633],\n\t\t\t\t\t\t[-95.440415, 29.588065],\n\t\t\t\t\t\t[-95.446970, 29.590978],\n\t\t\t\t\t\t[-95.537948, 29.633282],\n\t\t\t\t\t\t[-95.610025, 29.666990],\n\t\t\t\t\t\t[-95.687082, 29.710078],\n\t\t\t\t\t\t[-95.687994, 29.710667],\n\t\t\t\t\t\t[-95.688349, 29.710862]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48203\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"203\",\n\t\t\t\t\"NAME\": \"Harrison\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 899.951000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.491818, 32.394137],\n\t\t\t\t\t\t[-94.579219, 32.394916],\n\t\t\t\t\t\t[-94.701986, 32.421782],\n\t\t\t\t\t\t[-94.701790, 32.652209],\n\t\t\t\t\t\t[-94.702140, 32.793088],\n\t\t\t\t\t\t[-94.507323, 32.693738],\n\t\t\t\t\t\t[-94.390783, 32.694377],\n\t\t\t\t\t\t[-94.242809, 32.750730],\n\t\t\t\t\t\t[-94.043147, 32.693030],\n\t\t\t\t\t\t[-94.042913, 32.655127],\n\t\t\t\t\t\t[-94.042780, 32.643466],\n\t\t\t\t\t\t[-94.042824, 32.640305],\n\t\t\t\t\t\t[-94.042926, 32.622015],\n\t\t\t\t\t\t[-94.042929, 32.618260],\n\t\t\t\t\t\t[-94.042919, 32.610142],\n\t\t\t\t\t\t[-94.043083, 32.564261],\n\t\t\t\t\t\t[-94.043142, 32.559502],\n\t\t\t\t\t\t[-94.043081, 32.513613],\n\t\t\t\t\t\t[-94.042885, 32.505145],\n\t\t\t\t\t\t[-94.042911, 32.492852],\n\t\t\t\t\t\t[-94.043089, 32.486561],\n\t\t\t\t\t\t[-94.043072, 32.484300],\n\t\t\t\t\t\t[-94.042955, 32.480261],\n\t\t\t\t\t\t[-94.042995, 32.478004],\n\t\t\t\t\t\t[-94.042902, 32.472906],\n\t\t\t\t\t\t[-94.042875, 32.471348],\n\t\t\t\t\t\t[-94.042903, 32.470386],\n\t\t\t\t\t\t[-94.042908, 32.439891],\n\t\t\t\t\t\t[-94.042986, 32.435507],\n\t\t\t\t\t\t[-94.042899, 32.400659],\n\t\t\t\t\t\t[-94.042923, 32.399918],\n\t\t\t\t\t\t[-94.042901, 32.392283],\n\t\t\t\t\t\t[-94.347563, 32.330682],\n\t\t\t\t\t\t[-94.491818, 32.394137]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48211\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"211\",\n\t\t\t\t\"NAME\": \"Hemphill\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 906.286000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.540221, 36.056491],\n\t\t\t\t\t\t[-100.000399, 36.055677],\n\t\t\t\t\t\t[-100.000396, 35.880948],\n\t\t\t\t\t\t[-100.000392, 35.619115],\n\t\t\t\t\t\t[-100.540158, 35.619296],\n\t\t\t\t\t\t[-100.540221, 36.056491]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48213\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"213\",\n\t\t\t\t\"NAME\": \"Henderson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 873.748000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.449165, 32.355233],\n\t\t\t\t\t\t[-95.488733, 32.232486],\n\t\t\t\t\t\t[-95.459908, 32.135559],\n\t\t\t\t\t\t[-95.456843, 32.112307],\n\t\t\t\t\t\t[-95.447088, 32.107291],\n\t\t\t\t\t\t[-95.428512, 32.084475],\n\t\t\t\t\t\t[-96.052786, 32.005895],\n\t\t\t\t\t\t[-96.052880, 32.008198],\n\t\t\t\t\t\t[-96.054780, 32.012526],\n\t\t\t\t\t\t[-96.115693, 32.160915],\n\t\t\t\t\t\t[-96.383082, 32.328851],\n\t\t\t\t\t\t[-96.452138, 32.358631],\n\t\t\t\t\t\t[-96.075899, 32.357505],\n\t\t\t\t\t\t[-95.449165, 32.355233]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48215\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"215\",\n\t\t\t\t\"NAME\": \"Hidalgo\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1570.865000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.861875, 26.348156],\n\t\t\t\t\t\t[-97.861837, 26.159480],\n\t\t\t\t\t\t[-97.861822, 26.069921],\n\t\t\t\t\t\t[-97.863056, 26.061273],\n\t\t\t\t\t\t[-97.888699, 26.064931],\n\t\t\t\t\t\t[-98.008307, 26.061147],\n\t\t\t\t\t\t[-98.011883, 26.056608],\n\t\t\t\t\t\t[-98.044517, 26.043746],\n\t\t\t\t\t\t[-98.132605, 26.057507],\n\t\t\t\t\t\t[-98.241664, 26.074544],\n\t\t\t\t\t\t[-98.264514, 26.085507],\n\t\t\t\t\t\t[-98.386694, 26.157872],\n\t\t\t\t\t\t[-98.438822, 26.212022],\n\t\t\t\t\t\t[-98.466167, 26.223245],\n\t\t\t\t\t\t[-98.585810, 26.257403],\n\t\t\t\t\t\t[-98.586720, 26.257456],\n\t\t\t\t\t\t[-98.493812, 26.441167],\n\t\t\t\t\t\t[-98.491943, 26.445362],\n\t\t\t\t\t\t[-98.478268, 26.469813],\n\t\t\t\t\t\t[-98.320670, 26.783081],\n\t\t\t\t\t\t[-97.985494, 26.780917],\n\t\t\t\t\t\t[-97.985303, 26.615809],\n\t\t\t\t\t\t[-97.957405, 26.611769],\n\t\t\t\t\t\t[-98.004189, 26.448784],\n\t\t\t\t\t\t[-97.861920, 26.433579],\n\t\t\t\t\t\t[-97.861875, 26.348156]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48223\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"223\",\n\t\t\t\t\"NAME\": \"Hopkins\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 767.174000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.862521, 32.979571],\n\t\t\t\t\t\t[-95.863296, 33.000117],\n\t\t\t\t\t\t[-95.861778, 33.219330],\n\t\t\t\t\t\t[-95.730784, 33.305405],\n\t\t\t\t\t\t[-95.584353, 33.359405],\n\t\t\t\t\t\t[-95.314165, 33.367232],\n\t\t\t\t\t\t[-95.308593, 33.377190],\n\t\t\t\t\t\t[-95.308957, 32.962572],\n\t\t\t\t\t\t[-95.665389, 32.960434],\n\t\t\t\t\t\t[-95.862521, 32.979571]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48235\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"235\",\n\t\t\t\t\"NAME\": \"Irion\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1051.563000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.688764, 31.086576],\n\t\t\t\t\t\t[-100.962176, 31.082490],\n\t\t\t\t\t\t[-101.274799, 31.079379],\n\t\t\t\t\t\t[-101.267947, 31.528688],\n\t\t\t\t\t\t[-101.223944, 31.530035],\n\t\t\t\t\t\t[-101.223243, 31.528661],\n\t\t\t\t\t\t[-100.693065, 31.523954],\n\t\t\t\t\t\t[-100.688764, 31.086576]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48237\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"237\",\n\t\t\t\t\"NAME\": \"Jack\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 910.662000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.978919, 33.467129],\n\t\t\t\t\t\t[-97.978967, 33.433748],\n\t\t\t\t\t\t[-97.918189, 33.433873],\n\t\t\t\t\t\t[-97.921642, 33.001284],\n\t\t\t\t\t\t[-98.056094, 33.003332],\n\t\t\t\t\t\t[-98.426553, 33.007913],\n\t\t\t\t\t\t[-98.420666, 33.396195],\n\t\t\t\t\t\t[-98.421419, 33.466797],\n\t\t\t\t\t\t[-97.978919, 33.467129]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48239\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"239\",\n\t\t\t\t\"NAME\": \"Jackson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 829.435000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.309178, 28.963291],\n\t\t\t\t\t\t[-96.323522, 28.675597],\n\t\t\t\t\t\t[-96.428394, 28.703523],\n\t\t\t\t\t\t[-96.575141, 28.702837],\n\t\t\t\t\t\t[-96.577727, 28.704365],\n\t\t\t\t\t\t[-96.578020, 28.704538],\n\t\t\t\t\t\t[-96.579639, 28.712312],\n\t\t\t\t\t\t[-96.579669, 28.712455],\n\t\t\t\t\t\t[-96.580564, 28.716752],\n\t\t\t\t\t\t[-96.584091, 28.722798],\n\t\t\t\t\t\t[-96.584127, 28.722859],\n\t\t\t\t\t\t[-96.584196, 28.722877],\n\t\t\t\t\t\t[-96.591647, 28.724838],\n\t\t\t\t\t\t[-96.593796, 28.725403],\n\t\t\t\t\t\t[-96.604921, 28.722210],\n\t\t\t\t\t\t[-96.634419, 28.713743],\n\t\t\t\t\t\t[-96.634912, 28.713601],\n\t\t\t\t\t\t[-96.645867, 28.710457],\n\t\t\t\t\t\t[-96.711514, 28.851411],\n\t\t\t\t\t\t[-96.792133, 28.918803],\n\t\t\t\t\t\t[-96.832103, 29.021299],\n\t\t\t\t\t\t[-96.938587, 29.063244],\n\t\t\t\t\t\t[-96.658466, 29.263876],\n\t\t\t\t\t\t[-96.643316, 29.250250],\n\t\t\t\t\t\t[-96.642303, 29.249576],\n\t\t\t\t\t\t[-96.640315, 29.247804],\n\t\t\t\t\t\t[-96.309178, 28.963291]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48243\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"243\",\n\t\t\t\t\"NAME\": \"Jeff Davis\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2264.555000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-103.439976, 30.665939],\n\t\t\t\t\t\t[-103.800680, 30.412527],\n\t\t\t\t\t\t[-103.901010, 30.412190],\n\t\t\t\t\t\t[-104.976636, 30.628946],\n\t\t\t\t\t\t[-104.979527, 30.629247],\n\t\t\t\t\t\t[-104.985365, 30.623792],\n\t\t\t\t\t\t[-104.979610, 30.629363],\n\t\t\t\t\t\t[-104.917163, 30.663626],\n\t\t\t\t\t\t[-104.102351, 31.105203],\n\t\t\t\t\t\t[-103.585084, 30.766470],\n\t\t\t\t\t\t[-103.439976, 30.665939]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48249\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"249\",\n\t\t\t\t\"NAME\": \"Jim Wells\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 864.966000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.232464, 27.262487],\n\t\t\t\t\t\t[-98.235497, 28.057966],\n\t\t\t\t\t\t[-97.883148, 28.056900],\n\t\t\t\t\t\t[-97.798517, 27.995659],\n\t\t\t\t\t\t[-97.934274, 27.885202],\n\t\t\t\t\t\t[-97.942146, 27.635932],\n\t\t\t\t\t\t[-98.059800, 27.635869],\n\t\t\t\t\t\t[-98.058078, 27.260981],\n\t\t\t\t\t\t[-98.232464, 27.262487]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48253\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"253\",\n\t\t\t\t\"NAME\": \"Jones\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 928.554000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.988827, 32.960121],\n\t\t\t\t\t\t[-99.612001, 32.956962],\n\t\t\t\t\t\t[-99.612026, 32.514654],\n\t\t\t\t\t\t[-99.629579, 32.514657],\n\t\t\t\t\t\t[-99.629639, 32.520713],\n\t\t\t\t\t\t[-100.146543, 32.522793],\n\t\t\t\t\t\t[-100.144224, 32.959978],\n\t\t\t\t\t\t[-99.988827, 32.960121]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48259\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"259\",\n\t\t\t\t\"NAME\": \"Kendall\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 662.453000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.917725, 29.781398],\n\t\t\t\t\t\t[-98.920147, 30.138290],\n\t\t\t\t\t\t[-98.587897, 30.138954],\n\t\t\t\t\t\t[-98.414018, 29.937557],\n\t\t\t\t\t\t[-98.644703, 29.746487],\n\t\t\t\t\t\t[-98.646124, 29.745181],\n\t\t\t\t\t\t[-98.778782, 29.720167],\n\t\t\t\t\t\t[-98.781017, 29.720890],\n\t\t\t\t\t\t[-98.917725, 29.781398]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51185\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"185\",\n\t\t\t\t\"NAME\": \"Tazewell\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 518.846000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.362156, 37.337687],\n\t\t\t\t\t\t[-81.320105, 37.299323],\n\t\t\t\t\t\t[-81.225104, 37.234874],\n\t\t\t\t\t\t[-81.328117, 37.139007],\n\t\t\t\t\t\t[-81.270259, 37.093004],\n\t\t\t\t\t\t[-81.462213, 37.035541],\n\t\t\t\t\t\t[-81.437182, 37.010091],\n\t\t\t\t\t\t[-81.576936, 36.989515],\n\t\t\t\t\t\t[-81.683038, 36.933014],\n\t\t\t\t\t\t[-81.780539, 36.958614],\n\t\t\t\t\t\t[-81.901087, 37.142546],\n\t\t\t\t\t\t[-81.738378, 37.240917],\n\t\t\t\t\t\t[-81.733320, 37.238127],\n\t\t\t\t\t\t[-81.728194, 37.239823],\n\t\t\t\t\t\t[-81.683544, 37.211452],\n\t\t\t\t\t\t[-81.678603, 37.202467],\n\t\t\t\t\t\t[-81.560625, 37.206663],\n\t\t\t\t\t\t[-81.558353, 37.208145],\n\t\t\t\t\t\t[-81.557315, 37.207697],\n\t\t\t\t\t\t[-81.507325, 37.233800],\n\t\t\t\t\t\t[-81.504880, 37.247697],\n\t\t\t\t\t\t[-81.504168, 37.250115],\n\t\t\t\t\t\t[-81.409729, 37.284837],\n\t\t\t\t\t\t[-81.409196, 37.286071],\n\t\t\t\t\t\t[-81.388132, 37.319903],\n\t\t\t\t\t\t[-81.386727, 37.320474],\n\t\t\t\t\t\t[-81.385810, 37.320085],\n\t\t\t\t\t\t[-81.384914, 37.318832],\n\t\t\t\t\t\t[-81.384127, 37.318596],\n\t\t\t\t\t\t[-81.380159, 37.317838],\n\t\t\t\t\t\t[-81.377349, 37.318447],\n\t\t\t\t\t\t[-81.371315, 37.324115],\n\t\t\t\t\t\t[-81.367599, 37.327569],\n\t\t\t\t\t\t[-81.369379, 37.331827],\n\t\t\t\t\t\t[-81.368090, 37.332423],\n\t\t\t\t\t\t[-81.367052, 37.334504],\n\t\t\t\t\t\t[-81.366315, 37.335927],\n\t\t\t\t\t\t[-81.362156, 37.337687]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51191\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"191\",\n\t\t\t\t\"NAME\": \"Washington\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 560.975000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.332089, 36.709355],\n\t\t\t\t\t\t[-82.107614, 36.796385],\n\t\t\t\t\t\t[-82.077936, 36.855005],\n\t\t\t\t\t\t[-81.949151, 36.864409],\n\t\t\t\t\t\t[-81.836842, 36.929013],\n\t\t\t\t\t\t[-81.699441, 36.789614],\n\t\t\t\t\t\t[-81.605835, 36.638717],\n\t\t\t\t\t\t[-81.610663, 36.616913],\n\t\t\t\t\t\t[-81.646900, 36.611918],\n\t\t\t\t\t\t[-81.826742, 36.614215],\n\t\t\t\t\t\t[-81.922644, 36.616213],\n\t\t\t\t\t\t[-81.934144, 36.594213],\n\t\t\t\t\t\t[-82.146070, 36.594712],\n\t\t\t\t\t\t[-82.114497, 36.638542],\n\t\t\t\t\t\t[-82.243274, 36.595699],\n\t\t\t\t\t\t[-82.293814, 36.595565],\n\t\t\t\t\t\t[-82.308000, 36.619525],\n\t\t\t\t\t\t[-82.332089, 36.709355]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51195\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"195\",\n\t\t\t\t\"NAME\": \"Wise\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 403.189000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.406633, 36.876356],\n\t\t\t\t\t\t[-82.634608, 36.878484],\n\t\t\t\t\t\t[-82.771308, 36.799880],\n\t\t\t\t\t\t[-82.885618, 36.900415],\n\t\t\t\t\t\t[-82.873777, 36.912299],\n\t\t\t\t\t\t[-82.872136, 36.913456],\n\t\t\t\t\t\t[-82.863468, 36.922308],\n\t\t\t\t\t\t[-82.861943, 36.924236],\n\t\t\t\t\t\t[-82.858461, 36.932717],\n\t\t\t\t\t\t[-82.858784, 36.933065],\n\t\t\t\t\t\t[-82.860537, 36.937439],\n\t\t\t\t\t\t[-82.861684, 36.939316],\n\t\t\t\t\t\t[-82.861282, 36.944848],\n\t\t\t\t\t\t[-82.860633, 36.945840],\n\t\t\t\t\t\t[-82.856099, 36.952471],\n\t\t\t\t\t\t[-82.855705, 36.953808],\n\t\t\t\t\t\t[-82.858443, 36.954036],\n\t\t\t\t\t\t[-82.860534, 36.956015],\n\t\t\t\t\t\t[-82.862866, 36.957765],\n\t\t\t\t\t\t[-82.864211, 36.957983],\n\t\t\t\t\t\t[-82.865404, 36.958084],\n\t\t\t\t\t\t[-82.867358, 36.963182],\n\t\t\t\t\t\t[-82.870230, 36.965498],\n\t\t\t\t\t\t[-82.870274, 36.965993],\n\t\t\t\t\t\t[-82.869183, 36.974182],\n\t\t\t\t\t\t[-82.869183, 36.974183],\n\t\t\t\t\t\t[-82.868455, 36.976481],\n\t\t\t\t\t\t[-82.867535, 36.977518],\n\t\t\t\t\t\t[-82.866689, 36.978052],\n\t\t\t\t\t\t[-82.866019, 36.978272],\n\t\t\t\t\t\t[-82.864909, 36.979010],\n\t\t\t\t\t\t[-82.862926, 36.979975],\n\t\t\t\t\t\t[-82.852614, 36.984963],\n\t\t\t\t\t\t[-82.851397, 36.984497],\n\t\t\t\t\t\t[-82.840051, 36.987113],\n\t\t\t\t\t\t[-82.838549, 36.987027],\n\t\t\t\t\t\t[-82.836008, 36.988837],\n\t\t\t\t\t\t[-82.833843, 36.991973],\n\t\t\t\t\t\t[-82.830802, 36.993445],\n\t\t\t\t\t\t[-82.829125, 36.997541],\n\t\t\t\t\t\t[-82.830588, 37.000945],\n\t\t\t\t\t\t[-82.818006, 37.006161],\n\t\t\t\t\t\t[-82.815748, 37.007196],\n\t\t\t\t\t\t[-82.800531, 37.007944],\n\t\t\t\t\t\t[-82.790890, 37.006760],\n\t\t\t\t\t\t[-82.790462, 37.007263],\n\t\t\t\t\t\t[-82.789092, 37.007995],\n\t\t\t\t\t\t[-82.788897, 37.008160],\n\t\t\t\t\t\t[-82.777368, 37.015279],\n\t\t\t\t\t\t[-82.771795, 37.015716],\n\t\t\t\t\t\t[-82.722472, 37.045101],\n\t\t\t\t\t\t[-82.720597, 37.081833],\n\t\t\t\t\t\t[-82.721941, 37.105689],\n\t\t\t\t\t\t[-82.624878, 37.162932],\n\t\t\t\t\t\t[-82.565375, 37.196092],\n\t\t\t\t\t\t[-82.565329, 37.196118],\n\t\t\t\t\t\t[-82.553549, 37.200867],\n\t\t\t\t\t\t[-82.546220, 37.124982],\n\t\t\t\t\t\t[-82.467419, 37.022144],\n\t\t\t\t\t\t[-82.328009, 36.970905],\n\t\t\t\t\t\t[-82.298594, 36.905419],\n\t\t\t\t\t\t[-82.406633, 36.876356]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.660291, 36.918804],\n\t\t\t\t\t\t[-82.615137, 36.905251],\n\t\t\t\t\t\t[-82.588890, 36.951182],\n\t\t\t\t\t\t[-82.616375, 36.956694],\n\t\t\t\t\t\t[-82.660291, 36.918804]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51520\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"520\",\n\t\t\t\t\"NAME\": \"Bristol\",\n\t\t\t\t\"LSAD\": \"city\",\n\t\t\t\t\"CENSUSAREA\": 13.013000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.243274, 36.595699],\n\t\t\t\t\t\t[-82.114497, 36.638542],\n\t\t\t\t\t\t[-82.146070, 36.594712],\n\t\t\t\t\t\t[-82.148569, 36.594718],\n\t\t\t\t\t\t[-82.150727, 36.594673],\n\t\t\t\t\t\t[-82.173982, 36.594607],\n\t\t\t\t\t\t[-82.177247, 36.594768],\n\t\t\t\t\t\t[-82.180740, 36.594928],\n\t\t\t\t\t\t[-82.188491, 36.595179],\n\t\t\t\t\t\t[-82.210497, 36.595772],\n\t\t\t\t\t\t[-82.211005, 36.595860],\n\t\t\t\t\t\t[-82.221713, 36.595814],\n\t\t\t\t\t\t[-82.223445, 36.595721],\n\t\t\t\t\t\t[-82.225716, 36.595744],\n\t\t\t\t\t\t[-82.226653, 36.595743],\n\t\t\t\t\t\t[-82.243274, 36.595699]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51550\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"550\",\n\t\t\t\t\"NAME\": \"Chesapeake\",\n\t\t\t\t\"LSAD\": \"city\",\n\t\t\t\t\"CENSUSAREA\": 340.800000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.313196, 36.550551],\n\t\t\t\t\t\t[-76.313215, 36.550551],\n\t\t\t\t\t\t[-76.491497, 36.550365],\n\t\t\t\t\t\t[-76.457469, 36.814841],\n\t\t\t\t\t\t[-76.420368, 36.866348],\n\t\t\t\t\t\t[-76.375679, 36.786062],\n\t\t\t\t\t\t[-76.289962, 36.822048],\n\t\t\t\t\t\t[-76.274710, 36.828039],\n\t\t\t\t\t\t[-76.257475, 36.820757],\n\t\t\t\t\t\t[-76.243765, 36.836862],\n\t\t\t\t\t\t[-76.226060, 36.839947],\n\t\t\t\t\t\t[-76.203667, 36.769655],\n\t\t\t\t\t\t[-76.068154, 36.692350],\n\t\t\t\t\t\t[-76.121955, 36.665750],\n\t\t\t\t\t\t[-76.122360, 36.550621],\n\t\t\t\t\t\t[-76.313196, 36.550551]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51580\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"580\",\n\t\t\t\t\"NAME\": \"Covington\",\n\t\t\t\t\"LSAD\": \"city\",\n\t\t\t\t\"CENSUSAREA\": 5.468000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.995941, 37.782229],\n\t\t\t\t\t\t[-80.001360, 37.789826],\n\t\t\t\t\t\t[-79.992955, 37.797063],\n\t\t\t\t\t\t[-79.992055, 37.799810],\n\t\t\t\t\t\t[-79.999078, 37.806240],\n\t\t\t\t\t\t[-79.989210, 37.810961],\n\t\t\t\t\t\t[-79.987402, 37.813585],\n\t\t\t\t\t\t[-79.984451, 37.812016],\n\t\t\t\t\t\t[-79.983631, 37.802278],\n\t\t\t\t\t\t[-79.967071, 37.803405],\n\t\t\t\t\t\t[-79.966452, 37.792484],\n\t\t\t\t\t\t[-79.980001, 37.781063],\n\t\t\t\t\t\t[-79.977265, 37.767344],\n\t\t\t\t\t\t[-79.966509, 37.757109],\n\t\t\t\t\t\t[-79.992566, 37.748244],\n\t\t\t\t\t\t[-80.008893, 37.762983],\n\t\t\t\t\t\t[-80.001196, 37.768848],\n\t\t\t\t\t\t[-79.995941, 37.782229]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51610\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"610\",\n\t\t\t\t\"NAME\": \"Falls Church\",\n\t\t\t\t\"LSAD\": \"city\",\n\t\t\t\t\"CENSUSAREA\": 1.999000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.150287, 38.876192],\n\t\t\t\t\t\t[-77.154974, 38.872213],\n\t\t\t\t\t\t[-77.173243, 38.878604],\n\t\t\t\t\t\t[-77.189766, 38.878117],\n\t\t\t\t\t\t[-77.194340, 38.886065],\n\t\t\t\t\t\t[-77.188854, 38.896272],\n\t\t\t\t\t\t[-77.172169, 38.893329],\n\t\t\t\t\t\t[-77.150287, 38.876192]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51640\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"640\",\n\t\t\t\t\"NAME\": \"Galax\",\n\t\t\t\t\"LSAD\": \"city\",\n\t\t\t\t\"CENSUSAREA\": 8.240000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.932271, 36.671593],\n\t\t\t\t\t\t[-80.920497, 36.678139],\n\t\t\t\t\t\t[-80.917573, 36.694133],\n\t\t\t\t\t\t[-80.877274, 36.692215],\n\t\t\t\t\t\t[-80.914173, 36.650246],\n\t\t\t\t\t\t[-80.916043, 36.629343],\n\t\t\t\t\t\t[-80.931655, 36.628494],\n\t\t\t\t\t\t[-80.921711, 36.643533],\n\t\t\t\t\t\t[-80.947754, 36.648361],\n\t\t\t\t\t\t[-80.944109, 36.676303],\n\t\t\t\t\t\t[-80.932271, 36.671593]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51678\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"678\",\n\t\t\t\t\"NAME\": \"Lexington\",\n\t\t\t\t\"LSAD\": \"city\",\n\t\t\t\t\"CENSUSAREA\": 2.497000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.457611, 37.766222],\n\t\t\t\t\t\t[-79.461917, 37.786160],\n\t\t\t\t\t\t[-79.456515, 37.791261],\n\t\t\t\t\t\t[-79.415304, 37.789111],\n\t\t\t\t\t\t[-79.457611, 37.766222]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51683\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"683\",\n\t\t\t\t\"NAME\": \"Manassas\",\n\t\t\t\t\"LSAD\": \"city\",\n\t\t\t\t\"CENSUSAREA\": 9.881000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.459310, 38.772614],\n\t\t\t\t\t\t[-77.447510, 38.761115],\n\t\t\t\t\t\t[-77.451642, 38.738337],\n\t\t\t\t\t\t[-77.471425, 38.728152],\n\t\t\t\t\t\t[-77.524721, 38.723966],\n\t\t\t\t\t\t[-77.526457, 38.732466],\n\t\t\t\t\t\t[-77.495927, 38.770607],\n\t\t\t\t\t\t[-77.475711, 38.781214],\n\t\t\t\t\t\t[-77.474711, 38.781414],\n\t\t\t\t\t\t[-77.462209, 38.774514],\n\t\t\t\t\t\t[-77.459310, 38.772614]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51685\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"685\",\n\t\t\t\t\"NAME\": \"Manassas Park\",\n\t\t\t\t\"LSAD\": \"city\",\n\t\t\t\t\"CENSUSAREA\": 2.534000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.475711, 38.781214],\n\t\t\t\t\t\t[-77.473195, 38.788248],\n\t\t\t\t\t\t[-77.458507, 38.787394],\n\t\t\t\t\t\t[-77.459499, 38.778395],\n\t\t\t\t\t\t[-77.445282, 38.770722],\n\t\t\t\t\t\t[-77.440610, 38.782615],\n\t\t\t\t\t\t[-77.422236, 38.768917],\n\t\t\t\t\t\t[-77.420682, 38.762242],\n\t\t\t\t\t\t[-77.427503, 38.753400],\n\t\t\t\t\t\t[-77.459310, 38.772614],\n\t\t\t\t\t\t[-77.462209, 38.774514],\n\t\t\t\t\t\t[-77.474711, 38.781414],\n\t\t\t\t\t\t[-77.475711, 38.781214]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51710\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"710\",\n\t\t\t\t\"NAME\": \"Norfolk\",\n\t\t\t\t\"LSAD\": \"city\",\n\t\t\t\t\"CENSUSAREA\": 54.120000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.177019, 36.929290],\n\t\t\t\t\t\t[-76.210412, 36.832907],\n\t\t\t\t\t\t[-76.213959, 36.832347],\n\t\t\t\t\t\t[-76.226060, 36.839947],\n\t\t\t\t\t\t[-76.243765, 36.836862],\n\t\t\t\t\t\t[-76.257475, 36.820757],\n\t\t\t\t\t\t[-76.274710, 36.828039],\n\t\t\t\t\t\t[-76.289962, 36.822048],\n\t\t\t\t\t\t[-76.294262, 36.841647],\n\t\t\t\t\t\t[-76.313533, 36.858533],\n\t\t\t\t\t\t[-76.336784, 36.875027],\n\t\t\t\t\t\t[-76.328480, 36.893219],\n\t\t\t\t\t\t[-76.340769, 36.901603],\n\t\t\t\t\t\t[-76.344663, 36.919313],\n\t\t\t\t\t\t[-76.333158, 36.917293],\n\t\t\t\t\t\t[-76.328864, 36.918447],\n\t\t\t\t\t\t[-76.330765, 36.938647],\n\t\t\t\t\t\t[-76.327365, 36.959447],\n\t\t\t\t\t\t[-76.322764, 36.959147],\n\t\t\t\t\t\t[-76.315867, 36.955351],\n\t\t\t\t\t\t[-76.299364, 36.965547],\n\t\t\t\t\t\t[-76.297663, 36.968147],\n\t\t\t\t\t\t[-76.285063, 36.968747],\n\t\t\t\t\t\t[-76.267962, 36.964547],\n\t\t\t\t\t\t[-76.234961, 36.945147],\n\t\t\t\t\t\t[-76.221660, 36.939547],\n\t\t\t\t\t\t[-76.189959, 36.931447],\n\t\t\t\t\t\t[-76.177019, 36.929290]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51730\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"730\",\n\t\t\t\t\"NAME\": \"Petersburg\",\n\t\t\t\t\"LSAD\": \"city\",\n\t\t\t\t\"CENSUSAREA\": 22.932000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.399203, 37.170850],\n\t\t\t\t\t\t[-77.447521, 37.222710],\n\t\t\t\t\t\t[-77.433900, 37.224648],\n\t\t\t\t\t\t[-77.428890, 37.229678],\n\t\t\t\t\t\t[-77.416510, 37.233157],\n\t\t\t\t\t\t[-77.415420, 37.233796],\n\t\t\t\t\t\t[-77.413119, 37.234257],\n\t\t\t\t\t\t[-77.409877, 37.233723],\n\t\t\t\t\t\t[-77.406415, 37.235645],\n\t\t\t\t\t\t[-77.405034, 37.236100],\n\t\t\t\t\t\t[-77.403671, 37.237346],\n\t\t\t\t\t\t[-77.390393, 37.239980],\n\t\t\t\t\t\t[-77.383856, 37.238906],\n\t\t\t\t\t\t[-77.376728, 37.244993],\n\t\t\t\t\t\t[-77.399203, 37.170850]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51750\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"750\",\n\t\t\t\t\"NAME\": \"Radford\",\n\t\t\t\t\"LSAD\": \"city\",\n\t\t\t\t\"CENSUSAREA\": 9.872000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.580067, 37.089603],\n\t\t\t\t\t\t[-80.590406, 37.102000],\n\t\t\t\t\t\t[-80.596389, 37.118897],\n\t\t\t\t\t\t[-80.592875, 37.127866],\n\t\t\t\t\t\t[-80.573087, 37.139876],\n\t\t\t\t\t\t[-80.548837, 37.146557],\n\t\t\t\t\t\t[-80.529678, 37.134066],\n\t\t\t\t\t\t[-80.527625, 37.134427],\n\t\t\t\t\t\t[-80.524885, 37.148360],\n\t\t\t\t\t\t[-80.507317, 37.135752],\n\t\t\t\t\t\t[-80.532631, 37.118064],\n\t\t\t\t\t\t[-80.555171, 37.117420],\n\t\t\t\t\t\t[-80.556260, 37.099551],\n\t\t\t\t\t\t[-80.580067, 37.089603]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51790\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"790\",\n\t\t\t\t\"NAME\": \"Staunton\",\n\t\t\t\t\"LSAD\": \"city\",\n\t\t\t\t\"CENSUSAREA\": 19.975000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.091666, 38.132142],\n\t\t\t\t\t\t[-79.097110, 38.184771],\n\t\t\t\t\t\t[-79.023010, 38.195777],\n\t\t\t\t\t\t[-79.049779, 38.121112],\n\t\t\t\t\t\t[-79.091666, 38.132142]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55065\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"065\",\n\t\t\t\t\"NAME\": \"Lafayette\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 633.588000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.426902, 42.812862],\n\t\t\t\t\t\t[-89.838410, 42.813799],\n\t\t\t\t\t\t[-89.837587, 42.505543],\n\t\t\t\t\t\t[-89.926224, 42.505788],\n\t\t\t\t\t\t[-89.926374, 42.505788],\n\t\t\t\t\t\t[-89.926484, 42.505787],\n\t\t\t\t\t\t[-89.985072, 42.506464],\n\t\t\t\t\t\t[-89.985645, 42.506431],\n\t\t\t\t\t\t[-89.997213, 42.506755],\n\t\t\t\t\t\t[-89.999314, 42.506914],\n\t\t\t\t\t\t[-90.017028, 42.507127],\n\t\t\t\t\t\t[-90.018665, 42.507288],\n\t\t\t\t\t\t[-90.093026, 42.508160],\n\t\t\t\t\t\t[-90.095004, 42.507885],\n\t\t\t\t\t\t[-90.142922, 42.508151],\n\t\t\t\t\t\t[-90.164363, 42.508272],\n\t\t\t\t\t\t[-90.181572, 42.508068],\n\t\t\t\t\t\t[-90.206073, 42.507747],\n\t\t\t\t\t\t[-90.223190, 42.507765],\n\t\t\t\t\t\t[-90.250622, 42.507521],\n\t\t\t\t\t\t[-90.253121, 42.507340],\n\t\t\t\t\t\t[-90.267143, 42.507642],\n\t\t\t\t\t\t[-90.269335, 42.507726],\n\t\t\t\t\t\t[-90.272864, 42.507531],\n\t\t\t\t\t\t[-90.303823, 42.507469],\n\t\t\t\t\t\t[-90.362652, 42.507048],\n\t\t\t\t\t\t[-90.367874, 42.507114],\n\t\t\t\t\t\t[-90.370673, 42.507111],\n\t\t\t\t\t\t[-90.405927, 42.506891],\n\t\t\t\t\t\t[-90.426378, 42.507059],\n\t\t\t\t\t\t[-90.426902, 42.812862]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55075\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"075\",\n\t\t\t\t\"NAME\": \"Marinette\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1399.347000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-87.500105, 45.061117],\n\t\t\t\t\t\t\t[-87.498964, 45.061231],\n\t\t\t\t\t\t\t[-87.497254, 45.061278],\n\t\t\t\t\t\t\t[-87.496415, 45.061072],\n\t\t\t\t\t\t\t[-87.495479, 45.060661],\n\t\t\t\t\t\t\t[-87.494543, 45.060044],\n\t\t\t\t\t\t\t[-87.493381, 45.059107],\n\t\t\t\t\t\t\t[-87.492864, 45.058376],\n\t\t\t\t\t\t\t[-87.492850, 45.058325],\n\t\t\t\t\t\t\t[-87.492702, 45.057805],\n\t\t\t\t\t\t\t[-87.492691, 45.057799],\n\t\t\t\t\t\t\t[-87.492573, 45.057736],\n\t\t\t\t\t\t\t[-87.492563, 45.057653],\n\t\t\t\t\t\t\t[-87.492540, 45.057462],\n\t\t\t\t\t\t\t[-87.492516, 45.057419],\n\t\t\t\t\t\t\t[-87.492411, 45.057233],\n\t\t\t\t\t\t\t[-87.492314, 45.056936],\n\t\t\t\t\t\t\t[-87.492023, 45.056502],\n\t\t\t\t\t\t\t[-87.491765, 45.056273],\n\t\t\t\t\t\t\t[-87.491636, 45.056227],\n\t\t\t\t\t\t\t[-87.491507, 45.056090],\n\t\t\t\t\t\t\t[-87.491345, 45.056022],\n\t\t\t\t\t\t\t[-87.490216, 45.055222],\n\t\t\t\t\t\t\t[-87.490151, 45.055039],\n\t\t\t\t\t\t\t[-87.490189, 45.055017],\n\t\t\t\t\t\t\t[-87.490312, 45.054948],\n\t\t\t\t\t\t\t[-87.490925, 45.055039],\n\t\t\t\t\t\t\t[-87.492668, 45.055792],\n\t\t\t\t\t\t\t[-87.494475, 45.056523],\n\t\t\t\t\t\t\t[-87.498379, 45.057733],\n\t\t\t\t\t\t\t[-87.498670, 45.057779],\n\t\t\t\t\t\t\t[-87.498863, 45.057847],\n\t\t\t\t\t\t\t[-87.500105, 45.058167],\n\t\t\t\t\t\t\t[-87.501572, 45.058602],\n\t\t\t\t\t\t\t[-87.504281, 45.059198],\n\t\t\t\t\t\t\t[-87.504967, 45.059287],\n\t\t\t\t\t\t\t[-87.506055, 45.059428],\n\t\t\t\t\t\t\t[-87.506086, 45.059461],\n\t\t\t\t\t\t\t[-87.506184, 45.059565],\n\t\t\t\t\t\t\t[-87.506109, 45.059644],\n\t\t\t\t\t\t\t[-87.506054, 45.059702],\n\t\t\t\t\t\t\t[-87.504488, 45.060024],\n\t\t\t\t\t\t\t[-87.504280, 45.060067],\n\t\t\t\t\t\t\t[-87.503602, 45.060272],\n\t\t\t\t\t\t\t[-87.502440, 45.060706],\n\t\t\t\t\t\t\t[-87.501802, 45.060841],\n\t\t\t\t\t\t\t[-87.500603, 45.061094],\n\t\t\t\t\t\t\t[-87.500105, 45.061117]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-87.590208, 45.095264],\n\t\t\t\t\t\t\t[-87.587147, 45.089495],\n\t\t\t\t\t\t\t[-87.587992, 45.085271],\n\t\t\t\t\t\t\t[-87.591583, 45.083792],\n\t\t\t\t\t\t\t[-87.594718, 45.085134],\n\t\t\t\t\t\t\t[-87.601849, 45.082297],\n\t\t\t\t\t\t\t[-87.610395, 45.075617],\n\t\t\t\t\t\t\t[-87.625748, 45.045157],\n\t\t\t\t\t\t\t[-87.624693, 45.014176],\n\t\t\t\t\t\t\t[-87.630298, 44.976865],\n\t\t\t\t\t\t\t[-87.661964, 44.973035],\n\t\t\t\t\t\t\t[-87.696492, 44.974233],\n\t\t\t\t\t\t\t[-87.762620, 44.965796],\n\t\t\t\t\t\t\t[-87.944436, 44.993057],\n\t\t\t\t\t\t\t[-87.942995, 45.020418],\n\t\t\t\t\t\t\t[-88.121152, 45.023581],\n\t\t\t\t\t\t\t[-88.118879, 45.110197],\n\t\t\t\t\t\t\t[-88.189247, 45.111844],\n\t\t\t\t\t\t\t[-88.186356, 45.197897],\n\t\t\t\t\t\t\t[-88.309063, 45.201580],\n\t\t\t\t\t\t\t[-88.305811, 45.374610],\n\t\t\t\t\t\t\t[-88.428102, 45.377010],\n\t\t\t\t\t\t\t[-88.425302, 45.722426],\n\t\t\t\t\t\t\t[-88.059246, 45.713063],\n\t\t\t\t\t\t\t[-88.058256, 45.780719],\n\t\t\t\t\t\t\t[-88.050634, 45.780972],\n\t\t\t\t\t\t\t[-88.039729, 45.789626],\n\t\t\t\t\t\t\t[-87.991447, 45.795393],\n\t\t\t\t\t\t\t[-87.868111, 45.749477],\n\t\t\t\t\t\t\t[-87.828827, 45.722760],\n\t\t\t\t\t\t\t[-87.807144, 45.708014],\n\t\t\t\t\t\t\t[-87.780808, 45.680349],\n\t\t\t\t\t\t\t[-87.781623, 45.673280],\n\t\t\t\t\t\t\t[-87.823672, 45.659817],\n\t\t\t\t\t\t\t[-87.824102, 45.647138],\n\t\t\t\t\t\t\t[-87.795880, 45.618846],\n\t\t\t\t\t\t\t[-87.792016, 45.616756],\n\t\t\t\t\t\t\t[-87.788798, 45.565947],\n\t\t\t\t\t\t\t[-87.792769, 45.499967],\n\t\t\t\t\t\t\t[-87.798960, 45.485147],\n\t\t\t\t\t\t\t[-87.806347, 45.472262],\n\t\t\t\t\t\t\t[-87.812976, 45.464159],\n\t\t\t\t\t\t\t[-87.820348, 45.460284],\n\t\t\t\t\t\t\t[-87.860432, 45.423504],\n\t\t\t\t\t\t\t[-87.888052, 45.354697],\n\t\t\t\t\t\t\t[-87.885170, 45.351736],\n\t\t\t\t\t\t\t[-87.850133, 45.340435],\n\t\t\t\t\t\t\t[-87.838141, 45.345101],\n\t\t\t\t\t\t\t[-87.835303, 45.350980],\n\t\t\t\t\t\t\t[-87.832612, 45.352249],\n\t\t\t\t\t\t\t[-87.790324, 45.353444],\n\t\t\t\t\t\t\t[-87.771384, 45.351210],\n\t\t\t\t\t\t\t[-87.751452, 45.351755],\n\t\t\t\t\t\t\t[-87.718891, 45.377462],\n\t\t\t\t\t\t\t[-87.693956, 45.389893],\n\t\t\t\t\t\t\t[-87.685934, 45.388711],\n\t\t\t\t\t\t\t[-87.675017, 45.382454],\n\t\t\t\t\t\t\t[-87.657349, 45.368752],\n\t\t\t\t\t\t\t[-87.647729, 45.350721],\n\t\t\t\t\t\t\t[-87.648126, 45.339396],\n\t\t\t\t\t\t\t[-87.709137, 45.260341],\n\t\t\t\t\t\t\t[-87.707779, 45.258343],\n\t\t\t\t\t\t\t[-87.711722, 45.243481],\n\t\t\t\t\t\t\t[-87.731710, 45.206792],\n\t\t\t\t\t\t\t[-87.739492, 45.202126],\n\t\t\t\t\t\t\t[-87.741732, 45.198201],\n\t\t\t\t\t\t\t[-87.735282, 45.176565],\n\t\t\t\t\t\t\t[-87.731389, 45.170989],\n\t\t\t\t\t\t\t[-87.659952, 45.107512],\n\t\t\t\t\t\t\t[-87.590208, 45.095264]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55077\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"077\",\n\t\t\t\t\"NAME\": \"Marquette\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 455.602000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.599985, 43.642596],\n\t\t\t\t\t\t[-89.599545, 43.644514],\n\t\t\t\t\t\t[-89.597950, 43.982100],\n\t\t\t\t\t\t[-89.168612, 43.982834],\n\t\t\t\t\t\t[-89.198299, 43.812677],\n\t\t\t\t\t\t[-89.245471, 43.766416],\n\t\t\t\t\t\t[-89.245437, 43.643083],\n\t\t\t\t\t\t[-89.599985, 43.642596]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55083\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"083\",\n\t\t\t\t\"NAME\": \"Oconto\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 997.988000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.762620, 44.965796],\n\t\t\t\t\t\t[-87.762700, 44.965786],\n\t\t\t\t\t\t[-87.762846, 44.965768],\n\t\t\t\t\t\t[-87.766115, 44.965351],\n\t\t\t\t\t\t[-87.766872, 44.965254],\n\t\t\t\t\t\t[-87.781298, 44.961738],\n\t\t\t\t\t\t[-87.781464, 44.961697],\n\t\t\t\t\t\t[-87.788987, 44.959863],\n\t\t\t\t\t\t[-87.789934, 44.959633],\n\t\t\t\t\t\t[-87.791372, 44.959282],\n\t\t\t\t\t\t[-87.791987, 44.959132],\n\t\t\t\t\t\t[-87.792325, 44.959050],\n\t\t\t\t\t\t[-87.812594, 44.954109],\n\t\t\t\t\t\t[-87.812989, 44.954013],\n\t\t\t\t\t\t[-87.813276, 44.953885],\n\t\t\t\t\t\t[-87.813866, 44.953623],\n\t\t\t\t\t\t[-87.815134, 44.953060],\n\t\t\t\t\t\t[-87.816151, 44.952608],\n\t\t\t\t\t\t[-87.817285, 44.952104],\n\t\t\t\t\t\t[-87.817551, 44.951986],\n\t\t\t\t\t\t[-87.817713, 44.951914],\n\t\t\t\t\t\t[-87.817912, 44.951826],\n\t\t\t\t\t\t[-87.818113, 44.951736],\n\t\t\t\t\t\t[-87.819313, 44.951203],\n\t\t\t\t\t\t[-87.819369, 44.951178],\n\t\t\t\t\t\t[-87.819525, 44.951109],\n\t\t\t\t\t\t[-87.820281, 44.950358],\n\t\t\t\t\t\t[-87.820848, 44.949793],\n\t\t\t\t\t\t[-87.821050, 44.949593],\n\t\t\t\t\t\t[-87.821485, 44.949161],\n\t\t\t\t\t\t[-87.821983, 44.948665],\n\t\t\t\t\t\t[-87.822192, 44.948457],\n\t\t\t\t\t\t[-87.837647, 44.933091],\n\t\t\t\t\t\t[-87.839028, 44.931718],\n\t\t\t\t\t\t[-87.843433, 44.924355],\n\t\t\t\t\t\t[-87.844299, 44.918524],\n\t\t\t\t\t\t[-87.842844, 44.912586],\n\t\t\t\t\t\t[-87.842719, 44.912077],\n\t\t\t\t\t\t[-87.842640, 44.911916],\n\t\t\t\t\t\t[-87.842375, 44.911371],\n\t\t\t\t\t\t[-87.840382, 44.907289],\n\t\t\t\t\t\t[-87.839561, 44.905607],\n\t\t\t\t\t\t[-87.837017, 44.902509],\n\t\t\t\t\t\t[-87.836743, 44.902177],\n\t\t\t\t\t\t[-87.836082, 44.901371],\n\t\t\t\t\t\t[-87.834275, 44.899172],\n\t\t\t\t\t\t[-87.833731, 44.898510],\n\t\t\t\t\t\t[-87.833521, 44.898254],\n\t\t\t\t\t\t[-87.832137, 44.896569],\n\t\t\t\t\t\t[-87.827751, 44.891229],\n\t\t\t\t\t\t[-87.832764, 44.880939],\n\t\t\t\t\t\t[-87.835497, 44.877544],\n\t\t\t\t\t\t[-87.836916, 44.875780],\n\t\t\t\t\t\t[-87.838359, 44.873987],\n\t\t\t\t\t\t[-87.847616, 44.870692],\n\t\t\t\t\t\t[-87.848324, 44.870440],\n\t\t\t\t\t\t[-87.849140, 44.869420],\n\t\t\t\t\t\t[-87.852789, 44.864860],\n\t\t\t\t\t\t[-87.854184, 44.859633],\n\t\t\t\t\t\t[-87.854681, 44.857771],\n\t\t\t\t\t\t[-87.854938, 44.857386],\n\t\t\t\t\t\t[-87.855962, 44.855854],\n\t\t\t\t\t\t[-87.857121, 44.854120],\n\t\t\t\t\t\t[-87.857469, 44.853599],\n\t\t\t\t\t\t[-87.865898, 44.840988],\n\t\t\t\t\t\t[-87.866237, 44.840481],\n\t\t\t\t\t\t[-87.871679, 44.839816],\n\t\t\t\t\t\t[-87.878218, 44.839016],\n\t\t\t\t\t\t[-87.885709, 44.835208],\n\t\t\t\t\t\t[-87.892570, 44.831720],\n\t\t\t\t\t\t[-87.895812, 44.830072],\n\t\t\t\t\t\t[-87.897931, 44.828995],\n\t\t\t\t\t\t[-87.899787, 44.828051],\n\t\t\t\t\t\t[-87.901137, 44.827365],\n\t\t\t\t\t\t[-87.901814, 44.825616],\n\t\t\t\t\t\t[-87.902166, 44.824708],\n\t\t\t\t\t\t[-87.903395, 44.821534],\n\t\t\t\t\t\t[-87.903844, 44.820376],\n\t\t\t\t\t\t[-87.904281, 44.819246],\n\t\t\t\t\t\t[-87.904484, 44.818723],\n\t\t\t\t\t\t[-87.905444, 44.816997],\n\t\t\t\t\t\t[-87.906582, 44.814949],\n\t\t\t\t\t\t[-87.911366, 44.806345],\n\t\t\t\t\t\t[-87.918874, 44.792840],\n\t\t\t\t\t\t[-87.923588, 44.784361],\n\t\t\t\t\t\t[-87.925845, 44.780301],\n\t\t\t\t\t\t[-87.926816, 44.778555],\n\t\t\t\t\t\t[-87.941453, 44.756080],\n\t\t\t\t\t\t[-87.951560, 44.753107],\n\t\t\t\t\t\t[-87.956849, 44.749272],\n\t\t\t\t\t\t[-87.964714, 44.743570],\n\t\t\t\t\t\t[-87.972654, 44.733687],\n\t\t\t\t\t\t[-87.983065, 44.720730],\n\t\t\t\t\t\t[-87.983494, 44.720196],\n\t\t\t\t\t\t[-87.983941, 44.717781],\n\t\t\t\t\t\t[-87.983950, 44.717735],\n\t\t\t\t\t\t[-87.984094, 44.716955],\n\t\t\t\t\t\t[-87.984247, 44.716129],\n\t\t\t\t\t\t[-87.984401, 44.715298],\n\t\t\t\t\t\t[-87.986055, 44.706360],\n\t\t\t\t\t\t[-87.986134, 44.705936],\n\t\t\t\t\t\t[-87.987296, 44.699657],\n\t\t\t\t\t\t[-87.987417, 44.699005],\n\t\t\t\t\t\t[-87.988667, 44.692255],\n\t\t\t\t\t\t[-87.989250, 44.689107],\n\t\t\t\t\t\t[-87.989344, 44.688598],\n\t\t\t\t\t\t[-87.989376, 44.688424],\n\t\t\t\t\t\t[-87.989470, 44.687918],\n\t\t\t\t\t\t[-87.989717, 44.686582],\n\t\t\t\t\t\t[-87.989912, 44.677587],\n\t\t\t\t\t\t[-88.242687, 44.679631],\n\t\t\t\t\t\t[-88.248213, 44.852739],\n\t\t\t\t\t\t[-88.489149, 44.855445],\n\t\t\t\t\t\t[-88.483732, 45.116887],\n\t\t\t\t\t\t[-88.641159, 45.117346],\n\t\t\t\t\t\t[-88.680066, 45.204994],\n\t\t\t\t\t\t[-88.677826, 45.378682],\n\t\t\t\t\t\t[-88.428102, 45.377010],\n\t\t\t\t\t\t[-88.305811, 45.374610],\n\t\t\t\t\t\t[-88.309063, 45.201580],\n\t\t\t\t\t\t[-88.186356, 45.197897],\n\t\t\t\t\t\t[-88.189247, 45.111844],\n\t\t\t\t\t\t[-88.118879, 45.110197],\n\t\t\t\t\t\t[-88.121152, 45.023581],\n\t\t\t\t\t\t[-87.942995, 45.020418],\n\t\t\t\t\t\t[-87.944436, 44.993057],\n\t\t\t\t\t\t[-87.762620, 44.965796]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55085\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"085\",\n\t\t\t\t\"NAME\": \"Oneida\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1112.970000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.043414, 45.555082],\n\t\t\t\t\t\t[-90.043309, 45.730053],\n\t\t\t\t\t\t[-90.044358, 45.749992],\n\t\t\t\t\t\t[-90.042854, 45.897151],\n\t\t\t\t\t\t[-89.300631, 45.901464],\n\t\t\t\t\t\t[-89.300849, 45.860903],\n\t\t\t\t\t\t[-89.175245, 45.856579],\n\t\t\t\t\t\t[-89.178269, 45.899395],\n\t\t\t\t\t\t[-89.047481, 45.895359],\n\t\t\t\t\t\t[-89.047159, 45.640801],\n\t\t\t\t\t\t[-89.046781, 45.637517],\n\t\t\t\t\t\t[-89.046315, 45.464762],\n\t\t\t\t\t\t[-89.364049, 45.469886],\n\t\t\t\t\t\t[-89.424824, 45.467257],\n\t\t\t\t\t\t[-89.428258, 45.555353],\n\t\t\t\t\t\t[-90.043414, 45.555082]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55091\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"091\",\n\t\t\t\t\"NAME\": \"Pepin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 231.983000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.650361, 44.683633],\n\t\t\t\t\t\t[-91.650474, 44.624963],\n\t\t\t\t\t\t[-91.650324, 44.623005],\n\t\t\t\t\t\t[-91.650248, 44.596649],\n\t\t\t\t\t\t[-92.029180, 44.586292],\n\t\t\t\t\t\t[-92.083925, 44.406211],\n\t\t\t\t\t\t[-92.115296, 44.416056],\n\t\t\t\t\t\t[-92.221083, 44.440386],\n\t\t\t\t\t\t[-92.233897, 44.446334],\n\t\t\t\t\t\t[-92.242010, 44.454254],\n\t\t\t\t\t\t[-92.276784, 44.473649],\n\t\t\t\t\t\t[-92.291005, 44.485464],\n\t\t\t\t\t\t[-92.302215, 44.500298],\n\t\t\t\t\t\t[-92.303046, 44.518646],\n\t\t\t\t\t\t[-92.314071, 44.538014],\n\t\t\t\t\t\t[-92.316425, 44.540792],\n\t\t\t\t\t\t[-92.135300, 44.539580],\n\t\t\t\t\t\t[-92.135202, 44.684363],\n\t\t\t\t\t\t[-91.650361, 44.683633]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55093\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"093\",\n\t\t\t\t\"NAME\": \"Pierce\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 573.748000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.765461, 44.836202],\n\t\t\t\t\t\t[-92.761845, 44.860879],\n\t\t\t\t\t\t[-92.761677, 44.862022],\n\t\t\t\t\t\t[-92.136348, 44.857848],\n\t\t\t\t\t\t[-92.135202, 44.684363],\n\t\t\t\t\t\t[-92.135300, 44.539580],\n\t\t\t\t\t\t[-92.316425, 44.540792],\n\t\t\t\t\t\t[-92.319938, 44.544940],\n\t\t\t\t\t\t[-92.329013, 44.550895],\n\t\t\t\t\t\t[-92.340058, 44.555273],\n\t\t\t\t\t\t[-92.357313, 44.558480],\n\t\t\t\t\t\t[-92.491773, 44.566003],\n\t\t\t\t\t\t[-92.534186, 44.570375],\n\t\t\t\t\t\t[-92.549685, 44.576000],\n\t\t\t\t\t\t[-92.619774, 44.629214],\n\t\t\t\t\t\t[-92.621733, 44.638983],\n\t\t\t\t\t\t[-92.632105, 44.649027],\n\t\t\t\t\t\t[-92.732042, 44.713775],\n\t\t\t\t\t\t[-92.737259, 44.717155],\n\t\t\t\t\t\t[-92.802402, 44.745167],\n\t\t\t\t\t\t[-92.802201, 44.745714],\n\t\t\t\t\t\t[-92.784443, 44.793958],\n\t\t\t\t\t\t[-92.765461, 44.836202]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55097\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"097\",\n\t\t\t\t\"NAME\": \"Portage\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 800.679000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.597980, 44.245725],\n\t\t\t\t\t\t[-89.724746, 44.247678],\n\t\t\t\t\t\t[-89.726622, 44.511191],\n\t\t\t\t\t\t[-89.844410, 44.511542],\n\t\t\t\t\t\t[-89.844931, 44.684945],\n\t\t\t\t\t\t[-89.223745, 44.681365],\n\t\t\t\t\t\t[-89.224892, 44.243546],\n\t\t\t\t\t\t[-89.597980, 44.245725]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US53063\",\n\t\t\t\t\"STATE\": \"53\",\n\t\t\t\t\"COUNTY\": \"063\",\n\t\t\t\t\"NAME\": \"Spokane\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1763.791000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-117.042485, 47.766525],\n\t\t\t\t\t\t[-117.042521, 47.764896],\n\t\t\t\t\t\t[-117.042623, 47.761223],\n\t\t\t\t\t\t[-117.042657, 47.760857],\n\t\t\t\t\t\t[-117.042059, 47.745100],\n\t\t\t\t\t\t[-117.042135, 47.744100],\n\t\t\t\t\t\t[-117.041678, 47.722710],\n\t\t\t\t\t\t[-117.041633, 47.706400],\n\t\t\t\t\t\t[-117.041532, 47.683194],\n\t\t\t\t\t\t[-117.041431, 47.680000],\n\t\t\t\t\t\t[-117.041431, 47.678185],\n\t\t\t\t\t\t[-117.041431, 47.678140],\n\t\t\t\t\t\t[-117.041174, 47.558530],\n\t\t\t\t\t\t[-117.041276, 47.558210],\n\t\t\t\t\t\t[-117.040745, 47.532909],\n\t\t\t\t\t\t[-117.040545, 47.527562],\n\t\t\t\t\t\t[-117.040514, 47.522351],\n\t\t\t\t\t\t[-117.039945, 47.477823],\n\t\t\t\t\t\t[-117.039971, 47.463309],\n\t\t\t\t\t\t[-117.039948, 47.434885],\n\t\t\t\t\t\t[-117.039950, 47.412412],\n\t\t\t\t\t\t[-117.039882, 47.399085],\n\t\t\t\t\t\t[-117.039857, 47.366093],\n\t\t\t\t\t\t[-117.039843, 47.347201],\n\t\t\t\t\t\t[-117.040019, 47.259272],\n\t\t\t\t\t\t[-117.823695, 47.260378],\n\t\t\t\t\t\t[-117.820784, 47.825188],\n\t\t\t\t\t\t[-117.699097, 47.856089],\n\t\t\t\t\t\t[-117.535661, 47.795111],\n\t\t\t\t\t\t[-117.535039, 48.047865],\n\t\t\t\t\t\t[-117.436903, 48.047206],\n\t\t\t\t\t\t[-117.041676, 48.045560],\n\t\t\t\t\t\t[-117.041874, 47.977387],\n\t\t\t\t\t\t[-117.042485, 47.766525]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US53067\",\n\t\t\t\t\"STATE\": \"53\",\n\t\t\t\t\"COUNTY\": \"067\",\n\t\t\t\t\"NAME\": \"Thurston\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 721.961000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-122.821426, 47.194211],\n\t\t\t\t\t\t[-122.792371, 47.174169],\n\t\t\t\t\t\t[-122.775997, 47.155187],\n\t\t\t\t\t\t[-122.759500, 47.141216],\n\t\t\t\t\t\t[-122.637396, 46.977097],\n\t\t\t\t\t\t[-122.491497, 46.867863],\n\t\t\t\t\t\t[-122.372977, 46.845038],\n\t\t\t\t\t\t[-122.202721, 46.762628],\n\t\t\t\t\t\t[-123.160909, 46.764330],\n\t\t\t\t\t\t[-123.160588, 46.793383],\n\t\t\t\t\t\t[-123.158439, 46.996237],\n\t\t\t\t\t\t[-123.202066, 47.084895],\n\t\t\t\t\t\t[-123.075101, 47.084503],\n\t\t\t\t\t\t[-122.936716, 47.190246],\n\t\t\t\t\t\t[-122.905659, 47.155614],\n\t\t\t\t\t\t[-122.881717, 47.156285],\n\t\t\t\t\t\t[-122.821426, 47.194211]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US53069\",\n\t\t\t\t\"STATE\": \"53\",\n\t\t\t\t\"COUNTY\": \"069\",\n\t\t\t\t\"NAME\": \"Wahkiakum\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 263.375000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-123.363638, 46.146241],\n\t\t\t\t\t\t[-123.371433, 46.146372],\n\t\t\t\t\t\t[-123.430847, 46.181827],\n\t\t\t\t\t\t[-123.427629, 46.229348],\n\t\t\t\t\t\t[-123.447592, 46.249832],\n\t\t\t\t\t\t[-123.468743, 46.264531],\n\t\t\t\t\t\t[-123.474844, 46.267831],\n\t\t\t\t\t\t[-123.484244, 46.269531],\n\t\t\t\t\t\t[-123.547659, 46.259109],\n\t\t\t\t\t\t[-123.547636, 46.265595],\n\t\t\t\t\t\t[-123.559923, 46.265098],\n\t\t\t\t\t\t[-123.564405, 46.262172],\n\t\t\t\t\t\t[-123.581642, 46.260502],\n\t\t\t\t\t\t[-123.613544, 46.259988],\n\t\t\t\t\t\t[-123.669501, 46.266832],\n\t\t\t\t\t\t[-123.679125, 46.272502],\n\t\t\t\t\t\t[-123.680080, 46.277943],\n\t\t\t\t\t\t[-123.678069, 46.286469],\n\t\t\t\t\t\t[-123.678760, 46.290721],\n\t\t\t\t\t\t[-123.680574, 46.296025],\n\t\t\t\t\t\t[-123.687763, 46.299235],\n\t\t\t\t\t\t[-123.700764, 46.305278],\n\t\t\t\t\t\t[-123.724273, 46.301161],\n\t\t\t\t\t\t[-123.724038, 46.295058],\n\t\t\t\t\t\t[-123.727913, 46.289661],\n\t\t\t\t\t\t[-123.726060, 46.385626],\n\t\t\t\t\t\t[-123.358247, 46.384227],\n\t\t\t\t\t\t[-123.217841, 46.385128],\n\t\t\t\t\t\t[-123.213054, 46.172541],\n\t\t\t\t\t\t[-123.280166, 46.144843],\n\t\t\t\t\t\t[-123.363638, 46.146241]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US53077\",\n\t\t\t\t\"STATE\": \"53\",\n\t\t\t\t\"COUNTY\": \"077\",\n\t\t\t\t\"NAME\": \"Yakima\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 4295.396000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-121.523938, 46.044048],\n\t\t\t\t\t\t[-121.523556, 46.388221],\n\t\t\t\t\t\t[-121.386557, 46.410601],\n\t\t\t\t\t\t[-121.451194, 46.533537],\n\t\t\t\t\t\t[-121.352320, 46.712366],\n\t\t\t\t\t\t[-121.456356, 46.783744],\n\t\t\t\t\t\t[-121.523270, 46.873280],\n\t\t\t\t\t\t[-121.456500, 46.922733],\n\t\t\t\t\t\t[-121.379671, 47.086765],\n\t\t\t\t\t\t[-121.282039, 47.088954],\n\t\t\t\t\t\t[-121.089794, 46.991039],\n\t\t\t\t\t\t[-121.026490, 46.911341],\n\t\t\t\t\t\t[-120.634883, 46.911995],\n\t\t\t\t\t\t[-120.634431, 46.825831],\n\t\t\t\t\t\t[-120.509227, 46.824534],\n\t\t\t\t\t\t[-120.509618, 46.738114],\n\t\t\t\t\t\t[-119.973017, 46.737171],\n\t\t\t\t\t\t[-119.874057, 46.628585],\n\t\t\t\t\t\t[-119.866265, 46.040662],\n\t\t\t\t\t\t[-121.070459, 46.042575],\n\t\t\t\t\t\t[-121.523938, 46.044048]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54003\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"003\",\n\t\t\t\t\"NAME\": \"Berkeley\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 321.142000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.228766, 39.391233],\n\t\t\t\t\t\t[-78.138937, 39.593796],\n\t\t\t\t\t\t[-78.023427, 39.619860],\n\t\t\t\t\t\t[-78.009985, 39.602893],\n\t\t\t\t\t\t[-77.946442, 39.584910],\n\t\t\t\t\t\t[-77.902649, 39.587796],\n\t\t\t\t\t\t[-77.884536, 39.568174],\n\t\t\t\t\t\t[-77.886135, 39.560432],\n\t\t\t\t\t\t[-77.888945, 39.555950],\n\t\t\t\t\t\t[-77.865423, 39.516472],\n\t\t\t\t\t\t[-77.845105, 39.498285],\n\t\t\t\t\t\t[-77.825411, 39.494036],\n\t\t\t\t\t\t[-77.966953, 39.367164],\n\t\t\t\t\t\t[-78.033185, 39.264626],\n\t\t\t\t\t\t[-78.228766, 39.391233]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54005\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"005\",\n\t\t\t\t\"NAME\": \"Boone\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 501.543000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.456632, 37.987307],\n\t\t\t\t\t\t[-81.571334, 37.928107],\n\t\t\t\t\t\t[-81.514228, 37.791211],\n\t\t\t\t\t\t[-81.607532, 37.788709],\n\t\t\t\t\t\t[-81.722136, 37.809507],\n\t\t\t\t\t\t[-81.785641, 37.936404],\n\t\t\t\t\t\t[-81.979706, 37.991360],\n\t\t\t\t\t\t[-81.932507, 38.025356],\n\t\t\t\t\t\t[-81.927565, 38.152492],\n\t\t\t\t\t\t[-81.833470, 38.209570],\n\t\t\t\t\t\t[-81.643685, 38.220401],\n\t\t\t\t\t\t[-81.515836, 38.112360],\n\t\t\t\t\t\t[-81.456632, 37.987307]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54009\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"009\",\n\t\t\t\t\"NAME\": \"Brooke\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 89.205000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.517998, 40.399644],\n\t\t\t\t\t\t[-80.517991, 40.398868],\n\t\t\t\t\t\t[-80.519056, 40.172771],\n\t\t\t\t\t\t[-80.519056, 40.172744],\n\t\t\t\t\t\t[-80.519104, 40.159672],\n\t\t\t\t\t\t[-80.685391, 40.187642],\n\t\t\t\t\t\t[-80.652098, 40.244970],\n\t\t\t\t\t\t[-80.644598, 40.251270],\n\t\t\t\t\t\t[-80.637198, 40.255070],\n\t\t\t\t\t\t[-80.616696, 40.280270],\n\t\t\t\t\t\t[-80.602895, 40.307069],\n\t\t\t\t\t\t[-80.599895, 40.317669],\n\t\t\t\t\t\t[-80.609313, 40.360468],\n\t\t\t\t\t\t[-80.619196, 40.381768],\n\t\t\t\t\t\t[-80.617346, 40.396004],\n\t\t\t\t\t\t[-80.573784, 40.399755],\n\t\t\t\t\t\t[-80.517998, 40.399644]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54011\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"011\",\n\t\t\t\t\"NAME\": \"Cabell\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 281.018000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.047128, 38.374432],\n\t\t\t\t\t\t[-82.176790, 38.339600],\n\t\t\t\t\t\t[-82.264849, 38.229199],\n\t\t\t\t\t\t[-82.297858, 38.327443],\n\t\t\t\t\t\t[-82.343911, 38.305209],\n\t\t\t\t\t\t[-82.506670, 38.410092],\n\t\t\t\t\t\t[-82.340640, 38.440948],\n\t\t\t\t\t\t[-82.330335, 38.444500],\n\t\t\t\t\t\t[-82.323999, 38.449268],\n\t\t\t\t\t\t[-82.320223, 38.454516],\n\t\t\t\t\t\t[-82.313935, 38.468084],\n\t\t\t\t\t\t[-82.295571, 38.539783],\n\t\t\t\t\t\t[-82.293271, 38.560283],\n\t\t\t\t\t\t[-82.293871, 38.572683],\n\t\t\t\t\t\t[-82.291271, 38.578983],\n\t\t\t\t\t\t[-82.287102, 38.582588],\n\t\t\t\t\t\t[-82.274270, 38.593683],\n\t\t\t\t\t\t[-82.262070, 38.598183],\n\t\t\t\t\t\t[-82.245969, 38.598483],\n\t\t\t\t\t\t[-82.218967, 38.591683],\n\t\t\t\t\t\t[-82.055127, 38.474547],\n\t\t\t\t\t\t[-82.047128, 38.374432]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54015\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"015\",\n\t\t\t\t\"NAME\": \"Clay\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 341.902000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.231434, 38.263716],\n\t\t\t\t\t\t[-81.283872, 38.472029],\n\t\t\t\t\t\t[-81.194113, 38.527634],\n\t\t\t\t\t\t[-81.130775, 38.565948],\n\t\t\t\t\t\t[-81.083710, 38.611982],\n\t\t\t\t\t\t[-81.031677, 38.667839],\n\t\t\t\t\t\t[-80.881232, 38.507045],\n\t\t\t\t\t\t[-80.817424, 38.478553],\n\t\t\t\t\t\t[-80.911361, 38.414785],\n\t\t\t\t\t\t[-81.231434, 38.263716]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54019\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"019\",\n\t\t\t\t\"NAME\": \"Fayette\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 661.550000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.231636, 38.263514],\n\t\t\t\t\t\t[-81.070465, 38.210103],\n\t\t\t\t\t\t[-80.983473, 38.222537],\n\t\t\t\t\t\t[-80.882187, 38.103457],\n\t\t\t\t\t\t[-80.769866, 37.985270],\n\t\t\t\t\t\t[-80.806316, 37.868915],\n\t\t\t\t\t\t[-80.945090, 37.819121],\n\t\t\t\t\t\t[-81.091041, 37.849674],\n\t\t\t\t\t\t[-81.073249, 37.875865],\n\t\t\t\t\t\t[-81.295127, 37.889311],\n\t\t\t\t\t\t[-81.296628, 37.944010],\n\t\t\t\t\t\t[-81.380829, 37.969109],\n\t\t\t\t\t\t[-81.331503, 38.167578],\n\t\t\t\t\t\t[-81.231636, 38.263514]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12037\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"037\",\n\t\t\t\t\"NAME\": \"Franklin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 534.725000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-84.777208, 29.707398],\n\t\t\t\t\t\t\t[-84.729836, 29.738881],\n\t\t\t\t\t\t\t[-84.716994, 29.749066],\n\t\t\t\t\t\t\t[-84.696726, 29.769930],\n\t\t\t\t\t\t\t[-84.694125, 29.764593],\n\t\t\t\t\t\t\t[-84.694939, 29.761844],\n\t\t\t\t\t\t\t[-84.713747, 29.741390],\n\t\t\t\t\t\t\t[-84.765117, 29.699724],\n\t\t\t\t\t\t\t[-84.776954, 29.692191],\n\t\t\t\t\t\t\t[-84.799129, 29.681565],\n\t\t\t\t\t\t\t[-84.853829, 29.664720],\n\t\t\t\t\t\t\t[-84.884632, 29.652248],\n\t\t\t\t\t\t\t[-84.957779, 29.612635],\n\t\t\t\t\t\t\t[-85.036219, 29.588919],\n\t\t\t\t\t\t\t[-85.051033, 29.586928],\n\t\t\t\t\t\t\t[-85.054624, 29.592084],\n\t\t\t\t\t\t\t[-85.069453, 29.605282],\n\t\t\t\t\t\t\t[-85.095190, 29.622490],\n\t\t\t\t\t\t\t[-85.097082, 29.625215],\n\t\t\t\t\t\t\t[-85.094882, 29.627757],\n\t\t\t\t\t\t\t[-85.066530, 29.609952],\n\t\t\t\t\t\t\t[-85.038497, 29.599552],\n\t\t\t\t\t\t\t[-85.023501, 29.597073],\n\t\t\t\t\t\t\t[-85.017205, 29.604379],\n\t\t\t\t\t\t\t[-84.987775, 29.610307],\n\t\t\t\t\t\t\t[-84.968314, 29.617238],\n\t\t\t\t\t\t\t[-84.932592, 29.637232],\n\t\t\t\t\t\t\t[-84.925842, 29.644949],\n\t\t\t\t\t\t\t[-84.920333, 29.648638],\n\t\t\t\t\t\t\t[-84.895885, 29.657444],\n\t\t\t\t\t\t\t[-84.862099, 29.672572],\n\t\t\t\t\t\t\t[-84.813352, 29.687028],\n\t\t\t\t\t\t\t[-84.798160, 29.699321],\n\t\t\t\t\t\t\t[-84.777208, 29.707398]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-85.156415, 29.679628],\n\t\t\t\t\t\t\t[-85.137397, 29.684348],\n\t\t\t\t\t\t\t[-85.134639, 29.686569],\n\t\t\t\t\t\t\t[-85.114268, 29.688658],\n\t\t\t\t\t\t\t[-85.093902, 29.684838],\n\t\t\t\t\t\t\t[-85.083719, 29.679019],\n\t\t\t\t\t\t\t[-85.077237, 29.670862],\n\t\t\t\t\t\t\t[-85.091399, 29.648634],\n\t\t\t\t\t\t\t[-85.097218, 29.633004],\n\t\t\t\t\t\t\t[-85.124913, 29.628433],\n\t\t\t\t\t\t\t[-85.142746, 29.635404],\n\t\t\t\t\t\t\t[-85.162520, 29.650282],\n\t\t\t\t\t\t\t[-85.184530, 29.663987],\n\t\t\t\t\t\t\t[-85.204314, 29.672695],\n\t\t\t\t\t\t\t[-85.222546, 29.678039],\n\t\t\t\t\t\t\t[-85.220324, 29.680138],\n\t\t\t\t\t\t\t[-85.208981, 29.681775],\n\t\t\t\t\t\t\t[-85.184776, 29.682710],\n\t\t\t\t\t\t\t[-85.168625, 29.682409],\n\t\t\t\t\t\t\t[-85.156415, 29.679628]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-84.544450, 30.011030],\n\t\t\t\t\t\t\t[-84.341261, 29.960775],\n\t\t\t\t\t\t\t[-84.339426, 29.946007],\n\t\t\t\t\t\t\t[-84.336511, 29.942508],\n\t\t\t\t\t\t\t[-84.333746, 29.923721],\n\t\t\t\t\t\t\t[-84.335953, 29.912962],\n\t\t\t\t\t\t\t[-84.343389, 29.899539],\n\t\t\t\t\t\t\t[-84.349066, 29.896812],\n\t\t\t\t\t\t\t[-84.378937, 29.893112],\n\t\t\t\t\t\t\t[-84.404958, 29.901229],\n\t\t\t\t\t\t\t[-84.423834, 29.902996],\n\t\t\t\t\t\t\t[-84.434287, 29.906328],\n\t\t\t\t\t\t\t[-84.443652, 29.913785],\n\t\t\t\t\t\t\t[-84.451705, 29.929085],\n\t\t\t\t\t\t\t[-84.470323, 29.924524],\n\t\t\t\t\t\t\t[-84.494562, 29.913957],\n\t\t\t\t\t\t\t[-84.511996, 29.916574],\n\t\t\t\t\t\t\t[-84.535873, 29.910092],\n\t\t\t\t\t\t\t[-84.577440, 29.887828],\n\t\t\t\t\t\t\t[-84.603303, 29.876117],\n\t\t\t\t\t\t\t[-84.613154, 29.867984],\n\t\t\t\t\t\t\t[-84.647958, 29.847104],\n\t\t\t\t\t\t\t[-84.656318, 29.837943],\n\t\t\t\t\t\t\t[-84.656450, 29.834277],\n\t\t\t\t\t\t\t[-84.669728, 29.828910],\n\t\t\t\t\t\t\t[-84.683934, 29.831327],\n\t\t\t\t\t\t\t[-84.692053, 29.829059],\n\t\t\t\t\t\t\t[-84.730327, 29.806900],\n\t\t\t\t\t\t\t[-84.755595, 29.788540],\n\t\t\t\t\t\t\t[-84.762998, 29.788846],\n\t\t\t\t\t\t\t[-84.824197, 29.758288],\n\t\t\t\t\t\t\t[-84.837168, 29.755926],\n\t\t\t\t\t\t\t[-84.868271, 29.742454],\n\t\t\t\t\t\t\t[-84.881777, 29.733882],\n\t\t\t\t\t\t\t[-84.888031, 29.722406],\n\t\t\t\t\t\t\t[-84.892493, 29.722660],\n\t\t\t\t\t\t\t[-84.901781, 29.735723],\n\t\t\t\t\t\t\t[-84.890066, 29.755802],\n\t\t\t\t\t\t\t[-84.877111, 29.772888],\n\t\t\t\t\t\t\t[-84.893992, 29.785176],\n\t\t\t\t\t\t\t[-84.904130, 29.786279],\n\t\t\t\t\t\t\t[-84.915110, 29.783303],\n\t\t\t\t\t\t\t[-84.920917, 29.772901],\n\t\t\t\t\t\t\t[-84.938370, 29.750211],\n\t\t\t\t\t\t\t[-84.946595, 29.745032],\n\t\t\t\t\t\t\t[-84.964007, 29.742422],\n\t\t\t\t\t\t\t[-84.968841, 29.727080],\n\t\t\t\t\t\t\t[-84.977004, 29.721209],\n\t\t\t\t\t\t\t[-84.993264, 29.714961],\n\t\t\t\t\t\t\t[-85.037212, 29.711074],\n\t\t\t\t\t\t\t[-85.072123, 29.719027],\n\t\t\t\t\t\t\t[-85.101682, 29.718748],\n\t\t\t\t\t\t\t[-85.121473, 29.715854],\n\t\t\t\t\t\t\t[-85.153238, 29.708231],\n\t\t\t\t\t\t\t[-85.177284, 29.700193],\n\t\t\t\t\t\t\t[-85.217355, 29.694953],\n\t\t\t\t\t\t\t[-85.109401, 29.776793],\n\t\t\t\t\t\t\t[-85.040078, 29.779346],\n\t\t\t\t\t\t\t[-85.012191, 29.873167],\n\t\t\t\t\t\t\t[-85.025439, 29.971399],\n\t\t\t\t\t\t\t[-85.007626, 30.013883],\n\t\t\t\t\t\t\t[-84.544450, 30.011030]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12057\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"057\",\n\t\t\t\t\"NAME\": \"Hillsborough\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1020.214000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.643968, 28.173301],\n\t\t\t\t\t\t[-82.105853, 28.171650],\n\t\t\t\t\t\t[-82.056261, 28.171592],\n\t\t\t\t\t\t[-82.056404, 28.080385],\n\t\t\t\t\t\t[-82.054035, 27.850683],\n\t\t\t\t\t\t[-82.054349, 27.646382],\n\t\t\t\t\t\t[-82.524750, 27.645422],\n\t\t\t\t\t\t[-82.524947, 27.645422],\n\t\t\t\t\t\t[-82.549548, 27.645557],\n\t\t\t\t\t\t[-82.554499, 27.645145],\n\t\t\t\t\t\t[-82.537146, 27.672933],\n\t\t\t\t\t\t[-82.514265, 27.705588],\n\t\t\t\t\t\t[-82.494891, 27.718963],\n\t\t\t\t\t\t[-82.482449, 27.719886],\n\t\t\t\t\t\t[-82.477638, 27.723004],\n\t\t\t\t\t\t[-82.476297, 27.729929],\n\t\t\t\t\t\t[-82.477129, 27.735216],\n\t\t\t\t\t\t[-82.482305, 27.742649],\n\t\t\t\t\t\t[-82.478339, 27.746250],\n\t\t\t\t\t\t[-82.457543, 27.752571],\n\t\t\t\t\t\t[-82.434635, 27.764355],\n\t\t\t\t\t\t[-82.431980, 27.768092],\n\t\t\t\t\t\t[-82.433981, 27.774087],\n\t\t\t\t\t\t[-82.419066, 27.793767],\n\t\t\t\t\t\t[-82.418401, 27.803187],\n\t\t\t\t\t\t[-82.410837, 27.810868],\n\t\t\t\t\t\t[-82.402857, 27.812671],\n\t\t\t\t\t\t[-82.393383, 27.837519],\n\t\t\t\t\t\t[-82.397463, 27.851631],\n\t\t\t\t\t\t[-82.402615, 27.882602],\n\t\t\t\t\t\t[-82.413915, 27.901401],\n\t\t\t\t\t\t[-82.432316, 27.901301],\n\t\t\t\t\t\t[-82.451591, 27.907506],\n\t\t\t\t\t\t[-82.460016, 27.911600],\n\t\t\t\t\t\t[-82.459616, 27.916900],\n\t\t\t\t\t\t[-82.462078, 27.920066],\n\t\t\t\t\t\t[-82.478063, 27.927680],\n\t\t\t\t\t\t[-82.489817, 27.919600],\n\t\t\t\t\t\t[-82.491117, 27.914500],\n\t\t\t\t\t\t[-82.487417, 27.895001],\n\t\t\t\t\t\t[-82.488057, 27.863566],\n\t\t\t\t\t\t[-82.480137, 27.853246],\n\t\t\t\t\t\t[-82.471624, 27.847342],\n\t\t\t\t\t\t[-82.468840, 27.843295],\n\t\t\t\t\t\t[-82.472440, 27.822559],\n\t\t\t\t\t\t[-82.475273, 27.820991],\n\t\t\t\t\t\t[-82.489849, 27.822607],\n\t\t\t\t\t\t[-82.511193, 27.828015],\n\t\t\t\t\t\t[-82.553946, 27.848462],\n\t\t\t\t\t\t[-82.552918, 27.862702],\n\t\t\t\t\t\t[-82.538618, 27.864901],\n\t\t\t\t\t\t[-82.533218, 27.870701],\n\t\t\t\t\t\t[-82.529918, 27.877501],\n\t\t\t\t\t\t[-82.539318, 27.885001],\n\t\t\t\t\t\t[-82.542818, 27.890601],\n\t\t\t\t\t\t[-82.541747, 27.893706],\n\t\t\t\t\t\t[-82.535818, 27.898000],\n\t\t\t\t\t\t[-82.531318, 27.903900],\n\t\t\t\t\t\t[-82.533718, 27.932999],\n\t\t\t\t\t\t[-82.541218, 27.948998],\n\t\t\t\t\t\t[-82.553918, 27.966998],\n\t\t\t\t\t\t[-82.589419, 27.970898],\n\t\t\t\t\t\t[-82.619520, 27.969698],\n\t\t\t\t\t\t[-82.648616, 27.966309],\n\t\t\t\t\t\t[-82.648557, 28.038630],\n\t\t\t\t\t\t[-82.651165, 28.173266],\n\t\t\t\t\t\t[-82.649725, 28.173314],\n\t\t\t\t\t\t[-82.643968, 28.173301]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12065\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"065\",\n\t\t\t\t\"NAME\": \"Jefferson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 598.095000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.007391, 30.672097],\n\t\t\t\t\t\t[-83.880317, 30.665807],\n\t\t\t\t\t\t[-83.880220, 30.665832],\n\t\t\t\t\t\t[-83.855216, 30.664412],\n\t\t\t\t\t\t[-83.820886, 30.662612],\n\t\t\t\t\t\t[-83.810536, 30.661880],\n\t\t\t\t\t\t[-83.743729, 30.658396],\n\t\t\t\t\t\t[-83.676773, 30.654905],\n\t\t\t\t\t\t[-83.674058, 30.654747],\n\t\t\t\t\t\t[-83.611720, 30.651258],\n\t\t\t\t\t\t[-83.604186, 30.581916],\n\t\t\t\t\t\t[-83.731107, 30.492315],\n\t\t\t\t\t\t[-83.721720, 30.434354],\n\t\t\t\t\t\t[-83.806667, 30.371689],\n\t\t\t\t\t\t[-83.820235, 30.303540],\n\t\t\t\t\t\t[-83.829465, 30.287863],\n\t\t\t\t\t\t[-83.856987, 30.273318],\n\t\t\t\t\t\t[-83.915533, 30.245386],\n\t\t\t\t\t\t[-83.991607, 30.083920],\n\t\t\t\t\t\t[-84.000716, 30.096209],\n\t\t\t\t\t\t[-84.024274, 30.103271],\n\t\t\t\t\t\t[-84.048715, 30.103208],\n\t\t\t\t\t\t[-84.062990, 30.101378],\n\t\t\t\t\t\t[-84.076043, 30.095464],\n\t\t\t\t\t\t[-84.075539, 30.273617],\n\t\t\t\t\t\t[-84.075819, 30.369819],\n\t\t\t\t\t\t[-84.075191, 30.381902],\n\t\t\t\t\t\t[-84.074892, 30.413106],\n\t\t\t\t\t\t[-84.074691, 30.434302],\n\t\t\t\t\t\t[-84.041488, 30.463308],\n\t\t\t\t\t\t[-84.041197, 30.483827],\n\t\t\t\t\t\t[-84.041192, 30.483967],\n\t\t\t\t\t\t[-83.977165, 30.521987],\n\t\t\t\t\t\t[-84.007454, 30.672100],\n\t\t\t\t\t\t[-84.007391, 30.672097]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08093\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"093\",\n\t\t\t\t\"NAME\": \"Park\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2193.846000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-105.398949, 39.566056],\n\t\t\t\t\t\t[-105.398453, 39.363516],\n\t\t\t\t\t\t[-105.397875, 39.129564],\n\t\t\t\t\t\t[-105.330444, 39.129685],\n\t\t\t\t\t\t[-105.329134, 38.697205],\n\t\t\t\t\t\t[-105.969750, 38.693551],\n\t\t\t\t\t\t[-105.906587, 38.806962],\n\t\t\t\t\t\t[-105.925123, 38.872178],\n\t\t\t\t\t\t[-106.028138, 38.942849],\n\t\t\t\t\t\t[-106.110995, 38.940099],\n\t\t\t\t\t\t[-106.191006, 39.056073],\n\t\t\t\t\t\t[-106.183972, 39.309354],\n\t\t\t\t\t\t[-106.135529, 39.379546],\n\t\t\t\t\t\t[-106.017619, 39.365503],\n\t\t\t\t\t\t[-105.966786, 39.438035],\n\t\t\t\t\t\t[-105.817631, 39.538310],\n\t\t\t\t\t\t[-105.829662, 39.564865],\n\t\t\t\t\t\t[-105.642798, 39.566584],\n\t\t\t\t\t\t[-105.587986, 39.568197],\n\t\t\t\t\t\t[-105.398949, 39.566056]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08099\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"099\",\n\t\t\t\t\"NAME\": \"Prowers\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1638.395000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-102.044510, 38.262412],\n\t\t\t\t\t\t[-102.044398, 38.250015],\n\t\t\t\t\t\t[-102.043844, 37.928102],\n\t\t\t\t\t\t[-102.043845, 37.926135],\n\t\t\t\t\t\t[-102.043219, 37.867929],\n\t\t\t\t\t\t[-102.043033, 37.824146],\n\t\t\t\t\t\t[-102.042953, 37.803535],\n\t\t\t\t\t\t[-102.042668, 37.788758],\n\t\t\t\t\t\t[-102.042158, 37.760164],\n\t\t\t\t\t\t[-102.041990, 37.738541],\n\t\t\t\t\t\t[-102.041876, 37.723875],\n\t\t\t\t\t\t[-102.041574, 37.680436],\n\t\t\t\t\t\t[-102.041694, 37.665681],\n\t\t\t\t\t\t[-102.041582, 37.654495],\n\t\t\t\t\t\t[-102.041585, 37.644282],\n\t\t\t\t\t\t[-102.747615, 37.643642],\n\t\t\t\t\t\t[-102.742330, 38.266971],\n\t\t\t\t\t\t[-102.044567, 38.268749],\n\t\t\t\t\t\t[-102.044510, 38.262412]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08107\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"107\",\n\t\t\t\t\"NAME\": \"Routt\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2362.026000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-107.000606, 41.003444],\n\t\t\t\t\t\t[-106.857772, 41.003082],\n\t\t\t\t\t\t[-106.852349, 40.925183],\n\t\t\t\t\t\t[-106.825030, 40.932119],\n\t\t\t\t\t\t[-106.654541, 40.849117],\n\t\t\t\t\t\t[-106.636922, 40.789489],\n\t\t\t\t\t\t[-106.706149, 40.616597],\n\t\t\t\t\t\t[-106.652112, 40.445231],\n\t\t\t\t\t\t[-106.632257, 40.341559],\n\t\t\t\t\t\t[-106.626569, 39.924785],\n\t\t\t\t\t\t[-106.626555, 39.918671],\n\t\t\t\t\t\t[-107.033968, 39.918913],\n\t\t\t\t\t\t[-107.037363, 40.091538],\n\t\t\t\t\t\t[-107.037928, 40.225372],\n\t\t\t\t\t\t[-107.439386, 40.223379],\n\t\t\t\t\t\t[-107.428813, 40.542207],\n\t\t\t\t\t\t[-107.314153, 40.600281],\n\t\t\t\t\t\t[-107.317794, 41.002957],\n\t\t\t\t\t\t[-107.000606, 41.003444]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08113\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"113\",\n\t\t\t\t\"NAME\": \"San Miguel\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1286.611000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-109.042137, 37.881160],\n\t\t\t\t\t\t[-109.043121, 37.974260],\n\t\t\t\t\t\t[-109.042819, 37.997068],\n\t\t\t\t\t\t[-109.042820, 37.999301],\n\t\t\t\t\t\t[-109.042074, 38.153023],\n\t\t\t\t\t\t[-107.965789, 38.152328],\n\t\t\t\t\t\t[-107.891469, 38.115957],\n\t\t\t\t\t\t[-107.900193, 38.026249],\n\t\t\t\t\t\t[-107.795469, 37.988520],\n\t\t\t\t\t\t[-107.738283, 37.905432],\n\t\t\t\t\t\t[-107.860845, 37.775517],\n\t\t\t\t\t\t[-107.989208, 37.856640],\n\t\t\t\t\t\t[-108.209093, 37.820936],\n\t\t\t\t\t\t[-108.256427, 37.894446],\n\t\t\t\t\t\t[-109.042137, 37.881160]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US08115\",\n\t\t\t\t\"STATE\": \"08\",\n\t\t\t\t\"COUNTY\": \"115\",\n\t\t\t\t\"NAME\": \"Sedgwick\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 548.041000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-102.653463, 41.002332],\n\t\t\t\t\t\t[-102.621033, 41.002597],\n\t\t\t\t\t\t[-102.578696, 41.002291],\n\t\t\t\t\t\t[-102.575738, 41.002268],\n\t\t\t\t\t\t[-102.575496, 41.002200],\n\t\t\t\t\t\t[-102.566048, 41.002200],\n\t\t\t\t\t\t[-102.556789, 41.002219],\n\t\t\t\t\t\t[-102.487955, 41.002445],\n\t\t\t\t\t\t[-102.470537, 41.002382],\n\t\t\t\t\t\t[-102.469223, 41.002424],\n\t\t\t\t\t\t[-102.379593, 41.002301],\n\t\t\t\t\t\t[-102.364066, 41.002174],\n\t\t\t\t\t\t[-102.292833, 41.002207],\n\t\t\t\t\t\t[-102.292622, 41.002230],\n\t\t\t\t\t\t[-102.292553, 41.002207],\n\t\t\t\t\t\t[-102.291354, 41.002207],\n\t\t\t\t\t\t[-102.272100, 41.002245],\n\t\t\t\t\t\t[-102.267812, 41.002383],\n\t\t\t\t\t\t[-102.231931, 41.002327],\n\t\t\t\t\t\t[-102.212200, 41.002462],\n\t\t\t\t\t\t[-102.209361, 41.002442],\n\t\t\t\t\t\t[-102.191210, 41.002326],\n\t\t\t\t\t\t[-102.124972, 41.002338],\n\t\t\t\t\t\t[-102.070598, 41.002423],\n\t\t\t\t\t\t[-102.051718, 41.002377],\n\t\t\t\t\t\t[-102.051614, 41.002377],\n\t\t\t\t\t\t[-102.051292, 40.749591],\n\t\t\t\t\t\t[-102.051292, 40.749586],\n\t\t\t\t\t\t[-102.651310, 40.749402],\n\t\t\t\t\t\t[-102.653463, 41.002332]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05125\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"125\",\n\t\t\t\t\"NAME\": \"Saline\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 723.604000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.245818, 34.493506],\n\t\t\t\t\t\t[-92.403557, 34.495795],\n\t\t\t\t\t\t[-92.404680, 34.451916],\n\t\t\t\t\t\t[-92.589418, 34.455641],\n\t\t\t\t\t\t[-92.668711, 34.414237],\n\t\t\t\t\t\t[-92.685284, 34.473105],\n\t\t\t\t\t\t[-92.793197, 34.503606],\n\t\t\t\t\t\t[-92.808028, 34.590406],\n\t\t\t\t\t\t[-92.875456, 34.635124],\n\t\t\t\t\t\t[-92.979902, 34.637222],\n\t\t\t\t\t\t[-92.969250, 34.772266],\n\t\t\t\t\t\t[-93.075178, 34.771892],\n\t\t\t\t\t\t[-93.073877, 34.858091],\n\t\t\t\t\t\t[-92.739779, 34.853459],\n\t\t\t\t\t\t[-92.651248, 34.851682],\n\t\t\t\t\t\t[-92.654324, 34.764541],\n\t\t\t\t\t\t[-92.549856, 34.761699],\n\t\t\t\t\t\t[-92.551963, 34.689432],\n\t\t\t\t\t\t[-92.443265, 34.672041],\n\t\t\t\t\t\t[-92.445148, 34.626940],\n\t\t\t\t\t\t[-92.346814, 34.625611],\n\t\t\t\t\t\t[-92.348749, 34.582290],\n\t\t\t\t\t\t[-92.244209, 34.580890],\n\t\t\t\t\t\t[-92.245818, 34.493506]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05131\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"131\",\n\t\t\t\t\"NAME\": \"Sebastian\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 531.911000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.433742, 35.386467],\n\t\t\t\t\t\t[-94.433915, 35.387391],\n\t\t\t\t\t\t[-94.431215, 35.394290],\n\t\t\t\t\t\t[-94.431789, 35.397659],\n\t\t\t\t\t\t[-94.403468, 35.449994],\n\t\t\t\t\t\t[-94.321186, 35.357476],\n\t\t\t\t\t\t[-94.223751, 35.353694],\n\t\t\t\t\t\t[-94.074895, 35.445403],\n\t\t\t\t\t\t[-94.082798, 35.215913],\n\t\t\t\t\t\t[-94.028547, 35.213826],\n\t\t\t\t\t\t[-94.031236, 35.140857],\n\t\t\t\t\t\t[-94.139307, 35.143361],\n\t\t\t\t\t\t[-94.140571, 35.099678],\n\t\t\t\t\t\t[-94.222869, 35.079115],\n\t\t\t\t\t\t[-94.230524, 34.968527],\n\t\t\t\t\t\t[-94.447889, 34.933941],\n\t\t\t\t\t\t[-94.441232, 35.119724],\n\t\t\t\t\t\t[-94.440754, 35.128806],\n\t\t\t\t\t\t[-94.439550, 35.169037],\n\t\t\t\t\t\t[-94.439509, 35.171807],\n\t\t\t\t\t\t[-94.439056, 35.193588],\n\t\t\t\t\t\t[-94.439084, 35.197298],\n\t\t\t\t\t\t[-94.438470, 35.208587],\n\t\t\t\t\t\t[-94.438247, 35.210992],\n\t\t\t\t\t\t[-94.437774, 35.239271],\n\t\t\t\t\t\t[-94.437578, 35.242202],\n\t\t\t\t\t\t[-94.435812, 35.271300],\n\t\t\t\t\t\t[-94.435706, 35.274267],\n\t\t\t\t\t\t[-94.435316, 35.275893],\n\t\t\t\t\t\t[-94.435280, 35.287485],\n\t\t\t\t\t\t[-94.435170, 35.291494],\n\t\t\t\t\t\t[-94.434115, 35.306493],\n\t\t\t\t\t\t[-94.431815, 35.362891],\n\t\t\t\t\t\t[-94.432685, 35.380806],\n\t\t\t\t\t\t[-94.433742, 35.386467]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05139\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"139\",\n\t\t\t\t\"NAME\": \"Union\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1039.214000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.724743, 33.014347],\n\t\t\t\t\t\t[-92.724994, 33.014351],\n\t\t\t\t\t\t[-92.733197, 33.014347],\n\t\t\t\t\t\t[-92.830798, 33.015661],\n\t\t\t\t\t\t[-92.844073, 33.016034],\n\t\t\t\t\t\t[-92.844286, 33.016070],\n\t\t\t\t\t\t[-92.854167, 33.016132],\n\t\t\t\t\t\t[-92.867510, 33.016062],\n\t\t\t\t\t\t[-92.946553, 33.016807],\n\t\t\t\t\t\t[-92.971137, 33.017192],\n\t\t\t\t\t\t[-92.988708, 33.017298],\n\t\t\t\t\t\t[-92.978469, 33.377280],\n\t\t\t\t\t\t[-92.660238, 33.355613],\n\t\t\t\t\t\t[-92.567156, 33.367200],\n\t\t\t\t\t\t[-92.445399, 33.274859],\n\t\t\t\t\t\t[-92.350432, 33.298941],\n\t\t\t\t\t\t[-92.224060, 33.251782],\n\t\t\t\t\t\t[-92.137527, 33.162956],\n\t\t\t\t\t\t[-92.109611, 33.034054],\n\t\t\t\t\t\t[-92.069105, 33.008163],\n\t\t\t\t\t\t[-92.222825, 33.009080],\n\t\t\t\t\t\t[-92.292664, 33.010103],\n\t\t\t\t\t\t[-92.335893, 33.010349],\n\t\t\t\t\t\t[-92.362865, 33.010628],\n\t\t\t\t\t\t[-92.370290, 33.010717],\n\t\t\t\t\t\t[-92.469762, 33.012010],\n\t\t\t\t\t\t[-92.501383, 33.012160],\n\t\t\t\t\t\t[-92.503776, 33.012161],\n\t\t\t\t\t\t[-92.711289, 33.014307],\n\t\t\t\t\t\t[-92.715884, 33.014398],\n\t\t\t\t\t\t[-92.723553, 33.014328],\n\t\t\t\t\t\t[-92.724743, 33.014347]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US02290\",\n\t\t\t\t\"STATE\": \"02\",\n\t\t\t\t\"COUNTY\": \"290\",\n\t\t\t\t\"NAME\": \"Yukon-Koyukuk\",\n\t\t\t\t\"LSAD\": \"CA\",\n\t\t\t\t\"CENSUSAREA\": 145504.789000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-153.001339, 62.727440],\n\t\t\t\t\t\t[-153.001262, 62.295331],\n\t\t\t\t\t\t[-153.067697, 62.295211],\n\t\t\t\t\t\t[-153.070317, 62.208517],\n\t\t\t\t\t\t[-153.394320, 62.209115],\n\t\t\t\t\t\t[-153.395401, 62.124776],\n\t\t\t\t\t\t[-153.740629, 62.121565],\n\t\t\t\t\t\t[-153.735846, 62.029370],\n\t\t\t\t\t\t[-155.107471, 62.029371],\n\t\t\t\t\t\t[-157.073592, 62.029567],\n\t\t\t\t\t\t[-157.074237, 62.129913],\n\t\t\t\t\t\t[-157.517020, 62.123543],\n\t\t\t\t\t\t[-158.532398, 62.118595],\n\t\t\t\t\t\t[-158.531113, 62.031708],\n\t\t\t\t\t\t[-159.260950, 62.032026],\n\t\t\t\t\t\t[-159.265098, 61.945564],\n\t\t\t\t\t\t[-160.534142, 61.947257],\n\t\t\t\t\t\t[-160.913973, 61.949378],\n\t\t\t\t\t\t[-160.910169, 62.204383],\n\t\t\t\t\t\t[-161.047821, 62.206673],\n\t\t\t\t\t\t[-161.045280, 62.550449],\n\t\t\t\t\t\t[-161.000397, 62.551764],\n\t\t\t\t\t\t[-160.993241, 62.897962],\n\t\t\t\t\t\t[-160.942287, 62.898827],\n\t\t\t\t\t\t[-160.941899, 62.998883],\n\t\t\t\t\t\t[-160.851144, 63.012689],\n\t\t\t\t\t\t[-160.847328, 63.269229],\n\t\t\t\t\t\t[-160.671305, 63.270830],\n\t\t\t\t\t\t[-160.692051, 63.536618],\n\t\t\t\t\t\t[-160.494971, 63.537148],\n\t\t\t\t\t\t[-160.493465, 63.613655],\n\t\t\t\t\t\t[-160.097874, 63.614393],\n\t\t\t\t\t\t[-160.103703, 63.702263],\n\t\t\t\t\t\t[-159.929244, 63.703494],\n\t\t\t\t\t\t[-159.930773, 63.793808],\n\t\t\t\t\t\t[-159.699291, 63.792346],\n\t\t\t\t\t\t[-159.731224, 64.052366],\n\t\t\t\t\t\t[-159.956447, 64.051022],\n\t\t\t\t\t\t[-159.978098, 64.748491],\n\t\t\t\t\t\t[-159.773803, 64.750296],\n\t\t\t\t\t\t[-159.777177, 64.923088],\n\t\t\t\t\t\t[-159.576911, 64.923743],\n\t\t\t\t\t\t[-159.578562, 65.262692],\n\t\t\t\t\t\t[-159.384765, 65.261674],\n\t\t\t\t\t\t[-159.386712, 65.523140],\n\t\t\t\t\t\t[-159.593576, 65.522689],\n\t\t\t\t\t\t[-159.595187, 65.958090],\n\t\t\t\t\t\t[-158.966298, 65.957306],\n\t\t\t\t\t\t[-158.965461, 66.123439],\n\t\t\t\t\t\t[-157.894181, 66.125284],\n\t\t\t\t\t\t[-157.892416, 66.476795],\n\t\t\t\t\t\t[-157.051694, 66.478750],\n\t\t\t\t\t\t[-157.051530, 66.302054],\n\t\t\t\t\t\t[-156.626712, 66.304931],\n\t\t\t\t\t\t[-156.624296, 66.478785],\n\t\t\t\t\t\t[-156.196191, 66.479446],\n\t\t\t\t\t\t[-156.197173, 66.394758],\n\t\t\t\t\t\t[-155.981539, 66.398030],\n\t\t\t\t\t\t[-155.981123, 66.310448],\n\t\t\t\t\t\t[-155.562430, 66.309487],\n\t\t\t\t\t\t[-155.554608, 66.481912],\n\t\t\t\t\t\t[-155.513931, 66.569279],\n\t\t\t\t\t\t[-154.865962, 66.567723],\n\t\t\t\t\t\t[-154.862595, 66.716910],\n\t\t\t\t\t\t[-154.202144, 66.716586],\n\t\t\t\t\t\t[-154.201542, 66.804621],\n\t\t\t\t\t\t[-154.141599, 66.804853],\n\t\t\t\t\t\t[-154.145220, 67.161925],\n\t\t\t\t\t\t[-154.302303, 67.160767],\n\t\t\t\t\t\t[-154.306093, 67.251225],\n\t\t\t\t\t\t[-154.748759, 67.254419],\n\t\t\t\t\t\t[-154.747501, 67.512680],\n\t\t\t\t\t\t[-154.688359, 67.512481],\n\t\t\t\t\t\t[-154.686696, 67.602173],\n\t\t\t\t\t\t[-154.911027, 67.601857],\n\t\t\t\t\t\t[-154.904736, 67.688032],\n\t\t\t\t\t\t[-155.132355, 67.686612],\n\t\t\t\t\t\t[-155.129726, 67.774970],\n\t\t\t\t\t\t[-155.352249, 67.775553],\n\t\t\t\t\t\t[-155.306992, 67.864033],\n\t\t\t\t\t\t[-155.298020, 68.001771],\n\t\t\t\t\t\t[-151.606277, 68.006862],\n\t\t\t\t\t\t[-149.620648, 67.998940],\n\t\t\t\t\t\t[-147.389781, 68.001041],\n\t\t\t\t\t\t[-145.994865, 68.001285],\n\t\t\t\t\t\t[-145.998216, 68.489871],\n\t\t\t\t\t\t[-144.297052, 68.507297],\n\t\t\t\t\t\t[-142.360513, 68.489642],\n\t\t\t\t\t\t[-141.002694, 68.498391],\n\t\t\t\t\t\t[-141.002465, 65.840075],\n\t\t\t\t\t\t[-141.002465, 65.839421],\n\t\t\t\t\t\t[-141.093233, 65.827388],\n\t\t\t\t\t\t[-141.336224, 65.711614],\n\t\t\t\t\t\t[-141.387842, 65.614395],\n\t\t\t\t\t\t[-141.789050, 65.501546],\n\t\t\t\t\t\t[-141.855761, 65.445786],\n\t\t\t\t\t\t[-142.121380, 65.471690],\n\t\t\t\t\t\t[-142.307081, 65.440633],\n\t\t\t\t\t\t[-142.487301, 65.371898],\n\t\t\t\t\t\t[-142.629971, 65.385368],\n\t\t\t\t\t\t[-142.726364, 65.307742],\n\t\t\t\t\t\t[-142.731900, 65.233639],\n\t\t\t\t\t\t[-142.847089, 65.145564],\n\t\t\t\t\t\t[-143.081816, 65.120937],\n\t\t\t\t\t\t[-143.364478, 64.996996],\n\t\t\t\t\t\t[-143.525172, 64.960080],\n\t\t\t\t\t\t[-143.503643, 64.858251],\n\t\t\t\t\t\t[-143.433715, 64.821828],\n\t\t\t\t\t\t[-143.647213, 64.669506],\n\t\t\t\t\t\t[-143.751216, 64.647777],\n\t\t\t\t\t\t[-144.061159, 64.683442],\n\t\t\t\t\t\t[-144.120089, 64.798317],\n\t\t\t\t\t\t[-143.992045, 64.977011],\n\t\t\t\t\t\t[-144.105524, 65.015542],\n\t\t\t\t\t\t[-143.884795, 65.090281],\n\t\t\t\t\t\t[-143.977969, 65.119043],\n\t\t\t\t\t\t[-144.247190, 65.118774],\n\t\t\t\t\t\t[-144.445443, 65.062319],\n\t\t\t\t\t\t[-144.891387, 65.137197],\n\t\t\t\t\t\t[-145.209906, 65.072978],\n\t\t\t\t\t\t[-145.417480, 65.084836],\n\t\t\t\t\t\t[-145.646437, 65.033682],\n\t\t\t\t\t\t[-145.749681, 65.098233],\n\t\t\t\t\t\t[-145.615545, 65.144070],\n\t\t\t\t\t\t[-145.873843, 65.214026],\n\t\t\t\t\t\t[-146.078123, 65.245244],\n\t\t\t\t\t\t[-146.137530, 65.309851],\n\t\t\t\t\t\t[-145.994261, 65.406031],\n\t\t\t\t\t\t[-146.119758, 65.405823],\n\t\t\t\t\t\t[-146.192406, 65.454475],\n\t\t\t\t\t\t[-146.490362, 65.386878],\n\t\t\t\t\t\t[-146.568819, 65.344746],\n\t\t\t\t\t\t[-146.919725, 65.272970],\n\t\t\t\t\t\t[-147.017089, 65.290432],\n\t\t\t\t\t\t[-147.334764, 65.273291],\n\t\t\t\t\t\t[-147.550245, 65.211023],\n\t\t\t\t\t\t[-148.663844, 65.211355],\n\t\t\t\t\t\t[-148.642697, 64.865694],\n\t\t\t\t\t\t[-148.652370, 64.591053],\n\t\t\t\t\t\t[-148.441058, 64.577791],\n\t\t\t\t\t\t[-148.380509, 64.520562],\n\t\t\t\t\t\t[-148.242175, 64.483426],\n\t\t\t\t\t\t[-148.229784, 64.436621],\n\t\t\t\t\t\t[-147.995157, 64.341691],\n\t\t\t\t\t\t[-149.120704, 64.343615],\n\t\t\t\t\t\t[-149.119968, 64.358796],\n\t\t\t\t\t\t[-149.667993, 64.357813],\n\t\t\t\t\t\t[-150.749736, 64.365138],\n\t\t\t\t\t\t[-151.136195, 64.133084],\n\t\t\t\t\t\t[-151.301289, 64.009971],\n\t\t\t\t\t\t[-151.525111, 64.032465],\n\t\t\t\t\t\t[-151.579286, 64.085380],\n\t\t\t\t\t\t[-151.790558, 64.082290],\n\t\t\t\t\t\t[-151.825058, 64.005365],\n\t\t\t\t\t\t[-152.047377, 64.000576],\n\t\t\t\t\t\t[-152.055519, 63.823679],\n\t\t\t\t\t\t[-152.233557, 63.823684],\n\t\t\t\t\t\t[-152.241918, 63.656679],\n\t\t\t\t\t\t[-152.853430, 63.651710],\n\t\t\t\t\t\t[-152.812007, 63.351232],\n\t\t\t\t\t\t[-152.434625, 63.305936],\n\t\t\t\t\t\t[-152.434247, 63.169794],\n\t\t\t\t\t\t[-153.001339, 62.727440]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18171\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"171\",\n\t\t\t\t\"NAME\": \"Warren\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 364.681000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.294191, 40.257966],\n\t\t\t\t\t\t[-87.311889, 40.250036],\n\t\t\t\t\t\t[-87.339273, 40.223173],\n\t\t\t\t\t\t[-87.438755, 40.165694],\n\t\t\t\t\t\t[-87.406667, 40.127508],\n\t\t\t\t\t\t[-87.531438, 40.148123],\n\t\t\t\t\t\t[-87.531133, 40.170030],\n\t\t\t\t\t\t[-87.530828, 40.191812],\n\t\t\t\t\t\t[-87.529992, 40.250036],\n\t\t\t\t\t\t[-87.530054, 40.250671],\n\t\t\t\t\t\t[-87.526809, 40.462170],\n\t\t\t\t\t\t[-87.526549, 40.475659],\n\t\t\t\t\t\t[-87.526511, 40.476879],\n\t\t\t\t\t\t[-87.093676, 40.475745],\n\t\t\t\t\t\t[-87.092780, 40.475075],\n\t\t\t\t\t\t[-87.092148, 40.366612],\n\t\t\t\t\t\t[-87.244898, 40.309252],\n\t\t\t\t\t\t[-87.294191, 40.257966]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18177\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"177\",\n\t\t\t\t\"NAME\": \"Wayne\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 401.740000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.814189, 39.785569],\n\t\t\t\t\t\t[-84.814129, 39.726620],\n\t\t\t\t\t\t[-85.034575, 39.714764],\n\t\t\t\t\t\t[-85.185089, 39.715515],\n\t\t\t\t\t\t[-85.221118, 39.788449],\n\t\t\t\t\t\t[-85.201473, 40.004521],\n\t\t\t\t\t\t[-84.810670, 40.005074],\n\t\t\t\t\t\t[-84.812193, 39.927340],\n\t\t\t\t\t\t[-84.812357, 39.921764],\n\t\t\t\t\t\t[-84.812411, 39.916916],\n\t\t\t\t\t\t[-84.812411, 39.916915],\n\t\t\t\t\t\t[-84.812698, 39.891585],\n\t\t\t\t\t\t[-84.812787, 39.890830],\n\t\t\t\t\t\t[-84.813050, 39.872958],\n\t\t\t\t\t\t[-84.813464, 39.853261],\n\t\t\t\t\t\t[-84.813549, 39.850773],\n\t\t\t\t\t\t[-84.813674, 39.843173],\n\t\t\t\t\t\t[-84.813703, 39.843059],\n\t\t\t\t\t\t[-84.813793, 39.826771],\n\t\t\t\t\t\t[-84.813852, 39.824621],\n\t\t\t\t\t\t[-84.814179, 39.814212],\n\t\t\t\t\t\t[-84.814120, 39.811398],\n\t\t\t\t\t\t[-84.814209, 39.799755],\n\t\t\t\t\t\t[-84.814179, 39.786853],\n\t\t\t\t\t\t[-84.814189, 39.785569]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19005\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"005\",\n\t\t\t\t\"NAME\": \"Allamakee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 639.082000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.217706, 43.500550],\n\t\t\t\t\t\t[-91.205550, 43.422949],\n\t\t\t\t\t\t[-91.210233, 43.372064],\n\t\t\t\t\t\t[-91.107237, 43.313645],\n\t\t\t\t\t\t[-91.085652, 43.291870],\n\t\t\t\t\t\t[-91.057918, 43.255366],\n\t\t\t\t\t\t[-91.062562, 43.243165],\n\t\t\t\t\t\t[-91.146200, 43.152405],\n\t\t\t\t\t\t[-91.156200, 43.142945],\n\t\t\t\t\t\t[-91.175253, 43.134665],\n\t\t\t\t\t\t[-91.178251, 43.124982],\n\t\t\t\t\t\t[-91.177222, 43.080247],\n\t\t\t\t\t\t[-91.605307, 43.081653],\n\t\t\t\t\t\t[-91.610832, 43.500530],\n\t\t\t\t\t\t[-91.591073, 43.500536],\n\t\t\t\t\t\t[-91.551021, 43.500539],\n\t\t\t\t\t\t[-91.541220, 43.500515],\n\t\t\t\t\t\t[-91.533806, 43.500560],\n\t\t\t\t\t\t[-91.491042, 43.500690],\n\t\t\t\t\t\t[-91.465063, 43.500608],\n\t\t\t\t\t\t[-91.461403, 43.500642],\n\t\t\t\t\t\t[-91.445932, 43.500588],\n\t\t\t\t\t\t[-91.441786, 43.500438],\n\t\t\t\t\t\t[-91.376950, 43.500482],\n\t\t\t\t\t\t[-91.371608, 43.500945],\n\t\t\t\t\t\t[-91.369325, 43.500827],\n\t\t\t\t\t\t[-91.217706, 43.500550]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17059\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"059\",\n\t\t\t\t\"NAME\": \"Gallatin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 323.071000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.039000, 37.775454],\n\t\t\t\t\t\t[-88.045008, 37.762436],\n\t\t\t\t\t\t[-88.050969, 37.752599],\n\t\t\t\t\t\t[-88.059588, 37.742608],\n\t\t\t\t\t\t[-88.072538, 37.733286],\n\t\t\t\t\t\t[-88.122412, 37.709685],\n\t\t\t\t\t\t[-88.151646, 37.675098],\n\t\t\t\t\t\t[-88.158207, 37.664542],\n\t\t\t\t\t\t[-88.160187, 37.657592],\n\t\t\t\t\t\t[-88.156827, 37.632801],\n\t\t\t\t\t\t[-88.139973, 37.586451],\n\t\t\t\t\t\t[-88.133416, 37.574277],\n\t\t\t\t\t\t[-88.375332, 37.599563],\n\t\t\t\t\t\t[-88.373884, 37.776237],\n\t\t\t\t\t\t[-88.374395, 37.863935],\n\t\t\t\t\t\t[-88.374398, 37.870982],\n\t\t\t\t\t\t[-88.374593, 37.871139],\n\t\t\t\t\t\t[-88.374530, 37.874824],\n\t\t\t\t\t\t[-88.374406, 37.875066],\n\t\t\t\t\t\t[-88.374530, 37.907678],\n\t\t\t\t\t\t[-88.374520, 37.908432],\n\t\t\t\t\t\t[-88.357462, 37.909081],\n\t\t\t\t\t\t[-88.263310, 37.908632],\n\t\t\t\t\t\t[-88.071449, 37.895813],\n\t\t\t\t\t\t[-88.049453, 37.845187],\n\t\t\t\t\t\t[-88.027789, 37.828298],\n\t\t\t\t\t\t[-88.028030, 37.799224],\n\t\t\t\t\t\t[-88.039000, 37.775454]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17067\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"067\",\n\t\t\t\t\"NAME\": \"Hancock\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 793.726000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.501435, 40.248874],\n\t\t\t\t\t\t[-91.489868, 40.286048],\n\t\t\t\t\t\t[-91.462140, 40.342414],\n\t\t\t\t\t\t[-91.444833, 40.363170],\n\t\t\t\t\t\t[-91.419422, 40.378264],\n\t\t\t\t\t\t[-91.388360, 40.384929],\n\t\t\t\t\t\t[-91.375746, 40.391879],\n\t\t\t\t\t\t[-91.372554, 40.401200],\n\t\t\t\t\t\t[-91.363910, 40.490122],\n\t\t\t\t\t\t[-91.364211, 40.500043],\n\t\t\t\t\t\t[-91.369059, 40.512532],\n\t\t\t\t\t\t[-91.384531, 40.530948],\n\t\t\t\t\t\t[-91.404125, 40.539127],\n\t\t\t\t\t\t[-91.406851, 40.547557],\n\t\t\t\t\t\t[-91.405241, 40.554641],\n\t\t\t\t\t\t[-91.359873, 40.601805],\n\t\t\t\t\t\t[-91.348733, 40.609695],\n\t\t\t\t\t\t[-91.339719, 40.613488],\n\t\t\t\t\t\t[-91.306524, 40.626231],\n\t\t\t\t\t\t[-91.253074, 40.637962],\n\t\t\t\t\t\t[-91.218437, 40.638437],\n\t\t\t\t\t\t[-91.197906, 40.636107],\n\t\t\t\t\t\t[-91.186980, 40.637297],\n\t\t\t\t\t\t[-91.185415, 40.638052],\n\t\t\t\t\t\t[-90.913894, 40.637748],\n\t\t\t\t\t\t[-90.904216, 40.639201],\n\t\t\t\t\t\t[-90.909756, 40.284394],\n\t\t\t\t\t\t[-90.911969, 40.193088],\n\t\t\t\t\t\t[-91.258828, 40.197299],\n\t\t\t\t\t\t[-91.510332, 40.201142],\n\t\t\t\t\t\t[-91.505968, 40.234305],\n\t\t\t\t\t\t[-91.501435, 40.248874]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18061\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"061\",\n\t\t\t\t\"NAME\": \"Harrison\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 484.516000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.899550, 38.180343],\n\t\t\t\t\t\t[-85.908764, 38.161169],\n\t\t\t\t\t\t[-85.909464, 38.140070],\n\t\t\t\t\t\t[-85.905164, 38.111070],\n\t\t\t\t\t\t[-85.904564, 38.100270],\n\t\t\t\t\t\t[-85.906163, 38.086170],\n\t\t\t\t\t\t[-85.911607, 38.066890],\n\t\t\t\t\t\t[-85.922395, 38.028679],\n\t\t\t\t\t\t[-85.930235, 38.018311],\n\t\t\t\t\t\t[-85.941403, 38.009831],\n\t\t\t\t\t\t[-85.947952, 38.007083],\n\t\t\t\t\t\t[-85.951467, 38.005608],\n\t\t\t\t\t\t[-85.998609, 37.997775],\n\t\t\t\t\t\t[-86.029509, 37.992640],\n\t\t\t\t\t\t[-86.172186, 38.009920],\n\t\t\t\t\t\t[-86.178983, 38.011308],\n\t\t\t\t\t\t[-86.220371, 38.027922],\n\t\t\t\t\t\t[-86.266891, 38.057125],\n\t\t\t\t\t\t[-86.273584, 38.067443],\n\t\t\t\t\t\t[-86.278720, 38.089303],\n\t\t\t\t\t\t[-86.278034, 38.102426],\n\t\t\t\t\t\t[-86.271223, 38.130112],\n\t\t\t\t\t\t[-86.283964, 38.143185],\n\t\t\t\t\t\t[-86.309727, 38.144393],\n\t\t\t\t\t\t[-86.314292, 38.142610],\n\t\t\t\t\t\t[-86.255045, 38.422685],\n\t\t\t\t\t\t[-86.032817, 38.417898],\n\t\t\t\t\t\t[-86.032559, 38.330660],\n\t\t\t\t\t\t[-85.899550, 38.180343]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18073\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"073\",\n\t\t\t\t\"NAME\": \"Jasper\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 559.625000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.218862, 41.242027],\n\t\t\t\t\t\t[-87.131653, 41.286155],\n\t\t\t\t\t\t[-86.968125, 41.219658],\n\t\t\t\t\t\t[-86.930079, 41.236798],\n\t\t\t\t\t\t[-86.929646, 41.229711],\n\t\t\t\t\t\t[-86.930170, 41.172318],\n\t\t\t\t\t\t[-86.930314, 41.170899],\n\t\t\t\t\t\t[-86.930759, 40.912418],\n\t\t\t\t\t\t[-86.986438, 40.837921],\n\t\t\t\t\t\t[-87.099793, 40.837607],\n\t\t\t\t\t\t[-87.098390, 40.736541],\n\t\t\t\t\t\t[-87.267300, 40.736582],\n\t\t\t\t\t\t[-87.275882, 41.218595],\n\t\t\t\t\t\t[-87.226372, 41.235507],\n\t\t\t\t\t\t[-87.218862, 41.242027]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18081\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"081\",\n\t\t\t\t\"NAME\": \"Johnson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 320.427000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.952523, 39.609150],\n\t\t\t\t\t\t[-85.950800, 39.495220],\n\t\t\t\t\t\t[-85.951220, 39.436053],\n\t\t\t\t\t\t[-85.952545, 39.435921],\n\t\t\t\t\t\t[-85.953220, 39.383520],\n\t\t\t\t\t\t[-85.952005, 39.347373],\n\t\t\t\t\t\t[-86.081531, 39.344446],\n\t\t\t\t\t\t[-86.085601, 39.344189],\n\t\t\t\t\t\t[-86.251684, 39.341672],\n\t\t\t\t\t\t[-86.251310, 39.430595],\n\t\t\t\t\t\t[-86.249885, 39.633645],\n\t\t\t\t\t\t[-86.242924, 39.633744],\n\t\t\t\t\t\t[-86.044705, 39.637219],\n\t\t\t\t\t\t[-85.952080, 39.638345],\n\t\t\t\t\t\t[-85.952523, 39.609150]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18083\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"083\",\n\t\t\t\t\"NAME\": \"Knox\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 516.031000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.528194, 38.851691],\n\t\t\t\t\t\t[-87.532064, 38.852503],\n\t\t\t\t\t\t[-87.537248, 38.853592],\n\t\t\t\t\t\t[-87.550515, 38.859560],\n\t\t\t\t\t\t[-87.553384, 38.863344],\n\t\t\t\t\t\t[-87.540804, 38.896385],\n\t\t\t\t\t\t[-87.528108, 38.908027],\n\t\t\t\t\t\t[-87.241027, 38.907874],\n\t\t\t\t\t\t[-87.098771, 38.903974],\n\t\t\t\t\t\t[-87.192243, 38.814688],\n\t\t\t\t\t\t[-87.241463, 38.817476],\n\t\t\t\t\t\t[-87.279333, 38.693314],\n\t\t\t\t\t\t[-87.242097, 38.544930],\n\t\t\t\t\t\t[-87.462892, 38.533519],\n\t\t\t\t\t\t[-87.599317, 38.450721],\n\t\t\t\t\t\t[-87.740001, 38.415698],\n\t\t\t\t\t\t[-87.656144, 38.521668],\n\t\t\t\t\t\t[-87.669232, 38.541742],\n\t\t\t\t\t\t[-87.670071, 38.545237],\n\t\t\t\t\t\t[-87.651529, 38.568166],\n\t\t\t\t\t\t[-87.627345, 38.607237],\n\t\t\t\t\t\t[-87.620120, 38.639489],\n\t\t\t\t\t\t[-87.600180, 38.662462],\n\t\t\t\t\t\t[-87.593678, 38.667402],\n\t\t\t\t\t\t[-87.579397, 38.672475],\n\t\t\t\t\t\t[-87.540052, 38.679143],\n\t\t\t\t\t\t[-87.531231, 38.684036],\n\t\t\t\t\t\t[-87.519609, 38.697198],\n\t\t\t\t\t\t[-87.498515, 38.758983],\n\t\t\t\t\t\t[-87.495211, 38.783060],\n\t\t\t\t\t\t[-87.525893, 38.848795],\n\t\t\t\t\t\t[-87.528194, 38.851691]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18089\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"089\",\n\t\t\t\t\"NAME\": \"Lake\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 498.961000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.526768, 41.298177],\n\t\t\t\t\t\t[-87.525623, 41.453619],\n\t\t\t\t\t\t[-87.525671, 41.470115],\n\t\t\t\t\t\t[-87.525669, 41.470283],\n\t\t\t\t\t\t[-87.524641, 41.563335],\n\t\t\t\t\t\t[-87.524642, 41.622535],\n\t\t\t\t\t\t[-87.524742, 41.632435],\n\t\t\t\t\t\t[-87.524642, 41.634935],\n\t\t\t\t\t\t[-87.524844, 41.691635],\n\t\t\t\t\t\t[-87.524944, 41.702635],\n\t\t\t\t\t\t[-87.524044, 41.708335],\n\t\t\t\t\t\t[-87.520544, 41.709935],\n\t\t\t\t\t\t[-87.515243, 41.704235],\n\t\t\t\t\t\t[-87.511043, 41.696535],\n\t\t\t\t\t\t[-87.505343, 41.691535],\n\t\t\t\t\t\t[-87.470742, 41.672835],\n\t\t\t\t\t\t[-87.463142, 41.675535],\n\t\t\t\t\t\t[-87.453041, 41.673035],\n\t\t\t\t\t\t[-87.446113, 41.669340],\n\t\t\t\t\t\t[-87.441987, 41.671905],\n\t\t\t\t\t\t[-87.438530, 41.670679],\n\t\t\t\t\t\t[-87.437191, 41.669006],\n\t\t\t\t\t\t[-87.434849, 41.666887],\n\t\t\t\t\t\t[-87.432953, 41.665102],\n\t\t\t\t\t\t[-87.432396, 41.660530],\n\t\t\t\t\t\t[-87.438941, 41.654335],\n\t\t\t\t\t\t[-87.429840, 41.646035],\n\t\t\t\t\t\t[-87.423440, 41.642835],\n\t\t\t\t\t\t[-87.394539, 41.637235],\n\t\t\t\t\t\t[-87.365439, 41.629536],\n\t\t\t\t\t\t[-87.324338, 41.623036],\n\t\t\t\t\t\t[-87.287637, 41.622236],\n\t\t\t\t\t\t[-87.278437, 41.619736],\n\t\t\t\t\t\t[-87.261536, 41.620336],\n\t\t\t\t\t\t[-87.222644, 41.624161],\n\t\t\t\t\t\t[-87.218862, 41.242027],\n\t\t\t\t\t\t[-87.226372, 41.235507],\n\t\t\t\t\t\t[-87.275882, 41.218595],\n\t\t\t\t\t\t[-87.414421, 41.162248],\n\t\t\t\t\t\t[-87.526570, 41.166097],\n\t\t\t\t\t\t[-87.526768, 41.298052],\n\t\t\t\t\t\t[-87.526768, 41.298177]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18107\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"107\",\n\t\t\t\t\"NAME\": \"Montgomery\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 504.613000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.091006, 39.953009],\n\t\t\t\t\t\t[-87.090022, 39.953571],\n\t\t\t\t\t\t[-87.091957, 40.171253],\n\t\t\t\t\t\t[-87.092563, 40.214806],\n\t\t\t\t\t\t[-86.695637, 40.214367],\n\t\t\t\t\t\t[-86.695804, 40.178657],\n\t\t\t\t\t\t[-86.695071, 39.922770],\n\t\t\t\t\t\t[-86.695127, 39.864845],\n\t\t\t\t\t\t[-87.009477, 39.866705],\n\t\t\t\t\t\t[-87.091542, 39.867265],\n\t\t\t\t\t\t[-87.091006, 39.953009]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20121\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"121\",\n\t\t\t\t\"NAME\": \"Miami\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 575.661000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.609509, 38.738102],\n\t\t\t\t\t\t[-94.611602, 38.635384],\n\t\t\t\t\t\t[-94.611858, 38.620485],\n\t\t\t\t\t\t[-94.611908, 38.609272],\n\t\t\t\t\t\t[-94.611887, 38.580139],\n\t\t\t\t\t\t[-94.611902, 38.580110],\n\t\t\t\t\t\t[-94.612176, 38.576546],\n\t\t\t\t\t\t[-94.612157, 38.549817],\n\t\t\t\t\t\t[-94.612272, 38.547917],\n\t\t\t\t\t\t[-94.612644, 38.491644],\n\t\t\t\t\t\t[-94.612726, 38.484367],\n\t\t\t\t\t\t[-94.612696, 38.483154],\n\t\t\t\t\t\t[-94.612865, 38.477602],\n\t\t\t\t\t\t[-94.612866, 38.477571],\n\t\t\t\t\t\t[-94.613365, 38.403422],\n\t\t\t\t\t\t[-94.613265, 38.392426],\n\t\t\t\t\t\t[-94.613275, 38.388718],\n\t\t\t\t\t\t[-95.065831, 38.389945],\n\t\t\t\t\t\t[-95.056412, 38.738587],\n\t\t\t\t\t\t[-94.609509, 38.738102]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20129\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"129\",\n\t\t\t\t\"NAME\": \"Morton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 729.731000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-101.555260, 36.995414],\n\t\t\t\t\t\t[-101.600396, 36.995153],\n\t\t\t\t\t\t[-101.601593, 36.995095],\n\t\t\t\t\t\t[-101.902440, 36.993702],\n\t\t\t\t\t\t[-102.000447, 36.993249],\n\t\t\t\t\t\t[-102.000447, 36.993272],\n\t\t\t\t\t\t[-102.028204, 36.993125],\n\t\t\t\t\t\t[-102.028207, 36.993125],\n\t\t\t\t\t\t[-102.042240, 36.993083],\n\t\t\t\t\t\t[-102.041952, 37.024742],\n\t\t\t\t\t\t[-102.041950, 37.030805],\n\t\t\t\t\t\t[-102.041921, 37.032178],\n\t\t\t\t\t\t[-102.041749, 37.034397],\n\t\t\t\t\t\t[-102.041920, 37.035083],\n\t\t\t\t\t\t[-102.041983, 37.106551],\n\t\t\t\t\t\t[-102.041809, 37.111973],\n\t\t\t\t\t\t[-102.042092, 37.125021],\n\t\t\t\t\t\t[-102.042135, 37.125021],\n\t\t\t\t\t\t[-102.042002, 37.141744],\n\t\t\t\t\t\t[-102.041963, 37.258164],\n\t\t\t\t\t\t[-102.041664, 37.297650],\n\t\t\t\t\t\t[-102.041817, 37.309490],\n\t\t\t\t\t\t[-102.041974, 37.352613],\n\t\t\t\t\t\t[-102.042089, 37.352819],\n\t\t\t\t\t\t[-102.041826, 37.389191],\n\t\t\t\t\t\t[-101.556606, 37.388485],\n\t\t\t\t\t\t[-101.555260, 36.995414]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20137\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"137\",\n\t\t\t\t\"NAME\": \"Norton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 878.134000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.177795, 40.001593],\n\t\t\t\t\t\t[-99.990926, 40.001503],\n\t\t\t\t\t\t[-99.986611, 40.001550],\n\t\t\t\t\t\t[-99.948167, 40.001813],\n\t\t\t\t\t\t[-99.944417, 40.001584],\n\t\t\t\t\t\t[-99.930433, 40.001516],\n\t\t\t\t\t\t[-99.906658, 40.001512],\n\t\t\t\t\t\t[-99.813401, 40.001400],\n\t\t\t\t\t\t[-99.775640, 40.001647],\n\t\t\t\t\t\t[-99.772121, 40.001804],\n\t\t\t\t\t\t[-99.764214, 40.001551],\n\t\t\t\t\t\t[-99.756835, 40.001342],\n\t\t\t\t\t\t[-99.746628, 40.001820],\n\t\t\t\t\t\t[-99.731959, 40.001827],\n\t\t\t\t\t\t[-99.719639, 40.001808],\n\t\t\t\t\t\t[-99.628346, 40.001866],\n\t\t\t\t\t\t[-99.628255, 40.001866],\n\t\t\t\t\t\t[-99.625980, 40.001865],\n\t\t\t\t\t\t[-99.625324, 40.001866],\n\t\t\t\t\t\t[-99.627953, 39.567437],\n\t\t\t\t\t\t[-100.161667, 39.567277],\n\t\t\t\t\t\t[-100.180351, 39.566890],\n\t\t\t\t\t\t[-100.178276, 39.998801],\n\t\t\t\t\t\t[-100.177795, 40.001593]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20147\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"147\",\n\t\t\t\t\"NAME\": \"Phillips\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 885.877000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.625324, 40.001866],\n\t\t\t\t\t\t[-99.501792, 40.002026],\n\t\t\t\t\t\t[-99.498999, 40.001957],\n\t\t\t\t\t\t[-99.497660, 40.001912],\n\t\t\t\t\t\t[-99.493465, 40.001937],\n\t\t\t\t\t\t[-99.480728, 40.001942],\n\t\t\t\t\t\t[-99.412645, 40.001868],\n\t\t\t\t\t\t[-99.403389, 40.001969],\n\t\t\t\t\t\t[-99.290703, 40.001949],\n\t\t\t\t\t\t[-99.286656, 40.002017],\n\t\t\t\t\t\t[-99.282967, 40.001879],\n\t\t\t\t\t\t[-99.254012, 40.002074],\n\t\t\t\t\t\t[-99.250370, 40.001957],\n\t\t\t\t\t\t[-99.216376, 40.002016],\n\t\t\t\t\t\t[-99.197592, 40.002033],\n\t\t\t\t\t\t[-99.188905, 40.002023],\n\t\t\t\t\t\t[-99.186962, 40.001977],\n\t\t\t\t\t\t[-99.179133, 40.001977],\n\t\t\t\t\t\t[-99.178965, 40.001977],\n\t\t\t\t\t\t[-99.169816, 40.001925],\n\t\t\t\t\t\t[-99.123033, 40.002165],\n\t\t\t\t\t\t[-99.113510, 40.002193],\n\t\t\t\t\t\t[-99.085597, 40.002133],\n\t\t\t\t\t\t[-99.067022, 40.002170],\n\t\t\t\t\t\t[-99.066203, 39.568093],\n\t\t\t\t\t\t[-99.602255, 39.567328],\n\t\t\t\t\t\t[-99.627953, 39.567437],\n\t\t\t\t\t\t[-99.625324, 40.001866]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20153\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"153\",\n\t\t\t\t\"NAME\": \"Rawlins\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1069.416000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.758830, 40.002302],\n\t\t\t\t\t\t[-100.752183, 40.002128],\n\t\t\t\t\t\t[-100.738826, 40.002228],\n\t\t\t\t\t\t[-100.740873, 39.568043],\n\t\t\t\t\t\t[-101.389068, 39.568369],\n\t\t\t\t\t\t[-101.413913, 39.568361],\n\t\t\t\t\t\t[-101.411240, 39.999997],\n\t\t\t\t\t\t[-101.411043, 40.002365],\n\t\t\t\t\t\t[-101.409953, 40.002354],\n\t\t\t\t\t\t[-101.374326, 40.002521],\n\t\t\t\t\t\t[-101.342859, 40.002580],\n\t\t\t\t\t\t[-101.325514, 40.002687],\n\t\t\t\t\t\t[-101.324036, 40.002696],\n\t\t\t\t\t\t[-101.293991, 40.002559],\n\t\t\t\t\t\t[-101.286555, 40.002559],\n\t\t\t\t\t\t[-101.248673, 40.002543],\n\t\t\t\t\t\t[-101.215033, 40.002555],\n\t\t\t\t\t\t[-101.192219, 40.002491],\n\t\t\t\t\t\t[-101.178805, 40.002468],\n\t\t\t\t\t\t[-101.168704, 40.002547],\n\t\t\t\t\t\t[-101.130907, 40.002427],\n\t\t\t\t\t\t[-101.060317, 40.002307],\n\t\t\t\t\t\t[-101.027686, 40.002256],\n\t\t\t\t\t\t[-100.937427, 40.002145],\n\t\t\t\t\t\t[-100.758830, 40.002302]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20161\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"161\",\n\t\t\t\t\"NAME\": \"Riley\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 609.771000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.755786, 39.088006],\n\t\t\t\t\t\t[-96.851111, 39.088386],\n\t\t\t\t\t\t[-96.850991, 39.101307],\n\t\t\t\t\t\t[-96.849879, 39.219012],\n\t\t\t\t\t\t[-96.961387, 39.220073],\n\t\t\t\t\t\t[-96.958859, 39.566400],\n\t\t\t\t\t\t[-96.806544, 39.566423],\n\t\t\t\t\t\t[-96.581764, 39.566333],\n\t\t\t\t\t\t[-96.726865, 39.404012],\n\t\t\t\t\t\t[-96.638605, 39.292827],\n\t\t\t\t\t\t[-96.518329, 39.203877],\n\t\t\t\t\t\t[-96.554012, 39.178532],\n\t\t\t\t\t\t[-96.388884, 39.172724],\n\t\t\t\t\t\t[-96.390796, 39.043257],\n\t\t\t\t\t\t[-96.501174, 39.043666],\n\t\t\t\t\t\t[-96.501181, 39.072782],\n\t\t\t\t\t\t[-96.755786, 39.088006]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20175\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"175\",\n\t\t\t\t\"NAME\": \"Seward\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 639.497000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.633327, 36.999936],\n\t\t\t\t\t\t[-100.675552, 36.999688],\n\t\t\t\t\t\t[-100.756894, 36.999357],\n\t\t\t\t\t\t[-100.765484, 36.999177],\n\t\t\t\t\t\t[-100.806116, 36.999091],\n\t\t\t\t\t\t[-100.814277, 36.999085],\n\t\t\t\t\t\t[-100.855634, 36.998626],\n\t\t\t\t\t\t[-100.891660, 36.998604],\n\t\t\t\t\t\t[-100.904274, 36.998745],\n\t\t\t\t\t\t[-100.904588, 36.998561],\n\t\t\t\t\t\t[-100.945469, 36.998153],\n\t\t\t\t\t\t[-100.945566, 36.998152],\n\t\t\t\t\t\t[-100.996502, 36.998044],\n\t\t\t\t\t\t[-101.012641, 36.998176],\n\t\t\t\t\t\t[-101.053589, 36.997967],\n\t\t\t\t\t\t[-101.066742, 36.997921],\n\t\t\t\t\t\t[-101.066457, 36.998493],\n\t\t\t\t\t\t[-101.067904, 37.387779],\n\t\t\t\t\t\t[-100.652728, 37.387627],\n\t\t\t\t\t\t[-100.633831, 37.387577],\n\t\t\t\t\t\t[-100.633323, 36.999936],\n\t\t\t\t\t\t[-100.633327, 36.999936]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22065\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"065\",\n\t\t\t\t\"NAME\": \"Madison\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 624.437000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.090611, 32.562705],\n\t\t\t\t\t\t[-91.089436, 32.553306],\n\t\t\t\t\t\t[-91.093741, 32.549128],\n\t\t\t\t\t\t[-91.097878, 32.544752],\n\t\t\t\t\t\t[-91.116708, 32.500139],\n\t\t\t\t\t\t[-91.116008, 32.483140],\n\t\t\t\t\t\t[-91.108808, 32.472040],\n\t\t\t\t\t\t[-91.095308, 32.458741],\n\t\t\t\t\t\t[-91.070207, 32.445141],\n\t\t\t\t\t\t[-91.052907, 32.438442],\n\t\t\t\t\t\t[-91.029606, 32.433542],\n\t\t\t\t\t\t[-90.994080, 32.403862],\n\t\t\t\t\t\t[-91.004506, 32.368144],\n\t\t\t\t\t\t[-91.003506, 32.362145],\n\t\t\t\t\t\t[-91.000106, 32.357695],\n\t\t\t\t\t\t[-90.986672, 32.351760],\n\t\t\t\t\t\t[-90.912363, 32.339454],\n\t\t\t\t\t\t[-90.901511, 32.337864],\n\t\t\t\t\t\t[-90.898588, 32.329094],\n\t\t\t\t\t\t[-90.905173, 32.315497],\n\t\t\t\t\t\t[-91.004557, 32.215381],\n\t\t\t\t\t\t[-91.006306, 32.224150],\n\t\t\t\t\t\t[-91.021507, 32.236149],\n\t\t\t\t\t\t[-91.039007, 32.242349],\n\t\t\t\t\t\t[-91.046507, 32.241149],\n\t\t\t\t\t\t[-91.122602, 32.216929],\n\t\t\t\t\t\t[-91.133780, 32.249339],\n\t\t\t\t\t\t[-91.320742, 32.202455],\n\t\t\t\t\t\t[-91.492718, 32.203349],\n\t\t\t\t\t\t[-91.526719, 32.300675],\n\t\t\t\t\t\t[-91.476739, 32.405808],\n\t\t\t\t\t\t[-91.457643, 32.537807],\n\t\t\t\t\t\t[-91.133713, 32.537912],\n\t\t\t\t\t\t[-91.090611, 32.562705]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US09001\",\n\t\t\t\t\"STATE\": \"09\",\n\t\t\t\t\"COUNTY\": \"001\",\n\t\t\t\t\"NAME\": \"Fairfield\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 624.890000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-73.517473, 41.666646],\n\t\t\t\t\t\t[-73.516019, 41.665964],\n\t\t\t\t\t\t[-73.514784, 41.665886],\n\t\t\t\t\t\t[-73.511149, 41.666488],\n\t\t\t\t\t\t[-73.510379, 41.666498],\n\t\t\t\t\t\t[-73.506923, 41.665802],\n\t\t\t\t\t\t[-73.441466, 41.491294],\n\t\t\t\t\t\t[-73.331569, 41.472677],\n\t\t\t\t\t\t[-73.326774, 41.469515],\n\t\t\t\t\t\t[-73.312873, 41.467415],\n\t\t\t\t\t\t[-73.310473, 41.468815],\n\t\t\t\t\t\t[-73.207688, 41.420544],\n\t\t\t\t\t\t[-73.184857, 41.406296],\n\t\t\t\t\t\t[-73.187957, 41.397296],\n\t\t\t\t\t\t[-73.183269, 41.391711],\n\t\t\t\t\t\t[-73.173356, 41.383596],\n\t\t\t\t\t\t[-73.161253, 41.383853],\n\t\t\t\t\t\t[-73.147555, 41.367696],\n\t\t\t\t\t\t[-73.136054, 41.351196],\n\t\t\t\t\t\t[-73.115754, 41.332196],\n\t\t\t\t\t\t[-73.090938, 41.319256],\n\t\t\t\t\t\t[-73.086650, 41.314495],\n\t\t\t\t\t\t[-73.078952, 41.311596],\n\t\t\t\t\t\t[-73.077652, 41.307696],\n\t\t\t\t\t\t[-73.075352, 41.305596],\n\t\t\t\t\t\t[-73.067851, 41.300996],\n\t\t\t\t\t\t[-72.985095, 41.234358],\n\t\t\t\t\t\t[-72.986247, 41.233497],\n\t\t\t\t\t\t[-72.997948, 41.222697],\n\t\t\t\t\t\t[-73.003639, 41.215287],\n\t\t\t\t\t\t[-73.007548, 41.210197],\n\t\t\t\t\t\t[-73.013465, 41.205479],\n\t\t\t\t\t\t[-73.013988, 41.205062],\n\t\t\t\t\t\t[-73.014948, 41.204297],\n\t\t\t\t\t\t[-73.020149, 41.204097],\n\t\t\t\t\t\t[-73.020167, 41.204237],\n\t\t\t\t\t\t[-73.020195, 41.204446],\n\t\t\t\t\t\t[-73.020210, 41.204568],\n\t\t\t\t\t\t[-73.020254, 41.204906],\n\t\t\t\t\t\t[-73.020449, 41.206397],\n\t\t\t\t\t\t[-73.022549, 41.207197],\n\t\t\t\t\t\t[-73.024783, 41.207435],\n\t\t\t\t\t\t[-73.045602, 41.209658],\n\t\t\t\t\t\t[-73.050650, 41.210197],\n\t\t\t\t\t\t[-73.054947, 41.208468],\n\t\t\t\t\t\t[-73.059350, 41.206697],\n\t\t\t\t\t\t[-73.077610, 41.195176],\n\t\t\t\t\t\t[-73.079450, 41.194015],\n\t\t\t\t\t\t[-73.091220, 41.184153],\n\t\t\t\t\t\t[-73.092000, 41.183500],\n\t\t\t\t\t\t[-73.092147, 41.183377],\n\t\t\t\t\t\t[-73.104328, 41.173170],\n\t\t\t\t\t\t[-73.105483, 41.172203],\n\t\t\t\t\t\t[-73.105493, 41.172194],\n\t\t\t\t\t\t[-73.107987, 41.168738],\n\t\t\t\t\t\t[-73.110352, 41.159697],\n\t\t\t\t\t\t[-73.109952, 41.156997],\n\t\t\t\t\t\t[-73.108352, 41.153718],\n\t\t\t\t\t\t[-73.111052, 41.150797],\n\t\t\t\t\t\t[-73.130253, 41.146797],\n\t\t\t\t\t\t[-73.164370, 41.158565],\n\t\t\t\t\t\t[-73.170074, 41.160532],\n\t\t\t\t\t\t[-73.170701, 41.164945],\n\t\t\t\t\t\t[-73.177774, 41.166697],\n\t\t\t\t\t\t[-73.202656, 41.158096],\n\t\t\t\t\t\t[-73.228295, 41.142602],\n\t\t\t\t\t\t[-73.235058, 41.143996],\n\t\t\t\t\t\t[-73.247958, 41.126396],\n\t\t\t\t\t\t[-73.262358, 41.117496],\n\t\t\t\t\t\t[-73.286759, 41.127896],\n\t\t\t\t\t\t[-73.296359, 41.125696],\n\t\t\t\t\t\t[-73.311860, 41.116296],\n\t\t\t\t\t\t[-73.330660, 41.109996],\n\t\t\t\t\t\t[-73.372296, 41.104020],\n\t\t\t\t\t\t[-73.392162, 41.087696],\n\t\t\t\t\t\t[-73.400154, 41.086299],\n\t\t\t\t\t\t[-73.413670, 41.073258],\n\t\t\t\t\t\t[-73.435063, 41.056696],\n\t\t\t\t\t\t[-73.450364, 41.057096],\n\t\t\t\t\t\t[-73.468239, 41.051347],\n\t\t\t\t\t\t[-73.477364, 41.035997],\n\t\t\t\t\t\t[-73.493327, 41.048173],\n\t\t\t\t\t\t[-73.516903, 41.038738],\n\t\t\t\t\t\t[-73.516766, 41.029497],\n\t\t\t\t\t\t[-73.522666, 41.019297],\n\t\t\t\t\t\t[-73.528866, 41.016397],\n\t\t\t\t\t\t[-73.531169, 41.021919],\n\t\t\t\t\t\t[-73.530189, 41.028776],\n\t\t\t\t\t\t[-73.532786, 41.031670],\n\t\t\t\t\t\t[-73.535338, 41.031920],\n\t\t\t\t\t\t[-73.551494, 41.024336],\n\t\t\t\t\t\t[-73.561968, 41.016797],\n\t\t\t\t\t\t[-73.567668, 41.010897],\n\t\t\t\t\t\t[-73.570068, 41.001597],\n\t\t\t\t\t\t[-73.583968, 41.000897],\n\t\t\t\t\t\t[-73.584988, 41.010537],\n\t\t\t\t\t\t[-73.595699, 41.015995],\n\t\t\t\t\t\t[-73.603952, 41.015054],\n\t\t\t\t\t\t[-73.643478, 41.002171],\n\t\t\t\t\t\t[-73.651175, 40.995229],\n\t\t\t\t\t\t[-73.657336, 40.985171],\n\t\t\t\t\t\t[-73.654671, 41.011697],\n\t\t\t\t\t\t[-73.655371, 41.012797],\n\t\t\t\t\t\t[-73.670472, 41.030097],\n\t\t\t\t\t\t[-73.679973, 41.041797],\n\t\t\t\t\t\t[-73.687173, 41.050697],\n\t\t\t\t\t\t[-73.694273, 41.059296],\n\t\t\t\t\t\t[-73.727775, 41.100696],\n\t\t\t\t\t\t[-73.639672, 41.141495],\n\t\t\t\t\t\t[-73.632153, 41.144921],\n\t\t\t\t\t\t[-73.614407, 41.153001],\n\t\t\t\t\t\t[-73.514617, 41.198434],\n\t\t\t\t\t\t[-73.509487, 41.200814],\n\t\t\t\t\t\t[-73.482709, 41.212760],\n\t\t\t\t\t\t[-73.550961, 41.295422],\n\t\t\t\t\t\t[-73.544728, 41.366375],\n\t\t\t\t\t\t[-73.543641, 41.376778],\n\t\t\t\t\t\t[-73.537673, 41.433905],\n\t\t\t\t\t\t[-73.537469, 41.435890],\n\t\t\t\t\t\t[-73.536969, 41.441094],\n\t\t\t\t\t\t[-73.536067, 41.451331],\n\t\t\t\t\t\t[-73.535986, 41.453060],\n\t\t\t\t\t\t[-73.535885, 41.455236],\n\t\t\t\t\t\t[-73.535857, 41.455709],\n\t\t\t\t\t\t[-73.535769, 41.457159],\n\t\t\t\t\t\t[-73.534369, 41.475894],\n\t\t\t\t\t\t[-73.534269, 41.476394],\n\t\t\t\t\t\t[-73.534269, 41.476911],\n\t\t\t\t\t\t[-73.534150, 41.478060],\n\t\t\t\t\t\t[-73.534055, 41.478968],\n\t\t\t\t\t\t[-73.533969, 41.479693],\n\t\t\t\t\t\t[-73.530067, 41.527194],\n\t\t\t\t\t\t[-73.521457, 41.616429],\n\t\t\t\t\t\t[-73.517473, 41.666646]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05021\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"021\",\n\t\t\t\t\"NAME\": \"Clay\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 639.465000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.576180, 36.498446],\n\t\t\t\t\t\t[-90.576112, 36.498446],\n\t\t\t\t\t\t[-90.500160, 36.498399],\n\t\t\t\t\t\t[-90.495027, 36.498371],\n\t\t\t\t\t\t[-90.494575, 36.498368],\n\t\t\t\t\t\t[-90.339892, 36.498213],\n\t\t\t\t\t\t[-90.228943, 36.497771],\n\t\t\t\t\t\t[-90.220732, 36.497858],\n\t\t\t\t\t\t[-90.220702, 36.497858],\n\t\t\t\t\t\t[-90.217323, 36.497797],\n\t\t\t\t\t\t[-90.193943, 36.497823],\n\t\t\t\t\t\t[-90.152481, 36.497952],\n\t\t\t\t\t\t[-90.154409, 36.496832],\n\t\t\t\t\t\t[-90.156369, 36.487748],\n\t\t\t\t\t\t[-90.133993, 36.437906],\n\t\t\t\t\t\t[-90.072897, 36.393007],\n\t\t\t\t\t\t[-90.064514, 36.382085],\n\t\t\t\t\t\t[-90.063980, 36.303038],\n\t\t\t\t\t\t[-90.076301, 36.280708],\n\t\t\t\t\t\t[-90.083731, 36.272332],\n\t\t\t\t\t\t[-90.114922, 36.265595],\n\t\t\t\t\t\t[-90.198735, 36.201382],\n\t\t\t\t\t\t[-90.320960, 36.200575],\n\t\t\t\t\t\t[-90.319820, 36.259144],\n\t\t\t\t\t\t[-90.806615, 36.266865],\n\t\t\t\t\t\t[-90.751803, 36.279960],\n\t\t\t\t\t\t[-90.748637, 36.412764],\n\t\t\t\t\t\t[-90.784398, 36.498524],\n\t\t\t\t\t\t[-90.782454, 36.498523],\n\t\t\t\t\t\t[-90.765672, 36.498494],\n\t\t\t\t\t\t[-90.711226, 36.498318],\n\t\t\t\t\t\t[-90.693005, 36.498510],\n\t\t\t\t\t\t[-90.653246, 36.498488],\n\t\t\t\t\t\t[-90.648494, 36.498447],\n\t\t\t\t\t\t[-90.612554, 36.498559],\n\t\t\t\t\t\t[-90.605450, 36.498459],\n\t\t\t\t\t\t[-90.594300, 36.498459],\n\t\t\t\t\t\t[-90.585342, 36.498497],\n\t\t\t\t\t\t[-90.576180, 36.498446]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21119\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"119\",\n\t\t\t\t\"NAME\": \"Knott\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 351.518000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.732693, 37.271502],\n\t\t\t\t\t\t[-82.819373, 37.268671],\n\t\t\t\t\t\t[-82.979183, 37.172420],\n\t\t\t\t\t\t[-83.000142, 37.195710],\n\t\t\t\t\t\t[-83.127249, 37.268401],\n\t\t\t\t\t\t[-83.124348, 37.404973],\n\t\t\t\t\t\t[-83.134711, 37.457181],\n\t\t\t\t\t\t[-83.062266, 37.526231],\n\t\t\t\t\t\t[-82.948544, 37.503167],\n\t\t\t\t\t\t[-82.944205, 37.501434],\n\t\t\t\t\t\t[-82.945444, 37.497390],\n\t\t\t\t\t\t[-82.941667, 37.496323],\n\t\t\t\t\t\t[-82.941298, 37.489795],\n\t\t\t\t\t\t[-82.934353, 37.493991],\n\t\t\t\t\t\t[-82.925460, 37.486525],\n\t\t\t\t\t\t[-82.767605, 37.427777],\n\t\t\t\t\t\t[-82.752346, 37.308039],\n\t\t\t\t\t\t[-82.710805, 37.285323],\n\t\t\t\t\t\t[-82.718852, 37.280276],\n\t\t\t\t\t\t[-82.724557, 37.281035],\n\t\t\t\t\t\t[-82.732693, 37.271502]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21127\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"127\",\n\t\t\t\t\"NAME\": \"Lawrence\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 415.595000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.497300, 37.945507],\n\t\t\t\t\t\t[-82.497358, 37.945338],\n\t\t\t\t\t\t[-82.582085, 37.952314],\n\t\t\t\t\t\t[-82.612393, 37.879272],\n\t\t\t\t\t\t[-82.947936, 38.000431],\n\t\t\t\t\t\t[-82.989014, 37.963968],\n\t\t\t\t\t\t[-83.016058, 37.974221],\n\t\t\t\t\t\t[-83.022115, 38.007047],\n\t\t\t\t\t\t[-82.889059, 38.111587],\n\t\t\t\t\t\t[-82.924805, 38.175114],\n\t\t\t\t\t\t[-82.794206, 38.243772],\n\t\t\t\t\t\t[-82.604230, 38.247303],\n\t\t\t\t\t\t[-82.644739, 38.165487],\n\t\t\t\t\t\t[-82.636466, 38.137860],\n\t\t\t\t\t\t[-82.621164, 38.123239],\n\t\t\t\t\t\t[-82.602618, 38.118350],\n\t\t\t\t\t\t[-82.600127, 38.117389],\n\t\t\t\t\t\t[-82.547284, 38.061094],\n\t\t\t\t\t\t[-82.539139, 38.039093],\n\t\t\t\t\t\t[-82.519665, 38.008538],\n\t\t\t\t\t\t[-82.509812, 38.001249],\n\t\t\t\t\t\t[-82.487732, 37.998330],\n\t\t\t\t\t\t[-82.465473, 37.984780],\n\t\t\t\t\t\t[-82.464096, 37.982437],\n\t\t\t\t\t\t[-82.464987, 37.976859],\n\t\t\t\t\t\t[-82.497300, 37.945507]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21133\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"133\",\n\t\t\t\t\"NAME\": \"Letcher\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 337.914000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.565375, 37.196092],\n\t\t\t\t\t\t[-82.624878, 37.162932],\n\t\t\t\t\t\t[-82.721941, 37.105689],\n\t\t\t\t\t\t[-82.720597, 37.081833],\n\t\t\t\t\t\t[-82.722472, 37.045101],\n\t\t\t\t\t\t[-82.771795, 37.015716],\n\t\t\t\t\t\t[-82.777368, 37.015279],\n\t\t\t\t\t\t[-82.788897, 37.008160],\n\t\t\t\t\t\t[-82.789092, 37.007995],\n\t\t\t\t\t\t[-82.790462, 37.007263],\n\t\t\t\t\t\t[-82.790890, 37.006760],\n\t\t\t\t\t\t[-82.800531, 37.007944],\n\t\t\t\t\t\t[-82.815748, 37.007196],\n\t\t\t\t\t\t[-82.818006, 37.006161],\n\t\t\t\t\t\t[-82.830588, 37.000945],\n\t\t\t\t\t\t[-82.829125, 36.997541],\n\t\t\t\t\t\t[-82.830802, 36.993445],\n\t\t\t\t\t\t[-82.833843, 36.991973],\n\t\t\t\t\t\t[-82.836008, 36.988837],\n\t\t\t\t\t\t[-82.838549, 36.987027],\n\t\t\t\t\t\t[-82.840051, 36.987113],\n\t\t\t\t\t\t[-82.851397, 36.984497],\n\t\t\t\t\t\t[-82.852614, 36.984963],\n\t\t\t\t\t\t[-82.862926, 36.979975],\n\t\t\t\t\t\t[-82.864909, 36.979010],\n\t\t\t\t\t\t[-82.866019, 36.978272],\n\t\t\t\t\t\t[-82.866689, 36.978052],\n\t\t\t\t\t\t[-82.867535, 36.977518],\n\t\t\t\t\t\t[-82.868455, 36.976481],\n\t\t\t\t\t\t[-82.869183, 36.974183],\n\t\t\t\t\t\t[-82.939466, 37.015520],\n\t\t\t\t\t\t[-83.150402, 36.954163],\n\t\t\t\t\t\t[-83.122090, 37.000997],\n\t\t\t\t\t\t[-83.054626, 37.020000],\n\t\t\t\t\t\t[-83.058818, 37.124079],\n\t\t\t\t\t\t[-83.000142, 37.195710],\n\t\t\t\t\t\t[-82.979183, 37.172420],\n\t\t\t\t\t\t[-82.819373, 37.268671],\n\t\t\t\t\t\t[-82.732693, 37.271502],\n\t\t\t\t\t\t[-82.565375, 37.196092]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21141\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"141\",\n\t\t\t\t\"NAME\": \"Logan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 552.131000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.763295, 36.648907],\n\t\t\t\t\t\t[-86.813037, 36.647647],\n\t\t\t\t\t\t[-86.816186, 36.647722],\n\t\t\t\t\t\t[-86.818405, 36.647639],\n\t\t\t\t\t\t[-86.833155, 36.647210],\n\t\t\t\t\t\t[-86.854268, 36.646884],\n\t\t\t\t\t\t[-86.906023, 36.646302],\n\t\t\t\t\t\t[-86.906583, 36.646255],\n\t\t\t\t\t\t[-87.060843, 36.643412],\n\t\t\t\t\t\t[-87.053164, 37.061019],\n\t\t\t\t\t\t[-86.976399, 37.073588],\n\t\t\t\t\t\t[-86.941391, 37.068981],\n\t\t\t\t\t\t[-86.845350, 37.056513],\n\t\t\t\t\t\t[-86.674462, 36.999766],\n\t\t\t\t\t\t[-86.611586, 36.883057],\n\t\t\t\t\t\t[-86.690719, 36.844300],\n\t\t\t\t\t\t[-86.763295, 36.648907]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21149\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"149\",\n\t\t\t\t\"NAME\": \"McLean\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 252.474000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.038260, 37.560803],\n\t\t\t\t\t\t[-87.049376, 37.551860],\n\t\t\t\t\t\t[-87.103111, 37.480900],\n\t\t\t\t\t\t[-87.099803, 37.416042],\n\t\t\t\t\t\t[-87.295965, 37.391819],\n\t\t\t\t\t\t[-87.351893, 37.425655],\n\t\t\t\t\t\t[-87.375145, 37.569988],\n\t\t\t\t\t\t[-87.495331, 37.647547],\n\t\t\t\t\t\t[-87.472811, 37.664869],\n\t\t\t\t\t\t[-87.438436, 37.670931],\n\t\t\t\t\t\t[-87.420533, 37.670153],\n\t\t\t\t\t\t[-87.408547, 37.683563],\n\t\t\t\t\t\t[-87.261610, 37.622009],\n\t\t\t\t\t\t[-87.038260, 37.560803]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21155\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"155\",\n\t\t\t\t\"NAME\": \"Marion\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 343.008000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.073772, 37.413669],\n\t\t\t\t\t\t[-85.171440, 37.465081],\n\t\t\t\t\t\t[-85.246759, 37.420205],\n\t\t\t\t\t\t[-85.340446, 37.469512],\n\t\t\t\t\t\t[-85.466250, 37.465595],\n\t\t\t\t\t\t[-85.521290, 37.554343],\n\t\t\t\t\t\t[-85.450493, 37.685948],\n\t\t\t\t\t\t[-85.401784, 37.730658],\n\t\t\t\t\t\t[-85.373639, 37.673343],\n\t\t\t\t\t\t[-85.257298, 37.630903],\n\t\t\t\t\t\t[-85.030172, 37.631270],\n\t\t\t\t\t\t[-85.039674, 37.545232],\n\t\t\t\t\t\t[-85.073772, 37.413669]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US04015\",\n\t\t\t\t\"STATE\": \"04\",\n\t\t\t\t\"COUNTY\": \"015\",\n\t\t\t\t\"NAME\": \"Mohave\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 13311.084000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-114.050600, 37.000396],\n\t\t\t\t\t\t[-113.965907, 37.000025],\n\t\t\t\t\t\t[-113.965907, 36.999976],\n\t\t\t\t\t\t[-112.966471, 37.000219],\n\t\t\t\t\t\t[-112.899366, 37.000319],\n\t\t\t\t\t\t[-112.609787, 37.000753],\n\t\t\t\t\t\t[-112.558974, 37.000692],\n\t\t\t\t\t\t[-112.545094, 37.000734],\n\t\t\t\t\t\t[-112.540368, 37.000669],\n\t\t\t\t\t\t[-112.538593, 37.000674],\n\t\t\t\t\t\t[-112.660326, 36.539631],\n\t\t\t\t\t\t[-112.621855, 36.485017],\n\t\t\t\t\t\t[-112.645121, 36.457311],\n\t\t\t\t\t\t[-112.629727, 36.392322],\n\t\t\t\t\t\t[-112.681571, 36.341662],\n\t\t\t\t\t\t[-112.723991, 36.345992],\n\t\t\t\t\t\t[-112.792436, 36.285036],\n\t\t\t\t\t\t[-113.009038, 36.239040],\n\t\t\t\t\t\t[-113.137080, 36.166424],\n\t\t\t\t\t\t[-113.199230, 36.151389],\n\t\t\t\t\t\t[-113.231146, 36.089524],\n\t\t\t\t\t\t[-113.319971, 36.096769],\n\t\t\t\t\t\t[-113.354176, 36.040368],\n\t\t\t\t\t\t[-113.317122, 35.961385],\n\t\t\t\t\t\t[-113.310523, 35.864350],\n\t\t\t\t\t\t[-113.333922, 35.800736],\n\t\t\t\t\t\t[-113.334161, 35.528037],\n\t\t\t\t\t\t[-113.332713, 35.000110],\n\t\t\t\t\t\t[-113.333508, 34.317877],\n\t\t\t\t\t\t[-113.370507, 34.291968],\n\t\t\t\t\t\t[-113.539524, 34.306377],\n\t\t\t\t\t\t[-113.603079, 34.231049],\n\t\t\t\t\t\t[-114.031132, 34.259819],\n\t\t\t\t\t\t[-114.138282, 34.303230],\n\t\t\t\t\t\t[-114.176909, 34.349306],\n\t\t\t\t\t\t[-114.199482, 34.361373],\n\t\t\t\t\t\t[-114.264317, 34.401329],\n\t\t\t\t\t\t[-114.339627, 34.451435],\n\t\t\t\t\t\t[-114.452547, 34.653494],\n\t\t\t\t\t\t[-114.465607, 34.692260],\n\t\t\t\t\t\t[-114.552682, 34.766871],\n\t\t\t\t\t\t[-114.633051, 34.869971],\n\t\t\t\t\t\t[-114.635176, 34.875003],\n\t\t\t\t\t\t[-114.636725, 34.889107],\n\t\t\t\t\t\t[-114.630877, 34.907263],\n\t\t\t\t\t\t[-114.629015, 34.986148],\n\t\t\t\t\t\t[-114.629190, 34.991887],\n\t\t\t\t\t\t[-114.633013, 35.002085],\n\t\t\t\t\t\t[-114.633544, 35.015644],\n\t\t\t\t\t\t[-114.635469, 35.028266],\n\t\t\t\t\t\t[-114.621956, 35.094678],\n\t\t\t\t\t\t[-114.599120, 35.121050],\n\t\t\t\t\t\t[-114.584300, 35.124999],\n\t\t\t\t\t\t[-114.578524, 35.128750],\n\t\t\t\t\t\t[-114.572747, 35.138725],\n\t\t\t\t\t\t[-114.569569, 35.163053],\n\t\t\t\t\t\t[-114.569238, 35.183480],\n\t\t\t\t\t\t[-114.595931, 35.325234],\n\t\t\t\t\t\t[-114.604314, 35.353584],\n\t\t\t\t\t\t[-114.627137, 35.409504],\n\t\t\t\t\t\t[-114.652005, 35.429165],\n\t\t\t\t\t\t[-114.662125, 35.444241],\n\t\t\t\t\t\t[-114.677643, 35.489742],\n\t\t\t\t\t\t[-114.676733, 35.499063],\n\t\t\t\t\t\t[-114.674981, 35.510564],\n\t\t\t\t\t\t[-114.671147, 35.520641],\n\t\t\t\t\t\t[-114.653806, 35.599490],\n\t\t\t\t\t\t[-114.653406, 35.610789],\n\t\t\t\t\t\t[-114.657506, 35.618289],\n\t\t\t\t\t\t[-114.676707, 35.640989],\n\t\t\t\t\t\t[-114.689407, 35.651412],\n\t\t\t\t\t\t[-114.700308, 35.700387],\n\t\t\t\t\t\t[-114.707710, 35.811885],\n\t\t\t\t\t\t[-114.705611, 35.848884],\n\t\t\t\t\t\t[-114.704211, 35.851984],\n\t\t\t\t\t\t[-114.706130, 35.878712],\n\t\t\t\t\t\t[-114.731296, 35.945157],\n\t\t\t\t\t\t[-114.743576, 35.983721],\n\t\t\t\t\t\t[-114.755618, 36.087166],\n\t\t\t\t\t\t[-114.744857, 36.098693],\n\t\t\t\t\t\t[-114.736165, 36.104367],\n\t\t\t\t\t\t[-114.631716, 36.142306],\n\t\t\t\t\t\t[-114.572031, 36.151610],\n\t\t\t\t\t\t[-114.513256, 36.151217],\n\t\t\t\t\t\t[-114.381446, 36.141665],\n\t\t\t\t\t\t[-114.365835, 36.133722],\n\t\t\t\t\t\t[-114.328777, 36.105501],\n\t\t\t\t\t\t[-114.310857, 36.083787],\n\t\t\t\t\t\t[-114.307235, 36.076544],\n\t\t\t\t\t\t[-114.303614, 36.066456],\n\t\t\t\t\t\t[-114.292663, 36.051118],\n\t\t\t\t\t\t[-114.263146, 36.025937],\n\t\t\t\t\t\t[-114.252651, 36.020193],\n\t\t\t\t\t\t[-114.238799, 36.014561],\n\t\t\t\t\t\t[-114.233289, 36.014289],\n\t\t\t\t\t\t[-114.213690, 36.015613],\n\t\t\t\t\t\t[-114.154130, 36.023862],\n\t\t\t\t\t\t[-114.148774, 36.027310],\n\t\t\t\t\t\t[-114.138202, 36.041284],\n\t\t\t\t\t\t[-114.125796, 36.077531],\n\t\t\t\t\t\t[-114.120193, 36.102228],\n\t\t\t\t\t\t[-114.063021, 36.186942],\n\t\t\t\t\t\t[-114.060302, 36.189363],\n\t\t\t\t\t\t[-114.046838, 36.194069],\n\t\t\t\t\t\t[-114.047106, 36.250591],\n\t\t\t\t\t\t[-114.048515, 36.289598],\n\t\t\t\t\t\t[-114.046403, 36.371873],\n\t\t\t\t\t\t[-114.046488, 36.473449],\n\t\t\t\t\t\t[-114.050562, 36.656259],\n\t\t\t\t\t\t[-114.050578, 36.800173],\n\t\t\t\t\t\t[-114.050583, 36.843141],\n\t\t\t\t\t\t[-114.050600, 37.000396]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21163\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"163\",\n\t\t\t\t\"NAME\": \"Meade\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 305.423000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.151285, 37.798878],\n\t\t\t\t\t\t[-86.242777, 37.877002],\n\t\t\t\t\t\t[-86.490858, 38.045796],\n\t\t\t\t\t\t[-86.490853, 38.045796],\n\t\t\t\t\t\t[-86.466876, 38.046597],\n\t\t\t\t\t\t[-86.452192, 38.050490],\n\t\t\t\t\t\t[-86.438236, 38.060426],\n\t\t\t\t\t\t[-86.432789, 38.067171],\n\t\t\t\t\t\t[-86.430091, 38.078638],\n\t\t\t\t\t\t[-86.426508, 38.081784],\n\t\t\t\t\t\t[-86.398661, 38.106238],\n\t\t\t\t\t\t[-86.332567, 38.130131],\n\t\t\t\t\t\t[-86.326788, 38.134604],\n\t\t\t\t\t\t[-86.323453, 38.139032],\n\t\t\t\t\t\t[-86.314292, 38.142610],\n\t\t\t\t\t\t[-86.309727, 38.144393],\n\t\t\t\t\t\t[-86.283964, 38.143185],\n\t\t\t\t\t\t[-86.271223, 38.130112],\n\t\t\t\t\t\t[-86.278034, 38.102426],\n\t\t\t\t\t\t[-86.278720, 38.089303],\n\t\t\t\t\t\t[-86.273584, 38.067443],\n\t\t\t\t\t\t[-86.266891, 38.057125],\n\t\t\t\t\t\t[-86.220371, 38.027922],\n\t\t\t\t\t\t[-86.178983, 38.011308],\n\t\t\t\t\t\t[-86.172186, 38.009920],\n\t\t\t\t\t\t[-86.029509, 37.992640],\n\t\t\t\t\t\t[-85.998609, 37.997775],\n\t\t\t\t\t\t[-85.975948, 37.875793],\n\t\t\t\t\t\t[-86.007432, 37.818439],\n\t\t\t\t\t\t[-86.151285, 37.798878]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21177\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"177\",\n\t\t\t\t\"NAME\": \"Muhlenberg\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 467.079000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.099803, 37.416042],\n\t\t\t\t\t\t[-86.899268, 37.212313],\n\t\t\t\t\t\t[-86.893911, 37.088478],\n\t\t\t\t\t\t[-86.941391, 37.068981],\n\t\t\t\t\t\t[-86.976399, 37.073588],\n\t\t\t\t\t\t[-87.053164, 37.061019],\n\t\t\t\t\t\t[-87.250256, 37.040557],\n\t\t\t\t\t\t[-87.259371, 37.072401],\n\t\t\t\t\t\t[-87.333741, 37.157186],\n\t\t\t\t\t\t[-87.388826, 37.261395],\n\t\t\t\t\t\t[-87.295965, 37.391819],\n\t\t\t\t\t\t[-87.099803, 37.416042]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19051\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"051\",\n\t\t\t\t\"NAME\": \"Davis\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 502.188000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.179780, 40.600529],\n\t\t\t\t\t\t[-92.196162, 40.600069],\n\t\t\t\t\t\t[-92.201669, 40.599980],\n\t\t\t\t\t\t[-92.217603, 40.599832],\n\t\t\t\t\t\t[-92.236484, 40.599531],\n\t\t\t\t\t\t[-92.298754, 40.598469],\n\t\t\t\t\t\t[-92.331205, 40.597805],\n\t\t\t\t\t\t[-92.331445, 40.597714],\n\t\t\t\t\t\t[-92.350776, 40.597274],\n\t\t\t\t\t\t[-92.350807, 40.597273],\n\t\t\t\t\t\t[-92.379691, 40.596509],\n\t\t\t\t\t\t[-92.453745, 40.595288],\n\t\t\t\t\t\t[-92.461609, 40.595355],\n\t\t\t\t\t\t[-92.481692, 40.594941],\n\t\t\t\t\t\t[-92.482394, 40.594894],\n\t\t\t\t\t\t[-92.484588, 40.594924],\n\t\t\t\t\t\t[-92.580278, 40.592151],\n\t\t\t\t\t\t[-92.637898, 40.590853],\n\t\t\t\t\t\t[-92.639091, 40.898886],\n\t\t\t\t\t\t[-92.179072, 40.899720],\n\t\t\t\t\t\t[-92.178990, 40.898343],\n\t\t\t\t\t\t[-92.179780, 40.600529]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19065\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"065\",\n\t\t\t\t\"NAME\": \"Fayette\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 730.811000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.607059, 42.643973],\n\t\t\t\t\t\t[-92.081661, 42.642056],\n\t\t\t\t\t\t[-92.081568, 42.907013],\n\t\t\t\t\t\t[-92.081146, 43.082794],\n\t\t\t\t\t\t[-91.605307, 43.081653],\n\t\t\t\t\t\t[-91.607059, 42.643973]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19071\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"071\",\n\t\t\t\t\"NAME\": \"Fremont\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 511.150000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.765645, 40.585208],\n\t\t\t\t\t\t[-95.753148, 40.592840],\n\t\t\t\t\t\t[-95.750053, 40.597052],\n\t\t\t\t\t\t[-95.748626, 40.603355],\n\t\t\t\t\t\t[-95.776251, 40.647463],\n\t\t\t\t\t\t[-95.786568, 40.657253],\n\t\t\t\t\t\t[-95.795489, 40.662384],\n\t\t\t\t\t\t[-95.822913, 40.667240],\n\t\t\t\t\t\t[-95.842801, 40.677496],\n\t\t\t\t\t\t[-95.883178, 40.717579],\n\t\t\t\t\t\t[-95.888907, 40.731855],\n\t\t\t\t\t\t[-95.886690, 40.742101],\n\t\t\t\t\t\t[-95.881529, 40.750611],\n\t\t\t\t\t\t[-95.872281, 40.758349],\n\t\t\t\t\t\t[-95.861695, 40.762871],\n\t\t\t\t\t\t[-95.854172, 40.784012],\n\t\t\t\t\t\t[-95.821193, 40.876682],\n\t\t\t\t\t\t[-95.823123, 40.900924],\n\t\t\t\t\t\t[-95.813465, 40.901693],\n\t\t\t\t\t\t[-95.384964, 40.901550],\n\t\t\t\t\t\t[-95.373923, 40.580501],\n\t\t\t\t\t\t[-95.415406, 40.581014],\n\t\t\t\t\t\t[-95.469319, 40.581540],\n\t\t\t\t\t\t[-95.525392, 40.582090],\n\t\t\t\t\t\t[-95.526682, 40.582136],\n\t\t\t\t\t\t[-95.533182, 40.582249],\n\t\t\t\t\t\t[-95.554959, 40.582629],\n\t\t\t\t\t\t[-95.574046, 40.582963],\n\t\t\t\t\t\t[-95.611069, 40.583495],\n\t\t\t\t\t\t[-95.641840, 40.584234],\n\t\t\t\t\t\t[-95.687442, 40.584380],\n\t\t\t\t\t\t[-95.687500, 40.584381],\n\t\t\t\t\t\t[-95.746443, 40.584935],\n\t\t\t\t\t\t[-95.765645, 40.585208]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19083\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"083\",\n\t\t\t\t\"NAME\": \"Hardin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 569.307000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.463043, 42.209302],\n\t\t\t\t\t\t[-93.462635, 42.470802],\n\t\t\t\t\t\t[-93.499485, 42.557700],\n\t\t\t\t\t\t[-93.027000, 42.556810],\n\t\t\t\t\t\t[-93.002902, 42.470638],\n\t\t\t\t\t\t[-93.001674, 42.209267],\n\t\t\t\t\t\t[-93.231722, 42.208886],\n\t\t\t\t\t\t[-93.463043, 42.209302]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19085\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"085\",\n\t\t\t\t\"NAME\": \"Harrison\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 696.848000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.981319, 41.506837],\n\t\t\t\t\t\t[-95.994784, 41.526242],\n\t\t\t\t\t\t[-96.030593, 41.527292],\n\t\t\t\t\t\t[-96.036603, 41.509047],\n\t\t\t\t\t\t[-96.040701, 41.507076],\n\t\t\t\t\t\t[-96.046707, 41.507085],\n\t\t\t\t\t\t[-96.055096, 41.509577],\n\t\t\t\t\t\t[-96.089714, 41.531778],\n\t\t\t\t\t\t[-96.094090, 41.539265],\n\t\t\t\t\t\t[-96.118105, 41.613495],\n\t\t\t\t\t\t[-96.116233, 41.621574],\n\t\t\t\t\t\t[-96.097728, 41.639633],\n\t\t\t\t\t\t[-96.095046, 41.647365],\n\t\t\t\t\t\t[-96.095415, 41.652736],\n\t\t\t\t\t\t[-96.099837, 41.661030],\n\t\t\t\t\t\t[-96.121726, 41.682740],\n\t\t\t\t\t\t[-96.096795, 41.698681],\n\t\t\t\t\t\t[-96.077088, 41.715403],\n\t\t\t\t\t\t[-96.064537, 41.793002],\n\t\t\t\t\t\t[-96.065770, 41.798174],\n\t\t\t\t\t\t[-96.071007, 41.804639],\n\t\t\t\t\t\t[-96.077646, 41.808804],\n\t\t\t\t\t\t[-96.086407, 41.811380],\n\t\t\t\t\t\t[-96.110907, 41.830818],\n\t\t\t\t\t\t[-96.139554, 41.865830],\n\t\t\t\t\t\t[-96.137698, 41.866307],\n\t\t\t\t\t\t[-95.672771, 41.863147],\n\t\t\t\t\t\t[-95.557277, 41.863449],\n\t\t\t\t\t\t[-95.558143, 41.602383],\n\t\t\t\t\t\t[-95.497793, 41.602333],\n\t\t\t\t\t\t[-95.497997, 41.506074],\n\t\t\t\t\t\t[-95.981319, 41.506837]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19097\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"097\",\n\t\t\t\t\"NAME\": \"Jackson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 636.039000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.898373, 42.033548],\n\t\t\t\t\t\t[-90.898020, 42.295236],\n\t\t\t\t\t\t[-90.665551, 42.294699],\n\t\t\t\t\t\t[-90.665029, 42.382155],\n\t\t\t\t\t\t[-90.474834, 42.381473],\n\t\t\t\t\t\t[-90.419027, 42.328505],\n\t\t\t\t\t\t[-90.416535, 42.325109],\n\t\t\t\t\t\t[-90.416200, 42.321314],\n\t\t\t\t\t\t[-90.424326, 42.293326],\n\t\t\t\t\t\t[-90.430735, 42.284211],\n\t\t\t\t\t\t[-90.430884, 42.278230],\n\t\t\t\t\t\t[-90.419326, 42.254467],\n\t\t\t\t\t\t[-90.391108, 42.225473],\n\t\t\t\t\t\t[-90.375129, 42.214811],\n\t\t\t\t\t\t[-90.356964, 42.205445],\n\t\t\t\t\t\t[-90.349162, 42.204277],\n\t\t\t\t\t\t[-90.316269, 42.193600],\n\t\t\t\t\t\t[-90.306531, 42.190439],\n\t\t\t\t\t\t[-90.234919, 42.165431],\n\t\t\t\t\t\t[-90.211328, 42.154010],\n\t\t\t\t\t\t[-90.167533, 42.122475],\n\t\t\t\t\t\t[-90.162225, 42.114880],\n\t\t\t\t\t\t[-90.161119, 42.104404],\n\t\t\t\t\t\t[-90.163405, 42.087613],\n\t\t\t\t\t\t[-90.168358, 42.075779],\n\t\t\t\t\t\t[-90.166495, 42.054543],\n\t\t\t\t\t\t[-90.164537, 42.045007],\n\t\t\t\t\t\t[-90.154221, 42.033073],\n\t\t\t\t\t\t[-90.898373, 42.033548]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19109\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"109\",\n\t\t\t\t\"NAME\": \"Kossuth\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 972.720000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.442848, 43.500583],\n\t\t\t\t\t\t[-94.442835, 43.500583],\n\t\t\t\t\t\t[-94.390597, 43.500469],\n\t\t\t\t\t\t[-94.377466, 43.500379],\n\t\t\t\t\t\t[-94.247965, 43.500333],\n\t\t\t\t\t\t[-94.109880, 43.500283],\n\t\t\t\t\t\t[-94.108068, 43.500300],\n\t\t\t\t\t\t[-94.094339, 43.500302],\n\t\t\t\t\t\t[-94.092894, 43.500302],\n\t\t\t\t\t\t[-93.970762, 43.499605],\n\t\t\t\t\t\t[-93.970415, 43.255358],\n\t\t\t\t\t\t[-93.971238, 42.907762],\n\t\t\t\t\t\t[-94.442954, 42.908073],\n\t\t\t\t\t\t[-94.443136, 42.909498],\n\t\t\t\t\t\t[-94.443137, 43.255014],\n\t\t\t\t\t\t[-94.442848, 43.500583]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18111\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"111\",\n\t\t\t\t\"NAME\": \"Newton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 401.759000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.275882, 41.218595],\n\t\t\t\t\t\t[-87.267300, 40.736582],\n\t\t\t\t\t\t[-87.526129, 40.736885],\n\t\t\t\t\t\t[-87.526129, 40.736950],\n\t\t\t\t\t\t[-87.525783, 40.854357],\n\t\t\t\t\t\t[-87.526113, 40.879703],\n\t\t\t\t\t\t[-87.525962, 40.880618],\n\t\t\t\t\t\t[-87.526437, 40.894209],\n\t\t\t\t\t\t[-87.526084, 40.911914],\n\t\t\t\t\t\t[-87.526305, 41.010346],\n\t\t\t\t\t\t[-87.526307, 41.010355],\n\t\t\t\t\t\t[-87.526346, 41.010583],\n\t\t\t\t\t\t[-87.526520, 41.024837],\n\t\t\t\t\t\t[-87.526711, 41.121485],\n\t\t\t\t\t\t[-87.526700, 41.139658],\n\t\t\t\t\t\t[-87.526696, 41.149222],\n\t\t\t\t\t\t[-87.526693, 41.153958],\n\t\t\t\t\t\t[-87.526719, 41.159448],\n\t\t\t\t\t\t[-87.526660, 41.160090],\n\t\t\t\t\t\t[-87.526567, 41.163865],\n\t\t\t\t\t\t[-87.526570, 41.166097],\n\t\t\t\t\t\t[-87.414421, 41.162248],\n\t\t\t\t\t\t[-87.275882, 41.218595]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19119\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"119\",\n\t\t\t\t\"NAME\": \"Lyon\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 587.650000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.572489, 43.249178],\n\t\t\t\t\t\t[-96.584124, 43.268101],\n\t\t\t\t\t\t[-96.586317, 43.274319],\n\t\t\t\t\t\t[-96.569110, 43.295535],\n\t\t\t\t\t\t[-96.551929, 43.292974],\n\t\t\t\t\t\t[-96.530392, 43.300034],\n\t\t\t\t\t\t[-96.525564, 43.312467],\n\t\t\t\t\t\t[-96.521264, 43.374978],\n\t\t\t\t\t\t[-96.521697, 43.386897],\n\t\t\t\t\t\t[-96.524044, 43.394762],\n\t\t\t\t\t\t[-96.529152, 43.397735],\n\t\t\t\t\t\t[-96.531159, 43.395610],\n\t\t\t\t\t\t[-96.537460, 43.395246],\n\t\t\t\t\t\t[-96.557586, 43.406792],\n\t\t\t\t\t\t[-96.594254, 43.434153],\n\t\t\t\t\t\t[-96.602860, 43.450907],\n\t\t\t\t\t\t[-96.600039, 43.457080],\n\t\t\t\t\t\t[-96.584070, 43.468856],\n\t\t\t\t\t\t[-96.587151, 43.484697],\n\t\t\t\t\t\t[-96.598928, 43.500457],\n\t\t\t\t\t\t[-96.591213, 43.500514],\n\t\t\t\t\t\t[-96.453049, 43.500415],\n\t\t\t\t\t\t[-96.351059, 43.500333],\n\t\t\t\t\t\t[-96.332062, 43.500415],\n\t\t\t\t\t\t[-96.208814, 43.500391],\n\t\t\t\t\t\t[-96.198766, 43.500312],\n\t\t\t\t\t\t[-96.198484, 43.500335],\n\t\t\t\t\t\t[-96.053163, 43.500176],\n\t\t\t\t\t\t[-95.861152, 43.499966],\n\t\t\t\t\t\t[-95.860946, 43.499966],\n\t\t\t\t\t\t[-95.861914, 43.257566],\n\t\t\t\t\t\t[-96.554969, 43.259951],\n\t\t\t\t\t\t[-96.572489, 43.249178]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19133\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"133\",\n\t\t\t\t\"NAME\": \"Monona\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 694.072000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.139554, 41.865830],\n\t\t\t\t\t\t[-96.144483, 41.871854],\n\t\t\t\t\t\t[-96.161756, 41.901820],\n\t\t\t\t\t\t[-96.161988, 41.905553],\n\t\t\t\t\t\t[-96.159098, 41.910057],\n\t\t\t\t\t\t[-96.142265, 41.915379],\n\t\t\t\t\t\t[-96.136743, 41.920826],\n\t\t\t\t\t\t[-96.129186, 41.965136],\n\t\t\t\t\t\t[-96.129505, 41.971673],\n\t\t\t\t\t\t[-96.221730, 42.026205],\n\t\t\t\t\t\t[-96.251714, 42.040472],\n\t\t\t\t\t\t[-96.272877, 42.047238],\n\t\t\t\t\t\t[-96.279079, 42.074026],\n\t\t\t\t\t\t[-96.307421, 42.130707],\n\t\t\t\t\t\t[-96.344121, 42.162091],\n\t\t\t\t\t\t[-96.349688, 42.172043],\n\t\t\t\t\t\t[-96.359870, 42.210545],\n\t\t\t\t\t\t[-96.356666, 42.215077],\n\t\t\t\t\t\t[-95.670822, 42.211408],\n\t\t\t\t\t\t[-95.672771, 41.863147],\n\t\t\t\t\t\t[-96.137698, 41.866307],\n\t\t\t\t\t\t[-96.139554, 41.865830]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19143\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"143\",\n\t\t\t\t\"NAME\": \"Osceola\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 398.684000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.454433, 43.500644],\n\t\t\t\t\t\t[-95.434293, 43.500360],\n\t\t\t\t\t\t[-95.434199, 43.500314],\n\t\t\t\t\t\t[-95.387851, 43.500240],\n\t\t\t\t\t\t[-95.387812, 43.500240],\n\t\t\t\t\t\t[-95.387787, 43.500240],\n\t\t\t\t\t\t[-95.388078, 43.255221],\n\t\t\t\t\t\t[-95.861914, 43.257566],\n\t\t\t\t\t\t[-95.860946, 43.499966],\n\t\t\t\t\t\t[-95.834421, 43.499966],\n\t\t\t\t\t\t[-95.821277, 43.499965],\n\t\t\t\t\t\t[-95.741569, 43.499891],\n\t\t\t\t\t\t[-95.740813, 43.499894],\n\t\t\t\t\t\t[-95.514774, 43.499865],\n\t\t\t\t\t\t[-95.486803, 43.500246],\n\t\t\t\t\t\t[-95.486737, 43.500274],\n\t\t\t\t\t\t[-95.475065, 43.500335],\n\t\t\t\t\t\t[-95.454706, 43.500563],\n\t\t\t\t\t\t[-95.454706, 43.500648],\n\t\t\t\t\t\t[-95.454433, 43.500644]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19167\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"167\",\n\t\t\t\t\"NAME\": \"Sioux\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 768.332000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.455107, 43.083366],\n\t\t\t\t\t\t[-96.439335, 43.113916],\n\t\t\t\t\t\t[-96.436589, 43.120842],\n\t\t\t\t\t\t[-96.475571, 43.221054],\n\t\t\t\t\t\t[-96.485264, 43.224183],\n\t\t\t\t\t\t[-96.557126, 43.224192],\n\t\t\t\t\t\t[-96.572489, 43.249178],\n\t\t\t\t\t\t[-96.554969, 43.259951],\n\t\t\t\t\t\t[-95.861914, 43.257566],\n\t\t\t\t\t\t[-95.859377, 42.909097],\n\t\t\t\t\t\t[-96.523264, 42.909059],\n\t\t\t\t\t\t[-96.510749, 42.944397],\n\t\t\t\t\t\t[-96.509479, 42.971122],\n\t\t\t\t\t\t[-96.513111, 43.027880],\n\t\t\t\t\t\t[-96.466017, 43.062235],\n\t\t\t\t\t\t[-96.455107, 43.083366]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19173\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"173\",\n\t\t\t\t\"NAME\": \"Taylor\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 531.902000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.632032, 40.571186],\n\t\t\t\t\t\t[-94.632035, 40.571186],\n\t\t\t\t\t\t[-94.682601, 40.571787],\n\t\t\t\t\t\t[-94.714925, 40.572201],\n\t\t\t\t\t\t[-94.716665, 40.572201],\n\t\t\t\t\t\t[-94.773988, 40.572977],\n\t\t\t\t\t\t[-94.811188, 40.573532],\n\t\t\t\t\t\t[-94.819978, 40.573714],\n\t\t\t\t\t\t[-94.823758, 40.573942],\n\t\t\t\t\t\t[-94.896801, 40.574738],\n\t\t\t\t\t\t[-94.901451, 40.574877],\n\t\t\t\t\t\t[-94.914896, 40.575068],\n\t\t\t\t\t\t[-94.928459, 40.900653],\n\t\t\t\t\t\t[-94.470779, 40.899502],\n\t\t\t\t\t\t[-94.471213, 40.570825],\n\t\t\t\t\t\t[-94.489280, 40.570707],\n\t\t\t\t\t\t[-94.533878, 40.570739],\n\t\t\t\t\t\t[-94.537058, 40.570763],\n\t\t\t\t\t\t[-94.538318, 40.570763],\n\t\t\t\t\t\t[-94.541828, 40.570809],\n\t\t\t\t\t\t[-94.542154, 40.570809],\n\t\t\t\t\t\t[-94.594001, 40.570966],\n\t\t\t\t\t\t[-94.632032, 40.571186]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19185\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"185\",\n\t\t\t\t\"NAME\": \"Wayne\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 525.437000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.345442, 40.580514],\n\t\t\t\t\t\t[-93.374386, 40.580334],\n\t\t\t\t\t\t[-93.441767, 40.579916],\n\t\t\t\t\t\t[-93.465297, 40.580164],\n\t\t\t\t\t\t[-93.466887, 40.580072],\n\t\t\t\t\t\t[-93.524124, 40.580481],\n\t\t\t\t\t\t[-93.527607, 40.580436],\n\t\t\t\t\t\t[-93.528177, 40.580367],\n\t\t\t\t\t\t[-93.548284, 40.580417],\n\t\t\t\t\t\t[-93.553986, 40.580303],\n\t\t\t\t\t\t[-93.556899, 40.580235],\n\t\t\t\t\t\t[-93.556540, 40.898295],\n\t\t\t\t\t\t[-93.097595, 40.898451],\n\t\t\t\t\t\t[-93.097296, 40.584014],\n\t\t\t\t\t\t[-93.098507, 40.583973],\n\t\t\t\t\t\t[-93.260612, 40.580797],\n\t\t\t\t\t\t[-93.317605, 40.580671],\n\t\t\t\t\t\t[-93.345442, 40.580514]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19191\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"191\",\n\t\t\t\t\"NAME\": \"Winneshiek\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 689.868000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.730217, 43.500680],\n\t\t\t\t\t\t[-91.700749, 43.500581],\n\t\t\t\t\t\t[-91.670872, 43.500513],\n\t\t\t\t\t\t[-91.658401, 43.500533],\n\t\t\t\t\t\t[-91.651396, 43.500454],\n\t\t\t\t\t\t[-91.644924, 43.500529],\n\t\t\t\t\t\t[-91.639772, 43.500573],\n\t\t\t\t\t\t[-91.635626, 43.500463],\n\t\t\t\t\t\t[-91.634495, 43.500439],\n\t\t\t\t\t\t[-91.634244, 43.500479],\n\t\t\t\t\t\t[-91.625611, 43.500727],\n\t\t\t\t\t\t[-91.620785, 43.500677],\n\t\t\t\t\t\t[-91.617407, 43.500687],\n\t\t\t\t\t\t[-91.616895, 43.500663],\n\t\t\t\t\t\t[-91.615293, 43.500550],\n\t\t\t\t\t\t[-91.610895, 43.500530],\n\t\t\t\t\t\t[-91.610832, 43.500530],\n\t\t\t\t\t\t[-91.605307, 43.081653],\n\t\t\t\t\t\t[-92.081146, 43.082794],\n\t\t\t\t\t\t[-92.080976, 43.212947],\n\t\t\t\t\t\t[-92.079802, 43.500647],\n\t\t\t\t\t\t[-91.949879, 43.500485],\n\t\t\t\t\t\t[-91.941837, 43.500554],\n\t\t\t\t\t\t[-91.824848, 43.500684],\n\t\t\t\t\t\t[-91.807156, 43.500648],\n\t\t\t\t\t\t[-91.804925, 43.500716],\n\t\t\t\t\t\t[-91.779290, 43.500803],\n\t\t\t\t\t\t[-91.777688, 43.500711],\n\t\t\t\t\t\t[-91.761414, 43.500637],\n\t\t\t\t\t\t[-91.738446, 43.500525],\n\t\t\t\t\t\t[-91.736558, 43.500561],\n\t\t\t\t\t\t[-91.733330, 43.500623],\n\t\t\t\t\t\t[-91.730359, 43.500680],\n\t\t\t\t\t\t[-91.730217, 43.500680]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20001\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"001\",\n\t\t\t\t\"NAME\": \"Allen\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 500.303000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.088082, 37.732476],\n\t\t\t\t\t\t[-95.525499, 37.732759],\n\t\t\t\t\t\t[-95.518970, 38.038230],\n\t\t\t\t\t\t[-95.077876, 38.037706],\n\t\t\t\t\t\t[-95.088082, 37.732476]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20007\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"007\",\n\t\t\t\t\"NAME\": \"Barber\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1134.073000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.347149, 36.997962],\n\t\t\t\t\t\t[-98.354073, 36.997961],\n\t\t\t\t\t\t[-98.408991, 36.998513],\n\t\t\t\t\t\t[-98.418268, 36.998538],\n\t\t\t\t\t\t[-98.420209, 36.998516],\n\t\t\t\t\t\t[-98.544660, 36.998996],\n\t\t\t\t\t\t[-98.544872, 36.998997],\n\t\t\t\t\t\t[-98.714512, 36.999060],\n\t\t\t\t\t\t[-98.718465, 36.999180],\n\t\t\t\t\t\t[-98.761597, 36.999425],\n\t\t\t\t\t\t[-98.791936, 36.999255],\n\t\t\t\t\t\t[-98.793711, 36.999227],\n\t\t\t\t\t\t[-98.797452, 36.999229],\n\t\t\t\t\t\t[-98.869449, 36.999286],\n\t\t\t\t\t\t[-98.880009, 36.999263],\n\t\t\t\t\t\t[-98.880580, 36.999309],\n\t\t\t\t\t\t[-98.994371, 36.999493],\n\t\t\t\t\t\t[-99.000303, 36.999510],\n\t\t\t\t\t\t[-99.001294, 37.384296],\n\t\t\t\t\t\t[-99.011499, 37.384263],\n\t\t\t\t\t\t[-99.011755, 37.431042],\n\t\t\t\t\t\t[-99.012186, 37.436186],\n\t\t\t\t\t\t[-99.012598, 37.470421],\n\t\t\t\t\t\t[-98.464663, 37.471013],\n\t\t\t\t\t\t[-98.464951, 37.384086],\n\t\t\t\t\t\t[-98.349804, 37.384056],\n\t\t\t\t\t\t[-98.347149, 36.997962]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20011\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"011\",\n\t\t\t\t\"NAME\": \"Bourbon\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 635.471000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.613981, 38.037057],\n\t\t\t\t\t\t[-94.613981, 38.036949],\n\t\t\t\t\t\t[-94.614212, 37.992462],\n\t\t\t\t\t\t[-94.614465, 37.987799],\n\t\t\t\t\t\t[-94.614557, 37.971037],\n\t\t\t\t\t\t[-94.614562, 37.951517],\n\t\t\t\t\t\t[-94.614594, 37.949978],\n\t\t\t\t\t\t[-94.614612, 37.944362],\n\t\t\t\t\t\t[-94.614754, 37.940769],\n\t\t\t\t\t\t[-94.614835, 37.936700],\n\t\t\t\t\t\t[-94.614778, 37.934200],\n\t\t\t\t\t\t[-94.615181, 37.915944],\n\t\t\t\t\t\t[-94.615393, 37.906392],\n\t\t\t\t\t\t[-94.615469, 37.901775],\n\t\t\t\t\t\t[-94.615706, 37.886843],\n\t\t\t\t\t\t[-94.615921, 37.878331],\n\t\t\t\t\t\t[-94.615834, 37.872510],\n\t\t\t\t\t\t[-94.616000, 37.863126],\n\t\t\t\t\t\t[-94.616426, 37.845282],\n\t\t\t\t\t\t[-94.616450, 37.837560],\n\t\t\t\t\t\t[-94.616862, 37.819456],\n\t\t\t\t\t\t[-94.617808, 37.729707],\n\t\t\t\t\t\t[-94.617975, 37.722176],\n\t\t\t\t\t\t[-94.617805, 37.690178],\n\t\t\t\t\t\t[-94.617651, 37.687671],\n\t\t\t\t\t\t[-94.617687, 37.686653],\n\t\t\t\t\t\t[-94.617885, 37.682214],\n\t\t\t\t\t\t[-94.617734, 37.673127],\n\t\t\t\t\t\t[-94.617734, 37.673105],\n\t\t\t\t\t\t[-95.088012, 37.674519],\n\t\t\t\t\t\t[-95.088082, 37.732476],\n\t\t\t\t\t\t[-95.077876, 38.037706],\n\t\t\t\t\t\t[-94.613981, 38.037057]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22071\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"071\",\n\t\t\t\t\"NAME\": \"Orleans\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 169.423000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.124775, 29.975791],\n\t\t\t\t\t\t[-90.120959, 30.021975],\n\t\t\t\t\t\t[-90.118541, 30.029845],\n\t\t\t\t\t\t[-90.119373, 30.036637],\n\t\t\t\t\t\t[-90.105456, 30.191801],\n\t\t\t\t\t\t[-89.994260, 30.150039],\n\t\t\t\t\t\t[-89.878689, 30.199193],\n\t\t\t\t\t\t[-89.794106, 30.151326],\n\t\t\t\t\t\t[-89.749211, 30.176429],\n\t\t\t\t\t\t[-89.622880, 30.152368],\n\t\t\t\t\t\t[-89.625053, 30.150717],\n\t\t\t\t\t\t[-89.640989, 30.138612],\n\t\t\t\t\t\t[-89.644550, 30.134108],\n\t\t\t\t\t\t[-89.650467, 30.126625],\n\t\t\t\t\t\t[-89.656986, 30.118381],\n\t\t\t\t\t\t[-89.658594, 30.117364],\n\t\t\t\t\t\t[-89.668164, 30.111311],\n\t\t\t\t\t\t[-89.668638, 30.111011],\n\t\t\t\t\t\t[-89.669157, 30.110683],\n\t\t\t\t\t\t[-89.669182, 30.110667],\n\t\t\t\t\t\t[-89.672881, 30.110490],\n\t\t\t\t\t\t[-89.674124, 30.110430],\n\t\t\t\t\t\t[-89.674633, 30.110406],\n\t\t\t\t\t\t[-89.674956, 30.110212],\n\t\t\t\t\t\t[-89.675762, 30.109728],\n\t\t\t\t\t\t[-89.676117, 30.109515],\n\t\t\t\t\t\t[-89.678156, 30.108290],\n\t\t\t\t\t\t[-89.678163, 30.108286],\n\t\t\t\t\t\t[-89.678293, 30.107746],\n\t\t\t\t\t\t[-89.678457, 30.107059],\n\t\t\t\t\t\t[-89.678499, 30.106886],\n\t\t\t\t\t\t[-89.679655, 30.102067],\n\t\t\t\t\t\t[-89.679823, 30.101367],\n\t\t\t\t\t\t[-89.679838, 30.101304],\n\t\t\t\t\t\t[-89.680042, 30.100452],\n\t\t\t\t\t\t[-89.680350, 30.099171],\n\t\t\t\t\t\t[-89.680485, 30.098605],\n\t\t\t\t\t\t[-89.681265, 30.095355],\n\t\t\t\t\t\t[-89.681906, 30.092682],\n\t\t\t\t\t\t[-89.682057, 30.092052],\n\t\t\t\t\t\t[-89.682181, 30.091536],\n\t\t\t\t\t\t[-89.682181, 30.091531],\n\t\t\t\t\t\t[-89.682277, 30.090565],\n\t\t\t\t\t\t[-89.682280, 30.090531],\n\t\t\t\t\t\t[-89.682331, 30.090015],\n\t\t\t\t\t\t[-89.682371, 30.089607],\n\t\t\t\t\t\t[-89.682393, 30.089391],\n\t\t\t\t\t\t[-89.682409, 30.089225],\n\t\t\t\t\t\t[-89.682691, 30.086365],\n\t\t\t\t\t\t[-89.683051, 30.082718],\n\t\t\t\t\t\t[-89.683168, 30.081530],\n\t\t\t\t\t\t[-89.683712, 30.076018],\n\t\t\t\t\t\t[-89.697556, 30.070842],\n\t\t\t\t\t\t[-89.698461, 30.070504],\n\t\t\t\t\t\t[-89.698496, 30.070491],\n\t\t\t\t\t\t[-89.698909, 30.070451],\n\t\t\t\t\t\t[-89.699144, 30.070428],\n\t\t\t\t\t\t[-89.699629, 30.070381],\n\t\t\t\t\t\t[-89.711848, 30.069194],\n\t\t\t\t\t\t[-89.712942, 30.069088],\n\t\t\t\t\t\t[-89.713003, 30.069061],\n\t\t\t\t\t\t[-89.714085, 30.068582],\n\t\t\t\t\t\t[-89.714827, 30.068253],\n\t\t\t\t\t\t[-89.715494, 30.067958],\n\t\t\t\t\t\t[-89.715884, 30.067785],\n\t\t\t\t\t\t[-89.716237, 30.067628],\n\t\t\t\t\t\t[-89.716425, 30.067545],\n\t\t\t\t\t\t[-89.716750, 30.067402],\n\t\t\t\t\t\t[-89.716887, 30.067341],\n\t\t\t\t\t\t[-89.721992, 30.065080],\n\t\t\t\t\t\t[-89.724433, 30.063999],\n\t\t\t\t\t\t[-89.726330, 30.063158],\n\t\t\t\t\t\t[-89.727453, 30.062661],\n\t\t\t\t\t\t[-89.728026, 30.061841],\n\t\t\t\t\t\t[-89.729570, 30.059628],\n\t\t\t\t\t\t[-89.729680, 30.059470],\n\t\t\t\t\t\t[-89.729790, 30.059314],\n\t\t\t\t\t\t[-89.729911, 30.059139],\n\t\t\t\t\t\t[-89.730990, 30.057594],\n\t\t\t\t\t\t[-89.730999, 30.057581],\n\t\t\t\t\t\t[-89.731208, 30.054558],\n\t\t\t\t\t\t[-89.731428, 30.051377],\n\t\t\t\t\t\t[-89.731452, 30.051040],\n\t\t\t\t\t\t[-89.731545, 30.049694],\n\t\t\t\t\t\t[-89.731545, 30.049691],\n\t\t\t\t\t\t[-89.731544, 30.049690],\n\t\t\t\t\t\t[-89.716300, 30.028110],\n\t\t\t\t\t\t[-89.716300, 30.028106],\n\t\t\t\t\t\t[-89.716301, 30.028088],\n\t\t\t\t\t\t[-89.716328, 30.027415],\n\t\t\t\t\t\t[-89.716336, 30.027230],\n\t\t\t\t\t\t[-89.716358, 30.026686],\n\t\t\t\t\t\t[-89.716377, 30.026222],\n\t\t\t\t\t\t[-89.724649, 30.022454],\n\t\t\t\t\t\t[-89.724669, 30.022453],\n\t\t\t\t\t\t[-89.725760, 30.022403],\n\t\t\t\t\t\t[-89.733323, 30.022054],\n\t\t\t\t\t\t[-89.734361, 30.022884],\n\t\t\t\t\t\t[-89.739028, 30.026618],\n\t\t\t\t\t\t[-89.739574, 30.027055],\n\t\t\t\t\t\t[-89.740886, 30.028104],\n\t\t\t\t\t\t[-89.745827, 30.032056],\n\t\t\t\t\t\t[-89.746313, 30.032445],\n\t\t\t\t\t\t[-89.746505, 30.032599],\n\t\t\t\t\t\t[-89.746506, 30.032600],\n\t\t\t\t\t\t[-89.757138, 30.038650],\n\t\t\t\t\t\t[-89.763216, 30.042108],\n\t\t\t\t\t\t[-89.782534, 30.045372],\n\t\t\t\t\t\t[-89.784630, 30.045253],\n\t\t\t\t\t\t[-89.813684, 30.043605],\n\t\t\t\t\t\t[-89.818561, 30.043328],\n\t\t\t\t\t\t[-89.829762, 30.033275],\n\t\t\t\t\t\t[-89.830442, 30.032664],\n\t\t\t\t\t\t[-89.832213, 30.031075],\n\t\t\t\t\t\t[-89.832965, 30.030400],\n\t\t\t\t\t\t[-89.833794, 30.029656],\n\t\t\t\t\t\t[-89.834644, 30.028893],\n\t\t\t\t\t\t[-89.835202, 30.028393],\n\t\t\t\t\t\t[-89.839926, 30.024153],\n\t\t\t\t\t\t[-89.839933, 30.024146],\n\t\t\t\t\t\t[-89.840963, 30.022995],\n\t\t\t\t\t\t[-89.841739, 30.022127],\n\t\t\t\t\t\t[-89.854533, 30.007821],\n\t\t\t\t\t\t[-89.989882, 29.989490],\n\t\t\t\t\t\t[-90.012102, 29.945980],\n\t\t\t\t\t\t[-89.921019, 29.915729],\n\t\t\t\t\t\t[-89.911037, 29.868543],\n\t\t\t\t\t\t[-90.008056, 29.895528],\n\t\t\t\t\t\t[-90.058547, 29.945334],\n\t\t\t\t\t\t[-90.140074, 29.947904],\n\t\t\t\t\t\t[-90.126559, 29.970265],\n\t\t\t\t\t\t[-90.124775, 29.975791]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27075\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"075\",\n\t\t\t\t\"NAME\": \"Lake\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2109.292000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.023125, 47.464964],\n\t\t\t\t\t\t[-91.032945, 47.458236],\n\t\t\t\t\t\t[-91.045646, 47.456525],\n\t\t\t\t\t\t[-91.077712, 47.428767],\n\t\t\t\t\t\t[-91.097569, 47.413888],\n\t\t\t\t\t\t[-91.106218, 47.411806],\n\t\t\t\t\t\t[-91.128131, 47.399619],\n\t\t\t\t\t\t[-91.131268, 47.393567],\n\t\t\t\t\t\t[-91.146958, 47.381464],\n\t\t\t\t\t\t[-91.156513, 47.378816],\n\t\t\t\t\t\t[-91.170037, 47.366266],\n\t\t\t\t\t\t[-91.188772, 47.340082],\n\t\t\t\t\t\t[-91.206248, 47.329182],\n\t\t\t\t\t\t[-91.238658, 47.304976],\n\t\t\t\t\t\t[-91.250163, 47.290490],\n\t\t\t\t\t\t[-91.262512, 47.279290],\n\t\t\t\t\t\t[-91.265950, 47.279479],\n\t\t\t\t\t\t[-91.270697, 47.277134],\n\t\t\t\t\t\t[-91.288478, 47.265960],\n\t\t\t\t\t\t[-91.326019, 47.238993],\n\t\t\t\t\t\t[-91.353850, 47.212686],\n\t\t\t\t\t\t[-91.357803, 47.206743],\n\t\t\t\t\t\t[-91.374191, 47.197800],\n\t\t\t\t\t\t[-91.387021, 47.187293],\n\t\t\t\t\t\t[-91.398455, 47.183916],\n\t\t\t\t\t\t[-91.418805, 47.172152],\n\t\t\t\t\t\t[-91.452031, 47.145158],\n\t\t\t\t\t\t[-91.456965, 47.139156],\n\t\t\t\t\t\t[-91.477351, 47.125667],\n\t\t\t\t\t\t[-91.497902, 47.122579],\n\t\t\t\t\t\t[-91.506998, 47.118489],\n\t\t\t\t\t\t[-91.518793, 47.108121],\n\t\t\t\t\t\t[-91.573817, 47.089917],\n\t\t\t\t\t\t[-91.591508, 47.068684],\n\t\t\t\t\t\t[-91.600969, 47.063425],\n\t\t\t\t\t\t[-91.604949, 47.063309],\n\t\t\t\t\t\t[-91.613173, 47.059192],\n\t\t\t\t\t\t[-91.626824, 47.049953],\n\t\t\t\t\t\t[-91.637164, 47.040429],\n\t\t\t\t\t\t[-91.644564, 47.026491],\n\t\t\t\t\t\t[-91.660248, 47.019288],\n\t\t\t\t\t\t[-91.666477, 47.014297],\n\t\t\t\t\t\t[-91.704649, 47.005246],\n\t\t\t\t\t\t[-91.737098, 46.982853],\n\t\t\t\t\t\t[-91.777300, 46.951799],\n\t\t\t\t\t\t[-91.780675, 46.945881],\n\t\t\t\t\t\t[-91.794039, 46.939676],\n\t\t\t\t\t\t[-91.787928, 47.546817],\n\t\t\t\t\t\t[-91.799114, 47.732178],\n\t\t\t\t\t\t[-91.798268, 48.200086],\n\t\t\t\t\t\t[-91.789693, 48.197829],\n\t\t\t\t\t\t[-91.742313, 48.204491],\n\t\t\t\t\t\t[-91.714931, 48.199130],\n\t\t\t\t\t\t[-91.710519, 48.193898],\n\t\t\t\t\t\t[-91.699336, 48.144728],\n\t\t\t\t\t\t[-91.708099, 48.122985],\n\t\t\t\t\t\t[-91.712226, 48.116883],\n\t\t\t\t\t\t[-91.711850, 48.114598],\n\t\t\t\t\t\t[-91.641062, 48.097703],\n\t\t\t\t\t\t[-91.569746, 48.093348],\n\t\t\t\t\t\t[-91.488067, 48.068111],\n\t\t\t\t\t\t[-91.340159, 48.073236],\n\t\t\t\t\t\t[-91.328738, 48.070588],\n\t\t\t\t\t\t[-91.290215, 48.073945],\n\t\t\t\t\t\t[-91.266380, 48.078713],\n\t\t\t\t\t\t[-91.250112, 48.084087],\n\t\t\t\t\t\t[-91.176181, 48.125811],\n\t\t\t\t\t\t[-91.140773, 48.147689],\n\t\t\t\t\t\t[-91.138311, 48.151024],\n\t\t\t\t\t\t[-91.138482, 48.151458],\n\t\t\t\t\t\t[-91.035858, 48.189436],\n\t\t\t\t\t\t[-91.035550, 48.189459],\n\t\t\t\t\t\t[-91.032942, 48.190794],\n\t\t\t\t\t\t[-91.020737, 47.887995],\n\t\t\t\t\t\t[-91.023125, 47.464964]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21161\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"161\",\n\t\t\t\t\"NAME\": \"Mason\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 240.128000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.706043, 38.637101],\n\t\t\t\t\t\t[-83.679484, 38.630036],\n\t\t\t\t\t\t[-83.663911, 38.627930],\n\t\t\t\t\t\t[-83.655425, 38.629735],\n\t\t\t\t\t\t[-83.649737, 38.632753],\n\t\t\t\t\t\t[-83.646701, 38.637489],\n\t\t\t\t\t\t[-83.641852, 38.525381],\n\t\t\t\t\t\t[-83.859280, 38.456348],\n\t\t\t\t\t\t[-83.930348, 38.492278],\n\t\t\t\t\t\t[-83.991605, 38.593701],\n\t\t\t\t\t\t[-83.903918, 38.768150],\n\t\t\t\t\t\t[-83.870443, 38.761608],\n\t\t\t\t\t\t[-83.859028, 38.756793],\n\t\t\t\t\t\t[-83.853330, 38.752572],\n\t\t\t\t\t\t[-83.777823, 38.674453],\n\t\t\t\t\t\t[-83.773682, 38.661309],\n\t\t\t\t\t\t[-83.769347, 38.655220],\n\t\t\t\t\t\t[-83.762445, 38.652103],\n\t\t\t\t\t\t[-83.706043, 38.637101]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27123\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"123\",\n\t\t\t\t\"NAME\": \"Ramsey\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 152.212000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.227696, 45.124533],\n\t\t\t\t\t\t[-93.198985, 45.124394],\n\t\t\t\t\t\t[-93.188706, 45.124374],\n\t\t\t\t\t\t[-93.020518, 45.123866],\n\t\t\t\t\t\t[-92.984621, 45.123757],\n\t\t\t\t\t\t[-92.984712, 45.075372],\n\t\t\t\t\t\t[-92.984640, 44.948522],\n\t\t\t\t\t\t[-92.984602, 44.947636],\n\t\t\t\t\t\t[-92.984620, 44.946114],\n\t\t\t\t\t\t[-92.984522, 44.945685],\n\t\t\t\t\t\t[-92.984584, 44.945077],\n\t\t\t\t\t\t[-92.984410, 44.920646],\n\t\t\t\t\t\t[-92.984463, 44.919869],\n\t\t\t\t\t\t[-92.984396, 44.909644],\n\t\t\t\t\t\t[-92.984458, 44.909393],\n\t\t\t\t\t\t[-92.984207, 44.893998],\n\t\t\t\t\t\t[-92.984192, 44.890814],\n\t\t\t\t\t\t[-93.020044, 44.890750],\n\t\t\t\t\t\t[-93.128629, 44.919648],\n\t\t\t\t\t\t[-93.178539, 44.888338],\n\t\t\t\t\t\t[-93.208092, 45.035744],\n\t\t\t\t\t\t[-93.226929, 45.035671],\n\t\t\t\t\t\t[-93.227059, 45.049937],\n\t\t\t\t\t\t[-93.227696, 45.124533]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27135\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"135\",\n\t\t\t\t\"NAME\": \"Roseau\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1671.602000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.319895, 48.998769],\n\t\t\t\t\t\t[-95.235606, 48.881450],\n\t\t\t\t\t\t[-95.091464, 48.920618],\n\t\t\t\t\t\t[-95.089863, 48.713062],\n\t\t\t\t\t\t[-95.342730, 48.713028],\n\t\t\t\t\t\t[-95.342540, 48.540211],\n\t\t\t\t\t\t[-95.586733, 48.538533],\n\t\t\t\t\t\t[-95.602315, 48.538887],\n\t\t\t\t\t\t[-96.387835, 48.544308],\n\t\t\t\t\t\t[-96.405412, 48.999820],\n\t\t\t\t\t\t[-95.368698, 48.998729],\n\t\t\t\t\t\t[-95.355819, 48.998735],\n\t\t\t\t\t\t[-95.340962, 48.998740],\n\t\t\t\t\t\t[-95.322946, 48.998767],\n\t\t\t\t\t\t[-95.319895, 48.998769]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27151\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"151\",\n\t\t\t\t\"NAME\": \"Swift\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 742.083000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.747402, 45.412313],\n\t\t\t\t\t\t[-95.255206, 45.412525],\n\t\t\t\t\t\t[-95.246490, 45.152384],\n\t\t\t\t\t\t[-96.036698, 45.152206],\n\t\t\t\t\t\t[-96.048217, 45.158430],\n\t\t\t\t\t\t[-96.053511, 45.156453],\n\t\t\t\t\t\t[-96.075686, 45.165935],\n\t\t\t\t\t\t[-96.084646, 45.165762],\n\t\t\t\t\t\t[-96.103614, 45.176675],\n\t\t\t\t\t\t[-96.117036, 45.411993],\n\t\t\t\t\t\t[-95.747402, 45.412313]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27155\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"155\",\n\t\t\t\t\"NAME\": \"Traverse\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 573.902000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.835451, 45.586129],\n\t\t\t\t\t\t[-96.843957, 45.594003],\n\t\t\t\t\t\t[-96.844334, 45.594375],\n\t\t\t\t\t\t[-96.849444, 45.598944],\n\t\t\t\t\t\t[-96.853646, 45.602307],\n\t\t\t\t\t\t[-96.857751, 45.605962],\n\t\t\t\t\t\t[-96.844211, 45.639583],\n\t\t\t\t\t\t[-96.840746, 45.645294],\n\t\t\t\t\t\t[-96.835769, 45.649648],\n\t\t\t\t\t\t[-96.745086, 45.701576],\n\t\t\t\t\t\t[-96.711157, 45.717561],\n\t\t\t\t\t\t[-96.672665, 45.732336],\n\t\t\t\t\t\t[-96.652226, 45.746809],\n\t\t\t\t\t\t[-96.583085, 45.820024],\n\t\t\t\t\t\t[-96.579740, 45.825820],\n\t\t\t\t\t\t[-96.576544, 45.839945],\n\t\t\t\t\t\t[-96.572984, 45.861602],\n\t\t\t\t\t\t[-96.568772, 45.888072],\n\t\t\t\t\t\t[-96.568281, 45.891203],\n\t\t\t\t\t\t[-96.568053, 45.898697],\n\t\t\t\t\t\t[-96.568315, 45.902902],\n\t\t\t\t\t\t[-96.568918, 45.911426],\n\t\t\t\t\t\t[-96.569265, 45.911471],\n\t\t\t\t\t\t[-96.569401, 45.913946],\n\t\t\t\t\t\t[-96.569069, 45.914785],\n\t\t\t\t\t\t[-96.564317, 45.921074],\n\t\t\t\t\t\t[-96.564518, 45.926256],\n\t\t\t\t\t\t[-96.563280, 45.935238],\n\t\t\t\t\t\t[-96.570350, 45.963595],\n\t\t\t\t\t\t[-96.577326, 46.021757],\n\t\t\t\t\t\t[-96.576347, 46.021850],\n\t\t\t\t\t\t[-96.266140, 46.021610],\n\t\t\t\t\t\t[-96.254022, 45.759820],\n\t\t\t\t\t\t[-96.253026, 45.585526],\n\t\t\t\t\t\t[-96.835451, 45.586129]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27165\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"165\",\n\t\t\t\t\"NAME\": \"Watonwan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 434.947000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.368974, 43.848047],\n\t\t\t\t\t\t[-94.854444, 43.848099],\n\t\t\t\t\t\t[-94.859388, 43.848093],\n\t\t\t\t\t\t[-94.859803, 44.108016],\n\t\t\t\t\t\t[-94.368850, 44.108698],\n\t\t\t\t\t\t[-94.368974, 43.848047]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27167\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"167\",\n\t\t\t\t\"NAME\": \"Wilkin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 750.957000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.577326, 46.021757],\n\t\t\t\t\t\t[-96.577940, 46.026874],\n\t\t\t\t\t\t[-96.566295, 46.051416],\n\t\t\t\t\t\t[-96.559271, 46.058272],\n\t\t\t\t\t\t[-96.556940, 46.064601],\n\t\t\t\t\t\t[-96.554835, 46.084824],\n\t\t\t\t\t\t[-96.557952, 46.102442],\n\t\t\t\t\t\t[-96.578362, 46.170112],\n\t\t\t\t\t\t[-96.585647, 46.177309],\n\t\t\t\t\t\t[-96.599087, 46.263701],\n\t\t\t\t\t\t[-96.598233, 46.312563],\n\t\t\t\t\t\t[-96.631586, 46.353752],\n\t\t\t\t\t\t[-96.669794, 46.384644],\n\t\t\t\t\t\t[-96.721999, 46.439986],\n\t\t\t\t\t\t[-96.716438, 46.444567],\n\t\t\t\t\t\t[-96.739054, 46.543708],\n\t\t\t\t\t\t[-96.783003, 46.630405],\n\t\t\t\t\t\t[-96.280977, 46.630765],\n\t\t\t\t\t\t[-96.280000, 46.282220],\n\t\t\t\t\t\t[-96.265366, 46.108610],\n\t\t\t\t\t\t[-96.266080, 46.057960],\n\t\t\t\t\t\t[-96.266048, 46.057771],\n\t\t\t\t\t\t[-96.266030, 46.057420],\n\t\t\t\t\t\t[-96.266140, 46.021610],\n\t\t\t\t\t\t[-96.576347, 46.021850],\n\t\t\t\t\t\t[-96.577326, 46.021757]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27173\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"173\",\n\t\t\t\t\"NAME\": \"Yellow Medicine\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 759.101000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.451761, 44.631350],\n\t\t\t\t\t\t[-96.451543, 44.703135],\n\t\t\t\t\t\t[-96.451573, 44.760510],\n\t\t\t\t\t\t[-96.451380, 44.761788],\n\t\t\t\t\t\t[-96.451620, 44.776191],\n\t\t\t\t\t\t[-96.451823, 44.790471],\n\t\t\t\t\t\t[-96.451888, 44.792299],\n\t\t\t\t\t\t[-96.451829, 44.797691],\n\t\t\t\t\t\t[-96.451559, 44.805468],\n\t\t\t\t\t\t[-96.451560, 44.805569],\n\t\t\t\t\t\t[-95.849009, 44.805347],\n\t\t\t\t\t\t[-95.847452, 44.891799],\n\t\t\t\t\t\t[-95.737309, 44.891479],\n\t\t\t\t\t\t[-95.737015, 44.936180],\n\t\t\t\t\t\t[-95.498456, 44.786867],\n\t\t\t\t\t\t[-95.482843, 44.752505],\n\t\t\t\t\t\t[-95.360177, 44.698540],\n\t\t\t\t\t\t[-95.360400, 44.541762],\n\t\t\t\t\t\t[-95.594817, 44.542305],\n\t\t\t\t\t\t[-95.604001, 44.629945],\n\t\t\t\t\t\t[-96.092950, 44.630486],\n\t\t\t\t\t\t[-96.449714, 44.631210],\n\t\t\t\t\t\t[-96.451761, 44.631350]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28001\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"001\",\n\t\t\t\t\"NAME\": \"Adams\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 462.407000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.153864, 31.610068],\n\t\t\t\t\t\t[-91.158150, 31.346695],\n\t\t\t\t\t\t[-91.306294, 31.360862],\n\t\t\t\t\t\t[-91.468435, 31.319570],\n\t\t\t\t\t\t[-91.488954, 31.225920],\n\t\t\t\t\t\t[-91.599965, 31.192318],\n\t\t\t\t\t\t[-91.598490, 31.205485],\n\t\t\t\t\t\t[-91.574493, 31.261289],\n\t\t\t\t\t\t[-91.547588, 31.264444],\n\t\t\t\t\t\t[-91.522397, 31.273423],\n\t\t\t\t\t\t[-91.515614, 31.278210],\n\t\t\t\t\t\t[-91.508858, 31.291644],\n\t\t\t\t\t\t[-91.519820, 31.311228],\n\t\t\t\t\t\t[-91.531201, 31.326625],\n\t\t\t\t\t\t[-91.539904, 31.337336],\n\t\t\t\t\t\t[-91.541242, 31.356750],\n\t\t\t\t\t\t[-91.525386, 31.378904],\n\t\t\t\t\t\t[-91.513795, 31.386875],\n\t\t\t\t\t\t[-91.505093, 31.400933],\n\t\t\t\t\t\t[-91.500406, 31.419008],\n\t\t\t\t\t\t[-91.505301, 31.432945],\n\t\t\t\t\t\t[-91.510356, 31.438928],\n\t\t\t\t\t\t[-91.515130, 31.449206],\n\t\t\t\t\t\t[-91.522920, 31.519841],\n\t\t\t\t\t\t[-91.515810, 31.530894],\n\t\t\t\t\t\t[-91.511217, 31.532612],\n\t\t\t\t\t\t[-91.479718, 31.530366],\n\t\t\t\t\t\t[-91.450017, 31.539666],\n\t\t\t\t\t\t[-91.437616, 31.546166],\n\t\t\t\t\t\t[-91.422691, 31.554390],\n\t\t\t\t\t\t[-91.416683, 31.561599],\n\t\t\t\t\t\t[-91.415482, 31.567006],\n\t\t\t\t\t\t[-91.425094, 31.577820],\n\t\t\t\t\t\t[-91.437711, 31.580824],\n\t\t\t\t\t\t[-91.448620, 31.583032],\n\t\t\t\t\t\t[-91.458679, 31.583226],\n\t\t\t\t\t\t[-91.470754, 31.585630],\n\t\t\t\t\t\t[-91.477362, 31.592239],\n\t\t\t\t\t\t[-91.477963, 31.598247],\n\t\t\t\t\t\t[-91.477963, 31.604855],\n\t\t\t\t\t\t[-91.477963, 31.610863],\n\t\t\t\t\t\t[-91.474959, 31.621677],\n\t\t\t\t\t\t[-91.464746, 31.628886],\n\t\t\t\t\t\t[-91.452730, 31.631290],\n\t\t\t\t\t\t[-91.441315, 31.631290],\n\t\t\t\t\t\t[-91.422090, 31.631290],\n\t\t\t\t\t\t[-91.404668, 31.637898],\n\t\t\t\t\t\t[-91.398059, 31.655922],\n\t\t\t\t\t\t[-91.400115, 31.688164],\n\t\t\t\t\t\t[-91.397915, 31.709364],\n\t\t\t\t\t\t[-91.379935, 31.733013],\n\t\t\t\t\t\t[-91.369375, 31.746903],\n\t\t\t\t\t\t[-91.365084, 31.752743],\n\t\t\t\t\t\t[-91.317864, 31.749766],\n\t\t\t\t\t\t[-91.269313, 31.647254],\n\t\t\t\t\t\t[-91.153864, 31.610068]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28019\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"019\",\n\t\t\t\t\"NAME\": \"Choctaw\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 418.177000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.108824, 33.215886],\n\t\t\t\t\t\t[-89.213422, 33.197543],\n\t\t\t\t\t\t[-89.213921, 33.109402],\n\t\t\t\t\t\t[-89.317855, 33.108871],\n\t\t\t\t\t\t[-89.316408, 33.285556],\n\t\t\t\t\t\t[-89.453808, 33.285942],\n\t\t\t\t\t\t[-89.454050, 33.433200],\n\t\t\t\t\t\t[-89.381092, 33.460307],\n\t\t\t\t\t\t[-89.296140, 33.506734],\n\t\t\t\t\t\t[-89.105747, 33.532941],\n\t\t\t\t\t\t[-89.088446, 33.533202],\n\t\t\t\t\t\t[-89.088255, 33.286003],\n\t\t\t\t\t\t[-89.108886, 33.285937],\n\t\t\t\t\t\t[-89.108824, 33.215886]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28025\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"025\",\n\t\t\t\t\"NAME\": \"Clay\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 410.077000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.018613, 33.562114],\n\t\t\t\t\t\t[-89.018625, 33.593037],\n\t\t\t\t\t\t[-89.034498, 33.739430],\n\t\t\t\t\t\t[-88.931604, 33.754312],\n\t\t\t\t\t\t[-88.931176, 33.812374],\n\t\t\t\t\t\t[-88.719979, 33.811330],\n\t\t\t\t\t\t[-88.719626, 33.680253],\n\t\t\t\t\t\t[-88.496414, 33.680075],\n\t\t\t\t\t\t[-88.513917, 33.650209],\n\t\t\t\t\t\t[-88.480299, 33.522741],\n\t\t\t\t\t\t[-88.671250, 33.506168],\n\t\t\t\t\t\t[-88.671526, 33.565135],\n\t\t\t\t\t\t[-89.018613, 33.562114]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28027\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"027\",\n\t\t\t\t\"NAME\": \"Coahoma\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 552.442000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.570133, 34.524829],\n\t\t\t\t\t\t[-90.568867, 34.524584],\n\t\t\t\t\t\t[-90.399498, 34.423807],\n\t\t\t\t\t\t[-90.399014, 34.261524],\n\t\t\t\t\t\t[-90.450572, 34.262402],\n\t\t\t\t\t\t[-90.450981, 34.072932],\n\t\t\t\t\t\t[-90.450530, 34.000112],\n\t\t\t\t\t\t[-90.451012, 33.985689],\n\t\t\t\t\t\t[-90.657002, 33.987586],\n\t\t\t\t\t\t[-90.659457, 34.118867],\n\t\t\t\t\t\t[-90.931969, 34.120017],\n\t\t\t\t\t\t[-90.933116, 34.124488],\n\t\t\t\t\t\t[-90.934564, 34.130138],\n\t\t\t\t\t\t[-90.918405, 34.154376],\n\t\t\t\t\t\t[-90.893013, 34.155531],\n\t\t\t\t\t\t[-90.880317, 34.169381],\n\t\t\t\t\t\t[-90.880894, 34.180346],\n\t\t\t\t\t\t[-90.895898, 34.191888],\n\t\t\t\t\t\t[-90.913212, 34.210355],\n\t\t\t\t\t\t[-90.911480, 34.223051],\n\t\t\t\t\t\t[-90.894744, 34.229977],\n\t\t\t\t\t\t[-90.868775, 34.228245],\n\t\t\t\t\t\t[-90.856367, 34.238928],\n\t\t\t\t\t\t[-90.764143, 34.363396],\n\t\t\t\t\t\t[-90.658542, 34.375705],\n\t\t\t\t\t\t[-90.613944, 34.390723],\n\t\t\t\t\t\t[-90.575336, 34.415152],\n\t\t\t\t\t\t[-90.565809, 34.435400],\n\t\t\t\t\t\t[-90.570133, 34.524829]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19117\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"117\",\n\t\t\t\t\"NAME\": \"Lucas\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 430.593000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.557556, 41.161271],\n\t\t\t\t\t\t[-93.327886, 41.160659],\n\t\t\t\t\t\t[-93.099217, 41.160867],\n\t\t\t\t\t\t[-93.097724, 40.899738],\n\t\t\t\t\t\t[-93.097595, 40.898451],\n\t\t\t\t\t\t[-93.556540, 40.898295],\n\t\t\t\t\t\t[-93.557556, 41.161271]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37053\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"053\",\n\t\t\t\t\"NAME\": \"Currituck\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 261.852000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.122360, 36.550621],\n\t\t\t\t\t\t[-76.034751, 36.550653],\n\t\t\t\t\t\t[-76.026750, 36.550553],\n\t\t\t\t\t\t[-75.957648, 36.550553],\n\t\t\t\t\t\t[-75.955748, 36.550553],\n\t\t\t\t\t\t[-75.953447, 36.550553],\n\t\t\t\t\t\t[-75.952847, 36.550553],\n\t\t\t\t\t\t[-75.922046, 36.550654],\n\t\t\t\t\t\t[-75.911446, 36.550654],\n\t\t\t\t\t\t[-75.909046, 36.550654],\n\t\t\t\t\t\t[-75.904745, 36.550654],\n\t\t\t\t\t\t[-75.903445, 36.550654],\n\t\t\t\t\t\t[-75.894145, 36.550754],\n\t\t\t\t\t\t[-75.893245, 36.550654],\n\t\t\t\t\t\t[-75.891945, 36.550754],\n\t\t\t\t\t\t[-75.886545, 36.550754],\n\t\t\t\t\t\t[-75.885945, 36.550754],\n\t\t\t\t\t\t[-75.880644, 36.550754],\n\t\t\t\t\t\t[-75.879744, 36.550754],\n\t\t\t\t\t\t[-75.867044, 36.550754],\n\t\t\t\t\t\t[-75.856901, 36.500155],\n\t\t\t\t\t\t[-75.834975, 36.422650],\n\t\t\t\t\t\t[-75.818735, 36.357579],\n\t\t\t\t\t\t[-75.796410, 36.290351],\n\t\t\t\t\t\t[-75.773329, 36.231529],\n\t\t\t\t\t\t[-75.794371, 36.227336],\n\t\t\t\t\t\t[-75.798528, 36.230800],\n\t\t\t\t\t\t[-75.803690, 36.235853],\n\t\t\t\t\t\t[-75.811588, 36.244014],\n\t\t\t\t\t\t[-75.811851, 36.247699],\n\t\t\t\t\t\t[-75.808165, 36.259545],\n\t\t\t\t\t\t[-75.814483, 36.285344],\n\t\t\t\t\t\t[-75.822907, 36.291662],\n\t\t\t\t\t\t[-75.833964, 36.292188],\n\t\t\t\t\t\t[-75.837913, 36.294558],\n\t\t\t\t\t\t[-75.845284, 36.305614],\n\t\t\t\t\t\t[-75.841335, 36.328517],\n\t\t\t\t\t\t[-75.831858, 36.339047],\n\t\t\t\t\t\t[-75.831595, 36.346418],\n\t\t\t\t\t\t[-75.836201, 36.363135],\n\t\t\t\t\t\t[-75.843046, 36.371032],\n\t\t\t\t\t\t[-75.847258, 36.372085],\n\t\t\t\t\t\t[-75.851470, 36.379456],\n\t\t\t\t\t\t[-75.852523, 36.384721],\n\t\t\t\t\t\t[-75.851470, 36.415785],\n\t\t\t\t\t\t[-75.864106, 36.430527],\n\t\t\t\t\t\t[-75.880428, 36.435792],\n\t\t\t\t\t\t[-75.888325, 36.441583],\n\t\t\t\t\t\t[-75.891484, 36.460537],\n\t\t\t\t\t\t[-75.899908, 36.482124],\n\t\t\t\t\t\t[-75.907279, 36.485809],\n\t\t\t\t\t\t[-75.913071, 36.486336],\n\t\t\t\t\t\t[-75.917283, 36.485809],\n\t\t\t\t\t\t[-75.924127, 36.482124],\n\t\t\t\t\t\t[-75.927333, 36.482815],\n\t\t\t\t\t\t[-75.935473, 36.490601],\n\t\t\t\t\t\t[-75.960069, 36.495025],\n\t\t\t\t\t\t[-75.972545, 36.494671],\n\t\t\t\t\t\t[-76.003708, 36.506235],\n\t\t\t\t\t\t[-76.019261, 36.503506],\n\t\t\t\t\t\t[-76.023627, 36.500778],\n\t\t\t\t\t\t[-76.029221, 36.494365],\n\t\t\t\t\t\t[-76.031949, 36.482496],\n\t\t\t\t\t\t[-76.020216, 36.458620],\n\t\t\t\t\t\t[-76.012337, 36.447462],\n\t\t\t\t\t\t[-76.003912, 36.441864],\n\t\t\t\t\t\t[-75.989869, 36.436808],\n\t\t\t\t\t\t[-75.980050, 36.435464],\n\t\t\t\t\t\t[-75.962285, 36.417240],\n\t\t\t\t\t\t[-75.940676, 36.418850],\n\t\t\t\t\t\t[-75.936446, 36.423079],\n\t\t\t\t\t\t[-75.932694, 36.427627],\n\t\t\t\t\t\t[-75.928369, 36.428588],\n\t\t\t\t\t\t[-75.923601, 36.425788],\n\t\t\t\t\t\t[-75.916409, 36.389010],\n\t\t\t\t\t\t[-75.916949, 36.383167],\n\t\t\t\t\t\t[-75.923511, 36.367796],\n\t\t\t\t\t\t[-75.923331, 36.361863],\n\t\t\t\t\t\t[-75.917758, 36.353593],\n\t\t\t\t\t\t[-75.915331, 36.352335],\n\t\t\t\t\t\t[-75.895285, 36.319615],\n\t\t\t\t\t\t[-75.888211, 36.293414],\n\t\t\t\t\t\t[-75.882154, 36.284674],\n\t\t\t\t\t\t[-75.872721, 36.282770],\n\t\t\t\t\t\t[-75.864933, 36.284674],\n\t\t\t\t\t\t[-75.860520, 36.280607],\n\t\t\t\t\t\t[-75.861818, 36.266415],\n\t\t\t\t\t\t[-75.867356, 36.252483],\n\t\t\t\t\t\t[-75.864154, 36.235522],\n\t\t\t\t\t\t[-75.858703, 36.222628],\n\t\t\t\t\t\t[-75.848838, 36.216570],\n\t\t\t\t\t\t[-75.838367, 36.200129],\n\t\t\t\t\t\t[-75.841222, 36.193812],\n\t\t\t\t\t\t[-75.839924, 36.177110],\n\t\t\t\t\t\t[-75.823915, 36.158332],\n\t\t\t\t\t\t[-75.822531, 36.145957],\n\t\t\t\t\t\t[-75.813444, 36.136871],\n\t\t\t\t\t\t[-75.800378, 36.112728],\n\t\t\t\t\t\t[-75.791637, 36.082267],\n\t\t\t\t\t\t[-75.793974, 36.071710],\n\t\t\t\t\t\t[-75.799779, 36.072640],\n\t\t\t\t\t\t[-75.836084, 36.092616],\n\t\t\t\t\t\t[-75.847785, 36.101990],\n\t\t\t\t\t\t[-75.867792, 36.127262],\n\t\t\t\t\t\t[-75.866323, 36.141410],\n\t\t\t\t\t\t[-75.867385, 36.151182],\n\t\t\t\t\t\t[-75.869828, 36.154580],\n\t\t\t\t\t\t[-75.875033, 36.157448],\n\t\t\t\t\t\t[-75.887415, 36.160233],\n\t\t\t\t\t\t[-75.948426, 36.285268],\n\t\t\t\t\t\t[-76.050755, 36.359819],\n\t\t\t\t\t\t[-76.114069, 36.357498],\n\t\t\t\t\t\t[-76.158583, 36.426347],\n\t\t\t\t\t\t[-76.313196, 36.550551],\n\t\t\t\t\t\t[-76.122360, 36.550621]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37079\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"079\",\n\t\t\t\t\"NAME\": \"Greene\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 265.928000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.826207, 35.476813],\n\t\t\t\t\t\t[-77.824291, 35.498663],\n\t\t\t\t\t\t[-77.823471, 35.585523],\n\t\t\t\t\t\t[-77.822372, 35.585467],\n\t\t\t\t\t\t[-77.818142, 35.587825],\n\t\t\t\t\t\t[-77.816125, 35.588443],\n\t\t\t\t\t\t[-77.811456, 35.586056],\n\t\t\t\t\t\t[-77.809014, 35.584179],\n\t\t\t\t\t\t[-77.806097, 35.583457],\n\t\t\t\t\t\t[-77.801698, 35.586132],\n\t\t\t\t\t\t[-77.753646, 35.615818],\n\t\t\t\t\t\t[-77.700502, 35.652256],\n\t\t\t\t\t\t[-77.509307, 35.519569],\n\t\t\t\t\t\t[-77.476000, 35.426684],\n\t\t\t\t\t\t[-77.660811, 35.352757],\n\t\t\t\t\t\t[-77.680542, 35.347760],\n\t\t\t\t\t\t[-77.701681, 35.380597],\n\t\t\t\t\t\t[-77.738695, 35.374869],\n\t\t\t\t\t\t[-77.749753, 35.373241],\n\t\t\t\t\t\t[-77.777680, 35.367682],\n\t\t\t\t\t\t[-77.805564, 35.369768],\n\t\t\t\t\t\t[-77.805258, 35.370218],\n\t\t\t\t\t\t[-77.802742, 35.372945],\n\t\t\t\t\t\t[-77.799961, 35.382462],\n\t\t\t\t\t\t[-77.805590, 35.407469],\n\t\t\t\t\t\t[-77.818414, 35.415911],\n\t\t\t\t\t\t[-77.827000, 35.431151],\n\t\t\t\t\t\t[-77.826207, 35.476813]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37089\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"089\",\n\t\t\t\t\"NAME\": \"Henderson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 373.068000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.352430, 35.206595],\n\t\t\t\t\t\t[-82.384029, 35.210542],\n\t\t\t\t\t\t[-82.476136, 35.175486],\n\t\t\t\t\t\t[-82.516910, 35.163029],\n\t\t\t\t\t\t[-82.517284, 35.162643],\n\t\t\t\t\t\t[-82.535804, 35.158699],\n\t\t\t\t\t\t[-82.536527, 35.159137],\n\t\t\t\t\t\t[-82.574406, 35.144216],\n\t\t\t\t\t\t[-82.619513, 35.303758],\n\t\t\t\t\t\t[-82.745209, 35.422924],\n\t\t\t\t\t\t[-82.744383, 35.423342],\n\t\t\t\t\t\t[-82.672392, 35.459534],\n\t\t\t\t\t\t[-82.570269, 35.431255],\n\t\t\t\t\t\t[-82.266847, 35.465854],\n\t\t\t\t\t\t[-82.279615, 35.445973],\n\t\t\t\t\t\t[-82.270255, 35.400351],\n\t\t\t\t\t\t[-82.261456, 35.392984],\n\t\t\t\t\t\t[-82.346089, 35.286038],\n\t\t\t\t\t\t[-82.352430, 35.206595]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42035\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"035\",\n\t\t\t\t\"NAME\": \"Clinton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 887.984000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.989194, 41.474822],\n\t\t\t\t\t\t[-77.598129, 41.478576],\n\t\t\t\t\t\t[-77.526537, 41.358528],\n\t\t\t\t\t\t[-77.320891, 41.218932],\n\t\t\t\t\t\t[-77.144111, 41.068840],\n\t\t\t\t\t\t[-77.143723, 41.045780],\n\t\t\t\t\t\t[-77.144160, 41.044338],\n\t\t\t\t\t\t[-77.508596, 40.962938],\n\t\t\t\t\t\t[-77.621759, 41.091185],\n\t\t\t\t\t\t[-77.741911, 41.107614],\n\t\t\t\t\t\t[-77.798560, 41.181950],\n\t\t\t\t\t\t[-77.892724, 41.178259],\n\t\t\t\t\t\t[-77.898195, 41.252752],\n\t\t\t\t\t\t[-78.038203, 41.153633],\n\t\t\t\t\t\t[-78.061007, 41.174539],\n\t\t\t\t\t\t[-78.093381, 41.216931],\n\t\t\t\t\t\t[-77.988786, 41.367453],\n\t\t\t\t\t\t[-77.989194, 41.474822]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42041\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"041\",\n\t\t\t\t\"NAME\": \"Cumberland\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 545.459000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.137425, 40.069945],\n\t\t\t\t\t\t[-77.255209, 40.020760],\n\t\t\t\t\t\t[-77.403788, 39.994447],\n\t\t\t\t\t\t[-77.471085, 39.944077],\n\t\t\t\t\t\t[-77.614665, 40.198549],\n\t\t\t\t\t\t[-77.366018, 40.313569],\n\t\t\t\t\t\t[-77.419795, 40.264070],\n\t\t\t\t\t\t[-77.280548, 40.275923],\n\t\t\t\t\t\t[-77.270057, 40.278652],\n\t\t\t\t\t\t[-77.241691, 40.282847],\n\t\t\t\t\t\t[-77.229166, 40.283744],\n\t\t\t\t\t\t[-77.083942, 40.301220],\n\t\t\t\t\t\t[-76.914970, 40.328484],\n\t\t\t\t\t\t[-76.859023, 40.226328],\n\t\t\t\t\t\t[-76.905875, 40.165723],\n\t\t\t\t\t\t[-77.028853, 40.147838],\n\t\t\t\t\t\t[-77.137425, 40.069945]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20021\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"021\",\n\t\t\t\t\"NAME\": \"Cherokee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 587.568000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.618080, 36.998135],\n\t\t\t\t\t\t[-94.699735, 36.998805],\n\t\t\t\t\t\t[-94.701797, 36.998814],\n\t\t\t\t\t\t[-94.712770, 36.998794],\n\t\t\t\t\t\t[-94.737183, 36.998665],\n\t\t\t\t\t\t[-94.739324, 36.998687],\n\t\t\t\t\t\t[-94.777257, 36.998764],\n\t\t\t\t\t\t[-94.831280, 36.998812],\n\t\t\t\t\t\t[-94.840926, 36.998833],\n\t\t\t\t\t\t[-94.849801, 36.998876],\n\t\t\t\t\t\t[-94.853197, 36.998874],\n\t\t\t\t\t\t[-94.995293, 36.999529],\n\t\t\t\t\t\t[-95.007620, 36.999514],\n\t\t\t\t\t\t[-95.011433, 36.999535],\n\t\t\t\t\t\t[-95.030324, 36.999517],\n\t\t\t\t\t\t[-95.037857, 36.999497],\n\t\t\t\t\t\t[-95.049499, 36.999580],\n\t\t\t\t\t\t[-95.073504, 36.999509],\n\t\t\t\t\t\t[-95.075166, 37.339937],\n\t\t\t\t\t\t[-94.619202, 37.338360],\n\t\t\t\t\t\t[-94.617636, 37.338415],\n\t\t\t\t\t\t[-94.617695, 37.336842],\n\t\t\t\t\t\t[-94.617648, 37.323589],\n\t\t\t\t\t\t[-94.618075, 37.240436],\n\t\t\t\t\t\t[-94.618158, 37.237597],\n\t\t\t\t\t\t[-94.618123, 37.229334],\n\t\t\t\t\t\t[-94.618150, 37.228121],\n\t\t\t\t\t\t[-94.618219, 37.207772],\n\t\t\t\t\t\t[-94.618305, 37.207337],\n\t\t\t\t\t\t[-94.618319, 37.188774],\n\t\t\t\t\t\t[-94.618505, 37.181184],\n\t\t\t\t\t\t[-94.618473, 37.174782],\n\t\t\t\t\t\t[-94.618351, 37.160211],\n\t\t\t\t\t\t[-94.618072, 37.132345],\n\t\t\t\t\t\t[-94.618075, 37.129755],\n\t\t\t\t\t\t[-94.618212, 37.113169],\n\t\t\t\t\t\t[-94.618151, 37.103968],\n\t\t\t\t\t\t[-94.618059, 37.096676],\n\t\t\t\t\t\t[-94.618088, 37.093671],\n\t\t\t\t\t\t[-94.618090, 37.093494],\n\t\t\t\t\t\t[-94.618082, 37.086432],\n\t\t\t\t\t\t[-94.618120, 37.085934],\n\t\t\t\t\t\t[-94.617982, 37.075077],\n\t\t\t\t\t\t[-94.617875, 37.056798],\n\t\t\t\t\t\t[-94.617875, 37.056797],\n\t\t\t\t\t\t[-94.617965, 37.040537],\n\t\t\t\t\t\t[-94.617995, 37.009016],\n\t\t\t\t\t\t[-94.618080, 36.998135]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28055\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"055\",\n\t\t\t\t\"NAME\": \"Issaquena\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 413.045000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.720102, 32.618858],\n\t\t\t\t\t\t[-90.728344, 32.566265],\n\t\t\t\t\t\t[-90.860566, 32.575173],\n\t\t\t\t\t\t[-90.861364, 32.442115],\n\t\t\t\t\t\t[-90.951240, 32.444389],\n\t\t\t\t\t\t[-90.964043, 32.575605],\n\t\t\t\t\t\t[-91.090771, 32.563978],\n\t\t\t\t\t\t[-91.096774, 32.576652],\n\t\t\t\t\t\t[-91.104111, 32.584657],\n\t\t\t\t\t\t[-91.119854, 32.584795],\n\t\t\t\t\t\t[-91.127912, 32.586493],\n\t\t\t\t\t\t[-91.141148, 32.597209],\n\t\t\t\t\t\t[-91.146204, 32.604144],\n\t\t\t\t\t\t[-91.151318, 32.615919],\n\t\t\t\t\t\t[-91.153821, 32.631282],\n\t\t\t\t\t\t[-91.152081, 32.641508],\n\t\t\t\t\t\t[-91.118258, 32.674075],\n\t\t\t\t\t\t[-91.098762, 32.685291],\n\t\t\t\t\t\t[-91.076061, 32.693751],\n\t\t\t\t\t\t[-91.063946, 32.702926],\n\t\t\t\t\t\t[-91.057043, 32.712576],\n\t\t\t\t\t\t[-91.054481, 32.722259],\n\t\t\t\t\t\t[-91.060766, 32.727494],\n\t\t\t\t\t\t[-91.077176, 32.732534],\n\t\t\t\t\t\t[-91.123152, 32.742798],\n\t\t\t\t\t\t[-91.154461, 32.742339],\n\t\t\t\t\t\t[-91.163389, 32.747009],\n\t\t\t\t\t\t[-91.165328, 32.751301],\n\t\t\t\t\t\t[-91.164397, 32.785821],\n\t\t\t\t\t\t[-91.161669, 32.812465],\n\t\t\t\t\t\t[-91.158336, 32.822304],\n\t\t\t\t\t\t[-91.145002, 32.842870],\n\t\t\t\t\t\t[-91.127886, 32.855059],\n\t\t\t\t\t\t[-91.116091, 32.855641],\n\t\t\t\t\t\t[-91.105631, 32.858396],\n\t\t\t\t\t\t[-91.086683, 32.873392],\n\t\t\t\t\t\t[-91.070602, 32.888659],\n\t\t\t\t\t\t[-91.063809, 32.903709],\n\t\t\t\t\t\t[-91.063974, 32.924113],\n\t\t\t\t\t\t[-91.086802, 32.976266],\n\t\t\t\t\t\t[-91.094265, 32.984371],\n\t\t\t\t\t\t[-91.106581, 32.988938],\n\t\t\t\t\t\t[-91.125107, 32.984669],\n\t\t\t\t\t\t[-91.134414, 32.980533],\n\t\t\t\t\t\t[-91.138585, 32.971352],\n\t\t\t\t\t\t[-91.130947, 32.963815],\n\t\t\t\t\t\t[-91.132115, 32.923122],\n\t\t\t\t\t\t[-91.134041, 32.917676],\n\t\t\t\t\t\t[-91.145076, 32.905494],\n\t\t\t\t\t\t[-91.159975, 32.899879],\n\t\t\t\t\t\t[-91.175405, 32.899998],\n\t\t\t\t\t\t[-91.196785, 32.906784],\n\t\t\t\t\t\t[-91.208263, 32.915354],\n\t\t\t\t\t\t[-91.212837, 32.922104],\n\t\t\t\t\t\t[-91.214027, 32.930320],\n\t\t\t\t\t\t[-91.201842, 32.961212],\n\t\t\t\t\t\t[-91.166073, 33.004106],\n\t\t\t\t\t\t[-91.157662, 33.011217],\n\t\t\t\t\t\t[-90.914337, 33.007697],\n\t\t\t\t\t\t[-90.963753, 32.838133],\n\t\t\t\t\t\t[-90.964864, 32.662798],\n\t\t\t\t\t\t[-90.723159, 32.662128],\n\t\t\t\t\t\t[-90.712819, 32.642346],\n\t\t\t\t\t\t[-90.693011, 32.640113],\n\t\t\t\t\t\t[-90.697563, 32.625135],\n\t\t\t\t\t\t[-90.720102, 32.618858]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28063\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"063\",\n\t\t\t\t\"NAME\": \"Jefferson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 519.933000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.736282, 31.786134],\n\t\t\t\t\t\t[-90.736824, 31.698491],\n\t\t\t\t\t\t[-90.737330, 31.611124],\n\t\t\t\t\t\t[-91.153864, 31.610068],\n\t\t\t\t\t\t[-91.269313, 31.647254],\n\t\t\t\t\t\t[-91.317864, 31.749766],\n\t\t\t\t\t\t[-91.365084, 31.752743],\n\t\t\t\t\t\t[-91.365614, 31.760763],\n\t\t\t\t\t\t[-91.363714, 31.780363],\n\t\t\t\t\t\t[-91.359514, 31.799362],\n\t\t\t\t\t\t[-91.345714, 31.842861],\n\t\t\t\t\t\t[-91.338414, 31.851261],\n\t\t\t\t\t\t[-91.326914, 31.854961],\n\t\t\t\t\t\t[-91.293413, 31.860160],\n\t\t\t\t\t\t[-91.248144, 31.869848],\n\t\t\t\t\t\t[-91.013676, 31.861852],\n\t\t\t\t\t\t[-90.842000, 31.826498],\n\t\t\t\t\t\t[-90.852657, 31.785422],\n\t\t\t\t\t\t[-90.736282, 31.786134]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28071\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"071\",\n\t\t\t\t\"NAME\": \"Lafayette\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 631.708000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.509748, 34.162082],\n\t\t\t\t\t\t[-89.509440, 34.190960],\n\t\t\t\t\t\t[-89.721050, 34.192545],\n\t\t\t\t\t\t[-89.721341, 34.554274],\n\t\t\t\t\t\t[-89.668448, 34.554367],\n\t\t\t\t\t\t[-89.476642, 34.554168],\n\t\t\t\t\t\t[-89.424459, 34.519129],\n\t\t\t\t\t\t[-89.246133, 34.495633],\n\t\t\t\t\t\t[-89.246339, 34.379344],\n\t\t\t\t\t\t[-89.245485, 34.161186],\n\t\t\t\t\t\t[-89.250072, 34.161022],\n\t\t\t\t\t\t[-89.509748, 34.162082]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US23001\",\n\t\t\t\t\"STATE\": \"23\",\n\t\t\t\t\"COUNTY\": \"001\",\n\t\t\t\t\"NAME\": \"Androscoggin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 467.927000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-70.080839, 43.926458],\n\t\t\t\t\t\t[-70.229244, 43.974064],\n\t\t\t\t\t\t[-70.315374, 44.037807],\n\t\t\t\t\t\t[-70.363874, 43.986445],\n\t\t\t\t\t\t[-70.480078, 44.032078],\n\t\t\t\t\t\t[-70.391735, 44.153562],\n\t\t\t\t\t\t[-70.334094, 44.210753],\n\t\t\t\t\t\t[-70.325218, 44.208399],\n\t\t\t\t\t\t[-70.265223, 44.362913],\n\t\t\t\t\t\t[-70.276752, 44.407534],\n\t\t\t\t\t\t[-70.268350, 44.416398],\n\t\t\t\t\t\t[-70.274412, 44.440632],\n\t\t\t\t\t\t[-70.238904, 44.458942],\n\t\t\t\t\t\t[-70.201276, 44.477976],\n\t\t\t\t\t\t[-70.129390, 44.487217],\n\t\t\t\t\t\t[-70.100491, 44.383854],\n\t\t\t\t\t\t[-70.074260, 44.290154],\n\t\t\t\t\t\t[-70.075747, 44.206168],\n\t\t\t\t\t\t[-69.993792, 44.180594],\n\t\t\t\t\t\t[-70.010329, 44.168651],\n\t\t\t\t\t\t[-70.027386, 44.130577],\n\t\t\t\t\t\t[-70.005471, 44.124519],\n\t\t\t\t\t\t[-70.051824, 43.990982],\n\t\t\t\t\t\t[-70.047002, 43.988078],\n\t\t\t\t\t\t[-70.046586, 43.985642],\n\t\t\t\t\t\t[-70.036399, 43.978721],\n\t\t\t\t\t\t[-70.034238, 43.975661],\n\t\t\t\t\t\t[-70.080839, 43.926458]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US23003\",\n\t\t\t\t\"STATE\": \"23\",\n\t\t\t\t\"COUNTY\": \"003\",\n\t\t\t\t\"NAME\": \"Aroostook\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 6671.330000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-68.433001, 45.581204],\n\t\t\t\t\t\t[-68.436443, 46.382121],\n\t\t\t\t\t\t[-68.694877, 46.382612],\n\t\t\t\t\t\t[-68.694920, 46.395505],\n\t\t\t\t\t\t[-68.819401, 46.395782],\n\t\t\t\t\t\t[-68.821414, 46.572510],\n\t\t\t\t\t\t[-69.721109, 46.574053],\n\t\t\t\t\t\t[-70.023016, 46.573486],\n\t\t\t\t\t\t[-69.997086, 46.695230],\n\t\t\t\t\t\t[-69.818552, 46.875030],\n\t\t\t\t\t\t[-69.566383, 47.125032],\n\t\t\t\t\t\t[-69.224420, 47.459686],\n\t\t\t\t\t\t[-69.146439, 47.448860],\n\t\t\t\t\t\t[-69.055465, 47.432274],\n\t\t\t\t\t\t[-69.042702, 47.426651],\n\t\t\t\t\t\t[-69.032909, 47.407907],\n\t\t\t\t\t\t[-69.031127, 47.403106],\n\t\t\t\t\t\t[-69.040790, 47.398080],\n\t\t\t\t\t\t[-69.041733, 47.397326],\n\t\t\t\t\t\t[-69.039280, 47.385052],\n\t\t\t\t\t\t[-69.043958, 47.383682],\n\t\t\t\t\t\t[-69.046448, 47.383934],\n\t\t\t\t\t\t[-69.053819, 47.375036],\n\t\t\t\t\t\t[-69.050334, 47.256621],\n\t\t\t\t\t\t[-69.040200, 47.245100],\n\t\t\t\t\t\t[-69.033456, 47.240984],\n\t\t\t\t\t\t[-68.982002, 47.220295],\n\t\t\t\t\t\t[-68.941948, 47.206248],\n\t\t\t\t\t\t[-68.926421, 47.197860],\n\t\t\t\t\t\t[-68.900985, 47.178519],\n\t\t\t\t\t\t[-68.853430, 47.193443],\n\t\t\t\t\t\t[-68.723168, 47.239569],\n\t\t\t\t\t\t[-68.580398, 47.286957],\n\t\t\t\t\t\t[-68.474851, 47.297534],\n\t\t\t\t\t\t[-68.361559, 47.355605],\n\t\t\t\t\t\t[-68.333680, 47.360070],\n\t\t\t\t\t\t[-68.284101, 47.360389],\n\t\t\t\t\t\t[-68.240168, 47.354217],\n\t\t\t\t\t\t[-68.224005, 47.348456],\n\t\t\t\t\t\t[-68.153509, 47.314038],\n\t\t\t\t\t\t[-67.955669, 47.199542],\n\t\t\t\t\t\t[-67.952269, 47.196142],\n\t\t\t\t\t\t[-67.949369, 47.182542],\n\t\t\t\t\t\t[-67.935868, 47.164843],\n\t\t\t\t\t\t[-67.889155, 47.118772],\n\t\t\t\t\t\t[-67.846865, 47.092404],\n\t\t\t\t\t\t[-67.816345, 47.081188],\n\t\t\t\t\t\t[-67.790515, 47.067921],\n\t\t\t\t\t\t[-67.789461, 47.062544],\n\t\t\t\t\t\t[-67.789380, 46.765528],\n\t\t\t\t\t\t[-67.789284, 46.758219],\n\t\t\t\t\t\t[-67.782114, 46.279381],\n\t\t\t\t\t\t[-67.781095, 45.943032],\n\t\t\t\t\t\t[-67.768709, 45.901997],\n\t\t\t\t\t\t[-67.763955, 45.829983],\n\t\t\t\t\t\t[-67.763767, 45.820315],\n\t\t\t\t\t\t[-67.780443, 45.816206],\n\t\t\t\t\t\t[-67.801989, 45.803546],\n\t\t\t\t\t\t[-67.806598, 45.794723],\n\t\t\t\t\t\t[-67.817892, 45.693705],\n\t\t\t\t\t\t[-67.805483, 45.680241],\n\t\t\t\t\t\t[-68.048012, 45.639897],\n\t\t\t\t\t\t[-68.410884, 45.573337],\n\t\t\t\t\t\t[-68.414389, 45.572848],\n\t\t\t\t\t\t[-68.433028, 45.578482],\n\t\t\t\t\t\t[-68.433001, 45.581204]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22087\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"087\",\n\t\t\t\t\"NAME\": \"St. Bernard\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 377.517000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-89.911037, 29.868543],\n\t\t\t\t\t\t\t[-89.921019, 29.915729],\n\t\t\t\t\t\t\t[-90.012102, 29.945980],\n\t\t\t\t\t\t\t[-89.989882, 29.989490],\n\t\t\t\t\t\t\t[-89.854533, 30.007821],\n\t\t\t\t\t\t\t[-89.857558, 30.004439],\n\t\t\t\t\t\t\t[-89.852312, 29.977650],\n\t\t\t\t\t\t\t[-89.844202, 29.955645],\n\t\t\t\t\t\t\t[-89.838500, 29.945816],\n\t\t\t\t\t\t\t[-89.829023, 29.939228],\n\t\t\t\t\t\t\t[-89.818030, 29.934145],\n\t\t\t\t\t\t\t[-89.804463, 29.932588],\n\t\t\t\t\t\t\t[-89.775459, 29.937416],\n\t\t\t\t\t\t\t[-89.748492, 29.945831],\n\t\t\t\t\t\t\t[-89.727933, 29.958780],\n\t\t\t\t\t\t\t[-89.719067, 29.953699],\n\t\t\t\t\t\t\t[-89.712910, 29.946349],\n\t\t\t\t\t\t\t[-89.736311, 29.936263],\n\t\t\t\t\t\t\t[-89.742727, 29.935894],\n\t\t\t\t\t\t\t[-89.746273, 29.928221],\n\t\t\t\t\t\t\t[-89.742479, 29.908170],\n\t\t\t\t\t\t\t[-89.711158, 29.879287],\n\t\t\t\t\t\t\t[-89.692004, 29.868722],\n\t\t\t\t\t\t\t[-89.671555, 29.867535],\n\t\t\t\t\t\t\t[-89.660568, 29.862909],\n\t\t\t\t\t\t\t[-89.638016, 29.864065],\n\t\t\t\t\t\t\t[-89.613159, 29.872160],\n\t\t\t\t\t\t\t[-89.598129, 29.881409],\n\t\t\t\t\t\t\t[-89.591194, 29.897018],\n\t\t\t\t\t\t\t[-89.592346, 29.917253],\n\t\t\t\t\t\t\t[-89.583099, 29.931705],\n\t\t\t\t\t\t\t[-89.583099, 29.945581],\n\t\t\t\t\t\t\t[-89.574997, 29.959455],\n\t\t\t\t\t\t\t[-89.574425, 29.983738],\n\t\t\t\t\t\t\t[-89.581360, 29.994722],\n\t\t\t\t\t\t\t[-89.571533, 29.999926],\n\t\t\t\t\t\t\t[-89.551292, 30.005709],\n\t\t\t\t\t\t\t[-89.501587, 30.034037],\n\t\t\t\t\t\t\t[-89.494064, 30.040972],\n\t\t\t\t\t\t\t[-89.494637, 30.050800],\n\t\t\t\t\t\t\t[-89.499275, 30.058893],\n\t\t\t\t\t\t\t[-89.493484, 30.072191],\n\t\t\t\t\t\t\t[-89.481926, 30.079128],\n\t\t\t\t\t\t\t[-89.458946, 30.063450],\n\t\t\t\t\t\t\t[-89.444618, 30.060959],\n\t\t\t\t\t\t\t[-89.429047, 30.052240],\n\t\t\t\t\t\t\t[-89.418465, 30.049747],\n\t\t\t\t\t\t\t[-89.372375, 30.054729],\n\t\t\t\t\t\t\t[-89.368637, 30.047256],\n\t\t\t\t\t\t\t[-89.372375, 30.036671],\n\t\t\t\t\t\t\t[-89.381096, 30.030441],\n\t\t\t\t\t\t\t[-89.393555, 30.029818],\n\t\t\t\t\t\t\t[-89.415970, 30.020477],\n\t\t\t\t\t\t\t[-89.422813, 30.015495],\n\t\t\t\t\t\t\t[-89.432785, 30.008022],\n\t\t\t\t\t\t\t[-89.433411, 29.991205],\n\t\t\t\t\t\t\t[-89.432785, 29.978752],\n\t\t\t\t\t\t\t[-89.405380, 29.965672],\n\t\t\t\t\t\t\t[-89.393555, 29.966295],\n\t\t\t\t\t\t\t[-89.379227, 29.963804],\n\t\t\t\t\t\t\t[-89.378601, 29.919588],\n\t\t\t\t\t\t\t[-89.368019, 29.911491],\n\t\t\t\t\t\t\t[-89.331894, 29.915850],\n\t\t\t\t\t\t\t[-89.315453, 29.923208],\n\t\t\t\t\t\t\t[-89.283562, 29.973320],\n\t\t\t\t\t\t\t[-89.273315, 29.993820],\n\t\t\t\t\t\t\t[-89.250534, 30.002361],\n\t\t\t\t\t\t\t[-89.243706, 29.997236],\n\t\t\t\t\t\t\t[-89.249969, 29.975597],\n\t\t\t\t\t\t\t[-89.218071, 29.972750],\n\t\t\t\t\t\t\t[-89.223770, 29.961929],\n\t\t\t\t\t\t\t[-89.231178, 29.925484],\n\t\t\t\t\t\t\t[-89.244843, 29.930040],\n\t\t\t\t\t\t\t[-89.263062, 29.929472],\n\t\t\t\t\t\t\t[-89.280144, 29.924915],\n\t\t\t\t\t\t\t[-89.318306, 29.898149],\n\t\t\t\t\t\t\t[-89.322289, 29.887333],\n\t\t\t\t\t\t\t[-89.311462, 29.881636],\n\t\t\t\t\t\t\t[-89.289253, 29.880499],\n\t\t\t\t\t\t\t[-89.272179, 29.886763],\n\t\t\t\t\t\t\t[-89.241425, 29.889610],\n\t\t\t\t\t\t\t[-89.236298, 29.886763],\n\t\t\t\t\t\t\t[-89.236298, 29.877081],\n\t\t\t\t\t\t\t[-89.254517, 29.864552],\n\t\t\t\t\t\t\t[-89.269897, 29.859997],\n\t\t\t\t\t\t\t[-89.294952, 29.857149],\n\t\t\t\t\t\t\t[-89.317726, 29.850885],\n\t\t\t\t\t\t\t[-89.363289, 29.845760],\n\t\t\t\t\t\t\t[-89.383789, 29.838928],\n\t\t\t\t\t\t\t[-89.383217, 29.830385],\n\t\t\t\t\t\t\t[-89.372971, 29.825260],\n\t\t\t\t\t\t\t[-89.345634, 29.820135],\n\t\t\t\t\t\t\t[-89.342781, 29.798496],\n\t\t\t\t\t\t\t[-89.331970, 29.790524],\n\t\t\t\t\t\t\t[-89.318306, 29.788815],\n\t\t\t\t\t\t\t[-89.293251, 29.803053],\n\t\t\t\t\t\t\t[-89.277298, 29.807608],\n\t\t\t\t\t\t\t[-89.277298, 29.799635],\n\t\t\t\t\t\t\t[-89.284134, 29.795649],\n\t\t\t\t\t\t\t[-89.284706, 29.770021],\n\t\t\t\t\t\t\t[-89.269325, 29.760912],\n\t\t\t\t\t\t\t[-89.271034, 29.756355],\n\t\t\t\t\t\t\t[-89.305199, 29.756926],\n\t\t\t\t\t\t\t[-89.316025, 29.760912],\n\t\t\t\t\t\t\t[-89.325134, 29.772301],\n\t\t\t\t\t\t\t[-89.337662, 29.779135],\n\t\t\t\t\t\t\t[-89.354179, 29.781412],\n\t\t\t\t\t\t\t[-89.367271, 29.775148],\n\t\t\t\t\t\t\t[-89.386063, 29.788815],\n\t\t\t\t\t\t\t[-89.394608, 29.784828],\n\t\t\t\t\t\t\t[-89.399162, 29.770592],\n\t\t\t\t\t\t\t[-89.414536, 29.752371],\n\t\t\t\t\t\t\t[-89.428207, 29.741550],\n\t\t\t\t\t\t\t[-89.424210, 29.697638],\n\t\t\t\t\t\t\t[-89.448120, 29.703316],\n\t\t\t\t\t\t\t[-89.471992, 29.718597],\n\t\t\t\t\t\t\t[-89.486961, 29.725920],\n\t\t\t\t\t\t\t[-89.506065, 29.731651],\n\t\t\t\t\t\t\t[-89.530258, 29.743750],\n\t\t\t\t\t\t\t[-89.540131, 29.743750],\n\t\t\t\t\t\t\t[-89.560181, 29.735472],\n\t\t\t\t\t\t\t[-89.572922, 29.746616],\n\t\t\t\t\t\t\t[-89.598068, 29.747570],\n\t\t\t\t\t\t\t[-89.634048, 29.752981],\n\t\t\t\t\t\t\t[-89.651237, 29.749479],\n\t\t\t\t\t\t\t[-89.649651, 29.719872],\n\t\t\t\t\t\t\t[-89.644562, 29.710957],\n\t\t\t\t\t\t\t[-89.618446, 29.700768],\n\t\t\t\t\t\t\t[-89.599030, 29.704908],\n\t\t\t\t\t\t\t[-89.592979, 29.702042],\n\t\t\t\t\t\t\t[-89.599663, 29.690262],\n\t\t\t\t\t\t\t[-89.596802, 29.684212],\n\t\t\t\t\t\t\t[-89.573883, 29.674025],\n\t\t\t\t\t\t\t[-89.557320, 29.670204],\n\t\t\t\t\t\t\t[-89.533760, 29.670204],\n\t\t\t\t\t\t\t[-89.487915, 29.630405],\n\t\t\t\t\t\t\t[-89.485367, 29.624357],\n\t\t\t\t\t\t\t[-89.486709, 29.621003],\n\t\t\t\t\t\t\t[-89.518600, 29.649117],\n\t\t\t\t\t\t\t[-89.628181, 29.680682],\n\t\t\t\t\t\t\t[-89.721045, 29.757652],\n\t\t\t\t\t\t\t[-89.869720, 29.795451],\n\t\t\t\t\t\t\t[-89.911037, 29.868543]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-88.865067, 29.752714],\n\t\t\t\t\t\t\t[-88.889755, 29.718204],\n\t\t\t\t\t\t\t[-88.940346, 29.657234],\n\t\t\t\t\t\t\t[-88.944435, 29.658806],\n\t\t\t\t\t\t\t[-88.946320, 29.662579],\n\t\t\t\t\t\t\t[-88.941605, 29.674833],\n\t\t\t\t\t\t\t[-88.920235, 29.694319],\n\t\t\t\t\t\t\t[-88.911751, 29.699348],\n\t\t\t\t\t\t\t[-88.890060, 29.729202],\n\t\t\t\t\t\t\t[-88.873611, 29.758043],\n\t\t\t\t\t\t\t[-88.867973, 29.772272],\n\t\t\t\t\t\t\t[-88.867973, 29.791330],\n\t\t\t\t\t\t\t[-88.861267, 29.805826],\n\t\t\t\t\t\t\t[-88.846497, 29.817101],\n\t\t\t\t\t\t\t[-88.843010, 29.825960],\n\t\t\t\t\t\t\t[-88.836296, 29.855221],\n\t\t\t\t\t\t\t[-88.836830, 29.858978],\n\t\t\t\t\t\t\t[-88.843277, 29.863810],\n\t\t\t\t\t\t\t[-88.831200, 29.878839],\n\t\t\t\t\t\t\t[-88.828247, 29.920717],\n\t\t\t\t\t\t\t[-88.837379, 29.944878],\n\t\t\t\t\t\t\t[-88.838715, 29.962326],\n\t\t\t\t\t\t\t[-88.835495, 29.967695],\n\t\t\t\t\t\t\t[-88.835495, 29.974138],\n\t\t\t\t\t\t\t[-88.839790, 29.983803],\n\t\t\t\t\t\t\t[-88.840866, 29.995613],\n\t\t\t\t\t\t\t[-88.848373, 30.013330],\n\t\t\t\t\t\t\t[-88.857368, 30.027826],\n\t\t\t\t\t\t\t[-88.869720, 30.043798],\n\t\t\t\t\t\t\t[-88.881454, 30.053202],\n\t\t\t\t\t\t\t[-88.870476, 30.049212],\n\t\t\t\t\t\t\t[-88.855583, 30.034414],\n\t\t\t\t\t\t\t[-88.841225, 30.012789],\n\t\t\t\t\t\t\t[-88.833725, 29.998821],\n\t\t\t\t\t\t\t[-88.824158, 29.970461],\n\t\t\t\t\t\t\t[-88.817017, 29.934250],\n\t\t\t\t\t\t\t[-88.818146, 29.889109],\n\t\t\t\t\t\t\t[-88.826538, 29.847092],\n\t\t\t\t\t\t\t[-88.832710, 29.824062],\n\t\t\t\t\t\t\t[-88.844078, 29.795713],\n\t\t\t\t\t\t\t[-88.865067, 29.752714]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US38015\",\n\t\t\t\t\"STATE\": \"38\",\n\t\t\t\t\"COUNTY\": \"015\",\n\t\t\t\t\"NAME\": \"Burleigh\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1632.653000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.935983, 46.982840],\n\t\t\t\t\t\t[-100.882172, 47.015115],\n\t\t\t\t\t\t[-100.965156, 47.156631],\n\t\t\t\t\t\t[-100.749370, 47.157245],\n\t\t\t\t\t\t[-100.749334, 47.327685],\n\t\t\t\t\t\t[-100.673445, 47.327720],\n\t\t\t\t\t\t[-100.669601, 47.327435],\n\t\t\t\t\t\t[-100.113261, 47.327262],\n\t\t\t\t\t\t[-100.114637, 46.981666],\n\t\t\t\t\t\t[-100.075229, 46.981282],\n\t\t\t\t\t\t[-100.081198, 46.633396],\n\t\t\t\t\t\t[-100.661890, 46.634450],\n\t\t\t\t\t\t[-100.839414, 46.763776],\n\t\t\t\t\t\t[-100.819089, 46.792424],\n\t\t\t\t\t\t[-100.935983, 46.982840]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US38021\",\n\t\t\t\t\"STATE\": \"38\",\n\t\t\t\t\"COUNTY\": \"021\",\n\t\t\t\t\"NAME\": \"Dickey\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1131.470000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.008102, 45.936095],\n\t\t\t\t\t\t[-98.008202, 45.936096],\n\t\t\t\t\t\t[-98.070515, 45.936180],\n\t\t\t\t\t\t[-98.184637, 45.936183],\n\t\t\t\t\t\t[-98.185630, 45.936185],\n\t\t\t\t\t\t[-98.724375, 45.938685],\n\t\t\t\t\t\t[-98.904429, 45.939520],\n\t\t\t\t\t\t[-98.905477, 45.939520],\n\t\t\t\t\t\t[-99.005642, 45.939944],\n\t\t\t\t\t\t[-99.005754, 45.939944],\n\t\t\t\t\t\t[-99.003118, 46.282898],\n\t\t\t\t\t\t[-98.034573, 46.282796],\n\t\t\t\t\t\t[-98.029816, 46.282636],\n\t\t\t\t\t\t[-98.006715, 46.282626],\n\t\t\t\t\t\t[-98.008102, 45.936095]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US38023\",\n\t\t\t\t\"STATE\": \"38\",\n\t\t\t\t\"COUNTY\": \"023\",\n\t\t\t\t\"NAME\": \"Divide\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1260.786000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-102.885775, 48.633298],\n\t\t\t\t\t\t[-104.047582, 48.633976],\n\t\t\t\t\t\t[-104.047582, 48.633984],\n\t\t\t\t\t\t[-104.047819, 48.648631],\n\t\t\t\t\t\t[-104.047887, 48.649911],\n\t\t\t\t\t\t[-104.047865, 48.657450],\n\t\t\t\t\t\t[-104.047861, 48.658856],\n\t\t\t\t\t\t[-104.047849, 48.663163],\n\t\t\t\t\t\t[-104.047883, 48.664191],\n\t\t\t\t\t\t[-104.048340, 48.747133],\n\t\t\t\t\t\t[-104.048548, 48.751356],\n\t\t\t\t\t\t[-104.048537, 48.788552],\n\t\t\t\t\t\t[-104.048569, 48.797052],\n\t\t\t\t\t\t[-104.048900, 48.847387],\n\t\t\t\t\t\t[-104.048652, 48.865734],\n\t\t\t\t\t\t[-104.048824, 48.867539],\n\t\t\t\t\t\t[-104.048883, 48.874008],\n\t\t\t\t\t\t[-104.048893, 48.875739],\n\t\t\t\t\t\t[-104.048719, 48.879921],\n\t\t\t\t\t\t[-104.048643, 48.902609],\n\t\t\t\t\t\t[-104.048746, 48.906858],\n\t\t\t\t\t\t[-104.048744, 48.912113],\n\t\t\t\t\t\t[-104.048807, 48.933636],\n\t\t\t\t\t\t[-104.048701, 48.940331],\n\t\t\t\t\t\t[-104.048770, 48.943301],\n\t\t\t\t\t\t[-104.048872, 48.949630],\n\t\t\t\t\t\t[-104.048698, 48.951823],\n\t\t\t\t\t\t[-104.048627, 48.957124],\n\t\t\t\t\t\t[-104.048800, 48.958997],\n\t\t\t\t\t\t[-104.048555, 48.963772],\n\t\t\t\t\t\t[-104.048616, 48.966736],\n\t\t\t\t\t\t[-104.048478, 48.987007],\n\t\t\t\t\t\t[-104.048736, 48.999877],\n\t\t\t\t\t\t[-103.992467, 48.999567],\n\t\t\t\t\t\t[-103.988925, 48.999580],\n\t\t\t\t\t\t[-103.983786, 48.999604],\n\t\t\t\t\t\t[-103.982361, 48.999615],\n\t\t\t\t\t\t[-103.980868, 48.999581],\n\t\t\t\t\t\t[-103.976459, 48.999605],\n\t\t\t\t\t\t[-103.969479, 48.999525],\n\t\t\t\t\t\t[-103.968611, 48.999525],\n\t\t\t\t\t\t[-103.923261, 48.999562],\n\t\t\t\t\t\t[-103.921976, 48.999551],\n\t\t\t\t\t\t[-103.918921, 48.999551],\n\t\t\t\t\t\t[-103.917428, 48.999585],\n\t\t\t\t\t\t[-103.876905, 48.999544],\n\t\t\t\t\t\t[-103.865336, 48.999591],\n\t\t\t\t\t\t[-103.862738, 48.999639],\n\t\t\t\t\t\t[-103.858363, 48.999606],\n\t\t\t\t\t\t[-103.856072, 48.999572],\n\t\t\t\t\t\t[-103.852287, 48.999561],\n\t\t\t\t\t\t[-102.938793, 48.998998],\n\t\t\t\t\t\t[-102.939932, 48.720469],\n\t\t\t\t\t\t[-102.885775, 48.633298]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US38033\",\n\t\t\t\t\"STATE\": \"38\",\n\t\t\t\t\"COUNTY\": \"033\",\n\t\t\t\t\"NAME\": \"Golden Valley\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1000.786000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-104.045335, 46.540929],\n\t\t\t\t\t\t[-104.045271, 46.641443],\n\t\t\t\t\t\t[-104.045271, 46.641449],\n\t\t\t\t\t\t[-104.045474, 46.708738],\n\t\t\t\t\t\t[-104.045572, 46.713881],\n\t\t\t\t\t\t[-104.045370, 46.721332],\n\t\t\t\t\t\t[-104.045403, 46.722177],\n\t\t\t\t\t\t[-104.045402, 46.725423],\n\t\t\t\t\t\t[-104.045542, 46.933887],\n\t\t\t\t\t\t[-104.045535, 46.934009],\n\t\t\t\t\t\t[-104.045566, 46.941231],\n\t\t\t\t\t\t[-104.045076, 47.037589],\n\t\t\t\t\t\t[-104.045052, 47.040863],\n\t\t\t\t\t\t[-104.045195, 47.053639],\n\t\t\t\t\t\t[-104.045227, 47.057502],\n\t\t\t\t\t\t[-104.045259, 47.063901],\n\t\t\t\t\t\t[-104.045354, 47.078574],\n\t\t\t\t\t\t[-104.045018, 47.081202],\n\t\t\t\t\t\t[-104.045081, 47.092813],\n\t\t\t\t\t\t[-104.045159, 47.263874],\n\t\t\t\t\t\t[-104.045091, 47.265953],\n\t\t\t\t\t\t[-104.045057, 47.266868],\n\t\t\t\t\t\t[-104.045088, 47.271406],\n\t\t\t\t\t\t[-104.045155, 47.273930],\n\t\t\t\t\t\t[-104.045121, 47.276969],\n\t\t\t\t\t\t[-104.045307, 47.330128],\n\t\t\t\t\t\t[-103.666723, 47.329354],\n\t\t\t\t\t\t[-103.666986, 46.979789],\n\t\t\t\t\t\t[-103.609545, 46.979902],\n\t\t\t\t\t\t[-103.609210, 46.629797],\n\t\t\t\t\t\t[-103.800825, 46.629563],\n\t\t\t\t\t\t[-103.800881, 46.540747],\n\t\t\t\t\t\t[-104.045335, 46.540929]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US38049\",\n\t\t\t\t\"STATE\": \"38\",\n\t\t\t\t\"COUNTY\": \"049\",\n\t\t\t\t\"NAME\": \"McHenry\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1873.954000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.971325, 47.848703],\n\t\t\t\t\t\t[-100.970497, 48.022645],\n\t\t\t\t\t\t[-101.015024, 48.022739],\n\t\t\t\t\t\t[-101.014138, 48.371432],\n\t\t\t\t\t\t[-101.059802, 48.458448],\n\t\t\t\t\t\t[-101.060047, 48.458615],\n\t\t\t\t\t\t[-101.059660, 48.545337],\n\t\t\t\t\t\t[-101.059624, 48.632424],\n\t\t\t\t\t\t[-100.406780, 48.631878],\n\t\t\t\t\t\t[-100.406388, 48.544657],\n\t\t\t\t\t\t[-100.276660, 48.544813],\n\t\t\t\t\t\t[-100.276401, 48.371334],\n\t\t\t\t\t\t[-100.237332, 48.371246],\n\t\t\t\t\t\t[-100.237092, 48.021866],\n\t\t\t\t\t\t[-100.197558, 48.021857],\n\t\t\t\t\t\t[-100.197996, 47.847600],\n\t\t\t\t\t\t[-100.585161, 47.847480],\n\t\t\t\t\t\t[-100.971325, 47.848703]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28047\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"047\",\n\t\t\t\t\"NAME\": \"Harrison\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 573.994000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-89.095623, 30.231767],\n\t\t\t\t\t\t\t[-89.077259, 30.231680],\n\t\t\t\t\t\t\t[-89.067128, 30.250199],\n\t\t\t\t\t\t\t[-89.063989, 30.246299],\n\t\t\t\t\t\t\t[-89.065097, 30.239929],\n\t\t\t\t\t\t\t[-89.073538, 30.223318],\n\t\t\t\t\t\t\t[-89.091469, 30.202305],\n\t\t\t\t\t\t\t[-89.118222, 30.223343],\n\t\t\t\t\t\t\t[-89.156738, 30.230699],\n\t\t\t\t\t\t\t[-89.095623, 30.231767]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-88.900370, 30.224576],\n\t\t\t\t\t\t\t[-88.909752, 30.220405],\n\t\t\t\t\t\t\t[-88.945498, 30.209646],\n\t\t\t\t\t\t\t[-88.974672, 30.207391],\n\t\t\t\t\t\t\t[-88.980239, 30.207962],\n\t\t\t\t\t\t\t[-88.984249, 30.210320],\n\t\t\t\t\t\t\t[-88.982219, 30.211627],\n\t\t\t\t\t\t\t[-88.976811, 30.210987],\n\t\t\t\t\t\t\t[-88.947872, 30.214179],\n\t\t\t\t\t\t\t[-88.920511, 30.220578],\n\t\t\t\t\t\t\t[-88.908885, 30.225437],\n\t\t\t\t\t\t\t[-88.889797, 30.239665],\n\t\t\t\t\t\t\t[-88.877824, 30.242442],\n\t\t\t\t\t\t\t[-88.873660, 30.241748],\n\t\t\t\t\t\t\t[-88.900370, 30.224576]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-88.884533, 30.677292],\n\t\t\t\t\t\t\t[-88.883130, 30.418798],\n\t\t\t\t\t\t\t[-88.845609, 30.405266],\n\t\t\t\t\t\t\t[-88.857828, 30.392898],\n\t\t\t\t\t\t\t[-88.851442, 30.375355],\n\t\t\t\t\t\t\t[-88.880526, 30.386600],\n\t\t\t\t\t\t\t[-88.883789, 30.389172],\n\t\t\t\t\t\t\t[-88.884829, 30.391998],\n\t\t\t\t\t\t\t[-88.893930, 30.393398],\n\t\t\t\t\t\t\t[-88.922031, 30.393798],\n\t\t\t\t\t\t\t[-88.971233, 30.390798],\n\t\t\t\t\t\t\t[-89.016334, 30.383898],\n\t\t\t\t\t\t\t[-89.083237, 30.368097],\n\t\t\t\t\t\t\t[-89.186840, 30.331197],\n\t\t\t\t\t\t\t[-89.220442, 30.322497],\n\t\t\t\t\t\t\t[-89.271833, 30.305491],\n\t\t\t\t\t\t\t[-89.285744, 30.303097],\n\t\t\t\t\t\t\t[-89.291444, 30.303296],\n\t\t\t\t\t\t\t[-89.294444, 30.307596],\n\t\t\t\t\t\t\t[-89.291844, 30.328096],\n\t\t\t\t\t\t\t[-89.287844, 30.333196],\n\t\t\t\t\t\t\t[-89.281564, 30.331980],\n\t\t\t\t\t\t\t[-89.279818, 30.349790],\n\t\t\t\t\t\t\t[-89.292499, 30.365635],\n\t\t\t\t\t\t\t[-89.315067, 30.375408],\n\t\t\t\t\t\t\t[-89.335942, 30.374016],\n\t\t\t\t\t\t\t[-89.340947, 30.372896],\n\t\t\t\t\t\t\t[-89.341446, 30.647720],\n\t\t\t\t\t\t\t[-89.240073, 30.677160],\n\t\t\t\t\t\t\t[-88.884533, 30.677292]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28105\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"105\",\n\t\t\t\t\"NAME\": \"Oktibbeha\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 458.201000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.813053, 33.286424],\n\t\t\t\t\t\t[-88.988471, 33.286087],\n\t\t\t\t\t\t[-89.088255, 33.286003],\n\t\t\t\t\t\t[-89.088446, 33.533202],\n\t\t\t\t\t\t[-89.088263, 33.562039],\n\t\t\t\t\t\t[-89.018613, 33.562114],\n\t\t\t\t\t\t[-88.671526, 33.565135],\n\t\t\t\t\t\t[-88.671250, 33.506168],\n\t\t\t\t\t\t[-88.669076, 33.286922],\n\t\t\t\t\t\t[-88.813053, 33.286424]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28111\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"111\",\n\t\t\t\t\"NAME\": \"Perry\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 647.252000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.841707, 31.433703],\n\t\t\t\t\t\t[-88.840929, 30.998410],\n\t\t\t\t\t\t[-88.834339, 30.997983],\n\t\t\t\t\t\t[-88.834475, 30.910323],\n\t\t\t\t\t\t[-88.885038, 30.910788],\n\t\t\t\t\t\t[-89.137967, 30.909877],\n\t\t\t\t\t\t[-89.146092, 31.434052],\n\t\t\t\t\t\t[-88.943468, 31.433458],\n\t\t\t\t\t\t[-88.841707, 31.433703]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28113\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"113\",\n\t\t\t\t\"NAME\": \"Pike\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 409.015000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.369371, 31.000335],\n\t\t\t\t\t\t[-90.422117, 30.999810],\n\t\t\t\t\t\t[-90.426849, 30.999776],\n\t\t\t\t\t\t[-90.437351, 30.999730],\n\t\t\t\t\t\t[-90.441725, 30.999729],\n\t\t\t\t\t\t[-90.442479, 30.999722],\n\t\t\t\t\t\t[-90.474094, 30.999798],\n\t\t\t\t\t\t[-90.475928, 30.999740],\n\t\t\t\t\t\t[-90.477284, 30.999717],\n\t\t\t\t\t\t[-90.485876, 30.999740],\n\t\t\t\t\t\t[-90.486749, 30.999693],\n\t\t\t\t\t\t[-90.547615, 30.999723],\n\t\t\t\t\t\t[-90.548199, 31.349574],\n\t\t\t\t\t\t[-90.260391, 31.350274],\n\t\t\t\t\t\t[-90.259555, 31.000657],\n\t\t\t\t\t\t[-90.346007, 31.000363],\n\t\t\t\t\t\t[-90.347230, 31.000359],\n\t\t\t\t\t\t[-90.347241, 31.000359],\n\t\t\t\t\t\t[-90.369371, 31.000335]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28125\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"125\",\n\t\t\t\t\"NAME\": \"Sharkey\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 431.720000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.701845, 33.096294],\n\t\t\t\t\t\t[-90.658049, 33.096514],\n\t\t\t\t\t\t[-90.656632, 32.922510],\n\t\t\t\t\t\t[-90.759753, 32.835763],\n\t\t\t\t\t\t[-90.694631, 32.815642],\n\t\t\t\t\t\t[-90.742634, 32.729225],\n\t\t\t\t\t\t[-90.664408, 32.689129],\n\t\t\t\t\t\t[-90.723159, 32.662128],\n\t\t\t\t\t\t[-90.964864, 32.662798],\n\t\t\t\t\t\t[-90.963753, 32.838133],\n\t\t\t\t\t\t[-90.914337, 33.007697],\n\t\t\t\t\t\t[-90.914465, 33.097417],\n\t\t\t\t\t\t[-90.701845, 33.096294]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28131\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"131\",\n\t\t\t\t\"NAME\": \"Stone\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 445.485000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.884534, 30.735591],\n\t\t\t\t\t\t[-88.884536, 30.714622],\n\t\t\t\t\t\t[-88.884478, 30.713770],\n\t\t\t\t\t\t[-88.884504, 30.713175],\n\t\t\t\t\t\t[-88.884533, 30.677292],\n\t\t\t\t\t\t[-89.240073, 30.677160],\n\t\t\t\t\t\t[-89.341446, 30.647720],\n\t\t\t\t\t\t[-89.340806, 30.909912],\n\t\t\t\t\t\t[-89.137967, 30.909877],\n\t\t\t\t\t\t[-88.885038, 30.910788],\n\t\t\t\t\t\t[-88.884534, 30.735591]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US35047\",\n\t\t\t\t\"STATE\": \"35\",\n\t\t\t\t\"COUNTY\": \"047\",\n\t\t\t\t\"NAME\": \"San Miguel\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 4715.821000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-105.290884, 35.042093],\n\t\t\t\t\t\t[-105.714475, 35.041562],\n\t\t\t\t\t\t[-105.720280, 35.871015],\n\t\t\t\t\t\t[-105.347830, 35.870695],\n\t\t\t\t\t\t[-105.110049, 35.807904],\n\t\t\t\t\t\t[-105.025454, 35.754197],\n\t\t\t\t\t\t[-105.018811, 35.769439],\n\t\t\t\t\t\t[-104.367447, 35.781428],\n\t\t\t\t\t\t[-104.021315, 35.781480],\n\t\t\t\t\t\t[-103.976867, 35.801694],\n\t\t\t\t\t\t[-103.724585, 35.422223],\n\t\t\t\t\t\t[-103.637147, 35.389722],\n\t\t\t\t\t\t[-103.637057, 35.240881],\n\t\t\t\t\t\t[-103.857529, 35.242199],\n\t\t\t\t\t\t[-103.857698, 35.264082],\n\t\t\t\t\t\t[-104.124841, 35.142183],\n\t\t\t\t\t\t[-104.124816, 35.215600],\n\t\t\t\t\t\t[-105.291355, 35.216345],\n\t\t\t\t\t\t[-105.290884, 35.042093]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US35051\",\n\t\t\t\t\"STATE\": \"35\",\n\t\t\t\t\"COUNTY\": \"051\",\n\t\t\t\t\"NAME\": \"Sierra\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 4178.956000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-107.299463, 32.605534],\n\t\t\t\t\t\t[-107.608283, 32.605382],\n\t\t\t\t\t\t[-107.736949, 32.629494],\n\t\t\t\t\t\t[-107.716186, 32.762676],\n\t\t\t\t\t\t[-107.773088, 32.853775],\n\t\t\t\t\t\t[-107.780548, 32.952776],\n\t\t\t\t\t\t[-107.856672, 33.002539],\n\t\t\t\t\t\t[-107.836192, 33.067763],\n\t\t\t\t\t\t[-107.858292, 33.200879],\n\t\t\t\t\t\t[-108.000597, 33.201563],\n\t\t\t\t\t\t[-108.000602, 33.478014],\n\t\t\t\t\t\t[-107.712713, 33.476892],\n\t\t\t\t\t\t[-106.474295, 33.475786],\n\t\t\t\t\t\t[-106.373082, 33.480116],\n\t\t\t\t\t\t[-106.372235, 33.390883],\n\t\t\t\t\t\t[-106.345851, 33.390815],\n\t\t\t\t\t\t[-106.340473, 33.052795],\n\t\t\t\t\t\t[-106.887859, 32.822844],\n\t\t\t\t\t\t[-106.887733, 32.779311],\n\t\t\t\t\t\t[-107.299371, 32.780603],\n\t\t\t\t\t\t[-107.299463, 32.605534]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US35055\",\n\t\t\t\t\"STATE\": \"35\",\n\t\t\t\t\"COUNTY\": \"055\",\n\t\t\t\t\"NAME\": \"Taos\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2203.110000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-105.220613, 36.995169],\n\t\t\t\t\t\t[-105.230632, 36.723784],\n\t\t\t\t\t\t[-105.311842, 36.724471],\n\t\t\t\t\t\t[-105.370638, 36.681032],\n\t\t\t\t\t\t[-105.377745, 36.552096],\n\t\t\t\t\t\t[-105.318718, 36.491693],\n\t\t\t\t\t\t[-105.356826, 36.449504],\n\t\t\t\t\t\t[-105.327301, 36.405430],\n\t\t\t\t\t\t[-105.340907, 36.262245],\n\t\t\t\t\t\t[-105.409677, 36.236814],\n\t\t\t\t\t\t[-105.419992, 36.131704],\n\t\t\t\t\t\t[-105.530380, 36.013014],\n\t\t\t\t\t\t[-105.735883, 36.100133],\n\t\t\t\t\t\t[-105.856947, 36.230434],\n\t\t\t\t\t\t[-106.058364, 36.296978],\n\t\t\t\t\t\t[-105.959812, 36.354420],\n\t\t\t\t\t\t[-105.938754, 36.462402],\n\t\t\t\t\t\t[-105.972491, 36.648088],\n\t\t\t\t\t\t[-105.984436, 36.812065],\n\t\t\t\t\t\t[-105.971889, 36.886247],\n\t\t\t\t\t\t[-106.006634, 36.995343],\n\t\t\t\t\t\t[-105.997472, 36.995417],\n\t\t\t\t\t\t[-105.996159, 36.995418],\n\t\t\t\t\t\t[-105.718470, 36.995846],\n\t\t\t\t\t\t[-105.716471, 36.995849],\n\t\t\t\t\t\t[-105.664720, 36.995874],\n\t\t\t\t\t\t[-105.627470, 36.995679],\n\t\t\t\t\t\t[-105.533922, 36.995875],\n\t\t\t\t\t\t[-105.512485, 36.995777],\n\t\t\t\t\t\t[-105.508836, 36.995895],\n\t\t\t\t\t\t[-105.465182, 36.995991],\n\t\t\t\t\t\t[-105.447255, 36.996017],\n\t\t\t\t\t\t[-105.442459, 36.995994],\n\t\t\t\t\t\t[-105.419310, 36.995856],\n\t\t\t\t\t\t[-105.220613, 36.995169]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36001\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"001\",\n\t\t\t\t\"NAME\": \"Albany\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 522.804000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-73.809369, 42.778869],\n\t\t\t\t\t\t[-73.722663, 42.820677],\n\t\t\t\t\t\t[-73.719863, 42.801277],\n\t\t\t\t\t\t[-73.688362, 42.775477],\n\t\t\t\t\t\t[-73.676762, 42.783277],\n\t\t\t\t\t\t[-73.761265, 42.610379],\n\t\t\t\t\t\t[-73.773161, 42.509377],\n\t\t\t\t\t\t[-73.784594, 42.489947],\n\t\t\t\t\t\t[-73.783721, 42.464231],\n\t\t\t\t\t\t[-74.254303, 42.408207],\n\t\t\t\t\t\t[-74.241572, 42.550802],\n\t\t\t\t\t\t[-74.169725, 42.667426],\n\t\t\t\t\t\t[-74.180274, 42.729979],\n\t\t\t\t\t\t[-73.809603, 42.775016],\n\t\t\t\t\t\t[-73.809369, 42.778869]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36005\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"005\",\n\t\t\t\t\"NAME\": \"Bronx\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 42.096000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-73.773361, 40.859449],\n\t\t\t\t\t\t\t[-73.770552, 40.860330],\n\t\t\t\t\t\t\t[-73.766333, 40.857317],\n\t\t\t\t\t\t\t[-73.765128, 40.854228],\n\t\t\t\t\t\t\t[-73.766032, 40.844961],\n\t\t\t\t\t\t\t[-73.769648, 40.844660],\n\t\t\t\t\t\t\t[-73.773038, 40.848125],\n\t\t\t\t\t\t\t[-73.773717, 40.854831],\n\t\t\t\t\t\t\t[-73.773361, 40.859449]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-73.785964, 40.800862],\n\t\t\t\t\t\t\t[-73.793403, 40.799881],\n\t\t\t\t\t\t\t[-73.811001, 40.805077],\n\t\t\t\t\t\t\t[-73.830548, 40.803162],\n\t\t\t\t\t\t\t[-73.862704, 40.797276],\n\t\t\t\t\t\t\t[-73.866707, 40.793653],\n\t\t\t\t\t\t\t[-73.870992, 40.786979],\n\t\t\t\t\t\t\t[-73.884867, 40.786621],\n\t\t\t\t\t\t\t[-73.889918, 40.787398],\n\t\t\t\t\t\t\t[-73.890586, 40.790145],\n\t\t\t\t\t\t\t[-73.892205, 40.790380],\n\t\t\t\t\t\t\t[-73.899809, 40.792524],\n\t\t\t\t\t\t\t[-73.912506, 40.796180],\n\t\t\t\t\t\t\t[-73.907000, 40.873455],\n\t\t\t\t\t\t\t[-73.907105, 40.876277],\n\t\t\t\t\t\t\t[-73.911405, 40.879278],\n\t\t\t\t\t\t\t[-73.915200, 40.875581],\n\t\t\t\t\t\t\t[-73.933408, 40.882075],\n\t\t\t\t\t\t\t[-73.933406, 40.882078],\n\t\t\t\t\t\t\t[-73.927470, 40.895682],\n\t\t\t\t\t\t\t[-73.919705, 40.913478],\n\t\t\t\t\t\t\t[-73.917905, 40.917577],\n\t\t\t\t\t\t\t[-73.824047, 40.889866],\n\t\t\t\t\t\t\t[-73.823557, 40.889865],\n\t\t\t\t\t\t\t[-73.823617, 40.890413],\n\t\t\t\t\t\t\t[-73.823120, 40.890648],\n\t\t\t\t\t\t\t[-73.823244, 40.891199],\n\t\t\t\t\t\t\t[-73.806395, 40.886801],\n\t\t\t\t\t\t\t[-73.804789, 40.886505],\n\t\t\t\t\t\t\t[-73.783545, 40.881040],\n\t\t\t\t\t\t\t[-73.784803, 40.878528],\n\t\t\t\t\t\t\t[-73.785502, 40.869079],\n\t\t\t\t\t\t\t[-73.788786, 40.858485],\n\t\t\t\t\t\t\t[-73.788060, 40.854131],\n\t\t\t\t\t\t\t[-73.784754, 40.851793],\n\t\t\t\t\t\t\t[-73.782174, 40.847358],\n\t\t\t\t\t\t\t[-73.782093, 40.844616],\n\t\t\t\t\t\t\t[-73.782254, 40.842359],\n\t\t\t\t\t\t\t[-73.781206, 40.838891],\n\t\t\t\t\t\t\t[-73.782577, 40.837601],\n\t\t\t\t\t\t\t[-73.783867, 40.836795],\n\t\t\t\t\t\t\t[-73.785399, 40.838004],\n\t\t\t\t\t\t\t[-73.788221, 40.842036],\n\t\t\t\t\t\t\t[-73.791044, 40.846552],\n\t\t\t\t\t\t\t[-73.789512, 40.851390],\n\t\t\t\t\t\t\t[-73.792253, 40.855825],\n\t\t\t\t\t\t\t[-73.793785, 40.855583],\n\t\t\t\t\t\t\t[-73.797252, 40.852196],\n\t\t\t\t\t\t\t[-73.799543, 40.848027],\n\t\t\t\t\t\t\t[-73.806914, 40.849501],\n\t\t\t\t\t\t\t[-73.812810, 40.846737],\n\t\t\t\t\t\t\t[-73.815574, 40.835129],\n\t\t\t\t\t\t\t[-73.815205, 40.831075],\n\t\t\t\t\t\t\t[-73.811889, 40.825363],\n\t\t\t\t\t\t\t[-73.804518, 40.818546],\n\t\t\t\t\t\t\t[-73.797332, 40.815597],\n\t\t\t\t\t\t\t[-73.785964, 40.800862]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42043\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"043\",\n\t\t\t\t\"NAME\": \"Dauphin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 525.047000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.914970, 40.328484],\n\t\t\t\t\t\t[-76.917270, 40.332715],\n\t\t\t\t\t\t[-76.926180, 40.340980],\n\t\t\t\t\t\t[-76.928521, 40.347985],\n\t\t\t\t\t\t[-76.933589, 40.356045],\n\t\t\t\t\t\t[-77.028645, 40.391197],\n\t\t\t\t\t\t[-76.949397, 40.469037],\n\t\t\t\t\t\t[-76.991939, 40.561475],\n\t\t\t\t\t\t[-76.983673, 40.578259],\n\t\t\t\t\t\t[-76.957444, 40.594677],\n\t\t\t\t\t\t[-76.949414, 40.628163],\n\t\t\t\t\t\t[-76.890875, 40.610096],\n\t\t\t\t\t\t[-76.701624, 40.658082],\n\t\t\t\t\t\t[-76.701566, 40.658048],\n\t\t\t\t\t\t[-76.701507, 40.658014],\n\t\t\t\t\t\t[-76.700933, 40.657680],\n\t\t\t\t\t\t[-76.698863, 40.656477],\n\t\t\t\t\t\t[-76.698173, 40.656076],\n\t\t\t\t\t\t[-76.696916, 40.655321],\n\t\t\t\t\t\t[-76.693145, 40.653057],\n\t\t\t\t\t\t[-76.691889, 40.652303],\n\t\t\t\t\t\t[-76.691603, 40.652118],\n\t\t\t\t\t\t[-76.690746, 40.651565],\n\t\t\t\t\t\t[-76.690560, 40.651445],\n\t\t\t\t\t\t[-76.690461, 40.651381],\n\t\t\t\t\t\t[-76.690418, 40.651353],\n\t\t\t\t\t\t[-76.690398, 40.651340],\n\t\t\t\t\t\t[-76.690289, 40.651271],\n\t\t\t\t\t\t[-76.690247, 40.651244],\n\t\t\t\t\t\t[-76.690172, 40.651195],\n\t\t\t\t\t\t[-76.689950, 40.651051],\n\t\t\t\t\t\t[-76.689876, 40.651003],\n\t\t\t\t\t\t[-76.687847, 40.649693],\n\t\t\t\t\t\t[-76.685028, 40.647873],\n\t\t\t\t\t\t[-76.681741, 40.645797],\n\t\t\t\t\t\t[-76.679700, 40.644509],\n\t\t\t\t\t\t[-76.678351, 40.643656],\n\t\t\t\t\t\t[-76.674304, 40.641100],\n\t\t\t\t\t\t[-76.673096, 40.640337],\n\t\t\t\t\t\t[-76.673026, 40.640292],\n\t\t\t\t\t\t[-76.672956, 40.640248],\n\t\t\t\t\t\t[-76.672894, 40.640208],\n\t\t\t\t\t\t[-76.672833, 40.640169],\n\t\t\t\t\t\t[-76.671471, 40.639296],\n\t\t\t\t\t\t[-76.668823, 40.637599],\n\t\t\t\t\t\t[-76.666982, 40.636502],\n\t\t\t\t\t\t[-76.665469, 40.635601],\n\t\t\t\t\t\t[-76.665355, 40.635533],\n\t\t\t\t\t\t[-76.665083, 40.635359],\n\t\t\t\t\t\t[-76.663935, 40.634624],\n\t\t\t\t\t\t[-76.663554, 40.634380],\n\t\t\t\t\t\t[-76.663552, 40.634379],\n\t\t\t\t\t\t[-76.662765, 40.633898],\n\t\t\t\t\t\t[-76.660405, 40.632455],\n\t\t\t\t\t\t[-76.659618, 40.631975],\n\t\t\t\t\t\t[-76.658169, 40.631089],\n\t\t\t\t\t\t[-76.655755, 40.629613],\n\t\t\t\t\t\t[-76.653822, 40.628431],\n\t\t\t\t\t\t[-76.652374, 40.627546],\n\t\t\t\t\t\t[-76.650217, 40.626228],\n\t\t\t\t\t\t[-76.648348, 40.625086],\n\t\t\t\t\t\t[-76.643730, 40.622304],\n\t\t\t\t\t\t[-76.641566, 40.621001],\n\t\t\t\t\t\t[-76.641488, 40.620955],\n\t\t\t\t\t\t[-76.641433, 40.620922],\n\t\t\t\t\t\t[-76.641259, 40.620812],\n\t\t\t\t\t\t[-76.641183, 40.620765],\n\t\t\t\t\t\t[-76.641162, 40.620752],\n\t\t\t\t\t\t[-76.641102, 40.620714],\n\t\t\t\t\t\t[-76.641082, 40.620702],\n\t\t\t\t\t\t[-76.640780, 40.620513],\n\t\t\t\t\t\t[-76.639877, 40.619948],\n\t\t\t\t\t\t[-76.639697, 40.619836],\n\t\t\t\t\t\t[-76.639576, 40.619760],\n\t\t\t\t\t\t[-76.637041, 40.618175],\n\t\t\t\t\t\t[-76.629437, 40.613420],\n\t\t\t\t\t\t[-76.626903, 40.611835],\n\t\t\t\t\t\t[-76.626499, 40.611582],\n\t\t\t\t\t\t[-76.625287, 40.610824],\n\t\t\t\t\t\t[-76.624883, 40.610572],\n\t\t\t\t\t\t[-76.624686, 40.610449],\n\t\t\t\t\t\t[-76.623653, 40.609799],\n\t\t\t\t\t\t[-76.622898, 40.609324],\n\t\t\t\t\t\t[-76.619966, 40.607481],\n\t\t\t\t\t\t[-76.618738, 40.606709],\n\t\t\t\t\t\t[-76.618353, 40.606466],\n\t\t\t\t\t\t[-76.617203, 40.605739],\n\t\t\t\t\t\t[-76.616824, 40.605500],\n\t\t\t\t\t\t[-76.616819, 40.605497],\n\t\t\t\t\t\t[-76.616703, 40.605423],\n\t\t\t\t\t\t[-76.616465, 40.605273],\n\t\t\t\t\t\t[-76.615405, 40.604603],\n\t\t\t\t\t\t[-76.615053, 40.604380],\n\t\t\t\t\t\t[-76.614610, 40.604100],\n\t\t\t\t\t\t[-76.614473, 40.604007],\n\t\t\t\t\t\t[-76.612764, 40.602846],\n\t\t\t\t\t\t[-76.612414, 40.602609],\n\t\t\t\t\t\t[-76.612186, 40.602473],\n\t\t\t\t\t\t[-76.612146, 40.602449],\n\t\t\t\t\t\t[-76.612026, 40.602377],\n\t\t\t\t\t\t[-76.611987, 40.602354],\n\t\t\t\t\t\t[-76.609607, 40.600932],\n\t\t\t\t\t\t[-76.609284, 40.600739],\n\t\t\t\t\t\t[-76.607903, 40.599915],\n\t\t\t\t\t\t[-76.601283, 40.595723],\n\t\t\t\t\t\t[-76.600084, 40.594964],\n\t\t\t\t\t\t[-76.598611, 40.594061],\n\t\t\t\t\t\t[-76.598325, 40.593885],\n\t\t\t\t\t\t[-76.597468, 40.593360],\n\t\t\t\t\t\t[-76.597183, 40.593185],\n\t\t\t\t\t\t[-76.596992, 40.593064],\n\t\t\t\t\t\t[-76.596422, 40.592701],\n\t\t\t\t\t\t[-76.596232, 40.592580],\n\t\t\t\t\t\t[-76.594270, 40.591333],\n\t\t\t\t\t\t[-76.588384, 40.587592],\n\t\t\t\t\t\t[-76.586423, 40.586345],\n\t\t\t\t\t\t[-76.585822, 40.585963],\n\t\t\t\t\t\t[-76.584480, 40.585110],\n\t\t\t\t\t\t[-76.584014, 40.584831],\n\t\t\t\t\t\t[-76.583404, 40.584466],\n\t\t\t\t\t\t[-76.583115, 40.584293],\n\t\t\t\t\t\t[-76.582250, 40.583775],\n\t\t\t\t\t\t[-76.581962, 40.583603],\n\t\t\t\t\t\t[-76.581662, 40.583423],\n\t\t\t\t\t\t[-76.580763, 40.582886],\n\t\t\t\t\t\t[-76.580464, 40.582707],\n\t\t\t\t\t\t[-76.579789, 40.582303],\n\t\t\t\t\t\t[-76.577765, 40.581091],\n\t\t\t\t\t\t[-76.577091, 40.580688],\n\t\t\t\t\t\t[-76.577073, 40.580677],\n\t\t\t\t\t\t[-76.575558, 40.579770],\n\t\t\t\t\t\t[-76.575216, 40.579566],\n\t\t\t\t\t\t[-76.571818, 40.577533],\n\t\t\t\t\t\t[-76.570965, 40.577007],\n\t\t\t\t\t\t[-76.569480, 40.576092],\n\t\t\t\t\t\t[-76.569445, 40.576070],\n\t\t\t\t\t\t[-76.568682, 40.575599],\n\t\t\t\t\t\t[-76.566393, 40.574189],\n\t\t\t\t\t\t[-76.565631, 40.573719],\n\t\t\t\t\t\t[-76.565486, 40.573629],\n\t\t\t\t\t\t[-76.565051, 40.573361],\n\t\t\t\t\t\t[-76.564906, 40.573272],\n\t\t\t\t\t\t[-76.564446, 40.572989],\n\t\t\t\t\t\t[-76.563068, 40.572141],\n\t\t\t\t\t\t[-76.562649, 40.571883],\n\t\t\t\t\t\t[-76.562609, 40.571859],\n\t\t\t\t\t\t[-76.560911, 40.570815],\n\t\t\t\t\t\t[-76.560743, 40.570712],\n\t\t\t\t\t\t[-76.556354, 40.568014],\n\t\t\t\t\t\t[-76.555148, 40.567273],\n\t\t\t\t\t\t[-76.553283, 40.566127],\n\t\t\t\t\t\t[-76.552318, 40.565533],\n\t\t\t\t\t\t[-76.549423, 40.563753],\n\t\t\t\t\t\t[-76.548460, 40.563160],\n\t\t\t\t\t\t[-76.548127, 40.562955],\n\t\t\t\t\t\t[-76.547134, 40.562344],\n\t\t\t\t\t\t[-76.546803, 40.562141],\n\t\t\t\t\t\t[-76.545140, 40.561118],\n\t\t\t\t\t\t[-76.545071, 40.561076],\n\t\t\t\t\t\t[-76.543218, 40.559937],\n\t\t\t\t\t\t[-76.539858, 40.557915],\n\t\t\t\t\t\t[-76.538117, 40.556868],\n\t\t\t\t\t\t[-76.537576, 40.556525],\n\t\t\t\t\t\t[-76.535954, 40.555499],\n\t\t\t\t\t\t[-76.535414, 40.555157],\n\t\t\t\t\t\t[-76.678040, 40.474717],\n\t\t\t\t\t\t[-76.566339, 40.196644],\n\t\t\t\t\t\t[-76.721620, 40.120070],\n\t\t\t\t\t\t[-76.859023, 40.226328],\n\t\t\t\t\t\t[-76.914970, 40.328484]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42059\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"059\",\n\t\t\t\t\"NAME\": \"Greene\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 575.949000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.916266, 39.720792],\n\t\t\t\t\t\t[-80.308651, 39.721283],\n\t\t\t\t\t\t[-80.309457, 39.721264],\n\t\t\t\t\t\t[-80.421388, 39.721189],\n\t\t\t\t\t\t[-80.519342, 39.721403],\n\t\t\t\t\t\t[-80.519248, 39.936967],\n\t\t\t\t\t\t[-80.519115, 39.939188],\n\t\t\t\t\t\t[-80.519175, 39.956648],\n\t\t\t\t\t\t[-80.519203, 39.959394],\n\t\t\t\t\t\t[-80.519217, 39.962199],\n\t\t\t\t\t\t[-80.379505, 39.994125],\n\t\t\t\t\t\t[-80.157339, 39.999581],\n\t\t\t\t\t\t[-79.998014, 39.983322],\n\t\t\t\t\t\t[-79.915278, 39.880300],\n\t\t\t\t\t\t[-79.916266, 39.720792]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42065\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"065\",\n\t\t\t\t\"NAME\": \"Jefferson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 652.429000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.208878, 41.331861],\n\t\t\t\t\t\t[-79.095096, 41.340658],\n\t\t\t\t\t\t[-78.974478, 41.375476],\n\t\t\t\t\t\t[-78.735280, 41.262915],\n\t\t\t\t\t\t[-78.710248, 41.201859],\n\t\t\t\t\t\t[-78.804532, 41.132186],\n\t\t\t\t\t\t[-78.805167, 40.905980],\n\t\t\t\t\t\t[-79.215310, 40.911346],\n\t\t\t\t\t\t[-79.215214, 41.050515],\n\t\t\t\t\t\t[-79.208878, 41.331861]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42071\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"071\",\n\t\t\t\t\"NAME\": \"Lancaster\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 943.810000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.091764, 40.277692],\n\t\t\t\t\t\t[-75.875162, 40.138071],\n\t\t\t\t\t\t[-75.873375, 40.137107],\n\t\t\t\t\t\t[-75.942997, 40.109266],\n\t\t\t\t\t\t[-75.985056, 39.937871],\n\t\t\t\t\t\t[-75.991644, 39.868713],\n\t\t\t\t\t\t[-76.066685, 39.759969],\n\t\t\t\t\t\t[-76.135584, 39.721556],\n\t\t\t\t\t\t[-76.224191, 39.721328],\n\t\t\t\t\t\t[-76.233259, 39.721305],\n\t\t\t\t\t\t[-76.233277, 39.721305],\n\t\t\t\t\t\t[-76.239805, 39.721305],\n\t\t\t\t\t\t[-76.473580, 39.947352],\n\t\t\t\t\t\t[-76.534524, 40.051348],\n\t\t\t\t\t\t[-76.663825, 40.063227],\n\t\t\t\t\t\t[-76.721620, 40.120070],\n\t\t\t\t\t\t[-76.566339, 40.196644],\n\t\t\t\t\t\t[-76.307578, 40.255066],\n\t\t\t\t\t\t[-76.151215, 40.315971],\n\t\t\t\t\t\t[-76.149509, 40.314454],\n\t\t\t\t\t\t[-76.091764, 40.277692]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42077\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"077\",\n\t\t\t\t\"NAME\": \"Lehigh\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 345.166000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-75.694308, 40.551149],\n\t\t\t\t\t\t[-75.738038, 40.579105],\n\t\t\t\t\t\t[-75.739442, 40.579940],\n\t\t\t\t\t\t[-75.766740, 40.597033],\n\t\t\t\t\t\t[-75.891473, 40.677270],\n\t\t\t\t\t\t[-75.757807, 40.735414],\n\t\t\t\t\t\t[-75.608985, 40.787387],\n\t\t\t\t\t\t[-75.481469, 40.655744],\n\t\t\t\t\t\t[-75.430404, 40.674152],\n\t\t\t\t\t\t[-75.404412, 40.581154],\n\t\t\t\t\t\t[-75.333514, 40.537057],\n\t\t\t\t\t\t[-75.338633, 40.534068],\n\t\t\t\t\t\t[-75.366610, 40.515424],\n\t\t\t\t\t\t[-75.367911, 40.514601],\n\t\t\t\t\t\t[-75.409733, 40.487984],\n\t\t\t\t\t\t[-75.484057, 40.418451],\n\t\t\t\t\t\t[-75.529694, 40.446995],\n\t\t\t\t\t\t[-75.682238, 40.543638],\n\t\t\t\t\t\t[-75.694308, 40.551149]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42083\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"083\",\n\t\t\t\t\"NAME\": \"McKean\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 979.197000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.419118, 41.602188],\n\t\t\t\t\t\t[-78.483409, 41.629898],\n\t\t\t\t\t\t[-78.956056, 41.623863],\n\t\t\t\t\t\t[-78.948689, 41.830480],\n\t\t\t\t\t\t[-78.918854, 41.997961],\n\t\t\t\t\t\t[-78.874759, 41.997559],\n\t\t\t\t\t\t[-78.596650, 41.999877],\n\t\t\t\t\t\t[-78.308128, 41.999415],\n\t\t\t\t\t\t[-78.206606, 41.999989],\n\t\t\t\t\t\t[-78.203422, 41.618157],\n\t\t\t\t\t\t[-78.419299, 41.616853],\n\t\t\t\t\t\t[-78.419118, 41.602188]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US41035\",\n\t\t\t\t\"STATE\": \"41\",\n\t\t\t\t\"COUNTY\": \"035\",\n\t\t\t\t\"NAME\": \"Klamath\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 5941.052000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-122.132044, 43.440445],\n\t\t\t\t\t\t[-122.130944, 43.557149],\n\t\t\t\t\t\t[-122.002675, 43.615228],\n\t\t\t\t\t\t[-121.332982, 43.616629],\n\t\t\t\t\t\t[-121.332708, 43.438570],\n\t\t\t\t\t\t[-121.348576, 43.356691],\n\t\t\t\t\t\t[-121.349880, 42.746671],\n\t\t\t\t\t\t[-120.883340, 42.743883],\n\t\t\t\t\t\t[-120.879481, 41.993781],\n\t\t\t\t\t\t[-121.035195, 41.993323],\n\t\t\t\t\t\t[-121.154347, 41.996352],\n\t\t\t\t\t\t[-121.334385, 41.996655],\n\t\t\t\t\t\t[-121.335734, 41.996518],\n\t\t\t\t\t\t[-121.340517, 41.996220],\n\t\t\t\t\t\t[-121.360253, 41.996680],\n\t\t\t\t\t\t[-121.376101, 41.997026],\n\t\t\t\t\t\t[-121.434977, 41.997022],\n\t\t\t\t\t\t[-121.439610, 41.997080],\n\t\t\t\t\t\t[-121.447540, 41.997169],\n\t\t\t\t\t\t[-121.520250, 41.997983],\n\t\t\t\t\t\t[-121.580865, 41.998668],\n\t\t\t\t\t\t[-121.675348, 42.000351],\n\t\t\t\t\t\t[-121.689159, 42.000584],\n\t\t\t\t\t\t[-121.705045, 42.000766],\n\t\t\t\t\t\t[-121.708199, 42.000815],\n\t\t\t\t\t\t[-122.001119, 42.004017],\n\t\t\t\t\t\t[-122.155408, 42.007429],\n\t\t\t\t\t\t[-122.156666, 42.007384],\n\t\t\t\t\t\t[-122.160438, 42.007637],\n\t\t\t\t\t\t[-122.161328, 42.007637],\n\t\t\t\t\t\t[-122.289527, 42.007764],\n\t\t\t\t\t\t[-122.289533, 42.007764],\n\t\t\t\t\t\t[-122.289740, 42.122561],\n\t\t\t\t\t\t[-122.290351, 42.127092],\n\t\t\t\t\t\t[-122.287446, 42.127168],\n\t\t\t\t\t\t[-122.281856, 42.996556],\n\t\t\t\t\t\t[-122.282245, 43.067547],\n\t\t\t\t\t\t[-122.091539, 43.076050],\n\t\t\t\t\t\t[-122.037839, 43.217250],\n\t\t\t\t\t\t[-121.973841, 43.261728],\n\t\t\t\t\t\t[-122.010239, 43.343249],\n\t\t\t\t\t\t[-122.132044, 43.440445]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US23005\",\n\t\t\t\t\"STATE\": \"23\",\n\t\t\t\t\"COUNTY\": \"005\",\n\t\t\t\t\"NAME\": \"Cumberland\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 835.241000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-70.119671, 43.748621],\n\t\t\t\t\t\t\t[-70.113059, 43.749130],\n\t\t\t\t\t\t\t[-70.097318, 43.757292],\n\t\t\t\t\t\t\t[-70.094986, 43.753211],\n\t\t\t\t\t\t\t[-70.100233, 43.742134],\n\t\t\t\t\t\t\t[-70.107812, 43.734555],\n\t\t\t\t\t\t\t[-70.109561, 43.730474],\n\t\t\t\t\t\t\t[-70.108978, 43.722312],\n\t\t\t\t\t\t\t[-70.124136, 43.708320],\n\t\t\t\t\t\t\t[-70.129383, 43.708320],\n\t\t\t\t\t\t\t[-70.138128, 43.718231],\n\t\t\t\t\t\t\t[-70.138711, 43.727559],\n\t\t\t\t\t\t\t[-70.127051, 43.742717],\n\t\t\t\t\t\t\t[-70.119671, 43.748621]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-70.171245, 43.663498],\n\t\t\t\t\t\t\t[-70.171136, 43.663300],\n\t\t\t\t\t\t\t[-70.190323, 43.642986],\n\t\t\t\t\t\t\t[-70.205934, 43.633633],\n\t\t\t\t\t\t\t[-70.207165, 43.633690],\n\t\t\t\t\t\t\t[-70.211062, 43.641842],\n\t\t\t\t\t\t\t[-70.200116, 43.662978],\n\t\t\t\t\t\t\t[-70.188047, 43.673762],\n\t\t\t\t\t\t\t[-70.184659, 43.674699],\n\t\t\t\t\t\t\t[-70.171245, 43.663498]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-70.186213, 43.682655],\n\t\t\t\t\t\t\t[-70.187536, 43.678669],\n\t\t\t\t\t\t\t[-70.192574, 43.673139],\n\t\t\t\t\t\t\t[-70.207341, 43.662562],\n\t\t\t\t\t\t\t[-70.210825, 43.661695],\n\t\t\t\t\t\t\t[-70.213130, 43.662973],\n\t\t\t\t\t\t\t[-70.213948, 43.666161],\n\t\t\t\t\t\t\t[-70.209627, 43.676308],\n\t\t\t\t\t\t\t[-70.201893, 43.685483],\n\t\t\t\t\t\t\t[-70.196535, 43.688784],\n\t\t\t\t\t\t\t[-70.191041, 43.689071],\n\t\t\t\t\t\t\t[-70.186213, 43.682655]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-70.163884, 43.692404],\n\t\t\t\t\t\t\t[-70.156787, 43.694706],\n\t\t\t\t\t\t\t[-70.146115, 43.701635],\n\t\t\t\t\t\t\t[-70.135563, 43.700658],\n\t\t\t\t\t\t\t[-70.154503, 43.680933],\n\t\t\t\t\t\t\t[-70.168227, 43.675136],\n\t\t\t\t\t\t\t[-70.170284, 43.675441],\n\t\t\t\t\t\t\t[-70.173571, 43.683734],\n\t\t\t\t\t\t\t[-70.171339, 43.687546],\n\t\t\t\t\t\t\t[-70.163884, 43.692404]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-70.087621, 43.699913],\n\t\t\t\t\t\t\t[-70.093704, 43.691800],\n\t\t\t\t\t\t\t[-70.099594, 43.695366],\n\t\t\t\t\t\t\t[-70.115908, 43.682978],\n\t\t\t\t\t\t\t[-70.118291, 43.683343],\n\t\t\t\t\t\t\t[-70.118174, 43.686375],\n\t\t\t\t\t\t\t[-70.115961, 43.689202],\n\t\t\t\t\t\t\t[-70.100683, 43.705962],\n\t\t\t\t\t\t\t[-70.095727, 43.709278],\n\t\t\t\t\t\t\t[-70.093113, 43.710524],\n\t\t\t\t\t\t\t[-70.092137, 43.709468],\n\t\t\t\t\t\t\t[-70.097184, 43.700929],\n\t\t\t\t\t\t\t[-70.091929, 43.698111],\n\t\t\t\t\t\t\t[-70.087621, 43.699913]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-70.595631, 44.032057],\n\t\t\t\t\t\t\t[-70.480078, 44.032078],\n\t\t\t\t\t\t\t[-70.363874, 43.986445],\n\t\t\t\t\t\t\t[-70.315374, 44.037807],\n\t\t\t\t\t\t\t[-70.229244, 43.974064],\n\t\t\t\t\t\t\t[-70.080839, 43.926458],\n\t\t\t\t\t\t\t[-70.034238, 43.975661],\n\t\t\t\t\t\t\t[-69.976226, 43.915276],\n\t\t\t\t\t\t\t[-69.857032, 43.944742],\n\t\t\t\t\t\t\t[-69.887390, 43.777052],\n\t\t\t\t\t\t\t[-69.903164, 43.772390],\n\t\t\t\t\t\t\t[-69.915593, 43.775112],\n\t\t\t\t\t\t\t[-69.927011, 43.780174],\n\t\t\t\t\t\t\t[-69.948539, 43.765948],\n\t\t\t\t\t\t\t[-69.953246, 43.768806],\n\t\t\t\t\t\t\t[-69.958056, 43.767786],\n\t\t\t\t\t\t\t[-69.982574, 43.750801],\n\t\t\t\t\t\t\t[-69.989131, 43.743227],\n\t\t\t\t\t\t\t[-69.994479, 43.728451],\n\t\t\t\t\t\t\t[-69.992396, 43.726852],\n\t\t\t\t\t\t\t[-69.992615, 43.724793],\n\t\t\t\t\t\t\t[-70.001645, 43.717666],\n\t\t\t\t\t\t\t[-70.006954, 43.717065],\n\t\t\t\t\t\t\t[-70.005205, 43.727559],\n\t\t\t\t\t\t\t[-70.001125, 43.733389],\n\t\t\t\t\t\t\t[-69.998793, 43.740385],\n\t\t\t\t\t\t\t[-70.001708, 43.744466],\n\t\t\t\t\t\t\t[-70.041351, 43.738053],\n\t\t\t\t\t\t\t[-70.040768, 43.745049],\n\t\t\t\t\t\t\t[-70.034355, 43.759041],\n\t\t\t\t\t\t\t[-70.025610, 43.769534],\n\t\t\t\t\t\t\t[-70.005205, 43.787607],\n\t\t\t\t\t\t\t[-69.998210, 43.798684],\n\t\t\t\t\t\t\t[-69.999376, 43.805097],\n\t\t\t\t\t\t\t[-70.002874, 43.812093],\n\t\t\t\t\t\t\t[-70.011035, 43.810927],\n\t\t\t\t\t\t\t[-70.026193, 43.822587],\n\t\t\t\t\t\t\t[-70.026193, 43.829000],\n\t\t\t\t\t\t\t[-70.023278, 43.834247],\n\t\t\t\t\t\t\t[-70.006954, 43.844158],\n\t\t\t\t\t\t\t[-70.002874, 43.848239],\n\t\t\t\t\t\t\t[-70.002874, 43.852903],\n\t\t\t\t\t\t\t[-70.009869, 43.859315],\n\t\t\t\t\t\t\t[-70.019197, 43.858733],\n\t\t\t\t\t\t\t[-70.022845, 43.856245],\n\t\t\t\t\t\t\t[-70.032023, 43.849988],\n\t\t\t\t\t\t\t[-70.053594, 43.828417],\n\t\t\t\t\t\t\t[-70.053011, 43.821421],\n\t\t\t\t\t\t\t[-70.064671, 43.813259],\n\t\t\t\t\t\t\t[-70.066420, 43.819672],\n\t\t\t\t\t\t\t[-70.080995, 43.819672],\n\t\t\t\t\t\t\t[-70.107229, 43.809178],\n\t\t\t\t\t\t\t[-70.142792, 43.791688],\n\t\t\t\t\t\t\t[-70.153869, 43.781194],\n\t\t\t\t\t\t\t[-70.153869, 43.774781],\n\t\t\t\t\t\t\t[-70.176023, 43.760790],\n\t\t\t\t\t\t\t[-70.177772, 43.764871],\n\t\t\t\t\t\t\t[-70.172525, 43.773615],\n\t\t\t\t\t\t\t[-70.175440, 43.777113],\n\t\t\t\t\t\t\t[-70.190014, 43.771866],\n\t\t\t\t\t\t\t[-70.194678, 43.766037],\n\t\t\t\t\t\t\t[-70.197593, 43.753211],\n\t\t\t\t\t\t\t[-70.194095, 43.745632],\n\t\t\t\t\t\t\t[-70.194678, 43.742134],\n\t\t\t\t\t\t\t[-70.217998, 43.719980],\n\t\t\t\t\t\t\t[-70.219164, 43.715899],\n\t\t\t\t\t\t\t[-70.215666, 43.707737],\n\t\t\t\t\t\t\t[-70.216832, 43.704822],\n\t\t\t\t\t\t\t[-70.227909, 43.701907],\n\t\t\t\t\t\t\t[-70.231990, 43.704822],\n\t\t\t\t\t\t\t[-70.251812, 43.683251],\n\t\t\t\t\t\t\t[-70.254144, 43.676839],\n\t\t\t\t\t\t\t[-70.252961, 43.675010],\n\t\t\t\t\t\t\t[-70.247321, 43.671973],\n\t\t\t\t\t\t\t[-70.242289, 43.669544],\n\t\t\t\t\t\t\t[-70.239512, 43.665986],\n\t\t\t\t\t\t\t[-70.240119, 43.664685],\n\t\t\t\t\t\t\t[-70.241942, 43.663296],\n\t\t\t\t\t\t\t[-70.240987, 43.659132],\n\t\t\t\t\t\t\t[-70.222990, 43.639023],\n\t\t\t\t\t\t\t[-70.211204, 43.625765],\n\t\t\t\t\t\t\t[-70.217087, 43.596717],\n\t\t\t\t\t\t\t[-70.214369, 43.590445],\n\t\t\t\t\t\t\t[-70.201120, 43.586515],\n\t\t\t\t\t\t\t[-70.196911, 43.565146],\n\t\t\t\t\t\t\t[-70.206123, 43.557627],\n\t\t\t\t\t\t\t[-70.216782, 43.556874],\n\t\t\t\t\t\t\t[-70.219784, 43.562149],\n\t\t\t\t\t\t\t[-70.231963, 43.561118],\n\t\t\t\t\t\t\t[-70.244331, 43.551849],\n\t\t\t\t\t\t\t[-70.261917, 43.553687],\n\t\t\t\t\t\t\t[-70.272497, 43.562616],\n\t\t\t\t\t\t\t[-70.299184, 43.550589],\n\t\t\t\t\t\t\t[-70.307764, 43.544315],\n\t\t\t\t\t\t\t[-70.341793, 43.540484],\n\t\t\t\t\t\t\t[-70.352826, 43.535855],\n\t\t\t\t\t\t\t[-70.353392, 43.535405],\n\t\t\t\t\t\t\t[-70.492009, 43.606769],\n\t\t\t\t\t\t\t[-70.457743, 43.642372],\n\t\t\t\t\t\t\t[-70.549965, 43.715796],\n\t\t\t\t\t\t\t[-70.659622, 43.710902],\n\t\t\t\t\t\t\t[-70.652986, 43.787544],\n\t\t\t\t\t\t\t[-70.782984, 43.814147],\n\t\t\t\t\t\t\t[-70.729780, 43.928330],\n\t\t\t\t\t\t\t[-70.747507, 43.945901],\n\t\t\t\t\t\t\t[-70.715418, 43.961815],\n\t\t\t\t\t\t\t[-70.821803, 44.077089],\n\t\t\t\t\t\t\t[-70.624329, 44.171036],\n\t\t\t\t\t\t\t[-70.587331, 44.122516],\n\t\t\t\t\t\t\t[-70.595631, 44.032057]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US45029\",\n\t\t\t\t\"STATE\": \"45\",\n\t\t\t\t\"COUNTY\": \"029\",\n\t\t\t\t\"NAME\": \"Colleton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1056.491000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.476910, 32.485390],\n\t\t\t\t\t\t[-80.551504, 32.565769],\n\t\t\t\t\t\t[-80.659751, 32.612683],\n\t\t\t\t\t\t[-80.667740, 32.665535],\n\t\t\t\t\t\t[-80.826309, 32.704321],\n\t\t\t\t\t\t[-80.900196, 32.832813],\n\t\t\t\t\t\t[-81.082291, 33.026630],\n\t\t\t\t\t\t[-80.797912, 33.176944],\n\t\t\t\t\t\t[-80.795864, 33.176930],\n\t\t\t\t\t\t[-80.793711, 33.178648],\n\t\t\t\t\t\t[-80.793002, 33.179840],\n\t\t\t\t\t\t[-80.791667, 33.181077],\n\t\t\t\t\t\t[-80.790296, 33.180840],\n\t\t\t\t\t\t[-80.709736, 33.156470],\n\t\t\t\t\t\t[-80.622100, 33.066080],\n\t\t\t\t\t\t[-80.390533, 33.043909],\n\t\t\t\t\t\t[-80.401340, 32.858466],\n\t\t\t\t\t\t[-80.446077, 32.727477],\n\t\t\t\t\t\t[-80.389955, 32.647906],\n\t\t\t\t\t\t[-80.416586, 32.546318],\n\t\t\t\t\t\t[-80.352823, 32.500187],\n\t\t\t\t\t\t[-80.249566, 32.529584],\n\t\t\t\t\t\t[-80.277681, 32.516161],\n\t\t\t\t\t\t[-80.332438, 32.478104],\n\t\t\t\t\t\t[-80.338354, 32.478730],\n\t\t\t\t\t\t[-80.343883, 32.490795],\n\t\t\t\t\t\t[-80.363956, 32.496098],\n\t\t\t\t\t\t[-80.380716, 32.486359],\n\t\t\t\t\t\t[-80.386827, 32.478810],\n\t\t\t\t\t\t[-80.392561, 32.475332],\n\t\t\t\t\t\t[-80.413487, 32.470672],\n\t\t\t\t\t\t[-80.415943, 32.472074],\n\t\t\t\t\t\t[-80.417896, 32.476076],\n\t\t\t\t\t\t[-80.418502, 32.490894],\n\t\t\t\t\t\t[-80.423454, 32.497989],\n\t\t\t\t\t\t[-80.439407, 32.503472],\n\t\t\t\t\t\t[-80.452078, 32.497286],\n\t\t\t\t\t\t[-80.465710, 32.495300],\n\t\t\t\t\t\t[-80.472068, 32.496964],\n\t\t\t\t\t\t[-80.476910, 32.485390]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US45041\",\n\t\t\t\t\"STATE\": \"45\",\n\t\t\t\t\"COUNTY\": \"041\",\n\t\t\t\t\"NAME\": \"Florence\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 799.964000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.544036, 34.219676],\n\t\t\t\t\t\t[-79.568984, 34.175087],\n\t\t\t\t\t\t[-79.515308, 34.097207],\n\t\t\t\t\t\t[-79.482549, 33.937537],\n\t\t\t\t\t\t[-79.324317, 33.799123],\n\t\t\t\t\t\t[-79.496486, 33.775357],\n\t\t\t\t\t\t[-79.798370, 33.835562],\n\t\t\t\t\t\t[-79.875620, 33.885245],\n\t\t\t\t\t\t[-79.945584, 33.885717],\n\t\t\t\t\t\t[-79.974601, 33.946527],\n\t\t\t\t\t\t[-79.893517, 33.988017],\n\t\t\t\t\t\t[-80.000594, 34.047877],\n\t\t\t\t\t\t[-80.072808, 34.086013],\n\t\t\t\t\t\t[-79.999789, 34.129007],\n\t\t\t\t\t\t[-79.883065, 34.204112],\n\t\t\t\t\t\t[-79.657764, 34.305190],\n\t\t\t\t\t\t[-79.644463, 34.301190],\n\t\t\t\t\t\t[-79.641751, 34.299762],\n\t\t\t\t\t\t[-79.635373, 34.301299],\n\t\t\t\t\t\t[-79.633413, 34.297994],\n\t\t\t\t\t\t[-79.547930, 34.230913],\n\t\t\t\t\t\t[-79.544040, 34.225186],\n\t\t\t\t\t\t[-79.544036, 34.219676]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US45043\",\n\t\t\t\t\"STATE\": \"45\",\n\t\t\t\t\"COUNTY\": \"043\",\n\t\t\t\t\"NAME\": \"Georgetown\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 813.547000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.235068, 33.694250],\n\t\t\t\t\t\t[-79.208955, 33.703126],\n\t\t\t\t\t\t[-79.195161, 33.703438],\n\t\t\t\t\t\t[-79.199432, 33.710101],\n\t\t\t\t\t\t[-79.190264, 33.705787],\n\t\t\t\t\t\t[-79.100653, 33.571807],\n\t\t\t\t\t\t[-79.002109, 33.572114],\n\t\t\t\t\t\t[-79.007356, 33.566565],\n\t\t\t\t\t\t[-79.028516, 33.533365],\n\t\t\t\t\t\t[-79.041125, 33.523773],\n\t\t\t\t\t\t[-79.084588, 33.483669],\n\t\t\t\t\t\t[-79.101360, 33.461016],\n\t\t\t\t\t\t[-79.135441, 33.403867],\n\t\t\t\t\t\t[-79.147496, 33.378243],\n\t\t\t\t\t\t[-79.152035, 33.350925],\n\t\t\t\t\t\t[-79.158429, 33.332811],\n\t\t\t\t\t\t[-79.162332, 33.327246],\n\t\t\t\t\t\t[-79.180318, 33.254141],\n\t\t\t\t\t\t[-79.180563, 33.237955],\n\t\t\t\t\t\t[-79.172394, 33.206577],\n\t\t\t\t\t\t[-79.187870, 33.173712],\n\t\t\t\t\t\t[-79.195631, 33.166016],\n\t\t\t\t\t\t[-79.215453, 33.155569],\n\t\t\t\t\t\t[-79.238262, 33.137055],\n\t\t\t\t\t\t[-79.246090, 33.124865],\n\t\t\t\t\t\t[-79.290754, 33.110051],\n\t\t\t\t\t\t[-79.268762, 33.136043],\n\t\t\t\t\t\t[-79.404858, 33.184929],\n\t\t\t\t\t\t[-79.413588, 33.198159],\n\t\t\t\t\t\t[-79.438387, 33.215136],\n\t\t\t\t\t\t[-79.446699, 33.213458],\n\t\t\t\t\t\t[-79.677014, 33.304944],\n\t\t\t\t\t\t[-79.538080, 33.496896],\n\t\t\t\t\t\t[-79.435733, 33.572702],\n\t\t\t\t\t\t[-79.409332, 33.688890],\n\t\t\t\t\t\t[-79.317041, 33.779878],\n\t\t\t\t\t\t[-79.316294, 33.778554],\n\t\t\t\t\t\t[-79.313573, 33.775846],\n\t\t\t\t\t\t[-79.308830, 33.771973],\n\t\t\t\t\t\t[-79.306679, 33.766230],\n\t\t\t\t\t\t[-79.304680, 33.763449],\n\t\t\t\t\t\t[-79.300613, 33.758830],\n\t\t\t\t\t\t[-79.298706, 33.757025],\n\t\t\t\t\t\t[-79.294779, 33.754324],\n\t\t\t\t\t\t[-79.293312, 33.752280],\n\t\t\t\t\t\t[-79.292578, 33.750167],\n\t\t\t\t\t\t[-79.292910, 33.747135],\n\t\t\t\t\t\t[-79.294366, 33.743757],\n\t\t\t\t\t\t[-79.293978, 33.741144],\n\t\t\t\t\t\t[-79.290436, 33.739116],\n\t\t\t\t\t\t[-79.286248, 33.737386],\n\t\t\t\t\t\t[-79.286157, 33.735701],\n\t\t\t\t\t\t[-79.289351, 33.734349],\n\t\t\t\t\t\t[-79.291390, 33.732392],\n\t\t\t\t\t\t[-79.291574, 33.728981],\n\t\t\t\t\t\t[-79.288312, 33.723526],\n\t\t\t\t\t\t[-79.287170, 33.718807],\n\t\t\t\t\t\t[-79.286441, 33.717597],\n\t\t\t\t\t\t[-79.282995, 33.715972],\n\t\t\t\t\t\t[-79.280518, 33.716324],\n\t\t\t\t\t\t[-79.278604, 33.718226],\n\t\t\t\t\t\t[-79.271664, 33.721855],\n\t\t\t\t\t\t[-79.269597, 33.719893],\n\t\t\t\t\t\t[-79.269411, 33.717788],\n\t\t\t\t\t\t[-79.271326, 33.715710],\n\t\t\t\t\t\t[-79.274935, 33.714319],\n\t\t\t\t\t\t[-79.274694, 33.711077],\n\t\t\t\t\t\t[-79.275057, 33.708852],\n\t\t\t\t\t\t[-79.273306, 33.708116],\n\t\t\t\t\t\t[-79.271676, 33.708557],\n\t\t\t\t\t\t[-79.269250, 33.710893],\n\t\t\t\t\t\t[-79.266927, 33.710979],\n\t\t\t\t\t\t[-79.265011, 33.710275],\n\t\t\t\t\t\t[-79.264683, 33.707364],\n\t\t\t\t\t\t[-79.265102, 33.706001],\n\t\t\t\t\t\t[-79.267863, 33.704375],\n\t\t\t\t\t\t[-79.267586, 33.703399],\n\t\t\t\t\t\t[-79.261467, 33.703617],\n\t\t\t\t\t\t[-79.258107, 33.702742],\n\t\t\t\t\t\t[-79.249770, 33.703424],\n\t\t\t\t\t\t[-79.244897, 33.705717],\n\t\t\t\t\t\t[-79.243348, 33.706114],\n\t\t\t\t\t\t[-79.241463, 33.705397],\n\t\t\t\t\t\t[-79.240279, 33.703728],\n\t\t\t\t\t\t[-79.240644, 33.702598],\n\t\t\t\t\t\t[-79.242086, 33.701515],\n\t\t\t\t\t\t[-79.247339, 33.700817],\n\t\t\t\t\t\t[-79.249581, 33.699302],\n\t\t\t\t\t\t[-79.249309, 33.696975],\n\t\t\t\t\t\t[-79.246384, 33.695347],\n\t\t\t\t\t\t[-79.238880, 33.694417],\n\t\t\t\t\t\t[-79.235068, 33.694250]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47023\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"023\",\n\t\t\t\t\"NAME\": \"Chester\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 285.736000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.613611, 35.588089],\n\t\t\t\t\t\t[-88.505354, 35.512030],\n\t\t\t\t\t\t[-88.364004, 35.492801],\n\t\t\t\t\t\t[-88.360829, 35.418972],\n\t\t\t\t\t\t[-88.361521, 35.408877],\n\t\t\t\t\t\t[-88.351765, 35.406735],\n\t\t\t\t\t\t[-88.355500, 35.396994],\n\t\t\t\t\t\t[-88.361929, 35.397044],\n\t\t\t\t\t\t[-88.362572, 35.380994],\n\t\t\t\t\t\t[-88.640934, 35.361017],\n\t\t\t\t\t\t[-88.719761, 35.247550],\n\t\t\t\t\t\t[-88.781768, 35.247587],\n\t\t\t\t\t\t[-88.841607, 35.427826],\n\t\t\t\t\t\t[-88.675867, 35.489163],\n\t\t\t\t\t\t[-88.613611, 35.588089]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US38051\",\n\t\t\t\t\"STATE\": \"38\",\n\t\t\t\t\"COUNTY\": \"051\",\n\t\t\t\t\"NAME\": \"McIntosh\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 974.733000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.718071, 45.940907],\n\t\t\t\t\t\t[-99.718073, 45.940907],\n\t\t\t\t\t\t[-99.747870, 45.940933],\n\t\t\t\t\t\t[-99.749325, 45.940935],\n\t\t\t\t\t\t[-99.749494, 45.940956],\n\t\t\t\t\t\t[-99.750396, 45.940935],\n\t\t\t\t\t\t[-99.838680, 45.941293],\n\t\t\t\t\t\t[-99.880062, 45.941670],\n\t\t\t\t\t\t[-99.878431, 46.282811],\n\t\t\t\t\t\t[-99.037367, 46.283151],\n\t\t\t\t\t\t[-99.003118, 46.282898],\n\t\t\t\t\t\t[-99.005754, 45.939944],\n\t\t\t\t\t\t[-99.092868, 45.940184],\n\t\t\t\t\t\t[-99.102372, 45.940158],\n\t\t\t\t\t\t[-99.212571, 45.940108],\n\t\t\t\t\t\t[-99.213644, 45.940116],\n\t\t\t\t\t\t[-99.221672, 45.940069],\n\t\t\t\t\t\t[-99.222269, 45.940071],\n\t\t\t\t\t\t[-99.257745, 45.940060],\n\t\t\t\t\t\t[-99.276266, 45.940188],\n\t\t\t\t\t\t[-99.283968, 45.940195],\n\t\t\t\t\t\t[-99.297272, 45.940165],\n\t\t\t\t\t\t[-99.317875, 45.940263],\n\t\t\t\t\t\t[-99.344774, 45.940299],\n\t\t\t\t\t\t[-99.344960, 45.940299],\n\t\t\t\t\t\t[-99.378486, 45.940403],\n\t\t\t\t\t\t[-99.385565, 45.940407],\n\t\t\t\t\t\t[-99.401260, 45.940367],\n\t\t\t\t\t\t[-99.490254, 45.940362],\n\t\t\t\t\t\t[-99.493140, 45.940383],\n\t\t\t\t\t\t[-99.588780, 45.941104],\n\t\t\t\t\t\t[-99.611160, 45.941098],\n\t\t\t\t\t\t[-99.671938, 45.941062],\n\t\t\t\t\t\t[-99.692975, 45.940949],\n\t\t\t\t\t\t[-99.718071, 45.940907]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US38057\",\n\t\t\t\t\"STATE\": \"38\",\n\t\t\t\t\"COUNTY\": \"057\",\n\t\t\t\t\"NAME\": \"Mercer\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1042.957000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-101.764392, 46.981306],\n\t\t\t\t\t\t[-102.096675, 46.981159],\n\t\t\t\t\t\t[-102.144878, 46.981425],\n\t\t\t\t\t\t[-102.144771, 47.010307],\n\t\t\t\t\t\t[-102.144453, 47.328079],\n\t\t\t\t\t\t[-102.205601, 47.328071],\n\t\t\t\t\t\t[-102.205350, 47.574506],\n\t\t\t\t\t\t[-102.036648, 47.572705],\n\t\t\t\t\t\t[-101.826148, 47.494402],\n\t\t\t\t\t\t[-101.707537, 47.538278],\n\t\t\t\t\t\t[-101.641696, 47.528379],\n\t\t\t\t\t\t[-101.428037, 47.561986],\n\t\t\t\t\t\t[-101.370866, 47.518696],\n\t\t\t\t\t\t[-101.440139, 47.477299],\n\t\t\t\t\t\t[-101.362536, 47.367998],\n\t\t\t\t\t\t[-101.345735, 47.291897],\n\t\t\t\t\t\t[-101.257031, 47.264895],\n\t\t\t\t\t\t[-101.257944, 47.241347],\n\t\t\t\t\t\t[-101.764419, 47.241423],\n\t\t\t\t\t\t[-101.764392, 46.981306]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40067\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"067\",\n\t\t\t\t\"NAME\": \"Jefferson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 758.832000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.977810, 33.889894],\n\t\t\t\t\t\t[-97.977859, 33.889929],\n\t\t\t\t\t\t[-97.953395, 33.936445],\n\t\t\t\t\t\t[-97.945730, 33.989839],\n\t\t\t\t\t\t[-97.983521, 34.001559],\n\t\t\t\t\t\t[-98.019485, 33.993804],\n\t\t\t\t\t\t[-98.041117, 33.993456],\n\t\t\t\t\t\t[-98.085260, 34.003259],\n\t\t\t\t\t\t[-98.088203, 34.005481],\n\t\t\t\t\t\t[-98.106261, 34.033696],\n\t\t\t\t\t\t[-98.169120, 34.114171],\n\t\t\t\t\t\t[-98.139072, 34.141870],\n\t\t\t\t\t\t[-98.139226, 34.289775],\n\t\t\t\t\t\t[-97.562575, 34.289182],\n\t\t\t\t\t\t[-97.562616, 34.082921],\n\t\t\t\t\t\t[-97.560764, 34.071089],\n\t\t\t\t\t\t[-97.561054, 33.898006],\n\t\t\t\t\t\t[-97.581041, 33.900396],\n\t\t\t\t\t\t[-97.587441, 33.902479],\n\t\t\t\t\t\t[-97.596289, 33.913769],\n\t\t\t\t\t\t[-97.597115, 33.917868],\n\t\t\t\t\t\t[-97.588828, 33.951882],\n\t\t\t\t\t\t[-97.589598, 33.953554],\n\t\t\t\t\t\t[-97.609091, 33.968093],\n\t\t\t\t\t\t[-97.656210, 33.989488],\n\t\t\t\t\t\t[-97.671772, 33.991370],\n\t\t\t\t\t\t[-97.688023, 33.986607],\n\t\t\t\t\t\t[-97.693110, 33.983699],\n\t\t\t\t\t\t[-97.700477, 33.972246],\n\t\t\t\t\t\t[-97.733723, 33.936392],\n\t\t\t\t\t\t[-97.785317, 33.890701],\n\t\t\t\t\t\t[-97.834333, 33.857671],\n\t\t\t\t\t\t[-97.865765, 33.849393],\n\t\t\t\t\t\t[-97.877387, 33.850236],\n\t\t\t\t\t\t[-97.966706, 33.881949],\n\t\t\t\t\t\t[-97.977810, 33.889894]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40077\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"077\",\n\t\t\t\t\"NAME\": \"Latimer\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 722.080000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.927863, 35.058279],\n\t\t\t\t\t\t[-94.927668, 34.942212],\n\t\t\t\t\t\t[-94.998121, 34.942154],\n\t\t\t\t\t\t[-94.997810, 34.855078],\n\t\t\t\t\t\t[-95.059512, 34.855019],\n\t\t\t\t\t\t[-95.059616, 34.680736],\n\t\t\t\t\t\t[-95.514514, 34.681142],\n\t\t\t\t\t\t[-95.507658, 35.029197],\n\t\t\t\t\t\t[-95.349437, 35.029299],\n\t\t\t\t\t\t[-95.349233, 35.058514],\n\t\t\t\t\t\t[-94.927863, 35.058279]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40079\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"079\",\n\t\t\t\t\"NAME\": \"Le Flore\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1589.214000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.441232, 35.119724],\n\t\t\t\t\t\t[-94.447889, 34.933941],\n\t\t\t\t\t\t[-94.449253, 34.895869],\n\t\t\t\t\t\t[-94.449086, 34.894152],\n\t\t\t\t\t\t[-94.449058, 34.890556],\n\t\t\t\t\t\t[-94.449630, 34.875253],\n\t\t\t\t\t\t[-94.450065, 34.861335],\n\t\t\t\t\t\t[-94.450140, 34.858694],\n\t\t\t\t\t\t[-94.450233, 34.855413],\n\t\t\t\t\t\t[-94.454576, 34.728962],\n\t\t\t\t\t\t[-94.457530, 34.642961],\n\t\t\t\t\t\t[-94.457500, 34.634945],\n\t\t\t\t\t\t[-94.460052, 34.547869],\n\t\t\t\t\t\t[-94.460058, 34.545264],\n\t\t\t\t\t\t[-94.461149, 34.507457],\n\t\t\t\t\t\t[-94.937605, 34.506831],\n\t\t\t\t\t\t[-94.937752, 34.680877],\n\t\t\t\t\t\t[-95.059616, 34.680736],\n\t\t\t\t\t\t[-95.059512, 34.855019],\n\t\t\t\t\t\t[-94.997810, 34.855078],\n\t\t\t\t\t\t[-94.998121, 34.942154],\n\t\t\t\t\t\t[-94.927668, 34.942212],\n\t\t\t\t\t\t[-94.927863, 35.058279],\n\t\t\t\t\t\t[-94.927936, 35.202611],\n\t\t\t\t\t\t[-94.814284, 35.202331],\n\t\t\t\t\t\t[-94.813629, 35.323344],\n\t\t\t\t\t\t[-94.750224, 35.356969],\n\t\t\t\t\t\t[-94.668796, 35.295029],\n\t\t\t\t\t\t[-94.594801, 35.327974],\n\t\t\t\t\t\t[-94.493889, 35.301223],\n\t\t\t\t\t\t[-94.433742, 35.386467],\n\t\t\t\t\t\t[-94.432685, 35.380806],\n\t\t\t\t\t\t[-94.431815, 35.362891],\n\t\t\t\t\t\t[-94.434115, 35.306493],\n\t\t\t\t\t\t[-94.435170, 35.291494],\n\t\t\t\t\t\t[-94.435280, 35.287485],\n\t\t\t\t\t\t[-94.435316, 35.275893],\n\t\t\t\t\t\t[-94.435706, 35.274267],\n\t\t\t\t\t\t[-94.435812, 35.271300],\n\t\t\t\t\t\t[-94.437578, 35.242202],\n\t\t\t\t\t\t[-94.437774, 35.239271],\n\t\t\t\t\t\t[-94.438247, 35.210992],\n\t\t\t\t\t\t[-94.438470, 35.208587],\n\t\t\t\t\t\t[-94.439084, 35.197298],\n\t\t\t\t\t\t[-94.439056, 35.193588],\n\t\t\t\t\t\t[-94.439509, 35.171807],\n\t\t\t\t\t\t[-94.439550, 35.169037],\n\t\t\t\t\t\t[-94.440754, 35.128806],\n\t\t\t\t\t\t[-94.441232, 35.119724]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40089\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"089\",\n\t\t\t\t\"NAME\": \"McCurtain\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1850.005000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.746096, 33.703016],\n\t\t\t\t\t\t[-94.760604, 33.727054],\n\t\t\t\t\t\t[-94.822473, 33.732716],\n\t\t\t\t\t\t[-94.869300, 33.745871],\n\t\t\t\t\t\t[-95.039452, 33.860621],\n\t\t\t\t\t\t[-95.062284, 33.903618],\n\t\t\t\t\t\t[-95.063459, 33.914040],\n\t\t\t\t\t\t[-95.067253, 33.917351],\n\t\t\t\t\t\t[-95.129572, 33.936718],\n\t\t\t\t\t\t[-95.155981, 33.944027],\n\t\t\t\t\t\t[-95.156521, 34.156965],\n\t\t\t\t\t\t[-95.151233, 34.243906],\n\t\t\t\t\t\t[-95.046585, 34.243671],\n\t\t\t\t\t\t[-95.046746, 34.507229],\n\t\t\t\t\t\t[-94.937605, 34.506831],\n\t\t\t\t\t\t[-94.461149, 34.507457],\n\t\t\t\t\t\t[-94.463671, 34.419585],\n\t\t\t\t\t\t[-94.463816, 34.414465],\n\t\t\t\t\t\t[-94.464176, 34.402713],\n\t\t\t\t\t\t[-94.465425, 34.359548],\n\t\t\t\t\t\t[-94.465847, 34.352073],\n\t\t\t\t\t\t[-94.470292, 34.189864],\n\t\t\t\t\t\t[-94.474896, 34.021877],\n\t\t\t\t\t\t[-94.474896, 34.021838],\n\t\t\t\t\t\t[-94.474895, 34.019655],\n\t\t\t\t\t\t[-94.476957, 33.957365],\n\t\t\t\t\t\t[-94.477038, 33.953838],\n\t\t\t\t\t\t[-94.477318, 33.940932],\n\t\t\t\t\t\t[-94.477387, 33.937759],\n\t\t\t\t\t\t[-94.478842, 33.881485],\n\t\t\t\t\t\t[-94.478994, 33.881197],\n\t\t\t\t\t\t[-94.479954, 33.851330],\n\t\t\t\t\t\t[-94.480574, 33.830166],\n\t\t\t\t\t\t[-94.481355, 33.802887],\n\t\t\t\t\t\t[-94.481361, 33.802649],\n\t\t\t\t\t\t[-94.481543, 33.795719],\n\t\t\t\t\t\t[-94.481842, 33.789008],\n\t\t\t\t\t\t[-94.482682, 33.756286],\n\t\t\t\t\t\t[-94.482777, 33.753638],\n\t\t\t\t\t\t[-94.482862, 33.750780],\n\t\t\t\t\t\t[-94.482870, 33.750564],\n\t\t\t\t\t\t[-94.483874, 33.716733],\n\t\t\t\t\t\t[-94.483840, 33.711332],\n\t\t\t\t\t\t[-94.484616, 33.691592],\n\t\t\t\t\t\t[-94.484520, 33.687909],\n\t\t\t\t\t\t[-94.485528, 33.663388],\n\t\t\t\t\t\t[-94.485577, 33.653310],\n\t\t\t\t\t\t[-94.485875, 33.637867],\n\t\t\t\t\t\t[-94.487611, 33.628544],\n\t\t\t\t\t\t[-94.490684, 33.625586],\n\t\t\t\t\t\t[-94.524055, 33.615765],\n\t\t\t\t\t\t[-94.528380, 33.615995],\n\t\t\t\t\t\t[-94.660964, 33.660322],\n\t\t\t\t\t\t[-94.735128, 33.691267],\n\t\t\t\t\t\t[-94.746096, 33.703016]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40095\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"095\",\n\t\t\t\t\"NAME\": \"Marshall\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 371.080000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.922114, 33.959579],\n\t\t\t\t\t\t[-96.934508, 33.953748],\n\t\t\t\t\t\t[-96.969627, 34.071020],\n\t\t\t\t\t\t[-96.933671, 34.172553],\n\t\t\t\t\t\t[-96.669965, 34.172254],\n\t\t\t\t\t\t[-96.585355, 34.114459],\n\t\t\t\t\t\t[-96.548028, 34.063302],\n\t\t\t\t\t\t[-96.624748, 34.005417],\n\t\t\t\t\t\t[-96.577010, 33.964406],\n\t\t\t\t\t\t[-96.613494, 33.878321],\n\t\t\t\t\t\t[-96.615356, 33.881114],\n\t\t\t\t\t\t[-96.622165, 33.885977],\n\t\t\t\t\t\t[-96.633351, 33.889382],\n\t\t\t\t\t\t[-96.646968, 33.895218],\n\t\t\t\t\t\t[-96.658640, 33.900081],\n\t\t\t\t\t\t[-96.672258, 33.899595],\n\t\t\t\t\t\t[-96.678580, 33.892786],\n\t\t\t\t\t\t[-96.682471, 33.883059],\n\t\t\t\t\t\t[-96.685389, 33.872846],\n\t\t\t\t\t\t[-96.689280, 33.861660],\n\t\t\t\t\t\t[-96.694629, 33.849988],\n\t\t\t\t\t\t[-96.700952, 33.840748],\n\t\t\t\t\t\t[-96.707274, 33.835398],\n\t\t\t\t\t\t[-96.712422, 33.831633],\n\t\t\t\t\t\t[-96.761588, 33.824406],\n\t\t\t\t\t\t[-96.856090, 33.847490],\n\t\t\t\t\t\t[-96.866438, 33.853149],\n\t\t\t\t\t\t[-96.883010, 33.868019],\n\t\t\t\t\t\t[-96.895728, 33.896414],\n\t\t\t\t\t\t[-96.899442, 33.933728],\n\t\t\t\t\t\t[-96.907387, 33.950025],\n\t\t\t\t\t\t[-96.916300, 33.957798],\n\t\t\t\t\t\t[-96.922114, 33.959579]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40105\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"105\",\n\t\t\t\t\"NAME\": \"Nowata\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 565.777000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.660770, 36.597520],\n\t\t\t\t\t\t[-95.809617, 36.597476],\n\t\t\t\t\t\t[-95.809820, 36.941930],\n\t\t\t\t\t\t[-95.786762, 36.999310],\n\t\t\t\t\t\t[-95.768719, 36.999205],\n\t\t\t\t\t\t[-95.759905, 36.999271],\n\t\t\t\t\t\t[-95.741908, 36.999244],\n\t\t\t\t\t\t[-95.718054, 36.999255],\n\t\t\t\t\t\t[-95.714887, 36.999279],\n\t\t\t\t\t\t[-95.710380, 36.999371],\n\t\t\t\t\t\t[-95.696659, 36.999215],\n\t\t\t\t\t\t[-95.686452, 36.999349],\n\t\t\t\t\t\t[-95.664301, 36.999322],\n\t\t\t\t\t\t[-95.630079, 36.999320],\n\t\t\t\t\t\t[-95.624350, 36.999360],\n\t\t\t\t\t\t[-95.615934, 36.999365],\n\t\t\t\t\t\t[-95.612140, 36.999321],\n\t\t\t\t\t\t[-95.573598, 36.999310],\n\t\t\t\t\t\t[-95.534401, 36.999332],\n\t\t\t\t\t\t[-95.522415, 36.999281],\n\t\t\t\t\t\t[-95.511578, 36.999235],\n\t\t\t\t\t\t[-95.407683, 36.999241],\n\t\t\t\t\t\t[-95.407572, 36.999241],\n\t\t\t\t\t\t[-95.431731, 36.942776],\n\t\t\t\t\t\t[-95.431570, 36.597540],\n\t\t\t\t\t\t[-95.660770, 36.597520]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40113\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"113\",\n\t\t\t\t\"NAME\": \"Osage\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2246.358000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.268287, 36.161980],\n\t\t\t\t\t\t[-96.243295, 36.206677],\n\t\t\t\t\t\t[-96.326732, 36.226551],\n\t\t\t\t\t\t[-96.433812, 36.285889],\n\t\t\t\t\t\t[-96.457684, 36.332664],\n\t\t\t\t\t\t[-96.515229, 36.298332],\n\t\t\t\t\t\t[-96.573481, 36.315709],\n\t\t\t\t\t\t[-96.518709, 36.377576],\n\t\t\t\t\t\t[-96.575697, 36.374347],\n\t\t\t\t\t\t[-96.635727, 36.425908],\n\t\t\t\t\t\t[-96.710769, 36.437656],\n\t\t\t\t\t\t[-96.753554, 36.562601],\n\t\t\t\t\t\t[-96.940235, 36.455525],\n\t\t\t\t\t\t[-97.009785, 36.506935],\n\t\t\t\t\t\t[-96.902643, 36.551388],\n\t\t\t\t\t\t[-96.912756, 36.598949],\n\t\t\t\t\t\t[-97.057414, 36.593647],\n\t\t\t\t\t\t[-97.064107, 36.684207],\n\t\t\t\t\t\t[-96.931943, 36.686097],\n\t\t\t\t\t\t[-96.889475, 36.751230],\n\t\t\t\t\t\t[-96.752382, 36.782092],\n\t\t\t\t\t\t[-96.749838, 36.998988],\n\t\t\t\t\t\t[-96.741270, 36.999239],\n\t\t\t\t\t\t[-96.736590, 36.999286],\n\t\t\t\t\t\t[-96.710482, 36.999271],\n\t\t\t\t\t\t[-96.705431, 36.999203],\n\t\t\t\t\t\t[-96.525493, 36.999147],\n\t\t\t\t\t\t[-96.415412, 36.999113],\n\t\t\t\t\t\t[-96.394272, 36.999221],\n\t\t\t\t\t\t[-96.279079, 36.999272],\n\t\t\t\t\t\t[-96.276368, 36.999271],\n\t\t\t\t\t\t[-96.217571, 36.999070],\n\t\t\t\t\t\t[-96.200028, 36.999028],\n\t\t\t\t\t\t[-96.184768, 36.999211],\n\t\t\t\t\t\t[-96.154017, 36.999161],\n\t\t\t\t\t\t[-96.152384, 36.999051],\n\t\t\t\t\t\t[-96.149709, 36.999040],\n\t\t\t\t\t\t[-96.147143, 36.999022],\n\t\t\t\t\t\t[-96.143207, 36.999134],\n\t\t\t\t\t\t[-96.141210, 36.998973],\n\t\t\t\t\t\t[-96.000810, 36.998860],\n\t\t\t\t\t\t[-96.001171, 36.423686],\n\t\t\t\t\t\t[-96.001055, 36.161294],\n\t\t\t\t\t\t[-96.268287, 36.161980]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36015\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"015\",\n\t\t\t\t\"NAME\": \"Chemung\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 407.352000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.927084, 42.001674],\n\t\t\t\t\t\t[-76.937084, 42.001674],\n\t\t\t\t\t\t[-76.942585, 42.001574],\n\t\t\t\t\t\t[-76.965686, 42.001274],\n\t\t\t\t\t\t[-76.965728, 42.001274],\n\t\t\t\t\t\t[-76.965028, 42.278495],\n\t\t\t\t\t\t[-76.733912, 42.293720],\n\t\t\t\t\t\t[-76.642256, 42.233721],\n\t\t\t\t\t\t[-76.619303, 42.282853],\n\t\t\t\t\t\t[-76.561601, 42.281986],\n\t\t\t\t\t\t[-76.538349, 42.281755],\n\t\t\t\t\t\t[-76.557624, 42.000149],\n\t\t\t\t\t\t[-76.558118, 42.000155],\n\t\t\t\t\t\t[-76.815878, 42.001673],\n\t\t\t\t\t\t[-76.835079, 42.001773],\n\t\t\t\t\t\t[-76.920784, 42.001774],\n\t\t\t\t\t\t[-76.921884, 42.001674],\n\t\t\t\t\t\t[-76.927084, 42.001674]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36023\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"023\",\n\t\t\t\t\"NAME\": \"Cortland\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 498.760000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.130181, 42.410337],\n\t\t\t\t\t\t[-76.253359, 42.407568],\n\t\t\t\t\t\t[-76.265584, 42.623588],\n\t\t\t\t\t\t[-76.274673, 42.771257],\n\t\t\t\t\t\t[-75.896079, 42.790964],\n\t\t\t\t\t\t[-75.889832, 42.723844],\n\t\t\t\t\t\t[-75.864020, 42.415702],\n\t\t\t\t\t\t[-76.130181, 42.410337]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36025\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"025\",\n\t\t\t\t\"NAME\": \"Delaware\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1442.440000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-75.359579, 41.999445],\n\t\t\t\t\t\t[-75.421776, 42.042030],\n\t\t\t\t\t\t[-75.419664, 42.150436],\n\t\t\t\t\t\t[-75.418827, 42.180702],\n\t\t\t\t\t\t[-75.418438, 42.186797],\n\t\t\t\t\t\t[-75.418689, 42.188022],\n\t\t\t\t\t\t[-75.418807, 42.188104],\n\t\t\t\t\t\t[-75.418544, 42.189504],\n\t\t\t\t\t\t[-75.418421, 42.195032],\n\t\t\t\t\t\t[-75.415319, 42.314151],\n\t\t\t\t\t\t[-75.197237, 42.358329],\n\t\t\t\t\t\t[-74.974940, 42.467488],\n\t\t\t\t\t\t[-74.711580, 42.517799],\n\t\t\t\t\t\t[-74.618895, 42.424389],\n\t\t\t\t\t\t[-74.443506, 42.355017],\n\t\t\t\t\t\t[-74.537310, 42.201424],\n\t\t\t\t\t\t[-74.451713, 42.169225],\n\t\t\t\t\t\t[-74.780693, 42.016375],\n\t\t\t\t\t\t[-74.997252, 41.918485],\n\t\t\t\t\t\t[-75.146446, 41.850899],\n\t\t\t\t\t\t[-75.263005, 41.885109],\n\t\t\t\t\t\t[-75.279094, 41.938917],\n\t\t\t\t\t\t[-75.292589, 41.953897],\n\t\t\t\t\t\t[-75.341868, 41.993262],\n\t\t\t\t\t\t[-75.359579, 41.999445]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36029\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"029\",\n\t\t\t\t\"NAME\": \"Erie\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1042.693000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.136725, 42.569693],\n\t\t\t\t\t\t[-79.129630, 42.589824],\n\t\t\t\t\t\t[-79.126261, 42.590937],\n\t\t\t\t\t\t[-79.121921, 42.594234],\n\t\t\t\t\t\t[-79.113713, 42.605994],\n\t\t\t\t\t\t[-79.111361, 42.613358],\n\t\t\t\t\t\t[-79.078761, 42.640058],\n\t\t\t\t\t\t[-79.073261, 42.639958],\n\t\t\t\t\t\t[-79.063760, 42.644758],\n\t\t\t\t\t\t[-79.062261, 42.668358],\n\t\t\t\t\t\t[-79.048860, 42.689158],\n\t\t\t\t\t\t[-79.018860, 42.701558],\n\t\t\t\t\t\t[-79.006160, 42.704558],\n\t\t\t\t\t\t[-78.991159, 42.705358],\n\t\t\t\t\t\t[-78.944158, 42.731958],\n\t\t\t\t\t\t[-78.918157, 42.737258],\n\t\t\t\t\t\t[-78.868556, 42.770258],\n\t\t\t\t\t\t[-78.853455, 42.783958],\n\t\t\t\t\t\t[-78.851355, 42.791758],\n\t\t\t\t\t\t[-78.856456, 42.800258],\n\t\t\t\t\t\t[-78.859356, 42.800658],\n\t\t\t\t\t\t[-78.863656, 42.813058],\n\t\t\t\t\t\t[-78.865656, 42.826758],\n\t\t\t\t\t\t[-78.860445, 42.835110],\n\t\t\t\t\t\t[-78.859456, 42.841358],\n\t\t\t\t\t\t[-78.865592, 42.852358],\n\t\t\t\t\t\t[-78.872227, 42.853306],\n\t\t\t\t\t\t[-78.882557, 42.867258],\n\t\t\t\t\t\t[-78.891655, 42.884845],\n\t\t\t\t\t\t[-78.912458, 42.886557],\n\t\t\t\t\t\t[-78.905758, 42.899957],\n\t\t\t\t\t\t[-78.905659, 42.923357],\n\t\t\t\t\t\t[-78.909159, 42.933257],\n\t\t\t\t\t\t[-78.918859, 42.946857],\n\t\t\t\t\t\t[-78.921206, 42.948422],\n\t\t\t\t\t\t[-78.932360, 42.955857],\n\t\t\t\t\t\t[-78.972524, 42.966804],\n\t\t\t\t\t\t[-79.011563, 42.985256],\n\t\t\t\t\t\t[-79.019964, 42.994756],\n\t\t\t\t\t\t[-79.028353, 43.066897],\n\t\t\t\t\t\t[-79.009664, 43.069558],\n\t\t\t\t\t\t[-78.945262, 43.066956],\n\t\t\t\t\t\t[-78.828805, 43.030139],\n\t\t\t\t\t\t[-78.733606, 43.084219],\n\t\t\t\t\t\t[-78.464449, 43.088703],\n\t\t\t\t\t\t[-78.463887, 42.924325],\n\t\t\t\t\t\t[-78.464381, 42.867461],\n\t\t\t\t\t\t[-78.463940, 42.536332],\n\t\t\t\t\t\t[-78.695937, 42.471940],\n\t\t\t\t\t\t[-78.920446, 42.442556],\n\t\t\t\t\t\t[-78.991702, 42.529249],\n\t\t\t\t\t\t[-79.060777, 42.537853],\n\t\t\t\t\t\t[-79.136725, 42.569693]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40139\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"139\",\n\t\t\t\t\"NAME\": \"Texas\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2041.261000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.977088, 36.499595],\n\t\t\t\t\t\t[-101.045331, 36.499540],\n\t\t\t\t\t\t[-101.052418, 36.499563],\n\t\t\t\t\t\t[-101.085156, 36.499244],\n\t\t\t\t\t\t[-101.623915, 36.499528],\n\t\t\t\t\t\t[-101.649966, 36.499573],\n\t\t\t\t\t\t[-101.653708, 36.499573],\n\t\t\t\t\t\t[-101.698685, 36.499508],\n\t\t\t\t\t\t[-101.709314, 36.499722],\n\t\t\t\t\t\t[-101.779435, 36.499734],\n\t\t\t\t\t\t[-101.780610, 36.499727],\n\t\t\t\t\t\t[-101.781987, 36.499718],\n\t\t\t\t\t\t[-101.783359, 36.499709],\n\t\t\t\t\t\t[-101.788110, 36.499678],\n\t\t\t\t\t\t[-101.826498, 36.499535],\n\t\t\t\t\t\t[-101.826565, 36.499654],\n\t\t\t\t\t\t[-102.032339, 36.500066],\n\t\t\t\t\t\t[-102.028204, 36.993125],\n\t\t\t\t\t\t[-102.000447, 36.993272],\n\t\t\t\t\t\t[-102.000447, 36.993249],\n\t\t\t\t\t\t[-101.902440, 36.993702],\n\t\t\t\t\t\t[-101.601593, 36.995095],\n\t\t\t\t\t\t[-101.600396, 36.995153],\n\t\t\t\t\t\t[-101.555260, 36.995414],\n\t\t\t\t\t\t[-101.555239, 36.995414],\n\t\t\t\t\t\t[-101.519066, 36.995546],\n\t\t\t\t\t\t[-101.485326, 36.995611],\n\t\t\t\t\t\t[-101.415005, 36.995966],\n\t\t\t\t\t\t[-101.413868, 36.996008],\n\t\t\t\t\t\t[-101.378180, 36.996164],\n\t\t\t\t\t\t[-101.359674, 36.996232],\n\t\t\t\t\t\t[-101.357797, 36.996271],\n\t\t\t\t\t\t[-101.212909, 36.997044],\n\t\t\t\t\t\t[-101.211486, 36.997124],\n\t\t\t\t\t\t[-101.066742, 36.997921],\n\t\t\t\t\t\t[-101.053589, 36.997967],\n\t\t\t\t\t\t[-101.012641, 36.998176],\n\t\t\t\t\t\t[-100.996502, 36.998044],\n\t\t\t\t\t\t[-100.945566, 36.998152],\n\t\t\t\t\t\t[-100.945469, 36.998153],\n\t\t\t\t\t\t[-100.954153, 36.499599],\n\t\t\t\t\t\t[-100.977088, 36.499595]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40151\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"151\",\n\t\t\t\t\"NAME\": \"Woods\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1286.454000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.295186, 36.819566],\n\t\t\t\t\t\t[-99.372996, 36.878610],\n\t\t\t\t\t\t[-99.456203, 36.999471],\n\t\t\t\t\t\t[-99.277506, 36.999579],\n\t\t\t\t\t\t[-99.248120, 36.999565],\n\t\t\t\t\t\t[-99.129449, 36.999422],\n\t\t\t\t\t\t[-99.124883, 36.999420],\n\t\t\t\t\t\t[-99.029337, 36.999595],\n\t\t\t\t\t\t[-99.000303, 36.999510],\n\t\t\t\t\t\t[-98.994371, 36.999493],\n\t\t\t\t\t\t[-98.880580, 36.999309],\n\t\t\t\t\t\t[-98.880009, 36.999263],\n\t\t\t\t\t\t[-98.869449, 36.999286],\n\t\t\t\t\t\t[-98.797452, 36.999229],\n\t\t\t\t\t\t[-98.793711, 36.999227],\n\t\t\t\t\t\t[-98.791936, 36.999255],\n\t\t\t\t\t\t[-98.761597, 36.999425],\n\t\t\t\t\t\t[-98.718465, 36.999180],\n\t\t\t\t\t\t[-98.714512, 36.999060],\n\t\t\t\t\t\t[-98.544872, 36.998997],\n\t\t\t\t\t\t[-98.544660, 36.998996],\n\t\t\t\t\t\t[-98.533617, 36.463230],\n\t\t\t\t\t\t[-98.533550, 36.397592],\n\t\t\t\t\t\t[-98.625361, 36.392595],\n\t\t\t\t\t\t[-98.807820, 36.460744],\n\t\t\t\t\t\t[-98.843646, 36.506248],\n\t\t\t\t\t\t[-98.960334, 36.506914],\n\t\t\t\t\t\t[-98.959973, 36.598991],\n\t\t\t\t\t\t[-99.139855, 36.783040],\n\t\t\t\t\t\t[-99.295186, 36.819566]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US41001\",\n\t\t\t\t\"STATE\": \"41\",\n\t\t\t\t\"COUNTY\": \"001\",\n\t\t\t\t\"NAME\": \"Baker\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 3068.357000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-116.931499, 44.792281],\n\t\t\t\t\t\t[-117.016216, 44.755572],\n\t\t\t\t\t\t[-117.038270, 44.748179],\n\t\t\t\t\t\t[-117.044217, 44.745140],\n\t\t\t\t\t\t[-117.062273, 44.727143],\n\t\t\t\t\t\t[-117.095868, 44.664737],\n\t\t\t\t\t\t[-117.115900, 44.623339],\n\t\t\t\t\t\t[-117.144161, 44.545647],\n\t\t\t\t\t\t[-117.149242, 44.536151],\n\t\t\t\t\t\t[-117.156489, 44.528312],\n\t\t\t\t\t\t[-117.208454, 44.485928],\n\t\t\t\t\t\t[-117.214889, 44.466901],\n\t\t\t\t\t\t[-117.189769, 44.336585],\n\t\t\t\t\t\t[-117.191546, 44.329621],\n\t\t\t\t\t\t[-117.194827, 44.310540],\n\t\t\t\t\t\t[-117.196597, 44.302280],\n\t\t\t\t\t\t[-117.197506, 44.297280],\n\t\t\t\t\t\t[-117.486153, 44.301420],\n\t\t\t\t\t\t[-117.485899, 44.387696],\n\t\t\t\t\t\t[-117.590992, 44.444461],\n\t\t\t\t\t\t[-117.971596, 44.443328],\n\t\t\t\t\t\t[-118.152340, 44.299583],\n\t\t\t\t\t\t[-118.232140, 44.256083],\n\t\t\t\t\t\t[-118.497249, 44.255084],\n\t\t\t\t\t\t[-118.469050, 44.334583],\n\t\t\t\t\t\t[-118.409749, 44.378683],\n\t\t\t\t\t\t[-118.408450, 44.452782],\n\t\t\t\t\t\t[-118.306150, 44.588979],\n\t\t\t\t\t\t[-118.372953, 44.645376],\n\t\t\t\t\t\t[-118.504257, 44.665575],\n\t\t\t\t\t\t[-118.519257, 44.706374],\n\t\t\t\t\t\t[-118.285153, 44.751172],\n\t\t\t\t\t\t[-118.296153, 44.862664],\n\t\t\t\t\t\t[-118.236652, 44.861565],\n\t\t\t\t\t\t[-118.244751, 44.958256],\n\t\t\t\t\t\t[-118.130309, 45.045124],\n\t\t\t\t\t\t[-117.969185, 44.995803],\n\t\t\t\t\t\t[-117.843430, 45.058477],\n\t\t\t\t\t\t[-117.777504, 44.992161],\n\t\t\t\t\t\t[-117.563714, 44.992788],\n\t\t\t\t\t\t[-117.563138, 45.079588],\n\t\t\t\t\t\t[-117.266572, 45.080805],\n\t\t\t\t\t\t[-116.783902, 45.079022],\n\t\t\t\t\t\t[-116.845369, 45.017059],\n\t\t\t\t\t\t[-116.858277, 44.978008],\n\t\t\t\t\t\t[-116.850737, 44.958113],\n\t\t\t\t\t\t[-116.844653, 44.949338],\n\t\t\t\t\t\t[-116.835702, 44.940633],\n\t\t\t\t\t\t[-116.831990, 44.933007],\n\t\t\t\t\t\t[-116.852427, 44.887577],\n\t\t\t\t\t\t[-116.891463, 44.840531],\n\t\t\t\t\t\t[-116.931499, 44.792281]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US41007\",\n\t\t\t\t\"STATE\": \"41\",\n\t\t\t\t\"COUNTY\": \"007\",\n\t\t\t\t\"NAME\": \"Clatsop\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 829.049000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-123.969340, 45.783197],\n\t\t\t\t\t\t[-123.961544, 45.837101],\n\t\t\t\t\t\t[-123.962736, 45.869974],\n\t\t\t\t\t\t[-123.967630, 45.907807],\n\t\t\t\t\t\t[-123.979501, 45.930389],\n\t\t\t\t\t\t[-123.993040, 45.938842],\n\t\t\t\t\t\t[-123.993703, 45.946431],\n\t\t\t\t\t\t[-123.969991, 45.969139],\n\t\t\t\t\t\t[-123.957438, 45.974469],\n\t\t\t\t\t\t[-123.941831, 45.975660],\n\t\t\t\t\t\t[-123.937471, 45.977306],\n\t\t\t\t\t\t[-123.927891, 46.009564],\n\t\t\t\t\t\t[-123.929330, 46.041978],\n\t\t\t\t\t\t[-123.933366, 46.071672],\n\t\t\t\t\t\t[-123.947531, 46.116131],\n\t\t\t\t\t\t[-123.959190, 46.141675],\n\t\t\t\t\t\t[-123.974124, 46.168798],\n\t\t\t\t\t\t[-123.996766, 46.203990],\n\t\t\t\t\t\t[-124.010344, 46.223514],\n\t\t\t\t\t\t[-124.024305, 46.229256],\n\t\t\t\t\t\t[-124.011355, 46.236223],\n\t\t\t\t\t\t[-124.001998, 46.237316],\n\t\t\t\t\t\t[-123.998052, 46.235327],\n\t\t\t\t\t\t[-123.988429, 46.224132],\n\t\t\t\t\t\t[-123.990117, 46.217630],\n\t\t\t\t\t\t[-123.987196, 46.211521],\n\t\t\t\t\t\t[-123.982149, 46.209662],\n\t\t\t\t\t\t[-123.961739, 46.207916],\n\t\t\t\t\t\t[-123.950148, 46.204097],\n\t\t\t\t\t\t[-123.927038, 46.191617],\n\t\t\t\t\t\t[-123.912405, 46.179450],\n\t\t\t\t\t\t[-123.904200, 46.169293],\n\t\t\t\t\t\t[-123.891186, 46.164778],\n\t\t\t\t\t\t[-123.854801, 46.157342],\n\t\t\t\t\t\t[-123.842849, 46.160529],\n\t\t\t\t\t\t[-123.841521, 46.169824],\n\t\t\t\t\t\t[-123.863347, 46.182350],\n\t\t\t\t\t\t[-123.866643, 46.187674],\n\t\t\t\t\t\t[-123.864209, 46.189527],\n\t\t\t\t\t\t[-123.838801, 46.192211],\n\t\t\t\t\t\t[-123.821834, 46.190293],\n\t\t\t\t\t\t[-123.793936, 46.196283],\n\t\t\t\t\t\t[-123.759976, 46.207300],\n\t\t\t\t\t\t[-123.736747, 46.200687],\n\t\t\t\t\t\t[-123.712780, 46.198751],\n\t\t\t\t\t\t[-123.706667, 46.199665],\n\t\t\t\t\t\t[-123.675380, 46.212401],\n\t\t\t\t\t\t[-123.673831, 46.215418],\n\t\t\t\t\t\t[-123.666751, 46.218228],\n\t\t\t\t\t\t[-123.655390, 46.217974],\n\t\t\t\t\t\t[-123.636474, 46.214359],\n\t\t\t\t\t\t[-123.632500, 46.216681],\n\t\t\t\t\t\t[-123.626247, 46.226434],\n\t\t\t\t\t\t[-123.625219, 46.233868],\n\t\t\t\t\t\t[-123.622812, 46.236640],\n\t\t\t\t\t\t[-123.613459, 46.239228],\n\t\t\t\t\t\t[-123.605487, 46.239300],\n\t\t\t\t\t\t[-123.600190, 46.234814],\n\t\t\t\t\t\t[-123.586205, 46.228654],\n\t\t\t\t\t\t[-123.548194, 46.248245],\n\t\t\t\t\t\t[-123.547659, 46.259109],\n\t\t\t\t\t\t[-123.484244, 46.269531],\n\t\t\t\t\t\t[-123.474844, 46.267831],\n\t\t\t\t\t\t[-123.468743, 46.264531],\n\t\t\t\t\t\t[-123.447592, 46.249832],\n\t\t\t\t\t\t[-123.427629, 46.229348],\n\t\t\t\t\t\t[-123.430847, 46.181827],\n\t\t\t\t\t\t[-123.371433, 46.146372],\n\t\t\t\t\t\t[-123.363638, 46.146241],\n\t\t\t\t\t\t[-123.360962, 45.779669],\n\t\t\t\t\t\t[-123.719288, 45.773150],\n\t\t\t\t\t\t[-123.969340, 45.783197]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US41041\",\n\t\t\t\t\"STATE\": \"41\",\n\t\t\t\t\"COUNTY\": \"041\",\n\t\t\t\t\"NAME\": \"Lincoln\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 979.765000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-124.004598, 45.044959],\n\t\t\t\t\t\t[-123.725389, 45.043987],\n\t\t\t\t\t\t[-123.724916, 44.739080],\n\t\t\t\t\t\t[-123.602566, 44.721191],\n\t\t\t\t\t\t[-123.597217, 44.432890],\n\t\t\t\t\t\t[-123.720420, 44.433053],\n\t\t\t\t\t\t[-123.715212, 44.360569],\n\t\t\t\t\t\t[-123.816931, 44.344804],\n\t\t\t\t\t\t[-123.775420, 44.283561],\n\t\t\t\t\t\t[-124.115849, 44.276277],\n\t\t\t\t\t\t[-124.115200, 44.286486],\n\t\t\t\t\t\t[-124.109070, 44.303707],\n\t\t\t\t\t\t[-124.108088, 44.309926],\n\t\t\t\t\t\t[-124.109556, 44.314545],\n\t\t\t\t\t\t[-124.100587, 44.331926],\n\t\t\t\t\t\t[-124.092101, 44.370388],\n\t\t\t\t\t\t[-124.084401, 44.415611],\n\t\t\t\t\t\t[-124.080989, 44.419728],\n\t\t\t\t\t\t[-124.071706, 44.423662],\n\t\t\t\t\t\t[-124.067569, 44.428582],\n\t\t\t\t\t\t[-124.073941, 44.434481],\n\t\t\t\t\t\t[-124.079301, 44.430863],\n\t\t\t\t\t\t[-124.082113, 44.441518],\n\t\t\t\t\t\t[-124.082061, 44.478171],\n\t\t\t\t\t\t[-124.084429, 44.486927],\n\t\t\t\t\t\t[-124.083601, 44.501123],\n\t\t\t\t\t\t[-124.076387, 44.531214],\n\t\t\t\t\t\t[-124.067251, 44.608040],\n\t\t\t\t\t\t[-124.069140, 44.612979],\n\t\t\t\t\t\t[-124.082326, 44.608861],\n\t\t\t\t\t\t[-124.084476, 44.611056],\n\t\t\t\t\t\t[-124.065202, 44.622445],\n\t\t\t\t\t\t[-124.065008, 44.632504],\n\t\t\t\t\t\t[-124.058281, 44.658866],\n\t\t\t\t\t\t[-124.060043, 44.669361],\n\t\t\t\t\t\t[-124.070394, 44.683514],\n\t\t\t\t\t\t[-124.063406, 44.703177],\n\t\t\t\t\t\t[-124.059077, 44.737656],\n\t\t\t\t\t\t[-124.066325, 44.762671],\n\t\t\t\t\t\t[-124.075473, 44.771403],\n\t\t\t\t\t\t[-124.074066, 44.798107],\n\t\t\t\t\t\t[-124.066746, 44.831191],\n\t\t\t\t\t\t[-124.063155, 44.835333],\n\t\t\t\t\t\t[-124.054151, 44.838233],\n\t\t\t\t\t\t[-124.048814, 44.850007],\n\t\t\t\t\t\t[-124.032296, 44.900809],\n\t\t\t\t\t\t[-124.025136, 44.928175],\n\t\t\t\t\t\t[-124.025678, 44.936542],\n\t\t\t\t\t\t[-124.023834, 44.949825],\n\t\t\t\t\t\t[-124.015243, 44.982904],\n\t\t\t\t\t\t[-124.004598, 45.044959]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31139\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"139\",\n\t\t\t\t\"NAME\": \"Pierce\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 573.249000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.834536, 42.089750],\n\t\t\t\t\t\t[-97.834699, 42.091108],\n\t\t\t\t\t\t[-97.834431, 42.437684],\n\t\t\t\t\t\t[-97.485298, 42.438578],\n\t\t\t\t\t\t[-97.367590, 42.438775],\n\t\t\t\t\t\t[-97.367724, 42.351861],\n\t\t\t\t\t\t[-97.368404, 42.090922],\n\t\t\t\t\t\t[-97.834536, 42.089750]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31145\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"145\",\n\t\t\t\t\"NAME\": \"Red Willow\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 716.985000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.733296, 40.002270],\n\t\t\t\t\t\t[-100.738826, 40.002228],\n\t\t\t\t\t\t[-100.752183, 40.002128],\n\t\t\t\t\t\t[-100.758830, 40.002302],\n\t\t\t\t\t\t[-100.758435, 40.349507],\n\t\t\t\t\t\t[-100.197807, 40.350027],\n\t\t\t\t\t\t[-100.193597, 40.001573],\n\t\t\t\t\t\t[-100.196959, 40.001494],\n\t\t\t\t\t\t[-100.215406, 40.001629],\n\t\t\t\t\t\t[-100.229479, 40.001693],\n\t\t\t\t\t\t[-100.231652, 40.001623],\n\t\t\t\t\t\t[-100.390080, 40.001809],\n\t\t\t\t\t\t[-100.439081, 40.001774],\n\t\t\t\t\t\t[-100.447072, 40.001795],\n\t\t\t\t\t\t[-100.468773, 40.001724],\n\t\t\t\t\t\t[-100.475854, 40.001768],\n\t\t\t\t\t\t[-100.477018, 40.001752],\n\t\t\t\t\t\t[-100.487159, 40.001767],\n\t\t\t\t\t\t[-100.511065, 40.001840],\n\t\t\t\t\t\t[-100.551886, 40.001889],\n\t\t\t\t\t\t[-100.567238, 40.001889],\n\t\t\t\t\t\t[-100.594757, 40.001977],\n\t\t\t\t\t\t[-100.600945, 40.001906],\n\t\t\t\t\t\t[-100.645445, 40.001883],\n\t\t\t\t\t\t[-100.660230, 40.002162],\n\t\t\t\t\t\t[-100.683435, 40.002234],\n\t\t\t\t\t\t[-100.721128, 40.002069],\n\t\t\t\t\t\t[-100.729904, 40.002111],\n\t\t\t\t\t\t[-100.733296, 40.002270]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19029\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"029\",\n\t\t\t\t\"NAME\": \"Cass\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 564.269000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.154722, 41.505211],\n\t\t\t\t\t\t[-95.040770, 41.504690],\n\t\t\t\t\t\t[-94.700629, 41.504148],\n\t\t\t\t\t\t[-94.700589, 41.158085],\n\t\t\t\t\t\t[-94.704975, 41.157903],\n\t\t\t\t\t\t[-94.927587, 41.158508],\n\t\t\t\t\t\t[-95.154115, 41.159145],\n\t\t\t\t\t\t[-95.155851, 41.159236],\n\t\t\t\t\t\t[-95.154722, 41.505211]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19037\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"037\",\n\t\t\t\t\"NAME\": \"Chickasaw\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 504.380000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.081568, 42.907013],\n\t\t\t\t\t\t[-92.554211, 42.907112],\n\t\t\t\t\t\t[-92.554381, 43.212813],\n\t\t\t\t\t\t[-92.080976, 43.212947],\n\t\t\t\t\t\t[-92.081146, 43.082794],\n\t\t\t\t\t\t[-92.081568, 42.907013]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17083\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"083\",\n\t\t\t\t\"NAME\": \"Jersey\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 369.271000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.385751, 38.956848],\n\t\t\t\t\t\t[-90.406367, 38.962554],\n\t\t\t\t\t\t[-90.450792, 38.967764],\n\t\t\t\t\t\t[-90.450809, 38.967758],\n\t\t\t\t\t\t[-90.570169, 38.993290],\n\t\t\t\t\t\t[-90.603569, 39.117592],\n\t\t\t\t\t\t[-90.574615, 39.178623],\n\t\t\t\t\t\t[-90.487490, 39.175133],\n\t\t\t\t\t\t[-90.370711, 39.174444],\n\t\t\t\t\t\t[-90.314071, 39.225053],\n\t\t\t\t\t\t[-90.148069, 39.261947],\n\t\t\t\t\t\t[-90.145991, 39.000046],\n\t\t\t\t\t\t[-90.273686, 38.999347],\n\t\t\t\t\t\t[-90.275932, 38.926453],\n\t\t\t\t\t\t[-90.385751, 38.956848]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17085\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"085\",\n\t\t\t\t\"NAME\": \"Jo Daviess\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 601.087000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.640927, 42.508302],\n\t\t\t\t\t\t[-90.617731, 42.508077],\n\t\t\t\t\t\t[-90.614589, 42.508053],\n\t\t\t\t\t\t[-90.565441, 42.507600],\n\t\t\t\t\t\t[-90.555862, 42.507509],\n\t\t\t\t\t\t[-90.551165, 42.507691],\n\t\t\t\t\t\t[-90.544799, 42.507713],\n\t\t\t\t\t\t[-90.544347, 42.507707],\n\t\t\t\t\t\t[-90.532254, 42.507573],\n\t\t\t\t\t\t[-90.491716, 42.507624],\n\t\t\t\t\t\t[-90.479446, 42.507416],\n\t\t\t\t\t\t[-90.474955, 42.507484],\n\t\t\t\t\t\t[-90.437011, 42.507147],\n\t\t\t\t\t\t[-90.426378, 42.507059],\n\t\t\t\t\t\t[-90.405927, 42.506891],\n\t\t\t\t\t\t[-90.370673, 42.507111],\n\t\t\t\t\t\t[-90.367874, 42.507114],\n\t\t\t\t\t\t[-90.362652, 42.507048],\n\t\t\t\t\t\t[-90.303823, 42.507469],\n\t\t\t\t\t\t[-90.272864, 42.507531],\n\t\t\t\t\t\t[-90.269335, 42.507726],\n\t\t\t\t\t\t[-90.267143, 42.507642],\n\t\t\t\t\t\t[-90.253121, 42.507340],\n\t\t\t\t\t\t[-90.250622, 42.507521],\n\t\t\t\t\t\t[-90.223190, 42.507765],\n\t\t\t\t\t\t[-90.206073, 42.507747],\n\t\t\t\t\t\t[-90.181572, 42.508068],\n\t\t\t\t\t\t[-90.164363, 42.508272],\n\t\t\t\t\t\t[-90.142922, 42.508151],\n\t\t\t\t\t\t[-90.095004, 42.507885],\n\t\t\t\t\t\t[-90.093026, 42.508160],\n\t\t\t\t\t\t[-90.018665, 42.507288],\n\t\t\t\t\t\t[-90.017028, 42.507127],\n\t\t\t\t\t\t[-89.999314, 42.506914],\n\t\t\t\t\t\t[-89.997213, 42.506755],\n\t\t\t\t\t\t[-89.985645, 42.506431],\n\t\t\t\t\t\t[-89.985072, 42.506464],\n\t\t\t\t\t\t[-89.926484, 42.505787],\n\t\t\t\t\t\t[-89.926374, 42.505788],\n\t\t\t\t\t\t[-89.926224, 42.505788],\n\t\t\t\t\t\t[-89.919657, 42.196305],\n\t\t\t\t\t\t[-90.304913, 42.194073],\n\t\t\t\t\t\t[-90.316269, 42.193600],\n\t\t\t\t\t\t[-90.349162, 42.204277],\n\t\t\t\t\t\t[-90.356964, 42.205445],\n\t\t\t\t\t\t[-90.375129, 42.214811],\n\t\t\t\t\t\t[-90.391108, 42.225473],\n\t\t\t\t\t\t[-90.419326, 42.254467],\n\t\t\t\t\t\t[-90.430884, 42.278230],\n\t\t\t\t\t\t[-90.430735, 42.284211],\n\t\t\t\t\t\t[-90.424326, 42.293326],\n\t\t\t\t\t\t[-90.416200, 42.321314],\n\t\t\t\t\t\t[-90.416535, 42.325109],\n\t\t\t\t\t\t[-90.419027, 42.328505],\n\t\t\t\t\t\t[-90.474834, 42.381473],\n\t\t\t\t\t\t[-90.477279, 42.383794],\n\t\t\t\t\t\t[-90.559451, 42.430695],\n\t\t\t\t\t\t[-90.624328, 42.458904],\n\t\t\t\t\t\t[-90.646727, 42.471904],\n\t\t\t\t\t\t[-90.654027, 42.478503],\n\t\t\t\t\t\t[-90.656327, 42.483603],\n\t\t\t\t\t\t[-90.656527, 42.489203],\n\t\t\t\t\t\t[-90.655927, 42.491703],\n\t\t\t\t\t\t[-90.640927, 42.508302]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17097\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"097\",\n\t\t\t\t\"NAME\": \"Lake\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 443.670000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.049782, 42.495319],\n\t\t\t\t\t\t[-87.990180, 42.494519],\n\t\t\t\t\t\t[-87.971279, 42.494019],\n\t\t\t\t\t\t[-87.900242, 42.493020],\n\t\t\t\t\t\t[-87.843594, 42.492307],\n\t\t\t\t\t\t[-87.815872, 42.491920],\n\t\t\t\t\t\t[-87.800561, 42.491920],\n\t\t\t\t\t\t[-87.800477, 42.491920],\n\t\t\t\t\t\t[-87.800317, 42.490578],\n\t\t\t\t\t\t[-87.798971, 42.479278],\n\t\t\t\t\t\t[-87.798230, 42.473054],\n\t\t\t\t\t\t[-87.798071, 42.471721],\n\t\t\t\t\t\t[-87.800752, 42.445867],\n\t\t\t\t\t\t[-87.803370, 42.420621],\n\t\t\t\t\t\t[-87.803529, 42.417759],\n\t\t\t\t\t\t[-87.803750, 42.413793],\n\t\t\t\t\t\t[-87.805370, 42.384721],\n\t\t\t\t\t\t[-87.806130, 42.383357],\n\t\t\t\t\t\t[-87.815570, 42.366416],\n\t\t\t\t\t\t[-87.816570, 42.364621],\n\t\t\t\t\t\t[-87.820858, 42.361584],\n\t\t\t\t\t\t[-87.820871, 42.361544],\n\t\t\t\t\t\t[-87.826717, 42.343497],\n\t\t\t\t\t\t[-87.830646, 42.331368],\n\t\t\t\t\t\t[-87.830986, 42.330317],\n\t\t\t\t\t\t[-87.831221, 42.328530],\n\t\t\t\t\t\t[-87.834769, 42.301522],\n\t\t\t\t\t\t[-87.833468, 42.294892],\n\t\t\t\t\t\t[-87.832738, 42.291173],\n\t\t\t\t\t\t[-87.832530, 42.290109],\n\t\t\t\t\t\t[-87.831286, 42.283772],\n\t\t\t\t\t\t[-87.828569, 42.269922],\n\t\t\t\t\t\t[-87.828034, 42.268673],\n\t\t\t\t\t\t[-87.827720, 42.267937],\n\t\t\t\t\t\t[-87.826944, 42.266125],\n\t\t\t\t\t\t[-87.825313, 42.262313],\n\t\t\t\t\t\t[-87.812461, 42.232278],\n\t\t\t\t\t\t[-87.812422, 42.232185],\n\t\t\t\t\t\t[-87.812315, 42.231935],\n\t\t\t\t\t\t[-87.812267, 42.231823],\n\t\t\t\t\t\t[-87.808395, 42.224271],\n\t\t\t\t\t\t[-87.803873, 42.215449],\n\t\t\t\t\t\t[-87.800066, 42.208024],\n\t\t\t\t\t\t[-87.798589, 42.206007],\n\t\t\t\t\t\t[-87.798300, 42.205611],\n\t\t\t\t\t\t[-87.797497, 42.204514],\n\t\t\t\t\t\t[-87.797444, 42.204442],\n\t\t\t\t\t\t[-87.796937, 42.203748],\n\t\t\t\t\t\t[-87.796779, 42.203533],\n\t\t\t\t\t\t[-87.788313, 42.191966],\n\t\t\t\t\t\t[-87.787241, 42.190501],\n\t\t\t\t\t\t[-87.775295, 42.174179],\n\t\t\t\t\t\t[-87.759327, 42.152362],\n\t\t\t\t\t\t[-88.004466, 42.153645],\n\t\t\t\t\t\t[-88.121545, 42.154193],\n\t\t\t\t\t\t[-88.199584, 42.154260],\n\t\t\t\t\t\t[-88.198750, 42.254220],\n\t\t\t\t\t\t[-88.199521, 42.496013],\n\t\t\t\t\t\t[-88.049782, 42.495319]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17115\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"115\",\n\t\t\t\t\"NAME\": \"Macon\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 580.689000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.025691, 39.654637],\n\t\t\t\t\t\t[-89.139125, 39.655131],\n\t\t\t\t\t\t[-89.141817, 39.800910],\n\t\t\t\t\t\t[-89.217523, 39.813224],\n\t\t\t\t\t\t[-89.217470, 39.852960],\n\t\t\t\t\t\t[-89.217546, 39.872392],\n\t\t\t\t\t\t[-89.217810, 39.873818],\n\t\t\t\t\t\t[-89.217846, 39.916990],\n\t\t\t\t\t\t[-89.143457, 39.917920],\n\t\t\t\t\t\t[-89.144764, 40.048853],\n\t\t\t\t\t\t[-88.745164, 40.055191],\n\t\t\t\t\t\t[-88.745957, 39.858136],\n\t\t\t\t\t\t[-88.745671, 39.792146],\n\t\t\t\t\t\t[-88.812709, 39.740486],\n\t\t\t\t\t\t[-88.810575, 39.653222],\n\t\t\t\t\t\t[-89.025680, 39.654183],\n\t\t\t\t\t\t[-89.025691, 39.654637]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17119\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"119\",\n\t\t\t\t\"NAME\": \"Madison\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 715.582000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.117707, 38.805748],\n\t\t\t\t\t\t[-90.114707, 38.815048],\n\t\t\t\t\t\t[-90.109107, 38.837448],\n\t\t\t\t\t\t[-90.109407, 38.843548],\n\t\t\t\t\t\t[-90.113327, 38.849306],\n\t\t\t\t\t\t[-90.207035, 38.898954],\n\t\t\t\t\t\t[-90.225850, 38.908923],\n\t\t\t\t\t\t[-90.250248, 38.919344],\n\t\t\t\t\t\t[-90.275932, 38.926453],\n\t\t\t\t\t\t[-90.273686, 38.999347],\n\t\t\t\t\t\t[-90.145991, 39.000046],\n\t\t\t\t\t\t[-89.814620, 38.998349],\n\t\t\t\t\t\t[-89.811673, 38.998462],\n\t\t\t\t\t\t[-89.707911, 38.999009],\n\t\t\t\t\t\t[-89.707266, 38.999012],\n\t\t\t\t\t\t[-89.705675, 38.999161],\n\t\t\t\t\t\t[-89.705349, 38.998963],\n\t\t\t\t\t\t[-89.704020, 38.998940],\n\t\t\t\t\t\t[-89.698555, 38.998979],\n\t\t\t\t\t\t[-89.653446, 38.999191],\n\t\t\t\t\t\t[-89.652405, 38.999581],\n\t\t\t\t\t\t[-89.648846, 38.999167],\n\t\t\t\t\t\t[-89.639265, 38.999129],\n\t\t\t\t\t\t[-89.636874, 38.874278],\n\t\t\t\t\t\t[-89.599593, 38.874530],\n\t\t\t\t\t\t[-89.597321, 38.743236],\n\t\t\t\t\t\t[-89.595103, 38.655948],\n\t\t\t\t\t\t[-89.707024, 38.655152],\n\t\t\t\t\t\t[-90.037105, 38.658449],\n\t\t\t\t\t\t[-90.177720, 38.660536],\n\t\t\t\t\t\t[-90.181399, 38.660378],\n\t\t\t\t\t\t[-90.186410, 38.674750],\n\t\t\t\t\t\t[-90.195210, 38.687550],\n\t\t\t\t\t\t[-90.202210, 38.693450],\n\t\t\t\t\t\t[-90.209210, 38.702750],\n\t\t\t\t\t\t[-90.212010, 38.711750],\n\t\t\t\t\t\t[-90.209910, 38.726050],\n\t\t\t\t\t\t[-90.171309, 38.766549],\n\t\t\t\t\t\t[-90.165082, 38.770618],\n\t\t\t\t\t\t[-90.123107, 38.798048],\n\t\t\t\t\t\t[-90.117707, 38.805748]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47039\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"039\",\n\t\t\t\t\"NAME\": \"Decatur\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 333.845000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.007709, 35.423381],\n\t\t\t\t\t\t[-87.975184, 35.414174],\n\t\t\t\t\t\t[-87.984553, 35.392115],\n\t\t\t\t\t\t[-88.024741, 35.392307],\n\t\t\t\t\t\t[-88.199643, 35.382570],\n\t\t\t\t\t\t[-88.241677, 35.423263],\n\t\t\t\t\t\t[-88.243057, 35.528858],\n\t\t\t\t\t\t[-88.190465, 35.609088],\n\t\t\t\t\t\t[-88.179177, 35.816785],\n\t\t\t\t\t\t[-88.178980, 35.818911],\n\t\t\t\t\t\t[-88.177859, 35.845841],\n\t\t\t\t\t\t[-87.970738, 35.815705],\n\t\t\t\t\t\t[-88.034788, 35.717261],\n\t\t\t\t\t\t[-88.035837, 35.621839],\n\t\t\t\t\t\t[-87.974630, 35.521025],\n\t\t\t\t\t\t[-88.042332, 35.444617],\n\t\t\t\t\t\t[-88.007709, 35.423381]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47043\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"043\",\n\t\t\t\t\"NAME\": \"Dickson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 489.896000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-87.151995, 36.289037],\n\t\t\t\t\t\t\t[-87.146906, 36.293344],\n\t\t\t\t\t\t\t[-87.144172, 36.292142],\n\t\t\t\t\t\t\t[-87.142315, 36.294607],\n\t\t\t\t\t\t\t[-87.139332, 36.292418],\n\t\t\t\t\t\t\t[-87.142372, 36.290684],\n\t\t\t\t\t\t\t[-87.151995, 36.289037]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-87.204242, 35.959186],\n\t\t\t\t\t\t\t[-87.534530, 35.993074],\n\t\t\t\t\t\t\t[-87.566798, 36.177857],\n\t\t\t\t\t\t\t[-87.513533, 36.334713],\n\t\t\t\t\t\t\t[-87.286501, 36.321933],\n\t\t\t\t\t\t\t[-87.177303, 36.314145],\n\t\t\t\t\t\t\t[-87.149876, 36.176878],\n\t\t\t\t\t\t\t[-87.182573, 36.049726],\n\t\t\t\t\t\t\t[-87.204242, 35.959186]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47053\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"053\",\n\t\t\t\t\"NAME\": \"Gibson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 602.742000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.692709, 36.062746],\n\t\t\t\t\t\t[-88.706811, 35.791075],\n\t\t\t\t\t\t[-88.910964, 35.797336],\n\t\t\t\t\t\t[-88.916181, 35.797307],\n\t\t\t\t\t\t[-89.109602, 35.862095],\n\t\t\t\t\t\t[-89.188844, 35.999760],\n\t\t\t\t\t\t[-89.163406, 36.026044],\n\t\t\t\t\t\t[-89.154464, 36.204678],\n\t\t\t\t\t\t[-88.961232, 36.201635],\n\t\t\t\t\t\t[-88.959839, 36.222834],\n\t\t\t\t\t\t[-88.840884, 36.123495],\n\t\t\t\t\t\t[-88.692709, 36.062746]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47055\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"055\",\n\t\t\t\t\"NAME\": \"Giles\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 610.927000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.828301, 35.263677],\n\t\t\t\t\t\t[-86.836306, 34.991764],\n\t\t\t\t\t\t[-86.836370, 34.991764],\n\t\t\t\t\t\t[-86.846466, 34.991860],\n\t\t\t\t\t\t[-86.849794, 34.991924],\n\t\t\t\t\t\t[-86.862147, 34.991956],\n\t\t\t\t\t\t[-86.967120, 34.994400],\n\t\t\t\t\t\t[-86.970236, 34.994546],\n\t\t\t\t\t\t[-86.972613, 34.994610],\n\t\t\t\t\t\t[-86.974412, 34.994513],\n\t\t\t\t\t\t[-87.000007, 34.995121],\n\t\t\t\t\t\t[-87.011174, 34.995162],\n\t\t\t\t\t\t[-87.210759, 34.999024],\n\t\t\t\t\t\t[-87.216683, 34.999148],\n\t\t\t\t\t\t[-87.224053, 34.999327],\n\t\t\t\t\t\t[-87.206578, 35.433207],\n\t\t\t\t\t\t[-87.120883, 35.455660],\n\t\t\t\t\t\t[-86.960804, 35.417021],\n\t\t\t\t\t\t[-86.906451, 35.314075],\n\t\t\t\t\t\t[-86.828301, 35.263677]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US23013\",\n\t\t\t\t\"STATE\": \"23\",\n\t\t\t\t\"COUNTY\": \"013\",\n\t\t\t\t\"NAME\": \"Knox\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 365.134000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-68.880242, 43.863398],\n\t\t\t\t\t\t\t[-68.882554, 43.848525],\n\t\t\t\t\t\t\t[-68.876224, 43.836597],\n\t\t\t\t\t\t\t[-68.886725, 43.822195],\n\t\t\t\t\t\t\t[-68.898319, 43.820987],\n\t\t\t\t\t\t\t[-68.899108, 43.821925],\n\t\t\t\t\t\t\t[-68.893537, 43.831498],\n\t\t\t\t\t\t\t[-68.894700, 43.843970],\n\t\t\t\t\t\t\t[-68.898045, 43.849545],\n\t\t\t\t\t\t\t[-68.903957, 43.848684],\n\t\t\t\t\t\t\t[-68.908222, 43.849852],\n\t\t\t\t\t\t\t[-68.902618, 43.868855],\n\t\t\t\t\t\t\t[-68.889367, 43.875530],\n\t\t\t\t\t\t\t[-68.880242, 43.863398]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-69.043981, 44.005684],\n\t\t\t\t\t\t\t[-69.078200, 43.974132],\n\t\t\t\t\t\t\t[-69.092994, 43.979063],\n\t\t\t\t\t\t\t[-69.061966, 44.015023],\n\t\t\t\t\t\t\t[-69.047583, 44.013995],\n\t\t\t\t\t\t\t[-69.043981, 44.005684]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-68.618212, 44.012367],\n\t\t\t\t\t\t\t[-68.635315, 44.018886],\n\t\t\t\t\t\t\t[-68.647360, 44.014500],\n\t\t\t\t\t\t\t[-68.651863, 44.009859],\n\t\t\t\t\t\t\t[-68.652881, 44.003845],\n\t\t\t\t\t\t\t[-68.657031, 44.003823],\n\t\t\t\t\t\t\t[-68.659972, 44.016013],\n\t\t\t\t\t\t\t[-68.659874, 44.022758],\n\t\t\t\t\t\t\t[-68.657369, 44.024404],\n\t\t\t\t\t\t\t[-68.650767, 44.039908],\n\t\t\t\t\t\t\t[-68.654783, 44.059599],\n\t\t\t\t\t\t\t[-68.661594, 44.075837],\n\t\t\t\t\t\t\t[-68.627893, 44.088128],\n\t\t\t\t\t\t\t[-68.625350, 44.092906],\n\t\t\t\t\t\t\t[-68.618100, 44.096706],\n\t\t\t\t\t\t\t[-68.609722, 44.094674],\n\t\t\t\t\t\t\t[-68.602863, 44.086650],\n\t\t\t\t\t\t\t[-68.589563, 44.075585],\n\t\t\t\t\t\t\t[-68.585916, 44.075335],\n\t\t\t\t\t\t\t[-68.584074, 44.070578],\n\t\t\t\t\t\t\t[-68.588098, 44.061270],\n\t\t\t\t\t\t\t[-68.590792, 44.058662],\n\t\t\t\t\t\t\t[-68.601099, 44.058362],\n\t\t\t\t\t\t\t[-68.611473, 44.025176],\n\t\t\t\t\t\t\t[-68.610703, 44.013422],\n\t\t\t\t\t\t\t[-68.615896, 44.009761],\n\t\t\t\t\t\t\t[-68.618212, 44.012367]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-68.785601, 44.053503],\n\t\t\t\t\t\t\t[-68.790595, 44.053832],\n\t\t\t\t\t\t\t[-68.807315, 44.035796],\n\t\t\t\t\t\t\t[-68.818441, 44.032046],\n\t\t\t\t\t\t\t[-68.828465, 44.032118],\n\t\t\t\t\t\t\t[-68.862845, 44.025037],\n\t\t\t\t\t\t\t[-68.874139, 44.025359],\n\t\t\t\t\t\t\t[-68.889717, 44.032516],\n\t\t\t\t\t\t\t[-68.899997, 44.066960],\n\t\t\t\t\t\t\t[-68.905098, 44.077344],\n\t\t\t\t\t\t\t[-68.913406, 44.085190],\n\t\t\t\t\t\t\t[-68.907812, 44.105518],\n\t\t\t\t\t\t\t[-68.908984, 44.110001],\n\t\t\t\t\t\t\t[-68.943105, 44.109730],\n\t\t\t\t\t\t\t[-68.944597, 44.112840],\n\t\t\t\t\t\t\t[-68.935327, 44.130380],\n\t\t\t\t\t\t\t[-68.917286, 44.148239],\n\t\t\t\t\t\t\t[-68.888597, 44.159550],\n\t\t\t\t\t\t\t[-68.878680, 44.166612],\n\t\t\t\t\t\t\t[-68.847249, 44.183017],\n\t\t\t\t\t\t\t[-68.825067, 44.186338],\n\t\t\t\t\t\t\t[-68.819156, 44.180462],\n\t\t\t\t\t\t\t[-68.822206, 44.178815],\n\t\t\t\t\t\t\t[-68.822840, 44.173693],\n\t\t\t\t\t\t\t[-68.818423, 44.160978],\n\t\t\t\t\t\t\t[-68.792221, 44.145998],\n\t\t\t\t\t\t\t[-68.786886, 44.143961],\n\t\t\t\t\t\t\t[-68.782375, 44.145310],\n\t\t\t\t\t\t\t[-68.780693, 44.143274],\n\t\t\t\t\t\t\t[-68.792065, 44.136759],\n\t\t\t\t\t\t\t[-68.802162, 44.137857],\n\t\t\t\t\t\t\t[-68.818039, 44.136852],\n\t\t\t\t\t\t\t[-68.819659, 44.135434],\n\t\t\t\t\t\t\t[-68.820515, 44.130198],\n\t\t\t\t\t\t\t[-68.819530, 44.122056],\n\t\t\t\t\t\t\t[-68.815562, 44.115836],\n\t\t\t\t\t\t\t[-68.806832, 44.116339],\n\t\t\t\t\t\t\t[-68.790525, 44.092920],\n\t\t\t\t\t\t\t[-68.781772, 44.084274],\n\t\t\t\t\t\t\t[-68.772639, 44.078439],\n\t\t\t\t\t\t\t[-68.770290, 44.069566],\n\t\t\t\t\t\t\t[-68.779650, 44.057754],\n\t\t\t\t\t\t\t[-68.785601, 44.053503]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-69.321529, 44.172900],\n\t\t\t\t\t\t\t[-69.528223, 44.275447],\n\t\t\t\t\t\t\t[-69.521258, 44.280683],\n\t\t\t\t\t\t\t[-69.506382, 44.342870],\n\t\t\t\t\t\t\t[-69.394361, 44.342934],\n\t\t\t\t\t\t\t[-69.346616, 44.308337],\n\t\t\t\t\t\t\t[-69.268882, 44.364653],\n\t\t\t\t\t\t\t[-69.121622, 44.255644],\n\t\t\t\t\t\t\t[-69.028590, 44.249139],\n\t\t\t\t\t\t\t[-69.029434, 44.248558],\n\t\t\t\t\t\t\t[-69.040193, 44.233673],\n\t\t\t\t\t\t\t[-69.043599, 44.225029],\n\t\t\t\t\t\t\t[-69.042807, 44.215173],\n\t\t\t\t\t\t\t[-69.051810, 44.195920],\n\t\t\t\t\t\t\t[-69.052690, 44.188082],\n\t\t\t\t\t\t\t[-69.054546, 44.171542],\n\t\t\t\t\t\t\t[-69.061240, 44.165498],\n\t\t\t\t\t\t\t[-69.077776, 44.165043],\n\t\t\t\t\t\t\t[-69.079835, 44.160953],\n\t\t\t\t\t\t\t[-69.080978, 44.156768],\n\t\t\t\t\t\t\t[-69.079608, 44.143962],\n\t\t\t\t\t\t\t[-69.075667, 44.129991],\n\t\t\t\t\t\t\t[-69.080331, 44.117824],\n\t\t\t\t\t\t\t[-69.100863, 44.104529],\n\t\t\t\t\t\t\t[-69.101107, 44.093601],\n\t\t\t\t\t\t\t[-69.092000, 44.085734],\n\t\t\t\t\t\t\t[-69.089078, 44.085326],\n\t\t\t\t\t\t\t[-69.076452, 44.090634],\n\t\t\t\t\t\t\t[-69.056303, 44.095162],\n\t\t\t\t\t\t\t[-69.050814, 44.094888],\n\t\t\t\t\t\t\t[-69.043403, 44.092164],\n\t\t\t\t\t\t\t[-69.031878, 44.079036],\n\t\t\t\t\t\t\t[-69.048917, 44.062506],\n\t\t\t\t\t\t\t[-69.050566, 44.063152],\n\t\t\t\t\t\t\t[-69.050622, 44.068017],\n\t\t\t\t\t\t\t[-69.056093, 44.069490],\n\t\t\t\t\t\t\t[-69.064299, 44.069911],\n\t\t\t\t\t\t\t[-69.067876, 44.067596],\n\t\t\t\t\t\t\t[-69.079805, 44.055256],\n\t\t\t\t\t\t\t[-69.073767, 44.046135],\n\t\t\t\t\t\t\t[-69.081131, 44.041295],\n\t\t\t\t\t\t\t[-69.094177, 44.038981],\n\t\t\t\t\t\t\t[-69.113113, 44.028881],\n\t\t\t\t\t\t\t[-69.125738, 44.019623],\n\t\t\t\t\t\t\t[-69.128052, 44.017309],\n\t\t\t\t\t\t\t[-69.124475, 44.007419],\n\t\t\t\t\t\t\t[-69.128611, 44.005922],\n\t\t\t\t\t\t\t[-69.148883, 43.998582],\n\t\t\t\t\t\t\t[-69.162559, 43.999003],\n\t\t\t\t\t\t\t[-69.170345, 43.995637],\n\t\t\t\t\t\t\t[-69.193805, 43.975543],\n\t\t\t\t\t\t\t[-69.197803, 43.967547],\n\t\t\t\t\t\t\t[-69.193805, 43.959762],\n\t\t\t\t\t\t\t[-69.196330, 43.950504],\n\t\t\t\t\t\t\t[-69.203668, 43.941806],\n\t\t\t\t\t\t\t[-69.214205, 43.935583],\n\t\t\t\t\t\t\t[-69.237368, 43.931596],\n\t\t\t\t\t\t\t[-69.242710, 43.925465],\n\t\t\t\t\t\t\t[-69.259838, 43.921427],\n\t\t\t\t\t\t\t[-69.265257, 43.933393],\n\t\t\t\t\t\t\t[-69.267515, 43.943667],\n\t\t\t\t\t\t\t[-69.280498, 43.957440],\n\t\t\t\t\t\t\t[-69.282559, 43.958105],\n\t\t\t\t\t\t\t[-69.283998, 43.958569],\n\t\t\t\t\t\t\t[-69.288513, 43.957665],\n\t\t\t\t\t\t\t[-69.307776, 43.943451],\n\t\t\t\t\t\t\t[-69.314270, 43.942951],\n\t\t\t\t\t\t\t[-69.319751, 43.944870],\n\t\t\t\t\t\t\t[-69.305176, 43.956676],\n\t\t\t\t\t\t\t[-69.304301, 43.962068],\n\t\t\t\t\t\t\t[-69.321808, 43.969975],\n\t\t\t\t\t\t\t[-69.281839, 44.022532],\n\t\t\t\t\t\t\t[-69.321529, 44.172900]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US23019\",\n\t\t\t\t\"STATE\": \"23\",\n\t\t\t\t\"COUNTY\": \"019\",\n\t\t\t\t\"NAME\": \"Penobscot\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 3397.362000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-68.815793, 44.683754],\n\t\t\t\t\t\t[-69.014167, 44.671794],\n\t\t\t\t\t\t[-69.183732, 44.644023],\n\t\t\t\t\t\t[-69.205200, 44.729586],\n\t\t\t\t\t\t[-69.266785, 44.721928],\n\t\t\t\t\t\t[-69.305521, 44.895988],\n\t\t\t\t\t\t[-69.355667, 45.073469],\n\t\t\t\t\t\t[-69.232021, 45.090166],\n\t\t\t\t\t\t[-68.856587, 45.142783],\n\t\t\t\t\t\t[-68.880923, 45.224947],\n\t\t\t\t\t\t[-68.776061, 45.240317],\n\t\t\t\t\t\t[-68.800906, 45.329148],\n\t\t\t\t\t\t[-68.857297, 45.527301],\n\t\t\t\t\t\t[-68.964653, 45.512367],\n\t\t\t\t\t\t[-68.958910, 45.662195],\n\t\t\t\t\t\t[-68.827039, 45.684826],\n\t\t\t\t\t\t[-68.819401, 46.395782],\n\t\t\t\t\t\t[-68.694920, 46.395505],\n\t\t\t\t\t\t[-68.694877, 46.382612],\n\t\t\t\t\t\t[-68.436443, 46.382121],\n\t\t\t\t\t\t[-68.433001, 45.581204],\n\t\t\t\t\t\t[-68.433028, 45.578482],\n\t\t\t\t\t\t[-68.414389, 45.572848],\n\t\t\t\t\t\t[-68.410884, 45.573337],\n\t\t\t\t\t\t[-68.048012, 45.639897],\n\t\t\t\t\t\t[-67.939760, 45.267845],\n\t\t\t\t\t\t[-68.054985, 45.252577],\n\t\t\t\t\t\t[-68.303714, 45.221531],\n\t\t\t\t\t\t[-68.295438, 45.190443],\n\t\t\t\t\t\t[-68.270497, 45.100121],\n\t\t\t\t\t\t[-68.396903, 45.083296],\n\t\t\t\t\t\t[-68.375892, 44.997373],\n\t\t\t\t\t\t[-68.501095, 44.980718],\n\t\t\t\t\t\t[-68.477952, 44.889091],\n\t\t\t\t\t\t[-68.454889, 44.801550],\n\t\t\t\t\t\t[-68.445219, 44.763014],\n\t\t\t\t\t\t[-68.528542, 44.752167],\n\t\t\t\t\t\t[-68.616673, 44.740992],\n\t\t\t\t\t\t[-68.647134, 44.703636],\n\t\t\t\t\t\t[-68.690930, 44.721668],\n\t\t\t\t\t\t[-68.815793, 44.683754]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US23025\",\n\t\t\t\t\"STATE\": \"23\",\n\t\t\t\t\"COUNTY\": \"025\",\n\t\t\t\t\"NAME\": \"Somerset\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 3924.403000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-69.632971, 44.698763],\n\t\t\t\t\t\t[-69.628480, 44.671969],\n\t\t\t\t\t\t[-69.579094, 44.626971],\n\t\t\t\t\t\t[-69.605746, 44.577264],\n\t\t\t\t\t\t[-69.742091, 44.598246],\n\t\t\t\t\t\t[-69.744282, 44.602607],\n\t\t\t\t\t\t[-69.776294, 44.608236],\n\t\t\t\t\t\t[-69.792813, 44.577330],\n\t\t\t\t\t\t[-69.930451, 44.610852],\n\t\t\t\t\t\t[-69.996191, 44.677497],\n\t\t\t\t\t\t[-70.033270, 44.864540],\n\t\t\t\t\t\t[-70.129930, 44.850765],\n\t\t\t\t\t\t[-70.149085, 44.896102],\n\t\t\t\t\t\t[-70.110365, 44.947311],\n\t\t\t\t\t\t[-70.159375, 45.128396],\n\t\t\t\t\t\t[-70.293826, 45.109903],\n\t\t\t\t\t\t[-70.308491, 45.163183],\n\t\t\t\t\t\t[-70.418519, 45.144005],\n\t\t\t\t\t\t[-70.551038, 45.661885],\n\t\t\t\t\t\t[-70.469869, 45.701639],\n\t\t\t\t\t\t[-70.451503, 45.704432],\n\t\t\t\t\t\t[-70.397210, 45.756872],\n\t\t\t\t\t\t[-70.407750, 45.773654],\n\t\t\t\t\t\t[-70.417674, 45.794570],\n\t\t\t\t\t\t[-70.396362, 45.802703],\n\t\t\t\t\t\t[-70.398159, 45.804120],\n\t\t\t\t\t\t[-70.397208, 45.807572],\n\t\t\t\t\t\t[-70.387916, 45.819043],\n\t\t\t\t\t\t[-70.367020, 45.834993],\n\t\t\t\t\t\t[-70.342440, 45.852192],\n\t\t\t\t\t\t[-70.307798, 45.858940],\n\t\t\t\t\t\t[-70.284204, 45.872034],\n\t\t\t\t\t\t[-70.262655, 45.887853],\n\t\t\t\t\t\t[-70.253704, 45.902981],\n\t\t\t\t\t\t[-70.240177, 45.943729],\n\t\t\t\t\t\t[-70.252242, 45.954777],\n\t\t\t\t\t\t[-70.265410, 45.962692],\n\t\t\t\t\t\t[-70.312055, 45.971544],\n\t\t\t\t\t\t[-70.313364, 46.016383],\n\t\t\t\t\t\t[-70.310609, 46.064544],\n\t\t\t\t\t\t[-70.289780, 46.094325],\n\t\t\t\t\t\t[-70.284554, 46.098713],\n\t\t\t\t\t\t[-70.252411, 46.106221],\n\t\t\t\t\t\t[-70.237947, 46.147378],\n\t\t\t\t\t\t[-70.278034, 46.175001],\n\t\t\t\t\t\t[-70.290896, 46.185838],\n\t\t\t\t\t\t[-70.292736, 46.191599],\n\t\t\t\t\t\t[-70.207415, 46.331316],\n\t\t\t\t\t\t[-70.188046, 46.350015],\n\t\t\t\t\t\t[-70.174709, 46.358472],\n\t\t\t\t\t\t[-70.133367, 46.368906],\n\t\t\t\t\t\t[-70.056433, 46.416590],\n\t\t\t\t\t\t[-70.023016, 46.573486],\n\t\t\t\t\t\t[-69.721109, 46.574053],\n\t\t\t\t\t\t[-69.732320, 46.394008],\n\t\t\t\t\t\t[-69.728577, 45.976882],\n\t\t\t\t\t\t[-69.683564, 45.983632],\n\t\t\t\t\t\t[-69.646755, 45.863163],\n\t\t\t\t\t\t[-69.705743, 45.853975],\n\t\t\t\t\t\t[-69.732579, 45.755978],\n\t\t\t\t\t\t[-69.784853, 45.785212],\n\t\t\t\t\t\t[-69.832818, 45.738734],\n\t\t\t\t\t\t[-69.691806, 45.645031],\n\t\t\t\t\t\t[-69.779928, 45.542766],\n\t\t\t\t\t\t[-69.620967, 45.010956],\n\t\t\t\t\t\t[-69.499861, 45.053778],\n\t\t\t\t\t\t[-69.355667, 45.073469],\n\t\t\t\t\t\t[-69.305521, 44.895988],\n\t\t\t\t\t\t[-69.266785, 44.721928],\n\t\t\t\t\t\t[-69.398412, 44.744559],\n\t\t\t\t\t\t[-69.471712, 44.692899],\n\t\t\t\t\t\t[-69.632971, 44.698763]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40121\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"121\",\n\t\t\t\t\"NAME\": \"Pittsburg\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1305.462000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.671976, 34.593852],\n\t\t\t\t\t\t[-95.881987, 34.593528],\n\t\t\t\t\t\t[-95.882103, 34.680475],\n\t\t\t\t\t\t[-96.092043, 34.680556],\n\t\t\t\t\t\t[-96.092001, 34.767479],\n\t\t\t\t\t\t[-96.088843, 35.049863],\n\t\t\t\t\t\t[-95.983710, 35.151557],\n\t\t\t\t\t\t[-95.870663, 35.185986],\n\t\t\t\t\t\t[-95.755970, 35.177198],\n\t\t\t\t\t\t[-95.628064, 35.246798],\n\t\t\t\t\t\t[-95.599380, 35.221651],\n\t\t\t\t\t\t[-95.451250, 35.296019],\n\t\t\t\t\t\t[-95.454954, 35.160577],\n\t\t\t\t\t\t[-95.349339, 35.160296],\n\t\t\t\t\t\t[-95.349233, 35.058514],\n\t\t\t\t\t\t[-95.349437, 35.029299],\n\t\t\t\t\t\t[-95.507658, 35.029197],\n\t\t\t\t\t\t[-95.514514, 34.681142],\n\t\t\t\t\t\t[-95.514315, 34.594153],\n\t\t\t\t\t\t[-95.671976, 34.593852]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40129\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"129\",\n\t\t\t\t\"NAME\": \"Roger Mills\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1141.136000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.000392, 35.619115],\n\t\t\t\t\t\t[-100.000396, 35.880948],\n\t\t\t\t\t\t[-99.925147, 35.913664],\n\t\t\t\t\t\t[-99.888309, 35.987847],\n\t\t\t\t\t\t[-99.809444, 36.000044],\n\t\t\t\t\t\t[-99.801389, 35.910645],\n\t\t\t\t\t\t[-99.717101, 35.859769],\n\t\t\t\t\t\t[-99.558486, 35.865988],\n\t\t\t\t\t\t[-99.495812, 35.978732],\n\t\t\t\t\t\t[-99.381022, 36.012925],\n\t\t\t\t\t\t[-99.375817, 35.812188],\n\t\t\t\t\t\t[-99.364141, 35.508793],\n\t\t\t\t\t\t[-99.575598, 35.508861],\n\t\t\t\t\t\t[-99.575820, 35.421655],\n\t\t\t\t\t\t[-100.000389, 35.422364],\n\t\t\t\t\t\t[-100.000392, 35.619115]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US24045\",\n\t\t\t\t\"STATE\": \"24\",\n\t\t\t\t\"COUNTY\": \"045\",\n\t\t\t\t\"NAME\": \"Wicomico\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 374.444000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-75.920279, 38.264415],\n\t\t\t\t\t\t[-75.925492, 38.266670],\n\t\t\t\t\t\t[-75.928628, 38.297272],\n\t\t\t\t\t\t[-75.864213, 38.350782],\n\t\t\t\t\t\t[-75.860258, 38.353868],\n\t\t\t\t\t\t[-75.857673, 38.357011],\n\t\t\t\t\t\t[-75.857207, 38.359942],\n\t\t\t\t\t\t[-75.857656, 38.363498],\n\t\t\t\t\t\t[-75.859499, 38.366750],\n\t\t\t\t\t\t[-75.866042, 38.373053],\n\t\t\t\t\t\t[-75.867311, 38.375118],\n\t\t\t\t\t\t[-75.865397, 38.379064],\n\t\t\t\t\t\t[-75.860851, 38.383577],\n\t\t\t\t\t\t[-75.855290, 38.385345],\n\t\t\t\t\t\t[-75.846202, 38.384405],\n\t\t\t\t\t\t[-75.840348, 38.384784],\n\t\t\t\t\t\t[-75.838282, 38.385878],\n\t\t\t\t\t\t[-75.838369, 38.387476],\n\t\t\t\t\t\t[-75.842399, 38.393082],\n\t\t\t\t\t\t[-75.846741, 38.397058],\n\t\t\t\t\t\t[-75.851258, 38.400348],\n\t\t\t\t\t\t[-75.850952, 38.404536],\n\t\t\t\t\t\t[-75.847281, 38.417287],\n\t\t\t\t\t\t[-75.845573, 38.421868],\n\t\t\t\t\t\t[-75.843343, 38.422745],\n\t\t\t\t\t\t[-75.828869, 38.423417],\n\t\t\t\t\t\t[-75.824960, 38.425372],\n\t\t\t\t\t\t[-75.821287, 38.430135],\n\t\t\t\t\t\t[-75.819829, 38.435886],\n\t\t\t\t\t\t[-75.821342, 38.439261],\n\t\t\t\t\t\t[-75.826639, 38.442231],\n\t\t\t\t\t\t[-75.833127, 38.443443],\n\t\t\t\t\t\t[-75.835994, 38.445207],\n\t\t\t\t\t\t[-75.836743, 38.448088],\n\t\t\t\t\t\t[-75.835728, 38.453290],\n\t\t\t\t\t\t[-75.833160, 38.457620],\n\t\t\t\t\t\t[-75.828492, 38.459614],\n\t\t\t\t\t\t[-75.821994, 38.460959],\n\t\t\t\t\t\t[-75.816690, 38.463307],\n\t\t\t\t\t\t[-75.814901, 38.466459],\n\t\t\t\t\t\t[-75.815772, 38.469373],\n\t\t\t\t\t\t[-75.818709, 38.472332],\n\t\t\t\t\t\t[-75.822902, 38.476010],\n\t\t\t\t\t\t[-75.824765, 38.479095],\n\t\t\t\t\t\t[-75.823706, 38.481022],\n\t\t\t\t\t\t[-75.815193, 38.488794],\n\t\t\t\t\t\t[-75.800496, 38.491020],\n\t\t\t\t\t\t[-75.794660, 38.492373],\n\t\t\t\t\t\t[-75.784972, 38.500115],\n\t\t\t\t\t\t[-75.782064, 38.501596],\n\t\t\t\t\t\t[-75.764994, 38.506479],\n\t\t\t\t\t\t[-75.759754, 38.510122],\n\t\t\t\t\t\t[-75.756022, 38.515316],\n\t\t\t\t\t\t[-75.753636, 38.528100],\n\t\t\t\t\t\t[-75.749655, 38.531688],\n\t\t\t\t\t\t[-75.746515, 38.536785],\n\t\t\t\t\t\t[-75.740586, 38.538364],\n\t\t\t\t\t\t[-75.737763, 38.537649],\n\t\t\t\t\t\t[-75.729760, 38.538704],\n\t\t\t\t\t\t[-75.724490, 38.541230],\n\t\t\t\t\t\t[-75.718793, 38.546184],\n\t\t\t\t\t\t[-75.711893, 38.550876],\n\t\t\t\t\t\t[-75.707340, 38.559524],\n\t\t\t\t\t\t[-75.701565, 38.560736],\n\t\t\t\t\t\t[-75.701465, 38.559433],\n\t\t\t\t\t\t[-75.700179, 38.542717],\n\t\t\t\t\t\t[-75.698777, 38.522001],\n\t\t\t\t\t\t[-75.696688, 38.496467],\n\t\t\t\t\t\t[-75.696369, 38.492373],\n\t\t\t\t\t\t[-75.693521, 38.460128],\n\t\t\t\t\t\t[-75.665585, 38.458900],\n\t\t\t\t\t\t[-75.662843, 38.458759],\n\t\t\t\t\t\t[-75.630457, 38.457904],\n\t\t\t\t\t\t[-75.598069, 38.456855],\n\t\t\t\t\t\t[-75.593082, 38.456404],\n\t\t\t\t\t\t[-75.589307, 38.456286],\n\t\t\t\t\t\t[-75.583601, 38.456424],\n\t\t\t\t\t\t[-75.574110, 38.455991],\n\t\t\t\t\t\t[-75.559934, 38.455579],\n\t\t\t\t\t\t[-75.559212, 38.455563],\n\t\t\t\t\t\t[-75.533763, 38.454958],\n\t\t\t\t\t\t[-75.522730, 38.454657],\n\t\t\t\t\t\t[-75.521304, 38.454657],\n\t\t\t\t\t\t[-75.502961, 38.454220],\n\t\t\t\t\t\t[-75.500142, 38.454144],\n\t\t\t\t\t\t[-75.479150, 38.453699],\n\t\t\t\t\t\t[-75.428728, 38.452671],\n\t\t\t\t\t\t[-75.424831, 38.452610],\n\t\t\t\t\t\t[-75.410884, 38.452400],\n\t\t\t\t\t\t[-75.394786, 38.452160],\n\t\t\t\t\t\t[-75.393563, 38.452114],\n\t\t\t\t\t\t[-75.371054, 38.452107],\n\t\t\t\t\t\t[-75.355797, 38.452008],\n\t\t\t\t\t\t[-75.341250, 38.451970],\n\t\t\t\t\t\t[-75.341247, 38.451970],\n\t\t\t\t\t\t[-75.307011, 38.354760],\n\t\t\t\t\t\t[-75.364641, 38.290359],\n\t\t\t\t\t\t[-75.612764, 38.278626],\n\t\t\t\t\t\t[-75.768671, 38.285183],\n\t\t\t\t\t\t[-75.864628, 38.238320],\n\t\t\t\t\t\t[-75.870310, 38.243425],\n\t\t\t\t\t\t[-75.870318, 38.243432],\n\t\t\t\t\t\t[-75.872464, 38.243968],\n\t\t\t\t\t\t[-75.874653, 38.244514],\n\t\t\t\t\t\t[-75.882873, 38.244449],\n\t\t\t\t\t\t[-75.883435, 38.244445],\n\t\t\t\t\t\t[-75.885200, 38.243395],\n\t\t\t\t\t\t[-75.886841, 38.242418],\n\t\t\t\t\t\t[-75.887409, 38.242080],\n\t\t\t\t\t\t[-75.888513, 38.241423],\n\t\t\t\t\t\t[-75.889356, 38.239500],\n\t\t\t\t\t\t[-75.885676, 38.231006],\n\t\t\t\t\t\t[-75.885909, 38.230866],\n\t\t\t\t\t\t[-75.890669, 38.228009],\n\t\t\t\t\t\t[-75.894583, 38.228439],\n\t\t\t\t\t\t[-75.895689, 38.228561],\n\t\t\t\t\t\t[-75.895879, 38.228717],\n\t\t\t\t\t\t[-75.899781, 38.231921],\n\t\t\t\t\t\t[-75.900040, 38.232133],\n\t\t\t\t\t\t[-75.900661, 38.233206],\n\t\t\t\t\t\t[-75.901381, 38.234448],\n\t\t\t\t\t\t[-75.905852, 38.242165],\n\t\t\t\t\t\t[-75.906016, 38.242447],\n\t\t\t\t\t\t[-75.908450, 38.246648],\n\t\t\t\t\t\t[-75.908272, 38.252045],\n\t\t\t\t\t\t[-75.911143, 38.257951],\n\t\t\t\t\t\t[-75.917297, 38.263126],\n\t\t\t\t\t\t[-75.919446, 38.264056],\n\t\t\t\t\t\t[-75.920279, 38.264415]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US25025\",\n\t\t\t\t\"STATE\": \"25\",\n\t\t\t\t\"COUNTY\": \"025\",\n\t\t\t\t\"NAME\": \"Suffolk\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 58.154000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-71.042794, 42.276998],\n\t\t\t\t\t\t[-71.055494, 42.275698],\n\t\t\t\t\t\t[-71.053395, 42.272297],\n\t\t\t\t\t\t[-71.061593, 42.267299],\n\t\t\t\t\t\t[-71.065651, 42.271052],\n\t\t\t\t\t\t[-71.082968, 42.268496],\n\t\t\t\t\t\t[-71.088672, 42.269733],\n\t\t\t\t\t\t[-71.102691, 42.259884],\n\t\t\t\t\t\t[-71.112938, 42.258641],\n\t\t\t\t\t\t[-71.130808, 42.227880],\n\t\t\t\t\t\t[-71.191155, 42.283059],\n\t\t\t\t\t\t[-71.178636, 42.294595],\n\t\t\t\t\t\t[-71.164804, 42.303764],\n\t\t\t\t\t\t[-71.178935, 42.314316],\n\t\t\t\t\t\t[-71.156833, 42.330189],\n\t\t\t\t\t\t[-71.167565, 42.333441],\n\t\t\t\t\t\t[-71.174798, 42.350265],\n\t\t\t\t\t\t[-71.167625, 42.360073],\n\t\t\t\t\t\t[-71.148565, 42.361174],\n\t\t\t\t\t\t[-71.143501, 42.364969],\n\t\t\t\t\t\t[-71.130997, 42.373796],\n\t\t\t\t\t\t[-71.117197, 42.367197],\n\t\t\t\t\t\t[-71.117099, 42.355594],\n\t\t\t\t\t\t[-71.099196, 42.352797],\n\t\t\t\t\t\t[-71.077095, 42.358697],\n\t\t\t\t\t\t[-71.069795, 42.369097],\n\t\t\t\t\t\t[-71.064095, 42.368997],\n\t\t\t\t\t\t[-71.080595, 42.380997],\n\t\t\t\t\t\t[-71.073496, 42.391796],\n\t\t\t\t\t\t[-71.055295, 42.387097],\n\t\t\t\t\t\t[-71.033203, 42.414226],\n\t\t\t\t\t\t[-71.020377, 42.438250],\n\t\t\t\t\t\t[-71.025777, 42.444753],\n\t\t\t\t\t\t[-70.982294, 42.431296],\n\t\t\t\t\t\t[-70.960647, 42.443787],\n\t\t\t\t\t\t[-70.960835, 42.441272],\n\t\t\t\t\t\t[-70.982994, 42.423996],\n\t\t\t\t\t\t[-70.987694, 42.416696],\n\t\t\t\t\t\t[-70.990595, 42.407098],\n\t\t\t\t\t\t[-70.989195, 42.402598],\n\t\t\t\t\t\t[-70.985068, 42.402041],\n\t\t\t\t\t\t[-70.983426, 42.396246],\n\t\t\t\t\t\t[-70.980336, 42.391513],\n\t\t\t\t\t\t[-70.972706, 42.389968],\n\t\t\t\t\t\t[-70.970195, 42.388036],\n\t\t\t\t\t\t[-70.971740, 42.387071],\n\t\t\t\t\t\t[-70.972513, 42.385042],\n\t\t\t\t\t\t[-70.972706, 42.381759],\n\t\t\t\t\t\t[-70.972223, 42.377316],\n\t\t\t\t\t\t[-70.960798, 42.360648],\n\t\t\t\t\t\t[-70.953292, 42.349698],\n\t\t\t\t\t\t[-70.953022, 42.343973],\n\t\t\t\t\t\t[-70.963578, 42.346860],\n\t\t\t\t\t\t[-70.972418, 42.353875],\n\t\t\t\t\t\t[-70.974897, 42.355843],\n\t\t\t\t\t\t[-70.979927, 42.356382],\n\t\t\t\t\t\t[-70.982282, 42.355920],\n\t\t\t\t\t\t[-70.998253, 42.352788],\n\t\t\t\t\t\t[-71.006877, 42.347039],\n\t\t\t\t\t\t[-71.010146, 42.339234],\n\t\t\t\t\t\t[-71.011804, 42.335274],\n\t\t\t\t\t\t[-71.015680, 42.326019],\n\t\t\t\t\t\t[-71.013165, 42.315419],\n\t\t\t\t\t\t[-71.005399, 42.307196],\n\t\t\t\t\t\t[-71.041694, 42.305298],\n\t\t\t\t\t\t[-71.042794, 42.276998]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26001\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"001\",\n\t\t\t\t\"NAME\": \"Alcona\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 674.585000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.321093, 44.858494],\n\t\t\t\t\t\t[-83.321237, 44.853102],\n\t\t\t\t\t\t[-83.321241, 44.852962],\n\t\t\t\t\t\t[-83.321089, 44.852723],\n\t\t\t\t\t\t[-83.318373, 44.848440],\n\t\t\t\t\t\t[-83.314429, 44.842220],\n\t\t\t\t\t\t[-83.314330, 44.842131],\n\t\t\t\t\t\t[-83.312940, 44.840882],\n\t\t\t\t\t\t[-83.312831, 44.840783],\n\t\t\t\t\t\t[-83.312478, 44.840466],\n\t\t\t\t\t\t[-83.308578, 44.836960],\n\t\t\t\t\t\t[-83.306854, 44.835410],\n\t\t\t\t\t\t[-83.300648, 44.829831],\n\t\t\t\t\t\t[-83.299737, 44.823362],\n\t\t\t\t\t\t[-83.298618, 44.815416],\n\t\t\t\t\t\t[-83.295530, 44.793486],\n\t\t\t\t\t\t[-83.295518, 44.793397],\n\t\t\t\t\t\t[-83.295650, 44.790237],\n\t\t\t\t\t\t[-83.295696, 44.789112],\n\t\t\t\t\t\t[-83.296125, 44.778828],\n\t\t\t\t\t\t[-83.296969, 44.758543],\n\t\t\t\t\t\t[-83.296971, 44.758495],\n\t\t\t\t\t\t[-83.298021, 44.755632],\n\t\t\t\t\t\t[-83.298287, 44.754907],\n\t\t\t\t\t\t[-83.298237, 44.754465],\n\t\t\t\t\t\t[-83.297797, 44.750547],\n\t\t\t\t\t\t[-83.297526, 44.748140],\n\t\t\t\t\t\t[-83.297420, 44.747203],\n\t\t\t\t\t\t[-83.297300, 44.746134],\n\t\t\t\t\t\t[-83.296265, 44.743502],\n\t\t\t\t\t\t[-83.290944, 44.729974],\n\t\t\t\t\t\t[-83.290665, 44.729265],\n\t\t\t\t\t\t[-83.288214, 44.726453],\n\t\t\t\t\t\t[-83.284724, 44.722450],\n\t\t\t\t\t\t[-83.284128, 44.721766],\n\t\t\t\t\t\t[-83.283098, 44.721011],\n\t\t\t\t\t\t[-83.277213, 44.716700],\n\t\t\t\t\t\t[-83.274747, 44.714893],\n\t\t\t\t\t\t[-83.274103, 44.714421],\n\t\t\t\t\t\t[-83.273393, 44.713901],\n\t\t\t\t\t\t[-83.274674, 44.704770],\n\t\t\t\t\t\t[-83.275078, 44.701891],\n\t\t\t\t\t\t[-83.275281, 44.700441],\n\t\t\t\t\t\t[-83.275318, 44.700177],\n\t\t\t\t\t\t[-83.275500, 44.698882],\n\t\t\t\t\t\t[-83.275543, 44.698574],\n\t\t\t\t\t\t[-83.275601, 44.698161],\n\t\t\t\t\t\t[-83.276137, 44.694340],\n\t\t\t\t\t\t[-83.276836, 44.689354],\n\t\t\t\t\t\t[-83.277476, 44.687507],\n\t\t\t\t\t\t[-83.279129, 44.682735],\n\t\t\t\t\t\t[-83.279288, 44.682278],\n\t\t\t\t\t\t[-83.285992, 44.662927],\n\t\t\t\t\t\t[-83.286874, 44.660380],\n\t\t\t\t\t\t[-83.287211, 44.659409],\n\t\t\t\t\t\t[-83.287585, 44.658328],\n\t\t\t\t\t\t[-83.287802, 44.657703],\n\t\t\t\t\t\t[-83.289442, 44.652968],\n\t\t\t\t\t\t[-83.295377, 44.645360],\n\t\t\t\t\t\t[-83.307116, 44.630313],\n\t\t\t\t\t\t[-83.307504, 44.629816],\n\t\t\t\t\t\t[-83.309222, 44.624650],\n\t\t\t\t\t\t[-83.309802, 44.622906],\n\t\t\t\t\t\t[-83.309869, 44.622703],\n\t\t\t\t\t\t[-83.314450, 44.608926],\n\t\t\t\t\t\t[-83.314517, 44.608725],\n\t\t\t\t\t\t[-83.314534, 44.608512],\n\t\t\t\t\t\t[-83.315037, 44.602190],\n\t\t\t\t\t\t[-83.315040, 44.602152],\n\t\t\t\t\t\t[-83.315277, 44.599178],\n\t\t\t\t\t\t[-83.315435, 44.597193],\n\t\t\t\t\t\t[-83.315603, 44.595079],\n\t\t\t\t\t\t[-83.315503, 44.593514],\n\t\t\t\t\t\t[-83.314127, 44.572043],\n\t\t\t\t\t\t[-83.314098, 44.571592],\n\t\t\t\t\t\t[-83.314013, 44.570266],\n\t\t\t\t\t\t[-83.313925, 44.568888],\n\t\t\t\t\t\t[-83.313893, 44.568395],\n\t\t\t\t\t\t[-83.313813, 44.567148],\n\t\t\t\t\t\t[-83.313792, 44.566822],\n\t\t\t\t\t\t[-83.313744, 44.566076],\n\t\t\t\t\t\t[-83.313649, 44.564588],\n\t\t\t\t\t\t[-83.313623, 44.564498],\n\t\t\t\t\t\t[-83.309234, 44.549444],\n\t\t\t\t\t\t[-83.309117, 44.549043],\n\t\t\t\t\t\t[-83.308918, 44.548360],\n\t\t\t\t\t\t[-83.308906, 44.548140],\n\t\t\t\t\t\t[-83.308471, 44.539902],\n\t\t\t\t\t\t[-83.309385, 44.537528],\n\t\t\t\t\t\t[-83.310185, 44.535448],\n\t\t\t\t\t\t[-83.310376, 44.534952],\n\t\t\t\t\t\t[-83.311245, 44.532693],\n\t\t\t\t\t\t[-83.311529, 44.531956],\n\t\t\t\t\t\t[-83.318104, 44.514871],\n\t\t\t\t\t\t[-83.318279, 44.514416],\n\t\t\t\t\t\t[-83.318276, 44.514294],\n\t\t\t\t\t\t[-83.318216, 44.511734],\n\t\t\t\t\t\t[-83.886634, 44.508973],\n\t\t\t\t\t\t[-83.888484, 44.856458],\n\t\t\t\t\t\t[-83.321093, 44.858494]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US41015\",\n\t\t\t\t\"STATE\": \"41\",\n\t\t\t\t\"COUNTY\": \"015\",\n\t\t\t\t\"NAME\": \"Curry\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1627.460000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-124.479344, 42.954970],\n\t\t\t\t\t\t[-124.257111, 42.954757],\n\t\t\t\t\t\t[-124.141977, 42.849334],\n\t\t\t\t\t\t[-124.132985, 42.666379],\n\t\t\t\t\t\t[-123.812093, 42.789433],\n\t\t\t\t\t\t[-123.777322, 42.798988],\n\t\t\t\t\t\t[-123.727589, 42.780135],\n\t\t\t\t\t\t[-123.716190, 42.784234],\n\t\t\t\t\t\t[-123.831762, 42.632561],\n\t\t\t\t\t\t[-123.885746, 42.504233],\n\t\t\t\t\t\t[-124.008397, 42.496352],\n\t\t\t\t\t\t[-124.041983, 42.387656],\n\t\t\t\t\t\t[-124.025894, 42.359130],\n\t\t\t\t\t\t[-123.892189, 42.352831],\n\t\t\t\t\t\t[-123.839687, 42.311532],\n\t\t\t\t\t\t[-123.791241, 42.236398],\n\t\t\t\t\t\t[-123.856786, 42.141132],\n\t\t\t\t\t\t[-123.821472, 41.995473],\n\t\t\t\t\t\t[-124.086661, 41.996869],\n\t\t\t\t\t\t[-124.087827, 41.996891],\n\t\t\t\t\t\t[-124.100216, 41.996842],\n\t\t\t\t\t\t[-124.100921, 41.996956],\n\t\t\t\t\t\t[-124.211605, 41.998460],\n\t\t\t\t\t\t[-124.214213, 42.005939],\n\t\t\t\t\t\t[-124.270464, 42.045553],\n\t\t\t\t\t\t[-124.287374, 42.046016],\n\t\t\t\t\t\t[-124.299649, 42.051736],\n\t\t\t\t\t\t[-124.314289, 42.067864],\n\t\t\t\t\t\t[-124.341010, 42.092929],\n\t\t\t\t\t\t[-124.356229, 42.114952],\n\t\t\t\t\t\t[-124.357122, 42.118016],\n\t\t\t\t\t\t[-124.351535, 42.129796],\n\t\t\t\t\t\t[-124.351784, 42.134965],\n\t\t\t\t\t\t[-124.355696, 42.141964],\n\t\t\t\t\t\t[-124.361563, 42.143767],\n\t\t\t\t\t\t[-124.366028, 42.152343],\n\t\t\t\t\t\t[-124.366832, 42.158450],\n\t\t\t\t\t\t[-124.363389, 42.158588],\n\t\t\t\t\t\t[-124.360318, 42.162272],\n\t\t\t\t\t\t[-124.361009, 42.180752],\n\t\t\t\t\t\t[-124.367751, 42.188321],\n\t\t\t\t\t\t[-124.373175, 42.190218],\n\t\t\t\t\t\t[-124.374949, 42.193129],\n\t\t\t\t\t\t[-124.376215, 42.196381],\n\t\t\t\t\t\t[-124.375553, 42.208820],\n\t\t\t\t\t\t[-124.377762, 42.218809],\n\t\t\t\t\t\t[-124.383633, 42.227160],\n\t\t\t\t\t\t[-124.410982, 42.250547],\n\t\t\t\t\t\t[-124.411534, 42.254115],\n\t\t\t\t\t\t[-124.408514, 42.260588],\n\t\t\t\t\t\t[-124.405148, 42.278107],\n\t\t\t\t\t\t[-124.410556, 42.307431],\n\t\t\t\t\t\t[-124.429288, 42.331746],\n\t\t\t\t\t\t[-124.427222, 42.334880],\n\t\t\t\t\t\t[-124.425554, 42.351874],\n\t\t\t\t\t\t[-124.424066, 42.377242],\n\t\t\t\t\t\t[-124.424863, 42.395426],\n\t\t\t\t\t\t[-124.428068, 42.420333],\n\t\t\t\t\t\t[-124.434882, 42.434916],\n\t\t\t\t\t\t[-124.435105, 42.440163],\n\t\t\t\t\t\t[-124.422038, 42.461226],\n\t\t\t\t\t\t[-124.423084, 42.478952],\n\t\t\t\t\t\t[-124.421381, 42.491737],\n\t\t\t\t\t\t[-124.399065, 42.539928],\n\t\t\t\t\t\t[-124.390664, 42.566593],\n\t\t\t\t\t\t[-124.389977, 42.574758],\n\t\t\t\t\t\t[-124.400918, 42.597518],\n\t\t\t\t\t\t[-124.399421, 42.618079],\n\t\t\t\t\t\t[-124.401177, 42.627192],\n\t\t\t\t\t\t[-124.413119, 42.657934],\n\t\t\t\t\t\t[-124.416774, 42.661594],\n\t\t\t\t\t\t[-124.450740, 42.675798],\n\t\t\t\t\t\t[-124.451484, 42.677787],\n\t\t\t\t\t\t[-124.447487, 42.684740],\n\t\t\t\t\t\t[-124.448418, 42.689909],\n\t\t\t\t\t\t[-124.473864, 42.732671],\n\t\t\t\t\t\t[-124.491679, 42.741789],\n\t\t\t\t\t\t[-124.498473, 42.741077],\n\t\t\t\t\t\t[-124.499122, 42.738606],\n\t\t\t\t\t\t[-124.510017, 42.734746],\n\t\t\t\t\t\t[-124.513368, 42.735068],\n\t\t\t\t\t\t[-124.514669, 42.736806],\n\t\t\t\t\t\t[-124.516236, 42.753632],\n\t\t\t\t\t\t[-124.524439, 42.789793],\n\t\t\t\t\t\t[-124.536073, 42.814175],\n\t\t\t\t\t\t[-124.544179, 42.822958],\n\t\t\t\t\t\t[-124.552441, 42.840568],\n\t\t\t\t\t\t[-124.500141, 42.917502],\n\t\t\t\t\t\t[-124.480938, 42.951495],\n\t\t\t\t\t\t[-124.479344, 42.954970]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US41025\",\n\t\t\t\t\"STATE\": \"41\",\n\t\t\t\t\"COUNTY\": \"025\",\n\t\t\t\t\"NAME\": \"Harney\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 10133.170000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-118.197189, 41.996995],\n\t\t\t\t\t\t[-118.775869, 41.992692],\n\t\t\t\t\t\t[-118.777228, 41.992671],\n\t\t\t\t\t\t[-119.324182, 41.994278],\n\t\t\t\t\t\t[-119.360177, 41.994384],\n\t\t\t\t\t\t[-119.365284, 42.749038],\n\t\t\t\t\t\t[-119.943888, 42.746320],\n\t\t\t\t\t\t[-119.932439, 43.178982],\n\t\t\t\t\t\t[-119.896776, 43.179006],\n\t\t\t\t\t\t[-119.896365, 43.610259],\n\t\t\t\t\t\t[-119.898172, 43.698323],\n\t\t\t\t\t\t[-119.777526, 43.698081],\n\t\t\t\t\t\t[-119.775653, 43.959068],\n\t\t\t\t\t\t[-119.657577, 43.959051],\n\t\t\t\t\t\t[-118.816649, 43.959975],\n\t\t\t\t\t\t[-118.816250, 44.047678],\n\t\t\t\t\t\t[-118.586746, 44.040078],\n\t\t\t\t\t\t[-118.227435, 44.039981],\n\t\t\t\t\t\t[-118.231926, 43.778980],\n\t\t\t\t\t\t[-118.214725, 42.276029],\n\t\t\t\t\t\t[-118.195361, 42.275869],\n\t\t\t\t\t\t[-118.197189, 41.996995]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26089\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"089\",\n\t\t\t\t\"NAME\": \"Leelanau\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 347.171000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-85.640216, 44.775051],\n\t\t\t\t\t\t\t[-85.815120, 44.774525],\n\t\t\t\t\t\t\t[-86.073073, 44.778393],\n\t\t\t\t\t\t\t[-86.071746, 44.804717],\n\t\t\t\t\t\t\t[-86.065966, 44.821522],\n\t\t\t\t\t\t\t[-86.066031, 44.834852],\n\t\t\t\t\t\t\t[-86.071112, 44.865420],\n\t\t\t\t\t\t\t[-86.072468, 44.884788],\n\t\t\t\t\t\t\t[-86.070990, 44.895876],\n\t\t\t\t\t\t\t[-86.066745, 44.905685],\n\t\t\t\t\t\t\t[-86.058862, 44.911012],\n\t\t\t\t\t\t\t[-86.038332, 44.915696],\n\t\t\t\t\t\t\t[-86.031194, 44.907349],\n\t\t\t\t\t\t\t[-86.021513, 44.902774],\n\t\t\t\t\t\t\t[-86.009355, 44.899454],\n\t\t\t\t\t\t\t[-85.992535, 44.900026],\n\t\t\t\t\t\t\t[-85.980219, 44.906136],\n\t\t\t\t\t\t\t[-85.972824, 44.914781],\n\t\t\t\t\t\t\t[-85.967169, 44.929484],\n\t\t\t\t\t\t\t[-85.961603, 44.935567],\n\t\t\t\t\t\t\t[-85.952721, 44.940758],\n\t\t\t\t\t\t\t[-85.942099, 44.954317],\n\t\t\t\t\t\t\t[-85.938589, 44.964559],\n\t\t\t\t\t\t\t[-85.931600, 44.968788],\n\t\t\t\t\t\t\t[-85.915851, 44.968307],\n\t\t\t\t\t\t\t[-85.897626, 44.962014],\n\t\t\t\t\t\t\t[-85.891543, 44.957783],\n\t\t\t\t\t\t\t[-85.879934, 44.943305],\n\t\t\t\t\t\t\t[-85.869852, 44.939031],\n\t\t\t\t\t\t\t[-85.854304, 44.938147],\n\t\t\t\t\t\t\t[-85.836150, 44.940256],\n\t\t\t\t\t\t\t[-85.815451, 44.945631],\n\t\t\t\t\t\t\t[-85.807403, 44.949814],\n\t\t\t\t\t\t\t[-85.780439, 44.977932],\n\t\t\t\t\t\t\t[-85.778278, 44.983075],\n\t\t\t\t\t\t\t[-85.776207, 45.000574],\n\t\t\t\t\t\t\t[-85.771395, 45.015181],\n\t\t\t\t\t\t\t[-85.761943, 45.023454],\n\t\t\t\t\t\t\t[-85.746444, 45.051229],\n\t\t\t\t\t\t\t[-85.740836, 45.055575],\n\t\t\t\t\t\t\t[-85.712262, 45.065622],\n\t\t\t\t\t\t\t[-85.695715, 45.076461],\n\t\t\t\t\t\t\t[-85.681096, 45.092693],\n\t\t\t\t\t\t\t[-85.675671, 45.105540],\n\t\t\t\t\t\t\t[-85.674861, 45.116216],\n\t\t\t\t\t\t\t[-85.656024, 45.145788],\n\t\t\t\t\t\t\t[-85.618639, 45.186771],\n\t\t\t\t\t\t\t[-85.613174, 45.184624],\n\t\t\t\t\t\t\t[-85.611684, 45.181104],\n\t\t\t\t\t\t\t[-85.606963, 45.178477],\n\t\t\t\t\t\t\t[-85.593064, 45.178527],\n\t\t\t\t\t\t\t[-85.585986, 45.180381],\n\t\t\t\t\t\t\t[-85.564654, 45.192546],\n\t\t\t\t\t\t\t[-85.561809, 45.200524],\n\t\t\t\t\t\t\t[-85.551072, 45.210742],\n\t\t\t\t\t\t\t[-85.540497, 45.210169],\n\t\t\t\t\t\t\t[-85.526734, 45.189316],\n\t\t\t\t\t\t\t[-85.531461, 45.177247],\n\t\t\t\t\t\t\t[-85.536892, 45.173385],\n\t\t\t\t\t\t\t[-85.552179, 45.167352],\n\t\t\t\t\t\t\t[-85.561680, 45.158940],\n\t\t\t\t\t\t\t[-85.562104, 45.156954],\n\t\t\t\t\t\t\t[-85.563102, 45.155358],\n\t\t\t\t\t\t\t[-85.563900, 45.154361],\n\t\t\t\t\t\t\t[-85.564897, 45.153962],\n\t\t\t\t\t\t\t[-85.566493, 45.153762],\n\t\t\t\t\t\t\t[-85.568489, 45.153762],\n\t\t\t\t\t\t\t[-85.570178, 45.155145],\n\t\t\t\t\t\t\t[-85.573893, 45.155488],\n\t\t\t\t\t\t\t[-85.590434, 45.153175],\n\t\t\t\t\t\t\t[-85.599801, 45.149286],\n\t\t\t\t\t\t\t[-85.614319, 45.127562],\n\t\t\t\t\t\t\t[-85.609266, 45.113510],\n\t\t\t\t\t\t\t[-85.583198, 45.071304],\n\t\t\t\t\t\t\t[-85.573353, 45.068382],\n\t\t\t\t\t\t\t[-85.566066, 45.059201],\n\t\t\t\t\t\t\t[-85.566130, 45.043633],\n\t\t\t\t\t\t\t[-85.570160, 45.041278],\n\t\t\t\t\t\t\t[-85.573976, 45.043361],\n\t\t\t\t\t\t\t[-85.597181, 45.040547],\n\t\t\t\t\t\t\t[-85.599652, 45.021749],\n\t\t\t\t\t\t\t[-85.609123, 45.013103],\n\t\t\t\t\t\t\t[-85.621878, 45.004529],\n\t\t\t\t\t\t\t[-85.606588, 44.990662],\n\t\t\t\t\t\t\t[-85.604301, 44.990983],\n\t\t\t\t\t\t\t[-85.602356, 44.974272],\n\t\t\t\t\t\t\t[-85.602034, 44.926743],\n\t\t\t\t\t\t\t[-85.621403, 44.923123],\n\t\t\t\t\t\t\t[-85.625497, 44.921107],\n\t\t\t\t\t\t\t[-85.639842, 44.890255],\n\t\t\t\t\t\t\t[-85.645456, 44.883645],\n\t\t\t\t\t\t\t[-85.648932, 44.874010],\n\t\t\t\t\t\t\t[-85.652355, 44.849092],\n\t\t\t\t\t\t\t[-85.651435, 44.831624],\n\t\t\t\t\t\t\t[-85.641652, 44.810816],\n\t\t\t\t\t\t\t[-85.637000, 44.790078],\n\t\t\t\t\t\t\t[-85.640781, 44.775561],\n\t\t\t\t\t\t\t[-85.640216, 44.775051]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-86.093536, 45.007838],\n\t\t\t\t\t\t\t[-86.115699, 44.999093],\n\t\t\t\t\t\t\t[-86.133655, 44.996874],\n\t\t\t\t\t\t\t[-86.154824, 45.002394],\n\t\t\t\t\t\t\t[-86.156689, 45.010535],\n\t\t\t\t\t\t\t[-86.154557, 45.018102],\n\t\t\t\t\t\t\t[-86.141644, 45.040251],\n\t\t\t\t\t\t\t[-86.138095, 45.043038],\n\t\t\t\t\t\t\t[-86.117908, 45.048478],\n\t\t\t\t\t\t\t[-86.093166, 45.041492],\n\t\t\t\t\t\t\t[-86.079103, 45.030795],\n\t\t\t\t\t\t\t[-86.093451, 45.031660],\n\t\t\t\t\t\t\t[-86.097094, 45.030128],\n\t\t\t\t\t\t\t[-86.100315, 45.026240],\n\t\t\t\t\t\t\t[-86.101894, 45.022811],\n\t\t\t\t\t\t\t[-86.101214, 45.018101],\n\t\t\t\t\t\t\t[-86.093536, 45.007838]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-86.033174, 45.158420],\n\t\t\t\t\t\t\t[-86.005946, 45.155751],\n\t\t\t\t\t\t\t[-85.993194, 45.152805],\n\t\t\t\t\t\t\t[-85.989412, 45.151069],\n\t\t\t\t\t\t\t[-85.976803, 45.138363],\n\t\t\t\t\t\t\t[-85.976434, 45.120706],\n\t\t\t\t\t\t\t[-85.980433, 45.113046],\n\t\t\t\t\t\t\t[-85.984095, 45.087073],\n\t\t\t\t\t\t\t[-85.982799, 45.080787],\n\t\t\t\t\t\t\t[-85.977082, 45.072993],\n\t\t\t\t\t\t\t[-85.976883, 45.062660],\n\t\t\t\t\t\t\t[-85.997360, 45.055929],\n\t\t\t\t\t\t\t[-86.013073, 45.063774],\n\t\t\t\t\t\t\t[-86.019874, 45.071665],\n\t\t\t\t\t\t\t[-86.037129, 45.086576],\n\t\t\t\t\t\t\t[-86.052424, 45.095311],\n\t\t\t\t\t\t\t[-86.058653, 45.100776],\n\t\t\t\t\t\t\t[-86.060396, 45.104617],\n\t\t\t\t\t\t\t[-86.065016, 45.140266],\n\t\t\t\t\t\t\t[-86.059393, 45.152291],\n\t\t\t\t\t\t\t[-86.050473, 45.158418],\n\t\t\t\t\t\t\t[-86.044430, 45.159582],\n\t\t\t\t\t\t\t[-86.033174, 45.158420]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26105\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"105\",\n\t\t\t\t\"NAME\": \"Mason\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 495.073000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.431064, 43.819406],\n\t\t\t\t\t\t[-86.431172, 43.836638],\n\t\t\t\t\t\t[-86.431176, 43.837177],\n\t\t\t\t\t\t[-86.431182, 43.838119],\n\t\t\t\t\t\t[-86.431198, 43.840720],\n\t\t\t\t\t\t[-86.431238, 43.840941],\n\t\t\t\t\t\t[-86.432894, 43.850013],\n\t\t\t\t\t\t[-86.433471, 43.853176],\n\t\t\t\t\t\t[-86.433915, 43.855608],\n\t\t\t\t\t\t[-86.434078, 43.856090],\n\t\t\t\t\t\t[-86.434258, 43.856623],\n\t\t\t\t\t\t[-86.434985, 43.858771],\n\t\t\t\t\t\t[-86.445455, 43.889726],\n\t\t\t\t\t\t[-86.445730, 43.892897],\n\t\t\t\t\t\t[-86.445938, 43.895290],\n\t\t\t\t\t\t[-86.446463, 43.901349],\n\t\t\t\t\t\t[-86.447915, 43.918089],\n\t\t\t\t\t\t[-86.448009, 43.918416],\n\t\t\t\t\t\t[-86.448147, 43.918897],\n\t\t\t\t\t\t[-86.449550, 43.923770],\n\t\t\t\t\t\t[-86.451275, 43.929763],\n\t\t\t\t\t\t[-86.454401, 43.940624],\n\t\t\t\t\t\t[-86.462756, 43.969655],\n\t\t\t\t\t\t[-86.463087, 43.970807],\n\t\t\t\t\t\t[-86.463136, 43.970976],\n\t\t\t\t\t\t[-86.463220, 43.971101],\n\t\t\t\t\t\t[-86.481606, 43.998599],\n\t\t\t\t\t\t[-86.483331, 44.001179],\n\t\t\t\t\t\t[-86.484399, 44.002382],\n\t\t\t\t\t\t[-86.501738, 44.021912],\n\t\t\t\t\t\t[-86.502998, 44.023839],\n\t\t\t\t\t\t[-86.504133, 44.025575],\n\t\t\t\t\t\t[-86.504440, 44.026044],\n\t\t\t\t\t\t[-86.508827, 44.032755],\n\t\t\t\t\t\t[-86.514742, 44.047920],\n\t\t\t\t\t\t[-86.514704, 44.057672],\n\t\t\t\t\t\t[-86.514702, 44.058119],\n\t\t\t\t\t\t[-86.514573, 44.058330],\n\t\t\t\t\t\t[-86.509052, 44.067408],\n\t\t\t\t\t\t[-86.508764, 44.067881],\n\t\t\t\t\t\t[-86.508415, 44.068206],\n\t\t\t\t\t\t[-86.501243, 44.074873],\n\t\t\t\t\t\t[-86.500453, 44.075607],\n\t\t\t\t\t\t[-86.497937, 44.077033],\n\t\t\t\t\t\t[-86.469295, 44.093267],\n\t\t\t\t\t\t[-86.454895, 44.101429],\n\t\t\t\t\t\t[-86.447678, 44.105519],\n\t\t\t\t\t\t[-86.447126, 44.105832],\n\t\t\t\t\t\t[-86.446883, 44.105970],\n\t\t\t\t\t\t[-86.446609, 44.106193],\n\t\t\t\t\t\t[-86.429871, 44.119782],\n\t\t\t\t\t\t[-86.426873, 44.123099],\n\t\t\t\t\t\t[-86.425876, 44.124203],\n\t\t\t\t\t\t[-86.425162, 44.124993],\n\t\t\t\t\t\t[-86.421576, 44.128962],\n\t\t\t\t\t\t[-86.421108, 44.129480],\n\t\t\t\t\t\t[-86.400645, 44.156848],\n\t\t\t\t\t\t[-86.397874, 44.161239],\n\t\t\t\t\t\t[-86.397023, 44.162589],\n\t\t\t\t\t\t[-86.396500, 44.163418],\n\t\t\t\t\t\t[-86.386867, 44.178685],\n\t\t\t\t\t\t[-86.041988, 44.167091],\n\t\t\t\t\t\t[-86.038948, 43.818977],\n\t\t\t\t\t\t[-86.037884, 43.815611],\n\t\t\t\t\t\t[-86.416471, 43.819572],\n\t\t\t\t\t\t[-86.431064, 43.819406]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28147\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"147\",\n\t\t\t\t\"NAME\": \"Walthall\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 403.944000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.040466, 31.336014],\n\t\t\t\t\t\t[-90.031896, 31.175727],\n\t\t\t\t\t\t[-89.938108, 31.118956],\n\t\t\t\t\t\t[-89.835873, 31.074926],\n\t\t\t\t\t\t[-89.835908, 31.002059],\n\t\t\t\t\t\t[-89.856862, 31.002075],\n\t\t\t\t\t\t[-89.892708, 31.001759],\n\t\t\t\t\t\t[-89.897516, 31.001913],\n\t\t\t\t\t\t[-89.923119, 31.001446],\n\t\t\t\t\t\t[-89.927161, 31.001437],\n\t\t\t\t\t\t[-89.972802, 31.001392],\n\t\t\t\t\t\t[-89.975430, 31.001692],\n\t\t\t\t\t\t[-90.005332, 31.001364],\n\t\t\t\t\t\t[-90.022185, 31.001302],\n\t\t\t\t\t\t[-90.029574, 31.001190],\n\t\t\t\t\t\t[-90.050706, 31.001215],\n\t\t\t\t\t\t[-90.128406, 31.001047],\n\t\t\t\t\t\t[-90.131395, 31.000924],\n\t\t\t\t\t\t[-90.164278, 31.001025],\n\t\t\t\t\t\t[-90.164676, 31.000980],\n\t\t\t\t\t\t[-90.259555, 31.000657],\n\t\t\t\t\t\t[-90.260391, 31.350274],\n\t\t\t\t\t\t[-90.243890, 31.350274],\n\t\t\t\t\t\t[-90.040466, 31.336014]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42107\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"107\",\n\t\t\t\t\"NAME\": \"Schuylkill\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 778.634000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-75.996233, 40.629971],\n\t\t\t\t\t\t[-76.012226, 40.577713],\n\t\t\t\t\t\t[-76.171624, 40.534947],\n\t\t\t\t\t\t[-76.440181, 40.495952],\n\t\t\t\t\t\t[-76.535414, 40.555157],\n\t\t\t\t\t\t[-76.535954, 40.555499],\n\t\t\t\t\t\t[-76.537576, 40.556525],\n\t\t\t\t\t\t[-76.538117, 40.556868],\n\t\t\t\t\t\t[-76.539858, 40.557915],\n\t\t\t\t\t\t[-76.543218, 40.559937],\n\t\t\t\t\t\t[-76.545071, 40.561076],\n\t\t\t\t\t\t[-76.545140, 40.561118],\n\t\t\t\t\t\t[-76.546803, 40.562141],\n\t\t\t\t\t\t[-76.547134, 40.562344],\n\t\t\t\t\t\t[-76.548127, 40.562955],\n\t\t\t\t\t\t[-76.548460, 40.563160],\n\t\t\t\t\t\t[-76.549423, 40.563753],\n\t\t\t\t\t\t[-76.552318, 40.565533],\n\t\t\t\t\t\t[-76.553283, 40.566127],\n\t\t\t\t\t\t[-76.555148, 40.567273],\n\t\t\t\t\t\t[-76.556354, 40.568014],\n\t\t\t\t\t\t[-76.560743, 40.570712],\n\t\t\t\t\t\t[-76.560911, 40.570815],\n\t\t\t\t\t\t[-76.562609, 40.571859],\n\t\t\t\t\t\t[-76.562649, 40.571883],\n\t\t\t\t\t\t[-76.563068, 40.572141],\n\t\t\t\t\t\t[-76.564446, 40.572989],\n\t\t\t\t\t\t[-76.564906, 40.573272],\n\t\t\t\t\t\t[-76.565051, 40.573361],\n\t\t\t\t\t\t[-76.565486, 40.573629],\n\t\t\t\t\t\t[-76.565631, 40.573719],\n\t\t\t\t\t\t[-76.566393, 40.574189],\n\t\t\t\t\t\t[-76.568682, 40.575599],\n\t\t\t\t\t\t[-76.569445, 40.576070],\n\t\t\t\t\t\t[-76.569480, 40.576092],\n\t\t\t\t\t\t[-76.570965, 40.577007],\n\t\t\t\t\t\t[-76.571818, 40.577533],\n\t\t\t\t\t\t[-76.575216, 40.579566],\n\t\t\t\t\t\t[-76.575558, 40.579770],\n\t\t\t\t\t\t[-76.577073, 40.580677],\n\t\t\t\t\t\t[-76.577091, 40.580688],\n\t\t\t\t\t\t[-76.577765, 40.581091],\n\t\t\t\t\t\t[-76.579789, 40.582303],\n\t\t\t\t\t\t[-76.580464, 40.582707],\n\t\t\t\t\t\t[-76.580763, 40.582886],\n\t\t\t\t\t\t[-76.581662, 40.583423],\n\t\t\t\t\t\t[-76.581962, 40.583603],\n\t\t\t\t\t\t[-76.582250, 40.583775],\n\t\t\t\t\t\t[-76.583115, 40.584293],\n\t\t\t\t\t\t[-76.583404, 40.584466],\n\t\t\t\t\t\t[-76.584014, 40.584831],\n\t\t\t\t\t\t[-76.584480, 40.585110],\n\t\t\t\t\t\t[-76.585822, 40.585963],\n\t\t\t\t\t\t[-76.586423, 40.586345],\n\t\t\t\t\t\t[-76.588384, 40.587592],\n\t\t\t\t\t\t[-76.594270, 40.591333],\n\t\t\t\t\t\t[-76.596232, 40.592580],\n\t\t\t\t\t\t[-76.596422, 40.592701],\n\t\t\t\t\t\t[-76.596992, 40.593064],\n\t\t\t\t\t\t[-76.597183, 40.593185],\n\t\t\t\t\t\t[-76.597468, 40.593360],\n\t\t\t\t\t\t[-76.598325, 40.593885],\n\t\t\t\t\t\t[-76.598611, 40.594061],\n\t\t\t\t\t\t[-76.600084, 40.594964],\n\t\t\t\t\t\t[-76.601283, 40.595723],\n\t\t\t\t\t\t[-76.607903, 40.599915],\n\t\t\t\t\t\t[-76.609284, 40.600739],\n\t\t\t\t\t\t[-76.609607, 40.600932],\n\t\t\t\t\t\t[-76.611987, 40.602354],\n\t\t\t\t\t\t[-76.612026, 40.602377],\n\t\t\t\t\t\t[-76.612146, 40.602449],\n\t\t\t\t\t\t[-76.612186, 40.602473],\n\t\t\t\t\t\t[-76.612414, 40.602609],\n\t\t\t\t\t\t[-76.612764, 40.602846],\n\t\t\t\t\t\t[-76.614473, 40.604007],\n\t\t\t\t\t\t[-76.614610, 40.604100],\n\t\t\t\t\t\t[-76.615053, 40.604380],\n\t\t\t\t\t\t[-76.615405, 40.604603],\n\t\t\t\t\t\t[-76.616465, 40.605273],\n\t\t\t\t\t\t[-76.616703, 40.605423],\n\t\t\t\t\t\t[-76.616819, 40.605497],\n\t\t\t\t\t\t[-76.616824, 40.605500],\n\t\t\t\t\t\t[-76.617203, 40.605739],\n\t\t\t\t\t\t[-76.618353, 40.606466],\n\t\t\t\t\t\t[-76.618738, 40.606709],\n\t\t\t\t\t\t[-76.619966, 40.607481],\n\t\t\t\t\t\t[-76.622898, 40.609324],\n\t\t\t\t\t\t[-76.623653, 40.609799],\n\t\t\t\t\t\t[-76.624686, 40.610449],\n\t\t\t\t\t\t[-76.624883, 40.610572],\n\t\t\t\t\t\t[-76.625287, 40.610824],\n\t\t\t\t\t\t[-76.626499, 40.611582],\n\t\t\t\t\t\t[-76.626903, 40.611835],\n\t\t\t\t\t\t[-76.629437, 40.613420],\n\t\t\t\t\t\t[-76.637041, 40.618175],\n\t\t\t\t\t\t[-76.639576, 40.619760],\n\t\t\t\t\t\t[-76.639697, 40.619836],\n\t\t\t\t\t\t[-76.639877, 40.619948],\n\t\t\t\t\t\t[-76.640780, 40.620513],\n\t\t\t\t\t\t[-76.641082, 40.620702],\n\t\t\t\t\t\t[-76.641102, 40.620714],\n\t\t\t\t\t\t[-76.641162, 40.620752],\n\t\t\t\t\t\t[-76.641183, 40.620765],\n\t\t\t\t\t\t[-76.641259, 40.620812],\n\t\t\t\t\t\t[-76.641433, 40.620922],\n\t\t\t\t\t\t[-76.641488, 40.620955],\n\t\t\t\t\t\t[-76.641566, 40.621001],\n\t\t\t\t\t\t[-76.643730, 40.622304],\n\t\t\t\t\t\t[-76.648348, 40.625086],\n\t\t\t\t\t\t[-76.650217, 40.626228],\n\t\t\t\t\t\t[-76.652374, 40.627546],\n\t\t\t\t\t\t[-76.653822, 40.628431],\n\t\t\t\t\t\t[-76.655755, 40.629613],\n\t\t\t\t\t\t[-76.658169, 40.631089],\n\t\t\t\t\t\t[-76.659618, 40.631975],\n\t\t\t\t\t\t[-76.660405, 40.632455],\n\t\t\t\t\t\t[-76.662765, 40.633898],\n\t\t\t\t\t\t[-76.663552, 40.634379],\n\t\t\t\t\t\t[-76.663554, 40.634380],\n\t\t\t\t\t\t[-76.663935, 40.634624],\n\t\t\t\t\t\t[-76.665083, 40.635359],\n\t\t\t\t\t\t[-76.665355, 40.635533],\n\t\t\t\t\t\t[-76.665469, 40.635601],\n\t\t\t\t\t\t[-76.666982, 40.636502],\n\t\t\t\t\t\t[-76.668823, 40.637599],\n\t\t\t\t\t\t[-76.671471, 40.639296],\n\t\t\t\t\t\t[-76.672833, 40.640169],\n\t\t\t\t\t\t[-76.672894, 40.640208],\n\t\t\t\t\t\t[-76.672956, 40.640248],\n\t\t\t\t\t\t[-76.673026, 40.640292],\n\t\t\t\t\t\t[-76.673096, 40.640337],\n\t\t\t\t\t\t[-76.674304, 40.641100],\n\t\t\t\t\t\t[-76.678351, 40.643656],\n\t\t\t\t\t\t[-76.679700, 40.644509],\n\t\t\t\t\t\t[-76.681741, 40.645797],\n\t\t\t\t\t\t[-76.685028, 40.647873],\n\t\t\t\t\t\t[-76.687847, 40.649693],\n\t\t\t\t\t\t[-76.689876, 40.651003],\n\t\t\t\t\t\t[-76.689950, 40.651051],\n\t\t\t\t\t\t[-76.690172, 40.651195],\n\t\t\t\t\t\t[-76.690247, 40.651244],\n\t\t\t\t\t\t[-76.690289, 40.651271],\n\t\t\t\t\t\t[-76.690398, 40.651340],\n\t\t\t\t\t\t[-76.690418, 40.651353],\n\t\t\t\t\t\t[-76.690461, 40.651381],\n\t\t\t\t\t\t[-76.690560, 40.651445],\n\t\t\t\t\t\t[-76.690746, 40.651565],\n\t\t\t\t\t\t[-76.691603, 40.652118],\n\t\t\t\t\t\t[-76.691889, 40.652303],\n\t\t\t\t\t\t[-76.693145, 40.653057],\n\t\t\t\t\t\t[-76.696916, 40.655321],\n\t\t\t\t\t\t[-76.698173, 40.656076],\n\t\t\t\t\t\t[-76.698863, 40.656477],\n\t\t\t\t\t\t[-76.700933, 40.657680],\n\t\t\t\t\t\t[-76.701507, 40.658014],\n\t\t\t\t\t\t[-76.701566, 40.658048],\n\t\t\t\t\t\t[-76.701624, 40.658082],\n\t\t\t\t\t\t[-76.380152, 40.775511],\n\t\t\t\t\t\t[-76.307170, 40.801809],\n\t\t\t\t\t\t[-76.284611, 40.883588],\n\t\t\t\t\t\t[-76.207827, 40.949740],\n\t\t\t\t\t\t[-76.028150, 40.901986],\n\t\t\t\t\t\t[-75.997348, 40.912985],\n\t\t\t\t\t\t[-75.757807, 40.735414],\n\t\t\t\t\t\t[-75.891473, 40.677270],\n\t\t\t\t\t\t[-75.993212, 40.639712],\n\t\t\t\t\t\t[-75.996233, 40.629971]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42127\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"127\",\n\t\t\t\t\"NAME\": \"Wayne\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 725.604000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-75.505607, 41.232539],\n\t\t\t\t\t\t[-75.441421, 41.260053],\n\t\t\t\t\t\t[-75.462411, 41.641587],\n\t\t\t\t\t\t[-75.483150, 41.999259],\n\t\t\t\t\t\t[-75.477144, 41.999407],\n\t\t\t\t\t\t[-75.436216, 41.999353],\n\t\t\t\t\t\t[-75.431961, 41.999363],\n\t\t\t\t\t\t[-75.359579, 41.999445],\n\t\t\t\t\t\t[-75.341868, 41.993262],\n\t\t\t\t\t\t[-75.292589, 41.953897],\n\t\t\t\t\t\t[-75.279094, 41.938917],\n\t\t\t\t\t\t[-75.263005, 41.885109],\n\t\t\t\t\t\t[-75.146446, 41.850899],\n\t\t\t\t\t\t[-75.140241, 41.852078],\n\t\t\t\t\t\t[-75.114399, 41.843583],\n\t\t\t\t\t\t[-75.090799, 41.811991],\n\t\t\t\t\t\t[-75.053431, 41.752538],\n\t\t\t\t\t\t[-75.048199, 41.632011],\n\t\t\t\t\t\t[-75.053077, 41.618552],\n\t\t\t\t\t\t[-75.050074, 41.606893],\n\t\t\t\t\t\t[-75.311143, 41.331439],\n\t\t\t\t\t\t[-75.359184, 41.239206],\n\t\t\t\t\t\t[-75.505607, 41.232539]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42129\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"129\",\n\t\t\t\t\"NAME\": \"Westmoreland\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1027.554000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.703834, 40.443526],\n\t\t\t\t\t\t[-79.702131, 40.489635],\n\t\t\t\t\t\t[-79.701985, 40.523787],\n\t\t\t\t\t\t[-79.701624, 40.525449],\n\t\t\t\t\t\t[-79.765415, 40.549854],\n\t\t\t\t\t\t[-79.692587, 40.669732],\n\t\t\t\t\t\t[-79.638137, 40.665601],\n\t\t\t\t\t\t[-79.561110, 40.564113],\n\t\t\t\t\t\t[-79.450176, 40.530149],\n\t\t\t\t\t\t[-79.454011, 40.485507],\n\t\t\t\t\t\t[-79.250605, 40.428726],\n\t\t\t\t\t\t[-79.247568, 40.432080],\n\t\t\t\t\t\t[-79.240175, 40.429991],\n\t\t\t\t\t\t[-79.233203, 40.430741],\n\t\t\t\t\t\t[-79.214783, 40.424458],\n\t\t\t\t\t\t[-79.206513, 40.415032],\n\t\t\t\t\t\t[-79.199233, 40.410780],\n\t\t\t\t\t\t[-79.192722, 40.414862],\n\t\t\t\t\t\t[-79.058481, 40.380868],\n\t\t\t\t\t\t[-78.974649, 40.395972],\n\t\t\t\t\t\t[-79.055983, 40.285089],\n\t\t\t\t\t\t[-79.056646, 40.278604],\n\t\t\t\t\t\t[-79.059378, 40.275767],\n\t\t\t\t\t\t[-79.067963, 40.272471],\n\t\t\t\t\t\t[-79.073523, 40.266727],\n\t\t\t\t\t\t[-79.076638, 40.260307],\n\t\t\t\t\t\t[-79.079570, 40.257928],\n\t\t\t\t\t\t[-79.078084, 40.254840],\n\t\t\t\t\t\t[-79.079250, 40.251172],\n\t\t\t\t\t\t[-79.082472, 40.250074],\n\t\t\t\t\t\t[-79.086734, 40.245342],\n\t\t\t\t\t\t[-79.086174, 40.242665],\n\t\t\t\t\t\t[-79.088656, 40.241259],\n\t\t\t\t\t\t[-79.185222, 40.109848],\n\t\t\t\t\t\t[-79.293682, 40.040413],\n\t\t\t\t\t\t[-79.457008, 40.135108],\n\t\t\t\t\t\t[-79.479402, 40.142801],\n\t\t\t\t\t\t[-79.505188, 40.140568],\n\t\t\t\t\t\t[-79.540347, 40.114035],\n\t\t\t\t\t\t[-79.578966, 40.105496],\n\t\t\t\t\t\t[-79.592602, 40.092005],\n\t\t\t\t\t\t[-79.641098, 40.088317],\n\t\t\t\t\t\t[-79.722240, 40.121141],\n\t\t\t\t\t\t[-79.877385, 40.126792],\n\t\t\t\t\t\t[-79.870585, 40.197415],\n\t\t\t\t\t\t[-79.781761, 40.227711],\n\t\t\t\t\t\t[-79.775139, 40.287888],\n\t\t\t\t\t\t[-79.787853, 40.297693],\n\t\t\t\t\t\t[-79.783684, 40.315913],\n\t\t\t\t\t\t[-79.722151, 40.409098],\n\t\t\t\t\t\t[-79.704739, 40.427231],\n\t\t\t\t\t\t[-79.703834, 40.443526]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US49015\",\n\t\t\t\t\"STATE\": \"49\",\n\t\t\t\t\"COUNTY\": \"015\",\n\t\t\t\t\"NAME\": \"Emery\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 4462.314000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-110.025402, 38.499981],\n\t\t\t\t\t\t[-111.305858, 38.499978],\n\t\t\t\t\t\t[-111.305825, 38.510178],\n\t\t\t\t\t\t[-111.299360, 39.032264],\n\t\t\t\t\t\t[-111.301222, 39.467302],\n\t\t\t\t\t\t[-111.247275, 39.467152],\n\t\t\t\t\t\t[-111.247388, 39.704611],\n\t\t\t\t\t\t[-111.159113, 39.595947],\n\t\t\t\t\t\t[-111.131953, 39.613844],\n\t\t\t\t\t\t[-111.081200, 39.467533],\n\t\t\t\t\t\t[-110.024118, 39.468951],\n\t\t\t\t\t\t[-110.024828, 39.467560],\n\t\t\t\t\t\t[-110.024140, 39.461695],\n\t\t\t\t\t\t[-110.010617, 39.416322],\n\t\t\t\t\t\t[-110.077270, 39.275869],\n\t\t\t\t\t\t[-110.054570, 39.228283],\n\t\t\t\t\t\t[-110.098763, 39.189509],\n\t\t\t\t\t\t[-110.150496, 38.998655],\n\t\t\t\t\t\t[-110.097736, 39.001619],\n\t\t\t\t\t\t[-110.005576, 38.949914],\n\t\t\t\t\t\t[-110.150018, 38.980696],\n\t\t\t\t\t\t[-110.179252, 38.907248],\n\t\t\t\t\t\t[-110.083861, 38.751952],\n\t\t\t\t\t\t[-110.113526, 38.706507],\n\t\t\t\t\t\t[-110.036344, 38.652311],\n\t\t\t\t\t\t[-110.055950, 38.604953],\n\t\t\t\t\t\t[-109.996929, 38.608847],\n\t\t\t\t\t\t[-110.057897, 38.583740],\n\t\t\t\t\t\t[-109.994283, 38.527118],\n\t\t\t\t\t\t[-110.025402, 38.499981]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US49021\",\n\t\t\t\t\"STATE\": \"49\",\n\t\t\t\t\"COUNTY\": \"021\",\n\t\t\t\t\"NAME\": \"Iron\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 3296.681000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-112.683197, 37.543193],\n\t\t\t\t\t\t[-112.901174, 37.543398],\n\t\t\t\t\t\t[-112.900994, 37.499738],\n\t\t\t\t\t\t[-113.036980, 37.498577],\n\t\t\t\t\t\t[-113.036880, 37.474578],\n\t\t\t\t\t\t[-113.146281, 37.474079],\n\t\t\t\t\t\t[-113.253677, 37.482241],\n\t\t\t\t\t\t[-113.253184, 37.528879],\n\t\t\t\t\t\t[-113.474389, 37.528978],\n\t\t\t\t\t\t[-113.474991, 37.618276],\n\t\t\t\t\t\t[-114.052472, 37.604776],\n\t\t\t\t\t\t[-114.051728, 37.745997],\n\t\t\t\t\t\t[-114.051785, 37.746249],\n\t\t\t\t\t\t[-114.051670, 37.746958],\n\t\t\t\t\t\t[-114.051109, 37.756276],\n\t\t\t\t\t\t[-114.048473, 37.809861],\n\t\t\t\t\t\t[-114.050423, 37.999961],\n\t\t\t\t\t\t[-114.049903, 38.148601],\n\t\t\t\t\t\t[-113.471600, 38.148665],\n\t\t\t\t\t\t[-112.478682, 38.147334],\n\t\t\t\t\t\t[-112.468177, 37.890464],\n\t\t\t\t\t\t[-112.588402, 37.890423],\n\t\t\t\t\t\t[-112.578550, 37.804540],\n\t\t\t\t\t\t[-112.689222, 37.805814],\n\t\t\t\t\t\t[-112.683197, 37.543193]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US49025\",\n\t\t\t\t\"STATE\": \"49\",\n\t\t\t\t\"COUNTY\": \"025\",\n\t\t\t\t\"NAME\": \"Kane\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 3990.229000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-110.646394, 37.541063],\n\t\t\t\t\t\t[-110.639097, 37.487091],\n\t\t\t\t\t\t[-110.719198, 37.481391],\n\t\t\t\t\t\t[-110.699197, 37.430691],\n\t\t\t\t\t\t[-110.736098, 37.345192],\n\t\t\t\t\t\t[-110.777799, 37.322992],\n\t\t\t\t\t\t[-110.869804, 37.348691],\n\t\t\t\t\t\t[-110.899517, 37.176153],\n\t\t\t\t\t\t[-110.958333, 37.124438],\n\t\t\t\t\t\t[-111.057670, 37.099395],\n\t\t\t\t\t\t[-111.178350, 37.102613],\n\t\t\t\t\t\t[-111.247488, 37.021604],\n\t\t\t\t\t\t[-111.268784, 37.054200],\n\t\t\t\t\t\t[-111.314856, 37.012133],\n\t\t\t\t\t\t[-111.412784, 37.001478],\n\t\t\t\t\t\t[-112.357690, 37.001025],\n\t\t\t\t\t\t[-112.368946, 37.001125],\n\t\t\t\t\t\t[-112.534545, 37.000684],\n\t\t\t\t\t\t[-112.538593, 37.000674],\n\t\t\t\t\t\t[-112.540368, 37.000669],\n\t\t\t\t\t\t[-112.545094, 37.000734],\n\t\t\t\t\t\t[-112.558974, 37.000692],\n\t\t\t\t\t\t[-112.609787, 37.000753],\n\t\t\t\t\t\t[-112.899366, 37.000319],\n\t\t\t\t\t\t[-112.900994, 37.499738],\n\t\t\t\t\t\t[-112.901174, 37.543398],\n\t\t\t\t\t\t[-112.683197, 37.543193],\n\t\t\t\t\t\t[-112.361187, 37.543118],\n\t\t\t\t\t\t[-112.361333, 37.536425],\n\t\t\t\t\t\t[-111.853181, 37.535578],\n\t\t\t\t\t\t[-110.646394, 37.541063]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47029\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"029\",\n\t\t\t\t\"NAME\": \"Cocke\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 434.565000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.276677, 36.007652],\n\t\t\t\t\t\t[-83.234585, 36.085094],\n\t\t\t\t\t\t[-83.166085, 36.180894],\n\t\t\t\t\t\t[-82.898506, 35.945100],\n\t\t\t\t\t\t[-82.913338, 35.924113],\n\t\t\t\t\t\t[-82.897980, 35.881278],\n\t\t\t\t\t\t[-82.918356, 35.845467],\n\t\t\t\t\t\t[-82.962842, 35.795126],\n\t\t\t\t\t\t[-82.964108, 35.794100],\n\t\t\t\t\t\t[-82.983970, 35.778010],\n\t\t\t\t\t\t[-82.995803, 35.773128],\n\t\t\t\t\t\t[-83.100225, 35.774765],\n\t\t\t\t\t\t[-83.100329, 35.774804],\n\t\t\t\t\t\t[-83.100233, 35.774745],\n\t\t\t\t\t\t[-83.164909, 35.759965],\n\t\t\t\t\t\t[-83.240669, 35.726760],\n\t\t\t\t\t\t[-83.251247, 35.719916],\n\t\t\t\t\t\t[-83.255489, 35.714974],\n\t\t\t\t\t\t[-83.310782, 35.895846],\n\t\t\t\t\t\t[-83.276677, 36.007652]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US23027\",\n\t\t\t\t\"STATE\": \"23\",\n\t\t\t\t\"COUNTY\": \"027\",\n\t\t\t\t\"NAME\": \"Waldo\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 729.918000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-68.942826, 44.281073],\n\t\t\t\t\t\t\t[-68.919301, 44.309872],\n\t\t\t\t\t\t\t[-68.919325, 44.335392],\n\t\t\t\t\t\t\t[-68.911634, 44.365027],\n\t\t\t\t\t\t\t[-68.903530, 44.378613],\n\t\t\t\t\t\t\t[-68.878940, 44.386584],\n\t\t\t\t\t\t\t[-68.868444, 44.381440],\n\t\t\t\t\t\t\t[-68.860649, 44.364425],\n\t\t\t\t\t\t\t[-68.864338, 44.355002],\n\t\t\t\t\t\t\t[-68.871690, 44.344662],\n\t\t\t\t\t\t\t[-68.883065, 44.338193],\n\t\t\t\t\t\t\t[-68.888706, 44.338196],\n\t\t\t\t\t\t\t[-68.892850, 44.334653],\n\t\t\t\t\t\t\t[-68.896587, 44.321986],\n\t\t\t\t\t\t\t[-68.887460, 44.303094],\n\t\t\t\t\t\t\t[-68.899445, 44.283775],\n\t\t\t\t\t\t\t[-68.904255, 44.279889],\n\t\t\t\t\t\t\t[-68.916872, 44.242866],\n\t\t\t\t\t\t\t[-68.926480, 44.233035],\n\t\t\t\t\t\t\t[-68.945976, 44.220824],\n\t\t\t\t\t\t\t[-68.951890, 44.218719],\n\t\t\t\t\t\t\t[-68.947090, 44.226792],\n\t\t\t\t\t\t\t[-68.955332, 44.243873],\n\t\t\t\t\t\t\t[-68.959468, 44.247439],\n\t\t\t\t\t\t\t[-68.965896, 44.249754],\n\t\t\t\t\t\t\t[-68.967074, 44.251968],\n\t\t\t\t\t\t\t[-68.965264, 44.259332],\n\t\t\t\t\t\t\t[-68.953686, 44.272346],\n\t\t\t\t\t\t\t[-68.942826, 44.281073]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-69.014167, 44.671794],\n\t\t\t\t\t\t\t[-68.815793, 44.683754],\n\t\t\t\t\t\t\t[-68.811815, 44.670465],\n\t\t\t\t\t\t\t[-68.822416, 44.664005],\n\t\t\t\t\t\t\t[-68.846945, 44.625307],\n\t\t\t\t\t\t\t[-68.841821, 44.611062],\n\t\t\t\t\t\t\t[-68.796206, 44.471437],\n\t\t\t\t\t\t\t[-68.810059, 44.468737],\n\t\t\t\t\t\t\t[-68.829153, 44.462242],\n\t\t\t\t\t\t\t[-68.858993, 44.444923],\n\t\t\t\t\t\t\t[-68.880271, 44.428112],\n\t\t\t\t\t\t\t[-68.886491, 44.430676],\n\t\t\t\t\t\t\t[-68.890826, 44.437995],\n\t\t\t\t\t\t\t[-68.892800, 44.443415],\n\t\t\t\t\t\t\t[-68.892073, 44.445075],\n\t\t\t\t\t\t\t[-68.897104, 44.450643],\n\t\t\t\t\t\t\t[-68.900934, 44.452062],\n\t\t\t\t\t\t\t[-68.927452, 44.448039],\n\t\t\t\t\t\t\t[-68.931934, 44.438690],\n\t\t\t\t\t\t\t[-68.946582, 44.429108],\n\t\t\t\t\t\t\t[-68.982449, 44.426195],\n\t\t\t\t\t\t\t[-68.990767, 44.415033],\n\t\t\t\t\t\t\t[-68.984404, 44.396879],\n\t\t\t\t\t\t\t[-68.978815, 44.386340],\n\t\t\t\t\t\t\t[-68.967300, 44.381106],\n\t\t\t\t\t\t\t[-68.961111, 44.375076],\n\t\t\t\t\t\t\t[-68.948164, 44.355882],\n\t\t\t\t\t\t\t[-68.954465, 44.324050],\n\t\t\t\t\t\t\t[-68.958889, 44.314353],\n\t\t\t\t\t\t\t[-68.979005, 44.296327],\n\t\t\t\t\t\t\t[-69.003682, 44.294582],\n\t\t\t\t\t\t\t[-69.005071, 44.274071],\n\t\t\t\t\t\t\t[-69.017051, 44.257086],\n\t\t\t\t\t\t\t[-69.028590, 44.249139],\n\t\t\t\t\t\t\t[-69.121622, 44.255644],\n\t\t\t\t\t\t\t[-69.268882, 44.364653],\n\t\t\t\t\t\t\t[-69.346616, 44.308337],\n\t\t\t\t\t\t\t[-69.394361, 44.342934],\n\t\t\t\t\t\t\t[-69.506382, 44.342870],\n\t\t\t\t\t\t\t[-69.445498, 44.463839],\n\t\t\t\t\t\t\t[-69.435400, 44.462422],\n\t\t\t\t\t\t\t[-69.395987, 44.457078],\n\t\t\t\t\t\t\t[-69.393123, 44.640375],\n\t\t\t\t\t\t\t[-69.460606, 44.647054],\n\t\t\t\t\t\t\t[-69.460558, 44.655611],\n\t\t\t\t\t\t\t[-69.442936, 44.672381],\n\t\t\t\t\t\t\t[-69.475599, 44.676678],\n\t\t\t\t\t\t\t[-69.471712, 44.692899],\n\t\t\t\t\t\t\t[-69.398412, 44.744559],\n\t\t\t\t\t\t\t[-69.266785, 44.721928],\n\t\t\t\t\t\t\t[-69.205200, 44.729586],\n\t\t\t\t\t\t\t[-69.183732, 44.644023],\n\t\t\t\t\t\t\t[-69.014167, 44.671794]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31157\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"157\",\n\t\t\t\t\"NAME\": \"Scotts Bluff\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 739.401000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-104.052830, 41.697954],\n\t\t\t\t\t\t[-104.052774, 41.733401],\n\t\t\t\t\t\t[-104.053026, 41.885464],\n\t\t\t\t\t\t[-104.052931, 41.906143],\n\t\t\t\t\t\t[-104.052991, 41.914973],\n\t\t\t\t\t\t[-104.052734, 41.973007],\n\t\t\t\t\t\t[-104.052856, 41.975958],\n\t\t\t\t\t\t[-104.052830, 41.994600],\n\t\t\t\t\t\t[-104.052761, 41.994967],\n\t\t\t\t\t\t[-104.052699, 41.998673],\n\t\t\t\t\t\t[-104.052704, 42.001718],\n\t\t\t\t\t\t[-103.401639, 42.003540],\n\t\t\t\t\t\t[-103.390382, 42.003365],\n\t\t\t\t\t\t[-103.363337, 42.002930],\n\t\t\t\t\t\t[-103.370391, 41.699210],\n\t\t\t\t\t\t[-104.052830, 41.697954]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31165\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"165\",\n\t\t\t\t\"NAME\": \"Sioux\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2066.740000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-104.052704, 42.001718],\n\t\t\t\t\t\t[-104.052729, 42.016318],\n\t\t\t\t\t\t[-104.052880, 42.021761],\n\t\t\t\t\t\t[-104.052967, 42.075004],\n\t\t\t\t\t\t[-104.052954, 42.089077],\n\t\t\t\t\t\t[-104.052600, 42.124963],\n\t\t\t\t\t\t[-104.052738, 42.133769],\n\t\t\t\t\t\t[-104.053001, 42.137254],\n\t\t\t\t\t\t[-104.052547, 42.166801],\n\t\t\t\t\t\t[-104.052761, 42.170278],\n\t\t\t\t\t\t[-104.052793, 42.249962],\n\t\t\t\t\t\t[-104.052776, 42.258220],\n\t\t\t\t\t\t[-104.052775, 42.610813],\n\t\t\t\t\t\t[-104.052775, 42.611590],\n\t\t\t\t\t\t[-104.052773, 42.611766],\n\t\t\t\t\t\t[-104.052586, 42.630917],\n\t\t\t\t\t\t[-104.052741, 42.633982],\n\t\t\t\t\t\t[-104.052583, 42.650062],\n\t\t\t\t\t\t[-104.052809, 42.749966],\n\t\t\t\t\t\t[-104.052863, 42.754569],\n\t\t\t\t\t\t[-104.053127, 43.000585],\n\t\t\t\t\t\t[-103.815573, 43.001279],\n\t\t\t\t\t\t[-103.813939, 43.001378],\n\t\t\t\t\t\t[-103.576966, 43.000746],\n\t\t\t\t\t\t[-103.576329, 43.000807],\n\t\t\t\t\t\t[-103.506556, 43.000771],\n\t\t\t\t\t\t[-103.506151, 43.000771],\n\t\t\t\t\t\t[-103.505219, 43.000770],\n\t\t\t\t\t\t[-103.505100, 43.000770],\n\t\t\t\t\t\t[-103.503232, 42.784787],\n\t\t\t\t\t\t[-103.480403, 42.784966],\n\t\t\t\t\t\t[-103.480082, 42.437267],\n\t\t\t\t\t\t[-103.444532, 42.437354],\n\t\t\t\t\t\t[-103.444108, 42.090708],\n\t\t\t\t\t\t[-103.401639, 42.003540],\n\t\t\t\t\t\t[-104.052704, 42.001718]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31175\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"175\",\n\t\t\t\t\"NAME\": \"Valley\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 568.048000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.212016, 41.740613],\n\t\t\t\t\t\t[-98.759133, 41.740382],\n\t\t\t\t\t\t[-98.752225, 41.740372],\n\t\t\t\t\t\t[-98.751558, 41.394084],\n\t\t\t\t\t\t[-99.203261, 41.394140],\n\t\t\t\t\t\t[-99.212016, 41.740613]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31177\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"177\",\n\t\t\t\t\"NAME\": \"Washington\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 389.958000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.329012, 41.393136],\n\t\t\t\t\t\t[-96.443898, 41.523933],\n\t\t\t\t\t\t[-96.444785, 41.683633],\n\t\t\t\t\t\t[-96.125293, 41.682951],\n\t\t\t\t\t\t[-96.121726, 41.682740],\n\t\t\t\t\t\t[-96.099837, 41.661030],\n\t\t\t\t\t\t[-96.095415, 41.652736],\n\t\t\t\t\t\t[-96.095046, 41.647365],\n\t\t\t\t\t\t[-96.097728, 41.639633],\n\t\t\t\t\t\t[-96.116233, 41.621574],\n\t\t\t\t\t\t[-96.118105, 41.613495],\n\t\t\t\t\t\t[-96.094090, 41.539265],\n\t\t\t\t\t\t[-96.089714, 41.531778],\n\t\t\t\t\t\t[-96.055096, 41.509577],\n\t\t\t\t\t\t[-96.046707, 41.507085],\n\t\t\t\t\t\t[-96.040701, 41.507076],\n\t\t\t\t\t\t[-96.036603, 41.509047],\n\t\t\t\t\t\t[-96.030593, 41.527292],\n\t\t\t\t\t\t[-95.994784, 41.526242],\n\t\t\t\t\t\t[-95.981319, 41.506837],\n\t\t\t\t\t\t[-95.930705, 41.433894],\n\t\t\t\t\t\t[-95.937346, 41.394403],\n\t\t\t\t\t\t[-95.938310, 41.392162],\n\t\t\t\t\t\t[-95.939300, 41.393184],\n\t\t\t\t\t\t[-96.329012, 41.393136]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US32001\",\n\t\t\t\t\"STATE\": \"32\",\n\t\t\t\t\"COUNTY\": \"001\",\n\t\t\t\t\"NAME\": \"Churchill\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 4930.458000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-117.775468, 39.093425],\n\t\t\t\t\t\t[-117.865116, 39.073654],\n\t\t\t\t\t\t[-118.753835, 39.074630],\n\t\t\t\t\t\t[-118.754014, 39.112023],\n\t\t\t\t\t\t[-119.118193, 39.388516],\n\t\t\t\t\t\t[-119.059922, 39.740385],\n\t\t\t\t\t\t[-119.190676, 39.631787],\n\t\t\t\t\t\t[-119.189342, 39.650870],\n\t\t\t\t\t\t[-119.170899, 39.788288],\n\t\t\t\t\t\t[-119.208543, 39.809967],\n\t\t\t\t\t\t[-119.225176, 39.999385],\n\t\t\t\t\t\t[-117.736241, 40.002464],\n\t\t\t\t\t\t[-117.734782, 40.002168],\n\t\t\t\t\t\t[-117.732700, 40.002466],\n\t\t\t\t\t\t[-117.541749, 40.001034],\n\t\t\t\t\t\t[-117.461640, 39.886817],\n\t\t\t\t\t\t[-117.495344, 39.748364],\n\t\t\t\t\t\t[-117.461786, 39.622444],\n\t\t\t\t\t\t[-117.485336, 39.545322],\n\t\t\t\t\t\t[-117.590240, 39.517521],\n\t\t\t\t\t\t[-117.656397, 39.468043],\n\t\t\t\t\t\t[-117.646011, 39.426602],\n\t\t\t\t\t\t[-117.759795, 39.369225],\n\t\t\t\t\t\t[-117.714056, 39.245558],\n\t\t\t\t\t\t[-117.806183, 39.145845],\n\t\t\t\t\t\t[-117.775468, 39.093425]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US32003\",\n\t\t\t\t\"STATE\": \"32\",\n\t\t\t\t\"COUNTY\": \"003\",\n\t\t\t\t\"NAME\": \"Clark\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 7891.431000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-115.845805, 36.120242],\n\t\t\t\t\t\t[-115.845809, 36.121389],\n\t\t\t\t\t\t[-115.844505, 36.122179],\n\t\t\t\t\t\t[-115.845795, 36.123963],\n\t\t\t\t\t\t[-115.845762, 36.170764],\n\t\t\t\t\t\t[-115.895753, 36.172227],\n\t\t\t\t\t\t[-115.895368, 36.580168],\n\t\t\t\t\t\t[-115.896925, 36.842085],\n\t\t\t\t\t\t[-115.740846, 36.853084],\n\t\t\t\t\t\t[-114.762507, 36.853473],\n\t\t\t\t\t\t[-114.762301, 36.843856],\n\t\t\t\t\t\t[-114.050583, 36.843141],\n\t\t\t\t\t\t[-114.050578, 36.800173],\n\t\t\t\t\t\t[-114.050562, 36.656259],\n\t\t\t\t\t\t[-114.046488, 36.473449],\n\t\t\t\t\t\t[-114.046403, 36.371873],\n\t\t\t\t\t\t[-114.048515, 36.289598],\n\t\t\t\t\t\t[-114.047106, 36.250591],\n\t\t\t\t\t\t[-114.046838, 36.194069],\n\t\t\t\t\t\t[-114.060302, 36.189363],\n\t\t\t\t\t\t[-114.063021, 36.186942],\n\t\t\t\t\t\t[-114.120193, 36.102228],\n\t\t\t\t\t\t[-114.125796, 36.077531],\n\t\t\t\t\t\t[-114.138202, 36.041284],\n\t\t\t\t\t\t[-114.148774, 36.027310],\n\t\t\t\t\t\t[-114.154130, 36.023862],\n\t\t\t\t\t\t[-114.213690, 36.015613],\n\t\t\t\t\t\t[-114.233289, 36.014289],\n\t\t\t\t\t\t[-114.238799, 36.014561],\n\t\t\t\t\t\t[-114.252651, 36.020193],\n\t\t\t\t\t\t[-114.263146, 36.025937],\n\t\t\t\t\t\t[-114.292663, 36.051118],\n\t\t\t\t\t\t[-114.303614, 36.066456],\n\t\t\t\t\t\t[-114.307235, 36.076544],\n\t\t\t\t\t\t[-114.310857, 36.083787],\n\t\t\t\t\t\t[-114.328777, 36.105501],\n\t\t\t\t\t\t[-114.365835, 36.133722],\n\t\t\t\t\t\t[-114.381446, 36.141665],\n\t\t\t\t\t\t[-114.513256, 36.151217],\n\t\t\t\t\t\t[-114.572031, 36.151610],\n\t\t\t\t\t\t[-114.631716, 36.142306],\n\t\t\t\t\t\t[-114.736165, 36.104367],\n\t\t\t\t\t\t[-114.744857, 36.098693],\n\t\t\t\t\t\t[-114.755618, 36.087166],\n\t\t\t\t\t\t[-114.743576, 35.983721],\n\t\t\t\t\t\t[-114.731296, 35.945157],\n\t\t\t\t\t\t[-114.706130, 35.878712],\n\t\t\t\t\t\t[-114.704211, 35.851984],\n\t\t\t\t\t\t[-114.705611, 35.848884],\n\t\t\t\t\t\t[-114.707710, 35.811885],\n\t\t\t\t\t\t[-114.700308, 35.700387],\n\t\t\t\t\t\t[-114.689407, 35.651412],\n\t\t\t\t\t\t[-114.676707, 35.640989],\n\t\t\t\t\t\t[-114.657506, 35.618289],\n\t\t\t\t\t\t[-114.653406, 35.610789],\n\t\t\t\t\t\t[-114.653806, 35.599490],\n\t\t\t\t\t\t[-114.671147, 35.520641],\n\t\t\t\t\t\t[-114.674981, 35.510564],\n\t\t\t\t\t\t[-114.676733, 35.499063],\n\t\t\t\t\t\t[-114.677643, 35.489742],\n\t\t\t\t\t\t[-114.662125, 35.444241],\n\t\t\t\t\t\t[-114.652005, 35.429165],\n\t\t\t\t\t\t[-114.627137, 35.409504],\n\t\t\t\t\t\t[-114.604314, 35.353584],\n\t\t\t\t\t\t[-114.595931, 35.325234],\n\t\t\t\t\t\t[-114.569238, 35.183480],\n\t\t\t\t\t\t[-114.569569, 35.163053],\n\t\t\t\t\t\t[-114.572747, 35.138725],\n\t\t\t\t\t\t[-114.578524, 35.128750],\n\t\t\t\t\t\t[-114.584300, 35.124999],\n\t\t\t\t\t\t[-114.599120, 35.121050],\n\t\t\t\t\t\t[-114.621956, 35.094678],\n\t\t\t\t\t\t[-114.635469, 35.028266],\n\t\t\t\t\t\t[-114.633544, 35.015644],\n\t\t\t\t\t\t[-114.633013, 35.002085],\n\t\t\t\t\t\t[-114.804249, 35.139689],\n\t\t\t\t\t\t[-114.805030, 35.140284],\n\t\t\t\t\t\t[-114.925381, 35.237039],\n\t\t\t\t\t\t[-114.925480, 35.237054],\n\t\t\t\t\t\t[-115.145813, 35.413182],\n\t\t\t\t\t\t[-115.146788, 35.413662],\n\t\t\t\t\t\t[-115.160068, 35.424129],\n\t\t\t\t\t\t[-115.160599, 35.424313],\n\t\t\t\t\t\t[-115.225273, 35.475907],\n\t\t\t\t\t\t[-115.271342, 35.512660],\n\t\t\t\t\t\t[-115.303743, 35.538207],\n\t\t\t\t\t\t[-115.388866, 35.605171],\n\t\t\t\t\t\t[-115.391535, 35.607271],\n\t\t\t\t\t\t[-115.393996, 35.609344],\n\t\t\t\t\t\t[-115.404537, 35.617605],\n\t\t\t\t\t\t[-115.406079, 35.618613],\n\t\t\t\t\t\t[-115.647202, 35.808995],\n\t\t\t\t\t\t[-115.647683, 35.809358],\n\t\t\t\t\t\t[-115.648029, 35.809629],\n\t\t\t\t\t\t[-115.689302, 35.842003],\n\t\t\t\t\t\t[-115.846080, 35.963596],\n\t\t\t\t\t\t[-115.845805, 36.120242]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26011\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"011\",\n\t\t\t\t\"NAME\": \"Arenac\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 363.191000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.565225, 44.163517],\n\t\t\t\t\t\t[-83.565257, 44.163418],\n\t\t\t\t\t\t[-83.565984, 44.161219],\n\t\t\t\t\t\t[-83.566366, 44.160066],\n\t\t\t\t\t\t[-83.567744, 44.155899],\n\t\t\t\t\t\t[-83.567941, 44.150983],\n\t\t\t\t\t\t[-83.568200, 44.144542],\n\t\t\t\t\t\t[-83.568238, 44.143587],\n\t\t\t\t\t\t[-83.568243, 44.143475],\n\t\t\t\t\t\t[-83.568803, 44.129513],\n\t\t\t\t\t\t[-83.568831, 44.128819],\n\t\t\t\t\t\t[-83.568915, 44.126734],\n\t\t\t\t\t\t[-83.568509, 44.124343],\n\t\t\t\t\t\t[-83.567978, 44.121207],\n\t\t\t\t\t\t[-83.567714, 44.119652],\n\t\t\t\t\t\t[-83.573071, 44.101298],\n\t\t\t\t\t\t[-83.588004, 44.086758],\n\t\t\t\t\t\t[-83.591361, 44.079237],\n\t\t\t\t\t\t[-83.590437, 44.069569],\n\t\t\t\t\t\t[-83.584090, 44.056748],\n\t\t\t\t\t\t[-83.601173, 44.054686],\n\t\t\t\t\t\t[-83.621078, 44.056186],\n\t\t\t\t\t\t[-83.650116, 44.052404],\n\t\t\t\t\t\t[-83.679654, 44.036365],\n\t\t\t\t\t\t[-83.687892, 44.020709],\n\t\t\t\t\t\t[-83.680108, 43.994196],\n\t\t\t\t\t\t[-83.708741, 43.992997],\n\t\t\t\t\t\t[-83.743806, 43.991529],\n\t\t\t\t\t\t[-83.746779, 43.988807],\n\t\t\t\t\t\t[-83.757063, 43.986599],\n\t\t\t\t\t\t[-83.762830, 43.985361],\n\t\t\t\t\t\t[-83.763015, 43.985321],\n\t\t\t\t\t\t[-83.763345, 43.985250],\n\t\t\t\t\t\t[-83.763774, 43.985158],\n\t\t\t\t\t\t[-83.779086, 43.985235],\n\t\t\t\t\t\t[-83.787863, 43.985279],\n\t\t\t\t\t\t[-83.828080, 43.989003],\n\t\t\t\t\t\t[-83.828398, 43.989032],\n\t\t\t\t\t\t[-83.829077, 43.989095],\n\t\t\t\t\t\t[-83.829102, 43.989085],\n\t\t\t\t\t\t[-83.829123, 43.989077],\n\t\t\t\t\t\t[-83.848276, 43.981594],\n\t\t\t\t\t\t[-83.851496, 43.979403],\n\t\t\t\t\t\t[-83.851750, 43.979231],\n\t\t\t\t\t\t[-83.851884, 43.979140],\n\t\t\t\t\t\t[-83.853582, 43.977984],\n\t\t\t\t\t\t[-83.854930, 43.977067],\n\t\t\t\t\t\t[-83.855219, 43.975997],\n\t\t\t\t\t\t[-83.855516, 43.974899],\n\t\t\t\t\t\t[-83.855572, 43.974691],\n\t\t\t\t\t\t[-83.855602, 43.974581],\n\t\t\t\t\t\t[-83.855653, 43.974391],\n\t\t\t\t\t\t[-83.856077, 43.972822],\n\t\t\t\t\t\t[-83.856128, 43.972632],\n\t\t\t\t\t\t[-83.856371, 43.972414],\n\t\t\t\t\t\t[-83.858373, 43.970618],\n\t\t\t\t\t\t[-83.858528, 43.970479],\n\t\t\t\t\t\t[-83.859114, 43.969953],\n\t\t\t\t\t\t[-83.859305, 43.969782],\n\t\t\t\t\t\t[-83.859459, 43.969643],\n\t\t\t\t\t\t[-83.859615, 43.969504],\n\t\t\t\t\t\t[-83.859743, 43.969389],\n\t\t\t\t\t\t[-83.869406, 43.960719],\n\t\t\t\t\t\t[-83.869614, 43.960682],\n\t\t\t\t\t\t[-83.877047, 43.959351],\n\t\t\t\t\t\t[-83.877694, 43.959235],\n\t\t\t\t\t\t[-83.880011, 43.955428],\n\t\t\t\t\t\t[-83.880113, 43.955261],\n\t\t\t\t\t\t[-83.885328, 43.946691],\n\t\t\t\t\t\t[-83.885526, 43.946197],\n\t\t\t\t\t\t[-83.885543, 43.946154],\n\t\t\t\t\t\t[-83.890145, 43.934672],\n\t\t\t\t\t\t[-83.890912, 43.923314],\n\t\t\t\t\t\t[-83.907388, 43.918062],\n\t\t\t\t\t\t[-83.911128, 43.910520],\n\t\t\t\t\t\t[-84.044843, 43.911146],\n\t\t\t\t\t\t[-84.045409, 43.996974],\n\t\t\t\t\t\t[-84.166377, 43.996901],\n\t\t\t\t\t\t[-84.166107, 44.161788],\n\t\t\t\t\t\t[-83.883977, 44.161786],\n\t\t\t\t\t\t[-83.565225, 44.163517]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30067\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"067\",\n\t\t\t\t\"NAME\": \"Park\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2803.063000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-109.798687, 45.002188],\n\t\t\t\t\t\t[-110.025544, 45.003602],\n\t\t\t\t\t\t[-110.026347, 45.003665],\n\t\t\t\t\t\t[-110.110103, 45.003905],\n\t\t\t\t\t\t[-110.221343, 44.996176],\n\t\t\t\t\t\t[-110.547165, 44.992459],\n\t\t\t\t\t\t[-110.552433, 44.992237],\n\t\t\t\t\t\t[-110.705272, 44.992324],\n\t\t\t\t\t\t[-110.750767, 44.997948],\n\t\t\t\t\t\t[-110.875772, 45.002101],\n\t\t\t\t\t\t[-111.044275, 45.001345],\n\t\t\t\t\t\t[-111.038168, 45.351174],\n\t\t\t\t\t\t[-110.917661, 45.351328],\n\t\t\t\t\t\t[-110.919212, 45.525338],\n\t\t\t\t\t\t[-110.858228, 45.525089],\n\t\t\t\t\t\t[-110.857054, 45.590872],\n\t\t\t\t\t\t[-110.794977, 45.590289],\n\t\t\t\t\t\t[-110.790447, 46.142024],\n\t\t\t\t\t\t[-110.783982, 46.192408],\n\t\t\t\t\t\t[-110.281860, 46.184210],\n\t\t\t\t\t\t[-110.292662, 45.785022],\n\t\t\t\t\t\t[-110.220902, 45.784787],\n\t\t\t\t\t\t[-110.228549, 45.172820],\n\t\t\t\t\t\t[-110.063819, 45.172102],\n\t\t\t\t\t\t[-109.798173, 45.171920],\n\t\t\t\t\t\t[-109.798221, 45.167405],\n\t\t\t\t\t\t[-109.798687, 45.002188]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30073\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"073\",\n\t\t\t\t\"NAME\": \"Pondera\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1622.863000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-111.408922, 48.219476],\n\t\t\t\t\t\t[-111.409005, 48.218380],\n\t\t\t\t\t\t[-111.409097, 48.132218],\n\t\t\t\t\t\t[-111.408495, 47.987045],\n\t\t\t\t\t\t[-111.983753, 47.984771],\n\t\t\t\t\t\t[-111.983500, 48.043204],\n\t\t\t\t\t\t[-112.047253, 48.086892],\n\t\t\t\t\t\t[-112.177751, 48.087466],\n\t\t\t\t\t\t[-112.177757, 48.130932],\n\t\t\t\t\t\t[-113.016894, 48.132460],\n\t\t\t\t\t\t[-113.231495, 48.170652],\n\t\t\t\t\t\t[-113.236785, 48.247345],\n\t\t\t\t\t\t[-113.349470, 48.310155],\n\t\t\t\t\t\t[-112.575885, 48.309372],\n\t\t\t\t\t\t[-112.576892, 48.483478],\n\t\t\t\t\t\t[-112.229874, 48.483081],\n\t\t\t\t\t\t[-112.184375, 48.477593],\n\t\t\t\t\t\t[-111.990944, 48.438546],\n\t\t\t\t\t\t[-111.990819, 48.394285],\n\t\t\t\t\t\t[-111.795910, 48.393011],\n\t\t\t\t\t\t[-111.796117, 48.349814],\n\t\t\t\t\t\t[-111.665829, 48.349497],\n\t\t\t\t\t\t[-111.666500, 48.219412],\n\t\t\t\t\t\t[-111.408922, 48.219476]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30079\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"079\",\n\t\t\t\t\"NAME\": \"Prairie\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1736.737000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-105.406237, 47.181563],\n\t\t\t\t\t\t[-105.324817, 47.181586],\n\t\t\t\t\t\t[-105.324898, 46.977161],\n\t\t\t\t\t\t[-105.196735, 46.977172],\n\t\t\t\t\t\t[-105.196945, 46.919179],\n\t\t\t\t\t\t[-105.069484, 46.919128],\n\t\t\t\t\t\t[-105.027522, 46.861490],\n\t\t\t\t\t\t[-104.603766, 46.860880],\n\t\t\t\t\t\t[-104.607017, 46.684926],\n\t\t\t\t\t\t[-104.732843, 46.656264],\n\t\t\t\t\t\t[-104.732853, 46.612672],\n\t\t\t\t\t\t[-104.858698, 46.612479],\n\t\t\t\t\t\t[-104.858857, 46.569114],\n\t\t\t\t\t\t[-104.984754, 46.569450],\n\t\t\t\t\t\t[-104.984714, 46.540606],\n\t\t\t\t\t\t[-105.239439, 46.541005],\n\t\t\t\t\t\t[-105.239175, 46.570089],\n\t\t\t\t\t\t[-105.449006, 46.570916],\n\t\t\t\t\t\t[-105.491952, 46.657985],\n\t\t\t\t\t\t[-105.575683, 46.657889],\n\t\t\t\t\t\t[-105.576256, 46.744935],\n\t\t\t\t\t\t[-105.618076, 46.745025],\n\t\t\t\t\t\t[-105.617595, 46.832090],\n\t\t\t\t\t\t[-106.086670, 46.860264],\n\t\t\t\t\t\t[-106.086777, 47.180938],\n\t\t\t\t\t\t[-105.960094, 47.180981],\n\t\t\t\t\t\t[-105.960127, 47.092969],\n\t\t\t\t\t\t[-105.832846, 47.093144],\n\t\t\t\t\t\t[-105.833042, 47.180967],\n\t\t\t\t\t\t[-105.406237, 47.181563]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30081\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"081\",\n\t\t\t\t\"NAME\": \"Ravalli\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2390.821000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-114.551286, 45.559007],\n\t\t\t\t\t\t[-114.560855, 45.564575],\n\t\t\t\t\t\t[-114.561773, 45.565109],\n\t\t\t\t\t\t[-114.563652, 45.637412],\n\t\t\t\t\t\t[-114.561046, 45.639906],\n\t\t\t\t\t\t[-114.550834, 45.642600],\n\t\t\t\t\t\t[-114.545574, 45.642928],\n\t\t\t\t\t\t[-114.541820, 45.641305],\n\t\t\t\t\t\t[-114.515411, 45.652842],\n\t\t\t\t\t\t[-114.500925, 45.666715],\n\t\t\t\t\t\t[-114.495421, 45.703321],\n\t\t\t\t\t\t[-114.497553, 45.710677],\n\t\t\t\t\t\t[-114.504869, 45.722176],\n\t\t\t\t\t\t[-114.528667, 45.731636],\n\t\t\t\t\t\t[-114.547763, 45.743309],\n\t\t\t\t\t\t[-114.566172, 45.773864],\n\t\t\t\t\t\t[-114.514596, 45.840785],\n\t\t\t\t\t\t[-114.509303, 45.845531],\n\t\t\t\t\t\t[-114.498809, 45.850676],\n\t\t\t\t\t\t[-114.448680, 45.858891],\n\t\t\t\t\t\t[-114.393760, 45.894020],\n\t\t\t\t\t\t[-114.401552, 45.963195],\n\t\t\t\t\t\t[-114.412007, 45.978057],\n\t\t\t\t\t\t[-114.429638, 45.986638],\n\t\t\t\t\t\t[-114.465376, 45.996077],\n\t\t\t\t\t\t[-114.483379, 46.008047],\n\t\t\t\t\t\t[-114.490578, 46.022872],\n\t\t\t\t\t\t[-114.491200, 46.034059],\n\t\t\t\t\t\t[-114.491200, 46.044003],\n\t\t\t\t\t\t[-114.476284, 46.062026],\n\t\t\t\t\t\t[-114.467583, 46.081914],\n\t\t\t\t\t\t[-114.468205, 46.099937],\n\t\t\t\t\t\t[-114.476284, 46.112988],\n\t\t\t\t\t\t[-114.483120, 46.129147],\n\t\t\t\t\t\t[-114.472643, 46.162202],\n\t\t\t\t\t\t[-114.426885, 46.289671],\n\t\t\t\t\t\t[-114.378000, 46.435371],\n\t\t\t\t\t\t[-114.385297, 46.467162],\n\t\t\t\t\t\t[-114.346528, 46.535789],\n\t\t\t\t\t\t[-114.331093, 46.607649],\n\t\t\t\t\t\t[-114.331093, 46.630248],\n\t\t\t\t\t\t[-114.337942, 46.641205],\n\t\t\t\t\t\t[-114.341336, 46.642803],\n\t\t\t\t\t\t[-114.332887, 46.660756],\n\t\t\t\t\t\t[-113.827831, 46.661023],\n\t\t\t\t\t\t[-113.813152, 46.588119],\n\t\t\t\t\t\t[-113.875931, 46.508576],\n\t\t\t\t\t\t[-113.750143, 46.272590],\n\t\t\t\t\t\t[-113.821129, 46.212549],\n\t\t\t\t\t\t[-113.753246, 46.112800],\n\t\t\t\t\t\t[-113.803099, 46.037300],\n\t\t\t\t\t\t[-113.744524, 46.048807],\n\t\t\t\t\t\t[-113.648219, 45.965062],\n\t\t\t\t\t\t[-113.517481, 45.939898],\n\t\t\t\t\t\t[-113.516912, 45.939420],\n\t\t\t\t\t\t[-113.516338, 45.938638],\n\t\t\t\t\t\t[-113.532405, 45.878353],\n\t\t\t\t\t\t[-113.697639, 45.843545],\n\t\t\t\t\t\t[-113.942600, 45.686362],\n\t\t\t\t\t\t[-113.971565, 45.700636],\n\t\t\t\t\t\t[-113.987759, 45.705247],\n\t\t\t\t\t\t[-114.015633, 45.696127],\n\t\t\t\t\t\t[-114.019315, 45.692937],\n\t\t\t\t\t\t[-114.022534, 45.679620],\n\t\t\t\t\t\t[-114.034930, 45.647967],\n\t\t\t\t\t\t[-114.135249, 45.557465],\n\t\t\t\t\t\t[-114.187852, 45.542151],\n\t\t\t\t\t\t[-114.247828, 45.545489],\n\t\t\t\t\t\t[-114.309613, 45.469432],\n\t\t\t\t\t\t[-114.350819, 45.468542],\n\t\t\t\t\t\t[-114.366620, 45.491616],\n\t\t\t\t\t\t[-114.460542, 45.561283],\n\t\t\t\t\t\t[-114.473759, 45.563278],\n\t\t\t\t\t\t[-114.514196, 45.564734],\n\t\t\t\t\t\t[-114.551286, 45.559007]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30089\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"089\",\n\t\t\t\t\"NAME\": \"Sanders\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2760.524000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-116.048421, 47.976820],\n\t\t\t\t\t\t[-116.048424, 47.977126],\n\t\t\t\t\t\t[-116.049320, 48.066644],\n\t\t\t\t\t\t[-116.049368, 48.072134],\n\t\t\t\t\t\t[-116.049398, 48.075395],\n\t\t\t\t\t\t[-116.049415, 48.077220],\n\t\t\t\t\t\t[-116.049353, 48.215460],\n\t\t\t\t\t\t[-116.007724, 48.158901],\n\t\t\t\t\t\t[-115.799976, 48.222967],\n\t\t\t\t\t\t[-115.737709, 48.263009],\n\t\t\t\t\t\t[-115.671869, 48.206171],\n\t\t\t\t\t\t[-115.636930, 48.074611],\n\t\t\t\t\t\t[-115.537646, 47.981705],\n\t\t\t\t\t\t[-115.525428, 47.908957],\n\t\t\t\t\t\t[-115.278707, 47.890261],\n\t\t\t\t\t\t[-115.185098, 47.919079],\n\t\t\t\t\t\t[-115.154475, 48.017703],\n\t\t\t\t\t\t[-115.010806, 48.017256],\n\t\t\t\t\t\t[-114.989630, 47.872819],\n\t\t\t\t\t\t[-114.604407, 47.875605],\n\t\t\t\t\t\t[-114.604326, 47.789744],\n\t\t\t\t\t\t[-114.583290, 47.601680],\n\t\t\t\t\t\t[-114.321479, 47.595551],\n\t\t\t\t\t\t[-114.383453, 47.483254],\n\t\t\t\t\t\t[-114.301457, 47.497050],\n\t\t\t\t\t\t[-114.353080, 47.389850],\n\t\t\t\t\t\t[-114.288557, 47.355875],\n\t\t\t\t\t\t[-114.203293, 47.355899],\n\t\t\t\t\t\t[-114.187383, 47.138192],\n\t\t\t\t\t\t[-114.254476, 47.120639],\n\t\t\t\t\t\t[-114.352769, 47.190407],\n\t\t\t\t\t\t[-114.550033, 47.251614],\n\t\t\t\t\t\t[-114.797235, 47.268901],\n\t\t\t\t\t\t[-114.968943, 47.312617],\n\t\t\t\t\t\t[-114.979291, 47.395519],\n\t\t\t\t\t\t[-115.282381, 47.486897],\n\t\t\t\t\t\t[-115.628695, 47.479641],\n\t\t\t\t\t\t[-115.661341, 47.402663],\n\t\t\t\t\t\t[-115.690570, 47.415059],\n\t\t\t\t\t\t[-115.721084, 47.422350],\n\t\t\t\t\t\t[-115.729861, 47.447287],\n\t\t\t\t\t\t[-115.725931, 47.466934],\n\t\t\t\t\t\t[-115.712178, 47.488546],\n\t\t\t\t\t\t[-115.729861, 47.518016],\n\t\t\t\t\t\t[-115.739684, 47.537663],\n\t\t\t\t\t\t[-115.735755, 47.555346],\n\t\t\t\t\t\t[-115.721207, 47.576323],\n\t\t\t\t\t\t[-115.718072, 47.592675],\n\t\t\t\t\t\t[-115.706284, 47.637864],\n\t\t\t\t\t\t[-115.723770, 47.696671],\n\t\t\t\t\t\t[-115.729123, 47.703102],\n\t\t\t\t\t\t[-115.919291, 47.857406],\n\t\t\t\t\t\t[-116.007254, 47.944968],\n\t\t\t\t\t\t[-116.048421, 47.976820]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30095\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"095\",\n\t\t\t\t\"NAME\": \"Stillwater\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1795.350000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-108.924129, 46.132211],\n\t\t\t\t\t\t[-108.901279, 45.959536],\n\t\t\t\t\t\t[-108.905232, 45.682437],\n\t\t\t\t\t\t[-108.842697, 45.611006],\n\t\t\t\t\t\t[-109.127810, 45.587454],\n\t\t\t\t\t\t[-109.128460, 45.523053],\n\t\t\t\t\t\t[-109.191449, 45.523141],\n\t\t\t\t\t\t[-109.191508, 45.464272],\n\t\t\t\t\t\t[-109.356241, 45.464445],\n\t\t\t\t\t\t[-109.562014, 45.362940],\n\t\t\t\t\t\t[-109.608660, 45.261214],\n\t\t\t\t\t\t[-109.690497, 45.261265],\n\t\t\t\t\t\t[-109.691105, 45.167198],\n\t\t\t\t\t\t[-109.798221, 45.167405],\n\t\t\t\t\t\t[-109.798173, 45.171920],\n\t\t\t\t\t\t[-110.063819, 45.172102],\n\t\t\t\t\t\t[-110.063347, 45.348759],\n\t\t\t\t\t\t[-109.932223, 45.348561],\n\t\t\t\t\t\t[-109.932028, 45.522609],\n\t\t\t\t\t\t[-109.808841, 45.522424],\n\t\t\t\t\t\t[-109.808793, 45.565925],\n\t\t\t\t\t\t[-109.685551, 45.565630],\n\t\t\t\t\t\t[-109.685289, 45.608906],\n\t\t\t\t\t\t[-109.561958, 45.609119],\n\t\t\t\t\t\t[-109.564149, 45.782856],\n\t\t\t\t\t\t[-109.548918, 45.870940],\n\t\t\t\t\t\t[-109.505939, 45.870272],\n\t\t\t\t\t\t[-109.506715, 45.959139],\n\t\t\t\t\t\t[-109.423259, 45.960214],\n\t\t\t\t\t\t[-109.417297, 46.044485],\n\t\t\t\t\t\t[-109.415506, 46.132261],\n\t\t\t\t\t\t[-108.924129, 46.132211]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26109\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"109\",\n\t\t\t\t\"NAME\": \"Menominee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1044.079000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.306122, 45.475513],\n\t\t\t\t\t\t[-87.317416, 45.466712],\n\t\t\t\t\t\t[-87.319703, 45.464929],\n\t\t\t\t\t\t[-87.330262, 45.451011],\n\t\t\t\t\t\t[-87.333147, 45.447208],\n\t\t\t\t\t\t[-87.333407, 45.446056],\n\t\t\t\t\t\t[-87.334033, 45.443273],\n\t\t\t\t\t\t[-87.334249, 45.442315],\n\t\t\t\t\t\t[-87.333309, 45.437269],\n\t\t\t\t\t\t[-87.333240, 45.436897],\n\t\t\t\t\t\t[-87.331107, 45.433673],\n\t\t\t\t\t\t[-87.329958, 45.431937],\n\t\t\t\t\t\t[-87.328640, 45.431331],\n\t\t\t\t\t\t[-87.327367, 45.430745],\n\t\t\t\t\t\t[-87.326855, 45.430510],\n\t\t\t\t\t\t[-87.325834, 45.430040],\n\t\t\t\t\t\t[-87.326069, 45.429459],\n\t\t\t\t\t\t[-87.327749, 45.425307],\n\t\t\t\t\t\t[-87.328248, 45.424716],\n\t\t\t\t\t\t[-87.329505, 45.423229],\n\t\t\t\t\t\t[-87.330882, 45.421598],\n\t\t\t\t\t\t[-87.336152, 45.415360],\n\t\t\t\t\t\t[-87.338083, 45.414360],\n\t\t\t\t\t\t[-87.350852, 45.407743],\n\t\t\t\t\t\t[-87.351306, 45.407328],\n\t\t\t\t\t\t[-87.359512, 45.399829],\n\t\t\t\t\t\t[-87.360078, 45.398512],\n\t\t\t\t\t\t[-87.360529, 45.397464],\n\t\t\t\t\t\t[-87.364368, 45.388532],\n\t\t\t\t\t\t[-87.371282, 45.383738],\n\t\t\t\t\t\t[-87.387851, 45.372251],\n\t\t\t\t\t\t[-87.389181, 45.371329],\n\t\t\t\t\t\t[-87.389478, 45.371123],\n\t\t\t\t\t\t[-87.389849, 45.370866],\n\t\t\t\t\t\t[-87.391446, 45.369759],\n\t\t\t\t\t\t[-87.392500, 45.369028],\n\t\t\t\t\t\t[-87.394520, 45.363702],\n\t\t\t\t\t\t[-87.399973, 45.349322],\n\t\t\t\t\t\t[-87.409987, 45.338920],\n\t\t\t\t\t\t[-87.427379, 45.320854],\n\t\t\t\t\t\t[-87.431684, 45.316383],\n\t\t\t\t\t\t[-87.436128, 45.307705],\n\t\t\t\t\t\t[-87.437257, 45.305500],\n\t\t\t\t\t\t[-87.437507, 45.303670],\n\t\t\t\t\t\t[-87.438908, 45.293405],\n\t\t\t\t\t\t[-87.455519, 45.280736],\n\t\t\t\t\t\t[-87.456414, 45.280053],\n\t\t\t\t\t\t[-87.464794, 45.273662],\n\t\t\t\t\t\t[-87.465201, 45.273351],\n\t\t\t\t\t\t[-87.496869, 45.240364],\n\t\t\t\t\t\t[-87.503302, 45.233662],\n\t\t\t\t\t\t[-87.504186, 45.232742],\n\t\t\t\t\t\t[-87.512336, 45.224252],\n\t\t\t\t\t\t[-87.530499, 45.208056],\n\t\t\t\t\t\t[-87.535346, 45.203734],\n\t\t\t\t\t\t[-87.548964, 45.191591],\n\t\t\t\t\t\t[-87.552468, 45.189767],\n\t\t\t\t\t\t[-87.556327, 45.187759],\n\t\t\t\t\t\t[-87.563417, 45.184070],\n\t\t\t\t\t\t[-87.582324, 45.169039],\n\t\t\t\t\t\t[-87.585651, 45.166394],\n\t\t\t\t\t\t[-87.587822, 45.163591],\n\t\t\t\t\t\t[-87.596556, 45.152316],\n\t\t\t\t\t\t[-87.600796, 45.146842],\n\t\t\t\t\t\t[-87.607812, 45.134833],\n\t\t\t\t\t\t[-87.607958, 45.134583],\n\t\t\t\t\t\t[-87.609280, 45.132320],\n\t\t\t\t\t\t[-87.612019, 45.123377],\n\t\t\t\t\t\t[-87.611814, 45.122406],\n\t\t\t\t\t\t[-87.611500, 45.120915],\n\t\t\t\t\t\t[-87.611497, 45.120901],\n\t\t\t\t\t\t[-87.611216, 45.119568],\n\t\t\t\t\t\t[-87.610073, 45.114141],\n\t\t\t\t\t\t[-87.608951, 45.112886],\n\t\t\t\t\t\t[-87.606757, 45.110433],\n\t\t\t\t\t\t[-87.605193, 45.108684],\n\t\t\t\t\t\t[-87.604464, 45.107868],\n\t\t\t\t\t\t[-87.602542, 45.105719],\n\t\t\t\t\t\t[-87.602217, 45.105356],\n\t\t\t\t\t\t[-87.602179, 45.105314],\n\t\t\t\t\t\t[-87.601981, 45.105092],\n\t\t\t\t\t\t[-87.601649, 45.104721],\n\t\t\t\t\t\t[-87.601086, 45.104092],\n\t\t\t\t\t\t[-87.600120, 45.103011],\n\t\t\t\t\t\t[-87.598689, 45.102052],\n\t\t\t\t\t\t[-87.597665, 45.101365],\n\t\t\t\t\t\t[-87.592318, 45.097779],\n\t\t\t\t\t\t[-87.590270, 45.096406],\n\t\t\t\t\t\t[-87.589396, 45.096490],\n\t\t\t\t\t\t[-87.581969, 45.097206],\n\t\t\t\t\t\t[-87.590208, 45.095264],\n\t\t\t\t\t\t[-87.659952, 45.107512],\n\t\t\t\t\t\t[-87.731389, 45.170989],\n\t\t\t\t\t\t[-87.735282, 45.176565],\n\t\t\t\t\t\t[-87.741732, 45.198201],\n\t\t\t\t\t\t[-87.739492, 45.202126],\n\t\t\t\t\t\t[-87.731710, 45.206792],\n\t\t\t\t\t\t[-87.711722, 45.243481],\n\t\t\t\t\t\t[-87.707779, 45.258343],\n\t\t\t\t\t\t[-87.709137, 45.260341],\n\t\t\t\t\t\t[-87.648126, 45.339396],\n\t\t\t\t\t\t[-87.647729, 45.350721],\n\t\t\t\t\t\t[-87.657349, 45.368752],\n\t\t\t\t\t\t[-87.675017, 45.382454],\n\t\t\t\t\t\t[-87.685934, 45.388711],\n\t\t\t\t\t\t[-87.693956, 45.389893],\n\t\t\t\t\t\t[-87.718891, 45.377462],\n\t\t\t\t\t\t[-87.751452, 45.351755],\n\t\t\t\t\t\t[-87.771384, 45.351210],\n\t\t\t\t\t\t[-87.790324, 45.353444],\n\t\t\t\t\t\t[-87.832612, 45.352249],\n\t\t\t\t\t\t[-87.835303, 45.350980],\n\t\t\t\t\t\t[-87.838141, 45.345101],\n\t\t\t\t\t\t[-87.850133, 45.340435],\n\t\t\t\t\t\t[-87.885170, 45.351736],\n\t\t\t\t\t\t[-87.888052, 45.354697],\n\t\t\t\t\t\t[-87.860432, 45.423504],\n\t\t\t\t\t\t[-87.820348, 45.460284],\n\t\t\t\t\t\t[-87.812976, 45.464159],\n\t\t\t\t\t\t[-87.806347, 45.472262],\n\t\t\t\t\t\t[-87.798960, 45.485147],\n\t\t\t\t\t\t[-87.792769, 45.499967],\n\t\t\t\t\t\t[-87.788798, 45.565947],\n\t\t\t\t\t\t[-87.792016, 45.616756],\n\t\t\t\t\t\t[-87.795880, 45.618846],\n\t\t\t\t\t\t[-87.824102, 45.647138],\n\t\t\t\t\t\t[-87.823672, 45.659817],\n\t\t\t\t\t\t[-87.781623, 45.673280],\n\t\t\t\t\t\t[-87.780808, 45.680349],\n\t\t\t\t\t\t[-87.807144, 45.708014],\n\t\t\t\t\t\t[-87.828827, 45.722760],\n\t\t\t\t\t\t[-87.697159, 45.722987],\n\t\t\t\t\t\t[-87.696946, 45.898842],\n\t\t\t\t\t\t[-87.617613, 45.898842],\n\t\t\t\t\t\t[-87.617039, 45.986006],\n\t\t\t\t\t\t[-87.367843, 45.985313],\n\t\t\t\t\t\t[-87.325725, 45.898623],\n\t\t\t\t\t\t[-87.327472, 45.550507],\n\t\t\t\t\t\t[-87.264446, 45.550118],\n\t\t\t\t\t\t[-87.280709, 45.517624],\n\t\t\t\t\t\t[-87.288726, 45.501606],\n\t\t\t\t\t\t[-87.289443, 45.500530],\n\t\t\t\t\t\t[-87.306122, 45.475513]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28149\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"149\",\n\t\t\t\t\"NAME\": \"Warren\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 588.501000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.720102, 32.618858],\n\t\t\t\t\t\t[-90.654589, 32.546044],\n\t\t\t\t\t\t[-90.553821, 32.507574],\n\t\t\t\t\t\t[-90.636162, 32.374498],\n\t\t\t\t\t\t[-90.694517, 32.352996],\n\t\t\t\t\t\t[-90.728622, 32.225119],\n\t\t\t\t\t\t[-90.774820, 32.153993],\n\t\t\t\t\t\t[-90.907740, 32.131888],\n\t\t\t\t\t\t[-90.945094, 32.079921],\n\t\t\t\t\t\t[-91.027946, 32.112722],\n\t\t\t\t\t\t[-91.027535, 32.113431],\n\t\t\t\t\t\t[-91.027125, 32.120434],\n\t\t\t\t\t\t[-91.026931, 32.123737],\n\t\t\t\t\t\t[-91.030152, 32.129821],\n\t\t\t\t\t\t[-91.034447, 32.134832],\n\t\t\t\t\t\t[-91.040531, 32.137337],\n\t\t\t\t\t\t[-91.046615, 32.138768],\n\t\t\t\t\t\t[-91.052342, 32.137337],\n\t\t\t\t\t\t[-91.057487, 32.135515],\n\t\t\t\t\t\t[-91.067004, 32.132144],\n\t\t\t\t\t\t[-91.131403, 32.126213],\n\t\t\t\t\t\t[-91.162822, 32.132694],\n\t\t\t\t\t\t[-91.165452, 32.134290],\n\t\t\t\t\t\t[-91.171702, 32.144250],\n\t\t\t\t\t\t[-91.174552, 32.154978],\n\t\t\t\t\t\t[-91.171046, 32.176526],\n\t\t\t\t\t\t[-91.164171, 32.196888],\n\t\t\t\t\t\t[-91.158026, 32.201956],\n\t\t\t\t\t\t[-91.133587, 32.213432],\n\t\t\t\t\t\t[-91.122602, 32.216929],\n\t\t\t\t\t\t[-91.046507, 32.241149],\n\t\t\t\t\t\t[-91.039007, 32.242349],\n\t\t\t\t\t\t[-91.021507, 32.236149],\n\t\t\t\t\t\t[-91.006306, 32.224150],\n\t\t\t\t\t\t[-91.004557, 32.215381],\n\t\t\t\t\t\t[-90.905173, 32.315497],\n\t\t\t\t\t\t[-90.898588, 32.329094],\n\t\t\t\t\t\t[-90.901511, 32.337864],\n\t\t\t\t\t\t[-90.912363, 32.339454],\n\t\t\t\t\t\t[-90.986672, 32.351760],\n\t\t\t\t\t\t[-91.000106, 32.357695],\n\t\t\t\t\t\t[-91.003506, 32.362145],\n\t\t\t\t\t\t[-91.004506, 32.368144],\n\t\t\t\t\t\t[-90.994080, 32.403862],\n\t\t\t\t\t\t[-91.029606, 32.433542],\n\t\t\t\t\t\t[-91.052907, 32.438442],\n\t\t\t\t\t\t[-91.070207, 32.445141],\n\t\t\t\t\t\t[-91.095308, 32.458741],\n\t\t\t\t\t\t[-91.108808, 32.472040],\n\t\t\t\t\t\t[-91.116008, 32.483140],\n\t\t\t\t\t\t[-91.116708, 32.500139],\n\t\t\t\t\t\t[-91.097878, 32.544752],\n\t\t\t\t\t\t[-91.093741, 32.549128],\n\t\t\t\t\t\t[-91.089436, 32.553306],\n\t\t\t\t\t\t[-91.090611, 32.562705],\n\t\t\t\t\t\t[-91.090771, 32.563978],\n\t\t\t\t\t\t[-90.964043, 32.575605],\n\t\t\t\t\t\t[-90.951240, 32.444389],\n\t\t\t\t\t\t[-90.861364, 32.442115],\n\t\t\t\t\t\t[-90.860566, 32.575173],\n\t\t\t\t\t\t[-90.728344, 32.566265],\n\t\t\t\t\t\t[-90.720102, 32.618858]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28161\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"161\",\n\t\t\t\t\"NAME\": \"Yalobusha\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 467.129000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.721050, 34.192545],\n\t\t\t\t\t\t[-89.509440, 34.190960],\n\t\t\t\t\t\t[-89.509748, 34.162082],\n\t\t\t\t\t\t[-89.507353, 33.867469],\n\t\t\t\t\t\t[-89.769050, 33.867334],\n\t\t\t\t\t\t[-89.769296, 33.897137],\n\t\t\t\t\t\t[-89.926099, 33.897957],\n\t\t\t\t\t\t[-89.931485, 34.164303],\n\t\t\t\t\t\t[-89.721431, 34.163513],\n\t\t\t\t\t\t[-89.721050, 34.192545]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29005\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"005\",\n\t\t\t\t\"NAME\": \"Atchison\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 547.302000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.709974, 40.523798],\n\t\t\t\t\t\t[-95.748680, 40.524275],\n\t\t\t\t\t\t[-95.757110, 40.525990],\n\t\t\t\t\t\t[-95.766920, 40.531563],\n\t\t\t\t\t\t[-95.769281, 40.536656],\n\t\t\t\t\t\t[-95.774704, 40.573574],\n\t\t\t\t\t\t[-95.773549, 40.578205],\n\t\t\t\t\t\t[-95.765645, 40.585208],\n\t\t\t\t\t\t[-95.746443, 40.584935],\n\t\t\t\t\t\t[-95.687500, 40.584381],\n\t\t\t\t\t\t[-95.687442, 40.584380],\n\t\t\t\t\t\t[-95.641840, 40.584234],\n\t\t\t\t\t\t[-95.611069, 40.583495],\n\t\t\t\t\t\t[-95.574046, 40.582963],\n\t\t\t\t\t\t[-95.554959, 40.582629],\n\t\t\t\t\t\t[-95.533182, 40.582249],\n\t\t\t\t\t\t[-95.526682, 40.582136],\n\t\t\t\t\t\t[-95.525392, 40.582090],\n\t\t\t\t\t\t[-95.469319, 40.581540],\n\t\t\t\t\t\t[-95.415406, 40.581014],\n\t\t\t\t\t\t[-95.373923, 40.580501],\n\t\t\t\t\t\t[-95.373893, 40.580501],\n\t\t\t\t\t\t[-95.357802, 40.580100],\n\t\t\t\t\t\t[-95.335588, 40.579871],\n\t\t\t\t\t\t[-95.221525, 40.578827],\n\t\t\t\t\t\t[-95.218783, 40.578781],\n\t\t\t\t\t\t[-95.217455, 40.578759],\n\t\t\t\t\t\t[-95.213327, 40.578689],\n\t\t\t\t\t\t[-95.212715, 40.578679],\n\t\t\t\t\t\t[-95.211590, 40.578654],\n\t\t\t\t\t\t[-95.211408, 40.578650],\n\t\t\t\t\t\t[-95.202264, 40.578528],\n\t\t\t\t\t\t[-95.177708, 40.478903],\n\t\t\t\t\t\t[-95.180614, 40.261706],\n\t\t\t\t\t\t[-95.552314, 40.264443],\n\t\t\t\t\t\t[-95.550966, 40.285947],\n\t\t\t\t\t\t[-95.553292, 40.291158],\n\t\t\t\t\t\t[-95.622684, 40.342323],\n\t\t\t\t\t\t[-95.687280, 40.465059],\n\t\t\t\t\t\t[-95.692665, 40.483022],\n\t\t\t\t\t\t[-95.681409, 40.490820],\n\t\t\t\t\t\t[-95.659281, 40.519808],\n\t\t\t\t\t\t[-95.696673, 40.545137],\n\t\t\t\t\t\t[-95.697281, 40.536985],\n\t\t\t\t\t\t[-95.709974, 40.523798]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29011\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"011\",\n\t\t\t\t\"NAME\": \"Barton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 591.921000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.082083, 37.349291],\n\t\t\t\t\t\t[-94.617538, 37.364167],\n\t\t\t\t\t\t[-94.617537, 37.364355],\n\t\t\t\t\t\t[-94.617626, 37.367445],\n\t\t\t\t\t\t[-94.617625, 37.367576],\n\t\t\t\t\t\t[-94.617557, 37.396375],\n\t\t\t\t\t\t[-94.617511, 37.410909],\n\t\t\t\t\t\t[-94.617265, 37.425536],\n\t\t\t\t\t\t[-94.617132, 37.439818],\n\t\t\t\t\t\t[-94.617201, 37.454788],\n\t\t\t\t\t\t[-94.617205, 37.460373],\n\t\t\t\t\t\t[-94.617222, 37.460476],\n\t\t\t\t\t\t[-94.617180, 37.465203],\n\t\t\t\t\t\t[-94.617183, 37.469665],\n\t\t\t\t\t\t[-94.617023, 37.483765],\n\t\t\t\t\t\t[-94.616789, 37.521510],\n\t\t\t\t\t\t[-94.616908, 37.527804],\n\t\t\t\t\t\t[-94.617186, 37.553485],\n\t\t\t\t\t\t[-94.617160, 37.557308],\n\t\t\t\t\t\t[-94.617081, 37.567013],\n\t\t\t\t\t\t[-94.617315, 37.571499],\n\t\t\t\t\t\t[-94.617283, 37.571896],\n\t\t\t\t\t\t[-94.617428, 37.609522],\n\t\t\t\t\t\t[-94.617300, 37.610495],\n\t\t\t\t\t\t[-94.617477, 37.637170],\n\t\t\t\t\t\t[-94.617575, 37.653577],\n\t\t\t\t\t\t[-94.073524, 37.639722],\n\t\t\t\t\t\t[-94.075385, 37.581570],\n\t\t\t\t\t\t[-94.082083, 37.349291]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29019\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"019\",\n\t\t\t\t\"NAME\": \"Boone\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 685.414000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.430229, 39.248795],\n\t\t\t\t\t\t[-92.314471, 39.246454],\n\t\t\t\t\t\t[-92.104374, 39.239809],\n\t\t\t\t\t\t[-92.110387, 39.064204],\n\t\t\t\t\t\t[-92.131512, 39.064484],\n\t\t\t\t\t\t[-92.170950, 38.765300],\n\t\t\t\t\t\t[-92.220661, 38.643167],\n\t\t\t\t\t\t[-92.350605, 38.676398],\n\t\t\t\t\t\t[-92.394866, 38.739130],\n\t\t\t\t\t\t[-92.379614, 38.800076],\n\t\t\t\t\t\t[-92.498377, 38.922084],\n\t\t\t\t\t\t[-92.508657, 38.932710],\n\t\t\t\t\t\t[-92.514987, 38.938114],\n\t\t\t\t\t\t[-92.526437, 38.944776],\n\t\t\t\t\t\t[-92.540118, 38.953718],\n\t\t\t\t\t\t[-92.544946, 38.959691],\n\t\t\t\t\t\t[-92.558086, 38.970692],\n\t\t\t\t\t\t[-92.565124, 38.998274],\n\t\t\t\t\t\t[-92.430229, 39.248795]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29025\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"025\",\n\t\t\t\t\"NAME\": \"Caldwell\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 426.393000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.758992, 39.784674],\n\t\t\t\t\t\t[-93.758357, 39.611407],\n\t\t\t\t\t\t[-93.759183, 39.524558],\n\t\t\t\t\t\t[-94.208423, 39.527200],\n\t\t\t\t\t\t[-94.205961, 39.745841],\n\t\t\t\t\t\t[-94.205728, 39.756815],\n\t\t\t\t\t\t[-94.205432, 39.760821],\n\t\t\t\t\t\t[-94.205884, 39.767152],\n\t\t\t\t\t\t[-94.205844, 39.788954],\n\t\t\t\t\t\t[-93.758992, 39.784674]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39085\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"085\",\n\t\t\t\t\"NAME\": \"Lake\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 227.493000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.391005, 41.569716],\n\t\t\t\t\t\t[-81.408992, 41.569850],\n\t\t\t\t\t\t[-81.417630, 41.569670],\n\t\t\t\t\t\t[-81.419936, 41.569950],\n\t\t\t\t\t\t[-81.487842, 41.570051],\n\t\t\t\t\t\t[-81.488139, 41.577328],\n\t\t\t\t\t\t[-81.488062, 41.598556],\n\t\t\t\t\t\t[-81.488934, 41.627948],\n\t\t\t\t\t\t[-81.488640, 41.631348],\n\t\t\t\t\t\t[-81.486919, 41.632704],\n\t\t\t\t\t\t[-81.477544, 41.640086],\n\t\t\t\t\t\t[-81.466038, 41.649148],\n\t\t\t\t\t\t[-81.452461, 41.663139],\n\t\t\t\t\t\t[-81.447734, 41.668011],\n\t\t\t\t\t\t[-81.443647, 41.672222],\n\t\t\t\t\t\t[-81.442843, 41.673051],\n\t\t\t\t\t\t[-81.442720, 41.673178],\n\t\t\t\t\t\t[-81.442645, 41.673255],\n\t\t\t\t\t\t[-81.442552, 41.673314],\n\t\t\t\t\t\t[-81.441803, 41.673783],\n\t\t\t\t\t\t[-81.441339, 41.674074],\n\t\t\t\t\t\t[-81.438971, 41.675560],\n\t\t\t\t\t\t[-81.437809, 41.676289],\n\t\t\t\t\t\t[-81.437014, 41.676788],\n\t\t\t\t\t\t[-81.435582, 41.677686],\n\t\t\t\t\t\t[-81.431441, 41.680285],\n\t\t\t\t\t\t[-81.413062, 41.691816],\n\t\t\t\t\t\t[-81.407984, 41.695002],\n\t\t\t\t\t\t[-81.406098, 41.696185],\n\t\t\t\t\t\t[-81.404476, 41.697203],\n\t\t\t\t\t\t[-81.402417, 41.698495],\n\t\t\t\t\t\t[-81.400686, 41.699581],\n\t\t\t\t\t\t[-81.400617, 41.699624],\n\t\t\t\t\t\t[-81.388632, 41.707144],\n\t\t\t\t\t\t[-81.388269, 41.707355],\n\t\t\t\t\t\t[-81.380935, 41.711622],\n\t\t\t\t\t\t[-81.374509, 41.715361],\n\t\t\t\t\t\t[-81.374454, 41.715393],\n\t\t\t\t\t\t[-81.373666, 41.715852],\n\t\t\t\t\t\t[-81.372587, 41.716480],\n\t\t\t\t\t\t[-81.368913, 41.718618],\n\t\t\t\t\t\t[-81.368670, 41.718759],\n\t\t\t\t\t\t[-81.367498, 41.719441],\n\t\t\t\t\t\t[-81.353229, 41.727743],\n\t\t\t\t\t\t[-81.330154, 41.737938],\n\t\t\t\t\t\t[-81.309499, 41.747064],\n\t\t\t\t\t\t[-81.307010, 41.748164],\n\t\t\t\t\t\t[-81.306495, 41.748392],\n\t\t\t\t\t\t[-81.301626, 41.750543],\n\t\t\t\t\t\t[-81.288892, 41.758945],\n\t\t\t\t\t\t[-81.286925, 41.760243],\n\t\t\t\t\t\t[-81.279925, 41.759944],\n\t\t\t\t\t\t[-81.279187, 41.759859],\n\t\t\t\t\t\t[-81.265576, 41.758298],\n\t\t\t\t\t\t[-81.264224, 41.758143],\n\t\t\t\t\t\t[-81.263751, 41.758239],\n\t\t\t\t\t\t[-81.263110, 41.758369],\n\t\t\t\t\t\t[-81.259349, 41.759130],\n\t\t\t\t\t\t[-81.255520, 41.759905],\n\t\t\t\t\t\t[-81.252977, 41.760420],\n\t\t\t\t\t\t[-81.251918, 41.760634],\n\t\t\t\t\t\t[-81.248672, 41.761291],\n\t\t\t\t\t\t[-81.248609, 41.761316],\n\t\t\t\t\t\t[-81.247832, 41.761623],\n\t\t\t\t\t\t[-81.247607, 41.761712],\n\t\t\t\t\t\t[-81.202359, 41.779570],\n\t\t\t\t\t\t[-81.201721, 41.779822],\n\t\t\t\t\t\t[-81.192684, 41.783389],\n\t\t\t\t\t\t[-81.184368, 41.786671],\n\t\t\t\t\t\t[-81.183328, 41.787120],\n\t\t\t\t\t\t[-81.167638, 41.793903],\n\t\t\t\t\t\t[-81.122295, 41.813503],\n\t\t\t\t\t\t[-81.112885, 41.817571],\n\t\t\t\t\t\t[-81.098931, 41.821319],\n\t\t\t\t\t\t[-81.095592, 41.822216],\n\t\t\t\t\t\t[-81.092716, 41.822988],\n\t\t\t\t\t\t[-81.051920, 41.839557],\n\t\t\t\t\t\t[-81.024525, 41.846469],\n\t\t\t\t\t\t[-81.010490, 41.853962],\n\t\t\t\t\t\t[-81.002663, 41.854846],\n\t\t\t\t\t\t[-81.002117, 41.854908],\n\t\t\t\t\t\t[-81.004763, 41.726436],\n\t\t\t\t\t\t[-81.003631, 41.715137],\n\t\t\t\t\t\t[-81.102258, 41.714307],\n\t\t\t\t\t\t[-81.101422, 41.641457],\n\t\t\t\t\t\t[-81.294669, 41.640889],\n\t\t\t\t\t\t[-81.295880, 41.569950],\n\t\t\t\t\t\t[-81.391005, 41.569716]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39095\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"095\",\n\t\t\t\t\"NAME\": \"Lucas\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 340.855000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.453832, 41.732647],\n\t\t\t\t\t\t[-83.455626, 41.727445],\n\t\t\t\t\t\t[-83.449001, 41.710719],\n\t\t\t\t\t\t[-83.446032, 41.706847],\n\t\t\t\t\t\t[-83.409531, 41.691247],\n\t\t\t\t\t\t[-83.392630, 41.691947],\n\t\t\t\t\t\t[-83.375730, 41.686647],\n\t\t\t\t\t\t[-83.357073, 41.687763],\n\t\t\t\t\t\t[-83.341817, 41.693518],\n\t\t\t\t\t\t[-83.337985, 41.698682],\n\t\t\t\t\t\t[-83.337977, 41.703410],\n\t\t\t\t\t\t[-83.326825, 41.701562],\n\t\t\t\t\t\t[-83.298731, 41.683871],\n\t\t\t\t\t\t[-83.295610, 41.681905],\n\t\t\t\t\t\t[-83.293928, 41.680846],\n\t\t\t\t\t\t[-83.290680, 41.676794],\n\t\t\t\t\t\t[-83.289682, 41.676409],\n\t\t\t\t\t\t[-83.288469, 41.675941],\n\t\t\t\t\t\t[-83.287125, 41.675423],\n\t\t\t\t\t\t[-83.285181, 41.674673],\n\t\t\t\t\t\t[-83.278455, 41.672078],\n\t\t\t\t\t\t[-83.238191, 41.651167],\n\t\t\t\t\t\t[-83.231660, 41.644218],\n\t\t\t\t\t\t[-83.194524, 41.631008],\n\t\t\t\t\t\t[-83.165713, 41.623246],\n\t\t\t\t\t\t[-83.415919, 41.618938],\n\t\t\t\t\t\t[-83.569934, 41.617150],\n\t\t\t\t\t\t[-83.703336, 41.528952],\n\t\t\t\t\t\t[-83.712432, 41.492856],\n\t\t\t\t\t\t[-83.883234, 41.414503],\n\t\t\t\t\t\t[-83.882943, 41.487543],\n\t\t\t\t\t\t[-83.882455, 41.603225],\n\t\t\t\t\t\t[-83.880387, 41.720086],\n\t\t\t\t\t\t[-83.763155, 41.723910],\n\t\t\t\t\t\t[-83.685337, 41.726449],\n\t\t\t\t\t\t[-83.665937, 41.726949],\n\t\t\t\t\t\t[-83.639636, 41.727749],\n\t\t\t\t\t\t[-83.636636, 41.727849],\n\t\t\t\t\t\t[-83.595235, 41.729148],\n\t\t\t\t\t\t[-83.593835, 41.729148],\n\t\t\t\t\t\t[-83.585235, 41.729348],\n\t\t\t\t\t\t[-83.504334, 41.731547],\n\t\t\t\t\t\t[-83.503433, 41.731547],\n\t\t\t\t\t\t[-83.499733, 41.731647],\n\t\t\t\t\t\t[-83.497733, 41.731847],\n\t\t\t\t\t\t[-83.453832, 41.732647]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US44009\",\n\t\t\t\t\"STATE\": \"44\",\n\t\t\t\t\"COUNTY\": \"009\",\n\t\t\t\t\"NAME\": \"Washington\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 329.235000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-71.589550, 41.196557],\n\t\t\t\t\t\t\t[-71.580228, 41.204837],\n\t\t\t\t\t\t\t[-71.577301, 41.214710],\n\t\t\t\t\t\t\t[-71.576661, 41.224434],\n\t\t\t\t\t\t\t[-71.573785, 41.228436],\n\t\t\t\t\t\t\t[-71.561093, 41.224207],\n\t\t\t\t\t\t\t[-71.555006, 41.216822],\n\t\t\t\t\t\t\t[-71.554067, 41.212957],\n\t\t\t\t\t\t\t[-71.557459, 41.204542],\n\t\t\t\t\t\t\t[-71.564119, 41.195372],\n\t\t\t\t\t\t\t[-71.565752, 41.184373],\n\t\t\t\t\t\t\t[-71.560969, 41.176186],\n\t\t\t\t\t\t\t[-71.550226, 41.166787],\n\t\t\t\t\t\t\t[-71.544446, 41.164912],\n\t\t\t\t\t\t\t[-71.543872, 41.161321],\n\t\t\t\t\t\t\t[-71.547051, 41.153684],\n\t\t\t\t\t\t\t[-71.551953, 41.151718],\n\t\t\t\t\t\t\t[-71.593700, 41.146339],\n\t\t\t\t\t\t\t[-71.599993, 41.146932],\n\t\t\t\t\t\t\t[-71.611706, 41.153239],\n\t\t\t\t\t\t\t[-71.613133, 41.160281],\n\t\t\t\t\t\t\t[-71.605565, 41.182139],\n\t\t\t\t\t\t\t[-71.594994, 41.188392],\n\t\t\t\t\t\t\t[-71.589550, 41.196557]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-71.408636, 41.653819],\n\t\t\t\t\t\t\t[-71.403770, 41.589321],\n\t\t\t\t\t\t\t[-71.447712, 41.580400],\n\t\t\t\t\t\t\t[-71.442567, 41.565075],\n\t\t\t\t\t\t\t[-71.421649, 41.537892],\n\t\t\t\t\t\t\t[-71.417398, 41.534536],\n\t\t\t\t\t\t\t[-71.414825, 41.523126],\n\t\t\t\t\t\t\t[-71.414937, 41.516303],\n\t\t\t\t\t\t\t[-71.421425, 41.498629],\n\t\t\t\t\t\t\t[-71.419971, 41.484758],\n\t\t\t\t\t\t\t[-71.417957, 41.482073],\n\t\t\t\t\t\t\t[-71.417621, 41.477934],\n\t\t\t\t\t\t\t[-71.418404, 41.472652],\n\t\t\t\t\t\t\t[-71.421157, 41.469888],\n\t\t\t\t\t\t\t[-71.422991, 41.472682],\n\t\t\t\t\t\t\t[-71.430744, 41.470636],\n\t\t\t\t\t\t\t[-71.430926, 41.465655],\n\t\t\t\t\t\t\t[-71.427935, 41.459529],\n\t\t\t\t\t\t\t[-71.428652, 41.454158],\n\t\t\t\t\t\t\t[-71.433612, 41.444995],\n\t\t\t\t\t\t\t[-71.437670, 41.441302],\n\t\t\t\t\t\t\t[-71.441199, 41.441602],\n\t\t\t\t\t\t\t[-71.448948, 41.438479],\n\t\t\t\t\t\t\t[-71.455845, 41.432986],\n\t\t\t\t\t\t\t[-71.455371, 41.407962],\n\t\t\t\t\t\t\t[-71.474918, 41.386104],\n\t\t\t\t\t\t\t[-71.483295, 41.371722],\n\t\t\t\t\t\t\t[-71.513401, 41.374702],\n\t\t\t\t\t\t\t[-71.526724, 41.376636],\n\t\t\t\t\t\t\t[-71.555381, 41.373316],\n\t\t\t\t\t\t\t[-71.624505, 41.360870],\n\t\t\t\t\t\t\t[-71.688070, 41.342823],\n\t\t\t\t\t\t\t[-71.701631, 41.336968],\n\t\t\t\t\t\t\t[-71.720740, 41.331567],\n\t\t\t\t\t\t\t[-71.729247, 41.330990],\n\t\t\t\t\t\t\t[-71.773702, 41.327977],\n\t\t\t\t\t\t\t[-71.785957, 41.325739],\n\t\t\t\t\t\t\t[-71.833755, 41.315631],\n\t\t\t\t\t\t\t[-71.857432, 41.306318],\n\t\t\t\t\t\t\t[-71.862772, 41.309791],\n\t\t\t\t\t\t\t[-71.862109, 41.316612],\n\t\t\t\t\t\t\t[-71.859570, 41.322399],\n\t\t\t\t\t\t\t[-71.839782, 41.334690],\n\t\t\t\t\t\t\t[-71.832530, 41.341204],\n\t\t\t\t\t\t\t[-71.831240, 41.344645],\n\t\t\t\t\t\t\t[-71.831613, 41.370899],\n\t\t\t\t\t\t\t[-71.833443, 41.384524],\n\t\t\t\t\t\t\t[-71.842131, 41.395359],\n\t\t\t\t\t\t\t[-71.843472, 41.405830],\n\t\t\t\t\t\t\t[-71.842563, 41.409855],\n\t\t\t\t\t\t\t[-71.839649, 41.412119],\n\t\t\t\t\t\t\t[-71.818390, 41.419599],\n\t\t\t\t\t\t\t[-71.797683, 41.416709],\n\t\t\t\t\t\t\t[-71.797674, 41.416910],\n\t\t\t\t\t\t\t[-71.789359, 41.596852],\n\t\t\t\t\t\t\t[-71.484406, 41.602769],\n\t\t\t\t\t\t\t[-71.408636, 41.653819]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US45011\",\n\t\t\t\t\"STATE\": \"45\",\n\t\t\t\t\"COUNTY\": \"011\",\n\t\t\t\t\"NAME\": \"Barnwell\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 548.393000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.772251, 33.180120],\n\t\t\t\t\t\t[-81.757035, 33.198148],\n\t\t\t\t\t\t[-81.516419, 33.382239],\n\t\t\t\t\t\t[-81.374827, 33.489652],\n\t\t\t\t\t\t[-81.372931, 33.490417],\n\t\t\t\t\t\t[-81.222673, 33.440000],\n\t\t\t\t\t\t[-81.227804, 33.160697],\n\t\t\t\t\t\t[-81.193099, 33.118668],\n\t\t\t\t\t\t[-81.364857, 33.108061],\n\t\t\t\t\t\t[-81.541881, 33.158279],\n\t\t\t\t\t\t[-81.615756, 33.092534],\n\t\t\t\t\t\t[-81.620287, 33.095408],\n\t\t\t\t\t\t[-81.696934, 33.116551],\n\t\t\t\t\t\t[-81.772251, 33.180120]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US45013\",\n\t\t\t\t\"STATE\": \"45\",\n\t\t\t\t\"COUNTY\": \"013\",\n\t\t\t\t\"NAME\": \"Beaufort\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 576.280000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.826309, 32.704321],\n\t\t\t\t\t\t[-80.667740, 32.665535],\n\t\t\t\t\t\t[-80.659751, 32.612683],\n\t\t\t\t\t\t[-80.551504, 32.565769],\n\t\t\t\t\t\t[-80.476910, 32.485390],\n\t\t\t\t\t\t[-80.480250, 32.477407],\n\t\t\t\t\t\t[-80.484617, 32.460976],\n\t\t\t\t\t\t[-80.480156, 32.447048],\n\t\t\t\t\t\t[-80.467588, 32.425259],\n\t\t\t\t\t\t[-80.446075, 32.423721],\n\t\t\t\t\t\t[-80.432960, 32.410659],\n\t\t\t\t\t\t[-80.429941, 32.401782],\n\t\t\t\t\t\t[-80.429291, 32.389667],\n\t\t\t\t\t\t[-80.434303, 32.375193],\n\t\t\t\t\t\t[-80.445451, 32.350335],\n\t\t\t\t\t\t[-80.456814, 32.336884],\n\t\t\t\t\t\t[-80.455192, 32.326458],\n\t\t\t\t\t\t[-80.466342, 32.319170],\n\t\t\t\t\t\t[-80.517871, 32.298796],\n\t\t\t\t\t\t[-80.539429, 32.287024],\n\t\t\t\t\t\t[-80.545688, 32.282076],\n\t\t\t\t\t\t[-80.571096, 32.273278],\n\t\t\t\t\t\t[-80.596394, 32.273549],\n\t\t\t\t\t\t[-80.618286, 32.260183],\n\t\t\t\t\t\t[-80.638857, 32.255618],\n\t\t\t\t\t\t[-80.658634, 32.248638],\n\t\t\t\t\t\t[-80.669166, 32.216783],\n\t\t\t\t\t\t[-80.688857, 32.200971],\n\t\t\t\t\t\t[-80.721463, 32.160427],\n\t\t\t\t\t\t[-80.749091, 32.140137],\n\t\t\t\t\t\t[-80.789996, 32.122494],\n\t\t\t\t\t\t[-80.812503, 32.109746],\n\t\t\t\t\t\t[-80.821530, 32.108589],\n\t\t\t\t\t\t[-80.828394, 32.113222],\n\t\t\t\t\t\t[-80.831531, 32.112709],\n\t\t\t\t\t\t[-80.844431, 32.109709],\n\t\t\t\t\t\t[-80.858735, 32.099581],\n\t\t\t\t\t\t[-80.878111, 32.079792],\n\t\t\t\t\t\t[-81.016341, 32.241923],\n\t\t\t\t\t\t[-81.006432, 32.306196],\n\t\t\t\t\t\t[-80.934935, 32.300369],\n\t\t\t\t\t\t[-80.829489, 32.411836],\n\t\t\t\t\t\t[-80.869705, 32.660935],\n\t\t\t\t\t\t[-80.837033, 32.700038],\n\t\t\t\t\t\t[-80.826309, 32.704321]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US32015\",\n\t\t\t\t\"STATE\": \"32\",\n\t\t\t\t\"COUNTY\": \"015\",\n\t\t\t\t\"NAME\": \"Lander\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 5490.105000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-117.300597, 40.526136],\n\t\t\t\t\t\t[-117.246788, 40.642445],\n\t\t\t\t\t\t[-117.018664, 40.643035],\n\t\t\t\t\t\t[-117.018419, 41.000254],\n\t\t\t\t\t\t[-116.586786, 41.000398],\n\t\t\t\t\t\t[-116.587104, 40.947021],\n\t\t\t\t\t\t[-116.596815, 40.946460],\n\t\t\t\t\t\t[-116.590238, 39.706440],\n\t\t\t\t\t\t[-116.597109, 39.176241],\n\t\t\t\t\t\t[-116.600946, 39.161463],\n\t\t\t\t\t\t[-117.331857, 39.163430],\n\t\t\t\t\t\t[-117.775468, 39.093425],\n\t\t\t\t\t\t[-117.806183, 39.145845],\n\t\t\t\t\t\t[-117.714056, 39.245558],\n\t\t\t\t\t\t[-117.759795, 39.369225],\n\t\t\t\t\t\t[-117.646011, 39.426602],\n\t\t\t\t\t\t[-117.656397, 39.468043],\n\t\t\t\t\t\t[-117.590240, 39.517521],\n\t\t\t\t\t\t[-117.485336, 39.545322],\n\t\t\t\t\t\t[-117.461786, 39.622444],\n\t\t\t\t\t\t[-117.495344, 39.748364],\n\t\t\t\t\t\t[-117.461640, 39.886817],\n\t\t\t\t\t\t[-117.541749, 40.001034],\n\t\t\t\t\t\t[-117.300597, 40.526136]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US32019\",\n\t\t\t\t\"STATE\": \"32\",\n\t\t\t\t\"COUNTY\": \"019\",\n\t\t\t\t\"NAME\": \"Lyon\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2001.187000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-119.712645, 39.250871],\n\t\t\t\t\t\t[-119.647350, 39.266568],\n\t\t\t\t\t\t[-119.478806, 39.337416],\n\t\t\t\t\t\t[-119.283637, 39.621561],\n\t\t\t\t\t\t[-119.258760, 39.649213],\n\t\t\t\t\t\t[-119.189342, 39.650870],\n\t\t\t\t\t\t[-119.190676, 39.631787],\n\t\t\t\t\t\t[-119.059922, 39.740385],\n\t\t\t\t\t\t[-119.118193, 39.388516],\n\t\t\t\t\t\t[-118.754014, 39.112023],\n\t\t\t\t\t\t[-118.753835, 39.074630],\n\t\t\t\t\t\t[-118.929737, 39.073698],\n\t\t\t\t\t\t[-119.014837, 38.943323],\n\t\t\t\t\t\t[-119.014528, 38.851300],\n\t\t\t\t\t\t[-118.902124, 38.852158],\n\t\t\t\t\t\t[-118.906861, 38.414677],\n\t\t\t\t\t\t[-119.156863, 38.414743],\n\t\t\t\t\t\t[-119.328498, 38.534648],\n\t\t\t\t\t\t[-119.349884, 38.729193],\n\t\t\t\t\t\t[-119.406279, 38.733362],\n\t\t\t\t\t\t[-119.403908, 38.809111],\n\t\t\t\t\t\t[-119.439534, 38.882001],\n\t\t\t\t\t\t[-119.401648, 38.983323],\n\t\t\t\t\t\t[-119.310702, 38.990719],\n\t\t\t\t\t\t[-119.311714, 39.083615],\n\t\t\t\t\t\t[-119.551020, 39.085791],\n\t\t\t\t\t\t[-119.563680, 39.195415],\n\t\t\t\t\t\t[-119.648977, 39.195287],\n\t\t\t\t\t\t[-119.712645, 39.250871]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US32029\",\n\t\t\t\t\"STATE\": \"32\",\n\t\t\t\t\"COUNTY\": \"029\",\n\t\t\t\t\"NAME\": \"Storey\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 262.920000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-119.283637, 39.621561],\n\t\t\t\t\t\t[-119.478806, 39.337416],\n\t\t\t\t\t\t[-119.647350, 39.266568],\n\t\t\t\t\t\t[-119.712645, 39.250871],\n\t\t\t\t\t\t[-119.658501, 39.331544],\n\t\t\t\t\t\t[-119.685464, 39.389575],\n\t\t\t\t\t\t[-119.695643, 39.520023],\n\t\t\t\t\t\t[-119.621697, 39.511602],\n\t\t\t\t\t\t[-119.582952, 39.547302],\n\t\t\t\t\t\t[-119.467141, 39.584502],\n\t\t\t\t\t\t[-119.370604, 39.586882],\n\t\t\t\t\t\t[-119.279801, 39.627112],\n\t\t\t\t\t\t[-119.283637, 39.621561]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39111\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"111\",\n\t\t\t\t\"NAME\": \"Monroe\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 455.721000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.812342, 39.848845],\n\t\t\t\t\t\t[-80.828618, 39.720848],\n\t\t\t\t\t\t[-80.829764, 39.711839],\n\t\t\t\t\t\t[-80.831871, 39.705655],\n\t\t\t\t\t\t[-80.880360, 39.620706],\n\t\t\t\t\t\t[-80.892208, 39.616756],\n\t\t\t\t\t\t[-80.943782, 39.606926],\n\t\t\t\t\t\t[-81.020055, 39.555410],\n\t\t\t\t\t\t[-81.038691, 39.540464],\n\t\t\t\t\t\t[-81.036791, 39.572118],\n\t\t\t\t\t\t[-81.246808, 39.579037],\n\t\t\t\t\t\t[-81.283075, 39.605796],\n\t\t\t\t\t\t[-81.319125, 39.707360],\n\t\t\t\t\t\t[-81.313591, 39.869471],\n\t\t\t\t\t\t[-81.237316, 39.867828],\n\t\t\t\t\t\t[-80.812342, 39.848845]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39113\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"113\",\n\t\t\t\t\"NAME\": \"Montgomery\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 461.553000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.157223, 39.885630],\n\t\t\t\t\t\t[-84.154452, 39.885587],\n\t\t\t\t\t\t[-84.104830, 39.882652],\n\t\t\t\t\t\t[-84.098237, 39.882529],\n\t\t\t\t\t\t[-84.056413, 39.879875],\n\t\t\t\t\t\t[-84.051039, 39.879807],\n\t\t\t\t\t\t[-84.051636, 39.877665],\n\t\t\t\t\t\t[-84.052136, 39.866259],\n\t\t\t\t\t\t[-84.053136, 39.856158],\n\t\t\t\t\t\t[-84.053341, 39.855117],\n\t\t\t\t\t\t[-84.053736, 39.850458],\n\t\t\t\t\t\t[-84.055238, 39.835958],\n\t\t\t\t\t\t[-84.092938, 39.838345],\n\t\t\t\t\t\t[-84.096937, 39.793033],\n\t\t\t\t\t\t[-84.114195, 39.577983],\n\t\t\t\t\t\t[-84.187334, 39.583081],\n\t\t\t\t\t\t[-84.365232, 39.589493],\n\t\t\t\t\t\t[-84.474246, 39.590155],\n\t\t\t\t\t\t[-84.479213, 39.591024],\n\t\t\t\t\t\t[-84.485367, 39.918491],\n\t\t\t\t\t\t[-84.448023, 39.919230],\n\t\t\t\t\t\t[-84.446511, 39.918874],\n\t\t\t\t\t\t[-84.446101, 39.919266],\n\t\t\t\t\t\t[-84.425902, 39.919622],\n\t\t\t\t\t\t[-84.157671, 39.922970],\n\t\t\t\t\t\t[-84.157223, 39.885630]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39123\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"123\",\n\t\t\t\t\"NAME\": \"Ottawa\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 254.917000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-82.824731, 41.659428],\n\t\t\t\t\t\t\t[-82.808587, 41.661682],\n\t\t\t\t\t\t\t[-82.805179, 41.664281],\n\t\t\t\t\t\t\t[-82.796333, 41.665973],\n\t\t\t\t\t\t\t[-82.793069, 41.664692],\n\t\t\t\t\t\t\t[-82.794198, 41.662496],\n\t\t\t\t\t\t\t[-82.797493, 41.658197],\n\t\t\t\t\t\t\t[-82.827011, 41.633701],\n\t\t\t\t\t\t\t[-82.834662, 41.629331],\n\t\t\t\t\t\t\t[-82.842099, 41.628323],\n\t\t\t\t\t\t\t[-82.843602, 41.647009],\n\t\t\t\t\t\t\t[-82.834092, 41.657121],\n\t\t\t\t\t\t\t[-82.824731, 41.659428]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-82.803341, 41.693837],\n\t\t\t\t\t\t\t[-82.786304, 41.697140],\n\t\t\t\t\t\t\t[-82.782719, 41.694003],\n\t\t\t\t\t\t\t[-82.790561, 41.689970],\n\t\t\t\t\t\t\t[-82.801539, 41.682577],\n\t\t\t\t\t\t\t[-82.805137, 41.674931],\n\t\t\t\t\t\t\t[-82.805423, 41.671920],\n\t\t\t\t\t\t\t[-82.813781, 41.670594],\n\t\t\t\t\t\t\t[-82.826443, 41.684774],\n\t\t\t\t\t\t\t[-82.812805, 41.692002],\n\t\t\t\t\t\t\t[-82.803341, 41.693837]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-82.813489, 41.723468],\n\t\t\t\t\t\t\t[-82.810487, 41.720524],\n\t\t\t\t\t\t\t[-82.808869, 41.708333],\n\t\t\t\t\t\t\t[-82.816133, 41.706732],\n\t\t\t\t\t\t\t[-82.835118, 41.708971],\n\t\t\t\t\t\t\t[-82.835577, 41.710823],\n\t\t\t\t\t\t\t[-82.832709, 41.715650],\n\t\t\t\t\t\t\t[-82.825720, 41.722810],\n\t\t\t\t\t\t\t[-82.820409, 41.724549],\n\t\t\t\t\t\t\t[-82.813489, 41.723468]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-82.828317, 41.481802],\n\t\t\t\t\t\t\t[-82.856104, 41.471923],\n\t\t\t\t\t\t\t[-82.906650, 41.460215],\n\t\t\t\t\t\t\t[-82.920239, 41.458443],\n\t\t\t\t\t\t\t[-82.952224, 41.458239],\n\t\t\t\t\t\t\t[-83.338196, 41.457508],\n\t\t\t\t\t\t\t[-83.414626, 41.500228],\n\t\t\t\t\t\t\t[-83.415919, 41.618938],\n\t\t\t\t\t\t\t[-83.165713, 41.623246],\n\t\t\t\t\t\t\t[-83.145887, 41.617904],\n\t\t\t\t\t\t\t[-83.103928, 41.613558],\n\t\t\t\t\t\t\t[-83.086036, 41.606680],\n\t\t\t\t\t\t\t[-83.066593, 41.595340],\n\t\t\t\t\t\t\t[-83.048222, 41.573951],\n\t\t\t\t\t\t\t[-83.043287, 41.568205],\n\t\t\t\t\t\t\t[-83.043079, 41.567963],\n\t\t\t\t\t\t\t[-83.042909, 41.567823],\n\t\t\t\t\t\t\t[-83.031653, 41.558592],\n\t\t\t\t\t\t\t[-83.030764, 41.557864],\n\t\t\t\t\t\t\t[-83.028072, 41.555656],\n\t\t\t\t\t\t\t[-83.019057, 41.550174],\n\t\t\t\t\t\t\t[-83.017473, 41.549211],\n\t\t\t\t\t\t\t[-83.016753, 41.548773],\n\t\t\t\t\t\t\t[-82.999916, 41.538534],\n\t\t\t\t\t\t\t[-82.999897, 41.538525],\n\t\t\t\t\t\t\t[-82.969850, 41.524327],\n\t\t\t\t\t\t\t[-82.969642, 41.524229],\n\t\t\t\t\t\t\t[-82.969574, 41.524210],\n\t\t\t\t\t\t\t[-82.958481, 41.521104],\n\t\t\t\t\t\t\t[-82.934369, 41.514353],\n\t\t\t\t\t\t\t[-82.897728, 41.519241],\n\t\t\t\t\t\t\t[-82.896854, 41.519541],\n\t\t\t\t\t\t\t[-82.888200, 41.522508],\n\t\t\t\t\t\t\t[-82.882305, 41.525770],\n\t\t\t\t\t\t\t[-82.875229, 41.529684],\n\t\t\t\t\t\t\t[-82.869422, 41.533962],\n\t\t\t\t\t\t\t[-82.866262, 41.537534],\n\t\t\t\t\t\t\t[-82.861323, 41.543116],\n\t\t\t\t\t\t\t[-82.857841, 41.547051],\n\t\t\t\t\t\t\t[-82.856770, 41.548262],\n\t\t\t\t\t\t\t[-82.856533, 41.550650],\n\t\t\t\t\t\t\t[-82.855197, 41.564114],\n\t\t\t\t\t\t\t[-82.856088, 41.566633],\n\t\t\t\t\t\t\t[-82.856647, 41.568216],\n\t\t\t\t\t\t\t[-82.858702, 41.574025],\n\t\t\t\t\t\t\t[-82.859531, 41.576371],\n\t\t\t\t\t\t\t[-82.857945, 41.578049],\n\t\t\t\t\t\t\t[-82.857316, 41.578714],\n\t\t\t\t\t\t\t[-82.856919, 41.579135],\n\t\t\t\t\t\t\t[-82.854263, 41.581945],\n\t\t\t\t\t\t\t[-82.852957, 41.583327],\n\t\t\t\t\t\t\t[-82.847657, 41.585639],\n\t\t\t\t\t\t\t[-82.834101, 41.587587],\n\t\t\t\t\t\t\t[-82.820207, 41.570664],\n\t\t\t\t\t\t\t[-82.794324, 41.546486],\n\t\t\t\t\t\t\t[-82.785496, 41.540675],\n\t\t\t\t\t\t\t[-82.772010, 41.540580],\n\t\t\t\t\t\t\t[-82.749907, 41.546470],\n\t\t\t\t\t\t\t[-82.739868, 41.545047],\n\t\t\t\t\t\t\t[-82.732886, 41.544057],\n\t\t\t\t\t\t\t[-82.731900, 41.543918],\n\t\t\t\t\t\t\t[-82.731628, 41.543879],\n\t\t\t\t\t\t\t[-82.730516, 41.543721],\n\t\t\t\t\t\t\t[-82.728489, 41.543434],\n\t\t\t\t\t\t\t[-82.727656, 41.543316],\n\t\t\t\t\t\t\t[-82.722069, 41.542524],\n\t\t\t\t\t\t\t[-82.720539, 41.542307],\n\t\t\t\t\t\t\t[-82.717878, 41.541930],\n\t\t\t\t\t\t\t[-82.717595, 41.541715],\n\t\t\t\t\t\t\t[-82.715227, 41.539913],\n\t\t\t\t\t\t\t[-82.711332, 41.536950],\n\t\t\t\t\t\t\t[-82.710935, 41.536648],\n\t\t\t\t\t\t\t[-82.710967, 41.536221],\n\t\t\t\t\t\t\t[-82.711632, 41.527201],\n\t\t\t\t\t\t\t[-82.716492, 41.522227],\n\t\t\t\t\t\t\t[-82.721914, 41.516677],\n\t\t\t\t\t\t\t[-82.719956, 41.510735],\n\t\t\t\t\t\t\t[-82.719811, 41.510296],\n\t\t\t\t\t\t\t[-82.713904, 41.501697],\n\t\t\t\t\t\t\t[-82.710013, 41.497590],\n\t\t\t\t\t\t\t[-82.694722, 41.493945],\n\t\t\t\t\t\t\t[-82.828317, 41.481802]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39145\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"145\",\n\t\t\t\t\"NAME\": \"Scioto\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 610.213000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.043620, 38.956939],\n\t\t\t\t\t\t[-82.807090, 38.948073],\n\t\t\t\t\t\t[-82.753391, 38.945373],\n\t\t\t\t\t\t[-82.760690, 38.854875],\n\t\t\t\t\t\t[-82.650039, 38.849073],\n\t\t\t\t\t\t[-82.706823, 38.677495],\n\t\t\t\t\t\t[-82.763895, 38.679974],\n\t\t\t\t\t\t[-82.740383, 38.597167],\n\t\t\t\t\t\t[-82.816012, 38.570733],\n\t\t\t\t\t\t[-82.820161, 38.572703],\n\t\t\t\t\t\t[-82.839538, 38.586159],\n\t\t\t\t\t\t[-82.847186, 38.595166],\n\t\t\t\t\t\t[-82.853554, 38.610926],\n\t\t\t\t\t\t[-82.869592, 38.678177],\n\t\t\t\t\t\t[-82.873492, 38.710077],\n\t\t\t\t\t\t[-82.870392, 38.722077],\n\t\t\t\t\t\t[-82.869992, 38.730477],\n\t\t\t\t\t\t[-82.871292, 38.739376],\n\t\t\t\t\t\t[-82.874466, 38.745346],\n\t\t\t\t\t\t[-82.875492, 38.747276],\n\t\t\t\t\t\t[-82.879492, 38.751476],\n\t\t\t\t\t\t[-82.889193, 38.756076],\n\t\t\t\t\t\t[-82.894193, 38.756576],\n\t\t\t\t\t\t[-82.923694, 38.750076],\n\t\t\t\t\t\t[-82.943147, 38.743280],\n\t\t\t\t\t\t[-82.968695, 38.728776],\n\t\t\t\t\t\t[-82.979395, 38.725976],\n\t\t\t\t\t\t[-83.011816, 38.730057],\n\t\t\t\t\t\t[-83.030702, 38.725720],\n\t\t\t\t\t\t[-83.030889, 38.725560],\n\t\t\t\t\t\t[-83.127652, 38.642451],\n\t\t\t\t\t\t[-83.135046, 38.631719],\n\t\t\t\t\t\t[-83.142836, 38.625076],\n\t\t\t\t\t\t[-83.156926, 38.620547],\n\t\t\t\t\t\t[-83.265769, 38.605278],\n\t\t\t\t\t\t[-83.270817, 39.015791],\n\t\t\t\t\t\t[-83.212107, 38.960148],\n\t\t\t\t\t\t[-83.043620, 38.956939]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39155\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"155\",\n\t\t\t\t\"NAME\": \"Trumbull\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 618.297000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.519345, 41.340740],\n\t\t\t\t\t\t[-80.519345, 41.340145],\n\t\t\t\t\t\t[-80.519293, 41.339654],\n\t\t\t\t\t\t[-80.519293, 41.339054],\n\t\t\t\t\t\t[-80.519311, 41.339052],\n\t\t\t\t\t\t[-80.519281, 41.337174],\n\t\t\t\t\t\t[-80.519281, 41.337145],\n\t\t\t\t\t\t[-80.519281, 41.335958],\n\t\t\t\t\t\t[-80.519265, 41.333495],\n\t\t\t\t\t\t[-80.519129, 41.312408],\n\t\t\t\t\t\t[-80.518794, 41.305509],\n\t\t\t\t\t\t[-80.518996, 41.268300],\n\t\t\t\t\t\t[-80.518993, 41.268155],\n\t\t\t\t\t\t[-80.518893, 41.265155],\n\t\t\t\t\t\t[-80.518693, 41.248855],\n\t\t\t\t\t\t[-80.518893, 41.232556],\n\t\t\t\t\t\t[-80.518893, 41.219357],\n\t\t\t\t\t\t[-80.518893, 41.219356],\n\t\t\t\t\t\t[-80.518830, 41.209213],\n\t\t\t\t\t\t[-80.519144, 41.171203],\n\t\t\t\t\t\t[-80.519115, 41.145520],\n\t\t\t\t\t\t[-80.519167, 41.133388],\n\t\t\t\t\t\t[-80.789472, 41.134159],\n\t\t\t\t\t\t[-81.002290, 41.134189],\n\t\t\t\t\t\t[-81.002880, 41.271842],\n\t\t\t\t\t\t[-81.003319, 41.347860],\n\t\t\t\t\t\t[-81.003194, 41.424482],\n\t\t\t\t\t\t[-81.003066, 41.425928],\n\t\t\t\t\t\t[-81.003125, 41.501685],\n\t\t\t\t\t\t[-80.519225, 41.499924],\n\t\t\t\t\t\t[-80.519209, 41.489013],\n\t\t\t\t\t\t[-80.519169, 41.462581],\n\t\t\t\t\t\t[-80.518993, 41.435454],\n\t\t\t\t\t\t[-80.518993, 41.416437],\n\t\t\t\t\t\t[-80.519025, 41.416438],\n\t\t\t\t\t\t[-80.519249, 41.378918],\n\t\t\t\t\t\t[-80.519217, 41.372006],\n\t\t\t\t\t\t[-80.519249, 41.361030],\n\t\t\t\t\t\t[-80.519297, 41.350833],\n\t\t\t\t\t\t[-80.519345, 41.340740]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30103\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"103\",\n\t\t\t\t\"NAME\": \"Treasure\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 977.398000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-107.738547, 46.481715],\n\t\t\t\t\t\t[-107.174607, 46.482340],\n\t\t\t\t\t\t[-107.153227, 46.395545],\n\t\t\t\t\t\t[-107.028378, 46.395409],\n\t\t\t\t\t\t[-107.007261, 46.307641],\n\t\t\t\t\t\t[-107.007451, 46.134084],\n\t\t\t\t\t\t[-106.938980, 46.136697],\n\t\t\t\t\t\t[-106.939095, 45.870089],\n\t\t\t\t\t\t[-107.052103, 45.870088],\n\t\t\t\t\t\t[-107.051803, 45.913788],\n\t\t\t\t\t\t[-107.176433, 45.913323],\n\t\t\t\t\t\t[-107.176311, 45.956788],\n\t\t\t\t\t\t[-107.424923, 45.956786],\n\t\t\t\t\t\t[-107.424889, 46.043396],\n\t\t\t\t\t\t[-107.511497, 46.043257],\n\t\t\t\t\t\t[-107.466381, 46.177535],\n\t\t\t\t\t\t[-107.612780, 46.308110],\n\t\t\t\t\t\t[-107.738547, 46.481715]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30105\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"105\",\n\t\t\t\t\"NAME\": \"Valley\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 4925.819000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-106.112108, 48.999279],\n\t\t\t\t\t\t[-106.151940, 48.823898],\n\t\t\t\t\t\t[-106.021358, 48.823975],\n\t\t\t\t\t\t[-106.021212, 48.563220],\n\t\t\t\t\t\t[-105.804432, 48.563318],\n\t\t\t\t\t\t[-105.804345, 48.219179],\n\t\t\t\t\t\t[-105.843462, 48.219030],\n\t\t\t\t\t\t[-105.843797, 48.010314],\n\t\t\t\t\t\t[-106.006176, 48.033689],\n\t\t\t\t\t\t[-106.229302, 48.026416],\n\t\t\t\t\t\t[-106.394163, 48.064726],\n\t\t\t\t\t\t[-106.418567, 47.957414],\n\t\t\t\t\t\t[-106.445793, 47.983016],\n\t\t\t\t\t\t[-106.609705, 47.777510],\n\t\t\t\t\t\t[-106.711813, 47.771809],\n\t\t\t\t\t\t[-106.751016, 47.729708],\n\t\t\t\t\t\t[-106.863822, 47.736508],\n\t\t\t\t\t\t[-106.891324, 47.676607],\n\t\t\t\t\t\t[-107.010862, 47.663140],\n\t\t\t\t\t\t[-107.247694, 47.661400],\n\t\t\t\t\t\t[-107.414886, 47.691677],\n\t\t\t\t\t\t[-107.404555, 48.218303],\n\t\t\t\t\t\t[-107.369899, 48.218294],\n\t\t\t\t\t\t[-107.369306, 48.305134],\n\t\t\t\t\t\t[-107.260593, 48.304750],\n\t\t\t\t\t\t[-107.260454, 48.393864],\n\t\t\t\t\t\t[-107.301073, 48.394000],\n\t\t\t\t\t\t[-107.301721, 48.480943],\n\t\t\t\t\t\t[-107.258190, 48.514825],\n\t\t\t\t\t\t[-107.193567, 48.509267],\n\t\t\t\t\t\t[-107.206426, 48.567989],\n\t\t\t\t\t\t[-107.206146, 48.912592],\n\t\t\t\t\t\t[-107.179865, 48.999559],\n\t\t\t\t\t\t[-106.625597, 48.999640],\n\t\t\t\t\t\t[-106.617539, 48.999583],\n\t\t\t\t\t\t[-106.518201, 48.999564],\n\t\t\t\t\t\t[-106.500592, 48.999756],\n\t\t\t\t\t\t[-106.374616, 48.999617],\n\t\t\t\t\t\t[-106.368151, 48.999503],\n\t\t\t\t\t\t[-106.274267, 48.999312],\n\t\t\t\t\t\t[-106.246210, 48.999258],\n\t\t\t\t\t\t[-106.243154, 48.999373],\n\t\t\t\t\t\t[-106.233987, 48.999423],\n\t\t\t\t\t\t[-106.112108, 48.999279]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US38077\",\n\t\t\t\t\"STATE\": \"38\",\n\t\t\t\t\"COUNTY\": \"077\",\n\t\t\t\t\"NAME\": \"Richland\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1435.779000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.739054, 46.543708],\n\t\t\t\t\t\t[-96.716438, 46.444567],\n\t\t\t\t\t\t[-96.721999, 46.439986],\n\t\t\t\t\t\t[-96.669794, 46.384644],\n\t\t\t\t\t\t[-96.631586, 46.353752],\n\t\t\t\t\t\t[-96.598233, 46.312563],\n\t\t\t\t\t\t[-96.599087, 46.263701],\n\t\t\t\t\t\t[-96.585647, 46.177309],\n\t\t\t\t\t\t[-96.578362, 46.170112],\n\t\t\t\t\t\t[-96.557952, 46.102442],\n\t\t\t\t\t\t[-96.554835, 46.084824],\n\t\t\t\t\t\t[-96.556940, 46.064601],\n\t\t\t\t\t\t[-96.559271, 46.058272],\n\t\t\t\t\t\t[-96.566295, 46.051416],\n\t\t\t\t\t\t[-96.577940, 46.026874],\n\t\t\t\t\t\t[-96.577326, 46.021757],\n\t\t\t\t\t\t[-96.570350, 45.963595],\n\t\t\t\t\t\t[-96.563280, 45.935238],\n\t\t\t\t\t\t[-96.576897, 45.935259],\n\t\t\t\t\t\t[-96.597432, 45.935209],\n\t\t\t\t\t\t[-96.607142, 45.935301],\n\t\t\t\t\t\t[-96.618295, 45.935407],\n\t\t\t\t\t\t[-96.639066, 45.935318],\n\t\t\t\t\t\t[-96.659895, 45.935560],\n\t\t\t\t\t\t[-96.680646, 45.935716],\n\t\t\t\t\t\t[-96.701313, 45.935807],\n\t\t\t\t\t\t[-96.791505, 45.935857],\n\t\t\t\t\t\t[-96.998652, 45.935700],\n\t\t\t\t\t\t[-97.019596, 45.935382],\n\t\t\t\t\t\t[-97.118053, 45.935485],\n\t\t\t\t\t\t[-97.144987, 45.935278],\n\t\t\t\t\t\t[-97.228291, 45.935141],\n\t\t\t\t\t\t[-97.259632, 45.997185],\n\t\t\t\t\t\t[-97.259339, 46.282197],\n\t\t\t\t\t\t[-97.280568, 46.282321],\n\t\t\t\t\t\t[-97.279948, 46.629348],\n\t\t\t\t\t\t[-96.783014, 46.630647],\n\t\t\t\t\t\t[-96.783009, 46.630418],\n\t\t\t\t\t\t[-96.783003, 46.630405],\n\t\t\t\t\t\t[-96.739054, 46.543708]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US38085\",\n\t\t\t\t\"STATE\": \"38\",\n\t\t\t\t\"COUNTY\": \"085\",\n\t\t\t\t\"NAME\": \"Sioux\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1094.094000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.511949, 45.943654],\n\t\t\t\t\t\t[-100.627681, 45.943642],\n\t\t\t\t\t\t[-100.650820, 45.943680],\n\t\t\t\t\t\t[-100.720865, 45.944024],\n\t\t\t\t\t\t[-100.750407, 45.943649],\n\t\t\t\t\t\t[-100.762072, 45.943803],\n\t\t\t\t\t\t[-100.762110, 45.943767],\n\t\t\t\t\t\t[-100.769751, 45.943766],\n\t\t\t\t\t\t[-100.890176, 45.943861],\n\t\t\t\t\t\t[-100.935582, 45.943757],\n\t\t\t\t\t\t[-100.938989, 45.943848],\n\t\t\t\t\t\t[-100.964411, 45.943822],\n\t\t\t\t\t\t[-100.976565, 45.943864],\n\t\t\t\t\t\t[-100.980693, 45.944068],\n\t\t\t\t\t\t[-101.101334, 45.943841],\n\t\t\t\t\t\t[-101.106826, 45.943984],\n\t\t\t\t\t\t[-101.142571, 45.943841],\n\t\t\t\t\t\t[-101.146076, 45.943842],\n\t\t\t\t\t\t[-101.163241, 45.943915],\n\t\t\t\t\t\t[-101.171074, 45.943959],\n\t\t\t\t\t\t[-101.175693, 45.943983],\n\t\t\t\t\t\t[-101.179103, 45.943896],\n\t\t\t\t\t\t[-101.203787, 45.943895],\n\t\t\t\t\t\t[-101.224006, 45.944025],\n\t\t\t\t\t\t[-101.271524, 45.944209],\n\t\t\t\t\t\t[-101.287223, 45.944107],\n\t\t\t\t\t\t[-101.313272, 45.944164],\n\t\t\t\t\t\t[-101.333871, 45.944166],\n\t\t\t\t\t\t[-101.365283, 45.944092],\n\t\t\t\t\t\t[-101.370690, 45.944198],\n\t\t\t\t\t\t[-101.373769, 45.944265],\n\t\t\t\t\t\t[-101.557276, 45.944100],\n\t\t\t\t\t\t[-101.562156, 45.944237],\n\t\t\t\t\t\t[-101.628597, 45.944293],\n\t\t\t\t\t\t[-101.657631, 45.944387],\n\t\t\t\t\t\t[-101.680574, 45.944329],\n\t\t\t\t\t\t[-101.681819, 45.944444],\n\t\t\t\t\t\t[-101.708785, 45.944348],\n\t\t\t\t\t\t[-101.723380, 45.944187],\n\t\t\t\t\t\t[-101.730069, 45.944356],\n\t\t\t\t\t\t[-101.758611, 45.944478],\n\t\t\t\t\t\t[-101.764277, 45.944412],\n\t\t\t\t\t\t[-101.765293, 45.944367],\n\t\t\t\t\t\t[-101.766177, 45.944322],\n\t\t\t\t\t\t[-101.790054, 45.944442],\n\t\t\t\t\t\t[-101.794606, 45.944397],\n\t\t\t\t\t\t[-101.832991, 45.944464],\n\t\t\t\t\t\t[-101.852642, 45.944457],\n\t\t\t\t\t\t[-101.886838, 45.944559],\n\t\t\t\t\t\t[-101.957439, 45.944484],\n\t\t\t\t\t\t[-101.973749, 45.944456],\n\t\t\t\t\t\t[-101.989501, 45.944472],\n\t\t\t\t\t\t[-101.992187, 45.944471],\n\t\t\t\t\t\t[-101.998618, 45.944556],\n\t\t\t\t\t\t[-101.998575, 46.053461],\n\t\t\t\t\t\t[-101.849355, 46.073275],\n\t\t\t\t\t\t[-101.842108, 46.029136],\n\t\t\t\t\t\t[-101.554185, 46.006836],\n\t\t\t\t\t\t[-101.190372, 46.147847],\n\t\t\t\t\t\t[-101.198073, 46.183770],\n\t\t\t\t\t\t[-101.025662, 46.284219],\n\t\t\t\t\t\t[-100.918950, 46.394983],\n\t\t\t\t\t\t[-100.721261, 46.390084],\n\t\t\t\t\t\t[-100.590199, 46.427894],\n\t\t\t\t\t\t[-100.551199, 46.363494],\n\t\t\t\t\t\t[-100.558549, 46.249993],\n\t\t\t\t\t\t[-100.629145, 46.145608],\n\t\t\t\t\t\t[-100.614504, 46.071796],\n\t\t\t\t\t\t[-100.511949, 45.943654]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US38099\",\n\t\t\t\t\"STATE\": \"38\",\n\t\t\t\t\"COUNTY\": \"099\",\n\t\t\t\t\"NAME\": \"Walsh\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1281.931000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.318098, 48.543773],\n\t\t\t\t\t\t[-97.927154, 48.543124],\n\t\t\t\t\t\t[-97.162466, 48.542250],\n\t\t\t\t\t\t[-97.161110, 48.543155],\n\t\t\t\t\t\t[-97.150541, 48.539449],\n\t\t\t\t\t\t[-97.126770, 48.520191],\n\t\t\t\t\t\t[-97.123399, 48.421201],\n\t\t\t\t\t\t[-97.131479, 48.406586],\n\t\t\t\t\t\t[-97.145693, 48.397431],\n\t\t\t\t\t\t[-97.136373, 48.352393],\n\t\t\t\t\t\t[-97.126745, 48.342140],\n\t\t\t\t\t\t[-97.115581, 48.323928],\n\t\t\t\t\t\t[-97.116570, 48.279661],\n\t\t\t\t\t\t[-97.129930, 48.249731],\n\t\t\t\t\t\t[-97.134534, 48.249737],\n\t\t\t\t\t\t[-97.143148, 48.246708],\n\t\t\t\t\t\t[-97.147170, 48.242966],\n\t\t\t\t\t\t[-97.147401, 48.193779],\n\t\t\t\t\t\t[-97.903434, 48.194897],\n\t\t\t\t\t\t[-98.292184, 48.195177],\n\t\t\t\t\t\t[-98.318098, 48.543773]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US38105\",\n\t\t\t\t\"STATE\": \"38\",\n\t\t\t\t\"COUNTY\": \"105\",\n\t\t\t\t\"NAME\": \"Williams\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2077.401000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-104.046913, 48.389433],\n\t\t\t\t\t\t[-104.046969, 48.390675],\n\t\t\t\t\t\t[-104.047134, 48.411057],\n\t\t\t\t\t\t[-104.046960, 48.421065],\n\t\t\t\t\t\t[-104.047090, 48.445903],\n\t\t\t\t\t\t[-104.047192, 48.447251],\n\t\t\t\t\t\t[-104.047294, 48.452529],\n\t\t\t\t\t\t[-104.047259, 48.452941],\n\t\t\t\t\t\t[-104.047392, 48.467086],\n\t\t\t\t\t\t[-104.047555, 48.494140],\n\t\t\t\t\t\t[-104.047675, 48.517852],\n\t\t\t\t\t\t[-104.047513, 48.525913],\n\t\t\t\t\t\t[-104.047876, 48.530798],\n\t\t\t\t\t\t[-104.047648, 48.531489],\n\t\t\t\t\t\t[-104.047783, 48.539737],\n\t\t\t\t\t\t[-104.047811, 48.562770],\n\t\t\t\t\t\t[-104.047974, 48.591606],\n\t\t\t\t\t\t[-104.048212, 48.599055],\n\t\t\t\t\t\t[-104.047930, 48.620190],\n\t\t\t\t\t\t[-104.047586, 48.625644],\n\t\t\t\t\t\t[-104.047620, 48.627015],\n\t\t\t\t\t\t[-104.047582, 48.633976],\n\t\t\t\t\t\t[-102.885775, 48.633298],\n\t\t\t\t\t\t[-102.886015, 48.561179],\n\t\t\t\t\t\t[-102.885775, 48.560628],\n\t\t\t\t\t\t[-102.885763, 48.546390],\n\t\t\t\t\t\t[-102.885737, 48.372578],\n\t\t\t\t\t\t[-102.828061, 48.372920],\n\t\t\t\t\t\t[-102.828477, 48.123664],\n\t\t\t\t\t\t[-103.107083, 48.146494],\n\t\t\t\t\t\t[-103.201890, 48.135208],\n\t\t\t\t\t\t[-103.234865, 48.061923],\n\t\t\t\t\t\t[-103.501172, 48.005925],\n\t\t\t\t\t\t[-103.584774, 48.054124],\n\t\t\t\t\t\t[-103.548572, 48.087724],\n\t\t\t\t\t\t[-103.597044, 48.134410],\n\t\t\t\t\t\t[-103.742216, 48.093403],\n\t\t\t\t\t\t[-103.800817, 47.994269],\n\t\t\t\t\t\t[-103.856306, 48.015072],\n\t\t\t\t\t\t[-103.919789, 47.955950],\n\t\t\t\t\t\t[-104.044120, 47.996107],\n\t\t\t\t\t\t[-104.045399, 48.164390],\n\t\t\t\t\t\t[-104.045498, 48.176249],\n\t\t\t\t\t\t[-104.045424, 48.192473],\n\t\t\t\t\t\t[-104.045560, 48.193913],\n\t\t\t\t\t\t[-104.045692, 48.241415],\n\t\t\t\t\t\t[-104.045729, 48.244586],\n\t\t\t\t\t\t[-104.045645, 48.246179],\n\t\t\t\t\t\t[-104.045861, 48.255097],\n\t\t\t\t\t\t[-104.046039, 48.256761],\n\t\t\t\t\t\t[-104.046332, 48.342290],\n\t\t\t\t\t\t[-104.046371, 48.374154],\n\t\t\t\t\t\t[-104.046654, 48.374773],\n\t\t\t\t\t\t[-104.046913, 48.389429],\n\t\t\t\t\t\t[-104.046913, 48.389433]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29031\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"031\",\n\t\t\t\t\"NAME\": \"Cape Girardeau\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 578.535000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.491222, 37.248629],\n\t\t\t\t\t\t[-89.620256, 37.233008],\n\t\t\t\t\t\t[-89.765211, 37.126066],\n\t\t\t\t\t\t[-89.866627, 37.126227],\n\t\t\t\t\t\t[-89.861123, 37.599286],\n\t\t\t\t\t\t[-89.603574, 37.592056],\n\t\t\t\t\t\t[-89.521523, 37.566208],\n\t\t\t\t\t\t[-89.521697, 37.557325],\n\t\t\t\t\t\t[-89.517051, 37.537278],\n\t\t\t\t\t\t[-89.492051, 37.494008],\n\t\t\t\t\t\t[-89.475525, 37.471388],\n\t\t\t\t\t\t[-89.450969, 37.450069],\n\t\t\t\t\t\t[-89.439769, 37.437200],\n\t\t\t\t\t\t[-89.425940, 37.407471],\n\t\t\t\t\t\t[-89.421054, 37.387668],\n\t\t\t\t\t\t[-89.428185, 37.356158],\n\t\t\t\t\t\t[-89.432836, 37.347056],\n\t\t\t\t\t\t[-89.436040, 37.344441],\n\t\t\t\t\t\t[-89.447556, 37.340475],\n\t\t\t\t\t\t[-89.474569, 37.338165],\n\t\t\t\t\t\t[-89.484598, 37.334832],\n\t\t\t\t\t\t[-89.489005, 37.333368],\n\t\t\t\t\t\t[-89.511842, 37.310825],\n\t\t\t\t\t\t[-89.518393, 37.289354],\n\t\t\t\t\t\t[-89.517032, 37.281920],\n\t\t\t\t\t\t[-89.491222, 37.248629]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29037\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"037\",\n\t\t\t\t\"NAME\": \"Cass\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 696.836000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.399447, 38.838809],\n\t\t\t\t\t\t[-94.120778, 38.833006],\n\t\t\t\t\t\t[-94.119096, 38.833167],\n\t\t\t\t\t\t[-94.119664, 38.568712],\n\t\t\t\t\t\t[-94.064317, 38.567380],\n\t\t\t\t\t\t[-94.065713, 38.447087],\n\t\t\t\t\t\t[-94.312170, 38.471496],\n\t\t\t\t\t\t[-94.612865, 38.477602],\n\t\t\t\t\t\t[-94.612696, 38.483154],\n\t\t\t\t\t\t[-94.612726, 38.484367],\n\t\t\t\t\t\t[-94.612644, 38.491644],\n\t\t\t\t\t\t[-94.612272, 38.547917],\n\t\t\t\t\t\t[-94.612157, 38.549817],\n\t\t\t\t\t\t[-94.612176, 38.576546],\n\t\t\t\t\t\t[-94.611902, 38.580110],\n\t\t\t\t\t\t[-94.611887, 38.580139],\n\t\t\t\t\t\t[-94.611908, 38.609272],\n\t\t\t\t\t\t[-94.611858, 38.620485],\n\t\t\t\t\t\t[-94.611602, 38.635384],\n\t\t\t\t\t\t[-94.609509, 38.738102],\n\t\t\t\t\t\t[-94.609456, 38.740700],\n\t\t\t\t\t\t[-94.609399, 38.742440],\n\t\t\t\t\t\t[-94.609039, 38.760611],\n\t\t\t\t\t\t[-94.608041, 38.811064],\n\t\t\t\t\t\t[-94.608033, 38.847207],\n\t\t\t\t\t\t[-94.399447, 38.838809]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36047\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"047\",\n\t\t\t\t\"NAME\": \"Kings\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 70.816000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-73.868917, 40.695150],\n\t\t\t\t\t\t[-73.866027, 40.681918],\n\t\t\t\t\t\t[-73.855660, 40.663802],\n\t\t\t\t\t\t[-73.860490, 40.654655],\n\t\t\t\t\t\t[-73.849852, 40.588669],\n\t\t\t\t\t\t[-73.938598, 40.566161],\n\t\t\t\t\t\t[-73.944558, 40.568716],\n\t\t\t\t\t\t[-73.950050, 40.573363],\n\t\t\t\t\t\t[-73.959380, 40.572682],\n\t\t\t\t\t\t[-73.991346, 40.570350],\n\t\t\t\t\t\t[-74.002056, 40.570623],\n\t\t\t\t\t\t[-74.009030, 40.572846],\n\t\t\t\t\t\t[-74.012022, 40.574528],\n\t\t\t\t\t\t[-74.012996, 40.578169],\n\t\t\t\t\t\t[-74.007276, 40.583616],\n\t\t\t\t\t\t[-74.006350, 40.584767],\n\t\t\t\t\t\t[-74.001591, 40.590684],\n\t\t\t\t\t\t[-74.003281, 40.595754],\n\t\t\t\t\t\t[-74.010926, 40.600789],\n\t\t\t\t\t\t[-74.032856, 40.604421],\n\t\t\t\t\t\t[-74.039590, 40.612934],\n\t\t\t\t\t\t[-74.042412, 40.624847],\n\t\t\t\t\t\t[-74.038336, 40.637074],\n\t\t\t\t\t\t[-74.035868, 40.640776],\n\t\t\t\t\t\t[-74.032066, 40.646479],\n\t\t\t\t\t\t[-74.018272, 40.659019],\n\t\t\t\t\t\t[-74.020467, 40.678770],\n\t\t\t\t\t\t[-74.022911, 40.681267],\n\t\t\t\t\t\t[-74.019347, 40.679548],\n\t\t\t\t\t\t[-74.008117, 40.686615],\n\t\t\t\t\t\t[-74.003946, 40.689047],\n\t\t\t\t\t\t[-73.994648, 40.704135],\n\t\t\t\t\t\t[-73.969845, 40.709047],\n\t\t\t\t\t\t[-73.962645, 40.722747],\n\t\t\t\t\t\t[-73.961543, 40.723876],\n\t\t\t\t\t\t[-73.962795, 40.737674],\n\t\t\t\t\t\t[-73.961188, 40.737091],\n\t\t\t\t\t\t[-73.954732, 40.739292],\n\t\t\t\t\t\t[-73.947064, 40.737516],\n\t\t\t\t\t\t[-73.937339, 40.729920],\n\t\t\t\t\t\t[-73.929223, 40.727849],\n\t\t\t\t\t\t[-73.923865, 40.720056],\n\t\t\t\t\t\t[-73.921473, 40.709004],\n\t\t\t\t\t\t[-73.912058, 40.703446],\n\t\t\t\t\t\t[-73.904425, 40.695671],\n\t\t\t\t\t\t[-73.896497, 40.682447],\n\t\t\t\t\t\t[-73.889575, 40.684180],\n\t\t\t\t\t\t[-73.874021, 40.694191],\n\t\t\t\t\t\t[-73.868917, 40.695150]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36053\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"053\",\n\t\t\t\t\"NAME\": \"Madison\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 654.842000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-75.884275, 43.155562],\n\t\t\t\t\t\t[-75.737774, 43.164673],\n\t\t\t\t\t\t[-75.552774, 43.037554],\n\t\t\t\t\t\t[-75.544211, 42.931770],\n\t\t\t\t\t\t[-75.444173, 42.933089],\n\t\t\t\t\t\t[-75.437167, 42.863319],\n\t\t\t\t\t\t[-75.247963, 42.871604],\n\t\t\t\t\t\t[-75.295877, 42.744106],\n\t\t\t\t\t\t[-75.889832, 42.723844],\n\t\t\t\t\t\t[-75.896079, 42.790964],\n\t\t\t\t\t\t[-75.917189, 43.085779],\n\t\t\t\t\t\t[-75.975588, 43.091278],\n\t\t\t\t\t\t[-75.975849, 43.094606],\n\t\t\t\t\t\t[-75.974724, 43.096919],\n\t\t\t\t\t\t[-75.976286, 43.098489],\n\t\t\t\t\t\t[-75.975641, 43.100336],\n\t\t\t\t\t\t[-75.976396, 43.103038],\n\t\t\t\t\t\t[-75.974149, 43.103563],\n\t\t\t\t\t\t[-75.971524, 43.104914],\n\t\t\t\t\t\t[-75.972988, 43.106379],\n\t\t\t\t\t\t[-75.972030, 43.107522],\n\t\t\t\t\t\t[-75.970349, 43.107567],\n\t\t\t\t\t\t[-75.971725, 43.109186],\n\t\t\t\t\t\t[-75.969201, 43.110504],\n\t\t\t\t\t\t[-75.965430, 43.116721],\n\t\t\t\t\t\t[-75.965594, 43.119552],\n\t\t\t\t\t\t[-75.964695, 43.119811],\n\t\t\t\t\t\t[-75.963383, 43.119043],\n\t\t\t\t\t\t[-75.963517, 43.117563],\n\t\t\t\t\t\t[-75.959703, 43.115459],\n\t\t\t\t\t\t[-75.956023, 43.115148],\n\t\t\t\t\t\t[-75.955995, 43.116230],\n\t\t\t\t\t\t[-75.954400, 43.116857],\n\t\t\t\t\t\t[-75.955843, 43.118314],\n\t\t\t\t\t\t[-75.957416, 43.118194],\n\t\t\t\t\t\t[-75.955950, 43.119515],\n\t\t\t\t\t\t[-75.957130, 43.120241],\n\t\t\t\t\t\t[-75.959414, 43.119808],\n\t\t\t\t\t\t[-75.957010, 43.121973],\n\t\t\t\t\t\t[-75.958339, 43.123728],\n\t\t\t\t\t\t[-75.960494, 43.122969],\n\t\t\t\t\t\t[-75.958817, 43.125112],\n\t\t\t\t\t\t[-75.958833, 43.128093],\n\t\t\t\t\t\t[-75.956763, 43.126804],\n\t\t\t\t\t\t[-75.954592, 43.127986],\n\t\t\t\t\t\t[-75.952421, 43.130705],\n\t\t\t\t\t\t[-75.950287, 43.132551],\n\t\t\t\t\t\t[-75.953277, 43.133363],\n\t\t\t\t\t\t[-75.950066, 43.134376],\n\t\t\t\t\t\t[-75.950296, 43.135195],\n\t\t\t\t\t\t[-75.953405, 43.135459],\n\t\t\t\t\t\t[-75.954803, 43.134008],\n\t\t\t\t\t\t[-75.957129, 43.136297],\n\t\t\t\t\t\t[-75.958196, 43.135082],\n\t\t\t\t\t\t[-75.957184, 43.133947],\n\t\t\t\t\t\t[-75.960459, 43.132840],\n\t\t\t\t\t\t[-75.961672, 43.133941],\n\t\t\t\t\t\t[-75.963961, 43.133799],\n\t\t\t\t\t\t[-75.964403, 43.135128],\n\t\t\t\t\t\t[-75.967318, 43.134819],\n\t\t\t\t\t\t[-75.969221, 43.136765],\n\t\t\t\t\t\t[-75.969920, 43.138630],\n\t\t\t\t\t\t[-75.972347, 43.140476],\n\t\t\t\t\t\t[-75.975318, 43.138939],\n\t\t\t\t\t\t[-75.973837, 43.137342],\n\t\t\t\t\t\t[-75.975602, 43.136169],\n\t\t\t\t\t\t[-75.977349, 43.136343],\n\t\t\t\t\t\t[-75.976780, 43.137905],\n\t\t\t\t\t\t[-75.977515, 43.139791],\n\t\t\t\t\t\t[-75.976964, 43.140754],\n\t\t\t\t\t\t[-75.972648, 43.142995],\n\t\t\t\t\t\t[-75.971783, 43.143847],\n\t\t\t\t\t\t[-75.972702, 43.145473],\n\t\t\t\t\t\t[-75.973342, 43.149225],\n\t\t\t\t\t\t[-75.971235, 43.154639],\n\t\t\t\t\t\t[-75.972903, 43.155894],\n\t\t\t\t\t\t[-75.977068, 43.157646],\n\t\t\t\t\t\t[-75.976752, 43.160269],\n\t\t\t\t\t\t[-75.974629, 43.161917],\n\t\t\t\t\t\t[-75.974380, 43.163175],\n\t\t\t\t\t\t[-75.977880, 43.164591],\n\t\t\t\t\t\t[-75.979131, 43.166262],\n\t\t\t\t\t\t[-75.978319, 43.167706],\n\t\t\t\t\t\t[-75.981008, 43.167704],\n\t\t\t\t\t\t[-75.979478, 43.170698],\n\t\t\t\t\t\t[-75.982668, 43.173631],\n\t\t\t\t\t\t[-75.986514, 43.171572],\n\t\t\t\t\t\t[-75.988447, 43.172616],\n\t\t\t\t\t\t[-75.990028, 43.171527],\n\t\t\t\t\t\t[-75.991933, 43.172953],\n\t\t\t\t\t\t[-75.992635, 43.173849],\n\t\t\t\t\t\t[-75.989672, 43.179591],\n\t\t\t\t\t\t[-75.990766, 43.180917],\n\t\t\t\t\t\t[-75.991437, 43.183250],\n\t\t\t\t\t\t[-75.993394, 43.183376],\n\t\t\t\t\t\t[-75.992428, 43.185164],\n\t\t\t\t\t\t[-75.986894, 43.183938],\n\t\t\t\t\t\t[-75.979489, 43.177401],\n\t\t\t\t\t\t[-75.973438, 43.179898],\n\t\t\t\t\t\t[-75.959359, 43.180389],\n\t\t\t\t\t\t[-75.955599, 43.172182],\n\t\t\t\t\t\t[-75.932778, 43.176583],\n\t\t\t\t\t\t[-75.927453, 43.162738],\n\t\t\t\t\t\t[-75.884275, 43.155562]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36061\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"061\",\n\t\t\t\t\"NAME\": \"New York\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 22.829000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-74.040860, 40.700117],\n\t\t\t\t\t\t\t[-74.040018, 40.700678],\n\t\t\t\t\t\t\t[-74.039401, 40.700454],\n\t\t\t\t\t\t\t[-74.037998, 40.698995],\n\t\t\t\t\t\t\t[-74.043441, 40.689680],\n\t\t\t\t\t\t\t[-74.044451, 40.688445],\n\t\t\t\t\t\t\t[-74.046359, 40.689175],\n\t\t\t\t\t\t\t[-74.047313, 40.690466],\n\t\t\t\t\t\t\t[-74.046920, 40.691139],\n\t\t\t\t\t\t\t[-74.040860, 40.700117]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-73.962795, 40.737674],\n\t\t\t\t\t\t\t[-73.961543, 40.723876],\n\t\t\t\t\t\t\t[-73.962645, 40.722747],\n\t\t\t\t\t\t\t[-73.969845, 40.709047],\n\t\t\t\t\t\t\t[-73.994648, 40.704135],\n\t\t\t\t\t\t\t[-74.003946, 40.689047],\n\t\t\t\t\t\t\t[-74.008117, 40.686615],\n\t\t\t\t\t\t\t[-74.019347, 40.679548],\n\t\t\t\t\t\t\t[-74.022911, 40.681267],\n\t\t\t\t\t\t\t[-74.023982, 40.682360],\n\t\t\t\t\t\t\t[-74.024827, 40.687007],\n\t\t\t\t\t\t\t[-74.021721, 40.693504],\n\t\t\t\t\t\t\t[-74.018490, 40.695457],\n\t\t\t\t\t\t\t[-74.016800, 40.701794],\n\t\t\t\t\t\t\t[-74.019526, 40.706985],\n\t\t\t\t\t\t\t[-74.024543, 40.709436],\n\t\t\t\t\t\t\t[-74.013784, 40.756601],\n\t\t\t\t\t\t\t[-74.009184, 40.763601],\n\t\t\t\t\t\t\t[-74.000905, 40.776488],\n\t\t\t\t\t\t\t[-73.993029, 40.788746],\n\t\t\t\t\t\t\t[-73.986864, 40.798344],\n\t\t\t\t\t\t\t[-73.948281, 40.858399],\n\t\t\t\t\t\t\t[-73.938081, 40.874699],\n\t\t\t\t\t\t\t[-73.933408, 40.882075],\n\t\t\t\t\t\t\t[-73.915200, 40.875581],\n\t\t\t\t\t\t\t[-73.911405, 40.879278],\n\t\t\t\t\t\t\t[-73.907105, 40.876277],\n\t\t\t\t\t\t\t[-73.907000, 40.873455],\n\t\t\t\t\t\t\t[-73.912506, 40.796180],\n\t\t\t\t\t\t\t[-73.910551, 40.790988],\n\t\t\t\t\t\t\t[-73.916316, 40.786601],\n\t\t\t\t\t\t\t[-73.927970, 40.776762],\n\t\t\t\t\t\t\t[-73.935080, 40.779218],\n\t\t\t\t\t\t\t[-73.938399, 40.774606],\n\t\t\t\t\t\t\t[-73.938076, 40.772551],\n\t\t\t\t\t\t\t[-73.935190, 40.771745],\n\t\t\t\t\t\t\t[-73.936536, 40.769835],\n\t\t\t\t\t\t\t[-73.940844, 40.767399],\n\t\t\t\t\t\t\t[-73.943951, 40.764434],\n\t\t\t\t\t\t\t[-73.954920, 40.751509],\n\t\t\t\t\t\t\t[-73.958300, 40.745731],\n\t\t\t\t\t\t\t[-73.961544, 40.743081],\n\t\t\t\t\t\t\t[-73.962795, 40.737674]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36067\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"067\",\n\t\t\t\t\"NAME\": \"Onondaga\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 778.390000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.499312, 43.097949],\n\t\t\t\t\t\t[-76.479224, 43.227519],\n\t\t\t\t\t\t[-76.258951, 43.237468],\n\t\t\t\t\t\t[-76.202944, 43.271605],\n\t\t\t\t\t\t[-75.993394, 43.183376],\n\t\t\t\t\t\t[-75.991437, 43.183250],\n\t\t\t\t\t\t[-75.990766, 43.180917],\n\t\t\t\t\t\t[-75.989672, 43.179591],\n\t\t\t\t\t\t[-75.992635, 43.173849],\n\t\t\t\t\t\t[-75.991933, 43.172953],\n\t\t\t\t\t\t[-75.990028, 43.171527],\n\t\t\t\t\t\t[-75.988447, 43.172616],\n\t\t\t\t\t\t[-75.986514, 43.171572],\n\t\t\t\t\t\t[-75.982668, 43.173631],\n\t\t\t\t\t\t[-75.979478, 43.170698],\n\t\t\t\t\t\t[-75.981008, 43.167704],\n\t\t\t\t\t\t[-75.978319, 43.167706],\n\t\t\t\t\t\t[-75.979131, 43.166262],\n\t\t\t\t\t\t[-75.977880, 43.164591],\n\t\t\t\t\t\t[-75.974380, 43.163175],\n\t\t\t\t\t\t[-75.974629, 43.161917],\n\t\t\t\t\t\t[-75.976752, 43.160269],\n\t\t\t\t\t\t[-75.977068, 43.157646],\n\t\t\t\t\t\t[-75.972903, 43.155894],\n\t\t\t\t\t\t[-75.971235, 43.154639],\n\t\t\t\t\t\t[-75.973342, 43.149225],\n\t\t\t\t\t\t[-75.972702, 43.145473],\n\t\t\t\t\t\t[-75.971783, 43.143847],\n\t\t\t\t\t\t[-75.972648, 43.142995],\n\t\t\t\t\t\t[-75.976964, 43.140754],\n\t\t\t\t\t\t[-75.977515, 43.139791],\n\t\t\t\t\t\t[-75.976780, 43.137905],\n\t\t\t\t\t\t[-75.977349, 43.136343],\n\t\t\t\t\t\t[-75.975602, 43.136169],\n\t\t\t\t\t\t[-75.973837, 43.137342],\n\t\t\t\t\t\t[-75.975318, 43.138939],\n\t\t\t\t\t\t[-75.972347, 43.140476],\n\t\t\t\t\t\t[-75.969920, 43.138630],\n\t\t\t\t\t\t[-75.969221, 43.136765],\n\t\t\t\t\t\t[-75.967318, 43.134819],\n\t\t\t\t\t\t[-75.964403, 43.135128],\n\t\t\t\t\t\t[-75.963961, 43.133799],\n\t\t\t\t\t\t[-75.961672, 43.133941],\n\t\t\t\t\t\t[-75.960459, 43.132840],\n\t\t\t\t\t\t[-75.957184, 43.133947],\n\t\t\t\t\t\t[-75.958196, 43.135082],\n\t\t\t\t\t\t[-75.957129, 43.136297],\n\t\t\t\t\t\t[-75.954803, 43.134008],\n\t\t\t\t\t\t[-75.953405, 43.135459],\n\t\t\t\t\t\t[-75.950296, 43.135195],\n\t\t\t\t\t\t[-75.950066, 43.134376],\n\t\t\t\t\t\t[-75.953277, 43.133363],\n\t\t\t\t\t\t[-75.950287, 43.132551],\n\t\t\t\t\t\t[-75.952421, 43.130705],\n\t\t\t\t\t\t[-75.954592, 43.127986],\n\t\t\t\t\t\t[-75.956763, 43.126804],\n\t\t\t\t\t\t[-75.958833, 43.128093],\n\t\t\t\t\t\t[-75.958817, 43.125112],\n\t\t\t\t\t\t[-75.960494, 43.122969],\n\t\t\t\t\t\t[-75.958339, 43.123728],\n\t\t\t\t\t\t[-75.957010, 43.121973],\n\t\t\t\t\t\t[-75.959414, 43.119808],\n\t\t\t\t\t\t[-75.957130, 43.120241],\n\t\t\t\t\t\t[-75.955950, 43.119515],\n\t\t\t\t\t\t[-75.957416, 43.118194],\n\t\t\t\t\t\t[-75.955843, 43.118314],\n\t\t\t\t\t\t[-75.954400, 43.116857],\n\t\t\t\t\t\t[-75.955995, 43.116230],\n\t\t\t\t\t\t[-75.956023, 43.115148],\n\t\t\t\t\t\t[-75.959703, 43.115459],\n\t\t\t\t\t\t[-75.963517, 43.117563],\n\t\t\t\t\t\t[-75.963383, 43.119043],\n\t\t\t\t\t\t[-75.964695, 43.119811],\n\t\t\t\t\t\t[-75.965594, 43.119552],\n\t\t\t\t\t\t[-75.965430, 43.116721],\n\t\t\t\t\t\t[-75.969201, 43.110504],\n\t\t\t\t\t\t[-75.971725, 43.109186],\n\t\t\t\t\t\t[-75.970349, 43.107567],\n\t\t\t\t\t\t[-75.972030, 43.107522],\n\t\t\t\t\t\t[-75.972988, 43.106379],\n\t\t\t\t\t\t[-75.971524, 43.104914],\n\t\t\t\t\t\t[-75.974149, 43.103563],\n\t\t\t\t\t\t[-75.976396, 43.103038],\n\t\t\t\t\t\t[-75.975641, 43.100336],\n\t\t\t\t\t\t[-75.976286, 43.098489],\n\t\t\t\t\t\t[-75.974724, 43.096919],\n\t\t\t\t\t\t[-75.975849, 43.094606],\n\t\t\t\t\t\t[-75.975588, 43.091278],\n\t\t\t\t\t\t[-75.917189, 43.085779],\n\t\t\t\t\t\t[-75.896079, 42.790964],\n\t\t\t\t\t\t[-76.274673, 42.771257],\n\t\t\t\t\t\t[-76.356974, 42.849450],\n\t\t\t\t\t\t[-76.450738, 42.845760],\n\t\t\t\t\t\t[-76.462999, 43.006316],\n\t\t\t\t\t\t[-76.499312, 43.097949]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US41045\",\n\t\t\t\t\"STATE\": \"41\",\n\t\t\t\t\"COUNTY\": \"045\",\n\t\t\t\t\"NAME\": \"Malheur\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 9887.532000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-116.961535, 43.918388],\n\t\t\t\t\t\t[-116.979186, 43.879973],\n\t\t\t\t\t\t[-116.982482, 43.872799],\n\t\t\t\t\t\t[-116.996504, 43.864714],\n\t\t\t\t\t\t[-117.026634, 43.808104],\n\t\t\t\t\t\t[-117.026651, 43.733935],\n\t\t\t\t\t\t[-117.026841, 43.732905],\n\t\t\t\t\t\t[-117.026725, 43.714815],\n\t\t\t\t\t\t[-117.026825, 43.706193],\n\t\t\t\t\t\t[-117.026586, 43.683001],\n\t\t\t\t\t\t[-117.026623, 43.680865],\n\t\t\t\t\t\t[-117.026717, 43.675523],\n\t\t\t\t\t\t[-117.026661, 43.664385],\n\t\t\t\t\t\t[-117.026705, 43.631659],\n\t\t\t\t\t\t[-117.026905, 43.624880],\n\t\t\t\t\t\t[-117.027001, 43.621032],\n\t\t\t\t\t\t[-117.026937, 43.617614],\n\t\t\t\t\t\t[-117.026789, 43.610669],\n\t\t\t\t\t\t[-117.026760, 43.601912],\n\t\t\t\t\t\t[-117.026824, 43.600357],\n\t\t\t\t\t\t[-117.026889, 43.596033],\n\t\t\t\t\t\t[-117.026922, 43.593632],\n\t\t\t\t\t\t[-117.026774, 43.578674],\n\t\t\t\t\t\t[-117.026746, 43.577526],\n\t\t\t\t\t\t[-117.026652, 43.025128],\n\t\t\t\t\t\t[-117.026683, 43.024876],\n\t\t\t\t\t\t[-117.026253, 42.807447],\n\t\t\t\t\t\t[-117.026303, 42.807170],\n\t\t\t\t\t\t[-117.026331, 42.807015],\n\t\t\t\t\t\t[-117.026222, 42.000252],\n\t\t\t\t\t\t[-118.197189, 41.996995],\n\t\t\t\t\t\t[-118.195361, 42.275869],\n\t\t\t\t\t\t[-118.214725, 42.276029],\n\t\t\t\t\t\t[-118.231926, 43.778980],\n\t\t\t\t\t\t[-118.227435, 44.039981],\n\t\t\t\t\t\t[-118.232140, 44.256083],\n\t\t\t\t\t\t[-118.152340, 44.299583],\n\t\t\t\t\t\t[-117.971596, 44.443328],\n\t\t\t\t\t\t[-117.590992, 44.444461],\n\t\t\t\t\t\t[-117.485899, 44.387696],\n\t\t\t\t\t\t[-117.486153, 44.301420],\n\t\t\t\t\t\t[-117.197506, 44.297280],\n\t\t\t\t\t\t[-117.197777, 44.295789],\n\t\t\t\t\t\t[-117.196597, 44.287529],\n\t\t\t\t\t\t[-117.190107, 44.273958],\n\t\t\t\t\t\t[-117.170342, 44.258890],\n\t\t\t\t\t\t[-117.041144, 44.243653],\n\t\t\t\t\t\t[-117.033170, 44.248192],\n\t\t\t\t\t\t[-117.027558, 44.248881],\n\t\t\t\t\t\t[-116.986870, 44.245477],\n\t\t\t\t\t\t[-116.975905, 44.242844],\n\t\t\t\t\t\t[-116.902752, 44.179467],\n\t\t\t\t\t\t[-116.895757, 44.171267],\n\t\t\t\t\t\t[-116.894083, 44.160191],\n\t\t\t\t\t\t[-116.895931, 44.154295],\n\t\t\t\t\t\t[-116.897145, 44.152537],\n\t\t\t\t\t\t[-116.931719, 44.102474],\n\t\t\t\t\t\t[-116.935301, 43.988616],\n\t\t\t\t\t\t[-116.961535, 43.918388]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US41055\",\n\t\t\t\t\"STATE\": \"41\",\n\t\t\t\t\"COUNTY\": \"055\",\n\t\t\t\t\"NAME\": \"Sherman\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 823.694000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-120.503549, 45.082950],\n\t\t\t\t\t\t[-120.729757, 45.083847],\n\t\t\t\t\t\t[-120.723569, 45.130911],\n\t\t\t\t\t\t[-120.889357, 45.202305],\n\t\t\t\t\t\t[-121.024080, 45.218726],\n\t\t\t\t\t\t[-121.031202, 45.285857],\n\t\t\t\t\t\t[-120.956471, 45.310345],\n\t\t\t\t\t\t[-120.868569, 45.401146],\n\t\t\t\t\t\t[-120.825275, 45.513788],\n\t\t\t\t\t\t[-120.882022, 45.527597],\n\t\t\t\t\t\t[-120.915876, 45.641345],\n\t\t\t\t\t\t[-120.870042, 45.661242],\n\t\t\t\t\t\t[-120.855674, 45.671545],\n\t\t\t\t\t\t[-120.788872, 45.686246],\n\t\t\t\t\t\t[-120.689370, 45.715847],\n\t\t\t\t\t\t[-120.668869, 45.730147],\n\t\t\t\t\t\t[-120.653559, 45.737237],\n\t\t\t\t\t\t[-120.357839, 45.533854],\n\t\t\t\t\t\t[-120.495859, 45.465349],\n\t\t\t\t\t\t[-120.525059, 45.405249],\n\t\t\t\t\t\t[-120.540256, 45.217049],\n\t\t\t\t\t\t[-120.481253, 45.192750],\n\t\t\t\t\t\t[-120.462548, 45.101150],\n\t\t\t\t\t\t[-120.503549, 45.082950]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US41057\",\n\t\t\t\t\"STATE\": \"41\",\n\t\t\t\t\"COUNTY\": \"057\",\n\t\t\t\t\"NAME\": \"Tillamook\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1102.580000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-123.969340, 45.783197],\n\t\t\t\t\t\t[-123.719288, 45.773150],\n\t\t\t\t\t\t[-123.360962, 45.779669],\n\t\t\t\t\t\t[-123.360892, 45.708695],\n\t\t\t\t\t\t[-123.484720, 45.679313],\n\t\t\t\t\t\t[-123.299441, 45.607306],\n\t\t\t\t\t\t[-123.442733, 45.521198],\n\t\t\t\t\t\t[-123.464932, 45.433840],\n\t\t\t\t\t\t[-123.463278, 45.216269],\n\t\t\t\t\t\t[-123.784410, 45.216034],\n\t\t\t\t\t\t[-123.784794, 45.076315],\n\t\t\t\t\t\t[-123.724213, 45.076098],\n\t\t\t\t\t\t[-123.725389, 45.043987],\n\t\t\t\t\t\t[-124.004598, 45.044959],\n\t\t\t\t\t\t[-124.004386, 45.046197],\n\t\t\t\t\t\t[-124.004668, 45.048167],\n\t\t\t\t\t\t[-124.009770, 45.047266],\n\t\t\t\t\t\t[-124.017991, 45.049808],\n\t\t\t\t\t\t[-124.015851, 45.064759],\n\t\t\t\t\t\t[-124.012163, 45.076921],\n\t\t\t\t\t\t[-124.006057, 45.084736],\n\t\t\t\t\t\t[-124.004863, 45.084232],\n\t\t\t\t\t\t[-123.989529, 45.094045],\n\t\t\t\t\t\t[-123.975425, 45.145476],\n\t\t\t\t\t\t[-123.968187, 45.201217],\n\t\t\t\t\t\t[-123.972919, 45.216784],\n\t\t\t\t\t\t[-123.962887, 45.280218],\n\t\t\t\t\t\t[-123.964169, 45.317026],\n\t\t\t\t\t\t[-123.972899, 45.336890],\n\t\t\t\t\t\t[-123.978671, 45.338854],\n\t\t\t\t\t\t[-124.007756, 45.336813],\n\t\t\t\t\t\t[-124.007494, 45.339740],\n\t\t\t\t\t\t[-123.979715, 45.347724],\n\t\t\t\t\t\t[-123.973398, 45.354791],\n\t\t\t\t\t\t[-123.965728, 45.386242],\n\t\t\t\t\t\t[-123.960557, 45.430778],\n\t\t\t\t\t\t[-123.964074, 45.449112],\n\t\t\t\t\t\t[-123.972953, 45.467513],\n\t\t\t\t\t\t[-123.976544, 45.489733],\n\t\t\t\t\t\t[-123.970794, 45.493507],\n\t\t\t\t\t\t[-123.966340, 45.493417],\n\t\t\t\t\t\t[-123.957568, 45.510399],\n\t\t\t\t\t\t[-123.947556, 45.564878],\n\t\t\t\t\t\t[-123.956711, 45.571303],\n\t\t\t\t\t\t[-123.951246, 45.585775],\n\t\t\t\t\t\t[-123.939005, 45.661923],\n\t\t\t\t\t\t[-123.939448, 45.708795],\n\t\t\t\t\t\t[-123.943121, 45.727031],\n\t\t\t\t\t\t[-123.946027, 45.733249],\n\t\t\t\t\t\t[-123.968563, 45.757019],\n\t\t\t\t\t\t[-123.982578, 45.761815],\n\t\t\t\t\t\t[-123.981864, 45.768285],\n\t\t\t\t\t\t[-123.969459, 45.782371],\n\t\t\t\t\t\t[-123.969340, 45.783197]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US41063\",\n\t\t\t\t\"STATE\": \"41\",\n\t\t\t\t\"COUNTY\": \"063\",\n\t\t\t\t\"NAME\": \"Wallowa\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 3146.189000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-117.603163, 45.998887],\n\t\t\t\t\t\t[-117.504833, 45.998317],\n\t\t\t\t\t\t[-117.480130, 45.997870],\n\t\t\t\t\t\t[-117.480103, 45.997870],\n\t\t\t\t\t\t[-117.475360, 45.997855],\n\t\t\t\t\t\t[-117.475148, 45.997893],\n\t\t\t\t\t\t[-117.216731, 45.998356],\n\t\t\t\t\t\t[-117.214534, 45.998320],\n\t\t\t\t\t\t[-117.212616, 45.998321],\n\t\t\t\t\t\t[-116.915989, 45.995413],\n\t\t\t\t\t\t[-116.875125, 45.942200],\n\t\t\t\t\t\t[-116.866544, 45.916958],\n\t\t\t\t\t\t[-116.857254, 45.904159],\n\t\t\t\t\t\t[-116.796418, 45.853807],\n\t\t\t\t\t\t[-116.789099, 45.847749],\n\t\t\t\t\t\t[-116.633377, 45.784681],\n\t\t\t\t\t\t[-116.594210, 45.779080],\n\t\t\t\t\t\t[-116.548090, 45.752364],\n\t\t\t\t\t\t[-116.535698, 45.734231],\n\t\t\t\t\t\t[-116.538014, 45.714929],\n\t\t\t\t\t\t[-116.535396, 45.691734],\n\t\t\t\t\t\t[-116.528272, 45.681473],\n\t\t\t\t\t\t[-116.510938, 45.668114],\n\t\t\t\t\t\t[-116.489120, 45.651140],\n\t\t\t\t\t\t[-116.471504, 45.628467],\n\t\t\t\t\t\t[-116.463504, 45.615785],\n\t\t\t\t\t\t[-116.463635, 45.602785],\n\t\t\t\t\t\t[-116.481208, 45.580597],\n\t\t\t\t\t\t[-116.553473, 45.499107],\n\t\t\t\t\t\t[-116.673793, 45.321511],\n\t\t\t\t\t\t[-116.691197, 45.269245],\n\t\t\t\t\t\t[-116.696047, 45.254679],\n\t\t\t\t\t\t[-116.709536, 45.203015],\n\t\t\t\t\t\t[-116.729607, 45.142091],\n\t\t\t\t\t\t[-116.783902, 45.079022],\n\t\t\t\t\t\t[-117.266572, 45.080805],\n\t\t\t\t\t\t[-117.267162, 45.165858],\n\t\t\t\t\t\t[-117.476987, 45.165315],\n\t\t\t\t\t\t[-117.521904, 45.267762],\n\t\t\t\t\t\t[-117.583018, 45.338291],\n\t\t\t\t\t\t[-117.663557, 45.365757],\n\t\t\t\t\t\t[-117.683957, 45.515143],\n\t\t\t\t\t\t[-117.727271, 45.514705],\n\t\t\t\t\t\t[-117.727149, 45.617272],\n\t\t\t\t\t\t[-117.787637, 45.689597],\n\t\t\t\t\t\t[-117.788236, 45.773726],\n\t\t\t\t\t\t[-117.747101, 45.773346],\n\t\t\t\t\t\t[-117.747313, 45.861012],\n\t\t\t\t\t\t[-117.972922, 45.860586],\n\t\t\t\t\t\t[-117.977688, 45.860558],\n\t\t\t\t\t\t[-117.977766, 46.000695],\n\t\t\t\t\t\t[-117.603163, 45.998887]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US41067\",\n\t\t\t\t\"STATE\": \"41\",\n\t\t\t\t\"COUNTY\": \"067\",\n\t\t\t\t\"NAME\": \"Washington\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 724.230000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-122.764458, 45.529727],\n\t\t\t\t\t\t[-122.743862, 45.519515],\n\t\t\t\t\t\t[-122.743613, 45.454868],\n\t\t\t\t\t\t[-122.743810, 45.452021],\n\t\t\t\t\t\t[-122.743807, 45.447902],\n\t\t\t\t\t\t[-122.743608, 45.447667],\n\t\t\t\t\t\t[-122.743633, 45.442959],\n\t\t\t\t\t\t[-122.743904, 45.442774],\n\t\t\t\t\t\t[-122.743809, 45.440429],\n\t\t\t\t\t\t[-122.744065, 45.433283],\n\t\t\t\t\t\t[-122.743741, 45.332010],\n\t\t\t\t\t\t[-122.868009, 45.317376],\n\t\t\t\t\t\t[-123.135329, 45.433302],\n\t\t\t\t\t\t[-123.464932, 45.433840],\n\t\t\t\t\t\t[-123.442733, 45.521198],\n\t\t\t\t\t\t[-123.299441, 45.607306],\n\t\t\t\t\t\t[-123.484720, 45.679313],\n\t\t\t\t\t\t[-123.360892, 45.708695],\n\t\t\t\t\t\t[-123.360962, 45.779669],\n\t\t\t\t\t\t[-123.030996, 45.779199],\n\t\t\t\t\t\t[-122.928961, 45.721502],\n\t\t\t\t\t\t[-122.929214, 45.633864],\n\t\t\t\t\t\t[-122.764458, 45.529727]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29101\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"101\",\n\t\t\t\t\"NAME\": \"Johnson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 829.282000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.114175, 38.917304],\n\t\t\t\t\t\t[-93.836319, 38.908709],\n\t\t\t\t\t\t[-93.834719, 38.937909],\n\t\t\t\t\t\t[-93.497278, 38.928430],\n\t\t\t\t\t\t[-93.511030, 38.556210],\n\t\t\t\t\t\t[-94.064317, 38.567380],\n\t\t\t\t\t\t[-94.119664, 38.568712],\n\t\t\t\t\t\t[-94.119096, 38.833167],\n\t\t\t\t\t\t[-94.113712, 38.915366],\n\t\t\t\t\t\t[-94.114175, 38.917304]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29107\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"107\",\n\t\t\t\t\"NAME\": \"Lafayette\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 628.433000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.109584, 39.018745],\n\t\t\t\t\t\t[-94.104823, 39.143507],\n\t\t\t\t\t\t[-93.988892, 39.152786],\n\t\t\t\t\t\t[-93.840147, 39.215467],\n\t\t\t\t\t\t[-93.758463, 39.207021],\n\t\t\t\t\t\t[-93.650526, 39.248214],\n\t\t\t\t\t\t[-93.487885, 39.228875],\n\t\t\t\t\t\t[-93.477233, 39.292796],\n\t\t\t\t\t\t[-93.496377, 38.942837],\n\t\t\t\t\t\t[-93.497278, 38.928430],\n\t\t\t\t\t\t[-93.834719, 38.937909],\n\t\t\t\t\t\t[-93.836319, 38.908709],\n\t\t\t\t\t\t[-94.114175, 38.917304],\n\t\t\t\t\t\t[-94.114270, 38.928570],\n\t\t\t\t\t\t[-94.112928, 38.960904],\n\t\t\t\t\t\t[-94.111478, 38.982862],\n\t\t\t\t\t\t[-94.110863, 38.986311],\n\t\t\t\t\t\t[-94.109953, 39.015815],\n\t\t\t\t\t\t[-94.109584, 39.018745]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29113\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"113\",\n\t\t\t\t\"NAME\": \"Lincoln\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 626.556000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.711580, 39.046798],\n\t\t\t\t\t\t[-90.665870, 38.934195],\n\t\t\t\t\t\t[-90.778210, 38.922488],\n\t\t\t\t\t\t[-90.817827, 38.875966],\n\t\t\t\t\t\t[-90.958536, 38.870865],\n\t\t\t\t\t\t[-91.111251, 38.872709],\n\t\t\t\t\t\t[-91.110187, 38.931901],\n\t\t\t\t\t\t[-91.189348, 38.932151],\n\t\t\t\t\t\t[-91.188390, 38.992141],\n\t\t\t\t\t\t[-91.264287, 38.992762],\n\t\t\t\t\t\t[-91.260232, 39.139845],\n\t\t\t\t\t\t[-91.185460, 39.139050],\n\t\t\t\t\t\t[-91.182942, 39.227233],\n\t\t\t\t\t\t[-90.718996, 39.224973],\n\t\t\t\t\t\t[-90.681086, 39.100590],\n\t\t\t\t\t\t[-90.682744, 39.088348],\n\t\t\t\t\t\t[-90.712541, 39.057064],\n\t\t\t\t\t\t[-90.713629, 39.053977],\n\t\t\t\t\t\t[-90.711580, 39.046798]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29123\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"123\",\n\t\t\t\t\"NAME\": \"Madison\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 494.390000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.535016, 37.643641],\n\t\t\t\t\t\t[-90.516756, 37.642665],\n\t\t\t\t\t\t[-90.146778, 37.641618],\n\t\t\t\t\t\t[-90.147306, 37.613546],\n\t\t\t\t\t\t[-90.146763, 37.597434],\n\t\t\t\t\t\t[-90.145699, 37.312091],\n\t\t\t\t\t\t[-90.217657, 37.314967],\n\t\t\t\t\t\t[-90.549729, 37.317594],\n\t\t\t\t\t\t[-90.535016, 37.643641]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29127\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"127\",\n\t\t\t\t\"NAME\": \"Marion\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 436.924000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.369953, 39.745042],\n\t\t\t\t\t\t[-91.370009, 39.732524],\n\t\t\t\t\t\t[-91.367753, 39.729029],\n\t\t\t\t\t\t[-91.349039, 39.712316],\n\t\t\t\t\t\t[-91.313162, 39.684907],\n\t\t\t\t\t\t[-91.715497, 39.686492],\n\t\t\t\t\t\t[-91.715247, 39.657644],\n\t\t\t\t\t\t[-91.846743, 39.658513],\n\t\t\t\t\t\t[-91.840353, 39.948235],\n\t\t\t\t\t\t[-91.455887, 39.945538],\n\t\t\t\t\t\t[-91.446385, 39.870394],\n\t\t\t\t\t\t[-91.432919, 39.840554],\n\t\t\t\t\t\t[-91.365396, 39.777266],\n\t\t\t\t\t\t[-91.367962, 39.759124],\n\t\t\t\t\t\t[-91.369953, 39.745042]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39163\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"163\",\n\t\t\t\t\"NAME\": \"Vinton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 412.360000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.289663, 39.384195],\n\t\t\t\t\t\t[-82.298476, 39.294996],\n\t\t\t\t\t\t[-82.260243, 39.292915],\n\t\t\t\t\t\t[-82.263682, 39.256194],\n\t\t\t\t\t\t[-82.263645, 39.255898],\n\t\t\t\t\t\t[-82.263767, 39.253786],\n\t\t\t\t\t\t[-82.263952, 39.253289],\n\t\t\t\t\t\t[-82.268583, 39.203760],\n\t\t\t\t\t\t[-82.306669, 39.205494],\n\t\t\t\t\t\t[-82.322874, 39.027674],\n\t\t\t\t\t\t[-82.435309, 39.035079],\n\t\t\t\t\t\t[-82.424677, 39.137972],\n\t\t\t\t\t\t[-82.536306, 39.180757],\n\t\t\t\t\t\t[-82.762892, 39.207967],\n\t\t\t\t\t\t[-82.748591, 39.368165],\n\t\t\t\t\t\t[-82.517580, 39.369468],\n\t\t\t\t\t\t[-82.514479, 39.395767],\n\t\t\t\t\t\t[-82.289663, 39.384195]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47073\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"073\",\n\t\t\t\t\"NAME\": \"Hawkins\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 486.975000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.830433, 36.593761],\n\t\t\t\t\t\t[-82.695780, 36.593698],\n\t\t\t\t\t\t[-82.679879, 36.593698],\n\t\t\t\t\t\t[-82.609176, 36.594099],\n\t\t\t\t\t\t[-82.680677, 36.431800],\n\t\t\t\t\t\t[-82.676177, 36.423400],\n\t\t\t\t\t\t[-82.702566, 36.410412],\n\t\t\t\t\t\t[-82.936583, 36.334897],\n\t\t\t\t\t\t[-83.082312, 36.242296],\n\t\t\t\t\t\t[-83.162590, 36.345292],\n\t\t\t\t\t\t[-83.255292, 36.289092],\n\t\t\t\t\t\t[-83.280595, 36.394689],\n\t\t\t\t\t\t[-83.010789, 36.563691],\n\t\t\t\t\t\t[-82.950519, 36.543005],\n\t\t\t\t\t\t[-82.830433, 36.593761]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47079\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"079\",\n\t\t\t\t\"NAME\": \"Henry\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 562.096000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.990920, 36.360133],\n\t\t\t\t\t\t[-88.087674, 36.359166],\n\t\t\t\t\t\t[-88.083157, 36.256724],\n\t\t\t\t\t\t[-88.212559, 36.120290],\n\t\t\t\t\t\t[-88.211698, 36.145974],\n\t\t\t\t\t\t[-88.530346, 36.151573],\n\t\t\t\t\t\t[-88.516346, 36.501431],\n\t\t\t\t\t\t[-88.512270, 36.501506],\n\t\t\t\t\t\t[-88.511920, 36.501457],\n\t\t\t\t\t\t[-88.489210, 36.501068],\n\t\t\t\t\t\t[-88.489075, 36.501068],\n\t\t\t\t\t\t[-88.472564, 36.501028],\n\t\t\t\t\t\t[-88.452543, 36.500872],\n\t\t\t\t\t\t[-88.450161, 36.501101],\n\t\t\t\t\t\t[-88.416360, 36.500756],\n\t\t\t\t\t\t[-88.330799, 36.500531],\n\t\t\t\t\t\t[-88.325895, 36.500483],\n\t\t\t\t\t\t[-88.320794, 36.500432],\n\t\t\t\t\t\t[-88.053292, 36.497130],\n\t\t\t\t\t\t[-88.058480, 36.439224],\n\t\t\t\t\t\t[-87.990920, 36.360133]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47089\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"089\",\n\t\t\t\t\"NAME\": \"Jefferson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 274.078000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.457728, 36.155375],\n\t\t\t\t\t\t[-83.293689, 36.138193],\n\t\t\t\t\t\t[-83.234585, 36.085094],\n\t\t\t\t\t\t[-83.276677, 36.007652],\n\t\t\t\t\t\t[-83.310782, 35.895846],\n\t\t\t\t\t\t[-83.523113, 35.963659],\n\t\t\t\t\t\t[-83.673297, 36.038486],\n\t\t\t\t\t\t[-83.667460, 36.080587],\n\t\t\t\t\t\t[-83.659387, 36.085533],\n\t\t\t\t\t\t[-83.674454, 36.116399],\n\t\t\t\t\t\t[-83.674688, 36.124463],\n\t\t\t\t\t\t[-83.541099, 36.181987],\n\t\t\t\t\t\t[-83.467097, 36.174688],\n\t\t\t\t\t\t[-83.458695, 36.155289],\n\t\t\t\t\t\t[-83.457728, 36.155375]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47091\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"091\",\n\t\t\t\t\"NAME\": \"Johnson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 298.475000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.646900, 36.611918],\n\t\t\t\t\t\t[-81.677535, 36.588117],\n\t\t\t\t\t\t[-81.699962, 36.539714],\n\t\t\t\t\t\t[-81.707963, 36.536209],\n\t\t\t\t\t\t[-81.700553, 36.515190],\n\t\t\t\t\t\t[-81.700093, 36.514158],\n\t\t\t\t\t\t[-81.699601, 36.512883],\n\t\t\t\t\t\t[-81.699446, 36.511504],\n\t\t\t\t\t\t[-81.697744, 36.508448],\n\t\t\t\t\t\t[-81.697829, 36.507544],\n\t\t\t\t\t\t[-81.697290, 36.504887],\n\t\t\t\t\t\t[-81.697970, 36.504063],\n\t\t\t\t\t\t[-81.699923, 36.500865],\n\t\t\t\t\t\t[-81.700238, 36.500475],\n\t\t\t\t\t\t[-81.699928, 36.498018],\n\t\t\t\t\t\t[-81.698265, 36.497221],\n\t\t\t\t\t\t[-81.697261, 36.496141],\n\t\t\t\t\t\t[-81.696835, 36.493393],\n\t\t\t\t\t\t[-81.695907, 36.491580],\n\t\t\t\t\t\t[-81.697287, 36.484738],\n\t\t\t\t\t\t[-81.715082, 36.453365],\n\t\t\t\t\t\t[-81.714277, 36.450978],\n\t\t\t\t\t\t[-81.720969, 36.387500],\n\t\t\t\t\t\t[-81.725938, 36.340364],\n\t\t\t\t\t\t[-81.730976, 36.341187],\n\t\t\t\t\t\t[-81.747842, 36.337356],\n\t\t\t\t\t\t[-81.764927, 36.338672],\n\t\t\t\t\t\t[-81.789712, 36.348324],\n\t\t\t\t\t\t[-81.793688, 36.360428],\n\t\t\t\t\t\t[-81.800812, 36.358073],\n\t\t\t\t\t\t[-81.855005, 36.337259],\n\t\t\t\t\t\t[-81.908137, 36.302013],\n\t\t\t\t\t\t[-81.918113, 36.287110],\n\t\t\t\t\t\t[-81.932994, 36.264881],\n\t\t\t\t\t\t[-82.058946, 36.367515],\n\t\t\t\t\t\t[-81.949840, 36.472385],\n\t\t\t\t\t\t[-81.983843, 36.508314],\n\t\t\t\t\t\t[-81.826742, 36.614215],\n\t\t\t\t\t\t[-81.646900, 36.611918]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47097\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"097\",\n\t\t\t\t\"NAME\": \"Lauderdale\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 471.992000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.502118, 35.580621],\n\t\t\t\t\t\t[-89.651056, 35.648009],\n\t\t\t\t\t\t[-89.758116, 35.650361],\n\t\t\t\t\t\t[-89.909797, 35.537914],\n\t\t\t\t\t\t[-89.884932, 35.655107],\n\t\t\t\t\t\t[-89.890510, 35.652408],\n\t\t\t\t\t\t[-89.906147, 35.651145],\n\t\t\t\t\t\t[-89.922749, 35.655293],\n\t\t\t\t\t\t[-89.937383, 35.665711],\n\t\t\t\t\t\t[-89.955753, 35.690621],\n\t\t\t\t\t\t[-89.958882, 35.723834],\n\t\t\t\t\t\t[-89.956254, 35.733386],\n\t\t\t\t\t\t[-89.950278, 35.738493],\n\t\t\t\t\t\t[-89.909996, 35.759396],\n\t\t\t\t\t\t[-89.905538, 35.759063],\n\t\t\t\t\t\t[-89.889023, 35.750558],\n\t\t\t\t\t\t[-89.865631, 35.746577],\n\t\t\t\t\t\t[-89.821216, 35.756716],\n\t\t\t\t\t\t[-89.703875, 35.820281],\n\t\t\t\t\t\t[-89.701045, 35.828227],\n\t\t\t\t\t\t[-89.702883, 35.834153],\n\t\t\t\t\t\t[-89.709261, 35.838911],\n\t\t\t\t\t\t[-89.729517, 35.847632],\n\t\t\t\t\t\t[-89.749424, 35.852955],\n\t\t\t\t\t\t[-89.769413, 35.861558],\n\t\t\t\t\t\t[-89.772467, 35.865098],\n\t\t\t\t\t\t[-89.773564, 35.871697],\n\t\t\t\t\t\t[-89.771726, 35.879724],\n\t\t\t\t\t\t[-89.765689, 35.891299],\n\t\t\t\t\t\t[-89.756036, 35.896817],\n\t\t\t\t\t\t[-89.733610, 35.904699],\n\t\t\t\t\t\t[-89.714934, 35.906247],\n\t\t\t\t\t\t[-89.688141, 35.896946],\n\t\t\t\t\t\t[-89.687939, 35.905384],\n\t\t\t\t\t\t[-89.406965, 35.946599],\n\t\t\t\t\t\t[-89.342829, 35.880934],\n\t\t\t\t\t\t[-89.356033, 35.817635],\n\t\t\t\t\t\t[-89.401805, 35.822657],\n\t\t\t\t\t\t[-89.502118, 35.580621]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47103\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"103\",\n\t\t\t\t\"NAME\": \"Lincoln\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 570.338000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.677616, 34.992070],\n\t\t\t\t\t\t[-86.783628, 34.991925],\n\t\t\t\t\t\t[-86.783648, 34.991925],\n\t\t\t\t\t\t[-86.820657, 34.991764],\n\t\t\t\t\t\t[-86.836306, 34.991764],\n\t\t\t\t\t\t[-86.828301, 35.263677],\n\t\t\t\t\t\t[-86.746899, 35.252878],\n\t\t\t\t\t\t[-86.602613, 35.327013],\n\t\t\t\t\t\t[-86.599478, 35.364950],\n\t\t\t\t\t\t[-86.582875, 35.370983],\n\t\t\t\t\t\t[-86.552694, 35.359983],\n\t\t\t\t\t\t[-86.543671, 35.363211],\n\t\t\t\t\t\t[-86.525306, 35.354718],\n\t\t\t\t\t\t[-86.527280, 35.311536],\n\t\t\t\t\t\t[-86.392192, 35.235381],\n\t\t\t\t\t\t[-86.366236, 35.124405],\n\t\t\t\t\t\t[-86.318168, 35.126986],\n\t\t\t\t\t\t[-86.320277, 35.032503],\n\t\t\t\t\t\t[-86.318761, 34.991147],\n\t\t\t\t\t\t[-86.397203, 34.991660],\n\t\t\t\t\t\t[-86.433927, 34.991085],\n\t\t\t\t\t\t[-86.467798, 34.990692],\n\t\t\t\t\t\t[-86.528485, 34.990677],\n\t\t\t\t\t\t[-86.555864, 34.990971],\n\t\t\t\t\t\t[-86.571217, 34.991011],\n\t\t\t\t\t\t[-86.588962, 34.991197],\n\t\t\t\t\t\t[-86.600039, 34.991240],\n\t\t\t\t\t\t[-86.641212, 34.991740],\n\t\t\t\t\t\t[-86.659610, 34.991792],\n\t\t\t\t\t\t[-86.670853, 34.992000],\n\t\t\t\t\t\t[-86.674360, 34.992001],\n\t\t\t\t\t\t[-86.676726, 34.992070],\n\t\t\t\t\t\t[-86.677616, 34.992070]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47115\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"115\",\n\t\t\t\t\"NAME\": \"Marion\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 498.160000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.558551, 35.319292],\n\t\t\t\t\t\t[-85.444144, 35.262646],\n\t\t\t\t\t\t[-85.387089, 35.147169],\n\t\t\t\t\t\t[-85.361959, 35.087773],\n\t\t\t\t\t\t[-85.474472, 34.983972],\n\t\t\t\t\t\t[-85.605165, 34.984678],\n\t\t\t\t\t\t[-85.824411, 34.988142],\n\t\t\t\t\t\t[-85.828724, 34.988165],\n\t\t\t\t\t\t[-85.863935, 34.988379],\n\t\t\t\t\t\t[-85.873025, 35.223362],\n\t\t\t\t\t\t[-85.740113, 35.215295],\n\t\t\t\t\t\t[-85.709418, 35.289251],\n\t\t\t\t\t\t[-85.558551, 35.319292]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47121\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"121\",\n\t\t\t\t\"NAME\": \"Meigs\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 195.122000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.625868, 35.658869],\n\t\t\t\t\t\t[-84.619880, 35.658865],\n\t\t\t\t\t\t[-84.619865, 35.644651],\n\t\t\t\t\t\t[-84.814543, 35.436970],\n\t\t\t\t\t\t[-84.860164, 35.350074],\n\t\t\t\t\t\t[-84.946350, 35.287788],\n\t\t\t\t\t\t[-85.016343, 35.409288],\n\t\t\t\t\t\t[-84.968953, 35.466674],\n\t\t\t\t\t\t[-84.907048, 35.447871],\n\t\t\t\t\t\t[-84.873969, 35.550217],\n\t\t\t\t\t\t[-84.794904, 35.552550],\n\t\t\t\t\t\t[-84.781804, 35.673908],\n\t\t\t\t\t\t[-84.723853, 35.752896],\n\t\t\t\t\t\t[-84.625868, 35.658869]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47123\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"123\",\n\t\t\t\t\"NAME\": \"Monroe\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 635.565000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.495529, 35.285472],\n\t\t\t\t\t\t[-84.401025, 35.330374],\n\t\t\t\t\t\t[-84.409226, 35.398378],\n\t\t\t\t\t\t[-84.525850, 35.624186],\n\t\t\t\t\t\t[-84.423549, 35.671735],\n\t\t\t\t\t\t[-84.188319, 35.610549],\n\t\t\t\t\t\t[-84.081561, 35.541231],\n\t\t\t\t\t\t[-83.993815, 35.550001],\n\t\t\t\t\t\t[-83.961056, 35.463738],\n\t\t\t\t\t\t[-83.961054, 35.462838],\n\t\t\t\t\t\t[-83.961400, 35.459496],\n\t\t\t\t\t\t[-83.999906, 35.425201],\n\t\t\t\t\t\t[-84.002250, 35.422548],\n\t\t\t\t\t\t[-84.024756, 35.353896],\n\t\t\t\t\t\t[-84.035343, 35.350833],\n\t\t\t\t\t\t[-84.037494, 35.349850],\n\t\t\t\t\t\t[-84.038081, 35.348363],\n\t\t\t\t\t\t[-84.032450, 35.326530],\n\t\t\t\t\t\t[-84.032479, 35.325318],\n\t\t\t\t\t\t[-84.021410, 35.301383],\n\t\t\t\t\t\t[-84.023510, 35.295783],\n\t\t\t\t\t\t[-84.029033, 35.291049],\n\t\t\t\t\t\t[-84.055712, 35.268182],\n\t\t\t\t\t\t[-84.097508, 35.247382],\n\t\t\t\t\t\t[-84.115048, 35.249765],\n\t\t\t\t\t\t[-84.115279, 35.250438],\n\t\t\t\t\t\t[-84.121150, 35.250644],\n\t\t\t\t\t\t[-84.124915, 35.249830],\n\t\t\t\t\t\t[-84.202879, 35.255772],\n\t\t\t\t\t\t[-84.211818, 35.266078],\n\t\t\t\t\t\t[-84.223718, 35.269078],\n\t\t\t\t\t\t[-84.227818, 35.267878],\n\t\t\t\t\t\t[-84.290240, 35.225572],\n\t\t\t\t\t\t[-84.292321, 35.206677],\n\t\t\t\t\t\t[-84.495529, 35.285472]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47131\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"131\",\n\t\t\t\t\"NAME\": \"Obion\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 544.728000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.346056, 36.503210],\n\t\t\t\t\t\t[-89.346053, 36.503210],\n\t\t\t\t\t\t[-89.282298, 36.506782],\n\t\t\t\t\t\t[-89.279091, 36.506511],\n\t\t\t\t\t\t[-89.211409, 36.505630],\n\t\t\t\t\t\t[-89.163429, 36.504526],\n\t\t\t\t\t\t[-89.163224, 36.504522],\n\t\t\t\t\t\t[-89.119805, 36.503647],\n\t\t\t\t\t\t[-89.117537, 36.503603],\n\t\t\t\t\t\t[-89.090146, 36.503392],\n\t\t\t\t\t\t[-89.072118, 36.503249],\n\t\t\t\t\t\t[-89.058871, 36.503157],\n\t\t\t\t\t\t[-89.034649, 36.502964],\n\t\t\t\t\t\t[-89.010439, 36.502710],\n\t\t\t\t\t\t[-89.006825, 36.502684],\n\t\t\t\t\t\t[-89.000063, 36.502633],\n\t\t\t\t\t\t[-88.964471, 36.502191],\n\t\t\t\t\t\t[-88.874725, 36.502446],\n\t\t\t\t\t\t[-88.834866, 36.502911],\n\t\t\t\t\t\t[-88.834626, 36.502914],\n\t\t\t\t\t\t[-88.827301, 36.502852],\n\t\t\t\t\t\t[-88.816420, 36.410732],\n\t\t\t\t\t\t[-88.950205, 36.409248],\n\t\t\t\t\t\t[-88.959839, 36.222834],\n\t\t\t\t\t\t[-88.961232, 36.201635],\n\t\t\t\t\t\t[-89.154464, 36.204678],\n\t\t\t\t\t\t[-89.482971, 36.212659],\n\t\t\t\t\t\t[-89.443726, 36.236637],\n\t\t\t\t\t\t[-89.360120, 36.409277],\n\t\t\t\t\t\t[-89.346056, 36.503210]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39007\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"007\",\n\t\t\t\t\"NAME\": \"Ashtabula\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 701.931000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.973674, 41.858122],\n\t\t\t\t\t\t[-80.971141, 41.858409],\n\t\t\t\t\t\t[-80.958494, 41.859838],\n\t\t\t\t\t\t[-80.936244, 41.862352],\n\t\t\t\t\t\t[-80.916528, 41.865954],\n\t\t\t\t\t\t[-80.900342, 41.868912],\n\t\t\t\t\t\t[-80.853542, 41.884685],\n\t\t\t\t\t\t[-80.852064, 41.885183],\n\t\t\t\t\t\t[-80.826889, 41.893668],\n\t\t\t\t\t\t[-80.819165, 41.896271],\n\t\t\t\t\t\t[-80.816444, 41.897188],\n\t\t\t\t\t\t[-80.814943, 41.897694],\n\t\t\t\t\t\t[-80.813240, 41.898760],\n\t\t\t\t\t\t[-80.812659, 41.899125],\n\t\t\t\t\t\t[-80.808697, 41.901606],\n\t\t\t\t\t\t[-80.808010, 41.902304],\n\t\t\t\t\t\t[-80.806133, 41.904211],\n\t\t\t\t\t\t[-80.801436, 41.908982],\n\t\t\t\t\t\t[-80.800794, 41.909635],\n\t\t\t\t\t\t[-80.799822, 41.909749],\n\t\t\t\t\t\t[-80.798311, 41.909926],\n\t\t\t\t\t\t[-80.794388, 41.910386],\n\t\t\t\t\t\t[-80.786410, 41.911322],\n\t\t\t\t\t\t[-80.785497, 41.911429],\n\t\t\t\t\t\t[-80.784682, 41.911525],\n\t\t\t\t\t\t[-80.782944, 41.908294],\n\t\t\t\t\t\t[-80.782052, 41.906635],\n\t\t\t\t\t\t[-80.781112, 41.906897],\n\t\t\t\t\t\t[-80.777090, 41.908018],\n\t\t\t\t\t\t[-80.771784, 41.909496],\n\t\t\t\t\t\t[-80.770756, 41.909782],\n\t\t\t\t\t\t[-80.768020, 41.910545],\n\t\t\t\t\t\t[-80.766046, 41.911095],\n\t\t\t\t\t\t[-80.762176, 41.912173],\n\t\t\t\t\t\t[-80.757945, 41.913352],\n\t\t\t\t\t\t[-80.727504, 41.918593],\n\t\t\t\t\t\t[-80.720816, 41.919744],\n\t\t\t\t\t\t[-80.717469, 41.920656],\n\t\t\t\t\t\t[-80.712218, 41.922087],\n\t\t\t\t\t\t[-80.708293, 41.923157],\n\t\t\t\t\t\t[-80.699363, 41.925591],\n\t\t\t\t\t\t[-80.693429, 41.927208],\n\t\t\t\t\t\t[-80.635576, 41.942976],\n\t\t\t\t\t\t[-80.619443, 41.947373],\n\t\t\t\t\t\t[-80.619242, 41.947428],\n\t\t\t\t\t\t[-80.608610, 41.950325],\n\t\t\t\t\t\t[-80.581882, 41.957610],\n\t\t\t\t\t\t[-80.579439, 41.958499],\n\t\t\t\t\t\t[-80.576735, 41.959483],\n\t\t\t\t\t\t[-80.576591, 41.959535],\n\t\t\t\t\t\t[-80.575500, 41.959932],\n\t\t\t\t\t\t[-80.572028, 41.961196],\n\t\t\t\t\t\t[-80.563327, 41.964362],\n\t\t\t\t\t\t[-80.560671, 41.965328],\n\t\t\t\t\t\t[-80.555898, 41.967065],\n\t\t\t\t\t\t[-80.553836, 41.967815],\n\t\t\t\t\t\t[-80.533774, 41.973475],\n\t\t\t\t\t\t[-80.531390, 41.974147],\n\t\t\t\t\t\t[-80.530164, 41.974493],\n\t\t\t\t\t\t[-80.529274, 41.974744],\n\t\t\t\t\t\t[-80.525521, 41.975803],\n\t\t\t\t\t\t[-80.522057, 41.976780],\n\t\t\t\t\t\t[-80.519461, 41.977513],\n\t\t\t\t\t\t[-80.519425, 41.977523],\n\t\t\t\t\t\t[-80.519425, 41.977522],\n\t\t\t\t\t\t[-80.519405, 41.976158],\n\t\t\t\t\t\t[-80.519304, 41.943992],\n\t\t\t\t\t\t[-80.519345, 41.929168],\n\t\t\t\t\t\t[-80.519294, 41.849563],\n\t\t\t\t\t\t[-80.519239, 41.765138],\n\t\t\t\t\t\t[-80.519369, 41.752487],\n\t\t\t\t\t\t[-80.519408, 41.739359],\n\t\t\t\t\t\t[-80.519373, 41.701473],\n\t\t\t\t\t\t[-80.519424, 41.671228],\n\t\t\t\t\t\t[-80.519357, 41.669767],\n\t\t\t\t\t\t[-80.519339, 41.539297],\n\t\t\t\t\t\t[-80.519157, 41.528769],\n\t\t\t\t\t\t[-80.519225, 41.499924],\n\t\t\t\t\t\t[-81.003125, 41.501685],\n\t\t\t\t\t\t[-81.002990, 41.700009],\n\t\t\t\t\t\t[-81.003631, 41.715137],\n\t\t\t\t\t\t[-81.004763, 41.726436],\n\t\t\t\t\t\t[-81.002117, 41.854908],\n\t\t\t\t\t\t[-80.991799, 41.856074],\n\t\t\t\t\t\t[-80.973674, 41.858122]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48371\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"371\",\n\t\t\t\t\"NAME\": \"Pecos\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 4763.847000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-103.011040, 31.371306],\n\t\t\t\t\t\t[-102.827087, 31.267909],\n\t\t\t\t\t\t[-102.767365, 31.293803],\n\t\t\t\t\t\t[-102.676497, 31.326823],\n\t\t\t\t\t\t[-102.429545, 31.193557],\n\t\t\t\t\t\t[-102.388804, 31.087156],\n\t\t\t\t\t\t[-102.191731, 31.003788],\n\t\t\t\t\t\t[-101.983640, 30.987170],\n\t\t\t\t\t\t[-101.883436, 30.925647],\n\t\t\t\t\t\t[-101.768420, 30.653077],\n\t\t\t\t\t\t[-101.768377, 30.652938],\n\t\t\t\t\t\t[-101.768806, 30.653133],\n\t\t\t\t\t\t[-101.769105, 30.653327],\n\t\t\t\t\t\t[-101.769353, 30.653369],\n\t\t\t\t\t\t[-101.997614, 30.654086],\n\t\t\t\t\t\t[-102.000408, 30.654933],\n\t\t\t\t\t\t[-102.023880, 30.655141],\n\t\t\t\t\t\t[-102.031813, 30.655503],\n\t\t\t\t\t\t[-102.032467, 30.655385],\n\t\t\t\t\t\t[-102.032927, 30.655489],\n\t\t\t\t\t\t[-102.033231, 30.655496],\n\t\t\t\t\t\t[-102.034002, 30.655433],\n\t\t\t\t\t\t[-102.034385, 30.655268],\n\t\t\t\t\t\t[-102.137778, 30.655982],\n\t\t\t\t\t\t[-102.138406, 30.597521],\n\t\t\t\t\t\t[-102.342986, 30.598759],\n\t\t\t\t\t\t[-102.343085, 30.284116],\n\t\t\t\t\t\t[-102.566937, 30.283269],\n\t\t\t\t\t\t[-102.567049, 30.052808],\n\t\t\t\t\t\t[-103.195667, 30.495574],\n\t\t\t\t\t\t[-103.439976, 30.665939],\n\t\t\t\t\t\t[-103.585084, 30.766470],\n\t\t\t\t\t\t[-103.011040, 31.371306]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48377\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"377\",\n\t\t\t\t\"NAME\": \"Presidio\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 3855.237000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-103.800680, 30.412527],\n\t\t\t\t\t\t[-103.798159, 29.999606],\n\t\t\t\t\t\t[-103.792705, 29.262931],\n\t\t\t\t\t\t[-103.838303, 29.278304],\n\t\t\t\t\t\t[-103.924976, 29.293913],\n\t\t\t\t\t\t[-103.963076, 29.298404],\n\t\t\t\t\t\t[-104.025488, 29.314404],\n\t\t\t\t\t\t[-104.143692, 29.383278],\n\t\t\t\t\t\t[-104.167506, 29.402928],\n\t\t\t\t\t\t[-104.213410, 29.462069],\n\t\t\t\t\t\t[-104.235847, 29.496744],\n\t\t\t\t\t\t[-104.264155, 29.514001],\n\t\t\t\t\t\t[-104.290728, 29.519326],\n\t\t\t\t\t\t[-104.321603, 29.527923],\n\t\t\t\t\t\t[-104.394351, 29.560535],\n\t\t\t\t\t\t[-104.515512, 29.641493],\n\t\t\t\t\t\t[-104.538569, 29.677396],\n\t\t\t\t\t\t[-104.549773, 29.716091],\n\t\t\t\t\t\t[-104.549117, 29.728814],\n\t\t\t\t\t\t[-104.566055, 29.771379],\n\t\t\t\t\t\t[-104.633275, 29.870485],\n\t\t\t\t\t\t[-104.667301, 29.910401],\n\t\t\t\t\t\t[-104.674932, 29.911112],\n\t\t\t\t\t\t[-104.679877, 29.920946],\n\t\t\t\t\t\t[-104.693592, 30.019077],\n\t\t\t\t\t\t[-104.685793, 30.092656],\n\t\t\t\t\t\t[-104.687296, 30.179464],\n\t\t\t\t\t\t[-104.708916, 30.235826],\n\t\t\t\t\t\t[-104.761634, 30.301148],\n\t\t\t\t\t\t[-104.781020, 30.314564],\n\t\t\t\t\t\t[-104.859521, 30.390413],\n\t\t\t\t\t\t[-104.872808, 30.500145],\n\t\t\t\t\t\t[-104.929778, 30.599240],\n\t\t\t\t\t\t[-104.972071, 30.610260],\n\t\t\t\t\t\t[-104.985365, 30.623792],\n\t\t\t\t\t\t[-104.979527, 30.629247],\n\t\t\t\t\t\t[-104.976636, 30.628946],\n\t\t\t\t\t\t[-103.901010, 30.412190],\n\t\t\t\t\t\t[-103.800680, 30.412527]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48391\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"391\",\n\t\t\t\t\"NAME\": \"Refugio\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 770.444000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.260818, 28.075759],\n\t\t\t\t\t\t[-97.351825, 28.123502],\n\t\t\t\t\t\t[-97.427171, 28.117668],\n\t\t\t\t\t\t[-97.541071, 28.164669],\n\t\t\t\t\t\t[-97.375579, 28.388684],\n\t\t\t\t\t\t[-97.375268, 28.389116],\n\t\t\t\t\t\t[-97.160751, 28.553475],\n\t\t\t\t\t\t[-97.048529, 28.549976],\n\t\t\t\t\t\t[-96.982147, 28.499639],\n\t\t\t\t\t\t[-96.890951, 28.507178],\n\t\t\t\t\t\t[-96.766960, 28.410737],\n\t\t\t\t\t\t[-96.768352, 28.410389],\n\t\t\t\t\t\t[-96.772209, 28.408074],\n\t\t\t\t\t\t[-96.775985, 28.405809],\n\t\t\t\t\t\t[-96.780796, 28.398421],\n\t\t\t\t\t\t[-96.790235, 28.383926],\n\t\t\t\t\t\t[-96.794554, 28.365688],\n\t\t\t\t\t\t[-96.794796, 28.364668],\n\t\t\t\t\t\t[-96.794815, 28.364587],\n\t\t\t\t\t\t[-96.794812, 28.364515],\n\t\t\t\t\t\t[-96.794812, 28.364503],\n\t\t\t\t\t\t[-96.794357, 28.350865],\n\t\t\t\t\t\t[-96.794306, 28.349320],\n\t\t\t\t\t\t[-96.794016, 28.347249],\n\t\t\t\t\t\t[-96.793926, 28.346606],\n\t\t\t\t\t\t[-96.793835, 28.345959],\n\t\t\t\t\t\t[-96.793765, 28.345453],\n\t\t\t\t\t\t[-96.792540, 28.336705],\n\t\t\t\t\t\t[-96.790744, 28.323874],\n\t\t\t\t\t\t[-96.791159, 28.319095],\n\t\t\t\t\t\t[-97.123072, 28.272817],\n\t\t\t\t\t\t[-97.023586, 28.187657],\n\t\t\t\t\t\t[-97.144916, 28.102622],\n\t\t\t\t\t\t[-97.260818, 28.075759]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48401\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"401\",\n\t\t\t\t\"NAME\": \"Rusk\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 924.027000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.452416, 31.844281],\n\t\t\t\t\t\t[-94.937532, 31.845555],\n\t\t\t\t\t\t[-94.985037, 31.846193],\n\t\t\t\t\t\t[-94.985272, 32.137989],\n\t\t\t\t\t\t[-94.985411, 32.370820],\n\t\t\t\t\t\t[-94.638347, 32.370539],\n\t\t\t\t\t\t[-94.600776, 32.360044],\n\t\t\t\t\t\t[-94.579219, 32.394916],\n\t\t\t\t\t\t[-94.491818, 32.394137],\n\t\t\t\t\t\t[-94.580500, 32.201363],\n\t\t\t\t\t\t[-94.599978, 31.973193],\n\t\t\t\t\t\t[-94.511431, 31.973984],\n\t\t\t\t\t\t[-94.452416, 31.844281]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48407\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"407\",\n\t\t\t\t\"NAME\": \"San Jacinto\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 569.243000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.849414, 30.493553],\n\t\t\t\t\t\t[-95.024589, 30.406903],\n\t\t\t\t\t\t[-95.032460, 30.404091],\n\t\t\t\t\t\t[-95.165897, 30.344976],\n\t\t\t\t\t\t[-95.308395, 30.405750],\n\t\t\t\t\t\t[-95.359156, 30.504369],\n\t\t\t\t\t\t[-95.327482, 30.859537],\n\t\t\t\t\t\t[-95.252385, 30.906719],\n\t\t\t\t\t\t[-95.200180, 30.824566],\n\t\t\t\t\t\t[-95.131205, 30.781703],\n\t\t\t\t\t\t[-95.135384, 30.693816],\n\t\t\t\t\t\t[-95.054602, 30.680173],\n\t\t\t\t\t\t[-95.028628, 30.578485],\n\t\t\t\t\t\t[-94.830429, 30.541613],\n\t\t\t\t\t\t[-94.849414, 30.493553]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48409\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"409\",\n\t\t\t\t\"NAME\": \"San Patricio\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 693.451000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.541071, 28.164669],\n\t\t\t\t\t\t[-97.427171, 28.117668],\n\t\t\t\t\t\t[-97.351825, 28.123502],\n\t\t\t\t\t\t[-97.260818, 28.075759],\n\t\t\t\t\t\t[-97.259401, 28.073196],\n\t\t\t\t\t\t[-97.134801, 27.902467],\n\t\t\t\t\t\t[-97.135783, 27.899445],\n\t\t\t\t\t\t[-97.136615, 27.898956],\n\t\t\t\t\t\t[-97.144435, 27.894356],\n\t\t\t\t\t\t[-97.155122, 27.880615],\n\t\t\t\t\t\t[-97.183455, 27.833231],\n\t\t\t\t\t\t[-97.184639, 27.831251],\n\t\t\t\t\t\t[-97.186709, 27.825453],\n\t\t\t\t\t\t[-97.186871, 27.825001],\n\t\t\t\t\t\t[-97.187183, 27.824126],\n\t\t\t\t\t\t[-97.188866, 27.823772],\n\t\t\t\t\t\t[-97.192874, 27.822928],\n\t\t\t\t\t\t[-97.193701, 27.822754],\n\t\t\t\t\t\t[-97.196852, 27.822091],\n\t\t\t\t\t\t[-97.209127, 27.822091],\n\t\t\t\t\t\t[-97.209575, 27.822091],\n\t\t\t\t\t\t[-97.211226, 27.822391],\n\t\t\t\t\t\t[-97.219738, 27.823939],\n\t\t\t\t\t\t[-97.220771, 27.824126],\n\t\t\t\t\t\t[-97.222212, 27.824649],\n\t\t\t\t\t\t[-97.222957, 27.824919],\n\t\t\t\t\t\t[-97.225176, 27.825723],\n\t\t\t\t\t\t[-97.225435, 27.826145],\n\t\t\t\t\t\t[-97.225811, 27.826755],\n\t\t\t\t\t\t[-97.226012, 27.827083],\n\t\t\t\t\t\t[-97.227317, 27.829204],\n\t\t\t\t\t\t[-97.227317, 27.830939],\n\t\t\t\t\t\t[-97.227317, 27.831258],\n\t\t\t\t\t\t[-97.227317, 27.832895],\n\t\t\t\t\t\t[-97.227317, 27.832952],\n\t\t\t\t\t\t[-97.226514, 27.838307],\n\t\t\t\t\t\t[-97.228388, 27.843661],\n\t\t\t\t\t\t[-97.234512, 27.849063],\n\t\t\t\t\t\t[-97.241127, 27.857714],\n\t\t\t\t\t\t[-97.241393, 27.858953],\n\t\t\t\t\t\t[-97.242654, 27.864839],\n\t\t\t\t\t\t[-97.242922, 27.865208],\n\t\t\t\t\t\t[-97.250797, 27.876035],\n\t\t\t\t\t\t[-97.256394, 27.877901],\n\t\t\t\t\t\t[-97.258305, 27.878538],\n\t\t\t\t\t\t[-97.263010, 27.880106],\n\t\t\t\t\t\t[-97.272253, 27.881427],\n\t\t\t\t\t\t[-97.273698, 27.881633],\n\t\t\t\t\t\t[-97.276632, 27.881144],\n\t\t\t\t\t\t[-97.285466, 27.879672],\n\t\t\t\t\t\t[-97.295072, 27.878071],\n\t\t\t\t\t\t[-97.301455, 27.875907],\n\t\t\t\t\t\t[-97.317892, 27.870335],\n\t\t\t\t\t\t[-97.325097, 27.867893],\n\t\t\t\t\t\t[-97.327494, 27.866405],\n\t\t\t\t\t\t[-97.354614, 27.849572],\n\t\t\t\t\t\t[-97.360212, 27.850590],\n\t\t\t\t\t\t[-97.360547, 27.850363],\n\t\t\t\t\t\t[-97.361246, 27.849891],\n\t\t\t\t\t\t[-97.377166, 27.875181],\n\t\t\t\t\t\t[-97.589473, 27.856101],\n\t\t\t\t\t\t[-97.691074, 27.917353],\n\t\t\t\t\t\t[-97.805765, 27.934287],\n\t\t\t\t\t\t[-97.798517, 27.995659],\n\t\t\t\t\t\t[-97.883148, 28.056900],\n\t\t\t\t\t\t[-97.904081, 28.114228],\n\t\t\t\t\t\t[-97.817716, 28.176848],\n\t\t\t\t\t\t[-97.567622, 28.129683],\n\t\t\t\t\t\t[-97.541071, 28.164669]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36079\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"079\",\n\t\t\t\t\"NAME\": \"Putnam\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 230.312000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-73.982584, 41.321693],\n\t\t\t\t\t\t[-73.981384, 41.324693],\n\t\t\t\t\t\t[-73.981486, 41.438905],\n\t\t\t\t\t\t[-73.933775, 41.488279],\n\t\t\t\t\t\t[-73.530067, 41.527194],\n\t\t\t\t\t\t[-73.533969, 41.479693],\n\t\t\t\t\t\t[-73.534055, 41.478968],\n\t\t\t\t\t\t[-73.534150, 41.478060],\n\t\t\t\t\t\t[-73.534269, 41.476911],\n\t\t\t\t\t\t[-73.534269, 41.476394],\n\t\t\t\t\t\t[-73.534369, 41.475894],\n\t\t\t\t\t\t[-73.535769, 41.457159],\n\t\t\t\t\t\t[-73.535857, 41.455709],\n\t\t\t\t\t\t[-73.535885, 41.455236],\n\t\t\t\t\t\t[-73.535986, 41.453060],\n\t\t\t\t\t\t[-73.536067, 41.451331],\n\t\t\t\t\t\t[-73.536969, 41.441094],\n\t\t\t\t\t\t[-73.537469, 41.435890],\n\t\t\t\t\t\t[-73.537673, 41.433905],\n\t\t\t\t\t\t[-73.543641, 41.376778],\n\t\t\t\t\t\t[-73.544728, 41.366375],\n\t\t\t\t\t\t[-73.982584, 41.321693]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48443\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"443\",\n\t\t\t\t\"NAME\": \"Terrell\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2358.026000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-101.761839, 29.777187],\n\t\t\t\t\t\t[-101.786353, 29.782047],\n\t\t\t\t\t\t[-101.883655, 29.796193],\n\t\t\t\t\t\t[-101.944913, 29.801468],\n\t\t\t\t\t\t[-102.040539, 29.790061],\n\t\t\t\t\t\t[-102.050044, 29.785070],\n\t\t\t\t\t\t[-102.116076, 29.792527],\n\t\t\t\t\t\t[-102.262466, 29.853765],\n\t\t\t\t\t\t[-102.282247, 29.863598],\n\t\t\t\t\t\t[-102.297331, 29.875194],\n\t\t\t\t\t\t[-102.320819, 29.875193],\n\t\t\t\t\t\t[-102.320819, 29.878933],\n\t\t\t\t\t\t[-102.567049, 30.052808],\n\t\t\t\t\t\t[-102.566937, 30.283269],\n\t\t\t\t\t\t[-102.343085, 30.284116],\n\t\t\t\t\t\t[-102.342986, 30.598759],\n\t\t\t\t\t\t[-102.138406, 30.597521],\n\t\t\t\t\t\t[-102.137778, 30.655982],\n\t\t\t\t\t\t[-102.034385, 30.655268],\n\t\t\t\t\t\t[-102.034002, 30.655433],\n\t\t\t\t\t\t[-102.033231, 30.655496],\n\t\t\t\t\t\t[-102.032927, 30.655489],\n\t\t\t\t\t\t[-102.032467, 30.655385],\n\t\t\t\t\t\t[-102.031813, 30.655503],\n\t\t\t\t\t\t[-102.023880, 30.655141],\n\t\t\t\t\t\t[-102.000408, 30.654933],\n\t\t\t\t\t\t[-101.997614, 30.654086],\n\t\t\t\t\t\t[-101.769353, 30.653369],\n\t\t\t\t\t\t[-101.769105, 30.653327],\n\t\t\t\t\t\t[-101.768806, 30.653133],\n\t\t\t\t\t\t[-101.768377, 30.652938],\n\t\t\t\t\t\t[-101.768420, 30.653077],\n\t\t\t\t\t\t[-101.652630, 30.619374],\n\t\t\t\t\t\t[-101.646245, 30.560763],\n\t\t\t\t\t\t[-101.740429, 30.420897],\n\t\t\t\t\t\t[-101.658530, 30.357861],\n\t\t\t\t\t\t[-101.758400, 30.288044],\n\t\t\t\t\t\t[-101.760924, 29.781802],\n\t\t\t\t\t\t[-101.761839, 29.777187]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48461\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"461\",\n\t\t\t\t\"NAME\": \"Upton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1241.324000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-102.318050, 31.651327],\n\t\t\t\t\t\t[-102.288782, 31.651370],\n\t\t\t\t\t\t[-102.287345, 31.651276],\n\t\t\t\t\t\t[-101.775802, 31.651319],\n\t\t\t\t\t\t[-101.776191, 31.079784],\n\t\t\t\t\t\t[-102.301212, 31.086212],\n\t\t\t\t\t\t[-102.318050, 31.651327]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48465\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"465\",\n\t\t\t\t\"NAME\": \"Val Verde\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 3144.750000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.699932, 29.623897],\n\t\t\t\t\t\t[-100.699141, 29.419747],\n\t\t\t\t\t\t[-100.745564, 29.254809],\n\t\t\t\t\t\t[-100.793662, 29.242146],\n\t\t\t\t\t\t[-100.797671, 29.246943],\n\t\t\t\t\t\t[-100.954042, 29.347598],\n\t\t\t\t\t\t[-100.995607, 29.363403],\n\t\t\t\t\t\t[-101.037642, 29.414681],\n\t\t\t\t\t\t[-101.043364, 29.429880],\n\t\t\t\t\t\t[-101.060151, 29.458661],\n\t\t\t\t\t\t[-101.087149, 29.469414],\n\t\t\t\t\t\t[-101.137503, 29.473542],\n\t\t\t\t\t\t[-101.235275, 29.524854],\n\t\t\t\t\t\t[-101.247319, 29.618482],\n\t\t\t\t\t\t[-101.250383, 29.624171],\n\t\t\t\t\t\t[-101.314135, 29.659054],\n\t\t\t\t\t\t[-101.343743, 29.662047],\n\t\t\t\t\t\t[-101.403926, 29.757587],\n\t\t\t\t\t\t[-101.455007, 29.770188],\n\t\t\t\t\t\t[-101.625958, 29.771063],\n\t\t\t\t\t\t[-101.635128, 29.758675],\n\t\t\t\t\t\t[-101.646418, 29.754304],\n\t\t\t\t\t\t[-101.761839, 29.777187],\n\t\t\t\t\t\t[-101.760924, 29.781802],\n\t\t\t\t\t\t[-101.758400, 30.288044],\n\t\t\t\t\t\t[-100.960643, 30.287776],\n\t\t\t\t\t\t[-100.700393, 30.288276],\n\t\t\t\t\t\t[-100.699932, 29.623897]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48473\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"473\",\n\t\t\t\t\"NAME\": \"Waller\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 513.430000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.871864, 30.241108],\n\t\t\t\t\t\t[-95.842138, 30.243445],\n\t\t\t\t\t\t[-95.804872, 30.245645],\n\t\t\t\t\t\t[-95.804306, 30.245570],\n\t\t\t\t\t\t[-95.803330, 30.090096],\n\t\t\t\t\t\t[-95.960733, 30.163415],\n\t\t\t\t\t\t[-95.826220, 29.788280],\n\t\t\t\t\t\t[-96.032711, 29.727944],\n\t\t\t\t\t\t[-96.049234, 29.803187],\n\t\t\t\t\t\t[-96.121313, 29.841963],\n\t\t\t\t\t\t[-96.122754, 29.968545],\n\t\t\t\t\t\t[-96.084541, 30.005137],\n\t\t\t\t\t\t[-96.146052, 30.070224],\n\t\t\t\t\t\t[-96.191418, 30.134669],\n\t\t\t\t\t\t[-96.159010, 30.206613],\n\t\t\t\t\t\t[-96.093165, 30.225187],\n\t\t\t\t\t\t[-95.872022, 30.241097],\n\t\t\t\t\t\t[-95.871864, 30.241108]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48479\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"479\",\n\t\t\t\t\"NAME\": \"Webb\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 3361.482000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.954669, 27.269397],\n\t\t\t\t\t\t[-99.333610, 27.273223],\n\t\t\t\t\t\t[-99.370621, 27.319174],\n\t\t\t\t\t\t[-99.453949, 27.264673],\n\t\t\t\t\t\t[-99.463309, 27.268437],\n\t\t\t\t\t\t[-99.470880, 27.265444],\n\t\t\t\t\t\t[-99.494678, 27.277595],\n\t\t\t\t\t\t[-99.529654, 27.306051],\n\t\t\t\t\t\t[-99.536443, 27.312538],\n\t\t\t\t\t\t[-99.537771, 27.316073],\n\t\t\t\t\t\t[-99.506960, 27.356420],\n\t\t\t\t\t\t[-99.492831, 27.390491],\n\t\t\t\t\t\t[-99.487704, 27.409924],\n\t\t\t\t\t\t[-99.480219, 27.485796],\n\t\t\t\t\t\t[-99.519381, 27.573569],\n\t\t\t\t\t\t[-99.541644, 27.605772],\n\t\t\t\t\t\t[-99.600619, 27.641314],\n\t\t\t\t\t\t[-99.623478, 27.644136],\n\t\t\t\t\t\t[-99.626294, 27.642450],\n\t\t\t\t\t\t[-99.627123, 27.638412],\n\t\t\t\t\t\t[-99.666175, 27.638324],\n\t\t\t\t\t\t[-99.843463, 27.774560],\n\t\t\t\t\t\t[-99.876174, 27.806276],\n\t\t\t\t\t\t[-99.901486, 27.864162],\n\t\t\t\t\t\t[-99.904385, 27.875284],\n\t\t\t\t\t\t[-99.895828, 27.904178],\n\t\t\t\t\t\t[-99.922046, 27.922119],\n\t\t\t\t\t\t[-99.991447, 27.994560],\n\t\t\t\t\t\t[-100.057049, 28.095656],\n\t\t\t\t\t\t[-100.080868, 28.137192],\n\t\t\t\t\t\t[-100.083393, 28.144035],\n\t\t\t\t\t\t[-100.088143, 28.147503],\n\t\t\t\t\t\t[-100.144140, 28.168238],\n\t\t\t\t\t\t[-100.171323, 28.176230],\n\t\t\t\t\t\t[-100.202448, 28.190554],\n\t\t\t\t\t\t[-100.209464, 28.196866],\n\t\t\t\t\t\t[-100.113719, 28.197819],\n\t\t\t\t\t\t[-99.394177, 28.204627],\n\t\t\t\t\t\t[-99.388946, 28.030419],\n\t\t\t\t\t\t[-98.803325, 28.057480],\n\t\t\t\t\t\t[-98.798323, 27.354029],\n\t\t\t\t\t\t[-98.798087, 27.268012],\n\t\t\t\t\t\t[-98.954669, 27.269397]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48487\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"487\",\n\t\t\t\t\"NAME\": \"Wilbarger\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 970.844000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.211423, 34.337897],\n\t\t\t\t\t\t[-99.211396, 34.337688],\n\t\t\t\t\t\t[-99.209724, 34.324935],\n\t\t\t\t\t\t[-99.211600, 34.313970],\n\t\t\t\t\t\t[-99.211648, 34.292232],\n\t\t\t\t\t\t[-99.190890, 34.215251],\n\t\t\t\t\t\t[-99.157114, 34.207414],\n\t\t\t\t\t\t[-99.119204, 34.201747],\n\t\t\t\t\t\t[-99.060344, 34.204761],\n\t\t\t\t\t\t[-98.966743, 34.201185],\n\t\t\t\t\t\t[-98.952527, 34.195621],\n\t\t\t\t\t\t[-98.953088, 33.834000],\n\t\t\t\t\t\t[-99.475650, 33.834005],\n\t\t\t\t\t\t[-99.475294, 34.085618],\n\t\t\t\t\t\t[-99.475115, 34.395930],\n\t\t\t\t\t\t[-99.474161, 34.398052],\n\t\t\t\t\t\t[-99.453477, 34.388756],\n\t\t\t\t\t\t[-99.440760, 34.374123],\n\t\t\t\t\t\t[-99.407168, 34.372605],\n\t\t\t\t\t\t[-99.398635, 34.375832],\n\t\t\t\t\t\t[-99.356713, 34.442144],\n\t\t\t\t\t\t[-99.261321, 34.403499],\n\t\t\t\t\t\t[-99.211423, 34.337897]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48495\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"495\",\n\t\t\t\t\"NAME\": \"Winkler\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 841.107000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-102.799086, 32.085795],\n\t\t\t\t\t\t[-102.798939, 31.651783],\n\t\t\t\t\t\t[-102.801793, 31.651306],\n\t\t\t\t\t\t[-103.327538, 31.651420],\n\t\t\t\t\t\t[-103.326501, 32.000370],\n\t\t\t\t\t\t[-103.278521, 32.000419],\n\t\t\t\t\t\t[-103.270383, 32.000326],\n\t\t\t\t\t\t[-103.267708, 32.000324],\n\t\t\t\t\t\t[-103.267633, 32.000475],\n\t\t\t\t\t\t[-103.215641, 32.000513],\n\t\t\t\t\t\t[-103.088698, 32.000453],\n\t\t\t\t\t\t[-103.085876, 32.000465],\n\t\t\t\t\t\t[-103.064423, 32.000518],\n\t\t\t\t\t\t[-103.064344, 32.087051],\n\t\t\t\t\t\t[-102.799086, 32.085795]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48501\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"501\",\n\t\t\t\t\"NAME\": \"Yoakum\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 799.708000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-102.595023, 32.958831],\n\t\t\t\t\t\t[-103.064657, 32.959097],\n\t\t\t\t\t\t[-103.064679, 32.964373],\n\t\t\t\t\t\t[-103.064625, 32.999899],\n\t\t\t\t\t\t[-103.064452, 33.010290],\n\t\t\t\t\t\t[-103.063980, 33.038693],\n\t\t\t\t\t\t[-103.063905, 33.042055],\n\t\t\t\t\t\t[-103.060103, 33.219225],\n\t\t\t\t\t\t[-103.057856, 33.315234],\n\t\t\t\t\t\t[-103.057487, 33.329477],\n\t\t\t\t\t\t[-103.056655, 33.388416],\n\t\t\t\t\t\t[-102.594836, 33.388489],\n\t\t\t\t\t\t[-102.595023, 32.958831]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48505\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"505\",\n\t\t\t\t\"NAME\": \"Zapata\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 998.412000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.954230, 26.785694],\n\t\t\t\t\t\t[-99.011112, 26.675023],\n\t\t\t\t\t\t[-99.172058, 26.570860],\n\t\t\t\t\t\t[-99.208951, 26.689489],\n\t\t\t\t\t\t[-99.242444, 26.788262],\n\t\t\t\t\t\t[-99.268613, 26.843213],\n\t\t\t\t\t\t[-99.321819, 26.906846],\n\t\t\t\t\t\t[-99.379149, 26.934490],\n\t\t\t\t\t\t[-99.446524, 27.023008],\n\t\t\t\t\t\t[-99.452316, 27.062669],\n\t\t\t\t\t\t[-99.451035, 27.066765],\n\t\t\t\t\t\t[-99.446593, 27.070593],\n\t\t\t\t\t\t[-99.429879, 27.094323],\n\t\t\t\t\t\t[-99.426348, 27.176262],\n\t\t\t\t\t\t[-99.441549, 27.249920],\n\t\t\t\t\t\t[-99.452391, 27.264046],\n\t\t\t\t\t\t[-99.453949, 27.264673],\n\t\t\t\t\t\t[-99.370621, 27.319174],\n\t\t\t\t\t\t[-99.333610, 27.273223],\n\t\t\t\t\t\t[-98.954669, 27.269397],\n\t\t\t\t\t\t[-98.954230, 26.785694]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US49003\",\n\t\t\t\t\"STATE\": \"49\",\n\t\t\t\t\"COUNTY\": \"003\",\n\t\t\t\t\"NAME\": \"Box Elder\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 5745.551000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-111.885476, 41.426435],\n\t\t\t\t\t\t[-111.959100, 41.433706],\n\t\t\t\t\t\t[-112.028376, 41.336439],\n\t\t\t\t\t\t[-112.237877, 41.336739],\n\t\t\t\t\t\t[-112.493393, 41.076735],\n\t\t\t\t\t\t[-112.799307, 41.000236],\n\t\t\t\t\t\t[-114.042145, 40.999926],\n\t\t\t\t\t\t[-114.039882, 41.741991],\n\t\t\t\t\t\t[-114.041152, 41.850595],\n\t\t\t\t\t\t[-114.041107, 41.850573],\n\t\t\t\t\t\t[-114.041723, 41.993720],\n\t\t\t\t\t\t[-113.893261, 41.988057],\n\t\t\t\t\t\t[-113.796082, 41.989104],\n\t\t\t\t\t\t[-113.764530, 41.989459],\n\t\t\t\t\t\t[-113.431563, 41.993799],\n\t\t\t\t\t\t[-113.402230, 41.994161],\n\t\t\t\t\t\t[-113.396497, 41.994250],\n\t\t\t\t\t\t[-113.000821, 41.998223],\n\t\t\t\t\t\t[-113.000820, 41.998223],\n\t\t\t\t\t\t[-112.979218, 41.998263],\n\t\t\t\t\t\t[-112.909587, 41.998791],\n\t\t\t\t\t\t[-112.882367, 41.998922],\n\t\t\t\t\t\t[-112.880619, 41.998921],\n\t\t\t\t\t\t[-112.833125, 41.999345],\n\t\t\t\t\t\t[-112.833084, 41.999305],\n\t\t\t\t\t\t[-112.788542, 41.999681],\n\t\t\t\t\t\t[-112.709375, 42.000309],\n\t\t\t\t\t\t[-112.648019, 42.000307],\n\t\t\t\t\t\t[-112.450814, 42.000953],\n\t\t\t\t\t\t[-112.450567, 42.001092],\n\t\t\t\t\t\t[-112.386170, 42.001126],\n\t\t\t\t\t\t[-112.264936, 42.000991],\n\t\t\t\t\t\t[-112.239107, 42.001217],\n\t\t\t\t\t\t[-112.163956, 41.996708],\n\t\t\t\t\t\t[-112.052735, 41.866015],\n\t\t\t\t\t\t[-112.051815, 41.699789],\n\t\t\t\t\t\t[-111.982078, 41.534032],\n\t\t\t\t\t\t[-111.916568, 41.538573],\n\t\t\t\t\t\t[-111.885476, 41.426435]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48005\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"005\",\n\t\t\t\t\"NAME\": \"Angelina\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 797.778000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.326616, 31.224754],\n\t\t\t\t\t\t[-94.129632, 31.099280],\n\t\t\t\t\t\t[-94.457820, 31.033326],\n\t\t\t\t\t\t[-94.561943, 31.058952],\n\t\t\t\t\t\t[-94.842947, 31.146578],\n\t\t\t\t\t\t[-94.909502, 31.337059],\n\t\t\t\t\t\t[-94.958110, 31.386930],\n\t\t\t\t\t\t[-94.959415, 31.388884],\n\t\t\t\t\t\t[-94.966254, 31.391205],\n\t\t\t\t\t\t[-94.964521, 31.395558],\n\t\t\t\t\t\t[-94.967634, 31.397412],\n\t\t\t\t\t\t[-94.969369, 31.396948],\n\t\t\t\t\t\t[-94.973581, 31.399759],\n\t\t\t\t\t\t[-94.977780, 31.399381],\n\t\t\t\t\t\t[-94.976068, 31.402000],\n\t\t\t\t\t\t[-94.976291, 31.405250],\n\t\t\t\t\t\t[-94.979364, 31.405975],\n\t\t\t\t\t\t[-94.976033, 31.407744],\n\t\t\t\t\t\t[-94.983053, 31.411593],\n\t\t\t\t\t\t[-94.984753, 31.413850],\n\t\t\t\t\t\t[-94.988061, 31.414417],\n\t\t\t\t\t\t[-94.990043, 31.413356],\n\t\t\t\t\t\t[-94.993832, 31.414220],\n\t\t\t\t\t\t[-94.994108, 31.417835],\n\t\t\t\t\t\t[-94.997132, 31.416780],\n\t\t\t\t\t\t[-94.998247, 31.420040],\n\t\t\t\t\t\t[-95.001258, 31.417949],\n\t\t\t\t\t\t[-95.005566, 31.421349],\n\t\t\t\t\t\t[-95.003345, 31.425710],\n\t\t\t\t\t\t[-95.000212, 31.428196],\n\t\t\t\t\t\t[-94.865857, 31.526916],\n\t\t\t\t\t\t[-94.728679, 31.457226],\n\t\t\t\t\t\t[-94.544888, 31.431715],\n\t\t\t\t\t\t[-94.530634, 31.398654],\n\t\t\t\t\t\t[-94.495874, 31.405728],\n\t\t\t\t\t\t[-94.326616, 31.224754]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48007\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"007\",\n\t\t\t\t\"NAME\": \"Aransas\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 252.074000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-96.853455, 28.061345],\n\t\t\t\t\t\t\t[-96.929053, 27.990440],\n\t\t\t\t\t\t\t[-96.966996, 27.950531],\n\t\t\t\t\t\t\t[-97.001441, 27.911442],\n\t\t\t\t\t\t\t[-97.031660, 27.869975],\n\t\t\t\t\t\t\t[-97.041799, 27.852926],\n\t\t\t\t\t\t\t[-97.045409, 27.837452],\n\t\t\t\t\t\t\t[-97.054724, 27.842419],\n\t\t\t\t\t\t\t[-97.055823, 27.843404],\n\t\t\t\t\t\t\t[-97.043226, 27.859119],\n\t\t\t\t\t\t\t[-97.013634, 27.906780],\n\t\t\t\t\t\t\t[-97.017955, 27.911494],\n\t\t\t\t\t\t\t[-97.016384, 27.917255],\n\t\t\t\t\t\t\t[-96.985745, 27.954048],\n\t\t\t\t\t\t\t[-96.977889, 27.976439],\n\t\t\t\t\t\t\t[-96.978805, 27.978272],\n\t\t\t\t\t\t\t[-96.980900, 27.978272],\n\t\t\t\t\t\t\t[-96.986007, 27.976177],\n\t\t\t\t\t\t\t[-96.986661, 27.980759],\n\t\t\t\t\t\t\t[-96.978282, 28.001709],\n\t\t\t\t\t\t\t[-96.967807, 28.020041],\n\t\t\t\t\t\t\t[-96.966759, 28.020368],\n\t\t\t\t\t\t\t[-96.965188, 28.013297],\n\t\t\t\t\t\t\t[-96.962569, 28.012381],\n\t\t\t\t\t\t\t[-96.952618, 28.016440],\n\t\t\t\t\t\t\t[-96.946988, 28.026522],\n\t\t\t\t\t\t\t[-96.932454, 28.035426],\n\t\t\t\t\t\t\t[-96.926430, 28.043413],\n\t\t\t\t\t\t\t[-96.929573, 28.051400],\n\t\t\t\t\t\t\t[-96.927085, 28.057292],\n\t\t\t\t\t\t\t[-96.906004, 28.076147],\n\t\t\t\t\t\t\t[-96.890947, 28.076802],\n\t\t\t\t\t\t\t[-96.886233, 28.084396],\n\t\t\t\t\t\t\t[-96.888328, 28.086622],\n\t\t\t\t\t\t\t[-96.889113, 28.099454],\n\t\t\t\t\t\t\t[-96.886887, 28.117130],\n\t\t\t\t\t\t\t[-96.879424, 28.131402],\n\t\t\t\t\t\t\t[-96.874972, 28.133236],\n\t\t\t\t\t\t\t[-96.870782, 28.131271],\n\t\t\t\t\t\t\t[-96.864628, 28.126296],\n\t\t\t\t\t\t\t[-96.857165, 28.115559],\n\t\t\t\t\t\t\t[-96.845380, 28.108881],\n\t\t\t\t\t\t\t[-96.830030, 28.111842],\n\t\t\t\t\t\t\t[-96.830861, 28.108000],\n\t\t\t\t\t\t\t[-96.837736, 28.099491],\n\t\t\t\t\t\t\t[-96.837646, 28.094673],\n\t\t\t\t\t\t\t[-96.844083, 28.084351],\n\t\t\t\t\t\t\t[-96.847129, 28.070604],\n\t\t\t\t\t\t\t[-96.853912, 28.063699],\n\t\t\t\t\t\t\t[-96.853455, 28.061345]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-96.791159, 28.319095],\n\t\t\t\t\t\t\t[-96.791761, 28.312170],\n\t\t\t\t\t\t\t[-96.806011, 28.296902],\n\t\t\t\t\t\t\t[-96.809573, 28.290287],\n\t\t\t\t\t\t\t[-96.806011, 28.282144],\n\t\t\t\t\t\t\t[-96.799302, 28.272716],\n\t\t\t\t\t\t\t[-96.787181, 28.255681],\n\t\t\t\t\t\t\t[-96.787181, 28.250083],\n\t\t\t\t\t\t\t[-96.800413, 28.224128],\n\t\t\t\t\t\t\t[-96.810037, 28.217086],\n\t\t\t\t\t\t\t[-96.842143, 28.193594],\n\t\t\t\t\t\t\t[-96.872678, 28.176291],\n\t\t\t\t\t\t\t[-96.898123, 28.152881],\n\t\t\t\t\t\t\t[-96.910337, 28.147283],\n\t\t\t\t\t\t\t[-96.934765, 28.123873],\n\t\t\t\t\t\t\t[-96.962755, 28.123365],\n\t\t\t\t\t\t\t[-97.000414, 28.137614],\n\t\t\t\t\t\t\t[-97.007539, 28.136087],\n\t\t\t\t\t\t\t[-97.027386, 28.124382],\n\t\t\t\t\t\t\t[-97.028913, 28.117258],\n\t\t\t\t\t\t\t[-97.022806, 28.107588],\n\t\t\t\t\t\t\t[-97.023824, 28.103517],\n\t\t\t\t\t\t\t[-97.031966, 28.093848],\n\t\t\t\t\t\t\t[-97.035528, 28.084688],\n\t\t\t\t\t\t\t[-97.035528, 28.074000],\n\t\t\t\t\t\t\t[-97.031457, 28.053644],\n\t\t\t\t\t\t\t[-97.025859, 28.041939],\n\t\t\t\t\t\t\t[-97.030948, 28.033288],\n\t\t\t\t\t\t\t[-97.040618, 28.028708],\n\t\t\t\t\t\t\t[-97.048760, 28.022092],\n\t\t\t\t\t\t\t[-97.061992, 27.996138],\n\t\t\t\t\t\t\t[-97.075732, 27.986977],\n\t\t\t\t\t\t\t[-97.121534, 27.923364],\n\t\t\t\t\t\t\t[-97.129168, 27.919801],\n\t\t\t\t\t\t\t[-97.134801, 27.902467],\n\t\t\t\t\t\t\t[-97.259401, 28.073196],\n\t\t\t\t\t\t\t[-97.260818, 28.075759],\n\t\t\t\t\t\t\t[-97.144916, 28.102622],\n\t\t\t\t\t\t\t[-97.023586, 28.187657],\n\t\t\t\t\t\t\t[-97.123072, 28.272817],\n\t\t\t\t\t\t\t[-96.791159, 28.319095]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48037\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"037\",\n\t\t\t\t\"NAME\": \"Bowie\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 885.006000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.746096, 33.703016],\n\t\t\t\t\t\t[-94.735128, 33.691267],\n\t\t\t\t\t\t[-94.660964, 33.660322],\n\t\t\t\t\t\t[-94.528380, 33.615995],\n\t\t\t\t\t\t[-94.524055, 33.615765],\n\t\t\t\t\t\t[-94.490684, 33.625586],\n\t\t\t\t\t\t[-94.487611, 33.628544],\n\t\t\t\t\t\t[-94.485875, 33.637867],\n\t\t\t\t\t\t[-94.478366, 33.620847],\n\t\t\t\t\t\t[-94.470963, 33.605940],\n\t\t\t\t\t\t[-94.464336, 33.598819],\n\t\t\t\t\t\t[-94.409329, 33.568265],\n\t\t\t\t\t\t[-94.355945, 33.543180],\n\t\t\t\t\t\t[-94.257801, 33.582508],\n\t\t\t\t\t\t[-94.252656, 33.586144],\n\t\t\t\t\t\t[-94.181805, 33.593217],\n\t\t\t\t\t\t[-94.085243, 33.575546],\n\t\t\t\t\t\t[-94.066846, 33.568909],\n\t\t\t\t\t\t[-94.043450, 33.552253],\n\t\t\t\t\t\t[-94.043428, 33.551425],\n\t\t\t\t\t\t[-94.043375, 33.542315],\n\t\t\t\t\t\t[-94.043009, 33.493039],\n\t\t\t\t\t\t[-94.043279, 33.491030],\n\t\t\t\t\t\t[-94.043188, 33.470324],\n\t\t\t\t\t\t[-94.042988, 33.435824],\n\t\t\t\t\t\t[-94.042988, 33.431024],\n\t\t\t\t\t\t[-94.042887, 33.420225],\n\t\t\t\t\t\t[-94.043053, 33.377716],\n\t\t\t\t\t\t[-94.042869, 33.371170],\n\t\t\t\t\t\t[-94.043128, 33.358757],\n\t\t\t\t\t\t[-94.043067, 33.352097],\n\t\t\t\t\t\t[-94.043067, 33.347351],\n\t\t\t\t\t\t[-94.043067, 33.330498],\n\t\t\t\t\t\t[-94.042990, 33.271243],\n\t\t\t\t\t\t[-94.056144, 33.298036],\n\t\t\t\t\t\t[-94.218517, 33.296936],\n\t\t\t\t\t\t[-94.231333, 33.241073],\n\t\t\t\t\t\t[-94.379409, 33.255651],\n\t\t\t\t\t\t[-94.415739, 33.284017],\n\t\t\t\t\t\t[-94.517868, 33.282096],\n\t\t\t\t\t\t[-94.572463, 33.249826],\n\t\t\t\t\t\t[-94.652260, 33.268861],\n\t\t\t\t\t\t[-94.746925, 33.328938],\n\t\t\t\t\t\t[-94.746096, 33.703016]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48043\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"043\",\n\t\t\t\t\"NAME\": \"Brewster\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 6183.733000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-103.792705, 29.262931],\n\t\t\t\t\t\t[-103.798159, 29.999606],\n\t\t\t\t\t\t[-103.800680, 30.412527],\n\t\t\t\t\t\t[-103.439976, 30.665939],\n\t\t\t\t\t\t[-103.195667, 30.495574],\n\t\t\t\t\t\t[-102.567049, 30.052808],\n\t\t\t\t\t\t[-102.320819, 29.878933],\n\t\t\t\t\t\t[-102.320819, 29.875193],\n\t\t\t\t\t\t[-102.323389, 29.875193],\n\t\t\t\t\t\t[-102.364647, 29.843624],\n\t\t\t\t\t\t[-102.386677, 29.761480],\n\t\t\t\t\t\t[-102.404422, 29.765105],\n\t\t\t\t\t\t[-102.434063, 29.776700],\n\t\t\t\t\t\t[-102.486819, 29.786725],\n\t\t\t\t\t\t[-102.500741, 29.781446],\n\t\t\t\t\t\t[-102.554915, 29.748966],\n\t\t\t\t\t\t[-102.612879, 29.748182],\n\t\t\t\t\t\t[-102.665194, 29.737421],\n\t\t\t\t\t\t[-102.689738, 29.722349],\n\t\t\t\t\t\t[-102.698347, 29.695591],\n\t\t\t\t\t\t[-102.745494, 29.592967],\n\t\t\t\t\t\t[-102.781807, 29.542454],\n\t\t\t\t\t\t[-102.808692, 29.522319],\n\t\t\t\t\t\t[-102.831938, 29.437943],\n\t\t\t\t\t\t[-102.833320, 29.408981],\n\t\t\t\t\t\t[-102.875813, 29.353715],\n\t\t\t\t\t\t[-102.895886, 29.284778],\n\t\t\t\t\t\t[-102.886308, 29.245680],\n\t\t\t\t\t\t[-102.881135, 29.246022],\n\t\t\t\t\t\t[-102.871347, 29.241625],\n\t\t\t\t\t\t[-102.866846, 29.225015],\n\t\t\t\t\t\t[-102.878020, 29.214698],\n\t\t\t\t\t\t[-102.950890, 29.176835],\n\t\t\t\t\t\t[-102.995688, 29.161219],\n\t\t\t\t\t\t[-103.104430, 29.033590],\n\t\t\t\t\t\t[-103.115328, 28.985270],\n\t\t\t\t\t\t[-103.156646, 28.972831],\n\t\t\t\t\t\t[-103.163865, 28.972099],\n\t\t\t\t\t\t[-103.281903, 28.990089],\n\t\t\t\t\t\t[-103.383508, 29.024112],\n\t\t\t\t\t\t[-103.471037, 29.075368],\n\t\t\t\t\t\t[-103.470518, 29.085108],\n\t\t\t\t\t\t[-103.503236, 29.119110],\n\t\t\t\t\t\t[-103.525471, 29.137744],\n\t\t\t\t\t\t[-103.558679, 29.154962],\n\t\t\t\t\t\t[-103.610070, 29.165727],\n\t\t\t\t\t\t[-103.627067, 29.163336],\n\t\t\t\t\t\t[-103.714867, 29.184137],\n\t\t\t\t\t\t[-103.767814, 29.224954],\n\t\t\t\t\t\t[-103.792005, 29.262695],\n\t\t\t\t\t\t[-103.792705, 29.262931]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29183\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"183\",\n\t\t\t\t\"NAME\": \"St. Charles\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 560.435000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.571822, 38.681052],\n\t\t\t\t\t\t[-90.660509, 38.688551],\n\t\t\t\t\t\t[-90.732328, 38.639302],\n\t\t\t\t\t\t[-90.916554, 38.534725],\n\t\t\t\t\t\t[-90.964461, 38.547545],\n\t\t\t\t\t\t[-90.962200, 38.774200],\n\t\t\t\t\t\t[-90.958536, 38.870865],\n\t\t\t\t\t\t[-90.817827, 38.875966],\n\t\t\t\t\t\t[-90.778210, 38.922488],\n\t\t\t\t\t\t[-90.665870, 38.934195],\n\t\t\t\t\t\t[-90.663372, 38.928042],\n\t\t\t\t\t\t[-90.657254, 38.920270],\n\t\t\t\t\t\t[-90.625122, 38.888654],\n\t\t\t\t\t\t[-90.583388, 38.869030],\n\t\t\t\t\t\t[-90.566557, 38.868847],\n\t\t\t\t\t\t[-90.555693, 38.870785],\n\t\t\t\t\t\t[-90.544030, 38.875050],\n\t\t\t\t\t\t[-90.507451, 38.902767],\n\t\t\t\t\t\t[-90.486974, 38.925982],\n\t\t\t\t\t\t[-90.482725, 38.934712],\n\t\t\t\t\t\t[-90.482419, 38.944460],\n\t\t\t\t\t\t[-90.472122, 38.958838],\n\t\t\t\t\t\t[-90.467784, 38.961809],\n\t\t\t\t\t\t[-90.450809, 38.967758],\n\t\t\t\t\t\t[-90.450792, 38.967764],\n\t\t\t\t\t\t[-90.406367, 38.962554],\n\t\t\t\t\t\t[-90.385751, 38.956848],\n\t\t\t\t\t\t[-90.275932, 38.926453],\n\t\t\t\t\t\t[-90.250248, 38.919344],\n\t\t\t\t\t\t[-90.225850, 38.908923],\n\t\t\t\t\t\t[-90.207035, 38.898954],\n\t\t\t\t\t\t[-90.113327, 38.849306],\n\t\t\t\t\t\t[-90.109407, 38.843548],\n\t\t\t\t\t\t[-90.109107, 38.837448],\n\t\t\t\t\t\t[-90.114707, 38.815048],\n\t\t\t\t\t\t[-90.117707, 38.805748],\n\t\t\t\t\t\t[-90.298743, 38.887759],\n\t\t\t\t\t\t[-90.482299, 38.764348],\n\t\t\t\t\t\t[-90.495790, 38.748256],\n\t\t\t\t\t\t[-90.528024, 38.733702],\n\t\t\t\t\t\t[-90.531340, 38.731178],\n\t\t\t\t\t\t[-90.533638, 38.726871],\n\t\t\t\t\t\t[-90.530378, 38.708195],\n\t\t\t\t\t\t[-90.530363, 38.698630],\n\t\t\t\t\t\t[-90.533785, 38.691915],\n\t\t\t\t\t\t[-90.541612, 38.685267],\n\t\t\t\t\t\t[-90.554722, 38.681552],\n\t\t\t\t\t\t[-90.571822, 38.681052]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29189\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"189\",\n\t\t\t\t\"NAME\": \"St. Louis\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 507.800000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.340297, 38.386998],\n\t\t\t\t\t\t[-90.376841, 38.452861],\n\t\t\t\t\t\t[-90.405262, 38.501153],\n\t\t\t\t\t\t[-90.591123, 38.501652],\n\t\t\t\t\t\t[-90.736319, 38.466645],\n\t\t\t\t\t\t[-90.732328, 38.639302],\n\t\t\t\t\t\t[-90.660509, 38.688551],\n\t\t\t\t\t\t[-90.571822, 38.681052],\n\t\t\t\t\t\t[-90.554722, 38.681552],\n\t\t\t\t\t\t[-90.541612, 38.685267],\n\t\t\t\t\t\t[-90.533785, 38.691915],\n\t\t\t\t\t\t[-90.530363, 38.698630],\n\t\t\t\t\t\t[-90.530378, 38.708195],\n\t\t\t\t\t\t[-90.533638, 38.726871],\n\t\t\t\t\t\t[-90.531340, 38.731178],\n\t\t\t\t\t\t[-90.528024, 38.733702],\n\t\t\t\t\t\t[-90.495790, 38.748256],\n\t\t\t\t\t\t[-90.482299, 38.764348],\n\t\t\t\t\t\t[-90.298743, 38.887759],\n\t\t\t\t\t\t[-90.117707, 38.805748],\n\t\t\t\t\t\t[-90.123107, 38.798048],\n\t\t\t\t\t\t[-90.165082, 38.770618],\n\t\t\t\t\t\t[-90.251709, 38.718948],\n\t\t\t\t\t\t[-90.301911, 38.655652],\n\t\t\t\t\t\t[-90.303600, 38.645003],\n\t\t\t\t\t\t[-90.304812, 38.642444],\n\t\t\t\t\t\t[-90.306433, 38.633590],\n\t\t\t\t\t\t[-90.257773, 38.532008],\n\t\t\t\t\t\t[-90.260314, 38.528352],\n\t\t\t\t\t\t[-90.263064, 38.520220],\n\t\t\t\t\t\t[-90.279215, 38.472453],\n\t\t\t\t\t\t[-90.285215, 38.443453],\n\t\t\t\t\t\t[-90.295316, 38.426753],\n\t\t\t\t\t\t[-90.340297, 38.386998]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29199\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"199\",\n\t\t\t\t\"NAME\": \"Scotland\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 436.671000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.949747, 40.300832],\n\t\t\t\t\t\t[-92.347801, 40.302756],\n\t\t\t\t\t\t[-92.349897, 40.302733],\n\t\t\t\t\t\t[-92.349975, 40.346505],\n\t\t\t\t\t\t[-92.350807, 40.597273],\n\t\t\t\t\t\t[-92.350776, 40.597274],\n\t\t\t\t\t\t[-92.331445, 40.597714],\n\t\t\t\t\t\t[-92.331205, 40.597805],\n\t\t\t\t\t\t[-92.298754, 40.598469],\n\t\t\t\t\t\t[-92.236484, 40.599531],\n\t\t\t\t\t\t[-92.217603, 40.599832],\n\t\t\t\t\t\t[-92.201669, 40.599980],\n\t\t\t\t\t\t[-92.196162, 40.600069],\n\t\t\t\t\t\t[-92.179780, 40.600529],\n\t\t\t\t\t\t[-92.096387, 40.601830],\n\t\t\t\t\t\t[-92.092875, 40.602082],\n\t\t\t\t\t\t[-92.083200, 40.602244],\n\t\t\t\t\t\t[-92.082339, 40.602176],\n\t\t\t\t\t\t[-92.069521, 40.602772],\n\t\t\t\t\t\t[-92.067904, 40.602648],\n\t\t\t\t\t\t[-92.029649, 40.603713],\n\t\t\t\t\t\t[-91.998683, 40.604433],\n\t\t\t\t\t\t[-91.970988, 40.605112],\n\t\t\t\t\t\t[-91.943114, 40.605913],\n\t\t\t\t\t\t[-91.949747, 40.300832]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US24005\",\n\t\t\t\t\"STATE\": \"24\",\n\t\t\t\t\"COUNTY\": \"005\",\n\t\t\t\t\"NAME\": \"Baltimore\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 598.302000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.711894, 39.721103],\n\t\t\t\t\t\t[-76.569475, 39.721203],\n\t\t\t\t\t\t[-76.540573, 39.572236],\n\t\t\t\t\t\t[-76.536098, 39.561822],\n\t\t\t\t\t\t[-76.532400, 39.561556],\n\t\t\t\t\t\t[-76.531058, 39.555399],\n\t\t\t\t\t\t[-76.534063, 39.554618],\n\t\t\t\t\t\t[-76.531012, 39.543780],\n\t\t\t\t\t\t[-76.436980, 39.501964],\n\t\t\t\t\t\t[-76.377613, 39.424328],\n\t\t\t\t\t\t[-76.375991, 39.423786],\n\t\t\t\t\t\t[-76.374011, 39.422307],\n\t\t\t\t\t\t[-76.373519, 39.421432],\n\t\t\t\t\t\t[-76.370198, 39.413411],\n\t\t\t\t\t\t[-76.372230, 39.405576],\n\t\t\t\t\t\t[-76.361055, 39.400255],\n\t\t\t\t\t\t[-76.359269, 39.394046],\n\t\t\t\t\t\t[-76.358781, 39.390305],\n\t\t\t\t\t\t[-76.357753, 39.389790],\n\t\t\t\t\t\t[-76.323680, 39.374407],\n\t\t\t\t\t\t[-76.330027, 39.356139],\n\t\t\t\t\t\t[-76.341443, 39.354217],\n\t\t\t\t\t\t[-76.339942, 39.350169],\n\t\t\t\t\t\t[-76.335412, 39.337949],\n\t\t\t\t\t\t[-76.334401, 39.335222],\n\t\t\t\t\t\t[-76.334021, 39.334197],\n\t\t\t\t\t\t[-76.333924, 39.333935],\n\t\t\t\t\t\t[-76.338898, 39.325783],\n\t\t\t\t\t\t[-76.339570, 39.324681],\n\t\t\t\t\t\t[-76.333820, 39.319611],\n\t\t\t\t\t\t[-76.327579, 39.314108],\n\t\t\t\t\t\t[-76.337858, 39.305799],\n\t\t\t\t\t\t[-76.339817, 39.304216],\n\t\t\t\t\t\t[-76.341432, 39.302910],\n\t\t\t\t\t\t[-76.353205, 39.310650],\n\t\t\t\t\t\t[-76.354817, 39.311709],\n\t\t\t\t\t\t[-76.355495, 39.312155],\n\t\t\t\t\t\t[-76.364390, 39.311840],\n\t\t\t\t\t\t[-76.365532, 39.310950],\n\t\t\t\t\t\t[-76.380662, 39.299161],\n\t\t\t\t\t\t[-76.380734, 39.298765],\n\t\t\t\t\t\t[-76.383021, 39.286231],\n\t\t\t\t\t\t[-76.383345, 39.284455],\n\t\t\t\t\t\t[-76.383891, 39.281465],\n\t\t\t\t\t\t[-76.384901, 39.275928],\n\t\t\t\t\t\t[-76.385151, 39.275766],\n\t\t\t\t\t\t[-76.395136, 39.269293],\n\t\t\t\t\t\t[-76.395301, 39.269042],\n\t\t\t\t\t\t[-76.400094, 39.261753],\n\t\t\t\t\t\t[-76.400187, 39.261612],\n\t\t\t\t\t\t[-76.401103, 39.260219],\n\t\t\t\t\t\t[-76.402047, 39.258783],\n\t\t\t\t\t\t[-76.402355, 39.258315],\n\t\t\t\t\t\t[-76.401911, 39.258053],\n\t\t\t\t\t\t[-76.386937, 39.249216],\n\t\t\t\t\t\t[-76.381380, 39.249508],\n\t\t\t\t\t\t[-76.382358, 39.247292],\n\t\t\t\t\t\t[-76.384380, 39.242708],\n\t\t\t\t\t\t[-76.384699, 39.242242],\n\t\t\t\t\t\t[-76.389380, 39.235408],\n\t\t\t\t\t\t[-76.389563, 39.235261],\n\t\t\t\t\t\t[-76.393626, 39.232012],\n\t\t\t\t\t\t[-76.394381, 39.231408],\n\t\t\t\t\t\t[-76.398314, 39.229450],\n\t\t\t\t\t\t[-76.399122, 39.229048],\n\t\t\t\t\t\t[-76.417620, 39.219838],\n\t\t\t\t\t\t[-76.417681, 39.219808],\n\t\t\t\t\t\t[-76.418290, 39.218677],\n\t\t\t\t\t\t[-76.419201, 39.216988],\n\t\t\t\t\t\t[-76.425281, 39.205708],\n\t\t\t\t\t\t[-76.425413, 39.205629],\n\t\t\t\t\t\t[-76.441411, 39.196049],\n\t\t\t\t\t\t[-76.442482, 39.195408],\n\t\t\t\t\t\t[-76.447621, 39.197977],\n\t\t\t\t\t\t[-76.461560, 39.204947],\n\t\t\t\t\t\t[-76.462679, 39.205506],\n\t\t\t\t\t\t[-76.463483, 39.205908],\n\t\t\t\t\t\t[-76.471126, 39.205540],\n\t\t\t\t\t\t[-76.480083, 39.205108],\n\t\t\t\t\t\t[-76.482153, 39.204426],\n\t\t\t\t\t\t[-76.485527, 39.203314],\n\t\t\t\t\t\t[-76.486371, 39.203036],\n\t\t\t\t\t\t[-76.488883, 39.202208],\n\t\t\t\t\t\t[-76.489505, 39.202378],\n\t\t\t\t\t\t[-76.489777, 39.202453],\n\t\t\t\t\t\t[-76.490770, 39.202724],\n\t\t\t\t\t\t[-76.497977, 39.204697],\n\t\t\t\t\t\t[-76.498384, 39.204808],\n\t\t\t\t\t\t[-76.500086, 39.207798],\n\t\t\t\t\t\t[-76.500834, 39.209113],\n\t\t\t\t\t\t[-76.500984, 39.209376],\n\t\t\t\t\t\t[-76.519804, 39.222946],\n\t\t\t\t\t\t[-76.520584, 39.223508],\n\t\t\t\t\t\t[-76.520941, 39.223240],\n\t\t\t\t\t\t[-76.528587, 39.217492],\n\t\t\t\t\t\t[-76.529486, 39.218408],\n\t\t\t\t\t\t[-76.529623, 39.272307],\n\t\t\t\t\t\t[-76.529781, 39.273101],\n\t\t\t\t\t\t[-76.529787, 39.281872],\n\t\t\t\t\t\t[-76.529934, 39.283082],\n\t\t\t\t\t\t[-76.529663, 39.284203],\n\t\t\t\t\t\t[-76.529592, 39.284852],\n\t\t\t\t\t\t[-76.529681, 39.288152],\n\t\t\t\t\t\t[-76.529552, 39.289337],\n\t\t\t\t\t\t[-76.529499, 39.290168],\n\t\t\t\t\t\t[-76.529689, 39.290993],\n\t\t\t\t\t\t[-76.529708, 39.291895],\n\t\t\t\t\t\t[-76.529793, 39.292783],\n\t\t\t\t\t\t[-76.529510, 39.297180],\n\t\t\t\t\t\t[-76.529624, 39.298179],\n\t\t\t\t\t\t[-76.529775, 39.298731],\n\t\t\t\t\t\t[-76.529611, 39.302911],\n\t\t\t\t\t\t[-76.529685, 39.304661],\n\t\t\t\t\t\t[-76.529686, 39.305506],\n\t\t\t\t\t\t[-76.529743, 39.305964],\n\t\t\t\t\t\t[-76.529693, 39.306474],\n\t\t\t\t\t\t[-76.529697, 39.307717],\n\t\t\t\t\t\t[-76.529786, 39.308534],\n\t\t\t\t\t\t[-76.529786, 39.310391],\n\t\t\t\t\t\t[-76.529785, 39.356552],\n\t\t\t\t\t\t[-76.529793, 39.372058],\n\t\t\t\t\t\t[-76.609778, 39.372202],\n\t\t\t\t\t\t[-76.711313, 39.371933],\n\t\t\t\t\t\t[-76.711191, 39.362771],\n\t\t\t\t\t\t[-76.711342, 39.361225],\n\t\t\t\t\t\t[-76.711186, 39.354383],\n\t\t\t\t\t\t[-76.711054, 39.277889],\n\t\t\t\t\t\t[-76.688667, 39.268195],\n\t\t\t\t\t\t[-76.686048, 39.266885],\n\t\t\t\t\t\t[-76.685153, 39.266697],\n\t\t\t\t\t\t[-76.681644, 39.265032],\n\t\t\t\t\t\t[-76.678801, 39.263997],\n\t\t\t\t\t\t[-76.673432, 39.261281],\n\t\t\t\t\t\t[-76.667349, 39.258858],\n\t\t\t\t\t\t[-76.665567, 39.257982],\n\t\t\t\t\t\t[-76.653393, 39.252703],\n\t\t\t\t\t\t[-76.651491, 39.251983],\n\t\t\t\t\t\t[-76.647256, 39.250060],\n\t\t\t\t\t\t[-76.644212, 39.248924],\n\t\t\t\t\t\t[-76.639428, 39.246568],\n\t\t\t\t\t\t[-76.637267, 39.245648],\n\t\t\t\t\t\t[-76.632589, 39.243406],\n\t\t\t\t\t\t[-76.631132, 39.242899],\n\t\t\t\t\t\t[-76.618612, 39.237398],\n\t\t\t\t\t\t[-76.630674, 39.224187],\n\t\t\t\t\t\t[-76.639404, 39.224029],\n\t\t\t\t\t\t[-76.647219, 39.229036],\n\t\t\t\t\t\t[-76.661730, 39.231135],\n\t\t\t\t\t\t[-76.668744, 39.228989],\n\t\t\t\t\t\t[-76.680177, 39.220163],\n\t\t\t\t\t\t[-76.687745, 39.221292],\n\t\t\t\t\t\t[-76.696750, 39.217399],\n\t\t\t\t\t\t[-76.697085, 39.214092],\n\t\t\t\t\t\t[-76.705184, 39.215548],\n\t\t\t\t\t\t[-76.723811, 39.228181],\n\t\t\t\t\t\t[-76.739528, 39.232163],\n\t\t\t\t\t\t[-76.763830, 39.251312],\n\t\t\t\t\t\t[-76.882274, 39.350185],\n\t\t\t\t\t\t[-76.879738, 39.356846],\n\t\t\t\t\t\t[-76.873378, 39.357150],\n\t\t\t\t\t\t[-76.880701, 39.360469],\n\t\t\t\t\t\t[-76.879788, 39.365858],\n\t\t\t\t\t\t[-76.868387, 39.494074],\n\t\t\t\t\t\t[-76.866700, 39.500902],\n\t\t\t\t\t\t[-76.787096, 39.720802],\n\t\t\t\t\t\t[-76.715594, 39.721103],\n\t\t\t\t\t\t[-76.711894, 39.721103]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US24025\",\n\t\t\t\t\"STATE\": \"24\",\n\t\t\t\t\"COUNTY\": \"025\",\n\t\t\t\t\"NAME\": \"Harford\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 437.089000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.569475, 39.721203],\n\t\t\t\t\t\t[-76.569389, 39.721203],\n\t\t\t\t\t\t[-76.517087, 39.721304],\n\t\t\t\t\t\t[-76.491887, 39.721304],\n\t\t\t\t\t\t[-76.418784, 39.721204],\n\t\t\t\t\t\t[-76.418684, 39.721304],\n\t\t\t\t\t\t[-76.395583, 39.721204],\n\t\t\t\t\t\t[-76.380583, 39.721304],\n\t\t\t\t\t\t[-76.380083, 39.721304],\n\t\t\t\t\t\t[-76.239805, 39.721305],\n\t\t\t\t\t\t[-76.233277, 39.721305],\n\t\t\t\t\t\t[-76.233259, 39.721305],\n\t\t\t\t\t\t[-76.144081, 39.617709],\n\t\t\t\t\t\t[-76.135674, 39.613108],\n\t\t\t\t\t\t[-76.106161, 39.580610],\n\t\t\t\t\t\t[-76.085972, 39.559011],\n\t\t\t\t\t\t[-76.075714, 39.543032],\n\t\t\t\t\t\t[-76.096072, 39.536912],\n\t\t\t\t\t\t[-76.102955, 39.523639],\n\t\t\t\t\t\t[-76.105571, 39.518595],\n\t\t\t\t\t\t[-76.105678, 39.518388],\n\t\t\t\t\t\t[-76.106215, 39.517353],\n\t\t\t\t\t\t[-76.107126, 39.515597],\n\t\t\t\t\t\t[-76.111583, 39.507001],\n\t\t\t\t\t\t[-76.116831, 39.496882],\n\t\t\t\t\t\t[-76.117253, 39.496068],\n\t\t\t\t\t\t[-76.114610, 39.488619],\n\t\t\t\t\t\t[-76.113929, 39.486701],\n\t\t\t\t\t\t[-76.108813, 39.482333],\n\t\t\t\t\t\t[-76.104665, 39.478792],\n\t\t\t\t\t\t[-76.100218, 39.476918],\n\t\t\t\t\t\t[-76.099506, 39.476618],\n\t\t\t\t\t\t[-76.098315, 39.476116],\n\t\t\t\t\t\t[-76.083286, 39.477860],\n\t\t\t\t\t\t[-76.083082, 39.477809],\n\t\t\t\t\t\t[-76.081590, 39.477438],\n\t\t\t\t\t\t[-76.073119, 39.475331],\n\t\t\t\t\t\t[-76.072309, 39.475130],\n\t\t\t\t\t\t[-76.071975, 39.475047],\n\t\t\t\t\t\t[-76.071836, 39.474760],\n\t\t\t\t\t\t[-76.069814, 39.470577],\n\t\t\t\t\t\t[-76.063874, 39.458295],\n\t\t\t\t\t\t[-76.062259, 39.454955],\n\t\t\t\t\t\t[-76.060931, 39.452208],\n\t\t\t\t\t\t[-76.060944, 39.451174],\n\t\t\t\t\t\t[-76.060988, 39.447775],\n\t\t\t\t\t\t[-76.060989, 39.447722],\n\t\t\t\t\t\t[-76.081176, 39.436712],\n\t\t\t\t\t\t[-76.081409, 39.436891],\n\t\t\t\t\t\t[-76.083269, 39.438321],\n\t\t\t\t\t\t[-76.083405, 39.438302],\n\t\t\t\t\t\t[-76.093595, 39.436871],\n\t\t\t\t\t\t[-76.102232, 39.435659],\n\t\t\t\t\t\t[-76.112761, 39.429852],\n\t\t\t\t\t\t[-76.115096, 39.428565],\n\t\t\t\t\t\t[-76.116820, 39.427614],\n\t\t\t\t\t\t[-76.117172, 39.427170],\n\t\t\t\t\t\t[-76.120991, 39.422358],\n\t\t\t\t\t\t[-76.121754, 39.421396],\n\t\t\t\t\t\t[-76.121889, 39.421226],\n\t\t\t\t\t\t[-76.132114, 39.414579],\n\t\t\t\t\t\t[-76.142224, 39.408007],\n\t\t\t\t\t\t[-76.146373, 39.405310],\n\t\t\t\t\t\t[-76.147048, 39.405364],\n\t\t\t\t\t\t[-76.150249, 39.405623],\n\t\t\t\t\t\t[-76.150516, 39.405644],\n\t\t\t\t\t\t[-76.150934, 39.405678],\n\t\t\t\t\t\t[-76.151948, 39.405760],\n\t\t\t\t\t\t[-76.152059, 39.405769],\n\t\t\t\t\t\t[-76.152357, 39.405793],\n\t\t\t\t\t\t[-76.157108, 39.406176],\n\t\t\t\t\t\t[-76.158592, 39.406295],\n\t\t\t\t\t\t[-76.158774, 39.406310],\n\t\t\t\t\t\t[-76.159358, 39.405661],\n\t\t\t\t\t\t[-76.171134, 39.392588],\n\t\t\t\t\t\t[-76.171474, 39.392210],\n\t\t\t\t\t\t[-76.171747, 39.391747],\n\t\t\t\t\t\t[-76.175121, 39.386019],\n\t\t\t\t\t\t[-76.175597, 39.385210],\n\t\t\t\t\t\t[-76.175928, 39.384648],\n\t\t\t\t\t\t[-76.180057, 39.377638],\n\t\t\t\t\t\t[-76.180074, 39.377609],\n\t\t\t\t\t\t[-76.199356, 39.366221],\n\t\t\t\t\t\t[-76.202346, 39.364455],\n\t\t\t\t\t\t[-76.226976, 39.349908],\n\t\t\t\t\t\t[-76.227625, 39.350109],\n\t\t\t\t\t\t[-76.229614, 39.350723],\n\t\t\t\t\t\t[-76.233776, 39.352008],\n\t\t\t\t\t\t[-76.234743, 39.353498],\n\t\t\t\t\t\t[-76.234765, 39.353532],\n\t\t\t\t\t\t[-76.235795, 39.355119],\n\t\t\t\t\t\t[-76.236520, 39.356236],\n\t\t\t\t\t\t[-76.237943, 39.358429],\n\t\t\t\t\t\t[-76.239877, 39.361408],\n\t\t\t\t\t\t[-76.241268, 39.361567],\n\t\t\t\t\t\t[-76.243377, 39.361808],\n\t\t\t\t\t\t[-76.244443, 39.361731],\n\t\t\t\t\t\t[-76.244988, 39.361691],\n\t\t\t\t\t\t[-76.245273, 39.361671],\n\t\t\t\t\t\t[-76.250107, 39.361320],\n\t\t\t\t\t\t[-76.250483, 39.361136],\n\t\t\t\t\t\t[-76.266365, 39.353352],\n\t\t\t\t\t\t[-76.265277, 39.350008],\n\t\t\t\t\t\t[-76.263019, 39.348634],\n\t\t\t\t\t\t[-76.258377, 39.345808],\n\t\t\t\t\t\t[-76.258342, 39.345737],\n\t\t\t\t\t\t[-76.253928, 39.336768],\n\t\t\t\t\t\t[-76.262008, 39.334708],\n\t\t\t\t\t\t[-76.262471, 39.334590],\n\t\t\t\t\t\t[-76.263073, 39.334436],\n\t\t\t\t\t\t[-76.263577, 39.334308],\n\t\t\t\t\t\t[-76.263624, 39.334265],\n\t\t\t\t\t\t[-76.265615, 39.332450],\n\t\t\t\t\t\t[-76.265777, 39.332302],\n\t\t\t\t\t\t[-76.266094, 39.332013],\n\t\t\t\t\t\t[-76.266257, 39.331864],\n\t\t\t\t\t\t[-76.266407, 39.331727],\n\t\t\t\t\t\t[-76.272671, 39.326015],\n\t\t\t\t\t\t[-76.276078, 39.322908],\n\t\t\t\t\t\t[-76.277813, 39.318738],\n\t\t\t\t\t\t[-76.277866, 39.318610],\n\t\t\t\t\t\t[-76.278239, 39.317712],\n\t\t\t\t\t\t[-76.278351, 39.317444],\n\t\t\t\t\t\t[-76.278499, 39.317088],\n\t\t\t\t\t\t[-76.280599, 39.312037],\n\t\t\t\t\t\t[-76.280778, 39.311608],\n\t\t\t\t\t\t[-76.281088, 39.307930],\n\t\t\t\t\t\t[-76.281374, 39.304531],\n\t\t\t\t\t\t[-76.281429, 39.303872],\n\t\t\t\t\t\t[-76.281556, 39.302369],\n\t\t\t\t\t\t[-76.281578, 39.302108],\n\t\t\t\t\t\t[-76.281700, 39.302110],\n\t\t\t\t\t\t[-76.296546, 39.302383],\n\t\t\t\t\t\t[-76.297878, 39.302408],\n\t\t\t\t\t\t[-76.291078, 39.318108],\n\t\t\t\t\t\t[-76.298778, 39.329208],\n\t\t\t\t\t\t[-76.298778, 39.333958],\n\t\t\t\t\t\t[-76.298778, 39.339278],\n\t\t\t\t\t\t[-76.298778, 39.340208],\n\t\t\t\t\t\t[-76.297569, 39.342244],\n\t\t\t\t\t\t[-76.295558, 39.345631],\n\t\t\t\t\t\t[-76.294978, 39.346608],\n\t\t\t\t\t\t[-76.295678, 39.350008],\n\t\t\t\t\t\t[-76.301770, 39.352216],\n\t\t\t\t\t\t[-76.310618, 39.355423],\n\t\t\t\t\t\t[-76.310829, 39.355500],\n\t\t\t\t\t\t[-76.311360, 39.355693],\n\t\t\t\t\t\t[-76.311679, 39.355808],\n\t\t\t\t\t\t[-76.312610, 39.355917],\n\t\t\t\t\t\t[-76.312864, 39.355946],\n\t\t\t\t\t\t[-76.314356, 39.356120],\n\t\t\t\t\t\t[-76.322687, 39.357092],\n\t\t\t\t\t\t[-76.323679, 39.357208],\n\t\t\t\t\t\t[-76.330027, 39.356139],\n\t\t\t\t\t\t[-76.323680, 39.374407],\n\t\t\t\t\t\t[-76.357753, 39.389790],\n\t\t\t\t\t\t[-76.358781, 39.390305],\n\t\t\t\t\t\t[-76.359269, 39.394046],\n\t\t\t\t\t\t[-76.361055, 39.400255],\n\t\t\t\t\t\t[-76.372230, 39.405576],\n\t\t\t\t\t\t[-76.370198, 39.413411],\n\t\t\t\t\t\t[-76.373519, 39.421432],\n\t\t\t\t\t\t[-76.374011, 39.422307],\n\t\t\t\t\t\t[-76.375991, 39.423786],\n\t\t\t\t\t\t[-76.377613, 39.424328],\n\t\t\t\t\t\t[-76.436980, 39.501964],\n\t\t\t\t\t\t[-76.531012, 39.543780],\n\t\t\t\t\t\t[-76.534063, 39.554618],\n\t\t\t\t\t\t[-76.531058, 39.555399],\n\t\t\t\t\t\t[-76.532400, 39.561556],\n\t\t\t\t\t\t[-76.536098, 39.561822],\n\t\t\t\t\t\t[-76.540573, 39.572236],\n\t\t\t\t\t\t[-76.569475, 39.721203]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26013\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"013\",\n\t\t\t\t\"NAME\": \"Baraga\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 898.257000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.232969, 46.933955],\n\t\t\t\t\t\t[-88.194361, 46.948578],\n\t\t\t\t\t\t[-88.176758, 46.955245],\n\t\t\t\t\t\t[-88.167373, 46.958800],\n\t\t\t\t\t\t[-88.167227, 46.958855],\n\t\t\t\t\t\t[-88.164704, 46.960178],\n\t\t\t\t\t\t[-88.164059, 46.960516],\n\t\t\t\t\t\t[-88.162856, 46.961146],\n\t\t\t\t\t\t[-88.162833, 46.961158],\n\t\t\t\t\t\t[-88.162437, 46.961366],\n\t\t\t\t\t\t[-88.160571, 46.962345],\n\t\t\t\t\t\t[-88.160086, 46.962599],\n\t\t\t\t\t\t[-88.156273, 46.964598],\n\t\t\t\t\t\t[-88.155430, 46.965040],\n\t\t\t\t\t\t[-88.155374, 46.965069],\n\t\t\t\t\t\t[-88.145561, 46.966409],\n\t\t\t\t\t\t[-88.143688, 46.966665],\n\t\t\t\t\t\t[-88.143614, 46.966635],\n\t\t\t\t\t\t[-88.142893, 46.966337],\n\t\t\t\t\t\t[-88.142807, 46.966302],\n\t\t\t\t\t\t[-88.142528, 46.966186],\n\t\t\t\t\t\t[-88.142339, 46.966108],\n\t\t\t\t\t\t[-88.142057, 46.965992],\n\t\t\t\t\t\t[-88.141750, 46.965865],\n\t\t\t\t\t\t[-88.132957, 46.962237],\n\t\t\t\t\t\t[-88.132876, 46.962204],\n\t\t\t\t\t\t[-88.135210, 46.959689],\n\t\t\t\t\t\t[-88.150114, 46.943630],\n\t\t\t\t\t\t[-88.156359, 46.939518],\n\t\t\t\t\t\t[-88.167989, 46.931861],\n\t\t\t\t\t\t[-88.170905, 46.929940],\n\t\t\t\t\t\t[-88.171317, 46.929669],\n\t\t\t\t\t\t[-88.175568, 46.926870],\n\t\t\t\t\t\t[-88.176156, 46.926483],\n\t\t\t\t\t\t[-88.177921, 46.925320],\n\t\t\t\t\t\t[-88.185964, 46.920025],\n\t\t\t\t\t\t[-88.187522, 46.918999],\n\t\t\t\t\t\t[-88.182950, 46.913650],\n\t\t\t\t\t\t[-88.181908, 46.912431],\n\t\t\t\t\t\t[-88.175197, 46.904580],\n\t\t\t\t\t\t[-88.161913, 46.904941],\n\t\t\t\t\t\t[-88.160704, 46.905110],\n\t\t\t\t\t\t[-88.130288, 46.909369],\n\t\t\t\t\t\t[-88.126927, 46.909840],\n\t\t\t\t\t\t[-88.126378, 46.909998],\n\t\t\t\t\t\t[-88.124935, 46.910413],\n\t\t\t\t\t\t[-88.124573, 46.910517],\n\t\t\t\t\t\t[-88.122862, 46.911009],\n\t\t\t\t\t\t[-88.106377, 46.915751],\n\t\t\t\t\t\t[-88.105195, 46.916091],\n\t\t\t\t\t\t[-88.102816, 46.916775],\n\t\t\t\t\t\t[-88.102362, 46.916906],\n\t\t\t\t\t\t[-88.101457, 46.917166],\n\t\t\t\t\t\t[-88.101315, 46.917207],\n\t\t\t\t\t\t[-88.100133, 46.917405],\n\t\t\t\t\t\t[-88.099227, 46.917556],\n\t\t\t\t\t\t[-88.098900, 46.917611],\n\t\t\t\t\t\t[-88.098858, 46.917618],\n\t\t\t\t\t\t[-88.097609, 46.917827],\n\t\t\t\t\t\t[-88.083937, 46.920112],\n\t\t\t\t\t\t[-88.083770, 46.920140],\n\t\t\t\t\t\t[-88.082263, 46.920392],\n\t\t\t\t\t\t[-88.081870, 46.920458],\n\t\t\t\t\t\t[-88.080087, 46.920255],\n\t\t\t\t\t\t[-88.074736, 46.919647],\n\t\t\t\t\t\t[-88.065192, 46.918563],\n\t\t\t\t\t\t[-88.063614, 46.918097],\n\t\t\t\t\t\t[-88.044551, 46.912473],\n\t\t\t\t\t\t[-88.044709, 46.765353],\n\t\t\t\t\t\t[-87.991546, 46.679113],\n\t\t\t\t\t\t[-88.115843, 46.678381],\n\t\t\t\t\t\t[-88.116571, 46.419951],\n\t\t\t\t\t\t[-88.679392, 46.420139],\n\t\t\t\t\t\t[-88.678983, 46.851822],\n\t\t\t\t\t\t[-88.551943, 46.851795],\n\t\t\t\t\t\t[-88.552185, 46.938533],\n\t\t\t\t\t\t[-88.451200, 46.938976],\n\t\t\t\t\t\t[-88.450823, 46.939038],\n\t\t\t\t\t\t[-88.452129, 46.934557],\n\t\t\t\t\t\t[-88.452354, 46.933787],\n\t\t\t\t\t\t[-88.454333, 46.926996],\n\t\t\t\t\t\t[-88.454353, 46.926928],\n\t\t\t\t\t\t[-88.454781, 46.925458],\n\t\t\t\t\t\t[-88.455117, 46.924305],\n\t\t\t\t\t\t[-88.455404, 46.923321],\n\t\t\t\t\t\t[-88.457776, 46.918999],\n\t\t\t\t\t\t[-88.474217, 46.889034],\n\t\t\t\t\t\t[-88.475859, 46.886042],\n\t\t\t\t\t\t[-88.476098, 46.881957],\n\t\t\t\t\t\t[-88.476918, 46.867946],\n\t\t\t\t\t\t[-88.477620, 46.855937],\n\t\t\t\t\t\t[-88.477681, 46.854902],\n\t\t\t\t\t\t[-88.477845, 46.852091],\n\t\t\t\t\t\t[-88.477935, 46.850560],\n\t\t\t\t\t\t[-88.483748, 46.831727],\n\t\t\t\t\t\t[-88.482579, 46.826197],\n\t\t\t\t\t\t[-88.473342, 46.806226],\n\t\t\t\t\t\t[-88.462349, 46.786711],\n\t\t\t\t\t\t[-88.438427, 46.786714],\n\t\t\t\t\t\t[-88.433835, 46.793502],\n\t\t\t\t\t\t[-88.415225, 46.811715],\n\t\t\t\t\t\t[-88.381410, 46.838466],\n\t\t\t\t\t\t[-88.382204, 46.844477],\n\t\t\t\t\t\t[-88.381947, 46.846110],\n\t\t\t\t\t\t[-88.381727, 46.847868],\n\t\t\t\t\t\t[-88.380849, 46.850064],\n\t\t\t\t\t\t[-88.380190, 46.852481],\n\t\t\t\t\t\t[-88.378432, 46.854897],\n\t\t\t\t\t\t[-88.375577, 46.857313],\n\t\t\t\t\t\t[-88.372501, 46.858192],\n\t\t\t\t\t\t[-88.368767, 46.857313],\n\t\t\t\t\t\t[-88.362502, 46.856432],\n\t\t\t\t\t\t[-88.361936, 46.856352],\n\t\t\t\t\t\t[-88.360868, 46.856202],\n\t\t\t\t\t\t[-88.360260, 46.856258],\n\t\t\t\t\t\t[-88.352145, 46.857009],\n\t\t\t\t\t\t[-88.351940, 46.857028],\n\t\t\t\t\t\t[-88.351730, 46.857193],\n\t\t\t\t\t\t[-88.347430, 46.860571],\n\t\t\t\t\t\t[-88.334647, 46.870613],\n\t\t\t\t\t\t[-88.333168, 46.871775],\n\t\t\t\t\t\t[-88.333092, 46.871835],\n\t\t\t\t\t\t[-88.310714, 46.889415],\n\t\t\t\t\t\t[-88.310290, 46.889748],\n\t\t\t\t\t\t[-88.308786, 46.890622],\n\t\t\t\t\t\t[-88.307978, 46.891092],\n\t\t\t\t\t\t[-88.307261, 46.891509],\n\t\t\t\t\t\t[-88.305045, 46.892797],\n\t\t\t\t\t\t[-88.299515, 46.896012],\n\t\t\t\t\t\t[-88.296476, 46.897778],\n\t\t\t\t\t\t[-88.289298, 46.901950],\n\t\t\t\t\t\t[-88.288767, 46.902259],\n\t\t\t\t\t\t[-88.286473, 46.903592],\n\t\t\t\t\t\t[-88.282087, 46.906142],\n\t\t\t\t\t\t[-88.282066, 46.906154],\n\t\t\t\t\t\t[-88.281244, 46.906632],\n\t\t\t\t\t\t[-88.276915, 46.908589],\n\t\t\t\t\t\t[-88.274730, 46.909577],\n\t\t\t\t\t\t[-88.273929, 46.909939],\n\t\t\t\t\t\t[-88.272478, 46.910595],\n\t\t\t\t\t\t[-88.261593, 46.915516],\n\t\t\t\t\t\t[-88.258072, 46.918409],\n\t\t\t\t\t\t[-88.250141, 46.924926],\n\t\t\t\t\t\t[-88.246953, 46.927545],\n\t\t\t\t\t\t[-88.246872, 46.927611],\n\t\t\t\t\t\t[-88.244437, 46.929612],\n\t\t\t\t\t\t[-88.243175, 46.930090],\n\t\t\t\t\t\t[-88.241858, 46.930589],\n\t\t\t\t\t\t[-88.241340, 46.930785],\n\t\t\t\t\t\t[-88.240926, 46.930942],\n\t\t\t\t\t\t[-88.240846, 46.930972],\n\t\t\t\t\t\t[-88.238324, 46.931927],\n\t\t\t\t\t\t[-88.235800, 46.932883],\n\t\t\t\t\t\t[-88.235702, 46.932920],\n\t\t\t\t\t\t[-88.233334, 46.933817],\n\t\t\t\t\t\t[-88.232969, 46.933955]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26029\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"029\",\n\t\t\t\t\"NAME\": \"Charlevoix\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 416.339000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-85.566441, 45.760222],\n\t\t\t\t\t\t\t[-85.549560, 45.757266],\n\t\t\t\t\t\t\t[-85.543750, 45.751413],\n\t\t\t\t\t\t\t[-85.535620, 45.750394],\n\t\t\t\t\t\t\t[-85.525237, 45.750462],\n\t\t\t\t\t\t\t[-85.506133, 45.754715],\n\t\t\t\t\t\t\t[-85.501267, 45.754415],\n\t\t\t\t\t\t\t[-85.497656, 45.746246],\n\t\t\t\t\t\t\t[-85.503758, 45.742771],\n\t\t\t\t\t\t\t[-85.508818, 45.742358],\n\t\t\t\t\t\t\t[-85.510091, 45.742888],\n\t\t\t\t\t\t\t[-85.508522, 45.744991],\n\t\t\t\t\t\t\t[-85.509040, 45.748488],\n\t\t\t\t\t\t\t[-85.515145, 45.749451],\n\t\t\t\t\t\t\t[-85.520569, 45.744745],\n\t\t\t\t\t\t\t[-85.521911, 45.739419],\n\t\t\t\t\t\t\t[-85.520803, 45.737247],\n\t\t\t\t\t\t\t[-85.510895, 45.734414],\n\t\t\t\t\t\t\t[-85.498777, 45.726291],\n\t\t\t\t\t\t\t[-85.494154, 45.705378],\n\t\t\t\t\t\t\t[-85.494016, 45.698476],\n\t\t\t\t\t\t\t[-85.502800, 45.690998],\n\t\t\t\t\t\t\t[-85.506104, 45.681148],\n\t\t\t\t\t\t\t[-85.503767, 45.670472],\n\t\t\t\t\t\t\t[-85.500451, 45.664298],\n\t\t\t\t\t\t\t[-85.490252, 45.652122],\n\t\t\t\t\t\t\t[-85.487026, 45.621211],\n\t\t\t\t\t\t\t[-85.491347, 45.609665],\n\t\t\t\t\t\t\t[-85.509276, 45.596475],\n\t\t\t\t\t\t\t[-85.518038, 45.592912],\n\t\t\t\t\t\t\t[-85.526895, 45.591590],\n\t\t\t\t\t\t\t[-85.530273, 45.589253],\n\t\t\t\t\t\t\t[-85.534064, 45.578198],\n\t\t\t\t\t\t\t[-85.541129, 45.575045],\n\t\t\t\t\t\t\t[-85.561634, 45.572213],\n\t\t\t\t\t\t\t[-85.618049, 45.582647],\n\t\t\t\t\t\t\t[-85.622741, 45.586028],\n\t\t\t\t\t\t\t[-85.630016, 45.598166],\n\t\t\t\t\t\t\t[-85.619850, 45.624547],\n\t\t\t\t\t\t\t[-85.608653, 45.632008],\n\t\t\t\t\t\t\t[-85.604521, 45.639256],\n\t\t\t\t\t\t\t[-85.604951, 45.647599],\n\t\t\t\t\t\t\t[-85.609295, 45.658067],\n\t\t\t\t\t\t\t[-85.604881, 45.681932],\n\t\t\t\t\t\t\t[-85.600842, 45.688860],\n\t\t\t\t\t\t\t[-85.590769, 45.698051],\n\t\t\t\t\t\t\t[-85.583724, 45.700796],\n\t\t\t\t\t\t\t[-85.572309, 45.711449],\n\t\t\t\t\t\t\t[-85.565132, 45.730719],\n\t\t\t\t\t\t\t[-85.564774, 45.745462],\n\t\t\t\t\t\t\t[-85.567128, 45.750419],\n\t\t\t\t\t\t\t[-85.567781, 45.757655],\n\t\t\t\t\t\t\t[-85.566441, 45.760222]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-84.734303, 45.201936],\n\t\t\t\t\t\t\t[-84.734799, 45.114903],\n\t\t\t\t\t\t\t[-84.857452, 45.116707],\n\t\t\t\t\t\t\t[-85.223679, 45.117751],\n\t\t\t\t\t\t\t[-85.222705, 45.205551],\n\t\t\t\t\t\t\t[-85.387463, 45.207565],\n\t\t\t\t\t\t\t[-85.388593, 45.235240],\n\t\t\t\t\t\t\t[-85.371593, 45.270834],\n\t\t\t\t\t\t\t[-85.355478, 45.282774],\n\t\t\t\t\t\t\t[-85.335016, 45.294027],\n\t\t\t\t\t\t\t[-85.323941, 45.303355],\n\t\t\t\t\t\t\t[-85.307646, 45.313140],\n\t\t\t\t\t\t\t[-85.294848, 45.316408],\n\t\t\t\t\t\t\t[-85.289568, 45.314052],\n\t\t\t\t\t\t\t[-85.273789, 45.315443],\n\t\t\t\t\t\t\t[-85.262996, 45.319507],\n\t\t\t\t\t\t\t[-85.255050, 45.325675],\n\t\t\t\t\t\t\t[-85.252193, 45.330863],\n\t\t\t\t\t\t\t[-85.235629, 45.339374],\n\t\t\t\t\t\t\t[-85.209673, 45.356937],\n\t\t\t\t\t\t\t[-85.196704, 45.360641],\n\t\t\t\t\t\t\t[-85.182471, 45.360824],\n\t\t\t\t\t\t\t[-85.143651, 45.370369],\n\t\t\t\t\t\t\t[-85.095985, 45.367001],\n\t\t\t\t\t\t\t[-85.011769, 45.278711],\n\t\t\t\t\t\t\t[-84.732687, 45.289382],\n\t\t\t\t\t\t\t[-84.734412, 45.202966],\n\t\t\t\t\t\t\t[-84.734303, 45.201936]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30111\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"111\",\n\t\t\t\t\"NAME\": \"Yellowstone\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2633.294000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-108.924129, 46.132211],\n\t\t\t\t\t\t[-108.780140, 46.132402],\n\t\t\t\t\t\t[-108.404936, 46.132675],\n\t\t\t\t\t\t[-108.404640, 46.236126],\n\t\t\t\t\t\t[-108.320730, 46.264061],\n\t\t\t\t\t\t[-108.029531, 46.263812],\n\t\t\t\t\t\t[-108.011552, 46.336639],\n\t\t\t\t\t\t[-107.928505, 46.395290],\n\t\t\t\t\t\t[-107.782089, 46.395286],\n\t\t\t\t\t\t[-107.781214, 46.496014],\n\t\t\t\t\t\t[-107.755180, 46.496126],\n\t\t\t\t\t\t[-107.755369, 46.482008],\n\t\t\t\t\t\t[-107.738547, 46.481715],\n\t\t\t\t\t\t[-107.612780, 46.308110],\n\t\t\t\t\t\t[-107.466381, 46.177535],\n\t\t\t\t\t\t[-107.511497, 46.043257],\n\t\t\t\t\t\t[-107.674261, 46.043627],\n\t\t\t\t\t\t[-107.674438, 45.985685],\n\t\t\t\t\t\t[-107.798047, 45.985681],\n\t\t\t\t\t\t[-107.881553, 45.898970],\n\t\t\t\t\t\t[-108.047410, 45.899316],\n\t\t\t\t\t\t[-108.069044, 45.783599],\n\t\t\t\t\t\t[-108.069703, 45.518246],\n\t\t\t\t\t\t[-108.193125, 45.518413],\n\t\t\t\t\t\t[-108.193191, 45.489396],\n\t\t\t\t\t\t[-108.316249, 45.489459],\n\t\t\t\t\t\t[-108.316374, 45.460509],\n\t\t\t\t\t\t[-108.644971, 45.464091],\n\t\t\t\t\t\t[-108.801661, 45.552067],\n\t\t\t\t\t\t[-108.842697, 45.611006],\n\t\t\t\t\t\t[-108.905232, 45.682437],\n\t\t\t\t\t\t[-108.901279, 45.959536],\n\t\t\t\t\t\t[-108.924129, 46.132211]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31015\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"015\",\n\t\t\t\t\"NAME\": \"Boyd\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 539.940000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.254454, 42.998140],\n\t\t\t\t\t\t[-99.254297, 42.998138],\n\t\t\t\t\t\t[-99.234462, 42.998281],\n\t\t\t\t\t\t[-99.195199, 42.998107],\n\t\t\t\t\t\t[-99.161388, 42.998465],\n\t\t\t\t\t\t[-99.151143, 42.998344],\n\t\t\t\t\t\t[-99.139045, 42.998508],\n\t\t\t\t\t\t[-99.135961, 42.998301],\n\t\t\t\t\t\t[-99.081880, 42.998288],\n\t\t\t\t\t\t[-99.080011, 42.998357],\n\t\t\t\t\t\t[-99.022300, 42.998237],\n\t\t\t\t\t\t[-99.021909, 42.998365],\n\t\t\t\t\t\t[-99.000370, 42.998273],\n\t\t\t\t\t\t[-98.962081, 42.998286],\n\t\t\t\t\t\t[-98.919234, 42.998241],\n\t\t\t\t\t\t[-98.919136, 42.998242],\n\t\t\t\t\t\t[-98.903154, 42.998306],\n\t\t\t\t\t\t[-98.899944, 42.998122],\n\t\t\t\t\t\t[-98.823989, 42.998310],\n\t\t\t\t\t\t[-98.801304, 42.998241],\n\t\t\t\t\t\t[-98.764378, 42.998323],\n\t\t\t\t\t\t[-98.742394, 42.998343],\n\t\t\t\t\t\t[-98.665613, 42.998536],\n\t\t\t\t\t\t[-98.663712, 42.998444],\n\t\t\t\t\t\t[-98.568936, 42.998537],\n\t\t\t\t\t\t[-98.565072, 42.998400],\n\t\t\t\t\t\t[-98.498550, 42.998560],\n\t\t\t\t\t\t[-98.495747, 42.988032],\n\t\t\t\t\t\t[-98.490483, 42.977948],\n\t\t\t\t\t\t[-98.467356, 42.947556],\n\t\t\t\t\t\t[-98.447047, 42.935117],\n\t\t\t\t\t\t[-98.325864, 42.886500],\n\t\t\t\t\t\t[-98.309741, 42.881232],\n\t\t\t\t\t\t[-98.305149, 42.761207],\n\t\t\t\t\t\t[-98.583760, 42.779736],\n\t\t\t\t\t\t[-98.892846, 42.845792],\n\t\t\t\t\t\t[-98.954634, 42.894077],\n\t\t\t\t\t\t[-99.257039, 42.804296],\n\t\t\t\t\t\t[-99.254235, 42.996812],\n\t\t\t\t\t\t[-99.254454, 42.998140]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31021\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"021\",\n\t\t\t\t\"NAME\": \"Burt\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 491.581000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.444785, 41.683633],\n\t\t\t\t\t\t[-96.444217, 41.741775],\n\t\t\t\t\t\t[-96.555172, 41.742018],\n\t\t\t\t\t\t[-96.554866, 42.015875],\n\t\t\t\t\t\t[-96.309645, 42.015187],\n\t\t\t\t\t\t[-96.272877, 42.047238],\n\t\t\t\t\t\t[-96.251714, 42.040472],\n\t\t\t\t\t\t[-96.221730, 42.026205],\n\t\t\t\t\t\t[-96.129505, 41.971673],\n\t\t\t\t\t\t[-96.129186, 41.965136],\n\t\t\t\t\t\t[-96.136743, 41.920826],\n\t\t\t\t\t\t[-96.142265, 41.915379],\n\t\t\t\t\t\t[-96.159098, 41.910057],\n\t\t\t\t\t\t[-96.161988, 41.905553],\n\t\t\t\t\t\t[-96.161756, 41.901820],\n\t\t\t\t\t\t[-96.144483, 41.871854],\n\t\t\t\t\t\t[-96.139554, 41.865830],\n\t\t\t\t\t\t[-96.110907, 41.830818],\n\t\t\t\t\t\t[-96.086407, 41.811380],\n\t\t\t\t\t\t[-96.077646, 41.808804],\n\t\t\t\t\t\t[-96.071007, 41.804639],\n\t\t\t\t\t\t[-96.065770, 41.798174],\n\t\t\t\t\t\t[-96.064537, 41.793002],\n\t\t\t\t\t\t[-96.077088, 41.715403],\n\t\t\t\t\t\t[-96.096795, 41.698681],\n\t\t\t\t\t\t[-96.121726, 41.682740],\n\t\t\t\t\t\t[-96.125293, 41.682951],\n\t\t\t\t\t\t[-96.444785, 41.683633]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26121\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"121\",\n\t\t\t\t\"NAME\": \"Muskegon\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 499.246000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.462195, 43.472328],\n\t\t\t\t\t\t[-86.461278, 43.472326],\n\t\t\t\t\t\t[-86.039491, 43.467447],\n\t\t\t\t\t\t[-86.038953, 43.293519],\n\t\t\t\t\t\t[-85.790448, 43.293003],\n\t\t\t\t\t\t[-85.790662, 43.205167],\n\t\t\t\t\t\t[-85.908388, 43.205920],\n\t\t\t\t\t\t[-85.907435, 43.118911],\n\t\t\t\t\t\t[-86.271996, 43.118365],\n\t\t\t\t\t\t[-86.280756, 43.136015],\n\t\t\t\t\t\t[-86.299048, 43.166465],\n\t\t\t\t\t\t[-86.311336, 43.186920],\n\t\t\t\t\t\t[-86.311887, 43.187837],\n\t\t\t\t\t\t[-86.316259, 43.195114],\n\t\t\t\t\t\t[-86.329836, 43.215800],\n\t\t\t\t\t\t[-86.344643, 43.238360],\n\t\t\t\t\t\t[-86.348647, 43.244459],\n\t\t\t\t\t\t[-86.348910, 43.244860],\n\t\t\t\t\t\t[-86.349801, 43.246217],\n\t\t\t\t\t\t[-86.350027, 43.246562],\n\t\t\t\t\t\t[-86.352192, 43.249860],\n\t\t\t\t\t\t[-86.352314, 43.250047],\n\t\t\t\t\t\t[-86.354505, 43.253385],\n\t\t\t\t\t\t[-86.357996, 43.258703],\n\t\t\t\t\t\t[-86.382882, 43.296620],\n\t\t\t\t\t\t[-86.383821, 43.298051],\n\t\t\t\t\t\t[-86.386096, 43.301516],\n\t\t\t\t\t\t[-86.386374, 43.301941],\n\t\t\t\t\t\t[-86.388493, 43.305168],\n\t\t\t\t\t\t[-86.389410, 43.306565],\n\t\t\t\t\t\t[-86.392124, 43.310701],\n\t\t\t\t\t\t[-86.393385, 43.312622],\n\t\t\t\t\t\t[-86.395750, 43.316225],\n\t\t\t\t\t\t[-86.401684, 43.327135],\n\t\t\t\t\t\t[-86.403010, 43.329572],\n\t\t\t\t\t\t[-86.403541, 43.330548],\n\t\t\t\t\t\t[-86.404831, 43.332920],\n\t\t\t\t\t\t[-86.407832, 43.338436],\n\t\t\t\t\t\t[-86.411941, 43.347209],\n\t\t\t\t\t\t[-86.427585, 43.380607],\n\t\t\t\t\t\t[-86.434757, 43.395919],\n\t\t\t\t\t\t[-86.434842, 43.396100],\n\t\t\t\t\t\t[-86.435124, 43.396702],\n\t\t\t\t\t\t[-86.435271, 43.397083],\n\t\t\t\t\t\t[-86.437896, 43.403890],\n\t\t\t\t\t\t[-86.438028, 43.404231],\n\t\t\t\t\t\t[-86.438267, 43.404851],\n\t\t\t\t\t\t[-86.438875, 43.406427],\n\t\t\t\t\t\t[-86.448479, 43.431329],\n\t\t\t\t\t\t[-86.448743, 43.432013],\n\t\t\t\t\t\t[-86.454570, 43.449475],\n\t\t\t\t\t\t[-86.456083, 43.454010],\n\t\t\t\t\t\t[-86.456845, 43.456294],\n\t\t\t\t\t\t[-86.457561, 43.458441],\n\t\t\t\t\t\t[-86.462195, 43.472328]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26127\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"127\",\n\t\t\t\t\"NAME\": \"Oceana\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 512.071000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.462195, 43.472328],\n\t\t\t\t\t\t[-86.468747, 43.491963],\n\t\t\t\t\t\t[-86.468754, 43.491979],\n\t\t\t\t\t\t[-86.468919, 43.492344],\n\t\t\t\t\t\t[-86.476956, 43.510184],\n\t\t\t\t\t\t[-86.477424, 43.511223],\n\t\t\t\t\t\t[-86.478716, 43.514091],\n\t\t\t\t\t\t[-86.479276, 43.515335],\n\t\t\t\t\t\t[-86.479552, 43.515750],\n\t\t\t\t\t\t[-86.481158, 43.518158],\n\t\t\t\t\t\t[-86.481650, 43.518896],\n\t\t\t\t\t\t[-86.481870, 43.519225],\n\t\t\t\t\t\t[-86.482255, 43.519803],\n\t\t\t\t\t\t[-86.483043, 43.520984],\n\t\t\t\t\t\t[-86.483083, 43.521045],\n\t\t\t\t\t\t[-86.505799, 43.555112],\n\t\t\t\t\t\t[-86.509205, 43.560221],\n\t\t\t\t\t\t[-86.509339, 43.560421],\n\t\t\t\t\t\t[-86.512317, 43.564887],\n\t\t\t\t\t\t[-86.514168, 43.567664],\n\t\t\t\t\t\t[-86.515108, 43.569074],\n\t\t\t\t\t\t[-86.515838, 43.570169],\n\t\t\t\t\t\t[-86.516295, 43.570854],\n\t\t\t\t\t\t[-86.516725, 43.571499],\n\t\t\t\t\t\t[-86.517493, 43.572651],\n\t\t\t\t\t\t[-86.518698, 43.574458],\n\t\t\t\t\t\t[-86.519912, 43.576278],\n\t\t\t\t\t\t[-86.520205, 43.576718],\n\t\t\t\t\t\t[-86.520248, 43.576796],\n\t\t\t\t\t\t[-86.529507, 43.593462],\n\t\t\t\t\t\t[-86.537923, 43.615965],\n\t\t\t\t\t\t[-86.538497, 43.617501],\n\t\t\t\t\t\t[-86.538876, 43.619957],\n\t\t\t\t\t\t[-86.538921, 43.620244],\n\t\t\t\t\t\t[-86.539103, 43.621424],\n\t\t\t\t\t\t[-86.539291, 43.622642],\n\t\t\t\t\t\t[-86.539303, 43.622720],\n\t\t\t\t\t\t[-86.540916, 43.633158],\n\t\t\t\t\t\t[-86.540906, 43.634047],\n\t\t\t\t\t\t[-86.540896, 43.634969],\n\t\t\t\t\t\t[-86.540810, 43.642516],\n\t\t\t\t\t\t[-86.540787, 43.644593],\n\t\t\t\t\t\t[-86.540640, 43.645499],\n\t\t\t\t\t\t[-86.538763, 43.657061],\n\t\t\t\t\t\t[-86.538482, 43.658795],\n\t\t\t\t\t\t[-86.538186, 43.659403],\n\t\t\t\t\t\t[-86.529686, 43.676849],\n\t\t\t\t\t\t[-86.529179, 43.677889],\n\t\t\t\t\t\t[-86.527667, 43.679552],\n\t\t\t\t\t\t[-86.526863, 43.680435],\n\t\t\t\t\t\t[-86.517867, 43.690326],\n\t\t\t\t\t\t[-86.516152, 43.692212],\n\t\t\t\t\t\t[-86.514371, 43.694170],\n\t\t\t\t\t\t[-86.511008, 43.697867],\n\t\t\t\t\t\t[-86.510319, 43.698625],\n\t\t\t\t\t\t[-86.507620, 43.701138],\n\t\t\t\t\t\t[-86.506690, 43.702004],\n\t\t\t\t\t\t[-86.504679, 43.703878],\n\t\t\t\t\t\t[-86.503192, 43.705263],\n\t\t\t\t\t\t[-86.502989, 43.705452],\n\t\t\t\t\t\t[-86.501899, 43.706467],\n\t\t\t\t\t\t[-86.496187, 43.711787],\n\t\t\t\t\t\t[-86.488381, 43.719056],\n\t\t\t\t\t\t[-86.486983, 43.720358],\n\t\t\t\t\t\t[-86.481854, 43.725135],\n\t\t\t\t\t\t[-86.480655, 43.726407],\n\t\t\t\t\t\t[-86.480628, 43.726436],\n\t\t\t\t\t\t[-86.480267, 43.726819],\n\t\t\t\t\t\t[-86.463436, 43.744687],\n\t\t\t\t\t\t[-86.461554, 43.746685],\n\t\t\t\t\t\t[-86.460444, 43.748366],\n\t\t\t\t\t\t[-86.445532, 43.770945],\n\t\t\t\t\t\t[-86.445123, 43.771564],\n\t\t\t\t\t\t[-86.444903, 43.772069],\n\t\t\t\t\t\t[-86.442786, 43.776934],\n\t\t\t\t\t\t[-86.437722, 43.788573],\n\t\t\t\t\t\t[-86.437391, 43.789334],\n\t\t\t\t\t\t[-86.431140, 43.815569],\n\t\t\t\t\t\t[-86.431043, 43.815975],\n\t\t\t\t\t\t[-86.431063, 43.819178],\n\t\t\t\t\t\t[-86.431064, 43.819406],\n\t\t\t\t\t\t[-86.416471, 43.819572],\n\t\t\t\t\t\t[-86.037884, 43.815611],\n\t\t\t\t\t\t[-86.039491, 43.467447],\n\t\t\t\t\t\t[-86.461278, 43.472326],\n\t\t\t\t\t\t[-86.462195, 43.472328]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26139\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"139\",\n\t\t\t\t\"NAME\": \"Ottawa\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 563.467000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.790662, 43.205167],\n\t\t\t\t\t\t[-85.788503, 43.030877],\n\t\t\t\t\t\t[-85.785276, 42.986911],\n\t\t\t\t\t\t[-85.782498, 42.768200],\n\t\t\t\t\t\t[-86.208886, 42.767540],\n\t\t\t\t\t\t[-86.210863, 42.783832],\n\t\t\t\t\t\t[-86.211815, 42.833236],\n\t\t\t\t\t\t[-86.210737, 42.859128],\n\t\t\t\t\t\t[-86.214138, 42.883555],\n\t\t\t\t\t\t[-86.216209, 42.919007],\n\t\t\t\t\t\t[-86.226305, 42.988284],\n\t\t\t\t\t\t[-86.232707, 43.015762],\n\t\t\t\t\t\t[-86.244277, 43.049681],\n\t\t\t\t\t\t[-86.250069, 43.057489],\n\t\t\t\t\t\t[-86.250517, 43.066993],\n\t\t\t\t\t\t[-86.254646, 43.083409],\n\t\t\t\t\t\t[-86.271996, 43.118365],\n\t\t\t\t\t\t[-85.907435, 43.118911],\n\t\t\t\t\t\t[-85.908388, 43.205920],\n\t\t\t\t\t\t[-85.790662, 43.205167]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26141\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"141\",\n\t\t\t\t\"NAME\": \"Presque Isle\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 658.719000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.204218, 45.627116],\n\t\t\t\t\t\t[-84.196043, 45.621456],\n\t\t\t\t\t\t[-84.180514, 45.604639],\n\t\t\t\t\t\t[-84.157121, 45.585305],\n\t\t\t\t\t\t[-84.139462, 45.573714],\n\t\t\t\t\t\t[-84.128867, 45.562284],\n\t\t\t\t\t\t[-84.126532, 45.556616],\n\t\t\t\t\t\t[-84.126971, 45.542428],\n\t\t\t\t\t\t[-84.122309, 45.523788],\n\t\t\t\t\t\t[-84.116687, 45.513050],\n\t\t\t\t\t\t[-84.109238, 45.505171],\n\t\t\t\t\t\t[-84.095905, 45.497298],\n\t\t\t\t\t\t[-84.075792, 45.490537],\n\t\t\t\t\t\t[-84.056138, 45.489349],\n\t\t\t\t\t\t[-84.039958, 45.493733],\n\t\t\t\t\t\t[-84.036286, 45.496245],\n\t\t\t\t\t\t[-84.028813, 45.497225],\n\t\t\t\t\t\t[-84.009582, 45.495069],\n\t\t\t\t\t\t[-83.998350, 45.491158],\n\t\t\t\t\t\t[-83.978017, 45.494138],\n\t\t\t\t\t\t[-83.939261, 45.493189],\n\t\t\t\t\t\t[-83.909472, 45.485784],\n\t\t\t\t\t\t[-83.881813, 45.467907],\n\t\t\t\t\t\t[-83.858560, 45.446865],\n\t\t\t\t\t\t[-83.841543, 45.435287],\n\t\t\t\t\t\t[-83.806622, 45.419159],\n\t\t\t\t\t\t[-83.788777, 45.416415],\n\t\t\t\t\t\t[-83.773171, 45.417302],\n\t\t\t\t\t\t[-83.755569, 45.411034],\n\t\t\t\t\t\t[-83.737321, 45.410943],\n\t\t\t\t\t\t[-83.721815, 45.413304],\n\t\t\t\t\t\t[-83.697316, 45.396239],\n\t\t\t\t\t\t[-83.667934, 45.384675],\n\t\t\t\t\t\t[-83.643790, 45.371710],\n\t\t\t\t\t\t[-83.599273, 45.352561],\n\t\t\t\t\t\t[-83.570361, 45.347198],\n\t\t\t\t\t\t[-83.550268, 45.350832],\n\t\t\t\t\t\t[-83.546799, 45.352637],\n\t\t\t\t\t\t[-83.545729, 45.358397],\n\t\t\t\t\t\t[-83.538306, 45.358167],\n\t\t\t\t\t\t[-83.520258, 45.347239],\n\t\t\t\t\t\t[-83.514717, 45.346460],\n\t\t\t\t\t\t[-83.496704, 45.357536],\n\t\t\t\t\t\t[-83.488826, 45.355872],\n\t\t\t\t\t\t[-83.477794, 45.341891],\n\t\t\t\t\t\t[-83.477728, 45.341827],\n\t\t\t\t\t\t[-83.468099, 45.332450],\n\t\t\t\t\t\t[-83.445672, 45.310612],\n\t\t\t\t\t\t[-83.433040, 45.303688],\n\t\t\t\t\t\t[-83.425140, 45.296808],\n\t\t\t\t\t\t[-83.423178, 45.292506],\n\t\t\t\t\t\t[-83.422486, 45.290989],\n\t\t\t\t\t\t[-83.422389, 45.290775],\n\t\t\t\t\t\t[-83.422272, 45.290713],\n\t\t\t\t\t\t[-83.420510, 45.289787],\n\t\t\t\t\t\t[-83.401091, 45.279572],\n\t\t\t\t\t\t[-83.400880, 45.279528],\n\t\t\t\t\t\t[-83.400753, 45.279502],\n\t\t\t\t\t\t[-83.400261, 45.279400],\n\t\t\t\t\t\t[-83.398845, 45.279107],\n\t\t\t\t\t\t[-83.388274, 45.276916],\n\t\t\t\t\t\t[-83.385104, 45.274195],\n\t\t\t\t\t\t[-83.381743, 45.268983],\n\t\t\t\t\t\t[-83.388034, 45.254976],\n\t\t\t\t\t\t[-83.412569, 45.245807],\n\t\t\t\t\t\t[-83.412410, 45.238905],\n\t\t\t\t\t\t[-83.405914, 45.227157],\n\t\t\t\t\t\t[-83.387587, 45.207107],\n\t\t\t\t\t\t[-83.881218, 45.202062],\n\t\t\t\t\t\t[-84.246634, 45.198718],\n\t\t\t\t\t\t[-84.252020, 45.625998],\n\t\t\t\t\t\t[-84.204218, 45.627116]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26151\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"151\",\n\t\t\t\t\"NAME\": \"Sanilac\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 962.566000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.996257, 43.154099],\n\t\t\t\t\t\t[-83.000430, 43.284913],\n\t\t\t\t\t\t[-83.119027, 43.283680],\n\t\t\t\t\t\t[-83.120396, 43.327049],\n\t\t\t\t\t\t[-83.103826, 43.327365],\n\t\t\t\t\t\t[-83.117844, 43.675493],\n\t\t\t\t\t\t[-82.606233, 43.690437],\n\t\t\t\t\t\t[-82.604830, 43.678884],\n\t\t\t\t\t\t[-82.605783, 43.669489],\n\t\t\t\t\t\t[-82.600500, 43.602935],\n\t\t\t\t\t\t[-82.597911, 43.590016],\n\t\t\t\t\t\t[-82.593785, 43.581467],\n\t\t\t\t\t\t[-82.585654, 43.543969],\n\t\t\t\t\t\t[-82.565691, 43.502904],\n\t\t\t\t\t\t[-82.565505, 43.497063],\n\t\t\t\t\t\t[-82.553540, 43.464111],\n\t\t\t\t\t\t[-82.539517, 43.437539],\n\t\t\t\t\t\t[-82.538578, 43.431594],\n\t\t\t\t\t\t[-82.539930, 43.422378],\n\t\t\t\t\t\t[-82.535627, 43.368062],\n\t\t\t\t\t\t[-82.536794, 43.348510],\n\t\t\t\t\t\t[-82.530128, 43.333805],\n\t\t\t\t\t\t[-82.529416, 43.316243],\n\t\t\t\t\t\t[-82.532396, 43.305770],\n\t\t\t\t\t\t[-82.523086, 43.225361],\n\t\t\t\t\t\t[-82.519123, 43.212737],\n\t\t\t\t\t\t[-82.508881, 43.196748],\n\t\t\t\t\t\t[-82.503157, 43.168946],\n\t\t\t\t\t\t[-82.996257, 43.154099]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26153\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"153\",\n\t\t\t\t\"NAME\": \"Schoolcraft\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1171.358000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.865402, 45.968257],\n\t\t\t\t\t\t[-85.882442, 45.968620],\n\t\t\t\t\t\t[-85.893196, 45.967253],\n\t\t\t\t\t\t[-85.909100, 45.959074],\n\t\t\t\t\t\t[-85.912370, 45.956487],\n\t\t\t\t\t\t[-85.912604, 45.956302],\n\t\t\t\t\t\t[-85.922737, 45.948287],\n\t\t\t\t\t\t[-85.926213, 45.938093],\n\t\t\t\t\t\t[-85.926017, 45.932104],\n\t\t\t\t\t\t[-85.917238, 45.927782],\n\t\t\t\t\t\t[-85.910264, 45.922112],\n\t\t\t\t\t\t[-85.913769, 45.919439],\n\t\t\t\t\t\t[-85.920581, 45.920994],\n\t\t\t\t\t\t[-85.954063, 45.936629],\n\t\t\t\t\t\t[-85.998868, 45.950968],\n\t\t\t\t\t\t[-86.050956, 45.962205],\n\t\t\t\t\t\t[-86.072067, 45.965313],\n\t\t\t\t\t\t[-86.094753, 45.966704],\n\t\t\t\t\t\t[-86.123567, 45.964748],\n\t\t\t\t\t\t[-86.145714, 45.957372],\n\t\t\t\t\t\t[-86.150173, 45.954494],\n\t\t\t\t\t\t[-86.159415, 45.953765],\n\t\t\t\t\t\t[-86.196618, 45.963185],\n\t\t\t\t\t\t[-86.208255, 45.962978],\n\t\t\t\t\t\t[-86.220546, 45.958883],\n\t\t\t\t\t\t[-86.229060, 45.948570],\n\t\t\t\t\t\t[-86.233613, 45.945802],\n\t\t\t\t\t\t[-86.248008, 45.944849],\n\t\t\t\t\t\t[-86.254768, 45.948640],\n\t\t\t\t\t\t[-86.278007, 45.942057],\n\t\t\t\t\t\t[-86.315981, 45.915247],\n\t\t\t\t\t\t[-86.324232, 45.906080],\n\t\t\t\t\t\t[-86.332625, 45.851813],\n\t\t\t\t\t\t[-86.349134, 45.834160],\n\t\t\t\t\t\t[-86.355062, 45.805355],\n\t\t\t\t\t\t[-86.351658, 45.798132],\n\t\t\t\t\t\t[-86.363808, 45.790057],\n\t\t\t\t\t\t[-86.369918, 45.789254],\n\t\t\t\t\t\t[-86.395809, 45.789740],\n\t\t\t\t\t\t[-86.401656, 45.795412],\n\t\t\t\t\t\t[-86.415971, 45.793793],\n\t\t\t\t\t\t[-86.424828, 45.789747],\n\t\t\t\t\t\t[-86.428423, 45.785587],\n\t\t\t\t\t\t[-86.428946, 45.782524],\n\t\t\t\t\t\t[-86.427183, 45.779050],\n\t\t\t\t\t\t[-86.428294, 45.775620],\n\t\t\t\t\t\t[-86.431921, 45.767756],\n\t\t\t\t\t\t[-86.435493, 45.764485],\n\t\t\t\t\t\t[-86.435530, 45.764452],\n\t\t\t\t\t\t[-86.439661, 45.760669],\n\t\t\t\t\t\t[-86.440329, 45.760508],\n\t\t\t\t\t\t[-86.442335, 45.760026],\n\t\t\t\t\t\t[-86.455534, 45.756850],\n\t\t\t\t\t\t[-86.459866, 45.758042],\n\t\t\t\t\t\t[-86.490250, 45.896329],\n\t\t\t\t\t\t[-86.490136, 46.158085],\n\t\t\t\t\t\t[-86.615601, 46.158691],\n\t\t\t\t\t\t[-86.615397, 46.333263],\n\t\t\t\t\t\t[-86.365261, 46.331929],\n\t\t\t\t\t\t[-86.364953, 46.505852],\n\t\t\t\t\t\t[-85.864932, 46.504758],\n\t\t\t\t\t\t[-85.865025, 46.244631],\n\t\t\t\t\t\t[-85.865402, 45.968257]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US45019\",\n\t\t\t\t\"STATE\": \"45\",\n\t\t\t\t\"COUNTY\": \"019\",\n\t\t\t\t\"NAME\": \"Charleston\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 916.089000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.446699, 33.213458],\n\t\t\t\t\t\t[-79.438387, 33.215136],\n\t\t\t\t\t\t[-79.413588, 33.198159],\n\t\t\t\t\t\t[-79.404858, 33.184929],\n\t\t\t\t\t\t[-79.268762, 33.136043],\n\t\t\t\t\t\t[-79.290754, 33.110051],\n\t\t\t\t\t\t[-79.291591, 33.109773],\n\t\t\t\t\t\t[-79.329909, 33.089986],\n\t\t\t\t\t\t[-79.337169, 33.072302],\n\t\t\t\t\t\t[-79.335346, 33.065362],\n\t\t\t\t\t\t[-79.339313, 33.050336],\n\t\t\t\t\t\t[-79.359961, 33.006672],\n\t\t\t\t\t\t[-79.403712, 33.003903],\n\t\t\t\t\t\t[-79.416515, 33.006815],\n\t\t\t\t\t\t[-79.423447, 33.015085],\n\t\t\t\t\t\t[-79.461047, 33.007639],\n\t\t\t\t\t\t[-79.483499, 33.001265],\n\t\t\t\t\t\t[-79.488727, 33.015832],\n\t\t\t\t\t\t[-79.506923, 33.032813],\n\t\t\t\t\t\t[-79.522449, 33.035350],\n\t\t\t\t\t\t[-79.557560, 33.021269],\n\t\t\t\t\t\t[-79.580725, 33.006447],\n\t\t\t\t\t\t[-79.586590, 32.991334],\n\t\t\t\t\t\t[-79.601020, 32.979282],\n\t\t\t\t\t\t[-79.606615, 32.972248],\n\t\t\t\t\t\t[-79.617611, 32.952726],\n\t\t\t\t\t\t[-79.617715, 32.944870],\n\t\t\t\t\t\t[-79.612928, 32.934815],\n\t\t\t\t\t\t[-79.606194, 32.925953],\n\t\t\t\t\t\t[-79.585897, 32.926461],\n\t\t\t\t\t\t[-79.581687, 32.931341],\n\t\t\t\t\t\t[-79.574951, 32.934526],\n\t\t\t\t\t\t[-79.572614, 32.933885],\n\t\t\t\t\t\t[-79.569762, 32.926692],\n\t\t\t\t\t\t[-79.576006, 32.906235],\n\t\t\t\t\t\t[-79.631149, 32.888606],\n\t\t\t\t\t\t[-79.655426, 32.872705],\n\t\t\t\t\t\t[-79.695141, 32.850398],\n\t\t\t\t\t\t[-79.699482, 32.839997],\n\t\t\t\t\t\t[-79.702956, 32.835781],\n\t\t\t\t\t\t[-79.719879, 32.825796],\n\t\t\t\t\t\t[-79.716761, 32.813627],\n\t\t\t\t\t\t[-79.726389, 32.805996],\n\t\t\t\t\t\t[-79.811021, 32.776960],\n\t\t\t\t\t\t[-79.818237, 32.766352],\n\t\t\t\t\t\t[-79.840350, 32.756816],\n\t\t\t\t\t\t[-79.848527, 32.755248],\n\t\t\t\t\t\t[-79.866742, 32.757422],\n\t\t\t\t\t\t[-79.872232, 32.752128],\n\t\t\t\t\t\t[-79.873605, 32.745657],\n\t\t\t\t\t\t[-79.868352, 32.734849],\n\t\t\t\t\t\t[-79.870336, 32.727777],\n\t\t\t\t\t\t[-79.888028, 32.695177],\n\t\t\t\t\t\t[-79.884961, 32.684402],\n\t\t\t\t\t\t[-79.915682, 32.664915],\n\t\t\t\t\t\t[-79.968468, 32.639732],\n\t\t\t\t\t\t[-79.975248, 32.639537],\n\t\t\t\t\t\t[-79.986917, 32.626388],\n\t\t\t\t\t\t[-79.991750, 32.616389],\n\t\t\t\t\t\t[-79.999374, 32.611851],\n\t\t\t\t\t\t[-80.010505, 32.608852],\n\t\t\t\t\t\t[-80.037276, 32.610236],\n\t\t\t\t\t\t[-80.077039, 32.603319],\n\t\t\t\t\t\t[-80.121368, 32.590523],\n\t\t\t\t\t\t[-80.148406, 32.578479],\n\t\t\t\t\t\t[-80.167286, 32.559885],\n\t\t\t\t\t\t[-80.171764, 32.546118],\n\t\t\t\t\t\t[-80.188401, 32.553604],\n\t\t\t\t\t\t[-80.193676, 32.554213],\n\t\t\t\t\t\t[-80.205230, 32.555547],\n\t\t\t\t\t\t[-80.246361, 32.531114],\n\t\t\t\t\t\t[-80.249566, 32.529584],\n\t\t\t\t\t\t[-80.352823, 32.500187],\n\t\t\t\t\t\t[-80.416586, 32.546318],\n\t\t\t\t\t\t[-80.389955, 32.647906],\n\t\t\t\t\t\t[-80.446077, 32.727477],\n\t\t\t\t\t\t[-80.401340, 32.858466],\n\t\t\t\t\t\t[-80.148108, 32.818904],\n\t\t\t\t\t\t[-80.158808, 32.830114],\n\t\t\t\t\t\t[-80.163130, 32.841270],\n\t\t\t\t\t\t[-80.174460, 32.845651],\n\t\t\t\t\t\t[-80.079028, 32.927811],\n\t\t\t\t\t\t[-80.149246, 33.021601],\n\t\t\t\t\t\t[-80.055463, 32.999514],\n\t\t\t\t\t\t[-80.011774, 32.899881],\n\t\t\t\t\t\t[-79.948848, 32.908110],\n\t\t\t\t\t\t[-79.928305, 32.823983],\n\t\t\t\t\t\t[-79.855069, 32.873870],\n\t\t\t\t\t\t[-79.643301, 33.123453],\n\t\t\t\t\t\t[-79.518844, 33.148297],\n\t\t\t\t\t\t[-79.446699, 33.213458]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46071\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"071\",\n\t\t\t\t\"NAME\": \"Jackson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1863.914000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-101.228179, 43.389185],\n\t\t\t\t\t\t[-102.110819, 43.389902],\n\t\t\t\t\t\t[-102.139051, 43.476676],\n\t\t\t\t\t\t[-102.139158, 43.700948],\n\t\t\t\t\t\t[-102.018887, 43.708618],\n\t\t\t\t\t\t[-102.007336, 43.994530],\n\t\t\t\t\t\t[-101.064068, 43.994929],\n\t\t\t\t\t\t[-101.064326, 43.841090],\n\t\t\t\t\t\t[-101.228264, 43.788844],\n\t\t\t\t\t\t[-101.228179, 43.389185]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46081\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"081\",\n\t\t\t\t\"NAME\": \"Lawrence\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 800.035000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-104.054562, 44.141081],\n\t\t\t\t\t\t[-104.054487, 44.180381],\n\t\t\t\t\t\t[-104.055927, 44.517730],\n\t\t\t\t\t\t[-104.055892, 44.543341],\n\t\t\t\t\t\t[-104.055877, 44.571016],\n\t\t\t\t\t\t[-103.820639, 44.604777],\n\t\t\t\t\t\t[-103.567653, 44.604098],\n\t\t\t\t\t\t[-103.574396, 44.256077],\n\t\t\t\t\t\t[-103.453016, 44.256609],\n\t\t\t\t\t\t[-103.452453, 44.140772],\n\t\t\t\t\t\t[-104.054562, 44.141081]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46083\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"083\",\n\t\t\t\t\"NAME\": \"Lincoln\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 577.279000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.584124, 43.268101],\n\t\t\t\t\t\t[-96.572489, 43.249178],\n\t\t\t\t\t\t[-96.557126, 43.224192],\n\t\t\t\t\t\t[-96.485264, 43.224183],\n\t\t\t\t\t\t[-96.475571, 43.221054],\n\t\t\t\t\t\t[-96.436589, 43.120842],\n\t\t\t\t\t\t[-96.439335, 43.113916],\n\t\t\t\t\t\t[-96.455107, 43.083366],\n\t\t\t\t\t\t[-96.805682, 43.083670],\n\t\t\t\t\t\t[-96.924142, 43.083733],\n\t\t\t\t\t\t[-96.924841, 43.500007],\n\t\t\t\t\t\t[-96.598928, 43.500457],\n\t\t\t\t\t\t[-96.587151, 43.484697],\n\t\t\t\t\t\t[-96.584070, 43.468856],\n\t\t\t\t\t\t[-96.600039, 43.457080],\n\t\t\t\t\t\t[-96.602860, 43.450907],\n\t\t\t\t\t\t[-96.594254, 43.434153],\n\t\t\t\t\t\t[-96.557586, 43.406792],\n\t\t\t\t\t\t[-96.537460, 43.395246],\n\t\t\t\t\t\t[-96.531159, 43.395610],\n\t\t\t\t\t\t[-96.529152, 43.397735],\n\t\t\t\t\t\t[-96.524044, 43.394762],\n\t\t\t\t\t\t[-96.521697, 43.386897],\n\t\t\t\t\t\t[-96.521264, 43.374978],\n\t\t\t\t\t\t[-96.525564, 43.312467],\n\t\t\t\t\t\t[-96.530392, 43.300034],\n\t\t\t\t\t\t[-96.551929, 43.292974],\n\t\t\t\t\t\t[-96.569110, 43.295535],\n\t\t\t\t\t\t[-96.586317, 43.274319],\n\t\t\t\t\t\t[-96.584124, 43.268101]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46089\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"089\",\n\t\t\t\t\"NAME\": \"McPherson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1136.644000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.717466, 45.593428],\n\t\t\t\t\t\t[-99.718071, 45.940907],\n\t\t\t\t\t\t[-99.692975, 45.940949],\n\t\t\t\t\t\t[-99.671938, 45.941062],\n\t\t\t\t\t\t[-99.611160, 45.941098],\n\t\t\t\t\t\t[-99.588780, 45.941104],\n\t\t\t\t\t\t[-99.493140, 45.940383],\n\t\t\t\t\t\t[-99.490254, 45.940362],\n\t\t\t\t\t\t[-99.401260, 45.940367],\n\t\t\t\t\t\t[-99.385565, 45.940407],\n\t\t\t\t\t\t[-99.378486, 45.940403],\n\t\t\t\t\t\t[-99.344960, 45.940299],\n\t\t\t\t\t\t[-99.344774, 45.940299],\n\t\t\t\t\t\t[-99.317875, 45.940263],\n\t\t\t\t\t\t[-99.297272, 45.940165],\n\t\t\t\t\t\t[-99.283968, 45.940195],\n\t\t\t\t\t\t[-99.276266, 45.940188],\n\t\t\t\t\t\t[-99.257745, 45.940060],\n\t\t\t\t\t\t[-99.222269, 45.940071],\n\t\t\t\t\t\t[-99.221672, 45.940069],\n\t\t\t\t\t\t[-99.213644, 45.940116],\n\t\t\t\t\t\t[-99.212571, 45.940108],\n\t\t\t\t\t\t[-99.102372, 45.940158],\n\t\t\t\t\t\t[-99.092868, 45.940184],\n\t\t\t\t\t\t[-99.005754, 45.939944],\n\t\t\t\t\t\t[-99.005642, 45.939944],\n\t\t\t\t\t\t[-98.905477, 45.939520],\n\t\t\t\t\t\t[-98.904429, 45.939520],\n\t\t\t\t\t\t[-98.724375, 45.938685],\n\t\t\t\t\t\t[-98.725002, 45.591252],\n\t\t\t\t\t\t[-99.707705, 45.593391],\n\t\t\t\t\t\t[-99.717466, 45.593428]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46099\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"099\",\n\t\t\t\t\"NAME\": \"Minnehaha\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 807.147000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.129089, 43.847973],\n\t\t\t\t\t\t[-96.888664, 43.848385],\n\t\t\t\t\t\t[-96.508636, 43.847591],\n\t\t\t\t\t\t[-96.453264, 43.849501],\n\t\t\t\t\t\t[-96.453088, 43.805123],\n\t\t\t\t\t\t[-96.453281, 43.791435],\n\t\t\t\t\t\t[-96.453380, 43.689637],\n\t\t\t\t\t\t[-96.453408, 43.675008],\n\t\t\t\t\t\t[-96.453387, 43.609944],\n\t\t\t\t\t\t[-96.453356, 43.607544],\n\t\t\t\t\t\t[-96.453383, 43.588183],\n\t\t\t\t\t\t[-96.453352, 43.587040],\n\t\t\t\t\t\t[-96.453049, 43.500415],\n\t\t\t\t\t\t[-96.591213, 43.500514],\n\t\t\t\t\t\t[-96.598928, 43.500457],\n\t\t\t\t\t\t[-96.924841, 43.500007],\n\t\t\t\t\t\t[-97.129478, 43.499683],\n\t\t\t\t\t\t[-97.129089, 43.847973]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46105\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"105\",\n\t\t\t\t\"NAME\": \"Perkins\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2870.478000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-102.957371, 45.039569],\n\t\t\t\t\t\t[-102.957281, 45.212851],\n\t\t\t\t\t\t[-102.942070, 45.945092],\n\t\t\t\t\t\t[-102.920482, 45.945038],\n\t\t\t\t\t\t[-102.880252, 45.945069],\n\t\t\t\t\t\t[-102.704871, 45.945072],\n\t\t\t\t\t\t[-102.674077, 45.945274],\n\t\t\t\t\t\t[-102.672474, 45.945244],\n\t\t\t\t\t\t[-102.666684, 45.945307],\n\t\t\t\t\t\t[-102.651620, 45.945450],\n\t\t\t\t\t\t[-102.642555, 45.945404],\n\t\t\t\t\t\t[-102.558579, 45.945129],\n\t\t\t\t\t\t[-102.550947, 45.945015],\n\t\t\t\t\t\t[-102.476024, 45.945183],\n\t\t\t\t\t\t[-102.467563, 45.945159],\n\t\t\t\t\t\t[-102.459586, 45.945081],\n\t\t\t\t\t\t[-102.446419, 45.945083],\n\t\t\t\t\t\t[-102.425397, 45.945041],\n\t\t\t\t\t\t[-102.425358, 45.944990],\n\t\t\t\t\t\t[-102.420173, 45.945070],\n\t\t\t\t\t\t[-102.410346, 45.945079],\n\t\t\t\t\t\t[-102.406176, 45.944997],\n\t\t\t\t\t\t[-102.398575, 45.944868],\n\t\t\t\t\t\t[-102.396359, 45.944916],\n\t\t\t\t\t\t[-102.392767, 45.944979],\n\t\t\t\t\t\t[-102.392696, 45.944951],\n\t\t\t\t\t\t[-102.354283, 45.944901],\n\t\t\t\t\t\t[-102.353384, 45.944984],\n\t\t\t\t\t\t[-102.328230, 45.944806],\n\t\t\t\t\t\t[-102.217867, 45.944711],\n\t\t\t\t\t\t[-102.176993, 45.944622],\n\t\t\t\t\t\t[-102.176698, 45.944622],\n\t\t\t\t\t\t[-102.159439, 45.944641],\n\t\t\t\t\t\t[-102.157965, 45.944641],\n\t\t\t\t\t\t[-102.156393, 45.944663],\n\t\t\t\t\t\t[-102.145356, 45.944659],\n\t\t\t\t\t\t[-102.135269, 45.944586],\n\t\t\t\t\t\t[-102.125429, 45.944652],\n\t\t\t\t\t\t[-102.124628, 45.944813],\n\t\t\t\t\t\t[-102.087555, 45.944598],\n\t\t\t\t\t\t[-102.085122, 45.944642],\n\t\t\t\t\t\t[-102.060930, 45.944622],\n\t\t\t\t\t\t[-102.000679, 45.944515],\n\t\t\t\t\t\t[-101.999790, 45.472414],\n\t\t\t\t\t\t[-101.999993, 45.037999],\n\t\t\t\t\t\t[-102.957371, 45.039569]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46109\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"109\",\n\t\t\t\t\"NAME\": \"Roberts\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1101.041000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.226244, 45.297647],\n\t\t\t\t\t\t[-97.227089, 45.558158],\n\t\t\t\t\t\t[-97.228304, 45.935141],\n\t\t\t\t\t\t[-97.228291, 45.935141],\n\t\t\t\t\t\t[-97.144987, 45.935278],\n\t\t\t\t\t\t[-97.118053, 45.935485],\n\t\t\t\t\t\t[-97.019596, 45.935382],\n\t\t\t\t\t\t[-96.998652, 45.935700],\n\t\t\t\t\t\t[-96.791505, 45.935857],\n\t\t\t\t\t\t[-96.701313, 45.935807],\n\t\t\t\t\t\t[-96.680646, 45.935716],\n\t\t\t\t\t\t[-96.659895, 45.935560],\n\t\t\t\t\t\t[-96.639066, 45.935318],\n\t\t\t\t\t\t[-96.618295, 45.935407],\n\t\t\t\t\t\t[-96.607142, 45.935301],\n\t\t\t\t\t\t[-96.597432, 45.935209],\n\t\t\t\t\t\t[-96.576897, 45.935259],\n\t\t\t\t\t\t[-96.563280, 45.935238],\n\t\t\t\t\t\t[-96.564518, 45.926256],\n\t\t\t\t\t\t[-96.564317, 45.921074],\n\t\t\t\t\t\t[-96.569069, 45.914785],\n\t\t\t\t\t\t[-96.569401, 45.913946],\n\t\t\t\t\t\t[-96.569265, 45.911471],\n\t\t\t\t\t\t[-96.568918, 45.911426],\n\t\t\t\t\t\t[-96.568315, 45.902902],\n\t\t\t\t\t\t[-96.568053, 45.898697],\n\t\t\t\t\t\t[-96.568281, 45.891203],\n\t\t\t\t\t\t[-96.568772, 45.888072],\n\t\t\t\t\t\t[-96.572984, 45.861602],\n\t\t\t\t\t\t[-96.576544, 45.839945],\n\t\t\t\t\t\t[-96.579740, 45.825820],\n\t\t\t\t\t\t[-96.583085, 45.820024],\n\t\t\t\t\t\t[-96.652226, 45.746809],\n\t\t\t\t\t\t[-96.672665, 45.732336],\n\t\t\t\t\t\t[-96.711157, 45.717561],\n\t\t\t\t\t\t[-96.745086, 45.701576],\n\t\t\t\t\t\t[-96.835769, 45.649648],\n\t\t\t\t\t\t[-96.840746, 45.645294],\n\t\t\t\t\t\t[-96.844211, 45.639583],\n\t\t\t\t\t\t[-96.857751, 45.605962],\n\t\t\t\t\t\t[-96.853646, 45.602307],\n\t\t\t\t\t\t[-96.849444, 45.598944],\n\t\t\t\t\t\t[-96.844334, 45.594375],\n\t\t\t\t\t\t[-96.843957, 45.594003],\n\t\t\t\t\t\t[-96.835451, 45.586129],\n\t\t\t\t\t\t[-96.784863, 45.541300],\n\t\t\t\t\t\t[-96.765280, 45.521414],\n\t\t\t\t\t\t[-96.745487, 45.488712],\n\t\t\t\t\t\t[-96.742509, 45.478723],\n\t\t\t\t\t\t[-96.732739, 45.458737],\n\t\t\t\t\t\t[-96.692541, 45.417338],\n\t\t\t\t\t\t[-96.680454, 45.410499],\n\t\t\t\t\t\t[-96.617726, 45.408092],\n\t\t\t\t\t\t[-96.521787, 45.375645],\n\t\t\t\t\t\t[-96.489065, 45.357071],\n\t\t\t\t\t\t[-96.470020, 45.326832],\n\t\t\t\t\t\t[-96.992946, 45.326880],\n\t\t\t\t\t\t[-97.007543, 45.296866],\n\t\t\t\t\t\t[-97.226244, 45.297647]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US33001\",\n\t\t\t\t\"STATE\": \"33\",\n\t\t\t\t\"COUNTY\": \"001\",\n\t\t\t\t\"NAME\": \"Belknap\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 400.232000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-71.532369, 43.765028],\n\t\t\t\t\t\t[-71.460347, 43.709747],\n\t\t\t\t\t\t[-71.439621, 43.696002],\n\t\t\t\t\t\t[-71.344184, 43.629327],\n\t\t\t\t\t\t[-71.163626, 43.539370],\n\t\t\t\t\t\t[-71.192207, 43.512589],\n\t\t\t\t\t\t[-71.160134, 43.355860],\n\t\t\t\t\t\t[-71.235828, 43.284717],\n\t\t\t\t\t\t[-71.346983, 43.346573],\n\t\t\t\t\t\t[-71.467375, 43.409391],\n\t\t\t\t\t\t[-71.544678, 43.450709],\n\t\t\t\t\t\t[-71.546975, 43.452586],\n\t\t\t\t\t\t[-71.625673, 43.471047],\n\t\t\t\t\t\t[-71.629057, 43.478762],\n\t\t\t\t\t\t[-71.631870, 43.477911],\n\t\t\t\t\t\t[-71.638686, 43.492715],\n\t\t\t\t\t\t[-71.653388, 43.488791],\n\t\t\t\t\t\t[-71.653772, 43.491557],\n\t\t\t\t\t\t[-71.661875, 43.495793],\n\t\t\t\t\t\t[-71.669350, 43.497003],\n\t\t\t\t\t\t[-71.672712, 43.499613],\n\t\t\t\t\t\t[-71.675939, 43.500227],\n\t\t\t\t\t\t[-71.678605, 43.503013],\n\t\t\t\t\t\t[-71.680027, 43.506371],\n\t\t\t\t\t\t[-71.684002, 43.510545],\n\t\t\t\t\t\t[-71.688361, 43.513142],\n\t\t\t\t\t\t[-71.690720, 43.515708],\n\t\t\t\t\t\t[-71.690664, 43.518337],\n\t\t\t\t\t\t[-71.689314, 43.530295],\n\t\t\t\t\t\t[-71.706127, 43.538182],\n\t\t\t\t\t\t[-71.709851, 43.542018],\n\t\t\t\t\t\t[-71.710214, 43.544950],\n\t\t\t\t\t\t[-71.714098, 43.550991],\n\t\t\t\t\t\t[-71.720682, 43.552632],\n\t\t\t\t\t\t[-71.727979, 43.559507],\n\t\t\t\t\t\t[-71.727750, 43.563524],\n\t\t\t\t\t\t[-71.650910, 43.621228],\n\t\t\t\t\t\t[-71.648057, 43.686154],\n\t\t\t\t\t\t[-71.522193, 43.697182],\n\t\t\t\t\t\t[-71.532369, 43.765028]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US33007\",\n\t\t\t\t\"STATE\": \"33\",\n\t\t\t\t\"COUNTY\": \"007\",\n\t\t\t\t\"NAME\": \"Coos\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1794.685000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-71.029101, 44.610331],\n\t\t\t\t\t\t[-71.013490, 44.340882],\n\t\t\t\t\t\t[-71.010239, 44.284774],\n\t\t\t\t\t\t[-71.042493, 44.237803],\n\t\t\t\t\t\t[-71.252401, 44.244235],\n\t\t\t\t\t\t[-71.343617, 44.092234],\n\t\t\t\t\t\t[-71.343214, 44.122282],\n\t\t\t\t\t\t[-71.357508, 44.166003],\n\t\t\t\t\t\t[-71.384993, 44.179144],\n\t\t\t\t\t\t[-71.395246, 44.214910],\n\t\t\t\t\t\t[-71.406901, 44.213320],\n\t\t\t\t\t\t[-71.407246, 44.213258],\n\t\t\t\t\t\t[-71.415801, 44.212082],\n\t\t\t\t\t\t[-71.443312, 44.249291],\n\t\t\t\t\t\t[-71.575752, 44.254699],\n\t\t\t\t\t\t[-71.587113, 44.304786],\n\t\t\t\t\t\t[-71.696665, 44.332326],\n\t\t\t\t\t\t[-71.764537, 44.406403],\n\t\t\t\t\t\t[-71.761966, 44.407027],\n\t\t\t\t\t\t[-71.756091, 44.406401],\n\t\t\t\t\t\t[-71.745011, 44.401359],\n\t\t\t\t\t\t[-71.708934, 44.411611],\n\t\t\t\t\t\t[-71.679950, 44.427908],\n\t\t\t\t\t\t[-71.599480, 44.486455],\n\t\t\t\t\t\t[-71.580263, 44.506509],\n\t\t\t\t\t\t[-71.536251, 44.587939],\n\t\t\t\t\t\t[-71.553156, 44.626645],\n\t\t\t\t\t\t[-71.598656, 44.698005],\n\t\t\t\t\t\t[-71.625323, 44.729718],\n\t\t\t\t\t\t[-71.627358, 44.747544],\n\t\t\t\t\t\t[-71.623924, 44.755135],\n\t\t\t\t\t\t[-71.572520, 44.810074],\n\t\t\t\t\t\t[-71.495844, 44.904980],\n\t\t\t\t\t\t[-71.493985, 44.911312],\n\t\t\t\t\t\t[-71.516814, 44.947588],\n\t\t\t\t\t\t[-71.537784, 44.984298],\n\t\t\t\t\t\t[-71.538592, 44.988182],\n\t\t\t\t\t\t[-71.536980, 44.994177],\n\t\t\t\t\t\t[-71.530091, 44.999656],\n\t\t\t\t\t\t[-71.505000, 45.008151],\n\t\t\t\t\t\t[-71.486457, 45.007011],\n\t\t\t\t\t\t[-71.468567, 45.010222],\n\t\t\t\t\t\t[-71.464555, 45.013637],\n\t\t\t\t\t\t[-71.502487, 45.013367],\n\t\t\t\t\t\t[-71.496098, 45.069235],\n\t\t\t\t\t\t[-71.489145, 45.072308],\n\t\t\t\t\t\t[-71.428828, 45.123881],\n\t\t\t\t\t\t[-71.397810, 45.203553],\n\t\t\t\t\t\t[-71.403267, 45.215348],\n\t\t\t\t\t\t[-71.442880, 45.234799],\n\t\t\t\t\t\t[-71.401182, 45.242544],\n\t\t\t\t\t\t[-71.342961, 45.271281],\n\t\t\t\t\t\t[-71.297092, 45.298985],\n\t\t\t\t\t\t[-71.284396, 45.302434],\n\t\t\t\t\t\t[-71.266754, 45.291230],\n\t\t\t\t\t\t[-71.263042, 45.277401],\n\t\t\t\t\t\t[-71.259614, 45.273240],\n\t\t\t\t\t\t[-71.232998, 45.256625],\n\t\t\t\t\t\t[-71.183785, 45.244932],\n\t\t\t\t\t\t[-71.139430, 45.242958],\n\t\t\t\t\t\t[-71.131953, 45.245423],\n\t\t\t\t\t\t[-71.124517, 45.255270],\n\t\t\t\t\t\t[-71.119914, 45.262287],\n\t\t\t\t\t\t[-71.120112, 45.265738],\n\t\t\t\t\t\t[-71.105151, 45.294635],\n\t\t\t\t\t\t[-71.097772, 45.301906],\n\t\t\t\t\t\t[-71.084334, 45.305293],\n\t\t\t\t\t\t[-71.075640, 45.224093],\n\t\t\t\t\t\t[-71.060101, 45.019661],\n\t\t\t\t\t\t[-71.037518, 44.755607],\n\t\t\t\t\t\t[-71.029101, 44.610331]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US33011\",\n\t\t\t\t\"STATE\": \"33\",\n\t\t\t\t\"COUNTY\": \"011\",\n\t\t\t\t\"NAME\": \"Hillsborough\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 876.139000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-71.809658, 43.124485],\n\t\t\t\t\t\t[-71.733116, 43.139372],\n\t\t\t\t\t\t[-71.707407, 43.144267],\n\t\t\t\t\t\t[-71.707482, 43.144505],\n\t\t\t\t\t\t[-71.704749, 43.145008],\n\t\t\t\t\t\t[-71.700628, 43.146174],\n\t\t\t\t\t\t[-71.667826, 43.152588],\n\t\t\t\t\t\t[-71.641252, 43.054173],\n\t\t\t\t\t\t[-71.518521, 43.068914],\n\t\t\t\t\t\t[-71.392210, 43.008984],\n\t\t\t\t\t\t[-71.391868, 43.007857],\n\t\t\t\t\t\t[-71.377409, 42.947185],\n\t\t\t\t\t\t[-71.441810, 42.889586],\n\t\t\t\t\t\t[-71.360808, 42.798988],\n\t\t\t\t\t\t[-71.245504, 42.742589],\n\t\t\t\t\t\t[-71.254532, 42.734136],\n\t\t\t\t\t\t[-71.294205, 42.696990],\n\t\t\t\t\t\t[-71.542520, 42.702726],\n\t\t\t\t\t\t[-71.631814, 42.704788],\n\t\t\t\t\t\t[-71.636214, 42.704888],\n\t\t\t\t\t\t[-71.772510, 42.708310],\n\t\t\t\t\t\t[-71.805450, 42.709137],\n\t\t\t\t\t\t[-71.898714, 42.711478],\n\t\t\t\t\t\t[-71.928811, 42.712234],\n\t\t\t\t\t\t[-72.001034, 42.919510],\n\t\t\t\t\t\t[-72.062374, 42.944837],\n\t\t\t\t\t\t[-72.038149, 43.128807],\n\t\t\t\t\t\t[-72.023403, 43.160151],\n\t\t\t\t\t\t[-72.036791, 43.182553],\n\t\t\t\t\t\t[-72.008995, 43.187874],\n\t\t\t\t\t\t[-71.913255, 43.207263],\n\t\t\t\t\t\t[-71.856029, 43.115383],\n\t\t\t\t\t\t[-71.809658, 43.124485]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US33013\",\n\t\t\t\t\"STATE\": \"33\",\n\t\t\t\t\"COUNTY\": \"013\",\n\t\t\t\t\"NAME\": \"Merrimack\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 934.116000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-71.809658, 43.124485],\n\t\t\t\t\t\t[-71.856029, 43.115383],\n\t\t\t\t\t\t[-71.913255, 43.207263],\n\t\t\t\t\t\t[-72.008995, 43.187874],\n\t\t\t\t\t\t[-72.090028, 43.322567],\n\t\t\t\t\t\t[-72.053802, 43.441078],\n\t\t\t\t\t\t[-71.935220, 43.528449],\n\t\t\t\t\t\t[-71.892145, 43.574660],\n\t\t\t\t\t\t[-71.864053, 43.599442],\n\t\t\t\t\t\t[-71.818050, 43.544603],\n\t\t\t\t\t\t[-71.727750, 43.563524],\n\t\t\t\t\t\t[-71.727979, 43.559507],\n\t\t\t\t\t\t[-71.720682, 43.552632],\n\t\t\t\t\t\t[-71.714098, 43.550991],\n\t\t\t\t\t\t[-71.710214, 43.544950],\n\t\t\t\t\t\t[-71.709851, 43.542018],\n\t\t\t\t\t\t[-71.706127, 43.538182],\n\t\t\t\t\t\t[-71.689314, 43.530295],\n\t\t\t\t\t\t[-71.690664, 43.518337],\n\t\t\t\t\t\t[-71.690720, 43.515708],\n\t\t\t\t\t\t[-71.688361, 43.513142],\n\t\t\t\t\t\t[-71.684002, 43.510545],\n\t\t\t\t\t\t[-71.680027, 43.506371],\n\t\t\t\t\t\t[-71.678605, 43.503013],\n\t\t\t\t\t\t[-71.675939, 43.500227],\n\t\t\t\t\t\t[-71.672712, 43.499613],\n\t\t\t\t\t\t[-71.669350, 43.497003],\n\t\t\t\t\t\t[-71.661875, 43.495793],\n\t\t\t\t\t\t[-71.653772, 43.491557],\n\t\t\t\t\t\t[-71.653388, 43.488791],\n\t\t\t\t\t\t[-71.638686, 43.492715],\n\t\t\t\t\t\t[-71.631870, 43.477911],\n\t\t\t\t\t\t[-71.629057, 43.478762],\n\t\t\t\t\t\t[-71.625673, 43.471047],\n\t\t\t\t\t\t[-71.546975, 43.452586],\n\t\t\t\t\t\t[-71.544678, 43.450709],\n\t\t\t\t\t\t[-71.467375, 43.409391],\n\t\t\t\t\t\t[-71.346983, 43.346573],\n\t\t\t\t\t\t[-71.235828, 43.284717],\n\t\t\t\t\t\t[-71.247215, 43.274201],\n\t\t\t\t\t\t[-71.356182, 43.101971],\n\t\t\t\t\t\t[-71.392210, 43.008984],\n\t\t\t\t\t\t[-71.518521, 43.068914],\n\t\t\t\t\t\t[-71.641252, 43.054173],\n\t\t\t\t\t\t[-71.667826, 43.152588],\n\t\t\t\t\t\t[-71.700628, 43.146174],\n\t\t\t\t\t\t[-71.704749, 43.145008],\n\t\t\t\t\t\t[-71.707482, 43.144505],\n\t\t\t\t\t\t[-71.707407, 43.144267],\n\t\t\t\t\t\t[-71.733116, 43.139372],\n\t\t\t\t\t\t[-71.809658, 43.124485]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US34001\",\n\t\t\t\t\"STATE\": \"34\",\n\t\t\t\t\"COUNTY\": \"001\",\n\t\t\t\t\"NAME\": \"Atlantic\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 555.704000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-74.877189, 39.608288],\n\t\t\t\t\t\t[-74.801051, 39.674102],\n\t\t\t\t\t\t[-74.736309, 39.729909],\n\t\t\t\t\t\t[-74.621959, 39.626633],\n\t\t\t\t\t\t[-74.479558, 39.555970],\n\t\t\t\t\t\t[-74.417393, 39.557255],\n\t\t\t\t\t\t[-74.312451, 39.499869],\n\t\t\t\t\t\t[-74.313689, 39.493874],\n\t\t\t\t\t\t[-74.308344, 39.483945],\n\t\t\t\t\t\t[-74.304778, 39.482945],\n\t\t\t\t\t\t[-74.302184, 39.478935],\n\t\t\t\t\t\t[-74.304343, 39.471445],\n\t\t\t\t\t\t[-74.334804, 39.432001],\n\t\t\t\t\t\t[-74.366990, 39.402017],\n\t\t\t\t\t\t[-74.406692, 39.377516],\n\t\t\t\t\t\t[-74.406792, 39.373916],\n\t\t\t\t\t\t[-74.408237, 39.365071],\n\t\t\t\t\t\t[-74.412692, 39.360816],\n\t\t\t\t\t\t[-74.459894, 39.345016],\n\t\t\t\t\t\t[-74.521797, 39.313816],\n\t\t\t\t\t\t[-74.541443, 39.300245],\n\t\t\t\t\t\t[-74.699745, 39.289593],\n\t\t\t\t\t\t[-74.861073, 39.323768],\n\t\t\t\t\t\t[-74.855894, 39.424562],\n\t\t\t\t\t\t[-74.985223, 39.514802],\n\t\t\t\t\t\t[-74.911566, 39.578620],\n\t\t\t\t\t\t[-74.877189, 39.608288]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US34005\",\n\t\t\t\t\"STATE\": \"34\",\n\t\t\t\t\"COUNTY\": \"005\",\n\t\t\t\t\"NAME\": \"Burlington\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 798.576000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-74.900236, 40.077149],\n\t\t\t\t\t\t[-74.838008, 40.100910],\n\t\t\t\t\t\t[-74.740605, 40.135210],\n\t\t\t\t\t\t[-74.724304, 40.147010],\n\t\t\t\t\t\t[-74.724179, 40.147324],\n\t\t\t\t\t\t[-74.594770, 40.137875],\n\t\t\t\t\t\t[-74.593987, 40.137541],\n\t\t\t\t\t\t[-74.593354, 40.137855],\n\t\t\t\t\t\t[-74.592650, 40.137818],\n\t\t\t\t\t\t[-74.592468, 40.138494],\n\t\t\t\t\t\t[-74.591754, 40.137981],\n\t\t\t\t\t\t[-74.591221, 40.137913],\n\t\t\t\t\t\t[-74.589954, 40.138879],\n\t\t\t\t\t\t[-74.589638, 40.138741],\n\t\t\t\t\t\t[-74.589614, 40.138190],\n\t\t\t\t\t\t[-74.589318, 40.138051],\n\t\t\t\t\t\t[-74.587847, 40.138237],\n\t\t\t\t\t\t[-74.553105, 40.079130],\n\t\t\t\t\t\t[-74.528808, 40.036964],\n\t\t\t\t\t\t[-74.434653, 39.854803],\n\t\t\t\t\t\t[-74.389905, 39.773428],\n\t\t\t\t\t\t[-74.390399, 39.596037],\n\t\t\t\t\t\t[-74.417393, 39.557255],\n\t\t\t\t\t\t[-74.479558, 39.555970],\n\t\t\t\t\t\t[-74.621959, 39.626633],\n\t\t\t\t\t\t[-74.736309, 39.729909],\n\t\t\t\t\t\t[-74.758064, 39.743695],\n\t\t\t\t\t\t[-74.772894, 39.750929],\n\t\t\t\t\t\t[-74.791478, 39.772119],\n\t\t\t\t\t\t[-74.812471, 39.785269],\n\t\t\t\t\t\t[-74.845183, 39.790000],\n\t\t\t\t\t\t[-74.876499, 39.781647],\n\t\t\t\t\t\t[-74.889062, 39.781804],\n\t\t\t\t\t\t[-74.902546, 39.790797],\n\t\t\t\t\t\t[-74.903267, 39.791247],\n\t\t\t\t\t\t[-74.926935, 39.873839],\n\t\t\t\t\t\t[-74.932174, 39.887532],\n\t\t\t\t\t\t[-74.951823, 39.901470],\n\t\t\t\t\t\t[-74.964146, 39.920683],\n\t\t\t\t\t\t[-74.983717, 39.926940],\n\t\t\t\t\t\t[-74.984549, 39.931238],\n\t\t\t\t\t\t[-74.974879, 39.938382],\n\t\t\t\t\t\t[-74.988925, 39.941050],\n\t\t\t\t\t\t[-74.994442, 39.939266],\n\t\t\t\t\t\t[-75.014966, 39.946546],\n\t\t\t\t\t\t[-75.013450, 39.954188],\n\t\t\t\t\t\t[-75.013114, 39.956433],\n\t\t\t\t\t\t[-75.017537, 39.959087],\n\t\t\t\t\t\t[-75.016653, 39.960623],\n\t\t\t\t\t\t[-75.017468, 39.963509],\n\t\t\t\t\t\t[-75.018723, 39.963664],\n\t\t\t\t\t\t[-75.019212, 39.967462],\n\t\t\t\t\t\t[-75.010146, 39.979768],\n\t\t\t\t\t\t[-75.035461, 39.995951],\n\t\t\t\t\t\t[-75.056039, 39.991795],\n\t\t\t\t\t\t[-75.014343, 40.020976],\n\t\t\t\t\t\t[-74.974713, 40.048711],\n\t\t\t\t\t\t[-74.974290, 40.048872],\n\t\t\t\t\t\t[-74.900236, 40.077149]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US34011\",\n\t\t\t\t\"STATE\": \"34\",\n\t\t\t\t\"COUNTY\": \"011\",\n\t\t\t\t\"NAME\": \"Cumberland\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 483.703000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-75.407294, 39.381954],\n\t\t\t\t\t\t[-75.368213, 39.456479],\n\t\t\t\t\t\t[-75.239529, 39.559188],\n\t\t\t\t\t\t[-75.084187, 39.457960],\n\t\t\t\t\t\t[-75.061973, 39.568643],\n\t\t\t\t\t\t[-74.985223, 39.514802],\n\t\t\t\t\t\t[-74.855894, 39.424562],\n\t\t\t\t\t\t[-74.861073, 39.323768],\n\t\t\t\t\t\t[-74.914936, 39.177553],\n\t\t\t\t\t\t[-74.962382, 39.190238],\n\t\t\t\t\t\t[-74.976266, 39.192271],\n\t\t\t\t\t\t[-74.998002, 39.191253],\n\t\t\t\t\t\t[-75.026179, 39.193621],\n\t\t\t\t\t\t[-75.028885, 39.194560],\n\t\t\t\t\t\t[-75.027824, 39.199482],\n\t\t\t\t\t\t[-75.023586, 39.202594],\n\t\t\t\t\t\t[-75.023437, 39.204791],\n\t\t\t\t\t\t[-75.026376, 39.209850],\n\t\t\t\t\t\t[-75.035672, 39.215415],\n\t\t\t\t\t\t[-75.041663, 39.215511],\n\t\t\t\t\t\t[-75.047797, 39.211702],\n\t\t\t\t\t\t[-75.052326, 39.213609],\n\t\t\t\t\t\t[-75.062506, 39.213564],\n\t\t\t\t\t\t[-75.086395, 39.208159],\n\t\t\t\t\t\t[-75.101019, 39.211657],\n\t\t\t\t\t\t[-75.107286, 39.211403],\n\t\t\t\t\t\t[-75.114748, 39.207554],\n\t\t\t\t\t\t[-75.127070, 39.189766],\n\t\t\t\t\t\t[-75.136548, 39.179425],\n\t\t\t\t\t\t[-75.139136, 39.180021],\n\t\t\t\t\t\t[-75.165979, 39.201842],\n\t\t\t\t\t\t[-75.164798, 39.216606],\n\t\t\t\t\t\t[-75.170444, 39.234643],\n\t\t\t\t\t\t[-75.177506, 39.242746],\n\t\t\t\t\t\t[-75.205857, 39.262619],\n\t\t\t\t\t\t[-75.212510, 39.262755],\n\t\t\t\t\t\t[-75.241639, 39.274097],\n\t\t\t\t\t\t[-75.244056, 39.277690],\n\t\t\t\t\t\t[-75.242881, 39.280574],\n\t\t\t\t\t\t[-75.244357, 39.285700],\n\t\t\t\t\t\t[-75.251806, 39.299913],\n\t\t\t\t\t\t[-75.271629, 39.304041],\n\t\t\t\t\t\t[-75.282620, 39.299055],\n\t\t\t\t\t\t[-75.285333, 39.292212],\n\t\t\t\t\t\t[-75.288898, 39.289557],\n\t\t\t\t\t\t[-75.306010, 39.301712],\n\t\t\t\t\t\t[-75.315201, 39.310593],\n\t\t\t\t\t\t[-75.326754, 39.332473],\n\t\t\t\t\t\t[-75.327463, 39.339270],\n\t\t\t\t\t\t[-75.333743, 39.345335],\n\t\t\t\t\t\t[-75.341969, 39.348697],\n\t\t\t\t\t\t[-75.355558, 39.347823],\n\t\t\t\t\t\t[-75.365016, 39.341388],\n\t\t\t\t\t\t[-75.390030, 39.358259],\n\t\t\t\t\t\t[-75.394331, 39.363753],\n\t\t\t\t\t\t[-75.395181, 39.371398],\n\t\t\t\t\t\t[-75.399304, 39.379490],\n\t\t\t\t\t\t[-75.407294, 39.381954]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31031\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"031\",\n\t\t\t\t\"NAME\": \"Cherry\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 5960.422000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-102.082486, 42.999356],\n\t\t\t\t\t\t[-101.875424, 42.999298],\n\t\t\t\t\t\t[-101.625424, 42.996238],\n\t\t\t\t\t\t[-101.230325, 42.997899],\n\t\t\t\t\t\t[-101.229203, 42.997854],\n\t\t\t\t\t\t[-101.228104, 42.997874],\n\t\t\t\t\t\t[-101.226853, 42.997896],\n\t\t\t\t\t\t[-101.226494, 42.997901],\n\t\t\t\t\t\t[-100.964190, 42.997886],\n\t\t\t\t\t\t[-100.958365, 42.997796],\n\t\t\t\t\t\t[-100.906714, 42.997910],\n\t\t\t\t\t\t[-100.887898, 42.997881],\n\t\t\t\t\t\t[-100.553131, 42.998721],\n\t\t\t\t\t\t[-100.544018, 42.998795],\n\t\t\t\t\t\t[-100.534335, 42.999017],\n\t\t\t\t\t\t[-100.472742, 42.999288],\n\t\t\t\t\t\t[-100.355406, 42.998760],\n\t\t\t\t\t\t[-100.349548, 42.998740],\n\t\t\t\t\t\t[-100.283713, 42.998767],\n\t\t\t\t\t\t[-100.277793, 42.998674],\n\t\t\t\t\t\t[-100.198434, 42.998542],\n\t\t\t\t\t\t[-100.198413, 42.998542],\n\t\t\t\t\t\t[-100.198412, 42.998542],\n\t\t\t\t\t\t[-100.198478, 42.846102],\n\t\t\t\t\t\t[-100.183270, 42.781005],\n\t\t\t\t\t\t[-100.183167, 42.433430],\n\t\t\t\t\t\t[-100.167605, 42.085848],\n\t\t\t\t\t\t[-100.267622, 42.086147],\n\t\t\t\t\t\t[-100.846129, 42.088166],\n\t\t\t\t\t\t[-101.426557, 42.092194],\n\t\t\t\t\t\t[-102.006204, 42.096338],\n\t\t\t\t\t\t[-102.040280, 42.096744],\n\t\t\t\t\t\t[-102.038169, 42.443307],\n\t\t\t\t\t\t[-102.066689, 42.443463],\n\t\t\t\t\t\t[-102.082546, 42.999356],\n\t\t\t\t\t\t[-102.082486, 42.999356]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31043\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"043\",\n\t\t\t\t\"NAME\": \"Dakota\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 264.255000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.635982, 42.524324],\n\t\t\t\t\t\t[-96.625958, 42.513576],\n\t\t\t\t\t\t[-96.611489, 42.506088],\n\t\t\t\t\t\t[-96.487490, 42.479846],\n\t\t\t\t\t\t[-96.475565, 42.480036],\n\t\t\t\t\t\t[-96.443408, 42.489495],\n\t\t\t\t\t\t[-96.409408, 42.487595],\n\t\t\t\t\t\t[-96.396107, 42.484095],\n\t\t\t\t\t\t[-96.385407, 42.473094],\n\t\t\t\t\t\t[-96.381307, 42.461694],\n\t\t\t\t\t\t[-96.380707, 42.446394],\n\t\t\t\t\t\t[-96.387608, 42.432494],\n\t\t\t\t\t\t[-96.413609, 42.407894],\n\t\t\t\t\t\t[-96.415509, 42.400294],\n\t\t\t\t\t\t[-96.417786, 42.351449],\n\t\t\t\t\t\t[-96.413895, 42.343393],\n\t\t\t\t\t\t[-96.407998, 42.337408],\n\t\t\t\t\t\t[-96.384169, 42.325874],\n\t\t\t\t\t\t[-96.375307, 42.318339],\n\t\t\t\t\t\t[-96.348814, 42.282024],\n\t\t\t\t\t\t[-96.726661, 42.278005],\n\t\t\t\t\t\t[-96.722231, 42.524652],\n\t\t\t\t\t\t[-96.635982, 42.524324]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31049\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"049\",\n\t\t\t\t\"NAME\": \"Deuel\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 439.851000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-102.055535, 41.221547],\n\t\t\t\t\t\t[-102.051761, 41.003890],\n\t\t\t\t\t\t[-102.051718, 41.002377],\n\t\t\t\t\t\t[-102.070598, 41.002423],\n\t\t\t\t\t\t[-102.124972, 41.002338],\n\t\t\t\t\t\t[-102.191210, 41.002326],\n\t\t\t\t\t\t[-102.209361, 41.002442],\n\t\t\t\t\t\t[-102.212200, 41.002462],\n\t\t\t\t\t\t[-102.231931, 41.002327],\n\t\t\t\t\t\t[-102.267812, 41.002383],\n\t\t\t\t\t\t[-102.272100, 41.002245],\n\t\t\t\t\t\t[-102.291354, 41.002207],\n\t\t\t\t\t\t[-102.292553, 41.002207],\n\t\t\t\t\t\t[-102.292622, 41.002230],\n\t\t\t\t\t\t[-102.292833, 41.002207],\n\t\t\t\t\t\t[-102.364066, 41.002174],\n\t\t\t\t\t\t[-102.379593, 41.002301],\n\t\t\t\t\t\t[-102.469223, 41.002424],\n\t\t\t\t\t\t[-102.470537, 41.002382],\n\t\t\t\t\t\t[-102.487955, 41.002445],\n\t\t\t\t\t\t[-102.556789, 41.002219],\n\t\t\t\t\t\t[-102.566048, 41.002200],\n\t\t\t\t\t\t[-102.575496, 41.002200],\n\t\t\t\t\t\t[-102.575738, 41.002268],\n\t\t\t\t\t\t[-102.578696, 41.002291],\n\t\t\t\t\t\t[-102.621033, 41.002597],\n\t\t\t\t\t\t[-102.610413, 41.221614],\n\t\t\t\t\t\t[-102.055535, 41.221547]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31055\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"055\",\n\t\t\t\t\"NAME\": \"Douglas\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 328.455000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.923219, 41.191046],\n\t\t\t\t\t\t[-96.158333, 41.190762],\n\t\t\t\t\t\t[-96.327399, 41.189999],\n\t\t\t\t\t\t[-96.350598, 41.265192],\n\t\t\t\t\t\t[-96.470720, 41.393239],\n\t\t\t\t\t\t[-96.329012, 41.393136],\n\t\t\t\t\t\t[-95.939300, 41.393184],\n\t\t\t\t\t\t[-95.938310, 41.392162],\n\t\t\t\t\t\t[-95.956791, 41.349196],\n\t\t\t\t\t\t[-95.956691, 41.345496],\n\t\t\t\t\t\t[-95.953091, 41.339896],\n\t\t\t\t\t\t[-95.939291, 41.328897],\n\t\t\t\t\t\t[-95.925690, 41.322197],\n\t\t\t\t\t\t[-95.913790, 41.320197],\n\t\t\t\t\t\t[-95.902490, 41.273398],\n\t\t\t\t\t\t[-95.924891, 41.211198],\n\t\t\t\t\t\t[-95.927491, 41.202198],\n\t\t\t\t\t\t[-95.925990, 41.195698],\n\t\t\t\t\t\t[-95.923219, 41.191046]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31061\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"061\",\n\t\t\t\t\"NAME\": \"Franklin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 575.816000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.726373, 40.002222],\n\t\t\t\t\t\t[-98.774941, 40.002336],\n\t\t\t\t\t\t[-98.777203, 40.002359],\n\t\t\t\t\t\t[-98.820590, 40.002319],\n\t\t\t\t\t\t[-98.834456, 40.002363],\n\t\t\t\t\t\t[-98.934792, 40.002205],\n\t\t\t\t\t\t[-98.960919, 40.002271],\n\t\t\t\t\t\t[-98.961009, 40.002317],\n\t\t\t\t\t\t[-98.971721, 40.002268],\n\t\t\t\t\t\t[-98.972287, 40.002245],\n\t\t\t\t\t\t[-98.992135, 40.002192],\n\t\t\t\t\t\t[-99.018701, 40.002333],\n\t\t\t\t\t\t[-99.020338, 40.002264],\n\t\t\t\t\t\t[-99.067022, 40.002170],\n\t\t\t\t\t\t[-99.085597, 40.002133],\n\t\t\t\t\t\t[-99.113510, 40.002193],\n\t\t\t\t\t\t[-99.123033, 40.002165],\n\t\t\t\t\t\t[-99.169816, 40.001925],\n\t\t\t\t\t\t[-99.178965, 40.001977],\n\t\t\t\t\t\t[-99.179133, 40.001977],\n\t\t\t\t\t\t[-99.179403, 40.350681],\n\t\t\t\t\t\t[-98.726827, 40.350398],\n\t\t\t\t\t\t[-98.726373, 40.002222]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31067\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"067\",\n\t\t\t\t\"NAME\": \"Gage\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 851.491000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.912637, 40.523625],\n\t\t\t\t\t\t[-96.463632, 40.523013],\n\t\t\t\t\t\t[-96.463667, 40.262173],\n\t\t\t\t\t\t[-96.463713, 40.000968],\n\t\t\t\t\t\t[-96.467536, 40.001035],\n\t\t\t\t\t\t[-96.469945, 40.000966],\n\t\t\t\t\t\t[-96.527111, 40.001031],\n\t\t\t\t\t\t[-96.538977, 40.000851],\n\t\t\t\t\t\t[-96.557863, 40.000968],\n\t\t\t\t\t\t[-96.570854, 40.001091],\n\t\t\t\t\t\t[-96.580852, 40.000966],\n\t\t\t\t\t\t[-96.604884, 40.000891],\n\t\t\t\t\t\t[-96.610349, 40.000881],\n\t\t\t\t\t\t[-96.622401, 40.001158],\n\t\t\t\t\t\t[-96.805768, 40.001371],\n\t\t\t\t\t\t[-96.873812, 40.001450],\n\t\t\t\t\t\t[-96.875057, 40.001448],\n\t\t\t\t\t\t[-96.878253, 40.001466],\n\t\t\t\t\t\t[-96.880459, 40.001448],\n\t\t\t\t\t\t[-96.916093, 40.001506],\n\t\t\t\t\t\t[-96.916407, 40.001506],\n\t\t\t\t\t\t[-96.915902, 40.348356],\n\t\t\t\t\t\t[-96.915083, 40.349734],\n\t\t\t\t\t\t[-96.913346, 40.351192],\n\t\t\t\t\t\t[-96.912637, 40.523625]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39035\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"035\",\n\t\t\t\t\"NAME\": \"Cuyahoga\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 457.191000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.878053, 41.275044],\n\t\t\t\t\t\t[-81.877066, 41.343557],\n\t\t\t\t\t\t[-81.971262, 41.351268],\n\t\t\t\t\t\t[-81.968130, 41.506422],\n\t\t\t\t\t\t[-81.964912, 41.505446],\n\t\t\t\t\t\t[-81.962664, 41.501341],\n\t\t\t\t\t\t[-81.958463, 41.498642],\n\t\t\t\t\t\t[-81.937862, 41.491443],\n\t\t\t\t\t\t[-81.930404, 41.490457],\n\t\t\t\t\t\t[-81.928652, 41.490226],\n\t\t\t\t\t\t[-81.877360, 41.483445],\n\t\t\t\t\t\t[-81.860262, 41.483841],\n\t\t\t\t\t\t[-81.850141, 41.486255],\n\t\t\t\t\t\t[-81.837092, 41.489367],\n\t\t\t\t\t\t[-81.836059, 41.489614],\n\t\t\t\t\t\t[-81.810992, 41.495592],\n\t\t\t\t\t\t[-81.810758, 41.495648],\n\t\t\t\t\t\t[-81.801207, 41.496223],\n\t\t\t\t\t\t[-81.800253, 41.496281],\n\t\t\t\t\t\t[-81.799746, 41.496311],\n\t\t\t\t\t\t[-81.794449, 41.496630],\n\t\t\t\t\t\t[-81.794157, 41.496648],\n\t\t\t\t\t\t[-81.782258, 41.496050],\n\t\t\t\t\t\t[-81.768898, 41.491663],\n\t\t\t\t\t\t[-81.768856, 41.491649],\n\t\t\t\t\t\t[-81.762489, 41.490460],\n\t\t\t\t\t\t[-81.758610, 41.489736],\n\t\t\t\t\t\t[-81.746095, 41.487400],\n\t\t\t\t\t\t[-81.745818, 41.487348],\n\t\t\t\t\t\t[-81.744755, 41.487150],\n\t\t\t\t\t\t[-81.744272, 41.487263],\n\t\t\t\t\t\t[-81.741852, 41.487827],\n\t\t\t\t\t\t[-81.738755, 41.488550],\n\t\t\t\t\t\t[-81.732674, 41.491437],\n\t\t\t\t\t\t[-81.727806, 41.493749],\n\t\t\t\t\t\t[-81.726429, 41.494402],\n\t\t\t\t\t\t[-81.725763, 41.494718],\n\t\t\t\t\t\t[-81.719310, 41.497782],\n\t\t\t\t\t\t[-81.716836, 41.498957],\n\t\t\t\t\t\t[-81.715590, 41.499549],\n\t\t\t\t\t\t[-81.710986, 41.501734],\n\t\t\t\t\t\t[-81.710953, 41.501750],\n\t\t\t\t\t\t[-81.707622, 41.505108],\n\t\t\t\t\t\t[-81.706864, 41.505872],\n\t\t\t\t\t\t[-81.693250, 41.514161],\n\t\t\t\t\t\t[-81.691248, 41.515379],\n\t\t\t\t\t\t[-81.688058, 41.517321],\n\t\t\t\t\t\t[-81.664884, 41.531430],\n\t\t\t\t\t\t[-81.664851, 41.531450],\n\t\t\t\t\t\t[-81.649872, 41.535775],\n\t\t\t\t\t\t[-81.648453, 41.536185],\n\t\t\t\t\t\t[-81.641055, 41.538321],\n\t\t\t\t\t\t[-81.633652, 41.540458],\n\t\t\t\t\t\t[-81.627431, 41.544163],\n\t\t\t\t\t\t[-81.616910, 41.550428],\n\t\t\t\t\t\t[-81.616567, 41.550633],\n\t\t\t\t\t\t[-81.615816, 41.551079],\n\t\t\t\t\t\t[-81.610163, 41.554446],\n\t\t\t\t\t\t[-81.609670, 41.554740],\n\t\t\t\t\t\t[-81.599747, 41.560649],\n\t\t\t\t\t\t[-81.593144, 41.565462],\n\t\t\t\t\t\t[-81.593092, 41.565500],\n\t\t\t\t\t\t[-81.591981, 41.566310],\n\t\t\t\t\t\t[-81.591471, 41.566682],\n\t\t\t\t\t\t[-81.579815, 41.575178],\n\t\t\t\t\t\t[-81.579746, 41.575228],\n\t\t\t\t\t\t[-81.579727, 41.575243],\n\t\t\t\t\t\t[-81.579285, 41.575565],\n\t\t\t\t\t\t[-81.578666, 41.576016],\n\t\t\t\t\t\t[-81.577459, 41.576896],\n\t\t\t\t\t\t[-81.575715, 41.578167],\n\t\t\t\t\t\t[-81.575577, 41.578267],\n\t\t\t\t\t\t[-81.562844, 41.587549],\n\t\t\t\t\t\t[-81.531674, 41.612972],\n\t\t\t\t\t\t[-81.531612, 41.613023],\n\t\t\t\t\t\t[-81.529955, 41.614374],\n\t\t\t\t\t\t[-81.529742, 41.614548],\n\t\t\t\t\t\t[-81.527026, 41.615373],\n\t\t\t\t\t\t[-81.520707, 41.617292],\n\t\t\t\t\t\t[-81.509359, 41.620739],\n\t\t\t\t\t\t[-81.500440, 41.623448],\n\t\t\t\t\t\t[-81.488640, 41.631348],\n\t\t\t\t\t\t[-81.488934, 41.627948],\n\t\t\t\t\t\t[-81.488062, 41.598556],\n\t\t\t\t\t\t[-81.488139, 41.577328],\n\t\t\t\t\t\t[-81.487842, 41.570051],\n\t\t\t\t\t\t[-81.419936, 41.569950],\n\t\t\t\t\t\t[-81.417630, 41.569670],\n\t\t\t\t\t\t[-81.408992, 41.569850],\n\t\t\t\t\t\t[-81.391005, 41.569716],\n\t\t\t\t\t\t[-81.391694, 41.348272],\n\t\t\t\t\t\t[-81.399585, 41.348573],\n\t\t\t\t\t\t[-81.450331, 41.349148],\n\t\t\t\t\t\t[-81.592653, 41.351119],\n\t\t\t\t\t\t[-81.598061, 41.350913],\n\t\t\t\t\t\t[-81.590542, 41.277554],\n\t\t\t\t\t\t[-81.684950, 41.277146],\n\t\t\t\t\t\t[-81.878053, 41.275044]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39051\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"051\",\n\t\t\t\t\"NAME\": \"Fulton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 405.443000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.880387, 41.720086],\n\t\t\t\t\t\t[-83.882455, 41.603225],\n\t\t\t\t\t\t[-83.882943, 41.487543],\n\t\t\t\t\t\t[-84.341902, 41.485519],\n\t\t\t\t\t\t[-84.380735, 41.513942],\n\t\t\t\t\t\t[-84.399546, 41.705758],\n\t\t\t\t\t\t[-84.399430, 41.705761],\n\t\t\t\t\t\t[-84.396547, 41.705935],\n\t\t\t\t\t\t[-84.360419, 41.706925],\n\t\t\t\t\t\t[-83.880539, 41.720081],\n\t\t\t\t\t\t[-83.880387, 41.720086]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39053\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"053\",\n\t\t\t\t\"NAME\": \"Gallia\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 466.530000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.139279, 38.866407],\n\t\t\t\t\t\t[-82.184428, 38.816529],\n\t\t\t\t\t\t[-82.191172, 38.815137],\n\t\t\t\t\t\t[-82.215759, 38.797462],\n\t\t\t\t\t\t[-82.221566, 38.787187],\n\t\t\t\t\t\t[-82.220449, 38.773739],\n\t\t\t\t\t\t[-82.198882, 38.757725],\n\t\t\t\t\t\t[-82.188268, 38.734082],\n\t\t\t\t\t\t[-82.182467, 38.708782],\n\t\t\t\t\t\t[-82.172066, 38.625984],\n\t\t\t\t\t\t[-82.172066, 38.619284],\n\t\t\t\t\t\t[-82.175167, 38.608484],\n\t\t\t\t\t\t[-82.177267, 38.603784],\n\t\t\t\t\t\t[-82.181967, 38.599384],\n\t\t\t\t\t\t[-82.193824, 38.593096],\n\t\t\t\t\t\t[-82.218967, 38.591683],\n\t\t\t\t\t\t[-82.245969, 38.598483],\n\t\t\t\t\t\t[-82.262070, 38.598183],\n\t\t\t\t\t\t[-82.274270, 38.593683],\n\t\t\t\t\t\t[-82.287102, 38.582588],\n\t\t\t\t\t\t[-82.361674, 38.585182],\n\t\t\t\t\t\t[-82.354468, 38.676070],\n\t\t\t\t\t\t[-82.472478, 38.682279],\n\t\t\t\t\t\t[-82.483579, 38.772278],\n\t\t\t\t\t\t[-82.582683, 38.779077],\n\t\t\t\t\t\t[-82.575583, 38.844478],\n\t\t\t\t\t\t[-82.455179, 38.844577],\n\t\t\t\t\t\t[-82.435309, 39.035079],\n\t\t\t\t\t\t[-82.322874, 39.027674],\n\t\t\t\t\t\t[-82.095465, 39.002778],\n\t\t\t\t\t\t[-82.098762, 38.958288],\n\t\t\t\t\t\t[-82.139279, 38.866407]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29063\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"063\",\n\t\t\t\t\"NAME\": \"DeKalb\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 421.356000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.218800, 40.034885],\n\t\t\t\t\t\t[-94.203457, 40.034539],\n\t\t\t\t\t\t[-94.205844, 39.788954],\n\t\t\t\t\t\t[-94.205884, 39.767152],\n\t\t\t\t\t\t[-94.205432, 39.760821],\n\t\t\t\t\t\t[-94.205728, 39.756815],\n\t\t\t\t\t\t[-94.205961, 39.745841],\n\t\t\t\t\t\t[-94.602257, 39.747195],\n\t\t\t\t\t\t[-94.602819, 39.819608],\n\t\t\t\t\t\t[-94.605377, 40.039217],\n\t\t\t\t\t\t[-94.218800, 40.034885]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29069\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"069\",\n\t\t\t\t\"NAME\": \"Dunklin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 541.069000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.148398, 36.630656],\n\t\t\t\t\t\t[-89.958786, 36.629331],\n\t\t\t\t\t\t[-89.961310, 36.388803],\n\t\t\t\t\t\t[-89.959375, 35.999020],\n\t\t\t\t\t\t[-89.959377, 35.999020],\n\t\t\t\t\t\t[-89.959893, 35.999020],\n\t\t\t\t\t\t[-89.961075, 35.999135],\n\t\t\t\t\t\t[-89.965327, 35.998813],\n\t\t\t\t\t\t[-89.972563, 35.998994],\n\t\t\t\t\t\t[-90.126350, 35.997596],\n\t\t\t\t\t\t[-90.127331, 35.997635],\n\t\t\t\t\t\t[-90.158812, 35.997375],\n\t\t\t\t\t\t[-90.288800, 35.996419],\n\t\t\t\t\t\t[-90.288947, 35.996418],\n\t\t\t\t\t\t[-90.292376, 35.996397],\n\t\t\t\t\t\t[-90.339434, 35.996033],\n\t\t\t\t\t\t[-90.342616, 35.995895],\n\t\t\t\t\t\t[-90.368718, 35.995812],\n\t\t\t\t\t\t[-90.364430, 36.013625],\n\t\t\t\t\t\t[-90.319168, 36.089976],\n\t\t\t\t\t\t[-90.220425, 36.184764],\n\t\t\t\t\t\t[-90.198735, 36.201382],\n\t\t\t\t\t\t[-90.114922, 36.265595],\n\t\t\t\t\t\t[-90.083731, 36.272332],\n\t\t\t\t\t\t[-90.076301, 36.280708],\n\t\t\t\t\t\t[-90.063980, 36.303038],\n\t\t\t\t\t\t[-90.064514, 36.382085],\n\t\t\t\t\t\t[-90.072897, 36.393007],\n\t\t\t\t\t\t[-90.133993, 36.437906],\n\t\t\t\t\t\t[-90.156369, 36.487748],\n\t\t\t\t\t\t[-90.154409, 36.496832],\n\t\t\t\t\t\t[-90.152481, 36.497952],\n\t\t\t\t\t\t[-90.193943, 36.497823],\n\t\t\t\t\t\t[-90.217323, 36.497797],\n\t\t\t\t\t\t[-90.220702, 36.497858],\n\t\t\t\t\t\t[-90.220732, 36.497858],\n\t\t\t\t\t\t[-90.148398, 36.630656]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29081\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"081\",\n\t\t\t\t\"NAME\": \"Harrison\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 722.504000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.774344, 40.577584],\n\t\t\t\t\t\t[-93.763324, 40.263988],\n\t\t\t\t\t\t[-93.764021, 40.132909],\n\t\t\t\t\t\t[-94.216696, 40.136626],\n\t\t\t\t\t\t[-94.214278, 40.384254],\n\t\t\t\t\t\t[-94.232240, 40.571907],\n\t\t\t\t\t\t[-94.091085, 40.572897],\n\t\t\t\t\t\t[-94.089194, 40.572806],\n\t\t\t\t\t\t[-94.080463, 40.572899],\n\t\t\t\t\t\t[-94.080223, 40.572899],\n\t\t\t\t\t\t[-94.034134, 40.573585],\n\t\t\t\t\t\t[-94.015492, 40.573914],\n\t\t\t\t\t\t[-93.976766, 40.574635],\n\t\t\t\t\t\t[-93.963863, 40.574754],\n\t\t\t\t\t\t[-93.939857, 40.575192],\n\t\t\t\t\t\t[-93.938627, 40.575284],\n\t\t\t\t\t\t[-93.937097, 40.575421],\n\t\t\t\t\t\t[-93.936317, 40.575284],\n\t\t\t\t\t\t[-93.935687, 40.575330],\n\t\t\t\t\t\t[-93.913961, 40.575672],\n\t\t\t\t\t\t[-93.900877, 40.575874],\n\t\t\t\t\t\t[-93.899317, 40.575942],\n\t\t\t\t\t\t[-93.898327, 40.576011],\n\t\t\t\t\t\t[-93.853656, 40.576606],\n\t\t\t\t\t\t[-93.840930, 40.576791],\n\t\t\t\t\t\t[-93.818725, 40.577086],\n\t\t\t\t\t\t[-93.815485, 40.577278],\n\t\t\t\t\t\t[-93.774344, 40.577584]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29089\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"089\",\n\t\t\t\t\"NAME\": \"Howard\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 463.849000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.849224, 39.226218],\n\t\t\t\t\t\t[-92.790369, 39.343586],\n\t\t\t\t\t\t[-92.707367, 39.321614],\n\t\t\t\t\t\t[-92.430229, 39.248795],\n\t\t\t\t\t\t[-92.565124, 38.998274],\n\t\t\t\t\t\t[-92.558086, 38.970692],\n\t\t\t\t\t\t[-92.841617, 38.979821],\n\t\t\t\t\t\t[-92.934569, 39.064547],\n\t\t\t\t\t\t[-92.941650, 39.125892],\n\t\t\t\t\t\t[-92.849224, 39.226218]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29091\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"091\",\n\t\t\t\t\"NAME\": \"Howell\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 927.248000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.658111, 36.888724],\n\t\t\t\t\t\t[-91.674237, 36.787832],\n\t\t\t\t\t\t[-91.672343, 36.499463],\n\t\t\t\t\t\t[-91.686026, 36.499374],\n\t\t\t\t\t\t[-91.687615, 36.499397],\n\t\t\t\t\t\t[-91.726663, 36.499209],\n\t\t\t\t\t\t[-91.766111, 36.499114],\n\t\t\t\t\t\t[-91.784713, 36.499074],\n\t\t\t\t\t\t[-91.799500, 36.498952],\n\t\t\t\t\t\t[-91.802040, 36.498963],\n\t\t\t\t\t\t[-91.805981, 36.498987],\n\t\t\t\t\t\t[-91.864385, 36.498789],\n\t\t\t\t\t\t[-91.865995, 36.498783],\n\t\t\t\t\t\t[-91.985802, 36.498431],\n\t\t\t\t\t\t[-91.988751, 36.498498],\n\t\t\t\t\t\t[-92.019375, 36.498524],\n\t\t\t\t\t\t[-92.028847, 36.498642],\n\t\t\t\t\t\t[-92.055789, 36.498670],\n\t\t\t\t\t\t[-92.057178, 36.498670],\n\t\t\t\t\t\t[-92.074934, 36.498761],\n\t\t\t\t\t\t[-92.098356, 36.498803],\n\t\t\t\t\t\t[-92.120306, 36.498864],\n\t\t\t\t\t\t[-92.120415, 36.498863],\n\t\t\t\t\t\t[-92.112346, 36.794231],\n\t\t\t\t\t\t[-92.095982, 36.794011],\n\t\t\t\t\t\t[-92.088708, 37.056248],\n\t\t\t\t\t\t[-91.655607, 37.048925],\n\t\t\t\t\t\t[-91.657814, 36.889648],\n\t\t\t\t\t\t[-91.658111, 36.888724]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37015\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"015\",\n\t\t\t\t\"NAME\": \"Bertie\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 699.270000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.692376, 35.945342],\n\t\t\t\t\t\t[-76.760842, 35.864822],\n\t\t\t\t\t\t[-76.830195, 35.885922],\n\t\t\t\t\t\t[-76.888624, 35.812287],\n\t\t\t\t\t\t[-76.918531, 35.895647],\n\t\t\t\t\t\t[-77.004306, 35.858714],\n\t\t\t\t\t\t[-77.043684, 35.943146],\n\t\t\t\t\t\t[-77.196689, 35.937433],\n\t\t\t\t\t\t[-77.206169, 36.004737],\n\t\t\t\t\t\t[-77.327686, 36.074512],\n\t\t\t\t\t\t[-77.230694, 36.103618],\n\t\t\t\t\t\t[-77.264744, 36.159745],\n\t\t\t\t\t\t[-77.291810, 36.168490],\n\t\t\t\t\t\t[-77.208790, 36.246875],\n\t\t\t\t\t\t[-77.183194, 36.242692],\n\t\t\t\t\t\t[-76.706556, 36.243869],\n\t\t\t\t\t\t[-76.736326, 36.147042],\n\t\t\t\t\t\t[-76.668814, 36.020968],\n\t\t\t\t\t\t[-76.671759, 36.018276],\n\t\t\t\t\t\t[-76.684922, 36.009852],\n\t\t\t\t\t\t[-76.683869, 36.000375],\n\t\t\t\t\t\t[-76.679657, 35.991951],\n\t\t\t\t\t\t[-76.684922, 35.983001],\n\t\t\t\t\t\t[-76.695452, 35.973524],\n\t\t\t\t\t\t[-76.700190, 35.964573],\n\t\t\t\t\t\t[-76.697558, 35.951937],\n\t\t\t\t\t\t[-76.692376, 35.945342]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37023\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"023\",\n\t\t\t\t\"NAME\": \"Burke\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 507.099000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.824184, 35.574955],\n\t\t\t\t\t\t[-81.869347, 35.719574],\n\t\t\t\t\t\t[-81.987035, 35.806936],\n\t\t\t\t\t\t[-81.906607, 35.883437],\n\t\t\t\t\t\t[-81.943674, 35.959448],\n\t\t\t\t\t\t[-81.899583, 36.000127],\n\t\t\t\t\t\t[-81.807120, 35.962057],\n\t\t\t\t\t\t[-81.555960, 35.777332],\n\t\t\t\t\t\t[-81.364055, 35.767865],\n\t\t\t\t\t\t[-81.534359, 35.568811],\n\t\t\t\t\t\t[-81.535632, 35.567324],\n\t\t\t\t\t\t[-81.535733, 35.567064],\n\t\t\t\t\t\t[-81.536076, 35.566555],\n\t\t\t\t\t\t[-81.537760, 35.564472],\n\t\t\t\t\t\t[-81.692329, 35.579789],\n\t\t\t\t\t\t[-81.824184, 35.574955]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37029\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"029\",\n\t\t\t\t\"NAME\": \"Camden\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 240.556000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.491497, 36.550365],\n\t\t\t\t\t\t[-76.313215, 36.550551],\n\t\t\t\t\t\t[-76.313196, 36.550551],\n\t\t\t\t\t\t[-76.158583, 36.426347],\n\t\t\t\t\t\t[-76.114069, 36.357498],\n\t\t\t\t\t\t[-76.050755, 36.359819],\n\t\t\t\t\t\t[-75.948426, 36.285268],\n\t\t\t\t\t\t[-75.887415, 36.160233],\n\t\t\t\t\t\t[-75.904999, 36.164188],\n\t\t\t\t\t\t[-75.920028, 36.164853],\n\t\t\t\t\t\t[-75.924654, 36.163591],\n\t\t\t\t\t\t[-75.939047, 36.165518],\n\t\t\t\t\t\t[-75.995191, 36.178072],\n\t\t\t\t\t\t[-76.016984, 36.186367],\n\t\t\t\t\t\t[-76.018936, 36.188318],\n\t\t\t\t\t\t[-76.031784, 36.189131],\n\t\t\t\t\t\t[-76.047100, 36.183106],\n\t\t\t\t\t\t[-76.216558, 36.298174],\n\t\t\t\t\t\t[-76.231218, 36.371712],\n\t\t\t\t\t\t[-76.491477, 36.510536],\n\t\t\t\t\t\t[-76.541391, 36.550312],\n\t\t\t\t\t\t[-76.491497, 36.550365]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37031\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"031\",\n\t\t\t\t\"NAME\": \"Carteret\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 506.251000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.090323, 34.802755],\n\t\t\t\t\t\t[-76.939252, 34.828636],\n\t\t\t\t\t\t[-76.693085, 34.869219],\n\t\t\t\t\t\t[-76.654210, 34.937088],\n\t\t\t\t\t\t[-76.711278, 34.981971],\n\t\t\t\t\t\t[-76.644562, 35.019799],\n\t\t\t\t\t\t[-76.642012, 35.012786],\n\t\t\t\t\t\t[-76.628523, 34.994801],\n\t\t\t\t\t\t[-76.588055, 34.991428],\n\t\t\t\t\t\t[-76.566697, 34.998173],\n\t\t\t\t\t\t[-76.539719, 35.000421],\n\t\t\t\t\t\t[-76.502623, 35.007166],\n\t\t\t\t\t\t[-76.495879, 35.011662],\n\t\t\t\t\t\t[-76.491382, 35.017283],\n\t\t\t\t\t\t[-76.490258, 35.034144],\n\t\t\t\t\t\t[-76.480141, 35.052130],\n\t\t\t\t\t\t[-76.474521, 35.070116],\n\t\t\t\t\t\t[-76.468796, 35.075345],\n\t\t\t\t\t\t[-76.463468, 35.076411],\n\t\t\t\t\t\t[-76.435762, 35.057941],\n\t\t\t\t\t\t[-76.432565, 35.049061],\n\t\t\t\t\t\t[-76.431855, 35.030945],\n\t\t\t\t\t\t[-76.425461, 35.001464],\n\t\t\t\t\t\t[-76.406281, 34.987256],\n\t\t\t\t\t\t[-76.398466, 34.976600],\n\t\t\t\t\t\t[-76.395625, 34.975179],\n\t\t\t\t\t\t[-76.332044, 34.970917],\n\t\t\t\t\t\t[-76.326361, 34.976245],\n\t\t\t\t\t\t[-76.329557, 34.986901],\n\t\t\t\t\t\t[-76.350159, 35.016737],\n\t\t\t\t\t\t[-76.360815, 35.025973],\n\t\t\t\t\t\t[-76.364367, 35.031301],\n\t\t\t\t\t\t[-76.364367, 35.034853],\n\t\t\t\t\t\t[-76.352290, 35.033077],\n\t\t\t\t\t\t[-76.318546, 35.020645],\n\t\t\t\t\t\t[-76.293682, 35.009633],\n\t\t\t\t\t\t[-76.288354, 35.005726],\n\t\t\t\t\t\t[-76.288709, 34.997201],\n\t\t\t\t\t\t[-76.290930, 34.994285],\n\t\t\t\t\t\t[-76.293851, 34.991948],\n\t\t\t\t\t\t[-76.296188, 34.986690],\n\t\t\t\t\t\t[-76.296524, 34.976245],\n\t\t\t\t\t\t[-76.290691, 34.969059],\n\t\t\t\t\t\t[-76.275567, 34.960971],\n\t\t\t\t\t\t[-76.274856, 34.953867],\n\t\t\t\t\t\t[-76.277698, 34.940014],\n\t\t\t\t\t\t[-76.284092, 34.936817],\n\t\t\t\t\t\t[-76.311442, 34.910177],\n\t\t\t\t\t\t[-76.319967, 34.897745],\n\t\t\t\t\t\t[-76.333820, 34.882116],\n\t\t\t\t\t\t[-76.347673, 34.872171],\n\t\t\t\t\t\t[-76.368274, 34.872881],\n\t\t\t\t\t\t[-76.377154, 34.867553],\n\t\t\t\t\t\t[-76.379641, 34.862580],\n\t\t\t\t\t\t[-76.395269, 34.855476],\n\t\t\t\t\t\t[-76.400242, 34.855476],\n\t\t\t\t\t\t[-76.411609, 34.841268],\n\t\t\t\t\t\t[-76.415871, 34.825640],\n\t\t\t\t\t\t[-76.415871, 34.813563],\n\t\t\t\t\t\t[-76.403108, 34.806153],\n\t\t\t\t\t\t[-76.390254, 34.805568],\n\t\t\t\t\t\t[-76.383827, 34.807906],\n\t\t\t\t\t\t[-76.373247, 34.817115],\n\t\t\t\t\t\t[-76.362591, 34.824219],\n\t\t\t\t\t\t[-76.341279, 34.842689],\n\t\t\t\t\t\t[-76.322808, 34.861160],\n\t\t\t\t\t\t[-76.273986, 34.897298],\n\t\t\t\t\t\t[-76.233672, 34.925926],\n\t\t\t\t\t\t[-76.194936, 34.962747],\n\t\t\t\t\t\t[-76.160127, 34.991163],\n\t\t\t\t\t\t[-76.111820, 35.034497],\n\t\t\t\t\t\t[-76.093349, 35.048705],\n\t\t\t\t\t\t[-76.069906, 35.075701],\n\t\t\t\t\t\t[-76.064933, 35.077121],\n\t\t\t\t\t\t[-76.043621, 35.070017],\n\t\t\t\t\t\t[-76.038648, 35.065045],\n\t\t\t\t\t\t[-76.035933, 35.058987],\n\t\t\t\t\t\t[-76.073000, 35.030509],\n\t\t\t\t\t\t[-76.137269, 34.987858],\n\t\t\t\t\t\t[-76.233088, 34.905477],\n\t\t\t\t\t\t[-76.310210, 34.852309],\n\t\t\t\t\t\t[-76.386804, 34.784579],\n\t\t\t\t\t\t[-76.450454, 34.714450],\n\t\t\t\t\t\t[-76.494068, 34.661970],\n\t\t\t\t\t\t[-76.524199, 34.615416],\n\t\t\t\t\t\t[-76.535946, 34.588577],\n\t\t\t\t\t\t[-76.555196, 34.615993],\n\t\t\t\t\t\t[-76.553806, 34.628252],\n\t\t\t\t\t\t[-76.550423, 34.630789],\n\t\t\t\t\t\t[-76.549343, 34.645585],\n\t\t\t\t\t\t[-76.579467, 34.660174],\n\t\t\t\t\t\t[-76.618719, 34.672550],\n\t\t\t\t\t\t[-76.642939, 34.677618],\n\t\t\t\t\t\t[-76.662645, 34.685524],\n\t\t\t\t\t\t[-76.676312, 34.693151],\n\t\t\t\t\t\t[-76.693751, 34.692509],\n\t\t\t\t\t\t[-76.726969, 34.696690],\n\t\t\t\t\t\t[-76.770044, 34.696899],\n\t\t\t\t\t\t[-76.817453, 34.693722],\n\t\t\t\t\t\t[-76.906257, 34.682820],\n\t\t\t\t\t\t[-76.990262, 34.669623],\n\t\t\t\t\t\t[-77.031105, 34.661184],\n\t\t\t\t\t\t[-77.112800, 34.639352],\n\t\t\t\t\t\t[-77.126100, 34.756927],\n\t\t\t\t\t\t[-77.165803, 34.784945],\n\t\t\t\t\t\t[-77.090323, 34.802755]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29133\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"133\",\n\t\t\t\t\"NAME\": \"Mississippi\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 411.583000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.519809, 36.869617],\n\t\t\t\t\t\t[-89.465393, 36.935729],\n\t\t\t\t\t\t[-89.322733, 37.009033],\n\t\t\t\t\t\t[-89.292130, 36.992189],\n\t\t\t\t\t\t[-89.278628, 36.988670],\n\t\t\t\t\t\t[-89.271127, 36.985287],\n\t\t\t\t\t\t[-89.261154, 36.982437],\n\t\t\t\t\t\t[-89.245481, 36.983150],\n\t\t\t\t\t\t[-89.226247, 36.985287],\n\t\t\t\t\t\t[-89.207013, 36.982437],\n\t\t\t\t\t\t[-89.185491, 36.973518],\n\t\t\t\t\t\t[-89.170008, 36.970298],\n\t\t\t\t\t\t[-89.132685, 36.982200],\n\t\t\t\t\t\t[-89.100794, 36.944006],\n\t\t\t\t\t\t[-89.100766, 36.943973],\n\t\t\t\t\t\t[-89.147674, 36.847148],\n\t\t\t\t\t\t[-89.177177, 36.835779],\n\t\t\t\t\t\t[-89.178574, 36.816554],\n\t\t\t\t\t\t[-89.179229, 36.812915],\n\t\t\t\t\t\t[-89.123530, 36.785309],\n\t\t\t\t\t\t[-89.123548, 36.785220],\n\t\t\t\t\t\t[-89.130399, 36.751702],\n\t\t\t\t\t\t[-89.142313, 36.755369],\n\t\t\t\t\t\t[-89.169106, 36.759473],\n\t\t\t\t\t\t[-89.184523, 36.753638],\n\t\t\t\t\t\t[-89.197808, 36.739412],\n\t\t\t\t\t\t[-89.201047, 36.725772],\n\t\t\t\t\t\t[-89.199480, 36.716045],\n\t\t\t\t\t\t[-89.171882, 36.672526],\n\t\t\t\t\t\t[-89.174733, 36.650476],\n\t\t\t\t\t\t[-89.174741, 36.650416],\n\t\t\t\t\t\t[-89.187749, 36.641115],\n\t\t\t\t\t\t[-89.197654, 36.628936],\n\t\t\t\t\t\t[-89.200902, 36.618177],\n\t\t\t\t\t\t[-89.202607, 36.601576],\n\t\t\t\t\t\t[-89.213563, 36.580119],\n\t\t\t\t\t\t[-89.227319, 36.569375],\n\t\t\t\t\t\t[-89.236542, 36.566824],\n\t\t\t\t\t\t[-89.259994, 36.565149],\n\t\t\t\t\t\t[-89.271710, 36.571387],\n\t\t\t\t\t\t[-89.294637, 36.593729],\n\t\t\t\t\t\t[-89.313405, 36.620120],\n\t\t\t\t\t\t[-89.326731, 36.632186],\n\t\t\t\t\t\t[-89.327578, 36.632127],\n\t\t\t\t\t\t[-89.519809, 36.869617]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29143\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"143\",\n\t\t\t\t\"NAME\": \"New Madrid\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 674.840000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.485106, 36.497692],\n\t\t\t\t\t\t[-89.472460, 36.513741],\n\t\t\t\t\t\t[-89.465888, 36.529946],\n\t\t\t\t\t\t[-89.465445, 36.536163],\n\t\t\t\t\t\t[-89.467761, 36.546847],\n\t\t\t\t\t\t[-89.473341, 36.559918],\n\t\t\t\t\t\t[-89.479093, 36.568206],\n\t\t\t\t\t\t[-89.484836, 36.571821],\n\t\t\t\t\t\t[-89.500076, 36.576305],\n\t\t\t\t\t\t[-89.527583, 36.581147],\n\t\t\t\t\t\t[-89.546113, 36.579989],\n\t\t\t\t\t\t[-89.552640, 36.577178],\n\t\t\t\t\t\t[-89.566817, 36.564216],\n\t\t\t\t\t\t[-89.571509, 36.552569],\n\t\t\t\t\t\t[-89.570071, 36.544387],\n\t\t\t\t\t\t[-89.560344, 36.525436],\n\t\t\t\t\t\t[-89.539100, 36.498201],\n\t\t\t\t\t\t[-89.522674, 36.481305],\n\t\t\t\t\t\t[-89.519501, 36.475419],\n\t\t\t\t\t\t[-89.509558, 36.375065],\n\t\t\t\t\t\t[-89.513178, 36.359897],\n\t\t\t\t\t\t[-89.519000, 36.348600],\n\t\t\t\t\t\t[-89.531822, 36.339246],\n\t\t\t\t\t\t[-89.545006, 36.336809],\n\t\t\t\t\t\t[-89.611308, 36.411273],\n\t\t\t\t\t\t[-89.752147, 36.386396],\n\t\t\t\t\t\t[-89.961310, 36.388803],\n\t\t\t\t\t\t[-89.958786, 36.629331],\n\t\t\t\t\t\t[-89.700952, 36.627453],\n\t\t\t\t\t\t[-89.691603, 36.859517],\n\t\t\t\t\t\t[-89.519809, 36.869617],\n\t\t\t\t\t\t[-89.327578, 36.632127],\n\t\t\t\t\t\t[-89.343753, 36.630991],\n\t\t\t\t\t\t[-89.365548, 36.625059],\n\t\t\t\t\t\t[-89.376367, 36.613868],\n\t\t\t\t\t\t[-89.388140, 36.573416],\n\t\t\t\t\t\t[-89.400581, 36.538337],\n\t\t\t\t\t\t[-89.417293, 36.499033],\n\t\t\t\t\t\t[-89.429311, 36.481875],\n\t\t\t\t\t\t[-89.448468, 36.464420],\n\t\t\t\t\t\t[-89.460436, 36.458140],\n\t\t\t\t\t\t[-89.471718, 36.457001],\n\t\t\t\t\t\t[-89.486215, 36.461620],\n\t\t\t\t\t\t[-89.493198, 36.470124],\n\t\t\t\t\t\t[-89.493495, 36.478700],\n\t\t\t\t\t\t[-89.485106, 36.497692]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29149\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"149\",\n\t\t\t\t\"NAME\": \"Oregon\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 789.796000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.115926, 36.823672],\n\t\t\t\t\t\t[-91.126529, 36.497712],\n\t\t\t\t\t\t[-91.217360, 36.497511],\n\t\t\t\t\t\t[-91.218645, 36.497564],\n\t\t\t\t\t\t[-91.227398, 36.497617],\n\t\t\t\t\t\t[-91.404915, 36.497120],\n\t\t\t\t\t\t[-91.405141, 36.497165],\n\t\t\t\t\t\t[-91.407137, 36.497112],\n\t\t\t\t\t\t[-91.407261, 36.497123],\n\t\t\t\t\t\t[-91.433298, 36.497262],\n\t\t\t\t\t\t[-91.436502, 36.497377],\n\t\t\t\t\t\t[-91.446284, 36.497469],\n\t\t\t\t\t\t[-91.450005, 36.497538],\n\t\t\t\t\t\t[-91.529774, 36.499022],\n\t\t\t\t\t\t[-91.536870, 36.499156],\n\t\t\t\t\t\t[-91.539359, 36.499116],\n\t\t\t\t\t\t[-91.549163, 36.499161],\n\t\t\t\t\t\t[-91.596213, 36.499162],\n\t\t\t\t\t\t[-91.601317, 36.499343],\n\t\t\t\t\t\t[-91.631439, 36.499198],\n\t\t\t\t\t\t[-91.642590, 36.499335],\n\t\t\t\t\t\t[-91.672343, 36.499463],\n\t\t\t\t\t\t[-91.674237, 36.787832],\n\t\t\t\t\t\t[-91.658111, 36.888724],\n\t\t\t\t\t\t[-91.250129, 36.885150],\n\t\t\t\t\t\t[-91.222830, 36.883857],\n\t\t\t\t\t\t[-91.224825, 36.825679],\n\t\t\t\t\t\t[-91.115926, 36.823672]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29155\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"155\",\n\t\t\t\t\"NAME\": \"Pemiscot\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 492.544000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.545006, 36.336809],\n\t\t\t\t\t\t[-89.560439, 36.337746],\n\t\t\t\t\t\t[-89.581636, 36.342357],\n\t\t\t\t\t\t[-89.605668, 36.342234],\n\t\t\t\t\t\t[-89.610689, 36.340442],\n\t\t\t\t\t\t[-89.615841, 36.336085],\n\t\t\t\t\t\t[-89.619800, 36.329546],\n\t\t\t\t\t\t[-89.620255, 36.323006],\n\t\t\t\t\t\t[-89.611819, 36.309088],\n\t\t\t\t\t\t[-89.578492, 36.288317],\n\t\t\t\t\t\t[-89.554289, 36.277751],\n\t\t\t\t\t\t[-89.544797, 36.280458],\n\t\t\t\t\t\t[-89.539487, 36.277368],\n\t\t\t\t\t\t[-89.535529, 36.270541],\n\t\t\t\t\t\t[-89.534745, 36.252576],\n\t\t\t\t\t\t[-89.541621, 36.247891],\n\t\t\t\t\t\t[-89.589561, 36.239116],\n\t\t\t\t\t\t[-89.602374, 36.238106],\n\t\t\t\t\t\t[-89.678046, 36.248284],\n\t\t\t\t\t\t[-89.691308, 36.252079],\n\t\t\t\t\t\t[-89.699817, 36.248384],\n\t\t\t\t\t\t[-89.629452, 36.185382],\n\t\t\t\t\t\t[-89.618228, 36.179966],\n\t\t\t\t\t\t[-89.607004, 36.171179],\n\t\t\t\t\t\t[-89.594397, 36.155457],\n\t\t\t\t\t\t[-89.591605, 36.144096],\n\t\t\t\t\t\t[-89.594000, 36.127190],\n\t\t\t\t\t\t[-89.601936, 36.119470],\n\t\t\t\t\t\t[-89.624235, 36.108626],\n\t\t\t\t\t\t[-89.684439, 36.051719],\n\t\t\t\t\t\t[-89.687254, 36.034048],\n\t\t\t\t\t\t[-89.690306, 36.024835],\n\t\t\t\t\t\t[-89.706932, 36.000981],\n\t\t\t\t\t\t[-89.733095, 36.000608],\n\t\t\t\t\t\t[-89.737564, 36.000522],\n\t\t\t\t\t\t[-89.737648, 36.000567],\n\t\t\t\t\t\t[-89.769973, 36.000536],\n\t\t\t\t\t\t[-89.770255, 36.000524],\n\t\t\t\t\t\t[-89.869010, 35.999640],\n\t\t\t\t\t\t[-89.874590, 35.999575],\n\t\t\t\t\t\t[-89.875085, 35.999578],\n\t\t\t\t\t\t[-89.875586, 35.999562],\n\t\t\t\t\t\t[-89.896508, 35.999432],\n\t\t\t\t\t\t[-89.901183, 35.999365],\n\t\t\t\t\t\t[-89.959375, 35.999020],\n\t\t\t\t\t\t[-89.961310, 36.388803],\n\t\t\t\t\t\t[-89.752147, 36.386396],\n\t\t\t\t\t\t[-89.611308, 36.411273],\n\t\t\t\t\t\t[-89.545006, 36.336809]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29165\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"165\",\n\t\t\t\t\"NAME\": \"Platte\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 420.190000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.600819, 39.456155],\n\t\t\t\t\t\t[-94.601733, 39.159603],\n\t\t\t\t\t\t[-94.706723, 39.173801],\n\t\t\t\t\t\t[-94.714137, 39.170403],\n\t\t\t\t\t\t[-94.723637, 39.169003],\n\t\t\t\t\t\t[-94.736537, 39.169203],\n\t\t\t\t\t\t[-94.752338, 39.173203],\n\t\t\t\t\t\t[-94.793948, 39.201276],\n\t\t\t\t\t\t[-94.832399, 39.227218],\n\t\t\t\t\t\t[-94.901009, 39.301680],\n\t\t\t\t\t\t[-94.907569, 39.320623],\n\t\t\t\t\t\t[-94.910641, 39.348335],\n\t\t\t\t\t\t[-94.908337, 39.355647],\n\t\t\t\t\t\t[-94.909954, 39.367459],\n\t\t\t\t\t\t[-94.946662, 39.399717],\n\t\t\t\t\t\t[-94.969061, 39.418876],\n\t\t\t\t\t\t[-95.102888, 39.533347],\n\t\t\t\t\t\t[-94.601326, 39.532138],\n\t\t\t\t\t\t[-94.601246, 39.530372],\n\t\t\t\t\t\t[-94.600819, 39.456155]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37101\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"101\",\n\t\t\t\t\"NAME\": \"Johnston\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 791.299000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.391146, 35.262632],\n\t\t\t\t\t\t[-78.491383, 35.263362],\n\t\t\t\t\t\t[-78.541262, 35.315116],\n\t\t\t\t\t\t[-78.530282, 35.333775],\n\t\t\t\t\t\t[-78.660555, 35.496245],\n\t\t\t\t\t\t[-78.708629, 35.519081],\n\t\t\t\t\t\t[-78.566633, 35.628950],\n\t\t\t\t\t\t[-78.473733, 35.701551],\n\t\t\t\t\t\t[-78.254903, 35.817730],\n\t\t\t\t\t\t[-78.192070, 35.730443],\n\t\t\t\t\t\t[-78.125587, 35.603111],\n\t\t\t\t\t\t[-78.064603, 35.585419],\n\t\t\t\t\t\t[-78.154889, 35.417627],\n\t\t\t\t\t\t[-78.153233, 35.351421],\n\t\t\t\t\t\t[-78.304662, 35.286097],\n\t\t\t\t\t\t[-78.332587, 35.279446],\n\t\t\t\t\t\t[-78.391146, 35.262632]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37107\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"107\",\n\t\t\t\t\"NAME\": \"Lenoir\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 400.591000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.747639, 35.071354],\n\t\t\t\t\t\t[-77.769064, 35.145471],\n\t\t\t\t\t\t[-77.834250, 35.177814],\n\t\t\t\t\t\t[-77.831055, 35.233440],\n\t\t\t\t\t\t[-77.805564, 35.369768],\n\t\t\t\t\t\t[-77.777680, 35.367682],\n\t\t\t\t\t\t[-77.749753, 35.373241],\n\t\t\t\t\t\t[-77.738695, 35.374869],\n\t\t\t\t\t\t[-77.701681, 35.380597],\n\t\t\t\t\t\t[-77.680542, 35.347760],\n\t\t\t\t\t\t[-77.660811, 35.352757],\n\t\t\t\t\t\t[-77.476000, 35.426684],\n\t\t\t\t\t\t[-77.472532, 35.425518],\n\t\t\t\t\t\t[-77.470067, 35.420157],\n\t\t\t\t\t\t[-77.427046, 35.350424],\n\t\t\t\t\t\t[-77.390965, 35.340047],\n\t\t\t\t\t\t[-77.473716, 35.228983],\n\t\t\t\t\t\t[-77.478741, 35.230011],\n\t\t\t\t\t\t[-77.523210, 35.241725],\n\t\t\t\t\t\t[-77.527206, 35.243433],\n\t\t\t\t\t\t[-77.506638, 35.172177],\n\t\t\t\t\t\t[-77.601831, 35.071193],\n\t\t\t\t\t\t[-77.730784, 35.008259],\n\t\t\t\t\t\t[-77.739660, 35.016641],\n\t\t\t\t\t\t[-77.745885, 35.022587],\n\t\t\t\t\t\t[-77.747639, 35.071354]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37113\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"113\",\n\t\t\t\t\"NAME\": \"Macon\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 515.558000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.339707, 35.331004],\n\t\t\t\t\t\t[-83.108714, 35.000768],\n\t\t\t\t\t\t[-83.483064, 34.993737],\n\t\t\t\t\t\t[-83.659765, 35.160243],\n\t\t\t\t\t\t[-83.738106, 35.155911],\n\t\t\t\t\t\t[-83.702521, 35.248398],\n\t\t\t\t\t\t[-83.700556, 35.252172],\n\t\t\t\t\t\t[-83.698745, 35.253279],\n\t\t\t\t\t\t[-83.696930, 35.255682],\n\t\t\t\t\t\t[-83.694698, 35.257329],\n\t\t\t\t\t\t[-83.694278, 35.259366],\n\t\t\t\t\t\t[-83.692965, 35.260761],\n\t\t\t\t\t\t[-83.691764, 35.263690],\n\t\t\t\t\t\t[-83.690005, 35.265040],\n\t\t\t\t\t\t[-83.689390, 35.266963],\n\t\t\t\t\t\t[-83.686290, 35.271745],\n\t\t\t\t\t\t[-83.683945, 35.274216],\n\t\t\t\t\t\t[-83.683552, 35.276808],\n\t\t\t\t\t\t[-83.680043, 35.279414],\n\t\t\t\t\t\t[-83.339707, 35.331004]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37119\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"119\",\n\t\t\t\t\"NAME\": \"Mecklenburg\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 523.842000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.906417, 35.076608],\n\t\t\t\t\t\t[-80.906553, 35.076763],\n\t\t\t\t\t\t[-80.934950, 35.107409],\n\t\t\t\t\t\t[-80.957870, 35.092639],\n\t\t\t\t\t\t[-81.041489, 35.044703],\n\t\t\t\t\t\t[-81.057465, 35.061983],\n\t\t\t\t\t\t[-81.058029, 35.073190],\n\t\t\t\t\t\t[-81.057236, 35.086129],\n\t\t\t\t\t\t[-81.052078, 35.096276],\n\t\t\t\t\t\t[-81.046524, 35.100617],\n\t\t\t\t\t\t[-81.036163, 35.103205],\n\t\t\t\t\t\t[-81.032547, 35.109102],\n\t\t\t\t\t\t[-81.042758, 35.146042],\n\t\t\t\t\t\t[-81.005851, 35.156562],\n\t\t\t\t\t\t[-81.005061, 35.189821],\n\t\t\t\t\t\t[-81.006196, 35.210301],\n\t\t\t\t\t\t[-81.013956, 35.220588],\n\t\t\t\t\t\t[-81.008979, 35.245740],\n\t\t\t\t\t\t[-80.955388, 35.400833],\n\t\t\t\t\t\t[-80.947030, 35.487699],\n\t\t\t\t\t\t[-80.784339, 35.505840],\n\t\t\t\t\t\t[-80.764255, 35.400226],\n\t\t\t\t\t\t[-80.755284, 35.394927],\n\t\t\t\t\t\t[-80.744252, 35.380638],\n\t\t\t\t\t\t[-80.719625, 35.362842],\n\t\t\t\t\t\t[-80.708556, 35.355213],\n\t\t\t\t\t\t[-80.693620, 35.346806],\n\t\t\t\t\t\t[-80.667274, 35.269014],\n\t\t\t\t\t\t[-80.665835, 35.268181],\n\t\t\t\t\t\t[-80.550297, 35.208381],\n\t\t\t\t\t\t[-80.770385, 35.034234],\n\t\t\t\t\t\t[-80.840461, 35.001566],\n\t\t\t\t\t\t[-80.906417, 35.076608]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37125\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"125\",\n\t\t\t\t\"NAME\": \"Moore\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 697.843000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.614306, 35.163679],\n\t\t\t\t\t\t[-79.698036, 35.251451],\n\t\t\t\t\t\t[-79.769285, 35.511457],\n\t\t\t\t\t\t[-79.555896, 35.515085],\n\t\t\t\t\t\t[-79.351354, 35.517761],\n\t\t\t\t\t\t[-79.350009, 35.517991],\n\t\t\t\t\t\t[-79.273565, 35.353369],\n\t\t\t\t\t\t[-79.183301, 35.306976],\n\t\t\t\t\t\t[-79.223065, 35.268134],\n\t\t\t\t\t\t[-79.096130, 35.192181],\n\t\t\t\t\t\t[-79.098031, 35.188359],\n\t\t\t\t\t\t[-79.098726, 35.183439],\n\t\t\t\t\t\t[-79.096389, 35.177682],\n\t\t\t\t\t\t[-79.097671, 35.174172],\n\t\t\t\t\t\t[-79.229885, 35.210678],\n\t\t\t\t\t\t[-79.335189, 35.161827],\n\t\t\t\t\t\t[-79.459176, 35.043096],\n\t\t\t\t\t\t[-79.575384, 35.069815],\n\t\t\t\t\t\t[-79.614306, 35.163679]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40001\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"001\",\n\t\t\t\t\"NAME\": \"Adair\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 573.477000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.472647, 35.638556],\n\t\t\t\t\t\t[-94.807297, 35.638604],\n\t\t\t\t\t\t[-94.797279, 36.161390],\n\t\t\t\t\t\t[-94.562828, 36.161895],\n\t\t\t\t\t\t[-94.562803, 36.161749],\n\t\t\t\t\t\t[-94.561165, 36.152110],\n\t\t\t\t\t\t[-94.552184, 36.102235],\n\t\t\t\t\t\t[-94.547871, 36.078281],\n\t\t\t\t\t\t[-94.547715, 36.077271],\n\t\t\t\t\t\t[-94.535724, 36.007807],\n\t\t\t\t\t\t[-94.534852, 36.002678],\n\t\t\t\t\t\t[-94.533646, 35.996804],\n\t\t\t\t\t\t[-94.532071, 35.987852],\n\t\t\t\t\t\t[-94.528305, 35.966054],\n\t\t\t\t\t\t[-94.528162, 35.965665],\n\t\t\t\t\t\t[-94.524640, 35.945727],\n\t\t\t\t\t\t[-94.524344, 35.944050],\n\t\t\t\t\t\t[-94.522910, 35.936127],\n\t\t\t\t\t\t[-94.522634, 35.934892],\n\t\t\t\t\t\t[-94.522658, 35.934799],\n\t\t\t\t\t\t[-94.522658, 35.934250],\n\t\t\t\t\t\t[-94.507631, 35.845901],\n\t\t\t\t\t\t[-94.505642, 35.833628],\n\t\t\t\t\t\t[-94.504438, 35.826369],\n\t\t\t\t\t\t[-94.503011, 35.817210],\n\t\t\t\t\t\t[-94.501162, 35.806430],\n\t\t\t\t\t\t[-94.500764, 35.803820],\n\t\t\t\t\t\t[-94.500526, 35.802642],\n\t\t\t\t\t\t[-94.499647, 35.796910],\n\t\t\t\t\t\t[-94.499045, 35.793460],\n\t\t\t\t\t\t[-94.494549, 35.768303],\n\t\t\t\t\t\t[-94.493362, 35.761892],\n\t\t\t\t\t\t[-94.492932, 35.759166],\n\t\t\t\t\t\t[-94.488210, 35.729240],\n\t\t\t\t\t\t[-94.487585, 35.726147],\n\t\t\t\t\t\t[-94.472647, 35.638556]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40007\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"007\",\n\t\t\t\t\"NAME\": \"Beaver\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1814.672000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.546145, 36.499343],\n\t\t\t\t\t\t[-100.578114, 36.499439],\n\t\t\t\t\t\t[-100.578114, 36.499463],\n\t\t\t\t\t\t[-100.583379, 36.499443],\n\t\t\t\t\t\t[-100.583539, 36.499483],\n\t\t\t\t\t\t[-100.592551, 36.499429],\n\t\t\t\t\t\t[-100.592556, 36.499469],\n\t\t\t\t\t\t[-100.592614, 36.499469],\n\t\t\t\t\t\t[-100.648344, 36.499463],\n\t\t\t\t\t\t[-100.648343, 36.499495],\n\t\t\t\t\t\t[-100.657763, 36.499500],\n\t\t\t\t\t\t[-100.657763, 36.499483],\n\t\t\t\t\t\t[-100.708628, 36.499521],\n\t\t\t\t\t\t[-100.708626, 36.499553],\n\t\t\t\t\t\t[-100.724361, 36.499558],\n\t\t\t\t\t\t[-100.724362, 36.499580],\n\t\t\t\t\t\t[-100.761811, 36.499580],\n\t\t\t\t\t\t[-100.761811, 36.499618],\n\t\t\t\t\t\t[-100.802886, 36.499621],\n\t\t\t\t\t\t[-100.802909, 36.499621],\n\t\t\t\t\t\t[-100.806172, 36.499634],\n\t\t\t\t\t\t[-100.806190, 36.499674],\n\t\t\t\t\t\t[-100.824218, 36.499618],\n\t\t\t\t\t\t[-100.824236, 36.499618],\n\t\t\t\t\t\t[-100.850840, 36.499700],\n\t\t\t\t\t\t[-100.859657, 36.499687],\n\t\t\t\t\t\t[-100.884080, 36.499682],\n\t\t\t\t\t\t[-100.884174, 36.499682],\n\t\t\t\t\t\t[-100.918513, 36.499621],\n\t\t\t\t\t\t[-100.936058, 36.499602],\n\t\t\t\t\t\t[-100.954153, 36.499599],\n\t\t\t\t\t\t[-100.945469, 36.998153],\n\t\t\t\t\t\t[-100.904588, 36.998561],\n\t\t\t\t\t\t[-100.904274, 36.998745],\n\t\t\t\t\t\t[-100.891660, 36.998604],\n\t\t\t\t\t\t[-100.855634, 36.998626],\n\t\t\t\t\t\t[-100.814277, 36.999085],\n\t\t\t\t\t\t[-100.806116, 36.999091],\n\t\t\t\t\t\t[-100.765484, 36.999177],\n\t\t\t\t\t\t[-100.756894, 36.999357],\n\t\t\t\t\t\t[-100.675552, 36.999688],\n\t\t\t\t\t\t[-100.633327, 36.999936],\n\t\t\t\t\t\t[-100.633323, 36.999936],\n\t\t\t\t\t\t[-100.629770, 37.000025],\n\t\t\t\t\t\t[-100.591413, 37.000399],\n\t\t\t\t\t\t[-100.591328, 37.000376],\n\t\t\t\t\t\t[-100.552683, 37.000735],\n\t\t\t\t\t\t[-100.551598, 37.000620],\n\t\t\t\t\t\t[-100.201676, 37.002081],\n\t\t\t\t\t\t[-100.193754, 37.002133],\n\t\t\t\t\t\t[-100.192371, 37.002036],\n\t\t\t\t\t\t[-100.187547, 37.002082],\n\t\t\t\t\t\t[-100.115722, 37.002206],\n\t\t\t\t\t\t[-100.089484, 37.002092],\n\t\t\t\t\t\t[-100.005706, 37.001726],\n\t\t\t\t\t\t[-100.002563, 37.001706],\n\t\t\t\t\t\t[-100.002866, 37.000029],\n\t\t\t\t\t\t[-100.003160, 36.593250],\n\t\t\t\t\t\t[-100.003762, 36.499699],\n\t\t\t\t\t\t[-100.090021, 36.499634],\n\t\t\t\t\t\t[-100.181221, 36.499633],\n\t\t\t\t\t\t[-100.310643, 36.499642],\n\t\t\t\t\t\t[-100.311018, 36.499688],\n\t\t\t\t\t\t[-100.311245, 36.499631],\n\t\t\t\t\t\t[-100.324150, 36.499679],\n\t\t\t\t\t\t[-100.334441, 36.499440],\n\t\t\t\t\t\t[-100.334464, 36.499420],\n\t\t\t\t\t\t[-100.351842, 36.499473],\n\t\t\t\t\t\t[-100.351852, 36.499487],\n\t\t\t\t\t\t[-100.378592, 36.499445],\n\t\t\t\t\t\t[-100.378634, 36.499517],\n\t\t\t\t\t\t[-100.413550, 36.499469],\n\t\t\t\t\t\t[-100.413634, 36.499444],\n\t\t\t\t\t\t[-100.421301, 36.499488],\n\t\t\t\t\t\t[-100.421328, 36.499447],\n\t\t\t\t\t\t[-100.433959, 36.499456],\n\t\t\t\t\t\t[-100.441064, 36.499462],\n\t\t\t\t\t\t[-100.441065, 36.499490],\n\t\t\t\t\t\t[-100.522227, 36.499291],\n\t\t\t\t\t\t[-100.530314, 36.499357],\n\t\t\t\t\t\t[-100.530478, 36.499240],\n\t\t\t\t\t\t[-100.531215, 36.499290],\n\t\t\t\t\t\t[-100.531215, 36.499341],\n\t\t\t\t\t\t[-100.546145, 36.499343]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40021\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"021\",\n\t\t\t\t\"NAME\": \"Cherokee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 749.408000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.807297, 35.638604],\n\t\t\t\t\t\t[-95.127464, 35.638894],\n\t\t\t\t\t\t[-95.127163, 35.812755],\n\t\t\t\t\t\t[-95.265679, 35.813266],\n\t\t\t\t\t\t[-95.231459, 35.851195],\n\t\t\t\t\t\t[-95.278701, 35.964102],\n\t\t\t\t\t\t[-95.207946, 36.074708],\n\t\t\t\t\t\t[-95.118377, 36.074544],\n\t\t\t\t\t\t[-95.118500, 36.161630],\n\t\t\t\t\t\t[-95.011303, 36.161815],\n\t\t\t\t\t\t[-94.797279, 36.161390],\n\t\t\t\t\t\t[-94.807297, 35.638604]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40023\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"023\",\n\t\t\t\t\"NAME\": \"Choctaw\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 770.357000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.155981, 33.944027],\n\t\t\t\t\t\t[-95.219358, 33.961567],\n\t\t\t\t\t\t[-95.226393, 33.961954],\n\t\t\t\t\t\t[-95.231113, 33.960361],\n\t\t\t\t\t\t[-95.252906, 33.933648],\n\t\t\t\t\t\t[-95.253623, 33.929710],\n\t\t\t\t\t\t[-95.249807, 33.922241],\n\t\t\t\t\t\t[-95.248200, 33.912327],\n\t\t\t\t\t\t[-95.249922, 33.902024],\n\t\t\t\t\t\t[-95.255541, 33.892047],\n\t\t\t\t\t\t[-95.260815, 33.887653],\n\t\t\t\t\t\t[-95.287565, 33.873617],\n\t\t\t\t\t\t[-95.310475, 33.871481],\n\t\t\t\t\t\t[-95.339758, 33.868752],\n\t\t\t\t\t\t[-95.407795, 33.866308],\n\t\t\t\t\t\t[-95.445751, 33.868850],\n\t\t\t\t\t\t[-95.544346, 33.880111],\n\t\t\t\t\t\t[-95.548325, 33.882744],\n\t\t\t\t\t\t[-95.552085, 33.888422],\n\t\t\t\t\t\t[-95.552331, 33.894420],\n\t\t\t\t\t\t[-95.549475, 33.901311],\n\t\t\t\t\t\t[-95.549145, 33.907950],\n\t\t\t\t\t\t[-95.559414, 33.930179],\n\t\t\t\t\t\t[-95.567022, 33.932697],\n\t\t\t\t\t\t[-95.599678, 33.934247],\n\t\t\t\t\t\t[-95.757156, 33.867293],\n\t\t\t\t\t\t[-95.836905, 33.873374],\n\t\t\t\t\t\t[-95.937947, 33.948163],\n\t\t\t\t\t\t[-95.938150, 34.125100],\n\t\t\t\t\t\t[-95.991578, 34.156815],\n\t\t\t\t\t\t[-95.779376, 34.156699],\n\t\t\t\t\t\t[-95.156521, 34.156965],\n\t\t\t\t\t\t[-95.155981, 33.944027]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40033\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"033\",\n\t\t\t\t\"NAME\": \"Cotton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 632.654000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.169120, 34.114171],\n\t\t\t\t\t\t[-98.200075, 34.116783],\n\t\t\t\t\t\t[-98.293901, 34.133020],\n\t\t\t\t\t\t[-98.300209, 34.134579],\n\t\t\t\t\t\t[-98.325445, 34.151025],\n\t\t\t\t\t\t[-98.364023, 34.157109],\n\t\t\t\t\t\t[-98.383222, 34.147806],\n\t\t\t\t\t\t[-98.398441, 34.128456],\n\t\t\t\t\t\t[-98.400494, 34.121778],\n\t\t\t\t\t\t[-98.433769, 34.096116],\n\t\t\t\t\t\t[-98.475066, 34.064269],\n\t\t\t\t\t\t[-98.504182, 34.072371],\n\t\t\t\t\t\t[-98.553717, 34.133660],\n\t\t\t\t\t\t[-98.577356, 34.149100],\n\t\t\t\t\t\t[-98.599789, 34.160571],\n\t\t\t\t\t\t[-98.610112, 34.161039],\n\t\t\t\t\t\t[-98.609660, 34.333720],\n\t\t\t\t\t\t[-98.661956, 34.405948],\n\t\t\t\t\t\t[-98.504988, 34.420452],\n\t\t\t\t\t\t[-98.504958, 34.449414],\n\t\t\t\t\t\t[-98.295928, 34.449043],\n\t\t\t\t\t\t[-98.244120, 34.507121],\n\t\t\t\t\t\t[-98.142148, 34.506994],\n\t\t\t\t\t\t[-98.139237, 34.507003],\n\t\t\t\t\t\t[-98.139226, 34.289775],\n\t\t\t\t\t\t[-98.139072, 34.141870],\n\t\t\t\t\t\t[-98.169120, 34.114171]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40041\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"041\",\n\t\t\t\t\"NAME\": \"Delaware\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 738.177000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.005730, 36.509890],\n\t\t\t\t\t\t[-94.999403, 36.670631],\n\t\t\t\t\t\t[-94.618019, 36.667921],\n\t\t\t\t\t\t[-94.617815, 36.612604],\n\t\t\t\t\t\t[-94.617865, 36.606851],\n\t\t\t\t\t\t[-94.617853, 36.599120],\n\t\t\t\t\t\t[-94.617814, 36.577732],\n\t\t\t\t\t\t[-94.617897, 36.536983],\n\t\t\t\t\t\t[-94.617868, 36.536090],\n\t\t\t\t\t\t[-94.617997, 36.534280],\n\t\t\t\t\t\t[-94.617883, 36.517799],\n\t\t\t\t\t\t[-94.617877, 36.514999],\n\t\t\t\t\t\t[-94.617919, 36.499414],\n\t\t\t\t\t\t[-94.615311, 36.484992],\n\t\t\t\t\t\t[-94.613830, 36.476248],\n\t\t\t\t\t\t[-94.611609, 36.461528],\n\t\t\t\t\t\t[-94.605408, 36.421949],\n\t\t\t\t\t\t[-94.602623, 36.405283],\n\t\t\t\t\t\t[-94.601984, 36.402120],\n\t\t\t\t\t\t[-94.599723, 36.387587],\n\t\t\t\t\t\t[-94.593397, 36.345742],\n\t\t\t\t\t\t[-94.586200, 36.299969],\n\t\t\t\t\t\t[-94.577883, 36.250080],\n\t\t\t\t\t\t[-94.577899, 36.249548],\n\t\t\t\t\t\t[-94.576003, 36.240070],\n\t\t\t\t\t\t[-94.575071, 36.233682],\n\t\t\t\t\t\t[-94.574880, 36.232741],\n\t\t\t\t\t\t[-94.574395, 36.229996],\n\t\t\t\t\t\t[-94.571806, 36.213748],\n\t\t\t\t\t\t[-94.571253, 36.210901],\n\t\t\t\t\t\t[-94.566588, 36.183774],\n\t\t\t\t\t\t[-94.565655, 36.178439],\n\t\t\t\t\t\t[-94.562828, 36.161895],\n\t\t\t\t\t\t[-94.797279, 36.161390],\n\t\t\t\t\t\t[-95.011303, 36.161815],\n\t\t\t\t\t\t[-95.005730, 36.509890]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US40051\",\n\t\t\t\t\"STATE\": \"40\",\n\t\t\t\t\"COUNTY\": \"051\",\n\t\t\t\t\"NAME\": \"Grady\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1100.497000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.096014, 35.377753],\n\t\t\t\t\t\t[-97.833675, 35.335362],\n\t\t\t\t\t\t[-97.812129, 35.333788],\n\t\t\t\t\t\t[-97.807186, 35.340846],\n\t\t\t\t\t\t[-97.796719, 35.339105],\n\t\t\t\t\t\t[-97.792022, 35.332702],\n\t\t\t\t\t\t[-97.788319, 35.336643],\n\t\t\t\t\t\t[-97.777567, 35.337087],\n\t\t\t\t\t\t[-97.771765, 35.345735],\n\t\t\t\t\t\t[-97.737305, 35.323762],\n\t\t\t\t\t\t[-97.724708, 35.325832],\n\t\t\t\t\t\t[-97.720035, 35.328515],\n\t\t\t\t\t\t[-97.706159, 35.324989],\n\t\t\t\t\t\t[-97.695870, 35.327709],\n\t\t\t\t\t\t[-97.685054, 35.334301],\n\t\t\t\t\t\t[-97.671595, 35.335934],\n\t\t\t\t\t\t[-97.668099, 34.855164],\n\t\t\t\t\t\t[-97.668425, 34.681344],\n\t\t\t\t\t\t[-98.087756, 34.681255],\n\t\t\t\t\t\t[-98.089098, 34.681119],\n\t\t\t\t\t\t[-98.089558, 34.854929],\n\t\t\t\t\t\t[-98.092645, 34.854919],\n\t\t\t\t\t\t[-98.096014, 35.377753]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37189\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"189\",\n\t\t\t\t\"NAME\": \"Watauga\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 312.556000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.725938, 36.340364],\n\t\t\t\t\t\t[-81.720969, 36.387500],\n\t\t\t\t\t\t[-81.566170, 36.272064],\n\t\t\t\t\t\t[-81.477298, 36.240272],\n\t\t\t\t\t\t[-81.455579, 36.199749],\n\t\t\t\t\t\t[-81.545455, 36.117398],\n\t\t\t\t\t\t[-81.811520, 36.111544],\n\t\t\t\t\t\t[-81.909121, 36.216374],\n\t\t\t\t\t\t[-81.918113, 36.287110],\n\t\t\t\t\t\t[-81.908137, 36.302013],\n\t\t\t\t\t\t[-81.855005, 36.337259],\n\t\t\t\t\t\t[-81.800812, 36.358073],\n\t\t\t\t\t\t[-81.793688, 36.360428],\n\t\t\t\t\t\t[-81.789712, 36.348324],\n\t\t\t\t\t\t[-81.764927, 36.338672],\n\t\t\t\t\t\t[-81.747842, 36.337356],\n\t\t\t\t\t\t[-81.730976, 36.341187],\n\t\t\t\t\t\t[-81.725938, 36.340364]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48051\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"051\",\n\t\t\t\t\"NAME\": \"Burleson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 659.026000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.369190, 30.365072],\n\t\t\t\t\t\t[-96.640883, 30.296786],\n\t\t\t\t\t\t[-96.740542, 30.318655],\n\t\t\t\t\t\t[-96.963629, 30.557169],\n\t\t\t\t\t\t[-96.621281, 30.730819],\n\t\t\t\t\t\t[-96.599467, 30.728634],\n\t\t\t\t\t\t[-96.595776, 30.715072],\n\t\t\t\t\t\t[-96.568795, 30.701387],\n\t\t\t\t\t\t[-96.566983, 30.695670],\n\t\t\t\t\t\t[-96.572064, 30.688849],\n\t\t\t\t\t\t[-96.581519, 30.688890],\n\t\t\t\t\t\t[-96.584171, 30.683191],\n\t\t\t\t\t\t[-96.582804, 30.663792],\n\t\t\t\t\t\t[-96.584439, 30.658957],\n\t\t\t\t\t\t[-96.594308, 30.652589],\n\t\t\t\t\t\t[-96.601708, 30.640535],\n\t\t\t\t\t\t[-96.510494, 30.627828],\n\t\t\t\t\t\t[-96.358817, 30.541753],\n\t\t\t\t\t\t[-96.290895, 30.443999],\n\t\t\t\t\t\t[-96.285516, 30.448393],\n\t\t\t\t\t\t[-96.286449, 30.433756],\n\t\t\t\t\t\t[-96.282564, 30.426614],\n\t\t\t\t\t\t[-96.287993, 30.421281],\n\t\t\t\t\t\t[-96.281109, 30.414831],\n\t\t\t\t\t\t[-96.272049, 30.416145],\n\t\t\t\t\t\t[-96.272837, 30.409042],\n\t\t\t\t\t\t[-96.278998, 30.407422],\n\t\t\t\t\t\t[-96.286590, 30.411661],\n\t\t\t\t\t\t[-96.298866, 30.410502],\n\t\t\t\t\t\t[-96.297599, 30.400421],\n\t\t\t\t\t\t[-96.302498, 30.399403],\n\t\t\t\t\t\t[-96.306356, 30.391715],\n\t\t\t\t\t\t[-96.294939, 30.385623],\n\t\t\t\t\t\t[-96.294068, 30.380235],\n\t\t\t\t\t\t[-96.299173, 30.379152],\n\t\t\t\t\t\t[-96.312795, 30.384300],\n\t\t\t\t\t\t[-96.340485, 30.367925],\n\t\t\t\t\t\t[-96.358976, 30.372637],\n\t\t\t\t\t\t[-96.369190, 30.365072]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US35023\",\n\t\t\t\t\"STATE\": \"35\",\n\t\t\t\t\"COUNTY\": \"023\",\n\t\t\t\t\"NAME\": \"Hidalgo\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 3436.861000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-109.048286, 32.089114],\n\t\t\t\t\t\t[-109.047926, 32.426376],\n\t\t\t\t\t\t[-109.047653, 32.681379],\n\t\t\t\t\t\t[-109.047653, 32.686327],\n\t\t\t\t\t\t[-109.047645, 32.689988],\n\t\t\t\t\t\t[-109.047638, 32.693439],\n\t\t\t\t\t\t[-109.047117, 32.777569],\n\t\t\t\t\t\t[-108.854381, 32.777276],\n\t\t\t\t\t\t[-108.853075, 32.603627],\n\t\t\t\t\t\t[-108.646373, 32.603582],\n\t\t\t\t\t\t[-108.647155, 32.516897],\n\t\t\t\t\t\t[-108.537035, 32.516751],\n\t\t\t\t\t\t[-108.538135, 32.079836],\n\t\t\t\t\t\t[-108.524586, 32.079732],\n\t\t\t\t\t\t[-108.524702, 31.863694],\n\t\t\t\t\t\t[-108.217194, 31.864096],\n\t\t\t\t\t\t[-108.217295, 31.820297],\n\t\t\t\t\t\t[-108.209995, 31.820398],\n\t\t\t\t\t\t[-108.209995, 31.783699],\n\t\t\t\t\t\t[-108.208394, 31.783599],\n\t\t\t\t\t\t[-108.208521, 31.499798],\n\t\t\t\t\t\t[-108.208572, 31.499742],\n\t\t\t\t\t\t[-108.208573, 31.333395],\n\t\t\t\t\t\t[-108.851105, 31.332301],\n\t\t\t\t\t\t[-108.861028, 31.332315],\n\t\t\t\t\t\t[-109.050044, 31.332502],\n\t\t\t\t\t\t[-109.049843, 31.499515],\n\t\t\t\t\t\t[-109.049813, 31.499528],\n\t\t\t\t\t\t[-109.049195, 31.796551],\n\t\t\t\t\t\t[-109.048763, 31.810776],\n\t\t\t\t\t\t[-109.048769, 31.861383],\n\t\t\t\t\t\t[-109.048590, 31.870791],\n\t\t\t\t\t\t[-109.048599, 32.013651],\n\t\t\t\t\t\t[-109.048731, 32.028174],\n\t\t\t\t\t\t[-109.048296, 32.084093],\n\t\t\t\t\t\t[-109.048286, 32.089114]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US35029\",\n\t\t\t\t\"STATE\": \"35\",\n\t\t\t\t\"COUNTY\": \"029\",\n\t\t\t\t\"NAME\": \"Luna\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2965.188000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-107.296824, 31.783762],\n\t\t\t\t\t\t[-107.422246, 31.783599],\n\t\t\t\t\t\t[-107.422495, 31.783599],\n\t\t\t\t\t\t[-108.208394, 31.783599],\n\t\t\t\t\t\t[-108.209995, 31.783699],\n\t\t\t\t\t\t[-108.209995, 31.820398],\n\t\t\t\t\t\t[-108.217295, 31.820297],\n\t\t\t\t\t\t[-108.217194, 31.864096],\n\t\t\t\t\t\t[-108.229259, 32.516996],\n\t\t\t\t\t\t[-107.923489, 32.517283],\n\t\t\t\t\t\t[-107.923490, 32.604380],\n\t\t\t\t\t\t[-107.608283, 32.605382],\n\t\t\t\t\t\t[-107.299463, 32.605534],\n\t\t\t\t\t\t[-107.296824, 31.783762]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US35031\",\n\t\t\t\t\"STATE\": \"35\",\n\t\t\t\t\"COUNTY\": \"031\",\n\t\t\t\t\"NAME\": \"McKinley\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 5449.809000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-108.468585, 35.299239],\n\t\t\t\t\t\t[-108.469264, 34.958972],\n\t\t\t\t\t\t[-109.045851, 34.959718],\n\t\t\t\t\t\t[-109.046082, 35.174665],\n\t\t\t\t\t\t[-109.046481, 35.546326],\n\t\t\t\t\t\t[-109.046509, 35.546440],\n\t\t\t\t\t\t[-109.046296, 35.614251],\n\t\t\t\t\t\t[-109.046295, 35.616517],\n\t\t\t\t\t\t[-109.046024, 35.879800],\n\t\t\t\t\t\t[-109.046055, 35.888721],\n\t\t\t\t\t\t[-109.046054, 35.925860],\n\t\t\t\t\t\t[-109.046011, 35.925896],\n\t\t\t\t\t\t[-109.045973, 36.002338],\n\t\t\t\t\t\t[-107.626510, 36.000320],\n\t\t\t\t\t\t[-107.308212, 35.998690],\n\t\t\t\t\t\t[-107.306591, 35.418530],\n\t\t\t\t\t\t[-107.309634, 35.419011],\n\t\t\t\t\t\t[-107.310041, 35.305192],\n\t\t\t\t\t\t[-107.628344, 35.304766],\n\t\t\t\t\t\t[-107.628210, 35.348333],\n\t\t\t\t\t\t[-107.734079, 35.348332],\n\t\t\t\t\t\t[-107.734212, 35.304934],\n\t\t\t\t\t\t[-108.468586, 35.306755],\n\t\t\t\t\t\t[-108.468585, 35.299239]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US35035\",\n\t\t\t\t\"STATE\": \"35\",\n\t\t\t\t\"COUNTY\": \"035\",\n\t\t\t\t\"NAME\": \"Otero\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 6613.209000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-105.998003, 32.002328],\n\t\t\t\t\t\t[-106.099760, 32.002174],\n\t\t\t\t\t\t[-106.181840, 32.002050],\n\t\t\t\t\t\t[-106.200699, 32.001785],\n\t\t\t\t\t\t[-106.205915, 32.001762],\n\t\t\t\t\t\t[-106.313307, 32.001512],\n\t\t\t\t\t\t[-106.377174, 32.001490],\n\t\t\t\t\t\t[-106.376614, 32.957941],\n\t\t\t\t\t\t[-106.340731, 32.958250],\n\t\t\t\t\t\t[-106.340473, 33.052795],\n\t\t\t\t\t\t[-106.345851, 33.390815],\n\t\t\t\t\t\t[-105.727343, 33.390524],\n\t\t\t\t\t\t[-105.725957, 33.304834],\n\t\t\t\t\t\t[-105.319045, 33.305090],\n\t\t\t\t\t\t[-105.316882, 33.132218],\n\t\t\t\t\t\t[-105.316151, 32.962014],\n\t\t\t\t\t\t[-105.352550, 32.961976],\n\t\t\t\t\t\t[-105.353907, 32.518769],\n\t\t\t\t\t\t[-104.851525, 32.520505],\n\t\t\t\t\t\t[-104.847757, 32.000482],\n\t\t\t\t\t\t[-104.918272, 32.000496],\n\t\t\t\t\t\t[-105.077046, 32.000579],\n\t\t\t\t\t\t[-105.078605, 32.000533],\n\t\t\t\t\t\t[-105.118040, 32.000485],\n\t\t\t\t\t\t[-105.131377, 32.000524],\n\t\t\t\t\t\t[-105.132916, 32.000518],\n\t\t\t\t\t\t[-105.148240, 32.000485],\n\t\t\t\t\t\t[-105.150310, 32.000497],\n\t\t\t\t\t\t[-105.153994, 32.000497],\n\t\t\t\t\t\t[-105.390396, 32.000607],\n\t\t\t\t\t\t[-105.427049, 32.000638],\n\t\t\t\t\t\t[-105.428582, 32.000600],\n\t\t\t\t\t\t[-105.429281, 32.000577],\n\t\t\t\t\t\t[-105.886159, 32.001970],\n\t\t\t\t\t\t[-105.900600, 32.002100],\n\t\t\t\t\t\t[-105.998003, 32.002328]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47153\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"153\",\n\t\t\t\t\"NAME\": \"Sequatchie\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 265.858000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.557535, 35.532977],\n\t\t\t\t\t\t[-85.423804, 35.567422],\n\t\t\t\t\t\t[-85.403298, 35.492280],\n\t\t\t\t\t\t[-85.225877, 35.354276],\n\t\t\t\t\t\t[-85.246005, 35.319077],\n\t\t\t\t\t\t[-85.387089, 35.147169],\n\t\t\t\t\t\t[-85.444144, 35.262646],\n\t\t\t\t\t\t[-85.558551, 35.319292],\n\t\t\t\t\t\t[-85.485635, 35.406433],\n\t\t\t\t\t\t[-85.607326, 35.531651],\n\t\t\t\t\t\t[-85.557535, 35.532977]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47157\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"157\",\n\t\t\t\t\"NAME\": \"Shelby\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 763.174000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.642786, 35.044860],\n\t\t\t\t\t\t[-89.643782, 35.012092],\n\t\t\t\t\t\t[-89.643739, 35.011693],\n\t\t\t\t\t\t[-89.644282, 34.995293],\n\t\t\t\t\t\t[-89.724324, 34.994763],\n\t\t\t\t\t\t[-89.795187, 34.994293],\n\t\t\t\t\t\t[-89.848488, 34.994193],\n\t\t\t\t\t\t[-89.883365, 34.994261],\n\t\t\t\t\t\t[-89.893402, 34.994356],\n\t\t\t\t\t\t[-90.309297, 34.995694],\n\t\t\t\t\t\t[-90.309877, 35.009750],\n\t\t\t\t\t\t[-90.295596, 35.040093],\n\t\t\t\t\t\t[-90.193859, 35.061646],\n\t\t\t\t\t\t[-90.174594, 35.116682],\n\t\t\t\t\t\t[-90.160058, 35.128830],\n\t\t\t\t\t\t[-90.142794, 35.135091],\n\t\t\t\t\t\t[-90.109393, 35.118891],\n\t\t\t\t\t\t[-90.100593, 35.116691],\n\t\t\t\t\t\t[-90.090610, 35.118287],\n\t\t\t\t\t\t[-90.083420, 35.121670],\n\t\t\t\t\t\t[-90.065392, 35.137691],\n\t\t\t\t\t\t[-90.064612, 35.140621],\n\t\t\t\t\t\t[-90.073354, 35.211004],\n\t\t\t\t\t\t[-90.074262, 35.218316],\n\t\t\t\t\t\t[-90.077410, 35.225479],\n\t\t\t\t\t\t[-90.097947, 35.249983],\n\t\t\t\t\t\t[-90.105093, 35.254288],\n\t\t\t\t\t\t[-90.116493, 35.255788],\n\t\t\t\t\t\t[-90.140394, 35.252289],\n\t\t\t\t\t\t[-90.152094, 35.255989],\n\t\t\t\t\t\t[-90.158865, 35.262577],\n\t\t\t\t\t\t[-90.166594, 35.274588],\n\t\t\t\t\t\t[-90.168871, 35.281997],\n\t\t\t\t\t\t[-90.163812, 35.296115],\n\t\t\t\t\t\t[-90.158913, 35.300637],\n\t\t\t\t\t\t[-90.153394, 35.302588],\n\t\t\t\t\t\t[-90.114893, 35.303887],\n\t\t\t\t\t\t[-90.086691, 35.369935],\n\t\t\t\t\t\t[-90.089612, 35.379842],\n\t\t\t\t\t\t[-90.074992, 35.384152],\n\t\t\t\t\t\t[-90.061788, 35.386184],\n\t\t\t\t\t\t[-90.054322, 35.389277],\n\t\t\t\t\t\t[-89.957347, 35.528683],\n\t\t\t\t\t\t[-89.933572, 35.533299],\n\t\t\t\t\t\t[-90.041563, 35.396620],\n\t\t\t\t\t\t[-89.889317, 35.390906],\n\t\t\t\t\t\t[-89.702480, 35.408584],\n\t\t\t\t\t\t[-89.632776, 35.375824],\n\t\t\t\t\t\t[-89.642786, 35.044860]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47163\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"163\",\n\t\t\t\t\"NAME\": \"Sullivan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 413.363000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.609176, 36.594099],\n\t\t\t\t\t\t[-82.561074, 36.594800],\n\t\t\t\t\t\t[-82.559774, 36.594800],\n\t\t\t\t\t\t[-82.554294, 36.594876],\n\t\t\t\t\t\t[-82.293814, 36.595565],\n\t\t\t\t\t\t[-82.243274, 36.595699],\n\t\t\t\t\t\t[-82.226653, 36.595743],\n\t\t\t\t\t\t[-82.225716, 36.595744],\n\t\t\t\t\t\t[-82.223445, 36.595721],\n\t\t\t\t\t\t[-82.221713, 36.595814],\n\t\t\t\t\t\t[-82.211005, 36.595860],\n\t\t\t\t\t\t[-82.210497, 36.595772],\n\t\t\t\t\t\t[-82.188491, 36.595179],\n\t\t\t\t\t\t[-82.180740, 36.594928],\n\t\t\t\t\t\t[-82.177247, 36.594768],\n\t\t\t\t\t\t[-82.173982, 36.594607],\n\t\t\t\t\t\t[-82.150727, 36.594673],\n\t\t\t\t\t\t[-82.148569, 36.594718],\n\t\t\t\t\t\t[-82.146070, 36.594712],\n\t\t\t\t\t\t[-81.934144, 36.594213],\n\t\t\t\t\t\t[-81.922644, 36.616213],\n\t\t\t\t\t\t[-81.826742, 36.614215],\n\t\t\t\t\t\t[-81.983843, 36.508314],\n\t\t\t\t\t\t[-82.188053, 36.400608],\n\t\t\t\t\t\t[-82.299859, 36.396505],\n\t\t\t\t\t\t[-82.438266, 36.445703],\n\t\t\t\t\t\t[-82.680677, 36.431800],\n\t\t\t\t\t\t[-82.609176, 36.594099]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47171\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"171\",\n\t\t\t\t\"NAME\": \"Unicoi\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 186.165000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.462958, 36.007309],\n\t\t\t\t\t\t[-82.487411, 35.991634],\n\t\t\t\t\t\t[-82.487451, 35.991557],\n\t\t\t\t\t\t[-82.505860, 35.978342],\n\t\t\t\t\t\t[-82.507068, 35.977475],\n\t\t\t\t\t\t[-82.512598, 35.975664],\n\t\t\t\t\t\t[-82.557529, 35.954671],\n\t\t\t\t\t\t[-82.596774, 35.964987],\n\t\t\t\t\t\t[-82.611262, 35.973155],\n\t\t\t\t\t\t[-82.615062, 36.000306],\n\t\t\t\t\t\t[-82.602877, 36.039833],\n\t\t\t\t\t\t[-82.577200, 36.078387],\n\t\t\t\t\t\t[-82.595065, 36.096205],\n\t\t\t\t\t\t[-82.527605, 36.148951],\n\t\t\t\t\t\t[-82.437251, 36.154709],\n\t\t\t\t\t\t[-82.340460, 36.252807],\n\t\t\t\t\t\t[-82.256356, 36.233208],\n\t\t\t\t\t\t[-82.222052, 36.156911],\n\t\t\t\t\t\t[-82.234807, 36.141720],\n\t\t\t\t\t\t[-82.235479, 36.140748],\n\t\t\t\t\t\t[-82.236415, 36.139926],\n\t\t\t\t\t\t[-82.237737, 36.139189],\n\t\t\t\t\t\t[-82.325169, 36.119363],\n\t\t\t\t\t\t[-82.329177, 36.117427],\n\t\t\t\t\t\t[-82.348422, 36.115929],\n\t\t\t\t\t\t[-82.360919, 36.110614],\n\t\t\t\t\t\t[-82.366566, 36.107650],\n\t\t\t\t\t\t[-82.371383, 36.106388],\n\t\t\t\t\t\t[-82.375558, 36.105609],\n\t\t\t\t\t\t[-82.409458, 36.083409],\n\t\t\t\t\t\t[-82.416857, 36.072885],\n\t\t\t\t\t\t[-82.462958, 36.007309]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47181\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"181\",\n\t\t\t\t\"NAME\": \"Wayne\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 734.100000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.984916, 35.006256],\n\t\t\t\t\t\t[-87.981585, 35.295678],\n\t\t\t\t\t\t[-88.024741, 35.392307],\n\t\t\t\t\t\t[-87.984553, 35.392115],\n\t\t\t\t\t\t[-87.975184, 35.414174],\n\t\t\t\t\t\t[-88.007709, 35.423381],\n\t\t\t\t\t\t[-87.973180, 35.459968],\n\t\t\t\t\t\t[-87.717559, 35.483347],\n\t\t\t\t\t\t[-87.575352, 35.398454],\n\t\t\t\t\t\t[-87.588833, 35.058431],\n\t\t\t\t\t\t[-87.606031, 35.003343],\n\t\t\t\t\t\t[-87.664123, 35.003523],\n\t\t\t\t\t\t[-87.671405, 35.003537],\n\t\t\t\t\t\t[-87.696834, 35.003852],\n\t\t\t\t\t\t[-87.700543, 35.003988],\n\t\t\t\t\t\t[-87.702321, 35.003945],\n\t\t\t\t\t\t[-87.709491, 35.004089],\n\t\t\t\t\t\t[-87.758890, 35.004711],\n\t\t\t\t\t\t[-87.767602, 35.004783],\n\t\t\t\t\t\t[-87.773586, 35.004946],\n\t\t\t\t\t\t[-87.851886, 35.005656],\n\t\t\t\t\t\t[-87.853411, 35.005576],\n\t\t\t\t\t\t[-87.853528, 35.005541],\n\t\t\t\t\t\t[-87.872626, 35.005571],\n\t\t\t\t\t\t[-87.877742, 35.005512],\n\t\t\t\t\t\t[-87.877969, 35.005468],\n\t\t\t\t\t\t[-87.984916, 35.006256]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US45057\",\n\t\t\t\t\"STATE\": \"45\",\n\t\t\t\t\"COUNTY\": \"057\",\n\t\t\t\t\"NAME\": \"Lancaster\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 549.160000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.906417, 35.076608],\n\t\t\t\t\t\t[-80.840461, 35.001566],\n\t\t\t\t\t\t[-80.806784, 34.963249],\n\t\t\t\t\t\t[-80.806461, 34.962894],\n\t\t\t\t\t\t[-80.782042, 34.935782],\n\t\t\t\t\t\t[-80.796750, 34.825281],\n\t\t\t\t\t\t[-80.777712, 34.819697],\n\t\t\t\t\t\t[-80.771792, 34.819646],\n\t\t\t\t\t\t[-80.646601, 34.818592],\n\t\t\t\t\t\t[-80.644656, 34.818568],\n\t\t\t\t\t\t[-80.626077, 34.818217],\n\t\t\t\t\t\t[-80.625993, 34.818239],\n\t\t\t\t\t\t[-80.621222, 34.818174],\n\t\t\t\t\t\t[-80.561674, 34.817481],\n\t\t\t\t\t\t[-80.408373, 34.614765],\n\t\t\t\t\t\t[-80.550552, 34.560116],\n\t\t\t\t\t\t[-80.523945, 34.509752],\n\t\t\t\t\t\t[-80.739966, 34.479957],\n\t\t\t\t\t\t[-80.743345, 34.539916],\n\t\t\t\t\t\t[-80.879227, 34.457776],\n\t\t\t\t\t\t[-80.877491, 34.543146],\n\t\t\t\t\t\t[-80.896406, 34.631781],\n\t\t\t\t\t\t[-80.860274, 34.695847],\n\t\t\t\t\t\t[-80.898215, 34.820746],\n\t\t\t\t\t\t[-80.868652, 34.951143],\n\t\t\t\t\t\t[-80.906417, 35.076608]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36085\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"085\",\n\t\t\t\t\"NAME\": \"Richmond\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 58.370000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-74.144428, 40.535160],\n\t\t\t\t\t\t[-74.148697, 40.534489],\n\t\t\t\t\t\t[-74.160859, 40.526790],\n\t\t\t\t\t\t[-74.177986, 40.519603],\n\t\t\t\t\t\t[-74.182157, 40.520634],\n\t\t\t\t\t\t[-74.199923, 40.511729],\n\t\t\t\t\t\t[-74.210474, 40.509448],\n\t\t\t\t\t\t[-74.219787, 40.502603],\n\t\t\t\t\t\t[-74.233240, 40.501299],\n\t\t\t\t\t\t[-74.246688, 40.496103],\n\t\t\t\t\t\t[-74.250188, 40.496703],\n\t\t\t\t\t\t[-74.254588, 40.502303],\n\t\t\t\t\t\t[-74.256088, 40.507903],\n\t\t\t\t\t\t[-74.252702, 40.513895],\n\t\t\t\t\t\t[-74.242888, 40.520903],\n\t\t\t\t\t\t[-74.241732, 40.531273],\n\t\t\t\t\t\t[-74.247808, 40.543396],\n\t\t\t\t\t\t[-74.229002, 40.555041],\n\t\t\t\t\t\t[-74.216997, 40.554991],\n\t\t\t\t\t\t[-74.210887, 40.560902],\n\t\t\t\t\t\t[-74.204054, 40.589336],\n\t\t\t\t\t\t[-74.196820, 40.597037],\n\t\t\t\t\t\t[-74.195407, 40.601806],\n\t\t\t\t\t\t[-74.196096, 40.616169],\n\t\t\t\t\t\t[-74.200994, 40.616906],\n\t\t\t\t\t\t[-74.201812, 40.619507],\n\t\t\t\t\t\t[-74.200580, 40.631448],\n\t\t\t\t\t\t[-74.189400, 40.642121],\n\t\t\t\t\t\t[-74.180191, 40.645521],\n\t\t\t\t\t\t[-74.174085, 40.645109],\n\t\t\t\t\t\t[-74.170187, 40.642201],\n\t\t\t\t\t\t[-74.152973, 40.638886],\n\t\t\t\t\t\t[-74.120186, 40.642201],\n\t\t\t\t\t\t[-74.086485, 40.648601],\n\t\t\t\t\t\t[-74.075884, 40.648101],\n\t\t\t\t\t\t[-74.069700, 40.641216],\n\t\t\t\t\t\t[-74.067598, 40.623865],\n\t\t\t\t\t\t[-74.060345, 40.611999],\n\t\t\t\t\t\t[-74.053125, 40.603678],\n\t\t\t\t\t\t[-74.059184, 40.593502],\n\t\t\t\t\t\t[-74.068184, 40.584102],\n\t\t\t\t\t\t[-74.090797, 40.566463],\n\t\t\t\t\t\t[-74.111471, 40.546908],\n\t\t\t\t\t\t[-74.112585, 40.547603],\n\t\t\t\t\t\t[-74.121672, 40.542691],\n\t\t\t\t\t\t[-74.137241, 40.530076],\n\t\t\t\t\t\t[-74.140230, 40.533738],\n\t\t\t\t\t\t[-74.144428, 40.535160]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36097\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"097\",\n\t\t\t\t\"NAME\": \"Schuyler\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 328.333000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.895596, 42.541537],\n\t\t\t\t\t\t[-76.696655, 42.546790],\n\t\t\t\t\t\t[-76.691406, 42.284307],\n\t\t\t\t\t\t[-76.619303, 42.282853],\n\t\t\t\t\t\t[-76.642256, 42.233721],\n\t\t\t\t\t\t[-76.733912, 42.293720],\n\t\t\t\t\t\t[-76.965028, 42.278495],\n\t\t\t\t\t\t[-77.099657, 42.272356],\n\t\t\t\t\t\t[-77.107203, 42.483771],\n\t\t\t\t\t\t[-76.889805, 42.463054],\n\t\t\t\t\t\t[-76.895596, 42.541537]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36105\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"105\",\n\t\t\t\t\"NAME\": \"Sullivan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 968.132000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-75.050074, 41.606893],\n\t\t\t\t\t\t[-75.053077, 41.618552],\n\t\t\t\t\t\t[-75.048199, 41.632011],\n\t\t\t\t\t\t[-75.053431, 41.752538],\n\t\t\t\t\t\t[-75.090799, 41.811991],\n\t\t\t\t\t\t[-75.114399, 41.843583],\n\t\t\t\t\t\t[-75.140241, 41.852078],\n\t\t\t\t\t\t[-75.146446, 41.850899],\n\t\t\t\t\t\t[-74.997252, 41.918485],\n\t\t\t\t\t\t[-74.780693, 42.016375],\n\t\t\t\t\t\t[-74.453685, 41.875595],\n\t\t\t\t\t\t[-74.575086, 41.745258],\n\t\t\t\t\t\t[-74.395071, 41.644876],\n\t\t\t\t\t\t[-74.367055, 41.590977],\n\t\t\t\t\t\t[-74.475591, 41.504334],\n\t\t\t\t\t\t[-74.752399, 41.493743],\n\t\t\t\t\t\t[-74.755950, 41.426804],\n\t\t\t\t\t\t[-74.799165, 41.430451],\n\t\t\t\t\t\t[-74.876721, 41.440338],\n\t\t\t\t\t\t[-74.891948, 41.448853],\n\t\t\t\t\t\t[-74.912517, 41.475605],\n\t\t\t\t\t\t[-74.939760, 41.483371],\n\t\t\t\t\t\t[-74.984226, 41.506299],\n\t\t\t\t\t\t[-75.040490, 41.569688],\n\t\t\t\t\t\t[-75.050074, 41.606893]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36111\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"111\",\n\t\t\t\t\"NAME\": \"Ulster\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1124.235000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-73.942482, 41.684093],\n\t\t\t\t\t\t[-73.947382, 41.667493],\n\t\t\t\t\t\t[-73.953307, 41.589977],\n\t\t\t\t\t\t[-74.126393, 41.582544],\n\t\t\t\t\t\t[-74.264093, 41.632738],\n\t\t\t\t\t\t[-74.367055, 41.590977],\n\t\t\t\t\t\t[-74.395071, 41.644876],\n\t\t\t\t\t\t[-74.575086, 41.745258],\n\t\t\t\t\t\t[-74.453685, 41.875595],\n\t\t\t\t\t\t[-74.780693, 42.016375],\n\t\t\t\t\t\t[-74.451713, 42.169225],\n\t\t\t\t\t\t[-74.307571, 42.114346],\n\t\t\t\t\t\t[-74.074797, 42.096589],\n\t\t\t\t\t\t[-74.042393, 42.170386],\n\t\t\t\t\t\t[-73.910675, 42.127293],\n\t\t\t\t\t\t[-73.921465, 42.110025],\n\t\t\t\t\t\t[-73.929626, 42.078778],\n\t\t\t\t\t\t[-73.962221, 41.901020],\n\t\t\t\t\t\t[-73.941081, 41.735993],\n\t\t\t\t\t\t[-73.941081, 41.732693],\n\t\t\t\t\t\t[-73.944435, 41.714634],\n\t\t\t\t\t\t[-73.946682, 41.699396],\n\t\t\t\t\t\t[-73.945782, 41.695593],\n\t\t\t\t\t\t[-73.943482, 41.690293],\n\t\t\t\t\t\t[-73.942482, 41.684093]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36115\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"115\",\n\t\t\t\t\"NAME\": \"Washington\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 831.184000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-73.269472, 43.030686],\n\t\t\t\t\t\t[-73.274294, 42.943652],\n\t\t\t\t\t\t[-73.635463, 42.941290],\n\t\t\t\t\t\t[-73.573342, 43.100545],\n\t\t\t\t\t\t[-73.594960, 43.306118],\n\t\t\t\t\t\t[-73.628940, 43.486391],\n\t\t\t\t\t\t[-73.492893, 43.657303],\n\t\t\t\t\t\t[-73.438120, 43.803687],\n\t\t\t\t\t\t[-73.435909, 43.803836],\n\t\t\t\t\t\t[-73.433237, 43.804083],\n\t\t\t\t\t\t[-73.379312, 43.808478],\n\t\t\t\t\t\t[-73.379279, 43.808391],\n\t\t\t\t\t\t[-73.357547, 43.785933],\n\t\t\t\t\t\t[-73.350431, 43.771438],\n\t\t\t\t\t\t[-73.360711, 43.753268],\n\t\t\t\t\t\t[-73.370724, 43.735571],\n\t\t\t\t\t\t[-73.403517, 43.685032],\n\t\t\t\t\t\t[-73.408697, 43.674020],\n\t\t\t\t\t\t[-73.421606, 43.646577],\n\t\t\t\t\t\t[-73.431229, 43.588285],\n\t\t\t\t\t\t[-73.428636, 43.583994],\n\t\t\t\t\t\t[-73.400295, 43.568889],\n\t\t\t\t\t\t[-73.375594, 43.613350],\n\t\t\t\t\t\t[-73.366537, 43.623462],\n\t\t\t\t\t\t[-73.306234, 43.628018],\n\t\t\t\t\t\t[-73.302552, 43.625708],\n\t\t\t\t\t\t[-73.245594, 43.540253],\n\t\t\t\t\t\t[-73.242042, 43.534925],\n\t\t\t\t\t\t[-73.247061, 43.514919],\n\t\t\t\t\t\t[-73.252582, 43.370997],\n\t\t\t\t\t\t[-73.252674, 43.370285],\n\t\t\t\t\t\t[-73.252832, 43.363493],\n\t\t\t\t\t\t[-73.253084, 43.354714],\n\t\t\t\t\t\t[-73.254848, 43.314684],\n\t\t\t\t\t\t[-73.259159, 43.216848],\n\t\t\t\t\t\t[-73.269472, 43.030686]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36119\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"119\",\n\t\t\t\t\"NAME\": \"Westchester\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 430.497000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-73.767176, 40.886299],\n\t\t\t\t\t\t\t[-73.767076, 40.885399],\n\t\t\t\t\t\t\t[-73.767076, 40.884799],\n\t\t\t\t\t\t\t[-73.767076, 40.883499],\n\t\t\t\t\t\t\t[-73.766276, 40.881099],\n\t\t\t\t\t\t\t[-73.766976, 40.880099],\n\t\t\t\t\t\t\t[-73.770876, 40.879299],\n\t\t\t\t\t\t\t[-73.775276, 40.882199],\n\t\t\t\t\t\t\t[-73.775176, 40.884199],\n\t\t\t\t\t\t\t[-73.772776, 40.884599],\n\t\t\t\t\t\t\t[-73.772276, 40.887499],\n\t\t\t\t\t\t\t[-73.770576, 40.888399],\n\t\t\t\t\t\t\t[-73.768276, 40.887599],\n\t\t\t\t\t\t\t[-73.767276, 40.886899],\n\t\t\t\t\t\t\t[-73.767176, 40.886299]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-73.514617, 41.198434],\n\t\t\t\t\t\t\t[-73.614407, 41.153001],\n\t\t\t\t\t\t\t[-73.632153, 41.144921],\n\t\t\t\t\t\t\t[-73.639672, 41.141495],\n\t\t\t\t\t\t\t[-73.727775, 41.100696],\n\t\t\t\t\t\t\t[-73.694273, 41.059296],\n\t\t\t\t\t\t\t[-73.687173, 41.050697],\n\t\t\t\t\t\t\t[-73.679973, 41.041797],\n\t\t\t\t\t\t\t[-73.670472, 41.030097],\n\t\t\t\t\t\t\t[-73.655371, 41.012797],\n\t\t\t\t\t\t\t[-73.654671, 41.011697],\n\t\t\t\t\t\t\t[-73.657336, 40.985171],\n\t\t\t\t\t\t\t[-73.655972, 40.979597],\n\t\t\t\t\t\t\t[-73.659972, 40.968398],\n\t\t\t\t\t\t\t[-73.662072, 40.966198],\n\t\t\t\t\t\t\t[-73.664472, 40.967198],\n\t\t\t\t\t\t\t[-73.678073, 40.962798],\n\t\t\t\t\t\t\t[-73.683273, 40.948998],\n\t\t\t\t\t\t\t[-73.686473, 40.945198],\n\t\t\t\t\t\t\t[-73.697974, 40.939598],\n\t\t\t\t\t\t\t[-73.721739, 40.932037],\n\t\t\t\t\t\t\t[-73.731775, 40.924999],\n\t\t\t\t\t\t\t[-73.756776, 40.912599],\n\t\t\t\t\t\t\t[-73.781338, 40.885447],\n\t\t\t\t\t\t\t[-73.783545, 40.881040],\n\t\t\t\t\t\t\t[-73.804789, 40.886505],\n\t\t\t\t\t\t\t[-73.806395, 40.886801],\n\t\t\t\t\t\t\t[-73.823244, 40.891199],\n\t\t\t\t\t\t\t[-73.823120, 40.890648],\n\t\t\t\t\t\t\t[-73.823617, 40.890413],\n\t\t\t\t\t\t\t[-73.823557, 40.889865],\n\t\t\t\t\t\t\t[-73.824047, 40.889866],\n\t\t\t\t\t\t\t[-73.917905, 40.917577],\n\t\t\t\t\t\t\t[-73.893979, 40.997197],\n\t\t\t\t\t\t\t[-73.889380, 41.037597],\n\t\t\t\t\t\t\t[-73.894700, 41.069937],\n\t\t\t\t\t\t\t[-73.894880, 41.082396],\n\t\t\t\t\t\t\t[-73.887180, 41.133095],\n\t\t\t\t\t\t\t[-73.895381, 41.153995],\n\t\t\t\t\t\t\t[-73.909281, 41.164395],\n\t\t\t\t\t\t\t[-73.931482, 41.204994],\n\t\t\t\t\t\t\t[-73.947965, 41.223101],\n\t\t\t\t\t\t\t[-73.982584, 41.321693],\n\t\t\t\t\t\t\t[-73.544728, 41.366375],\n\t\t\t\t\t\t\t[-73.550961, 41.295422],\n\t\t\t\t\t\t\t[-73.482709, 41.212760],\n\t\t\t\t\t\t\t[-73.509487, 41.200814],\n\t\t\t\t\t\t\t[-73.514617, 41.198434]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US45091\",\n\t\t\t\t\"STATE\": \"45\",\n\t\t\t\t\"COUNTY\": \"091\",\n\t\t\t\t\"NAME\": \"York\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 680.595000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.032547, 35.109102],\n\t\t\t\t\t\t[-81.036163, 35.103205],\n\t\t\t\t\t\t[-81.046524, 35.100617],\n\t\t\t\t\t\t[-81.052078, 35.096276],\n\t\t\t\t\t\t[-81.057236, 35.086129],\n\t\t\t\t\t\t[-81.058029, 35.073190],\n\t\t\t\t\t\t[-81.057465, 35.061983],\n\t\t\t\t\t\t[-81.041489, 35.044703],\n\t\t\t\t\t\t[-80.957870, 35.092639],\n\t\t\t\t\t\t[-80.934950, 35.107409],\n\t\t\t\t\t\t[-80.906553, 35.076763],\n\t\t\t\t\t\t[-80.906417, 35.076608],\n\t\t\t\t\t\t[-80.868652, 34.951143],\n\t\t\t\t\t\t[-80.898215, 34.820746],\n\t\t\t\t\t\t[-81.478454, 34.821509],\n\t\t\t\t\t\t[-81.461755, 34.831018],\n\t\t\t\t\t\t[-81.457257, 34.839280],\n\t\t\t\t\t\t[-81.488434, 35.029516],\n\t\t\t\t\t\t[-81.409586, 35.046396],\n\t\t\t\t\t\t[-81.366599, 35.164889],\n\t\t\t\t\t\t[-81.328020, 35.163404],\n\t\t\t\t\t\t[-81.269199, 35.161140],\n\t\t\t\t\t\t[-81.241686, 35.160081],\n\t\t\t\t\t\t[-81.239358, 35.159974],\n\t\t\t\t\t\t[-81.090215, 35.152627],\n\t\t\t\t\t\t[-81.043407, 35.148390],\n\t\t\t\t\t\t[-81.042758, 35.146042],\n\t\t\t\t\t\t[-81.032547, 35.109102]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46009\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"009\",\n\t\t\t\t\"NAME\": \"Bon Homme\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 563.701000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.077108, 43.168330],\n\t\t\t\t\t\t[-97.637496, 43.168770],\n\t\t\t\t\t\t[-97.635115, 42.844984],\n\t\t\t\t\t\t[-97.686506, 42.842435],\n\t\t\t\t\t\t[-97.774456, 42.849774],\n\t\t\t\t\t\t[-97.814382, 42.861119],\n\t\t\t\t\t\t[-97.828496, 42.868797],\n\t\t\t\t\t\t[-97.845270, 42.867734],\n\t\t\t\t\t\t[-97.865695, 42.862860],\n\t\t\t\t\t\t[-97.875345, 42.858724],\n\t\t\t\t\t\t[-97.879878, 42.835395],\n\t\t\t\t\t\t[-97.888562, 42.817251],\n\t\t\t\t\t\t[-97.908983, 42.794909],\n\t\t\t\t\t\t[-97.936716, 42.775754],\n\t\t\t\t\t\t[-97.950147, 42.769619],\n\t\t\t\t\t\t[-98.000348, 42.763256],\n\t\t\t\t\t\t[-98.017228, 42.762411],\n\t\t\t\t\t\t[-98.035034, 42.764205],\n\t\t\t\t\t\t[-98.056625, 42.770781],\n\t\t\t\t\t\t[-98.157405, 42.831899],\n\t\t\t\t\t\t[-98.092782, 42.973921],\n\t\t\t\t\t\t[-98.077108, 43.168330]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46013\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"013\",\n\t\t\t\t\"NAME\": \"Brown\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1712.981000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.978778, 45.935937],\n\t\t\t\t\t\t[-97.979592, 45.588483],\n\t\t\t\t\t\t[-97.981457, 45.240415],\n\t\t\t\t\t\t[-98.717759, 45.243732],\n\t\t\t\t\t\t[-98.722481, 45.243764],\n\t\t\t\t\t\t[-98.722174, 45.591242],\n\t\t\t\t\t\t[-98.725002, 45.591252],\n\t\t\t\t\t\t[-98.724375, 45.938685],\n\t\t\t\t\t\t[-98.185630, 45.936185],\n\t\t\t\t\t\t[-98.184637, 45.936183],\n\t\t\t\t\t\t[-98.070515, 45.936180],\n\t\t\t\t\t\t[-98.008202, 45.936096],\n\t\t\t\t\t\t[-98.008102, 45.936095],\n\t\t\t\t\t\t[-97.986893, 45.935961],\n\t\t\t\t\t\t[-97.978778, 45.935937]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46021\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"021\",\n\t\t\t\t\"NAME\": \"Campbell\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 733.677000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.430079, 45.594823],\n\t\t\t\t\t\t[-100.309013, 45.707842],\n\t\t\t\t\t\t[-100.387036, 45.869142],\n\t\t\t\t\t\t[-100.499354, 45.943632],\n\t\t\t\t\t\t[-100.462838, 45.943566],\n\t\t\t\t\t\t[-100.430597, 45.943638],\n\t\t\t\t\t\t[-100.424438, 45.943569],\n\t\t\t\t\t\t[-100.420162, 45.943533],\n\t\t\t\t\t\t[-100.410386, 45.943453],\n\t\t\t\t\t\t[-100.294126, 45.943269],\n\t\t\t\t\t\t[-100.285345, 45.943130],\n\t\t\t\t\t\t[-100.284134, 45.942951],\n\t\t\t\t\t\t[-100.275614, 45.942922],\n\t\t\t\t\t\t[-100.274762, 45.942945],\n\t\t\t\t\t\t[-100.170826, 45.942514],\n\t\t\t\t\t\t[-100.152084, 45.942486],\n\t\t\t\t\t\t[-100.141730, 45.942506],\n\t\t\t\t\t\t[-100.110339, 45.942367],\n\t\t\t\t\t\t[-100.108471, 45.942391],\n\t\t\t\t\t\t[-100.084163, 45.942301],\n\t\t\t\t\t\t[-100.069020, 45.942170],\n\t\t\t\t\t\t[-100.005486, 45.941950],\n\t\t\t\t\t\t[-99.965775, 45.941822],\n\t\t\t\t\t\t[-99.880292, 45.941672],\n\t\t\t\t\t\t[-99.880062, 45.941670],\n\t\t\t\t\t\t[-99.838680, 45.941293],\n\t\t\t\t\t\t[-99.750396, 45.940935],\n\t\t\t\t\t\t[-99.749494, 45.940956],\n\t\t\t\t\t\t[-99.749325, 45.940935],\n\t\t\t\t\t\t[-99.747870, 45.940933],\n\t\t\t\t\t\t[-99.718073, 45.940907],\n\t\t\t\t\t\t[-99.718071, 45.940907],\n\t\t\t\t\t\t[-99.717466, 45.593428],\n\t\t\t\t\t\t[-100.430079, 45.594823]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29209\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"209\",\n\t\t\t\t\"NAME\": \"Stone\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 464.033000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.610126, 36.995810],\n\t\t\t\t\t\t[-93.337451, 36.992494],\n\t\t\t\t\t\t[-93.342041, 36.817301],\n\t\t\t\t\t\t[-93.304359, 36.816866],\n\t\t\t\t\t\t[-93.315324, 36.498408],\n\t\t\t\t\t\t[-93.315337, 36.498408],\n\t\t\t\t\t\t[-93.394718, 36.498519],\n\t\t\t\t\t\t[-93.396079, 36.498669],\n\t\t\t\t\t\t[-93.426989, 36.498585],\n\t\t\t\t\t\t[-93.507408, 36.498911],\n\t\t\t\t\t\t[-93.514512, 36.498881],\n\t\t\t\t\t\t[-93.584281, 36.498896],\n\t\t\t\t\t\t[-93.584282, 36.498896],\n\t\t\t\t\t\t[-93.573800, 36.820032],\n\t\t\t\t\t\t[-93.611003, 36.922831],\n\t\t\t\t\t\t[-93.610126, 36.995810]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29217\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"217\",\n\t\t\t\t\"NAME\": \"Vernon\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 826.398000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.614055, 38.060056],\n\t\t\t\t\t\t[-94.058285, 38.036627],\n\t\t\t\t\t\t[-94.065675, 37.900987],\n\t\t\t\t\t\t[-94.073524, 37.639722],\n\t\t\t\t\t\t[-94.617575, 37.653577],\n\t\t\t\t\t\t[-94.617576, 37.653671],\n\t\t\t\t\t\t[-94.617734, 37.673105],\n\t\t\t\t\t\t[-94.617734, 37.673127],\n\t\t\t\t\t\t[-94.617885, 37.682214],\n\t\t\t\t\t\t[-94.617687, 37.686653],\n\t\t\t\t\t\t[-94.617651, 37.687671],\n\t\t\t\t\t\t[-94.617805, 37.690178],\n\t\t\t\t\t\t[-94.617975, 37.722176],\n\t\t\t\t\t\t[-94.617808, 37.729707],\n\t\t\t\t\t\t[-94.616862, 37.819456],\n\t\t\t\t\t\t[-94.616450, 37.837560],\n\t\t\t\t\t\t[-94.616426, 37.845282],\n\t\t\t\t\t\t[-94.616000, 37.863126],\n\t\t\t\t\t\t[-94.615834, 37.872510],\n\t\t\t\t\t\t[-94.615921, 37.878331],\n\t\t\t\t\t\t[-94.615706, 37.886843],\n\t\t\t\t\t\t[-94.615469, 37.901775],\n\t\t\t\t\t\t[-94.615393, 37.906392],\n\t\t\t\t\t\t[-94.615181, 37.915944],\n\t\t\t\t\t\t[-94.614778, 37.934200],\n\t\t\t\t\t\t[-94.614835, 37.936700],\n\t\t\t\t\t\t[-94.614754, 37.940769],\n\t\t\t\t\t\t[-94.614612, 37.944362],\n\t\t\t\t\t\t[-94.614594, 37.949978],\n\t\t\t\t\t\t[-94.614562, 37.951517],\n\t\t\t\t\t\t[-94.614557, 37.971037],\n\t\t\t\t\t\t[-94.614465, 37.987799],\n\t\t\t\t\t\t[-94.614212, 37.992462],\n\t\t\t\t\t\t[-94.613981, 38.036949],\n\t\t\t\t\t\t[-94.613981, 38.037057],\n\t\t\t\t\t\t[-94.614055, 38.060056]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29227\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"227\",\n\t\t\t\t\"NAME\": \"Worth\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 266.613000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.214278, 40.384254],\n\t\t\t\t\t\t[-94.598487, 40.386714],\n\t\t\t\t\t\t[-94.632035, 40.571186],\n\t\t\t\t\t\t[-94.632032, 40.571186],\n\t\t\t\t\t\t[-94.594001, 40.570966],\n\t\t\t\t\t\t[-94.542154, 40.570809],\n\t\t\t\t\t\t[-94.541828, 40.570809],\n\t\t\t\t\t\t[-94.538318, 40.570763],\n\t\t\t\t\t\t[-94.537058, 40.570763],\n\t\t\t\t\t\t[-94.533878, 40.570739],\n\t\t\t\t\t\t[-94.489280, 40.570707],\n\t\t\t\t\t\t[-94.471213, 40.570825],\n\t\t\t\t\t\t[-94.470648, 40.570830],\n\t\t\t\t\t\t[-94.460088, 40.570947],\n\t\t\t\t\t\t[-94.429725, 40.571041],\n\t\t\t\t\t\t[-94.358307, 40.571363],\n\t\t\t\t\t\t[-94.336706, 40.571452],\n\t\t\t\t\t\t[-94.336556, 40.571475],\n\t\t\t\t\t\t[-94.324765, 40.571477],\n\t\t\t\t\t\t[-94.310724, 40.571524],\n\t\t\t\t\t\t[-94.294813, 40.571341],\n\t\t\t\t\t\t[-94.287350, 40.571521],\n\t\t\t\t\t\t[-94.232240, 40.571907],\n\t\t\t\t\t\t[-94.214278, 40.384254]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30001\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"001\",\n\t\t\t\t\"NAME\": \"Beaverhead\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 5541.624000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-112.831340, 44.381660],\n\t\t\t\t\t\t[-112.849266, 44.371038],\n\t\t\t\t\t\t[-112.875822, 44.374357],\n\t\t\t\t\t\t[-112.970300, 44.426933],\n\t\t\t\t\t\t[-113.003544, 44.450814],\n\t\t\t\t\t\t[-113.027147, 44.495915],\n\t\t\t\t\t\t[-113.056770, 44.618657],\n\t\t\t\t\t\t[-113.053529, 44.621187],\n\t\t\t\t\t\t[-113.049349, 44.629380],\n\t\t\t\t\t\t[-113.051504, 44.636950],\n\t\t\t\t\t\t[-113.101082, 44.718832],\n\t\t\t\t\t\t[-113.134617, 44.763149],\n\t\t\t\t\t\t[-113.158206, 44.780847],\n\t\t\t\t\t\t[-113.207878, 44.808040],\n\t\t\t\t\t\t[-113.247166, 44.822950],\n\t\t\t\t\t\t[-113.278382, 44.812706],\n\t\t\t\t\t\t[-113.329491, 44.788645],\n\t\t\t\t\t\t[-113.341704, 44.784853],\n\t\t\t\t\t\t[-113.353631, 44.791395],\n\t\t\t\t\t\t[-113.455071, 44.865424],\n\t\t\t\t\t\t[-113.475838, 44.894648],\n\t\t\t\t\t\t[-113.498745, 44.942314],\n\t\t\t\t\t\t[-113.494446, 44.948597],\n\t\t\t\t\t\t[-113.480836, 44.950310],\n\t\t\t\t\t\t[-113.472715, 44.948123],\n\t\t\t\t\t\t[-113.447199, 44.971924],\n\t\t\t\t\t\t[-113.445915, 44.979918],\n\t\t\t\t\t\t[-113.445751, 45.018351],\n\t\t\t\t\t\t[-113.449349, 45.045745],\n\t\t\t\t\t\t[-113.463961, 45.063194],\n\t\t\t\t\t\t[-113.473770, 45.061700],\n\t\t\t\t\t\t[-113.485278, 45.063519],\n\t\t\t\t\t\t[-113.576453, 45.130311],\n\t\t\t\t\t\t[-113.576360, 45.133771],\n\t\t\t\t\t\t[-113.566179, 45.143120],\n\t\t\t\t\t\t[-113.565979, 45.149335],\n\t\t\t\t\t\t[-113.599506, 45.191114],\n\t\t\t\t\t\t[-113.650064, 45.234710],\n\t\t\t\t\t\t[-113.674409, 45.249411],\n\t\t\t\t\t\t[-113.738729, 45.329741],\n\t\t\t\t\t\t[-113.760924, 45.406501],\n\t\t\t\t\t\t[-113.774156, 45.465372],\n\t\t\t\t\t\t[-113.765760, 45.483228],\n\t\t\t\t\t\t[-113.772915, 45.512322],\n\t\t\t\t\t\t[-113.786269, 45.521385],\n\t\t\t\t\t\t[-113.810117, 45.530924],\n\t\t\t\t\t\t[-113.813456, 45.550002],\n\t\t\t\t\t\t[-113.802009, 45.579096],\n\t\t\t\t\t\t[-113.804871, 45.589112],\n\t\t\t\t\t\t[-113.813933, 45.600559],\n\t\t\t\t\t\t[-113.835396, 45.612960],\n\t\t\t\t\t\t[-113.896681, 45.641451],\n\t\t\t\t\t\t[-113.934220, 45.682232],\n\t\t\t\t\t\t[-113.942600, 45.686362],\n\t\t\t\t\t\t[-113.697639, 45.843545],\n\t\t\t\t\t\t[-113.532405, 45.878353],\n\t\t\t\t\t\t[-113.516338, 45.938638],\n\t\t\t\t\t\t[-113.501295, 45.940807],\n\t\t\t\t\t\t[-113.395063, 45.766490],\n\t\t\t\t\t\t[-113.179791, 45.885009],\n\t\t\t\t\t\t[-113.085474, 45.860586],\n\t\t\t\t\t\t[-112.759339, 45.748209],\n\t\t\t\t\t\t[-112.687054, 45.624854],\n\t\t\t\t\t\t[-112.691417, 45.483518],\n\t\t\t\t\t\t[-112.628609, 45.440586],\n\t\t\t\t\t\t[-112.505346, 45.443048],\n\t\t\t\t\t\t[-112.457744, 45.349963],\n\t\t\t\t\t\t[-112.456847, 45.088574],\n\t\t\t\t\t\t[-112.333813, 45.088463],\n\t\t\t\t\t\t[-112.334258, 45.000616],\n\t\t\t\t\t\t[-112.191197, 45.000439],\n\t\t\t\t\t\t[-112.167103, 44.826722],\n\t\t\t\t\t\t[-112.065678, 44.825985],\n\t\t\t\t\t\t[-112.065870, 44.783752],\n\t\t\t\t\t\t[-111.781812, 44.781129],\n\t\t\t\t\t\t[-111.781713, 44.708848],\n\t\t\t\t\t\t[-111.481536, 44.709186],\n\t\t\t\t\t\t[-111.489008, 44.705553],\n\t\t\t\t\t\t[-111.516588, 44.643707],\n\t\t\t\t\t\t[-111.525764, 44.604883],\n\t\t\t\t\t\t[-111.601249, 44.554210],\n\t\t\t\t\t\t[-111.617502, 44.553035],\n\t\t\t\t\t\t[-111.631505, 44.552022],\n\t\t\t\t\t\t[-111.704218, 44.560205],\n\t\t\t\t\t\t[-111.737191, 44.543060],\n\t\t\t\t\t\t[-111.806528, 44.515459],\n\t\t\t\t\t\t[-111.843295, 44.528225],\n\t\t\t\t\t\t[-111.849293, 44.539837],\n\t\t\t\t\t\t[-111.870504, 44.564033],\n\t\t\t\t\t\t[-111.947941, 44.556776],\n\t\t\t\t\t\t[-112.078471, 44.533551],\n\t\t\t\t\t\t[-112.187115, 44.534452],\n\t\t\t\t\t\t[-112.221698, 44.543519],\n\t\t\t\t\t\t[-112.229477, 44.549494],\n\t\t\t\t\t\t[-112.235864, 44.555194],\n\t\t\t\t\t\t[-112.246665, 44.561010],\n\t\t\t\t\t\t[-112.258297, 44.564334],\n\t\t\t\t\t\t[-112.274083, 44.564334],\n\t\t\t\t\t\t[-112.299009, 44.559348],\n\t\t\t\t\t\t[-112.339721, 44.538577],\n\t\t\t\t\t\t[-112.347199, 44.520298],\n\t\t\t\t\t\t[-112.356600, 44.493127],\n\t\t\t\t\t\t[-112.358926, 44.486280],\n\t\t\t\t\t\t[-112.371294, 44.472108],\n\t\t\t\t\t\t[-112.387080, 44.460476],\n\t\t\t\t\t\t[-112.410345, 44.462968],\n\t\t\t\t\t\t[-112.473207, 44.480027],\n\t\t\t\t\t\t[-112.544224, 44.483763],\n\t\t\t\t\t\t[-112.688160, 44.498850],\n\t\t\t\t\t\t[-112.719110, 44.504344],\n\t\t\t\t\t\t[-112.781294, 44.484888],\n\t\t\t\t\t\t[-112.812087, 44.451370],\n\t\t\t\t\t\t[-112.822046, 44.434109],\n\t\t\t\t\t\t[-112.822046, 44.420831],\n\t\t\t\t\t\t[-112.823373, 44.406225],\n\t\t\t\t\t\t[-112.824701, 44.393611],\n\t\t\t\t\t\t[-112.829247, 44.385427],\n\t\t\t\t\t\t[-112.831340, 44.381660]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37171\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"171\",\n\t\t\t\t\"NAME\": \"Surry\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 532.166000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.837954, 36.559131],\n\t\t\t\t\t\t[-80.837641, 36.559118],\n\t\t\t\t\t\t[-80.837089, 36.559154],\n\t\t\t\t\t\t[-80.744101, 36.561686],\n\t\t\t\t\t\t[-80.687539, 36.561411],\n\t\t\t\t\t\t[-80.612158, 36.558127],\n\t\t\t\t\t\t[-80.440100, 36.550630],\n\t\t\t\t\t\t[-80.451954, 36.261635],\n\t\t\t\t\t\t[-80.452379, 36.241957],\n\t\t\t\t\t\t[-80.452452, 36.241356],\n\t\t\t\t\t\t[-80.452319, 36.241222],\n\t\t\t\t\t\t[-80.547478, 36.285246],\n\t\t\t\t\t\t[-80.652865, 36.252571],\n\t\t\t\t\t\t[-80.873259, 36.236383],\n\t\t\t\t\t\t[-80.868871, 36.326516],\n\t\t\t\t\t\t[-80.967066, 36.401600],\n\t\t\t\t\t\t[-80.974619, 36.452846],\n\t\t\t\t\t\t[-80.901836, 36.561754],\n\t\t\t\t\t\t[-80.901726, 36.561751],\n\t\t\t\t\t\t[-80.837954, 36.559131]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37177\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"177\",\n\t\t\t\t\"NAME\": \"Tyrrell\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 389.035000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.045987, 35.666117],\n\t\t\t\t\t\t[-76.143577, 35.702741],\n\t\t\t\t\t\t[-76.214298, 35.597993],\n\t\t\t\t\t\t[-76.297845, 35.609052],\n\t\t\t\t\t\t[-76.269325, 35.690722],\n\t\t\t\t\t\t[-76.395283, 35.697469],\n\t\t\t\t\t\t[-76.405993, 35.785045],\n\t\t\t\t\t\t[-76.353444, 35.861353],\n\t\t\t\t\t\t[-76.365210, 35.944697],\n\t\t\t\t\t\t[-76.362966, 35.942197],\n\t\t\t\t\t\t[-76.340327, 35.943250],\n\t\t\t\t\t\t[-76.317687, 35.946935],\n\t\t\t\t\t\t[-76.272408, 35.972734],\n\t\t\t\t\t\t[-76.213966, 35.988002],\n\t\t\t\t\t\t[-76.176585, 35.993267],\n\t\t\t\t\t\t[-76.093697, 35.993001],\n\t\t\t\t\t\t[-76.083131, 35.989845],\n\t\t\t\t\t\t[-76.062071, 35.993004],\n\t\t\t\t\t\t[-76.024162, 35.970891],\n\t\t\t\t\t\t[-76.014685, 35.960361],\n\t\t\t\t\t\t[-76.014159, 35.957202],\n\t\t\t\t\t\t[-76.019950, 35.934036],\n\t\t\t\t\t\t[-76.011526, 35.914029],\n\t\t\t\t\t\t[-76.004682, 35.905078],\n\t\t\t\t\t\t[-75.999386, 35.903521],\n\t\t\t\t\t\t[-76.045987, 35.666117]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39067\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"067\",\n\t\t\t\t\"NAME\": \"Harrison\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 402.339000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.035504, 40.164874],\n\t\t\t\t\t\t[-81.225924, 40.170075],\n\t\t\t\t\t\t[-81.339565, 40.171999],\n\t\t\t\t\t\t[-81.338057, 40.214253],\n\t\t\t\t\t\t[-81.334601, 40.304316],\n\t\t\t\t\t\t[-81.275319, 40.303434],\n\t\t\t\t\t\t[-81.269951, 40.433486],\n\t\t\t\t\t\t[-80.941911, 40.424700],\n\t\t\t\t\t\t[-80.865504, 40.422929],\n\t\t\t\t\t\t[-80.882892, 40.159495],\n\t\t\t\t\t\t[-81.035504, 40.164874]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39073\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"073\",\n\t\t\t\t\"NAME\": \"Hocking\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 421.323000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.374531, 39.654959],\n\t\t\t\t\t\t[-82.379890, 39.596738],\n\t\t\t\t\t\t[-82.159161, 39.556574],\n\t\t\t\t\t\t[-82.167379, 39.466307],\n\t\t\t\t\t\t[-82.280410, 39.472906],\n\t\t\t\t\t\t[-82.289663, 39.384195],\n\t\t\t\t\t\t[-82.514479, 39.395767],\n\t\t\t\t\t\t[-82.517580, 39.369468],\n\t\t\t\t\t\t[-82.748591, 39.368165],\n\t\t\t\t\t\t[-82.740771, 39.466029],\n\t\t\t\t\t\t[-82.740729, 39.468350],\n\t\t\t\t\t\t[-82.731518, 39.554445],\n\t\t\t\t\t\t[-82.620088, 39.563987],\n\t\t\t\t\t\t[-82.617546, 39.608605],\n\t\t\t\t\t\t[-82.496123, 39.602849],\n\t\t\t\t\t\t[-82.490329, 39.661704],\n\t\t\t\t\t\t[-82.374531, 39.654959]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39079\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"079\",\n\t\t\t\t\"NAME\": \"Jackson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 420.304000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.785891, 39.168769],\n\t\t\t\t\t\t[-82.766692, 39.167768],\n\t\t\t\t\t\t[-82.762892, 39.207967],\n\t\t\t\t\t\t[-82.536306, 39.180757],\n\t\t\t\t\t\t[-82.424677, 39.137972],\n\t\t\t\t\t\t[-82.435309, 39.035079],\n\t\t\t\t\t\t[-82.455179, 38.844577],\n\t\t\t\t\t\t[-82.575583, 38.844478],\n\t\t\t\t\t\t[-82.625022, 38.847540],\n\t\t\t\t\t\t[-82.626045, 38.847647],\n\t\t\t\t\t\t[-82.650039, 38.849073],\n\t\t\t\t\t\t[-82.760690, 38.854875],\n\t\t\t\t\t\t[-82.753391, 38.945373],\n\t\t\t\t\t\t[-82.807090, 38.948073],\n\t\t\t\t\t\t[-82.785891, 39.168769]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48057\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"057\",\n\t\t\t\t\"NAME\": \"Calhoun\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 506.840000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-96.655528, 28.704167],\n\t\t\t\t\t\t\t[-96.664534, 28.696904],\n\t\t\t\t\t\t\t[-96.657918, 28.687744],\n\t\t\t\t\t\t\t[-96.635018, 28.668914],\n\t\t\t\t\t\t\t[-96.634000, 28.654665],\n\t\t\t\t\t\t\t[-96.627893, 28.650085],\n\t\t\t\t\t\t\t[-96.623313, 28.649576],\n\t\t\t\t\t\t\t[-96.615679, 28.644487],\n\t\t\t\t\t\t\t[-96.610590, 28.638889],\n\t\t\t\t\t\t\t[-96.610590, 28.636344],\n\t\t\t\t\t\t\t[-96.619750, 28.627693],\n\t\t\t\t\t\t\t[-96.622804, 28.622095],\n\t\t\t\t\t\t\t[-96.611099, 28.585962],\n\t\t\t\t\t\t\t[-96.608045, 28.583418],\n\t\t\t\t\t\t\t[-96.573949, 28.584436],\n\t\t\t\t\t\t\t[-96.565297, 28.582400],\n\t\t\t\t\t\t\t[-96.564279, 28.576293],\n\t\t\t\t\t\t\t[-96.561226, 28.570695],\n\t\t\t\t\t\t\t[-96.536289, 28.559499],\n\t\t\t\t\t\t\t[-96.526111, 28.557972],\n\t\t\t\t\t\t\t[-96.522040, 28.554410],\n\t\t\t\t\t\t\t[-96.514406, 28.535071],\n\t\t\t\t\t\t\t[-96.505755, 28.525911],\n\t\t\t\t\t\t\t[-96.450284, 28.490796],\n\t\t\t\t\t\t\t[-96.419749, 28.467387],\n\t\t\t\t\t\t\t[-96.410589, 28.459244],\n\t\t\t\t\t\t\t[-96.402446, 28.449066],\n\t\t\t\t\t\t\t[-96.403973, 28.442450],\n\t\t\t\t\t\t\t[-96.461480, 28.421585],\n\t\t\t\t\t\t\t[-96.481836, 28.407844],\n\t\t\t\t\t\t\t[-96.504737, 28.397666],\n\t\t\t\t\t\t\t[-96.520513, 28.394104],\n\t\t\t\t\t\t\t[-96.542905, 28.385452],\n\t\t\t\t\t\t\t[-96.559699, 28.377819],\n\t\t\t\t\t\t\t[-96.570386, 28.368658],\n\t\t\t\t\t\t\t[-96.591760, 28.357462],\n\t\t\t\t\t\t\t[-96.600412, 28.354409],\n\t\t\t\t\t\t\t[-96.650794, 28.346775],\n\t\t\t\t\t\t\t[-96.672677, 28.335579],\n\t\t\t\t\t\t\t[-96.688453, 28.347284],\n\t\t\t\t\t\t\t[-96.694560, 28.347284],\n\t\t\t\t\t\t\t[-96.698122, 28.342704],\n\t\t\t\t\t\t\t[-96.705247, 28.348811],\n\t\t\t\t\t\t\t[-96.700158, 28.369676],\n\t\t\t\t\t\t\t[-96.705756, 28.400211],\n\t\t\t\t\t\t\t[-96.710336, 28.406827],\n\t\t\t\t\t\t\t[-96.722550, 28.408862],\n\t\t\t\t\t\t\t[-96.749013, 28.408862],\n\t\t\t\t\t\t\t[-96.762245, 28.411916],\n\t\t\t\t\t\t\t[-96.766960, 28.410737],\n\t\t\t\t\t\t\t[-96.890951, 28.507178],\n\t\t\t\t\t\t\t[-96.930367, 28.586728],\n\t\t\t\t\t\t\t[-96.853757, 28.635199],\n\t\t\t\t\t\t\t[-96.655528, 28.704167]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-96.323522, 28.675597],\n\t\t\t\t\t\t\t[-96.322921, 28.641860],\n\t\t\t\t\t\t\t[-96.328655, 28.640924],\n\t\t\t\t\t\t\t[-96.373439, 28.626675],\n\t\t\t\t\t\t\t[-96.376492, 28.620059],\n\t\t\t\t\t\t\t[-96.384635, 28.615988],\n\t\t\t\t\t\t\t[-96.473694, 28.573240],\n\t\t\t\t\t\t\t[-96.487943, 28.569677],\n\t\t\t\t\t\t\t[-96.482854, 28.580364],\n\t\t\t\t\t\t\t[-96.480309, 28.596649],\n\t\t\t\t\t\t\t[-96.485907, 28.607845],\n\t\t\t\t\t\t\t[-96.490488, 28.610899],\n\t\t\t\t\t\t\t[-96.510844, 28.614970],\n\t\t\t\t\t\t\t[-96.510335, 28.617515],\n\t\t\t\t\t\t\t[-96.497612, 28.625148],\n\t\t\t\t\t\t\t[-96.496595, 28.630746],\n\t\t\t\t\t\t\t[-96.499648, 28.635835],\n\t\t\t\t\t\t\t[-96.506264, 28.638380],\n\t\t\t\t\t\t\t[-96.545450, 28.645505],\n\t\t\t\t\t\t\t[-96.555119, 28.646013],\n\t\t\t\t\t\t\t[-96.563262, 28.644487],\n\t\t\t\t\t\t\t[-96.572931, 28.667897],\n\t\t\t\t\t\t\t[-96.570386, 28.674003],\n\t\t\t\t\t\t\t[-96.559190, 28.687235],\n\t\t\t\t\t\t\t[-96.559699, 28.691306],\n\t\t\t\t\t\t\t[-96.561226, 28.696395],\n\t\t\t\t\t\t\t[-96.566824, 28.697922],\n\t\t\t\t\t\t\t[-96.575141, 28.702837],\n\t\t\t\t\t\t\t[-96.428394, 28.703523],\n\t\t\t\t\t\t\t[-96.323522, 28.675597]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-96.830030, 28.111842],\n\t\t\t\t\t\t\t[-96.827049, 28.112417],\n\t\t\t\t\t\t\t[-96.816574, 28.119618],\n\t\t\t\t\t\t\t[-96.810420, 28.126034],\n\t\t\t\t\t\t\t[-96.810944, 28.136378],\n\t\t\t\t\t\t\t[-96.816836, 28.158048],\n\t\t\t\t\t\t\t[-96.820315, 28.163494],\n\t\t\t\t\t\t\t[-96.822859, 28.167476],\n\t\t\t\t\t\t\t[-96.818656, 28.172280],\n\t\t\t\t\t\t\t[-96.816443, 28.174808],\n\t\t\t\t\t\t\t[-96.791958, 28.188687],\n\t\t\t\t\t\t\t[-96.733037, 28.190913],\n\t\t\t\t\t\t\t[-96.703838, 28.198246],\n\t\t\t\t\t\t\t[-96.697422, 28.202959],\n\t\t\t\t\t\t\t[-96.702659, 28.211208],\n\t\t\t\t\t\t\t[-96.703314, 28.216446],\n\t\t\t\t\t\t\t[-96.686816, 28.218410],\n\t\t\t\t\t\t\t[-96.662462, 28.227314],\n\t\t\t\t\t\t\t[-96.660628, 28.228885],\n\t\t\t\t\t\t\t[-96.663116, 28.233206],\n\t\t\t\t\t\t\t[-96.651856, 28.251275],\n\t\t\t\t\t\t\t[-96.607992, 28.277070],\n\t\t\t\t\t\t\t[-96.608123, 28.280081],\n\t\t\t\t\t\t\t[-96.611527, 28.281391],\n\t\t\t\t\t\t\t[-96.610480, 28.283093],\n\t\t\t\t\t\t\t[-96.592934, 28.296972],\n\t\t\t\t\t\t\t[-96.581019, 28.302210],\n\t\t\t\t\t\t\t[-96.553260, 28.302341],\n\t\t\t\t\t\t\t[-96.546975, 28.305614],\n\t\t\t\t\t\t\t[-96.542131, 28.315958],\n\t\t\t\t\t\t\t[-96.528906, 28.322505],\n\t\t\t\t\t\t\t[-96.476269, 28.330754],\n\t\t\t\t\t\t\t[-96.450998, 28.337039],\n\t\t\t\t\t\t\t[-96.434108, 28.344764],\n\t\t\t\t\t\t\t[-96.418919, 28.354846],\n\t\t\t\t\t\t\t[-96.415253, 28.362833],\n\t\t\t\t\t\t\t[-96.417217, 28.367154],\n\t\t\t\t\t\t\t[-96.412896, 28.369511],\n\t\t\t\t\t\t\t[-96.403206, 28.371475],\n\t\t\t\t\t\t\t[-96.401242, 28.366892],\n\t\t\t\t\t\t\t[-96.397846, 28.343513],\n\t\t\t\t\t\t\t[-96.413700, 28.327343],\n\t\t\t\t\t\t\t[-96.439099, 28.319052],\n\t\t\t\t\t\t\t[-96.547774, 28.270798],\n\t\t\t\t\t\t\t[-96.621534, 28.229700],\n\t\t\t\t\t\t\t[-96.694666, 28.182120],\n\t\t\t\t\t\t\t[-96.758141, 28.136873],\n\t\t\t\t\t\t\t[-96.849624, 28.064939],\n\t\t\t\t\t\t\t[-96.853455, 28.061345],\n\t\t\t\t\t\t\t[-96.853912, 28.063699],\n\t\t\t\t\t\t\t[-96.847129, 28.070604],\n\t\t\t\t\t\t\t[-96.844083, 28.084351],\n\t\t\t\t\t\t\t[-96.837646, 28.094673],\n\t\t\t\t\t\t\t[-96.837736, 28.099491],\n\t\t\t\t\t\t\t[-96.830861, 28.108000],\n\t\t\t\t\t\t\t[-96.830030, 28.111842]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48071\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"071\",\n\t\t\t\t\"NAME\": \"Chambers\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 597.137000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.370866, 29.555070],\n\t\t\t\t\t\t[-94.371828, 29.597178],\n\t\t\t\t\t\t[-94.408992, 29.597467],\n\t\t\t\t\t\t[-94.412771, 29.572612],\n\t\t\t\t\t\t[-94.511086, 29.542971],\n\t\t\t\t\t\t[-94.522421, 29.545672],\n\t\t\t\t\t\t[-94.523743, 29.545987],\n\t\t\t\t\t\t[-94.526336, 29.552634],\n\t\t\t\t\t\t[-94.532021, 29.558379],\n\t\t\t\t\t\t[-94.541108, 29.567561],\n\t\t\t\t\t\t[-94.542532, 29.569000],\n\t\t\t\t\t\t[-94.546385, 29.572048],\n\t\t\t\t\t\t[-94.553988, 29.573882],\n\t\t\t\t\t\t[-94.570006, 29.572232],\n\t\t\t\t\t\t[-94.570593, 29.571878],\n\t\t\t\t\t\t[-94.570867, 29.571713],\n\t\t\t\t\t\t[-94.578211, 29.567281],\n\t\t\t\t\t\t[-94.593518, 29.561319],\n\t\t\t\t\t\t[-94.610147, 29.556947],\n\t\t\t\t\t\t[-94.618028, 29.554875],\n\t\t\t\t\t\t[-94.621819, 29.553878],\n\t\t\t\t\t\t[-94.621953, 29.553843],\n\t\t\t\t\t\t[-94.625890, 29.552808],\n\t\t\t\t\t\t[-94.682706, 29.539825],\n\t\t\t\t\t\t[-94.689353, 29.538306],\n\t\t\t\t\t\t[-94.691625, 29.537787],\n\t\t\t\t\t\t[-94.718276, 29.533547],\n\t\t\t\t\t\t[-94.740699, 29.525858],\n\t\t\t\t\t\t[-94.755514, 29.524776],\n\t\t\t\t\t\t[-94.757689, 29.524617],\n\t\t\t\t\t\t[-94.757788, 29.524626],\n\t\t\t\t\t\t[-94.757883, 29.524635],\n\t\t\t\t\t\t[-94.767246, 29.525523],\n\t\t\t\t\t\t[-94.768676, 29.525659],\n\t\t\t\t\t\t[-94.769418, 29.525988],\n\t\t\t\t\t\t[-94.769573, 29.526057],\n\t\t\t\t\t\t[-94.770840, 29.526618],\n\t\t\t\t\t\t[-94.774571, 29.528271],\n\t\t\t\t\t\t[-94.774798, 29.528372],\n\t\t\t\t\t\t[-94.779674, 29.530533],\n\t\t\t\t\t\t[-94.779708, 29.530548],\n\t\t\t\t\t\t[-94.779831, 29.530602],\n\t\t\t\t\t\t[-94.780938, 29.531093],\n\t\t\t\t\t\t[-94.783296, 29.535314],\n\t\t\t\t\t\t[-94.784034, 29.536635],\n\t\t\t\t\t\t[-94.786512, 29.541073],\n\t\t\t\t\t\t[-94.786649, 29.541319],\n\t\t\t\t\t\t[-94.789540, 29.546494],\n\t\t\t\t\t\t[-94.790605, 29.548401],\n\t\t\t\t\t\t[-94.779439, 29.549472],\n\t\t\t\t\t\t[-94.771053, 29.548439],\n\t\t\t\t\t\t[-94.755237, 29.562782],\n\t\t\t\t\t\t[-94.734626, 29.584046],\n\t\t\t\t\t\t[-94.708741, 29.625226],\n\t\t\t\t\t\t[-94.693154, 29.694453],\n\t\t\t\t\t\t[-94.692434, 29.703610],\n\t\t\t\t\t\t[-94.695317, 29.723052],\n\t\t\t\t\t\t[-94.724616, 29.774766],\n\t\t\t\t\t\t[-94.735271, 29.785433],\n\t\t\t\t\t\t[-94.740919, 29.787081],\n\t\t\t\t\t\t[-94.771512, 29.773889],\n\t\t\t\t\t\t[-94.792238, 29.767433],\n\t\t\t\t\t\t[-94.816085, 29.756710],\n\t\t\t\t\t\t[-94.851108, 29.721373],\n\t\t\t\t\t\t[-94.865007, 29.695337],\n\t\t\t\t\t\t[-94.867438, 29.678768],\n\t\t\t\t\t\t[-94.872551, 29.671250],\n\t\t\t\t\t\t[-94.893107, 29.661336],\n\t\t\t\t\t\t[-94.915413, 29.656614],\n\t\t\t\t\t\t[-94.921318, 29.658178],\n\t\t\t\t\t\t[-94.931154, 29.673874],\n\t\t\t\t\t\t[-94.908654, 29.825181],\n\t\t\t\t\t\t[-94.981460, 29.884276],\n\t\t\t\t\t\t[-94.442235, 29.889538],\n\t\t\t\t\t\t[-94.357976, 29.887464],\n\t\t\t\t\t\t[-94.354163, 29.561459],\n\t\t\t\t\t\t[-94.370866, 29.555070]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48093\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"093\",\n\t\t\t\t\"NAME\": \"Comanche\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 937.754000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.463736, 31.683989],\n\t\t\t\t\t\t[-98.492802, 31.723608],\n\t\t\t\t\t\t[-98.668441, 31.700514],\n\t\t\t\t\t\t[-98.924401, 32.078018],\n\t\t\t\t\t\t[-98.660316, 32.204408],\n\t\t\t\t\t\t[-98.551158, 32.261436],\n\t\t\t\t\t\t[-98.327499, 31.941261],\n\t\t\t\t\t\t[-98.251211, 31.980127],\n\t\t\t\t\t\t[-98.208386, 31.917511],\n\t\t\t\t\t\t[-98.156568, 31.841713],\n\t\t\t\t\t\t[-98.463736, 31.683989]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48097\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"097\",\n\t\t\t\t\"NAME\": \"Cooke\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 874.759000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.051253, 33.419950],\n\t\t\t\t\t\t[-97.383095, 33.430450],\n\t\t\t\t\t\t[-97.383015, 33.432890],\n\t\t\t\t\t\t[-97.487065, 33.433681],\n\t\t\t\t\t\t[-97.484071, 33.915680],\n\t\t\t\t\t\t[-97.458069, 33.901635],\n\t\t\t\t\t\t[-97.450954, 33.891398],\n\t\t\t\t\t\t[-97.451469, 33.870930],\n\t\t\t\t\t\t[-97.457617, 33.855126],\n\t\t\t\t\t\t[-97.461486, 33.849560],\n\t\t\t\t\t\t[-97.462857, 33.841772],\n\t\t\t\t\t\t[-97.459068, 33.834581],\n\t\t\t\t\t\t[-97.453057, 33.828536],\n\t\t\t\t\t\t[-97.444193, 33.823773],\n\t\t\t\t\t\t[-97.426493, 33.819398],\n\t\t\t\t\t\t[-97.372941, 33.819454],\n\t\t\t\t\t\t[-97.310843, 33.872461],\n\t\t\t\t\t\t[-97.226522, 33.914642],\n\t\t\t\t\t\t[-97.210921, 33.916064],\n\t\t\t\t\t\t[-97.185458, 33.900700],\n\t\t\t\t\t\t[-97.180845, 33.895204],\n\t\t\t\t\t\t[-97.166629, 33.847311],\n\t\t\t\t\t\t[-97.166824, 33.840395],\n\t\t\t\t\t\t[-97.171627, 33.835335],\n\t\t\t\t\t\t[-97.181370, 33.831375],\n\t\t\t\t\t\t[-97.194678, 33.831192],\n\t\t\t\t\t\t[-97.199700, 33.827322],\n\t\t\t\t\t\t[-97.204995, 33.818870],\n\t\t\t\t\t\t[-97.204827, 33.799908],\n\t\t\t\t\t\t[-97.172192, 33.737545],\n\t\t\t\t\t\t[-97.163149, 33.729322],\n\t\t\t\t\t\t[-97.162803, 33.729127],\n\t\t\t\t\t\t[-97.151257, 33.722608],\n\t\t\t\t\t\t[-97.137530, 33.718664],\n\t\t\t\t\t\t[-97.121102, 33.717174],\n\t\t\t\t\t\t[-97.107183, 33.721119],\n\t\t\t\t\t\t[-97.097154, 33.727809],\n\t\t\t\t\t\t[-97.092414, 33.733214],\n\t\t\t\t\t\t[-97.047972, 33.817931],\n\t\t\t\t\t\t[-97.006130, 33.861884],\n\t\t\t\t\t\t[-96.985567, 33.886522],\n\t\t\t\t\t\t[-96.972870, 33.935698],\n\t\t\t\t\t\t[-96.944611, 33.948994],\n\t\t\t\t\t\t[-96.943860, 33.416410],\n\t\t\t\t\t\t[-97.051253, 33.419950]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US24510\",\n\t\t\t\t\"STATE\": \"24\",\n\t\t\t\t\"COUNTY\": \"510\",\n\t\t\t\t\"NAME\": \"Baltimore\",\n\t\t\t\t\"LSAD\": \"city\",\n\t\t\t\t\"CENSUSAREA\": 80.944000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.618612, 39.237398],\n\t\t\t\t\t\t[-76.631132, 39.242899],\n\t\t\t\t\t\t[-76.632589, 39.243406],\n\t\t\t\t\t\t[-76.637267, 39.245648],\n\t\t\t\t\t\t[-76.639428, 39.246568],\n\t\t\t\t\t\t[-76.644212, 39.248924],\n\t\t\t\t\t\t[-76.647256, 39.250060],\n\t\t\t\t\t\t[-76.651491, 39.251983],\n\t\t\t\t\t\t[-76.653393, 39.252703],\n\t\t\t\t\t\t[-76.665567, 39.257982],\n\t\t\t\t\t\t[-76.667349, 39.258858],\n\t\t\t\t\t\t[-76.673432, 39.261281],\n\t\t\t\t\t\t[-76.678801, 39.263997],\n\t\t\t\t\t\t[-76.681644, 39.265032],\n\t\t\t\t\t\t[-76.685153, 39.266697],\n\t\t\t\t\t\t[-76.686048, 39.266885],\n\t\t\t\t\t\t[-76.688667, 39.268195],\n\t\t\t\t\t\t[-76.711054, 39.277889],\n\t\t\t\t\t\t[-76.711186, 39.354383],\n\t\t\t\t\t\t[-76.711342, 39.361225],\n\t\t\t\t\t\t[-76.711191, 39.362771],\n\t\t\t\t\t\t[-76.711313, 39.371933],\n\t\t\t\t\t\t[-76.609778, 39.372202],\n\t\t\t\t\t\t[-76.529793, 39.372058],\n\t\t\t\t\t\t[-76.529785, 39.356552],\n\t\t\t\t\t\t[-76.529786, 39.310391],\n\t\t\t\t\t\t[-76.529786, 39.308534],\n\t\t\t\t\t\t[-76.529697, 39.307717],\n\t\t\t\t\t\t[-76.529693, 39.306474],\n\t\t\t\t\t\t[-76.529743, 39.305964],\n\t\t\t\t\t\t[-76.529686, 39.305506],\n\t\t\t\t\t\t[-76.529685, 39.304661],\n\t\t\t\t\t\t[-76.529611, 39.302911],\n\t\t\t\t\t\t[-76.529775, 39.298731],\n\t\t\t\t\t\t[-76.529624, 39.298179],\n\t\t\t\t\t\t[-76.529510, 39.297180],\n\t\t\t\t\t\t[-76.529793, 39.292783],\n\t\t\t\t\t\t[-76.529708, 39.291895],\n\t\t\t\t\t\t[-76.529689, 39.290993],\n\t\t\t\t\t\t[-76.529499, 39.290168],\n\t\t\t\t\t\t[-76.529552, 39.289337],\n\t\t\t\t\t\t[-76.529681, 39.288152],\n\t\t\t\t\t\t[-76.529592, 39.284852],\n\t\t\t\t\t\t[-76.529663, 39.284203],\n\t\t\t\t\t\t[-76.529934, 39.283082],\n\t\t\t\t\t\t[-76.529787, 39.281872],\n\t\t\t\t\t\t[-76.529781, 39.273101],\n\t\t\t\t\t\t[-76.529623, 39.272307],\n\t\t\t\t\t\t[-76.529486, 39.218408],\n\t\t\t\t\t\t[-76.528587, 39.217492],\n\t\t\t\t\t\t[-76.529649, 39.216693],\n\t\t\t\t\t\t[-76.534285, 39.213208],\n\t\t\t\t\t\t[-76.534960, 39.212280],\n\t\t\t\t\t\t[-76.535885, 39.211008],\n\t\t\t\t\t\t[-76.533103, 39.207630],\n\t\t\t\t\t\t[-76.550086, 39.197207],\n\t\t\t\t\t\t[-76.582386, 39.207151],\n\t\t\t\t\t\t[-76.611695, 39.234400],\n\t\t\t\t\t\t[-76.618612, 39.237398]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US45063\",\n\t\t\t\t\"STATE\": \"45\",\n\t\t\t\t\"COUNTY\": \"063\",\n\t\t\t\t\"NAME\": \"Lexington\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 698.913000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.338961, 34.197587],\n\t\t\t\t\t\t[-81.275845, 34.097381],\n\t\t\t\t\t\t[-81.153617, 34.077950],\n\t\t\t\t\t\t[-81.059715, 34.005253],\n\t\t\t\t\t\t[-81.012330, 33.880080],\n\t\t\t\t\t\t[-81.058521, 33.747053],\n\t\t\t\t\t\t[-80.926321, 33.755583],\n\t\t\t\t\t\t[-81.042854, 33.707131],\n\t\t\t\t\t\t[-81.086803, 33.695315],\n\t\t\t\t\t\t[-81.187271, 33.652937],\n\t\t\t\t\t\t[-81.415308, 33.732161],\n\t\t\t\t\t\t[-81.522124, 33.825522],\n\t\t\t\t\t\t[-81.522860, 33.826967],\n\t\t\t\t\t\t[-81.527148, 33.829799],\n\t\t\t\t\t\t[-81.533590, 33.832154],\n\t\t\t\t\t\t[-81.534438, 33.837454],\n\t\t\t\t\t\t[-81.538291, 33.841496],\n\t\t\t\t\t\t[-81.538679, 33.844531],\n\t\t\t\t\t\t[-81.540866, 33.845608],\n\t\t\t\t\t\t[-81.542263, 33.848407],\n\t\t\t\t\t\t[-81.540865, 33.851915],\n\t\t\t\t\t\t[-81.546946, 33.858683],\n\t\t\t\t\t\t[-81.551552, 33.860657],\n\t\t\t\t\t\t[-81.554531, 33.860547],\n\t\t\t\t\t\t[-81.560733, 33.862645],\n\t\t\t\t\t\t[-81.563671, 33.865324],\n\t\t\t\t\t\t[-81.569149, 33.871845],\n\t\t\t\t\t\t[-81.571485, 33.877230],\n\t\t\t\t\t\t[-81.471972, 34.076552],\n\t\t\t\t\t\t[-81.388564, 34.080227],\n\t\t\t\t\t\t[-81.437172, 34.129963],\n\t\t\t\t\t\t[-81.338961, 34.197587]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US45067\",\n\t\t\t\t\"STATE\": \"45\",\n\t\t\t\t\"COUNTY\": \"067\",\n\t\t\t\t\"NAME\": \"Marion\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 489.227000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.544036, 34.219676],\n\t\t\t\t\t\t[-79.544040, 34.225186],\n\t\t\t\t\t\t[-79.547930, 34.230913],\n\t\t\t\t\t\t[-79.480712, 34.288081],\n\t\t\t\t\t\t[-79.380264, 34.300572],\n\t\t\t\t\t\t[-79.128165, 34.253652],\n\t\t\t\t\t\t[-79.135118, 34.241458],\n\t\t\t\t\t\t[-79.126681, 34.235362],\n\t\t\t\t\t\t[-79.339076, 33.969722],\n\t\t\t\t\t\t[-79.190264, 33.705787],\n\t\t\t\t\t\t[-79.199432, 33.710101],\n\t\t\t\t\t\t[-79.195161, 33.703438],\n\t\t\t\t\t\t[-79.208955, 33.703126],\n\t\t\t\t\t\t[-79.235068, 33.694250],\n\t\t\t\t\t\t[-79.238880, 33.694417],\n\t\t\t\t\t\t[-79.246384, 33.695347],\n\t\t\t\t\t\t[-79.249309, 33.696975],\n\t\t\t\t\t\t[-79.249581, 33.699302],\n\t\t\t\t\t\t[-79.247339, 33.700817],\n\t\t\t\t\t\t[-79.242086, 33.701515],\n\t\t\t\t\t\t[-79.240644, 33.702598],\n\t\t\t\t\t\t[-79.240279, 33.703728],\n\t\t\t\t\t\t[-79.241463, 33.705397],\n\t\t\t\t\t\t[-79.243348, 33.706114],\n\t\t\t\t\t\t[-79.244897, 33.705717],\n\t\t\t\t\t\t[-79.249770, 33.703424],\n\t\t\t\t\t\t[-79.258107, 33.702742],\n\t\t\t\t\t\t[-79.261467, 33.703617],\n\t\t\t\t\t\t[-79.267586, 33.703399],\n\t\t\t\t\t\t[-79.267863, 33.704375],\n\t\t\t\t\t\t[-79.265102, 33.706001],\n\t\t\t\t\t\t[-79.264683, 33.707364],\n\t\t\t\t\t\t[-79.265011, 33.710275],\n\t\t\t\t\t\t[-79.266927, 33.710979],\n\t\t\t\t\t\t[-79.269250, 33.710893],\n\t\t\t\t\t\t[-79.271676, 33.708557],\n\t\t\t\t\t\t[-79.273306, 33.708116],\n\t\t\t\t\t\t[-79.275057, 33.708852],\n\t\t\t\t\t\t[-79.274694, 33.711077],\n\t\t\t\t\t\t[-79.274935, 33.714319],\n\t\t\t\t\t\t[-79.271326, 33.715710],\n\t\t\t\t\t\t[-79.269411, 33.717788],\n\t\t\t\t\t\t[-79.269597, 33.719893],\n\t\t\t\t\t\t[-79.271664, 33.721855],\n\t\t\t\t\t\t[-79.278604, 33.718226],\n\t\t\t\t\t\t[-79.280518, 33.716324],\n\t\t\t\t\t\t[-79.282995, 33.715972],\n\t\t\t\t\t\t[-79.286441, 33.717597],\n\t\t\t\t\t\t[-79.287170, 33.718807],\n\t\t\t\t\t\t[-79.288312, 33.723526],\n\t\t\t\t\t\t[-79.291574, 33.728981],\n\t\t\t\t\t\t[-79.291390, 33.732392],\n\t\t\t\t\t\t[-79.289351, 33.734349],\n\t\t\t\t\t\t[-79.286157, 33.735701],\n\t\t\t\t\t\t[-79.286248, 33.737386],\n\t\t\t\t\t\t[-79.290436, 33.739116],\n\t\t\t\t\t\t[-79.293978, 33.741144],\n\t\t\t\t\t\t[-79.294366, 33.743757],\n\t\t\t\t\t\t[-79.292910, 33.747135],\n\t\t\t\t\t\t[-79.292578, 33.750167],\n\t\t\t\t\t\t[-79.293312, 33.752280],\n\t\t\t\t\t\t[-79.294779, 33.754324],\n\t\t\t\t\t\t[-79.298706, 33.757025],\n\t\t\t\t\t\t[-79.300613, 33.758830],\n\t\t\t\t\t\t[-79.304680, 33.763449],\n\t\t\t\t\t\t[-79.306679, 33.766230],\n\t\t\t\t\t\t[-79.308830, 33.771973],\n\t\t\t\t\t\t[-79.313573, 33.775846],\n\t\t\t\t\t\t[-79.316294, 33.778554],\n\t\t\t\t\t\t[-79.317041, 33.779878],\n\t\t\t\t\t\t[-79.319664, 33.785434],\n\t\t\t\t\t\t[-79.323081, 33.789247],\n\t\t\t\t\t\t[-79.320443, 33.790511],\n\t\t\t\t\t\t[-79.323988, 33.794965],\n\t\t\t\t\t\t[-79.324317, 33.799123],\n\t\t\t\t\t\t[-79.482549, 33.937537],\n\t\t\t\t\t\t[-79.515308, 34.097207],\n\t\t\t\t\t\t[-79.568984, 34.175087],\n\t\t\t\t\t\t[-79.544036, 34.219676]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US45077\",\n\t\t\t\t\"STATE\": \"45\",\n\t\t\t\t\"COUNTY\": \"077\",\n\t\t\t\t\"NAME\": \"Pickens\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 496.407000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.764464, 35.068177],\n\t\t\t\t\t\t[-82.588598, 35.073973],\n\t\t\t\t\t\t[-82.537866, 35.015696],\n\t\t\t\t\t\t[-82.486746, 34.819475],\n\t\t\t\t\t\t[-82.788664, 34.672017],\n\t\t\t\t\t\t[-82.840253, 34.623212],\n\t\t\t\t\t\t[-82.900144, 34.742440],\n\t\t\t\t\t\t[-82.915785, 34.971836],\n\t\t\t\t\t\t[-82.897499, 35.056021],\n\t\t\t\t\t\t[-82.781130, 35.084585],\n\t\t\t\t\t\t[-82.781062, 35.084492],\n\t\t\t\t\t\t[-82.777407, 35.076885],\n\t\t\t\t\t\t[-82.779116, 35.073674],\n\t\t\t\t\t\t[-82.780546, 35.069043],\n\t\t\t\t\t\t[-82.781973, 35.066817],\n\t\t\t\t\t\t[-82.764464, 35.068177]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26053\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"053\",\n\t\t\t\t\"NAME\": \"Gogebic\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1101.849000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.990885, 46.097330],\n\t\t\t\t\t\t[-89.058745, 46.124952],\n\t\t\t\t\t\t[-89.125136, 46.144531],\n\t\t\t\t\t\t[-89.161757, 46.151816],\n\t\t\t\t\t\t[-89.166887, 46.152868],\n\t\t\t\t\t\t[-89.194508, 46.157942],\n\t\t\t\t\t\t[-89.201283, 46.159426],\n\t\t\t\t\t\t[-89.203289, 46.160020],\n\t\t\t\t\t\t[-89.205657, 46.160408],\n\t\t\t\t\t\t[-89.218156, 46.162988],\n\t\t\t\t\t\t[-89.219964, 46.163319],\n\t\t\t\t\t\t[-89.276489, 46.174047],\n\t\t\t\t\t\t[-89.276883, 46.174116],\n\t\t\t\t\t\t[-89.908196, 46.296037],\n\t\t\t\t\t\t[-89.909910, 46.296402],\n\t\t\t\t\t\t[-89.929093, 46.300087],\n\t\t\t\t\t\t[-90.120489, 46.336852],\n\t\t\t\t\t\t[-90.119691, 46.359755],\n\t\t\t\t\t\t[-90.119757, 46.359748],\n\t\t\t\t\t\t[-90.134663, 46.374947],\n\t\t\t\t\t\t[-90.134656, 46.374979],\n\t\t\t\t\t\t[-90.166909, 46.439311],\n\t\t\t\t\t\t[-90.166919, 46.439851],\n\t\t\t\t\t\t[-90.177860, 46.440548],\n\t\t\t\t\t\t[-90.204572, 46.478998],\n\t\t\t\t\t\t[-90.284545, 46.518714],\n\t\t\t\t\t\t[-90.307716, 46.518392],\n\t\t\t\t\t\t[-90.313839, 46.516199],\n\t\t\t\t\t\t[-90.313894, 46.516199],\n\t\t\t\t\t\t[-90.357676, 46.540271],\n\t\t\t\t\t\t[-90.374461, 46.539212],\n\t\t\t\t\t\t[-90.400041, 46.544384],\n\t\t\t\t\t\t[-90.400429, 46.544384],\n\t\t\t\t\t\t[-90.414464, 46.557320],\n\t\t\t\t\t\t[-90.414596, 46.557320],\n\t\t\t\t\t\t[-90.418136, 46.566094],\n\t\t\t\t\t\t[-90.417943, 46.566190],\n\t\t\t\t\t\t[-90.398478, 46.575832],\n\t\t\t\t\t\t[-90.397350, 46.576391],\n\t\t\t\t\t\t[-90.397310, 46.576410],\n\t\t\t\t\t\t[-90.396772, 46.576677],\n\t\t\t\t\t\t[-90.394936, 46.577586],\n\t\t\t\t\t\t[-90.371717, 46.589088],\n\t\t\t\t\t\t[-90.355341, 46.597200],\n\t\t\t\t\t\t[-90.353284, 46.598219],\n\t\t\t\t\t\t[-90.348407, 46.600635],\n\t\t\t\t\t\t[-90.347801, 46.600842],\n\t\t\t\t\t\t[-90.327626, 46.607744],\n\t\t\t\t\t\t[-90.327604, 46.607739],\n\t\t\t\t\t\t[-90.306609, 46.602741],\n\t\t\t\t\t\t[-90.295460, 46.606998],\n\t\t\t\t\t\t[-90.284550, 46.611164],\n\t\t\t\t\t\t[-90.284189, 46.611302],\n\t\t\t\t\t\t[-90.283150, 46.611698],\n\t\t\t\t\t\t[-90.279723, 46.613007],\n\t\t\t\t\t\t[-90.278287, 46.613555],\n\t\t\t\t\t\t[-90.265294, 46.618516],\n\t\t\t\t\t\t[-90.265291, 46.618517],\n\t\t\t\t\t\t[-90.251669, 46.621454],\n\t\t\t\t\t\t[-90.250176, 46.621776],\n\t\t\t\t\t\t[-90.237609, 46.624485],\n\t\t\t\t\t\t[-90.164026, 46.645515],\n\t\t\t\t\t\t[-90.100695, 46.655132],\n\t\t\t\t\t\t[-90.045420, 46.668272],\n\t\t\t\t\t\t[-90.028392, 46.674390],\n\t\t\t\t\t\t[-89.996034, 46.693225],\n\t\t\t\t\t\t[-89.985817, 46.703190],\n\t\t\t\t\t\t[-89.973803, 46.710322],\n\t\t\t\t\t\t[-89.957101, 46.716929],\n\t\t\t\t\t\t[-89.918466, 46.740324],\n\t\t\t\t\t\t[-89.907516, 46.749870],\n\t\t\t\t\t\t[-89.892355, 46.763088],\n\t\t\t\t\t\t[-89.888687, 46.765826],\n\t\t\t\t\t\t[-89.887721, 46.765825],\n\t\t\t\t\t\t[-89.864481, 46.592765],\n\t\t\t\t\t\t[-89.740260, 46.592147],\n\t\t\t\t\t\t[-89.741460, 46.505247],\n\t\t\t\t\t\t[-89.365347, 46.505645],\n\t\t\t\t\t\t[-89.365408, 46.332963],\n\t\t\t\t\t\t[-88.990588, 46.333251],\n\t\t\t\t\t\t[-88.990885, 46.097330]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46027\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"027\",\n\t\t\t\t\"NAME\": \"Clay\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 412.185000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.805682, 43.083670],\n\t\t\t\t\t\t[-96.806213, 42.704154],\n\t\t\t\t\t\t[-96.806553, 42.703405],\n\t\t\t\t\t\t[-96.813148, 42.706397],\n\t\t\t\t\t\t[-96.906797, 42.733800],\n\t\t\t\t\t\t[-96.920494, 42.731432],\n\t\t\t\t\t\t[-96.961021, 42.738075],\n\t\t\t\t\t\t[-97.015691, 42.758697],\n\t\t\t\t\t\t[-97.026103, 42.762625],\n\t\t\t\t\t\t[-97.052180, 42.770187],\n\t\t\t\t\t\t[-97.137460, 42.782313],\n\t\t\t\t\t\t[-97.163082, 42.793385],\n\t\t\t\t\t\t[-97.160353, 42.799701],\n\t\t\t\t\t\t[-97.160543, 43.083145],\n\t\t\t\t\t\t[-96.924142, 43.083733],\n\t\t\t\t\t\t[-96.805682, 43.083670]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46031\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"031\",\n\t\t\t\t\"NAME\": \"Corson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2469.692000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.341924, 45.472904],\n\t\t\t\t\t\t[-101.261796, 45.472755],\n\t\t\t\t\t\t[-101.470190, 45.472416],\n\t\t\t\t\t\t[-101.999790, 45.472414],\n\t\t\t\t\t\t[-102.000679, 45.944515],\n\t\t\t\t\t\t[-102.000656, 45.944515],\n\t\t\t\t\t\t[-102.000425, 45.944581],\n\t\t\t\t\t\t[-101.998703, 45.944557],\n\t\t\t\t\t\t[-101.998618, 45.944556],\n\t\t\t\t\t\t[-101.992187, 45.944471],\n\t\t\t\t\t\t[-101.989501, 45.944472],\n\t\t\t\t\t\t[-101.973749, 45.944456],\n\t\t\t\t\t\t[-101.957439, 45.944484],\n\t\t\t\t\t\t[-101.886838, 45.944559],\n\t\t\t\t\t\t[-101.852642, 45.944457],\n\t\t\t\t\t\t[-101.832991, 45.944464],\n\t\t\t\t\t\t[-101.794606, 45.944397],\n\t\t\t\t\t\t[-101.790054, 45.944442],\n\t\t\t\t\t\t[-101.766177, 45.944322],\n\t\t\t\t\t\t[-101.765293, 45.944367],\n\t\t\t\t\t\t[-101.764277, 45.944412],\n\t\t\t\t\t\t[-101.758611, 45.944478],\n\t\t\t\t\t\t[-101.730069, 45.944356],\n\t\t\t\t\t\t[-101.723380, 45.944187],\n\t\t\t\t\t\t[-101.708785, 45.944348],\n\t\t\t\t\t\t[-101.681819, 45.944444],\n\t\t\t\t\t\t[-101.680574, 45.944329],\n\t\t\t\t\t\t[-101.657631, 45.944387],\n\t\t\t\t\t\t[-101.628597, 45.944293],\n\t\t\t\t\t\t[-101.562156, 45.944237],\n\t\t\t\t\t\t[-101.557276, 45.944100],\n\t\t\t\t\t\t[-101.373769, 45.944265],\n\t\t\t\t\t\t[-101.370690, 45.944198],\n\t\t\t\t\t\t[-101.365283, 45.944092],\n\t\t\t\t\t\t[-101.333871, 45.944166],\n\t\t\t\t\t\t[-101.313272, 45.944164],\n\t\t\t\t\t\t[-101.287223, 45.944107],\n\t\t\t\t\t\t[-101.271524, 45.944209],\n\t\t\t\t\t\t[-101.224006, 45.944025],\n\t\t\t\t\t\t[-101.203787, 45.943895],\n\t\t\t\t\t\t[-101.179103, 45.943896],\n\t\t\t\t\t\t[-101.175693, 45.943983],\n\t\t\t\t\t\t[-101.171074, 45.943959],\n\t\t\t\t\t\t[-101.163241, 45.943915],\n\t\t\t\t\t\t[-101.146076, 45.943842],\n\t\t\t\t\t\t[-101.142571, 45.943841],\n\t\t\t\t\t\t[-101.106826, 45.943984],\n\t\t\t\t\t\t[-101.101334, 45.943841],\n\t\t\t\t\t\t[-100.980693, 45.944068],\n\t\t\t\t\t\t[-100.976565, 45.943864],\n\t\t\t\t\t\t[-100.964411, 45.943822],\n\t\t\t\t\t\t[-100.938989, 45.943848],\n\t\t\t\t\t\t[-100.935582, 45.943757],\n\t\t\t\t\t\t[-100.890176, 45.943861],\n\t\t\t\t\t\t[-100.769751, 45.943766],\n\t\t\t\t\t\t[-100.762110, 45.943767],\n\t\t\t\t\t\t[-100.762072, 45.943803],\n\t\t\t\t\t\t[-100.750407, 45.943649],\n\t\t\t\t\t\t[-100.720865, 45.944024],\n\t\t\t\t\t\t[-100.650820, 45.943680],\n\t\t\t\t\t\t[-100.627681, 45.943642],\n\t\t\t\t\t\t[-100.511949, 45.943654],\n\t\t\t\t\t\t[-100.511793, 45.943654],\n\t\t\t\t\t\t[-100.499354, 45.943632],\n\t\t\t\t\t\t[-100.387036, 45.869142],\n\t\t\t\t\t\t[-100.309013, 45.707842],\n\t\t\t\t\t\t[-100.430079, 45.594823],\n\t\t\t\t\t\t[-100.486561, 45.536521],\n\t\t\t\t\t\t[-100.341924, 45.472904]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46047\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"047\",\n\t\t\t\t\"NAME\": \"Fall River\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1739.915000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-104.054779, 43.477815],\n\t\t\t\t\t\t[-103.935373, 43.478824],\n\t\t\t\t\t\t[-103.000785, 43.476847],\n\t\t\t\t\t\t[-103.000897, 43.000474],\n\t\t\t\t\t\t[-103.131740, 43.000783],\n\t\t\t\t\t\t[-103.132955, 43.000784],\n\t\t\t\t\t\t[-103.340829, 43.000879],\n\t\t\t\t\t\t[-103.404579, 43.000737],\n\t\t\t\t\t\t[-103.505100, 43.000770],\n\t\t\t\t\t\t[-103.505219, 43.000770],\n\t\t\t\t\t\t[-103.506151, 43.000771],\n\t\t\t\t\t\t[-103.506556, 43.000771],\n\t\t\t\t\t\t[-103.576329, 43.000807],\n\t\t\t\t\t\t[-103.576966, 43.000746],\n\t\t\t\t\t\t[-103.813939, 43.001378],\n\t\t\t\t\t\t[-103.815573, 43.001279],\n\t\t\t\t\t\t[-104.053127, 43.000585],\n\t\t\t\t\t\t[-104.053876, 43.289801],\n\t\t\t\t\t\t[-104.053884, 43.297047],\n\t\t\t\t\t\t[-104.054218, 43.304370],\n\t\t\t\t\t\t[-104.054403, 43.325914],\n\t\t\t\t\t\t[-104.054614, 43.390949],\n\t\t\t\t\t\t[-104.054766, 43.428914],\n\t\t\t\t\t\t[-104.054779, 43.477815]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46053\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"053\",\n\t\t\t\t\"NAME\": \"Gregory\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1014.957000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.534482, 43.499648],\n\t\t\t\t\t\t[-99.529121, 43.499783],\n\t\t\t\t\t\t[-99.297998, 43.499669],\n\t\t\t\t\t\t[-99.304332, 43.460386],\n\t\t\t\t\t\t[-99.152889, 43.426908],\n\t\t\t\t\t\t[-99.069285, 43.320688],\n\t\t\t\t\t\t[-98.896783, 43.246909],\n\t\t\t\t\t\t[-98.868762, 43.162009],\n\t\t\t\t\t\t[-98.773406, 43.145919],\n\t\t\t\t\t\t[-98.690460, 43.076556],\n\t\t\t\t\t\t[-98.524871, 43.039347],\n\t\t\t\t\t\t[-98.498550, 42.998560],\n\t\t\t\t\t\t[-98.565072, 42.998400],\n\t\t\t\t\t\t[-98.568936, 42.998537],\n\t\t\t\t\t\t[-98.663712, 42.998444],\n\t\t\t\t\t\t[-98.665613, 42.998536],\n\t\t\t\t\t\t[-98.742394, 42.998343],\n\t\t\t\t\t\t[-98.764378, 42.998323],\n\t\t\t\t\t\t[-98.801304, 42.998241],\n\t\t\t\t\t\t[-98.823989, 42.998310],\n\t\t\t\t\t\t[-98.899944, 42.998122],\n\t\t\t\t\t\t[-98.903154, 42.998306],\n\t\t\t\t\t\t[-98.919136, 42.998242],\n\t\t\t\t\t\t[-98.919234, 42.998241],\n\t\t\t\t\t\t[-98.962081, 42.998286],\n\t\t\t\t\t\t[-99.000370, 42.998273],\n\t\t\t\t\t\t[-99.021909, 42.998365],\n\t\t\t\t\t\t[-99.022300, 42.998237],\n\t\t\t\t\t\t[-99.080011, 42.998357],\n\t\t\t\t\t\t[-99.081880, 42.998288],\n\t\t\t\t\t\t[-99.135961, 42.998301],\n\t\t\t\t\t\t[-99.139045, 42.998508],\n\t\t\t\t\t\t[-99.151143, 42.998344],\n\t\t\t\t\t\t[-99.161388, 42.998465],\n\t\t\t\t\t\t[-99.195199, 42.998107],\n\t\t\t\t\t\t[-99.234462, 42.998281],\n\t\t\t\t\t\t[-99.254297, 42.998138],\n\t\t\t\t\t\t[-99.254454, 42.998140],\n\t\t\t\t\t\t[-99.262710, 42.998234],\n\t\t\t\t\t\t[-99.288045, 42.998152],\n\t\t\t\t\t\t[-99.347283, 42.998217],\n\t\t\t\t\t\t[-99.368628, 42.998140],\n\t\t\t\t\t\t[-99.371121, 42.998093],\n\t\t\t\t\t\t[-99.374268, 42.998047],\n\t\t\t\t\t\t[-99.395568, 42.998170],\n\t\t\t\t\t\t[-99.471353, 42.997967],\n\t\t\t\t\t\t[-99.474531, 42.998081],\n\t\t\t\t\t\t[-99.490798, 42.998143],\n\t\t\t\t\t\t[-99.494287, 42.998118],\n\t\t\t\t\t\t[-99.534049, 42.998041],\n\t\t\t\t\t\t[-99.534482, 43.499648]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27007\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"007\",\n\t\t\t\t\"NAME\": \"Beltrami\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2504.940000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.419040, 47.758929],\n\t\t\t\t\t\t[-94.416279, 47.444828],\n\t\t\t\t\t\t[-94.416387, 47.411830],\n\t\t\t\t\t\t[-94.670214, 47.410151],\n\t\t\t\t\t\t[-94.718396, 47.409542],\n\t\t\t\t\t\t[-94.760529, 47.410452],\n\t\t\t\t\t\t[-94.788930, 47.409790],\n\t\t\t\t\t\t[-94.799934, 47.409848],\n\t\t\t\t\t\t[-95.183216, 47.412773],\n\t\t\t\t\t\t[-95.193705, 47.872544],\n\t\t\t\t\t\t[-95.277834, 47.925346],\n\t\t\t\t\t\t[-95.229133, 48.019958],\n\t\t\t\t\t\t[-95.582887, 48.020557],\n\t\t\t\t\t\t[-95.592487, 48.020558],\n\t\t\t\t\t\t[-95.593788, 48.172916],\n\t\t\t\t\t\t[-95.602315, 48.538887],\n\t\t\t\t\t\t[-95.586733, 48.538533],\n\t\t\t\t\t\t[-95.342540, 48.540211],\n\t\t\t\t\t\t[-95.211966, 48.539961],\n\t\t\t\t\t\t[-95.210953, 48.365971],\n\t\t\t\t\t\t[-94.428702, 48.367333],\n\t\t\t\t\t\t[-94.425771, 48.367339],\n\t\t\t\t\t\t[-94.418543, 47.845816],\n\t\t\t\t\t\t[-94.419040, 47.758929]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27015\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"015\",\n\t\t\t\t\"NAME\": \"Brown\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 611.090000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.780630, 44.456650],\n\t\t\t\t\t\t[-94.666062, 44.394048],\n\t\t\t\t\t\t[-94.522958, 44.365391],\n\t\t\t\t\t\t[-94.371731, 44.264448],\n\t\t\t\t\t\t[-94.368850, 44.108698],\n\t\t\t\t\t\t[-94.859803, 44.108016],\n\t\t\t\t\t\t[-95.100221, 44.108034],\n\t\t\t\t\t\t[-95.108777, 44.195044],\n\t\t\t\t\t\t[-95.107480, 44.281768],\n\t\t\t\t\t\t[-94.866259, 44.282372],\n\t\t\t\t\t\t[-94.865824, 44.498218],\n\t\t\t\t\t\t[-94.780630, 44.456650]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27021\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"021\",\n\t\t\t\t\"NAME\": \"Cass\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2021.542000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.341679, 46.277705],\n\t\t\t\t\t\t[-94.424780, 46.331765],\n\t\t\t\t\t\t[-94.534724, 46.302797],\n\t\t\t\t\t\t[-94.653462, 46.348678],\n\t\t\t\t\t\t[-94.722769, 46.352321],\n\t\t\t\t\t\t[-94.731442, 46.368605],\n\t\t\t\t\t\t[-94.779121, 46.394215],\n\t\t\t\t\t\t[-94.787126, 46.803943],\n\t\t\t\t\t\t[-94.659942, 46.803716],\n\t\t\t\t\t\t[-94.670214, 47.410151],\n\t\t\t\t\t\t[-94.416387, 47.411830],\n\t\t\t\t\t\t[-94.416279, 47.444828],\n\t\t\t\t\t\t[-94.327531, 47.415844],\n\t\t\t\t\t\t[-94.095115, 47.477972],\n\t\t\t\t\t\t[-94.027858, 47.408633],\n\t\t\t\t\t\t[-94.027108, 47.352277],\n\t\t\t\t\t\t[-93.933270, 47.304639],\n\t\t\t\t\t\t[-93.774010, 47.305060],\n\t\t\t\t\t\t[-93.808820, 47.232622],\n\t\t\t\t\t\t[-93.773930, 47.211335],\n\t\t\t\t\t\t[-93.775257, 47.030418],\n\t\t\t\t\t\t[-93.776024, 46.802891],\n\t\t\t\t\t\t[-94.342895, 46.805530],\n\t\t\t\t\t\t[-94.332523, 46.279566],\n\t\t\t\t\t\t[-94.339351, 46.284649],\n\t\t\t\t\t\t[-94.341679, 46.277705]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27027\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"027\",\n\t\t\t\t\"NAME\": \"Clay\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1045.366000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.783003, 46.630405],\n\t\t\t\t\t\t[-96.783009, 46.630418],\n\t\t\t\t\t\t[-96.783014, 46.630647],\n\t\t\t\t\t\t[-96.784205, 46.686768],\n\t\t\t\t\t\t[-96.802013, 46.812464],\n\t\t\t\t\t\t[-96.767458, 46.905163],\n\t\t\t\t\t\t[-96.780258, 46.928263],\n\t\t\t\t\t\t[-96.791558, 46.934264],\n\t\t\t\t\t\t[-96.823222, 46.970861],\n\t\t\t\t\t\t[-96.824598, 46.993309],\n\t\t\t\t\t\t[-96.823180, 46.999965],\n\t\t\t\t\t\t[-96.824807, 47.124968],\n\t\t\t\t\t\t[-96.826655, 47.150539],\n\t\t\t\t\t\t[-96.194671, 47.151149],\n\t\t\t\t\t\t[-96.174108, 46.977375],\n\t\t\t\t\t\t[-96.174587, 46.717854],\n\t\t\t\t\t\t[-96.172270, 46.630709],\n\t\t\t\t\t\t[-96.280977, 46.630765],\n\t\t\t\t\t\t[-96.783003, 46.630405]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46123\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"123\",\n\t\t\t\t\"NAME\": \"Tripp\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1612.446000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.534482, 43.499648],\n\t\t\t\t\t\t[-99.534049, 42.998041],\n\t\t\t\t\t\t[-99.535375, 42.998038],\n\t\t\t\t\t\t[-99.569277, 42.997995],\n\t\t\t\t\t\t[-99.699234, 42.997880],\n\t\t\t\t\t\t[-99.701446, 42.997994],\n\t\t\t\t\t\t[-99.719177, 42.997899],\n\t\t\t\t\t\t[-99.726788, 42.997892],\n\t\t\t\t\t\t[-99.743138, 42.997912],\n\t\t\t\t\t\t[-99.768524, 42.998125],\n\t\t\t\t\t\t[-99.788247, 42.998016],\n\t\t\t\t\t\t[-99.800306, 42.997972],\n\t\t\t\t\t\t[-99.803328, 42.998064],\n\t\t\t\t\t\t[-99.809373, 42.998178],\n\t\t\t\t\t\t[-99.821868, 42.997995],\n\t\t\t\t\t\t[-99.850037, 42.998171],\n\t\t\t\t\t\t[-99.859945, 42.997962],\n\t\t\t\t\t\t[-99.869885, 42.998094],\n\t\t\t\t\t\t[-99.877697, 42.998094],\n\t\t\t\t\t\t[-99.918401, 42.998057],\n\t\t\t\t\t\t[-99.927645, 42.998113],\n\t\t\t\t\t\t[-99.950411, 42.998286],\n\t\t\t\t\t\t[-99.950921, 42.998291],\n\t\t\t\t\t\t[-99.961204, 42.998335],\n\t\t\t\t\t\t[-100.004757, 42.998392],\n\t\t\t\t\t\t[-100.027815, 42.998424],\n\t\t\t\t\t\t[-100.034389, 42.998425],\n\t\t\t\t\t\t[-100.119297, 42.998689],\n\t\t\t\t\t\t[-100.126427, 42.998710],\n\t\t\t\t\t\t[-100.126896, 42.998711],\n\t\t\t\t\t\t[-100.198412, 42.998542],\n\t\t\t\t\t\t[-100.198413, 42.998542],\n\t\t\t\t\t\t[-100.214221, 43.390321],\n\t\t\t\t\t\t[-100.230845, 43.713856],\n\t\t\t\t\t\t[-100.115169, 43.685434],\n\t\t\t\t\t\t[-100.016612, 43.706746],\n\t\t\t\t\t\t[-99.981465, 43.687119],\n\t\t\t\t\t\t[-99.837825, 43.689071],\n\t\t\t\t\t\t[-99.729978, 43.718827],\n\t\t\t\t\t\t[-99.688111, 43.759074],\n\t\t\t\t\t\t[-99.667613, 43.730241],\n\t\t\t\t\t\t[-99.656181, 43.765925],\n\t\t\t\t\t\t[-99.623587, 43.742414],\n\t\t\t\t\t\t[-99.623578, 43.499859],\n\t\t\t\t\t\t[-99.534482, 43.499648]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46135\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"135\",\n\t\t\t\t\"NAME\": \"Yankton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 521.164000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.637496, 43.168770],\n\t\t\t\t\t\t[-97.399191, 43.169419],\n\t\t\t\t\t\t[-97.160544, 43.169978],\n\t\t\t\t\t\t[-97.160543, 43.083145],\n\t\t\t\t\t\t[-97.160353, 42.799701],\n\t\t\t\t\t\t[-97.163082, 42.793385],\n\t\t\t\t\t\t[-97.190135, 42.805076],\n\t\t\t\t\t\t[-97.218269, 42.829561],\n\t\t\t\t\t\t[-97.257089, 42.853854],\n\t\t\t\t\t\t[-97.328511, 42.859501],\n\t\t\t\t\t\t[-97.423190, 42.861168],\n\t\t\t\t\t\t[-97.485376, 42.854838],\n\t\t\t\t\t\t[-97.531867, 42.850105],\n\t\t\t\t\t\t[-97.635115, 42.844984],\n\t\t\t\t\t\t[-97.637496, 43.168770]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30011\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"011\",\n\t\t\t\t\"NAME\": \"Carter\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 3340.752000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-104.040274, 45.212891],\n\t\t\t\t\t\t[-104.040128, 44.999987],\n\t\t\t\t\t\t[-104.057698, 44.997431],\n\t\t\t\t\t\t[-104.470117, 44.998453],\n\t\t\t\t\t\t[-104.470422, 44.998453],\n\t\t\t\t\t\t[-104.663882, 44.998869],\n\t\t\t\t\t\t[-104.665171, 44.998618],\n\t\t\t\t\t\t[-104.759855, 44.999066],\n\t\t\t\t\t\t[-104.765063, 44.999183],\n\t\t\t\t\t\t[-105.018240, 45.000437],\n\t\t\t\t\t\t[-105.019284, 45.000329],\n\t\t\t\t\t\t[-105.025266, 45.000290],\n\t\t\t\t\t\t[-105.038405, 45.000345],\n\t\t\t\t\t\t[-105.038235, 45.352052],\n\t\t\t\t\t\t[-104.987143, 45.352023],\n\t\t\t\t\t\t[-104.982036, 45.787009],\n\t\t\t\t\t\t[-104.939228, 45.786959],\n\t\t\t\t\t\t[-104.939396, 46.136589],\n\t\t\t\t\t\t[-104.885840, 46.136693],\n\t\t\t\t\t\t[-104.515840, 46.136344],\n\t\t\t\t\t\t[-104.516260, 46.054611],\n\t\t\t\t\t\t[-104.390290, 46.054964],\n\t\t\t\t\t\t[-104.390877, 45.970305],\n\t\t\t\t\t\t[-104.134716, 45.968946],\n\t\t\t\t\t\t[-104.134663, 45.882036],\n\t\t\t\t\t\t[-104.044030, 45.881971],\n\t\t\t\t\t\t[-104.044009, 45.871974],\n\t\t\t\t\t\t[-104.043814, 45.868385],\n\t\t\t\t\t\t[-104.041937, 45.557915],\n\t\t\t\t\t\t[-104.041647, 45.550691],\n\t\t\t\t\t\t[-104.041717, 45.539122],\n\t\t\t\t\t\t[-104.041145, 45.503367],\n\t\t\t\t\t\t[-104.041274, 45.499994],\n\t\t\t\t\t\t[-104.041764, 45.490789],\n\t\t\t\t\t\t[-104.040410, 45.393474],\n\t\t\t\t\t\t[-104.040114, 45.374214],\n\t\t\t\t\t\t[-104.040265, 45.345356],\n\t\t\t\t\t\t[-104.040358, 45.335946],\n\t\t\t\t\t\t[-104.040274, 45.212891]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30017\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"017\",\n\t\t\t\t\"NAME\": \"Custer\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 3783.362000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-104.982036, 45.787009],\n\t\t\t\t\t\t[-106.191861, 45.788600],\n\t\t\t\t\t\t[-106.191438, 46.137019],\n\t\t\t\t\t\t[-106.153268, 46.137194],\n\t\t\t\t\t\t[-106.155265, 46.483470],\n\t\t\t\t\t\t[-106.120415, 46.483591],\n\t\t\t\t\t\t[-106.120909, 46.831310],\n\t\t\t\t\t\t[-106.086335, 46.831269],\n\t\t\t\t\t\t[-106.086504, 46.845968],\n\t\t\t\t\t\t[-106.086670, 46.860264],\n\t\t\t\t\t\t[-105.617595, 46.832090],\n\t\t\t\t\t\t[-105.618076, 46.745025],\n\t\t\t\t\t\t[-105.576256, 46.744935],\n\t\t\t\t\t\t[-105.575683, 46.657889],\n\t\t\t\t\t\t[-105.491952, 46.657985],\n\t\t\t\t\t\t[-105.449006, 46.570916],\n\t\t\t\t\t\t[-105.239175, 46.570089],\n\t\t\t\t\t\t[-105.239439, 46.541005],\n\t\t\t\t\t\t[-104.984714, 46.540606],\n\t\t\t\t\t\t[-104.984754, 46.569450],\n\t\t\t\t\t\t[-104.858857, 46.569114],\n\t\t\t\t\t\t[-104.858698, 46.612479],\n\t\t\t\t\t\t[-104.732853, 46.612672],\n\t\t\t\t\t\t[-104.733077, 46.482239],\n\t\t\t\t\t\t[-104.905878, 46.482180],\n\t\t\t\t\t\t[-104.885840, 46.136693],\n\t\t\t\t\t\t[-104.939396, 46.136589],\n\t\t\t\t\t\t[-104.939228, 45.786959],\n\t\t\t\t\t\t[-104.982036, 45.787009]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30025\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"025\",\n\t\t\t\t\"NAME\": \"Fallon\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1620.772000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-104.045443, 45.945310],\n\t\t\t\t\t\t[-104.044030, 45.881975],\n\t\t\t\t\t\t[-104.044030, 45.881971],\n\t\t\t\t\t\t[-104.134663, 45.882036],\n\t\t\t\t\t\t[-104.134716, 45.968946],\n\t\t\t\t\t\t[-104.390877, 45.970305],\n\t\t\t\t\t\t[-104.390290, 46.054964],\n\t\t\t\t\t\t[-104.516260, 46.054611],\n\t\t\t\t\t\t[-104.515840, 46.136344],\n\t\t\t\t\t\t[-104.885840, 46.136693],\n\t\t\t\t\t\t[-104.905878, 46.482180],\n\t\t\t\t\t\t[-104.733077, 46.482239],\n\t\t\t\t\t\t[-104.732853, 46.612672],\n\t\t\t\t\t\t[-104.732843, 46.656264],\n\t\t\t\t\t\t[-104.607017, 46.684926],\n\t\t\t\t\t\t[-104.417782, 46.684892],\n\t\t\t\t\t\t[-104.353874, 46.641446],\n\t\t\t\t\t\t[-104.045271, 46.641443],\n\t\t\t\t\t\t[-104.045335, 46.540929],\n\t\t\t\t\t\t[-104.045462, 46.341895],\n\t\t\t\t\t\t[-104.045469, 46.324545],\n\t\t\t\t\t\t[-104.045633, 46.280188],\n\t\t\t\t\t\t[-104.046670, 46.000001],\n\t\t\t\t\t\t[-104.045443, 45.945310]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30027\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"027\",\n\t\t\t\t\"NAME\": \"Fergus\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 4339.803000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-108.891022, 47.734407],\n\t\t\t\t\t\t[-108.771619, 47.645523],\n\t\t\t\t\t\t[-108.312615, 47.583452],\n\t\t\t\t\t\t[-108.314955, 47.314908],\n\t\t\t\t\t\t[-108.590901, 47.306262],\n\t\t\t\t\t\t[-108.590492, 47.270463],\n\t\t\t\t\t\t[-108.719223, 47.270267],\n\t\t\t\t\t\t[-108.736711, 47.098196],\n\t\t\t\t\t\t[-108.608546, 47.097826],\n\t\t\t\t\t\t[-108.630950, 46.749414],\n\t\t\t\t\t\t[-109.009802, 46.750432],\n\t\t\t\t\t\t[-109.388963, 46.751009],\n\t\t\t\t\t\t[-109.389163, 46.693661],\n\t\t\t\t\t\t[-109.746006, 46.693744],\n\t\t\t\t\t\t[-109.756279, 46.780416],\n\t\t\t\t\t\t[-109.835424, 46.809133],\n\t\t\t\t\t\t[-109.755404, 46.896214],\n\t\t\t\t\t\t[-109.756905, 47.185574],\n\t\t\t\t\t\t[-109.872449, 47.185462],\n\t\t\t\t\t\t[-109.872395, 47.228976],\n\t\t\t\t\t\t[-110.000131, 47.228860],\n\t\t\t\t\t\t[-110.000337, 47.272244],\n\t\t\t\t\t\t[-110.127913, 47.272017],\n\t\t\t\t\t\t[-110.127952, 47.358973],\n\t\t\t\t\t\t[-110.213418, 47.359107],\n\t\t\t\t\t\t[-110.213293, 47.416659],\n\t\t\t\t\t\t[-110.159419, 47.415338],\n\t\t\t\t\t\t[-109.850627, 47.539301],\n\t\t\t\t\t\t[-109.836811, 47.712253],\n\t\t\t\t\t\t[-109.538454, 47.738894],\n\t\t\t\t\t\t[-109.425315, 47.720153],\n\t\t\t\t\t\t[-109.274171, 47.793239],\n\t\t\t\t\t\t[-108.942745, 47.791824],\n\t\t\t\t\t\t[-108.891022, 47.734407]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30033\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"033\",\n\t\t\t\t\"NAME\": \"Garfield\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 4675.356000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-107.908907, 47.450638],\n\t\t\t\t\t\t[-107.759310, 47.552006],\n\t\t\t\t\t\t[-107.695788, 47.628756],\n\t\t\t\t\t\t[-107.600981, 47.650011],\n\t\t\t\t\t\t[-107.450151, 47.622077],\n\t\t\t\t\t\t[-107.414886, 47.691677],\n\t\t\t\t\t\t[-107.247694, 47.661400],\n\t\t\t\t\t\t[-107.010862, 47.663140],\n\t\t\t\t\t\t[-106.891324, 47.676607],\n\t\t\t\t\t\t[-106.863822, 47.736508],\n\t\t\t\t\t\t[-106.751016, 47.729708],\n\t\t\t\t\t\t[-106.711813, 47.771809],\n\t\t\t\t\t\t[-106.609705, 47.777510],\n\t\t\t\t\t\t[-106.445793, 47.983016],\n\t\t\t\t\t\t[-106.418567, 47.957414],\n\t\t\t\t\t\t[-106.358288, 47.957216],\n\t\t\t\t\t\t[-106.358288, 47.868412],\n\t\t\t\t\t\t[-106.261082, 47.868312],\n\t\t\t\t\t\t[-106.260585, 47.529000],\n\t\t\t\t\t\t[-106.298087, 47.528900],\n\t\t\t\t\t\t[-106.298189, 47.354391],\n\t\t\t\t\t\t[-106.170675, 47.354708],\n\t\t\t\t\t\t[-106.170434, 47.180930],\n\t\t\t\t\t\t[-106.086777, 47.180938],\n\t\t\t\t\t\t[-106.086670, 46.860264],\n\t\t\t\t\t\t[-106.086504, 46.845968],\n\t\t\t\t\t\t[-106.720258, 46.845251],\n\t\t\t\t\t\t[-106.720027, 46.859603],\n\t\t\t\t\t\t[-107.466813, 46.860486],\n\t\t\t\t\t\t[-107.892117, 46.851537],\n\t\t\t\t\t\t[-107.939113, 46.876459],\n\t\t\t\t\t\t[-107.882588, 47.000151],\n\t\t\t\t\t\t[-107.919544, 47.017133],\n\t\t\t\t\t\t[-107.968483, 47.250033],\n\t\t\t\t\t\t[-107.962875, 47.354368],\n\t\t\t\t\t\t[-107.908907, 47.450638]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30039\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"039\",\n\t\t\t\t\"NAME\": \"Granite\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1727.415000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-113.827831, 46.661023],\n\t\t\t\t\t\t[-113.667225, 46.658426],\n\t\t\t\t\t\t[-113.667726, 46.716026],\n\t\t\t\t\t\t[-113.479817, 46.744929],\n\t\t\t\t\t\t[-113.479917, 46.802730],\n\t\t\t\t\t\t[-113.303005, 46.832132],\n\t\t\t\t\t\t[-113.115791, 46.713590],\n\t\t\t\t\t\t[-113.038691, 46.736132],\n\t\t\t\t\t\t[-113.036834, 46.266822],\n\t\t\t\t\t\t[-113.037160, 46.223078],\n\t\t\t\t\t\t[-113.284652, 46.222761],\n\t\t\t\t\t\t[-113.274361, 46.059484],\n\t\t\t\t\t\t[-113.517481, 45.939898],\n\t\t\t\t\t\t[-113.648219, 45.965062],\n\t\t\t\t\t\t[-113.744524, 46.048807],\n\t\t\t\t\t\t[-113.803099, 46.037300],\n\t\t\t\t\t\t[-113.753246, 46.112800],\n\t\t\t\t\t\t[-113.821129, 46.212549],\n\t\t\t\t\t\t[-113.750143, 46.272590],\n\t\t\t\t\t\t[-113.875931, 46.508576],\n\t\t\t\t\t\t[-113.813152, 46.588119],\n\t\t\t\t\t\t[-113.827831, 46.661023]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30045\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"045\",\n\t\t\t\t\"NAME\": \"Judith Basin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1869.821000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-110.639564, 47.416259],\n\t\t\t\t\t\t[-110.213293, 47.416659],\n\t\t\t\t\t\t[-110.213418, 47.359107],\n\t\t\t\t\t\t[-110.127952, 47.358973],\n\t\t\t\t\t\t[-110.127913, 47.272017],\n\t\t\t\t\t\t[-110.000337, 47.272244],\n\t\t\t\t\t\t[-110.000131, 47.228860],\n\t\t\t\t\t\t[-109.872395, 47.228976],\n\t\t\t\t\t\t[-109.872449, 47.185462],\n\t\t\t\t\t\t[-109.756905, 47.185574],\n\t\t\t\t\t\t[-109.755404, 46.896214],\n\t\t\t\t\t\t[-109.835424, 46.809133],\n\t\t\t\t\t\t[-109.756279, 46.780416],\n\t\t\t\t\t\t[-109.746006, 46.693744],\n\t\t\t\t\t\t[-109.969223, 46.752655],\n\t\t\t\t\t\t[-110.273374, 46.710640],\n\t\t\t\t\t\t[-110.457163, 46.678720],\n\t\t\t\t\t\t[-110.620062, 46.771547],\n\t\t\t\t\t\t[-110.652877, 46.823626],\n\t\t\t\t\t\t[-110.645353, 47.095735],\n\t\t\t\t\t\t[-110.772254, 47.095871],\n\t\t\t\t\t\t[-110.767125, 47.359128],\n\t\t\t\t\t\t[-110.639280, 47.358998],\n\t\t\t\t\t\t[-110.639564, 47.416259]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31131\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"131\",\n\t\t\t\t\"NAME\": \"Otoe\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 615.631000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.709974, 40.523798],\n\t\t\t\t\t\t[-96.067012, 40.523148],\n\t\t\t\t\t\t[-96.455766, 40.522803],\n\t\t\t\t\t\t[-96.463632, 40.523013],\n\t\t\t\t\t\t[-96.463764, 40.783960],\n\t\t\t\t\t\t[-95.854172, 40.784012],\n\t\t\t\t\t\t[-95.861695, 40.762871],\n\t\t\t\t\t\t[-95.872281, 40.758349],\n\t\t\t\t\t\t[-95.881529, 40.750611],\n\t\t\t\t\t\t[-95.886690, 40.742101],\n\t\t\t\t\t\t[-95.888907, 40.731855],\n\t\t\t\t\t\t[-95.883178, 40.717579],\n\t\t\t\t\t\t[-95.842801, 40.677496],\n\t\t\t\t\t\t[-95.822913, 40.667240],\n\t\t\t\t\t\t[-95.795489, 40.662384],\n\t\t\t\t\t\t[-95.786568, 40.657253],\n\t\t\t\t\t\t[-95.776251, 40.647463],\n\t\t\t\t\t\t[-95.748626, 40.603355],\n\t\t\t\t\t\t[-95.750053, 40.597052],\n\t\t\t\t\t\t[-95.753148, 40.592840],\n\t\t\t\t\t\t[-95.765645, 40.585208],\n\t\t\t\t\t\t[-95.773549, 40.578205],\n\t\t\t\t\t\t[-95.774704, 40.573574],\n\t\t\t\t\t\t[-95.769281, 40.536656],\n\t\t\t\t\t\t[-95.766920, 40.531563],\n\t\t\t\t\t\t[-95.757110, 40.525990],\n\t\t\t\t\t\t[-95.748680, 40.524275],\n\t\t\t\t\t\t[-95.709974, 40.523798]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US25005\",\n\t\t\t\t\"STATE\": \"25\",\n\t\t\t\t\"COUNTY\": \"005\",\n\t\t\t\t\"NAME\": \"Bristol\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 553.096000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-70.821001, 41.587268],\n\t\t\t\t\t\t\t[-70.821743, 41.583656],\n\t\t\t\t\t\t\t[-70.821910, 41.582841],\n\t\t\t\t\t\t\t[-70.830087, 41.585385],\n\t\t\t\t\t\t\t[-70.837632, 41.595374],\n\t\t\t\t\t\t\t[-70.838147, 41.596056],\n\t\t\t\t\t\t\t[-70.838452, 41.596460],\n\t\t\t\t\t\t\t[-70.834529, 41.602610],\n\t\t\t\t\t\t\t[-70.832044, 41.606504],\n\t\t\t\t\t\t\t[-70.831802, 41.606272],\n\t\t\t\t\t\t\t[-70.828025, 41.602666],\n\t\t\t\t\t\t\t[-70.827398, 41.602067],\n\t\t\t\t\t\t\t[-70.823735, 41.598569],\n\t\t\t\t\t\t\t[-70.820918, 41.587673],\n\t\t\t\t\t\t\t[-70.821001, 41.587268]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-70.854232, 41.618429],\n\t\t\t\t\t\t\t[-70.854211, 41.618302],\n\t\t\t\t\t\t\t[-70.853445, 41.613592],\n\t\t\t\t\t\t\t[-70.850181, 41.593529],\n\t\t\t\t\t\t\t[-70.852220, 41.589223],\n\t\t\t\t\t\t\t[-70.852488, 41.588658],\n\t\t\t\t\t\t\t[-70.852551, 41.588526],\n\t\t\t\t\t\t\t[-70.853121, 41.587321],\n\t\t\t\t\t\t\t[-70.853240, 41.587332],\n\t\t\t\t\t\t\t[-70.857239, 41.587705],\n\t\t\t\t\t\t\t[-70.862852, 41.600678],\n\t\t\t\t\t\t\t[-70.862998, 41.601014],\n\t\t\t\t\t\t\t[-70.863486, 41.602143],\n\t\t\t\t\t\t\t[-70.868501, 41.613733],\n\t\t\t\t\t\t\t[-70.868904, 41.614664],\n\t\t\t\t\t\t\t[-70.868360, 41.622664],\n\t\t\t\t\t\t\t[-70.869624, 41.625608],\n\t\t\t\t\t\t\t[-70.872665, 41.627816],\n\t\t\t\t\t\t\t[-70.879040, 41.629777],\n\t\t\t\t\t\t\t[-70.887643, 41.632422],\n\t\t\t\t\t\t\t[-70.889209, 41.632904],\n\t\t\t\t\t\t\t[-70.889260, 41.632875],\n\t\t\t\t\t\t\t[-70.889594, 41.632685],\n\t\t\t\t\t\t\t[-70.904513, 41.624205],\n\t\t\t\t\t\t\t[-70.905765, 41.623494],\n\t\t\t\t\t\t\t[-70.913202, 41.619266],\n\t\t\t\t\t\t\t[-70.904522, 41.610361],\n\t\t\t\t\t\t\t[-70.899981, 41.593504],\n\t\t\t\t\t\t\t[-70.901381, 41.592504],\n\t\t\t\t\t\t\t[-70.910814, 41.595506],\n\t\t\t\t\t\t\t[-70.916581, 41.607483],\n\t\t\t\t\t\t\t[-70.920074, 41.610810],\n\t\t\t\t\t\t\t[-70.927172, 41.611253],\n\t\t\t\t\t\t\t[-70.929722, 41.609479],\n\t\t\t\t\t\t\t[-70.930000, 41.600441],\n\t\t\t\t\t\t\t[-70.927393, 41.594064],\n\t\t\t\t\t\t\t[-70.931338, 41.584200],\n\t\t\t\t\t\t\t[-70.937978, 41.577416],\n\t\t\t\t\t\t\t[-70.941588, 41.581034],\n\t\t\t\t\t\t\t[-70.946911, 41.581089],\n\t\t\t\t\t\t\t[-70.948797, 41.579038],\n\t\t\t\t\t\t\t[-70.947300, 41.573659],\n\t\t\t\t\t\t\t[-70.937830, 41.565239],\n\t\t\t\t\t\t\t[-70.931545, 41.540169],\n\t\t\t\t\t\t\t[-70.941785, 41.540121],\n\t\t\t\t\t\t\t[-70.979225, 41.530427],\n\t\t\t\t\t\t\t[-70.983354, 41.520616],\n\t\t\t\t\t\t\t[-71.003275, 41.511912],\n\t\t\t\t\t\t\t[-71.019354, 41.508857],\n\t\t\t\t\t\t\t[-71.023523, 41.506326],\n\t\t\t\t\t\t\t[-71.035514, 41.499047],\n\t\t\t\t\t\t\t[-71.058418, 41.505967],\n\t\t\t\t\t\t\t[-71.085663, 41.509292],\n\t\t\t\t\t\t\t[-71.120570, 41.497448],\n\t\t\t\t\t\t\t[-71.133353, 41.629509],\n\t\t\t\t\t\t\t[-71.133608, 41.632152],\n\t\t\t\t\t\t\t[-71.133796, 41.634090],\n\t\t\t\t\t\t\t[-71.134484, 41.641198],\n\t\t\t\t\t\t\t[-71.134478, 41.641262],\n\t\t\t\t\t\t\t[-71.134688, 41.660502],\n\t\t\t\t\t\t\t[-71.135188, 41.660502],\n\t\t\t\t\t\t\t[-71.145870, 41.662795],\n\t\t\t\t\t\t\t[-71.153989, 41.664102],\n\t\t\t\t\t\t\t[-71.176090, 41.668102],\n\t\t\t\t\t\t\t[-71.176090, 41.668502],\n\t\t\t\t\t\t\t[-71.175990, 41.671402],\n\t\t\t\t\t\t\t[-71.181290, 41.672502],\n\t\t\t\t\t\t\t[-71.191175, 41.674292],\n\t\t\t\t\t\t\t[-71.191178, 41.674216],\n\t\t\t\t\t\t\t[-71.194390, 41.674802],\n\t\t\t\t\t\t\t[-71.195640, 41.675090],\n\t\t\t\t\t\t\t[-71.224798, 41.710498],\n\t\t\t\t\t\t\t[-71.261392, 41.752301],\n\t\t\t\t\t\t\t[-71.317790, 41.776099],\n\t\t\t\t\t\t\t[-71.317795, 41.776101],\n\t\t\t\t\t\t\t[-71.327896, 41.780501],\n\t\t\t\t\t\t\t[-71.339297, 41.806500],\n\t\t\t\t\t\t\t[-71.339597, 41.832000],\n\t\t\t\t\t\t\t[-71.337597, 41.833700],\n\t\t\t\t\t\t\t[-71.339298, 41.893399],\n\t\t\t\t\t\t\t[-71.339298, 41.893599],\n\t\t\t\t\t\t\t[-71.352699, 41.896699],\n\t\t\t\t\t\t\t[-71.354699, 41.896499],\n\t\t\t\t\t\t\t[-71.362499, 41.895599],\n\t\t\t\t\t\t\t[-71.364699, 41.895399],\n\t\t\t\t\t\t\t[-71.365399, 41.895299],\n\t\t\t\t\t\t\t[-71.370999, 41.894599],\n\t\t\t\t\t\t\t[-71.373799, 41.894399],\n\t\t\t\t\t\t\t[-71.376600, 41.893999],\n\t\t\t\t\t\t\t[-71.381700, 41.922699],\n\t\t\t\t\t\t\t[-71.381600, 41.922899],\n\t\t\t\t\t\t\t[-71.381401, 41.964799],\n\t\t\t\t\t\t\t[-71.381501, 41.966699],\n\t\t\t\t\t\t\t[-71.381466, 41.984998],\n\t\t\t\t\t\t\t[-71.364887, 41.985173],\n\t\t\t\t\t\t\t[-71.288263, 42.014379],\n\t\t\t\t\t\t\t[-71.288265, 42.014451],\n\t\t\t\t\t\t\t[-71.288265, 42.014462],\n\t\t\t\t\t\t\t[-71.168681, 42.061161],\n\t\t\t\t\t\t\t[-71.138641, 42.072761],\n\t\t\t\t\t\t\t[-71.138619, 42.072813],\n\t\t\t\t\t\t\t[-71.080192, 42.095699],\n\t\t\t\t\t\t\t[-71.054718, 41.985057],\n\t\t\t\t\t\t\t[-71.049498, 41.963150],\n\t\t\t\t\t\t\t[-70.999705, 41.929592],\n\t\t\t\t\t\t\t[-71.036570, 41.816525],\n\t\t\t\t\t\t\t[-70.921782, 41.791244],\n\t\t\t\t\t\t\t[-70.843177, 41.628487],\n\t\t\t\t\t\t\t[-70.843522, 41.628660],\n\t\t\t\t\t\t\t[-70.843528, 41.628663],\n\t\t\t\t\t\t\t[-70.844165, 41.628983],\n\t\t\t\t\t\t\t[-70.852518, 41.626919],\n\t\t\t\t\t\t\t[-70.855031, 41.624283],\n\t\t\t\t\t\t\t[-70.855162, 41.624145],\n\t\t\t\t\t\t\t[-70.854232, 41.618429]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US25009\",\n\t\t\t\t\"STATE\": \"25\",\n\t\t\t\t\"COUNTY\": \"009\",\n\t\t\t\t\"NAME\": \"Essex\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 492.563000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-71.208137, 42.743273],\n\t\t\t\t\t\t[-71.181803, 42.737590],\n\t\t\t\t\t\t[-71.186104, 42.790689],\n\t\t\t\t\t\t[-71.165603, 42.808689],\n\t\t\t\t\t\t[-71.149703, 42.815489],\n\t\t\t\t\t\t[-71.113858, 42.827865],\n\t\t\t\t\t\t[-71.058407, 42.847009],\n\t\t\t\t\t\t[-71.037901, 42.854089],\n\t\t\t\t\t\t[-70.996901, 42.864589],\n\t\t\t\t\t\t[-70.931699, 42.884189],\n\t\t\t\t\t\t[-70.930799, 42.884589],\n\t\t\t\t\t\t[-70.914899, 42.886589],\n\t\t\t\t\t\t[-70.914886, 42.886564],\n\t\t\t\t\t\t[-70.902768, 42.886530],\n\t\t\t\t\t\t[-70.886136, 42.882610],\n\t\t\t\t\t\t[-70.848625, 42.860939],\n\t\t\t\t\t\t[-70.817296, 42.872290],\n\t\t\t\t\t\t[-70.817731, 42.850613],\n\t\t\t\t\t\t[-70.805220, 42.781798],\n\t\t\t\t\t\t[-70.792867, 42.747118],\n\t\t\t\t\t\t[-70.772267, 42.711064],\n\t\t\t\t\t\t[-70.770453, 42.704824],\n\t\t\t\t\t\t[-70.778552, 42.698520],\n\t\t\t\t\t\t[-70.778671, 42.693622],\n\t\t\t\t\t\t[-70.764421, 42.685650],\n\t\t\t\t\t\t[-70.748752, 42.683878],\n\t\t\t\t\t\t[-70.744427, 42.682092],\n\t\t\t\t\t\t[-70.729820, 42.669602],\n\t\t\t\t\t\t[-70.728845, 42.663877],\n\t\t\t\t\t\t[-70.689402, 42.653319],\n\t\t\t\t\t\t[-70.682594, 42.654525],\n\t\t\t\t\t\t[-70.681594, 42.662342],\n\t\t\t\t\t\t[-70.663548, 42.677603],\n\t\t\t\t\t\t[-70.645101, 42.689423],\n\t\t\t\t\t\t[-70.630077, 42.692699],\n\t\t\t\t\t\t[-70.620031, 42.688006],\n\t\t\t\t\t\t[-70.622864, 42.675990],\n\t\t\t\t\t\t[-70.623815, 42.665481],\n\t\t\t\t\t\t[-70.622791, 42.660873],\n\t\t\t\t\t\t[-70.614820, 42.657650],\n\t\t\t\t\t\t[-70.595474, 42.660336],\n\t\t\t\t\t\t[-70.591742, 42.648508],\n\t\t\t\t\t\t[-70.591469, 42.639821],\n\t\t\t\t\t\t[-70.594014, 42.635030],\n\t\t\t\t\t\t[-70.605611, 42.634898],\n\t\t\t\t\t\t[-70.618420, 42.628640],\n\t\t\t\t\t\t[-70.635635, 42.600243],\n\t\t\t\t\t\t[-70.654727, 42.582234],\n\t\t\t\t\t\t[-70.664887, 42.580436],\n\t\t\t\t\t\t[-70.668022, 42.581732],\n\t\t\t\t\t\t[-70.668115, 42.585361],\n\t\t\t\t\t\t[-70.668488, 42.589643],\n\t\t\t\t\t\t[-70.670442, 42.592249],\n\t\t\t\t\t\t[-70.672583, 42.594296],\n\t\t\t\t\t\t[-70.675747, 42.594669],\n\t\t\t\t\t\t[-70.678819, 42.594389],\n\t\t\t\t\t\t[-70.681428, 42.593173],\n\t\t\t\t\t\t[-70.684502, 42.588858],\n\t\t\t\t\t\t[-70.698574, 42.577393],\n\t\t\t\t\t\t[-70.729688, 42.571510],\n\t\t\t\t\t\t[-70.737044, 42.576863],\n\t\t\t\t\t\t[-70.757283, 42.570455],\n\t\t\t\t\t\t[-70.804091, 42.561595],\n\t\t\t\t\t\t[-70.815391, 42.554195],\n\t\t\t\t\t\t[-70.823291, 42.551495],\n\t\t\t\t\t\t[-70.848492, 42.550195],\n\t\t\t\t\t\t[-70.871382, 42.546404],\n\t\t\t\t\t\t[-70.872357, 42.542952],\n\t\t\t\t\t\t[-70.866279, 42.522617],\n\t\t\t\t\t\t[-70.859751, 42.520441],\n\t\t\t\t\t\t[-70.857125, 42.521492],\n\t\t\t\t\t\t[-70.842091, 42.519495],\n\t\t\t\t\t\t[-70.831091, 42.503596],\n\t\t\t\t\t\t[-70.835991, 42.490496],\n\t\t\t\t\t\t[-70.841591, 42.487596],\n\t\t\t\t\t\t[-70.847391, 42.491496],\n\t\t\t\t\t\t[-70.857791, 42.490296],\n\t\t\t\t\t\t[-70.879692, 42.478796],\n\t\t\t\t\t\t[-70.886493, 42.470197],\n\t\t\t\t\t\t[-70.887992, 42.467096],\n\t\t\t\t\t\t[-70.887292, 42.464896],\n\t\t\t\t\t\t[-70.894292, 42.460896],\n\t\t\t\t\t\t[-70.908092, 42.466896],\n\t\t\t\t\t\t[-70.917693, 42.467996],\n\t\t\t\t\t\t[-70.921993, 42.466696],\n\t\t\t\t\t\t[-70.934993, 42.457896],\n\t\t\t\t\t\t[-70.934264, 42.444646],\n\t\t\t\t\t\t[-70.933155, 42.437833],\n\t\t\t\t\t\t[-70.928226, 42.430986],\n\t\t\t\t\t\t[-70.913192, 42.427697],\n\t\t\t\t\t\t[-70.908392, 42.425197],\n\t\t\t\t\t\t[-70.901992, 42.420297],\n\t\t\t\t\t\t[-70.905692, 42.416197],\n\t\t\t\t\t\t[-70.936393, 42.418097],\n\t\t\t\t\t\t[-70.943295, 42.436248],\n\t\t\t\t\t\t[-70.943612, 42.452092],\n\t\t\t\t\t\t[-70.947020, 42.456236],\n\t\t\t\t\t\t[-70.960470, 42.446166],\n\t\t\t\t\t\t[-70.960647, 42.443787],\n\t\t\t\t\t\t[-70.982294, 42.431296],\n\t\t\t\t\t\t[-71.025777, 42.444753],\n\t\t\t\t\t\t[-71.025864, 42.444743],\n\t\t\t\t\t\t[-71.037270, 42.457674],\n\t\t\t\t\t\t[-71.039114, 42.459513],\n\t\t\t\t\t\t[-71.040044, 42.460706],\n\t\t\t\t\t\t[-71.044729, 42.465724],\n\t\t\t\t\t\t[-71.044796, 42.466195],\n\t\t\t\t\t\t[-71.051571, 42.473891],\n\t\t\t\t\t\t[-71.053496, 42.475895],\n\t\t\t\t\t\t[-71.076133, 42.604077],\n\t\t\t\t\t\t[-71.135290, 42.599061],\n\t\t\t\t\t\t[-71.148613, 42.613249],\n\t\t\t\t\t\t[-71.158617, 42.612948],\n\t\t\t\t\t\t[-71.165015, 42.597959],\n\t\t\t\t\t\t[-71.256103, 42.656691],\n\t\t\t\t\t\t[-71.254532, 42.734136],\n\t\t\t\t\t\t[-71.245504, 42.742589],\n\t\t\t\t\t\t[-71.208302, 42.743314],\n\t\t\t\t\t\t[-71.208227, 42.743294],\n\t\t\t\t\t\t[-71.208137, 42.743273]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US25019\",\n\t\t\t\t\"STATE\": \"25\",\n\t\t\t\t\"COUNTY\": \"019\",\n\t\t\t\t\"NAME\": \"Nantucket\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 44.970000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-70.092142, 41.297741],\n\t\t\t\t\t\t[-70.082072, 41.299093],\n\t\t\t\t\t\t[-70.062565, 41.308726],\n\t\t\t\t\t\t[-70.046088, 41.321651],\n\t\t\t\t\t\t[-70.031332, 41.339332],\n\t\t\t\t\t\t[-70.028805, 41.359919],\n\t\t\t\t\t\t[-70.030924, 41.367453],\n\t\t\t\t\t\t[-70.035162, 41.372161],\n\t\t\t\t\t\t[-70.038458, 41.376399],\n\t\t\t\t\t\t[-70.045586, 41.383598],\n\t\t\t\t\t\t[-70.049564, 41.387900],\n\t\t\t\t\t\t[-70.049053, 41.391702],\n\t\t\t\t\t\t[-70.033514, 41.385816],\n\t\t\t\t\t\t[-70.018446, 41.368630],\n\t\t\t\t\t\t[-69.960277, 41.278731],\n\t\t\t\t\t\t[-69.960181, 41.264546],\n\t\t\t\t\t\t[-69.964422, 41.254570],\n\t\t\t\t\t\t[-69.965725, 41.252466],\n\t\t\t\t\t\t[-69.975000, 41.247392],\n\t\t\t\t\t\t[-70.001586, 41.239353],\n\t\t\t\t\t\t[-70.015225, 41.237964],\n\t\t\t\t\t\t[-70.052807, 41.242685],\n\t\t\t\t\t\t[-70.083239, 41.244400],\n\t\t\t\t\t\t[-70.096967, 41.240850],\n\t\t\t\t\t\t[-70.118669, 41.242351],\n\t\t\t\t\t\t[-70.170681, 41.255881],\n\t\t\t\t\t\t[-70.237175, 41.282724],\n\t\t\t\t\t\t[-70.256164, 41.288123],\n\t\t\t\t\t\t[-70.266776, 41.294453],\n\t\t\t\t\t\t[-70.273478, 41.301528],\n\t\t\t\t\t\t[-70.275526, 41.310464],\n\t\t\t\t\t\t[-70.260632, 41.310092],\n\t\t\t\t\t\t[-70.249276, 41.305623],\n\t\t\t\t\t\t[-70.244435, 41.303203],\n\t\t\t\t\t\t[-70.240153, 41.295384],\n\t\t\t\t\t\t[-70.229541, 41.290171],\n\t\t\t\t\t\t[-70.208690, 41.290171],\n\t\t\t\t\t\t[-70.196304, 41.294612],\n\t\t\t\t\t\t[-70.124460, 41.293851],\n\t\t\t\t\t\t[-70.092142, 41.297741]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US34023\",\n\t\t\t\t\"STATE\": \"34\",\n\t\t\t\t\"COUNTY\": \"023\",\n\t\t\t\t\"NAME\": \"Middlesex\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 308.914000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-74.490547, 40.523048],\n\t\t\t\t\t\t[-74.495398, 40.529403],\n\t\t\t\t\t\t[-74.499362, 40.531951],\n\t\t\t\t\t\t[-74.503309, 40.534119],\n\t\t\t\t\t\t[-74.512729, 40.540541],\n\t\t\t\t\t\t[-74.514622, 40.542711],\n\t\t\t\t\t\t[-74.515782, 40.544955],\n\t\t\t\t\t\t[-74.463351, 40.599245],\n\t\t\t\t\t\t[-74.456800, 40.595500],\n\t\t\t\t\t\t[-74.437334, 40.597188],\n\t\t\t\t\t\t[-74.424699, 40.598513],\n\t\t\t\t\t\t[-74.416106, 40.598910],\n\t\t\t\t\t\t[-74.399895, 40.600603],\n\t\t\t\t\t\t[-74.394634, 40.600901],\n\t\t\t\t\t\t[-74.372794, 40.602303],\n\t\t\t\t\t\t[-74.303392, 40.608903],\n\t\t\t\t\t\t[-74.291391, 40.591903],\n\t\t\t\t\t\t[-74.258114, 40.602250],\n\t\t\t\t\t\t[-74.255822, 40.602194],\n\t\t\t\t\t\t[-74.253810, 40.600989],\n\t\t\t\t\t\t[-74.247790, 40.600103],\n\t\t\t\t\t\t[-74.231748, 40.598881],\n\t\t\t\t\t\t[-74.215101, 40.604074],\n\t\t\t\t\t\t[-74.206731, 40.594569],\n\t\t\t\t\t\t[-74.208988, 40.576304],\n\t\t\t\t\t\t[-74.214788, 40.560604],\n\t\t\t\t\t\t[-74.218189, 40.557204],\n\t\t\t\t\t\t[-74.231589, 40.559204],\n\t\t\t\t\t\t[-74.248641, 40.549601],\n\t\t\t\t\t\t[-74.251441, 40.542301],\n\t\t\t\t\t\t[-74.246237, 40.520963],\n\t\t\t\t\t\t[-74.268290, 40.499205],\n\t\t\t\t\t\t[-74.269998, 40.495014],\n\t\t\t\t\t\t[-74.272690, 40.488405],\n\t\t\t\t\t\t[-74.267590, 40.471806],\n\t\t\t\t\t\t[-74.261889, 40.464706],\n\t\t\t\t\t\t[-74.236689, 40.457806],\n\t\t\t\t\t\t[-74.225035, 40.453301],\n\t\t\t\t\t\t[-74.360699, 40.318386],\n\t\t\t\t\t\t[-74.378590, 40.304116],\n\t\t\t\t\t\t[-74.381135, 40.301546],\n\t\t\t\t\t\t[-74.394112, 40.288463],\n\t\t\t\t\t\t[-74.393517, 40.279574],\n\t\t\t\t\t\t[-74.408085, 40.273791],\n\t\t\t\t\t\t[-74.460776, 40.251358],\n\t\t\t\t\t\t[-74.484287, 40.253299],\n\t\t\t\t\t\t[-74.572559, 40.301054],\n\t\t\t\t\t\t[-74.619591, 40.374397],\n\t\t\t\t\t\t[-74.494275, 40.469807],\n\t\t\t\t\t\t[-74.493226, 40.470770],\n\t\t\t\t\t\t[-74.489524, 40.474415],\n\t\t\t\t\t\t[-74.459922, 40.491015],\n\t\t\t\t\t\t[-74.490547, 40.523048]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26055\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"055\",\n\t\t\t\t\"NAME\": \"Grand Traverse\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 464.331000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.640216, 44.775051],\n\t\t\t\t\t\t[-85.636097, 44.771329],\n\t\t\t\t\t\t[-85.627982, 44.767508],\n\t\t\t\t\t\t[-85.624541, 44.767038],\n\t\t\t\t\t\t[-85.623607, 44.766911],\n\t\t\t\t\t\t[-85.620551, 44.766494],\n\t\t\t\t\t\t[-85.619648, 44.766371],\n\t\t\t\t\t\t[-85.610776, 44.765160],\n\t\t\t\t\t\t[-85.607701, 44.765363],\n\t\t\t\t\t\t[-85.605586, 44.765502],\n\t\t\t\t\t\t[-85.599874, 44.765878],\n\t\t\t\t\t\t[-85.599256, 44.765919],\n\t\t\t\t\t\t[-85.599103, 44.765996],\n\t\t\t\t\t\t[-85.593833, 44.768651],\n\t\t\t\t\t\t[-85.593571, 44.768783],\n\t\t\t\t\t\t[-85.593474, 44.769348],\n\t\t\t\t\t\t[-85.593449, 44.769499],\n\t\t\t\t\t\t[-85.591852, 44.778839],\n\t\t\t\t\t\t[-85.591145, 44.782981],\n\t\t\t\t\t\t[-85.591124, 44.783100],\n\t\t\t\t\t\t[-85.590985, 44.783914],\n\t\t\t\t\t\t[-85.581717, 44.807784],\n\t\t\t\t\t\t[-85.581392, 44.808294],\n\t\t\t\t\t\t[-85.545891, 44.864024],\n\t\t\t\t\t\t[-85.539042, 44.868868],\n\t\t\t\t\t\t[-85.532931, 44.873190],\n\t\t\t\t\t\t[-85.530729, 44.889182],\n\t\t\t\t\t\t[-85.530711, 44.889314],\n\t\t\t\t\t\t[-85.530649, 44.889763],\n\t\t\t\t\t\t[-85.553348, 44.890916],\n\t\t\t\t\t\t[-85.553509, 44.890924],\n\t\t\t\t\t\t[-85.559524, 44.888113],\n\t\t\t\t\t\t[-85.564509, 44.895246],\n\t\t\t\t\t\t[-85.562936, 44.896612],\n\t\t\t\t\t\t[-85.562503, 44.896987],\n\t\t\t\t\t\t[-85.557257, 44.901541],\n\t\t\t\t\t\t[-85.556647, 44.902070],\n\t\t\t\t\t\t[-85.556471, 44.902223],\n\t\t\t\t\t\t[-85.551567, 44.906481],\n\t\t\t\t\t\t[-85.539703, 44.916779],\n\t\t\t\t\t\t[-85.538945, 44.917885],\n\t\t\t\t\t\t[-85.538288, 44.918845],\n\t\t\t\t\t\t[-85.533553, 44.925762],\n\t\t\t\t\t\t[-85.530477, 44.933732],\n\t\t\t\t\t\t[-85.529233, 44.936955],\n\t\t\t\t\t\t[-85.520205, 44.960347],\n\t\t\t\t\t\t[-85.520443, 44.961149],\n\t\t\t\t\t\t[-85.520698, 44.962008],\n\t\t\t\t\t\t[-85.522100, 44.966727],\n\t\t\t\t\t\t[-85.521896, 44.967446],\n\t\t\t\t\t\t[-85.520789, 44.971338],\n\t\t\t\t\t\t[-85.520034, 44.973996],\n\t\t\t\t\t\t[-85.518875, 44.974665],\n\t\t\t\t\t\t[-85.492600, 44.989834],\n\t\t\t\t\t\t[-85.492386, 44.989849],\n\t\t\t\t\t\t[-85.475204, 44.991053],\n\t\t\t\t\t\t[-85.472676, 44.985558],\n\t\t\t\t\t\t[-85.471708, 44.983453],\n\t\t\t\t\t\t[-85.470462, 44.980745],\n\t\t\t\t\t\t[-85.470215, 44.979864],\n\t\t\t\t\t\t[-85.468293, 44.973008],\n\t\t\t\t\t\t[-85.468020, 44.972035],\n\t\t\t\t\t\t[-85.466848, 44.967853],\n\t\t\t\t\t\t[-85.464944, 44.961062],\n\t\t\t\t\t\t[-85.466650, 44.958844],\n\t\t\t\t\t\t[-85.470688, 44.959238],\n\t\t\t\t\t\t[-85.471261, 44.959294],\n\t\t\t\t\t\t[-85.471646, 44.959331],\n\t\t\t\t\t\t[-85.472258, 44.959391],\n\t\t\t\t\t\t[-85.474274, 44.958529],\n\t\t\t\t\t\t[-85.485740, 44.953626],\n\t\t\t\t\t\t[-85.489049, 44.938087],\n\t\t\t\t\t\t[-85.489895, 44.934118],\n\t\t\t\t\t\t[-85.490713, 44.930274],\n\t\t\t\t\t\t[-85.491215, 44.927918],\n\t\t\t\t\t\t[-85.491239, 44.927804],\n\t\t\t\t\t\t[-85.491286, 44.927585],\n\t\t\t\t\t\t[-85.491393, 44.925868],\n\t\t\t\t\t\t[-85.491403, 44.925695],\n\t\t\t\t\t\t[-85.491414, 44.925531],\n\t\t\t\t\t\t[-85.491471, 44.924610],\n\t\t\t\t\t\t[-85.491496, 44.924205],\n\t\t\t\t\t\t[-85.492397, 44.909719],\n\t\t\t\t\t\t[-85.492490, 44.908220],\n\t\t\t\t\t\t[-85.489477, 44.903145],\n\t\t\t\t\t\t[-85.488927, 44.902217],\n\t\t\t\t\t\t[-85.488624, 44.901707],\n\t\t\t\t\t\t[-85.489704, 44.897533],\n\t\t\t\t\t\t[-85.489921, 44.896694],\n\t\t\t\t\t\t[-85.498007, 44.865451],\n\t\t\t\t\t\t[-85.500872, 44.858830],\n\t\t\t\t\t\t[-85.502182, 44.855802],\n\t\t\t\t\t\t[-85.502386, 44.855551],\n\t\t\t\t\t\t[-85.508227, 44.848352],\n\t\t\t\t\t\t[-85.508617, 44.847872],\n\t\t\t\t\t\t[-85.511751, 44.847114],\n\t\t\t\t\t\t[-85.513575, 44.846674],\n\t\t\t\t\t\t[-85.516997, 44.845846],\n\t\t\t\t\t\t[-85.518845, 44.845400],\n\t\t\t\t\t\t[-85.519096, 44.845339],\n\t\t\t\t\t\t[-85.527181, 44.841002],\n\t\t\t\t\t\t[-85.533434, 44.837648],\n\t\t\t\t\t\t[-85.538522, 44.834918],\n\t\t\t\t\t\t[-85.539924, 44.834166],\n\t\t\t\t\t\t[-85.542706, 44.831395],\n\t\t\t\t\t\t[-85.546021, 44.828092],\n\t\t\t\t\t\t[-85.547119, 44.826998],\n\t\t\t\t\t\t[-85.551797, 44.822338],\n\t\t\t\t\t\t[-85.552850, 44.821288],\n\t\t\t\t\t\t[-85.553844, 44.820298],\n\t\t\t\t\t\t[-85.555894, 44.818256],\n\t\t\t\t\t\t[-85.557952, 44.814372],\n\t\t\t\t\t\t[-85.560231, 44.810072],\n\t\t\t\t\t\t[-85.560232, 44.809974],\n\t\t\t\t\t\t[-85.560253, 44.808359],\n\t\t\t\t\t\t[-85.560348, 44.800772],\n\t\t\t\t\t\t[-85.560352, 44.800454],\n\t\t\t\t\t\t[-85.560400, 44.796655],\n\t\t\t\t\t\t[-85.560409, 44.795950],\n\t\t\t\t\t\t[-85.560424, 44.794772],\n\t\t\t\t\t\t[-85.560488, 44.789690],\n\t\t\t\t\t\t[-85.560488, 44.789679],\n\t\t\t\t\t\t[-85.568781, 44.774477],\n\t\t\t\t\t\t[-85.571018, 44.770377],\n\t\t\t\t\t\t[-85.575170, 44.762766],\n\t\t\t\t\t\t[-85.576239, 44.760807],\n\t\t\t\t\t\t[-85.576566, 44.760208],\n\t\t\t\t\t\t[-85.575916, 44.759602],\n\t\t\t\t\t\t[-85.571301, 44.755293],\n\t\t\t\t\t\t[-85.554774, 44.748917],\n\t\t\t\t\t\t[-85.554326, 44.748744],\n\t\t\t\t\t\t[-85.554083, 44.748715],\n\t\t\t\t\t\t[-85.538285, 44.746821],\n\t\t\t\t\t\t[-85.527216, 44.748235],\n\t\t\t\t\t\t[-85.523296, 44.751702],\n\t\t\t\t\t\t[-85.509432, 44.763964],\n\t\t\t\t\t\t[-85.504775, 44.768082],\n\t\t\t\t\t\t[-85.504772, 44.768102],\n\t\t\t\t\t\t[-85.504700, 44.768518],\n\t\t\t\t\t\t[-85.503935, 44.772951],\n\t\t\t\t\t\t[-85.504079, 44.773901],\n\t\t\t\t\t\t[-85.504787, 44.778577],\n\t\t\t\t\t\t[-85.505244, 44.781594],\n\t\t\t\t\t\t[-85.507113, 44.784271],\n\t\t\t\t\t\t[-85.509251, 44.787334],\n\t\t\t\t\t\t[-85.508462, 44.788682],\n\t\t\t\t\t\t[-85.507473, 44.790372],\n\t\t\t\t\t\t[-85.499591, 44.803838],\n\t\t\t\t\t\t[-85.496314, 44.805308],\n\t\t\t\t\t\t[-85.484668, 44.810531],\n\t\t\t\t\t\t[-85.481972, 44.811740],\n\t\t\t\t\t\t[-85.477423, 44.813781],\n\t\t\t\t\t\t[-85.475748, 44.814532],\n\t\t\t\t\t\t[-85.475114, 44.814816],\n\t\t\t\t\t\t[-85.474796, 44.814959],\n\t\t\t\t\t\t[-85.474622, 44.815107],\n\t\t\t\t\t\t[-85.462943, 44.825044],\n\t\t\t\t\t\t[-85.462916, 44.825067],\n\t\t\t\t\t\t[-85.462906, 44.825110],\n\t\t\t\t\t\t[-85.462622, 44.826327],\n\t\t\t\t\t\t[-85.460445, 44.835667],\n\t\t\t\t\t\t[-85.457475, 44.839609],\n\t\t\t\t\t\t[-85.457472, 44.839613],\n\t\t\t\t\t\t[-85.457328, 44.839804],\n\t\t\t\t\t\t[-85.456007, 44.841558],\n\t\t\t\t\t\t[-85.455336, 44.842448],\n\t\t\t\t\t\t[-85.452683, 44.845969],\n\t\t\t\t\t\t[-85.442250, 44.859817],\n\t\t\t\t\t\t[-85.332836, 44.812372],\n\t\t\t\t\t\t[-85.334000, 44.512303],\n\t\t\t\t\t\t[-85.817802, 44.512969],\n\t\t\t\t\t\t[-85.815120, 44.774525],\n\t\t\t\t\t\t[-85.640216, 44.775051]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31091\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"091\",\n\t\t\t\t\"NAME\": \"Hooker\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 721.121000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-101.406466, 41.743200],\n\t\t\t\t\t\t[-101.425920, 41.743059],\n\t\t\t\t\t\t[-101.426557, 42.092194],\n\t\t\t\t\t\t[-100.846129, 42.088166],\n\t\t\t\t\t\t[-100.842459, 41.740404],\n\t\t\t\t\t\t[-101.406466, 41.743200]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31095\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"095\",\n\t\t\t\t\"NAME\": \"Jefferson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 570.185000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.369199, 40.002060],\n\t\t\t\t\t\t[-97.368688, 40.350392],\n\t\t\t\t\t\t[-96.915083, 40.349734],\n\t\t\t\t\t\t[-96.915902, 40.348356],\n\t\t\t\t\t\t[-96.916407, 40.001506],\n\t\t\t\t\t\t[-97.009165, 40.001463],\n\t\t\t\t\t\t[-97.030803, 40.001342],\n\t\t\t\t\t\t[-97.049663, 40.001323],\n\t\t\t\t\t\t[-97.137866, 40.001814],\n\t\t\t\t\t\t[-97.142448, 40.001495],\n\t\t\t\t\t\t[-97.181775, 40.001550],\n\t\t\t\t\t\t[-97.200190, 40.001549],\n\t\t\t\t\t\t[-97.202310, 40.001442],\n\t\t\t\t\t\t[-97.245080, 40.001467],\n\t\t\t\t\t\t[-97.245169, 40.001513],\n\t\t\t\t\t\t[-97.350272, 40.001976],\n\t\t\t\t\t\t[-97.350896, 40.001930],\n\t\t\t\t\t\t[-97.369103, 40.002060],\n\t\t\t\t\t\t[-97.369199, 40.002060]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31103\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"103\",\n\t\t\t\t\"NAME\": \"Keya Paha\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 773.072000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.534049, 42.998041],\n\t\t\t\t\t\t[-99.494287, 42.998118],\n\t\t\t\t\t\t[-99.490798, 42.998143],\n\t\t\t\t\t\t[-99.474531, 42.998081],\n\t\t\t\t\t\t[-99.471353, 42.997967],\n\t\t\t\t\t\t[-99.395568, 42.998170],\n\t\t\t\t\t\t[-99.374268, 42.998047],\n\t\t\t\t\t\t[-99.371121, 42.998093],\n\t\t\t\t\t\t[-99.368628, 42.998140],\n\t\t\t\t\t\t[-99.347283, 42.998217],\n\t\t\t\t\t\t[-99.288045, 42.998152],\n\t\t\t\t\t\t[-99.262710, 42.998234],\n\t\t\t\t\t\t[-99.254454, 42.998140],\n\t\t\t\t\t\t[-99.254235, 42.996812],\n\t\t\t\t\t\t[-99.257039, 42.804296],\n\t\t\t\t\t\t[-99.537491, 42.717626],\n\t\t\t\t\t\t[-99.677684, 42.730903],\n\t\t\t\t\t\t[-100.133978, 42.807819],\n\t\t\t\t\t\t[-100.198478, 42.846102],\n\t\t\t\t\t\t[-100.198412, 42.998542],\n\t\t\t\t\t\t[-100.126896, 42.998711],\n\t\t\t\t\t\t[-100.126427, 42.998710],\n\t\t\t\t\t\t[-100.119297, 42.998689],\n\t\t\t\t\t\t[-100.034389, 42.998425],\n\t\t\t\t\t\t[-100.027815, 42.998424],\n\t\t\t\t\t\t[-100.004757, 42.998392],\n\t\t\t\t\t\t[-99.961204, 42.998335],\n\t\t\t\t\t\t[-99.950921, 42.998291],\n\t\t\t\t\t\t[-99.950411, 42.998286],\n\t\t\t\t\t\t[-99.927645, 42.998113],\n\t\t\t\t\t\t[-99.918401, 42.998057],\n\t\t\t\t\t\t[-99.877697, 42.998094],\n\t\t\t\t\t\t[-99.869885, 42.998094],\n\t\t\t\t\t\t[-99.859945, 42.997962],\n\t\t\t\t\t\t[-99.850037, 42.998171],\n\t\t\t\t\t\t[-99.821868, 42.997995],\n\t\t\t\t\t\t[-99.809373, 42.998178],\n\t\t\t\t\t\t[-99.803328, 42.998064],\n\t\t\t\t\t\t[-99.800306, 42.997972],\n\t\t\t\t\t\t[-99.788247, 42.998016],\n\t\t\t\t\t\t[-99.768524, 42.998125],\n\t\t\t\t\t\t[-99.743138, 42.997912],\n\t\t\t\t\t\t[-99.726788, 42.997892],\n\t\t\t\t\t\t[-99.719177, 42.997899],\n\t\t\t\t\t\t[-99.701446, 42.997994],\n\t\t\t\t\t\t[-99.699234, 42.997880],\n\t\t\t\t\t\t[-99.569277, 42.997995],\n\t\t\t\t\t\t[-99.535375, 42.998038],\n\t\t\t\t\t\t[-99.534049, 42.998041]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31111\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"111\",\n\t\t\t\t\"NAME\": \"Lincoln\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2564.068000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-101.269695, 41.394934],\n\t\t\t\t\t\t[-100.713243, 41.393511],\n\t\t\t\t\t\t[-100.251098, 41.393298],\n\t\t\t\t\t\t[-100.236106, 41.393324],\n\t\t\t\t\t\t[-100.238155, 41.046536],\n\t\t\t\t\t\t[-100.224235, 41.046597],\n\t\t\t\t\t\t[-100.223311, 40.700254],\n\t\t\t\t\t\t[-100.777833, 40.700135],\n\t\t\t\t\t\t[-101.247963, 40.697802],\n\t\t\t\t\t\t[-101.249975, 41.003950],\n\t\t\t\t\t\t[-101.270381, 41.047392],\n\t\t\t\t\t\t[-101.269695, 41.394934]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28089\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"089\",\n\t\t\t\t\"NAME\": \"Madison\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 714.506000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.730016, 32.884773],\n\t\t\t\t\t\t[-89.730140, 32.685119],\n\t\t\t\t\t\t[-89.730304, 32.634228],\n\t\t\t\t\t\t[-89.759155, 32.613543],\n\t\t\t\t\t\t[-89.770781, 32.599184],\n\t\t\t\t\t\t[-89.781805, 32.597364],\n\t\t\t\t\t\t[-89.784123, 32.586891],\n\t\t\t\t\t\t[-89.858878, 32.584836],\n\t\t\t\t\t\t[-89.962077, 32.491286],\n\t\t\t\t\t\t[-90.068820, 32.438078],\n\t\t\t\t\t\t[-90.065697, 32.399529],\n\t\t\t\t\t\t[-90.141232, 32.399495],\n\t\t\t\t\t\t[-90.146688, 32.399859],\n\t\t\t\t\t\t[-90.243764, 32.400059],\n\t\t\t\t\t\t[-90.243641, 32.487533],\n\t\t\t\t\t\t[-90.449780, 32.487983],\n\t\t\t\t\t\t[-90.450037, 32.573783],\n\t\t\t\t\t\t[-90.363868, 32.603268],\n\t\t\t\t\t\t[-90.278055, 32.660346],\n\t\t\t\t\t\t[-90.197729, 32.663850],\n\t\t\t\t\t\t[-90.049129, 32.735674],\n\t\t\t\t\t\t[-89.965882, 32.879573],\n\t\t\t\t\t\t[-89.730016, 32.884773]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28093\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"093\",\n\t\t\t\t\"NAME\": \"Marshall\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 706.193000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.724324, 34.994763],\n\t\t\t\t\t\t[-89.644282, 34.995293],\n\t\t\t\t\t\t[-89.511153, 34.994755],\n\t\t\t\t\t\t[-89.493739, 34.994361],\n\t\t\t\t\t\t[-89.352679, 34.994420],\n\t\t\t\t\t\t[-89.352705, 34.844432],\n\t\t\t\t\t\t[-89.299227, 34.844415],\n\t\t\t\t\t\t[-89.298334, 34.582926],\n\t\t\t\t\t\t[-89.245645, 34.583234],\n\t\t\t\t\t\t[-89.245922, 34.542942],\n\t\t\t\t\t\t[-89.244591, 34.542329],\n\t\t\t\t\t\t[-89.245920, 34.541350],\n\t\t\t\t\t\t[-89.246133, 34.495633],\n\t\t\t\t\t\t[-89.424459, 34.519129],\n\t\t\t\t\t\t[-89.476642, 34.554168],\n\t\t\t\t\t\t[-89.668448, 34.554367],\n\t\t\t\t\t\t[-89.669160, 34.685786],\n\t\t\t\t\t\t[-89.722333, 34.685504],\n\t\t\t\t\t\t[-89.723635, 34.772121],\n\t\t\t\t\t\t[-89.723357, 34.773347],\n\t\t\t\t\t\t[-89.724324, 34.994763]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27031\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"031\",\n\t\t\t\t\"NAME\": \"Cook\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1452.277000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.032942, 48.190794],\n\t\t\t\t\t\t[-90.976955, 48.219452],\n\t\t\t\t\t\t[-90.885480, 48.245784],\n\t\t\t\t\t\t[-90.847352, 48.244443],\n\t\t\t\t\t\t[-90.843624, 48.243576],\n\t\t\t\t\t\t[-90.839176, 48.239511],\n\t\t\t\t\t\t[-90.804207, 48.177833],\n\t\t\t\t\t\t[-90.789776, 48.143472],\n\t\t\t\t\t\t[-90.795308, 48.135523],\n\t\t\t\t\t\t[-90.793841, 48.135569],\n\t\t\t\t\t\t[-90.776133, 48.122481],\n\t\t\t\t\t\t[-90.775962, 48.122229],\n\t\t\t\t\t\t[-90.774225, 48.118894],\n\t\t\t\t\t\t[-90.774191, 48.118575],\n\t\t\t\t\t\t[-90.761625, 48.098283],\n\t\t\t\t\t\t[-90.751608, 48.090968],\n\t\t\t\t\t\t[-90.569763, 48.106951],\n\t\t\t\t\t\t[-90.495637, 48.099444],\n\t\t\t\t\t\t[-90.495398, 48.099787],\n\t\t\t\t\t\t[-90.452022, 48.105006],\n\t\t\t\t\t\t[-90.403219, 48.105114],\n\t\t\t\t\t\t[-90.344234, 48.094447],\n\t\t\t\t\t\t[-90.343484, 48.095064],\n\t\t\t\t\t\t[-90.337177, 48.099771],\n\t\t\t\t\t\t[-90.330052, 48.102399],\n\t\t\t\t\t\t[-90.312386, 48.105300],\n\t\t\t\t\t\t[-90.176605, 48.112445],\n\t\t\t\t\t\t[-90.136191, 48.112136],\n\t\t\t\t\t\t[-90.125090, 48.107702],\n\t\t\t\t\t\t[-90.123900, 48.107131],\n\t\t\t\t\t\t[-90.091639, 48.104630],\n\t\t\t\t\t\t[-90.073873, 48.101138],\n\t\t\t\t\t\t[-90.023595, 48.084708],\n\t\t\t\t\t\t[-89.997852, 48.057567],\n\t\t\t\t\t\t[-89.993822, 48.049027],\n\t\t\t\t\t\t[-89.996702, 48.035391],\n\t\t\t\t\t\t[-89.993050, 48.028404],\n\t\t\t\t\t\t[-89.968255, 48.014482],\n\t\t\t\t\t\t[-89.897414, 47.987599],\n\t\t\t\t\t\t[-89.873286, 47.985419],\n\t\t\t\t\t\t[-89.847571, 47.992442],\n\t\t\t\t\t\t[-89.819802, 48.015099],\n\t\t\t\t\t\t[-89.763967, 48.022969],\n\t\t\t\t\t\t[-89.749314, 48.023325],\n\t\t\t\t\t\t[-89.724184, 48.019818],\n\t\t\t\t\t\t[-89.687891, 48.010826],\n\t\t\t\t\t\t[-89.655793, 48.007532],\n\t\t\t\t\t\t[-89.564288, 48.002930],\n\t\t\t\t\t\t[-89.489226, 48.014528],\n\t\t\t\t\t\t[-89.491739, 48.005212],\n\t\t\t\t\t\t[-89.495344, 48.002356],\n\t\t\t\t\t\t[-89.541521, 47.992841],\n\t\t\t\t\t\t[-89.551555, 47.987305],\n\t\t\t\t\t\t[-89.552939, 47.980731],\n\t\t\t\t\t\t[-89.555015, 47.974849],\n\t\t\t\t\t\t[-89.572315, 47.967238],\n\t\t\t\t\t\t[-89.588230, 47.966200],\n\t\t\t\t\t\t[-89.595890, 47.971046],\n\t\t\t\t\t\t[-89.611412, 47.980731],\n\t\t\t\t\t\t[-89.624559, 47.983153],\n\t\t\t\t\t\t[-89.631825, 47.980039],\n\t\t\t\t\t\t[-89.637015, 47.973465],\n\t\t\t\t\t\t[-89.640129, 47.967930],\n\t\t\t\t\t\t[-89.639844, 47.959826],\n\t\t\t\t\t\t[-89.638285, 47.954275],\n\t\t\t\t\t\t[-89.639545, 47.953590],\n\t\t\t\t\t\t[-89.660616, 47.951216],\n\t\t\t\t\t\t[-89.697619, 47.941288],\n\t\t\t\t\t\t[-89.729730, 47.925245],\n\t\t\t\t\t\t[-89.737539, 47.918183],\n\t\t\t\t\t\t[-89.758714, 47.906993],\n\t\t\t\t\t\t[-89.793539, 47.891358],\n\t\t\t\t\t\t[-89.853960, 47.873997],\n\t\t\t\t\t\t[-89.871580, 47.874194],\n\t\t\t\t\t\t[-89.923649, 47.862062],\n\t\t\t\t\t\t[-89.930844, 47.857723],\n\t\t\t\t\t\t[-89.927520, 47.850825],\n\t\t\t\t\t\t[-89.933899, 47.846760],\n\t\t\t\t\t\t[-89.974296, 47.830514],\n\t\t\t\t\t\t[-90.013730, 47.821373],\n\t\t\t\t\t\t[-90.042761, 47.817568],\n\t\t\t\t\t\t[-90.072025, 47.811105],\n\t\t\t\t\t\t[-90.072241, 47.807727],\n\t\t\t\t\t\t[-90.075559, 47.803303],\n\t\t\t\t\t\t[-90.082354, 47.803619],\n\t\t\t\t\t\t[-90.088160, 47.803041],\n\t\t\t\t\t\t[-90.116800, 47.795380],\n\t\t\t\t\t\t[-90.132078, 47.795720],\n\t\t\t\t\t\t[-90.160790, 47.792807],\n\t\t\t\t\t\t[-90.178755, 47.786414],\n\t\t\t\t\t\t[-90.187636, 47.778130],\n\t\t\t\t\t\t[-90.229145, 47.776198],\n\t\t\t\t\t\t[-90.248794, 47.772763],\n\t\t\t\t\t\t[-90.295952, 47.759054],\n\t\t\t\t\t\t[-90.306340, 47.756627],\n\t\t\t\t\t\t[-90.313958, 47.756681],\n\t\t\t\t\t\t[-90.323446, 47.753771],\n\t\t\t\t\t\t[-90.330254, 47.750892],\n\t\t\t\t\t\t[-90.332686, 47.746387],\n\t\t\t\t\t\t[-90.386234, 47.741100],\n\t\t\t\t\t\t[-90.393823, 47.738271],\n\t\t\t\t\t\t[-90.421390, 47.735150],\n\t\t\t\t\t\t[-90.437712, 47.731612],\n\t\t\t\t\t\t[-90.441912, 47.726404],\n\t\t\t\t\t\t[-90.458365, 47.721400],\n\t\t\t\t\t\t[-90.537105, 47.703055],\n\t\t\t\t\t\t[-90.551291, 47.690266],\n\t\t\t\t\t\t[-90.584954, 47.680740],\n\t\t\t\t\t\t[-90.647837, 47.656176],\n\t\t\t\t\t\t[-90.686382, 47.643594],\n\t\t\t\t\t\t[-90.735927, 47.624343],\n\t\t\t\t\t\t[-90.868270, 47.556900],\n\t\t\t\t\t\t[-90.907494, 47.532873],\n\t\t\t\t\t\t[-90.910127, 47.530178],\n\t\t\t\t\t\t[-90.909801, 47.526215],\n\t\t\t\t\t\t[-90.914247, 47.522639],\n\t\t\t\t\t\t[-90.919375, 47.519784],\n\t\t\t\t\t\t[-90.927975, 47.519008],\n\t\t\t\t\t\t[-90.939072, 47.514532],\n\t\t\t\t\t\t[-91.023124, 47.464964],\n\t\t\t\t\t\t[-91.023125, 47.464964],\n\t\t\t\t\t\t[-91.020737, 47.887995],\n\t\t\t\t\t\t[-91.032942, 48.190794]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27049\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"049\",\n\t\t\t\t\"NAME\": \"Goodhue\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 756.838000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.316425, 44.540792],\n\t\t\t\t\t\t[-92.314071, 44.538014],\n\t\t\t\t\t\t[-92.303046, 44.518646],\n\t\t\t\t\t\t[-92.302215, 44.500298],\n\t\t\t\t\t\t[-92.291005, 44.485464],\n\t\t\t\t\t\t[-92.276784, 44.473649],\n\t\t\t\t\t\t[-92.242010, 44.454254],\n\t\t\t\t\t\t[-92.430271, 44.455157],\n\t\t\t\t\t\t[-92.430629, 44.368291],\n\t\t\t\t\t\t[-92.550733, 44.368521],\n\t\t\t\t\t\t[-92.550871, 44.194916],\n\t\t\t\t\t\t[-92.678717, 44.195516],\n\t\t\t\t\t\t[-93.041159, 44.196726],\n\t\t\t\t\t\t[-93.039485, 44.471871],\n\t\t\t\t\t\t[-93.039344, 44.515350],\n\t\t\t\t\t\t[-92.792600, 44.542971],\n\t\t\t\t\t\t[-92.792584, 44.629722],\n\t\t\t\t\t\t[-92.732043, 44.629484],\n\t\t\t\t\t\t[-92.732042, 44.713775],\n\t\t\t\t\t\t[-92.632105, 44.649027],\n\t\t\t\t\t\t[-92.621733, 44.638983],\n\t\t\t\t\t\t[-92.619774, 44.629214],\n\t\t\t\t\t\t[-92.549685, 44.576000],\n\t\t\t\t\t\t[-92.534186, 44.570375],\n\t\t\t\t\t\t[-92.491773, 44.566003],\n\t\t\t\t\t\t[-92.357313, 44.558480],\n\t\t\t\t\t\t[-92.340058, 44.555273],\n\t\t\t\t\t\t[-92.329013, 44.550895],\n\t\t\t\t\t\t[-92.319938, 44.544940],\n\t\t\t\t\t\t[-92.316425, 44.540792]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27055\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"055\",\n\t\t\t\t\"NAME\": \"Houston\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 552.058000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.262436, 43.792166],\n\t\t\t\t\t\t[-91.268198, 43.726571],\n\t\t\t\t\t\t[-91.273316, 43.668307],\n\t\t\t\t\t\t[-91.268748, 43.615348],\n\t\t\t\t\t\t[-91.265091, 43.609977],\n\t\t\t\t\t\t[-91.217706, 43.500550],\n\t\t\t\t\t\t[-91.369325, 43.500827],\n\t\t\t\t\t\t[-91.371608, 43.500945],\n\t\t\t\t\t\t[-91.376950, 43.500482],\n\t\t\t\t\t\t[-91.441786, 43.500438],\n\t\t\t\t\t\t[-91.445932, 43.500588],\n\t\t\t\t\t\t[-91.461403, 43.500642],\n\t\t\t\t\t\t[-91.465063, 43.500608],\n\t\t\t\t\t\t[-91.491042, 43.500690],\n\t\t\t\t\t\t[-91.533806, 43.500560],\n\t\t\t\t\t\t[-91.541220, 43.500515],\n\t\t\t\t\t\t[-91.551021, 43.500539],\n\t\t\t\t\t\t[-91.591073, 43.500536],\n\t\t\t\t\t\t[-91.610832, 43.500530],\n\t\t\t\t\t\t[-91.610895, 43.500530],\n\t\t\t\t\t\t[-91.615293, 43.500550],\n\t\t\t\t\t\t[-91.616895, 43.500663],\n\t\t\t\t\t\t[-91.617407, 43.500687],\n\t\t\t\t\t\t[-91.620785, 43.500677],\n\t\t\t\t\t\t[-91.625611, 43.500727],\n\t\t\t\t\t\t[-91.634244, 43.500479],\n\t\t\t\t\t\t[-91.634495, 43.500439],\n\t\t\t\t\t\t[-91.635626, 43.500463],\n\t\t\t\t\t\t[-91.639772, 43.500573],\n\t\t\t\t\t\t[-91.644924, 43.500529],\n\t\t\t\t\t\t[-91.651396, 43.500454],\n\t\t\t\t\t\t[-91.658401, 43.500533],\n\t\t\t\t\t\t[-91.670872, 43.500513],\n\t\t\t\t\t\t[-91.700749, 43.500581],\n\t\t\t\t\t\t[-91.730217, 43.500680],\n\t\t\t\t\t\t[-91.730470, 43.502330],\n\t\t\t\t\t\t[-91.730424, 43.846935],\n\t\t\t\t\t\t[-91.284138, 43.847065],\n\t\t\t\t\t\t[-91.262436, 43.792166]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37049\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"049\",\n\t\t\t\t\"NAME\": \"Craven\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 708.958000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.125021, 35.077561],\n\t\t\t\t\t\t[-77.339077, 35.155076],\n\t\t\t\t\t\t[-77.473716, 35.228983],\n\t\t\t\t\t\t[-77.390965, 35.340047],\n\t\t\t\t\t\t[-77.383581, 35.335360],\n\t\t\t\t\t\t[-77.374683, 35.333825],\n\t\t\t\t\t\t[-77.365484, 35.333651],\n\t\t\t\t\t\t[-77.361188, 35.331852],\n\t\t\t\t\t\t[-77.357402, 35.328827],\n\t\t\t\t\t\t[-77.353981, 35.327988],\n\t\t\t\t\t\t[-77.301155, 35.374239],\n\t\t\t\t\t\t[-77.295879, 35.379163],\n\t\t\t\t\t\t[-77.190423, 35.418955],\n\t\t\t\t\t\t[-76.895546, 35.253532],\n\t\t\t\t\t\t[-76.986960, 35.155811],\n\t\t\t\t\t\t[-76.935011, 35.105799],\n\t\t\t\t\t\t[-76.967297, 35.040655],\n\t\t\t\t\t\t[-76.896514, 34.981764],\n\t\t\t\t\t\t[-76.893266, 34.980285],\n\t\t\t\t\t\t[-76.839333, 34.959410],\n\t\t\t\t\t\t[-76.711278, 34.981971],\n\t\t\t\t\t\t[-76.654210, 34.937088],\n\t\t\t\t\t\t[-76.693085, 34.869219],\n\t\t\t\t\t\t[-76.939252, 34.828636],\n\t\t\t\t\t\t[-77.090323, 34.802755],\n\t\t\t\t\t\t[-77.108813, 34.887572],\n\t\t\t\t\t\t[-77.125021, 35.077561]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37051\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"051\",\n\t\t\t\t\"NAME\": \"Cumberland\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 652.315000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.617079, 35.245706],\n\t\t\t\t\t\t[-78.670100, 35.092964],\n\t\t\t\t\t\t[-78.647522, 34.994820],\n\t\t\t\t\t\t[-78.522724, 34.883550],\n\t\t\t\t\t\t[-78.521229, 34.882736],\n\t\t\t\t\t\t[-78.519347, 34.882653],\n\t\t\t\t\t\t[-78.519742, 34.883700],\n\t\t\t\t\t\t[-78.518023, 34.883846],\n\t\t\t\t\t\t[-78.515661, 34.883000],\n\t\t\t\t\t\t[-78.515626, 34.881958],\n\t\t\t\t\t\t[-78.513870, 34.881916],\n\t\t\t\t\t\t[-78.514457, 34.880927],\n\t\t\t\t\t\t[-78.512906, 34.880906],\n\t\t\t\t\t\t[-78.514079, 34.875956],\n\t\t\t\t\t\t[-78.515010, 34.875567],\n\t\t\t\t\t\t[-78.514758, 34.873734],\n\t\t\t\t\t\t[-78.513379, 34.873385],\n\t\t\t\t\t\t[-78.513300, 34.869287],\n\t\t\t\t\t\t[-78.511755, 34.867961],\n\t\t\t\t\t\t[-78.506940, 34.866669],\n\t\t\t\t\t\t[-78.506006, 34.865179],\n\t\t\t\t\t\t[-78.502835, 34.864663],\n\t\t\t\t\t\t[-78.502189, 34.861549],\n\t\t\t\t\t\t[-78.498938, 34.859302],\n\t\t\t\t\t\t[-78.496564, 34.859471],\n\t\t\t\t\t\t[-78.494838, 34.858841],\n\t\t\t\t\t\t[-78.495410, 34.857678],\n\t\t\t\t\t\t[-78.494610, 34.856464],\n\t\t\t\t\t\t[-78.901096, 34.834789],\n\t\t\t\t\t\t[-79.034715, 34.953584],\n\t\t\t\t\t\t[-79.035766, 34.955329],\n\t\t\t\t\t\t[-79.036447, 34.955582],\n\t\t\t\t\t\t[-79.036926, 34.956926],\n\t\t\t\t\t\t[-79.083163, 35.032662],\n\t\t\t\t\t\t[-79.097671, 35.174172],\n\t\t\t\t\t\t[-79.096389, 35.177682],\n\t\t\t\t\t\t[-79.098726, 35.183439],\n\t\t\t\t\t\t[-79.098031, 35.188359],\n\t\t\t\t\t\t[-79.096130, 35.192181],\n\t\t\t\t\t\t[-78.941859, 35.219211],\n\t\t\t\t\t\t[-78.825828, 35.259287],\n\t\t\t\t\t\t[-78.617079, 35.245706]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37131\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"131\",\n\t\t\t\t\"NAME\": \"Northampton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 536.589000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.767117, 36.544752],\n\t\t\t\t\t\t[-77.296875, 36.544746],\n\t\t\t\t\t\t[-77.249690, 36.544745],\n\t\t\t\t\t\t[-77.164500, 36.546330],\n\t\t\t\t\t\t[-77.119577, 36.474139],\n\t\t\t\t\t\t[-77.208790, 36.246875],\n\t\t\t\t\t\t[-77.291810, 36.168490],\n\t\t\t\t\t\t[-77.300445, 36.164944],\n\t\t\t\t\t\t[-77.330993, 36.192774],\n\t\t\t\t\t\t[-77.350899, 36.191280],\n\t\t\t\t\t\t[-77.386724, 36.213662],\n\t\t\t\t\t\t[-77.441747, 36.324090],\n\t\t\t\t\t\t[-77.586041, 36.337015],\n\t\t\t\t\t\t[-77.557072, 36.418606],\n\t\t\t\t\t\t[-77.645496, 36.480956],\n\t\t\t\t\t\t[-77.897950, 36.506849],\n\t\t\t\t\t\t[-77.898943, 36.518158],\n\t\t\t\t\t\t[-77.899771, 36.544663],\n\t\t\t\t\t\t[-77.882357, 36.544737],\n\t\t\t\t\t\t[-77.875280, 36.544754],\n\t\t\t\t\t\t[-77.767117, 36.544752]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37137\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"137\",\n\t\t\t\t\"NAME\": \"Pamlico\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 336.537000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.839333, 34.959410],\n\t\t\t\t\t\t[-76.893266, 34.980285],\n\t\t\t\t\t\t[-76.896514, 34.981764],\n\t\t\t\t\t\t[-76.967297, 35.040655],\n\t\t\t\t\t\t[-76.935011, 35.105799],\n\t\t\t\t\t\t[-76.986960, 35.155811],\n\t\t\t\t\t\t[-76.895546, 35.253532],\n\t\t\t\t\t\t[-76.845457, 35.216045],\n\t\t\t\t\t\t[-76.632535, 35.235233],\n\t\t\t\t\t\t[-76.604962, 35.337751],\n\t\t\t\t\t\t[-76.602669, 35.336528],\n\t\t\t\t\t\t[-76.588055, 35.333156],\n\t\t\t\t\t\t[-76.554332, 35.332032],\n\t\t\t\t\t\t[-76.548712, 35.328659],\n\t\t\t\t\t\t[-76.500375, 35.321915],\n\t\t\t\t\t\t[-76.482389, 35.314046],\n\t\t\t\t\t\t[-76.472273, 35.294936],\n\t\t\t\t\t\t[-76.467776, 35.276951],\n\t\t\t\t\t\t[-76.467776, 35.261213],\n\t\t\t\t\t\t[-76.477893, 35.243228],\n\t\t\t\t\t\t[-76.483514, 35.240979],\n\t\t\t\t\t\t[-76.490258, 35.233111],\n\t\t\t\t\t\t[-76.491382, 35.220745],\n\t\t\t\t\t\t[-76.494755, 35.212877],\n\t\t\t\t\t\t[-76.504872, 35.207256],\n\t\t\t\t\t\t[-76.521733, 35.192643],\n\t\t\t\t\t\t[-76.536346, 35.174657],\n\t\t\t\t\t\t[-76.539719, 35.166788],\n\t\t\t\t\t\t[-76.536346, 35.149927],\n\t\t\t\t\t\t[-76.536346, 35.142058],\n\t\t\t\t\t\t[-76.546463, 35.122948],\n\t\t\t\t\t\t[-76.557704, 35.116204],\n\t\t\t\t\t\t[-76.561077, 35.108335],\n\t\t\t\t\t\t[-76.568945, 35.097094],\n\t\t\t\t\t\t[-76.575690, 35.092598],\n\t\t\t\t\t\t[-76.586931, 35.092598],\n\t\t\t\t\t\t[-76.592552, 35.083605],\n\t\t\t\t\t\t[-76.593676, 35.075736],\n\t\t\t\t\t\t[-76.600420, 35.067867],\n\t\t\t\t\t\t[-76.613910, 35.061123],\n\t\t\t\t\t\t[-76.622902, 35.061123],\n\t\t\t\t\t\t[-76.631895, 35.056626],\n\t\t\t\t\t\t[-76.639764, 35.051006],\n\t\t\t\t\t\t[-76.646509, 35.042013],\n\t\t\t\t\t\t[-76.646509, 35.025151],\n\t\t\t\t\t\t[-76.644562, 35.019799],\n\t\t\t\t\t\t[-76.711278, 34.981971],\n\t\t\t\t\t\t[-76.839333, 34.959410]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37149\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"149\",\n\t\t\t\t\"NAME\": \"Polk\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 237.789000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.969325, 35.187215],\n\t\t\t\t\t\t[-82.167676, 35.193699],\n\t\t\t\t\t\t[-82.176874, 35.193790],\n\t\t\t\t\t\t[-82.185513, 35.194355],\n\t\t\t\t\t\t[-82.195483, 35.194951],\n\t\t\t\t\t\t[-82.216217, 35.196044],\n\t\t\t\t\t\t[-82.230517, 35.196764],\n\t\t\t\t\t\t[-82.230915, 35.196784],\n\t\t\t\t\t\t[-82.257515, 35.198636],\n\t\t\t\t\t\t[-82.288453, 35.198605],\n\t\t\t\t\t\t[-82.352430, 35.206595],\n\t\t\t\t\t\t[-82.346089, 35.286038],\n\t\t\t\t\t\t[-82.261456, 35.392984],\n\t\t\t\t\t\t[-82.115159, 35.387390],\n\t\t\t\t\t\t[-81.968788, 35.257764],\n\t\t\t\t\t\t[-81.969325, 35.187215]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37155\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"155\",\n\t\t\t\t\"NAME\": \"Robeson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 949.221000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.461318, 34.630126],\n\t\t\t\t\t\t[-79.461754, 34.630432],\n\t\t\t\t\t\t[-79.364296, 34.737549],\n\t\t\t\t\t\t[-79.359305, 34.743079],\n\t\t\t\t\t\t[-79.349143, 34.838476],\n\t\t\t\t\t\t[-79.191423, 34.833377],\n\t\t\t\t\t\t[-79.034715, 34.953584],\n\t\t\t\t\t\t[-78.901096, 34.834789],\n\t\t\t\t\t\t[-78.805744, 34.689267],\n\t\t\t\t\t\t[-78.871530, 34.482668],\n\t\t\t\t\t\t[-78.951088, 34.449026],\n\t\t\t\t\t\t[-79.071169, 34.299240],\n\t\t\t\t\t\t[-79.143242, 34.359817],\n\t\t\t\t\t\t[-79.151485, 34.366753],\n\t\t\t\t\t\t[-79.190739, 34.399751],\n\t\t\t\t\t\t[-79.192041, 34.401040],\n\t\t\t\t\t\t[-79.198982, 34.406699],\n\t\t\t\t\t\t[-79.323249, 34.514634],\n\t\t\t\t\t\t[-79.324854, 34.516282],\n\t\t\t\t\t\t[-79.331328, 34.521869],\n\t\t\t\t\t\t[-79.358317, 34.545358],\n\t\t\t\t\t\t[-79.450034, 34.621036],\n\t\t\t\t\t\t[-79.459766, 34.629027],\n\t\t\t\t\t\t[-79.461318, 34.630126]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42091\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"091\",\n\t\t\t\t\"NAME\": \"Montgomery\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 483.040000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-75.361066, 40.065543],\n\t\t\t\t\t\t[-75.525945, 40.148611],\n\t\t\t\t\t\t[-75.549174, 40.189542],\n\t\t\t\t\t\t[-75.557148, 40.207213],\n\t\t\t\t\t\t[-75.562878, 40.197361],\n\t\t\t\t\t\t[-75.573338, 40.195303],\n\t\t\t\t\t\t[-75.592657, 40.225491],\n\t\t\t\t\t\t[-75.696782, 40.241863],\n\t\t\t\t\t\t[-75.695955, 40.242359],\n\t\t\t\t\t\t[-75.529694, 40.446995],\n\t\t\t\t\t\t[-75.484057, 40.418451],\n\t\t\t\t\t\t[-75.299774, 40.307835],\n\t\t\t\t\t\t[-75.106878, 40.192279],\n\t\t\t\t\t\t[-75.104874, 40.191109],\n\t\t\t\t\t\t[-75.015066, 40.137992],\n\t\t\t\t\t\t[-75.096733, 40.068989],\n\t\t\t\t\t\t[-75.087425, 40.063599],\n\t\t\t\t\t\t[-75.109406, 40.045840],\n\t\t\t\t\t\t[-75.124916, 40.054684],\n\t\t\t\t\t\t[-75.129021, 40.057091],\n\t\t\t\t\t\t[-75.135193, 40.061031],\n\t\t\t\t\t\t[-75.151596, 40.070328],\n\t\t\t\t\t\t[-75.176438, 40.084649],\n\t\t\t\t\t\t[-75.264431, 40.054094],\n\t\t\t\t\t\t[-75.249214, 39.990547],\n\t\t\t\t\t\t[-75.256119, 39.987301],\n\t\t\t\t\t\t[-75.263687, 39.982658],\n\t\t\t\t\t\t[-75.276482, 39.976959],\n\t\t\t\t\t\t[-75.349457, 40.052905],\n\t\t\t\t\t\t[-75.356534, 40.062787],\n\t\t\t\t\t\t[-75.361066, 40.065543]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42097\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"097\",\n\t\t\t\t\"NAME\": \"Northumberland\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 458.368000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.896114, 41.139070],\n\t\t\t\t\t\t[-76.888145, 41.153807],\n\t\t\t\t\t\t[-76.880963, 41.158044],\n\t\t\t\t\t\t[-76.788659, 41.175762],\n\t\t\t\t\t\t[-76.732672, 41.172040],\n\t\t\t\t\t\t[-76.792878, 40.946583],\n\t\t\t\t\t\t[-76.661348, 40.967996],\n\t\t\t\t\t\t[-76.557013, 40.938617],\n\t\t\t\t\t\t[-76.528034, 40.882515],\n\t\t\t\t\t\t[-76.501312, 40.824817],\n\t\t\t\t\t\t[-76.409667, 40.833624],\n\t\t\t\t\t\t[-76.380152, 40.775511],\n\t\t\t\t\t\t[-76.701624, 40.658082],\n\t\t\t\t\t\t[-76.890875, 40.610096],\n\t\t\t\t\t\t[-76.949414, 40.628163],\n\t\t\t\t\t\t[-76.947365, 40.629517],\n\t\t\t\t\t\t[-76.939749, 40.638378],\n\t\t\t\t\t\t[-76.855362, 40.728821],\n\t\t\t\t\t\t[-76.855523, 40.737119],\n\t\t\t\t\t\t[-76.855995, 40.737931],\n\t\t\t\t\t\t[-76.856979, 40.746001],\n\t\t\t\t\t\t[-76.856681, 40.747311],\n\t\t\t\t\t\t[-76.857521, 40.749612],\n\t\t\t\t\t\t[-76.856445, 40.755810],\n\t\t\t\t\t\t[-76.857209, 40.759446],\n\t\t\t\t\t\t[-76.857719, 40.764374],\n\t\t\t\t\t\t[-76.857522, 40.766000],\n\t\t\t\t\t\t[-76.858352, 40.769536],\n\t\t\t\t\t\t[-76.859252, 40.777043],\n\t\t\t\t\t\t[-76.858513, 40.779416],\n\t\t\t\t\t\t[-76.858703, 40.781521],\n\t\t\t\t\t\t[-76.856292, 40.789697],\n\t\t\t\t\t\t[-76.856094, 40.791211],\n\t\t\t\t\t\t[-76.852163, 40.800839],\n\t\t\t\t\t\t[-76.848912, 40.805989],\n\t\t\t\t\t\t[-76.849660, 40.808205],\n\t\t\t\t\t\t[-76.849280, 40.809755],\n\t\t\t\t\t\t[-76.845395, 40.815175],\n\t\t\t\t\t\t[-76.840626, 40.821324],\n\t\t\t\t\t\t[-76.836338, 40.825761],\n\t\t\t\t\t\t[-76.829685, 40.831029],\n\t\t\t\t\t\t[-76.825648, 40.835503],\n\t\t\t\t\t\t[-76.820895, 40.839898],\n\t\t\t\t\t\t[-76.817522, 40.843782],\n\t\t\t\t\t\t[-76.812728, 40.847457],\n\t\t\t\t\t\t[-76.812242, 40.850305],\n\t\t\t\t\t\t[-76.811228, 40.851712],\n\t\t\t\t\t\t[-76.808366, 40.857369],\n\t\t\t\t\t\t[-76.806246, 40.862535],\n\t\t\t\t\t\t[-76.801561, 40.870634],\n\t\t\t\t\t\t[-76.799523, 40.874749],\n\t\t\t\t\t\t[-76.798921, 40.876901],\n\t\t\t\t\t\t[-76.798714, 40.878366],\n\t\t\t\t\t\t[-76.800242, 40.881994],\n\t\t\t\t\t\t[-76.882280, 40.971334],\n\t\t\t\t\t\t[-76.896114, 41.139070]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42103\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"103\",\n\t\t\t\t\"NAME\": \"Pike\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 544.961000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-74.966759, 41.093425],\n\t\t\t\t\t\t[-74.968389, 41.087797],\n\t\t\t\t\t\t[-74.980674, 41.078178],\n\t\t\t\t\t\t[-75.156507, 41.150341],\n\t\t\t\t\t\t[-75.129721, 41.252101],\n\t\t\t\t\t\t[-75.359184, 41.239206],\n\t\t\t\t\t\t[-75.311143, 41.331439],\n\t\t\t\t\t\t[-75.050074, 41.606893],\n\t\t\t\t\t\t[-75.040490, 41.569688],\n\t\t\t\t\t\t[-74.984226, 41.506299],\n\t\t\t\t\t\t[-74.939760, 41.483371],\n\t\t\t\t\t\t[-74.912517, 41.475605],\n\t\t\t\t\t\t[-74.891948, 41.448853],\n\t\t\t\t\t\t[-74.876721, 41.440338],\n\t\t\t\t\t\t[-74.799165, 41.430451],\n\t\t\t\t\t\t[-74.755950, 41.426804],\n\t\t\t\t\t\t[-74.752562, 41.426518],\n\t\t\t\t\t\t[-74.691129, 41.367324],\n\t\t\t\t\t\t[-74.689767, 41.361558],\n\t\t\t\t\t\t[-74.694914, 41.357423],\n\t\t\t\t\t\t[-74.761730, 41.336398],\n\t\t\t\t\t\t[-74.795847, 41.318951],\n\t\t\t\t\t\t[-74.830057, 41.287200],\n\t\t\t\t\t\t[-74.838366, 41.277286],\n\t\t\t\t\t\t[-74.861678, 41.241575],\n\t\t\t\t\t\t[-74.867267, 41.228861],\n\t\t\t\t\t\t[-74.864356, 41.224854],\n\t\t\t\t\t\t[-74.867287, 41.208754],\n\t\t\t\t\t\t[-74.882139, 41.180836],\n\t\t\t\t\t\t[-74.923169, 41.138146],\n\t\t\t\t\t\t[-74.974338, 41.103912],\n\t\t\t\t\t\t[-74.969434, 41.096074],\n\t\t\t\t\t\t[-74.967389, 41.094049],\n\t\t\t\t\t\t[-74.966759, 41.093425]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US34025\",\n\t\t\t\t\"STATE\": \"34\",\n\t\t\t\t\"COUNTY\": \"025\",\n\t\t\t\t\"NAME\": \"Monmouth\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 468.793000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-74.408085, 40.273791],\n\t\t\t\t\t\t[-74.393517, 40.279574],\n\t\t\t\t\t\t[-74.394112, 40.288463],\n\t\t\t\t\t\t[-74.381135, 40.301546],\n\t\t\t\t\t\t[-74.378590, 40.304116],\n\t\t\t\t\t\t[-74.360699, 40.318386],\n\t\t\t\t\t\t[-74.225035, 40.453301],\n\t\t\t\t\t\t[-74.224047, 40.452919],\n\t\t\t\t\t\t[-74.222959, 40.452499],\n\t\t\t\t\t\t[-74.209788, 40.447407],\n\t\t\t\t\t\t[-74.206188, 40.440707],\n\t\t\t\t\t\t[-74.206419, 40.438789],\n\t\t\t\t\t\t[-74.208655, 40.437520],\n\t\t\t\t\t\t[-74.207205, 40.435434],\n\t\t\t\t\t\t[-74.202128, 40.438940],\n\t\t\t\t\t\t[-74.193908, 40.440995],\n\t\t\t\t\t\t[-74.191309, 40.442990],\n\t\t\t\t\t\t[-74.187787, 40.447407],\n\t\t\t\t\t\t[-74.174787, 40.455607],\n\t\t\t\t\t\t[-74.174893, 40.454491],\n\t\t\t\t\t\t[-74.175074, 40.449144],\n\t\t\t\t\t\t[-74.176842, 40.447740],\n\t\t\t\t\t\t[-74.175346, 40.446607],\n\t\t\t\t\t\t[-74.169977, 40.450640],\n\t\t\t\t\t\t[-74.167009, 40.448737],\n\t\t\t\t\t\t[-74.166193, 40.447128],\n\t\t\t\t\t\t[-74.164029, 40.448312],\n\t\t\t\t\t\t[-74.163314, 40.448424],\n\t\t\t\t\t\t[-74.157787, 40.446607],\n\t\t\t\t\t\t[-74.153611, 40.447647],\n\t\t\t\t\t\t[-74.152686, 40.447344],\n\t\t\t\t\t\t[-74.151952, 40.448062],\n\t\t\t\t\t\t[-74.142886, 40.450407],\n\t\t\t\t\t\t[-74.139886, 40.453407],\n\t\t\t\t\t\t[-74.138415, 40.454468],\n\t\t\t\t\t\t[-74.135823, 40.455196],\n\t\t\t\t\t\t[-74.133727, 40.454672],\n\t\t\t\t\t\t[-74.131135, 40.453245],\n\t\t\t\t\t\t[-74.127466, 40.451061],\n\t\t\t\t\t\t[-74.124692, 40.449580],\n\t\t\t\t\t\t[-74.122327, 40.448258],\n\t\t\t\t\t\t[-74.116863, 40.446069],\n\t\t\t\t\t\t[-74.088085, 40.438407],\n\t\t\t\t\t\t[-74.076185, 40.433707],\n\t\t\t\t\t\t[-74.058984, 40.422708],\n\t\t\t\t\t\t[-74.047884, 40.418908],\n\t\t\t\t\t\t[-74.006383, 40.411108],\n\t\t\t\t\t\t[-73.998505, 40.410911],\n\t\t\t\t\t\t[-73.995486, 40.419472],\n\t\t\t\t\t\t[-73.991682, 40.442908],\n\t\t\t\t\t\t[-74.006077, 40.464625],\n\t\t\t\t\t\t[-74.017783, 40.472207],\n\t\t\t\t\t\t[-74.017917, 40.474338],\n\t\t\t\t\t\t[-74.014031, 40.476471],\n\t\t\t\t\t\t[-74.007100, 40.475298],\n\t\t\t\t\t\t[-73.995683, 40.468707],\n\t\t\t\t\t\t[-73.978282, 40.440208],\n\t\t\t\t\t\t[-73.976982, 40.408508],\n\t\t\t\t\t\t[-73.971381, 40.371709],\n\t\t\t\t\t\t[-73.971381, 40.348010],\n\t\t\t\t\t\t[-73.977442, 40.299373],\n\t\t\t\t\t\t[-73.981681, 40.279411],\n\t\t\t\t\t\t[-73.993292, 40.237669],\n\t\t\t\t\t\t[-74.016017, 40.166914],\n\t\t\t\t\t\t[-74.030181, 40.122814],\n\t\t\t\t\t\t[-74.034080, 40.103115],\n\t\t\t\t\t\t[-74.031861, 40.101047],\n\t\t\t\t\t\t[-74.108030, 40.136873],\n\t\t\t\t\t\t[-74.224411, 40.108982],\n\t\t\t\t\t\t[-74.263763, 40.168264],\n\t\t\t\t\t\t[-74.406777, 40.172355],\n\t\t\t\t\t\t[-74.553105, 40.079130],\n\t\t\t\t\t\t[-74.587847, 40.138237],\n\t\t\t\t\t\t[-74.484287, 40.253299],\n\t\t\t\t\t\t[-74.460776, 40.251358],\n\t\t\t\t\t\t[-74.408085, 40.273791]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US34039\",\n\t\t\t\t\"STATE\": \"34\",\n\t\t\t\t\"COUNTY\": \"039\",\n\t\t\t\t\"NAME\": \"Union\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 102.855000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-74.206731, 40.594569],\n\t\t\t\t\t\t[-74.215101, 40.604074],\n\t\t\t\t\t\t[-74.231748, 40.598881],\n\t\t\t\t\t\t[-74.247790, 40.600103],\n\t\t\t\t\t\t[-74.253810, 40.600989],\n\t\t\t\t\t\t[-74.255822, 40.602194],\n\t\t\t\t\t\t[-74.258114, 40.602250],\n\t\t\t\t\t\t[-74.291391, 40.591903],\n\t\t\t\t\t\t[-74.303392, 40.608903],\n\t\t\t\t\t\t[-74.372794, 40.602303],\n\t\t\t\t\t\t[-74.394634, 40.600901],\n\t\t\t\t\t\t[-74.399895, 40.600603],\n\t\t\t\t\t\t[-74.416106, 40.598910],\n\t\t\t\t\t\t[-74.424699, 40.598513],\n\t\t\t\t\t\t[-74.437334, 40.597188],\n\t\t\t\t\t\t[-74.456800, 40.595500],\n\t\t\t\t\t\t[-74.463351, 40.599245],\n\t\t\t\t\t\t[-74.438040, 40.609910],\n\t\t\t\t\t\t[-74.417038, 40.628077],\n\t\t\t\t\t\t[-74.408264, 40.644185],\n\t\t\t\t\t\t[-74.461231, 40.673397],\n\t\t\t\t\t\t[-74.371923, 40.739229],\n\t\t\t\t\t\t[-74.354942, 40.734500],\n\t\t\t\t\t\t[-74.342682, 40.725181],\n\t\t\t\t\t\t[-74.325596, 40.717075],\n\t\t\t\t\t\t[-74.321408, 40.719072],\n\t\t\t\t\t\t[-74.318992, 40.719201],\n\t\t\t\t\t\t[-74.315991, 40.719199],\n\t\t\t\t\t\t[-74.315293, 40.718601],\n\t\t\t\t\t\t[-74.313793, 40.718001],\n\t\t\t\t\t\t[-74.312794, 40.717101],\n\t\t\t\t\t\t[-74.311691, 40.715601],\n\t\t\t\t\t\t[-74.309791, 40.715501],\n\t\t\t\t\t\t[-74.309388, 40.714901],\n\t\t\t\t\t\t[-74.308793, 40.714508],\n\t\t\t\t\t\t[-74.307589, 40.714201],\n\t\t\t\t\t\t[-74.306991, 40.714002],\n\t\t\t\t\t\t[-74.305393, 40.713701],\n\t\t\t\t\t\t[-74.303691, 40.713300],\n\t\t\t\t\t\t[-74.302695, 40.713601],\n\t\t\t\t\t\t[-74.302092, 40.713301],\n\t\t\t\t\t\t[-74.301230, 40.713472],\n\t\t\t\t\t\t[-74.285870, 40.722225],\n\t\t\t\t\t\t[-74.222452, 40.707249],\n\t\t\t\t\t\t[-74.201589, 40.686602],\n\t\t\t\t\t\t[-74.136703, 40.674444],\n\t\t\t\t\t\t[-74.153041, 40.654800],\n\t\t\t\t\t\t[-74.160288, 40.645903],\n\t\t\t\t\t\t[-74.161397, 40.644092],\n\t\t\t\t\t\t[-74.181083, 40.646484],\n\t\t\t\t\t\t[-74.186027, 40.646076],\n\t\t\t\t\t\t[-74.189106, 40.643832],\n\t\t\t\t\t\t[-74.202223, 40.631053],\n\t\t\t\t\t\t[-74.206731, 40.594569]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US35003\",\n\t\t\t\t\"STATE\": \"35\",\n\t\t\t\t\"COUNTY\": \"003\",\n\t\t\t\t\"NAME\": \"Catron\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 6923.690000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-108.000597, 33.201563],\n\t\t\t\t\t\t[-108.449988, 33.200997],\n\t\t\t\t\t\t[-109.047237, 33.208965],\n\t\t\t\t\t\t[-109.046827, 33.365272],\n\t\t\t\t\t\t[-109.046909, 33.365570],\n\t\t\t\t\t\t[-109.047045, 33.369280],\n\t\t\t\t\t\t[-109.046870, 33.372654],\n\t\t\t\t\t\t[-109.046627, 33.778233],\n\t\t\t\t\t\t[-109.046182, 34.522393],\n\t\t\t\t\t\t[-109.046182, 34.522553],\n\t\t\t\t\t\t[-109.046156, 34.579291],\n\t\t\t\t\t\t[-107.724854, 34.578060],\n\t\t\t\t\t\t[-107.725461, 34.259775],\n\t\t\t\t\t\t[-107.716301, 34.259856],\n\t\t\t\t\t\t[-107.712713, 33.476892],\n\t\t\t\t\t\t[-108.000602, 33.478014],\n\t\t\t\t\t\t[-108.000597, 33.201563]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US35005\",\n\t\t\t\t\"STATE\": \"35\",\n\t\t\t\t\"COUNTY\": \"005\",\n\t\t\t\t\"NAME\": \"Chaves\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 6065.275000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-103.945949, 34.082784],\n\t\t\t\t\t\t[-103.841619, 34.081681],\n\t\t\t\t\t\t[-103.841906, 33.819252],\n\t\t\t\t\t\t[-103.716794, 33.819300],\n\t\t\t\t\t\t[-103.718260, 33.656136],\n\t\t\t\t\t\t[-103.509726, 33.657218],\n\t\t\t\t\t\t[-103.510267, 33.570256],\n\t\t\t\t\t\t[-103.720742, 33.569678],\n\t\t\t\t\t\t[-103.721380, 33.395905],\n\t\t\t\t\t\t[-103.766433, 33.395491],\n\t\t\t\t\t\t[-103.766341, 32.965232],\n\t\t\t\t\t\t[-103.814600, 32.965203],\n\t\t\t\t\t\t[-103.828855, 32.965460],\n\t\t\t\t\t\t[-104.841229, 32.963303],\n\t\t\t\t\t\t[-104.842026, 32.520705],\n\t\t\t\t\t\t[-104.851525, 32.520505],\n\t\t\t\t\t\t[-105.353907, 32.518769],\n\t\t\t\t\t\t[-105.352550, 32.961976],\n\t\t\t\t\t\t[-105.316151, 32.962014],\n\t\t\t\t\t\t[-105.316882, 33.132218],\n\t\t\t\t\t\t[-104.905762, 33.138626],\n\t\t\t\t\t\t[-104.903820, 33.306184],\n\t\t\t\t\t\t[-104.885186, 33.306267],\n\t\t\t\t\t\t[-104.893141, 34.088304],\n\t\t\t\t\t\t[-104.786238, 34.087763],\n\t\t\t\t\t\t[-104.785964, 34.000057],\n\t\t\t\t\t\t[-104.156269, 33.995413],\n\t\t\t\t\t\t[-104.155841, 34.083320],\n\t\t\t\t\t\t[-103.945949, 34.082784]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US35009\",\n\t\t\t\t\"STATE\": \"35\",\n\t\t\t\t\"COUNTY\": \"009\",\n\t\t\t\t\"NAME\": \"Curry\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1404.797000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-103.042521, 34.954101],\n\t\t\t\t\t\t[-103.042521, 34.899546],\n\t\t\t\t\t\t[-103.042781, 34.850243],\n\t\t\t\t\t\t[-103.042770, 34.792224],\n\t\t\t\t\t\t[-103.042769, 34.747361],\n\t\t\t\t\t\t[-103.042827, 34.671188],\n\t\t\t\t\t\t[-103.043072, 34.619782],\n\t\t\t\t\t\t[-103.043594, 34.462660],\n\t\t\t\t\t\t[-103.043589, 34.459774],\n\t\t\t\t\t\t[-103.043588, 34.459662],\n\t\t\t\t\t\t[-103.043582, 34.455657],\n\t\t\t\t\t\t[-103.043538, 34.405463],\n\t\t\t\t\t\t[-103.043583, 34.400678],\n\t\t\t\t\t\t[-103.043611, 34.397105],\n\t\t\t\t\t\t[-103.043585, 34.393716],\n\t\t\t\t\t\t[-103.043613, 34.390442],\n\t\t\t\t\t\t[-103.043613, 34.388679],\n\t\t\t\t\t\t[-103.043614, 34.384969],\n\t\t\t\t\t\t[-103.043630, 34.384690],\n\t\t\t\t\t\t[-103.043693, 34.383578],\n\t\t\t\t\t\t[-103.043919, 34.380916],\n\t\t\t\t\t\t[-103.043944, 34.379660],\n\t\t\t\t\t\t[-103.043946, 34.379555],\n\t\t\t\t\t\t[-103.043979, 34.312764],\n\t\t\t\t\t\t[-103.043979, 34.312749],\n\t\t\t\t\t\t[-103.043936, 34.302585],\n\t\t\t\t\t\t[-103.740017, 34.303076],\n\t\t\t\t\t\t[-103.738232, 34.604671],\n\t\t\t\t\t\t[-103.706528, 34.604935],\n\t\t\t\t\t\t[-103.705788, 34.692463],\n\t\t\t\t\t\t[-103.496024, 34.691473],\n\t\t\t\t\t\t[-103.495379, 34.778699],\n\t\t\t\t\t\t[-103.390274, 34.778122],\n\t\t\t\t\t\t[-103.389359, 34.865320],\n\t\t\t\t\t\t[-103.284157, 34.864990],\n\t\t\t\t\t\t[-103.282998, 34.953957],\n\t\t\t\t\t\t[-103.042521, 34.954101]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US30061\",\n\t\t\t\t\"STATE\": \"30\",\n\t\t\t\t\"COUNTY\": \"061\",\n\t\t\t\t\"NAME\": \"Mineral\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1219.437000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-114.797235, 47.268901],\n\t\t\t\t\t\t[-114.775739, 47.225548],\n\t\t\t\t\t\t[-114.712170, 47.225590],\n\t\t\t\t\t\t[-114.712026, 47.182124],\n\t\t\t\t\t\t[-114.586753, 47.123690],\n\t\t\t\t\t\t[-114.565985, 47.067339],\n\t\t\t\t\t\t[-114.483637, 47.067326],\n\t\t\t\t\t\t[-114.419662, 47.023267],\n\t\t\t\t\t\t[-114.525403, 47.009321],\n\t\t\t\t\t\t[-114.565991, 46.963758],\n\t\t\t\t\t\t[-114.548929, 46.747366],\n\t\t\t\t\t\t[-114.675505, 46.719516],\n\t\t\t\t\t\t[-114.690630, 46.719961],\n\t\t\t\t\t\t[-114.717645, 46.713994],\n\t\t\t\t\t\t[-114.739253, 46.715167],\n\t\t\t\t\t\t[-114.767180, 46.738828],\n\t\t\t\t\t\t[-114.825923, 46.781949],\n\t\t\t\t\t\t[-114.853279, 46.799794],\n\t\t\t\t\t\t[-114.888146, 46.808573],\n\t\t\t\t\t\t[-114.920459, 46.827697],\n\t\t\t\t\t\t[-114.927837, 46.835990],\n\t\t\t\t\t\t[-114.938713, 46.869021],\n\t\t\t\t\t\t[-114.936015, 46.899761],\n\t\t\t\t\t\t[-114.975789, 46.932865],\n\t\t\t\t\t\t[-115.072985, 47.013760],\n\t\t\t\t\t\t[-115.099178, 47.048129],\n\t\t\t\t\t\t[-115.193221, 47.133026],\n\t\t\t\t\t\t[-115.200547, 47.139154],\n\t\t\t\t\t\t[-115.266723, 47.181101],\n\t\t\t\t\t\t[-115.292110, 47.209861],\n\t\t\t\t\t\t[-115.294785, 47.220914],\n\t\t\t\t\t\t[-115.320184, 47.255717],\n\t\t\t\t\t\t[-115.339201, 47.261623],\n\t\t\t\t\t\t[-115.421645, 47.271736],\n\t\t\t\t\t\t[-115.479255, 47.282089],\n\t\t\t\t\t\t[-115.523690, 47.298919],\n\t\t\t\t\t\t[-115.551309, 47.333856],\n\t\t\t\t\t\t[-115.561439, 47.351887],\n\t\t\t\t\t\t[-115.576836, 47.366825],\n\t\t\t\t\t\t[-115.661341, 47.402663],\n\t\t\t\t\t\t[-115.628695, 47.479641],\n\t\t\t\t\t\t[-115.282381, 47.486897],\n\t\t\t\t\t\t[-114.979291, 47.395519],\n\t\t\t\t\t\t[-114.968943, 47.312617],\n\t\t\t\t\t\t[-114.797235, 47.268901]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US38001\",\n\t\t\t\t\"STATE\": \"38\",\n\t\t\t\t\"COUNTY\": \"001\",\n\t\t\t\t\"NAME\": \"Adams\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 987.619000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-101.998618, 45.944556],\n\t\t\t\t\t\t[-101.998703, 45.944557],\n\t\t\t\t\t\t[-102.000425, 45.944581],\n\t\t\t\t\t\t[-102.000656, 45.944515],\n\t\t\t\t\t\t[-102.000679, 45.944515],\n\t\t\t\t\t\t[-102.060930, 45.944622],\n\t\t\t\t\t\t[-102.085122, 45.944642],\n\t\t\t\t\t\t[-102.087555, 45.944598],\n\t\t\t\t\t\t[-102.124628, 45.944813],\n\t\t\t\t\t\t[-102.125429, 45.944652],\n\t\t\t\t\t\t[-102.135269, 45.944586],\n\t\t\t\t\t\t[-102.145356, 45.944659],\n\t\t\t\t\t\t[-102.156393, 45.944663],\n\t\t\t\t\t\t[-102.157965, 45.944641],\n\t\t\t\t\t\t[-102.159439, 45.944641],\n\t\t\t\t\t\t[-102.176698, 45.944622],\n\t\t\t\t\t\t[-102.176993, 45.944622],\n\t\t\t\t\t\t[-102.217867, 45.944711],\n\t\t\t\t\t\t[-102.328230, 45.944806],\n\t\t\t\t\t\t[-102.353384, 45.944984],\n\t\t\t\t\t\t[-102.354283, 45.944901],\n\t\t\t\t\t\t[-102.392696, 45.944951],\n\t\t\t\t\t\t[-102.392767, 45.944979],\n\t\t\t\t\t\t[-102.396359, 45.944916],\n\t\t\t\t\t\t[-102.398575, 45.944868],\n\t\t\t\t\t\t[-102.406176, 45.944997],\n\t\t\t\t\t\t[-102.410346, 45.945079],\n\t\t\t\t\t\t[-102.420173, 45.945070],\n\t\t\t\t\t\t[-102.425358, 45.944990],\n\t\t\t\t\t\t[-102.425397, 45.945041],\n\t\t\t\t\t\t[-102.446419, 45.945083],\n\t\t\t\t\t\t[-102.459586, 45.945081],\n\t\t\t\t\t\t[-102.467563, 45.945159],\n\t\t\t\t\t\t[-102.476024, 45.945183],\n\t\t\t\t\t\t[-102.550947, 45.945015],\n\t\t\t\t\t\t[-102.558579, 45.945129],\n\t\t\t\t\t\t[-102.642555, 45.945404],\n\t\t\t\t\t\t[-102.651620, 45.945450],\n\t\t\t\t\t\t[-102.666684, 45.945307],\n\t\t\t\t\t\t[-102.672474, 45.945244],\n\t\t\t\t\t\t[-102.674077, 45.945274],\n\t\t\t\t\t\t[-102.704871, 45.945072],\n\t\t\t\t\t\t[-102.880252, 45.945069],\n\t\t\t\t\t\t[-102.920482, 45.945038],\n\t\t\t\t\t\t[-102.942070, 45.945092],\n\t\t\t\t\t\t[-102.989902, 45.945211],\n\t\t\t\t\t\t[-102.995345, 45.945166],\n\t\t\t\t\t\t[-102.995668, 45.945167],\n\t\t\t\t\t\t[-102.995454, 46.280713],\n\t\t\t\t\t\t[-102.969946, 46.281144],\n\t\t\t\t\t\t[-102.924547, 46.281519],\n\t\t\t\t\t\t[-102.497449, 46.283196],\n\t\t\t\t\t\t[-102.497475, 46.206077],\n\t\t\t\t\t\t[-101.997888, 46.205480],\n\t\t\t\t\t\t[-101.998575, 46.053461],\n\t\t\t\t\t\t[-101.998618, 45.944556]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US09011\",\n\t\t\t\t\"STATE\": \"09\",\n\t\t\t\t\"COUNTY\": \"011\",\n\t\t\t\t\"NAME\": \"New London\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 664.878000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-72.157546, 41.657627],\n\t\t\t\t\t\t[-72.153391, 41.665643],\n\t\t\t\t\t\t[-72.120328, 41.661925],\n\t\t\t\t\t\t[-72.105651, 41.659528],\n\t\t\t\t\t\t[-72.103523, 41.659305],\n\t\t\t\t\t\t[-72.062051, 41.652239],\n\t\t\t\t\t\t[-71.954983, 41.634799],\n\t\t\t\t\t\t[-71.789465, 41.640017],\n\t\t\t\t\t\t[-71.789356, 41.596910],\n\t\t\t\t\t\t[-71.789359, 41.596852],\n\t\t\t\t\t\t[-71.797674, 41.416910],\n\t\t\t\t\t\t[-71.797683, 41.416709],\n\t\t\t\t\t\t[-71.818390, 41.419599],\n\t\t\t\t\t\t[-71.839649, 41.412119],\n\t\t\t\t\t\t[-71.842563, 41.409855],\n\t\t\t\t\t\t[-71.843472, 41.405830],\n\t\t\t\t\t\t[-71.842131, 41.395359],\n\t\t\t\t\t\t[-71.833443, 41.384524],\n\t\t\t\t\t\t[-71.831613, 41.370899],\n\t\t\t\t\t\t[-71.831240, 41.344645],\n\t\t\t\t\t\t[-71.832530, 41.341204],\n\t\t\t\t\t\t[-71.839782, 41.334690],\n\t\t\t\t\t\t[-71.859570, 41.322399],\n\t\t\t\t\t\t[-71.868235, 41.330941],\n\t\t\t\t\t\t[-71.886302, 41.336410],\n\t\t\t\t\t\t[-71.916710, 41.332217],\n\t\t\t\t\t\t[-71.922092, 41.334518],\n\t\t\t\t\t\t[-71.923282, 41.335113],\n\t\t\t\t\t\t[-71.936284, 41.337959],\n\t\t\t\t\t\t[-71.945652, 41.337799],\n\t\t\t\t\t\t[-71.956747, 41.329871],\n\t\t\t\t\t\t[-71.970955, 41.324526],\n\t\t\t\t\t\t[-71.979447, 41.329987],\n\t\t\t\t\t\t[-71.982194, 41.329861],\n\t\t\t\t\t\t[-71.988153, 41.320577],\n\t\t\t\t\t\t[-72.021898, 41.316838],\n\t\t\t\t\t\t[-72.084487, 41.319634],\n\t\t\t\t\t\t[-72.094443, 41.314164],\n\t\t\t\t\t\t[-72.099820, 41.306998],\n\t\t\t\t\t\t[-72.111820, 41.299098],\n\t\t\t\t\t\t[-72.134221, 41.299398],\n\t\t\t\t\t\t[-72.161580, 41.310262],\n\t\t\t\t\t\t[-72.173922, 41.317597],\n\t\t\t\t\t\t[-72.177622, 41.322497],\n\t\t\t\t\t\t[-72.184122, 41.323997],\n\t\t\t\t\t\t[-72.191022, 41.323197],\n\t\t\t\t\t\t[-72.201422, 41.315697],\n\t\t\t\t\t\t[-72.203022, 41.313197],\n\t\t\t\t\t\t[-72.204022, 41.299097],\n\t\t\t\t\t\t[-72.212924, 41.291365],\n\t\t\t\t\t\t[-72.225276, 41.299047],\n\t\t\t\t\t\t[-72.235531, 41.300413],\n\t\t\t\t\t\t[-72.248161, 41.299488],\n\t\t\t\t\t\t[-72.251895, 41.298620],\n\t\t\t\t\t\t[-72.250515, 41.294386],\n\t\t\t\t\t\t[-72.251323, 41.289997],\n\t\t\t\t\t\t[-72.261487, 41.282926],\n\t\t\t\t\t\t[-72.317760, 41.277782],\n\t\t\t\t\t\t[-72.327595, 41.278460],\n\t\t\t\t\t\t[-72.333894, 41.282916],\n\t\t\t\t\t\t[-72.341460, 41.280110],\n\t\t\t\t\t\t[-72.433710, 41.423995],\n\t\t\t\t\t\t[-72.305531, 41.436282],\n\t\t\t\t\t\t[-72.322931, 41.518119],\n\t\t\t\t\t\t[-72.430767, 41.524567],\n\t\t\t\t\t\t[-72.466730, 41.583899],\n\t\t\t\t\t\t[-72.417229, 41.590598],\n\t\t\t\t\t\t[-72.410629, 41.601798],\n\t\t\t\t\t\t[-72.239559, 41.714191],\n\t\t\t\t\t\t[-72.237947, 41.713167],\n\t\t\t\t\t\t[-72.186651, 41.676283],\n\t\t\t\t\t\t[-72.157546, 41.657627]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US10001\",\n\t\t\t\t\"STATE\": \"10\",\n\t\t\t\t\"COUNTY\": \"001\",\n\t\t\t\t\"NAME\": \"Kent\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 586.179000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-75.747671, 39.143345],\n\t\t\t\t\t\t[-75.755953, 39.245958],\n\t\t\t\t\t\t[-75.755962, 39.246069],\n\t\t\t\t\t\t[-75.760104, 39.296817],\n\t\t\t\t\t\t[-75.584341, 39.308718],\n\t\t\t\t\t\t[-75.512372, 39.365656],\n\t\t\t\t\t\t[-75.511788, 39.365191],\n\t\t\t\t\t\t[-75.505276, 39.359169],\n\t\t\t\t\t\t[-75.494158, 39.354613],\n\t\t\t\t\t\t[-75.491797, 39.351845],\n\t\t\t\t\t\t[-75.494122, 39.346580],\n\t\t\t\t\t\t[-75.493148, 39.345527],\n\t\t\t\t\t\t[-75.491688, 39.343963],\n\t\t\t\t\t\t[-75.490377, 39.342818],\n\t\t\t\t\t\t[-75.479845, 39.337472],\n\t\t\t\t\t\t[-75.479963, 39.336577],\n\t\t\t\t\t\t[-75.469324, 39.330820],\n\t\t\t\t\t\t[-75.460423, 39.328236],\n\t\t\t\t\t\t[-75.439027, 39.313384],\n\t\t\t\t\t\t[-75.436936, 39.309379],\n\t\t\t\t\t\t[-75.435551, 39.297546],\n\t\t\t\t\t\t[-75.435374, 39.296676],\n\t\t\t\t\t\t[-75.427953, 39.285049],\n\t\t\t\t\t\t[-75.408376, 39.264698],\n\t\t\t\t\t\t[-75.402964, 39.254626],\n\t\t\t\t\t\t[-75.404823, 39.245898],\n\t\t\t\t\t\t[-75.405927, 39.243631],\n\t\t\t\t\t\t[-75.405716, 39.223834],\n\t\t\t\t\t\t[-75.404745, 39.222666],\n\t\t\t\t\t\t[-75.396892, 39.216141],\n\t\t\t\t\t\t[-75.393015, 39.204512],\n\t\t\t\t\t\t[-75.394790, 39.188354],\n\t\t\t\t\t\t[-75.398584, 39.186616],\n\t\t\t\t\t\t[-75.400144, 39.186456],\n\t\t\t\t\t\t[-75.408266, 39.174625],\n\t\t\t\t\t\t[-75.410625, 39.156246],\n\t\t\t\t\t\t[-75.401193, 39.088762],\n\t\t\t\t\t\t[-75.402035, 39.066885],\n\t\t\t\t\t\t[-75.400294, 39.065645],\n\t\t\t\t\t\t[-75.395806, 39.059211],\n\t\t\t\t\t\t[-75.396277, 39.057884],\n\t\t\t\t\t\t[-75.387914, 39.051174],\n\t\t\t\t\t\t[-75.379873, 39.048790],\n\t\t\t\t\t\t[-75.345763, 39.024857],\n\t\t\t\t\t\t[-75.340890, 39.019960],\n\t\t\t\t\t\t[-75.318354, 38.988191],\n\t\t\t\t\t\t[-75.314951, 38.980775],\n\t\t\t\t\t\t[-75.311607, 38.967637],\n\t\t\t\t\t\t[-75.312546, 38.951065],\n\t\t\t\t\t\t[-75.312546, 38.949280],\n\t\t\t\t\t\t[-75.311923, 38.945917],\n\t\t\t\t\t\t[-75.381339, 38.961285],\n\t\t\t\t\t\t[-75.555013, 38.835649],\n\t\t\t\t\t\t[-75.722599, 38.829859],\n\t\t\t\t\t\t[-75.722610, 38.830008],\n\t\t\t\t\t\t[-75.722882, 38.833156],\n\t\t\t\t\t\t[-75.724002, 38.846682],\n\t\t\t\t\t\t[-75.724061, 38.847781],\n\t\t\t\t\t\t[-75.725565, 38.868152],\n\t\t\t\t\t\t[-75.725829, 38.869296],\n\t\t\t\t\t\t[-75.745793, 39.114935],\n\t\t\t\t\t\t[-75.746121, 39.120318],\n\t\t\t\t\t\t[-75.747668, 39.143306],\n\t\t\t\t\t\t[-75.747671, 39.143345]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US10003\",\n\t\t\t\t\"STATE\": \"10\",\n\t\t\t\t\"COUNTY\": \"003\",\n\t\t\t\t\"NAME\": \"New Castle\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 426.286000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-75.564927, 39.583248],\n\t\t\t\t\t\t\t[-75.576271, 39.588144],\n\t\t\t\t\t\t\t[-75.578719, 39.591504],\n\t\t\t\t\t\t\t[-75.579615, 39.598656],\n\t\t\t\t\t\t\t[-75.565823, 39.590608],\n\t\t\t\t\t\t\t[-75.564927, 39.583248]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-75.555870, 39.605824],\n\t\t\t\t\t\t\t[-75.561934, 39.605216],\n\t\t\t\t\t\t\t[-75.567694, 39.613744],\n\t\t\t\t\t\t\t[-75.571759, 39.623584],\n\t\t\t\t\t\t\t[-75.570798, 39.626768],\n\t\t\t\t\t\t\t[-75.559446, 39.629812],\n\t\t\t\t\t\t\t[-75.555870, 39.605824]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-75.594846, 39.837286],\n\t\t\t\t\t\t\t[-75.593666, 39.837455],\n\t\t\t\t\t\t\t[-75.593082, 39.837500],\n\t\t\t\t\t\t\t[-75.579900, 39.838522],\n\t\t\t\t\t\t\t[-75.579849, 39.838526],\n\t\t\t\t\t\t\t[-75.539346, 39.838211],\n\t\t\t\t\t\t\t[-75.498843, 39.833312],\n\t\t\t\t\t\t\t[-75.453740, 39.820312],\n\t\t\t\t\t\t\t[-75.428038, 39.809212],\n\t\t\t\t\t\t\t[-75.415041, 39.801786],\n\t\t\t\t\t\t\t[-75.416095, 39.795830],\n\t\t\t\t\t\t\t[-75.437938, 39.783413],\n\t\t\t\t\t\t\t[-75.440623, 39.780926],\n\t\t\t\t\t\t\t[-75.448135, 39.773969],\n\t\t\t\t\t\t\t[-75.466249, 39.750769],\n\t\t\t\t\t\t\t[-75.466263, 39.750737],\n\t\t\t\t\t\t\t[-75.469239, 39.743613],\n\t\t\t\t\t\t\t[-75.474168, 39.735473],\n\t\t\t\t\t\t\t[-75.475384, 39.731057],\n\t\t\t\t\t\t\t[-75.504042, 39.698313],\n\t\t\t\t\t\t\t[-75.509742, 39.686113],\n\t\t\t\t\t\t\t[-75.529744, 39.692613],\n\t\t\t\t\t\t\t[-75.562246, 39.656712],\n\t\t\t\t\t\t\t[-75.587147, 39.651012],\n\t\t\t\t\t\t\t[-75.611969, 39.621968],\n\t\t\t\t\t\t\t[-75.613153, 39.620960],\n\t\t\t\t\t\t\t[-75.613377, 39.620288],\n\t\t\t\t\t\t\t[-75.614065, 39.618320],\n\t\t\t\t\t\t\t[-75.614929, 39.615952],\n\t\t\t\t\t\t\t[-75.614273, 39.614640],\n\t\t\t\t\t\t\t[-75.613345, 39.613056],\n\t\t\t\t\t\t\t[-75.613665, 39.612560],\n\t\t\t\t\t\t\t[-75.613233, 39.607408],\n\t\t\t\t\t\t\t[-75.613477, 39.606861],\n\t\t\t\t\t\t\t[-75.613473, 39.606832],\n\t\t\t\t\t\t\t[-75.613793, 39.606192],\n\t\t\t\t\t\t\t[-75.611905, 39.597568],\n\t\t\t\t\t\t\t[-75.611873, 39.597408],\n\t\t\t\t\t\t\t[-75.604640, 39.589920],\n\t\t\t\t\t\t\t[-75.603584, 39.588960],\n\t\t\t\t\t\t\t[-75.592224, 39.583568],\n\t\t\t\t\t\t\t[-75.591984, 39.583248],\n\t\t\t\t\t\t\t[-75.587744, 39.580672],\n\t\t\t\t\t\t\t[-75.587200, 39.580256],\n\t\t\t\t\t\t\t[-75.586608, 39.578880],\n\t\t\t\t\t\t\t[-75.586016, 39.578448],\n\t\t\t\t\t\t\t[-75.571599, 39.567728],\n\t\t\t\t\t\t\t[-75.570783, 39.567280],\n\t\t\t\t\t\t\t[-75.563034, 39.562240],\n\t\t\t\t\t\t\t[-75.564649, 39.559922],\n\t\t\t\t\t\t\t[-75.565636, 39.558509],\n\t\t\t\t\t\t\t[-75.569359, 39.540589],\n\t\t\t\t\t\t\t[-75.569418, 39.539124],\n\t\t\t\t\t\t\t[-75.570362, 39.527223],\n\t\t\t\t\t\t\t[-75.560728, 39.520472],\n\t\t\t\t\t\t\t[-75.566933, 39.508273],\n\t\t\t\t\t\t\t[-75.576436, 39.509195],\n\t\t\t\t\t\t\t[-75.587729, 39.496353],\n\t\t\t\t\t\t\t[-75.587729, 39.495369],\n\t\t\t\t\t\t\t[-75.593068, 39.479186],\n\t\t\t\t\t\t\t[-75.593068, 39.477996],\n\t\t\t\t\t\t\t[-75.589901, 39.462022],\n\t\t\t\t\t\t\t[-75.589439, 39.460812],\n\t\t\t\t\t\t\t[-75.580185, 39.450786],\n\t\t\t\t\t\t\t[-75.578914, 39.447880],\n\t\t\t\t\t\t\t[-75.570985, 39.442486],\n\t\t\t\t\t\t\t[-75.571830, 39.438897],\n\t\t\t\t\t\t\t[-75.555890, 39.430351],\n\t\t\t\t\t\t\t[-75.538512, 39.416502],\n\t\t\t\t\t\t\t[-75.535977, 39.409384],\n\t\t\t\t\t\t\t[-75.523583, 39.391583],\n\t\t\t\t\t\t\t[-75.521682, 39.387871],\n\t\t\t\t\t\t\t[-75.512996, 39.366153],\n\t\t\t\t\t\t\t[-75.512372, 39.365656],\n\t\t\t\t\t\t\t[-75.584341, 39.308718],\n\t\t\t\t\t\t\t[-75.760104, 39.296817],\n\t\t\t\t\t\t\t[-75.766667, 39.377216],\n\t\t\t\t\t\t\t[-75.766693, 39.377537],\n\t\t\t\t\t\t\t[-75.779240, 39.534737],\n\t\t\t\t\t\t\t[-75.779383, 39.536522],\n\t\t\t\t\t\t\t[-75.786890, 39.630575],\n\t\t\t\t\t\t\t[-75.787450, 39.637455],\n\t\t\t\t\t\t\t[-75.788616, 39.680742],\n\t\t\t\t\t\t\t[-75.788658, 39.681911],\n\t\t\t\t\t\t\t[-75.788395, 39.700031],\n\t\t\t\t\t\t\t[-75.788395, 39.700287],\n\t\t\t\t\t\t\t[-75.788359, 39.721811],\n\t\t\t\t\t\t\t[-75.739705, 39.772623],\n\t\t\t\t\t\t\t[-75.716969, 39.791998],\n\t\t\t\t\t\t\t[-75.685991, 39.811054],\n\t\t\t\t\t\t\t[-75.662822, 39.821150],\n\t\t\t\t\t\t\t[-75.641518, 39.828363],\n\t\t\t\t\t\t\t[-75.634706, 39.830164],\n\t\t\t\t\t\t\t[-75.595756, 39.837156],\n\t\t\t\t\t\t\t[-75.594846, 39.837286]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12009\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"009\",\n\t\t\t\t\"NAME\": \"Brevard\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1015.664000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.631314, 28.655188],\n\t\t\t\t\t\t[-80.616790, 28.634561],\n\t\t\t\t\t\t[-80.583884, 28.597705],\n\t\t\t\t\t\t[-80.574868, 28.585166],\n\t\t\t\t\t\t[-80.567361, 28.562353],\n\t\t\t\t\t\t[-80.560973, 28.530736],\n\t\t\t\t\t\t[-80.536115, 28.478647],\n\t\t\t\t\t\t[-80.525094, 28.459454],\n\t\t\t\t\t\t[-80.526732, 28.451705],\n\t\t\t\t\t\t[-80.562877, 28.437779],\n\t\t\t\t\t\t[-80.574136, 28.427764],\n\t\t\t\t\t\t[-80.587813, 28.410856],\n\t\t\t\t\t\t[-80.596174, 28.390682],\n\t\t\t\t\t\t[-80.603374, 28.363983],\n\t\t\t\t\t\t[-80.606874, 28.336484],\n\t\t\t\t\t\t[-80.608074, 28.311285],\n\t\t\t\t\t\t[-80.604214, 28.257733],\n\t\t\t\t\t\t[-80.589975, 28.177990],\n\t\t\t\t\t\t[-80.566432, 28.095630],\n\t\t\t\t\t\t[-80.547675, 28.048795],\n\t\t\t\t\t\t[-80.508871, 27.970477],\n\t\t\t\t\t\t[-80.446973, 27.861954],\n\t\t\t\t\t\t[-80.447084, 27.860755],\n\t\t\t\t\t\t[-80.509075, 27.822058],\n\t\t\t\t\t\t[-80.868881, 27.822522],\n\t\t\t\t\t\t[-80.862815, 28.347221],\n\t\t\t\t\t\t[-80.862881, 28.347439],\n\t\t\t\t\t\t[-80.862908, 28.347487],\n\t\t\t\t\t\t[-80.880890, 28.503633],\n\t\t\t\t\t\t[-80.987250, 28.612997],\n\t\t\t\t\t\t[-80.964466, 28.612992],\n\t\t\t\t\t\t[-80.967895, 28.790197],\n\t\t\t\t\t\t[-80.732244, 28.791237],\n\t\t\t\t\t\t[-80.713183, 28.761997],\n\t\t\t\t\t\t[-80.713108, 28.761882],\n\t\t\t\t\t\t[-80.712714, 28.761277],\n\t\t\t\t\t\t[-80.709725, 28.756692],\n\t\t\t\t\t\t[-80.708545, 28.755202],\n\t\t\t\t\t\t[-80.672232, 28.709363],\n\t\t\t\t\t\t[-80.663183, 28.697940],\n\t\t\t\t\t\t[-80.647924, 28.678677],\n\t\t\t\t\t\t[-80.647760, 28.678470],\n\t\t\t\t\t\t[-80.647288, 28.677875],\n\t\t\t\t\t\t[-80.645839, 28.675817],\n\t\t\t\t\t\t[-80.641436, 28.669564],\n\t\t\t\t\t\t[-80.639019, 28.666131],\n\t\t\t\t\t\t[-80.631314, 28.655188]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12075\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"075\",\n\t\t\t\t\"NAME\": \"Levy\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1118.206000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.405152, 29.330260],\n\t\t\t\t\t\t[-82.404594, 29.278860],\n\t\t\t\t\t\t[-82.403237, 29.215623],\n\t\t\t\t\t\t[-82.534860, 29.214680],\n\t\t\t\t\t\t[-82.535591, 29.044855],\n\t\t\t\t\t\t[-82.612653, 29.009271],\n\t\t\t\t\t\t[-82.689814, 29.033962],\n\t\t\t\t\t\t[-82.758906, 28.993277],\n\t\t\t\t\t\t[-82.760551, 28.993087],\n\t\t\t\t\t\t[-82.764055, 28.999707],\n\t\t\t\t\t\t[-82.759378, 29.006619],\n\t\t\t\t\t\t[-82.753513, 29.026496],\n\t\t\t\t\t\t[-82.759704, 29.054192],\n\t\t\t\t\t\t[-82.783328, 29.064619],\n\t\t\t\t\t\t[-82.780558, 29.073580],\n\t\t\t\t\t\t[-82.816925, 29.076215],\n\t\t\t\t\t\t[-82.823659, 29.098902],\n\t\t\t\t\t\t[-82.809483, 29.104620],\n\t\t\t\t\t\t[-82.801166, 29.105103],\n\t\t\t\t\t\t[-82.799117, 29.110647],\n\t\t\t\t\t\t[-82.798876, 29.114504],\n\t\t\t\t\t\t[-82.805703, 29.129848],\n\t\t\t\t\t\t[-82.804736, 29.146624],\n\t\t\t\t\t\t[-82.827073, 29.158425],\n\t\t\t\t\t\t[-82.858179, 29.162275],\n\t\t\t\t\t\t[-82.887211, 29.161741],\n\t\t\t\t\t\t[-82.922613, 29.169769],\n\t\t\t\t\t\t[-82.932405, 29.167891],\n\t\t\t\t\t\t[-82.945302, 29.167821],\n\t\t\t\t\t\t[-82.974676, 29.170910],\n\t\t\t\t\t\t[-82.979522, 29.171817],\n\t\t\t\t\t\t[-82.987162, 29.180094],\n\t\t\t\t\t\t[-82.991653, 29.180664],\n\t\t\t\t\t\t[-82.996144, 29.178074],\n\t\t\t\t\t\t[-83.018212, 29.151417],\n\t\t\t\t\t\t[-83.019071, 29.141324],\n\t\t\t\t\t\t[-83.030453, 29.134023],\n\t\t\t\t\t\t[-83.053207, 29.130839],\n\t\t\t\t\t\t[-83.056867, 29.146263],\n\t\t\t\t\t\t[-83.068249, 29.153135],\n\t\t\t\t\t\t[-83.060947, 29.170959],\n\t\t\t\t\t\t[-83.061162, 29.176113],\n\t\t\t\t\t\t[-83.065242, 29.184489],\n\t\t\t\t\t\t[-83.078986, 29.196944],\n\t\t\t\t\t\t[-83.087839, 29.216420],\n\t\t\t\t\t\t[-83.074734, 29.247975],\n\t\t\t\t\t\t[-83.077265, 29.255331],\n\t\t\t\t\t\t[-83.089013, 29.266502],\n\t\t\t\t\t\t[-83.107477, 29.268889],\n\t\t\t\t\t\t[-83.125567, 29.278845],\n\t\t\t\t\t\t[-83.128027, 29.282733],\n\t\t\t\t\t\t[-83.146445, 29.289194],\n\t\t\t\t\t\t[-83.149764, 29.289768],\n\t\t\t\t\t\t[-83.160730, 29.286611],\n\t\t\t\t\t\t[-83.166091, 29.288880],\n\t\t\t\t\t\t[-83.068522, 29.343953],\n\t\t\t\t\t\t[-82.984371, 29.471004],\n\t\t\t\t\t\t[-82.937374, 29.591312],\n\t\t\t\t\t\t[-82.656301, 29.564811],\n\t\t\t\t\t\t[-82.556511, 29.511982],\n\t\t\t\t\t\t[-82.556766, 29.480055],\n\t\t\t\t\t\t[-82.406620, 29.485048],\n\t\t\t\t\t\t[-82.405152, 29.330260]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05031\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"031\",\n\t\t\t\t\"NAME\": \"Craighead\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 707.206000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.288947, 35.996418],\n\t\t\t\t\t\t[-90.286736, 35.699914],\n\t\t\t\t\t\t[-91.036967, 35.708418],\n\t\t\t\t\t\t[-91.032499, 35.885070],\n\t\t\t\t\t\t[-90.872785, 35.880870],\n\t\t\t\t\t\t[-90.852064, 35.968092],\n\t\t\t\t\t\t[-90.387378, 35.964708],\n\t\t\t\t\t\t[-90.368718, 35.995812],\n\t\t\t\t\t\t[-90.342616, 35.995895],\n\t\t\t\t\t\t[-90.339434, 35.996033],\n\t\t\t\t\t\t[-90.292376, 35.996397],\n\t\t\t\t\t\t[-90.288947, 35.996418]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05035\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"035\",\n\t\t\t\t\"NAME\": \"Crittenden\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 609.760000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.074262, 35.218316],\n\t\t\t\t\t\t[-90.073354, 35.211004],\n\t\t\t\t\t\t[-90.064612, 35.140621],\n\t\t\t\t\t\t[-90.065392, 35.137691],\n\t\t\t\t\t\t[-90.083420, 35.121670],\n\t\t\t\t\t\t[-90.090610, 35.118287],\n\t\t\t\t\t\t[-90.100593, 35.116691],\n\t\t\t\t\t\t[-90.109393, 35.118891],\n\t\t\t\t\t\t[-90.142794, 35.135091],\n\t\t\t\t\t\t[-90.160058, 35.128830],\n\t\t\t\t\t\t[-90.174594, 35.116682],\n\t\t\t\t\t\t[-90.193859, 35.061646],\n\t\t\t\t\t\t[-90.295596, 35.040093],\n\t\t\t\t\t\t[-90.309877, 35.009750],\n\t\t\t\t\t\t[-90.309297, 34.995694],\n\t\t\t\t\t\t[-90.253969, 34.954988],\n\t\t\t\t\t\t[-90.244476, 34.937596],\n\t\t\t\t\t\t[-90.250095, 34.907320],\n\t\t\t\t\t\t[-90.293918, 34.860563],\n\t\t\t\t\t\t[-90.307384, 34.846195],\n\t\t\t\t\t\t[-90.407964, 34.832767],\n\t\t\t\t\t\t[-90.408540, 34.904121],\n\t\t\t\t\t\t[-90.400434, 35.148196],\n\t\t\t\t\t\t[-90.502993, 35.144214],\n\t\t\t\t\t\t[-90.502429, 35.441726],\n\t\t\t\t\t\t[-90.500104, 35.441763],\n\t\t\t\t\t\t[-90.286899, 35.438573],\n\t\t\t\t\t\t[-90.152386, 35.436789],\n\t\t\t\t\t\t[-90.169002, 35.421853],\n\t\t\t\t\t\t[-90.179265, 35.385194],\n\t\t\t\t\t\t[-90.178341, 35.382092],\n\t\t\t\t\t\t[-90.166246, 35.374745],\n\t\t\t\t\t\t[-90.143633, 35.374745],\n\t\t\t\t\t\t[-90.135510, 35.376668],\n\t\t\t\t\t\t[-90.093589, 35.393333],\n\t\t\t\t\t\t[-90.089612, 35.379842],\n\t\t\t\t\t\t[-90.086691, 35.369935],\n\t\t\t\t\t\t[-90.114893, 35.303887],\n\t\t\t\t\t\t[-90.153394, 35.302588],\n\t\t\t\t\t\t[-90.158913, 35.300637],\n\t\t\t\t\t\t[-90.163812, 35.296115],\n\t\t\t\t\t\t[-90.168871, 35.281997],\n\t\t\t\t\t\t[-90.166594, 35.274588],\n\t\t\t\t\t\t[-90.158865, 35.262577],\n\t\t\t\t\t\t[-90.152094, 35.255989],\n\t\t\t\t\t\t[-90.140394, 35.252289],\n\t\t\t\t\t\t[-90.116493, 35.255788],\n\t\t\t\t\t\t[-90.105093, 35.254288],\n\t\t\t\t\t\t[-90.097947, 35.249983],\n\t\t\t\t\t\t[-90.077410, 35.225479],\n\t\t\t\t\t\t[-90.074262, 35.218316]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05041\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"041\",\n\t\t\t\t\"NAME\": \"Desha\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 768.152000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.224121, 33.567369],\n\t\t\t\t\t\t[-91.228287, 33.559937],\n\t\t\t\t\t\t[-91.244582, 33.561425],\n\t\t\t\t\t\t[-91.245760, 33.517148],\n\t\t\t\t\t\t[-91.350810, 33.519476],\n\t\t\t\t\t\t[-91.349540, 33.563646],\n\t\t\t\t\t\t[-91.453438, 33.563703],\n\t\t\t\t\t\t[-91.450325, 33.780415],\n\t\t\t\t\t\t[-91.557648, 33.783384],\n\t\t\t\t\t\t[-91.548668, 33.976799],\n\t\t\t\t\t\t[-91.421715, 34.014472],\n\t\t\t\t\t\t[-91.347628, 33.954941],\n\t\t\t\t\t\t[-91.132686, 33.955221],\n\t\t\t\t\t\t[-91.194278, 34.070938],\n\t\t\t\t\t\t[-91.117905, 34.119105],\n\t\t\t\t\t\t[-90.955170, 34.118833],\n\t\t\t\t\t\t[-90.933116, 34.124488],\n\t\t\t\t\t\t[-90.931969, 34.120017],\n\t\t\t\t\t\t[-90.928793, 34.107631],\n\t\t\t\t\t\t[-90.912057, 34.095512],\n\t\t\t\t\t\t[-90.888396, 34.087433],\n\t\t\t\t\t\t[-90.879163, 34.065503],\n\t\t\t\t\t\t[-90.887413, 34.032505],\n\t\t\t\t\t\t[-90.964708, 34.007952],\n\t\t\t\t\t\t[-91.018890, 34.003151],\n\t\t\t\t\t\t[-91.089119, 33.972653],\n\t\t\t\t\t\t[-91.088164, 33.960078],\n\t\t\t\t\t\t[-91.036821, 33.914656],\n\t\t\t\t\t\t[-91.067511, 33.840443],\n\t\t\t\t\t\t[-91.139869, 33.777117],\n\t\t\t\t\t\t[-91.144682, 33.750108],\n\t\t\t\t\t\t[-91.136118, 33.728632],\n\t\t\t\t\t\t[-91.126805, 33.707814],\n\t\t\t\t\t\t[-91.127900, 33.695762],\n\t\t\t\t\t\t[-91.132831, 33.688092],\n\t\t\t\t\t\t[-91.139953, 33.683709],\n\t\t\t\t\t\t[-91.148170, 33.679327],\n\t\t\t\t\t\t[-91.176110, 33.684257],\n\t\t\t\t\t\t[-91.185971, 33.679327],\n\t\t\t\t\t\t[-91.188710, 33.669466],\n\t\t\t\t\t\t[-91.193093, 33.656866],\n\t\t\t\t\t\t[-91.186519, 33.645909],\n\t\t\t\t\t\t[-91.157484, 33.626187],\n\t\t\t\t\t\t[-91.130445, 33.606034],\n\t\t\t\t\t\t[-91.134043, 33.594489],\n\t\t\t\t\t\t[-91.152148, 33.582721],\n\t\t\t\t\t\t[-91.224121, 33.567369]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05057\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"057\",\n\t\t\t\t\"NAME\": \"Hempstead\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 727.520000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.957315, 33.750940],\n\t\t\t\t\t\t[-93.831452, 33.747709],\n\t\t\t\t\t\t[-93.823076, 34.008893],\n\t\t\t\t\t\t[-93.528752, 33.943171],\n\t\t\t\t\t\t[-93.456709, 33.956837],\n\t\t\t\t\t\t[-93.483097, 33.476075],\n\t\t\t\t\t\t[-93.722867, 33.481963],\n\t\t\t\t\t\t[-93.772686, 33.498513],\n\t\t\t\t\t\t[-93.773641, 33.504671],\n\t\t\t\t\t\t[-93.780289, 33.519624],\n\t\t\t\t\t\t[-93.778832, 33.524717],\n\t\t\t\t\t\t[-93.792415, 33.535869],\n\t\t\t\t\t\t[-93.792725, 33.541963],\n\t\t\t\t\t\t[-93.792725, 33.547109],\n\t\t\t\t\t\t[-93.798330, 33.542149],\n\t\t\t\t\t\t[-93.807741, 33.545243],\n\t\t\t\t\t\t[-93.803789, 33.549384],\n\t\t\t\t\t\t[-93.798272, 33.552493],\n\t\t\t\t\t\t[-93.814202, 33.564750],\n\t\t\t\t\t\t[-93.827726, 33.571620],\n\t\t\t\t\t\t[-93.823259, 33.580544],\n\t\t\t\t\t\t[-93.817579, 33.586153],\n\t\t\t\t\t\t[-93.812503, 33.603351],\n\t\t\t\t\t\t[-93.816087, 33.610843],\n\t\t\t\t\t\t[-93.822178, 33.613548],\n\t\t\t\t\t\t[-93.825884, 33.609853],\n\t\t\t\t\t\t[-93.965637, 33.669736],\n\t\t\t\t\t\t[-93.957315, 33.750940]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05063\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"063\",\n\t\t\t\t\"NAME\": \"Independence\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 763.953000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.793958, 35.534114],\n\t\t\t\t\t\t[-91.789823, 35.711734],\n\t\t\t\t\t\t[-91.837179, 35.704932],\n\t\t\t\t\t\t[-91.870983, 35.810562],\n\t\t\t\t\t\t[-91.849448, 35.867411],\n\t\t\t\t\t\t[-91.753345, 35.942883],\n\t\t\t\t\t\t[-91.710552, 35.941759],\n\t\t\t\t\t\t[-91.463198, 35.936810],\n\t\t\t\t\t\t[-91.464678, 35.892497],\n\t\t\t\t\t\t[-91.357230, 35.890621],\n\t\t\t\t\t\t[-91.198556, 35.890024],\n\t\t\t\t\t\t[-91.232392, 35.812664],\n\t\t\t\t\t\t[-91.348281, 35.719127],\n\t\t\t\t\t\t[-91.369570, 35.526362],\n\t\t\t\t\t\t[-91.581880, 35.530447],\n\t\t\t\t\t\t[-91.793958, 35.534114]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05069\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"069\",\n\t\t\t\t\"NAME\": \"Jefferson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 870.746000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.029996, 34.489352],\n\t\t\t\t\t\t[-91.705185, 34.482670],\n\t\t\t\t\t\t[-91.711795, 34.233919],\n\t\t\t\t\t\t[-91.540178, 34.224599],\n\t\t\t\t\t\t[-91.445614, 34.080147],\n\t\t\t\t\t\t[-91.727276, 34.174093],\n\t\t\t\t\t\t[-91.744990, 34.094021],\n\t\t\t\t\t\t[-91.953629, 34.093380],\n\t\t\t\t\t\t[-91.953799, 34.064141],\n\t\t\t\t\t\t[-92.233376, 34.062312],\n\t\t\t\t\t\t[-92.212906, 34.230400],\n\t\t\t\t\t\t[-92.208041, 34.492765],\n\t\t\t\t\t\t[-92.029996, 34.489352]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05075\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"075\",\n\t\t\t\t\"NAME\": \"Lawrence\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 587.614000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.357230, 35.890621],\n\t\t\t\t\t\t[-91.349834, 36.230967],\n\t\t\t\t\t\t[-91.258920, 36.257880],\n\t\t\t\t\t\t[-91.082681, 36.150871],\n\t\t\t\t\t\t[-90.809816, 36.149567],\n\t\t\t\t\t\t[-90.747425, 36.149116],\n\t\t\t\t\t\t[-90.820763, 36.079770],\n\t\t\t\t\t\t[-90.852064, 35.968092],\n\t\t\t\t\t\t[-90.872785, 35.880870],\n\t\t\t\t\t\t[-91.032499, 35.885070],\n\t\t\t\t\t\t[-91.169061, 35.889794],\n\t\t\t\t\t\t[-91.198556, 35.890024],\n\t\t\t\t\t\t[-91.357230, 35.890621]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05077\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"077\",\n\t\t\t\t\"NAME\": \"Lee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 602.621000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.407964, 34.832767],\n\t\t\t\t\t\t[-90.414864, 34.831846],\n\t\t\t\t\t\t[-90.423879, 34.834606],\n\t\t\t\t\t\t[-90.436431, 34.855060],\n\t\t\t\t\t\t[-90.461451, 34.856728],\n\t\t\t\t\t\t[-90.473961, 34.852558],\n\t\t\t\t\t\t[-90.478131, 34.832542],\n\t\t\t\t\t\t[-90.467289, 34.782502],\n\t\t\t\t\t\t[-90.479799, 34.769158],\n\t\t\t\t\t\t[-90.494811, 34.767490],\n\t\t\t\t\t\t[-90.501325, 34.769931],\n\t\t\t\t\t\t[-90.519831, 34.782502],\n\t\t\t\t\t\t[-90.537345, 34.784170],\n\t\t\t\t\t\t[-90.549855, 34.763320],\n\t\t\t\t\t\t[-90.554859, 34.727458],\n\t\t\t\t\t\t[-90.533175, 34.707442],\n\t\t\t\t\t\t[-90.509823, 34.689928],\n\t\t\t\t\t\t[-90.508989, 34.679086],\n\t\t\t\t\t\t[-90.521499, 34.663240],\n\t\t\t\t\t\t[-90.539013, 34.659070],\n\t\t\t\t\t\t[-90.549855, 34.662406],\n\t\t\t\t\t\t[-90.564033, 34.665742],\n\t\t\t\t\t\t[-90.576543, 34.657402],\n\t\t\t\t\t\t[-90.575786, 34.641749],\n\t\t\t\t\t\t[-90.583224, 34.641389],\n\t\t\t\t\t\t[-91.051918, 34.645721],\n\t\t\t\t\t\t[-91.049474, 34.734184],\n\t\t\t\t\t\t[-91.102542, 34.734864],\n\t\t\t\t\t\t[-91.099961, 34.867120],\n\t\t\t\t\t\t[-91.099201, 34.911796],\n\t\t\t\t\t\t[-90.408540, 34.904121],\n\t\t\t\t\t\t[-90.407964, 34.832767]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US04025\",\n\t\t\t\t\"STATE\": \"04\",\n\t\t\t\t\"COUNTY\": \"025\",\n\t\t\t\t\"NAME\": \"Yavapai\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 8123.499000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-111.861997, 34.015108],\n\t\t\t\t\t\t[-112.164758, 34.048170],\n\t\t\t\t\t\t[-112.256668, 33.905526],\n\t\t\t\t\t\t[-112.260470, 33.903592],\n\t\t\t\t\t\t[-112.264425, 33.899094],\n\t\t\t\t\t\t[-112.276040, 33.882312],\n\t\t\t\t\t\t[-112.341876, 33.898958],\n\t\t\t\t\t\t[-112.743951, 33.999898],\n\t\t\t\t\t\t[-113.333753, 33.999227],\n\t\t\t\t\t\t[-113.333316, 34.001030],\n\t\t\t\t\t\t[-113.333508, 34.317877],\n\t\t\t\t\t\t[-113.332713, 35.000110],\n\t\t\t\t\t\t[-113.334161, 35.528037],\n\t\t\t\t\t\t[-113.329569, 35.528108],\n\t\t\t\t\t\t[-113.320367, 35.530570],\n\t\t\t\t\t\t[-113.301303, 35.531118],\n\t\t\t\t\t\t[-113.174458, 35.506445],\n\t\t\t\t\t\t[-113.148055, 35.478595],\n\t\t\t\t\t\t[-112.975855, 35.392904],\n\t\t\t\t\t\t[-112.953410, 35.356110],\n\t\t\t\t\t\t[-112.754838, 35.306301],\n\t\t\t\t\t\t[-112.694846, 35.311586],\n\t\t\t\t\t\t[-112.577399, 35.243394],\n\t\t\t\t\t\t[-112.472700, 35.238312],\n\t\t\t\t\t\t[-112.440751, 35.260468],\n\t\t\t\t\t\t[-112.442300, 35.149408],\n\t\t\t\t\t\t[-112.335716, 35.148279],\n\t\t\t\t\t\t[-112.334536, 34.973024],\n\t\t\t\t\t\t[-111.809215, 34.976215],\n\t\t\t\t\t\t[-111.777815, 34.981315],\n\t\t\t\t\t\t[-111.777910, 34.803318],\n\t\t\t\t\t\t[-111.552106, 34.802520],\n\t\t\t\t\t\t[-111.555124, 34.472196],\n\t\t\t\t\t\t[-111.659514, 34.386424],\n\t\t\t\t\t\t[-111.720728, 34.161704],\n\t\t\t\t\t\t[-111.477853, 34.151108],\n\t\t\t\t\t\t[-111.494778, 33.999817],\n\t\t\t\t\t\t[-111.725310, 33.999849],\n\t\t\t\t\t\t[-111.861997, 34.015108]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05005\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"005\",\n\t\t\t\t\"NAME\": \"Baxter\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 554.283000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.150295, 36.498634],\n\t\t\t\t\t\t[-92.159215, 36.261311],\n\t\t\t\t\t\t[-92.156990, 36.261248],\n\t\t\t\t\t\t[-92.195430, 36.132798],\n\t\t\t\t\t\t[-92.197649, 36.059287],\n\t\t\t\t\t\t[-92.304951, 36.061080],\n\t\t\t\t\t\t[-92.307220, 35.974022],\n\t\t\t\t\t\t[-92.414324, 35.975865],\n\t\t\t\t\t\t[-92.412542, 36.027228],\n\t\t\t\t\t\t[-92.411502, 36.062756],\n\t\t\t\t\t\t[-92.411852, 36.162123],\n\t\t\t\t\t\t[-92.469262, 36.250904],\n\t\t\t\t\t\t[-92.543034, 36.269342],\n\t\t\t\t\t\t[-92.593128, 36.358337],\n\t\t\t\t\t\t[-92.533175, 36.386563],\n\t\t\t\t\t\t[-92.529145, 36.497739],\n\t\t\t\t\t\t[-92.318415, 36.497711],\n\t\t\t\t\t\t[-92.309424, 36.497894],\n\t\t\t\t\t\t[-92.216412, 36.498417],\n\t\t\t\t\t\t[-92.214143, 36.498372],\n\t\t\t\t\t\t[-92.211449, 36.498395],\n\t\t\t\t\t\t[-92.199396, 36.498351],\n\t\t\t\t\t\t[-92.150295, 36.498634]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05007\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"007\",\n\t\t\t\t\"NAME\": \"Benton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 847.357000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.552184, 36.102235],\n\t\t\t\t\t\t[-94.561165, 36.152110],\n\t\t\t\t\t\t[-94.562803, 36.161749],\n\t\t\t\t\t\t[-94.562828, 36.161895],\n\t\t\t\t\t\t[-94.565655, 36.178439],\n\t\t\t\t\t\t[-94.566588, 36.183774],\n\t\t\t\t\t\t[-94.571253, 36.210901],\n\t\t\t\t\t\t[-94.571806, 36.213748],\n\t\t\t\t\t\t[-94.574395, 36.229996],\n\t\t\t\t\t\t[-94.574880, 36.232741],\n\t\t\t\t\t\t[-94.575071, 36.233682],\n\t\t\t\t\t\t[-94.576003, 36.240070],\n\t\t\t\t\t\t[-94.577899, 36.249548],\n\t\t\t\t\t\t[-94.577883, 36.250080],\n\t\t\t\t\t\t[-94.586200, 36.299969],\n\t\t\t\t\t\t[-94.593397, 36.345742],\n\t\t\t\t\t\t[-94.599723, 36.387587],\n\t\t\t\t\t\t[-94.601984, 36.402120],\n\t\t\t\t\t\t[-94.602623, 36.405283],\n\t\t\t\t\t\t[-94.605408, 36.421949],\n\t\t\t\t\t\t[-94.611609, 36.461528],\n\t\t\t\t\t\t[-94.613830, 36.476248],\n\t\t\t\t\t\t[-94.615311, 36.484992],\n\t\t\t\t\t\t[-94.617919, 36.499414],\n\t\t\t\t\t\t[-94.559290, 36.499496],\n\t\t\t\t\t\t[-94.519478, 36.499214],\n\t\t\t\t\t\t[-94.111473, 36.498597],\n\t\t\t\t\t\t[-94.110673, 36.498587],\n\t\t\t\t\t\t[-94.100252, 36.498670],\n\t\t\t\t\t\t[-94.098588, 36.498676],\n\t\t\t\t\t\t[-94.077089, 36.498730],\n\t\t\t\t\t\t[-93.963920, 36.498717],\n\t\t\t\t\t\t[-93.959190, 36.498717],\n\t\t\t\t\t\t[-93.921840, 36.498718],\n\t\t\t\t\t\t[-93.906128, 36.498718],\n\t\t\t\t\t\t[-93.866758, 36.498789],\n\t\t\t\t\t\t[-93.861698, 36.339266],\n\t\t\t\t\t\t[-93.815605, 36.306563],\n\t\t\t\t\t\t[-93.887775, 36.235046],\n\t\t\t\t\t\t[-93.973298, 36.203852],\n\t\t\t\t\t\t[-94.333565, 36.214727],\n\t\t\t\t\t\t[-94.391125, 36.099396],\n\t\t\t\t\t\t[-94.552184, 36.102235]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US16073\",\n\t\t\t\t\"STATE\": \"16\",\n\t\t\t\t\"COUNTY\": \"073\",\n\t\t\t\t\"NAME\": \"Owyhee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 7665.511000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-117.026717, 43.675523],\n\t\t\t\t\t\t[-117.026623, 43.680865],\n\t\t\t\t\t\t[-116.841528, 43.593168],\n\t\t\t\t\t\t[-116.780671, 43.477217],\n\t\t\t\t\t\t[-116.511722, 43.290253],\n\t\t\t\t\t\t[-116.433111, 43.296436],\n\t\t\t\t\t\t[-116.385964, 43.193445],\n\t\t\t\t\t\t[-116.266168, 43.112553],\n\t\t\t\t\t\t[-116.012092, 42.949917],\n\t\t\t\t\t\t[-115.965669, 42.943725],\n\t\t\t\t\t\t[-115.926546, 43.001526],\n\t\t\t\t\t\t[-115.769910, 42.938948],\n\t\t\t\t\t\t[-115.641066, 42.955360],\n\t\t\t\t\t\t[-115.603730, 42.937249],\n\t\t\t\t\t\t[-115.441570, 42.930904],\n\t\t\t\t\t\t[-115.454314, 42.767732],\n\t\t\t\t\t\t[-115.037716, 42.768480],\n\t\t\t\t\t\t[-115.037694, 42.749936],\n\t\t\t\t\t\t[-115.038256, 41.996025],\n\t\t\t\t\t\t[-115.986880, 41.998534],\n\t\t\t\t\t\t[-116.012212, 41.998035],\n\t\t\t\t\t\t[-116.012219, 41.998048],\n\t\t\t\t\t\t[-116.018945, 41.997722],\n\t\t\t\t\t\t[-116.018960, 41.997762],\n\t\t\t\t\t\t[-116.030758, 41.997383],\n\t\t\t\t\t\t[-116.030754, 41.997399],\n\t\t\t\t\t\t[-116.038570, 41.997413],\n\t\t\t\t\t\t[-116.038602, 41.997460],\n\t\t\t\t\t\t[-116.160833, 41.997508],\n\t\t\t\t\t\t[-116.163931, 41.997555],\n\t\t\t\t\t\t[-116.463528, 41.996547],\n\t\t\t\t\t\t[-116.483094, 41.996885],\n\t\t\t\t\t\t[-116.485823, 41.996861],\n\t\t\t\t\t\t[-116.510452, 41.997096],\n\t\t\t\t\t\t[-116.586937, 41.997370],\n\t\t\t\t\t\t[-116.626770, 41.997750],\n\t\t\t\t\t\t[-117.018294, 41.999358],\n\t\t\t\t\t\t[-117.026222, 42.000252],\n\t\t\t\t\t\t[-117.026331, 42.807015],\n\t\t\t\t\t\t[-117.026303, 42.807170],\n\t\t\t\t\t\t[-117.026253, 42.807447],\n\t\t\t\t\t\t[-117.026683, 43.024876],\n\t\t\t\t\t\t[-117.026652, 43.025128],\n\t\t\t\t\t\t[-117.026746, 43.577526],\n\t\t\t\t\t\t[-117.026774, 43.578674],\n\t\t\t\t\t\t[-117.026922, 43.593632],\n\t\t\t\t\t\t[-117.026889, 43.596033],\n\t\t\t\t\t\t[-117.026824, 43.600357],\n\t\t\t\t\t\t[-117.026760, 43.601912],\n\t\t\t\t\t\t[-117.026789, 43.610669],\n\t\t\t\t\t\t[-117.026937, 43.617614],\n\t\t\t\t\t\t[-117.027001, 43.621032],\n\t\t\t\t\t\t[-117.026905, 43.624880],\n\t\t\t\t\t\t[-117.026705, 43.631659],\n\t\t\t\t\t\t[-117.026661, 43.664385],\n\t\t\t\t\t\t[-117.026717, 43.675523]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US16085\",\n\t\t\t\t\"STATE\": \"16\",\n\t\t\t\t\"COUNTY\": \"085\",\n\t\t\t\t\"NAME\": \"Valley\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 3664.515000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-114.812434, 44.808138],\n\t\t\t\t\t\t[-115.009938, 44.713369],\n\t\t\t\t\t\t[-115.088961, 44.770916],\n\t\t\t\t\t\t[-115.151795, 44.728171],\n\t\t\t\t\t\t[-115.168309, 44.647451],\n\t\t\t\t\t\t[-115.279663, 44.612095],\n\t\t\t\t\t\t[-115.304751, 44.580026],\n\t\t\t\t\t\t[-115.246996, 44.519552],\n\t\t\t\t\t\t[-115.228241, 44.422868],\n\t\t\t\t\t\t[-115.294462, 44.339411],\n\t\t\t\t\t\t[-115.401528, 44.259374],\n\t\t\t\t\t\t[-115.520150, 44.235196],\n\t\t\t\t\t\t[-116.103075, 44.236624],\n\t\t\t\t\t\t[-116.112427, 44.147834],\n\t\t\t\t\t\t[-116.212132, 44.151354],\n\t\t\t\t\t\t[-116.212071, 44.324277],\n\t\t\t\t\t\t[-116.152289, 44.324388],\n\t\t\t\t\t\t[-116.157096, 44.498966],\n\t\t\t\t\t\t[-116.157064, 44.703291],\n\t\t\t\t\t\t[-116.205988, 44.767155],\n\t\t\t\t\t\t[-116.186161, 44.887793],\n\t\t\t\t\t\t[-116.089397, 45.063748],\n\t\t\t\t\t\t[-116.144531, 45.107619],\n\t\t\t\t\t\t[-116.121743, 45.158710],\n\t\t\t\t\t\t[-115.974957, 45.219699],\n\t\t\t\t\t\t[-115.975756, 45.195699],\n\t\t\t\t\t\t[-114.694126, 45.197114],\n\t\t\t\t\t\t[-114.722627, 45.178914],\n\t\t\t\t\t\t[-114.732212, 44.880351],\n\t\t\t\t\t\t[-114.812434, 44.808138]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US16087\",\n\t\t\t\t\"STATE\": \"16\",\n\t\t\t\t\"COUNTY\": \"087\",\n\t\t\t\t\"NAME\": \"Washington\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1452.982000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-117.197506, 44.297280],\n\t\t\t\t\t\t[-117.196597, 44.302280],\n\t\t\t\t\t\t[-117.194827, 44.310540],\n\t\t\t\t\t\t[-117.191546, 44.329621],\n\t\t\t\t\t\t[-117.189769, 44.336585],\n\t\t\t\t\t\t[-117.214889, 44.466901],\n\t\t\t\t\t\t[-117.208454, 44.485928],\n\t\t\t\t\t\t[-117.156489, 44.528312],\n\t\t\t\t\t\t[-117.149242, 44.536151],\n\t\t\t\t\t\t[-117.144161, 44.545647],\n\t\t\t\t\t\t[-117.115900, 44.623339],\n\t\t\t\t\t\t[-117.095868, 44.664737],\n\t\t\t\t\t\t[-117.062273, 44.727143],\n\t\t\t\t\t\t[-117.044217, 44.745140],\n\t\t\t\t\t\t[-117.038270, 44.748179],\n\t\t\t\t\t\t[-117.016216, 44.755572],\n\t\t\t\t\t\t[-116.931499, 44.792281],\n\t\t\t\t\t\t[-116.891463, 44.840531],\n\t\t\t\t\t\t[-116.624783, 44.837841],\n\t\t\t\t\t\t[-116.624297, 44.662852],\n\t\t\t\t\t\t[-116.528382, 44.614886],\n\t\t\t\t\t\t[-116.527157, 44.490695],\n\t\t\t\t\t\t[-116.407496, 44.443849],\n\t\t\t\t\t\t[-116.299757, 44.444107],\n\t\t\t\t\t\t[-116.358532, 44.151066],\n\t\t\t\t\t\t[-116.452012, 44.151417],\n\t\t\t\t\t\t[-116.897145, 44.152537],\n\t\t\t\t\t\t[-116.895931, 44.154295],\n\t\t\t\t\t\t[-116.894083, 44.160191],\n\t\t\t\t\t\t[-116.895757, 44.171267],\n\t\t\t\t\t\t[-116.902752, 44.179467],\n\t\t\t\t\t\t[-116.975905, 44.242844],\n\t\t\t\t\t\t[-116.986870, 44.245477],\n\t\t\t\t\t\t[-117.027558, 44.248881],\n\t\t\t\t\t\t[-117.033170, 44.248192],\n\t\t\t\t\t\t[-117.041144, 44.243653],\n\t\t\t\t\t\t[-117.170342, 44.258890],\n\t\t\t\t\t\t[-117.190107, 44.273958],\n\t\t\t\t\t\t[-117.196597, 44.287529],\n\t\t\t\t\t\t[-117.197777, 44.295789],\n\t\t\t\t\t\t[-117.197506, 44.297280]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17013\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"013\",\n\t\t\t\t\"NAME\": \"Calhoun\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 253.825000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.467784, 38.961809],\n\t\t\t\t\t\t[-90.472122, 38.958838],\n\t\t\t\t\t\t[-90.482419, 38.944460],\n\t\t\t\t\t\t[-90.482725, 38.934712],\n\t\t\t\t\t\t[-90.486974, 38.925982],\n\t\t\t\t\t\t[-90.507451, 38.902767],\n\t\t\t\t\t\t[-90.544030, 38.875050],\n\t\t\t\t\t\t[-90.555693, 38.870785],\n\t\t\t\t\t\t[-90.566557, 38.868847],\n\t\t\t\t\t\t[-90.583388, 38.869030],\n\t\t\t\t\t\t[-90.625122, 38.888654],\n\t\t\t\t\t\t[-90.657254, 38.920270],\n\t\t\t\t\t\t[-90.663372, 38.928042],\n\t\t\t\t\t\t[-90.665870, 38.934195],\n\t\t\t\t\t\t[-90.711580, 39.046798],\n\t\t\t\t\t\t[-90.713629, 39.053977],\n\t\t\t\t\t\t[-90.712541, 39.057064],\n\t\t\t\t\t\t[-90.682744, 39.088348],\n\t\t\t\t\t\t[-90.681086, 39.100590],\n\t\t\t\t\t\t[-90.718996, 39.224973],\n\t\t\t\t\t\t[-90.726981, 39.251173],\n\t\t\t\t\t\t[-90.729960, 39.255894],\n\t\t\t\t\t\t[-90.799346, 39.313087],\n\t\t\t\t\t\t[-90.842175, 39.341932],\n\t\t\t\t\t\t[-90.882706, 39.362254],\n\t\t\t\t\t\t[-90.939983, 39.393555],\n\t\t\t\t\t\t[-90.613694, 39.395775],\n\t\t\t\t\t\t[-90.603569, 39.117592],\n\t\t\t\t\t\t[-90.570169, 38.993290],\n\t\t\t\t\t\t[-90.450809, 38.967758],\n\t\t\t\t\t\t[-90.467784, 38.961809]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17021\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"021\",\n\t\t\t\t\"NAME\": \"Christian\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 709.377000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.252325, 39.820416],\n\t\t\t\t\t\t[-89.248609, 39.825723],\n\t\t\t\t\t\t[-89.240092, 39.823137],\n\t\t\t\t\t\t[-89.233523, 39.813159],\n\t\t\t\t\t\t[-89.217523, 39.813224],\n\t\t\t\t\t\t[-89.141817, 39.800910],\n\t\t\t\t\t\t[-89.139125, 39.655131],\n\t\t\t\t\t\t[-89.025691, 39.654637],\n\t\t\t\t\t\t[-89.025680, 39.654183],\n\t\t\t\t\t\t[-89.025469, 39.464462],\n\t\t\t\t\t\t[-89.025381, 39.345896],\n\t\t\t\t\t\t[-89.139807, 39.348888],\n\t\t\t\t\t\t[-89.530836, 39.348864],\n\t\t\t\t\t\t[-89.533655, 39.524592],\n\t\t\t\t\t\t[-89.535028, 39.641138],\n\t\t\t\t\t\t[-89.425051, 39.683696],\n\t\t\t\t\t\t[-89.392858, 39.743850],\n\t\t\t\t\t\t[-89.252325, 39.820416]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17027\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"027\",\n\t\t\t\t\"NAME\": \"Clinton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 474.085000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.254237, 38.742019],\n\t\t\t\t\t\t[-89.138393, 38.736331],\n\t\t\t\t\t\t[-89.143898, 38.503088],\n\t\t\t\t\t\t[-89.360248, 38.516522],\n\t\t\t\t\t\t[-89.481556, 38.468465],\n\t\t\t\t\t\t[-89.615212, 38.472072],\n\t\t\t\t\t\t[-89.704417, 38.415667],\n\t\t\t\t\t\t[-89.707024, 38.655152],\n\t\t\t\t\t\t[-89.595103, 38.655948],\n\t\t\t\t\t\t[-89.597321, 38.743236],\n\t\t\t\t\t\t[-89.481642, 38.740532],\n\t\t\t\t\t\t[-89.254237, 38.742019]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US16031\",\n\t\t\t\t\"STATE\": \"16\",\n\t\t\t\t\"COUNTY\": \"031\",\n\t\t\t\t\"NAME\": \"Cassia\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2565.081000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-113.000820, 41.998223],\n\t\t\t\t\t\t[-113.000821, 41.998223],\n\t\t\t\t\t\t[-113.396497, 41.994250],\n\t\t\t\t\t\t[-113.402230, 41.994161],\n\t\t\t\t\t\t[-113.431563, 41.993799],\n\t\t\t\t\t\t[-113.764530, 41.989459],\n\t\t\t\t\t\t[-113.796082, 41.989104],\n\t\t\t\t\t\t[-113.893261, 41.988057],\n\t\t\t\t\t\t[-114.041723, 41.993720],\n\t\t\t\t\t\t[-114.048246, 41.993721],\n\t\t\t\t\t\t[-114.048257, 41.993814],\n\t\t\t\t\t\t[-114.061774, 41.993797],\n\t\t\t\t\t\t[-114.061763, 41.993939],\n\t\t\t\t\t\t[-114.107259, 41.993831],\n\t\t\t\t\t\t[-114.107428, 41.993965],\n\t\t\t\t\t\t[-114.281854, 41.994264],\n\t\t\t\t\t\t[-114.285363, 42.417332],\n\t\t\t\t\t\t[-114.069053, 42.417124],\n\t\t\t\t\t\t[-114.067080, 42.514520],\n\t\t\t\t\t\t[-114.000691, 42.526434],\n\t\t\t\t\t\t[-113.985215, 42.534136],\n\t\t\t\t\t\t[-113.959446, 42.535020],\n\t\t\t\t\t\t[-113.956046, 42.530243],\n\t\t\t\t\t\t[-113.931799, 42.535275],\n\t\t\t\t\t\t[-113.779811, 42.556870],\n\t\t\t\t\t\t[-113.655338, 42.535663],\n\t\t\t\t\t\t[-113.557609, 42.656416],\n\t\t\t\t\t\t[-113.472177, 42.669251],\n\t\t\t\t\t\t[-113.375835, 42.687887],\n\t\t\t\t\t\t[-113.236952, 42.625281],\n\t\t\t\t\t\t[-113.175702, 42.589350],\n\t\t\t\t\t\t[-113.002807, 42.588022],\n\t\t\t\t\t\t[-113.000823, 42.327483],\n\t\t\t\t\t\t[-113.000820, 41.998223]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US16035\",\n\t\t\t\t\"STATE\": \"16\",\n\t\t\t\t\"COUNTY\": \"035\",\n\t\t\t\t\"NAME\": \"Clearwater\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2457.274000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-114.675505, 46.719516],\n\t\t\t\t\t\t[-114.667346, 46.719276],\n\t\t\t\t\t\t[-114.655704, 46.711743],\n\t\t\t\t\t\t[-114.644747, 46.702155],\n\t\t\t\t\t\t[-114.642692, 46.694622],\n\t\t\t\t\t\t[-114.641322, 46.686404],\n\t\t\t\t\t\t[-114.641745, 46.679286],\n\t\t\t\t\t\t[-114.642713, 46.673145],\n\t\t\t\t\t\t[-114.635868, 46.659510],\n\t\t\t\t\t\t[-114.614423, 46.639188],\n\t\t\t\t\t\t[-114.594707, 46.633558],\n\t\t\t\t\t\t[-115.630833, 46.473120],\n\t\t\t\t\t\t[-115.779083, 46.267252],\n\t\t\t\t\t\t[-115.814704, 46.265718],\n\t\t\t\t\t\t[-116.170422, 46.371589],\n\t\t\t\t\t\t[-116.308539, 46.412998],\n\t\t\t\t\t\t[-116.369247, 46.466921],\n\t\t\t\t\t\t[-116.369352, 46.499750],\n\t\t\t\t\t\t[-116.448618, 46.497056],\n\t\t\t\t\t\t[-116.455881, 46.629097],\n\t\t\t\t\t\t[-116.329279, 46.627900],\n\t\t\t\t\t\t[-116.329587, 46.934502],\n\t\t\t\t\t\t[-114.975789, 46.932865],\n\t\t\t\t\t\t[-114.936015, 46.899761],\n\t\t\t\t\t\t[-114.938713, 46.869021],\n\t\t\t\t\t\t[-114.927837, 46.835990],\n\t\t\t\t\t\t[-114.920459, 46.827697],\n\t\t\t\t\t\t[-114.888146, 46.808573],\n\t\t\t\t\t\t[-114.853279, 46.799794],\n\t\t\t\t\t\t[-114.825923, 46.781949],\n\t\t\t\t\t\t[-114.767180, 46.738828],\n\t\t\t\t\t\t[-114.739253, 46.715167],\n\t\t\t\t\t\t[-114.717645, 46.713994],\n\t\t\t\t\t\t[-114.690630, 46.719961],\n\t\t\t\t\t\t[-114.675505, 46.719516]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US16037\",\n\t\t\t\t\"STATE\": \"16\",\n\t\t\t\t\"COUNTY\": \"037\",\n\t\t\t\t\"NAME\": \"Custer\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 4920.940000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-114.812434, 44.808138],\n\t\t\t\t\t\t[-114.819855, 44.747227],\n\t\t\t\t\t\t[-114.741650, 44.653252],\n\t\t\t\t\t\t[-114.662714, 44.662131],\n\t\t\t\t\t\t[-114.562436, 44.575723],\n\t\t\t\t\t\t[-114.477309, 44.594118],\n\t\t\t\t\t\t[-114.386634, 44.670988],\n\t\t\t\t\t\t[-114.406309, 44.719319],\n\t\t\t\t\t\t[-114.344608, 44.793421],\n\t\t\t\t\t\t[-114.220805, 44.878922],\n\t\t\t\t\t\t[-114.189803, 44.824723],\n\t\t\t\t\t\t[-114.217202, 44.746829],\n\t\t\t\t\t\t[-114.084698, 44.755725],\n\t\t\t\t\t\t[-114.035375, 44.671167],\n\t\t\t\t\t\t[-113.815350, 44.494175],\n\t\t\t\t\t\t[-113.503476, 44.422479],\n\t\t\t\t\t\t[-113.446807, 44.451150],\n\t\t\t\t\t\t[-113.320672, 44.232998],\n\t\t\t\t\t\t[-113.416796, 44.233311],\n\t\t\t\t\t\t[-113.416344, 44.059209],\n\t\t\t\t\t\t[-113.457929, 44.059209],\n\t\t\t\t\t\t[-113.453713, 43.873739],\n\t\t\t\t\t\t[-113.361529, 43.797376],\n\t\t\t\t\t\t[-113.412487, 43.816840],\n\t\t\t\t\t\t[-113.798031, 43.568818],\n\t\t\t\t\t\t[-113.875866, 43.650749],\n\t\t\t\t\t\t[-113.973494, 43.707207],\n\t\t\t\t\t\t[-114.032770, 43.778879],\n\t\t\t\t\t\t[-114.073072, 43.738668],\n\t\t\t\t\t\t[-114.275226, 43.830935],\n\t\t\t\t\t\t[-114.292990, 43.887215],\n\t\t\t\t\t\t[-114.514979, 43.894842],\n\t\t\t\t\t\t[-114.561237, 43.844410],\n\t\t\t\t\t\t[-114.681246, 43.927753],\n\t\t\t\t\t\t[-114.813789, 43.927818],\n\t\t\t\t\t\t[-114.813745, 43.992978],\n\t\t\t\t\t\t[-114.873411, 43.992879],\n\t\t\t\t\t\t[-114.971258, 43.938134],\n\t\t\t\t\t\t[-114.978209, 43.946841],\n\t\t\t\t\t\t[-114.983747, 43.945988],\n\t\t\t\t\t\t[-114.990750, 43.949725],\n\t\t\t\t\t\t[-115.046470, 44.056242],\n\t\t\t\t\t\t[-115.026206, 44.158417],\n\t\t\t\t\t\t[-115.167118, 44.202711],\n\t\t\t\t\t\t[-115.178952, 44.296380],\n\t\t\t\t\t\t[-115.294462, 44.339411],\n\t\t\t\t\t\t[-115.228241, 44.422868],\n\t\t\t\t\t\t[-115.246996, 44.519552],\n\t\t\t\t\t\t[-115.304751, 44.580026],\n\t\t\t\t\t\t[-115.279663, 44.612095],\n\t\t\t\t\t\t[-115.168309, 44.647451],\n\t\t\t\t\t\t[-115.151795, 44.728171],\n\t\t\t\t\t\t[-115.088961, 44.770916],\n\t\t\t\t\t\t[-115.009938, 44.713369],\n\t\t\t\t\t\t[-114.812434, 44.808138]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US16049\",\n\t\t\t\t\"STATE\": \"16\",\n\t\t\t\t\"COUNTY\": \"049\",\n\t\t\t\t\"NAME\": \"Idaho\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 8477.352000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-116.691197, 45.269245],\n\t\t\t\t\t\t[-116.673793, 45.321511],\n\t\t\t\t\t\t[-116.553473, 45.499107],\n\t\t\t\t\t\t[-116.481208, 45.580597],\n\t\t\t\t\t\t[-116.463635, 45.602785],\n\t\t\t\t\t\t[-116.463504, 45.615785],\n\t\t\t\t\t\t[-116.471504, 45.628467],\n\t\t\t\t\t\t[-116.489120, 45.651140],\n\t\t\t\t\t\t[-116.510938, 45.668114],\n\t\t\t\t\t\t[-116.528272, 45.681473],\n\t\t\t\t\t\t[-116.535396, 45.691734],\n\t\t\t\t\t\t[-116.538014, 45.714929],\n\t\t\t\t\t\t[-116.535698, 45.734231],\n\t\t\t\t\t\t[-116.548090, 45.752364],\n\t\t\t\t\t\t[-116.594210, 45.779080],\n\t\t\t\t\t\t[-116.633377, 45.784681],\n\t\t\t\t\t\t[-116.789099, 45.847749],\n\t\t\t\t\t\t[-116.796418, 45.853807],\n\t\t\t\t\t\t[-116.701977, 45.996177],\n\t\t\t\t\t\t[-116.638651, 46.036076],\n\t\t\t\t\t\t[-116.529919, 46.000809],\n\t\t\t\t\t\t[-116.514484, 46.131828],\n\t\t\t\t\t\t[-116.427985, 46.202578],\n\t\t\t\t\t\t[-116.189977, 46.154379],\n\t\t\t\t\t\t[-116.133369, 46.215189],\n\t\t\t\t\t\t[-116.012665, 46.225747],\n\t\t\t\t\t\t[-116.170422, 46.371589],\n\t\t\t\t\t\t[-115.814704, 46.265718],\n\t\t\t\t\t\t[-115.779083, 46.267252],\n\t\t\t\t\t\t[-115.630833, 46.473120],\n\t\t\t\t\t\t[-114.594707, 46.633558],\n\t\t\t\t\t\t[-114.592264, 46.632861],\n\t\t\t\t\t\t[-114.481943, 46.631993],\n\t\t\t\t\t\t[-114.461211, 46.639151],\n\t\t\t\t\t\t[-114.446830, 46.645314],\n\t\t\t\t\t\t[-114.422176, 46.652163],\n\t\t\t\t\t\t[-114.370129, 46.654217],\n\t\t\t\t\t\t[-114.349584, 46.646684],\n\t\t\t\t\t\t[-114.341336, 46.642803],\n\t\t\t\t\t\t[-114.337942, 46.641205],\n\t\t\t\t\t\t[-114.331093, 46.630248],\n\t\t\t\t\t\t[-114.331093, 46.607649],\n\t\t\t\t\t\t[-114.346528, 46.535789],\n\t\t\t\t\t\t[-114.385297, 46.467162],\n\t\t\t\t\t\t[-114.378000, 46.435371],\n\t\t\t\t\t\t[-114.426885, 46.289671],\n\t\t\t\t\t\t[-114.472643, 46.162202],\n\t\t\t\t\t\t[-114.483120, 46.129147],\n\t\t\t\t\t\t[-114.476284, 46.112988],\n\t\t\t\t\t\t[-114.468205, 46.099937],\n\t\t\t\t\t\t[-114.467583, 46.081914],\n\t\t\t\t\t\t[-114.476284, 46.062026],\n\t\t\t\t\t\t[-114.491200, 46.044003],\n\t\t\t\t\t\t[-114.491200, 46.034059],\n\t\t\t\t\t\t[-114.490578, 46.022872],\n\t\t\t\t\t\t[-114.483379, 46.008047],\n\t\t\t\t\t\t[-114.465376, 45.996077],\n\t\t\t\t\t\t[-114.429638, 45.986638],\n\t\t\t\t\t\t[-114.412007, 45.978057],\n\t\t\t\t\t\t[-114.401552, 45.963195],\n\t\t\t\t\t\t[-114.393760, 45.894020],\n\t\t\t\t\t\t[-114.448680, 45.858891],\n\t\t\t\t\t\t[-114.498809, 45.850676],\n\t\t\t\t\t\t[-114.509303, 45.845531],\n\t\t\t\t\t\t[-114.514596, 45.840785],\n\t\t\t\t\t\t[-114.566172, 45.773864],\n\t\t\t\t\t\t[-114.547763, 45.743309],\n\t\t\t\t\t\t[-114.528667, 45.731636],\n\t\t\t\t\t\t[-114.504869, 45.722176],\n\t\t\t\t\t\t[-114.497553, 45.710677],\n\t\t\t\t\t\t[-114.495421, 45.703321],\n\t\t\t\t\t\t[-114.500925, 45.666715],\n\t\t\t\t\t\t[-114.515411, 45.652842],\n\t\t\t\t\t\t[-114.541820, 45.641305],\n\t\t\t\t\t\t[-114.545574, 45.642928],\n\t\t\t\t\t\t[-114.550834, 45.642600],\n\t\t\t\t\t\t[-114.561046, 45.639906],\n\t\t\t\t\t\t[-114.563652, 45.637412],\n\t\t\t\t\t\t[-114.561773, 45.565109],\n\t\t\t\t\t\t[-114.560855, 45.564575],\n\t\t\t\t\t\t[-114.663529, 45.471215],\n\t\t\t\t\t\t[-114.793263, 45.508641],\n\t\t\t\t\t\t[-114.793633, 45.436614],\n\t\t\t\t\t\t[-114.604026, 45.295618],\n\t\t\t\t\t\t[-114.694126, 45.197114],\n\t\t\t\t\t\t[-115.975756, 45.195699],\n\t\t\t\t\t\t[-115.974957, 45.219699],\n\t\t\t\t\t\t[-116.121743, 45.158710],\n\t\t\t\t\t\t[-116.144531, 45.107619],\n\t\t\t\t\t\t[-116.282630, 45.134682],\n\t\t\t\t\t\t[-116.343081, 45.268043],\n\t\t\t\t\t\t[-116.691197, 45.269245]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US16059\",\n\t\t\t\t\"STATE\": \"16\",\n\t\t\t\t\"COUNTY\": \"059\",\n\t\t\t\t\"NAME\": \"Lemhi\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 4563.387000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-113.942600, 45.686362],\n\t\t\t\t\t\t[-113.934220, 45.682232],\n\t\t\t\t\t\t[-113.896681, 45.641451],\n\t\t\t\t\t\t[-113.835396, 45.612960],\n\t\t\t\t\t\t[-113.813933, 45.600559],\n\t\t\t\t\t\t[-113.804871, 45.589112],\n\t\t\t\t\t\t[-113.802009, 45.579096],\n\t\t\t\t\t\t[-113.813456, 45.550002],\n\t\t\t\t\t\t[-113.810117, 45.530924],\n\t\t\t\t\t\t[-113.786269, 45.521385],\n\t\t\t\t\t\t[-113.772915, 45.512322],\n\t\t\t\t\t\t[-113.765760, 45.483228],\n\t\t\t\t\t\t[-113.774156, 45.465372],\n\t\t\t\t\t\t[-113.760924, 45.406501],\n\t\t\t\t\t\t[-113.738729, 45.329741],\n\t\t\t\t\t\t[-113.674409, 45.249411],\n\t\t\t\t\t\t[-113.650064, 45.234710],\n\t\t\t\t\t\t[-113.599506, 45.191114],\n\t\t\t\t\t\t[-113.565979, 45.149335],\n\t\t\t\t\t\t[-113.566179, 45.143120],\n\t\t\t\t\t\t[-113.576360, 45.133771],\n\t\t\t\t\t\t[-113.576453, 45.130311],\n\t\t\t\t\t\t[-113.485278, 45.063519],\n\t\t\t\t\t\t[-113.473770, 45.061700],\n\t\t\t\t\t\t[-113.463961, 45.063194],\n\t\t\t\t\t\t[-113.449349, 45.045745],\n\t\t\t\t\t\t[-113.445751, 45.018351],\n\t\t\t\t\t\t[-113.445915, 44.979918],\n\t\t\t\t\t\t[-113.447199, 44.971924],\n\t\t\t\t\t\t[-113.472715, 44.948123],\n\t\t\t\t\t\t[-113.480836, 44.950310],\n\t\t\t\t\t\t[-113.494446, 44.948597],\n\t\t\t\t\t\t[-113.498745, 44.942314],\n\t\t\t\t\t\t[-113.475838, 44.894648],\n\t\t\t\t\t\t[-113.455071, 44.865424],\n\t\t\t\t\t\t[-113.353631, 44.791395],\n\t\t\t\t\t\t[-113.341704, 44.784853],\n\t\t\t\t\t\t[-113.329491, 44.788645],\n\t\t\t\t\t\t[-113.278382, 44.812706],\n\t\t\t\t\t\t[-113.247166, 44.822950],\n\t\t\t\t\t\t[-113.207878, 44.808040],\n\t\t\t\t\t\t[-113.158206, 44.780847],\n\t\t\t\t\t\t[-113.134617, 44.763149],\n\t\t\t\t\t\t[-113.101082, 44.718832],\n\t\t\t\t\t\t[-113.051504, 44.636950],\n\t\t\t\t\t\t[-113.049349, 44.629380],\n\t\t\t\t\t\t[-113.053529, 44.621187],\n\t\t\t\t\t\t[-113.056770, 44.618657],\n\t\t\t\t\t\t[-113.027147, 44.495915],\n\t\t\t\t\t\t[-113.003544, 44.450814],\n\t\t\t\t\t\t[-112.970300, 44.426933],\n\t\t\t\t\t\t[-112.875822, 44.374357],\n\t\t\t\t\t\t[-112.849266, 44.371038],\n\t\t\t\t\t\t[-112.831340, 44.381660],\n\t\t\t\t\t\t[-112.829247, 44.385427],\n\t\t\t\t\t\t[-112.813907, 44.230439],\n\t\t\t\t\t\t[-112.995379, 44.233956],\n\t\t\t\t\t\t[-113.320672, 44.232998],\n\t\t\t\t\t\t[-113.446807, 44.451150],\n\t\t\t\t\t\t[-113.503476, 44.422479],\n\t\t\t\t\t\t[-113.815350, 44.494175],\n\t\t\t\t\t\t[-114.035375, 44.671167],\n\t\t\t\t\t\t[-114.084698, 44.755725],\n\t\t\t\t\t\t[-114.217202, 44.746829],\n\t\t\t\t\t\t[-114.189803, 44.824723],\n\t\t\t\t\t\t[-114.220805, 44.878922],\n\t\t\t\t\t\t[-114.344608, 44.793421],\n\t\t\t\t\t\t[-114.406309, 44.719319],\n\t\t\t\t\t\t[-114.386634, 44.670988],\n\t\t\t\t\t\t[-114.477309, 44.594118],\n\t\t\t\t\t\t[-114.562436, 44.575723],\n\t\t\t\t\t\t[-114.662714, 44.662131],\n\t\t\t\t\t\t[-114.741650, 44.653252],\n\t\t\t\t\t\t[-114.819855, 44.747227],\n\t\t\t\t\t\t[-114.812434, 44.808138],\n\t\t\t\t\t\t[-114.732212, 44.880351],\n\t\t\t\t\t\t[-114.722627, 45.178914],\n\t\t\t\t\t\t[-114.694126, 45.197114],\n\t\t\t\t\t\t[-114.604026, 45.295618],\n\t\t\t\t\t\t[-114.793633, 45.436614],\n\t\t\t\t\t\t[-114.793263, 45.508641],\n\t\t\t\t\t\t[-114.663529, 45.471215],\n\t\t\t\t\t\t[-114.560855, 45.564575],\n\t\t\t\t\t\t[-114.551286, 45.559007],\n\t\t\t\t\t\t[-114.514196, 45.564734],\n\t\t\t\t\t\t[-114.473759, 45.563278],\n\t\t\t\t\t\t[-114.460542, 45.561283],\n\t\t\t\t\t\t[-114.366620, 45.491616],\n\t\t\t\t\t\t[-114.350819, 45.468542],\n\t\t\t\t\t\t[-114.309613, 45.469432],\n\t\t\t\t\t\t[-114.247828, 45.545489],\n\t\t\t\t\t\t[-114.187852, 45.542151],\n\t\t\t\t\t\t[-114.135249, 45.557465],\n\t\t\t\t\t\t[-114.034930, 45.647967],\n\t\t\t\t\t\t[-114.022534, 45.679620],\n\t\t\t\t\t\t[-114.019315, 45.692937],\n\t\t\t\t\t\t[-114.015633, 45.696127],\n\t\t\t\t\t\t[-113.987759, 45.705247],\n\t\t\t\t\t\t[-113.971565, 45.700636],\n\t\t\t\t\t\t[-113.942600, 45.686362]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18023\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"023\",\n\t\t\t\t\"NAME\": \"Clinton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 405.070000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.242743, 40.215834],\n\t\t\t\t\t\t[-86.242365, 40.180778],\n\t\t\t\t\t\t[-86.398850, 40.177190],\n\t\t\t\t\t\t[-86.695804, 40.178657],\n\t\t\t\t\t\t[-86.695637, 40.214367],\n\t\t\t\t\t\t[-86.694665, 40.432156],\n\t\t\t\t\t\t[-86.375762, 40.431851],\n\t\t\t\t\t\t[-86.242992, 40.373661],\n\t\t\t\t\t\t[-86.242743, 40.215834]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US02282\",\n\t\t\t\t\"STATE\": \"02\",\n\t\t\t\t\"COUNTY\": \"282\",\n\t\t\t\t\"NAME\": \"Yakutat\",\n\t\t\t\t\"LSAD\": \"Cty&Bor\",\n\t\t\t\t\"CENSUSAREA\": 7649.457000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-137.525295, 58.906872],\n\t\t\t\t\t\t[-137.944259, 58.802349],\n\t\t\t\t\t\t[-137.944957, 58.804652],\n\t\t\t\t\t\t[-137.939353, 58.813721],\n\t\t\t\t\t\t[-137.931565, 58.819787],\n\t\t\t\t\t\t[-137.927624, 58.827187],\n\t\t\t\t\t\t[-137.924608, 58.843928],\n\t\t\t\t\t\t[-137.932593, 58.868494],\n\t\t\t\t\t\t[-137.951995, 58.886029],\n\t\t\t\t\t\t[-137.985198, 58.909525],\n\t\t\t\t\t\t[-138.066332, 58.957126],\n\t\t\t\t\t\t[-138.136246, 58.989026],\n\t\t\t\t\t\t[-138.131000, 59.002613],\n\t\t\t\t\t\t[-138.117551, 59.012494],\n\t\t\t\t\t\t[-138.118853, 59.021307],\n\t\t\t\t\t\t[-138.144594, 59.028072],\n\t\t\t\t\t\t[-138.250531, 59.047031],\n\t\t\t\t\t\t[-138.636702, 59.130585],\n\t\t\t\t\t\t[-138.705900, 59.162549],\n\t\t\t\t\t\t[-138.763467, 59.191320],\n\t\t\t\t\t\t[-138.847498, 59.224835],\n\t\t\t\t\t\t[-138.919749, 59.248531],\n\t\t\t\t\t\t[-139.044593, 59.280341],\n\t\t\t\t\t\t[-139.271031, 59.337421],\n\t\t\t\t\t\t[-139.343049, 59.356608],\n\t\t\t\t\t\t[-139.420168, 59.379760],\n\t\t\t\t\t\t[-139.541156, 59.423071],\n\t\t\t\t\t\t[-139.595186, 59.445413],\n\t\t\t\t\t\t[-139.746478, 59.503415],\n\t\t\t\t\t\t[-139.855565, 59.536660],\n\t\t\t\t\t\t[-139.862547, 59.544258],\n\t\t\t\t\t\t[-139.861306, 59.546678],\n\t\t\t\t\t\t[-139.847236, 59.557304],\n\t\t\t\t\t\t[-139.837817, 59.561984],\n\t\t\t\t\t\t[-139.807161, 59.554333],\n\t\t\t\t\t\t[-139.785068, 59.564043],\n\t\t\t\t\t\t[-139.768672, 59.597610],\n\t\t\t\t\t\t[-139.737189, 59.632629],\n\t\t\t\t\t\t[-139.732271, 59.636860],\n\t\t\t\t\t\t[-139.718958, 59.641156],\n\t\t\t\t\t\t[-139.708090, 59.642657],\n\t\t\t\t\t\t[-139.667235, 59.638803],\n\t\t\t\t\t\t[-139.655218, 59.633497],\n\t\t\t\t\t\t[-139.656432, 59.621210],\n\t\t\t\t\t\t[-139.671436, 59.615682],\n\t\t\t\t\t\t[-139.676310, 59.611249],\n\t\t\t\t\t\t[-139.672408, 59.602894],\n\t\t\t\t\t\t[-139.654579, 59.598015],\n\t\t\t\t\t\t[-139.623125, 59.595909],\n\t\t\t\t\t\t[-139.614513, 59.597135],\n\t\t\t\t\t\t[-139.587135, 59.605959],\n\t\t\t\t\t\t[-139.581447, 59.609171],\n\t\t\t\t\t\t[-139.582528, 59.613542],\n\t\t\t\t\t\t[-139.589369, 59.618674],\n\t\t\t\t\t\t[-139.593488, 59.624317],\n\t\t\t\t\t\t[-139.585789, 59.642765],\n\t\t\t\t\t\t[-139.518180, 59.687814],\n\t\t\t\t\t\t[-139.524011, 59.712510],\n\t\t\t\t\t\t[-139.552648, 59.706835],\n\t\t\t\t\t\t[-139.579024, 59.712198],\n\t\t\t\t\t\t[-139.587176, 59.715650],\n\t\t\t\t\t\t[-139.593360, 59.721503],\n\t\t\t\t\t\t[-139.591988, 59.725026],\n\t\t\t\t\t\t[-139.581578, 59.735063],\n\t\t\t\t\t\t[-139.576389, 59.738179],\n\t\t\t\t\t\t[-139.559376, 59.742699],\n\t\t\t\t\t\t[-139.546110, 59.752667],\n\t\t\t\t\t\t[-139.562049, 59.774887],\n\t\t\t\t\t\t[-139.577410, 59.789332],\n\t\t\t\t\t\t[-139.590430, 59.810232],\n\t\t\t\t\t\t[-139.617214, 59.863576],\n\t\t\t\t\t\t[-139.624665, 59.884388],\n\t\t\t\t\t\t[-139.621313, 59.906725],\n\t\t\t\t\t\t[-139.616912, 59.911999],\n\t\t\t\t\t\t[-139.610762, 59.913759],\n\t\t\t\t\t\t[-139.597232, 59.913652],\n\t\t\t\t\t\t[-139.577232, 59.918265],\n\t\t\t\t\t\t[-139.535902, 59.935248],\n\t\t\t\t\t\t[-139.527455, 59.940047],\n\t\t\t\t\t\t[-139.488702, 59.995034],\n\t\t\t\t\t\t[-139.486032, 60.012407],\n\t\t\t\t\t\t[-139.505389, 60.039428],\n\t\t\t\t\t\t[-139.555157, 60.039243],\n\t\t\t\t\t\t[-139.576819, 60.015425],\n\t\t\t\t\t\t[-139.601852, 59.959866],\n\t\t\t\t\t\t[-139.605790, 59.955600],\n\t\t\t\t\t\t[-139.657451, 59.944727],\n\t\t\t\t\t\t[-139.682456, 59.943984],\n\t\t\t\t\t\t[-139.693423, 59.940730],\n\t\t\t\t\t\t[-139.705328, 59.934826],\n\t\t\t\t\t\t[-139.769537, 59.878108],\n\t\t\t\t\t\t[-139.768612, 59.851160],\n\t\t\t\t\t\t[-139.775517, 59.845210],\n\t\t\t\t\t\t[-139.801197, 59.832586],\n\t\t\t\t\t\t[-139.811185, 59.829332],\n\t\t\t\t\t\t[-139.909851, 59.806070],\n\t\t\t\t\t\t[-140.102591, 59.754910],\n\t\t\t\t\t\t[-140.141090, 59.747979],\n\t\t\t\t\t\t[-140.164657, 59.741878],\n\t\t\t\t\t\t[-140.178132, 59.735628],\n\t\t\t\t\t\t[-140.188610, 59.725248],\n\t\t\t\t\t\t[-140.210907, 59.715535],\n\t\t\t\t\t\t[-140.256351, 59.703052],\n\t\t\t\t\t\t[-140.272266, 59.700609],\n\t\t\t\t\t\t[-140.285557, 59.698717],\n\t\t\t\t\t\t[-140.314400, 59.698302],\n\t\t\t\t\t\t[-140.385022, 59.699480],\n\t\t\t\t\t\t[-140.601672, 59.712953],\n\t\t\t\t\t\t[-140.636639, 59.711409],\n\t\t\t\t\t\t[-140.721980, 59.718563],\n\t\t\t\t\t\t[-140.883583, 59.737613],\n\t\t\t\t\t\t[-140.927220, 59.745709],\n\t\t\t\t\t\t[-141.013338, 59.773338],\n\t\t\t\t\t\t[-141.156497, 59.813582],\n\t\t\t\t\t\t[-141.216148, 59.827285],\n\t\t\t\t\t\t[-141.423923, 59.867361],\n\t\t\t\t\t\t[-141.442023, 59.873324],\n\t\t\t\t\t\t[-141.450506, 59.890419],\n\t\t\t\t\t\t[-141.467528, 59.971272],\n\t\t\t\t\t\t[-141.530295, 59.977655],\n\t\t\t\t\t\t[-141.631361, 59.962762],\n\t\t\t\t\t\t[-141.709054, 59.948938],\n\t\t\t\t\t\t[-141.869766, 59.998834],\n\t\t\t\t\t\t[-141.912218, 60.009779],\n\t\t\t\t\t\t[-141.966178, 60.019129],\n\t\t\t\t\t\t[-141.998818, 60.022606],\n\t\t\t\t\t\t[-142.062454, 60.023781],\n\t\t\t\t\t\t[-142.100059, 60.026772],\n\t\t\t\t\t\t[-142.130040, 60.030327],\n\t\t\t\t\t\t[-142.245180, 60.049778],\n\t\t\t\t\t\t[-142.537534, 60.083953],\n\t\t\t\t\t\t[-142.589676, 60.088182],\n\t\t\t\t\t\t[-142.698419, 60.093333],\n\t\t\t\t\t\t[-142.809852, 60.095217],\n\t\t\t\t\t\t[-142.875248, 60.092428],\n\t\t\t\t\t\t[-142.908859, 60.090328],\n\t\t\t\t\t\t[-143.068700, 60.068603],\n\t\t\t\t\t\t[-143.135616, 60.062082],\n\t\t\t\t\t\t[-143.194276, 60.061995],\n\t\t\t\t\t\t[-143.413377, 60.051924],\n\t\t\t\t\t\t[-143.624152, 60.037257],\n\t\t\t\t\t\t[-143.698990, 60.027761],\n\t\t\t\t\t\t[-143.885474, 59.996787],\n\t\t\t\t\t\t[-143.889952, 60.042300],\n\t\t\t\t\t\t[-143.167061, 60.518816],\n\t\t\t\t\t\t[-142.817324, 60.515849],\n\t\t\t\t\t\t[-141.963079, 60.521376],\n\t\t\t\t\t\t[-141.765581, 60.527746],\n\t\t\t\t\t\t[-141.763696, 60.435027],\n\t\t\t\t\t\t[-141.213691, 60.435809],\n\t\t\t\t\t\t[-141.213615, 60.392456],\n\t\t\t\t\t\t[-141.001850, 60.391688],\n\t\t\t\t\t\t[-141.001840, 60.306105],\n\t\t\t\t\t\t[-140.535090, 60.224224],\n\t\t\t\t\t\t[-140.472292, 60.310590],\n\t\t\t\t\t\t[-139.989142, 60.185240],\n\t\t\t\t\t\t[-139.698361, 60.340421],\n\t\t\t\t\t\t[-139.086669, 60.357654],\n\t\t\t\t\t\t[-139.082246, 60.323825],\n\t\t\t\t\t\t[-139.200346, 60.090701],\n\t\t\t\t\t\t[-139.046426, 59.998235],\n\t\t\t\t\t\t[-138.796083, 59.928701],\n\t\t\t\t\t\t[-138.702053, 59.910245],\n\t\t\t\t\t\t[-138.662769, 59.813719],\n\t\t\t\t\t\t[-138.662972, 59.810225],\n\t\t\t\t\t\t[-138.620931, 59.770559],\n\t\t\t\t\t\t[-138.560226, 59.741201],\n\t\t\t\t\t\t[-138.001128, 59.452164],\n\t\t\t\t\t\t[-137.604277, 59.243057],\n\t\t\t\t\t\t[-137.498558, 58.986694],\n\t\t\t\t\t\t[-137.526424, 58.906834],\n\t\t\t\t\t\t[-137.525295, 58.906872]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12021\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"021\",\n\t\t\t\t\"NAME\": \"Collier\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1998.324000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.563763, 26.513324],\n\t\t\t\t\t\t[-81.271768, 26.517069],\n\t\t\t\t\t\t[-81.271721, 26.422651],\n\t\t\t\t\t\t[-81.268550, 26.253045],\n\t\t\t\t\t\t[-80.879809, 26.259455],\n\t\t\t\t\t\t[-80.872748, 26.000370],\n\t\t\t\t\t\t[-80.872932, 25.979434],\n\t\t\t\t\t\t[-80.873096, 25.805377],\n\t\t\t\t\t\t[-81.344564, 25.803322],\n\t\t\t\t\t\t[-81.349152, 25.816847],\n\t\t\t\t\t\t[-81.352731, 25.822015],\n\t\t\t\t\t\t[-81.362272, 25.824401],\n\t\t\t\t\t\t[-81.386127, 25.839906],\n\t\t\t\t\t\t[-81.394476, 25.851834],\n\t\t\t\t\t\t[-81.417536, 25.864954],\n\t\t\t\t\t\t[-81.424295, 25.867737],\n\t\t\t\t\t\t[-81.429066, 25.865351],\n\t\t\t\t\t\t[-81.441391, 25.863761],\n\t\t\t\t\t\t[-81.458487, 25.868929],\n\t\t\t\t\t\t[-81.471607, 25.881652],\n\t\t\t\t\t\t[-81.473992, 25.888411],\n\t\t\t\t\t\t[-81.487510, 25.888411],\n\t\t\t\t\t\t[-81.501027, 25.884037],\n\t\t\t\t\t\t[-81.508979, 25.884037],\n\t\t\t\t\t\t[-81.512955, 25.886423],\n\t\t\t\t\t\t[-81.511762, 25.896760],\n\t\t\t\t\t\t[-81.515738, 25.899941],\n\t\t\t\t\t\t[-81.527665, 25.901531],\n\t\t\t\t\t\t[-81.541183, 25.900338],\n\t\t\t\t\t\t[-81.577363, 25.889206],\n\t\t\t\t\t\t[-81.584519, 25.888808],\n\t\t\t\t\t\t[-81.614735, 25.893977],\n\t\t\t\t\t\t[-81.623482, 25.897158],\n\t\t\t\t\t\t[-81.640084, 25.897784],\n\t\t\t\t\t\t[-81.644553, 25.897953],\n\t\t\t\t\t\t[-81.654493, 25.893579],\n\t\t\t\t\t\t[-81.663821, 25.885605],\n\t\t\t\t\t\t[-81.672633, 25.856654],\n\t\t\t\t\t\t[-81.678287, 25.845301],\n\t\t\t\t\t\t[-81.684800, 25.847205],\n\t\t\t\t\t\t[-81.689540, 25.852710],\n\t\t\t\t\t\t[-81.713172, 25.897568],\n\t\t\t\t\t\t[-81.717687, 25.902039],\n\t\t\t\t\t\t[-81.727086, 25.907207],\n\t\t\t\t\t\t[-81.731950, 25.931506],\n\t\t\t\t\t\t[-81.738118, 25.942009],\n\t\t\t\t\t\t[-81.745579, 25.949643],\n\t\t\t\t\t\t[-81.749724, 25.960463],\n\t\t\t\t\t\t[-81.747834, 25.994273],\n\t\t\t\t\t\t[-81.750668, 25.998425],\n\t\t\t\t\t\t[-81.757463, 26.000374],\n\t\t\t\t\t\t[-81.762439, 26.006070],\n\t\t\t\t\t\t[-81.801663, 26.088227],\n\t\t\t\t\t\t[-81.808833, 26.152246],\n\t\t\t\t\t\t[-81.814610, 26.173167],\n\t\t\t\t\t\t[-81.816810, 26.207166],\n\t\t\t\t\t\t[-81.820675, 26.236735],\n\t\t\t\t\t\t[-81.833142, 26.294518],\n\t\t\t\t\t\t[-81.844555, 26.327712],\n\t\t\t\t\t\t[-81.845834, 26.330378],\n\t\t\t\t\t\t[-81.690494, 26.317334],\n\t\t\t\t\t\t[-81.659506, 26.421077],\n\t\t\t\t\t\t[-81.562180, 26.422625],\n\t\t\t\t\t\t[-81.563763, 26.513324]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US12033\",\n\t\t\t\t\"STATE\": \"12\",\n\t\t\t\t\"COUNTY\": \"033\",\n\t\t\t\t\"NAME\": \"Escambia\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 656.461000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.919292, 30.370675],\n\t\t\t\t\t\t[-87.155392, 30.327748],\n\t\t\t\t\t\t[-87.206254, 30.320943],\n\t\t\t\t\t\t[-87.267827, 30.315480],\n\t\t\t\t\t\t[-87.282787, 30.318744],\n\t\t\t\t\t\t[-87.295422, 30.323503],\n\t\t\t\t\t\t[-87.319518, 30.317814],\n\t\t\t\t\t\t[-87.350486, 30.313064],\n\t\t\t\t\t\t[-87.419859, 30.297128],\n\t\t\t\t\t\t[-87.518324, 30.280435],\n\t\t\t\t\t\t[-87.452378, 30.300201],\n\t\t\t\t\t\t[-87.450078, 30.311100],\n\t\t\t\t\t\t[-87.450962, 30.346262],\n\t\t\t\t\t\t[-87.451378, 30.367199],\n\t\t\t\t\t\t[-87.440678, 30.391498],\n\t\t\t\t\t\t[-87.427478, 30.408398],\n\t\t\t\t\t\t[-87.419177, 30.410198],\n\t\t\t\t\t\t[-87.430578, 30.491096],\n\t\t\t\t\t\t[-87.448332, 30.513063],\n\t\t\t\t\t\t[-87.449841, 30.514369],\n\t\t\t\t\t\t[-87.449921, 30.514690],\n\t\t\t\t\t\t[-87.394479, 30.625192],\n\t\t\t\t\t\t[-87.394219, 30.641699],\n\t\t\t\t\t\t[-87.396997, 30.653640],\n\t\t\t\t\t\t[-87.407118, 30.671796],\n\t\t\t\t\t\t[-87.449362, 30.698913],\n\t\t\t\t\t\t[-87.481225, 30.716508],\n\t\t\t\t\t\t[-87.497515, 30.720123],\n\t\t\t\t\t\t[-87.502926, 30.722369],\n\t\t\t\t\t\t[-87.532607, 30.743489],\n\t\t\t\t\t\t[-87.624137, 30.845713],\n\t\t\t\t\t\t[-87.634938, 30.865886],\n\t\t\t\t\t\t[-87.622203, 30.897508],\n\t\t\t\t\t\t[-87.601355, 30.936294],\n\t\t\t\t\t\t[-87.594111, 30.976335],\n\t\t\t\t\t\t[-87.598927, 30.997454],\n\t\t\t\t\t\t[-87.598928, 30.997457],\n\t\t\t\t\t\t[-87.571281, 30.997870],\n\t\t\t\t\t\t[-87.548543, 30.997927],\n\t\t\t\t\t\t[-87.480243, 30.998202],\n\t\t\t\t\t\t[-87.479703, 30.998197],\n\t\t\t\t\t\t[-87.478706, 30.998213],\n\t\t\t\t\t\t[-87.466879, 30.998178],\n\t\t\t\t\t\t[-87.466827, 30.998178],\n\t\t\t\t\t\t[-87.461783, 30.998201],\n\t\t\t\t\t\t[-87.461638, 30.998202],\n\t\t\t\t\t\t[-87.458658, 30.998386],\n\t\t\t\t\t\t[-87.455705, 30.998318],\n\t\t\t\t\t\t[-87.449811, 30.998272],\n\t\t\t\t\t\t[-87.432292, 30.998205],\n\t\t\t\t\t\t[-87.425774, 30.998090],\n\t\t\t\t\t\t[-87.367842, 30.998292],\n\t\t\t\t\t\t[-87.364011, 30.998218],\n\t\t\t\t\t\t[-87.355656, 30.998244],\n\t\t\t\t\t\t[-87.333973, 30.998272],\n\t\t\t\t\t\t[-87.312183, 30.998435],\n\t\t\t\t\t\t[-87.304030, 30.998191],\n\t\t\t\t\t\t[-87.301567, 30.998434],\n\t\t\t\t\t\t[-87.290995, 30.998352],\n\t\t\t\t\t\t[-87.288905, 30.998345],\n\t\t\t\t\t\t[-87.265564, 30.998267],\n\t\t\t\t\t\t[-87.260540, 30.998195],\n\t\t\t\t\t\t[-87.259689, 30.998172],\n\t\t\t\t\t\t[-87.257960, 30.998263],\n\t\t\t\t\t\t[-87.257002, 30.998194],\n\t\t\t\t\t\t[-87.255592, 30.998216],\n\t\t\t\t\t\t[-87.254980, 30.998285],\n\t\t\t\t\t\t[-87.163084, 30.999051],\n\t\t\t\t\t\t[-87.286882, 30.925441],\n\t\t\t\t\t\t[-87.313611, 30.847266],\n\t\t\t\t\t\t[-87.308502, 30.726910],\n\t\t\t\t\t\t[-87.269407, 30.711687],\n\t\t\t\t\t\t[-87.258884, 30.611281],\n\t\t\t\t\t\t[-87.124968, 30.500196],\n\t\t\t\t\t\t[-87.134400, 30.420294],\n\t\t\t\t\t\t[-87.232970, 30.348999],\n\t\t\t\t\t\t[-86.919292, 30.370675]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US15003\",\n\t\t\t\t\"STATE\": \"15\",\n\t\t\t\t\"COUNTY\": \"003\",\n\t\t\t\t\"NAME\": \"Honolulu\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 600.743000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-158.044485, 21.306011],\n\t\t\t\t\t\t[-158.088300, 21.298800],\n\t\t\t\t\t\t[-158.103300, 21.297900],\n\t\t\t\t\t\t[-158.112700, 21.301900],\n\t\t\t\t\t\t[-158.121100, 21.316900],\n\t\t\t\t\t\t[-158.122500, 21.322400],\n\t\t\t\t\t\t[-158.111949, 21.326622],\n\t\t\t\t\t\t[-158.114196, 21.331123],\n\t\t\t\t\t\t[-158.119427, 21.334594],\n\t\t\t\t\t\t[-158.125459, 21.330264],\n\t\t\t\t\t\t[-158.133240, 21.359207],\n\t\t\t\t\t\t[-158.140300, 21.373800],\n\t\t\t\t\t\t[-158.149719, 21.385208],\n\t\t\t\t\t\t[-158.161743, 21.396282],\n\t\t\t\t\t\t[-158.179200, 21.404300],\n\t\t\t\t\t\t[-158.181274, 21.409626],\n\t\t\t\t\t\t[-158.181000, 21.420868],\n\t\t\t\t\t\t[-158.182648, 21.430073],\n\t\t\t\t\t\t[-158.192352, 21.448040],\n\t\t\t\t\t\t[-158.205383, 21.459793],\n\t\t\t\t\t\t[-158.219446, 21.469780],\n\t\t\t\t\t\t[-158.233000, 21.487600],\n\t\t\t\t\t\t[-158.231171, 21.523857],\n\t\t\t\t\t\t[-158.231750, 21.533035],\n\t\t\t\t\t\t[-158.234314, 21.540058],\n\t\t\t\t\t\t[-158.250671, 21.557373],\n\t\t\t\t\t\t[-158.279510, 21.575794],\n\t\t\t\t\t\t[-158.277679, 21.578789],\n\t\t\t\t\t\t[-158.254425, 21.582684],\n\t\t\t\t\t\t[-158.190704, 21.585892],\n\t\t\t\t\t\t[-158.170000, 21.582300],\n\t\t\t\t\t\t[-158.125610, 21.586739],\n\t\t\t\t\t\t[-158.106720, 21.596577],\n\t\t\t\t\t\t[-158.106689, 21.603024],\n\t\t\t\t\t\t[-158.109500, 21.605700],\n\t\t\t\t\t\t[-158.108185, 21.607487],\n\t\t\t\t\t\t[-158.079895, 21.628101],\n\t\t\t\t\t\t[-158.066800, 21.643700],\n\t\t\t\t\t\t[-158.066711, 21.652340],\n\t\t\t\t\t\t[-158.063900, 21.658400],\n\t\t\t\t\t\t[-158.037200, 21.684300],\n\t\t\t\t\t\t[-158.018127, 21.699955],\n\t\t\t\t\t\t[-157.992300, 21.708000],\n\t\t\t\t\t\t[-157.987030, 21.712494],\n\t\t\t\t\t\t[-157.968628, 21.712704],\n\t\t\t\t\t\t[-157.947174, 21.689568],\n\t\t\t\t\t\t[-157.939000, 21.669000],\n\t\t\t\t\t\t[-157.930100, 21.655200],\n\t\t\t\t\t\t[-157.924591, 21.651183],\n\t\t\t\t\t\t[-157.922800, 21.636100],\n\t\t\t\t\t\t[-157.923800, 21.629300],\n\t\t\t\t\t\t[-157.910797, 21.611183],\n\t\t\t\t\t\t[-157.900574, 21.605885],\n\t\t\t\t\t\t[-157.877350, 21.575277],\n\t\t\t\t\t\t[-157.878601, 21.560181],\n\t\t\t\t\t\t[-157.872528, 21.557568],\n\t\t\t\t\t\t[-157.866900, 21.563700],\n\t\t\t\t\t\t[-157.856140, 21.560661],\n\t\t\t\t\t\t[-157.852570, 21.557514],\n\t\t\t\t\t\t[-157.836945, 21.529945],\n\t\t\t\t\t\t[-157.837372, 21.512085],\n\t\t\t\t\t\t[-157.849579, 21.509598],\n\t\t\t\t\t\t[-157.852625, 21.499971],\n\t\t\t\t\t\t[-157.845490, 21.466747],\n\t\t\t\t\t\t[-157.840990, 21.459483],\n\t\t\t\t\t\t[-157.824890, 21.455379],\n\t\t\t\t\t\t[-157.816300, 21.450200],\n\t\t\t\t\t\t[-157.813900, 21.440300],\n\t\t\t\t\t\t[-157.805900, 21.430100],\n\t\t\t\t\t\t[-157.786513, 21.415633],\n\t\t\t\t\t\t[-157.779846, 21.417309],\n\t\t\t\t\t\t[-157.774455, 21.421352],\n\t\t\t\t\t\t[-157.772209, 21.431236],\n\t\t\t\t\t\t[-157.774905, 21.453698],\n\t\t\t\t\t\t[-157.772209, 21.457741],\n\t\t\t\t\t\t[-157.764572, 21.461335],\n\t\t\t\t\t\t[-157.754239, 21.461335],\n\t\t\t\t\t\t[-157.737617, 21.459089],\n\t\t\t\t\t\t[-157.731777, 21.455944],\n\t\t\t\t\t\t[-157.731328, 21.444713],\n\t\t\t\t\t\t[-157.735820, 21.438424],\n\t\t\t\t\t\t[-157.740762, 21.424048],\n\t\t\t\t\t\t[-157.741211, 21.414614],\n\t\t\t\t\t\t[-157.738600, 21.404300],\n\t\t\t\t\t\t[-157.730191, 21.401871],\n\t\t\t\t\t\t[-157.728221, 21.402104],\n\t\t\t\t\t\t[-157.726421, 21.402845],\n\t\t\t\t\t\t[-157.724324, 21.403311],\n\t\t\t\t\t\t[-157.723794, 21.403290],\n\t\t\t\t\t\t[-157.723286, 21.403227],\n\t\t\t\t\t\t[-157.722735, 21.403121],\n\t\t\t\t\t\t[-157.722544, 21.403036],\n\t\t\t\t\t\t[-157.721845, 21.401596],\n\t\t\t\t\t\t[-157.721083, 21.399541],\n\t\t\t\t\t\t[-157.718900, 21.396100],\n\t\t\t\t\t\t[-157.708900, 21.383300],\n\t\t\t\t\t\t[-157.708700, 21.379300],\n\t\t\t\t\t\t[-157.712600, 21.368900],\n\t\t\t\t\t\t[-157.710600, 21.358500],\n\t\t\t\t\t\t[-157.708800, 21.353400],\n\t\t\t\t\t\t[-157.697100, 21.336400],\n\t\t\t\t\t\t[-157.693800, 21.332900],\n\t\t\t\t\t\t[-157.661900, 21.313100],\n\t\t\t\t\t\t[-157.651800, 21.313900],\n\t\t\t\t\t\t[-157.652629, 21.308709],\n\t\t\t\t\t\t[-157.653700, 21.302000],\n\t\t\t\t\t\t[-157.694600, 21.273900],\n\t\t\t\t\t\t[-157.694400, 21.266500],\n\t\t\t\t\t\t[-157.700100, 21.264000],\n\t\t\t\t\t\t[-157.709700, 21.262100],\n\t\t\t\t\t\t[-157.713900, 21.263800],\n\t\t\t\t\t\t[-157.714200, 21.266500],\n\t\t\t\t\t\t[-157.711400, 21.272000],\n\t\t\t\t\t\t[-157.712200, 21.281400],\n\t\t\t\t\t\t[-157.714300, 21.284500],\n\t\t\t\t\t\t[-157.721300, 21.286900],\n\t\t\t\t\t\t[-157.757200, 21.278000],\n\t\t\t\t\t\t[-157.765000, 21.278900],\n\t\t\t\t\t\t[-157.778200, 21.273500],\n\t\t\t\t\t\t[-157.793100, 21.260400],\n\t\t\t\t\t\t[-157.809600, 21.257700],\n\t\t\t\t\t\t[-157.821100, 21.260600],\n\t\t\t\t\t\t[-157.824100, 21.264600],\n\t\t\t\t\t\t[-157.825300, 21.271400],\n\t\t\t\t\t\t[-157.831900, 21.279500],\n\t\t\t\t\t\t[-157.845700, 21.290000],\n\t\t\t\t\t\t[-157.890000, 21.306500],\n\t\t\t\t\t\t[-157.894518, 21.319632],\n\t\t\t\t\t\t[-157.898969, 21.327391],\n\t\t\t\t\t\t[-157.904820, 21.329172],\n\t\t\t\t\t\t[-157.918939, 21.318615],\n\t\t\t\t\t\t[-157.917921, 21.313781],\n\t\t\t\t\t\t[-157.913469, 21.310983],\n\t\t\t\t\t\t[-157.910925, 21.305768],\n\t\t\t\t\t\t[-157.952263, 21.306531],\n\t\t\t\t\t\t[-157.950736, 21.312509],\n\t\t\t\t\t\t[-157.951881, 21.318742],\n\t\t\t\t\t\t[-157.967971, 21.327986],\n\t\t\t\t\t\t[-157.973334, 21.327426],\n\t\t\t\t\t\t[-157.989424, 21.317984],\n\t\t\t\t\t\t[-158.024500, 21.309300],\n\t\t\t\t\t\t[-158.044485, 21.306011]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US16007\",\n\t\t\t\t\"STATE\": \"16\",\n\t\t\t\t\"COUNTY\": \"007\",\n\t\t\t\t\"NAME\": \"Bear Lake\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 974.785000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-111.046249, 42.513116],\n\t\t\t\t\t\t[-111.047080, 42.349420],\n\t\t\t\t\t\t[-111.047074, 42.280787],\n\t\t\t\t\t\t[-111.047097, 42.194773],\n\t\t\t\t\t\t[-111.047058, 42.182672],\n\t\t\t\t\t\t[-111.047107, 42.148971],\n\t\t\t\t\t\t[-111.047109, 42.142497],\n\t\t\t\t\t\t[-111.046689, 42.001567],\n\t\t\t\t\t\t[-111.415873, 42.000748],\n\t\t\t\t\t\t[-111.420898, 42.000793],\n\t\t\t\t\t\t[-111.425535, 42.000840],\n\t\t\t\t\t\t[-111.507264, 41.999518],\n\t\t\t\t\t\t[-111.594446, 42.093548],\n\t\t\t\t\t\t[-111.626162, 42.208613],\n\t\t\t\t\t\t[-111.552231, 42.351514],\n\t\t\t\t\t\t[-111.598597, 42.415821],\n\t\t\t\t\t\t[-111.579321, 42.430510],\n\t\t\t\t\t\t[-111.634939, 42.570117],\n\t\t\t\t\t\t[-111.603999, 42.590757],\n\t\t\t\t\t\t[-111.364809, 42.590462],\n\t\t\t\t\t\t[-111.280054, 42.553042],\n\t\t\t\t\t\t[-111.241365, 42.602078],\n\t\t\t\t\t\t[-111.234734, 42.478378],\n\t\t\t\t\t\t[-111.170956, 42.473299],\n\t\t\t\t\t\t[-111.046249, 42.513116]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US16011\",\n\t\t\t\t\"STATE\": \"16\",\n\t\t\t\t\"COUNTY\": \"011\",\n\t\t\t\t\"NAME\": \"Bingham\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2093.978000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-112.697408, 43.623011],\n\t\t\t\t\t\t[-112.519945, 43.626560],\n\t\t\t\t\t\t[-112.520024, 43.425099],\n\t\t\t\t\t\t[-112.103298, 43.425057],\n\t\t\t\t\t\t[-112.043821, 43.366708],\n\t\t\t\t\t\t[-111.822589, 43.366135],\n\t\t\t\t\t\t[-111.822742, 43.282200],\n\t\t\t\t\t\t[-111.587795, 43.281630],\n\t\t\t\t\t\t[-111.589615, 43.020052],\n\t\t\t\t\t\t[-112.063055, 43.022364],\n\t\t\t\t\t\t[-112.676152, 43.022012],\n\t\t\t\t\t\t[-112.750503, 42.951443],\n\t\t\t\t\t\t[-112.816427, 42.863253],\n\t\t\t\t\t\t[-113.007760, 42.863051],\n\t\t\t\t\t\t[-113.007657, 43.111027],\n\t\t\t\t\t\t[-113.007290, 43.284801],\n\t\t\t\t\t\t[-112.947187, 43.284725],\n\t\t\t\t\t\t[-112.936835, 43.449386],\n\t\t\t\t\t\t[-112.816659, 43.449048],\n\t\t\t\t\t\t[-112.816193, 43.535869],\n\t\t\t\t\t\t[-112.699080, 43.540244],\n\t\t\t\t\t\t[-112.697408, 43.623011]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US16013\",\n\t\t\t\t\"STATE\": \"16\",\n\t\t\t\t\"COUNTY\": \"013\",\n\t\t\t\t\"NAME\": \"Blaine\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2643.586000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-113.472177, 42.669251],\n\t\t\t\t\t\t[-113.472155, 42.849218],\n\t\t\t\t\t\t[-113.413026, 42.849250],\n\t\t\t\t\t\t[-113.413693, 43.199785],\n\t\t\t\t\t\t[-113.714701, 43.200030],\n\t\t\t\t\t\t[-114.374877, 43.199603],\n\t\t\t\t\t\t[-114.394580, 43.325804],\n\t\t\t\t\t\t[-114.534560, 43.333337],\n\t\t\t\t\t\t[-114.546987, 43.436603],\n\t\t\t\t\t\t[-114.507786, 43.480804],\n\t\t\t\t\t\t[-114.586574, 43.558902],\n\t\t\t\t\t\t[-114.682225, 43.590431],\n\t\t\t\t\t\t[-114.666283, 43.738010],\n\t\t\t\t\t\t[-114.714849, 43.814844],\n\t\t\t\t\t\t[-114.828915, 43.788027],\n\t\t\t\t\t\t[-114.989384, 43.858611],\n\t\t\t\t\t\t[-114.971258, 43.938134],\n\t\t\t\t\t\t[-114.873411, 43.992879],\n\t\t\t\t\t\t[-114.813745, 43.992978],\n\t\t\t\t\t\t[-114.813789, 43.927818],\n\t\t\t\t\t\t[-114.681246, 43.927753],\n\t\t\t\t\t\t[-114.561237, 43.844410],\n\t\t\t\t\t\t[-114.514979, 43.894842],\n\t\t\t\t\t\t[-114.292990, 43.887215],\n\t\t\t\t\t\t[-114.275226, 43.830935],\n\t\t\t\t\t\t[-114.073072, 43.738668],\n\t\t\t\t\t\t[-114.032770, 43.778879],\n\t\t\t\t\t\t[-113.973494, 43.707207],\n\t\t\t\t\t\t[-113.875866, 43.650749],\n\t\t\t\t\t\t[-113.798031, 43.568818],\n\t\t\t\t\t\t[-113.700570, 43.584762],\n\t\t\t\t\t\t[-113.593503, 43.467251],\n\t\t\t\t\t\t[-113.635260, 43.452266],\n\t\t\t\t\t\t[-113.635446, 43.367556],\n\t\t\t\t\t\t[-113.361910, 43.367232],\n\t\t\t\t\t\t[-113.361905, 43.284655],\n\t\t\t\t\t\t[-113.007290, 43.284801],\n\t\t\t\t\t\t[-113.007657, 43.111027],\n\t\t\t\t\t\t[-113.243510, 43.111109],\n\t\t\t\t\t\t[-113.236927, 42.762359],\n\t\t\t\t\t\t[-113.178978, 42.762283],\n\t\t\t\t\t\t[-113.179038, 42.675543],\n\t\t\t\t\t\t[-113.236952, 42.625281],\n\t\t\t\t\t\t[-113.375835, 42.687887],\n\t\t\t\t\t\t[-113.472177, 42.669251]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05105\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"105\",\n\t\t\t\t\"NAME\": \"Perry\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 551.402000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.544341, 34.953319],\n\t\t\t\t\t\t[-92.753626, 34.911248],\n\t\t\t\t\t\t[-92.739779, 34.853459],\n\t\t\t\t\t\t[-93.073877, 34.858091],\n\t\t\t\t\t\t[-93.075178, 34.771892],\n\t\t\t\t\t\t[-93.269886, 34.771993],\n\t\t\t\t\t\t[-93.287785, 34.773193],\n\t\t\t\t\t\t[-93.288284, 34.860992],\n\t\t\t\t\t\t[-93.181478, 34.976390],\n\t\t\t\t\t\t[-93.040525, 35.076923],\n\t\t\t\t\t\t[-92.716331, 35.071742],\n\t\t\t\t\t\t[-92.554685, 35.113277],\n\t\t\t\t\t\t[-92.593585, 35.011761],\n\t\t\t\t\t\t[-92.544341, 34.953319]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05107\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"107\",\n\t\t\t\t\"NAME\": \"Phillips\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 695.663000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.575786, 34.641749],\n\t\t\t\t\t\t[-90.570133, 34.524829],\n\t\t\t\t\t\t[-90.565809, 34.435400],\n\t\t\t\t\t\t[-90.575336, 34.415152],\n\t\t\t\t\t\t[-90.613944, 34.390723],\n\t\t\t\t\t\t[-90.658542, 34.375705],\n\t\t\t\t\t\t[-90.764143, 34.363396],\n\t\t\t\t\t\t[-90.856367, 34.238928],\n\t\t\t\t\t\t[-90.868775, 34.228245],\n\t\t\t\t\t\t[-90.894744, 34.229977],\n\t\t\t\t\t\t[-90.911480, 34.223051],\n\t\t\t\t\t\t[-90.913212, 34.210355],\n\t\t\t\t\t\t[-90.895898, 34.191888],\n\t\t\t\t\t\t[-90.880894, 34.180346],\n\t\t\t\t\t\t[-90.880317, 34.169381],\n\t\t\t\t\t\t[-90.893013, 34.155531],\n\t\t\t\t\t\t[-90.918405, 34.154376],\n\t\t\t\t\t\t[-90.934564, 34.130138],\n\t\t\t\t\t\t[-90.933116, 34.124488],\n\t\t\t\t\t\t[-90.955170, 34.118833],\n\t\t\t\t\t\t[-91.117905, 34.119105],\n\t\t\t\t\t\t[-91.060626, 34.216766],\n\t\t\t\t\t\t[-91.056276, 34.336605],\n\t\t\t\t\t\t[-91.002693, 34.336353],\n\t\t\t\t\t\t[-91.000459, 34.469372],\n\t\t\t\t\t\t[-91.054774, 34.470880],\n\t\t\t\t\t\t[-91.051918, 34.645721],\n\t\t\t\t\t\t[-90.583224, 34.641389],\n\t\t\t\t\t\t[-90.575786, 34.641749]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05119\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"119\",\n\t\t\t\t\"NAME\": \"Pulaski\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 759.763000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.245818, 34.493506],\n\t\t\t\t\t\t[-92.244209, 34.580890],\n\t\t\t\t\t\t[-92.348749, 34.582290],\n\t\t\t\t\t\t[-92.346814, 34.625611],\n\t\t\t\t\t\t[-92.445148, 34.626940],\n\t\t\t\t\t\t[-92.443265, 34.672041],\n\t\t\t\t\t\t[-92.551963, 34.689432],\n\t\t\t\t\t\t[-92.549856, 34.761699],\n\t\t\t\t\t\t[-92.654324, 34.764541],\n\t\t\t\t\t\t[-92.651248, 34.851682],\n\t\t\t\t\t\t[-92.739779, 34.853459],\n\t\t\t\t\t\t[-92.753626, 34.911248],\n\t\t\t\t\t\t[-92.544341, 34.953319],\n\t\t\t\t\t\t[-92.229893, 34.927558],\n\t\t\t\t\t\t[-92.227541, 35.014484],\n\t\t\t\t\t\t[-92.121336, 35.012210],\n\t\t\t\t\t\t[-92.070805, 35.011802],\n\t\t\t\t\t\t[-92.078711, 34.729983],\n\t\t\t\t\t\t[-92.113313, 34.622966],\n\t\t\t\t\t\t[-92.029540, 34.621403],\n\t\t\t\t\t\t[-92.029996, 34.489352],\n\t\t\t\t\t\t[-92.208041, 34.492765],\n\t\t\t\t\t\t[-92.245818, 34.493506]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17031\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"031\",\n\t\t\t\t\"NAME\": \"Cook\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 945.326000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.524044, 41.708335],\n\t\t\t\t\t\t[-87.524944, 41.702635],\n\t\t\t\t\t\t[-87.524844, 41.691635],\n\t\t\t\t\t\t[-87.524642, 41.634935],\n\t\t\t\t\t\t[-87.524742, 41.632435],\n\t\t\t\t\t\t[-87.524642, 41.622535],\n\t\t\t\t\t\t[-87.524641, 41.563335],\n\t\t\t\t\t\t[-87.525669, 41.470283],\n\t\t\t\t\t\t[-87.653236, 41.469754],\n\t\t\t\t\t\t[-87.712752, 41.469620],\n\t\t\t\t\t\t[-87.717554, 41.469733],\n\t\t\t\t\t\t[-87.790303, 41.469846],\n\t\t\t\t\t\t[-87.790408, 41.528134],\n\t\t\t\t\t\t[-87.790560, 41.539916],\n\t\t\t\t\t\t[-87.792292, 41.538662],\n\t\t\t\t\t\t[-87.792793, 41.558540],\n\t\t\t\t\t\t[-87.909453, 41.556732],\n\t\t\t\t\t\t[-87.911930, 41.643933],\n\t\t\t\t\t\t[-88.027688, 41.641506],\n\t\t\t\t\t\t[-88.029160, 41.685530],\n\t\t\t\t\t\t[-87.914265, 41.716746],\n\t\t\t\t\t\t[-87.919333, 41.847679],\n\t\t\t\t\t\t[-87.919532, 41.851854],\n\t\t\t\t\t\t[-87.919640, 41.852621],\n\t\t\t\t\t\t[-87.919872, 41.859781],\n\t\t\t\t\t\t[-87.920082, 41.862199],\n\t\t\t\t\t\t[-87.920441, 41.906869],\n\t\t\t\t\t\t[-87.920000, 41.958151],\n\t\t\t\t\t\t[-87.920670, 41.994031],\n\t\t\t\t\t\t[-88.080223, 41.990752],\n\t\t\t\t\t\t[-88.207356, 41.987127],\n\t\t\t\t\t\t[-88.210764, 41.987023],\n\t\t\t\t\t\t[-88.216575, 41.987127],\n\t\t\t\t\t\t[-88.217875, 41.987027],\n\t\t\t\t\t\t[-88.232275, 41.986627],\n\t\t\t\t\t\t[-88.233475, 41.986727],\n\t\t\t\t\t\t[-88.262876, 41.986227],\n\t\t\t\t\t\t[-88.238369, 42.154253],\n\t\t\t\t\t\t[-88.237402, 42.154281],\n\t\t\t\t\t\t[-88.199584, 42.154260],\n\t\t\t\t\t\t[-88.121545, 42.154193],\n\t\t\t\t\t\t[-88.004466, 42.153645],\n\t\t\t\t\t\t[-87.759327, 42.152362],\n\t\t\t\t\t\t[-87.756390, 42.148350],\n\t\t\t\t\t\t[-87.755826, 42.147579],\n\t\t\t\t\t\t[-87.754767, 42.146132],\n\t\t\t\t\t\t[-87.754444, 42.145691],\n\t\t\t\t\t\t[-87.754358, 42.145573],\n\t\t\t\t\t\t[-87.750396, 42.140160],\n\t\t\t\t\t\t[-87.748486, 42.137550],\n\t\t\t\t\t\t[-87.746421, 42.134729],\n\t\t\t\t\t\t[-87.741662, 42.128227],\n\t\t\t\t\t\t[-87.741318, 42.127812],\n\t\t\t\t\t\t[-87.740787, 42.127172],\n\t\t\t\t\t\t[-87.740718, 42.127089],\n\t\t\t\t\t\t[-87.739735, 42.125903],\n\t\t\t\t\t\t[-87.739529, 42.125655],\n\t\t\t\t\t\t[-87.733929, 42.118903],\n\t\t\t\t\t\t[-87.730463, 42.114723],\n\t\t\t\t\t\t[-87.729387, 42.113426],\n\t\t\t\t\t\t[-87.729378, 42.113414],\n\t\t\t\t\t\t[-87.728335, 42.112157],\n\t\t\t\t\t\t[-87.728191, 42.111984],\n\t\t\t\t\t\t[-87.727248, 42.110847],\n\t\t\t\t\t\t[-87.727005, 42.110554],\n\t\t\t\t\t\t[-87.725196, 42.108373],\n\t\t\t\t\t\t[-87.724661, 42.107727],\n\t\t\t\t\t\t[-87.724603, 42.107674],\n\t\t\t\t\t\t[-87.723723, 42.106879],\n\t\t\t\t\t\t[-87.722306, 42.105596],\n\t\t\t\t\t\t[-87.722220, 42.105518],\n\t\t\t\t\t\t[-87.721500, 42.104866],\n\t\t\t\t\t\t[-87.720407, 42.103878],\n\t\t\t\t\t\t[-87.720303, 42.103783],\n\t\t\t\t\t\t[-87.718065, 42.101758],\n\t\t\t\t\t\t[-87.717504, 42.101250],\n\t\t\t\t\t\t[-87.717276, 42.101044],\n\t\t\t\t\t\t[-87.717169, 42.100947],\n\t\t\t\t\t\t[-87.712206, 42.096455],\n\t\t\t\t\t\t[-87.710960, 42.095328],\n\t\t\t\t\t\t[-87.706415, 42.092213],\n\t\t\t\t\t\t[-87.704594, 42.090966],\n\t\t\t\t\t\t[-87.703882, 42.090478],\n\t\t\t\t\t\t[-87.702370, 42.089442],\n\t\t\t\t\t\t[-87.682359, 42.075729],\n\t\t\t\t\t\t[-87.682179, 42.075441],\n\t\t\t\t\t\t[-87.680750, 42.073160],\n\t\t\t\t\t\t[-87.679843, 42.071713],\n\t\t\t\t\t\t[-87.671462, 42.058334],\n\t\t\t\t\t\t[-87.670512, 42.052980],\n\t\t\t\t\t\t[-87.670699, 42.052305],\n\t\t\t\t\t\t[-87.671119, 42.050781],\n\t\t\t\t\t\t[-87.671184, 42.050548],\n\t\t\t\t\t\t[-87.671894, 42.047972],\n\t\t\t\t\t\t[-87.671094, 42.042802],\n\t\t\t\t\t\t[-87.668982, 42.029142],\n\t\t\t\t\t\t[-87.630953, 41.933132],\n\t\t\t\t\t\t[-87.630870, 41.932784],\n\t\t\t\t\t\t[-87.627038, 41.916738],\n\t\t\t\t\t\t[-87.624763, 41.907209],\n\t\t\t\t\t\t[-87.624134, 41.904574],\n\t\t\t\t\t\t[-87.624052, 41.904232],\n\t\t\t\t\t\t[-87.622944, 41.902020],\n\t\t\t\t\t\t[-87.619852, 41.901392],\n\t\t\t\t\t\t[-87.617433, 41.898032],\n\t\t\t\t\t\t[-87.614163, 41.893418],\n\t\t\t\t\t\t[-87.612291, 41.893335],\n\t\t\t\t\t\t[-87.611659, 41.892216],\n\t\t\t\t\t\t[-87.611659, 41.890708],\n\t\t\t\t\t\t[-87.612680, 41.889248],\n\t\t\t\t\t\t[-87.614188, 41.888421],\n\t\t\t\t\t\t[-87.613556, 41.884480],\n\t\t\t\t\t\t[-87.613654, 41.884412],\n\t\t\t\t\t\t[-87.615734, 41.882958],\n\t\t\t\t\t\t[-87.616537, 41.882396],\n\t\t\t\t\t\t[-87.616251, 41.868933],\n\t\t\t\t\t\t[-87.609450, 41.845233],\n\t\t\t\t\t\t[-87.600549, 41.826833],\n\t\t\t\t\t\t[-87.587123, 41.811422],\n\t\t\t\t\t\t[-87.587054, 41.811342],\n\t\t\t\t\t\t[-87.580948, 41.804334],\n\t\t\t\t\t\t[-87.580920, 41.804225],\n\t\t\t\t\t\t[-87.580550, 41.802750],\n\t\t\t\t\t\t[-87.576347, 41.786034],\n\t\t\t\t\t\t[-87.560646, 41.766034],\n\t\t\t\t\t\t[-87.542845, 41.752135],\n\t\t\t\t\t\t[-87.530745, 41.748235],\n\t\t\t\t\t\t[-87.524141, 41.723990],\n\t\t\t\t\t\t[-87.524044, 41.708335]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18123\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"123\",\n\t\t\t\t\"NAME\": \"Perry\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 381.727000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.655296, 37.842508],\n\t\t\t\t\t\t[-86.660293, 37.865057],\n\t\t\t\t\t\t[-86.709164, 37.897640],\n\t\t\t\t\t\t[-86.718462, 37.893123],\n\t\t\t\t\t\t[-86.723510, 37.892831],\n\t\t\t\t\t\t[-86.731460, 37.894340],\n\t\t\t\t\t\t[-86.740877, 37.902568],\n\t\t\t\t\t\t[-86.750990, 37.912893],\n\t\t\t\t\t\t[-86.770179, 37.940264],\n\t\t\t\t\t\t[-86.787695, 37.971449],\n\t\t\t\t\t\t[-86.794985, 37.988982],\n\t\t\t\t\t\t[-86.814776, 37.998638],\n\t\t\t\t\t\t[-86.772367, 37.998165],\n\t\t\t\t\t\t[-86.791497, 38.205130],\n\t\t\t\t\t\t[-86.792152, 38.249100],\n\t\t\t\t\t\t[-86.679511, 38.263086],\n\t\t\t\t\t\t[-86.570136, 38.266328],\n\t\t\t\t\t\t[-86.571677, 38.207531],\n\t\t\t\t\t\t[-86.460425, 38.206825],\n\t\t\t\t\t\t[-86.426508, 38.081784],\n\t\t\t\t\t\t[-86.430091, 38.078638],\n\t\t\t\t\t\t[-86.432789, 38.067171],\n\t\t\t\t\t\t[-86.438236, 38.060426],\n\t\t\t\t\t\t[-86.452192, 38.050490],\n\t\t\t\t\t\t[-86.466876, 38.046597],\n\t\t\t\t\t\t[-86.490853, 38.045796],\n\t\t\t\t\t\t[-86.490858, 38.045796],\n\t\t\t\t\t\t[-86.511760, 38.044448],\n\t\t\t\t\t\t[-86.517289, 38.042634],\n\t\t\t\t\t\t[-86.521825, 38.038327],\n\t\t\t\t\t\t[-86.524969, 38.027879],\n\t\t\t\t\t\t[-86.525174, 37.968228],\n\t\t\t\t\t\t[-86.604624, 37.858272],\n\t\t\t\t\t\t[-86.634271, 37.843845],\n\t\t\t\t\t\t[-86.648028, 37.841425],\n\t\t\t\t\t\t[-86.655285, 37.842506],\n\t\t\t\t\t\t[-86.655296, 37.842508]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18129\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"129\",\n\t\t\t\t\"NAME\": \"Posey\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 409.571000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.700421, 37.900858],\n\t\t\t\t\t\t[-87.762260, 37.890906],\n\t\t\t\t\t\t[-87.783643, 37.877759],\n\t\t\t\t\t\t[-87.790900, 37.875714],\n\t\t\t\t\t\t[-87.830578, 37.876516],\n\t\t\t\t\t\t[-87.841193, 37.882325],\n\t\t\t\t\t\t[-87.857243, 37.900649],\n\t\t\t\t\t\t[-87.865558, 37.915056],\n\t\t\t\t\t\t[-87.872540, 37.920999],\n\t\t\t\t\t\t[-87.883321, 37.926238],\n\t\t\t\t\t\t[-87.898062, 37.927514],\n\t\t\t\t\t\t[-87.904789, 37.924892],\n\t\t\t\t\t\t[-87.927424, 37.902038],\n\t\t\t\t\t\t[-87.936784, 37.892587],\n\t\t\t\t\t\t[-87.940069, 37.887670],\n\t\t\t\t\t\t[-87.940839, 37.883338],\n\t\t\t\t\t\t[-87.940005, 37.875044],\n\t\t\t\t\t\t[-87.936228, 37.867937],\n\t\t\t\t\t\t[-87.927303, 37.858709],\n\t\t\t\t\t\t[-87.914892, 37.849618],\n\t\t\t\t\t\t[-87.910276, 37.843416],\n\t\t\t\t\t\t[-87.907773, 37.837611],\n\t\t\t\t\t\t[-87.903804, 37.817762],\n\t\t\t\t\t\t[-87.906810, 37.807624],\n\t\t\t\t\t\t[-87.943756, 37.776843],\n\t\t\t\t\t\t[-87.970869, 37.783456],\n\t\t\t\t\t\t[-87.976389, 37.788004],\n\t\t\t\t\t\t[-88.004706, 37.800145],\n\t\t\t\t\t\t[-88.017314, 37.801911],\n\t\t\t\t\t\t[-88.028030, 37.799224],\n\t\t\t\t\t\t[-88.027789, 37.828298],\n\t\t\t\t\t\t[-88.049453, 37.845187],\n\t\t\t\t\t\t[-88.071449, 37.895813],\n\t\t\t\t\t\t[-88.055373, 37.891238],\n\t\t\t\t\t\t[-88.021117, 37.888057],\n\t\t\t\t\t\t[-88.017073, 37.889222],\n\t\t\t\t\t\t[-88.013451, 37.893951],\n\t\t\t\t\t\t[-88.012574, 37.977062],\n\t\t\t\t\t\t[-88.041532, 38.037345],\n\t\t\t\t\t\t[-88.042132, 38.046345],\n\t\t\t\t\t\t[-88.013118, 38.103527],\n\t\t\t\t\t\t[-87.974272, 38.121981],\n\t\t\t\t\t\t[-87.942176, 38.131759],\n\t\t\t\t\t\t[-87.927830, 38.141545],\n\t\t\t\t\t\t[-87.911034, 38.162194],\n\t\t\t\t\t\t[-87.910792, 38.167666],\n\t\t\t\t\t\t[-87.915666, 38.173322],\n\t\t\t\t\t\t[-87.928856, 38.176771],\n\t\t\t\t\t\t[-87.940694, 38.181261],\n\t\t\t\t\t\t[-87.951307, 38.193099],\n\t\t\t\t\t\t[-87.959062, 38.203712],\n\t\t\t\t\t\t[-87.961103, 38.214733],\n\t\t\t\t\t\t[-87.955344, 38.230008],\n\t\t\t\t\t\t[-87.799169, 38.228580],\n\t\t\t\t\t\t[-87.688374, 38.168419],\n\t\t\t\t\t\t[-87.700421, 37.900858]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18143\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"143\",\n\t\t\t\t\"NAME\": \"Scott\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 190.397000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.569980, 38.606155],\n\t\t\t\t\t\t[-85.793584, 38.604814],\n\t\t\t\t\t\t[-85.847893, 38.561269],\n\t\t\t\t\t\t[-85.885643, 38.575412],\n\t\t\t\t\t\t[-85.888334, 38.734443],\n\t\t\t\t\t\t[-85.795357, 38.807508],\n\t\t\t\t\t\t[-85.683839, 38.815406],\n\t\t\t\t\t\t[-85.683338, 38.736731],\n\t\t\t\t\t\t[-85.570930, 38.678706],\n\t\t\t\t\t\t[-85.569980, 38.606155]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18147\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"147\",\n\t\t\t\t\"NAME\": \"Spencer\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 396.744000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.814776, 37.998638],\n\t\t\t\t\t\t[-86.815267, 37.998877],\n\t\t\t\t\t\t[-86.823491, 37.998939],\n\t\t\t\t\t\t[-86.855950, 37.987292],\n\t\t\t\t\t\t[-86.884961, 37.964373],\n\t\t\t\t\t\t[-86.902413, 37.946161],\n\t\t\t\t\t\t[-86.919329, 37.936664],\n\t\t\t\t\t\t[-86.978830, 37.930214],\n\t\t\t\t\t\t[-86.978957, 37.930200],\n\t\t\t\t\t\t[-87.010315, 37.919668],\n\t\t\t\t\t\t[-87.033444, 37.906593],\n\t\t\t\t\t\t[-87.042249, 37.898291],\n\t\t\t\t\t\t[-87.046237, 37.889866],\n\t\t\t\t\t\t[-87.043407, 37.879940],\n\t\t\t\t\t\t[-87.043854, 37.870796],\n\t\t\t\t\t\t[-87.057836, 37.827457],\n\t\t\t\t\t\t[-87.067836, 37.806065],\n\t\t\t\t\t\t[-87.077404, 37.796209],\n\t\t\t\t\t\t[-87.090636, 37.787808],\n\t\t\t\t\t\t[-87.111133, 37.782512],\n\t\t\t\t\t\t[-87.119229, 37.782848],\n\t\t\t\t\t\t[-87.128749, 37.785728],\n\t\t\t\t\t\t[-87.132621, 37.791008],\n\t\t\t\t\t\t[-87.202240, 37.843791],\n\t\t\t\t\t\t[-87.262930, 37.872846],\n\t\t\t\t\t\t[-87.269561, 37.877155],\n\t\t\t\t\t\t[-87.268003, 37.924766],\n\t\t\t\t\t\t[-87.072332, 38.118280],\n\t\t\t\t\t\t[-87.017453, 38.118301],\n\t\t\t\t\t\t[-87.017490, 38.203580],\n\t\t\t\t\t\t[-86.791497, 38.205130],\n\t\t\t\t\t\t[-86.772367, 37.998165],\n\t\t\t\t\t\t[-86.814776, 37.998638]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18155\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"155\",\n\t\t\t\t\"NAME\": \"Switzerland\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 220.633000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.813182, 38.930583],\n\t\t\t\t\t\t[-84.789521, 38.884687],\n\t\t\t\t\t\t[-84.785111, 38.879988],\n\t\t\t\t\t\t[-84.785799, 38.869496],\n\t\t\t\t\t\t[-84.791078, 38.855859],\n\t\t\t\t\t\t[-84.813350, 38.798330],\n\t\t\t\t\t\t[-84.844412, 38.787078],\n\t\t\t\t\t\t[-84.944296, 38.775184],\n\t\t\t\t\t\t[-84.973432, 38.778847],\n\t\t\t\t\t\t[-84.984627, 38.779072],\n\t\t\t\t\t\t[-84.995939, 38.776756],\n\t\t\t\t\t\t[-85.024205, 38.763311],\n\t\t\t\t\t\t[-85.100963, 38.726800],\n\t\t\t\t\t\t[-85.106902, 38.720789],\n\t\t\t\t\t\t[-85.138680, 38.699168],\n\t\t\t\t\t\t[-85.156158, 38.692251],\n\t\t\t\t\t\t[-85.172528, 38.688082],\n\t\t\t\t\t\t[-85.189362, 38.687579],\n\t\t\t\t\t\t[-85.201498, 38.691575],\n\t\t\t\t\t\t[-85.203166, 38.913803],\n\t\t\t\t\t\t[-85.202849, 38.928523],\n\t\t\t\t\t\t[-85.135832, 38.929578],\n\t\t\t\t\t\t[-85.140312, 38.903194],\n\t\t\t\t\t\t[-84.870749, 38.900905],\n\t\t\t\t\t\t[-84.813182, 38.930583]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18163\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"163\",\n\t\t\t\t\"NAME\": \"Vanderburgh\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 233.475000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.451185, 37.941034],\n\t\t\t\t\t\t[-87.511499, 37.906426],\n\t\t\t\t\t\t[-87.550333, 37.924890],\n\t\t\t\t\t\t[-87.559342, 37.931146],\n\t\t\t\t\t\t[-87.572030, 37.947466],\n\t\t\t\t\t\t[-87.574287, 37.954842],\n\t\t\t\t\t\t[-87.573415, 37.962642],\n\t\t\t\t\t\t[-87.574715, 37.967742],\n\t\t\t\t\t\t[-87.581115, 37.973442],\n\t\t\t\t\t\t[-87.585916, 37.975442],\n\t\t\t\t\t\t[-87.592916, 37.975842],\n\t\t\t\t\t\t[-87.601416, 37.972542],\n\t\t\t\t\t\t[-87.628960, 37.926714],\n\t\t\t\t\t\t[-87.626256, 37.916138],\n\t\t\t\t\t\t[-87.620272, 37.906922],\n\t\t\t\t\t\t[-87.597118, 37.892394],\n\t\t\t\t\t\t[-87.591582, 37.887194],\n\t\t\t\t\t\t[-87.588426, 37.868791],\n\t\t\t\t\t\t[-87.588729, 37.860984],\n\t\t\t\t\t\t[-87.591504, 37.856642],\n\t\t\t\t\t\t[-87.606599, 37.838669],\n\t\t\t\t\t\t[-87.615399, 37.831974],\n\t\t\t\t\t\t[-87.645858, 37.825899],\n\t\t\t\t\t\t[-87.670889, 37.828429],\n\t\t\t\t\t\t[-87.679188, 37.836321],\n\t\t\t\t\t\t[-87.681900, 37.846410],\n\t\t\t\t\t\t[-87.681633, 37.855917],\n\t\t\t\t\t\t[-87.662865, 37.885578],\n\t\t\t\t\t\t[-87.666481, 37.895786],\n\t\t\t\t\t\t[-87.675730, 37.901930],\n\t\t\t\t\t\t[-87.684018, 37.903498],\n\t\t\t\t\t\t[-87.700421, 37.900858],\n\t\t\t\t\t\t[-87.688374, 38.168419],\n\t\t\t\t\t\t[-87.467284, 38.165403],\n\t\t\t\t\t\t[-87.451185, 37.941034]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18029\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"029\",\n\t\t\t\t\"NAME\": \"Dearborn\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 305.034000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.819826, 39.156504],\n\t\t\t\t\t\t[-84.819985, 39.149081],\n\t\t\t\t\t\t[-84.820157, 39.105480],\n\t\t\t\t\t\t[-84.831197, 39.101920],\n\t\t\t\t\t\t[-84.888873, 39.066376],\n\t\t\t\t\t\t[-84.897364, 39.057378],\n\t\t\t\t\t\t[-84.897171, 39.052407],\n\t\t\t\t\t\t[-84.889065, 39.040820],\n\t\t\t\t\t\t[-84.878614, 39.030296],\n\t\t\t\t\t\t[-85.132508, 38.948055],\n\t\t\t\t\t\t[-85.065574, 39.307232],\n\t\t\t\t\t\t[-84.928655, 39.305934],\n\t\t\t\t\t\t[-84.819451, 39.305153],\n\t\t\t\t\t\t[-84.819451, 39.305152],\n\t\t\t\t\t\t[-84.819622, 39.271590],\n\t\t\t\t\t\t[-84.819633, 39.261855],\n\t\t\t\t\t\t[-84.819859, 39.251018],\n\t\t\t\t\t\t[-84.819801, 39.247806],\n\t\t\t\t\t\t[-84.819813, 39.244334],\n\t\t\t\t\t\t[-84.819802, 39.157613],\n\t\t\t\t\t\t[-84.819826, 39.156504]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18037\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"037\",\n\t\t\t\t\"NAME\": \"Dubois\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 427.269000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.679511, 38.263086],\n\t\t\t\t\t\t[-86.792152, 38.249100],\n\t\t\t\t\t\t[-86.791497, 38.205130],\n\t\t\t\t\t\t[-87.017490, 38.203580],\n\t\t\t\t\t\t[-87.073141, 38.203821],\n\t\t\t\t\t\t[-87.073067, 38.232596],\n\t\t\t\t\t\t[-87.072369, 38.514700],\n\t\t\t\t\t\t[-86.924186, 38.505358],\n\t\t\t\t\t\t[-86.682359, 38.526378],\n\t\t\t\t\t\t[-86.681424, 38.394767],\n\t\t\t\t\t\t[-86.679511, 38.263086]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18039\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"039\",\n\t\t\t\t\"NAME\": \"Elkhart\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 463.170000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.791335, 41.759051],\n\t\t\t\t\t\t[-85.775039, 41.759147],\n\t\t\t\t\t\t[-85.750469, 41.759090],\n\t\t\t\t\t\t[-85.749992, 41.759091],\n\t\t\t\t\t\t[-85.724534, 41.759085],\n\t\t\t\t\t\t[-85.659750, 41.759101],\n\t\t\t\t\t\t[-85.654747, 41.523347],\n\t\t\t\t\t\t[-85.654274, 41.515695],\n\t\t\t\t\t\t[-85.653507, 41.436856],\n\t\t\t\t\t\t[-86.059230, 41.435812],\n\t\t\t\t\t\t[-86.059237, 41.442753],\n\t\t\t\t\t\t[-86.059052, 41.445236],\n\t\t\t\t\t\t[-86.059451, 41.479154],\n\t\t\t\t\t\t[-86.060652, 41.608400],\n\t\t\t\t\t\t[-86.060516, 41.608959],\n\t\t\t\t\t\t[-86.062572, 41.760283],\n\t\t\t\t\t\t[-86.003683, 41.760007],\n\t\t\t\t\t\t[-85.991302, 41.759949],\n\t\t\t\t\t\t[-85.974980, 41.759849],\n\t\t\t\t\t\t[-85.974901, 41.759849],\n\t\t\t\t\t\t[-85.888825, 41.759422],\n\t\t\t\t\t\t[-85.874997, 41.759341],\n\t\t\t\t\t\t[-85.872041, 41.759365],\n\t\t\t\t\t\t[-85.791363, 41.759051],\n\t\t\t\t\t\t[-85.791335, 41.759051]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13135\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"135\",\n\t\t\t\t\"NAME\": \"Gwinnett\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 430.383000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.109894, 34.098423],\n\t\t\t\t\t\t[-84.107143, 34.100030],\n\t\t\t\t\t\t[-84.105403, 34.102223],\n\t\t\t\t\t\t[-84.102610, 34.103788],\n\t\t\t\t\t\t[-84.101343, 34.106305],\n\t\t\t\t\t\t[-84.094763, 34.131708],\n\t\t\t\t\t\t[-84.074624, 34.163687],\n\t\t\t\t\t\t[-84.062841, 34.167873],\n\t\t\t\t\t\t[-83.868030, 34.098281],\n\t\t\t\t\t\t[-83.817682, 34.127493],\n\t\t\t\t\t\t[-83.869115, 34.004316],\n\t\t\t\t\t\t[-83.799104, 33.929844],\n\t\t\t\t\t\t[-83.982033, 33.786054],\n\t\t\t\t\t\t[-83.984555, 33.784332],\n\t\t\t\t\t\t[-84.023713, 33.752808],\n\t\t\t\t\t\t[-84.172139, 33.857516],\n\t\t\t\t\t\t[-84.179418, 33.864403],\n\t\t\t\t\t\t[-84.187005, 33.865515],\n\t\t\t\t\t\t[-84.203519, 33.873003],\n\t\t\t\t\t\t[-84.204720, 33.877003],\n\t\t\t\t\t\t[-84.216630, 33.884976],\n\t\t\t\t\t\t[-84.232220, 33.902002],\n\t\t\t\t\t\t[-84.250413, 33.910812],\n\t\t\t\t\t\t[-84.256022, 33.914401],\n\t\t\t\t\t\t[-84.259011, 33.918820],\n\t\t\t\t\t\t[-84.265337, 33.932576],\n\t\t\t\t\t\t[-84.272216, 33.944853],\n\t\t\t\t\t\t[-84.266306, 33.947577],\n\t\t\t\t\t\t[-84.271922, 33.955900],\n\t\t\t\t\t\t[-84.275722, 33.954201],\n\t\t\t\t\t\t[-84.276822, 33.957700],\n\t\t\t\t\t\t[-84.097692, 34.050654],\n\t\t\t\t\t\t[-84.117801, 34.065315],\n\t\t\t\t\t\t[-84.109894, 34.098423]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13145\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"145\",\n\t\t\t\t\"NAME\": \"Harris\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 463.869000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.132040, 32.764211],\n\t\t\t\t\t\t[-85.123421, 32.772248],\n\t\t\t\t\t\t[-85.184131, 32.870525],\n\t\t\t\t\t\t[-84.861768, 32.872495],\n\t\t\t\t\t\t[-84.700538, 32.844640],\n\t\t\t\t\t\t[-84.694603, 32.583945],\n\t\t\t\t\t\t[-84.907883, 32.583433],\n\t\t\t\t\t\t[-84.907703, 32.607608],\n\t\t\t\t\t\t[-85.082454, 32.607022],\n\t\t\t\t\t\t[-85.104790, 32.642542],\n\t\t\t\t\t\t[-85.114737, 32.685634],\n\t\t\t\t\t\t[-85.137136, 32.745168],\n\t\t\t\t\t\t[-85.136776, 32.746512],\n\t\t\t\t\t\t[-85.132040, 32.764211]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13151\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"151\",\n\t\t\t\t\"NAME\": \"Henry\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 322.127000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.283518, 33.502514],\n\t\t\t\t\t\t[-84.281273, 33.647411],\n\t\t\t\t\t\t[-84.254149, 33.647045],\n\t\t\t\t\t\t[-84.245453, 33.630730],\n\t\t\t\t\t\t[-84.224235, 33.630657],\n\t\t\t\t\t\t[-84.223952, 33.646572],\n\t\t\t\t\t\t[-84.184143, 33.646157],\n\t\t\t\t\t\t[-84.181584, 33.629174],\n\t\t\t\t\t\t[-84.172130, 33.621919],\n\t\t\t\t\t\t[-84.136289, 33.572330],\n\t\t\t\t\t\t[-84.044493, 33.525776],\n\t\t\t\t\t\t[-83.923913, 33.444194],\n\t\t\t\t\t\t[-84.044594, 33.333656],\n\t\t\t\t\t\t[-84.044597, 33.333495],\n\t\t\t\t\t\t[-84.042663, 33.333501],\n\t\t\t\t\t\t[-84.102582, 33.298191],\n\t\t\t\t\t\t[-84.150581, 33.335639],\n\t\t\t\t\t\t[-84.354400, 33.352514],\n\t\t\t\t\t\t[-84.353584, 33.436165],\n\t\t\t\t\t\t[-84.283518, 33.502514]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13161\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"161\",\n\t\t\t\t\"NAME\": \"Jeff Davis\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 330.740000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.521420, 31.710796],\n\t\t\t\t\t\t[-82.521393, 31.672512],\n\t\t\t\t\t\t[-82.627342, 31.672672],\n\t\t\t\t\t\t[-82.836633, 31.671398],\n\t\t\t\t\t\t[-82.836366, 31.816154],\n\t\t\t\t\t\t[-82.645659, 31.918883],\n\t\t\t\t\t\t[-82.543655, 31.958914],\n\t\t\t\t\t\t[-82.483131, 31.968961],\n\t\t\t\t\t\t[-82.479607, 31.971653],\n\t\t\t\t\t\t[-82.458152, 31.963890],\n\t\t\t\t\t\t[-82.452051, 31.964590],\n\t\t\t\t\t\t[-82.444451, 31.967490],\n\t\t\t\t\t\t[-82.439351, 31.967790],\n\t\t\t\t\t\t[-82.431531, 31.966182],\n\t\t\t\t\t\t[-82.431362, 31.837993],\n\t\t\t\t\t\t[-82.520251, 31.838388],\n\t\t\t\t\t\t[-82.521420, 31.710796]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13167\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"167\",\n\t\t\t\t\"NAME\": \"Johnson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 303.010000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.946966, 32.759358],\n\t\t\t\t\t\t[-82.802456, 32.809756],\n\t\t\t\t\t\t[-82.768365, 32.769108],\n\t\t\t\t\t\t[-82.521052, 32.822356],\n\t\t\t\t\t\t[-82.434149, 32.762258],\n\t\t\t\t\t\t[-82.499431, 32.686340],\n\t\t\t\t\t\t[-82.465065, 32.646833],\n\t\t\t\t\t\t[-82.594439, 32.579158],\n\t\t\t\t\t\t[-82.647733, 32.512507],\n\t\t\t\t\t\t[-82.668557, 32.612164],\n\t\t\t\t\t\t[-82.862763, 32.715760],\n\t\t\t\t\t\t[-82.957066, 32.708318],\n\t\t\t\t\t\t[-82.946366, 32.741258],\n\t\t\t\t\t\t[-82.946966, 32.759358]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13177\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"177\",\n\t\t\t\t\"NAME\": \"Lee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 355.784000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.922494, 31.909653],\n\t\t\t\t\t\t[-83.925103, 31.905668],\n\t\t\t\t\t\t[-83.927383, 31.904142],\n\t\t\t\t\t\t[-83.932021, 31.898759],\n\t\t\t\t\t\t[-83.932301, 31.893801],\n\t\t\t\t\t\t[-83.928689, 31.886864],\n\t\t\t\t\t\t[-83.932091, 31.884632],\n\t\t\t\t\t\t[-83.934061, 31.881390],\n\t\t\t\t\t\t[-83.931152, 31.876984],\n\t\t\t\t\t\t[-83.928694, 31.871849],\n\t\t\t\t\t\t[-83.926524, 31.863292],\n\t\t\t\t\t\t[-83.932321, 31.859235],\n\t\t\t\t\t\t[-83.936736, 31.858043],\n\t\t\t\t\t\t[-83.937800, 31.854805],\n\t\t\t\t\t\t[-83.938192, 31.849489],\n\t\t\t\t\t\t[-83.939437, 31.847929],\n\t\t\t\t\t\t[-84.032344, 31.716772],\n\t\t\t\t\t\t[-84.018404, 31.650274],\n\t\t\t\t\t\t[-84.043213, 31.623573],\n\t\t\t\t\t\t[-84.297801, 31.621951],\n\t\t\t\t\t\t[-84.286456, 31.791182],\n\t\t\t\t\t\t[-84.338245, 31.873591],\n\t\t\t\t\t\t[-84.338143, 31.916190],\n\t\t\t\t\t\t[-83.922494, 31.909653]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13179\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"179\",\n\t\t\t\t\"NAME\": \"Liberty\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 489.801000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.194380, 31.568101],\n\t\t\t\t\t\t[-81.261868, 31.650142],\n\t\t\t\t\t\t[-81.435760, 31.642055],\n\t\t\t\t\t\t[-81.491798, 31.699575],\n\t\t\t\t\t\t[-81.641761, 31.765451],\n\t\t\t\t\t\t[-81.765357, 31.874540],\n\t\t\t\t\t\t[-81.750257, 31.973207],\n\t\t\t\t\t\t[-81.824405, 32.014882],\n\t\t\t\t\t\t[-81.809931, 32.019657],\n\t\t\t\t\t\t[-81.761735, 32.047900],\n\t\t\t\t\t\t[-81.718658, 32.089351],\n\t\t\t\t\t\t[-81.604431, 32.010948],\n\t\t\t\t\t\t[-81.593429, 31.971350],\n\t\t\t\t\t\t[-81.475761, 31.974255],\n\t\t\t\t\t\t[-81.407737, 31.944302],\n\t\t\t\t\t\t[-81.355837, 31.814900],\n\t\t\t\t\t\t[-81.198394, 31.726070],\n\t\t\t\t\t\t[-81.203572, 31.719448],\n\t\t\t\t\t\t[-81.186303, 31.701509],\n\t\t\t\t\t\t[-81.161084, 31.691401],\n\t\t\t\t\t\t[-81.154624, 31.693874],\n\t\t\t\t\t\t[-81.151888, 31.698411],\n\t\t\t\t\t\t[-81.149369, 31.699304],\n\t\t\t\t\t\t[-81.139394, 31.699917],\n\t\t\t\t\t\t[-81.131137, 31.695774],\n\t\t\t\t\t\t[-81.135608, 31.683491],\n\t\t\t\t\t\t[-81.136408, 31.674832],\n\t\t\t\t\t\t[-81.131728, 31.654484],\n\t\t\t\t\t\t[-81.133493, 31.623348],\n\t\t\t\t\t\t[-81.149970, 31.593476],\n\t\t\t\t\t\t[-81.160364, 31.570436],\n\t\t\t\t\t\t[-81.173079, 31.555908],\n\t\t\t\t\t\t[-81.178822, 31.555530],\n\t\t\t\t\t\t[-81.183252, 31.560058],\n\t\t\t\t\t\t[-81.186114, 31.568032],\n\t\t\t\t\t\t[-81.194380, 31.568101]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20107\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"107\",\n\t\t\t\t\"NAME\": \"Linn\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 594.059000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.613275, 38.388718],\n\t\t\t\t\t\t[-94.613329, 38.369618],\n\t\t\t\t\t\t[-94.613312, 38.364407],\n\t\t\t\t\t\t[-94.613000, 38.335801],\n\t\t\t\t\t\t[-94.612825, 38.324387],\n\t\t\t\t\t\t[-94.612788, 38.320142],\n\t\t\t\t\t\t[-94.612673, 38.314832],\n\t\t\t\t\t\t[-94.612673, 38.302527],\n\t\t\t\t\t\t[-94.612844, 38.291423],\n\t\t\t\t\t\t[-94.612849, 38.289914],\n\t\t\t\t\t\t[-94.612692, 38.270394],\n\t\t\t\t\t\t[-94.612614, 38.237766],\n\t\t\t\t\t\t[-94.612635, 38.226987],\n\t\t\t\t\t\t[-94.612659, 38.219251],\n\t\t\t\t\t\t[-94.612658, 38.217649],\n\t\t\t\t\t\t[-94.612822, 38.203918],\n\t\t\t\t\t\t[-94.612848, 38.200714],\n\t\t\t\t\t\t[-94.613073, 38.190552],\n\t\t\t\t\t\t[-94.613422, 38.167908],\n\t\t\t\t\t\t[-94.613748, 38.160633],\n\t\t\t\t\t\t[-94.613856, 38.149769],\n\t\t\t\t\t\t[-94.614061, 38.067343],\n\t\t\t\t\t\t[-94.614089, 38.065901],\n\t\t\t\t\t\t[-94.614055, 38.060088],\n\t\t\t\t\t\t[-94.614055, 38.060056],\n\t\t\t\t\t\t[-94.613981, 38.037057],\n\t\t\t\t\t\t[-95.077876, 38.037706],\n\t\t\t\t\t\t[-95.065831, 38.389945],\n\t\t\t\t\t\t[-94.613275, 38.388718]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20117\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"117\",\n\t\t\t\t\"NAME\": \"Marshall\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 900.183000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.463713, 40.000968],\n\t\t\t\t\t\t[-96.463640, 40.000967],\n\t\t\t\t\t\t[-96.304555, 40.000629],\n\t\t\t\t\t\t[-96.301066, 40.000632],\n\t\t\t\t\t\t[-96.239208, 40.000691],\n\t\t\t\t\t\t[-96.239583, 39.827119],\n\t\t\t\t\t\t[-96.238969, 39.566220],\n\t\t\t\t\t\t[-96.581764, 39.566333],\n\t\t\t\t\t\t[-96.806544, 39.566423],\n\t\t\t\t\t\t[-96.805768, 40.001371],\n\t\t\t\t\t\t[-96.622401, 40.001158],\n\t\t\t\t\t\t[-96.610349, 40.000881],\n\t\t\t\t\t\t[-96.604884, 40.000891],\n\t\t\t\t\t\t[-96.580852, 40.000966],\n\t\t\t\t\t\t[-96.570854, 40.001091],\n\t\t\t\t\t\t[-96.557863, 40.000968],\n\t\t\t\t\t\t[-96.538977, 40.000851],\n\t\t\t\t\t\t[-96.527111, 40.001031],\n\t\t\t\t\t\t[-96.469945, 40.000966],\n\t\t\t\t\t\t[-96.467536, 40.001035],\n\t\t\t\t\t\t[-96.463713, 40.000968]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17149\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"149\",\n\t\t\t\t\"NAME\": \"Pike\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 831.381000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.313162, 39.684907],\n\t\t\t\t\t\t[-91.349039, 39.712316],\n\t\t\t\t\t\t[-91.367753, 39.729029],\n\t\t\t\t\t\t[-91.370009, 39.732524],\n\t\t\t\t\t\t[-91.369953, 39.745042],\n\t\t\t\t\t\t[-91.367962, 39.759124],\n\t\t\t\t\t\t[-91.365125, 39.758723],\n\t\t\t\t\t\t[-91.265848, 39.757258],\n\t\t\t\t\t\t[-91.147678, 39.757070],\n\t\t\t\t\t\t[-90.916071, 39.757168],\n\t\t\t\t\t\t[-90.916609, 39.845075],\n\t\t\t\t\t\t[-90.893651, 39.840920],\n\t\t\t\t\t\t[-90.571754, 39.839326],\n\t\t\t\t\t\t[-90.566976, 39.826883],\n\t\t\t\t\t\t[-90.599105, 39.790060],\n\t\t\t\t\t\t[-90.645990, 39.703368],\n\t\t\t\t\t\t[-90.581055, 39.521728],\n\t\t\t\t\t\t[-90.582202, 39.510332],\n\t\t\t\t\t\t[-90.590605, 39.493675],\n\t\t\t\t\t\t[-90.593256, 39.484586],\n\t\t\t\t\t\t[-90.613694, 39.395775],\n\t\t\t\t\t\t[-90.939983, 39.393555],\n\t\t\t\t\t\t[-90.993789, 39.422959],\n\t\t\t\t\t\t[-91.042351, 39.452062],\n\t\t\t\t\t\t[-91.158606, 39.553048],\n\t\t\t\t\t\t[-91.168419, 39.564928],\n\t\t\t\t\t\t[-91.178012, 39.598196],\n\t\t\t\t\t\t[-91.229317, 39.620853],\n\t\t\t\t\t\t[-91.313162, 39.684907]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17157\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"157\",\n\t\t\t\t\"NAME\": \"Randolph\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 575.500000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.674304, 37.803179],\n\t\t\t\t\t\t[-89.739873, 37.846930],\n\t\t\t\t\t\t[-89.844786, 37.905572],\n\t\t\t\t\t\t[-89.851048, 37.903980],\n\t\t\t\t\t\t[-89.862949, 37.896906],\n\t\t\t\t\t\t[-89.881475, 37.879591],\n\t\t\t\t\t\t[-89.901832, 37.869822],\n\t\t\t\t\t\t[-89.923185, 37.870672],\n\t\t\t\t\t\t[-89.937383, 37.874693],\n\t\t\t\t\t\t[-89.938191, 37.875111],\n\t\t\t\t\t\t[-89.950594, 37.881526],\n\t\t\t\t\t\t[-89.973642, 37.917661],\n\t\t\t\t\t\t[-89.974918, 37.926719],\n\t\t\t\t\t\t[-89.997103, 37.963225],\n\t\t\t\t\t\t[-90.072283, 38.017001],\n\t\t\t\t\t\t[-90.126532, 38.041666],\n\t\t\t\t\t\t[-90.203847, 38.088753],\n\t\t\t\t\t\t[-90.035999, 38.135630],\n\t\t\t\t\t\t[-90.036385, 38.223125],\n\t\t\t\t\t\t[-89.899061, 38.220755],\n\t\t\t\t\t\t[-89.703256, 38.219404],\n\t\t\t\t\t\t[-89.592797, 38.219271],\n\t\t\t\t\t\t[-89.595084, 37.955310],\n\t\t\t\t\t\t[-89.674304, 37.803179]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17161\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"161\",\n\t\t\t\t\"NAME\": \"Rock Island\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 427.636000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.278633, 41.767358],\n\t\t\t\t\t\t[-90.242747, 41.783767],\n\t\t\t\t\t\t[-90.229749, 41.675375],\n\t\t\t\t\t\t[-90.165057, 41.602933],\n\t\t\t\t\t\t[-90.164842, 41.597322],\n\t\t\t\t\t\t[-90.170427, 41.591761],\n\t\t\t\t\t\t[-90.181412, 41.590993],\n\t\t\t\t\t\t[-90.185609, 41.584653],\n\t\t\t\t\t\t[-90.196535, 41.540126],\n\t\t\t\t\t\t[-90.332657, 41.514001],\n\t\t\t\t\t\t[-90.432130, 41.456234],\n\t\t\t\t\t\t[-90.433771, 41.326983],\n\t\t\t\t\t\t[-91.078682, 41.336089],\n\t\t\t\t\t\t[-91.047819, 41.410900],\n\t\t\t\t\t\t[-91.039872, 41.418523],\n\t\t\t\t\t\t[-91.027787, 41.423603],\n\t\t\t\t\t\t[-90.989976, 41.431962],\n\t\t\t\t\t\t[-90.847458, 41.455019],\n\t\t\t\t\t\t[-90.786282, 41.452888],\n\t\t\t\t\t\t[-90.771672, 41.450761],\n\t\t\t\t\t\t[-90.737537, 41.450127],\n\t\t\t\t\t\t[-90.655839, 41.462132],\n\t\t\t\t\t\t[-90.605937, 41.494232],\n\t\t\t\t\t\t[-90.499475, 41.518055],\n\t\t\t\t\t\t[-90.474332, 41.519733],\n\t\t\t\t\t\t[-90.461432, 41.523533],\n\t\t\t\t\t\t[-90.397930, 41.572233],\n\t\t\t\t\t\t[-90.341650, 41.621484],\n\t\t\t\t\t\t[-90.343162, 41.648141],\n\t\t\t\t\t\t[-90.334525, 41.679559],\n\t\t\t\t\t\t[-90.317041, 41.729104],\n\t\t\t\t\t\t[-90.315220, 41.734264],\n\t\t\t\t\t\t[-90.309826, 41.743321],\n\t\t\t\t\t\t[-90.302782, 41.750031],\n\t\t\t\t\t\t[-90.278633, 41.767358]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17171\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"171\",\n\t\t\t\t\"NAME\": \"Scott\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 250.913000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.581055, 39.521728],\n\t\t\t\t\t\t[-90.645990, 39.703368],\n\t\t\t\t\t\t[-90.599105, 39.790060],\n\t\t\t\t\t\t[-90.371253, 39.753388],\n\t\t\t\t\t\t[-90.372969, 39.665781],\n\t\t\t\t\t\t[-90.300666, 39.636541],\n\t\t\t\t\t\t[-90.301801, 39.520192],\n\t\t\t\t\t\t[-90.581055, 39.521728]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17173\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"173\",\n\t\t\t\t\"NAME\": \"Shelby\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 758.523000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.139807, 39.348888],\n\t\t\t\t\t\t[-89.025381, 39.345896],\n\t\t\t\t\t\t[-89.025469, 39.464462],\n\t\t\t\t\t\t[-89.025680, 39.654183],\n\t\t\t\t\t\t[-88.810575, 39.653222],\n\t\t\t\t\t\t[-88.809051, 39.580241],\n\t\t\t\t\t\t[-88.717539, 39.579299],\n\t\t\t\t\t\t[-88.716875, 39.521209],\n\t\t\t\t\t\t[-88.641468, 39.520958],\n\t\t\t\t\t\t[-88.584273, 39.447582],\n\t\t\t\t\t\t[-88.470505, 39.447041],\n\t\t\t\t\t\t[-88.470830, 39.374515],\n\t\t\t\t\t\t[-88.471147, 39.220615],\n\t\t\t\t\t\t[-88.470906, 39.215029],\n\t\t\t\t\t\t[-88.804484, 39.216131],\n\t\t\t\t\t\t[-88.805325, 39.216263],\n\t\t\t\t\t\t[-88.806720, 39.216402],\n\t\t\t\t\t\t[-88.834810, 39.216370],\n\t\t\t\t\t\t[-88.836967, 39.216548],\n\t\t\t\t\t\t[-88.838197, 39.216273],\n\t\t\t\t\t\t[-88.917477, 39.216545],\n\t\t\t\t\t\t[-89.025698, 39.215536],\n\t\t\t\t\t\t[-89.122992, 39.217303],\n\t\t\t\t\t\t[-89.139305, 39.217192],\n\t\t\t\t\t\t[-89.140076, 39.217907],\n\t\t\t\t\t\t[-89.139807, 39.348888]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17181\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"181\",\n\t\t\t\t\"NAME\": \"Union\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 413.459000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.521523, 37.566208],\n\t\t\t\t\t\t[-89.521407, 37.572143],\n\t\t\t\t\t\t[-89.450594, 37.600022],\n\t\t\t\t\t\t[-89.153668, 37.600469],\n\t\t\t\t\t\t[-89.041401, 37.596576],\n\t\t\t\t\t\t[-89.044787, 37.329846],\n\t\t\t\t\t\t[-89.099448, 37.333559],\n\t\t\t\t\t\t[-89.248439, 37.335109],\n\t\t\t\t\t\t[-89.484598, 37.334832],\n\t\t\t\t\t\t[-89.474569, 37.338165],\n\t\t\t\t\t\t[-89.447556, 37.340475],\n\t\t\t\t\t\t[-89.436040, 37.344441],\n\t\t\t\t\t\t[-89.432836, 37.347056],\n\t\t\t\t\t\t[-89.428185, 37.356158],\n\t\t\t\t\t\t[-89.421054, 37.387668],\n\t\t\t\t\t\t[-89.425940, 37.407471],\n\t\t\t\t\t\t[-89.439769, 37.437200],\n\t\t\t\t\t\t[-89.450969, 37.450069],\n\t\t\t\t\t\t[-89.475525, 37.471388],\n\t\t\t\t\t\t[-89.492051, 37.494008],\n\t\t\t\t\t\t[-89.517051, 37.537278],\n\t\t\t\t\t\t[-89.521697, 37.557325],\n\t\t\t\t\t\t[-89.521523, 37.566208]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17185\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"185\",\n\t\t\t\t\"NAME\": \"Wabash\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 223.252000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.651529, 38.568166],\n\t\t\t\t\t\t[-87.670071, 38.545237],\n\t\t\t\t\t\t[-87.669232, 38.541742],\n\t\t\t\t\t\t[-87.656144, 38.521668],\n\t\t\t\t\t\t[-87.740001, 38.415698],\n\t\t\t\t\t\t[-87.750028, 38.403027],\n\t\t\t\t\t\t[-87.863032, 38.280172],\n\t\t\t\t\t\t[-87.923958, 38.258409],\n\t\t\t\t\t\t[-87.951715, 38.239632],\n\t\t\t\t\t\t[-87.987911, 38.256957],\n\t\t\t\t\t\t[-87.990600, 38.259715],\n\t\t\t\t\t\t[-87.954798, 38.335308],\n\t\t\t\t\t\t[-87.954445, 38.339733],\n\t\t\t\t\t\t[-87.957878, 38.347675],\n\t\t\t\t\t\t[-87.967298, 38.353556],\n\t\t\t\t\t\t[-87.969656, 38.361933],\n\t\t\t\t\t\t[-87.972855, 38.364565],\n\t\t\t\t\t\t[-87.977034, 38.379374],\n\t\t\t\t\t\t[-87.953898, 38.570094],\n\t\t\t\t\t\t[-87.953014, 38.570140],\n\t\t\t\t\t\t[-87.912351, 38.569909],\n\t\t\t\t\t\t[-87.912286, 38.570104],\n\t\t\t\t\t\t[-87.769353, 38.568937],\n\t\t\t\t\t\t[-87.760094, 38.568783],\n\t\t\t\t\t\t[-87.653977, 38.568289],\n\t\t\t\t\t\t[-87.651529, 38.568166]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17193\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"193\",\n\t\t\t\t\"NAME\": \"White\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 494.766000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.951715, 38.239632],\n\t\t\t\t\t\t[-87.955344, 38.230008],\n\t\t\t\t\t\t[-87.961103, 38.214733],\n\t\t\t\t\t\t[-87.959062, 38.203712],\n\t\t\t\t\t\t[-87.951307, 38.193099],\n\t\t\t\t\t\t[-87.940694, 38.181261],\n\t\t\t\t\t\t[-87.928856, 38.176771],\n\t\t\t\t\t\t[-87.915666, 38.173322],\n\t\t\t\t\t\t[-87.910792, 38.167666],\n\t\t\t\t\t\t[-87.911034, 38.162194],\n\t\t\t\t\t\t[-87.927830, 38.141545],\n\t\t\t\t\t\t[-87.942176, 38.131759],\n\t\t\t\t\t\t[-87.974272, 38.121981],\n\t\t\t\t\t\t[-88.013118, 38.103527],\n\t\t\t\t\t\t[-88.042132, 38.046345],\n\t\t\t\t\t\t[-88.041532, 38.037345],\n\t\t\t\t\t\t[-88.012574, 37.977062],\n\t\t\t\t\t\t[-88.013451, 37.893951],\n\t\t\t\t\t\t[-88.017073, 37.889222],\n\t\t\t\t\t\t[-88.021117, 37.888057],\n\t\t\t\t\t\t[-88.055373, 37.891238],\n\t\t\t\t\t\t[-88.071449, 37.895813],\n\t\t\t\t\t\t[-88.263310, 37.908632],\n\t\t\t\t\t\t[-88.357462, 37.909081],\n\t\t\t\t\t\t[-88.374520, 37.908432],\n\t\t\t\t\t\t[-88.370491, 38.255413],\n\t\t\t\t\t\t[-88.150900, 38.256097],\n\t\t\t\t\t\t[-88.058472, 38.255747],\n\t\t\t\t\t\t[-88.027749, 38.255661],\n\t\t\t\t\t\t[-88.027680, 38.259771],\n\t\t\t\t\t\t[-87.990600, 38.259715],\n\t\t\t\t\t\t[-87.987911, 38.256957],\n\t\t\t\t\t\t[-87.951715, 38.239632]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US17201\",\n\t\t\t\t\"STATE\": \"17\",\n\t\t\t\t\"COUNTY\": \"201\",\n\t\t\t\t\"NAME\": \"Winnebago\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 513.362000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.013667, 42.496087],\n\t\t\t\t\t\t[-88.992977, 42.496026],\n\t\t\t\t\t\t[-88.992659, 42.496025],\n\t\t\t\t\t\t[-88.943264, 42.495114],\n\t\t\t\t\t\t[-88.940391, 42.495046],\n\t\t\t\t\t\t[-88.940388, 42.495046],\n\t\t\t\t\t\t[-88.939732, 42.152320],\n\t\t\t\t\t\t[-89.172799, 42.150297],\n\t\t\t\t\t\t[-89.173000, 42.204241],\n\t\t\t\t\t\t[-89.396192, 42.201916],\n\t\t\t\t\t\t[-89.401416, 42.500433],\n\t\t\t\t\t\t[-89.366031, 42.500274],\n\t\t\t\t\t\t[-89.361561, 42.500012],\n\t\t\t\t\t\t[-89.290896, 42.498853],\n\t\t\t\t\t\t[-89.250759, 42.497994],\n\t\t\t\t\t\t[-89.246972, 42.498130],\n\t\t\t\t\t\t[-89.228279, 42.498047],\n\t\t\t\t\t\t[-89.226270, 42.497957],\n\t\t\t\t\t\t[-89.166728, 42.497256],\n\t\t\t\t\t\t[-89.164905, 42.497347],\n\t\t\t\t\t\t[-89.125111, 42.496957],\n\t\t\t\t\t\t[-89.120365, 42.496992],\n\t\t\t\t\t\t[-89.116949, 42.496910],\n\t\t\t\t\t\t[-89.099012, 42.496499],\n\t\t\t\t\t\t[-89.071141, 42.496208],\n\t\t\t\t\t\t[-89.042898, 42.496255],\n\t\t\t\t\t\t[-89.013804, 42.496097],\n\t\t\t\t\t\t[-89.013667, 42.496087]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13287\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"287\",\n\t\t\t\t\"NAME\": \"Turner\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 285.393000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.480176, 31.847312],\n\t\t\t\t\t\t[-83.453634, 31.757861],\n\t\t\t\t\t\t[-83.500702, 31.593990],\n\t\t\t\t\t\t[-83.648972, 31.596466],\n\t\t\t\t\t\t[-83.649384, 31.567977],\n\t\t\t\t\t\t[-83.786880, 31.622810],\n\t\t\t\t\t\t[-83.802223, 31.803495],\n\t\t\t\t\t\t[-83.612642, 31.804128],\n\t\t\t\t\t\t[-83.612256, 31.854089],\n\t\t\t\t\t\t[-83.480176, 31.847312]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13291\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"291\",\n\t\t\t\t\"NAME\": \"Union\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 321.926000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.005457, 34.987440],\n\t\t\t\t\t\t[-83.936646, 34.987485],\n\t\t\t\t\t\t[-83.936413, 34.987485],\n\t\t\t\t\t\t[-83.915104, 34.926887],\n\t\t\t\t\t\t[-83.819099, 34.913690],\n\t\t\t\t\t\t[-83.780401, 34.792893],\n\t\t\t\t\t\t[-83.856506, 34.722191],\n\t\t\t\t\t\t[-83.939007, 34.740859],\n\t\t\t\t\t\t[-84.036510, 34.641934],\n\t\t\t\t\t\t[-84.158035, 34.648243],\n\t\t\t\t\t\t[-84.093193, 34.801411],\n\t\t\t\t\t\t[-84.107422, 34.886896],\n\t\t\t\t\t\t[-84.178672, 34.946497],\n\t\t\t\t\t\t[-84.129455, 34.987504],\n\t\t\t\t\t\t[-84.029954, 34.987321],\n\t\t\t\t\t\t[-84.021357, 34.987430],\n\t\t\t\t\t\t[-84.005457, 34.987440]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13299\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"299\",\n\t\t\t\t\"NAME\": \"Ware\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 892.461000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.284561, 31.224449],\n\t\t\t\t\t\t[-82.208732, 31.170938],\n\t\t\t\t\t\t[-82.208262, 31.084768],\n\t\t\t\t\t\t[-82.131698, 31.010714],\n\t\t\t\t\t\t[-82.415603, 31.013590],\n\t\t\t\t\t\t[-82.420442, 30.795229],\n\t\t\t\t\t\t[-82.149872, 30.784336],\n\t\t\t\t\t\t[-82.214847, 30.567009],\n\t\t\t\t\t\t[-82.249841, 30.570863],\n\t\t\t\t\t\t[-82.258100, 30.571559],\n\t\t\t\t\t\t[-82.287343, 30.573458],\n\t\t\t\t\t\t[-82.374844, 30.579004],\n\t\t\t\t\t\t[-82.418915, 30.581745],\n\t\t\t\t\t\t[-82.435852, 30.820068],\n\t\t\t\t\t\t[-82.495476, 30.819553],\n\t\t\t\t\t\t[-82.490558, 30.963166],\n\t\t\t\t\t\t[-82.592071, 31.018487],\n\t\t\t\t\t\t[-82.671669, 31.183739],\n\t\t\t\t\t\t[-82.699206, 31.278104],\n\t\t\t\t\t\t[-82.629622, 31.274726],\n\t\t\t\t\t\t[-82.628975, 31.363930],\n\t\t\t\t\t\t[-82.628181, 31.469351],\n\t\t\t\t\t\t[-82.597509, 31.469293],\n\t\t\t\t\t\t[-82.494718, 31.468690],\n\t\t\t\t\t\t[-82.417246, 31.417119],\n\t\t\t\t\t\t[-82.383705, 31.291143],\n\t\t\t\t\t\t[-82.284561, 31.224449]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21105\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"105\",\n\t\t\t\t\"NAME\": \"Hickman\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 242.274000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.816765, 36.502815],\n\t\t\t\t\t\t[-88.827012, 36.502850],\n\t\t\t\t\t\t[-88.827301, 36.502852],\n\t\t\t\t\t\t[-88.834626, 36.502914],\n\t\t\t\t\t\t[-88.834866, 36.502911],\n\t\t\t\t\t\t[-88.903480, 36.576864],\n\t\t\t\t\t\t[-89.026629, 36.592124],\n\t\t\t\t\t\t[-89.174733, 36.650476],\n\t\t\t\t\t\t[-89.171882, 36.672526],\n\t\t\t\t\t\t[-89.199480, 36.716045],\n\t\t\t\t\t\t[-89.201047, 36.725772],\n\t\t\t\t\t\t[-89.197808, 36.739412],\n\t\t\t\t\t\t[-89.184523, 36.753638],\n\t\t\t\t\t\t[-89.169106, 36.759473],\n\t\t\t\t\t\t[-89.142313, 36.755369],\n\t\t\t\t\t\t[-89.130399, 36.751702],\n\t\t\t\t\t\t[-89.123548, 36.785220],\n\t\t\t\t\t\t[-88.813229, 36.773115],\n\t\t\t\t\t\t[-88.816765, 36.502815]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48273\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"273\",\n\t\t\t\t\"NAME\": \"Kleberg\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 881.308000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-97.985887, 27.209308],\n\t\t\t\t\t\t\t[-98.058078, 27.260981],\n\t\t\t\t\t\t\t[-98.059800, 27.635869],\n\t\t\t\t\t\t\t[-97.942146, 27.635932],\n\t\t\t\t\t\t\t[-97.840678, 27.558358],\n\t\t\t\t\t\t\t[-97.325118, 27.560927],\n\t\t\t\t\t\t\t[-97.336802, 27.527433],\n\t\t\t\t\t\t\t[-97.343418, 27.517764],\n\t\t\t\t\t\t\t[-97.347489, 27.503005],\n\t\t\t\t\t\t\t[-97.350543, 27.478578],\n\t\t\t\t\t\t\t[-97.359194, 27.458221],\n\t\t\t\t\t\t\t[-97.365810, 27.450588],\n\t\t\t\t\t\t\t[-97.371917, 27.425142],\n\t\t\t\t\t\t\t[-97.369881, 27.412420],\n\t\t\t\t\t\t\t[-97.372935, 27.401224],\n\t\t\t\t\t\t\t[-97.379550, 27.390028],\n\t\t\t\t\t\t\t[-97.399398, 27.344735],\n\t\t\t\t\t\t\t[-97.401942, 27.335574],\n\t\t\t\t\t\t\t[-97.404996, 27.329977],\n\t\t\t\t\t\t\t[-97.413138, 27.321325],\n\t\t\t\t\t\t\t[-97.420263, 27.317254],\n\t\t\t\t\t\t\t[-97.430441, 27.313691],\n\t\t\t\t\t\t\t[-97.450798, 27.313691],\n\t\t\t\t\t\t\t[-97.482859, 27.297915],\n\t\t\t\t\t\t\t[-97.508304, 27.275014],\n\t\t\t\t\t\t\t[-97.532223, 27.278577],\n\t\t\t\t\t\t\t[-97.544437, 27.284175],\n\t\t\t\t\t\t\t[-97.546981, 27.290791],\n\t\t\t\t\t\t\t[-97.536803, 27.289264],\n\t\t\t\t\t\t\t[-97.526625, 27.291808],\n\t\t\t\t\t\t\t[-97.524589, 27.297915],\n\t\t\t\t\t\t\t[-97.517465, 27.305040],\n\t\t\t\t\t\t\t[-97.504742, 27.305040],\n\t\t\t\t\t\t\t[-97.498126, 27.308602],\n\t\t\t\t\t\t\t[-97.502706, 27.322343],\n\t\t\t\t\t\t\t[-97.499144, 27.327941],\n\t\t\t\t\t\t\t[-97.483877, 27.338628],\n\t\t\t\t\t\t\t[-97.483877, 27.351351],\n\t\t\t\t\t\t\t[-97.486930, 27.358984],\n\t\t\t\t\t\t\t[-97.501688, 27.366618],\n\t\t\t\t\t\t\t[-97.514411, 27.361529],\n\t\t\t\t\t\t\t[-97.520518, 27.352877],\n\t\t\t\t\t\t\t[-97.538330, 27.335574],\n\t\t\t\t\t\t\t[-97.570900, 27.315727],\n\t\t\t\t\t\t\t[-97.584132, 27.309620],\n\t\t\t\t\t\t\t[-97.609068, 27.285193],\n\t\t\t\t\t\t\t[-97.621791, 27.287228],\n\t\t\t\t\t\t\t[-97.631460, 27.286210],\n\t\t\t\t\t\t\t[-97.636549, 27.282139],\n\t\t\t\t\t\t\t[-97.636680, 27.281727],\n\t\t\t\t\t\t\t[-97.951904, 27.233249],\n\t\t\t\t\t\t\t[-97.985887, 27.209308]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-97.055823, 27.843404],\n\t\t\t\t\t\t\t[-97.054724, 27.842419],\n\t\t\t\t\t\t\t[-97.045409, 27.837452],\n\t\t\t\t\t\t\t[-97.045980, 27.835004],\n\t\t\t\t\t\t\t[-97.085395, 27.793245],\n\t\t\t\t\t\t\t[-97.116277, 27.752599],\n\t\t\t\t\t\t\t[-97.166682, 27.676583],\n\t\t\t\t\t\t\t[-97.201866, 27.614858],\n\t\t\t\t\t\t\t[-97.221912, 27.576315],\n\t\t\t\t\t\t\t[-97.276091, 27.472145],\n\t\t\t\t\t\t\t[-97.304470, 27.407734],\n\t\t\t\t\t\t\t[-97.326523, 27.347612],\n\t\t\t\t\t\t\t[-97.347438, 27.277963],\n\t\t\t\t\t\t\t[-97.372861, 27.278069],\n\t\t\t\t\t\t\t[-97.367033, 27.298709],\n\t\t\t\t\t\t\t[-97.364676, 27.302637],\n\t\t\t\t\t\t\t[-97.359963, 27.304732],\n\t\t\t\t\t\t\t[-97.357606, 27.307875],\n\t\t\t\t\t\t\t[-97.362320, 27.326730],\n\t\t\t\t\t\t\t[-97.366771, 27.333276],\n\t\t\t\t\t\t\t[-97.361796, 27.359988],\n\t\t\t\t\t\t\t[-97.346607, 27.390365],\n\t\t\t\t\t\t\t[-97.336132, 27.402411],\n\t\t\t\t\t\t\t[-97.331157, 27.412362],\n\t\t\t\t\t\t\t[-97.329585, 27.418124],\n\t\t\t\t\t\t\t[-97.330895, 27.425456],\n\t\t\t\t\t\t\t[-97.329847, 27.434360],\n\t\t\t\t\t\t\t[-97.317277, 27.463690],\n\t\t\t\t\t\t\t[-97.293709, 27.497209],\n\t\t\t\t\t\t\t[-97.282972, 27.521564],\n\t\t\t\t\t\t\t[-97.266474, 27.542514],\n\t\t\t\t\t\t\t[-97.257832, 27.556393],\n\t\t\t\t\t\t\t[-97.261760, 27.563464],\n\t\t\t\t\t\t\t[-97.260451, 27.567392],\n\t\t\t\t\t\t\t[-97.252071, 27.578652],\n\t\t\t\t\t\t\t[-97.247877, 27.581366],\n\t\t\t\t\t\t\t[-97.247619, 27.581533],\n\t\t\t\t\t\t\t[-97.236882, 27.598293],\n\t\t\t\t\t\t\t[-97.241072, 27.602483],\n\t\t\t\t\t\t\t[-97.242643, 27.607458],\n\t\t\t\t\t\t\t[-97.231383, 27.632336],\n\t\t\t\t\t\t\t[-97.221955, 27.632860],\n\t\t\t\t\t\t\t[-97.219075, 27.630241],\n\t\t\t\t\t\t\t[-97.214099, 27.631551],\n\t\t\t\t\t\t\t[-97.200743, 27.650144],\n\t\t\t\t\t\t\t[-97.197339, 27.664547],\n\t\t\t\t\t\t\t[-97.197601, 27.678426],\n\t\t\t\t\t\t\t[-97.203474, 27.684533],\n\t\t\t\t\t\t\t[-97.203089, 27.688001],\n\t\t\t\t\t\t\t[-97.190007, 27.692829],\n\t\t\t\t\t\t\t[-97.170628, 27.720326],\n\t\t\t\t\t\t\t[-97.166176, 27.732372],\n\t\t\t\t\t\t\t[-97.161200, 27.734074],\n\t\t\t\t\t\t\t[-97.153606, 27.733289],\n\t\t\t\t\t\t\t[-97.147321, 27.735384],\n\t\t\t\t\t\t\t[-97.130823, 27.751620],\n\t\t\t\t\t\t\t[-97.127942, 27.755810],\n\t\t\t\t\t\t\t[-97.127681, 27.760000],\n\t\t\t\t\t\t\t[-97.103326, 27.789068],\n\t\t\t\t\t\t\t[-97.102279, 27.798233],\n\t\t\t\t\t\t\t[-97.098874, 27.808447],\n\t\t\t\t\t\t\t[-97.092851, 27.814470],\n\t\t\t\t\t\t\t[-97.092589, 27.819183],\n\t\t\t\t\t\t\t[-97.098874, 27.822850],\n\t\t\t\t\t\t\t[-97.126109, 27.819707],\n\t\t\t\t\t\t\t[-97.130299, 27.820493],\n\t\t\t\t\t\t\t[-97.134489, 27.825206],\n\t\t\t\t\t\t\t[-97.132394, 27.827301],\n\t\t\t\t\t\t\t[-97.056713, 27.842294],\n\t\t\t\t\t\t\t[-97.055823, 27.843404]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48311\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"311\",\n\t\t\t\t\"NAME\": \"McMullen\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1139.426000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.334323, 28.057800],\n\t\t\t\t\t\t[-98.803325, 28.057480],\n\t\t\t\t\t\t[-98.800848, 28.647306],\n\t\t\t\t\t\t[-98.335047, 28.648275],\n\t\t\t\t\t\t[-98.335031, 28.612658],\n\t\t\t\t\t\t[-98.334323, 28.057800]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48315\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"315\",\n\t\t\t\t\"NAME\": \"Marion\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 380.880000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.277594, 32.880532],\n\t\t\t\t\t\t[-94.046061, 32.880949],\n\t\t\t\t\t\t[-94.042886, 32.881089],\n\t\t\t\t\t\t[-94.042886, 32.880965],\n\t\t\t\t\t\t[-94.043025, 32.880446],\n\t\t\t\t\t\t[-94.042785, 32.871486],\n\t\t\t\t\t\t[-94.043026, 32.797476],\n\t\t\t\t\t\t[-94.042747, 32.786973],\n\t\t\t\t\t\t[-94.042829, 32.785277],\n\t\t\t\t\t\t[-94.042938, 32.780558],\n\t\t\t\t\t\t[-94.043027, 32.776863],\n\t\t\t\t\t\t[-94.042947, 32.767991],\n\t\t\t\t\t\t[-94.043147, 32.693031],\n\t\t\t\t\t\t[-94.043147, 32.693030],\n\t\t\t\t\t\t[-94.242809, 32.750730],\n\t\t\t\t\t\t[-94.390783, 32.694377],\n\t\t\t\t\t\t[-94.507323, 32.693738],\n\t\t\t\t\t\t[-94.702140, 32.793088],\n\t\t\t\t\t\t[-94.705878, 32.879177],\n\t\t\t\t\t\t[-94.653994, 32.879506],\n\t\t\t\t\t\t[-94.277594, 32.880532]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48321\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"321\",\n\t\t\t\t\"NAME\": \"Matagorda\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1100.276000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.322921, 28.641860],\n\t\t\t\t\t\t[-96.323522, 28.675597],\n\t\t\t\t\t\t[-96.309178, 28.963291],\n\t\t\t\t\t\t[-95.965196, 29.146865],\n\t\t\t\t\t\t[-95.874028, 29.229702],\n\t\t\t\t\t\t[-95.846310, 29.107799],\n\t\t\t\t\t\t[-95.770446, 29.066210],\n\t\t\t\t\t\t[-95.764937, 28.967359],\n\t\t\t\t\t\t[-95.679550, 28.965734],\n\t\t\t\t\t\t[-95.567708, 28.829758],\n\t\t\t\t\t\t[-95.507041, 28.824755],\n\t\t\t\t\t\t[-95.568136, 28.789998],\n\t\t\t\t\t\t[-95.812504, 28.664942],\n\t\t\t\t\t\t[-95.884026, 28.633098],\n\t\t\t\t\t\t[-96.000682, 28.588238],\n\t\t\t\t\t\t[-96.077868, 28.556626],\n\t\t\t\t\t\t[-96.194412, 28.502224],\n\t\t\t\t\t\t[-96.220376, 28.491966],\n\t\t\t\t\t\t[-96.244751, 28.475055],\n\t\t\t\t\t\t[-96.270391, 28.461930],\n\t\t\t\t\t\t[-96.303212, 28.441871],\n\t\t\t\t\t\t[-96.321560, 28.425148],\n\t\t\t\t\t\t[-96.328817, 28.423659],\n\t\t\t\t\t\t[-96.341617, 28.417334],\n\t\t\t\t\t\t[-96.371117, 28.397661],\n\t\t\t\t\t\t[-96.372101, 28.393875],\n\t\t\t\t\t\t[-96.370717, 28.387667],\n\t\t\t\t\t\t[-96.378616, 28.383909],\n\t\t\t\t\t\t[-96.379372, 28.386089],\n\t\t\t\t\t\t[-96.381864, 28.393276],\n\t\t\t\t\t\t[-96.375960, 28.401682],\n\t\t\t\t\t\t[-96.374138, 28.404275],\n\t\t\t\t\t\t[-96.335119, 28.437795],\n\t\t\t\t\t\t[-96.268341, 28.477992],\n\t\t\t\t\t\t[-96.223825, 28.495067],\n\t\t\t\t\t\t[-96.218978, 28.500383],\n\t\t\t\t\t\t[-96.215050, 28.509679],\n\t\t\t\t\t\t[-96.145448, 28.544741],\n\t\t\t\t\t\t[-96.104735, 28.559499],\n\t\t\t\t\t\t[-96.046211, 28.586980],\n\t\t\t\t\t\t[-96.032979, 28.589016],\n\t\t\t\t\t\t[-96.007534, 28.599703],\n\t\t\t\t\t\t[-95.986160, 28.606319],\n\t\t\t\t\t\t[-95.982088, 28.614461],\n\t\t\t\t\t\t[-95.985651, 28.621077],\n\t\t\t\t\t\t[-95.983106, 28.641942],\n\t\t\t\t\t\t[-95.978526, 28.650594],\n\t\t\t\t\t\t[-95.986066, 28.655468],\n\t\t\t\t\t\t[-95.996338, 28.658736],\n\t\t\t\t\t\t[-96.002954, 28.656192],\n\t\t\t\t\t\t[-96.006516, 28.648049],\n\t\t\t\t\t\t[-96.033488, 28.652629],\n\t\t\t\t\t\t[-96.047737, 28.649067],\n\t\t\t\t\t\t[-96.072165, 28.635326],\n\t\t\t\t\t\t[-96.099137, 28.624639],\n\t\t\t\t\t\t[-96.148501, 28.611408],\n\t\t\t\t\t\t[-96.187178, 28.593596],\n\t\t\t\t\t\t[-96.198374, 28.586980],\n\t\t\t\t\t\t[-96.221784, 28.580364],\n\t\t\t\t\t\t[-96.228909, 28.580873],\n\t\t\t\t\t\t[-96.233998, 28.596649],\n\t\t\t\t\t\t[-96.233998, 28.601738],\n\t\t\t\t\t\t[-96.222293, 28.607336],\n\t\t\t\t\t\t[-96.214150, 28.613443],\n\t\t\t\t\t\t[-96.212624, 28.622604],\n\t\t\t\t\t\t[-96.230944, 28.641433],\n\t\t\t\t\t\t[-96.208552, 28.662298],\n\t\t\t\t\t\t[-96.214659, 28.665352],\n\t\t\t\t\t\t[-96.192267, 28.687744],\n\t\t\t\t\t\t[-96.191250, 28.694360],\n\t\t\t\t\t\t[-96.195830, 28.698940],\n\t\t\t\t\t\t[-96.202446, 28.700976],\n\t\t\t\t\t\t[-96.222802, 28.698431],\n\t\t\t\t\t\t[-96.231453, 28.696395],\n\t\t\t\t\t\t[-96.256899, 28.684690],\n\t\t\t\t\t\t[-96.263515, 28.683673],\n\t\t\t\t\t\t[-96.268604, 28.688762],\n\t\t\t\t\t\t[-96.287942, 28.683164],\n\t\t\t\t\t\t[-96.304227, 28.671459],\n\t\t\t\t\t\t[-96.305245, 28.660263],\n\t\t\t\t\t\t[-96.303718, 28.644996],\n\t\t\t\t\t\t[-96.322921, 28.641860]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48337\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"337\",\n\t\t\t\t\"NAME\": \"Montague\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 930.906000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.484071, 33.915680],\n\t\t\t\t\t\t[-97.487065, 33.433681],\n\t\t\t\t\t\t[-97.500154, 33.434057],\n\t\t\t\t\t\t[-97.918189, 33.433873],\n\t\t\t\t\t\t[-97.978967, 33.433748],\n\t\t\t\t\t\t[-97.978919, 33.467129],\n\t\t\t\t\t\t[-97.977810, 33.889894],\n\t\t\t\t\t\t[-97.966706, 33.881949],\n\t\t\t\t\t\t[-97.877387, 33.850236],\n\t\t\t\t\t\t[-97.865765, 33.849393],\n\t\t\t\t\t\t[-97.834333, 33.857671],\n\t\t\t\t\t\t[-97.785317, 33.890701],\n\t\t\t\t\t\t[-97.733723, 33.936392],\n\t\t\t\t\t\t[-97.700477, 33.972246],\n\t\t\t\t\t\t[-97.693110, 33.983699],\n\t\t\t\t\t\t[-97.688023, 33.986607],\n\t\t\t\t\t\t[-97.671772, 33.991370],\n\t\t\t\t\t\t[-97.656210, 33.989488],\n\t\t\t\t\t\t[-97.609091, 33.968093],\n\t\t\t\t\t\t[-97.589598, 33.953554],\n\t\t\t\t\t\t[-97.588828, 33.951882],\n\t\t\t\t\t\t[-97.597115, 33.917868],\n\t\t\t\t\t\t[-97.596289, 33.913769],\n\t\t\t\t\t\t[-97.587441, 33.902479],\n\t\t\t\t\t\t[-97.581041, 33.900396],\n\t\t\t\t\t\t[-97.561054, 33.898006],\n\t\t\t\t\t\t[-97.555002, 33.897282],\n\t\t\t\t\t\t[-97.545526, 33.900396],\n\t\t\t\t\t\t[-97.519171, 33.913638],\n\t\t\t\t\t\t[-97.500960, 33.919643],\n\t\t\t\t\t\t[-97.486505, 33.916994],\n\t\t\t\t\t\t[-97.484071, 33.915680]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54047\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"047\",\n\t\t\t\t\"NAME\": \"McDowell\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 533.456000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.855939, 37.548910],\n\t\t\t\t\t\t[-81.729433, 37.494585],\n\t\t\t\t\t\t[-81.654431, 37.523312],\n\t\t\t\t\t\t[-81.465845, 37.484703],\n\t\t\t\t\t\t[-81.311201, 37.424509],\n\t\t\t\t\t\t[-81.362156, 37.337687],\n\t\t\t\t\t\t[-81.366315, 37.335927],\n\t\t\t\t\t\t[-81.367052, 37.334504],\n\t\t\t\t\t\t[-81.368090, 37.332423],\n\t\t\t\t\t\t[-81.369379, 37.331827],\n\t\t\t\t\t\t[-81.367599, 37.327569],\n\t\t\t\t\t\t[-81.371315, 37.324115],\n\t\t\t\t\t\t[-81.377349, 37.318447],\n\t\t\t\t\t\t[-81.380159, 37.317838],\n\t\t\t\t\t\t[-81.384127, 37.318596],\n\t\t\t\t\t\t[-81.384914, 37.318832],\n\t\t\t\t\t\t[-81.385810, 37.320085],\n\t\t\t\t\t\t[-81.386727, 37.320474],\n\t\t\t\t\t\t[-81.388132, 37.319903],\n\t\t\t\t\t\t[-81.409196, 37.286071],\n\t\t\t\t\t\t[-81.409729, 37.284837],\n\t\t\t\t\t\t[-81.504168, 37.250115],\n\t\t\t\t\t\t[-81.504880, 37.247697],\n\t\t\t\t\t\t[-81.507325, 37.233800],\n\t\t\t\t\t\t[-81.557315, 37.207697],\n\t\t\t\t\t\t[-81.558353, 37.208145],\n\t\t\t\t\t\t[-81.560625, 37.206663],\n\t\t\t\t\t\t[-81.678603, 37.202467],\n\t\t\t\t\t\t[-81.683544, 37.211452],\n\t\t\t\t\t\t[-81.728194, 37.239823],\n\t\t\t\t\t\t[-81.733320, 37.238127],\n\t\t\t\t\t\t[-81.738378, 37.240917],\n\t\t\t\t\t\t[-81.744291, 37.244178],\n\t\t\t\t\t\t[-81.743420, 37.245858],\n\t\t\t\t\t\t[-81.743505, 37.247601],\n\t\t\t\t\t\t[-81.747656, 37.264329],\n\t\t\t\t\t\t[-81.751290, 37.265131],\n\t\t\t\t\t\t[-81.752123, 37.265568],\n\t\t\t\t\t\t[-81.752912, 37.266614],\n\t\t\t\t\t\t[-81.755012, 37.267720],\n\t\t\t\t\t\t[-81.757531, 37.270010],\n\t\t\t\t\t\t[-81.757714, 37.271124],\n\t\t\t\t\t\t[-81.757730, 37.271934],\n\t\t\t\t\t\t[-81.757631, 37.274003],\n\t\t\t\t\t\t[-81.760220, 37.275254],\n\t\t\t\t\t\t[-81.761752, 37.275713],\n\t\t\t\t\t\t[-81.762776, 37.275391],\n\t\t\t\t\t\t[-81.763836, 37.275218],\n\t\t\t\t\t\t[-81.765195, 37.275099],\n\t\t\t\t\t\t[-81.767837, 37.274216],\n\t\t\t\t\t\t[-81.774684, 37.274807],\n\t\t\t\t\t\t[-81.774747, 37.274847],\n\t\t\t\t\t\t[-81.793425, 37.281674],\n\t\t\t\t\t\t[-81.793639, 37.282188],\n\t\t\t\t\t\t[-81.809184, 37.283003],\n\t\t\t\t\t\t[-81.810559, 37.282980],\n\t\t\t\t\t\t[-81.842310, 37.285556],\n\t\t\t\t\t\t[-81.843167, 37.285586],\n\t\t\t\t\t\t[-81.854059, 37.291352],\n\t\t\t\t\t\t[-81.853488, 37.294763],\n\t\t\t\t\t\t[-81.854465, 37.299937],\n\t\t\t\t\t\t[-81.853978, 37.300418],\n\t\t\t\t\t\t[-81.864760, 37.308404],\n\t\t\t\t\t\t[-81.865219, 37.308839],\n\t\t\t\t\t\t[-81.873213, 37.325065],\n\t\t\t\t\t\t[-81.878343, 37.328837],\n\t\t\t\t\t\t[-81.878713, 37.331753],\n\t\t\t\t\t\t[-81.879601, 37.332074],\n\t\t\t\t\t\t[-81.880886, 37.331146],\n\t\t\t\t\t\t[-81.885075, 37.330665],\n\t\t\t\t\t\t[-81.886952, 37.330725],\n\t\t\t\t\t\t[-81.887722, 37.331156],\n\t\t\t\t\t\t[-81.892876, 37.330134],\n\t\t\t\t\t\t[-81.893773, 37.330105],\n\t\t\t\t\t\t[-81.894768, 37.331381],\n\t\t\t\t\t\t[-81.894797, 37.332012],\n\t\t\t\t\t\t[-81.895489, 37.332022],\n\t\t\t\t\t\t[-81.896001, 37.331967],\n\t\t\t\t\t\t[-81.899459, 37.340277],\n\t\t\t\t\t\t[-81.899495, 37.341102],\n\t\t\t\t\t\t[-81.902992, 37.342340],\n\t\t\t\t\t\t[-81.903795, 37.343050],\n\t\t\t\t\t\t[-81.905945, 37.342775],\n\t\t\t\t\t\t[-81.906368, 37.342760],\n\t\t\t\t\t\t[-81.907322, 37.343119],\n\t\t\t\t\t\t[-81.907895, 37.343783],\n\t\t\t\t\t\t[-81.910875, 37.348729],\n\t\t\t\t\t\t[-81.911487, 37.348839],\n\t\t\t\t\t\t[-81.920711, 37.355416],\n\t\t\t\t\t\t[-81.921571, 37.356423],\n\t\t\t\t\t\t[-81.925643, 37.357316],\n\t\t\t\t\t\t[-81.926589, 37.358942],\n\t\t\t\t\t\t[-81.929915, 37.366589],\n\t\t\t\t\t\t[-81.930194, 37.366728],\n\t\t\t\t\t\t[-81.933895, 37.372747],\n\t\t\t\t\t\t[-81.927490, 37.413251],\n\t\t\t\t\t\t[-81.935621, 37.438397],\n\t\t\t\t\t\t[-81.949367, 37.445687],\n\t\t\t\t\t\t[-81.968795, 37.451496],\n\t\t\t\t\t\t[-81.987006, 37.454878],\n\t\t\t\t\t\t[-81.992270, 37.460916],\n\t\t\t\t\t\t[-81.996578, 37.476705],\n\t\t\t\t\t\t[-81.992916, 37.482969],\n\t\t\t\t\t\t[-81.942640, 37.508844],\n\t\t\t\t\t\t[-81.927870, 37.512118],\n\t\t\t\t\t\t[-81.922628, 37.511914],\n\t\t\t\t\t\t[-81.912826, 37.520410],\n\t\t\t\t\t\t[-81.909374, 37.527041],\n\t\t\t\t\t\t[-81.897951, 37.524395],\n\t\t\t\t\t\t[-81.889236, 37.528387],\n\t\t\t\t\t\t[-81.886050, 37.536744],\n\t\t\t\t\t\t[-81.882936, 37.538210],\n\t\t\t\t\t\t[-81.869439, 37.537810],\n\t\t\t\t\t\t[-81.865239, 37.543610],\n\t\t\t\t\t\t[-81.855939, 37.548910]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54057\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"057\",\n\t\t\t\t\"NAME\": \"Mineral\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 327.830000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.979898, 39.237624],\n\t\t\t\t\t\t[-79.134456, 39.312501],\n\t\t\t\t\t\t[-79.280039, 39.340076],\n\t\t\t\t\t\t[-79.256880, 39.356077],\n\t\t\t\t\t\t[-79.213192, 39.367897],\n\t\t\t\t\t\t[-79.201676, 39.379726],\n\t\t\t\t\t\t[-79.084450, 39.471356],\n\t\t\t\t\t\t[-79.067072, 39.474658],\n\t\t\t\t\t\t[-79.042440, 39.479339],\n\t\t\t\t\t\t[-79.025681, 39.465539],\n\t\t\t\t\t\t[-78.968996, 39.441543],\n\t\t\t\t\t\t[-78.874744, 39.522611],\n\t\t\t\t\t\t[-78.824788, 39.590233],\n\t\t\t\t\t\t[-78.787461, 39.627492],\n\t\t\t\t\t\t[-78.760497, 39.609984],\n\t\t\t\t\t\t[-78.769029, 39.599871],\n\t\t\t\t\t\t[-78.772048, 39.593833],\n\t\t\t\t\t\t[-78.767490, 39.587487],\n\t\t\t\t\t\t[-78.760196, 39.582154],\n\t\t\t\t\t\t[-78.689455, 39.545770],\n\t\t\t\t\t\t[-78.676219, 39.540622],\n\t\t\t\t\t\t[-78.657324, 39.535087],\n\t\t\t\t\t\t[-78.767447, 39.447238],\n\t\t\t\t\t\t[-78.850723, 39.331093],\n\t\t\t\t\t\t[-78.979898, 39.237624]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54063\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"063\",\n\t\t\t\t\"NAME\": \"Monroe\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 472.752000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.663348, 37.731696],\n\t\t\t\t\t\t[-80.450651, 37.683858],\n\t\t\t\t\t\t[-80.296138, 37.691783],\n\t\t\t\t\t\t[-80.292337, 37.683976],\n\t\t\t\t\t\t[-80.292258, 37.683732],\n\t\t\t\t\t\t[-80.270323, 37.648982],\n\t\t\t\t\t\t[-80.270352, 37.648929],\n\t\t\t\t\t\t[-80.267455, 37.646108],\n\t\t\t\t\t\t[-80.267228, 37.646011],\n\t\t\t\t\t\t[-80.264874, 37.645511],\n\t\t\t\t\t\t[-80.264830, 37.645526],\n\t\t\t\t\t\t[-80.263291, 37.645101],\n\t\t\t\t\t\t[-80.263281, 37.645082],\n\t\t\t\t\t\t[-80.254469, 37.642333],\n\t\t\t\t\t\t[-80.254431, 37.642352],\n\t\t\t\t\t\t[-80.239288, 37.637672],\n\t\t\t\t\t\t[-80.220984, 37.627767],\n\t\t\t\t\t\t[-80.223386, 37.623185],\n\t\t\t\t\t\t[-80.240272, 37.606961],\n\t\t\t\t\t\t[-80.288766, 37.581960],\n\t\t\t\t\t\t[-80.312393, 37.546239],\n\t\t\t\t\t\t[-80.330306, 37.536244],\n\t\t\t\t\t\t[-80.314806, 37.500943],\n\t\t\t\t\t\t[-80.320627, 37.498880],\n\t\t\t\t\t\t[-80.425656, 37.449876],\n\t\t\t\t\t\t[-80.443025, 37.438126],\n\t\t\t\t\t\t[-80.464820, 37.426144],\n\t\t\t\t\t\t[-80.475601, 37.422949],\n\t\t\t\t\t\t[-80.494867, 37.435070],\n\t\t\t\t\t\t[-80.511391, 37.481672],\n\t\t\t\t\t\t[-80.622664, 37.433307],\n\t\t\t\t\t\t[-80.770082, 37.372363],\n\t\t\t\t\t\t[-80.776649, 37.383679],\n\t\t\t\t\t\t[-80.776766, 37.384131],\n\t\t\t\t\t\t[-80.798869, 37.395807],\n\t\t\t\t\t\t[-80.811639, 37.407507],\n\t\t\t\t\t\t[-80.858360, 37.428168],\n\t\t\t\t\t\t[-80.858473, 37.428301],\n\t\t\t\t\t\t[-80.660446, 37.714563],\n\t\t\t\t\t\t[-80.663348, 37.731696]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54071\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"071\",\n\t\t\t\t\"NAME\": \"Pendleton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 696.049000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.134296, 38.813340],\n\t\t\t\t\t\t[-79.057253, 38.761413],\n\t\t\t\t\t\t[-79.092555, 38.700149],\n\t\t\t\t\t\t[-79.092271, 38.699208],\n\t\t\t\t\t\t[-79.135472, 38.644057],\n\t\t\t\t\t\t[-79.135546, 38.643715],\n\t\t\t\t\t\t[-79.136374, 38.642400],\n\t\t\t\t\t\t[-79.137012, 38.640655],\n\t\t\t\t\t\t[-79.146741, 38.625819],\n\t\t\t\t\t\t[-79.146974, 38.625641],\n\t\t\t\t\t\t[-79.174512, 38.566531],\n\t\t\t\t\t\t[-79.174881, 38.566314],\n\t\t\t\t\t\t[-79.207884, 38.500428],\n\t\t\t\t\t\t[-79.207873, 38.500122],\n\t\t\t\t\t\t[-79.209703, 38.495574],\n\t\t\t\t\t\t[-79.210008, 38.494283],\n\t\t\t\t\t\t[-79.210026, 38.494231],\n\t\t\t\t\t\t[-79.225839, 38.479446],\n\t\t\t\t\t\t[-79.231620, 38.474041],\n\t\t\t\t\t\t[-79.234408, 38.473011],\n\t\t\t\t\t\t[-79.240059, 38.469841],\n\t\t\t\t\t\t[-79.242024, 38.464332],\n\t\t\t\t\t\t[-79.262910, 38.444586],\n\t\t\t\t\t\t[-79.263376, 38.443762],\n\t\t\t\t\t\t[-79.265327, 38.441772],\n\t\t\t\t\t\t[-79.267414, 38.438322],\n\t\t\t\t\t\t[-79.282663, 38.431021],\n\t\t\t\t\t\t[-79.280263, 38.425475],\n\t\t\t\t\t\t[-79.290529, 38.420757],\n\t\t\t\t\t\t[-79.291813, 38.419627],\n\t\t\t\t\t\t[-79.295712, 38.418129],\n\t\t\t\t\t\t[-79.297758, 38.416438],\n\t\t\t\t\t\t[-79.312276, 38.411876],\n\t\t\t\t\t\t[-79.476638, 38.457228],\n\t\t\t\t\t\t[-79.521469, 38.533918],\n\t\t\t\t\t\t[-79.536870, 38.550917],\n\t\t\t\t\t\t[-79.555471, 38.560217],\n\t\t\t\t\t\t[-79.597955, 38.572767],\n\t\t\t\t\t\t[-79.649075, 38.591515],\n\t\t\t\t\t\t[-79.626774, 38.664214],\n\t\t\t\t\t\t[-79.510073, 38.780712],\n\t\t\t\t\t\t[-79.539075, 38.841411],\n\t\t\t\t\t\t[-79.455472, 38.929910],\n\t\t\t\t\t\t[-79.349867, 38.957509],\n\t\t\t\t\t\t[-79.134296, 38.813340]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54077\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"077\",\n\t\t\t\t\"NAME\": \"Preston\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 648.805000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.895536, 39.299584],\n\t\t\t\t\t\t[-79.894688, 39.435588],\n\t\t\t\t\t\t[-79.899744, 39.481940],\n\t\t\t\t\t\t[-79.789277, 39.623781],\n\t\t\t\t\t\t[-79.763774, 39.720776],\n\t\t\t\t\t\t[-79.610623, 39.721245],\n\t\t\t\t\t\t[-79.608223, 39.721154],\n\t\t\t\t\t\t[-79.476662, 39.721078],\n\t\t\t\t\t\t[-79.478866, 39.531689],\n\t\t\t\t\t\t[-79.482354, 39.524682],\n\t\t\t\t\t\t[-79.482648, 39.521364],\n\t\t\t\t\t\t[-79.487651, 39.279933],\n\t\t\t\t\t\t[-79.486737, 39.278149],\n\t\t\t\t\t\t[-79.486179, 39.264970],\n\t\t\t\t\t\t[-79.485874, 39.264905],\n\t\t\t\t\t\t[-79.486873, 39.205961],\n\t\t\t\t\t\t[-79.487175, 39.194906],\n\t\t\t\t\t\t[-79.687283, 39.271398],\n\t\t\t\t\t\t[-79.809729, 39.230526],\n\t\t\t\t\t\t[-79.895536, 39.299584]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51059\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"059\",\n\t\t\t\t\"NAME\": \"Fairfax\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 390.969000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.088047, 38.824973],\n\t\t\t\t\t\t[-77.039239, 38.785200],\n\t\t\t\t\t\t[-77.041398, 38.763914],\n\t\t\t\t\t\t[-77.059910, 38.734419],\n\t\t\t\t\t\t[-77.074599, 38.711015],\n\t\t\t\t\t\t[-77.086113, 38.705792],\n\t\t\t\t\t\t[-77.105900, 38.696815],\n\t\t\t\t\t\t[-77.121101, 38.686616],\n\t\t\t\t\t\t[-77.132501, 38.673816],\n\t\t\t\t\t\t[-77.135901, 38.649817],\n\t\t\t\t\t\t[-77.130200, 38.635017],\n\t\t\t\t\t\t[-77.157501, 38.636417],\n\t\t\t\t\t\t[-77.174902, 38.624217],\n\t\t\t\t\t\t[-77.202002, 38.617217],\n\t\t\t\t\t\t[-77.204302, 38.617817],\n\t\t\t\t\t\t[-77.205103, 38.623917],\n\t\t\t\t\t\t[-77.216303, 38.637817],\n\t\t\t\t\t\t[-77.222350, 38.638091],\n\t\t\t\t\t\t[-77.380451, 38.722516],\n\t\t\t\t\t\t[-77.387917, 38.748217],\n\t\t\t\t\t\t[-77.449084, 38.803133],\n\t\t\t\t\t\t[-77.535760, 38.847474],\n\t\t\t\t\t\t[-77.328318, 39.057678],\n\t\t\t\t\t\t[-77.328002, 39.058554],\n\t\t\t\t\t\t[-77.291605, 39.045408],\n\t\t\t\t\t\t[-77.261403, 39.031009],\n\t\t\t\t\t\t[-77.251803, 39.011409],\n\t\t\t\t\t\t[-77.255703, 39.002409],\n\t\t\t\t\t\t[-77.249803, 38.985909],\n\t\t\t\t\t\t[-77.235403, 38.976610],\n\t\t\t\t\t\t[-77.221502, 38.971310],\n\t\t\t\t\t\t[-77.197502, 38.966810],\n\t\t\t\t\t\t[-77.166901, 38.968110],\n\t\t\t\t\t\t[-77.148179, 38.965002],\n\t\t\t\t\t\t[-77.137701, 38.955310],\n\t\t\t\t\t\t[-77.119900, 38.934311],\n\t\t\t\t\t\t[-77.119863, 38.934265],\n\t\t\t\t\t\t[-77.148492, 38.911993],\n\t\t\t\t\t\t[-77.149735, 38.910523],\n\t\t\t\t\t\t[-77.154368, 38.907044],\n\t\t\t\t\t\t[-77.157513, 38.904855],\n\t\t\t\t\t\t[-77.168110, 38.896521],\n\t\t\t\t\t\t[-77.172169, 38.893329],\n\t\t\t\t\t\t[-77.188854, 38.896272],\n\t\t\t\t\t\t[-77.194340, 38.886065],\n\t\t\t\t\t\t[-77.189766, 38.878117],\n\t\t\t\t\t\t[-77.173243, 38.878604],\n\t\t\t\t\t\t[-77.154974, 38.872213],\n\t\t\t\t\t\t[-77.150287, 38.876192],\n\t\t\t\t\t\t[-77.110731, 38.843457],\n\t\t\t\t\t\t[-77.088047, 38.824973]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.334805, 38.851404],\n\t\t\t\t\t\t[-77.318689, 38.834651],\n\t\t\t\t\t\t[-77.270500, 38.840992],\n\t\t\t\t\t\t[-77.270597, 38.866075],\n\t\t\t\t\t\t[-77.328788, 38.864848],\n\t\t\t\t\t\t[-77.334805, 38.851404]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51071\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"071\",\n\t\t\t\t\"NAME\": \"Giles\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 355.781000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.980044, 37.293118],\n\t\t\t\t\t\t[-80.973889, 37.291444],\n\t\t\t\t\t\t[-80.966556, 37.292158],\n\t\t\t\t\t\t[-80.947896, 37.295872],\n\t\t\t\t\t\t[-80.919259, 37.306163],\n\t\t\t\t\t\t[-80.900535, 37.315000],\n\t\t\t\t\t\t[-80.849451, 37.346909],\n\t\t\t\t\t\t[-80.872589, 37.372347],\n\t\t\t\t\t\t[-80.862761, 37.411829],\n\t\t\t\t\t\t[-80.859558, 37.429555],\n\t\t\t\t\t\t[-80.859556, 37.429568],\n\t\t\t\t\t\t[-80.858473, 37.428301],\n\t\t\t\t\t\t[-80.858360, 37.428168],\n\t\t\t\t\t\t[-80.811639, 37.407507],\n\t\t\t\t\t\t[-80.798869, 37.395807],\n\t\t\t\t\t\t[-80.776766, 37.384131],\n\t\t\t\t\t\t[-80.776649, 37.383679],\n\t\t\t\t\t\t[-80.770082, 37.372363],\n\t\t\t\t\t\t[-80.622664, 37.433307],\n\t\t\t\t\t\t[-80.511391, 37.481672],\n\t\t\t\t\t\t[-80.494867, 37.435070],\n\t\t\t\t\t\t[-80.475601, 37.422949],\n\t\t\t\t\t\t[-80.433361, 37.314901],\n\t\t\t\t\t\t[-80.606874, 37.244911],\n\t\t\t\t\t\t[-80.854627, 37.147482],\n\t\t\t\t\t\t[-81.014489, 37.275385],\n\t\t\t\t\t\t[-80.980044, 37.293118]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51077\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"077\",\n\t\t\t\t\"NAME\": \"Grayson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 442.175000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.605835, 36.638717],\n\t\t\t\t\t\t[-81.544536, 36.701617],\n\t\t\t\t\t\t[-81.261620, 36.763120],\n\t\t\t\t\t\t[-81.088510, 36.767422],\n\t\t\t\t\t\t[-81.042406, 36.806422],\n\t\t\t\t\t\t[-80.932271, 36.671593],\n\t\t\t\t\t\t[-80.944109, 36.676303],\n\t\t\t\t\t\t[-80.947754, 36.648361],\n\t\t\t\t\t\t[-80.921711, 36.643533],\n\t\t\t\t\t\t[-80.931655, 36.628494],\n\t\t\t\t\t\t[-80.916043, 36.629343],\n\t\t\t\t\t\t[-80.914173, 36.650246],\n\t\t\t\t\t\t[-80.837954, 36.559131],\n\t\t\t\t\t\t[-80.901726, 36.561751],\n\t\t\t\t\t\t[-80.901836, 36.561754],\n\t\t\t\t\t\t[-80.944338, 36.563058],\n\t\t\t\t\t\t[-80.945988, 36.563196],\n\t\t\t\t\t\t[-81.058844, 36.566976],\n\t\t\t\t\t\t[-81.061866, 36.567020],\n\t\t\t\t\t\t[-81.307511, 36.575024],\n\t\t\t\t\t\t[-81.353169, 36.574724],\n\t\t\t\t\t\t[-81.353322, 36.574723],\n\t\t\t\t\t\t[-81.521032, 36.580520],\n\t\t\t\t\t\t[-81.606970, 36.587094],\n\t\t\t\t\t\t[-81.677535, 36.588117],\n\t\t\t\t\t\t[-81.646900, 36.611918],\n\t\t\t\t\t\t[-81.610663, 36.616913],\n\t\t\t\t\t\t[-81.605835, 36.638717]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51083\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"083\",\n\t\t\t\t\"NAME\": \"Halifax\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 817.839000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.092264, 37.061498],\n\t\t\t\t\t\t[-78.904587, 37.022288],\n\t\t\t\t\t\t[-78.671463, 36.857951],\n\t\t\t\t\t\t[-78.648541, 36.697909],\n\t\t\t\t\t\t[-78.711702, 36.641078],\n\t\t\t\t\t\t[-78.734122, 36.541902],\n\t\t\t\t\t\t[-78.758392, 36.541852],\n\t\t\t\t\t\t[-78.765430, 36.541727],\n\t\t\t\t\t\t[-78.796300, 36.541713],\n\t\t\t\t\t\t[-78.914543, 36.541972],\n\t\t\t\t\t\t[-78.915420, 36.541974],\n\t\t\t\t\t\t[-78.942009, 36.542113],\n\t\t\t\t\t\t[-78.942254, 36.542079],\n\t\t\t\t\t\t[-78.970577, 36.542154],\n\t\t\t\t\t\t[-78.971814, 36.542123],\n\t\t\t\t\t\t[-79.124736, 36.541568],\n\t\t\t\t\t\t[-79.126078, 36.541533],\n\t\t\t\t\t\t[-79.137936, 36.541739],\n\t\t\t\t\t\t[-79.208686, 36.541571],\n\t\t\t\t\t\t[-79.209480, 36.541594],\n\t\t\t\t\t\t[-79.218638, 36.541579],\n\t\t\t\t\t\t[-79.092264, 37.061498]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51089\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"089\",\n\t\t\t\t\"NAME\": \"Henry\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 382.334000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.012032, 36.789644],\n\t\t\t\t\t\t[-79.999771, 36.830738],\n\t\t\t\t\t\t[-79.761756, 36.788337],\n\t\t\t\t\t\t[-79.640652, 36.856139],\n\t\t\t\t\t\t[-79.714855, 36.541884],\n\t\t\t\t\t\t[-79.920239, 36.542365],\n\t\t\t\t\t\t[-79.966979, 36.542475],\n\t\t\t\t\t\t[-79.967511, 36.542502],\n\t\t\t\t\t\t[-80.027269, 36.542495],\n\t\t\t\t\t\t[-80.053455, 36.542623],\n\t\t\t\t\t\t[-80.094389, 36.779552],\n\t\t\t\t\t\t[-80.041493, 36.794365],\n\t\t\t\t\t\t[-80.025178, 36.780752],\n\t\t\t\t\t\t[-80.013194, 36.783748],\n\t\t\t\t\t\t[-80.027194, 36.791262],\n\t\t\t\t\t\t[-80.012032, 36.789644]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.904077, 36.684127],\n\t\t\t\t\t\t[-79.895561, 36.675237],\n\t\t\t\t\t\t[-79.894181, 36.672036],\n\t\t\t\t\t\t[-79.884861, 36.672037],\n\t\t\t\t\t\t[-79.881661, 36.670537],\n\t\t\t\t\t\t[-79.880164, 36.667144],\n\t\t\t\t\t\t[-79.877668, 36.666707],\n\t\t\t\t\t\t[-79.859260, 36.661737],\n\t\t\t\t\t\t[-79.859761, 36.650368],\n\t\t\t\t\t\t[-79.827459, 36.647637],\n\t\t\t\t\t\t[-79.826619, 36.659379],\n\t\t\t\t\t\t[-79.843737, 36.672443],\n\t\t\t\t\t\t[-79.837359, 36.704137],\n\t\t\t\t\t\t[-79.874760, 36.715237],\n\t\t\t\t\t\t[-79.904077, 36.684127]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51093\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"093\",\n\t\t\t\t\"NAME\": \"Isle of Wight\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 315.612000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.576617, 37.021374],\n\t\t\t\t\t\t[-76.565803, 37.007493],\n\t\t\t\t\t\t[-76.562923, 37.003796],\n\t\t\t\t\t\t[-76.551246, 36.998946],\n\t\t\t\t\t\t[-76.524853, 36.983833],\n\t\t\t\t\t\t[-76.522971, 36.981085],\n\t\t\t\t\t\t[-76.524142, 36.978316],\n\t\t\t\t\t\t[-76.521006, 36.973187],\n\t\t\t\t\t\t[-76.513363, 36.968057],\n\t\t\t\t\t\t[-76.500355, 36.965212],\n\t\t\t\t\t\t[-76.487559, 36.952372],\n\t\t\t\t\t\t[-76.484107, 36.928916],\n\t\t\t\t\t\t[-76.533520, 36.915563],\n\t\t\t\t\t\t[-76.897592, 36.644050],\n\t\t\t\t\t\t[-76.900400, 36.645731],\n\t\t\t\t\t\t[-76.907702, 36.647190],\n\t\t\t\t\t\t[-76.909672, 36.648175],\n\t\t\t\t\t\t[-76.917742, 36.662368],\n\t\t\t\t\t\t[-76.912015, 36.672717],\n\t\t\t\t\t\t[-76.925167, 36.683583],\n\t\t\t\t\t\t[-76.912221, 36.698408],\n\t\t\t\t\t\t[-76.926142, 36.698587],\n\t\t\t\t\t\t[-76.924629, 36.707729],\n\t\t\t\t\t\t[-76.816162, 36.914907],\n\t\t\t\t\t\t[-76.849684, 36.996211],\n\t\t\t\t\t\t[-76.711775, 37.055380],\n\t\t\t\t\t\t[-76.671588, 37.142060],\n\t\t\t\t\t\t[-76.669604, 37.140534],\n\t\t\t\t\t\t[-76.666542, 37.138179],\n\t\t\t\t\t\t[-76.665833, 37.136098],\n\t\t\t\t\t\t[-76.665641, 37.135534],\n\t\t\t\t\t\t[-76.663750, 37.129979],\n\t\t\t\t\t\t[-76.656894, 37.109843],\n\t\t\t\t\t\t[-76.657101, 37.107617],\n\t\t\t\t\t\t[-76.657703, 37.101161],\n\t\t\t\t\t\t[-76.658110, 37.096787],\n\t\t\t\t\t\t[-76.659394, 37.094019],\n\t\t\t\t\t\t[-76.665550, 37.080746],\n\t\t\t\t\t\t[-76.666526, 37.078643],\n\t\t\t\t\t\t[-76.667219, 37.077149],\n\t\t\t\t\t\t[-76.667646, 37.076228],\n\t\t\t\t\t\t[-76.668295, 37.072656],\n\t\t\t\t\t\t[-76.669118, 37.068132],\n\t\t\t\t\t\t[-76.669822, 37.064260],\n\t\t\t\t\t\t[-76.668350, 37.055060],\n\t\t\t\t\t\t[-76.662558, 37.045748],\n\t\t\t\t\t\t[-76.653998, 37.039172],\n\t\t\t\t\t\t[-76.646013, 37.036228],\n\t\t\t\t\t\t[-76.612124, 37.035604],\n\t\t\t\t\t\t[-76.586491, 37.028740],\n\t\t\t\t\t\t[-76.584478, 37.027349],\n\t\t\t\t\t\t[-76.579393, 37.023835],\n\t\t\t\t\t\t[-76.579236, 37.023726],\n\t\t\t\t\t\t[-76.578160, 37.022982],\n\t\t\t\t\t\t[-76.577531, 37.022548],\n\t\t\t\t\t\t[-76.576617, 37.021374]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51099\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"099\",\n\t\t\t\t\"NAME\": \"King George\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 179.636000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.997670, 38.278047],\n\t\t\t\t\t\t[-77.061695, 38.161631],\n\t\t\t\t\t\t[-77.069296, 38.157731],\n\t\t\t\t\t\t[-77.066895, 38.147631],\n\t\t\t\t\t\t[-77.075496, 38.141131],\n\t\t\t\t\t\t[-77.082596, 38.146831],\n\t\t\t\t\t\t[-77.084596, 38.160231],\n\t\t\t\t\t\t[-77.094796, 38.161631],\n\t\t\t\t\t\t[-77.115997, 38.149931],\n\t\t\t\t\t\t[-77.224689, 38.242207],\n\t\t\t\t\t\t[-77.326692, 38.245136],\n\t\t\t\t\t\t[-77.286202, 38.347024],\n\t\t\t\t\t\t[-77.279633, 38.339444],\n\t\t\t\t\t\t[-77.265295, 38.333165],\n\t\t\t\t\t\t[-77.240072, 38.331598],\n\t\t\t\t\t\t[-77.199433, 38.340890],\n\t\t\t\t\t\t[-77.179340, 38.341915],\n\t\t\t\t\t\t[-77.162692, 38.345994],\n\t\t\t\t\t\t[-77.155191, 38.351047],\n\t\t\t\t\t\t[-77.138224, 38.367917],\n\t\t\t\t\t\t[-77.104717, 38.369655],\n\t\t\t\t\t\t[-77.094665, 38.367715],\n\t\t\t\t\t\t[-77.084810, 38.368297],\n\t\t\t\t\t\t[-77.069956, 38.377895],\n\t\t\t\t\t\t[-77.056032, 38.396200],\n\t\t\t\t\t\t[-77.051437, 38.399083],\n\t\t\t\t\t\t[-77.043526, 38.400548],\n\t\t\t\t\t\t[-77.024866, 38.386791],\n\t\t\t\t\t\t[-77.011827, 38.374554],\n\t\t\t\t\t\t[-77.016932, 38.341697],\n\t\t\t\t\t\t[-77.020947, 38.329273],\n\t\t\t\t\t\t[-77.030683, 38.311623],\n\t\t\t\t\t\t[-77.026304, 38.302685],\n\t\t\t\t\t\t[-76.997670, 38.278047]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51105\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"105\",\n\t\t\t\t\"NAME\": \"Lee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 435.518000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.771308, 36.799880],\n\t\t\t\t\t\t[-82.823163, 36.733295],\n\t\t\t\t\t\t[-82.947535, 36.675840],\n\t\t\t\t\t\t[-82.985087, 36.593829],\n\t\t\t\t\t\t[-83.027250, 36.593847],\n\t\t\t\t\t\t[-83.028357, 36.593893],\n\t\t\t\t\t\t[-83.248933, 36.593827],\n\t\t\t\t\t\t[-83.249899, 36.593898],\n\t\t\t\t\t\t[-83.250304, 36.593935],\n\t\t\t\t\t\t[-83.276300, 36.598187],\n\t\t\t\t\t\t[-83.472108, 36.597284],\n\t\t\t\t\t\t[-83.670128, 36.600764],\n\t\t\t\t\t\t[-83.670141, 36.600797],\n\t\t\t\t\t\t[-83.675413, 36.600814],\n\t\t\t\t\t\t[-83.649513, 36.616683],\n\t\t\t\t\t\t[-83.527212, 36.665984],\n\t\t\t\t\t\t[-83.498011, 36.670485],\n\t\t\t\t\t\t[-83.461013, 36.664916],\n\t\t\t\t\t\t[-83.460808, 36.664885],\n\t\t\t\t\t\t[-83.354606, 36.696153],\n\t\t\t\t\t\t[-83.353613, 36.696699],\n\t\t\t\t\t\t[-83.342804, 36.701286],\n\t\t\t\t\t\t[-83.199698, 36.737487],\n\t\t\t\t\t\t[-83.167396, 36.739187],\n\t\t\t\t\t\t[-83.136395, 36.743088],\n\t\t\t\t\t\t[-83.127833, 36.750828],\n\t\t\t\t\t\t[-83.125728, 36.761276],\n\t\t\t\t\t\t[-83.125655, 36.761407],\n\t\t\t\t\t\t[-83.131245, 36.767105],\n\t\t\t\t\t\t[-83.131694, 36.781488],\n\t\t\t\t\t\t[-83.099792, 36.824889],\n\t\t\t\t\t\t[-83.072590, 36.854589],\n\t\t\t\t\t\t[-82.973395, 36.859097],\n\t\t\t\t\t\t[-82.911824, 36.874243],\n\t\t\t\t\t\t[-82.911690, 36.874248],\n\t\t\t\t\t\t[-82.885618, 36.900415],\n\t\t\t\t\t\t[-82.771308, 36.799880]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21033\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"033\",\n\t\t\t\t\"NAME\": \"Caldwell\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 344.791000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.801046, 37.379445],\n\t\t\t\t\t\t[-87.811461, 37.364087],\n\t\t\t\t\t\t[-87.819963, 37.366034],\n\t\t\t\t\t\t[-87.827977, 37.353711],\n\t\t\t\t\t\t[-87.813413, 37.350645],\n\t\t\t\t\t\t[-87.850760, 37.322136],\n\t\t\t\t\t\t[-87.805029, 37.241083],\n\t\t\t\t\t\t[-87.680617, 37.149239],\n\t\t\t\t\t\t[-87.710912, 37.021607],\n\t\t\t\t\t\t[-87.733368, 37.002103],\n\t\t\t\t\t\t[-87.876996, 36.960116],\n\t\t\t\t\t\t[-88.042142, 37.174756],\n\t\t\t\t\t\t[-88.095781, 37.179684],\n\t\t\t\t\t\t[-88.089074, 37.222388],\n\t\t\t\t\t\t[-87.801046, 37.379445]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13305\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"305\",\n\t\t\t\t\"NAME\": \"Wayne\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 641.777000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.969052, 31.789324],\n\t\t\t\t\t\t[-81.850624, 31.667671],\n\t\t\t\t\t\t[-81.663206, 31.538667],\n\t\t\t\t\t\t[-81.624290, 31.452982],\n\t\t\t\t\t\t[-81.691990, 31.400519],\n\t\t\t\t\t\t[-81.731694, 31.330048],\n\t\t\t\t\t\t[-81.801052, 31.363737],\n\t\t\t\t\t\t[-81.923238, 31.345875],\n\t\t\t\t\t\t[-82.041129, 31.373721],\n\t\t\t\t\t\t[-82.052754, 31.454567],\n\t\t\t\t\t\t[-82.132794, 31.471262],\n\t\t\t\t\t\t[-82.133013, 31.773404],\n\t\t\t\t\t\t[-82.048582, 31.827075],\n\t\t\t\t\t\t[-82.028346, 31.815513],\n\t\t\t\t\t\t[-82.014639, 31.821800],\n\t\t\t\t\t\t[-82.006777, 31.800047],\n\t\t\t\t\t\t[-81.981941, 31.784405],\n\t\t\t\t\t\t[-81.969052, 31.789324]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51117\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"117\",\n\t\t\t\t\"NAME\": \"Mecklenburg\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 625.485000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.033437, 36.708451],\n\t\t\t\t\t\t[-78.046202, 36.544168],\n\t\t\t\t\t\t[-78.132911, 36.543811],\n\t\t\t\t\t\t[-78.133323, 36.543847],\n\t\t\t\t\t\t[-78.245462, 36.544411],\n\t\t\t\t\t\t[-78.246681, 36.544341],\n\t\t\t\t\t\t[-78.323912, 36.543809],\n\t\t\t\t\t\t[-78.436333, 36.542666],\n\t\t\t\t\t\t[-78.441199, 36.542687],\n\t\t\t\t\t\t[-78.456970, 36.542474],\n\t\t\t\t\t\t[-78.470792, 36.542316],\n\t\t\t\t\t\t[-78.471022, 36.542307],\n\t\t\t\t\t\t[-78.529722, 36.540981],\n\t\t\t\t\t\t[-78.533013, 36.541004],\n\t\t\t\t\t\t[-78.663317, 36.542011],\n\t\t\t\t\t\t[-78.670051, 36.542035],\n\t\t\t\t\t\t[-78.734122, 36.541902],\n\t\t\t\t\t\t[-78.711702, 36.641078],\n\t\t\t\t\t\t[-78.648541, 36.697909],\n\t\t\t\t\t\t[-78.493028, 36.891220],\n\t\t\t\t\t\t[-78.241509, 36.807958],\n\t\t\t\t\t\t[-78.027411, 36.777858],\n\t\t\t\t\t\t[-78.027419, 36.775951],\n\t\t\t\t\t\t[-78.033437, 36.708451]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72023\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"023\",\n\t\t\t\t\"NAME\": \"Cabo Rojo\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 70.374000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-67.100492, 18.106395],\n\t\t\t\t\t\t[-67.104044, 18.098804],\n\t\t\t\t\t\t[-67.106123, 18.079693],\n\t\t\t\t\t\t[-67.105566, 18.073861],\n\t\t\t\t\t\t[-67.101267, 18.074203],\n\t\t\t\t\t\t[-67.099120, 18.067358],\n\t\t\t\t\t\t[-67.107110, 18.061780],\n\t\t\t\t\t\t[-67.109044, 18.056085],\n\t\t\t\t\t\t[-67.109986, 17.945806],\n\t\t\t\t\t\t[-67.128251, 17.948153],\n\t\t\t\t\t\t[-67.133733, 17.951919],\n\t\t\t\t\t\t[-67.167031, 17.963073],\n\t\t\t\t\t\t[-67.178566, 17.964792],\n\t\t\t\t\t\t[-67.183508, 17.962706],\n\t\t\t\t\t\t[-67.188717, 17.950989],\n\t\t\t\t\t\t[-67.187474, 17.946252],\n\t\t\t\t\t\t[-67.183694, 17.937982],\n\t\t\t\t\t\t[-67.183457, 17.931135],\n\t\t\t\t\t\t[-67.194785, 17.932826],\n\t\t\t\t\t\t[-67.196924, 17.935651],\n\t\t\t\t\t\t[-67.197273, 17.937461],\n\t\t\t\t\t\t[-67.197517, 17.941514],\n\t\t\t\t\t\t[-67.197668, 17.943549],\n\t\t\t\t\t\t[-67.198988, 17.947820],\n\t\t\t\t\t\t[-67.200973, 17.949896],\n\t\t\t\t\t\t[-67.210034, 17.953595],\n\t\t\t\t\t\t[-67.212101, 17.956027],\n\t\t\t\t\t\t[-67.214330, 17.962436],\n\t\t\t\t\t\t[-67.215271, 17.983464],\n\t\t\t\t\t\t[-67.211973, 17.992993],\n\t\t\t\t\t\t[-67.207694, 17.998019],\n\t\t\t\t\t\t[-67.177893, 18.008882],\n\t\t\t\t\t\t[-67.174299, 18.011149],\n\t\t\t\t\t\t[-67.172397, 18.014906],\n\t\t\t\t\t\t[-67.172138, 18.021422],\n\t\t\t\t\t\t[-67.173761, 18.024548],\n\t\t\t\t\t\t[-67.193269, 18.031850],\n\t\t\t\t\t\t[-67.209887, 18.035439],\n\t\t\t\t\t\t[-67.196694, 18.066491],\n\t\t\t\t\t\t[-67.190656, 18.064269],\n\t\t\t\t\t\t[-67.184589, 18.067750],\n\t\t\t\t\t\t[-67.183938, 18.069914],\n\t\t\t\t\t\t[-67.186465, 18.074195],\n\t\t\t\t\t\t[-67.192999, 18.076877],\n\t\t\t\t\t\t[-67.198212, 18.076828],\n\t\t\t\t\t\t[-67.199314, 18.091135],\n\t\t\t\t\t\t[-67.195290, 18.096149],\n\t\t\t\t\t\t[-67.183921, 18.103683],\n\t\t\t\t\t\t[-67.182182, 18.108507],\n\t\t\t\t\t\t[-67.176554, 18.151046],\n\t\t\t\t\t\t[-67.178618, 18.159318],\n\t\t\t\t\t\t[-67.180822, 18.168055],\n\t\t\t\t\t\t[-67.180701, 18.168182],\n\t\t\t\t\t\t[-67.173015, 18.162471],\n\t\t\t\t\t\t[-67.171331, 18.159301],\n\t\t\t\t\t\t[-67.166165, 18.158382],\n\t\t\t\t\t\t[-67.166722, 18.155500],\n\t\t\t\t\t\t[-67.162200, 18.152484],\n\t\t\t\t\t\t[-67.159733, 18.153227],\n\t\t\t\t\t\t[-67.100492, 18.106395]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72033\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"033\",\n\t\t\t\t\"NAME\": \"Cata�o\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 4.845000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-66.169516, 18.430998],\n\t\t\t\t\t\t[-66.170096, 18.433586],\n\t\t\t\t\t\t[-66.165015, 18.437665],\n\t\t\t\t\t\t[-66.163774, 18.444673],\n\t\t\t\t\t\t[-66.154670, 18.445635],\n\t\t\t\t\t\t[-66.148318, 18.451163],\n\t\t\t\t\t\t[-66.143950, 18.459761],\n\t\t\t\t\t\t[-66.139572, 18.462317],\n\t\t\t\t\t\t[-66.139451, 18.462387],\n\t\t\t\t\t\t[-66.139443, 18.462315],\n\t\t\t\t\t\t[-66.138532, 18.453305],\n\t\t\t\t\t\t[-66.133085, 18.445881],\n\t\t\t\t\t\t[-66.127938, 18.444632],\n\t\t\t\t\t\t[-66.125198, 18.451209],\n\t\t\t\t\t\t[-66.124284, 18.456324],\n\t\t\t\t\t\t[-66.123188, 18.459430],\n\t\t\t\t\t\t[-66.123343, 18.460363],\n\t\t\t\t\t\t[-66.109703, 18.447202],\n\t\t\t\t\t\t[-66.108281, 18.438902],\n\t\t\t\t\t\t[-66.115647, 18.439973],\n\t\t\t\t\t\t[-66.131580, 18.424656],\n\t\t\t\t\t\t[-66.157782, 18.420843],\n\t\t\t\t\t\t[-66.169516, 18.430998]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72037\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"037\",\n\t\t\t\t\"NAME\": \"Ceiba\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 29.035000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-65.582967, 18.246749],\n\t\t\t\t\t\t\t[-65.591954, 18.248653],\n\t\t\t\t\t\t\t[-65.594940, 18.248653],\n\t\t\t\t\t\t\t[-65.595860, 18.247792],\n\t\t\t\t\t\t\t[-65.598153, 18.247595],\n\t\t\t\t\t\t\t[-65.599627, 18.255699],\n\t\t\t\t\t\t\t[-65.584892, 18.256376],\n\t\t\t\t\t\t\t[-65.582967, 18.246749]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-65.634893, 18.283923],\n\t\t\t\t\t\t\t[-65.630833, 18.264989],\n\t\t\t\t\t\t\t[-65.623111, 18.248012],\n\t\t\t\t\t\t\t[-65.597618, 18.234289],\n\t\t\t\t\t\t\t[-65.589947, 18.228225],\n\t\t\t\t\t\t\t[-65.593795, 18.224059],\n\t\t\t\t\t\t\t[-65.615981, 18.227389],\n\t\t\t\t\t\t\t[-65.626731, 18.235484],\n\t\t\t\t\t\t\t[-65.638181, 18.229121],\n\t\t\t\t\t\t\t[-65.637565, 18.224444],\n\t\t\t\t\t\t\t[-65.628414, 18.205149],\n\t\t\t\t\t\t\t[-65.635281, 18.199975],\n\t\t\t\t\t\t\t[-65.639688, 18.205656],\n\t\t\t\t\t\t\t[-65.662185, 18.207018],\n\t\t\t\t\t\t\t[-65.766831, 18.280004],\n\t\t\t\t\t\t\t[-65.761818, 18.289268],\n\t\t\t\t\t\t\t[-65.758861, 18.290604],\n\t\t\t\t\t\t\t[-65.757681, 18.291596],\n\t\t\t\t\t\t\t[-65.757383, 18.293022],\n\t\t\t\t\t\t\t[-65.756027, 18.294456],\n\t\t\t\t\t\t\t[-65.754723, 18.295230],\n\t\t\t\t\t\t\t[-65.753591, 18.296755],\n\t\t\t\t\t\t\t[-65.717510, 18.267744],\n\t\t\t\t\t\t\t[-65.634893, 18.283923]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72047\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"047\",\n\t\t\t\t\"NAME\": \"Corozal\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 42.573000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-66.377712, 18.293976],\n\t\t\t\t\t\t[-66.376090, 18.299733],\n\t\t\t\t\t\t[-66.373312, 18.301937],\n\t\t\t\t\t\t[-66.372457, 18.309835],\n\t\t\t\t\t\t[-66.365272, 18.333229],\n\t\t\t\t\t\t[-66.318764, 18.367411],\n\t\t\t\t\t\t[-66.306194, 18.369688],\n\t\t\t\t\t\t[-66.289035, 18.353719],\n\t\t\t\t\t\t[-66.278076, 18.329975],\n\t\t\t\t\t\t[-66.313299, 18.249324],\n\t\t\t\t\t\t[-66.326297, 18.247884],\n\t\t\t\t\t\t[-66.327034, 18.244191],\n\t\t\t\t\t\t[-66.340121, 18.238689],\n\t\t\t\t\t\t[-66.350793, 18.241235],\n\t\t\t\t\t\t[-66.382452, 18.279242],\n\t\t\t\t\t\t[-66.377712, 18.293976]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72049\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"049\",\n\t\t\t\t\"NAME\": \"Culebra\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 11.624000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-65.280764, 18.288274],\n\t\t\t\t\t\t\t[-65.283269, 18.280214],\n\t\t\t\t\t\t\t[-65.287257, 18.277744],\n\t\t\t\t\t\t\t[-65.300238, 18.294404],\n\t\t\t\t\t\t\t[-65.301690, 18.300126],\n\t\t\t\t\t\t\t[-65.299701, 18.302181],\n\t\t\t\t\t\t\t[-65.296515, 18.302299],\n\t\t\t\t\t\t\t[-65.288941, 18.299977],\n\t\t\t\t\t\t\t[-65.280764, 18.288274]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-65.316371, 18.309660],\n\t\t\t\t\t\t\t[-65.316885, 18.314047],\n\t\t\t\t\t\t\t[-65.322785, 18.321157],\n\t\t\t\t\t\t\t[-65.327318, 18.323666],\n\t\t\t\t\t\t\t[-65.342068, 18.345290],\n\t\t\t\t\t\t\t[-65.335701, 18.349535],\n\t\t\t\t\t\t\t[-65.329334, 18.341955],\n\t\t\t\t\t\t\t[-65.321754, 18.338316],\n\t\t\t\t\t\t\t[-65.309833, 18.337973],\n\t\t\t\t\t\t\t[-65.304409, 18.332054],\n\t\t\t\t\t\t\t[-65.298328, 18.330529],\n\t\t\t\t\t\t\t[-65.281657, 18.329370],\n\t\t\t\t\t\t\t[-65.277319, 18.332582],\n\t\t\t\t\t\t\t[-65.253174, 18.318524],\n\t\t\t\t\t\t\t[-65.245095, 18.309668],\n\t\t\t\t\t\t\t[-65.244424, 18.303493],\n\t\t\t\t\t\t\t[-65.249857, 18.296691],\n\t\t\t\t\t\t\t[-65.260282, 18.290823],\n\t\t\t\t\t\t\t[-65.263937, 18.290685],\n\t\t\t\t\t\t\t[-65.276037, 18.296067],\n\t\t\t\t\t\t\t[-65.277099, 18.298978],\n\t\t\t\t\t\t\t[-65.276007, 18.302613],\n\t\t\t\t\t\t\t[-65.280502, 18.306202],\n\t\t\t\t\t\t\t[-65.302536, 18.310488],\n\t\t\t\t\t\t\t[-65.302160, 18.305379],\n\t\t\t\t\t\t\t[-65.302426, 18.303145],\n\t\t\t\t\t\t\t[-65.307027, 18.301636],\n\t\t\t\t\t\t\t[-65.316371, 18.309660]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-65.327700, 18.295843],\n\t\t\t\t\t\t\t[-65.331398, 18.296110],\n\t\t\t\t\t\t\t[-65.337451, 18.308308],\n\t\t\t\t\t\t\t[-65.330188, 18.315998],\n\t\t\t\t\t\t\t[-65.327821, 18.308970],\n\t\t\t\t\t\t\t[-65.327700, 18.295843]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-65.228485, 18.323013],\n\t\t\t\t\t\t\t[-65.221568, 18.320959],\n\t\t\t\t\t\t\t[-65.221110, 18.311984],\n\t\t\t\t\t\t\t[-65.222853, 18.310464],\n\t\t\t\t\t\t\t[-65.230025, 18.311274],\n\t\t\t\t\t\t\t[-65.231933, 18.320339],\n\t\t\t\t\t\t\t[-65.228485, 18.323013]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-65.266169, 18.341751],\n\t\t\t\t\t\t\t[-65.255933, 18.342117],\n\t\t\t\t\t\t\t[-65.245756, 18.334707],\n\t\t\t\t\t\t\t[-65.247210, 18.333345],\n\t\t\t\t\t\t\t[-65.259612, 18.334147],\n\t\t\t\t\t\t\t[-65.265558, 18.339392],\n\t\t\t\t\t\t\t[-65.266169, 18.341751]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72057\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"057\",\n\t\t\t\t\"NAME\": \"Guayama\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 64.992000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-66.206207, 17.963050],\n\t\t\t\t\t\t[-66.166145, 18.050063],\n\t\t\t\t\t\t[-66.053146, 18.107293],\n\t\t\t\t\t\t[-66.082263, 18.032958],\n\t\t\t\t\t\t[-66.095209, 18.022186],\n\t\t\t\t\t\t[-66.082029, 18.010271],\n\t\t\t\t\t\t[-66.071610, 17.993732],\n\t\t\t\t\t\t[-66.069979, 17.966357],\n\t\t\t\t\t\t[-66.081410, 17.966552],\n\t\t\t\t\t\t[-66.116194, 17.949141],\n\t\t\t\t\t\t[-66.127009, 17.946953],\n\t\t\t\t\t\t[-66.140661, 17.941020],\n\t\t\t\t\t\t[-66.147912, 17.933963],\n\t\t\t\t\t\t[-66.155387, 17.929406],\n\t\t\t\t\t\t[-66.159742, 17.928613],\n\t\t\t\t\t\t[-66.161232, 17.931747],\n\t\t\t\t\t\t[-66.175626, 17.933565],\n\t\t\t\t\t\t[-66.186914, 17.935363],\n\t\t\t\t\t\t[-66.189726, 17.933936],\n\t\t\t\t\t\t[-66.200174, 17.929515],\n\t\t\t\t\t\t[-66.206961, 17.932268],\n\t\t\t\t\t\t[-66.213374, 17.944614],\n\t\t\t\t\t\t[-66.202655, 17.944753],\n\t\t\t\t\t\t[-66.185554, 17.940997],\n\t\t\t\t\t\t[-66.179548, 17.943727],\n\t\t\t\t\t\t[-66.174839, 17.948214],\n\t\t\t\t\t\t[-66.176814, 17.950438],\n\t\t\t\t\t\t[-66.206207, 17.963050]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72065\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"065\",\n\t\t\t\t\"NAME\": \"Hatillo\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 41.781000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-66.764893, 18.484097],\n\t\t\t\t\t\t[-66.768129, 18.477654],\n\t\t\t\t\t\t[-66.770072, 18.325013],\n\t\t\t\t\t\t[-66.770458, 18.320614],\n\t\t\t\t\t\t[-66.826128, 18.323382],\n\t\t\t\t\t\t[-66.825428, 18.327709],\n\t\t\t\t\t\t[-66.824852, 18.333114],\n\t\t\t\t\t\t[-66.824794, 18.337546],\n\t\t\t\t\t\t[-66.824223, 18.342998],\n\t\t\t\t\t\t[-66.836635, 18.487701],\n\t\t\t\t\t\t[-66.799320, 18.492775],\n\t\t\t\t\t\t[-66.780311, 18.491411],\n\t\t\t\t\t\t[-66.764893, 18.484097]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US53007\",\n\t\t\t\t\"STATE\": \"53\",\n\t\t\t\t\"COUNTY\": \"007\",\n\t\t\t\t\"NAME\": \"Chelan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2920.525000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-121.119010, 47.779933],\n\t\t\t\t\t\t[-121.070710, 47.826034],\n\t\t\t\t\t\t[-121.180213, 47.897132],\n\t\t\t\t\t\t[-121.118059, 47.997660],\n\t\t\t\t\t\t[-121.153501, 48.040871],\n\t\t\t\t\t\t[-121.015412, 48.075141],\n\t\t\t\t\t\t[-120.906411, 48.163348],\n\t\t\t\t\t\t[-121.001409, 48.295548],\n\t\t\t\t\t\t[-121.069941, 48.316539],\n\t\t\t\t\t\t[-121.035823, 48.494749],\n\t\t\t\t\t\t[-120.824008, 48.545153],\n\t\t\t\t\t\t[-120.701557, 48.531620],\n\t\t\t\t\t\t[-120.651747, 48.536585],\n\t\t\t\t\t\t[-120.650211, 48.397559],\n\t\t\t\t\t\t[-120.559708, 48.360661],\n\t\t\t\t\t\t[-120.391901, 48.242963],\n\t\t\t\t\t\t[-120.362500, 48.168761],\n\t\t\t\t\t\t[-120.213493, 48.079061],\n\t\t\t\t\t\t[-120.143290, 48.065061],\n\t\t\t\t\t\t[-120.066621, 47.966378],\n\t\t\t\t\t\t[-119.870307, 47.960328],\n\t\t\t\t\t\t[-119.994952, 47.781353],\n\t\t\t\t\t\t[-120.130914, 47.776601],\n\t\t\t\t\t\t[-120.209395, 47.748356],\n\t\t\t\t\t\t[-120.199048, 47.682276],\n\t\t\t\t\t\t[-120.233584, 47.597630],\n\t\t\t\t\t\t[-120.292814, 47.538172],\n\t\t\t\t\t\t[-120.318084, 47.457748],\n\t\t\t\t\t\t[-120.286530, 47.393111],\n\t\t\t\t\t\t[-120.129573, 47.366251],\n\t\t\t\t\t\t[-120.083274, 47.333690],\n\t\t\t\t\t\t[-120.094470, 47.262151],\n\t\t\t\t\t\t[-120.388978, 47.260889],\n\t\t\t\t\t\t[-120.525137, 47.333239],\n\t\t\t\t\t\t[-120.916098, 47.428540],\n\t\t\t\t\t\t[-121.113606, 47.597135],\n\t\t\t\t\t\t[-121.068409, 47.706234],\n\t\t\t\t\t\t[-121.119010, 47.779933]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72087\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"087\",\n\t\t\t\t\"NAME\": \"Lo�za\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 19.366000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-65.992793, 18.458102],\n\t\t\t\t\t\t[-65.992349, 18.460024],\n\t\t\t\t\t\t[-65.990790, 18.460419],\n\t\t\t\t\t\t[-65.958492, 18.451354],\n\t\t\t\t\t\t[-65.925670, 18.444881],\n\t\t\t\t\t\t[-65.916843, 18.444619],\n\t\t\t\t\t\t[-65.907756, 18.446893],\n\t\t\t\t\t\t[-65.904988, 18.450926],\n\t\t\t\t\t\t[-65.878683, 18.438322],\n\t\t\t\t\t\t[-65.838825, 18.431865],\n\t\t\t\t\t\t[-65.831476, 18.426849],\n\t\t\t\t\t\t[-65.828457, 18.423543],\n\t\t\t\t\t\t[-65.832623, 18.420692],\n\t\t\t\t\t\t[-65.843816, 18.405700],\n\t\t\t\t\t\t[-65.852538, 18.401700],\n\t\t\t\t\t\t[-65.855633, 18.395752],\n\t\t\t\t\t\t[-65.859635, 18.381868],\n\t\t\t\t\t\t[-65.867478, 18.378128],\n\t\t\t\t\t\t[-65.919278, 18.402993],\n\t\t\t\t\t\t[-65.992793, 18.458102]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72091\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"091\",\n\t\t\t\t\"NAME\": \"Manat�\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 45.128000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-66.463211, 18.371473],\n\t\t\t\t\t\t[-66.473346, 18.367604],\n\t\t\t\t\t\t[-66.494806, 18.366445],\n\t\t\t\t\t\t[-66.511776, 18.362003],\n\t\t\t\t\t\t[-66.528304, 18.350564],\n\t\t\t\t\t\t[-66.533623, 18.351333],\n\t\t\t\t\t\t[-66.531299, 18.382165],\n\t\t\t\t\t\t[-66.543079, 18.405422],\n\t\t\t\t\t\t[-66.533487, 18.481663],\n\t\t\t\t\t\t[-66.529476, 18.482877],\n\t\t\t\t\t\t[-66.511609, 18.476848],\n\t\t\t\t\t\t[-66.470292, 18.469070],\n\t\t\t\t\t\t[-66.456486, 18.468920],\n\t\t\t\t\t\t[-66.449184, 18.470991],\n\t\t\t\t\t\t[-66.441852, 18.479751],\n\t\t\t\t\t\t[-66.439961, 18.485525],\n\t\t\t\t\t\t[-66.438813, 18.485713],\n\t\t\t\t\t\t[-66.443800, 18.371027],\n\t\t\t\t\t\t[-66.451578, 18.372214],\n\t\t\t\t\t\t[-66.459029, 18.371249],\n\t\t\t\t\t\t[-66.463211, 18.371473]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72097\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"097\",\n\t\t\t\t\"NAME\": \"Mayag�ez\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 77.645000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-67.187873, 18.266874],\n\t\t\t\t\t\t\t[-67.082002, 18.254946],\n\t\t\t\t\t\t\t[-67.019836, 18.195471],\n\t\t\t\t\t\t\t[-67.024372, 18.184668],\n\t\t\t\t\t\t\t[-67.034521, 18.185519],\n\t\t\t\t\t\t\t[-67.051461, 18.174053],\n\t\t\t\t\t\t\t[-67.072183, 18.173053],\n\t\t\t\t\t\t\t[-67.085920, 18.162400],\n\t\t\t\t\t\t\t[-67.086698, 18.151990],\n\t\t\t\t\t\t\t[-67.159733, 18.153227],\n\t\t\t\t\t\t\t[-67.162200, 18.152484],\n\t\t\t\t\t\t\t[-67.166722, 18.155500],\n\t\t\t\t\t\t\t[-67.166165, 18.158382],\n\t\t\t\t\t\t\t[-67.171331, 18.159301],\n\t\t\t\t\t\t\t[-67.173015, 18.162471],\n\t\t\t\t\t\t\t[-67.180701, 18.168182],\n\t\t\t\t\t\t\t[-67.155185, 18.195001],\n\t\t\t\t\t\t\t[-67.152665, 18.203493],\n\t\t\t\t\t\t\t[-67.158001, 18.216719],\n\t\t\t\t\t\t\t[-67.173000, 18.230666],\n\t\t\t\t\t\t\t[-67.175429, 18.248008],\n\t\t\t\t\t\t\t[-67.187843, 18.266671],\n\t\t\t\t\t\t\t[-67.187873, 18.266874]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-67.891740, 18.113970],\n\t\t\t\t\t\t\t[-67.887099, 18.112574],\n\t\t\t\t\t\t\t[-67.876430, 18.114157],\n\t\t\t\t\t\t\t[-67.869804, 18.118851],\n\t\t\t\t\t\t\t[-67.861548, 18.122144],\n\t\t\t\t\t\t\t[-67.848245, 18.108320],\n\t\t\t\t\t\t\t[-67.843202, 18.094858],\n\t\t\t\t\t\t\t[-67.843615, 18.085099],\n\t\t\t\t\t\t\t[-67.845293, 18.081938],\n\t\t\t\t\t\t\t[-67.853098, 18.078195],\n\t\t\t\t\t\t\t[-67.865598, 18.065440],\n\t\t\t\t\t\t\t[-67.871462, 18.057800],\n\t\t\t\t\t\t\t[-67.895921, 18.052342],\n\t\t\t\t\t\t\t[-67.904431, 18.059130],\n\t\t\t\t\t\t\t[-67.918778, 18.063116],\n\t\t\t\t\t\t\t[-67.927841, 18.068572],\n\t\t\t\t\t\t\t[-67.940799, 18.079716],\n\t\t\t\t\t\t\t[-67.934479, 18.111306],\n\t\t\t\t\t\t\t[-67.932185, 18.113221],\n\t\t\t\t\t\t\t[-67.910880, 18.119668],\n\t\t\t\t\t\t\t[-67.891740, 18.113970]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-67.950099, 18.154235],\n\t\t\t\t\t\t\t[-67.954119, 18.154576],\n\t\t\t\t\t\t\t[-67.952974, 18.157663],\n\t\t\t\t\t\t\t[-67.949873, 18.157015],\n\t\t\t\t\t\t\t[-67.950099, 18.154235]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-67.477976, 18.378945],\n\t\t\t\t\t\t\t[-67.485499, 18.382224],\n\t\t\t\t\t\t\t[-67.489346, 18.387441],\n\t\t\t\t\t\t\t[-67.482204, 18.391470],\n\t\t\t\t\t\t\t[-67.477922, 18.390544],\n\t\t\t\t\t\t\t[-67.472368, 18.382801],\n\t\t\t\t\t\t\t[-67.477976, 18.378945]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72107\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"107\",\n\t\t\t\t\"NAME\": \"Orocovis\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 63.620000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-66.377712, 18.293976],\n\t\t\t\t\t\t[-66.382452, 18.279242],\n\t\t\t\t\t\t[-66.350793, 18.241235],\n\t\t\t\t\t\t[-66.373768, 18.173694],\n\t\t\t\t\t\t[-66.413686, 18.163337],\n\t\t\t\t\t\t[-66.420902, 18.166316],\n\t\t\t\t\t\t[-66.423649, 18.172025],\n\t\t\t\t\t\t[-66.427994, 18.170935],\n\t\t\t\t\t\t[-66.436075, 18.175501],\n\t\t\t\t\t\t[-66.444560, 18.176674],\n\t\t\t\t\t\t[-66.521899, 18.151954],\n\t\t\t\t\t\t[-66.534862, 18.152293],\n\t\t\t\t\t\t[-66.544281, 18.147619],\n\t\t\t\t\t\t[-66.547220, 18.153130],\n\t\t\t\t\t\t[-66.546835, 18.155019],\n\t\t\t\t\t\t[-66.544152, 18.158328],\n\t\t\t\t\t\t[-66.544836, 18.160262],\n\t\t\t\t\t\t[-66.543211, 18.161577],\n\t\t\t\t\t\t[-66.543133, 18.163098],\n\t\t\t\t\t\t[-66.500762, 18.256011],\n\t\t\t\t\t\t[-66.455703, 18.257726],\n\t\t\t\t\t\t[-66.377712, 18.293976]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72113\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"113\",\n\t\t\t\t\"NAME\": \"Ponce\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 114.762000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-66.699115, 17.977568],\n\t\t\t\t\t\t\t[-66.694070, 18.130534],\n\t\t\t\t\t\t\t[-66.676951, 18.129977],\n\t\t\t\t\t\t\t[-66.670494, 18.152831],\n\t\t\t\t\t\t\t[-66.669569, 18.152267],\n\t\t\t\t\t\t\t[-66.664230, 18.153584],\n\t\t\t\t\t\t\t[-66.662885, 18.155415],\n\t\t\t\t\t\t\t[-66.660323, 18.156855],\n\t\t\t\t\t\t\t[-66.656750, 18.156597],\n\t\t\t\t\t\t\t[-66.653538, 18.159068],\n\t\t\t\t\t\t\t[-66.650628, 18.158501],\n\t\t\t\t\t\t\t[-66.649467, 18.158857],\n\t\t\t\t\t\t\t[-66.552766, 18.152057],\n\t\t\t\t\t\t\t[-66.540537, 17.975476],\n\t\t\t\t\t\t\t[-66.583233, 17.961229],\n\t\t\t\t\t\t\t[-66.589658, 17.969386],\n\t\t\t\t\t\t\t[-66.594392, 17.970682],\n\t\t\t\t\t\t\t[-66.605035, 17.969015],\n\t\t\t\t\t\t\t[-66.623788, 17.981050],\n\t\t\t\t\t\t\t[-66.631944, 17.982746],\n\t\t\t\t\t\t\t[-66.645651, 17.980260],\n\t\t\t\t\t\t\t[-66.657797, 17.974605],\n\t\t\t\t\t\t\t[-66.664391, 17.968259],\n\t\t\t\t\t\t\t[-66.672819, 17.966451],\n\t\t\t\t\t\t\t[-66.699115, 17.977568]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-66.523478, 17.896176],\n\t\t\t\t\t\t\t[-66.513454, 17.902857],\n\t\t\t\t\t\t\t[-66.509783, 17.900466],\n\t\t\t\t\t\t\t[-66.509525, 17.898552],\n\t\t\t\t\t\t\t[-66.515349, 17.892700],\n\t\t\t\t\t\t\t[-66.528572, 17.884813],\n\t\t\t\t\t\t\t[-66.526072, 17.892937],\n\t\t\t\t\t\t\t[-66.523478, 17.896176]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72121\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"121\",\n\t\t\t\t\"NAME\": \"Sabana Grande\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 35.833000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-66.958748, 18.032477],\n\t\t\t\t\t\t[-66.960370, 18.036519],\n\t\t\t\t\t\t[-66.982675, 18.041202],\n\t\t\t\t\t\t[-66.983337, 18.052518],\n\t\t\t\t\t\t[-66.977855, 18.143799],\n\t\t\t\t\t\t[-66.975540, 18.143395],\n\t\t\t\t\t\t[-66.971866, 18.141540],\n\t\t\t\t\t\t[-66.963939, 18.148212],\n\t\t\t\t\t\t[-66.960424, 18.145907],\n\t\t\t\t\t\t[-66.952093, 18.146112],\n\t\t\t\t\t\t[-66.943554, 18.148979],\n\t\t\t\t\t\t[-66.939065, 18.147855],\n\t\t\t\t\t\t[-66.926517, 18.151267],\n\t\t\t\t\t\t[-66.884653, 18.024816],\n\t\t\t\t\t\t[-66.895027, 18.023247],\n\t\t\t\t\t\t[-66.905108, 18.026523],\n\t\t\t\t\t\t[-66.910887, 18.023883],\n\t\t\t\t\t\t[-66.919535, 18.027692],\n\t\t\t\t\t\t[-66.924206, 18.027377],\n\t\t\t\t\t\t[-66.930811, 18.030583],\n\t\t\t\t\t\t[-66.935902, 18.029324],\n\t\t\t\t\t\t[-66.947158, 18.033439],\n\t\t\t\t\t\t[-66.958748, 18.032477]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72127\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"127\",\n\t\t\t\t\"NAME\": \"San Juan\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 47.847000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-66.036559, 18.450216],\n\t\t\t\t\t\t[-65.999556, 18.380065],\n\t\t\t\t\t\t[-66.041535, 18.312344],\n\t\t\t\t\t\t[-66.047827, 18.306885],\n\t\t\t\t\t\t[-66.045336, 18.299418],\n\t\t\t\t\t\t[-66.052729, 18.303647],\n\t\t\t\t\t\t[-66.066103, 18.303321],\n\t\t\t\t\t\t[-66.072824, 18.297841],\n\t\t\t\t\t\t[-66.080475, 18.297295],\n\t\t\t\t\t\t[-66.108281, 18.438902],\n\t\t\t\t\t\t[-66.109703, 18.447202],\n\t\t\t\t\t\t[-66.123343, 18.460363],\n\t\t\t\t\t\t[-66.125015, 18.470435],\n\t\t\t\t\t\t[-66.118338, 18.469581],\n\t\t\t\t\t\t[-66.092098, 18.466535],\n\t\t\t\t\t\t[-66.083254, 18.462022],\n\t\t\t\t\t\t[-66.073987, 18.458100],\n\t\t\t\t\t\t[-66.043272, 18.453655],\n\t\t\t\t\t\t[-66.039440, 18.454441],\n\t\t\t\t\t\t[-66.036559, 18.450216]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72133\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"133\",\n\t\t\t\t\"NAME\": \"Santa Isabel\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 34.023000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-66.331244, 18.015891],\n\t\t\t\t\t\t[-66.342515, 17.993786],\n\t\t\t\t\t\t[-66.338152, 17.976492],\n\t\t\t\t\t\t[-66.338390, 17.976458],\n\t\t\t\t\t\t[-66.362511, 17.968231],\n\t\t\t\t\t\t[-66.365098, 17.964832],\n\t\t\t\t\t\t[-66.368777, 17.957717],\n\t\t\t\t\t\t[-66.371591, 17.951469],\n\t\t\t\t\t\t[-66.385059, 17.939004],\n\t\t\t\t\t\t[-66.391227, 17.945819],\n\t\t\t\t\t\t[-66.398945, 17.950925],\n\t\t\t\t\t\t[-66.412131, 17.957286],\n\t\t\t\t\t\t[-66.445481, 17.979379],\n\t\t\t\t\t\t[-66.450368, 17.983226],\n\t\t\t\t\t\t[-66.426989, 18.042627],\n\t\t\t\t\t\t[-66.331244, 18.015891]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72141\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"141\",\n\t\t\t\t\"NAME\": \"Utuado\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 113.529000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-66.670494, 18.152831],\n\t\t\t\t\t\t[-66.693730, 18.216891],\n\t\t\t\t\t\t[-66.817271, 18.230336],\n\t\t\t\t\t\t[-66.826128, 18.323382],\n\t\t\t\t\t\t[-66.770458, 18.320614],\n\t\t\t\t\t\t[-66.770072, 18.325013],\n\t\t\t\t\t\t[-66.606989, 18.328186],\n\t\t\t\t\t\t[-66.604552, 18.321306],\n\t\t\t\t\t\t[-66.585269, 18.322689],\n\t\t\t\t\t\t[-66.566620, 18.298549],\n\t\t\t\t\t\t[-66.649467, 18.158857],\n\t\t\t\t\t\t[-66.650628, 18.158501],\n\t\t\t\t\t\t[-66.653538, 18.159068],\n\t\t\t\t\t\t[-66.656750, 18.156597],\n\t\t\t\t\t\t[-66.660323, 18.156855],\n\t\t\t\t\t\t[-66.662885, 18.155415],\n\t\t\t\t\t\t[-66.664230, 18.153584],\n\t\t\t\t\t\t[-66.669569, 18.152267],\n\t\t\t\t\t\t[-66.670494, 18.152831]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48117\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"117\",\n\t\t\t\t\"NAME\": \"Deaf Smith\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1496.868000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-103.042520, 35.135596],\n\t\t\t\t\t\t[-103.042600, 35.142766],\n\t\t\t\t\t\t[-103.042711, 35.144735],\n\t\t\t\t\t\t[-103.042568, 35.159318],\n\t\t\t\t\t\t[-103.042395, 35.178573],\n\t\t\t\t\t\t[-103.042339, 35.181922],\n\t\t\t\t\t\t[-103.042366, 35.182786],\n\t\t\t\t\t\t[-103.042377, 35.183149],\n\t\t\t\t\t\t[-103.042377, 35.183156],\n\t\t\t\t\t\t[-102.167471, 35.183233],\n\t\t\t\t\t\t[-102.168839, 34.747417],\n\t\t\t\t\t\t[-102.525184, 34.746931],\n\t\t\t\t\t\t[-103.042769, 34.747361],\n\t\t\t\t\t\t[-103.042770, 34.792224],\n\t\t\t\t\t\t[-103.042781, 34.850243],\n\t\t\t\t\t\t[-103.042521, 34.899546],\n\t\t\t\t\t\t[-103.042521, 34.954101],\n\t\t\t\t\t\t[-103.042520, 35.135596]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48261\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"261\",\n\t\t\t\t\"NAME\": \"Kenedy\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1458.329000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-97.372861, 27.278069],\n\t\t\t\t\t\t\t[-97.347438, 27.277963],\n\t\t\t\t\t\t\t[-97.350398, 27.268105],\n\t\t\t\t\t\t\t[-97.363401, 27.210366],\n\t\t\t\t\t\t\t[-97.370941, 27.161166],\n\t\t\t\t\t\t\t[-97.377001, 27.101021],\n\t\t\t\t\t\t\t[-97.379130, 27.047996],\n\t\t\t\t\t\t\t[-97.378362, 26.992877],\n\t\t\t\t\t\t\t[-97.370731, 26.909706],\n\t\t\t\t\t\t\t[-97.364726, 26.871693],\n\t\t\t\t\t\t\t[-97.351413, 26.808604],\n\t\t\t\t\t\t\t[-97.333028, 26.736479],\n\t\t\t\t\t\t\t[-97.300690, 26.635375],\n\t\t\t\t\t\t\t[-97.287885, 26.600341],\n\t\t\t\t\t\t\t[-97.275119, 26.565415],\n\t\t\t\t\t\t\t[-97.269392, 26.554046],\n\t\t\t\t\t\t\t[-97.229844, 26.433569],\n\t\t\t\t\t\t\t[-97.223728, 26.411492],\n\t\t\t\t\t\t\t[-97.194644, 26.306513],\n\t\t\t\t\t\t\t[-97.185844, 26.267103],\n\t\t\t\t\t\t\t[-97.173265, 26.192314],\n\t\t\t\t\t\t\t[-97.161471, 26.088705],\n\t\t\t\t\t\t\t[-97.154271, 26.066841],\n\t\t\t\t\t\t\t[-97.161462, 26.067640],\n\t\t\t\t\t\t\t[-97.169842, 26.077853],\n\t\t\t\t\t\t\t[-97.171781, 26.102522],\n\t\t\t\t\t\t\t[-97.179532, 26.146202],\n\t\t\t\t\t\t\t[-97.178746, 26.177103],\n\t\t\t\t\t\t\t[-97.183983, 26.214289],\n\t\t\t\t\t\t\t[-97.194458, 26.271640],\n\t\t\t\t\t\t\t[-97.214885, 26.353606],\n\t\t\t\t\t\t\t[-97.226931, 26.385555],\n\t\t\t\t\t\t\t[-97.240286, 26.405981],\n\t\t\t\t\t\t\t[-97.240849, 26.411504],\n\t\t\t\t\t\t\t[-97.243167, 26.434263],\n\t\t\t\t\t\t\t[-97.247619, 26.456261],\n\t\t\t\t\t\t\t[-97.254166, 26.471188],\n\t\t\t\t\t\t\t[-97.262546, 26.482972],\n\t\t\t\t\t\t\t[-97.276425, 26.521729],\n\t\t\t\t\t\t\t[-97.292399, 26.528014],\n\t\t\t\t\t\t\t[-97.310730, 26.556558],\n\t\t\t\t\t\t\t[-97.308112, 26.571223],\n\t\t\t\t\t\t\t[-97.308635, 26.576723],\n\t\t\t\t\t\t\t[-97.317015, 26.597673],\n\t\t\t\t\t\t\t[-97.318458, 26.600270],\n\t\t\t\t\t\t\t[-97.324872, 26.611814],\n\t\t\t\t\t\t\t[-97.338489, 26.647429],\n\t\t\t\t\t\t\t[-97.336394, 26.666022],\n\t\t\t\t\t\t\t[-97.345822, 26.700589],\n\t\t\t\t\t\t\t[-97.363105, 26.710540],\n\t\t\t\t\t\t\t[-97.370438, 26.723896],\n\t\t\t\t\t\t\t[-97.370961, 26.736204],\n\t\t\t\t\t\t\t[-97.367557, 26.740394],\n\t\t\t\t\t\t\t[-97.364153, 26.758987],\n\t\t\t\t\t\t\t[-97.364646, 26.767122],\n\t\t\t\t\t\t\t[-97.368866, 26.774699],\n\t\t\t\t\t\t\t[-97.370438, 26.781508],\n\t\t\t\t\t\t\t[-97.368343, 26.795649],\n\t\t\t\t\t\t\t[-97.373056, 26.808481],\n\t\t\t\t\t\t\t[-97.387459, 26.820789],\n\t\t\t\t\t\t\t[-97.383531, 26.875521],\n\t\t\t\t\t\t\t[-97.385626, 26.888876],\n\t\t\t\t\t\t\t[-97.391649, 26.901970],\n\t\t\t\t\t\t\t[-97.389554, 26.945965],\n\t\t\t\t\t\t\t[-97.390340, 27.052286],\n\t\t\t\t\t\t\t[-97.389816, 27.067213],\n\t\t\t\t\t\t\t[-97.386412, 27.083187],\n\t\t\t\t\t\t\t[-97.387459, 27.090519],\n\t\t\t\t\t\t\t[-97.390602, 27.094186],\n\t\t\t\t\t\t\t[-97.390078, 27.156512],\n\t\t\t\t\t\t\t[-97.377508, 27.199459],\n\t\t\t\t\t\t\t[-97.379865, 27.202863],\n\t\t\t\t\t\t\t[-97.386674, 27.204696],\n\t\t\t\t\t\t\t[-97.382222, 27.229051],\n\t\t\t\t\t\t\t[-97.374890, 27.250262],\n\t\t\t\t\t\t\t[-97.373318, 27.276450],\n\t\t\t\t\t\t\t[-97.372861, 27.278069]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-97.636680, 27.281727],\n\t\t\t\t\t\t\t[-97.640111, 27.270943],\n\t\t\t\t\t\t\t[-97.639094, 27.253131],\n\t\t\t\t\t\t\t[-97.635022, 27.247024],\n\t\t\t\t\t\t\t[-97.628916, 27.242953],\n\t\t\t\t\t\t\t[-97.597363, 27.242444],\n\t\t\t\t\t\t\t[-97.582605, 27.240409],\n\t\t\t\t\t\t\t[-97.573953, 27.238882],\n\t\t\t\t\t\t\t[-97.561231, 27.232775],\n\t\t\t\t\t\t\t[-97.542910, 27.229213],\n\t\t\t\t\t\t\t[-97.520009, 27.231248],\n\t\t\t\t\t\t\t[-97.509831, 27.235320],\n\t\t\t\t\t\t\t[-97.503215, 27.239900],\n\t\t\t\t\t\t\t[-97.500162, 27.244480],\n\t\t\t\t\t\t\t[-97.485149, 27.250841],\n\t\t\t\t\t\t\t[-97.467083, 27.253640],\n\t\t\t\t\t\t\t[-97.458431, 27.259493],\n\t\t\t\t\t\t\t[-97.450289, 27.262546],\n\t\t\t\t\t\t\t[-97.424080, 27.264073],\n\t\t\t\t\t\t\t[-97.422299, 27.257712],\n\t\t\t\t\t\t\t[-97.434767, 27.202241],\n\t\t\t\t\t\t\t[-97.444945, 27.144734],\n\t\t\t\t\t\t\t[-97.443673, 27.116235],\n\t\t\t\t\t\t\t[-97.452324, 27.115217],\n\t\t\t\t\t\t\t[-97.455887, 27.110383],\n\t\t\t\t\t\t\t[-97.456650, 27.099695],\n\t\t\t\t\t\t\t[-97.461739, 27.095624],\n\t\t\t\t\t\t\t[-97.475480, 27.098423],\n\t\t\t\t\t\t\t[-97.480569, 27.102494],\n\t\t\t\t\t\t\t[-97.491510, 27.101222],\n\t\t\t\t\t\t\t[-97.495836, 27.094098],\n\t\t\t\t\t\t\t[-97.493291, 27.078067],\n\t\t\t\t\t\t\t[-97.477515, 27.066108],\n\t\t\t\t\t\t\t[-97.479042, 27.062800],\n\t\t\t\t\t\t\t[-97.482257, 27.061942],\n\t\t\t\t\t\t\t[-97.486930, 27.057711],\n\t\t\t\t\t\t\t[-97.487693, 27.053639],\n\t\t\t\t\t\t\t[-97.486676, 27.034810],\n\t\t\t\t\t\t\t[-97.477515, 27.032520],\n\t\t\t\t\t\t\t[-97.473953, 27.029212],\n\t\t\t\t\t\t\t[-97.473444, 27.022850],\n\t\t\t\t\t\t\t[-97.478533, 26.999186],\n\t\t\t\t\t\t\t[-97.480569, 26.997659],\n\t\t\t\t\t\t\t[-97.484131, 27.000458],\n\t\t\t\t\t\t\t[-97.536803, 26.999695],\n\t\t\t\t\t\t\t[-97.549271, 26.995878],\n\t\t\t\t\t\t\t[-97.555378, 26.990280],\n\t\t\t\t\t\t\t[-97.551053, 26.980865],\n\t\t\t\t\t\t\t[-97.549526, 26.965344],\n\t\t\t\t\t\t\t[-97.552325, 26.952112],\n\t\t\t\t\t\t\t[-97.555378, 26.947277],\n\t\t\t\t\t\t\t[-97.555378, 26.938880],\n\t\t\t\t\t\t\t[-97.540874, 26.906310],\n\t\t\t\t\t\t\t[-97.540111, 26.900967],\n\t\t\t\t\t\t\t[-97.547999, 26.895114],\n\t\t\t\t\t\t\t[-97.552325, 26.888499],\n\t\t\t\t\t\t\t[-97.552325, 26.867633],\n\t\t\t\t\t\t\t[-97.558432, 26.864325],\n\t\t\t\t\t\t\t[-97.563266, 26.842188],\n\t\t\t\t\t\t\t[-97.552579, 26.827938],\n\t\t\t\t\t\t\t[-97.547745, 26.824631],\n\t\t\t\t\t\t\t[-97.537566, 26.824885],\n\t\t\t\t\t\t\t[-97.509831, 26.803511],\n\t\t\t\t\t\t\t[-97.484385, 26.763562],\n\t\t\t\t\t\t\t[-97.478024, 26.757200],\n\t\t\t\t\t\t\t[-97.471663, 26.758727],\n\t\t\t\t\t\t\t[-97.468609, 26.740915],\n\t\t\t\t\t\t\t[-97.467337, 26.710126],\n\t\t\t\t\t\t\t[-97.444945, 26.633535],\n\t\t\t\t\t\t\t[-97.445708, 26.609362],\n\t\t\t\t\t\t\t[-97.441206, 26.599901],\n\t\t\t\t\t\t\t[-97.861688, 26.597995],\n\t\t\t\t\t\t\t[-97.957405, 26.611769],\n\t\t\t\t\t\t\t[-97.985303, 26.615809],\n\t\t\t\t\t\t\t[-97.985494, 26.780917],\n\t\t\t\t\t\t\t[-97.985887, 27.209308],\n\t\t\t\t\t\t\t[-97.951904, 27.233249],\n\t\t\t\t\t\t\t[-97.636680, 27.281727]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48135\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"135\",\n\t\t\t\t\"NAME\": \"Ector\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 897.687000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-102.799086, 32.085795],\n\t\t\t\t\t\t[-102.287048, 32.086991],\n\t\t\t\t\t\t[-102.287345, 31.651276],\n\t\t\t\t\t\t[-102.288782, 31.651370],\n\t\t\t\t\t\t[-102.318050, 31.651327],\n\t\t\t\t\t\t[-102.767246, 31.651714],\n\t\t\t\t\t\t[-102.798939, 31.651783],\n\t\t\t\t\t\t[-102.799086, 32.085795]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48141\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"141\",\n\t\t\t\t\"NAME\": \"El Paso\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1012.693000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-106.206018, 31.466648],\n\t\t\t\t\t\t[-106.207524, 31.467872],\n\t\t\t\t\t\t[-106.209200, 31.469234],\n\t\t\t\t\t\t[-106.212918, 31.473409],\n\t\t\t\t\t\t[-106.218538, 31.479720],\n\t\t\t\t\t\t[-106.254062, 31.547512],\n\t\t\t\t\t\t[-106.356938, 31.702210],\n\t\t\t\t\t\t[-106.381039, 31.732110],\n\t\t\t\t\t\t[-106.417940, 31.752009],\n\t\t\t\t\t\t[-106.436743, 31.756872],\n\t\t\t\t\t\t[-106.472514, 31.751802],\n\t\t\t\t\t\t[-106.528543, 31.783907],\n\t\t\t\t\t\t[-106.528543, 31.784407],\n\t\t\t\t\t\t[-106.527997, 31.786945],\n\t\t\t\t\t\t[-106.527623, 31.789119],\n\t\t\t\t\t\t[-106.527738, 31.789761],\n\t\t\t\t\t\t[-106.527943, 31.790507],\n\t\t\t\t\t\t[-106.530515, 31.792103],\n\t\t\t\t\t\t[-106.532480, 31.791914],\n\t\t\t\t\t\t[-106.533000, 31.791829],\n\t\t\t\t\t\t[-106.533043, 31.791907],\n\t\t\t\t\t\t[-106.534743, 31.796107],\n\t\t\t\t\t\t[-106.535154, 31.797089],\n\t\t\t\t\t\t[-106.535343, 31.797507],\n\t\t\t\t\t\t[-106.535843, 31.798607],\n\t\t\t\t\t\t[-106.542097, 31.802146],\n\t\t\t\t\t\t[-106.542144, 31.802107],\n\t\t\t\t\t\t[-106.544714, 31.804287],\n\t\t\t\t\t\t[-106.545344, 31.805007],\n\t\t\t\t\t\t[-106.563444, 31.812606],\n\t\t\t\t\t\t[-106.566844, 31.813306],\n\t\t\t\t\t\t[-106.605245, 31.845905],\n\t\t\t\t\t\t[-106.605845, 31.846305],\n\t\t\t\t\t\t[-106.614637, 31.846490],\n\t\t\t\t\t\t[-106.621857, 31.852854],\n\t\t\t\t\t\t[-106.625763, 31.856276],\n\t\t\t\t\t\t[-106.627808, 31.860593],\n\t\t\t\t\t\t[-106.616136, 31.948439],\n\t\t\t\t\t\t[-106.614702, 31.956000],\n\t\t\t\t\t\t[-106.599096, 32.000731],\n\t\t\t\t\t\t[-106.598639, 32.000754],\n\t\t\t\t\t\t[-106.595333, 32.000778],\n\t\t\t\t\t\t[-106.587972, 32.000749],\n\t\t\t\t\t\t[-106.566056, 32.000759],\n\t\t\t\t\t\t[-106.565142, 32.000736],\n\t\t\t\t\t\t[-106.411075, 32.001334],\n\t\t\t\t\t\t[-106.394298, 32.001484],\n\t\t\t\t\t\t[-106.377174, 32.001490],\n\t\t\t\t\t\t[-106.313307, 32.001512],\n\t\t\t\t\t\t[-106.205915, 32.001762],\n\t\t\t\t\t\t[-106.200699, 32.001785],\n\t\t\t\t\t\t[-106.181840, 32.002050],\n\t\t\t\t\t\t[-106.099760, 32.002174],\n\t\t\t\t\t\t[-105.998003, 32.002328],\n\t\t\t\t\t\t[-105.997658, 31.386489],\n\t\t\t\t\t\t[-106.006930, 31.392826],\n\t\t\t\t\t\t[-106.099393, 31.414760],\n\t\t\t\t\t\t[-106.132782, 31.425367],\n\t\t\t\t\t\t[-106.202851, 31.464073],\n\t\t\t\t\t\t[-106.206018, 31.466648]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48155\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"155\",\n\t\t\t\t\"NAME\": \"Foard\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 704.397000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.475294, 34.085618],\n\t\t\t\t\t\t[-99.475650, 33.834005],\n\t\t\t\t\t\t[-99.474498, 33.733849],\n\t\t\t\t\t\t[-99.599863, 33.787634],\n\t\t\t\t\t\t[-99.835143, 33.835800],\n\t\t\t\t\t\t[-99.996434, 33.835967],\n\t\t\t\t\t\t[-100.048480, 33.835974],\n\t\t\t\t\t\t[-100.047028, 34.229780],\n\t\t\t\t\t\t[-99.997621, 34.224355],\n\t\t\t\t\t\t[-99.772043, 34.093286],\n\t\t\t\t\t\t[-99.653010, 34.098971],\n\t\t\t\t\t\t[-99.547509, 34.055980],\n\t\t\t\t\t\t[-99.475294, 34.085618]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48161\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"161\",\n\t\t\t\t\"NAME\": \"Freestone\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 877.739000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.496713, 31.796191],\n\t\t\t\t\t\t[-96.054780, 32.012526],\n\t\t\t\t\t\t[-96.052880, 32.008198],\n\t\t\t\t\t\t[-96.052786, 32.005895],\n\t\t\t\t\t\t[-96.062172, 31.956340],\n\t\t\t\t\t\t[-96.022955, 31.957581],\n\t\t\t\t\t\t[-96.027788, 31.878242],\n\t\t\t\t\t\t[-95.994127, 31.866258],\n\t\t\t\t\t\t[-95.980568, 31.784561],\n\t\t\t\t\t\t[-95.875937, 31.755503],\n\t\t\t\t\t\t[-95.861262, 31.687451],\n\t\t\t\t\t\t[-95.794081, 31.660310],\n\t\t\t\t\t\t[-95.787300, 31.618385],\n\t\t\t\t\t\t[-96.236629, 31.413392],\n\t\t\t\t\t\t[-96.496713, 31.796191]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48165\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"165\",\n\t\t\t\t\"NAME\": \"Gaines\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1502.375000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-102.208520, 32.958956],\n\t\t\t\t\t\t[-102.202703, 32.523271],\n\t\t\t\t\t\t[-102.211037, 32.523244],\n\t\t\t\t\t\t[-103.064696, 32.522193],\n\t\t\t\t\t\t[-103.064761, 32.587983],\n\t\t\t\t\t\t[-103.064788, 32.600397],\n\t\t\t\t\t\t[-103.064761, 32.601863],\n\t\t\t\t\t\t[-103.064815, 32.624537],\n\t\t\t\t\t\t[-103.064633, 32.646420],\n\t\t\t\t\t\t[-103.064864, 32.682647],\n\t\t\t\t\t\t[-103.064798, 32.690761],\n\t\t\t\t\t\t[-103.064799, 32.708694],\n\t\t\t\t\t\t[-103.064827, 32.726628],\n\t\t\t\t\t\t[-103.064807, 32.777303],\n\t\t\t\t\t\t[-103.064698, 32.783602],\n\t\t\t\t\t\t[-103.064711, 32.784593],\n\t\t\t\t\t\t[-103.064699, 32.827531],\n\t\t\t\t\t\t[-103.064672, 32.828470],\n\t\t\t\t\t\t[-103.064889, 32.849359],\n\t\t\t\t\t\t[-103.064916, 32.857260],\n\t\t\t\t\t\t[-103.064807, 32.857696],\n\t\t\t\t\t\t[-103.064862, 32.868346],\n\t\t\t\t\t\t[-103.064701, 32.879355],\n\t\t\t\t\t\t[-103.064569, 32.900014],\n\t\t\t\t\t\t[-103.064657, 32.959097],\n\t\t\t\t\t\t[-102.595023, 32.958831],\n\t\t\t\t\t\t[-102.208520, 32.958956]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51107\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"107\",\n\t\t\t\t\"NAME\": \"Loudoun\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 515.561000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.655081, 38.942635],\n\t\t\t\t\t\t[-77.960269, 39.013384],\n\t\t\t\t\t\t[-77.961956, 39.013841],\n\t\t\t\t\t\t[-77.828157, 39.132329],\n\t\t\t\t\t\t[-77.822182, 39.139985],\n\t\t\t\t\t\t[-77.771415, 39.236776],\n\t\t\t\t\t\t[-77.767277, 39.249380],\n\t\t\t\t\t\t[-77.768992, 39.256417],\n\t\t\t\t\t\t[-77.768000, 39.257657],\n\t\t\t\t\t\t[-77.761768, 39.263031],\n\t\t\t\t\t\t[-77.761217, 39.263721],\n\t\t\t\t\t\t[-77.758733, 39.268114],\n\t\t\t\t\t\t[-77.758412, 39.269197],\n\t\t\t\t\t\t[-77.755698, 39.274575],\n\t\t\t\t\t\t[-77.755193, 39.275191],\n\t\t\t\t\t\t[-77.753105, 39.277340],\n\t\t\t\t\t\t[-77.753060, 39.277971],\n\t\t\t\t\t\t[-77.753357, 39.280331],\n\t\t\t\t\t\t[-77.750267, 39.289284],\n\t\t\t\t\t\t[-77.719029, 39.321125],\n\t\t\t\t\t\t[-77.677505, 39.318699],\n\t\t\t\t\t\t[-77.667749, 39.318129],\n\t\t\t\t\t\t[-77.592739, 39.301290],\n\t\t\t\t\t\t[-77.560854, 39.286152],\n\t\t\t\t\t\t[-77.545846, 39.271535],\n\t\t\t\t\t\t[-77.543228, 39.266937],\n\t\t\t\t\t\t[-77.534461, 39.262361],\n\t\t\t\t\t\t[-77.511222, 39.253500],\n\t\t\t\t\t\t[-77.484605, 39.245941],\n\t\t\t\t\t\t[-77.460210, 39.228359],\n\t\t\t\t\t\t[-77.457680, 39.225020],\n\t\t\t\t\t\t[-77.458779, 39.220280],\n\t\t\t\t\t\t[-77.458884, 39.219826],\n\t\t\t\t\t\t[-77.478596, 39.189168],\n\t\t\t\t\t\t[-77.485971, 39.185665],\n\t\t\t\t\t\t[-77.505162, 39.182050],\n\t\t\t\t\t\t[-77.510631, 39.178484],\n\t\t\t\t\t\t[-77.516426, 39.170891],\n\t\t\t\t\t\t[-77.527282, 39.146236],\n\t\t\t\t\t\t[-77.524559, 39.127821],\n\t\t\t\t\t\t[-77.519929, 39.120925],\n\t\t\t\t\t\t[-77.458202, 39.073723],\n\t\t\t\t\t\t[-77.423180, 39.066878],\n\t\t\t\t\t\t[-77.375079, 39.061297],\n\t\t\t\t\t\t[-77.340287, 39.062991],\n\t\t\t\t\t\t[-77.328002, 39.058554],\n\t\t\t\t\t\t[-77.328318, 39.057678],\n\t\t\t\t\t\t[-77.535760, 38.847474],\n\t\t\t\t\t\t[-77.655081, 38.942635]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51131\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"131\",\n\t\t\t\t\"NAME\": \"Northampton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 211.612000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-75.937665, 37.549652],\n\t\t\t\t\t\t[-75.900410, 37.557265],\n\t\t\t\t\t\t[-75.884455, 37.549542],\n\t\t\t\t\t\t[-75.835214, 37.554245],\n\t\t\t\t\t\t[-75.788012, 37.528816],\n\t\t\t\t\t\t[-75.809357, 37.465923],\n\t\t\t\t\t\t[-75.776564, 37.454589],\n\t\t\t\t\t\t[-75.763912, 37.463308],\n\t\t\t\t\t\t[-75.713275, 37.449876],\n\t\t\t\t\t\t[-75.665500, 37.467319],\n\t\t\t\t\t\t[-75.664311, 37.458901],\n\t\t\t\t\t\t[-75.661790, 37.455028],\n\t\t\t\t\t\t[-75.665957, 37.439209],\n\t\t\t\t\t\t[-75.672648, 37.429915],\n\t\t\t\t\t\t[-75.697914, 37.405301],\n\t\t\t\t\t\t[-75.720739, 37.373129],\n\t\t\t\t\t\t[-75.727335, 37.360346],\n\t\t\t\t\t\t[-75.725634, 37.358416],\n\t\t\t\t\t\t[-75.726691, 37.350127],\n\t\t\t\t\t\t[-75.735829, 37.335426],\n\t\t\t\t\t\t[-75.765401, 37.305596],\n\t\t\t\t\t\t[-75.778817, 37.297176],\n\t\t\t\t\t\t[-75.780766, 37.297222],\n\t\t\t\t\t\t[-75.784634, 37.300976],\n\t\t\t\t\t\t[-75.791913, 37.300589],\n\t\t\t\t\t\t[-75.798448, 37.296285],\n\t\t\t\t\t\t[-75.790830, 37.276207],\n\t\t\t\t\t\t[-75.799343, 37.251779],\n\t\t\t\t\t\t[-75.795881, 37.236922],\n\t\t\t\t\t\t[-75.790386, 37.231225],\n\t\t\t\t\t\t[-75.789929, 37.228134],\n\t\t\t\t\t\t[-75.790903, 37.225066],\n\t\t\t\t\t\t[-75.804446, 37.208011],\n\t\t\t\t\t\t[-75.800468, 37.201029],\n\t\t\t\t\t\t[-75.800755, 37.197297],\n\t\t\t\t\t\t[-75.830341, 37.170600],\n\t\t\t\t\t\t[-75.877670, 37.135604],\n\t\t\t\t\t\t[-75.886369, 37.126085],\n\t\t\t\t\t\t[-75.897298, 37.118037],\n\t\t\t\t\t\t[-75.906734, 37.114193],\n\t\t\t\t\t\t[-75.912308, 37.115154],\n\t\t\t\t\t\t[-75.913222, 37.119849],\n\t\t\t\t\t\t[-75.925520, 37.133601],\n\t\t\t\t\t\t[-75.942539, 37.125142],\n\t\t\t\t\t\t[-75.945872, 37.120514],\n\t\t\t\t\t\t[-75.962596, 37.117535],\n\t\t\t\t\t\t[-75.970430, 37.118608],\n\t\t\t\t\t\t[-75.970004, 37.128861],\n\t\t\t\t\t\t[-75.978083, 37.157338],\n\t\t\t\t\t\t[-75.998647, 37.188739],\n\t\t\t\t\t\t[-76.006094, 37.194810],\n\t\t\t\t\t\t[-76.013071, 37.205366],\n\t\t\t\t\t\t[-76.013778, 37.219263],\n\t\t\t\t\t\t[-76.010535, 37.231579],\n\t\t\t\t\t\t[-76.014026, 37.235381],\n\t\t\t\t\t\t[-76.025753, 37.257407],\n\t\t\t\t\t\t[-76.023664, 37.268971],\n\t\t\t\t\t\t[-76.015507, 37.280874],\n\t\t\t\t\t\t[-76.023475, 37.289067],\n\t\t\t\t\t\t[-76.018645, 37.317820],\n\t\t\t\t\t\t[-76.014251, 37.331943],\n\t\t\t\t\t\t[-75.997778, 37.351739],\n\t\t\t\t\t\t[-75.987122, 37.368548],\n\t\t\t\t\t\t[-75.979970, 37.404608],\n\t\t\t\t\t\t[-75.983105, 37.415802],\n\t\t\t\t\t\t[-75.981624, 37.434116],\n\t\t\t\t\t\t[-75.976491, 37.444878],\n\t\t\t\t\t\t[-75.960877, 37.467562],\n\t\t\t\t\t\t[-75.963496, 37.475352],\n\t\t\t\t\t\t[-75.963326, 37.481785],\n\t\t\t\t\t\t[-75.958966, 37.500133],\n\t\t\t\t\t\t[-75.949974, 37.521876],\n\t\t\t\t\t\t[-75.940318, 37.534582],\n\t\t\t\t\t\t[-75.937665, 37.549652]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51147\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"147\",\n\t\t\t\t\"NAME\": \"Prince Edward\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 349.960000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.231234, 37.296220],\n\t\t\t\t\t\t[-78.239354, 37.120089],\n\t\t\t\t\t\t[-78.443319, 37.079400],\n\t\t\t\t\t\t[-78.547128, 37.150431],\n\t\t\t\t\t\t[-78.692472, 37.204786],\n\t\t\t\t\t\t[-78.681573, 37.248759],\n\t\t\t\t\t\t[-78.594436, 37.397974],\n\t\t\t\t\t\t[-78.465089, 37.339677],\n\t\t\t\t\t\t[-78.321840, 37.309292],\n\t\t\t\t\t\t[-78.235039, 37.368102],\n\t\t\t\t\t\t[-78.231234, 37.296220]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51149\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"149\",\n\t\t\t\t\"NAME\": \"Prince George\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 265.155000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.310532, 37.261595],\n\t\t\t\t\t\t[-77.284019, 37.313012],\n\t\t\t\t\t\t[-77.282659, 37.318084],\n\t\t\t\t\t\t[-77.270675, 37.320756],\n\t\t\t\t\t\t[-77.069269, 37.269742],\n\t\t\t\t\t\t[-77.010096, 37.305251],\n\t\t\t\t\t\t[-76.972439, 37.248501],\n\t\t\t\t\t\t[-77.155415, 37.112034],\n\t\t\t\t\t\t[-77.173095, 37.105391],\n\t\t\t\t\t\t[-77.173440, 37.105238],\n\t\t\t\t\t\t[-77.382384, 37.000150],\n\t\t\t\t\t\t[-77.398498, 36.992985],\n\t\t\t\t\t\t[-77.396791, 37.152758],\n\t\t\t\t\t\t[-77.399203, 37.170850],\n\t\t\t\t\t\t[-77.376728, 37.244993],\n\t\t\t\t\t\t[-77.377381, 37.255541],\n\t\t\t\t\t\t[-77.373735, 37.266949],\n\t\t\t\t\t\t[-77.368823, 37.272613],\n\t\t\t\t\t\t[-77.360455, 37.277333],\n\t\t\t\t\t\t[-77.356582, 37.283125],\n\t\t\t\t\t\t[-77.352710, 37.297957],\n\t\t\t\t\t\t[-77.352518, 37.310165],\n\t\t\t\t\t\t[-77.334549, 37.312468],\n\t\t\t\t\t\t[-77.310532, 37.261595]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51159\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"159\",\n\t\t\t\t\"NAME\": \"Richmond\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 191.492000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.507828, 37.838814],\n\t\t\t\t\t\t[-76.642276, 37.792317],\n\t\t\t\t\t\t[-76.651413, 37.796239],\n\t\t\t\t\t\t[-76.658302, 37.806815],\n\t\t\t\t\t\t[-76.680197, 37.825654],\n\t\t\t\t\t\t[-76.692747, 37.822770],\n\t\t\t\t\t\t[-76.701606, 37.822677],\n\t\t\t\t\t\t[-76.722156, 37.836680],\n\t\t\t\t\t\t[-76.727180, 37.842263],\n\t\t\t\t\t\t[-76.733046, 37.852009],\n\t\t\t\t\t\t[-76.738395, 37.865373],\n\t\t\t\t\t\t[-76.747552, 37.875864],\n\t\t\t\t\t\t[-76.765711, 37.879274],\n\t\t\t\t\t\t[-76.775390, 37.874306],\n\t\t\t\t\t\t[-76.905403, 38.003469],\n\t\t\t\t\t\t[-76.936959, 38.077074],\n\t\t\t\t\t\t[-76.877062, 38.124358],\n\t\t\t\t\t\t[-76.764716, 38.001979],\n\t\t\t\t\t\t[-76.634230, 37.966630],\n\t\t\t\t\t\t[-76.556042, 37.931524],\n\t\t\t\t\t\t[-76.507828, 37.838814]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51161\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"161\",\n\t\t\t\t\"NAME\": \"Roanoke\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 250.518000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.945616, 37.362997],\n\t\t\t\t\t\t[-79.865099, 37.328417],\n\t\t\t\t\t\t[-79.847599, 37.309177],\n\t\t\t\t\t\t[-79.847082, 37.225468],\n\t\t\t\t\t\t[-79.962301, 37.137099],\n\t\t\t\t\t\t[-80.030562, 37.174810],\n\t\t\t\t\t\t[-80.128119, 37.122912],\n\t\t\t\t\t\t[-80.172264, 37.108156],\n\t\t\t\t\t\t[-80.178032, 37.113435],\n\t\t\t\t\t\t[-80.205224, 37.248042],\n\t\t\t\t\t\t[-80.258520, 37.308344],\n\t\t\t\t\t\t[-80.261984, 37.340694],\n\t\t\t\t\t\t[-80.073985, 37.422305],\n\t\t\t\t\t\t[-80.062622, 37.408325],\n\t\t\t\t\t\t[-79.945616, 37.362997]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.974313, 37.335227],\n\t\t\t\t\t\t[-79.979809, 37.331751],\n\t\t\t\t\t\t[-79.993120, 37.324829],\n\t\t\t\t\t\t[-80.001111, 37.319196],\n\t\t\t\t\t\t[-80.004807, 37.315614],\n\t\t\t\t\t\t[-80.012638, 37.316491],\n\t\t\t\t\t\t[-80.017082, 37.314342],\n\t\t\t\t\t\t[-80.022428, 37.308156],\n\t\t\t\t\t\t[-80.120490, 37.287053],\n\t\t\t\t\t\t[-80.033476, 37.262811],\n\t\t\t\t\t\t[-79.950384, 37.211274],\n\t\t\t\t\t\t[-79.904962, 37.244325],\n\t\t\t\t\t\t[-79.917601, 37.280899],\n\t\t\t\t\t\t[-79.882580, 37.294610],\n\t\t\t\t\t\t[-79.878186, 37.291745],\n\t\t\t\t\t\t[-79.904965, 37.320537],\n\t\t\t\t\t\t[-79.974313, 37.335227]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51165\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"165\",\n\t\t\t\t\"NAME\": \"Rockingham\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 849.086000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.225839, 38.479446],\n\t\t\t\t\t\t[-79.210026, 38.494231],\n\t\t\t\t\t\t[-79.210008, 38.494283],\n\t\t\t\t\t\t[-79.209703, 38.495574],\n\t\t\t\t\t\t[-79.207873, 38.500122],\n\t\t\t\t\t\t[-79.207884, 38.500428],\n\t\t\t\t\t\t[-79.174881, 38.566314],\n\t\t\t\t\t\t[-79.174512, 38.566531],\n\t\t\t\t\t\t[-79.146974, 38.625641],\n\t\t\t\t\t\t[-79.146741, 38.625819],\n\t\t\t\t\t\t[-79.137012, 38.640655],\n\t\t\t\t\t\t[-79.136374, 38.642400],\n\t\t\t\t\t\t[-79.135546, 38.643715],\n\t\t\t\t\t\t[-79.135472, 38.644057],\n\t\t\t\t\t\t[-79.092271, 38.699208],\n\t\t\t\t\t\t[-79.092555, 38.700149],\n\t\t\t\t\t\t[-79.057253, 38.761413],\n\t\t\t\t\t\t[-79.055354, 38.782213],\n\t\t\t\t\t\t[-78.999752, 38.846162],\n\t\t\t\t\t\t[-78.993997, 38.850102],\n\t\t\t\t\t\t[-78.869276, 38.762991],\n\t\t\t\t\t\t[-78.641769, 38.604719],\n\t\t\t\t\t\t[-78.691312, 38.510008],\n\t\t\t\t\t\t[-78.486003, 38.421486],\n\t\t\t\t\t\t[-78.551491, 38.336315],\n\t\t\t\t\t\t[-78.663174, 38.277923],\n\t\t\t\t\t\t[-78.749354, 38.206621],\n\t\t\t\t\t\t[-79.225839, 38.479446]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.870651, 38.482606],\n\t\t\t\t\t\t[-78.872978, 38.488510],\n\t\t\t\t\t\t[-78.914591, 38.389755],\n\t\t\t\t\t\t[-78.824253, 38.435631],\n\t\t\t\t\t\t[-78.870651, 38.482606]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51175\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"175\",\n\t\t\t\t\"NAME\": \"Southampton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 599.145000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.953546, 36.944450],\n\t\t\t\t\t\t[-76.849684, 36.996211],\n\t\t\t\t\t\t[-76.816162, 36.914907],\n\t\t\t\t\t\t[-76.924629, 36.707729],\n\t\t\t\t\t\t[-76.949535, 36.708617],\n\t\t\t\t\t\t[-76.967212, 36.702588],\n\t\t\t\t\t\t[-76.968027, 36.682971],\n\t\t\t\t\t\t[-76.949327, 36.678730],\n\t\t\t\t\t\t[-76.962339, 36.667515],\n\t\t\t\t\t\t[-76.909672, 36.648175],\n\t\t\t\t\t\t[-76.907702, 36.647190],\n\t\t\t\t\t\t[-76.900400, 36.645731],\n\t\t\t\t\t\t[-76.897592, 36.644050],\n\t\t\t\t\t\t[-76.915384, 36.543856],\n\t\t\t\t\t\t[-76.916001, 36.543818],\n\t\t\t\t\t\t[-76.916048, 36.543815],\n\t\t\t\t\t\t[-77.164500, 36.546330],\n\t\t\t\t\t\t[-77.249690, 36.544745],\n\t\t\t\t\t\t[-77.296875, 36.544746],\n\t\t\t\t\t\t[-77.377963, 36.633048],\n\t\t\t\t\t\t[-77.501917, 36.670506],\n\t\t\t\t\t\t[-77.430127, 36.707658],\n\t\t\t\t\t\t[-76.953546, 36.944450]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51177\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"177\",\n\t\t\t\t\"NAME\": \"Spotsylvania\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 401.496000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.726689, 38.323905],\n\t\t\t\t\t\t[-77.719737, 38.335508],\n\t\t\t\t\t\t[-77.714698, 38.336690],\n\t\t\t\t\t\t[-77.718646, 38.341602],\n\t\t\t\t\t\t[-77.712450, 38.345447],\n\t\t\t\t\t\t[-77.713032, 38.351431],\n\t\t\t\t\t\t[-77.705491, 38.354837],\n\t\t\t\t\t\t[-77.707798, 38.358565],\n\t\t\t\t\t\t[-77.703189, 38.360598],\n\t\t\t\t\t\t[-77.618727, 38.367835],\n\t\t\t\t\t\t[-77.530289, 38.309172],\n\t\t\t\t\t\t[-77.532313, 38.308498],\n\t\t\t\t\t\t[-77.529618, 38.308380],\n\t\t\t\t\t\t[-77.526039, 38.307112],\n\t\t\t\t\t\t[-77.522272, 38.306589],\n\t\t\t\t\t\t[-77.520165, 38.306699],\n\t\t\t\t\t\t[-77.516344, 38.306402],\n\t\t\t\t\t\t[-77.516421, 38.305614],\n\t\t\t\t\t\t[-77.514883, 38.305499],\n\t\t\t\t\t\t[-77.516805, 38.295128],\n\t\t\t\t\t\t[-77.507563, 38.292143],\n\t\t\t\t\t\t[-77.511826, 38.279953],\n\t\t\t\t\t\t[-77.497909, 38.282910],\n\t\t\t\t\t\t[-77.494708, 38.273834],\n\t\t\t\t\t\t[-77.473388, 38.270245],\n\t\t\t\t\t\t[-77.467151, 38.279780],\n\t\t\t\t\t\t[-77.457837, 38.271108],\n\t\t\t\t\t\t[-77.447126, 38.284614],\n\t\t\t\t\t\t[-77.420148, 38.257986],\n\t\t\t\t\t\t[-77.390850, 38.245589],\n\t\t\t\t\t\t[-77.370301, 38.246576],\n\t\t\t\t\t\t[-77.374670, 38.243099],\n\t\t\t\t\t\t[-77.518179, 38.104890],\n\t\t\t\t\t\t[-77.551611, 38.073609],\n\t\t\t\t\t\t[-77.626219, 38.003429],\n\t\t\t\t\t\t[-77.642200, 37.990928],\n\t\t\t\t\t\t[-77.642318, 37.992284],\n\t\t\t\t\t\t[-77.647163, 37.993948],\n\t\t\t\t\t\t[-77.649201, 37.994168],\n\t\t\t\t\t\t[-77.653670, 37.993595],\n\t\t\t\t\t\t[-77.657916, 37.991864],\n\t\t\t\t\t\t[-77.659698, 37.992082],\n\t\t\t\t\t\t[-77.660469, 37.993726],\n\t\t\t\t\t\t[-77.660602, 37.997145],\n\t\t\t\t\t\t[-77.662338, 37.997764],\n\t\t\t\t\t\t[-77.664779, 37.996902],\n\t\t\t\t\t\t[-77.667160, 37.997079],\n\t\t\t\t\t\t[-77.667985, 37.998379],\n\t\t\t\t\t\t[-77.667921, 38.000120],\n\t\t\t\t\t\t[-77.670898, 38.003769],\n\t\t\t\t\t\t[-77.676618, 38.006409],\n\t\t\t\t\t\t[-77.680592, 38.007587],\n\t\t\t\t\t\t[-77.684065, 38.008283],\n\t\t\t\t\t\t[-77.687294, 38.008011],\n\t\t\t\t\t\t[-77.786614, 38.076337],\n\t\t\t\t\t\t[-77.954819, 38.117437],\n\t\t\t\t\t\t[-77.726689, 38.323905]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72071\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"071\",\n\t\t\t\t\"NAME\": \"Isabela\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 55.304000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-66.957517, 18.489171],\n\t\t\t\t\t\t[-66.922020, 18.393204],\n\t\t\t\t\t\t[-67.027173, 18.393376],\n\t\t\t\t\t\t[-67.052813, 18.448354],\n\t\t\t\t\t\t[-67.056515, 18.460984],\n\t\t\t\t\t\t[-67.058460, 18.479982],\n\t\t\t\t\t\t[-67.077061, 18.488966],\n\t\t\t\t\t\t[-67.103468, 18.514523],\n\t\t\t\t\t\t[-67.093752, 18.515757],\n\t\t\t\t\t\t[-67.079290, 18.513256],\n\t\t\t\t\t\t[-67.020276, 18.510603],\n\t\t\t\t\t\t[-66.988958, 18.497724],\n\t\t\t\t\t\t[-66.959540, 18.489878],\n\t\t\t\t\t\t[-66.957733, 18.489129],\n\t\t\t\t\t\t[-66.957517, 18.489171]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55061\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"061\",\n\t\t\t\t\"NAME\": \"Kewaunee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 342.518000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.373228, 44.675593],\n\t\t\t\t\t\t[-87.378490, 44.666534],\n\t\t\t\t\t\t[-87.386840, 44.652157],\n\t\t\t\t\t\t[-87.393521, 44.640655],\n\t\t\t\t\t\t[-87.401629, 44.631191],\n\t\t\t\t\t\t[-87.403724, 44.628974],\n\t\t\t\t\t\t[-87.405410, 44.627191],\n\t\t\t\t\t\t[-87.418028, 44.620870],\n\t\t\t\t\t\t[-87.435766, 44.606472],\n\t\t\t\t\t\t[-87.437493, 44.605071],\n\t\t\t\t\t\t[-87.437751, 44.604559],\n\t\t\t\t\t\t[-87.446963, 44.586274],\n\t\t\t\t\t\t[-87.467089, 44.553557],\n\t\t\t\t\t\t[-87.467214, 44.553355],\n\t\t\t\t\t\t[-87.467398, 44.553055],\n\t\t\t\t\t\t[-87.468093, 44.551925],\n\t\t\t\t\t\t[-87.472934, 44.539338],\n\t\t\t\t\t\t[-87.481884, 44.516065],\n\t\t\t\t\t\t[-87.483696, 44.511354],\n\t\t\t\t\t\t[-87.483873, 44.505742],\n\t\t\t\t\t\t[-87.483914, 44.504425],\n\t\t\t\t\t\t[-87.484042, 44.503856],\n\t\t\t\t\t\t[-87.486822, 44.491477],\n\t\t\t\t\t\t[-87.490024, 44.477224],\n\t\t\t\t\t\t[-87.492333, 44.472804],\n\t\t\t\t\t\t[-87.494678, 44.468314],\n\t\t\t\t\t\t[-87.495176, 44.467360],\n\t\t\t\t\t\t[-87.495252, 44.467215],\n\t\t\t\t\t\t[-87.498662, 44.460686],\n\t\t\t\t\t\t[-87.498860, 44.459737],\n\t\t\t\t\t\t[-87.498872, 44.459680],\n\t\t\t\t\t\t[-87.498934, 44.459384],\n\t\t\t\t\t\t[-87.499349, 44.457395],\n\t\t\t\t\t\t[-87.499674, 44.455837],\n\t\t\t\t\t\t[-87.499719, 44.455625],\n\t\t\t\t\t\t[-87.502309, 44.443219],\n\t\t\t\t\t\t[-87.506362, 44.423804],\n\t\t\t\t\t\t[-87.507651, 44.421418],\n\t\t\t\t\t\t[-87.511387, 44.414502],\n\t\t\t\t\t\t[-87.511635, 44.414043],\n\t\t\t\t\t\t[-87.512311, 44.411941],\n\t\t\t\t\t\t[-87.512886, 44.410153],\n\t\t\t\t\t\t[-87.515482, 44.402077],\n\t\t\t\t\t\t[-87.517965, 44.394356],\n\t\t\t\t\t\t[-87.517881, 44.390082],\n\t\t\t\t\t\t[-87.517597, 44.375696],\n\t\t\t\t\t\t[-87.517740, 44.375357],\n\t\t\t\t\t\t[-87.518094, 44.374519],\n\t\t\t\t\t\t[-87.519106, 44.372122],\n\t\t\t\t\t\t[-87.521047, 44.367526],\n\t\t\t\t\t\t[-87.521663, 44.366719],\n\t\t\t\t\t\t[-87.533583, 44.351111],\n\t\t\t\t\t\t[-87.533606, 44.351052],\n\t\t\t\t\t\t[-87.541517, 44.331123],\n\t\t\t\t\t\t[-87.542950, 44.327513],\n\t\t\t\t\t\t[-87.766194, 44.327185],\n\t\t\t\t\t\t[-87.762376, 44.644501],\n\t\t\t\t\t\t[-87.756048, 44.649117],\n\t\t\t\t\t\t[-87.756031, 44.649129],\n\t\t\t\t\t\t[-87.750899, 44.656192],\n\t\t\t\t\t\t[-87.749090, 44.664131],\n\t\t\t\t\t\t[-87.748409, 44.667122],\n\t\t\t\t\t\t[-87.736058, 44.677025],\n\t\t\t\t\t\t[-87.375091, 44.675601],\n\t\t\t\t\t\t[-87.373228, 44.675593]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US56039\",\n\t\t\t\t\"STATE\": \"56\",\n\t\t\t\t\"COUNTY\": \"039\",\n\t\t\t\t\"NAME\": \"Teton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 3995.379000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-111.048751, 44.060403],\n\t\t\t\t\t\t[-111.048751, 44.060838],\n\t\t\t\t\t\t[-111.048633, 44.062903],\n\t\t\t\t\t\t[-111.049216, 44.435811],\n\t\t\t\t\t\t[-111.049194, 44.438058],\n\t\t\t\t\t\t[-111.048974, 44.474072],\n\t\t\t\t\t\t[-111.055208, 44.624927],\n\t\t\t\t\t\t[-111.055495, 44.666262],\n\t\t\t\t\t\t[-110.667867, 44.666291],\n\t\t\t\t\t\t[-110.667899, 44.582792],\n\t\t\t\t\t\t[-110.375334, 44.583016],\n\t\t\t\t\t\t[-110.294850, 44.546923],\n\t\t\t\t\t\t[-110.296648, 44.431341],\n\t\t\t\t\t\t[-110.151100, 44.292464],\n\t\t\t\t\t\t[-110.111284, 44.199375],\n\t\t\t\t\t\t[-110.119193, 44.132584],\n\t\t\t\t\t\t[-110.053357, 44.132628],\n\t\t\t\t\t\t[-110.053179, 44.008022],\n\t\t\t\t\t\t[-110.051570, 43.464783],\n\t\t\t\t\t\t[-110.057310, 43.377768],\n\t\t\t\t\t\t[-110.344218, 43.377918],\n\t\t\t\t\t\t[-110.343959, 43.291165],\n\t\t\t\t\t\t[-110.578380, 43.291640],\n\t\t\t\t\t\t[-110.578656, 43.235224],\n\t\t\t\t\t\t[-110.813993, 43.235178],\n\t\t\t\t\t\t[-110.813988, 43.315906],\n\t\t\t\t\t\t[-111.044617, 43.315720],\n\t\t\t\t\t\t[-111.045205, 43.501136],\n\t\t\t\t\t\t[-111.045706, 43.659112],\n\t\t\t\t\t\t[-111.045880, 43.681033],\n\t\t\t\t\t\t[-111.046118, 43.684902],\n\t\t\t\t\t\t[-111.046051, 43.685812],\n\t\t\t\t\t\t[-111.046110, 43.687848],\n\t\t\t\t\t\t[-111.046421, 43.722059],\n\t\t\t\t\t\t[-111.046435, 43.726545],\n\t\t\t\t\t\t[-111.046340, 43.726957],\n\t\t\t\t\t\t[-111.046715, 43.815832],\n\t\t\t\t\t\t[-111.048107, 43.983096],\n\t\t\t\t\t\t[-111.048751, 44.060403]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72003\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"003\",\n\t\t\t\t\"NAME\": \"Aguada\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 30.851000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-67.182852, 18.313026],\n\t\t\t\t\t\t[-67.239090, 18.375318],\n\t\t\t\t\t\t[-67.226744, 18.378247],\n\t\t\t\t\t\t[-67.216998, 18.382078],\n\t\t\t\t\t\t[-67.202167, 18.389908],\n\t\t\t\t\t\t[-67.160144, 18.415587],\n\t\t\t\t\t\t[-67.150689, 18.392377],\n\t\t\t\t\t\t[-67.132210, 18.389391],\n\t\t\t\t\t\t[-67.126434, 18.371203],\n\t\t\t\t\t\t[-67.128629, 18.365545],\n\t\t\t\t\t\t[-67.128124, 18.353859],\n\t\t\t\t\t\t[-67.134515, 18.346514],\n\t\t\t\t\t\t[-67.131025, 18.334689],\n\t\t\t\t\t\t[-67.134138, 18.330531],\n\t\t\t\t\t\t[-67.130389, 18.325143],\n\t\t\t\t\t\t[-67.130167, 18.317927],\n\t\t\t\t\t\t[-67.148707, 18.322239],\n\t\t\t\t\t\t[-67.160990, 18.316072],\n\t\t\t\t\t\t[-67.172608, 18.318232],\n\t\t\t\t\t\t[-67.182852, 18.313026]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72009\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"009\",\n\t\t\t\t\"NAME\": \"Aibonito\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 31.311000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-66.224490, 18.095339],\n\t\t\t\t\t\t[-66.229539, 18.095370],\n\t\t\t\t\t\t[-66.230920, 18.095925],\n\t\t\t\t\t\t[-66.234899, 18.094213],\n\t\t\t\t\t\t[-66.240053, 18.093186],\n\t\t\t\t\t\t[-66.239785, 18.084691],\n\t\t\t\t\t\t[-66.240900, 18.081894],\n\t\t\t\t\t\t[-66.242890, 18.079405],\n\t\t\t\t\t\t[-66.242238, 18.077148],\n\t\t\t\t\t\t[-66.257527, 18.075884],\n\t\t\t\t\t\t[-66.314848, 18.152088],\n\t\t\t\t\t\t[-66.242735, 18.180248],\n\t\t\t\t\t\t[-66.223578, 18.165038],\n\t\t\t\t\t\t[-66.228748, 18.159611],\n\t\t\t\t\t\t[-66.216899, 18.143220],\n\t\t\t\t\t\t[-66.220693, 18.131684],\n\t\t\t\t\t\t[-66.220358, 18.120797],\n\t\t\t\t\t\t[-66.226805, 18.116389],\n\t\t\t\t\t\t[-66.224490, 18.095339]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US72015\",\n\t\t\t\t\"STATE\": \"72\",\n\t\t\t\t\"COUNTY\": \"015\",\n\t\t\t\t\"NAME\": \"Arroyo\",\n\t\t\t\t\"LSAD\": \"Muno\",\n\t\t\t\t\"CENSUSAREA\": 15.008000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-66.082263, 18.032958],\n\t\t\t\t\t\t[-66.019539, 17.978354],\n\t\t\t\t\t\t[-66.024000, 17.975896],\n\t\t\t\t\t\t[-66.046585, 17.954853],\n\t\t\t\t\t\t[-66.049033, 17.954561],\n\t\t\t\t\t\t[-66.058217, 17.959238],\n\t\t\t\t\t\t[-66.068678, 17.966335],\n\t\t\t\t\t\t[-66.069979, 17.966357],\n\t\t\t\t\t\t[-66.071610, 17.993732],\n\t\t\t\t\t\t[-66.082029, 18.010271],\n\t\t\t\t\t\t[-66.095209, 18.022186],\n\t\t\t\t\t\t[-66.082263, 18.032958]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US53047\",\n\t\t\t\t\"STATE\": \"53\",\n\t\t\t\t\"COUNTY\": \"047\",\n\t\t\t\t\"NAME\": \"Okanogan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 5267.978000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-120.851202, 49.001191],\n\t\t\t\t\t\t[-119.702016, 49.000269],\n\t\t\t\t\t\t[-119.701218, 49.000258],\n\t\t\t\t\t\t[-119.457700, 49.000261],\n\t\t\t\t\t\t[-119.428678, 49.000253],\n\t\t\t\t\t\t[-119.137274, 49.000297],\n\t\t\t\t\t\t[-119.132102, 49.000262],\n\t\t\t\t\t\t[-118.836794, 49.000209],\n\t\t\t\t\t\t[-118.835399, 48.654153],\n\t\t\t\t\t\t[-118.869672, 48.653598],\n\t\t\t\t\t\t[-118.869540, 48.481881],\n\t\t\t\t\t\t[-118.843439, 48.481682],\n\t\t\t\t\t\t[-118.845785, 47.963478],\n\t\t\t\t\t\t[-118.851972, 47.957686],\n\t\t\t\t\t\t[-118.954307, 47.940809],\n\t\t\t\t\t\t[-118.973502, 47.943570],\n\t\t\t\t\t\t[-118.982754, 47.949782],\n\t\t\t\t\t\t[-118.982394, 47.962019],\n\t\t\t\t\t\t[-118.955484, 48.023185],\n\t\t\t\t\t\t[-119.006111, 48.046143],\n\t\t\t\t\t\t[-119.062237, 48.138378],\n\t\t\t\t\t\t[-119.126141, 48.150510],\n\t\t\t\t\t\t[-119.325444, 48.099645],\n\t\t\t\t\t\t[-119.340989, 48.049512],\n\t\t\t\t\t\t[-119.502391, 48.082116],\n\t\t\t\t\t\t[-119.629835, 47.996239],\n\t\t\t\t\t\t[-119.693627, 48.032554],\n\t\t\t\t\t\t[-119.670241, 48.069775],\n\t\t\t\t\t\t[-119.771307, 48.104713],\n\t\t\t\t\t\t[-119.891656, 48.055053],\n\t\t\t\t\t\t[-119.870307, 47.960328],\n\t\t\t\t\t\t[-120.066621, 47.966378],\n\t\t\t\t\t\t[-120.143290, 48.065061],\n\t\t\t\t\t\t[-120.213493, 48.079061],\n\t\t\t\t\t\t[-120.362500, 48.168761],\n\t\t\t\t\t\t[-120.391901, 48.242963],\n\t\t\t\t\t\t[-120.559708, 48.360661],\n\t\t\t\t\t\t[-120.650211, 48.397559],\n\t\t\t\t\t\t[-120.651747, 48.536585],\n\t\t\t\t\t\t[-120.701557, 48.531620],\n\t\t\t\t\t\t[-120.752021, 48.657538],\n\t\t\t\t\t\t[-120.654676, 48.724198],\n\t\t\t\t\t\t[-120.733710, 48.782900],\n\t\t\t\t\t\t[-120.767528, 48.954385],\n\t\t\t\t\t\t[-120.851202, 49.001191]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48129\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"129\",\n\t\t\t\t\"NAME\": \"Donley\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 926.886000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.538978, 35.183144],\n\t\t\t\t\t\t[-100.540997, 34.750052],\n\t\t\t\t\t\t[-100.540703, 34.747723],\n\t\t\t\t\t\t[-100.944939, 34.748281],\n\t\t\t\t\t\t[-101.090749, 34.748246],\n\t\t\t\t\t\t[-101.086281, 35.182140],\n\t\t\t\t\t\t[-100.538978, 35.183144]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48167\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"167\",\n\t\t\t\t\"NAME\": \"Galveston\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 378.358000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-94.370866, 29.555070],\n\t\t\t\t\t\t\t[-94.500807, 29.505367],\n\t\t\t\t\t\t\t[-94.594853, 29.467903],\n\t\t\t\t\t\t\t[-94.631084, 29.451464],\n\t\t\t\t\t\t\t[-94.670389, 29.430780],\n\t\t\t\t\t\t\t[-94.694158, 29.415632],\n\t\t\t\t\t\t\t[-94.708473, 29.403049],\n\t\t\t\t\t\t\t[-94.723959, 29.383268],\n\t\t\t\t\t\t\t[-94.731047, 29.369141],\n\t\t\t\t\t\t\t[-94.744834, 29.369158],\n\t\t\t\t\t\t\t[-94.761491, 29.361883],\n\t\t\t\t\t\t\t[-94.778691, 29.361483],\n\t\t\t\t\t\t\t[-94.782356, 29.364266],\n\t\t\t\t\t\t\t[-94.783131, 29.375642],\n\t\t\t\t\t\t\t[-94.766848, 29.393489],\n\t\t\t\t\t\t\t[-94.754100, 29.401000],\n\t\t\t\t\t\t\t[-94.723818, 29.426536],\n\t\t\t\t\t\t\t[-94.706365, 29.436805],\n\t\t\t\t\t\t\t[-94.686386, 29.466509],\n\t\t\t\t\t\t\t[-94.681541, 29.471389],\n\t\t\t\t\t\t\t[-94.672400, 29.476843],\n\t\t\t\t\t\t\t[-94.665853, 29.478401],\n\t\t\t\t\t\t\t[-94.656737, 29.478033],\n\t\t\t\t\t\t\t[-94.645948, 29.473769],\n\t\t\t\t\t\t\t[-94.628217, 29.475986],\n\t\t\t\t\t\t\t[-94.608557, 29.483345],\n\t\t\t\t\t\t\t[-94.594211, 29.492127],\n\t\t\t\t\t\t\t[-94.595440, 29.507669],\n\t\t\t\t\t\t\t[-94.591407, 29.513858],\n\t\t\t\t\t\t\t[-94.580274, 29.525295],\n\t\t\t\t\t\t\t[-94.566674, 29.531988],\n\t\t\t\t\t\t\t[-94.553990, 29.529559],\n\t\t\t\t\t\t\t[-94.546994, 29.524379],\n\t\t\t\t\t\t\t[-94.532348, 29.517800],\n\t\t\t\t\t\t\t[-94.511045, 29.519650],\n\t\t\t\t\t\t\t[-94.495025, 29.525031],\n\t\t\t\t\t\t\t[-94.503429, 29.543250],\n\t\t\t\t\t\t\t[-94.509487, 29.542590],\n\t\t\t\t\t\t\t[-94.511086, 29.542971],\n\t\t\t\t\t\t\t[-94.412771, 29.572612],\n\t\t\t\t\t\t\t[-94.408992, 29.597467],\n\t\t\t\t\t\t\t[-94.371828, 29.597178],\n\t\t\t\t\t\t\t[-94.370866, 29.555070]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-95.223994, 29.514422],\n\t\t\t\t\t\t\t[-95.221862, 29.526521],\n\t\t\t\t\t\t\t[-95.221212, 29.529137],\n\t\t\t\t\t\t\t[-95.220748, 29.532688],\n\t\t\t\t\t\t\t[-95.219813, 29.536757],\n\t\t\t\t\t\t\t[-95.219395, 29.539122],\n\t\t\t\t\t\t\t[-95.219169, 29.541283],\n\t\t\t\t\t\t\t[-95.217794, 29.548449],\n\t\t\t\t\t\t\t[-95.217702, 29.549503],\n\t\t\t\t\t\t\t[-95.216788, 29.554643],\n\t\t\t\t\t\t\t[-95.216422, 29.556080],\n\t\t\t\t\t\t\t[-95.163927, 29.498051],\n\t\t\t\t\t\t\t[-95.018191, 29.554584],\n\t\t\t\t\t\t\t[-95.016889, 29.548303],\n\t\t\t\t\t\t\t[-95.015165, 29.539989],\n\t\t\t\t\t\t\t[-95.013378, 29.537822],\n\t\t\t\t\t\t\t[-94.999581, 29.521093],\n\t\t\t\t\t\t\t[-94.981916, 29.511141],\n\t\t\t\t\t\t\t[-94.958443, 29.505013],\n\t\t\t\t\t\t\t[-94.934876, 29.501079],\n\t\t\t\t\t\t\t[-94.933483, 29.500847],\n\t\t\t\t\t\t\t[-94.933039, 29.500773],\n\t\t\t\t\t\t\t[-94.909898, 29.496910],\n\t\t\t\t\t\t\t[-94.909465, 29.496838],\n\t\t\t\t\t\t\t[-94.913385, 29.487254],\n\t\t\t\t\t\t\t[-94.925914, 29.469047],\n\t\t\t\t\t\t\t[-94.930861, 29.450504],\n\t\t\t\t\t\t\t[-94.919401, 29.448031],\n\t\t\t\t\t\t\t[-94.890800, 29.433432],\n\t\t\t\t\t\t\t[-94.887300, 29.415132],\n\t\t\t\t\t\t\t[-94.886536, 29.366386],\n\t\t\t\t\t\t\t[-94.894234, 29.338000],\n\t\t\t\t\t\t\t[-94.893994, 29.308170],\n\t\t\t\t\t\t\t[-94.886536, 29.297826],\n\t\t\t\t\t\t\t[-94.875952, 29.293015],\n\t\t\t\t\t\t\t[-94.865126, 29.293977],\n\t\t\t\t\t\t\t[-94.849730, 29.297345],\n\t\t\t\t\t\t\t[-94.824953, 29.306005],\n\t\t\t\t\t\t\t[-94.822547, 29.321882],\n\t\t\t\t\t\t\t[-94.822307, 29.344254],\n\t\t\t\t\t\t\t[-94.810696, 29.353435],\n\t\t\t\t\t\t\t[-94.784895, 29.335535],\n\t\t\t\t\t\t\t[-94.779995, 29.334935],\n\t\t\t\t\t\t\t[-94.777064, 29.336811],\n\t\t\t\t\t\t\t[-94.745529, 29.334235],\n\t\t\t\t\t\t\t[-94.744945, 29.336410],\n\t\t\t\t\t\t\t[-94.731320, 29.338066],\n\t\t\t\t\t\t\t[-94.722530, 29.331446],\n\t\t\t\t\t\t\t[-94.731082, 29.331833],\n\t\t\t\t\t\t\t[-94.769695, 29.304936],\n\t\t\t\t\t\t\t[-94.786095, 29.290737],\n\t\t\t\t\t\t\t[-94.803695, 29.279237],\n\t\t\t\t\t\t\t[-95.026219, 29.148064],\n\t\t\t\t\t\t\t[-95.081773, 29.111222],\n\t\t\t\t\t\t\t[-95.110484, 29.088224],\n\t\t\t\t\t\t\t[-95.119271, 29.077844],\n\t\t\t\t\t\t\t[-95.056528, 29.199934],\n\t\t\t\t\t\t\t[-95.233081, 29.465566],\n\t\t\t\t\t\t\t[-95.231803, 29.472607],\n\t\t\t\t\t\t\t[-95.229732, 29.480714],\n\t\t\t\t\t\t\t[-95.225168, 29.503974],\n\t\t\t\t\t\t\t[-95.223994, 29.514422]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48221\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"221\",\n\t\t\t\t\"NAME\": \"Hood\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 420.641000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.945625, 32.233468],\n\t\t\t\t\t\t[-98.068545, 32.511626],\n\t\t\t\t\t\t[-98.066836, 32.558822],\n\t\t\t\t\t\t[-97.617066, 32.555484],\n\t\t\t\t\t\t[-97.615286, 32.318618],\n\t\t\t\t\t\t[-97.782760, 32.316493],\n\t\t\t\t\t\t[-97.945625, 32.233468]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48225\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"225\",\n\t\t\t\t\"NAME\": \"Houston\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1230.909000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.273203, 31.592886],\n\t\t\t\t\t\t[-95.176359, 31.584826],\n\t\t\t\t\t\t[-95.101382, 31.469887],\n\t\t\t\t\t\t[-95.003345, 31.425710],\n\t\t\t\t\t\t[-95.005566, 31.421349],\n\t\t\t\t\t\t[-95.001258, 31.417949],\n\t\t\t\t\t\t[-94.998247, 31.420040],\n\t\t\t\t\t\t[-94.997132, 31.416780],\n\t\t\t\t\t\t[-94.994108, 31.417835],\n\t\t\t\t\t\t[-94.993832, 31.414220],\n\t\t\t\t\t\t[-94.990043, 31.413356],\n\t\t\t\t\t\t[-94.988061, 31.414417],\n\t\t\t\t\t\t[-94.984753, 31.413850],\n\t\t\t\t\t\t[-94.983053, 31.411593],\n\t\t\t\t\t\t[-94.976033, 31.407744],\n\t\t\t\t\t\t[-94.979364, 31.405975],\n\t\t\t\t\t\t[-94.976291, 31.405250],\n\t\t\t\t\t\t[-94.976068, 31.402000],\n\t\t\t\t\t\t[-94.977780, 31.399381],\n\t\t\t\t\t\t[-94.973581, 31.399759],\n\t\t\t\t\t\t[-94.969369, 31.396948],\n\t\t\t\t\t\t[-94.967634, 31.397412],\n\t\t\t\t\t\t[-94.964521, 31.395558],\n\t\t\t\t\t\t[-94.966254, 31.391205],\n\t\t\t\t\t\t[-94.959415, 31.388884],\n\t\t\t\t\t\t[-94.958110, 31.386930],\n\t\t\t\t\t\t[-95.434781, 31.058098],\n\t\t\t\t\t\t[-95.617872, 30.930418],\n\t\t\t\t\t\t[-95.681158, 30.986958],\n\t\t\t\t\t\t[-95.663546, 31.083884],\n\t\t\t\t\t\t[-95.764410, 31.094211],\n\t\t\t\t\t\t[-95.725226, 31.271084],\n\t\t\t\t\t\t[-95.657202, 31.317999],\n\t\t\t\t\t\t[-95.739279, 31.504056],\n\t\t\t\t\t\t[-95.651764, 31.541791],\n\t\t\t\t\t\t[-95.273203, 31.592886]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48229\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"229\",\n\t\t\t\t\"NAME\": \"Hudspeth\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 4570.983000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-104.985365, 30.623792],\n\t\t\t\t\t\t[-105.044407, 30.683895],\n\t\t\t\t\t\t[-105.129328, 30.750139],\n\t\t\t\t\t\t[-105.211234, 30.799609],\n\t\t\t\t\t\t[-105.250028, 30.799068],\n\t\t\t\t\t\t[-105.265479, 30.802536],\n\t\t\t\t\t\t[-105.394627, 30.858920],\n\t\t\t\t\t\t[-105.411833, 30.893367],\n\t\t\t\t\t\t[-105.556790, 30.989469],\n\t\t\t\t\t\t[-105.577650, 31.019811],\n\t\t\t\t\t\t[-105.579756, 31.036588],\n\t\t\t\t\t\t[-105.585323, 31.057488],\n\t\t\t\t\t\t[-105.603330, 31.082625],\n\t\t\t\t\t\t[-105.648834, 31.115902],\n\t\t\t\t\t\t[-105.709491, 31.136375],\n\t\t\t\t\t\t[-105.750519, 31.164940],\n\t\t\t\t\t\t[-105.793719, 31.201713],\n\t\t\t\t\t\t[-105.869353, 31.288634],\n\t\t\t\t\t\t[-105.900315, 31.300008],\n\t\t\t\t\t\t[-105.923131, 31.312089],\n\t\t\t\t\t\t[-105.981027, 31.375122],\n\t\t\t\t\t\t[-105.997658, 31.386489],\n\t\t\t\t\t\t[-105.998003, 32.002328],\n\t\t\t\t\t\t[-105.900600, 32.002100],\n\t\t\t\t\t\t[-105.886159, 32.001970],\n\t\t\t\t\t\t[-105.429281, 32.000577],\n\t\t\t\t\t\t[-105.428582, 32.000600],\n\t\t\t\t\t\t[-105.427049, 32.000638],\n\t\t\t\t\t\t[-105.390396, 32.000607],\n\t\t\t\t\t\t[-105.153994, 32.000497],\n\t\t\t\t\t\t[-105.150310, 32.000497],\n\t\t\t\t\t\t[-105.148240, 32.000485],\n\t\t\t\t\t\t[-105.132916, 32.000518],\n\t\t\t\t\t\t[-105.131377, 32.000524],\n\t\t\t\t\t\t[-105.118040, 32.000485],\n\t\t\t\t\t\t[-105.078605, 32.000533],\n\t\t\t\t\t\t[-105.077046, 32.000579],\n\t\t\t\t\t\t[-104.918272, 32.000496],\n\t\t\t\t\t\t[-104.918637, 31.991805],\n\t\t\t\t\t\t[-104.907592, 30.835919],\n\t\t\t\t\t\t[-104.916396, 30.835979],\n\t\t\t\t\t\t[-104.917163, 30.663626],\n\t\t\t\t\t\t[-104.979610, 30.629363],\n\t\t\t\t\t\t[-104.985365, 30.623792]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48245\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"245\",\n\t\t\t\t\"NAME\": \"Jefferson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 876.295000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.354163, 29.561459],\n\t\t\t\t\t\t[-94.357976, 29.887464],\n\t\t\t\t\t\t[-94.442235, 29.889538],\n\t\t\t\t\t\t[-94.445096, 30.110966],\n\t\t\t\t\t\t[-94.444910, 30.113015],\n\t\t\t\t\t\t[-94.292629, 30.117671],\n\t\t\t\t\t\t[-94.209577, 30.187724],\n\t\t\t\t\t\t[-94.115917, 30.160347],\n\t\t\t\t\t\t[-94.031976, 30.028013],\n\t\t\t\t\t\t[-93.860169, 29.977397],\n\t\t\t\t\t\t[-93.840799, 29.914423],\n\t\t\t\t\t\t[-93.890679, 29.843159],\n\t\t\t\t\t\t[-93.898470, 29.771577],\n\t\t\t\t\t\t[-93.892246, 29.765241],\n\t\t\t\t\t\t[-93.837971, 29.690619],\n\t\t\t\t\t\t[-93.852868, 29.675885],\n\t\t\t\t\t\t[-93.866981, 29.673085],\n\t\t\t\t\t\t[-93.889990, 29.674013],\n\t\t\t\t\t\t[-93.931000, 29.679612],\n\t\t\t\t\t\t[-94.001406, 29.681486],\n\t\t\t\t\t\t[-94.056506, 29.671163],\n\t\t\t\t\t\t[-94.132577, 29.646217],\n\t\t\t\t\t\t[-94.354163, 29.561459]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48257\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"257\",\n\t\t\t\t\"NAME\": \"Kaufman\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 780.699000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.529987, 32.545282],\n\t\t\t\t\t\t[-96.523118, 32.545214],\n\t\t\t\t\t\t[-96.518970, 32.813616],\n\t\t\t\t\t\t[-96.297376, 32.814185],\n\t\t\t\t\t\t[-96.297322, 32.841723],\n\t\t\t\t\t\t[-96.076801, 32.838489],\n\t\t\t\t\t\t[-96.076685, 32.836799],\n\t\t\t\t\t\t[-96.075899, 32.357505],\n\t\t\t\t\t\t[-96.452138, 32.358631],\n\t\t\t\t\t\t[-96.529987, 32.545282]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51193\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"193\",\n\t\t\t\t\"NAME\": \"Westmoreland\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 229.375000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.936959, 38.077074],\n\t\t\t\t\t\t[-77.049695, 38.109832],\n\t\t\t\t\t\t[-77.061695, 38.161631],\n\t\t\t\t\t\t[-76.997670, 38.278047],\n\t\t\t\t\t\t[-76.990255, 38.273935],\n\t\t\t\t\t\t[-76.981372, 38.274214],\n\t\t\t\t\t\t[-76.962150, 38.256486],\n\t\t\t\t\t\t[-76.957796, 38.243183],\n\t\t\t\t\t\t[-76.957417, 38.236341],\n\t\t\t\t\t\t[-76.962375, 38.230093],\n\t\t\t\t\t\t[-76.966553, 38.229542],\n\t\t\t\t\t\t[-76.967335, 38.227185],\n\t\t\t\t\t\t[-76.962311, 38.214075],\n\t\t\t\t\t\t[-76.937134, 38.202384],\n\t\t\t\t\t\t[-76.916922, 38.199751],\n\t\t\t\t\t\t[-76.910832, 38.197073],\n\t\t\t\t\t\t[-76.875272, 38.172207],\n\t\t\t\t\t\t[-76.838795, 38.163476],\n\t\t\t\t\t\t[-76.824274, 38.163639],\n\t\t\t\t\t\t[-76.802968, 38.167988],\n\t\t\t\t\t\t[-76.788445, 38.169199],\n\t\t\t\t\t\t[-76.760241, 38.166581],\n\t\t\t\t\t\t[-76.749685, 38.162114],\n\t\t\t\t\t\t[-76.743064, 38.156988],\n\t\t\t\t\t\t[-76.740278, 38.152824],\n\t\t\t\t\t\t[-76.738938, 38.146510],\n\t\t\t\t\t\t[-76.721722, 38.137635],\n\t\t\t\t\t\t[-76.704048, 38.149264],\n\t\t\t\t\t\t[-76.701297, 38.155718],\n\t\t\t\t\t\t[-76.684892, 38.156497],\n\t\t\t\t\t\t[-76.665127, 38.147638],\n\t\t\t\t\t\t[-76.643448, 38.148250],\n\t\t\t\t\t\t[-76.638983, 38.151476],\n\t\t\t\t\t\t[-76.629476, 38.153050],\n\t\t\t\t\t\t[-76.613939, 38.148587],\n\t\t\t\t\t\t[-76.604131, 38.128771],\n\t\t\t\t\t\t[-76.600937, 38.110084],\n\t\t\t\t\t\t[-76.579497, 38.094870],\n\t\t\t\t\t\t[-76.543155, 38.076971],\n\t\t\t\t\t\t[-76.535919, 38.069532],\n\t\t\t\t\t\t[-76.522354, 38.042590],\n\t\t\t\t\t\t[-76.519536, 38.034814],\n\t\t\t\t\t\t[-76.634230, 37.966630],\n\t\t\t\t\t\t[-76.764716, 38.001979],\n\t\t\t\t\t\t[-76.877062, 38.124358],\n\t\t\t\t\t\t[-76.936959, 38.077074]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51199\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"199\",\n\t\t\t\t\"NAME\": \"York\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 104.780000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.435519, 37.094882],\n\t\t\t\t\t\t[-76.525624, 37.176628],\n\t\t\t\t\t\t[-76.565092, 37.220645],\n\t\t\t\t\t\t[-76.581575, 37.212845],\n\t\t\t\t\t\t[-76.582487, 37.212614],\n\t\t\t\t\t\t[-76.587528, 37.213086],\n\t\t\t\t\t\t[-76.591483, 37.215083],\n\t\t\t\t\t\t[-76.591432, 37.214721],\n\t\t\t\t\t\t[-76.679468, 37.265652],\n\t\t\t\t\t\t[-76.684705, 37.270068],\n\t\t\t\t\t\t[-76.677054, 37.277170],\n\t\t\t\t\t\t[-76.681182, 37.292721],\n\t\t\t\t\t\t[-76.690217, 37.292656],\n\t\t\t\t\t\t[-76.691736, 37.287459],\n\t\t\t\t\t\t[-76.709775, 37.282290],\n\t\t\t\t\t\t[-76.710367, 37.277650],\n\t\t\t\t\t\t[-76.715314, 37.280562],\n\t\t\t\t\t\t[-76.727264, 37.298783],\n\t\t\t\t\t\t[-76.727588, 37.304921],\n\t\t\t\t\t\t[-76.741667, 37.370440],\n\t\t\t\t\t\t[-76.658651, 37.380139],\n\t\t\t\t\t\t[-76.498900, 37.241015],\n\t\t\t\t\t\t[-76.503640, 37.233856],\n\t\t\t\t\t\t[-76.494008, 37.225408],\n\t\t\t\t\t\t[-76.471799, 37.216016],\n\t\t\t\t\t\t[-76.394132, 37.225150],\n\t\t\t\t\t\t[-76.389793, 37.222981],\n\t\t\t\t\t\t[-76.393600, 37.214049],\n\t\t\t\t\t\t[-76.396052, 37.201087],\n\t\t\t\t\t\t[-76.389284, 37.193503],\n\t\t\t\t\t\t[-76.391252, 37.179887],\n\t\t\t\t\t\t[-76.397883, 37.164415],\n\t\t\t\t\t\t[-76.413638, 37.137968],\n\t\t\t\t\t\t[-76.394470, 37.106248],\n\t\t\t\t\t\t[-76.409614, 37.091905],\n\t\t\t\t\t\t[-76.435519, 37.094882]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US53031\",\n\t\t\t\t\"STATE\": \"53\",\n\t\t\t\t\"COUNTY\": \"031\",\n\t\t\t\t\"NAME\": \"Jefferson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1803.700000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-122.927146, 48.065133],\n\t\t\t\t\t\t[-122.926851, 48.064593],\n\t\t\t\t\t\t[-122.918602, 48.058238],\n\t\t\t\t\t\t[-122.877641, 48.047025],\n\t\t\t\t\t\t[-122.849273, 48.053808],\n\t\t\t\t\t\t[-122.857727, 48.065774],\n\t\t\t\t\t\t[-122.878255, 48.076072],\n\t\t\t\t\t\t[-122.882013, 48.100779],\n\t\t\t\t\t\t[-122.876282, 48.110877],\n\t\t\t\t\t\t[-122.833173, 48.134406],\n\t\t\t\t\t\t[-122.784076, 48.142974],\n\t\t\t\t\t\t[-122.760448, 48.143240],\n\t\t\t\t\t\t[-122.748911, 48.117026],\n\t\t\t\t\t\t[-122.773177, 48.106864],\n\t\t\t\t\t\t[-122.778466, 48.106135],\n\t\t\t\t\t\t[-122.792902, 48.097180],\n\t\t\t\t\t\t[-122.798464, 48.092451],\n\t\t\t\t\t\t[-122.801399, 48.087561],\n\t\t\t\t\t\t[-122.770559, 48.053432],\n\t\t\t\t\t\t[-122.770496, 48.047897],\n\t\t\t\t\t\t[-122.766648, 48.044290],\n\t\t\t\t\t\t[-122.742290, 48.049324],\n\t\t\t\t\t\t[-122.740007, 48.054116],\n\t\t\t\t\t\t[-122.739271, 48.069153],\n\t\t\t\t\t\t[-122.741184, 48.070958],\n\t\t\t\t\t\t[-122.747389, 48.070795],\n\t\t\t\t\t\t[-122.748345, 48.072097],\n\t\t\t\t\t\t[-122.733257, 48.091232],\n\t\t\t\t\t\t[-122.718558, 48.097567],\n\t\t\t\t\t\t[-122.698465, 48.103102],\n\t\t\t\t\t\t[-122.687240, 48.101662],\n\t\t\t\t\t\t[-122.691640, 48.096726],\n\t\t\t\t\t\t[-122.692220, 48.087081],\n\t\t\t\t\t\t[-122.682264, 48.042723],\n\t\t\t\t\t\t[-122.677153, 48.036346],\n\t\t\t\t\t\t[-122.668942, 48.032026],\n\t\t\t\t\t\t[-122.669868, 48.017217],\n\t\t\t\t\t\t[-122.686898, 48.008305],\n\t\t\t\t\t\t[-122.690066, 48.008420],\n\t\t\t\t\t\t[-122.697185, 48.014978],\n\t\t\t\t\t\t[-122.701840, 48.016106],\n\t\t\t\t\t\t[-122.723374, 48.008095],\n\t\t\t\t\t\t[-122.718082, 47.987739],\n\t\t\t\t\t\t[-122.701294, 47.972979],\n\t\t\t\t\t\t[-122.683223, 47.972226],\n\t\t\t\t\t\t[-122.678800, 47.967930],\n\t\t\t\t\t\t[-122.676215, 47.958743],\n\t\t\t\t\t\t[-122.684688, 47.944049],\n\t\t\t\t\t\t[-122.684450, 47.939593],\n\t\t\t\t\t\t[-122.681924, 47.936415],\n\t\t\t\t\t\t[-122.662380, 47.930700],\n\t\t\t\t\t\t[-122.657722, 47.931156],\n\t\t\t\t\t\t[-122.651063, 47.920985],\n\t\t\t\t\t\t[-122.653990, 47.915890],\n\t\t\t\t\t\t[-122.655085, 47.905058],\n\t\t\t\t\t\t[-122.646494, 47.894771],\n\t\t\t\t\t\t[-122.637425, 47.889945],\n\t\t\t\t\t\t[-122.618873, 47.890242],\n\t\t\t\t\t\t[-122.610341, 47.887343],\n\t\t\t\t\t\t[-122.631857, 47.874815],\n\t\t\t\t\t\t[-122.633879, 47.868401],\n\t\t\t\t\t\t[-122.636360, 47.866186],\n\t\t\t\t\t\t[-122.650083, 47.863860],\n\t\t\t\t\t\t[-122.666417, 47.867497],\n\t\t\t\t\t\t[-122.693760, 47.868002],\n\t\t\t\t\t\t[-122.690974, 47.860118],\n\t\t\t\t\t\t[-122.681602, 47.850405],\n\t\t\t\t\t\t[-122.683742, 47.838773],\n\t\t\t\t\t\t[-122.688596, 47.831438],\n\t\t\t\t\t\t[-122.719609, 47.813036],\n\t\t\t\t\t\t[-122.731956, 47.809741],\n\t\t\t\t\t\t[-122.748061, 47.800546],\n\t\t\t\t\t\t[-122.750540, 47.773966],\n\t\t\t\t\t\t[-122.757885, 47.757744],\n\t\t\t\t\t\t[-122.758498, 47.746036],\n\t\t\t\t\t\t[-122.749199, 47.741063],\n\t\t\t\t\t\t[-122.783237, 47.672754],\n\t\t\t\t\t\t[-122.950473, 47.606266],\n\t\t\t\t\t\t[-123.504385, 47.607010],\n\t\t\t\t\t\t[-123.504380, 47.517609],\n\t\t\t\t\t\t[-124.047108, 47.518120],\n\t\t\t\t\t\t[-124.353651, 47.533610],\n\t\t\t\t\t\t[-124.355955, 47.545698],\n\t\t\t\t\t\t[-124.359028, 47.547616],\n\t\t\t\t\t\t[-124.366221, 47.582439],\n\t\t\t\t\t\t[-124.371746, 47.599575],\n\t\t\t\t\t\t[-124.374927, 47.603891],\n\t\t\t\t\t\t[-124.382215, 47.632302],\n\t\t\t\t\t\t[-124.395983, 47.665534],\n\t\t\t\t\t\t[-124.412106, 47.691199],\n\t\t\t\t\t\t[-124.420219, 47.725294],\n\t\t\t\t\t\t[-124.425195, 47.738434],\n\t\t\t\t\t\t[-124.430546, 47.746249],\n\t\t\t\t\t\t[-124.453927, 47.765334],\n\t\t\t\t\t\t[-124.471687, 47.766907],\n\t\t\t\t\t\t[-124.476570, 47.769671],\n\t\t\t\t\t\t[-124.482154, 47.797454],\n\t\t\t\t\t\t[-124.489737, 47.816988],\n\t\t\t\t\t\t[-124.497987, 47.822605],\n\t\t\t\t\t\t[-124.506680, 47.823910],\n\t\t\t\t\t\t[-124.512780, 47.822518],\n\t\t\t\t\t\t[-124.539927, 47.836967],\n\t\t\t\t\t\t[-124.558254, 47.855979],\n\t\t\t\t\t\t[-124.559034, 47.863085],\n\t\t\t\t\t\t[-124.562363, 47.866216],\n\t\t\t\t\t\t[-124.588172, 47.877878],\n\t\t\t\t\t\t[-124.609538, 47.879996],\n\t\t\t\t\t\t[-124.610763, 47.880607],\n\t\t\t\t\t\t[-123.505917, 47.881080],\n\t\t\t\t\t\t[-123.505917, 47.866897],\n\t\t\t\t\t\t[-122.949167, 47.866829],\n\t\t\t\t\t\t[-122.949055, 48.065151],\n\t\t\t\t\t\t[-122.927146, 48.065133]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55031\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"031\",\n\t\t\t\t\"NAME\": \"Douglas\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1304.136000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.212392, 46.649941],\n\t\t\t\t\t\t[-92.207092, 46.651941],\n\t\t\t\t\t\t[-92.202292, 46.655041],\n\t\t\t\t\t\t[-92.197145, 46.663408],\n\t\t\t\t\t\t[-92.191501, 46.672586],\n\t\t\t\t\t\t[-92.191075, 46.673278],\n\t\t\t\t\t\t[-92.187592, 46.678941],\n\t\t\t\t\t\t[-92.187795, 46.690185],\n\t\t\t\t\t\t[-92.193439, 46.695202],\n\t\t\t\t\t\t[-92.194087, 46.696626],\n\t\t\t\t\t\t[-92.194562, 46.697672],\n\t\t\t\t\t\t[-92.196575, 46.702100],\n\t\t\t\t\t\t[-92.196435, 46.702938],\n\t\t\t\t\t\t[-92.196264, 46.703966],\n\t\t\t\t\t\t[-92.195321, 46.709626],\n\t\t\t\t\t\t[-92.189091, 46.717541],\n\t\t\t\t\t\t[-92.172997, 46.724444],\n\t\t\t\t\t\t[-92.170413, 46.725553],\n\t\t\t\t\t\t[-92.116590, 46.748640],\n\t\t\t\t\t\t[-92.089490, 46.749240],\n\t\t\t\t\t\t[-92.033990, 46.708939],\n\t\t\t\t\t\t[-92.024720, 46.705624],\n\t\t\t\t\t\t[-92.020289, 46.704039],\n\t\t\t\t\t\t[-92.015290, 46.706469],\n\t\t\t\t\t\t[-92.007989, 46.705039],\n\t\t\t\t\t\t[-91.987889, 46.692739],\n\t\t\t\t\t\t[-91.973389, 46.686439],\n\t\t\t\t\t\t[-91.961889, 46.682539],\n\t\t\t\t\t\t[-91.942988, 46.679939],\n\t\t\t\t\t\t[-91.930261, 46.682273],\n\t\t\t\t\t\t[-91.886963, 46.690211],\n\t\t\t\t\t\t[-91.878730, 46.690811],\n\t\t\t\t\t\t[-91.877371, 46.690910],\n\t\t\t\t\t\t[-91.876183, 46.690997],\n\t\t\t\t\t\t[-91.874840, 46.691095],\n\t\t\t\t\t\t[-91.866583, 46.691697],\n\t\t\t\t\t\t[-91.864491, 46.691850],\n\t\t\t\t\t\t[-91.857462, 46.692362],\n\t\t\t\t\t\t[-91.840288, 46.689693],\n\t\t\t\t\t\t[-91.831355, 46.689906],\n\t\t\t\t\t\t[-91.820027, 46.690176],\n\t\t\t\t\t\t[-91.817185, 46.690604],\n\t\t\t\t\t\t[-91.817099, 46.690617],\n\t\t\t\t\t\t[-91.814669, 46.690982],\n\t\t\t\t\t\t[-91.799987, 46.693192],\n\t\t\t\t\t\t[-91.798455, 46.693422],\n\t\t\t\t\t\t[-91.790473, 46.694624],\n\t\t\t\t\t\t[-91.790132, 46.694675],\n\t\t\t\t\t\t[-91.781928, 46.697604],\n\t\t\t\t\t\t[-91.758619, 46.705927],\n\t\t\t\t\t\t[-91.749650, 46.709129],\n\t\t\t\t\t\t[-91.748787, 46.709341],\n\t\t\t\t\t\t[-91.735632, 46.712575],\n\t\t\t\t\t\t[-91.677021, 46.726984],\n\t\t\t\t\t\t[-91.675621, 46.727329],\n\t\t\t\t\t\t[-91.667534, 46.729317],\n\t\t\t\t\t\t[-91.662426, 46.730572],\n\t\t\t\t\t\t[-91.660670, 46.731004],\n\t\t\t\t\t\t[-91.658739, 46.731479],\n\t\t\t\t\t\t[-91.652915, 46.732911],\n\t\t\t\t\t\t[-91.646146, 46.734575],\n\t\t\t\t\t\t[-91.645502, 46.734733],\n\t\t\t\t\t\t[-91.636919, 46.737802],\n\t\t\t\t\t\t[-91.636040, 46.738116],\n\t\t\t\t\t\t[-91.636005, 46.738128],\n\t\t\t\t\t\t[-91.635161, 46.738430],\n\t\t\t\t\t\t[-91.635107, 46.738449],\n\t\t\t\t\t\t[-91.625387, 46.741924],\n\t\t\t\t\t\t[-91.593442, 46.753345],\n\t\t\t\t\t\t[-91.592742, 46.753595],\n\t\t\t\t\t\t[-91.592203, 46.753788],\n\t\t\t\t\t\t[-91.590684, 46.754331],\n\t\t\t\t\t\t[-91.576632, 46.757037],\n\t\t\t\t\t\t[-91.574291, 46.757488],\n\t\t\t\t\t\t[-91.574019, 46.757466],\n\t\t\t\t\t\t[-91.571423, 46.757260],\n\t\t\t\t\t\t[-91.569075, 46.757074],\n\t\t\t\t\t\t[-91.557503, 46.756155],\n\t\t\t\t\t\t[-91.551445, 46.755674],\n\t\t\t\t\t\t[-91.551408, 46.755666],\n\t\t\t\t\t\t[-91.551282, 46.157045],\n\t\t\t\t\t\t[-92.049636, 46.157597],\n\t\t\t\t\t\t[-92.293706, 46.157321],\n\t\t\t\t\t\t[-92.293744, 46.166838],\n\t\t\t\t\t\t[-92.293857, 46.180073],\n\t\t\t\t\t\t[-92.293558, 46.224578],\n\t\t\t\t\t\t[-92.293619, 46.244043],\n\t\t\t\t\t\t[-92.293074, 46.295129],\n\t\t\t\t\t\t[-92.293007, 46.297987],\n\t\t\t\t\t\t[-92.292840, 46.304319],\n\t\t\t\t\t\t[-92.292839, 46.307107],\n\t\t\t\t\t\t[-92.292880, 46.313752],\n\t\t\t\t\t\t[-92.292803, 46.314628],\n\t\t\t\t\t\t[-92.292782, 46.319312],\n\t\t\t\t\t\t[-92.292999, 46.321894],\n\t\t\t\t\t\t[-92.292860, 46.417220],\n\t\t\t\t\t\t[-92.292847, 46.420876],\n\t\t\t\t\t\t[-92.292727, 46.431993],\n\t\t\t\t\t\t[-92.292510, 46.478761],\n\t\t\t\t\t\t[-92.292371, 46.495585],\n\t\t\t\t\t\t[-92.291647, 46.604649],\n\t\t\t\t\t\t[-92.291597, 46.624941],\n\t\t\t\t\t\t[-92.292192, 46.663242],\n\t\t\t\t\t\t[-92.277155, 46.655596],\n\t\t\t\t\t\t[-92.276373, 46.655198],\n\t\t\t\t\t\t[-92.274465, 46.654227],\n\t\t\t\t\t\t[-92.269948, 46.651930],\n\t\t\t\t\t\t[-92.264462, 46.651393],\n\t\t\t\t\t\t[-92.262503, 46.651201],\n\t\t\t\t\t\t[-92.256654, 46.650628],\n\t\t\t\t\t\t[-92.254379, 46.650405],\n\t\t\t\t\t\t[-92.250861, 46.650061],\n\t\t\t\t\t\t[-92.242493, 46.649241],\n\t\t\t\t\t\t[-92.234815, 46.649420],\n\t\t\t\t\t\t[-92.232647, 46.649470],\n\t\t\t\t\t\t[-92.231944, 46.649486],\n\t\t\t\t\t\t[-92.228155, 46.649574],\n\t\t\t\t\t\t[-92.222338, 46.649710],\n\t\t\t\t\t\t[-92.221731, 46.649724],\n\t\t\t\t\t\t[-92.212392, 46.649941]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55051\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"051\",\n\t\t\t\t\"NAME\": \"Iron\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 758.174000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.549596, 46.584138],\n\t\t\t\t\t\t[-90.538346, 46.581182],\n\t\t\t\t\t\t[-90.537962, 46.581081],\n\t\t\t\t\t\t[-90.537829, 46.581143],\n\t\t\t\t\t\t[-90.527776, 46.585858],\n\t\t\t\t\t\t[-90.525788, 46.586790],\n\t\t\t\t\t\t[-90.525498, 46.586926],\n\t\t\t\t\t\t[-90.525334, 46.586949],\n\t\t\t\t\t\t[-90.522674, 46.587313],\n\t\t\t\t\t\t[-90.519105, 46.587803],\n\t\t\t\t\t\t[-90.519002, 46.587817],\n\t\t\t\t\t\t[-90.518510, 46.587885],\n\t\t\t\t\t\t[-90.505909, 46.589614],\n\t\t\t\t\t\t[-90.497359, 46.585509],\n\t\t\t\t\t\t[-90.478826, 46.576610],\n\t\t\t\t\t\t[-90.478469, 46.576439],\n\t\t\t\t\t\t[-90.476480, 46.575484],\n\t\t\t\t\t\t[-90.476315, 46.575405],\n\t\t\t\t\t\t[-90.476046, 46.575276],\n\t\t\t\t\t\t[-90.473760, 46.574178],\n\t\t\t\t\t\t[-90.472483, 46.573730],\n\t\t\t\t\t\t[-90.440085, 46.562365],\n\t\t\t\t\t\t[-90.438174, 46.561695],\n\t\t\t\t\t\t[-90.437596, 46.561492],\n\t\t\t\t\t\t[-90.437532, 46.561507],\n\t\t\t\t\t\t[-90.436512, 46.561748],\n\t\t\t\t\t\t[-90.436314, 46.561795],\n\t\t\t\t\t\t[-90.434812, 46.562150],\n\t\t\t\t\t\t[-90.433367, 46.562492],\n\t\t\t\t\t\t[-90.418136, 46.566094],\n\t\t\t\t\t\t[-90.414596, 46.557320],\n\t\t\t\t\t\t[-90.414464, 46.557320],\n\t\t\t\t\t\t[-90.400429, 46.544384],\n\t\t\t\t\t\t[-90.400041, 46.544384],\n\t\t\t\t\t\t[-90.374461, 46.539212],\n\t\t\t\t\t\t[-90.357676, 46.540271],\n\t\t\t\t\t\t[-90.313894, 46.516199],\n\t\t\t\t\t\t[-90.313839, 46.516199],\n\t\t\t\t\t\t[-90.307716, 46.518392],\n\t\t\t\t\t\t[-90.284545, 46.518714],\n\t\t\t\t\t\t[-90.204572, 46.478998],\n\t\t\t\t\t\t[-90.177860, 46.440548],\n\t\t\t\t\t\t[-90.166919, 46.439851],\n\t\t\t\t\t\t[-90.166909, 46.439311],\n\t\t\t\t\t\t[-90.134656, 46.374979],\n\t\t\t\t\t\t[-90.134663, 46.374947],\n\t\t\t\t\t\t[-90.119757, 46.359748],\n\t\t\t\t\t\t[-90.119691, 46.359755],\n\t\t\t\t\t\t[-90.120489, 46.336852],\n\t\t\t\t\t\t[-89.929093, 46.300087],\n\t\t\t\t\t\t[-89.928837, 45.981967],\n\t\t\t\t\t\t[-90.043958, 45.981948],\n\t\t\t\t\t\t[-90.302063, 45.981349],\n\t\t\t\t\t\t[-90.303072, 46.154849],\n\t\t\t\t\t\t[-90.426274, 46.154050],\n\t\t\t\t\t\t[-90.425978, 46.240450],\n\t\t\t\t\t\t[-90.552180, 46.240851],\n\t\t\t\t\t\t[-90.549596, 46.584138]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US53049\",\n\t\t\t\t\"STATE\": \"53\",\n\t\t\t\t\"COUNTY\": \"049\",\n\t\t\t\t\"NAME\": \"Pacific\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 932.658000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-123.358247, 46.384227],\n\t\t\t\t\t\t[-123.726060, 46.385626],\n\t\t\t\t\t\t[-123.727913, 46.289661],\n\t\t\t\t\t\t[-123.728585, 46.288725],\n\t\t\t\t\t\t[-123.741478, 46.290274],\n\t\t\t\t\t\t[-123.759560, 46.275073],\n\t\t\t\t\t\t[-123.766682, 46.273499],\n\t\t\t\t\t\t[-123.775054, 46.274599],\n\t\t\t\t\t\t[-123.782654, 46.280227],\n\t\t\t\t\t\t[-123.795556, 46.284501],\n\t\t\t\t\t\t[-123.806139, 46.283588],\n\t\t\t\t\t\t[-123.875525, 46.239787],\n\t\t\t\t\t\t[-123.909306, 46.245491],\n\t\t\t\t\t\t[-123.919581, 46.251217],\n\t\t\t\t\t\t[-123.954353, 46.277001],\n\t\t\t\t\t\t[-123.969427, 46.291398],\n\t\t\t\t\t\t[-123.970912, 46.293866],\n\t\t\t\t\t\t[-123.970355, 46.299352],\n\t\t\t\t\t\t[-123.974509, 46.303063],\n\t\t\t\t\t\t[-123.985204, 46.309039],\n\t\t\t\t\t\t[-124.001264, 46.313260],\n\t\t\t\t\t\t[-124.020551, 46.315737],\n\t\t\t\t\t\t[-124.029924, 46.308312],\n\t\t\t\t\t\t[-124.035599, 46.296843],\n\t\t\t\t\t\t[-124.038797, 46.283675],\n\t\t\t\t\t\t[-124.044018, 46.275925],\n\t\t\t\t\t\t[-124.060961, 46.278761],\n\t\t\t\t\t\t[-124.080671, 46.267239],\n\t\t\t\t\t\t[-124.082187, 46.269159],\n\t\t\t\t\t\t[-124.081729, 46.274714],\n\t\t\t\t\t\t[-124.076262, 46.296498],\n\t\t\t\t\t\t[-124.071384, 46.305504],\n\t\t\t\t\t\t[-124.064624, 46.326899],\n\t\t\t\t\t\t[-124.058351, 46.386503],\n\t\t\t\t\t\t[-124.057425, 46.409315],\n\t\t\t\t\t\t[-124.057024, 46.493338],\n\t\t\t\t\t\t[-124.061953, 46.556165],\n\t\t\t\t\t\t[-124.068420, 46.601397],\n\t\t\t\t\t\t[-124.069583, 46.630651],\n\t\t\t\t\t\t[-124.068655, 46.634879],\n\t\t\t\t\t\t[-124.062715, 46.642582],\n\t\t\t\t\t\t[-124.056476, 46.645645],\n\t\t\t\t\t\t[-124.048444, 46.645827],\n\t\t\t\t\t\t[-124.035874, 46.630822],\n\t\t\t\t\t\t[-124.052708, 46.622796],\n\t\t\t\t\t\t[-124.050842, 46.617421],\n\t\t\t\t\t\t[-124.028799, 46.591040],\n\t\t\t\t\t\t[-124.023566, 46.582559],\n\t\t\t\t\t\t[-124.023148, 46.564113],\n\t\t\t\t\t\t[-124.026019, 46.531589],\n\t\t\t\t\t\t[-124.031737, 46.496375],\n\t\t\t\t\t\t[-124.026032, 46.462978],\n\t\t\t\t\t\t[-124.001271, 46.459992],\n\t\t\t\t\t\t[-123.990615, 46.463019],\n\t\t\t\t\t\t[-123.990870, 46.465738],\n\t\t\t\t\t\t[-123.994181, 46.468868],\n\t\t\t\t\t\t[-123.992680, 46.488617],\n\t\t\t\t\t\t[-123.988386, 46.497008],\n\t\t\t\t\t\t[-123.983688, 46.498542],\n\t\t\t\t\t\t[-123.979053, 46.497378],\n\t\t\t\t\t\t[-123.979213, 46.489949],\n\t\t\t\t\t\t[-123.970830, 46.475370],\n\t\t\t\t\t\t[-123.968044, 46.473497],\n\t\t\t\t\t\t[-123.943667, 46.477197],\n\t\t\t\t\t\t[-123.921192, 46.507731],\n\t\t\t\t\t\t[-123.896703, 46.522665],\n\t\t\t\t\t\t[-123.897242, 46.528480],\n\t\t\t\t\t\t[-123.894254, 46.537028],\n\t\t\t\t\t\t[-123.903321, 46.551910],\n\t\t\t\t\t\t[-123.916902, 46.562633],\n\t\t\t\t\t\t[-123.920247, 46.567343],\n\t\t\t\t\t\t[-123.922332, 46.577057],\n\t\t\t\t\t\t[-123.928861, 46.588875],\n\t\t\t\t\t\t[-123.939139, 46.596326],\n\t\t\t\t\t\t[-123.955556, 46.603570],\n\t\t\t\t\t\t[-123.959175, 46.613581],\n\t\t\t\t\t\t[-123.960642, 46.636364],\n\t\t\t\t\t\t[-123.940616, 46.640862],\n\t\t\t\t\t\t[-123.921913, 46.650262],\n\t\t\t\t\t\t[-123.920916, 46.653576],\n\t\t\t\t\t\t[-123.923269, 46.672708],\n\t\t\t\t\t\t[-123.915596, 46.678649],\n\t\t\t\t\t\t[-123.895601, 46.683672],\n\t\t\t\t\t\t[-123.864902, 46.698685],\n\t\t\t\t\t\t[-123.851356, 46.702560],\n\t\t\t\t\t\t[-123.846210, 46.716795],\n\t\t\t\t\t\t[-123.848725, 46.719898],\n\t\t\t\t\t\t[-123.862149, 46.727749],\n\t\t\t\t\t\t[-123.870782, 46.728327],\n\t\t\t\t\t\t[-123.876680, 46.730657],\n\t\t\t\t\t\t[-123.893054, 46.750204],\n\t\t\t\t\t\t[-123.898641, 46.750205],\n\t\t\t\t\t\t[-123.910716, 46.746715],\n\t\t\t\t\t\t[-123.916371, 46.741322],\n\t\t\t\t\t\t[-123.915840, 46.737322],\n\t\t\t\t\t\t[-123.912850, 46.730647],\n\t\t\t\t\t\t[-123.916874, 46.726739],\n\t\t\t\t\t\t[-123.929073, 46.725278],\n\t\t\t\t\t\t[-123.948683, 46.725369],\n\t\t\t\t\t\t[-123.968564, 46.736106],\n\t\t\t\t\t\t[-123.974994, 46.733391],\n\t\t\t\t\t\t[-123.979655, 46.724658],\n\t\t\t\t\t\t[-123.975157, 46.713971],\n\t\t\t\t\t\t[-123.966886, 46.705184],\n\t\t\t\t\t\t[-123.973663, 46.703353],\n\t\t\t\t\t\t[-123.987521, 46.707507],\n\t\t\t\t\t\t[-123.994242, 46.707929],\n\t\t\t\t\t\t[-124.003458, 46.702337],\n\t\t\t\t\t\t[-124.022413, 46.708973],\n\t\t\t\t\t\t[-124.042478, 46.720040],\n\t\t\t\t\t\t[-124.042111, 46.722783],\n\t\t\t\t\t\t[-124.046399, 46.725686],\n\t\t\t\t\t\t[-124.063117, 46.733664],\n\t\t\t\t\t\t[-124.080983, 46.735003],\n\t\t\t\t\t\t[-124.092176, 46.741624],\n\t\t\t\t\t\t[-124.096515, 46.746202],\n\t\t\t\t\t\t[-124.095041, 46.756812],\n\t\t\t\t\t\t[-124.096655, 46.784374],\n\t\t\t\t\t\t[-124.098359, 46.794157],\n\t\t\t\t\t\t[-123.370775, 46.792449],\n\t\t\t\t\t\t[-123.358247, 46.384227]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51570\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"570\",\n\t\t\t\t\"NAME\": \"Colonial Heights\",\n\t\t\t\t\"LSAD\": \"city\",\n\t\t\t\t\"CENSUSAREA\": 7.520000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.416510, 37.233157],\n\t\t\t\t\t\t[-77.414406, 37.260949],\n\t\t\t\t\t\t[-77.431705, 37.276348],\n\t\t\t\t\t\t[-77.362322, 37.282162],\n\t\t\t\t\t\t[-77.379193, 37.267580],\n\t\t\t\t\t\t[-77.382521, 37.242837],\n\t\t\t\t\t\t[-77.385702, 37.241158],\n\t\t\t\t\t\t[-77.392064, 37.240853],\n\t\t\t\t\t\t[-77.394214, 37.239524],\n\t\t\t\t\t\t[-77.402100, 37.239521],\n\t\t\t\t\t\t[-77.403671, 37.237346],\n\t\t\t\t\t\t[-77.405034, 37.236100],\n\t\t\t\t\t\t[-77.406415, 37.235645],\n\t\t\t\t\t\t[-77.409877, 37.233723],\n\t\t\t\t\t\t[-77.413119, 37.234257],\n\t\t\t\t\t\t[-77.415420, 37.233796],\n\t\t\t\t\t\t[-77.416510, 37.233157]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51630\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"630\",\n\t\t\t\t\"NAME\": \"Fredericksburg\",\n\t\t\t\t\"LSAD\": \"city\",\n\t\t\t\t\"CENSUSAREA\": 10.440000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.530289, 38.309172],\n\t\t\t\t\t\t[-77.526243, 38.309531],\n\t\t\t\t\t\t[-77.527185, 38.320655],\n\t\t\t\t\t\t[-77.506782, 38.325925],\n\t\t\t\t\t\t[-77.498754, 38.325430],\n\t\t\t\t\t\t[-77.478996, 38.316693],\n\t\t\t\t\t\t[-77.475137, 38.320960],\n\t\t\t\t\t\t[-77.467053, 38.318660],\n\t\t\t\t\t\t[-77.455692, 38.301341],\n\t\t\t\t\t\t[-77.447126, 38.284614],\n\t\t\t\t\t\t[-77.457837, 38.271108],\n\t\t\t\t\t\t[-77.467151, 38.279780],\n\t\t\t\t\t\t[-77.473388, 38.270245],\n\t\t\t\t\t\t[-77.494708, 38.273834],\n\t\t\t\t\t\t[-77.497909, 38.282910],\n\t\t\t\t\t\t[-77.511826, 38.279953],\n\t\t\t\t\t\t[-77.507563, 38.292143],\n\t\t\t\t\t\t[-77.516805, 38.295128],\n\t\t\t\t\t\t[-77.514883, 38.305499],\n\t\t\t\t\t\t[-77.516421, 38.305614],\n\t\t\t\t\t\t[-77.516344, 38.306402],\n\t\t\t\t\t\t[-77.520165, 38.306699],\n\t\t\t\t\t\t[-77.522272, 38.306589],\n\t\t\t\t\t\t[-77.526039, 38.307112],\n\t\t\t\t\t\t[-77.529618, 38.308380],\n\t\t\t\t\t\t[-77.532313, 38.308498],\n\t\t\t\t\t\t[-77.530289, 38.309172]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51650\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"650\",\n\t\t\t\t\"NAME\": \"Hampton\",\n\t\t\t\t\"LSAD\": \"city\",\n\t\t\t\t\"CENSUSAREA\": 51.413000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.394470, 37.106248],\n\t\t\t\t\t\t[-76.393795, 37.108397],\n\t\t\t\t\t\t[-76.384553, 37.105167],\n\t\t\t\t\t\t[-76.384265, 37.107383],\n\t\t\t\t\t\t[-76.387733, 37.109181],\n\t\t\t\t\t\t[-76.381383, 37.111939],\n\t\t\t\t\t\t[-76.287236, 37.117453],\n\t\t\t\t\t\t[-76.274463, 37.094544],\n\t\t\t\t\t\t[-76.271262, 37.084544],\n\t\t\t\t\t\t[-76.292863, 37.035145],\n\t\t\t\t\t\t[-76.300352, 37.008850],\n\t\t\t\t\t\t[-76.304272, 37.001378],\n\t\t\t\t\t\t[-76.312048, 37.000371],\n\t\t\t\t\t\t[-76.315008, 37.001683],\n\t\t\t\t\t\t[-76.314624, 37.009330],\n\t\t\t\t\t\t[-76.318065, 37.013846],\n\t\t\t\t\t\t[-76.329531, 37.014556],\n\t\t\t\t\t\t[-76.340110, 37.015212],\n\t\t\t\t\t\t[-76.340666, 37.015246],\n\t\t\t\t\t\t[-76.348066, 37.006747],\n\t\t\t\t\t\t[-76.356366, 37.002947],\n\t\t\t\t\t\t[-76.373567, 36.998347],\n\t\t\t\t\t\t[-76.383367, 36.993347],\n\t\t\t\t\t\t[-76.387711, 36.989671],\n\t\t\t\t\t\t[-76.396368, 36.982347],\n\t\t\t\t\t\t[-76.408568, 36.969147],\n\t\t\t\t\t\t[-76.411768, 36.962847],\n\t\t\t\t\t\t[-76.418969, 36.964047],\n\t\t\t\t\t\t[-76.428869, 36.969947],\n\t\t\t\t\t\t[-76.452118, 36.998163],\n\t\t\t\t\t\t[-76.452461, 37.004603],\n\t\t\t\t\t\t[-76.449891, 37.004868],\n\t\t\t\t\t\t[-76.448231, 37.007705],\n\t\t\t\t\t\t[-76.464471, 37.027547],\n\t\t\t\t\t\t[-76.457871, 37.019747],\n\t\t\t\t\t\t[-76.452682, 37.024375],\n\t\t\t\t\t\t[-76.458849, 37.034299],\n\t\t\t\t\t\t[-76.449733, 37.043236],\n\t\t\t\t\t\t[-76.445859, 37.069328],\n\t\t\t\t\t\t[-76.451170, 37.076346],\n\t\t\t\t\t\t[-76.435519, 37.094882],\n\t\t\t\t\t\t[-76.409614, 37.091905],\n\t\t\t\t\t\t[-76.394470, 37.106248]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51700\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"700\",\n\t\t\t\t\"NAME\": \"Newport News\",\n\t\t\t\t\"LSAD\": \"city\",\n\t\t\t\t\"CENSUSAREA\": 68.714000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.581575, 37.212845],\n\t\t\t\t\t\t[-76.565092, 37.220645],\n\t\t\t\t\t\t[-76.525624, 37.176628],\n\t\t\t\t\t\t[-76.435519, 37.094882],\n\t\t\t\t\t\t[-76.451170, 37.076346],\n\t\t\t\t\t\t[-76.445859, 37.069328],\n\t\t\t\t\t\t[-76.449733, 37.043236],\n\t\t\t\t\t\t[-76.458849, 37.034299],\n\t\t\t\t\t\t[-76.452682, 37.024375],\n\t\t\t\t\t\t[-76.457871, 37.019747],\n\t\t\t\t\t\t[-76.464471, 37.027547],\n\t\t\t\t\t\t[-76.469490, 37.030414],\n\t\t\t\t\t\t[-76.507614, 37.052188],\n\t\t\t\t\t\t[-76.509339, 37.053173],\n\t\t\t\t\t\t[-76.512289, 37.054858],\n\t\t\t\t\t\t[-76.518242, 37.055351],\n\t\t\t\t\t\t[-76.526273, 37.062947],\n\t\t\t\t\t\t[-76.527973, 37.068247],\n\t\t\t\t\t\t[-76.526573, 37.070047],\n\t\t\t\t\t\t[-76.526203, 37.077773],\n\t\t\t\t\t\t[-76.528997, 37.079388],\n\t\t\t\t\t\t[-76.536875, 37.083942],\n\t\t\t\t\t\t[-76.555066, 37.075859],\n\t\t\t\t\t\t[-76.564219, 37.077507],\n\t\t\t\t\t\t[-76.567931, 37.080467],\n\t\t\t\t\t\t[-76.579499, 37.096627],\n\t\t\t\t\t\t[-76.618252, 37.119347],\n\t\t\t\t\t\t[-76.624780, 37.127091],\n\t\t\t\t\t\t[-76.622252, 37.142146],\n\t\t\t\t\t\t[-76.617084, 37.144498],\n\t\t\t\t\t\t[-76.604476, 37.160034],\n\t\t\t\t\t\t[-76.606684, 37.166674],\n\t\t\t\t\t\t[-76.610972, 37.166994],\n\t\t\t\t\t\t[-76.611018, 37.167097],\n\t\t\t\t\t\t[-76.577675, 37.190445],\n\t\t\t\t\t\t[-76.591432, 37.214721],\n\t\t\t\t\t\t[-76.591483, 37.215083],\n\t\t\t\t\t\t[-76.587528, 37.213086],\n\t\t\t\t\t\t[-76.582487, 37.212614],\n\t\t\t\t\t\t[-76.581575, 37.212845]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51735\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"735\",\n\t\t\t\t\"NAME\": \"Poquoson\",\n\t\t\t\t\"LSAD\": \"city\",\n\t\t\t\t\"CENSUSAREA\": 15.317000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-76.287236, 37.117453],\n\t\t\t\t\t\t[-76.381383, 37.111939],\n\t\t\t\t\t\t[-76.387733, 37.109181],\n\t\t\t\t\t\t[-76.384265, 37.107383],\n\t\t\t\t\t\t[-76.384553, 37.105167],\n\t\t\t\t\t\t[-76.393795, 37.108397],\n\t\t\t\t\t\t[-76.394470, 37.106248],\n\t\t\t\t\t\t[-76.413638, 37.137968],\n\t\t\t\t\t\t[-76.397883, 37.164415],\n\t\t\t\t\t\t[-76.399659, 37.160272],\n\t\t\t\t\t\t[-76.394756, 37.157568],\n\t\t\t\t\t\t[-76.381379, 37.155711],\n\t\t\t\t\t\t[-76.375255, 37.160840],\n\t\t\t\t\t\t[-76.359690, 37.168580],\n\t\t\t\t\t\t[-76.348658, 37.170655],\n\t\t\t\t\t\t[-76.343234, 37.166207],\n\t\t\t\t\t\t[-76.344898, 37.164479],\n\t\t\t\t\t\t[-76.344050, 37.160367],\n\t\t\t\t\t\t[-76.340129, 37.151823],\n\t\t\t\t\t\t[-76.334017, 37.144223],\n\t\t\t\t\t\t[-76.330481, 37.141727],\n\t\t\t\t\t\t[-76.324353, 37.142895],\n\t\t\t\t\t\t[-76.311088, 37.138495],\n\t\t\t\t\t\t[-76.292344, 37.126615],\n\t\t\t\t\t\t[-76.287236, 37.117453]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51770\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"770\",\n\t\t\t\t\"NAME\": \"Roanoke\",\n\t\t\t\t\"LSAD\": \"city\",\n\t\t\t\t\"CENSUSAREA\": 42.562000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.022428, 37.308156],\n\t\t\t\t\t\t[-80.017082, 37.314342],\n\t\t\t\t\t\t[-80.012638, 37.316491],\n\t\t\t\t\t\t[-80.004807, 37.315614],\n\t\t\t\t\t\t[-80.001111, 37.319196],\n\t\t\t\t\t\t[-79.993120, 37.324829],\n\t\t\t\t\t\t[-79.979809, 37.331751],\n\t\t\t\t\t\t[-79.974313, 37.335227],\n\t\t\t\t\t\t[-79.904965, 37.320537],\n\t\t\t\t\t\t[-79.878186, 37.291745],\n\t\t\t\t\t\t[-79.882580, 37.294610],\n\t\t\t\t\t\t[-79.917601, 37.280899],\n\t\t\t\t\t\t[-79.904962, 37.244325],\n\t\t\t\t\t\t[-79.950384, 37.211274],\n\t\t\t\t\t\t[-80.033476, 37.262811],\n\t\t\t\t\t\t[-80.018760, 37.264336],\n\t\t\t\t\t\t[-80.022428, 37.308156]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55071\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"071\",\n\t\t\t\t\"NAME\": \"Manitowoc\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 589.082000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.542950, 44.327513],\n\t\t\t\t\t\t[-87.545382, 44.321385],\n\t\t\t\t\t\t[-87.544725, 44.307068],\n\t\t\t\t\t\t[-87.544716, 44.306864],\n\t\t\t\t\t\t[-87.544675, 44.306707],\n\t\t\t\t\t\t[-87.541382, 44.294018],\n\t\t\t\t\t\t[-87.541265, 44.293567],\n\t\t\t\t\t\t[-87.541156, 44.293147],\n\t\t\t\t\t\t[-87.541155, 44.293143],\n\t\t\t\t\t\t[-87.541053, 44.292968],\n\t\t\t\t\t\t[-87.526466, 44.268016],\n\t\t\t\t\t\t[-87.526391, 44.267888],\n\t\t\t\t\t\t[-87.526226, 44.267605],\n\t\t\t\t\t\t[-87.525824, 44.266918],\n\t\t\t\t\t\t[-87.525797, 44.266871],\n\t\t\t\t\t\t[-87.525703, 44.266711],\n\t\t\t\t\t\t[-87.525643, 44.266609],\n\t\t\t\t\t\t[-87.525485, 44.266338],\n\t\t\t\t\t\t[-87.525455, 44.266285],\n\t\t\t\t\t\t[-87.525294, 44.266010],\n\t\t\t\t\t\t[-87.525211, 44.265869],\n\t\t\t\t\t\t[-87.524691, 44.264979],\n\t\t\t\t\t\t[-87.524459, 44.264583],\n\t\t\t\t\t\t[-87.524193, 44.264128],\n\t\t\t\t\t\t[-87.523179, 44.262393],\n\t\t\t\t\t\t[-87.522840, 44.261813],\n\t\t\t\t\t\t[-87.522557, 44.261329],\n\t\t\t\t\t\t[-87.521862, 44.260140],\n\t\t\t\t\t\t[-87.521755, 44.259957],\n\t\t\t\t\t\t[-87.521330, 44.258993],\n\t\t\t\t\t\t[-87.521318, 44.258965],\n\t\t\t\t\t\t[-87.515406, 44.245537],\n\t\t\t\t\t\t[-87.515399, 44.245522],\n\t\t\t\t\t\t[-87.515314, 44.245328],\n\t\t\t\t\t\t[-87.508457, 44.229755],\n\t\t\t\t\t\t[-87.508419, 44.229669],\n\t\t\t\t\t\t[-87.508412, 44.229546],\n\t\t\t\t\t\t[-87.507419, 44.210803],\n\t\t\t\t\t\t[-87.512903, 44.192808],\n\t\t\t\t\t\t[-87.519660, 44.179870],\n\t\t\t\t\t\t[-87.539940, 44.159690],\n\t\t\t\t\t\t[-87.550076, 44.152933],\n\t\t\t\t\t\t[-87.563181, 44.144195],\n\t\t\t\t\t\t[-87.563551, 44.144072],\n\t\t\t\t\t\t[-87.567045, 44.142914],\n\t\t\t\t\t\t[-87.567817, 44.142658],\n\t\t\t\t\t\t[-87.570533, 44.141757],\n\t\t\t\t\t\t[-87.596680, 44.133088],\n\t\t\t\t\t\t[-87.597910, 44.132680],\n\t\t\t\t\t\t[-87.599055, 44.132301],\n\t\t\t\t\t\t[-87.600882, 44.131695],\n\t\t\t\t\t\t[-87.603572, 44.130390],\n\t\t\t\t\t\t[-87.621082, 44.121895],\n\t\t\t\t\t\t[-87.645800, 44.105222],\n\t\t\t\t\t\t[-87.646583, 44.104694],\n\t\t\t\t\t\t[-87.646719, 44.104335],\n\t\t\t\t\t\t[-87.647551, 44.102128],\n\t\t\t\t\t\t[-87.647603, 44.101991],\n\t\t\t\t\t\t[-87.651507, 44.091639],\n\t\t\t\t\t\t[-87.654935, 44.082552],\n\t\t\t\t\t\t[-87.655183, 44.081894],\n\t\t\t\t\t\t[-87.653483, 44.067194],\n\t\t\t\t\t\t[-87.653691, 44.065961],\n\t\t\t\t\t\t[-87.656062, 44.051919],\n\t\t\t\t\t\t[-87.656083, 44.051794],\n\t\t\t\t\t\t[-87.671316, 44.037350],\n\t\t\t\t\t\t[-87.683361, 44.020139],\n\t\t\t\t\t\t[-87.686389, 44.012520],\n\t\t\t\t\t\t[-87.691479, 43.999710],\n\t\t\t\t\t\t[-87.695053, 43.990715],\n\t\t\t\t\t\t[-87.695503, 43.989582],\n\t\t\t\t\t\t[-87.695511, 43.989524],\n\t\t\t\t\t\t[-87.698920, 43.965936],\n\t\t\t\t\t\t[-87.699029, 43.965734],\n\t\t\t\t\t\t[-87.700125, 43.963712],\n\t\t\t\t\t\t[-87.700321, 43.963351],\n\t\t\t\t\t\t[-87.702707, 43.958946],\n\t\t\t\t\t\t[-87.702719, 43.958926],\n\t\t\t\t\t\t[-87.703951, 43.956651],\n\t\t\t\t\t\t[-87.704679, 43.955872],\n\t\t\t\t\t\t[-87.706656, 43.953753],\n\t\t\t\t\t\t[-87.709463, 43.950747],\n\t\t\t\t\t\t[-87.716037, 43.943705],\n\t\t\t\t\t\t[-87.718170, 43.939498],\n\t\t\t\t\t\t[-87.719041, 43.937781],\n\t\t\t\t\t\t[-87.719041, 43.937780],\n\t\t\t\t\t\t[-87.719194, 43.937100],\n\t\t\t\t\t\t[-87.720121, 43.932958],\n\t\t\t\t\t\t[-87.720382, 43.931794],\n\t\t\t\t\t\t[-87.720734, 43.930224],\n\t\t\t\t\t\t[-87.721268, 43.927840],\n\t\t\t\t\t\t[-87.722100, 43.924128],\n\t\t\t\t\t\t[-87.723716, 43.916915],\n\t\t\t\t\t\t[-87.724244, 43.914557],\n\t\t\t\t\t\t[-87.726766, 43.903297],\n\t\t\t\t\t\t[-87.726803, 43.903133],\n\t\t\t\t\t\t[-87.726841, 43.903040],\n\t\t\t\t\t\t[-87.728542, 43.898920],\n\t\t\t\t\t\t[-87.728885, 43.898090],\n\t\t\t\t\t\t[-87.730630, 43.893862],\n\t\t\t\t\t\t[-87.730645, 43.893825],\n\t\t\t\t\t\t[-87.731322, 43.892184],\n\t\t\t\t\t\t[-88.041794, 43.891692],\n\t\t\t\t\t\t[-88.043240, 44.241018],\n\t\t\t\t\t\t[-87.888087, 44.240461],\n\t\t\t\t\t\t[-87.887526, 44.327589],\n\t\t\t\t\t\t[-87.766194, 44.327185],\n\t\t\t\t\t\t[-87.542950, 44.327513]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55079\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"079\",\n\t\t\t\t\"NAME\": \"Milwaukee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 241.402000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.892090, 43.192044],\n\t\t\t\t\t\t[-87.888570, 43.187795],\n\t\t\t\t\t\t[-87.887586, 43.186608],\n\t\t\t\t\t\t[-87.886266, 43.183359],\n\t\t\t\t\t\t[-87.884878, 43.179944],\n\t\t\t\t\t\t[-87.884872, 43.179929],\n\t\t\t\t\t\t[-87.884769, 43.179674],\n\t\t\t\t\t\t[-87.881085, 43.170609],\n\t\t\t\t\t\t[-87.886380, 43.160255],\n\t\t\t\t\t\t[-87.888849, 43.155429],\n\t\t\t\t\t\t[-87.889327, 43.154493],\n\t\t\t\t\t\t[-87.889375, 43.154400],\n\t\t\t\t\t\t[-87.889634, 43.153894],\n\t\t\t\t\t\t[-87.891059, 43.151108],\n\t\t\t\t\t\t[-87.892285, 43.148710],\n\t\t\t\t\t\t[-87.896008, 43.143405],\n\t\t\t\t\t\t[-87.898105, 43.140417],\n\t\t\t\t\t\t[-87.899020, 43.139112],\n\t\t\t\t\t\t[-87.900285, 43.137310],\n\t\t\t\t\t\t[-87.901345, 43.133357],\n\t\t\t\t\t\t[-87.901385, 43.133210],\n\t\t\t\t\t\t[-87.901359, 43.133002],\n\t\t\t\t\t\t[-87.900496, 43.126000],\n\t\t\t\t\t\t[-87.900485, 43.125910],\n\t\t\t\t\t\t[-87.900463, 43.125874],\n\t\t\t\t\t\t[-87.893185, 43.114011],\n\t\t\t\t\t\t[-87.879169, 43.101717],\n\t\t\t\t\t\t[-87.877915, 43.100617],\n\t\t\t\t\t\t[-87.876084, 43.099011],\n\t\t\t\t\t\t[-87.872493, 43.089810],\n\t\t\t\t\t\t[-87.872362, 43.089474],\n\t\t\t\t\t\t[-87.872352, 43.089449],\n\t\t\t\t\t\t[-87.872255, 43.089199],\n\t\t\t\t\t\t[-87.871928, 43.088363],\n\t\t\t\t\t\t[-87.870459, 43.084598],\n\t\t\t\t\t\t[-87.866487, 43.074419],\n\t\t\t\t\t\t[-87.866484, 43.074412],\n\t\t\t\t\t\t[-87.870184, 43.064412],\n\t\t\t\t\t\t[-87.870217, 43.064376],\n\t\t\t\t\t\t[-87.875460, 43.058516],\n\t\t\t\t\t\t[-87.876343, 43.057529],\n\t\t\t\t\t\t[-87.881930, 43.051285],\n\t\t\t\t\t\t[-87.882069, 43.051130],\n\t\t\t\t\t\t[-87.882084, 43.051113],\n\t\t\t\t\t\t[-87.889883, 43.045834],\n\t\t\t\t\t\t[-87.894813, 43.042497],\n\t\t\t\t\t\t[-87.895028, 43.042351],\n\t\t\t\t\t\t[-87.895084, 43.042313],\n\t\t\t\t\t\t[-87.895127, 43.042152],\n\t\t\t\t\t\t[-87.896227, 43.038028],\n\t\t\t\t\t\t[-87.896598, 43.036637],\n\t\t\t\t\t\t[-87.898184, 43.030689],\n\t\t\t\t\t\t[-87.898684, 43.028813],\n\t\t\t\t\t\t[-87.896836, 43.020530],\n\t\t\t\t\t\t[-87.896647, 43.019680],\n\t\t\t\t\t\t[-87.896398, 43.018565],\n\t\t\t\t\t\t[-87.896157, 43.017486],\n\t\t\t\t\t\t[-87.895784, 43.015814],\n\t\t\t\t\t\t[-87.893511, 43.011521],\n\t\t\t\t\t\t[-87.889342, 43.003647],\n\t\t\t\t\t\t[-87.889095, 43.003181],\n\t\t\t\t\t\t[-87.888804, 43.002631],\n\t\t\t\t\t\t[-87.887789, 43.000715],\n\t\t\t\t\t\t[-87.887703, 43.000552],\n\t\t\t\t\t\t[-87.887683, 43.000514],\n\t\t\t\t\t\t[-87.878683, 42.992415],\n\t\t\t\t\t\t[-87.857182, 42.978015],\n\t\t\t\t\t\t[-87.845181, 42.962015],\n\t\t\t\t\t\t[-87.844739, 42.958848],\n\t\t\t\t\t\t[-87.843835, 42.952375],\n\t\t\t\t\t\t[-87.843575, 42.950519],\n\t\t\t\t\t\t[-87.842786, 42.944865],\n\t\t\t\t\t\t[-87.842760, 42.944679],\n\t\t\t\t\t\t[-87.842681, 42.944116],\n\t\t\t\t\t\t[-87.844578, 42.923688],\n\t\t\t\t\t\t[-87.846708, 42.900756],\n\t\t\t\t\t\t[-87.847745, 42.889595],\n\t\t\t\t\t\t[-87.847780, 42.889216],\n\t\t\t\t\t\t[-87.845811, 42.884256],\n\t\t\t\t\t\t[-87.834879, 42.856717],\n\t\t\t\t\t\t[-87.831176, 42.849886],\n\t\t\t\t\t\t[-87.827021, 42.842222],\n\t\t\t\t\t\t[-88.069924, 42.843323],\n\t\t\t\t\t\t[-88.069249, 42.959104],\n\t\t\t\t\t\t[-88.069098, 42.966397],\n\t\t\t\t\t\t[-88.068978, 42.967369],\n\t\t\t\t\t\t[-88.068817, 42.972832],\n\t\t\t\t\t\t[-88.068887, 42.973666],\n\t\t\t\t\t\t[-88.068588, 42.979814],\n\t\t\t\t\t\t[-88.068620, 42.980960],\n\t\t\t\t\t\t[-88.063353, 43.192117],\n\t\t\t\t\t\t[-87.994288, 43.192550],\n\t\t\t\t\t\t[-87.917643, 43.192105],\n\t\t\t\t\t\t[-87.914486, 43.192208],\n\t\t\t\t\t\t[-87.904786, 43.192108],\n\t\t\t\t\t\t[-87.899385, 43.192206],\n\t\t\t\t\t\t[-87.892886, 43.192008],\n\t\t\t\t\t\t[-87.892090, 43.192044]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55089\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"089\",\n\t\t\t\t\"NAME\": \"Ozaukee\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 233.077000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.911512, 43.248064],\n\t\t\t\t\t\t[-87.910172, 43.236634],\n\t\t\t\t\t\t[-87.910087, 43.235907],\n\t\t\t\t\t\t[-87.897331, 43.200046],\n\t\t\t\t\t\t[-87.897326, 43.200031],\n\t\t\t\t\t\t[-87.897316, 43.200003],\n\t\t\t\t\t\t[-87.897125, 43.199468],\n\t\t\t\t\t\t[-87.896286, 43.197108],\n\t\t\t\t\t\t[-87.895554, 43.196225],\n\t\t\t\t\t\t[-87.892090, 43.192044],\n\t\t\t\t\t\t[-87.892886, 43.192008],\n\t\t\t\t\t\t[-87.899385, 43.192206],\n\t\t\t\t\t\t[-87.904786, 43.192108],\n\t\t\t\t\t\t[-87.914486, 43.192208],\n\t\t\t\t\t\t[-87.917643, 43.192105],\n\t\t\t\t\t\t[-87.994288, 43.192550],\n\t\t\t\t\t\t[-88.063353, 43.192117],\n\t\t\t\t\t\t[-88.040528, 43.542361],\n\t\t\t\t\t\t[-87.794321, 43.543034],\n\t\t\t\t\t\t[-87.797608, 43.527310],\n\t\t\t\t\t\t[-87.797336, 43.510623],\n\t\t\t\t\t\t[-87.793239, 43.492783],\n\t\t\t\t\t\t[-87.807799, 43.461136],\n\t\t\t\t\t\t[-87.827319, 43.434849],\n\t\t\t\t\t\t[-87.855608, 43.405441],\n\t\t\t\t\t\t[-87.865048, 43.393570],\n\t\t\t\t\t\t[-87.867504, 43.389158],\n\t\t\t\t\t\t[-87.869099, 43.386295],\n\t\t\t\t\t\t[-87.872504, 43.380178],\n\t\t\t\t\t\t[-87.877448, 43.369235],\n\t\t\t\t\t\t[-87.882392, 43.352099],\n\t\t\t\t\t\t[-87.888122, 43.314731],\n\t\t\t\t\t\t[-87.888312, 43.313489],\n\t\t\t\t\t\t[-87.888314, 43.313476],\n\t\t\t\t\t\t[-87.888328, 43.313388],\n\t\t\t\t\t\t[-87.888335, 43.313342],\n\t\t\t\t\t\t[-87.888342, 43.313294],\n\t\t\t\t\t\t[-87.889207, 43.307652],\n\t\t\t\t\t\t[-87.897813, 43.291628],\n\t\t\t\t\t\t[-87.900255, 43.287081],\n\t\t\t\t\t\t[-87.901847, 43.284117],\n\t\t\t\t\t\t[-87.902967, 43.280319],\n\t\t\t\t\t\t[-87.903094, 43.279887],\n\t\t\t\t\t\t[-87.903141, 43.279728],\n\t\t\t\t\t\t[-87.903451, 43.278676],\n\t\t\t\t\t\t[-87.904251, 43.275962],\n\t\t\t\t\t\t[-87.906465, 43.268454],\n\t\t\t\t\t\t[-87.906483, 43.268393],\n\t\t\t\t\t\t[-87.906502, 43.268330],\n\t\t\t\t\t\t[-87.906565, 43.268115],\n\t\t\t\t\t\t[-87.906583, 43.268055],\n\t\t\t\t\t\t[-87.906599, 43.268002],\n\t\t\t\t\t\t[-87.906605, 43.267980],\n\t\t\t\t\t\t[-87.906611, 43.267960],\n\t\t\t\t\t\t[-87.907289, 43.265661],\n\t\t\t\t\t\t[-87.907291, 43.265653],\n\t\t\t\t\t\t[-87.907306, 43.265604],\n\t\t\t\t\t\t[-87.909053, 43.259678],\n\t\t\t\t\t\t[-87.910345, 43.255296],\n\t\t\t\t\t\t[-87.911787, 43.250406],\n\t\t\t\t\t\t[-87.911512, 43.248064]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US53055\",\n\t\t\t\t\"STATE\": \"53\",\n\t\t\t\t\"COUNTY\": \"055\",\n\t\t\t\t\"NAME\": \"San Juan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 173.915000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-122.800217, 48.601690],\n\t\t\t\t\t\t\t[-122.804869, 48.595932],\n\t\t\t\t\t\t\t[-122.801096, 48.585425],\n\t\t\t\t\t\t\t[-122.786586, 48.576666],\n\t\t\t\t\t\t\t[-122.771206, 48.562426],\n\t\t\t\t\t\t\t[-122.770349, 48.558106],\n\t\t\t\t\t\t\t[-122.772384, 48.552143],\n\t\t\t\t\t\t\t[-122.782618, 48.545191],\n\t\t\t\t\t\t\t[-122.788503, 48.530393],\n\t\t\t\t\t\t\t[-122.787347, 48.523012],\n\t\t\t\t\t\t\t[-122.777467, 48.517799],\n\t\t\t\t\t\t\t[-122.779124, 48.508911],\n\t\t\t\t\t\t\t[-122.800414, 48.494467],\n\t\t\t\t\t\t\t[-122.816332, 48.487841],\n\t\t\t\t\t\t\t[-122.817912, 48.483888],\n\t\t\t\t\t\t\t[-122.819730, 48.458843],\n\t\t\t\t\t\t\t[-122.813100, 48.452856],\n\t\t\t\t\t\t\t[-122.807708, 48.444058],\n\t\t\t\t\t\t\t[-122.802509, 48.433098],\n\t\t\t\t\t\t\t[-122.803521, 48.428748],\n\t\t\t\t\t\t\t[-122.812208, 48.422326],\n\t\t\t\t\t\t\t[-122.825803, 48.424131],\n\t\t\t\t\t\t\t[-122.874135, 48.418196],\n\t\t\t\t\t\t\t[-122.883759, 48.418793],\n\t\t\t\t\t\t\t[-122.893646, 48.422655],\n\t\t\t\t\t\t\t[-122.889016, 48.435947],\n\t\t\t\t\t\t\t[-122.903214, 48.436979],\n\t\t\t\t\t\t\t[-122.913888, 48.443231],\n\t\t\t\t\t\t\t[-122.917771, 48.439781],\n\t\t\t\t\t\t\t[-122.928004, 48.439966],\n\t\t\t\t\t\t\t[-122.916460, 48.453263],\n\t\t\t\t\t\t\t[-122.920099, 48.458428],\n\t\t\t\t\t\t\t[-122.926901, 48.460874],\n\t\t\t\t\t\t\t[-122.937881, 48.456221],\n\t\t\t\t\t\t\t[-122.962009, 48.451161],\n\t\t\t\t\t\t\t[-123.039156, 48.460003],\n\t\t\t\t\t\t\t[-123.058154, 48.471522],\n\t\t\t\t\t\t\t[-123.067675, 48.479497],\n\t\t\t\t\t\t\t[-123.119451, 48.492576],\n\t\t\t\t\t\t\t[-123.141478, 48.505291],\n\t\t\t\t\t\t\t[-123.151065, 48.513955],\n\t\t\t\t\t\t\t[-123.163234, 48.529544],\n\t\t\t\t\t\t\t[-123.164057, 48.535622],\n\t\t\t\t\t\t\t[-123.161853, 48.539255],\n\t\t\t\t\t\t\t[-123.161470, 48.547618],\n\t\t\t\t\t\t\t[-123.172412, 48.556486],\n\t\t\t\t\t\t\t[-123.176266, 48.562131],\n\t\t\t\t\t\t\t[-123.175852, 48.568483],\n\t\t\t\t\t\t\t[-123.171958, 48.572255],\n\t\t\t\t\t\t\t[-123.173061, 48.579086],\n\t\t\t\t\t\t\t[-123.184941, 48.586970],\n\t\t\t\t\t\t\t[-123.197754, 48.586216],\n\t\t\t\t\t\t\t[-123.202680, 48.590214],\n\t\t\t\t\t\t\t[-123.203026, 48.596178],\n\t\t\t\t\t\t\t[-123.195725, 48.607055],\n\t\t\t\t\t\t\t[-123.178425, 48.622115],\n\t\t\t\t\t\t\t[-123.151643, 48.623686],\n\t\t\t\t\t\t\t[-123.139705, 48.622786],\n\t\t\t\t\t\t\t[-123.135645, 48.620171],\n\t\t\t\t\t\t\t[-123.107362, 48.622451],\n\t\t\t\t\t\t\t[-123.098462, 48.612834],\n\t\t\t\t\t\t\t[-123.098254, 48.610092],\n\t\t\t\t\t\t\t[-123.102074, 48.604035],\n\t\t\t\t\t\t\t[-123.101552, 48.597820],\n\t\t\t\t\t\t\t[-123.074611, 48.591816],\n\t\t\t\t\t\t\t[-123.060040, 48.582105],\n\t\t\t\t\t\t\t[-123.048403, 48.569216],\n\t\t\t\t\t\t\t[-123.033669, 48.563409],\n\t\t\t\t\t\t\t[-123.015046, 48.560821],\n\t\t\t\t\t\t\t[-122.987296, 48.561895],\n\t\t\t\t\t\t\t[-122.986110, 48.569984],\n\t\t\t\t\t\t\t[-122.989649, 48.574668],\n\t\t\t\t\t\t\t[-122.995026, 48.578162],\n\t\t\t\t\t\t\t[-123.004800, 48.580788],\n\t\t\t\t\t\t\t[-123.016647, 48.580244],\n\t\t\t\t\t\t\t[-123.034101, 48.591767],\n\t\t\t\t\t\t\t[-123.024902, 48.594484],\n\t\t\t\t\t\t\t[-123.023433, 48.599477],\n\t\t\t\t\t\t\t[-123.041189, 48.611947],\n\t\t\t\t\t\t\t[-123.046530, 48.611490],\n\t\t\t\t\t\t\t[-123.048652, 48.621002],\n\t\t\t\t\t\t\t[-123.023495, 48.634001],\n\t\t\t\t\t\t\t[-123.015592, 48.642567],\n\t\t\t\t\t\t\t[-123.014829, 48.647503],\n\t\t\t\t\t\t\t[-123.009924, 48.655064],\n\t\t\t\t\t\t\t[-122.988884, 48.667246],\n\t\t\t\t\t\t\t[-122.984853, 48.672686],\n\t\t\t\t\t\t\t[-122.949116, 48.693398],\n\t\t\t\t\t\t\t[-122.941316, 48.702904],\n\t\t\t\t\t\t\t[-122.942367, 48.706723],\n\t\t\t\t\t\t\t[-122.918252, 48.713505],\n\t\t\t\t\t\t\t[-122.894599, 48.715030],\n\t\t\t\t\t\t\t[-122.875938, 48.712120],\n\t\t\t\t\t\t\t[-122.833124, 48.698173],\n\t\t\t\t\t\t\t[-122.802545, 48.682682],\n\t\t\t\t\t\t\t[-122.800267, 48.679620],\n\t\t\t\t\t\t\t[-122.743049, 48.661991],\n\t\t\t\t\t\t\t[-122.742082, 48.660689],\n\t\t\t\t\t\t\t[-122.755031, 48.649512],\n\t\t\t\t\t\t\t[-122.783875, 48.635419],\n\t\t\t\t\t\t\t[-122.792147, 48.633502],\n\t\t\t\t\t\t\t[-122.809622, 48.619035],\n\t\t\t\t\t\t\t[-122.808864, 48.615310],\n\t\t\t\t\t\t\t[-122.799010, 48.604683],\n\t\t\t\t\t\t\t[-122.798770, 48.602352],\n\t\t\t\t\t\t\t[-122.800217, 48.601690]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-123.197953, 48.684660],\n\t\t\t\t\t\t\t[-123.186076, 48.684917],\n\t\t\t\t\t\t\t[-123.172066, 48.679866],\n\t\t\t\t\t\t\t[-123.147990, 48.668001],\n\t\t\t\t\t\t\t[-123.130962, 48.656789],\n\t\t\t\t\t\t\t[-123.122016, 48.647065],\n\t\t\t\t\t\t\t[-123.106165, 48.633473],\n\t\t\t\t\t\t\t[-123.119677, 48.632972],\n\t\t\t\t\t\t\t[-123.134956, 48.637240],\n\t\t\t\t\t\t\t[-123.215917, 48.669352],\n\t\t\t\t\t\t\t[-123.237148, 48.683466],\n\t\t\t\t\t\t\t[-123.236567, 48.688950],\n\t\t\t\t\t\t\t[-123.212892, 48.689713],\n\t\t\t\t\t\t\t[-123.197953, 48.684660]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-123.025486, 48.717966],\n\t\t\t\t\t\t\t[-123.019699, 48.721312],\n\t\t\t\t\t\t\t[-123.009787, 48.722291],\n\t\t\t\t\t\t\t[-123.007511, 48.718863],\n\t\t\t\t\t\t\t[-123.005086, 48.694342],\n\t\t\t\t\t\t\t[-123.014449, 48.684978],\n\t\t\t\t\t\t\t[-123.021215, 48.681416],\n\t\t\t\t\t\t\t[-123.042337, 48.675663],\n\t\t\t\t\t\t\t[-123.041645, 48.678633],\n\t\t\t\t\t\t\t[-123.035672, 48.685350],\n\t\t\t\t\t\t\t[-123.036360, 48.690080],\n\t\t\t\t\t\t\t[-123.047058, 48.695772],\n\t\t\t\t\t\t\t[-123.070427, 48.699971],\n\t\t\t\t\t\t\t[-123.040179, 48.717296],\n\t\t\t\t\t\t\t[-123.025486, 48.717966]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US53061\",\n\t\t\t\t\"STATE\": \"53\",\n\t\t\t\t\"COUNTY\": \"061\",\n\t\t\t\t\"NAME\": \"Snohomish\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2087.273000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-122.321721, 48.019977],\n\t\t\t\t\t\t\t[-122.303455, 48.005603],\n\t\t\t\t\t\t\t[-122.306629, 48.004397],\n\t\t\t\t\t\t\t[-122.326115, 48.010295],\n\t\t\t\t\t\t\t[-122.334524, 48.018916],\n\t\t\t\t\t\t\t[-122.328343, 48.021335],\n\t\t\t\t\t\t\t[-122.321721, 48.019977]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-121.584537, 47.776726],\n\t\t\t\t\t\t\t[-121.928146, 47.776971],\n\t\t\t\t\t\t\t[-122.000396, 47.775284],\n\t\t\t\t\t\t\t[-122.000425, 47.775284],\n\t\t\t\t\t\t\t[-122.396422, 47.777927],\n\t\t\t\t\t\t\t[-122.397043, 47.779719],\n\t\t\t\t\t\t\t[-122.394944, 47.803318],\n\t\t\t\t\t\t\t[-122.392044, 47.807718],\n\t\t\t\t\t\t\t[-122.353244, 47.840618],\n\t\t\t\t\t\t\t[-122.346544, 47.842418],\n\t\t\t\t\t\t\t[-122.339944, 47.846718],\n\t\t\t\t\t\t\t[-122.335950, 47.852306],\n\t\t\t\t\t\t\t[-122.329545, 47.869418],\n\t\t\t\t\t\t\t[-122.330145, 47.875318],\n\t\t\t\t\t\t\t[-122.333543, 47.880246],\n\t\t\t\t\t\t\t[-122.328546, 47.897917],\n\t\t\t\t\t\t\t[-122.321847, 47.911817],\n\t\t\t\t\t\t\t[-122.311927, 47.923703],\n\t\t\t\t\t\t\t[-122.310747, 47.925117],\n\t\t\t\t\t\t\t[-122.309747, 47.929117],\n\t\t\t\t\t\t\t[-122.311148, 47.936717],\n\t\t\t\t\t\t\t[-122.307048, 47.949117],\n\t\t\t\t\t\t\t[-122.278047, 47.956517],\n\t\t\t\t\t\t\t[-122.249007, 47.959507],\n\t\t\t\t\t\t\t[-122.230046, 47.970917],\n\t\t\t\t\t\t\t[-122.226346, 47.976417],\n\t\t\t\t\t\t\t[-122.232391, 47.987713],\n\t\t\t\t\t\t\t[-122.230220, 48.007154],\n\t\t\t\t\t\t\t[-122.228767, 48.012468],\n\t\t\t\t\t\t\t[-122.224979, 48.016626],\n\t\t\t\t\t\t\t[-122.231761, 48.029876],\n\t\t\t\t\t\t\t[-122.281087, 48.049793],\n\t\t\t\t\t\t\t[-122.305838, 48.073415],\n\t\t\t\t\t\t\t[-122.321709, 48.085507],\n\t\t\t\t\t\t\t[-122.326119, 48.092877],\n\t\t\t\t\t\t\t[-122.343241, 48.097631],\n\t\t\t\t\t\t\t[-122.363842, 48.123930],\n\t\t\t\t\t\t\t[-122.365078, 48.125822],\n\t\t\t\t\t\t\t[-122.363797, 48.142759],\n\t\t\t\t\t\t\t[-122.364744, 48.151304],\n\t\t\t\t\t\t\t[-122.370253, 48.164809],\n\t\t\t\t\t\t\t[-122.363479, 48.174438],\n\t\t\t\t\t\t\t[-122.362044, 48.187568],\n\t\t\t\t\t\t\t[-122.372492, 48.193022],\n\t\t\t\t\t\t\t[-122.382102, 48.207106],\n\t\t\t\t\t\t\t[-122.385703, 48.217811],\n\t\t\t\t\t\t\t[-122.395499, 48.228551],\n\t\t\t\t\t\t\t[-122.392851, 48.238555],\n\t\t\t\t\t\t\t[-122.398712, 48.241684],\n\t\t\t\t\t\t\t[-122.405757, 48.252193],\n\t\t\t\t\t\t\t[-122.395328, 48.257187],\n\t\t\t\t\t\t\t[-122.392058, 48.269628],\n\t\t\t\t\t\t\t[-122.371693, 48.287839],\n\t\t\t\t\t\t\t[-122.376818, 48.296099],\n\t\t\t\t\t\t\t[-122.378210, 48.297590],\n\t\t\t\t\t\t\t[-121.001409, 48.295548],\n\t\t\t\t\t\t\t[-120.906411, 48.163348],\n\t\t\t\t\t\t\t[-121.015412, 48.075141],\n\t\t\t\t\t\t\t[-121.153501, 48.040871],\n\t\t\t\t\t\t\t[-121.118059, 47.997660],\n\t\t\t\t\t\t\t[-121.180213, 47.897132],\n\t\t\t\t\t\t\t[-121.070710, 47.826034],\n\t\t\t\t\t\t\t[-121.119010, 47.779933],\n\t\t\t\t\t\t\t[-121.580986, 47.777534],\n\t\t\t\t\t\t\t[-121.584537, 47.776726]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US53071\",\n\t\t\t\t\"STATE\": \"53\",\n\t\t\t\t\"COUNTY\": \"071\",\n\t\t\t\t\"NAME\": \"Walla Walla\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1270.129000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-118.228928, 46.593606],\n\t\t\t\t\t\t[-118.241611, 46.295072],\n\t\t\t\t\t\t[-118.116139, 46.295455],\n\t\t\t\t\t\t[-118.116493, 46.207912],\n\t\t\t\t\t\t[-117.991292, 46.207843],\n\t\t\t\t\t\t[-117.996911, 46.000787],\n\t\t\t\t\t\t[-118.126197, 46.000282],\n\t\t\t\t\t\t[-118.131019, 46.000280],\n\t\t\t\t\t\t[-118.228941, 46.000421],\n\t\t\t\t\t\t[-118.236584, 46.000418],\n\t\t\t\t\t\t[-118.252530, 46.000459],\n\t\t\t\t\t\t[-118.256368, 46.000439],\n\t\t\t\t\t\t[-118.314982, 46.000453],\n\t\t\t\t\t\t[-118.367790, 46.000622],\n\t\t\t\t\t\t[-118.378360, 46.000574],\n\t\t\t\t\t\t[-118.470756, 46.000632],\n\t\t\t\t\t\t[-118.497027, 46.000620],\n\t\t\t\t\t\t[-118.537119, 46.000840],\n\t\t\t\t\t\t[-118.569392, 46.000773],\n\t\t\t\t\t\t[-118.575710, 46.000718],\n\t\t\t\t\t\t[-118.579906, 46.000818],\n\t\t\t\t\t\t[-118.637725, 46.000970],\n\t\t\t\t\t\t[-118.639332, 46.000994],\n\t\t\t\t\t\t[-118.658717, 46.000955],\n\t\t\t\t\t\t[-118.677870, 46.000935],\n\t\t\t\t\t\t[-118.987129, 45.999855],\n\t\t\t\t\t\t[-118.941075, 46.029339],\n\t\t\t\t\t\t[-118.980933, 46.146296],\n\t\t\t\t\t\t[-119.041418, 46.192856],\n\t\t\t\t\t\t[-118.972827, 46.238705],\n\t\t\t\t\t\t[-118.777228, 46.290177],\n\t\t\t\t\t\t[-118.746199, 46.359512],\n\t\t\t\t\t\t[-118.633826, 46.414022],\n\t\t\t\t\t\t[-118.615592, 46.504543],\n\t\t\t\t\t\t[-118.452637, 46.596973],\n\t\t\t\t\t\t[-118.228928, 46.593606]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US53073\",\n\t\t\t\t\"STATE\": \"53\",\n\t\t\t\t\"COUNTY\": \"073\",\n\t\t\t\t\"NAME\": \"Whatcom\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2106.857000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-120.752021, 48.657538],\n\t\t\t\t\t\t\t[-120.910534, 48.640937],\n\t\t\t\t\t\t\t[-121.251233, 48.640997],\n\t\t\t\t\t\t\t[-122.488754, 48.645358],\n\t\t\t\t\t\t\t[-122.493990, 48.651596],\n\t\t\t\t\t\t\t[-122.500308, 48.656163],\n\t\t\t\t\t\t\t[-122.506718, 48.669692],\n\t\t\t\t\t\t\t[-122.519172, 48.713095],\n\t\t\t\t\t\t\t[-122.515511, 48.720992],\n\t\t\t\t\t\t\t[-122.505684, 48.724524],\n\t\t\t\t\t\t\t[-122.495301, 48.737328],\n\t\t\t\t\t\t\t[-122.490401, 48.751128],\n\t\t\t\t\t\t\t[-122.510902, 48.757728],\n\t\t\t\t\t\t\t[-122.528203, 48.768428],\n\t\t\t\t\t\t\t[-122.535803, 48.776128],\n\t\t\t\t\t\t\t[-122.567498, 48.779185],\n\t\t\t\t\t\t\t[-122.596844, 48.771492],\n\t\t\t\t\t\t\t[-122.598033, 48.769489],\n\t\t\t\t\t\t\t[-122.606787, 48.759143],\n\t\t\t\t\t\t\t[-122.627808, 48.744660],\n\t\t\t\t\t\t\t[-122.637146, 48.735708],\n\t\t\t\t\t\t\t[-122.638082, 48.732486],\n\t\t\t\t\t\t\t[-122.626287, 48.720930],\n\t\t\t\t\t\t\t[-122.612562, 48.714932],\n\t\t\t\t\t\t\t[-122.605733, 48.701066],\n\t\t\t\t\t\t\t[-122.606105, 48.698556],\n\t\t\t\t\t\t\t[-122.615169, 48.693839],\n\t\t\t\t\t\t\t[-122.620338, 48.693651],\n\t\t\t\t\t\t\t[-122.630422, 48.696625],\n\t\t\t\t\t\t\t[-122.646323, 48.708001],\n\t\t\t\t\t\t\t[-122.673472, 48.733082],\n\t\t\t\t\t\t\t[-122.666953, 48.748445],\n\t\t\t\t\t\t\t[-122.661111, 48.753962],\n\t\t\t\t\t\t\t[-122.647443, 48.773998],\n\t\t\t\t\t\t\t[-122.645743, 48.781538],\n\t\t\t\t\t\t\t[-122.646777, 48.785011],\n\t\t\t\t\t\t\t[-122.656528, 48.784969],\n\t\t\t\t\t\t\t[-122.659708, 48.786523],\n\t\t\t\t\t\t\t[-122.680246, 48.802750],\n\t\t\t\t\t\t\t[-122.693683, 48.804475],\n\t\t\t\t\t\t\t[-122.697219, 48.802810],\n\t\t\t\t\t\t\t[-122.698675, 48.800522],\n\t\t\t\t\t\t\t[-122.699507, 48.794906],\n\t\t\t\t\t\t\t[-122.699303, 48.789063],\n\t\t\t\t\t\t\t[-122.703106, 48.786321],\n\t\t\t\t\t\t\t[-122.709815, 48.786205],\n\t\t\t\t\t\t\t[-122.711200, 48.791460],\n\t\t\t\t\t\t\t[-122.709169, 48.817829],\n\t\t\t\t\t\t\t[-122.711805, 48.832408],\n\t\t\t\t\t\t\t[-122.717073, 48.847190],\n\t\t\t\t\t\t\t[-122.722685, 48.852855],\n\t\t\t\t\t\t\t[-122.785659, 48.885066],\n\t\t\t\t\t\t\t[-122.793175, 48.892927],\n\t\t\t\t\t\t\t[-122.792584, 48.894732],\n\t\t\t\t\t\t\t[-122.783747, 48.894639],\n\t\t\t\t\t\t\t[-122.751289, 48.911239],\n\t\t\t\t\t\t\t[-122.747514, 48.915582],\n\t\t\t\t\t\t\t[-122.745371, 48.921227],\n\t\t\t\t\t\t\t[-122.746596, 48.930731],\n\t\t\t\t\t\t\t[-122.755624, 48.938660],\n\t\t\t\t\t\t\t[-122.766096, 48.941955],\n\t\t\t\t\t\t\t[-122.770432, 48.942528],\n\t\t\t\t\t\t\t[-122.787539, 48.931702],\n\t\t\t\t\t\t\t[-122.818232, 48.939062],\n\t\t\t\t\t\t\t[-122.821631, 48.941369],\n\t\t\t\t\t\t\t[-122.822464, 48.944911],\n\t\t\t\t\t\t\t[-122.817226, 48.955970],\n\t\t\t\t\t\t\t[-122.796887, 48.975026],\n\t\t\t\t\t\t\t[-122.774276, 48.991038],\n\t\t\t\t\t\t\t[-122.766307, 48.991672],\n\t\t\t\t\t\t\t[-122.756318, 48.996881],\n\t\t\t\t\t\t\t[-122.756037, 48.999512],\n\t\t\t\t\t\t\t[-122.758020, 49.002357],\n\t\t\t\t\t\t\t[-122.407829, 49.002193],\n\t\t\t\t\t\t\t[-122.405989, 49.002239],\n\t\t\t\t\t\t\t[-122.098357, 49.002146],\n\t\t\t\t\t\t\t[-121.751252, 48.997399],\n\t\t\t\t\t\t\t[-121.126240, 49.001412],\n\t\t\t\t\t\t\t[-120.851202, 49.001191],\n\t\t\t\t\t\t\t[-120.767528, 48.954385],\n\t\t\t\t\t\t\t[-120.733710, 48.782900],\n\t\t\t\t\t\t\t[-120.654676, 48.724198],\n\t\t\t\t\t\t\t[-120.752021, 48.657538]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-123.035393, 49.002154],\n\t\t\t\t\t\t\t[-123.021459, 48.977299],\n\t\t\t\t\t\t\t[-123.028091, 48.973943],\n\t\t\t\t\t\t\t[-123.040967, 48.977305],\n\t\t\t\t\t\t\t[-123.060717, 48.975388],\n\t\t\t\t\t\t\t[-123.083834, 48.976139],\n\t\t\t\t\t\t\t[-123.084498, 48.986535],\n\t\t\t\t\t\t\t[-123.090546, 49.001976],\n\t\t\t\t\t\t\t[-123.035393, 49.002154]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-122.695907, 48.737273],\n\t\t\t\t\t\t\t[-122.668947, 48.706644],\n\t\t\t\t\t\t\t[-122.663259, 48.697077],\n\t\t\t\t\t\t\t[-122.644901, 48.691389],\n\t\t\t\t\t\t\t[-122.618225, 48.670721],\n\t\t\t\t\t\t\t[-122.609576, 48.645018],\n\t\t\t\t\t\t\t[-122.616956, 48.645563],\n\t\t\t\t\t\t\t[-122.635299, 48.651846],\n\t\t\t\t\t\t\t[-122.673538, 48.680809],\n\t\t\t\t\t\t\t[-122.691795, 48.711498],\n\t\t\t\t\t\t\t[-122.702223, 48.717004],\n\t\t\t\t\t\t\t[-122.718833, 48.716818],\n\t\t\t\t\t\t\t[-122.721981, 48.723375],\n\t\t\t\t\t\t\t[-122.722262, 48.731624],\n\t\t\t\t\t\t\t[-122.715709, 48.748672],\n\t\t\t\t\t\t\t[-122.703060, 48.743602],\n\t\t\t\t\t\t\t[-122.695907, 48.737273]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22039\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"039\",\n\t\t\t\t\"NAME\": \"Evangeline\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 662.378000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.630347, 30.487873],\n\t\t\t\t\t\t[-92.597402, 30.583928],\n\t\t\t\t\t\t[-92.597741, 30.896101],\n\t\t\t\t\t\t[-92.508854, 30.896003],\n\t\t\t\t\t\t[-92.480330, 30.952271],\n\t\t\t\t\t\t[-92.382742, 31.001431],\n\t\t\t\t\t\t[-92.280738, 30.965071],\n\t\t\t\t\t\t[-92.212711, 30.848607],\n\t\t\t\t\t\t[-92.172550, 30.713365],\n\t\t\t\t\t\t[-92.211243, 30.568125],\n\t\t\t\t\t\t[-92.262719, 30.538738],\n\t\t\t\t\t\t[-92.420780, 30.538820],\n\t\t\t\t\t\t[-92.493259, 30.480499],\n\t\t\t\t\t\t[-92.629063, 30.480614],\n\t\t\t\t\t\t[-92.631987, 30.481147],\n\t\t\t\t\t\t[-92.633495, 30.482287],\n\t\t\t\t\t\t[-92.633839, 30.483319],\n\t\t\t\t\t\t[-92.631933, 30.483707],\n\t\t\t\t\t\t[-92.630690, 30.483340],\n\t\t\t\t\t\t[-92.630028, 30.483569],\n\t\t\t\t\t\t[-92.630212, 30.485105],\n\t\t\t\t\t\t[-92.629471, 30.485586],\n\t\t\t\t\t\t[-92.629285, 30.486869],\n\t\t\t\t\t\t[-92.630347, 30.487873]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US27139\",\n\t\t\t\t\"STATE\": \"27\",\n\t\t\t\t\"COUNTY\": \"139\",\n\t\t\t\t\"NAME\": \"Scott\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 356.476000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.329615, 44.791086],\n\t\t\t\t\t\t[-93.318731, 44.630578],\n\t\t\t\t\t\t[-93.281521, 44.543957],\n\t\t\t\t\t\t[-93.524327, 44.543618],\n\t\t\t\t\t\t[-93.910405, 44.543163],\n\t\t\t\t\t\t[-93.857678, 44.621095],\n\t\t\t\t\t\t[-93.768039, 44.640303],\n\t\t\t\t\t\t[-93.618141, 44.707096],\n\t\t\t\t\t\t[-93.621967, 44.760281],\n\t\t\t\t\t\t[-93.520431, 44.804263],\n\t\t\t\t\t\t[-93.329615, 44.791086]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31113\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"113\",\n\t\t\t\t\"NAME\": \"Logan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 570.660000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.251098, 41.393298],\n\t\t\t\t\t\t[-100.713243, 41.393511],\n\t\t\t\t\t\t[-100.713132, 41.394575],\n\t\t\t\t\t\t[-100.711711, 41.739761],\n\t\t\t\t\t\t[-100.265474, 41.739856],\n\t\t\t\t\t\t[-100.251224, 41.739817],\n\t\t\t\t\t\t[-100.251098, 41.393298]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37043\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"043\",\n\t\t\t\t\"NAME\": \"Clay\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 214.751000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.483064, 34.993737],\n\t\t\t\t\t\t[-83.549381, 34.992492],\n\t\t\t\t\t\t[-83.620185, 34.992091],\n\t\t\t\t\t\t[-83.673621, 34.987111],\n\t\t\t\t\t\t[-83.936413, 34.987485],\n\t\t\t\t\t\t[-83.936646, 34.987485],\n\t\t\t\t\t\t[-84.005457, 34.987440],\n\t\t\t\t\t\t[-83.857142, 35.137071],\n\t\t\t\t\t\t[-83.738106, 35.155911],\n\t\t\t\t\t\t[-83.659765, 35.160243],\n\t\t\t\t\t\t[-83.483064, 34.993737]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US39057\",\n\t\t\t\t\"STATE\": \"39\",\n\t\t\t\t\"COUNTY\": \"057\",\n\t\t\t\t\"NAME\": \"Greene\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 413.729000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.096937, 39.793033],\n\t\t\t\t\t\t[-84.092938, 39.838345],\n\t\t\t\t\t\t[-84.055238, 39.835958],\n\t\t\t\t\t\t[-84.053736, 39.850458],\n\t\t\t\t\t\t[-83.827425, 39.822651],\n\t\t\t\t\t\t[-83.829495, 39.797851],\n\t\t\t\t\t\t[-83.647169, 39.773029],\n\t\t\t\t\t\t[-83.648641, 39.768478],\n\t\t\t\t\t\t[-83.648882, 39.761115],\n\t\t\t\t\t\t[-83.653330, 39.716876],\n\t\t\t\t\t\t[-83.670196, 39.550254],\n\t\t\t\t\t\t[-83.977005, 39.569169],\n\t\t\t\t\t\t[-84.114195, 39.577983],\n\t\t\t\t\t\t[-84.096937, 39.793033]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US36009\",\n\t\t\t\t\"STATE\": \"36\",\n\t\t\t\t\"COUNTY\": \"009\",\n\t\t\t\t\"NAME\": \"Cattaraugus\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1308.350000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.918854, 41.997961],\n\t\t\t\t\t\t[-79.052473, 41.999179],\n\t\t\t\t\t\t[-79.061265, 41.999259],\n\t\t\t\t\t\t[-79.060777, 42.537853],\n\t\t\t\t\t\t[-78.991702, 42.529249],\n\t\t\t\t\t\t[-78.920446, 42.442556],\n\t\t\t\t\t\t[-78.695937, 42.471940],\n\t\t\t\t\t\t[-78.463940, 42.536332],\n\t\t\t\t\t\t[-78.464556, 42.519166],\n\t\t\t\t\t\t[-78.308839, 42.521217],\n\t\t\t\t\t\t[-78.308128, 41.999415],\n\t\t\t\t\t\t[-78.596650, 41.999877],\n\t\t\t\t\t\t[-78.874759, 41.997559],\n\t\t\t\t\t\t[-78.918854, 41.997961]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47169\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"169\",\n\t\t\t\t\"NAME\": \"Trousdale\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 114.193000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.174666, 36.328000],\n\t\t\t\t\t\t[-86.283256, 36.347500],\n\t\t\t\t\t\t[-86.228434, 36.487472],\n\t\t\t\t\t\t[-86.168261, 36.444293],\n\t\t\t\t\t\t[-85.978893, 36.426073],\n\t\t\t\t\t\t[-86.136803, 36.295859],\n\t\t\t\t\t\t[-86.144659, 36.304502],\n\t\t\t\t\t\t[-86.164045, 36.320899],\n\t\t\t\t\t\t[-86.174666, 36.328000]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US46073\",\n\t\t\t\t\"STATE\": \"46\",\n\t\t\t\t\"COUNTY\": \"073\",\n\t\t\t\t\"NAME\": \"Jerauld\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 526.233000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.331508, 43.937708],\n\t\t\t\t\t\t[-98.807771, 43.935223],\n\t\t\t\t\t\t[-98.926997, 43.935143],\n\t\t\t\t\t\t[-98.925953, 44.196575],\n\t\t\t\t\t\t[-98.700453, 44.196727],\n\t\t\t\t\t\t[-98.332042, 44.196620],\n\t\t\t\t\t\t[-98.331508, 43.937708]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48365\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"365\",\n\t\t\t\t\"NAME\": \"Panola\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 801.749000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.511431, 31.973984],\n\t\t\t\t\t\t[-94.599978, 31.973193],\n\t\t\t\t\t\t[-94.580500, 32.201363],\n\t\t\t\t\t\t[-94.491818, 32.394137],\n\t\t\t\t\t\t[-94.347563, 32.330682],\n\t\t\t\t\t\t[-94.042901, 32.392283],\n\t\t\t\t\t\t[-94.042763, 32.373332],\n\t\t\t\t\t\t[-94.042739, 32.363559],\n\t\t\t\t\t\t[-94.042733, 32.269696],\n\t\t\t\t\t\t[-94.042732, 32.269620],\n\t\t\t\t\t\t[-94.042662, 32.218146],\n\t\t\t\t\t\t[-94.042621, 32.196005],\n\t\t\t\t\t\t[-94.042566, 32.166894],\n\t\t\t\t\t\t[-94.042539, 32.166826],\n\t\t\t\t\t\t[-94.042591, 32.158097],\n\t\t\t\t\t\t[-94.042681, 32.137956],\n\t\t\t\t\t\t[-94.042337, 32.119914],\n\t\t\t\t\t\t[-94.042700, 32.056012],\n\t\t\t\t\t\t[-94.042720, 31.999265],\n\t\t\t\t\t\t[-94.015630, 31.979856],\n\t\t\t\t\t\t[-94.511431, 31.973984]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48207\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"207\",\n\t\t\t\t\"NAME\": \"Haskell\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 903.131000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.472444, 33.399023],\n\t\t\t\t\t\t[-99.471258, 32.957025],\n\t\t\t\t\t\t[-99.612001, 32.956962],\n\t\t\t\t\t\t[-99.988827, 32.960121],\n\t\t\t\t\t\t[-99.990980, 33.397404],\n\t\t\t\t\t\t[-99.472444, 33.399023]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51690\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"690\",\n\t\t\t\t\"NAME\": \"Martinsville\",\n\t\t\t\t\"LSAD\": \"city\",\n\t\t\t\t\"CENSUSAREA\": 10.956000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.877668, 36.666707],\n\t\t\t\t\t\t[-79.880164, 36.667144],\n\t\t\t\t\t\t[-79.881661, 36.670537],\n\t\t\t\t\t\t[-79.884861, 36.672037],\n\t\t\t\t\t\t[-79.894181, 36.672036],\n\t\t\t\t\t\t[-79.895561, 36.675237],\n\t\t\t\t\t\t[-79.904077, 36.684127],\n\t\t\t\t\t\t[-79.874760, 36.715237],\n\t\t\t\t\t\t[-79.837359, 36.704137],\n\t\t\t\t\t\t[-79.843737, 36.672443],\n\t\t\t\t\t\t[-79.826619, 36.659379],\n\t\t\t\t\t\t[-79.827459, 36.647637],\n\t\t\t\t\t\t[-79.859761, 36.650368],\n\t\t\t\t\t\t[-79.859260, 36.661737],\n\t\t\t\t\t\t[-79.877668, 36.666707]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55131\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"131\",\n\t\t\t\t\"NAME\": \"Washington\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 430.703000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.040528, 43.542361],\n\t\t\t\t\t\t[-88.063353, 43.192117],\n\t\t\t\t\t\t[-88.417987, 43.194697],\n\t\t\t\t\t\t[-88.400426, 43.543532],\n\t\t\t\t\t\t[-88.160873, 43.542943],\n\t\t\t\t\t\t[-88.040528, 43.542361]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54067\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"067\",\n\t\t\t\t\"NAME\": \"Nicholas\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 646.824000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.231636, 38.263514],\n\t\t\t\t\t\t[-81.231434, 38.263716],\n\t\t\t\t\t\t[-80.911361, 38.414785],\n\t\t\t\t\t\t[-80.817424, 38.478553],\n\t\t\t\t\t\t[-80.881232, 38.507045],\n\t\t\t\t\t\t[-80.785177, 38.557649],\n\t\t\t\t\t\t[-80.650786, 38.526590],\n\t\t\t\t\t\t[-80.678291, 38.503492],\n\t\t\t\t\t\t[-80.609378, 38.358606],\n\t\t\t\t\t\t[-80.436514, 38.267334],\n\t\t\t\t\t\t[-80.711961, 38.079129],\n\t\t\t\t\t\t[-80.882187, 38.103457],\n\t\t\t\t\t\t[-80.983473, 38.222537],\n\t\t\t\t\t\t[-81.070465, 38.210103],\n\t\t\t\t\t\t[-81.231636, 38.263514]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51087\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"087\",\n\t\t\t\t\"NAME\": \"Henrico\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 233.697000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.333838, 37.576865],\n\t\t\t\t\t\t[-77.228504, 37.536398],\n\t\t\t\t\t\t[-77.226512, 37.533870],\n\t\t\t\t\t\t[-77.221244, 37.533229],\n\t\t\t\t\t\t[-77.220254, 37.527221],\n\t\t\t\t\t\t[-77.214847, 37.525372],\n\t\t\t\t\t\t[-77.206239, 37.515977],\n\t\t\t\t\t\t[-77.207007, 37.513446],\n\t\t\t\t\t\t[-77.202667, 37.512866],\n\t\t\t\t\t\t[-77.198184, 37.508965],\n\t\t\t\t\t\t[-77.192962, 37.506598],\n\t\t\t\t\t\t[-77.191937, 37.501237],\n\t\t\t\t\t\t[-77.188164, 37.500224],\n\t\t\t\t\t\t[-77.184836, 37.495720],\n\t\t\t\t\t\t[-77.177324, 37.490600],\n\t\t\t\t\t\t[-77.249665, 37.382000],\n\t\t\t\t\t\t[-77.361937, 37.376057],\n\t\t\t\t\t\t[-77.420849, 37.447079],\n\t\t\t\t\t\t[-77.413196, 37.579928],\n\t\t\t\t\t\t[-77.483092, 37.573832],\n\t\t\t\t\t\t[-77.596110, 37.555720],\n\t\t\t\t\t\t[-77.606450, 37.555443],\n\t\t\t\t\t\t[-77.649239, 37.559613],\n\t\t\t\t\t\t[-77.653987, 37.562631],\n\t\t\t\t\t\t[-77.630145, 37.706985],\n\t\t\t\t\t\t[-77.445827, 37.683975],\n\t\t\t\t\t\t[-77.333838, 37.576865]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01043\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"043\",\n\t\t\t\t\"NAME\": \"Cullman\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 734.841000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.109911, 34.299299],\n\t\t\t\t\t\t[-87.110111, 34.313799],\n\t\t\t\t\t\t[-87.092311, 34.312297],\n\t\t\t\t\t\t[-86.581936, 34.304694],\n\t\t\t\t\t\t[-86.453020, 34.259317],\n\t\t\t\t\t\t[-86.514881, 34.254370],\n\t\t\t\t\t\t[-86.599632, 34.119914],\n\t\t\t\t\t\t[-86.692061, 34.092654],\n\t\t\t\t\t\t[-86.685365, 34.059140],\n\t\t\t\t\t\t[-86.793914, 33.952059],\n\t\t\t\t\t\t[-86.924387, 33.909222],\n\t\t\t\t\t\t[-86.963358, 33.858221],\n\t\t\t\t\t\t[-87.091836, 33.890093],\n\t\t\t\t\t\t[-87.151036, 33.993225],\n\t\t\t\t\t\t[-87.111992, 33.992385],\n\t\t\t\t\t\t[-87.109911, 34.299299]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US01109\",\n\t\t\t\t\"STATE\": \"01\",\n\t\t\t\t\"COUNTY\": \"109\",\n\t\t\t\t\"NAME\": \"Pike\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 672.094000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.748251, 31.618048],\n\t\t\t\t\t\t[-85.749941, 31.617914],\n\t\t\t\t\t\t[-85.789142, 31.617964],\n\t\t\t\t\t\t[-86.145895, 31.617741],\n\t\t\t\t\t\t[-86.148339, 31.790951],\n\t\t\t\t\t\t[-86.199378, 31.790450],\n\t\t\t\t\t\t[-86.191379, 31.966453],\n\t\t\t\t\t\t[-85.995563, 31.967554],\n\t\t\t\t\t\t[-85.996853, 32.051049],\n\t\t\t\t\t\t[-85.893652, 32.047351],\n\t\t\t\t\t\t[-85.884350, 31.967253],\n\t\t\t\t\t\t[-85.790048, 31.967254],\n\t\t\t\t\t\t[-85.791047, 31.880357],\n\t\t\t\t\t\t[-85.657668, 31.880275],\n\t\t\t\t\t\t[-85.666230, 31.772877],\n\t\t\t\t\t\t[-85.748251, 31.618048]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US09009\",\n\t\t\t\t\"STATE\": \"09\",\n\t\t\t\t\"COUNTY\": \"009\",\n\t\t\t\t\"NAME\": \"New Haven\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 604.506000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-73.155730, 41.515279],\n\t\t\t\t\t\t[-73.164676, 41.557088],\n\t\t\t\t\t\t[-73.145036, 41.557822],\n\t\t\t\t\t\t[-73.058024, 41.606740],\n\t\t\t\t\t\t[-73.036156, 41.615197],\n\t\t\t\t\t\t[-73.018650, 41.614097],\n\t\t\t\t\t\t[-73.021471, 41.627104],\n\t\t\t\t\t\t[-73.004046, 41.628577],\n\t\t\t\t\t\t[-72.983250, 41.639598],\n\t\t\t\t\t\t[-72.946350, 41.556797],\n\t\t\t\t\t\t[-72.752181, 41.578894],\n\t\t\t\t\t\t[-72.744742, 41.497698],\n\t\t\t\t\t\t[-72.743330, 41.483114],\n\t\t\t\t\t\t[-72.733886, 41.485368],\n\t\t\t\t\t\t[-72.746141, 41.423297],\n\t\t\t\t\t\t[-72.708343, 41.429443],\n\t\t\t\t\t\t[-72.682539, 41.433797],\n\t\t\t\t\t\t[-72.678739, 41.433797],\n\t\t\t\t\t\t[-72.537776, 41.255646],\n\t\t\t\t\t\t[-72.546833, 41.250718],\n\t\t\t\t\t\t[-72.547235, 41.250499],\n\t\t\t\t\t\t[-72.570655, 41.267744],\n\t\t\t\t\t\t[-72.571076, 41.268054],\n\t\t\t\t\t\t[-72.571136, 41.268098],\n\t\t\t\t\t\t[-72.583336, 41.271698],\n\t\t\t\t\t\t[-72.585181, 41.271321],\n\t\t\t\t\t\t[-72.585934, 41.271168],\n\t\t\t\t\t\t[-72.586674, 41.271017],\n\t\t\t\t\t\t[-72.587926, 41.270761],\n\t\t\t\t\t\t[-72.589818, 41.270375],\n\t\t\t\t\t\t[-72.590967, 41.270141],\n\t\t\t\t\t\t[-72.598036, 41.268698],\n\t\t\t\t\t\t[-72.607863, 41.270387],\n\t\t\t\t\t\t[-72.610236, 41.270795],\n\t\t\t\t\t\t[-72.617237, 41.271998],\n\t\t\t\t\t\t[-72.617521, 41.271940],\n\t\t\t\t\t\t[-72.617983, 41.271845],\n\t\t\t\t\t\t[-72.631363, 41.269092],\n\t\t\t\t\t\t[-72.641001, 41.267108],\n\t\t\t\t\t\t[-72.641538, 41.266998],\n\t\t\t\t\t\t[-72.642811, 41.266884],\n\t\t\t\t\t\t[-72.650697, 41.266178],\n\t\t\t\t\t\t[-72.653838, 41.265897],\n\t\t\t\t\t\t[-72.653931, 41.265931],\n\t\t\t\t\t\t[-72.654715, 41.266219],\n\t\t\t\t\t\t[-72.662203, 41.268964],\n\t\t\t\t\t\t[-72.662838, 41.269197],\n\t\t\t\t\t\t[-72.667176, 41.268192],\n\t\t\t\t\t\t[-72.671673, 41.267151],\n\t\t\t\t\t\t[-72.672339, 41.266997],\n\t\t\t\t\t\t[-72.674319, 41.265520],\n\t\t\t\t\t\t[-72.684939, 41.257597],\n\t\t\t\t\t\t[-72.685414, 41.252607],\n\t\t\t\t\t\t[-72.685539, 41.251297],\n\t\t\t\t\t\t[-72.689446, 41.247629],\n\t\t\t\t\t\t[-72.690237, 41.246887],\n\t\t\t\t\t\t[-72.690439, 41.246697],\n\t\t\t\t\t\t[-72.693441, 41.245493],\n\t\t\t\t\t\t[-72.694744, 41.244970],\n\t\t\t\t\t\t[-72.695470, 41.244948],\n\t\t\t\t\t\t[-72.701806, 41.244752],\n\t\t\t\t\t\t[-72.706236, 41.244615],\n\t\t\t\t\t\t[-72.707212, 41.244585],\n\t\t\t\t\t\t[-72.708658, 41.244540],\n\t\t\t\t\t\t[-72.708963, 41.244530],\n\t\t\t\t\t\t[-72.709193, 41.244523],\n\t\t\t\t\t\t[-72.710595, 41.244480],\n\t\t\t\t\t\t[-72.710821, 41.244812],\n\t\t\t\t\t\t[-72.713674, 41.249007],\n\t\t\t\t\t\t[-72.711208, 41.251018],\n\t\t\t\t\t\t[-72.712460, 41.254167],\n\t\t\t\t\t\t[-72.722439, 41.259138],\n\t\t\t\t\t\t[-72.732813, 41.254727],\n\t\t\t\t\t\t[-72.754444, 41.266913],\n\t\t\t\t\t\t[-72.757477, 41.266913],\n\t\t\t\t\t\t[-72.786142, 41.264796],\n\t\t\t\t\t\t[-72.818737, 41.252244],\n\t\t\t\t\t\t[-72.819372, 41.254061],\n\t\t\t\t\t\t[-72.826883, 41.256755],\n\t\t\t\t\t\t[-72.847767, 41.256690],\n\t\t\t\t\t\t[-72.850210, 41.255544],\n\t\t\t\t\t\t[-72.854055, 41.247740],\n\t\t\t\t\t\t[-72.861344, 41.245297],\n\t\t\t\t\t\t[-72.881445, 41.242597],\n\t\t\t\t\t\t[-72.895445, 41.243697],\n\t\t\t\t\t\t[-72.900803, 41.245864],\n\t\t\t\t\t\t[-72.904345, 41.247297],\n\t\t\t\t\t\t[-72.905245, 41.248297],\n\t\t\t\t\t\t[-72.903045, 41.252797],\n\t\t\t\t\t\t[-72.902808, 41.252894],\n\t\t\t\t\t\t[-72.894745, 41.256197],\n\t\t\t\t\t\t[-72.894730, 41.256260],\n\t\t\t\t\t\t[-72.893845, 41.259897],\n\t\t\t\t\t\t[-72.896370, 41.263949],\n\t\t\t\t\t\t[-72.903129, 41.274794],\n\t\t\t\t\t\t[-72.907962, 41.282549],\n\t\t\t\t\t\t[-72.908200, 41.282932],\n\t\t\t\t\t\t[-72.916827, 41.282033],\n\t\t\t\t\t\t[-72.917037, 41.281905],\n\t\t\t\t\t\t[-72.920062, 41.280056],\n\t\t\t\t\t\t[-72.920658, 41.271574],\n\t\t\t\t\t\t[-72.920714, 41.270780],\n\t\t\t\t\t\t[-72.920846, 41.268897],\n\t\t\t\t\t\t[-72.931887, 41.261139],\n\t\t\t\t\t\t[-72.933472, 41.260024],\n\t\t\t\t\t\t[-72.935646, 41.258497],\n\t\t\t\t\t\t[-72.956984, 41.252920],\n\t\t\t\t\t\t[-72.959633, 41.252228],\n\t\t\t\t\t\t[-72.961345, 41.251780],\n\t\t\t\t\t\t[-72.962047, 41.251597],\n\t\t\t\t\t\t[-72.983751, 41.235364],\n\t\t\t\t\t\t[-72.985095, 41.234358],\n\t\t\t\t\t\t[-73.067851, 41.300996],\n\t\t\t\t\t\t[-73.075352, 41.305596],\n\t\t\t\t\t\t[-73.077652, 41.307696],\n\t\t\t\t\t\t[-73.078952, 41.311596],\n\t\t\t\t\t\t[-73.086650, 41.314495],\n\t\t\t\t\t\t[-73.090938, 41.319256],\n\t\t\t\t\t\t[-73.115754, 41.332196],\n\t\t\t\t\t\t[-73.136054, 41.351196],\n\t\t\t\t\t\t[-73.147555, 41.367696],\n\t\t\t\t\t\t[-73.161253, 41.383853],\n\t\t\t\t\t\t[-73.173356, 41.383596],\n\t\t\t\t\t\t[-73.183269, 41.391711],\n\t\t\t\t\t\t[-73.187957, 41.397296],\n\t\t\t\t\t\t[-73.184857, 41.406296],\n\t\t\t\t\t\t[-73.207688, 41.420544],\n\t\t\t\t\t\t[-73.310473, 41.468815],\n\t\t\t\t\t\t[-73.327114, 41.484527],\n\t\t\t\t\t\t[-73.318889, 41.505189],\n\t\t\t\t\t\t[-73.155730, 41.515279]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05049\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"049\",\n\t\t\t\t\"NAME\": \"Fulton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 618.194000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.120415, 36.498863],\n\t\t\t\t\t\t[-92.120306, 36.498864],\n\t\t\t\t\t\t[-92.098356, 36.498803],\n\t\t\t\t\t\t[-92.074934, 36.498761],\n\t\t\t\t\t\t[-92.057178, 36.498670],\n\t\t\t\t\t\t[-92.055789, 36.498670],\n\t\t\t\t\t\t[-92.028847, 36.498642],\n\t\t\t\t\t\t[-92.019375, 36.498524],\n\t\t\t\t\t\t[-91.988751, 36.498498],\n\t\t\t\t\t\t[-91.985802, 36.498431],\n\t\t\t\t\t\t[-91.865995, 36.498783],\n\t\t\t\t\t\t[-91.864385, 36.498789],\n\t\t\t\t\t\t[-91.805981, 36.498987],\n\t\t\t\t\t\t[-91.802040, 36.498963],\n\t\t\t\t\t\t[-91.799500, 36.498952],\n\t\t\t\t\t\t[-91.784713, 36.499074],\n\t\t\t\t\t\t[-91.766111, 36.499114],\n\t\t\t\t\t\t[-91.726663, 36.499209],\n\t\t\t\t\t\t[-91.687615, 36.499397],\n\t\t\t\t\t\t[-91.686026, 36.499374],\n\t\t\t\t\t\t[-91.672343, 36.499463],\n\t\t\t\t\t\t[-91.642590, 36.499335],\n\t\t\t\t\t\t[-91.631439, 36.499198],\n\t\t\t\t\t\t[-91.601317, 36.499343],\n\t\t\t\t\t\t[-91.596213, 36.499162],\n\t\t\t\t\t\t[-91.549163, 36.499161],\n\t\t\t\t\t\t[-91.539359, 36.499116],\n\t\t\t\t\t\t[-91.536870, 36.499156],\n\t\t\t\t\t\t[-91.529774, 36.499022],\n\t\t\t\t\t\t[-91.450005, 36.497538],\n\t\t\t\t\t\t[-91.454437, 36.335465],\n\t\t\t\t\t\t[-91.565866, 36.337400],\n\t\t\t\t\t\t[-91.566078, 36.249945],\n\t\t\t\t\t\t[-91.691435, 36.253301],\n\t\t\t\t\t\t[-92.156990, 36.261248],\n\t\t\t\t\t\t[-92.159215, 36.261311],\n\t\t\t\t\t\t[-92.150295, 36.498634],\n\t\t\t\t\t\t[-92.137741, 36.498706],\n\t\t\t\t\t\t[-92.120415, 36.498863]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US05127\",\n\t\t\t\t\"STATE\": \"05\",\n\t\t\t\t\"COUNTY\": \"127\",\n\t\t\t\t\"NAME\": \"Scott\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 892.320000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.449253, 34.895869],\n\t\t\t\t\t\t[-94.447889, 34.933941],\n\t\t\t\t\t\t[-94.230524, 34.968527],\n\t\t\t\t\t\t[-94.222869, 35.079115],\n\t\t\t\t\t\t[-94.140571, 35.099678],\n\t\t\t\t\t\t[-94.074347, 35.026585],\n\t\t\t\t\t\t[-93.704885, 35.019715],\n\t\t\t\t\t\t[-93.710297, 34.745296],\n\t\t\t\t\t\t[-93.870197, 34.712699],\n\t\t\t\t\t\t[-93.930509, 34.665608],\n\t\t\t\t\t\t[-94.018168, 34.692469],\n\t\t\t\t\t\t[-94.317659, 34.697408],\n\t\t\t\t\t\t[-94.454576, 34.728962],\n\t\t\t\t\t\t[-94.450233, 34.855413],\n\t\t\t\t\t\t[-94.450140, 34.858694],\n\t\t\t\t\t\t[-94.450065, 34.861335],\n\t\t\t\t\t\t[-94.449630, 34.875253],\n\t\t\t\t\t\t[-94.449058, 34.890556],\n\t\t\t\t\t\t[-94.449086, 34.894152],\n\t\t\t\t\t\t[-94.449253, 34.895869]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21117\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"117\",\n\t\t\t\t\"NAME\": \"Kenton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 160.250000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.510057, 39.093593],\n\t\t\t\t\t\t[-84.509743, 39.093660],\n\t\t\t\t\t\t[-84.506082, 39.095081],\n\t\t\t\t\t\t[-84.450800, 38.993609],\n\t\t\t\t\t\t[-84.463400, 38.852059],\n\t\t\t\t\t\t[-84.418107, 38.806596],\n\t\t\t\t\t\t[-84.420199, 38.805679],\n\t\t\t\t\t\t[-84.532288, 38.791937],\n\t\t\t\t\t\t[-84.597775, 38.791170],\n\t\t\t\t\t\t[-84.615740, 38.802192],\n\t\t\t\t\t\t[-84.598031, 38.879540],\n\t\t\t\t\t\t[-84.623732, 39.074427],\n\t\t\t\t\t\t[-84.620112, 39.073457],\n\t\t\t\t\t\t[-84.603444, 39.073699],\n\t\t\t\t\t\t[-84.510057, 39.093593]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US19123\",\n\t\t\t\t\"STATE\": \"19\",\n\t\t\t\t\"COUNTY\": \"123\",\n\t\t\t\t\"NAME\": \"Mahaska\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 570.863000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.871421, 41.508522],\n\t\t\t\t\t\t[-92.756508, 41.508794],\n\t\t\t\t\t\t[-92.411995, 41.509548],\n\t\t\t\t\t\t[-92.410233, 41.161942],\n\t\t\t\t\t\t[-92.640361, 41.161298],\n\t\t\t\t\t\t[-92.869771, 41.161066],\n\t\t\t\t\t\t[-92.871421, 41.508522]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US47015\",\n\t\t\t\t\"STATE\": \"47\",\n\t\t\t\t\"COUNTY\": \"015\",\n\t\t\t\t\"NAME\": \"Cannon\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 265.635000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.885156, 35.839658],\n\t\t\t\t\t\t[-85.984891, 35.734553],\n\t\t\t\t\t\t[-85.985062, 35.660108],\n\t\t\t\t\t\t[-86.143652, 35.661747],\n\t\t\t\t\t\t[-86.207147, 35.703790],\n\t\t\t\t\t\t[-86.153214, 35.954399],\n\t\t\t\t\t\t[-86.014849, 35.961060],\n\t\t\t\t\t\t[-85.885156, 35.839658]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US38011\",\n\t\t\t\t\"STATE\": \"38\",\n\t\t\t\t\"COUNTY\": \"011\",\n\t\t\t\t\"NAME\": \"Bowman\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1161.807000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-102.995668, 45.945167],\n\t\t\t\t\t\t[-103.026058, 45.945307],\n\t\t\t\t\t\t[-103.047779, 45.945335],\n\t\t\t\t\t\t[-103.078477, 45.945289],\n\t\t\t\t\t\t[-103.097872, 45.945262],\n\t\t\t\t\t\t[-103.140939, 45.945257],\n\t\t\t\t\t\t[-103.161251, 45.945309],\n\t\t\t\t\t\t[-103.210634, 45.945222],\n\t\t\t\t\t\t[-103.218396, 45.945208],\n\t\t\t\t\t\t[-103.284092, 45.945149],\n\t\t\t\t\t\t[-103.284109, 45.945152],\n\t\t\t\t\t\t[-103.411325, 45.945264],\n\t\t\t\t\t\t[-103.418040, 45.945186],\n\t\t\t\t\t\t[-103.432393, 45.945313],\n\t\t\t\t\t\t[-103.434851, 45.945291],\n\t\t\t\t\t\t[-103.558710, 45.945131],\n\t\t\t\t\t\t[-103.577083, 45.945283],\n\t\t\t\t\t\t[-103.660779, 45.945231],\n\t\t\t\t\t\t[-103.660779, 45.945241],\n\t\t\t\t\t\t[-103.668479, 45.945242],\n\t\t\t\t\t\t[-104.045443, 45.945310],\n\t\t\t\t\t\t[-104.046670, 46.000001],\n\t\t\t\t\t\t[-104.045633, 46.280188],\n\t\t\t\t\t\t[-102.995454, 46.280713],\n\t\t\t\t\t\t[-102.995668, 45.945167]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US38083\",\n\t\t\t\t\"STATE\": \"38\",\n\t\t\t\t\"COUNTY\": \"083\",\n\t\t\t\t\"NAME\": \"Sheridan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 972.379000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.673445, 47.327720],\n\t\t\t\t\t\t[-100.672262, 47.674128],\n\t\t\t\t\t\t[-100.585106, 47.673912],\n\t\t\t\t\t\t[-100.585161, 47.847480],\n\t\t\t\t\t\t[-100.197996, 47.847600],\n\t\t\t\t\t\t[-100.166099, 47.847581],\n\t\t\t\t\t\t[-100.164591, 47.847465],\n\t\t\t\t\t\t[-100.069206, 47.847301],\n\t\t\t\t\t\t[-100.069514, 47.673650],\n\t\t\t\t\t\t[-100.032849, 47.673621],\n\t\t\t\t\t\t[-100.033292, 47.327192],\n\t\t\t\t\t\t[-100.036063, 47.327304],\n\t\t\t\t\t\t[-100.093491, 47.327087],\n\t\t\t\t\t\t[-100.094739, 47.327326],\n\t\t\t\t\t\t[-100.113261, 47.327262],\n\t\t\t\t\t\t[-100.669601, 47.327435],\n\t\t\t\t\t\t[-100.673445, 47.327720]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US48375\",\n\t\t\t\t\"STATE\": \"48\",\n\t\t\t\t\"COUNTY\": \"375\",\n\t\t\t\t\"NAME\": \"Potter\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 908.370000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-101.622941, 35.183117],\n\t\t\t\t\t\t[-102.167471, 35.183233],\n\t\t\t\t\t\t[-102.162752, 35.620035],\n\t\t\t\t\t\t[-101.622800, 35.620196],\n\t\t\t\t\t\t[-101.622993, 35.184339],\n\t\t\t\t\t\t[-101.622941, 35.183117]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US31065\",\n\t\t\t\t\"STATE\": \"31\",\n\t\t\t\t\"COUNTY\": \"065\",\n\t\t\t\t\"NAME\": \"Furnas\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 719.132000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-99.642209, 40.351200],\n\t\t\t\t\t\t[-99.630619, 40.351206],\n\t\t\t\t\t\t[-99.630459, 40.351120],\n\t\t\t\t\t\t[-99.628255, 40.001866],\n\t\t\t\t\t\t[-99.628346, 40.001866],\n\t\t\t\t\t\t[-99.719639, 40.001808],\n\t\t\t\t\t\t[-99.731959, 40.001827],\n\t\t\t\t\t\t[-99.746628, 40.001820],\n\t\t\t\t\t\t[-99.756835, 40.001342],\n\t\t\t\t\t\t[-99.764214, 40.001551],\n\t\t\t\t\t\t[-99.772121, 40.001804],\n\t\t\t\t\t\t[-99.775640, 40.001647],\n\t\t\t\t\t\t[-99.813401, 40.001400],\n\t\t\t\t\t\t[-99.906658, 40.001512],\n\t\t\t\t\t\t[-99.930433, 40.001516],\n\t\t\t\t\t\t[-99.944417, 40.001584],\n\t\t\t\t\t\t[-99.948167, 40.001813],\n\t\t\t\t\t\t[-99.986611, 40.001550],\n\t\t\t\t\t\t[-99.990926, 40.001503],\n\t\t\t\t\t\t[-100.177795, 40.001593],\n\t\t\t\t\t\t[-100.177823, 40.001593],\n\t\t\t\t\t\t[-100.188181, 40.001541],\n\t\t\t\t\t\t[-100.190323, 40.001586],\n\t\t\t\t\t\t[-100.193590, 40.001573],\n\t\t\t\t\t\t[-100.193597, 40.001573],\n\t\t\t\t\t\t[-100.197807, 40.350027],\n\t\t\t\t\t\t[-100.094798, 40.351245],\n\t\t\t\t\t\t[-99.642209, 40.351200]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28135\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"135\",\n\t\t\t\t\"NAME\": \"Tallahatchie\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 645.288000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.926099, 33.897957],\n\t\t\t\t\t\t[-89.926294, 33.823854],\n\t\t\t\t\t\t[-90.136491, 33.809319],\n\t\t\t\t\t\t[-90.136787, 33.721648],\n\t\t\t\t\t\t[-90.269105, 33.697208],\n\t\t\t\t\t\t[-90.294502, 33.750981],\n\t\t\t\t\t\t[-90.185599, 33.765514],\n\t\t\t\t\t\t[-90.182584, 33.809322],\n\t\t\t\t\t\t[-90.451643, 33.811390],\n\t\t\t\t\t\t[-90.450289, 33.970944],\n\t\t\t\t\t\t[-90.451012, 33.985689],\n\t\t\t\t\t\t[-90.450530, 34.000112],\n\t\t\t\t\t\t[-90.450981, 34.072932],\n\t\t\t\t\t\t[-90.135695, 34.072900],\n\t\t\t\t\t\t[-90.135456, 34.160074],\n\t\t\t\t\t\t[-89.931485, 34.164303],\n\t\t\t\t\t\t[-89.926099, 33.897957]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US41019\",\n\t\t\t\t\"STATE\": \"41\",\n\t\t\t\t\"COUNTY\": \"019\",\n\t\t\t\t\"NAME\": \"Douglas\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 5036.075000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-124.218876, 43.610319],\n\t\t\t\t\t\t[-124.203028, 43.667825],\n\t\t\t\t\t\t[-124.204888, 43.673976],\n\t\t\t\t\t\t[-124.198275, 43.689481],\n\t\t\t\t\t\t[-124.193455, 43.706085],\n\t\t\t\t\t\t[-124.168392, 43.808903],\n\t\t\t\t\t\t[-124.158684, 43.863504],\n\t\t\t\t\t\t[-123.925510, 43.865633],\n\t\t\t\t\t\t[-123.925513, 43.899167],\n\t\t\t\t\t\t[-123.827622, 43.945045],\n\t\t\t\t\t\t[-123.703461, 43.945131],\n\t\t\t\t\t\t[-123.619300, 43.920130],\n\t\t\t\t\t\t[-123.579681, 43.868138],\n\t\t\t\t\t\t[-123.470506, 43.810196],\n\t\t\t\t\t\t[-123.348016, 43.809165],\n\t\t\t\t\t\t[-123.347659, 43.780169],\n\t\t\t\t\t\t[-123.137677, 43.779666],\n\t\t\t\t\t\t[-123.137064, 43.605970],\n\t\t\t\t\t\t[-123.107475, 43.540004],\n\t\t\t\t\t\t[-122.741771, 43.544553],\n\t\t\t\t\t\t[-122.740765, 43.437142],\n\t\t\t\t\t\t[-122.132044, 43.440445],\n\t\t\t\t\t\t[-122.010239, 43.343249],\n\t\t\t\t\t\t[-121.973841, 43.261728],\n\t\t\t\t\t\t[-122.037839, 43.217250],\n\t\t\t\t\t\t[-122.091539, 43.076050],\n\t\t\t\t\t\t[-122.282245, 43.067547],\n\t\t\t\t\t\t[-122.281856, 42.996556],\n\t\t\t\t\t\t[-122.400467, 42.996426],\n\t\t\t\t\t\t[-122.460053, 42.939852],\n\t\t\t\t\t\t[-122.677211, 42.881341],\n\t\t\t\t\t\t[-122.794793, 42.779422],\n\t\t\t\t\t\t[-123.151421, 42.756069],\n\t\t\t\t\t\t[-123.229900, 42.702486],\n\t\t\t\t\t\t[-123.365975, 42.732040],\n\t\t\t\t\t\t[-123.444177, 42.703138],\n\t\t\t\t\t\t[-123.715088, 42.739735],\n\t\t\t\t\t\t[-123.716190, 42.784234],\n\t\t\t\t\t\t[-123.727589, 42.780135],\n\t\t\t\t\t\t[-123.777322, 42.798988],\n\t\t\t\t\t\t[-123.812093, 42.789433],\n\t\t\t\t\t\t[-123.820798, 42.995935],\n\t\t\t\t\t\t[-123.762095, 42.996036],\n\t\t\t\t\t\t[-123.760630, 43.083127],\n\t\t\t\t\t\t[-123.701989, 43.087288],\n\t\t\t\t\t\t[-123.703798, 43.257835],\n\t\t\t\t\t\t[-123.764000, 43.257935],\n\t\t\t\t\t\t[-123.764005, 43.432237],\n\t\t\t\t\t\t[-123.817707, 43.431237],\n\t\t\t\t\t\t[-123.816834, 43.516030],\n\t\t\t\t\t\t[-123.875529, 43.515949],\n\t\t\t\t\t\t[-123.875424, 43.608254],\n\t\t\t\t\t\t[-124.218876, 43.610319]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US29013\",\n\t\t\t\t\"STATE\": \"29\",\n\t\t\t\t\"COUNTY\": \"013\",\n\t\t\t\t\"NAME\": \"Bates\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 836.689000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.065713, 38.447087],\n\t\t\t\t\t\t[-94.075214, 38.214502],\n\t\t\t\t\t\t[-94.049895, 38.213985],\n\t\t\t\t\t\t[-94.058285, 38.036627],\n\t\t\t\t\t\t[-94.614055, 38.060056],\n\t\t\t\t\t\t[-94.614055, 38.060088],\n\t\t\t\t\t\t[-94.614089, 38.065901],\n\t\t\t\t\t\t[-94.614061, 38.067343],\n\t\t\t\t\t\t[-94.613856, 38.149769],\n\t\t\t\t\t\t[-94.613748, 38.160633],\n\t\t\t\t\t\t[-94.613422, 38.167908],\n\t\t\t\t\t\t[-94.613073, 38.190552],\n\t\t\t\t\t\t[-94.612848, 38.200714],\n\t\t\t\t\t\t[-94.612822, 38.203918],\n\t\t\t\t\t\t[-94.612658, 38.217649],\n\t\t\t\t\t\t[-94.612659, 38.219251],\n\t\t\t\t\t\t[-94.612635, 38.226987],\n\t\t\t\t\t\t[-94.612614, 38.237766],\n\t\t\t\t\t\t[-94.612692, 38.270394],\n\t\t\t\t\t\t[-94.612849, 38.289914],\n\t\t\t\t\t\t[-94.612844, 38.291423],\n\t\t\t\t\t\t[-94.612673, 38.302527],\n\t\t\t\t\t\t[-94.612673, 38.314832],\n\t\t\t\t\t\t[-94.612788, 38.320142],\n\t\t\t\t\t\t[-94.612825, 38.324387],\n\t\t\t\t\t\t[-94.613000, 38.335801],\n\t\t\t\t\t\t[-94.613312, 38.364407],\n\t\t\t\t\t\t[-94.613329, 38.369618],\n\t\t\t\t\t\t[-94.613275, 38.388718],\n\t\t\t\t\t\t[-94.613265, 38.392426],\n\t\t\t\t\t\t[-94.613365, 38.403422],\n\t\t\t\t\t\t[-94.612866, 38.477571],\n\t\t\t\t\t\t[-94.612865, 38.477602],\n\t\t\t\t\t\t[-94.312170, 38.471496],\n\t\t\t\t\t\t[-94.065713, 38.447087]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55001\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"001\",\n\t\t\t\t\"NAME\": \"Adams\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 645.646000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.902565, 44.249470],\n\t\t\t\t\t\t[-89.726235, 44.247943],\n\t\t\t\t\t\t[-89.724746, 44.247678],\n\t\t\t\t\t\t[-89.597980, 44.245725],\n\t\t\t\t\t\t[-89.597950, 43.982100],\n\t\t\t\t\t\t[-89.599545, 43.644514],\n\t\t\t\t\t\t[-89.599985, 43.642596],\n\t\t\t\t\t\t[-89.785809, 43.641049],\n\t\t\t\t\t\t[-89.865478, 43.783177],\n\t\t\t\t\t\t[-89.958101, 43.859902],\n\t\t\t\t\t\t[-89.968949, 43.994074],\n\t\t\t\t\t\t[-90.028807, 44.090232],\n\t\t\t\t\t\t[-89.903344, 44.178696],\n\t\t\t\t\t\t[-89.925822, 44.192715],\n\t\t\t\t\t\t[-89.902565, 44.249470]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US53057\",\n\t\t\t\t\"STATE\": \"53\",\n\t\t\t\t\"COUNTY\": \"057\",\n\t\t\t\t\"NAME\": \"Skagit\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1731.203000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-122.649405, 48.588457],\n\t\t\t\t\t\t\t[-122.642597, 48.588339],\n\t\t\t\t\t\t\t[-122.629321, 48.572200],\n\t\t\t\t\t\t\t[-122.610841, 48.561146],\n\t\t\t\t\t\t\t[-122.592901, 48.553635],\n\t\t\t\t\t\t\t[-122.583985, 48.551534],\n\t\t\t\t\t\t\t[-122.578856, 48.548130],\n\t\t\t\t\t\t\t[-122.572967, 48.529028],\n\t\t\t\t\t\t\t[-122.583565, 48.532340],\n\t\t\t\t\t\t\t[-122.590194, 48.536259],\n\t\t\t\t\t\t\t[-122.599948, 48.536904],\n\t\t\t\t\t\t\t[-122.619858, 48.529246],\n\t\t\t\t\t\t\t[-122.635738, 48.526021],\n\t\t\t\t\t\t\t[-122.640414, 48.525860],\n\t\t\t\t\t\t\t[-122.649256, 48.528769],\n\t\t\t\t\t\t\t[-122.652041, 48.531329],\n\t\t\t\t\t\t\t[-122.654342, 48.537956],\n\t\t\t\t\t\t\t[-122.653612, 48.548975],\n\t\t\t\t\t\t\t[-122.650786, 48.554019],\n\t\t\t\t\t\t\t[-122.652385, 48.583432],\n\t\t\t\t\t\t\t[-122.649405, 48.588457]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-122.714512, 48.608780],\n\t\t\t\t\t\t\t[-122.694672, 48.596602],\n\t\t\t\t\t\t\t[-122.691745, 48.590612],\n\t\t\t\t\t\t\t[-122.670638, 48.568812],\n\t\t\t\t\t\t\t[-122.689440, 48.543903],\n\t\t\t\t\t\t\t[-122.717278, 48.539739],\n\t\t\t\t\t\t\t[-122.722407, 48.540606],\n\t\t\t\t\t\t\t[-122.724031, 48.549906],\n\t\t\t\t\t\t\t[-122.730480, 48.565602],\n\t\t\t\t\t\t\t[-122.736199, 48.569005],\n\t\t\t\t\t\t\t[-122.739440, 48.573893],\n\t\t\t\t\t\t\t[-122.739898, 48.583949],\n\t\t\t\t\t\t\t[-122.724930, 48.603263],\n\t\t\t\t\t\t\t[-122.714512, 48.608780]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-122.699266, 48.621115],\n\t\t\t\t\t\t\t[-122.698060, 48.623080],\n\t\t\t\t\t\t\t[-122.674173, 48.629944],\n\t\t\t\t\t\t\t[-122.657016, 48.609891],\n\t\t\t\t\t\t\t[-122.666149, 48.608088],\n\t\t\t\t\t\t\t[-122.676796, 48.610055],\n\t\t\t\t\t\t\t[-122.686136, 48.613267],\n\t\t\t\t\t\t\t[-122.699266, 48.621115]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-122.378210, 48.297590],\n\t\t\t\t\t\t\t[-122.384310, 48.304123],\n\t\t\t\t\t\t\t[-122.408718, 48.326413],\n\t\t\t\t\t\t\t[-122.424102, 48.334346],\n\t\t\t\t\t\t\t[-122.442678, 48.337934],\n\t\t\t\t\t\t\t[-122.475529, 48.359912],\n\t\t\t\t\t\t\t[-122.482423, 48.361737],\n\t\t\t\t\t\t\t[-122.497686, 48.361837],\n\t\t\t\t\t\t\t[-122.507437, 48.364666],\n\t\t\t\t\t\t\t[-122.533452, 48.383409],\n\t\t\t\t\t\t\t[-122.539449, 48.397190],\n\t\t\t\t\t\t\t[-122.547492, 48.399889],\n\t\t\t\t\t\t\t[-122.554536, 48.406040],\n\t\t\t\t\t\t\t[-122.558403, 48.426758],\n\t\t\t\t\t\t\t[-122.551221, 48.439465],\n\t\t\t\t\t\t\t[-122.557298, 48.444438],\n\t\t\t\t\t\t\t[-122.568348, 48.444990],\n\t\t\t\t\t\t\t[-122.575254, 48.443333],\n\t\t\t\t\t\t\t[-122.581607, 48.429244],\n\t\t\t\t\t\t\t[-122.614480, 48.414880],\n\t\t\t\t\t\t\t[-122.649839, 48.408526],\n\t\t\t\t\t\t\t[-122.665338, 48.416453],\n\t\t\t\t\t\t\t[-122.674158, 48.424726],\n\t\t\t\t\t\t\t[-122.678928, 48.439466],\n\t\t\t\t\t\t\t[-122.677072, 48.444059],\n\t\t\t\t\t\t\t[-122.674188, 48.443327],\n\t\t\t\t\t\t\t[-122.674085, 48.441979],\n\t\t\t\t\t\t\t[-122.667249, 48.442503],\n\t\t\t\t\t\t\t[-122.654844, 48.454087],\n\t\t\t\t\t\t\t[-122.657753, 48.472940],\n\t\t\t\t\t\t\t[-122.664623, 48.478128],\n\t\t\t\t\t\t\t[-122.689121, 48.476849],\n\t\t\t\t\t\t\t[-122.695725, 48.464785],\n\t\t\t\t\t\t\t[-122.695587, 48.460558],\n\t\t\t\t\t\t\t[-122.700603, 48.457632],\n\t\t\t\t\t\t\t[-122.710362, 48.461584],\n\t\t\t\t\t\t\t[-122.712322, 48.464143],\n\t\t\t\t\t\t\t[-122.712981, 48.478790],\n\t\t\t\t\t\t\t[-122.701644, 48.497622],\n\t\t\t\t\t\t\t[-122.684521, 48.509123],\n\t\t\t\t\t\t\t[-122.679122, 48.507797],\n\t\t\t\t\t\t\t[-122.676922, 48.504484],\n\t\t\t\t\t\t\t[-122.671386, 48.503980],\n\t\t\t\t\t\t\t[-122.615183, 48.521427],\n\t\t\t\t\t\t\t[-122.606961, 48.522152],\n\t\t\t\t\t\t\t[-122.599951, 48.520946],\n\t\t\t\t\t\t\t[-122.598469, 48.512169],\n\t\t\t\t\t\t\t[-122.568071, 48.508210],\n\t\t\t\t\t\t\t[-122.556834, 48.498812],\n\t\t\t\t\t\t\t[-122.537355, 48.466749],\n\t\t\t\t\t\t\t[-122.532845, 48.466057],\n\t\t\t\t\t\t\t[-122.526943, 48.468004],\n\t\t\t\t\t\t\t[-122.515056, 48.465554],\n\t\t\t\t\t\t\t[-122.511348, 48.461825],\n\t\t\t\t\t\t\t[-122.500721, 48.460887],\n\t\t\t\t\t\t\t[-122.471832, 48.470724],\n\t\t\t\t\t\t\t[-122.469634, 48.472187],\n\t\t\t\t\t\t\t[-122.469670, 48.474975],\n\t\t\t\t\t\t\t[-122.473763, 48.479750],\n\t\t\t\t\t\t\t[-122.478851, 48.481736],\n\t\t\t\t\t\t\t[-122.483501, 48.492430],\n\t\t\t\t\t\t\t[-122.484996, 48.509620],\n\t\t\t\t\t\t\t[-122.483872, 48.521891],\n\t\t\t\t\t\t\t[-122.485288, 48.528106],\n\t\t\t\t\t\t\t[-122.498463, 48.556206],\n\t\t\t\t\t\t\t[-122.504428, 48.564775],\n\t\t\t\t\t\t\t[-122.525370, 48.567344],\n\t\t\t\t\t\t\t[-122.531978, 48.568644],\n\t\t\t\t\t\t\t[-122.534719, 48.574246],\n\t\t\t\t\t\t\t[-122.534787, 48.575960],\n\t\t\t\t\t\t\t[-122.512372, 48.578067],\n\t\t\t\t\t\t\t[-122.495904, 48.575927],\n\t\t\t\t\t\t\t[-122.488421, 48.564665],\n\t\t\t\t\t\t\t[-122.482406, 48.559653],\n\t\t\t\t\t\t\t[-122.478431, 48.559303],\n\t\t\t\t\t\t\t[-122.444560, 48.570115],\n\t\t\t\t\t\t\t[-122.433059, 48.581609],\n\t\t\t\t\t\t\t[-122.425271, 48.599522],\n\t\t\t\t\t\t\t[-122.448702, 48.622624],\n\t\t\t\t\t\t\t[-122.464250, 48.625717],\n\t\t\t\t\t\t\t[-122.486878, 48.643122],\n\t\t\t\t\t\t\t[-122.488754, 48.645358],\n\t\t\t\t\t\t\t[-121.251233, 48.640997],\n\t\t\t\t\t\t\t[-120.910534, 48.640937],\n\t\t\t\t\t\t\t[-120.752021, 48.657538],\n\t\t\t\t\t\t\t[-120.701557, 48.531620],\n\t\t\t\t\t\t\t[-120.824008, 48.545153],\n\t\t\t\t\t\t\t[-121.035823, 48.494749],\n\t\t\t\t\t\t\t[-121.069941, 48.316539],\n\t\t\t\t\t\t\t[-121.001409, 48.295548],\n\t\t\t\t\t\t\t[-122.378210, 48.297590]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US06085\",\n\t\t\t\t\"STATE\": \"06\",\n\t\t\t\t\"COUNTY\": \"085\",\n\t\t\t\t\"NAME\": \"Santa Clara\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1290.100000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-121.654038, 36.950584],\n\t\t\t\t\t\t[-121.757600, 37.049630],\n\t\t\t\t\t\t[-122.015966, 37.165658],\n\t\t\t\t\t\t[-122.152278, 37.286055],\n\t\t\t\t\t\t[-122.190402, 37.431472],\n\t\t\t\t\t\t[-122.081473, 37.477838],\n\t\t\t\t\t\t[-122.052648, 37.459656],\n\t\t\t\t\t\t[-122.045271, 37.460276],\n\t\t\t\t\t\t[-121.855762, 37.484537],\n\t\t\t\t\t\t[-121.472648, 37.482170],\n\t\t\t\t\t\t[-121.405753, 37.310990],\n\t\t\t\t\t\t[-121.459051, 37.282739],\n\t\t\t\t\t\t[-121.404636, 37.155989],\n\t\t\t\t\t\t[-121.282271, 37.183675],\n\t\t\t\t\t\t[-121.226804, 37.134774],\n\t\t\t\t\t\t[-121.215406, 36.961248],\n\t\t\t\t\t\t[-121.501488, 36.971895],\n\t\t\t\t\t\t[-121.581354, 36.899152],\n\t\t\t\t\t\t[-121.654038, 36.950584]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13017\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"017\",\n\t\t\t\t\"NAME\": \"Ben Hill\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 250.121000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.177469, 31.847857],\n\t\t\t\t\t\t[-82.995698, 31.780983],\n\t\t\t\t\t\t[-82.998360, 31.673164],\n\t\t\t\t\t\t[-83.176376, 31.678382],\n\t\t\t\t\t\t[-83.177218, 31.651691],\n\t\t\t\t\t\t[-83.325617, 31.680603],\n\t\t\t\t\t\t[-83.325296, 31.756584],\n\t\t\t\t\t\t[-83.453634, 31.757861],\n\t\t\t\t\t\t[-83.480176, 31.847312],\n\t\t\t\t\t\t[-83.177469, 31.847857]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US18047\",\n\t\t\t\t\"STATE\": \"18\",\n\t\t\t\t\"COUNTY\": \"047\",\n\t\t\t\t\"NAME\": \"Franklin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 384.430000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.815555, 39.511052],\n\t\t\t\t\t\t[-84.815555, 39.510952],\n\t\t\t\t\t\t[-84.815754, 39.477358],\n\t\t\t\t\t\t[-84.815754, 39.477352],\n\t\t\t\t\t\t[-84.817453, 39.391753],\n\t\t\t\t\t\t[-84.819352, 39.309454],\n\t\t\t\t\t\t[-84.819451, 39.305153],\n\t\t\t\t\t\t[-84.928655, 39.305934],\n\t\t\t\t\t\t[-85.065574, 39.307232],\n\t\t\t\t\t\t[-85.217883, 39.308474],\n\t\t\t\t\t\t[-85.296540, 39.268291],\n\t\t\t\t\t\t[-85.297575, 39.453275],\n\t\t\t\t\t\t[-85.298623, 39.520258],\n\t\t\t\t\t\t[-85.298110, 39.525476],\n\t\t\t\t\t\t[-85.036087, 39.526213],\n\t\t\t\t\t\t[-84.815355, 39.521950],\n\t\t\t\t\t\t[-84.815555, 39.511052]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22123\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"123\",\n\t\t\t\t\"NAME\": \"West Carroll\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 359.646000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.265018, 33.005084],\n\t\t\t\t\t\t[-91.309380, 32.935237],\n\t\t\t\t\t\t[-91.344845, 32.756659],\n\t\t\t\t\t\t[-91.445299, 32.581956],\n\t\t\t\t\t\t[-91.596027, 32.582192],\n\t\t\t\t\t\t[-91.637587, 32.667341],\n\t\t\t\t\t\t[-91.566363, 32.855561],\n\t\t\t\t\t\t[-91.511515, 32.879007],\n\t\t\t\t\t\t[-91.435782, 33.006099],\n\t\t\t\t\t\t[-91.425466, 33.006016],\n\t\t\t\t\t\t[-91.376016, 33.005794],\n\t\t\t\t\t\t[-91.333011, 33.005529],\n\t\t\t\t\t\t[-91.329767, 33.005421],\n\t\t\t\t\t\t[-91.326396, 33.005376],\n\t\t\t\t\t\t[-91.325037, 33.005364],\n\t\t\t\t\t\t[-91.322506, 33.005341],\n\t\t\t\t\t\t[-91.312016, 33.005262],\n\t\t\t\t\t\t[-91.284398, 33.005007],\n\t\t\t\t\t\t[-91.265018, 33.005084]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US26067\",\n\t\t\t\t\"STATE\": \"26\",\n\t\t\t\t\"COUNTY\": \"067\",\n\t\t\t\t\"NAME\": \"Ionia\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 571.304000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.312513, 43.118793],\n\t\t\t\t\t\t[-84.836889, 43.118851],\n\t\t\t\t\t\t[-84.837085, 42.770479],\n\t\t\t\t\t\t[-85.074245, 42.770784],\n\t\t\t\t\t\t[-85.309626, 42.769878],\n\t\t\t\t\t\t[-85.312513, 43.118793]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37185\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"185\",\n\t\t\t\t\"NAME\": \"Warren\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 428.456000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.046202, 36.544168],\n\t\t\t\t\t\t[-78.039420, 36.544196],\n\t\t\t\t\t\t[-78.038938, 36.544173],\n\t\t\t\t\t\t[-77.899771, 36.544663],\n\t\t\t\t\t\t[-77.898943, 36.518158],\n\t\t\t\t\t\t[-77.897950, 36.506849],\n\t\t\t\t\t\t[-77.912023, 36.382270],\n\t\t\t\t\t\t[-78.006554, 36.202663],\n\t\t\t\t\t\t[-78.132887, 36.246445],\n\t\t\t\t\t\t[-78.307012, 36.266159],\n\t\t\t\t\t\t[-78.287670, 36.358369],\n\t\t\t\t\t\t[-78.323912, 36.543809],\n\t\t\t\t\t\t[-78.246681, 36.544341],\n\t\t\t\t\t\t[-78.245462, 36.544411],\n\t\t\t\t\t\t[-78.133323, 36.543847],\n\t\t\t\t\t\t[-78.132911, 36.543811],\n\t\t\t\t\t\t[-78.046202, 36.544168]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US45015\",\n\t\t\t\t\"STATE\": \"45\",\n\t\t\t\t\"COUNTY\": \"015\",\n\t\t\t\t\"NAME\": \"Berkeley\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1098.857000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.446699, 33.213458],\n\t\t\t\t\t\t[-79.518844, 33.148297],\n\t\t\t\t\t\t[-79.643301, 33.123453],\n\t\t\t\t\t\t[-79.855069, 32.873870],\n\t\t\t\t\t\t[-79.928305, 32.823983],\n\t\t\t\t\t\t[-79.948848, 32.908110],\n\t\t\t\t\t\t[-80.011774, 32.899881],\n\t\t\t\t\t\t[-80.055463, 32.999514],\n\t\t\t\t\t\t[-80.149246, 33.021601],\n\t\t\t\t\t\t[-80.279567, 33.119213],\n\t\t\t\t\t\t[-80.299248, 33.130274],\n\t\t\t\t\t\t[-80.361851, 33.257443],\n\t\t\t\t\t\t[-80.253836, 33.299260],\n\t\t\t\t\t\t[-80.222267, 33.443716],\n\t\t\t\t\t\t[-80.101697, 33.496891],\n\t\t\t\t\t\t[-79.971963, 33.500937],\n\t\t\t\t\t\t[-79.756172, 33.329699],\n\t\t\t\t\t\t[-79.677014, 33.304944],\n\t\t\t\t\t\t[-79.446699, 33.213458]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13045\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"045\",\n\t\t\t\t\"NAME\": \"Carroll\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 499.076000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.337974, 33.653111],\n\t\t\t\t\t\t[-85.050889, 33.714632],\n\t\t\t\t\t\t[-85.037926, 33.811942],\n\t\t\t\t\t\t[-84.918629, 33.786328],\n\t\t\t\t\t\t[-84.901688, 33.780703],\n\t\t\t\t\t\t[-84.902546, 33.661066],\n\t\t\t\t\t\t[-84.905788, 33.573378],\n\t\t\t\t\t\t[-84.808934, 33.574085],\n\t\t\t\t\t\t[-84.850713, 33.511457],\n\t\t\t\t\t\t[-85.015358, 33.425506],\n\t\t\t\t\t\t[-85.293902, 33.428079],\n\t\t\t\t\t\t[-85.304439, 33.482884],\n\t\t\t\t\t\t[-85.313999, 33.529807],\n\t\t\t\t\t\t[-85.314091, 33.530218],\n\t\t\t\t\t\t[-85.314994, 33.535898],\n\t\t\t\t\t\t[-85.322497, 33.574167],\n\t\t\t\t\t\t[-85.337974, 33.653111]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37093\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"093\",\n\t\t\t\t\"NAME\": \"Hoke\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 390.744000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-79.083163, 35.032662],\n\t\t\t\t\t\t[-79.036926, 34.956926],\n\t\t\t\t\t\t[-79.036447, 34.955582],\n\t\t\t\t\t\t[-79.035766, 34.955329],\n\t\t\t\t\t\t[-79.034715, 34.953584],\n\t\t\t\t\t\t[-79.191423, 34.833377],\n\t\t\t\t\t\t[-79.349143, 34.838476],\n\t\t\t\t\t\t[-79.354278, 34.945641],\n\t\t\t\t\t\t[-79.459176, 35.043096],\n\t\t\t\t\t\t[-79.335189, 35.161827],\n\t\t\t\t\t\t[-79.229885, 35.210678],\n\t\t\t\t\t\t[-79.097671, 35.174172],\n\t\t\t\t\t\t[-79.083163, 35.032662]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20149\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"149\",\n\t\t\t\t\"NAME\": \"Pottawatomie\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 841.022000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.238969, 39.566220],\n\t\t\t\t\t\t[-96.037537, 39.566159],\n\t\t\t\t\t\t[-96.035952, 39.566100],\n\t\t\t\t\t\t[-96.035573, 39.216520],\n\t\t\t\t\t\t[-96.039060, 39.126527],\n\t\t\t\t\t\t[-96.083557, 39.193504],\n\t\t\t\t\t\t[-96.233671, 39.212279],\n\t\t\t\t\t\t[-96.331405, 39.158884],\n\t\t\t\t\t\t[-96.388884, 39.172724],\n\t\t\t\t\t\t[-96.554012, 39.178532],\n\t\t\t\t\t\t[-96.518329, 39.203877],\n\t\t\t\t\t\t[-96.638605, 39.292827],\n\t\t\t\t\t\t[-96.726865, 39.404012],\n\t\t\t\t\t\t[-96.581764, 39.566333],\n\t\t\t\t\t\t[-96.238969, 39.566220]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US28033\",\n\t\t\t\t\"STATE\": \"28\",\n\t\t\t\t\"COUNTY\": \"033\",\n\t\t\t\t\"NAME\": \"DeSoto\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 476.145000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-89.795187, 34.994293],\n\t\t\t\t\t\t[-89.724324, 34.994763],\n\t\t\t\t\t\t[-89.723357, 34.773347],\n\t\t\t\t\t\t[-89.723635, 34.772121],\n\t\t\t\t\t\t[-89.912202, 34.772506],\n\t\t\t\t\t\t[-90.030051, 34.707950],\n\t\t\t\t\t\t[-90.128906, 34.760537],\n\t\t\t\t\t\t[-90.200199, 34.724418],\n\t\t\t\t\t\t[-90.202126, 34.860374],\n\t\t\t\t\t\t[-90.293918, 34.860563],\n\t\t\t\t\t\t[-90.250095, 34.907320],\n\t\t\t\t\t\t[-90.244476, 34.937596],\n\t\t\t\t\t\t[-90.253969, 34.954988],\n\t\t\t\t\t\t[-90.309297, 34.995694],\n\t\t\t\t\t\t[-89.893402, 34.994356],\n\t\t\t\t\t\t[-89.883365, 34.994261],\n\t\t\t\t\t\t[-89.848488, 34.994193],\n\t\t\t\t\t\t[-89.795187, 34.994293]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US42001\",\n\t\t\t\t\"STATE\": \"42\",\n\t\t\t\t\"COUNTY\": \"001\",\n\t\t\t\t\"NAME\": \"Adams\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 518.668000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.255209, 40.020760],\n\t\t\t\t\t\t[-77.137425, 40.069945],\n\t\t\t\t\t\t[-77.018648, 40.013947],\n\t\t\t\t\t\t[-76.954932, 39.856850],\n\t\t\t\t\t\t[-76.998377, 39.832115],\n\t\t\t\t\t\t[-76.999465, 39.720128],\n\t\t\t\t\t\t[-77.047104, 39.720000],\n\t\t\t\t\t\t[-77.058204, 39.720200],\n\t\t\t\t\t\t[-77.058904, 39.720100],\n\t\t\t\t\t\t[-77.216806, 39.719998],\n\t\t\t\t\t\t[-77.217024, 39.719998],\n\t\t\t\t\t\t[-77.239807, 39.719998],\n\t\t\t\t\t\t[-77.243307, 39.719998],\n\t\t\t\t\t\t[-77.459427, 39.720017],\n\t\t\t\t\t\t[-77.471085, 39.944077],\n\t\t\t\t\t\t[-77.403788, 39.994447],\n\t\t\t\t\t\t[-77.255209, 40.020760]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US37161\",\n\t\t\t\t\"STATE\": \"37\",\n\t\t\t\t\"COUNTY\": \"161\",\n\t\t\t\t\"NAME\": \"Rutherford\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 564.151000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.874433, 35.184113],\n\t\t\t\t\t\t[-81.969325, 35.187215],\n\t\t\t\t\t\t[-81.968788, 35.257764],\n\t\t\t\t\t\t[-82.115159, 35.387390],\n\t\t\t\t\t\t[-82.261456, 35.392984],\n\t\t\t\t\t\t[-82.270255, 35.400351],\n\t\t\t\t\t\t[-82.279615, 35.445973],\n\t\t\t\t\t\t[-82.266847, 35.465854],\n\t\t\t\t\t\t[-82.169018, 35.527841],\n\t\t\t\t\t\t[-82.002851, 35.551802],\n\t\t\t\t\t\t[-81.973556, 35.524565],\n\t\t\t\t\t\t[-81.824184, 35.574955],\n\t\t\t\t\t\t[-81.692329, 35.579789],\n\t\t\t\t\t\t[-81.702850, 35.357194],\n\t\t\t\t\t\t[-81.768073, 35.180132],\n\t\t\t\t\t\t[-81.857832, 35.183492],\n\t\t\t\t\t\t[-81.874433, 35.184113]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21051\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"051\",\n\t\t\t\t\"NAME\": \"Clay\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 469.247000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.507886, 37.235877],\n\t\t\t\t\t\t[-83.551303, 37.167510],\n\t\t\t\t\t\t[-83.509083, 36.938509],\n\t\t\t\t\t\t[-83.520687, 36.937550],\n\t\t\t\t\t\t[-83.530847, 36.943038],\n\t\t\t\t\t\t[-83.589521, 36.955786],\n\t\t\t\t\t\t[-83.871315, 37.054919],\n\t\t\t\t\t\t[-83.968990, 37.174794],\n\t\t\t\t\t\t[-83.943718, 37.250551],\n\t\t\t\t\t\t[-83.784975, 37.348717],\n\t\t\t\t\t\t[-83.653940, 37.358061],\n\t\t\t\t\t\t[-83.526907, 37.258529],\n\t\t\t\t\t\t[-83.511263, 37.255073],\n\t\t\t\t\t\t[-83.507886, 37.235877]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13245\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"245\",\n\t\t\t\t\"NAME\": \"Richmond\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 324.326000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.028238, 33.544934],\n\t\t\t\t\t\t[-82.014293, 33.530313],\n\t\t\t\t\t\t[-82.007638, 33.523335],\n\t\t\t\t\t\t[-82.007138, 33.522835],\n\t\t\t\t\t\t[-81.967037, 33.480636],\n\t\t\t\t\t\t[-81.957934, 33.468632],\n\t\t\t\t\t\t[-81.912572, 33.408811],\n\t\t\t\t\t\t[-81.902737, 33.331242],\n\t\t\t\t\t\t[-81.852136, 33.247544],\n\t\t\t\t\t\t[-81.851975, 33.247408],\n\t\t\t\t\t\t[-82.088162, 33.230245],\n\t\t\t\t\t\t[-82.174240, 33.296771],\n\t\t\t\t\t\t[-82.267580, 33.267397],\n\t\t\t\t\t\t[-82.278539, 33.269174],\n\t\t\t\t\t\t[-82.286507, 33.274135],\n\t\t\t\t\t\t[-82.296855, 33.277349],\n\t\t\t\t\t\t[-82.311539, 33.297146],\n\t\t\t\t\t\t[-82.353498, 33.312318],\n\t\t\t\t\t\t[-82.350299, 33.314801],\n\t\t\t\t\t\t[-82.294179, 33.354635],\n\t\t\t\t\t\t[-82.028238, 33.544934]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13251\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"251\",\n\t\t\t\t\"NAME\": \"Screven\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 645.101000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.405134, 32.744964],\n\t\t\t\t\t\t[-81.414761, 32.637440],\n\t\t\t\t\t\t[-81.418431, 32.634704],\n\t\t\t\t\t\t[-81.418660, 32.629392],\n\t\t\t\t\t\t[-81.411906, 32.618410],\n\t\t\t\t\t\t[-81.389338, 32.595436],\n\t\t\t\t\t\t[-81.389258, 32.595385],\n\t\t\t\t\t\t[-81.538558, 32.509059],\n\t\t\t\t\t\t[-81.548006, 32.489286],\n\t\t\t\t\t\t[-81.689643, 32.546290],\n\t\t\t\t\t\t[-81.841005, 32.649093],\n\t\t\t\t\t\t[-81.867938, 32.681150],\n\t\t\t\t\t\t[-81.767553, 32.909411],\n\t\t\t\t\t\t[-81.541831, 33.045654],\n\t\t\t\t\t\t[-81.511690, 33.024506],\n\t\t\t\t\t\t[-81.496637, 33.010224],\n\t\t\t\t\t\t[-81.491495, 32.998572],\n\t\t\t\t\t\t[-81.494736, 32.978998],\n\t\t\t\t\t\t[-81.499830, 32.963816],\n\t\t\t\t\t\t[-81.423772, 32.810514],\n\t\t\t\t\t\t[-81.404949, 32.747027],\n\t\t\t\t\t\t[-81.405134, 32.744964]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13261\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"261\",\n\t\t\t\t\"NAME\": \"Sumter\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 482.697000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.430215, 32.166257],\n\t\t\t\t\t\t[-84.183569, 32.158493],\n\t\t\t\t\t\t[-84.181657, 32.229703],\n\t\t\t\t\t\t[-84.027853, 32.171083],\n\t\t\t\t\t\t[-83.961278, 32.030595],\n\t\t\t\t\t\t[-83.922494, 31.909653],\n\t\t\t\t\t\t[-84.338143, 31.916190],\n\t\t\t\t\t\t[-84.338245, 31.873591],\n\t\t\t\t\t\t[-84.443807, 31.967456],\n\t\t\t\t\t\t[-84.431214, 32.134058],\n\t\t\t\t\t\t[-84.430215, 32.166257]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13263\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"263\",\n\t\t\t\t\"NAME\": \"Talbot\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 391.389000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.444353, 32.562083],\n\t\t\t\t\t\t[-84.637323, 32.534855],\n\t\t\t\t\t\t[-84.648977, 32.534956],\n\t\t\t\t\t\t[-84.658017, 32.528759],\n\t\t\t\t\t\t[-84.661721, 32.529148],\n\t\t\t\t\t\t[-84.678157, 32.518915],\n\t\t\t\t\t\t[-84.686265, 32.519624],\n\t\t\t\t\t\t[-84.694510, 32.518732],\n\t\t\t\t\t\t[-84.694603, 32.583945],\n\t\t\t\t\t\t[-84.700538, 32.844640],\n\t\t\t\t\t\t[-84.570669, 32.845179],\n\t\t\t\t\t\t[-84.506888, 32.881788],\n\t\t\t\t\t\t[-84.391017, 32.786956],\n\t\t\t\t\t\t[-84.286246, 32.747626],\n\t\t\t\t\t\t[-84.337940, 32.720647],\n\t\t\t\t\t\t[-84.408866, 32.561923],\n\t\t\t\t\t\t[-84.444353, 32.562083]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US13273\",\n\t\t\t\t\"STATE\": \"13\",\n\t\t\t\t\"COUNTY\": \"273\",\n\t\t\t\t\"NAME\": \"Terrell\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 335.439000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.297801, 31.621951],\n\t\t\t\t\t\t[-84.450398, 31.621868],\n\t\t\t\t\t\t[-84.450416, 31.621255],\n\t\t\t\t\t\t[-84.546854, 31.621199],\n\t\t\t\t\t\t[-84.535527, 31.681828],\n\t\t\t\t\t\t[-84.603086, 31.772001],\n\t\t\t\t\t\t[-84.599776, 31.920171],\n\t\t\t\t\t\t[-84.453310, 31.919224],\n\t\t\t\t\t\t[-84.443807, 31.967456],\n\t\t\t\t\t\t[-84.338245, 31.873591],\n\t\t\t\t\t\t[-84.286456, 31.791182],\n\t\t\t\t\t\t[-84.297801, 31.621951]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20193\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"193\",\n\t\t\t\t\"NAME\": \"Thomas\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1074.687000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.720213, 39.568034],\n\t\t\t\t\t\t[-100.721296, 39.133381],\n\t\t\t\t\t\t[-100.775177, 39.133265],\n\t\t\t\t\t\t[-100.775311, 39.133375],\n\t\t\t\t\t\t[-100.811858, 39.133360],\n\t\t\t\t\t\t[-101.391717, 39.135117],\n\t\t\t\t\t\t[-101.389068, 39.568369],\n\t\t\t\t\t\t[-100.740873, 39.568043],\n\t\t\t\t\t\t[-100.720213, 39.568034]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20199\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"199\",\n\t\t\t\t\"NAME\": \"Wallace\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 913.652000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-101.567094, 38.699669],\n\t\t\t\t\t\t[-102.045212, 38.697567],\n\t\t\t\t\t\t[-102.045375, 38.754339],\n\t\t\t\t\t\t[-102.045287, 38.755528],\n\t\t\t\t\t\t[-102.045371, 38.770064],\n\t\t\t\t\t\t[-102.045448, 38.783453],\n\t\t\t\t\t\t[-102.045334, 38.799463],\n\t\t\t\t\t\t[-102.045388, 38.813392],\n\t\t\t\t\t\t[-102.046571, 39.047038],\n\t\t\t\t\t\t[-102.047134, 39.129701],\n\t\t\t\t\t\t[-102.047189, 39.133147],\n\t\t\t\t\t\t[-101.478195, 39.134761],\n\t\t\t\t\t\t[-101.484383, 38.700166],\n\t\t\t\t\t\t[-101.567094, 38.699669]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20201\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"201\",\n\t\t\t\t\"NAME\": \"Washington\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 894.756000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-97.369199, 40.002060],\n\t\t\t\t\t\t[-97.369199, 40.002060],\n\t\t\t\t\t\t[-97.369103, 40.002060],\n\t\t\t\t\t\t[-97.350896, 40.001930],\n\t\t\t\t\t\t[-97.350272, 40.001976],\n\t\t\t\t\t\t[-97.245169, 40.001513],\n\t\t\t\t\t\t[-97.245080, 40.001467],\n\t\t\t\t\t\t[-97.202310, 40.001442],\n\t\t\t\t\t\t[-97.200190, 40.001549],\n\t\t\t\t\t\t[-97.181775, 40.001550],\n\t\t\t\t\t\t[-97.142448, 40.001495],\n\t\t\t\t\t\t[-97.137866, 40.001814],\n\t\t\t\t\t\t[-97.049663, 40.001323],\n\t\t\t\t\t\t[-97.030803, 40.001342],\n\t\t\t\t\t\t[-97.009165, 40.001463],\n\t\t\t\t\t\t[-96.916407, 40.001506],\n\t\t\t\t\t\t[-96.916093, 40.001506],\n\t\t\t\t\t\t[-96.880459, 40.001448],\n\t\t\t\t\t\t[-96.878253, 40.001466],\n\t\t\t\t\t\t[-96.875057, 40.001448],\n\t\t\t\t\t\t[-96.873812, 40.001450],\n\t\t\t\t\t\t[-96.805768, 40.001371],\n\t\t\t\t\t\t[-96.806544, 39.566423],\n\t\t\t\t\t\t[-96.958859, 39.566400],\n\t\t\t\t\t\t[-97.368574, 39.567018],\n\t\t\t\t\t\t[-97.368635, 39.575926],\n\t\t\t\t\t\t[-97.368374, 39.577145],\n\t\t\t\t\t\t[-97.368653, 39.583833],\n\t\t\t\t\t\t[-97.368670, 39.654043],\n\t\t\t\t\t\t[-97.369199, 40.002060]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21195\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"195\",\n\t\t\t\t\"NAME\": \"Pike\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 786.833000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.326404, 37.740815],\n\t\t\t\t\t\t[-82.325739, 37.735799],\n\t\t\t\t\t\t[-82.307235, 37.707669],\n\t\t\t\t\t\t[-82.297011, 37.687273],\n\t\t\t\t\t\t[-82.250280, 37.657776],\n\t\t\t\t\t\t[-82.219670, 37.643046],\n\t\t\t\t\t\t[-82.141814, 37.595052],\n\t\t\t\t\t\t[-82.125601, 37.579021],\n\t\t\t\t\t\t[-82.125892, 37.574031],\n\t\t\t\t\t\t[-82.116584, 37.559588],\n\t\t\t\t\t\t[-82.048521, 37.531078],\n\t\t\t\t\t\t[-82.008274, 37.533357],\n\t\t\t\t\t\t[-81.999844, 37.542579],\n\t\t\t\t\t\t[-81.998177, 37.543082],\n\t\t\t\t\t\t[-81.968297, 37.537798],\n\t\t\t\t\t\t[-82.291908, 37.311642],\n\t\t\t\t\t\t[-82.305874, 37.301100],\n\t\t\t\t\t\t[-82.310793, 37.297387],\n\t\t\t\t\t\t[-82.350948, 37.267077],\n\t\t\t\t\t\t[-82.510826, 37.218091],\n\t\t\t\t\t\t[-82.553549, 37.200867],\n\t\t\t\t\t\t[-82.565329, 37.196118],\n\t\t\t\t\t\t[-82.565375, 37.196092],\n\t\t\t\t\t\t[-82.732693, 37.271502],\n\t\t\t\t\t\t[-82.724557, 37.281035],\n\t\t\t\t\t\t[-82.718852, 37.280276],\n\t\t\t\t\t\t[-82.710805, 37.285323],\n\t\t\t\t\t\t[-82.672375, 37.306841],\n\t\t\t\t\t\t[-82.584711, 37.466574],\n\t\t\t\t\t\t[-82.623112, 37.503541],\n\t\t\t\t\t\t[-82.563561, 37.684844],\n\t\t\t\t\t\t[-82.456134, 37.668795],\n\t\t\t\t\t\t[-82.326404, 37.740815]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21211\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"211\",\n\t\t\t\t\"NAME\": \"Shelby\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 379.636000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.424054, 38.147438],\n\t\t\t\t\t\t[-85.404899, 38.263730],\n\t\t\t\t\t\t[-85.468206, 38.285309],\n\t\t\t\t\t\t[-85.324453, 38.310112],\n\t\t\t\t\t\t[-85.283082, 38.358054],\n\t\t\t\t\t\t[-84.997667, 38.335586],\n\t\t\t\t\t\t[-85.023711, 38.129052],\n\t\t\t\t\t\t[-85.101646, 38.037270],\n\t\t\t\t\t\t[-85.232406, 38.089431],\n\t\t\t\t\t\t[-85.424054, 38.147438]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21213\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"213\",\n\t\t\t\t\"NAME\": \"Simpson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 234.204000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-86.468497, 36.651841],\n\t\t\t\t\t\t[-86.472190, 36.651763],\n\t\t\t\t\t\t[-86.473413, 36.651676],\n\t\t\t\t\t\t[-86.473497, 36.651671],\n\t\t\t\t\t\t[-86.564143, 36.633472],\n\t\t\t\t\t\t[-86.564252, 36.633522],\n\t\t\t\t\t\t[-86.605042, 36.652125],\n\t\t\t\t\t\t[-86.606394, 36.652107],\n\t\t\t\t\t\t[-86.758920, 36.649018],\n\t\t\t\t\t\t[-86.763295, 36.648907],\n\t\t\t\t\t\t[-86.690719, 36.844300],\n\t\t\t\t\t\t[-86.611586, 36.883057],\n\t\t\t\t\t\t[-86.583289, 36.830282],\n\t\t\t\t\t\t[-86.400518, 36.807226],\n\t\t\t\t\t\t[-86.405769, 36.776187],\n\t\t\t\t\t\t[-86.411387, 36.650550],\n\t\t\t\t\t\t[-86.468497, 36.651841]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21223\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"223\",\n\t\t\t\t\"NAME\": \"Trimble\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 151.648000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-85.168270, 38.585448],\n\t\t\t\t\t\t[-85.314006, 38.492592],\n\t\t\t\t\t\t[-85.432928, 38.524072],\n\t\t\t\t\t\t[-85.423077, 38.531581],\n\t\t\t\t\t\t[-85.417322, 38.540763],\n\t\t\t\t\t\t[-85.415600, 38.546341],\n\t\t\t\t\t\t[-85.415821, 38.563558],\n\t\t\t\t\t\t[-85.427467, 38.586735],\n\t\t\t\t\t\t[-85.439351, 38.610388],\n\t\t\t\t\t\t[-85.456978, 38.689135],\n\t\t\t\t\t\t[-85.452114, 38.709348],\n\t\t\t\t\t\t[-85.434065, 38.729455],\n\t\t\t\t\t\t[-85.422021, 38.734834],\n\t\t\t\t\t\t[-85.410925, 38.737080],\n\t\t\t\t\t\t[-85.333285, 38.740480],\n\t\t\t\t\t\t[-85.168270, 38.585448]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21225\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"225\",\n\t\t\t\t\"NAME\": \"Union\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 342.849000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.133393, 37.574235],\n\t\t\t\t\t\t[-88.133416, 37.574277],\n\t\t\t\t\t\t[-88.139973, 37.586451],\n\t\t\t\t\t\t[-88.156827, 37.632801],\n\t\t\t\t\t\t[-88.160187, 37.657592],\n\t\t\t\t\t\t[-88.158207, 37.664542],\n\t\t\t\t\t\t[-88.151646, 37.675098],\n\t\t\t\t\t\t[-88.122412, 37.709685],\n\t\t\t\t\t\t[-88.072538, 37.733286],\n\t\t\t\t\t\t[-88.059588, 37.742608],\n\t\t\t\t\t\t[-88.050969, 37.752599],\n\t\t\t\t\t\t[-88.045008, 37.762436],\n\t\t\t\t\t\t[-88.039000, 37.775454],\n\t\t\t\t\t\t[-88.028030, 37.799224],\n\t\t\t\t\t\t[-88.017314, 37.801911],\n\t\t\t\t\t\t[-88.004706, 37.800145],\n\t\t\t\t\t\t[-87.976389, 37.788004],\n\t\t\t\t\t\t[-87.970869, 37.783456],\n\t\t\t\t\t\t[-87.943756, 37.776843],\n\t\t\t\t\t\t[-87.906810, 37.807624],\n\t\t\t\t\t\t[-87.903804, 37.817762],\n\t\t\t\t\t\t[-87.907773, 37.837611],\n\t\t\t\t\t\t[-87.910276, 37.843416],\n\t\t\t\t\t\t[-87.914892, 37.849618],\n\t\t\t\t\t\t[-87.927303, 37.858709],\n\t\t\t\t\t\t[-87.936228, 37.867937],\n\t\t\t\t\t\t[-87.940005, 37.875044],\n\t\t\t\t\t\t[-87.940839, 37.883338],\n\t\t\t\t\t\t[-87.940069, 37.887670],\n\t\t\t\t\t\t[-87.936784, 37.892587],\n\t\t\t\t\t\t[-87.927424, 37.902038],\n\t\t\t\t\t\t[-87.815093, 37.762423],\n\t\t\t\t\t\t[-87.755650, 37.727763],\n\t\t\t\t\t\t[-87.734545, 37.638376],\n\t\t\t\t\t\t[-87.918474, 37.492937],\n\t\t\t\t\t\t[-87.932952, 37.480052],\n\t\t\t\t\t\t[-88.015572, 37.547210],\n\t\t\t\t\t\t[-88.061311, 37.505332],\n\t\t\t\t\t\t[-88.063311, 37.515755],\n\t\t\t\t\t\t[-88.072242, 37.528826],\n\t\t\t\t\t\t[-88.121517, 37.568166],\n\t\t\t\t\t\t[-88.133235, 37.574154],\n\t\t\t\t\t\t[-88.133306, 37.574191],\n\t\t\t\t\t\t[-88.133393, 37.574235]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20037\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"037\",\n\t\t\t\t\"NAME\": \"Crawford\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 589.756000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-94.617575, 37.653577],\n\t\t\t\t\t\t[-94.617477, 37.637170],\n\t\t\t\t\t\t[-94.617300, 37.610495],\n\t\t\t\t\t\t[-94.617428, 37.609522],\n\t\t\t\t\t\t[-94.617283, 37.571896],\n\t\t\t\t\t\t[-94.617315, 37.571499],\n\t\t\t\t\t\t[-94.617081, 37.567013],\n\t\t\t\t\t\t[-94.617160, 37.557308],\n\t\t\t\t\t\t[-94.617186, 37.553485],\n\t\t\t\t\t\t[-94.616908, 37.527804],\n\t\t\t\t\t\t[-94.616789, 37.521510],\n\t\t\t\t\t\t[-94.617023, 37.483765],\n\t\t\t\t\t\t[-94.617183, 37.469665],\n\t\t\t\t\t\t[-94.617180, 37.465203],\n\t\t\t\t\t\t[-94.617222, 37.460476],\n\t\t\t\t\t\t[-94.617205, 37.460373],\n\t\t\t\t\t\t[-94.617201, 37.454788],\n\t\t\t\t\t\t[-94.617132, 37.439818],\n\t\t\t\t\t\t[-94.617265, 37.425536],\n\t\t\t\t\t\t[-94.617511, 37.410909],\n\t\t\t\t\t\t[-94.617557, 37.396375],\n\t\t\t\t\t\t[-94.617625, 37.367576],\n\t\t\t\t\t\t[-94.617626, 37.367445],\n\t\t\t\t\t\t[-94.617537, 37.364355],\n\t\t\t\t\t\t[-94.617538, 37.364167],\n\t\t\t\t\t\t[-94.617636, 37.338417],\n\t\t\t\t\t\t[-94.617636, 37.338415],\n\t\t\t\t\t\t[-94.619202, 37.338360],\n\t\t\t\t\t\t[-95.075166, 37.339937],\n\t\t\t\t\t\t[-95.074972, 37.383823],\n\t\t\t\t\t\t[-95.088189, 37.383837],\n\t\t\t\t\t\t[-95.088012, 37.674519],\n\t\t\t\t\t\t[-94.617734, 37.673105],\n\t\t\t\t\t\t[-94.617576, 37.653671],\n\t\t\t\t\t\t[-94.617575, 37.653577]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20043\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"043\",\n\t\t\t\t\"NAME\": \"Doniphan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 393.405000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-95.339896, 39.999999],\n\t\t\t\t\t\t[-95.308290, 39.999998],\n\t\t\t\t\t\t[-95.307780, 39.990618],\n\t\t\t\t\t\t[-95.301549, 39.983603],\n\t\t\t\t\t\t[-95.181222, 39.899996],\n\t\t\t\t\t\t[-95.132695, 39.875925],\n\t\t\t\t\t\t[-95.107745, 39.868579],\n\t\t\t\t\t\t[-95.085003, 39.861883],\n\t\t\t\t\t\t[-95.042142, 39.864805],\n\t\t\t\t\t\t[-95.035047, 39.866807],\n\t\t\t\t\t\t[-95.027931, 39.871522],\n\t\t\t\t\t\t[-95.025250, 39.877688],\n\t\t\t\t\t\t[-95.025240, 39.889700],\n\t\t\t\t\t\t[-95.016320, 39.898766],\n\t\t\t\t\t\t[-95.008440, 39.900596],\n\t\t\t\t\t\t[-94.993348, 39.900747],\n\t\t\t\t\t\t[-94.954155, 39.901138],\n\t\t\t\t\t\t[-94.935963, 39.894355],\n\t\t\t\t\t\t[-94.927897, 39.886112],\n\t\t\t\t\t\t[-94.908267, 39.812172],\n\t\t\t\t\t\t[-94.895268, 39.763210],\n\t\t\t\t\t\t[-94.916932, 39.728186],\n\t\t\t\t\t\t[-94.937924, 39.725471],\n\t\t\t\t\t\t[-95.011103, 39.677572],\n\t\t\t\t\t\t[-95.015310, 39.674262],\n\t\t\t\t\t\t[-95.069592, 39.615106],\n\t\t\t\t\t\t[-95.115189, 39.652549],\n\t\t\t\t\t\t[-95.339740, 39.652980],\n\t\t\t\t\t\t[-95.339896, 39.999999]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20061\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"061\",\n\t\t\t\t\"NAME\": \"Geary\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 384.618000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-96.755786, 39.088006],\n\t\t\t\t\t\t[-96.501181, 39.072782],\n\t\t\t\t\t\t[-96.501174, 39.043666],\n\t\t\t\t\t\t[-96.501556, 38.869704],\n\t\t\t\t\t\t[-96.890245, 38.870067],\n\t\t\t\t\t\t[-96.926209, 38.978941],\n\t\t\t\t\t\t[-96.963470, 38.964901],\n\t\t\t\t\t\t[-96.963177, 39.132300],\n\t\t\t\t\t\t[-96.961380, 39.132325],\n\t\t\t\t\t\t[-96.961387, 39.220073],\n\t\t\t\t\t\t[-96.849879, 39.219012],\n\t\t\t\t\t\t[-96.850991, 39.101307],\n\t\t\t\t\t\t[-96.851111, 39.088386],\n\t\t\t\t\t\t[-96.755786, 39.088006]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20067\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"067\",\n\t\t\t\t\"NAME\": \"Grant\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 574.800000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-101.525810, 37.388392],\n\t\t\t\t\t\t[-101.527063, 37.736314],\n\t\t\t\t\t\t[-101.089667, 37.736337],\n\t\t\t\t\t\t[-101.089653, 37.387721],\n\t\t\t\t\t\t[-101.525810, 37.388392]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20071\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"071\",\n\t\t\t\t\"NAME\": \"Greeley\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 778.450000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-101.567094, 38.699669],\n\t\t\t\t\t\t[-101.567482, 38.263145],\n\t\t\t\t\t\t[-102.044510, 38.262412],\n\t\t\t\t\t\t[-102.044567, 38.268749],\n\t\t\t\t\t\t[-102.044568, 38.268819],\n\t\t\t\t\t\t[-102.044613, 38.312324],\n\t\t\t\t\t\t[-102.044944, 38.384419],\n\t\t\t\t\t\t[-102.045263, 38.505395],\n\t\t\t\t\t\t[-102.045262, 38.505532],\n\t\t\t\t\t\t[-102.045112, 38.523784],\n\t\t\t\t\t\t[-102.045223, 38.543797],\n\t\t\t\t\t\t[-102.045189, 38.558732],\n\t\t\t\t\t\t[-102.045211, 38.581609],\n\t\t\t\t\t\t[-102.045288, 38.615168],\n\t\t\t\t\t\t[-102.045288, 38.615249],\n\t\t\t\t\t\t[-102.045074, 38.669617],\n\t\t\t\t\t\t[-102.045102, 38.674946],\n\t\t\t\t\t\t[-102.045160, 38.675221],\n\t\t\t\t\t\t[-102.045127, 38.686725],\n\t\t\t\t\t\t[-102.045156, 38.688555],\n\t\t\t\t\t\t[-102.045212, 38.697567],\n\t\t\t\t\t\t[-101.567094, 38.699669]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20083\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"083\",\n\t\t\t\t\"NAME\": \"Hodgeman\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 859.992000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-100.227137, 38.262237],\n\t\t\t\t\t\t[-99.584207, 38.262179],\n\t\t\t\t\t\t[-99.570543, 38.261957],\n\t\t\t\t\t\t[-99.569533, 38.087372],\n\t\t\t\t\t\t[-99.569879, 37.913016],\n\t\t\t\t\t\t[-100.227090, 37.914018],\n\t\t\t\t\t\t[-100.226610, 38.001015],\n\t\t\t\t\t\t[-100.227137, 38.262237]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US20089\",\n\t\t\t\t\"STATE\": \"20\",\n\t\t\t\t\"COUNTY\": \"089\",\n\t\t\t\t\"NAME\": \"Jewell\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 909.781000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-98.504455, 40.002329],\n\t\t\t\t\t\t[-98.490533, 40.002323],\n\t\t\t\t\t\t[-98.274017, 40.002516],\n\t\t\t\t\t\t[-98.274015, 40.002516],\n\t\t\t\t\t\t[-98.268218, 40.002490],\n\t\t\t\t\t\t[-98.250008, 40.002307],\n\t\t\t\t\t\t[-98.193483, 40.002614],\n\t\t\t\t\t\t[-98.179315, 40.002483],\n\t\t\t\t\t\t[-98.172269, 40.002438],\n\t\t\t\t\t\t[-98.142031, 40.002452],\n\t\t\t\t\t\t[-98.099659, 40.002227],\n\t\t\t\t\t\t[-98.076034, 40.002301],\n\t\t\t\t\t\t[-98.068701, 40.002355],\n\t\t\t\t\t\t[-98.050057, 40.002278],\n\t\t\t\t\t\t[-98.047469, 40.002186],\n\t\t\t\t\t\t[-98.014412, 40.002223],\n\t\t\t\t\t\t[-98.010157, 40.002153],\n\t\t\t\t\t\t[-97.972186, 40.002114],\n\t\t\t\t\t\t[-97.931826, 40.002050],\n\t\t\t\t\t\t[-97.931482, 39.653767],\n\t\t\t\t\t\t[-97.931844, 39.566921],\n\t\t\t\t\t\t[-98.487384, 39.567492],\n\t\t\t\t\t\t[-98.503592, 39.567515],\n\t\t\t\t\t\t[-98.505266, 39.567603],\n\t\t\t\t\t\t[-98.505152, 39.569754],\n\t\t\t\t\t\t[-98.504455, 40.002329]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22019\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"019\",\n\t\t\t\t\"NAME\": \"Calcasieu\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 1063.659000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-93.722481, 30.050898],\n\t\t\t\t\t\t[-93.721589, 30.051939],\n\t\t\t\t\t\t[-93.712101, 30.067346],\n\t\t\t\t\t\t[-93.695684, 30.135729],\n\t\t\t\t\t\t[-93.695252, 30.147600],\n\t\t\t\t\t\t[-93.712008, 30.194304],\n\t\t\t\t\t\t[-93.716223, 30.244318],\n\t\t\t\t\t\t[-93.720575, 30.295961],\n\t\t\t\t\t\t[-93.723586, 30.294951],\n\t\t\t\t\t\t[-93.735896, 30.299440],\n\t\t\t\t\t\t[-93.765822, 30.333318],\n\t\t\t\t\t\t[-93.757654, 30.390423],\n\t\t\t\t\t\t[-93.751437, 30.396288],\n\t\t\t\t\t\t[-93.741701, 30.403007],\n\t\t\t\t\t\t[-93.486116, 30.402500],\n\t\t\t\t\t\t[-93.486384, 30.490523],\n\t\t\t\t\t\t[-93.384673, 30.490109],\n\t\t\t\t\t\t[-93.385150, 30.402630],\n\t\t\t\t\t\t[-93.131109, 30.403057],\n\t\t\t\t\t\t[-93.030955, 30.379390],\n\t\t\t\t\t\t[-92.996300, 30.156955],\n\t\t\t\t\t\t[-92.893324, 30.156314],\n\t\t\t\t\t\t[-92.887605, 30.082475],\n\t\t\t\t\t\t[-92.996371, 30.038479],\n\t\t\t\t\t\t[-93.128475, 30.052587],\n\t\t\t\t\t\t[-93.722481, 30.050898]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22027\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"027\",\n\t\t\t\t\"NAME\": \"Claiborne\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 754.878000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.880805, 32.585277],\n\t\t\t\t\t\t[-93.178767, 32.584916],\n\t\t\t\t\t\t[-93.186571, 32.716755],\n\t\t\t\t\t\t[-93.237381, 32.716250],\n\t\t\t\t\t\t[-93.238607, 33.017992],\n\t\t\t\t\t\t[-93.197402, 33.017951],\n\t\t\t\t\t\t[-93.154351, 33.017856],\n\t\t\t\t\t\t[-93.101443, 33.017740],\n\t\t\t\t\t\t[-93.100981, 33.017786],\n\t\t\t\t\t\t[-93.081428, 33.017928],\n\t\t\t\t\t\t[-93.073167, 33.017898],\n\t\t\t\t\t\t[-93.070686, 33.017792],\n\t\t\t\t\t\t[-92.988708, 33.017298],\n\t\t\t\t\t\t[-92.971137, 33.017192],\n\t\t\t\t\t\t[-92.946553, 33.016807],\n\t\t\t\t\t\t[-92.867510, 33.016062],\n\t\t\t\t\t\t[-92.854167, 33.016132],\n\t\t\t\t\t\t[-92.844286, 33.016070],\n\t\t\t\t\t\t[-92.844073, 33.016034],\n\t\t\t\t\t\t[-92.830798, 33.015661],\n\t\t\t\t\t\t[-92.733197, 33.014347],\n\t\t\t\t\t\t[-92.724994, 33.014351],\n\t\t\t\t\t\t[-92.724743, 33.014347],\n\t\t\t\t\t\t[-92.725439, 32.759540],\n\t\t\t\t\t\t[-92.828535, 32.758814],\n\t\t\t\t\t\t[-92.880805, 32.585277]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22029\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"029\",\n\t\t\t\t\"NAME\": \"Concordia\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 696.920000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.379935, 31.733013],\n\t\t\t\t\t\t[-91.397915, 31.709364],\n\t\t\t\t\t\t[-91.400115, 31.688164],\n\t\t\t\t\t\t[-91.398059, 31.655922],\n\t\t\t\t\t\t[-91.404668, 31.637898],\n\t\t\t\t\t\t[-91.422090, 31.631290],\n\t\t\t\t\t\t[-91.441315, 31.631290],\n\t\t\t\t\t\t[-91.452730, 31.631290],\n\t\t\t\t\t\t[-91.464746, 31.628886],\n\t\t\t\t\t\t[-91.474959, 31.621677],\n\t\t\t\t\t\t[-91.477963, 31.610863],\n\t\t\t\t\t\t[-91.477963, 31.604855],\n\t\t\t\t\t\t[-91.477963, 31.598247],\n\t\t\t\t\t\t[-91.477362, 31.592239],\n\t\t\t\t\t\t[-91.470754, 31.585630],\n\t\t\t\t\t\t[-91.458679, 31.583226],\n\t\t\t\t\t\t[-91.448620, 31.583032],\n\t\t\t\t\t\t[-91.437711, 31.580824],\n\t\t\t\t\t\t[-91.425094, 31.577820],\n\t\t\t\t\t\t[-91.415482, 31.567006],\n\t\t\t\t\t\t[-91.416683, 31.561599],\n\t\t\t\t\t\t[-91.422691, 31.554390],\n\t\t\t\t\t\t[-91.437616, 31.546166],\n\t\t\t\t\t\t[-91.450017, 31.539666],\n\t\t\t\t\t\t[-91.479718, 31.530366],\n\t\t\t\t\t\t[-91.511217, 31.532612],\n\t\t\t\t\t\t[-91.515810, 31.530894],\n\t\t\t\t\t\t[-91.522920, 31.519841],\n\t\t\t\t\t\t[-91.515130, 31.449206],\n\t\t\t\t\t\t[-91.510356, 31.438928],\n\t\t\t\t\t\t[-91.505301, 31.432945],\n\t\t\t\t\t\t[-91.500406, 31.419008],\n\t\t\t\t\t\t[-91.505093, 31.400933],\n\t\t\t\t\t\t[-91.513795, 31.386875],\n\t\t\t\t\t\t[-91.525386, 31.378904],\n\t\t\t\t\t\t[-91.541242, 31.356750],\n\t\t\t\t\t\t[-91.539904, 31.337336],\n\t\t\t\t\t\t[-91.531201, 31.326625],\n\t\t\t\t\t\t[-91.519820, 31.311228],\n\t\t\t\t\t\t[-91.508858, 31.291644],\n\t\t\t\t\t\t[-91.515614, 31.278210],\n\t\t\t\t\t\t[-91.522397, 31.273423],\n\t\t\t\t\t\t[-91.547588, 31.264444],\n\t\t\t\t\t\t[-91.574493, 31.261289],\n\t\t\t\t\t\t[-91.598490, 31.205485],\n\t\t\t\t\t\t[-91.599965, 31.192318],\n\t\t\t\t\t\t[-91.604197, 31.154545],\n\t\t\t\t\t\t[-91.577373, 31.078179],\n\t\t\t\t\t\t[-91.564150, 31.066830],\n\t\t\t\t\t\t[-91.561283, 31.060906],\n\t\t\t\t\t\t[-91.559907, 31.054119],\n\t\t\t\t\t\t[-91.562468, 31.043213],\n\t\t\t\t\t\t[-91.571695, 31.029782],\n\t\t\t\t\t\t[-91.584670, 31.020185],\n\t\t\t\t\t\t[-91.636942, 30.999416],\n\t\t\t\t\t\t[-91.640613, 30.996125],\n\t\t\t\t\t\t[-91.646409, 30.986146],\n\t\t\t\t\t\t[-91.662506, 30.970362],\n\t\t\t\t\t\t[-91.750119, 31.018814],\n\t\t\t\t\t\t[-91.677302, 31.188047],\n\t\t\t\t\t\t[-91.834280, 31.266344],\n\t\t\t\t\t\t[-91.862168, 31.302314],\n\t\t\t\t\t\t[-91.845019, 31.375916],\n\t\t\t\t\t\t[-91.776779, 31.385215],\n\t\t\t\t\t\t[-91.855889, 31.423831],\n\t\t\t\t\t\t[-91.857083, 31.494527],\n\t\t\t\t\t\t[-91.807098, 31.438794],\n\t\t\t\t\t\t[-91.738331, 31.431572],\n\t\t\t\t\t\t[-91.824426, 31.599671],\n\t\t\t\t\t\t[-91.775836, 31.648626],\n\t\t\t\t\t\t[-91.705948, 31.642863],\n\t\t\t\t\t\t[-91.694469, 31.735286],\n\t\t\t\t\t\t[-91.601622, 31.761864],\n\t\t\t\t\t\t[-91.544791, 31.751731],\n\t\t\t\t\t\t[-91.379935, 31.733013]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22037\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"037\",\n\t\t\t\t\"NAME\": \"East Feliciana\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 453.410000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-90.826027, 30.999360],\n\t\t\t\t\t\t[-90.825829, 30.999360],\n\t\t\t\t\t\t[-90.863041, 30.941981],\n\t\t\t\t\t\t[-90.849041, 30.719311],\n\t\t\t\t\t\t[-91.254419, 30.705294],\n\t\t\t\t\t\t[-91.297658, 30.649548],\n\t\t\t\t\t\t[-91.298918, 30.650462],\n\t\t\t\t\t\t[-91.301179, 30.651572],\n\t\t\t\t\t\t[-91.303767, 30.652029],\n\t\t\t\t\t\t[-91.309395, 30.651996],\n\t\t\t\t\t\t[-91.310061, 30.653961],\n\t\t\t\t\t\t[-91.320706, 30.699417],\n\t\t\t\t\t\t[-91.236164, 30.795093],\n\t\t\t\t\t\t[-91.176140, 30.999144],\n\t\t\t\t\t\t[-91.108291, 30.998880],\n\t\t\t\t\t\t[-91.108114, 30.998857],\n\t\t\t\t\t\t[-91.080814, 30.998909],\n\t\t\t\t\t\t[-91.068270, 30.998920],\n\t\t\t\t\t\t[-91.060217, 30.998935],\n\t\t\t\t\t\t[-90.826027, 30.999360]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US53009\",\n\t\t\t\t\"STATE\": \"53\",\n\t\t\t\t\"COUNTY\": \"009\",\n\t\t\t\t\"NAME\": \"Clallam\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1738.329000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-123.131422, 48.152736],\n\t\t\t\t\t\t[-123.124816, 48.153472],\n\t\t\t\t\t\t[-123.116479, 48.150208],\n\t\t\t\t\t\t[-123.085154, 48.127137],\n\t\t\t\t\t\t[-123.066210, 48.120469],\n\t\t\t\t\t\t[-123.050446, 48.102825],\n\t\t\t\t\t\t[-123.038727, 48.081138],\n\t\t\t\t\t\t[-123.016651, 48.085380],\n\t\t\t\t\t\t[-123.004128, 48.090516],\n\t\t\t\t\t\t[-122.979413, 48.095940],\n\t\t\t\t\t\t[-122.946119, 48.098552],\n\t\t\t\t\t\t[-122.929095, 48.096244],\n\t\t\t\t\t\t[-122.917942, 48.091535],\n\t\t\t\t\t\t[-122.920911, 48.088199],\n\t\t\t\t\t\t[-122.926644, 48.074100],\n\t\t\t\t\t\t[-122.927975, 48.066650],\n\t\t\t\t\t\t[-122.927146, 48.065133],\n\t\t\t\t\t\t[-122.949055, 48.065151],\n\t\t\t\t\t\t[-122.949167, 47.866829],\n\t\t\t\t\t\t[-123.505917, 47.866897],\n\t\t\t\t\t\t[-123.505917, 47.881080],\n\t\t\t\t\t\t[-124.610763, 47.880607],\n\t\t\t\t\t\t[-124.625512, 47.887963],\n\t\t\t\t\t\t[-124.630153, 47.892467],\n\t\t\t\t\t\t[-124.629706, 47.896968],\n\t\t\t\t\t\t[-124.645442, 47.935338],\n\t\t\t\t\t\t[-124.651966, 47.943177],\n\t\t\t\t\t\t[-124.662334, 47.951451],\n\t\t\t\t\t\t[-124.672427, 47.964414],\n\t\t\t\t\t\t[-124.670830, 47.982366],\n\t\t\t\t\t\t[-124.679024, 48.015697],\n\t\t\t\t\t\t[-124.682157, 48.035987],\n\t\t\t\t\t\t[-124.685393, 48.049238],\n\t\t\t\t\t\t[-124.688359, 48.054927],\n\t\t\t\t\t\t[-124.693676, 48.058697],\n\t\t\t\t\t\t[-124.696542, 48.069274],\n\t\t\t\t\t\t[-124.695114, 48.087096],\n\t\t\t\t\t\t[-124.688602, 48.092466],\n\t\t\t\t\t\t[-124.687101, 48.098657],\n\t\t\t\t\t\t[-124.695088, 48.114878],\n\t\t\t\t\t\t[-124.721725, 48.153185],\n\t\t\t\t\t\t[-124.731703, 48.160402],\n\t\t\t\t\t\t[-124.733174, 48.163393],\n\t\t\t\t\t\t[-124.731746, 48.169997],\n\t\t\t\t\t\t[-124.704153, 48.184422],\n\t\t\t\t\t\t[-124.696111, 48.198599],\n\t\t\t\t\t\t[-124.690900, 48.212617],\n\t\t\t\t\t\t[-124.690389, 48.219745],\n\t\t\t\t\t\t[-124.705031, 48.238774],\n\t\t\t\t\t\t[-124.705920, 48.239894],\n\t\t\t\t\t\t[-124.699663, 48.245812],\n\t\t\t\t\t\t[-124.684677, 48.255228],\n\t\t\t\t\t\t[-124.680877, 48.265350],\n\t\t\t\t\t\t[-124.676319, 48.295143],\n\t\t\t\t\t\t[-124.669265, 48.296353],\n\t\t\t\t\t\t[-124.665908, 48.299324],\n\t\t\t\t\t\t[-124.662068, 48.310450],\n\t\t\t\t\t\t[-124.658940, 48.331057],\n\t\t\t\t\t\t[-124.670072, 48.341341],\n\t\t\t\t\t\t[-124.696703, 48.349748],\n\t\t\t\t\t\t[-124.713817, 48.366309],\n\t\t\t\t\t\t[-124.727022, 48.371101],\n\t\t\t\t\t\t[-124.730863, 48.376200],\n\t\t\t\t\t\t[-124.731828, 48.381157],\n\t\t\t\t\t\t[-124.725839, 48.386012],\n\t\t\t\t\t\t[-124.716947, 48.389776],\n\t\t\t\t\t\t[-124.694511, 48.389004],\n\t\t\t\t\t\t[-124.653243, 48.390691],\n\t\t\t\t\t\t[-124.639389, 48.385524],\n\t\t\t\t\t\t[-124.631108, 48.376522],\n\t\t\t\t\t\t[-124.611782, 48.378182],\n\t\t\t\t\t\t[-124.599278, 48.381035],\n\t\t\t\t\t\t[-124.597331, 48.381882],\n\t\t\t\t\t\t[-124.590733, 48.373604],\n\t\t\t\t\t\t[-124.572864, 48.366228],\n\t\t\t\t\t\t[-124.564841, 48.367921],\n\t\t\t\t\t\t[-124.546259, 48.353594],\n\t\t\t\t\t\t[-124.538821, 48.349893],\n\t\t\t\t\t\t[-124.525453, 48.349022],\n\t\t\t\t\t\t[-124.510582, 48.343236],\n\t\t\t\t\t\t[-124.414007, 48.300887],\n\t\t\t\t\t\t[-124.395593, 48.288772],\n\t\t\t\t\t\t[-124.380874, 48.284699],\n\t\t\t\t\t\t[-124.361351, 48.287582],\n\t\t\t\t\t\t[-124.342412, 48.277695],\n\t\t\t\t\t\t[-124.299146, 48.268239],\n\t\t\t\t\t\t[-124.295589, 48.262983],\n\t\t\t\t\t\t[-124.296924, 48.261796],\n\t\t\t\t\t\t[-124.297643, 48.260676],\n\t\t\t\t\t\t[-124.295693, 48.259282],\n\t\t\t\t\t\t[-124.272017, 48.254410],\n\t\t\t\t\t\t[-124.265824, 48.254842],\n\t\t\t\t\t\t[-124.255109, 48.258972],\n\t\t\t\t\t\t[-124.252267, 48.261004],\n\t\t\t\t\t\t[-124.250882, 48.264773],\n\t\t\t\t\t\t[-124.238582, 48.262471],\n\t\t\t\t\t\t[-124.217873, 48.253294],\n\t\t\t\t\t\t[-124.192692, 48.246316],\n\t\t\t\t\t\t[-124.141290, 48.227413],\n\t\t\t\t\t\t[-124.110974, 48.220557],\n\t\t\t\t\t\t[-124.101773, 48.216883],\n\t\t\t\t\t\t[-124.107215, 48.200082],\n\t\t\t\t\t\t[-124.090717, 48.196458],\n\t\t\t\t\t\t[-124.072124, 48.189903],\n\t\t\t\t\t\t[-124.050734, 48.177747],\n\t\t\t\t\t\t[-123.981032, 48.164761],\n\t\t\t\t\t\t[-123.955347, 48.165455],\n\t\t\t\t\t\t[-123.934921, 48.160840],\n\t\t\t\t\t\t[-123.915589, 48.159352],\n\t\t\t\t\t\t[-123.880068, 48.160621],\n\t\t\t\t\t\t[-123.866677, 48.154796],\n\t\t\t\t\t\t[-123.858821, 48.154273],\n\t\t\t\t\t\t[-123.831571, 48.157937],\n\t\t\t\t\t\t[-123.778122, 48.155466],\n\t\t\t\t\t\t[-123.756395, 48.161057],\n\t\t\t\t\t\t[-123.728736, 48.162800],\n\t\t\t\t\t\t[-123.728290, 48.160858],\n\t\t\t\t\t\t[-123.725352, 48.159191],\n\t\t\t\t\t\t[-123.718350, 48.158713],\n\t\t\t\t\t\t[-123.706226, 48.163400],\n\t\t\t\t\t\t[-123.706432, 48.165822],\n\t\t\t\t\t\t[-123.702743, 48.166783],\n\t\t\t\t\t\t[-123.672445, 48.162715],\n\t\t\t\t\t\t[-123.651408, 48.156952],\n\t\t\t\t\t\t[-123.636967, 48.150319],\n\t\t\t\t\t\t[-123.641108, 48.146127],\n\t\t\t\t\t\t[-123.628819, 48.139279],\n\t\t\t\t\t\t[-123.590839, 48.134949],\n\t\t\t\t\t\t[-123.574214, 48.140756],\n\t\t\t\t\t\t[-123.560591, 48.150697],\n\t\t\t\t\t\t[-123.551131, 48.151382],\n\t\t\t\t\t\t[-123.534879, 48.145780],\n\t\t\t\t\t\t[-123.522320, 48.135539],\n\t\t\t\t\t\t[-123.507235, 48.131807],\n\t\t\t\t\t\t[-123.473379, 48.134079],\n\t\t\t\t\t\t[-123.455458, 48.140047],\n\t\t\t\t\t\t[-123.440128, 48.142014],\n\t\t\t\t\t\t[-123.439127, 48.141278],\n\t\t\t\t\t\t[-123.441972, 48.124259],\n\t\t\t\t\t\t[-123.424668, 48.118065],\n\t\t\t\t\t\t[-123.395048, 48.114243],\n\t\t\t\t\t\t[-123.360923, 48.115864],\n\t\t\t\t\t\t[-123.332699, 48.112970],\n\t\t\t\t\t\t[-123.314578, 48.113725],\n\t\t\t\t\t\t[-123.288265, 48.121036],\n\t\t\t\t\t\t[-123.280178, 48.117309],\n\t\t\t\t\t\t[-123.268917, 48.116094],\n\t\t\t\t\t\t[-123.248615, 48.115745],\n\t\t\t\t\t\t[-123.239129, 48.118217],\n\t\t\t\t\t\t[-123.217190, 48.127203],\n\t\t\t\t\t\t[-123.191521, 48.143821],\n\t\t\t\t\t\t[-123.164400, 48.165894],\n\t\t\t\t\t\t[-123.144783, 48.175943],\n\t\t\t\t\t\t[-123.133445, 48.177276],\n\t\t\t\t\t\t[-123.132417, 48.174704],\n\t\t\t\t\t\t[-123.139258, 48.166480],\n\t\t\t\t\t\t[-123.143229, 48.156633],\n\t\t\t\t\t\t[-123.131422, 48.152736]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US53027\",\n\t\t\t\t\"STATE\": \"53\",\n\t\t\t\t\"COUNTY\": \"027\",\n\t\t\t\t\"NAME\": \"Grays Harbor\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 1902.027000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-124.098359, 46.794157],\n\t\t\t\t\t\t[-124.101232, 46.810656],\n\t\t\t\t\t\t[-124.108078, 46.836388],\n\t\t\t\t\t\t[-124.122979, 46.879809],\n\t\t\t\t\t\t[-124.138225, 46.905534],\n\t\t\t\t\t\t[-124.117712, 46.912380],\n\t\t\t\t\t\t[-124.110641, 46.912520],\n\t\t\t\t\t\t[-124.093392, 46.901168],\n\t\t\t\t\t\t[-124.090422, 46.895500],\n\t\t\t\t\t\t[-124.089286, 46.867716],\n\t\t\t\t\t\t[-124.073113, 46.861493],\n\t\t\t\t\t\t[-124.066349, 46.863504],\n\t\t\t\t\t\t[-124.061051, 46.865127],\n\t\t\t\t\t\t[-124.055085, 46.870429],\n\t\t\t\t\t\t[-124.049279, 46.891253],\n\t\t\t\t\t\t[-124.046344, 46.893972],\n\t\t\t\t\t\t[-124.036240, 46.898473],\n\t\t\t\t\t\t[-124.013660, 46.903630],\n\t\t\t\t\t\t[-124.009519, 46.910325],\n\t\t\t\t\t\t[-123.985082, 46.921916],\n\t\t\t\t\t\t[-123.979378, 46.923038],\n\t\t\t\t\t\t[-123.957493, 46.921261],\n\t\t\t\t\t\t[-123.915256, 46.932964],\n\t\t\t\t\t\t[-123.882884, 46.939946],\n\t\t\t\t\t\t[-123.860180, 46.948556],\n\t\t\t\t\t\t[-123.876136, 46.961054],\n\t\t\t\t\t\t[-123.889402, 46.968904],\n\t\t\t\t\t\t[-123.898245, 46.971927],\n\t\t\t\t\t\t[-123.921617, 46.971864],\n\t\t\t\t\t\t[-123.939214, 46.969739],\n\t\t\t\t\t\t[-123.947996, 46.971818],\n\t\t\t\t\t\t[-123.959185, 46.981759],\n\t\t\t\t\t\t[-123.991612, 46.980215],\n\t\t\t\t\t\t[-124.012218, 46.985176],\n\t\t\t\t\t\t[-124.019727, 46.991189],\n\t\t\t\t\t\t[-124.010068, 46.997882],\n\t\t\t\t\t\t[-124.005248, 47.003915],\n\t\t\t\t\t\t[-124.017035, 47.011717],\n\t\t\t\t\t\t[-124.016999, 47.014848],\n\t\t\t\t\t\t[-124.026345, 47.030187],\n\t\t\t\t\t\t[-124.065856, 47.041140],\n\t\t\t\t\t\t[-124.106378, 47.042640],\n\t\t\t\t\t\t[-124.122057, 47.041650],\n\t\t\t\t\t\t[-124.141517, 47.035142],\n\t\t\t\t\t\t[-124.149043, 47.029294],\n\t\t\t\t\t\t[-124.151288, 47.021112],\n\t\t\t\t\t\t[-124.139733, 46.988370],\n\t\t\t\t\t\t[-124.138035, 46.970959],\n\t\t\t\t\t\t[-124.124386, 46.943870],\n\t\t\t\t\t\t[-124.141267, 46.940266],\n\t\t\t\t\t\t[-124.158624, 46.929439],\n\t\t\t\t\t\t[-124.180111, 46.926357],\n\t\t\t\t\t\t[-124.174503, 46.941623],\n\t\t\t\t\t\t[-124.171161, 46.958443],\n\t\t\t\t\t\t[-124.169113, 46.994508],\n\t\t\t\t\t\t[-124.173501, 47.066370],\n\t\t\t\t\t\t[-124.176745, 47.092999],\n\t\t\t\t\t\t[-124.183833, 47.124807],\n\t\t\t\t\t\t[-124.182802, 47.134041],\n\t\t\t\t\t\t[-124.185806, 47.136017],\n\t\t\t\t\t\t[-124.189725, 47.146827],\n\t\t\t\t\t\t[-124.195893, 47.174000],\n\t\t\t\t\t\t[-124.209017, 47.218151],\n\t\t\t\t\t\t[-124.236349, 47.287287],\n\t\t\t\t\t\t[-124.242234, 47.295101],\n\t\t\t\t\t\t[-124.253590, 47.302480],\n\t\t\t\t\t\t[-124.257452, 47.304059],\n\t\t\t\t\t\t[-124.271193, 47.305025],\n\t\t\t\t\t\t[-124.286369, 47.325162],\n\t\t\t\t\t\t[-124.293288, 47.339309],\n\t\t\t\t\t\t[-124.299943, 47.348360],\n\t\t\t\t\t\t[-124.307509, 47.352268],\n\t\t\t\t\t\t[-124.319379, 47.355559],\n\t\t\t\t\t\t[-124.324091, 47.367602],\n\t\t\t\t\t\t[-124.326650, 47.388759],\n\t\t\t\t\t\t[-124.336724, 47.415996],\n\t\t\t\t\t\t[-124.345155, 47.489030],\n\t\t\t\t\t\t[-124.353651, 47.533610],\n\t\t\t\t\t\t[-124.047108, 47.518120],\n\t\t\t\t\t\t[-123.504380, 47.517609],\n\t\t\t\t\t\t[-123.489031, 47.082716],\n\t\t\t\t\t\t[-123.202066, 47.084895],\n\t\t\t\t\t\t[-123.158439, 46.996237],\n\t\t\t\t\t\t[-123.160588, 46.793383],\n\t\t\t\t\t\t[-123.202826, 46.794392],\n\t\t\t\t\t\t[-123.370775, 46.792449],\n\t\t\t\t\t\t[-124.098359, 46.794157]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55105\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"105\",\n\t\t\t\t\"NAME\": \"Rock\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 718.142000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.777137, 42.834488],\n\t\t\t\t\t\t[-88.776496, 42.494020],\n\t\t\t\t\t\t[-88.940388, 42.495046],\n\t\t\t\t\t\t[-88.940391, 42.495046],\n\t\t\t\t\t\t[-88.943264, 42.495114],\n\t\t\t\t\t\t[-88.992659, 42.496025],\n\t\t\t\t\t\t[-88.992977, 42.496026],\n\t\t\t\t\t\t[-89.013667, 42.496087],\n\t\t\t\t\t\t[-89.013804, 42.496097],\n\t\t\t\t\t\t[-89.042898, 42.496255],\n\t\t\t\t\t\t[-89.071141, 42.496208],\n\t\t\t\t\t\t[-89.099012, 42.496499],\n\t\t\t\t\t\t[-89.116949, 42.496910],\n\t\t\t\t\t\t[-89.120365, 42.496992],\n\t\t\t\t\t\t[-89.125111, 42.496957],\n\t\t\t\t\t\t[-89.164905, 42.497347],\n\t\t\t\t\t\t[-89.166728, 42.497256],\n\t\t\t\t\t\t[-89.226270, 42.497957],\n\t\t\t\t\t\t[-89.228279, 42.498047],\n\t\t\t\t\t\t[-89.246972, 42.498130],\n\t\t\t\t\t\t[-89.250759, 42.497994],\n\t\t\t\t\t\t[-89.290896, 42.498853],\n\t\t\t\t\t\t[-89.361561, 42.500012],\n\t\t\t\t\t\t[-89.366031, 42.500274],\n\t\t\t\t\t\t[-89.369127, 42.845046],\n\t\t\t\t\t\t[-89.013489, 42.847347],\n\t\t\t\t\t\t[-88.777076, 42.842694],\n\t\t\t\t\t\t[-88.777137, 42.834488]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55117\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"117\",\n\t\t\t\t\"NAME\": \"Sheboygan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 511.265000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.731322, 43.892184],\n\t\t\t\t\t\t[-87.733735, 43.886340],\n\t\t\t\t\t\t[-87.734457, 43.884590],\n\t\t\t\t\t\t[-87.735436, 43.882219],\n\t\t\t\t\t\t[-87.736178, 43.880421],\n\t\t\t\t\t\t[-87.736017, 43.873721],\n\t\t\t\t\t\t[-87.734881, 43.870430],\n\t\t\t\t\t\t[-87.728698, 43.852524],\n\t\t\t\t\t\t[-87.728728, 43.851833],\n\t\t\t\t\t\t[-87.729217, 43.840582],\n\t\t\t\t\t\t[-87.729600, 43.831782],\n\t\t\t\t\t\t[-87.727686, 43.818989],\n\t\t\t\t\t\t[-87.726772, 43.812885],\n\t\t\t\t\t\t[-87.726408, 43.810454],\n\t\t\t\t\t\t[-87.726407, 43.810445],\n\t\t\t\t\t\t[-87.726405, 43.810442],\n\t\t\t\t\t\t[-87.700251, 43.767350],\n\t\t\t\t\t\t[-87.700245, 43.767129],\n\t\t\t\t\t\t[-87.700090, 43.761590],\n\t\t\t\t\t\t[-87.700085, 43.761395],\n\t\t\t\t\t\t[-87.702985, 43.749695],\n\t\t\t\t\t\t[-87.703047, 43.749565],\n\t\t\t\t\t\t[-87.704630, 43.746256],\n\t\t\t\t\t\t[-87.705185, 43.745095],\n\t\t\t\t\t\t[-87.708167, 43.742979],\n\t\t\t\t\t\t[-87.708285, 43.742895],\n\t\t\t\t\t\t[-87.708321, 43.742737],\n\t\t\t\t\t\t[-87.709885, 43.735795],\n\t\t\t\t\t\t[-87.708185, 43.722895],\n\t\t\t\t\t\t[-87.707923, 43.722064],\n\t\t\t\t\t\t[-87.703144, 43.706901],\n\t\t\t\t\t\t[-87.702985, 43.706395],\n\t\t\t\t\t\t[-87.702685, 43.687596],\n\t\t\t\t\t\t[-87.703671, 43.685339],\n\t\t\t\t\t\t[-87.706204, 43.679542],\n\t\t\t\t\t\t[-87.706242, 43.679488],\n\t\t\t\t\t\t[-87.726460, 43.650462],\n\t\t\t\t\t\t[-87.733622, 43.640181],\n\t\t\t\t\t\t[-87.734312, 43.639190],\n\t\t\t\t\t\t[-87.735065, 43.638217],\n\t\t\t\t\t\t[-87.735489, 43.637668],\n\t\t\t\t\t\t[-87.735972, 43.637044],\n\t\t\t\t\t\t[-87.736146, 43.636819],\n\t\t\t\t\t\t[-87.737859, 43.634604],\n\t\t\t\t\t\t[-87.738638, 43.633597],\n\t\t\t\t\t\t[-87.742485, 43.628622],\n\t\t\t\t\t\t[-87.742522, 43.628574],\n\t\t\t\t\t\t[-87.780175, 43.579889],\n\t\t\t\t\t\t[-87.781255, 43.578493],\n\t\t\t\t\t\t[-87.782271, 43.576726],\n\t\t\t\t\t\t[-87.789105, 43.564844],\n\t\t\t\t\t\t[-87.790135, 43.563054],\n\t\t\t\t\t\t[-87.790277, 43.562376],\n\t\t\t\t\t\t[-87.793075, 43.548990],\n\t\t\t\t\t\t[-87.794321, 43.543034],\n\t\t\t\t\t\t[-88.040528, 43.542361],\n\t\t\t\t\t\t[-88.160873, 43.542943],\n\t\t\t\t\t\t[-88.162274, 43.891511],\n\t\t\t\t\t\t[-88.041794, 43.891692],\n\t\t\t\t\t\t[-87.731322, 43.892184]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55127\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"127\",\n\t\t\t\t\"NAME\": \"Walworth\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 555.127000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.707961, 42.842657],\n\t\t\t\t\t\t[-88.659279, 42.842541],\n\t\t\t\t\t\t[-88.541535, 42.842996],\n\t\t\t\t\t\t[-88.531228, 42.842719],\n\t\t\t\t\t\t[-88.306384, 42.842095],\n\t\t\t\t\t\t[-88.305891, 42.610817],\n\t\t\t\t\t\t[-88.304692, 42.494773],\n\t\t\t\t\t\t[-88.417396, 42.494618],\n\t\t\t\t\t\t[-88.461397, 42.494618],\n\t\t\t\t\t\t[-88.470597, 42.494672],\n\t\t\t\t\t\t[-88.506912, 42.494883],\n\t\t\t\t\t\t[-88.707378, 42.493587],\n\t\t\t\t\t\t[-88.707380, 42.493587],\n\t\t\t\t\t\t[-88.776496, 42.494020],\n\t\t\t\t\t\t[-88.777137, 42.834488],\n\t\t\t\t\t\t[-88.777076, 42.842694],\n\t\t\t\t\t\t[-88.771719, 42.842825],\n\t\t\t\t\t\t[-88.707961, 42.842657]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55009\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"009\",\n\t\t\t\t\"NAME\": \"Brown\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 529.708000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.989912, 44.677587],\n\t\t\t\t\t\t[-87.990081, 44.669791],\n\t\t\t\t\t\t[-87.990110, 44.668455],\n\t\t\t\t\t\t[-87.998964, 44.665187],\n\t\t\t\t\t\t[-88.000321, 44.664686],\n\t\t\t\t\t\t[-88.002085, 44.664035],\n\t\t\t\t\t\t[-88.002254, 44.663442],\n\t\t\t\t\t\t[-88.002677, 44.661956],\n\t\t\t\t\t\t[-88.003340, 44.659630],\n\t\t\t\t\t\t[-88.007287, 44.645779],\n\t\t\t\t\t\t[-88.009766, 44.637081],\n\t\t\t\t\t\t[-88.009523, 44.631711],\n\t\t\t\t\t\t[-88.009486, 44.630897],\n\t\t\t\t\t\t[-88.009472, 44.630594],\n\t\t\t\t\t\t[-88.009463, 44.630398],\n\t\t\t\t\t\t[-88.008717, 44.628932],\n\t\t\t\t\t\t[-88.007489, 44.626521],\n\t\t\t\t\t\t[-88.007158, 44.625871],\n\t\t\t\t\t\t[-88.007013, 44.625586],\n\t\t\t\t\t\t[-88.006871, 44.625306],\n\t\t\t\t\t\t[-88.006409, 44.624399],\n\t\t\t\t\t\t[-88.001172, 44.614112],\n\t\t\t\t\t\t[-87.998836, 44.609523],\n\t\t\t\t\t\t[-87.998716, 44.609288],\n\t\t\t\t\t\t[-88.001943, 44.603909],\n\t\t\t\t\t\t[-88.012395, 44.602438],\n\t\t\t\t\t\t[-88.014735, 44.596400],\n\t\t\t\t\t\t[-88.015092, 44.595478],\n\t\t\t\t\t\t[-88.016373, 44.592172],\n\t\t\t\t\t\t[-88.016404, 44.592092],\n\t\t\t\t\t\t[-88.019465, 44.588344],\n\t\t\t\t\t\t[-88.022853, 44.584196],\n\t\t\t\t\t\t[-88.027103, 44.578992],\n\t\t\t\t\t\t[-88.028148, 44.578736],\n\t\t\t\t\t\t[-88.034535, 44.577175],\n\t\t\t\t\t\t[-88.036103, 44.576792],\n\t\t\t\t\t\t[-88.036104, 44.576791],\n\t\t\t\t\t\t[-88.039092, 44.574324],\n\t\t\t\t\t\t[-88.039489, 44.573995],\n\t\t\t\t\t\t[-88.041162, 44.572614],\n\t\t\t\t\t\t[-88.041202, 44.572581],\n\t\t\t\t\t\t[-88.041358, 44.571809],\n\t\t\t\t\t\t[-88.041485, 44.571183],\n\t\t\t\t\t\t[-88.041561, 44.570804],\n\t\t\t\t\t\t[-88.041659, 44.570320],\n\t\t\t\t\t\t[-88.041775, 44.569746],\n\t\t\t\t\t\t[-88.042261, 44.567344],\n\t\t\t\t\t\t[-88.042414, 44.566589],\n\t\t\t\t\t\t[-88.037178, 44.562705],\n\t\t\t\t\t\t[-88.020707, 44.550484],\n\t\t\t\t\t\t[-88.016709, 44.547518],\n\t\t\t\t\t\t[-88.005518, 44.539216],\n\t\t\t\t\t\t[-88.000099, 44.537827],\n\t\t\t\t\t\t[-87.999002, 44.537546],\n\t\t\t\t\t\t[-87.998536, 44.537426],\n\t\t\t\t\t\t[-87.990985, 44.535491],\n\t\t\t\t\t\t[-87.990468, 44.535358],\n\t\t\t\t\t\t[-87.986059, 44.534228],\n\t\t\t\t\t\t[-87.982821, 44.533398],\n\t\t\t\t\t\t[-87.977901, 44.532137],\n\t\t\t\t\t\t[-87.970702, 44.530292],\n\t\t\t\t\t\t[-87.943801, 44.529693],\n\t\t\t\t\t\t[-87.939972, 44.531323],\n\t\t\t\t\t\t[-87.935707, 44.533138],\n\t\t\t\t\t\t[-87.929001, 44.535993],\n\t\t\t\t\t\t[-87.924044, 44.540991],\n\t\t\t\t\t\t[-87.917467, 44.547622],\n\t\t\t\t\t\t[-87.917000, 44.548093],\n\t\t\t\t\t\t[-87.915846, 44.549612],\n\t\t\t\t\t\t[-87.901206, 44.568887],\n\t\t\t\t\t\t[-87.901178, 44.568924],\n\t\t\t\t\t\t[-87.901177, 44.568925],\n\t\t\t\t\t\t[-87.900668, 44.570084],\n\t\t\t\t\t\t[-87.899368, 44.573043],\n\t\t\t\t\t\t[-87.898907, 44.574091],\n\t\t\t\t\t\t[-87.898888, 44.574135],\n\t\t\t\t\t\t[-87.899183, 44.574576],\n\t\t\t\t\t\t[-87.900198, 44.576095],\n\t\t\t\t\t\t[-87.900634, 44.576747],\n\t\t\t\t\t\t[-87.901061, 44.577386],\n\t\t\t\t\t\t[-87.901236, 44.577648],\n\t\t\t\t\t\t[-87.903689, 44.581317],\n\t\t\t\t\t\t[-87.902319, 44.583079],\n\t\t\t\t\t\t[-87.901179, 44.584545],\n\t\t\t\t\t\t[-87.896412, 44.586780],\n\t\t\t\t\t\t[-87.894356, 44.587745],\n\t\t\t\t\t\t[-87.891727, 44.588977],\n\t\t\t\t\t\t[-87.891717, 44.588982],\n\t\t\t\t\t\t[-87.890868, 44.589647],\n\t\t\t\t\t\t[-87.887410, 44.592356],\n\t\t\t\t\t\t[-87.867941, 44.607606],\n\t\t\t\t\t\t[-87.866884, 44.608434],\n\t\t\t\t\t\t[-87.842164, 44.618826],\n\t\t\t\t\t\t[-87.837416, 44.620822],\n\t\t\t\t\t\t[-87.836101, 44.621375],\n\t\t\t\t\t\t[-87.830848, 44.623583],\n\t\t\t\t\t\t[-87.829229, 44.624521],\n\t\t\t\t\t\t[-87.823444, 44.627870],\n\t\t\t\t\t\t[-87.820083, 44.629816],\n\t\t\t\t\t\t[-87.809076, 44.636189],\n\t\t\t\t\t\t[-87.808819, 44.636338],\n\t\t\t\t\t\t[-87.808366, 44.636378],\n\t\t\t\t\t\t[-87.788240, 44.638137],\n\t\t\t\t\t\t[-87.775160, 44.639281],\n\t\t\t\t\t\t[-87.765774, 44.642023],\n\t\t\t\t\t\t[-87.762912, 44.644110],\n\t\t\t\t\t\t[-87.762376, 44.644501],\n\t\t\t\t\t\t[-87.766194, 44.327185],\n\t\t\t\t\t\t[-87.887526, 44.327589],\n\t\t\t\t\t\t[-87.888087, 44.240461],\n\t\t\t\t\t\t[-88.043240, 44.241018],\n\t\t\t\t\t\t[-88.192611, 44.241947],\n\t\t\t\t\t\t[-88.190603, 44.586791],\n\t\t\t\t\t\t[-88.245204, 44.584746],\n\t\t\t\t\t\t[-88.242687, 44.679631],\n\t\t\t\t\t\t[-87.989912, 44.677587]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US49047\",\n\t\t\t\t\"STATE\": \"49\",\n\t\t\t\t\"COUNTY\": \"047\",\n\t\t\t\t\"NAME\": \"Uintah\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 4479.693000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-110.024140, 39.461695],\n\t\t\t\t\t\t[-110.024828, 39.467560],\n\t\t\t\t\t\t[-110.024118, 39.468951],\n\t\t\t\t\t\t[-110.037952, 39.566667],\n\t\t\t\t\t\t[-109.993741, 39.702780],\n\t\t\t\t\t\t[-109.884708, 39.805742],\n\t\t\t\t\t\t[-109.967601, 39.805979],\n\t\t\t\t\t\t[-109.973684, 40.039869],\n\t\t\t\t\t\t[-109.977505, 40.809828],\n\t\t\t\t\t\t[-109.870207, 40.763829],\n\t\t\t\t\t\t[-109.525495, 40.826370],\n\t\t\t\t\t\t[-109.480252, 40.739929],\n\t\t\t\t\t\t[-109.394368, 40.790881],\n\t\t\t\t\t\t[-109.394481, 40.858073],\n\t\t\t\t\t\t[-109.203253, 40.858641],\n\t\t\t\t\t\t[-109.202356, 40.785814],\n\t\t\t\t\t\t[-109.163584, 40.785890],\n\t\t\t\t\t\t[-109.161063, 40.683817],\n\t\t\t\t\t\t[-109.048296, 40.662602],\n\t\t\t\t\t\t[-109.048249, 40.653601],\n\t\t\t\t\t\t[-109.050074, 40.540358],\n\t\t\t\t\t\t[-109.049955, 40.539901],\n\t\t\t\t\t\t[-109.050854, 40.222662],\n\t\t\t\t\t\t[-109.050973, 40.180849],\n\t\t\t\t\t\t[-109.050944, 40.180712],\n\t\t\t\t\t\t[-109.050813, 40.059579],\n\t\t\t\t\t\t[-109.050873, 40.058915],\n\t\t\t\t\t\t[-109.051221, 39.660472],\n\t\t\t\t\t\t[-109.051363, 39.497674],\n\t\t\t\t\t\t[-109.106972, 39.461979],\n\t\t\t\t\t\t[-110.024140, 39.461695]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US49053\",\n\t\t\t\t\"STATE\": \"49\",\n\t\t\t\t\"COUNTY\": \"053\",\n\t\t\t\t\"NAME\": \"Washington\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2426.358000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-112.899366, 37.000319],\n\t\t\t\t\t\t[-112.966471, 37.000219],\n\t\t\t\t\t\t[-113.965907, 36.999976],\n\t\t\t\t\t\t[-113.965907, 37.000025],\n\t\t\t\t\t\t[-114.050600, 37.000396],\n\t\t\t\t\t\t[-114.051749, 37.088434],\n\t\t\t\t\t\t[-114.051822, 37.090976],\n\t\t\t\t\t\t[-114.051974, 37.283848],\n\t\t\t\t\t\t[-114.051974, 37.284511],\n\t\t\t\t\t\t[-114.051800, 37.293044],\n\t\t\t\t\t\t[-114.051800, 37.293548],\n\t\t\t\t\t\t[-114.051927, 37.370459],\n\t\t\t\t\t\t[-114.051927, 37.370734],\n\t\t\t\t\t\t[-114.052701, 37.492014],\n\t\t\t\t\t\t[-114.052685, 37.502513],\n\t\t\t\t\t\t[-114.052718, 37.517264],\n\t\t\t\t\t\t[-114.052689, 37.517859],\n\t\t\t\t\t\t[-114.052472, 37.604776],\n\t\t\t\t\t\t[-113.474991, 37.618276],\n\t\t\t\t\t\t[-113.474389, 37.528978],\n\t\t\t\t\t\t[-113.253184, 37.528879],\n\t\t\t\t\t\t[-113.253677, 37.482241],\n\t\t\t\t\t\t[-113.146281, 37.474079],\n\t\t\t\t\t\t[-113.036880, 37.474578],\n\t\t\t\t\t\t[-113.036980, 37.498577],\n\t\t\t\t\t\t[-112.900994, 37.499738],\n\t\t\t\t\t\t[-112.899366, 37.000319]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US50001\",\n\t\t\t\t\"STATE\": \"50\",\n\t\t\t\t\"COUNTY\": \"001\",\n\t\t\t\t\"NAME\": \"Addison\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 766.325000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-72.958853, 43.826542],\n\t\t\t\t\t\t[-72.989434, 43.814611],\n\t\t\t\t\t\t[-73.016831, 43.804953],\n\t\t\t\t\t\t[-73.026833, 43.842113],\n\t\t\t\t\t\t[-73.032082, 43.844718],\n\t\t\t\t\t\t[-73.029938, 43.846716],\n\t\t\t\t\t\t[-73.156173, 43.842314],\n\t\t\t\t\t\t[-73.155743, 43.839660],\n\t\t\t\t\t\t[-73.231377, 43.764469],\n\t\t\t\t\t\t[-73.360711, 43.753268],\n\t\t\t\t\t\t[-73.350431, 43.771438],\n\t\t\t\t\t\t[-73.357547, 43.785933],\n\t\t\t\t\t\t[-73.379279, 43.808391],\n\t\t\t\t\t\t[-73.379312, 43.808478],\n\t\t\t\t\t\t[-73.388389, 43.832404],\n\t\t\t\t\t\t[-73.397256, 43.905668],\n\t\t\t\t\t\t[-73.407742, 43.929887],\n\t\t\t\t\t\t[-73.405525, 43.948813],\n\t\t\t\t\t\t[-73.405999, 44.016229],\n\t\t\t\t\t\t[-73.410776, 44.026944],\n\t\t\t\t\t\t[-73.436880, 44.042578],\n\t\t\t\t\t\t[-73.437429, 44.046861],\n\t\t\t\t\t\t[-73.429239, 44.079414],\n\t\t\t\t\t\t[-73.403686, 44.153102],\n\t\t\t\t\t\t[-73.390583, 44.190886],\n\t\t\t\t\t\t[-73.350806, 44.225943],\n\t\t\t\t\t\t[-73.324681, 44.243614],\n\t\t\t\t\t\t[-73.323268, 44.264796],\n\t\t\t\t\t\t[-72.973318, 44.293420],\n\t\t\t\t\t\t[-72.952167, 44.161271],\n\t\t\t\t\t\t[-72.916778, 44.071886],\n\t\t\t\t\t\t[-72.742303, 44.029655],\n\t\t\t\t\t\t[-72.753960, 44.012219],\n\t\t\t\t\t\t[-72.791336, 43.961855],\n\t\t\t\t\t\t[-72.980158, 43.882587],\n\t\t\t\t\t\t[-72.958853, 43.826542]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US50009\",\n\t\t\t\t\"STATE\": \"50\",\n\t\t\t\t\"COUNTY\": \"009\",\n\t\t\t\t\"NAME\": \"Essex\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 663.598000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-71.939936, 44.769032],\n\t\t\t\t\t\t[-71.974318, 44.786519],\n\t\t\t\t\t\t[-71.874433, 44.876382],\n\t\t\t\t\t\t[-71.928510, 44.907298],\n\t\t\t\t\t\t[-71.897622, 45.009172],\n\t\t\t\t\t\t[-71.767452, 45.011437],\n\t\t\t\t\t\t[-71.502487, 45.013367],\n\t\t\t\t\t\t[-71.464555, 45.013637],\n\t\t\t\t\t\t[-71.468567, 45.010222],\n\t\t\t\t\t\t[-71.486457, 45.007011],\n\t\t\t\t\t\t[-71.505000, 45.008151],\n\t\t\t\t\t\t[-71.530091, 44.999656],\n\t\t\t\t\t\t[-71.536980, 44.994177],\n\t\t\t\t\t\t[-71.538592, 44.988182],\n\t\t\t\t\t\t[-71.537784, 44.984298],\n\t\t\t\t\t\t[-71.516814, 44.947588],\n\t\t\t\t\t\t[-71.493985, 44.911312],\n\t\t\t\t\t\t[-71.495844, 44.904980],\n\t\t\t\t\t\t[-71.572520, 44.810074],\n\t\t\t\t\t\t[-71.623924, 44.755135],\n\t\t\t\t\t\t[-71.627358, 44.747544],\n\t\t\t\t\t\t[-71.625323, 44.729718],\n\t\t\t\t\t\t[-71.598656, 44.698005],\n\t\t\t\t\t\t[-71.553156, 44.626645],\n\t\t\t\t\t\t[-71.536251, 44.587939],\n\t\t\t\t\t\t[-71.580263, 44.506509],\n\t\t\t\t\t\t[-71.599480, 44.486455],\n\t\t\t\t\t\t[-71.679950, 44.427908],\n\t\t\t\t\t\t[-71.708934, 44.411611],\n\t\t\t\t\t\t[-71.745011, 44.401359],\n\t\t\t\t\t\t[-71.756091, 44.406401],\n\t\t\t\t\t\t[-71.761966, 44.407027],\n\t\t\t\t\t\t[-71.764537, 44.406403],\n\t\t\t\t\t\t[-71.793924, 44.399271],\n\t\t\t\t\t\t[-71.814388, 44.381932],\n\t\t\t\t\t\t[-71.816065, 44.366817],\n\t\t\t\t\t\t[-71.849465, 44.359295],\n\t\t\t\t\t\t[-71.933288, 44.441174],\n\t\t\t\t\t\t[-71.856637, 44.496178],\n\t\t\t\t\t\t[-71.908657, 44.547080],\n\t\t\t\t\t\t[-71.842732, 44.611165],\n\t\t\t\t\t\t[-71.910282, 44.647038],\n\t\t\t\t\t\t[-71.837294, 44.716637],\n\t\t\t\t\t\t[-71.939936, 44.769032]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US50017\",\n\t\t\t\t\"STATE\": \"50\",\n\t\t\t\t\"COUNTY\": \"017\",\n\t\t\t\t\"NAME\": \"Orange\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 687.033000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-72.460132, 43.838291],\n\t\t\t\t\t\t[-72.499030, 43.850224],\n\t\t\t\t\t\t[-72.499473, 43.850398],\n\t\t\t\t\t\t[-72.574443, 43.873348],\n\t\t\t\t\t\t[-72.783208, 43.928967],\n\t\t\t\t\t\t[-72.791336, 43.961855],\n\t\t\t\t\t\t[-72.753960, 44.012219],\n\t\t\t\t\t\t[-72.742303, 44.029655],\n\t\t\t\t\t\t[-72.683772, 44.012938],\n\t\t\t\t\t\t[-72.634789, 44.089450],\n\t\t\t\t\t\t[-72.628910, 44.088639],\n\t\t\t\t\t\t[-72.589333, 44.160282],\n\t\t\t\t\t\t[-72.443032, 44.128669],\n\t\t\t\t\t\t[-72.419747, 44.220979],\n\t\t\t\t\t\t[-72.368353, 44.204057],\n\t\t\t\t\t\t[-72.304980, 44.183149],\n\t\t\t\t\t\t[-72.170260, 44.192053],\n\t\t\t\t\t\t[-72.042087, 44.157633],\n\t\t\t\t\t\t[-72.040082, 44.155749],\n\t\t\t\t\t\t[-72.040082, 44.155748],\n\t\t\t\t\t\t[-72.054675, 44.112147],\n\t\t\t\t\t\t[-72.090710, 44.035211],\n\t\t\t\t\t\t[-72.112813, 43.988020],\n\t\t\t\t\t\t[-72.113078, 43.972790],\n\t\t\t\t\t\t[-72.107042, 43.969513],\n\t\t\t\t\t\t[-72.105594, 43.959029],\n\t\t\t\t\t\t[-72.104421, 43.950536],\n\t\t\t\t\t\t[-72.121002, 43.918956],\n\t\t\t\t\t\t[-72.167224, 43.886113],\n\t\t\t\t\t\t[-72.182203, 43.834032],\n\t\t\t\t\t\t[-72.183743, 43.806644],\n\t\t\t\t\t\t[-72.204792, 43.771926],\n\t\t\t\t\t\t[-72.205717, 43.771143],\n\t\t\t\t\t\t[-72.207259, 43.771812],\n\t\t\t\t\t\t[-72.460132, 43.838291]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US50023\",\n\t\t\t\t\"STATE\": \"50\",\n\t\t\t\t\"COUNTY\": \"023\",\n\t\t\t\t\"NAME\": \"Washington\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 687.233000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-72.826112, 44.359190],\n\t\t\t\t\t\t[-72.804995, 44.451676],\n\t\t\t\t\t\t[-72.765856, 44.442595],\n\t\t\t\t\t\t[-72.654398, 44.398224],\n\t\t\t\t\t\t[-72.596807, 44.479292],\n\t\t\t\t\t\t[-72.490548, 44.425693],\n\t\t\t\t\t\t[-72.434315, 44.506098],\n\t\t\t\t\t\t[-72.223689, 44.424573],\n\t\t\t\t\t\t[-72.368353, 44.204057],\n\t\t\t\t\t\t[-72.419747, 44.220979],\n\t\t\t\t\t\t[-72.443032, 44.128669],\n\t\t\t\t\t\t[-72.589333, 44.160282],\n\t\t\t\t\t\t[-72.628910, 44.088639],\n\t\t\t\t\t\t[-72.634789, 44.089450],\n\t\t\t\t\t\t[-72.683772, 44.012938],\n\t\t\t\t\t\t[-72.742303, 44.029655],\n\t\t\t\t\t\t[-72.916778, 44.071886],\n\t\t\t\t\t\t[-72.952167, 44.161271],\n\t\t\t\t\t\t[-72.895980, 44.276284],\n\t\t\t\t\t\t[-72.911398, 44.281769],\n\t\t\t\t\t\t[-72.855592, 44.365551],\n\t\t\t\t\t\t[-72.826112, 44.359190]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22003\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"003\",\n\t\t\t\t\"NAME\": \"Allen\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 761.847000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-92.597402, 30.583928],\n\t\t\t\t\t\t[-92.630347, 30.487873],\n\t\t\t\t\t\t[-92.722339, 30.488208],\n\t\t\t\t\t\t[-92.775554, 30.437656],\n\t\t\t\t\t\t[-93.065543, 30.438569],\n\t\t\t\t\t\t[-93.131155, 30.423612],\n\t\t\t\t\t\t[-93.130294, 30.597886],\n\t\t\t\t\t\t[-92.979170, 30.598340],\n\t\t\t\t\t\t[-92.976886, 30.774040],\n\t\t\t\t\t\t[-92.978453, 30.878175],\n\t\t\t\t\t\t[-92.823932, 30.890000],\n\t\t\t\t\t\t[-92.597741, 30.896101],\n\t\t\t\t\t\t[-92.597402, 30.583928]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22009\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"009\",\n\t\t\t\t\"NAME\": \"Avoyelles\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 832.434000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.815258, 30.848107],\n\t\t\t\t\t\t[-92.212711, 30.848607],\n\t\t\t\t\t\t[-92.280738, 30.965071],\n\t\t\t\t\t\t[-92.208299, 30.962430],\n\t\t\t\t\t\t[-92.234258, 31.131466],\n\t\t\t\t\t\t[-92.233230, 31.321545],\n\t\t\t\t\t\t[-92.086718, 31.335374],\n\t\t\t\t\t\t[-92.008121, 31.325797],\n\t\t\t\t\t\t[-91.994828, 31.229561],\n\t\t\t\t\t\t[-91.926854, 31.294830],\n\t\t\t\t\t\t[-91.834280, 31.266344],\n\t\t\t\t\t\t[-91.677302, 31.188047],\n\t\t\t\t\t\t[-91.750119, 31.018814],\n\t\t\t\t\t\t[-91.805963, 30.972558],\n\t\t\t\t\t\t[-91.815258, 30.848107]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22101\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"101\",\n\t\t\t\t\"NAME\": \"St. Mary\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 555.379000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.082602, 29.626368],\n\t\t\t\t\t\t[-91.178048, 29.609703],\n\t\t\t\t\t\t[-91.260661, 29.544510],\n\t\t\t\t\t\t[-91.265649, 29.472362],\n\t\t\t\t\t\t[-91.281300, 29.481547],\n\t\t\t\t\t\t[-91.294325, 29.476894],\n\t\t\t\t\t\t[-91.335742, 29.485886],\n\t\t\t\t\t\t[-91.343567, 29.492593],\n\t\t\t\t\t\t[-91.345880, 29.504538],\n\t\t\t\t\t\t[-91.356625, 29.515191],\n\t\t\t\t\t\t[-91.402214, 29.511914],\n\t\t\t\t\t\t[-91.420449, 29.515745],\n\t\t\t\t\t\t[-91.427130, 29.520215],\n\t\t\t\t\t\t[-91.432337, 29.532830],\n\t\t\t\t\t\t[-91.439941, 29.540434],\n\t\t\t\t\t\t[-91.447345, 29.544749],\n\t\t\t\t\t\t[-91.468748, 29.544299],\n\t\t\t\t\t\t[-91.517274, 29.529740],\n\t\t\t\t\t\t[-91.531021, 29.531543],\n\t\t\t\t\t\t[-91.531471, 29.535374],\n\t\t\t\t\t\t[-91.525840, 29.545946],\n\t\t\t\t\t\t[-91.525523, 29.551904],\n\t\t\t\t\t\t[-91.529217, 29.558598],\n\t\t\t\t\t\t[-91.537445, 29.565888],\n\t\t\t\t\t\t[-91.541974, 29.594353],\n\t\t\t\t\t\t[-91.553537, 29.632766],\n\t\t\t\t\t\t[-91.560908, 29.637350],\n\t\t\t\t\t\t[-91.570589, 29.638312],\n\t\t\t\t\t\t[-91.581843, 29.637165],\n\t\t\t\t\t\t[-91.600179, 29.631156],\n\t\t\t\t\t\t[-91.625114, 29.626195],\n\t\t\t\t\t\t[-91.643832, 29.630625],\n\t\t\t\t\t\t[-91.648941, 29.633635],\n\t\t\t\t\t\t[-91.648657, 29.636713],\n\t\t\t\t\t\t[-91.646478, 29.639427],\n\t\t\t\t\t\t[-91.643198, 29.640274],\n\t\t\t\t\t\t[-91.637344, 29.647217],\n\t\t\t\t\t\t[-91.627286, 29.662132],\n\t\t\t\t\t\t[-91.625114, 29.671679],\n\t\t\t\t\t\t[-91.626826, 29.684753],\n\t\t\t\t\t\t[-91.623829, 29.699240],\n\t\t\t\t\t\t[-91.618479, 29.710816],\n\t\t\t\t\t\t[-91.618090, 29.720694],\n\t\t\t\t\t\t[-91.621512, 29.735429],\n\t\t\t\t\t\t[-91.632829, 29.742576],\n\t\t\t\t\t\t[-91.667128, 29.745822],\n\t\t\t\t\t\t[-91.710935, 29.738993],\n\t\t\t\t\t\t[-91.737253, 29.749370],\n\t\t\t\t\t\t[-91.752259, 29.748264],\n\t\t\t\t\t\t[-91.783674, 29.740689],\n\t\t\t\t\t\t[-91.830499, 29.718918],\n\t\t\t\t\t\t[-91.845962, 29.708763],\n\t\t\t\t\t\t[-91.858640, 29.703121],\n\t\t\t\t\t\t[-91.866516, 29.707150],\n\t\t\t\t\t\t[-91.880750, 29.710839],\n\t\t\t\t\t\t[-91.880999, 29.713338],\n\t\t\t\t\t\t[-91.878331, 29.716087],\n\t\t\t\t\t\t[-91.875637, 29.722316],\n\t\t\t\t\t\t[-91.711149, 29.846065],\n\t\t\t\t\t\t[-91.624709, 29.945275],\n\t\t\t\t\t\t[-91.471951, 29.955989],\n\t\t\t\t\t\t[-91.373642, 29.834401],\n\t\t\t\t\t\t[-91.386491, 29.783681],\n\t\t\t\t\t\t[-91.215195, 29.751211],\n\t\t\t\t\t\t[-91.100010, 29.699402],\n\t\t\t\t\t\t[-91.104912, 29.642496],\n\t\t\t\t\t\t[-91.082602, 29.626368]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22107\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"107\",\n\t\t\t\t\"NAME\": \"Tensas\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 602.784000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.027946, 32.112722],\n\t\t\t\t\t\t[-91.034707, 32.101053],\n\t\t\t\t\t\t[-91.128009, 31.985857],\n\t\t\t\t\t\t[-91.248144, 31.869848],\n\t\t\t\t\t\t[-91.293413, 31.860160],\n\t\t\t\t\t\t[-91.326914, 31.854961],\n\t\t\t\t\t\t[-91.338414, 31.851261],\n\t\t\t\t\t\t[-91.345714, 31.842861],\n\t\t\t\t\t\t[-91.359514, 31.799362],\n\t\t\t\t\t\t[-91.363714, 31.780363],\n\t\t\t\t\t\t[-91.365614, 31.760763],\n\t\t\t\t\t\t[-91.365084, 31.752743],\n\t\t\t\t\t\t[-91.369375, 31.746903],\n\t\t\t\t\t\t[-91.379935, 31.733013],\n\t\t\t\t\t\t[-91.544791, 31.751731],\n\t\t\t\t\t\t[-91.575721, 31.882560],\n\t\t\t\t\t\t[-91.489761, 32.092422],\n\t\t\t\t\t\t[-91.492718, 32.203349],\n\t\t\t\t\t\t[-91.320742, 32.202455],\n\t\t\t\t\t\t[-91.133780, 32.249339],\n\t\t\t\t\t\t[-91.122602, 32.216929],\n\t\t\t\t\t\t[-91.133587, 32.213432],\n\t\t\t\t\t\t[-91.158026, 32.201956],\n\t\t\t\t\t\t[-91.164171, 32.196888],\n\t\t\t\t\t\t[-91.171046, 32.176526],\n\t\t\t\t\t\t[-91.174552, 32.154978],\n\t\t\t\t\t\t[-91.171702, 32.144250],\n\t\t\t\t\t\t[-91.165452, 32.134290],\n\t\t\t\t\t\t[-91.162822, 32.132694],\n\t\t\t\t\t\t[-91.131403, 32.126213],\n\t\t\t\t\t\t[-91.067004, 32.132144],\n\t\t\t\t\t\t[-91.057487, 32.135515],\n\t\t\t\t\t\t[-91.052342, 32.137337],\n\t\t\t\t\t\t[-91.046615, 32.138768],\n\t\t\t\t\t\t[-91.040531, 32.137337],\n\t\t\t\t\t\t[-91.034447, 32.134832],\n\t\t\t\t\t\t[-91.030152, 32.129821],\n\t\t\t\t\t\t[-91.026931, 32.123737],\n\t\t\t\t\t\t[-91.027125, 32.120434],\n\t\t\t\t\t\t[-91.027535, 32.113431],\n\t\t\t\t\t\t[-91.027946, 32.112722]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22109\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"109\",\n\t\t\t\t\"NAME\": \"Terrebonne\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 1231.815000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-91.006743, 29.714771],\n\t\t\t\t\t\t[-90.880194, 29.716809],\n\t\t\t\t\t\t[-90.807692, 29.775908],\n\t\t\t\t\t\t[-90.766849, 29.695477],\n\t\t\t\t\t\t[-90.574611, 29.559141],\n\t\t\t\t\t\t[-90.384285, 29.365755],\n\t\t\t\t\t\t[-90.376666, 29.302883],\n\t\t\t\t\t\t[-90.409416, 29.196135],\n\t\t\t\t\t\t[-90.432912, 29.188132],\n\t\t\t\t\t\t[-90.435907, 29.188449],\n\t\t\t\t\t\t[-90.443954, 29.195830],\n\t\t\t\t\t\t[-90.472489, 29.192688],\n\t\t\t\t\t\t[-90.473273, 29.195224],\n\t\t\t\t\t\t[-90.468773, 29.198469],\n\t\t\t\t\t\t[-90.467233, 29.202549],\n\t\t\t\t\t\t[-90.485786, 29.209843],\n\t\t\t\t\t\t[-90.494928, 29.216713],\n\t\t\t\t\t\t[-90.490987, 29.220883],\n\t\t\t\t\t\t[-90.468320, 29.227532],\n\t\t\t\t\t\t[-90.465764, 29.242951],\n\t\t\t\t\t\t[-90.462866, 29.249809],\n\t\t\t\t\t\t[-90.450674, 29.263739],\n\t\t\t\t\t\t[-90.452186, 29.266250],\n\t\t\t\t\t\t[-90.472779, 29.272556],\n\t\t\t\t\t\t[-90.495299, 29.287277],\n\t\t\t\t\t\t[-90.510555, 29.290925],\n\t\t\t\t\t\t[-90.517277, 29.282719],\n\t\t\t\t\t\t[-90.526216, 29.276492],\n\t\t\t\t\t\t[-90.552005, 29.278512],\n\t\t\t\t\t\t[-90.565436, 29.285111],\n\t\t\t\t\t\t[-90.582525, 29.276037],\n\t\t\t\t\t\t[-90.589724, 29.248521],\n\t\t\t\t\t\t[-90.588470, 29.245863],\n\t\t\t\t\t\t[-90.583924, 29.242886],\n\t\t\t\t\t\t[-90.576506, 29.243986],\n\t\t\t\t\t\t[-90.565378, 29.242475],\n\t\t\t\t\t\t[-90.544547, 29.230683],\n\t\t\t\t\t\t[-90.543245, 29.227843],\n\t\t\t\t\t\t[-90.544311, 29.224292],\n\t\t\t\t\t\t[-90.556501, 29.219913],\n\t\t\t\t\t\t[-90.557390, 29.207881],\n\t\t\t\t\t\t[-90.560889, 29.204261],\n\t\t\t\t\t\t[-90.575277, 29.206827],\n\t\t\t\t\t\t[-90.618413, 29.203290],\n\t\t\t\t\t\t[-90.624161, 29.210366],\n\t\t\t\t\t\t[-90.627420, 29.211004],\n\t\t\t\t\t\t[-90.633819, 29.209128],\n\t\t\t\t\t\t[-90.640223, 29.196554],\n\t\t\t\t\t\t[-90.645612, 29.175867],\n\t\t\t\t\t\t[-90.645169, 29.172958],\n\t\t\t\t\t\t[-90.640863, 29.171261],\n\t\t\t\t\t\t[-90.636973, 29.164572],\n\t\t\t\t\t\t[-90.647042, 29.128580],\n\t\t\t\t\t\t[-90.677724, 29.118742],\n\t\t\t\t\t\t[-90.691109, 29.121722],\n\t\t\t\t\t\t[-90.700893, 29.121470],\n\t\t\t\t\t\t[-90.718035, 29.116611],\n\t\t\t\t\t\t[-90.731239, 29.122886],\n\t\t\t\t\t\t[-90.764189, 29.113374],\n\t\t\t\t\t\t[-90.773458, 29.100133],\n\t\t\t\t\t\t[-90.799444, 29.087377],\n\t\t\t\t\t\t[-90.802053, 29.083322],\n\t\t\t\t\t\t[-90.803699, 29.063709],\n\t\t\t\t\t\t[-90.798720, 29.054841],\n\t\t\t\t\t\t[-90.781981, 29.049431],\n\t\t\t\t\t\t[-90.765188, 29.049403],\n\t\t\t\t\t\t[-90.750092, 29.053247],\n\t\t\t\t\t\t[-90.725300, 29.066616],\n\t\t\t\t\t\t[-90.709105, 29.064305],\n\t\t\t\t\t\t[-90.705350, 29.062679],\n\t\t\t\t\t\t[-90.702102, 29.060275],\n\t\t\t\t\t\t[-90.692205, 29.059607],\n\t\t\t\t\t\t[-90.683645, 29.060944],\n\t\t\t\t\t\t[-90.676958, 29.063619],\n\t\t\t\t\t\t[-90.665589, 29.067230],\n\t\t\t\t\t\t[-90.652348, 29.069237],\n\t\t\t\t\t\t[-90.644189, 29.071510],\n\t\t\t\t\t\t[-90.641247, 29.072313],\n\t\t\t\t\t\t[-90.639240, 29.072848],\n\t\t\t\t\t\t[-90.637623, 29.072084],\n\t\t\t\t\t\t[-90.636033, 29.069792],\n\t\t\t\t\t\t[-90.637495, 29.066608],\n\t\t\t\t\t\t[-90.648058, 29.062649],\n\t\t\t\t\t\t[-90.730899, 29.042259],\n\t\t\t\t\t\t[-90.755677, 29.038997],\n\t\t\t\t\t\t[-90.797680, 29.039741],\n\t\t\t\t\t\t[-90.811473, 29.036580],\n\t\t\t\t\t\t[-90.839345, 29.039167],\n\t\t\t\t\t\t[-90.842762, 29.042947],\n\t\t\t\t\t\t[-90.844849, 29.048721],\n\t\t\t\t\t\t[-90.841226, 29.054266],\n\t\t\t\t\t\t[-90.844593, 29.067280],\n\t\t\t\t\t\t[-90.862757, 29.094863],\n\t\t\t\t\t\t[-90.867766, 29.095434],\n\t\t\t\t\t\t[-90.877583, 29.104891],\n\t\t\t\t\t\t[-90.885351, 29.117016],\n\t\t\t\t\t\t[-90.898215, 29.131342],\n\t\t\t\t\t\t[-90.925797, 29.153116],\n\t\t\t\t\t\t[-90.941877, 29.162373],\n\t\t\t\t\t\t[-90.948091, 29.174104],\n\t\t\t\t\t\t[-90.961278, 29.180817],\n\t\t\t\t\t\t[-90.981458, 29.171211],\n\t\t\t\t\t\t[-91.000096, 29.169481],\n\t\t\t\t\t\t[-91.023955, 29.174784],\n\t\t\t\t\t\t[-91.031786, 29.182188],\n\t\t\t\t\t\t[-91.058630, 29.181734],\n\t\t\t\t\t\t[-91.094015, 29.187711],\n\t\t\t\t\t\t[-91.114760, 29.207918],\n\t\t\t\t\t\t[-91.129141, 29.215863],\n\t\t\t\t\t\t[-91.199647, 29.221287],\n\t\t\t\t\t\t[-91.219032, 29.226051],\n\t\t\t\t\t\t[-91.278792, 29.247776],\n\t\t\t\t\t\t[-91.302677, 29.265958],\n\t\t\t\t\t\t[-91.334885, 29.298775],\n\t\t\t\t\t\t[-91.332750, 29.305816],\n\t\t\t\t\t\t[-91.309314, 29.305698],\n\t\t\t\t\t\t[-91.299054, 29.309017],\n\t\t\t\t\t\t[-91.291821, 29.311357],\n\t\t\t\t\t\t[-91.290420, 29.313062],\n\t\t\t\t\t\t[-91.279742, 29.326058],\n\t\t\t\t\t\t[-91.276647, 29.329825],\n\t\t\t\t\t\t[-91.276187, 29.332783],\n\t\t\t\t\t\t[-91.274308, 29.344878],\n\t\t\t\t\t\t[-91.270582, 29.355415],\n\t\t\t\t\t\t[-91.270053, 29.356912],\n\t\t\t\t\t\t[-91.269940, 29.357231],\n\t\t\t\t\t\t[-91.266589, 29.361218],\n\t\t\t\t\t\t[-91.265479, 29.361767],\n\t\t\t\t\t\t[-91.251546, 29.368659],\n\t\t\t\t\t\t[-91.251232, 29.368814],\n\t\t\t\t\t\t[-91.249517, 29.369662],\n\t\t\t\t\t\t[-91.249109, 29.369864],\n\t\t\t\t\t\t[-91.245558, 29.370580],\n\t\t\t\t\t\t[-91.238515, 29.371999],\n\t\t\t\t\t\t[-91.235348, 29.370638],\n\t\t\t\t\t\t[-91.222377, 29.360703],\n\t\t\t\t\t\t[-91.207299, 29.360703],\n\t\t\t\t\t\t[-91.197465, 29.369882],\n\t\t\t\t\t\t[-91.200087, 29.389550],\n\t\t\t\t\t\t[-91.218463, 29.407235],\n\t\t\t\t\t\t[-91.215976, 29.412505],\n\t\t\t\t\t\t[-91.214284, 29.416089],\n\t\t\t\t\t\t[-91.211999, 29.420931],\n\t\t\t\t\t\t[-91.215100, 29.427542],\n\t\t\t\t\t\t[-91.217448, 29.432549],\n\t\t\t\t\t\t[-91.218067, 29.433193],\n\t\t\t\t\t\t[-91.219242, 29.434418],\n\t\t\t\t\t\t[-91.221166, 29.436421],\n\t\t\t\t\t\t[-91.241640, 29.441021],\n\t\t\t\t\t\t[-91.251319, 29.444483],\n\t\t\t\t\t\t[-91.258226, 29.446954],\n\t\t\t\t\t\t[-91.259537, 29.458001],\n\t\t\t\t\t\t[-91.259844, 29.460582],\n\t\t\t\t\t\t[-91.259988, 29.461803],\n\t\t\t\t\t\t[-91.260024, 29.462102],\n\t\t\t\t\t\t[-91.261588, 29.464954],\n\t\t\t\t\t\t[-91.265649, 29.472362],\n\t\t\t\t\t\t[-91.260661, 29.544510],\n\t\t\t\t\t\t[-91.178048, 29.609703],\n\t\t\t\t\t\t[-91.082602, 29.626368],\n\t\t\t\t\t\t[-91.006743, 29.714771]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21021\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"021\",\n\t\t\t\t\"NAME\": \"Boyle\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 180.169000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.658296, 37.634501],\n\t\t\t\t\t\t[-84.801112, 37.568776],\n\t\t\t\t\t\t[-84.847326, 37.547894],\n\t\t\t\t\t\t[-85.039674, 37.545232],\n\t\t\t\t\t\t[-85.030172, 37.631270],\n\t\t\t\t\t\t[-85.025021, 37.678854],\n\t\t\t\t\t\t[-84.744888, 37.713075],\n\t\t\t\t\t\t[-84.658296, 37.634501]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21023\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"023\",\n\t\t\t\t\"NAME\": \"Bracken\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 205.612000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.044486, 38.770572],\n\t\t\t\t\t\t[-83.978814, 38.787104],\n\t\t\t\t\t\t[-83.962123, 38.787384],\n\t\t\t\t\t\t[-83.943978, 38.783616],\n\t\t\t\t\t\t[-83.903971, 38.768160],\n\t\t\t\t\t\t[-83.903918, 38.768150],\n\t\t\t\t\t\t[-83.991605, 38.593701],\n\t\t\t\t\t\t[-84.162031, 38.554125],\n\t\t\t\t\t\t[-84.211319, 38.550864],\n\t\t\t\t\t\t[-84.205346, 38.582039],\n\t\t\t\t\t\t[-84.229954, 38.827650],\n\t\t\t\t\t\t[-84.225300, 38.817665],\n\t\t\t\t\t\t[-84.212904, 38.805707],\n\t\t\t\t\t\t[-84.205592, 38.802588],\n\t\t\t\t\t\t[-84.071491, 38.770475],\n\t\t\t\t\t\t[-84.052707, 38.770542],\n\t\t\t\t\t\t[-84.044486, 38.770572]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US22045\",\n\t\t\t\t\"STATE\": \"22\",\n\t\t\t\t\"COUNTY\": \"045\",\n\t\t\t\t\"NAME\": \"Iberia\",\n\t\t\t\t\"LSAD\": \"Parish\",\n\t\t\t\t\"CENSUSAREA\": 574.111000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-92.000371, 29.613143],\n\t\t\t\t\t\t\t[-92.000003, 29.613013],\n\t\t\t\t\t\t\t[-91.965031, 29.608019],\n\t\t\t\t\t\t\t[-91.939903, 29.610291],\n\t\t\t\t\t\t\t[-91.935024, 29.612239],\n\t\t\t\t\t\t\t[-91.929567, 29.618840],\n\t\t\t\t\t\t\t[-91.922825, 29.633173],\n\t\t\t\t\t\t\t[-91.898996, 29.637010],\n\t\t\t\t\t\t\t[-91.896763, 29.634618],\n\t\t\t\t\t\t\t[-91.882318, 29.629770],\n\t\t\t\t\t\t\t[-91.866113, 29.631583],\n\t\t\t\t\t\t\t[-91.863018, 29.633739],\n\t\t\t\t\t\t\t[-91.841294, 29.629620],\n\t\t\t\t\t\t\t[-91.838981, 29.624475],\n\t\t\t\t\t\t\t[-91.840921, 29.619913],\n\t\t\t\t\t\t\t[-91.838297, 29.616041],\n\t\t\t\t\t\t\t[-91.821693, 29.606049],\n\t\t\t\t\t\t\t[-91.803831, 29.599562],\n\t\t\t\t\t\t\t[-91.784976, 29.595204],\n\t\t\t\t\t\t\t[-91.778500, 29.589220],\n\t\t\t\t\t\t\t[-91.774805, 29.582113],\n\t\t\t\t\t\t\t[-91.774686, 29.576387],\n\t\t\t\t\t\t\t[-91.746320, 29.574337],\n\t\t\t\t\t\t\t[-91.719102, 29.565568],\n\t\t\t\t\t\t\t[-91.715642, 29.565844],\n\t\t\t\t\t\t\t[-91.712002, 29.564740],\n\t\t\t\t\t\t\t[-91.709205, 29.561012],\n\t\t\t\t\t\t\t[-91.711654, 29.554270],\n\t\t\t\t\t\t\t[-91.733956, 29.539504],\n\t\t\t\t\t\t\t[-91.747058, 29.535144],\n\t\t\t\t\t\t\t[-91.765448, 29.520844],\n\t\t\t\t\t\t\t[-91.771927, 29.504871],\n\t\t\t\t\t\t\t[-91.772529, 29.499016],\n\t\t\t\t\t\t\t[-91.770069, 29.493812],\n\t\t\t\t\t\t\t[-91.770516, 29.488953],\n\t\t\t\t\t\t\t[-91.782387, 29.482882],\n\t\t\t\t\t\t\t[-91.789119, 29.482081],\n\t\t\t\t\t\t\t[-91.800121, 29.486828],\n\t\t\t\t\t\t\t[-91.803448, 29.486851],\n\t\t\t\t\t\t\t[-91.814609, 29.482061],\n\t\t\t\t\t\t\t[-91.821576, 29.473925],\n\t\t\t\t\t\t\t[-91.838500, 29.478874],\n\t\t\t\t\t\t\t[-91.848665, 29.484144],\n\t\t\t\t\t\t\t[-91.852598, 29.494984],\n\t\t\t\t\t\t\t[-91.862324, 29.502393],\n\t\t\t\t\t\t\t[-91.878746, 29.502937],\n\t\t\t\t\t\t\t[-91.886815, 29.505577],\n\t\t\t\t\t\t\t[-91.906175, 29.518052],\n\t\t\t\t\t\t\t[-91.915322, 29.518513],\n\t\t\t\t\t\t\t[-91.947007, 29.533160],\n\t\t\t\t\t\t\t[-91.969312, 29.536893],\n\t\t\t\t\t\t\t[-91.985726, 29.547708],\n\t\t\t\t\t\t\t[-92.026810, 29.566805],\n\t\t\t\t\t\t\t[-92.035462, 29.578640],\n\t\t\t\t\t\t\t[-92.041168, 29.581648],\n\t\t\t\t\t\t\t[-92.038618, 29.585048],\n\t\t\t\t\t\t\t[-92.029150, 29.584432],\n\t\t\t\t\t\t\t[-92.025388, 29.585386],\n\t\t\t\t\t\t\t[-92.019499, 29.592973],\n\t\t\t\t\t\t\t[-92.009765, 29.598395],\n\t\t\t\t\t\t\t[-92.006448, 29.608158],\n\t\t\t\t\t\t\t[-92.000371, 29.613143]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-91.368835, 30.058824],\n\t\t\t\t\t\t\t[-91.224356, 30.025336],\n\t\t\t\t\t\t\t[-91.235889, 30.001128],\n\t\t\t\t\t\t\t[-91.259388, 30.000200],\n\t\t\t\t\t\t\t[-91.255229, 29.971457],\n\t\t\t\t\t\t\t[-91.471951, 29.955989],\n\t\t\t\t\t\t\t[-91.624709, 29.945275],\n\t\t\t\t\t\t\t[-91.711149, 29.846065],\n\t\t\t\t\t\t\t[-91.875637, 29.722316],\n\t\t\t\t\t\t\t[-91.875570, 29.722471],\n\t\t\t\t\t\t\t[-91.875570, 29.728043],\n\t\t\t\t\t\t\t[-91.878355, 29.735007],\n\t\t\t\t\t\t\t[-91.879748, 29.742668],\n\t\t\t\t\t\t\t[-91.878355, 29.751025],\n\t\t\t\t\t\t\t[-91.874761, 29.760083],\n\t\t\t\t\t\t\t[-91.859151, 29.783331],\n\t\t\t\t\t\t\t[-91.854677, 29.807436],\n\t\t\t\t\t\t\t[-91.869998, 29.828328],\n\t\t\t\t\t\t\t[-91.889118, 29.836023],\n\t\t\t\t\t\t\t[-91.906890, 29.830940],\n\t\t\t\t\t\t\t[-91.915989, 29.815654],\n\t\t\t\t\t\t\t[-91.919143, 29.815379],\n\t\t\t\t\t\t\t[-91.940723, 29.817008],\n\t\t\t\t\t\t\t[-91.961230, 29.810221],\n\t\t\t\t\t\t\t[-91.970443, 29.804310],\n\t\t\t\t\t\t\t[-91.990396, 29.970326],\n\t\t\t\t\t\t\t[-91.964458, 30.036918],\n\t\t\t\t\t\t\t[-91.963827, 30.038175],\n\t\t\t\t\t\t\t[-91.962790, 30.041370],\n\t\t\t\t\t\t\t[-91.950998, 30.073213],\n\t\t\t\t\t\t\t[-91.819216, 30.044013],\n\t\t\t\t\t\t\t[-91.765168, 30.108495],\n\t\t\t\t\t\t\t[-91.658886, 30.108226],\n\t\t\t\t\t\t\t[-91.600354, 30.033169],\n\t\t\t\t\t\t\t[-91.368835, 30.058824]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21047\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"047\",\n\t\t\t\t\"NAME\": \"Christian\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 717.503000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.344131, 36.641510],\n\t\t\t\t\t\t[-87.347796, 36.641440],\n\t\t\t\t\t\t[-87.414309, 36.641047],\n\t\t\t\t\t\t[-87.425009, 36.641047],\n\t\t\t\t\t\t[-87.436509, 36.640747],\n\t\t\t\t\t\t[-87.563052, 36.639113],\n\t\t\t\t\t\t[-87.564928, 36.639113],\n\t\t\t\t\t\t[-87.641146, 36.638036],\n\t\t\t\t\t\t[-87.641150, 36.638036],\n\t\t\t\t\t\t[-87.694186, 36.636838],\n\t\t\t\t\t\t[-87.659724, 36.966397],\n\t\t\t\t\t\t[-87.733368, 37.002103],\n\t\t\t\t\t\t[-87.710912, 37.021607],\n\t\t\t\t\t\t[-87.680617, 37.149239],\n\t\t\t\t\t\t[-87.521609, 37.105344],\n\t\t\t\t\t\t[-87.333741, 37.157186],\n\t\t\t\t\t\t[-87.259371, 37.072401],\n\t\t\t\t\t\t[-87.335980, 36.641543],\n\t\t\t\t\t\t[-87.344131, 36.641510]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21055\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"055\",\n\t\t\t\t\"NAME\": \"Crittenden\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 359.952000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.801046, 37.379445],\n\t\t\t\t\t\t[-88.089074, 37.222388],\n\t\t\t\t\t\t[-88.095781, 37.179684],\n\t\t\t\t\t\t[-88.193519, 37.147256],\n\t\t\t\t\t\t[-88.218980, 37.273145],\n\t\t\t\t\t\t[-88.358436, 37.404860],\n\t\t\t\t\t\t[-88.330622, 37.429316],\n\t\t\t\t\t\t[-88.312585, 37.440591],\n\t\t\t\t\t\t[-88.281667, 37.452596],\n\t\t\t\t\t\t[-88.255193, 37.456748],\n\t\t\t\t\t\t[-88.083395, 37.473683],\n\t\t\t\t\t\t[-88.062562, 37.489385],\n\t\t\t\t\t\t[-88.061292, 37.505232],\n\t\t\t\t\t\t[-88.061311, 37.505332],\n\t\t\t\t\t\t[-88.015572, 37.547210],\n\t\t\t\t\t\t[-87.932952, 37.480052],\n\t\t\t\t\t\t[-87.903034, 37.398197],\n\t\t\t\t\t\t[-87.801046, 37.379445]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21059\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"059\",\n\t\t\t\t\"NAME\": \"Daviess\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 458.346000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-87.408547, 37.683563],\n\t\t\t\t\t\t[-87.271608, 37.780120],\n\t\t\t\t\t\t[-87.323402, 37.819239],\n\t\t\t\t\t\t[-87.302324, 37.898445],\n\t\t\t\t\t\t[-87.269561, 37.877155],\n\t\t\t\t\t\t[-87.262930, 37.872846],\n\t\t\t\t\t\t[-87.202240, 37.843791],\n\t\t\t\t\t\t[-87.132621, 37.791008],\n\t\t\t\t\t\t[-87.128749, 37.785728],\n\t\t\t\t\t\t[-87.119229, 37.782848],\n\t\t\t\t\t\t[-87.111133, 37.782512],\n\t\t\t\t\t\t[-87.090636, 37.787808],\n\t\t\t\t\t\t[-87.077404, 37.796209],\n\t\t\t\t\t\t[-87.067836, 37.806065],\n\t\t\t\t\t\t[-87.057836, 37.827457],\n\t\t\t\t\t\t[-87.043854, 37.870796],\n\t\t\t\t\t\t[-87.043407, 37.879940],\n\t\t\t\t\t\t[-87.046237, 37.889866],\n\t\t\t\t\t\t[-87.042249, 37.898291],\n\t\t\t\t\t\t[-87.033444, 37.906593],\n\t\t\t\t\t\t[-87.010315, 37.919668],\n\t\t\t\t\t\t[-86.978957, 37.930200],\n\t\t\t\t\t\t[-86.978830, 37.930214],\n\t\t\t\t\t\t[-86.854035, 37.840811],\n\t\t\t\t\t\t[-86.823429, 37.737754],\n\t\t\t\t\t\t[-86.817514, 37.673814],\n\t\t\t\t\t\t[-86.948760, 37.630548],\n\t\t\t\t\t\t[-87.038260, 37.560803],\n\t\t\t\t\t\t[-87.261610, 37.622009],\n\t\t\t\t\t\t[-87.408547, 37.683563]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21073\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"073\",\n\t\t\t\t\"NAME\": \"Franklin\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 207.747000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-84.740594, 38.352415],\n\t\t\t\t\t\t[-84.739684, 38.338035],\n\t\t\t\t\t\t[-84.730289, 38.208302],\n\t\t\t\t\t\t[-84.725168, 38.195426],\n\t\t\t\t\t\t[-84.864908, 38.116926],\n\t\t\t\t\t\t[-85.023711, 38.129052],\n\t\t\t\t\t\t[-84.997667, 38.335586],\n\t\t\t\t\t\t[-84.870482, 38.356751],\n\t\t\t\t\t\t[-84.740594, 38.352415]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21075\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"075\",\n\t\t\t\t\"NAME\": \"Fulton\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 205.504000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-89.539100, 36.498201],\n\t\t\t\t\t\t\t[-89.560344, 36.525436],\n\t\t\t\t\t\t\t[-89.570071, 36.544387],\n\t\t\t\t\t\t\t[-89.571509, 36.552569],\n\t\t\t\t\t\t\t[-89.566817, 36.564216],\n\t\t\t\t\t\t\t[-89.552640, 36.577178],\n\t\t\t\t\t\t\t[-89.546113, 36.579989],\n\t\t\t\t\t\t\t[-89.527583, 36.581147],\n\t\t\t\t\t\t\t[-89.500076, 36.576305],\n\t\t\t\t\t\t\t[-89.484836, 36.571821],\n\t\t\t\t\t\t\t[-89.479093, 36.568206],\n\t\t\t\t\t\t\t[-89.473341, 36.559918],\n\t\t\t\t\t\t\t[-89.467761, 36.546847],\n\t\t\t\t\t\t\t[-89.465445, 36.536163],\n\t\t\t\t\t\t\t[-89.465888, 36.529946],\n\t\t\t\t\t\t\t[-89.472460, 36.513741],\n\t\t\t\t\t\t\t[-89.485106, 36.497692],\n\t\t\t\t\t\t\t[-89.492537, 36.497775],\n\t\t\t\t\t\t\t[-89.498036, 36.497887],\n\t\t\t\t\t\t\t[-89.539100, 36.498201]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-88.834866, 36.502911],\n\t\t\t\t\t\t\t[-88.874725, 36.502446],\n\t\t\t\t\t\t\t[-88.964471, 36.502191],\n\t\t\t\t\t\t\t[-89.000063, 36.502633],\n\t\t\t\t\t\t\t[-89.006825, 36.502684],\n\t\t\t\t\t\t\t[-89.010439, 36.502710],\n\t\t\t\t\t\t\t[-89.034649, 36.502964],\n\t\t\t\t\t\t\t[-89.058871, 36.503157],\n\t\t\t\t\t\t\t[-89.072118, 36.503249],\n\t\t\t\t\t\t\t[-89.090146, 36.503392],\n\t\t\t\t\t\t\t[-89.117537, 36.503603],\n\t\t\t\t\t\t\t[-89.119805, 36.503647],\n\t\t\t\t\t\t\t[-89.163224, 36.504522],\n\t\t\t\t\t\t\t[-89.163429, 36.504526],\n\t\t\t\t\t\t\t[-89.211409, 36.505630],\n\t\t\t\t\t\t\t[-89.279091, 36.506511],\n\t\t\t\t\t\t\t[-89.282298, 36.506782],\n\t\t\t\t\t\t\t[-89.346053, 36.503210],\n\t\t\t\t\t\t\t[-89.346056, 36.503210],\n\t\t\t\t\t\t\t[-89.356593, 36.502195],\n\t\t\t\t\t\t\t[-89.380085, 36.500416],\n\t\t\t\t\t\t\t[-89.381792, 36.500062],\n\t\t\t\t\t\t\t[-89.403913, 36.499141],\n\t\t\t\t\t\t\t[-89.417293, 36.499033],\n\t\t\t\t\t\t\t[-89.400581, 36.538337],\n\t\t\t\t\t\t\t[-89.388140, 36.573416],\n\t\t\t\t\t\t\t[-89.376367, 36.613868],\n\t\t\t\t\t\t\t[-89.365548, 36.625059],\n\t\t\t\t\t\t\t[-89.343753, 36.630991],\n\t\t\t\t\t\t\t[-89.327578, 36.632127],\n\t\t\t\t\t\t\t[-89.326731, 36.632186],\n\t\t\t\t\t\t\t[-89.313405, 36.620120],\n\t\t\t\t\t\t\t[-89.294637, 36.593729],\n\t\t\t\t\t\t\t[-89.271710, 36.571387],\n\t\t\t\t\t\t\t[-89.259994, 36.565149],\n\t\t\t\t\t\t\t[-89.236542, 36.566824],\n\t\t\t\t\t\t\t[-89.227319, 36.569375],\n\t\t\t\t\t\t\t[-89.213563, 36.580119],\n\t\t\t\t\t\t\t[-89.202607, 36.601576],\n\t\t\t\t\t\t\t[-89.200902, 36.618177],\n\t\t\t\t\t\t\t[-89.197654, 36.628936],\n\t\t\t\t\t\t\t[-89.187749, 36.641115],\n\t\t\t\t\t\t\t[-89.174741, 36.650416],\n\t\t\t\t\t\t\t[-89.174733, 36.650476],\n\t\t\t\t\t\t\t[-89.026629, 36.592124],\n\t\t\t\t\t\t\t[-88.903480, 36.576864],\n\t\t\t\t\t\t\t[-88.834866, 36.502911]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21089\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"089\",\n\t\t\t\t\"NAME\": \"Greenup\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 344.397000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-83.030889, 38.725560],\n\t\t\t\t\t\t[-83.030702, 38.725720],\n\t\t\t\t\t\t[-83.011816, 38.730057],\n\t\t\t\t\t\t[-82.979395, 38.725976],\n\t\t\t\t\t\t[-82.968695, 38.728776],\n\t\t\t\t\t\t[-82.943147, 38.743280],\n\t\t\t\t\t\t[-82.923694, 38.750076],\n\t\t\t\t\t\t[-82.894193, 38.756576],\n\t\t\t\t\t\t[-82.889193, 38.756076],\n\t\t\t\t\t\t[-82.879492, 38.751476],\n\t\t\t\t\t\t[-82.875492, 38.747276],\n\t\t\t\t\t\t[-82.874466, 38.745346],\n\t\t\t\t\t\t[-82.871292, 38.739376],\n\t\t\t\t\t\t[-82.869992, 38.730477],\n\t\t\t\t\t\t[-82.870392, 38.722077],\n\t\t\t\t\t\t[-82.873492, 38.710077],\n\t\t\t\t\t\t[-82.869592, 38.678177],\n\t\t\t\t\t\t[-82.853554, 38.610926],\n\t\t\t\t\t\t[-82.847186, 38.595166],\n\t\t\t\t\t\t[-82.839538, 38.586159],\n\t\t\t\t\t\t[-82.820161, 38.572703],\n\t\t\t\t\t\t[-82.816012, 38.570733],\n\t\t\t\t\t\t[-82.800112, 38.563183],\n\t\t\t\t\t\t[-82.789776, 38.559951],\n\t\t\t\t\t\t[-82.730958, 38.559264],\n\t\t\t\t\t\t[-82.724846, 38.557600],\n\t\t\t\t\t\t[-82.696621, 38.542112],\n\t\t\t\t\t\t[-82.690509, 38.536576],\n\t\t\t\t\t\t[-82.665548, 38.505808],\n\t\t\t\t\t\t[-82.665485, 38.505734],\n\t\t\t\t\t\t[-82.817454, 38.373935],\n\t\t\t\t\t\t[-82.978590, 38.398857],\n\t\t\t\t\t\t[-83.051751, 38.465404],\n\t\t\t\t\t\t[-83.166419, 38.503965],\n\t\t\t\t\t\t[-83.071005, 38.595200],\n\t\t\t\t\t\t[-83.030889, 38.725560]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US21095\",\n\t\t\t\t\"STATE\": \"21\",\n\t\t\t\t\"COUNTY\": \"095\",\n\t\t\t\t\"NAME\": \"Harlan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 465.828000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-82.869183, 36.974183],\n\t\t\t\t\t\t[-82.869183, 36.974182],\n\t\t\t\t\t\t[-82.870274, 36.965993],\n\t\t\t\t\t\t[-82.870230, 36.965498],\n\t\t\t\t\t\t[-82.867358, 36.963182],\n\t\t\t\t\t\t[-82.865404, 36.958084],\n\t\t\t\t\t\t[-82.864211, 36.957983],\n\t\t\t\t\t\t[-82.862866, 36.957765],\n\t\t\t\t\t\t[-82.860534, 36.956015],\n\t\t\t\t\t\t[-82.858443, 36.954036],\n\t\t\t\t\t\t[-82.855705, 36.953808],\n\t\t\t\t\t\t[-82.856099, 36.952471],\n\t\t\t\t\t\t[-82.860633, 36.945840],\n\t\t\t\t\t\t[-82.861282, 36.944848],\n\t\t\t\t\t\t[-82.861684, 36.939316],\n\t\t\t\t\t\t[-82.860537, 36.937439],\n\t\t\t\t\t\t[-82.858784, 36.933065],\n\t\t\t\t\t\t[-82.858461, 36.932717],\n\t\t\t\t\t\t[-82.861943, 36.924236],\n\t\t\t\t\t\t[-82.863468, 36.922308],\n\t\t\t\t\t\t[-82.872136, 36.913456],\n\t\t\t\t\t\t[-82.873777, 36.912299],\n\t\t\t\t\t\t[-82.885618, 36.900415],\n\t\t\t\t\t\t[-82.911690, 36.874248],\n\t\t\t\t\t\t[-82.911824, 36.874243],\n\t\t\t\t\t\t[-82.973395, 36.859097],\n\t\t\t\t\t\t[-83.072590, 36.854589],\n\t\t\t\t\t\t[-83.099792, 36.824889],\n\t\t\t\t\t\t[-83.131694, 36.781488],\n\t\t\t\t\t\t[-83.131245, 36.767105],\n\t\t\t\t\t\t[-83.125655, 36.761407],\n\t\t\t\t\t\t[-83.125728, 36.761276],\n\t\t\t\t\t\t[-83.127833, 36.750828],\n\t\t\t\t\t\t[-83.136395, 36.743088],\n\t\t\t\t\t\t[-83.167396, 36.739187],\n\t\t\t\t\t\t[-83.199698, 36.737487],\n\t\t\t\t\t\t[-83.342804, 36.701286],\n\t\t\t\t\t\t[-83.353613, 36.696699],\n\t\t\t\t\t\t[-83.354606, 36.696153],\n\t\t\t\t\t\t[-83.460808, 36.664885],\n\t\t\t\t\t\t[-83.461013, 36.664916],\n\t\t\t\t\t\t[-83.511729, 36.807362],\n\t\t\t\t\t\t[-83.489813, 36.895413],\n\t\t\t\t\t\t[-83.260020, 36.968951],\n\t\t\t\t\t\t[-83.182104, 37.021115],\n\t\t\t\t\t\t[-83.171706, 37.017192],\n\t\t\t\t\t\t[-83.160825, 37.020739],\n\t\t\t\t\t\t[-83.160106, 37.013859],\n\t\t\t\t\t\t[-83.144352, 37.013705],\n\t\t\t\t\t\t[-83.136701, 37.004150],\n\t\t\t\t\t\t[-83.124334, 37.005722],\n\t\t\t\t\t\t[-83.122090, 37.000997],\n\t\t\t\t\t\t[-83.150402, 36.954163],\n\t\t\t\t\t\t[-82.939466, 37.015520],\n\t\t\t\t\t\t[-82.869183, 36.974183]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US55137\",\n\t\t\t\t\"STATE\": \"55\",\n\t\t\t\t\"COUNTY\": \"137\",\n\t\t\t\t\"NAME\": \"Waushara\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 626.153000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-88.886673, 44.242622],\n\t\t\t\t\t\t[-88.886193, 43.983233],\n\t\t\t\t\t\t[-89.168612, 43.982834],\n\t\t\t\t\t\t[-89.597950, 43.982100],\n\t\t\t\t\t\t[-89.597980, 44.245725],\n\t\t\t\t\t\t[-89.224892, 44.243546],\n\t\t\t\t\t\t[-88.886673, 44.242622]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US56001\",\n\t\t\t\t\"STATE\": \"56\",\n\t\t\t\t\"COUNTY\": \"001\",\n\t\t\t\t\"NAME\": \"Albany\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 4273.840000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-105.283910, 42.431402],\n\t\t\t\t\t\t[-105.273750, 42.088824],\n\t\t\t\t\t\t[-105.278236, 41.656655],\n\t\t\t\t\t\t[-105.276860, 40.998173],\n\t\t\t\t\t\t[-105.277138, 40.998173],\n\t\t\t\t\t\t[-105.724804, 40.996910],\n\t\t\t\t\t\t[-105.730421, 40.996886],\n\t\t\t\t\t\t[-106.061181, 40.996999],\n\t\t\t\t\t\t[-106.190550, 40.998056],\n\t\t\t\t\t\t[-106.321165, 40.999123],\n\t\t\t\t\t\t[-106.322885, 41.395141],\n\t\t\t\t\t\t[-106.068406, 41.395028],\n\t\t\t\t\t\t[-106.074922, 42.126407],\n\t\t\t\t\t\t[-106.073403, 42.433236],\n\t\t\t\t\t\t[-105.556042, 42.430583],\n\t\t\t\t\t\t[-105.613865, 42.304455],\n\t\t\t\t\t\t[-105.375541, 42.290139],\n\t\t\t\t\t\t[-105.332638, 42.431106],\n\t\t\t\t\t\t[-105.283910, 42.431402]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US56007\",\n\t\t\t\t\"STATE\": \"56\",\n\t\t\t\t\"COUNTY\": \"007\",\n\t\t\t\t\"NAME\": \"Carbon\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 7897.578000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-107.000606, 41.003444],\n\t\t\t\t\t\t[-107.317794, 41.002957],\n\t\t\t\t\t\t[-107.918421, 41.002036],\n\t\t\t\t\t\t[-107.929736, 41.659596],\n\t\t\t\t\t\t[-107.509720, 41.657452],\n\t\t\t\t\t\t[-107.503821, 42.087957],\n\t\t\t\t\t\t[-107.522722, 42.261756],\n\t\t\t\t\t\t[-107.522923, 42.434356],\n\t\t\t\t\t\t[-106.654781, 42.431094],\n\t\t\t\t\t\t[-106.075852, 42.433218],\n\t\t\t\t\t\t[-106.073403, 42.433236],\n\t\t\t\t\t\t[-106.074922, 42.126407],\n\t\t\t\t\t\t[-106.068406, 41.395028],\n\t\t\t\t\t\t[-106.322885, 41.395141],\n\t\t\t\t\t\t[-106.321165, 40.999123],\n\t\t\t\t\t\t[-106.386356, 41.001144],\n\t\t\t\t\t\t[-106.391852, 41.001176],\n\t\t\t\t\t\t[-106.430950, 41.001752],\n\t\t\t\t\t\t[-106.437419, 41.001795],\n\t\t\t\t\t\t[-106.439563, 41.001978],\n\t\t\t\t\t\t[-106.453859, 41.002057],\n\t\t\t\t\t\t[-106.857772, 41.003082],\n\t\t\t\t\t\t[-107.000606, 41.003444]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US56011\",\n\t\t\t\t\"STATE\": \"56\",\n\t\t\t\t\"COUNTY\": \"011\",\n\t\t\t\t\"NAME\": \"Crook\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2854.408000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-104.055810, 44.691343],\n\t\t\t\t\t\t[-104.055877, 44.571016],\n\t\t\t\t\t\t[-104.055892, 44.543341],\n\t\t\t\t\t\t[-104.055927, 44.517730],\n\t\t\t\t\t\t[-104.054487, 44.180381],\n\t\t\t\t\t\t[-105.079281, 44.176182],\n\t\t\t\t\t\t[-105.082181, 44.176175],\n\t\t\t\t\t\t[-105.076607, 45.000347],\n\t\t\t\t\t\t[-105.038405, 45.000345],\n\t\t\t\t\t\t[-105.025266, 45.000290],\n\t\t\t\t\t\t[-105.019284, 45.000329],\n\t\t\t\t\t\t[-105.018240, 45.000437],\n\t\t\t\t\t\t[-104.765063, 44.999183],\n\t\t\t\t\t\t[-104.759855, 44.999066],\n\t\t\t\t\t\t[-104.665171, 44.998618],\n\t\t\t\t\t\t[-104.663882, 44.998869],\n\t\t\t\t\t\t[-104.470422, 44.998453],\n\t\t\t\t\t\t[-104.470117, 44.998453],\n\t\t\t\t\t\t[-104.057698, 44.997431],\n\t\t\t\t\t\t[-104.055963, 44.768236],\n\t\t\t\t\t\t[-104.055963, 44.767962],\n\t\t\t\t\t\t[-104.055934, 44.723720],\n\t\t\t\t\t\t[-104.055870, 44.723422],\n\t\t\t\t\t\t[-104.055777, 44.700466],\n\t\t\t\t\t\t[-104.055938, 44.693881],\n\t\t\t\t\t\t[-104.055810, 44.691343]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US56013\",\n\t\t\t\t\"STATE\": \"56\",\n\t\t\t\t\"COUNTY\": \"013\",\n\t\t\t\t\"NAME\": \"Fremont\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 9183.814000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-109.043864, 42.263684],\n\t\t\t\t\t\t[-109.043801, 42.433644],\n\t\t\t\t\t\t[-109.069477, 42.433477],\n\t\t\t\t\t\t[-109.072851, 42.693514],\n\t\t\t\t\t\t[-109.315360, 42.856131],\n\t\t\t\t\t\t[-109.370658, 42.945728],\n\t\t\t\t\t\t[-109.552579, 43.012538],\n\t\t\t\t\t\t[-109.560451, 43.083538],\n\t\t\t\t\t\t[-109.651451, 43.167036],\n\t\t\t\t\t\t[-109.692716, 43.265030],\n\t\t\t\t\t\t[-109.694942, 43.366152],\n\t\t\t\t\t\t[-109.754462, 43.365905],\n\t\t\t\t\t\t[-109.754717, 43.463200],\n\t\t\t\t\t\t[-110.051570, 43.464783],\n\t\t\t\t\t\t[-110.053179, 44.008022],\n\t\t\t\t\t\t[-109.990073, 43.949066],\n\t\t\t\t\t\t[-109.858754, 43.957988],\n\t\t\t\t\t\t[-109.816179, 43.881974],\n\t\t\t\t\t\t[-109.843455, 43.819864],\n\t\t\t\t\t\t[-109.789900, 43.803252],\n\t\t\t\t\t\t[-109.665893, 43.845726],\n\t\t\t\t\t\t[-109.641808, 43.922785],\n\t\t\t\t\t\t[-109.542332, 43.961352],\n\t\t\t\t\t\t[-109.312949, 43.813293],\n\t\t\t\t\t\t[-109.171448, 43.699198],\n\t\t\t\t\t\t[-109.171638, 43.619764],\n\t\t\t\t\t\t[-108.934141, 43.619163],\n\t\t\t\t\t\t[-108.814276, 43.605255],\n\t\t\t\t\t\t[-108.814276, 43.575555],\n\t\t\t\t\t\t[-108.694672, 43.575755],\n\t\t\t\t\t\t[-108.695072, 43.532255],\n\t\t\t\t\t\t[-108.576167, 43.532556],\n\t\t\t\t\t\t[-108.576167, 43.503256],\n\t\t\t\t\t\t[-108.456962, 43.503156],\n\t\t\t\t\t\t[-108.456973, 43.474279],\n\t\t\t\t\t\t[-108.337861, 43.459765],\n\t\t\t\t\t\t[-107.595137, 43.472279],\n\t\t\t\t\t\t[-107.595105, 43.501397],\n\t\t\t\t\t\t[-107.534897, 43.501362],\n\t\t\t\t\t\t[-107.535032, 43.472759],\n\t\t\t\t\t\t[-107.517031, 43.472659],\n\t\t\t\t\t\t[-107.516728, 43.127960],\n\t\t\t\t\t\t[-107.502327, 43.128060],\n\t\t\t\t\t\t[-107.501425, 42.781458],\n\t\t\t\t\t\t[-107.543526, 42.781558],\n\t\t\t\t\t\t[-107.542025, 42.434356],\n\t\t\t\t\t\t[-107.522923, 42.434356],\n\t\t\t\t\t\t[-107.522722, 42.261756],\n\t\t\t\t\t\t[-108.375655, 42.263672],\n\t\t\t\t\t\t[-109.043864, 42.263684]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US56021\",\n\t\t\t\t\"STATE\": \"56\",\n\t\t\t\t\"COUNTY\": \"021\",\n\t\t\t\t\"NAME\": \"Laramie\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 2685.912000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-104.653338, 41.653007],\n\t\t\t\t\t\t[-104.652992, 41.565014],\n\t\t\t\t\t\t[-104.052540, 41.564274],\n\t\t\t\t\t\t[-104.052531, 41.552723],\n\t\t\t\t\t\t[-104.052584, 41.552650],\n\t\t\t\t\t\t[-104.052692, 41.541154],\n\t\t\t\t\t\t[-104.052686, 41.539111],\n\t\t\t\t\t\t[-104.052476, 41.522343],\n\t\t\t\t\t\t[-104.052478, 41.515754],\n\t\t\t\t\t\t[-104.052340, 41.417865],\n\t\t\t\t\t\t[-104.052160, 41.407662],\n\t\t\t\t\t\t[-104.052287, 41.393307],\n\t\t\t\t\t\t[-104.052287, 41.393214],\n\t\t\t\t\t\t[-104.052324, 41.321144],\n\t\t\t\t\t\t[-104.052476, 41.320961],\n\t\t\t\t\t\t[-104.052568, 41.316202],\n\t\t\t\t\t\t[-104.052453, 41.278202],\n\t\t\t\t\t\t[-104.052574, 41.278019],\n\t\t\t\t\t\t[-104.052666, 41.275251],\n\t\t\t\t\t\t[-104.053142, 41.114457],\n\t\t\t\t\t\t[-104.053083, 41.104985],\n\t\t\t\t\t\t[-104.053025, 41.090274],\n\t\t\t\t\t\t[-104.053177, 41.089725],\n\t\t\t\t\t\t[-104.053097, 41.018045],\n\t\t\t\t\t\t[-104.053158, 41.016809],\n\t\t\t\t\t\t[-104.053249, 41.001406],\n\t\t\t\t\t\t[-104.066961, 41.001504],\n\t\t\t\t\t\t[-104.086068, 41.001563],\n\t\t\t\t\t\t[-104.104590, 41.001543],\n\t\t\t\t\t\t[-104.123586, 41.001626],\n\t\t\t\t\t\t[-104.211473, 41.001591],\n\t\t\t\t\t\t[-104.214191, 41.001568],\n\t\t\t\t\t\t[-104.214692, 41.001657],\n\t\t\t\t\t\t[-104.497058, 41.001805],\n\t\t\t\t\t\t[-104.497149, 41.001828],\n\t\t\t\t\t\t[-104.882452, 40.998186],\n\t\t\t\t\t\t[-104.943371, 40.998190],\n\t\t\t\t\t\t[-105.254779, 40.998210],\n\t\t\t\t\t\t[-105.256527, 40.998191],\n\t\t\t\t\t\t[-105.276860, 40.998173],\n\t\t\t\t\t\t[-105.278236, 41.656655],\n\t\t\t\t\t\t[-104.653338, 41.653007]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54031\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"031\",\n\t\t\t\t\"NAME\": \"Hardy\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 582.312000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.571901, 39.031995],\n\t\t\t\t\t\t[-78.565837, 39.026303],\n\t\t\t\t\t\t[-78.554222, 39.019672],\n\t\t\t\t\t\t[-78.557647, 39.013189],\n\t\t\t\t\t\t[-78.601655, 38.964603],\n\t\t\t\t\t\t[-78.710949, 38.910175],\n\t\t\t\t\t\t[-78.714135, 38.911176],\n\t\t\t\t\t\t[-78.716956, 38.916273],\n\t\t\t\t\t\t[-78.719755, 38.922135],\n\t\t\t\t\t\t[-78.719806, 38.922638],\n\t\t\t\t\t\t[-78.757278, 38.903203],\n\t\t\t\t\t\t[-78.779198, 38.892298],\n\t\t\t\t\t\t[-78.788031, 38.885123],\n\t\t\t\t\t\t[-78.808181, 38.856175],\n\t\t\t\t\t\t[-78.835191, 38.811499],\n\t\t\t\t\t\t[-78.869276, 38.762991],\n\t\t\t\t\t\t[-78.993997, 38.850102],\n\t\t\t\t\t\t[-78.999752, 38.846162],\n\t\t\t\t\t\t[-79.055354, 38.782213],\n\t\t\t\t\t\t[-79.057253, 38.761413],\n\t\t\t\t\t\t[-79.134296, 38.813340],\n\t\t\t\t\t\t[-79.045953, 38.928710],\n\t\t\t\t\t\t[-79.089655, 39.038208],\n\t\t\t\t\t\t[-78.979898, 39.237624],\n\t\t\t\t\t\t[-78.899695, 39.199137],\n\t\t\t\t\t\t[-78.508132, 39.088630],\n\t\t\t\t\t\t[-78.544111, 39.056676],\n\t\t\t\t\t\t[-78.571901, 39.031995]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54035\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"035\",\n\t\t\t\t\"NAME\": \"Jackson\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 464.348000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.522166, 38.612746],\n\t\t\t\t\t\t[-81.632836, 38.554370],\n\t\t\t\t\t\t[-81.696348, 38.626427],\n\t\t\t\t\t\t[-81.747683, 38.684134],\n\t\t\t\t\t\t[-81.772843, 38.680843],\n\t\t\t\t\t\t[-81.908645, 38.878460],\n\t\t\t\t\t\t[-81.874857, 38.881174],\n\t\t\t\t\t\t[-81.759995, 38.925828],\n\t\t\t\t\t\t[-81.756131, 38.933545],\n\t\t\t\t\t\t[-81.764253, 39.015279],\n\t\t\t\t\t\t[-81.772854, 39.026179],\n\t\t\t\t\t\t[-81.793304, 39.040353],\n\t\t\t\t\t\t[-81.803355, 39.047678],\n\t\t\t\t\t\t[-81.811655, 39.059578],\n\t\t\t\t\t\t[-81.814155, 39.073478],\n\t\t\t\t\t\t[-81.812355, 39.082078],\n\t\t\t\t\t\t[-81.747253, 39.095378],\n\t\t\t\t\t\t[-81.747253, 39.095379],\n\t\t\t\t\t\t[-81.581447, 39.026179],\n\t\t\t\t\t\t[-81.502628, 38.917922],\n\t\t\t\t\t\t[-81.546631, 38.672387],\n\t\t\t\t\t\t[-81.522166, 38.612746]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US54041\",\n\t\t\t\t\"STATE\": \"54\",\n\t\t\t\t\"COUNTY\": \"041\",\n\t\t\t\t\"NAME\": \"Lewis\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 384.895000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-80.457332, 38.739169],\n\t\t\t\t\t\t[-80.446148, 38.777514],\n\t\t\t\t\t\t[-80.605799, 38.904167],\n\t\t\t\t\t\t[-80.716815, 39.008430],\n\t\t\t\t\t\t[-80.728326, 39.095679],\n\t\t\t\t\t\t[-80.596126, 39.167069],\n\t\t\t\t\t\t[-80.300209, 39.103857],\n\t\t\t\t\t\t[-80.317486, 38.958647],\n\t\t\t\t\t\t[-80.386989, 38.874808],\n\t\t\t\t\t\t[-80.393063, 38.727571],\n\t\t\t\t\t\t[-80.404748, 38.723439],\n\t\t\t\t\t\t[-80.426641, 38.731004],\n\t\t\t\t\t\t[-80.444673, 38.726729],\n\t\t\t\t\t\t[-80.457332, 38.739169]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US50027\",\n\t\t\t\t\"STATE\": \"50\",\n\t\t\t\t\"COUNTY\": \"027\",\n\t\t\t\t\"NAME\": \"Windsor\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 969.337000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-72.771543, 43.477862],\n\t\t\t\t\t\t[-72.791070, 43.495000],\n\t\t\t\t\t\t[-72.700945, 43.682831],\n\t\t\t\t\t\t[-72.837188, 43.719878],\n\t\t\t\t\t\t[-72.874552, 43.858131],\n\t\t\t\t\t\t[-72.958853, 43.826542],\n\t\t\t\t\t\t[-72.980158, 43.882587],\n\t\t\t\t\t\t[-72.791336, 43.961855],\n\t\t\t\t\t\t[-72.783208, 43.928967],\n\t\t\t\t\t\t[-72.574443, 43.873348],\n\t\t\t\t\t\t[-72.499473, 43.850398],\n\t\t\t\t\t\t[-72.499030, 43.850224],\n\t\t\t\t\t\t[-72.460132, 43.838291],\n\t\t\t\t\t\t[-72.207259, 43.771812],\n\t\t\t\t\t\t[-72.205717, 43.771143],\n\t\t\t\t\t\t[-72.232713, 43.748286],\n\t\t\t\t\t\t[-72.264245, 43.734158],\n\t\t\t\t\t\t[-72.271180, 43.734138],\n\t\t\t\t\t\t[-72.302867, 43.702718],\n\t\t\t\t\t\t[-72.329660, 43.634648],\n\t\t\t\t\t\t[-72.334401, 43.619250],\n\t\t\t\t\t\t[-72.334745, 43.614519],\n\t\t\t\t\t\t[-72.329620, 43.600201],\n\t\t\t\t\t\t[-72.395825, 43.520560],\n\t\t\t\t\t\t[-72.387642, 43.502481],\n\t\t\t\t\t\t[-72.387852, 43.471567],\n\t\t\t\t\t\t[-72.396934, 43.428990],\n\t\t\t\t\t\t[-72.396948, 43.428925],\n\t\t\t\t\t\t[-72.405253, 43.389992],\n\t\t\t\t\t\t[-72.403949, 43.358098],\n\t\t\t\t\t\t[-72.400511, 43.337073],\n\t\t\t\t\t\t[-72.397150, 43.316515],\n\t\t\t\t\t\t[-72.431187, 43.231786],\n\t\t\t\t\t\t[-72.685637, 43.222495],\n\t\t\t\t\t\t[-72.819368, 43.255498],\n\t\t\t\t\t\t[-72.819900, 43.299210],\n\t\t\t\t\t\t[-72.867902, 43.300742],\n\t\t\t\t\t\t[-72.853439, 43.371076],\n\t\t\t\t\t\t[-72.759799, 43.354144],\n\t\t\t\t\t\t[-72.727184, 43.468717],\n\t\t\t\t\t\t[-72.771543, 43.477862]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51001\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"001\",\n\t\t\t\t\"NAME\": \"Accomack\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 449.496000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"MultiPolygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-75.242266, 38.027209],\n\t\t\t\t\t\t\t[-75.296871, 37.959043],\n\t\t\t\t\t\t\t[-75.319335, 37.922484],\n\t\t\t\t\t\t\t[-75.334296, 37.893477],\n\t\t\t\t\t\t\t[-75.349338, 37.873143],\n\t\t\t\t\t\t\t[-75.359036, 37.864143],\n\t\t\t\t\t\t\t[-75.366830, 37.859446],\n\t\t\t\t\t\t\t[-75.374642, 37.859454],\n\t\t\t\t\t\t\t[-75.392008, 37.867738],\n\t\t\t\t\t\t\t[-75.400540, 37.874865],\n\t\t\t\t\t\t\t[-75.428956, 37.875305],\n\t\t\t\t\t\t\t[-75.437868, 37.872324],\n\t\t\t\t\t\t\t[-75.452681, 37.863510],\n\t\t\t\t\t\t\t[-75.467951, 37.851328],\n\t\t\t\t\t\t\t[-75.487485, 37.832136],\n\t\t\t\t\t\t\t[-75.514921, 37.799149],\n\t\t\t\t\t\t\t[-75.548082, 37.742383],\n\t\t\t\t\t\t\t[-75.556868, 37.724410],\n\t\t\t\t\t\t\t[-75.572464, 37.701565],\n\t\t\t\t\t\t\t[-75.581333, 37.683593],\n\t\t\t\t\t\t\t[-75.586136, 37.660653],\n\t\t\t\t\t\t\t[-75.603220, 37.620243],\n\t\t\t\t\t\t\t[-75.610808, 37.605909],\n\t\t\t\t\t\t\t[-75.612237, 37.585602],\n\t\t\t\t\t\t\t[-75.608123, 37.578018],\n\t\t\t\t\t\t\t[-75.595716, 37.576657],\n\t\t\t\t\t\t\t[-75.594044, 37.569698],\n\t\t\t\t\t\t\t[-75.606720, 37.557170],\n\t\t\t\t\t\t\t[-75.633370, 37.522140],\n\t\t\t\t\t\t\t[-75.666178, 37.472124],\n\t\t\t\t\t\t\t[-75.665500, 37.467319],\n\t\t\t\t\t\t\t[-75.713275, 37.449876],\n\t\t\t\t\t\t\t[-75.763912, 37.463308],\n\t\t\t\t\t\t\t[-75.776564, 37.454589],\n\t\t\t\t\t\t\t[-75.809357, 37.465923],\n\t\t\t\t\t\t\t[-75.788012, 37.528816],\n\t\t\t\t\t\t\t[-75.835214, 37.554245],\n\t\t\t\t\t\t\t[-75.884455, 37.549542],\n\t\t\t\t\t\t\t[-75.900410, 37.557265],\n\t\t\t\t\t\t\t[-75.937665, 37.549652],\n\t\t\t\t\t\t\t[-75.937299, 37.551729],\n\t\t\t\t\t\t\t[-75.941153, 37.558436],\n\t\t\t\t\t\t\t[-75.941182, 37.563839],\n\t\t\t\t\t\t\t[-75.924756, 37.600215],\n\t\t\t\t\t\t\t[-75.909586, 37.622671],\n\t\t\t\t\t\t\t[-75.877059, 37.660641],\n\t\t\t\t\t\t\t[-75.868481, 37.668224],\n\t\t\t\t\t\t\t[-75.869523, 37.674356],\n\t\t\t\t\t\t\t[-75.868355, 37.687609],\n\t\t\t\t\t\t\t[-75.859262, 37.703111],\n\t\t\t\t\t\t\t[-75.845579, 37.707993],\n\t\t\t\t\t\t\t[-75.837685, 37.712985],\n\t\t\t\t\t\t\t[-75.830773, 37.725486],\n\t\t\t\t\t\t\t[-75.831438, 37.731690],\n\t\t\t\t\t\t\t[-75.827922, 37.737986],\n\t\t\t\t\t\t\t[-75.824810, 37.741671],\n\t\t\t\t\t\t\t[-75.812155, 37.749502],\n\t\t\t\t\t\t\t[-75.803041, 37.762464],\n\t\t\t\t\t\t\t[-75.812125, 37.776589],\n\t\t\t\t\t\t\t[-75.818125, 37.791698],\n\t\t\t\t\t\t\t[-75.793399, 37.804493],\n\t\t\t\t\t\t\t[-75.784599, 37.806826],\n\t\t\t\t\t\t\t[-75.770607, 37.804602],\n\t\t\t\t\t\t\t[-75.743097, 37.806656],\n\t\t\t\t\t\t\t[-75.735880, 37.816561],\n\t\t\t\t\t\t\t[-75.723224, 37.820124],\n\t\t\t\t\t\t\t[-75.716590, 37.826696],\n\t\t\t\t\t\t\t[-75.714487, 37.837777],\n\t\t\t\t\t\t\t[-75.709114, 37.847700],\n\t\t\t\t\t\t\t[-75.702914, 37.849659],\n\t\t\t\t\t\t\t[-75.689837, 37.861817],\n\t\t\t\t\t\t\t[-75.685293, 37.873341],\n\t\t\t\t\t\t\t[-75.687584, 37.886340],\n\t\t\t\t\t\t\t[-75.709626, 37.900622],\n\t\t\t\t\t\t\t[-75.720490, 37.901926],\n\t\t\t\t\t\t\t[-75.724505, 37.900184],\n\t\t\t\t\t\t\t[-75.726699, 37.897299],\n\t\t\t\t\t\t\t[-75.753048, 37.896605],\n\t\t\t\t\t\t\t[-75.758796, 37.897615],\n\t\t\t\t\t\t\t[-75.759835, 37.899333],\n\t\t\t\t\t\t\t[-75.757694, 37.903912],\n\t\t\t\t\t\t\t[-75.712065, 37.936082],\n\t\t\t\t\t\t\t[-75.704318, 37.929010],\n\t\t\t\t\t\t\t[-75.693942, 37.930362],\n\t\t\t\t\t\t\t[-75.669711, 37.950796],\n\t\t\t\t\t\t\t[-75.660956, 37.959174],\n\t\t\t\t\t\t\t[-75.646507, 37.973000],\n\t\t\t\t\t\t\t[-75.646289, 37.973209],\n\t\t\t\t\t\t\t[-75.645251, 37.974202],\n\t\t\t\t\t\t\t[-75.645096, 37.974350],\n\t\t\t\t\t\t\t[-75.644665, 37.974763],\n\t\t\t\t\t\t\t[-75.644591, 37.974833],\n\t\t\t\t\t\t\t[-75.644545, 37.974877],\n\t\t\t\t\t\t\t[-75.639786, 37.979432],\n\t\t\t\t\t\t\t[-75.635502, 37.983531],\n\t\t\t\t\t\t\t[-75.630222, 37.988584],\n\t\t\t\t\t\t\t[-75.626129, 37.992500],\n\t\t\t\t\t\t\t[-75.624341, 37.994211],\n\t\t\t\t\t\t\t[-75.435956, 38.010282],\n\t\t\t\t\t\t\t[-75.428810, 38.010854],\n\t\t\t\t\t\t\t[-75.398839, 38.013277],\n\t\t\t\t\t\t\t[-75.377851, 38.015145],\n\t\t\t\t\t\t\t[-75.263779, 38.025295],\n\t\t\t\t\t\t\t[-75.262088, 38.025445],\n\t\t\t\t\t\t\t[-75.260635, 38.025574],\n\t\t\t\t\t\t\t[-75.256076, 38.025980],\n\t\t\t\t\t\t\t[-75.250358, 38.026489],\n\t\t\t\t\t\t\t[-75.242296, 38.027206],\n\t\t\t\t\t\t\t[-75.242266, 38.027209]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-75.973607, 37.835817],\n\t\t\t\t\t\t\t[-75.971705, 37.830928],\n\t\t\t\t\t\t\t[-75.977301, 37.825821],\n\t\t\t\t\t\t\t[-75.982158, 37.806226],\n\t\t\t\t\t\t\t[-75.987301, 37.804917],\n\t\t\t\t\t\t\t[-75.998300, 37.812626],\n\t\t\t\t\t\t\t[-76.001116, 37.834947],\n\t\t\t\t\t\t\t[-75.999658, 37.848198],\n\t\t\t\t\t\t\t[-75.996859, 37.850420],\n\t\t\t\t\t\t\t[-75.992556, 37.848889],\n\t\t\t\t\t\t\t[-75.988018, 37.841085],\n\t\t\t\t\t\t\t[-75.982098, 37.837253],\n\t\t\t\t\t\t\t[-75.973607, 37.835817]\n\t\t\t\t\t\t]\n\t\t\t\t\t],\n\t\t\t\t\t[\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t[-75.994739, 37.953501],\n\t\t\t\t\t\t\t[-75.993905, 37.953489],\n\t\t\t\t\t\t\t[-76.003130, 37.947997],\n\t\t\t\t\t\t\t[-76.017592, 37.935161],\n\t\t\t\t\t\t\t[-76.032491, 37.915008],\n\t\t\t\t\t\t\t[-76.035802, 37.929008],\n\t\t\t\t\t\t\t[-76.046530, 37.953586],\n\t\t\t\t\t\t\t[-76.045561, 37.953669],\n\t\t\t\t\t\t\t[-76.041691, 37.954000],\n\t\t\t\t\t\t\t[-76.041402, 37.954006],\n\t\t\t\t\t\t\t[-76.038026, 37.953901],\n\t\t\t\t\t\t\t[-76.030122, 37.953655],\n\t\t\t\t\t\t\t[-76.029463, 37.953775],\n\t\t\t\t\t\t\t[-76.029405, 37.953776],\n\t\t\t\t\t\t\t[-76.022325, 37.953878],\n\t\t\t\t\t\t\t[-76.021714, 37.953887],\n\t\t\t\t\t\t\t[-76.020932, 37.953879],\n\t\t\t\t\t\t\t[-76.020796, 37.953877],\n\t\t\t\t\t\t\t[-76.017686, 37.953832],\n\t\t\t\t\t\t\t[-76.005888, 37.953662],\n\t\t\t\t\t\t\t[-75.994739, 37.953501]\n\t\t\t\t\t\t]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51021\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"021\",\n\t\t\t\t\"NAME\": \"Bland\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 357.725000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.225104, 37.234874],\n\t\t\t\t\t\t[-81.204774, 37.243013],\n\t\t\t\t\t\t[-81.167029, 37.262881],\n\t\t\t\t\t\t[-81.112596, 37.278497],\n\t\t\t\t\t\t[-81.084012, 37.284401],\n\t\t\t\t\t\t[-81.034652, 37.290751],\n\t\t\t\t\t\t[-80.981322, 37.293465],\n\t\t\t\t\t\t[-80.980044, 37.293118],\n\t\t\t\t\t\t[-81.014489, 37.275385],\n\t\t\t\t\t\t[-80.854627, 37.147482],\n\t\t\t\t\t\t[-80.912674, 37.073349],\n\t\t\t\t\t\t[-81.114319, 37.022612],\n\t\t\t\t\t\t[-81.224613, 37.047840],\n\t\t\t\t\t\t[-81.379427, 36.952417],\n\t\t\t\t\t\t[-81.437182, 37.010091],\n\t\t\t\t\t\t[-81.462213, 37.035541],\n\t\t\t\t\t\t[-81.270259, 37.093004],\n\t\t\t\t\t\t[-81.328117, 37.139007],\n\t\t\t\t\t\t[-81.225104, 37.234874]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51027\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"027\",\n\t\t\t\t\"NAME\": \"Buchanan\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 502.763000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-81.968297, 37.537798],\n\t\t\t\t\t\t[-81.927870, 37.512118],\n\t\t\t\t\t\t[-81.942640, 37.508844],\n\t\t\t\t\t\t[-81.992916, 37.482969],\n\t\t\t\t\t\t[-81.996578, 37.476705],\n\t\t\t\t\t\t[-81.992270, 37.460916],\n\t\t\t\t\t\t[-81.987006, 37.454878],\n\t\t\t\t\t\t[-81.968795, 37.451496],\n\t\t\t\t\t\t[-81.949367, 37.445687],\n\t\t\t\t\t\t[-81.935621, 37.438397],\n\t\t\t\t\t\t[-81.927490, 37.413251],\n\t\t\t\t\t\t[-81.933895, 37.372747],\n\t\t\t\t\t\t[-81.930194, 37.366728],\n\t\t\t\t\t\t[-81.929915, 37.366589],\n\t\t\t\t\t\t[-81.926589, 37.358942],\n\t\t\t\t\t\t[-81.925643, 37.357316],\n\t\t\t\t\t\t[-81.921571, 37.356423],\n\t\t\t\t\t\t[-81.920711, 37.355416],\n\t\t\t\t\t\t[-81.911487, 37.348839],\n\t\t\t\t\t\t[-81.910875, 37.348729],\n\t\t\t\t\t\t[-81.907895, 37.343783],\n\t\t\t\t\t\t[-81.907322, 37.343119],\n\t\t\t\t\t\t[-81.906368, 37.342760],\n\t\t\t\t\t\t[-81.905945, 37.342775],\n\t\t\t\t\t\t[-81.903795, 37.343050],\n\t\t\t\t\t\t[-81.902992, 37.342340],\n\t\t\t\t\t\t[-81.899495, 37.341102],\n\t\t\t\t\t\t[-81.899459, 37.340277],\n\t\t\t\t\t\t[-81.896001, 37.331967],\n\t\t\t\t\t\t[-81.895489, 37.332022],\n\t\t\t\t\t\t[-81.894797, 37.332012],\n\t\t\t\t\t\t[-81.894768, 37.331381],\n\t\t\t\t\t\t[-81.893773, 37.330105],\n\t\t\t\t\t\t[-81.892876, 37.330134],\n\t\t\t\t\t\t[-81.887722, 37.331156],\n\t\t\t\t\t\t[-81.886952, 37.330725],\n\t\t\t\t\t\t[-81.885075, 37.330665],\n\t\t\t\t\t\t[-81.880886, 37.331146],\n\t\t\t\t\t\t[-81.879601, 37.332074],\n\t\t\t\t\t\t[-81.878713, 37.331753],\n\t\t\t\t\t\t[-81.878343, 37.328837],\n\t\t\t\t\t\t[-81.873213, 37.325065],\n\t\t\t\t\t\t[-81.865219, 37.308839],\n\t\t\t\t\t\t[-81.864760, 37.308404],\n\t\t\t\t\t\t[-81.853978, 37.300418],\n\t\t\t\t\t\t[-81.854465, 37.299937],\n\t\t\t\t\t\t[-81.853488, 37.294763],\n\t\t\t\t\t\t[-81.854059, 37.291352],\n\t\t\t\t\t\t[-81.843167, 37.285586],\n\t\t\t\t\t\t[-81.842310, 37.285556],\n\t\t\t\t\t\t[-81.810559, 37.282980],\n\t\t\t\t\t\t[-81.809184, 37.283003],\n\t\t\t\t\t\t[-81.793639, 37.282188],\n\t\t\t\t\t\t[-81.793425, 37.281674],\n\t\t\t\t\t\t[-81.774747, 37.274847],\n\t\t\t\t\t\t[-81.774684, 37.274807],\n\t\t\t\t\t\t[-81.767837, 37.274216],\n\t\t\t\t\t\t[-81.765195, 37.275099],\n\t\t\t\t\t\t[-81.763836, 37.275218],\n\t\t\t\t\t\t[-81.762776, 37.275391],\n\t\t\t\t\t\t[-81.761752, 37.275713],\n\t\t\t\t\t\t[-81.760220, 37.275254],\n\t\t\t\t\t\t[-81.757631, 37.274003],\n\t\t\t\t\t\t[-81.757730, 37.271934],\n\t\t\t\t\t\t[-81.757714, 37.271124],\n\t\t\t\t\t\t[-81.757531, 37.270010],\n\t\t\t\t\t\t[-81.755012, 37.267720],\n\t\t\t\t\t\t[-81.752912, 37.266614],\n\t\t\t\t\t\t[-81.752123, 37.265568],\n\t\t\t\t\t\t[-81.751290, 37.265131],\n\t\t\t\t\t\t[-81.747656, 37.264329],\n\t\t\t\t\t\t[-81.743505, 37.247601],\n\t\t\t\t\t\t[-81.743420, 37.245858],\n\t\t\t\t\t\t[-81.744291, 37.244178],\n\t\t\t\t\t\t[-81.738378, 37.240917],\n\t\t\t\t\t\t[-81.901087, 37.142546],\n\t\t\t\t\t\t[-82.017673, 37.068787],\n\t\t\t\t\t\t[-82.148718, 37.041691],\n\t\t\t\t\t\t[-82.135935, 37.061169],\n\t\t\t\t\t\t[-82.305874, 37.301100],\n\t\t\t\t\t\t[-82.291908, 37.311642],\n\t\t\t\t\t\t[-81.968297, 37.537798]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51037\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"037\",\n\t\t\t\t\"NAME\": \"Charlotte\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 475.271000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-78.443319, 37.079400],\n\t\t\t\t\t\t[-78.493028, 36.891220],\n\t\t\t\t\t\t[-78.648541, 36.697909],\n\t\t\t\t\t\t[-78.671463, 36.857951],\n\t\t\t\t\t\t[-78.904587, 37.022288],\n\t\t\t\t\t\t[-78.903393, 37.024371],\n\t\t\t\t\t\t[-78.824209, 37.205361],\n\t\t\t\t\t\t[-78.681573, 37.248759],\n\t\t\t\t\t\t[-78.692472, 37.204786],\n\t\t\t\t\t\t[-78.547128, 37.150431],\n\t\t\t\t\t\t[-78.443319, 37.079400]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}, {\n\t\t\t\"type\": \"Feature\",\n\t\t\t\"properties\": {\n\t\t\t\t\"GEO_ID\": \"0500000US51041\",\n\t\t\t\t\"STATE\": \"51\",\n\t\t\t\t\"COUNTY\": \"041\",\n\t\t\t\t\"NAME\": \"Chesterfield\",\n\t\t\t\t\"LSAD\": \"County\",\n\t\t\t\t\"CENSUSAREA\": 423.297000\n\t\t\t},\n\t\t\t\"geometry\": {\n\t\t\t\t\"type\": \"Polygon\",\n\t\t\t\t\"coordinates\": [\n\t\t\t\t\t[\n\t\t\t\t\t\t[-77.851804, 37.354867],\n\t\t\t\t\t\t[-77.855148, 37.418363],\n\t\t\t\t\t\t[-77.653987, 37.562631],\n\t\t\t\t\t\t[-77.649239, 37.559613],\n\t\t\t\t\t\t[-77.606450, 37.555443],\n\t\t\t\t\t\t[-77.596110, 37.555720],\n\t\t\t\t\t\t[-77.514425, 37.478934],\n\t\t\t\t\t\t[-77.500745, 37.463831],\n\t\t\t\t\t\t[-77.486388, 37.459024],\n\t\t\t\t\t\t[-77.459219, 37.464270],\n\t\t\t\t\t\t[-77.420849, 37.447079],\n\t\t\t\t\t\t[-77.361937, 37.376057],\n\t\t\t\t\t\t[-77.249665, 37.382000],\n\t\t\t\t\t\t[-77.244167, 37.369274],\n\t\t\t\t\t\t[-77.264595, 37.344052],\n\t\t\t\t\t\t[-77.270675, 37.320756],\n\t\t\t\t\t\t[-77.282659, 37.318084],\n\t\t\t\t\t\t[-77.284019, 37.313012],\n\t\t\t\t\t\t[-77.309880, 37.311556],\n\t\t\t\t\t\t[-77.322813, 37.308792],\n\t\t\t\t\t\t[-77.334549, 37.312468],\n\t\t\t\t\t\t[-77.352518, 37.310165],\n\t\t\t\t\t\t[-77.352710, 37.297957],\n\t\t\t\t\t\t[-77.356582, 37.283125],\n\t\t\t\t\t\t[-77.360455, 37.277333],\n\t\t\t\t\t\t[-77.368823, 37.272613],\n\t\t\t\t\t\t[-77.373735, 37.266949],\n\t\t\t\t\t\t[-77.377381, 37.255541],\n\t\t\t\t\t\t[-77.376728, 37.244993],\n\t\t\t\t\t\t[-77.383856, 37.238906],\n\t\t\t\t\t\t[-77.390393, 37.239980],\n\t\t\t\t\t\t[-77.403671, 37.237346],\n\t\t\t\t\t\t[-77.402100, 37.239521],\n\t\t\t\t\t\t[-77.394214, 37.239524],\n\t\t\t\t\t\t[-77.392064, 37.240853],\n\t\t\t\t\t\t[-77.385702, 37.241158],\n\t\t\t\t\t\t[-77.382521, 37.242837],\n\t\t\t\t\t\t[-77.379193, 37.267580],\n\t\t\t\t\t\t[-77.362322, 37.282162],\n\t\t\t\t\t\t[-77.431705, 37.276348],\n\t\t\t\t\t\t[-77.414406, 37.260949],\n\t\t\t\t\t\t[-77.416510, 37.233157],\n\t\t\t\t\t\t[-77.428890, 37.229678],\n\t\t\t\t\t\t[-77.433900, 37.224648],\n\t\t\t\t\t\t[-77.447521, 37.222710],\n\t\t\t\t\t\t[-77.650610, 37.265112],\n\t\t\t\t\t\t[-77.758620, 37.268717],\n\t\t\t\t\t\t[-77.851804, 37.354867]\n\t\t\t\t\t]\n\t\t\t\t]\n\t\t\t}\n\t\t}\n\n\t]\n}"
  },
  {
    "path": "bench/shapes/interstates.json",
    "content": "{\n\"type\": \"FeatureCollection\",\n\"crs\": { \"type\": \"name\", \"properties\": { \"name\": \"urn:ogc:def:crs:OGC:1.3:CRS84\" } },\n                                                                                \n\"features\": [\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I10\", \"DIST_MILES\": 2449.120000, \"DIST_KM\": 3941.480000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -118.48458163785422, 34.014910708698082 ], [ -118.473760690348541, 34.022862862329127 ], [ -118.452592284180739, 34.027767450617311 ], [ -118.447864671075365, 34.028408146831325 ], [ -118.441534813259054, 34.029894724108317 ], [ -118.432850158441269, 34.031294161005533 ], [ -118.430012579849574, 34.031683978954717 ], [ -118.420771268480578, 34.032003412815214 ], [ -118.415791804410148, 34.031953114864862 ], [ -118.393944063548744, 34.029197891462772 ], [ -118.380774160878076, 34.036131904015107 ], [ -118.376237370446177, 34.036955610083893 ], [ -118.374369331534496, 34.036597510576534 ], [ -118.368093550946398, 34.035456175803972 ], [ -118.366942141990833, 34.035231115112659 ], [ -118.360956215135161, 34.034002802672013 ], [ -118.34888418203964, 34.034307088182487 ], [ -118.33244322494771, 34.035225104164049 ], [ -118.30769018413605, 34.037283609490274 ], [ -118.290265655958308, 34.037118623097726 ], [ -118.282678300432224, 34.03739318351618 ], [ -118.278873087411057, 34.038006945661202 ], [ -118.272658041810118, 34.03846857793895 ], [ -118.269195837626597, 34.036743449330714 ], [ -118.265794630729374, 34.034649339543094 ], [ -118.262073564446226, 34.032692208008271 ], [ -118.254814264346862, 34.029723922095343 ], [ -118.24783686116038, 34.026115638567305 ], [ -118.243262192852441, 34.023799371457699 ], [ -118.240592437782354, 34.023917157645748 ], [ -118.238015590127887, 34.024649927168021 ], [ -118.233111741517959, 34.026537470159269 ], [ -118.231029636563235, 34.027559267918001 ], [ -118.224890415628096, 34.028707745557305 ], [ -118.219704418610306, 34.034055136362859 ] ], [ [ -118.21274100997104, 34.055301782403248 ], [ -118.205740379860799, 34.053721308390372 ], [ -118.20167518341168, 34.05472796024867 ], [ -118.183571455048352, 34.055646552187625 ], [ -118.171499581686476, 34.060859448945365 ], [ -118.163972980383548, 34.061324867559975 ], [ -118.144320131177366, 34.071279043319741 ], [ -118.133094171478561, 34.071595203454223 ], [ -118.121709279977637, 34.071659364496803 ], [ -118.106937861968092, 34.071894276044603 ], [ -118.089420617495762, 34.072171993245561 ], [ -118.071781383260429, 34.072311714862934 ], [ -118.05087052651578, 34.072378213584251 ], [ -118.041125038396117, 34.06881563428216 ], [ -118.027649926391788, 34.068089699348334 ], [ -118.025559821205405, 34.068180548220433 ], [ -118.019924284477256, 34.067719163719055 ], [ -118.007814750637039, 34.064235417483971 ], [ -117.998968446865419, 34.06532576961326 ], [ -117.980969885819064, 34.067685642086722 ], [ -117.93547154757826, 34.072485869748576 ], [ -117.925862526497085, 34.072420323983103 ], [ -117.906858354987719, 34.07222825323008 ], [ -117.871426793965952, 34.071822282084042 ], [ -117.866232922878865, 34.071349007634822 ], [ -117.857157808160835, 34.068052600289519 ], [ -117.841440048197484, 34.06872271604955 ], [ -117.831617085404432, 34.066910229720008 ], [ -117.82485296734383, 34.064071940626803 ], [ -117.810988449329216, 34.063957190358366 ], [ -117.805443540584548, 34.065241854547331 ], [ -117.802293672366375, 34.066752642514373 ], [ -117.786476438340145, 34.072866624226251 ], [ -117.758739317279165, 34.071114198382737 ], [ -117.740816789390138, 34.078277068888021 ], [ -117.732220929767863, 34.081423541566004 ], [ -117.709005894085848, 34.081888341545529 ], [ -117.696658617487927, 34.082299704282413 ], [ -117.688605495947442, 34.085480215221011 ], [ -117.682549689656142, 34.087341862692185 ], [ -117.669241754672896, 34.087383195852226 ], [ -117.650068005972997, 34.087424242710135 ], [ -117.641839106716972, 34.087350838503603 ], [ -117.636821077876405, 34.085954626555576 ], [ -117.622331012124548, 34.077661121874065 ], [ -117.607475039333622, 34.06938959936042 ], [ -117.598071611311227, 34.067742181655781 ], [ -117.592466684344672, 34.067561913933197 ], [ -117.574994080638191, 34.067588069514976 ], [ -117.543976336226578, 34.067441591605615 ], [ -117.52321678783396, 34.067390613034092 ], [ -117.515528511538193, 34.067715245113078 ], [ -117.504157674946569, 34.065604762288764 ], [ -117.487866314051715, 34.066131030525014 ], [ -117.434723385474342, 34.067238733768619 ], [ -117.39526152116018, 34.068576047906852 ], [ -117.369285078163557, 34.068963967200489 ], [ -117.351971744941991, 34.068947262375474 ], [ -117.337861365095719, 34.068332711294623 ], [ -117.33258415039343, 34.06689054480978 ], [ -117.312822616693722, 34.06494482065694 ], [ -117.302327961183821, 34.065196398205899 ], [ -117.295555173003734, 34.064185166038214 ], [ -117.288279521048693, 34.063497904893005 ], [ -117.277845786894787, 34.064226473903844 ], [ -117.260341284265365, 34.064473788433034 ], [ -117.250029406515111, 34.066529318265346 ], [ -117.207776059346784, 34.066679275580306 ], [ -117.199225643272811, 34.065534906876763 ], [ -117.190569352998438, 34.061891619195826 ], [ -117.181614980305071, 34.061891193429325 ], [ -117.17352240795104, 34.06035386155957 ], [ -117.164225300525572, 34.055565581398206 ], [ -117.157841423505289, 34.04834451836971 ], [ -117.154279724541283, 34.041016590956957 ], [ -117.150854826911271, 34.037739535581494 ], [ -117.137934667027196, 34.033199068485402 ], [ -117.126768984301791, 34.028430691331941 ], [ -117.119607043137009, 34.026981397595542 ], [ -117.106571795344465, 34.023417892748782 ], [ -117.091745144470949, 34.015150448971568 ], [ -117.086199673728601, 34.014944193256383 ], [ -117.07051005326673, 34.011487559265028 ], [ -117.067352970658888, 34.009175480513882 ], [ -117.064339913826544, 34.004178488881806 ], [ -117.06395903773479, 34.003346495895208 ], [ -117.057895026187452, 33.993379416272418 ], [ -117.047118607103712, 33.976316193639079 ], [ -117.00619851581699, 33.949241791182843 ], [ -116.998609858847232, 33.940444604096847 ], [ -116.989884473176616, 33.933532316779058 ], [ -116.980396246345762, 33.927763978445078 ], [ -116.976331334394558, 33.927671790671155 ], [ -116.922565554972621, 33.926330339049692 ], [ -116.907669508240502, 33.924510700312887 ], [ -116.884825392864272, 33.924429672051424 ], [ -116.875923669962546, 33.924394273866234 ], [ -116.858609046480552, 33.924824491704591 ], [ -116.830089834433124, 33.931594066778345 ], [ -116.823805404328979, 33.931483791701531 ], [ -116.817833007162989, 33.929392579765903 ], [ -116.809290488933641, 33.923132360641034 ], [ -116.798963277533886, 33.919165011564317 ], [ -116.770092355474915, 33.919232766901025 ], [ -116.746828925401616, 33.921741719252189 ], [ -116.735982621849004, 33.92505220696723 ], [ -116.71231517000524, 33.921221403340503 ], [ -116.707379457849001, 33.921519205964813 ], [ -116.695214459985664, 33.924817644058564 ], [ -116.678883873987402, 33.922750085985456 ], [ -116.65724454636117, 33.922108291526214 ], [ -116.639716968198286, 33.923808582019177 ], [ -116.625209969165908, 33.919208196022787 ], [ -116.602358068805074, 33.914457521976168 ], [ -116.559401369305476, 33.905534304938797 ], [ -116.544976977390718, 33.904923822040679 ], [ -116.530736735905251, 33.900543492545125 ], [ -116.5228579149924, 33.896202387698978 ], [ -116.486567303277766, 33.866375268224949 ], [ -116.401697211301524, 33.815658155135218 ], [ -116.397250396409561, 33.81146116832452 ], [ -116.387998672526749, 33.806365047351626 ], [ -116.321005816107913, 33.766642384301747 ], [ -116.301357175640874, 33.760282991613458 ], [ -116.273866198460723, 33.751000476138607 ], [ -116.268389379214469, 33.7493683566071 ], [ -116.25965637869507, 33.743909234598846 ], [ -116.251761133705898, 33.74006409201472 ], [ -116.245216491621932, 33.738533889024502 ], [ -116.233393763675835, 33.739612387907343 ], [ -116.216108189835893, 33.738105753483374 ], [ -116.201165557092594, 33.726287535606829 ], [ -116.195689819838407, 33.721087484420963 ], [ -116.194675044547751, 33.720343468191928 ], [ -116.189900099131236, 33.716872391269007 ], [ -116.184637170576494, 33.715224239115095 ], [ -116.172218537401861, 33.715082764529519 ], [ -116.163644204474082, 33.71396447012269 ], [ -116.127770352162429, 33.703057448494121 ], [ -116.104886747258689, 33.698646727493937 ], [ -116.09965372017092, 33.698288542918689 ], [ -116.081567929421908, 33.700526795693115 ], [ -116.065068953819392, 33.699454217784506 ], [ -116.048753164310725, 33.692045856687592 ], [ -115.994342236726126, 33.679493312154214 ], [ -115.972289057229204, 33.68015258087361 ], [ -115.886222239816618, 33.665471388160647 ], [ -115.800497429813134, 33.660197991602587 ], [ -115.720416324054241, 33.66047784800805 ], [ -115.682817279271731, 33.66632481424768 ], [ -115.579752419006851, 33.674043386921738 ], [ -115.418245813175034, 33.709359456156498 ], [ -115.399899249387886, 33.710309184720771 ], [ -115.379226995943981, 33.710388914788474 ], [ -115.305497840759799, 33.700588274607519 ], [ -115.11713633834961, 33.644956974360127 ], [ -115.08378508936822, 33.636427696361764 ], [ -115.072159428605673, 33.630075693340039 ], [ -115.034511495357563, 33.620615389878239 ], [ -114.986940582919985, 33.60620709534691 ], [ -114.932784268560965, 33.606194351924927 ], [ -114.839013698819358, 33.609813021565508 ], [ -114.777526650696146, 33.609801247523272 ], [ -114.766525703818957, 33.608481145543585 ], [ -114.726063520916298, 33.609281605375919 ], [ -114.712842775007317, 33.607000489788192 ], [ -114.657267886898339, 33.606789779167457 ], [ -114.622679990895449, 33.606541350218663 ], [ -114.60501155189597, 33.606678127570781 ], [ -114.596398306687078, 33.606839017443605 ], [ -114.570438560828364, 33.607150692788224 ], [ -114.561772307100199, 33.607097589263333 ], [ -114.545179724003276, 33.607269385664068 ], [ -114.536177495468237, 33.606120306423755 ], [ -114.530623974685838, 33.604625277020084 ], [ -114.519294942710374, 33.602329198983846 ], [ -114.505990048805046, 33.603088023762332 ], [ -114.407465523405378, 33.631246540457752 ], [ -114.390475974756853, 33.637319263550786 ], [ -114.372701492240438, 33.647797874290085 ], [ -114.357328800175054, 33.648438745472404 ], [ -114.3322309085532, 33.646816603651686 ], [ -114.240708340944096, 33.659816786413828 ], [ -114.216730970295671, 33.662765886675153 ], [ -114.201252010673613, 33.664947948599682 ], [ -114.161428634495152, 33.669785139524173 ], [ -114.111901816478678, 33.677937358457449 ], [ -114.079661806635499, 33.679096602903527 ], [ -114.054807290023362, 33.676296868216127 ], [ -114.03373547818579, 33.665265256175104 ], [ -114.011642751097227, 33.6612985130825 ], [ -113.803234501556759, 33.636388583126454 ], [ -113.333183955697635, 33.565648922700696 ], [ -113.174306803976023, 33.541537342931576 ], [ -113.104728773238847, 33.526186611440934 ], [ -112.936809609536169, 33.497778797339798 ], [ -112.747136792067096, 33.455160477054349 ], [ -112.657638203924407, 33.434958753218822 ], [ -112.647125349743405, 33.431719800592603 ], [ -112.626174637463237, 33.427836846886123 ], [ -112.616912764139755, 33.427126848934094 ], [ -112.606002920710409, 33.428839805536349 ], [ -112.500627449828045, 33.462347135707624 ], [ -112.461770770509546, 33.462160234136078 ], [ -112.426745028805485, 33.461390336886289 ], [ -112.377085359630598, 33.461539466015893 ], [ -112.366465399852729, 33.457678566112051 ], [ -112.358195445814573, 33.457289596405026 ], [ -112.318926655529694, 33.457068712594243 ], [ -112.289675820687663, 33.461626710474313 ], [ -112.272318894724378, 33.46169976001184 ], [ -112.219532276344523, 33.462118896064304 ], [ -112.186443575420512, 33.46285596793598 ], [ -112.18020262934786, 33.462958982425299 ], [ -112.172550693639607, 33.462959002923711 ], [ -112.168979722773187, 33.462886014066235 ], [ -112.151493862164358, 33.462558068514042 ], [ -112.134442000975184, 33.463409097195253 ], [ -112.108113184029165, 33.461837205139446 ], [ -112.099827241564313, 33.46170023178118 ], [ -112.094967274637909, 33.461608247748352 ], [ -112.082867353117535, 33.461120293559489 ], [ -112.077778397157132, 33.462448278604597 ], [ -112.073842419219062, 33.46195930100712 ], [ -112.065266474090606, 33.461898327426404 ], [ -112.037907634907967, 33.461028428379201 ], [ -112.037678531419544, 33.448120726412576 ], [ -112.037716519169706, 33.446639760406015 ], [ -112.0374803638705, 33.427369205142234 ], [ -112.03032439488436, 33.426361253724764 ], [ -112.024838411775917, 33.424839308598592 ], [ -112.01358537305596, 33.413205621406973 ], [ -112.010571375094329, 33.411663669001541 ], [ -112.001217413810124, 33.410878723330839 ], [ -111.978428545160739, 33.411118818875472 ], [ -111.971600563822776, 33.409020900393379 ], [ -111.967717535785383, 33.403539051485666 ], [ -111.967587404191462, 33.388673414027707 ], [ -111.967908308751348, 33.3781296690536 ], [ -111.96918214469153, 33.360377093965603 ], [ -111.971928030843259, 33.34900135436569 ], [ -111.972362898552035, 33.334292708336044 ], [ -111.972286641583025, 33.30526341249476 ], [ -111.971813513319944, 33.290592771511051 ], [ -111.968273445399305, 33.281426019977751 ], [ -111.908831993019319, 33.204782954045385 ], [ -111.847216454355333, 33.12502700584028 ], [ -111.841906402710435, 33.118218201741378 ], [ -111.769746588938844, 33.022930237698787 ], [ -111.752885394888878, 33.00297298365868 ], [ -111.691208286546512, 32.925444179547519 ], [ -111.686989145799245, 32.915072296780359 ], [ -111.686675916631444, 32.897791395278688 ], [ -111.686904676655217, 32.879683489924425 ], [ -111.687103289820016, 32.850523644609318 ], [ -111.685745060199096, 32.833162762796739 ], [ -111.684584908924521, 32.821684846652019 ], [ -111.681120841648962, 32.816393939608197 ], [ -111.678351813458804, 32.814090003848783 ], [ -111.552076915904806, 32.735857282476694 ], [ -111.533292826739441, 32.73050974707251 ], [ -111.522786769745139, 32.727576998677584 ], [ -111.51567669949381, 32.723567197839039 ], [ -111.501905534621528, 32.714729585409941 ], [ -111.495046458346067, 32.712077771581924 ], [ -111.47819320133415, 32.702160272226791 ], [ -111.411052996203424, 32.660459992372573 ], [ -111.383014383723662, 32.640940574928628 ], [ -111.3735311409377, 32.633002754631192 ], [ -111.271560360690927, 32.51193264842869 ], [ -111.266349043417449, 32.501319608276681 ], [ -111.262632918087817, 32.495754728235653 ], [ -111.252523685851969, 32.487541985877847 ], [ -111.122778859810111, 32.394663721035307 ], [ -111.105490330865038, 32.37394717086152 ], [ -111.066388105241614, 32.337475882877939 ], [ -111.051678505008738, 32.323251126680411 ], [ -111.041529853114554, 32.308678364633138 ], [ -111.013658159045832, 32.275998834983575 ], [ -111.008851812715832, 32.269833916065345 ], [ -111.005547429811386, 32.262651015367936 ], [ -111.002404267095926, 32.260179041689355 ], [ -110.992927624923908, 32.250128177964939 ], [ -110.987716531736268, 32.243871297112129 ], [ -110.984047468310763, 32.235838454631782 ], [ -110.980240403806675, 32.220907751817514 ], [ -110.979766396716997, 32.206706037638938 ], [ -110.979309389516644, 32.200675158956344 ], [ -110.975769331761342, 32.192260327399254 ], [ -110.973968302456441, 32.189589380843749 ], [ -110.968513213173537, 32.186702437904096 ], [ -110.95645101503365, 32.183722496059929 ], [ -110.944609822566918, 32.177378624823412 ], [ -110.925421513749541, 32.166514850427305 ], [ -110.919264415359294, 32.163062923413499 ], [ -110.917685390265135, 32.162104943760369 ], [ -110.909384257926263, 32.157753037004269 ], [ -110.896025048847164, 32.148929228107839 ], [ -110.88773193509671, 32.134331543869536 ], [ -110.873395718454631, 32.124119772962572 ], [ -110.841039234045866, 32.103814245195046 ], [ -110.773396262894494, 32.061247297377435 ], [ -110.690059453721759, 32.00685457709811 ], [ -110.681697365875678, 32.002063697575466 ], [ -110.659870116695586, 31.997443801405513 ], [ -110.652416029660642, 31.996783814702578 ], [ -110.623988693310565, 31.998103783710974 ], [ -110.589152266248078, 31.988383998010764 ], [ -110.549470765513092, 31.983864105885839 ], [ -110.518831365821214, 31.979023225396631 ], [ -110.504144167197538, 31.974403338785557 ], [ -110.467584048618221, 31.967903548089023 ], [ -110.451104032390305, 31.963450682518594 ], [ -110.3640068587504, 31.963465834067765 ], [ -110.355789859008723, 31.962133881704791 ], [ -110.346550797617212, 31.964693834753582 ], [ -110.33388570600512, 31.968075773076116 ], [ -110.327904632882564, 31.971134707239056 ], [ -110.311386435243008, 31.97821455843318 ], [ -110.297196361425989, 31.978733569629366 ], [ -110.291550368806341, 31.977224617440704 ], [ -110.281616488019623, 31.970135814320933 ], [ -110.273316543955488, 31.966515921201953 ], [ -110.268746552631839, 31.965534954518979 ], [ -110.257790515158973, 31.965584973423177 ], [ -110.247986443829035, 31.967304933625631 ], [ -110.229332162896057, 31.977184612792342 ], [ -110.192275848359742, 31.986713226159562 ], [ -110.137382387111359, 32.006633426150685 ], [ -110.118125402019444, 32.015513042278094 ], [ -110.109168441617243, 32.024141707865986 ], [ -110.100684515027311, 32.037073226340617 ], [ -110.093055539206475, 32.042612005076087 ], [ -110.061019731295914, 32.076130723398272 ], [ -110.042899787870454, 32.087150275492654 ], [ -110.038375815139446, 32.091431110981141 ], [ -109.995056241728875, 32.148069055922335 ], [ -109.989800276524875, 32.152405938340735 ], [ -109.949333453772169, 32.176396335325201 ], [ -109.885201705962672, 32.214596289968128 ], [ -109.835611426097799, 32.276704581172048 ], [ -109.791208954668235, 32.311844734296102 ], [ -109.744929431471988, 32.347911692530218 ], [ -109.688181414162287, 32.35803322620567 ], [ -109.649195349770181, 32.362443667938919 ], [ -109.620722236713604, 32.362245094898796 ], [ -109.614787164366689, 32.359544265706376 ], [ -109.605554953126031, 32.349954697690698 ], [ -109.601693899304891, 32.347864819479817 ], [ -109.52086826845823, 32.332798494660757 ], [ -109.513254173937739, 32.329635707891853 ], [ -109.49935294499997, 32.321137168190695 ], [ -109.491776833886902, 32.318288278496112 ], [ -109.449974501326693, 32.317776410396405 ], [ -109.440720420778774, 32.317258451030327 ], [ -109.262121780919003, 32.276388788661585 ], [ -109.252554711318282, 32.273229861281273 ], [ -109.232374605700301, 32.264129179434889 ], [ -109.203833480896819, 32.257819508923831 ], [ -109.185728411613255, 32.257529645642954 ], [ -109.176611375269559, 32.257098719523576 ], [ -109.047995110549081, 32.227258575089891 ], [ -109.028685099939068, 32.222222881546962 ], [ -108.991964884539826, 32.227570952267975 ], [ -108.975217831592943, 32.226904119220926 ], [ -108.970403798847158, 32.228083120531601 ], [ -108.954061625286855, 32.237550944526348 ], [ -108.953969635990987, 32.236623976390199 ], [ -108.950887591048485, 32.239541906346766 ], [ -108.75230882638887, 32.353702007388215 ], [ -108.744602756648078, 32.354114030073163 ], [ -108.712643432367017, 32.342372095218586 ], [ -108.688732188543952, 32.341422114594536 ], [ -108.675099051296613, 32.338443140077267 ], [ -108.633319636366124, 32.327903240656681 ], [ -108.536974805819099, 32.270518860600781 ], [ -108.393798604584745, 32.184127035649887 ], [ -108.384444348051801, 32.179576244667899 ], [ -108.376891154311039, 32.178786334323085 ], [ -108.303571378213803, 32.192786632464802 ], [ -108.229769653044059, 32.206908830446835 ], [ -108.174196470824825, 32.217597723441088 ], [ -108.091529672308056, 32.228236685428811 ], [ -108.067420154445614, 32.232616637112827 ], [ -107.776901026268959, 32.268348068436808 ], [ -107.758453560015553, 32.270427048608752 ], [ -107.75147238415866, 32.271339040403383 ], [ -107.728125924085006, 32.274291096526568 ], [ -107.713080631825662, 32.276191135832732 ], [ -107.710470581435004, 32.276607141981202 ], [ -107.690260197642289, 32.281516176375206 ], [ -107.633679105380182, 32.286918351334599 ], [ -107.625545943819915, 32.286567385736141 ], [ -107.565692724256579, 32.280097663088945 ], [ -107.441765761012633, 32.242540013813496 ], [ -107.431145496629227, 32.240510197197779 ], [ -107.38975449126734, 32.236238802463056 ], [ -107.38330734521989, 32.237317849020705 ], [ -107.369918062084679, 32.243150851703646 ], [ -107.36559196409857, 32.243989881077844 ], [ -107.298642362575436, 32.242918706525884 ], [ -107.198473112609534, 32.240741797298959 ], [ -107.038580916291366, 32.259129790853841 ], [ -106.909633482126665, 32.273332476452438 ], [ -106.884501809979668, 32.281953444888828 ], [ -106.854615914455238, 32.283742635029419 ], [ -106.809830660415685, 32.293962718021668 ], [ -106.802467445914843, 32.294923751029039 ], [ -106.7906570194925, 32.289552989321976 ], [ -106.769706270486864, 32.280814390726455 ], [ -106.766318146988198, 32.279223460384571 ], [ -106.735967899077906, 32.264044961026251 ], [ -106.728734513467586, 32.255966158648768 ], [ -106.683321428187682, 32.192494435217966 ], [ -106.649162300021928, 32.145036451532725 ], [ -106.603238374218321, 32.057018501093118 ], [ -106.594532843110159, 32.038132962660711 ], [ -106.583354167093432, 32.012219606126173 ], [ -106.582781984647127, 32.000718880895384 ], [ -106.582773890486592, 31.908253682481686 ], [ -106.581834573464519, 31.883014451940884 ], [ -106.570374846229768, 31.839375822249128 ], [ -106.567826735081184, 31.833736003905774 ], [ -106.559754495458947, 31.825486287477716 ], [ -106.549652202467925, 31.815215641372099 ], [ -106.543656039688059, 31.809865829018428 ], [ -106.528281763504097, 31.809346908243874 ], [ -106.523673662131728, 31.807286990170613 ], [ -106.519981531389845, 31.800467213815736 ], [ -106.519538423730864, 31.790108532196573 ], [ -106.515350212196765, 31.775338001316911 ], [ -106.50324187583854, 31.760288513396901 ], [ -106.497633755712286, 31.75883858582343 ], [ -106.492750669030826, 31.761190541686222 ], [ -106.490568633509071, 31.762628510291602 ], [ -106.484137510702837, 31.764867479041978 ], [ -106.473501332129345, 31.77168833421765 ], [ -106.464850183987906, 31.777198219260008 ], [ -106.461508115231311, 31.777978215719195 ], [ -106.450887876811422, 31.778028277482147 ], [ -106.442517683221837, 31.777337347872983 ], [ -106.422071225064002, 31.777587462130608 ], [ -106.417241133883806, 31.780076417938755 ], [ -106.413976069469598, 31.781408398535934 ], [ -106.402119805102132, 31.781968453552398 ], [ -106.392628567557949, 31.7784686119222 ], [ -106.377407181225792, 31.771478903208582 ], [ -106.364497850479495, 31.764380180958536 ], [ -106.345447363660227, 31.752739618380801 ], [ -106.32466374942635, 31.739789086920076 ], [ -106.304575037657486, 31.720800713159257 ], [ -106.284097304717037, 31.701491351250358 ], [ -106.270798833073272, 31.689551749867668 ], [ -106.237311549369053, 31.656581849886056 ], [ -106.138423434873999, 31.528653155387371 ], [ -106.131327161357589, 31.519477474641636 ], [ -106.128588056867216, 31.515961597507253 ], [ -106.122400820985888, 31.50789787928224 ], [ -106.118730704821886, 31.505057991354033 ], [ -106.059769257043129, 31.471389432738729 ], [ -106.019966307873858, 31.435341769639781 ], [ -105.972136190174609, 31.40839778684359 ], [ -105.923787986589474, 31.380672718974321 ], [ -105.878055671965058, 31.328484270326673 ], [ -105.799707402400529, 31.277906822151298 ], [ -105.794778225859588, 31.270476027443927 ], [ -105.786865845541257, 31.238876855425975 ], [ -105.782898722756443, 31.233557998623972 ], [ -105.710547633166073, 31.178578446367982 ], [ -105.659818254876328, 31.171229611909499 ], [ -105.620907208441508, 31.183039280579298 ], [ -105.609172888143988, 31.191517047740124 ], [ -105.590136364025895, 31.197377877847231 ], [ -105.56377664009888, 31.196656878649293 ], [ -105.54537413639413, 31.195176906110902 ], [ -105.53318980558177, 31.192947958852461 ], [ -105.529382699963222, 31.193607938189015 ], [ -105.489273629628499, 31.216518314143979 ], [ -105.484817539280982, 31.217637295843307 ], [ -105.470009254179089, 31.212176485015629 ], [ -105.455443974656532, 31.199878852594075 ], [ -105.436667593768419, 31.193657061146393 ], [ -105.38078942100627, 31.1802185232957 ], [ -105.358739939471334, 31.172978743757405 ], [ -105.340619545071007, 31.17026784141683 ], [ -105.140501626047268, 31.110590913285815 ], [ -105.050929377790411, 31.08873190844966 ], [ -104.983376744040669, 31.062851818198084 ], [ -104.975967482821972, 31.061053869444301 ], [ -104.963699083459602, 31.060252903507546 ], [ -104.953383660338829, 31.054283053931766 ], [ -104.942718295664079, 31.052703103052743 ], [ -104.908865033792125, 31.042205381130888 ], [ -104.900853715986571, 31.038833466066073 ], [ -104.88478615751535, 31.036613533136823 ], [ -104.86500251932722, 31.036634553583049 ], [ -104.830668481570314, 31.040153512637279 ], [ -104.818484088984135, 31.040134526312908 ], [ -104.771630681585293, 31.044754478245807 ], [ -104.746628820654635, 31.042493541458605 ], [ -104.723594061672955, 31.04377346370994 ], [ -104.504348899013706, 31.061833789422622 ], [ -104.426275705486162, 31.072704416904873 ], [ -104.413846340509352, 31.0736025330426 ], [ -104.318934313303885, 31.064494572963653 ], [ -104.301194785262865, 31.065264743419728 ], [ -104.285203263558913, 31.062394929616737 ], [ -104.225280609490667, 31.066995698666624 ], [ -104.216636369185622, 31.065605872951345 ], [ -104.21609434474135, 31.064664893489891 ], [ -104.210318201933845, 31.065336992713092 ], [ -104.180921410999886, 31.062796570446039 ], [ -104.172705177534638, 31.060835751386282 ], [ -104.155927742194081, 31.060817066828246 ], [ -104.101208531216727, 31.083917657046687 ], [ -104.095089375542216, 31.084537750451172 ], [ -104.078418920844385, 31.082768073182606 ], [ -104.070079711420078, 31.083962192347769 ], [ -104.057406429597108, 31.090258272699792 ], [ -104.04957821673861, 31.08955841990295 ], [ -104.037019864868185, 31.087079689170409 ], [ -104.020006345837714, 31.077968201235681 ], [ -104.004227891012803, 31.072479619329275 ], [ -103.987824340330633, 31.062270091920762 ], [ -103.975784903514651, 31.050820532191057 ], [ -103.974266836634087, 31.047549637196191 ], [ -103.970085716063906, 31.047990674537264 ], [ -103.935271668358624, 31.044712175653967 ], [ -103.849040980371754, 31.006514391561954 ], [ -103.7903463153296, 31.012363973998948 ], [ -103.742729979169937, 31.008424716751165 ], [ -103.699233954108507, 31.000435480530925 ], [ -103.661826049694938, 30.993636103525446 ], [ -103.564121773681507, 30.975626652854924 ], [ -103.530216014078803, 30.974508031574253 ], [ -103.495311209990447, 30.968858523144085 ], [ -103.454493067450287, 30.956490197238857 ], [ -103.408493765896665, 30.952440714021964 ], [ -103.371749727927096, 30.947870158901253 ], [ -103.36991867473202, 30.948690155580497 ], [ -103.368186627416534, 30.947320204609429 ], [ -103.322096327362786, 30.940061798828886 ], [ -103.218241088641676, 30.924602064424548 ], [ -103.142044201409789, 30.914462888712734 ], [ -103.123953515598075, 30.910063134438872 ], [ -103.088643172831965, 30.904534540083031 ], [ -103.054347865970612, 30.900464903169475 ], [ -102.922797539643952, 30.894224268337243 ], [ -102.909118131217852, 30.900875046872621 ], [ -102.89588073405001, 30.906714844211706 ], [ -102.884253391367594, 30.907032800185995 ], [ -102.875937146908953, 30.906872779755609 ], [ -102.870671994407118, 30.905613800497331 ], [ -102.845654289371254, 30.892555115444601 ], [ -102.713364379120534, 30.889574017441017 ], [ -102.677238300304253, 30.881624334866636 ], [ -102.644675316274871, 30.877593521022639 ], [ -102.61557543759551, 30.874044688945631 ], [ -102.58215846782295, 30.861784174369632 ], [ -102.555042636556237, 30.861655227117957 ], [ -102.54883245123149, 30.860575276797793 ], [ -102.513781353602184, 30.865084175918117 ], [ -102.477510115904522, 30.871516178029758 ], [ -102.450463137225597, 30.882735011472349 ], [ -102.361768076100844, 30.895236337479069 ], [ -102.343579457650719, 30.894656522823606 ], [ -102.328303937609078, 30.891554781818289 ], [ -102.310512326821268, 30.885295190597908 ], [ -102.302135038876756, 30.884676291568791 ], [ -102.30290506418028, 30.883276340323221 ], [ -102.301578018314913, 30.882976364413853 ], [ -102.300966998735603, 30.88462630421326 ], [ -102.286593505406486, 30.884725431319175 ], [ -102.267076848397636, 30.891676328157239 ], [ -102.218323712029559, 30.893415587841528 ], [ -102.190460210247281, 30.891647812606816 ], [ -102.162612715319213, 30.892227945694046 ], [ -102.100538530785258, 30.872059000362718 ], [ -102.094297404768611, 30.868608150857607 ], [ -102.051427524093, 30.844079168512739 ], [ -102.007770632440014, 30.824689947087801 ], [ -102.000408447482741, 30.814590286402989 ], [ -101.997135347479713, 30.811979419777117 ], [ -101.968257508004825, 30.796441357437335 ], [ -101.953868040352262, 30.775883219460994 ], [ -101.939539628643132, 30.766912717922104 ], [ -101.894082388146387, 30.747873023162239 ], [ -101.845176127306857, 30.740165074536673 ], [ -101.836684909385355, 30.736215359065056 ], [ -101.817313412519667, 30.720877250284826 ], [ -101.809493208730288, 30.71789947986041 ], [ -101.79195274919725, 30.71373689302342 ], [ -101.761792957089625, 30.721048046819039 ], [ -101.743351470403226, 30.729157988237901 ], [ -101.726773025218719, 30.73377700760355 ], [ -101.716907763755231, 30.742127814034973 ], [ -101.710842602357459, 30.744995779936296 ], [ -101.696819227541511, 30.747656848531705 ], [ -101.692104100755316, 30.747295917603001 ], [ -101.678416730049832, 30.743157229303424 ], [ -101.632356482471025, 30.734657070670757 ], [ -101.592957415135103, 30.730538669519184 ], [ -101.577056986426342, 30.730608850334949 ], [ -101.556655432111597, 30.728259164538091 ], [ -101.542327041899014, 30.726360392359211 ], [ -101.53681888932968, 30.724340522566045 ], [ -101.520048403668113, 30.70829024233857 ], [ -101.510328129919756, 30.70357050454308 ], [ -101.431660549832145, 30.689950488598775 ], [ -101.382312625124669, 30.689052825638196 ], [ -101.363185230357772, 30.683302116783036 ], [ -101.330713574760964, 30.677573483380367 ], [ -101.317728333693609, 30.67832254008076 ], [ -101.273698633641914, 30.692782401395231 ], [ -101.23844983685683, 30.697293651883214 ], [ -101.213859063174269, 30.704531928633543 ], [ -101.201957663740899, 30.705593130134364 ], [ -101.192656346553434, 30.705923300997483 ], [ -101.165846466871074, 30.7104937048327 ], [ -101.164419426013282, 30.71136271105728 ], [ -101.125393999233864, 30.702713674013861 ], [ -101.001510478712234, 30.672657636849884 ], [ -100.960654290536496, 30.663754080283745 ], [ -100.950040983242602, 30.661318194225963 ], [ -100.902745576286065, 30.645718793012957 ], [ -100.835428556729426, 30.620649697529743 ], [ -100.825968294221084, 30.619690774963274 ], [ -100.783715177478115, 30.622348987255823 ], [ -100.750366236588519, 30.616931298986355 ], [ -100.734801893044377, 30.611529420099831 ], [ -100.697302997370059, 30.592339893515685 ], [ -100.690840854998356, 30.590670946681303 ], [ -100.671110449046608, 30.58891103694101 ], [ -100.660620192989199, 30.583832189198947 ], [ -100.647847887465801, 30.578562360181113 ], [ -100.6400127141562, 30.576872429060241 ], [ -100.581860498395557, 30.572120760807348 ], [ -100.524241240178583, 30.563863241282224 ], [ -100.470811974111626, 30.546583111620258 ], [ -100.457909672938513, 30.541553367887005 ], [ -100.380622923063541, 30.50404526355047 ], [ -100.324354759754485, 30.481076651466271 ], [ -100.273106677202563, 30.455947099153029 ], [ -100.237270635588388, 30.446218754521933 ], [ -100.211321467056266, 30.44340002903186 ], [ -100.199609954368029, 30.444029074741525 ], [ -100.116637437135481, 30.468484772881375 ], [ -100.078205791898355, 30.480718710540842 ], [ -100.042033185748423, 30.483218962554787 ], [ -100.001130408771246, 30.495930025880231 ], [ -99.994500160855637, 30.494950045018829 ], [ -99.987648918561817, 30.495409019562786 ], [ -99.956313842521624, 30.503108714090001 ], [ -99.930265895053836, 30.499707789216512 ], [ -99.900037952520577, 30.518486985879004 ], [ -99.872090001997691, 30.523027762351632 ], [ -99.851650322307279, 30.527906543782475 ], [ -99.846989158060708, 30.527817540511169 ], [ -99.785683870252512, 30.513006991827645 ], [ -99.774682432433082, 30.507838158087498 ], [ -99.76371096982443, 30.500207409343744 ], [ -99.741920122356561, 30.488578701588494 ], [ -99.733016704158373, 30.474110112875156 ], [ -99.7292394900592, 30.463959410646154 ], [ -99.71307970671883, 30.438430160188275 ], [ -99.706335422862253, 30.433311309127699 ], [ -99.68449858923077, 30.426879485733963 ], [ -99.676732275195533, 30.423101597571723 ], [ -99.658016412871959, 30.405041161755708 ], [ -99.641146746997663, 30.400191313437986 ], [ -99.628115254609668, 30.39861136224707 ], [ -99.62467411316517, 30.397261406179677 ], [ -99.615365658468804, 30.387881717253308 ], [ -99.600617855405631, 30.367502406196675 ], [ -99.592247330542634, 30.351343960612194 ], [ -99.568487949931182, 30.316904179345016 ], [ -99.543683717655924, 30.299135857653344 ], [ -99.527264947532728, 30.291424175184201 ], [ -99.522686720827551, 30.288596289294215 ], [ -99.510426130031547, 30.282324551250007 ], [ -99.492778308988193, 30.269117139595824 ], [ -99.462610277932356, 30.255685950642533 ], [ -99.437028355408401, 30.242186903186784 ], [ -99.413727393489637, 30.222769270929582 ], [ -99.3932186465222, 30.211469116259735 ], [ -99.3753270114494, 30.202560786204245 ], [ -99.32543641621271, 30.187942033527339 ], [ -99.301311683611829, 30.18312449636375 ], [ -99.28900530787358, 30.180542735833093 ], [ -99.243234867631799, 30.164063985640286 ], [ -99.238351710277058, 30.159643267812221 ], [ -99.23060028317434, 30.142575233003306 ], [ -99.229593133462643, 30.134986635246356 ], [ -99.226473001964223, 30.130565895565898 ], [ -99.205453444441318, 30.119946655676411 ], [ -99.194451104257467, 30.111978173148508 ], [ -99.179290757000544, 30.107877532218925 ], [ -99.17356156937322, 30.103368817026517 ], [ -99.167182314255555, 30.095987252230035 ], [ -99.151778892648124, 30.088707766760233 ], [ -99.14656771910721, 30.084718016413305 ], [ -99.13577131156913, 30.074176644791418 ], [ -99.122260003406126, 30.071447905758543 ], [ -99.11116577307061, 30.070391060494163 ], [ -99.109357738738098, 30.070379077750832 ], [ -99.081357192158805, 30.069491379243516 ], [ -99.073429998213854, 30.06740055414981 ], [ -99.056584686340145, 30.067721692930206 ], [ -99.053105584078878, 30.066040806185942 ], [ -99.045895283053227, 30.058521235049174 ], [ -99.03875409066444, 30.05599142111609 ], [ -99.03166590353581, 30.053691595011944 ], [ -99.011539491764424, 30.05262182537567 ], [ -98.976557104607977, 30.033652689436575 ], [ -98.965425413555579, 30.01885431818738 ], [ -98.93000071584278, 29.991253284726199 ], [ -98.920753355788449, 29.986987376294522 ], [ -98.904188727644723, 29.980254505514534 ], [ -98.904219708822779, 29.979044548378219 ], [ -98.901381620795775, 29.979075528440138 ], [ -98.89658242174454, 29.976044603105475 ], [ -98.885129698682107, 29.953395319018544 ], [ -98.876264305750297, 29.946016514199268 ], [ -98.858097450862886, 29.927515025423787 ], [ -98.843417858516815, 29.918505227260791 ], [ -98.827891289749317, 29.912495316381062 ], [ -98.825480187159656, 29.910635361631041 ], [ -98.813959540020932, 29.891516923839568 ], [ -98.797555793361511, 29.875227344616178 ], [ -98.788628359067147, 29.864378637165185 ], [ -98.785218084026965, 29.853008990857866 ], [ -98.774895557547069, 29.838587386262692 ], [ -98.755904729639539, 29.820988806435878 ], [ -98.75399755926837, 29.813329043417038 ], [ -98.752707260034853, 29.795749614194911 ], [ -98.750296106167525, 29.790149777374932 ], [ -98.746580943545013, 29.786369909078147 ], [ -98.719540891941904, 29.767279599277984 ], [ -98.687526668131014, 29.73887467829109 ], [ -98.664317889173248, 29.717912511144675 ], [ -98.634958829688784, 29.674474160654981 ], [ -98.627771555566639, 29.660098694247708 ], [ -98.623605389150342, 29.650125061742511 ], [ -98.61390105332751, 29.63572559067055 ], [ -98.61036090868069, 29.626060942437455 ], [ -98.603386643740322, 29.610316512557517 ], [ -98.598458416583952, 29.590927211041105 ], [ -98.591012086846149, 29.563237201976857 ], [ -98.584976869475739, 29.550088666601582 ], [ -98.578826688054377, 29.544559856037214 ], [ -98.571067470316606, 29.539660019427622 ], [ -98.562179208795214, 29.531059310623444 ], [ -98.556266032962597, 29.524630527724671 ], [ -98.549254749619081, 29.499589395141676 ], [ -98.547743684695035, 29.494802556068571 ], [ -98.545958609577809, 29.489471735530572 ], [ -98.543288526398314, 29.486530831610008 ], [ -98.539313418100647, 29.484830882913329 ], [ -98.529364165510785, 29.483739902784002 ], [ -98.517553816387235, 29.474781196139556 ], [ -98.515966752342337, 29.470942328593125 ], [ -98.515447628083606, 29.45356093896514 ], [ -98.514852551559557, 29.443973275620316 ], [ -98.512922484822511, 29.441232370725917 ], [ -98.505575282048454, 29.438852450043459 ], [ -98.500814106390777, 29.430711736460378 ], [ -98.500844100383361, 29.42969377265301 ], [ -98.501073080181399, 29.425773912035428 ], [ -98.501218076857072, 29.424712949773362 ], [ -98.501516069188128, 29.422404031869448 ], [ -98.502393054277846, 29.416743232998165 ], [ -98.508428169442553, 29.410443455873018 ], [ -98.511617187021784, 29.400343811576931 ], [ -98.511182148751388, 29.396193958119408 ], [ -98.495281741471558, 29.396134985331269 ], [ -98.485981505982608, 29.394445082028696 ], [ -98.482334415389346, 29.394035110987826 ], [ -98.478184321895199, 29.395084089868835 ], [ -98.472447213323107, 29.399912939860382 ], [ -98.46876213333708, 29.401423900197734 ], [ -98.447994631576663, 29.401722970193212 ], [ -98.444057542668673, 29.402872944196954 ], [ -98.428020226598321, 29.416333521702079 ], [ -98.421222104930905, 29.424773243237457 ], [ -98.4157899911892, 29.428624124603243 ], [ -98.405642755158397, 29.431532057206631 ], [ -98.390108390811676, 29.435762961319217 ], [ -98.320587743915382, 29.45779240860896 ], [ -98.292549060395856, 29.465232233529346 ], [ -98.223875411466437, 29.487707652284112 ], [ -98.186925556762887, 29.500689322755932 ], [ -98.112185808935422, 29.528880655919163 ], [ -98.071947863321029, 29.539750437939247 ], [ -98.067667764094764, 29.541742385619877 ], [ -98.045755251619269, 29.548909221684653 ], [ -98.042391174639761, 29.551061159903465 ], [ -98.028855870584167, 29.563158791129194 ], [ -98.009644428848915, 29.573650497897393 ], [ -97.993104073477284, 29.584509207112617 ], [ -97.988907990797898, 29.58735113929357 ], [ -97.984787909653221, 29.590094074510752 ], [ -97.973251682624266, 29.597526902507031 ], [ -97.965194518117912, 29.599149906698106 ], [ -97.951210227719585, 29.59920900969087 ], [ -97.938117955826883, 29.59925110658023 ], [ -97.925360690425606, 29.599058209040646 ], [ -97.916510507558939, 29.59953925899578 ], [ -97.890066971433754, 29.605534252953969 ], [ -97.849310148417501, 29.614828245955199 ], [ -97.803067193847994, 29.615728567897438 ], [ -97.673555357875728, 29.651569526704495 ], [ -97.661645073735869, 29.65226061936443 ], [ -97.6601730349294, 29.651419662048998 ], [ -97.633034372326406, 29.649372995623331 ], [ -97.61840901594195, 29.648549166170319 ], [ -97.592712415425765, 29.652579279361419 ], [ -97.579322102403054, 29.654460345368324 ], [ -97.556540549824987, 29.653579597012701 ], [ -97.5456452839977, 29.652900726294977 ], [ -97.486431885837959, 29.649592385760339 ], [ -97.415202457671469, 29.658291613293425 ], [ -97.38637087873721, 29.662211689385504 ], [ -97.296731047376412, 29.669791082703824 ], [ -97.265198448571851, 29.684391790621813 ], [ -97.252853207332308, 29.688891718654901 ], [ -97.240493945283063, 29.69262165552415 ], [ -97.195204914027386, 29.692282910215166 ], [ -97.165594239107406, 29.691833084647072 ], [ -97.14205671902377, 29.696512046515391 ], [ -97.108623958863731, 29.69685321489878 ], [ -97.04907560574091, 29.697902500164485 ], [ -97.009210683205865, 29.691873920090405 ], [ -96.976746835392461, 29.690863077529666 ], [ -96.956856287604097, 29.688883208256279 ], [ -96.919471271716731, 29.690823262367118 ], [ -96.902541815676429, 29.693274233672 ], [ -96.884375326693828, 29.696003199545782 ], [ -96.874648061728308, 29.696204223913618 ], [ -96.856748573988753, 29.69650327115237 ], [ -96.848958355592003, 29.694252372260443 ], [ -96.83342491578766, 29.688153628332454 ], [ -96.819592539157725, 29.68854965924541 ], [ -96.774547318351793, 29.691923689431682 ], [ -96.733454198836753, 29.69238383304863 ], [ -96.702173337445572, 29.688323122810306 ], [ -96.621993163852451, 29.693084348617163 ], [ -96.573056831066182, 29.693504570817201 ], [ -96.558179425612153, 29.693445644821033 ], [ -96.542515997193917, 29.691675782273556 ], [ -96.539578917961052, 29.692523766935032 ], [ -96.53561881117075, 29.69379474176143 ], [ -96.52721858650699, 29.699245591959762 ], [ -96.512615191248102, 29.70443548048847 ], [ -96.505848008850478, 29.708873357341808 ], [ -96.497859798400853, 29.711173312407876 ], [ -96.441805435350034, 29.718974251599423 ], [ -96.296598944019308, 29.748522765244825 ], [ -96.228871163454215, 29.75721450189608 ], [ -96.190158990180151, 29.763884071747331 ], [ -96.170367405253316, 29.759693177383074 ], [ -96.152681870015158, 29.764362911460481 ], [ -96.141290526146307, 29.76799171363033 ], [ -96.130731205974612, 29.774612390870342 ], [ -96.098809257761999, 29.776351197540681 ], [ -96.043951626388832, 29.769853271114549 ], [ -96.036086393309816, 29.771192184538631 ], [ -95.992856111949237, 29.781290546274629 ], [ -95.982914802976481, 29.781141454274795 ], [ -95.970700421692229, 29.778721434273795 ], [ -95.938091410557362, 29.77897109871185 ], [ -95.92150389663837, 29.77710200777647 ], [ -95.854958835220927, 29.777269333373862 ], [ -95.831955122631399, 29.777270102519282 ], [ -95.818168694612751, 29.777649950499114 ], [ -95.812545512482373, 29.7806447868922 ], [ -95.808608380697208, 29.784149622859498 ], [ -95.805129269079458, 29.785339546541945 ], [ -95.776815388622495, 29.784880286717463 ], [ -95.747701489218827, 29.78496801335946 ], [ -95.644892598093307, 29.784778567741515 ], [ -95.617760836426811, 29.784518456848502 ], [ -95.563751318778799, 29.784309225911034 ], [ -95.563133301477905, 29.784297223571709 ], [ -95.562492283312551, 29.7843182200854 ], [ -95.498739493240407, 29.783947950799895 ], [ -95.461781455774585, 29.783836785570074 ], [ -95.454228266919415, 29.780827844888396 ], [ -95.450337171451679, 29.779057882337533 ], [ -95.429126588691915, 29.777479834996171 ], [ -95.410648070312874, 29.777477750953278 ], [ -95.409488037689016, 29.777487745360737 ], [ -95.400706799677593, 29.77645773760721 ], [ -95.384875351629901, 29.776947650241244 ], [ -95.376208091771943, 29.778976547243175 ], [ -95.368814913069968, 29.775507622287304 ], [ -95.365556868434183, 29.769888783603072 ], [ -95.363069814335489, 29.768021830852362 ], [ -95.359415719518026, 29.767126842354337 ], [ -95.350542447104772, 29.769987712383774 ], [ -95.349077406073661, 29.769987705737311 ], [ -95.341325192430645, 29.769577683439167 ], [ -95.336206053399607, 29.769068676203869 ], [ -95.322724633256328, 29.774036458920268 ], [ -95.315384425845082, 29.77422741955505 ], [ -95.301590039401972, 29.774197357802425 ], [ -95.292373751737017, 29.777536210767117 ], [ -95.284004512882944, 29.777996158180066 ] ], [ [ -95.258536827714906, 29.774727145398519 ], [ -95.237242253630924, 29.773808093483879 ], [ -95.221273851455678, 29.770577143887266 ], [ -95.213285635191113, 29.770678114500022 ], [ -95.199682260739451, 29.771618039553555 ], [ -95.183758839399161, 29.770626019524293 ], [ -95.153790025571681, 29.771405895647533 ], [ -95.125102207232601, 29.778083577719364 ], [ -95.09221825229389, 29.789876065346693 ], [ -95.083078000817409, 29.791244985987095 ], [ -95.070634646875519, 29.795244803987746 ], [ -95.065995526858373, 29.794716805213625 ], [ -95.057298317812382, 29.790794908981844 ], [ -95.049394106490396, 29.79099587369469 ], [ -95.026047443228592, 29.79954549057577 ], [ -95.010849038352632, 29.800196411128887 ], [ -94.980857143444283, 29.804932908386697 ], [ -94.941884934891959, 29.811635090503966 ], [ -94.920445270232989, 29.820852469031532 ], [ -94.910000956458006, 29.821091308040071 ], [ -94.899158630765655, 29.821573133689885 ], [ -94.846782066505071, 29.826636215340635 ], [ -94.806580876496, 29.82948155312922 ], [ -94.752769323662619, 29.838790534916082 ], [ -94.682836480851734, 29.840680402993097 ], [ -94.582529817860291, 29.837741423084825 ], [ -94.437690061664313, 29.827059506190952 ], [ -94.396055053399891, 29.827450354209841 ], [ -94.386731833442639, 29.831231210352684 ], [ -94.38406977272939, 29.834050117894034 ], [ -94.357518131150456, 29.858415322898047 ], [ -94.245225791190165, 29.950917505040877 ], [ -94.189597453441067, 30.005606671870066 ], [ -94.145268929795122, 30.049564522985211 ], [ -94.13911972057241, 30.055633366725644 ], [ -94.134991586357799, 30.060912240053145 ], [ -94.134572606094792, 30.068214102993476 ], [ -94.135800725551263, 30.082833843145185 ], [ -94.135831731558397, 30.083811825395653 ], [ -94.136182806708263, 30.096342597610825 ], [ -94.130101572029403, 30.096241557733617 ], [ -94.11140085097027, 30.096062432650395 ], [ -94.104549587743705, 30.096182383449914 ], [ -94.101497465118584, 30.095198380295926 ], [ -94.091442074375934, 30.094542323008934 ], [ -94.083689776646779, 30.094712266649339 ], [ -94.075205452672236, 30.095242198849661 ], [ -94.066027115563159, 30.098261082093373 ], [ -94.039575196091107, 30.115802592920364 ], [ -94.01556436629545, 30.131532158978683 ], [ -94.007493079232447, 30.135221042177996 ], [ -94.000183800394609, 30.135309992871989 ], [ -93.967291526708351, 30.129311855079081 ], [ -93.921170794601139, 30.130554493339748 ], [ -93.891322668514462, 30.129988284791306 ], [ -93.882388331862202, 30.129919220520719 ], [ -93.870150873296254, 30.131493098992344 ], [ -93.862124570743944, 30.131640036776993 ], [ -93.84690299159648, 30.12451007137669 ], [ -93.832483450376102, 30.120630048402504 ], [ -93.820810015410828, 30.115500073758827 ], [ -93.810997651895605, 30.113180054470817 ], [ -93.805786458470578, 30.113360014243824 ], [ -93.804009392299079, 30.113677994983544 ], [ -93.782149570138245, 30.120910682807516 ], [ -93.771857184659339, 30.121442597404496 ], [ -93.767158008774416, 30.121568560947317 ], [ -93.747503285582127, 30.121040446698359 ], [ -93.729596690741417, 30.118440476846295 ], [ -93.717992296565981, 30.120189416203434 ], [ -93.701336719890335, 30.127376212624419 ], [ -93.638185542607047, 30.154577368288145 ], [ -93.587066791002016, 30.176457603432304 ], [ -93.564873033158193, 30.186116243131394 ], [ -93.559066837239556, 30.187507179674096 ], [ -93.41350957039306, 30.214956092070814 ], [ -93.384517148512415, 30.215654071240564 ], [ -93.376133026559174, 30.215736068982178 ], [ -93.358492768876602, 30.214867097202475 ], [ -93.325335286490514, 30.215246086562928 ], [ -93.321742235760368, 30.216116059056414 ], [ -93.317088176186999, 30.220355924398092 ], [ -93.302721984047821, 30.227515696737839 ], [ -93.279497674499751, 30.236356414596486 ], [ -93.238138042296967, 30.23651449927991 ], [ -93.221085733969048, 30.236026641828733 ], [ -93.217026660880833, 30.235354691378323 ], [ -93.190796186795225, 30.236476856751445 ], [ -93.180519965106882, 30.246104695785512 ], [ -93.16223861753555, 30.246058852776617 ], [ -93.137222158201467, 30.244005107614402 ], [ -93.129050997903988, 30.244743161219294 ], [ -93.11253265569394, 30.247616249030244 ], [ -93.034833163844922, 30.247717923083883 ], [ -92.99687636598064, 30.250367198399868 ], [ -92.983296064955979, 30.248647182840312 ], [ -92.969714772768583, 30.246617168037211 ], [ -92.928980771274581, 30.246528084132681 ], [ -92.746756246264511, 30.248146656964192 ], [ -92.703251901470054, 30.246527292958529 ], [ -92.669337840792352, 30.246709986554283 ], [ -92.663470656894972, 30.246816932491694 ], [ -92.647967173014095, 30.246755794566045 ], [ -92.631555677390921, 30.243175696721583 ], [ -92.622507405538457, 30.240474651691073 ], [ -92.607285941677219, 30.23659456508922 ], [ -92.55668634342328, 30.23625510671344 ], [ -92.5304255181873, 30.231785919364349 ], [ -92.48876720396882, 30.231073561476354 ], [ -92.450047003537435, 30.235954210122603 ], [ -92.385202994235371, 30.235803716591544 ], [ -92.362398287807409, 30.235602544936693 ], [ -92.361459258673705, 30.235633537375044 ], [ -92.335778462061768, 30.236243333416766 ], [ -92.307441570575918, 30.24429201113724 ], [ -92.293006112796775, 30.249601829207354 ], [ -92.281859754501284, 30.252037706414054 ], [ -92.269537369111418, 30.252283606713416 ], [ -92.261740126079971, 30.252292545872976 ], [ -92.249028728349572, 30.252312445043906 ], [ -92.213795603824494, 30.247932185249432 ], [ -92.176005378765339, 30.247657842306637 ], [ -92.142588295865295, 30.247416539248512 ], [ -92.06634482971225, 30.246370856491748 ], [ -92.047591217820411, 30.246971674918953 ], [ -92.036283821961746, 30.250959506910636 ], [ -92.015623078069197, 30.259420189970871 ], [ -91.995930402760649, 30.266919899038683 ], [ -91.9914522810557, 30.268078842731075 ], [ -91.949428163118313, 30.281109274951913 ], [ -91.928454622762473, 30.290592939774577 ], [ -91.918276371673983, 30.294811781540179 ], [ -91.915721312776299, 30.294729759835903 ], [ -91.896165851801015, 30.300535489942778 ], [ -91.859209022584452, 30.310378991368861 ], [ -91.819642176265106, 30.317128512774811 ], [ -91.795661689313334, 30.322627195279637 ], [ -91.645055823577863, 30.363735020333902 ], [ -91.517436879308747, 30.397274424596482 ], [ -91.474887291253694, 30.409454858431289 ], [ -91.433016954722746, 30.418073106005178 ], [ -91.407824761001947, 30.426121590459545 ], [ -91.394808668629906, 30.43116230330887 ], [ -91.318186330951974, 30.451290755775155 ], [ -91.271090202239264, 30.453670992873981 ], [ -91.244081944406176, 30.447290813305017 ], [ -91.232064610994641, 30.445560838227408 ], [ -91.222749341878071, 30.442441898887083 ], [ -91.208420943582581, 30.440280932225026 ], [ -91.195908602723705, 30.439561934608733 ], [ -91.187393370492686, 30.439031937302385 ], [ -91.186920357697304, 30.439019937045508 ], [ -91.181046200311059, 30.43912192795759 ], [ -91.177796102306118, 30.437370965540019 ], [ -91.173965958728658, 30.43067011954119 ], [ -91.166289723982842, 30.426022221727088 ], [ -91.125609598254755, 30.421002302737772 ], [ -91.118246380137009, 30.417763374413045 ], [ -91.112288206591671, 30.415631420915592 ], [ -91.10169787180152, 30.407582608383859 ], [ -91.085507356791453, 30.394841909445223 ], [ -91.065876747726051, 30.382001215964369 ], [ -91.051052283910494, 30.371763464750785 ], [ -91.028781518120738, 30.345507119765724 ], [ -91.013698015808856, 30.330479500829849 ], [ -91.000078565576814, 30.317534833402057 ], [ -90.996134412275623, 30.311195007127861 ], [ -90.993578296483932, 30.304534184801625 ], [ -90.988824995668267, 30.278894853109282 ], [ -90.98541383695013, 30.269576100230591 ], [ -90.964241916594275, 30.230836097520967 ], [ -90.953781496843348, 30.218067424281667 ], [ -90.946762227507364, 30.210725616786529 ], [ -90.937361873120821, 30.201446863626327 ], [ -90.92002029727945, 30.192748125295132 ], [ -90.913634086504402, 30.189618220864524 ], [ -90.876378868005474, 30.17187777582571 ], [ -90.818073073283884, 30.15543739489906 ], [ -90.80655273290013, 30.153759480623361 ], [ -90.777376867754953, 30.148908715219864 ], [ -90.759546322373367, 30.143547921939856 ], [ -90.700591552898601, 30.125889573276819 ], [ -90.681151997736521, 30.123870688133763 ], [ -90.649695098535901, 30.120721871627275 ], [ -90.569843812337709, 30.113394323634143 ], [ -90.522844460984061, 30.109115591184359 ], [ -90.504792940251022, 30.107420695804731 ], [ -90.492471547834967, 30.103922808690125 ], [ -90.441489868961696, 30.088551231126679 ], [ -90.431922552780833, 30.085791304576833 ], [ -90.40920179862232, 30.079215476417058 ], [ -90.399420448515912, 30.074301602014604 ], [ -90.308107909881144, 30.012624086307206 ], [ -90.294672422855712, 30.007163204277582 ], [ -90.280076962005623, 30.006543204241002 ], [ -90.266221545442122, 30.007523167158975 ], [ -90.240089774532592, 30.009173065270609 ], [ -90.221176203151231, 30.007953003236999 ], [ -90.212828949007928, 30.007261979045506 ], [ -90.208472791920713, 30.005084007217611 ], [ -90.197379402588425, 29.99967307771659 ], [ -90.184218019430091, 29.998772039048333 ], [ -90.155347178414999, 29.997131945330878 ], [ -90.123173240778584, 29.995624832634753 ], [ -90.118725114540155, 29.994184853176851 ], [ -90.11600904251587, 29.991468919587575 ], [ -90.11576505098769, 29.985774085255073 ], [ -90.109668917353147, 29.969684528604624 ], [ -90.108036876288111, 29.967334590128594 ], [ -90.086162283217405, 29.951814949332825 ], [ -90.084133224301993, 29.951783941283711 ], [ -90.08282018176962, 29.95329489071802 ], [ -90.079952088812163, 29.956593780173367 ], [ -90.077816019981057, 29.958894702349603 ], [ -90.07328387320311, 29.963982530784428 ], [ -90.065714628005338, 29.972354246965423 ], [ -90.06542461860839, 29.97267223614838 ], [ -90.062594526787237, 29.975802129694504 ], [ -90.057948378829508, 29.979952984046317 ], [ -90.054102256722032, 29.983223868128711 ], [ -90.052699204916422, 29.986824753726772 ], [ -90.049494096757556, 29.991623594676799 ], [ -90.041414835533757, 29.999792310381739 ], [ -90.035592694904651, 30.002703220843301 ], [ -90.029260526600524, 30.00409116321612 ], [ -90.023286367721482, 30.005401109120147 ], [ -90.019983279797103, 30.006122079391613 ], [ -90.015367159477378, 30.007341033945263 ], [ -90.013116132125759, 30.010482963269567 ], [ -90.014200308579859, 30.022231744096391 ], [ -90.012086284398734, 30.025321675673879 ], [ -89.996849833969122, 30.028340540837092 ], [ -89.976097071778113, 30.036681223185592 ], [ -89.939314801209633, 30.059530483499397 ], [ -89.934958651540214, 30.062441389742311 ], [ -89.879368977232701, 30.124729622657508 ], [ -89.858540350801576, 30.150517875170525 ], [ -89.824107187079804, 30.183380811809393 ], [ -89.794397155507497, 30.211451867247089 ], [ -89.769639281116511, 30.235131050038127 ], [ -89.765954173706021, 30.241323864772404 ], [ -89.754846154668613, 30.270303295929679 ], [ -89.749635218842215, 30.284805080665194 ], [ -89.74176133965247, 30.306403875293221 ], [ -89.72397654732363, 30.301576027248316 ], [ -89.710883968500127, 30.298152139206415 ], [ -89.672880458026896, 30.296876362605396 ], [ -89.641484343988381, 30.303193451793248 ], [ -89.598353874702624, 30.316095506481236 ], [ -89.543656986644876, 30.332694548151817 ], [ -89.537453751409416, 30.333394568481875 ], [ -89.52875637693036, 30.331594637915959 ], [ -89.522553136874521, 30.331994662657937 ], [ -89.455350730209474, 30.34849586081954 ], [ -89.423253618471676, 30.358394940265192 ], [ -89.340944783492333, 30.383683097320173 ], [ -89.321946137244751, 30.38979611869409 ], [ -89.308945747572722, 30.397095073709647 ], [ -89.30054547280622, 30.400395069238993 ], [ -89.273246467413003, 30.404295178054706 ], [ -89.23814205823696, 30.403494470411065 ], [ -89.230245760580701, 30.404995523158345 ], [ -89.198643649102095, 30.416495634208793 ], [ -89.172839603559467, 30.417595884418656 ], [ -89.136286192135032, 30.424297147627001 ], [ -89.125039735242368, 30.424896255927173 ], [ -89.10070080534868, 30.430772410590471 ], [ -89.094040554991381, 30.432796446276122 ], [ -89.072425724106495, 30.438266583279177 ], [ -89.032247115332467, 30.444196916465536 ], [ -88.999233796211897, 30.449896176704847 ], [ -88.993236591370504, 30.452097172559835 ], [ -88.982433250035001, 30.458897121076774 ], [ -88.974734972492797, 30.460497137350067 ], [ -88.971232829818888, 30.459597170540398 ], [ -88.97062981678792, 30.46059715806614 ], [ -88.955332226034145, 30.459897251977537 ], [ -88.9444447586406, 30.454424394497092 ], [ -88.935335370713602, 30.449997509773556 ], [ -88.924431932052784, 30.447297607106194 ], [ -88.91273549402662, 30.447922658621362 ], [ -88.896034904011216, 30.452998672488274 ], [ -88.883445431178743, 30.45371372900728 ], [ -88.811825710495441, 30.454298101517661 ], [ -88.800762302277079, 30.456184136498905 ], [ -88.789829901090371, 30.458498166211598 ], [ -88.782428619495974, 30.458599204885356 ], [ -88.746027145359406, 30.446699524575024 ], [ -88.732324565281118, 30.446499545665155 ], [ -88.717621911830207, 30.441898618722767 ], [ -88.688621599336955, 30.431697773015149 ], [ -88.625019940474502, 30.437698788528429 ], [ -88.556780042108187, 30.438198872814063 ], [ -88.544312524965164, 30.439197878829827 ], [ -88.528717892642661, 30.441398876789979 ], [ -88.5236367135427, 30.443985857041483 ], [ -88.494216637942415, 30.455997730857842 ], [ -88.458311083732809, 30.457998476515318 ], [ -88.436215143837288, 30.460699292116846 ], [ -88.419414471430386, 30.466398085600375 ], [ -88.400507723385985, 30.474198810222727 ], [ -88.400462721552174, 30.474213809603597 ], [ -88.358896041346426, 30.491236124983725 ], [ -88.309439895154583, 30.502050391280793 ], [ -88.289786047730885, 30.510153947645865 ], [ -88.242336079471116, 30.535762739995029 ], [ -88.220554361011494, 30.546535323974553 ], [ -88.202608801295455, 30.55950486969925 ], [ -88.183138206479143, 30.573704386787576 ], [ -88.170289806970501, 30.581023134725942 ], [ -88.162049552683825, 30.585679976689349 ], [ -88.154138347337465, 30.59543767766079 ], [ -88.146501165554284, 30.6066913414083 ], [ -88.135765883532358, 30.618084999051337 ], [ -88.13050173398436, 30.621920881830388 ], [ -88.116287302296811, 30.628170682422102 ], [ -88.107330023349405, 30.631001589035964 ], [ -88.088996481462516, 30.63981132201366 ], [ -88.05044443974721, 30.666318584140853 ], [ -88.044073313025834, 30.675037357297644 ], [ -88.042211364082036, 30.686799058344231 ], [ -88.038481266506551, 30.689223995823088 ], [ -88.029890012882547, 30.691700931286871 ], [ -88.022855779606857, 30.69108094496185 ], [ -88.007604240936317, 30.686601050381302 ], [ -87.994289796607276, 30.682290159523706 ], [ -87.984615488197903, 30.677501288200553 ], [ -87.974712152736771, 30.670579468466684 ], [ -87.959788691217653, 30.664279639860307 ], [ -87.927591755286272, 30.656200875552731 ], [ -87.913492375184305, 30.655589908112336 ], [ -87.911867331408573, 30.655521911804236 ], [ -87.868104221570249, 30.661082834415204 ], [ -87.851806805348346, 30.662957810572639 ], [ -87.844535610411853, 30.662790823901034 ], [ -87.786611979979455, 30.652241148290603 ], [ -87.760122277401081, 30.652182183044786 ], [ -87.73184645041114, 30.651881244778149 ], [ -87.711025763194044, 30.645802438651337 ], [ -87.69290517811433, 30.642081571490436 ], [ -87.680193743720395, 30.636471738350458 ], [ -87.607048436427903, 30.627893132971604 ], [ -87.573043288783751, 30.614251565456357 ], [ -87.547766376734089, 30.596415089988117 ], [ -87.531102785558289, 30.585841410134961 ], [ -87.51664530921532, 30.581322570085202 ], [ -87.487743345220082, 30.58141663669738 ], [ -87.466762534859782, 30.577437772794479 ], [ -87.444246703612734, 30.578389782777549 ], [ -87.427706083425875, 30.577679826776667 ], [ -87.410874430857547, 30.573374964559232 ], [ -87.374946035398722, 30.562133311276448 ], [ -87.340284641346173, 30.538577973785781 ], [ -87.334326405077505, 30.534615085233096 ], [ -87.313527590313058, 30.521546454034986 ], [ -87.281955384985849, 30.505076925631421 ], [ -87.266619832237694, 30.504454963950288 ], [ -87.229845622989998, 30.504455029231682 ], [ -87.221468368353769, 30.504455046343288 ], [ -87.213930135160311, 30.503006099933664 ], [ -87.183587213361989, 30.503006162629763 ], [ -87.169113773668172, 30.503006192535185 ], [ -87.162551583136292, 30.507005097334712 ], [ -87.143737037073677, 30.520274770005869 ], [ -87.122855423509122, 30.534584408807163 ], [ -87.08727832835352, 30.53359549208729 ], [ -87.083837222995399, 30.533905488649452 ], [ -87.079481089134035, 30.533934494624372 ], [ -87.075779977193704, 30.535454456910703 ], [ -87.031520639458293, 30.569637522099796 ], [ -87.019779278653672, 30.578643267663445 ], [ -86.972306759171872, 30.615584179096441 ], [ -86.963166458860243, 30.618933078165735 ], [ -86.937279608006307, 30.627332824262833 ], [ -86.848546696601034, 30.670222524145984 ], [ -86.792354849127761, 30.685202062125121 ], [ -86.736849181072003, 30.704120460689694 ], [ -86.691918245725105, 30.714441058468971 ], [ -86.656051499152696, 30.71691090791553 ], [ -86.622046782974564, 30.714798913250654 ], [ -86.603080395216011, 30.71814975943602 ], [ -86.593802212965514, 30.722031603342312 ], [ -86.585067041652579, 30.725418463779086 ], [ -86.568556699797767, 30.725699416272516 ], [ -86.551473348591742, 30.726628343335761 ], [ -86.499928281133421, 30.72704020898048 ], [ -86.479084696386735, 30.720879472442792 ], [ -86.448481864788349, 30.717810624406852 ], [ -86.440676658904849, 30.718378612844806 ], [ -86.391611401875124, 30.729788272652794 ], [ -86.373665943098786, 30.734080153145467 ], [ -86.351265338919646, 30.732760235682793 ], [ -86.336845955651611, 30.733099248347198 ], [ -86.307060213567652, 30.744058944777894 ], [ -86.286032679725452, 30.749627811555328 ], [ -86.27606841619864, 30.750077819436093 ], [ -86.242650489067444, 30.748239912033856 ], [ -86.231817142715428, 30.744409996545748 ], [ -86.210652430660829, 30.727200453084695 ], [ -86.187885731854507, 30.72252952375403 ], [ -86.182132552410579, 30.720358571034556 ], [ -86.147402445507637, 30.69530020778641 ], [ -86.143740334624511, 30.69402023381366 ], [ -86.131173964010159, 30.69295222429038 ], [ -86.122560710651442, 30.692371213197497 ], [ -86.114015459238885, 30.69168020550109 ], [ -86.025320866150977, 30.690310953355159 ], [ -85.964192303317361, 30.701590702032576 ], [ -85.959142187243842, 30.703749665489752 ], [ -85.935055633804893, 30.713740510662287 ], [ -85.902591888260389, 30.72812930794246 ], [ -85.861086938937248, 30.750947988730839 ], [ -85.831125277596669, 30.756595974744762 ], [ -85.793435433829728, 30.760180071580255 ], [ -85.735336309551272, 30.759913572774249 ], [ -85.713508133769295, 30.762558817498562 ], [ -85.684989882535632, 30.762519271312502 ], [ -85.660086660590167, 30.76222967834633 ], [ -85.621176250008702, 30.756363551655419 ], [ -85.585622870350491, 30.752088318944452 ], [ -85.560735608153109, 30.749551815933362 ], [ -85.551992512863009, 30.747373965832566 ], [ -85.537588366255633, 30.745783202200439 ], [ -85.465375006730213, 30.744933831785129 ], [ -85.432600033672884, 30.746735858041948 ], [ -85.414159054348303, 30.74789387302387 ], [ -85.381773150886303, 30.753422757235779 ], [ -85.333723246845238, 30.758603581418448 ], [ -85.32665023100337, 30.757304643458447 ], [ -85.312856262226802, 30.759163581292224 ], [ -85.284162260711867, 30.758294648242085 ], [ -85.273283214449037, 30.754492810210678 ], [ -85.230107386513538, 30.733300810804732 ], [ -85.21739602047947, 30.728133711313681 ], [ -85.185169250103186, 30.721564480116879 ], [ -85.164149725550118, 30.71667334960917 ], [ -85.111718906492158, 30.687203248488654 ], [ -85.10617172645938, 30.684683245709838 ], [ -85.085984178644779, 30.679432210135595 ], [ -85.065810540836978, 30.671294226786394 ], [ -85.038069527679397, 30.656033349595067 ], [ -85.026854146967125, 30.651013399537831 ], [ -85.014554845509721, 30.64939340032404 ], [ -85.005948500446863, 30.643942476269373 ], [ -84.993978159244406, 30.63991450075142 ], [ -84.986829016890454, 30.638853475049729 ], [ -84.965656751830394, 30.640913309504967 ], [ -84.955387478978793, 30.636914313206784 ], [ -84.936314159537972, 30.635863211895302 ], [ -84.919139984718925, 30.639113052780047 ], [ -84.904262610465977, 30.633412050788678 ], [ -84.895732411574627, 30.630593041232725 ], [ -84.884532295804576, 30.632673938318668 ], [ -84.872539096029726, 30.631831875663945 ], [ -84.829279147253573, 30.617582807927196 ], [ -84.81627796757347, 30.617772719879689 ], [ -84.800614832888684, 30.622201555685884 ], [ -84.777780492357607, 30.621541416567069 ], [ -84.755860011854537, 30.611762401834682 ], [ -84.745850792395714, 30.610242429675306 ], [ -84.739510549783986, 30.606132558693453 ], [ -84.729515207473867, 30.602002733399747 ], [ -84.716025596402602, 30.586953105167044 ], [ -84.707969285595169, 30.581152287724471 ], [ -84.699622012639139, 30.578152436357193 ], [ -84.67314718014245, 30.570414890536814 ], [ -84.648366406777726, 30.563095327855923 ], [ -84.609508090445587, 30.543225178631975 ], [ -84.595492653925078, 30.538325457005804 ], [ -84.594264604829547, 30.537095495635139 ], [ -84.569032858720746, 30.53072696340978 ], [ -84.536363006809708, 30.530817422690941 ], [ -84.525033693467279, 30.529405610188963 ], [ -84.507783240352609, 30.529146859492389 ], [ -84.499885999640853, 30.526257029946066 ], [ -84.462965357485729, 30.506636783398719 ], [ -84.446485602587856, 30.496017118420649 ], [ -84.425862739419699, 30.489818380442728 ], [ -84.423802642243288, 30.488329415413048 ], [ -84.422223587322904, 30.488727426585481 ], [ -84.413845236512287, 30.486148533425968 ], [ -84.397266595236829, 30.48519970261815 ], [ -84.383373055313925, 30.484188846516506 ], [ -84.363123231434813, 30.47968008649266 ], [ -84.354486886691035, 30.478268183602196 ], [ -84.329857957068569, 30.478602416935562 ], [ -84.308479194319958, 30.482609582815837 ], [ -84.277686145353158, 30.492800779180513 ], [ -84.262152643830859, 30.500539849120194 ], [ -84.252462282750884, 30.501408923058371 ], [ -84.248007115796099, 30.501408962443726 ], [ -84.227269355443056, 30.501409123013644 ], [ -84.214260865534257, 30.499960254505808 ], [ -84.209934689522058, 30.498510302999179 ], [ -84.179568576056511, 30.498510539596609 ], [ -84.158823647431731, 30.485309845463963 ], [ -84.147814168193463, 30.479589996479312 ], [ -84.11412090284685, 30.477980285913961 ], [ -84.066039129574776, 30.478181671065546 ], [ -84.041189295623951, 30.484050798109273 ], [ -84.025403767647376, 30.487761877036693 ], [ -84.018246525819904, 30.489241914902774 ], [ -83.999363838597077, 30.489693061261669 ], [ -83.957202308444835, 30.48731265173361 ], [ -83.952479125104063, 30.486252728299142 ], [ -83.939935573064346, 30.479112988498933 ], [ -83.906449373536233, 30.478352443392819 ], [ -83.890441765997437, 30.475743690557699 ], [ -83.889625734321513, 30.475564703769813 ], [ -83.878478310869909, 30.47373387617527 ], [ -83.821126249045975, 30.47202566144778 ], [ -83.767184096181168, 30.456716584589703 ], [ -83.742167061286878, 30.446386057156744 ], [ -83.724298445132405, 30.445301310031979 ], [ -83.676085815242956, 30.444466964439211 ], [ -83.647863749501056, 30.436988447744877 ], [ -83.62688299586749, 30.433896773536759 ], [ -83.608548346625611, 30.431797050294279 ], [ -83.560099698612561, 30.430477721139471 ], [ -83.516168320960062, 30.436408220878953 ], [ -83.468162869699043, 30.434950106416228 ], [ -83.455627462576174, 30.431254428419411 ], [ -83.430815492318516, 30.413282292243441 ], [ -83.374898737357029, 30.398981832898162 ], [ -83.356068170546422, 30.395522340763147 ], [ -83.326038246478703, 30.388415208535907 ], [ -83.305224583059442, 30.381693874307778 ], [ -83.254472038445144, 30.369666436427103 ], [ -83.193594737790434, 30.35765491880251 ], [ -83.167737739134267, 30.3528185269315 ], [ -83.107295313548548, 30.337229077536744 ], [ -83.100162069127379, 30.338031179837056 ], [ -83.090303797686119, 30.343020203061265 ], [ -83.081980577244778, 30.34764921009825 ], [ -83.076731411405376, 30.348969263272661 ], [ -83.058816765305153, 30.348811586694843 ], [ -83.033272912828025, 30.352380932614231 ], [ -83.013748183402981, 30.350780328537329 ], [ -82.995360560353049, 30.34862169471938 ], [ -82.987021353434315, 30.345892877877567 ], [ -82.979056128678664, 30.341801099901502 ], [ -82.962622612515645, 30.330373657339813 ], [ -82.942082977805782, 30.316313361714489 ], [ -82.909489095476502, 30.300223308264055 ], [ -82.879169404768959, 30.292073985393259 ], [ -82.831523417999804, 30.284405897430371 ], [ -82.806596835958189, 30.276196532633989 ], [ -82.79476359332125, 30.274247767948921 ], [ -82.754426755432277, 30.266657614980325 ], [ -82.736954367586179, 30.262768995455694 ], [ -82.693847309938036, 30.245319139625991 ], [ -82.674468941823676, 30.245098406975501 ], [ -82.664046743458641, 30.244949551591109 ], [ -82.638289218654677, 30.241619978182968 ], [ -82.635062155178375, 30.241416027232155 ], [ -82.624700953674107, 30.2409681802114 ], [ -82.577268074983209, 30.242520792352 ], [ -82.543110512359661, 30.248772086962688 ], [ -82.508006895836402, 30.252232435312624 ], [ -82.478999327871236, 30.259711506456188 ], [ -82.457484783010344, 30.25691687112452 ], [ -82.420907875727465, 30.253722414144661 ], [ -82.333053784282427, 30.25411343931987 ], [ -82.326865621951185, 30.2525835460976 ], [ -82.303549802074244, 30.238824129371437 ], [ -82.294851484575801, 30.233863339369464 ], [ -82.287985300925797, 30.233123430907003 ], [ -82.165256748132251, 30.262036774926592 ], [ -82.12306465456426, 30.259025543036341 ], [ -82.114191433429113, 30.259197694304248 ], [ -82.104631237822431, 30.262935814810454 ], [ -82.070435564377235, 30.277398242546337 ], [ -82.049577100871659, 30.281424564335087 ], [ -82.03758283168186, 30.283419754061903 ], [ -82.02136246913993, 30.286108011938083 ], [ -81.982802254479836, 30.288969416228188 ], [ -81.958601254769079, 30.291158468986183 ], [ -81.927197067393038, 30.301048469425453 ], [ -81.899790956029221, 30.3043885242888 ], [ -81.848671864874774, 30.309047644638998 ], [ -81.799902898658345, 30.314767751269425 ], [ -81.770513666282568, 30.315267843067357 ], [ -81.742588484813979, 30.31551995207629 ], [ -81.730847010582792, 30.317408006024756 ], [ -81.722553709299348, 30.320738026255526 ], [ -81.69922171225204, 30.321540157756765 ], [ -81.690798331096019, 30.320550216831403 ], [ -81.68213096849037, 30.32133026120081 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I105\", \"DIST_MILES\": 20.750000, \"DIST_KM\": 33.390000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -123.086570491238859, 44.053684904084776 ], [ -123.086911227127047, 44.05466912471335 ], [ -123.087276597897883, 44.065075585725765 ], [ -123.085962043213343, 44.06624585349968 ], [ -123.085392701346933, 44.06629952560899 ], [ -123.073435493084062, 44.062759543914481 ], [ -123.066676630642817, 44.063778682682837 ], [ -123.041889208770357, 44.064511531412045 ], [ -123.035890834355428, 44.063463097602813 ] ], [ [ -118.395026820433358, 33.930853593550708 ], [ -118.376976904072819, 33.930710563128294 ], [ -118.368886967194271, 33.930481106289008 ], [ -118.367124829667674, 33.930714003864814 ], [ -118.366141304595516, 33.930927945798054 ], [ -118.351377448869059, 33.93363508342123 ], [ -118.343485555429709, 33.930953671087394 ], [ -118.335182103141875, 33.924880275032926 ], [ -118.325580811906022, 33.925088739275978 ], [ -118.307103805352824, 33.925751712984201 ], [ -118.300720734275927, 33.928192336610834 ], [ -118.290548661271743, 33.928348780139352 ], [ -118.281375095104906, 33.92839428189307 ], [ -118.27952198843775, 33.92840918147666 ], [ -118.277074171746705, 33.928371049610611 ], [ -118.263988573040763, 33.926886361351663 ], [ -118.253136757861526, 33.927007779662205 ], [ -118.228665142636032, 33.927112941125877 ], [ -118.22434101573883, 33.928805584043111 ], [ -118.223517347196278, 33.929477512287342 ], [ -118.223037546454691, 33.929782471431587 ], [ -118.220406738067638, 33.930064262594122 ], [ -118.219453204483287, 33.929679192238758 ], [ -118.215838982424955, 33.928049927681499 ], [ -118.208723463587646, 33.924978406600651 ], [ -118.188470299144939, 33.916302931700791 ], [ -118.178419145972285, 33.911953205158831 ], [ -118.175902348587911, 33.910969022578946 ], [ -118.167841979378352, 33.910937404443331 ], [ -118.159125889173879, 33.910951737489512 ], [ -118.147724801167129, 33.913724837238711 ], [ -118.139313547556469, 33.913716198323421 ], [ -118.103814211453752, 33.913835521132675 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I110\", \"DIST_MILES\": 41.420000, \"DIST_KM\": 66.650000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -87.229845622989998, 30.504455029231682 ], [ -87.229845416951477, 30.478426612782449 ], [ -87.224062052789833, 30.456736095763546 ], [ -87.221657943419416, 30.452387195258012 ], [ -87.218277797470776, 30.447108317021364 ], [ -87.215378620026925, 30.436488553693454 ], [ -87.213929456511025, 30.422467861105563 ], [ -87.211373333015402, 30.416756990529063 ], [ -87.210633307163832, 30.416248003160334 ], [ -87.205674164810816, 30.416435009710465 ] ], [ [ -118.272658041810118, 34.03846857793895 ], [ -118.27307805914306, 34.035629709544416 ], [ -118.273459299202443, 34.030144939365371 ], [ -118.273596416060059, 34.027776037003626 ], [ -118.276777385867433, 34.021283459043111 ], [ -118.278798692874275, 34.017636707828991 ], [ -118.279744732720161, 34.011194001788411 ], [ -118.279356587475235, 33.989096514941409 ], [ -118.279724471152491, 33.974741690383539 ], [ -118.279648581883777, 33.960200843904509 ], [ -118.278498210784349, 33.945650939458467 ], [ -118.279299899281384, 33.931072140631883 ], [ -118.27952198843775, 33.92840918147666 ], [ -118.281810491018746, 33.920169394607157 ], [ -118.284631400608561, 33.916469587688496 ], [ -118.285289153444936, 33.901927781173576 ], [ -118.284435243695143, 33.892722834582877 ], [ -118.284298852260719, 33.885345907140433 ], [ -118.283894965707844, 33.872856020522285 ], [ -118.283888807199716, 33.8614431438344 ], [ -118.28334740332609, 33.856888163664543 ], [ -118.283965894690255, 33.84612331396783 ], [ -118.284919716890613, 33.842263407840086 ], [ -118.286185597575127, 33.835545549795121 ], [ -118.286447409583943, 33.809094850696674 ], [ -118.287507529324913, 33.800455002419916 ], [ -118.280904441410158, 33.790604747182201 ], [ -118.279105158873023, 33.778992774106726 ], [ -118.278716866771845, 33.771870829705819 ], [ -118.282362674831006, 33.764104113381052 ], [ -118.287991306670619, 33.759271475048294 ], [ -118.289645731393577, 33.756181599655072 ], [ -118.289829205004921, 33.748754705758273 ] ], [ [ -88.896034904011216, 30.452998672488274 ], [ -88.894927814830567, 30.447497757328641 ], [ -88.893829316435131, 30.393999530073284 ] ], [ [ -91.189163843679452, 30.537988586973615 ], [ -91.185929756062606, 30.536548615672416 ], [ -91.178070548459146, 30.536578599682308 ], [ -91.171356366930922, 30.534139646021668 ], [ -91.164620175908979, 30.526849810614472 ], [ -91.159294016996924, 30.517168036491963 ], [ -91.158630984694895, 30.509159230531658 ], [ -91.158996978135761, 30.50020844945908 ], [ -91.166290099712, 30.487999752285326 ], [ -91.167343057595659, 30.476390029187716 ], [ -91.166022936558846, 30.462270361936 ], [ -91.166160926322618, 30.459970416662813 ], [ -91.167243946692579, 30.458530452277568 ], [ -91.179474266123336, 30.457010504712095 ], [ -91.180603286790102, 30.45540954392548 ], [ -91.180374245838053, 30.449649679265779 ], [ -91.178681163772509, 30.443601819676324 ], [ -91.177796102306118, 30.437370965540019 ] ], [ [ -106.452115800193937, 31.76478566555571 ], [ -106.452062803102791, 31.765304650365351 ], [ -106.450887807883618, 31.7692395397201 ], [ -106.446721728259021, 31.770948513081162 ], [ -106.445218712117338, 31.773208454638006 ], [ -106.442517683221837, 31.777337347872983 ], [ -106.441236686194699, 31.781509231647071 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I115\", \"DIST_MILES\": 1.580000, \"DIST_KM\": 2.550000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -112.571282345792625, 46.00500667901936 ], [ -112.562020823451803, 46.003007650244143 ], [ -112.554361226157525, 46.003045638281094 ], [ -112.538890035853726, 46.003907620974566 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I12\", \"DIST_MILES\": 85.320000, \"DIST_KM\": 137.310000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -91.118246380137009, 30.417763374413045 ], [ -91.097776823719997, 30.416922376630758 ], [ -91.090161621403894, 30.417370358860076 ], [ -91.075086252670616, 30.42338019669906 ], [ -91.066114034990392, 30.427222092627673 ], [ -91.056561793568733, 30.429741020178096 ], [ -90.98546098121993, 30.447498560432436 ], [ -90.956407221604991, 30.454110497961398 ], [ -90.915475165920583, 30.464771379503279 ], [ -90.862731752929889, 30.470010444962629 ], [ -90.835791038277492, 30.473399461875232 ], [ -90.72911414947113, 30.474300882140561 ], [ -90.707781608236246, 30.475650972354192 ], [ -90.664880486923735, 30.474430247156477 ], [ -90.615372207678391, 30.474781523005628 ], [ -90.558211762235288, 30.478825763320952 ], [ -90.488919951736378, 30.478801108173908 ], [ -90.485379854675358, 30.478772111230828 ], [ -90.482655780437568, 30.478801112507089 ], [ -90.456936077463126, 30.478841129450174 ], [ -90.429034314450178, 30.478839148784473 ], [ -90.356652335667135, 30.478902197442196 ], [ -90.313828192630112, 30.482051156491583 ], [ -90.24433723885825, 30.47944226159203 ], [ -90.235104923576529, 30.477842302843115 ], [ -90.206783896655281, 30.465812590487285 ], [ -90.151567971650408, 30.449884973229619 ], [ -90.140367583691145, 30.446753047683245 ], [ -90.116791759379524, 30.438950230403481 ], [ -90.084663646642923, 30.429083459735761 ], [ -90.08442763812586, 30.428963462464171 ], [ -90.067199053137713, 30.424954555906201 ], [ -90.054366608213272, 30.420622654783262 ], [ -90.00154571125006, 30.392005291831001 ], [ -89.957194883572356, 30.371627453104551 ], [ -89.920389261355126, 30.352205569338032 ], [ -89.889282833282905, 30.335855620253835 ], [ -89.876197243559943, 30.330982595643242 ], [ -89.837255461635735, 30.317274479176795 ], [ -89.825993931122653, 30.313005441694408 ], [ -89.815342437113316, 30.309715391993386 ], [ -89.770456582817715, 30.310032976326546 ], [ -89.754884930844554, 30.309683837750065 ], [ -89.74176133965247, 30.306403875293221 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I124\", \"DIST_MILES\": 1.730000, \"DIST_KM\": 2.790000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -85.315525162095526, 35.055253911018283 ], [ -85.313915072366541, 35.051934974959501 ], [ -85.3142810007283, 35.046274112981934 ], [ -85.314570944612925, 35.041833221119838 ], [ -85.31940101298386, 35.037775358045273 ], [ -85.318835917856561, 35.032171485174992 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I126\", \"DIST_MILES\": 3.560000, \"DIST_KM\": 5.720000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -81.100441076432134, 34.027042048996314 ], [ -81.094550983532542, 34.020515329348356 ], [ -81.091956930023699, 34.018318446370031 ], [ -81.079185570278568, 34.013000952943784 ], [ -81.069343243631721, 34.011803302668277 ], [ -81.056768854519305, 34.008191800128444 ], [ -81.05022260285395, 34.009648989570358 ], [ -81.046133439958368, 34.0110110957201 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I129\", \"DIST_MILES\": 3.100000, \"DIST_KM\": 4.990000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -96.435855193658426, 42.449335278232844 ], [ -96.431125071206012, 42.449365239805601 ], [ -96.414003628336218, 42.449453100678326 ], [ -96.409098501446735, 42.449484060860961 ], [ -96.380639784136974, 42.447003815621358 ], [ -96.375069643469431, 42.446374766405114 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I135\", \"DIST_MILES\": 96.290000, \"DIST_KM\": 154.960000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -97.645630317360769, 38.874563526017717 ], [ -97.647980647634725, 38.846830922494455 ], [ -97.646553653787919, 38.841452981504204 ], [ -97.645775647463239, 38.83957199952836 ], [ -97.641014594099033, 38.829730087600261 ], [ -97.639893583697301, 38.827205111215662 ], [ -97.633850533225541, 38.813163244857591 ], [ -97.618065213770109, 38.797034317873845 ], [ -97.617165318554527, 38.783523493862447 ], [ -97.617211420295561, 38.77322763471814 ], [ -97.617546469895075, 38.769153693328043 ], [ -97.618386766418396, 38.740166087949568 ], [ -97.618675859303167, 38.730454214721796 ], [ -97.622094055010621, 38.719704380715356 ], [ -97.621896385764813, 38.68129486776575 ], [ -97.62153088856347, 38.622586612446653 ], [ -97.62120999764349, 38.608934784338217 ], [ -97.620753489261631, 38.550967520575433 ], [ -97.620876075999064, 38.49261822469289 ], [ -97.622012270997914, 38.484256289739953 ], [ -97.620679327296955, 38.370968113955151 ], [ -97.621343922283131, 38.340104340806718 ], [ -97.621397244757105, 38.322819467186036 ], [ -97.616988251471199, 38.314648521283694 ], [ -97.555395267730859, 38.261010879914529 ], [ -97.534390839539654, 38.244607015172129 ], [ -97.524540587236757, 38.234018119216252 ], [ -97.505124049825127, 38.220819247328031 ], [ -97.481136499524283, 38.196798623213901 ], [ -97.446398690939446, 38.173590051846453 ], [ -97.439638547958438, 38.167990137109847 ], [ -97.42890436749488, 38.15408930523224 ], [ -97.402177846253082, 38.131602594948689 ], [ -97.391107683283892, 38.117838729972604 ], [ -97.358438117829238, 38.090399996040382 ], [ -97.345993869199688, 38.084320059807503 ], [ -97.343849825015653, 38.08343806947876 ], [ -97.333138611438798, 38.078548117719485 ], [ -97.327088539453996, 38.071655159504786 ], [ -97.322396524358055, 38.062942202454359 ], [ -97.322762804158572, 38.039531290089137 ], [ -97.327935043142574, 38.029354325288431 ], [ -97.328096131563754, 38.021934354635682 ], [ -97.328065224853233, 38.013694387337729 ], [ -97.326868078215185, 37.977340531782474 ], [ -97.327784785898629, 37.955772618048364 ], [ -97.328319420310677, 37.936210695981302 ], [ -97.326603153884918, 37.912216792503592 ], [ -97.326216019414261, 37.853661027442762 ], [ -97.327528549685894, 37.837674089730761 ], [ -97.326232463527802, 37.808510208413985 ], [ -97.32823191959146, 37.79502225877664 ], [ -97.325524167462291, 37.78623329909626 ], [ -97.32489160184933, 37.772442355822839 ], [ -97.321747910041168, 37.761773405758788 ], [ -97.319231276456406, 37.743401628816216 ], [ -97.316682270247156, 37.733193896635996 ], [ -97.31905531603968, 37.722643161104372 ], [ -97.321596351951555, 37.718263266809657 ], [ -97.321962365212315, 37.713693382874489 ], [ -97.315950339258833, 37.693662912071154 ], [ -97.312479316360296, 37.685282136593095 ], [ -97.312029322403703, 37.67933529047486 ], [ -97.312479355337487, 37.664523669326954 ], [ -97.31001435355428, 37.649845053423959 ], [ -97.307779345609944, 37.639446327305471 ], [ -97.308580359597329, 37.63706638598665 ], [ -97.316675473269669, 37.629135564369911 ], [ -97.326692603885462, 37.625515625578871 ], [ -97.328699635045467, 37.622555694905088 ], [ -97.328783651848582, 37.615276880682714 ], [ -97.325426625190417, 37.607987077970535 ], [ -97.323000607456464, 37.601716246404244 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I15\", \"DIST_MILES\": 1435.980000, \"DIST_KM\": 2311.000000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -111.95951421580321, 48.998006629207318 ], [ -111.959491225259768, 48.993654511389295 ], [ -111.95761420795229, 48.979104193864053 ], [ -111.938562856728538, 48.958104419199756 ], [ -111.910624321901508, 48.892796733740397 ], [ -111.864345494325647, 48.847085257930097 ], [ -111.862438611938117, 48.843774235149873 ], [ -111.862182116007332, 48.739882024199524 ], [ -111.862053563584794, 48.579524038610224 ], [ -111.859411737775929, 48.532643022884521 ], [ -111.860876587036756, 48.530193900335505 ], [ -111.876240452644069, 48.515491128052268 ], [ -111.882503894462062, 48.507182734202267 ], [ -111.883135864549971, 48.44221988661014 ], [ -111.889765469871108, 48.427998488550919 ], [ -111.907861677255823, 48.411869032231884 ], [ -111.909524583021323, 48.408508944299001 ], [ -111.909814460162167, 48.398696695145802 ], [ -111.914972225477456, 48.393058549149913 ], [ -111.93621929692857, 48.372619048405049 ], [ -111.9361265988654, 48.307164482504298 ], [ -111.936491199690465, 48.223284267378276 ], [ -111.922201068926597, 48.204720893358385 ], [ -111.934673978364174, 48.179469221660995 ], [ -111.903660395178463, 48.130114668475983 ], [ -111.81505917898528, 48.016077717175577 ], [ -111.80950514614338, 48.010897365670175 ], [ -111.772600925779997, 47.984826301388694 ], [ -111.760988681459537, 47.974557099495961 ], [ -111.737222186648566, 47.933895471430276 ], [ -111.728883047058318, 47.928208449816964 ], [ -111.716493008129675, 47.923485488594906 ], [ -111.709602792898394, 47.916787433479335 ], [ -111.709661062506143, 47.858550333036376 ], [ -111.704045694147936, 47.849075212750094 ], [ -111.69591239361462, 47.840385133842737 ], [ -111.670688801593712, 47.821105035585298 ], [ -111.664661560128124, 47.814474974352343 ], [ -111.665330324099699, 47.720212324474879 ], [ -111.661729322005698, 47.712163250126309 ], [ -111.658921350919812, 47.710904264387018 ], [ -111.646020447044677, 47.697805230045134 ], [ -111.587663014423512, 47.63836416681383 ], [ -111.567156240109711, 47.598320946270931 ], [ -111.534197733325556, 47.562691999405018 ], [ -111.525774869274102, 47.557794069327734 ], [ -111.500651266893016, 47.553762403743619 ], [ -111.441291621735644, 47.544622111003683 ], [ -111.384747172100305, 47.526390666624138 ], [ -111.38201542809216, 47.524594630124476 ], [ -111.379589694066937, 47.521752578969249 ], [ -111.375943054338734, 47.518963523408978 ], [ -111.34911334276498, 47.511921308257961 ], [ -111.343765895807053, 47.508164226432555 ], [ -111.343223909364113, 47.492488986694347 ], [ -111.345039430892626, 47.48499288672658 ], [ -111.349493865874976, 47.479808827162351 ], [ -111.370236799794398, 47.466472685299472 ], [ -111.390994132004778, 47.461261650108426 ], [ -111.502810001992984, 47.43513027182123 ], [ -111.51182086270363, 47.431522059228655 ], [ -111.699975001771264, 47.279286772055499 ], [ -111.707199983636244, 47.273515606356987 ], [ -111.708588119843412, 47.256795307280562 ], [ -111.710724158709866, 47.250565182712684 ], [ -111.713914143570847, 47.248067110378905 ], [ -111.75064887845005, 47.232715530902126 ], [ -111.768051598667981, 47.227245381313089 ], [ -111.774864494939138, 47.222645279661798 ], [ -111.7785034475788, 47.217685181114568 ], [ -111.779838452983768, 47.209133025316184 ], [ -111.783958402862993, 47.202532897170556 ], [ -111.793464255973248, 47.196124759393136 ], [ -111.806305044129019, 47.190303625226754 ], [ -111.809393998310711, 47.187335565801391 ], [ -111.815466965507014, 47.166102181047279 ], [ -111.819548914778267, 47.159594058981149 ], [ -111.831763713840829, 47.152601912757525 ], [ -111.844206470617706, 47.154112914052853 ], [ -111.847060418095921, 47.153452897112373 ], [ -111.848097423920052, 47.147093786209176 ], [ -111.844977506343753, 47.141611698127377 ], [ -111.846503488921599, 47.138681645093158 ], [ -111.850386421328977, 47.136903607640122 ], [ -111.856581293054731, 47.138773628437733 ], [ -111.862242183938136, 47.13823160910944 ], [ -111.870284053024719, 47.131433480002748 ], [ -111.887556696090854, 47.132810474287474 ], [ -111.896223517622602, 47.132433453763142 ], [ -111.907766287619225, 47.12941138516576 ], [ -111.925625946264617, 47.120081204916914 ], [ -111.942151591043199, 47.117780144399831 ], [ -111.947125556711867, 47.102502890872088 ], [ -111.955311419122424, 47.093270732753922 ], [ -111.959835331320434, 47.090340680901342 ], [ -111.963025318905125, 47.078820493268054 ], [ -111.981861995680489, 47.057980146764315 ], [ -111.99517471923464, 47.051270032870754 ], [ -112.000690616337963, 47.046180950295472 ], [ -112.004764554317688, 47.039581854505379 ], [ -112.024913071236568, 47.036651846781638 ], [ -112.04464964191925, 47.024700705215025 ], [ -112.0484265853257, 47.018249616516925 ], [ -112.051699541856408, 47.01181052751852 ], [ -112.06194532248314, 47.004558443962679 ], [ -112.074106986207923, 47.006851507512842 ], [ -112.078653867772729, 47.00638951193698 ], [ -112.081209809554863, 47.004860495991778 ], [ -112.08156781909581, 47.002060456126181 ], [ -112.077462947479091, 46.997402362935809 ], [ -112.078546928219296, 46.99147024472348 ], [ -112.076371992182104, 46.987529158698472 ], [ -112.082452839676137, 46.982269067303783 ], [ -112.083795817115487, 46.974589914358184 ], [ -112.094858538213117, 46.965888767000386 ], [ -112.09589551833939, 46.961768686047911 ], [ -112.099267434953575, 46.958220623202877 ], [ -112.109308172388168, 46.954188569304407 ], [ -112.112283101150794, 46.949790488495189 ], [ -112.117050973838801, 46.948588477681056 ], [ -112.120766877769, 46.946101437942538 ], [ -112.127358718415778, 46.936961272094429 ], [ -112.125664779509236, 46.931010146765665 ], [ -112.122177882126877, 46.927908073747574 ], [ -112.123665851914225, 46.923608991130308 ], [ -112.115281105618735, 46.911539721833918 ], [ -112.12307891633651, 46.903287578134311 ], [ -112.118127071416168, 46.893369362270498 ], [ -112.091218796340371, 46.878338975386946 ], [ -112.052149759949245, 46.868569659312264 ], [ -112.04383395671141, 46.865578573550373 ], [ -112.038066092416969, 46.86211848562094 ], [ -112.011363698446573, 46.839435940425581 ], [ -112.006824797791168, 46.832866791486573 ], [ -112.000690930810336, 46.81838547411629 ], [ -112.001033925781684, 46.811366330035561 ], [ -112.004894847847865, 46.806766246615894 ], [ -112.031284304667082, 46.789774978121905 ], [ -112.034694236399545, 46.784426879011896 ], [ -112.03551022308686, 46.779734785196965 ], [ -112.030605338614052, 46.765246471488794 ], [ -112.018154599833053, 46.757803277829076 ], [ -112.013774691691651, 46.751025123846311 ], [ -112.017253587293368, 46.731725716492008 ], [ -112.01284465371846, 46.721063470141928 ], [ -112.01210363541378, 46.704503107417644 ], [ -112.011058486152976, 46.619579256259414 ], [ -112.010936475129597, 46.612933111257071 ], [ -112.007381524722888, 46.604998927159272 ], [ -111.999034655923793, 46.591959616855704 ], [ -111.998058675674713, 46.591074594565107 ], [ -111.996639704332154, 46.589781562000198 ], [ -111.966267318287649, 46.569082013081008 ], [ -111.953465568447257, 46.559980771186588 ], [ -111.939908793138031, 46.530198065599805 ], [ -111.940136783738041, 46.527478005902417 ], [ -111.945172669693989, 46.521290885928337 ], [ -111.951802494840393, 46.500641451973394 ], [ -111.953457463559189, 46.498089408490706 ], [ -111.96627520998257, 46.489807302170661 ], [ -111.977710986468523, 46.477139107142243 ], [ -111.986080849336119, 46.450957645305614 ], [ -111.999584584758068, 46.420978122221818 ], [ -111.998485612550837, 46.420238105005474 ], [ -112.007060454016639, 46.414599036113749 ], [ -112.015514314448268, 46.404726893978079 ], [ -112.021610219577369, 46.39191668838474 ], [ -112.028400102549512, 46.383318567364753 ], [ -112.033336025601798, 46.369806348294965 ], [ -112.044070829097748, 46.357607191632894 ], [ -112.044566829895686, 46.349047040265027 ], [ -112.049219742400936, 46.34353797099201 ], [ -112.04864076139593, 46.337617860922087 ], [ -112.055048637707216, 46.33080878184947 ], [ -112.062319489038615, 46.328107783261409 ], [ -112.06582941924151, 46.324136737305722 ], [ -112.072909272147712, 46.320275718908476 ], [ -112.077380180576156, 46.315137661011384 ], [ -112.08269007604197, 46.302606482483938 ], [ -112.094995808201574, 46.294934443172878 ], [ -112.113336413146726, 46.253784897571265 ], [ -112.118547281284549, 46.247001861095804 ], [ -112.143852622921429, 46.237336019281571 ], [ -112.154297355858958, 46.236848105197154 ], [ -112.164498107260272, 46.239926211761087 ], [ -112.173736901504185, 46.247125337500925 ], [ -112.175246875880632, 46.250985384908446 ], [ -112.188667523301888, 46.259385629334837 ], [ -112.203407128685029, 46.261445786850118 ], [ -112.211920895691421, 46.257966809098995 ], [ -112.214361828639426, 46.258157833112698 ], [ -112.220228668235777, 46.263165956789258 ], [ -112.215895789078331, 46.266366966201339 ], [ -112.215796792615862, 46.268816001086144 ], [ -112.223715574449216, 46.270967099401865 ], [ -112.227530467754079, 46.270159120120134 ], [ -112.234854262631302, 46.271585202662266 ], [ -112.255307690873906, 46.270136345502586 ], [ -112.260465557750436, 46.27099838889783 ], [ -112.278920070611946, 46.27027749280326 ], [ -112.285976880461845, 46.267878505200166 ], [ -112.285389895700547, 46.263777447804408 ], [ -112.287113849124367, 46.262987448460407 ], [ -112.29358367375869, 46.265608523683262 ], [ -112.311420179919352, 46.268019667557354 ], [ -112.334552523293993, 46.261625738704801 ], [ -112.343097279097663, 46.2550077169562 ], [ -112.339763350597096, 46.24520759691039 ], [ -112.346416074344461, 46.231508533387554 ], [ -112.348612953505267, 46.222086473132386 ], [ -112.348551901713094, 46.213198401889748 ], [ -112.338367143817791, 46.204737267652881 ], [ -112.345247871807572, 46.192438215003023 ], [ -112.346346739190821, 46.175737089271365 ], [ -112.352915521954017, 46.17106809385227 ], [ -112.359301335643949, 46.170927133416413 ], [ -112.362291241709258, 46.169828143654129 ], [ -112.365465123573387, 46.165598129739365 ], [ -112.371018952344215, 46.16434715499279 ], [ -112.377931717462374, 46.1593261581409 ], [ -112.38102059577858, 46.154268136396908 ], [ -112.387170388993027, 46.150476144251442 ], [ -112.40678462304362, 46.120768020707622 ], [ -112.440238237525008, 46.058335693713488 ], [ -112.459242514439396, 46.036576616592157 ], [ -112.461027300157923, 46.006165361377327 ], [ -112.467626055096218, 45.999970344108334 ], [ -112.47679664765505, 45.987256387815769 ], [ -112.479497499445728, 45.980126399083169 ], [ -112.486706275565453, 45.981507441195042 ], [ -112.499645833550105, 45.979806514999325 ], [ -112.507732483725746, 45.984597535088987 ], [ -112.528834469173049, 45.991727572695623 ], [ -112.538744966990123, 45.99271558960659 ], [ -112.554353157019875, 45.99294761671856 ], [ -112.561516793961019, 45.994767628946079 ], [ -112.571282345792625, 46.00500667901936 ], [ -112.607138423295467, 46.00654774709438 ], [ -112.627736304528355, 46.008965794691889 ], [ -112.637852731123701, 46.007867806536673 ], [ -112.651927858552853, 45.997468800190497 ], [ -112.655437622019406, 45.991547816089927 ], [ -112.656467443927411, 45.972165846721957 ], [ -112.667330680170735, 45.948365911174548 ], [ -112.674410123152711, 45.922875973740389 ], [ -112.67170912412476, 45.897318007704627 ], [ -112.673173823555146, 45.860926073554943 ], [ -112.675676624391059, 45.851175099829895 ], [ -112.72286850255756, 45.775358466046917 ], [ -112.731015910519972, 45.752748561949915 ], [ -112.730145943258535, 45.745958577290182 ], [ -112.716726679300251, 45.723787567024154 ], [ -112.712080929105852, 45.719088550774437 ], [ -112.702682432955882, 45.713758503494034 ], [ -112.701324494439703, 45.708479507183171 ], [ -112.692733928016651, 45.698427470486138 ], [ -112.693076885366281, 45.689707491311104 ], [ -112.690338013831024, 45.684599481518696 ], [ -112.690170001379542, 45.677477494592708 ], [ -112.679398521609244, 45.668196426695189 ], [ -112.674103721107741, 45.65085840981331 ], [ -112.676102549975795, 45.631796456299554 ], [ -112.675842556754574, 45.63027845622193 ], [ -112.667427896258772, 45.615217397036211 ], [ -112.66272806180605, 45.603258364238506 ], [ -112.662568044262898, 45.597826368494523 ], [ -112.679024199371554, 45.574198577537672 ], [ -112.691047564055324, 45.543817774247159 ], [ -112.697677257633089, 45.538286868068276 ], [ -112.703146998381314, 45.530104956318915 ], [ -112.713057538180095, 45.515208124390853 ], [ -112.71591040252288, 45.507247185252972 ], [ -112.713187012478087, 45.464998613247836 ], [ -112.705947613227494, 45.445627203043173 ], [ -112.709992198595387, 45.393186425497959 ], [ -112.709168441310098, 45.379174190503093 ], [ -112.695649638540573, 45.341514391800899 ], [ -112.640508665034133, 45.241513966328718 ], [ -112.639280659807966, 45.236123867998479 ], [ -112.64175939714093, 45.224263730160992 ], [ -112.644452202525798, 45.218953692758923 ], [ -112.653965608418105, 45.20817367974054 ], [ -112.660778171319322, 45.199673660064484 ], [ -112.671832517949483, 45.190892703275473 ], [ -112.688006622933727, 45.183942855080254 ], [ -112.694124263236006, 45.179791891209476 ], [ -112.702989630552608, 45.164662813555722 ], [ -112.736877542226225, 45.137143964882 ], [ -112.750616600336514, 45.119137935082655 ], [ -112.756392156561205, 45.113122924137897 ], [ -112.766889417095399, 45.108342994736454 ], [ -112.773884898252703, 45.103323021313606 ], [ -112.777355600124508, 45.097604995025002 ], [ -112.777340490053675, 45.088521879762155 ], [ -112.77878936746788, 45.086331872554467 ], [ -112.791980429059478, 45.081384000914561 ], [ -112.796657070417453, 45.077753026272589 ], [ -112.801157611991343, 45.065373950671656 ], [ -112.808351030248161, 45.057912978418123 ], [ -112.813165591416677, 45.049222960118854 ], [ -112.830147227894741, 45.03417408599806 ], [ -112.836081623576277, 45.019552045940273 ], [ -112.851263332388143, 45.002714167323305 ], [ -112.853323118511923, 44.9983421617939 ], [ -112.847494044054031, 44.972653728764108 ], [ -112.84093323970086, 44.957970412827315 ], [ -112.841450948540597, 44.944432250820384 ], [ -112.825864657799499, 44.921260627971201 ], [ -112.817144621385111, 44.883399936983182 ], [ -112.799430500723233, 44.858241197198119 ], [ -112.769256812080755, 44.800187657649005 ], [ -112.751481759304511, 44.774368834141789 ], [ -112.712809778964754, 44.737166467747855 ], [ -112.694530641381263, 44.713716697304108 ], [ -112.608026399933081, 44.656802049242835 ], [ -112.603456616927829, 44.651362869341455 ], [ -112.601449617718373, 44.641321658608526 ], [ -112.59666683840031, 44.63505446102117 ], [ -112.590296174956961, 44.630202258401958 ], [ -112.565227577099606, 44.618280587467602 ], [ -112.529714717171416, 44.617748921982496 ], [ -112.505645111423703, 44.614891431537558 ], [ -112.462847022396531, 44.603500389223726 ], [ -112.430264309699538, 44.591011446552599 ], [ -112.375657248667693, 44.574230703400545 ], [ -112.341716716764864, 44.567551951838773 ], [ -112.320424307137131, 44.560041106535728 ], [ -112.30469343956436, 44.558801253563679 ], [ -112.300741747405695, 44.55670328368705 ], [ -112.294700297763214, 44.548082311758336 ], [ -112.265008732904093, 44.529981591988133 ], [ -112.253626782085007, 44.51834271306091 ], [ -112.235454410253723, 44.494081596615999 ], [ -112.234798101213016, 44.48224043824618 ], [ -112.221857736055753, 44.460550111479769 ], [ -112.218623477798459, 44.448250942839536 ], [ -112.206660304962512, 44.432510708451964 ], [ -112.191095698403515, 44.393250181219244 ], [ -112.184968459332651, 44.376460963363101 ], [ -112.187112021990586, 44.359138753214872 ], [ -112.178047924295399, 44.344169559598384 ], [ -112.174057792315494, 44.333030420913957 ], [ -112.175667645044214, 44.328151363009233 ], [ -112.196891641416073, 44.310420156901557 ], [ -112.207130018065556, 44.297419996840539 ], [ -112.226888210946072, 44.252359415405607 ], [ -112.240222004421511, 44.176396793494341 ], [ -112.236055042741697, 44.124936391455542 ], [ -112.23577957011814, 44.057800861506337 ], [ -112.235572893109264, 44.026707616335543 ], [ -112.228858484023235, 43.97685654560572 ], [ -112.210433997500232, 43.919186871823285 ], [ -112.200698881813821, 43.847127224990025 ], [ -112.195053027882139, 43.830808298043088 ], [ -112.134356421273395, 43.717107944251175 ], [ -112.107402993806033, 43.661509623649209 ], [ -112.080274472836763, 43.626296072180097 ], [ -112.076657825377879, 43.593818510526489 ], [ -112.072592102573708, 43.578910713419482 ], [ -112.071463336422369, 43.547051147589833 ], [ -112.067633579419677, 43.536591293273617 ], [ -112.061628924511794, 43.526581436132716 ], [ -112.058669099042902, 43.520901517502551 ], [ -112.055686338499555, 43.504311750398379 ], [ -112.053870447300739, 43.496719863023785 ], [ -112.05422142515269, 43.492371929494965 ], [ -112.056899292131732, 43.488190990024627 ], [ -112.066549823981177, 43.482690060727215 ], [ -112.086064872661836, 43.46785126004076 ], [ -112.10378000822223, 43.451871478187485 ], [ -112.121273155534183, 43.439019648022025 ], [ -112.140811202046066, 43.425000831679007 ], [ -112.167466900343541, 43.404741097658118 ], [ -112.205932039116135, 43.365412627607078 ], [ -112.243192238233419, 43.331073079046796 ], [ -112.298335740927044, 43.274303803119274 ], [ -112.327493409569627, 43.239960104215136 ], [ -112.363571754711629, 43.198933056494802 ], [ -112.386328747011504, 43.171437053388949 ], [ -112.388541671992982, 43.163864057437969 ], [ -112.388464738090164, 43.149735066716836 ], [ -112.389464840805886, 43.115753089427301 ], [ -112.40711131178378, 43.054814155761449 ], [ -112.408026436140446, 43.022145188471526 ], [ -112.409888447094517, 43.003903210218205 ], [ -112.434949431928104, 42.95000104230045 ], [ -112.438619285101481, 42.940094002289634 ], [ -112.441533187001369, 42.920554914645535 ], [ -112.440626239545466, 42.912265874296949 ], [ -112.440175264870334, 42.908607856494477 ], [ -112.435209497464072, 42.897521799039538 ], [ -112.424863972663772, 42.875613689722748 ], [ -112.410384626969147, 42.839282523145791 ], [ -112.407980733102775, 42.833572498305962 ], [ -112.403143938846952, 42.828014474489407 ], [ -112.382492791040661, 42.815822427202491 ], [ -112.37841095810451, 42.811561411641961 ], [ -112.370400283022889, 42.802902381504381 ], [ -112.356926817124517, 42.796054363187388 ], [ -112.349847093226742, 42.795764366346994 ], [ -112.328317921616232, 42.801803399423115 ], [ -112.304804808993111, 42.799773408296602 ], [ -112.276119865972078, 42.800433430998012 ], [ -112.25305669301062, 42.798381445042871 ], [ -112.234457359759745, 42.787654480577935 ], [ -112.23017750545327, 42.781081482725931 ], [ -112.22106774717345, 42.69583479423347 ], [ -112.21118807657632, 42.660855051209374 ], [ -112.196776561233321, 42.611553415975372 ], [ -112.179458154219475, 42.56842575475158 ], [ -112.173630352563848, 42.549015899559478 ], [ -112.171265432789312, 42.539673967506019 ], [ -112.169357489160376, 42.502035210241466 ], [ -112.170563520218579, 42.454046715745768 ], [ -112.213141085237382, 42.366827580989984 ], [ -112.225080652347415, 42.35094774553599 ], [ -112.226408614374222, 42.34045686663795 ], [ -112.211226232581851, 42.309867239053766 ], [ -112.208442367278209, 42.288146490208561 ], [ -112.224623766723312, 42.24434700591663 ], [ -112.236936200288994, 42.225239270435644 ], [ -112.238462119095644, 42.220368337646008 ], [ -112.238317030261058, 42.199448625748353 ], [ -112.235700084425545, 42.189377764440692 ], [ -112.229810262031094, 42.179589899486494 ], [ -112.22247147900984, 42.167490066927471 ], [ -112.219816535615848, 42.158899185837065 ], [ -112.220068393468523, 42.131700561467468 ], [ -112.216215437887229, 42.112447828236085 ], [ -112.218916219226273, 42.087699169493398 ], [ -112.218397089953783, 42.057730583630622 ], [ -112.198286483521812, 42.001171374944533 ], [ -112.201322382804364, 42.00117137335554 ], [ -112.167996510198378, 41.896313931613932 ], [ -112.147382788369029, 41.872064301546821 ], [ -112.174418156296383, 41.78483556487496 ], [ -112.205970817377164, 41.710656031388851 ], [ -112.141032235001674, 41.679746928085109 ], [ -112.132968524020143, 41.67455908112467 ], [ -112.093059807822456, 41.625628492862454 ], [ -112.082730133863663, 41.610148947990865 ], [ -112.072690392275675, 41.584400689716887 ], [ -112.06614437996663, 41.535582060109554 ], [ -112.06413038014432, 41.520620482670303 ], [ -112.053990628877685, 41.493613352980091 ], [ -112.05297557881336, 41.485873653572611 ], [ -112.057048724637539, 41.433015647479579 ], [ -112.0559197116673, 41.427495863224657 ], [ -112.051029871685898, 41.420374156463211 ], [ -112.049678801203271, 41.408785603053346 ], [ -112.042141990013405, 41.390987309221721 ], [ -112.043079571175099, 41.358746527424429 ], [ -112.038715648714174, 41.34358011555107 ], [ -112.034473822572565, 41.337053374896328 ], [ -112.034183830798639, 41.336248406129393 ], [ -112.0263340994224, 41.317580131075715 ], [ -112.025669907145868, 41.294159012963817 ], [ -112.02581463985257, 41.268089992357773 ], [ -112.024028679411728, 41.260460281914263 ], [ -112.018001993938128, 41.252480590246613 ], [ -112.015706187151594, 41.244782655271415 ], [ -112.015256242590084, 41.242730642882215 ], [ -112.012044625959064, 41.228520557742385 ], [ -112.010663776369313, 41.223290526967126 ], [ -112.00382025248355, 41.218522508737379 ], [ -111.994581844653851, 41.205300337647579 ], [ -111.995367869037636, 41.199990319369867 ], [ -112.008375346856198, 41.18751230567478 ], [ -112.017972903066038, 41.179471234963962 ], [ -112.019803917859235, 41.170670174802268 ], [ -112.025090882692481, 41.152352045183278 ], [ -112.025083250502519, 41.126258876791553 ], [ -112.004485531117339, 41.103881790362522 ], [ -111.963258457568841, 41.060070438702354 ], [ -111.960778570860512, 41.056640423854731 ], [ -111.961358585952453, 41.052826414830726 ], [ -111.955117867951103, 41.043918385423815 ], [ -111.94864112362508, 41.038250371083919 ], [ -111.947824213827886, 41.030502359507516 ], [ -111.937998674803978, 41.010723351729723 ], [ -111.934641802973559, 41.007137358010532 ], [ -111.913577429924231, 40.993881473394744 ], [ -111.90336968994383, 40.98925054301229 ], [ -111.899707771415223, 40.986061580114608 ], [ -111.892108867829705, 40.969631734691355 ], [ -111.891353768552506, 40.952934870447372 ], [ -111.891505413679738, 40.904320259387269 ], [ -111.8964571924962, 40.892281348369515 ], [ -111.897716002056157, 40.870431523640072 ], [ -111.900728871090436, 40.863461577067973 ], [ -111.914370390526699, 40.847623696047506 ], [ -111.915850265988055, 40.835480796956901 ], [ -111.917002142346277, 40.822144908598794 ], [ -111.91926804532855, 40.816941951878441 ], [ -111.923104917534872, 40.813401981180029 ], [ -111.924500848120431, 40.808771020500096 ], [ -111.910715031603615, 40.782282242102596 ], [ -111.910890951240205, 40.771482331992367 ], [ -111.914628798633245, 40.763651399439446 ], [ -111.91330078902331, 40.757303451662438 ], [ -111.912675798374465, 40.756311459491776 ], [ -111.909814828084649, 40.749952510178204 ], [ -111.90461895827363, 40.745401558035283 ], [ -111.904214951065697, 40.725313787893505 ], [ -111.903565961474811, 40.717882872577334 ], [ -111.901971987688853, 40.699927077313987 ], [ -111.903054951188906, 40.690703183747281 ], [ -111.901071989445171, 40.674144372403525 ], [ -111.901986945910551, 40.651866628335974 ], [ -111.905007849283265, 40.634749825935856 ], [ -111.902261918152846, 40.628443896981842 ], [ -111.903871867546115, 40.620688986532912 ], [ -111.906007800841195, 40.611496092681257 ], [ -111.90031593631933, 40.587894361222872 ], [ -111.899300943775657, 40.563663638896365 ], [ -111.894640056221604, 40.542454881521643 ], [ -111.891390140827482, 40.534515972352317 ], [ -111.891085143507695, 40.526795061088912 ], [ -111.891191120410468, 40.500321365454276 ], [ -111.891756154045581, 40.490876466050842 ], [ -111.90406987961704, 40.478017598532261 ], [ -111.914369680491106, 40.462575753961247 ], [ -111.913720758641986, 40.452554857278336 ], [ -111.910630874904498, 40.447434912262253 ], [ -111.894411391116023, 40.434706059699955 ], [ -111.891191495700951, 40.431448097572606 ], [ -111.872729067191131, 40.415544291183785 ], [ -111.837711054169759, 40.394106585660737 ], [ -111.833500182910072, 40.388105662259299 ], [ -111.830509271897569, 40.38420771295219 ], [ -111.818928580174571, 40.376676824029232 ], [ -111.801290016276511, 40.370836931334772 ], [ -111.730588793052647, 40.325778987048906 ], [ -111.726430703547678, 40.321548115800624 ], [ -111.725591706988126, 40.311569256580498 ], [ -111.725209760809463, 40.284866599406605 ], [ -111.718434620320167, 40.275169841514263 ], [ -111.709607430473667, 40.264699128476693 ], [ -111.696080127860398, 40.252049523588937 ], [ -111.693654165517444, 40.242799615595295 ], [ -111.684362050448357, 40.233567798957701 ], [ -111.666813802902496, 40.217279111921194 ], [ -111.658772708262362, 40.207720244311346 ], [ -111.646458588799163, 40.190130427002984 ], [ -111.646764269327079, 40.133612427109313 ], [ -111.649343411094449, 40.127890403597533 ], [ -111.660977826078508, 40.120989303037241 ], [ -111.683211671151454, 40.103815152628243 ], [ -111.693382072532359, 40.094961104939834 ], [ -111.730332622062889, 40.057165070430187 ], [ -111.732117697716163, 40.055338073703659 ], [ -111.735565839181433, 40.052160079147377 ], [ -111.750688475315499, 40.037241128092774 ], [ -111.76111758544809, 40.026365131455201 ], [ -111.763894988623576, 39.990839371343398 ], [ -111.767251994258444, 39.981760417880444 ], [ -111.772394987178629, 39.975580424753396 ], [ -111.796998911837477, 39.956911353416089 ], [ -111.810777857082201, 39.939737345854446 ], [ -111.811609862513848, 39.92251045188123 ], [ -111.824052793075325, 39.905611433901704 ], [ -111.827203773563767, 39.899210440242314 ], [ -111.829004764776258, 39.871950586131781 ], [ -111.836053710132887, 39.849039638900393 ], [ -111.833734729023533, 39.816469859319476 ], [ -111.838403684222854, 39.796480912604608 ], [ -111.838449681221846, 39.776950024266149 ], [ -111.841401649464387, 39.768291030552881 ], [ -111.845018610082406, 39.762981006702489 ], [ -111.841317601182041, 39.748103160913672 ], [ -111.831788592744005, 39.743510367774654 ], [ -111.821199262474082, 39.725062768320612 ], [ -111.816781020101899, 39.712932988845964 ], [ -111.818367873946997, 39.707562035812145 ], [ -111.82390665465114, 39.701031043983939 ], [ -111.825577478710429, 39.694523106659929 ], [ -111.836907058677156, 39.682713113120656 ], [ -111.853629574731784, 39.671421052671676 ], [ -111.872199156490467, 39.664310920990822 ], [ -111.886175794070596, 39.657432851172736 ], [ -111.893530556092429, 39.65209184359319 ], [ -111.897833368689945, 39.647132868856779 ], [ -111.901976087210969, 39.638461955501384 ], [ -111.908971118573447, 39.604832408626073 ], [ -111.914837815464921, 39.596623479299531 ], [ -111.929249249522371, 39.583733546262991 ], [ -111.94996205853036, 39.551823894807633 ], [ -111.957994128549927, 39.522313341127223 ], [ -111.966645368449022, 39.499963671788045 ], [ -111.968026414757531, 39.49001877771979 ], [ -111.9697883997937, 39.487539794866471 ], [ -111.992310094383939, 39.471463842446994 ], [ -112.039749535559793, 39.429754060920565 ], [ -112.052093386639385, 39.410136289023498 ], [ -112.076728951329216, 39.382303641815341 ], [ -112.079696899696899, 39.376044740255431 ], [ -112.08122196133192, 39.338523386549973 ], [ -112.082824941858462, 39.329604541300824 ], [ -112.094352723670085, 39.277817482237566 ], [ -112.098662604997983, 39.269646646979929 ], [ -112.103759453929555, 39.263726777377066 ], [ -112.129164658871773, 39.239107245989295 ], [ -112.151540925149035, 39.222856505293699 ], [ -112.157483730433, 39.212018634513555 ], [ -112.161046609410946, 39.208215690886199 ], [ -112.181301897978216, 39.198556918106519 ], [ -112.196026366432065, 39.187968128263165 ], [ -112.229258101670922, 39.15333876549181 ], [ -112.235834836820331, 39.143809932209784 ], [ -112.258545902562858, 39.100688599469912 ], [ -112.276528223489848, 39.082340860936569 ], [ -112.302261208300109, 39.022130664071952 ], [ -112.312964796495251, 39.003201930162518 ], [ -112.320715473751363, 38.99518009559425 ], [ -112.333722917530892, 38.983831376022884 ], [ -112.339139676299041, 38.977392528999196 ], [ -112.349523115659252, 38.948702166905946 ], [ -112.355015872894484, 38.941043345869318 ], [ -112.410952657539184, 38.894214514394946 ], [ -112.463158688451642, 38.850945600739131 ], [ -112.489089739772496, 38.824884238011023 ], [ -112.576633530714403, 38.745518089847891 ], [ -112.590770979962699, 38.731209320237149 ], [ -112.598765673194208, 38.717098533398854 ], [ -112.602397528584973, 38.698326799163212 ], [ -112.600833577480671, 38.694027853525348 ], [ -112.601817537105177, 38.685917966836953 ], [ -112.595836726579478, 38.680737020934387 ], [ -112.58905392830269, 38.671838123311431 ], [ -112.588550938005199, 38.668729164198595 ], [ -112.609294274525382, 38.637258652375145 ], [ -112.6093552659365, 38.615819945433586 ], [ -112.608577281600404, 38.60071814936498 ], [ -112.603175404245818, 38.577101455122154 ], [ -112.60339639542066, 38.572828514097687 ], [ -112.617518082519524, 38.490230542548126 ], [ -112.61712909425718, 38.483851532980538 ], [ -112.612613188893619, 38.475810508180849 ], [ -112.612643190777234, 38.47306050480352 ], [ -112.619349062800126, 38.462859512566943 ], [ -112.63115981672486, 38.438529514922237 ], [ -112.636377698656545, 38.432090520898825 ], [ -112.647165445308602, 38.423720539437106 ], [ -112.65232331203309, 38.412990537267653 ], [ -112.661669033125989, 38.380599509795516 ], [ -112.66243199948255, 38.372291497914851 ], [ -112.650858222684604, 38.29706935081132 ], [ -112.649713209691527, 38.24935128205113 ], [ -112.64957627506287, 38.22721053227653 ], [ -112.64530448917948, 38.198371853177939 ], [ -112.641123641307331, 38.190551936824484 ], [ -112.623515232919232, 38.171780131139819 ], [ -112.614459544902203, 38.155731305972616 ], [ -112.613948577522734, 38.148167392263481 ], [ -112.61516854998915, 38.144241438371239 ], [ -112.638918899822798, 38.117493763968994 ], [ -112.682427670062609, 38.079602226108292 ], [ -112.688775496092674, 38.07191231683619 ], [ -112.776998896044717, 37.908923753604924 ], [ -112.828418739184215, 37.858685858902113 ], [ -112.845644967245264, 37.848085138146622 ], [ -112.909408972181652, 37.823835947951068 ], [ -112.946577077741509, 37.802588588580235 ], [ -112.974415585565822, 37.785568110419199 ], [ -112.999774188697515, 37.772067560640217 ], [ -113.019404131379957, 37.759567798179127 ], [ -113.030557509830317, 37.750549966537726 ], [ -113.054901410491809, 37.725495069109918 ], [ -113.05878522825472, 37.721589092568237 ], [ -113.060242158468711, 37.720295101083636 ], [ -113.063865986769571, 37.716473126990138 ], [ -113.074553488539266, 37.700959243891006 ], [ -113.077331366250249, 37.694478295028311 ], [ -113.07978029005514, 37.680840397090797 ], [ -113.079993358415848, 37.661728530025471 ], [ -113.082793237058723, 37.652760610451942 ], [ -113.083777186739951, 37.651360627043772 ], [ -113.088613937009526, 37.64444071210476 ], [ -113.097418455027039, 37.636860839188003 ], [ -113.109868742745121, 37.63156998710582 ], [ -113.140429937999528, 37.622701348758049 ], [ -113.148562449361279, 37.617769484484313 ], [ -113.153849129298109, 37.612329604682174 ], [ -113.170961064522231, 37.589831094443063 ], [ -113.205550740781575, 37.534931431688122 ], [ -113.220670596828867, 37.482052502793458 ], [ -113.235714529256953, 37.42502437212768 ], [ -113.233990636856063, 37.414175455799111 ], [ -113.248073705572608, 37.379836028115882 ], [ -113.260065962910218, 37.364394240908361 ], [ -113.269205401758597, 37.348685416710552 ], [ -113.298485586007615, 37.306586899759616 ], [ -113.301239416715887, 37.291176057189624 ], [ -113.305931123285575, 37.283825140552587 ], [ -113.330824551098118, 37.259018444874805 ], [ -113.353124183325207, 37.243927625477603 ], [ -113.361698659152438, 37.240776665953284 ], [ -113.384570364704274, 37.220577839975199 ], [ -113.413926776133152, 37.183408119557711 ], [ -113.423646177916396, 37.177365176456341 ], [ -113.435196428326861, 37.173547225887745 ], [ -113.449401515943208, 37.167046296182335 ], [ -113.47451584662997, 37.159097402037254 ], [ -113.486539105923683, 37.148068488905032 ], [ -113.505717927022602, 37.141328545074259 ], [ -113.527087020322753, 37.12767554836779 ], [ -113.552666873954735, 37.11570852394874 ], [ -113.557549686814355, 37.109948531857562 ], [ -113.564538464375161, 37.097016559189584 ], [ -113.579536803795733, 37.087396544531792 ], [ -113.582618683151495, 37.083829546454062 ], [ -113.584564645809948, 37.077699560628318 ], [ -113.584266843515749, 37.059506623413348 ], [ -113.587104737810449, 37.055707625271303 ], [ -113.590454663603083, 37.046185643544838 ], [ -113.598144348046205, 37.038667636275449 ], [ -113.607124031985364, 37.024567641367142 ], [ -113.622389497917609, 36.99999764205463 ], [ -113.62366355362461, 36.993447630885889 ], [ -113.627699425844526, 36.988736609234294 ], [ -113.65103729763176, 36.980065505601985 ], [ -113.658223910582166, 36.979127476082361 ], [ -113.671147178177094, 36.979577423798872 ], [ -113.677120880832135, 36.976067401377698 ], [ -113.689540207262283, 36.972077356050775 ], [ -113.710603957963002, 36.973908275951707 ], [ -113.719598449405112, 36.970116248199794 ], [ -113.725404095896565, 36.97118822601032 ], [ -113.733032642567437, 36.970055200959543 ], [ -113.748656691573814, 36.971047145057248 ], [ -113.753402325725418, 36.97024613235714 ], [ -113.762251560560102, 36.961205128007137 ], [ -113.769559914548964, 36.959557112723807 ], [ -113.783184696502673, 36.959576078208627 ], [ -113.796878483934975, 36.953778059065449 ], [ -113.814446940100069, 36.942056049524943 ], [ -113.823350142406056, 36.939607037160023 ], [ -113.825485957918488, 36.937348038947057 ], [ -113.827125833148571, 36.931756051141235 ], [ -113.831718437165563, 36.926957055552229 ], [ -113.832016437066102, 36.920968071925948 ], [ -113.835548140970815, 36.915646080552172 ], [ -113.843863386039928, 36.915467066188128 ], [ -113.85007380358897, 36.918618045873416 ], [ -113.852773539078356, 36.922006030893627 ], [ -113.855200315548473, 36.922177026069321 ], [ -113.863286593259616, 36.918237024235538 ], [ -113.874347579405253, 36.917008009846562 ], [ -113.912232194605096, 36.894997031075192 ], [ -113.925856929191667, 36.893079022219474 ], [ -113.9292746182428, 36.891587024003435 ], [ -113.981546929381096, 36.858197115616974 ], [ -114.00517998764748, 36.832047212229412 ], [ -114.050312428319415, 36.816865189837756 ], [ -114.063479360174512, 36.809106200913504 ], [ -114.064265313095234, 36.804017222391728 ], [ -114.102600020153531, 36.80378816105906 ], [ -114.107871561209222, 36.802579158682036 ], [ -114.149500769886643, 36.774228233635036 ], [ -114.172409584837936, 36.763745257115907 ], [ -114.17903895802327, 36.763467251756502 ], [ -114.233019861193725, 36.770066176161912 ], [ -114.257416711414237, 36.77839719324669 ], [ -114.262367310754613, 36.778699240711695 ], [ -114.360175934763319, 36.761248299934117 ], [ -114.416704015914732, 36.745359972583231 ], [ -114.492671823392271, 36.700439112965618 ], [ -114.50651076527204, 36.68924028130067 ], [ -114.515451232926452, 36.675491398814692 ], [ -114.520165905528017, 36.671329438343349 ], [ -114.53625561038649, 36.667679501437952 ], [ -114.56337533633247, 36.665340584432371 ], [ -114.570164788368032, 36.663441612999776 ], [ -114.574071502743394, 36.660889637420958 ], [ -114.638337296870645, 36.60225006472352 ], [ -114.653655480879223, 36.582791168847479 ], [ -114.659690100845637, 36.577611197625906 ], [ -114.715472435525001, 36.538159392823758 ], [ -114.752900114389945, 36.507291499243578 ], [ -114.825180243404191, 36.469881344995677 ], [ -114.853588480683555, 36.442572943284944 ], [ -114.892401215722856, 36.38097414031769 ], [ -114.901890939803238, 36.363243463813959 ], [ -114.90362965663941, 36.353275639372562 ], [ -114.923449133827233, 36.328325080198667 ], [ -114.936707515893943, 36.32047421655524 ], [ -114.947143230687232, 36.31157436588115 ], [ -115.007727704708344, 36.289354725789025 ], [ -115.067884779511616, 36.266405044903024 ], [ -115.078648176616312, 36.258597133521683 ], [ -115.101272684945869, 36.240729435018608 ], [ -115.11712413425866, 36.227106752063726 ], [ -115.123440078201071, 36.21814696420256 ], [ -115.137064800892304, 36.199516410393841 ], [ -115.143021766237837, 36.187747694495826 ], [ -115.143647618837605, 36.182651816965631 ], [ -115.154189908944957, 36.174355023107282 ], [ -115.159361024117445, 36.165848232348928 ], [ -115.159780890651092, 36.158921399922789 ], [ -115.160360769309619, 36.155732477469812 ], [ -115.170559072726476, 36.144215767300722 ], [ -115.177241963268557, 36.137200946129617 ], [ -115.18022442253033, 36.129449138913017 ], [ -115.180369121964702, 36.100854835405165 ], [ -115.180307738729397, 36.060599815382972 ], [ -115.180207599011055, 36.044735201366628 ], [ -115.179589373789966, 36.01202399595639 ], [ -115.181908877495829, 35.958799454576933 ], [ -115.182358803213845, 35.948473746924989 ], [ -115.18499839317343, 35.941023967531748 ], [ -115.222429589131039, 35.888485654143665 ], [ -115.296149809080433, 35.823748280837279 ], [ -115.353208939171623, 35.746042209384512 ], [ -115.375721557447164, 35.684074556952659 ], [ -115.387294822229805, 35.615975828193164 ], [ -115.391116381099977, 35.607316005201916 ], [ -115.417991274497965, 35.543829234202313 ], [ -115.41706046862295, 35.539866291409169 ], [ -115.420706949402586, 35.537935344364804 ], [ -115.450420566275525, 35.470725509868053 ], [ -115.463769681217798, 35.462898697822531 ], [ -115.472420385180541, 35.461196773055995 ], [ -115.503184425711808, 35.470237843758149 ], [ -115.513741793456276, 35.468026014466986 ], [ -115.524589065048232, 35.467896159142128 ], [ -115.560274226332822, 35.471886577410075 ], [ -115.572975094654936, 35.474778707208422 ], [ -115.590939170025493, 35.473206978830603 ], [ -115.670996242038683, 35.445158553479153 ], [ -115.673544845958915, 35.443068623146388 ], [ -115.677572156148997, 35.442908685491858 ], [ -115.790902779887432, 35.402753146640151 ], [ -115.830850544410993, 35.392794040071195 ], [ -115.909091134730389, 35.36893492308792 ], [ -115.918007507653925, 35.36444517168124 ], [ -116.042489920185332, 35.285370848485648 ], [ -116.051269418459412, 35.276700138588232 ], [ -116.074062287395336, 35.261941768926981 ], [ -116.09042432747961, 35.250879231604891 ], [ -116.120257875041077, 35.201121387466287 ], [ -116.125925825899316, 35.197680540778592 ], [ -116.149084146545349, 35.194733034355714 ], [ -116.153477297065976, 35.19283314736181 ], [ -116.164713251059993, 35.183872496533098 ], [ -116.214341554775544, 35.130045345799992 ], [ -116.260719405941785, 35.103065885282838 ], [ -116.262870007726534, 35.100646983721369 ], [ -116.292320486470175, 35.097946832507574 ], [ -116.318872809528301, 35.087877760085632 ], [ -116.329414428941803, 35.086989076334483 ], [ -116.339323124859888, 35.087710344585318 ], [ -116.375935774678894, 35.083610488429947 ], [ -116.38617952353141, 35.07962787642407 ], [ -116.399657385443973, 35.078640298608178 ], [ -116.470580234676859, 35.033012612236277 ], [ -116.560891298011072, 35.000046214593027 ], [ -116.683435949008143, 34.946622275041001 ], [ -116.722542227652752, 34.928435083622396 ], [ -116.806168699616123, 34.911206941226773 ], [ -116.821934193702006, 34.911429340000694 ], [ -116.837561795687051, 34.909525804950853 ], [ -116.885949043405944, 34.902760311284041 ], [ -116.897061832315885, 34.901520655565555 ], [ -116.925633337088428, 34.901880435173197 ], [ -116.968116185940531, 34.909003389373069 ], [ -116.98195217045398, 34.904982927758532 ], [ -116.990333917841355, 34.898807390792406 ], [ -116.999815356169591, 34.891948915415057 ], [ -117.008495012025378, 34.88601444797353 ], [ -117.021918900421412, 34.886002947256586 ], [ -117.049818281147083, 34.885973995723546 ], [ -117.061266864658492, 34.883006533463686 ], [ -117.075331077222444, 34.87077349398087 ], [ -117.080700688003361, 34.864826904313226 ], [ -117.089427469859487, 34.834322288457962 ], [ -117.095858544028872, 34.812198291272018 ], [ -117.098443951883198, 34.807639544484992 ], [ -117.165129155647577, 34.753562873423562 ], [ -117.193625478561259, 34.721907172694806 ], [ -117.212274253009667, 34.686280309412425 ], [ -117.209019311586431, 34.668240891079087 ], [ -117.215815277602047, 34.646101042789255 ], [ -117.258308200772674, 34.591012972351287 ], [ -117.282837392813093, 34.563476918484305 ], [ -117.290205526521575, 34.551522636837262 ], [ -117.299922514736977, 34.545526200720396 ], [ -117.309768486212946, 34.538721796640473 ], [ -117.317693575590496, 34.523261648291019 ], [ -117.321789969627901, 34.508076353686477 ], [ -117.323025773375164, 34.503723557013203 ], [ -117.333643067139178, 34.486474519522503 ], [ -117.3451989918414, 34.47044248785614 ], [ -117.379559672172363, 34.426736379562968 ], [ -117.390764661185457, 34.412344376982475 ], [ -117.395501385355516, 34.406351802355879 ], [ -117.400337071457969, 34.40043623304706 ], [ -117.42223514360623, 34.373609239321141 ], [ -117.43302007083706, 34.362837158349144 ], [ -117.4410972783093, 34.347350172133737 ], [ -117.444545213043995, 34.345168422172499 ], [ -117.456855151406245, 34.341042166461897 ], [ -117.472947488769222, 34.340340946195546 ], [ -117.479513412543767, 34.336641419491244 ], [ -117.48141318165635, 34.330411789306702 ], [ -117.481123867721408, 34.322283141042831 ], [ -117.478218353481196, 34.315943285113072 ], [ -117.473612272127909, 34.311911241223044 ], [ -117.466810093379081, 34.305964172332715 ], [ -117.459115075297632, 34.30200396869224 ], [ -117.451206596885413, 34.291102049820033 ], [ -117.451276289949774, 34.280703499857779 ], [ -117.448462775484415, 34.27331467435409 ], [ -117.449058687107097, 34.257045400802753 ], [ -117.448013256660005, 34.254005476488139 ], [ -117.445192409596615, 34.251365442107584 ], [ -117.436474664577133, 34.247036121128907 ], [ -117.409294124502594, 34.225653307794481 ], [ -117.408569526796938, 34.222834349194521 ], [ -117.411789194490055, 34.209261882167176 ], [ -117.417075051281287, 34.197692456912364 ], [ -117.420576111876102, 34.193275746874441 ], [ -117.432664509769708, 34.184270573142321 ], [ -117.435708636849185, 34.181355796747134 ], [ -117.454493883473461, 34.169490006151698 ], [ -117.487626002900967, 34.142342243960464 ], [ -117.497632953935792, 34.134892888323179 ], [ -117.513115211374412, 34.121740896699876 ], [ -117.522611288221015, 34.113562521103205 ], [ -117.53116862452471, 34.106583078698698 ], [ -117.539467076367842, 34.099125638990074 ], [ -117.543387175318429, 34.090493024468003 ], [ -117.544082710668377, 34.077298365980667 ], [ -117.543976336226578, 34.067441591605615 ], [ -117.544327696256119, 34.059270799503437 ], [ -117.549117611311729, 34.048529279883411 ], [ -117.549286422427272, 34.033918631115135 ], [ -117.549370692924953, 34.028875753607416 ], [ -117.549333132262063, 34.021734919494158 ], [ -117.549205687684164, 33.97535680434077 ], [ -117.549336486006737, 33.95820607633042 ], [ -117.554431034031097, 33.950676443490934 ], [ -117.554500633459071, 33.938019643429648 ], [ -117.554469970742417, 33.931400744669098 ], [ -117.559955663801517, 33.897824538737602 ], [ -117.558140495385786, 33.894120505940897 ], [ -117.545198673904281, 33.882566041494307 ], [ -117.544192166638524, 33.879800034222434 ], [ -117.545419988693098, 33.874524176610898 ], [ -117.54409373594936, 33.868867197961222 ], [ -117.535590205878606, 33.859444920548142 ], [ -117.533355947201798, 33.839833110318352 ], [ -117.527453510021971, 33.829819970029803 ], [ -117.523000282375975, 33.825497814754783 ], [ -117.511804650346775, 33.81611640230615 ], [ -117.504124980812108, 33.802406229475856 ], [ -117.488056570817506, 33.779376853796663 ], [ -117.48648530379657, 33.775146848540103 ], [ -117.486615613142263, 33.76767696480708 ], [ -117.483946773408562, 33.762244929300934 ], [ -117.481009846061625, 33.760554826754174 ], [ -117.477311099862234, 33.760444668052017 ], [ -117.468997782795824, 33.762923272752182 ], [ -117.463651607170462, 33.762305051598112 ], [ -117.456902074845516, 33.757883825268685 ], [ -117.450808472029038, 33.750124674544089 ], [ -117.439765455384801, 33.744574331471568 ], [ -117.430254686306512, 33.743093960511032 ], [ -117.412727930780875, 33.73443341872737 ], [ -117.403712942688514, 33.733273065583198 ], [ -117.39787898176381, 33.73075187869572 ], [ -117.389626650100951, 33.731003527316645 ], [ -117.380382807754955, 33.727947212005049 ], [ -117.378415459513704, 33.727642137149175 ], [ -117.36923256879021, 33.724822820590333 ], [ -117.363390744753261, 33.719180707785092 ], [ -117.360050000258028, 33.715686649482592 ], [ -117.359859200809993, 33.713057701566598 ], [ -117.359508502128961, 33.709491768404071 ], [ -117.354933162180089, 33.705733665099515 ], [ -117.337002585095831, 33.691863242585931 ], [ -117.329711300542954, 33.683905124009037 ], [ -117.323350661088867, 33.676951021037731 ], [ -117.31073592563061, 33.670801645669762 ], [ -117.299723854186837, 33.660982419342908 ], [ -117.291677702450968, 33.653959251146979 ], [ -117.271512251274814, 33.627088037438924 ], [ -117.240960098155753, 33.593381593072266 ], [ -117.233577579167161, 33.586743477905607 ], [ -117.224669500791791, 33.58006031573094 ], [ -117.194390408252119, 33.556778832448273 ], [ -117.177862667448139, 33.546337546654762 ], [ -117.162838162876454, 33.522529681172735 ], [ -117.156790299376325, 33.514358708730015 ], [ -117.149896013285414, 33.499679890427139 ], [ -117.144457936449626, 33.493217894415181 ], [ -117.139623028692753, 33.481057060874392 ], [ -117.136031766314261, 33.468961260148262 ], [ -117.135467441714695, 33.460343462525202 ], [ -117.134469226938535, 33.451939645403385 ], [ -117.136002194499582, 33.445241864708471 ], [ -117.135430709956935, 33.439328997335501 ], [ -117.139900838352162, 33.432718310277281 ], [ -117.147939872573247, 33.427351710146802 ], [ -117.167810649527055, 33.402512026370452 ], [ -117.173996819858743, 33.386227675332407 ], [ -117.173395445233865, 33.378521861789352 ], [ -117.159278697202637, 33.358520897689786 ], [ -117.159318301670311, 33.331082622777053 ], [ -117.159288030421621, 33.318845944364305 ], [ -117.152004534913019, 33.312066852906661 ], [ -117.15066235628565, 33.304715994692785 ], [ -117.153203006230058, 33.298204259697926 ], [ -117.147308674337822, 33.281866462050829 ], [ -117.155813023284381, 33.268077148215539 ], [ -117.156004243993777, 33.263377278946805 ], [ -117.152344122607047, 33.249518501789908 ], [ -117.148889395931164, 33.244948510888165 ], [ -117.139974401433804, 33.220847925691118 ], [ -117.124851135571845, 33.197468077938055 ], [ -117.104656004285303, 33.16181242881877 ], [ -117.103092894120635, 33.154232609197173 ], [ -117.103880276504512, 33.12687450715292 ], [ -117.098008613781744, 33.115441644615686 ], [ -117.087971422913327, 33.098886786336294 ], [ -117.074259076741001, 33.085302696493017 ], [ -117.070292599263908, 33.078279769301226 ], [ -117.068653579647759, 33.069352990622477 ], [ -117.06813517662674, 33.061613216611164 ], [ -117.072109641409455, 33.051714680734015 ], [ -117.072270022959472, 33.044405918642305 ], [ -117.077518312602422, 33.031345531492242 ], [ -117.079709210544038, 33.005387437745362 ], [ -117.08209689799466, 32.998894722906833 ], [ -117.083058296353812, 32.98312511520021 ], [ -117.095827598157641, 32.962813049166861 ], [ -117.104980674811159, 32.948389710337594 ], [ -117.1105646395836, 32.936656175972296 ], [ -117.113494198038879, 32.928314467164789 ], [ -117.115027280003432, 32.917041770121791 ], [ -117.115699142605095, 32.893807302120912 ], [ -117.108072846234407, 32.88015032704871 ], [ -117.105937728678597, 32.873379400004886 ], [ -117.107547622215108, 32.865880622349266 ], [ -117.111292913624084, 32.858918907851567 ], [ -117.120560208580386, 32.840913627323992 ], [ -117.118486111117292, 32.833387718322101 ], [ -117.116092222732732, 32.823049860318747 ], [ -117.111363732493658, 32.795207306926997 ], [ -117.112958610687912, 32.788424509510733 ], [ -117.113500633588671, 32.784686609590423 ], [ -117.111410452300802, 32.778731669555668 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I155\", \"DIST_MILES\": 57.780000, \"DIST_KM\": 92.990000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -89.484302109827624, 40.6206473087936 ], [ -89.478565116136153, 40.610847372618295 ], [ -89.477962833820754, 40.581276651043943 ], [ -89.476948837035138, 40.539479043936595 ], [ -89.472569765904339, 40.534100073590565 ], [ -89.472012954091483, 40.525449153326875 ], [ -89.471380960703627, 40.471570832443057 ], [ -89.472571181170238, 40.460211015148587 ], [ -89.468680258456502, 40.441709276150569 ], [ -89.4576179218965, 40.428190406905827 ], [ -89.455085488023713, 40.381011095578387 ], [ -89.453842278169901, 40.322841953884698 ], [ -89.452980451705869, 40.308224163126035 ], [ -89.451272017409806, 40.264172799679145 ], [ -89.450967194727227, 40.251110990031592 ], [ -89.442131784679745, 40.232434246709751 ], [ -89.437652554613351, 40.214753532689741 ], [ -89.419486694058278, 40.196164614544976 ], [ -89.416121509316824, 40.178353887305413 ] ], [ [ -89.748098613817859, 36.215999302719226 ], [ -89.72918493106701, 36.199729678820326 ], [ -89.70415209621477, 36.186340988263922 ], [ -89.679645225669205, 36.16254150337911 ], [ -89.67248897736043, 36.155949642801545 ], [ -89.663600691828933, 36.151348740051482 ], [ -89.658976546335296, 36.149395781087094 ], [ -89.637316867445222, 36.139958975207009 ], [ -89.62597850646209, 36.133371107060483 ], [ -89.612924040171677, 36.114740473969363 ], [ -89.602586668620006, 36.098230793285275 ], [ -89.598725549112459, 36.095899836275322 ], [ -89.585610167375492, 36.092950884208385 ], [ -89.513442092622725, 36.07734211422418 ], [ -89.448010712642983, 36.069479109350269 ], [ -89.40011980541928, 36.068541001988457 ], [ -89.396625739656557, 36.068899987494952 ], [ -89.390872630429399, 36.068323981552197 ], [ -89.361194069354596, 36.06762891527908 ], [ -89.354990952176138, 36.068578885567106 ], [ -89.348048820247911, 36.072931805957907 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I16\", \"DIST_MILES\": 164.950000, \"DIST_KM\": 265.470000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -83.637428903104947, 32.855588621123857 ], [ -83.627167852202618, 32.84764274150222 ], [ -83.623558895241629, 32.843072819382179 ], [ -83.619904903972241, 32.839623870604612 ], [ -83.613838829444305, 32.836758891727939 ], [ -83.599281828135048, 32.825166025596808 ], [ -83.593819792904114, 32.822057045303019 ], [ -83.578148741032578, 32.812319102941906 ], [ -83.569664986714429, 32.800108247351602 ], [ -83.559945298284205, 32.786009395925063 ], [ -83.556940031684817, 32.765409709450658 ], [ -83.554247224747243, 32.759077782205601 ], [ -83.532343307571779, 32.720340515553545 ], [ -83.489785025411123, 32.685181474088232 ], [ -83.483177480782885, 32.678272907948269 ], [ -83.447431415644985, 32.658052848743914 ], [ -83.448911548654706, 32.657534814571299 ], [ -83.447820455073895, 32.656713884774064 ], [ -83.436176436061416, 32.652915456383525 ], [ -83.415224588912594, 32.648335422870289 ], [ -83.403130530610326, 32.640615217549104 ], [ -83.387810175849296, 32.6337871274023 ], [ -83.370130605427661, 32.623908314153319 ], [ -83.312508409331173, 32.598453155651185 ], [ -83.289610312325905, 32.586224932727809 ], [ -83.244341383632047, 32.57464977690308 ], [ -83.237368032991682, 32.573006147093494 ], [ -83.236535987836646, 32.571656267112807 ], [ -83.233811854048895, 32.572056342472422 ], [ -83.217744048244825, 32.568124195177475 ], [ -83.150472693047007, 32.541330258462018 ], [ -83.131161745031861, 32.534934295760237 ], [ -83.101802313912415, 32.526424767220114 ], [ -83.090753778376708, 32.522046373518378 ], [ -83.060830337768195, 32.51090493861507 ], [ -83.000501448052347, 32.501958300173406 ], [ -82.979001724242238, 32.497449221931682 ], [ -82.935115240778657, 32.487812940799728 ], [ -82.915591585233201, 32.48507381321437 ], [ -82.895555924015881, 32.485279631915319 ], [ -82.874887232777283, 32.483277493126039 ], [ -82.81547521920163, 32.47224828448006 ], [ -82.752866050330269, 32.45285046145699 ], [ -82.700328462993838, 32.433999685406093 ], [ -82.691386211189197, 32.433919796900987 ], [ -82.679850892965291, 32.437688783330842 ], [ -82.67061863324281, 32.439008837033079 ], [ -82.650194052696278, 32.435091245243164 ], [ -82.618943173818522, 32.433531693119505 ], [ -82.607338846886947, 32.433981812782811 ], [ -82.595528516103656, 32.433371985608673 ], [ -82.571402853222537, 32.429000502502781 ], [ -82.545554145211952, 32.42623197615508 ], [ -82.539831984348851, 32.426651027062455 ], [ -82.50557498157066, 32.434563012453523 ], [ -82.500829849741748, 32.434311084242239 ], [ -82.477650284746588, 32.427323462607546 ], [ -82.403933330998441, 32.419831859696906 ], [ -82.39225301035259, 32.417820993916756 ], [ -82.352570872439344, 32.408113712612298 ], [ -82.321304990389152, 32.407403790723869 ], [ -82.31629983206804, 32.405504947799983 ], [ -82.308075544014699, 32.399985407111075 ], [ -82.296249123365456, 32.392726031001644 ], [ -82.289763903191471, 32.390186261143583 ], [ -82.249822641125675, 32.384872849755453 ], [ -82.228712184520404, 32.382148956644436 ], [ -82.189091329845098, 32.376286225929967 ], [ -82.165981853489725, 32.374016281367531 ], [ -82.135723263350954, 32.37355512989415 ], [ -82.106715721858606, 32.375465773720542 ], [ -82.068017960586602, 32.374107649017219 ], [ -82.02530811767889, 32.371463615292008 ], [ -81.999817558861366, 32.359486535615972 ], [ -81.99986356842463, 32.360966401461191 ], [ -81.944113987735932, 32.33424828874832 ], [ -81.901120860643545, 32.313602097476327 ], [ -81.891423619065151, 32.310703567021051 ], [ -81.873860188188246, 32.307492244162646 ], [ -81.844624481276512, 32.303045279671743 ], [ -81.757463513570301, 32.276400121406638 ], [ -81.724260298378169, 32.259133427481089 ], [ -81.712786256147623, 32.256433062284394 ], [ -81.700685216995979, 32.253171766237628 ], [ -81.689577222838537, 32.244944626596173 ], [ -81.677240204639588, 32.23931432661967 ], [ -81.646212109772662, 32.231934781842931 ], [ -81.623491013100107, 32.230207695432419 ], [ -81.577599809342374, 32.227977479805965 ], [ -81.538895693212595, 32.219530123733826 ], [ -81.526261655211641, 32.216882642680723 ], [ -81.504823596442478, 32.21182151824955 ], [ -81.497430627653316, 32.208911732601365 ], [ -81.460222243113165, 32.181251039906314 ], [ -81.436815550625312, 32.163513314048529 ], [ -81.418917752394393, 32.145721668698378 ], [ -81.406801855884737, 32.137684829552072 ], [ -81.383632012341934, 32.122582167216059 ], [ -81.365390105595594, 32.114922344974694 ], [ -81.322612253433832, 32.099492756889958 ], [ -81.319995259944491, 32.098687780601779 ], [ -81.258952287691457, 32.076635534718449 ], [ -81.246036270947513, 32.07417571189081 ], [ -81.174418008953666, 32.067730491521026 ], [ -81.150141962104186, 32.073235757371172 ], [ -81.148317961770545, 32.074867719393225 ], [ -81.134874910345445, 32.071267171993313 ], [ -81.115930850603633, 32.066777796661441 ], [ -81.111467839394166, 32.067586852354943 ], [ -81.105333823351202, 32.070966812334966 ], [ -81.100138807583278, 32.073148810262254 ], [ -81.098680802758594, 32.074018796007643 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I164\", \"DIST_MILES\": 20.640000, \"DIST_KM\": 33.220000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -87.469865108227765, 38.168604277694946 ], [ -87.469331013800542, 38.165484254282447 ], [ -87.467514679547037, 38.154238167544442 ], [ -87.465247711675346, 38.115403790868079 ], [ -87.472510160765793, 38.077264248214945 ], [ -87.480451887933782, 38.051128827252469 ], [ -87.481123560194249, 38.035721651601278 ], [ -87.473492741185154, 38.012882540979412 ], [ -87.47102849970382, 38.006378513809452 ], [ -87.465245070571299, 37.997002560713362 ], [ -87.454814383278674, 37.983551805934589 ], [ -87.451541113217189, 37.976749894526861 ], [ -87.450236878229916, 37.968147958331166 ], [ -87.448687653643333, 37.960412021585569 ], [ -87.450510638805142, 37.956643009915652 ], [ -87.453883679882679, 37.952862973180224 ], [ -87.491329774831186, 37.941002426841109 ], [ -87.509015482148115, 37.943234274566443 ], [ -87.524930985455157, 37.938683299114651 ], [ -87.543386778589309, 37.942822279440676 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I165\", \"DIST_MILES\": 4.800000, \"DIST_KM\": 7.720000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -88.095284615700322, 30.752576317361971 ], [ -88.089897428635325, 30.748267444063309 ], [ -88.089020332184532, 30.740098661824248 ], [ -88.074538769043855, 30.727469006777127 ], [ -88.052565912254906, 30.709719475880132 ], [ -88.046636628190925, 30.699627733804409 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I17\", \"DIST_MILES\": 144.720000, \"DIST_KM\": 232.910000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -111.661286007690194, 35.177975718999136 ], [ -111.662330888119044, 35.171956881080391 ], [ -111.672142671567087, 35.164765959790458 ], [ -111.677406522029472, 35.158857055021841 ], [ -111.684120201341017, 35.143476384951754 ], [ -111.684637950639711, 35.129026773048665 ], [ -111.680800861904288, 35.122325019664551 ], [ -111.681540535862936, 35.103698522013836 ], [ -111.68809415163517, 35.083178961898525 ], [ -111.682569957407694, 35.070389421142671 ], [ -111.685644813790205, 35.062668569532519 ], [ -111.683393694360916, 35.055241820689602 ], [ -111.685094462753881, 35.041982146902591 ], [ -111.683942316832642, 35.033299411031855 ], [ -111.685743152845376, 35.023881626581662 ], [ -111.684712988052226, 35.01415091755981 ], [ -111.687008604723346, 34.99303234545166 ], [ -111.685032203081704, 34.972921677992325 ], [ -111.677257913449765, 34.957011069418854 ], [ -111.654681744939964, 34.942802715133595 ], [ -111.649844683158236, 34.937903865605662 ], [ -111.649181566904176, 34.93088195371778 ], [ -111.641048329436387, 34.913643279947792 ], [ -111.641726922377416, 34.8890925129434 ], [ -111.639590829544119, 34.882195612688363 ], [ -111.627306697321373, 34.865902931077784 ], [ -111.618242747755389, 34.862752073118202 ], [ -111.60866075820762, 34.855985241018459 ], [ -111.60362568305338, 34.846013365156303 ], [ -111.605120496194715, 34.833303431115354 ], [ -111.61220022306648, 34.820333453950418 ], [ -111.610270150016163, 34.813012521836782 ], [ -111.599795228556673, 34.807073641109831 ], [ -111.598406192546634, 34.802587677725768 ], [ -111.601076038808515, 34.793935711904147 ], [ -111.607919818353864, 34.785943723660765 ], [ -111.614946646275541, 34.78231571260887 ], [ -111.634118215796619, 34.776544669332992 ], [ -111.642388957857818, 34.770135696675695 ], [ -111.654328661419612, 34.766244694239234 ], [ -111.659798467271557, 34.761403731896308 ], [ -111.690963422794056, 34.740416026838979 ], [ -111.700973051721917, 34.731955206232513 ], [ -111.70655688438282, 34.729414257101922 ], [ -111.72028940775904, 34.719675466971573 ], [ -111.729795022643088, 34.709944686446967 ], [ -111.742345578729669, 34.700693895767515 ], [ -111.743909506919792, 34.698633943967238 ], [ -111.744290350583171, 34.690456140055169 ], [ -111.744534281373944, 34.686927224666881 ], [ -111.747251173223361, 34.684257287504373 ], [ -111.758640849248039, 34.676765519370441 ], [ -111.776890501917848, 34.671615764442329 ], [ -111.795894955234544, 34.653256335877039 ], [ -111.809474617235125, 34.642025699787311 ], [ -111.813952525758921, 34.639496791499916 ], [ -111.829646261379779, 34.634347023330875 ], [ -111.835429102504477, 34.627206236573542 ], [ -111.842188972352218, 34.623079383395172 ], [ -111.848879810866492, 34.615777607327942 ], [ -111.856218694247829, 34.612813730286966 ], [ -111.865854553941645, 34.609887868475518 ], [ -111.868784496908177, 34.607469947868829 ], [ -111.883936068846666, 34.577990774287692 ], [ -111.888047992086513, 34.573489913411088 ], [ -111.900567805981197, 34.564250228421685 ], [ -111.905412694305767, 34.554599499396446 ], [ -111.905991608752942, 34.543201782799166 ], [ -111.908288568602828, 34.539871880907178 ], [ -111.911317535350037, 34.538188943964492 ], [ -111.918877471739748, 34.536732034230241 ], [ -111.92446243623651, 34.537583053716055 ], [ -111.938607313657528, 34.534062242756278 ], [ -111.942361274762035, 34.53159033083579 ], [ -111.94986021246288, 34.529721431489222 ], [ -111.95276719240492, 34.530011445588265 ], [ -111.958398162833916, 34.533551399600654 ], [ -111.975457029336724, 34.533612523105404 ], [ -111.981056977992935, 34.530060651924778 ], [ -111.99216487413095, 34.514242124641058 ], [ -112.003570783087795, 34.500013536038587 ], [ -112.007896767798741, 34.491102671774868 ], [ -112.018104696215119, 34.4837817784245 ], [ -112.022362670586347, 34.479253847027707 ], [ -112.027839661491257, 34.465354065294342 ], [ -112.03350063268644, 34.457984180501576 ], [ -112.035591644495469, 34.447882342173102 ], [ -112.044540600272995, 34.436541523061727 ], [ -112.048897590449158, 34.42750466932214 ], [ -112.050979579007901, 34.425353704257567 ], [ -112.062385493520921, 34.420523783489521 ], [ -112.083961405894925, 34.390533286530129 ], [ -112.105530265506147, 34.376075543088717 ], [ -112.115097220087279, 34.365524730539015 ], [ -112.11680622133504, 34.361393802793479 ], [ -112.117393280548214, 34.345734071715029 ], [ -112.12090331799368, 34.329163360398574 ], [ -112.127746370608321, 34.302525829627534 ], [ -112.123131468360384, 34.288595061570376 ], [ -112.113121609024503, 34.274126290205892 ], [ -112.111305648103439, 34.267965391634853 ], [ -112.112282703146377, 34.252405659309503 ], [ -112.110420893355297, 34.219416184419586 ], [ -112.113060905759738, 34.213858276895849 ], [ -112.127090889831535, 34.199908513798668 ], [ -112.130195899022894, 34.194766596727312 ], [ -112.132240915063406, 34.189738676218369 ], [ -112.138337075920077, 34.156399190202322 ], [ -112.14174708587197, 34.151417265854711 ], [ -112.140862131244688, 34.144829366064627 ], [ -112.145577139264148, 34.139107451061378 ], [ -112.150018170650441, 34.13003958495942 ], [ -112.149636189638358, 34.127357625360126 ], [ -112.145943235465197, 34.123249689851612 ], [ -112.145631281528665, 34.116077798223429 ], [ -112.140450383359294, 34.103718991330631 ], [ -112.142815405434703, 34.098229071372742 ], [ -112.144257457084109, 34.088708213138297 ], [ -112.139611558268371, 34.075459422749987 ], [ -112.14846170104687, 34.046460839872836 ], [ -112.148591735024041, 34.040929922471911 ], [ -112.146317794287626, 34.032659053576957 ], [ -112.148034882936741, 34.017450276570017 ], [ -112.138002007201948, 33.999231586617533 ], [ -112.136803836758389, 33.985060752399292 ], [ -112.129647730907337, 33.975309893427365 ], [ -112.128121675031679, 33.970591953936541 ], [ -112.129037626941582, 33.966841992936679 ], [ -112.137391469260365, 33.955119090040732 ], [ -112.141671297224875, 33.941512225012538 ], [ -112.146690866942535, 33.906371597703448 ], [ -112.147621667962042, 33.889892778445891 ], [ -112.143440132435913, 33.84565429927946 ], [ -112.144492925095008, 33.828491486973498 ], [ -112.137046627180212, 33.804901797887432 ], [ -112.135642544285702, 33.798363880711783 ], [ -112.112585512732494, 33.686495796868449 ], [ -112.113958410919963, 33.668884125960673 ], [ -112.115759237018651, 33.639526678728885 ], [ -112.116064148896754, 33.624736960583967 ], [ -112.116468065340285, 33.610840225070035 ], [ -112.116307894015904, 33.581955779112313 ], [ -112.117367803413828, 33.567582050845061 ], [ -112.112713764924052, 33.55717226557838 ], [ -112.11247765910629, 33.53870561885909 ], [ -112.112446488219433, 33.509219181790222 ], [ -112.112889394637435, 33.495035465490204 ], [ -112.112897289372398, 33.480769777487076 ], [ -112.112973263227062, 33.477301853139018 ], [ -112.108113184029165, 33.461837205139446 ], [ -112.107983098677835, 33.450229460266463 ], [ -112.107983080387839, 33.447769514255008 ], [ -112.108051998089621, 33.436767755486819 ], [ -112.106937961454221, 33.430820889697252 ], [ -112.103748969197156, 33.428962941208297 ], [ -112.099636996762982, 33.428962955042941 ], [ -112.083104107593797, 33.429360002156692 ], [ -112.07356716114738, 33.428532053259779 ], [ -112.065503212170682, 33.428738076324763 ], [ -112.061833237384107, 33.429131080067712 ], [ -112.04926029591131, 33.427201167644881 ], [ -112.0374803638705, 33.427369205142234 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I170\", \"DIST_MILES\": 10.960000, \"DIST_KM\": 17.650000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -90.339744612779441, 38.775841518955694 ], [ -90.340408643357392, 38.773602551415884 ], [ -90.337982601588322, 38.767151623829562 ], [ -90.3395236914549, 38.758091749653587 ], [ -90.337738682370286, 38.749230853956156 ], [ -90.331893628978818, 38.734742968770362 ], [ -90.331764680134356, 38.728422030871108 ], [ -90.331672763631303, 38.718523128670803 ], [ -90.334251921991182, 38.70955023104365 ], [ -90.339188117144531, 38.704782304001981 ], [ -90.344163301020757, 38.701471362839271 ], [ -90.345124358224197, 38.698377398747148 ], [ -90.345818403275814, 38.695722428900616 ], [ -90.35154862636297, 38.690702509146689 ], [ -90.353814736258059, 38.686292565287346 ], [ -90.357255890278381, 38.681070635901939 ], [ -90.360902035401594, 38.677591690232013 ], [ -90.362116103552694, 38.674222730618794 ], [ -90.361345139658852, 38.667486794344008 ], [ -90.35782008853927, 38.660818842484218 ], [ -90.354173043238163, 38.653024901035508 ], [ -90.349061941232989, 38.64637193988532 ], [ -90.345437899508681, 38.638152002235962 ], [ -90.343781861652019, 38.63651100951099 ], [ -90.343514912565766, 38.629775075292336 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I172\", \"DIST_MILES\": 25.260000, \"DIST_KM\": 40.650000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -91.308259240162954, 40.007336323268824 ], [ -91.305589106931194, 39.995346341044616 ], [ -91.31391245471562, 39.969036279812393 ], [ -91.325418936796098, 39.946957214197049 ], [ -91.324609899758244, 39.935086197496979 ], [ -91.322602812639801, 39.925137187389652 ], [ -91.323815857203712, 39.896847138926745 ], [ -91.322015779574102, 39.889157132202229 ], [ -91.324159868989483, 39.885376119627615 ], [ -91.338358463706669, 39.873997056962899 ], [ -91.339487509824096, 39.869076045187505 ], [ -91.335459338782641, 39.863095048052323 ], [ -91.303139973882296, 39.828007099363916 ], [ -91.302261933815373, 39.809086074402302 ], [ -91.298569777518509, 39.79873707217989 ], [ -91.300568860559594, 39.794987059609852 ], [ -91.307336142516334, 39.788605025956862 ], [ -91.311799328173549, 39.783596002290771 ], [ -91.311982332640426, 39.76769697734251 ], [ -91.310823283675973, 39.764835977277976 ], [ -91.304933036935836, 39.760284992377635 ], [ -91.299095792927133, 39.757961010811464 ], [ -91.194782697091966, 39.716427310264812 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I175\", \"DIST_MILES\": 1.220000, \"DIST_KM\": 1.970000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -82.657917260411921, 27.767706128404328 ], [ -82.655644207962027, 27.766155187724365 ], [ -82.638599814155171, 27.765795239148957 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I176\", \"DIST_MILES\": 11.290000, \"DIST_KM\": 18.170000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -75.898228382881584, 40.306754252361756 ], [ -75.901394594905256, 40.298087180763218 ], [ -75.904766819073657, 40.283602070498787 ], [ -75.914342513407732, 40.271623947051332 ], [ -75.915944630006592, 40.265573900240419 ], [ -75.913480439891075, 40.254491840170928 ], [ -75.915510382769924, 40.239863291281857 ], [ -75.911597631441495, 40.220325250065528 ], [ -75.919580720225582, 40.199937170844052 ], [ -75.919810610022694, 40.188428716972012 ], [ -75.915241091766305, 40.178796213742785 ], [ -75.898410596548985, 40.161460198972556 ], [ -75.898053248689067, 40.15333859789763 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I180\", \"DIST_MILES\": 44.190000, \"DIST_KM\": 71.110000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -104.812953555723112, 41.133621324661156 ], [ -104.81099352749915, 41.128559377244081 ] ], [ [ -104.81099352749915, 41.128559377244081 ], [ -104.814288576924582, 41.133171338541544 ] ], [ [ -104.81099352749915, 41.128559377244081 ], [ -104.804683436867279, 41.118851458921135 ] ], [ [ -89.382979226285883, 41.40030459348835 ], [ -89.384322263101396, 41.400376600809757 ], [ -89.38265817277032, 41.371354821867513 ], [ -89.381178091782076, 41.343645034441032 ], [ -89.388136249702953, 41.330965171385273 ], [ -89.393401356274126, 41.316076315314419 ], [ -89.401083516790749, 41.300546474318416 ], [ -89.399901407157486, 41.26057677937095 ], [ -89.398733379228887, 41.26034777598062 ], [ -89.397658357974038, 41.26240775515658 ], [ -89.39405727661584, 41.264307724249718 ], [ -89.373166785757235, 41.266367614322952 ], [ -89.347417172776147, 41.260843544677584 ], [ -89.33440886589139, 41.257356516501048 ], [ -89.328198720330377, 41.256876493289752 ] ], [ [ -77.039782853385887, 41.231863346365472 ], [ -77.025187888297722, 41.230562712903314 ], [ -77.018824910874372, 41.231329849651054 ], [ -77.013880930859159, 41.232378946761386 ], [ -76.999789007673584, 41.23926813938057 ], [ -76.995722930418239, 41.243888092690909 ], [ -76.974009404515101, 41.250945200346486 ], [ -76.958039995888186, 41.247519439866323 ], [ -76.943315626102276, 41.246425626961788 ], [ -76.940911566415423, 41.246695648265366 ], [ -76.93899652023002, 41.249438612872041 ], [ -76.93708147234878, 41.249850625701981 ], [ -76.932145341935524, 41.253001640234871 ], [ -76.929681266291837, 41.258960593835063 ], [ -76.924951136844072, 41.26314159239336 ], [ -76.919197988028941, 41.264441636829325 ], [ -76.914192864181743, 41.263415703030418 ], [ -76.884666155862504, 41.253139162760142 ], [ -76.861235578772636, 41.252727428172619 ], [ -76.853881404938832, 41.25099253664294 ], [ -76.844512205961863, 41.245869746730605 ], [ -76.828047813470178, 41.245441941243648 ], [ -76.809370435252177, 41.237794319367154 ], [ -76.800428273568102, 41.232961527221853 ], [ -76.792440165000926, 41.225652779734268 ], [ -76.771100864917955, 41.210791355904341 ], [ -76.768986923388056, 41.202032575947037 ], [ -76.770277059236108, 41.192614770926788 ], [ -76.773817160068276, 41.189871790286979 ], [ -76.785452413724272, 41.187361708501314 ], [ -76.790846555608653, 41.183702725600284 ], [ -76.792997624979705, 41.180891762183819 ], [ -76.791250648257147, 41.175318906156591 ], [ -76.789045695656597, 41.16673212250307 ], [ -76.796720904067385, 41.15948419009937 ], [ -76.802031111116818, 41.147273394631597 ], [ -76.800071178850914, 41.136703651337946 ], [ -76.801329345148218, 41.12113597854762 ], [ -76.801909406043151, 41.115543094411038 ], [ -76.81275876036581, 41.092423465255344 ], [ -76.833877230187696, 41.064255808298533 ], [ -76.840141396371834, 41.049436047870245 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I181\", \"DIST_MILES\": 23.780000, \"DIST_KM\": 38.270000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -82.58245648529342, 36.556500285422523 ], [ -82.582448195602709, 36.538571446020931 ], [ -82.579616817074523, 36.523541627341615 ], [ -82.572643247782636, 36.509801869719475 ], [ -82.564753720062598, 36.502012077409034 ], [ -82.545259560463407, 36.484320675409975 ], [ -82.543375384052254, 36.475180848020642 ], [ -82.540582202474482, 36.47007297309392 ], [ -82.542352241115395, 36.464930022755674 ], [ -82.541101150813645, 36.461562095112647 ], [ -82.53930105420234, 36.460353143221951 ], [ -82.528390517583588, 36.458262353874034 ], [ -82.523003229180262, 36.454093504492533 ], [ -82.521142097179819, 36.448363620362862 ], [ -82.523354128155319, 36.439113723155444 ], [ -82.52167601489306, 36.434501818876427 ], [ -82.514091603622504, 36.425804067876349 ], [ -82.503120071895367, 36.420563316335254 ], [ -82.492942551005058, 36.417812450831519 ], [ -82.479910822358178, 36.408394675454481 ], [ -82.457875616903451, 36.395654021395529 ], [ -82.449620188339324, 36.39463509534032 ], [ -82.440509687201725, 36.388246262788236 ], [ -82.429767116699168, 36.384164407565045 ], [ -82.42412877535638, 36.373803621584074 ], [ -82.416018340381967, 36.369393757943129 ], [ -82.410082009825842, 36.363565903460852 ], [ -82.397035308424108, 36.35525315182516 ], [ -82.389420902563387, 36.350824292198567 ], [ -82.378464333322469, 36.347345445538309 ], [ -82.369064839567486, 36.342894605616465 ], [ -82.364387564384742, 36.333647815531847 ], [ -82.348692728004423, 36.321857175550683 ], [ -82.346663599379482, 36.315097321863817 ], [ -82.341337323481454, 36.312625418588922 ], [ -82.338484165085134, 36.308517524004543 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I182\", \"DIST_MILES\": 14.620000, \"DIST_KM\": 23.520000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -119.365764252542675, 46.249284021844396 ], [ -119.339039216676838, 46.249653146640021 ], [ -119.321692173915096, 46.250658662629519 ], [ -119.302858405303439, 46.255645029200139 ], [ -119.284565649503179, 46.260849498098139 ], [ -119.264498187257971, 46.260636677068213 ], [ -119.258616926715533, 46.258198826329419 ], [ -119.257604132599866, 46.259480700282865 ], [ -119.246854005886021, 46.261004220076437 ], [ -119.238083664723604, 46.264238006883964 ], [ -119.222266178695463, 46.272532863003576 ], [ -119.214371859718156, 46.273863764406983 ], [ -119.206616770387939, 46.272561655620933 ], [ -119.178366860679006, 46.264195594164605 ], [ -119.122765345517834, 46.24865772286698 ], [ -119.113743322264071, 46.248832496749706 ], [ -119.098283818792765, 46.248715401152261 ], [ -119.091708254784493, 46.250229531492089 ], [ -119.079798630824328, 46.251978956876897 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I184\", \"DIST_MILES\": 3.610000, \"DIST_KM\": 5.810000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -116.295307606114832, 43.596949816029024 ], [ -116.2889160702411, 43.597399655136329 ], [ -116.276645615817912, 43.60448733382043 ], [ -116.272786032922653, 43.607039232082542 ], [ -116.260781460970492, 43.613748918749195 ], [ -116.248929885950787, 43.617456616273543 ], [ -116.242096444952381, 43.618009439177982 ], [ -116.232274126872483, 43.618158187743411 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I185\", \"DIST_MILES\": 51.580000, \"DIST_KM\": 83.010000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -82.416318737818713, 34.820998833851675 ], [ -82.419736981582119, 34.817046857623801 ], [ -82.423529388416014, 34.80609893975295 ], [ -82.428114693968666, 34.801936956171915 ], [ -82.43729424645781, 34.796538959584211 ], [ -82.439193477384791, 34.789879003662712 ] ], [ [ -84.945690820912418, 33.060106203131305 ], [ -84.951229818085494, 33.042349640959294 ], [ -84.95396880736422, 33.032362887193713 ], [ -84.952282619597341, 33.015765324941604 ], [ -84.954845590115312, 33.004016615945638 ], [ -84.95064135075954, 32.990265011161924 ], [ -84.952633143612786, 32.961456796281865 ], [ -84.953632013028084, 32.944078270834531 ], [ -84.945361629884999, 32.927148783991534 ], [ -84.944941442628178, 32.907858319597523 ], [ -84.9463914191481, 32.900870504659828 ], [ -84.958651590495137, 32.882418945315372 ], [ -84.963549604529788, 32.869075285703687 ], [ -84.968470690206217, 32.863529410556254 ], [ -84.978205899491996, 32.856929536651975 ], [ -84.991718181192212, 32.846809737368098 ], [ -85.00770249029101, 32.828991137705259 ], [ -85.016842733726918, 32.824070224443837 ], [ -85.020328796125682, 32.818730353399793 ], [ -85.0208323927815, 32.771451657275996 ], [ -85.017078147179561, 32.757422063026631 ], [ -85.016842051345535, 32.747542362287909 ], [ -85.018566016131146, 32.737341735204403 ], [ -85.017077911395845, 32.73107497719397 ], [ -85.017131786705164, 32.716964504762586 ], [ -85.007472328787685, 32.701844128135157 ], [ -84.990946756235232, 32.69079362061192 ], [ -84.985697467012741, 32.671754345297984 ], [ -84.979303250574404, 32.663354669891739 ], [ -84.971169985662257, 32.652865068266038 ], [ -84.965378753072116, 32.638594593162154 ], [ -84.955605474563313, 32.628157973493629 ], [ -84.952698379517486, 32.622867162567537 ], [ -84.951440324743487, 32.618408321014236 ], [ -84.952035268702133, 32.608066688899243 ], [ -84.961083245842673, 32.579964706687619 ], [ -84.963052105847723, 32.555650588123278 ], [ -84.961044995981339, 32.54482897118821 ], [ -84.959434855523412, 32.528415554686816 ], [ -84.957855799086985, 32.523661717959143 ], [ -84.950523636815007, 32.515227982631792 ], [ -84.949966572386373, 32.506473290242319 ], [ -84.946296488765782, 32.501125458609529 ], [ -84.943443324836949, 32.490425833348212 ], [ -84.939834184025642, 32.483186080619561 ], [ -84.935714012746473, 32.474381385583698 ], [ -84.930396846630529, 32.467687609683544 ], [ -84.929450761932813, 32.462327805374258 ], [ -84.927680523253244, 32.446352394940824 ], [ -84.926825260671251, 32.427627092429425 ], [ -84.928542233931054, 32.423324257898976 ], [ -84.927283063579438, 32.412147672529983 ], [ -84.924551921531389, 32.405284924075218 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I189\", \"DIST_MILES\": 1.390000, \"DIST_KM\": 2.230000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -73.20950271421512, 44.44710963341533 ], [ -73.18239046385149, 44.45239399376289 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I19\", \"DIST_MILES\": 63.400000, \"DIST_KM\": 102.030000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -110.975769331761342, 32.192260327399254 ], [ -110.982788447391243, 32.186976435979766 ], [ -110.985321488594579, 32.182483526835021 ], [ -110.985809496314559, 32.177817620560752 ], [ -110.986686507697513, 32.133797503445166 ], [ -110.986908510595427, 32.126583647980262 ], [ -110.989212544882577, 32.1190077983265 ], [ -110.993393605019151, 32.103181111430629 ], [ -110.992134569325955, 32.006244049043879 ], [ -110.991577490451419, 31.986453524739694 ], [ -110.987121270133684, 31.954113363677358 ], [ -110.985550009862536, 31.906064596972197 ], [ -110.985518982865131, 31.900764732794546 ], [ -110.993605809628633, 31.85151800557875 ], [ -111.003859749325059, 31.824537718945297 ], [ -111.014777690326326, 31.802441304912783 ], [ -111.05801347106582, 31.726097241702078 ], [ -111.062445464884703, 31.716700445411821 ], [ -111.064932451025214, 31.706850655719055 ], [ -111.06452840280204, 31.687511061819073 ], [ -111.063017355827682, 31.671022406936721 ], [ -111.051695134938882, 31.608532714211144 ], [ -111.055098077020162, 31.578403351500601 ], [ -111.054366050383976, 31.570083526614528 ], [ -111.049741970214654, 31.552053905546956 ], [ -111.04575992319441, 31.545394045284688 ], [ -111.024755712964009, 31.528124408247422 ], [ -111.017805632550278, 31.520323573916976 ], [ -110.997800364802345, 31.470505310386599 ], [ -110.993604372917503, 31.463595634911211 ], [ -110.986211397936231, 31.456767972267308 ], [ -110.97242545607169, 31.450416321282237 ], [ -110.967939466343296, 31.446308520315625 ], [ -110.960996344691637, 31.403389369673171 ], [ -110.961256318015103, 31.3964296625111 ], [ -110.959425308106404, 31.391971857457996 ], [ -110.955061290978321, 31.383580226164195 ], [ -110.944486276527059, 31.372090741270387 ], [ -110.943685249717007, 31.365232029511365 ], [ -110.944715219842436, 31.358761296433475 ], [ -110.947980192196894, 31.353941489351339 ], [ -110.953802117971193, 31.3384521253708 ], [ -110.951246109681634, 31.335212266199136 ], [ -110.943769115750911, 31.333663344791315 ], [ -110.941274124177582, 31.334693306530536 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I190\", \"DIST_MILES\": 50.880000, \"DIST_KM\": 81.880000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -87.901608015864895, 41.980219846198011 ], [ -87.900372020057617, 41.981867847558647 ], [ -87.896075856068506, 41.981657895707094 ], [ -87.890941539153616, 41.977358982276918 ], [ -87.886867389933528, 41.97735902626043 ], [ -87.874560097233257, 41.982700121902532 ], [ -87.87035695437531, 41.983089164874308 ] ], [ [ -79.044436350433202, 43.152960095763177 ], [ -79.042079282094946, 43.152742108714726 ], [ -79.038531185185946, 43.152803125796581 ], [ -79.031122960527881, 43.151437170686762 ], [ -79.023302674525084, 43.146669238464824 ], [ -79.018465297108762, 43.13009436386028 ], [ -79.015696146411656, 43.124952408809833 ], [ -79.00312972839825, 43.119489502942137 ], [ -78.992059213287916, 43.107923635640716 ], [ -78.989358107804208, 43.106870658178238 ], [ -78.984245908286255, 43.104875700797734 ], [ -78.981987775818695, 43.10089373827347 ], [ -78.990402892741287, 43.089472757159349 ], [ -78.990867711624972, 43.07579283716958 ], [ -78.990944693402412, 43.074346845465463 ], [ -78.990867610857208, 43.068781879587348 ], [ -78.990570382681611, 43.053590973221269 ], [ -78.9905703308889, 43.049986995022671 ], [ -78.989426203312775, 43.043742039410091 ], [ -78.969977151923928, 43.015044323480218 ], [ -78.965818976247334, 43.012290363565249 ], [ -78.947653276518878, 43.004901510402462 ], [ -78.947378261484204, 43.004473514486897 ], [ -78.932278657053985, 42.99613865606058 ], [ -78.926762438847774, 42.993010711146333 ], [ -78.917409080615769, 42.988505798000531 ], [ -78.914402964873602, 42.986968826494611 ], [ -78.910160751215727, 42.98057489873878 ], [ -78.910015736991369, 42.979777905600052 ], [ -78.911663720061313, 42.973979940618094 ], [ -78.921261915468634, 42.96488495759673 ], [ -78.919536814813384, 42.961135995690682 ], [ -78.910457452108488, 42.954887092440146 ], [ -78.908596277310352, 42.945186176133618 ], [ -78.903323983861384, 42.934341286271206 ], [ -78.898417759242832, 42.928169358636978 ], [ -78.901644697381172, 42.914497445020999 ], [ -78.901446596247311, 42.906444506865 ], [ -78.900019482080936, 42.900429559538672 ], [ -78.898196405840096, 42.898628582361482 ], [ -78.888728012737033, 42.889297700126363 ], [ -78.883432793452243, 42.88396176642626 ], [ -78.882234742705307, 42.882637782250967 ], [ -78.878862613328451, 42.880066818117385 ], [ -78.872995409661129, 42.877422866770686 ], [ -78.870561330600481, 42.876793883453246 ], [ -78.863016092808195, 42.875458930552504 ], [ -78.857720911787695, 42.873176973364039 ], [ -78.828010985895219, 42.868062156241862 ], [ -78.824401884377437, 42.868466171056561 ], [ -78.820602781572916, 42.869302183759771 ], [ -78.81642968706484, 42.872102184463948 ], [ -78.812683603384357, 42.874776184081995 ], [ -78.807838475184113, 42.876229197831542 ], [ -78.787901879708713, 42.875096304375376 ] ], [ [ -71.797731492509328, 42.287305463118606 ], [ -71.799112356481245, 42.290131405940201 ], [ -71.799181425832884, 42.293221374200733 ], [ -71.803086917700725, 42.296407259736725 ], [ -71.804505746911573, 42.298089213066909 ], [ -71.808068378270704, 42.304620073455851 ], [ -71.808632452949041, 42.310803001070447 ], [ -71.804040401807114, 42.320725001552226 ], [ -71.804719475394506, 42.327541920461918 ], [ -71.799113476307028, 42.333484981238087 ], [ -71.798029721141319, 42.336609973626764 ], [ -71.800036517836901, 42.340496892967117 ], [ -71.810602208593849, 42.351539561488543 ], [ -71.817078798604712, 42.373352212354042 ], [ -71.817758021682195, 42.385929075505473 ], [ -71.812426050951203, 42.39475210118524 ], [ -71.800328040239478, 42.401085293309855 ], [ -71.798047431132403, 42.402847324028258 ], [ -71.79573586777272, 42.406181339993147 ], [ -71.794470311070441, 42.415893271337481 ], [ -71.780304738604499, 42.426338467141584 ], [ -71.774651923146422, 42.438678464805591 ], [ -71.747450622607971, 42.458767840116309 ], [ -71.733322917568032, 42.466023056746138 ], [ -71.725016352533856, 42.473271154244017 ], [ -71.723666660636184, 42.477292141407275 ], [ -71.724261930261022, 42.491024990787643 ], [ -71.721141761468047, 42.504001906657699 ], [ -71.725276630743338, 42.51953159797403 ], [ -71.731257953971522, 42.526558374647713 ] ], [ [ -103.232393019415056, 44.105208579892953 ], [ -103.232361965209208, 44.090407662393453 ], [ -103.233971990488797, 44.08430369569497 ], [ -103.234659002845333, 44.08215270733718 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I194\", \"DIST_MILES\": 4.680000, \"DIST_KM\": 7.540000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -85.180403869545572, 42.315921176846025 ], [ -85.182242765376813, 42.31180128175874 ], [ -85.185050764344851, 42.309119350953189 ], [ -85.185271670677011, 42.306769410648236 ], [ -85.180327103277634, 42.298488617402889 ], [ -85.178930831905419, 42.293612739604164 ], [ -85.17870871144801, 42.268230380241057 ] ], [ [ -100.843905947410647, 46.822892502090085 ], [ -100.828807243837488, 46.808095645001437 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I195\", \"DIST_MILES\": 93.560000, \"DIST_KM\": 150.570000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -71.41497919603141, 41.816573677368304 ], [ -71.408846227652191, 41.820113787068856 ], [ -71.402156192220573, 41.819010947463916 ], [ -71.399836509040497, 41.81809200759637 ], [ -71.384000920873092, 41.818813361891479 ], [ -71.382444153849292, 41.81873339808498 ], [ -71.359193455240685, 41.812133987147426 ], [ -71.358071619950636, 41.811947014622099 ], [ -71.356279878403612, 41.811520059622495 ], [ -71.353647261502232, 41.810975125108527 ], [ -71.351908515058213, 41.810624168326449 ], [ -71.339741231238122, 41.806534485776311 ], [ -71.288379213914453, 41.781721914831365 ], [ -71.269361964499367, 41.776129421502908 ], [ -71.262488970174147, 41.774287604120921 ], [ -71.246034479066225, 41.76994303442811 ], [ -71.239345558063746, 41.766765211496057 ], [ -71.231220797071472, 41.761123442463088 ], [ -71.219000560438445, 41.749851812132825 ], [ -71.203004153052333, 41.735856223598105 ], [ -71.193026873517397, 41.730927470461651 ], [ -71.192180021551934, 41.730576491272949 ], [ -71.186824918589949, 41.726945629485762 ], [ -71.181179658348157, 41.715874808890533 ], [ -71.17507768144371, 41.711842969626957 ], [ -71.165184372578793, 41.706381228102046 ], [ -71.160958090204275, 41.703863340445139 ], [ -71.154062288487523, 41.700643520607741 ], [ -71.138431783004947, 41.686002974231819 ], [ -71.137241979448405, 41.685107008081026 ], [ -71.133061692222071, 41.682681123478687 ], [ -71.125830011065787, 41.681163309249996 ], [ -71.106913563999754, 41.679850783529432 ], [ -71.091085385032372, 41.673595217359761 ], [ -71.083212796840627, 41.670620434769994 ], [ -71.066354696944302, 41.660488932369603 ], [ -71.058360173408502, 41.65846315189264 ], [ -70.988450865337555, 41.654902036354855 ], [ -70.974644690301758, 41.654746442216634 ], [ -70.954056845259075, 41.65235107390459 ], [ -70.944796768879186, 41.652302349639122 ], [ -70.92942706219354, 41.654133787429345 ], [ -70.928359289251944, 41.654198818562143 ], [ -70.91896130295352, 41.655004090069511 ], [ -70.918076484653042, 41.654889117919645 ], [ -70.903423574415115, 41.654584561504528 ], [ -70.888480946410411, 41.65867095878005 ], [ -70.869480113426505, 41.66039150842537 ], [ -70.852699933395741, 41.664168961756396 ], [ -70.837795314173306, 41.666667375583842 ], [ -70.830754983591973, 41.669143550700966 ], [ -70.810008405103062, 41.685657910512759 ], [ -70.805157780653815, 41.691425959613824 ], [ -70.795974655639398, 41.70736296186135 ], [ -70.775083344955888, 41.72546824881686 ], [ -70.765793239156977, 41.739895251848282 ], [ -70.753544547013291, 41.748703431487769 ], [ -70.748106054773103, 41.754414566076719 ], [ -70.742325098402688, 41.771851745986766 ], [ -70.732523808212662, 41.78377307507516 ], [ -70.729869485347976, 41.785650166116987 ], [ -70.728091880225151, 41.785558230087773 ], [ -70.727817852307396, 41.783517244689165 ], [ -70.729800383722193, 41.782975174669765 ] ], [ [ -74.721896514604964, 40.182765680113164 ], [ -74.717059559250032, 40.184424711277977 ], [ -74.705569652778209, 40.185450826666305 ], [ -74.697039720366405, 40.185492922858394 ], [ -74.691058778093577, 40.187479960506145 ], [ -74.682055882536403, 40.193854963359819 ], [ -74.674563956994589, 40.196353007403047 ], [ -74.646885228905688, 40.203010203752861 ], [ -74.635479328115068, 40.20212534331948 ], [ -74.618404471898273, 40.198707590457886 ], [ -74.600696619566122, 40.193424882451922 ], [ -74.592395693966495, 40.191556010400127 ], [ -74.574176859860799, 40.186871305996327 ], [ -74.549534087782348, 40.178734750434849 ], [ -74.540501179814072, 40.176877894343832 ], [ -74.529668300316544, 40.176386033429644 ], [ -74.515378472493566, 40.177847174179639 ], [ -74.489674796235903, 40.173216554326928 ], [ -74.472051086263036, 40.174757688614783 ], [ -74.458982294406653, 40.17369683592328 ], [ -74.447912462900092, 40.171087998650542 ], [ -74.433584654568364, 40.163298308176714 ], [ -74.424123796058865, 40.160578460721318 ], [ -74.415838920588328, 40.158229594312736 ], [ -74.408774037470778, 40.157698675792645 ], [ -74.393492330691004, 40.161528740140184 ], [ -74.388922411611446, 40.161566784275067 ], [ -74.373618638245105, 40.155769068024732 ], [ -74.366469758063687, 40.154739162993465 ], [ -74.335464330061455, 40.155037466856299 ], [ -74.31858067373895, 40.157539577691423 ], [ -74.302315970304264, 40.155708785272353 ], [ -74.274606538720889, 40.157410025096986 ], [ -74.260278819060602, 40.156380195998835 ], [ -74.257615871095012, 40.156144228950829 ], [ -74.245706111512519, 40.157479303789337 ], [ -74.235712356845326, 40.164929188633913 ], [ -74.227632510520195, 40.16692819504155 ], [ -74.196284030822042, 40.167203404578842 ], [ -74.154368705094072, 40.163586782655507 ], [ -74.143718896016736, 40.163598856964327 ], [ -74.127193301044827, 40.170060822463107 ], [ -74.106808684501331, 40.169900971871044 ], [ -74.10046881348336, 40.17030100815947 ] ], [ [ -77.469522825902828, 37.589955100001248 ], [ -77.474870978547273, 37.58677418030495 ], [ -77.474099973883042, 37.581403267952645 ], [ -77.477290078511984, 37.575635381699442 ], [ -77.477053085132823, 37.571435452018854 ], [ -77.488467440489657, 37.560327696655563 ], [ -77.49026750641903, 37.556195775701198 ] ], [ [ -76.713820969457501, 39.240757572694683 ], [ -76.710142803114607, 39.235256674288877 ], [ -76.702856543100964, 39.229458801178865 ], [ -76.701880412467574, 39.221008930194678 ], [ -76.700659348222558, 39.218308976701742 ], [ -76.697340215655501, 39.214261055086354 ], [ -76.695318122069068, 39.210698118863142 ], [ -76.695402008044468, 39.201219256770983 ], [ -76.692319916986506, 39.199842294816513 ], [ -76.683644574506076, 39.188428512047444 ], [ -76.676206362438123, 39.185151603311525 ], [ -76.671178190828044, 39.180288703719114 ] ], [ [ -80.206343908473613, 25.812446455001165 ], [ -80.189277331713242, 25.811345458933697 ], [ -80.143552780391573, 25.810386398152655 ], [ -80.135915516030579, 25.812816293364552 ] ], [ [ -70.453467561242022, 43.52741803617193 ], [ -70.447152266176758, 43.524038344666081 ], [ -70.438830283333843, 43.514318869881556 ], [ -70.432842946487369, 43.512000143788697 ], [ -70.416032753196859, 43.508082857401554 ], [ -70.409465701861308, 43.507919106608625 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I196\", \"DIST_MILES\": 80.400000, \"DIST_KM\": 129.390000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -85.603597475026035, 42.976635390784267 ], [ -85.623969297173971, 42.976536058190831 ], [ -85.632491555720733, 42.973544971738086 ], [ -85.639777844913155, 42.973346856101237 ], [ -85.650093260442731, 42.973277688638277 ], [ -85.658431546643953, 42.971515584516553 ], [ -85.668838969242231, 42.971565413699203 ], [ -85.678238390542461, 42.9729652341519 ], [ -85.695993096279224, 42.972525952192235 ], [ -85.698984180344368, 42.971266927234169 ], [ -85.700983166580002, 42.968046955903304 ], [ -85.705865298143394, 42.965807919305 ], [ -85.708444305362761, 42.962511940621361 ], [ -85.70526992738003, 42.954025154126967 ], [ -85.710030963978227, 42.948745179169826 ], [ -85.712342880696411, 42.942756257510524 ], [ -85.723604077905037, 42.934078247830371 ], [ -85.734689426047836, 42.930778138753922 ], [ -85.737505510985031, 42.929824113520048 ], [ -85.759501095654443, 42.9198680172222 ], [ -85.764872148350406, 42.914447066609526 ], [ -85.778750476000837, 42.906886063560954 ], [ -85.78050547983058, 42.904666086720077 ], [ -85.780436196955506, 42.895248266238298 ], [ -85.777040758249711, 42.88504049890313 ], [ -85.778322676845889, 42.880588568997233 ], [ -85.782129727079422, 42.877185589296317 ], [ -85.798884096594605, 42.867206577392871 ], [ -85.829456115445595, 42.860591326921131 ], [ -85.850635692318278, 42.851688219409006 ], [ -85.8612940308671, 42.848830134171365 ], [ -85.88205477386569, 42.846068918142528 ], [ -85.896543111520486, 42.838083859547893 ], [ -85.910749528120945, 42.833124752025974 ], [ -85.925009879177111, 42.825903672883264 ], [ -85.93546918218135, 42.822134588978173 ], [ -85.947768585725413, 42.819285465116401 ], [ -85.970352418320701, 42.817122191286941 ], [ -85.97692162396973, 42.81527212716648 ], [ -85.981239706478107, 42.812296107575129 ], [ -85.986420658534996, 42.8038161463259 ], [ -85.99079971750902, 42.799975134617583 ], [ -85.998939939945828, 42.796606063011772 ], [ -86.016030241163307, 42.793084849244607 ], [ -86.02175229145719, 42.790464795529275 ], [ -86.024896273704201, 42.787542784749149 ], [ -86.027139201896588, 42.783525801474205 ], [ -86.032121016325647, 42.773793849147744 ], [ -86.036552967628282, 42.768983843255157 ], [ -86.069839947143308, 42.745294700271636 ], [ -86.071899943110452, 42.743905703094171 ], [ -86.079758934697395, 42.738855707433387 ], [ -86.084717983899822, 42.737245671769095 ], [ -86.115922629399321, 42.736650216433198 ], [ -86.136300967223377, 42.73403297188284 ], [ -86.145998045256036, 42.730621906539703 ], [ -86.152399009415191, 42.726093916955996 ], [ -86.169969354255855, 42.699445277595537 ], [ -86.170143683029949, 42.681890687629483 ], [ -86.16992238494565, 42.674245870795296 ], [ -86.171532226479428, 42.669324961434242 ], [ -86.182304049037725, 42.65948302422521 ], [ -86.191916377908143, 42.637774380638362 ], [ -86.211974166037365, 42.623442395955081 ], [ -86.216704077555789, 42.61917341951964 ], [ -86.219579873984443, 42.612864519597565 ], [ -86.216856043334857, 42.593288016441463 ], [ -86.215382639507112, 42.583797260085177 ], [ -86.220372077967241, 42.567825548540313 ], [ -86.218362530452779, 42.50508603331253 ], [ -86.222039999403066, 42.489637438583401 ], [ -86.222352361891055, 42.47193003043683 ], [ -86.223732249183968, 42.468298131124392 ], [ -86.235183962427215, 42.455981371187804 ], [ -86.251052326386329, 42.431967970614473 ], [ -86.252448896529842, 42.419334401471524 ], [ -86.252440333136647, 42.403598946763829 ], [ -86.252730060361372, 42.395852213710263 ], [ -86.257749717425966, 42.384102594792715 ], [ -86.265432265149656, 42.368211104563642 ], [ -86.268461215141585, 42.365533181188383 ], [ -86.268888211226155, 42.365243188958452 ], [ -86.286709949936238, 42.350503603036465 ], [ -86.301616860479754, 42.314341767318624 ], [ -86.313464251937887, 42.292892438388577 ], [ -86.328081751806081, 42.273484021027159 ], [ -86.339068130858422, 42.252347681145274 ], [ -86.35184701529721, 42.243081934109355 ], [ -86.36295493625417, 42.235277147009256 ], [ -86.365297813769828, 42.230104317560013 ], [ -86.365571444876352, 42.217687758830529 ], [ -86.375023829563361, 42.192748589117457 ], [ -86.378655441203193, 42.178089087855042 ], [ -86.368590649998708, 42.156467922871414 ], [ -86.36801098968084, 42.134740701312751 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I20\", \"DIST_MILES\": 1530.370000, \"DIST_KM\": 2462.890000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -104.04957821673861, 31.08955841990295 ], [ -104.050555264721723, 31.092269342802354 ], [ -104.044665213581197, 31.10527914475195 ], [ -104.024095866549089, 31.13154883485624 ], [ -103.990534029910876, 31.148227817096821 ], [ -103.906203714116003, 31.220545393503112 ], [ -103.877325837201127, 31.241085932242466 ], [ -103.863889461023874, 31.25390663735643 ], [ -103.85468131197652, 31.268594362990136 ], [ -103.798282766863807, 31.306935810725815 ], [ -103.74206809962412, 31.339654430869867 ], [ -103.72499254068407, 31.346774424934321 ], [ -103.705429889763764, 31.354594422522624 ], [ -103.555575604040499, 31.406334494728355 ], [ -103.550410405392313, 31.406104540263527 ], [ -103.524095374302732, 31.399922887288902 ], [ -103.521494273236982, 31.399415919369076 ], [ -103.516733092872869, 31.399664951127562 ], [ -103.513528965052984, 31.39810501220532 ], [ -103.499459429733449, 31.395855171069687 ], [ -103.492844233661415, 31.397495158173914 ], [ -103.491738201241915, 31.397924152400879 ], [ -103.490548166300982, 31.398382146260538 ], [ -103.487458075317647, 31.399564130427265 ], [ -103.482986942849493, 31.401186109428384 ], [ -103.478859820140514, 31.402750088338859 ], [ -103.465309412550724, 31.407585025119523 ], [ -103.432692404106945, 31.409484099422862 ], [ -103.398557332009375, 31.419573979043541 ], [ -103.389311028268125, 31.42689083336786 ], [ -103.351490700059642, 31.462945069577628 ], [ -103.33451408941184, 31.472923871761644 ], [ -103.331439980262545, 31.474023853225603 ], [ -103.144108412832637, 31.525684343416071 ], [ -103.123309669701413, 31.529752336544245 ], [ -103.121082602977594, 31.531293310980143 ], [ -103.119716539118187, 31.530332337711691 ], [ -103.071916786380228, 31.538192341035749 ], [ -103.000426174640367, 31.560092061683566 ], [ -102.94331168062709, 31.575522811039768 ], [ -102.912228799551826, 31.572937957979029 ], [ -102.900722477898654, 31.572873988114512 ], [ -102.891704232827507, 31.574982948270858 ], [ -102.87771185165704, 31.578831866063194 ], [ -102.871318680607061, 31.58227277613944 ], [ -102.846560021339286, 31.605421103715685 ], [ -102.842501907568064, 31.607930029409676 ], [ -102.83570371231184, 31.60984697555357 ], [ -102.801766724442231, 31.619142699751833 ], [ -102.767685702083966, 31.638492051144741 ], [ -102.745247060649646, 31.651516617738132 ], [ -102.609067382036244, 31.730997682666583 ], [ -102.578167804275012, 31.741867510643761 ], [ -102.549602392884424, 31.75787808277769 ], [ -102.540393264562226, 31.760838018350949 ], [ -102.513918880799821, 31.768657872473376 ], [ -102.430688814146919, 31.812136735168494 ], [ -102.42592077261979, 31.816727592606167 ], [ -102.420381660574293, 31.816956629146723 ], [ -102.406061328372829, 31.813976863101502 ], [ -102.376976790098311, 31.819656883096343 ], [ -102.355431430279239, 31.828156741601134 ], [ -102.343689210821779, 31.830896739148603 ], [ -102.338013137899267, 31.835615612157294 ], [ -102.308120749329944, 31.862615887482271 ], [ -102.302009647680734, 31.866265812303556 ], [ -102.287505393742791, 31.874019671094104 ], [ -102.216207928730853, 31.910975990654606 ], [ -102.147885316570949, 31.946274361906696 ], [ -102.143147202454443, 31.948725323104103 ], [ -102.118259598210685, 31.961624128956039 ], [ -102.107196310527598, 31.964483137659148 ], [ -102.073885435291345, 31.972324197472325 ], [ -102.041352579138547, 31.981064238011331 ], [ -102.038369504292078, 31.982704218023272 ], [ -102.036164451448471, 31.984453187781934 ], [ -101.994598749545858, 32.021344488479258 ], [ -101.986954757428748, 32.033612195706816 ], [ -101.979584752625925, 32.044910928241265 ], [ -101.976204718977471, 32.048370859641793 ], [ -101.96075439061768, 32.054474852853154 ], [ -101.897208129926199, 32.087109557119412 ], [ -101.878553748156946, 32.096790458231233 ], [ -101.835889755867896, 32.112663425806346 ], [ -101.833516722464694, 32.115013374639098 ], [ -101.829221617697797, 32.116390377764304 ], [ -101.810826373278402, 32.136123924787427 ], [ -101.805936263977898, 32.138522898817797 ], [ -101.78851779088707, 32.141532991535158 ], [ -101.763225019944727, 32.140182319352988 ], [ -101.756465840340425, 32.141693343058826 ], [ -101.693979555812419, 32.164375005762935 ], [ -101.644768552622196, 32.182200700852121 ], [ -101.628022293885849, 32.194793361380142 ], [ -101.607856846522978, 32.199759311057683 ], [ -101.595817684074277, 32.210909986812538 ], [ -101.573532253367503, 32.221701734518305 ], [ -101.526923206386058, 32.233332590693003 ], [ -101.524123162315107, 32.235571525422486 ], [ -101.507109067027116, 32.258763836923229 ], [ -101.501035958117683, 32.261338796421143 ], [ -101.490530788938045, 32.263737774357836 ], [ -101.474332523913617, 32.266961752142507 ], [ -101.467245380934102, 32.266919785295535 ], [ -101.455251059502345, 32.262479972012102 ], [ -101.454259035196031, 32.262234983852096 ], [ -101.450505946752671, 32.26149902297756 ], [ -101.446995876077551, 32.261473039766059 ], [ -101.432393637174783, 32.264440016942878 ], [ -101.403798118316686, 32.267519052686488 ], [ -101.385471777170409, 32.269060087834745 ], [ -101.351016308634826, 32.28226983229667 ], [ -101.297449426851557, 32.294728670683675 ], [ -101.223955039218851, 32.307599594193732 ], [ -101.217217939989879, 32.311608499611985 ], [ -101.210106883418874, 32.319058294536802 ], [ -101.202637785996004, 32.324467156752327 ], [ -101.185540396010779, 32.325898197107925 ], [ -101.178650254112327, 32.327519178947199 ], [ -101.148185627087258, 32.33495808698585 ], [ -101.064588706019705, 32.342599245296014 ], [ -101.012066574037306, 32.354039109308118 ], [ -101.002232396357087, 32.359070982577798 ], [ -100.959933848188783, 32.386139323146004 ], [ -100.923602174104232, 32.392688335036489 ], [ -100.906984832597587, 32.392997433887857 ], [ -100.876528390791478, 32.408760079633367 ], [ -100.860590098804778, 32.412060067040372 ], [ -100.85285394294624, 32.412498101868124 ], [ -100.843453693099832, 32.408008321883045 ], [ -100.819863075415938, 32.397438851113201 ], [ -100.717017168991575, 32.415439842535527 ], [ -100.701727825016746, 32.412698024271208 ], [ -100.688406479446897, 32.406911306388288 ], [ -100.680555321008555, 32.407029344918712 ], [ -100.661793986510446, 32.410535319355638 ], [ -100.516017488976104, 32.438279070956419 ], [ -100.506060427202328, 32.446258823489671 ], [ -100.502467371660643, 32.447128809422523 ], [ -100.466112733765172, 32.453678812654111 ], [ -100.444940231931611, 32.449876104405575 ], [ -100.413369540789759, 32.447568413096228 ], [ -100.398430274082941, 32.450070421989778 ], [ -100.392731183268538, 32.451680400145797 ], [ -100.387490183514743, 32.458169187960507 ], [ -100.380982193151439, 32.466797901927023 ], [ -100.367775129823798, 32.479389508390106 ], [ -100.364602113923212, 32.482380414831432 ], [ -100.35245591301117, 32.48544337895872 ], [ -100.309051147263474, 32.4935873555862 ], [ -100.26804233947837, 32.496250526049835 ], [ -100.240919638522683, 32.489837995057613 ], [ -100.22228818887794, 32.489899188364902 ], [ -100.199742569046109, 32.484929617793085 ], [ -100.146961431067126, 32.49464179817015 ], [ -100.125384919088091, 32.495629988190451 ], [ -100.121165798693127, 32.494249085217994 ], [ -100.107836371943534, 32.485979538995217 ], [ -100.041405652734696, 32.474643656368116 ], [ -99.988799291920245, 32.467602446838626 ], [ -99.987502261257532, 32.468151438669203 ], [ -99.926801503022816, 32.459313305900196 ], [ -99.887981422717303, 32.458344687091625 ], [ -99.869342922830839, 32.45992480052999 ], [ -99.848536342368703, 32.45924600995243 ], [ -99.813738461250722, 32.467993038711349 ], [ -99.776460547268982, 32.480832976427514 ] ], [ [ -99.776460547268982, 32.480832976427514 ], [ -99.770226386024277, 32.482064996928614 ], [ -99.761460174798856, 32.485532972352921 ] ], [ [ -99.776460547268982, 32.480832976427514 ], [ -99.768884365098316, 32.483865953312296 ], [ -99.761460174798856, 32.485532972352921 ] ], [ [ -99.761460174798856, 32.485532972352921 ], [ -99.749847898697539, 32.490373932046658 ], [ -99.731132443230081, 32.490564022589226 ], [ -99.723434253705634, 32.490435066121961 ], [ -99.717773098237217, 32.489004138060302 ], [ -99.69957649204899, 32.477343573518112 ], [ -99.677274662663606, 32.460956150499555 ], [ -99.646016421564539, 32.439876870667959 ], [ -99.633098996397877, 32.437396986083421 ], [ -99.629810883273876, 32.43656902054046 ], [ -99.48300076190931, 32.410958146222882 ], [ -99.419895746629948, 32.403367555438486 ], [ -99.393612008731111, 32.403417649105052 ], [ -99.385883746372812, 32.401879716561524 ], [ -99.348642416189293, 32.391848117151774 ], [ -99.291122629056687, 32.384947527255505 ], [ -99.215635420565349, 32.37049034305528 ], [ -99.186749870884654, 32.372150499272756 ], [ -99.17243765536017, 32.375617499282825 ], [ -99.14524518123055, 32.379730569112283 ], [ -99.116260535710907, 32.377513837113717 ], [ -99.088862931990406, 32.375462090411148 ], [ -99.005037201684132, 32.375092690194045 ], [ -98.970498214901554, 32.374562911476794 ], [ -98.959289896738852, 32.375531946404109 ], [ -98.834317195192781, 32.375211676819518 ], [ -98.830678101631321, 32.376241667623653 ], [ -98.802402391652862, 32.385511561944242 ], [ -98.789508219516378, 32.400873193789522 ], [ -98.761752570055876, 32.413552998061547 ], [ -98.74212099211195, 32.4155400646221 ], [ -98.72046046653881, 32.428940825753031 ], [ -98.698288870843598, 32.438740696159471 ], [ -98.696503823072675, 32.439560685011379 ], [ -98.676865289684201, 32.448139576293158 ], [ -98.643089313088325, 32.458828508087187 ], [ -98.62414488896566, 32.475281185210413 ], [ -98.605116313689422, 32.47990819100022 ], [ -98.553501702711287, 32.48889230987519 ], [ -98.548573557499964, 32.490559299901541 ], [ -98.541226381506675, 32.496682187852123 ], [ -98.537129263083514, 32.498322173155707 ], [ -98.516612587677969, 32.499218295701688 ], [ -98.501712095928596, 32.499779387265441 ], [ -98.475122246655829, 32.503628510223685 ], [ -98.452012499825415, 32.505558649591741 ], [ -98.435844989568835, 32.508339717387798 ], [ -98.411430162046202, 32.50534996983054 ], [ -98.375235037724579, 32.512887095609081 ], [ -98.367834810665244, 32.514612117725939 ], [ -98.343763090704797, 32.521871156269846 ], [ -98.307896085515807, 32.538289100916792 ], [ -98.251712483785354, 32.557901145447559 ], [ -98.229441026576183, 32.568311244837119 ], [ -98.218675771213398, 32.569742370382791 ], [ -98.195261165753905, 32.56858273002296 ], [ -98.169350574281736, 32.573542001881812 ], [ -98.151444233597303, 32.581892090736545 ], [ -98.111572603219287, 32.607993139287139 ], [ -98.108863574359404, 32.61064412506316 ], [ -98.075691025067599, 32.628184251772048 ], [ -98.06433790776461, 32.638510208953463 ], [ -98.040930680034023, 32.659693123918217 ], [ -98.007559264826853, 32.682070161293282 ], [ -97.995168970469862, 32.689063098392936 ], [ -97.916338601152248, 32.716389978923061 ], [ -97.902032947462487, 32.719422798052385 ], [ -97.884576184801901, 32.726460481044228 ], [ -97.880326978940587, 32.726570445009408 ], [ -97.865906291256053, 32.727951294211216 ], [ -97.837378901328194, 32.728195062518495 ], [ -97.802053165693337, 32.726909824709416 ], [ -97.789852585066555, 32.728668672507013 ], [ -97.78917355562551, 32.729125652321144 ], [ -97.776347952966077, 32.732257446607171 ], [ -97.745378588388817, 32.743578854444763 ], [ -97.722436861823851, 32.749846692308395 ], [ -97.70552928775686, 32.754347612678806 ], [ -97.698174040829898, 32.75485861843223 ], [ -97.684563592899224, 32.751768732669468 ], [ -97.65646261610577, 32.741180164232425 ], [ -97.625295546190173, 32.732337564789134 ], [ -97.599850694184909, 32.728919757741139 ], [ -97.567188596709812, 32.720669151939667 ], [ -97.549075965307779, 32.702526879687639 ], [ -97.536181534073435, 32.694791208824995 ], [ -97.499071339023104, 32.692445417355685 ], [ -97.480408776143321, 32.69582139272643 ], [ -97.47445759479568, 32.695119452033779 ], [ -97.469780449880957, 32.692582572904115 ], [ -97.467347372400823, 32.68957369883293 ], [ -97.463929264277596, 32.686082847848802 ], [ -97.459687132937873, 32.684209940539972 ], [ -97.452499913769358, 32.683801994197722 ], [ -97.414168747223854, 32.68355020843704 ], [ -97.407904556284691, 32.683333249831932 ], [ -97.397246230815355, 32.68264233184675 ], [ -97.393217105173733, 32.680891416778593 ], [ -97.38083471740282, 32.674952696499076 ], [ -97.375509551048467, 32.672793801871023 ], [ -97.34603563787482, 32.665943197537835 ], [ -97.337307367171718, 32.664043308926956 ], [ -97.331837201453226, 32.664722312526919 ], [ -97.320583863187849, 32.667224281524106 ], [ -97.310245552690532, 32.66948325520962 ], [ -97.302425313974865, 32.669483295264293 ], [ -97.285372775226051, 32.662204633962077 ], [ -97.281382651520119, 32.661533677067553 ], [ -97.247888626959025, 32.661544829746447 ], [ -97.244241518603758, 32.662792784061814 ], [ -97.241662447359772, 32.665473691139113 ], [ -97.240663425473656, 32.66842259074761 ], [ -97.22203885522606, 32.668064587995531 ], [ -97.210312504706891, 32.670265505919019 ], [ -97.19342000798423, 32.675064336620984 ], [ -97.182418678261769, 32.676254291094097 ], [ -97.149687675064811, 32.674514326302493 ], [ -97.134878229016451, 32.675415288531212 ], [ -97.117345712102534, 32.678394185553749 ], [ -97.092716960366744, 32.677684193371427 ], [ -97.062534041099482, 32.677265188485151 ], [ -97.036685247218855, 32.676033209163528 ], [ -97.023561847995239, 32.675994202260014 ], [ -97.006845334171487, 32.675262212752791 ], [ -96.985123636792821, 32.672264252988548 ], [ -96.970315157968955, 32.67057426261637 ], [ -96.946945426206256, 32.670684198526885 ], [ -96.926848786232199, 32.669803172451921 ], [ -96.895551704368799, 32.661903333141886 ], [ -96.87759903082231, 32.654163529943524 ], [ -96.85706825368112, 32.645904744235239 ], [ -96.835926513648772, 32.642395813409571 ], [ -96.823291099600567, 32.642284792321462 ], [ -96.800196347575664, 32.64238374404534 ], [ -96.781244822912825, 32.647674531230891 ], [ -96.735695410079231, 32.657794080651527 ], [ -96.726723106656479, 32.661730919113673 ], [ -96.72269497440827, 32.663844834284056 ], [ -96.697524100751721, 32.675982335073783 ], [ -96.675246185461518, 32.678992156924117 ], [ -96.637592642599856, 32.686990746374825 ], [ -96.63385449935879, 32.689092658116287 ], [ -96.632534463792851, 32.691442569138175 ], [ -96.62684328779423, 32.699712251379765 ], [ -96.620213009934986, 32.701940146770163 ], [ -96.586977531866822, 32.704689923740304 ], [ -96.556886166626029, 32.702980875310217 ], [ -96.52098754834492, 32.699810862534513 ], [ -96.372498644354835, 32.69527188875027 ], [ -96.363373287603125, 32.697140812704006 ], [ -96.331802050883169, 32.714772126586965 ], [ -96.325972824131796, 32.714993115097272 ], [ -96.309882198116711, 32.716370054340835 ], [ -96.275464860721726, 32.701409602198765 ], [ -96.271382701727816, 32.699967654509173 ], [ -96.0759250688332, 32.650762692175036 ], [ -96.049839073386465, 32.643571879215507 ], [ -96.000246218426469, 32.624731489250422 ], [ -95.957192485028756, 32.610424080008862 ], [ -95.933923098286968, 32.600894486075092 ], [ -95.920807865066493, 32.599243549529021 ], [ -95.903175549175572, 32.597621608575679 ], [ -95.854934754718542, 32.578125464166185 ], [ -95.804815934801823, 32.55835535402781 ], [ -95.77930250871384, 32.550695703579436 ], [ -95.724011460643283, 32.530707960322658 ], [ -95.686733691562722, 32.514569200575416 ], [ -95.637469628477547, 32.505567268822787 ], [ -95.620097276657731, 32.500601739344241 ], [ -95.594331692770893, 32.49937312866826 ], [ -95.587915546644709, 32.499259216415254 ], [ -95.569109102084838, 32.495639610836029 ], [ -95.528458119023227, 32.484260592577904 ], [ -95.490577106167748, 32.479882218107122 ], [ -95.462416055330507, 32.470803868218944 ], [ -95.451986679288439, 32.469805015127513 ], [ -95.387691386008811, 32.468485730050311 ], [ -95.343042796887872, 32.468184202114465 ], [ -95.307358503165872, 32.45727497695227 ], [ -95.278060457619972, 32.452286459484753 ], [ -95.199802726601703, 32.452478014458741 ], [ -95.188137319505898, 32.449876174641524 ], [ -95.174525845369402, 32.447366342328003 ], [ -95.154376147563426, 32.447896434976528 ], [ -95.13370742645796, 32.441041801430536 ], [ -95.124414102880465, 32.438237956067226 ], [ -95.104668419083367, 32.437369097955802 ], [ -95.069053188556225, 32.442198118940262 ], [ -95.032430919721222, 32.438166471073991 ], [ -94.98695043206537, 32.436346852755804 ], [ -94.925555707016571, 32.432899602719864 ], [ -94.862702941024381, 32.432747246519263 ], [ -94.827590953756953, 32.43496752569304 ], [ -94.799514164594584, 32.435368797667024 ], [ -94.78039462834974, 32.432771081606006 ], [ -94.76669124360231, 32.432119243061933 ], [ -94.750219779211662, 32.435529294278624 ], [ -94.727299839056087, 32.443677206180986 ], [ -94.720951578427901, 32.445909182968542 ], [ -94.709118092357571, 32.450071140056004 ], [ -94.706485984202288, 32.450990130810723 ], [ -94.70173278879038, 32.452745110960848 ], [ -94.688296236545327, 32.457040077759125 ], [ -94.667955402342315, 32.460119143547701 ], [ -94.596274460157105, 32.470170407253114 ], [ -94.523212451812626, 32.484288556992702 ], [ -94.40934026009262, 32.489092200433873 ], [ -94.380995244460422, 32.490462346112501 ], [ -94.358747447461695, 32.491251469932671 ], [ -94.34924810670077, 32.491675520173629 ], [ -94.231598899100462, 32.496360119995309 ], [ -94.191016511929021, 32.492450411710429 ], [ -94.161802492559261, 32.4934315067824 ], [ -94.087345015263736, 32.479023255857683 ], [ -94.068484409857362, 32.473153510982691 ], [ -94.056087024871871, 32.467873720765162 ], [ -94.042917627963746, 32.461033979907469 ], [ -94.02415705761517, 32.452444313873862 ], [ -94.011521631906078, 32.451864383610996 ], [ -93.995561155624316, 32.451112439724206 ], [ -93.980484875291424, 32.446935518932186 ], [ -93.949890255023604, 32.444105510280764 ], [ -93.938965027766187, 32.443754487584535 ], [ -93.899176167207287, 32.447412265852577 ], [ -93.861158348806327, 32.451341046826904 ], [ -93.843930961204578, 32.456849848606097 ], [ -93.784977666298317, 32.476086184983174 ], [ -93.780056555929548, 32.4789660983513 ], [ -93.776340469784628, 32.482052009714508 ], [ -93.770977328299153, 32.491786746534423 ], [ -93.760410102603416, 32.496490603288869 ], [ -93.748248847244625, 32.502952386650144 ], [ -93.743022735349257, 32.509815136684296 ], [ -93.741931712293095, 32.510574108992763 ], [ -93.738253634836937, 32.512622034261142 ], [ -93.733813541787185, 32.513987984203155 ], [ -93.715403157348888, 32.513286006063687 ], [ -93.710971064912343, 32.515173937947637 ], [ -93.70454693223904, 32.524145618084219 ], [ -93.699030818032199, 32.525549568243768 ], [ -93.679117405860012, 32.527518499274095 ], [ -93.628327366664806, 32.53995007471859 ], [ -93.619179180436234, 32.541636019300846 ], [ -93.585777494517188, 32.541991016297409 ], [ -93.53115737229821, 32.542040029619706 ], [ -93.522574201521039, 32.544450953299119 ], [ -93.514975057291338, 32.549310797678977 ], [ -93.492727616563428, 32.566221298641878 ], [ -93.481191356166562, 32.574460097847634 ], [ -93.475660226153451, 32.576429065715409 ], [ -93.446041506018091, 32.577569195671551 ], [ -93.432049167544349, 32.578851233856909 ], [ -93.391574188333692, 32.58273134111186 ], [ -93.350603196522059, 32.586759449986424 ], [ -93.336351855978435, 32.590310423023595 ], [ -93.319146443743307, 32.594240402739068 ], [ -93.310235224747629, 32.593721470097215 ], [ -93.293434804890737, 32.58930770017345 ], [ -93.247878664591653, 32.580431216552526 ], [ -93.246841634555025, 32.580267223594234 ], [ -93.192869067621089, 32.568430661538308 ], [ -93.173879519379284, 32.565375773978559 ], [ -93.158917087796041, 32.563002858417498 ], [ -93.14619172220273, 32.561800907211364 ], [ -93.052164036432089, 32.563354003351471 ], [ -93.022408183129258, 32.560710100526904 ], [ -92.966033469408899, 32.566721738867265 ], [ -92.948156902528027, 32.567202586590341 ], [ -92.928838289046226, 32.5670004356855 ], [ -92.910145690392724, 32.56352134931597 ], [ -92.88023072903124, 32.557127221466672 ], [ -92.82950809628791, 32.547891963687285 ], [ -92.781220557833123, 32.548181557737699 ], [ -92.730307964894592, 32.543016183096938 ], [ -92.71263043529062, 32.54126103805379 ], [ -92.690763783365909, 32.540314840125781 ], [ -92.63788221200457, 32.539967328596994 ], [ -92.616481576128663, 32.539849121623199 ], [ -92.576487388027488, 32.539718733291409 ], [ -92.522392780628039, 32.539428212060415 ], [ -92.509438391451198, 32.538078123651864 ], [ -92.442465457721269, 32.528166516709447 ], [ -92.432707175934041, 32.525137473178219 ], [ -92.4152276777764, 32.521849332948953 ], [ -92.364574255702578, 32.52165764305569 ], [ -92.329608272506988, 32.519025249481402 ], [ -92.304399563625367, 32.510976175081296 ], [ -92.298158389276722, 32.509915126785103 ], [ -92.214294090367915, 32.510014122452588 ], [ -92.170621919353565, 32.511115652041987 ], [ -92.163663735244114, 32.509604634718301 ], [ -92.157117565807781, 32.505954694141792 ], [ -92.149252364012227, 32.500934786522244 ], [ -92.138807098292375, 32.498225766849792 ], [ -92.135053002790372, 32.497455752611813 ], [ -92.128903845522856, 32.496333725150713 ], [ -92.119076587696895, 32.495624648579224 ], [ -92.114110445371992, 32.49727954885384 ], [ -92.111241359743573, 32.49880547390373 ], [ -92.110875348800249, 32.499003464237688 ], [ -92.107327245944717, 32.500804371955056 ], [ -92.102917128817126, 32.500575335566957 ], [ -92.082286583984811, 32.49941516597432 ], [ -92.057215943297066, 32.494742058637378 ], [ -91.988969166543825, 32.488798586791681 ], [ -91.934638780437439, 32.4842473062237 ], [ -91.903181983069189, 32.480173190275728 ], [ -91.872656190197915, 32.479752967202778 ], [ -91.853368708306462, 32.475301959227281 ], [ -91.804096456864897, 32.467122840764389 ], [ -91.770465611091879, 32.458222869098321 ], [ -91.758792309660507, 32.456902822614225 ], [ -91.627562695357938, 32.455811484300717 ], [ -91.611312247378777, 32.455422456205135 ], [ -91.544072428112557, 32.445962597100646 ], [ -91.504955352371297, 32.444802537814255 ], [ -91.49383105907566, 32.442971567737708 ], [ -91.471766487346358, 32.439271627430024 ], [ -91.380105116366025, 32.425431853750347 ], [ -91.295049896778679, 32.418584886028768 ], [ -91.234387436570756, 32.406454239092625 ], [ -91.218045102401888, 32.402353402444646 ], [ -91.199451750065421, 32.391832808869637 ], [ -91.194934662796854, 32.389387903657337 ], [ -91.182224409417898, 32.38364312811305 ], [ -91.114702984636736, 32.362124988701161 ], [ -91.060021813846163, 32.336316012941062 ], [ -90.997199394325449, 32.32552448293994 ], [ -90.96128779822601, 32.320836729422624 ], [ -90.950926626018486, 32.319837786302642 ], [ -90.926626213928586, 32.321641764213389 ], [ -90.917769069316392, 32.319673853802499 ], [ -90.906186887076572, 32.314257075041468 ], [ -90.899701786323007, 32.310846211986409 ], [ -90.894406698663133, 32.310446235753538 ], [ -90.886701562242962, 32.313547135460716 ], [ -90.876882383499861, 32.319253944744524 ], [ -90.865903186229346, 32.324246783871907 ], [ -90.859304052569684, 32.332845485487113 ], [ -90.842602740943875, 32.343545135397356 ], [ -90.837559646927957, 32.346559038529698 ], [ -90.82952550681506, 32.347802012278464 ], [ -90.825336434477379, 32.34818000834246 ], [ -90.783473705609026, 32.353424920263485 ], [ -90.754893217081005, 32.353783975394585 ], [ -90.740999950551327, 32.352746003794373 ], [ -90.715204392796309, 32.359245730724567 ], [ -90.687798806293912, 32.363945521252873 ], [ -90.678498618199782, 32.362644547187777 ], [ -90.653001118551558, 32.355347737467923 ], [ -90.630417659798425, 32.35320376099579 ], [ -90.622299496711435, 32.352043781445651 ], [ -90.604896178333988, 32.342546045999853 ], [ -90.595496991552082, 32.340947075056135 ], [ -90.571502464470242, 32.347946802992801 ], [ -90.535795662504412, 32.361145326052338 ], [ -90.479794326574805, 32.362347169258072 ], [ -90.463596865483439, 32.360546178723105 ], [ -90.417292536936401, 32.357246148056596 ], [ -90.381418529741325, 32.349365266872859 ], [ -90.368898174619162, 32.347267288179459 ], [ -90.354111764362116, 32.342529373151407 ], [ -90.346344549375488, 32.33983642226837 ], [ -90.337967327289178, 32.334492539557701 ], [ -90.325860005195395, 32.326813705071274 ], [ -90.266692402084587, 32.292848375650841 ], [ -90.261793266030054, 32.290647412463542 ], [ -90.249616912147815, 32.289628392140173 ], [ -90.227689311663909, 32.287847430509096 ], [ -90.214787961921857, 32.28534449022964 ], [ -90.212086902839346, 32.279847629017659 ], [ -90.207287783197245, 32.274846754959583 ], [ -90.19929155647398, 32.276147720159059 ], [ -90.193157385631082, 32.276025721938716 ], [ -90.18549016856808, 32.277345686547832 ], [ -90.179463002576384, 32.276441708329116 ], [ -90.175189884666167, 32.275846722637581 ], [ -90.174091854238412, 32.275746724964073 ], [ -90.158389421173013, 32.272946793635548 ], [ -90.153484286640207, 32.271447831286039 ], [ -90.146739105517199, 32.266713952179671 ], [ -90.140177922797449, 32.265691977567222 ], [ -90.102182854271646, 32.266748944292985 ], [ -90.073182038895425, 32.271447816274737 ], [ -90.025725716488068, 32.279985580451722 ], [ -90.013045363715491, 32.280080574852477 ], [ -90.003539097066763, 32.278180623323379 ], [ -90.00115903156329, 32.278874604218466 ], [ -89.990637687255614, 32.279260594416954 ], [ -89.970831024969627, 32.277951631324783 ], [ -89.956082535361205, 32.279145600363968 ], [ -89.949178300473775, 32.276746665967401 ], [ -89.941182024782222, 32.272546780857013 ], [ -89.937076886442526, 32.27204679498638 ], [ -89.902980776303878, 32.283147494966329 ], [ -89.880282010728408, 32.279744590114468 ], [ -89.847275935318635, 32.286546403399839 ], [ -89.815574928120142, 32.297746090127134 ], [ -89.798973374853901, 32.296647120273171 ], [ -89.760375065292436, 32.289846312151838 ], [ -89.729971272846811, 32.296327150077758 ], [ -89.711270851956883, 32.302944982623764 ], [ -89.698773554280763, 32.304047965377613 ], [ -89.686070263873304, 32.308346857375028 ], [ -89.667774827610884, 32.310543815660282 ], [ -89.639972159601328, 32.313145773331208 ], [ -89.623568761007675, 32.313545780680201 ], [ -89.605769340516289, 32.318745653220986 ], [ -89.585168845985407, 32.323044554704111 ], [ -89.554071105616472, 32.336746201520683 ], [ -89.531967563563853, 32.341244099525646 ], [ -89.49891673707576, 32.337570235010141 ], [ -89.483871335108105, 32.336445192369276 ], [ -89.479507218347933, 32.335732190840794 ], [ -89.464239808940931, 32.330174270995762 ], [ -89.432164954237294, 32.323944283474916 ], [ -89.390667851298389, 32.328044961119964 ], [ -89.362065092098817, 32.324145923430699 ], [ -89.322612044208725, 32.323913730180521 ], [ -89.301561483529767, 32.325644577527726 ], [ -89.288965138484983, 32.336143235031386 ], [ -89.283059976117457, 32.340945078414713 ], [ -89.278062841733117, 32.341846029995899 ], [ -89.26226142175291, 32.340143997292515 ], [ -89.176557986607094, 32.337942896439081 ], [ -89.161260546864952, 32.338041873448688 ], [ -89.1446590660521, 32.340944779296969 ], [ -89.138058877278638, 32.340242788046993 ], [ -89.129056619728118, 32.339342798361329 ], [ -89.061457666383063, 32.347742510714539 ], [ -89.036356950534895, 32.343443580474514 ], [ -88.997956839683269, 32.34244355914592 ], [ -88.958656547968147, 32.343843562110095 ], [ -88.938452886002224, 32.341944621569304 ], [ -88.914717106106465, 32.342833622772524 ], [ -88.840846683096572, 32.349043559518826 ], [ -88.821979068173746, 32.354708462669322 ], [ -88.808626629399626, 32.351950531923855 ], [ -88.796549227308248, 32.344145699524745 ], [ -88.792551094287219, 32.34214274288891 ], [ -88.775018519235118, 32.342825744579223 ], [ -88.770646375812859, 32.342943746076436 ], [ -88.7444464915244, 32.350141589378396 ], [ -88.734848117675099, 32.349543539530998 ], [ -88.700842795262034, 32.349043331791847 ], [ -88.696142614732324, 32.350244278179552 ], [ -88.690947418546585, 32.353342184052678 ], [ -88.679143974700025, 32.360841960365242 ], [ -88.672544730976568, 32.366940797169143 ], [ -88.666242498802944, 32.372743641283215 ], [ -88.651409941004999, 32.380036399226555 ], [ -88.636845385998868, 32.383241239298449 ], [ -88.601344032259007, 32.38944287959643 ], [ -88.521835045465153, 32.413138861357851 ], [ -88.494634987466881, 32.413241674433671 ], [ -88.476034210330113, 32.410640600845525 ], [ -88.464436738986393, 32.412440484766911 ], [ -88.459737555759219, 32.414939402076925 ], [ -88.451932282225954, 32.425841129547493 ], [ -88.446835099968112, 32.431738977386196 ], [ -88.433735599681768, 32.439039746408476 ], [ -88.403834435461974, 32.44885436260946 ], [ -88.391885976265229, 32.453249202465386 ], [ -88.379549514550831, 32.459509005792484 ], [ -88.347199385620613, 32.486127310308021 ], [ -88.326057667897018, 32.506138803576711 ], [ -88.299101666119938, 32.522266320935131 ], [ -88.29238741967437, 32.527347181152422 ], [ -88.251950961717071, 32.568415156301469 ], [ -88.230557138937272, 32.584985809700875 ], [ -88.200266997186915, 32.639634692193901 ], [ -88.188341508634593, 32.654343384681326 ], [ -88.160546324861755, 32.684413745692787 ], [ -88.134720179012604, 32.708614219811125 ], [ -88.099234547126159, 32.737231581205009 ], [ -88.080693692567479, 32.752173233178915 ], [ -88.033069859258958, 32.795202009597688 ], [ -88.01557414159825, 32.80775962410064 ], [ -87.955994470204843, 32.844089376581778 ], [ -87.933342940949601, 32.862879767527332 ], [ -87.924164708165989, 32.868807568390594 ], [ -87.912994421842058, 32.876578312724867 ], [ -87.897583057835845, 32.897218700123439 ], [ -87.893477949230245, 32.900888586416656 ], [ -87.880377574728783, 32.906987373352955 ], [ -87.875014423942645, 32.910768252881958 ], [ -87.848440685445539, 32.943176306822238 ], [ -87.840749455268806, 32.95062608633868 ], [ -87.827596045181849, 32.959354815409029 ], [ -87.811200519035395, 32.967444552469928 ], [ -87.80027416555653, 32.979125218468994 ], [ -87.789188796656205, 32.986464996761974 ], [ -87.770549161169114, 33.000124594587142 ], [ -87.751864651162748, 33.017283089956933 ], [ -87.727374209404061, 33.044492292095711 ], [ -87.698572591851388, 33.063091707950257 ], [ -87.680932260698611, 33.083912108019113 ], [ -87.661721868944056, 33.103930526648547 ], [ -87.647988611604504, 33.124079962441044 ], [ -87.631905244512751, 33.137491566416472 ], [ -87.619483943123996, 33.14534932591139 ], [ -87.579809905178024, 33.15828087326301 ], [ -87.567374580444167, 33.163525701910771 ], [ -87.552733196449665, 33.170129489954029 ], [ -87.547163044620092, 33.17128144403442 ], [ -87.532598633833629, 33.170380423254095 ], [ -87.524724416679632, 33.171429373144576 ], [ -87.502247799760426, 33.176190185977298 ], [ -87.474125083300166, 33.174050111495902 ], [ -87.463519814275401, 33.172528100113006 ], [ -87.435023100399633, 33.17213097631209 ], [ -87.420725741296181, 33.171428927002708 ], [ -87.407351411583974, 33.17397779933205 ], [ -87.403536317594146, 33.174789760714475 ], [ -87.379144712027738, 33.177879567046688 ], [ -87.363664331625756, 33.182747369528855 ], [ -87.342361798334721, 33.183758242871917 ], [ -87.320396255103248, 33.190516965147182 ], [ -87.282058287982679, 33.18778985341195 ], [ -87.269850982223616, 33.189128760874837 ], [ -87.243894339651234, 33.194815494733419 ], [ -87.237516187576645, 33.197398401729295 ], [ -87.219411759074575, 33.210077993997828 ], [ -87.195233178256473, 33.214597770744689 ], [ -87.179409801222846, 33.223135472378083 ], [ -87.144816977992036, 33.246316681969198 ], [ -87.131343656300388, 33.250634498260013 ], [ -87.126933556148174, 33.252095436726044 ], [ -87.119563399861022, 33.256795270567864 ], [ -87.105822143496951, 33.271785780964031 ], [ -87.087526782946881, 33.285381293522093 ], [ -87.07905761712442, 33.29116407802119 ], [ -87.068147439108088, 33.304163635059169 ], [ -87.040330973219184, 33.330820664480861 ], [ -87.027550769680957, 33.34291220978912 ], [ -87.007714450336081, 33.35923056272059 ], [ -87.001443363566054, 33.365891308107756 ], [ -86.980500132894875, 33.399509138498296 ], [ -86.971993012910616, 33.409960757185416 ], [ -86.965034886542355, 33.414690563460454 ], [ -86.960014826609552, 33.42249928292285 ], [ -86.954994741758952, 33.426878110159407 ], [ -86.954429775584046, 33.433458896214781 ], [ -86.95850393977021, 33.443208613437683 ], [ -86.957359944464116, 33.447587465832278 ], [ -86.950515851359796, 33.456899118900893 ], [ -86.921714340549087, 33.480107149961455 ], [ -86.918510300176862, 33.48513796019229 ], [ -86.917785326208389, 33.491367750427827 ], [ -86.91611430468906, 33.493945652405941 ], [ -86.913688260663491, 33.495845570266695 ], [ -86.895728866445353, 33.500087282329353 ], [ -86.866538439489645, 33.516985813012063 ], [ -86.849173091242037, 33.52090761097174 ], [ -86.833517710619773, 33.520136487150424 ], [ -86.826650571882681, 33.521616407383135 ], [ -86.817007316355046, 33.519785350400099 ], [ -86.8063641476556, 33.525053183360527 ], [ -86.804014144623494, 33.528414114573572 ], [ -86.786351970126759, 33.543893733426565 ], [ -86.780133886769292, 33.547925618196288 ], [ -86.771458721620263, 33.550412502939913 ], [ -86.755955256737224, 33.543984460015785 ], [ -86.75308719490323, 33.544343428890208 ], [ -86.748921146984685, 33.547525351500802 ], [ -86.744618028561547, 33.546334365158636 ], [ -86.720539291277277, 33.534265531467334 ], [ -86.709574988287628, 33.530652581020256 ], [ -86.7021518306953, 33.531446562815233 ], [ -86.684763573015502, 33.541486382992289 ], [ -86.674654373998948, 33.544015330775551 ], [ -86.663920148208007, 33.545724290815528 ], [ -86.642076630467145, 33.544824283967273 ], [ -86.637239524418334, 33.545304270559477 ], [ -86.628564362565982, 33.548516204267344 ], [ -86.627328330200626, 33.548219208223252 ], [ -86.619462114030014, 33.545434249929698 ], [ -86.605370759150034, 33.542981280440522 ], [ -86.592148475356154, 33.544927231216924 ], [ -86.584687321886648, 33.546693190387856 ], [ -86.563216964431518, 33.560314905134859 ], [ -86.547469603111608, 33.56135286347687 ], [ -86.521102022961429, 33.566032732769372 ], [ -86.504187646264668, 33.568935648153506 ], [ -86.500006553698142, 33.569767624549279 ], [ -86.476049959604396, 33.578072515271288 ], [ -86.455091386819163, 33.579254544357106 ], [ -86.444326109635341, 33.582153509380184 ], [ -86.426067665992306, 33.591064359818787 ], [ -86.413250326424262, 33.593803329370473 ], [ -86.397037884801136, 33.59573432352596 ], [ -86.377597343630327, 33.596462351270993 ], [ -86.365993004892914, 33.594402425032747 ], [ -86.350779580368155, 33.594784451206081 ], [ -86.335512177055264, 33.599213381906758 ], [ -86.320695766914611, 33.600464384975751 ], [ -86.316819659840348, 33.600853384194025 ], [ -86.281959704073572, 33.606380324995769 ], [ -86.24800874862008, 33.608444340150747 ], [ -86.240134505100443, 33.60772335856209 ], [ -86.212988635751344, 33.598701590441728 ], [ -86.202139290252177, 33.595764667729497 ], [ -86.184232733065699, 33.593937718703714 ], [ -86.156284863412893, 33.591293794534366 ], [ -86.123995872115387, 33.591122807388359 ], [ -86.090913839215929, 33.587784906773791 ], [ -86.074998334190113, 33.584831992576319 ], [ -86.044480400613793, 33.585533983479948 ], [ -86.023651737059083, 33.581555102247172 ], [ -85.999945979813987, 33.576943242670673 ], [ -85.988425659288225, 33.576043372904621 ], [ -85.966315093113977, 33.581773412170314 ], [ -85.952283706072009, 33.581094559248321 ], [ -85.934858243705946, 33.582849668991422 ], [ -85.925335992825225, 33.583993723963928 ], [ -85.900753335058567, 33.585435908512515 ], [ -85.881969819673387, 33.584856096336232 ], [ -85.875774660525892, 33.586001121361598 ], [ -85.854488164569716, 33.595705049577916 ], [ -85.840410860131499, 33.604394941385642 ], [ -85.830431599625243, 33.605265010134218 ], [ -85.813418145466599, 33.605585159241933 ], [ -85.785890463320527, 33.611536253858205 ], [ -85.756485676313304, 33.61153652781298 ], [ -85.742409326785079, 33.614939559629889 ], [ -85.722922813031047, 33.617586649156713 ], [ -85.70703838000729, 33.618345759592621 ], [ -85.690069871635572, 33.61472999611356 ], [ -85.676748476917581, 33.61233416993776 ], [ -85.660643086612907, 33.61778615651523 ], [ -85.63368735677787, 33.619525331843903 ], [ -85.617268891176025, 33.618575492437508 ], [ -85.605251592182526, 33.621837504012028 ], [ -85.595905322382336, 33.620845607512308 ], [ -85.58179092112735, 33.619937748012624 ], [ -85.502947011329979, 33.645587710229513 ], [ -85.488953688444852, 33.647887733824149 ], [ -85.450737730281929, 33.644577031211817 ], [ -85.436928396944865, 33.644558107262881 ], [ -85.427421201640755, 33.64748808291364 ], [ -85.406386807010875, 33.656955953795539 ], [ -85.342771521570256, 33.676173824698971 ], [ -85.277173068098477, 33.684239005667202 ], [ -85.26210472266871, 33.685108072739659 ], [ -85.245807365102337, 33.688328084588427 ], [ -85.225466813564012, 33.688648169269108 ], [ -85.212946489400409, 33.690048192609559 ], [ -85.177156487483089, 33.688160400376844 ], [ -85.151200743542063, 33.685177588035415 ], [ -85.124947031078207, 33.685467699791438 ], [ -85.101463446668021, 33.690647686984185 ], [ -85.093055252567055, 33.694027648070886 ], [ -85.063132503744299, 33.701138624931374 ], [ -85.039006963436094, 33.714035448939484 ], [ -85.027227660743009, 33.716648447089248 ], [ -85.010511208357642, 33.718067496031686 ], [ -84.975659105773147, 33.716885660131339 ], [ -84.970645940132272, 33.716767680720174 ], [ -84.946399180681809, 33.721379666759717 ], [ -84.937624894862438, 33.721768689822206 ], [ -84.930048649613553, 33.72231770508477 ], [ -84.919924318460829, 33.722626734783724 ], [ -84.911043039730146, 33.724507725692227 ], [ -84.906419892575656, 33.725235726466117 ], [ -84.899949674126404, 33.72453776502234 ], [ -84.876740886692104, 33.721268919844398 ], [ -84.857529255622936, 33.72147898440641 ], [ -84.822616084979003, 33.717817189393791 ], [ -84.797544275703444, 33.720521220969971 ], [ -84.776502595364335, 33.722928244693186 ], [ -84.761777134179368, 33.727994188514742 ], [ -84.740063567244349, 33.731794130329732 ], [ -84.733059443694103, 33.734388060209319 ], [ -84.715031186441962, 33.750508666864022 ], [ -84.708744082780512, 33.753338579748572 ], [ -84.701030943044117, 33.754528531675163 ], [ -84.660647234044646, 33.766636125840918 ], [ -84.619478483226814, 33.775661794905979 ], [ -84.605699223147184, 33.777007727421562 ], [ -84.601755146243448, 33.776759724704625 ], [ -84.556229259572874, 33.773536703439248 ], [ -84.53945992720783, 33.769904760709153 ], [ -84.526893677193257, 33.766368825573892 ], [ -84.517959502750614, 33.764861845128472 ], [ -84.497169055966523, 33.766166750899806 ], [ -84.49267488076913, 33.764682760820946 ], [ -84.483695527330767, 33.760101822709338 ], [ -84.472151082307363, 33.758418790034291 ], [ -84.463346735163157, 33.753432861341309 ], [ -84.456518469232506, 33.75105287705496 ], [ -84.4475841287977, 33.751502804704508 ], [ -84.438641751486003, 33.747100858410043 ], [ -84.428631358685848, 33.745978819915337 ], [ -84.422345081363744, 33.742206876418742 ], [ -84.408237538889111, 33.741305805133486 ], [ -84.39461806434835, 33.745834593358339 ], [ -84.389399864519504, 33.745662562590745 ], [ -84.38645473382482, 33.743461601184144 ], [ -84.377070376700829, 33.743282542611929 ], [ -84.356569602481045, 33.743644394530982 ], [ -84.349168332916861, 33.745254301194549 ], [ -84.337364885284615, 33.745361218429196 ], [ -84.332856706180237, 33.74407122285325 ], [ -84.323632304008314, 33.734847411102287 ], [ -84.323311223376791, 33.722724738317417 ], [ -84.309684683604544, 33.715537845045766 ], [ -84.298743280893291, 33.715106785767475 ], [ -84.292411039064973, 33.712749809350022 ], [ -84.287398854092501, 33.71224579077095 ], [ -84.279112552516708, 33.712432732028311 ], [ -84.258588814186538, 33.716293492098082 ], [ -84.241445177551327, 33.714427589689883 ], [ -84.217098266156682, 33.711639957903969 ], [ -84.21048401710722, 33.71050706737276 ], [ -84.191661292072638, 33.70259949983604 ], [ -84.132714097831254, 33.703538167589791 ], [ -84.113899385403499, 33.701009449841145 ], [ -84.100333886258099, 33.7025275720517 ], [ -84.087577398437631, 33.699998781028533 ], [ -84.074407870439103, 33.69272810294698 ], [ -84.067671595975483, 33.688372280283424 ], [ -84.059614234853655, 33.677119627983494 ], [ -84.056684113898342, 33.675120705717646 ], [ -84.029317023608911, 33.664882231457732 ], [ -84.017597534960032, 33.657245522485908 ], [ -84.005596058703475, 33.653873720643794 ], [ -83.972681370153012, 33.632176785486408 ], [ -83.950852286830809, 33.628801293221962 ], [ -83.944976996570688, 33.627771432192503 ], [ -83.924620987316999, 33.616694067476999 ], [ -83.894926559576675, 33.612872736686739 ], [ -83.885396106467056, 33.610041983591181 ], [ -83.875286629391866, 33.607173242314744 ], [ -83.868878320650936, 33.608924334214365 ], [ -83.860141889503282, 33.614055404749827 ], [ -83.853587571109244, 33.615222511811105 ], [ -83.836756761881645, 33.615284845615903 ], [ -83.824007164454244, 33.61233215779265 ], [ -83.804239227892978, 33.610818580518952 ], [ -83.781990170335519, 33.610136035884501 ], [ -83.750212631710653, 33.612325625167244 ], [ -83.713429092665606, 33.611426917294999 ], [ -83.699474528368711, 33.609688437357654 ], [ -83.674182528594159, 33.605405404775297 ], [ -83.659159941851343, 33.602769982796097 ], [ -83.618272479343432, 33.589122698841607 ], [ -83.573905901915694, 33.577382512869846 ], [ -83.564475552863385, 33.575932877510937 ], [ -83.538725479105793, 33.5778837433446 ], [ -83.533628289610661, 33.577192938681357 ], [ -83.498913279679172, 33.561405492860075 ], [ -83.48705700435093, 33.555855642117642 ], [ -83.474559586628672, 33.555336677460907 ], [ -83.440531410125757, 33.555596734861297 ], [ -83.402383138478854, 33.553726851589751 ], [ -83.373482111652635, 33.555237868788936 ], [ -83.291280707663901, 33.532975602876107 ], [ -83.269604926101422, 33.534318615269996 ], [ -83.242984920449516, 33.536637696330232 ], [ -83.213549612824679, 33.5451988811378 ], [ -83.205630291019233, 33.545907972790118 ], [ -83.131980365018023, 33.549738890270696 ], [ -83.079587349732336, 33.544151808689314 ], [ -83.054638350342188, 33.550178953153207 ], [ -83.033656537221063, 33.546879362516457 ], [ -82.997873105101547, 33.537580206012066 ], [ -82.992852863560699, 33.534910367663052 ], [ -82.985802522558416, 33.531942565024075 ], [ -82.956154093276055, 33.527762086334121 ], [ -82.928899812696898, 33.530623324050644 ], [ -82.910267919108421, 33.52982258465827 ], [ -82.898404343628556, 33.528822767158339 ], [ -82.874843149455984, 33.523254249761813 ], [ -82.825104393869708, 33.502137555773096 ], [ -82.814575819869731, 33.498185832489597 ], [ -82.804488318069119, 33.499054911898874 ], [ -82.781584188633488, 33.500837111742847 ], [ -82.766347487648346, 33.503694201557423 ], [ -82.751431756868783, 33.504274360415785 ], [ -82.717555571456089, 33.503145482245984 ], [ -82.65727344181272, 33.489855107971081 ], [ -82.617622162986819, 33.495454974823751 ], [ -82.603904715217126, 33.496553962580705 ], [ -82.565969517734871, 33.504976733857063 ], [ -82.554479134237368, 33.505327744253542 ], [ -82.502231391289342, 33.511446611343473 ], [ -82.499828309973154, 33.511743604129954 ], [ -82.477053681526058, 33.514314555782583 ], [ -82.446870836460619, 33.511285737449015 ], [ -82.400544538986722, 33.506552004956582 ], [ -82.318755251909849, 33.497256459933112 ], [ -82.315459160536747, 33.497836447801923 ], [ -82.314673139119989, 33.496066502873447 ], [ -82.293798563623284, 33.494486584365418 ], [ -82.200298254031566, 33.483317806336629 ], [ -82.149317109944207, 33.478919770488972 ], [ -82.131448692132651, 33.482485594698083 ], [ -82.110215192275177, 33.487349359844188 ], [ -82.084061574415784, 33.493415059239823 ], [ -82.047507714871756, 33.508146544675512 ], [ -82.043105614034886, 33.511865465184556 ], [ -82.036750467778248, 33.518106339078329 ], [ -82.030151315350778, 33.522043254824808 ], [ -82.011641885284732, 33.531782054559947 ], [ -82.003828702461576, 33.536183971920885 ], [ -81.99081237265689, 33.540494012206267 ], [ -81.955831441941299, 33.549394333765783 ], [ -81.937107902131714, 33.565065396316051 ], [ -81.91471527552315, 33.57089864320195 ], [ -81.886462437995149, 33.584924917686614 ], [ -81.865961782835839, 33.600066106623871 ], [ -81.843607107613366, 33.606417414481527 ], [ -81.822236379694161, 33.622256673303866 ], [ -81.816636194126104, 33.625155753188253 ], [ -81.788650306491078, 33.632915200817621 ], [ -81.749808120682715, 33.636486869975585 ], [ -81.740614949054461, 33.639008200822531 ], [ -81.673596578147723, 33.666671719702926 ], [ -81.62166253344202, 33.684052790103074 ], [ -81.602855016961541, 33.701422642773203 ], [ -81.580287505962261, 33.71256563365062 ], [ -81.530328188962443, 33.750006069141762 ], [ -81.526079115022711, 33.750578239495006 ], [ -81.524774098386743, 33.753767206248263 ], [ -81.482537585318596, 33.785376526729443 ], [ -81.469239485022442, 33.798464318770627 ], [ -81.452096347310217, 33.816557049329269 ], [ -81.419152041087344, 33.840375908057858 ], [ -81.395690804745371, 33.859037826114893 ], [ -81.375953591548551, 33.881555647917097 ], [ -81.31902992007646, 33.914877025556947 ], [ -81.290976572972099, 33.925398396343269 ], [ -81.257826131105247, 33.944670778967179 ], [ -81.256110107660874, 33.94562780149073 ], [ -81.234449453501995, 33.957099262921439 ], [ -81.200474210048654, 33.969048223726944 ], [ -81.194827980242422, 33.97847031413081 ], [ -81.191333830845664, 33.986519352330113 ], [ -81.187793692873569, 33.990219438206864 ], [ -81.178523346844571, 33.994808717959785 ], [ -81.173557152027271, 34.000149846081179 ], [ -81.168688913658286, 34.003202010091485 ], [ -81.148440038030117, 34.010980668138814 ], [ -81.1415427301813, 34.01434187499305 ], [ -81.129480117612715, 34.024538177940848 ], [ -81.118591572237392, 34.034003412794632 ], [ -81.110596253893021, 34.036719615776697 ], [ -81.093658638992977, 34.039398068635492 ], [ -81.052946022060524, 34.057128843782841 ], [ -81.046140719725571, 34.062999881670898 ], [ -81.042172559527828, 34.065399922107851 ], [ -81.037671403771782, 34.066281009705051 ], [ -81.02250392202599, 34.066075381815651 ], [ -81.008816408065016, 34.072644518201301 ], [ -80.999866118482899, 34.073288704761779 ], [ -80.970836663060538, 34.07330441942694 ], [ -80.947696295956206, 34.073742178038898 ], [ -80.9421192132328, 34.07336513414873 ], [ -80.927859051624836, 34.068303140083174 ], [ -80.922258968028444, 34.068013092300454 ], [ -80.911493756528614, 34.071594882300914 ], [ -80.900019505789444, 34.077361606258208 ], [ -80.855889583538982, 34.095141700142996 ], [ -80.829507033580484, 34.104983201861408 ], [ -80.809318617392805, 34.111860847871938 ], [ -80.787506113103561, 34.122949384704881 ], [ -80.755171354019708, 34.139427724411256 ], [ -80.713850027114219, 34.168320581673299 ], [ -80.69462326760457, 34.185829554432949 ], [ -80.687832045499007, 34.188950614631061 ], [ -80.658222043958162, 34.202500916524585 ], [ -80.643397437009597, 34.213159031969518 ], [ -80.637545227766665, 34.215730108528852 ], [ -80.619996679641218, 34.219529404685773 ], [ -80.592630021572816, 34.216989983017918 ], [ -80.560883284007275, 34.213572644583252 ], [ -80.545364791721127, 34.216692925211227 ], [ -80.529517386704356, 34.216373242051802 ], [ -80.505713819649372, 34.214633722246553 ], [ -80.480727470982458, 34.209614028038715 ], [ -80.453932012864968, 34.208283271545469 ], [ -80.443135794006636, 34.208874364254854 ], [ -80.421392257012869, 34.213421531823784 ], [ -80.415426145479131, 34.213475583884289 ], [ -80.384747814269772, 34.205082904778031 ], [ -80.353161305774464, 34.202024207280473 ], [ -80.332081073060266, 34.195753441081671 ], [ -80.293460334830371, 34.195974790593233 ], [ -80.280009111904675, 34.194654923463297 ], [ -80.23049415893486, 34.187396184035606 ], [ -80.21189264652854, 34.18676611676365 ], [ -80.169991393784301, 34.189485915037309 ], [ -80.142295503249414, 34.193754736882532 ], [ -80.113874633092877, 34.196279570356729 ], [ -80.076634509029873, 34.19887335264221 ], [ -80.04059224260692, 34.208073988637103 ], [ -80.026706905027069, 34.205883964381144 ], [ -80.020907763154938, 34.205014954321705 ], [ -79.98555298553535, 34.205735897634398 ], [ -79.963075764889155, 34.204694028960226 ], [ -79.929308332998104, 34.207002130244391 ], [ -79.90381016785102, 34.202474366723848 ], [ -79.883851918917998, 34.203638431512275 ], [ -79.873734798475738, 34.204015469621638 ], [ -79.868714767014907, 34.203054519081256 ], [ -79.849946720782143, 34.196455787336653 ], [ -79.8439037356749, 34.193056909578246 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I205\", \"DIST_MILES\": 49.370000, \"DIST_KM\": 79.460000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -121.556069714127403, 37.743392618326055 ], [ -121.551349080308157, 37.743784288901935 ], [ -121.543893863143126, 37.744339194226384 ], [ -121.525933111704433, 37.743228159941403 ], [ -121.490945941092747, 37.741524412870078 ], [ -121.470932686937545, 37.749754821840028 ], [ -121.457810828141476, 37.754577127593855 ], [ -121.44780404790238, 37.758652313744136 ], [ -121.435862815552568, 37.763191972196054 ], [ -121.429671710551176, 37.763461255307917 ], [ -121.409218682084315, 37.764836609296459 ], [ -121.402410528265591, 37.765513738567797 ], [ -121.391361561353548, 37.765796715975512 ], [ -121.349365154000665, 37.76564734354357 ], [ -121.326998485057715, 37.767579351793998 ] ], [ [ -122.745265276054795, 45.370205533788493 ], [ -122.731561335601, 45.372972463521592 ], [ -122.724588408529499, 45.375050897411626 ], [ -122.714493545635278, 45.375137717716356 ], [ -122.70373101151867, 45.374361207264826 ], [ -122.693121649241846, 45.371826778352073 ], [ -122.68133448092469, 45.369009772901052 ], [ -122.662399421860528, 45.366360201532096 ], [ -122.656537234284471, 45.36271822484882 ], [ -122.646592758948884, 45.352222150886789 ], [ -122.642218258113559, 45.349747946280907 ], [ -122.638238000858792, 45.349036958216772 ], [ -122.618699403059225, 45.351438295533576 ], [ -122.597877043196135, 45.3640281569349 ], [ -122.588379269465051, 45.366743529810449 ], [ -122.583645509048125, 45.368572233129981 ], [ -122.574608777831301, 45.376314892405624 ], [ -122.568512879969887, 45.381473970297513 ], [ -122.559122696698267, 45.408610622892589 ], [ -122.562832241215219, 45.418782497589881 ], [ -122.560657864482479, 45.421711464761863 ], [ -122.553838959659274, 45.430508226521994 ], [ -122.561133131772706, 45.455254945181757 ], [ -122.559253063448438, 45.462574086174698 ], [ -122.55346740477286, 45.470288335505025 ], [ -122.553663852391438, 45.498521633957544 ], [ -122.553531468242227, 45.505639619724136 ], [ -122.553191796282221, 45.52753560626644 ], [ -122.552329815844672, 45.534146232958115 ], [ -122.548363979308945, 45.548175402661776 ], [ -122.54969277250909, 45.55095606668192 ], [ -122.554650700003265, 45.556177512805625 ], [ -122.554025583254486, 45.559408230747437 ], [ -122.551015953955755, 45.562107785296149 ], [ -122.53771518320174, 45.572069399922157 ], [ -122.532172890621027, 45.579108765410815 ], [ -122.531600330096211, 45.584566523596393 ], [ -122.538491288919019, 45.598581947844266 ], [ -122.539657570427977, 45.60538055727546 ], [ -122.541915443398096, 45.615333717558144 ], [ -122.546970877644995, 45.622470221622926 ], [ -122.548088880862025, 45.635504851788284 ], [ -122.555643803611702, 45.65468966541755 ], [ -122.558787312978893, 45.658212226602274 ], [ -122.576132276287922, 45.68158990793296 ], [ -122.581904665340929, 45.684334776433197 ], [ -122.601577495413025, 45.699080643125882 ], [ -122.613630463351967, 45.702829687632097 ], [ -122.620319247668618, 45.709413089673689 ], [ -122.638633608737223, 45.720920401964207 ], [ -122.641745429955478, 45.725003008738248 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I210\", \"DIST_MILES\": 60.630000, \"DIST_KM\": 97.580000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -118.092883844672329, 34.15289548237152 ], [ -118.082550781026256, 34.148176923354633 ], [ -118.072164365244362, 34.148065205763245 ], [ -118.036725771569039, 34.148882739709691 ], [ -118.030457573345785, 34.147738348483635 ], [ -118.015533579846164, 34.140306567408352 ], [ -118.01269698541374, 34.13787945058148 ], [ -118.006611749941385, 34.135861099597747 ], [ -117.999457832520832, 34.135555626155487 ], [ -117.985357843117185, 34.135581813456483 ], [ -117.961868788644992, 34.135523474113086 ], [ -117.956447163467956, 34.134283204099887 ], [ -117.939761532439348, 34.129201414407397 ], [ -117.932630455119579, 34.12985299389026 ], [ -117.927093680637753, 34.130871653104407 ], [ -117.917377927081716, 34.127891198713343 ], [ -117.90934873877363, 34.12113595094786 ], [ -117.90650394544727, 34.120650806916117 ], [ -117.871644184938958, 34.120660882686948 ], [ -117.861585491592891, 34.117390427162093 ], [ -117.857314239688108, 34.117047204186761 ], [ -117.843144888083856, 34.117717415909993 ], [ -117.831827178137516, 34.121062710590621 ], [ -117.824917956357837, 34.120719349316957 ], [ -117.822798009204163, 34.117743319425259 ], [ -117.82292737670916, 34.111788493850625 ], [ -117.820617651057276, 34.106707512592713 ], [ -117.818284087684262, 34.099421591650078 ], [ -117.818331143543816, 34.084095024069676 ], [ -117.808272881201134, 34.073096788480235 ], [ -117.806480909921447, 34.068446821333609 ], [ -117.805443540584548, 34.065241854547331 ] ], [ [ -93.302721984047821, 30.227515696737839 ], [ -93.301164957805398, 30.225741753245988 ], [ -93.289819763171167, 30.212709168920885 ], [ -93.27792555050145, 30.198067636942131 ], [ -93.274782498115414, 30.196007703025963 ], [ -93.266542372539249, 30.195107732627896 ], [ -93.250848140935375, 30.19602670485104 ], [ -93.218644687956584, 30.196217803685688 ], [ -93.180085142501156, 30.197025912067719 ], [ -93.174302059424917, 30.197315924813871 ], [ -93.170989999537497, 30.20007587064579 ], [ -93.170280914190997, 30.215860499442279 ], [ -93.165923741996778, 30.235586064643144 ], [ -93.16223861753555, 30.246058852776617 ] ], [ [ -118.488591540897403, 34.316664383401431 ], [ -118.485282214917916, 34.317259104437078 ], [ -118.483300029886919, 34.319482874902143 ], [ -118.47789249406533, 34.323125330351019 ], [ -118.458920307692878, 34.323768833695155 ], [ -118.447543246938096, 34.323244972221801 ], [ -118.438385609860077, 34.316580493120604 ], [ -118.418210548794363, 34.299592528292372 ], [ -118.405103288894992, 34.287945931635278 ], [ -118.395122172160669, 34.278767492867416 ], [ -118.379520298463149, 34.275352441016558 ], [ -118.340759903907426, 34.270706730262248 ], [ -118.336139384612821, 34.268280475067257 ], [ -118.3324105389663, 34.26453833147059 ], [ -118.328292957486653, 34.259888191560805 ], [ -118.322666253584373, 34.253517002209044 ], [ -118.319799204390449, 34.246708030111797 ], [ -118.317229654319718, 34.244075936015541 ], [ -118.308384154202855, 34.241267398534504 ], [ -118.298585368978792, 34.234976925219392 ], [ -118.284119367739365, 34.234311926071456 ], [ -118.265055690023999, 34.231396699524041 ], [ -118.257040668039664, 34.229168228654828 ], [ -118.247394680202248, 34.223418783817245 ], [ -118.238671147477248, 34.218837341266408 ], [ -118.226600351311419, 34.211900751115827 ], [ -118.216236512497758, 34.207773172538083 ], [ -118.204195154941203, 34.207184339901147 ], [ -118.198918631277436, 34.206768982143174 ], [ -118.187358397753954, 34.201255373408948 ], [ -118.181707493841202, 34.194885212847836 ], [ -118.17961881875955, 34.190193240220488 ], [ -118.177110274980933, 34.186275208484403 ], [ -118.168958319396467, 34.182265779897726 ], [ -118.157535202383869, 34.173605289608957 ], [ -118.157292493251418, 34.158419826537155 ], [ -118.154433454933766, 34.149897932974291 ], [ -118.147066642265131, 34.151888335200034 ], [ -118.140393645264865, 34.152090853344667 ], [ -118.093318645093987, 34.152983509666115 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I215\", \"DIST_MILES\": 59.240000, \"DIST_KM\": 95.340000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -117.409294124502594, 34.225653307794481 ], [ -117.399310741909176, 34.221219932568886 ], [ -117.34742015957579, 34.181847595716839 ], [ -117.325585635703831, 34.156792386897152 ], [ -117.318256655277168, 34.144680452082824 ], [ -117.312125093226058, 34.136036465993904 ], [ -117.302484532830491, 34.129624262137263 ], [ -117.301341029789498, 34.127148295670239 ], [ -117.301471292910179, 34.121338494746389 ], [ -117.301532951871351, 34.108399928264177 ], [ -117.300878011746235, 34.09217644181679 ], [ -117.300076637159989, 34.085123644546599 ], [ -117.294768805598508, 34.076028736587823 ], [ -117.295555173003734, 34.064185166038214 ], [ -117.298759700219918, 34.05369464252577 ], [ -117.306760472199485, 34.047512156718483 ], [ -117.324135627852144, 34.033803268531919 ], [ -117.338520751976276, 34.019518266102921 ], [ -117.341578985092369, 34.015367510554242 ], [ -117.350968697286149, 34.001303294177021 ], [ -117.356376309028974, 33.993499614453754 ], [ -117.348544035404785, 33.98937937680855 ], [ -117.339132475658317, 33.98053614004278 ], [ -117.334366219450573, 33.975897021777499 ], [ -117.323193356744895, 33.963586761039487 ], [ -117.308343285326941, 33.95920726799033 ], [ -117.304033850386588, 33.954790162774486 ], [ -117.30147991527474, 33.949064137158075 ], [ -117.297826167022109, 33.946909028682839 ], [ -117.293341638879227, 33.945649879302472 ], [ -117.290832568446334, 33.942532824006882 ], [ -117.287851073754837, 33.929772863489617 ], [ -117.279645492407099, 33.910710781972455 ], [ -117.269853533511323, 33.888394674816794 ], [ -117.261791853647154, 33.869820584872677 ], [ -117.260343446855813, 33.866524567866378 ] ], [ [ -111.796627609383577, 40.706361945672327 ], [ -111.795979623576031, 40.708963914692653 ], [ -111.791264732826818, 40.711183886447763 ] ], [ [ -111.796627609383577, 40.706361945672327 ], [ -111.806812366828282, 40.713953860804615 ] ], [ [ -111.796627609383577, 40.706361945672327 ], [ -111.795483638871929, 40.699752023195238 ], [ -111.798054584812135, 40.681884234961736 ], [ -111.803356460469701, 40.674319325950108 ], [ -111.805264415586777, 40.670619370154213 ], [ -111.809162329334129, 40.635653782591881 ], [ -111.81026130247038, 40.634555795753982 ], [ -111.828952836667298, 40.633952807527002 ], [ -111.8345826944891, 40.63255682539873 ], [ -111.85426619040588, 40.630355856950388 ], [ -111.865931887074396, 40.630377860593626 ], [ -111.883760417332539, 40.631343856046342 ], [ -111.886629342121481, 40.63311383680778 ], [ -111.889589263242954, 40.633303835834425 ], [ -111.905007849283265, 40.634749825935856 ], [ -111.919557454961662, 40.637553800828819 ], [ -111.930169170160099, 40.644377728643732 ], [ -111.937790958606143, 40.644454732010814 ], [ -111.941849845413174, 40.644564733081353 ], [ -111.94671671151886, 40.646422714877779 ], [ -111.951248589409218, 40.650199674883673 ], [ -111.952225587002815, 40.667521479651199 ], [ -111.950958643549015, 40.682254312169157 ], [ -111.952019634868904, 40.696677149854295 ], [ -111.952919638241099, 40.71615893031592 ], [ -111.950874706799709, 40.72493582934716 ], [ -111.948257792048693, 40.734949713771421 ], [ -111.95085984368734, 40.765352408357721 ], [ -111.949158938690005, 40.7727833408088 ], [ -111.949357192418049, 40.812253988143887 ], [ -111.951035156870006, 40.813923973050642 ], [ -111.947404356728583, 40.829011839037669 ], [ -111.941880539471398, 40.833451801853869 ], [ -111.919100169049784, 40.834191806137177 ], [ -111.915850265988055, 40.835480796956901 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I220\", \"DIST_MILES\": 29.130000, \"DIST_KM\": 46.870000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -90.147288884905706, 32.411241223349066 ], [ -90.152583015958669, 32.412943185241176 ], [ -90.158687171194117, 32.41244320479646 ], [ -90.176601650575478, 32.400442531744623 ], [ -90.180583758779292, 32.397543609964451 ], [ -90.192585087213743, 32.388945841260046 ], [ -90.235387286565285, 32.359546623459998 ], [ -90.240590435403305, 32.35604471563073 ], [ -90.243390517233209, 32.353744775596276 ], [ -90.245092574825151, 32.350142867482695 ], [ -90.24609168097895, 32.327545436856894 ], [ -90.247846746008818, 32.322548563511653 ], [ -90.245488739543632, 32.306267972073513 ], [ -90.246473787167716, 32.300408119931483 ], [ -90.249616912147815, 32.289628392140173 ] ], [ [ -93.843930961204578, 32.456849848606097 ], [ -93.845052957605418, 32.462094710019834 ], [ -93.824147399111467, 32.489520922699768 ], [ -93.808246987781715, 32.521376818199279 ], [ -93.781414430401341, 32.554208565800238 ], [ -93.776798344131166, 32.556726467891188 ], [ -93.767307174116922, 32.556569462576363 ], [ -93.749056844304675, 32.555986464295607 ], [ -93.731455485092724, 32.558805371644411 ], [ -93.726184377907686, 32.558114399299136 ], [ -93.72336832064893, 32.557180434270037 ], [ -93.710475058041808, 32.55711544324101 ], [ -93.661882068628287, 32.557622450598224 ], [ -93.643151688377372, 32.558912415817574 ], [ -93.638161585266502, 32.557237476283248 ], [ -93.634278501286047, 32.55228564872229 ], [ -93.632889467866335, 32.547262822093899 ], [ -93.628327366664806, 32.53995007471859 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I225\", \"DIST_MILES\": 12.170000, \"DIST_KM\": 19.590000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -104.827501905646486, 39.772630892446877 ], [ -104.827532038231894, 39.753909162503454 ], [ -104.825334999702946, 39.747908240095242 ], [ -104.825762095941883, 39.740191290945077 ], [ -104.825000214994546, 39.725680391497313 ], [ -104.82706744506207, 39.711169483152979 ], [ -104.829409683814333, 39.69674957335863 ], [ -104.829150897179446, 39.674868722209375 ], [ -104.829402954565197, 39.670195753038399 ], [ -104.831707086870466, 39.665877775063869 ], [ -104.843677618986376, 39.658465787911894 ], [ -104.84705776512186, 39.656729789136982 ], [ -104.856061137605153, 39.653719781487304 ], [ -104.861348369716666, 39.65051578674646 ], [ -104.868054661443139, 39.646639792165118 ], [ -104.880133162941988, 39.641970786290102 ], [ -104.893232717768853, 39.6354397899498 ], [ -104.90809528478151, 39.634688748905326 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I229\", \"DIST_MILES\": 26.030000, \"DIST_KM\": 41.890000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -96.690588832757314, 43.6064845582099 ], [ -96.690702801457761, 43.594044631600255 ], [ -96.693289847654185, 43.580094724145063 ], [ -96.693930774610507, 43.546693919807332 ], [ -96.694433757148204, 43.534615991147305 ], [ -96.701086959843977, 43.528585045593069 ], [ -96.707061124842397, 43.517175125567604 ], [ -96.711326259934879, 43.515154147835553 ], [ -96.73091889241519, 43.510107224087491 ], [ -96.757301629668547, 43.500475400968668 ], [ -96.771065789541183, 43.49522671878146 ], [ -96.788812039384425, 43.491526045228255 ], [ -96.793076075037916, 43.489261164218313 ], [ -96.794671075675396, 43.487696230039973 ] ], [ [ -94.859918377874621, 39.888334092349986 ], [ -94.865394609991625, 39.820577199835945 ], [ -94.865074415459645, 39.807104220969848 ], [ -94.869484427005958, 39.798403222382376 ], [ -94.869331223757655, 39.783933242407834 ], [ -94.86146485311555, 39.773966284768029 ], [ -94.861090792118446, 39.770334292260138 ], [ -94.853354267424535, 39.748884371571819 ], [ -94.853583197748705, 39.743372416412953 ], [ -94.850844034838673, 39.737375479121823 ], [ -94.843603692701535, 39.727552594947262 ], [ -94.83341032905129, 39.721964689591296 ], [ -94.829229176714591, 39.719293731685312 ], [ -94.820904913705789, 39.716993790271175 ], [ -94.814236705797953, 39.715269836279504 ], [ -94.791592000144547, 39.708666999359167 ], [ -94.78846391354854, 39.708667014191086 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I235\", \"DIST_MILES\": 35.150000, \"DIST_KM\": 56.570000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -97.321747910041168, 37.761773405758788 ], [ -97.340562286822532, 37.756173385368051 ], [ -97.367876530512646, 37.757561317852144 ], [ -97.371339609109981, 37.756142314934081 ], [ -97.375215680569852, 37.755093309673136 ], [ -97.375261872066346, 37.736313673201202 ], [ -97.406886301630308, 37.707712312580263 ], [ -97.409152340729221, 37.703684407510046 ], [ -97.409320374678401, 37.694734631229622 ], [ -97.408786404204278, 37.684824880922719 ], [ -97.401866354576839, 37.676585106910366 ], [ -97.401126357623113, 37.67324319288339 ], [ -97.400866427348788, 37.652095724444827 ], [ -97.398776421806829, 37.646434872851174 ], [ -97.392840393178545, 37.633575214229602 ], [ -97.385707319023979, 37.629535338156316 ], [ -97.381060264109706, 37.62886436962112 ], [ -97.370623136661024, 37.628635408109382 ], [ -97.345735833856182, 37.62750651484383 ], [ -97.341798789100096, 37.625976566189856 ], [ -97.339311766635362, 37.622493662815259 ], [ -97.336435741152442, 37.618084784416531 ], [ -97.328783651848582, 37.615276880682714 ] ], [ [ -93.777323139138872, 41.592167009825062 ], [ -93.736320830283333, 41.592759101575503 ], [ -93.703421716705307, 41.59298813514576 ], [ -93.678060847376997, 41.590989180946124 ], [ -93.673360689540843, 41.591248183647572 ], [ -93.669241557805918, 41.592888173166699 ], [ -93.656042111018124, 41.593010186389144 ], [ -93.643735705484005, 41.595829174412366 ], [ -93.642628668343193, 41.595940174630691 ], [ -93.606876450597127, 41.594838223634504 ], [ -93.598835181590374, 41.59610822125974 ], [ -93.59610309013955, 41.596558220310371 ], [ -93.584429705233333, 41.600869195516793 ], [ -93.5788295234657, 41.604378171228561 ], [ -93.575182457169987, 41.627708972550188 ], [ -93.575610533045918, 41.652038760474525 ] ], [ [ -97.514012229628989, 35.529584394373636 ], [ -97.517521198178343, 35.51937270080866 ], [ -97.511302785228963, 35.493288668319295 ], [ -97.506786433673909, 35.47529116348823 ], [ -97.50273528247719, 35.470611340300799 ], [ -97.494456974454991, 35.464221597044357 ], [ -97.492823896393858, 35.462020666732094 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I238\", \"DIST_MILES\": 2.130000, \"DIST_KM\": 3.430000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -122.13046263648198, 37.691056145917557 ], [ -122.123087224917541, 37.691819524887322 ], [ -122.106206934542399, 37.689631587514448 ], [ -122.098931179985058, 37.690293024971439 ], [ -122.091715169786099, 37.691125487802829 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I24\", \"DIST_MILES\": 312.600000, \"DIST_KM\": 503.080000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -85.827192257081308, 35.231361570382134 ], [ -85.814122767962019, 35.230209448681379 ], [ -85.807454517863974, 35.222519432348683 ], [ -85.803853382953761, 35.220138411829453 ], [ -85.801366289461512, 35.214161425362668 ], [ -85.790256873816261, 35.21347031854409 ], [ -85.787929786665629, 35.212059304150443 ], [ -85.790653887840108, 35.201561397951423 ], [ -85.785663700757951, 35.195160387866146 ], [ -85.78427564846389, 35.189461409619035 ], [ -85.78700675022877, 35.183960472139134 ], [ -85.795323060587407, 35.175079613735655 ], [ -85.794858042940362, 35.171451632040046 ] ], [ [ -85.827192257081308, 35.231361570382134 ], [ -85.82142404050272, 35.222416572002444 ], [ -85.81964697282082, 35.207947648988466 ], [ -85.81520580635862, 35.203827631163094 ], [ -85.813504742384922, 35.199501642123352 ], [ -85.816579856809213, 35.192188720911851 ], [ -85.815968833639587, 35.188267740249721 ], [ -85.811444664250544, 35.18580271010682 ], [ -85.808011535271689, 35.178165724371205 ], [ -85.79932121009837, 35.175255653751996 ], [ -85.794858042940362, 35.171451632040046 ] ], [ [ -85.827192257081308, 35.231361570382134 ], [ -85.847876031856757, 35.240150715550335 ], [ -85.858229419627165, 35.243439794804978 ], [ -85.862265570521345, 35.241951844543095 ], [ -85.865783701698334, 35.237308910971315 ], [ -85.86864480871769, 35.236881942074888 ], [ -85.876480102100288, 35.238572007465528 ], [ -85.873069975197495, 35.24520192800572 ], [ -85.873733149415344, 35.257210727489081 ], [ -85.888740957385977, 35.269340583688304 ], [ -85.895959660942793, 35.290810142176959 ], [ -85.903261113001051, 35.300032998221347 ], [ -85.909395464843712, 35.306510909058161 ], [ -85.93484090376208, 35.333381552426189 ], [ -85.947094626710395, 35.348510337621946 ], [ -86.019242297232566, 35.420339248076871 ], [ -86.047479564104904, 35.448937453700751 ], [ -86.051988831085808, 35.457577226777204 ], [ -86.052484862127002, 35.458634199173822 ], [ -86.05784118771237, 35.469555911111264 ], [ -86.064883523443925, 35.478523657086285 ], [ -86.0743289657416, 35.49032631680754 ], [ -86.079631200232782, 35.496227140953678 ], [ -86.086811446497506, 35.499878006709679 ], [ -86.09051156011445, 35.501898932843602 ], [ -86.135823876115836, 35.524386091175842 ], [ -86.163320628364289, 35.53565464551523 ], [ -86.177954020223794, 35.541704408780163 ], [ -86.211203914496565, 35.563233687092414 ], [ -86.225273265738593, 35.568154485604218 ], [ -86.229438371847252, 35.570702399876701 ], [ -86.238853651220538, 35.593593795423189 ], [ -86.240364737544382, 35.615043272218877 ], [ -86.243217824446575, 35.625289010801204 ], [ -86.245956898898569, 35.631934836629924 ], [ -86.255517016755448, 35.649161338206511 ], [ -86.278580010028861, 35.668210620246285 ], [ -86.342819710540525, 35.750087019184136 ], [ -86.364540494320565, 35.773546296913054 ], [ -86.37862436824102, 35.795587726986867 ], [ -86.386589326691094, 35.803453513403795 ], [ -86.396446287639108, 35.812619271448284 ], [ -86.435707247730875, 35.847897447364794 ], [ -86.441429256794493, 35.852905344811298 ], [ -86.473434380752252, 35.882453820286592 ], [ -86.480865426033802, 35.889014720539244 ], [ -86.531907492217428, 35.934832988306837 ], [ -86.532548510562066, 35.935412977687378 ], [ -86.534836576104283, 35.937506939318844 ], [ -86.549225985260634, 35.950354696702519 ], [ -86.562174351443616, 35.961992469263478 ], [ -86.566431479333673, 35.967684367064479 ], [ -86.576120767218143, 35.980196136067491 ], [ -86.581590921886317, 35.985563026989304 ], [ -86.604258527241399, 36.000062673272694 ], [ -86.612849735903851, 36.007379344365525 ], [ -86.645626485826469, 36.036831084090636 ], [ -86.659328782959889, 36.045321716708756 ], [ -86.673123073752549, 36.053500369778021 ], [ -86.687848361291714, 36.067308837225148 ], [ -86.700253569587616, 36.085977166329172 ], [ -86.712415767058985, 36.101289626601407 ], [ -86.721730921610302, 36.109689332552009 ], [ -86.725484967661288, 36.116647100074829 ], [ -86.728055978896194, 36.126007793609041 ] ], [ [ -85.794858042940362, 35.171451632040046 ], [ -85.790943896261723, 35.166740621509376 ], [ -85.786731738034305, 35.155769647092583 ], [ -85.775272309030797, 35.145920588870965 ], [ -85.768940071801907, 35.136879578232985 ], [ -85.7378719375873, 35.100670327414754 ], [ -85.736185858184569, 35.07543945240581 ], [ -85.734438791595153, 35.072090436558859 ], [ -85.720613261987495, 35.057621240176907 ], [ -85.699624439368336, 35.043959901910583 ], [ -85.690415075370339, 35.04003874262979 ], [ -85.68258677009355, 35.038638593430029 ], [ -85.67088334149949, 35.04338031461355 ], [ -85.644995397142949, 35.050779714506504 ], [ -85.639105175907659, 35.050947590438341 ], [ -85.629926816570446, 35.048979418217577 ], [ -85.610151034904206, 35.044649051608332 ], [ -85.592388262429097, 35.033597802487385 ], [ -85.578227691315831, 35.031129542178903 ], [ -85.55691779685003, 35.024808184582454 ], [ -85.540140024514287, 35.014847968909081 ], [ -85.5316406472799, 35.011547841763687 ], [ -85.526300376511784, 35.006866795348174 ], [ -85.514778895426488, 35.005436588728486 ], [ -85.512566778573287, 35.003307573117709 ], [ -85.512268731134867, 34.998996619401183 ], [ -85.508782641317936, 34.991077628637242 ], [ -85.504250481611905, 34.987545576939105 ], [ -85.499458297839396, 34.987156496591972 ], [ -85.48519088834351, 34.991405367813257 ], [ -85.478538709631835, 34.991565325821348 ], [ -85.473388575078403, 34.990997300539348 ], [ -85.469474492178165, 34.986820321004039 ], [ -85.463386347126928, 34.982971325852084 ], [ -85.458762232338302, 34.98071632296849 ], [ -85.453788124569201, 34.974544361177067 ], [ -85.449744022502415, 34.972397361651204 ], [ -85.442129815515614, 34.971557327847528 ], [ -85.435583646594978, 34.968216328526587 ], [ -85.425863372452895, 34.969406260611692 ], [ -85.423269296996153, 34.970535233049162 ], [ -85.416601091208321, 34.978206105990211 ], [ -85.409719891571768, 34.982940010234387 ], [ -85.399541592693481, 34.994662809359419 ], [ -85.396245549248462, 35.003894650567261 ], [ -85.38322241600342, 35.018706271890217 ], [ -85.376447322416794, 35.024665101661299 ], [ -85.356701865592626, 35.028986858476159 ], [ -85.346584572287313, 35.027029821734992 ], [ -85.336063192473532, 35.019765903840955 ], [ -85.331409051606613, 35.018461899353639 ], [ -85.32561895439531, 35.022295768437004 ], [ -85.321292964700206, 35.030943533702178 ], [ -85.318835917856561, 35.032171485174992 ] ], [ [ -88.995105491653817, 37.609581643395366 ], [ -88.995136463094781, 37.603032680237618 ], [ -88.988437084664028, 37.59634470233194 ], [ -88.968844005005408, 37.58387072823713 ], [ -88.96383072013964, 37.579258743241425 ], [ -88.92633851734486, 37.536492908559381 ], [ -88.90177001960069, 37.504430046478937 ], [ -88.897489716702182, 37.496492090032206 ], [ -88.887272506750008, 37.446573455272436 ], [ -88.884281208441934, 37.436342534598552 ], [ -88.876811688200164, 37.427801604791711 ], [ -88.870731187925202, 37.415243711477416 ], [ -88.865252794532637, 37.408281775280741 ], [ -88.822113051271202, 37.380991095499496 ], [ -88.793173128077612, 37.358103405399696 ], [ -88.787350697332243, 37.350623505172777 ], [ -88.786305495058528, 37.34070161905408 ], [ -88.781049124126454, 37.335291698494011 ], [ -88.764980057716684, 37.32361189568541 ], [ -88.758845609285046, 37.316463006865078 ], [ -88.743349110971138, 37.27285359996506 ], [ -88.737313686221015, 37.265613706337142 ], [ -88.721260637053859, 37.251392935957384 ], [ -88.683584428702034, 37.187092482217686 ], [ -88.682737322959781, 37.168030613140118 ], [ -88.68272929945131, 37.161305657752507 ], [ -88.683195265219055, 37.145375760019149 ], [ -88.685476341419232, 37.138653787728551 ], [ -88.68895545417557, 37.128678825929946 ], [ -88.692853576441152, 37.118043862160597 ], [ -88.693243565597541, 37.111634898847754 ], [ -88.680844940264294, 37.078275226167619 ], [ -88.678441835944696, 37.074865272562256 ], [ -88.665860326077251, 37.064336472512075 ], [ -88.654857899612665, 37.057195639859103 ], [ -88.651027750270345, 37.050974728886516 ], [ -88.646457578153971, 37.045526821668233 ], [ -88.620158638815894, 37.031176239214894 ], [ -88.59991696338723, 37.017436607027818 ], [ -88.58806757422019, 37.012938795846544 ], [ -88.566925880065526, 37.008598102045937 ], [ -88.553620470943955, 37.002720334995139 ], [ -88.530769707453118, 36.993751621893921 ], [ -88.506056894472408, 36.99470993191413 ], [ -88.485257877128234, 36.994522859457376 ], [ -88.357977865625969, 36.989585584114579 ], [ -88.346983255960225, 36.990508481653059 ], [ -88.337224711909101, 36.991576391624335 ], [ -88.334408547777258, 36.992858370222308 ], [ -88.324421927158866, 37.002776281846835 ], [ -88.31516636945517, 37.011767114812635 ], [ -88.296351305604759, 37.017244891196043 ], [ -88.2853946678771, 37.025957721662898 ], [ -88.273430974690172, 37.036554534875336 ], [ -88.264344459474614, 37.042745410843771 ], [ -88.24318637315352, 37.051115140469832 ], [ -88.234045975200331, 37.056065987068557 ], [ -88.217925284974484, 37.05973575014437 ], [ -88.198926465710059, 37.064103471191316 ], [ -88.179898680451444, 37.060685241892024 ], [ -88.159564778307455, 37.068294925643272 ], [ -88.144618130935626, 37.070404715569971 ], [ -88.134798678106478, 37.075553554398375 ], [ -88.130564495900089, 37.07578249730399 ], [ -88.121706133420489, 37.073722393471073 ], [ -88.107621556762766, 37.070835225744112 ], [ -88.092560904570576, 37.07230301857502 ], [ -88.084732580215231, 37.0713339213602 ], [ -88.069854992124235, 37.066634753469707 ], [ -88.043509911045504, 37.063372425293224 ], [ -88.015973959660315, 37.044852168675042 ], [ -88.000043484988467, 37.02924204646348 ], [ -87.988309106614906, 37.022333883958375 ], [ -87.967556490983227, 37.004812630552586 ], [ -87.943179727051927, 36.992410243411143 ], [ -87.888055962634454, 36.971943327712694 ], [ -87.857017992773862, 36.960010827627535 ], [ -87.847610764321985, 36.953372682824842 ], [ -87.832947442181492, 36.941600463334218 ], [ -87.774946950217029, 36.907248614273897 ], [ -87.764806734381281, 36.899496476810121 ], [ -87.734945179462457, 36.881930111426797 ], [ -87.713414935709267, 36.869127896326283 ], [ -87.699879974625929, 36.853677804063409 ], [ -87.681393706174177, 36.846425627984232 ], [ -87.673207628000583, 36.841752560700655 ], [ -87.659443653257384, 36.82814548688453 ], [ -87.642445522175322, 36.818185368309393 ], [ -87.62504326410992, 36.813016223050759 ], [ -87.603665277319209, 36.7953391392737 ], [ -87.587010120688717, 36.788057037576678 ], [ -87.566945009956825, 36.777096944690541 ], [ -87.494121314456223, 36.733654758551268 ], [ -87.490734222643951, 36.730595756461128 ], [ -87.479037924602878, 36.712555846726481 ], [ -87.459422394069435, 36.704445736707903 ], [ -87.455111278413739, 36.702725712892722 ], [ -87.422296408240044, 36.690346535105526 ], [ -87.397599774951942, 36.67915744370552 ], [ -87.365181015144231, 36.654423503786305 ], [ -87.346877568022379, 36.647198448757145 ], [ -87.339347401280051, 36.641518472443707 ], [ -87.33324426816877, 36.636845494527506 ], [ -87.304304592919237, 36.62452745059781 ], [ -87.282965216791439, 36.599926708450347 ], [ -87.255285782145123, 36.566404116400626 ], [ -87.24666370531871, 36.549466359045333 ], [ -87.242345630857869, 36.545396385533117 ], [ -87.238279587215416, 36.538396471548204 ], [ -87.22198229669867, 36.525266539008115 ], [ -87.215429165058907, 36.521978529823173 ], [ -87.205181985302247, 36.514058572323172 ], [ -87.183064579461558, 36.500047613679648 ], [ -87.127612410600221, 36.468352015201596 ], [ -87.1002838757652, 36.450568331892974 ], [ -87.024964510857956, 36.402130374423223 ], [ -87.010392254594791, 36.394225555499453 ], [ -87.004006144451481, 36.390693640032538 ], [ -86.999978078015374, 36.388160705337086 ], [ -86.984070931281565, 36.373742178496165 ], [ -86.971695768624997, 36.368523329491282 ], [ -86.953278512156189, 36.362389494835696 ], [ -86.917152077289529, 36.339769198562095 ], [ -86.89203573794164, 36.328111539637987 ], [ -86.868072361633423, 36.324182605930481 ], [ -86.846183025754129, 36.319105719419156 ], [ -86.837309880298719, 36.318433715678985 ], [ -86.82740676331683, 36.310312975136824 ], [ -86.815306588052422, 36.305380113334927 ], [ -86.812101557526177, 36.301402245365189 ], [ -86.808615591260875, 36.285853789878757 ], [ -86.799421486918021, 36.276752085458739 ], [ -86.792349416800747, 36.267822381420991 ], [ -86.784117376189698, 36.250026989526717 ], [ -86.785604462620981, 36.237984371667999 ], [ -86.78240844279982, 36.230755587731984 ], [ -86.7740763298697, 36.224133768189226 ] ], [ [ -85.293391050126829, 35.018259627482252 ], [ -85.287432894784232, 35.018339582127311 ], [ -85.272501444132928, 35.014299579126046 ], [ -85.265650348089494, 35.020094377037353 ], [ -85.262468278740897, 35.021074327379488 ], [ -85.252076914185281, 35.014764422466179 ], [ -85.228608028544386, 35.005487732433977 ], [ -85.218040673041102, 35.004694787843476 ], [ -85.209686419136716, 35.005945783290969 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I24  N\", \"DIST_MILES\": 1.750000, \"DIST_KM\": 2.810000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -85.318835917856561, 35.032171485174992 ], [ -85.314746794757085, 35.031065478498469 ], [ -85.304904472780848, 35.026624507787716 ], [ -85.293391050126829, 35.018259627482252 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I240\", \"DIST_MILES\": 56.190000, \"DIST_KM\": 90.430000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -82.611536041156086, 35.554481929962591 ], [ -82.605562016376936, 35.560612001774636 ], [ -82.591805651203231, 35.564980301690809 ], [ -82.587365580909349, 35.567810378871918 ], [ -82.583352655755647, 35.574540390992368 ], [ -82.582085936886571, 35.584450287272283 ], [ -82.580445999959366, 35.588143279195229 ], [ -82.578370967210574, 35.589402316129252 ], [ -82.567422674659724, 35.59238156160017 ], [ -82.553895434021797, 35.599511817203513 ], [ -82.546021188709844, 35.60050300963762 ], [ -82.535850791064121, 35.599431290694106 ], [ -82.529754438808098, 35.595540504078578 ], [ -82.528335247945037, 35.591531596658932 ], [ -82.522673825059428, 35.585271831431314 ], [ -82.515250141653183, 35.573542188005042 ], [ -82.500394292971748, 35.565005695076614 ], [ -82.499402241750346, 35.564524726510996 ] ], [ [ -97.574542819697712, 35.396282028732649 ], [ -97.565639588019678, 35.393955212858565 ], [ -97.547878146560308, 35.391132530226443 ], [ -97.529993737716609, 35.391071779048573 ], [ -97.494859920840597, 35.391721242480209 ], [ -97.423537954971081, 35.390760150800212 ], [ -97.408599522310723, 35.389044376427286 ], [ -97.370657475762812, 35.388392863722871 ], [ -97.353315016894456, 35.389537052482858 ], [ -97.290836494972098, 35.404105479665482 ] ], [ [ -90.023863679028878, 35.130091089759716 ], [ -90.028807920558521, 35.109469529099258 ], [ -90.029311976383852, 35.102221675476642 ], [ -90.025923958926072, 35.09311182881688 ], [ -90.025558011861733, 35.083442015520838 ], [ -90.026184095508683, 35.072231240361141 ], [ -90.017958927977787, 35.071590185482037 ], [ -89.985579160703026, 35.076990954653439 ], [ -89.977018955639338, 35.076380977143273 ], [ -89.966291685128255, 35.077441970162035 ], [ -89.955716405390092, 35.080210929495493 ], [ -89.948232206995542, 35.082201899717425 ], [ -89.931530815761377, 35.079829966556261 ], [ -89.917225481496331, 35.077732025809745 ], [ -89.906719221684696, 35.078060032366949 ], [ -89.892665838174082, 35.083079948696167 ], [ -89.8792074997654, 35.084151942955252 ], [ -89.874446371909301, 35.085551920075716 ], [ -89.870586243323856, 35.089812837672632 ], [ -89.870036118806752, 35.103758553804575 ], [ -89.867853850631406, 35.130659006522656 ], [ -89.868159818836929, 35.135598905445676 ], [ -89.870264837496194, 35.139810818233336 ], [ -89.875849934051075, 35.145109707274194 ], [ -89.885478124670627, 35.151269577689384 ], [ -89.888484183472372, 35.153299535339173 ], [ -89.893710283589357, 35.157117456211665 ], [ -89.90298042174409, 35.169019214123345 ], [ -89.917918647172527, 35.188149830025317 ], [ -89.920879698322167, 35.191147770388262 ], [ -89.925960815696683, 35.192459744349279 ], [ -89.946591352687577, 35.189888794647565 ], [ -89.992872491950436, 35.192780738211248 ], [ -90.014220040842218, 35.191757832568427 ], [ -90.017706149533325, 35.18875990923808 ], [ -90.018660336756867, 35.163919397072668 ], [ -90.020377417158954, 35.157998522630422 ], [ -90.022093514282901, 35.14935070188902 ], [ -90.022459552673524, 35.144727794461218 ], [ -90.024046635048876, 35.137678942567028 ], [ -90.023863679028878, 35.130091089759716 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I244\", \"DIST_MILES\": 15.600000, \"DIST_KM\": 25.100000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -96.038820115414367, 36.089721895416943 ], [ -96.012184321640106, 36.112141739294671 ], [ -96.008820272262042, 36.119027771734814 ], [ -96.009125439427081, 36.130284562289219 ], [ -96.007302499826764, 36.140583463534689 ], [ -96.003876402065998, 36.144581544075834 ], [ -96.00209839979766, 36.150341520247565 ], [ -96.002015510383373, 36.158932371911753 ], [ -95.992127018204158, 36.16169459886666 ], [ -95.980171331052162, 36.159451932816751 ], [ -95.966376568469883, 36.15921927641476 ], [ -95.962126348967089, 36.16057335738455 ], [ -95.922589156385854, 36.15918235470059 ], [ -95.918590935961134, 36.159155453559663 ], [ -95.910159499575585, 36.16290159725682 ], [ -95.886660196555511, 36.162368185282496 ], [ -95.88219595129199, 36.162635290776912 ], [ -95.860832784616434, 36.166019760843476 ], [ -95.83903457659811, 36.166718287023734 ], [ -95.82943603528355, 36.163254580566409 ], [ -95.82407973739042, 36.162499724895781 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I25\", \"DIST_MILES\": 1064.060000, \"DIST_KM\": 1712.450000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -106.689089845937644, 44.371525904593859 ], [ -106.68686956833379, 44.354263905217856 ], [ -106.685221287938276, 44.335334897407201 ], [ -106.681153952568877, 44.318054923420199 ], [ -106.683289609891091, 44.284374847920091 ], [ -106.680085225086401, 44.260872857132583 ], [ -106.685014230890161, 44.242061763509504 ], [ -106.684968212297406, 44.233123751273013 ], [ -106.638091374539286, 44.123605392418334 ], [ -106.632437980012853, 44.065366488296981 ], [ -106.646170311146292, 44.009255210982083 ], [ -106.645545341670726, 43.96397893161533 ], [ -106.644767411508411, 43.919784592908798 ], [ -106.629690894021479, 43.872772514968965 ], [ -106.616743420583177, 43.832813446324579 ], [ -106.614630364188727, 43.810993309898556 ], [ -106.616056442098966, 43.800342195193998 ], [ -106.626440927935846, 43.779994827666648 ], [ -106.62666195019176, 43.773081767363884 ], [ -106.623281824249034, 43.760192728285773 ], [ -106.624250881504025, 43.752013643194267 ], [ -106.630996175550095, 43.730471307829518 ], [ -106.641555643168402, 43.715952970823388 ], [ -106.647223895205386, 43.70483976138226 ], [ -106.645064789082241, 43.672121493623372 ], [ -106.642287660120644, 43.664571471520929 ], [ -106.635260336691601, 43.659452546026984 ], [ -106.590115238087961, 43.634020068868722 ], [ -106.565624091815337, 43.626280399984147 ], [ -106.557643712520715, 43.621112476802395 ], [ -106.503754069666371, 43.567671726489365 ], [ -106.47776661119326, 43.539031459076156 ], [ -106.451696045673799, 43.499461009006978 ], [ -106.445767697950785, 43.492719942252506 ], [ -106.440182373407524, 43.487291889834324 ], [ -106.435345100227181, 43.485311874828767 ], [ -106.421764341128323, 43.482500863442226 ], [ -106.409029624815233, 43.478090833359772 ], [ -106.380081974500072, 43.458192657805803 ], [ -106.379372926464725, 43.454492618300797 ], [ -106.383668136691668, 43.443376489600524 ], [ -106.38041790043377, 43.419630234133585 ], [ -106.381622964343521, 43.418661221526655 ], [ -106.386392214967628, 43.413961162066293 ], [ -106.387933287695532, 43.409113106226911 ], [ -106.384034025012838, 43.389069892577346 ], [ -106.392328442420776, 43.374348716331497 ], [ -106.393319479693901, 43.367589640189166 ], [ -106.3915113688102, 43.36267158928289 ], [ -106.400979850371883, 43.349030421928752 ], [ -106.402490909821978, 43.340130320985899 ], [ -106.391038159017768, 43.288436773421189 ], [ -106.38836793591588, 43.256370426169717 ], [ -106.382851621961507, 43.234470160417366 ], [ -106.367789819961914, 43.212679899418958 ], [ -106.357062254491439, 43.200758760702684 ], [ -106.348578815888217, 43.180869509822841 ], [ -106.339399342004853, 43.168227356906058 ], [ -106.333845058954793, 43.15841923494667 ], [ -106.337721295975896, 43.109956574707837 ], [ -106.33184584623514, 42.953143745573463 ], [ -106.334508878582554, 42.934627601117569 ], [ -106.344609994195011, 42.867187072277517 ], [ -106.340627785026967, 42.862293041860433 ], [ -106.33339442873033, 42.857536018194608 ], [ -106.32505504364768, 42.856853027436934 ], [ -106.297793797649106, 42.857398078702985 ], [ -106.290278442927274, 42.85489607299516 ], [ -106.277040839164755, 42.855563100960758 ], [ -106.27073154290251, 42.853599097319268 ], [ -106.248605510024746, 42.848453098693042 ], [ -106.227989528059368, 42.847175134291405 ], [ -106.217201010484814, 42.844615140326745 ], [ -106.210463686853316, 42.842426140576151 ], [ -106.196027997599828, 42.838756149358808 ], [ -106.179029195328312, 42.840385198970608 ], [ -106.11101797218403, 42.838683346533273 ], [ -106.072823157375879, 42.839576439504263 ], [ -106.040785631820654, 42.840244516377027 ], [ -105.98592014262158, 42.83499565027838 ], [ -105.977962818461407, 42.835044682308727 ], [ -105.965350302736894, 42.835605734518666 ], [ -105.929078806680877, 42.841804896072937 ], [ -105.89395938765557, 42.837124023766712 ], [ -105.859854995049574, 42.836945159499905 ], [ -105.822255463651175, 42.826985293696694 ], [ -105.792927256726998, 42.823414409018035 ], [ -105.754450664859633, 42.818787563522605 ], [ -105.718468267716872, 42.82064562425608 ], [ -105.654661829579567, 42.800907711489913 ], [ -105.604137913929449, 42.793965793900497 ], [ -105.555155048566746, 42.792786874533135 ], [ -105.515663594306716, 42.780796957707174 ], [ -105.446860162945924, 42.78050711125826 ], [ -105.440870964927797, 42.778177130017973 ], [ -105.427198550228695, 42.762987193634274 ], [ -105.421529360938806, 42.760755212103618 ], [ -105.420217316003615, 42.760518215810706 ], [ -105.415349148284136, 42.759878229085331 ], [ -105.412709058398903, 42.759233236929362 ], [ -105.407955903585531, 42.75613525524728 ], [ -105.405491849119514, 42.745508284567798 ], [ -105.394879489047483, 42.738828327016286 ], [ -105.387371226842674, 42.737516349660154 ], [ -105.357875184979946, 42.738237424747034 ], [ -105.349894906220413, 42.736177451146162 ], [ -105.341768624131035, 42.732389483062704 ], [ -105.339785555193757, 42.731447490984927 ], [ -105.318772821065281, 42.722116575038321 ], [ -105.277397355935449, 42.71188972335235 ], [ -105.269524076780698, 42.707876759560712 ], [ -105.216673305022226, 42.673898955445829 ], [ -105.204015893287519, 42.656882024526105 ], [ -105.188489385508717, 42.644209079679264 ], [ -105.155658308397634, 42.634798133138503 ], [ -105.149769114471468, 42.632117146462441 ], [ -105.117633048737147, 42.608073254775654 ], [ -105.095567314082231, 42.595808314011443 ], [ -105.073990587178685, 42.575587403392824 ], [ -105.046745670278455, 42.560130479133669 ], [ -105.038497388762735, 42.551939515546536 ], [ -105.026045946219384, 42.521647639022156 ], [ -105.0259549392145, 42.517256655809796 ], [ -105.030288071959205, 42.502959707271643 ], [ -105.033508291895657, 42.48750977454214 ], [ -105.028976225688226, 42.478266821278062 ], [ -105.028427350393358, 42.462798894252117 ], [ -105.03491966409085, 42.452010938852517 ], [ -105.033470725715887, 42.440089995806034 ], [ -105.040116128738177, 42.419708083746343 ], [ -105.046708696555115, 42.380390257614025 ], [ -105.046785405343442, 42.301830619062834 ], [ -105.048975637206311, 42.28350069964516 ], [ -105.027658311760973, 42.238880895555191 ], [ -105.025789268483123, 42.230628899812878 ], [ -105.025224252774237, 42.229850900791021 ], [ -105.023019185159725, 42.230831904127946 ], [ -105.004708704415478, 42.192871924570653 ], [ -105.000313636607302, 42.158710917663569 ], [ -105.001160705238803, 42.135200911978359 ], [ -104.991677434418392, 42.117969865806913 ], [ -104.987664342996013, 42.10017784330131 ], [ -104.981087158237813, 42.089427811417885 ], [ -104.9664847358803, 42.074398744317342 ], [ -104.965316757726029, 42.051689737150468 ], [ -104.964836814647143, 42.023887732704658 ], [ -104.958427671092934, 42.005451705324788 ], [ -104.957687629356727, 41.99182179308665 ], [ -104.9534144465308, 41.977958931809013 ], [ -104.951667331378005, 41.962060103773652 ], [ -104.949119196488923, 41.94638927099755 ], [ -104.940016857889503, 41.923649497829082 ], [ -104.92157630321779, 41.906971631307933 ], [ -104.90100672857011, 41.897061685538681 ], [ -104.883131230194195, 41.883439795937164 ], [ -104.878332096100351, 41.878079846858 ], [ -104.875242005257221, 41.871289920072542 ], [ -104.870655876460063, 41.863653000079168 ], [ -104.813571440647578, 41.82029140213988 ], [ -104.796359041596816, 41.803682578858911 ], [ -104.793299975859441, 41.797502652450412 ], [ -104.791750956455971, 41.781812851783833 ], [ -104.795749054249484, 41.774961946716722 ], [ -104.808559348756646, 41.766074080941607 ], [ -104.826518749524652, 41.762091158915695 ], [ -104.829608817846179, 41.760394184826104 ], [ -104.831966869291691, 41.757010230581962 ], [ -104.829334826460794, 41.732813650610595 ], [ -104.836192991996029, 41.717112965190395 ], [ -104.836682009142507, 41.710594092821736 ], [ -104.829143853511383, 41.699474303130216 ], [ -104.830119883996673, 41.690010489170596 ], [ -104.843495217386987, 41.653573207341417 ], [ -104.863461720415174, 41.603575175920035 ], [ -104.898298607553997, 41.529567566323728 ], [ -104.899755650039708, 41.522956689523809 ], [ -104.896345568209014, 41.47903836335265 ], [ -104.877912093763442, 41.442509787731026 ], [ -104.868000750756579, 41.34920682066587 ], [ -104.866902715925136, 41.340329917841466 ], [ -104.838826034857135, 41.25458082167723 ], [ -104.837512994913368, 41.233138101238808 ], [ -104.837970995911078, 41.218482304562379 ], [ -104.837894973413157, 41.179786838530582 ], [ -104.840100004359769, 41.167473018912617 ], [ -104.838573966272605, 41.146393303282927 ], [ -104.841121999025731, 41.133572496062584 ], [ -104.849881125520326, 41.12256270640151 ], [ -104.8509791380839, 41.118595770365566 ], [ -104.850865131450561, 41.113957836023438 ], [ -104.850476110641495, 41.099580039034691 ], [ -104.851506113088817, 41.088182210184058 ], [ -104.854321144781551, 41.08192232283794 ], [ -104.859280204101722, 41.075853452031758 ], [ -104.871975352270212, 41.064153735514992 ], [ -104.884251492550277, 41.056333966208157 ], [ -104.896740591283901, 41.035853410959653 ], [ -104.90279061927059, 41.021921699437982 ], [ -104.906536606874951, 40.998214083087142 ], [ -104.923147201746417, 40.957071833066898 ], [ -104.922445237880055, 40.952723779226687 ], [ -104.934507787952498, 40.914614495309081 ], [ -104.943121030509275, 40.902907454088307 ], [ -104.948431197022501, 40.894472413744239 ], [ -104.991891476997566, 40.761884291018937 ], [ -104.994112047925327, 40.713361191045379 ], [ -104.99750722262965, 40.7037212234723 ], [ -105.000528386911014, 40.694673252839316 ], [ -105.001483162604757, 40.625844294471278 ], [ -105.001246638565448, 40.58093832405519 ], [ -105.001002872654269, 40.558423338592327 ], [ -104.991915941690692, 40.522908287027192 ], [ -104.991756035153088, 40.51318529142803 ], [ -104.992061379674169, 40.479642435194336 ], [ -104.993268133591513, 40.407243919682458 ], [ -104.993604437739606, 40.377531117035986 ], [ -104.983243241390255, 40.357222165667743 ], [ -104.981793260956351, 40.349444205116505 ], [ -104.980588351855403, 40.335192289313987 ], [ -104.98151966458849, 40.306444486284633 ], [ -104.98011640437916, 40.204428897859025 ], [ -104.980085407591389, 40.203623898533799 ], [ -104.979688628984988, 40.160704943553817 ], [ -104.980346059300146, 40.087665028083073 ], [ -104.980269059351983, 40.087093028336483 ], [ -104.980582513532553, 40.007266117474749 ], [ -104.980750555336314, 40.000945124978543 ], [ -104.981765599398528, 40.000453128932257 ], [ -104.98816695086515, 39.986083293317741 ], [ -104.98838003038145, 39.97491040834457 ], [ -104.987801354519519, 39.920108968668188 ], [ -104.989860475236725, 39.91418103175647 ], [ -104.990784554192288, 39.907601099746088 ], [ -104.987762493449694, 39.897961195725941 ], [ -104.987640569462442, 39.885205326482385 ], [ -104.987694649592243, 39.87291745252611 ], [ -104.987717684273107, 39.867596507095385 ], [ -104.987183735112154, 39.856205624121067 ], [ -104.984047706271511, 39.840954783204005 ], [ -104.983414765807368, 39.827610922044329 ], [ -104.983307828828302, 39.817033031861214 ], [ -104.984062939582003, 39.804361161957786 ], [ -104.989106224958078, 39.791086288839452 ], [ -104.989503310995488, 39.780004401144502 ], [ -104.990052381458355, 39.772329478082966 ], [ -104.994988604641435, 39.768068508263866 ], [ -104.999001773453472, 39.766588512228338 ], [ -105.004212978709646, 39.761266571507839 ], [ -105.012743272515337, 39.755117656574527 ], [ -105.016443404392902, 39.751550701985821 ], [ -105.018152482685437, 39.747499738483896 ], [ -105.013903405706856, 39.74062177254546 ], [ -105.015673517918444, 39.732457831444172 ], [ -105.013125490785555, 39.725671870197608 ], [ -105.00257324160998, 39.716295908118809 ], [ -104.998766149417179, 39.710992945218443 ], [ -104.996813099931714, 39.707311976537611 ], [ -104.994898046991437, 39.7043440028527 ], [ -104.987779791607835, 39.701472044815567 ], [ -104.986283745178923, 39.699904060227254 ], [ -104.973588335271558, 39.68910817377526 ], [ -104.962875956397141, 39.684679237534176 ], [ -104.959473825651713, 39.684634248480585 ], [ -104.948418400479682, 39.684523283811288 ], [ -104.94075811831209, 39.682932318613872 ], [ -104.937523003556578, 39.681742336839719 ], [ -104.933776888454275, 39.678255372310872 ], [ -104.924071628809585, 39.664946493263272 ], [ -104.918540521233439, 39.652911592433469 ], [ -104.90809528478151, 39.634688748905326 ], [ -104.901976149954521, 39.623946840941976 ], [ -104.885183789255791, 39.594745091324882 ], [ -104.876135595856198, 39.579669221580325 ], [ -104.872511591870534, 39.565990325562716 ], [ -104.870725631809535, 39.554893406343304 ], [ -104.868635734356758, 39.536132540028127 ], [ -104.867430863566767, 39.518028666519761 ], [ -104.874427253674966, 39.503066746709855 ], [ -104.872725390193736, 39.472709981375111 ], [ -104.87591469451489, 39.441288214665207 ], [ -104.879043839620792, 39.435379253536425 ], [ -104.878943878430135, 39.428444307403446 ], [ -104.86686656936871, 39.410557466869228 ], [ -104.861281449167421, 39.398819564422574 ], [ -104.859633421185791, 39.394188601549537 ], [ -104.861030557525055, 39.38005970508604 ], [ -104.86553179951153, 39.366002805247341 ], [ -104.890199045462651, 39.299341304824722 ], [ -104.895509283177333, 39.289529382410379 ], [ -104.897538421222123, 39.277811476261803 ], [ -104.89482240903169, 39.264589581112588 ], [ -104.883927132238867, 39.248769699440238 ], [ -104.877533916318214, 39.241769744795484 ], [ -104.878326933618723, 39.219339901714129 ], [ -104.874206796322028, 39.214670934517805 ], [ -104.859451310020049, 39.20551200233465 ], [ -104.850616020464344, 39.190882113697796 ], [ -104.850441014576191, 39.173300245366008 ], [ -104.861603369884662, 39.142520460602981 ], [ -104.863724434931072, 39.129801549867942 ], [ -104.866013504406922, 39.116660640893464 ], [ -104.862587392095051, 39.092440823084281 ], [ -104.855987183972516, 39.064411044963251 ], [ -104.851303039697669, 39.056503116976337 ], [ -104.846496892739651, 39.048305192890773 ], [ -104.833136489790817, 39.026313405183785 ], [ -104.817626032594589, 39.000011671180204 ], [ -104.812010497545543, 38.98450171155686 ], [ -104.801419718230477, 38.963142833709298 ], [ -104.80160257749057, 38.956691849142473 ], [ -104.807004615856314, 38.952503802540164 ], [ -104.812741656656797, 38.948291745750154 ], [ -104.812863470821682, 38.94036175270751 ], [ -104.812260281584969, 38.932979768581774 ], [ -104.815227968314602, 38.917202739906188 ], [ -104.824283964085808, 38.909584593324858 ], [ -104.829754743940867, 38.896804484210001 ], [ -104.835079545331567, 38.885532361368867 ], [ -104.834713297384624, 38.876323349823664 ], [ -104.832973051422641, 38.867954372121773 ], [ -104.833605822843012, 38.85883734043103 ], [ -104.831568585374484, 38.850776376352613 ], [ -104.829196291446223, 38.840530422974474 ], [ -104.829959208746104, 38.83695639773736 ], [ -104.834651028342932, 38.827995252153329 ], [ -104.835428850540978, 38.820926214804622 ], [ -104.829057653190944, 38.815677395513184 ], [ -104.822221567310862, 38.814777601317843 ], [ -104.813455457386894, 38.813549867860125 ], [ -104.801767144810569, 38.804394247777623 ], [ -104.79707492182105, 38.795991424434916 ], [ -104.78323444989374, 38.777772976279401 ], [ -104.775559160207877, 38.765012330113805 ], [ -104.764839963354646, 38.756471797769528 ], [ -104.732215858308578, 38.724494930887715 ], [ -104.729629852982754, 38.721476992411397 ], [ -104.71664509588885, 38.686523588028912 ], [ -104.708726119339929, 38.673015822100723 ], [ -104.702530095045518, 38.665172960938513 ], [ -104.693703180847578, 38.644387288670238 ], [ -104.687813394518443, 38.617856676557786 ], [ -104.68140536526964, 38.608483819699721 ], [ -104.66877033585952, 38.58658813535466 ], [ -104.656167208040145, 38.57131834723485 ], [ -104.631310139882928, 38.52016297950793 ], [ -104.625634216005579, 38.498370235591892 ], [ -104.607323095753287, 38.457118803267953 ], [ -104.605851137885381, 38.448230929800303 ], [ -104.608094413812864, 38.425610261379099 ], [ -104.619562030062681, 38.394909723997749 ], [ -104.618684120473873, 38.38274089892878 ], [ -104.620821333601853, 38.366761133570854 ], [ -104.6199744872373, 38.348023403700701 ], [ -104.61977555985122, 38.339772522913982 ], [ -104.617891571557053, 38.332780621475209 ], [ -104.615434569026064, 38.32550972329765 ], [ -104.61361968362489, 38.3077949774339 ], [ -104.611894715557753, 38.299067101521928 ], [ -104.606287654945419, 38.288027253830322 ], [ -104.604097717148164, 38.274527446639155 ], [ -104.605035778427052, 38.270945499864276 ], [ -104.605081845402879, 38.263952601351704 ], [ -104.60515889851321, 38.25853568002163 ], [ -104.609156068766808, 38.253027765210497 ], [ -104.611781196433711, 38.248114846600529 ], [ -104.612048248912586, 38.244158918322213 ], [ -104.614222537835246, 38.224246280370316 ], [ -104.621089821186743, 38.217235415624401 ], [ -104.628521126323008, 38.209800559111216 ], [ -104.633007453873233, 38.192649873762221 ], [ -104.634258680294195, 38.175934176412291 ], [ -104.636028782824582, 38.171543257664077 ], [ -104.643147112989141, 38.161164453182401 ], [ -104.667768183284934, 38.131776010995374 ], [ -104.672048480529767, 38.116945282411983 ], [ -104.674986621506591, 38.112306369105298 ], [ -104.705939941179111, 38.078165016333017 ], [ -104.714767384204833, 38.06270430292016 ], [ -104.72120766412317, 38.055216443910709 ], [ -104.728692058640377, 38.040537714529577 ], [ -104.732522325596406, 38.027407953385733 ], [ -104.756372371857424, 38.000026461678765 ], [ -104.773204092280906, 37.984836692794261 ], [ -104.781085463371952, 37.975108833998263 ], [ -104.791797926695736, 37.965427966476319 ], [ -104.800381314299941, 37.956478084619263 ], [ -104.806629714118571, 37.940617298248036 ], [ -104.816167066319167, 37.937237326673547 ], [ -104.81771614262351, 37.935177351686065 ], [ -104.828672807182969, 37.910939650845165 ], [ -104.828978069338419, 37.891117912784729 ], [ -104.828773178357679, 37.803389077268157 ], [ -104.835258844929115, 37.768469491421818 ], [ -104.835816062951963, 37.752921689831162 ], [ -104.796272626143093, 37.660430983581143 ], [ -104.774078028741869, 37.638993392307682 ], [ -104.76811888910386, 37.63072352860322 ], [ -104.759817704256491, 37.617840733004741 ], [ -104.719030993900432, 37.55368248735325 ], [ -104.692968589971528, 37.51560487638389 ], [ -104.688909510038272, 37.511644915966869 ], [ -104.675740197709572, 37.504251988334012 ], [ -104.670148159522739, 37.494990090464263 ], [ -104.660726335128885, 37.467456419155518 ], [ -104.638051380891085, 37.425173909256799 ], [ -104.623357292880343, 37.405414129108081 ], [ -104.575405841363533, 37.352855679081237 ], [ -104.556172872751674, 37.32048501466727 ], [ -104.517285438483299, 37.285016336723523 ], [ -104.507847406265455, 37.272588452822767 ], [ -104.499935564959827, 37.252026657735918 ], [ -104.498448672358961, 37.243726835905051 ], [ -104.494465646510378, 37.239125945146391 ], [ -104.491810699341883, 37.232046120331574 ], [ -104.497953690243079, 37.185107322383352 ], [ -104.499089780181023, 37.181769408430974 ], [ -104.511160271253345, 37.169646741285817 ], [ -104.511976360161796, 37.165488848526714 ], [ -104.515570528533601, 37.160201990660859 ], [ -104.51760761274771, 37.157822055598061 ], [ -104.519346703363723, 37.154636140303566 ], [ -104.519667936754217, 37.140968487574355 ], [ -104.521385098655685, 37.133308685692754 ], [ -104.520217211958325, 37.125019893203977 ], [ -104.521255424338946, 37.113389190478244 ], [ -104.524268624832857, 37.104661418682888 ], [ -104.518874680600362, 37.095201646175333 ], [ -104.522308871824777, 37.087380852372014 ], [ -104.518874912171228, 37.081262999584702 ], [ -104.51718905025119, 37.07123025006441 ], [ -104.519036185657185, 37.064962413252893 ], [ -104.523079327576582, 37.06040053829004 ], [ -104.522362474769963, 37.050722782024678 ], [ -104.519928497481345, 37.047022870180307 ], [ -104.501709476459212, 37.031993208710709 ], [ -104.496239506974703, 37.022113459506151 ], [ -104.483368216858764, 37.017081597446314 ], [ -104.480095267983884, 37.008601817016803 ], [ -104.482659496880871, 36.998753057151589 ], [ -104.480019433583166, 36.993862148560034 ], [ -104.484085579661198, 36.985394299911476 ], [ -104.478409449393595, 36.973003528056211 ], [ -104.474160378789847, 36.954933854949715 ], [ -104.465523177377335, 36.937314167137899 ], [ -104.459229007141985, 36.932195253541956 ], [ -104.452628837693908, 36.92390239346323 ], [ -104.450378790299453, 36.917714499031035 ], [ -104.44831873512328, 36.91588352850512 ], [ -104.442153570271685, 36.910329616834204 ], [ -104.43888848786645, 36.905812689866451 ], [ -104.434440359308454, 36.904935698438756 ], [ -104.430854264336801, 36.901433752461159 ], [ -104.424690084502004, 36.900766754159136 ], [ -104.430793313664552, 36.884955030968271 ], [ -104.440368671601249, 36.860495469280217 ], [ -104.441207715158967, 36.854395576211616 ], [ -104.444274889614618, 36.827125055123005 ], [ -104.442748882114614, 36.815017258285074 ], [ -104.438995866124031, 36.784507766428511 ], [ -104.45928254360517, 36.728348787814411 ], [ -104.462639636244319, 36.725338854061341 ], [ -104.472328906419463, 36.72081898598379 ], [ -104.474816971982676, 36.717477054170772 ], [ -104.494966442783948, 36.670877950264341 ], [ -104.493905386208112, 36.657668155730939 ], [ -104.500390536736546, 36.648249371475316 ], [ -104.501100527019275, 36.636198580754034 ], [ -104.510812748996187, 36.624400926902837 ], [ -104.534892311103505, 36.588649905459327 ], [ -104.539721365426317, 36.537781844467013 ], [ -104.594814383346389, 36.466052383494066 ], [ -104.595424137349539, 36.447844376684458 ], [ -104.596026276492609, 36.387133329856219 ], [ -104.601450261092126, 36.375014393128446 ], [ -104.603938138664603, 36.361415412003126 ], [ -104.606928087433971, 36.351691440378346 ], [ -104.626231048803049, 36.308623621605037 ], [ -104.659007296247097, 36.218475121313105 ], [ -104.687152412732758, 36.127236107818845 ], [ -104.687648522975664, 36.092564377501425 ], [ -104.696552997785119, 36.02502596622378 ], [ -104.697903050488605, 36.021967000234561 ], [ -104.710995517346731, 36.008676204361592 ], [ -104.735120325939349, 35.984865704629165 ], [ -104.86548128382509, 35.871289380147594 ], [ -104.926747623743125, 35.85082007038384 ], [ -104.950598511927979, 35.840021373949796 ], [ -104.964728016020899, 35.829321612933207 ], [ -104.973929325090481, 35.818541821114181 ], [ -104.990943803582653, 35.780280458288608 ], [ -104.99881706266963, 35.772056617265761 ], [ -105.02692477138612, 35.746162042073024 ], [ -105.09219624353382, 35.703522590087815 ], [ -105.100351458504434, 35.699932635518749 ], [ -105.165447317810418, 35.679974891250048 ], [ -105.176014607940104, 35.674912941255158 ], [ -105.180905725338718, 35.67074297687418 ], [ -105.185314807682133, 35.664453026342429 ], [ -105.202901049494002, 35.628320287673397 ], [ -105.204229068478327, 35.625520306870293 ], [ -105.20489207793824, 35.624112316467425 ], [ -105.205449086314715, 35.622972324212867 ], [ -105.21087412518969, 35.606904431236742 ], [ -105.213575125032648, 35.596513498953136 ], [ -105.223455175530532, 35.562944708881133 ], [ -105.224355170667792, 35.558683735003967 ], [ -105.229955164129365, 35.534432880004161 ], [ -105.232229207558873, 35.529832904794468 ], [ -105.236326327013245, 35.526353918970251 ], [ -105.246099658129452, 35.523435918603091 ], [ -105.249494758528314, 35.520532929288876 ], [ -105.264295925984541, 35.500024851872666 ], [ -105.272245972416286, 35.485483002043651 ], [ -105.279569826441005, 35.449183566196155 ], [ -105.300070061083431, 35.423823786043229 ], [ -105.318114248665793, 35.398326067202916 ], [ -105.321730304642287, 35.395415083796266 ], [ -105.327986426887989, 35.393535051580841 ], [ -105.347990852820018, 35.391894864243177 ], [ -105.398086997337757, 35.398195176102952 ], [ -105.421692495591088, 35.39578496678218 ], [ -105.461488372861808, 35.396974496762525 ], [ -105.477769754024294, 35.400834221824582 ], [ -105.517634567810106, 35.415482413378868 ], [ -105.538394836830818, 35.415524185371439 ], [ -105.550541021753659, 35.420913912390681 ], [ -105.593105596308689, 35.428870228016116 ], [ -105.599796689607629, 35.431411084201855 ], [ -105.615535926615976, 35.443861565651837 ], [ -105.634732192702032, 35.456288998575531 ], [ -105.64667236177803, 35.468350519128464 ], [ -105.668019627404689, 35.481178895804049 ], [ -105.689077061624758, 35.530688272559559 ], [ -105.707777363268804, 35.548517549331677 ], [ -105.717977499327361, 35.553362283448088 ], [ -105.733572676676914, 35.555597015260574 ], [ -105.750570897962263, 35.562684594995822 ], [ -105.754743989300181, 35.565957472706216 ], [ -105.771643413520849, 35.588264728894323 ], [ -105.773734460733138, 35.590152660608808 ], [ -105.778624551958828, 35.591385588017829 ], [ -105.783728627177624, 35.589355603132375 ], [ -105.793547732545306, 35.578926811339578 ], [ -105.798133756745486, 35.569905022700588 ], [ -105.803565811675185, 35.563584153457022 ], [ -105.816382998666782, 35.558217200191898 ], [ -105.824295081352176, 35.549473378653104 ], [ -105.850715459868368, 35.537354506100982 ], [ -105.857818585165049, 35.538026432174206 ], [ -105.871689869418574, 35.545945105146785 ], [ -105.878739040867771, 35.554474814130486 ], [ -105.887933285735613, 35.569152335762055 ], [ -105.898316524977602, 35.579543966036333 ], [ -105.902200649397813, 35.589251666256608 ], [ -105.917414058701723, 35.614320849765669 ], [ -105.921167186689232, 35.625013522855369 ], [ -105.925974315310654, 35.632833267062594 ], [ -105.930582415538055, 35.636491128346371 ], [ -105.934511489243221, 35.637655064353218 ], [ -105.950357752996524, 35.636792960736692 ], [ -105.956583844265623, 35.634404977139134 ], [ -105.984431257167984, 35.624578027623961 ], [ -106.002963523219051, 35.619913022093776 ], [ -106.029262679823091, 35.609422250072008 ], [ -106.035129699136277, 35.605222356262068 ], [ -106.042903731279154, 35.600885463182159 ], [ -106.053157782779493, 35.59679255910364 ], [ -106.165652835055141, 35.522163690347057 ], [ -106.171397852964802, 35.520973725947044 ], [ -106.196773998882236, 35.521675692711796 ], [ -106.21657908137496, 35.519745748213396 ], [ -106.242626057331066, 35.507775141984361 ], [ -106.248623009936779, 35.502190330508121 ], [ -106.266033339042821, 35.486184622683311 ], [ -106.360311834066763, 35.447175969347022 ], [ -106.38931110504241, 35.426355406759235 ], [ -106.41486229293767, 35.412317694055545 ], [ -106.41884430377057, 35.408727786325827 ], [ -106.449545469774975, 35.395266062506835 ], [ -106.504820314827029, 35.351189334420617 ], [ -106.521078360651956, 35.33443883476366 ], [ -106.531538352012717, 35.321561234057846 ], [ -106.534025309047635, 35.316060416145788 ], [ -106.534216287810636, 35.314557468586599 ], [ -106.535917176194786, 35.305856769100338 ], [ -106.539549157657149, 35.300546938921009 ], [ -106.550459088156771, 35.283930475017875 ], [ -106.564015920354123, 35.258807306373029 ], [ -106.573964677055642, 35.217941583326031 ], [ -106.57718461570019, 35.20406800450661 ], [ -106.577748602245364, 35.201329087998033 ], [ -106.581708523586286, 35.183923616726162 ], [ -106.583966477336261, 35.173848922905556 ], [ -106.58650742378579, 35.162348272575485 ], [ -106.588513382189873, 35.153353545946786 ], [ -106.59153535632035, 35.144022824943612 ], [ -106.609700592445947, 35.132816089357092 ], [ -106.621007731548687, 35.124999280330549 ], [ -106.625089714883799, 35.114574588427622 ], [ -106.629094712630547, 35.105964839772966 ], [ -106.633290693571979, 35.095059162377822 ], [ -106.634664685789801, 35.091316273411216 ], [ -106.63630466292804, 35.085308454383338 ], [ -106.636807650206052, 35.082817530277829 ], [ -106.637387634496676, 35.079827621490118 ], [ -106.637578629556771, 35.078869650689136 ], [ -106.638684630895966, 35.07672571272397 ], [ -106.640050618137707, 35.072441840792735 ], [ -106.639600589304266, 35.070099916648537 ], [ -106.639386564676059, 35.067745991729879 ], [ -106.638730509932472, 35.062887147757166 ], [ -106.638150474703608, 35.060087238656415 ], [ -106.637998443318409, 35.056836341649223 ], [ -106.638021356081154, 35.046876654796755 ], [ -106.638410154064729, 35.023119400120599 ], [ -106.658124283938591, 34.959000282836087 ], [ -106.661954353022097, 34.953179444930299 ], [ -106.668004466947565, 34.951401474719141 ], [ -106.693509950745053, 34.948052475219747 ], [ -106.698805051520338, 34.946576500095482 ], [ -106.70659520126155, 34.939988675784669 ], [ -106.714445354045139, 34.93293086783526 ], [ -106.717329411563682, 34.928182006930278 ], [ -106.724775569822057, 34.902322799252353 ], [ -106.72899466631911, 34.88155244550601 ], [ -106.734991795450611, 34.87003979526488 ], [ -106.747886079971536, 34.84647351725183 ], [ -106.752242186977242, 34.835266862521976 ], [ -106.76046739965193, 34.816075438049246 ], [ -106.758910365040762, 34.813546527491276 ], [ -106.760612404755193, 34.813954505752683 ], [ -106.762122441535723, 34.812314551088249 ], [ -106.766547552491133, 34.801800868919379 ], [ -106.786667031410829, 34.753775336221572 ], [ -106.787566932944486, 34.726257096600271 ], [ -106.78975691911063, 34.713936420278429 ], [ -106.795936834560706, 34.670586565917056 ], [ -106.796783800884398, 34.660348839091377 ], [ -106.794479706832888, 34.651548086422203 ], [ -106.784125404920346, 34.635546561283682 ], [ -106.781486338449099, 34.633509627120397 ], [ -106.78283636012965, 34.632078660237639 ], [ -106.797950233883824, 34.54385898260773 ], [ -106.832441843463215, 34.428084279208264 ], [ -106.838789921636263, 34.4184644132297 ], [ -106.853179176211853, 34.398826673224541 ], [ -106.873733603040222, 34.362076175253293 ], [ -106.879958642962265, 34.330174668237134 ], [ -106.9238673154032, 34.21204553417688 ], [ -106.924798297276922, 34.189645453804133 ], [ -106.919022915544517, 34.161966394168253 ], [ -106.899490711290426, 34.098584252091463 ], [ -106.893066310387937, 34.076455186492872 ], [ -106.888778059306063, 34.067247162162289 ], [ -106.887281948292397, 34.056295120311468 ], [ -106.889159000392496, 34.041154051294363 ], [ -106.894050198700413, 34.022350962427645 ], [ -106.895126203374815, 34.005264891013802 ], [ -106.89319507157964, 33.989685870990265 ], [ -106.878882193118443, 33.921715898138366 ], [ -106.879461217222627, 33.917755896772825 ], [ -106.878019137465245, 33.91710790080333 ], [ -106.880072247859744, 33.91632589514245 ], [ -106.929428889662461, 33.823265688385206 ], [ -107.028447544502868, 33.721016548893978 ], [ -107.087147084793273, 33.664415144493539 ], [ -107.121342177369158, 33.637056405610153 ], [ -107.150547385711178, 33.609945724866456 ], [ -107.220655510831037, 33.478130904881439 ], [ -107.234182775559489, 33.45361020249937 ], [ -107.245429036117969, 33.43941935591598 ], [ -107.250586147790216, 33.429699480191267 ], [ -107.295652857933121, 33.327329983869816 ], [ -107.29547684181243, 33.324271032777297 ], [ -107.291341800251132, 33.317252159501081 ], [ -107.291616749858434, 33.307181317771054 ], [ -107.28868669450415, 33.296500498874138 ], [ -107.275716628269208, 33.2832407649732 ], [ -107.265302490840625, 33.250053345442538 ], [ -107.256817465028988, 33.224014177149471 ], [ -107.255802813886703, 33.207683049330136 ], [ -107.253223276669985, 33.19438094803423 ], [ -107.253099979401824, 33.161971683564346 ], [ -107.253244813169033, 33.157797649381614 ], [ -107.253709619662928, 33.152892609171403 ], [ -107.255922503206747, 33.149641582198292 ], [ -107.28188394489014, 33.130778446544994 ], [ -107.296143717514752, 33.121771399182528 ], [ -107.298828428544567, 33.113322350218432 ], [ -107.30729667513917, 33.090460230841586 ], [ -107.309561336411605, 33.052611022860496 ], [ -107.318508710012793, 33.003320801501118 ], [ -107.318493591550094, 32.999631793279498 ], [ -107.312908374770757, 32.983389083342743 ], [ -107.315189186241724, 32.953619699882061 ], [ -107.314823100240176, 32.943121908524958 ], [ -107.319134015816545, 32.922603361645628 ], [ -107.318873891096771, 32.906791680202318 ], [ -107.317058820474571, 32.901481770006953 ], [ -107.310382652999039, 32.894073852075302 ], [ -107.294978266900344, 32.877041027178599 ], [ -107.287738000471208, 32.85786531783468 ], [ -107.288980680916808, 32.813104194076963 ], [ -107.282778483044495, 32.800653350746842 ], [ -107.259110932622491, 32.780103408046564 ], [ -107.245202585744551, 32.767484604946105 ], [ -107.231690167892793, 32.750094147069341 ], [ -107.205848433297021, 32.724045549702126 ], [ -107.187430833124125, 32.697087827855249 ], [ -107.180228614543964, 32.689119225876091 ], [ -107.174727471732126, 32.686247411817234 ], [ -107.154700010254373, 32.68347780885253 ], [ -107.14060069090695, 32.682349057618751 ], [ -107.102040784962114, 32.676028841230995 ], [ -107.071156116072885, 32.677769236078646 ], [ -107.059345839793963, 32.6762694576501 ], [ -107.037326315540511, 32.672729891053578 ], [ -107.01182073384669, 32.6715102986172 ], [ -107.004000531927389, 32.668870491924004 ], [ -106.962006917222993, 32.626533158047145 ], [ -106.914351579246329, 32.536665251751693 ], [ -106.898015535349003, 32.485439867475719 ], [ -106.872257366101167, 32.44999802820697 ], [ -106.8500934892933, 32.431356707774995 ], [ -106.824289467240177, 32.410078486939071 ], [ -106.808091745661599, 32.390239149578647 ], [ -106.77788546329819, 32.359341220769593 ], [ -106.769600073047627, 32.347821595977074 ], [ -106.747305954508747, 32.313962651422159 ], [ -106.738882294341465, 32.287005357036371 ], [ -106.728734513467586, 32.255966158648768 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I255\", \"DIST_MILES\": 31.240000, \"DIST_KM\": 50.280000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -90.045362734662234, 38.757510514987963 ], [ -90.044034707713536, 38.744418628997167 ], [ -90.039197640015985, 38.732718701597769 ], [ -90.027501330362639, 38.720949714240419 ], [ -90.024327280848553, 38.713919755779905 ], [ -90.026311417826534, 38.706457847299021 ], [ -90.030461629608311, 38.699179956075909 ], [ -90.032071920561904, 38.672950229974752 ], [ -90.033163088339847, 38.658450383086929 ], [ -90.036024242032113, 38.652500467025334 ], [ -90.039702404479641, 38.648780536001347 ], [ -90.065276433962637, 38.633960905585944 ], [ -90.068938590619638, 38.630760969008556 ], [ -90.069160702390803, 38.61892408739147 ], [ -90.07467694542197, 38.613251191120071 ], [ -90.081421220429235, 38.608811293295389 ], [ -90.091828729951331, 38.592122547170241 ], [ -90.107911372146802, 38.582840777015988 ], [ -90.134104456273192, 38.562971196515008 ], [ -90.139948686904404, 38.559797277635404 ], [ -90.156070294539774, 38.554334469176993 ], [ -90.162479549593812, 38.550542560926772 ], [ -90.191502699545609, 38.533700972201814 ], [ -90.197514956292324, 38.527926079188532 ], [ -90.202527264142361, 38.511767277345463 ], [ -90.218993063267249, 38.485632591696969 ], [ -90.224005371305992, 38.471152700147314 ], [ -90.274864941600043, 38.486404014120986 ], [ -90.291573444427286, 38.490783094531871 ], [ -90.302537764368566, 38.494892142035972 ], [ -90.317407196723977, 38.500854201496203 ], [ -90.330789622094017, 38.502143271206911 ], [ -90.33946489009773, 38.503845307675327 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I26\", \"DIST_MILES\": 258.670000, \"DIST_KM\": 416.290000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -81.110108813001162, 34.003951040693572 ], [ -81.106850833577354, 33.980941267019922 ], [ -81.106583832847491, 33.978546283933873 ], [ -81.093147437870769, 33.956264786293822 ], [ -81.0877083065336, 33.940063989539219 ], [ -81.077132959278643, 33.933182320869442 ], [ -81.073150829451961, 33.930424442820097 ], [ -81.070815761859038, 33.926651514643787 ], [ -81.067687672353287, 33.921383608775066 ], [ -81.061370469559975, 33.91644779233058 ], [ -81.051009144073731, 33.906843081372479 ], [ -81.038511786463715, 33.887304393597752 ], [ -81.036688750627604, 33.880605427758816 ], [ -81.034842722259711, 33.871969456198897 ], [ -81.01843834260012, 33.827253713979843 ], [ -80.988645787074148, 33.783754860401338 ], [ -80.983365762942924, 33.778470816199373 ], [ -80.97057170332053, 33.767004722996802 ], [ -80.964101657814226, 33.764623692551602 ], [ -80.958081615530205, 33.762525665665777 ], [ -80.948590567351829, 33.756193615908657 ], [ -80.943685559504729, 33.750185584057576 ], [ -80.920423579554694, 33.712003361615139 ], [ -80.911687607188725, 33.692613256329459 ], [ -80.897557580396381, 33.672285131356794 ], [ -80.885747550909997, 33.655164025744789 ], [ -80.866384537536675, 33.616543806649616 ], [ -80.859021535341356, 33.599743713807115 ], [ -80.850644498461719, 33.587094635316184 ], [ -80.823667304869332, 33.558674433506233 ], [ -80.797971113005715, 33.52667321794182 ], [ -80.77067984875481, 33.502064027526927 ], [ -80.753041139353115, 33.476124691073764 ], [ -80.749791161519525, 33.473233773880729 ], [ -80.729367261541753, 33.457723970282487 ], [ -80.719342352151202, 33.449206541659869 ], [ -80.661771883467679, 33.409677123281988 ], [ -80.643766231627055, 33.393957817022631 ], [ -80.598417957014036, 33.365028090900559 ], [ -80.54779158222135, 33.31847094673968 ], [ -80.542709789614179, 33.313232986744843 ], [ -80.522195681079097, 33.291890056261153 ], [ -80.513185917735399, 33.286813079932678 ], [ -80.503916151593231, 33.282010092836906 ], [ -80.481196538206731, 33.2648211321616 ], [ -80.456652870237477, 33.236722681117811 ], [ -80.432032538076442, 33.226721270150165 ], [ -80.423632453146297, 33.221662518554737 ], [ -80.387789286661175, 33.188823891251062 ], [ -80.349138063621027, 33.156495231722218 ], [ -80.313050656124631, 33.138285104258024 ], [ -80.310311622074479, 33.137095164070907 ], [ -80.309594595069925, 33.137827150572619 ], [ -80.30755759087404, 33.13572522892045 ], [ -80.291291402476773, 33.127905601463006 ], [ -80.271791185717532, 33.118087053633381 ], [ -80.232758388132709, 33.094517102089704 ], [ -80.20882350505704, 33.08292868736882 ], [ -80.168242132657298, 33.056199776080454 ], [ -80.1485115537361, 33.03818037460811 ], [ -80.137441250167811, 33.026861720195491 ], [ -80.099711959487308, 33.002933522081932 ], [ -80.088557659507828, 32.993038818509802 ], [ -80.079455454285139, 32.984143081807943 ], [ -80.07744148403151, 32.978962209595473 ], [ -80.075374674251847, 32.966782489498684 ], [ -80.071772674691928, 32.960163658251645 ], [ -80.06002342847961, 32.949864959847446 ], [ -80.051745316174333, 32.940603211867661 ], [ -80.043261333904894, 32.92638956623172 ], [ -80.031138152494222, 32.915124875527823 ], [ -80.024051193734891, 32.903449158802708 ], [ -80.020640205988997, 32.898276284699662 ], [ -80.019061278434023, 32.893477392131715 ], [ -80.020266562345768, 32.884707565958593 ], [ -80.018428619026849, 32.88020966806301 ], [ -80.012629608925238, 32.873095843445036 ], [ -80.008113549034604, 32.869555938179808 ], [ -79.999583347640922, 32.866176046808697 ], [ -79.987872325713397, 32.853141271060387 ], [ -79.986369463167776, 32.846324403830153 ], [ -79.980662340634382, 32.843563441168037 ], [ -79.969584003193106, 32.841705443062366 ], [ -79.957811800837192, 32.83333957513414 ], [ -79.953630869343968, 32.824508741401679 ], [ -79.954951052041807, 32.819088855742699 ], [ -79.954173124755627, 32.814983936779143 ], [ -79.949916083535371, 32.810135022236047 ], [ -79.947444166548308, 32.802815163652873 ], [ -79.94297312481919, 32.797314262106063 ] ], [ [ -82.611536041156086, 35.554481929962591 ], [ -82.604401480227352, 35.54529224370166 ], [ -82.60366917137334, 35.536560383452866 ], [ -82.595230407286351, 35.522881793395818 ], [ -82.588309866744311, 35.514482090705009 ], [ -82.571302960717333, 35.507020639346123 ], [ -82.568754641523, 35.500452796856734 ], [ -82.563627397968958, 35.494921015270201 ], [ -82.56164327436835, 35.486994187740017 ], [ -82.556241041213738, 35.481951403458126 ], [ -82.549717725595897, 35.467734783171231 ], [ -82.542851435168799, 35.458583091834043 ], [ -82.541340345563228, 35.450183253082606 ], [ -82.535702112596923, 35.440815529335872 ], [ -82.532443985511776, 35.436424672901367 ], [ -82.529514862503078, 35.429187848561334 ], [ -82.523273620839419, 35.416974173507036 ], [ -82.512309238929703, 35.402165641965993 ], [ -82.507472084231694, 35.399266795803499 ], [ -82.497996798777478, 35.396276026186875 ], [ -82.49249565550501, 35.392755101626925 ], [ -82.48519446676292, 35.381796261697289 ], [ -82.475764231638777, 35.375757351477858 ], [ -82.459253836412472, 35.360616494038638 ], [ -82.455438751632528, 35.354055534013334 ], [ -82.452691691751937, 35.349493556706527 ], [ -82.443033472079605, 35.344247559109547 ], [ -82.439904404244587, 35.341226560994407 ], [ -82.427423149368934, 35.32601754190717 ], [ -82.415276930541381, 35.306654460211149 ], [ -82.403160713458604, 35.293035315137359 ], [ -82.3996136739799, 35.283075243538335 ], [ -82.398018649256997, 35.280790214965485 ], [ -82.386009423792117, 35.275495025169008 ], [ -82.379021278660346, 35.276105929216079 ], [ -82.374817198897389, 35.274815860132243 ], [ -82.368508091184154, 35.270634734394818 ], [ -82.365036052336706, 35.264515627486418 ], [ -82.357551913772809, 35.262616487478233 ], [ -82.353172859205529, 35.256886353147394 ], [ -82.348830786706586, 35.254750252807483 ], [ -82.335693557548083, 35.249363957932836 ], [ -82.324462337777092, 35.248844752128157 ], [ -82.317336185089601, 35.246402630406699 ], [ -82.306067973643266, 35.247745417496176 ], [ -82.290640667109187, 35.253284188118627 ], [ -82.280424493790605, 35.249773933312461 ], [ -82.262282113678054, 35.24710361568777 ], [ -82.256460006570791, 35.247653504747554 ], [ -82.243367702832245, 35.254061557010388 ], [ -82.22131814050519, 35.253832828898261 ], [ -82.213543963306279, 35.25200187486891 ], [ -82.209133862129562, 35.249194883876683 ], [ -82.206211739163948, 35.245345951411743 ], [ -82.204395555586018, 35.234481061358139 ], [ -82.196430205334423, 35.222793257662993 ], [ -82.192722061710796, 35.218887337281473 ], [ -82.185695826693518, 35.214420464932353 ], [ -82.180194558692065, 35.204277620439861 ], [ -82.167895114036256, 35.193817869806907 ], [ -82.159388794575733, 35.185635052087044 ], [ -82.15825173272961, 35.183026089509205 ], [ -82.150637461386481, 35.176854244411537 ], [ -82.132546868546626, 35.166283580620792 ], [ -82.117829342307985, 35.154194888791132 ], [ -82.104935800985288, 35.137235220405941 ], [ -82.08792910675551, 35.116415651005724 ], [ -82.068053223040039, 35.086325219692526 ], [ -82.062178003844082, 35.080756358361718 ], [ -82.05403768375642, 35.071738564409316 ], [ -82.046827245886746, 35.051509868505242 ], [ -82.035916751011527, 35.034187202916513 ], [ -82.035229642211718, 35.02693928538892 ], [ -82.03358146087993, 35.015869420716378 ], [ -82.020275906292099, 34.999168811868593 ], [ -82.020511750653966, 34.991097050195471 ], [ -82.018978607807227, 34.986077225537436 ], [ -82.010471194531377, 34.977837614909269 ], [ -82.006587984372203, 34.97345081437507 ], [ -82.005503835855436, 34.968270992152839 ], [ -82.001109320039262, 34.951799578583376 ], [ -82.001071127282387, 34.943540835497124 ], [ -81.999803998716018, 34.939890972684665 ], [ -81.996103871135219, 34.936202198648459 ], [ -81.990205648831633, 34.929332587962129 ], [ -81.988878464850401, 34.921851858183665 ], [ -81.992241944739462, 34.897640506404905 ], [ -81.993668703996789, 34.886631805451472 ], [ -81.990952468430535, 34.877263172973159 ], [ -81.987145235410907, 34.868192560996214 ], [ -81.976898833319098, 34.853045313968735 ], [ -81.971717526716645, 34.840254847687724 ], [ -81.971878467027267, 34.837454928329237 ], [ -81.970771473466854, 34.838003942215487 ], [ -81.963661055802191, 34.819846686687114 ], [ -81.95529031301075, 34.785225951886325 ], [ -81.953909114027041, 34.77560527627405 ], [ -81.954961528084937, 34.747289974036427 ], [ -81.953954298704787, 34.736917860018039 ], [ -81.943737890473813, 34.714166827018836 ], [ -81.938168318936391, 34.680108537518493 ], [ -81.927868246715065, 34.663797622710476 ], [ -81.912510294293227, 34.639558774176692 ], [ -81.901608396412001, 34.617696845132151 ], [ -81.892353605455739, 34.603387966845453 ], [ -81.891590587012061, 34.596563914524658 ], [ -81.893620377644112, 34.578736651499312 ], [ -81.890904369291022, 34.559938529373696 ], [ -81.8824056379826, 34.529958482972226 ], [ -81.877232898601847, 34.522473578046025 ], [ -81.870328277526184, 34.513246717380035 ], [ -81.844306035581695, 34.496897536917089 ], [ -81.829850417615077, 34.485084218888133 ], [ -81.798625887770669, 34.462899640546297 ], [ -81.769063736418232, 34.443780956896333 ], [ -81.755567420043803, 34.436812531010951 ], [ -81.737104458983197, 34.430545253456948 ], [ -81.721159185997536, 34.424842870277828 ], [ -81.70051393875103, 34.408272779883859 ], [ -81.681882849936173, 34.380704736113088 ], [ -81.663083626686742, 34.36234555034811 ], [ -81.609325679763785, 34.331128527635869 ], [ -81.574535020030865, 34.311140738050135 ], [ -81.51770988539765, 34.276131617236153 ], [ -81.498933510082708, 34.259751234278866 ], [ -81.473572557436356, 34.243814029479957 ], [ -81.449043612735878, 34.235193722332248 ], [ -81.424933741483656, 34.224864380721243 ], [ -81.398969840491887, 34.216236095493613 ], [ -81.374822071518693, 34.206135733900659 ], [ -81.354115490613907, 34.194955250442256 ], [ -81.321491695248724, 34.176367032980338 ], [ -81.304782249866477, 34.171381467105441 ], [ -81.249834016425297, 34.150985822671622 ], [ -81.237977824824355, 34.145778892308158 ], [ -81.210267360669576, 34.133129133712195 ], [ -81.174501082146421, 34.098950649924284 ], [ -81.151207828643336, 34.076505209406307 ], [ -81.110596253893021, 34.036719615776697 ], [ -81.100441076432134, 34.027042048996314 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I26  N\", \"DIST_MILES\": 1.740000, \"DIST_KM\": 2.800000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -81.100441076432134, 34.027042048996314 ], [ -81.103150221954905, 34.02396700772735 ], [ -81.110321701361016, 34.010733948537045 ], [ -81.110108813001162, 34.003951040693572 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I264\", \"DIST_MILES\": 35.580000, \"DIST_KM\": 57.260000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -85.809428030742708, 38.275753606842883 ], [ -85.808206899927043, 38.268109881506966 ], [ -85.804994727631183, 38.260766169193509 ], [ -85.807313638013781, 38.249868505271174 ], [ -85.814203728860164, 38.243169378826579 ], [ -85.820802766081144, 38.231977242518767 ], [ -85.823098626933273, 38.213037116701145 ], [ -85.82673067637441, 38.210069079549058 ], [ -85.827806664386614, 38.206579056502171 ], [ -85.827287589500855, 38.200315028318585 ], [ -85.830575572764801, 38.191735976374233 ], [ -85.830064534036069, 38.189015965607126 ], [ -85.826211422148063, 38.18608596046127 ], [ -85.813218133324455, 38.184815978744631 ], [ -85.786865595375801, 38.187177054868478 ], [ -85.783585542982166, 38.189088084208663 ], [ -85.757354993872127, 38.190332170122829 ], [ -85.745147747744767, 38.189340135470196 ], [ -85.729926502043952, 38.190000026422616 ], [ -85.72681345206874, 38.190137004468205 ], [ -85.714904270561405, 38.191403936985253 ], [ -85.707717201268821, 38.195225964707987 ], [ -85.701102154778951, 38.199666017144693 ], [ -85.687017973021241, 38.202168983800043 ], [ -85.671370884597707, 38.211355125728581 ], [ -85.650686774323887, 38.221414308175774 ], [ -85.62492271309327, 38.234723633146096 ], [ -85.6231067575266, 38.237821729170527 ], [ -85.619413977422397, 38.249922119121834 ], [ -85.619124993871992, 38.253550009580763 ], [ -85.623008062529408, 38.259298821834726 ], [ -85.623603093600892, 38.264371655055271 ], [ -85.626136144186219, 38.268934505351346 ], [ -85.636222316107663, 38.279771148957678 ], [ -85.647925515137857, 38.290203803299676 ] ], [ [ -76.398593878928921, 36.787991691343414 ], [ -76.384807658341671, 36.796002601196072 ], [ -76.356646144382267, 36.808003442499228 ], [ -76.351619055016727, 36.81053941166256 ], [ -76.347438009141825, 36.815499368549681 ], [ -76.33928987173357, 36.82066031193304 ], [ -76.333139738615586, 36.821671286837876 ], [ -76.326715626566397, 36.825588242992424 ], [ -76.316797426513034, 36.828961191673365 ], [ -76.306406194205422, 36.830090152746422 ], [ -76.294831948673561, 36.832901099729739 ], [ -76.292893908022236, 36.833439090427326 ], [ -76.287927812394585, 36.835877059961085 ], [ -76.28698881706346, 36.839123036787683 ], [ -76.286797817889578, 36.839771032149137 ], [ -76.285973820846607, 36.842503012528979 ], [ -76.28540981629294, 36.843575004084805 ], [ -76.283540787118383, 36.845416986789388 ], [ -76.279450687339633, 36.845012976692487 ], [ -76.267815411663193, 36.844768942375765 ], [ -76.243873883785682, 36.845760904302146 ], [ -76.228119560472095, 36.842036996433158 ], [ -76.224785497028819, 36.841927011572302 ], [ -76.210380235813389, 36.84322806295949 ], [ -76.196387988648453, 36.845299104221041 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I265\", \"DIST_MILES\": 35.820000, \"DIST_KM\": 57.650000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -86.80090205048046, 36.174205418173806 ], [ -86.800696017760941, 36.180014235674768 ], [ -86.798185953103641, 36.184134098710075 ], [ -86.789122760993806, 36.19075686241483 ], [ -86.775671515302832, 36.19271675802996 ] ], [ [ -85.581762783671095, 38.314892007138567 ], [ -85.568152584654655, 38.307167261167045 ], [ -85.555548412316682, 38.301979431085265 ], [ -85.533880126262503, 38.28888085278669 ], [ -85.514157887582869, 38.286396932307049 ], [ -85.504636773864888, 38.285340965772157 ], [ -85.500592728161806, 38.28135109136025 ], [ -85.501050746239386, 38.261400719317571 ], [ -85.503758512451995, 38.242055698230871 ], [ -85.505680894500685, 38.222893799990921 ], [ -85.508708812839728, 38.188972229419321 ], [ -85.507396549513686, 38.181696878367326 ], [ -85.516307399651382, 38.172259526866164 ], [ -85.523135184609345, 38.161486112920251 ], [ -85.542148144468584, 38.147657743735714 ], [ -85.570544526159523, 38.139775811630798 ], [ -85.582530802529291, 38.140429006010045 ], [ -85.59087691625281, 38.13772802539615 ], [ -85.606220022827429, 38.127797904616457 ], [ -85.614819132699367, 38.123876908468141 ], [ -85.64237663471701, 38.116648137372216 ], [ -85.660886048524688, 38.114866403994341 ], [ -85.667668166527562, 38.112108447351623 ], [ -85.675237330161508, 38.110743545533275 ], [ -85.683583533588958, 38.110594690423504 ], [ -85.701727040658199, 38.115085114967457 ] ], [ [ -85.706299702127382, 38.345820915130062 ], [ -85.715508871918018, 38.349688777060862 ], [ -85.723855012498177, 38.351477709718338 ], [ -85.732789113810469, 38.34820081476358 ], [ -85.754304459135483, 38.345652841052747 ], [ -85.769014856160709, 38.345270689641012 ], [ -85.798784651389141, 38.343981400654521 ], [ -85.806330829523461, 38.341921386434947 ], [ -85.817912064546391, 38.336176452226141 ], [ -85.823428176967155, 38.33363247677638 ], [ -85.83811541743674, 38.323294662364411 ], [ -85.844554417725618, 38.312056970525994 ], [ -85.849979464052879, 38.305957115493392 ], [ -85.850017424971739, 38.303333203929945 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I27\", \"DIST_MILES\": 125.090000, \"DIST_KM\": 201.310000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -101.836065996447459, 35.198893932412524 ], [ -101.837157108083801, 35.192634007851986 ], [ -101.838667275335126, 35.182781127032875 ], [ -101.842185472108255, 35.177352200368418 ], [ -101.848471726088718, 35.176544227059253 ], [ -101.852423880347445, 35.176532237948052 ], [ -101.866066481198132, 35.170044357534493 ], [ -101.871833771742317, 35.163765455610914 ], [ -101.88386638316932, 35.149864679003699 ], [ -101.901804288134414, 35.128983035804154 ], [ -101.906030518733814, 35.122197149970482 ], [ -101.909555706337741, 35.116952240813411 ], [ -101.919070499921176, 35.073575917735113 ], [ -101.919459949811042, 35.029646560209486 ], [ -101.882295774668975, 34.984651913164605 ], [ -101.875787490874501, 34.97677097681693 ], [ -101.853379558529596, 34.949637159947514 ], [ -101.849236381365458, 34.942107224747367 ], [ -101.847915373734622, 34.748133061755077 ], [ -101.847785921840355, 34.721388503363777 ], [ -101.828054329888246, 34.649878303519237 ], [ -101.795993606473573, 34.579501867166833 ], [ -101.795901827565942, 34.529190718677185 ], [ -101.791048559185413, 34.516972834885117 ], [ -101.787576715001407, 34.462893210548089 ], [ -101.743690117167915, 34.340184470912206 ], [ -101.732680261638535, 34.312853363377641 ], [ -101.710323569744119, 34.260189051765757 ], [ -101.708911993458045, 34.233330882486868 ], [ -101.710003019063606, 34.23242290894143 ], [ -101.735882585684692, 34.20998155923013 ], [ -101.748920822150396, 34.197240926851016 ], [ -101.749577618033058, 34.187533221173958 ], [ -101.750607366230909, 34.175372592076947 ], [ -101.749209971027781, 34.160957030610952 ], [ -101.748820225988311, 34.130264965530841 ], [ -101.781779177949531, 34.10469632434264 ], [ -101.83105035052175, 34.078216127355624 ], [ -101.8415023594372, 34.071254567466063 ], [ -101.84369930336527, 34.067257746365797 ], [ -101.844203084242821, 34.057347091935128 ], [ -101.852434957558884, 34.045918650081433 ], [ -101.853754865464921, 34.040936847921607 ], [ -101.853576582445143, 33.852830361596141 ], [ -101.851355468917319, 33.848321401704816 ], [ -101.841430135672709, 33.839181430683333 ], [ -101.840894934164496, 33.827287607574654 ], [ -101.840727806347743, 33.819543724892974 ], [ -101.83737761482567, 33.811643817933835 ], [ -101.836148566311024, 33.748663794939844 ], [ -101.839406156071561, 33.726573130943251 ], [ -101.838207961249566, 33.718654243883769 ], [ -101.83977964365431, 33.702403485750111 ], [ -101.836437319189542, 33.690543654590108 ], [ -101.836138846000068, 33.668883974388983 ], [ -101.837962490129215, 33.650581244576358 ], [ -101.836824973997793, 33.627754581659154 ], [ -101.838304925797516, 33.624035634599856 ], [ -101.843385907091175, 33.618054714600234 ], [ -101.846941887689439, 33.613552773642702 ], [ -101.844774568045509, 33.60084596077342 ], [ -101.839906278581637, 33.592343096160441 ], [ -101.839571107060138, 33.584714208747471 ], [ -101.841325001174027, 33.577985301680101 ], [ -101.844857914822498, 33.57030640117911 ], [ -101.84502577081561, 33.563417499928725 ], [ -101.844681449049617, 33.548776712561413 ], [ -101.843995199038233, 33.537847873629637 ], [ -101.844811178924175, 33.536046895668164 ], [ -101.844430022960921, 33.529180996714089 ], [ -101.843994805026014, 33.519488139154248 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I270\", \"DIST_MILES\": 143.980000, \"DIST_KM\": 231.710000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -90.33946489009773, 38.503845307675327 ], [ -90.372195874992244, 38.512954416778172 ], [ -90.386570302194897, 38.517383459413985 ], [ -90.399151644094772, 38.52464346153657 ], [ -90.418675132885781, 38.540073419997121 ], [ -90.427281331068002, 38.548553383326912 ], [ -90.437146546811846, 38.559333329367981 ], [ -90.440266543747072, 38.570182234333906 ], [ -90.446980671470911, 38.579341177455625 ], [ -90.450200550699307, 38.602633951523131 ], [ -90.451886415926197, 38.622214755339684 ], [ -90.450429314739608, 38.62793268716942 ], [ -90.449040167680153, 38.638663566849779 ], [ -90.449230853663167, 38.67198021824683 ], [ -90.450329642041439, 38.697572955385844 ], [ -90.44753636760106, 38.717111735924384 ], [ -90.439768826269272, 38.748632366791057 ], [ -90.437533701595726, 38.75495327466502 ], [ -90.433078544793773, 38.757390219796761 ], [ -90.40636664146713, 38.769452926969386 ], [ -90.388910061558491, 38.77781773080126 ], [ -90.381508821554988, 38.780991652971039 ], [ -90.37621466047203, 38.781746617472649 ], [ -90.360283209463532, 38.778351585405474 ], [ -90.339744612779441, 38.775841518955694 ], [ -90.334907471717273, 38.775238503391556 ], [ -90.317313954063835, 38.77372043780877 ], [ -90.298613402770229, 38.771721372791781 ], [ -90.280569863264773, 38.771721285070932 ], [ -90.268125490839765, 38.771889222432478 ], [ -90.238430544793218, 38.770920046810048 ], [ -90.221340947470082, 38.769550916741302 ], [ -90.205791403081903, 38.767269810120723 ], [ -90.184626660522369, 38.76757862355506 ], [ -90.182482585059589, 38.767040611258416 ], [ -90.172510233307662, 38.76456055333113 ], [ -90.157159689430998, 38.760806461925682 ], [ -90.145616288157171, 38.764881316141363 ], [ -90.124527548943334, 38.765960121519996 ], [ -90.109879032032197, 38.764930005318703 ], [ -90.094367471072715, 38.759157929434764 ], [ -90.087859237291127, 38.757758886440413 ], [ -90.06699249950627, 38.757628704170813 ], [ -90.045362734662234, 38.757510514987963 ], [ -90.00745039099192, 38.756750188070988 ], [ -89.960108462801443, 38.757009984768864 ], [ -89.956835322117826, 38.756162980396091 ], [ -89.949197991525153, 38.75364897408911 ], [ -89.9434597497808, 38.753141958177764 ], [ -89.909721338199276, 38.752168848180744 ], [ -89.9069592239114, 38.752378837039963 ] ], [ [ -104.964271025210635, 39.823674986536709 ], [ -104.933470948371507, 39.800004300862973 ], [ -104.926809710502283, 39.79574736362877 ], [ -104.914755242908527, 39.79370641213405 ], [ -104.903821848740293, 39.787397512698426 ], [ -104.900700754378832, 39.782903575788573 ], [ -104.895612584539677, 39.777990649667771 ] ], [ [ -77.424589782538206, 39.397845418310965 ], [ -77.42074476823862, 39.394050468996866 ], [ -77.409811735882784, 39.381850632828879 ], [ -77.400480731926748, 39.365077839163447 ], [ -77.391630735580165, 39.349503046197782 ], [ -77.382825729800373, 39.339413213495057 ], [ -77.369382718524832, 39.327553449340087 ], [ -77.355421688488363, 39.322464631326007 ], [ -77.350317715752865, 39.311592801432624 ], [ -77.339880719420393, 39.303482999648928 ], [ -77.331899761319505, 39.28957525104066 ], [ -77.325300786203343, 39.281129428966636 ], [ -77.323598798640674, 39.277818490058088 ], [ -77.314947813593847, 39.271485672232622 ], [ -77.312040841270289, 39.265115790669981 ], [ -77.299451889635307, 39.248396184093636 ], [ -77.28565071559494, 39.23296665051226 ], [ -77.274549400263211, 39.208305236593866 ], [ -77.262556175364082, 39.196216584803011 ], [ -77.256780000817344, 39.186362818785717 ], [ -77.246907740655132, 39.174881091976893 ], [ -77.239552507317924, 39.165116269599672 ], [ -77.225888216431755, 39.156502435845319 ], [ -77.216648997438057, 39.148598584578025 ], [ -77.21074277267779, 39.136807796525048 ], [ -77.198940449374589, 39.122056068250998 ], [ -77.179896997228454, 39.101835446185291 ], [ -77.173472743631876, 39.085859733380182 ], [ -77.170168631532533, 39.078977858042101 ], [ -77.158526396863053, 39.067862069204423 ], [ -77.15406322902362, 39.056341276945609 ], [ -77.14489994175436, 39.036959629609491 ] ], [ [ -77.14489994175436, 39.036959629609491 ], [ -77.14178678004771, 39.024092859356678 ], [ -77.150277724620565, 39.013244034885147 ], [ -77.151376695481858, 39.009879091788001 ] ], [ [ -77.14489994175436, 39.036959629609491 ], [ -77.136995829236326, 39.032164726053388 ], [ -77.112520600023842, 39.027708843727993 ], [ -77.103860459873204, 39.019550001091474 ] ], [ [ -83.119028255190017, 39.976793273634094 ], [ -83.118951221299881, 39.952871136087559 ], [ -83.123750383245621, 39.934022982015563 ], [ -83.123453365491827, 39.929338957854554 ], [ -83.120699252252592, 39.924394955138524 ], [ -83.106515687925878, 39.91171501343004 ], [ -83.10285254424393, 39.909792036082614 ], [ -83.075706491160076, 39.904070252836497 ], [ -83.053534633307351, 39.899656430108045 ], [ -83.038481049328226, 39.892416523260664 ], [ -83.013959101333498, 39.878576659147107 ], [ -83.00362170419109, 39.87510573050033 ], [ -82.995236343144811, 39.873789754017764 ], [ -82.939935752218886, 39.871382723457991 ], [ -82.932016383146973, 39.872255725349724 ], [ -82.924432036004106, 39.875761738746199 ], [ -82.898185886481016, 39.901949827104325 ], [ -82.882712219695762, 39.915609856027345 ], [ -82.880027104425892, 39.917776859229136 ], [ -82.85197289233416, 39.934118858134433 ], [ -82.846829692006821, 39.941645866137982 ], [ -82.84423563112334, 39.95455489060123 ], [ -82.843007609602139, 39.962202905085363 ], [ -82.844113683464187, 39.967913921347879 ], [ -82.85275810947725, 39.978422972870767 ], [ -82.857138332030573, 39.985877006518301 ], [ -82.856672360466007, 39.998096037463448 ], [ -82.8595945019878, 40.001208045097584 ], [ -82.867498864947265, 40.004649048203405 ], [ -82.880317437984672, 40.007724070285121 ], [ -82.89508808324058, 40.008689114624616 ], [ -82.900582334526419, 40.011260112547532 ], [ -82.903496481413015, 40.01533008848817 ], [ -82.903397691586861, 40.057402735417242 ], [ -82.907440929427977, 40.070494634164234 ], [ -82.906967968398718, 40.082201534064048 ], [ -82.906616981764344, 40.087782486218245 ], [ -82.909845150700036, 40.094439434947624 ], [ -82.915452404541838, 40.098261410590155 ], [ -82.92516482165027, 40.100466405294952 ], [ -82.977681057594197, 40.110426379501909 ], [ -83.016675675051772, 40.112139264419632 ], [ -83.035346438506579, 40.112326125126451 ], [ -83.04475382379357, 40.112555053703041 ], [ -83.086144500374573, 40.109384776975453 ], [ -83.110986514194039, 40.109300593275648 ], [ -83.125086074063148, 40.106248512629726 ], [ -83.134577423567819, 40.099153495948386 ], [ -83.138339533486658, 40.091092528355638 ], [ -83.135615341027062, 40.075707667303078 ], [ -83.122881591026911, 40.029959133563267 ], [ -83.119264339475606, 40.008867335392452 ], [ -83.119028255190017, 39.976793273634094 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I271\", \"DIST_MILES\": 39.760000, \"DIST_KM\": 63.990000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -81.448035172883849, 41.590904242204964 ], [ -81.447890629001435, 41.56996603917883 ], [ -81.449059441763694, 41.537046299679439 ], [ -81.444916434634052, 41.524370758931475 ], [ -81.445076536815492, 41.520242916875922 ], [ -81.450708071164343, 41.514067185405779 ], [ -81.481304551830021, 41.501174867474241 ], [ -81.485919726235011, 41.493656017202611 ], [ -81.490787183961089, 41.463363410737443 ], [ -81.492457817263002, 41.447094614723632 ], [ -81.497042854456993, 41.438251743396599 ], [ -81.503322020745429, 41.431842797123693 ], [ -81.505428065634547, 41.429733800428089 ], [ -81.5088150123769, 41.422081856767463 ], [ -81.507387679361969, 41.413398974771091 ], [ -81.505770434480922, 41.408051054734521 ], [ -81.508471301162672, 41.398774138167894 ], [ -81.509280276068893, 41.396474157559339 ], [ -81.515153846029619, 41.371079403987054 ], [ -81.516168703815453, 41.364304475587915 ], [ -81.51138403403111, 41.350648684575695 ], [ -81.511383755453252, 41.341225797240533 ], [ -81.516823802885284, 41.332219854956165 ], [ -81.512917077238995, 41.315237094186564 ], [ -81.517418006276202, 41.303743191958425 ], [ -81.521980999765702, 41.294122267761203 ], [ -81.527870019471862, 41.282400358651472 ], [ -81.537873456437723, 41.276239348085952 ], [ -81.549881894647868, 41.265272381569339 ], [ -81.566369695105323, 41.256788349726023 ], [ -81.58373571672557, 41.254228238121591 ], [ -81.585978825539087, 41.252947235962203 ], [ -81.593662293879845, 41.239099209518564 ], [ -81.596942513961267, 41.236379182883439 ], [ -81.612713529903232, 41.231336055937156 ], [ -81.627599477745179, 41.228615936906635 ], [ -81.652755113078399, 41.216424741744405 ], [ -81.685724247361165, 41.200673494798423 ], [ -81.699000094206781, 41.196732395805306 ], [ -81.733533261212401, 41.194695132079332 ], [ -81.742848850389535, 41.192895062958101 ], [ -81.75477454406041, 41.18557402586103 ], [ -81.764831097957369, 41.16792407092823 ], [ -81.768416287047515, 41.164563083432625 ], [ -81.774047569895217, 41.16248409752798 ], [ -81.785606131839856, 41.161954119282917 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I275\", \"DIST_MILES\": 171.300000, \"DIST_KM\": 275.680000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -82.394710949985551, 28.170838758097858 ], [ -82.403577389989621, 28.158541398231353 ], [ -82.412625893405206, 28.136691471376835 ], [ -82.424711462040406, 28.112381629120105 ], [ -82.42869460630591, 28.108637804562473 ], [ -82.447913211027156, 28.100272187622913 ], [ -82.451766336028996, 28.096664346026614 ], [ -82.454513434566351, 28.091172585121008 ], [ -82.454635578209874, 28.054824172741828 ], [ -82.454780665625847, 28.032965126749673 ], [ -82.455543719176944, 28.022986557641996 ], [ -82.452849726060322, 28.00806822861874 ], [ -82.453719771356191, 27.996147707329797 ], [ -82.453643765207815, 27.981608217026778 ], [ -82.453460757042819, 27.966778737670712 ], [ -82.450950711806868, 27.964789826627509 ], [ -82.455977798966302, 27.957929028385106 ], [ -82.4582368388986, 27.956720053639145 ], [ -82.502480642713707, 27.956288750430357 ], [ -82.505585714947287, 27.955128787711651 ], [ -82.513397896820706, 27.951079921634832 ], [ -82.523286126381151, 27.9505589268549 ], [ -82.531305312822056, 27.947979007738098 ], [ -82.538453479039106, 27.945320092416445 ], [ -82.543916606051738, 27.94336815415917 ], [ -82.587420617104286, 27.927858640792074 ], [ -82.617908325292916, 27.916479995667146 ], [ -82.631023630093651, 27.907540289003101 ], [ -82.641567875234443, 27.897090638137293 ], [ -82.663464383966812, 27.873802415014588 ], [ -82.663708390539952, 27.85263115305051 ], [ -82.663533387101779, 27.838502646191699 ], [ -82.666661459913314, 27.82913396684792 ], [ -82.664662413921363, 27.822633197485416 ], [ -82.66460141275067, 27.817018393427755 ], [ -82.662403362380232, 27.805963783532412 ], [ -82.662594367092908, 27.799304015467424 ], [ -82.660404316759312, 27.792344262964441 ], [ -82.661534343258623, 27.784114547683991 ], [ -82.659230290349726, 27.776414821466023 ], [ -82.658222267199761, 27.77324693429426 ], [ -82.657917260411921, 27.767706128404328 ], [ -82.662403364300374, 27.762674293765436 ], [ -82.670834559171269, 27.761036331486483 ], [ -82.676464689392063, 27.757215451544827 ], [ -82.677334701466009, 27.745685875058772 ], [ -82.675938652574644, 27.736146260859673 ], [ -82.677662665987526, 27.721745832691663 ], [ -82.679402696180674, 27.716886021657377 ], [ -82.677632579163784, 27.673787752833952 ], [ -82.672428418463326, 27.644573948857825 ], [ -82.651599939053241, 27.606922587216772 ], [ -82.646297827524975, 27.601872825510107 ], [ -82.616687231487148, 27.585033708917582 ], [ -82.609767096093094, 27.583491819067895 ], [ -82.584551605451409, 27.583331993471774 ], [ -82.578013479673061, 27.579533198782229 ], [ -82.577196463016662, 27.581654113905323 ], [ -82.567949283746387, 27.581173196424103 ], [ -82.555392036104749, 27.58574308332107 ], [ -82.551339957156131, 27.585653113916962 ], [ -82.540185740127583, 27.585234205696871 ], [ -82.514756242663282, 27.586268327865422 ], [ -82.513871225935887, 27.585962347224271 ] ], [ [ -83.958511358503216, 36.000222840709043 ], [ -83.955894219220966, 35.998719898380841 ], [ -83.947813580845818, 35.983923129541793 ], [ -83.939208218743005, 35.983431292157363 ], [ -83.931364670677027, 35.972513499557159 ] ], [ [ -84.680825361743004, 39.214297938359806 ], [ -84.67631626974925, 39.215064956058143 ], [ -84.672081189071193, 39.216464960979366 ], [ -84.655921917628078, 39.22624890504126 ], [ -84.646865724424842, 39.226908957516656 ], [ -84.633750465874769, 39.230471989851246 ], [ -84.631156417818403, 39.23156298989128 ], [ -84.623992321979202, 39.239135914108743 ], [ -84.614509157053888, 39.244593891737445 ], [ -84.607818077452279, 39.252032836048556 ], [ -84.600897977756432, 39.256472856583606 ], [ -84.590262820836017, 39.263274891980245 ], [ -84.582815763617205, 39.272799889200904 ], [ -84.564070475507165, 39.285361967413024 ], [ -84.551947270026162, 39.292370031752441 ], [ -84.517934555232557, 39.300476290448096 ], [ -84.511808408009458, 39.300174346172106 ], [ -84.495617964669137, 39.295814491260771 ], [ -84.484989656684391, 39.295395549662572 ], [ -84.466152113044757, 39.294872651982821 ], [ -84.441753377865609, 39.290447792611673 ], [ -84.422655791264901, 39.285358902033416 ], [ -84.41606359813683, 39.284687936821484 ], [ -84.395189038464466, 39.289140037595956 ], [ -84.386880811578934, 39.290463079428875 ], [ -84.375314466990062, 39.288537141273252 ], [ -84.351112650326002, 39.270882268777441 ], [ -84.338165218142606, 39.261426328337457 ], [ -84.326003819335199, 39.2531443790823 ], [ -84.30851630941892, 39.25015345162609 ], [ -84.296469943173477, 39.23786272766457 ], [ -84.291258787821604, 39.232869843349171 ], [ -84.275145324919436, 39.222677107746101 ], [ -84.264723021601057, 39.210916379687212 ], [ -84.262433932055245, 39.192686737482767 ], [ -84.263303945898102, 39.186628848100099 ], [ -84.267416040191151, 39.177740994748412 ], [ -84.268110047489557, 39.171130116096663 ], [ -84.267507012765236, 39.159533338988233 ], [ -84.265080919219827, 39.139956724249792 ], [ -84.265859930638996, 39.134746818338861 ], [ -84.275351147139887, 39.12221899596841 ], [ -84.280897254633643, 39.106537254457017 ], [ -84.284239326620579, 39.10161232441628 ], [ -84.28867142041895, 39.09487142026466 ], [ -84.291601453812845, 39.077854715979775 ], [ -84.299528620581853, 39.068565831256166 ], [ -84.314321949797019, 39.061169859371276 ], [ -84.324096167058883, 39.057156860256399 ], [ -84.348998756699331, 39.059341638250196 ], [ -84.358054965155745, 39.058395588342563 ], [ -84.370697247165907, 39.055054553065062 ], [ -84.385971616391942, 39.057980390206609 ], [ -84.391464731919058, 39.055176397225694 ], [ -84.404267032385789, 39.055569295887167 ], [ -84.417214357915171, 39.060059126051456 ], [ -84.421128451518982, 39.060410091618706 ], [ -84.429391629960165, 39.057640076298192 ], [ -84.433793721911456, 39.055691075512755 ], [ -84.446565986362359, 39.050034071687342 ], [ -84.457399215908907, 39.046520046253491 ], [ -84.460695286807237, 39.045677034698329 ], [ -84.466654414054688, 39.044060015035193 ], [ -84.469530467303017, 39.042046024733175 ], [ -84.471384429346543, 39.029701203384974 ], [ -84.480936605454247, 39.023659222117338 ], [ -84.489260788318319, 39.022942167209116 ], [ -84.511691263018164, 39.022102043060841 ], [ -84.5202444488705, 39.023623981611877 ], [ -84.538440866323157, 39.029715805146296 ], [ -84.547199022452247, 39.026648813697683 ], [ -84.553372151768215, 39.027049779568735 ], [ -84.560665291083538, 39.025760767232086 ], [ -84.569508477064971, 39.026427716838406 ], [ -84.575466608483936, 39.027656670241782 ], [ -84.582058769306713, 39.030970586824971 ], [ -84.593686020803759, 39.03264950642096 ], [ -84.59926315058047, 39.034591449024177 ], [ -84.606626326770296, 39.037730363333168 ], [ -84.620427711298234, 39.050193091390888 ], [ -84.627218893931428, 39.055403971426124 ], [ -84.640524204368177, 39.059690834082552 ], [ -84.647787427544273, 39.06844964920235 ], [ -84.651625520742144, 39.070066602278615 ], [ -84.683677238357305, 39.076074335308142 ], [ -84.70192766829166, 39.081793140398553 ], [ -84.717666983599898, 39.080301085260423 ], [ -84.733681343295203, 39.083165950358719 ], [ -84.765100144899336, 39.089108599484774 ], [ -84.784708656319765, 39.087479426314182 ], [ -84.792108862629192, 39.088189336505835 ], [ -84.816317594183801, 39.095337952481195 ], [ -84.825678951615501, 39.104297687899653 ], [ -84.831974220501436, 39.112488469056075 ], [ -84.832943348618031, 39.121086298113632 ], [ -84.832714501356293, 39.134605047712768 ], [ -84.82004926558453, 39.145533977890011 ], [ -84.816913219326494, 39.14944093842535 ], [ -84.81528826868491, 39.158038795614559 ], [ -84.804424055361437, 39.167598734104629 ], [ -84.797771009143958, 39.181708543833082 ], [ -84.792140868040775, 39.184344555762891 ], [ -84.780955539545161, 39.185088662824079 ], [ -84.774523377054308, 39.188216674644849 ], [ -84.760317143650013, 39.208956447302505 ], [ -84.73896268488275, 39.220156431647027 ] ], [ [ -83.433947598066382, 42.39262602784752 ], [ -83.436465655301518, 42.386015134610489 ], [ -83.436793661428894, 42.384546158940715 ], [ -83.436412617362521, 42.370210404375463 ], [ -83.436091583452153, 42.359621585591611 ], [ -83.436175579908181, 42.357008630012494 ], [ -83.443225746798092, 42.336878964215941 ], [ -83.443461724336316, 42.322879204707718 ], [ -83.444072671732101, 42.288886789168458 ], [ -83.441775579193845, 42.279597949429892 ], [ -83.440310461935837, 42.248459496878418 ], [ -83.439395393563061, 42.237556777000151 ], [ -83.43712130843717, 42.233917869815727 ], [ -83.431094106515388, 42.230556954263641 ], [ -83.422380826944234, 42.228939993009107 ], [ -83.415643609102261, 42.226540052731416 ], [ -83.412515500738493, 42.221829173420474 ], [ -83.408396356194586, 42.213498387520943 ], [ -83.39540995242136, 42.209660483395517 ], [ -83.391366826328678, 42.207139547695526 ], [ -83.389214757099623, 42.203179649833892 ], [ -83.388940740028943, 42.193974888437005 ], [ -83.388375710054603, 42.179750257183755 ], [ -83.387604670660053, 42.160540755255134 ], [ -83.38240151613212, 42.146251125818431 ], [ -83.38150148005559, 42.126170647068896 ], [ -83.378045385039101, 42.115203932158416 ], [ -83.377511363439638, 42.093884485977377 ], [ -83.375985322929822, 42.083584753879137 ], [ -83.354980841126064, 42.053952531368012 ], [ -83.353523830121361, 42.028574193507161 ], [ -83.34671069841194, 42.017916474807357 ], [ -83.326759296686831, 41.992594968729613 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I276\", \"DIST_MILES\": 39.060000, \"DIST_KM\": 62.860000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -75.414908678971585, 40.090098933013827 ], [ -75.411986534436366, 40.090845971780986 ], [ -75.396452865776766, 40.093772208747517 ], [ -75.376669537055093, 40.090183711310644 ], [ -75.363493308029732, 40.087605049106713 ], [ -75.352109910191857, 40.088597255226745 ], [ -75.341756135772087, 40.097264242203494 ], [ -75.314968030441193, 40.105931578536151 ], [ -75.285037119419314, 40.111803063496467 ], [ -75.277170908686315, 40.113107198531218 ], [ -75.266908644532407, 40.114820375398459 ], [ -75.25531929525701, 40.11921151875346 ], [ -75.223694946347877, 40.126367567196716 ], [ -75.201920789737954, 40.131605532094234 ], [ -75.184433702787587, 40.134832530091444 ], [ -75.165627587272382, 40.140436487197 ], [ -75.138955367504181, 40.154569312281737 ], [ -75.123475294453215, 40.161416247784935 ], [ -75.111260305189731, 40.16284727858497 ], [ -75.102623321736033, 40.163408309743772 ], [ -75.077317410241562, 40.162340453371435 ], [ -75.05788546665255, 40.163328530816408 ], [ -75.051957486758013, 40.163511556872734 ], [ -75.047318512919801, 40.162382599792139 ], [ -75.029358638261385, 40.153333843660995 ], [ -75.005074760580442, 40.143870114006006 ], [ -74.989792834480895, 40.135848295789124 ], [ -74.977021881941369, 40.133265372133472 ], [ -74.967217918792002, 40.131274430529935 ], [ -74.952958973734695, 40.128024520520832 ], [ -74.889253226642353, 40.129187677595979 ], [ -74.881860260548734, 40.12802471577205 ], [ -74.853166395920155, 40.123457863700779 ], [ -74.842683444789984, 40.120585934803685 ], [ -74.830171502958535, 40.117111019683804 ], [ -74.806512612985458, 40.110630176915635 ], [ -74.79201766679985, 40.102794325853523 ], [ -74.79090367074707, 40.102184337315641 ], [ -74.773759740396628, 40.095665472638764 ], [ -74.75612083535124, 40.094333537014649 ], [ -74.732958009562907, 40.097034751693165 ], [ -74.728785049075583, 40.098674787054676 ], [ -74.721743133039112, 40.104824797432137 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I277\", \"DIST_MILES\": 6.090000, \"DIST_KM\": 9.800000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -81.565646635116565, 41.035459377221798 ], [ -81.552690849329636, 41.034757456573026 ], [ -81.54683052494164, 41.028894489759359 ], [ -81.543214313388489, 41.027361510973357 ], [ -81.526558313272758, 41.025003610465376 ], [ -81.515159623743202, 41.024343678863168 ], [ -81.50176880383745, 41.025259760577477 ] ], [ [ -80.836250419553593, 35.216401793862865 ], [ -80.835510400604321, 35.217233780669702 ], [ -80.834587377714513, 35.218163767065285 ], [ -80.83037627919515, 35.22159372660095 ], [ -80.829674258867712, 35.222863701679167 ], [ -80.828377216376595, 35.226113632149755 ], [ -80.829185220110958, 35.228013573038879 ], [ -80.839447354489067, 35.236161237585257 ], [ -80.844261402399894, 35.241822030777733 ], [ -80.848335457753521, 35.244102921344684 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I277 F\", \"DIST_MILES\": 1.850000, \"DIST_KM\": 2.980000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -80.865440900910272, 35.224931226464733 ], [ -80.854721706881023, 35.224641360399929 ], [ -80.841667523146725, 35.216073739485495 ], [ -80.836250419553593, 35.216401793862865 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I278\", \"DIST_MILES\": 35.530000, \"DIST_KM\": 57.180000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -74.230391601796256, 40.640554916939806 ], [ -74.224600762404734, 40.641050951212648 ], [ -74.21736798480211, 40.643312961366142 ], [ -74.21015117359434, 40.642870025370549 ], [ -74.206008263683614, 40.641093092585123 ], [ -74.197051442558674, 40.635756268130677 ], [ -74.186629661789425, 40.630064462688829 ], [ -74.178573833211743, 40.625540616045996 ], [ -74.177764849920365, 40.625029632607777 ], [ -74.173942924832062, 40.622237718504422 ], [ -74.165741131834807, 40.619986827962094 ], [ -74.157494312287, 40.61510399110346 ], [ -74.153847385159224, 40.612247077461234 ], [ -74.150498453496269, 40.609691155495497 ], [ -74.145645574341643, 40.607826231599617 ], [ -74.132157976023763, 40.608165331965075 ], [ -74.121461313072359, 40.609847383180565 ], [ -74.11692245989029, 40.61085139906131 ], [ -74.110200656973177, 40.610355462911954 ], [ -74.097101056019909, 40.610473565629803 ], [ -74.09038824573787, 40.608920651337321 ], [ -74.088801288192357, 40.60829567688824 ], [ -74.085192385067614, 40.606868735160006 ], [ -74.077738609717045, 40.606212808885246 ], [ -74.076556645422357, 40.606101820734473 ], [ -74.065531958567533, 40.602817977548661 ], [ -74.057964191305288, 40.602139053195287 ], [ -74.044010679500218, 40.606732072899511 ], [ -74.035167988807103, 40.609478088782737 ], [ -74.028813224961254, 40.61290407024017 ], [ -74.023228465221592, 40.619548978849878 ], [ -74.019505626929728, 40.624187913491248 ], [ -74.01646179582491, 40.63216377349724 ], [ -74.016835809412044, 40.635070710347513 ], [ -74.02123769692669, 40.63832860721044 ], [ -74.02167270316987, 40.640590556953363 ], [ -74.008535243089369, 40.654147383067546 ], [ -73.996442722127156, 40.665065245511265 ], [ -73.995908755966383, 40.667083206621697 ], [ -73.997457732042335, 40.669967138671694 ], [ -73.998327715355543, 40.671199108475285 ], [ -74.000059685811024, 40.674106037896266 ], [ -74.00106666813285, 40.675799994675927 ], [ -74.00189765359768, 40.677195959060974 ], [ -74.003354623696538, 40.679110907680247 ], [ -74.00382061411203, 40.67971689138674 ], [ -74.002889660129966, 40.68163985899087 ], [ -73.999006851872892, 40.689738720546771 ], [ -73.999532854827351, 40.692007670492011 ], [ -73.99647401701047, 40.699892525019322 ], [ -73.992270163558572, 40.701716512241774 ], [ -73.991385190911231, 40.701681518220227 ], [ -73.987463309862861, 40.701227550860551 ], [ -73.981200469126406, 40.69675367948431 ], [ -73.964781983623212, 40.695872794142211 ], [ -73.960250190143896, 40.703207673845107 ], [ -73.958915251719219, 40.705450636989724 ], [ -73.956893344475745, 40.708781582699665 ], [ -73.956504362228586, 40.70941057251963 ], [ -73.955970386781459, 40.71029555812899 ], [ -73.955024430322155, 40.711867532593814 ], [ -73.953186507482911, 40.714022501059773 ], [ -73.944786827450173, 40.71982843879627 ], [ -73.936417139006608, 40.724543399641533 ], [ -73.929528389791543, 40.727587384913726 ], [ -73.92299766306455, 40.734686289961203 ], [ -73.909486125635567, 40.736395347834254 ], [ -73.899500494830036, 40.740645334671122 ], [ -73.895715649545906, 40.744009296937335 ], [ -73.895540675836472, 40.746538250265594 ], [ -73.897073645248668, 40.749155189966025 ], [ -73.898843607388116, 40.754134091029449 ], [ -73.904649460577829, 40.76816781223701 ], [ -73.910677261919602, 40.769212752840289 ], [ -73.916711064307066, 40.770353691932122 ], [ -73.921586912528426, 40.773477605628749 ] ], [ [ -73.921586912528426, 40.773477605628749 ], [ -73.924065834068756, 40.77462156932927 ] ], [ [ -73.921586912528426, 40.773477605628749 ], [ -73.922745877205003, 40.774431581573531 ], [ -73.923333860614008, 40.775319562552582 ], [ -73.92582878819475, 40.778463492435279 ], [ -73.930138667778749, 40.785321347467125 ], [ -73.920915011922418, 40.796861215105871 ], [ -73.918939085256639, 40.799047191491233 ], [ -73.916193191003913, 40.803140140773365 ], [ -73.912553318805521, 40.804708138746918 ], [ -73.902925662344117, 40.80977711765739 ], [ -73.887438238735939, 40.822484005686896 ], [ -73.885348313073109, 40.823026010495852 ], [ -73.872645761396583, 40.824537070281927 ], [ -73.850170565817038, 40.826917181760322 ], [ -73.837338034542086, 40.828862235682834 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I279\", \"DIST_MILES\": 20.330000, \"DIST_KM\": 32.720000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -80.025574104696645, 40.449355942663331 ], [ -80.011504755564829, 40.448146998557149 ], [ -80.008674668061701, 40.445988018201284 ] ], [ [ -80.008674668061701, 40.445988018201284 ], [ -80.007575664276061, 40.448513010903071 ], [ -80.00423458990673, 40.449173019953683 ], [ -80.001151520056624, 40.449635029033168 ], [ -80.000236498744215, 40.449707032017102 ], [ -79.997298435343922, 40.451031019886493 ], [ -79.997215462034035, 40.454151006322171 ], [ -79.999885637728269, 40.465682966039658 ], [ -80.007446910911796, 40.476234889144102 ], [ -80.006538937146033, 40.48147587006472 ], [ -80.009545048120074, 40.486114836024491 ], [ -80.012619214225509, 40.496890773033279 ], [ -80.019722383107222, 40.497794734361953 ], [ -80.022660484707629, 40.500724700551082 ], [ -80.035172907931013, 40.506927560200594 ], [ -80.053407608638736, 40.520885303204921 ], [ -80.062463843815863, 40.523048237901499 ], [ -80.071703046884039, 40.523555192318078 ], [ -80.070406159111982, 40.53050911610304 ], [ -80.070917224322045, 40.533252081803518 ], [ -80.080164579869134, 40.542048943664703 ], [ -80.08648186583622, 40.550730821637153 ], [ -80.087268055847233, 40.560087713195173 ], [ -80.09166321200226, 40.564261652194126 ], [ -80.092472373389299, 40.572283560198656 ], [ -80.099910753210168, 40.586497382810606 ] ], [ [ -80.008674668061701, 40.445988018201284 ], [ -80.007888611687704, 40.441830039329396 ], [ -80.008270606594962, 40.440232045115842 ], [ -80.009147625855206, 40.44000304320307 ], [ -80.013496710958464, 40.437668039354989 ], [ -80.026359968541485, 40.431031029801211 ], [ -80.02990003631335, 40.428723030374144 ], [ -80.03067000260387, 40.422402059783948 ], [ -80.032662034923007, 40.420327064596101 ], [ -80.045525361044383, 40.421032024555281 ], [ -80.050591480179747, 40.420121015252732 ], [ -80.071747936978554, 40.410164016643435 ], [ -80.079515149969694, 40.41258298159768 ], [ -80.092721533774849, 40.420356895339452 ], [ -80.106088886566539, 40.423370836575621 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I280\", \"DIST_MILES\": 102.300000, \"DIST_KM\": 164.640000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -122.390040733763811, 37.772592469325048 ], [ -122.389691809322102, 37.770075331486872 ], [ -122.387045060828612, 37.767533285577784 ], [ -122.385333788626511, 37.765011609755092 ], [ -122.383726266596767, 37.753562974738117 ] ], [ [ -90.677218783838853, 41.602809309026888 ], [ -90.675448698158576, 41.598880382803166 ], [ -90.675738667105691, 41.591579473840135 ], [ -90.678683637262552, 41.567501749036943 ], [ -90.676791405371077, 41.538674147362848 ], [ -90.673892234052516, 41.52727933141685 ], [ -90.674144170921494, 41.514573493084299 ], [ -90.672633083809501, 41.509121582452572 ], [ -90.669512933626081, 41.503140698388407 ], [ -90.649866107259868, 41.492033065469741 ], [ -90.632065327868716, 41.478990415599149 ], [ -90.614639554535131, 41.463800773017212 ], [ -90.605217153384572, 41.456941948491256 ], [ -90.599501926367594, 41.454531036790769 ], [ -90.595748777688783, 41.452952094422706 ], [ -90.578711111108646, 41.446379347473673 ], [ -90.566961687521911, 41.446150480797286 ], [ -90.556860332343234, 41.44715458485161 ], [ -90.547987056354401, 41.453105633313015 ], [ -90.540013789844053, 41.456118698287192 ], [ -90.523350190631348, 41.456576884181644 ], [ -90.510372731540556, 41.458183019486249 ], [ -90.495250147039926, 41.457855152840288 ] ], [ [ -74.366926470977319, 40.858907685001306 ], [ -74.358999556307637, 40.855393755880201 ], [ -74.349188612330479, 40.845025917913368 ], [ -74.341314706287591, 40.841935986186186 ], [ -74.330359782498149, 40.830797167393968 ], [ -74.321623873950244, 40.825037275489407 ], [ -74.314718919636817, 40.816992406175395 ], [ -74.309286976350393, 40.812964480949574 ], [ -74.305053033740876, 40.811331520479868 ], [ -74.291007256302251, 40.80939760815096 ], [ -74.281440368879657, 40.8026757394139 ], [ -74.267219583329364, 40.79789286898734 ], [ -74.252303850856961, 40.797632943132193 ], [ -74.2500608826698, 40.796385970716734 ], [ -74.248534843586128, 40.786498114432753 ], [ -74.243247924209328, 40.780563231044866 ], [ -74.241828926347992, 40.776221300035644 ], [ -74.240890924670808, 40.772899351900492 ], [ -74.230286153978298, 40.769454472872702 ], [ -74.208962606575653, 40.759299764877646 ], [ -74.194740923846624, 40.753230953060374 ], [ -74.170457503165849, 40.748051216511044 ], [ -74.16778757431527, 40.748188233396959 ], [ -74.166078617716678, 40.748085248049158 ], [ -74.162515701526502, 40.747273290647833 ], [ -74.15442085857218, 40.742375449183683 ], [ -74.144175143591809, 40.743424504059249 ], [ -74.131083529302899, 40.746414541017025 ], [ -74.126848699936147, 40.753185451501906 ], [ -74.118281939963623, 40.754715491940907 ] ], [ [ -122.39912705624829, 37.736250175429852 ], [ -122.406805860950286, 37.733178253866875 ], [ -122.416667645691831, 37.732385197786101 ], [ -122.420342460923621, 37.732913664664302 ], [ -122.423903701053703, 37.73317008994583 ], [ -122.426810159286632, 37.732481261655124 ], [ -122.435926965837297, 37.729279954306939 ], [ -122.440038409235527, 37.723880657411705 ], [ -122.440435157149281, 37.722178831913091 ], [ -122.440618927002319, 37.719565928145428 ], [ -122.442111389863868, 37.716438557571088 ], [ -122.448832476737905, 37.711566319694441 ], [ -122.452309070247551, 37.711430730843482 ], [ -122.458153302356237, 37.711063108264803 ], [ -122.460862787626041, 37.709256227037855 ], [ -122.461433477629754, 37.708748464011713 ], [ -122.463960827397329, 37.706190517090512 ], [ -122.464143499367069, 37.705842594751445 ], [ -122.463607673628744, 37.698320445115314 ], [ -122.462659438299696, 37.691877117100617 ], [ -122.464004685198105, 37.679868775711753 ], [ -122.458439347749405, 37.670699586413477 ], [ -122.456602972719736, 37.66124692124459 ], [ -122.44692802363231, 37.653369047472395 ], [ -122.44181829849262, 37.646203030134693 ], [ -122.434364066587662, 37.640612050061129 ], [ -122.429681143418975, 37.633331210563313 ], [ -122.423375503795313, 37.628163699097833 ], [ -122.416539521276576, 37.618170013365813 ], [ -122.420021406442217, 37.609447486328328 ], [ -122.42007617317185, 37.605442538956297 ], [ -122.398574861222741, 37.584964013030884 ], [ -122.389236712084823, 37.571563351008336 ], [ -122.385502079052074, 37.568192874736468 ], [ -122.380236969560983, 37.565810780552461 ], [ -122.373361159106722, 37.558819073723519 ], [ -122.354887841667292, 37.535397843108342 ], [ -122.345999742077638, 37.51999039185857 ], [ -122.331835359236777, 37.508174836666768 ], [ -122.325817424243709, 37.504346476206152 ], [ -122.320369220640359, 37.502261336351076 ], [ -122.310111855504587, 37.500906306629723 ], [ -122.304412942385568, 37.497193045840199 ], [ -122.293950984652682, 37.493518932131295 ], [ -122.291319887915122, 37.488405875155046 ], [ -122.292146879117638, 37.477027127722216 ], [ -122.285103166215308, 37.468945344606766 ], [ -122.281379556999099, 37.457552838828455 ], [ -122.271862172004688, 37.451159134031734 ], [ -122.261788022938745, 37.44488823503977 ], [ -122.246811431636573, 37.44423350860972 ], [ -122.236137375368912, 37.436447583742229 ], [ -122.222160738394493, 37.425643539391352 ], [ -122.212756372720435, 37.420044164670578 ], [ -122.206660911362704, 37.418797992442784 ], [ -122.200126020670979, 37.413985654946813 ], [ -122.187334073640557, 37.409861115690894 ], [ -122.182654336118318, 37.407856458097761 ], [ -122.1680007927107, 37.393962252110796 ], [ -122.161996785825735, 37.392838145985429 ], [ -122.156768397386855, 37.390467309464505 ], [ -122.147217605621165, 37.387541969508845 ], [ -122.143515000199343, 37.37909564436292 ], [ -122.132993406538432, 37.368856949161213 ], [ -122.123837538055568, 37.36566477065066 ], [ -122.11657722057906, 37.364609264522173 ], [ -122.109890087839091, 37.357194930504583 ], [ -122.101373479809723, 37.35405599615774 ], [ -122.095880667996951, 37.34849209040317 ], [ -122.08886441776805, 37.345354681030337 ], [ -122.072845927458573, 37.335255186420689 ], [ -122.067761199501049, 37.334181459681297 ], [ -122.061984279034917, 37.335072513016087 ], [ -122.049326362388783, 37.333187241422408 ], [ -122.040062013384855, 37.335084145648423 ], [ -122.02597240115827, 37.335147442311715 ], [ -122.013785579329635, 37.334453389514721 ], [ -121.993656510925575, 37.323711669225752 ], [ -121.989295246355013, 37.321433187775185 ], [ -121.98316805695201, 37.31887111578208 ], [ -121.968698026996506, 37.317794270352913 ], [ -121.957546244840458, 37.317176555383512 ], [ -121.943737016124459, 37.317274979580411 ], [ -121.933924585572683, 37.317904743277616 ], [ -121.925634047387604, 37.317647015759512 ], [ -121.913187583486121, 37.317482937048318 ], [ -121.908521387552554, 37.316035411436346 ], [ -121.905461398608523, 37.315260412933881 ], [ -121.902150365387214, 37.316083334994048 ], [ -121.896744228933429, 37.318777577366959 ], [ -121.892205629927872, 37.322965103030569 ], [ -121.886091351231158, 37.324722118671218 ], [ -121.87700136178367, 37.326939174679794 ], [ -121.863494706681365, 37.329680814644021 ], [ -121.845730310092819, 37.340192086480812 ] ], [ [ -83.513750822844756, 41.690451460107006 ], [ -83.51589480658447, 41.685759571255829 ], [ -83.516023722555701, 41.678923701465834 ], [ -83.513452463493934, 41.662783981582507 ], [ -83.491845628290733, 41.636562301282432 ], [ -83.487313461071096, 41.632503344484149 ], [ -83.478425186663557, 41.628600350192556 ], [ -83.477135014710797, 41.618347543214689 ], [ -83.477028899511964, 41.610092706117747 ], [ -83.476493515446066, 41.582928240968052 ], [ -83.461539882354984, 41.564980489682917 ], [ -83.460456777325845, 41.559445592881602 ], [ -83.463469391019643, 41.525880286000536 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I283\", \"DIST_MILES\": 3.080000, \"DIST_KM\": 4.960000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -76.814057523286621, 40.25322642436452 ], [ -76.813332525644881, 40.250262479625199 ], [ -76.797951203392955, 40.234588012433591 ], [ -76.787872889911554, 40.219303511241989 ], [ -76.786681808942419, 40.214706651252257 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I283 S\", \"DIST_MILES\": 1.930000, \"DIST_KM\": 3.110000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -76.75753769768211, 40.225402508388385 ], [ -76.752815380013772, 40.210582970799017 ], [ -76.760268261654289, 40.199398254223482 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I285\", \"DIST_MILES\": 61.310000, \"DIST_KM\": 98.670000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -84.461949117142098, 33.619945310847214 ], [ -84.458431989904966, 33.618785321146682 ], [ -84.445415543825334, 33.616416309773541 ], [ -84.438747334335488, 33.616847261209642 ], [ -84.420672843466178, 33.625773925390945 ], [ -84.414973697117105, 33.629755788156409 ], [ -84.408732515985875, 33.632178688534808 ], [ -84.401125267691327, 33.632342640542959 ], [ -84.392801981120797, 33.630846632466927 ], [ -84.388017834326433, 33.632010574133382 ], [ -84.383775731279414, 33.636317435152897 ], [ -84.377969563175, 33.639220324190774 ], [ -84.370103370795732, 33.648009043508239 ], [ -84.366769294915429, 33.652723897662298 ], [ -84.361528160862207, 33.658529710887642 ], [ -84.349800798844043, 33.663938495131461 ], [ -84.340805514357797, 33.667638340980837 ], [ -84.328354117584411, 33.67310111734416 ], [ -84.318649805199897, 33.677567936494583 ], [ -84.303787339409297, 33.688660541724921 ], [ -84.280615554906163, 33.698315130789702 ], [ -84.255201647622826, 33.699725930449027 ], [ -84.241445177551327, 33.714427589689883 ], [ -84.231289842063475, 33.730319277432272 ], [ -84.23053485189854, 33.744719893402888 ], [ -84.232327929809585, 33.755453600072158 ], [ -84.232243923086315, 33.766264352699132 ], [ -84.233647975645127, 33.771971203649414 ], [ -84.243650370200953, 33.779904894854923 ], [ -84.245664453598224, 33.78343378878747 ], [ -84.251905747051424, 33.815602013558888 ], [ -84.252851800315639, 33.82708475686146 ], [ -84.251722764822375, 33.832451628075262 ], [ -84.248517639374967, 33.837673515989565 ], [ -84.24654156661768, 33.852924191646757 ], [ -84.249738740558612, 33.869208782659591 ], [ -84.250394788055331, 33.883071466881084 ], [ -84.254163940686283, 33.887893374580472 ], [ -84.259436150056189, 33.891753310688529 ], [ -84.274405745724906, 33.903048118069108 ], [ -84.286453227495613, 33.913168935163192 ], [ -84.292854483459294, 33.918344841167652 ], [ -84.297752676414206, 33.920416812985799 ], [ -84.328377862162938, 33.920412940705994 ], [ -84.338251240825187, 33.918323032340396 ], [ -84.347940610505432, 33.915248147779664 ], [ -84.357812986124017, 33.911635278089733 ], [ -84.362429162457232, 33.910373328915483 ], [ -84.379160813616707, 33.91242535037086 ], [ -84.395221437182528, 33.913512392066465 ], [ -84.403339755727828, 33.91577036993548 ], [ -84.419735389366608, 33.915267452223617 ], [ -84.42265750080837, 33.914432485898693 ], [ -84.434025921825281, 33.905059774688766 ], [ -84.442655248722915, 33.901721898749891 ], [ -84.446195382843641, 33.900382949118651 ], [ -84.454809699770834, 33.89266618807774 ], [ -84.460218902030576, 33.889462296413363 ], [ -84.469588253111837, 33.884377473162488 ], [ -84.472357353026396, 33.881104572130759 ], [ -84.486983840852758, 33.845975571763631 ], [ -84.486449782732663, 33.828787023710085 ], [ -84.492675007443935, 33.82215323466653 ], [ -84.496849152591508, 33.815275441514544 ], [ -84.496933148011337, 33.811754535733591 ], [ -84.49483506078785, 33.808737603669776 ], [ -84.488173785694286, 33.799879798970515 ], [ -84.48727374185799, 33.795622906223052 ], [ -84.48857778378526, 33.791938011802479 ], [ -84.493086945626999, 33.786945172202955 ], [ -84.495453028358057, 33.783359282343596 ], [ -84.495941025862379, 33.773788540055932 ], [ -84.49267488076913, 33.764682760820946 ], [ -84.492629870630822, 33.760863861934538 ], [ -84.499115021755202, 33.744766328307819 ], [ -84.502402905923546, 33.730511702944867 ], [ -84.50283775374659, 33.718686005517981 ], [ -84.498038467792426, 33.707063285462119 ], [ -84.500167305597316, 33.689847737977445 ], [ -84.497922779819532, 33.656798570529915 ], [ -84.497343600105779, 33.645010868677396 ], [ -84.490369206963123, 33.632942137400782 ], [ -84.487195907724072, 33.618080500791976 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I287\", \"DIST_MILES\": 58.800000, \"DIST_KM\": 94.620000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -73.835440638383346, 41.056520480208491 ], [ -73.829939883317408, 41.0593394732986 ], [ -73.822760142940112, 41.058877523697454 ], [ -73.816916349490469, 41.058091570689975 ], [ -73.812186507869598, 41.056790618305811 ], [ -73.810058552251391, 41.054330666571836 ], [ -73.807402584631546, 41.049638750028798 ], [ -73.803916681883237, 41.047223806029358 ], [ -73.790481158542107, 41.044683925339591 ], [ -73.784904341520061, 41.042440992005126 ], [ -73.776802673706001, 41.043757023589862 ], [ -73.776153701627692, 41.043951024861769 ], [ -73.76971497886278, 41.045855037846792 ], [ -73.766015114625503, 41.045218070110387 ], [ -73.763322183133027, 41.042536125325249 ], [ -73.760995235872443, 41.039724180116686 ], [ -73.756181391408205, 41.037214246236431 ], [ -73.753030452229766, 41.032526333061256 ], [ -73.746133652008126, 41.030623396477012 ], [ -73.740037802016744, 41.029871433173042 ], [ -73.731950962210647, 41.02603052073983 ], [ -73.723413038515872, 41.015505698824541 ], [ -73.717325181268421, 41.01419674009113 ], [ -73.704233516934181, 41.013144804784403 ], [ -73.697512624375918, 41.008204893960539 ], [ -73.692835678008009, 41.003405972102108 ], [ -73.683275886865005, 41.00003404878462 ], [ -73.677280038964071, 40.991779196652125 ], [ -73.670482224149055, 40.987430284887665 ] ], [ [ -74.367590988257632, 40.917282990016069 ], [ -74.385000689242517, 40.910523020560497 ], [ -74.393034566015572, 40.908837017243656 ], [ -74.413550211501388, 40.899884059659946 ], [ -74.4156701517512, 40.896550090694127 ], [ -74.415266091338538, 40.889783167513571 ], [ -74.420423906855248, 40.877759285168224 ], [ -74.419110851825891, 40.87035137178372 ], [ -74.41737183201397, 40.865945426701316 ], [ -74.417539814927821, 40.864419443130011 ], [ -74.438573219852216, 40.832562716612927 ], [ -74.445950926238226, 40.813207895937431 ], [ -74.448673861154418, 40.810391914843372 ], [ -74.468159477060212, 40.798196961285498 ], [ -74.468655444010381, 40.795655985588326 ], [ -74.469616339194914, 40.786841072996701 ], [ -74.478130101309489, 40.774946157282052 ], [ -74.481663026675136, 40.772310167950707 ], [ -74.494670786378904, 40.765783173262157 ], [ -74.518092379171009, 40.760725122358004 ], [ -74.523311260459067, 40.757197135717071 ], [ -74.525676185182377, 40.753622161571251 ], [ -74.527659116432062, 40.750105188477363 ], [ -74.53476991496558, 40.741606278025955 ], [ -74.537859763610058, 40.732077398917625 ], [ -74.540537670590822, 40.727251455684659 ], [ -74.55610128875766, 40.713236589851178 ], [ -74.567056946712142, 40.696261785656624 ], [ -74.571458836741556, 40.691858830564669 ], [ -74.603524240945475, 40.677275913606259 ], [ -74.612435078668852, 40.673105939191807 ], [ -74.631805792329871, 40.669645915928349 ], [ -74.639442643743308, 40.664698958374963 ], [ -74.644035513857517, 40.657828039914335 ], [ -74.646004422513911, 40.651492123565127 ], [ -74.645401333896174, 40.642417255903197 ], [ -74.640472214539898, 40.62542651718195 ], [ -74.623268120033416, 40.596416993152175 ], [ -74.617767109494508, 40.588936119242405 ], [ -74.610321155992963, 40.584435209538007 ], [ -74.59230834949453, 40.580712325959212 ], [ -74.575874557941262, 40.579746398008602 ], [ -74.567261630449849, 40.575657486483237 ], [ -74.556450697880308, 40.568196630218154 ], [ -74.538460725695387, 40.547726981784677 ], [ -74.531074774512092, 40.542608079677414 ], [ -74.51633494478763, 40.538728186256598 ], [ -74.512971002628021, 40.539499187489078 ], [ -74.511933020674959, 40.539750187694288 ], [ -74.506768116318469, 40.541490181930207 ], [ -74.483926543659052, 40.553869185988937 ], [ -74.470902732461354, 40.556752268896616 ], [ -74.441332088092238, 40.55561256930325 ], [ -74.425035321267288, 40.557447697702528 ], [ -74.41855838677165, 40.555726787261079 ], [ -74.401064525095677, 40.547533089777723 ], [ -74.376596693786283, 40.533400570232224 ], [ -74.367845758076413, 40.5285097435466 ], [ -74.358744867180022, 40.526758868623844 ], [ -74.354273949099522, 40.52813989155085 ], [ -74.345805088119874, 40.529330959287194 ], [ -74.337596197360099, 40.528304063316483 ] ], [ [ -74.164601931527812, 41.123220715944434 ], [ -74.161412909232368, 41.116693830027202 ], [ -74.16229783614439, 41.113138879284129 ], [ -74.162632823426151, 41.112802882714064 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I29\", \"DIST_MILES\": 750.630000, \"DIST_KM\": 1208.030000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -97.237142290542465, 49.000586854709645 ], [ -97.237638412234674, 48.998389842804819 ], [ -97.254340842498976, 48.979788921145719 ], [ -97.257545316488986, 48.970888898967097 ], [ -97.260246901863908, 48.958086847930694 ], [ -97.255944949231591, 48.92208756987295 ], [ -97.23204222196037, 48.882787986503146 ], [ -97.230448424156691, 48.874986910503154 ], [ -97.22924304807087, 48.85568776088158 ], [ -97.231044438713724, 48.84688772722118 ], [ -97.228946628796265, 48.838785640561795 ], [ -97.229145519935074, 48.813688471412441 ], [ -97.232144013754493, 48.803487447990079 ], [ -97.228551350908305, 48.78928529468989 ], [ -97.213246458847735, 48.766587892009198 ], [ -97.210347606029671, 48.758686788642883 ], [ -97.203450523807589, 48.752186629215984 ], [ -97.197148352159232, 48.742787492394633 ], [ -97.195149368844397, 48.721485407445989 ], [ -97.1904502181917, 48.711384304126753 ], [ -97.190350366955172, 48.682286230142523 ], [ -97.182149150909439, 48.661385037365143 ], [ -97.182050334093447, 48.628883952538132 ], [ -97.180051301427099, 48.621585898847258 ], [ -97.180348510583769, 48.587783817093438 ], [ -97.186246789435771, 48.574985889914124 ], [ -97.186345813206472, 48.571285882364691 ], [ -97.185567947353931, 48.542281795100294 ], [ -97.186239059464171, 48.525893766007648 ], [ -97.190451233144799, 48.518184824181773 ], [ -97.190145353584924, 48.468284803127688 ], [ -97.194548487500001, 48.454086897430393 ], [ -97.19084739913454, 48.442985839816153 ], [ -97.190451421077938, 48.412284861419579 ], [ -97.189048977663262, 48.197383688496409 ], [ -97.189140075498216, 48.193771669544866 ], [ -97.191355338852802, 48.110584239951436 ], [ -97.187655403801003, 48.105483133360778 ], [ -97.170656405665525, 48.092684697467867 ], [ -97.169054469275167, 48.088984640359172 ], [ -97.168856759666127, 48.077582565277261 ], [ -97.167055982485593, 48.067484463052132 ], [ -97.116954267013369, 48.010681939984252 ], [ -97.099055065132433, 48.001080446867796 ], [ -97.094951058843947, 47.9975823114668 ], [ -97.092258168233158, 47.991383170866108 ], [ -97.093555397731947, 47.984280112617832 ], [ -97.095355652189227, 47.97668105955983 ], [ -97.093356846415659, 47.968082905895336 ], [ -97.093258415231077, 47.947681649110109 ], [ -97.093357826065429, 47.933082469219997 ], [ -97.09325922426062, 47.918780288572535 ], [ -97.09331363201909, 47.90425410855498 ], [ -97.092756796118096, 47.897979018017267 ], [ -97.088056932310792, 47.889681811790908 ], [ -97.086859951133249, 47.852678327625284 ], [ -97.077560213282752, 47.837178939927675 ], [ -97.077661024105254, 47.773679165107197 ], [ -97.076762167770099, 47.722478089078848 ], [ -97.078556084738253, 47.672002552203914 ], [ -97.080364226967347, 47.665677644057865 ], [ -97.080267221842178, 47.552278604456582 ], [ -97.081861329101343, 47.547880678940984 ], [ -97.089468615072988, 47.539778926349229 ], [ -97.090864717636904, 47.535479996388034 ], [ -97.090766210882904, 47.507579236074321 ], [ -97.085662230321446, 47.497878170963006 ], [ -97.075361870193262, 47.477278861997178 ], [ -97.073263738871432, 47.465578781121181 ], [ -97.073667666950428, 47.455378760631042 ], [ -97.07006653377664, 47.446978662082834 ], [ -97.073667240917658, 47.400778603614704 ], [ -97.071966181004768, 47.397078563442093 ], [ -97.056759776224055, 47.380381270074786 ], [ -97.049962518215565, 47.362478136119542 ], [ -97.049962446502079, 47.352980123680865 ], [ -97.049260268076637, 47.330980085747235 ], [ -97.0283627081579, 47.304578817300538 ], [ -97.017559306922053, 47.274777720535425 ], [ -97.016964133442698, 47.252080734771624 ], [ -97.010364046878848, 47.238782350063609 ], [ -96.998164881162737, 47.222378698047699 ], [ -96.990557745641766, 47.201575809036434 ], [ -96.98935975177406, 47.191077451005512 ], [ -96.977564519732724, 47.166174300431145 ], [ -96.97526051244057, 47.151673786132271 ], [ -96.96826436492718, 47.140275208367818 ], [ -96.959658217336496, 47.118274260195591 ], [ -96.957964226836268, 47.104472790113611 ], [ -96.949259049828072, 47.090071070180549 ], [ -96.943063956497994, 47.072271333715555 ], [ -96.943064024638801, 47.055871844261134 ], [ -96.941660002132679, 47.052269690672048 ], [ -96.938257929366884, 47.047970450869464 ], [ -96.925462624020824, 47.039669784817143 ], [ -96.907762263321274, 47.014967475494785 ], [ -96.90196415936235, 47.004068965301741 ], [ -96.890657000200562, 46.991868433205987 ], [ -96.884561054709721, 46.977266161138928 ], [ -96.871361875645675, 46.965767692920039 ], [ -96.850457783724124, 46.934264928722115 ], [ -96.840157752357214, 46.917667569906392 ], [ -96.839356855899794, 46.909087518801833 ], [ -96.839257913241667, 46.90496450252882 ], [ -96.83935712385798, 46.890666458580505 ], [ -96.840562365492488, 46.876266443995938 ], [ -96.841562601781575, 46.861865422485515 ], [ -96.840959793762295, 46.847564358848786 ], [ -96.84005998348421, 46.832866287212539 ], [ -96.839762094076818, 46.824714252950514 ], [ -96.839472183454674, 46.81803422391625 ], [ -96.83886237749067, 46.80356516204246 ], [ -96.839962050995268, 46.73866588524605 ], [ -96.830660575064854, 46.720164492737432 ], [ -96.831659517827276, 46.630216543687979 ], [ -96.83005738981727, 46.623262444299542 ], [ -96.823961109370643, 46.613961254447887 ], [ -96.822663300001977, 46.549961573639273 ], [ -96.83425921895433, 46.516461344459096 ], [ -96.8315589446118, 46.499962139520058 ], [ -96.830261412240603, 46.412859814199535 ], [ -96.831061727056834, 46.288357942262031 ], [ -96.833754732050366, 46.275059758630228 ], [ -96.833960662326561, 46.261658557220862 ], [ -96.835752575117581, 46.051559646324733 ], [ -96.83575889589757, 45.95115794131182 ], [ -96.836956894640082, 45.946358962795976 ], [ -96.84355701677616, 45.935605005878479 ], [ -96.86490441881125, 45.900891123897061 ], [ -96.865346023048545, 45.849629330350652 ], [ -96.864994850646426, 45.829499412916448 ], [ -96.867008879459988, 45.824899424583315 ], [ -96.962424790238828, 45.704080545224798 ], [ -96.985709965307294, 45.659928720339224 ], [ -96.989889956786683, 45.648889772443937 ], [ -96.989506246907879, 45.445232168755958 ], [ -96.992771284705341, 45.438239203210493 ], [ -97.020924763512966, 45.403171306492418 ], [ -97.02766886711764, 45.395282325918252 ], [ -97.045873214517457, 45.380122332076077 ], [ -97.049650260217064, 45.374980347290339 ], [ -97.051922570182057, 45.315192760367083 ], [ -97.052174346571931, 45.296962888748659 ], [ -97.051715739101851, 45.249943226704474 ], [ -97.051212094516245, 45.209911653027078 ], [ -97.057116973584243, 45.192532801080887 ], [ -97.056215285769525, 45.150632250305677 ], [ -97.056321606185605, 45.107614705311853 ], [ -97.05410817471396, 45.020514639653022 ], [ -97.05560184787538, 44.933806707659137 ], [ -97.056387303962865, 44.897619627683056 ], [ -97.056501186335765, 44.889868610866245 ], [ -97.056722940155794, 44.873656575851456 ], [ -97.051015646421376, 44.865843573905472 ], [ -96.965691936766191, 44.804373550786899 ], [ -96.889593883625977, 44.749949499972018 ], [ -96.884740688390607, 44.746443534315532 ], [ -96.864460846897416, 44.730814675927803 ], [ -96.842105546707188, 44.694365941303872 ], [ -96.785469441736737, 44.619575345494958 ], [ -96.780548174752283, 44.613654367995885 ], [ -96.768234620059175, 44.604736389681364 ], [ -96.763915379547328, 44.599395406475637 ], [ -96.762907807057942, 44.572685529800253 ], [ -96.757338306853924, 44.556716587474362 ], [ -96.757155038280032, 44.543834645603305 ], [ -96.756680201476144, 44.427376720974955 ], [ -96.757898997090635, 44.329816907208674 ], [ -96.757898950419261, 44.326158951460648 ], [ -96.758204774848821, 44.311598129334641 ], [ -96.758097400039631, 44.282500480774225 ], [ -96.75645580097698, 44.221019154984063 ], [ -96.758218746629012, 44.19572841885708 ], [ -96.759706618994642, 44.15625082282196 ], [ -96.759362137566967, 44.051270872700421 ], [ -96.758690931059576, 43.978990626654365 ], [ -96.757936130698312, 43.874953827447143 ], [ -96.758653176070069, 43.862902971646896 ], [ -96.770959536682, 43.848255224059606 ], [ -96.780358806437164, 43.835575437851944 ], [ -96.781091848819429, 43.819114638629308 ], [ -96.781228948809996, 43.749955461936487 ], [ -96.781312656423168, 43.667805868632378 ], [ -96.771485370267428, 43.646073879677914 ], [ -96.770272243119365, 43.615568012849465 ], [ -96.770349235137985, 43.612695027310096 ], [ -96.771043213125211, 43.601873086111532 ], [ -96.771226132638319, 43.576727208027194 ], [ -96.778062239534194, 43.569055320590138 ], [ -96.780358194396243, 43.543875470144499 ], [ -96.780480092956495, 43.514768615000733 ], [ -96.787683170290109, 43.500509773674608 ], [ -96.794106093226247, 43.489257176570753 ], [ -96.794671075675396, 43.487696230039973 ], [ -96.796502011473422, 43.482226415149654 ], [ -96.798210507184805, 43.45198833673723 ], [ -96.796341137077391, 43.432896887863244 ], [ -96.796629328601, 43.330260957582205 ], [ -96.796292813937939, 43.301453816774547 ], [ -96.796468046524097, 43.257853120722494 ], [ -96.795969163778835, 43.083378005976599 ], [ -96.794982269342142, 42.95424300114388 ], [ -96.796126164072504, 42.851714625893798 ], [ -96.796216550520114, 42.7958460540953 ], [ -96.791089325817012, 42.786218305137304 ], [ -96.785581111159573, 42.778378512893823 ], [ -96.776783825275146, 42.771096712679594 ], [ -96.700731964572597, 42.716088296182427 ], [ -96.697557813979714, 42.709817229995814 ], [ -96.697335683196187, 42.692178202794381 ], [ -96.696771624230294, 42.686326185427738 ], [ -96.694467528786703, 42.683137142073015 ], [ -96.682267086130821, 42.674236927593569 ], [ -96.665505528297402, 42.667885646808188 ], [ -96.654686173429326, 42.663566469780946 ], [ -96.596937338213365, 42.621344628641211 ], [ -96.569799568587641, 42.599494302119801 ], [ -96.526768474266376, 42.568113857615835 ], [ -96.512318151393657, 42.554048750005165 ], [ -96.509213087666623, 42.550214733385033 ], [ -96.500415916531736, 42.53875569459219 ], [ -96.499415947640784, 42.524866769290874 ], [ -96.499270958576787, 42.521196790076573 ], [ -96.497874947860453, 42.515943811412214 ], [ -96.486461770136472, 42.499105825898155 ], [ -96.483561735047559, 42.497083800287449 ], [ -96.476863611538718, 42.495218748301504 ], [ -96.466685410178997, 42.493154670569254 ], [ -96.456614172401018, 42.493955602484128 ], [ -96.441400857209672, 42.491495486241682 ], [ -96.424601469345589, 42.492075369807836 ], [ -96.41282120709792, 42.491525284066732 ], [ -96.407854110062004, 42.489744240513083 ], [ -96.396279863098755, 42.487554147097221 ], [ -96.386849707140669, 42.479273035940942 ], [ -96.382409650182311, 42.472481966727692 ], [ -96.375069643469431, 42.446374766405114 ], [ -96.375153722886694, 42.434552701544341 ], [ -96.367844591701186, 42.423642576707536 ], [ -96.365723569282849, 42.417424522068103 ], [ -96.366219717592855, 42.394574394624946 ], [ -96.356225501618368, 42.378628203177158 ], [ -96.324272632739707, 42.335472590273127 ], [ -96.308578120323503, 42.321361314843898 ], [ -96.300566857771216, 42.303501090623961 ], [ -96.270033710419611, 42.274561490886285 ], [ -96.243359324159428, 42.235460835622376 ], [ -96.241833142229225, 42.227911736859809 ], [ -96.241008917165956, 42.214540563024698 ], [ -96.241527695151902, 42.196432328440551 ], [ -96.221400144507413, 42.153828769084633 ], [ -96.173789026734667, 42.077957782750005 ], [ -96.13249669794493, 42.026977130895709 ], [ -96.118320939667697, 42.009676912265697 ], [ -96.101488972250465, 41.973067834173825 ], [ -96.10389978132423, 41.930907903854958 ], [ -96.104525456996711, 41.880217987758634 ], [ -96.102892300333963, 41.865444009111478 ], [ -96.101198158616469, 41.852786026288932 ], [ -96.087274619052991, 41.839298017711663 ], [ -96.051087291144341, 41.796358978056176 ], [ -96.052567295615475, 41.785937991739495 ], [ -96.045150992691987, 41.760107991297588 ], [ -96.047989092284922, 41.736179347806008 ], [ -96.045593122115548, 41.713348898296438 ], [ -96.044144093865953, 41.710788955330315 ], [ -96.040733121986406, 41.682068643564065 ], [ -96.025619855320457, 41.650079354417429 ], [ -95.962767905207244, 41.600901341035531 ], [ -95.943937733799117, 41.584330674265871 ], [ -95.919737493636944, 41.56814196561325 ], [ -95.918028486248062, 41.565040027459595 ], [ -95.917341549340037, 41.550071347151878 ], [ -95.917265703112122, 41.517922037800567 ], [ -95.903395580963675, 41.506585216837209 ], [ -95.900915646391212, 41.493554478583967 ], [ -95.899481807705826, 41.475484850127565 ], [ -95.900497377299686, 41.420134013688767 ], [ -95.89923079760338, 41.375655939848393 ], [ -95.901413025723883, 41.357445329638601 ], [ -95.900269032467875, 41.354317390740206 ], [ -95.892150964256288, 41.342987597643081 ], [ -95.882422925472255, 41.322918984047831 ], [ -95.871223764318714, 41.310357209430485 ], [ -95.868735752102722, 41.304353327768247 ], [ -95.866836785324139, 41.294267534765588 ], [ -95.867370862788505, 41.286267705941121 ], [ -95.871491015957588, 41.280618839093357 ], [ -95.878273240917622, 41.275178976159644 ], [ -95.891663602038605, 41.274599031885529 ], [ -95.906922062454257, 41.269358190927804 ], [ -95.907678161867068, 41.261808351032073 ], [ -95.906373165738515, 41.244657605610108 ], [ -95.901863958861526, 41.239519604464199 ], [ -95.891663560717049, 41.232408594484625 ], [ -95.851256416525317, 41.232038490026859 ], [ -95.845382245016367, 41.231657476153138 ], [ -95.839072022186542, 41.228807471081211 ], [ -95.83233570191922, 41.220568488255402 ], [ -95.824095341786105, 41.212519504310642 ], [ -95.823240273401979, 41.209730514739206 ], [ -95.823285489071324, 41.160196731952851 ], [ -95.821980279370976, 41.149317779022731 ], [ -95.820858949607228, 41.130548861939921 ], [ -95.831783684878786, 41.094130013429805 ], [ -95.821864941549833, 41.065200150763737 ], [ -95.819453556743056, 41.045329243933352 ], [ -95.818042379149261, 41.036708286014814 ], [ -95.8064364865225, 41.001689483050775 ], [ -95.800317916878896, 40.983149628236724 ], [ -95.799432427341017, 40.961760777227553 ], [ -95.800713164551865, 40.947909871185765 ], [ -95.798195595571713, 40.925079028496874 ], [ -95.799308119635938, 40.901619189617961 ], [ -95.799231800580657, 40.887009289588107 ], [ -95.805899262234107, 40.853001548146167 ], [ -95.806509613899507, 40.822201772496058 ], [ -95.805608290874162, 40.808529865614176 ], [ -95.807911714722948, 40.778691096631292 ], [ -95.817166555037772, 40.75830232361286 ], [ -95.817250074045674, 40.728871402696704 ], [ -95.813282875884781, 40.723722376775108 ], [ -95.801548379536797, 40.71501330352956 ], [ -95.782809387908458, 40.689061242446797 ], [ -95.739884147084027, 40.641721263258887 ], [ -95.709242629708896, 40.625020309425686 ], [ -95.683255224993232, 40.606549392957589 ], [ -95.678158897069039, 40.600492426884244 ], [ -95.669842405066674, 40.593061469750168 ], [ -95.652667510200303, 40.584401522261395 ], [ -95.649882332357521, 40.581479541731127 ], [ -95.648906260210779, 40.579991551805307 ], [ -95.639895595385681, 40.566590645599362 ], [ -95.61027542406913, 40.526429963024711 ], [ -95.605720081664103, 40.520281016474975 ], [ -95.603927944750865, 40.517794038388587 ], [ -95.603446877095237, 40.515772054951377 ], [ -95.595794018011404, 40.485354060498139 ], [ -95.591131686169874, 40.473298952644718 ], [ -95.591078679804241, 40.47290194896047 ], [ -95.586012312096088, 40.458562812049017 ], [ -95.573781616891466, 40.44193063166172 ], [ -95.568829313520467, 40.432321521098579 ], [ -95.564824070739178, 40.424531427304302 ], [ -95.555385516277795, 40.40709020197172 ], [ -95.535914422445742, 40.372250689166705 ], [ -95.517961586723445, 40.357571383082991 ], [ -95.512682321433275, 40.34989223997006 ], [ -95.504388949028126, 40.343521087889265 ], [ -95.497613656025479, 40.333617855050477 ], [ -95.494187424783163, 40.311389459647984 ], [ -95.480232906447483, 40.28667682818444 ], [ -95.465866434856949, 40.271669343457063 ], [ -95.455764118718335, 40.263834047042614 ], [ -95.41722704504717, 40.234479413592844 ], [ -95.379980135215391, 40.213128061429771 ], [ -95.374753015359119, 40.20774504759121 ], [ -95.36115770699881, 40.193868005182594 ], [ -95.355519576465099, 40.189617962399723 ], [ -95.316577623206371, 40.181206334106854 ], [ -95.29988424138115, 40.1709061587108 ], [ -95.275622684064189, 40.15874485367393 ], [ -95.248637071872153, 40.150496445396115 ], [ -95.243555030697621, 40.14588445379561 ], [ -95.237604015714652, 40.132006578931893 ], [ -95.233713002397479, 40.123404653887235 ], [ -95.219743874328472, 40.111365665001117 ], [ -95.216043844846055, 40.106677687953173 ], [ -95.210534857724625, 40.083377942179439 ], [ -95.205446805090787, 40.079306940691694 ], [ -95.192750652487049, 40.074713861431867 ], [ -95.138375996678619, 40.045134645816667 ], [ -95.028678240340639, 39.980833924138764 ], [ -95.015257953414007, 39.97450473981705 ], [ -94.994352507621159, 39.971414517231153 ], [ -94.972211798458915, 39.96760341303623 ], [ -94.905620124688852, 39.916746136555226 ], [ -94.859918377874621, 39.888334092349986 ], [ -94.81075950195526, 39.858045159764721 ], [ -94.8063723223257, 39.854456175003136 ], [ -94.80539625646729, 39.851774185935135 ], [ -94.805296830731351, 39.821020306456326 ], [ -94.803411693383751, 39.815103333445265 ], [ -94.800848502174674, 39.806734372899093 ], [ -94.793240868328468, 39.77707552130758 ], [ -94.78944138142576, 39.749845659290429 ], [ -94.788754087376532, 39.724203880628771 ], [ -94.788800038647722, 39.719515920297063 ], [ -94.78846391354854, 39.708667014191086 ], [ -94.788783529495319, 39.578155123048973 ], [ -94.787181004233787, 39.531784525949163 ], [ -94.786188654837318, 39.494846907124796 ], [ -94.789957779657172, 39.432249168573499 ], [ -94.789674818356104, 39.385550125837554 ], [ -94.787881787635328, 39.381999206841733 ], [ -94.775598560163132, 39.374179423273254 ], [ -94.768495433648511, 39.360061743162312 ], [ -94.762636323971378, 39.354129890103586 ], [ -94.756128200582936, 39.348469034034423 ], [ -94.746613974605225, 39.345024138406998 ], [ -94.726777365101356, 39.33702134298705 ], [ -94.694305391527308, 39.319550748267545 ], [ -94.688049217853575, 39.310520931613389 ], [ -94.68540116772985, 39.295201226792081 ], [ -94.682998105071349, 39.290635316518909 ], [ -94.661368534971814, 39.261315886891943 ], [ -94.658507469883872, 39.254362017262693 ], [ -94.657706483947337, 39.233793337046286 ], [ -94.655035415439556, 39.228521416243701 ], [ -94.64071503232816, 39.210550690150903 ], [ -94.633565837285303, 39.204104790111913 ], [ -94.615613340699312, 39.192442975164525 ], [ -94.612844264573923, 39.190402007441207 ], [ -94.601429941650778, 39.187518058337915 ], [ -94.593174712271178, 39.183028131251056 ], [ -94.584614472131534, 39.179782185992437 ], [ -94.577244261702972, 39.179153200760815 ], [ -94.567729988543917, 39.179221206632668 ], [ -94.563709875961635, 39.177634233443186 ], [ -94.559703768975766, 39.173114304493588 ], [ -94.558933754613932, 39.16873537108021 ], [ -94.559589809180153, 39.148463676134298 ], [ -94.561069858989299, 39.144252738357459 ], [ -94.56591400581469, 39.139625803915543 ], [ -94.568730096325098, 39.133964886648137 ], [ -94.568791107436354, 39.128604967216688 ], [ -94.566525052562511, 39.122921054786552 ], [ -94.564854014858852, 39.117172142866174 ], [ -94.565609048238983, 39.110443243446859 ], [ -94.5722702491028, 39.104405327816423 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I29  L\", \"DIST_MILES\": 13.580000, \"DIST_KM\": 21.850000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -94.8495554167488, 39.767965341328193 ], [ -94.848059372807924, 39.768003347090321 ], [ -94.833884052105915, 39.775324382156555 ], [ -94.830465972538974, 39.776926389844846 ], [ -94.803335167734076, 39.777033485709204 ] ], [ [ -94.803335167734076, 39.777033485709204 ], [ -94.803601883123733, 39.755754569556466 ], [ -94.801892721788121, 39.747225623873462 ], [ -94.800099482053881, 39.730604773068038 ], [ -94.795171281521078, 39.725256841538894 ], [ -94.788754087376532, 39.724203880628771 ], [ -94.783466934173404, 39.723936907744914 ], [ -94.777507746379101, 39.722124951220273 ], [ -94.77011551159903, 39.719538008137917 ] ], [ [ -94.803335167734076, 39.777033485709204 ], [ -94.803793305627551, 39.786073448131546 ], [ -94.810468579770699, 39.791586406428365 ], [ -94.814955858913834, 39.802194355680705 ], [ -94.815169121014222, 39.820802289599499 ], [ -94.815123173762728, 39.824739275807985 ], [ -94.815894302998927, 39.832475247523099 ], [ -94.814124518993751, 39.852014180235514 ], [ -94.81075950195526, 39.858045159764721 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I290\", \"DIST_MILES\": 59.760000, \"DIST_KM\": 96.180000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -88.02817067329066, 42.057812321942443 ], [ -88.028979507990698, 42.05094245152825 ], [ -88.030863181880392, 42.037091710827752 ], [ -88.030725619558453, 42.016862103685995 ], [ -88.023636710515888, 41.992528536185027 ], [ -88.023445483656985, 41.985525597607023 ], [ -88.026649745461327, 41.959150806153431 ], [ -87.986577897062872, 41.941100254273302 ], [ -87.975965172466218, 41.930182454147648 ], [ -87.966679756629787, 41.927508570584749 ], [ -87.953388206565336, 41.925089724922969 ], [ -87.948154909766046, 41.921530806077442 ], [ -87.944858652531977, 41.916998874964577 ], [ -87.923403566964453, 41.906406170506884 ], [ -87.919970366309528, 41.90380022413725 ], [ -87.918069919830899, 41.891307336871584 ], [ -87.919549702363767, 41.882442389388196 ], [ -87.917192231901936, 41.869655508055452 ], [ -87.905792971011905, 41.874130582500221 ], [ -87.899155708529008, 41.873081653061554 ], [ -87.892158379674527, 41.870223739862936 ], [ -87.88282804654618, 41.869918830007741 ], [ -87.876296849250096, 41.870914884609014 ], [ -87.833814394617249, 41.871655280825998 ], [ -87.819836931077447, 41.872433408010259 ], [ -87.811429691980109, 41.874302476005795 ], [ -87.804746449765005, 41.873963541437654 ], [ -87.773258277675865, 41.871216855472021 ], [ -87.744998300906687, 41.871606112237856 ], [ -87.739611113787475, 41.871820153383055 ], [ -87.734888993748569, 41.873617180041848 ], [ -87.690850480845072, 41.876009506938388 ], [ -87.686303313214324, 41.875837543362891 ], [ -87.645705856832762, 41.875783858175694 ] ], [ [ -71.846016026854144, 42.195752768651779 ], [ -71.837632618173373, 42.210728675474087 ], [ -71.82859319508519, 42.22064768845317 ], [ -71.824017158449251, 42.232484575986014 ], [ -71.81220115124782, 42.241833662355013 ], [ -71.805648162183971, 42.242867783951624 ], [ -71.802986626040251, 42.245465795607942 ], [ -71.79734169570763, 42.254159796228635 ], [ -71.793924326106165, 42.258519826855675 ], [ -71.793893428879116, 42.262318790260558 ], [ -71.793863520585433, 42.265694757791579 ], [ -71.795030500867654, 42.2717836730572 ], [ -71.796663333308913, 42.274876607761946 ], [ -71.798440333190058, 42.285291467703573 ], [ -71.797731492509328, 42.287305463118606 ], [ -71.793177252476411, 42.290002534048199 ], [ -71.779812288436645, 42.290063820014026 ], [ -71.748522236281673, 42.295679439678203 ], [ -71.738093934153753, 42.301809601009865 ], [ -71.729665490740302, 42.313589662948253 ], [ -71.72248772507956, 42.319918752585323 ], [ -71.697939624604317, 42.328021196648535 ], [ -71.686413465340195, 42.331569408601396 ], [ -71.668769193312087, 42.33284377726681 ], [ -71.651423064993338, 42.340340076437869 ], [ -71.633450943751953, 42.343529435709854 ], [ -71.623412619801385, 42.347427614724253 ], [ -71.600711542539074, 42.359985980688855 ], [ -71.590413267724728, 42.363145174421746 ] ], [ [ -78.914402964873602, 42.986968826494611 ], [ -78.904789709133581, 42.991542845416937 ], [ -78.882908039873072, 42.994864943207901 ], [ -78.874446774757786, 42.99562798512234 ], [ -78.862704396289914, 42.995731050437143 ], [ -78.853007126677412, 42.999805075383463 ], [ -78.849856039078432, 43.000923086527187 ], [ -78.838113660440087, 43.001018152443443 ], [ -78.822488198371403, 43.004219223288239 ], [ -78.813599878406364, 43.001743287260211 ], [ -78.807862644917918, 42.997356347911001 ], [ -78.802842446621227, 42.993492403251906 ], [ -78.794007081330051, 42.984691513994399 ], [ -78.783790700999532, 42.97861161277401 ], [ -78.769927170335933, 42.968117760953923 ], [ -78.766524986669438, 42.959270839580284 ], [ -78.765982908912079, 42.952263890000744 ], [ -78.763434807273526, 42.949634921517728 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I291\", \"DIST_MILES\": 7.810000, \"DIST_KM\": 12.570000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -72.600547477755669, 42.105560753328803 ], [ -72.599563601027384, 42.107692725206149 ], [ -72.596771880005349, 42.10936373311587 ], [ -72.594926071042053, 42.110843731077544 ], [ -72.583971194957186, 42.118591742773255 ], [ -72.559376661784341, 42.13029089611878 ], [ -72.550313723483683, 42.142337814156491 ], [ -72.549451854488211, 42.145110776580381 ], [ -72.547331360053178, 42.161979499328652 ] ], [ [ -72.664732820200683, 41.818619001050138 ], [ -72.657035413698367, 41.818638048990074 ], [ -72.646652175257771, 41.8137561894182 ], [ -72.615275556568903, 41.805794501577545 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I293\", \"DIST_MILES\": 10.690000, \"DIST_KM\": 17.210000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -71.472122067233215, 43.049103451457519 ], [ -71.480253229349685, 43.039345387188618 ], [ -71.486118970195889, 43.034005320508349 ], [ -71.489101033156658, 43.023366374760656 ], [ -71.485935430040982, 43.018746495559043 ], [ -71.479161454891127, 43.013447704000946 ], [ -71.475560804350891, 43.005375875237107 ], [ -71.475698608024274, 43.000805924175197 ], [ -71.47153324882926, 42.997057081972045 ], [ -71.470984269047449, 42.99433714497016 ], [ -71.470846019967013, 42.984956323089726 ], [ -71.470700884081282, 42.979406429872675 ], [ -71.473638221290869, 42.974928448131948 ], [ -71.477177342808048, 42.966726522754847 ], [ -71.472630650217226, 42.949106952427293 ], [ -71.464749994295218, 42.946349178589806 ], [ -71.454642917884897, 42.949359347399124 ], [ -71.449006044583811, 42.952708410956632 ], [ -71.436359485486648, 42.956896616646553 ], [ -71.42770916503072, 42.959788757807686 ], [ -71.415748439033479, 42.961795991119956 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I294\", \"DIST_MILES\": 45.280000, \"DIST_KM\": 72.880000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -87.917192231901936, 41.869655508055452 ], [ -87.918519052272757, 41.862224551507566 ], [ -87.919640947536024, 41.857501576673478 ], [ -87.919495551614375, 41.844638675038503 ], [ -87.919357500875591, 41.843124687711857 ], [ -87.917952923454578, 41.825691831615671 ], [ -87.914229588566926, 41.818809916059038 ], [ -87.913955385969757, 41.812427966150075 ], [ -87.908239715919152, 41.796616132831602 ], [ -87.906987934425203, 41.772099324470602 ], [ -87.902753607252762, 41.765870404757933 ], [ -87.89201110259809, 41.760808528180014 ], [ -87.874988376489043, 41.75513970450961 ], [ -87.857020564286813, 41.746949897221434 ], [ -87.854197466711952, 41.746720920813331 ], [ -87.842768082230378, 41.746225014330356 ], [ -87.827066417253604, 41.739885174022824 ], [ -87.812226669264746, 41.728887356884073 ], [ -87.806344236894731, 41.71885846403984 ], [ -87.79838579690319, 41.711278576611768 ], [ -87.787567232792966, 41.702344724657621 ], [ -87.779852550091746, 41.684209906509935 ], [ -87.772543131097081, 41.676512022398818 ], [ -87.751714223196657, 41.666472282697825 ], [ -87.738484701512533, 41.663138423003453 ], [ -87.736302599888631, 41.661936449970071 ], [ -87.727284163326573, 41.656211564509071 ], [ -87.71729639364257, 41.637374761622596 ], [ -87.710269060279742, 41.633002843240298 ], [ -87.700594740488512, 41.633010920052001 ], [ -87.694918501746713, 41.630759976981068 ], [ -87.687166969655394, 41.618496099813726 ], [ -87.681314524214031, 41.607177198966056 ], [ -87.680970375931864, 41.601055231182904 ], [ -87.680672985435294, 41.584041315774073 ], [ -87.678543848914472, 41.5809933442928 ] ], [ [ -87.874427273981325, 42.150633926911297 ], [ -87.88261345943215, 42.144672064161171 ], [ -87.887313489471083, 42.138191221014907 ], [ -87.886062090314056, 42.124030599100919 ], [ -87.880560735867249, 42.118526768730568 ], [ -87.86989417260294, 42.112800972236094 ], [ -87.868047954756804, 42.106827144792767 ], [ -87.868123588739351, 42.09158756223507 ], [ -87.86599529394293, 42.082836815827108 ], [ -87.868549686115628, 42.053636599302251 ], [ -87.870030598077975, 42.047670750280417 ], [ -87.869290394713659, 42.040445954108307 ], [ -87.865780048451086, 42.031630227897971 ], [ -87.865573812338098, 42.022177490339246 ], [ -87.868388625517767, 42.01010079357205 ], [ -87.865901222111845, 41.997741112802316 ], [ -87.867564068444096, 41.990440144652027 ], [ -87.87035695437531, 41.983089164874308 ], [ -87.869539621798921, 41.972835244567065 ], [ -87.879938525012875, 41.956775245934629 ], [ -87.885431372406075, 41.944965272023197 ], [ -87.892458510836747, 41.9411232267149 ], [ -87.912898140135255, 41.937614041664439 ], [ -87.916499212798229, 41.935745018637476 ], [ -87.919726192481377, 41.931266019306378 ], [ -87.919748993182225, 41.924682068753469 ], [ -87.9197648888277, 41.921230094640414 ], [ -87.919809456978541, 41.90697020180172 ], [ -87.919970366309528, 41.90380022413725 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I295\", \"DIST_MILES\": 211.820000, \"DIST_KM\": 340.900000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -70.351802693783128, 43.625583643503084 ], [ -70.339096636742781, 43.625603128136341 ], [ -70.329753610465019, 43.626881457467583 ], [ -70.318129360705129, 43.629158853386102 ], [ -70.295188081466421, 43.638970520277432 ], [ -70.294029525355498, 43.640515530489616 ], [ -70.286608645473677, 43.655858473481615 ], [ -70.277090872441306, 43.65956276137603 ], [ -70.270858996055111, 43.662045949225224 ], [ -70.261875082969524, 43.665914214426856 ], [ -70.25764284887002, 43.673819202439667 ], [ -70.257391201123127, 43.679182091292347 ], [ -70.253409707290118, 43.683454151614633 ], [ -70.252747065471397, 43.686281113900314 ], [ -70.256652055892019, 43.691361845441392 ], [ -70.256896449125151, 43.70071162476286 ], [ -70.256126134022196, 43.70931346087189 ], [ -70.252618569658054, 43.715142467310244 ], [ -70.243794971901892, 43.723863647032971 ], [ -70.231866423630265, 43.73154300140542 ] ], [ [ -81.635958025074046, 30.457517216369045 ], [ -81.64911167510158, 30.459938133022099 ], [ -81.688023493104595, 30.460118954179233 ], [ -81.696080844530741, 30.458638930950496 ], [ -81.705251216248357, 30.455309919011384 ], [ -81.717924651874654, 30.446274940818768 ], [ -81.737296060646869, 30.418409091608872 ], [ -81.747321408729846, 30.41223909467644 ], [ -81.751936550207461, 30.408948101884622 ], [ -81.754126559646423, 30.404447131855949 ], [ -81.759680444474895, 30.385097276867192 ], [ -81.760832259274196, 30.371936386030011 ], [ -81.760969654128473, 30.337377683614143 ], [ -81.763318645478805, 30.331308728001108 ], [ -81.7700867942375, 30.323589772143695 ], [ -81.770513666282568, 30.315267843067357 ], [ -81.770574362000431, 30.297767995011665 ], [ -81.77190115651841, 30.282818120946473 ], [ -81.76331034291124, 30.25748936599468 ], [ -81.762790828382066, 30.224509571192769 ], [ -81.760204549534066, 30.212550644344951 ], [ -81.757587357036073, 30.206738683977935 ], [ -81.753330118053455, 30.202498719906487 ], [ -81.739550451199733, 30.196679841303272 ], [ -81.723756699693553, 30.191279995101674 ], [ -81.705330915249604, 30.191520136963135 ], [ -81.647657405265448, 30.188730606396192 ], [ -81.628461466551343, 30.181524813272141 ], [ -81.613521672426074, 30.172301007354104 ], [ -81.604160220968936, 30.169442107377613 ], [ -81.567789608265585, 30.166991427724707 ], [ -81.556154139273076, 30.168900506067775 ] ], [ [ -71.304672783516097, 41.955482989879656 ], [ -71.34647459169436, 41.949008108348011 ], [ -71.366781323173768, 41.950209647624192 ], [ -71.381899970504904, 41.952830292729033 ], [ -71.403258467937576, 41.950582844358458 ], [ -71.422169476421047, 41.950841431910931 ], [ -71.437081942557697, 41.944829158406179 ], [ -71.445442516230145, 41.94083201032003 ], [ -71.450842646966663, 41.939781902670617 ], [ -71.476305824176592, 41.943032334043558 ], [ -71.485765323732537, 41.940991149294845 ], [ -71.502142563301561, 41.930965883985728 ], [ -71.505994805962843, 41.925075854669075 ], [ -71.509068977732696, 41.911887894267863 ], [ -71.512173408419301, 41.908550859363118 ], [ -71.522081670097521, 41.900584727318808 ], [ -71.523745316609791, 41.896854722496712 ], [ -71.522211387804703, 41.890590797854102 ], [ -71.516070052479549, 41.879993995063202 ], [ -71.515711826187129, 41.869332080727261 ], [ -71.515200692381981, 41.861290150149522 ], [ -71.511553973308153, 41.850754300408987 ], [ -71.516686702348011, 41.832371333837557 ], [ -71.516274663496461, 41.828511370546224 ], [ -71.512917958215596, 41.820271499077236 ], [ -71.509890193254122, 41.811688624171182 ], [ -71.511170672358972, 41.799389689455708 ], [ -71.507029027289846, 41.78897985202186 ], [ -71.501459649705907, 41.780458031100366 ], [ -71.491145940241054, 41.77421730478784 ], [ -71.485088639049465, 41.768873480376875 ], [ -71.481548933089556, 41.761701614372349 ], [ -71.481548754557835, 41.755330663229671 ], [ -71.490726043646831, 41.739282534220514 ], [ -71.490230001290897, 41.735219559115727 ], [ -71.487346299314368, 41.73152363615705 ], [ -71.486880348541689, 41.730962648485274 ], [ -71.481120958536593, 41.724012800985371 ], [ -71.474377679092356, 41.715940979468343 ], [ -71.472927824530444, 41.713831019124413 ] ], [ [ -76.980544618561552, 38.878042746315501 ], [ -76.985214688715757, 38.876932753159132 ], [ -76.991103788982159, 38.877580724998552 ], [ -76.990836761584873, 38.873571797472998 ], [ -76.988410695483722, 38.868951887184295 ], [ -76.993766756078543, 38.86430195464591 ], [ -76.998969832363969, 38.86283296538609 ], [ -77.002700873462061, 38.860022006098092 ], [ -77.00693488543196, 38.85022217007284 ], [ -77.007034860622767, 38.845282257532126 ], [ -77.008804853610584, 38.838442374611574 ], [ -77.016410933003741, 38.828303535507224 ], [ -77.017921911650433, 38.817954714957139 ], [ -77.022498959108802, 38.809672849778678 ], [ -77.022338933655831, 38.804461942347977 ], [ -77.020431875524295, 38.799556034115064 ], [ -77.016395776600731, 38.795158122606502 ] ], [ [ -77.605337207937183, 37.655506669196235 ], [ -77.598225974964109, 37.662304522099745 ], [ -77.587368645893577, 37.668667362078743 ], [ -77.561618912095085, 37.677136088604364 ], [ -77.540424331755958, 37.680903914941041 ], [ -77.528247003293359, 37.682475824690769 ], [ -77.517786735075433, 37.680934795782854 ], [ -77.499697282148617, 37.675593791904845 ], [ -77.473260715963548, 37.661014908721633 ], [ -77.460061410024949, 37.658713882588287 ], [ -77.450616188837856, 37.657645854097304 ], [ -77.442528998697384, 37.656974825591163 ], [ -77.430374716066609, 37.652743837777734 ], [ -77.419991470371301, 37.651145813885009 ], [ -77.413597320381456, 37.644763891353605 ], [ -77.40805818765449, 37.639865947761798 ], [ -77.402306047824979, 37.636985968712956 ], [ -77.375724394860711, 37.631183937657596 ], [ -77.371986300647023, 37.629313951362676 ], [ -77.369193226536396, 37.625846997023338 ], [ -77.36087698503934, 37.607464271036832 ], [ -77.35478881417103, 37.600315363806828 ], [ -77.333510212317705, 37.582836560064948 ], [ -77.313008640777397, 37.575066594298654 ], [ -77.295545103878638, 37.560078767489266 ], [ -77.286213795675479, 37.549694901058899 ], [ -77.272877312527569, 37.529965176327124 ], [ -77.270428185908102, 37.520394329172575 ], [ -77.271900185079858, 37.513066462135519 ], [ -77.274113228854759, 37.509496534012953 ], [ -77.291905730212747, 37.488996911372936 ], [ -77.310582351952533, 37.462416318724685 ], [ -77.33035901332758, 37.435057745958389 ], [ -77.333983135870668, 37.429716828780911 ], [ -77.335730263926052, 37.399177206251167 ], [ -77.339552429230906, 37.379211467651807 ], [ -77.338644415313524, 37.373687529529654 ], [ -77.340689546819249, 37.345729878585331 ], [ -77.339987552274138, 37.334900005626046 ], [ -77.336043459237359, 37.323868116812591 ], [ -77.332533371561368, 37.315979192166552 ], [ -77.334723446867073, 37.312550245917684 ], [ -77.336889518810466, 37.310211286447128 ], [ -77.33688953515076, 37.303601366249005 ], [ -77.329062336932068, 37.286896522549867 ], [ -77.329092353804455, 37.280388601048436 ], [ -77.329657395577996, 37.270409724466468 ], [ -77.325461276066662, 37.266735743967381 ], [ -77.322546190059867, 37.265408742722407 ], [ -77.305242689095991, 37.253708780200114 ], [ -77.300542525702014, 37.248841798274761 ], [ -77.293996022934834, 37.235028801017172 ], [ -77.29182167301073, 37.222199828394572 ], [ -77.295384640435984, 37.215538866467014 ], [ -77.301487688554346, 37.208718915679114 ], [ -77.314037893213239, 37.199158998471908 ], [ -77.327298185789459, 37.192201072005673 ], [ -77.335828316538453, 37.184640121990562 ], [ -77.339437275798744, 37.176542150225785 ], [ -77.340688148844052, 37.168039168957129 ], [ -77.351934357002818, 37.158922221163202 ] ], [ [ -73.755767521041989, 40.72550559830453 ], [ -73.755004540530692, 40.724235624588978 ] ], [ [ -73.755767521041989, 40.72550559830453 ], [ -73.754264571944219, 40.724677622462082 ] ], [ [ -73.755767521041989, 40.72550559830453 ], [ -73.756774488194196, 40.726222579417154 ], [ -73.765509205310693, 40.732509413526287 ], [ -73.771872058037175, 40.744659164522588 ], [ -73.777456929073765, 40.758475885051602 ], [ -73.784185741519295, 40.772368592468013 ], [ -73.78646671137777, 40.78454436276828 ], [ -73.790762568218639, 40.788260266983073 ], [ -73.793768478101626, 40.793097160983649 ], [ -73.793836505446208, 40.799849042495453 ], [ -73.794042542723105, 40.810006863513387 ], [ -73.795843494829597, 40.814344775069834 ], [ -73.800543331991307, 40.817041695095327 ], [ -73.815236805846183, 40.820787527646786 ], [ -73.837338034542086, 40.828862235682834 ] ], [ [ -75.61660086774026, 39.696682591319885 ], [ -75.603783418132736, 39.699775729657617 ], [ -75.60170834494015, 39.700233752162603 ], [ -75.589873924672261, 39.703071882655102 ], [ -75.58004760634239, 39.696117953687079 ], [ -75.576606489694242, 39.695808986704542 ], [ -75.569381240159331, 39.696408061519151 ], [ -75.538954219612862, 39.694672356748605 ], [ -75.509725330084365, 39.685986592666872 ], [ -75.492847922000692, 39.679955674432144 ], [ -75.488796864805195, 39.677121671588125 ], [ -75.486485815455794, 39.677048679964393 ], [ -75.484371744874863, 39.679326701784589 ], [ -75.460674004856514, 39.70066589324589 ], [ -75.431804220117527, 39.717077026147017 ], [ -75.379983830703054, 39.748037148662654 ], [ -75.33941014950986, 39.778325895925967 ], [ -75.331199997074918, 39.78936481713238 ], [ -75.316734647662969, 39.798283792223948 ], [ -75.311058502369448, 39.804005770966683 ], [ -75.279029613976846, 39.810437871651715 ], [ -75.271964411052664, 39.811982897367066 ], [ -75.238744340588624, 39.820524041126085 ], [ -75.181614362796623, 39.846433238834763 ], [ -75.157519654590018, 39.859060284989411 ], [ -75.150500458124213, 39.861063305440162 ], [ -75.135562024234247, 39.859560385095058 ], [ -75.124582705760176, 39.858698443029922 ], [ -75.115922480869017, 39.861562463154627 ], [ -75.114007432666511, 39.862268466865686 ], [ -75.113016407877822, 39.862634468749441 ], [ -75.101831141194864, 39.867414483429428 ] ], [ [ -75.10219721855232, 39.874796424143746 ], [ -75.089486860761866, 39.872373498479945 ], [ -75.082467677938865, 39.872495528154801 ], [ -75.064675208260994, 39.872011610592388 ], [ -75.055115012918961, 39.875520620222474 ], [ -75.048576838114414, 39.874918654220281 ], [ -75.044822745066725, 39.875036669415188 ], [ -75.033325394891904, 39.871526754627844 ], [ -75.026786226545894, 39.871408785148688 ], [ -75.015777024896664, 39.875341793151257 ], [ -75.009962996354759, 39.881029757530655 ], [ -74.991691118240212, 39.897245669297988 ], [ -74.984405383158531, 39.909071573673835 ], [ -74.977683692543891, 39.92341043681558 ], [ -74.966064943810323, 39.934896347349138 ], [ -74.959389023844665, 39.938440329989966 ], [ -74.933960234746792, 39.947492307114956 ], [ -74.921593429014251, 39.957067212238393 ], [ -74.911728622750744, 39.967157091437748 ], [ -74.891350943187661, 39.984498869349366 ], [ -74.879694064540388, 39.991253780577757 ], [ -74.86952413023235, 39.994855736664007 ], [ -74.850877240382388, 40.009198539250058 ], [ -74.834627332848612, 40.044636052713294 ], [ -74.810411449063338, 40.060825870881374 ], [ -74.797632507589725, 40.063869855924011 ], [ -74.760942753191401, 40.082523684776675 ], [ -74.747072924889409, 40.10089450186981 ], [ -74.725123159844003, 40.115547598470116 ], [ -74.720248218250106, 40.119854602243699 ], [ -74.716601275389579, 40.125774565210413 ], [ -74.715785328125193, 40.135257438484317 ] ], [ [ -74.718958377561918, 40.150325180712649 ], [ -74.718569370717958, 40.148323214385421 ] ], [ [ -74.696117337427268, 40.28347931413024 ], [ -74.692127332264349, 40.279199431172323 ], [ -74.690998288251592, 40.273221556981795 ], [ -74.69374414951109, 40.260145785726728 ], [ -74.701296964987819, 40.242671020189526 ], [ -74.700724924831889, 40.233515162644991 ], [ -74.697726890773225, 40.22168637030336 ], [ -74.713313662044683, 40.199584532910187 ], [ -74.720812557566944, 40.189852590827385 ], [ -74.721896514604964, 40.182765680113164 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I296\", \"DIST_MILES\": 3.240000, \"DIST_KM\": 5.210000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -85.680894873413848, 43.01629561398839 ], [ -85.675935575330683, 43.013617709515202 ], [ -85.677094694006911, 42.984927030078957 ], [ -85.678238390542461, 42.9729652341519 ], [ -85.678154344500271, 42.971507262705387 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I30\", \"DIST_MILES\": 364.870000, \"DIST_KM\": 587.200000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -97.567188596709812, 32.720669151939667 ], [ -97.549259009478718, 32.720982190646737 ], [ -97.523867176248231, 32.720650274390131 ], [ -97.495286264855466, 32.733180895991985 ], [ -97.487039020784394, 32.736881806932992 ], [ -97.481316850223394, 32.738109796134253 ], [ -97.448448862946833, 32.738030003172945 ], [ -97.443748720572131, 32.737149064980869 ], [ -97.440795630972033, 32.736512106835391 ], [ -97.428367254887505, 32.73471124995519 ], [ -97.413344803029275, 32.734520349399816 ], [ -97.403784514125533, 32.73360144167146 ], [ -97.365278354865822, 32.732819705989584 ], [ -97.361348238186721, 32.733589702545565 ], [ -97.360807222257691, 32.733761699720922 ], [ -97.351902963806907, 32.738331591767427 ], [ -97.343006703969394, 32.741844522517063 ], [ -97.33742254421, 32.745510427903 ], [ -97.336125507143407, 32.746361406037558 ], [ -97.330235331641489, 32.746846426285124 ], [ -97.326931232307288, 32.7467084521126 ], [ -97.325863200237833, 32.746682459803566 ], [ -97.323307123733841, 32.74673147429899 ], [ -97.319844020702348, 32.747071484346741 ], [ -97.319462009406934, 32.747139484387894 ], [ -97.309711718713558, 32.747792523517766 ], [ -97.303325528654184, 32.748341545032829 ], [ -97.289386114325609, 32.749680587513716 ], [ -97.276743741940905, 32.751068627628094 ], [ -97.26126331984841, 32.758099533097855 ], [ -97.23953469684686, 32.760689537366083 ], [ -97.21392194770057, 32.759789585709825 ], [ -97.183212056214117, 32.759850611562811 ], [ -97.16706058847906, 32.760121618034631 ], [ -97.148887060218442, 32.760029637028047 ], [ -97.114325055115913, 32.759701678070272 ], [ -97.097165556909573, 32.759720692955014 ], [ -97.063259572376566, 32.759732723140459 ], [ -97.03512875521595, 32.75962975184963 ], [ -97.02890357417067, 32.759522760974008 ], [ -97.019816310087876, 32.759430772233408 ], [ -96.994936591510083, 32.758580794548941 ], [ -96.974893032156089, 32.759419677581704 ], [ -96.960183623772295, 32.762070523941262 ], [ -96.948533297021086, 32.762188468289466 ], [ -96.931114809985971, 32.765042295907271 ], [ -96.914871353356432, 32.766121187884124 ], [ -96.90261800839194, 32.766323126779909 ], [ -96.887313576858091, 32.767781010327276 ], [ -96.856771717349687, 32.766479918099094 ], [ -96.850240535845174, 32.764610951304824 ], [ -96.844900386365993, 32.764140943240555 ], [ -96.837148163500771, 32.767261804998519 ], [ -96.8156175499158, 32.770538600462814 ], [ -96.811719438261022, 32.771228560221395 ], [ -96.810589405847495, 32.771438548224388 ], [ -96.804257233021701, 32.768810607533219 ], [ -96.798581063942223, 32.772380463632466 ], [ -96.78944779894185, 32.774791342955815 ], [ -96.786296707220615, 32.775642300687274 ], [ -96.783428619534149, 32.777850214558136 ], [ -96.782115579036912, 32.778949172198011 ], [ -96.772518301121536, 32.780509077794271 ], [ -96.770519241483711, 32.781360040644124 ], [ -96.769641214414946, 32.782001015444251 ], [ -96.768329172279508, 32.783468960830355 ], [ -96.767009128042872, 32.785486887899637 ], [ -96.765750086302404, 32.78723782411658 ], [ -96.760157914913208, 32.790529689922828 ], [ -96.750170623400649, 32.791247621800053 ], [ -96.731294720592899, 32.791609520350342 ], [ -96.725175421009538, 32.794089408557795 ], [ -96.717813067979378, 32.794779350499724 ], [ -96.699105178746166, 32.79360830079915 ], [ -96.682723389396898, 32.797938077294532 ], [ -96.678771199663302, 32.798907025789646 ], [ -96.641813429717644, 32.815946271408663 ], [ -96.629658854484362, 32.822968973415868 ], [ -96.612660057718742, 32.833065545531952 ], [ -96.595637267454208, 32.840096220227338 ], [ -96.555146412723232, 32.856277459219569 ], [ -96.550469202667813, 32.859244332967208 ], [ -96.543671900966302, 32.864715109192801 ], [ -96.518371772776092, 32.876333575332843 ], [ -96.481398257432431, 32.893693826312209 ], [ -96.458936389053108, 32.900464526836274 ], [ -96.450055062029605, 32.909123194631213 ], [ -96.444523854433911, 32.91326203120753 ], [ -96.413043626570968, 32.920898662413109 ], [ -96.401484175244548, 32.923794521837657 ], [ -96.385683563130996, 32.929974246952135 ], [ -96.354691389651776, 32.955520202803946 ], [ -96.332092517848764, 32.969271608268507 ], [ -96.304946454184432, 32.979860105377412 ], [ -96.297202146828695, 32.981172024985192 ], [ -96.276174305585528, 32.981370933505431 ], [ -96.260823700197633, 32.986588671871267 ], [ -96.202921509535528, 33.02005748160957 ], [ -96.187143904573333, 33.034107112540397 ], [ -96.173013359291602, 33.050727694257517 ], [ -96.154053643462163, 33.063487339108669 ], [ -96.135772951041375, 33.079805909207295 ], [ -96.126723609888401, 33.087476705038824 ], [ -96.109671974778593, 33.096285442530124 ], [ -96.104750790935157, 33.099676348296605 ], [ -96.099440580542236, 33.116013971277013 ], [ -96.0946794018042, 33.120934844374872 ], [ -96.084829038105326, 33.125126711817337 ], [ -96.080655881176483, 33.130345580820652 ], [ -96.073148603009813, 33.135415438942168 ], [ -96.059331100499932, 33.133553421076435 ], [ -96.049587745108155, 33.133504381005217 ], [ -96.017787585473627, 33.132744263299472 ], [ -96.003177053635383, 33.130124258730611 ], [ -95.99151865729327, 33.129574219235288 ], [ -95.970704967229878, 33.128914140239083 ], [ -95.948266218608666, 33.132064971668783 ], [ -95.862776385139199, 33.129531643064809 ], [ -95.844769788800519, 33.129154570294865 ], [ -95.811603680061822, 33.131393374735602 ], [ -95.787707885994266, 33.131473266166587 ], [ -95.744112454877751, 33.126693230338134 ], [ -95.721863724698395, 33.119365505206567 ], [ -95.708077246032943, 33.120655553965967 ], [ -95.658102529843234, 33.120868824538555 ], [ -95.634183710792186, 33.119976976211291 ], [ -95.61369101325414, 33.116345171897805 ], [ -95.596501421484945, 33.116334267979319 ], [ -95.590214204398677, 33.116864290785657 ], [ -95.587254100872215, 33.118325273442906 ], [ -95.57012549584816, 33.139934862434664 ], [ -95.565028320879719, 33.143432806815213 ], [ -95.556705038492424, 33.145546799796612 ], [ -95.533762263972733, 33.14813685524782 ], [ -95.516229672349624, 33.146823976211024 ], [ -95.456389622013305, 33.147015388311154 ], [ -95.441619120682489, 33.150155420767078 ], [ -95.427031632860562, 33.154954407090763 ], [ -95.426214608421674, 33.156193381099513 ], [ -95.425810592230604, 33.155366405556762 ], [ -95.391805468932859, 33.166096374834773 ], [ -95.331447427585289, 33.167393778083621 ], [ -95.307978624791275, 33.166218981406985 ], [ -95.234504166870849, 33.161855688347494 ], [ -95.216918653123827, 33.162744840230701 ], [ -95.19756205954117, 33.159365134153688 ], [ -95.18822378436748, 33.15939622754501 ], [ -95.172300333620768, 33.162799289947003 ], [ -95.124942924469451, 33.160845824965861 ], [ -95.03735533356479, 33.158298781936267 ], [ -95.018891796954662, 33.163830812606925 ], [ -95.004128364017788, 33.168438832690285 ], [ -94.999962241949518, 33.169658841071403 ], [ -94.970641475718566, 33.178730920957577 ], [ -94.964942327072478, 33.180477936379745 ], [ -94.96338628648887, 33.180938941012286 ], [ -94.914442019833913, 33.200550932586552 ], [ -94.905538794950147, 33.207668826484074 ], [ -94.883535249251224, 33.230629402893456 ], [ -94.810489769270035, 33.273006001779294 ], [ -94.788325416995036, 33.286017881918291 ], [ -94.780658267229015, 33.288897883564651 ], [ -94.737131169050144, 33.294437251366958 ], [ -94.718743639166334, 33.296489480037536 ], [ -94.710031448541244, 33.301029491151169 ], [ -94.698342247287769, 33.310394417579481 ], [ -94.624465993149272, 33.372779893650204 ], [ -94.590583234038164, 33.39132693806593 ], [ -94.522099874557753, 33.441619711490787 ], [ -94.470424661494846, 33.464977058013702 ], [ -94.456653352867662, 33.47097018569432 ], [ -94.441875011256869, 33.476539348496651 ], [ -94.4260365350992, 33.475879689054125 ], [ -94.409213017533219, 33.474538065613245 ], [ -94.336036746575829, 33.468290699998931 ], [ -94.273604074025485, 33.476581794810095 ], [ -94.261144687082137, 33.475563070863281 ], [ -94.244283032285338, 33.469822461524842 ], [ -94.236622728362789, 33.468410555932522 ], [ -94.209926716256618, 33.465664840947738 ], [ -94.18343674474086, 33.464463092986648 ], [ -94.159303741618274, 33.457444440774488 ], [ -94.122605349733348, 33.453176840898145 ], [ -94.109061836286884, 33.451562989175109 ], [ -94.098403469230206, 33.452192068115771 ], [ -94.086669129595194, 33.456263088096037 ], [ -94.066527584158095, 33.465384080650985 ], [ -94.053908214007677, 33.469706103876035 ], [ -94.043187840056135, 33.47023618576862 ], [ -94.034207518835416, 33.470255262764326 ], [ -94.007176648743112, 33.475645389694158 ], [ -93.993816279200786, 33.478422344530941 ], [ -93.983654055894021, 33.481054210957588 ], [ -93.9731639008873, 33.488252982279761 ], [ -93.972072887495713, 33.489175954862453 ], [ -93.916567778499214, 33.533432689986142 ], [ -93.888422052902328, 33.5471232252481 ], [ -93.87494767560456, 33.549541075841283 ], [ -93.869431521697834, 33.550793010306691 ], [ -93.866647450817908, 33.55295195107437 ], [ -93.849030015331309, 33.572451478774525 ], [ -93.840469805588512, 33.584880200879283 ], [ -93.829590510569346, 33.59530194062539 ], [ -93.820290249540435, 33.603391733183379 ], [ -93.813179036184948, 33.605768639186735 ], [ -93.799399619504371, 33.610460456281452 ], [ -93.790084344530953, 33.618730248411232 ], [ -93.785155193063446, 33.620851176252032 ], [ -93.730908690929425, 33.629098568274557 ], [ -93.716923396183347, 33.633218342061873 ], [ -93.642214751483664, 33.661128932402022 ], [ -93.631999513291873, 33.666396695877417 ], [ -93.61730415603148, 33.676779287067831 ], [ -93.610284981108478, 33.682097079553991 ], [ -93.598314679315607, 33.69081772652703 ], [ -93.589006440531122, 33.697614445817479 ], [ -93.562127732356203, 33.716984612632324 ], [ -93.526634796639271, 33.735035638968114 ], [ -93.473036727271079, 33.774324817286534 ], [ -93.42357494350577, 33.810521064189466 ], [ -93.395009498225193, 33.831549980539634 ], [ -93.380559298415747, 33.843260378635172 ], [ -93.359639944303595, 33.857267580859478 ], [ -93.304249098791487, 33.898059219836973 ], [ -93.252429297532984, 33.93527287826214 ], [ -93.232105476068355, 33.952342975201368 ], [ -93.222537530372492, 33.958091647828006 ], [ -93.183606068705402, 33.9970907625545 ], [ -93.143910350267817, 34.035389236393804 ], [ -93.095144179120084, 34.114270524141901 ], [ -93.092763223767335, 34.118386384962768 ], [ -93.080320499716748, 34.142585584142495 ], [ -93.073462027585393, 34.179625488385817 ], [ -93.070548084464093, 34.184805314986413 ], [ -93.047156166127849, 34.202741577916406 ], [ -93.030875195975113, 34.213525113129016 ], [ -93.001440369529718, 34.240571068305258 ], [ -92.960149330186368, 34.281520933302325 ], [ -92.932148644578817, 34.320690840506089 ], [ -92.921795344399584, 34.330753850243219 ], [ -92.911915049748174, 34.339702865483112 ], [ -92.900363659591932, 34.345272934741324 ], [ -92.890888364383102, 34.352840958600581 ], [ -92.861880393647368, 34.369252100953304 ], [ -92.85177808839434, 34.379303101514488 ], [ -92.843888848779642, 34.387211100536561 ], [ -92.827562293570338, 34.396672173396055 ], [ -92.82200010476285, 34.400048196126555 ], [ -92.808335654868898, 34.410412227790715 ], [ -92.790878118280105, 34.429444200251552 ], [ -92.734953312791347, 34.473839246550682 ], [ -92.716062762340684, 34.489102227257831 ], [ -92.688030834888053, 34.518841257152715 ], [ -92.678966508689442, 34.529942280825345 ], [ -92.677166441864529, 34.534131276326512 ], [ -92.67213126477391, 34.537953297577154 ], [ -92.650599525374005, 34.539631451918019 ], [ -92.6312668599451, 34.544941568980221 ], [ -92.621263513974455, 34.553196597446579 ], [ -92.611124165255376, 34.561982620456817 ], [ -92.60395192095153, 34.564362657102492 ], [ -92.590249454965118, 34.573410697432351 ], [ -92.568687727801219, 34.586644757273177 ], [ -92.557037338722694, 34.596501766243129 ], [ -92.54295286924804, 34.60247881317072 ], [ -92.516180980651413, 34.611412911526081 ], [ -92.462994110765052, 34.633473877937114 ], [ -92.445789482162908, 34.640206842400751 ], [ -92.444553436835804, 34.640709839613194 ], [ -92.432528994753696, 34.645283814703141 ], [ -92.418208466502563, 34.648880799910273 ], [ -92.402551879666333, 34.661862703280796 ], [ -92.3805020521594, 34.670296649939715 ], [ -92.360787306155785, 34.678013598112798 ], [ -92.354470068555386, 34.678914595405637 ], [ -92.343665664580087, 34.678921604766778 ], [ -92.320143784912318, 34.679013624417351 ], [ -92.313658537581091, 34.681000611194101 ], [ -92.30876834524426, 34.684681580265583 ], [ -92.296163821996089, 34.703003414052006 ], [ -92.29150163829938, 34.705563392443437 ], [ -92.280942231131633, 34.707905376533844 ], [ -92.270413819309582, 34.711762345290012 ], [ -92.269406756912062, 34.719162272976853 ], [ -92.2666826364092, 34.724179224921706 ], [ -92.261616408561565, 34.734211128009335 ], [ -92.26267640939723, 34.745991010828035 ], [ -92.262539405686425, 34.752422929634619 ], [ -92.262356422866745, 34.756072866124839 ], [ -92.261807504288015, 34.771480598014136 ], [ -92.259701473108549, 34.77881947119058 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I305\", \"DIST_MILES\": 5.360000, \"DIST_KM\": 8.620000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -121.560754435754617, 38.576480520412822 ], [ -121.542787631446259, 38.575716193408276 ], [ -121.530514410681945, 38.575712574776595 ], [ -121.519428871856604, 38.577845316670725 ], [ -121.514921798350485, 38.576317999709914 ], [ -121.51015020232407, 38.572029614267741 ], [ -121.50509571035451, 38.569102147647691 ], [ -121.503168900585393, 38.568547588268061 ], [ -121.487166497511367, 38.564199012719044 ], [ -121.485827377894978, 38.563850635428047 ], [ -121.481875892020057, 38.562755523558586 ], [ -121.479195640228781, 38.562071770252764 ], [ -121.467708129326155, 38.559394550264479 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I310\", \"DIST_MILES\": 11.610000, \"DIST_KM\": 18.690000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -90.294672422855712, 30.007163204277582 ], [ -90.301027540951907, 29.992694586994034 ], [ -90.321139186048768, 29.975805079790881 ], [ -90.325747333078056, 29.971563202946502 ], [ -90.333667580777799, 29.967745317784583 ], [ -90.357853326429577, 29.96356445996032 ], [ -90.363407498439784, 29.961023536539169 ], [ -90.380818046019257, 29.93150437533836 ], [ -90.406102812732044, 29.917535788939141 ], [ -90.408627889225798, 29.913125913869553 ], [ -90.407964870090538, 29.908100052699076 ], [ -90.403478737250026, 29.901257238204359 ], [ -90.400205640687133, 29.896826358004759 ], [ -90.404797778216832, 29.892786474642421 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I315\", \"DIST_MILES\": 0.520000, \"DIST_KM\": 0.840000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -111.345039430892626, 47.48499288672658 ], [ -111.334824341617278, 47.48791089029519 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I335\", \"DIST_MILES\": 50.210000, \"DIST_KM\": 80.800000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -95.692611801010131, 38.991612138905744 ], [ -95.704346191264491, 38.982572328576197 ], [ -95.714913577881561, 38.967866617327211 ], [ -95.720017745864425, 38.963361708173423 ], [ -95.73456718371348, 38.956571854966604 ], [ -95.75633488423577, 38.933642292871504 ], [ -95.771579313022784, 38.925222454288424 ], [ -95.800319167607483, 38.897783987274359 ], [ -95.817753653938297, 38.886573220345532 ], [ -95.836018182759261, 38.869258579489298 ], [ -95.844457423869926, 38.861503744315023 ], [ -95.858174789500666, 38.854713902290285 ], [ -95.871511175593454, 38.839752225807054 ], [ -95.888761638365892, 38.828633487653697 ], [ -95.896948883188472, 38.816014763968909 ], [ -95.902793072414255, 38.802575054218977 ], [ -95.913718382798294, 38.788766370003302 ], [ -95.927726792815605, 38.766027887788155 ], [ -95.946152292832394, 38.74566939791967 ], [ -95.952530462512044, 38.739035583377351 ], [ -95.985086294974039, 38.706596455637943 ], [ -96.006249841423553, 38.676358165103956 ], [ -96.017206127773704, 38.666649347835687 ], [ -96.027857419716668, 38.651959651015908 ], [ -96.041346790612565, 38.634618010773515 ], [ -96.047152964186793, 38.621908291536037 ], [ -96.055629198590879, 38.611989499437307 ], [ -96.069087562434063, 38.600660728025161 ], [ -96.094219262116511, 38.575011273989944 ], [ -96.12978925748277, 38.543509955510004 ], [ -96.15377601563992, 38.499992987302875 ], [ -96.180403700033537, 38.476311480383963 ], [ -96.183211772884846, 38.470673602741684 ], [ -96.197463149191051, 38.455472913606712 ], [ -96.223953863240283, 38.433981323615861 ], [ -96.237244233493186, 38.415422693019337 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I35\", \"DIST_MILES\": 1427.090000, \"DIST_KM\": 2296.680000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -92.061139747602724, 46.809306825625193 ], [ -92.061681795666757, 46.807307865843413 ], [ -92.06728192605965, 46.804057981569699 ], [ -92.088865362882231, 46.79443037905628 ], [ -92.098196668265601, 46.784420653535499 ], [ -92.108603927353684, 46.77710089362202 ], [ -92.122977319750603, 46.765019261203463 ], [ -92.135772665262778, 46.754182591441818 ], [ -92.141860773507503, 46.75180969992045 ], [ -92.154564012076676, 46.742810876461618 ], [ -92.163597172915289, 46.736360974868532 ], [ -92.173165277122223, 46.73593007489179 ], [ -92.183861356503215, 46.738829187907712 ], [ -92.20201962854955, 46.731489371163569 ], [ -92.204613686651442, 46.728815394561373 ], [ -92.209519760042028, 46.726969441922122 ], [ -92.221123893620216, 46.726103557692944 ], [ -92.23669611172717, 46.721834704450806 ], [ -92.26162125555895, 46.711950901166446 ], [ -92.272821148812952, 46.710722987869822 ], [ -92.279062116702079, 46.708022032239306 ], [ -92.283555091817647, 46.706252065090318 ], [ -92.301613937579177, 46.703323207755851 ], [ -92.344048584076504, 46.69663255424598 ], [ -92.368744325425439, 46.696521761802522 ], [ -92.387368082238808, 46.699363916100005 ], [ -92.41907473912606, 46.699726179616214 ], [ -92.426948656475147, 46.699665245241661 ], [ -92.438003561909497, 46.698384339998107 ], [ -92.456977523408597, 46.689583521996255 ], [ -92.462608680600866, 46.678017602946774 ], [ -92.46756775880327, 46.671204667188505 ], [ -92.477241810254839, 46.663513779767001 ], [ -92.486953858049674, 46.656212895350578 ], [ -92.504707997174265, 46.649713084350424 ], [ -92.528282946736752, 46.636464330709337 ], [ -92.53107608212359, 46.633523363925157 ], [ -92.533395293943073, 46.625543409832822 ], [ -92.547799864554861, 46.616563555772437 ], [ -92.583270369451625, 46.584573924952551 ], [ -92.585437494399542, 46.580255952549244 ], [ -92.585651632946636, 46.571676976313576 ], [ -92.588375759155269, 46.56809500556718 ], [ -92.6073884408151, 46.555056174729032 ], [ -92.630857332972226, 46.53259538585106 ], [ -92.666670422966675, 46.513224657543972 ], [ -92.674956707095404, 46.5049847223573 ], [ -92.688736045884383, 46.502695813374451 ], [ -92.688888061997588, 46.496893820867193 ], [ -92.707321396144422, 46.485125958016383 ], [ -92.730095614999698, 46.453037178741525 ], [ -92.745330749668625, 46.436927332165318 ], [ -92.755584864055976, 46.41837639758473 ], [ -92.761108979869832, 46.408946398538468 ], [ -92.773263343648452, 46.399936368146342 ], [ -92.783196505960603, 46.383037357902168 ], [ -92.808976964200852, 46.350467282845351 ], [ -92.826891087656307, 46.320987216281651 ], [ -92.827607987459601, 46.313526219112632 ], [ -92.819688352594483, 46.288738295023748 ], [ -92.825226239466488, 46.271995275132397 ], [ -92.826676042066794, 46.233528620055345 ], [ -92.830346211166798, 46.22362580012296 ], [ -92.8444687370081, 46.20255717047327 ], [ -92.856462226134354, 46.179837621741498 ], [ -92.866136550261245, 46.170876797150392 ], [ -92.873003774407834, 46.165387908043179 ], [ -92.886721266033163, 46.149316267025256 ], [ -92.887973496093863, 46.125188849568168 ], [ -92.889392727913886, 46.101470426328028 ], [ -92.91389879224063, 46.053459714741017 ], [ -92.924580224487798, 46.037110201533459 ], [ -92.925984380075761, 46.023430573923882 ], [ -92.931844649579659, 46.010979950137695 ], [ -92.94306730746618, 45.990003536003222 ], [ -92.953573807647118, 45.981474795341036 ], [ -92.955671979972749, 45.976793906752633 ], [ -92.966377256453328, 45.936022822156701 ], [ -92.967164224645231, 45.896793619490751 ], [ -92.973765460141919, 45.851796603993847 ], [ -92.9815020054114, 45.836065018516265 ], [ -92.984111284328307, 45.826635244335264 ], [ -92.983676476587362, 45.818075414563843 ], [ -92.990138931796025, 45.804415779555434 ], [ -92.989529801936769, 45.766585553385561 ], [ -92.992078298798987, 45.747725978457602 ], [ -92.992093772807507, 45.730507323642136 ], [ -92.992491701055414, 45.697037999516667 ], [ -92.989936034003321, 45.683198243032102 ], [ -92.992660402991291, 45.671639510353444 ], [ -92.992577923745856, 45.616308617302096 ], [ -92.996232640399555, 45.592761130812775 ], [ -92.993257818534516, 45.584251266960059 ], [ -92.990839352367388, 45.563190662002178 ], [ -92.991024290071934, 45.529232345035091 ], [ -92.993373860513117, 45.510113751806657 ], [ -92.996968236235389, 45.489633190936061 ], [ -92.996495290103425, 45.466253641358179 ], [ -92.989544169559409, 45.451673861997229 ], [ -92.989720255530202, 45.413275614478522 ], [ -92.995091432960436, 45.399195934596058 ], [ -92.991681373862249, 45.384197199050831 ], [ -92.999547701379527, 45.34986492962247 ], [ -93.004368921528112, 45.336426169511022 ], [ -93.002514970563823, 45.29686894386932 ], [ -93.002659999989859, 45.288988094533615 ], [ -93.002981030451011, 45.282998207019119 ], [ -93.003210050314436, 45.27934427522051 ], [ -93.008421281692421, 45.269082420649454 ], [ -93.012991480684207, 45.261476517275476 ], [ -93.019315735193757, 45.257837518270307 ], [ -93.024389953804288, 45.250337600033014 ], [ -93.02795997845007, 45.239747484476254 ], [ -93.028936786756162, 45.219236308800554 ], [ -93.028944777899142, 45.218416302113532 ] ], [ [ -93.282708466332295, 44.740286485852927 ], [ -93.283463432069354, 44.734465471669573 ], [ -93.28160921891471, 44.720827462017617 ], [ -93.287949205385601, 44.697386384829976 ], [ -93.29195528695476, 44.690924349867203 ], [ -93.293618246597617, 44.681109324689345 ], [ -93.294007018066125, 44.657812287171986 ], [ -93.296188967831924, 44.645018255017334 ], [ -93.29832489510251, 44.630129220436217 ], [ -93.295723568953861, 44.60839320299349 ], [ -93.298134581086302, 44.600535177795614 ], [ -93.29824830863096, 44.573813137685761 ], [ -93.298912087551258, 44.549925098935532 ], [ -93.300705095201252, 44.543745080565081 ], [ -93.300116949808029, 44.531943066329404 ], [ -93.288024244334565, 44.511072095468016 ], [ -93.291083258053177, 44.500563064304124 ], [ -93.291853788085959, 44.471734992936575 ], [ -93.293117418655768, 44.333986663002847 ], [ -93.293621299410333, 44.326154642847904 ], [ -93.299533409764337, 44.320234608954237 ], [ -93.305423571571268, 44.317334582508501 ], [ -93.308162618103239, 44.314401566774194 ], [ -93.308704228735309, 44.291623514292262 ], [ -93.307720033091954, 44.282663497382288 ], [ -93.298556569026985, 44.274743507259451 ], [ -93.296099408304144, 44.270528504836349 ], [ -93.283098544596939, 44.246862478744276 ], [ -93.275071820198107, 44.220144369439183 ], [ -93.256980878287763, 44.201184307065844 ], [ -93.254821720333169, 44.196199283965257 ], [ -93.258827474648569, 44.173253156449967 ], [ -93.257263049018519, 44.15104404007289 ], [ -93.256048940353168, 44.147054019442429 ], [ -93.247916465263131, 44.135964973793023 ], [ -93.245496843113202, 44.104885819429434 ], [ -93.244718645122632, 44.095131771701148 ], [ -93.246305523404402, 44.084133702573446 ], [ -93.252385517953869, 44.069599600944834 ], [ -93.25076828436471, 44.058972540833103 ], [ -93.246937613850434, 44.028881399566352 ], [ -93.247860550383706, 44.02265235888882 ], [ -93.254116584982881, 44.010273283596895 ], [ -93.25554291354679, 43.96552280346453 ], [ -93.277050066717223, 43.926242298616579 ], [ -93.27682019347867, 43.870150542452507 ], [ -93.277721113179325, 43.86274243910696 ], [ -93.285442183295146, 43.848242207881398 ], [ -93.288722195693481, 43.84083008873975 ], [ -93.288797726447967, 43.809648649718071 ], [ -93.290156738376396, 43.806939602699906 ], [ -93.307826193173611, 43.791047248573243 ], [ -93.309305991407371, 43.773319970626467 ], [ -93.317851049178216, 43.753838598971605 ], [ -93.321322978561156, 43.731499333880834 ], [ -93.319605606952251, 43.694809006987555 ], [ -93.321131572641733, 43.683806889713559 ], [ -93.323450536159129, 43.669288731971207 ], [ -93.319552308088163, 43.658957672358468 ], [ -93.323351340517334, 43.646579520470041 ], [ -93.324434279948832, 43.63493640121365 ], [ -93.328699367119086, 43.627810293769095 ], [ -93.330835412862442, 43.624598243259534 ], [ -93.34200568001252, 43.611907017261991 ], [ -93.356135964896012, 43.592409698205863 ], [ -93.358515895427544, 43.577719536919808 ], [ -93.359140640193317, 43.550466274131594 ], [ -93.355021446726525, 43.543867251973701 ], [ -93.354868050864084, 43.504395881908138 ], [ -93.353501963968824, 43.499467854254952 ], [ -93.351274830404563, 43.489964890786773 ], [ -93.349633448658693, 43.443715978080895 ], [ -93.349693289741666, 43.283697224224497 ], [ -93.348999073477202, 43.255594273563183 ], [ -93.349097769202359, 43.200229790296888 ], [ -93.356582798995319, 43.184418210505207 ], [ -93.355597638083779, 43.158261013807781 ], [ -93.355796573222278, 43.146138380960835 ], [ -93.356978587481692, 43.145768383272426 ], [ -93.355857455740363, 43.124960024606665 ], [ -93.350860320171407, 43.111921457222323 ], [ -93.347808241246824, 43.104239712246475 ], [ -93.343108113467835, 43.090522161208014 ], [ -93.340567629358816, 42.99999491805913 ], [ -93.34096357231374, 42.987845346900833 ], [ -93.350370558112388, 42.967796008325244 ], [ -93.351004279186114, 42.907876145732928 ], [ -93.349980842149179, 42.818539339697821 ], [ -93.352460845927496, 42.81287153716751 ], [ -93.380117030352423, 42.774191889089771 ], [ -93.397421206021122, 42.745383887643264 ], [ -93.414007566470175, 42.730194295106322 ], [ -93.424612836070324, 42.716953646579192 ], [ -93.456008724360188, 42.673604762974918 ], [ -93.484138664657564, 42.627725897911432 ], [ -93.499436086761492, 42.613765208889461 ], [ -93.55777368089386, 42.565036646334654 ], [ -93.564747009156974, 42.55756671364859 ], [ -93.567318167669725, 42.551356813356016 ], [ -93.567837586280817, 42.51453861778333 ], [ -93.568944169014841, 42.47109756918627 ], [ -93.569303479726514, 42.448771065175237 ], [ -93.570746213237527, 42.397651189857335 ], [ -93.569366329510927, 42.310372178077444 ], [ -93.571793452787915, 42.224512844106691 ], [ -93.570862558199394, 42.209155070446883 ], [ -93.570954951317475, 42.166034660538777 ], [ -93.56944403719281, 42.150462896029488 ], [ -93.555397712561486, 42.129715373420481 ], [ -93.552620707783646, 42.118916553510708 ], [ -93.554131821893449, 42.112324620062907 ], [ -93.56489737621888, 42.094464719143907 ], [ -93.571047197190651, 42.028589545275942 ], [ -93.571139349349934, 42.01213677012916 ], [ -93.571139401154525, 42.006406848775342 ], [ -93.569735431767626, 41.958907109585525 ], [ -93.571017528676066, 41.877867416210783 ], [ -93.57129954809929, 41.863226472035016 ], [ -93.570223570783256, 41.759207882438744 ], [ -93.576449795931467, 41.744330956537411 ], [ -93.57773882689925, 41.737575013100795 ], [ -93.57760981733388, 41.73571302952729 ], [ -93.577273794906787, 41.731819063984901 ], [ -93.576457728680111, 41.717609188966286 ], [ -93.576174690486809, 41.706592285244263 ], [ -93.576083677628361, 41.702808318296889 ], [ -93.575915645030094, 41.69228341008656 ], [ -93.57862368862412, 41.671157589948955 ], [ -93.575823567019441, 41.662567668630722 ], [ -93.575610533045918, 41.652038760474525 ], [ -93.600490404250166, 41.649978745253804 ], [ -93.620045091340245, 41.649497723487563 ], [ -93.697814843997151, 41.652137595737294 ], [ -93.736565211714378, 41.652267542552224 ], [ -93.768770266778859, 41.651199480355665 ], [ -93.773737408676809, 41.64917748490673 ], [ -93.776941479586085, 41.644798516695452 ], [ -93.776911376561813, 41.629547660012669 ], [ -93.7768952773976, 41.614807798490915 ], [ -93.777323139138872, 41.592167009825062 ], [ -93.775368737388661, 41.541169494871106 ], [ -93.77317156639522, 41.525719647000912 ], [ -93.77394955953919, 41.521107687871591 ], [ -93.780213691214215, 41.511990753465028 ], [ -93.780067705165891, 41.362422686878162 ], [ -93.778419107885668, 41.278331813995877 ], [ -93.780837917530732, 41.229474454098217 ], [ -93.787177980464165, 41.197804827640795 ], [ -93.783766828937402, 41.181684088851831 ], [ -93.784293773250042, 41.1619553567308 ], [ -93.788047826279879, 41.147974504645262 ], [ -93.788062789034697, 41.13744564950801 ], [ -93.781913576902852, 41.125013900321946 ], [ -93.78170752359064, 41.111563090674949 ], [ -93.77693835694221, 41.101084301778258 ], [ -93.781058410608409, 41.084655475262345 ], [ -93.78207332428849, 41.052577908257959 ], [ -93.79383058772477, 41.037856932793858 ], [ -93.794226557568962, 41.026546080579507 ], [ -93.794257521367655, 41.016277219781813 ], [ -93.797553580325385, 41.008217276028731 ], [ -93.797202835326672, 40.96502798395484 ], [ -93.799804075070895, 40.944459286039063 ], [ -93.796760152171004, 40.926026651139807 ], [ -93.797287391496113, 40.899156095868499 ], [ -93.801254613464138, 40.884348271872163 ], [ -93.804749041487497, 40.842989899362337 ], [ -93.823945691319082, 40.818659922558659 ], [ -93.833986097173238, 40.796538079291196 ], [ -93.836710453859396, 40.758300639924883 ], [ -93.842752766604178, 40.738940781815145 ], [ -93.846301373815351, 40.687988336838139 ], [ -93.852473732945768, 40.666019472940334 ], [ -93.859722024514468, 40.652569478379512 ], [ -93.890232953597817, 40.62373014999423 ], [ -93.908963526020983, 40.604857955487681 ], [ -93.921163916929586, 40.59025985303785 ], [ -93.93709438188624, 40.575419665778583 ], [ -93.947859699020412, 40.564769544351435 ], [ -93.950857820487428, 40.558181552128758 ], [ -94.010475982689229, 40.347240582797106 ], [ -94.012620282796632, 40.265302461362928 ], [ -94.013382649804839, 40.210093176446797 ], [ -94.015778135976063, 40.178560570481046 ], [ -94.048072857312121, 40.134386553333549 ], [ -94.067329730117677, 40.108744529932146 ], [ -94.093146695910889, 40.08102240288639 ], [ -94.096205582870383, 40.006923362388456 ], [ -94.094533770073426, 39.974883665700965 ], [ -94.108396449888758, 39.953471535110822 ], [ -94.117024385238707, 39.945071418909265 ], [ -94.137830235150005, 39.924754136977882 ], [ -94.151577836219403, 39.899642027900569 ], [ -94.151905825711935, 39.899001025550689 ], [ -94.168903429083741, 39.87121086541292 ], [ -94.1764641361667, 39.854193824100811 ], [ -94.176762125945089, 39.853571822129531 ], [ -94.205836032254084, 39.788229653944441 ], [ -94.219324549457127, 39.758253569102855 ], [ -94.219995451881246, 39.75384358379182 ], [ -94.220079305775954, 39.746214645614266 ], [ -94.221094057657453, 39.726133828975861 ], [ -94.235780558143773, 39.667743115273687 ], [ -94.261863884026155, 39.571723517266179 ], [ -94.269874886911737, 39.552055522961339 ], [ -94.284309926357452, 39.517673504888926 ], [ -94.323618634628389, 39.455603791815768 ], [ -94.372334225300477, 39.367972255377296 ], [ -94.400000583512522, 39.316511249516466 ], [ -94.410522081138083, 39.296244309436183 ], [ -94.412002171317269, 39.291132340230938 ], [ -94.421477553349348, 39.278483374227733 ], [ -94.446358350524463, 39.265471320193456 ], [ -94.449501479672946, 39.26014935939066 ], [ -94.45020355347495, 39.253416432938202 ], [ -94.456169751572801, 39.245077510108381 ], [ -94.475610329477973, 39.216391826250941 ], [ -94.483590552404394, 39.21064286822125 ], [ -94.49262380005041, 39.206163886009648 ], [ -94.506212182200656, 39.201231915451544 ], [ -94.517969546861977, 39.186652129628307 ], [ -94.532671988043973, 39.176131278887169 ], [ -94.536754108383562, 39.174350302869392 ], [ -94.549762484161747, 39.172904315073779 ], [ -94.553874602659448, 39.172603316549299 ], [ -94.558933754613932, 39.16873537108021 ] ], [ [ -97.166658805279425, 33.21220904086401 ], [ -97.174013176456228, 33.23016065955148 ], [ -97.176356305330287, 33.237648499380505 ], [ -97.177836379169904, 33.259387969598222 ], [ -97.177881143512721, 33.304227692921955 ], [ -97.181429106731215, 33.336567765429812 ], [ -97.182329037005331, 33.356042208418167 ], [ -97.177590788674678, 33.369190844009935 ], [ -97.174821396396467, 33.423876294851773 ], [ -97.164017915299624, 33.439260888683982 ], [ -97.162117600719967, 33.486569554581102 ], [ -97.165871681547387, 33.513297832441857 ], [ -97.166557724709861, 33.531368384106884 ], [ -97.16578774745409, 33.579844189816669 ], [ -97.162712655400625, 33.59209989559767 ], [ -97.158791534014426, 33.602063659666307 ], [ -97.14923922538155, 33.61168444592311 ], [ -97.149002222154536, 33.614866367516065 ], [ -97.152458350318881, 33.62387213544006 ], [ -97.154938441249016, 33.630322969519469 ], [ -97.155708480090453, 33.640587713378892 ], [ -97.155663493326117, 33.651848434503705 ], [ -97.150787355369829, 33.666027093405752 ], [ -97.151360382839698, 33.672416933670931 ], [ -97.156128546593322, 33.681346702789412 ], [ -97.16163673239717, 33.691196448498097 ], [ -97.162460763766035, 33.696067326564709 ], [ -97.161461765127868, 33.724394627998024 ], [ -97.159508708940152, 33.727255560315776 ], [ -97.145798308532051, 33.73818431008506 ], [ -97.13797008967461, 33.747896079529774 ], [ -97.135162019934896, 33.754663918724496 ], [ -97.134918123761892, 33.804504720884168 ], [ -97.13009703872514, 33.827843164997759 ], [ -97.133988189478501, 33.845714731131316 ], [ -97.134491320426051, 33.897940475037139 ], [ -97.133324333229183, 33.917643002207882 ], [ -97.134873425223148, 33.94028945665557 ], [ -97.134216491797261, 33.977718557183557 ], [ -97.139107646637328, 33.991268229225646 ], [ -97.149308184903219, 34.035548071864476 ], [ -97.149774457065746, 34.071008129500953 ], [ -97.151979778675496, 34.10815513566412 ], [ -97.15630497906713, 34.122924726497516 ], [ -97.156542028744525, 34.129165558743942 ], [ -97.155810085656313, 34.13927429148351 ], [ -97.156489165630433, 34.148475042659193 ], [ -97.166414472527052, 34.163394596130338 ], [ -97.168139570954452, 34.172774334128952 ], [ -97.16766662857917, 34.182635069905508 ], [ -97.164225643722887, 34.194582766256318 ], [ -97.162592836990271, 34.226872906804886 ], [ -97.161829907360215, 34.238942587320395 ], [ -97.165286180452128, 34.257412103877328 ], [ -97.159564617413167, 34.286392519576189 ], [ -97.1595799926029, 34.306652081793267 ], [ -97.152516358346617, 34.332659583909155 ], [ -97.147801517513116, 34.3453203565686 ], [ -97.148823752825521, 34.357050096565473 ], [ -97.144536041107614, 34.37613473225074 ], [ -97.141897199174579, 34.386789533047335 ], [ -97.141408428689658, 34.399438270212087 ], [ -97.137426682274068, 34.416199959043432 ], [ -97.128522970978153, 34.438629588747148 ], [ -97.129393085695085, 34.44400846631121 ], [ -97.134634281922956, 34.450287273254695 ], [ -97.153769938586137, 34.470397615753868 ], [ -97.160926361960136, 34.487678154103179 ], [ -97.174133834974924, 34.506453577887605 ], [ -97.184922156355128, 34.525107037851583 ], [ -97.192727574462495, 34.558847212708102 ], [ -97.210626223016448, 34.601143072663028 ], [ -97.216318506465896, 34.622733535309713 ], [ -97.220026829339133, 34.651632866810772 ], [ -97.221635946967339, 34.661703629715134 ], [ -97.229037272745856, 34.684641041015148 ], [ -97.236277495770238, 34.696641689107302 ], [ -97.242274648883921, 34.70313047168294 ], [ -97.247027779894367, 34.709260278149294 ], [ -97.254444072588427, 34.726990802882639 ], [ -97.262630336437894, 34.739380430563763 ], [ -97.278988785565829, 34.755309844935255 ], [ -97.284908981956576, 34.76377054316405 ], [ -97.302411667823591, 34.798239398593203 ], [ -97.310796182692044, 34.831746397817348 ], [ -97.325079700854133, 34.855186584516005 ], [ -97.336257232089068, 34.884745648292814 ], [ -97.352317768658907, 34.906095863432085 ], [ -97.357529040258058, 34.921735375990394 ], [ -97.368454500492234, 34.944455621624265 ], [ -97.368828672631196, 34.959244221614327 ], [ -97.375779262742682, 35.000053036541196 ], [ -97.375970836641301, 35.041121214626358 ], [ -97.377168927450498, 35.045882103334129 ], [ -97.380014047810803, 35.050290976644249 ], [ -97.421420554881294, 35.093220559537997 ], [ -97.491202365244888, 35.168799120874326 ], [ -97.494330556716818, 35.175637943812745 ], [ -97.493963648425989, 35.181535832250134 ], [ -97.489584659368546, 35.18845575422759 ], [ -97.486036644064839, 35.192697717910178 ], [ -97.481772626610635, 35.197915671826195 ], [ -97.480055681610409, 35.203756579299913 ], [ -97.480894766216281, 35.207574492596059 ], [ -97.484732960819969, 35.213456325056057 ], [ -97.48535806153059, 35.218511216802774 ], [ -97.485694996962962, 35.277175970057428 ], [ -97.48340599280877, 35.281024912219273 ], [ -97.489693396846164, 35.297294459004874 ], [ -97.489876934718936, 35.333693626985827 ], [ -97.494157208189989, 35.344492326443543 ], [ -97.494783706405144, 35.377263572521052 ], [ -97.494859920840597, 35.391721242480209 ], [ -97.493632098137397, 35.406090930540593 ], [ -97.487482143778237, 35.420780671365932 ], [ -97.48607930998304, 35.434811368420362 ], [ -97.486353485024011, 35.446270103664425 ], [ -97.492823896393858, 35.462020666732094 ], [ -97.472987352514338, 35.462829886090375 ], [ -97.470202290876188, 35.463962893515159 ], [ -97.469141267196235, 35.464381896623266 ], [ -97.466166310621446, 35.473170730659625 ], [ -97.46477755716873, 35.492980292661329 ], [ -97.459757628293815, 35.51110680107427 ], [ -97.459376790484285, 35.52825320340029 ], [ -97.461207940139758, 35.538003837135562 ], [ -97.460139942512825, 35.541207738375547 ], [ -97.451357951097293, 35.566250980010039 ], [ -97.434359747820338, 35.592319321237447 ], [ -97.426867609349983, 35.598858208649986 ], [ -97.424898597652017, 35.602939099213465 ], [ -97.424898664647543, 35.60938587989299 ], [ -97.424243100358183, 35.653017406475058 ], [ -97.420841186785609, 35.670113883776956 ], [ -97.416324190419971, 35.68204655887039 ], [ -97.416309641272861, 35.725154104488645 ], [ -97.416340568243839, 35.812149337998676 ], [ -97.413411586045513, 35.821309119007367 ], [ -97.39853332225961, 35.83520902691663 ], [ -97.394696290555089, 35.842430895356308 ], [ -97.394116643102606, 35.878180827148597 ], [ -97.394085852399812, 35.898562211339311 ], [ -97.392460938731361, 35.911516860554642 ], [ -97.357014478787463, 35.970765039941611 ], [ -97.35302449915811, 35.985478724489511 ], [ -97.345196810104127, 36.029796784458078 ], [ -97.345045995303721, 36.115663648149464 ], [ -97.343428086514137, 36.125024454619776 ], [ -97.329092141426727, 36.151883125135051 ], [ -97.327330209383973, 36.159111983082504 ], [ -97.328292312582022, 36.232322098988057 ], [ -97.325843588055193, 36.2537216595316 ], [ -97.327636934757066, 36.275064389274299 ], [ -97.327790152685893, 36.289591227618914 ], [ -97.326982783923853, 36.400189038791261 ], [ -97.32705999036358, 36.481319152545382 ], [ -97.328411096968509, 36.487728053009164 ], [ -97.336071280765154, 36.505667639755217 ], [ -97.337833140951105, 36.520358314483644 ], [ -97.34511201550697, 36.53917579919905 ], [ -97.345278463764558, 36.593770747234259 ], [ -97.345781443496193, 36.69530479032931 ], [ -97.346131945258961, 36.781374082816335 ], [ -97.342843918981117, 36.807900566232306 ], [ -97.342614919612387, 36.811341497031471 ], [ -97.342507923822154, 36.815495411602193 ], [ -97.345049036228303, 36.855152556140844 ], [ -97.354143285625526, 36.898238555232744 ], [ -97.346391194750879, 36.941018750153731 ], [ -97.345636245397799, 36.983998862258225 ], [ -97.342836212124922, 36.99879158551915 ], [ -97.338136130207801, 37.017651293951438 ], [ -97.338449159067352, 37.057307572537447 ], [ -97.339555252535959, 37.182332299804081 ], [ -97.341875304342295, 37.19149511504547 ], [ -97.340059271873599, 37.198484003603724 ], [ -97.338731257865646, 37.22068461252438 ], [ -97.340044382679636, 37.276740613528951 ], [ -97.339510515654567, 37.323462815139266 ], [ -97.337175487084906, 37.328131749502234 ], [ -97.323412284022581, 37.342661582538831 ], [ -97.322038274508955, 37.347082513906322 ], [ -97.322885378876151, 37.373011058068251 ], [ -97.32602851160361, 37.396199638200152 ], [ -97.321275499509113, 37.415780322646036 ], [ -97.322832734498306, 37.47665825631961 ], [ -97.324312756041337, 37.538526858965874 ], [ -97.325655755404398, 37.547655620476377 ], [ -97.326051716273341, 37.568701080750046 ], [ -97.325227674434572, 37.583371708338412 ], [ -97.323000607456464, 37.601716246404244 ], [ -97.31226546321183, 37.605626181541716 ], [ -97.304399334056825, 37.6225557720051 ], [ -97.301653297330361, 37.624164739315404 ], [ -97.295305217055869, 37.625324729495915 ], [ -97.290689156700935, 37.627605685207179 ], [ -97.280229007667984, 37.643203314568979 ], [ -97.27158489577775, 37.650104161963853 ], [ -97.254456683004122, 37.660597940124134 ], [ -97.249962620979346, 37.664672850412082 ], [ -97.244324453828426, 37.669665790193889 ], [ -97.228591994370021, 37.675593836770126 ], [ -97.224700881847028, 37.675559886911344 ], [ -97.197723101729622, 37.675186237443654 ], [ -97.193556980638931, 37.676464260372697 ], [ -97.190512891389773, 37.679245234699266 ], [ -97.185851754881298, 37.683593194929614 ], [ -97.164076122308501, 37.696624194454301 ], [ -97.153120805627964, 37.701664236990922 ], [ -97.094304116180169, 37.728275565559585 ], [ -97.06691333459932, 37.73725582904612 ], [ -97.048212803305816, 37.745254992403588 ], [ -97.02501111224673, 37.751614301751943 ], [ -96.999673214389205, 37.76116677185923 ], [ -96.987290688167619, 37.764207873030749 ], [ -96.946280761356078, 37.784658235784143 ], [ -96.923940589493242, 37.802778434129181 ], [ -96.915959142301844, 37.810888503593794 ], [ -96.905582634419531, 37.817327574401141 ], [ -96.90491959939537, 37.817884579205817 ], [ -96.896198141167105, 37.82508363959812 ], [ -96.888080715255342, 37.83177069173999 ], [ -96.878306194456599, 37.840296750364075 ], [ -96.862703355348458, 37.8544068323584 ], [ -96.857209915370419, 37.867597868455917 ], [ -96.850900580389492, 37.873098892816472 ], [ -96.844979280313069, 37.87745891270032 ], [ -96.834549546846191, 37.896837949369306 ], [ -96.829819280138153, 37.9018889599066 ], [ -96.79981090261434, 37.916097999746981 ], [ -96.777699833162259, 37.929797004715972 ], [ -96.761265114681095, 37.935637003475534 ], [ -96.750278569011186, 37.943327989676121 ], [ -96.70827594534795, 37.984588339239203 ], [ -96.639271468270692, 38.047377504265604 ], [ -96.595414909305404, 38.075797511346202 ], [ -96.585755261942907, 38.086223445722531 ], [ -96.575577452274686, 38.10327828852887 ], [ -96.572434137666804, 38.111579197350579 ], [ -96.565810712846542, 38.118319139879979 ], [ -96.556663242397377, 38.122397125269522 ], [ -96.540098325424722, 38.133117041540828 ], [ -96.530560848554316, 38.13703801935884 ], [ -96.523534456044473, 38.141989969258212 ], [ -96.494259100702862, 38.150637957385818 ], [ -96.473001877280538, 38.173147739652677 ], [ -96.464197455656276, 38.178396710037688 ], [ -96.445946474233281, 38.195558516731587 ], [ -96.435722867520042, 38.208738326991501 ], [ -96.433220590584455, 38.219137139244573 ], [ -96.428009315601017, 38.22421806673745 ], [ -96.408393528693651, 38.229826050174147 ], [ -96.39800105457536, 38.236295963657959 ], [ -96.39451483119187, 38.242306851792641 ], [ -96.391042543773793, 38.256215581827732 ], [ -96.37200678070441, 38.27741723657816 ], [ -96.355336151536562, 38.292747987503873 ], [ -96.347995863842968, 38.303234800136323 ], [ -96.339321549961497, 38.311016668516267 ], [ -96.306834444919943, 38.330887347728051 ], [ -96.29621408703548, 38.340027182756643 ], [ -96.286073739808245, 38.354273905650899 ], [ -96.272066284584312, 38.369624607220473 ], [ -96.266519103454257, 38.379183412416978 ], [ -96.25614278328618, 38.389483207058497 ], [ -96.244255432333858, 38.40508489669957 ], [ -96.237244233493186, 38.415422693019337 ], [ -96.232605108531828, 38.413576748038018 ], [ -96.225387910909802, 38.41601371680354 ], [ -96.206367391698237, 38.427164525879689 ], [ -96.195861108015151, 38.427332552796386 ], [ -96.181425717619319, 38.423494682459442 ], [ -96.169523392419464, 38.41471391979519 ], [ -96.142774662576642, 38.411544077438094 ], [ -96.135518464456041, 38.41104411219608 ], [ -96.086758134537916, 38.410323284624084 ], [ -96.070567695435642, 38.411524306763418 ], [ -96.018290268248094, 38.410414500617115 ], [ -95.989862595720254, 38.40838565709911 ], [ -95.968118233777375, 38.409953714827935 ], [ -95.950706945766711, 38.412135736839346 ], [ -95.925934535289826, 38.415515760381155 ], [ -95.883933848577485, 38.428466609338173 ], [ -95.823942823181483, 38.425814944841669 ], [ -95.775037992011974, 38.426956131229275 ], [ -95.744054438302811, 38.426117270189152 ], [ -95.728535108626403, 38.429565193471944 ], [ -95.710186713649847, 38.434398080112281 ], [ -95.674014920947428, 38.442416891422887 ], [ -95.645983299495668, 38.446604796914691 ], [ -95.613718565881726, 38.453585621949472 ], [ -95.601000286854415, 38.453143643610979 ], [ -95.579827821070111, 38.452815668106162 ], [ -95.563553443761336, 38.45600458573378 ], [ -95.553467203424233, 38.458773510498368 ], [ -95.528747567847915, 38.47122415320753 ], [ -95.51468623416136, 38.473254098364556 ], [ -95.508422070892777, 38.476023017319662 ], [ -95.48953148591103, 38.485773786465913 ], [ -95.475371039236009, 38.488462786351228 ], [ -95.462110581957205, 38.496103630159979 ], [ -95.434613710572634, 38.503584561744681 ], [ -95.40929787052049, 38.524294087967917 ], [ -95.40145462353253, 38.528185017104647 ], [ -95.383472077712511, 38.532372996349253 ], [ -95.358271277545683, 38.551312578682023 ], [ -95.343225826028899, 38.556031526300551 ], [ -95.315362003634064, 38.561593524439225 ], [ -95.297989487113341, 38.568341426427402 ], [ -95.279914959200511, 38.572281416193007 ], [ -95.277244881173033, 38.573018410123758 ], [ -95.267654601155527, 38.575890381750149 ], [ -95.264236501949611, 38.576653379371251 ], [ -95.244627942692858, 38.583512268110645 ], [ -95.238348770845633, 38.58734216539515 ], [ -95.235113680211484, 38.59118305801276 ], [ -95.233076618841523, 38.597412878998917 ], [ -95.232260568179555, 38.622970132490728 ], [ -95.230581513374361, 38.631911874588688 ], [ -95.224981358376979, 38.637202732915298 ], [ -95.205449830222221, 38.644850557547102 ], [ -95.184735263470387, 38.659461190596915 ], [ -95.133143872083608, 38.679029782962822 ], [ -95.121364553621035, 38.684610663239908 ], [ -95.101016001503226, 38.696649395339328 ], [ -95.07556331893997, 38.704069276397838 ], [ -95.074953301704298, 38.705179248470508 ], [ -95.075029304591595, 38.70425927303539 ], [ -95.063723001608722, 38.707479224059831 ], [ -95.056405803867662, 38.711404143764931 ], [ -95.017204740417824, 38.73837357254628 ], [ -95.011261579297781, 38.742588485347049 ], [ -95.002807352458291, 38.745968430374937 ], [ -94.983962773821318, 38.750817367563812 ], [ -94.975524532592942, 38.754177329862827 ], [ -94.950559842215029, 38.767048172967222 ], [ -94.925810185260886, 38.783077974326041 ], [ -94.890820281351779, 38.808208681913158 ], [ -94.883694084937801, 38.81161865522752 ], [ -94.869091680858645, 38.81831760852014 ], [ -94.859943446585632, 38.824863543908592 ], [ -94.830989692764234, 38.84360838688665 ], [ -94.81612632267823, 38.855106287306839 ], [ -94.798929905078623, 38.869487165603637 ], [ -94.796014838840861, 38.872459138253397 ], [ -94.791666795708338, 38.883707999432588 ], [ -94.786218743351043, 38.897936826574146 ], [ -94.747307891962052, 38.938746494665985 ], [ -94.732171623109039, 38.956675267653203 ], [ -94.723000445723756, 38.966326147975487 ], [ -94.718148350615465, 38.971445084919885 ], [ -94.71413527357781, 38.975985028905029 ], [ -94.697608935584455, 38.992845824903959 ], [ -94.694389895243248, 39.000936720633064 ], [ -94.693283842498701, 39.014924517608442 ], [ -94.687889661692267, 39.032876261747816 ], [ -94.679557415588334, 39.038774185420095 ], [ -94.673149231375845, 39.039994175195702 ], [ -94.658873818863839, 39.044000133245149 ], [ -94.646422458330534, 39.047845091153008 ], [ -94.641608319400731, 39.049016079460955 ], [ -94.629941975989894, 39.055912990753193 ], [ -94.627561900791719, 39.060425926490055 ], [ -94.618474625031894, 39.070603785357051 ], [ -94.616475563087917, 39.073586743155332 ], [ -94.607335298566795, 39.075924718189903 ], [ -94.597005003914603, 39.075974728545049 ], [ -94.594235916851986, 39.080734660334031 ], [ -94.592167849344875, 39.085728587801853 ], [ -94.591580814885319, 39.096104433145094 ], [ -94.59453288089702, 39.106842269596719 ], [ -94.588513708740876, 39.106953273772525 ], [ -94.577053381637313, 39.106770287631029 ], [ -94.573719286383565, 39.106770290865576 ], [ -94.5722702491028, 39.104405327816423 ] ], [ [ -97.09381861716497, 32.057015665140604 ], [ -97.094795634749786, 32.044713085917934 ], [ -97.094902629978449, 32.039476264385613 ], [ -97.095504599995579, 32.008593316702289 ], [ -97.095878605918472, 32.003855478639281 ], [ -97.098015676800216, 31.999875615814851 ], [ -97.117646112345923, 31.971777385951487 ], [ -97.118676074002579, 31.964595575113698 ], [ -97.112755703028242, 31.951101921135312 ], [ -97.081579711796891, 31.878988807932618 ], [ -97.085271549651281, 31.851479540127507 ], [ -97.090337593676338, 31.837548908402425 ], [ -97.097677688416397, 31.819959369959268 ], [ -97.098920605978421, 31.807979685486604 ], [ -97.102110608347743, 31.796671980889798 ], [ -97.103750415360068, 31.773051601467515 ], [ -97.104642274249571, 31.756863026533118 ], [ -97.103558990433584, 31.729092669690196 ], [ -97.102116707087802, 31.701043293627023 ], [ -97.099690477274919, 31.685258652588413 ], [ -97.099248324416081, 31.668743021431123 ], [ -97.10132328649658, 31.652815364540746 ], [ -97.096149957974603, 31.640564665319872 ], [ -97.096126840142503, 31.62638598219522 ], [ -97.106480132943474, 31.604175405568615 ], [ -97.108899197686284, 31.598165519991763 ], [ -97.109791134022416, 31.584525811367349 ], [ -97.112492201387411, 31.576755959316454 ], [ -97.116192329141356, 31.570517064332225 ], [ -97.117489316114799, 31.560436270880089 ], [ -97.126790643638614, 31.543837542582704 ], [ -97.12952172101852, 31.535896684950451 ], [ -97.129918731747622, 31.534645707551825 ], [ -97.133877857573907, 31.524647879039613 ], [ -97.150991430601792, 31.493056448015295 ], [ -97.195548383295304, 31.419511422819088 ], [ -97.206313577456797, 31.400230938421213 ], [ -97.2122486311806, 31.386660318400807 ], [ -97.224089311572442, 31.33568186273671 ], [ -97.229422392603354, 31.325642126201913 ], [ -97.240241734038975, 31.315392323416194 ], [ -97.252646955062346, 31.295288835107847 ], [ -97.253775945395986, 31.292176929372793 ], [ -97.257048930919737, 31.283853179820078 ], [ -97.268875118908724, 31.266838656519802 ], [ -97.284401279318089, 31.240035425169719 ], [ -97.286644334774877, 31.238083473477026 ], [ -97.287346301387473, 31.234904571919461 ], [ -97.300773405890922, 31.211614245969329 ], [ -97.329055216235886, 31.141098425697525 ], [ -97.329849209622239, 31.139038490821687 ], [ -97.335380216720935, 31.127388856067984 ], [ -97.338272305796309, 31.125658901882751 ], [ -97.348564700188774, 31.123457933137992 ], [ -97.35163979174294, 31.121446988452849 ], [ -97.359214749729887, 31.102698594825423 ], [ -97.359512750756664, 31.1020976141624 ], [ -97.362541809199527, 31.098458727014307 ], [ -97.387025699119974, 31.090499914464335 ], [ -97.40759445022168, 31.083919074805017 ], [ -97.434771183243384, 31.06149878486702 ], [ -97.446765601537933, 31.056495931046967 ], [ -97.465130225074518, 31.047881194587305 ], [ -97.46761727896164, 31.04509028985694 ], [ -97.473919276707619, 31.030640801840967 ], [ -97.483143386680254, 31.015428340522352 ], [ -97.503384712178104, 30.986413348660268 ], [ -97.534619246907369, 30.957292029140362 ], [ -97.538876219042706, 30.947233351920566 ], [ -97.541394047499622, 30.931904896155423 ], [ -97.545765983546076, 30.91944430905934 ], [ -97.577466398391138, 30.882296308742621 ], [ -97.589391363422664, 30.856811125493408 ], [ -97.601766314024644, 30.829598006281529 ], [ -97.611035371093138, 30.814907452001524 ], [ -97.621015320054369, 30.792318192185441 ], [ -97.628636146211463, 30.766949069478297 ], [ -97.652195915955616, 30.701472521554873 ], [ -97.655674880693169, 30.691487909814924 ], [ -97.661175870158999, 30.678832389976613 ], [ -97.67964602276092, 30.649443443527122 ], [ -97.687200155698378, 30.642292666321886 ], [ -97.691167144077824, 30.633104017611615 ], [ -97.691640095691568, 30.628864194982999 ], [ -97.686245603048874, 30.607235186459803 ], [ -97.6927224657518, 30.584426097640716 ], [ -97.691958710206038, 30.535452215991395 ], [ -97.688075316114848, 30.517089048338924 ], [ -97.686107145011064, 30.509679388235007 ], [ -97.676187521406405, 30.488451365539465 ], [ -97.673586315625329, 30.480079723562177 ], [ -97.672533221044233, 30.475931898360013 ], [ -97.666390731920089, 30.455762757308324 ], [ -97.668343562297366, 30.440542338572403 ], [ -97.674523256649792, 30.408023563339874 ], [ -97.674844185502366, 30.402682771489459 ], [ -97.67156294185699, 30.392923188317308 ], [ -97.675865832760877, 30.377344764117435 ], [ -97.70005095032262, 30.339247057318953 ], [ -97.705284967781495, 30.330687352264601 ], [ -97.706825877652108, 30.3220376837352 ], [ -97.708801781162592, 30.312207058876407 ], [ -97.715019798032685, 30.302009413203709 ], [ -97.719513813577692, 30.294917658969617 ], [ -97.729744840795149, 30.278448233971055 ], [ -97.731239821261852, 30.274578377016855 ], [ -97.732773798561652, 30.270449530265193 ], [ -97.733864783358086, 30.267578636703178 ], [ -97.734222778226254, 30.266628671961673 ], [ -97.73457377368473, 30.26572870527534 ], [ -97.736374748808373, 30.261019879972373 ], [ -97.737076707813117, 30.257219027118399 ], [ -97.735389522139783, 30.247890398561271 ], [ -97.735389472225094, 30.243730535469808 ], [ -97.741241511471713, 30.233699819006034 ], [ -97.751823567829476, 30.215771313721707 ], [ -97.75687456048432, 30.207400515526448 ], [ -97.770500610644788, 30.19047087863332 ], [ -97.782936618715439, 30.171815322770456 ], [ -97.786133620557834, 30.166982439277596 ], [ -97.807190361438344, 30.112473982173611 ], [ -97.813347315178163, 30.098882360354676 ], [ -97.845070168966217, 30.035924105416971 ], [ -97.870010210900006, 29.997416135512132 ], [ -97.873405208193489, 29.984585530264219 ], [ -97.878143132287079, 29.953086543267403 ], [ -97.884704183466724, 29.938638961754933 ], [ -97.902145349595685, 29.905509905096036 ], [ -97.912475486745095, 29.893018225968696 ], [ -97.921989619450528, 29.88262948585573 ], [ -97.939201889871867, 29.869451767724087 ], [ -98.009621995582918, 29.805805372927345 ], [ -98.014978098159048, 29.800907526657245 ], [ -98.029032359694185, 29.786670983713641 ], [ -98.054468782362434, 29.751520167562834 ], [ -98.060564909585679, 29.743612425553149 ], [ -98.066691046548954, 29.738447586097259 ], [ -98.070109123005608, 29.735569675417292 ], [ -98.077967298995887, 29.729036877543592 ], [ -98.085055456877868, 29.7225140812094 ], [ -98.088778531586556, 29.713683374405679 ], [ -98.090571561676342, 29.705554649138048 ], [ -98.093722628218728, 29.700185824328226 ], [ -98.099131750098806, 29.695954953011473 ], [ -98.122494290416839, 29.68660520004109 ], [ -98.140484712330718, 29.683145260820858 ], [ -98.146374847641269, 29.680057347517277 ], [ -98.169454371512586, 29.663265845753461 ], [ -98.183255691117523, 29.657386000286259 ], [ -98.19447094751321, 29.650144209117638 ], [ -98.195912980499585, 29.649217235774127 ], [ -98.208708273946428, 29.641437456654909 ], [ -98.26086351175735, 29.614336192742108 ], [ -98.276992923758073, 29.599928623547164 ], [ -98.304199626967062, 29.585336023458662 ], [ -98.309860771395904, 29.581767124906083 ], [ -98.322679103034417, 29.576678253467001 ], [ -98.333207364853109, 29.567847517023747 ], [ -98.338319491060787, 29.56340965021807 ], [ -98.349588769336975, 29.554298921324428 ], [ -98.359736028815377, 29.550610012398668 ], [ -98.36894425960304, 29.545559153071487 ], [ -98.388392743079876, 29.534418466874801 ], [ -98.391733820068936, 29.530329594899236 ], [ -98.393824858976132, 29.524288793573778 ] ], [ [ -98.511182148751388, 29.396193958119408 ], [ -98.514463101139583, 29.375364689363707 ], [ -98.52539627508547, 29.356585333306434 ], [ -98.534421480302939, 29.350344535747553 ], [ -98.551458901305153, 29.343455742468645 ], [ -98.597480056830207, 29.324436283733476 ], [ -98.608306316999489, 29.316606514230056 ], [ -98.625106716482108, 29.302215935467849 ], [ -98.641709128703354, 29.290179269726206 ], [ -98.666794791967803, 29.279208529798652 ], [ -98.715182101639613, 29.259177956907703 ], [ -98.775188905782727, 29.240947272763286 ], [ -98.794179541951038, 29.222297827897894 ], [ -98.804730886670001, 29.214022061106423 ], [ -98.8451831758873, 29.182559933611518 ], [ -98.894752678849741, 29.129611469317485 ], [ -98.895256694192696, 29.130181446765885 ], [ -98.906556024196306, 29.120782699971755 ], [ -98.920205425459912, 29.117402732105358 ], [ -98.923814530157287, 29.115521774081078 ], [ -98.925065564788582, 29.113461836507181 ], [ -98.95537041977984, 29.090873413827403 ], [ -98.982715167150232, 29.070192935794687 ], [ -99.000316648004386, 29.061324118650472 ], [ -99.030140453117141, 29.043883680129213 ], [ -99.047237891882546, 29.030704108463699 ], [ -99.050236961846835, 29.02683423571818 ], [ -99.0748724808509, 28.970007350717591 ], [ -99.08212062144743, 28.946668294023691 ], [ -99.094319898281356, 28.933288808909548 ], [ -99.105818139695074, 28.917837399837246 ], [ -99.111143242516647, 28.909258727041397 ], [ -99.114843300111772, 28.899770093839482 ], [ -99.116873320072344, 28.891500416491738 ], [ -99.116903292003741, 28.883149749639113 ], [ -99.10692399760373, 28.862950602709237 ], [ -99.133787211904661, 28.766684271114293 ], [ -99.140219215751856, 28.745725052437706 ], [ -99.154051236166296, 28.723625840328129 ], [ -99.161482126293166, 28.700396721745314 ], [ -99.181021275735446, 28.680698350424549 ], [ -99.183798263482018, 28.674757565791776 ], [ -99.183722190906025, 28.668067836328589 ], [ -99.178281836737838, 28.644143851220011 ], [ -99.232801072844111, 28.461636042974277 ], [ -99.238797124090866, 28.450227559609925 ], [ -99.249204294408756, 28.444007765572675 ], [ -99.250310314150838, 28.443616773730522 ], [ -99.251119318501836, 28.438807014156808 ], [ -99.251500220020432, 28.417598091537755 ], [ -99.271092628829209, 28.361671804259508 ], [ -99.273160539341063, 28.332072285913707 ], [ -99.275632571795043, 28.322051773759899 ], [ -99.271421380833146, 28.314602181998051 ], [ -99.271031341779718, 28.310032416061631 ], [ -99.277730520772167, 28.299563892706615 ], [ -99.279729559271189, 28.293834165880195 ], [ -99.31051513761895, 28.192829317198825 ], [ -99.32481246624603, 28.154660649097124 ], [ -99.325522405659129, 28.135191390840376 ], [ -99.348921874868495, 28.058984051331887 ], [ -99.349959853656671, 28.046183527005542 ], [ -99.351202863467563, 28.038804793357201 ], [ -99.356574016774573, 28.031941990293618 ], [ -99.389252267884885, 27.926226320692113 ], [ -99.399002737706738, 27.889397963143761 ], [ -99.401016904627909, 27.863048484495035 ], [ -99.422105892649682, 27.79046872945159 ], [ -99.429362224609775, 27.767539115898121 ], [ -99.43720550907004, 27.762738119041948 ], [ -99.439097604847873, 27.754256271845545 ], [ -99.453426464769962, 27.704821452172197 ], [ -99.459346779673837, 27.690600792629223 ], [ -99.46645010231245, 27.680621008069039 ], [ -99.471669387875352, 27.667251343898094 ], [ -99.473309472552344, 27.663701431837953 ], [ -99.480137772299798, 27.655591608848678 ], [ -99.486387056543748, 27.646991809518404 ], [ -99.487997172192095, 27.639511017080274 ], [ -99.489706343517028, 27.625551416275236 ], [ -99.493780627380474, 27.607823913996128 ], [ -99.496252767256948, 27.601114098307551 ], [ -99.495260766606037, 27.596933228784696 ], [ -99.494718776368913, 27.593393337274758 ], [ -99.496656869600614, 27.590183421870353 ], [ -99.497419907027364, 27.588832457922173 ], [ -99.500319078023537, 27.580154701952125 ], [ -99.503027260266308, 27.567234081126163 ], [ -99.503729354562907, 27.557965356340649 ], [ -99.503829374130945, 27.555874418583393 ], [ -99.503867417434179, 27.550595576398742 ], [ -99.503485437187848, 27.546784691699557 ], [ -99.502890495198116, 27.537474972387869 ], [ -99.502936549434352, 27.530876169758368 ], [ -99.502989611492197, 27.523324395618371 ], [ -99.503043662300243, 27.517175579466716 ], [ -99.503096731036365, 27.508785830383083 ] ], [ [ -99.503096731036365, 27.508785830383083 ], [ -99.503623759178907, 27.507049880221068 ] ], [ [ -99.503096731036365, 27.508785830383083 ], [ -99.502669733470967, 27.507045884182489 ] ], [ [ -98.397822925971369, 29.5102002600111 ], [ -98.404040956599104, 29.479521327939562 ], [ -98.406466967388781, 29.469401685445057 ], [ -98.413593076889683, 29.455611158585494 ], [ -98.416980146933795, 29.452712251150341 ], [ -98.439891655390241, 29.440812597033528 ], [ -98.450443908652403, 29.439151618188298 ], [ -98.469265372948328, 29.438478573524623 ], [ -98.477894590597103, 29.438953525025227 ], [ -98.485417786394578, 29.440292449813544 ], [ -98.494145974329243, 29.435802577821594 ], [ -98.495511004602292, 29.435252592380657 ], [ -98.500814106390777, 29.430711736460378 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I355\", \"DIST_MILES\": 19.440000, \"DIST_KM\": 31.280000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -88.026649745461327, 41.959150806153431 ], [ -88.034629735494178, 41.95131482754303 ], [ -88.037055680915088, 41.947286848301587 ], [ -88.037223205223242, 41.932008979266918 ], [ -88.039648397502205, 41.904009207244258 ], [ -88.040144074546291, 41.893259297307594 ], [ -88.035840581923111, 41.881750421098268 ], [ -88.035459294889279, 41.873000498788151 ], [ -88.040532295474762, 41.868098512528356 ], [ -88.041433238834543, 41.865420530599316 ], [ -88.041707058777973, 41.859423580892937 ], [ -88.032078593679657, 41.854018681605403 ], [ -88.030682453801163, 41.850939715987508 ], [ -88.029643860045326, 41.833121875432774 ], [ -88.029285690892806, 41.828108920646891 ], [ -88.032687468080823, 41.81769899153835 ], [ -88.036838514715697, 41.81508999105619 ], [ -88.053477878978811, 41.810229941005744 ], [ -88.057445779726805, 41.803111980786497 ], [ -88.059817588250382, 41.794620041373854 ], [ -88.057757180867995, 41.783649147851023 ], [ -88.05400386730355, 41.777389222674316 ], [ -88.040194025465993, 41.764400410471168 ], [ -88.035874708038961, 41.758640483731519 ], [ -88.034143402046269, 41.750659562022861 ], [ -88.033653842542378, 41.728866624035412 ], [ -88.03297418978714, 41.703399692437493 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I359\", \"DIST_MILES\": 2.230000, \"DIST_KM\": 3.580000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -87.566939709278955, 33.199798777474228 ], [ -87.559630456842314, 33.188119053337118 ], [ -87.556090313342764, 33.17636934149003 ], [ -87.552733196449665, 33.170129489954029 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I35E\", \"DIST_MILES\": 135.270000, \"DIST_KM\": 217.700000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -97.166658805279425, 33.21220904086401 ], [ -97.139214701448452, 33.196709363354401 ], [ -97.116530835699933, 33.192059453588215 ], [ -97.108031499547749, 33.186780555952708 ], [ -97.089529768574167, 33.173310810282338 ], [ -97.074148170853192, 33.162512005925585 ], [ -97.064748810095622, 33.156172117074235 ], [ -97.039417832436769, 33.129881571585422 ], [ -97.029552452171913, 33.115400817222728 ], [ -97.027256359458178, 33.109171924869457 ], [ -97.028316369485339, 33.094191196505527 ], [ -97.025906263231562, 33.081832412614915 ], [ -97.014567842696607, 33.063891700698157 ], [ -97.007167561598919, 33.04342303755012 ], [ -96.992846052969782, 33.030052208983832 ], [ -96.9788845607913, 33.012302455991531 ], [ -96.97262734726479, 33.007107520662039 ], [ -96.958901885249006, 32.999428610012842 ], [ -96.948731537619267, 32.993759754656267 ], [ -96.939927238839587, 32.988823880782512 ], [ -96.930175909396354, 32.981805072127841 ], [ -96.922600654579625, 32.97361531189614 ], [ -96.917022467813595, 32.963971608741467 ], [ -96.910560254680703, 32.953473930122826 ], [ -96.903244017198745, 32.941923282779648 ], [ -96.900000914972807, 32.922712908213512 ], [ -96.89797185200689, 32.913524205260742 ], [ -96.897780846983807, 32.907836393793183 ], [ -96.897902851471912, 32.904136517511077 ], [ -96.897971855054664, 32.895976789482873 ], [ -96.897971859306935, 32.871494604590602 ], [ -96.893561726764347, 32.862496884753945 ], [ -96.885291479288028, 32.853978131942675 ], [ -96.878722285236719, 32.846936337410135 ], [ -96.869147021237538, 32.819033223906807 ], [ -96.866041934578277, 32.814039376393005 ], [ -96.861829813499469, 32.81185743039314 ], [ -96.849737461341192, 32.810927407889878 ], [ -96.833432998310698, 32.803168593941415 ], [ -96.827061816153616, 32.801680615257546 ], [ -96.822537687023143, 32.800650629504155 ], [ -96.815671497256929, 32.796328742877876 ], [ -96.811909419590805, 32.782211195779084 ], [ -96.811741425764822, 32.777210361363203 ], [ -96.810589405847495, 32.771438548224388 ] ], [ [ -93.028944777899142, 45.218416302113532 ], [ -93.030500226250325, 45.163891851485431 ], [ -93.031019209199386, 45.160660822034352 ], [ -93.032018081691746, 45.14602369908777 ], [ -93.048414459791701, 45.126763456834503 ], [ -93.049146454885744, 45.124039433360863 ], [ -93.04912326187258, 45.107388314452464 ], [ -93.052374048506678, 45.078938100321565 ], [ -93.052342990589594, 45.07404006612316 ], [ -93.062115905749621, 45.037566796652392 ], [ -93.086660719607096, 45.034648745462 ], [ -93.089346785505015, 45.032455730265696 ], [ -93.089468522941786, 45.010734614457839 ], [ -93.088635892959132, 44.970527635606167 ], [ -93.090825871419838, 44.964454649433186 ], [ -93.091389738280952, 44.954868673429537 ], [ -93.103582044885727, 44.947616670752922 ], [ -93.112051239458481, 44.941314667143367 ], [ -93.125044598794986, 44.935401648848071 ], [ -93.129270693713892, 44.932025643245034 ], [ -93.140052051268654, 44.930858618775829 ], [ -93.143103128835676, 44.92897361258256 ], [ -93.144599115772792, 44.924686611152552 ], [ -93.143423861099492, 44.910655622249635 ], [ -93.138677595837919, 44.904201642134225 ], [ -93.130865172468873, 44.894553678958147 ], [ -93.131635113519025, 44.888953681775376 ], [ -93.13801325722649, 44.883594660444118 ], [ -93.143743321073515, 44.874442641465521 ], [ -93.144994188489108, 44.862796641712769 ], [ -93.145467145547386, 44.858859641285314 ], [ -93.163549367138501, 44.830425542363344 ], [ -93.170782556691691, 44.825584494872707 ], [ -93.174192624785945, 44.82184547066214 ], [ -93.174276567231857, 44.817756467602067 ], [ -93.176809607913725, 44.814285448085187 ], [ -93.188726922677532, 44.806175356807906 ], [ -93.2014001506667, 44.789977239070772 ], [ -93.216948560011716, 44.778678092398472 ], [ -93.24796343117454, 44.759085769687793 ], [ -93.263427902710148, 44.752466637914047 ], [ -93.27777931896243, 44.743323523215267 ], [ -93.282708466332295, 44.740286485852927 ] ], [ [ -97.09381861716497, 32.057015665140604 ], [ -97.09341459958641, 32.05603569767225 ], [ -97.039671476587671, 32.085853565004648 ], [ -97.000278850197716, 32.110373633888656 ], [ -96.985706352528751, 32.117834376697978 ], [ -96.93945479527008, 32.143411508031797 ], [ -96.923868277814478, 32.159485967616085 ], [ -96.909005792021546, 32.176777390040947 ], [ -96.876502774872179, 32.242315215289622 ], [ -96.855095234676725, 32.344480716088832 ], [ -96.855797475096992, 32.362581089533066 ], [ -96.865266001534494, 32.378667521854581 ], [ -96.87270553610162, 32.400471758647193 ], [ -96.872705636285772, 32.408501480935605 ], [ -96.870737661491219, 32.416271214692756 ], [ -96.862527490055101, 32.426780861646193 ], [ -96.850206216046061, 32.441981351883832 ], [ -96.840959151795346, 32.466348521729834 ], [ -96.82455583379722, 32.494122583839619 ], [ -96.822594797881663, 32.497807459184038 ], [ -96.822153305719425, 32.5316123631398 ], [ -96.822297561485385, 32.547389853731886 ], [ -96.822458743232573, 32.558474495905557 ], [ -96.822398248339582, 32.590456463555043 ], [ -96.823496964149172, 32.63329408270701 ], [ -96.823291099600567, 32.642284792321462 ], [ -96.822757398623665, 32.662254146852398 ], [ -96.823078803483114, 32.687182343357797 ], [ -96.823979024462943, 32.699430951120455 ], [ -96.829747348995838, 32.709161657546645 ], [ -96.827550459458834, 32.720392288687144 ], [ -96.823552635368131, 32.738880677372102 ], [ -96.81075040798703, 32.74710135623446 ], [ -96.809392417379456, 32.75125221429704 ], [ -96.809750410921794, 32.758579972171091 ], [ -96.805729283217531, 32.765098737513398 ], [ -96.804699249595544, 32.767070667360365 ], [ -96.804257233021701, 32.768810607533219 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I35W\", \"DIST_MILES\": 126.790000, \"DIST_KM\": 204.050000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -97.166658805279425, 33.21220904086401 ], [ -97.163980671116661, 33.205567180491968 ], [ -97.169244797059392, 33.191499476029797 ], [ -97.207552856480277, 33.130239824071182 ], [ -97.248805809469658, 33.054813604659067 ], [ -97.273152225204569, 33.026494304460996 ], [ -97.278134305961245, 33.021314437178475 ], [ -97.301289623784299, 32.988424306298079 ], [ -97.306980719505546, 32.979853540965252 ], [ -97.309010733700134, 32.972364737634877 ], [ -97.310536708832444, 32.958896085661756 ], [ -97.310681665534418, 32.948695347260006 ], [ -97.31539671471738, 32.933456739636469 ], [ -97.317127728967506, 32.926795909422331 ], [ -97.317303578589161, 32.891808797438479 ], [ -97.317333557549588, 32.886875922597341 ], [ -97.317402549387552, 32.884617979805043 ], [ -97.317395507738752, 32.875245217668152 ], [ -97.314335361757983, 32.861009585930425 ], [ -97.312725281363029, 32.852925796157855 ], [ -97.312771221556375, 32.839480139555135 ], [ -97.313008159893911, 32.824438522982092 ], [ -97.314930143068409, 32.808668917604713 ], [ -97.32029426149154, 32.800800093761325 ], [ -97.322003286565277, 32.795249225951622 ], [ -97.320355178491184, 32.781310585933511 ], [ -97.318463063976793, 32.76781093790121 ], [ -97.318234047580461, 32.765620994722781 ], [ -97.318165042938361, 32.765030010105292 ], [ -97.318180040779325, 32.764439024997849 ], [ -97.318524032598916, 32.760262128801507 ], [ -97.319371039243663, 32.756031230757294 ], [ -97.319462009406934, 32.747139484387894 ], [ -97.319424006036485, 32.74615151927933 ], [ -97.32048400746578, 32.732670985579809 ], [ -97.320613951075387, 32.705873925118368 ], [ -97.320613901949699, 32.684042691197369 ], [ -97.320583863187849, 32.667224281524106 ], [ -97.321483859774688, 32.653453760356797 ], [ -97.321513802603775, 32.627564669052873 ], [ -97.321506766061205, 32.611375237415771 ], [ -97.319499680884476, 32.601156604250612 ], [ -97.319652633040647, 32.577857420868675 ], [ -97.318973593781934, 32.569861703731121 ], [ -97.318607544243278, 32.553035294948749 ], [ -97.312343313979838, 32.538387827558161 ], [ -97.307513123283385, 32.521867418560703 ], [ -97.301203898181939, 32.511048812438034 ], [ -97.285601348680643, 32.49421142327229 ], [ -97.251413024769619, 32.442119223141752 ], [ -97.23130819125582, 32.423733752910096 ], [ -97.228149051533052, 32.420021862579247 ], [ -97.227111989774599, 32.416054989560898 ], [ -97.22370179086488, 32.404191368431377 ], [ -97.211455248068987, 32.393144686004021 ], [ -97.208442102083509, 32.388833817357799 ], [ -97.18446860703969, 32.316944124361434 ], [ -97.177251048109667, 32.285745143317421 ], [ -97.160847012653349, 32.250418276913415 ], [ -97.139520837633214, 32.188320315926774 ], [ -97.129106310004275, 32.162961147708884 ], [ -97.100990928270804, 32.07165218209375 ], [ -97.09381861716497, 32.057015665140604 ] ], [ [ -93.282708466332295, 44.740286485852927 ], [ -93.28292953124928, 44.745634492886303 ], [ -93.288552874508213, 44.757036484603681 ], [ -93.288400106105115, 44.77508054238421 ], [ -93.289926489862026, 44.800165610367486 ], [ -93.291239868457652, 44.82552968002944 ], [ -93.29815928422596, 44.838919669585103 ], [ -93.298350585388363, 44.861635737324526 ], [ -93.29877773956143, 44.872401766747984 ], [ -93.295497859540831, 44.890227847382626 ], [ -93.274966167539475, 44.89044101347649 ], [ -93.274417947299156, 44.950061213781552 ], [ -93.269214869889083, 44.956970281879201 ], [ -93.269214972587733, 44.964587307302345 ], [ -93.252467447783857, 44.966029459761003 ], [ -93.251132486766608, 44.971996492528952 ], [ -93.245486370025603, 44.977409522545933 ], [ -93.242579353541998, 44.98337154358596 ], [ -93.236148212027587, 44.988944562647234 ], [ -93.238261383786366, 44.99608258421403 ], [ -93.235911376558221, 45.001182593939063 ], [ -93.232142268507715, 45.002517591656861 ], [ -93.224451985257986, 45.001025591686506 ], [ -93.218180774701878, 45.001182590265159 ], [ -93.207521483192011, 45.006049588000394 ], [ -93.204058393435631, 45.008003588328201 ], [ -93.199747273349772, 45.009876589400783 ], [ -93.186486824166877, 45.010093592068202 ], [ -93.190950285392248, 45.031940607309075 ], [ -93.185816600314439, 45.066966647346703 ], [ -93.185419756283224, 45.079067660395985 ], [ -93.187754967183267, 45.088176660693456 ], [ -93.188220369774641, 45.115569682547338 ], [ -93.188311495866259, 45.124282689561966 ], [ -93.188174668742093, 45.136901701187504 ], [ -93.185450647119623, 45.142429722786986 ], [ -93.165324124425013, 45.157981876607948 ], [ -93.154932833257845, 45.164764964153122 ], [ -93.125451842114131, 45.172341204057041 ], [ -93.117371620732882, 45.178459289759765 ], [ -93.11299247613718, 45.179898330076618 ], [ -93.11075740226741, 45.180634350880304 ], [ -93.072677127884702, 45.192627724850674 ], [ -93.054831525109222, 45.19826591443492 ], [ -93.028944777899142, 45.218416302113532 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I37\", \"DIST_MILES\": 143.460000, \"DIST_KM\": 230.880000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -98.477894590597103, 29.438953525025227 ], [ -98.4768955498743, 29.436422619034474 ], [ -98.481587617557636, 29.42872287649713 ], [ -98.480503549121025, 29.42214211532842 ], [ -98.480465528321901, 29.419003227467876 ], [ -98.480404493923217, 29.413803413231598 ], [ -98.479603445733744, 29.409273577933931 ], [ -98.48097643268585, 29.40193283456102 ], [ -98.478184321895199, 29.395084089868835 ], [ -98.473767170544534, 29.387884364404162 ], [ -98.449336460187553, 29.366545226976633 ], [ -98.442394271307222, 29.362194411748913 ], [ -98.432391014287063, 29.358345591568941 ], [ -98.428126883172538, 29.352665813806283 ], [ -98.415720471486551, 29.329456703311209 ], [ -98.406428188537419, 29.315817236581871 ], [ -98.39698191810713, 29.304556686009015 ], [ -98.394868835477396, 29.297387955119184 ], [ -98.396058742705563, 29.272937835005159 ], [ -98.395051613547452, 29.250979634924843 ], [ -98.40283376574925, 29.235647142326528 ], [ -98.412568965966926, 29.21775072999591 ], [ -98.414591009117558, 29.215299807015771 ], [ -98.414515005735467, 29.21285089428061 ], [ -98.425913244474032, 29.183680872217646 ], [ -98.42722527038535, 29.175752146709161 ], [ -98.42718025896653, 29.154611896321263 ], [ -98.431299340731172, 29.122505013180003 ], [ -98.433001370757211, 29.096775916050746 ], [ -98.432245333913116, 29.051496524485675 ], [ -98.433703369773866, 29.050716544320306 ], [ -98.431978325719129, 29.047716659856725 ], [ -98.432863342509023, 29.034738114987729 ], [ -98.431162294954973, 29.023276530338062 ], [ -98.431139294872935, 28.993778637284148 ], [ -98.437983533317649, 28.958750179358354 ], [ -98.434824522602952, 28.915423144348001 ], [ -98.432924482496588, 28.907831493115932 ], [ -98.418902102992391, 28.899082936363445 ], [ -98.405275732224538, 28.886684535801656 ], [ -98.391618356657432, 28.867403432987551 ], [ -98.368683697295623, 28.830056134342755 ], [ -98.360764460194517, 28.819855596706091 ], [ -98.333053605633168, 28.791997852841444 ], [ -98.315085040705256, 28.781527327187042 ], [ -98.314368019543338, 28.782359292590122 ], [ -98.311689934305235, 28.780589371624181 ], [ -98.299498527028021, 28.762479155611064 ], [ -98.27414460024174, 28.69009296867851 ], [ -98.259145093098212, 28.66854479102847 ], [ -98.238613517793297, 28.644853739264597 ], [ -98.237194456547641, 28.626794435362932 ], [ -98.234379382825111, 28.620213701075944 ], [ -98.201304571838492, 28.579976454890101 ], [ -98.187144157213936, 28.527898624109465 ], [ -98.18400807700904, 28.523059843392872 ], [ -98.143106077794116, 28.489089642621334 ], [ -98.117936463349864, 28.469191768501386 ], [ -98.108186211859049, 28.45452251243454 ], [ -98.081123527812963, 28.419275297556485 ], [ -98.026923149819609, 28.33753721474168 ], [ -97.977003014708984, 28.300589960284565 ], [ -97.967221797132382, 28.289470445572917 ], [ -97.940350216049637, 28.268262377039004 ], [ -97.922580835729107, 28.256442895575862 ], [ -97.918041717116921, 28.246362336111495 ], [ -97.907756458625343, 28.233112943938647 ], [ -97.885989888181655, 28.19393371508227 ], [ -97.851290100733038, 28.152584554055984 ], [ -97.817979391516261, 28.112947277413181 ], [ -97.812265271614493, 28.104877624565351 ], [ -97.809778196979224, 28.090829234466785 ], [ -97.807786155437569, 28.087680369280093 ], [ -97.771119466667145, 28.054350758333985 ], [ -97.746422047978342, 28.036262518055629 ], [ -97.675025068677016, 27.978483463530019 ], [ -97.637945374136265, 27.919486409060646 ], [ -97.631644232525673, 27.904288151921914 ], [ -97.629179164759094, 27.895495574740387 ], [ -97.624045040756897, 27.88127926637619 ], [ -97.622823950176638, 27.863720088324133 ] ], [ [ -97.622823950176638, 27.863720088324133 ], [ -97.561444097701724, 27.842870466163955 ], [ -97.54781089064393, 27.834612944315396 ], [ -97.534214684788225, 27.826682408317193 ], [ -97.518498460954874, 27.820742794600111 ], [ -97.506092267923847, 27.812673259655579 ], [ -97.49267207766357, 27.806984645598462 ], [ -97.484515971647014, 27.805109817597945 ], [ -97.466090745562852, 27.803723072008935 ], [ -97.453357594373927, 27.803826197563478 ], [ -97.44217245597325, 27.802760363076455 ], [ -97.431125322698165, 27.80242049266063 ], [ -97.425540251827513, 27.801533592493644 ], [ -97.419292161589567, 27.798304811701922 ], [ -97.414271100985218, 27.798154870649547 ], [ -97.409831047197969, 27.79798292468335 ], [ -97.407970023395933, 27.797654959654942 ], [ -97.401346947315247, 27.798243999550568 ], [ -97.396868904382046, 27.800364943342789 ] ], [ [ -97.622823950176638, 27.863720088324133 ], [ -97.624013962734864, 27.863221103640857 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I370\", \"DIST_MILES\": 2.760000, \"DIST_KM\": 4.450000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -77.198940449374589, 39.122056068250998 ], [ -77.193744397874639, 39.122548066901459 ], [ -77.184673274513997, 39.120649112461834 ], [ -77.179592257677271, 39.123899063036475 ], [ -77.169124247922582, 39.13300791900064 ], [ -77.166217216028784, 39.133087921594374 ], [ -77.161800143104657, 39.131046963222879 ], [ -77.159160060668583, 39.126344048840679 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I375\", \"DIST_MILES\": 2.120000, \"DIST_KM\": 3.410000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -82.659230290349726, 27.776414821466023 ], [ -82.656178219770467, 27.777163802107594 ], [ -82.646878004826888, 27.776904831831569 ], [ -82.641643883882111, 27.776408860825466 ] ], [ [ -83.043743907525609, 42.34323887391168 ], [ -83.041432762684224, 42.339827926062419 ], [ -83.03642745962199, 42.33323302870177 ], [ -83.035893424657161, 42.332378041584434 ], [ -83.038593506351191, 42.330849051539168 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I376\", \"DIST_MILES\": 14.740000, \"DIST_KM\": 23.710000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -80.009147625855206, 40.44000304320307 ], [ -80.007056564530842, 40.438839055302473 ], [ -79.999313346505048, 40.43572309108901 ], [ -79.996154251083212, 40.434342087556288 ], [ -79.989837079210631, 40.433632071985279 ], [ -79.984083937840992, 40.434609050608337 ], [ -79.973143660661691, 40.435543013714344 ], [ -79.967764519078045, 40.43542899821432 ], [ -79.959143259260486, 40.431777990960057 ], [ -79.953756078914523, 40.427627996752122 ], [ -79.943463826613211, 40.429370958364174 ], [ -79.927281395235397, 40.428459917390775 ], [ -79.907864859242977, 40.42547288066276 ], [ -79.893009479631999, 40.426261834426356 ], [ -79.891522452853991, 40.427463822509047 ], [ -79.884708301552365, 40.430080786054177 ], [ -79.875691061124186, 40.429504764129163 ], [ -79.869128939385632, 40.43434171186211 ], [ -79.85523567314398, 40.44358860401622 ], [ -79.848659522777822, 40.445522569087686 ], [ -79.843738395516127, 40.445522553407962 ], [ -79.834765113511367, 40.440688561814035 ], [ -79.828737965718503, 40.441470537141363 ], [ -79.813143579073952, 40.443034476123252 ], [ -79.794886096649648, 40.441978427908332 ], [ -79.773904586280523, 40.444820337329183 ], [ -79.767320410685983, 40.444255321598121 ], [ -79.761300218740942, 40.440845333935094 ], [ -79.758470124582303, 40.438888343304669 ], [ -79.756471063200223, 40.437980345656953 ], [ -79.753624998705718, 40.438789329491442 ], [ -79.750015882951246, 40.436702338186706 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I380\", \"DIST_MILES\": 100.480000, \"DIST_KM\": 161.710000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -122.389703019301862, 37.615336248998275 ], [ -122.396497232930471, 37.634122840934225 ], [ -122.398482489225813, 37.635138628965052 ], [ -122.405939618761536, 37.63526361934705 ], [ -122.411563317229479, 37.633849890784212 ], [ -122.423375503795313, 37.628163699097833 ] ], [ [ -75.574086780517518, 41.373013042684676 ], [ -75.573025788961274, 41.364224138030444 ], [ -75.570080795494789, 41.356743251999447 ], [ -75.556294818577328, 41.339806613405649 ], [ -75.555936838771771, 41.32850370888692 ], [ -75.546796877764592, 41.313534959220306 ], [ -75.546765888313544, 41.308613996635032 ], [ -75.544011904544675, 41.303376074221909 ], [ -75.531064955712367, 41.293916318037205 ], [ -75.524808993700972, 41.286336451142063 ], [ -75.520605040376154, 41.275285575332504 ], [ -75.514402145252561, 41.24549690386354 ], [ -75.510664160477432, 41.239138086336879 ], [ -75.505003185771372, 41.234263259669234 ], [ -75.50273719626432, 41.232622322526353 ], [ -75.498518221956715, 41.23008644551097 ], [ -75.483228373322277, 41.221267039561816 ], [ -75.436895882015349, 41.185868946331283 ], [ -75.428312989415488, 41.173860390878204 ], [ -75.403044322368999, 41.14319156647867 ], [ -75.397635437690639, 41.105590372366606 ], [ -75.395552487250399, 41.08841372700379 ], [ -75.396994487444815, 41.073741962268691 ], [ -75.394507525345801, 41.07019107663082 ] ], [ [ -92.322495822642722, 42.478185854159221 ], [ -92.322267863936247, 42.473584942136291 ], [ -92.320252840691708, 42.470297030409021 ], [ -92.312318778524926, 42.454546431185179 ], [ -92.295045231847382, 42.459826571792846 ], [ -92.26681541990547, 42.460616946576415 ], [ -92.257530170435473, 42.459197101765099 ], [ -92.246749920881214, 42.453628303153415 ], [ -92.238791712952306, 42.451679325765788 ], [ -92.219329176174583, 42.449737328280762 ], [ -92.191488382135205, 42.4494172845124 ], [ -92.187483495017844, 42.43113765912652 ], [ -92.179708412014421, 42.420478874094705 ], [ -92.168585237718233, 42.410180083716888 ], [ -92.150891918371585, 42.397980338778346 ], [ -92.120923303715756, 42.384510634771843 ], [ -92.118176235423931, 42.384179642401072 ], [ -92.079067573553431, 42.360269216181479 ], [ -92.0645792582784, 42.356622315231427 ], [ -92.023997516782444, 42.339349788409685 ], [ -91.987184990550787, 42.319071250076121 ], [ -91.965555941542064, 42.297511644289223 ], [ -91.94954860543892, 42.297213527389687 ], [ -91.939584721571364, 42.282542829089245 ], [ -91.893404670061386, 42.246544394297096 ], [ -91.890871679847862, 42.243263464096479 ], [ -91.867120539030594, 42.228542687695729 ], [ -91.8454304550404, 42.215473894057446 ], [ -91.832498499988915, 42.204381117273776 ], [ -91.825250533215808, 42.198285241514888 ], [ -91.801714501037011, 42.186364427146266 ], [ -91.778986628996876, 42.170552745520411 ], [ -91.755289731837536, 42.157452991050526 ], [ -91.730974713405502, 42.133344837695986 ], [ -91.717050484106878, 42.125434188165883 ], [ -91.701959750679592, 42.101845040839521 ], [ -91.700961523476849, 42.07745781030426 ], [ -91.699367192902542, 42.055817500144997 ], [ -91.694233200705483, 42.051316687093717 ], [ -91.678966097575184, 42.042219112318286 ], [ -91.672542420849311, 42.028227615004305 ], [ -91.66685161314777, 42.018808968261268 ], [ -91.666959189775298, 41.996478750812862 ], [ -91.661602824563914, 41.987980252363577 ], [ -91.66650075890729, 41.981750530425273 ], [ -91.675457833087421, 41.977249674312191 ], [ -91.676212798682116, 41.975460760259843 ], [ -91.673603612842555, 41.971040019423889 ], [ -91.670879435924036, 41.96700026026209 ], [ -91.670100265856732, 41.926734384443002 ], [ -91.67215971738932, 41.906075445688828 ], [ -91.669304470155581, 41.864554662008153 ], [ -91.669098381851086, 41.861609819428558 ], [ -91.667396955585275, 41.847858564466094 ], [ -91.662223430895281, 41.83292841875631 ], [ -91.647070372182938, 41.805449077480404 ], [ -91.646475239371341, 41.8011003163558 ], [ -91.646619511661555, 41.77505169562744 ], [ -91.642156066118417, 41.76190245880251 ], [ -91.642201082440067, 41.723245600357878 ], [ -91.642154646267272, 41.705385941824787 ], [ -91.642108606818539, 41.703802972749209 ], [ -91.6383553071459, 41.694453210550073 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I381\", \"DIST_MILES\": 1.310000, \"DIST_KM\": 2.110000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -82.179558948226216, 36.626296153856764 ], [ -82.183037976616319, 36.618102042621146 ], [ -82.190911280633358, 36.614504775862088 ], [ -82.193353355618967, 36.612166691802258 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I384\", \"DIST_MILES\": 7.600000, \"DIST_KM\": 12.230000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -72.468780527758256, 41.772897881141184 ], [ -72.462502217839884, 41.778757869620691 ], [ -72.454454104392056, 41.786111856745222 ] ], [ [ -72.585423585982582, 41.773859122309894 ], [ -72.573225460304428, 41.765237303076773 ], [ -72.570585662937916, 41.764536326124087 ], [ -72.547866492957908, 41.764749443061042 ], [ -72.536820367541821, 41.762869525320085 ], [ -72.520906661660064, 41.762094620013535 ], [ -72.508319685794973, 41.760870702368663 ], [ -72.502064214063807, 41.761465729676274 ], [ -72.489545417412174, 41.764387797278715 ], [ -72.486005786141163, 41.766615802698347 ], [ -72.473319053065694, 41.770246871608428 ], [ -72.469275475105619, 41.772550880752974 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I385\", \"DIST_MILES\": 41.710000, \"DIST_KM\": 67.120000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -82.384136548265744, 34.854228584951606 ], [ -82.379756338044487, 34.854487589437745 ], [ -82.36815184433047, 34.851958637991736 ], [ -82.356043149764403, 34.858527579521791 ], [ -82.347650760654716, 34.858367593739594 ], [ -82.331796115365989, 34.853301685014493 ], [ -82.311867447596725, 34.838938927069428 ], [ -82.297095871634554, 34.832348063693004 ], [ -82.293479760270529, 34.829067124350679 ], [ -82.291457761870831, 34.823688213774254 ], [ -82.289542824828416, 34.815166352995149 ], [ -82.280570629681606, 34.802196594385009 ], [ -82.280601941983704, 34.784797873801239 ], [ -82.272956773567202, 34.773515099508529 ], [ -82.273681866143647, 34.770272148551513 ], [ -82.282532452548253, 34.761472236175436 ], [ -82.286804788973157, 34.754319321368939 ] ], [ [ -82.286804788973157, 34.754319321368939 ], [ -82.254699168599728, 34.718903268732575 ], [ -82.230313422374806, 34.696099621531729 ], [ -82.217548437006741, 34.688348891210595 ], [ -82.195879722954729, 34.676328353695084 ], [ -82.180940510570579, 34.668451671765247 ], [ -82.15566931638692, 34.64985213497139 ], [ -82.150793841141137, 34.643782191579525 ], [ -82.138905827301983, 34.639109452707963 ], [ -82.122829504454728, 34.636401849169346 ], [ -82.115794889013259, 34.633541000286399 ], [ -82.092217759577039, 34.622532482169248 ], [ -82.06729033846878, 34.606861924944759 ], [ -82.016853561187006, 34.556233494854268 ], [ -82.005729467321899, 34.553010727609532 ], [ -82.004813381465667, 34.552884748823622 ], [ -81.990859306028341, 34.55057313466174 ], [ -81.973114005040614, 34.54358561970659 ], [ -81.952873930039388, 34.538016216571485 ], [ -81.952583926403619, 34.537147214593858 ], [ -81.941789457169648, 34.534804544935511 ], [ -81.923472338917108, 34.52759606999517 ], [ -81.906390195066592, 34.518486540718079 ], [ -81.887883259413655, 34.517038156434594 ], [ -81.881077649777765, 34.515470372253155 ], [ -81.870328277526184, 34.513246717380035 ] ], [ [ -82.286804788973157, 34.754319321368939 ], [ -82.288506838382318, 34.756184280595015 ] ], [ [ -72.469275475105619, 41.772550880752974 ], [ -72.468780527758256, 41.772897881141184 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I39\", \"DIST_MILES\": 225.450000, \"DIST_KM\": 362.820000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -88.960299981000674, 42.24867767756772 ], [ -88.965777827921386, 42.239572926430739 ], [ -88.976825745193992, 42.228380213228931 ], [ -88.984492759544679, 42.222860344922665 ], [ -88.994243929691478, 42.220812362725916 ], [ -89.011677295252426, 42.220301363309119 ], [ -89.011249984212071, 42.210032674720104 ], [ -89.023723844275594, 42.196174112755237 ], [ -89.023585429446086, 42.182025544967274 ], [ -89.023928546654091, 42.151432480654286 ], [ -89.021462008899732, 42.100615026893642 ], [ -89.021598998612745, 42.065856088495096 ], [ -89.01996557708577, 42.052806480978127 ], [ -89.02202535538629, 42.043426774883621 ], [ -89.022375314928837, 42.007416876045788 ], [ -89.019932416159648, 41.974687251601054 ], [ -89.023503191272468, 41.961908352653012 ], [ -89.023288514975235, 41.934629527250912 ], [ -89.023128029005093, 41.9150176525185 ], [ -89.020236721725865, 41.905038695703063 ], [ -89.012782221926528, 41.890886728130056 ], [ -89.010271984570821, 41.883127755763645 ], [ -89.008941037855109, 41.760649482137403 ], [ -89.061037903274197, 41.62673628251401 ], [ -89.060739281255252, 41.583111674640094 ], [ -89.062401886829818, 41.571591793752347 ], [ -89.060753207115781, 41.554120937296233 ], [ -89.059165046017995, 41.523702199914339 ], [ -89.052053442604347, 41.511602253761474 ], [ -89.048772938153547, 41.495241393309733 ], [ -89.050191972372374, 41.469991710812053 ], [ -89.050572981988466, 41.460493828892737 ], [ -89.058859171829525, 41.442904099460442 ], [ -89.057974163044136, 41.382292822925734 ], [ -89.059278196247277, 41.367862004215887 ], [ -89.065100338391446, 41.344833312985358 ], [ -89.070181460514021, 41.338070421155351 ], [ -89.071012480737977, 41.33636844581752 ], [ -89.073568542990955, 41.331504517039122 ], [ -89.087423884159236, 41.306213884510441 ], [ -89.087530895263058, 41.288247093810739 ], [ -89.086752879876798, 41.280915175430508 ], [ -89.086752887276859, 41.265084359555011 ], [ -89.071507808774982, 41.119194017377467 ], [ -89.070859712848801, 41.104518848979851 ], [ -89.06776925547392, 41.034674040137325 ], [ -89.066304183637072, 41.028242952796894 ], [ -89.057789876328783, 41.011182668280128 ], [ -89.054867186857336, 40.974763777237449 ], [ -89.053454073105385, 40.926013285284327 ], [ -89.052041944729339, 40.877062799877095 ], [ -89.040726369454731, 40.868945808084966 ], [ -89.046708213614806, 40.852775026800323 ], [ -89.044027951860244, 40.736466208596163 ], [ -89.034545253465922, 40.68072643603962 ], [ -89.026648007965548, 40.67320343076404 ], [ -89.022085926459596, 40.664212446675712 ], [ -89.010343970099896, 40.621724557124516 ], [ -89.004752124460566, 40.591386640764483 ], [ -89.002951283284276, 40.573273698387304 ], [ -89.004248443617854, 40.565217739917848 ], [ -89.003188448009851, 40.561406746484295 ], [ -89.002837571157215, 40.550805784960737 ], [ -89.002951730978936, 40.538911832218297 ] ], [ [ -89.640129160667001, 44.897139357711261 ], [ -89.640015126038747, 44.887015344498565 ], [ -89.645309168008183, 44.870154288094042 ], [ -89.64138807504348, 44.863436303252698 ], [ -89.639709038079062, 44.861285311594017 ], [ -89.63690197227595, 44.856230324678968 ], [ -89.637717977200737, 44.853194315152095 ], [ -89.65799724277268, 44.82916911207618 ], [ -89.677559461178532, 44.804246860061696 ], [ -89.680176421090081, 44.786088769816274 ], [ -89.67848209690483, 44.728998568798211 ], [ -89.659682707849655, 44.713457745017074 ], [ -89.642074261678232, 44.69016887655566 ], [ -89.640960206170604, 44.685224870293702 ], [ -89.64263805372839, 44.66154674684973 ], [ -89.635618795124543, 44.643476765193554 ], [ -89.634573679799388, 44.631036727000357 ], [ -89.60323865467133, 44.577089940728605 ], [ -89.59570042084539, 44.567183007799905 ], [ -89.583081030004209, 44.551707126707669 ], [ -89.576542868276562, 44.548449207505485 ], [ -89.554989432922739, 44.54822851440413 ], [ -89.549755306833688, 44.546198581798151 ], [ -89.544185138118493, 44.54079764209564 ], [ -89.527461608653368, 44.523447821756079 ], [ -89.521678424633933, 44.51771888576252 ], [ -89.518733302856376, 44.512358910242348 ], [ -89.518290212524818, 44.505129892151558 ], [ -89.518504650435034, 44.453830444819602 ], [ -89.518489898479331, 44.430500734942783 ], [ -89.518794964207075, 44.424861800263386 ], [ -89.519985606236574, 44.366330507937441 ], [ -89.522960993551976, 44.33405085869218 ], [ -89.524030961447409, 44.244444929129699 ], [ -89.525694393526976, 44.213648175705117 ], [ -89.524076395866246, 44.212023218382619 ], [ -89.52293262405604, 44.193953399691637 ], [ -89.532470079952986, 44.168303467646176 ], [ -89.532776159277063, 44.087692191226488 ], [ -89.541275562403712, 44.064712264823569 ], [ -89.542549681952522, 44.056812316965612 ], [ -89.537689790816316, 44.044513505094173 ], [ -89.522087842897918, 44.027500899777017 ], [ -89.505844890308623, 44.010476298573096 ], [ -89.499168954721725, 43.999993491178493 ], [ -89.497658891263796, 43.982251780768117 ], [ -89.496658850253766, 43.971253960235614 ], [ -89.487152686382757, 43.961614236046501 ], [ -89.485474651954846, 43.957987312045596 ], [ -89.482796527185585, 43.92661580234175 ], [ -89.48358117307653, 43.790596763655188 ], [ -89.484909136751099, 43.767850084770842 ], [ -89.483955079745868, 43.753289302102424 ], [ -89.485939001858313, 43.734487589844321 ], [ -89.473830618747087, 43.712080024384619 ], [ -89.471312495785241, 43.70097921984668 ], [ -89.469924408631215, 43.691980374568288 ], [ -89.469703069315671, 43.64259217984133 ], [ -89.473493945499911, 43.614211617894625 ], [ -89.468290763665109, 43.601310860819353 ], [ -89.469793638553782, 43.578880216370138 ], [ -89.473142667201785, 43.574291269352813 ], [ -89.492918916565756, 43.559380382358739 ], [ -89.495237904037523, 43.551682491637479 ], [ -89.489187611647338, 43.524929964699069 ], [ -89.483633337583285, 43.498452462388471 ], [ -89.485197349179955, 43.493722624888932 ], [ -89.493276472705674, 43.488313771261261 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I390\", \"DIST_MILES\": 75.300000, \"DIST_KM\": 121.180000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -77.680842243803198, 43.157628061833741 ], [ -77.678256089886858, 43.149678114431616 ], [ -77.668237713526551, 43.139428214032698 ], [ -77.66101243076929, 43.130868290537649 ], [ -77.657152282729072, 43.126546329797634 ], [ -77.647812989519807, 43.122182394729919 ], [ -77.623619246673655, 43.11207355458091 ], [ -77.615937001059834, 43.107800609341375 ], [ -77.605201747556791, 43.110444647007014 ], [ -77.599792604296738, 43.11024667285853 ], [ -77.600364524674774, 43.101029710522894 ], [ -77.604858499785195, 43.087213751020087 ], [ -77.608138552415696, 43.084035750581386 ], [ -77.626518951159213, 43.076287705184278 ], [ -77.634545106363774, 43.07106969464315 ], [ -77.641961172215474, 43.058835720414649 ], [ -77.648125217271655, 43.047784747156918 ], [ -77.65939419492976, 43.017758846524963 ], [ -77.668801284773963, 43.003121882336885 ], [ -77.679429350676827, 42.990670899097154 ], [ -77.685082192678578, 42.974690946422285 ], [ -77.696953187397895, 42.958562966274613 ], [ -77.697533045461441, 42.950421997763627 ], [ -77.692115713613433, 42.940264063891966 ], [ -77.691467535640172, 42.931822102504832 ], [ -77.69609031607574, 42.914385154661524 ], [ -77.695297132925958, 42.905874194062811 ], [ -77.693388849267734, 42.893534255214441 ], [ -77.696905594228454, 42.87581431179315 ], [ -77.701590607128679, 42.870623309076002 ], [ -77.713087828006095, 42.867731260803218 ], [ -77.722412014326764, 42.865763219655733 ], [ -77.727531055996621, 42.861612208616542 ], [ -77.729857803504103, 42.846003255444856 ], [ -77.736502565213272, 42.826033293182029 ], [ -77.738737333377145, 42.811743333105269 ], [ -77.741843294527911, 42.806162335232401 ], [ -77.761221464785919, 42.796053236193764 ], [ -77.774100319213545, 42.778395198192854 ], [ -77.779280370942004, 42.776754163645251 ], [ -77.797621676432811, 42.776903020886856 ], [ -77.806341794679412, 42.775632957471984 ], [ -77.829634919324803, 42.76302481697924 ], [ -77.834647926215794, 42.759374789356002 ], [ -77.837729865676778, 42.754041781993735 ], [ -77.838316590800986, 42.737592969836442 ], [ -77.830290314466964, 42.729021159699315 ], [ -77.828841234964599, 42.725702220101859 ], [ -77.829298186474432, 42.722273266342462 ], [ -77.83492116375632, 42.714853326846949 ], [ -77.833678049428087, 42.709185419670355 ], [ -77.817762569416132, 42.697512729218722 ], [ -77.804586224629517, 42.691382937425686 ], [ -77.80056507986923, 42.687293035062751 ], [ -77.800565003811769, 42.682925101027955 ], [ -77.808225030882483, 42.676204132135126 ], [ -77.811520999557501, 42.670722183573908 ], [ -77.811085864593977, 42.66329529838729 ], [ -77.808178744621429, 42.659568381544219 ], [ -77.784000769769676, 42.631325045772293 ], [ -77.773578411350059, 42.623245275831131 ], [ -77.765277024456935, 42.611553543909153 ], [ -77.753405573776405, 42.600796838254837 ], [ -77.743792015067569, 42.582227207833625 ], [ -77.732896634368402, 42.574346394999779 ], [ -77.71551610272877, 42.565576631564234 ], [ -77.710846904856112, 42.56026674149161 ], [ -77.703796620501393, 42.55296889563482 ], [ -77.698219397806511, 42.547278015890456 ], [ -77.67895477210206, 42.535067312388506 ], [ -77.673224601014795, 42.53218738838477 ], [ -77.654578165934737, 42.529246534950765 ], [ -77.620611613036544, 42.536639605693139 ], [ -77.605902342671214, 42.538077664139848 ], [ -77.594274174257947, 42.541685673126942 ], [ -77.592550125081246, 42.540877694834109 ], [ -77.590445100734655, 42.541868691402748 ], [ -77.577207826317391, 42.541338772186513 ], [ -77.565030520747399, 42.53781789195444 ], [ -77.55856830770729, 42.533057998577405 ], [ -77.550609982938724, 42.523628182634809 ], [ -77.537296573928458, 42.515277378605511 ], [ -77.524746294315236, 42.513297475275351 ], [ -77.516788083084521, 42.5100665655469 ], [ -77.512317903636486, 42.504756667510307 ], [ -77.51200479088493, 42.497428772527286 ], [ -77.510661763340437, 42.497253781954853 ], [ -77.510287691992602, 42.490409873360008 ], [ -77.507312576405241, 42.484206970536647 ], [ -77.501567414703089, 42.478791072839478 ], [ -77.489650025767261, 42.47160825154922 ], [ -77.470514253723593, 42.444847745817128 ], [ -77.467088138545293, 42.44239180367736 ], [ -77.445626488701265, 42.434511067521306 ], [ -77.422554745738026, 42.418199456201272 ], [ -77.413208476377861, 42.415101567403532 ], [ -77.410545387701049, 42.412469622394028 ], [ -77.408783285374554, 42.404451742343532 ], [ -77.406059188094304, 42.400640813569083 ], [ -77.386359609594209, 42.389834106167136 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I391\", \"DIST_MILES\": 4.940000, \"DIST_KM\": 7.950000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -72.608574154604085, 42.130351134694983 ], [ -72.609748116985571, 42.134635029954254 ], [ -72.612547959706333, 42.140665864115341 ], [ -72.614150905109852, 42.146380722655422 ], [ -72.610748338103889, 42.154181618123332 ], [ -72.610595413586907, 42.158041542311416 ], [ -72.61148838649973, 42.161455458617539 ], [ -72.609871738352908, 42.174238225922366 ], [ -72.605729225596733, 42.180842161697583 ], [ -72.605759265694104, 42.183501107651068 ], [ -72.611541864667458, 42.191797841718241 ], [ -72.617851363147295, 42.196893629651392 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I393\", \"DIST_MILES\": 4.150000, \"DIST_KM\": 6.670000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -71.533305250497278, 43.208841186717983 ], [ -71.525677585972161, 43.209154391323636 ], [ -71.515959392939507, 43.212190622684716 ], [ -71.491046219601813, 43.223605102992202 ], [ -71.476187241139826, 43.233134270263065 ], [ -71.469162616308139, 43.236063366493305 ], [ -71.462746842228228, 43.237845464521882 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I394\", \"DIST_MILES\": 9.690000, \"DIST_KM\": 15.590000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -93.460261252096061, 44.971143635130908 ], [ -93.420891973156984, 44.970853983702575 ], [ -93.412155714299644, 44.973074065370817 ], [ -93.400391337121903, 44.97340217057981 ], [ -93.38901497611225, 44.974036273069146 ], [ -93.378356599329166, 44.971270361684958 ], [ -93.34104037789055, 44.970267690000298 ], [ -93.301473086023606, 44.969569038399534 ], [ -93.29085980800113, 44.974624148117734 ], [ -93.287090691712521, 44.97505118301973 ], [ -93.282177537540946, 44.975406227917311 ], [ -93.277759420335542, 44.977329273536647 ], [ -93.27014525018393, 44.982955360251935 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I395\", \"DIST_MILES\": 87.350000, \"DIST_KM\": 140.570000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -77.174830989707289, 38.79178576653846 ], [ -77.163432696330929, 38.802546612499981 ], [ -77.154131481570147, 38.808745530194138 ], [ -77.143420253350499, 38.813593474106426 ], [ -77.138087143823469, 38.81565345210317 ], [ -77.113366648880998, 38.830039265408452 ], [ -77.098077372053652, 38.834635223127577 ], [ -77.089433220302027, 38.837553193438197 ], [ -77.08487114194763, 38.840983144792162 ], [ -77.082399100633154, 38.843638104506176 ], [ -77.079332050615548, 38.8468420560162 ], [ -77.070549918372208, 38.859147861996959 ], [ -77.068688896235074, 38.865087762517298 ], [ -77.06277581080569, 38.868104723377449 ], [ -77.051384636866501, 38.866792772650093 ], [ -77.047051579620117, 38.869783730103251 ], [ -77.044457550810023, 38.873193676100541 ], [ -77.043259535467485, 38.873922666015524 ], [ -77.035790445008345, 38.87915259090677 ], [ -77.032418398265733, 38.879381594505539 ], [ -77.02793234575384, 38.882074557111565 ], [ -77.026711329893246, 38.88234155514877 ], [ -77.024033292897954, 38.882356560923171 ], [ -77.01166612200781, 38.882284590134269 ], [ -77.014168243265402, 38.900133268164204 ], [ -77.015465282820685, 38.905000179111958 ] ], [ [ -68.809987434884675, 44.78721999250714 ], [ -68.795645190729104, 44.786918956410133 ], [ -68.787974962658097, 44.787690459231683 ], [ -68.781173016002626, 44.785828947401122 ], [ -68.773693524267202, 44.784322477511452 ], [ -68.760174659638977, 44.781050450143809 ], [ -68.734409514948581, 44.7678233222857 ], [ -68.729278673820446, 44.767823639467032 ], [ -68.721859495333433, 44.770918044467564 ] ], [ [ -76.619237132522684, 39.284153838708349 ], [ -76.619313061735653, 39.279217859685225 ] ], [ [ -76.619313061735653, 39.279217859685225 ], [ -76.620977046226571, 39.275276867131979 ], [ -76.624349024236537, 39.267918879436955 ] ], [ [ -76.619313061735653, 39.279217859685225 ], [ -76.623555206271647, 39.281666824503169 ] ], [ [ -71.846016026854144, 42.195752768651779 ], [ -71.848014592189955, 42.189778834242254 ], [ -71.847823486693954, 42.184090939693874 ], [ -71.844344706731519, 42.171678231900259 ], [ -71.844802544619654, 42.167650294374226 ], [ -71.848272900018799, 42.161920326388042 ], [ -71.856160553785543, 42.153772313561859 ], [ -71.857999167213592, 42.148722367404226 ], [ -71.855793564189483, 42.109149121135324 ], [ -71.85857797832908, 42.101413205598121 ], [ -71.865846659179539, 42.090049269192605 ], [ -71.866915362255057, 42.083926359069281 ], [ -71.86518337679928, 42.073775575400212 ], [ -71.859651954480682, 42.064196853503198 ], [ -71.862932193429799, 42.051899012380993 ], [ -71.859667396275469, 42.040340281905742 ], [ -71.861031821852549, 42.024139547567252 ], [ -71.853372435319145, 42.002992069159745 ], [ -71.853494060983763, 41.985291197482979 ], [ -71.857888312346589, 41.979382148538058 ], [ -71.86948348452168, 41.970913982707472 ], [ -71.880971462397156, 41.950832884485187 ], [ -71.881520313315775, 41.947102895080434 ], [ -71.878514549647548, 41.937154003553282 ], [ -71.885547308223835, 41.924259948608885 ], [ -71.892854959119433, 41.907383912181608 ], [ -71.897760195600355, 41.903381847845623 ], [ -71.899124942334964, 41.900074842250305 ], [ -71.896287179714093, 41.891582939460825 ], [ -71.895966994712055, 41.879384012932817 ], [ -71.880907597556572, 41.852605424133955 ], [ -71.879328630994308, 41.84273250574212 ], [ -71.870243454431261, 41.819062792692748 ], [ -71.873148700485217, 41.801023840343852 ], [ -71.876948015305416, 41.793004818617163 ], [ -71.87188254915975, 41.783872955297255 ], [ -71.872164147249791, 41.764956053173243 ], [ -71.878876976172521, 41.752623006188038 ], [ -71.880616476191065, 41.73868397325284 ], [ -71.8902049677489, 41.728444794192789 ], [ -71.895415063813701, 41.717805688225333 ], [ -71.908435720504684, 41.684693408792413 ], [ -71.910838147471679, 41.670072341619544 ], [ -71.934195670540831, 41.646824891836012 ], [ -71.937072118474575, 41.635887820096407 ], [ -71.94455491554362, 41.621323659584341 ], [ -71.947713311638609, 41.608761578123165 ], [ -71.951999701576014, 41.604900494359441 ], [ -71.970888123111393, 41.593311135654993 ], [ -71.976487379543215, 41.590771031134075 ], [ -71.991469473008991, 41.58886676322377 ], [ -72.015315399203104, 41.590480432535166 ], [ -72.034996756471102, 41.586192184679312 ], [ -72.045867328160895, 41.585379052745772 ], [ -72.065479761901557, 41.583200814782259 ], [ -72.092881094699663, 41.569696459539294 ], [ -72.104735442993672, 41.556707288852706 ], [ -72.109121770219076, 41.54628221144565 ], [ -72.119984085780573, 41.517824013234595 ], [ -72.116872379836721, 41.509668028014616 ], [ -72.115323536319707, 41.506498037691543 ], [ -72.115643079843025, 41.487009018065223 ], [ -72.11708457357652, 41.474485000631695 ], [ -72.115726374383073, 41.46047401791148 ], [ -72.118136565402054, 41.440858985856828 ], [ -72.124208494049242, 41.428170900423623 ], [ -72.150167748215125, 41.404038512718834 ], [ -72.166843555542215, 41.395539255196574 ], [ -72.180940714849257, 41.388085030602937 ], [ -72.193053995140218, 41.375290815988862 ] ], [ [ -80.203933895435767, 25.788845301291801 ], [ -80.200454776553698, 25.788706299582547 ], [ -80.193183535416622, 25.785767391773817 ], [ -80.189010391760164, 25.785925378082339 ], [ -80.185447266220535, 25.787146327063148 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I4\", \"DIST_MILES\": 131.660000, \"DIST_KM\": 211.880000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -81.07572249062855, 29.155270238059394 ], [ -81.083153678235973, 29.152274288186671 ], [ -81.101159124573854, 29.144587416657213 ], [ -81.119455564994183, 29.135966561294218 ], [ -81.231410615429581, 29.017981719465769 ], [ -81.241115726651927, 29.006522912618827 ], [ -81.257641970560655, 28.955254679902051 ], [ -81.259786166763675, 28.948697924727405 ], [ -81.272994370220843, 28.907247478220569 ], [ -81.27719767118748, 28.898086822697042 ], [ -81.278472852867225, 28.890266117416274 ], [ -81.284500371536254, 28.871798814399909 ], [ -81.286758508522638, 28.867987958624806 ], [ -81.319780064033964, 28.834807226662161 ], [ -81.320757108727889, 28.833826264442884 ], [ -81.321809156779494, 28.832769305168956 ], [ -81.332285630259619, 28.822258711223558 ], [ -81.337991968173299, 28.811200137072817 ], [ -81.345095391281703, 28.796821692171076 ], [ -81.357349094218222, 28.772551633461866 ], [ -81.36346849957738, 28.756131270803479 ], [ -81.380948320487619, 28.706004038210995 ], [ -81.388234575369381, 28.69403446135162 ], [ -81.388554603720863, 28.690704576507635 ], [ -81.388341775230259, 28.662014563838689 ], [ -81.387837896823768, 28.640376307735412 ], [ -81.386625082765065, 28.605864492928021 ], [ -81.386099124529451, 28.597256787905135 ], [ -81.376798974847233, 28.588579063995176 ], [ -81.375172962826738, 28.584947184726424 ], [ -81.375845093768049, 28.566988802888002 ], [ -81.380453241241852, 28.559269080089052 ], [ -81.382139316017259, 28.553078297375187 ], [ -81.382193412323005, 28.538008815591748 ], [ -81.383268451901699, 28.535239913822444 ], [ -81.38492450307993, 28.532495012927864 ], [ -81.385816530965556, 28.530950068624566 ], [ -81.386343609224525, 28.52008444402383 ], [ -81.388342675249248, 28.515911593560602 ], [ -81.397100882349307, 28.510629801798181 ], [ -81.4193943394001, 28.508279950472062 ], [ -81.436835737443729, 28.489451683512904 ], [ -81.448996984370766, 28.478891110621447 ], [ -81.458916182664993, 28.470602445276331 ], [ -81.47255745134062, 28.459173904168551 ], [ -81.474220484767827, 28.455884029648189 ], [ -81.474358490403105, 28.450112242210924 ], [ -81.474297504464843, 28.421003312211717 ], [ -81.475334528911233, 28.410595697205625 ], [ -81.504525054118702, 28.377524942670384 ], [ -81.531457484690947, 28.347385949848572 ], [ -81.537362582196394, 28.341018164485465 ], [ -81.544976709503942, 28.332917438542811 ], [ -81.551965827221267, 28.326327659999272 ], [ -81.591883533261225, 28.284001123503977 ], [ -81.615473973615138, 28.25942599150871 ], [ -81.648326707519516, 28.233870856817042 ], [ -81.648540724294534, 28.232451907918723 ], [ -81.653064823138052, 28.230330977789421 ], [ -81.680981510612426, 28.209920700546082 ], [ -81.721875437390935, 28.190903414111684 ], [ -81.744031935240571, 28.181952772098878 ], [ -81.762717308218981, 28.174302037845024 ], [ -81.777006609855079, 28.165242361278647 ], [ -81.790114862911139, 28.159103574900332 ], [ -81.801803047419853, 28.157474608645249 ], [ -81.83618154481681, 28.156944531828525 ], [ -81.891190487083165, 28.142044038413633 ], [ -81.898049602387147, 28.140373096756321 ], [ -81.90788377480078, 28.137284212939235 ], [ -81.91555892755693, 28.13310538516696 ], [ -81.938905453943264, 28.114305202021779 ], [ -81.95273083088405, 28.096715999015949 ], [ -81.970263197305641, 28.085177524478603 ], [ -82.016696429215855, 28.050969013622773 ], [ -82.035344111582702, 28.037608531462581 ], [ -82.055806705784036, 28.036858421749894 ], [ -82.102408040278632, 28.036717094367258 ], [ -82.120421554899636, 28.036746963429106 ], [ -82.1259077418798, 28.035119012454132 ], [ -82.145965460314045, 28.027918268395844 ], [ -82.15529674842243, 28.027146248585492 ], [ -82.220163632548392, 28.027658783730736 ], [ -82.245181490994923, 28.022819907207516 ], [ -82.256739824077343, 28.020557968606539 ], [ -82.28416160797947, 28.009808408819762 ], [ -82.327176539694364, 28.002127504428689 ], [ -82.351727992780539, 27.995488562491591 ], [ -82.357618096164785, 27.996027496343956 ], [ -82.364721219811969, 27.995919441977044 ], [ -82.384092542428846, 27.981608769972127 ], [ -82.401762841331518, 27.968090092315034 ], [ -82.409224971357332, 27.965309130019325 ], [ -82.434646422385796, 27.964959946239713 ], [ -82.435409435932527, 27.964959940363848 ], [ -82.450950711806868, 27.964789826627509 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I40\", \"DIST_MILES\": 2480.590000, \"DIST_KM\": 3992.140000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -89.885478124670627, 35.151269577689384 ], [ -89.874903791934869, 35.160058403611075 ], [ -89.861269412708822, 35.164991307323163 ], [ -89.838906785633696, 35.173520137141985 ], [ -89.792320440992768, 35.195099688300346 ], [ -89.772773872692952, 35.204270490961534 ], [ -89.741865935013593, 35.219647123190178 ], [ -89.736364745160941, 35.223461019801782 ], [ -89.716452076293194, 35.235267690158977 ], [ -89.665104411499385, 35.262121927309366 ], [ -89.637690547541396, 35.276488524858308 ], [ -89.615122844004588, 35.288298196273352 ], [ -89.553543898837503, 35.332524060981477 ], [ -89.518698870176991, 35.348583613363481 ], [ -89.46835138064165, 35.372012871505675 ], [ -89.422864070798468, 35.38605429896765 ], [ -89.398815364769888, 35.400377856165392 ], [ -89.276298908018958, 35.476601551044908 ], [ -89.27299481429003, 35.481800425702616 ], [ -89.256278467981502, 35.53401830700102 ], [ -89.253265400188454, 35.536620237931025 ], [ -89.248458289421222, 35.537936174752673 ], [ -89.245735233861666, 35.53861913224334 ], [ -89.243514188190616, 35.539084099291188 ], [ -89.224684800095545, 35.543218814515292 ], [ -89.18928407639828, 35.556749153778576 ], [ -89.093578028928718, 35.585037457490252 ], [ -89.072803571694038, 35.591110076776424 ], [ -89.058627257093093, 35.595324812515024 ], [ -89.017969340174588, 35.611295949573773 ], [ -88.961838915795923, 35.629223843497122 ], [ -88.89710926385807, 35.648101560030845 ], [ -88.875959747487627, 35.656181072072066 ], [ -88.874822720095409, 35.656631045120015 ], [ -88.85440622912499, 35.663420592601547 ], [ -88.834065747347651, 35.669791145028285 ], [ -88.781566498762572, 35.679006174902298 ], [ -88.771190254489454, 35.680630985833936 ], [ -88.759715973512087, 35.680668830375424 ], [ -88.743037568986338, 35.680828680536969 ], [ -88.732218318346895, 35.682179615075306 ], [ -88.66758094749899, 35.707759674142828 ], [ -88.634118215857811, 35.717967282602352 ], [ -88.608497657938656, 35.726095973078777 ], [ -88.598930451460234, 35.729388849434962 ], [ -88.56513175463013, 35.7455352710585 ], [ -88.50884048281543, 35.755227924427196 ], [ -88.439716286639623, 35.772695357400195 ], [ -88.398256918114299, 35.787815901059631 ], [ -88.391465684077644, 35.78928484315194 ], [ -88.378801245067223, 35.79182473800379 ], [ -88.36149666338045, 35.79851552992519 ], [ -88.323272309113349, 35.804115239953767 ], [ -88.304960672623722, 35.809895034974879 ], [ -88.263539197683457, 35.818793645598269 ], [ -88.255108887034851, 35.818477610115806 ], [ -88.215419240315072, 35.814643619626004 ], [ -88.192652300201985, 35.817081536896701 ], [ -88.178971738052127, 35.819026477309734 ], [ -88.169183335507469, 35.820274437854849 ], [ -88.150139535559177, 35.819114436644668 ], [ -88.14324225082288, 35.819724414592876 ], [ -88.109213880087069, 35.82889517841258 ], [ -88.085782972548714, 35.841051896822385 ], [ -88.084256913677976, 35.841848878468667 ], [ -88.032076919598907, 35.869661246400369 ], [ -88.025805671908302, 35.871374204565491 ], [ -87.981308877831424, 35.868483319821472 ], [ -87.96373020730897, 35.868502399253586 ], [ -87.951957766641669, 35.869963424065759 ], [ -87.939872289369163, 35.867125534341291 ], [ -87.932647004296342, 35.865393600509748 ], [ -87.921042568989762, 35.866682627981213 ], [ -87.909911128327494, 35.863554737784746 ], [ -87.892499470372556, 35.864584796311355 ], [ -87.878140941301581, 35.86835379062061 ], [ -87.866841513503871, 35.869062828816659 ], [ -87.842242625695903, 35.881014724113122 ], [ -87.810572413763481, 35.881502864616216 ], [ -87.801592062154072, 35.879503942089379 ], [ -87.794183776264148, 35.878912987149668 ], [ -87.765251683388399, 35.883674041249101 ], [ -87.750008081893228, 35.877998209354608 ], [ -87.711668899360077, 35.873782448715403 ], [ -87.705374711355461, 35.875045453846056 ], [ -87.687628198046454, 35.883475378055017 ], [ -87.663693475896409, 35.885455441281493 ], [ -87.638050732912646, 35.895843348095894 ], [ -87.618427179874672, 35.907355199446954 ], [ -87.599131654366559, 35.922712963314503 ], [ -87.585292258599566, 35.928404894421206 ], [ -87.57979111780574, 35.934744782894896 ], [ -87.570665859445072, 35.938894725869574 ], [ -87.555574456548712, 35.951414509790411 ], [ -87.551164355204463, 35.958910364550078 ], [ -87.550630342436619, 35.959692349511542 ], [ -87.548776294999087, 35.961653313042227 ], [ -87.54420617017179, 35.964563263193909 ], [ -87.540193057050629, 35.966257237256166 ], [ -87.531693823824568, 35.971266150956517 ], [ -87.525239643745181, 35.974302100782189 ], [ -87.503617022065271, 35.979952026200387 ], [ -87.500038924407306, 35.982022988296251 ], [ -87.489921689044863, 35.98833684939251 ], [ -87.48817464461483, 35.988591843802759 ], [ -87.485107573046847, 35.990613798977904 ], [ -87.46513307703367, 35.997533644075688 ], [ -87.440047410406223, 35.994950701296077 ], [ -87.43428726038357, 35.995252694260046 ], [ -87.406629458609117, 36.006822396397133 ], [ -87.385663872753284, 36.009664312909678 ], [ -87.362210151376999, 36.018342061363668 ], [ -87.338138512982169, 36.019273024985836 ], [ -87.336681471928671, 36.019532016930981 ], [ -87.330028284924239, 36.02068798075333 ], [ -87.311579772655563, 36.023453891865984 ], [ -87.289713202058692, 36.023670874754941 ], [ -87.278596896950845, 36.025131825783198 ], [ -87.270456708747574, 36.023041884079227 ], [ -87.249986235223531, 36.017613038534883 ], [ -87.233132811673627, 36.020031956231975 ], [ -87.208161122076362, 36.030300630673153 ], [ -87.18818671644739, 36.02378881759229 ], [ -87.184104616883445, 36.024181803373338 ], [ -87.177375428092944, 36.027561696626904 ], [ -87.149519654787511, 36.041901242656003 ], [ -87.143805471484129, 36.048084050103824 ], [ -87.139136301792348, 36.055709813858968 ], [ -87.122442789021648, 36.072680282968207 ], [ -87.105962350241214, 36.08209098261289 ], [ -87.074391614038262, 36.087549791665488 ], [ -87.061238323336113, 36.087690777578814 ], [ -87.051701120491288, 36.086519806647161 ], [ -87.038943883243775, 36.07903902837144 ], [ -87.033771779714215, 36.077060085845844 ], [ -87.02888067258948, 36.076739092303761 ], [ -86.989725842393824, 36.078058999794742 ], [ -86.974932602968124, 36.074080078546245 ], [ -86.970598523838476, 36.074710045884167 ], [ -86.956530243947128, 36.081358796735167 ], [ -86.94135493903083, 36.089128509082592 ], [ -86.932984719358075, 36.103701030234511 ], [ -86.922837503276824, 36.111329761675236 ], [ -86.898819985343664, 36.130677084890877 ], [ -86.87529048242186, 36.148727448731059 ], [ -86.85775815698679, 36.152328281400401 ], [ -86.832351701048793, 36.154419136340074 ], [ -86.824370547755336, 36.157085027913958 ], [ -86.821547483863782, 36.159957929189069 ], [ -86.816543360156203, 36.167136688868908 ], [ -86.81278928481278, 36.169036617566263 ], [ -86.803557113419657, 36.170935528939175 ], [ -86.80090205048046, 36.174205418173806 ], [ -86.789442942364161, 36.155684961948175 ], [ -86.78405687794077, 36.149696132651819 ], [ -86.775709736785728, 36.148659138998262 ], [ -86.770567637110773, 36.150558063363796 ], [ -86.769529616460062, 36.151047044779915 ], [ -86.768659599296242, 36.151428030107347 ], [ -86.762083469389296, 36.154341918100101 ], [ -86.753851334551356, 36.152446951701599 ], [ -86.736021056403402, 36.142818247150998 ] ], [ [ -97.469141267196235, 35.464381896623266 ], [ -97.465128163344744, 35.464980930947235 ], [ -97.463175092602995, 35.463870979813969 ], [ -97.455285788239536, 35.458061207986532 ], [ -97.441530352952455, 35.454506455354377 ], [ -97.423622724171281, 35.445362883048873 ], [ -97.410500218879903, 35.435330275303812 ], [ -97.408135124034672, 35.43323235292084 ], [ -97.404740019141386, 35.432462412185032 ], [ -97.379722346392896, 35.434022680117877 ], [ -97.370887072491556, 35.431909837285126 ], [ -97.30356292238298, 35.410094179200712 ], [ -97.290836494972098, 35.404105479665482 ], [ -97.248446104154382, 35.385315458653473 ], [ -97.141159646823041, 35.384145795889609 ], [ -97.081588288075551, 35.383967526628098 ], [ -97.071044025145682, 35.382288692489809 ], [ -97.05511359422681, 35.377325995679072 ], [ -97.048750437282109, 35.376468091617511 ], [ -97.041937286243552, 35.376788167138109 ], [ -97.000615440738343, 35.383708519849073 ], [ -96.947040355357785, 35.383725180240937 ], [ -96.912043648237358, 35.383900608227854 ], [ -96.897265348307073, 35.383831791946463 ], [ -96.852586477542161, 35.39069920213484 ], [ -96.844125299563601, 35.390020320729001 ], [ -96.81737673218683, 35.384550762725588 ], [ -96.776710906562556, 35.384100273531139 ], [ -96.686117454196463, 35.384532164902367 ], [ -96.671552022143175, 35.383422317211803 ], [ -96.653607485734597, 35.383743471353377 ], [ -96.63376288646154, 35.385932605548909 ], [ -96.619029450420896, 35.384700761725469 ], [ -96.587221499775268, 35.384903042288904 ], [ -96.560838717481374, 35.383614303695047 ], [ -96.545442270322795, 35.380944493936425 ], [ -96.535057963838383, 35.380322599012608 ], [ -96.503516998173993, 35.385232784658548 ], [ -96.476752272233171, 35.384745214418814 ], [ -96.459028788432633, 35.386017242233706 ], [ -96.449255517069105, 35.387386801109244 ], [ -96.441336305536055, 35.387147274577821 ], [ -96.426450912279932, 35.386080171182307 ], [ -96.418370687491532, 35.38717863709892 ], [ -96.381702590323741, 35.401771696042829 ], [ -96.360804982254862, 35.406800935921176 ], [ -96.335688226943461, 35.415122445241543 ], [ -96.320825806253893, 35.416615364737659 ], [ -96.307077384729382, 35.421514216564809 ], [ -96.299677173545888, 35.422315680548785 ], [ -96.280450633516679, 35.423376889542901 ], [ -96.261986086315503, 35.427227064743903 ], [ -96.250305751184484, 35.428429809401159 ], [ -96.218009994917182, 35.428080724385168 ], [ -96.193778400862413, 35.430481188656906 ], [ -96.15871260553962, 35.427535235264713 ], [ -96.122906721455195, 35.431725436092918 ], [ -96.097195153942636, 35.427988891970209 ], [ -96.087604931844453, 35.427638453105118 ], [ -96.06211433012686, 35.427849969889877 ], [ -96.0381047236353, 35.432051511092453 ], [ -96.016879214298129, 35.433070810543896 ], [ -96.008913014531728, 35.43432232641451 ], [ -95.987985476289737, 35.432510682847067 ], [ -95.981080279184411, 35.432381620467304 ], [ -95.971223000397842, 35.43192352343398 ], [ -95.954048521449224, 35.430374334280842 ], [ -95.943138188209787, 35.432491302837676 ], [ -95.935638970309313, 35.432762246836447 ], [ -95.906448163083226, 35.429221909275299 ], [ -95.884199500807696, 35.431830788434979 ], [ -95.875654255046442, 35.431857717161428 ], [ -95.852208576603076, 35.432441532490159 ], [ -95.829724893020526, 35.437201438032282 ], [ -95.813122444138457, 35.433692225647562 ], [ -95.802303135239896, 35.433463129042543 ], [ -95.795619931219406, 35.435073100592938 ], [ -95.780887457795686, 35.441962088384059 ], [ -95.764483948720638, 35.447501025006972 ], [ -95.750269521951211, 35.450491933502597 ], [ -95.649167351907749, 35.454549739265929 ], [ -95.618609754173974, 35.459939415351812 ], [ -95.587038171676213, 35.457008991507166 ], [ -95.543776957062235, 35.458568463643658 ], [ -95.52646508697606, 35.457340237961603 ], [ -95.510496268368996, 35.458019042978151 ], [ -95.4869960621876, 35.45640881541231 ], [ -95.421265574038515, 35.458537382018051 ], [ -95.39627826403931, 35.457587208645627 ], [ -95.365796630596336, 35.460318011517238 ], [ -95.354497000551959, 35.464025945857038 ], [ -95.344608442929996, 35.467958888887303 ], [ -95.306276340124015, 35.476747638917594 ], [ -95.291947553684352, 35.480077541809514 ], [ -95.276108699556133, 35.482088429735903 ], [ -95.21436866757405, 35.4819349630407 ], [ -95.180683049910598, 35.488167694370624 ], [ -95.168208483779082, 35.486546598057963 ], [ -95.149965664415589, 35.482957462030882 ], [ -95.116333110650331, 35.481606204809836 ], [ -95.107170673286177, 35.483155128596202 ], [ -95.097122181074781, 35.486680037188606 ], [ -95.087408707351571, 35.489914947509718 ], [ -95.079245328206611, 35.489963882125352 ], [ -95.056722271552459, 35.491714693591398 ], [ -95.032765174077994, 35.489536513394583 ], [ -95.007342970280831, 35.493576284713896 ], [ -94.994768458609201, 35.490066188338638 ], [ -94.97584676267401, 35.489203979779909 ], [ -94.968949517609516, 35.487624914435493 ], [ -94.960473229965942, 35.483824851432367 ], [ -94.934418404354432, 35.465735739637005 ], [ -94.917785856377051, 35.45840364715734 ], [ -94.895125068951089, 35.454375470384278 ], [ -94.867544071732709, 35.454356203646569 ], [ -94.848073357606722, 35.455386000882548 ], [ -94.816341282838067, 35.448411799576441 ], [ -94.806132921039534, 35.447874712185119 ], [ -94.789607338310091, 35.446794575331559 ], [ -94.769770595347978, 35.44930434625492 ], [ -94.761087272381786, 35.450147249098194 ], [ -94.758097160302498, 35.450502214305146 ], [ -94.751809938918328, 35.450063162710677 ], [ -94.74537078714431, 35.447713132353371 ], [ -94.727265486586248, 35.43434316966961 ], [ -94.662773256062181, 35.396482213450483 ], [ -94.657318135897967, 35.394472198419201 ], [ -94.574132978506725, 35.3929713565363 ], [ -94.558995543207374, 35.397053098526506 ], [ -94.540410044749279, 35.398502865054446 ], [ -94.525974606933815, 35.405132543711403 ], [ -94.503092888764868, 35.418902938102988 ], [ -94.485789284085698, 35.432619437281751 ], [ -94.463075547997249, 35.443948974752551 ], [ -94.446855054744987, 35.448678734404332 ], [ -94.441330875345415, 35.451799615610931 ], [ -94.435685674703294, 35.457269438346309 ], [ -94.429711480952761, 35.460809307513045 ], [ -94.414574045085672, 35.462865148220132 ], [ -94.408035862951436, 35.4629680988335 ], [ -94.401626707705944, 35.459871127677602 ], [ -94.395049530955859, 35.459028100395109 ], [ -94.391036414960126, 35.459649056452932 ], [ -94.38083608830587, 35.46587883466804 ], [ -94.356665440128282, 35.462639738188344 ], [ -94.336904903449167, 35.460766639350318 ], [ -94.32150050850251, 35.455197654371851 ], [ -94.311727229621582, 35.456326557519716 ], [ -94.295590762174783, 35.459618366881337 ], [ -94.261348745850498, 35.47281683530715 ], [ -94.239375043407151, 35.484817447255601 ], [ -94.234537879045376, 35.487457366148007 ], [ -94.226648623938459, 35.489036292059893 ], [ -94.206330965953399, 35.492957103077558 ], [ -94.184854299878864, 35.491477025423194 ], [ -94.169487787626977, 35.496515834617703 ], [ -94.154335297656033, 35.498655708139047 ], [ -94.098822367447681, 35.521615939032074 ], [ -94.07559757708151, 35.52765468649968 ], [ -94.037075344301044, 35.527845471602319 ], [ -94.007739411030201, 35.527387320896445 ], [ -93.989053865878859, 35.525506254889592 ], [ -93.971163297770971, 35.530896035448478 ], [ -93.964647105090663, 35.531365987796448 ], [ -93.953576796187633, 35.530205948029199 ], [ -93.937066288650698, 35.533474784731013 ], [ -93.932236156049584, 35.53273477218054 ], [ -93.919510838330467, 35.527363808228507 ], [ -93.913452672777041, 35.526333793668364 ], [ -93.888243922469385, 35.528694598931615 ], [ -93.873931572480487, 35.521725652287337 ], [ -93.865004318951122, 35.521214609212436 ], [ -93.852537953159484, 35.521793523897131 ], [ -93.84670881745582, 35.518154559081253 ], [ -93.841383677002838, 35.516644555975667 ], [ -93.825300208179414, 35.51702545193789 ], [ -93.805737698527423, 35.510685451646914 ], [ -93.790158275970356, 35.507454415330216 ], [ -93.766811610634463, 35.506203293623912 ], [ -93.741289837874064, 35.502953212079454 ], [ -93.730494451585614, 35.502804171094056 ], [ -93.723086207427485, 35.500084187243424 ], [ -93.716668983067549, 35.499264176209969 ], [ -93.70551458020077, 35.499466126557969 ], [ -93.678139582883503, 35.501224984697195 ], [ -93.664742127229971, 35.497623992049121 ], [ -93.643562360978194, 35.498172894695578 ], [ -93.606146058110937, 35.491992847015943 ], [ -93.598760802834434, 35.490443842578813 ], [ -93.584851340920878, 35.484714881292042 ], [ -93.550434137456847, 35.478892829924455 ], [ -93.530482476955356, 35.469558895191888 ], [ -93.521243170079146, 35.465243923712123 ], [ -93.508928757410317, 35.459922953258044 ], [ -93.486497974916276, 35.459601813175489 ], [ -93.481934824851038, 35.45865279334479 ], [ -93.465424297611719, 35.452403766509406 ], [ -93.452347869302741, 35.449054719720145 ], [ -93.434128230913018, 35.451633538931091 ], [ -93.430572116987989, 35.45021353433085 ], [ -93.417662740465104, 35.437964630807691 ], [ -93.384092699763499, 35.415263735651969 ], [ -93.380659605776998, 35.410243789419738 ], [ -93.377561553159467, 35.399104943370219 ], [ -93.375181481851371, 35.396754962614146 ], [ -93.363767110997259, 35.391185963952857 ], [ -93.355633856414542, 35.384976000667002 ], [ -93.355862870570931, 35.383663023367951 ], [ -93.340993436885356, 35.364636212892002 ], [ -93.333493244529521, 35.348583411462073 ], [ -93.298839067937905, 35.336815333472771 ], [ -93.28615862401368, 35.335354259549966 ], [ -93.261835757665793, 35.336285058206165 ], [ -93.245920241195819, 35.335612953076428 ], [ -93.212662442364575, 35.325324901793358 ], [ -93.189209860564659, 35.32141480761711 ], [ -93.167259309043061, 35.319613689558331 ], [ -93.156837050515009, 35.311473733785292 ], [ -93.149367860845203, 35.308776720215747 ], [ -93.138174574223726, 35.305942681963373 ], [ -93.130537377211411, 35.302882669980782 ], [ -93.116698014307076, 35.294322684630707 ], [ -93.103780672659084, 35.289832649197976 ], [ -93.092328361824684, 35.28256565635612 ], [ -93.07375085002073, 35.27256363860468 ], [ -93.067845677628739, 35.266177669214173 ], [ -93.063542551998722, 35.262153683052439 ], [ -93.037753815872918, 35.250453610932482 ], [ -93.026172513542591, 35.247993569149472 ], [ -93.009464058344335, 35.24749344519136 ], [ -92.994204671893769, 35.245212381079021 ], [ -92.956102723351833, 35.244632126024818 ], [ -92.949136535895107, 35.246394035048802 ], [ -92.93731822231419, 35.252802835752398 ], [ -92.936509207485059, 35.254431813331571 ], [ -92.93632619850186, 35.253103825639251 ], [ -92.892815106058023, 35.251532533330931 ], [ -92.870895572522954, 35.24750345541203 ], [ -92.863830415116965, 35.244631475440144 ], [ -92.854201221257966, 35.237474582451995 ], [ -92.799803108238251, 35.195853235120829 ], [ -92.752660006859273, 35.177924370454598 ], [ -92.744305799660538, 35.175132410381408 ], [ -92.717571080202902, 35.174243368912578 ], [ -92.706530781390299, 35.174182344077877 ], [ -92.700129613916346, 35.173022357977743 ], [ -92.675731001563179, 35.16310454915179 ], [ -92.656702487127674, 35.162494518947781 ], [ -92.623154570806619, 35.163394416029973 ], [ -92.568977121094989, 35.157664430228699 ], [ -92.556693800501051, 35.154124489657825 ], [ -92.513082687304603, 35.132876918047224 ], [ -92.488271024126377, 35.120785250149247 ], [ -92.471280526289249, 35.119724361635583 ], [ -92.451969959597221, 35.118404489832997 ], [ -92.445530778278211, 35.114094623409947 ], [ -92.4355204850619, 35.112133717693879 ], [ -92.432720408287324, 35.108433816970681 ], [ -92.432033400001743, 35.101284985887801 ], [ -92.422649132803741, 35.091657248759034 ], [ -92.414912908997806, 35.083745461104762 ], [ -92.413607873014996, 35.080716534986372 ], [ -92.417873022153628, 35.066495842204006 ], [ -92.415652968246221, 35.055086109273965 ], [ -92.40875578153701, 35.02951670745761 ], [ -92.41054886469216, 35.006828215225283 ], [ -92.41565301326213, 34.991256520106795 ], [ -92.419010065822917, 34.97072588993008 ], [ -92.422199143504258, 34.960259076606242 ], [ -92.422603113301065, 34.944138371022092 ], [ -92.4199020027947, 34.937378498329892 ], [ -92.414111788364806, 34.931603611463451 ], [ -92.410449652167216, 34.928040681194517 ], [ -92.407687541208304, 34.92281777988557 ], [ -92.399882180250216, 34.894739299983712 ], [ -92.396395049699024, 34.892377346697685 ], [ -92.382181532406449, 34.887880443421949 ], [ -92.367150935502167, 34.871721750129659 ], [ -92.352784376201683, 34.861329950259702 ], [ -92.34549795584158, 34.826987570778307 ], [ -92.339340701241184, 34.821131679716281 ], [ -92.322189027340528, 34.813441828065329 ], [ -92.311613572448394, 34.802051036421332 ], [ -92.301741174860467, 34.797122129135808 ], [ -92.292951789321108, 34.787719299408593 ], [ -92.279493270791207, 34.78612133423556 ], [ -92.274267053266442, 34.783000391407164 ], [ -92.265927723088453, 34.780853432865648 ], [ -92.259701473108549, 34.77881947119058 ], [ -92.235576665024951, 34.777782419991858 ], [ -92.214778060192543, 34.780322272250601 ], [ -92.19115733351704, 34.778140189814771 ], [ -92.160699450491748, 34.781538981756214 ], [ -92.1275484947069, 34.785139760339312 ], [ -92.076659039675391, 34.790640427769112 ], [ -92.043226075905793, 34.79297123212303 ], [ -92.020329488143801, 34.799891025362029 ], [ -92.011556247803512, 34.801240965339062 ], [ -91.96202487050482, 34.803599050261681 ], [ -91.88881081491175, 34.804171370092625 ], [ -91.86814924102076, 34.804880452597445 ], [ -91.835907271556749, 34.799509672969798 ], [ -91.775053544788847, 34.797961968564969 ], [ -91.728947518649619, 34.802791214075668 ], [ -91.697376956530604, 34.802326523755667 ], [ -91.691066854256675, 34.80347056774319 ], [ -91.657436357880371, 34.817783683105247 ], [ -91.56727072327719, 34.819123528600024 ], [ -91.520729876083664, 34.81969196678633 ], [ -91.494683410216979, 34.827413089250506 ], [ -91.481118165993877, 34.834032084938897 ], [ -91.429069209597415, 34.84625425785115 ], [ -91.377981249602414, 34.845842608470655 ], [ -91.360089920021238, 34.848886683847027 ], [ -91.339200534451621, 34.851884779806255 ], [ -91.312123054399933, 34.864332775276743 ], [ -91.276356406927988, 34.873693873536261 ], [ -91.242236754757997, 34.898283711548807 ], [ -91.230998452929256, 34.904134672683476 ], [ -91.215358022324466, 34.907972683190195 ], [ -91.196901505713811, 34.909002748937176 ], [ -91.177125952714547, 34.910352815070553 ], [ -91.152329272623632, 34.917814804402511 ], [ -91.140854955020757, 34.920072817631691 ], [ -91.120499400086203, 34.927854777936368 ], [ -91.108353062683364, 34.929815797116426 ], [ -91.083564374019517, 34.933855834206589 ], [ -91.063139815813344, 34.941404791778304 ], [ -91.044897310535276, 34.945234801267084 ], [ -90.952235480179638, 34.973493258436847 ], [ -90.920389399862898, 34.977514027283469 ], [ -90.856453229602323, 35.002682192324095 ], [ -90.821410131363606, 35.023952664977202 ], [ -90.821005118922983, 35.024208659041641 ], [ -90.80746270341659, 35.032340471586195 ], [ -90.800130470817891, 35.03497340034307 ], [ -90.789915135599699, 35.036441336025348 ], [ -90.763028239686136, 35.037647208727641 ], [ -90.757267044246021, 35.037342189422525 ], [ -90.73444724760094, 35.032211304598434 ], [ -90.725626959712102, 35.033142334121663 ], [ -90.679429605437818, 35.062412089469881 ], [ -90.648117691658427, 35.084040835848448 ], [ -90.641129478326206, 35.087481796470023 ], [ -90.514919479279527, 35.130228205848077 ], [ -90.50359010722525, 35.132140176523357 ], [ -90.438959269995024, 35.134440468027819 ], [ -90.43498416191332, 35.135401467764332 ], [ -90.408463465937629, 35.148108316190196 ], [ -90.4005672530525, 35.150950292008687 ], [ -90.323455042726863, 35.147990780059281 ], [ -90.267872457397118, 35.147510093496138 ], [ -90.224491359903539, 35.160544708903224 ], [ -90.19255358562468, 35.171000268489941 ], [ -90.185015399736258, 35.168581281464078 ], [ -90.151292588347701, 35.155711375090846 ], [ -90.13607922024805, 35.156359266778622 ], [ -90.12419993203099, 35.156969180248218 ], [ -90.101380394062417, 35.153010124947606 ], [ -90.068565605926977, 35.153097918486374 ], [ -90.066108546704626, 35.153146902160209 ], [ -90.048294119879941, 35.152978794506261 ], [ -90.047134094426383, 35.152540796083031 ], [ -90.040511941010777, 35.151590773670939 ], [ -90.022093514282901, 35.14935070188902 ] ], [ [ -117.008495012025378, 34.88601444797353 ], [ -116.992912747106914, 34.886619902218023 ], [ -116.991723112601122, 34.886600867655282 ], [ -116.989220913405049, 34.885917817968483 ], [ -116.971282618686928, 34.881206455458255 ], [ -116.96763685605498, 34.878582440155384 ], [ -116.953145730434102, 34.868583360908325 ], [ -116.931332496117221, 34.86385288224308 ], [ -116.889422290408874, 34.855211953561287 ], [ -116.854756694047069, 34.848058191713974 ], [ -116.789735553611607, 34.839649629082913 ], [ -116.670581713410627, 34.827525819547958 ], [ -116.511902086108677, 34.799120513661521 ], [ -116.485579703954585, 34.792298672863204 ], [ -116.41659565568655, 34.784026331699913 ], [ -116.366810023925353, 34.772854763892425 ], [ -116.33793198338725, 34.752774086948058 ], [ -116.311768796565985, 34.739235433995887 ], [ -116.274201748832169, 34.730303312217636 ], [ -116.244445924454283, 34.726781377984231 ], [ -116.198297557410484, 34.724109976102163 ], [ -116.16992232718404, 34.725269077448168 ], [ -116.162599813816456, 34.725058856307143 ], [ -116.16243187052369, 34.723936870853613 ], [ -116.15963239804735, 34.725798752421063 ], [ -116.156520022402105, 34.725958654410185 ], [ -116.080805979544294, 34.727436352015445 ], [ -116.061979810917578, 34.719455928921668 ], [ -116.044375308138129, 34.714706490168624 ], [ -116.039859176215643, 34.714545360755473 ], [ -116.027067590952157, 34.715494972811989 ], [ -116.013543083748104, 34.718252537079039 ], [ -116.002574048640824, 34.722204158682437 ], [ -115.99550238818172, 34.722093990070491 ], [ -115.985609308230963, 34.720155805067385 ], [ -115.956348706514476, 34.723455117842747 ], [ -115.925424404573462, 34.724022449157872 ], [ -115.881967018662863, 34.734309351932254 ], [ -115.822674729791203, 34.72654928957941 ], [ -115.800377773981765, 34.720418970867541 ], [ -115.786213237516449, 34.719609710916387 ], [ -115.767668488360883, 34.716779411924769 ], [ -115.735409954508086, 34.716209990487378 ], [ -115.684446289149619, 34.7200395835292 ], [ -115.657137629850141, 34.723739354357321 ], [ -115.635259151844636, 34.723507235895227 ], [ -115.586522682684461, 34.730147882645433 ], [ -115.557986043443293, 34.732829715763039 ], [ -115.484052501861356, 34.762088025087721 ], [ -115.459251753699263, 34.777746652353969 ], [ -115.452043719176856, 34.781076559640326 ], [ -115.427549064929082, 34.788046304663851 ], [ -115.411178230057132, 34.795706089931926 ], [ -115.374318223393686, 34.803536744265742 ], [ -115.356414656792964, 34.805115612228825 ], [ -115.319828663654505, 34.80164445807911 ], [ -115.186782249652083, 34.812275583141492 ], [ -115.058998493559216, 34.828234780242248 ], [ -115.049218679894437, 34.830832704138956 ], [ -115.026958430550422, 34.83004264035759 ], [ -114.922395323786276, 34.858171779033718 ], [ -114.887952637848869, 34.855291685608179 ], [ -114.86010899064317, 34.859872515774818 ], [ -114.843577899812303, 34.867242351711859 ], [ -114.832356236272915, 34.868192300407607 ], [ -114.786410492593973, 34.882363957821632 ], [ -114.777179565976041, 34.88267292730891 ], [ -114.761243470443219, 34.878582940137605 ], [ -114.7551101851396, 34.878094930367517 ], [ -114.697766185659958, 34.891701253631958 ], [ -114.672759934155636, 34.883950147121091 ], [ -114.661836166662624, 34.878018140585262 ], [ -114.626508200170534, 34.854420200639851 ], [ -114.617285246863304, 34.848332219466151 ], [ -114.613890641121003, 34.845521235478451 ], [ -114.609306266200235, 34.836201341538427 ], [ -114.60183711024338, 34.831372358252608 ], [ -114.597702625678352, 34.825840411801344 ], [ -114.582004039042943, 34.778650025922673 ], [ -114.576511824455821, 34.765752188605269 ], [ -114.542129933424576, 34.725374627881166 ], [ -114.526285635149279, 34.717565668890401 ], [ -114.500554188300413, 34.718000517132943 ], [ -114.487463377124357, 34.717111408260074 ], [ -114.47798121472205, 34.717733307754621 ], [ -114.391043649039005, 34.727002349420559 ], [ -114.316296824774014, 34.729839653144879 ], [ -114.27038648712454, 34.731800238202659 ], [ -114.258730381185146, 34.734249100036571 ], [ -114.244189473822459, 34.740000879156533 ], [ -114.216641508358762, 34.75464941669216 ], [ -114.163255314643393, 34.792768568820854 ], [ -114.155389867208058, 34.799997434646805 ], [ -114.14904228748361, 34.809018293583136 ], [ -114.14529649716745, 34.819047160599645 ], [ -114.144396471199869, 34.830499031119253 ], [ -114.148065738839421, 34.88099750332961 ], [ -114.154306100461213, 34.894589384846221 ], [ -114.154672003242851, 34.901947305418915 ], [ -114.116181884299863, 35.105723505096634 ], [ -114.109186174309556, 35.125040775051595 ], [ -114.101786619375176, 35.135981319353746 ], [ -114.087642495640708, 35.154130522027465 ], [ -114.074528423133415, 35.162709059845596 ], [ -114.074864255061001, 35.17131074789561 ], [ -114.074208216339088, 35.176899534453476 ], [ -114.067738590804311, 35.185688127208337 ], [ -114.066723583827979, 35.190997916490325 ], [ -114.065640513181734, 35.20043855027577 ], [ -114.05740901827005, 35.209227104704922 ], [ -114.050351503079582, 35.213407844223866 ], [ -114.036116551975084, 35.217108493663815 ], [ -114.010209549694267, 35.21728710830218 ], [ -113.994585715690832, 35.216977955521564 ], [ -113.975696120827436, 35.212625054046157 ], [ -113.916221448872264, 35.198278393833 ], [ -113.83096110220454, 35.193579258357531 ], [ -113.819845868179669, 35.189958362157547 ], [ -113.776841855206939, 35.171438940577197 ], [ -113.695976068198092, 35.159278704429894 ], [ -113.664635939027377, 35.162299829195078 ], [ -113.640307424724355, 35.160019082432029 ], [ -113.611554115421782, 35.160271289357517 ], [ -113.582762763057588, 35.162239455178749 ], [ -113.558044200770397, 35.158310748173406 ], [ -113.545372891147593, 35.161140776732275 ], [ -113.537950304752925, 35.161270832351583 ], [ -113.522684093776732, 35.170669741985492 ], [ -113.510958738825209, 35.171448827167112 ], [ -113.500621289600758, 35.17498884406973 ], [ -113.494731484981429, 35.178589770385905 ], [ -113.481036971622572, 35.179359757950074 ], [ -113.467472420314266, 35.184151656741655 ], [ -113.453503897399855, 35.185188636626059 ], [ -113.44144227437728, 35.189888531744046 ], [ -113.424787836315389, 35.189369546523984 ], [ -113.390418017154232, 35.183159709469663 ], [ -113.384330203284932, 35.184158688065565 ], [ -113.374183477086021, 35.188999571594778 ], [ -113.367629666722692, 35.190529535496701 ], [ -113.332779729795817, 35.190891542280404 ], [ -113.316667217919317, 35.190208569909188 ], [ -113.308771398431261, 35.194199465219818 ], [ -113.301462504329706, 35.20220924694425 ], [ -113.292367700545171, 35.206760121934714 ], [ -113.273508213949086, 35.207428106280737 ], [ -113.267558356190634, 35.208809067649796 ], [ -113.237658723497958, 35.225058633874426 ], [ -113.208338892784738, 35.23594941053306 ], [ -113.130794714187758, 35.277577992652773 ], [ -113.123332857852262, 35.284104712501865 ], [ -113.115795966687273, 35.287354584193295 ], [ -113.108174039138788, 35.287446603496832 ], [ -113.09774411143907, 35.285615722298935 ], [ -113.076710373007032, 35.291856493964467 ], [ -113.034184717561345, 35.29263859321042 ], [ -113.019207951251559, 35.300946240133996 ], [ -113.000608116559306, 35.303284185893929 ], [ -112.958678575120175, 35.31753562758395 ], [ -112.931472406627336, 35.322605473110634 ], [ -112.91532985174031, 35.322925513570894 ], [ -112.895798354776161, 35.320926679580836 ], [ -112.872048938469248, 35.316364986274095 ], [ -112.855501321646443, 35.310567327721664 ], [ -112.826463957689327, 35.29365725405998 ], [ -112.815036228757364, 35.28904551990054 ], [ -112.762050535241556, 35.27407744517722 ], [ -112.733891891737954, 35.271758543552615 ], [ -112.712256279984672, 35.258209111702911 ], [ -112.66038765798379, 35.239639571643579 ], [ -112.645007618803604, 35.236668594582454 ], [ -112.588577024425433, 35.230049580517651 ], [ -112.542848618013011, 35.221027683877246 ], [ -112.500508014437983, 35.220680570762362 ], [ -112.487889273057277, 35.219120632303877 ], [ -112.474339608325536, 35.221298591790081 ], [ -112.467663758946429, 35.221580594131083 ], [ -112.442594249219653, 35.218151725760549 ], [ -112.430181463734925, 35.214649838673786 ], [ -112.411459837067596, 35.213169906257832 ], [ -112.397299174347722, 35.216679836190515 ], [ -112.389479322132146, 35.21580987157197 ], [ -112.371489695535146, 35.216938872202235 ], [ -112.357245953014541, 35.214989946100282 ], [ -112.32588963481011, 35.223030800579366 ], [ -112.306541957668315, 35.219669920482225 ], [ -112.296601145247209, 35.220520918854376 ], [ -112.286317314822526, 35.218880978543702 ], [ -112.268014659301627, 35.221729946711932 ], [ -112.242212060743029, 35.222938888992111 ], [ -112.237406132162619, 35.225559791182647 ], [ -112.229837270783378, 35.234169535303856 ], [ -112.206652585852609, 35.247528063020049 ], [ -112.194002713387789, 35.24896994149816 ], [ -112.178331786626671, 35.2539596547226 ], [ -112.173029780180485, 35.256858504639013 ], [ -112.150087965894741, 35.257865306872979 ], [ -112.082553496186037, 35.258467824094318 ], [ -112.0629535480887, 35.2646774522321 ], [ -112.054438598824106, 35.26538636814665 ], [ -112.018428932965335, 35.257788423647852 ], [ -111.982961011391126, 35.248106382653482 ], [ -111.969556676303554, 35.248598178478055 ], [ -111.932777365662858, 35.257005401570687 ], [ -111.928100589250178, 35.257115334118026 ], [ -111.911278477893561, 35.252915223806376 ], [ -111.89923208523696, 35.251546090930297 ], [ -111.887719653627684, 35.246785030951543 ], [ -111.882089921367097, 35.246555954807903 ], [ -111.867495628081372, 35.248455707265187 ], [ -111.854060259940766, 35.247696530441146 ], [ -111.838992934690552, 35.243366405495848 ], [ -111.797933633084526, 35.224125239935788 ], [ -111.785460096075198, 35.215824249536098 ], [ -111.774840514133047, 35.211735195383945 ], [ -111.769614663514744, 35.205387265204877 ], [ -111.765906793163253, 35.202976269115283 ], [ -111.754646227568543, 35.199325201024415 ], [ -111.740242479276247, 35.19634632705305 ], [ -111.733146510717717, 35.192844486745273 ], [ -111.701210699650332, 35.18271710544763 ], [ -111.670890868864547, 35.175236678804104 ], [ -111.662330888119044, 35.171956881080391 ], [ -111.651725980123587, 35.171827020252984 ], [ -111.645699077165418, 35.174139027212981 ], [ -111.5975432547108, 35.209687430877679 ], [ -111.590334414813128, 35.213715364449328 ], [ -111.582269558018481, 35.216508345159767 ], [ -111.572847691257977, 35.218217374079735 ], [ -111.560739809040712, 35.218137491418148 ], [ -111.517572970790326, 35.208677279248022 ], [ -111.506861012192246, 35.206804465390285 ], [ -111.474481739104235, 35.201536344458525 ], [ -111.46525069432235, 35.202467166376742 ], [ -111.428552390214961, 35.201436644315919 ], [ -111.409303251680626, 35.202275320330358 ], [ -111.299011798154055, 35.158615918964642 ], [ -111.291709742120176, 35.157634817972081 ], [ -111.277809689040041, 35.161846454962479 ], [ -111.272735650766037, 35.161457377120108 ], [ -111.162734639866102, 35.12211736479135 ], [ -111.150955676271494, 35.120106459813222 ], [ -111.110115807582247, 35.116517705043734 ], [ -111.0939558642051, 35.117936737202704 ], [ -111.024529032202324, 35.109548192485036 ], [ -110.977807283895359, 35.099657741794637 ], [ -110.954972487768089, 35.097747040991216 ], [ -110.918618801000207, 35.092109588987896 ], [ -110.750651164421228, 35.042564125476801 ], [ -110.731554980036691, 35.038234356493433 ], [ -110.723947902157036, 35.037742409838017 ], [ -110.697748628984996, 35.039401487071906 ], [ -110.69245357201558, 35.038592539419298 ], [ -110.688127522236854, 35.036182638503007 ], [ -110.678117379963567, 35.020184204664012 ], [ -110.662218172646192, 35.014324476948552 ], [ -110.641282887879612, 35.008663771574177 ], [ -110.633217774157984, 35.006664879851535 ], [ -110.620842610750117, 35.00658494879417 ], [ -110.614922526035073, 35.005506016010095 ], [ -110.532371301574727, 34.977545132985789 ], [ -110.515731086784143, 34.973616306681954 ], [ -110.436225114668602, 34.969595495108322 ], [ -110.375648268175809, 34.959776747918717 ], [ -110.359519303064957, 34.959517763466046 ], [ -110.342185331844377, 34.956244851919031 ], [ -110.318244372159825, 34.955366889319642 ], [ -110.281265378701775, 34.939986296769632 ], [ -110.272407359684877, 34.931606514135744 ], [ -110.245475272487923, 34.913208020256405 ], [ -110.233467179178035, 34.909676150051553 ], [ -110.194495887383468, 34.905037401490674 ], [ -110.189276852251552, 34.905468408395585 ], [ -110.179930803845622, 34.908837353674151 ], [ -110.16362669735706, 34.910736360399412 ], [ -110.156409658804833, 34.91295732738584 ], [ -110.144850607747657, 34.917977235879775 ], [ -110.138419594606106, 34.922867129766153 ], [ -110.125235606269939, 34.937637786109342 ], [ -110.123244650397069, 34.945586583696468 ], [ -110.100455652623296, 34.965286135060644 ], [ -110.086829635836438, 34.973685953325472 ], [ -110.074194592166023, 34.977717883496403 ], [ -110.001120256389513, 34.990416755464373 ], [ -109.990347290487776, 34.991286758148057 ], [ -109.97021333647217, 34.990767821606113 ], [ -109.943030431965255, 34.993254819389399 ], [ -109.895773635441813, 35.001234712773552 ], [ -109.871893732349861, 35.00869658043284 ], [ -109.84482487479022, 35.024000272108744 ], [ -109.803047071300583, 35.047933833309131 ], [ -109.777809174606659, 35.062284597226657 ], [ -109.759811223266269, 35.069085518587521 ], [ -109.674735076586614, 35.094144479746575 ], [ -109.620389175741366, 35.102513674067801 ], [ -109.608067972865427, 35.105283706804492 ], [ -109.552906083505832, 35.124364773396614 ], [ -109.533740781675789, 35.133603772104877 ], [ -109.461229892243765, 35.1804137392322 ], [ -109.448655416375942, 35.186475777930603 ], [ -109.435852919341514, 35.190454849214859 ], [ -109.353147560192625, 35.207976438923431 ], [ -109.333065684574237, 35.215895537098312 ], [ -109.31867601239432, 35.225546556571288 ], [ -109.286028384436236, 35.251295551288329 ], [ -109.258721176681135, 35.274985392036541 ], [ -109.254196987016101, 35.277506391507877 ], [ -109.237465577890717, 35.281996347676653 ], [ -109.230263434812201, 35.28280533491818 ], [ -109.205603939234052, 35.282576346767435 ], [ -109.177451362997132, 35.28035639395619 ], [ -109.099522940854271, 35.313745902638388 ], [ -109.089383774651594, 35.319654823754149 ], [ -109.078923619617413, 35.327874713491966 ], [ -109.065938447725571, 35.340184551190085 ], [ -109.055180342895127, 35.354825358182147 ], [ -109.046773241204463, 35.362584264700452 ], [ -109.043294221909122, 35.368783184603934 ], [ -109.040318184597282, 35.371114158707684 ], [ -109.018451869417774, 35.381635067887935 ], [ -109.013622810923181, 35.385114033673283 ], [ -108.997852760649053, 35.410534755240775 ], [ -108.990886740186525, 35.418804697691911 ], [ -108.985965713083601, 35.423302673023151 ], [ -108.959568501986595, 35.44111360665952 ], [ -108.947498453662121, 35.456501456187233 ], [ -108.935222364815999, 35.467842356552588 ], [ -108.90147700561181, 35.486534240690183 ], [ -108.86199447659655, 35.496483264775968 ], [ -108.84184518385824, 35.499043313940362 ], [ -108.836932112981799, 35.499863321684643 ], [ -108.828280013871364, 35.508412164628574 ], [ -108.822771943902424, 35.512394098318161 ], [ -108.811159764990506, 35.513020138974561 ], [ -108.80572668276109, 35.513783147140828 ], [ -108.795351536059954, 35.51827309267231 ], [ -108.759790005007318, 35.528454028164823 ], [ -108.750626858561233, 35.528713066341631 ], [ -108.743943742779436, 35.530613015122881 ], [ -108.742752712632537, 35.527931074928318 ], [ -108.733612554165077, 35.53060200381632 ], [ -108.695602851071939, 35.529002996015855 ], [ -108.673538447263041, 35.530341942817799 ], [ -108.664314272474755, 35.529258955025675 ], [ -108.650062016801016, 35.532203879327206 ], [ -108.600691080261797, 35.529002888769497 ], [ -108.540745880111132, 35.511074132025115 ], [ -108.493358833162929, 35.493141468820731 ], [ -108.426920007054633, 35.477864186780202 ], [ -108.408372438341203, 35.465413614444941 ], [ -108.389320881388073, 35.456533946362121 ], [ -108.274442544322213, 35.406997849802629 ], [ -108.224323292570332, 35.396439520624753 ], [ -108.192157568819397, 35.389718037528652 ], [ -108.162935937263839, 35.388147380501998 ], [ -108.131525241630115, 35.383729830382386 ], [ -108.109627738383978, 35.377150249220549 ], [ -108.066131764783748, 35.368880947203692 ], [ -108.01164149363666, 35.345990216981399 ], [ -108.007712392936781, 35.342030380393751 ], [ -107.992797033287758, 35.31457334700081 ], [ -107.990430964308075, 35.305227648043719 ], [ -107.984464766337496, 35.27711454626435 ], [ -107.975622580030191, 35.26152407668026 ], [ -107.905529156261679, 35.188555484259631 ], [ -107.90083004262921, 35.181986688646475 ], [ -107.899333932030444, 35.16904704401049 ], [ -107.896114855945115, 35.16498817252269 ], [ -107.889133721434959, 35.160750329262619 ], [ -107.874629445552131, 35.152888630306563 ], [ -107.855159069792549, 35.142437033032522 ], [ -107.843027805315231, 35.132427379012398 ], [ -107.828562504844939, 35.123039723920165 ], [ -107.823275393754784, 35.119591850687712 ], [ -107.770135239314129, 35.084471145048006 ], [ -107.758095955478836, 35.074980482032927 ], [ -107.754113876027489, 35.073542547282564 ], [ -107.732559404987782, 35.067160849949964 ], [ -107.719490136071244, 35.065939960094624 ], [ -107.701423741574487, 35.06202217466398 ], [ -107.693092583866118, 35.062800202230122 ], [ -107.678619367146553, 35.069961087742392 ], [ -107.646078784990706, 35.07612110414324 ], [ -107.54163067416296, 35.07356278434407 ], [ -107.535603541602612, 35.07257084840608 ], [ -107.531269429357877, 35.070411936737756 ], [ -107.528286333051781, 35.067303045046394 ], [ -107.523975140486726, 35.058281334339824 ], [ -107.512935834347175, 35.051361603297636 ], [ -107.496905490468407, 35.050682718438495 ], [ -107.46052068918371, 35.052761862228252 ], [ -107.448595393091864, 35.050732988756302 ], [ -107.431733939674217, 35.045083248396011 ], [ -107.400140249837477, 35.047753348171618 ], [ -107.395089122522023, 35.046811403885563 ], [ -107.381988715903347, 35.038224725934612 ], [ -107.362183273774349, 35.039292805760709 ], [ -107.34104072272244, 35.034174071172394 ], [ -107.327453187141629, 35.016504653778732 ], [ -107.302206351780853, 34.996165375454268 ], [ -107.29710221140769, 34.994136462426376 ], [ -107.235614740129279, 34.992854829864527 ], [ -107.173854109235833, 34.983826415126771 ], [ -107.171557035918482, 34.981938486262798 ], [ -107.17144304554246, 34.983425440019495 ], [ -107.136812140091195, 34.978405778555235 ], [ -107.129326953554411, 34.97845581595535 ], [ -107.084075912398404, 34.992851570412768 ], [ -106.997335864817614, 35.020706157514091 ], [ -106.867693588655726, 35.050236197323045 ], [ -106.833902723980614, 35.055722261312944 ], [ -106.79460271941845, 35.061985334298505 ], [ -106.786759542426836, 35.065937264458917 ], [ -106.728957435010116, 35.094787705049377 ], [ -106.704200094633876, 35.107127437758948 ], [ -106.697828979541569, 35.107234465376564 ], [ -106.670950470799994, 35.105140661945157 ], [ -106.666632400215533, 35.106075653561781 ], [ -106.660315286321776, 35.106246678926183 ], [ -106.651121126160817, 35.107143695465844 ], [ -106.645407011455205, 35.105987759632043 ], [ -106.629094712630547, 35.105964839772966 ], [ -106.616277491039057, 35.107482854432234 ], [ -106.600896180914177, 35.104298029567872 ], [ -106.587482929861892, 35.10376011186068 ], [ -106.583279848155087, 35.103249148429121 ], [ -106.568745531456926, 35.097580397745908 ], [ -106.55059413266703, 35.090138720634627 ], [ -106.542994969935663, 35.087513840404164 ], [ -106.532504740247788, 35.083314023926654 ], [ -106.520968489849295, 35.078954217649105 ], [ -106.515147362648321, 35.076658318443641 ], [ -106.509852251126546, 35.075055394845187 ], [ -106.50020905437097, 35.071355554787083 ], [ -106.496592107140273, 35.070134573075471 ], [ -106.490558193203682, 35.067655616856214 ], [ -106.487018245719369, 35.066327638225701 ], [ -106.484416282363853, 35.065023663955067 ], [ -106.481013327878884, 35.062867711280603 ], [ -106.478114377969689, 35.062547704424233 ], [ -106.445949966948973, 35.064557458100396 ], [ -106.43255221346439, 35.066777315575465 ], [ -106.422695385447312, 35.065938284387286 ], [ -106.405468707722292, 35.080456766823502 ], [ -106.388027996377716, 35.080647669188416 ], [ -106.371961244648332, 35.092495252827604 ], [ -106.366200322175487, 35.09893404513123 ], [ -106.347104594736862, 35.103336833709193 ], [ -106.327054829806812, 35.11530642018905 ], [ -106.319058943524368, 35.114604404224551 ], [ -106.306776144338585, 35.109775477347881 ], [ -106.299131290971488, 35.104385583175677 ], [ -106.284445529935866, 35.101337593244864 ], [ -106.250556186622802, 35.086986787807575 ], [ -106.243880117521002, 35.084289901076467 ], [ -106.130284704467073, 35.04046490450429 ], [ -106.085156042354299, 35.020438841852261 ], [ -106.067379756977147, 35.013748188229016 ], [ -106.051853495864165, 35.009158458550807 ], [ -106.023929998582531, 35.00722176322688 ], [ -106.015292846461961, 35.005039905964381 ], [ -105.934609995707646, 35.004891987328953 ], [ -105.921883690579548, 35.006380121785774 ], [ -105.879425667367954, 35.004831780434834 ], [ -105.728749071129542, 35.004142727015086 ], [ -105.722400933509562, 35.004604732297139 ], [ -105.707828643086927, 35.010463576912628 ], [ -105.664385675692898, 35.008232805415965 ], [ -105.554741205253336, 35.001843393091953 ], [ -105.550759120436027, 35.002293391890902 ], [ -105.543571984806448, 35.005192322428442 ], [ -105.533981779819797, 35.006093326234421 ], [ -105.500541025653632, 35.00469348533408 ], [ -105.459279985146026, 34.999592789061047 ], [ -105.290971858138874, 34.991304625275056 ], [ -104.991274121541664, 34.976497108087827 ], [ -104.861022127148431, 34.96969667703582 ], [ -104.788739476091877, 34.968776913257571 ], [ -104.750522597187725, 34.96486711370239 ], [ -104.742992433530631, 34.963849157854717 ], [ -104.735637271820394, 34.961419231802651 ], [ -104.710337713051302, 34.947186599720268 ], [ -104.698115452117776, 34.946427642957083 ], [ -104.684016153040332, 34.947999643007066 ], [ -104.672426904288841, 34.94473073372874 ], [ -104.664216729110692, 34.943467776039611 ], [ -104.641656249765248, 34.947778744190295 ], [ -104.51522743702769, 35.006909112879462 ], [ -104.497518985539472, 35.01136906260669 ], [ -104.465115816796811, 35.011399141962158 ], [ -104.446545139568229, 35.015168085748627 ], [ -104.40751872270296, 35.032608698069467 ], [ -104.393839235898454, 35.038208571987923 ], [ -104.376512626268052, 35.047218355407026 ], [ -104.338211291168733, 35.051845298685848 ], [ -104.300299993115487, 35.061737082901139 ], [ -104.224804796824898, 35.070007075733706 ], [ -104.189373079832777, 35.066246394514586 ], [ -104.180102897568105, 35.06646744228366 ], [ -104.125101885443755, 35.079860377478504 ], [ -104.071351914642193, 35.092998323585647 ], [ -104.062386744281923, 35.09362835998288 ], [ -104.049599533937567, 35.099376274805536 ], [ -103.954398848780841, 35.125056928224794 ], [ -103.941542597843181, 35.125815927873212 ], [ -103.873937156990976, 35.116009278229527 ], [ -103.870237084715015, 35.116256277001192 ], [ -103.826016421600997, 35.139716776043848 ], [ -103.807446108922449, 35.145304679999022 ], [ -103.78850976642164, 35.148410646644415 ], [ -103.780811625485242, 35.149466638582709 ], [ -103.775989553812309, 35.151717597630352 ], [ -103.768825450835507, 35.155345531324201 ], [ -103.762149335720963, 35.156855512503995 ], [ -103.757839245994475, 35.156367533203948 ], [ -103.743365846091905, 35.151492659121672 ], [ -103.737444672267557, 35.151023670773611 ], [ -103.72825840848806, 35.150847676643998 ], [ -103.724894311925027, 35.150786678721303 ], [ -103.719828170707288, 35.151091673010704 ], [ -103.711168931435125, 35.151816658663044 ], [ -103.704843776803585, 35.154265605214803 ], [ -103.702081712390239, 35.155635575096021 ], [ -103.67890318221167, 35.168265295227577 ], [ -103.675317099810414, 35.170207251915812 ], [ -103.671036994742721, 35.171885214549199 ], [ -103.618591497637141, 35.172297210380513 ], [ -103.490855843662814, 35.173224240212555 ], [ -103.486247702905416, 35.172526275681868 ], [ -103.476321368481209, 35.167975423268452 ], [ -103.442575151965585, 35.146446063534135 ], [ -103.36660652036187, 35.115628080116927 ], [ -103.356414175596072, 35.112748186428767 ], [ -103.331136406353394, 35.112557290229319 ], [ -103.288365110399297, 35.112687455488242 ], [ -103.275089736269322, 35.11469746214371 ], [ -103.250507095713743, 35.121758399579527 ], [ -103.224185528683037, 35.132047201345586 ], [ -103.12550400759298, 35.165947598452611 ], [ -103.1018213204798, 35.172466496468715 ], [ -103.0687853232279, 35.18267833485811 ], [ -103.04234149796163, 35.182068392800453 ], [ -103.027952051700609, 35.180946440611287 ], [ -103.008328433015251, 35.183117429181429 ], [ -102.983661652268381, 35.186096392186265 ], [ -102.943567323439282, 35.20026814541086 ], [ -102.908708121171301, 35.215827892434582 ], [ -102.867286719326017, 35.226195766061707 ], [ -102.816602922133768, 35.244307549836215 ], [ -102.800549382276387, 35.245967555087852 ], [ -102.786365877491718, 35.250067519522659 ], [ -102.774143455515926, 35.252166488023484 ], [ -102.756991819901302, 35.259177336177061 ], [ -102.727960879404975, 35.268865908252792 ], [ -102.688409764741905, 35.270605541005054 ], [ -102.674668394584131, 35.26949545824057 ], [ -102.655746864496479, 35.27002529075888 ], [ -102.644310530566571, 35.271764153320383 ], [ -102.580946760639605, 35.27318360435946 ], [ -102.448985369896775, 35.248746116958763 ], [ -102.434473017574859, 35.243462098446997 ], [ -102.428445860222013, 35.242894060110267 ], [ -102.416978555747136, 35.242622971992297 ], [ -102.247739036015417, 35.210662179234632 ], [ -102.16712453765237, 35.208602172269565 ], [ -102.098061487489161, 35.192073423805027 ], [ -102.000470536787475, 35.189712411253019 ], [ -101.979862737464671, 35.188861378858903 ], [ -101.97199644585497, 35.187084389976974 ], [ -101.952838693446665, 35.187374340365899 ], [ -101.94002819578121, 35.186992316207672 ], [ -101.937609101709342, 35.186931311438251 ], [ -101.920267427648724, 35.186473277249149 ], [ -101.902306684911053, 35.190422179445207 ], [ -101.884056959639679, 35.191413125417711 ], [ -101.876876678429213, 35.191394109857598 ], [ -101.866188221051701, 35.195022040168347 ], [ -101.848525535980173, 35.194282012449939 ], [ -101.837157108083801, 35.192634007851986 ], [ -101.817281330542471, 35.192473966691566 ], [ -101.801449701446373, 35.193202924777104 ], [ -101.742274387638901, 35.192393765275767 ], [ -101.7223525968666, 35.192656623167942 ], [ -101.696839587540254, 35.192713443605172 ], [ -101.692398399045189, 35.194170398771099 ], [ -101.689095246034171, 35.196787350886808 ], [ -101.68246493850971, 35.202441250354951 ], [ -101.676025671641924, 35.204432185379872 ], [ -101.657538935870377, 35.206900028963425 ], [ -101.622998597021905, 35.207036779446327 ], [ -101.61814640236328, 35.208471729881673 ], [ -101.600857689650184, 35.220472480009725 ], [ -101.581447951912352, 35.220682335264755 ], [ -101.579631882787567, 35.220750321199723 ], [ -101.397167142421111, 35.221650010492809 ], [ -101.382418461523713, 35.216758957416381 ], [ -101.365327673216072, 35.210060903854867 ], [ -101.364893652431093, 35.208888912385611 ], [ -101.36041444671099, 35.20780989113068 ], [ -101.145591465574199, 35.207820103472699 ], [ -101.110631833382428, 35.213519069242295 ], [ -101.099500295159771, 35.209541092417773 ], [ -101.086224629932914, 35.199527146094567 ], [ -101.08030333371002, 35.195709165009113 ], [ -101.005844719312591, 35.182807195096878 ], [ -100.98716692212713, 35.181301214455601 ], [ -100.971450306847146, 35.183257226768951 ], [ -100.909114819788684, 35.183212304547901 ], [ -100.907970773990542, 35.183185306069092 ], [ -100.907421752041145, 35.183177306781282 ], [ -100.894001192009867, 35.178928338647438 ], [ -100.883402771088029, 35.179241350659602 ], [ -100.870654285264393, 35.183185352521576 ], [ -100.85991885732345, 35.183246365669753 ], [ -100.834923838521433, 35.179439410018617 ], [ -100.828202574160883, 35.180099416057104 ], [ -100.821213313119571, 35.183242413860818 ], [ -100.807479805720632, 35.190448406203139 ], [ -100.79618040824046, 35.200000387748986 ], [ -100.781508861884873, 35.207088382323938 ], [ -100.776396686715159, 35.212310371187144 ], [ -100.771826517984934, 35.214809368632515 ], [ -100.756040875878099, 35.212760395917996 ], [ -100.742566331613034, 35.214939406753828 ], [ -100.728504738266651, 35.215030425914854 ], [ -100.719059329942766, 35.21339044481104 ], [ -100.701694604054509, 35.214698464249601 ], [ -100.669581266751862, 35.217807496761779 ], [ -100.642175165103893, 35.226539498935409 ], [ -100.609717796473149, 35.22644054189125 ], [ -100.578611486698776, 35.226631581822467 ], [ -100.538685804397659, 35.226695633810174 ], [ -100.384122263711717, 35.227027767437072 ], [ -100.374379868402926, 35.229339757902487 ], [ -100.349880811605274, 35.226970792939937 ], [ -100.280449867854429, 35.22694784403091 ], [ -100.248954564609875, 35.231040844388225 ], [ -100.242019272967426, 35.231590920815769 ], [ -100.219984295742577, 35.226971218329012 ], [ -100.000385923415209, 35.227152763402458 ], [ -99.991596636951769, 35.227831716260233 ], [ -99.957011521061972, 35.23195152143979 ], [ -99.947390197701665, 35.231501469051224 ], [ -99.923036353559837, 35.227122351554058 ], [ -99.91456006810283, 35.226634308609164 ], [ -99.849547909939787, 35.226831962526099 ], [ -99.817663876086712, 35.23014276173312 ], [ -99.794477106869522, 35.230310632829791 ], [ -99.789921955211938, 35.230272608236078 ], [ -99.774151456862924, 35.233682481544847 ], [ -99.735324336433223, 35.254690111319071 ], [ -99.718119834013478, 35.260473081018972 ], [ -99.705523419723619, 35.2622620797409 ], [ -99.650261436853569, 35.261941144445196 ], [ -99.643562218963368, 35.262910143518418 ], [ -99.635361002656921, 35.266302123135198 ], [ -99.627875888562343, 35.272981073199738 ], [ -99.620735055730592, 35.291199921943821 ], [ -99.61292334465162, 35.315300719599421 ], [ -99.594353231271469, 35.337151547406201 ], [ -99.564010633844035, 35.354100428953302 ], [ -99.543670314635534, 35.367989326426269 ], [ -99.530959082535716, 35.375069276133139 ], [ -99.515249782933836, 35.383049220475677 ], [ -99.505255528996116, 35.385590207438149 ], [ -99.455724058201852, 35.386780206114288 ], [ -99.417422876010633, 35.385849218680427 ], [ -99.408732647391147, 35.386971209190264 ], [ -99.402530542843792, 35.389698184424844 ], [ -99.391299519871495, 35.399968089295925 ], [ -99.389148519374885, 35.402031070064474 ], [ -99.383387519466879, 35.407551018421302 ], [ -99.376353533433786, 35.414634951755225 ], [ -99.372439577956015, 35.419700903861546 ], [ -99.371112501264051, 35.418479915348463 ], [ -99.367091433580782, 35.420032900522408 ], [ -99.364352377947085, 35.420780893329301 ], [ -99.359591266343983, 35.421600885344844 ], [ -99.304284665902046, 35.421508883754036 ], [ -99.290894421973832, 35.425678842337881 ], [ -99.284455260751372, 35.426368835163245 ], [ -99.273849902928745, 35.424838849557837 ], [ -99.265472546963466, 35.421569881416943 ], [ -99.225348580517405, 35.422248958494102 ], [ -99.21632348291142, 35.425109959761933 ], [ -99.192221420805808, 35.438278903801731 ], [ -99.168479125395038, 35.444690913400947 ], [ -99.158728149472907, 35.451370873619176 ], [ -99.1431493080688, 35.465373772215223 ], [ -99.133712333423603, 35.471877730633551 ], [ -99.112487160059757, 35.480079704378817 ], [ -99.031170367013857, 35.480091943929281 ], [ -99.02395323815557, 35.480930955430196 ], [ -99.016446161814841, 35.48339894862918 ], [ -99.000348185254595, 35.493865872075069 ], [ -98.994052994414332, 35.495963921798712 ], [ -98.964724915509862, 35.500721214416082 ], [ -98.958537653022233, 35.500737287597289 ], [ -98.947108175072088, 35.500981420320365 ], [ -98.918802392944798, 35.5137416024942 ], [ -98.910654119534712, 35.515858671125692 ], [ -98.853720722736597, 35.515901327795561 ], [ -98.821599608193708, 35.52263060422078 ], [ -98.742785343069087, 35.522624392412439 ], [ -98.720681459746956, 35.520503355871995 ], [ -98.703133859364527, 35.521567282444686 ], [ -98.694748591044885, 35.522601237970775 ], [ -98.686066544696587, 35.530161078614938 ], [ -98.67659839999267, 35.535852945508758 ], [ -98.62338845672916, 35.536233746034348 ], [ -98.554576918610607, 35.536001501691608 ], [ -98.528696776339387, 35.530050538988618 ], [ -98.52012844341111, 35.529451522826008 ], [ -98.350498567896366, 35.529092102986269 ], [ -98.330828888845716, 35.528921060245672 ], [ -98.30643690530917, 35.522962163740701 ], [ -98.294710523986126, 35.523721116322591 ], [ -98.275117120022315, 35.53493275875573 ], [ -98.268929955142539, 35.537011684767123 ], [ -98.251999354457695, 35.536339660131468 ], [ -98.237548817230092, 35.533020782341588 ], [ -98.223052293235824, 35.529969905250923 ], [ -98.214645014837686, 35.529320944643956 ], [ -98.114101849764666, 35.529161199920701 ], [ -98.043298629090899, 35.529592364460939 ], [ -98.025703995970005, 35.523332582726468 ], [ -98.000328099325841, 35.514230898517376 ], [ -97.973121342219088, 35.5083833677838 ], [ -97.957266867044552, 35.50223072117668 ], [ -97.936903338728314, 35.501303979085861 ], [ -97.900822415034895, 35.500724406356731 ], [ -97.881588936312852, 35.501514602012598 ], [ -97.86649754190752, 35.500640799506058 ], [ -97.797640799829026, 35.501195566316397 ], [ -97.78648549275816, 35.49900576299531 ], [ -97.777574236108336, 35.495175991094463 ], [ -97.72148973416904, 35.466330739205674 ], [ -97.714431557033407, 35.462645974582621 ], [ -97.706749380464927, 35.460682164542497 ], [ -97.697097171239392, 35.459747354291679 ], [ -97.671416640038956, 35.460121770465932 ], [ -97.618909548871613, 35.460286640398856 ], [ -97.601156177806516, 35.460152939781658 ], [ -97.583104799893349, 35.459978245002148 ], [ -97.57497163145959, 35.460050378547422 ], [ -97.565693452815083, 35.461180504333115 ], [ -97.557209286896423, 35.461977626025764 ], [ -97.552769221939798, 35.464037649066434 ], [ -97.547909148280809, 35.466055680989413 ], [ -97.532413837701199, 35.466730926581079 ], [ -97.528781739482099, 35.465056028072283 ], [ -97.527294700379102, 35.464457067412809 ], [ -97.52323558960785, 35.46255418076899 ], [ -97.492823896393858, 35.462020666732094 ] ], [ [ -86.721494796369811, 36.140518327748921 ], [ -86.697240333995538, 36.144226214734857 ], [ -86.666630774301609, 36.141136332736515 ], [ -86.654079540450695, 36.141586322507784 ], [ -86.648037425618369, 36.144058236740541 ], [ -86.609797728891436, 36.167624367710403 ], [ -86.601268580941323, 36.170096268495776 ], [ -86.567934996108733, 36.16878029381084 ], [ -86.532526370281374, 36.167124335349897 ], [ -86.503960892211126, 36.172477091801809 ], [ -86.450188239356152, 36.179350669685398 ], [ -86.407119728518637, 36.185163324194484 ], [ -86.349083002567852, 36.183607241623555 ], [ -86.298934376540771, 36.182195169887613 ], [ -86.269171022050443, 36.188202869492571 ], [ -86.263692957007592, 36.18955780568578 ], [ -86.243864740997722, 36.193535635212605 ], [ -86.202138374361482, 36.194195677145508 ], [ -86.167913066386319, 36.188954915198018 ], [ -86.127522701074383, 36.170896589022639 ], [ -86.116261604900018, 36.170526612929748 ], [ -86.102215483918798, 36.166513761164573 ], [ -86.097142441139169, 36.167185743379719 ], [ -86.089993381091375, 36.170339645502303 ], [ -86.079426291275922, 36.174764510654178 ], [ -86.075772259949346, 36.175115503203081 ], [ -86.063916158644091, 36.172666595990087 ], [ -86.05908611806845, 36.169454705031896 ], [ -86.053662072220931, 36.168466742172768 ], [ -86.020252783712365, 36.175195562724753 ], [ -85.991084394129359, 36.180494584545102 ], [ -85.94779437298601, 36.179106413501678 ], [ -85.921243758034919, 36.174438010863348 ], [ -85.900903306048363, 36.165787571291418 ], [ -85.886505982087186, 36.162197895713902 ], [ -85.867249593740695, 36.146416538524143 ], [ -85.852272251953679, 36.146008779133979 ], [ -85.838081944270201, 36.142008070747941 ], [ -85.817268484219625, 36.138849438073983 ], [ -85.809211302848155, 36.138430564938325 ], [ -85.801971129616916, 36.140062648442012 ], [ -85.795080967519894, 36.141008738417042 ], [ -85.791060880651187, 36.140108811832668 ], [ -85.780684693288876, 36.131350083832608 ], [ -85.777922656652464, 36.126800182643933 ], [ -85.777205687568156, 36.118529299833739 ], [ -85.76675252319653, 36.106830580617277 ], [ -85.74819013198011, 36.101989850662179 ], [ -85.725080547946447, 36.090469122102995 ], [ -85.721318437508884, 36.091022139494747 ], [ -85.710836088012272, 36.098911110429839 ], [ -85.688984382545328, 36.111332083448893 ], [ -85.686550290883957, 36.114620054699827 ], [ -85.684208166383584, 36.1231419568755 ], [ -85.678432976635406, 36.126719939922467 ], [ -85.646273988309062, 36.136142969879529 ], [ -85.628466466697546, 36.137512034927276 ], [ -85.602929708004282, 36.140842103780614 ], [ -85.571907828782997, 36.139072277410968 ], [ -85.558205461900513, 36.13553240293902 ], [ -85.544601065065734, 36.136291455022096 ], [ -85.529349624440556, 36.136581522815575 ], [ -85.5027838690675, 36.135570669227256 ], [ -85.485418360332986, 36.135281848675092 ], [ -85.479467187786369, 36.134842922249433 ], [ -85.478399156912133, 36.134750935667576 ], [ -85.450230312503379, 36.136323218737239 ], [ -85.43678689152064, 36.139741312075792 ], [ -85.422733470622958, 36.140721454665055 ], [ -85.414936209846729, 36.145452470856732 ], [ -85.410740079061597, 36.146611501790126 ], [ -85.392329552596465, 36.144334746667028 ], [ -85.369135868646751, 36.144705007449105 ], [ -85.366258795547097, 36.142683066370651 ], [ -85.35978966153661, 36.13252526702022 ], [ -85.352838470989084, 36.129702377041689 ], [ -85.348100327443376, 36.130262421269258 ], [ -85.333024848009941, 36.136663511838904 ], [ -85.315110324023664, 36.135572721660147 ], [ -85.30623703553961, 36.141314762468262 ], [ -85.29580673434458, 36.139944893306208 ], [ -85.278053209059308, 36.140433088648344 ], [ -85.272155035914636, 36.140266156460939 ], [ -85.266875886613619, 36.138633229008455 ], [ -85.262755778178771, 36.13515430234694 ], [ -85.251799505130492, 36.120895527309763 ], [ -85.240881028576922, 36.110904744853805 ], [ -85.238462934110714, 36.103393829279483 ], [ -85.23636484136405, 36.099902881130916 ], [ -85.223066219653219, 36.087525136105171 ], [ -85.19399682839213, 36.070835595458163 ], [ -85.176738022395838, 36.056904866594735 ], [ -85.167391571512795, 36.05318599045539 ], [ -85.118645179401582, 36.044625570151275 ], [ -85.047520854218178, 36.001978324639545 ], [ -85.045368757403764, 36.000086342962298 ], [ -85.040668501987014, 35.998457393721793 ], [ -85.01583407246973, 35.984507678221611 ], [ -84.977432780207053, 35.959018283298001 ], [ -84.972801528201444, 35.95769836370733 ], [ -84.961043925915462, 35.957019559400372 ], [ -84.93516346318512, 35.944798015149509 ], [ -84.906047679153602, 35.918179540769223 ], [ -84.889712778240892, 35.910321812832123 ], [ -84.868341634252772, 35.902280159542478 ], [ -84.857835110319343, 35.901540324200511 ], [ -84.848824617615705, 35.896860469368711 ], [ -84.843140325366107, 35.895551558713066 ], [ -84.838067008666712, 35.889051642807175 ], [ -84.816443895193714, 35.883161978284321 ], [ -84.813109736635511, 35.883521029074075 ], [ -84.80447235563372, 35.887541159855658 ], [ -84.797644073894759, 35.892882263591751 ], [ -84.795142008759299, 35.898901301228435 ], [ -84.791616850209749, 35.90041235582796 ], [ -84.774282000384446, 35.900450625547577 ], [ -84.752521876569432, 35.893752960639482 ], [ -84.742015440973788, 35.892211102685685 ], [ -84.733325123158124, 35.893062216619818 ], [ -84.716768550871521, 35.898391441291309 ], [ -84.708681247177168, 35.898193547728091 ], [ -84.701852972310292, 35.895980633045319 ], [ -84.693643607475465, 35.889602725127894 ], [ -84.687486352170367, 35.886909797451231 ], [ -84.682710176619679, 35.887283859747292 ], [ -84.663132530620231, 35.896512143194563 ], [ -84.637221604885383, 35.900803502509113 ], [ -84.623839150099897, 35.905240701707854 ], [ -84.610815729930408, 35.911618910221748 ], [ -84.603193466454158, 35.913545024904458 ], [ -84.595434169285937, 35.912675126333937 ], [ -84.586850819232694, 35.909696225786924 ], [ -84.577756473954594, 35.909025345099515 ], [ -84.571813189416744, 35.90307438665689 ], [ -84.554272507146166, 35.900453602343845 ], [ -84.547428195630076, 35.895334655401946 ], [ -84.541590982484948, 35.895784735310393 ], [ -84.534823715412344, 35.894506814112383 ], [ -84.508859595522509, 35.881484040503622 ], [ -84.497720049145428, 35.873644108111378 ], [ -84.493951827395009, 35.872206138380569 ], [ -84.458373906295435, 35.873446555681099 ], [ -84.459616978230599, 35.873805544416982 ], [ -84.451033506599131, 35.873416639269138 ], [ -84.443694085040832, 35.871585708730457 ], [ -84.442587031991522, 35.872176726036535 ], [ -84.43295843719028, 35.866404792239742 ], [ -84.415501452278903, 35.863677974281138 ], [ -84.406620928591693, 35.860515055045965 ], [ -84.401470643698033, 35.860195112983732 ], [ -84.396640396101105, 35.861446178059722 ], [ -84.358476552216516, 35.879608734111031 ], [ -84.345032842020615, 35.881145894908528 ], [ -84.333313175339882, 35.878884014249607 ], [ -84.324203615774181, 35.87406609121016 ], [ -84.312514923418192, 35.869878202888202 ], [ -84.304945493707436, 35.868577283350639 ], [ -84.267147475898852, 35.871445730898891 ], [ -84.256351853197501, 35.868943844542358 ], [ -84.253306694101326, 35.869416881469228 ], [ -84.240634160201694, 35.876558088211702 ], [ -84.220423322294366, 35.886125419910734 ] ], [ [ -78.595891597663439, 35.753863689459735 ], [ -78.58605811964523, 35.727283474413355 ], [ -78.583914692336208, 35.705540224903025 ], [ -78.575102849849856, 35.694611574914958 ], [ -78.565886079339549, 35.680185051716151 ], [ -78.563689225021633, 35.673181292527303 ], [ -78.564918707450445, 35.655736913651332 ], [ -78.565849415331741, 35.629653838593029 ], [ -78.567566697060485, 35.620418168481798 ], [ -78.567040824677207, 35.615177352671516 ], [ -78.562981937268759, 35.607460618825549 ], [ -78.564622242961448, 35.597278981817723 ], [ -78.574815824911994, 35.584622440799293 ], [ -78.576639561779416, 35.559187335933814 ], [ -78.581286925257373, 35.550413645392844 ], [ -78.577754055593545, 35.542169933618801 ], [ -78.558681220758643, 35.515673873050496 ], [ -78.548022656758192, 35.470749909716446 ], [ -78.533595376269488, 35.453027227863174 ], [ -78.533893567919847, 35.436425502456927 ], [ -78.525882528177092, 35.412343927950296 ], [ -78.522060554783693, 35.395090232111627 ], [ -78.518001444853795, 35.389921335277648 ], [ -78.501497920936515, 35.373854680148227 ], [ -78.49132059269833, 35.366224818113182 ], [ -78.475573125197826, 35.347659137540944 ], [ -78.467065831098125, 35.342250229280459 ], [ -78.459283570077602, 35.335257349179102 ], [ -78.454118383057803, 35.332522395351276 ], [ -78.441658912644797, 35.328635459240004 ], [ -78.430595480654247, 35.327540474646092 ], [ -78.420807113284383, 35.322555558946092 ], [ -78.418137022408871, 35.318484629648786 ], [ -78.417770044517042, 35.308638802716061 ], [ -78.406646640826793, 35.29393005798881 ], [ -78.398871362393535, 35.278675324187354 ], [ -78.387457915402805, 35.263779583280019 ], [ -78.378019529822652, 35.253147768070065 ], [ -78.376394460203102, 35.249603827621442 ], [ -78.37447232004277, 35.24163493152043 ], [ -78.348119078977746, 35.225556107721793 ], [ -78.339771698085798, 35.221635142391953 ], [ -78.324069966093063, 35.210725238798652 ], [ -78.30607917565402, 35.20506426165727 ], [ -78.294557661320013, 35.199201293460952 ], [ -78.283029137794969, 35.1906673440932 ], [ -78.25351784149052, 35.173608397526557 ], [ -78.241989375939781, 35.160466456654881 ], [ -78.233459074510691, 35.156320456575919 ], [ -78.207785137982981, 35.137754509584596 ], [ -78.188596404101958, 35.117452607900574 ], [ -78.176129871815817, 35.093045769649869 ], [ -78.172207663850784, 35.076936892761445 ], [ -78.158146085608138, 35.056055027366128 ], [ -78.136325092461604, 35.006624395036233 ], [ -78.134264968124398, 34.994387525094865 ], [ -78.129504754898619, 34.981394688159675 ], [ -78.121836449116003, 34.971850793016394 ], [ -78.110583030229535, 34.966566826770709 ], [ -78.096948497021458, 34.955145927994465 ], [ -78.084504027863076, 34.949690952169867 ], [ -78.073761631800537, 34.947218943208775 ], [ -78.065239314252636, 34.944746941376003 ], [ -78.058426052117355, 34.94134095616684 ], [ -78.024054693951058, 34.920814051453036 ], [ -78.002706703200104, 34.888450301354702 ], [ -78.002050515397357, 34.864169554051088 ], [ -77.998113257247596, 34.845470726405658 ], [ -77.998769157616806, 34.828082913201342 ], [ -77.996144024909327, 34.818568995707302 ], [ -77.987286676197428, 34.79986613405773 ], [ -77.9787564133687, 34.791992161218097 ], [ -77.974491226928279, 34.778214278754682 ], [ -77.947909450615015, 34.751309391906716 ], [ -77.94528552812362, 34.743763343100433 ], [ -77.946925923327228, 34.728016243489137 ], [ -77.945484088438491, 34.719059174047395 ], [ -77.943768533090633, 34.69715901649284 ], [ -77.946987860561165, 34.686656955760228 ], [ -77.948934084284318, 34.679305910388486 ], [ -77.943982242288627, 34.665706802821994 ], [ -77.936818796035524, 34.630107555628456 ], [ -77.931089781089639, 34.621688499930897 ], [ -77.916402570800244, 34.606807415238549 ], [ -77.907338571466411, 34.589816334100846 ], [ -77.902608625340633, 34.57751828112783 ], [ -77.894368722845925, 34.554538195391714 ], [ -77.89233208746117, 34.529449093063988 ], [ -77.889227070084658, 34.522906078957071 ], [ -77.877004822425548, 34.505946074048424 ], [ -77.87967497719022, 34.463027453492415 ], [ -77.868848454533463, 34.421329961439042 ], [ -77.869962486629461, 34.40961908547083 ], [ -77.875325681134839, 34.390347279841457 ], [ -77.8848940425883, 34.374668427108482 ], [ -77.888052148823732, 34.364113538447207 ], [ -77.884985007235016, 34.353459666622804 ], [ -77.872228468377998, 34.32571900107817 ], [ -77.869764354721823, 34.310014177116905 ], [ -77.861455029464338, 34.295861339987198 ], [ -77.862325057370384, 34.291318388137142 ], [ -77.867108227079058, 34.285539447051512 ], [ -77.867978251622205, 34.279268514858977 ] ], [ [ -79.259408923691026, 36.07559744058829 ], [ -79.25164978916979, 36.077149520218384 ], [ -79.222558075856952, 36.079358870152262 ], [ -79.180663957006885, 36.074110450378299 ], [ -79.160140427001011, 36.072889721502307 ], [ -79.130827612833457, 36.05979019648791 ], [ -79.125372474814895, 36.059119270088118 ], [ -79.122046335888285, 36.047919398071834 ], [ -79.10004272961767, 36.02889181171534 ], [ -79.087964375078315, 36.007160116055928 ], [ -79.078916156666864, 36.000961267564819 ], [ -79.075727070440408, 35.987022660144227 ], [ -79.068646904729476, 35.975774052798634 ], [ -79.057034644569441, 35.967351438978191 ], [ -79.051480523486376, 35.966283544729748 ], [ -79.043644356725906, 35.96858358673046 ], [ -79.035664184751994, 35.968774689605596 ], [ -79.013187690942132, 35.958906292968855 ], [ -79.001498432740817, 35.951479687769869 ], [ -78.999973398927366, 35.950323745811197 ], [ -78.991649254620569, 35.939853188798558 ], [ -78.985553139474078, 35.918895918623832 ], [ -78.982036078819718, 35.91289515072225 ], [ -78.976496986325103, 35.906544419875026 ], [ -78.97150690623522, 35.904545547942512 ], [ -78.965342808777052, 35.903805653235693 ], [ -78.930971272279166, 35.908886965168264 ], [ -78.893807690587749, 35.907647504364526 ], [ -78.877603437996157, 35.907056740320598 ], [ -78.872247354263806, 35.903405915770691 ], [ -78.871774346665646, 35.901067988097005 ], [ -78.868661298145838, 35.898356106110242 ], [ -78.85132703011881, 35.892038512624929 ], [ -78.846291952709791, 35.889036662097816 ], [ -78.828720685740791, 35.871253377967811 ], [ -78.814896477899353, 35.861449818679219 ], [ -78.794395173531598, 35.847130455637796 ], [ -78.74056940017995, 35.818738748246055 ], [ -78.738059371339517, 35.812101915463629 ], [ -78.741469427735524, 35.798491246351148 ], [ -78.74502547992283, 35.792189403889566 ], [ -78.749007537373132, 35.785883566728437 ], [ -78.747870527134694, 35.778899742561762 ], [ -78.73571737650407, 35.766803010760604 ] ], [ [ -80.006790790210943, 36.095378448514062 ], [ -79.970801429626761, 36.084067317493421 ], [ -79.959264992434811, 36.080397269155739 ], [ -79.920170473263241, 36.066966099415183 ], [ -79.891246308411112, 36.056165966422427 ], [ -79.870714463646422, 36.048795865716741 ], [ -79.859820038620185, 36.048692801355323 ], [ -79.840692254131213, 36.044179697460059 ], [ -79.819100323699672, 36.035677583290109 ], [ -79.811034964010318, 36.031816540418646 ], [ -79.804648716460363, 36.032426500005435 ], [ -79.783674942442403, 36.037416364281711 ], [ -79.773687629924055, 36.043947296037658 ], [ -79.768675456179338, 36.045686264142724 ], [ -79.749600733797635, 36.047075150443639 ], [ -79.73327437587794, 36.051675181976719 ], [ -79.71009484435659, 36.056566223498187 ], [ -79.682209163188446, 36.059404273636609 ], [ -79.655520470753359, 36.059042327423093 ], [ -79.633524889350227, 36.057855375263266 ], [ -79.572442383295169, 36.062776473937753 ], [ -79.550361797921269, 36.061235524403116 ], [ -79.538986529266978, 36.06307453588294 ], [ -79.483290273956129, 36.069425768399107 ], [ -79.469160943167509, 36.065275969640368 ], [ -79.463903826536537, 36.064257041130446 ], [ -79.441579393035568, 36.065066308471437 ], [ -79.431013170283208, 36.063944446057903 ], [ -79.400258515946064, 36.060046852937411 ], [ -79.388112296416622, 36.06178598850191 ], [ -79.38408323659155, 36.063476024543014 ], [ -79.376835143476271, 36.067768078985942 ], [ -79.370778040025158, 36.069156141727682 ], [ -79.337574383808374, 36.069015547856019 ], [ -79.31848497146656, 36.065796808547034 ], [ -79.30211168697501, 36.069046980233601 ], [ -79.282580292683775, 36.068059227480433 ], [ -79.260873946677464, 36.075089427515358 ] ], [ [ -83.973991059095155, 35.955460795540354 ], [ -83.967467857838656, 35.958611901011324 ], [ -83.958449512493061, 35.959742063967013 ], [ -83.951537300759725, 35.963152174759664 ], [ -83.947585151196748, 35.963732245540562 ], [ -83.940748852702825, 35.962824378569138 ], [ -83.93276058216172, 35.965521512935354 ], [ -83.925809385982873, 35.969751618905178 ], [ -83.921079242372954, 35.972143693563311 ], [ -83.917905211503452, 35.976892725521914 ], [ -83.918600320351601, 35.980753690426084 ], [ -83.9173563171681, 35.983042700412682 ], [ -83.907223993087086, 35.987371863527315 ], [ -83.889447530866477, 36.000064117951432 ], [ -83.873799115884822, 36.007453296926798 ], [ -83.863101826926908, 36.012202421329526 ], [ -83.856975612420015, 36.013293516519269 ], [ -83.841936918593191, 36.010585832540016 ], [ -83.835757569125292, 36.007453994295382 ], [ -83.82818127696882, 36.007954125318356 ], [ -83.820727020952944, 36.00942223861783 ], [ -83.779320119621616, 36.002786106402098 ], [ -83.753226139048934, 36.005254544790837 ], [ -83.744825818582342, 36.00460569711781 ], [ -83.731115222953449, 36.000085987884809 ], [ -83.713101566466776, 35.996496295707196 ], [ -83.68055350071343, 35.995726811543605 ], [ -83.650889339081658, 35.986438352061157 ], [ -83.622270308332148, 35.981761843618628 ], [ -83.608292888839998, 35.983238052326854 ], [ -83.5977265808759, 35.984741206357334 ], [ -83.583711175134468, 35.986828409222881 ], [ -83.569771852476293, 35.992375578549385 ], [ -83.522444905974893, 36.010568155268537 ], [ -83.475958876683691, 36.02279896902111 ], [ -83.464437635067043, 36.026339205308517 ], [ -83.45445853607724, 36.032420385402496 ], [ -83.4397712767326, 36.038439673646387 ], [ -83.421193966913549, 36.046741031872074 ], [ -83.389653634231394, 36.066821588489418 ], [ -83.385823536125898, 36.067691668824075 ], [ -83.381947359149422, 36.066371768357811 ], [ -83.371898726571601, 36.057942068213343 ], [ -83.35213782515909, 36.050930579144648 ], [ -83.326601459875164, 36.035604293565214 ], [ -83.303009317493832, 36.02447392978614 ], [ -83.296592897824979, 36.018065131969124 ], [ -83.284148547548298, 35.989733624466332 ], [ -83.280562280357287, 35.985430727578894 ], [ -83.275029958963643, 35.981444872455747 ], [ -83.27078057249922, 35.974506001374408 ], [ -83.257572957529874, 35.969623319608637 ], [ -83.242192308486423, 35.967365658603633 ], [ -83.228931824835385, 35.968753925148803 ], [ -83.214824017599199, 35.962006237061942 ], [ -83.210253733780036, 35.95914533917842 ], [ -83.206690441042454, 35.95486142467648 ], [ -83.20373708877878, 35.948155504455663 ], [ -83.196244355474278, 35.935574689631949 ], [ -83.190140770732668, 35.925545836192519 ], [ -83.184073720883902, 35.901788013103697 ], [ -83.187720358253941, 35.887246982484548 ], [ -83.186744043864195, 35.879167021168726 ], [ -83.180928399690799, 35.837377227609224 ], [ -83.183728174808095, 35.827917203465425 ], [ -83.183522024219258, 35.823736217310277 ], [ -83.176937431912123, 35.81311635161169 ], [ -83.173588292149219, 35.81241840805427 ], [ -83.166767105099737, 35.813879516749175 ], [ -83.153254879624114, 35.821207726177882 ], [ -83.145350544108737, 35.819406860076292 ], [ -83.14324540606556, 35.817438897714361 ], [ -83.142886204540275, 35.811678911734084 ], [ -83.132349507455771, 35.801429095558007 ], [ -83.130495321592448, 35.797648129439594 ], [ -83.126581121127899, 35.795569194005211 ], [ -83.119668952833223, 35.797660302425626 ], [ -83.115731777171433, 35.796359366228515 ], [ -83.113824635643681, 35.793948398163579 ], [ -83.115304502613498, 35.788188378534407 ], [ -83.108514045399502, 35.780967488885608 ], [ -83.097786523679602, 35.775759656626491 ], [ -83.082549849826208, 35.770327890161475 ], [ -83.079787620097363, 35.76579993106786 ], [ -83.063642617907291, 35.750099164404773 ], [ -83.059499517793057, 35.751240226298222 ], [ -83.052045457816007, 35.75738934241361 ], [ -83.04565215213438, 35.754078433836185 ], [ -83.03863299573726, 35.756550541242291 ], [ -83.035138878059357, 35.756420593070487 ], [ -83.033093678310493, 35.751808616542107 ], [ -83.03603855143443, 35.743721654480638 ], [ -83.035794441645052, 35.739967707401043 ], [ -83.031727274578699, 35.738750782712842 ], [ -83.026364112131972, 35.739269854162174 ], [ -83.02465502614973, 35.738197893049609 ], [ -83.023281747026871, 35.729779022509312 ], [ -83.024311680254769, 35.726128055100972 ], [ -83.027477688439987, 35.722562055924058 ], [ -83.035701942038969, 35.721660949377039 ], [ -83.037776947990281, 35.719280950868708 ], [ -83.031246542120556, 35.71255613266981 ], [ -83.028865342756362, 35.708276222585511 ], [ -83.029064267766998, 35.705296258693643 ], [ -83.032497323334269, 35.702966240502768 ], [ -83.038051520274593, 35.703095160117101 ], [ -83.042095621272097, 35.701608122473623 ], [ -83.045337623923629, 35.69745713162132 ], [ -83.030367807405241, 35.68684548156385 ], [ -83.029498601857568, 35.680486576837794 ], [ -83.025668355630344, 35.676568681138704 ], [ -83.013566852086839, 35.674256878653857 ], [ -83.008531584371823, 35.671285986415775 ], [ -83.004297448314333, 35.671926036660452 ], [ -82.99840721845446, 35.670969136810186 ], [ -82.994691012586031, 35.667429250211079 ], [ -82.994965940256364, 35.664667280363581 ], [ -82.993836904278055, 35.664507303175697 ], [ -82.996750792564001, 35.657858334269953 ], [ -83.000443815194203, 35.654917306444737 ], [ -82.998673719784634, 35.653509354206776 ], [ -83.000870742569006, 35.651857339614921 ], [ -82.997010581059527, 35.650309425645922 ], [ -82.999161513773061, 35.645937441597297 ], [ -82.998001396838831, 35.643007500343657 ], [ -82.99399618191697, 35.639398620413239 ], [ -82.996697246504766, 35.639059574752331 ], [ -82.991852021347313, 35.63588970486331 ], [ -82.999863053523654, 35.629396639145234 ], [ -83.009034340948674, 35.627039547321132 ], [ -83.008240141278151, 35.621126633700101 ], [ -83.011727152486699, 35.616716644356508 ], [ -83.012421093090126, 35.613657674600582 ], [ -83.00651553629875, 35.602362896746349 ], [ -82.996794776776326, 35.588233220452466 ], [ -82.991072479342094, 35.583312390370843 ], [ -82.973287713797021, 35.573432850469288 ], [ -82.957067168866331, 35.569683203485269 ], [ -82.953778002455309, 35.566963300447966 ], [ -82.948132546416574, 35.556313544466242 ], [ -82.945233391363786, 35.55360463421551 ], [ -82.922435452243704, 35.542024215388651 ], [ -82.917781320620918, 35.541764306802044 ], [ -82.910785213762779, 35.544595402029202 ], [ -82.896540881188358, 35.546304648762792 ], [ -82.869440342389652, 35.552965072379067 ], [ -82.844934793647454, 35.556856482634444 ], [ -82.828713321172245, 35.55549480669778 ], [ -82.820703040614163, 35.553095990057436 ], [ -82.816948865181146, 35.550365097725901 ], [ -82.813599568211941, 35.542796263178374 ], [ -82.809975390482194, 35.539836371726992 ], [ -82.795868048923097, 35.541106621387776 ], [ -82.791465898611847, 35.539897721093716 ], [ -82.766005241430676, 35.54069919181741 ], [ -82.751486900431019, 35.542416442809298 ], [ -82.741751738939897, 35.549298591098001 ], [ -82.722265122151583, 35.553289046479293 ], [ -82.71338387598712, 35.55627923786593 ], [ -82.692609028264982, 35.553617818632915 ], [ -82.68118662182026, 35.554243109158691 ], [ -82.675648425039029, 35.554549249978955 ], [ -82.666538179892328, 35.557669445532326 ], [ -82.655436721427776, 35.556109757780916 ], [ -82.647013495095649, 35.558920939587402 ], [ -82.639743241635898, 35.559421123079886 ], [ -82.611536041156086, 35.554481929962591 ], [ -82.597245608684204, 35.557511262382057 ], [ -82.589295482980674, 35.562661399451237 ], [ -82.584641349686237, 35.563820505319164 ], [ -82.574554967262259, 35.563481774128988 ], [ -82.568214585381696, 35.559053001354101 ], [ -82.56427040218901, 35.557943119979768 ], [ -82.543135665119337, 35.559251655371504 ], [ -82.538489468862309, 35.558542786844136 ], [ -82.527319003245893, 35.557044100096356 ], [ -82.508253283955554, 35.556674604503918 ], [ -82.50320217192116, 35.558764707873614 ], [ -82.499402241750346, 35.564524726510996 ], [ -82.495878262192278, 35.568121759595229 ], [ -82.463864731160072, 35.581043336005834 ], [ -82.448224570816819, 35.590232580397156 ], [ -82.430577068192491, 35.591594979137263 ], [ -82.41419570206024, 35.59572731125607 ], [ -82.404270363309067, 35.594914556920074 ], [ -82.390880055955364, 35.598095831699212 ], [ -82.372149487473294, 35.598596268624547 ], [ -82.339547739396551, 35.606496938598767 ], [ -82.327424392883586, 35.607478213621043 ], [ -82.306955159757138, 35.619487546530287 ], [ -82.280853323242752, 35.61904917325041 ], [ -82.273567160648824, 35.621029321816728 ], [ -82.269028008184918, 35.620746433424181 ], [ -82.258102509294673, 35.616127751007575 ], [ -82.253242378609144, 35.61678785838405 ], [ -82.246680111846686, 35.61605901630756 ], [ -82.241156945568974, 35.618188109682372 ], [ -82.239272021631081, 35.622948094084499 ], [ -82.237394976530823, 35.624039122334167 ], [ -82.23158166239341, 35.622109271887375 ], [ -82.225577432684076, 35.623009392950451 ], [ -82.220221182557452, 35.622418516525421 ], [ -82.215429051961436, 35.624799596031899 ], [ -82.205358617007818, 35.624810817181498 ], [ -82.198506279883418, 35.623498980436381 ], [ -82.194615134296427, 35.624220058832712 ], [ -82.190266879508371, 35.622049174296542 ], [ -82.179462438175534, 35.622850403164691 ], [ -82.162952111561395, 35.635851662902361 ], [ -82.15626889322381, 35.638361794987112 ], [ -82.130693802942332, 35.639422368842702 ], [ -82.116831241051102, 35.641082675288949 ], [ -82.104760569426205, 35.635859975499891 ], [ -82.090675937046754, 35.635212295779112 ], [ -82.082115510690969, 35.633194495662345 ], [ -82.065474860758755, 35.636143860941125 ], [ -82.034406743838247, 35.646134552461362 ], [ -82.007413283058511, 35.634314170699795 ], [ -81.999805937536507, 35.63368434089773 ], [ -81.99494581988931, 35.635633401334609 ], [ -81.985851687818936, 35.643576522248345 ], [ -81.975795488633466, 35.650423658846954 ], [ -81.96393920090722, 35.656515822159427 ], [ -81.952045041236374, 35.670104011182318 ], [ -81.937884730543232, 35.681323236253682 ], [ -81.927523385082949, 35.683456386839723 ], [ -81.905649611454933, 35.685775700608389 ], [ -81.895517289490428, 35.689574860199841 ], [ -81.885384911176956, 35.689655003570529 ], [ -81.870362417448533, 35.695225247308379 ], [ -81.865532238908273, 35.695595318654213 ], [ -81.861168049858136, 35.693565368947453 ], [ -81.856941863009098, 35.691147414215365 ], [ -81.8515246491108, 35.690186484814042 ], [ -81.816817359585031, 35.691548985790782 ], [ -81.791166462304844, 35.702386443447637 ], [ -81.765202517871842, 35.715322946807646 ], [ -81.754475103942909, 35.718088136233831 ], [ -81.737895614504396, 35.718870372948629 ], [ -81.713946991727354, 35.71720067681143 ], [ -81.694277493604801, 35.719458955377917 ], [ -81.673341946041489, 35.717418220271668 ], [ -81.656068524508072, 35.722400475041141 ], [ -81.638536088679885, 35.725177714775505 ], [ -81.634300983704037, 35.725848771857315 ], [ -81.632607941666762, 35.72609679451444 ], [ -81.605530277949541, 35.731160152615011 ], [ -81.589065844975295, 35.728890356967952 ], [ -81.555128969067852, 35.727330788938723 ], [ -81.533262455964632, 35.733671055129001 ], [ -81.514936013883911, 35.736791272963117 ], [ -81.511167912424241, 35.735990321767162 ], [ -81.506368759423097, 35.7318703956227 ], [ -81.499829577432067, 35.729833485617071 ], [ -81.483707993283105, 35.725339568792755 ], [ -81.426424873937179, 35.7059918777408 ], [ -81.410265317416105, 35.70573294416053 ], [ -81.375100120322543, 35.706664082705743 ], [ -81.353569399821353, 35.708460162595159 ], [ -81.344948117602712, 35.709792192111479 ], [ -81.317855236297291, 35.714323283439924 ], [ -81.294469377334281, 35.708472401670974 ], [ -81.289961210328059, 35.707243424880438 ], [ -81.277913797417298, 35.707182473880579 ], [ -81.261929205523757, 35.703001555500606 ], [ -81.258282079828192, 35.702933570540274 ], [ -81.253582927824525, 35.703761586208692 ], [ -81.228855444214844, 35.713721672220061 ], [ -81.215992216284178, 35.719382719693435 ], [ -81.205997028313277, 35.722952760683214 ], [ -81.200778918534311, 35.723673786395032 ], [ -81.176592348421977, 35.720343928115561 ], [ -81.160647011510349, 35.72250300736512 ], [ -81.157182930773018, 35.722084027337573 ], [ -81.154809888201939, 35.723354036396088 ], [ -81.119066131228053, 35.72913321523135 ], [ -81.074974222522002, 35.743255428182984 ], [ -81.039810454893285, 35.757354584381503 ], [ -80.940449574333627, 35.792798945879923 ], [ -80.936306438177098, 35.793886025730174 ], [ -80.893344006923726, 35.804666824044595 ], [ -80.876253437453741, 35.807437143045036 ], [ -80.86124593386846, 35.809905417533834 ], [ -80.841165256637154, 35.81304477951506 ], [ -80.83675510755819, 35.813693858494375 ], [ -80.815392354002313, 35.819717189108438 ], [ -80.789306386335014, 35.830078515887266 ], [ -80.77303166364365, 35.845798525879857 ], [ -80.757894098208084, 35.850086711370082 ], [ -80.749814759172011, 35.855152749848422 ], [ -80.730556848543003, 35.867717514275782 ], [ -80.725651642617891, 35.868927495986092 ], [ -80.710117028264946, 35.869655500330317 ], [ -80.70695889999179, 35.870113495371285 ], [ -80.701976689178636, 35.871616472929212 ], [ -80.686327987354176, 35.880386330823491 ], [ -80.660790906017311, 35.890106199056873 ], [ -80.648087350904817, 35.897419096830227 ], [ -80.631988687705686, 35.903118035560453 ], [ -80.617096066220213, 35.90997695844564 ], [ -80.590230956722792, 35.92303782555755 ], [ -80.561360761865629, 35.941294647317591 ], [ -80.541995996293636, 35.950747585442286 ], [ -80.517139011050958, 35.966708473779235 ], [ -80.478036615397031, 35.996455262862874 ], [ -80.433266281162304, 36.009646499432591 ], [ -80.418433837128347, 36.016291617695963 ], [ -80.390677996502973, 36.029986824193251 ], [ -80.37324345448522, 36.042655966761473 ], [ -80.325337946159095, 36.072666221759619 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I40  F\", \"DIST_MILES\": 18.330000, \"DIST_KM\": 29.490000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -80.325337946159095, 36.072666221759619 ], [ -80.297642137270003, 36.064666200794385 ], [ -80.283313717218661, 36.061817202838249 ], [ -80.269977318770103, 36.06156921500876 ], [ -80.24925468309111, 36.064068237853348 ], [ -80.24229639034364, 36.066158222390825 ], [ -80.23900025715254, 36.065738212648476 ], [ -80.231866977310631, 36.062488188628009 ], [ -80.21278521018921, 36.058307134052953 ], [ -80.199348659563199, 36.058288099615218 ], [ -80.192230359053482, 36.061248082460949 ], [ -80.17414760116489, 36.067966034220227 ], [ -80.162993143860746, 36.068897002617817 ], [ -80.155691843839705, 36.06989998143667 ], [ -80.140310216770018, 36.070124937388165 ], [ -80.077479648120928, 36.080989730820008 ], [ -80.065081141832763, 36.086009677934442 ], [ -80.040666153829648, 36.09073958238578 ], [ -80.006790790210943, 36.095378448514062 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I40  N\", \"DIST_MILES\": 1.420000, \"DIST_KM\": 2.290000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -83.920972554174128, 35.98732260872967 ], [ -83.9173563171681, 35.983042700412682 ] ], [ [ -101.581447951912352, 35.220682335264755 ], [ -101.584377058556228, 35.222330339246305 ], [ -101.579631882787567, 35.220750321199723 ] ], [ [ -83.947585151196748, 35.963732245540562 ], [ -83.94645505168603, 35.961172280882892 ] ], [ [ -83.931364670677027, 35.972513499557159 ], [ -83.928403496043799, 35.969942569375668 ], [ -83.925809385982873, 35.969751618905178 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I405\", \"DIST_MILES\": 105.580000, \"DIST_KM\": 169.910000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -118.466320652145171, 34.291433495525823 ], [ -118.468403784829633, 34.279158069612095 ], [ -118.470547291929108, 34.272925445046866 ], [ -118.470814843772473, 34.265940700436893 ], [ -118.470921623248501, 34.257491992534121 ], [ -118.471702023644269, 34.23566464614931 ], [ -118.471779039538433, 34.221469991837942 ], [ -118.472085375179162, 34.201363495710446 ], [ -118.472735137925483, 34.186562896876119 ], [ -118.467199637380105, 34.1779107042288 ], [ -118.466276534996851, 34.172230775895969 ], [ -118.468146029588041, 34.166044059380695 ], [ -118.467772601917488, 34.160925156720239 ], [ -118.466728637061621, 34.154230245370876 ], [ -118.467933422261282, 34.148737462994987 ], [ -118.469946816629857, 34.142870744995761 ], [ -118.469894256101142, 34.137300875304057 ], [ -118.473958950612612, 34.12651341315086 ], [ -118.47707061813918, 34.122718715944067 ], [ -118.480403238641244, 34.117973054578677 ], [ -118.480670587734451, 34.111355226847031 ], [ -118.475996524060562, 34.104442074032875 ], [ -118.475845158242308, 34.096908241819641 ], [ -118.472543993449506, 34.081676385730091 ], [ -118.465255412885355, 34.072925123717759 ], [ -118.450653207320784, 34.055842619582215 ], [ -118.445361576989072, 34.047068513864822 ], [ -118.43849168654917, 34.039168296052871 ], [ -118.436715853337176, 34.03570027886812 ], [ -118.432850158441269, 34.031294161005533 ], [ -118.417096603801525, 34.012308739032157 ], [ -118.413879547887504, 34.008161666575845 ], [ -118.412239534827307, 34.006094629164203 ], [ -118.409967900793859, 34.003236578130618 ], [ -118.408884544719584, 34.001970551420968 ], [ -118.399361288003504, 33.989553176175775 ], [ -118.398202990293825, 33.987974127733111 ], [ -118.393352880109688, 33.982007917830913 ], [ -118.392331489145562, 33.980736873850098 ], [ -118.37675297311057, 33.97187508695523 ], [ -118.371308918037741, 33.968894812078972 ], [ -118.36923519043917, 33.965702730665811 ], [ -118.368525718076228, 33.963359716870599 ], [ -118.3681900163092, 33.961593717720746 ], [ -118.36716971807337, 33.945461841030763 ], [ -118.367109821949427, 33.930920000705598 ], [ -118.367124829667674, 33.930714003864814 ], [ -118.368895000537407, 33.91642426442543 ], [ -118.369086982267532, 33.901810439207182 ], [ -118.367745026960449, 33.896725419998234 ], [ -118.355049035852446, 33.887386805616373 ], [ -118.351282102839747, 33.884704623053992 ], [ -118.343764398973548, 33.876915286731624 ], [ -118.340859137377123, 33.872802169286501 ], [ -118.336260752867105, 33.868094963735786 ], [ -118.325257422937028, 33.864611387913314 ], [ -118.307947239895213, 33.859903480032138 ], [ -118.289318322595292, 33.859509461127239 ], [ -118.2886546632635, 33.859246427713714 ], [ -118.28334740332609, 33.856888163664543 ], [ -118.279061744253198, 33.85318397040556 ], [ -118.26984266326059, 33.846645540573753 ], [ -118.262202869362085, 33.83929420654205 ], [ -118.2547379990812, 33.831694885719102 ], [ -118.249674771541635, 33.826849665416532 ], [ -118.247599765105889, 33.826254509269958 ], [ -118.226606365544058, 33.825760875374023 ], [ -118.21750851344548, 33.825367173117797 ], [ -118.20622951462046, 33.826587287121939 ], [ -118.202287343576458, 33.825781991716511 ], [ -118.188210202460596, 33.81774299747434 ], [ -118.180309947498969, 33.814424429242102 ], [ -118.166468123310821, 33.81382438047298 ], [ -118.152772557821862, 33.807795408885958 ], [ -118.141455641184365, 33.80587257612784 ], [ -118.136856782916354, 33.803804253296398 ], [ -118.114215696804635, 33.802425573346966 ], [ -118.098094378740527, 33.790454511978773 ], [ -118.092116210548937, 33.785983121046975 ], [ -118.090658948964531, 33.784083035274655 ], [ -118.08781561001058, 33.776731910207857 ], [ -118.085268811966088, 33.774778745051954 ], [ -118.074149558446422, 33.774235933909381 ], [ -118.040372731294127, 33.774500467677726 ], [ -118.038084758319158, 33.773230316895798 ], [ -118.020888694678732, 33.75906124392219 ], [ -118.005987591641812, 33.746537372550925 ], [ -118.003547724136041, 33.744774242694938 ], [ -117.988387950940918, 33.732875656641752 ], [ -117.984879606773106, 33.730415529998993 ], [ -117.970863228276158, 33.720245039947002 ], [ -117.966189490564332, 33.716044900083162 ], [ -117.953400600244379, 33.705382502992535 ], [ -117.948565867438518, 33.701823343147524 ], [ -117.934114280376278, 33.695688753386463 ], [ -117.918550144507819, 33.689153126663932 ], [ -117.906744050247767, 33.687817559488032 ], [ -117.897409855092079, 33.687523093056093 ], [ -117.884498070025046, 33.687446442388257 ], [ -117.871221402371503, 33.687395776838436 ], [ -117.865775623230306, 33.686827520557593 ], [ -117.856220733698208, 33.682882156892269 ], [ -117.842699563030024, 33.676820662744944 ], [ -117.822040262805217, 33.669560864910174 ], [ -117.809952285192978, 33.665806391431083 ], [ -117.793990671637857, 33.663604692365389 ], [ -117.786829529247356, 33.662551383176869 ], [ -117.777121647258753, 33.657783067599247 ], [ -117.768221432163713, 33.653128790682217 ], [ -117.760282593888277, 33.651636465335486 ], [ -117.746296156698435, 33.648469870753942 ], [ -117.734695733505234, 33.645177297790759 ] ], [ [ -122.663512130879283, 45.545042470761807 ], [ -122.674287997373455, 45.535297848016882 ], [ -122.673804404082148, 45.53143356647724 ], [ -122.673722615382047, 45.528270495604666 ], [ -122.673616882424184, 45.526905429240863 ], [ -122.672722511042849, 45.524066948780103 ], [ -122.675962726663627, 45.516190521229518 ], [ -122.676351416515359, 45.513768696097443 ], [ -122.672890053902691, 45.509875902154164 ], [ -122.66896487815815, 45.50742888929296 ], [ -122.661529689248937, 45.505842113036543 ], [ -122.661401895968567, 45.503015022814779 ] ], [ [ -122.250888923772109, 47.831937877292361 ], [ -122.240704687390775, 47.824945289976888 ], [ -122.230586641182853, 47.821148765726633 ], [ -122.221253050018518, 47.815433605616327 ], [ -122.211300204403926, 47.800720169516609 ], [ -122.202094466063485, 47.795707086877613 ], [ -122.184412217312115, 47.786399276256951 ], [ -122.179660365825853, 47.777387168090669 ], [ -122.172389976133388, 47.759904933918961 ], [ -122.178515012952687, 47.726017437109007 ], [ -122.171212764649667, 47.711331141625529 ], [ -122.167783286949899, 47.702750587550909 ], [ -122.172785574932789, 47.680402630915886 ], [ -122.175213325223481, 47.672655642454835 ], [ -122.1748495910754, 47.640955275789125 ], [ -122.176357533100841, 47.632494878773564 ], [ -122.176850377027293, 47.618636002115629 ], [ -122.176565626539741, 47.610453823330772 ], [ -122.172033497965515, 47.604240805742116 ], [ -122.167941132328636, 47.598791988721842 ], [ -122.167550796580983, 47.588590752531104 ], [ -122.162083816453176, 47.581600333892823 ], [ -122.16798558164524, 47.569238814820764 ], [ -122.174749699540286, 47.565064728463348 ], [ -122.182870583171805, 47.551976179333501 ], [ -122.182694326228273, 47.539907019269471 ], [ -122.185935204817909, 47.531267373433685 ], [ -122.186578731112462, 47.520857581521426 ], [ -122.185060629201388, 47.503587798417044 ], [ -122.180407686604667, 47.493915685056493 ], [ -122.181047402022216, 47.49119593687346 ], [ -122.185015938481627, 47.485326609263332 ], [ -122.19177361611959, 47.480061510903177 ], [ -122.194216836066616, 47.471410498626113 ], [ -122.198913264054852, 47.469623541498621 ], [ -122.206465230689119, 47.468955855133458 ], [ -122.225270436441676, 47.467655151523658 ], [ -122.233743348114501, 47.464877890908411 ], [ -122.243347956979491, 47.463051157882177 ], [ -122.25191789856504, 47.4630779937388 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I410\", \"DIST_MILES\": 51.400000, \"DIST_KM\": 82.720000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -98.404040956599104, 29.479521327939562 ], [ -98.40412385876779, 29.459632046802504 ], [ -98.403483782898647, 29.4477234796882 ] ], [ [ -98.403483782898647, 29.4477234796882 ], [ -98.396822600062848, 29.444442622430888 ], [ -98.390108390811676, 29.435762961319217 ], [ -98.389269310469217, 29.423292416460846 ], [ -98.38925419210824, 29.39856531288298 ], [ -98.389483151513048, 29.388904662176728 ], [ -98.404833276724133, 29.340536349965561 ], [ -98.409205346585111, 29.334356554556216 ], [ -98.415720471486551, 29.329456703311209 ], [ -98.427019705657912, 29.324676826451796 ], [ -98.443469066782299, 29.321845856285847 ], [ -98.477771851773568, 29.321836706213006 ], [ -98.491825173132696, 29.321796646022133 ], [ -98.501354385176526, 29.320146664912119 ], [ -98.552953807029951, 29.320007541070463 ], [ -98.568556236301305, 29.319835507938269 ], [ -98.589583794428705, 29.315586596507277 ], [ -98.608306316999489, 29.316606514230056 ], [ -98.614448503167793, 29.320116384041683 ], [ -98.618347632881679, 29.324926218162467 ], [ -98.637719372139841, 29.373224628715466 ], [ -98.649529784866559, 29.397263854838961 ], [ -98.649529906936252, 29.427211906973085 ], [ -98.645966841971756, 29.43365270141436 ], [ -98.62980751474619, 29.453222064200734 ], [ -98.619400309014367, 29.465651650685686 ], [ -98.606369050388849, 29.479691173317487 ], [ -98.600379917031447, 29.482771061791908 ], [ -98.580207451539138, 29.489160812369303 ], [ -98.567588142231898, 29.48945077819458 ], [ -98.561194988402093, 29.490100743722611 ], [ -98.554587847830305, 29.493961599005885 ], [ -98.549254749619081, 29.499589395141676 ], [ -98.542960633950102, 29.508371073933674 ], [ -98.533865425595252, 29.512058926499449 ], [ -98.528609312309015, 29.516079776152623 ], [ -98.517523054329104, 29.520159613747648 ], [ -98.506696788022992, 29.520599578578363 ], [ -98.499334604041252, 29.52047957406727 ], [ -98.479741091220347, 29.520128650915993 ], [ -98.476223998301464, 29.519804673634024 ], [ -98.469425816085419, 29.518370745148047 ], [ -98.462704635120801, 29.516649826177726 ], [ -98.439266020920286, 29.515669937013758 ], [ -98.411090287354369, 29.516009018438947 ], [ -98.40252206472509, 29.516290037148487 ], [ -98.395563896991575, 29.521469883773843 ], [ -98.393824858976132, 29.524288793573778 ], [ -98.397822925971369, 29.5102002600111 ] ], [ [ -98.403483782898647, 29.4477234796882 ], [ -98.411556018978473, 29.454322212359138 ], [ -98.413593076889683, 29.455611158585494 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I43\", \"DIST_MILES\": 179.760000, \"DIST_KM\": 289.290000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -88.050671827069436, 44.56373914096892 ], [ -88.050564814411956, 44.558052112019652 ], [ -88.025021886650677, 44.539333285512505 ], [ -87.989300495950275, 44.527092644088704 ], [ -87.970759666903618, 44.520530804438792 ], [ -87.954431948821224, 44.518612945111471 ], [ -87.948435669288088, 44.516292998858297 ], [ -87.936968056500618, 44.504773112312456 ], [ -87.94056086834297, 44.486931083246184 ], [ -87.946244791394491, 44.472706029763806 ], [ -87.956491049253003, 44.464332938726947 ], [ -87.962534191090057, 44.459041885339808 ], [ -87.961924027791511, 44.453273889593177 ], [ -87.959893895679087, 44.451454906772241 ], [ -87.94291799038615, 44.444546051303263 ], [ -87.917731663929871, 44.434582263870624 ], [ -87.90732510270584, 44.429722350712296 ], [ -87.863131990733166, 44.373654692041924 ], [ -87.844240622171199, 44.346142828505371 ], [ -87.835679881894578, 44.327473884098339 ], [ -87.828660510331133, 44.323373937413713 ], [ -87.793303894914885, 44.314695213321855 ], [ -87.786330539981265, 44.311033265495475 ], [ -87.782797256614813, 44.303823286505441 ], [ -87.782560712176036, 44.276273260898641 ], [ -87.780416068527273, 44.242574235553256 ], [ -87.775265807227498, 44.233404255029264 ], [ -87.761257180559511, 44.220434330758962 ], [ -87.734477096942811, 44.204935493943708 ], [ -87.731119956793734, 44.20116651032145 ], [ -87.731592713437621, 44.153433393167646 ], [ -87.732737614340877, 44.128385324770868 ], [ -87.73087545063261, 44.109415293958797 ], [ -87.729082295448578, 44.091123264344553 ], [ -87.72316207543453, 44.084268293989673 ], [ -87.71254869580541, 44.073446350929494 ], [ -87.706651483648727, 44.066301380094608 ], [ -87.707032316263835, 44.026514284143872 ], [ -87.727372760333211, 43.999994061407207 ], [ -87.733941950083263, 43.979456079904104 ], [ -87.74279219736114, 43.941885135726928 ], [ -87.767412977917331, 43.919534078909251 ], [ -87.770740088565546, 43.91015409914467 ], [ -87.771350104578303, 43.892294161410732 ], [ -87.770984073358619, 43.81821243075288 ], [ -87.766443922111833, 43.80497949018995 ], [ -87.763781833437577, 43.793192538455664 ], [ -87.765146872052014, 43.76249564379772 ], [ -87.763849829109674, 43.75433967506418 ], [ -87.757639662043246, 43.737234937360881 ], [ -87.760447797662025, 43.717078304349521 ], [ -87.760363894698429, 43.675010081405091 ], [ -87.762217966868391, 43.666595232659127 ], [ -87.769405200837355, 43.650596511285237 ], [ -87.771465329474651, 43.612119214848356 ], [ -87.797695033950035, 43.570908901728231 ], [ -87.810581344875004, 43.549707252439369 ], [ -87.81211538051619, 43.54307036884213 ], [ -87.821591590337164, 43.529097595100652 ], [ -87.822476606051353, 43.519617764475392 ], [ -87.83047176523138, 43.501460069124469 ], [ -87.830204425372045, 43.470291028571573 ], [ -87.833966217605834, 43.444759817078811 ], [ -87.837460235072385, 43.43980096081112 ], [ -87.84634034268322, 43.432820149410034 ], [ -87.863140503664468, 43.415711626581299 ], [ -87.87093862656927, 43.412061713326615 ], [ -87.889829015562526, 43.41141266750742 ], [ -87.908925384899632, 43.408582688535112 ], [ -87.921506600398914, 43.404172780974648 ], [ -87.926755642284817, 43.397950955029266 ], [ -87.927640518524726, 43.384981353272003 ], [ -87.925176281863358, 43.36815188320768 ], [ -87.924526963497982, 43.340411744499292 ], [ -87.919628699519563, 43.325825215109212 ], [ -87.919361633924382, 43.320374385037901 ], [ -87.921154229868307, 43.280156623878675 ], [ -87.919566975610465, 43.260107251559113 ], [ -87.921260523095697, 43.221595498898523 ], [ -87.921138353851276, 43.209068914526007 ], [ -87.924297200716595, 43.192124462804813 ], [ -87.917162832185227, 43.176778001245673 ], [ -87.915598744704809, 43.172971133941012 ], [ -87.916086419673618, 43.147909962355364 ], [ -87.914385273648236, 43.140093228481263 ], [ -87.913492153846377, 43.132811473500503 ], [ -87.913599080617516, 43.127188659373907 ], [ -87.918528085109571, 43.11849192700727 ], [ -87.917215898373954, 43.106971314240596 ], [ -87.918367831583907, 43.09981954643731 ], [ -87.92203684999221, 43.094245715876269 ], [ -87.921502769575511, 43.089210884946581 ], [ -87.920282652273357, 43.082734104651486 ], [ -87.92075536605374, 43.060311845727604 ], [ -87.924218411402933, 43.056882944987429 ], [ -87.925721347312731, 43.049024199190811 ], [ -87.925752286854802, 43.044374353158837 ], [ -87.925248256953168, 43.0431233967049 ], [ -87.924684203103752, 43.040182496503661 ], [ -87.924882170411905, 43.037305591023333 ], [ -87.923036095938471, 43.03541366136924 ] ], [ [ -88.975160925723543, 42.527575963592255 ], [ -88.958505646828542, 42.533564884876647 ], [ -88.950792540295936, 42.538874787532876 ], [ -88.897453763696475, 42.570925269764217 ], [ -88.889176616549889, 42.572894265665553 ], [ -88.864975128910501, 42.572234403788464 ], [ -88.813422099957549, 42.571925671984623 ], [ -88.793135751567675, 42.578063643847919 ], [ -88.776358443945398, 42.580966670028261 ], [ -88.764937234782963, 42.582965688517767 ], [ -88.75796312028146, 42.585643670235605 ], [ -88.724668557846428, 42.609255438297666 ], [ -88.725011568662936, 42.609553429540014 ], [ -88.676281454508668, 42.620776617190188 ], [ -88.666836214448679, 42.619795715339052 ], [ -88.654056863866856, 42.613925931589087 ], [ -88.646075657580141, 42.612064032017301 ], [ -88.639064493121012, 42.613384065951671 ], [ -88.631526334536971, 42.618480036500635 ], [ -88.618632059639424, 42.627673981241365 ], [ -88.613382951953128, 42.632838934975524 ], [ -88.606089797630858, 42.63961387955009 ], [ -88.597528597014545, 42.643763883054092 ], [ -88.56639980635299, 42.645015139416586 ], [ -88.558343607137147, 42.647476170615015 ], [ -88.545632295258059, 42.653576185316723 ], [ -88.541238186708853, 42.655895187717356 ], [ -88.534814028279371, 42.660045179746703 ], [ -88.521828712346476, 42.674804066103789 ], [ -88.503639245203033, 42.691893975362014 ], [ -88.484565627035579, 42.706084925743454 ], [ -88.450659487587998, 42.74409468982347 ], [ -88.438650082406824, 42.753215666447772 ], [ -88.428723766170165, 42.766154520191535 ], [ -88.405446000841764, 42.774203598851081 ], [ -88.392688591566767, 42.779833618735005 ], [ -88.388782476193981, 42.784114576316384 ], [ -88.384868375896943, 42.792292460051954 ], [ -88.381488289632529, 42.798915367941078 ], [ -88.370577968579298, 42.8072043187397 ], [ -88.354052531681162, 42.827285101059196 ], [ -88.333627973775052, 42.842551012846805 ], [ -88.321992669418265, 42.851694953876134 ], [ -88.299943089512183, 42.865293912640489 ], [ -88.256539076344978, 42.899152694989567 ], [ -88.218185166398527, 42.91114683668274 ], [ -88.207373917730564, 42.914503878478953 ], [ -88.189322551454566, 42.924577868430447 ], [ -88.181319382931093, 42.92820188075995 ], [ -88.158902862782668, 42.933276010176357 ], [ -88.144056537298127, 42.938094071565004 ], [ -88.127385147001647, 42.941024186130988 ], [ -88.109104818377716, 42.952365172370136 ], [ -88.100079658628644, 42.957892168712114 ], [ -88.095288549906854, 42.958796202084173 ], [ -88.069186885821438, 42.957850484553603 ], [ -88.056071555853634, 42.957690621000815 ], [ -88.048228334214713, 42.955764732892924 ], [ -88.037318150195986, 42.96237473529829 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I430\", \"DIST_MILES\": 12.870000, \"DIST_KM\": 20.710000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -92.339340701241184, 34.821131679716281 ], [ -92.351075108412459, 34.815169778334628 ], [ -92.35699530808742, 34.810530857639655 ], [ -92.37938109442922, 34.798061068658427 ], [ -92.387453387056652, 34.795162116580229 ], [ -92.390787488882083, 34.788421236921337 ], [ -92.391527503028144, 34.784450308528669 ], [ -92.389726397818563, 34.773940499834104 ], [ -92.391511384369878, 34.748660944096095 ], [ -92.391977412671224, 34.738202036733313 ], [ -92.395647555263295, 34.736752048098261 ], [ -92.400453744217216, 34.73179308979082 ], [ -92.401765809808879, 34.712742256709703 ], [ -92.406497013346979, 34.679512544780927 ], [ -92.406672026021326, 34.670868620291408 ], [ -92.402551879666333, 34.661862703280796 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I435\", \"DIST_MILES\": 80.430000, \"DIST_KM\": 129.440000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -94.746613974605225, 39.345024138406998 ], [ -94.75268713450329, 39.346474089746103 ], [ -94.755777197143829, 39.341331180301111 ], [ -94.753915168333535, 39.324425531051929 ], [ -94.76138532605232, 39.306423864396621 ], [ -94.767496464017597, 39.281945336610669 ], [ -94.766962455655275, 39.277944420149453 ], [ -94.7555402331176, 39.255223926878969 ], [ -94.756769271163904, 39.244032113398454 ], [ -94.761781412660568, 39.224753367587788 ], [ -94.762697444470888, 39.218531452003567 ], [ -94.760896427383742, 39.206244634922179 ], [ -94.762506484757139, 39.19510178574226 ], [ -94.763940521281114, 39.193232805286172 ], [ -94.771143690559583, 39.191599793022 ], [ -94.788333098445804, 39.187613763288546 ], [ -94.794436252734954, 39.183580787850943 ], [ -94.810603677222886, 39.171141872124132 ], [ -94.819956954043874, 39.158075995008119 ], [ -94.821079009285697, 39.151363077203328 ], [ -94.820438027212688, 39.143211188235583 ], [ -94.818699025340493, 39.133014332968941 ], [ -94.813548935455543, 39.122543502926568 ], [ -94.811312900144515, 39.116672594987094 ], [ -94.81054291659602, 39.106963729447472 ], [ -94.810099942922989, 39.096793868176334 ], [ -94.802317760775921, 39.08929502080759 ], [ -94.791316546811032, 39.061684473075516 ], [ -94.789187539709374, 39.043701735431306 ], [ -94.784655500813543, 39.010484228513036 ], [ -94.782801468619681, 38.999444396723533 ], [ -94.776072159234928, 38.986726632564441 ], [ -94.776232035318586, 38.971044853151177 ], [ -94.775224870585674, 38.954745091159033 ], [ -94.771211659019244, 38.943987271644929 ], [ -94.757082217569845, 38.943045384975939 ], [ -94.747307891962052, 38.938746494665985 ], [ -94.739670657711741, 38.935496545925226 ], [ -94.723687222391817, 38.935328563199349 ], [ -94.70496371313223, 38.935206582397946 ], [ -94.677786966856587, 38.933985623932848 ], [ -94.66786868472883, 38.932047658511912 ], [ -94.661131492221429, 38.930537684391169 ], [ -94.633046746034609, 38.932795680877362 ], [ -94.625417536541349, 38.932337693793713 ], [ -94.61824534832121, 38.933386686990737 ], [ -94.608236096226207, 38.936816652646094 ], [ -94.607969089435684, 38.936899651843703 ], [ -94.595204761965363, 38.940520618183413 ], [ -94.582615418388684, 38.940417631692213 ], [ -94.542552321527637, 38.939215685345076 ], [ -94.535922150003685, 38.9413286657825 ], [ -94.529788031575606, 38.953142527155997 ], [ -94.519694809976045, 38.967318365074384 ], [ -94.512888657517564, 38.976889256618847 ], [ -94.502779405437906, 38.985285167273467 ], [ -94.501688416207671, 39.006185896592363 ], [ -94.498232314820399, 39.011525824076443 ], [ -94.497561292512302, 39.014444781965437 ], [ -94.50100236830734, 39.021405665062531 ], [ -94.499941288841868, 39.0482762567501 ], [ -94.498667250539597, 39.051507212468273 ], [ -94.490664033434868, 39.058976130882407 ], [ -94.488702975600177, 39.063115076075718 ], [ -94.487985941098103, 39.071438952888087 ], [ -94.491213009775606, 39.078415833493892 ], [ -94.490548984878089, 39.082520774008714 ], [ -94.487313890083044, 39.088722693934727 ], [ -94.488176896558471, 39.096703569249193 ], [ -94.486077823255485, 39.10658742897035 ], [ -94.486428814451941, 39.115647290254699 ], [ -94.498949111757241, 39.129204025593488 ], [ -94.49882006830056, 39.150554700394643 ], [ -94.498118034770116, 39.158652580362613 ], [ -94.493097884634565, 39.168636453908526 ], [ -94.49262380005041, 39.206163886009648 ], [ -94.500741977746586, 39.22653053263484 ], [ -94.506960127411745, 39.242312288434505 ], [ -94.511202127166655, 39.267560895266932 ], [ -94.509759867646238, 39.302621350666101 ], [ -94.512437915472759, 39.307962263209085 ], [ -94.516314025130114, 39.309201237519815 ], [ -94.526331324734329, 39.309793211735446 ], [ -94.57422276899527, 39.310914114027774 ], [ -94.584042070921967, 39.309899114912255 ], [ -94.600720583741122, 39.30790412199967 ], [ -94.660384388384344, 39.307282037457718 ], [ -94.668738640020877, 39.307580018550546 ], [ -94.672194737979581, 39.310410960001555 ], [ -94.68009896068132, 39.318371796608979 ], [ -94.694305391527308, 39.319550748267545 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I44\", \"DIST_MILES\": 627.140000, \"DIST_KM\": 1009.280000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -97.426867609349983, 35.598858208649986 ], [ -97.298492373247456, 35.62418136635219 ], [ -97.231801790095162, 35.638090083078147 ], [ -97.141414808721279, 35.65185447886487 ], [ -97.047433863354001, 35.680981736475601 ], [ -97.016290204367664, 35.690522203999123 ], [ -96.936667197510914, 35.708532478074559 ], [ -96.884823833362034, 35.718894358343171 ], [ -96.786303216225306, 35.736806148974196 ], [ -96.689093306857558, 35.750987044145987 ], [ -96.662649114178265, 35.757709541837727 ], [ -96.61965521218869, 35.770218346849582 ], [ -96.543663115355244, 35.804971707276515 ], [ -96.459081002607263, 35.827832865722122 ], [ -96.387125877789401, 35.849316755173568 ], [ -96.367212308825628, 35.85671878810949 ], [ -96.361002157298387, 35.860568087214162 ], [ -96.347649935998604, 35.87506063736074 ], [ -96.190527160611907, 35.989896956602017 ], [ -96.182103905687043, 35.993506308131437 ], [ -96.15427096890356, 35.99929758513909 ], [ -96.13721844157962, 36.004330370701688 ], [ -96.111910646328482, 36.011548537401161 ], [ -96.10987358248083, 36.012182629941897 ], [ -96.101321313576918, 36.01488001679094 ], [ -96.097910233193744, 36.017451150158472 ], [ -96.083193068929859, 36.039500560897601 ], [ -96.068452928066776, 36.065050893189948 ], [ -96.05386551040506, 36.075492420679346 ], [ -96.050813416256233, 36.077381534032476 ], [ -96.038820115414367, 36.089721895416943 ], [ -96.006713774018479, 36.088956392381263 ], [ -95.98445071887555, 36.089961052860048 ], [ -95.932141075876032, 36.090786296721021 ], [ -95.922084604245782, 36.09545545867303 ], [ -95.909923051793754, 36.104576596368261 ], [ -95.895899389545406, 36.113926777127105 ], [ -95.886666948765566, 36.120807885070356 ], [ -95.868249040349852, 36.133511120573409 ], [ -95.860138631387542, 36.139226223464824 ], [ -95.833373240148575, 36.158204566412245 ], [ -95.82407973739042, 36.162499724895781 ], [ -95.815275250668719, 36.16254194112993 ], [ -95.798497323018623, 36.162573353995541 ], [ -95.7541218694641, 36.162543447793901 ], [ -95.751215703005386, 36.16471448521196 ], [ -95.750574657954672, 36.168238445549768 ], [ -95.744074400342754, 36.173507371574772 ], [ -95.673811776605092, 36.230917566651975 ], [ -95.613179642015709, 36.289616769126688 ], [ -95.60410733558156, 36.295476686827435 ], [ -95.577526448491156, 36.307114528479175 ], [ -95.511430308928723, 36.336507096141304 ], [ -95.473549151561386, 36.346405561650407 ], [ -95.465858930046224, 36.349495399248902 ], [ -95.457725710996527, 36.355243181775997 ], [ -95.435531193488245, 36.379603418366173 ], [ -95.372168025651334, 36.447102156896946 ], [ -95.280941522017855, 36.501520511519864 ], [ -95.27059628622078, 36.510221108865622 ], [ -95.227984078817485, 36.547649170584442 ], [ -95.220339832800022, 36.557486700126233 ], [ -95.186555828568117, 36.604694485251713 ], [ -95.174722488063594, 36.61298392417509 ], [ -95.149406758395486, 36.622564941520444 ], [ -95.136536405435109, 36.629930367635225 ], [ -95.100226486184894, 36.656700555566644 ], [ -94.999387024057668, 36.698398356297915 ], [ -94.980854255800224, 36.706065794735864 ], [ -94.927300996495291, 36.725153285717653 ], [ -94.916054540559216, 36.731354907083158 ], [ -94.909310303291591, 36.73905256286303 ], [ -94.847231980670003, 36.871090788381913 ], [ -94.846689931330616, 36.872338755124183 ], [ -94.845659838082739, 36.87469169232736 ], [ -94.83727522187651, 36.887318311573786 ], [ -94.82686764811929, 36.894200014241775 ], [ -94.769011816458956, 36.917856664668378 ], [ -94.688564531953631, 36.941606226310405 ], [ -94.679401320236366, 36.947435002564703 ], [ -94.639293548104078, 36.97896586622101 ], [ -94.625247357845836, 36.991855414710621 ], [ -94.618052279863193, 36.996207229474905 ], [ -94.612361223273552, 36.998195113940099 ], [ -94.570246980222862, 37.005682367130589 ], [ -94.546945877114467, 37.010472934108357 ], [ -94.541513896719152, 37.013291784326981 ], [ -94.526286146122473, 37.029134141337181 ], [ -94.51464419212553, 37.036362799897844 ], [ -94.498088178893596, 37.044952400915633 ], [ -94.478464793036409, 37.046341413377831 ], [ -94.467729586545659, 37.047321413866541 ], [ -94.446230295316283, 37.054703261428678 ], [ -94.428110039512944, 37.060722137177187 ], [ -94.422868966999388, 37.062572097892335 ], [ -94.363648104711274, 37.082938661117915 ], [ -94.312361943097272, 37.081839815393266 ], [ -94.170558142831808, 37.07963116879742 ], [ -94.167079055101652, 37.080588103518231 ], [ -94.163783941563494, 37.079699093675124 ], [ -94.058357750708879, 37.077047030263948 ], [ -93.889605536679994, 37.074047122491677 ], [ -93.856454685587451, 37.085906406385504 ], [ -93.820427565100402, 37.085684974125968 ], [ -93.80347415222171, 37.093054582337743 ], [ -93.762282222720629, 37.115403535703628 ], [ -93.641833326690161, 37.187108952999687 ], [ -93.637080131135122, 37.187852904209457 ], [ -93.606995831191171, 37.186639743603529 ], [ -93.497296146110088, 37.18502207745815 ], [ -93.41750526456633, 37.201587812976307 ], [ -93.393448407763415, 37.206897416573369 ], [ -93.385102137218709, 37.21248917638259 ], [ -93.361915435004164, 37.233538351341444 ], [ -93.353019170392031, 37.241598031929506 ], [ -93.349181059353157, 37.245378885167433 ], [ -93.34007176840521, 37.250268649379173 ], [ -93.310430696690034, 37.250287319577147 ], [ -93.262897976169569, 37.250187793502541 ], [ -93.224695597770477, 37.250195779348829 ], [ -93.22336854938699, 37.250157786731734 ], [ -93.186501218626915, 37.250015973861515 ], [ -93.179253976903041, 37.251347983713934 ], [ -93.120620185248654, 37.272495870517943 ], [ -93.100340430971087, 37.270776007538728 ], [ -93.076779577861416, 37.270314137071573 ], [ -93.069058300495698, 37.270307176763602 ], [ -93.049892677032716, 37.274438197440837 ], [ -93.041797531214513, 37.283635067031192 ], [ -93.00677756807795, 37.301876912208826 ], [ -92.999621344048848, 37.303498920980566 ], [ -92.98707100867864, 37.302865012422004 ], [ -92.975725784548317, 37.307317002261691 ], [ -92.955598553967263, 37.326245779868728 ], [ -92.940713280195425, 37.333885732552453 ], [ -92.930833153870367, 37.342728631099959 ], [ -92.909905864303639, 37.360478433700024 ], [ -92.896783077724265, 37.398856803412521 ], [ -92.888956045628134, 37.411235622215933 ], [ -92.852014063920294, 37.484095494947802 ], [ -92.83093414146461, 37.524842797926688 ], [ -92.809998931139177, 37.546353454494415 ], [ -92.800789782234915, 37.552804365090473 ], [ -92.706695155904981, 37.604771639089762 ], [ -92.698356075644696, 37.612042511573428 ], [ -92.676695988406436, 37.637917035420571 ], [ -92.650008878626679, 37.669841464211366 ], [ -92.631445798650219, 37.691955079537124 ], [ -92.587958595382631, 37.743212223905026 ], [ -92.57777345668309, 37.750029136969786 ], [ -92.522375348964033, 37.761030261178064 ], [ -92.515340136342033, 37.759649320382607 ], [ -92.500180603354082, 37.753908488871993 ], [ -92.491055390360842, 37.753530525926003 ], [ -92.473935116909615, 37.75766952403572 ], [ -92.456279741309032, 37.758421575016961 ], [ -92.435237518356374, 37.768431508310769 ], [ -92.420528157877612, 37.767321577644935 ], [ -92.4118679777241, 37.767981600260271 ], [ -92.349649725212075, 37.775042738660204 ], [ -92.332460431123096, 37.77958974713431 ], [ -92.318933100381955, 37.778669810418371 ], [ -92.268280055774696, 37.784651936479264 ], [ -92.249206670692303, 37.787802971585833 ], [ -92.24108057001655, 37.79432989169738 ], [ -92.217925169192625, 37.807081739934084 ], [ -92.202353927518658, 37.817141632622807 ], [ -92.188047535942374, 37.817591624138949 ], [ -92.176169319499522, 37.823629566149194 ], [ -92.167906111265594, 37.824831554586957 ], [ -92.161382934802944, 37.825151551277813 ], [ -92.150533593373822, 37.823179566886715 ], [ -92.143575406658911, 37.823599562566152 ], [ -92.1122935747875, 37.825891542221164 ], [ -92.099300378656778, 37.834700480727825 ], [ -92.09318230728131, 37.839960446496512 ], [ -92.085613168645637, 37.843828423835667 ], [ -92.068546009551667, 37.860670329649764 ], [ -92.063861897958958, 37.861719327730967 ], [ -92.030222986986047, 37.863481350712668 ], [ -92.022989849269408, 37.866945341356143 ], [ -92.017824783334902, 37.871141327553794 ], [ -92.013492011906635, 37.889730248949348 ], [ -92.005792979051677, 37.899488220311817 ], [ -91.989511699610276, 37.907221263806427 ], [ -91.976915445712109, 37.910501326998364 ], [ -91.970590409308912, 37.917051340226088 ], [ -91.963076439611939, 37.928831341988506 ], [ -91.955271284357451, 37.931051382610804 ], [ -91.950853234157378, 37.934351398326392 ], [ -91.944200085530738, 37.935381436617035 ], [ -91.940653121930296, 37.942209434893677 ], [ -91.938463087292831, 37.943331444942075 ], [ -91.925942810319825, 37.945471517816053 ], [ -91.854689996792331, 37.94473897727076 ], [ -91.832495321710908, 37.938281135357308 ], [ -91.80325962485837, 37.940593315992245 ], [ -91.793035412363082, 37.943202375818309 ], [ -91.785947432780475, 37.954661398641278 ], [ -91.77853928989461, 37.957240442022467 ], [ -91.772581201437177, 37.960853474377323 ], [ -91.765440023357982, 37.961032521029004 ], [ -91.755147989577608, 37.974250566883399 ], [ -91.743741778124075, 37.976569632109708 ], [ -91.734013575575759, 37.975753687126996 ], [ -91.719067349726004, 37.979369764162428 ], [ -91.666324471582939, 37.987034045309343 ], [ -91.63772903994824, 37.993294195855896 ], [ -91.619029914362784, 38.004993365140592 ], [ -91.613352862092754, 38.007690436399358 ], [ -91.585818485331629, 38.015003692864454 ], [ -91.565585263238447, 38.023243918406081 ], [ -91.55111198965119, 38.023533998725682 ], [ -91.525918701476499, 38.033589268306024 ], [ -91.510965528601204, 38.039613425803488 ], [ -91.496301193142315, 38.042974560095011 ], [ -91.466903817817609, 38.046735879249773 ], [ -91.422338960368222, 38.064264532567222 ], [ -91.406057321326458, 38.072752804405077 ], [ -91.346912023489608, 38.104995834441191 ], [ -91.334337497343569, 38.109925029501021 ], [ -91.312577629317204, 38.120697403496663 ], [ -91.302163300856463, 38.130417653090085 ], [ -91.273583071727288, 38.139985084465636 ], [ -91.243911116300595, 38.158857645196591 ], [ -91.220793649025978, 38.164926857232224 ], [ -91.209036589921297, 38.17765612252277 ], [ -91.186041317649511, 38.19450252047789 ], [ -91.177305270496362, 38.204085727316027 ], [ -91.172094279306322, 38.211867886246324 ], [ -91.155714091845269, 38.224731196961471 ], [ -91.13289399594909, 38.251750776624007 ], [ -91.12309086434729, 38.257190868983614 ], [ -91.11063174706328, 38.266781002084571 ], [ -91.104161911805619, 38.282391132993901 ], [ -91.102186109888507, 38.294098213302377 ], [ -91.099882110876678, 38.297219245889934 ], [ -91.082890740589463, 38.303109386991196 ], [ -91.076131530118388, 38.302472425796616 ], [ -91.070065369087473, 38.303292468752872 ], [ -91.058003181011998, 38.311982595625274 ], [ -91.030948530302609, 38.3209318190316 ], [ -91.021412380500536, 38.329251928518431 ], [ -91.015819351210013, 38.337972015600549 ], [ -91.000132890635086, 38.340002127162485 ], [ -90.994502703638588, 38.342870185062893 ], [ -90.979152341289932, 38.361673400781854 ], [ -90.966273065247236, 38.38138059418057 ], [ -90.945459247602699, 38.388101762945837 ], [ -90.937737995089563, 38.395193846114644 ], [ -90.92884164868822, 38.399183920145489 ], [ -90.925355662733324, 38.414191009685013 ], [ -90.915246336583024, 38.426413122344925 ], [ -90.913094343009249, 38.436392177423038 ], [ -90.912369319972044, 38.437403185725422 ], [ -90.890319424390043, 38.451342359967022 ], [ -90.857282955818718, 38.463873572142845 ], [ -90.850477703387241, 38.474471638818123 ], [ -90.847234580075678, 38.479502669569911 ], [ -90.842237355461535, 38.482493701686167 ], [ -90.823102424665635, 38.483794793133626 ], [ -90.822461393426039, 38.483836796176732 ], [ -90.798763248935998, 38.488493914561907 ], [ -90.773989022830932, 38.487194023623843 ], [ -90.759294294900158, 38.48509208705741 ], [ -90.75711218700711, 38.484722096499723 ], [ -90.735741356608514, 38.492408208051081 ], [ -90.70767137171633, 38.501274345417457 ], [ -90.698623038858031, 38.502792383263497 ], [ -90.678763315911169, 38.505558464864045 ], [ -90.645887194971607, 38.503723623883857 ], [ -90.628162544937169, 38.506744688077688 ], [ -90.59836955547658, 38.502639850915138 ], [ -90.570749541720659, 38.50764893933944 ], [ -90.559374151111584, 38.507244993594519 ], [ -90.548676684703494, 38.516315960962757 ], [ -90.544618462220612, 38.524170906741006 ], [ -90.540963300766037, 38.527553889710425 ], [ -90.533242024505938, 38.528499909376414 ], [ -90.51333626089712, 38.536083904837241 ], [ -90.496192647173999, 38.539257891943166 ], [ -90.48197118340164, 38.539653802689841 ], [ -90.464689596327631, 38.542564668623186 ], [ -90.438542747482174, 38.542984508314184 ], [ -90.435323637397104, 38.54362448245049 ], [ -90.427281331068002, 38.548553383326912 ], [ -90.421330102012632, 38.552494307181441 ], [ -90.406788567776815, 38.559543148630944 ], [ -90.398868298154611, 38.561138085698246 ], [ -90.393970075465091, 38.56822198447469 ], [ -90.389430886821557, 38.572901910205424 ], [ -90.364855042282315, 38.579150704218513 ], [ -90.359644863406572, 38.580489660596342 ], [ -90.34034918768738, 38.587061483550258 ], [ -90.332100866415288, 38.593653370684706 ], [ -90.324059596950434, 38.595122310187989 ], [ -90.319031411589435, 38.598006253027094 ], [ -90.315842296487702, 38.59956221953631 ], [ -90.305915915455429, 38.607131088881012 ], [ -90.302063746271756, 38.612612013486007 ], [ -90.298088595200284, 38.615530962623254 ], [ -90.287834243057247, 38.6186808744852 ], [ -90.266730578514228, 38.618040762548766 ], [ -90.261054396175439, 38.618303728248229 ], [ -90.239980707678072, 38.61660159515116 ], [ -90.221448082183571, 38.613702461827046 ], [ -90.208790666302804, 38.610380383760095 ] ], [ [ -97.460139942512825, 35.541207738375547 ], [ -97.46326001143396, 35.539376762109704 ], [ -97.472637262637434, 35.538232680684075 ], [ -97.47652035326135, 35.536404695480961 ], [ -97.482616500814643, 35.534043701378152 ], [ -97.492374792448572, 35.5358705098838 ], [ -97.499912958592404, 35.531224581813753 ], [ -97.504338037532349, 35.529851555644463 ], [ -97.514012229628989, 35.529584394373636 ], [ -97.525776454354798, 35.528394229188734 ], [ -97.531987534201221, 35.523988276905982 ], [ -97.534573586678704, 35.524052228613634 ], [ -97.539845690435357, 35.52386914134739 ], [ -97.543354744869873, 35.522343133150635 ], [ -97.54474371850921, 35.517148292887057 ], [ -97.547375745533571, 35.514718331853885 ], [ -97.5556918786164, 35.511666289998033 ], [ -97.565580073365794, 35.511529116357231 ], [ -97.575895274743061, 35.51122694070434 ], [ -97.578985129718518, 35.493329448206303 ], [ -97.579793095177365, 35.489262539313046 ], [ -97.578198970432894, 35.481820760619485 ], [ -97.579457865649189, 35.471361010142971 ], [ -97.577855745313542, 35.464357218969695 ], [ -97.57497163145959, 35.460050378547422 ], [ -97.569714384254127, 35.449228742778452 ], [ -97.569729205498163, 35.435161102231767 ], [ -97.57030118415588, 35.432513161056818 ], [ -97.578930223781228, 35.420726332906995 ], [ -97.580090214635945, 35.41794138784654 ], [ -97.577107010587511, 35.406890718270603 ], [ -97.577220946308074, 35.40154985481842 ], [ -97.574542819697712, 35.396282028732649 ], [ -97.574779585401984, 35.37723551634258 ], [ -97.58181353591165, 35.360046871046436 ], [ -97.585529511447362, 35.350873064870747 ], [ -97.585048465230926, 35.348050144680506 ], [ -97.587169501764521, 35.346864150253246 ], [ -97.595813444783772, 35.324712636384767 ], [ -97.598789281893843, 35.304819135622978 ], [ -97.600246052391455, 35.282332723651649 ], [ -97.607753151024966, 35.274054877771967 ], [ -97.630458664399072, 35.266623880957255 ], [ -97.64996001605752, 35.25091516379775 ], [ -97.670941457397973, 35.241195186971623 ], [ -97.70203212750998, 35.226855204073992 ], [ -97.76733334682099, 35.183395433674036 ], [ -97.809302837407913, 35.146686660532971 ], [ -97.832641188352767, 35.133704646701922 ], [ -97.861999492508048, 35.105384844328029 ], [ -97.884323747123062, 35.086246947656988 ], [ -97.891098839858046, 35.081855952861979 ], [ -97.903343949820197, 35.068886052556444 ], [ -97.906807943453941, 35.061936139700585 ], [ -97.908828867613352, 35.051544304635676 ], [ -97.910492813576425, 35.043736426857627 ], [ -97.913726809334918, 35.03743450445188 ], [ -97.924934936749239, 35.028126547225924 ], [ -97.93476910232927, 35.024704499119416 ], [ -97.943802243705591, 35.020645471134152 ], [ -97.957223338103745, 35.004624607537508 ], [ -97.986825599065739, 34.981095927470527 ], [ -98.046693277064293, 34.919516262532987 ], [ -98.092623261031676, 34.890970718637071 ], [ -98.163434024188206, 34.854869145159405 ], [ -98.184209569855895, 34.844028268241679 ], [ -98.226789694156892, 34.817237636270413 ], [ -98.288261617582791, 34.797809668574722 ], [ -98.296104848251758, 34.792377759158065 ], [ -98.304101051688832, 34.782298976892626 ], [ -98.309075183632643, 34.77666909417524 ], [ -98.315576376220505, 34.772038171574764 ], [ -98.342974242290225, 34.759549300844348 ], [ -98.357813696063289, 34.750050444444412 ], [ -98.395991836901089, 34.729420894493089 ], [ -98.398448903730568, 34.727150958509654 ], [ -98.400767930146415, 34.720960167077024 ], [ -98.397700729642082, 34.711271544318997 ], [ -98.391048362220346, 34.698172071664246 ], [ -98.383822883012385, 34.676573910202364 ], [ -98.380983684038128, 34.667350265484636 ], [ -98.382174661710096, 34.660491506483062 ], [ -98.387369684277061, 34.642190136969404 ], [ -98.387430643984501, 34.63778029712698 ], [ -98.387033495683909, 34.624093798037407 ], [ -98.386522422567737, 34.618664998960362 ], [ -98.379847106963055, 34.613855216524556 ], [ -98.37653492300808, 34.608854419058474 ], [ -98.377984835260662, 34.594282938880681 ], [ -98.382745951654982, 34.586268201043346 ], [ -98.392771280055825, 34.577155472797024 ], [ -98.395006317942133, 34.571253674926055 ], [ -98.395548273209201, 34.564044934896131 ], [ -98.399668389130042, 34.557728141939116 ], [ -98.404581561001706, 34.553634263730203 ], [ -98.407702669883008, 34.550907345967147 ], [ -98.410593767794836, 34.547977437135621 ], [ -98.412622811489925, 34.542995608610696 ], [ -98.412500495962618, 34.507306919088983 ], [ -98.41220342852813, 34.495748400286551 ], [ -98.409540333997228, 34.48313803709145 ], [ -98.409517400232986, 34.448955727628586 ], [ -98.408487506058833, 34.370705599405213 ], [ -98.409510570807953, 34.362115022206247 ], [ -98.410120641257976, 34.34095606780339 ], [ -98.437595152849482, 34.252001490894735 ], [ -98.444889430814769, 34.241801762907869 ], [ -98.470441467377441, 34.224471132439234 ], [ -98.4769416973012, 34.217822269769314 ], [ -98.488500938331214, 34.193241766091866 ], [ -98.501868275320504, 34.173722146862175 ], [ -98.51017639478944, 34.16183133813778 ], [ -98.514021410909265, 34.153141490350848 ], [ -98.514708096553065, 34.126482016957638 ], [ -98.516478088839619, 34.121183113210002 ], [ -98.519575148326865, 34.117662167324667 ], [ -98.536024569173506, 34.106996295846372 ], [ -98.54157971304717, 34.103426338982914 ], [ -98.546850850236353, 34.100042380017577 ], [ -98.554572053084613, 34.095151439106303 ], [ -98.557212103639515, 34.091875491610104 ], [ -98.557287954242113, 34.079114747607512 ], [ -98.557654586729953, 34.04718638732119 ], [ -98.557898451097557, 34.035075629501428 ], [ -98.545552585472194, 33.996490463897693 ], [ -98.542356447367069, 33.987476665701742 ], [ -98.532361062816193, 33.973298006696481 ], [ -98.530026951342421, 33.959897296233756 ], [ -98.523243691429769, 33.945767622269209 ], [ -98.514172355504542, 33.927137053638894 ], [ -98.510952234198413, 33.917307274062004 ], [ -98.502711957638738, 33.910215461956824 ], [ -98.50190393043755, 33.909265485714158 ] ], [ [ -98.50190393043755, 33.909265485714158 ], [ -98.500972897621466, 33.9068965396999 ] ], [ [ -98.50190393043755, 33.909265485714158 ], [ -98.499393847216595, 33.907865524907521 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I44  S\", \"DIST_MILES\": 4.110000, \"DIST_KM\": 6.610000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -92.143575406658911, 37.823599562566152 ], [ -92.141843227787021, 37.8167786175147 ], [ -92.14371204762449, 37.804621717023423 ], [ -92.135807649621981, 37.795351785306202 ], [ -92.121821992715525, 37.781389877751785 ], [ -92.117381670587434, 37.770990949002467 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I440\", \"DIST_MILES\": 43.200000, \"DIST_KM\": 69.530000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -86.821547483863782, 36.159957929189069 ], [ -86.823317614698198, 36.140037557711686 ], [ -86.821898606005291, 36.136806654329057 ], [ -86.812896510038797, 36.124459012617024 ], [ -86.807021415808762, 36.122708049223952 ], [ -86.797095275059675, 36.116067226442127 ], [ -86.773512862651188, 36.115861160172166 ], [ -86.770140798641464, 36.116837119177227 ], [ -86.763700663324812, 36.121307959104961 ], [ -86.751242437429184, 36.122799873773893 ], [ -86.728055978896194, 36.126007793609041 ], [ -86.727338950759304, 36.129486681844924 ], [ -86.727048914173878, 36.137016438403485 ], [ -86.727200910326147, 36.138637385851339 ] ], [ [ -92.270413819309582, 34.711762345290012 ], [ -92.248744985650731, 34.717053298270024 ], [ -92.224712226362641, 34.716443195313097 ], [ -92.213770878577932, 34.716862141037574 ], [ -92.205637624989023, 34.715210122579379 ], [ -92.1971003546861, 34.714993086604728 ], [ -92.1841989411448, 34.717282001505069 ], [ -92.180223809268682, 34.720703942554273 ], [ -92.16982445871264, 34.735721710723951 ], [ -92.163018232128024, 34.74682253858407 ], [ -92.161584380204289, 34.771160152527784 ], [ -92.160699450491748, 34.781538981756214 ] ], [ [ -78.693808785860881, 35.803603152022255 ], [ -78.693624790022341, 35.798151259513091 ], [ -78.695074812665041, 35.795332315306609 ], [ -78.700437897160796, 35.783701553683372 ], [ -78.710074031654358, 35.776522721014601 ], [ -78.725684242968569, 35.769511916386755 ], [ -78.73571737650407, 35.766803010760604 ], [ -78.73037631376647, 35.758624186285196 ], [ -78.718963167686809, 35.756584185780014 ], [ -78.707549025277757, 35.751811238219126 ], [ -78.691961824613102, 35.752063159297286 ], [ -78.664358463562479, 35.757082945575725 ], [ -78.648901272147469, 35.753081940880023 ], [ -78.638342135439629, 35.754332874841346 ], [ -78.625203971216621, 35.752741836003146 ], [ -78.617650867852632, 35.756632755278005 ], [ -78.611997793958466, 35.757662719877665 ], [ -78.606343722775307, 35.757342699951053 ], [ -78.595891597663439, 35.753863689459735 ], [ -78.582402426143787, 35.754412624116405 ], [ -78.575467326384342, 35.759692554516 ], [ -78.573430247582195, 35.78219138650104 ], [ -78.574483247036099, 35.788191344785979 ], [ -78.58259333793832, 35.794321302775906 ], [ -78.594350472375325, 35.802882226444794 ], [ -78.605367592808918, 35.814593097243964 ], [ -78.610227645800251, 35.820261026167465 ], [ -78.621266783440674, 35.825181939714653 ], [ -78.625577837406084, 35.827180901899531 ], [ -78.631551907138402, 35.832940807062485 ], [ -78.638678000796375, 35.834329760955434 ], [ -78.66164230762034, 35.836870629960401 ], [ -78.66929441409124, 35.835141627780388 ], [ -78.676504516326872, 35.832040654616733 ], [ -78.683813623028911, 35.826310734885162 ], [ -78.693518773045582, 35.810973007160932 ], [ -78.693808785860881, 35.803603152022255 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I440 N\", \"DIST_MILES\": 0.910000, \"DIST_KM\": 1.470000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -86.736021056403402, 36.142818247150998 ], [ -86.727200910326147, 36.138637385851339 ], [ -86.721494796369811, 36.140518327748921 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I444\", \"DIST_MILES\": 2.530000, \"DIST_KM\": 4.070000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -95.980171331052162, 36.159451932816751 ], [ -95.979705110807643, 36.143102231966985 ], [ -95.98316128551329, 36.142103164964553 ], [ -95.992126797861104, 36.144333906081719 ], [ -95.994598944284334, 36.14531482815979 ], [ -96.003876402065998, 36.144581544075834 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I45\", \"DIST_MILES\": 286.520000, \"DIST_KM\": 461.110000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -95.365556868434183, 29.769888783603072 ], [ -95.367471962141082, 29.765062943547534 ], [ -95.369380028405757, 29.763509000884941 ], [ -95.369608034691026, 29.76352000157166 ], [ -95.374156190990362, 29.75999713251851 ], [ -95.374903262884786, 29.753818329464583 ], [ -95.374697267863624, 29.752519369231319 ], [ -95.372981238348359, 29.75029943106065 ], [ -95.371119190160314, 29.749156456827137 ], [ -95.369471146906477, 29.748214477396537 ], [ -95.362665967595461, 29.744348560989931 ], [ -95.346277531815659, 29.734939760993598 ], [ -95.337907310031127, 29.72877890030853 ], [ -95.336404269617375, 29.727838920272955 ], [ -95.315453699814086, 29.715149180994821 ], [ -95.292138055368412, 29.699709496185388 ], [ -95.28893296610714, 29.69727054733605 ], [ -95.277381645078947, 29.685598809703642 ], [ -95.262550226157202, 29.669450171038953 ], [ -95.251341906307687, 29.652410570633609 ], [ -95.244452710946163, 29.642030789216147 ], [ -95.229201270006072, 29.628110995578361 ], [ -95.205419568462943, 29.606470259005729 ], [ -95.181278838652602, 29.583981467745406 ], [ -95.16894245663859, 29.569672608216624 ], [ -95.141681594658721, 29.540421786993601 ], [ -95.130527234506062, 29.528551827417527 ], [ -95.117045783363736, 29.508015967074837 ], [ -95.114100682880746, 29.50310300045507 ], [ -95.09572775054022, 29.472291448013671 ], [ -95.090707509990011, 29.465951529882751 ], [ -95.068634448908398, 29.438922905271724 ], [ -95.038405043790235, 29.408163332473389 ], [ -95.032972787345983, 29.402623419948327 ], [ -95.01378387325164, 29.383124751980315 ], [ -95.005803512341842, 29.376664849142784 ], [ -94.986133639524397, 29.360944327304939 ], [ -94.953784392315669, 29.346334903394652 ], [ -94.933763549728823, 29.330956460315853 ], [ -94.930963432106992, 29.328736540240129 ], [ -94.929949395229031, 29.32837555505882 ], [ -94.929193357672901, 29.327315591303766 ], [ -94.909157524810752, 29.311376163501997 ], [ -94.903527258930339, 29.304065413875119 ], [ -94.899644115238942, 29.302221484809106 ], [ -94.867598935866553, 29.286486084719819 ], [ -94.863043786448245, 29.285706123627545 ], [ -94.860297699940261, 29.285548137197058 ], [ -94.849471399906093, 29.288657072780421 ], [ -94.838095049040717, 29.288746105602417 ], [ -94.833540912437186, 29.28914710722206 ] ], [ [ -96.792560831205108, 32.795988651893921 ], [ -96.791950833902888, 32.788347903267329 ], [ -96.791690834296901, 32.785400000140356 ], [ -96.789249769808066, 32.78343905452936 ], [ -96.787036709685623, 32.782329081629825 ], [ -96.786167685807101, 32.782001088684368 ], [ -96.782115579036912, 32.778949172198011 ], [ -96.7783084890156, 32.772800359751237 ], [ -96.778179488726906, 32.771671396713757 ], [ -96.776805462251332, 32.767558527357302 ], [ -96.776531457084161, 32.76671155430018 ], [ -96.768558210995906, 32.746048206981946 ], [ -96.761858625159661, 32.724610899837501 ], [ -96.756175238049806, 32.712793277498534 ], [ -96.75298492074208, 32.701032664580239 ], [ -96.747468425294926, 32.685770164180745 ], [ -96.744493217956872, 32.681612295603607 ], [ -96.726723106656479, 32.661730919113673 ], [ -96.719154711826619, 32.656944061394945 ], [ -96.710624287100018, 32.652381194404647 ], [ -96.708076141815013, 32.649765277809259 ], [ -96.679174187314175, 32.591386248237733 ], [ -96.664211268456427, 32.559935334008657 ], [ -96.659717959276477, 32.546385808723272 ], [ -96.658130743132972, 32.532188310920887 ], [ -96.663295708293703, 32.515926890947149 ], [ -96.664256414214435, 32.485379963125503 ], [ -96.660770196525689, 32.472139422576873 ], [ -96.664706083458199, 32.44681130356367 ], [ -96.660029828268009, 32.433230775171623 ], [ -96.658381725211257, 32.426982992303806 ], [ -96.660074675515816, 32.415962375545661 ], [ -96.659075602456468, 32.410992548332565 ], [ -96.647309971062498, 32.378251688022594 ], [ -96.638421614987806, 32.367132076379441 ], [ -96.63128033489933, 32.358904364252588 ], [ -96.615616662428749, 32.334533217841567 ], [ -96.604774210704292, 32.319304752810041 ], [ -96.595778865417813, 32.309986081495765 ], [ -96.545706202066697, 32.287045904430499 ], [ -96.525075513177853, 32.27738725298299 ], [ -96.51268509672488, 32.271344471479239 ], [ -96.508068912228936, 32.265946663980586 ], [ -96.473651326498043, 32.199470992922755 ], [ -96.467600851829388, 32.152711633789657 ], [ -96.446000861052141, 32.118761904761755 ], [ -96.441750600897478, 32.101451537993121 ], [ -96.44106455619054, 32.09823265571643 ], [ -96.438981399904179, 32.085064135003229 ], [ -96.440827439144655, 32.079903309575009 ], [ -96.445130569082082, 32.074273487272748 ], [ -96.451981774354763, 32.064763786666745 ], [ -96.45201274825628, 32.060002954546185 ], [ -96.443047237254163, 32.03117203059216 ], [ -96.4246822364465, 31.98609780471422 ], [ -96.42058491969415, 31.964158671334804 ], [ -96.420401861004493, 31.956967946820999 ], [ -96.424735884698748, 31.937248666690348 ], [ -96.425086844730856, 31.929887944734958 ], [ -96.422827763859601, 31.930587934672833 ], [ -96.410101211399848, 31.920878398465543 ], [ -96.388280293382223, 31.907350074616353 ], [ -96.354778918016464, 31.889392005231276 ], [ -96.344524470621067, 31.878991476857937 ], [ -96.339733261608814, 31.873961703685193 ], [ -96.333995020178051, 31.869281924117136 ], [ -96.309443053058985, 31.859491477310467 ], [ -96.285432031314159, 31.834153618526479 ], [ -96.276734628791388, 31.817795305264482 ], [ -96.244491330825099, 31.788535660568087 ], [ -96.231070837305921, 31.779507110628316 ], [ -96.211119096253626, 31.762257912819901 ], [ -96.185590033307406, 31.735517924316134 ], [ -96.181835859478042, 31.731148062628737 ], [ -96.176334494451694, 31.715008511789534 ], [ -96.165935848210296, 31.687900271061793 ], [ -96.158374082721522, 31.641440495062547 ], [ -96.156015588980551, 31.603980454632836 ], [ -96.149187138436261, 31.582762030890311 ], [ -96.098746730703283, 31.503924288786095 ], [ -96.09088811477541, 31.480202903484365 ], [ -96.087042799281718, 31.468315208536698 ], [ -96.084715613961464, 31.461404385977424 ], [ -96.076200189658564, 31.451055676297283 ], [ -96.04696280202451, 31.418227597577406 ], [ -96.021906489641054, 31.380317602551937 ], [ -95.998230529483209, 31.294828690204533 ], [ -95.987792926377864, 31.273709223026426 ], [ -95.988365704731677, 31.258050582145444 ], [ -95.988883591235052, 31.249671776146737 ], [ -95.993957473956698, 31.233961200512113 ], [ -95.996795166884937, 31.210121865418085 ], [ -95.975751136165243, 31.122773370326691 ], [ -95.965191514438345, 31.104283898667799 ], [ -95.961254196941397, 31.092419231219989 ], [ -95.944361853768527, 31.043845574357977 ], [ -95.922464641702703, 31.013678386592815 ], [ -95.900360654027111, 30.983419125695796 ], [ -95.884087105435441, 30.965009546935384 ], [ -95.87523682122999, 30.958188701653604 ], [ -95.79075329609384, 30.909920797642339 ], [ -95.772488805734667, 30.888572299583338 ], [ -95.748287214505069, 30.858720988353038 ], [ -95.716327627827525, 30.83527025300506 ], [ -95.678995962972763, 30.796221875799521 ], [ -95.650064418095766, 30.776582114980624 ], [ -95.607766611117867, 30.748838480300975 ], [ -95.595254361041782, 30.74064268699664 ], [ -95.595803372968618, 30.739671727940745 ], [ -95.592545306919988, 30.738902731894026 ], [ -95.575134961063199, 30.725653112931429 ], [ -95.569725856248809, 30.718323362231651 ], [ -95.55184951164965, 30.693103256509463 ], [ -95.527244020973143, 30.680864635147046 ], [ -95.520270883054408, 30.676294794429385 ], [ -95.514891781326824, 30.667475142659452 ], [ -95.51038269854746, 30.657376553121111 ], [ -95.502623621170414, 30.567149387650534 ], [ -95.497718558064051, 30.5473552410884 ], [ -95.494422525560751, 30.53516076544641 ], [ -95.490637489062451, 30.51881146943763 ], [ -95.491164503999642, 30.508834898228457 ], [ -95.496466278625547, 30.469933499315644 ], [ -95.495336912957924, 30.435234915287253 ], [ -95.486997461440225, 30.404346200688078 ], [ -95.486334329369896, 30.392708679975492 ], [ -95.483761821501787, 30.348488505203584 ], [ -95.478215557913344, 30.333598144868102 ], [ -95.47144822097907, 30.314759959108731 ], [ -95.4624977379233, 30.28776113333641 ], [ -95.457622546074958, 30.279935490953342 ], [ -95.457103500567172, 30.276922620242605 ], [ -95.457157387158816, 30.266901038695092 ], [ -95.45743919090981, 30.244791913768388 ], [ -95.458858206943063, 30.237323151918922 ], [ -95.45676810545109, 30.212703981254673 ], [ -95.449259795525379, 30.15699584674109 ], [ -95.443179565484911, 30.126746844912709 ], [ -95.441378498605204, 30.119028096934926 ], [ -95.436488347450762, 30.110506374840252 ], [ -95.435641311393169, 30.105577533329793 ], [ -95.435297261515359, 30.091019000205229 ], [ -95.43684627806654, 30.081917293554515 ], [ -95.435931234673461, 30.075247506733721 ], [ -95.42941494761331, 30.038519665278319 ], [ -95.429033885580992, 30.02131921031712 ], [ -95.428178829177924, 30.01075054211347 ], [ -95.419237808411424, 29.96585190512636 ], [ -95.417955877709829, 29.952481316553065 ], [ -95.414178857133265, 29.941302647394302 ], [ -95.413995855984496, 29.940781662783294 ], [ -95.413804854828641, 29.940232679008759 ], [ -95.411684854016883, 29.932652905586789 ], [ -95.412280147571863, 29.898212984877187 ], [ -95.412119216093572, 29.889094269108941 ], [ -95.410975294420751, 29.87524369657643 ], [ -95.401995171358635, 29.858625173705118 ], [ -95.38106781896424, 29.82876701013361 ], [ -95.37549778298424, 29.813975447592821 ], [ -95.371812795519958, 29.799867872606683 ], [ -95.371774884746429, 29.788958214281056 ], [ -95.368547845098206, 29.782797392604969 ], [ -95.368814913069968, 29.775507622287304 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I459\", \"DIST_MILES\": 33.140000, \"DIST_KM\": 53.340000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -87.027550769680957, 33.34291220978912 ], [ -86.997788036194521, 33.332574317071796 ], [ -86.983337719028384, 33.333852210829789 ], [ -86.956527113752614, 33.333948084112038 ], [ -86.926505462182348, 33.337822819438237 ], [ -86.912421173450596, 33.342171610321408 ], [ -86.887838616856158, 33.34220249139458 ], [ -86.867071180651877, 33.347371216746097 ], [ -86.858663015616031, 33.351281042328907 ], [ -86.851399886437378, 33.356757818677266 ], [ -86.835331609634295, 33.370529260450802 ], [ -86.806721044854214, 33.384589610496839 ], [ -86.784961603233668, 33.393828156208698 ], [ -86.763919202981754, 33.40759853368489 ], [ -86.730700657893763, 33.442288174239728 ], [ -86.717638437619684, 33.453807751234287 ], [ -86.705454281970162, 33.472255079948255 ], [ -86.705325299318943, 33.475496962707176 ], [ -86.709185447987267, 33.485735593089728 ], [ -86.700999357898866, 33.500101072913452 ], [ -86.695895315851303, 33.505044991447832 ], [ -86.682284140930648, 33.514154837132487 ], [ -86.652345686851774, 33.530725539009246 ], [ -86.643480585775507, 33.538705392719528 ], [ -86.642076630467145, 33.544824283967273 ], [ -86.641633669337807, 33.548734214781724 ], [ -86.638376905859175, 33.573772769265283 ], [ -86.648425401188959, 33.593712438169895 ], [ -86.653704585999634, 33.597992374992948 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I464\", \"DIST_MILES\": 5.600000, \"DIST_KM\": 9.020000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -76.287927812394585, 36.835877059961085 ], [ -76.286774769954263, 36.833981068273125 ], [ -76.287705752930265, 36.829270100567577 ], [ -76.281106551188529, 36.823117118956787 ], [ -76.28012950414373, 36.820019135401076 ], [ -76.282616514603106, 36.814278178880407 ], [ -76.278710360514353, 36.80596921918243 ], [ -76.284692334732071, 36.786328359995444 ], [ -76.283410269440168, 36.781689385236177 ], [ -76.277421084270429, 36.774559412315668 ], [ -76.26804379581192, 36.76277945902504 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I465\", \"DIST_MILES\": 32.530000, \"DIST_KM\": 52.360000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -86.275243798630214, 39.805448089398645 ], [ -86.275633092839144, 39.823532731593616 ], [ -86.276412574132664, 39.852787155375907 ], [ -86.274382672220298, 39.863784913887706 ], [ -86.268797556685058, 39.869185743996539 ], [ -86.269859237944942, 39.910704918204935 ], [ -86.268348394626003, 39.924299624439797 ], [ -86.266380367685031, 39.927099542190319 ], [ -86.262840265052375, 39.928640464644772 ], [ -86.259742141936499, 39.92783944057544 ], [ -86.250784785899469, 39.925516372079187 ], [ -86.241431438303181, 39.92352931952923 ], [ -86.228568006574179, 39.923651191159998 ], [ -86.183567502357391, 39.924588729748457 ], [ -86.178784367989863, 39.926621636337451 ], [ -86.17249020127241, 39.930138493164861 ], [ -86.158023711928081, 39.930230346851452 ], [ -86.143367210662689, 39.929879209148275 ], [ -86.132059791468251, 39.926846169979171 ], [ -86.112185059528954, 39.921491106467229 ], [ -86.081299923927531, 39.912076047867629 ], [ -86.070282487905175, 39.905164123261613 ], [ -86.054054852911534, 39.894841245981468 ], [ -86.048927642798475, 39.890324320109627 ], [ -86.047614555648295, 39.885529436143898 ], [ -86.047271264133627, 39.85511224309154 ], [ -86.04629418802638, 39.850187366719631 ], [ -86.035917701654327, 39.832121773868415 ], [ -86.031279483094593, 39.823484974529784 ], [ -86.031164337385462, 39.807178415426051 ], [ -86.035002381330258, 39.799075658803545 ], [ -86.035856352925663, 39.792994828017868 ], [ -86.032767202369953, 39.786277990948619 ], [ -86.030340014848079, 39.772934338471856 ], [ -86.028501841712341, 39.759071704944063 ], [ -86.03344591556268, 39.751373938095895 ], [ -86.042624254867505, 39.738881333313415 ], [ -86.044729368610632, 39.732133531829852 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I465 N\", \"DIST_MILES\": 4.600000, \"DIST_KM\": 7.400000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -86.339015025501979, 39.931102416575875 ], [ -86.320757383733564, 39.93179216364976 ], [ -86.278671864924092, 39.930841627867096 ], [ -86.273018660645363, 39.930696556451949 ] ], [ [ -86.273018660645363, 39.930696556451949 ], [ -86.26866946964148, 39.928400545700015 ], [ -86.268348394626003, 39.924299624439797 ] ], [ [ -86.273018660645363, 39.930696556451949 ], [ -86.262840265052375, 39.928640464644772 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I469\", \"DIST_MILES\": 20.980000, \"DIST_KM\": 33.770000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -84.98001610343357, 41.093157802416798 ], [ -84.974705915239269, 41.073691695608424 ], [ -84.974949916977181, 41.068152661667824 ], [ -84.978284009745025, 41.059630603759416 ], [ -84.991041371404165, 41.0422124748115 ], [ -84.995450492976417, 41.036188430541941 ], [ -85.009038791148001, 41.028132351009234 ], [ -85.094116322615037, 40.992875968457312 ], [ -85.131989008973946, 40.982488844824537 ], [ -85.168236645952817, 40.974607744818407 ], [ -85.195161093467576, 40.96503666255915 ], [ -85.294604894793125, 40.956579230236088 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I470\", \"DIST_MILES\": 38.430000, \"DIST_KM\": 61.840000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -80.840854075397431, 40.067709539745778 ], [ -80.840258069822795, 40.062571612055613 ], [ -80.836099869293179, 40.057803710193149 ], [ -80.824510241676208, 40.057692811492601 ], [ -80.812478618871353, 40.052519982062954 ], [ -80.799392925346382, 40.050052126247586 ], [ -80.75855874563473, 40.04589052933558 ], [ -80.734112374424129, 40.049236656549894 ], [ -80.733319328401691, 40.049507657840039 ], [ -80.731465223250197, 40.049758665766873 ], [ -80.721088634170457, 40.05131570789316 ], [ -80.711704108498878, 40.051631759990116 ], [ -80.702158562330411, 40.053951786259482 ], [ -80.695361209404155, 40.049400887855825 ], [ -80.692210037630019, 40.048671916659352 ], [ -80.676797168294243, 40.050312987195312 ], [ -80.663819450534845, 40.049119081786785 ] ], [ [ -95.692428782397542, 38.993592101833315 ], [ -95.692611801010131, 38.991612138905744 ], [ -95.687637658830852, 38.991822125122255 ], [ -95.676345336962029, 38.992143096658126 ], [ -95.660101814961308, 39.000961902041361 ], [ -95.651434555954822, 39.007252796231541 ], [ -95.639922209698895, 39.015499661659341 ], [ -95.630620923751124, 39.024109530463342 ], [ -95.62338070773481, 39.027180479362123 ] ], [ [ -95.692428782397542, 38.993592101833315 ], [ -95.693756800348254, 38.996511050427458 ], [ -95.705903136327152, 38.997972048370542 ], [ -95.729844799865603, 39.009251912267239 ], [ -95.743791197684359, 39.013119874293402 ], [ -95.746294269050296, 39.014240860130506 ], [ -95.750047375441071, 39.017780807744053 ], [ -95.754274485344141, 39.028790622150112 ], [ -95.758180589027319, 39.03879245266598 ], [ -95.762148697118846, 39.042160393326817 ], [ -95.777125111738258, 39.053211196033068 ] ], [ [ -95.692428782397542, 38.993592101833315 ], [ -95.687652642858552, 38.994191081101448 ] ], [ [ -94.362288824989292, 39.041917887205024 ], [ -94.361456828722467, 39.033282010318146 ], [ -94.359701822321512, 39.020144199123663 ], [ -94.35639076062796, 39.012770313224955 ], [ -94.357206661124565, 38.969096865150412 ], [ -94.360449652099774, 38.951049074578073 ], [ -94.364569732515591, 38.946147120033018 ], [ -94.388213316813363, 38.942146085605422 ], [ -94.406188740679966, 38.93434811718538 ], [ -94.447922819933041, 38.936571942706962 ], [ -94.470666407994429, 38.93797184544372 ], [ -94.508539392565908, 38.938414727777356 ], [ -94.523409774040459, 38.932646783918706 ], [ -94.528948926991845, 38.933337770355088 ], [ -94.542552321527637, 38.939215685345076 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I471\", \"DIST_MILES\": 5.430000, \"DIST_KM\": 8.740000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -84.50343670497449, 39.10640979864074 ], [ -84.500590624623172, 39.103575857290288 ], [ -84.500140613452785, 39.103338863346103 ], [ -84.498691573269056, 39.102587884105006 ], [ -84.495822491656668, 39.100981927572427 ], [ -84.490741349415003, 39.09838800109258 ], [ -84.487102257862887, 39.097968031926484 ], [ -84.486262236622778, 39.09785403931307 ], [ -84.479167038885407, 39.094134144532575 ], [ -84.475863936529763, 39.090785218944738 ], [ -84.469401688272356, 39.076590485162178 ], [ -84.463717522962369, 39.07189159922617 ], [ -84.4654715325251, 39.066874665543622 ], [ -84.469515589411785, 39.060927729420506 ], [ -84.469515551071169, 39.055015821919397 ], [ -84.468775517083458, 39.052428867907139 ], [ -84.460695286807237, 39.045677034698329 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I474\", \"DIST_MILES\": 14.180000, \"DIST_KM\": 22.820000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -89.667641750644833, 40.742488172256898 ], [ -89.676057467992578, 40.725398321398465 ], [ -89.67632476220021, 40.71179844252314 ], [ -89.675608107393515, 40.693774603587762 ], [ -89.67573722599046, 40.688334652025091 ], [ -89.6751883752639, 40.680083725914066 ], [ -89.673258380193985, 40.676062762915919 ], [ -89.644173613403666, 40.656756954164088 ], [ -89.622147219951216, 40.634891167155764 ], [ -89.616563086348563, 40.631054206100302 ], [ -89.612556947126777, 40.630237216479507 ], [ -89.557470775311131, 40.63032925609258 ], [ -89.518323163332582, 40.633037259359298 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I475\", \"DIST_MILES\": 52.250000, \"DIST_KM\": 84.080000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -83.573848900288837, 41.677669305019016 ], [ -83.579287990332048, 41.675517394331287 ], [ -83.587002173750051, 41.677856433961104 ], [ -83.605106618679045, 41.685439501483586 ], [ -83.613857796315344, 41.685375593075619 ], [ -83.623127993982678, 41.686389674589932 ], [ -83.629193132807018, 41.688213712071835 ], [ -83.653012612268157, 41.687782967232621 ], [ -83.663327836455181, 41.689846049168658 ], [ -83.682157215894648, 41.689675249756789 ], [ -83.692907415279109, 41.68675339611157 ], [ -83.694853442312521, 41.684693439515804 ], [ -83.694021369922694, 41.675625533098575 ], [ -83.694540124790407, 41.633619010645432 ], [ -83.691594930669083, 41.612897222272032 ], [ -83.691609800701443, 41.591878461373618 ], [ -83.691609675806745, 41.571733690428537 ], [ -83.686406430030644, 41.553281875639037 ], [ -83.682919289580937, 41.545244953515109 ], [ -83.675031035747367, 41.537562011714556 ], [ -83.664509733417503, 41.533312022258755 ], [ -83.636172989082795, 41.532327925929366 ], [ -83.625506718027395, 41.533071874473841 ], [ -83.621653605343738, 41.531641880098448 ], [ -83.620944562955685, 41.528924916474303 ] ], [ [ -83.763052348379148, 43.096263622047317 ], [ -83.733876400262517, 43.09634348994107 ], [ -83.717770905475803, 43.099864434602878 ], [ -83.694248076186938, 43.098995416597489 ], [ -83.689670884679856, 43.097125430628559 ], [ -83.686679722032196, 43.09378746157892 ], [ -83.682994120601435, 43.067046732601575 ], [ -83.677751837337837, 43.061290785159663 ], [ -83.673929625564213, 43.056796826401396 ], [ -83.673616483626219, 43.049396901950132 ], [ -83.676447456225901, 43.042327978312031 ], [ -83.677538292221413, 43.030945096766743 ], [ -83.68081830911008, 43.02550215730421 ], [ -83.684175316180813, 43.019356225313857 ], [ -83.682154167321741, 43.014897268336348 ], [ -83.681215113434732, 43.013687279437157 ], [ -83.679063980319469, 43.010369310453413 ], [ -83.675027665945905, 43.000496405972477 ], [ -83.677811609297621, 42.995503433149523 ], [ -83.682847619852424, 42.990456460631236 ], [ -83.68237407970372, 42.974156525072331 ], [ -83.682075163241464, 42.945946637431952 ], [ -83.682045104181938, 42.944138644625177 ], [ -83.680663321789936, 42.921120735335222 ] ], [ [ -83.813763142848643, 32.958295117012007 ], [ -83.812588173222068, 32.953424287634377 ], [ -83.812146290251349, 32.943754599166986 ], [ -83.792096274874964, 32.90768001488015 ], [ -83.791378276085425, 32.906437063764699 ], [ -83.767620178501389, 32.878480261185793 ], [ -83.744046036136268, 32.856439151746159 ], [ -83.733410207362226, 32.833215786666308 ], [ -83.725827512051396, 32.809661421085003 ], [ -83.721508607775874, 32.800490648319865 ], [ -83.719418863009821, 32.786842020292333 ], [ -83.710653019959153, 32.771591357683121 ], [ -83.711889453511588, 32.753971867219349 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I476\", \"DIST_MILES\": 131.670000, \"DIST_KM\": 211.910000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -75.68007433039206, 41.482956697652803 ], [ -75.682905350766831, 41.48307463273261 ], [ -75.682256364955236, 41.489082563041087 ], [ -75.69179341659914, 41.48372342473138 ], [ -75.702512462484989, 41.475418309446127 ], [ -75.704458454655452, 41.470001348394682 ], [ -75.700918418269026, 41.466854472139609 ], [ -75.687940309276854, 41.459957850479796 ], [ -75.685926289362556, 41.457714925079799 ], [ -75.68566727694629, 41.454391977665161 ], [ -75.691679282937926, 41.445675977690975 ], [ -75.701032309034957, 41.438309895426926 ], [ -75.704069299577057, 41.431625934799541 ], [ -75.717474310220155, 41.417644888233404 ], [ -75.720892292621755, 41.410103942359029 ], [ -75.727956294148797, 41.403450917341608 ], [ -75.732664254429835, 41.39132002967871 ], [ -75.731619227365726, 41.386819122114879 ], [ -75.721006145252076, 41.378125447812359 ], [ -75.718527065015977, 41.362332739438287 ], [ -75.715032025930043, 41.355714900328159 ], [ -75.709950984211389, 41.348860087853232 ], [ -75.707623953619432, 41.342672219060425 ], [ -75.708798937269137, 41.338167269613152 ], [ -75.717740934813065, 41.333876199651897 ], [ -75.744137882812979, 41.315107118719652 ], [ -75.755452885197016, 41.309629132336539 ], [ -75.764119890169937, 41.303652233600658 ], [ -75.765332835933293, 41.293337413205499 ], [ -75.765431831426966, 41.292482428106894 ], [ -75.770482751652793, 41.274782737384413 ], [ -75.773022741283953, 41.271009803830168 ], [ -75.779400749629758, 41.267401868414858 ], [ -75.78011873914987, 41.265043910124589 ], [ -75.778935709110627, 41.260851983665063 ], [ -75.76924663334178, 41.255405076178555 ], [ -75.768712600004676, 41.250072169217781 ], [ -75.786854668350543, 41.237983361739687 ], [ -75.796475714178428, 41.22758451605052 ], [ -75.799573730037324, 41.220569618155935 ], [ -75.803731756334614, 41.215392690528397 ], [ -75.804097758226135, 41.211864741617767 ], [ -75.795773694949304, 41.205024853118644 ], [ -75.793606672622701, 41.196994976760784 ], [ -75.791035643457633, 41.187313127662264 ], [ -75.7788215172192, 41.172066392228302 ], [ -75.77514346849469, 41.163773533328431 ], [ -75.777585439096185, 41.133004007984155 ], [ -75.776105413202032, 41.127923094453173 ], [ -75.773022369155115, 41.123716175413769 ], [ -75.754620110675276, 41.109487500218698 ], [ -75.749432031602836, 41.103841625436239 ], [ -75.743146026028441, 41.096265843499729 ], [ -75.735501010145143, 41.083388174279179 ], [ -75.731328013810213, 41.079897295718936 ], [ -75.723675031407666, 41.076605466041073 ], [ -75.700207108276487, 41.071707902514433 ], [ -75.689343134317085, 41.064277200001449 ], [ -75.645856251972575, 41.022358658748637 ], [ -75.636700278726636, 41.009500053750195 ], [ -75.628857013730652, 40.979947993340097 ], [ -75.628734895637777, 40.971812249011208 ], [ -75.633983586539813, 40.952559772329053 ], [ -75.648059038453013, 40.919483622759124 ], [ -75.644709909969023, 40.909461986453962 ], [ -75.639208835907652, 40.902573275490852 ], [ -75.639483735733123, 40.895733488262152 ], [ -75.653925513048151, 40.884602667424602 ], [ -75.656001461080265, 40.881562740731376 ], [ -75.657023376975758, 40.875950910009507 ], [ -75.650050173455654, 40.859762509646231 ], [ -75.659837935789668, 40.84568285898186 ], [ -75.667360816082649, 40.839094996460531 ], [ -75.678514652438892, 40.830054183587841 ], [ -75.676691491455642, 40.818133595991789 ], [ -75.672708392754203, 40.810233893198557 ], [ -75.674181259408698, 40.801036183565252 ], [ -75.673242196966058, 40.796394344661856 ], [ -75.668123144868161, 40.791664542677459 ], [ -75.656595106255224, 40.786605800969291 ], [ -75.652772016733579, 40.779553058431297 ], [ -75.649331929204621, 40.772748302950497 ], [ -75.636231722754545, 40.755856933015288 ], [ -75.629281721849779, 40.73801621101957 ], [ -75.628708802035362, 40.722826279223611 ], [ -75.624199833864225, 40.717428337417466 ], [ -75.606850917897461, 40.699987561963979 ], [ -75.602021965137823, 40.686716672696235 ], [ -75.596223023169955, 40.667196831696891 ], [ -75.577234059010081, 40.632708230960105 ], [ -75.577394094852977, 40.615210337193069 ], [ -75.574464098060346, 40.60572743133239 ], [ -75.568933082539601, 40.59620956037908 ], [ -75.557748032080283, 40.577410830568297 ], [ -75.55138499225076, 40.567282987412611 ], [ -75.547928967486627, 40.561821074388803 ], [ -75.515114651807068, 40.525123842892448 ], [ -75.503853513104744, 40.512799125592132 ], [ -75.501328467410346, 40.505444232057869 ], [ -75.498841436893954, 40.50146930908776 ], [ -75.494370364093953, 40.498170421974748 ], [ -75.48921229758956, 40.496301533955588 ], [ -75.477433223873533, 40.494450760859891 ], [ -75.468110075476005, 40.489671985165074 ], [ -75.442237222908091, 40.457807882187439 ], [ -75.425230783016843, 40.438422477128711 ], [ -75.426161768975106, 40.438010465322208 ], [ -75.423399695395204, 40.434550568354766 ], [ -75.415976446704633, 40.422763884937673 ], [ -75.40949860103953, 40.385052575988745 ], [ -75.400586308970901, 40.368619011153832 ], [ -75.383297813959814, 40.336595883400548 ], [ -75.368717215100858, 40.296614855916225 ], [ -75.360272010594826, 40.278430353738969 ], [ -75.345370893701741, 40.248116243362048 ], [ -75.327459826762151, 40.216699490790752 ], [ -75.327039874499391, 40.215829523067754 ], [ -75.323218197609833, 40.21000076284033 ], [ -75.31376622109417, 40.18932950780934 ], [ -75.308799726105775, 40.178103904025015 ], [ -75.303711225393002, 40.166179317298969 ], [ -75.297951471316765, 40.159461613645831 ], [ -75.292191736622954, 40.151622935374768 ], [ -75.285928414540919, 40.131588562761294 ], [ -75.277170908686315, 40.113107198531218 ], [ -75.277582992473342, 40.110891243246883 ], [ -75.282786210855249, 40.107892206032012 ], [ -75.288981401252116, 40.106531108898096 ], [ -75.29219372364696, 40.100084199565131 ], [ -75.299662980373526, 40.098390085981102 ], [ -75.308666583947584, 40.089891111446903 ], [ -75.311596994094671, 40.082578234665561 ], [ -75.321164606388479, 40.075937208676159 ], [ -75.321722152495198, 40.064908477068464 ], [ -75.323972426068437, 40.060968532642079 ], [ -75.342009534487275, 40.053152380258773 ], [ -75.346770947097326, 40.049215390223736 ], [ -75.355866039942185, 40.037069533913055 ], [ -75.360894478892817, 40.033605530070005 ], [ -75.361382862417358, 40.02762767900888 ], [ -75.349184711098474, 40.002070574867176 ], [ -75.342729399769865, 39.990691833139728 ], [ -75.338327132745249, 39.986277950678989 ], [ -75.341707276892421, 39.978434968565288 ], [ -75.341997265666336, 39.973472011572149 ], [ -75.33600791738381, 39.966842168980129 ], [ -75.335503870236352, 39.962131220046544 ], [ -75.337304942441705, 39.957798232770749 ], [ -75.343500218320713, 39.950897207094215 ], [ -75.362735100369235, 39.941665030920646 ], [ -75.365130177148998, 39.9371830482931 ], [ -75.362871975261029, 39.926277199832526 ], [ -75.364443929358799, 39.912773331209834 ], [ -75.36656494633408, 39.904312402355913 ], [ -75.361986694139816, 39.897792525495753 ], [ -75.361505624610103, 39.891891595582329 ], [ -75.356684382205884, 39.886108706941286 ], [ -75.354166262694491, 39.883586758323865 ], [ -75.352030102881812, 39.872776890815409 ], [ -75.342721718817771, 39.867398026389267 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I478\", \"DIST_MILES\": 2.060000, \"DIST_KM\": 3.320000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -74.015966474494448, 40.707339223057545 ], [ -74.015462466491897, 40.704665282327916 ], [ -74.016172427130641, 40.702692317522718 ], [ -74.015691432066475, 40.701563344668045 ], [ -74.011815462389919, 40.691271588292146 ], [ -74.007894543792602, 40.686487718549792 ], [ -74.006109573128896, 40.6833717973402 ], [ -74.004674597609437, 40.680945859079969 ], [ -74.00382061411203, 40.67971689138674 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I480\", \"DIST_MILES\": 44.020000, \"DIST_KM\": 70.850000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -95.95242517841946, 41.226297759992349 ], [ -95.954859300474922, 41.229769762567173 ], [ -95.953753412747474, 41.2390887503146 ], [ -95.953875549615162, 41.252588686407528 ], [ -95.95390553779977, 41.253538666972247 ], [ -95.954348481364377, 41.258692562416208 ], [ -95.954294466745026, 41.259676542022703 ], [ -95.954310457163231, 41.26042752663767 ], [ -95.949640292173584, 41.263239454051252 ], [ -95.934358879803938, 41.262850413701436 ], [ -95.933038845440777, 41.262709412443513 ], [ -95.928651739345398, 41.261537422866667 ], [ -95.92668369612386, 41.260618435725775 ], [ -95.925401669702623, 41.259859447444754 ], [ -95.922303583374145, 41.259958435649501 ], [ -95.92151056126383, 41.259985432595066 ], [ -95.907678161867068, 41.261808351032073 ] ], [ [ -81.988923397207671, 41.378675026575891 ], [ -81.981790140981616, 41.381082051938336 ], [ -81.972298846215267, 41.38830289322123 ], [ -81.970467776005677, 41.388497924657749 ], [ -81.957939299876031, 41.390176126385235 ], [ -81.945632881216113, 41.395974141104183 ], [ -81.931548364960662, 41.399270331121549 ], [ -81.902533388271294, 41.412793506867288 ], [ -81.888395887736138, 41.417077722172991 ], [ -81.876081477629967, 41.422746858075868 ], [ -81.868818215300124, 41.424410005059713 ], [ -81.84916344078944, 41.423796577822792 ], [ -81.834537820929668, 41.420047094228032 ], [ -81.828357582959384, 41.420299257321588 ], [ -81.818751214332394, 41.42077650962284 ], [ -81.779984702887361, 41.420865578357613 ], [ -81.764268158973621, 41.42574792957344 ], [ -81.749680584615419, 41.425455345012637 ], [ -81.741432130444323, 41.423673455690029 ], [ -81.734290676993965, 41.418302606867258 ], [ -81.728049352663888, 41.418432668512786 ], [ -81.69502763669648, 41.41900499661017 ], [ -81.684666101055527, 41.419302098010078 ], [ -81.680469885099811, 41.419467138473237 ], [ -81.66927713901201, 41.411158367044521 ], [ -81.64705888281901, 41.407088646392282 ], [ -81.636415331000123, 41.407637745988495 ], [ -81.598571491028466, 41.414402038824441 ], [ -81.581923845747454, 41.423503091289511 ], [ -81.579100717417788, 41.424221111047487 ], [ -81.564718982354648, 41.424614253471219 ], [ -81.530964218324272, 41.424049606382475 ] ], [ [ -81.530964218324272, 41.424049606382475 ], [ -81.527119014302841, 41.423881647814845 ], [ -81.522266771784942, 41.424190693782286 ], [ -81.505428065634547, 41.429733800428089 ] ], [ [ -81.530964218324272, 41.424049606382475 ], [ -81.529225111533265, 41.423462631338381 ], [ -81.527798031981504, 41.423267648317221 ], [ -81.519672477374684, 41.418678786793912 ], [ -81.514255111619704, 41.41584487593498 ], [ -81.507899585925671, 41.409360017717546 ], [ -81.508471301162672, 41.398774138167894 ] ], [ [ -81.51138403403111, 41.350648684575695 ], [ -81.485625205255459, 41.337140911719018 ], [ -81.472853180585446, 41.324892026472632 ], [ -81.456624101148819, 41.316099095494906 ], [ -81.446468378810877, 41.308035174774709 ], [ -81.43257454131998, 41.302301218721354 ], [ -81.429454331862544, 41.299963242980617 ], [ -81.415979267879578, 41.281473464912374 ], [ -81.398873200651181, 41.268625613731587 ], [ -81.391929819112519, 41.265455647999097 ], [ -81.377983125304368, 41.262491670795178 ], [ -81.371428717198057, 41.255880757578979 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I481\", \"DIST_MILES\": 14.940000, \"DIST_KM\": 24.050000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -76.113130063092299, 43.14164788110201 ], [ -76.086343778499241, 43.137401901846907 ], [ -76.05436046318124, 43.128902890168703 ], [ -76.049851422687595, 43.125552865351743 ], [ -76.048959416867376, 43.121658825606865 ], [ -76.052895460545543, 43.105613642885473 ], [ -76.053620471681427, 43.094779524357385 ], [ -76.05212547566687, 43.063098186631379 ], [ -76.052331480214008, 43.056926119620151 ], [ -76.051728482785094, 43.044329985332475 ], [ -76.059632535241292, 43.033537850139041 ], [ -76.062280551641493, 43.029421799516427 ], [ -76.062211552160733, 43.022707727405738 ], [ -76.064225563716178, 43.01859567837716 ], [ -76.071603603282952, 43.013254603521226 ], [ -76.083489665828949, 43.010035541063857 ], [ -76.09365271490509, 43.003840450899332 ], [ -76.09803973725937, 43.003020431934594 ], [ -76.125947901427011, 43.007914419970568 ], [ -76.134164946378846, 43.006537386420156 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I49\", \"DIST_MILES\": 206.850000, \"DIST_KM\": 332.890000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -93.760410102603416, 32.496490603288869 ], [ -93.755336019675312, 32.490714739788515 ], [ -93.755344046922133, 32.481880964842226 ], [ -93.75580219439729, 32.436952110812364 ], [ -93.749012096040616, 32.421949472054607 ], [ -93.749172107885485, 32.41903154635947 ], [ -93.75150717451065, 32.41305770453144 ], [ -93.751720223865817, 32.39806608625338 ], [ -93.752140407085946, 32.339946565208756 ], [ -93.752155415153538, 32.337368630810836 ], [ -93.752636437474138, 32.333698726453818 ], [ -93.746006362949245, 32.312977225092141 ], [ -93.75002655393898, 32.273607239217306 ], [ -93.749431558213814, 32.268518365733726 ], [ -93.738292414164448, 32.250158778280273 ], [ -93.721386476308865, 32.227118170292158 ], [ -93.707699435507834, 32.213019391366466 ], [ -93.596369520413035, 32.101830040977489 ], [ -93.567675237827757, 32.062512653622832 ], [ -93.553080045094958, 32.04423292677221 ], [ -93.498063965438604, 31.985561766201304 ], [ -93.450386505442395, 31.962522885700849 ], [ -93.444442329352739, 31.953544014373211 ], [ -93.438056151514573, 31.932532368002917 ], [ -93.431815966738469, 31.922072511130377 ], [ -93.426794813930286, 31.917502549889637 ], [ -93.348469389875532, 31.875163466197261 ], [ -93.325244668165539, 31.861024416438205 ], [ -93.248491258159746, 31.82619395188577 ], [ -93.211410996664242, 31.80460323500569 ], [ -93.20684084430728, 31.800704286980665 ], [ -93.166197536425585, 31.74299024143485 ], [ -93.157515237990538, 31.728874758332889 ], [ -93.14726089043161, 31.713588298804691 ], [ -93.125165157260199, 31.688017142242842 ], [ -93.090603039215821, 31.653916124520926 ], [ -93.049311748718537, 31.608418231765604 ], [ -93.014535700082774, 31.570698955576155 ], [ -93.008599519767714, 31.567808968394964 ], [ -92.996804124236192, 31.567028932470983 ], [ -92.980667486719014, 31.557599344405613 ], [ -92.958716620578357, 31.538531058872625 ], [ -92.951117320458252, 31.529961354320587 ], [ -92.946532136475568, 31.527279469094804 ], [ -92.935545691155781, 31.525259632236395 ], [ -92.86848796318651, 31.500171933083692 ], [ -92.827454968207306, 31.474082276736219 ], [ -92.795959543937073, 31.462373984824886 ], [ -92.77305450514956, 31.453373506722322 ], [ -92.718288713094253, 31.407237729314893 ], [ -92.702730920417437, 31.394058376849145 ], [ -92.694910564937175, 31.3911975752887 ], [ -92.668115354088727, 31.38169723584895 ], [ -92.656395881394474, 31.382788355093975 ], [ -92.62735757492861, 31.37229905777545 ], [ -92.603247533576223, 31.367439512651838 ], [ -92.587567828661051, 31.361271893513337 ], [ -92.563457812294459, 31.358500275065946 ], [ -92.541598836711216, 31.349931788183792 ], [ -92.52595017501875, 31.347591043793756 ], [ -92.505251310064324, 31.345522350799502 ], [ -92.500665096132195, 31.342481488163966 ], [ -92.495934886875204, 31.335951677817441 ], [ -92.492081740696932, 31.332971765045219 ], [ -92.462410734899507, 31.324021061383785 ], [ -92.450744227429709, 31.308162517016761 ], [ -92.447357075630237, 31.303113662075923 ], [ -92.447235069444261, 31.302852669475538 ], [ -92.444518928552867, 31.296702843664132 ], [ -92.435813311129778, 31.258922900931751 ], [ -92.429518025423889, 31.24917718340982 ], [ -92.430028997251654, 31.242124368545756 ], [ -92.434073113057508, 31.240094412477124 ], [ -92.454878753314745, 31.236653453899937 ], [ -92.460700924808975, 31.234424499304069 ], [ -92.464340016437376, 31.230485595512459 ], [ -92.468162081123637, 31.221169834675123 ], [ -92.470596082106454, 31.208626163372898 ], [ -92.471022899599603, 31.176505018533764 ], [ -92.452574169008358, 31.154117650829892 ], [ -92.450423073965965, 31.149957765383917 ], [ -92.442228646748077, 31.123787474386166 ], [ -92.444257611188647, 31.107548901222074 ], [ -92.442472463382032, 31.093127286325675 ], [ -92.434217056132709, 31.070949886103971 ], [ -92.414891174820553, 31.03138995677622 ], [ -92.410641013894846, 31.027990051607269 ], [ -92.375681791692358, 31.016299400359408 ], [ -92.329164154911311, 31.000079874221758 ], [ -92.306038304419701, 30.990132120447058 ], [ -92.286712420956093, 30.965081699696658 ], [ -92.280731143715528, 30.957590873551322 ], [ -92.275755912602037, 30.9515320144756 ], [ -92.250127704959411, 30.92161171362428 ], [ -92.227818670502316, 30.8990540694532 ], [ -92.228382090933323, 30.848360209218306 ], [ -92.228657003309664, 30.840064396904072 ], [ -92.226794828161601, 30.831314580955109 ], [ -92.218768294977437, 30.813074938379547 ], [ -92.211351876101304, 30.803023116629191 ], [ -92.189416690323952, 30.780144492014077 ], [ -92.17736903062638, 30.768372681491023 ], [ -92.172417770786069, 30.764580735988872 ], [ -92.120130485664461, 30.724465916253902 ], [ -92.104428884833567, 30.715464876448738 ], [ -92.085202203540788, 30.697585869769441 ], [ -92.079846030064303, 30.69063487977159 ], [ -92.07069081709875, 30.667016972006284 ], [ -92.050228181594804, 30.642605982567698 ], [ -92.048092142253381, 30.636627004791226 ], [ -92.046322279319867, 30.608865166831919 ], [ -92.048855555732629, 30.584306341642911 ], [ -92.053066969991377, 30.54859760237337 ], [ -92.05428803846506, 30.545206634074475 ], [ -92.058484217506589, 30.541269694054193 ], [ -92.063916444545498, 30.536645769126547 ], [ -92.065312529033761, 30.531597813567441 ], [ -92.068311724844463, 30.518417924750636 ], [ -92.077467367181541, 30.47498850396963 ], [ -92.077673425242352, 30.468621601899134 ], [ -92.069563398023348, 30.437427001189082 ], [ -92.06581731503509, 30.431888051578039 ], [ -92.05638706651726, 30.422977102293515 ], [ -92.054273028101619, 30.418897144957711 ], [ -92.05836336298178, 30.394928542197928 ], [ -92.053282322375196, 30.378990736712602 ], [ -92.048261276466832, 30.364109915548106 ], [ -92.023443065130593, 30.290990788621869 ], [ -92.015623078069197, 30.259420189970871 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I490\", \"DIST_MILES\": 40.190000, \"DIST_KM\": 64.670000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -81.693151529797277, 41.474157240493589 ], [ -81.679318891293946, 41.476026364238564 ], [ -81.676541762463202, 41.476346389920145 ], [ -81.665486293316533, 41.479776462742599 ], [ -81.661549103010898, 41.4797765056122 ], [ -81.649036464014742, 41.478128664178783 ] ], [ [ -77.964743890890432, 43.028843022580553 ], [ -77.964156963786621, 43.03453099865056 ], [ -77.962226968299404, 43.037459996938566 ], [ -77.949965856866243, 43.046791030959916 ], [ -77.93485994656244, 43.074420991615213 ], [ -77.931319954522706, 43.080123985866926 ], [ -77.926749910572582, 43.083739997004365 ], [ -77.920546816492816, 43.086262023947889 ], [ -77.901030450004939, 43.089241133341062 ], [ -77.884680169040308, 43.093681214794124 ], [ -77.867010858301967, 43.09804130465907 ], [ -77.8192798149163, 43.093624632042989 ], [ -77.806996566388563, 43.093876709142627 ], [ -77.798939423464518, 43.095699750754264 ], [ -77.791730319450224, 43.099373776813977 ], [ -77.776234142903789, 43.111568808723362 ], [ -77.766254998192679, 43.11693284240998 ], [ -77.757160840102316, 43.119572885313623 ], [ -77.745685590556647, 43.120758944479952 ], [ -77.739185424922368, 43.121658969793586 ], [ -77.731540247884567, 43.124325990975159 ], [ -77.719753034689404, 43.133923995059099 ], [ -77.717838035696985, 43.138775978391877 ], [ -77.717830103878313, 43.145088944864838 ], [ -77.716556183030065, 43.155571895424544 ], [ -77.711361065869454, 43.157711909839009 ], [ -77.691264521856013, 43.157464010879607 ], [ -77.680842243803198, 43.157628061833741 ], [ -77.659608672374972, 43.157308169015586 ], [ -77.636194041992923, 43.156621288818563 ], [ -77.624772750922475, 43.157746340561111 ], [ -77.620697627547216, 43.156247367704943 ], [ -77.620354594770731, 43.153958379790993 ], [ -77.614205414983175, 43.152276417856093 ], [ -77.611084322627676, 43.15130343764995 ], [ -77.606293193174864, 43.150990462727748 ], [ -77.60408112189296, 43.149720479256246 ], [ -77.597053863274951, 43.142507545290584 ], [ -77.586173575773685, 43.142266599422456 ], [ -77.558852888595908, 43.144780722753822 ], [ -77.551260683286969, 43.143975763253401 ], [ -77.548559604857502, 43.143140779814047 ], [ -77.544379487793123, 43.142266803736092 ], [ -77.532980130240091, 43.1359498837788 ], [ -77.525266871421053, 43.129880944075119 ], [ -77.522260729361975, 43.123322983080392 ], [ -77.507329282185367, 43.116728077992207 ], [ -77.507253224061628, 43.110998099120039 ], [ -77.507154188367622, 43.10761511184139 ], [ -77.504590081595353, 43.103384138965261 ], [ -77.498715778006215, 43.089159213505205 ], [ -77.485646150982618, 43.079054265301572 ], [ -77.473041523045282, 43.067274314749589 ], [ -77.470927315106792, 43.055254350673252 ], [ -77.464403982053085, 43.048616372393539 ], [ -77.462397828165223, 43.041601391588387 ], [ -77.457445554330647, 43.034658410173918 ], [ -77.447977079118004, 43.026201430050982 ], [ -77.441789739887767, 43.018057446272415 ], [ -77.439523614286699, 43.014975451770169 ], [ -77.439286539694024, 43.008879463941526 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I490 F\", \"DIST_MILES\": 6.320000, \"DIST_KM\": 10.170000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -81.649036464014742, 41.478128664178783 ], [ -81.630229527421974, 41.476953884259601 ], [ -81.628862777856881, 41.445994311273708 ], [ -81.626398604725196, 41.44380036628958 ], [ -81.602006015342951, 41.428870815881965 ], [ -81.593650534671681, 41.426814928481797 ], [ -81.583725058544275, 41.428287011652309 ], [ -81.581336915652031, 41.427501046267558 ], [ -81.579100717417788, 41.424221111047487 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I494\", \"DIST_MILES\": 42.920000, \"DIST_KM\": 69.080000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -93.447924993487646, 45.091604320797174 ], [ -93.445711746875034, 45.071966220870252 ], [ -93.44761975691334, 45.06690817949255 ], [ -93.451365774583806, 45.056566093612133 ], [ -93.452357548116083, 45.028314917897021 ], [ -93.457018536496406, 45.010823772672467 ], [ -93.460261252096061, 44.971143635130908 ], [ -93.456849795667424, 44.937070615783014 ], [ -93.45155449427557, 44.924714642285878 ], [ -93.448953230783999, 44.907510637734944 ], [ -93.443451876910174, 44.891206657081639 ], [ -93.442848809702625, 44.886705654761698 ], [ -93.429428120678679, 44.864709724331064 ], [ -93.424712934382541, 44.862416757030928 ], [ -93.41415353527411, 44.859067832838392 ], [ -93.394804872591692, 44.859319983179795 ], [ -93.379644363767738, 44.860411103039731 ], [ -93.350179329801833, 44.858652327143361 ], [ -93.334660787359908, 44.857958445378628 ], [ -93.315311168144831, 44.861647605595586 ], [ -93.298350585388363, 44.861635737324526 ], [ -93.247361834830727, 44.861991126872098 ], [ -93.209434486987746, 44.862525318821604 ], [ -93.198105073527287, 44.861930374705153 ], [ -93.156011560637793, 44.861369586724038 ], [ -93.150282371073644, 44.862376615388101 ], [ -93.144994188489108, 44.862796641712769 ], [ -93.135365830555344, 44.861888690677226 ], [ -93.106205788535163, 44.861900837541107 ], [ -93.101970560510964, 44.857040869379553 ], [ -93.096668363173222, 44.856567898193646 ], [ -93.07376382363104, 44.873954961838024 ], [ -93.062991451825752, 44.874661008530474 ], [ -93.035455468865507, 44.874455134710551 ], [ -93.030717327592882, 44.876088148296667 ], [ -93.020914083558324, 44.882294159612869 ], [ -93.016060925199767, 44.883110175804255 ], [ -93.006379609698712, 44.884743207165187 ], [ -93.003540539157669, 44.886505208510442 ], [ -93.001908516187044, 44.888543202956839 ], [ -93.000122489939216, 44.890778196706577 ], [ -92.995095409794246, 44.900650165623588 ], [ -92.984116050968723, 44.91163716519511 ], [ -92.968826526071595, 44.925812178349545 ], [ -92.960189276425353, 44.936856173272645 ], [ -92.958793403988153, 44.948872118719798 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I495\", \"DIST_MILES\": 310.360000, \"DIST_KM\": 499.480000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -70.732523808212662, 41.78377307507516 ], [ -70.752478782363582, 41.794216361468337 ], [ -70.771845813395956, 41.807048783601395 ], [ -70.796788370077834, 41.814857053294013 ], [ -70.829138018386558, 41.840326057714613 ], [ -70.836445483647566, 41.843442838610706 ], [ -70.858100809368892, 41.84896620115267 ], [ -70.877528862357536, 41.859272608191688 ], [ -70.89293685542259, 41.870117123892399 ], [ -70.904897413395986, 41.875525758953309 ], [ -70.921998909565787, 41.882480239287098 ], [ -70.959246386607518, 41.898531097361506 ], [ -70.965554174587027, 41.902646895224919 ], [ -70.997111165942727, 41.923782871910589 ], [ -71.013732313851023, 41.937069344050549 ], [ -71.021803028146238, 41.945240078660802 ], [ -71.023862722042736, 41.94787200718126 ], [ -71.037845310269702, 41.956332583349479 ], [ -71.043955170667417, 41.95754541487743 ], [ -71.134064342940547, 41.963734044735851 ], [ -71.143919708539627, 41.968261758693046 ], [ -71.160740242139596, 41.983055212400764 ], [ -71.166591381963642, 41.987911024039221 ], [ -71.174585094852659, 41.991709789820113 ], [ -71.219507559372119, 42.003164574168892 ], [ -71.224747759729141, 42.006296430837665 ], [ -71.244657801613627, 42.020031881547943 ], [ -71.256984876626831, 42.0262535602821 ], [ -71.266093427369171, 42.030171328902938 ], [ -71.28335549290901, 42.032230912989824 ], [ -71.289251537153319, 42.034027765413569 ], [ -71.29641438111183, 42.036258585405911 ], [ -71.307147564484595, 42.037151328629108 ], [ -71.315287191676774, 42.037792134398472 ], [ -71.346820921580331, 42.040221384740413 ], [ -71.355822503852394, 42.042921157009445 ], [ -71.374954739268645, 42.05515461966219 ], [ -71.397160328254515, 42.062887036626499 ], [ -71.404491265976489, 42.067074828486177 ], [ -71.418687289043987, 42.077275402180767 ], [ -71.427528283864717, 42.090103071972436 ], [ -71.43799488464397, 42.099090733259366 ], [ -71.44669060407081, 42.102958484189323 ], [ -71.458407857734073, 42.107337154927571 ], [ -71.466425792241353, 42.114081888589929 ], [ -71.471277224836641, 42.120459701302366 ], [ -71.476723722429327, 42.131685444462519 ], [ -71.478333510130312, 42.133070389137956 ], [ -71.484779953530847, 42.147536066500521 ], [ -71.488563583407114, 42.154714889446836 ], [ -71.496062579178528, 42.160638629841038 ], [ -71.509198640425083, 42.166352262729148 ], [ -71.536279000911961, 42.189602389766222 ], [ -71.549201830747023, 42.218829736009688 ], [ -71.551162856816688, 42.229896551125549 ], [ -71.552085876654331, 42.235362460526275 ], [ -71.564856727880908, 42.266691797380957 ], [ -71.566581056322903, 42.288805516477382 ], [ -71.566413177155738, 42.292231482877739 ], [ -71.565780661007992, 42.306177344885661 ], [ -71.571204157733249, 42.319662075218481 ], [ -71.575949758290633, 42.332925824165059 ], [ -71.575858002971117, 42.341340734725534 ], [ -71.576759060748415, 42.348748634047944 ], [ -71.590413267724728, 42.363145174421746 ], [ -71.598988239552455, 42.375580851109888 ], [ -71.607516408037441, 42.394859457285797 ], [ -71.6090654457917, 42.405323311523659 ], [ -71.607402920743539, 42.413124264208648 ], [ -71.593313651091464, 42.43100437853623 ], [ -71.588813662061483, 42.441658361373428 ], [ -71.5834207399554, 42.449413394661065 ], [ -71.556860680048516, 42.472629719846879 ], [ -71.539980039125467, 42.494053852133462 ], [ -71.508675089206918, 42.521070171405924 ], [ -71.493732199275044, 42.539754249389084 ], [ -71.486561612238802, 42.546250331607105 ], [ -71.47880401964072, 42.549409476128197 ], [ -71.469077735963992, 42.551667682178085 ], [ -71.441472680406918, 42.558702258053358 ], [ -71.41709349619039, 42.575624599683529 ], [ -71.386765226427798, 42.586589176205401 ], [ -71.356871178036428, 42.602698654390139 ], [ -71.34513940190611, 42.60532790191111 ], [ -71.326099952575319, 42.607342342524788 ], [ -71.320897927865744, 42.607872463609574 ], [ -71.303498369210004, 42.613636800365377 ], [ -71.286381810153642, 42.619851121663338 ], [ -71.272437756329168, 42.627759332092687 ], [ -71.2471209133315, 42.635644828338883 ], [ -71.232171174754242, 42.642809079026016 ], [ -71.229485762294843, 42.644076124829532 ], [ -71.20788450993723, 42.654112500619121 ], [ -71.194696604837986, 42.664202663744831 ], [ -71.185306789032836, 42.670649795298964 ], [ -71.1772825627922, 42.673845949889532 ], [ -71.152827805224561, 42.678920508594253 ], [ -71.14647326052409, 42.682121622456066 ], [ -71.143247102401205, 42.686034640986342 ], [ -71.142957613746461, 42.69622447256247 ], [ -71.139891597761974, 42.704044419954229 ], [ -71.137832314405514, 42.710529363642941 ], [ -71.13748189588074, 42.721980175665777 ], [ -71.14228048881948, 42.735365814198445 ], [ -71.142105730699257, 42.740000738838809 ], [ -71.141441949514387, 42.741812725615368 ], [ -71.138146834294716, 42.746241739108882 ], [ -71.126285712137559, 42.756018898517844 ], [ -71.122861654890201, 42.761996892736427 ], [ -71.12035956032345, 42.772154791978572 ], [ -71.113854491496127, 42.787001725242959 ], [ -71.101779427286687, 42.796694903038862 ], [ -71.093526345055267, 42.800674070246139 ], [ -71.082817821613574, 42.805209299403927 ], [ -71.076013327002158, 42.806125478144246 ], [ -71.052413324397918, 42.802597210428075 ], [ -71.046669571005978, 42.802323379875574 ], [ -71.037569645069368, 42.804249611313651 ], [ -71.031208192942955, 42.807946736451541 ], [ -71.021040848734543, 42.818169870099453 ], [ -71.015663177888143, 42.821522974338286 ], [ -71.000064932621669, 42.828218327540029 ], [ -70.975282602974303, 42.834234983626537 ], [ -70.96201856779669, 42.835074375013129 ], [ -70.950302259919667, 42.83723370153055 ], [ -70.931538620618397, 42.841140222570893 ], [ -70.920318382488929, 42.846744490104605 ], [ -70.912706284283814, 42.851013666834149 ], [ -70.897291016062653, 42.85629707676221 ], [ -70.893279026080066, 42.858487172931007 ], [ -70.893622130351346, 42.862832101536725 ] ], [ [ -74.022481708459424, 40.767156011068622 ], [ -74.010016065899634, 40.762479181553417 ] ], [ [ -74.022481708459424, 40.767156011068622 ], [ -74.024503635565466, 40.762868065555097 ] ], [ [ -74.022481708459424, 40.767156011068622 ], [ -74.034917363481142, 40.773407817193075 ], [ -74.040517208905683, 40.775761738024279 ], [ -74.045980057669652, 40.777558669153848 ], [ -74.056767759710951, 40.780358545928024 ] ], [ [ -73.975326056645343, 40.744531743382097 ], [ -73.971824182587696, 40.746370729697887 ], [ -73.970947220485755, 40.747583711080239 ], [ -73.968986286432099, 40.748048715002611 ], [ -73.96080050809428, 40.743436863313519 ], [ -73.954772684986978, 40.741513942394896 ], [ -73.951934775610823, 40.74144596284728 ], [ -73.949874844564945, 40.741761970439981 ], [ -73.935212286976878, 40.737734148626139 ], [ -73.931977387601819, 40.737105182657544 ], [ -73.92299766306455, 40.734686289961203 ], [ -73.920403734756633, 40.732966340632601 ], [ -73.91196599115311, 40.730028453451098 ], [ -73.907137132088124, 40.7275075337798 ], [ -73.904390214272027, 40.726279575380794 ], [ -73.896333479578445, 40.725512643127928 ], [ -73.8949075269974, 40.725409654494399 ], [ -73.891351649160882, 40.725607674261482 ], [ -73.886407837885557, 40.728163659020197 ], [ -73.880160057978145, 40.728983685469451 ], [ -73.871478380181344, 40.731955688759349 ], [ -73.869006474771936, 40.733115684100099 ] ], [ [ -73.868495491161468, 40.732954690551907 ], [ -73.865290611893727, 40.734183689754317 ], [ -73.852184094557529, 40.73745272015055 ], [ -73.84569934064973, 40.739779723090393 ], [ -73.841030524831154, 40.742262711074019 ], [ -73.837848645459147, 40.743288715096575 ], [ -73.825413081893728, 40.742453818010347 ], [ -73.815205421728962, 40.73893295227451 ], [ -73.804829796332498, 40.738704029609657 ], [ -73.798155036936052, 40.738284084177657 ], [ -73.793096230530779, 40.739322102282458 ], [ -73.786878472407551, 40.740985118281543 ], [ -73.776090894683122, 40.743881146966991 ], [ -73.771872058037175, 40.744659164522588 ], [ -73.761458469939399, 40.747447194149814 ], [ -73.757285639592268, 40.749065198109342 ], [ -73.749198958554089, 40.751148216290837 ], [ -73.744614140330526, 40.75383714744374 ], [ -73.739090358697339, 40.757087065467417 ], [ -73.724113941353821, 40.764338875812868 ], [ -73.720841063779872, 40.764632856998844 ], [ -73.710511463073871, 40.769362735889771 ], [ -73.704499687006589, 40.76919871427399 ], [ -73.697152957907988, 40.767126717788301 ], [ -73.691797163730484, 40.768648671950167 ], [ -73.685770398569289, 40.772047594816662 ], [ -73.669742012728378, 40.77491648968352 ], [ -73.66484420377563, 40.778899412002787 ], [ -73.661922316076783, 40.779631390653975 ], [ -73.649272803326838, 40.785002268429537 ], [ -73.623013824912391, 40.783415202881415 ], [ -73.615918104845434, 40.783388179712787 ], [ -73.606374490520793, 40.779856194212002 ], [ -73.589216172319325, 40.783537090680468 ], [ -73.57667469634869, 40.779082104141295 ], [ -73.555740546831927, 40.782792993109467 ], [ -73.533860451597775, 40.785127900365701 ], [ -73.525826778795619, 40.787370853164767 ], [ -73.50835546955777, 40.795739721084537 ], [ -73.497728903496167, 40.798745673223749 ], [ -73.489001276971848, 40.799485678732474 ], [ -73.476107854190474, 40.797570714588751 ], [ -73.464801379286385, 40.793863762575299 ], [ -73.449437115748225, 40.786626842357137 ], [ -73.444966325115317, 40.785459857061369 ], [ -73.429777041655896, 40.781522905067412 ], [ -73.418569558760794, 40.781003921634529 ], [ -73.374694555773132, 40.788617930178845 ], [ -73.350815658734064, 40.794351937313145 ], [ -73.342584035993426, 40.797345936958088 ], [ -73.326891763583831, 40.802774942122909 ], [ -73.281217032030099, 40.8049760340501 ], [ -73.249662651774315, 40.805414108207202 ], [ -73.217178227720296, 40.809035370354437 ], [ -73.185586826350843, 40.808943637332675 ], [ -73.159755158960834, 40.809225858250024 ], [ -73.135403414398468, 40.812290070398632 ], [ -73.098151401135567, 40.814338402799507 ], [ -73.054734749475699, 40.820434810684567 ], [ -73.020594663128804, 40.823491140101169 ], [ -72.996777070787104, 40.823681366702438 ], [ -72.974149616853737, 40.822182568811371 ], [ -72.917276543194845, 40.832513106804967 ], [ -72.904338471045818, 40.836702225289365 ], [ -72.890812462914312, 40.844060344619983 ], [ -72.877179486419521, 40.849573459734934 ], [ -72.857855950530663, 40.851118624396321 ], [ -72.846877800112125, 40.853490714732018 ], [ -72.80237143540289, 40.871691035235123 ], [ -72.77411482703198, 40.879553229159157 ], [ -72.763403774133735, 40.883967291964225 ], [ -72.7500460351052, 40.8934433438544 ], [ -72.740769721338197, 40.90378844932377 ], [ -72.732034369884147, 40.91499255085899 ], [ -72.723566918408196, 40.9205166812417 ], [ -72.719950149045886, 40.922682738953469 ] ], [ [ -77.174830989707289, 38.79178576653846 ], [ -77.207111597056283, 38.800265540171267 ], [ -77.210483650876043, 38.802088500898535 ], [ -77.222156739590332, 38.818411197209819 ], [ -77.218326523515472, 38.834367938266759 ], [ -77.220226428966427, 38.848680693176078 ], [ -77.220333275411917, 38.865880403845409 ], [ -77.221294101637838, 38.886682052157553 ], [ -77.2174870087362, 38.890847990267034 ], [ -77.215273916355216, 38.897801877950876 ], [ -77.217905840054911, 38.910546658075575 ], [ -77.21656372347428, 38.921822471110808 ], [ -77.210322567355874, 38.931298323877989 ], [ -77.203997395070019, 38.94373012640083 ], [ -77.19547523729986, 38.95270199084333 ], [ -77.191676149584893, 38.959636880495239 ], [ -77.184512059709945, 38.962795840070839 ], [ -77.180949008327445, 38.965610798775643 ], [ -77.179757979499541, 38.968452752659616 ], [ -77.178766937661408, 38.973739664610733 ], [ -77.177110892140448, 38.978847580727255 ], [ -77.172906841233939, 38.981624540863976 ], [ -77.159005716482014, 38.984351518625544 ], [ -77.157007683086789, 38.988098458076045 ], [ -77.157594672558957, 38.991210403891913 ], [ -77.157762634125078, 38.99945026282299 ], [ -77.151376695481858, 39.009879091788001 ], [ -77.147172698902892, 39.012908045864926 ], [ -77.132120592894935, 39.01290807072845 ], [ -77.112382484517425, 39.015861051705897 ], [ -77.107393480028819, 39.019046004096957 ], [ -77.103860459873204, 39.019550001091474 ], [ -77.102205439579024, 39.018623020103867 ], [ -77.084558213053938, 39.006713258976426 ], [ -77.077722155344546, 39.005126298494545 ], [ -77.068887108607512, 39.006290292984836 ], [ -77.061372121208464, 39.013900171458872 ], [ -77.041664988476299, 39.013339214688202 ], [ -77.036598953628925, 39.013019228950583 ], [ -77.027642918421151, 39.016242187061671 ], [ -77.016609842380845, 39.015430220214682 ], [ -77.012322819948892, 39.016189214042107 ], [ -77.004807765468613, 39.015041247262729 ], [ -76.986176529270182, 39.019698194778385 ], [ -76.976662363954418, 39.019199218761834 ], [ -76.971710275671867, 39.018596237196576 ], [ -76.963440136728636, 39.018798246898378 ], [ -76.95252297167508, 39.021400219700865 ], [ -76.945449863064795, 39.022678209470037 ], [ -76.939201755153192, 39.022201227962441 ], [ -76.926383506846406, 39.01799732005437 ], [ -76.916267341560285, 39.018398329655497 ], [ -76.911659251569347, 39.016895362157122 ], [ -76.9023430383819, 39.010585481452608 ], [ -76.895033843388191, 39.00297161781539 ], [ -76.889281697090681, 38.995632758419426 ], [ -76.885916622447823, 38.991855835596105 ], [ -76.870192274956793, 38.97342721538169 ], [ -76.866232147671553, 38.959397494023726 ], [ -76.857762946746504, 38.945008790295297 ], [ -76.851842732967327, 38.917093348150118 ], [ -76.849797666224561, 38.908929512824955 ], [ -76.85030963794236, 38.900255681225097 ], [ -76.847142553363824, 38.891885853531448 ], [ -76.844289478103931, 38.884436007528329 ], [ -76.844495416607558, 38.868769314512953 ], [ -76.852552490920004, 38.857031519796081 ], [ -76.859288568950049, 38.851214611969567 ], [ -76.866948635511193, 38.839682810897649 ], [ -76.874044701296853, 38.830233969542306 ], [ -76.887578868782526, 38.822025080163975 ], [ -76.903670092438333, 38.817726105009392 ], [ -76.919150336969395, 38.819484017015206 ], [ -76.925833441020004, 38.819804987438154 ], [ -76.934256560673063, 38.81786699375192 ], [ -76.944868725146776, 38.818018953384062 ], [ -76.957213896734501, 38.8143339771784 ], [ -76.966560014192012, 38.809269035885222 ], [ -76.970794075674618, 38.808502034430767 ], [ -76.991508384313093, 38.806003003913759 ], [ -76.998405478319498, 38.803604021418522 ], [ -77.016395776600731, 38.795158122606502 ], [ -77.024040918328737, 38.793067139354655 ], [ -77.036263161951979, 38.793224104213891 ] ], [ [ -69.825715087108108, 44.217108523268848 ], [ -69.872227113650339, 44.168127499641713 ], [ -69.967533902829118, 44.126064893287136 ], [ -69.97290291098814, 44.125145765265763 ], [ -70.007597246386865, 44.124804673145768 ], [ -70.035242920293854, 44.124323482308817 ], [ -70.042763068166565, 44.122614203640062 ], [ -70.085905381065785, 44.101700881627053 ], [ -70.114054376169591, 44.082950112205204 ], [ -70.124510387526072, 44.077868772270762 ], [ -70.146185185296972, 44.068038041056454 ], [ -70.155382842753511, 44.066610665864594 ], [ -70.164588613542136, 44.067499239869427 ], [ -70.185333511275871, 44.072247230129676 ], [ -70.191938196304235, 44.07229294198509 ], [ -70.199625421983939, 44.070484644964708 ], [ -70.217814437386295, 44.056865120685146 ], [ -70.263894802419927, 44.039262475878829 ], [ -70.265283322965914, 44.038934426236999 ], [ -70.273466473597566, 44.036401143843939 ], [ -70.285821111396928, 44.030957743645502 ], [ -70.293517093706015, 44.021161598095937 ], [ -70.294057881201525, 44.020455588003813 ], [ -70.305879290627985, 44.005875348593186 ], [ -70.309798540719925, 43.996945347516224 ], [ -70.31165114173875, 43.983574549393907 ], [ -70.31434301851111, 43.979424526905376 ], [ -70.323846418171868, 43.970734325734114 ], [ -70.332142711432255, 43.95330535744165 ], [ -70.342779047849859, 43.897745097994004 ], [ -70.341795078914629, 43.892896238054853 ], [ -70.336517242492121, 43.883966631624766 ], [ -70.326990288885185, 43.866896360963672 ], [ -70.323633759657838, 43.856627706027282 ], [ -70.325043150013897, 43.836956059804656 ], [ -70.317613022278579, 43.811466878383989 ], [ -70.312927925918004, 43.767628967880498 ], [ -70.304323738214094, 43.751859626010692 ], [ -70.30351401094596, 43.732123098727286 ], [ -70.305306056232979, 43.724307205584175 ], [ -70.305724789188531, 43.721579250868274 ] ], [ [ -75.584296692823969, 39.714347985316877 ], [ -75.565627010885493, 39.716870194535169 ], [ -75.557524719839037, 39.716885281082376 ], [ -75.548941411631318, 39.717026373507785 ], [ -75.540136077655319, 39.719735482571792 ], [ -75.521680276810017, 39.735528778049137 ], [ -75.510983764591558, 39.747315975066591 ], [ -75.49057434264553, 39.75851595872583 ], [ -75.476795570924807, 39.779538566474884 ], [ -75.466366538931226, 39.789319409782621 ], [ -75.452297370103366, 39.798924283938824 ], [ -75.451267440548747, 39.803475208761085 ], [ -75.45434275692233, 39.813614018593533 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I496\", \"DIST_MILES\": 11.820000, \"DIST_KM\": 19.020000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -84.669005423007647, 42.719563287763918 ], [ -84.622784645564295, 42.719544203157966 ], [ -84.603282915366947, 42.721497150126361 ], [ -84.593761564309759, 42.723004119422534 ], [ -84.586001291447062, 42.725568082701628 ], [ -84.56858362502858, 42.725934047795015 ], [ -84.567400579744557, 42.725957045441355 ], [ -84.54500771406336, 42.725526008446998 ], [ -84.531869218929643, 42.726574975438993 ], [ -84.521759808789511, 42.724395975882771 ], [ -84.513130473302994, 42.724025963335713 ], [ -84.507110241479396, 42.723995952610089 ], [ -84.504486091668596, 42.718944991246893 ], [ -84.505378974188503, 42.703267127708713 ], [ -84.503119816840851, 42.695965186226616 ], [ -84.502784705616435, 42.685795272984819 ], [ -84.50083860259673, 42.682851294538686 ], [ -84.495345328851911, 42.674844346598348 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I5\", \"DIST_MILES\": 1380.460000, \"DIST_KM\": 2221.630000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -122.995623084131225, 44.84953218766821 ], [ -122.995011310028744, 44.84445076075977 ], [ -122.996126892305213, 44.833800223263985 ], [ -123.011369063107225, 44.816600601567401 ], [ -123.036145399137069, 44.75767280601567 ], [ -123.038768805462013, 44.739401983128261 ], [ -123.040940185206537, 44.716971807141775 ], [ -123.038268615801314, 44.704054027570308 ], [ -123.039015674354673, 44.687952151309695 ], [ -123.04432613257238, 44.671303888783555 ], [ -123.048640288687139, 44.645777888003735 ], [ -123.048406748241277, 44.631716484991529 ], [ -123.048463044833383, 44.627848443543236 ], [ -123.048253788131291, 44.610162984557689 ], [ -123.048240663992004, 44.607430924658971 ], [ -123.047909485497399, 44.557323770872713 ], [ -123.047654351888795, 44.390370155363968 ], [ -123.047428382435257, 44.281648661084638 ], [ -123.047336163151442, 44.201576803917526 ], [ -123.046847445884822, 44.171034821703593 ], [ -123.03204630869152, 44.113347061559502 ], [ -123.030744655510986, 44.106754171666346 ], [ -123.033271673913092, 44.085538119175482 ], [ -123.035890834355428, 44.063463097602813 ], [ -123.036532577990073, 44.045427045131099 ], [ -123.035169064092841, 44.040585159465699 ], [ -123.03096405747786, 44.036783688421878 ], [ -123.021562960743736, 44.036236361070024 ], [ -123.017956509011285, 44.034876295984446 ], [ -123.014333179771882, 44.024105009817369 ], [ -123.011261840074852, 44.017107123427444 ], [ -123.005535984668185, 44.004957633845052 ], [ -123.002804013292021, 44.002641050760573 ], [ -122.999940786432987, 44.001639425693668 ], [ -122.992241968543283, 43.998545017799216 ], [ -122.991643224541349, 43.996111595791987 ], [ -122.997728145184539, 43.969342018971325 ], [ -122.995061192103137, 43.947160724300126 ], [ -123.001027562401404, 43.903072441665032 ], [ -123.000296035009697, 43.870882855071663 ], [ -123.026040433081974, 43.814021142922719 ], [ -123.030116214468961, 43.805463111386828 ], [ -123.033439579581454, 43.798251709103496 ], [ -123.039413100268305, 43.792139841471396 ], [ -123.040494630905101, 43.786654244483664 ], [ -123.045399638292722, 43.776440625227934 ], [ -123.050628383881488, 43.770557355611807 ], [ -123.095340257485717, 43.752394129261674 ], [ -123.100040892223561, 43.751557797702041 ], [ -123.111902099926027, 43.752098654588977 ], [ -123.124111057140084, 43.754752826162459 ], [ -123.131326303985631, 43.7529109450699 ], [ -123.147264634614544, 43.753431263517925 ], [ -123.1598561965816, 43.751416566409176 ], [ -123.166411553608071, 43.747422280558588 ], [ -123.172149031629033, 43.73991439659968 ], [ -123.183443397835305, 43.734690895009379 ], [ -123.203731478707866, 43.712333187448358 ], [ -123.200438789934239, 43.70857008745827 ], [ -123.193741946949572, 43.707085039953327 ], [ -123.190046591582714, 43.704141735279826 ], [ -123.185049772666517, 43.692980367702951 ], [ -123.186003021400595, 43.687109725723737 ], [ -123.183204361898845, 43.682549900167409 ], [ -123.188853281095021, 43.670322825471679 ], [ -123.189306419373125, 43.662151805141896 ], [ -123.196161972151458, 43.652336547355816 ], [ -123.205734375121949, 43.631879555608187 ], [ -123.201064275785399, 43.621927404003848 ], [ -123.201241644320092, 43.616987335447632 ], [ -123.20953167388295, 43.608080997154154 ], [ -123.23694445922537, 43.591277977463207 ], [ -123.267082957701632, 43.562673054087384 ], [ -123.277963976794879, 43.53855074510561 ], [ -123.288082432893475, 43.529645540736865 ], [ -123.296314827282544, 43.526972438008222 ], [ -123.303296270631719, 43.508154977406861 ], [ -123.315969737220954, 43.493593124782372 ], [ -123.315478017272056, 43.490880711433086 ], [ -123.301878080930265, 43.47309167465518 ], [ -123.302669964747665, 43.469013985794959 ], [ -123.31046674186247, 43.458588303767158 ], [ -123.312003642420265, 43.453508030572259 ], [ -123.300094409575834, 43.438371132117361 ], [ -123.300688591037584, 43.435289364423575 ], [ -123.304107245462589, 43.431743298899796 ], [ -123.305234895556211, 43.425594728812186 ], [ -123.321056376957344, 43.404721541111535 ], [ -123.322222843489385, 43.397096939797962 ], [ -123.323390365800662, 43.387922275010538 ], [ -123.323957481487142, 43.380743324501353 ], [ -123.316129587015951, 43.369572047591269 ], [ -123.314471825274964, 43.363547777976464 ], [ -123.313200614499806, 43.356855717523459 ], [ -123.314444879055884, 43.346045027210934 ], [ -123.329468909784481, 43.325843431431593 ], [ -123.333096424799606, 43.316545285525251 ], [ -123.336395312971902, 43.298845590091645 ], [ -123.340190446675976, 43.290348589672874 ], [ -123.341446876418516, 43.283616089543294 ], [ -123.340937910522143, 43.274109377726219 ], [ -123.344887973403644, 43.258784195547015 ], [ -123.345845675277246, 43.246638356372948 ], [ -123.346943785005152, 43.228819555476079 ], [ -123.341091924827793, 43.215506552153506 ], [ -123.341701614921263, 43.211676826744515 ], [ -123.344657443886504, 43.208309573265275 ], [ -123.345110767204616, 43.20039863954802 ], [ -123.347057286056398, 43.195989730993219 ], [ -123.356794860606882, 43.189495628293159 ], [ -123.359606359090705, 43.186113293641448 ], [ -123.359533498910153, 43.182165139996499 ], [ -123.353232928205742, 43.170296878376938 ], [ -123.351189739930149, 43.160690340565296 ], [ -123.350981046145293, 43.154598043419675 ], [ -123.349785110592649, 43.128698586949632 ], [ -123.34932337975269, 43.125848220888727 ], [ -123.340314488203646, 43.11169322776859 ], [ -123.344355942705775, 43.107045611546766 ], [ -123.351964666410524, 43.10552130800852 ], [ -123.354010925439368, 43.0894011401124 ], [ -123.349166491154506, 43.079738853115522 ], [ -123.33287607817843, 43.064149305435365 ], [ -123.321157110226991, 43.058419906072153 ], [ -123.318085508381259, 43.054846914646149 ], [ -123.319907737515948, 43.043247717277623 ], [ -123.318332158938716, 43.037817596617309 ], [ -123.304274265407258, 43.031918797208391 ], [ -123.299780514900917, 43.031085022684948 ], [ -123.290554427277002, 43.031781406694385 ], [ -123.284119346062383, 43.025936326262844 ], [ -123.288222940225126, 43.021189693652651 ], [ -123.286829178194438, 43.016046702893107 ], [ -123.287940271304436, 43.012537282756291 ], [ -123.311072926297186, 42.995300978220875 ], [ -123.3212449149881, 42.97671777076819 ], [ -123.322957019124772, 42.971938703769474 ], [ -123.321812893016499, 42.968657918927427 ], [ -123.31767728503003, 42.965305298610318 ], [ -123.312127211002505, 42.963730862148864 ], [ -123.310921566633851, 42.961559072578602 ], [ -123.316790349821161, 42.951526416373547 ], [ -123.312563521143147, 42.949032772376782 ], [ -123.282510782389423, 42.949014522715608 ], [ -123.272788980166723, 42.940677484363924 ], [ -123.268954319611268, 42.930523967503674 ], [ -123.265388536167379, 42.925821733412107 ], [ -123.261162328585627, 42.920440096268557 ], [ -123.252631582812128, 42.914834899342438 ], [ -123.248989837644743, 42.910422648352963 ], [ -123.239371623104432, 42.905377852893096 ], [ -123.237559928899373, 42.901344706731159 ], [ -123.233088596719298, 42.898924002327554 ], [ -123.227189062409167, 42.897741478552703 ], [ -123.224867420424445, 42.89557706275663 ], [ -123.229239173397062, 42.876429300139868 ], [ -123.232896913504121, 42.869382338772724 ], [ -123.233853352458425, 42.85792269244557 ], [ -123.241193128812498, 42.851876913414692 ], [ -123.241560681251386, 42.848589066610224 ], [ -123.238805867377721, 42.845314387305919 ], [ -123.241309699135485, 42.837266702981367 ], [ -123.246760120240879, 42.828609733805138 ], [ -123.247634328517606, 42.816621011824125 ], [ -123.23953769888837, 42.80880312307027 ], [ -123.23941253756584, 42.802653932935442 ], [ -123.250289360371212, 42.788511010698386 ], [ -123.25775034467928, 42.782694260266759 ], [ -123.30266735862881, 42.768720461645529 ], [ -123.324460197895192, 42.767074429750672 ], [ -123.354175518158314, 42.749200810381616 ], [ -123.358316310744641, 42.745155157251183 ], [ -123.356452314946523, 42.740984864985599 ], [ -123.354941653664454, 42.739552894722074 ], [ -123.357146701210681, 42.735702077724952 ], [ -123.355296916750135, 42.731122778299827 ], [ -123.357380193119496, 42.727785907935981 ], [ -123.358383401274352, 42.726279456214726 ], [ -123.35830438683783, 42.71980215364804 ], [ -123.351292752538839, 42.713548666197518 ], [ -123.352480492808652, 42.710048246102644 ], [ -123.375730596754877, 42.696190814128677 ], [ -123.379515306989219, 42.691805950602955 ], [ -123.379242751601552, 42.690245722833041 ], [ -123.370903354608487, 42.683179361591115 ], [ -123.370504686715634, 42.678417931419851 ], [ -123.367356800420183, 42.674425859623256 ], [ -123.367276147792495, 42.670275646993332 ], [ -123.362314035369579, 42.664844419384046 ], [ -123.362593096506416, 42.657233288352586 ], [ -123.373520807385745, 42.643728399982315 ], [ -123.372854612413818, 42.640118851612982 ], [ -123.367000167901253, 42.631394944437545 ], [ -123.37012425178456, 42.625506611879366 ], [ -123.367759469287265, 42.620194963282309 ], [ -123.364351912436732, 42.617403782087976 ], [ -123.367056666339352, 42.614853324680148 ], [ -123.369694146131238, 42.60049536069306 ], [ -123.375304626507074, 42.591236412046051 ], [ -123.370152406559029, 42.585786057000881 ], [ -123.35967188712668, 42.578768411285147 ], [ -123.35856498829628, 42.576257640579051 ], [ -123.35514891021738, 42.531712800731 ], [ -123.349381790742001, 42.515709674791573 ], [ -123.348715103391029, 42.492877436127657 ], [ -123.347350569866663, 42.488695481735924 ], [ -123.343406121697811, 42.483363936588965 ], [ -123.339012261332812, 42.480172191702188 ], [ -123.313946940255775, 42.468548825976065 ], [ -123.30905739800734, 42.466455851238329 ], [ -123.307243454813857, 42.465687749340617 ], [ -123.304654575538621, 42.464297169093314 ], [ -123.300161349933262, 42.461838428861306 ], [ -123.295600283033437, 42.456670571432731 ], [ -123.292717303006881, 42.452994755729286 ], [ -123.285904132155764, 42.444243471565727 ], [ -123.282937148236883, 42.441048628225907 ], [ -123.277317942866162, 42.440065294829097 ], [ -123.250283030065191, 42.438439446570491 ], [ -123.234333369190523, 42.429327929567371 ], [ -123.222652782393268, 42.429062171526809 ], [ -123.216130888400642, 42.425380309927888 ], [ -123.213185056385242, 42.424177582187546 ], [ -123.194653555019457, 42.423055940018322 ], [ -123.182939920256928, 42.426540366869965 ], [ -123.174580835505211, 42.433443813303668 ], [ -123.161932960882666, 42.435576720198227 ], [ -123.155577468475855, 42.432236049365414 ], [ -123.143426841570204, 42.41626780321397 ], [ -123.128102514037224, 42.410117088429331 ], [ -123.123233960929397, 42.410084380926222 ], [ -123.112381452295281, 42.418081570828669 ], [ -123.100434063020415, 42.426921197650955 ], [ -123.084207104910973, 42.429533344388709 ], [ -123.074693822965742, 42.433579239799208 ], [ -123.060184587488109, 42.433521334309368 ], [ -123.029968204699543, 42.427184860074739 ], [ -122.977753363064167, 42.413896757149359 ], [ -122.949520642411045, 42.413522879335659 ], [ -122.932762616548757, 42.40782300985169 ], [ -122.926716104996956, 42.405328815721688 ], [ -122.909627996453949, 42.39268072266966 ], [ -122.892836259048806, 42.379927850177424 ], [ -122.869740055872256, 42.361261737737308 ], [ -122.864768736212653, 42.351718047858768 ], [ -122.855369062086467, 42.325261833804682 ], [ -122.833310730237798, 42.309099511209375 ], [ -122.789014220506857, 42.268396992619124 ], [ -122.758584179760476, 42.243303901154945 ], [ -122.731627105889004, 42.229488911447021 ], [ -122.701110196769633, 42.218003457534728 ], [ -122.689371068863622, 42.212027927478744 ], [ -122.687920050128724, 42.211150244473615 ], [ -122.66131056610061, 42.194345772570273 ], [ -122.655561448121617, 42.186458059562277 ], [ -122.651878324240727, 42.180814319170409 ], [ -122.648019905083714, 42.175029498770023 ], [ -122.635123205051514, 42.156163431506336 ], [ -122.62921438200263, 42.148302665134075 ], [ -122.624553411078139, 42.135848434503366 ], [ -122.614329536878188, 42.12209566251174 ], [ -122.611756062262998, 42.11643744481993 ], [ -122.606900598323008, 42.111384197358234 ], [ -122.602614251621432, 42.109582239015843 ], [ -122.597571099232596, 42.103239901808188 ], [ -122.59571975043842, 42.096029001886002 ], [ -122.592650612066564, 42.092907588144726 ], [ -122.592820049210417, 42.089107631146042 ], [ -122.589134983403838, 42.084406926624105 ], [ -122.590719148004268, 42.078997593329603 ], [ -122.595404076080399, 42.07536867769938 ], [ -122.590931187745269, 42.066382577070719 ], [ -122.597334920296149, 42.060823423241203 ], [ -122.599549842914243, 42.055316378060319 ], [ -122.594378198338362, 42.04689096198689 ], [ -122.587934416817703, 42.04160800283497 ], [ -122.587715260793118, 42.039658886407558 ], [ -122.591951676653508, 42.034529754437294 ], [ -122.596016704906816, 42.023843499085274 ], [ -122.603912389054713, 42.015786010600706 ], [ -122.605239561347332, 42.006566532989865 ], [ -122.599762600085796, 41.998907974347382 ], [ -122.599764722350599, 41.994978936700974 ], [ -122.592381285306629, 41.971266361155394 ], [ -122.576634786561456, 41.947540043628578 ], [ -122.569999870453799, 41.930209910683452 ], [ -122.561226282144503, 41.917003874756489 ], [ -122.554750498360548, 41.899841841832455 ], [ -122.548492881498191, 41.888260966254734 ], [ -122.548344760055016, 41.880070829075862 ], [ -122.550431788465218, 41.873624695812715 ], [ -122.554858296830105, 41.869465619137507 ], [ -122.556541892906964, 41.862756305217061 ], [ -122.560512776904503, 41.859019032746168 ], [ -122.561046989752157, 41.855060233816289 ], [ -122.557757933342771, 41.84894671969041 ], [ -122.56529547376276, 41.842710006962918 ], [ -122.566240861197315, 41.837560379287218 ], [ -122.56957347793022, 41.832922817378531 ], [ -122.568582160962904, 41.823282286503115 ], [ -122.562368055219963, 41.814269445804229 ], [ -122.561860870684029, 41.810489186319117 ], [ -122.571222572119069, 41.804942287140832 ], [ -122.572692317220756, 41.799380887502394 ], [ -122.578732170549188, 41.793097513956191 ], [ -122.574235038568261, 41.785904444571507 ], [ -122.572355909658825, 41.77433349972442 ], [ -122.57842883494466, 41.76401409737835 ], [ -122.595028923976059, 41.755972417350108 ], [ -122.609454405229215, 41.748218795910468 ], [ -122.61752350090407, 41.740673329846466 ], [ -122.6226217657928, 41.732203519791327 ], [ -122.631938287444569, 41.710066443870346 ], [ -122.631654538289524, 41.702372214587569 ], [ -122.627054013844131, 41.689822969247508 ], [ -122.622572020010566, 41.684571877004203 ], [ -122.6086575943295, 41.674178482074879 ], [ -122.5870204907188, 41.661625653303695 ], [ -122.564748409513768, 41.655706711029538 ], [ -122.554591147304606, 41.655653238270233 ], [ -122.542375481698627, 41.652736846128079 ], [ -122.526207157313493, 41.646442717797562 ], [ -122.522757126632001, 41.644568195926048 ], [ -122.50494094396953, 41.619403179409552 ], [ -122.493214499015394, 41.593987826074404 ], [ -122.490301746233172, 41.580005406388409 ], [ -122.481225584003624, 41.561019297991095 ], [ -122.474235269357379, 41.551536210476598 ], [ -122.471768202649869, 41.542704059721608 ], [ -122.467575267967661, 41.53522619616367 ], [ -122.461719679214411, 41.506792396872946 ], [ -122.454850188899286, 41.498229399351153 ], [ -122.449412999231214, 41.483203891628555 ], [ -122.438942918463155, 41.467483274342719 ], [ -122.43265462262724, 41.451977418147287 ], [ -122.428200276695662, 41.448297508766174 ], [ -122.420413289398724, 41.433852057488366 ], [ -122.417897729944315, 41.431611981213536 ], [ -122.41162537827104, 41.429778358596984 ], [ -122.40128958329035, 41.431567123058592 ], [ -122.393921163882126, 41.430850083699738 ], [ -122.391413077051439, 41.429461033826982 ], [ -122.387894133894548, 41.424309514168115 ], [ -122.375994843320058, 41.420604596638306 ], [ -122.371117554654631, 41.410691460737652 ], [ -122.374095102688614, 41.401953540922015 ], [ -122.367096469350685, 41.392459550446205 ], [ -122.366167013173055, 41.378980968944099 ], [ -122.364359478688399, 41.373598153639179 ], [ -122.359723239831069, 41.367908187665797 ], [ -122.333292150026466, 41.345325192186742 ], [ -122.321724029185305, 41.330790342735888 ], [ -122.297939284698671, 41.288811251001647 ], [ -122.293681942952915, 41.286169527806258 ], [ -122.280002485414414, 41.278535022403489 ], [ -122.270095953500856, 41.271050023090886 ], [ -122.263993962677986, 41.260309473314123 ], [ -122.251698789605371, 41.252442562857475 ], [ -122.249501803127757, 41.249851652252921 ], [ -122.253049867004293, 41.241303760061939 ], [ -122.260551584152751, 41.237125549326528 ], [ -122.266273292535359, 41.231897617833518 ], [ -122.265468224606792, 41.214207742381106 ], [ -122.269421913105802, 41.201677891495869 ], [ -122.275105982970032, 41.195919936532022 ], [ -122.279796134636953, 41.185972462963051 ], [ -122.288730736649029, 41.172475553184412 ], [ -122.288263238466726, 41.164056101792369 ], [ -122.284897718578833, 41.157832577717841 ], [ -122.285773217560504, 41.155272841422054 ], [ -122.292056775835945, 41.152857243936893 ], [ -122.298057030909675, 41.152836616225301 ], [ -122.304249397278113, 41.151260020861528 ], [ -122.307475393443511, 41.148953228840618 ], [ -122.312256859430036, 41.137632771925965 ], [ -122.313538799305476, 41.129443022899977 ], [ -122.319103265771801, 41.119224917989335 ], [ -122.317426291772918, 41.111484003334994 ], [ -122.334384119347064, 41.100721450037952 ], [ -122.337459599080603, 41.094180478644013 ], [ -122.343103887519888, 41.091855676834918 ], [ -122.342627792102292, 41.084912265123066 ], [ -122.346310287421275, 41.082563675388528 ], [ -122.347036476025082, 41.075445742972519 ], [ -122.352166138349972, 41.067467562553581 ], [ -122.359483624716148, 41.063991415701004 ], [ -122.364308645496408, 41.057172158277169 ], [ -122.369169355269406, 41.05477505902541 ], [ -122.372184282703074, 41.049645124568244 ], [ -122.384324009815444, 41.044598923402845 ], [ -122.38788038257924, 41.035029077758267 ], [ -122.387702843132729, 41.025190693753608 ], [ -122.394147277928127, 41.019013143589085 ], [ -122.402969877065672, 41.017166717180594 ], [ -122.400858097577, 41.012294692660411 ], [ -122.400375203900751, 41.005175268496458 ], [ -122.418163359354679, 40.990252194512848 ], [ -122.424092829050878, 40.978924348004853 ], [ -122.422787811049631, 40.973342652222719 ], [ -122.426637909832522, 40.968232115458981 ], [ -122.431423011912187, 40.965057024811763 ], [ -122.43081602079539, 40.962954714106729 ], [ -122.426185804874905, 40.95929468268983 ], [ -122.427744267343684, 40.946202974655641 ], [ -122.426779368869717, 40.944214517649954 ], [ -122.416977064526691, 40.941971373779424 ], [ -122.412135242831653, 40.938696272205412 ], [ -122.404705258067224, 40.93831518225138 ], [ -122.403405572350863, 40.935972579279387 ], [ -122.404555184653887, 40.933344981934525 ], [ -122.40190195065172, 40.930752811934518 ], [ -122.401486908836091, 40.925400491072679 ], [ -122.399480083728278, 40.923851618048076 ], [ -122.392681433726636, 40.922516773940629 ], [ -122.376358537872306, 40.911802760016585 ], [ -122.374133424589544, 40.90391262364539 ], [ -122.374620912371668, 40.887409353902498 ], [ -122.372790323647862, 40.882011449333213 ], [ -122.365216905564537, 40.87853624863201 ], [ -122.354704521584154, 40.867041625995959 ], [ -122.339488338331819, 40.860394247739549 ], [ -122.334075422061119, 40.855790920669378 ], [ -122.332465966372865, 40.850503114413513 ], [ -122.319767381213495, 40.844245804373372 ], [ -122.319388043912014, 40.841125559207995 ], [ -122.319483547663495, 40.833156361621889 ], [ -122.314722368759945, 40.816143939131621 ], [ -122.314277594338591, 40.8080445190554 ], [ -122.319400174479298, 40.800905371665728 ], [ -122.310724612456525, 40.778433205247197 ], [ -122.305439167284561, 40.775679996453199 ], [ -122.30575356213734, 40.770697973416553 ], [ -122.309596015539896, 40.768040439988283 ], [ -122.310414003478087, 40.758549485533415 ], [ -122.313085440090589, 40.755071458805062 ], [ -122.306373460927873, 40.747908574607649 ], [ -122.305188999316826, 40.741796986741718 ], [ -122.32841233675444, 40.706698724592897 ], [ -122.332955841024813, 40.699342432842023 ], [ -122.33986394458519, 40.67965687725458 ], [ -122.356135419358964, 40.642545826165573 ], [ -122.359593427534023, 40.632728057837362 ], [ -122.354317100053095, 40.613415536198815 ], [ -122.35174259334137, 40.604011308052733 ], [ -122.35165236259725, 40.586367939906438 ], [ -122.351583474835209, 40.572024642103088 ], [ -122.334595686964036, 40.515657677640895 ], [ -122.329275312553605, 40.506504353584084 ], [ -122.317418035145224, 40.488227258204205 ], [ -122.282248158448525, 40.451644619249947 ], [ -122.278587157338336, 40.43856995910329 ], [ -122.27641457450936, 40.432232998179202 ], [ -122.274022707289518, 40.42357191446628 ], [ -122.272646562054177, 40.406741101776355 ], [ -122.276982232425823, 40.390266547650704 ], [ -122.276334099610324, 40.377384084240319 ], [ -122.275889487110121, 40.368560766600694 ], [ -122.270319542342406, 40.289077292284468 ], [ -122.265529733464035, 40.282445308004291 ], [ -122.262254947918279, 40.274673901734715 ], [ -122.246778980649438, 40.231000090977417 ], [ -122.245723948705205, 40.224426549140382 ], [ -122.238413036299505, 40.209058417234161 ], [ -122.237326190493761, 40.206810953993319 ], [ -122.235714062838653, 40.204132280366323 ], [ -122.234041901532152, 40.201922593504314 ], [ -122.229684955641062, 40.196488812258352 ], [ -122.218835048698821, 40.183613401672055 ], [ -122.217101961062397, 40.181552698651096 ], [ -122.214250726556742, 40.178053540807205 ], [ -122.213689722652063, 40.172575216653144 ], [ -122.214506056706043, 40.166361402569763 ], [ -122.215682221294628, 40.155833638705744 ], [ -122.21399086127164, 40.144857772460902 ], [ -122.211031393218761, 40.128689318804412 ], [ -122.207545725573524, 40.060819618615476 ], [ -122.198030595459656, 40.001182796819649 ], [ -122.192514816446987, 39.967920065804002 ], [ -122.192444797581928, 39.936303425204102 ], [ -122.192469832470692, 39.931470340628231 ], [ -122.192455948812935, 39.928998287296572 ], [ -122.192296245533043, 39.927060189398524 ], [ -122.192296861390361, 39.909568849039836 ], [ -122.192358653149569, 39.907348829049873 ], [ -122.19217705204737, 39.905315721044502 ], [ -122.192161658483826, 39.904022690047647 ], [ -122.192778536048166, 39.799100868698062 ], [ -122.196625695339989, 39.785347042296443 ], [ -122.197291260818062, 39.761336818294261 ], [ -122.19740739640271, 39.75567174992068 ], [ -122.197622628834537, 39.75144474711815 ], [ -122.197718564806678, 39.739531567443663 ], [ -122.197579659566003, 39.726473279862439 ], [ -122.196320537630058, 39.631646092558455 ], [ -122.206379889305211, 39.557418491563077 ], [ -122.206748773566162, 39.532408168217685 ], [ -122.206766890389332, 39.525145040892596 ], [ -122.204541974070438, 39.516176045753362 ], [ -122.192662668408346, 39.502770383847427 ], [ -122.188771088922749, 39.494196898744192 ], [ -122.188482611881867, 39.492499789783203 ], [ -122.188014996208878, 39.466620583499243 ], [ -122.186132141086404, 39.457368872727663 ], [ -122.18593481032822, 39.419698747172859 ], [ -122.187811996780908, 39.407210428306492 ], [ -122.185712743991843, 39.386205616164105 ], [ -122.186791052898158, 39.320028919581176 ], [ -122.178915372819475, 39.304125946470322 ], [ -122.1749093363469, 39.27819540129682 ], [ -122.17308043831288, 39.212273789957344 ], [ -122.158034384388301, 39.185839291730133 ], [ -122.147233910479514, 39.175246346242133 ], [ -122.142176582914445, 39.167851517268332 ], [ -122.129836533537002, 39.146397095553795 ], [ -122.126966271828366, 39.131797118191926 ], [ -122.121307779929808, 39.125825090254757 ], [ -122.110060654307617, 39.108651107122441 ], [ -122.107027686531652, 39.101311052752266 ], [ -122.102280878528077, 39.097189367142192 ], [ -122.091253636345897, 39.080564509789518 ], [ -122.078388714533489, 39.057279070250011 ], [ -122.072896078706378, 39.052127156387364 ], [ -122.050050937404563, 39.015300371293073 ], [ -122.047099439678902, 39.012991356579569 ], [ -122.04732734187813, 39.01426942679111 ], [ -122.044779115700592, 39.011178559966496 ], [ -122.021729026207652, 38.975060556572004 ], [ -122.020041741448182, 38.969329954043921 ], [ -122.010451292849538, 38.954487587283531 ], [ -122.004320277142313, 38.948504449665769 ], [ -121.997535496701772, 38.938633074514499 ], [ -121.992952185823825, 38.926317435453129 ], [ -121.971907487998024, 38.893880899104595 ], [ -121.966053424424089, 38.880950825430183 ], [ -121.933211834838787, 38.848446464753863 ], [ -121.922750165972317, 38.839214908744701 ], [ -121.913116585192853, 38.834382650985575 ], [ -121.894560544036821, 38.816836462725249 ], [ -121.88839844172584, 38.809143437214701 ], [ -121.865740520278678, 38.789265042405987 ], [ -121.833762585012622, 38.757295871474909 ], [ -121.815896341756158, 38.741722121061692 ], [ -121.810387932260483, 38.734400298160018 ], [ -121.799331791314501, 38.725916702202937 ], [ -121.794066460054722, 38.719265971366262 ], [ -121.77762301180789, 38.704016632344405 ], [ -121.770386120932912, 38.699925314835141 ], [ -121.758869426362196, 38.697266673376461 ], [ -121.751297089623421, 38.693399267903409 ], [ -121.744571409077281, 38.685032089605954 ], [ -121.739169193832225, 38.677954280360638 ], [ -121.734556617188275, 38.675163769554246 ], [ -121.722286432634974, 38.674621824565442 ], [ -121.715610441102811, 38.674539687407062 ], [ -121.703826890114101, 38.674279927016244 ], [ -121.623642428478234, 38.674350772275211 ], [ -121.61991262693725, 38.674059618895974 ], [ -121.585198195639549, 38.672026964205735 ], [ -121.54433817425101, 38.672022600690063 ], [ -121.53906964219442, 38.671033020607361 ], [ -121.534297665780514, 38.668235594504011 ], [ -121.511524969984592, 38.625789902768098 ], [ -121.506632670384178, 38.615538487109369 ], [ -121.50223475004006, 38.606950219150285 ], [ -121.498195278297857, 38.597737063151527 ], [ -121.498677667141664, 38.590721222969883 ], [ -121.497247439995547, 38.585414820926417 ], [ -121.499876647211138, 38.580540599508304 ], [ -121.502085154356266, 38.577340250835682 ], [ -121.502420814953553, 38.576291351228051 ], [ -121.50509571035451, 38.569102147647691 ], [ -121.508355184571087, 38.565441105265847 ], [ -121.508836299591593, 38.562171252595569 ], [ -121.503260085305186, 38.546899667977023 ], [ -121.504731921916346, 38.541350107873797 ], [ -121.511060894117605, 38.535140956572889 ], [ -121.515372929898845, 38.526334224787043 ], [ -121.516160546677355, 38.516794470463807 ], [ -121.516405903137141, 38.511323551272973 ], [ -121.512342880299883, 38.503903390354751 ], [ -121.510632005911177, 38.49626594335205 ], [ -121.504774959921576, 38.481833391823045 ], [ -121.498251431920394, 38.47586557708518 ], [ -121.494240691336586, 38.472888462317457 ], [ -121.49119694434907, 38.466879662564203 ], [ -121.4884580834172, 38.459294964676062 ], [ -121.487781509114498, 38.456163804471146 ], [ -121.481296706965438, 38.426178270872924 ], [ -121.479214179039531, 38.416430780336661 ], [ -121.477846280763885, 38.409427464094065 ], [ -121.450997529127662, 38.275437257892413 ], [ -121.443777560773043, 38.255259450423871 ], [ -121.437538029983003, 38.242985850756781 ], [ -121.401158278135981, 38.193011413879887 ], [ -121.396287796863504, 38.183821188122515 ], [ -121.393469543054067, 38.161347659792725 ], [ -121.392774543613626, 38.121976883030769 ], [ -121.390195224790858, 38.116826239465581 ] ], [ [ -122.995623084131225, 44.84953218766821 ], [ -122.997071134325793, 44.852642057123887 ], [ -122.998101998463085, 44.854488670557821 ], [ -122.998091042867614, 44.860653762078243 ], [ -122.995225237973287, 44.864543200037531 ] ], [ [ -122.995623084131225, 44.84953218766821 ], [ -122.995493604854531, 44.84968411676342 ], [ -122.995909072011329, 44.853602414114533 ], [ -122.99606744938157, 44.854933524897824 ], [ -122.996082128357273, 44.855319539326374 ], [ -122.995225237973287, 44.864543200037531 ] ], [ [ -122.995225237973287, 44.864543200037531 ], [ -122.987103192298605, 44.87360574961204 ], [ -122.984262395430335, 44.886513344707268 ], [ -122.982467359720673, 44.890533392968756 ], [ -122.972895662044905, 44.897188097416169 ], [ -122.971102239201699, 44.900216135725444 ], [ -122.974644543007628, 44.917010396143759 ], [ -122.976340447911937, 44.924770474085093 ], [ -122.976217670275346, 44.951641827336793 ], [ -122.976338580394014, 44.975640271292448 ], [ -122.979772377765883, 44.98457634481283 ], [ -122.986204658464217, 44.995216138673896 ], [ -122.984551288526774, 45.003416338207082 ], [ -122.982779604004591, 45.006822401192643 ], [ -122.976820087066571, 45.017878245886742 ], [ -122.959068726380124, 45.051105888701926 ], [ -122.946084448579597, 45.074895069122817 ], [ -122.870450618254068, 45.149279810518294 ], [ -122.8673511214607, 45.152376184092923 ], [ -122.863331300944708, 45.156425077927452 ], [ -122.822304296731573, 45.197941753511238 ], [ -122.793990637317478, 45.236177373434344 ], [ -122.771987535468455, 45.262865198966537 ], [ -122.757045486923374, 45.280538606554622 ], [ -122.756448960979682, 45.285936360872498 ], [ -122.756400022939062, 45.292917419743631 ], [ -122.756264041260025, 45.303987482401723 ], [ -122.756215900430419, 45.333116807534132 ], [ -122.756290127130043, 45.337206895352388 ], [ -122.75609771644173, 45.3410328406598 ], [ -122.751152615527332, 45.355213427317196 ], [ -122.745265276054795, 45.370205533788493 ], [ -122.742786091552745, 45.375873308550034 ], [ -122.739598727115961, 45.383847742026667 ], [ -122.73127589958753, 45.406331694805324 ], [ -122.731367841494631, 45.419259888318869 ], [ -122.731448528964336, 45.422555967178774 ], [ -122.731241110116144, 45.426534904890524 ], [ -122.731345728016251, 45.429765995335288 ], [ -122.730983550466988, 45.439588918670445 ], [ -122.726468600935306, 45.445144648987529 ], [ -122.718210624963007, 45.44869943244889 ], [ -122.713551416021616, 45.453988094064812 ], [ -122.703296523236105, 45.455340848931066 ], [ -122.681984716545017, 45.466869097719155 ], [ -122.676535436517938, 45.471089373236673 ], [ -122.667626055938868, 45.470764858085246 ], [ -122.665377522399382, 45.471571729538304 ], [ -122.666584059260529, 45.487354492427194 ], [ -122.661065434939545, 45.494278770324776 ], [ -122.660849549101499, 45.499192708235434 ] ], [ [ -122.660849549101499, 45.499192708235434 ], [ -122.661401895968567, 45.503015022814779 ] ], [ [ -122.660849549101499, 45.499192708235434 ], [ -122.661529689248937, 45.505842113036543 ], [ -122.654333485614941, 45.510946527686365 ], [ -122.654427887290339, 45.518167639654799 ], [ -122.65267583511546, 45.526421829821167 ], [ -122.652590469448569, 45.529431813447388 ], [ -122.653453145457192, 45.535508302185143 ], [ -122.654158523160319, 45.536386665755963 ], [ -122.660338073317803, 45.543515850724916 ], [ -122.663512130879283, 45.545042470761807 ], [ -122.665749826464904, 45.549140641547055 ], [ -122.6657837683384, 45.557567735141667 ], [ -122.665824901949236, 45.563892813245644 ], [ -122.665801588357752, 45.578342931897936 ], [ -122.666496421690951, 45.58534334770345 ], [ -122.671669336632789, 45.597446086873603 ], [ -122.670046608494673, 45.605937338108795 ], [ -122.662352022326161, 45.619391548010299 ], [ -122.659250117589721, 45.624029015061062 ], [ -122.652302749463104, 45.633023573954091 ], [ -122.648880915349082, 45.639949902776365 ], [ -122.648958056635408, 45.651211038015084 ], [ -122.652681645159234, 45.661356009832296 ], [ -122.654440389767004, 45.667277952248639 ], [ -122.651709880008909, 45.673578622143935 ], [ -122.651721148706983, 45.679929682081728 ], [ -122.650561328303354, 45.690248182039269 ], [ -122.640158541560567, 45.711033091236253 ], [ -122.642148874574062, 45.722859195154939 ], [ -122.641745429955478, 45.725003008738248 ], [ -122.649470571309109, 45.749986131523649 ], [ -122.648580317697423, 45.752106697386346 ], [ -122.650866351109357, 45.753427870241289 ], [ -122.658711587745657, 45.780512121535146 ], [ -122.664299467591192, 45.797815161111991 ], [ -122.673440635436322, 45.817851095862949 ], [ -122.689688464485045, 45.85302798667599 ], [ -122.694789141913176, 45.870230889607051 ], [ -122.70206852929357, 45.877684838696375 ], [ -122.716341021279675, 45.886325552196048 ], [ -122.720332250899389, 45.892087771597325 ], [ -122.722889098649716, 45.896094202196331 ], [ -122.726637139852002, 45.902280310075326 ], [ -122.728557512986242, 45.905241389501803 ], [ -122.727887129837072, 45.907721068660656 ], [ -122.733761138982928, 45.914163338329431 ], [ -122.744898462052106, 45.932770575404959 ], [ -122.797898607298094, 45.967409413551806 ], [ -122.82809935209238, 46.001236373434629 ], [ -122.852784144694482, 46.062640742608394 ], [ -122.853377521394165, 46.084961379340008 ], [ -122.866164598561753, 46.109069732149372 ], [ -122.882881132288489, 46.136217315607496 ], [ -122.88411207363265, 46.145873123565337 ], [ -122.888120359509685, 46.158749509941451 ], [ -122.890457811595795, 46.173223992324175 ], [ -122.883662599496759, 46.185389393658788 ], [ -122.880246473137277, 46.196438653978298 ], [ -122.869384664150672, 46.254420407661662 ], [ -122.888102029592659, 46.285761714740431 ], [ -122.896732439758495, 46.301578502910864 ], [ -122.900716602779056, 46.316068726440086 ], [ -122.899953872009803, 46.321687306416685 ], [ -122.894008012718203, 46.335054010520444 ], [ -122.891901050856632, 46.354904849613376 ], [ -122.894003597675393, 46.367735023808464 ], [ -122.888341223806364, 46.389280882948349 ], [ -122.885001854056739, 46.400368029720909 ], [ -122.87548449947316, 46.40910675189069 ], [ -122.876153482287023, 46.431125118197855 ], [ -122.873338258826195, 46.440992555103897 ], [ -122.874407911191497, 46.442694147493 ], [ -122.8691555313208, 46.477000221837663 ], [ -122.86281332799156, 46.493938697947122 ], [ -122.861474710380065, 46.548698000095499 ], [ -122.862482222869545, 46.566066576182983 ], [ -122.8688050533964, 46.579021106498324 ], [ -122.872765752952461, 46.583371319593944 ], [ -122.884798092084111, 46.596120067060959 ], [ -122.894325527321627, 46.609125441304869 ], [ -122.906709400205742, 46.617242446205374 ], [ -122.935737405059356, 46.64191702561407 ], [ -122.940957473965042, 46.64574302774809 ], [ -122.959283124056512, 46.654942606166777 ], [ -122.963825587557523, 46.661724256032386 ], [ -122.966187861679487, 46.670667655296818 ], [ -122.958766580822015, 46.679291387964028 ], [ -122.95656113701888, 46.686912137502929 ], [ -122.955256461839696, 46.697119415645325 ], [ -122.95896195884724, 46.707524592380594 ], [ -122.960764572625791, 46.714132658002455 ], [ -122.962129200938364, 46.729106497946745 ], [ -122.960926724471435, 46.733366813947967 ], [ -122.960120936836816, 46.736459356343452 ], [ -122.960127256011546, 46.737497363299084 ], [ -122.977400230138301, 46.76592345160681 ], [ -122.99457369488502, 46.794642468680365 ], [ -122.995375320137697, 46.798072935698464 ], [ -122.992154048939497, 46.802892049832174 ], [ -122.95828176931758, 46.861394176559536 ], [ -122.946448283097695, 46.897275230069177 ], [ -122.932413894359343, 46.922227041942214 ], [ -122.917710313946074, 46.97202342522322 ], [ -122.916265649530672, 46.976958578858927 ], [ -122.911426412295768, 46.983425773490346 ], [ -122.897281266470642, 47.001807603889837 ], [ -122.891498120718595, 47.012111452323637 ], [ -122.891376900219043, 47.022793547018772 ], [ -122.882857290103161, 47.027350755011689 ], [ -122.878884562226119, 47.03186156252395 ], [ -122.875124143554302, 47.035735484279044 ], [ -122.870425249452452, 47.036788833161204 ], [ -122.862590300291188, 47.037597408173944 ], [ -122.853934276837776, 47.041715584348225 ], [ -122.841506674441646, 47.041682593129003 ], [ -122.837035311712526, 47.042855103981807 ], [ -122.82717927830862, 47.046412647127916 ], [ -122.808844237607417, 47.048282473787715 ], [ -122.804226872596914, 47.050236946134717 ], [ -122.790852876371034, 47.058248687268119 ], [ -122.750594726933613, 47.064997777535439 ], [ -122.724071269887617, 47.068267595699005 ], [ -122.698239472776052, 47.070054987476873 ], [ -122.690097565389777, 47.073121767294168 ], [ -122.666668236206192, 47.081211684253674 ], [ -122.623788619670464, 47.090726758083321 ], [ -122.607838776871503, 47.094632699174603 ], [ -122.594181419814589, 47.101155893430082 ], [ -122.57542073297391, 47.105323518532337 ], [ -122.55752434804279, 47.111647679850734 ], [ -122.51248032206604, 47.138217898505779 ], [ -122.49153423635849, 47.14804985623897 ], [ -122.472023324997267, 47.159759665811727 ], [ -122.466962432593618, 47.164353320626219 ], [ -122.460016373457648, 47.171770126149909 ], [ -122.4536779012018, 47.178565215891268 ], [ -122.449910372076388, 47.191884647290607 ], [ -122.449210736279099, 47.207844586662702 ], [ -122.450781762238023, 47.224195617427753 ], [ -122.450322875145289, 47.229543489368588 ], [ -122.448111715756198, 47.231408463444922 ], [ -122.432373596144473, 47.231625963034872 ], [ -122.41935255691655, 47.234724837218884 ], [ -122.40756927117674, 47.238881338138619 ], [ -122.39807322452252, 47.240329892656483 ], [ -122.390598411334082, 47.241398402730539 ], [ -122.387483266281805, 47.24284696598172 ], [ -122.374691383164745, 47.24229198641568 ], [ -122.344715360635789, 47.242110101899407 ], [ -122.328678026119775, 47.242670745621801 ], [ -122.324293918071533, 47.244392762214453 ], [ -122.317533227856273, 47.259007835950278 ], [ -122.304467476149824, 47.271480006351489 ], [ -122.298468230080076, 47.280655369811249 ], [ -122.294885229681597, 47.290713839639849 ], [ -122.284880929661483, 47.317209557585272 ], [ -122.282583404729891, 47.32349957713808 ], [ -122.280787174677016, 47.344429954570323 ], [ -122.284198243602944, 47.358851624932683 ], [ -122.278373658585252, 47.384499221796496 ], [ -122.278947039640514, 47.392590552368382 ], [ -122.280229813235508, 47.409555282153356 ], [ -122.276988580759053, 47.419181901745084 ], [ -122.272997128215408, 47.423765139525749 ], [ -122.259986443082838, 47.432850360164174 ], [ -122.253137543418447, 47.453778462959349 ], [ -122.25191789856504, 47.4630779937388 ], [ -122.254089226326982, 47.466038992230622 ], [ -122.260615197235623, 47.48056904643083 ], [ -122.260226176128796, 47.483799898564158 ], [ -122.258934023466267, 47.4849893272496 ], [ -122.252480054989562, 47.491223479572298 ], [ -122.261007238321795, 47.500550390860127 ], [ -122.269497012521668, 47.508817290272368 ], [ -122.275957052600063, 47.517559287606581 ], [ -122.284046176260986, 47.535732114905414 ], [ -122.300850619790396, 47.550350908502132 ], [ -122.305429950244644, 47.554152040065233 ], [ -122.309284089690266, 47.562313881368958 ], [ -122.307561918642179, 47.573013185478068 ], [ -122.308561412789217, 47.594433834128466 ], [ -122.307853192088004, 47.596874530183243 ], [ -122.315065613214301, 47.605327924319234 ], [ -122.317510548436729, 47.608159076943082 ], [ -122.31889198263282, 47.611176741405245 ], [ -122.316639574813706, 47.617206755796566 ], [ -122.316075729786647, 47.621567534477983 ], [ -122.316073067454113, 47.626667578539255 ], [ -122.315462973890035, 47.629978326457241 ], [ -122.311860618114565, 47.633695698611582 ], [ -122.310541133886062, 47.643614177930615 ], [ -122.310215528849838, 47.657015145270286 ], [ -122.310207277222901, 47.657564146267319 ], [ -122.310045394481776, 47.662500114792593 ], [ -122.309884112206021, 47.666284073488484 ], [ -122.308548118929224, 47.677323553955283 ], [ -122.308280358130702, 47.680993462433449 ], [ -122.313974973679805, 47.688068150787508 ], [ -122.316745133405547, 47.69152946107495 ], [ -122.317488292335611, 47.709844965145379 ], [ -122.312606259571965, 47.717936778436432 ], [ -122.311942855691314, 47.724204526207743 ], [ -122.311934518303048, 47.724917528518269 ], [ -122.312514658814237, 47.735106884580198 ], [ -122.317453730806491, 47.74548925962646 ], [ -122.317372483633207, 47.756548267766178 ], [ -122.310850663877162, 47.765166248030802 ], [ -122.305184735682673, 47.778621629867935 ], [ -122.303672445375227, 47.794791928766948 ], [ -122.29975593017258, 47.804090124755284 ], [ -122.26699868100944, 47.821985163402232 ], [ -122.254012056721038, 47.828830285819826 ], [ -122.250888923772109, 47.831937877292361 ], [ -122.245220061655033, 47.850967329942115 ], [ -122.234622708752298, 47.864802591167916 ], [ -122.230271960893745, 47.875988663555511 ], [ -122.221175104790163, 47.883552638378923 ], [ -122.204150380170788, 47.898148154524399 ], [ -122.194187863731358, 47.920543828959623 ], [ -122.190149303189358, 47.928122081236275 ], [ -122.185376895207739, 47.931278010196309 ], [ -122.184098513488749, 47.935001462123665 ], [ -122.184740209792139, 47.944770760656702 ], [ -122.187328065194734, 47.951679898238055 ], [ -122.187184222523044, 47.96534786176862 ], [ -122.185913719666104, 47.969269318094398 ], [ -122.179522126379908, 47.97448856088328 ], [ -122.178775855673862, 47.977468244621541 ], [ -122.176373094760393, 47.981384215298476 ], [ -122.171516405513415, 47.985735130980899 ], [ -122.170936251789755, 47.991223894184074 ], [ -122.168755442329811, 47.993221960675697 ], [ -122.164073115098461, 47.997282959344183 ], [ -122.162293838361308, 48.000921205639578 ], [ -122.163211084165198, 48.020110222763698 ], [ -122.168222262667996, 48.043413135038108 ], [ -122.173012726702737, 48.052937509732295 ], [ -122.172940911494479, 48.076768255881277 ], [ -122.173049500371562, 48.119532694953975 ], [ -122.174521964831641, 48.139529982415155 ], [ -122.181008143008711, 48.176854011230766 ], [ -122.190809933677656, 48.189007678377926 ], [ -122.197772563180948, 48.197071986895708 ], [ -122.210022307033441, 48.222568204467741 ], [ -122.216796926010545, 48.227610358269679 ], [ -122.228634195752065, 48.240036010139107 ], [ -122.247714153693209, 48.261804411908081 ], [ -122.291821491774442, 48.29890223873219 ], [ -122.30957222058349, 48.314005113133717 ], [ -122.321032016699732, 48.333893290035917 ], [ -122.323386832191503, 48.346884931726144 ], [ -122.322322492360087, 48.380194818160383 ], [ -122.318170922598171, 48.388265215200342 ], [ -122.318441720223831, 48.407759151146678 ], [ -122.320175477458747, 48.418445403189843 ], [ -122.328319474750572, 48.43101172799765 ], [ -122.3284939878356, 48.445973428325594 ], [ -122.329308093279238, 48.471663870244711 ], [ -122.329911879766513, 48.480384512428223 ], [ -122.324151767069736, 48.486322067594578 ], [ -122.322897834571592, 48.501062091296696 ], [ -122.336676724750845, 48.527207265909233 ], [ -122.340150584328683, 48.537329172641726 ], [ -122.336544007820592, 48.548428800332417 ], [ -122.33714882178397, 48.554887263413342 ], [ -122.330973699811338, 48.598247617345706 ], [ -122.333535546205056, 48.608640095456266 ], [ -122.343264129370112, 48.622102975608193 ], [ -122.351514488127265, 48.646354465188956 ], [ -122.35984226539567, 48.666972884482576 ], [ -122.36474668225182, 48.670794264446137 ], [ -122.379749587922959, 48.678091446608207 ], [ -122.382128474096248, 48.687522799403382 ], [ -122.393760318926439, 48.691621347280311 ], [ -122.410528818147071, 48.690496209455702 ], [ -122.435161033001862, 48.694558983974339 ], [ -122.442047116649761, 48.697160326333872 ], [ -122.455112987300993, 48.701289669199902 ], [ -122.462104264272, 48.705810123314514 ], [ -122.463354507054206, 48.709053793811997 ], [ -122.460808099303236, 48.715361706483918 ], [ -122.460170688568738, 48.726912649787202 ], [ -122.455080218550677, 48.733490356411522 ], [ -122.452604860891327, 48.746272454004085 ], [ -122.448179288090799, 48.757646751113072 ], [ -122.449985090566457, 48.772163272329436 ], [ -122.459950174201907, 48.78141544518725 ], [ -122.472409148740041, 48.783957526302046 ], [ -122.489802822990072, 48.785397001439378 ], [ -122.501699230147679, 48.789336116400442 ], [ -122.51043512612938, 48.79417770732433 ], [ -122.521452803613144, 48.805581744771075 ], [ -122.533418922496367, 48.818081320267304 ], [ -122.544374362692878, 48.829478350599082 ], [ -122.54887444362133, 48.834107828832735 ], [ -122.572720181568073, 48.859413026946804 ], [ -122.574374848813179, 48.883675879070417 ], [ -122.576884636502584, 48.8896854077963 ], [ -122.607647819454129, 48.908973960653775 ], [ -122.624095791899208, 48.924932086621574 ], [ -122.649524269600846, 48.938003810524577 ], [ -122.699933808780258, 48.970101530045618 ], [ -122.714634453947596, 48.981851767049761 ], [ -122.719624273607025, 48.98801564601019 ], [ -122.738726504652249, 49.000786294796484 ] ], [ [ -121.38138282863116, 38.099746041143085 ], [ -121.368479510007205, 38.062956962234082 ], [ -121.367041703576945, 38.058478624372228 ], [ -121.360036100361185, 38.036637981961213 ], [ -121.353179899835283, 38.021900310481158 ], [ -121.338379439507833, 37.985198663059734 ], [ -121.329355406916221, 37.962175355203847 ], [ -121.326987774116432, 37.95917574006382 ], [ -121.322548779426, 37.957069576428395 ], [ -121.307288955992021, 37.955485572099292 ], [ -121.295502983394513, 37.94880750994831 ], [ -121.292527910822344, 37.937285766127914 ], [ -121.279060292546745, 37.898349362704977 ], [ -121.27876409470808, 37.89747628791428 ], [ -121.27439685084974, 37.884799184764503 ], [ -121.272937401641542, 37.874944829911641 ], [ -121.276055992628301, 37.859957677681599 ], [ -121.276994360983096, 37.856165931382733 ], [ -121.28524257638496, 37.827097157760186 ], [ -121.290295534520212, 37.812339519778966 ], [ -121.294929916069933, 37.798782772827366 ], [ -121.295807375783724, 37.791642022769992 ], [ -121.296226872615762, 37.790707135671113 ], [ -121.297506221338637, 37.788255479075026 ], [ -121.326998485057715, 37.767579351793998 ], [ -121.337959474113205, 37.759194305841177 ], [ -121.33821882086329, 37.682564048646029 ], [ -121.338056205983037, 37.638603773959574 ], [ -121.337489184321015, 37.598472410406522 ], [ -121.328527862624881, 37.59148499374335 ], [ -121.256113376749212, 37.53541280187514 ], [ -121.221706124153499, 37.506264074279827 ], [ -121.20624164595138, 37.494789273717394 ], [ -121.174780300004059, 37.463420705159109 ], [ -121.157893772600147, 37.440559712356318 ], [ -121.14351410160468, 37.41249536906124 ], [ -121.12484631030695, 37.385231053008191 ], [ -121.103240367991532, 37.319495243723914 ], [ -121.084445965194803, 37.2468022231456 ], [ -121.071266226730444, 37.197719687898847 ], [ -121.029579255094518, 37.133230701000201 ], [ -121.028956140958542, 37.129629585656993 ], [ -121.027782856503819, 37.130357312382152 ], [ -121.011395944275279, 37.106634742145218 ], [ -120.996021777337333, 37.088641361266568 ], [ -120.965201013005327, 37.056701841841658 ], [ -120.910863284729757, 37.000495555585623 ], [ -120.884032340416709, 36.970048824074162 ], [ -120.836346010748159, 36.931147749920093 ], [ -120.81482963099981, 36.910533224455989 ], [ -120.796086052377916, 36.889189280282444 ], [ -120.773063203018992, 36.855622410757555 ], [ -120.721038442341452, 36.780084428145088 ], [ -120.718226688527906, 36.778782855421149 ], [ -120.718455920138155, 36.776253889339074 ], [ -120.679399802111917, 36.718987938177371 ], [ -120.606604617037675, 36.624070804204095 ], [ -120.472079444580288, 36.522014753315133 ], [ -120.440622707083065, 36.490758799521046 ], [ -120.390897210600386, 36.435916849401806 ], [ -120.286724863975664, 36.319988748220723 ], [ -120.270283159880606, 36.301045681831795 ], [ -120.266070196422419, 36.294166872402457 ], [ -120.240654161272104, 36.254699063620784 ], [ -120.191835588232451, 36.177291534631522 ], [ -120.107679701132966, 36.085209683835245 ], [ -120.098916677033586, 36.076972197423878 ], [ -120.095259011322327, 36.074858578221601 ], [ -120.093544050259709, 36.073816287610434 ], [ -120.072725670576716, 36.061231751158488 ], [ -120.01881016593228, 36.030144528534478 ], [ -119.98465459917665, 36.007917782140566 ], [ -119.958135916914827, 35.982299017078468 ], [ -119.888456471503318, 35.914376800480682 ], [ -119.828924991563312, 35.853608034686822 ], [ -119.779697055891504, 35.790285857998263 ], [ -119.650694248558267, 35.616352116806787 ], [ -119.642494257372604, 35.60527299756334 ], [ -119.608006897435175, 35.569818315332682 ], [ -119.525454124306421, 35.49406647060345 ], [ -119.45563434563573, 35.443299943743611 ], [ -119.452226254885787, 35.442448526901927 ], [ -119.451640035563884, 35.440438472312955 ], [ -119.394867938421811, 35.399079895136133 ], [ -119.33400919674915, 35.355155080198266 ], [ -119.273247951568251, 35.311908511881825 ], [ -119.250531625842456, 35.29370614193089 ], [ -119.222640261862082, 35.267199217471678 ], [ -119.161071627079565, 35.209026155671438 ], [ -119.035038606290968, 35.095233473533931 ], [ -118.997006024551467, 35.059250153291991 ], [ -118.971315438758396, 35.032850159670616 ], [ -118.954017555707409, 35.018936762675587 ], [ -118.943598114608292, 34.986527735185476 ], [ -118.929437105804809, 34.941747332284635 ], [ -118.929408023151595, 34.933309697053708 ], [ -118.926816565862694, 34.925126806687622 ], [ -118.923781950572575, 34.921079694313356 ], [ -118.92021664720852, 34.898367344953705 ], [ -118.917128969426273, 34.895121193483583 ], [ -118.902376274052045, 34.886697166220969 ], [ -118.897573003892674, 34.880219996276637 ], [ -118.890407096681756, 34.874928553927077 ], [ -118.87838395298013, 34.8626559641094 ], [ -118.861405998759253, 34.839145410108848 ], [ -118.862802587523731, 34.834636736074906 ], [ -118.880172427733953, 34.818026075706463 ], [ -118.883109047459186, 34.813547545059919 ], [ -118.882407874553067, 34.80979064320713 ], [ -118.870033764935755, 34.798547979980995 ], [ -118.866800919511803, 34.797170739702487 ], [ -118.833398050925325, 34.79246386476202 ], [ -118.803244388466169, 34.772903972414888 ], [ -118.793600533569219, 34.759472687287413 ], [ -118.797560576223802, 34.727926273940454 ], [ -118.796769645095537, 34.713865723653221 ], [ -118.790998816978814, 34.698774766954642 ], [ -118.785868923384243, 34.689596651021937 ], [ -118.776026234265942, 34.676786255924064 ], [ -118.765283154477316, 34.671945490077775 ], [ -118.760449735107372, 34.665482308404755 ], [ -118.755052380319498, 34.661354991251123 ], [ -118.752765740353013, 34.65223413529003 ], [ -118.746682688230337, 34.640153063716475 ], [ -118.739332558211061, 34.63590259180166 ], [ -118.727979605527153, 34.633391713603324 ], [ -118.717282987694759, 34.623973156652752 ], [ -118.710765205996765, 34.611472074654067 ], [ -118.710744069770897, 34.594481714423637 ], [ -118.70864023301921, 34.5859948563796 ], [ -118.697699743622721, 34.575991308466705 ], [ -118.689639833578795, 34.57251176061505 ], [ -118.682885656827878, 34.564291503607109 ], [ -118.669527524032631, 34.5538997784762 ], [ -118.66631096296544, 34.548482714911479 ], [ -118.650154823715724, 34.533821927085981 ], [ -118.643590966875792, 34.52074887850474 ], [ -118.637209057237627, 34.516510512588134 ], [ -118.622220682058725, 34.496433030115291 ], [ -118.612537672489751, 34.481928742443635 ], [ -118.615315513075075, 34.46850943555242 ], [ -118.613684089786176, 34.462234519727922 ], [ -118.614760229463201, 34.455112855194166 ], [ -118.609278178678267, 34.446846692295352 ], [ -118.603986483824698, 34.443641369874165 ], [ -118.595462732175747, 34.439063831468637 ], [ -118.586572471600348, 34.431555365578745 ], [ -118.581783952281583, 34.423678246725814 ], [ -118.574770391697527, 34.408721189618426 ], [ -118.565883050569553, 34.382113377564444 ], [ -118.555445448236043, 34.366007079251638 ], [ -118.552030132079452, 34.358107070973233 ], [ -118.545686181934514, 34.352449749096841 ], [ -118.532929665309894, 34.347226895501358 ], [ -118.526677546890951, 34.342438553618422 ], [ -118.513547082987913, 34.338127644670202 ], [ -118.5072798670368, 34.334095278438681 ], [ -118.50185879412038, 34.324085180191183 ], [ -118.494866787960447, 34.321215723396328 ], [ -118.488591540897403, 34.316664383401431 ], [ -118.487303406589703, 34.314764346155528 ], [ -118.478276248134961, 34.303500018793393 ], [ -118.466320652145171, 34.291433495525823 ], [ -118.456759328662557, 34.283899010476844 ], [ -118.454060136425909, 34.279610947136099 ], [ -118.442279417916581, 34.266789476021984 ], [ -118.433823682944009, 34.256844167030948 ], [ -118.421212100857502, 34.244983578296207 ], [ -118.408555381402607, 34.233057966017974 ], [ -118.402858323914671, 34.232001574632108 ], [ -118.402095717375488, 34.231859522399766 ], [ -118.395569085165434, 34.230578078660031 ], [ -118.386509897015983, 34.226812526470226 ], [ -118.380775750322996, 34.226861106762257 ], [ -118.378861702554644, 34.226860967375856 ], [ -118.374567859003022, 34.226559664375522 ], [ -118.369871434152628, 34.223332424201047 ], [ -118.365318772224029, 34.222233130113217 ], [ -118.356915006635205, 34.221137560771105 ], [ -118.347132499269222, 34.212276151214525 ], [ -118.335580244338303, 34.198172809436969 ], [ -118.329373548518831, 34.194651498816341 ], [ -118.316479513220074, 34.185754922386998 ], [ -118.312003093977125, 34.18046780482144 ], [ -118.306277180094739, 34.176435562695708 ], [ -118.302967257110112, 34.17027456231088 ], [ -118.295250409116676, 34.164773250535696 ], [ -118.28793065052173, 34.155522111201904 ], [ -118.281654909378588, 34.152382821164636 ], [ -118.278406730412726, 34.148991739142346 ], [ -118.276264373741157, 34.141041902188043 ], [ -118.26974605403008, 34.120938257497166 ], [ -118.264942965706396, 34.113004266223612 ], [ -118.264004479332115, 34.112161241273093 ], [ -118.254381460729107, 34.107079853085963 ], [ -118.248517602693923, 34.102470663777645 ], [ -118.242112168178807, 34.09540645756033 ], [ -118.236042505152966, 34.089149243167142 ], [ -118.226823265935451, 34.08342376741524 ], [ -118.224787275294332, 34.082671642280346 ], [ -118.223360979221695, 34.082179553274109 ], [ -118.222629341919799, 34.081904508497125 ], [ -118.218183697638679, 34.078250312985425 ], [ -118.217963199930168, 34.073104494871245 ], [ -118.215263861937459, 34.067874491308309 ], [ -118.213686197111585, 34.060119669455077 ], [ -118.21274100997104, 34.055301782403248 ], [ -118.213305339450571, 34.047672118699658 ], [ -118.215761553257778, 34.043087483740216 ], [ -118.219704418610306, 34.034055136362859 ], [ -118.216296248312887, 34.03091099398651 ], [ -118.213077871965069, 34.029259808527407 ], [ -118.211049845425549, 34.028847667529895 ], [ -118.192786922801176, 34.020671568669705 ], [ -118.179814926445047, 34.020120591674747 ], [ -118.176909349734061, 34.018926413180751 ], [ -118.17171690597749, 34.016577102131365 ], [ -118.15919504324475, 34.0109993483522 ], [ -118.149579084696612, 34.002201932416654 ], [ -118.144218978767555, 33.995437649355829 ], [ -118.136860802105389, 33.987716175138097 ], [ -118.124263239368233, 33.975520356401994 ], [ -118.119261181797384, 33.964427104283146 ], [ -118.110857333639487, 33.957807545855694 ], [ -118.102400484138499, 33.951249985223789 ], [ -118.095683075270486, 33.94107559895366 ], [ -118.091786137822155, 33.935372373444935 ], [ -118.078777938000854, 33.917007617461294 ], [ -118.072432977419453, 33.912246202363434 ], [ -118.060116887394287, 33.902281409029513 ], [ -118.045383710411343, 33.893587428896303 ], [ -118.03489049652184, 33.88807372708154 ], [ -118.027768742135478, 33.884106255417045 ], [ -118.010266656446845, 33.874492101495129 ], [ -118.009031230261797, 33.873489024293889 ], [ -117.997211565064646, 33.866530294432209 ], [ -117.984475311668916, 33.859315658642046 ], [ -117.97905371138549, 33.85693538180854 ], [ -117.975347357461615, 33.855153195237918 ], [ -117.960956797249565, 33.846932493432419 ], [ -117.957762188953438, 33.845711331229175 ], [ -117.940320934597537, 33.835777496337137 ], [ -117.931779599615069, 33.832915065991614 ], [ -117.917321289712362, 33.818613473749174 ], [ -117.914499597719598, 33.815699361461938 ], [ -117.901764430348919, 33.803529847543665 ], [ -117.889623992680313, 33.791402374813295 ], [ -117.884728149093121, 33.787980165787594 ], [ -117.878565940561444, 33.782135926818277 ], [ -117.876949672084578, 33.780594864657914 ], [ -117.875195457834664, 33.779064795301899 ], [ -117.86658649557674, 33.768047509400823 ], [ -117.861423981516069, 33.760124360254856 ], [ -117.851082382975989, 33.754733910462235 ], [ -117.845194882842677, 33.751628657129281 ], [ -117.842373227603488, 33.748202592125999 ], [ -117.841389808746115, 33.745692614530476 ], [ -117.839216875027901, 33.742980582723497 ], [ -117.832795574012238, 33.740806321556249 ], [ -117.814523296711201, 33.73361461684695 ], [ -117.79442120163101, 33.71962503929533 ], [ -117.781182036103786, 33.710381672043034 ], [ -117.775683760741643, 33.702527644052751 ], [ -117.767547849966107, 33.690057633390666 ], [ -117.76275824696404, 33.682794627599634 ], [ -117.757313731001403, 33.677613529121359 ], [ -117.753661782990989, 33.669099619366065 ], [ -117.75126693058445, 33.666074600546011 ], [ -117.742771936185164, 33.655499450234977 ], [ -117.734695733505234, 33.645177297790759 ], [ -117.728999375817594, 33.638188179480281 ], [ -117.719512600653033, 33.628567918434825 ], [ -117.706609350423037, 33.614818578007601 ], [ -117.701507518178801, 33.610626404954552 ], [ -117.689801202053502, 33.604647899329841 ], [ -117.676195550324962, 33.598487287869695 ], [ -117.671078819553571, 33.59236816659476 ], [ -117.670835768083734, 33.580157501910712 ], [ -117.672102787061874, 33.559311173150967 ], [ -117.671943690932224, 33.547298507826063 ], [ -117.672881674676148, 33.542812692106942 ], [ -117.673638196935556, 33.531617058301826 ], [ -117.6667441093403, 33.524811840145802 ], [ -117.657600873334673, 33.502449924725667 ], [ -117.657929106887536, 33.496854087716073 ], [ -117.661132295725494, 33.491494407390434 ], [ -117.673077001953615, 33.476076483924714 ], [ -117.673031355694562, 33.470213616864982 ], [ -117.6689129748505, 33.467131443578609 ], [ -117.642022149365076, 33.452634208660882 ], [ -117.621727881262672, 33.439247368819267 ], [ -117.617838355981149, 33.436657211921975 ], [ -117.609708652382068, 33.42724598991051 ], [ -117.60400508759912, 33.418288899350763 ], [ -117.592817048517361, 33.396983833320625 ], [ -117.586922494240952, 33.388579732361293 ], [ -117.582339194608522, 33.385615561858295 ], [ -117.578494569029587, 33.38402439599821 ], [ -117.56449254777624, 33.378347795402675 ], [ -117.546570047310567, 33.367868131892934 ], [ -117.483551083238027, 33.323097282761239 ], [ -117.479120150880192, 33.311786419604402 ], [ -117.458917704502667, 33.295189004825993 ], [ -117.44224631845691, 33.273684901427963 ], [ -117.429830892861247, 33.263907641926771 ], [ -117.418215485031396, 33.248885574637931 ], [ -117.414669055169838, 33.242365601412132 ], [ -117.40476271882973, 33.235144372547779 ], [ -117.391797656619772, 33.223040156410512 ], [ -117.389219968518944, 33.215388264559493 ], [ -117.382592751707378, 33.204852284739609 ], [ -117.371121680526912, 33.200323931782911 ], [ -117.368101757005874, 33.198408860666859 ], [ -117.350690545299543, 33.17756474750653 ], [ -117.341264340180089, 33.163934764832248 ], [ -117.332974924314669, 33.147691913016033 ], [ -117.329467703933986, 33.136466107971927 ], [ -117.321330106571764, 33.121993219961965 ], [ -117.297635626275436, 33.084761432509595 ], [ -117.286334235352157, 33.048507121237954 ], [ -117.28402335504704, 33.041458253313216 ], [ -117.273727362960457, 33.026127351861419 ], [ -117.270738803193026, 33.016960529078247 ], [ -117.263661309222542, 33.010296483176838 ], [ -117.257880356088762, 33.004741451425843 ], [ -117.255851468358173, 32.996021602153171 ], [ -117.252244459726128, 32.980030776745316 ], [ -117.245053702887716, 32.960781862274786 ], [ -117.240394687291527, 32.932530215530221 ], [ -117.237039288031013, 32.921605293155196 ], [ -117.228841130356116, 32.913521130465938 ], [ -117.222869408300028, 32.903622092678397 ], [ -117.226035003938151, 32.894368393704347 ], [ -117.226890163855131, 32.887013568944802 ], [ -117.22834756951471, 32.872113912738826 ], [ -117.229789994003781, 32.857008258999961 ], [ -117.23518299983445, 32.847219649074134 ], [ -117.235648118455003, 32.842729752573582 ], [ -117.234038809630846, 32.838560772810268 ], [ -117.231324305229748, 32.825525923441198 ], [ -117.214987923959569, 32.806753693809533 ], [ -117.207979448129223, 32.796053653293107 ], [ -117.20608829178866, 32.790041705038519 ], [ -117.207690509751231, 32.777621007831357 ], [ -117.205730466276535, 32.769767094494178 ], [ -117.20482289929484, 32.766295131603407 ], [ -117.203641457129294, 32.761866178335183 ], [ -117.203023743854544, 32.759635201184935 ], [ -117.202702898151244, 32.758372215153294 ], [ -117.200987542354852, 32.75503022217142 ], [ -117.200041839073705, 32.754290204167837 ], [ -117.19335996500763, 32.747943109581414 ], [ -117.181591376369667, 32.742456838028261 ], [ -117.170631796617698, 32.730871743449441 ], [ -117.170013987353599, 32.730249737431748 ], [ -117.166764996695164, 32.726789710449331 ], [ -117.166025228578391, 32.725942705757845 ], [ -117.161234639128509, 32.722643622925361 ], [ -117.154591354475386, 32.723921367680759 ], [ -117.150602413781854, 32.723898233843649 ], [ -117.148413066602501, 32.72206320442185 ], [ -117.146926577706566, 32.719087226183817 ], [ -117.146880809037327, 32.713541358287287 ], [ -117.146903826472609, 32.71294637339782 ], [ -117.145767483706493, 32.703893553374904 ], [ -117.142914312690749, 32.701921505172351 ], [ -117.141518720195151, 32.700891483222541 ], [ -117.132908215461597, 32.694814341849096 ], [ -117.123800615479823, 32.694238052737965 ], [ -117.120765459918402, 32.692818986272123 ], [ -117.111796057200337, 32.685696861329667 ], [ -117.108485235818904, 32.677106959139337 ], [ -117.108867210520444, 32.675157018683969 ], [ -117.110377082311999, 32.668211235722218 ], [ -117.107182208660689, 32.660105325740851 ], [ -117.103498498702407, 32.650862427244896 ], [ -117.090457061401921, 32.617140812357412 ], [ -117.086438287996685, 32.583751485165934 ], [ -117.084553921686975, 32.579291531194826 ], [ -117.073052279622942, 32.565657486341934 ], [ -117.064204681449368, 32.559745343213635 ], [ -117.040193919910053, 32.549890812448169 ], [ -117.037440651306767, 32.548120767598824 ], [ -117.033984566205248, 32.545938710520183 ], [ -117.031231288389975, 32.544355661454311 ], [ -117.029705729376985, 32.542238664145003 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I505\", \"DIST_MILES\": 33.250000, \"DIST_KM\": 53.510000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -121.933211834838787, 38.848446464753863 ], [ -121.931877210175031, 38.816120039399195 ], [ -121.937180180025805, 38.784261855840036 ], [ -121.951727823103056, 38.719465516645535 ], [ -121.945235474975746, 38.679783032686075 ], [ -121.945040570468407, 38.635551629130482 ], [ -121.946885618653454, 38.606651028268409 ], [ -121.946109132440341, 38.532104189472683 ], [ -121.94619477080289, 38.527461182185021 ], [ -121.946218441111597, 38.525630175897405 ], [ -121.946185438913361, 38.510722048390122 ], [ -121.934490963922002, 38.462626050669485 ], [ -121.935524701037437, 38.425567414642856 ], [ -121.936782276324138, 38.421485838252828 ], [ -121.937445990848602, 38.418114062338077 ], [ -121.946457239191872, 38.379863101903275 ], [ -121.946459377991687, 38.374278104028285 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I510\", \"DIST_MILES\": 3.030000, \"DIST_KM\": 4.880000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -89.939314801209633, 30.059530483499397 ], [ -89.938124611294299, 30.047229719640832 ], [ -89.940024619812263, 30.041019858538064 ], [ -89.939368430840815, 30.02684113644877 ], [ -89.93994032931559, 30.015860359826153 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I515\", \"DIST_MILES\": 5.830000, \"DIST_KM\": 9.380000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -115.154189908944957, 36.174355023107282 ], [ -115.144806370694141, 36.175689984583329 ], [ -115.125683244300205, 36.169899111780467 ], [ -115.115437798829547, 36.169369119421432 ], [ -115.101783865305748, 36.169278116408009 ], [ -115.098083411344717, 36.168129142286865 ], [ -115.092538213476587, 36.165059212721779 ], [ -115.090554447535709, 36.158997354115783 ], [ -115.089700431088559, 36.145298674446252 ], [ -115.090524266214643, 36.141377766626022 ], [ -115.089127387664476, 36.133068960322312 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I516\", \"DIST_MILES\": 6.670000, \"DIST_KM\": 10.730000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -81.143352015751518, 32.099036682218347 ], [ -81.141177001159392, 32.097674786912314 ], [ -81.134844961616068, 32.093906085570644 ], [ -81.13125094374594, 32.093266184643227 ], [ -81.127642923461522, 32.091076359940764 ], [ -81.134874910345445, 32.071267171993313 ], [ -81.141687882134647, 32.053838853086283 ], [ -81.146387855658276, 32.042830261894601 ], [ -81.144617846328799, 32.040217427220625 ], [ -81.136095830928369, 32.036097830607645 ], [ -81.119417819599605, 32.031367474848572 ], [ -81.115190818647918, 32.030238637072806 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I520\", \"DIST_MILES\": 10.080000, \"DIST_KM\": 16.220000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -82.084061574415784, 33.493415059239823 ], [ -82.082459558378616, 33.488055236044616 ], [ -82.086418697940829, 33.474986694613698 ], [ -82.083351660134667, 33.466677968006422 ], [ -82.073799507509094, 33.45039749959421 ], [ -82.071312505179648, 33.436653967125757 ], [ -82.059014283230084, 33.423306407276677 ], [ -82.044579014628169, 33.410359840866128 ], [ -82.029639694504354, 33.407689918211879 ], [ -82.027236642881746, 33.407304929290135 ], [ -82.021552522722374, 33.405949971717654 ], [ -82.011596322081516, 33.401369127332174 ], [ -82.005859194769869, 33.401479117961507 ], [ -81.985388736290702, 33.405729088391396 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I526\", \"DIST_MILES\": 19.580000, \"DIST_KM\": 31.510000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -79.842687887735579, 32.819835489790428 ], [ -79.846350010538131, 32.820655484176818 ], [ -79.848578062080932, 32.822666449354379 ], [ -79.854155061741409, 32.835735195583389 ], [ -79.862738306207959, 32.839374147564797 ], [ -79.880088685940478, 32.852133939744917 ], [ -79.894996021751126, 32.860957806725253 ], [ -79.926597556593279, 32.884104437627379 ], [ -79.962662498090239, 32.891219415763153 ], [ -79.979974919287329, 32.895174395146363 ], [ -79.994425335087641, 32.89588443063689 ], [ -80.000894553320421, 32.895335454294383 ], [ -80.013049119131523, 32.891215471293691 ], [ -80.020266562345768, 32.884707565958593 ], [ -80.025195938374821, 32.87738369129633 ], [ -80.026676138056132, 32.871905797135035 ], [ -80.025387343206091, 32.862585996375813 ], [ -80.021557422853832, 32.854785175580943 ], [ -80.018146481094448, 32.848442321703459 ], [ -80.017841590089873, 32.844104412111861 ], [ -80.029592363769211, 32.829650660215727 ], [ -80.032826823629748, 32.816116928912436 ], [ -80.036634113111063, 32.809529052110776 ], [ -80.035933345835161, 32.79978625839513 ], [ -80.03188148611666, 32.789906478266566 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I535\", \"DIST_MILES\": 2.780000, \"DIST_KM\": 4.470000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -92.122977319750603, 46.765019261203463 ], [ -92.118934284672974, 46.764676223261425 ], [ -92.112724329625237, 46.759229251112018 ], [ -92.105430330532059, 46.755479237095621 ], [ -92.100784403692373, 46.749047285283815 ], [ -92.099570408923782, 46.747121277083217 ], [ -92.097755426625909, 46.74312726814351 ], [ -92.097747496566868, 46.73538728890265 ], [ -92.09772452448837, 46.732274297049315 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I540\", \"DIST_MILES\": 14.050000, \"DIST_KM\": 22.600000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -94.423936603457037, 35.293264382535618 ], [ -94.399170707988958, 35.312191669673489 ], [ -94.396775600136621, 35.317093527771668 ], [ -94.395295480276658, 35.327572261276956 ], [ -94.393151353439578, 35.336323030500822 ], [ -94.386734146864271, 35.338420919125262 ], [ -94.380790953852369, 35.340667809206543 ], [ -94.366912477978929, 35.349941459863551 ], [ -94.365203363239701, 35.359561218243485 ], [ -94.364715179431812, 35.385039616164327 ], [ -94.366821115282718, 35.403792193740706 ], [ -94.365600042483592, 35.409449050843634 ], [ -94.348646477239583, 35.421922623412463 ], [ -94.344328335044978, 35.425000518103694 ], [ -94.339178167616424, 35.428418398972262 ], [ -94.321210616930784, 35.435479098637018 ], [ -94.319844563621174, 35.437990031359092 ], [ -94.320638531555488, 35.447216828648848 ], [ -94.32150050850251, 35.455197654371851 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I55\", \"DIST_MILES\": 943.370000, \"DIST_KM\": 1518.220000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -90.151292588347701, 35.155711375090846 ], [ -90.128664061753994, 35.147490417011134 ], [ -90.086976117236404, 35.135420405912662 ], [ -90.076026895132685, 35.127756492515026 ], [ -90.072647828341161, 35.125292520472463 ], [ -90.067054702613746, 35.12475049301645 ], [ -90.075164948308739, 35.111071833578421 ], [ -90.076806084373345, 35.088043325272501 ], [ -90.073639042838707, 35.082061424733233 ], [ -90.070274982321351, 35.079650447847904 ], [ -90.061172787030657, 35.080181364111567 ], [ -90.057144708224641, 35.078891358178481 ], [ -90.028518141206348, 35.072723249788162 ], [ -90.026184095508683, 35.072231240361141 ], [ -90.026092122883142, 35.067562331172617 ], [ -90.023590098114923, 35.063320393345698 ], [ -90.021301060471487, 35.06187040238612 ], [ -90.017104994788639, 35.058811426319096 ], [ -90.013487955546822, 35.05372249379576 ], [ -90.003706863767917, 35.038951691067709 ], [ -90.002592971380722, 35.020932024232557 ], [ -90.002189107124437, 34.994656593752751 ], [ -90.002090101943011, 34.991890682689423 ], [ -89.999389013052451, 34.962793612439661 ], [ -89.994185858797948, 34.932654593364347 ], [ -89.991087769125514, 34.9134942117877 ], [ -89.990988711741309, 34.860196932759663 ], [ -89.976088376025146, 34.824099043749236 ], [ -89.96948823443114, 34.806597572364289 ], [ -89.963889109228262, 34.769199723065363 ], [ -89.963904062123078, 34.723916883182284 ], [ -89.966788039688495, 34.677900884043723 ], [ -89.951589723516747, 34.619503052031696 ], [ -89.94818665965505, 34.606602311275374 ], [ -89.946493604259786, 34.576302953949785 ], [ -89.939016484833132, 34.553720402935681 ], [ -89.917791199263064, 34.500105461293586 ], [ -89.91888921176205, 34.500105466307836 ], [ -89.902486153805597, 34.456004215047905 ], [ -89.898687166135701, 34.43730554275696 ], [ -89.898893190726668, 34.429706685365701 ], [ -89.912717539870343, 34.361676048194219 ], [ -89.913770582782305, 34.350705262601977 ], [ -89.914457610909494, 34.343484403898671 ], [ -89.919057745707619, 34.313540005393165 ], [ -89.919492760676903, 34.309908077705316 ], [ -89.919683772633917, 34.306422145362383 ], [ -89.922307858267473, 34.286040553920692 ], [ -89.926488982114734, 34.257709129631927 ], [ -89.925992742931342, 34.182708987190495 ], [ -89.921087629586665, 34.164311145928018 ], [ -89.893590104175644, 34.077511907868036 ], [ -89.869885635405694, 33.993211752844019 ], [ -89.865985938578206, 33.930312616706708 ], [ -89.85469453029387, 33.897972049314482 ], [ -89.842288088353328, 33.862613546835576 ], [ -89.839487973287021, 33.853115685158791 ], [ -89.840784271516782, 33.786015676515895 ], [ -89.841287951826786, 33.755518125603693 ], [ -89.834588727493653, 33.740316467218328 ], [ -89.830186449787263, 33.721815943207723 ], [ -89.814987943098359, 33.690615779427404 ], [ -89.812225735635948, 33.676689142809721 ], [ -89.800987290406198, 33.648720900479631 ], [ -89.793785060509435, 33.634820288193104 ], [ -89.785750782863289, 33.617844762654066 ], [ -89.779380356519809, 33.589720522697014 ], [ -89.773780114725483, 33.57452294771862 ], [ -89.771879508000026, 33.532020066524296 ], [ -89.765783148543846, 33.508720714241072 ], [ -89.76463906791129, 33.488843122617595 ], [ -89.764479075759908, 33.48672215670031 ], [ -89.764441082038573, 33.485143181531029 ], [ -89.765280306680296, 33.43162300915791 ], [ -89.767271381253579, 33.416353234115995 ], [ -89.775084762736995, 33.336227434357831 ], [ -89.787986068253531, 33.284428166261108 ], [ -89.801780313405558, 33.250126623225967 ], [ -89.807990284272478, 33.230503857784896 ], [ -89.812781278662555, 33.218926993564324 ], [ -89.821685318664407, 33.210126073775534 ], [ -89.848281434830128, 33.174726473174381 ], [ -89.860084454770558, 33.140725943513623 ], [ -89.86818649739125, 33.125128159599001 ], [ -89.871184519776833, 33.121626206177055 ], [ -89.890586693576324, 33.108427369915297 ], [ -89.894179723084321, 33.103628439515774 ], [ -89.895186724694383, 33.098227524404059 ], [ -89.896285712200822, 33.083529759186447 ], [ -89.905585784410974, 33.06203009760933 ], [ -89.933083085747839, 33.04003144987341 ], [ -89.939583160159899, 33.033229565416278 ], [ -89.948486258025866, 33.006031040044846 ], [ -89.967987391945854, 32.966629744106761 ], [ -89.971184383351755, 32.951032021509484 ], [ -89.972786394417184, 32.947431087055648 ], [ -89.978081453116999, 32.941633197256721 ], [ -90.00628779149875, 32.911432765177537 ], [ -90.016274903621849, 32.897204011360849 ], [ -90.022682975026598, 32.887034191776451 ], [ -90.024185981744537, 32.88013331787451 ], [ -90.026788003712937, 32.872530456805116 ], [ -90.046983267108786, 32.851832838148553 ], [ -90.057588356276781, 32.812332595350924 ], [ -90.058885320539133, 32.781834182655921 ], [ -90.064988396776144, 32.769036439182898 ], [ -90.065988399073575, 32.761033595999564 ], [ -90.050668084619403, 32.734735143799512 ], [ -90.04748601251967, 32.728235293009909 ], [ -90.047081990061585, 32.722635426492658 ], [ -90.050881987627633, 32.696936050692976 ], [ -90.056985061138306, 32.682135417859193 ], [ -90.060586102189816, 32.671435681467216 ], [ -90.063188039436554, 32.623237841306079 ], [ -90.068856128318785, 32.611489133369112 ], [ -90.069223124441208, 32.606183261106686 ], [ -90.069436104620536, 32.594876532242473 ], [ -90.070481107842923, 32.586037745790506 ], [ -90.075982191757774, 32.569338155471847 ], [ -90.094682556660899, 32.541239860386945 ], [ -90.096185567323758, 32.524642259574485 ], [ -90.10588277493035, 32.511538588947829 ], [ -90.116785023382846, 32.504840767019722 ], [ -90.128985322855343, 32.488239207817294 ], [ -90.130388360484773, 32.48504229286457 ], [ -90.130587375484779, 32.477241495278911 ], [ -90.13262443019012, 32.473011607887024 ], [ -90.141787671711697, 32.459640966915941 ], [ -90.143984735956693, 32.452844145491575 ], [ -90.143984770657127, 32.43074171622083 ], [ -90.143488767334787, 32.424943865350969 ], [ -90.147288884905706, 32.411241223349066 ], [ -90.1458848589984, 32.405245376576779 ], [ -90.145289852964964, 32.399542523165273 ], [ -90.146784919713184, 32.381945978737143 ], [ -90.152087102276141, 32.355643661302942 ], [ -90.153285142266725, 32.350844785804973 ], [ -90.161784393611327, 32.337044146512341 ], [ -90.162486418729941, 32.333744231757656 ], [ -90.159084343365635, 32.325245448390554 ], [ -90.158588347564347, 32.315746692511851 ], [ -90.16318848385734, 32.309845846324933 ], [ -90.166385584791229, 32.302945024911217 ], [ -90.167285618916026, 32.298246145892577 ], [ -90.168224666488982, 32.287545420877109 ], [ -90.172687804879644, 32.280545601631324 ], [ -90.174091854238412, 32.275746724964073 ] ], [ [ -90.207287783197245, 32.274846754959583 ], [ -90.21008787046955, 32.271646836813105 ], [ -90.20959189221054, 32.259047156756289 ], [ -90.214886998183346, 32.242247623067897 ], [ -90.227392144571155, 32.219447317162548 ], [ -90.23548628379902, 32.210189599739451 ], [ -90.243787449258207, 32.20344880604916 ], [ -90.250089545843025, 32.19545005057924 ], [ -90.27329088869493, 32.159051252108512 ], [ -90.301993191246851, 32.101051112881827 ], [ -90.319792405373974, 32.067753175299941 ], [ -90.338217783154704, 32.049668777450286 ], [ -90.362152169353422, 32.015050883093892 ], [ -90.385787787851669, 31.958856861757216 ], [ -90.404892385586606, 31.91935932045083 ], [ -90.411095604611802, 31.873559965353877 ], [ -90.415993774249984, 31.833861389605293 ], [ -90.42529404657067, 31.806562385810786 ], [ -90.45024418862711, 31.699249083310097 ], [ -90.455798594945534, 31.670467021896094 ], [ -90.456194876757763, 31.640367985297534 ], [ -90.468380631019755, 31.593951524525469 ], [ -90.470134730281444, 31.588392711082658 ], [ -90.474559942244539, 31.578646045129226 ], [ -90.476170014145936, 31.575690147910457 ], [ -90.478795159335263, 31.56786941239821 ], [ -90.479596421282139, 31.541971250778918 ], [ -90.477795756634706, 31.500172587447242 ], [ -90.479498305287109, 31.437772457603117 ], [ -90.478849994004221, 31.349501673707042 ], [ -90.477195116446296, 31.328274964465397 ], [ -90.478392441137146, 31.292051466693717 ], [ -90.478530472655223, 31.288614514245641 ], [ -90.480094795732938, 31.247725070159401 ], [ -90.480300760563381, 31.244381105103209 ], [ -90.482535565756493, 31.223492322258313 ], [ -90.482795541758719, 31.220976348350732 ], [ -90.484298200457957, 31.190276667535496 ], [ -90.478498600209576, 31.153577059945821 ], [ -90.492894799078726, 31.063676966537091 ], [ -90.503598311899708, 31.01107848384099 ], [ -90.505795199795131, 30.999793604910117 ], [ -90.510479987189697, 30.978088168734804 ], [ -90.522869854450605, 30.951566839045107 ], [ -90.524418687877215, 30.936570223562139 ], [ -90.524608375062215, 30.912141854092958 ], [ -90.533091980847857, 30.868421951688049 ], [ -90.533114427340038, 30.824814069614867 ], [ -90.532877169538438, 30.726286603010152 ], [ -90.532555321187459, 30.660248314288989 ], [ -90.505057695938504, 30.586769386227513 ], [ -90.503858834644262, 30.522743048658299 ], [ -90.503629589830496, 30.504341525714633 ], [ -90.503553526886179, 30.49938065039159 ], [ -90.500921424271169, 30.49543074876701 ], [ -90.491239042926281, 30.481971040253285 ], [ -90.488919951736378, 30.478801108173908 ], [ -90.482510697489943, 30.469793301710652 ], [ -90.460170804861917, 30.437742997656372 ], [ -90.454356573722308, 30.429556177460718 ], [ -90.446704287221294, 30.420807372177162 ], [ -90.436419949246172, 30.414414520931782 ], [ -90.433436837133414, 30.410963598456593 ], [ -90.412683632030692, 30.338814181236383 ], [ -90.401970865539283, 30.285318360151475 ], [ -90.398621603747927, 30.266105784654034 ], [ -90.417297584246569, 30.215487973344157 ], [ -90.440834946420239, 30.188417629534623 ], [ -90.446037938561489, 30.174148993611475 ], [ -90.445793795487134, 30.161679319748355 ], [ -90.451103688176389, 30.137669942075814 ], [ -90.4377898053244, 30.092793121548446 ], [ -90.435706696488978, 30.088561232023547 ], [ -90.431922552780833, 30.085791304576833 ] ], [ [ -87.61288995011995, 41.848551364520354 ], [ -87.630903558693547, 41.847251222515581 ], [ -87.643178991705284, 41.847048119248036 ], [ -87.658194408610626, 41.842627026034855 ], [ -87.668021619302635, 41.837446980607602 ], [ -87.678557988006887, 41.837179889561519 ], [ -87.684913168070196, 41.835458845838161 ], [ -87.688964282046285, 41.834333817842648 ], [ -87.724984255293009, 41.822919566187366 ], [ -87.743317751674411, 41.817194428700766 ], [ -87.764093284105698, 41.810617279048081 ], [ -87.80186022542506, 41.798940022162519 ], [ -87.808673391547103, 41.79676197745512 ], [ -87.817660668227418, 41.795929906314946 ], [ -87.821063721413722, 41.793816890732529 ], [ -87.842471864089134, 41.774113838965434 ], [ -87.8496278398828, 41.765175839704476 ], [ -87.867473329637065, 41.761887717932268 ], [ -87.89201110259809, 41.760808528180014 ], [ -87.907025568324144, 41.75992341406414 ], [ -87.915662764800487, 41.757065366173016 ], [ -87.930326038955727, 41.75033630072577 ], [ -87.94457028335168, 41.741574218923802 ], [ -87.988196313658804, 41.72609390755477 ], [ -88.029663124578889, 41.705085705267436 ], [ -88.03297418978714, 41.703399692437493 ], [ -88.067497879208489, 41.685810562423988 ], [ -88.124865040776456, 41.655586364518591 ], [ -88.155001674858255, 41.639862267860522 ], [ -88.162264792324834, 41.634437250710242 ], [ -88.163851632281578, 41.625122273684504 ], [ -88.163110900898118, 41.594230378366696 ], [ -88.16385780676886, 41.589004392109246 ], [ -88.168656847303694, 41.583621388223996 ], [ -88.178392002491535, 41.575820370751053 ], [ -88.180346001759958, 41.572833372139492 ], [ -88.18138295553365, 41.569217379763309 ], [ -88.180245171958248, 41.536304495750933 ], [ -88.188859137765547, 41.521465510129239 ], [ -88.198243125737548, 41.506237524171475 ], [ -88.197433808303472, 41.486301622006948 ], [ -88.196938649076387, 41.473388692413167 ], [ -88.195740415070532, 41.456100787932058 ], [ -88.191947110717877, 41.352021341674885 ], [ -88.19094671722344, 41.320679505206009 ], [ -88.192396720715649, 41.315369532408404 ], [ -88.19817991307788, 41.30994156002226 ], [ -88.214606551201769, 41.302052602779682 ], [ -88.229034082604514, 41.291081668837379 ], [ -88.239754440620388, 41.277859753493779 ], [ -88.246468602928786, 41.261780858795568 ], [ -88.249664648255276, 41.25003193664557 ], [ -88.255478540206738, 41.24316197735596 ], [ -88.316101185830689, 41.195131274707563 ], [ -88.32006811163086, 41.190801287567737 ], [ -88.321990941852306, 41.185361292350237 ], [ -88.324950649110448, 41.176221298129825 ], [ -88.329833570865731, 41.171281309705932 ], [ -88.387191087678005, 41.12540236222204 ], [ -88.397201106470249, 41.120122361902247 ], [ -88.413878376489777, 41.117162372577461 ], [ -88.440574798710131, 41.112272382693241 ], [ -88.445456790086666, 41.109354375280894 ], [ -88.449607645921816, 41.10364335448245 ], [ -88.451110257817334, 41.093633312282229 ], [ -88.454122585466791, 41.076101236063231 ], [ -88.456907438039636, 41.071123213215834 ], [ -88.482267125864396, 41.050382095593022 ], [ -88.505978722012415, 41.02616995766445 ], [ -88.526319299550494, 41.019940990120489 ], [ -88.532728406118693, 41.016041988080786 ], [ -88.543379111884661, 40.985143076091802 ], [ -88.575187188750505, 40.950990513322324 ], [ -88.64312861935133, 40.918582008440737 ], [ -88.665476378898148, 40.907904163547357 ], [ -88.669497495177424, 40.904421205299116 ], [ -88.671465517283067, 40.899802252212837 ], [ -88.67136629258134, 40.881075422680389 ], [ -88.671267198830549, 40.873442492042088 ], [ -88.671259065542358, 40.862162594857288 ], [ -88.671975980294846, 40.852694682619713 ], [ -88.684259167756409, 40.831244900688382 ], [ -88.69417035101371, 40.817695039937746 ], [ -88.704966307578431, 40.785453343636142 ], [ -88.718706478623773, 40.76390455184 ], [ -88.728304685755489, 40.756073631940559 ], [ -88.737146907381003, 40.748443694138572 ], [ -88.737437006849689, 40.741005692520964 ], [ -88.737437258110148, 40.72024568704559 ], [ -88.750087924313917, 40.699974700764621 ], [ -88.773420190698218, 40.662315753909873 ], [ -88.777745366919689, 40.660114765597271 ], [ -88.79917014976651, 40.656524823556168 ], [ -88.804785385289364, 40.653152840845316 ], [ -88.814444946070623, 40.634903882591551 ], [ -88.821021386185436, 40.617862918655455 ], [ -88.860834115563435, 40.589936093744377 ], [ -88.888804202338079, 40.580723216804969 ], [ -88.893671403237576, 40.57820624099854 ], [ -88.90638298872372, 40.566895317037677 ], [ -88.909389188427951, 40.559434347039762 ], [ -88.91273135395025, 40.55557337048954 ], [ -88.934826305706025, 40.541295504667872 ], [ -88.943669636885133, 40.53948754979686 ], [ -88.945019685726706, 40.539345556337267 ], [ -88.996199476540639, 40.53868979103094 ], [ -89.002951730978936, 40.538911832218297 ], [ -89.008109947879717, 40.539105875211817 ], [ -89.020187465543202, 40.538804978948207 ], [ -89.024429672577327, 40.536745024088688 ], [ -89.027267857576206, 40.531755070794333 ], [ -89.02851963210054, 40.484926294846787 ], [ -89.031114128209552, 40.466207407077547 ], [ -89.021822142563011, 40.446817399608022 ], [ -89.022768266880888, 40.442728427861127 ], [ -89.026537531262576, 40.437525491415855 ], [ -89.027376604396224, 40.43567450883431 ], [ -89.048076834916444, 40.41742582134038 ], [ -89.059589667692919, 40.399737040709219 ], [ -89.063923901734611, 40.396937104961744 ], [ -89.072270275459402, 40.395327209429162 ], [ -89.076428484123824, 40.39339726790412 ], [ -89.092062394061259, 40.379718528004638 ], [ -89.110847625373253, 40.35583889768165 ], [ -89.131416660167176, 40.345207220140416 ], [ -89.152032810355578, 40.328289595713265 ], [ -89.160608414352154, 40.314457804632532 ], [ -89.160608467405979, 40.311649824756032 ], [ -89.161829516485085, 40.311619841000919 ], [ -89.182384509060512, 40.302159182659636 ], [ -89.20642583651447, 40.281606668335336 ], [ -89.21121011265889, 40.2767697733711 ], [ -89.213682390434769, 40.266820889087818 ], [ -89.219602752408477, 40.259611031930646 ], [ -89.227927193333969, 40.253149204429107 ], [ -89.240775748695754, 40.250048414804034 ], [ -89.251495150877687, 40.243010623757179 ], [ -89.272812058543565, 40.224242073306037 ], [ -89.280098375590498, 40.219420222107239 ], [ -89.3195060803872, 40.185051203327319 ], [ -89.327937467421847, 40.184872341930507 ], [ -89.345218254348154, 40.181862663458659 ], [ -89.399580753755075, 40.181424560277243 ], [ -89.416121509316824, 40.178353887305413 ], [ -89.418036589988745, 40.173933000195518 ], [ -89.417578545274154, 40.160006247757828 ], [ -89.416358407609863, 40.112415095010817 ], [ -89.41649540148245, 40.105075231884726 ], [ -89.41850248456862, 40.098674391722547 ], [ -89.435036229434402, 40.079205122800097 ], [ -89.444572667726348, 40.071976482313623 ], [ -89.451591981974204, 40.059796892096017 ], [ -89.478228206906721, 40.028998201987136 ], [ -89.492304870768635, 40.023169695586461 ], [ -89.496592072291548, 40.020277873694653 ], [ -89.500117230627964, 40.009586214722781 ], [ -89.505259312210498, 40.000030423566642 ], [ -89.528582848726401, 39.976474410405942 ], [ -89.535524746744386, 39.969879414585129 ], [ -89.556253777355721, 39.958377423831948 ], [ -89.557817696991435, 39.95503943352545 ], [ -89.558458369053866, 39.94503046643846 ], [ -89.583406038888427, 39.916541584617555 ], [ -89.594743931680966, 39.903488658935458 ], [ -89.594003800313331, 39.899860675446746 ], [ -89.596688199991604, 39.877708789939142 ], [ -89.594887415716727, 39.853820902145387 ], [ -89.593131675879661, 39.831601002846966 ], [ -89.592582374186321, 39.822422044344741 ], [ -89.595449840409259, 39.801659160636525 ], [ -89.599455529125549, 39.786412261617258 ], [ -89.607289915490711, 39.755249481500087 ], [ -89.622480387763062, 39.746590665378626 ], [ -89.636114932467166, 39.743401804940795 ], [ -89.642478163747938, 39.739640891201702 ], [ -89.64438519849881, 39.734459955128443 ], [ -89.642713734912917, 39.683641421441678 ], [ -89.647733797096322, 39.673242555799881 ], [ -89.646703057191274, 39.589953330621164 ], [ -89.645756492801951, 39.524046944314371 ], [ -89.642670869262375, 39.322070829522119 ], [ -89.641769999514949, 39.27738899427365 ], [ -89.641548468983231, 39.250048484095934 ], [ -89.641693353345929, 39.233767330024001 ], [ -89.64928435326091, 39.218649189170399 ], [ -89.681121654387937, 39.175267786073604 ], [ -89.683212682366914, 39.172216757571299 ], [ -89.685546714857338, 39.168771725364607 ], [ -89.69988294793319, 39.148198532744935 ], [ -89.737275807605641, 39.096677047719687 ], [ -89.751131212174755, 39.085926943102152 ], [ -89.755350418718464, 39.080776879959615 ], [ -89.755723552411709, 39.03660646402296 ], [ -89.750001332749491, 39.023945352493492 ], [ -89.749780387448794, 38.998871128899339 ], [ -89.7492842990073, 38.974476243894067 ], [ -89.750856347145302, 38.969845265755936 ], [ -89.800518389472259, 38.932385473314639 ], [ -89.829182524279759, 38.902806667625399 ], [ -89.838536875934309, 38.888996762335474 ], [ -89.888991742220426, 38.816808328217085 ], [ -89.895118912989247, 38.795827490631623 ], [ -89.9069592239114, 38.752378837039963 ], [ -89.908645326553483, 38.746480890932844 ], [ -89.912453646106869, 38.732786024797491 ], [ -89.91745802152461, 38.718195172688361 ], [ -89.920777181012909, 38.71607420464489 ], [ -89.932183687635344, 38.712202284987875 ], [ -89.958605803451221, 38.707796432736558 ], [ -89.980037706556402, 38.703875558227736 ], [ -89.98783504360155, 38.701411614597603 ], [ -89.9950223763732, 38.696623691892952 ], [ -90.011571124205872, 38.681147968376791 ], [ -90.019414447296498, 38.675975088732827 ], [ -90.032071920561904, 38.672950229974752 ], [ -90.064513148847837, 38.663310609967375 ], [ -90.092362134295584, 38.662750859730366 ], [ -90.09857235195868, 38.662864913081236 ], [ -90.106941672743559, 38.659844016012897 ], [ -90.129800614400565, 38.643826372326735 ], [ -90.138872015711613, 38.634140545747293 ], [ -90.143099186902333, 38.631459608658467 ], [ -90.146342286545092, 38.633126620748669 ], [ -90.160601824383093, 38.6287017879499 ], [ -90.163454942493615, 38.626564833492885 ], [ -90.168491203374415, 38.616551974184326 ], [ -90.171420315837821, 38.615381010964192 ], [ -90.182544682867444, 38.618093081481298 ], [ -90.18925089846725, 38.62042011737244 ], [ -90.194180116892468, 38.614931213094948 ], [ -90.208073640850529, 38.610422377131322 ], [ -90.208790666302804, 38.610380383760095 ], [ -90.212918828144922, 38.608282439733038 ], [ -90.216123037009567, 38.596540580147227 ], [ -90.214323013880119, 38.591711610885596 ], [ -90.215452094754497, 38.586683668877285 ], [ -90.228994634218537, 38.578561863630654 ], [ -90.234312857364131, 38.573961953492912 ], [ -90.23887504412599, 38.570570025222466 ], [ -90.243552260611978, 38.564002128201345 ], [ -90.256995746057825, 38.559641266701192 ], [ -90.263304997108477, 38.553793359925344 ], [ -90.270332230944319, 38.552901410040491 ], [ -90.280159557067734, 38.551779479012289 ], [ -90.304246430744101, 38.540381733213955 ], [ -90.321397135858589, 38.522953007819119 ], [ -90.332246525707532, 38.5186341164315 ], [ -90.335916706067536, 38.511653208184256 ], [ -90.33946489009773, 38.503845307675327 ], [ -90.342379026729532, 38.499073367783744 ], [ -90.352145420337706, 38.490024467464913 ], [ -90.373134309526321, 38.464271703971278 ], [ -90.376400500410739, 38.453544768240661 ], [ -90.38000170894918, 38.441833838034462 ], [ -90.389294224066489, 38.413937005814461 ], [ -90.38280915848479, 38.396355042703576 ], [ -90.380902282500543, 38.373200128662567 ], [ -90.39546792763457, 38.348374305898673 ], [ -90.39904610768285, 38.339303360618032 ], [ -90.401785307224529, 38.324254434685024 ], [ -90.402502467324865, 38.306233510357536 ], [ -90.405844642424768, 38.296532564931091 ], [ -90.402960614271379, 38.288872582000366 ], [ -90.404180748445981, 38.276124638564418 ], [ -90.402464794003407, 38.263505681267318 ], [ -90.403708097337699, 38.233307616252738 ], [ -90.406173330590377, 38.216633499530019 ], [ -90.403518398853251, 38.201855382372294 ], [ -90.400039346032514, 38.197255341377151 ], [ -90.395644275079533, 38.191994295544866 ], [ -90.392684223674962, 38.188882268843898 ], [ -90.371641840330952, 38.169823121387061 ], [ -90.360227614400372, 38.161973070175868 ], [ -90.357679589962743, 38.157925047601672 ], [ -90.352003524180049, 38.150105006758515 ], [ -90.337118193203992, 38.14426498336784 ], [ -90.31309274928303, 38.128303940568664 ], [ -90.299420885940023, 38.089176850728009 ], [ -90.291669918602892, 38.071502831904425 ], [ -90.257466567870452, 38.035923930844746 ], [ -90.233478994155462, 38.020195836735837 ], [ -90.223568824809121, 38.005943767336738 ], [ -90.201229106079367, 37.988433552109576 ], [ -90.186564624194702, 37.969814383911825 ], [ -90.157755635798864, 37.956424223867174 ], [ -90.1413130949975, 37.946312157164925 ], [ -90.120972426882517, 37.936542107982802 ], [ -90.110787114836427, 37.928604099566599 ], [ -90.09617663206545, 37.924411090006082 ], [ -90.088645411176728, 37.918182101991341 ], [ -90.076515028466176, 37.913032116042096 ], [ -90.067862813554015, 37.901634169423815 ], [ -90.039977027208948, 37.882034324874894 ], [ -90.026830711398077, 37.867893466612145 ], [ -89.9857077515843, 37.833816779470745 ], [ -89.96957142892289, 37.82042378071813 ], [ -89.94817806807562, 37.797271831232138 ], [ -89.913379519318539, 37.746213005823286 ], [ -89.898157336410108, 37.717655936472759 ], [ -89.892969005717276, 37.710865892546849 ], [ -89.892045949979959, 37.709781883958158 ], [ -89.887803680280541, 37.704341843306572 ], [ -89.875115890829335, 37.689064700869231 ], [ -89.84158155986637, 37.64275317634474 ], [ -89.802830514963773, 37.615222407839134 ], [ -89.778155137489662, 37.596651830023866 ], [ -89.772852792034087, 37.591249687343186 ], [ -89.732956453508535, 37.548829761859544 ], [ -89.667921365668306, 37.486809091749976 ], [ -89.638523931718069, 37.426339437134111 ], [ -89.624614193013244, 37.39689359506027 ], [ -89.604746096096349, 37.355141803757888 ], [ -89.602167950394573, 37.349759829316874 ], [ -89.601472913170738, 37.348408835341438 ], [ -89.567649892063912, 37.277009149951674 ], [ -89.567542494827265, 37.260061282004287 ], [ -89.567038850363787, 37.240446278839933 ], [ -89.566748666403626, 37.236166242052136 ], [ -89.564413462719884, 37.232103191547573 ], [ -89.551793830673162, 37.221353014703674 ], [ -89.543508395911516, 37.213879900890348 ], [ -89.539632044961436, 37.206921824635934 ], [ -89.537998711315311, 37.199620762378004 ], [ -89.533809351201555, 36.921861310022578 ], [ -89.533427039408565, 36.892642038766915 ], [ -89.533090833141173, 36.87353451580659 ], [ -89.533029788422766, 36.86937261970607 ], [ -89.532877631171488, 36.854613988003415 ], [ -89.531800825496234, 36.779984853099705 ], [ -89.537438841314966, 36.767336140217274 ], [ -89.537965769407819, 36.758955345644331 ], [ -89.538514391995349, 36.650819184006252 ], [ -89.545205525047834, 36.635968547019807 ], [ -89.577379181805497, 36.572371107976203 ], [ -89.577608185132874, 36.571502130350659 ], [ -89.600687626296263, 36.51869246619512 ], [ -89.604936738370739, 36.518791449403039 ], [ -89.605600733000969, 36.511692638816037 ], [ -89.612474913435719, 36.511620618341958 ], [ -89.614466946317634, 36.505611774511088 ], [ -89.679691663599016, 36.449372927351817 ], [ -89.69632413360938, 36.42535245420693 ], [ -89.693013042984887, 36.424254489608586 ], [ -89.685390832354173, 36.42443350633517 ], [ -89.691228002961537, 36.410276828690805 ], [ -89.701550311449353, 36.38585638618607 ], [ -89.701062369341187, 36.300664428587254 ], [ -89.702748424385632, 36.295266554433098 ], [ -89.726919199640719, 36.256087448598805 ], [ -89.731611220431859, 36.231066997014011 ], [ -89.748098613817859, 36.215999302719226 ], [ -89.752356720264757, 36.210777395032444 ], [ -89.753836735877911, 36.205398500269254 ], [ -89.752958215089947, 36.13839898050967 ], [ -89.754614198056572, 36.127969195138334 ], [ -89.76176337860521, 36.118020350716662 ], [ -89.795608352958894, 36.090063665899287 ], [ -89.859277094849432, 36.037524254772784 ], [ -89.872766429260864, 36.024344423933407 ], [ -89.874963458020716, 36.01954550957592 ], [ -89.874597260033056, 35.999575949896098 ], [ -89.874269041911219, 35.928895436055434 ], [ -89.8743070405163, 35.927990454760064 ], [ -89.87425303055646, 35.92520251367214 ], [ -89.87452801945804, 35.91831365620947 ], [ -89.876916088206897, 35.914834711804581 ], [ -89.918413374596724, 35.887003015940607 ], [ -89.925249583538886, 35.881685086258202 ], [ -90.044897104950479, 35.705373616059951 ], [ -90.050314278753376, 35.698086777791772 ], [ -90.054999426026441, 35.69052694698015 ], [ -90.162843631801977, 35.541070480067908 ], [ -90.22343042521365, 35.437729053120975 ], [ -90.240848955868302, 35.40956576760842 ], [ -90.273534982649323, 35.392083149197752 ], [ -90.277059094145685, 35.389825193375351 ], [ -90.279470168091621, 35.385244295321485 ], [ -90.279310144579497, 35.35962490200032 ], [ -90.218158302970593, 35.244637631713822 ], [ -90.209209036242683, 35.219610197074068 ], [ -90.206507959235765, 35.212190362378053 ], [ -90.19255358562468, 35.171000268489941 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I564\", \"DIST_MILES\": 3.000000, \"DIST_KM\": 4.840000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -76.307948245273749, 36.944469447819309 ], [ -76.300318968444131, 36.936259473540112 ], [ -76.27971830682911, 36.922038494771641 ], [ -76.276102193191022, 36.919566498511138 ], [ -76.271707071150615, 36.918529490755262 ], [ -76.267068938403796, 36.916846486313254 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I565\", \"DIST_MILES\": 21.890000, \"DIST_KM\": 35.220000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -86.913335398403774, 34.657649245796541 ], [ -86.861644258992783, 34.654704375233329 ], [ -86.843668510974396, 34.655624393333078 ], [ -86.841593424634013, 34.655731395505569 ], [ -86.839258327482241, 34.65584939800236 ], [ -86.8300109425968, 34.656413406999505 ], [ -86.797607589370159, 34.661411411180218 ], [ -86.789085237382039, 34.66045743700225 ], [ -86.787247160814957, 34.660652438557221 ], [ -86.768950400473202, 34.661510465472929 ], [ -86.729108812953513, 34.672389381519025 ], [ -86.70063473760834, 34.685382250894975 ], [ -86.680186976133299, 34.697860151096862 ], [ -86.671649662367301, 34.705272100878986 ], [ -86.669108568639459, 34.705310099231539 ], [ -86.66335635844537, 34.709041074971765 ], [ -86.62838108407179, 34.718822013987641 ], [ -86.624779954256596, 34.720203007151873 ], [ -86.596550942406822, 34.730059967179159 ], [ -86.586509597360802, 34.738810939037073 ], [ -86.563948903215675, 34.75857078273777 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I57\", \"DIST_MILES\": 381.880000, \"DIST_KM\": 614.580000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -87.624727985632788, 41.71533925563574 ], [ -87.64843279393628, 41.714733013734822 ], [ -87.651965883672986, 41.713236983409971 ], [ -87.652842654906749, 41.701378022466649 ], [ -87.658945736795204, 41.695551986636985 ], [ -87.661501671477808, 41.688605991610046 ], [ -87.662661149574902, 41.663128090931771 ], [ -87.66110456683414, 41.63903020797008 ], [ -87.662965564937608, 41.636142205401761 ], [ -87.675836801813389, 41.627636142057597 ], [ -87.687166969655394, 41.618496099813726 ], [ -87.708880299320313, 41.601814030734133 ], [ -87.734469679789882, 41.582572973311329 ], [ -87.739672744825512, 41.578234967874664 ], [ -87.742419731372749, 41.573931978849771 ], [ -87.74353258387579, 41.566173023502884 ], [ -87.742379136824681, 41.506332426511634 ], [ -87.745133750194569, 41.48825838716273 ], [ -87.752495463503379, 41.469638226147332 ], [ -87.757088278670096, 41.457492103029743 ], [ -87.759673529270017, 41.426909899444397 ], [ -87.761222082673157, 41.408587779679493 ], [ -87.76837804327387, 41.398120652958767 ], [ -87.780852044868595, 41.382094453793897 ], [ -87.813789438412115, 41.352652037085868 ], [ -87.819502982876458, 41.326643887434003 ], [ -87.82270672506084, 41.311803806304013 ], [ -87.830809612676305, 41.295320690225573 ], [ -87.866461270192687, 41.221273360857872 ], [ -87.86714799003957, 41.206579366864375 ], [ -87.865430273750405, 41.175161394202384 ], [ -87.86155405335515, 41.171232413235067 ], [ -87.851376634309105, 41.168531458122345 ], [ -87.848415507128891, 41.167463471197848 ], [ -87.844463283445137, 41.163312489626456 ], [ -87.837092665947637, 41.145193526389583 ], [ -87.835864111490039, 41.119073539321214 ], [ -87.834864520629793, 41.090578551490466 ], [ -87.83797649609788, 41.084173542881601 ], [ -87.842401561053066, 41.080232529422283 ], [ -87.848757715657243, 41.07774150932925 ], [ -87.869220349441505, 41.076635442362416 ], [ -87.879741580469414, 41.071653411492065 ], [ -87.88550955385729, 41.061895400835624 ], [ -87.904948037430202, 41.011373391744335 ], [ -87.905512865361416, 41.00293139900544 ], [ -87.906473791417568, 40.997484428049859 ], [ -87.911097800807298, 40.988912512110886 ], [ -87.926737664847877, 40.948640920986826 ], [ -87.928171441591815, 40.930564118423888 ], [ -87.934549524760712, 40.923754177481534 ], [ -87.944773751891475, 40.919272200434634 ], [ -87.950357851296133, 40.915164231317718 ], [ -87.967386881750556, 40.884322527627695 ], [ -87.985591172340676, 40.869032647421498 ], [ -87.989100170726473, 40.862242712779015 ], [ -87.989969916370882, 40.843543916567839 ], [ -87.997637964270282, 40.832245019889385 ], [ -87.999048776322539, 40.817024183563738 ], [ -87.998621398470647, 40.792576453949643 ], [ -88.000063369037164, 40.787895501501104 ], [ -88.006723492244078, 40.779865603436875 ], [ -88.006144048561353, 40.751495915388148 ], [ -88.006432977244259, 40.7419749373177 ], [ -88.008738027252477, 40.737114944767249 ], [ -88.025782565122256, 40.722084979772049 ], [ -88.027979623496208, 40.718254983713749 ], [ -88.027750591369184, 40.714714983929241 ], [ -88.027567435012131, 40.692123987263109 ], [ -88.03535665311388, 40.678154993598397 ], [ -88.034693420034117, 40.645454993103648 ], [ -88.038103494664398, 40.634803991477789 ], [ -88.038477422930868, 40.620643990016212 ], [ -88.042864568749948, 40.614074985306516 ], [ -88.055659056110542, 40.603824968352598 ], [ -88.059474190490945, 40.59831696073482 ], [ -88.060137984293405, 40.553856933794115 ], [ -88.06537916577976, 40.543205914135761 ], [ -88.082881879153049, 40.524704848871643 ], [ -88.085017902525024, 40.507095822149225 ], [ -88.096165367252411, 40.488140740368721 ], [ -88.111112026792554, 40.462345605913065 ], [ -88.112340071632403, 40.454765577579082 ], [ -88.113660100379988, 40.435962513819788 ], [ -88.128926809595441, 40.400440329264498 ], [ -88.146467678655327, 40.365284119343947 ], [ -88.182183573791505, 40.320113747029282 ], [ -88.184189688655891, 40.311232699198271 ], [ -88.184128687591652, 40.308264687575118 ], [ -88.184059686833905, 40.3042936719539 ], [ -88.183945705106566, 40.271613540679915 ], [ -88.20437077337111, 40.222373047567977 ], [ -88.268124910623257, 40.160142050168226 ], [ -88.283704541836499, 40.146042973147019 ], [ -88.287641704552016, 40.142979961395753 ], [ -88.303603366952387, 40.128659906017539 ], [ -88.305228419640528, 40.119809833536628 ], [ -88.304045259557611, 40.068966357559439 ], [ -88.302953025504323, 39.928071179660229 ], [ -88.29828368448139, 39.919739195033884 ], [ -88.27971260182575, 39.905610140963013 ], [ -88.269289995951425, 39.897801115929205 ], [ -88.26687183181383, 39.894352123031723 ], [ -88.265307539144942, 39.879166225600258 ], [ -88.264444237617028, 39.791592882046196 ], [ -88.265214015087864, 39.773603021577685 ], [ -88.289384820320564, 39.7500512904967 ], [ -88.292650901903571, 39.744024345067366 ], [ -88.292154125641389, 39.681753780836161 ], [ -88.29370983049354, 39.651781992442345 ], [ -88.294289381377297, 39.612853263708146 ], [ -88.312699749438877, 39.582183448331222 ], [ -88.313583992707066, 39.521193833937339 ], [ -88.321900061577722, 39.502844916381662 ], [ -88.321998937059931, 39.491512090592835 ], [ -88.321708851419743, 39.484455222150295 ], [ -88.321418674458087, 39.468792512582745 ], [ -88.325080730887336, 39.461746630672643 ], [ -88.327979812424175, 39.459671659765569 ], [ -88.375093123743255, 39.428403123064598 ], [ -88.377855197148648, 39.426476154186162 ], [ -88.391740568083193, 39.417275304581537 ], [ -88.395990630514447, 39.410485432016557 ], [ -88.413034747776067, 39.374136144124428 ], [ -88.433275840553421, 39.330577035110814 ], [ -88.437730859910886, 39.321357228895117 ], [ -88.440004799406623, 39.311557436539566 ], [ -88.460787117872513, 39.287127969618126 ], [ -88.471072122258548, 39.265102459854425 ], [ -88.482081165523624, 39.2355580979238 ], [ -88.484515154321414, 39.219228429314043 ], [ -88.486704196919391, 39.214940518740306 ], [ -88.497485446325115, 39.202248790038276 ], [ -88.503191598870913, 39.191610041498045 ], [ -88.505175637687287, 39.183821217143098 ], [ -88.506441494638096, 39.152090855944287 ], [ -88.508349554586943, 39.149740918830069 ], [ -88.52328111259655, 39.146564108225192 ], [ -88.5338015045878, 39.144851229075435 ], [ -88.551854166185507, 39.141700435712231 ], [ -88.557850362134076, 39.138820534227463 ], [ -88.562611492387731, 39.13464364285651 ], [ -88.565426546704003, 39.1304927340476 ], [ -88.568562536121533, 39.120482922821132 ], [ -88.573300513453901, 39.105793194755925 ], [ -88.58118162398064, 39.094254427229671 ], [ -88.58214216200551, 39.05917498506787 ], [ -88.586720115294511, 39.046643197341716 ], [ -88.587535500780035, 39.003095873305014 ], [ -88.58994652041396, 38.997373956116157 ], [ -88.595622670031304, 38.991373036150826 ], [ -88.609517011218543, 38.984453133519409 ], [ -88.62080829207585, 38.975966247567243 ], [ -88.647297952706097, 38.946215632506863 ], [ -88.681798753793672, 38.918913983129599 ], [ -88.688802910616062, 38.914703037045221 ], [ -88.69364801817639, 38.912078070690903 ], [ -88.71187541848434, 38.901584203546065 ], [ -88.745445132912707, 38.872146562745854 ], [ -88.774749986142851, 38.851806918908899 ], [ -88.785454282421256, 38.839306121699316 ], [ -88.794045506094577, 38.829037289691399 ], [ -88.801697713311398, 38.824551383231977 ], [ -88.818582154586196, 38.814804590637941 ], [ -88.840532635530209, 38.793186981466164 ], [ -88.869822315124864, 38.78057630583222 ], [ -88.876429448682515, 38.776326398942778 ], [ -88.888056645875594, 38.765958603311624 ], [ -88.90323992237019, 38.746198918450538 ], [ -88.942441550919, 38.710417247960699 ], [ -88.969572652120632, 38.689146457445453 ], [ -88.972853911000882, 38.680388498426517 ], [ -88.972564828982371, 38.634066617441199 ], [ -88.972038013974512, 38.624087640697731 ], [ -88.971519083530779, 38.619891648963623 ], [ -88.964767501306682, 38.589407694936604 ], [ -88.964715557922446, 38.535887836429609 ], [ -88.962129791188886, 38.520159866252449 ], [ -88.959489900387538, 38.510557879889809 ], [ -88.95994057546315, 38.475996994450995 ], [ -88.959795791967665, 38.464309034803392 ], [ -88.95044208990015, 38.432319103294205 ], [ -88.950191175572499, 38.427268119688108 ], [ -88.949925489384853, 38.35609836591172 ], [ -88.952091757947798, 38.345809412419001 ], [ -88.955510009674839, 38.338901453494763 ], [ -88.956449092702755, 38.336280467335428 ], [ -88.954999325880721, 38.321060513278859 ], [ -88.952039372022995, 38.312789527198284 ], [ -88.94846839596795, 38.304405538246783 ], [ -88.931127460963182, 38.264968584820501 ], [ -88.924977320245205, 38.25959057104118 ], [ -88.909535855991336, 38.251960515850705 ], [ -88.906292797766454, 38.245910505336354 ], [ -88.905995960247992, 38.225299504490515 ], [ -88.911229331371132, 38.206268532522252 ], [ -88.904493198060891, 38.189899497873931 ], [ -88.90440926586075, 38.181419497738659 ], [ -88.905996390280649, 38.174381506257781 ], [ -88.913709855539082, 38.157340546943836 ], [ -88.911925054913866, 38.125591538642986 ], [ -88.911810341081875, 38.091819539090537 ], [ -88.915838616291083, 38.08042856017736 ], [ -88.924125121607474, 38.064720603189308 ], [ -88.925704563759723, 38.023532612196895 ], [ -88.927131737553637, 38.011558619738345 ], [ -88.934700204994073, 37.996879658871677 ], [ -88.935715305512815, 37.983119665344184 ], [ -88.936112457209276, 37.948860670494177 ], [ -88.946152996593639, 37.931888716969716 ], [ -88.946763080471968, 37.918159719638616 ], [ -88.946481148550802, 37.897861718378294 ], [ -88.943445058380192, 37.884227706101797 ], [ -88.941713003814613, 37.877128699408786 ], [ -88.942819116151, 37.862140704276932 ], [ -88.946069420641479, 37.825057716813845 ], [ -88.946252630843929, 37.774829717472677 ], [ -88.955325170403043, 37.7487147506368 ], [ -88.958384278094343, 37.74044780662463 ], [ -88.958727166787824, 37.715869948493925 ], [ -88.96118426011148, 37.710224987441876 ], [ -88.965968428566214, 37.696370079368066 ], [ -88.967234386854585, 37.675629201043492 ], [ -88.980418855619646, 37.63488046562005 ], [ -88.98774316777552, 37.6215295587212 ], [ -88.995105491653817, 37.609581643395366 ], [ -88.998477605772266, 37.596367725366662 ], [ -89.001369680887152, 37.580849811305526 ], [ -89.004535810280871, 37.575661828136397 ], [ -89.042181518486018, 37.549157789068431 ], [ -89.082229358768913, 37.521141657819541 ], [ -89.092865846364035, 37.512291610148438 ], [ -89.126116132157193, 37.477860460399441 ], [ -89.14393859582691, 37.448510402496403 ], [ -89.152925810791601, 37.432740371288581 ], [ -89.154238787442338, 37.426529375160221 ], [ -89.156328285305378, 37.383370454164925 ], [ -89.156220591631438, 37.334042563601884 ], [ -89.157104459551363, 37.250050740075913 ], [ -89.159224131481864, 37.184040985917704 ], [ -89.163641873379532, 37.163351025431048 ], [ -89.173940884004622, 37.1439409999699 ], [ -89.179571794464437, 37.129312000960176 ], [ -89.187727660767365, 37.108391999868886 ], [ -89.188482068129048, 37.080801099237846 ], [ -89.190350790226105, 37.065252140099503 ], [ -89.199673782355234, 37.048971105188905 ], [ -89.201062668956425, 37.041711118308214 ], [ -89.203480590961277, 37.034311120972511 ], [ -89.211125631241188, 37.02353408067826 ], [ -89.232594807267617, 36.9955120400274 ], [ -89.313505683435054, 36.925189165580854 ], [ -89.31835772369358, 36.920882244572304 ], [ -89.334516883842397, 36.907954477251081 ], [ -89.340566991080109, 36.906241491042074 ], [ -89.348311155670757, 36.905913464456006 ], [ -89.352133239079706, 36.905901447766489 ], [ -89.356017324016861, 36.90590143051481 ], [ -89.439278150892164, 36.906382048734486 ], [ -89.501566259938656, 36.884711327363732 ], [ -89.527986738607723, 36.875350486023173 ], [ -89.533090833141173, 36.87353451580659 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I575\", \"DIST_MILES\": 31.330000, \"DIST_KM\": 50.420000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -84.394501498373884, 34.383381560446935 ], [ -84.391251403601927, 34.380688616319581 ], [ -84.388909368168029, 34.374649728219879 ], [ -84.38986261998005, 34.347154209737283 ], [ -84.391167744518725, 34.337133384552189 ], [ -84.393677870088581, 34.332174469544476 ], [ -84.402688265284013, 34.321004661737774 ], [ -84.411912629752109, 34.314302778485555 ], [ -84.437426676292333, 34.287695275543484 ], [ -84.467655773287319, 34.272734587721921 ], [ -84.468990853520168, 34.266654710916242 ], [ -84.467464875803245, 34.254595950703873 ], [ -84.469959968827141, 34.252585994722907 ], [ -84.467655906358331, 34.250534032328382 ], [ -84.467915026439513, 34.239265275249565 ], [ -84.465320949463504, 34.238487287748008 ], [ -84.467900052151222, 34.23666333137718 ], [ -84.468441133868964, 34.230316469266931 ], [ -84.47023421536808, 34.22809652024776 ], [ -84.47927552629497, 34.22685656254167 ], [ -84.485402753683601, 34.224464624902787 ], [ -84.488751898279162, 34.221275699869722 ], [ -84.493642230599875, 34.205437052403163 ], [ -84.505590730379723, 34.193165339116135 ], [ -84.508108777392437, 34.195206298242056 ], [ -84.507062785992076, 34.191735372464017 ], [ -84.510527135650307, 34.167786900842735 ], [ -84.517256490500415, 34.151087278166983 ], [ -84.526381893677041, 34.135179644941928 ], [ -84.528572047347154, 34.125677858508354 ], [ -84.535179338608373, 34.11355913982058 ], [ -84.531532374493906, 34.100878411351317 ], [ -84.535438633441146, 34.084819774955207 ], [ -84.538337794050165, 34.075869979937146 ], [ -84.543259103921926, 34.056591419510681 ], [ -84.547089221909189, 34.053898489678751 ], [ -84.558099512388267, 34.050999584515985 ], [ -84.563485671082319, 34.04774167222299 ], [ -84.559235898494592, 34.012959435948261 ], [ -84.561624065955471, 34.000928711952369 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I579\", \"DIST_MILES\": 1.560000, \"DIST_KM\": 2.510000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -79.997215462034035, 40.454151006322171 ], [ -79.996169420652407, 40.452622009338079 ], [ -79.990264210482096, 40.446553016330569 ], [ -79.990524198331627, 40.444516026127964 ], [ -79.994376246232875, 40.43883906286991 ], [ -79.994643244131026, 40.437859067912534 ], [ -79.995155240168614, 40.43598607752476 ], [ -79.99528424149598, 40.435765078861429 ], [ -79.996154251083212, 40.434342087556288 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I580\", \"DIST_MILES\": 75.630000, \"DIST_KM\": 121.710000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -122.284063507535294, 37.828650422340992 ], [ -122.282344238495199, 37.828047768559259 ], [ -122.27504690446851, 37.828617001980369 ], [ -122.270982666155774, 37.828062463120538 ], [ -122.260818027756784, 37.825517622242998 ], [ -122.258230935511719, 37.824963646940361 ], [ -122.252501348357271, 37.823428489540127 ], [ -122.247152331190946, 37.820584476823868 ], [ -122.246977831075228, 37.820465411176556 ], [ -122.24629277381743, 37.820042153566753 ], [ -122.241144584065836, 37.811674212732875 ], [ -122.229312435608577, 37.807393797225799 ], [ -122.226147356956844, 37.805275617869924 ], [ -122.22191034740996, 37.802291041151229 ], [ -122.209628514173872, 37.799360493857577 ], [ -122.198785330259525, 37.795534494771786 ], [ -122.188765679539713, 37.787751808557836 ], [ -122.182670863660448, 37.785365576303271 ], [ -122.171293316045592, 37.784812427353074 ], [ -122.166378650477128, 37.78203763775354 ], [ -122.150833286033532, 37.774154000383305 ], [ -122.147812888931426, 37.771337907810114 ], [ -122.141088988085329, 37.760345476294766 ], [ -122.145012517297332, 37.752907881832989 ], [ -122.142221848120286, 37.746902905437786 ], [ -122.133776966713953, 37.738445942092213 ], [ -122.130341657644649, 37.725578819211542 ], [ -122.123801019944977, 37.714768580936749 ], [ -122.115666980648385, 37.709318743564758 ], [ -122.102875887529564, 37.701971296709324 ], [ -122.091715169786099, 37.691125487802829 ], [ -122.087575218154996, 37.690823043098689 ], [ -122.067016839788366, 37.691940872607709 ], [ -122.055765895403056, 37.693561957589004 ], [ -122.051039689807155, 37.694541313418732 ], [ -122.041167173107539, 37.694148918200177 ], [ -122.031467038015151, 37.701488489523939 ], [ -122.027859022415072, 37.702708236055557 ], [ -122.017568637719279, 37.701498734628345 ], [ -122.009286225128477, 37.703403884351133 ], [ -121.99451238024534, 37.704000860671179 ], [ -121.966533464219921, 37.698021516074164 ], [ -121.959469839005493, 37.697661153569413 ], [ -121.949322527172143, 37.699080743522046 ], [ -121.928069949497527, 37.699126683192844 ], [ -121.91622387205102, 37.701502742828815 ], [ -121.903693807049279, 37.702410614632129 ], [ -121.811933641424133, 37.701630036392906 ], [ -121.788051702968957, 37.701301499081914 ], [ -121.780728951795382, 37.700197207216199 ], [ -121.767900106285637, 37.701562186464407 ], [ -121.75369383650316, 37.703636754873351 ], [ -121.734364257037839, 37.703268827867717 ], [ -121.694570925769568, 37.718927798990194 ], [ -121.675871928343398, 37.722450233057117 ], [ -121.669742955816844, 37.721826420539777 ], [ -121.662640834593503, 37.718746326932511 ], [ -121.659154115331262, 37.718673299415009 ], [ -121.631383693565709, 37.72718716799433 ], [ -121.622260150367765, 37.734042523925616 ], [ -121.603103809470099, 37.735867996325489 ], [ -121.579681537878486, 37.741763307058577 ], [ -121.556069714127403, 37.743392618326055 ], [ -121.551441215889739, 37.739722297185153 ], [ -121.529701896575048, 37.720478089911829 ], [ -121.396654019173454, 37.638798564201707 ], [ -121.364547435716318, 37.619448762816305 ], [ -121.337489184321015, 37.598472410406522 ] ], [ [ -122.501867495881285, 37.963178299022928 ], [ -122.49648180943592, 37.960197091728574 ], [ -122.483363247404213, 37.947522758943677 ], [ -122.480214755752485, 37.945934481505901 ], [ -122.475018320863398, 37.945699372873939 ], [ -122.4456843154571, 37.93731854972458 ], [ -122.426222543229315, 37.935464768345319 ], [ -122.394944469263137, 37.933559374147478 ], [ -122.387510534185324, 37.933602448571129 ], [ -122.378304803742836, 37.9303678369944 ], [ -122.374372463578268, 37.927963297758296 ], [ -122.37049256315413, 37.926450780934054 ], [ -122.355403986111483, 37.926337901885596 ] ], [ [ -122.355403986111483, 37.926337901885596 ], [ -122.352520468046492, 37.924586781633892 ], [ -122.347879612987796, 37.922852981120563 ], [ -122.339989651016808, 37.922711927541947 ], [ -122.325478724399176, 37.921280333445793 ], [ -122.317963429357846, 37.914857443762223 ], [ -122.306913523447093, 37.901341203496017 ], [ -122.304464227498173, 37.898471265447036 ], [ -122.301605580062557, 37.894293170676491 ], [ -122.30149430948515, 37.886580121209214 ] ], [ [ -122.355403986111483, 37.926337901885596 ], [ -122.352513881569877, 37.923708778889953 ] ], [ [ -122.298065970920334, 37.826592753849283 ], [ -122.285197269597745, 37.82931085399553 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I581\", \"DIST_MILES\": 6.580000, \"DIST_KM\": 10.590000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -79.998056055535116, 37.341626289978521 ], [ -79.994317790503203, 37.333985560113419 ], [ -79.988823533915792, 37.327374823663796 ], [ -79.981682150331324, 37.316846219134902 ], [ -79.97377083000147, 37.308767552895993 ], [ -79.956756295856437, 37.296588117849048 ], [ -79.942229991264114, 37.291487447801408 ], [ -79.939810902799223, 37.289187542503079 ], [ -79.938132704470902, 37.282378751747451 ], [ -79.935950532014559, 37.276736934824733 ], [ -79.936743278120971, 37.26673920005878 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I585\", \"DIST_MILES\": 2.060000, \"DIST_KM\": 3.320000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -81.964594640720051, 34.98922954431351 ], [ -81.950739236574279, 34.979220278288921 ], [ -81.939020949504638, 34.972850831659443 ], [ -81.936418866730406, 34.970385985024819 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I587\", \"DIST_MILES\": 1.420000, \"DIST_KM\": 2.280000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -74.030355146684471, 41.945629037392123 ], [ -74.029356174176911, 41.944599045512462 ], [ -74.027761219217737, 41.944389051060554 ], [ -74.027517225230724, 41.943249057664538 ], [ -74.018682472931687, 41.938873105523541 ], [ -74.012945635210727, 41.936779133015271 ], [ -74.011450674081729, 41.932689158980267 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I59\", \"DIST_MILES\": 290.200000, \"DIST_KM\": 467.040000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -86.748921146984685, 33.547525351500802 ], [ -86.743107094340516, 33.552865263070494 ], [ -86.738820093190043, 33.559335157801613 ], [ -86.725086880095688, 33.566743022641852 ], [ -86.719982801922853, 33.569664968607576 ], [ -86.713001750850054, 33.577583830750172 ], [ -86.704364624990035, 33.583313722881314 ], [ -86.696918483557752, 33.586082663742268 ], [ -86.691150354855466, 33.586914638996099 ], [ -86.677982013394569, 33.585384639320068 ], [ -86.672671891712739, 33.585934619964348 ], [ -86.664599741494854, 33.589424544961354 ], [ -86.653704585999634, 33.597992374992948 ], [ -86.644030462374516, 33.607094194504221 ], [ -86.627764338266019, 33.630202742917319 ], [ -86.603013958284194, 33.652263265884194 ], [ -86.589616688106048, 33.659553084826584 ], [ -86.569597180050238, 33.66151297734968 ], [ -86.564439057961451, 33.66290193236977 ], [ -86.550972778626118, 33.670660732742405 ], [ -86.541321591824243, 33.67797355229829 ], [ -86.533371442759361, 33.684820384978295 ], [ -86.526917369896893, 33.695791138863044 ], [ -86.525353357017238, 33.699030067101582 ], [ -86.516602268096818, 33.715871687519197 ], [ -86.511368164991779, 33.720769562980522 ], [ -86.496948825221324, 33.729298331825625 ], [ -86.48172755599245, 33.752369873521083 ], [ -86.465087202606384, 33.769199710849847 ], [ -86.46128809790666, 33.770710694861236 ], [ -86.435332324341644, 33.775287637896788 ], [ -86.391935055831766, 33.788120491405692 ], [ -86.359638170089525, 33.809299267722267 ], [ -86.314516923708027, 33.848468852250342 ], [ -86.28721007881677, 33.862757687188605 ], [ -86.280785876419657, 33.865989649190247 ], [ -86.255845108184346, 33.885737427903088 ], [ -86.234169515402229, 33.899127286848412 ], [ -86.212814005695847, 33.91998908592825 ], [ -86.191916492729362, 33.935098949406502 ], [ -86.165243804605538, 33.945101870044354 ], [ -86.154135518404004, 33.949007841223995 ], [ -86.120427694723887, 33.968637694419613 ], [ -86.099988211307092, 33.98233659852486 ], [ -86.087726958115425, 33.996866493369353 ], [ -86.077015721610579, 34.008657349471797 ], [ -86.074627675709309, 34.013147283214259 ], [ -86.0746807008817, 34.019106191932302 ], [ -86.077411810274526, 34.028467046767979 ], [ -86.074543757770812, 34.03427695974522 ], [ -86.060566432228569, 34.044205813121728 ], [ -86.044040040306555, 34.053055679035907 ], [ -86.031924784669272, 34.065617479540684 ], [ -86.02021356110194, 34.081578219089735 ], [ -86.003489232250843, 34.100425900788053 ], [ -85.982103806108242, 34.119926683215539 ], [ -85.984277897979254, 34.127464539598954 ], [ -85.991999135007163, 34.1364673412982 ], [ -85.992129157725714, 34.140243276460581 ], [ -85.984072018135322, 34.152076115437012 ], [ -85.944414254825034, 34.199671418281191 ], [ -85.933588035358525, 34.211592223872692 ], [ -85.921402771827573, 34.221983052889549 ], [ -85.90463346354386, 34.249692530207881 ], [ -85.879609113869549, 34.275311872584453 ], [ -85.872407056298201, 34.286972562559477 ], [ -85.862762915820056, 34.297623278685421 ], [ -85.850196759948261, 34.314861811630969 ], [ -85.841537606595722, 34.323100586337475 ], [ -85.814743185823772, 34.35686064331145 ], [ -85.804755989501416, 34.366728361103526 ], [ -85.77542751023104, 34.410981076911064 ], [ -85.762557240045211, 34.426079625166572 ], [ -85.748990906421113, 34.437027284111011 ], [ -85.73972170134445, 34.445099008311807 ], [ -85.711820139196703, 34.477568928351239 ], [ -85.696659828936305, 34.495306331010134 ], [ -85.693516821953082, 34.503122111852441 ], [ -85.6918230212776, 34.518399790698624 ], [ -85.689145244277938, 34.537053393138947 ], [ -85.686414251857016, 34.542646261665205 ], [ -85.674154065223661, 34.554455939845909 ], [ -85.640713624277666, 34.593864867509986 ], [ -85.631932683468776, 34.616908295436509 ], [ -85.604756351639367, 34.656290183775184 ], [ -85.553783375504722, 34.714363329381847 ], [ -85.538585070157538, 34.733020714257954 ], [ -85.538219166161753, 34.766696148773086 ], [ -85.54049221557716, 34.772300127436033 ], [ -85.542537211875313, 34.785598037954081 ], [ -85.550159417833157, 34.798400026735244 ], [ -85.549754356598868, 34.806448954125663 ], [ -85.5436660643295, 34.817838776132241 ], [ -85.538080818098649, 34.82424764429166 ], [ -85.53292352764575, 34.840399429466473 ], [ -85.525797172794114, 34.854399199873512 ], [ -85.518502841663491, 34.863058011397278 ], [ -85.516381720169875, 34.869477919077653 ], [ -85.511834475065001, 34.880597743549259 ], [ -85.502206039355087, 34.890626494745575 ], [ -85.492195621426603, 34.904507288065886 ], [ -85.482872279889691, 34.91381515252742 ], [ -85.481712202784024, 34.92104807272635 ], [ -85.484619223680866, 34.932247971213378 ], [ -85.483269163679438, 34.935688929289796 ], [ -85.4657745724584, 34.951145678839993 ], [ -85.449744022502415, 34.972397361651204 ] ], [ [ -89.74176133965247, 30.306403875293221 ], [ -89.738015398607757, 30.31686277364873 ], [ -89.737618521046969, 30.323874694128168 ], [ -89.737809799250059, 30.337613533368387 ], [ -89.739817117603451, 30.3496943834772 ], [ -89.740557218527229, 30.353304338181644 ], [ -89.742876561640557, 30.365942181449572 ], [ -89.741930679329329, 30.373824094458811 ], [ -89.73382059305122, 30.386152985271725 ], [ -89.730806522613065, 30.388820966385069 ], [ -89.716997693216555, 30.426759569556289 ], [ -89.702951616700915, 30.453248296773399 ], [ -89.694948458584335, 30.462606206730239 ], [ -89.687861297507553, 30.469892137498171 ], [ -89.675364022931788, 30.48349100216204 ], [ -89.668558097992516, 30.502936769747041 ], [ -89.66342417702451, 30.517563574875354 ], [ -89.660265170940804, 30.523791493484669 ], [ -89.649965135537443, 30.542992240933557 ], [ -89.642695117390261, 30.556565059782297 ], [ -89.616159074256203, 30.605090395188274 ], [ -89.593659790598309, 30.632690011675866 ], [ -89.551066305866286, 30.725988617138068 ], [ -89.524461895171299, 30.749389248583775 ], [ -89.522065926943739, 30.75608710909253 ], [ -89.520365633033705, 30.801888127273276 ], [ -89.513361544227863, 30.811486911464034 ], [ -89.497561297383413, 30.829785507316487 ], [ -89.496264339721478, 30.834786405670211 ], [ -89.496164556623384, 30.847787123140559 ], [ -89.496065741387198, 30.858885882030961 ], [ -89.494364790095744, 30.864984759002979 ], [ -89.457766664795543, 30.924785677201967 ], [ -89.428118781194414, 30.982506615743119 ], [ -89.4252347958992, 30.988148512711888 ], [ -89.4199628553379, 31.000183287835146 ], [ -89.414110740525174, 31.010073056124863 ], [ -89.397463458401432, 31.044982211056979 ], [ -89.384966317005109, 31.081981280777953 ], [ -89.371561248848934, 31.134279936448866 ], [ -89.348779838849481, 31.174973961375578 ], [ -89.334161622884523, 31.207778150258001 ], [ -89.323663440018905, 31.226677693984424 ], [ -89.32296148775778, 31.237177410424874 ], [ -89.326364632944546, 31.244377193563373 ], [ -89.337464960792417, 31.26047661107236 ], [ -89.347857218078673, 31.27498105283123 ], [ -89.351564302932076, 31.282476775964849 ], [ -89.352663307233669, 31.291698453110378 ], [ -89.352465202672491, 31.324873310985907 ], [ -89.352182129844351, 31.34657256412105 ], [ -89.352060117377476, 31.349573461016561 ], [ -89.346658939880712, 31.356750226366731 ], [ -89.336076600060849, 31.368151852477901 ], [ -89.322862175512995, 31.382471371881 ], [ -89.32106111125708, 31.38657222924234 ], [ -89.318665970627976, 31.410571379858276 ], [ -89.319824934274294, 31.434044545936878 ], [ -89.322258929838085, 31.459169656342311 ], [ -89.323860903812289, 31.483467798469182 ], [ -89.321564816053595, 31.490667539433552 ], [ -89.318359713642209, 31.493967415998231 ], [ -89.292861945982025, 31.511367794180138 ], [ -89.23745539519625, 31.587165323257384 ], [ -89.231451280975818, 31.592721162465516 ], [ -89.218756036377016, 31.601564911780031 ], [ -89.207555796974319, 31.613165562852377 ], [ -89.203488709594126, 31.616590460523714 ], [ -89.202184680607445, 31.617857422066457 ], [ -89.194157500396685, 31.62516419997651 ], [ -89.180959208054574, 31.633662945965401 ], [ -89.169758948921555, 31.641164717003537 ], [ -89.166256858208527, 31.644862599419344 ], [ -89.163357770517351, 31.649863436623093 ], [ -89.159260598060669, 31.664362955638097 ], [ -89.156955469632962, 31.677063530967011 ], [ -89.155224414029249, 31.679886437561109 ], [ -89.15065429241838, 31.683163331117704 ], [ -89.146755199690503, 31.684162300684896 ], [ -89.135951950132309, 31.685644259368328 ], [ -89.131854866065297, 31.684763292873349 ], [ -89.123057650430184, 31.687363210879923 ], [ -89.117457495534381, 31.690962091104922 ], [ -89.1171604324051, 31.697661860089521 ], [ -89.116458359672649, 31.704362629127999 ], [ -89.104051915291322, 31.721560036113765 ], [ -89.1014198120929, 31.725853886651429 ], [ -89.09625462820307, 31.731960673032418 ], [ -89.061257625411514, 31.762559634372973 ], [ -89.058350574476293, 31.766959496690621 ], [ -89.052148688685421, 31.818020913847977 ], [ -89.044755798268312, 31.875156141723711 ], [ -89.026551445320337, 31.900755337271306 ], [ -89.009057029780081, 31.911554990808423 ], [ -89.000053870248294, 31.928354464111347 ], [ -88.973053026558361, 31.959553356749293 ], [ -88.963652729448611, 31.967953044062188 ], [ -88.926855654068291, 32.013052504831442 ], [ -88.923948576212425, 32.019850321017749 ], [ -88.92004952979805, 32.043950706482001 ], [ -88.912984311884784, 32.052289468617253 ], [ -88.906751113330785, 32.057851304562092 ], [ -88.905248071697812, 32.060750227309541 ], [ -88.901249938509253, 32.062749161247091 ], [ -88.894352726238495, 32.070450945532258 ], [ -88.892949697067323, 32.075447819332425 ], [ -88.892552767894202, 32.096348314636458 ], [ -88.877247334634632, 32.120948674580731 ], [ -88.869549145375998, 32.139548211785879 ], [ -88.864949146197446, 32.177046318379119 ], [ -88.853046797283909, 32.190847974418787 ], [ -88.835246303603753, 32.216645355009803 ], [ -88.832942261401442, 32.224656169658715 ], [ -88.831546263391886, 32.235546920169774 ], [ -88.821246985988267, 32.257546433216625 ], [ -88.817248854804802, 32.263245316753654 ], [ -88.808146553597311, 32.270344172012699 ], [ -88.80174534845213, 32.282645925084665 ], [ -88.801249335249082, 32.286845841120886 ], [ -88.805651491588989, 32.298945598016751 ], [ -88.805147477035078, 32.301845540004898 ], [ -88.775026502887016, 32.327479045869659 ], [ -88.771745399280562, 32.331644966429749 ], [ -88.772447430508507, 32.338942822911335 ], [ -88.770646375812859, 32.342943746076436 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I590\", \"DIST_MILES\": 4.700000, \"DIST_KM\": 7.570000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -77.551260683286969, 43.143975763253401 ], [ -77.553740522438503, 43.121522840859569 ], [ -77.552092411084416, 43.114663875983069 ], [ -77.553664413186624, 43.110826883979016 ], [ -77.557814500125829, 43.10881587283145 ], [ -77.578704029837297, 43.107724780930582 ], [ -77.599792604296738, 43.11024667285853 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I595\", \"DIST_MILES\": 30.580000, \"DIST_KM\": 49.220000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -80.346331910358487, 26.119884468942022 ], [ -80.32913448676554, 26.118145506302017 ], [ -80.313936116611217, 26.114624614269943 ], [ -80.250442563734467, 26.099194093780881 ], [ -80.216384516079955, 26.09074531855499 ], [ -80.20282610105906, 26.085065493384491 ], [ -80.196821915168314, 26.083766524926098 ], [ -80.176786288291481, 26.08338448199892 ], [ -80.168432029664871, 26.081546526554515 ], [ -80.134639973124493, 26.080624463705341 ] ], [ [ -76.881537326494893, 38.943032779148133 ], [ -76.857762946746504, 38.945008790295297 ], [ -76.844594739873386, 38.946640785564973 ], [ -76.814222250989104, 38.94657284966933 ], [ -76.794392923870674, 38.943322956656303 ], [ -76.763897453402535, 38.945820970259689 ], [ -76.743160116932884, 38.953011895140079 ], [ -76.718402605715298, 38.954141038046671 ], [ -76.717303583951264, 38.954294042178041 ], [ -76.69391211373825, 38.955610171077609 ], [ -76.676821772520341, 38.956163273767281 ], [ -76.654253386543871, 38.961183312546737 ], [ -76.635355066775361, 38.964193369337515 ], [ -76.605653821320203, 38.980932173811176 ], [ -76.599656767268087, 38.983362154514815 ], [ -76.576318408852714, 38.984609271069623 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I605\", \"DIST_MILES\": 27.470000, \"DIST_KM\": 44.200000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -117.956447163467956, 34.134283204099887 ], [ -117.960984687360224, 34.128561635054005 ], [ -117.976977965735941, 34.115039961555233 ], [ -117.985367817375774, 34.096643009892439 ], [ -117.992369334719001, 34.090276612911332 ], [ -117.995702316196642, 34.085095967275663 ], [ -117.997037304479875, 34.077860268847473 ], [ -117.999188971218061, 34.070295628929287 ], [ -117.998968446865419, 34.06532576961326 ], [ -117.999074633868759, 34.062304869260132 ], [ -118.002980573399725, 34.054416381425575 ], [ -118.010416282078495, 34.042816271570651 ], [ -118.020544288757108, 34.038175142851955 ], [ -118.026020239336106, 34.034143664895929 ], [ -118.036422276060861, 34.027216639447225 ], [ -118.053139818944231, 34.016720201382313 ], [ -118.056084027316018, 34.010308628615611 ], [ -118.062482681674595, 34.004446295114214 ], [ -118.066494226133003, 34.000528722918723 ], [ -118.068401813036317, 33.993631953506089 ], [ -118.070613300664462, 33.986094206069581 ], [ -118.079079322306711, 33.974082976553376 ], [ -118.082328318116893, 33.967220298609163 ], [ -118.090916624455801, 33.949811141631194 ], [ -118.095683075270486, 33.94107559895366 ], [ -118.097376528514062, 33.937920762059562 ], [ -118.103119826848115, 33.924818342965978 ], [ -118.10379101400035, 33.917143481409909 ], [ -118.103814211453752, 33.913835521132675 ], [ -118.104088826524375, 33.902116676231351 ], [ -118.103305077757867, 33.887617784042916 ], [ -118.101215689892612, 33.876394756874234 ], [ -118.091318851583296, 33.84615936842868 ], [ -118.082908363945251, 33.831521914740016 ], [ -118.080209080505583, 33.822293822298938 ], [ -118.080301757595208, 33.810479966018896 ], [ -118.08021003312723, 33.806581004427734 ], [ -118.080416156420853, 33.803098059963801 ], [ -118.084664686495501, 33.79748343816226 ], [ -118.090658948964531, 33.784083035274655 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I610\", \"DIST_MILES\": 42.460000, \"DIST_KM\": 68.340000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -90.123173240778584, 29.995624832634753 ], [ -90.115696023562748, 29.995043813343685 ], [ -90.109325838053806, 29.994722791868963 ], [ -90.077448911502572, 29.99260170029595 ], [ -90.073191791208629, 29.991152722815713 ], [ -90.070124704825915, 29.99002274167681 ], [ -90.066370594228005, 29.990303715284337 ], [ -90.058817371817739, 29.990822663503902 ], [ -90.055476273400885, 29.991060640322523 ], [ -90.049494096757556, 29.991623594676799 ] ], [ [ -95.265251245578028, 29.738288279651773 ], [ -95.266509289398712, 29.728877546642067 ], [ -95.266044284783845, 29.719266810857945 ], [ -95.266624310045145, 29.709559083115746 ], [ -95.27785463974422, 29.702688334615239 ], [ -95.28340180409127, 29.698979468793901 ], [ -95.28893296610714, 29.69727054733605 ], [ -95.291741048409577, 29.696468585498693 ], [ -95.296021173710599, 29.695459637793061 ], [ -95.31351567734589, 29.696999690995646 ], [ -95.324853014869888, 29.692240891135317 ], [ -95.340356479709229, 29.6857811668247 ], [ -95.355928946536636, 29.680810402924813 ], [ -95.381129684030554, 29.680551558069254 ], [ -95.393199037488642, 29.68037963391069 ], [ -95.403217335832949, 29.678861738728912 ], [ -95.427609055076502, 29.677550922778742 ], [ -95.437428334927546, 29.67940192332988 ], [ -95.457951935361137, 29.679421043323899 ], [ -95.459080960321629, 29.681159995205547 ], [ -95.459355855574373, 29.705421232801193 ], [ -95.460354775026261, 29.728829500560622 ], [ -95.458188657015725, 29.741089104127379 ], [ -95.455624531385624, 29.751758757297321 ], [ -95.456036432641682, 29.765988315646624 ], [ -95.455746337123259, 29.777267962764117 ], [ -95.454228266919415, 29.780827844888396 ], [ -95.452069188118102, 29.783167762098167 ], [ -95.450764062932848, 29.794546401376756 ], [ -95.449849007345591, 29.798376277765055 ], [ -95.44933796045521, 29.80254714536559 ], [ -95.445217812187579, 29.806645998567699 ], [ -95.432987422160267, 29.812306765501599 ], [ -95.411677815260745, 29.812856649852566 ], [ -95.410326778022366, 29.812736647359625 ], [ -95.37549778298424, 29.813975447592821 ], [ -95.352525140023857, 29.813167366722308 ], [ -95.351694118725433, 29.81290537110101 ], [ -95.336052714947542, 29.808375441073697 ], [ -95.316864164369491, 29.809365321436218 ], [ -95.305724850225275, 29.809297272172426 ], [ -95.296783636633464, 29.804835371385458 ], [ -95.292182511212118, 29.804328366160295 ], [ -95.282791247684372, 29.804156328336603 ], [ -95.271612996972621, 29.796885506135059 ], [ -95.26939295235033, 29.794875559332567 ], [ -95.263594907993934, 29.7815969516619 ], [ -95.26394597157865, 29.775597142543255 ], [ -95.265380078079829, 29.768187382805841 ], [ -95.265251245578028, 29.738288279651773 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I630\", \"DIST_MILES\": 7.510000, \"DIST_KM\": 12.090000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -92.391511384369878, 34.748660944096095 ], [ -92.382646041596786, 34.748500948298854 ], [ -92.375153753951039, 34.746822965762902 ], [ -92.341209445185129, 34.74515199237954 ], [ -92.304839044777694, 34.743531020287463 ], [ -92.288602417046562, 34.743931022151394 ], [ -92.276882977972193, 34.73968206787842 ], [ -92.266079578423287, 34.73469212134345 ], [ -92.261616408561565, 34.734211128009335 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I635\", \"DIST_MILES\": 49.360000, \"DIST_KM\": 79.440000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -94.615613340699312, 39.192442975164525 ], [ -94.622106542942532, 39.182914112358773 ], [ -94.623655604351185, 39.172645263806061 ], [ -94.627317722639063, 39.16459238060181 ], [ -94.63001880301637, 39.162803405048741 ], [ -94.647078297947331, 39.159164445509795 ], [ -94.65077841209289, 39.154113517147678 ], [ -94.656928600346859, 39.146552623637035 ], [ -94.665862856110223, 39.146625615100788 ], [ -94.67110401218568, 39.142814666725187 ], [ -94.675933157856534, 39.138065732336884 ], [ -94.677635229850182, 39.123092950555431 ], [ -94.681617353525212, 39.116764039688448 ], [ -94.682197378316644, 39.111454116973476 ], [ -94.679122301778122, 39.104145227111246 ], [ -94.680503364014626, 39.089436441431651 ], [ -94.679054383988202, 39.049916022598374 ], [ -94.676971333871066, 39.044011111674351 ], [ -94.673149231375845, 39.039994175195702 ] ], [ [ -97.040028438442903, 32.949854571869047 ], [ -97.032535195096216, 32.94858058902544 ], [ -97.019351763139824, 32.94453667955613 ], [ -97.013255559375352, 32.94077578470322 ], [ -97.001078140689117, 32.927085203573192 ], [ -96.993715898259822, 32.923396295600654 ], [ -96.958611770714526, 32.915355409872269 ], [ -96.941300219513664, 32.911365466962934 ], [ -96.921234585084065, 32.907855495944439 ], [ -96.897780846983807, 32.907836393793183 ], [ -96.895270767944282, 32.908034376201179 ], [ -96.85584051570838, 32.917666882853261 ], [ -96.838559956239038, 32.925123559097791 ], [ -96.820431376797487, 32.925924453129781 ], [ -96.803585840648537, 32.925455395021402 ], [ -96.768984741626127, 32.924154286870696 ], [ -96.764056584917896, 32.924074267964016 ], [ -96.758975423355153, 32.923994248387423 ], [ -96.752787232702431, 32.922194281131858 ], [ -96.732133390949684, 32.909205602808179 ], [ -96.717652769307989, 32.90045481636345 ], [ -96.707886357497983, 32.890014113302392 ], [ -96.700417030400658, 32.885715217605004 ], [ -96.686202403133009, 32.877536417110228 ], [ -96.679664115035379, 32.872314558507014 ], [ -96.667883583872566, 32.86816363692806 ], [ -96.665587480889513, 32.866725673511958 ], [ -96.647039642428851, 32.855167968551527 ], [ -96.635564119605434, 32.844875259043988 ], [ -96.629658854484362, 32.822968973415868 ], [ -96.625263656407554, 32.79254698616873 ], [ -96.622631535391534, 32.76896977574534 ], [ -96.622273518308148, 32.767718816657492 ], [ -96.612652020246088, 32.746200514364865 ], [ -96.612170909486437, 32.735099914770274 ], [ -96.617298000775975, 32.716641604214423 ], [ -96.627621318420069, 32.699251270807025 ], [ -96.62684328779423, 32.699712251379765 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I64\", \"DIST_MILES\": 922.380000, \"DIST_KM\": 1484.430000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -90.143099186902333, 38.631459608658467 ], [ -90.130342811197025, 38.623051579298554 ], [ -90.111428172596149, 38.620205442467501 ], [ -90.09277451109692, 38.621090271531337 ], [ -90.069160702390803, 38.61892408739147 ], [ -90.057105284934735, 38.618354988158437 ], [ -90.0457759199668, 38.614742925316747 ], [ -90.018248073554872, 38.601608816441839 ], [ -89.98505089995237, 38.599613595814304 ], [ -89.963093096047373, 38.598777482326355 ], [ -89.950076647581881, 38.595683438947603 ], [ -89.945956517734061, 38.593624434958187 ], [ -89.93189518642501, 38.576938506978635 ], [ -89.924700953915234, 38.574428487480837 ], [ -89.890046684447881, 38.575588274389958 ], [ -89.876649234965512, 38.572780219339563 ], [ -89.840347053701734, 38.563396079003638 ], [ -89.821059467576731, 38.556163017732544 ], [ -89.818137379524572, 38.555068008118674 ], [ -89.807105038731592, 38.551607966078542 ], [ -89.798681753272604, 38.550719920556602 ], [ -89.779958094606656, 38.550368807271632 ], [ -89.750119119376492, 38.545435655299507 ], [ -89.735996619345954, 38.541979708439086 ], [ -89.72867244169413, 38.53533876947057 ], [ -89.720379263582643, 38.526457849026961 ], [ -89.713512067192823, 38.522009895731536 ], [ -89.705119791804208, 38.518675938800861 ], [ -89.692477326966355, 38.516619983464111 ], [ -89.667390343676999, 38.516151046883984 ], [ -89.631798067463365, 38.508468191249065 ], [ -89.606094214431607, 38.498260323602487 ], [ -89.581541464932386, 38.47928942589099 ], [ -89.565367079879508, 38.458648530453921 ], [ -89.530201961601762, 38.439979735578177 ], [ -89.51887261006803, 38.433780811432321 ], [ -89.513005410931697, 38.43196884656976 ], [ -89.499110888961212, 38.4313509093164 ], [ -89.485667381764799, 38.428100905662916 ], [ -89.462839471389984, 38.426257881829279 ], [ -89.432878430787014, 38.41250989598683 ], [ -89.410828608378637, 38.40663988542488 ], [ -89.386100768793114, 38.39408189327559 ], [ -89.370505166994462, 38.391479876505926 ], [ -89.344213092742876, 38.391448832023585 ], [ -89.328389471693342, 38.389591811212334 ], [ -89.315143898563633, 38.391879781367457 ], [ -89.306713567604248, 38.390899770104859 ], [ -89.250101259586572, 38.390479674922069 ], [ -89.217788771477373, 38.388938654911954 ], [ -89.193518638900997, 38.388839637166718 ], [ -89.177930885520723, 38.390418621014383 ], [ -89.17024854069011, 38.389518617901174 ], [ -89.145413414899011, 38.38741260578896 ], [ -89.133770880347939, 38.386878598861834 ], [ -89.122669405891472, 38.384338598660896 ], [ -89.10618875377034, 38.377750607802859 ], [ -89.08230790624846, 38.363380638547852 ], [ -89.070932403197745, 38.362228635153649 ], [ -89.016516907347508, 38.361678602711059 ], [ -88.998350190758771, 38.356658602160465 ], [ -88.96075220003496, 38.3387984799393 ], [ -88.956449092702755, 38.336280467335428 ] ], [ [ -85.726158197691873, 38.261709770288114 ], [ -85.722923128195561, 38.258031894746225 ], [ -85.721275091693386, 38.25599496360352 ], [ -85.717529012638309, 38.251673109344175 ], [ -85.702354814610757, 38.248095113291711 ], [ -85.693267634358378, 38.242147967036978 ], [ -85.682403507639563, 38.241804943321732 ], [ -85.655799094661432, 38.235437725039439 ], [ -85.636358876739791, 38.236078701306596 ], [ -85.626936809401442, 38.238172747773227 ], [ -85.6231067575266, 38.237821729170527 ], [ -85.578282866205711, 38.223543100499214 ], [ -85.571340756227897, 38.222825046810541 ], [ -85.541394396617406, 38.22398498213277 ], [ -85.505680894500685, 38.222893799990921 ], [ -85.473682476181679, 38.221707755053721 ], [ -85.412341665286121, 38.217686674031214 ], [ -85.389369359787423, 38.215611634257847 ], [ -85.374949126309303, 38.212250539620094 ], [ -85.300997151465168, 38.200268349719913 ], [ -85.271745770697819, 38.192417238103154 ], [ -85.24695747209141, 38.185658189265887 ], [ -85.233422319657763, 38.185105306314561 ], [ -85.212296091199079, 38.18512050996344 ], [ -85.198929940770569, 38.184449627145817 ], [ -85.191894861680368, 38.184067689392144 ], [ -85.172905618051686, 38.17883780524614 ], [ -85.157272408129657, 38.172158895644081 ], [ -85.132087107565141, 38.164571127963086 ], [ -85.110205890713772, 38.164499402653576 ], [ -85.088050647518784, 38.157918673564311 ], [ -85.077651543216021, 38.156499814612552 ], [ -85.060500369390283, 38.152213061868324 ], [ -85.033354111120858, 38.148211477750507 ], [ -85.016370955040557, 38.146910742828773 ], [ -85.001569820942535, 38.144473993623116 ], [ -84.989690591569527, 38.144722099398251 ], [ -84.915997070448682, 38.15770751642485 ], [ -84.907932906056502, 38.158790563197712 ], [ -84.897861698060055, 38.158542644378713 ], [ -84.893611610197453, 38.158412679061641 ], [ -84.88955352631254, 38.158302711999042 ], [ -84.880741346230522, 38.158947770129153 ], [ -84.85573183584556, 38.160533937047987 ], [ -84.846018648655587, 38.164421947600417 ], [ -84.836344470450953, 38.170185924136263 ], [ -84.826823290758014, 38.173999929139924 ], [ -84.811265974950345, 38.173813044584392 ], [ -84.807870906276378, 38.1738360686793 ], [ -84.790567553755437, 38.173379201828197 ], [ -84.782747393804385, 38.17306226420304 ], [ -84.734566203550443, 38.162713819584248 ], [ -84.677626447471937, 38.15995630037348 ], [ -84.656842806490531, 38.15916247046578 ], [ -84.644429440603915, 38.160974532423495 ], [ -84.627751948392685, 38.163145621619989 ], [ -84.611935422337538, 38.157816829457708 ], [ -84.578212274530415, 38.144782286846656 ], [ -84.576968231438613, 38.144255304083742 ], [ -84.555819437485511, 38.129153686660658 ], [ -84.542779966814464, 38.122473876222976 ], [ -84.52616238436967, 38.116222079262592 ] ], [ [ -88.931127460963182, 38.264968584820501 ], [ -88.933019453595946, 38.269409579478037 ], [ -88.931302358447923, 38.271049564948669 ], [ -88.912968650269107, 38.271499468246979 ], [ -88.900852147434463, 38.273868397487988 ], [ -88.893115848101573, 38.274139356496811 ], [ -88.868731982964874, 38.270118243073739 ], [ -88.862070718253833, 38.270759206418809 ], [ -88.851107249923686, 38.273990139269159 ], [ -88.829362419204088, 38.274139026110618 ], [ -88.816444882961719, 38.277258949648555 ], [ -88.801018320951385, 38.275488875171028 ], [ -88.77702240664712, 38.2755807506515 ], [ -88.765516946369715, 38.277388685856842 ], [ -88.750059379062918, 38.275717610655988 ], [ -88.74004904504784, 38.275168589471321 ], [ -88.720235405161901, 38.272078552227441 ], [ -88.70221379310216, 38.27182651126158 ], [ -88.685955246558663, 38.271017475465293 ], [ -88.669123707783712, 38.267279443792248 ], [ -88.657122305256522, 38.266360417177793 ], [ -88.626962261557864, 38.267550343978854 ], [ -88.611367735946089, 38.266497308660114 ], [ -88.602257415216314, 38.267607285732772 ], [ -88.586456884237947, 38.266219250009478 ], [ -88.556716863890756, 38.266360179441712 ], [ -88.543631403621205, 38.268328147282517 ], [ -88.536719164033954, 38.268858130786612 ], [ -88.523794733991153, 38.266638101382327 ], [ -88.500027921872118, 38.266157045220396 ], [ -88.48052626019367, 38.268247985122755 ], [ -88.464252722835283, 38.266446933400296 ], [ -88.441607958258487, 38.268647866382416 ], [ -88.426195447578749, 38.26692781553259 ], [ -88.411660957874886, 38.268567774653008 ], [ -88.39887453465937, 38.266126728144783 ], [ -88.379685890787115, 38.267347672426915 ], [ -88.360230241415138, 38.264318599346183 ], [ -88.347701821020706, 38.266156567872621 ], [ -88.334838390759387, 38.267766535658076 ], [ -88.315062728083618, 38.266187465763338 ], [ -88.298041154807947, 38.263868398113438 ], [ -88.28210961255634, 38.259858320288458 ], [ -88.256435750137342, 38.260686240975993 ], [ -88.247105408296932, 38.257077190199198 ], [ -88.241825191043347, 38.254316165142718 ], [ -88.232112798014882, 38.251645137016027 ], [ -88.224574474243624, 38.247258106289259 ], [ -88.211969966474769, 38.246198091703818 ], [ -88.186005884530161, 38.239156039408805 ], [ -88.041271121839856, 38.237515912815077 ], [ -88.012819978492345, 38.235947881263272 ], [ -88.002016532929446, 38.233990862085562 ], [ -87.984850101226755, 38.228626698361182 ], [ -87.976212903757329, 38.22631560898067 ], [ -87.940834933468651, 38.204617157098859 ], [ -87.919097381416805, 38.197986910283475 ], [ -87.864882171025968, 38.196544388609361 ], [ -87.838331513068269, 38.192134101211607 ], [ -87.819409961471763, 38.184763856944734 ], [ -87.770198824378411, 38.183565369652833 ], [ -87.764797663474951, 38.181704299203012 ], [ -87.750240057348492, 38.168883029279804 ], [ -87.744364797301571, 38.166043991462757 ], [ -87.73827656735547, 38.165063973829227 ], [ -87.708001512446828, 38.164323927525665 ], [ -87.688530794668964, 38.162072879752877 ], [ -87.684456647018294, 38.161721870953102 ], [ -87.669533214927512, 38.165341888451429 ], [ -87.661002907400004, 38.164674870733876 ], [ -87.654395739028018, 38.167283888787182 ], [ -87.63075891838723, 38.16683385395082 ], [ -87.629019830982514, 38.165605839183826 ], [ -87.627600803954763, 38.166562847139623 ], [ -87.572681928608645, 38.166913780422085 ], [ -87.551929219103243, 38.167005754806105 ], [ -87.550365189993784, 38.168054763651945 ], [ -87.548939116568974, 38.167005750978639 ], [ -87.525050280972962, 38.166310713183428 ], [ -87.511354781619289, 38.165063682661106 ], [ -87.504000547833996, 38.165841681328075 ], [ -87.4904040636535, 38.169583897916695 ], [ -87.473573302187305, 38.169733219356416 ], [ -87.469865108227765, 38.168604277694946 ], [ -87.467217009799626, 38.169577338477175 ], [ -87.42906128702073, 38.17011606958603 ], [ -87.392026840261138, 38.182574917959883 ], [ -87.36793175232394, 38.183747393111993 ], [ -87.34003760916849, 38.192258030854767 ], [ -87.30040876909861, 38.192327794493679 ], [ -87.294281505208104, 38.193746930376662 ], [ -87.28267702665886, 38.198088209355099 ], [ -87.276725762470633, 38.199087337098796 ], [ -87.257468865705789, 38.199377712951986 ], [ -87.235357995257743, 38.201618112909479 ], [ -87.224797586236605, 38.200569263074556 ], [ -87.204228826979858, 38.201618593936111 ], [ -87.138491303117732, 38.196019553827249 ], [ -87.10417306237062, 38.200601130853563 ], [ -87.089706504361715, 38.198892340090332 ], [ -87.075492983296186, 38.20021257165488 ], [ -87.048475945243752, 38.19712296716731 ], [ -87.034727434707477, 38.19764218501976 ], [ -87.017445780211233, 38.196627447313539 ], [ -86.997594056389929, 38.196520757801323 ], [ -86.978519479117779, 38.193752052395332 ], [ -86.941737427759065, 38.196983668120758 ], [ -86.927912045531727, 38.199802905323359 ], [ -86.916780720193714, 38.199746085229208 ], [ -86.899294245575547, 38.204232385357109 ], [ -86.88745992278001, 38.206963585380372 ], [ -86.848518771950026, 38.204958203935213 ], [ -86.828338161296415, 38.20234552240116 ], [ -86.808058594553657, 38.205122854294451 ], [ -86.79724730026841, 38.207427031431656 ], [ -86.791541129425326, 38.206904122072658 ], [ -86.784513920817361, 38.206465234133411 ], [ -86.768034491352338, 38.211905502953421 ], [ -86.750012973865765, 38.21257778996744 ], [ -86.738553626324091, 38.215908019068834 ], [ -86.728192294029327, 38.216945224871274 ], [ -86.716831964761099, 38.221367448637466 ], [ -86.700092455551726, 38.225185775966935 ], [ -86.690830204208297, 38.229858953076985 ], [ -86.671969629379831, 38.233350316108563 ], [ -86.651567936001484, 38.23100071741527 ], [ -86.642854605912561, 38.227387895338424 ], [ -86.639024477216694, 38.227128970960777 ], [ -86.62350604227224, 38.232649260090732 ], [ -86.615608752607642, 38.230249420706919 ], [ -86.605515415487162, 38.229700619419198 ], [ -86.59153791082781, 38.226320904224359 ], [ -86.571090281560529, 38.22906829426541 ], [ -86.546065655258261, 38.241359726465447 ], [ -86.540465470680758, 38.241130835303288 ], [ -86.528883048137942, 38.238140073337853 ], [ -86.515882627779717, 38.238201324172934 ], [ -86.499555025659035, 38.233791664137485 ], [ -86.495724926106618, 38.234222727285747 ], [ -86.488834784207043, 38.237232827118788 ], [ -86.476078452679872, 38.238770034922197 ], [ -86.468929291906747, 38.241193140665459 ], [ -86.467632242986525, 38.240422167759654 ], [ -86.463444166585433, 38.242963221786688 ], [ -86.450763839624258, 38.244813423200171 ], [ -86.440227527806258, 38.243833608065174 ], [ -86.417665931909085, 38.246381968983101 ], [ -86.413111788577581, 38.245382053624539 ], [ -86.403849443008937, 38.239653257029751 ], [ -86.390299029644027, 38.237333507340466 ], [ -86.376595638127995, 38.236754746282799 ], [ -86.373025546057121, 38.237303802260151 ], [ -86.364045358397618, 38.241873912982982 ], [ -86.353875099682497, 38.243835066532114 ], [ -86.336594709850431, 38.250644280097632 ], [ -86.325310407056847, 38.251334449517238 ], [ -86.306937974712525, 38.255023652125239 ], [ -86.283179264785502, 38.253334095518646 ], [ -86.276107018598481, 38.251381269838987 ], [ -86.266538697813274, 38.248444487152909 ], [ -86.257025335465173, 38.24026574533665 ], [ -86.24645802010312, 38.238884918659672 ], [ -86.235898665240185, 38.234666082540173 ], [ -86.224507359529724, 38.236856174295795 ], [ -86.204830863663787, 38.24324529268587 ], [ -86.191356452818312, 38.241536455619375 ], [ -86.168215785533107, 38.241826690510358 ], [ -86.144930077373132, 38.239175973198613 ], [ -86.126924559386282, 38.239527155046538 ], [ -86.115808248063402, 38.24039725604392 ], [ -86.086533475836276, 38.246218455478292 ], [ -86.073777109786064, 38.246447581081057 ], [ -86.052063565143385, 38.251578683713717 ], [ -86.018431693438174, 38.256037874377768 ], [ -85.99500128959788, 38.26710774960992 ], [ -85.973455867468033, 38.271170864471593 ], [ -85.96816876346918, 38.272208891155316 ], [ -85.940915335147551, 38.283488829796184 ], [ -85.936574242599789, 38.284167857073328 ], [ -85.922200861545619, 38.282527077413221 ], [ -85.915387730156283, 38.28438909344132 ], [ -85.91158769287415, 38.287437034915477 ], [ -85.896550548927792, 38.300318774534553 ], [ -85.889767428077931, 38.303217754429028 ], [ -85.881733235854483, 38.303866824196703 ], [ -85.86551277991758, 38.301029105041472 ], [ -85.852428456659297, 38.30142924089111 ], [ -85.850017424971739, 38.303333203929945 ], [ -85.848666354047836, 38.300914301282859 ], [ -85.828142600255021, 38.284241102248423 ], [ -85.826075520809653, 38.28218519592123 ], [ -85.824091446875812, 38.28035028116696 ], [ -85.818354240532685, 38.275444514262425 ], [ -85.814936148976372, 38.274735577889238 ], [ -85.809428030742708, 38.275753606842883 ], [ -85.806268972153148, 38.277054598969372 ], [ -85.794130670715518, 38.276291765146674 ], [ -85.785005406914891, 38.272618996163672 ], [ -85.782136297491377, 38.269212145947932 ], [ -85.779229190017602, 38.265966290762996 ], [ -85.765709788511089, 38.258550702042001 ], [ -85.752793491147614, 38.258722846472757 ], [ -85.741600327942848, 38.257970902669804 ] ], [ [ -84.430577549066655, 38.05463937748172 ], [ -84.40047857938616, 38.061414405166218 ], [ -84.389591214549114, 38.062398434846678 ], [ -84.377230773785385, 38.060246508582722 ], [ -84.350031778395874, 38.051553714103626 ], [ -84.288208582556024, 38.036787099766286 ], [ -84.286110509909406, 38.036485110218713 ], [ -84.256560487541705, 38.031877258900387 ], [ -84.225912536259386, 38.017286512709639 ], [ -84.211904124778755, 38.012380616000407 ], [ -84.208486024534565, 38.011308640332409 ], [ -84.193310579328511, 38.006929746190941 ], [ -84.187619427883362, 38.007528760641058 ], [ -84.173710082008242, 38.011949759773117 ], [ -84.156612660049618, 38.01710375798109 ], [ -84.148159453539265, 38.019647755522719 ], [ -84.138469214709303, 38.022138756858581 ], [ -84.09292806182161, 38.028929815865943 ], [ -84.077676722076234, 38.034986777736158 ], [ -84.066018549703017, 38.046900638536471 ], [ -84.04367211091558, 38.058721520211321 ], [ -84.018692537990177, 38.063997498251545 ], [ -83.992164964123859, 38.073450438567882 ], [ -83.95886202779613, 38.075296628514508 ], [ -83.952955876933444, 38.076807644781667 ], [ -83.949545794123893, 38.078020649318113 ], [ -83.934386412846564, 38.082483685756713 ], [ -83.916585945246965, 38.086313753119057 ], [ -83.898824457447219, 38.088548845558662 ], [ -83.88313002452206, 38.090437930206647 ], [ -83.843013988123573, 38.101672077559726 ], [ -83.824596495267755, 38.105670166898037 ], [ -83.815570279844422, 38.110038185251817 ], [ -83.806987050393786, 38.112048228201985 ], [ -83.790796704327306, 38.123980226452609 ], [ -83.778055330806424, 38.124198325607281 ], [ -83.762963866626862, 38.122378463432732 ], [ -83.722298639193198, 38.139701663981015 ], [ -83.692351647693599, 38.152900813342526 ], [ -83.680022219325494, 38.156661889229291 ], [ -83.673277971889348, 38.157248945292082 ], [ -83.618648916230356, 38.155521466155513 ], [ -83.611675656642362, 38.155670528772845 ], [ -83.604084390969987, 38.158501567675479 ], [ -83.592891018997022, 38.166279584247796 ], [ -83.580294578802295, 38.172230632031606 ], [ -83.564601035913256, 38.181740665376374 ], [ -83.539728109411044, 38.186088836581142 ], [ -83.511345023086918, 38.185361097178379 ], [ -83.495056440979866, 38.187745193423481 ], [ -83.485908155942781, 38.189271218912815 ], [ -83.478728939435314, 38.192162217410498 ], [ -83.470389692419133, 38.196340204354541 ], [ -83.463210520907069, 38.209210073671692 ], [ -83.44647106959944, 38.225059941045778 ], [ -83.440183919710933, 38.234539842223761 ], [ -83.431905767643144, 38.252380633386394 ], [ -83.419736566139392, 38.267441453895742 ], [ -83.415555448417606, 38.268429455378403 ], [ -83.404149091464063, 38.267952506736414 ], [ -83.394574832414051, 38.271252495357082 ], [ -83.383862513492474, 38.272350521204991 ], [ -83.368283091595885, 38.278000500570506 ], [ -83.34935348165844, 38.275692608731433 ], [ -83.332668056271828, 38.284836545423317 ], [ -83.320986738838457, 38.289520526866049 ], [ -83.309634457544917, 38.297089467804469 ], [ -83.290872924883899, 38.302929465345976 ], [ -83.278116581142157, 38.309151434147147 ], [ -83.262056092535744, 38.311050476949902 ], [ -83.251473796568689, 38.315369464405521 ], [ -83.242371487493202, 38.316639471083228 ], [ -83.224227934578536, 38.327782365801205 ], [ -83.208846416240718, 38.331383355502908 ], [ -83.197311016439855, 38.332790365120523 ], [ -83.169042904765561, 38.321979568528995 ], [ -83.141247910564786, 38.32220162964056 ], [ -83.132679639279374, 38.325901604471362 ], [ -83.117916115640895, 38.326408632914465 ], [ -83.089274050872504, 38.322491745709456 ], [ -83.078241675841255, 38.324482748104842 ], [ -83.068743327167994, 38.323650779686012 ], [ -83.058747996825176, 38.326321772515847 ], [ -83.037652261007608, 38.328140801689329 ], [ -83.022812704903856, 38.325771862685883 ], [ -82.992888712872443, 38.329868915805541 ], [ -82.98235245994691, 38.336540909973763 ], [ -82.976264339791243, 38.342789881194761 ], [ -82.972815253326701, 38.344639882980744 ], [ -82.956762739090209, 38.342961001001719 ], [ -82.941770300408166, 38.345220070564629 ], [ -82.917081579970827, 38.349122183494089 ], [ -82.900693156140051, 38.356740205800982 ], [ -82.884098658606518, 38.358140295083459 ], [ -82.870556300330946, 38.363702321811196 ], [ -82.857295894215056, 38.364030401646758 ], [ -82.844401549619178, 38.369012430793944 ], [ -82.829920128110729, 38.371411496988443 ], [ -82.821893866615071, 38.370152560542635 ], [ -82.807077341911196, 38.36391971811468 ], [ -82.781701567747959, 38.364797868417234 ], [ -82.771065246376537, 38.365453928490361 ], [ -82.755851792949542, 38.366972008537886 ], [ -82.731635033516639, 38.361731144377146 ], [ -82.709006427784132, 38.365572159513867 ], [ -82.698775168181783, 38.368921148790562 ], [ -82.684446799467494, 38.373323135949356 ], [ -82.664121249278494, 38.377024143711168 ], [ -82.653233977142762, 38.381781116924991 ], [ -82.645870780530885, 38.383661113097709 ], [ -82.639424591996189, 38.383390130814853 ], [ -82.627583228657926, 38.380751187367842 ], [ -82.606853624438884, 38.379881245026276 ], [ -82.59405126449866, 38.381090260791275 ], [ -82.573542739527397, 38.390738196024607 ], [ -82.555369211517345, 38.390684237111792 ], [ -82.548083006352144, 38.391691241440931 ], [ -82.53745471179414, 38.394026237245505 ], [ -82.513986038335574, 38.395716268453434 ], [ -82.490593275803107, 38.399561399026986 ], [ -82.482276953236237, 38.40140050795889 ], [ -82.480330876028205, 38.401510537352564 ], [ -82.47846980135516, 38.401468567253254 ], [ -82.477889777632271, 38.401377577519582 ], [ -82.475562676843055, 38.400053630366664 ], [ -82.475043652302361, 38.399408646404019 ], [ -82.4734875803601, 38.397768690908755 ], [ -82.470138440700381, 38.396856754863116 ], [ -82.462859152898446, 38.397524861659861 ], [ -82.457304909233912, 38.3941599901733 ], [ -82.45258171666643, 38.393706070220148 ], [ -82.448042539743184, 38.394542131720023 ], [ -82.435659001259012, 38.388427401184025 ], [ -82.425351615644644, 38.392661512578478 ], [ -82.414609189660951, 38.393447672598093 ], [ -82.407802910077137, 38.392608790130829 ], [ -82.405460822713295, 38.393512816181534 ], [ -82.39743452883134, 38.397231898014439 ], [ -82.38255694769984, 38.399109110280165 ], [ -82.370959509820366, 38.402287255188725 ], [ -82.361750197351881, 38.40881732222806 ], [ -82.351068783533165, 38.41009947563365 ], [ -82.348306702275934, 38.413345480370275 ], [ -82.34505660583865, 38.417011487814221 ], [ -82.336603311657228, 38.421478567999756 ], [ -82.316025543330369, 38.426106838221806 ], [ -82.311135348859068, 38.425907917981014 ], [ -82.289985448911125, 38.419297331387575 ], [ -82.273467751741933, 38.415094642575738 ], [ -82.261130294441799, 38.418000803126205 ], [ -82.226476007227035, 38.429377224420627 ], [ -82.216694626340896, 38.431326357194941 ], [ -82.197879843987565, 38.430926665483241 ], [ -82.129434178132598, 38.441509599097756 ], [ -82.122856876371358, 38.439407736714536 ], [ -82.086463080659968, 38.421269628737015 ], [ -82.08080982452806, 38.420037743391262 ], [ -82.071532452231125, 38.420857881575067 ], [ -82.06563421597771, 38.421387968999809 ], [ -82.052015741782952, 38.426538096955277 ], [ -82.013569442355106, 38.441739419133349 ], [ -81.988444775638314, 38.453939538328967 ], [ -81.967448223839199, 38.458253728311043 ], [ -81.93868531202979, 38.456339150867741 ], [ -81.935663214379275, 38.456049197254153 ], [ -81.907617310658068, 38.453509625670208 ], [ -81.887505747639537, 38.455809843311066 ], [ -81.874458339205901, 38.45521103028176 ], [ -81.861686913396071, 38.453391241185926 ], [ -81.848838408836272, 38.447975535125437 ], [ -81.844230225485759, 38.445934643281284 ], [ -81.83578389470992, 38.442462836103736 ], [ -81.828718583066589, 38.437939035167823 ], [ -81.8256743328146, 38.43056924566018 ], [ -81.822561186114825, 38.428158343702336 ], [ -81.81350487422182, 38.426529505598147 ], [ -81.799382227051254, 38.416569932111109 ], [ -81.786991506328874, 38.400888473053477 ], [ -81.772036964708931, 38.397192771906681 ], [ -81.768481644483842, 38.387576051123233 ], [ -81.738641275190517, 38.363914074561563 ], [ -81.73752021671794, 38.362491127586765 ], [ -81.732118058723557, 38.361244247928482 ], [ -81.720666827317288, 38.363292389860376 ], [ -81.716088651423121, 38.360328537959852 ], [ -81.702546286311048, 38.358596806236321 ], [ -81.690690122650324, 38.364158869718288 ], [ -81.680366891220643, 38.364964022645324 ], [ -81.66763351580002, 38.361867310560278 ], [ -81.651465967883951, 38.354687755462578 ], [ -81.650397943736678, 38.354760771555057 ], [ -81.646895897474337, 38.356496787882087 ], [ -81.639433790598048, 38.35981883174933 ], [ -81.633353652470234, 38.360203924004786 ], [ -81.632094596794602, 38.359051973144091 ], [ -81.631529488590047, 38.354749087532078 ], [ -81.623259230502299, 38.35207529117271 ], [ -81.61791103316888, 38.348959456797552 ], [ -81.612150738368484, 38.341856726858488 ], [ -81.606962524776279, 38.337820912538092 ], [ -81.598691275694051, 38.335547106960163 ], [ -81.596746216815987, 38.334998153043841 ], [ -81.587101945320015, 38.333205358857391 ], [ -81.58067071932318, 38.329959546439113 ], [ -81.571064344522512, 38.323409868612337 ], [ -81.561893976570218, 38.316688188012677 ] ], [ [ -81.563587853677248, 38.309227342820662 ], [ -81.566844868895004, 38.306351358567625 ], [ -81.565288579146127, 38.294845667467222 ], [ -81.569164541512066, 38.288883748393189 ], [ -81.572162423002737, 38.280197910923548 ], [ -81.57412316975423, 38.266507213732986 ], [ -81.573069783096031, 38.250043635554903 ], [ -81.569704553579086, 38.244202819128382 ], [ -81.565142343783975, 38.240300980681909 ], [ -81.551629824002319, 38.232843369164286 ], [ -81.534868079493947, 38.220007924491583 ], [ -81.528420743643466, 38.213283174853039 ], [ -81.512176974061887, 38.199511734999547 ], [ -81.498710450588035, 38.192593097068432 ], [ -81.491111262524058, 38.192642188455139 ], [ -81.481399091550884, 38.19534725030708 ], [ -81.478362011578696, 38.195194290474213 ], [ -81.476637926475121, 38.193584344901396 ], [ -81.476896762962753, 38.187069477046528 ], [ -81.474676669135221, 38.185570535068521 ], [ -81.467749487984619, 38.185165627366032 ], [ -81.465475292090133, 38.179714767689681 ], [ -81.462042121349342, 38.176311879472408 ], [ -81.445569641853922, 38.173127143462615 ], [ -81.444951565000508, 38.17064020201218 ], [ -81.449414499115122, 38.163724290744547 ], [ -81.445752273726654, 38.158181448522939 ], [ -81.447660031552758, 38.146691662119906 ], [ -81.451862996476351, 38.141423720816938 ], [ -81.448200820585157, 38.137757839520276 ], [ -81.446125702220513, 38.134912922486485 ], [ -81.435925412843062, 38.132574090515597 ], [ -81.427349246551302, 38.133726167817123 ], [ -81.419926040227281, 38.132143287428846 ], [ -81.403232721494049, 38.134665432541595 ], [ -81.398486552296816, 38.132013542095564 ], [ -81.389323316888508, 38.130774674810958 ], [ -81.387003986814463, 38.118555948439578 ], [ -81.389261933311417, 38.114024013553241 ], [ -81.389032804053826, 38.108577126126548 ], [ -81.384104539047783, 38.101596323913199 ], [ -81.390215584805588, 38.097858328777896 ], [ -81.391863533501592, 38.094085385985508 ], [ -81.387957343303668, 38.089366526093556 ], [ -81.38676621652634, 38.084888630042066 ], [ -81.38239506018769, 38.081996738269069 ], [ -81.379876832550067, 38.074187924114312 ], [ -81.380914739418841, 38.069107014562114 ], [ -81.374284490129796, 38.063938193492028 ], [ -81.375031248385866, 38.052418416419805 ], [ -81.363830827030554, 38.043198726585665 ], [ -81.363090770357431, 38.041256773691785 ], [ -81.361572597470925, 38.034657922551958 ], [ -81.353988253378787, 38.025338192623664 ], [ -81.354568042933678, 38.015058391273854 ], [ -81.349829817894047, 38.008558572704374 ], [ -81.351661757290231, 38.004190639727327 ], [ -81.350989706162721, 38.00235968352986 ], [ -81.346801577013494, 37.99977678000446 ], [ -81.340117427502577, 37.998288879891128 ], [ -81.330809076570063, 37.989428142382572 ], [ -81.32247796997521, 37.991301198131261 ], [ -81.30503657468455, 37.98699046379808 ], [ -81.295561232080317, 37.978419718963067 ], [ -81.293997142154794, 37.975378790002779 ], [ -81.291570073540356, 37.974089838833081 ], [ -81.284581942590719, 37.973601921769756 ], [ -81.260709253358414, 37.959941415232343 ], [ -81.255550945127993, 37.949039660272376 ], [ -81.257007844701789, 37.942840753775435 ], [ -81.261989823248243, 37.937621794013175 ], [ -81.263355663414515, 37.928600938606372 ], [ -81.270855601251284, 37.919381024914586 ], [ -81.266765299479871, 37.907872269029937 ], [ -81.267986169185406, 37.900471387291098 ], [ -81.267069883415616, 37.887143631236526 ], [ -81.267184713392865, 37.878682779205725 ], [ -81.261477452022774, 37.870320981620701 ], [ -81.260310277186022, 37.86260412836652 ], [ -81.254244052486854, 37.856252297609636 ], [ -81.251977895777031, 37.850252424042047 ], [ -81.246164675457067, 37.847253543408179 ], [ -81.236345297499014, 37.845251703590264 ], [ -81.230569048398223, 37.842714821734234 ], [ -81.22536578677186, 37.838533961550752 ], [ -81.217598481321815, 37.836558095568051 ], [ -81.215256359425723, 37.834445162709194 ], [ -81.213402195964562, 37.829363275926234 ], [ -81.215462030086186, 37.817362460754708 ], [ -81.212608804572341, 37.810832612478812 ], [ -81.211814646801258, 37.804175739989489 ], [ -81.212936561904982, 37.797923835599228 ], [ -81.21693459951166, 37.79297187096244 ], [ -81.22105460565254, 37.786242935812062 ], [ -81.221046419887472, 37.776855100937631 ], [ -81.218574162303042, 37.768005288818706 ], [ -81.212714782608629, 37.758663529950816 ], [ -81.208281530371764, 37.753337681979687 ], [ -81.206702414696665, 37.750114759564816 ], [ -81.207930385245575, 37.741436794540903 ], [ -81.205740269349846, 37.736286853849798 ], [ -81.203375166791588, 37.733585901118843 ], [ -81.194631836876383, 37.729836039298085 ], [ -81.188138716401866, 37.741086057861786 ], [ -81.154423790991814, 37.756085340303322 ], [ -81.146923619217759, 37.760209364963821 ], [ -81.138844433270521, 37.764645391354755 ], [ -81.122546911001336, 37.765805583783333 ], [ -81.074602228645119, 37.761205294732719 ], [ -81.056901628465596, 37.760587537944808 ], [ -81.018738397735504, 37.762815997059782 ], [ -80.975043118386353, 37.775878234021874 ], [ -80.955488592745297, 37.784758261194128 ], [ -80.94593627498999, 37.785628337196606 ], [ -80.92785455637167, 37.781096585971106 ], [ -80.912412000554866, 37.780356743914922 ], [ -80.898807473994708, 37.77788491195718 ], [ -80.894016293216154, 37.77726696671796 ], [ -80.890896278708553, 37.781958921129188 ], [ -80.881565015120501, 37.785025961216398 ], [ -80.877101939394294, 37.788897943326333 ], [ -80.870906779971435, 37.791587961356782 ], [ -80.85180920119501, 37.795509087511242 ], [ -80.831117624052624, 37.801788198687305 ], [ -80.814943144971878, 37.805210310883815 ], [ -80.809160344394613, 37.822757122963672 ], [ -80.806284300076797, 37.825077120599644 ], [ -80.800974183741857, 37.827808138509624 ], [ -80.782281637307605, 37.831287289048291 ], [ -80.756141943007393, 37.838756471486867 ], [ -80.741379481602408, 37.840397586485551 ], [ -80.731796235216038, 37.843857620184323 ], [ -80.710930025091812, 37.864837534019202 ], [ -80.696990634685449, 37.868587605189731 ], [ -80.676238318831295, 37.88513958615394 ], [ -80.663580999869197, 37.890037638613919 ], [ -80.658865924877517, 37.893677637884821 ], [ -80.645010612354838, 37.900570681042858 ], [ -80.633276278526083, 37.903549751201659 ], [ -80.618153850680315, 37.907490841889889 ], [ -80.61373670230617, 37.907669879177391 ], [ -80.595623972889356, 37.903359085562769 ], [ -80.576792970330629, 37.888657403268645 ], [ -80.563891201735544, 37.8751306516954 ], [ -80.55376668519736, 37.868108807462974 ], [ -80.52896966040467, 37.86091008429517 ], [ -80.514450094998821, 37.858122230666638 ], [ -80.506049677647837, 37.852709350445856 ], [ -80.489272075275011, 37.849680475446192 ], [ -80.479620703932866, 37.846109549789105 ], [ -80.4649491164366, 37.839399672447392 ], [ -80.446668313907267, 37.827230854539366 ], [ -80.440740025570619, 37.821779925205441 ], [ -80.427868551493503, 37.816802018450105 ], [ -80.4122809336518, 37.808242149859282 ], [ -80.395808439968775, 37.806743225004361 ], [ -80.388736175417648, 37.803321278927108 ], [ -80.381945603030516, 37.783091461911958 ], [ -80.381609464139473, 37.776221516498481 ], [ -80.376757280036188, 37.773341555352502 ], [ -80.367906992785663, 37.770572606429774 ], [ -80.345841416257841, 37.771163676224475 ], [ -80.335694124020577, 37.769851719822363 ], [ -80.323601817767866, 37.770739754095658 ], [ -80.318474712055647, 37.772612758284012 ], [ -80.304626491348998, 37.782042741140202 ], [ -80.283195175225231, 37.799762700813453 ], [ -80.27835103490365, 37.799350721562433 ], [ -80.2713847338931, 37.791812795538398 ], [ -80.267234584534364, 37.789290826541894 ], [ -80.256614273663672, 37.787742874354187 ], [ -80.251594146027287, 37.788401888305955 ], [ -80.23335830234528, 37.78229113617455 ], [ -80.226530033805773, 37.78438220840421 ], [ -80.224446984135184, 37.787491215574704 ], [ -80.222867947019495, 37.789898220731921 ], [ -80.21583367526533, 37.792507292627235 ], [ -80.208287431800017, 37.799087347271346 ], [ -80.196071957993425, 37.803677472337398 ], [ -80.18725269217127, 37.81313752645228 ], [ -80.180546431926004, 37.815788594714157 ], [ -80.167720970029947, 37.823879707824908 ], [ -80.152865253354364, 37.818478925595777 ], [ -80.139932680608823, 37.817910090902238 ], [ -80.127268095667901, 37.815263264772248 ], [ -80.113091512056016, 37.818372424497952 ], [ -80.075438831134647, 37.815145914370625 ], [ -80.061362148433545, 37.808775126122576 ], [ -80.057790972392439, 37.806852181470617 ], [ -80.052778658749077, 37.797865293964875 ], [ -80.034520792450621, 37.790663561313686 ], [ -80.028851504302011, 37.786486654818404 ], [ -80.01623995543325, 37.78604381417734 ], [ -79.998485088644699, 37.775649097815808 ], [ -79.992930834326756, 37.773315208083368 ], [ -79.985407508895946, 37.772086347368173 ], [ -79.981623354614442, 37.772407412092633 ], [ -79.975695149369486, 37.776507491661846 ], [ -79.969842902221743, 37.776126596356377 ], [ -79.962983579148585, 37.772414740009694 ], [ -79.956888305792248, 37.77048485985479 ], [ -79.950998069031257, 37.771285958442959 ], [ -79.93718754498866, 37.776085168052568 ], [ -79.930336303869609, 37.780205258180338 ], [ -79.919257821759629, 37.77807646686307 ], [ -79.913779600247224, 37.778614558328975 ], [ -79.902992232805616, 37.786026687520021 ], [ -79.877600284044973, 37.795278045629026 ], [ -79.86829997524346, 37.802037143857277 ], [ -79.856870537255546, 37.804967309286198 ], [ -79.849965305345478, 37.809606381589674 ], [ -79.837483914167692, 37.820306485632571 ], [ -79.828495646806815, 37.829118545252804 ], [ -79.824032480968484, 37.830568602630166 ], [ -79.815289112410625, 37.82960275307174 ], [ -79.8084218309926, 37.82953886430014 ], [ -79.793147177557842, 37.827048137239053 ], [ -79.78514385051686, 37.82704826663867 ], [ -79.766176132361281, 37.831747519088978 ], [ -79.761674948420094, 37.831717591665921 ], [ -79.754060605860076, 37.829077745170771 ], [ -79.74333315396828, 37.820460961451225 ], [ -79.740945038065263, 37.816188029287254 ], [ -79.740433934457542, 37.808818121701293 ], [ -79.732918629649987, 37.800300277222071 ], [ -79.727951456696545, 37.797008352201416 ], [ -79.717911173471933, 37.795779438110337 ], [ -79.681777417589174, 37.812679480233555 ], [ -79.673858217915665, 37.813579523521575 ], [ -79.669204126286118, 37.816188522408758 ], [ -79.654775919293854, 37.830470437778274 ], [ -79.642149702637028, 37.840030398706247 ], [ -79.632772565870312, 37.84904034323381 ], [ -79.62489153432449, 37.863300207404826 ], [ -79.622785555268521, 37.869468139689786 ], [ -79.620039506926275, 37.871417131468675 ], [ -79.613157347072374, 37.873180151834298 ], [ -79.598692124833562, 37.885978072036735 ], [ -79.579831750623484, 37.895789056137808 ], [ -79.573910615476905, 37.89743706996051 ], [ -79.57009650543722, 37.896659103921166 ], [ -79.561002162289924, 37.88835827381984 ], [ -79.547603725197035, 37.881599450773571 ], [ -79.489862944435586, 37.862469143195781 ], [ -79.479082517234659, 37.852471413474717 ], [ -79.474145345162086, 37.849678511423576 ], [ -79.455544759399459, 37.843972811095561 ], [ -79.449975565803754, 37.84045192566299 ], [ -79.444924361652483, 37.834482067756376 ], [ -79.441872097265176, 37.817502338322761 ], [ -79.436851891196113, 37.810712489929863 ], [ -79.414665205790371, 37.800992877051236 ], [ -79.397749700088724, 37.794260160578474 ], [ -79.367339286732303, 37.841352885207527 ], [ -79.36123519060456, 37.850641835114857 ], [ -79.334951567502983, 37.866720939232081 ], [ -79.327184365643902, 37.86961199529491 ], [ -79.31741809662897, 37.87115309303428 ], [ -79.282353175943754, 37.887083316922983 ], [ -79.258258574436582, 37.91052132381364 ], [ -79.223574653188564, 37.936602729118519 ], [ -79.198686999320458, 37.965193966049775 ], [ -79.183953591789091, 37.980052130680626 ], [ -79.171479308286294, 38.004634083837232 ], [ -79.163346140671266, 38.011283131059642 ], [ -79.141052637868754, 38.02496333134539 ], [ -79.130585430273797, 38.033103373544805 ], [ -79.120583321032427, 38.047191254905613 ], [ -79.113709294749484, 38.060134085279792 ], [ -79.106156154371206, 38.065883095358707 ], [ -79.084975714447566, 38.077892203150476 ], [ -79.079978658098796, 38.083854142748407 ], [ -79.072288650287945, 38.098181906478899 ], [ -79.061675502854314, 38.108183824744252 ], [ -79.04769831370821, 38.12110470556717 ], [ -79.034201868890122, 38.116283067356107 ], [ -79.011557047013142, 38.103973817779192 ], [ -79.004666775893241, 38.099114086341956 ], [ -78.988584205821965, 38.082882748262094 ], [ -78.981366001113358, 38.076813987436068 ], [ -78.970821748801313, 38.070676255687481 ], [ -78.943043208471636, 38.061727747692032 ], [ -78.941349175886643, 38.061185778095528 ], [ -78.921290792883468, 38.054778142297437 ], [ -78.905894459352851, 38.047026522987785 ], [ -78.899363309301208, 38.043082709040547 ], [ -78.890414122132654, 38.038817927720366 ], [ -78.877161978446182, 38.041415947438026 ], [ -78.871378856378556, 38.038498096404368 ], [ -78.868738754266502, 38.0339662764396 ], [ -78.865824697050527, 38.032756343357278 ], [ -78.85948460707128, 38.032486406586798 ], [ -78.857492580324376, 38.032505422815973 ], [ -78.834284362276748, 38.039356373043354 ], [ -78.816400183678127, 38.044048349239013 ], [ -78.800362954122917, 38.043228509849314 ], [ -78.790772862574343, 38.046127479524714 ], [ -78.781152745567624, 38.047176517439986 ], [ -78.769776585231028, 38.046737625416938 ], [ -78.755700358478862, 38.043926846889505 ], [ -78.736610913746205, 38.047336803184251 ], [ -78.731231740013257, 38.046756842074373 ], [ -78.725578539435162, 38.044567944331135 ], [ -78.715828194619235, 38.04064612667802 ], [ -78.675344858134807, 38.030347653867985 ], [ -78.657415320573278, 38.030568701402728 ], [ -78.611133963809635, 38.035489652867547 ], [ -78.602031680021511, 38.033978740821382 ], [ -78.583217066925812, 38.025011153966645 ], [ -78.574923807541609, 38.022230290249254 ], [ -78.566821565278531, 38.021471346113941 ], [ -78.543962896903793, 38.022459379896652 ], [ -78.536684677353591, 38.020738471483192 ], [ -78.534334604194612, 38.019377533078909 ], [ -78.523591269100777, 38.011488881379066 ], [ -78.515153019380222, 38.008761017401241 ], [ -78.492569405720417, 38.007129120237124 ], [ -78.482705177341117, 38.009589006060963 ], [ -78.47656303523793, 38.011289929016307 ], [ -78.471839925908682, 38.012617869389906 ], [ -78.468650852094683, 38.013551827872845 ], [ -78.430418960868153, 38.020620499923766 ], [ -78.423712804035844, 38.021429460257998 ], [ -78.418181673787444, 38.020830475415366 ], [ -78.38411587383024, 38.012991717018295 ], [ -78.374715654660761, 38.010469794175989 ], [ -78.342564884809093, 37.99798913305132 ], [ -78.315884250783824, 37.996131102332882 ], [ -78.286449584489063, 37.99659204043315 ], [ -78.249384696140922, 37.992430014550216 ], [ -78.213677757623842, 37.97701125027541 ], [ -78.176781836674905, 37.962050530738054 ], [ -78.135184890112157, 37.951110812190613 ], [ -78.103461159138135, 37.93798113464797 ], [ -78.086584764656422, 37.928150371255569 ], [ -78.073019436119324, 37.916832634259386 ], [ -78.052396972449131, 37.902840998033454 ], [ -78.018651229870642, 37.873662776799065 ], [ -77.999706850050757, 37.85976219803306 ], [ -77.982120518846756, 37.844065482425052 ], [ -77.980701497526567, 37.844393471169063 ], [ -77.981418506153645, 37.843492492696164 ], [ -77.962482172882332, 37.827703778902041 ], [ -77.912516397081049, 37.798133286820629 ], [ -77.903308265111079, 37.793025374984957 ], [ -77.888491059058211, 37.781283596061073 ], [ -77.856889657440306, 37.756519068821497 ], [ -77.838190508233779, 37.743965265985985 ], [ -77.81820848498748, 37.724175530920178 ], [ -77.805284390896688, 37.717075609755 ], [ -77.785906188997558, 37.711144652195095 ], [ -77.782511150306675, 37.710354655598664 ], [ -77.781557127654438, 37.711315638206898 ], [ -77.779680117505819, 37.709736657776872 ], [ -77.752854823792674, 37.70127571704441 ], [ -77.715332904573728, 37.695133616581501 ], [ -77.677153941441318, 37.68671454343626 ], [ -77.669371754220734, 37.683636550676631 ], [ -77.646453228447101, 37.670265642858361 ], [ -77.644980194347212, 37.669407648912014 ], [ -77.633916929049107, 37.664196675148986 ], [ -77.605337207937183, 37.655506669196235 ], [ -77.598280035149713, 37.652325685186668 ], [ -77.59396094104919, 37.648323728727085 ], [ -77.585179742712825, 37.641136802430246 ], [ -77.554241987178443, 37.623955933987133 ], [ -77.545391764503009, 37.619816960093068 ], [ -77.537387582214521, 37.61191705373777 ], [ -77.532253455187444, 37.608777081950102 ], [ -77.52392123647941, 37.60622508541357 ], [ -77.516414032732598, 37.605355064675166 ], [ -77.503336675507086, 37.604405019212372 ], [ -77.49836256110315, 37.599225083606818 ], [ -77.491427384633283, 37.597386080846832 ], [ -77.484080196848367, 37.595395078691318 ], [ -77.479105086446964, 37.588647169142021 ], [ -77.474870978547273, 37.58677418030495 ], [ -77.472238909487075, 37.586186177443786 ], [ -77.470125858570484, 37.584081202949605 ], [ -77.467950812440179, 37.579465270913381 ], [ -77.462869683615693, 37.575769309055858 ], [ -77.454141456438734, 37.570516355999061 ], [ -77.453622465087093, 37.559560540136189 ], [ -77.443918205027273, 37.552754609001248 ], [ -77.434716949505145, 37.549466620451433 ], [ -77.431069846285268, 37.549356604659465 ], [ -77.419686518354041, 37.558908386532572 ], [ -77.415711407783419, 37.558618372215875 ], [ -77.410057250891327, 37.555806392833816 ], [ -77.409142225379313, 37.555387395558142 ], [ -77.401757018535918, 37.55280840386866 ], [ -77.398498926081558, 37.549390446505626 ], [ -77.395972853695156, 37.546590482140232 ], [ -77.377944326078747, 37.531594651583283 ], [ -77.371024123537737, 37.529656651460122 ], [ -77.361227845237352, 37.532006564183433 ], [ -77.353384621255657, 37.532605516262208 ], [ -77.326886853491672, 37.529920435197532 ], [ -77.308797331154224, 37.528874366574101 ], [ -77.290470791403919, 37.525735332919965 ], [ -77.270428185908102, 37.520394329172575 ], [ -77.245853451975407, 37.514066333581347 ], [ -77.238933278555422, 37.513558331610845 ], [ -77.209490585805085, 37.51730522232139 ], [ -77.202593420132246, 37.517587207034815 ], [ -77.189684094445866, 37.515927215709226 ], [ -77.138382804653105, 37.509317249648078 ], [ -77.10854307958067, 37.508077225274548 ], [ -77.085196490627382, 37.50423525410384 ], [ -77.040937404952459, 37.498117278747593 ], [ -77.040281388790731, 37.497167288855898 ], [ -77.026945073502048, 37.496236279688915 ], [ -77.023679995506711, 37.495046288696884 ], [ -76.966274826680277, 37.487676269837522 ], [ -76.917338933520796, 37.479226262356399 ], [ -76.882601232713469, 37.460855385824679 ], [ -76.860330751496591, 37.446328488495688 ], [ -76.837366214136225, 37.427575627799342 ], [ -76.824250926863215, 37.421365658304168 ], [ -76.806260552001021, 37.416387662475444 ], [ -76.79635732351592, 37.410897691595181 ], [ -76.784813048548017, 37.403836730967271 ], [ -76.769233641500065, 37.390786816298338 ], [ -76.759773382227621, 37.382077874071797 ], [ -76.745375925157575, 37.364915928606983 ], [ -76.735762620717026, 37.356374837125003 ], [ -76.696264461518794, 37.320966563183831 ], [ -76.68352308824258, 37.303876584172343 ], [ -76.675114853282935, 37.292348615003135 ], [ -76.66763765547654, 37.282617644263645 ], [ -76.655079356041213, 37.269967656887943 ], [ -76.645413125208378, 37.256955729547379 ], [ -76.630031836559667, 37.237035790914796 ], [ -76.626064768226414, 37.233487783408215 ], [ -76.608821467568447, 37.22016673639807 ], [ -76.601749342112413, 37.217145692384477 ], [ -76.592388174994312, 37.215242610868025 ], [ -76.591472158742945, 37.214830605680497 ], [ -76.587360085759116, 37.212976582732836 ], [ -76.572314818823912, 37.203256539932859 ], [ -76.555376516239335, 37.182515631429155 ], [ -76.551836452117229, 37.174935696313639 ], [ -76.537768194270456, 37.154855832591423 ], [ -76.529444038512963, 37.140004962676073 ], [ -76.515680779141007, 37.122458093491915 ], [ -76.509324659879056, 37.117987105982692 ], [ -76.502633535837276, 37.116438074425382 ], [ -76.486314080056786, 37.113446951829701 ], [ -76.478539846266358, 37.110456917015796 ], [ -76.470482602047227, 37.104245935963803 ], [ -76.459122253346266, 37.089308080948982 ], [ -76.448737937186181, 37.079039171143783 ], [ -76.419845067111893, 37.060568292451435 ], [ -76.406950679077184, 37.051565384153442 ], [ -76.394713308949662, 37.040537538066559 ], [ -76.387846102154825, 37.035147614451482 ], [ -76.377950809113599, 37.032076627107699 ], [ -76.368428530651542, 37.032026575846551 ], [ -76.362935371865092, 37.033457512101513 ], [ -76.356549187608607, 37.035109437052078 ], [ -76.34100773405612, 37.033106398516665 ], [ -76.333172501903704, 37.028486472047085 ], [ -76.329632393926204, 37.023657576806286 ], [ -76.32712931150688, 37.015028786199139 ], [ -76.324207224731765, 37.013098823300091 ], [ -76.317684021455776, 37.000678122024148 ], [ -76.301219396591762, 36.982909186356224 ], [ -76.299601245530226, 36.97066825702624 ], [ -76.298099186036737, 36.968597264846984 ], [ -76.291696987949393, 36.966117258740319 ], [ -76.270761385119641, 36.962627210414965 ], [ -76.267206277322643, 36.961208207473909 ], [ -76.264490169710612, 36.9567062267867 ], [ -76.266657147720807, 36.946010301342319 ], [ -76.265695042365024, 36.935409364941364 ], [ -76.270555075600015, 36.923000458905278 ], [ -76.26996804852557, 36.921458466693956 ], [ -76.267068938403796, 36.916846486313254 ], [ -76.258859663802852, 36.908199514361939 ], [ -76.256501597426748, 36.907317512363782 ], [ -76.253106486977501, 36.903907523049938 ], [ -76.239335192862356, 36.903068532272862 ], [ -76.236749135355353, 36.902019543268487 ], [ -76.230903947641451, 36.891128630506905 ], [ -76.226494825600696, 36.885657679906004 ], [ -76.21379855886893, 36.882110737040882 ], [ -76.202194316367965, 36.878780793791734 ], [ -76.197349200121295, 36.875007839493065 ], [ -76.194923120604358, 36.869807892454595 ], [ -76.196387988648453, 36.845299104221041 ], [ -76.195708873917269, 36.829590246110442 ], [ -76.19481573528229, 36.810768417885363 ], [ -76.1964797301071, 36.80529845650112 ], [ -76.201285784949306, 36.80027847066453 ], [ -76.212981957964757, 36.794159446731811 ], [ -76.254333588143609, 36.773598350999904 ], [ -76.26804379581192, 36.76277945902504 ], [ -76.276558937891011, 36.758248512120815 ], [ -76.294991317852151, 36.757794568338646 ], [ -76.298875401100972, 36.758038578095906 ], [ -76.319238840968211, 36.759369629168681 ], [ -76.34475137394594, 36.758538709016143 ], [ -76.350542499117552, 36.758709724991434 ], [ -76.356272642498681, 36.760720729597281 ], [ -76.364237931385276, 36.771740686130812 ], [ -76.371211124526411, 36.775448684442132 ], [ -76.391673635364398, 36.780480715529443 ], [ -76.398593878928921, 36.787991691343414 ], [ -76.406368022318915, 36.785259731330143 ], [ -76.41505821957368, 36.785290757561171 ], [ -76.421108347547346, 36.784538780456394 ], [ -76.429760501533309, 36.781201826619693 ] ], [ [ -90.449040167680153, 38.638663566849779 ], [ -90.417530201944686, 38.635500426283372 ], [ -90.405490822896908, 38.635333361610876 ], [ -90.395327495908163, 38.635951299233355 ], [ -90.392153397504273, 38.635741283883007 ], [ -90.383952173759582, 38.631846278316303 ], [ -90.366342636289957, 38.629653203036284 ], [ -90.3527081902389, 38.63127811116933 ], [ -90.346215999492514, 38.629614091871424 ], [ -90.343514912565766, 38.629775075292336 ], [ -90.335152648219591, 38.629733029365902 ], [ -90.320008177966386, 38.628671955903862 ], [ -90.311431909937951, 38.628259912377565 ], [ -90.308815819621145, 38.629133889280382 ], [ -90.306785749655305, 38.629800871482367 ], [ -90.300277521231195, 38.632440809607964 ], [ -90.286705098733009, 38.631620742525421 ], [ -90.278052839275986, 38.62989971128944 ], [ -90.265784442630164, 38.630907633619344 ], [ -90.260779277425712, 38.631738597943254 ], [ -90.254965103771355, 38.630472577874059 ], [ -90.244939757709119, 38.631822493028388 ], [ -90.235334423895068, 38.631422413108425 ], [ -90.218182856578238, 38.627222303849386 ], [ -90.199833246816766, 38.623140183270877 ], [ -90.191631975571497, 38.621183130737258 ], [ -90.19050293850276, 38.620882123813651 ], [ -90.18925089846725, 38.62042011737244 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I640\", \"DIST_MILES\": 10.610000, \"DIST_KM\": 17.080000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -83.973991059095155, 35.955460795540354 ], [ -83.972366064467295, 35.958913807533541 ], [ -83.979217547296827, 35.968652627297459 ], [ -83.978881645432793, 35.974030604977436 ], [ -83.978729806909556, 35.982091564938266 ], [ -83.960334395834735, 35.998483817636654 ], [ -83.958511358503216, 36.000222840709043 ], [ -83.95185822702139, 36.005212896168857 ], [ -83.940489857630666, 36.008501059969809 ], [ -83.922614430040028, 36.0188012428466 ], [ -83.912474116960297, 36.022074380162245 ], [ -83.894437632705021, 36.030169588412178 ], [ -83.88661736691131, 36.031733705627225 ], [ -83.869358603697592, 36.029323050606543 ], [ -83.866543450917021, 36.028014120788107 ], [ -83.862904194183855, 36.024406240641603 ], [ -83.86118690890352, 36.017383377871063 ], [ -83.863101826926908, 36.012202421329526 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I65\", \"DIST_MILES\": 888.740000, \"DIST_KM\": 1430.290000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -87.306197496870652, 41.598928414511228 ], [ -87.306907498384234, 41.598165414010332 ], [ -87.305793293569522, 41.587484459294238 ], [ -87.295820946769624, 41.578993542223031 ], [ -87.296224876460059, 41.57436255843497 ], [ -87.300512875338157, 41.569193555981009 ], [ -87.310644882894266, 41.557676543945853 ], [ -87.311041783922519, 41.551420564485639 ], [ -87.311041549966646, 41.537733614263445 ], [ -87.31944136897242, 41.51747763402976 ], [ -87.319898208958165, 41.507639665047648 ], [ -87.319836959410523, 41.490938665965537 ], [ -87.323979781232865, 41.471205582656928 ], [ -87.3218435308099, 41.455007551181971 ], [ -87.321652267406876, 41.435007496049117 ], [ -87.321521805163528, 41.39960639706085 ], [ -87.324131767411288, 41.393427363348863 ], [ -87.326748738361246, 41.387975331788347 ], [ -87.326374679404339, 41.383947322852869 ], [ -87.302226537501497, 41.323095294807047 ], [ -87.301066105325518, 41.289507203420101 ], [ -87.30060096172258, 41.278387173535052 ], [ -87.295503683738815, 41.260977150959697 ], [ -87.295517920853214, 41.219717046397186 ], [ -87.290795687456153, 41.211466056835022 ], [ -87.285508463968611, 41.20415707474487 ], [ -87.284134121836075, 41.18881805109568 ], [ -87.275459601301804, 41.170076074488101 ], [ -87.26775316864007, 41.155187104451194 ], [ -87.265723888673548, 41.143656100125305 ], [ -87.265111749608678, 41.091554016204292 ], [ -87.270582578130586, 41.079316944399906 ], [ -87.270397017099924, 41.006936814313427 ], [ -87.266803780614595, 40.999314853336678 ], [ -87.250048865299874, 40.975656426347761 ], [ -87.222871625941892, 40.948558085905084 ], [ -87.220971385674147, 40.940238222570997 ], [ -87.217232838048346, 40.920657532072994 ], [ -87.195930403073248, 40.877888225443023 ], [ -87.178442406894291, 40.84921663470633 ], [ -87.161733317383778, 40.814740047138237 ], [ -87.154073065516954, 40.809529100984392 ], [ -87.146671819239245, 40.804280150586919 ], [ -87.131458121553564, 40.784490320537721 ], [ -87.119647519072458, 40.765847455158081 ], [ -87.114772281422006, 40.758519499947468 ], [ -87.098467702371934, 40.741662344307755 ], [ -87.059983430216761, 40.694149232242658 ], [ -87.051583041666603, 40.673846776847036 ], [ -87.04078682799009, 40.667468581347741 ], [ -87.03157865308755, 40.662158414477986 ], [ -86.98713649959133, 40.61534726953694 ], [ -86.971830925437544, 40.594834920429271 ], [ -86.949155199208747, 40.57718369375354 ], [ -86.936452707857484, 40.561665469478818 ], [ -86.928509391649783, 40.551766332201979 ], [ -86.911129772496523, 40.536614170611017 ], [ -86.885607664305667, 40.502853761980283 ], [ -86.868479145950047, 40.496895883917183 ], [ -86.86367300284617, 40.495254936620547 ], [ -86.860345872526409, 40.491813989572272 ], [ -86.84748209260826, 40.45578532908285 ], [ -86.843995890811613, 40.445805411896046 ], [ -86.840035761393295, 40.442052454382491 ], [ -86.829705377064727, 40.427266582843451 ], [ -86.82096110162172, 40.417657661821799 ], [ -86.814445911610022, 40.411156710559148 ], [ -86.801544594603868, 40.40256677545792 ], [ -86.789794263886478, 40.388005840273848 ], [ -86.786933182225042, 40.383836854219339 ], [ -86.782049981743455, 40.368386892951285 ], [ -86.748503204190527, 40.319306896532993 ], [ -86.730909806286931, 40.309087933526172 ], [ -86.703176265432703, 40.287294007203208 ], [ -86.695394137189226, 40.283079029348933 ], [ -86.663365674114644, 40.269136125976836 ], [ -86.656132607240011, 40.261877155784774 ], [ -86.620762211137404, 40.231085778893593 ], [ -86.577457593867521, 40.200816666763465 ], [ -86.555797247126705, 40.177677294308474 ], [ -86.520128612452325, 40.133519434821217 ], [ -86.511583394563758, 40.104818142027234 ], [ -86.502535180678223, 40.082998672618281 ], [ -86.497071995993778, 40.069670961656847 ], [ -86.492738791705051, 40.053401299725891 ], [ -86.489068641032134, 40.04661141470892 ], [ -86.484017446637623, 40.041301474203244 ], [ -86.47094796211357, 40.03369047541581 ], [ -86.449829193970558, 40.026992333265255 ], [ -86.442687917181843, 40.021628345575337 ], [ -86.396001843712725, 39.981132370752078 ], [ -86.351893711818477, 39.945613333595809 ], [ -86.339015025501979, 39.931102416575875 ], [ -86.333292712734021, 39.924144466705847 ], [ -86.326204329828897, 39.915809527353289 ], [ -86.315545773517456, 39.904513603036627 ], [ -86.306000222888244, 39.891009741924833 ], [ -86.284027162671251, 39.873225832877118 ], [ -86.274382672220298, 39.863784913887706 ], [ -86.265257183730398, 39.853264028496433 ], [ -86.258276787558657, 39.843754150619866 ], [ -86.255483662764817, 39.84212515578588 ], [ -86.252409550871747, 39.84197612769659 ], [ -86.24283420346832, 39.83948510229078 ], [ -86.228329534801517, 39.824799310461124 ], [ -86.2114150066988, 39.824127207486704 ], [ -86.2000006458222, 39.823322146191146 ], [ -86.179797882557068, 39.81243525516377 ], [ -86.174517709175021, 39.811405243963321 ], [ -86.169039546835791, 39.811661202001254 ], [ -86.16639943377298, 39.809086244429444 ], [ -86.164614195214966, 39.794701567681813 ], [ -86.16694913887126, 39.784962807999982 ], [ -86.164568043390602, 39.782982840229458 ], [ -86.157365830514848, 39.782871801299756 ], [ -86.141229346366671, 39.782013728833775 ], [ -86.14303021553161, 39.766927099677986 ], [ -86.144021103118774, 39.755372380722044 ], [ -86.145471118895429, 39.753285437666761 ], [ -86.143030015505062, 39.749105524485479 ], [ -86.137406883447952, 39.74457360221264 ], [ -86.13710891654739, 39.737668760325576 ], [ -86.135880927580246, 39.73013492971144 ], [ -86.131127855566902, 39.72027814272586 ], [ -86.120819597466635, 39.716017211756558 ], [ -86.111511368427514, 39.711817286807616 ], [ -86.108353336449397, 39.703585481044279 ], [ -86.098946285269676, 39.673660212328407 ], [ -86.097855270957638, 39.67152326547675 ], [ -86.089768096472184, 39.665809407473745 ], [ -86.077110825222476, 39.657184631390948 ], [ -86.075027790408853, 39.654502702781599 ], [ -86.074096899984866, 39.6364751810193 ], [ -86.074065936721851, 39.631424314967866 ], [ -86.073822055822546, 39.614567762478671 ], [ -86.071312044414711, 39.607617954081903 ], [ -86.05979198114251, 39.578428783842767 ], [ -86.02655761214919, 39.526138453519835 ], [ -86.017448839444171, 39.496041305467067 ], [ -86.013909448570686, 39.483269380795903 ], [ -86.012322728231382, 39.477539415041022 ], [ -85.996126898830283, 39.451050602061677 ], [ -85.966418667659696, 39.419159576147266 ], [ -85.9530977734792, 39.407700567358262 ], [ -85.946200786145269, 39.40224156366618 ], [ -85.944094869930026, 39.398850571954625 ], [ -85.942616557604381, 39.362160758547674 ], [ -85.942342238869685, 39.347557834577401 ], [ -85.942084151361897, 39.328068936652834 ], [ -85.94332042586359, 39.323578963194038 ], [ -85.962510344734895, 39.304582096952316 ], [ -85.966302735066407, 39.300882120758132 ], [ -85.967478016422078, 39.296640142146515 ], [ -85.954271449440583, 39.273401236355191 ], [ -85.954507798728486, 39.220602484013568 ], [ -85.958000730185034, 39.200090573220443 ], [ -85.959076038041658, 39.187982625471179 ], [ -85.958041843932477, 39.121370920455753 ], [ -85.954470084259412, 39.111902972124383 ], [ -85.932700332216257, 39.083293174688144 ], [ -85.913052397255115, 39.047831433214412 ], [ -85.905620644823799, 39.040072507532805 ], [ -85.889200196443582, 39.026072662121223 ], [ -85.866180222701146, 39.006083898258517 ], [ -85.850455244279658, 38.99657406881056 ], [ -85.845434964022687, 38.992214156904524 ], [ -85.843672792504449, 38.987293235871554 ], [ -85.843374300302301, 38.964988553509123 ], [ -85.843359154269251, 38.958244649154423 ], [ -85.84303775123756, 38.94011390776204 ], [ -85.834430917289126, 38.916283290468378 ], [ -85.813800691104106, 38.895012699688067 ], [ -85.810809439463313, 38.88851280740117 ], [ -85.810098757689346, 38.858175240881735 ], [ -85.81891054021321, 38.832914552748456 ], [ -85.819176674533821, 38.792365125839886 ], [ -85.826783712089465, 38.780966247692596 ], [ -85.829560807434035, 38.780585238619722 ], [ -85.832993861705646, 38.777167269160572 ], [ -85.834153820357727, 38.773246318674424 ], [ -85.830048457591047, 38.763533477683275 ], [ -85.818161626305013, 38.739966938012742 ], [ -85.802229826287061, 38.717968483910866 ], [ -85.791548283672185, 38.70208788191777 ], [ -85.787076965826486, 38.685517261039436 ], [ -85.787259911109103, 38.678880400563415 ], [ -85.782514617599261, 38.665829710244388 ], [ -85.783765505153326, 38.648687066265175 ], [ -85.784025277299449, 38.622949611796948 ], [ -85.781675124187558, 38.615480789430805 ], [ -85.78143101959283, 38.605052013757245 ], [ -85.778729809902686, 38.592700299987605 ], [ -85.778683387079724, 38.5467222833961 ], [ -85.774372076072765, 38.52920170011835 ], [ -85.770778720966405, 38.503892280486269 ], [ -85.771755580724459, 38.488011765945735 ], [ -85.769878372267826, 38.475405217804834 ], [ -85.770732187735845, 38.456892843523924 ], [ -85.765146769231706, 38.435844624976859 ], [ -85.765261459805856, 38.408020578479274 ], [ -85.762858228460971, 38.393773093626372 ], [ -85.755861755628146, 38.369158015941892 ], [ -85.754304459135483, 38.345652841052747 ], [ -85.75364015074318, 38.318527780880501 ], [ -85.752748040040174, 38.310318073223691 ], [ -85.753388945517315, 38.299939422707261 ], [ -85.75729498710534, 38.294739556728253 ], [ -85.758888986784001, 38.291088663871577 ], [ -85.758896983390102, 38.290760675045156 ], [ -85.758721964386069, 38.289418723145424 ], [ -85.749962639263003, 38.279024181191616 ], [ -85.749504593237518, 38.27515231430737 ], [ -85.745110460641072, 38.267190587195905 ], [ -85.741600327942848, 38.257970902669804 ], [ -85.74237830551283, 38.25495000654368 ], [ -85.744362305509227, 38.252905077432629 ], [ -85.746483324374324, 38.252577089489535 ], [ -85.751900377239096, 38.249911151743909 ], [ -85.752403352109553, 38.245558075574316 ], [ -85.753296310361264, 38.238199947891388 ], [ -85.75083220510183, 38.232240874652305 ], [ -85.752808082417189, 38.212407537729526 ], [ -85.751549015567193, 38.207719469018464 ], [ -85.743369863943428, 38.205491401320891 ], [ -85.735580706318075, 38.201288277836724 ], [ -85.729926502043952, 38.190000026422616 ], [ -85.722869320641692, 38.184174854710385 ], [ -85.719680209175962, 38.179207726357269 ], [ -85.720336012696379, 38.160927362880585 ], [ -85.706991447233875, 38.136985685050455 ], [ -85.70255124025374, 38.128692434486013 ], [ -85.701727040658199, 38.115085114967457 ], [ -85.7009556368304, 38.086268449385614 ], [ -85.69812505732186, 38.049459544167227 ], [ -85.696278896394887, 38.041959323028244 ], [ -85.696461683039132, 38.026108960187933 ], [ -85.696384497232842, 38.012863650633584 ], [ -85.705448655162627, 37.998394621830514 ], [ -85.704731656099966, 37.993466545255849 ], [ -85.696690490806773, 37.975876118051559 ], [ -85.693928503605292, 37.961314894023516 ], [ -85.68946543865809, 37.952254685428862 ], [ -85.687511684272053, 37.914424285170732 ], [ -85.699132065499981, 37.89632336271093 ], [ -85.699010126195006, 37.886214255249321 ], [ -85.701886214691328, 37.880324249827098 ], [ -85.704099310944599, 37.87002518044855 ], [ -85.708478445408986, 37.857062113558349 ], [ -85.714467565386911, 37.848575113784499 ], [ -85.717946666058836, 37.832472971553422 ], [ -85.721150713949754, 37.827890959977417 ], [ -85.739217899037683, 37.813415003098413 ], [ -85.756819055948341, 37.791445884032179 ], [ -85.769918247212104, 37.787954995333187 ], [ -85.772169277427977, 37.785765986950516 ], [ -85.774687304361407, 37.779192906288522 ], [ -85.782682411629864, 37.772192880834226 ], [ -85.792059542453828, 37.767492906024117 ], [ -85.79732360115338, 37.757052773467578 ], [ -85.794439562651505, 37.746084546342246 ], [ -85.796316605822923, 37.742441502923704 ], [ -85.820281033436231, 37.72813247075306 ], [ -85.828040189805733, 37.720903399715091 ], [ -85.829658252284545, 37.713781274469838 ], [ -85.829925277545541, 37.70977219835757 ], [ -85.834357388112394, 37.702299083960327 ], [ -85.842292584049687, 37.690164892917323 ], [ -85.843711653498204, 37.682031735214835 ], [ -85.849380787696688, 37.67526362603752 ], [ -85.853011884882889, 37.669244517694075 ], [ -85.855980011071949, 37.656743265082198 ], [ -85.888215621736279, 37.507249862356346 ], [ -85.886895642774874, 37.500069702277607 ], [ -85.883722662085162, 37.497189653451869 ], [ -85.880845727899228, 37.493069573061561 ], [ -85.880182864458334, 37.488259459939968 ], [ -85.883830460855478, 37.439674226789634 ], [ -85.881138348694478, 37.409697518318964 ], [ -85.882138710819333, 37.398707234160746 ], [ -85.894155983493818, 37.36415619152708 ], [ -85.9074470041501, 37.337292275032347 ], [ -85.90154311236779, 37.29801136013571 ], [ -85.903649356614906, 37.29084413119142 ], [ -85.923257522884242, 37.259500873475965 ], [ -85.935275776879834, 37.214441173638669 ], [ -85.939441394153192, 37.191449976582312 ], [ -85.966878625460254, 37.162812264036994 ], [ -85.970715890641458, 37.155892155775831 ], [ -85.971288246290641, 37.143399095604622 ], [ -85.977682622505512, 37.13494193094337 ], [ -85.989844186031675, 37.125060645530382 ], [ -85.99998453479958, 37.121410426365848 ], [ -86.015334827896396, 37.118999195065271 ], [ -86.045441788076602, 37.103857662045684 ], [ -86.054437148202581, 37.09777748041256 ], [ -86.064629795289406, 37.084757219711975 ], [ -86.069811006945784, 37.081545107254378 ], [ -86.108508589466965, 37.060033223460508 ], [ -86.111980733957679, 37.058236140189614 ], [ -86.115283853531963, 37.056981065150467 ], [ -86.12812417016562, 37.055718810657488 ], [ -86.152295018121919, 37.047997254506143 ], [ -86.179624906613085, 37.041644631894741 ], [ -86.188414128783222, 37.041045449479256 ], [ -86.210180558833514, 37.041995036497447 ], [ -86.21843575985406, 37.041605867312661 ], [ -86.233505338852368, 37.036963483804897 ], [ -86.241294813366878, 37.031435221784363 ], [ -86.247162342466567, 37.024243961272155 ], [ -86.253601701845469, 37.020322802815976 ], [ -86.273179281520129, 37.017224621504447 ], [ -86.291429908324872, 37.012544414633652 ], [ -86.334277847708648, 37.011403125980891 ], [ -86.359813525247603, 37.008190899635899 ], [ -86.36803078825146, 37.006153804956092 ], [ -86.37663725639311, 36.999107614437001 ], [ -86.38341246706355, 36.991882526518459 ], [ -86.391316782665626, 36.977184380920406 ], [ -86.399641115184124, 36.962132224377392 ], [ -86.418172804933135, 36.934630896567143 ], [ -86.424017041807176, 36.924613778475774 ], [ -86.431990372787922, 36.910583610156799 ], [ -86.438162641727942, 36.898883469870505 ], [ -86.447120118113801, 36.875041207087996 ], [ -86.472977406306498, 36.816996481072195 ], [ -86.475564820924433, 36.788351212404592 ], [ -86.490717641232592, 36.75206872110008 ], [ -86.497247807002594, 36.744298707207449 ], [ -86.51245393835066, 36.732858965526155 ], [ -86.522157962436239, 36.716131303598004 ], [ -86.536653995709074, 36.689371826040315 ], [ -86.556498089055282, 36.665320347589436 ], [ -86.567332140397355, 36.651629634820452 ], [ -86.571551137386393, 36.638926847900372 ], [ -86.581172130471799, 36.609253338232008 ], [ -86.587367162975582, 36.601563493934165 ], [ -86.600825255105264, 36.591393739687739 ], [ -86.607783304945926, 36.586681858015268 ], [ -86.611209324518512, 36.582642938912706 ], [ -86.637301452344772, 36.542634663366421 ], [ -86.644038476602475, 36.528512894941464 ], [ -86.643306467564926, 36.527772899309674 ], [ -86.646922480220724, 36.51991502619213 ], [ -86.669398655217847, 36.496813551051609 ], [ -86.684962937937357, 36.465575787809421 ], [ -86.707348306933753, 36.435727006222436 ], [ -86.718914517811186, 36.418157707633249 ], [ -86.717899508210493, 36.417787714926426 ], [ -86.719272535111955, 36.415414808253317 ], [ -86.721409582566707, 36.410627992629507 ], [ -86.719700608282878, 36.401327316626826 ], [ -86.717029598599453, 36.396929459325136 ], [ -86.711925656733939, 36.371978328127156 ], [ -86.714184707283934, 36.367080516577992 ], [ -86.719730806974113, 36.360450784586817 ], [ -86.720287839367984, 36.355197976145533 ], [ -86.716686833408744, 36.347130247067007 ], [ -86.71005681245272, 36.333802692437168 ], [ -86.701214788609775, 36.313970363433654 ], [ -86.710209964478764, 36.301691849298145 ], [ -86.732823372993124, 36.281012696476374 ], [ -86.735196428142956, 36.276652863128653 ], [ -86.737820526383757, 36.264743300421721 ], [ -86.738644587877005, 36.255165646131722 ], [ -86.740659637999514, 36.251094800083699 ], [ -86.751874856971469, 36.240803173165908 ], [ -86.770315225616599, 36.231774516458017 ], [ -86.7740763298697, 36.224133768189226 ], [ -86.776754480416912, 36.203466424593934 ], [ -86.775671515302832, 36.19271675802996 ], [ -86.774778557686261, 36.181136118149787 ], [ -86.768385493712529, 36.171534398861461 ], [ -86.760511406413002, 36.161406691583046 ], [ -86.759985422312894, 36.156394847121831 ], [ -86.762083469389296, 36.154341918100101 ] ], [ [ -86.775709736785728, 36.148659138998262 ], [ -86.777769785333845, 36.146179223167692 ], [ -86.77562580909229, 36.133938600105765 ], [ -86.772924790108874, 36.128277769148774 ], [ -86.773512862651188, 36.115861160172166 ], [ -86.763410780191691, 36.09697872117038 ], [ -86.762442785972908, 36.092439860556631 ], [ -86.763845861850342, 36.082209185661299 ], [ -86.768751989155135, 36.073969458880711 ], [ -86.775382202960998, 36.054500089134223 ], [ -86.775916245895914, 36.047801300683233 ], [ -86.781646367215544, 36.04363544831056 ], [ -86.782889412247357, 36.038997597321959 ], [ -86.783240439047333, 36.034877727443565 ], [ -86.784125488016642, 36.02820193921665 ], [ -86.787307575618314, 36.021851147557591 ], [ -86.785567603698098, 36.010162508606179 ], [ -86.796355840258428, 35.998520886603863 ], [ -86.807792981831696, 35.965966565586207 ], [ -86.822662185876709, 35.922773491598839 ], [ -86.824097200208371, 35.914183671838629 ], [ -86.829559274043206, 35.892161146183462 ], [ -86.833397269999153, 35.832523384307684 ], [ -86.837326340094549, 35.823448597040482 ], [ -86.850182591060147, 35.805730055555635 ], [ -86.860718803142561, 35.791085441780844 ], [ -86.865051876938537, 35.764109045745315 ], [ -86.873017073764473, 35.739195656336356 ], [ -86.873765098980954, 35.736071732992812 ], [ -86.892175717276345, 35.666020455098014 ], [ -86.893312795384929, 35.6484198570407 ], [ -86.893312811712406, 35.642849981356598 ], [ -86.893937837906805, 35.638955073158307 ], [ -86.900072046805008, 35.617750593060677 ], [ -86.907679429912733, 35.552871091527024 ], [ -86.905825414702363, 35.542961298549642 ], [ -86.898073293909945, 35.519073776416555 ], [ -86.89079517910119, 35.497574207116521 ], [ -86.888910184702851, 35.486893433683747 ], [ -86.886065245246186, 35.459993018561548 ], [ -86.876719216932287, 35.415266971464213 ], [ -86.880816381392719, 35.403956247996753 ], [ -86.878664381705221, 35.391894508696666 ], [ -86.883089546631638, 35.382716737073771 ], [ -86.883036581500491, 35.375304903377192 ], [ -86.886355712216073, 35.367267099354976 ], [ -86.884340731477323, 35.352085430899258 ], [ -86.878664618916176, 35.342746616464552 ], [ -86.882105788863811, 35.327625971094626 ], [ -86.882380899176169, 35.306645443891561 ], [ -86.886630152600389, 35.279989057145301 ], [ -86.890536306525192, 35.271879251285092 ], [ -86.889636299416708, 35.268068333695339 ], [ -86.883670161550569, 35.260698480740757 ], [ -86.882877169455853, 35.254339621285361 ], [ -86.887897367312291, 35.240007955972807 ], [ -86.886951367045995, 35.23036816915338 ], [ -86.888034419900393, 35.223178331795502 ], [ -86.886081376892719, 35.217929445832326 ], [ -86.872340009332262, 35.202758771961712 ], [ -86.870424964503087, 35.198180875357018 ], [ -86.870852989587249, 35.193679979132256 ], [ -86.874393137938895, 35.178390330609453 ], [ -86.878467278895656, 35.17189047818767 ], [ -86.880366361557535, 35.162891681231798 ], [ -86.877696391723745, 35.123071587213722 ], [ -86.885562685018456, 35.104833979197672 ], [ -86.878955674507594, 35.035853561312926 ], [ -86.879390750580185, 35.013603062837234 ], [ -86.877635732632456, 35.000103380696402 ], [ -86.87919978266622, 34.992249547731163 ], [ -86.880717831994104, 34.985195697069045 ], [ -86.8797338004766, 34.979275837860492 ], [ -86.883380920398437, 34.973045954188976 ], [ -86.893894278731125, 34.949445418783924 ], [ -86.897312404273833, 34.934514735236831 ], [ -86.9086278116405, 34.916468071403202 ], [ -86.909062831472198, 34.912367161966849 ], [ -86.906147740820217, 34.901205435043906 ], [ -86.916898140589396, 34.888075665051993 ], [ -86.92783959070934, 34.856925307075159 ], [ -86.937383993629055, 34.834468761588603 ], [ -86.93880305652084, 34.830398846078154 ], [ -86.939780200965217, 34.783158922536316 ], [ -86.938719255389884, 34.740449844383974 ], [ -86.935393148281818, 34.72791906574539 ], [ -86.930112968793551, 34.711710350717446 ], [ -86.924993815581217, 34.686598768230759 ], [ -86.913335398403774, 34.657649245796541 ], [ -86.903821045190611, 34.638671544651842 ], [ -86.901806981811973, 34.629329684576113 ], [ -86.901615977079516, 34.627853706474589 ], [ -86.898380880631336, 34.610172966596473 ], [ -86.898617903839408, 34.604031056572275 ], [ -86.907369322907684, 34.579861424601411 ], [ -86.911222514145024, 34.566514633568083 ], [ -86.9063623510404, 34.548001900061656 ], [ -86.906018368635628, 34.533464116510828 ], [ -86.898168108781888, 34.499784581664663 ], [ -86.898220971936695, 34.467543206859801 ], [ -86.901372021037091, 34.449065584933429 ], [ -86.89758766614527, 34.402465463531989 ], [ -86.891712315978765, 34.373985967401339 ], [ -86.891277262654341, 34.365136133932275 ], [ -86.892262211731506, 34.343705554466837 ], [ -86.899967441461357, 34.32937790092501 ], [ -86.89928137223859, 34.319368088893228 ], [ -86.900456404532974, 34.316747150911361 ], [ -86.90408050819498, 34.309812320691009 ], [ -86.911061702292244, 34.296106657962184 ], [ -86.910748668451845, 34.29130774929137 ], [ -86.900227228035263, 34.278307895639749 ], [ -86.895725001188779, 34.263148141707106 ], [ -86.880405219895067, 34.234317395787684 ], [ -86.87592591120746, 34.221080489425312 ], [ -86.879252905171171, 34.210807638581905 ], [ -86.878725846501723, 34.207309670649821 ], [ -86.878000775436689, 34.203307705925731 ], [ -86.878801647777763, 34.190058859068976 ], [ -86.876627432776445, 34.177726968134579 ], [ -86.87515529928784, 34.170330031465156 ], [ -86.8695238552137, 34.14727021591186 ], [ -86.865968364882036, 34.113548538504965 ], [ -86.866211712229756, 34.054700176923255 ], [ -86.866837640029104, 34.04670027099511 ], [ -86.871727574588093, 34.028970523012852 ], [ -86.870071448308025, 34.021840579687861 ], [ -86.862694079510476, 34.006619652199873 ], [ -86.859267637778274, 33.986249785309354 ], [ -86.861716454150368, 33.973981909605776 ], [ -86.869338340981486, 33.958631121811358 ], [ -86.870360160943093, 33.948461212039085 ], [ -86.867895776419573, 33.932611302194417 ], [ -86.86335612451056, 33.906080448268526 ], [ -86.860181924221806, 33.900110454572051 ], [ -86.848584374352185, 33.887182410125924 ], [ -86.836323788289846, 33.87307236709087 ], [ -86.825030892119372, 33.841825468431004 ], [ -86.823466706461531, 33.83434150685914 ], [ -86.825038328609409, 33.813261688355681 ], [ -86.824121827946684, 33.788992863972034 ], [ -86.825441671893969, 33.779501953084129 ], [ -86.830270480531198, 33.764083130346492 ], [ -86.830721238745539, 33.751342233751423 ], [ -86.830171155930771, 33.747172277668312 ], [ -86.824250857203467, 33.736793352571929 ], [ -86.823640789097325, 33.733321394296496 ], [ -86.828850661211831, 33.717280681118041 ], [ -86.835656606022042, 33.70351395184494 ], [ -86.83354244987855, 33.69662502390419 ], [ -86.828950101129649, 33.68105319049635 ], [ -86.83187902338814, 33.671642354470649 ], [ -86.830253792195521, 33.659191511160046 ], [ -86.830505577404935, 33.644974712962096 ], [ -86.827919430960463, 33.639435763598485 ], [ -86.818901079130598, 33.630363798335843 ], [ -86.813468740466774, 33.616753936673128 ], [ -86.805243249771166, 33.597592129648142 ], [ -86.806632094297512, 33.58550431693623 ], [ -86.80665507382173, 33.584153336571113 ], [ -86.82375218544756, 33.565515763087177 ], [ -86.829527225737181, 33.559373902793652 ], [ -86.830985208477699, 33.556054962644509 ], [ -86.823423716415547, 33.535814179228829 ], [ -86.826513666635591, 33.527926317449669 ], [ -86.826650571882681, 33.521616407383135 ], [ -86.819807227548154, 33.509825515541685 ], [ -86.814947000783633, 33.502604577436685 ], [ -86.814312936960832, 33.498514663508956 ], [ -86.825437126146184, 33.487056153754359 ], [ -86.828863124614415, 33.474216626745303 ], [ -86.827993076076424, 33.469806773175613 ], [ -86.81985980673899, 33.457337146536631 ], [ -86.817692691553987, 33.447117487847677 ], [ -86.822957770971527, 33.440338761429679 ], [ -86.824849772637748, 33.433698005664191 ], [ -86.821522658735901, 33.427907184910929 ], [ -86.813862441420994, 33.421567355824379 ], [ -86.81122333873634, 33.414937571223433 ], [ -86.806179206457458, 33.412400628257267 ], [ -86.796176946816828, 33.407727730347482 ], [ -86.788165725255013, 33.401708894640485 ], [ -86.784961603233668, 33.393828156208698 ], [ -86.778530317447647, 33.371157930001736 ], [ -86.776561227146615, 33.363700186731485 ], [ -86.780132242311197, 33.352859593439632 ], [ -86.780101142604451, 33.336640173639886 ], [ -86.780750110872461, 33.329041448459037 ], [ -86.787479209352782, 33.320351788301139 ], [ -86.787204148163553, 33.311403105911005 ], [ -86.800121295065821, 33.288362973344327 ], [ -86.800876278490421, 33.282992165785835 ], [ -86.798801054392584, 33.254375170704023 ], [ -86.801731058945592, 33.241085605242937 ], [ -86.807681153465552, 33.230644940027858 ], [ -86.806980117594165, 33.225125106589893 ], [ -86.801211950781919, 33.215306391164425 ], [ -86.788164589050069, 33.198834861169487 ], [ -86.781268361158283, 33.181890362739381 ], [ -86.76878595593611, 33.155287148487247 ], [ -86.749986448763252, 33.14215750861694 ], [ -86.74359324691649, 33.131999809802451 ], [ -86.739244006511143, 33.103180688639235 ], [ -86.737252885300649, 33.08770816100602 ], [ -86.730271627328761, 33.069276715145563 ], [ -86.725846376853696, 33.039469623624107 ], [ -86.711257881536412, 33.011580453640391 ], [ -86.70661174297112, 33.0068315907941 ], [ -86.670447551172003, 32.953793952297367 ], [ -86.660353181021478, 32.934113456540693 ], [ -86.639745511775942, 32.911154034614334 ], [ -86.631269215753989, 32.898916348196508 ], [ -86.624165961708812, 32.88804462824023 ], [ -86.599407084438951, 32.853904510006466 ], [ -86.580363219807424, 32.801956884871842 ], [ -86.57742608487159, 32.794061094702009 ], [ -86.562952485257426, 32.765756846103862 ], [ -86.540605631470569, 32.733759669104259 ], [ -86.524589994954866, 32.707057341188296 ], [ -86.497100832644961, 32.650509779240366 ], [ -86.490287489514074, 32.62666138512396 ], [ -86.480193114674179, 32.610879784936003 ], [ -86.476362883267697, 32.592261266758577 ], [ -86.4692515986968, 32.578532622697082 ], [ -86.461355215352711, 32.553993265918294 ], [ -86.457792091434996, 32.549903374356745 ], [ -86.448445770337685, 32.539833643636292 ], [ -86.440488448095181, 32.524613052273395 ], [ -86.423816889810865, 32.50929347574089 ], [ -86.412075434168642, 32.493294914446643 ], [ -86.408970301387868, 32.48870603870337 ], [ -86.394999734658427, 32.471284516252837 ], [ -86.388308436124447, 32.460653807428493 ], [ -86.385150294549561, 32.455629945552708 ], [ -86.369218578357788, 32.430636638130771 ], [ -86.362733310837228, 32.422846858630706 ], [ -86.323287816451199, 32.38905785324247 ], [ -86.32215168294502, 32.380418090944467 ], [ -86.322273651797246, 32.37746917090282 ], [ -86.322296634718541, 32.375958211964054 ], [ -86.322135522150091, 32.366757462739827 ], [ -86.321136314367038, 32.351498880654276 ], [ -86.321762301356145, 32.34885995080662 ], [ -86.332412428911923, 32.333479338920071 ], [ -86.334762424885625, 32.327261500562756 ], [ -86.336715348370745, 32.315740806572506 ], [ -86.338066190940765, 32.298690263566357 ], [ -86.342353176094932, 32.286444580313876 ], [ -86.345771198259499, 32.279570754144473 ], [ -86.354782317520815, 32.266571072412894 ], [ -86.381271833735681, 32.234291878506987 ], [ -86.408288510980526, 32.209271512617825 ], [ -86.413727640011956, 32.202561689821614 ], [ -86.422944829480926, 32.185354162088515 ], [ -86.430498012542316, 32.176104407045742 ], [ -86.437975107919868, 32.149974149392129 ], [ -86.453317428496149, 32.118855012851 ], [ -86.461641645444033, 32.10990524839444 ], [ -86.470514869203285, 32.098446556525474 ], [ -86.489092290065017, 32.062627553026189 ], [ -86.501055613304445, 32.050374875821355 ], [ -86.505770713988809, 32.042677085144817 ], [ -86.509425766375742, 32.031016416053973 ], [ -86.520259993404508, 32.01244692395116 ], [ -86.525547028318769, 31.993327463778975 ], [ -86.539196143829912, 31.963682261865333 ], [ -86.561657572194235, 31.94311076454564 ], [ -86.584240890266571, 31.913129535412132 ], [ -86.599347135576437, 31.897630919841102 ], [ -86.614552317126794, 31.876810455720296 ], [ -86.629590530403945, 31.860394865638852 ], [ -86.640721709270437, 31.850671099348244 ], [ -86.649220858649414, 31.844621238356595 ], [ -86.659383993081846, 31.833812506584064 ], [ -86.664281994466279, 31.823322786640443 ], [ -86.669408908690627, 31.80514428530055 ], [ -86.678548906365123, 31.786053793545829 ], [ -86.698736150493275, 31.765974284652938 ], [ -86.703748139219329, 31.755434564930933 ], [ -86.74999756794378, 31.68705568236345 ], [ -86.764241303651417, 31.662737553626652 ], [ -86.775197268169137, 31.650727995061764 ], [ -86.826688220340088, 31.599848880019398 ], [ -86.844731092458872, 31.578100674647576 ], [ -86.867436115996597, 31.558070423934897 ], [ -86.898488140408332, 31.530783445207074 ], [ -86.916783091810771, 31.512553120635715 ], [ -86.937871033711943, 31.490354951268372 ], [ -86.965305955317987, 31.457604210864702 ], [ -86.977970951603297, 31.443234777265001 ], [ -87.005833149540265, 31.418926733219017 ], [ -87.037221270038572, 31.382711921759576 ], [ -87.066426620935587, 31.36008560031275 ], [ -87.074849738106352, 31.354296765808066 ], [ -87.113523485421013, 31.33745716679821 ], [ -87.134046814698621, 31.325355479171613 ], [ -87.174308429251397, 31.300095118478122 ], [ -87.204940802976907, 31.276430728805703 ], [ -87.225708062461138, 31.260646120054439 ], [ -87.238029216642374, 31.251281346894345 ], [ -87.285134400942809, 31.225542486299716 ], [ -87.310769957238179, 31.204152471549335 ], [ -87.349466776000838, 31.172354903057293 ], [ -87.44531027391605, 31.12622798350095 ], [ -87.462644638399127, 31.114057493006488 ], [ -87.474103964824067, 31.110576648563143 ], [ -87.510436025002889, 31.100958048774768 ], [ -87.557892111216191, 31.068298244277671 ], [ -87.580902799819157, 31.0592785631288 ], [ -87.602067379925018, 31.046260039066858 ], [ -87.615419800271638, 31.04090022969908 ], [ -87.634364419028685, 31.034091469835076 ], [ -87.71249901337724, 30.980601257542958 ], [ -87.74502424045825, 30.968201578998428 ], [ -87.760397691019264, 30.96460264214916 ], [ -87.787483379529633, 30.958663724267314 ], [ -87.811485998692135, 30.956363712052923 ], [ -87.822739286512416, 30.954142740460878 ], [ -87.828622437090615, 30.952971755780077 ], [ -87.843774831747552, 30.952823710428682 ], [ -87.857416180762328, 30.949752757428172 ], [ -87.9378622438131, 30.927723169499188 ], [ -87.954532668439199, 30.919319376795514 ], [ -87.973065142803421, 30.910084606811751 ], [ -87.999974845375974, 30.904743694915982 ], [ -88.004842996535842, 30.902487776864493 ], [ -88.014547294197016, 30.89514202657746 ], [ -88.044463214611099, 30.877206632988639 ], [ -88.069655984824124, 30.861198150056559 ], [ -88.080070282214734, 30.841681734628569 ], [ -88.102188927082025, 30.811755613158073 ], [ -88.104332978346719, 30.802234885954 ], [ -88.092567548613019, 30.763269011768429 ], [ -88.09284254842639, 30.757833168505666 ], [ -88.095284615700322, 30.752576317361971 ], [ -88.107773923120703, 30.740783624301283 ], [ -88.117143165649821, 30.734441787486823 ], [ -88.11937821299999, 30.731532865003466 ], [ -88.122384119086604, 30.707192529362178 ], [ -88.126771094944843, 30.685689120139489 ], [ -88.127084031977759, 30.676110383817349 ], [ -88.126694924430453, 30.663697724966909 ], [ -88.122391692063204, 30.651966042155646 ], [ -88.118889508952975, 30.643397271634701 ], [ -88.118011394679726, 30.632548566260539 ], [ -88.116287302296811, 30.628170682422102 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I66\", \"DIST_MILES\": 75.800000, \"DIST_KM\": 121.990000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -78.300958087047832, 39.00942725885934 ], [ -78.296631969501888, 39.00890927819875 ], [ -78.285484632969911, 39.001786463870744 ], [ -78.24975566479857, 38.993058830926785 ], [ -78.20954012264913, 38.971419587429779 ], [ -78.192770893112794, 38.960848951017688 ], [ -78.181021730898721, 38.953109214275159 ], [ -78.147299276194659, 38.946060402195009 ], [ -78.131964065538924, 38.939559603410245 ], [ -78.129118021421036, 38.934329784849425 ], [ -78.129354014324306, 38.925980085289474 ], [ -78.128270996423453, 38.923191182711001 ], [ -78.124730945435601, 38.92028127800959 ], [ -78.092412505587333, 38.91419340913896 ], [ -78.084317393185913, 38.911202492371977 ], [ -78.075032270487199, 38.911610452683043 ], [ -78.043026844855504, 38.910073418208427 ], [ -78.016186485290064, 38.906441467484782 ], [ -77.998112265583956, 38.906571421965019 ], [ -77.978611211032131, 38.909382388797646 ], [ -77.967136171153655, 38.90782247701393 ], [ -77.958996148951741, 38.908692473494128 ], [ -77.938709065412382, 38.902291750585839 ], [ -77.924808018263107, 38.901081834249176 ], [ -77.91171595105844, 38.894433095921919 ], [ -77.907222909527547, 38.887964324538608 ], [ -77.905474866910509, 38.879342616004408 ], [ -77.9034608488533, 38.876764707639971 ], [ -77.880221704258787, 38.863303223295695 ], [ -77.866854631881992, 38.858653416642532 ], [ -77.86015660062148, 38.857413477385123 ], [ -77.842372536296352, 38.857584524376229 ], [ -77.833590507952337, 38.858164531327724 ], [ -77.806277398429202, 38.856074680962131 ], [ -77.800250368501622, 38.854712743443493 ], [ -77.781649252510945, 38.847263041971203 ], [ -77.757762162694931, 38.846534135949057 ], [ -77.751910124969612, 38.844234228015971 ], [ -77.731790894095127, 38.82825469615355 ], [ -77.718111790001359, 38.824634766452206 ], [ -77.709947739467466, 38.823951760686086 ], [ -77.7017387022793, 38.825035699344603 ], [ -77.689134613841475, 38.822444737452379 ], [ -77.6526734070587, 38.820915659726936 ], [ -77.639391315937161, 38.818016699770325 ], [ -77.612825082927529, 38.804954982321398 ], [ -77.59762696877246, 38.799817069307117 ], [ -77.580994869204929, 38.797444069114185 ], [ -77.560548777643632, 38.79847795820816 ], [ -77.519883606795588, 38.801273722204044 ], [ -77.511445573347842, 38.801994670446255 ], [ -77.498788537725105, 38.806663500834397 ], [ -77.490403415617919, 38.81008537445895 ], [ -77.465203025379822, 38.820324008227182 ], [ -77.456298891653674, 38.827002809678078 ], [ -77.447319760009748, 38.837153532748829 ], [ -77.441238661022837, 38.843173368999537 ], [ -77.432754502563711, 38.846522262103377 ], [ -77.38542056087762, 38.854982923366386 ], [ -77.347570773380212, 38.862024668093248 ], [ -77.330457407896233, 38.865056562069185 ], [ -77.32147021358135, 38.866647507942666 ], [ -77.309369950017071, 38.868692438554639 ], [ -77.303303816992425, 38.86969540486772 ], [ -77.299489731856099, 38.870481381050077 ], [ -77.27238909951015, 38.877901186054444 ], [ -77.240055448169528, 38.880022123283808 ], [ -77.221294101637838, 38.886682052157553 ], [ -77.213900971510057, 38.889162026297562 ], [ -77.197466660723862, 38.898880897192669 ], [ -77.191256562436322, 38.900696879511486 ], [ -77.185038480663039, 38.900277899677839 ], [ -77.170222309154966, 38.895067019628812 ], [ -77.161761229268933, 38.887739162757754 ], [ -77.140581956328163, 38.879838344383288 ], [ -77.135003876370988, 38.879209367546437 ], [ -77.126153745116824, 38.879629379964804 ], [ -77.121446672212642, 38.881326361156809 ], [ -77.118036611363522, 38.886663276592145 ], [ -77.102884393005354, 38.891172231742971 ], [ -77.098718331773711, 38.896062156003971 ], [ -77.091852239354708, 38.898061136110314 ], [ -77.081781106462387, 38.897027175846105 ], [ -77.075921030701835, 38.8991711511256 ], [ -77.0708709649073, 38.899061163945802 ], [ -77.068627934304686, 38.897832190274329 ], [ -77.067223910215674, 38.893362271480008 ], [ -77.065682888065837, 38.892232294617564 ], [ -77.064598872924975, 38.891828304063615 ], [ -77.052811718944838, 38.893632298304937 ], [ -77.053200729855959, 38.896211252194611 ], [ -77.053170734695826, 38.898553211161108 ], [ -77.057915803596998, 38.902482132002568 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I664\", \"DIST_MILES\": 19.370000, \"DIST_KM\": 31.170000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -76.377950809113599, 37.032076627107699 ], [ -76.382886941320209, 37.019529932728638 ], [ -76.396673338263142, 37.010581188695589 ], [ -76.401610479257101, 37.005542315154649 ], [ -76.408712678285113, 36.999648456451112 ], [ -76.418181898938457, 36.994838518445292 ], [ -76.426002057593081, 36.989146579751221 ], [ -76.427047040670885, 36.985408605615326 ], [ -76.423964884527379, 36.980190625868389 ], [ -76.412718339416188, 36.962386693048607 ], [ -76.406500040730108, 36.952270732238908 ], [ -76.399335635642856, 36.935008811416886 ], [ -76.402463670003385, 36.93069884778447 ], [ -76.419942783181384, 36.901489080534695 ], [ -76.429135827294431, 36.885887203529919 ], [ -76.430455656332541, 36.869900302675717 ], [ -76.430020589713749, 36.865574326927778 ], [ -76.429128451075215, 36.856514377807493 ], [ -76.42879979565916, 36.805908677077099 ], [ -76.42625054548391, 36.790920758212721 ], [ -76.422001403299902, 36.787361766380556 ], [ -76.41505821957368, 36.785290757561171 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I670\", \"DIST_MILES\": 5.660000, \"DIST_KM\": 9.110000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -83.021207423072681, 39.975776211381003 ], [ -83.019033338080519, 39.976070234225531 ], [ -83.016088221992376, 39.974174250527497 ], [ -83.012395077282136, 39.973720283206831 ], [ -83.005978826100275, 39.973411343027955 ], [ -83.002888705500169, 39.974467379620449 ], [ -82.999791584041404, 39.975661415765359 ], [ -82.998165512316319, 39.975749411356631 ], [ -82.990513172954437, 39.972415367143995 ], [ -82.985866966726775, 39.971118345407206 ], [ -82.98379887596937, 39.972190345819783 ] ], [ [ -83.06166800101883, 39.967856772628785 ], [ -83.055403756752085, 39.968676837811529 ], [ -83.044531331733964, 39.968767942801279 ] ], [ [ -94.631597964272956, 39.091904455154918 ], [ -94.626027798878823, 39.095795403068536 ], [ -94.622007675958315, 39.100723333883302 ], [ -94.61826156817547, 39.101204330440119 ], [ -94.607152255354876, 39.098549381017101 ], [ -94.594242891408584, 39.095799435027537 ], [ -94.591580814885319, 39.096104433145094 ] ], [ [ -82.902611423767439, 40.011535117260344 ], [ -82.900582334526419, 40.011260112547532 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I675\", \"DIST_MILES\": 44.110000, \"DIST_KM\": 70.990000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -84.328354117584411, 33.67310111734416 ], [ -84.325210913205225, 33.656507548675471 ], [ -84.323516834169894, 33.652707641810075 ], [ -84.31831362859657, 33.647207760653146 ], [ -84.299299911181876, 33.6296601295155 ], [ -84.294455645878955, 33.605078776119718 ], [ -84.282385218565153, 33.592990042757286 ], [ -84.276708988238212, 33.577701434055456 ], [ -84.268125651142299, 33.553372062255328 ], [ -84.267911631516682, 33.54911117908977 ], [ -84.267598596691656, 33.540871405568346 ] ], [ [ -83.890932664790824, 43.433664788654902 ], [ -83.896410871552789, 43.433892840011353 ], [ -83.917948671384636, 43.434126045941753 ], [ -83.923571913509818, 43.435896090392731 ], [ -83.937832457188392, 43.43678522332651 ], [ -83.946003793567115, 43.438582293038024 ], [ -83.947155841454702, 43.438860302773691 ], [ -83.949627966431351, 43.440607317838619 ], [ -83.950084997143023, 43.441324318633704 ], [ -83.950978090808633, 43.444468311374308 ], [ -83.955968401510361, 43.451040327273674 ], [ -83.955922962675288, 43.480227180848388 ], [ -83.951565910339966, 43.485785107903965 ], [ -83.935857506572461, 43.494611898460732 ], [ -83.929654338568625, 43.497632817160266 ] ], [ [ -83.994166046581043, 39.864950272894966 ], [ -83.994035893949075, 39.84726128938901 ], [ -83.993738865324119, 39.84507929239799 ], [ -83.992288750310038, 39.837416304346839 ], [ -83.999895944600368, 39.828668286129812 ], [ -84.000574869317248, 39.816507292447085 ], [ -84.003359728619401, 39.787157307001571 ], [ -84.004556739368155, 39.783201306116183 ], [ -84.008150834048635, 39.778887296071183 ], [ -84.011026925382083, 39.777326286402634 ], [ -84.023379355206941, 39.775171240319779 ], [ -84.037036863020873, 39.776609179380273 ], [ -84.05318843481983, 39.77502212042338 ], [ -84.073148138121297, 39.772802055081534 ], [ -84.088483666116332, 39.769869019701069 ], [ -84.091374754967319, 39.768202023134961 ], [ -84.094350597881174, 39.740538210076863 ], [ -84.092694494910347, 39.735937233951432 ], [ -84.090459356724281, 39.729696266720993 ], [ -84.09215219745235, 39.706877363499252 ], [ -84.097432265915074, 39.695566397959659 ], [ -84.100324241548989, 39.683378441614238 ], [ -84.098804983888144, 39.662355536855593 ], [ -84.104901127900746, 39.657328536666618 ], [ -84.109624268453786, 39.656412523533412 ], [ -84.134756022092446, 39.652605447245662 ], [ -84.157309665277296, 39.647119382885485 ], [ -84.174979078868731, 39.636610348270267 ], [ -84.193336637548441, 39.636076277559859 ], [ -84.202628874087424, 39.632646249692947 ], [ -84.224525405561948, 39.623621181815906 ], [ -84.232681506010749, 39.614405166770112 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I676\", \"DIST_MILES\": 8.090000, \"DIST_KM\": 13.010000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -75.14789872867776, 39.955292719036962 ], [ -75.140559596120823, 39.953991739705792 ], [ -75.139422575455271, 39.953789742972134 ], [ -75.134211479694443, 39.952748758934462 ], [ -75.12234025929871, 39.950520795703696 ], [ -75.117770161044177, 39.94796882275002 ], [ -75.114153084906633, 39.946385841459886 ], [ -75.114054066260991, 39.944199857898248 ], [ -75.112451990744816, 39.938317905181776 ], [ -75.111619941356096, 39.934102938687275 ], [ -75.112817942416967, 39.931302956763751 ], [ -75.116167969273178, 39.926083986964663 ], [ -75.115579858906955, 39.913023084914855 ], [ -75.112443703221672, 39.901998176926028 ] ], [ [ -75.14789872867776, 39.955292719036962 ], [ -75.149272756346718, 39.956395709822139 ], [ -75.151743799765782, 39.956662704193192 ] ], [ [ -75.14789872867776, 39.955292719036962 ], [ -75.149569755439899, 39.954659720279281 ] ], [ [ -75.151743799765782, 39.956662704193192 ], [ -75.162493988226757, 39.957963679472655 ], [ -75.172054154553209, 39.959107658444893 ], [ -75.175548215049901, 39.95951965099858 ], [ -75.182048327469829, 39.959633640869036 ] ], [ [ -75.151743799765782, 39.956662704193192 ], [ -75.149104757461217, 39.957532702913731 ], [ -75.147471728237917, 39.957162707835622 ] ], [ [ -75.147471728237917, 39.957162707835622 ], [ -75.140521598050668, 39.954560736022309 ] ], [ [ -75.147471728237917, 39.957162707835622 ], [ -75.143336655574913, 39.956650717726866 ], [ -75.140521615825804, 39.958466710293692 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I678\", \"DIST_MILES\": 14.310000, \"DIST_KM\": 23.040000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -73.837338034542086, 40.828862235682834 ], [ -73.836620996800264, 40.81313151245098 ], [ -73.830334179489455, 40.802343742655594 ], [ -73.82233941803247, 40.790125010430842 ], [ -73.823750353394487, 40.786860057106502 ], [ -73.825452270725691, 40.781740133840593 ], [ -73.829800082642791, 40.774027236629294 ], [ -73.838672736286654, 40.7667143000496 ], [ -73.840053678254876, 40.764468329013653 ], [ -73.839634685593083, 40.762591364406831 ], [ -73.838764694255374, 40.757063466084304 ], [ -73.834865799406813, 40.749457625882464 ], [ -73.837848645459147, 40.743288715096575 ], [ -73.836284629721334, 40.73416788947786 ], [ -73.831814726179942, 40.726127063773923 ], [ -73.826809866583162, 40.721160185903422 ], [ -73.826519845955019, 40.717162258761597 ], [ -73.826091847022298, 40.715320294263535 ], [ -73.821621972229721, 40.710727404938041 ], [ -73.821010989889572, 40.710162418906876 ], [ -73.820225010113731, 40.709110442592475 ], [ -73.817502069956305, 40.704116548163057 ], [ -73.816685087000167, 40.702491581974165 ], [ -73.814000143383637, 40.697170692439443 ], [ -73.812291181962877, 40.694110756786877 ], [ -73.80606532252726, 40.68281999223106 ], [ -73.801762415209694, 40.674298166024165 ], [ -73.801709359719339, 40.666787296320898 ], [ -73.801831351373252, 40.666283304331102 ], [ -73.801976342157417, 40.66577631226145 ], [ -73.80225832698811, 40.665150321458349 ], [ -73.807317083797358, 40.657673422208688 ], [ -73.806592075668704, 40.653141505129142 ], [ -73.799268285923375, 40.645337680874604 ], [ -73.790974589960271, 40.644848734765759 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I68\", \"DIST_MILES\": 111.170000, \"DIST_KM\": 178.910000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -79.975659338323567, 39.57860485629044 ], [ -79.967060877462757, 39.579943815248384 ], [ -79.953609076349423, 39.584482682309982 ], [ -79.934831995452612, 39.590013510716815 ], [ -79.931307746423911, 39.592501436544332 ], [ -79.929506545194499, 39.596052333740396 ], [ -79.930696254574514, 39.606672034865554 ], [ -79.924081813613611, 39.610753906332633 ], [ -79.921975674500771, 39.612031865548815 ], [ -79.913087019516297, 39.619660625990598 ], [ -79.901443189989919, 39.629083320323666 ], [ -79.899161933139169, 39.634011168021175 ], [ -79.89426332618244, 39.646519780247729 ], [ -79.892409155980559, 39.649368688536335 ], [ -79.883398437146994, 39.659889337193903 ], [ -79.876882026489028, 39.664051183489086 ], [ -79.853252754135667, 39.672419819162727 ], [ -79.850505633390753, 39.672488804374453 ], [ -79.843662626624493, 39.662239100876342 ], [ -79.834781359649924, 39.657860205728092 ], [ -79.8280900685983, 39.6577491828074 ], [ -79.819033564782885, 39.661678017121979 ], [ -79.812159342022724, 39.658749086364928 ], [ -79.805124982524688, 39.660689992930294 ], [ -79.796861611664482, 39.661048946971881 ], [ -79.79078841619814, 39.658298016257469 ], [ -79.784944164949252, 39.658095999945914 ], [ -79.779839936675586, 39.65827197355361 ], [ -79.771225631490822, 39.655311043097292 ], [ -79.761101175696353, 39.655749988486434 ], [ -79.734512111069662, 39.653568133958743 ], [ -79.719855603467167, 39.649921381094273 ], [ -79.708716168499237, 39.649261491623925 ], [ -79.703519941088786, 39.650001501694383 ], [ -79.696614564838058, 39.654140385871997 ], [ -79.68628408117533, 39.656959343337469 ], [ -79.677235608904425, 39.661499214303952 ], [ -79.670788310075238, 39.663132186666857 ], [ -79.658160930728471, 39.657589511584987 ], [ -79.639392243112823, 39.654640775852329 ], [ -79.637843160869338, 39.65547974858481 ], [ -79.635722089034431, 39.654899790280489 ], [ -79.632669944032799, 39.655830769096916 ], [ -79.623880456142999, 39.6614915653903 ], [ -79.619654263927487, 39.662418549307809 ], [ -79.606950771950878, 39.66157967246432 ], [ -79.595132253929549, 39.663360662008586 ], [ -79.586761947529567, 39.662071780410457 ], [ -79.571129434405393, 39.657189134239232 ], [ -79.543158333798331, 39.656209381730399 ], [ -79.535009977490461, 39.657437371934876 ], [ -79.511656052427497, 39.656938562262987 ], [ -79.504552715508979, 39.65912748628196 ], [ -79.496815420549638, 39.659615515966969 ], [ -79.489125105406046, 39.662847395824699 ], [ -79.476703703582132, 39.663579461156907 ], [ -79.43932678028844, 39.653677348488863 ], [ -79.434947604888563, 39.655386288618189 ], [ -79.427729243792342, 39.661303014447341 ], [ -79.421420022149249, 39.662462003207459 ], [ -79.406412591254352, 39.661093210250002 ], [ -79.403207498059587, 39.660852251496323 ], [ -79.393533145794635, 39.663202202692958 ], [ -79.389771965496422, 39.66600207784677 ], [ -79.381211459119712, 39.6765795589207 ], [ -79.371407098710463, 39.679192499476144 ], [ -79.358039519298075, 39.686650202383866 ], [ -79.346817116353321, 39.689301155924277 ], [ -79.339735765164264, 39.695259889136388 ], [ -79.329749394256325, 39.698219816334252 ], [ -79.318839068499145, 39.6979609306076 ], [ -79.308568679221707, 39.701401835218306 ], [ -79.287855082093571, 39.700021101648069 ], [ -79.277333854115298, 39.69594342110414 ], [ -79.255970272035896, 39.693002776032337 ], [ -79.249943154845937, 39.690041991426789 ], [ -79.237263005750265, 39.681452626128277 ], [ -79.218997543483198, 39.680292930315744 ], [ -79.19201167898369, 39.687872916727095 ], [ -79.181444271194565, 39.694841728758036 ], [ -79.152841582096968, 39.691974276635456 ], [ -79.139405178710021, 39.695262323205498 ], [ -79.123329765022447, 39.695262558301103 ], [ -79.105057383709365, 39.689415067295705 ], [ -79.084128904776136, 39.684883541436974 ], [ -79.065566446960261, 39.682854872594959 ], [ -79.054702157614329, 39.683255004820602 ], [ -79.045607937368942, 39.681836179318047 ], [ -79.037733719817197, 39.682805250895271 ], [ -79.026655434611342, 39.682454412801512 ], [ -79.018827215237337, 39.683835471975875 ], [ -78.999730723539969, 39.683358747125737 ], [ -78.981580206387321, 39.687616700061142 ], [ -78.975270042570187, 39.687505734443064 ], [ -78.965519863158789, 39.678526056102626 ], [ -78.96195684254576, 39.669508345869531 ], [ -78.960262840398116, 39.664145515236633 ], [ -78.954540736831035, 39.657507736942989 ], [ -78.954975837979049, 39.646156076482413 ], [ -78.949169724506277, 39.639648288681798 ], [ -78.947620691974222, 39.638133338171869 ], [ -78.940281509418185, 39.634513465252965 ], [ -78.918010885488684, 39.632602578694041 ], [ -78.912654731954078, 39.632667590627669 ], [ -78.896464239741533, 39.638557470002546 ], [ -78.884706897963966, 39.640716444831881 ], [ -78.871187517335727, 39.640876480089631 ], [ -78.842812736010899, 39.635036710856816 ], [ -78.829469358579715, 39.635146743971177 ], [ -78.822640163563022, 39.636581727316603 ], [ -78.814224921437173, 39.641311636701779 ], [ -78.799896522232956, 39.640266703568486 ], [ -78.78810119379807, 39.645316622072585 ], [ -78.771414734573739, 39.647159633344749 ], [ -78.767890639877677, 39.649177600096017 ], [ -78.765349570242989, 39.649177608475426 ], [ -78.760863446917966, 39.648879629763044 ], [ -78.759940421871619, 39.649043629229681 ], [ -78.759078398407979, 39.649139629984269 ], [ -78.757216347793644, 39.649368631170752 ], [ -78.754355271619445, 39.650569614802649 ], [ -78.748168140993698, 39.656848510029576 ], [ -78.731833009353622, 39.672088319264112 ], [ -78.727171966614392, 39.673198333436922 ], [ -78.725713952292452, 39.673228344758421 ], [ -78.713216830219963, 39.67353744058061 ], [ -78.702749755100641, 39.679237398848464 ], [ -78.699789725658476, 39.678947429278679 ], [ -78.693159642281614, 39.675147568848224 ], [ -78.687933588330338, 39.674556625013487 ], [ -78.679266537018435, 39.679748576892564 ], [ -78.664236435901302, 39.685188571533089 ], [ -78.654409408211393, 39.692928467637529 ], [ -78.64011931554235, 39.696178501197174 ], [ -78.628339301775199, 39.705016378736644 ], [ -78.623289271856464, 39.705917394755417 ], [ -78.619466216097592, 39.703227488763105 ], [ -78.617323201809413, 39.703456499336717 ], [ -78.614263255643053, 39.711005337869814 ], [ -78.610433246692239, 39.712798322072395 ], [ -78.607259218929656, 39.712318357112615 ], [ -78.598173098835119, 39.707408545562188 ], [ -78.568158848360397, 39.705196825524368 ], [ -78.564747804188642, 39.703788887139964 ], [ -78.560216689162317, 39.697827074457152 ], [ -78.543072500344977, 39.694138302272307 ], [ -78.531262399128892, 39.693737404518892 ], [ -78.519978348951113, 39.696266424912281 ], [ -78.516484318776932, 39.696099456334032 ], [ -78.506932198165714, 39.693386603136332 ], [ -78.492588830856619, 39.681718049310362 ], [ -78.482708663515751, 39.680688179494538 ], [ -78.471721440088203, 39.677369382928646 ], [ -78.466144370720897, 39.678220417670424 ], [ -78.46265830675182, 39.677560471567041 ], [ -78.457958198995215, 39.675428577719103 ], [ -78.45389104612768, 39.670148762143754 ], [ -78.450816967742398, 39.668298843762379 ], [ -78.44430085015226, 39.667169941460543 ], [ -78.432864699789334, 39.668391026697698 ], [ -78.423029474081957, 39.663889249284978 ], [ -78.416644431128859, 39.666899234344427 ], [ -78.398966592797834, 39.691209765317751 ], [ -78.386813542579901, 39.698610693608835 ], [ -78.366091307494386, 39.702600803087016 ], [ -78.3510770826759, 39.702329967082008 ], [ -78.345095065295851, 39.706308923499876 ], [ -78.338258981288575, 39.707200971215748 ], [ -78.328325817974601, 39.706141103312476 ], [ -78.320459633859144, 39.702189290634692 ], [ -78.318284602877668, 39.702223312456134 ], [ -78.314538553049559, 39.702479344797219 ], [ -78.304056553204106, 39.711062226583017 ], [ -78.299989518735387, 39.712431232880157 ], [ -78.297594466609098, 39.711439284289774 ], [ -78.293619303524309, 39.705473484087335 ], [ -78.287424198544841, 39.704588572353181 ], [ -78.281465160418918, 39.707270563698927 ], [ -78.270264995047313, 39.707011687832313 ], [ -78.266449913305138, 39.70548976801296 ], [ -78.261109739927775, 39.700045967724591 ], [ -78.25502860663309, 39.697448099885563 ], [ -78.250725537781776, 39.697036155719069 ], [ -78.240403282005033, 39.700000213087407 ], [ -78.230713194883066, 39.712833013124595 ], [ -78.213073584746851, 39.710040327919685 ], [ -78.18858286360252, 39.713870572567266 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I680\", \"DIST_MILES\": 119.900000, \"DIST_KM\": 192.970000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -96.087149234268949, 41.224657952923508 ], [ -96.086989474096953, 41.234266962578587 ], [ -96.085120776025164, 41.248629975166239 ], [ -96.076834405674731, 41.256327849878005 ], [ -96.076224252337767, 41.263349718708483 ], [ -96.07587281173052, 41.286089295731081 ], [ -96.071615459944994, 41.297350077390497 ], [ -96.069142914366481, 41.322308604720355 ], [ -96.057652400534863, 41.330407420159105 ], [ -96.024204154126863, 41.341538105044172 ], [ -96.007815572524237, 41.345806968494287 ], [ -95.993967177123281, 41.347156893315585 ], [ -95.982179924330026, 41.346626859740844 ], [ -95.964494562543479, 41.344475837299882 ], [ -95.956689373816474, 41.34556978560628 ], [ -95.926956702880332, 41.346447655822544 ], [ -95.900269032467875, 41.354317390740206 ] ], [ [ -122.130754512979266, 38.217521632385989 ], [ -122.130582568238609, 38.211131578163723 ], [ -122.12965634855226, 38.188083270404057 ], [ -122.122583285812354, 38.17532469561197 ], [ -122.111888060496767, 38.162842813168197 ], [ -122.107826097185068, 38.158088345199559 ], [ -122.102610087139993, 38.14565748077608 ], [ -122.102903225453503, 38.136117609968416 ], [ -122.100128727664256, 38.12961562209842 ], [ -122.098978191513709, 38.113247247711996 ], [ -122.09621052995432, 38.107047266133797 ], [ -122.099281711833655, 38.095256402154625 ], [ -122.102397300173777, 38.089612537952 ], [ -122.10481057192581, 38.086561414639654 ], [ -122.123846023029742, 38.065343331824472 ], [ -122.124478563397517, 38.062615564952822 ], [ -122.122411223023761, 38.056412826347085 ], [ -122.123775514916971, 38.052293325953599 ], [ -122.122041087389803, 38.049175703851901 ], [ -122.113986205080153, 38.03889981733743 ], [ -122.110394995407859, 38.034160535431816 ], [ -122.109240955151009, 38.028942131609888 ], [ -122.105505160265196, 38.026472797380727 ], [ -122.089197931648584, 38.019691991441817 ], [ -122.062942579632249, 37.995550763625282 ], [ -122.061207746748337, 37.993193153911825 ], [ -122.057256878321013, 37.977108768795702 ], [ -122.055035539655407, 37.973925990252837 ], [ -122.049390971347023, 37.966982014995054 ], [ -122.045733611964536, 37.959984738225458 ], [ -122.051667950250774, 37.946211815563252 ], [ -122.05354221173242, 37.941867472235408 ], [ -122.053905262054457, 37.927329601314369 ], [ -122.056252613225681, 37.919983424015371 ], [ -122.058795792997685, 37.916806315397594 ], [ -122.062834515170834, 37.905931732482443 ], [ -122.065106079261994, 37.898513530014093 ], [ -122.064230965596991, 37.896606222738555 ], [ -122.051302690917083, 37.890013695533938 ], [ -122.037547593514802, 37.875073905233648 ], [ -122.025512021456336, 37.860573736423291 ], [ -122.019846705279846, 37.84740778344549 ], [ -121.988160732968495, 37.825759954268314 ], [ -121.986716571188836, 37.82205147068705 ], [ -121.986499841605266, 37.812514403154871 ], [ -121.982028637056374, 37.801423907910618 ], [ -121.968663915596437, 37.777871449874567 ], [ -121.950505651979398, 37.747503474102878 ], [ -121.933753145867868, 37.724275239579221 ], [ -121.91622387205102, 37.701502742828815 ], [ -121.901623031467324, 37.664843369108894 ], [ -121.878277630099944, 37.640371971681667 ], [ -121.877867687840279, 37.637381868621745 ], [ -121.874011797451914, 37.628121701243529 ], [ -121.873579970074957, 37.622331619035897 ], [ -121.865752916716971, 37.6049792285013 ], [ -121.866181359537393, 37.601333404893602 ], [ -121.867133529913474, 37.597991750228068 ], [ -121.863763551253712, 37.591207711515239 ], [ -121.86420621813464, 37.589517873236403 ], [ -121.869835474807587, 37.579861818836882 ], [ -121.872622140041003, 37.577710758441505 ], [ -121.878850360091391, 37.575103840762281 ], [ -121.900710930813204, 37.561759244633436 ], [ -121.905941942587162, 37.560003011837217 ], [ -121.908119975309532, 37.55768776732171 ], [ -121.911181626136781, 37.553836838028104 ], [ -121.914945928238254, 37.544247215403502 ], [ -121.918326477096784, 37.541380386947736 ], [ -121.935000831069857, 37.531696140697768 ], [ -121.938839258767899, 37.528966478401642 ], [ -121.939730436076871, 37.52594182046839 ], [ -121.933362915574321, 37.515311794071295 ], [ -121.928266686285923, 37.506754172026355 ], [ -121.916844192427746, 37.496359370344884 ], [ -121.908672040499695, 37.486525605092112 ], [ -121.903781696142062, 37.473565955241192 ], [ -121.897741124686618, 37.465304932402439 ], [ -121.885566431231695, 37.450499885146634 ], [ -121.882023766626887, 37.43536972302082 ], [ -121.877322357427573, 37.42641118104499 ], [ -121.873893044933482, 37.414966067027308 ], [ -121.869316562877358, 37.399819589307263 ], [ -121.867429097629298, 37.395920979164977 ], [ -121.856691366680451, 37.385133507148105 ], [ -121.839972446600868, 37.368736153489309 ], [ -121.834577043880898, 37.360441450003314 ], [ -121.832386141061818, 37.356572762520813 ], [ -121.831732838326715, 37.352963566766903 ], [ -121.833279697727718, 37.349668072859892 ], [ -121.845730310092819, 37.340192086480812 ] ], [ [ -80.748345879292614, 41.124981714625285 ], [ -80.738137526945778, 41.126560705807869 ], [ -80.722228927639179, 41.122383736048604 ], [ -80.705886339218779, 41.121631745938075 ], [ -80.695929962329828, 41.118706773242309 ], [ -80.692595843614654, 41.118717774555428 ], [ -80.6931908470319, 41.116352794454379 ], [ -80.690703713969512, 41.11043584692338 ], [ -80.685675502550012, 41.10612188942256 ], [ -80.677855213917852, 41.104748910269052 ], [ -80.67449806976353, 41.101448945114278 ], [ -80.672957007833901, 41.100498956101255 ], [ -80.660596562494192, 41.099731980095797 ], [ -80.65810946127516, 41.098016001022486 ], [ -80.655080310843474, 41.092274064999458 ], [ -80.651120162514516, 41.091252082607717 ], [ -80.650113112556014, 41.089345104653745 ], [ -80.650090090752741, 41.086522134701973 ], [ -80.648679010326205, 41.082444181147402 ], [ -80.637287595062972, 41.08098722258012 ], [ -80.629299284029585, 41.077267284030455 ], [ -80.62514909478692, 41.071580361590676 ], [ -80.629193129059843, 41.056813522608273 ], [ -80.631489072113467, 41.038113730462626 ], [ -80.626865804159905, 41.023999916707481 ], [ -80.631488891271246, 41.013666012569672 ], [ -80.63190872991305, 40.9870092976686 ], [ -80.639735885670291, 40.965441457379313 ], [ -80.639140829502821, 40.959310521829572 ], [ -80.642848957135172, 40.958303504301249 ] ], [ [ -95.900915646391212, 41.493554478583967 ], [ -95.884550416755971, 41.495232364644316 ], [ -95.875311307406477, 41.493962346963848 ], [ -95.864882164726296, 41.494763279859072 ], [ -95.854315036824232, 41.493401257963811 ], [ -95.839230833741794, 41.494244167498714 ], [ -95.81746455622276, 41.492863092551303 ], [ -95.78621412526654, 41.49959179623545 ], [ -95.682933233545853, 41.498043218173564 ], [ -95.600045468071642, 41.498721666774017 ], [ -95.591706290708245, 41.498881609798154 ], [ -95.585397152789071, 41.49695160345113 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I684\", \"DIST_MILES\": 27.910000, \"DIST_KM\": 44.920000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -73.731950962210647, 41.02603052073983 ], [ -73.724092242229702, 41.030943487266484 ], [ -73.723154353460288, 41.036917410677972 ], [ -73.728571480896576, 41.056166123114373 ], [ -73.726488610559826, 41.061220064968388 ], [ -73.718760941462278, 41.069173999194625 ], [ -73.718257225706253, 41.087739753911912 ], [ -73.718143249691721, 41.089162735593945 ], [ -73.716540448811486, 41.099633605993574 ], [ -73.712726680351651, 41.107785522865512 ], [ -73.704304176493238, 41.124223366205179 ], [ -73.702435399182562, 41.135270237167369 ], [ -73.68962610797098, 41.155572079405523 ], [ -73.684926577001093, 41.176121863330145 ], [ -73.688008660602591, 41.187992688322289 ], [ -73.686643815873722, 41.195122612130355 ], [ -73.684972987477508, 41.202606535052276 ], [ -73.685377252373257, 41.220509309343356 ], [ -73.673263063275712, 41.245594129679375 ], [ -73.67348411545089, 41.249359081946444 ], [ -73.676475038654431, 41.253094026994482 ], [ -73.683966831747739, 41.263629899508672 ], [ -73.684294821970795, 41.263961894525814 ], [ -73.685843801535881, 41.270537849446391 ], [ -73.678535148045839, 41.287158855206044 ], [ -73.677184240132732, 41.295295833763632 ], [ -73.67298146803887, 41.309184816390342 ], [ -73.659523036731827, 41.321872898618203 ], [ -73.658379105579783, 41.326346889919385 ], [ -73.659073114469081, 41.332332855405433 ], [ -73.654488353584568, 41.343509850611277 ], [ -73.638208064881553, 41.357352949493929 ], [ -73.621698792401503, 41.369278056491183 ], [ -73.604594533048783, 41.377037187629547 ], [ -73.598154895200935, 41.390682181029746 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I69\", \"DIST_MILES\": 362.920000, \"DIST_KM\": 584.070000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -84.701028320942584, 42.798393673075751 ], [ -84.687554713187339, 42.795894653633617 ], [ -84.682488382570796, 42.791202679410652 ], [ -84.676140080557971, 42.78938367748853 ], [ -84.659797393799025, 42.787983644827392 ] ], [ [ -84.659797393799025, 42.787983644827392 ], [ -84.626753564844208, 42.806774362760578 ], [ -84.609082881875594, 42.807899293340832 ], [ -84.590299131488564, 42.808155228850019 ], [ -84.578831833187323, 42.814903114072656 ], [ -84.574490693128368, 42.816383081954719 ], [ -84.543040444362589, 42.817504957848357 ], [ -84.52459168671902, 42.817095897889196 ], [ -84.520830497840919, 42.815482905514443 ], [ -84.518259323439679, 42.812354937265432 ], [ -84.511743954891159, 42.807627977435693 ], [ -84.488786131187183, 42.810469815695221 ], [ -84.479637775672217, 42.809584759665348 ], [ -84.456412722400756, 42.799632752884555 ], [ -84.45397863886312, 42.79988073223781 ], [ -84.426214488038681, 42.792292689955474 ], [ -84.416998004040281, 42.783953798880077 ], [ -84.408574627895746, 42.779704839521855 ], [ -84.396847207246054, 42.779425784409256 ], [ -84.38194675776603, 42.784140600561322 ], [ -84.365322331580359, 42.794585258854539 ], [ -84.363971299685488, 42.795649224747919 ], [ -84.357425143021871, 42.800784056850503 ], [ -84.321932039861565, 42.814222448349767 ], [ -84.294313172055297, 42.82623087839513 ], [ -84.258956975589825, 42.837800196109079 ], [ -84.23660219112773, 42.841340041173673 ], [ -84.220801553771281, 42.835778267210742 ], [ -84.219397506243197, 42.836052263337926 ], [ -84.199514858084243, 42.841450171707145 ], [ -84.168470000787025, 42.858589835882285 ], [ -84.134297014725632, 42.871101714830139 ], [ -84.101993279382356, 42.891231492356049 ], [ -84.044053809058923, 42.912410597534759 ], [ -84.028390465409402, 42.919528639768508 ], [ -84.000862774939094, 42.92724281787666 ], [ -83.992661623944869, 42.930671696704145 ], [ -83.965988596446905, 42.958900058341278 ], [ -83.957840460678966, 42.962099933224373 ], [ -83.929031769645235, 42.964980589152383 ], [ -83.92891675097701, 42.964407593570293 ], [ -83.871916246531995, 42.96480797068854 ], [ -83.807789577411228, 42.965886268337208 ], [ -83.797230243417786, 42.964258162549726 ], [ -83.771777762060623, 42.969967861115478 ], [ -83.765544697324231, 42.972847782832332 ], [ -83.756198614467593, 42.977486666644197 ], [ -83.733348148312984, 42.984825552892133 ], [ -83.722269860968694, 42.987408527988578 ], [ -83.711023640442804, 42.992237493923319 ], [ -83.702936620399043, 42.999989452477031 ], [ -83.693743354887573, 43.002892409043973 ], [ -83.685037138797355, 43.007668346962411 ], [ -83.683496103072656, 43.008656334534521 ], [ -83.679063980319469, 43.010369310453413 ], [ -83.654084146930003, 43.012036257149184 ], [ -83.634697511911838, 43.013993209252419 ], [ -83.624931183810247, 43.01451518990438 ], [ -83.609053719600723, 43.01927611922811 ], [ -83.581854788883845, 43.019768075609939 ], [ -83.56824325858399, 43.016358090024561 ], [ -83.553921772320535, 43.016827064865545 ], [ -83.546399509082718, 43.016629056036109 ], [ -83.537152104043344, 43.011769090399859 ], [ -83.517330416697106, 43.011597063331649 ], [ -83.495608713433299, 43.012772037002669 ], [ -83.476717236015446, 43.016266048427831 ], [ -83.458299705126493, 43.015965095209481 ], [ -83.430176894826843, 43.015526166286612 ], [ -83.388465936317147, 43.028138154234497 ], [ -83.36602735178721, 43.031037184678844 ], [ -83.349005870710798, 43.031178225985229 ], [ -83.329474199571649, 43.024975326794156 ], [ -83.322416992631091, 43.024647346826868 ], [ -83.302503374299306, 43.0219084180005 ], [ -83.287876840524888, 43.01572850339484 ], [ -83.279461556625648, 43.013417541940079 ], [ -83.25593183783343, 43.010926617061479 ], [ -83.2432134650726, 43.010857624847219 ], [ -83.215670550664001, 43.005966633082878 ], [ -83.198000024650767, 43.005978614102077 ], [ -83.182893643190468, 43.009575572864406 ], [ -83.169503232400217, 43.008946563411634 ], [ -83.151939640773762, 43.005318569197271 ], [ -83.139458142762308, 42.998246614848419 ], [ -83.12747175442027, 42.996167630217514 ], [ -83.124946696823713, 42.99732661108969 ], [ -83.124862676389185, 42.99614762749335 ], [ -83.105155090098691, 42.996197604101482 ], [ -83.075689265083625, 42.999516524113105 ], [ -83.070188092878581, 42.998974525334198 ], [ -83.067068011766267, 42.999707511605806 ], [ -83.031422920742969, 42.997795497167544 ], [ -83.014934357554651, 42.993416538345599 ], [ -82.986796416589925, 42.990322561475921 ], [ -82.763750454428617, 42.969887822321269 ], [ -82.747499886815845, 42.96893385142387 ], [ -82.592031749128992, 42.99204856432258 ], [ -82.580381397948599, 42.991998643377215 ], [ -82.576932232647323, 42.989709701828311 ], [ -82.54629105775922, 42.980547051089857 ], [ -82.513361812670254, 42.97180041289473 ], [ -82.477975431800587, 42.975447584846528 ], [ -82.4737415099016, 42.985400460114668 ], [ -82.47095645228778, 42.988150436718932 ], [ -82.465638245189197, 42.990019443864021 ], [ -82.45208761908971, 42.991351514628242 ], [ -82.445267377171533, 42.99457051373129 ], [ -82.439598212436351, 42.998511495735706 ], [ -82.436829085229945, 42.998808510561048 ], [ -82.43399795742863, 42.999190524651972 ], [ -82.423255424982685, 42.998984601631172 ] ], [ [ -84.659797393799025, 42.787983644827392 ], [ -84.663764470533124, 42.784969683460723 ], [ -84.664588476891765, 42.783989694650934 ], [ -84.669837560764904, 42.779396750043333 ], [ -84.670097524293553, 42.777664766327014 ], [ -84.668861267268099, 42.769931833268444 ], [ -84.668181612073269, 42.741006093418157 ], [ -84.669005423007647, 42.719563287763918 ], [ -84.669172393724452, 42.716096319256884 ], [ -84.670004272325926, 42.701207454750445 ], [ -84.668394108485728, 42.691296540859867 ], [ -84.670050143031546, 42.688485569301882 ], [ -84.679304431882088, 42.68210764449659 ], [ -84.681166445298615, 42.676507698615879 ], [ -84.682364297115157, 42.657754870224132 ], [ -84.684309335431792, 42.654275905503496 ], [ -84.699034780642549, 42.642996037111224 ], [ -84.714240189719789, 42.62663421676988 ], [ -84.740837004465718, 42.60782444396812 ], [ -84.776094062707301, 42.589235585451561 ], [ -84.792260569730018, 42.584337600748363 ], [ -84.815646301613938, 42.577455621493172 ], [ -84.818720381006997, 42.575125637542733 ], [ -84.82085640312026, 42.570665675189161 ], [ -84.820940212518607, 42.553976830585206 ], [ -84.820956109387396, 42.545034913900523 ], [ -84.822259956369351, 42.528025070160396 ], [ -84.826220029511461, 42.522788112092144 ], [ -84.835925278020611, 42.516028158392174 ], [ -84.845385513593513, 42.509028207599613 ], [ -84.858805875515841, 42.501647253883554 ], [ -84.866137793121794, 42.49236639698281 ], [ -84.883379753587761, 42.4773286543236 ], [ -84.903208917688602, 42.46558686121233 ], [ -84.937580647927689, 42.456547021228758 ], [ -84.945255732174886, 42.452747096103629 ], [ -84.949756640100134, 42.447239208770768 ], [ -84.953296298355781, 42.436668428340951 ], [ -84.958567836066749, 42.422108734530198 ], [ -84.967394558950886, 42.409421008871782 ], [ -84.96877533585149, 42.403317140015929 ], [ -84.967645443967243, 42.383580558067578 ], [ -84.97989804622199, 42.366170954537893 ], [ -84.981766083015529, 42.34298146071567 ], [ -84.991477610838459, 42.326029860136714 ], [ -84.996786484778724, 42.297301512368051 ], [ -84.996901442187934, 42.296271535599843 ], [ -84.997404022144906, 42.286502753650325 ], [ -84.993428462120278, 42.276252961252332 ], [ -84.990941130415592, 42.270233081327838 ], [ -84.988285710523456, 42.262291241655426 ], [ -84.984958843833297, 42.245953577186469 ], [ -84.985782243398347, 42.235432804048358 ], [ -84.981752230444002, 42.219953108771982 ], [ -84.982545159300457, 42.201451504077241 ], [ -84.984778517945657, 42.17274312309231 ], [ -84.990607192780374, 42.165014318944202 ], [ -84.992384935759262, 42.160006434708627 ], [ -84.989134153006276, 42.148005670150319 ], [ -84.995045638930776, 42.137175932117501 ], [ -84.996089800275669, 42.105865599759383 ], [ -84.997652644565875, 42.085907030418767 ], [ -84.995187365121737, 42.082016098771007 ], [ -84.989221008840985, 42.077957150923744 ], [ -84.982064572023873, 42.072888217672407 ], [ -84.978890093146561, 42.065777349988451 ], [ -84.976514632424369, 42.024637205639543 ], [ -84.972027765774385, 42.011167464697003 ], [ -84.973728600189631, 41.956518136407944 ], [ -84.973277336545664, 41.936117334298487 ], [ -84.973171174410083, 41.923323459369215 ], [ -84.975887163456818, 41.917616528859291 ], [ -84.988117313423814, 41.906969692581008 ], [ -84.990588317284292, 41.902277749932978 ], [ -84.991060884712269, 41.862831133247958 ], [ -84.997767899555868, 41.847980305789186 ], [ -84.999033635193086, 41.820030579284065 ], [ -84.997416432859225, 41.805648710782897 ], [ -84.987573716181686, 41.769040026547806 ], [ -84.989892686319024, 41.759720125103939 ], [ -85.000344987167736, 41.739159261374148 ], [ -85.00112403892372, 41.734990264238952 ], [ -85.002627112889172, 41.732289265864679 ], [ -85.001765089714496, 41.729859267773747 ], [ -85.000361032842818, 41.729859268087431 ], [ -85.000376073194175, 41.721650274011189 ], [ -85.004297269570458, 41.713841278336275 ], [ -85.004297307270875, 41.706028283764248 ], [ -85.00416842959639, 41.679600302198722 ], [ -85.009836696582553, 41.671570304218527 ], [ -85.0148879146914, 41.66849230295184 ], [ -85.032459647078824, 41.663170294172325 ], [ -85.03760886672238, 41.660508291862776 ], [ -85.047375329916676, 41.645367290943092 ], [ -85.047993399091197, 41.635819294170794 ], [ -85.048153409872171, 41.634880294396055 ], [ -85.047718467538132, 41.618714301126275 ], [ -85.046994511051523, 41.603119308048264 ], [ -85.056546946894116, 41.591431301353701 ], [ -85.05869005751596, 41.585991300529152 ], [ -85.055623206643517, 41.527138324149632 ], [ -85.054075354168404, 41.490761300988922 ], [ -85.053640799114575, 41.439660108952594 ], [ -85.054777840827427, 41.439660105823769 ], [ -85.053670806912919, 41.438919106072674 ], [ -85.053464954546087, 41.421769041951961 ], [ -85.066336633440002, 41.39596590055752 ], [ -85.080307324022897, 41.369308741177903 ], [ -85.081703392278357, 41.366489723969181 ], [ -85.08275644231091, 41.364520711573029 ], [ -85.087417663955847, 41.355461654462417 ], [ -85.08781470668346, 41.351447635595456 ], [ -85.086693309460486, 41.265830273522418 ], [ -85.086808363609151, 41.259010243677743 ], [ -85.091736555672824, 41.247898167303617 ], [ -85.092454530877106, 41.239288123105965 ], [ -85.103882742161232, 41.221320979170876 ], [ -85.10402762884263, 41.200369884115744 ], [ -85.103333490993833, 41.178839790456564 ], [ -85.103524453085598, 41.171179755036562 ], [ -85.109383524937996, 41.15843867194279 ], [ -85.116913643692129, 41.147719592661311 ], [ -85.136171038951915, 41.137778470966303 ], [ -85.154367411224086, 41.129919366737781 ], [ -85.158479503013339, 41.129347348237744 ], [ -85.17756894135826, 41.1284472693062 ], [ -85.182765041975401, 41.126002240437124 ], [ -85.186625100395062, 41.122343213067666 ], [ -85.224993616598255, 41.084996959862373 ], [ -85.228533588279092, 41.074498919128679 ], [ -85.230937568386864, 41.067453892290679 ], [ -85.250613803341565, 41.050668787649649 ], [ -85.25203279898588, 41.04743776983733 ], [ -85.252291658034835, 41.033906734911675 ], [ -85.252345644981418, 41.03259473132438 ], [ -85.253535506957064, 41.017518686154801 ], [ -85.266795564702974, 40.994626536084361 ], [ -85.294604894793125, 40.956579230236088 ], [ -85.325275209651537, 40.916973889926062 ], [ -85.335956311180794, 40.904137772018068 ], [ -85.345585381986737, 40.890766659042342 ], [ -85.34491294972328, 40.837925496811636 ], [ -85.354221019677325, 40.827595392873015 ], [ -85.381183234687612, 40.802357102793728 ], [ -85.383671224102855, 40.796856065188344 ], [ -85.384617067300297, 40.777866994590561 ], [ -85.407184129497864, 40.747577692075318 ], [ -85.41571421049413, 40.736674490807168 ], [ -85.436702414712187, 40.719833109397399 ], [ -85.477512705670648, 40.687346343612781 ], [ -85.504863825093338, 40.653154642473829 ], [ -85.523335163529424, 40.625772087058728 ], [ -85.550931698697269, 40.592262323534818 ], [ -85.551076369528772, 40.555732794602669 ], [ -85.549771309927635, 40.553351775496509 ], [ -85.550923319158372, 40.550700723755959 ], [ -85.549167780695683, 40.489867051807302 ], [ -85.549045745533192, 40.477912096456748 ], [ -85.549167738592516, 40.474059108810756 ], [ -85.551510760734743, 40.458961134130618 ], [ -85.54555156932129, 40.446071254209819 ], [ -85.544544528084899, 40.440162287626563 ], [ -85.549427621621703, 40.427642273040519 ], [ -85.548580490403538, 40.386222432413945 ], [ -85.553592591165796, 40.378791400934944 ], [ -85.557666675148241, 40.374061371065103 ], [ -85.55875068907244, 40.37004037341255 ], [ -85.55795639548937, 40.276820727011895 ], [ -85.557506450727629, 40.234192031843506 ], [ -85.560566651633806, 40.218193200146338 ], [ -85.561222954196467, 40.185421604691477 ], [ -85.566807180264703, 40.170193723590621 ], [ -85.568753632223988, 40.120919305356331 ], [ -85.568707654741615, 40.118203339494265 ], [ -85.568738691839826, 40.113904392001572 ], [ -85.568867727303342, 40.109952438754092 ], [ -85.569691855204553, 40.096204595321609 ], [ -85.576177037938876, 40.084214639706559 ], [ -85.592077395070476, 40.063043631553917 ], [ -85.598158499076263, 40.058362583753151 ], [ -85.606191605861397, 40.056073474590534 ], [ -85.63313891510775, 40.054933032955049 ], [ -85.652991145511209, 40.053188714864937 ], [ -85.66425227692217, 40.051712537833879 ], [ -85.678305437787188, 40.05015931284796 ], [ -85.721839937021102, 40.037642661956021 ], [ -85.736694096111677, 40.033523430492693 ], [ -85.74995423359961, 40.029700221312766 ], [ -85.758369462340241, 40.025172072872984 ], [ -85.762924586459988, 40.020442003443257 ], [ -85.772926857226807, 40.004270871953089 ], [ -85.778161002926211, 39.996069816074964 ], [ -85.78379115607828, 39.992689727529097 ], [ -85.824312220430073, 39.991498862398217 ], [ -85.844866762741248, 39.994038378016576 ], [ -85.86217821555671, 39.992478025779292 ], [ -85.926998909143208, 39.990496660413235 ], [ -85.97100693003371, 39.970378226474587 ], [ -85.999823626978284, 39.966062772190895 ], [ -86.003966740086071, 39.96220692026499 ], [ -86.015182006329468, 39.946997461203246 ], [ -86.028098297764416, 39.929233078869395 ], [ -86.02977733468957, 39.926933157947367 ], [ -86.045882680732063, 39.90530489373544 ], [ -86.054054852911534, 39.894841245981468 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I69  D\", \"DIST_MILES\": 7.920000, \"DIST_KM\": 12.740000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -84.365322331580359, 42.794585258854539 ], [ -84.363964292953241, 42.795241234487825 ], [ -84.297365103200619, 42.812044318362986 ], [ -84.276581386086576, 42.816164031650793 ], [ -84.25869784526364, 42.827050538686862 ], [ -84.220801553771281, 42.835778267210742 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I690\", \"DIST_MILES\": 12.450000, \"DIST_KM\": 20.030000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -76.264674726019166, 43.111533197962849 ], [ -76.256183527756136, 43.107288174263523 ], [ -76.245936344375224, 43.105285177816967 ], [ -76.228892037257125, 43.085132004271564 ], [ -76.223886968238546, 43.081866981259779 ], [ -76.188242530967187, 43.060873840866087 ], [ -76.176699414642243, 43.056502821061159 ], [ -76.158594260356168, 43.054659843386176 ], [ -76.152117205191601, 43.053519846298599 ], [ -76.148836171934732, 43.051092828058906 ], [ -76.147486161742577, 43.05117283205476 ], [ -76.144556138414245, 43.0509178361607 ], [ -76.143251129084021, 43.051153841721245 ], [ -76.128511018418067, 43.051615881130274 ], [ -76.122117974188598, 43.053290914057392 ], [ -76.096688794590776, 43.059249038078612 ], [ -76.083840699991967, 43.058303058605873 ], [ -76.081483683003157, 43.058200063142493 ], [ -76.07351062615993, 43.057742077343107 ], [ -76.066850579498734, 43.057182087333729 ], [ -76.052331480214008, 43.056926119620151 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I691\", \"DIST_MILES\": 11.130000, \"DIST_KM\": 17.920000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -72.944503949465215, 41.543113787072983 ], [ -72.932312835427183, 41.553185006564625 ], [ -72.925676297811307, 41.55617611196255 ], [ -72.91784883822308, 41.558892232147883 ], [ -72.902018873889688, 41.556931423167335 ], [ -72.899097061122376, 41.555970453766811 ], [ -72.89063662957409, 41.555966563630243 ], [ -72.872174872750918, 41.554963796084856 ], [ -72.848212519813814, 41.55487210947522 ], [ -72.846213657629391, 41.554773134892571 ], [ -72.825387059888115, 41.548292347194213 ], [ -72.814126868352417, 41.549863510540533 ], [ -72.793864263565226, 41.543470710747208 ], [ -72.786067820743142, 41.542871806468206 ], [ -72.770679916967993, 41.540163978296675 ], [ -72.761632561933084, 41.537932071393676 ], [ -72.747152546638688, 41.527503139648296 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I694\", \"DIST_MILES\": 21.100000, \"DIST_KM\": 33.960000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -93.062115905749621, 45.037566796652392 ], [ -93.013088203494576, 45.037078862843991 ], [ -92.984613955794416, 45.034442945240372 ], [ -92.965424972849092, 45.031922035774244 ], [ -92.961693761769325, 45.029858042628724 ], [ -92.959504600511394, 45.025669025890437 ], [ -92.957657295669961, 45.008724918664385 ], [ -92.957779214980548, 45.001792869211094 ], [ -92.96060220387281, 44.991912877773935 ], [ -92.958793403988153, 44.948872118719798 ] ], [ [ -93.285840963155451, 45.06947623516043 ], [ -93.282285852245835, 45.069122258275051 ], [ -93.247417776515235, 45.067680475636365 ], [ -93.227222026226926, 45.064971534601398 ], [ -93.203807200125041, 45.064700597222654 ], [ -93.196062953710566, 45.066490618759914 ], [ -93.185816600314439, 45.066966647346703 ], [ -93.166726921971843, 45.066432699178165 ], [ -93.151170294807983, 45.060432726623972 ], [ -93.12262721435431, 45.054183773246827 ], [ -93.100821299974768, 45.041934762032575 ], [ -93.09212395446113, 45.038383757769502 ], [ -93.089346785505015, 45.032455730265696 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I695\", \"DIST_MILES\": 33.590000, \"DIST_KM\": 54.050000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -76.631626498584069, 39.202760606582878 ], [ -76.636585622120663, 39.203359568785125 ], [ -76.649067987811534, 39.210008398561726 ], [ -76.655812202147089, 39.214860288247046 ], [ -76.658788320127655, 39.219098208937545 ], [ -76.665738614815481, 39.230333004233941 ], [ -76.667180680706139, 39.233013956659882 ], [ -76.668752790390357, 39.239308855528101 ], [ -76.674169991952652, 39.244858742929758 ], [ -76.680289219330447, 39.250668628317811 ], [ -76.683653343280483, 39.253147598307351 ], [ -76.691260583704363, 39.255997542186591 ], [ -76.702856951029261, 39.260357456783126 ], [ -76.722297621975528, 39.271378298746107 ], [ -76.724258704295011, 39.27349927866431 ], [ -76.727119868687865, 39.279667236640073 ], [ -76.738213257529509, 39.286320145633916 ], [ -76.742348456834151, 39.292576096223925 ], [ -76.744210698267935, 39.305958030476035 ], [ -76.745172339151821, 39.34882784845194 ], [ -76.748315704392155, 39.368514749879175 ], [ -76.746347718887719, 39.373126741839251 ], [ -76.743417716730988, 39.37832973667107 ], [ -76.733941557699836, 39.384517763655992 ], [ -76.730096501807637, 39.387607772160699 ], [ -76.723642362423419, 39.389606799612082 ], [ -76.713022100268176, 39.390567854458638 ], [ -76.700165826125286, 39.394626908737393 ], [ -76.686951509199019, 39.396266975125513 ], [ -76.668900205146841, 39.407177028990695 ], [ -76.663811138362632, 39.411503038759129 ], [ -76.653449986974778, 39.419186063269585 ], [ -76.647041848579178, 39.420838091622052 ], [ -76.641670701982846, 39.420117124431791 ], [ -76.629417342792266, 39.41673720689662 ], [ -76.618461008315577, 39.412758284986019 ], [ -76.612448868224902, 39.413498315211839 ], [ -76.600546564106352, 39.413090383259224 ], [ -76.593268398613986, 39.414185419025884 ], [ -76.585303183661665, 39.413067468364062 ], [ -76.569509632761736, 39.402386603868052 ], [ -76.566228536783527, 39.401398626656778 ], [ -76.55893436253082, 39.401806665807051 ], [ -76.553563198672705, 39.399708705334085 ], [ -76.548528030362107, 39.39674874687379 ], [ -76.540829775785369, 39.392391809761307 ], [ -76.530323463671465, 39.388767885400426 ], [ -76.522747212943599, 39.384419947891622 ], [ -76.518176953635006, 39.374608018128185 ], [ -76.513843775529267, 39.369809064504281 ], [ -76.495563078679808, 39.35091525638979 ] ], [ [ -77.01166612200781, 38.882284590134269 ], [ -77.008766078378045, 38.881563609490762 ], [ -76.991103788982159, 38.877580724998552 ] ], [ [ -73.824864518512356, 40.836358191136135 ], [ -73.817517749405027, 40.827237399818614 ], [ -73.815236805846183, 40.820787527646786 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I696\", \"DIST_MILES\": 27.930000, \"DIST_KM\": 44.950000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -83.434863837308939, 42.483413479501344 ], [ -83.431918763149881, 42.484825467867992 ], [ -83.420634480753122, 42.490116426808378 ], [ -83.409938209243734, 42.492874427394192 ], [ -83.358666885234697, 42.495884604880537 ], [ -83.349663651565038, 42.495964643557954 ], [ -83.332024165470813, 42.490543803087789 ], [ -83.319160828836146, 42.490455860040854 ], [ -83.31069960890737, 42.490665893572249 ], [ -83.295128223641271, 42.49420591045206 ], [ -83.291450123823267, 42.493545936002825 ], [ -83.284781926529377, 42.489834017469846 ], [ -83.271071537763007, 42.485326138794264 ], [ -83.256911168663208, 42.485715193335984 ], [ -83.252516063630566, 42.487145192722274 ], [ -83.221761072668627, 42.487744307963737 ], [ -83.211232721130955, 42.487195357204847 ], [ -83.207707577788099, 42.48419641104865 ], [ -83.206425473712812, 42.477437505829606 ], [ -83.201993319089169, 42.476708533035577 ], [ -83.196637137765137, 42.476445557706668 ], [ -83.191387938085484, 42.473946611529584 ], [ -83.145640418618271, 42.475045777747766 ], [ -83.14382435842343, 42.47509178432005 ], [ -83.133624020658601, 42.475365821037791 ], [ -83.11854752209247, 42.475785875136708 ], [ -83.111818306741981, 42.476506892343792 ], [ -83.091645647038547, 42.477475959542609 ], [ -83.088951576078301, 42.478814952841226 ], [ -83.085236520657048, 42.483609905428757 ], [ -83.08443550683927, 42.484498897094646 ], [ -83.081543471787583, 42.488705854123459 ], [ -83.077065359161921, 42.491074841328334 ], [ -83.057380719376084, 42.491395915765537 ], [ -83.050254438855546, 42.488385982941921 ], [ -83.045913287832732, 42.48785900701349 ], [ -83.035781012007789, 42.491377002240071 ], [ -83.027975761348031, 42.491667029684436 ], [ -82.988149313898873, 42.492784117141298 ], [ -82.969608469940894, 42.493837087838443 ], [ -82.938739047623713, 42.494516052968358 ], [ -82.917238065074713, 42.495226026173825 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I70\", \"DIST_MILES\": 2129.260000, \"DIST_KM\": 3426.720000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -94.572193258952751, 39.09748543189874 ], [ -94.564083029945223, 39.09602446202102 ], [ -94.553417725574576, 39.095951473858371 ], [ -94.548229575470842, 39.097061462308581 ], [ -94.545268492644041, 39.09610047981019 ], [ -94.540973385189673, 39.087654611969228 ], [ -94.541194397881853, 39.084099665545452 ], [ -94.540477383589348, 39.080670718202533 ], [ -94.534953239260517, 39.073345835069709 ], [ -94.520571833253825, 39.071156883935487 ], [ -94.510836559596768, 39.069069926357358 ], [ -94.490664033434868, 39.058976130882407 ], [ -94.474443636202793, 39.052003301206319 ], [ -94.464975404147296, 39.048372393025488 ], [ -94.44265084192179, 39.047273497120337 ], [ -94.415520158989523, 39.045995622132146 ], [ -94.389419501648945, 39.045068737457619 ], [ -94.362288824989292, 39.041917887205024 ], [ -94.341444308932651, 39.038504014678821 ], [ -94.271938584168154, 39.030360387355287 ], [ -94.218234822123762, 39.02320775397412 ], [ -94.197993676034628, 39.021555889509308 ], [ -94.18935761469892, 39.020663946744882 ], [ -94.175021509203731, 39.020095033361628 ], [ -94.153636363308792, 39.016818168696595 ], [ -94.125796156931557, 39.016345321056015 ], [ -94.110011045565884, 39.014976405902928 ], [ -94.091585924072888, 39.011848496546534 ], [ -93.948930365024708, 39.008168263447082 ], [ -93.794820673486129, 39.002031190856933 ], [ -93.735310417870409, 39.000974985407098 ], [ -93.729397232465317, 39.000498184135452 ], [ -93.713527691823614, 38.994380757018476 ], [ -93.70663846534066, 38.992832001281926 ], [ -93.652467770099506, 38.991940872463303 ], [ -93.633485167903331, 38.989523514907688 ], [ -93.595711007414153, 38.994353852516305 ], [ -93.567840132340024, 38.992325796146069 ], [ -93.549025542334419, 38.989224400887693 ], [ -93.511159366604915, 38.987417661591053 ], [ -93.494190941345281, 38.984763018943383 ], [ -93.465382521631497, 38.978919087351365 ], [ -93.25467839723018, 38.970890297568559 ], [ -93.230194325483325, 38.968700452683201 ], [ -93.208312232966065, 38.962219521700874 ], [ -93.207267181248383, 38.961899524882298 ], [ -93.200437843903998, 38.960560558607725 ], [ -93.049483486813003, 38.950517651957561 ], [ -92.995426979791304, 38.946650122472512 ], [ -92.990817857662833, 38.944662203978204 ], [ -92.977497574453039, 38.934561363124729 ], [ -92.973010449216162, 38.933371450328792 ], [ -92.846648392180001, 38.935056492391737 ], [ -92.789968574843869, 38.935412853585511 ], [ -92.776166126354227, 38.935718191168206 ], [ -92.775197095220435, 38.935725214501694 ], [ -92.737263149381363, 38.936539288510694 ], [ -92.577387505475187, 38.940234004839425 ], [ -92.571604383163773, 38.942725276038878 ], [ -92.545022673079217, 38.959762673918483 ], [ -92.529481259356743, 38.969704489491875 ], [ -92.518517050317499, 38.973614979921585 ], [ -92.431030606019391, 38.971618598546243 ], [ -92.401489484815414, 38.970898020754575 ], [ -92.371094399220055, 38.968220408429104 ], [ -92.359177424018853, 38.964256490321731 ], [ -92.354980397666338, 38.964527560078267 ], [ -92.35147133918737, 38.966549661826178 ], [ -92.345085258140429, 38.969040817648441 ], [ -92.33344320118897, 38.969120993701331 ], [ -92.324875168747212, 38.968690111644825 ], [ -92.31078311565652, 38.967931304774581 ], [ -92.299026135873092, 38.96370838306045 ], [ -92.291702135440218, 38.961690446928884 ], [ -92.235160824976774, 38.960218145681807 ], [ -92.225280746106904, 38.96005121094646 ], [ -92.21221166104668, 38.958639274920642 ], [ -92.175101358754688, 38.958391533484331 ], [ -92.149695216202346, 38.95425665570864 ], [ -92.043638375118036, 38.952189432629304 ], [ -91.9700517767576, 38.952392498103237 ], [ -91.96564860681741, 38.951770459713316 ], [ -91.951549140181001, 38.945460346261456 ], [ -91.941149732752876, 38.944491262145561 ], [ -91.881974331175059, 38.943750779612266 ], [ -91.857734472511112, 38.937311634589797 ], [ -91.846893064932459, 38.935709565366359 ], [ -91.829161292752104, 38.938200404722949 ], [ -91.821721999210112, 38.937780351351911 ], [ -91.727450893978883, 38.91248132404295 ], [ -91.722208733460675, 38.911570367024311 ], [ -91.658875567829497, 38.910528728018157 ], [ -91.640137093953001, 38.901735965367379 ], [ -91.629500833483604, 38.896071109681294 ], [ -91.623145650194104, 38.894031175019599 ], [ -91.574613808980118, 38.901870316814581 ], [ -91.553998059447636, 38.903712400486057 ], [ -91.540401521242345, 38.907641415470543 ], [ -91.534771318224728, 38.908122438865341 ], [ -91.466088907883616, 38.901782992330361 ], [ -91.456361564439774, 38.899643102104363 ], [ -91.392638340667943, 38.881172895396951 ], [ -91.355138039417639, 38.866914421288989 ], [ -91.341206471516088, 38.868653508410624 ], [ -91.302425051717435, 38.857835997428559 ], [ -91.287333525033276, 38.8502032435646 ], [ -91.278384190534695, 38.847765356792685 ], [ -91.265085673541151, 38.846155493202502 ], [ -91.242081658322647, 38.846365763187805 ], [ -91.233941249156089, 38.844996935266678 ], [ -91.228936010540423, 38.842433068076431 ], [ -91.212364249603127, 38.829154579025953 ], [ -91.186902978420918, 38.82056417156079 ], [ -91.166447913921431, 38.819435557186274 ], [ -91.147617917355262, 38.821316869357872 ], [ -91.139705505637295, 38.820836019062483 ], [ -91.127436875918818, 38.818136278472906 ], [ -91.113337136485939, 38.818158531935211 ], [ -91.078842313927836, 38.822459095685581 ], [ -91.053137955886911, 38.828017488751208 ], [ -91.015514991629146, 38.830028147536986 ], [ -91.006389519649986, 38.82685835184698 ], [ -90.961060982529418, 38.817562973150622 ], [ -90.954400606188017, 38.816880048800684 ], [ -90.938903740442527, 38.812722254727916 ], [ -90.90148766391809, 38.804261731437883 ], [ -90.890844062077235, 38.804871831867167 ], [ -90.88320661991898, 38.807110883315559 ], [ -90.878323330038512, 38.809666903420791 ], [ -90.87129593089179, 38.8100599700362 ], [ -90.866474660683963, 38.809724022652041 ], [ -90.859531294134015, 38.805795137548891 ], [ -90.836618999642198, 38.806386362330493 ], [ -90.761380787673971, 38.80387415000893 ], [ -90.666109449015792, 38.802877820171133 ], [ -90.650376953200833, 38.801702749268564 ], [ -90.639474622347535, 38.799730714484951 ], [ -90.626435197311721, 38.800043640599547 ], [ -90.589973038306184, 38.798238467669592 ], [ -90.573363523592676, 38.796220404880053 ], [ -90.559333118298099, 38.791852387355355 ], [ -90.531042260308581, 38.786752306527546 ], [ -90.523542046616626, 38.784162302400034 ], [ -90.511449739392788, 38.776632342521395 ], [ -90.506909625350019, 38.77369135969149 ], [ -90.494679296265886, 38.768869365270909 ], [ -90.485661064413037, 38.765188371840992 ], [ -90.439768826269272, 38.748632366791057 ], [ -90.433085643586622, 38.746217358746335 ], [ -90.420314273333915, 38.743783320355114 ], [ -90.412417027760284, 38.744035278337918 ], [ -90.39661654811411, 38.743280207224089 ], [ -90.378992008289558, 38.742944122624394 ], [ -90.371262796720032, 38.740003113771543 ], [ -90.363114556814097, 38.738744085641628 ], [ -90.356545380107605, 38.735841081859377 ], [ -90.350365208196351, 38.733720072021484 ], [ -90.340538916146997, 38.732431035348817 ], [ -90.331764680134356, 38.728422030871108 ], [ -90.323341472301777, 38.722352048214724 ], [ -90.317436305779637, 38.720460036780295 ], [ -90.306113946459519, 38.721470969080265 ], [ -90.30263484407368, 38.720841957495772 ], [ -90.297614721697201, 38.716931970052947 ], [ -90.285567399985155, 38.710751968329568 ], [ -90.275694120429563, 38.707501948856873 ], [ -90.265714865023142, 38.700856961144488 ], [ -90.261526757915448, 38.698021966553647 ], [ -90.259733746417396, 38.692602009127413 ], [ -90.251882534403407, 38.688562006545368 ], [ -90.24633536529781, 38.686161986840858 ], [ -90.237234072934939, 38.682621940481951 ], [ -90.228161748990232, 38.683091856111936 ], [ -90.220494472216984, 38.683850781330264 ], [ -90.212330216882705, 38.679879747542827 ], [ -90.204540998765026, 38.673039744731923 ], [ -90.197231832838398, 38.66199978672509 ], [ -90.186351654111988, 38.637520927295363 ], [ -90.185741678678909, 38.632012975075021 ], [ -90.187053784251617, 38.624879055279266 ], [ -90.18925089846725, 38.62042011737244 ] ], [ [ -94.572193258952751, 39.09748543189874 ], [ -94.57319328764585, 39.097405432099187 ], [ -94.575718361881741, 39.096173448071454 ], [ -94.584088600728109, 39.096249438511094 ], [ -94.591580814885319, 39.096104433145094 ] ], [ [ -94.572193258952751, 39.09748543189874 ], [ -94.573292283200601, 39.101586369175557 ], [ -94.5722702491028, 39.104405327816423 ] ], [ [ -112.603175404245818, 38.577101455122154 ], [ -112.584140884515051, 38.586859264136407 ], [ -112.549610800548905, 38.604077929995647 ], [ -112.543240963184942, 38.604978899784292 ], [ -112.534001186781296, 38.604428881186998 ], [ -112.517461608545801, 38.6073587961043 ], [ -112.509961787357881, 38.607198777781726 ], [ -112.506909846985522, 38.605649790178774 ], [ -112.505887847058474, 38.602837824931939 ], [ -112.507825743752846, 38.595967921918572 ], [ -112.502835832160201, 38.593057947063478 ], [ -112.48748618843068, 38.588530067625129 ], [ -112.484022286386278, 38.589289074372452 ], [ -112.468786674611692, 38.588617161371914 ], [ -112.457426882072951, 38.580809341424725 ], [ -112.44598316135496, 38.580290413571639 ], [ -112.432143527666312, 38.582647451624347 ], [ -112.424422745374955, 38.585218449816892 ], [ -112.414153997812818, 38.585608498628801 ], [ -112.408875104400281, 38.584009556365196 ], [ -112.402558258074876, 38.58433058539844 ], [ -112.387360583998742, 38.58206071356193 ], [ -112.383301658875453, 38.580648764241992 ], [ -112.36647904955089, 38.581289848778702 ], [ -112.357652221486518, 38.579489937578835 ], [ -112.35358527287741, 38.576789018584535 ], [ -112.349229363541014, 38.576461052027241 ], [ -112.338288616513452, 38.577529095522998 ], [ -112.33310071242623, 38.576491150058231 ], [ -112.330949791209434, 38.578670114741278 ], [ -112.32534992953768, 38.579909120600746 ], [ -112.321291004304058, 38.579169161762842 ], [ -112.302080424701018, 38.580359249849998 ], [ -112.297762497119436, 38.579341300337653 ], [ -112.294070592165184, 38.580531294019039 ], [ -112.282976808986291, 38.580031373555229 ], [ -112.277110037574516, 38.586558245457944 ], [ -112.272121178606341, 38.588920214323977 ], [ -112.261066569956469, 38.598609025515444 ], [ -112.243747983233305, 38.601920017825115 ], [ -112.236256198380389, 38.605047959980439 ], [ -112.213125595919522, 38.649789733391479 ], [ -112.208913784628848, 38.654107607043485 ], [ -112.202253989878557, 38.656369539203169 ], [ -112.186148396254438, 38.657659497138816 ], [ -112.179938578949432, 38.659337442828964 ], [ -112.161102426531755, 38.676418872182424 ], [ -112.12266785150122, 38.732946784062143 ], [ -112.115908499471075, 38.749964126118201 ], [ -112.106090017080419, 38.764485690996352 ], [ -112.092769704434318, 38.78236513484223 ], [ -112.090046855751766, 38.786515006715895 ], [ -112.083966102291697, 38.790477856211098 ], [ -112.063016964536885, 38.804294323287351 ], [ -112.036818247042746, 38.830702384650905 ], [ -112.007049625447721, 38.854372450175937 ], [ -111.975190563822522, 38.871862000598 ], [ -111.957200944717101, 38.878140896216472 ], [ -111.939424213073934, 38.87963992852616 ], [ -111.93023130646317, 38.878332006479518 ], [ -111.923151441061933, 38.880509972925125 ], [ -111.903566937557656, 38.893361675321259 ], [ -111.899936051725092, 38.89698858239165 ], [ -111.894122328185958, 38.907719285733037 ], [ -111.882556600980223, 38.915120109828997 ], [ -111.870060002427351, 38.929168734564598 ], [ -111.862553145047912, 38.932628657995814 ], [ -111.854328235670479, 38.933029676613927 ], [ -111.818867561690041, 38.932220836067671 ], [ -111.803783716348107, 38.93326986161469 ], [ -111.79023481997713, 38.932449939803703 ], [ -111.780430800121167, 38.926411168077557 ], [ -111.761921864185879, 38.921071411877492 ], [ -111.736759915885386, 38.915631864661769 ], [ -111.729687956315345, 38.916668951415133 ], [ -111.721668966736374, 38.915701115946455 ], [ -111.708767914907611, 38.909841507157218 ], [ -111.701267933274011, 38.9096206377396 ], [ -111.687023896290299, 38.904601017238463 ], [ -111.672199911126185, 38.90311330080759 ], [ -111.655163879069534, 38.898272708989637 ], [ -111.644779905282604, 38.898680865075328 ], [ -111.64201799624621, 38.904853747062944 ], [ -111.638417015054713, 38.905791781693878 ], [ -111.633663995209716, 38.903823911002213 ], [ -111.630787935743356, 38.89916207819406 ], [ -111.625660893274272, 38.895462255364549 ], [ -111.601994792713967, 38.885414878066669 ], [ -111.592121770442802, 38.882783093920459 ], [ -111.573437778344939, 38.882035399052462 ], [ -111.556782725032335, 38.876794770981917 ], [ -111.554447704468515, 38.874974846185722 ], [ -111.552464645386209, 38.869923986008402 ], [ -111.551807514191381, 38.858846236465489 ], [ -111.548367454940674, 38.853594398729669 ], [ -111.541393417030136, 38.849855575661906 ], [ -111.539677383700976, 38.846864662526329 ], [ -111.537273307490793, 38.840093837516378 ], [ -111.539082114682898, 38.823615160795264 ], [ -111.535502988573654, 38.81224744308102 ], [ -111.529727928580371, 38.806216636199956 ], [ -111.518413901867589, 38.8023258457347 ], [ -111.50825883757625, 38.795177101537355 ], [ -111.500659764125373, 38.78738833489588 ], [ -111.49447962821715, 38.783947476579513 ], [ -111.488032512940663, 38.782818576945672 ], [ -111.478763305622564, 38.77670780322498 ], [ -111.467952032206043, 38.765088143934989 ], [ -111.444811610479221, 38.756596562947848 ], [ -111.409044058055812, 38.757977952984675 ], [ -111.391206757556958, 38.754980207076215 ], [ -111.381837608335374, 38.756109298014401 ], [ -111.349450075039286, 38.766020533119907 ], [ -111.341682937672289, 38.76753860487932 ], [ -111.306679272262315, 38.781889842200243 ], [ -111.298767101590926, 38.788633856396515 ], [ -111.286109820382762, 38.796698919760154 ], [ -111.27615260164292, 38.799399017801754 ], [ -111.267768421270574, 38.799850123031227 ], [ -111.262618285075831, 38.80538112758483 ], [ -111.252211033457371, 38.809760218212539 ], [ -111.227301544405549, 38.809581009141503 ], [ -111.207778986174461, 38.811110803172667 ], [ -111.19317630364408, 38.81502763195185 ], [ -111.158540071816432, 38.818140288284361 ], [ -111.149537263508336, 38.821638189855115 ], [ -111.13443158069839, 38.831129022174999 ], [ -111.109529128771868, 38.830907815336545 ], [ -111.095659426047234, 38.839467693317161 ], [ -111.072931917596335, 38.838628517506898 ], [ -111.058276234851533, 38.844628414232119 ], [ -111.010464244859605, 38.847360078900508 ], [ -110.956472347034889, 38.841396248541727 ], [ -110.940824664104767, 38.846805065107908 ], [ -110.932332832091703, 38.847827947045197 ], [ -110.921438039882673, 38.854728890109214 ], [ -110.915915144533656, 38.855906829618057 ], [ -110.910666246573456, 38.854426727705487 ], [ -110.902182418290991, 38.848506491974213 ], [ -110.8915396261431, 38.846637290096901 ], [ -110.887304704268772, 38.847785247858269 ], [ -110.881430805454315, 38.85159623965766 ], [ -110.873335950189599, 38.853755167865415 ], [ -110.861236143350197, 38.862056193620681 ], [ -110.85001333458041, 38.864375102337668 ], [ -110.844886428755629, 38.863547012711742 ], [ -110.836524597657842, 38.858965774310811 ], [ -110.820213881781697, 38.859575566175479 ], [ -110.816703938331088, 38.860407543156946 ], [ -110.807747060411145, 38.865866593880419 ], [ -110.794487293048689, 38.864595380104177 ], [ -110.747704928836967, 38.875147244436562 ], [ -110.739617940415684, 38.874315266264247 ], [ -110.713463998383276, 38.867224199428883 ], [ -110.705811995530354, 38.86737626377392 ], [ -110.665871925972496, 38.876825834845661 ], [ -110.644112859969852, 38.890086302170275 ], [ -110.598587824259909, 38.897086642661307 ], [ -110.577240810004199, 38.898005736439167 ], [ -110.554238789060307, 38.905017904719877 ], [ -110.536118773645043, 38.90485795173791 ], [ -110.518311768563038, 38.914726070009095 ], [ -110.505471755683587, 38.913807082667596 ], [ -110.502434757210722, 38.915947097625846 ], [ -110.501007766133938, 38.920616121105844 ], [ -110.49578158620568, 38.927387120965271 ], [ -110.489441345820993, 38.931698095707418 ], [ -110.486763255319332, 38.936718094519748 ], [ -110.483650137332987, 38.938106076271886 ], [ -110.47722587950048, 38.936806025546026 ], [ -110.46594943660773, 38.937526944924414 ], [ -110.463920344888948, 38.935107926659221 ], [ -110.465530391667613, 38.931346932212705 ], [ -110.464011320883401, 38.929217918885058 ], [ -110.456626017478627, 38.927996869325661 ], [ -110.451529793127406, 38.924647835209299 ], [ -110.435370100341387, 38.919467741067237 ], [ -110.431607946618243, 38.919665719333778 ], [ -110.422689607885516, 38.923606659863722 ], [ -110.416867377730597, 38.92477762152771 ], [ -110.390308249900144, 38.921405475408662 ], [ -110.376216678429259, 38.922946383875271 ], [ -110.368022366171573, 38.925616316759921 ], [ -110.334375162155226, 38.94072596132326 ], [ -110.310029346503484, 38.953066633000589 ], [ -110.23249699695883, 38.981423480815643 ], [ -110.193571110501878, 38.989673972651801 ], [ -110.181790877616322, 38.9952927551724 ], [ -110.156346182263874, 38.995479511153142 ], [ -110.144771845820614, 38.994175428572298 ], [ -110.125629264539043, 38.989784341194841 ], [ -110.111544867777184, 38.98909322606535 ], [ -110.085284071342272, 38.981804146891349 ], [ -110.077623806281508, 38.975494220149614 ], [ -110.047692897384678, 38.962192270037342 ], [ -110.027077269076642, 38.948444429451001 ], [ -110.011238816502441, 38.940033511359914 ], [ -109.996665521932456, 38.933853566525237 ], [ -109.970062500104433, 38.926223640633388 ], [ -109.949134487539069, 38.923454621726961 ], [ -109.927360476504234, 38.922302559388619 ], [ -109.845664509299212, 38.935004855297649 ], [ -109.826385539882722, 38.941222589975808 ], [ -109.816314541362431, 38.94258450418809 ], [ -109.795532544125592, 38.945483322795738 ], [ -109.720062837129845, 38.961592401850609 ], [ -109.715431858715604, 38.960822542092963 ], [ -109.70386586536938, 38.954132023472361 ], [ -109.694541891360373, 38.950973343931025 ], [ -109.677261980667581, 38.949573811665118 ], [ -109.629693176390887, 38.942095170965736 ], [ -109.53771363590775, 38.941627431791069 ], [ -109.433892098617136, 38.931831195669787 ], [ -109.420372979868191, 38.933342731574129 ], [ -109.406974872999712, 38.938111247741745 ], [ -109.37562562590027, 38.964243470876575 ], [ -109.345527281881331, 38.981433805523032 ], [ -109.333015118332398, 38.991886399661738 ], [ -109.315131937600526, 39.004106124774609 ], [ -109.307639950403981, 39.010698244074447 ], [ -109.283119089887791, 39.037557391393641 ], [ -109.18796492797091, 39.110904599005259 ], [ -109.167784769211778, 39.125015020705447 ], [ -109.158514728814296, 39.135164653066809 ], [ -109.140448696429416, 39.16229475609024 ], [ -109.113776391618188, 39.188240980292619 ], [ -109.108214279113412, 39.189659944525616 ], [ -109.081983689810514, 39.190781937323194 ], [ -109.062703274471588, 39.195320845328354 ], [ -109.051275001003646, 39.19426488494237 ], [ -109.034092572762376, 39.188493032464166 ], [ -109.007327963859765, 39.19319996044571 ], [ -108.990260557761857, 39.201622756122134 ], [ -108.981632348321867, 39.207802598624831 ], [ -108.967937000878365, 39.211311469615971 ], [ -108.957850755581063, 39.220211262383351 ], [ -108.946856471042338, 39.221630188812718 ], [ -108.909990514878956, 39.22996088843918 ], [ -108.905099384250065, 39.229178881279552 ], [ -108.877823645235353, 39.217719951187483 ], [ -108.866440338886477, 39.214660948683587 ], [ -108.864304278541198, 39.211619986521626 ], [ -108.825187207000596, 39.180382263463152 ], [ -108.821464106490396, 39.178600269289234 ], [ -108.812796875166043, 39.177910232182008 ], [ -108.80217659061438, 39.176140199276681 ], [ -108.791166291807571, 39.168411245009928 ], [ -108.782553059569366, 39.16450124893155 ], [ -108.737225894176362, 39.155197160102759 ], [ -108.731144753832609, 39.153332173228655 ], [ -108.68724372082211, 39.130402381805048 ], [ -108.675479435961137, 39.120751479138207 ], [ -108.662013109891177, 39.112976549240976 ], [ -108.658885032908486, 39.110382574990837 ], [ -108.653833911442064, 39.109142580522317 ], [ -108.643816676031477, 39.11190452806585 ], [ -108.63487446534252, 39.113991486081005 ], [ -108.588914361563141, 39.113239409657417 ], [ -108.574052005177734, 39.114731364632462 ], [ -108.565246791559559, 39.114491351271319 ], [ -108.557701611129389, 39.115822321883634 ], [ -108.543640268248467, 39.115246302918429 ], [ -108.53946715877629, 39.111500338702456 ], [ -108.534607028941281, 39.10625539038314 ], [ -108.531516950224486, 39.10482840108795 ], [ -108.505568321807473, 39.10858230976249 ], [ -108.48406872594532, 39.104679337893323 ], [ -108.47218939212361, 39.10485533079472 ], [ -108.455327908465705, 39.101990355891786 ], [ -108.447140682002285, 39.103821331813656 ], [ -108.440678507489253, 39.106754296195753 ], [ -108.428242158319946, 39.107864278695914 ], [ -108.420246937196907, 39.109772254185174 ], [ -108.374789677472762, 39.120312120265268 ], [ -108.367297462429761, 39.119980121300699 ], [ -108.352938039902227, 39.11668015251928 ], [ -108.337907616913796, 39.118950122427776 ], [ -108.329660375629004, 39.117809132054191 ], [ -108.324350232080661, 39.120251103642012 ], [ -108.322236188516683, 39.124783053608496 ], [ -108.324701279036546, 39.129970997899207 ], [ -108.320810191648121, 39.136329927518645 ], [ -108.316431080698933, 39.140121885048217 ], [ -108.314340048324752, 39.147239807156268 ], [ -108.303605760009873, 39.152061752199572 ], [ -108.298783682476696, 39.167232586930268 ], [ -108.294030569573408, 39.1728815249731 ], [ -108.285920358251332, 39.177779470736674 ], [ -108.281067241889758, 39.183120412446307 ], [ -108.28065523328651, 39.183879404214544 ], [ -108.281388286132511, 39.191630320846414 ], [ -108.279496246417054, 39.195029284032515 ], [ -108.276444159088314, 39.194881285289171 ], [ -108.266471854509604, 39.189940337213343 ], [ -108.262458748331809, 39.191871316039297 ], [ -108.262428757853357, 39.194301289996282 ], [ -108.266693897113612, 39.198501245398631 ], [ -108.266708904442453, 39.200130227924241 ], [ -108.261855793070268, 39.206359160742018 ], [ -108.257766685435357, 39.208339139254676 ], [ -108.255996646473164, 39.210959111109766 ], [ -108.255493686580593, 39.223539976508853 ], [ -108.259048804104623, 39.227488934311694 ], [ -108.271149159696961, 39.230848898399039 ], [ -108.272034195283084, 39.233389871107335 ], [ -108.266472059905496, 39.238398817378645 ], [ -108.25947585861816, 39.23737982840764 ], [ -108.255096741781372, 39.238897812240985 ], [ -108.25639382606667, 39.249960693851378 ], [ -108.259048912475194, 39.254450661849518 ], [ -108.257812894513108, 39.260778617366206 ], [ -108.247032588331052, 39.271948526180026 ], [ -108.232002052291392, 39.281599396831517 ], [ -108.226591864843783, 39.286688341475028 ], [ -108.222822739963561, 39.291998292462928 ], [ -108.209341332853256, 39.322149056928666 ], [ -108.19572286872031, 39.334126942751951 ], [ -108.191953777806972, 39.348187851604784 ], [ -108.182645456928867, 39.354268792579958 ], [ -108.171979077772605, 39.357778746038782 ], [ -108.170240023200492, 39.360288728544447 ], [ -108.170171042888711, 39.366265697345462 ], [ -108.168308988173223, 39.369878674297034 ], [ -108.159863697654316, 39.374749630624905 ], [ -108.146420225961734, 39.379826577315491 ], [ -108.091547354746396, 39.409879357824558 ], [ -108.05211713822797, 39.452489188227794 ], [ -108.032585516216699, 39.467587144507348 ], [ -108.017235002905494, 39.474408128749651 ], [ -107.973623452817662, 39.478497374056964 ], [ -107.933728140404355, 39.50035973328584 ], [ -107.917545535410568, 39.497827893700553 ], [ -107.882617343071189, 39.506388193432159 ], [ -107.875445120978, 39.510038243626383 ], [ -107.852625371223482, 39.517130438242738 ], [ -107.835984804075338, 39.520208596650797 ], [ -107.805420683866544, 39.51917891917433 ], [ -107.790947176766437, 39.520671065731577 ], [ -107.777876750305552, 39.52441719394303 ], [ -107.769698478964528, 39.526351276781391 ], [ -107.756315980620528, 39.525420421044402 ], [ -107.750608781921798, 39.52606148093767 ], [ -107.736036418622334, 39.532180485485412 ], [ -107.728178165923282, 39.531341493214612 ], [ -107.681819776562918, 39.534339531722317 ], [ -107.662929326392941, 39.544890545364844 ], [ -107.653926043074279, 39.544639554684395 ], [ -107.642374672366785, 39.543769566644258 ], [ -107.632243366852819, 39.544601576996037 ], [ -107.561997308058338, 39.556708659718396 ], [ -107.555367137462355, 39.560050670518997 ], [ -107.547836975951043, 39.566710686187157 ], [ -107.539459740065382, 39.569331699857031 ], [ -107.531905508762776, 39.570109710794753 ], [ -107.526328326707386, 39.569701717768453 ], [ -107.516730976406294, 39.565700725295628 ], [ -107.492361507871891, 39.565581802493924 ], [ -107.478438653797028, 39.572219907413121 ], [ -107.469244715040574, 39.573451971958889 ], [ -107.456991751217927, 39.570511051778347 ], [ -107.447958840688074, 39.574982119390654 ], [ -107.439520885945797, 39.575192177284606 ], [ -107.428763905238412, 39.571072245773891 ], [ -107.423681893337189, 39.566540275188011 ], [ -107.409430948484825, 39.563931370130497 ], [ -107.398665958785173, 39.557701437444379 ], [ -107.396383969676407, 39.557461452951678 ], [ -107.386085051448461, 39.56085252763804 ], [ -107.375602106900942, 39.560661599767677 ], [ -107.369788144849068, 39.561642640839246 ], [ -107.340019289855476, 39.559342844292317 ], [ -107.327445302729046, 39.549130923099959 ], [ -107.324569316153827, 39.548592942684046 ], [ -107.317565372796338, 39.552033994017719 ], [ -107.312415436467845, 39.55938103517061 ], [ -107.306686475758724, 39.561372076206283 ], [ -107.300658510695726, 39.562223118436805 ], [ -107.293319544349828, 39.56127316850349 ], [ -107.286979579052712, 39.561811212661361 ], [ -107.28101360491128, 39.560594253154321 ], [ -107.27509265353001, 39.565713297070921 ], [ -107.271842672843945, 39.566651320013683 ], [ -107.266914685912639, 39.563291352148084 ], [ -107.258689724963673, 39.562623408621207 ], [ -107.243339553070058, 39.557923506856461 ], [ -107.237281403629908, 39.564344549953127 ], [ -107.224693074589908, 39.57139363934148 ], [ -107.222480026558202, 39.576661661334462 ], [ -107.218588920940988, 39.577531688982653 ], [ -107.208227632105718, 39.576841758059231 ], [ -107.194433274127547, 39.587983877460992 ], [ -107.185408031971264, 39.592431953611992 ], [ -107.179998880078486, 39.592080992049858 ], [ -107.171956670771266, 39.599833074425284 ], [ -107.158063288515663, 39.60391419354378 ], [ -107.154897207699847, 39.608381234089677 ], [ -107.146076963032456, 39.610613311835749 ], [ -107.141445838000763, 39.613924361917228 ], [ -107.127018437863626, 39.618921500198226 ], [ -107.121082279161229, 39.625254578827658 ], [ -107.116963161010631, 39.624544609878342 ], [ -107.113651068350919, 39.625586642774259 ], [ -107.105922849406682, 39.626291711348635 ], [ -107.101214725486557, 39.633944792402346 ], [ -107.079196108376351, 39.644984051132028 ], [ -107.066584749192572, 39.648223186365186 ], [ -107.062464631804005, 39.64950523263294 ], [ -107.051668320644112, 39.649493331773805 ], [ -107.024819543104485, 39.645293545257843 ], [ -107.011483159765106, 39.649093697869162 ], [ -106.999512807512119, 39.649593806824349 ], [ -106.976402011870334, 39.656703967485811 ], [ -106.954947269454948, 39.652485021820425 ], [ -106.942076824062966, 39.654236092140223 ], [ -106.91044372728345, 39.654835232439467 ], [ -106.895329203223525, 39.652226273703917 ], [ -106.88877597530356, 39.653065309164475 ], [ -106.882457756107712, 39.652066327201169 ], [ -106.869701311979867, 39.653294392669025 ], [ -106.853587751721307, 39.65213445107549 ], [ -106.839633264273985, 39.654095528385632 ], [ -106.827486836302484, 39.659886632718013 ], [ -106.822000641534331, 39.663864692266301 ], [ -106.800850893840447, 39.672215859080843 ], [ -106.781350205583948, 39.676056978267532 ], [ -106.775459994411094, 39.679937039183628 ], [ -106.768074734413688, 39.680097072625173 ], [ -106.758560395867363, 39.683168141989057 ], [ -106.744300000651762, 39.694875277530748 ], [ -106.736159867478094, 39.698976304859229 ], [ -106.727866731367882, 39.705297348696455 ], [ -106.720099608150832, 39.707246354110552 ], [ -106.713232498722519, 39.710805372811329 ], [ -106.707877414925633, 39.711137367175297 ], [ -106.695982228938092, 39.711095348446698 ], [ -106.691809163776355, 39.708097320005841 ], [ -106.686484079657816, 39.70082626016508 ], [ -106.678731956397456, 39.700216246468806 ], [ -106.671483839981775, 39.697156217267732 ], [ -106.669988816064773, 39.697095215209522 ], [ -106.664312722821663, 39.692136176862974 ], [ -106.659337637615593, 39.683637118493884 ], [ -106.652257521360937, 39.682348105835878 ], [ -106.648794463261495, 39.680406092009747 ], [ -106.641279323945412, 39.66351399062205 ], [ -106.630926142316824, 39.656327951214166 ], [ -106.628621102549815, 39.655636947939051 ], [ -106.621785988485811, 39.656754955074732 ], [ -106.61041779264329, 39.654446945987118 ], [ -106.602368656841634, 39.654904950018675 ], [ -106.58768139501548, 39.648846928801987 ], [ -106.585041349489444, 39.648693929306077 ], [ -106.579747251228767, 39.645264918497233 ], [ -106.574437155835099, 39.643536915041061 ], [ -106.556667847595477, 39.643025923953161 ], [ -106.545970648815953, 39.638294917448171 ], [ -106.536090482934952, 39.640324929878922 ], [ -106.526447313545688, 39.639836935531619 ], [ -106.513995075338059, 39.633835933917666 ], [ -106.497179759760897, 39.628666937485818 ], [ -106.492319661670791, 39.625504931424821 ], [ -106.485285528211961, 39.623196926038368 ], [ -106.469965248418973, 39.621125918652872 ], [ -106.460039058226556, 39.617535913343659 ], [ -106.456865977392198, 39.611195909503465 ], [ -106.447999808915682, 39.608444907373524 ], [ -106.442491734306074, 39.614537908009297 ], [ -106.427774497370265, 39.621105904249426 ], [ -106.412004264029676, 39.633454893906766 ], [ -106.398645056541426, 39.641403880892319 ], [ -106.389633910581054, 39.645245871061576 ], [ -106.384003810812501, 39.645474866301761 ], [ -106.362457407950004, 39.641156854762592 ], [ -106.327476803355069, 39.647045817350403 ], [ -106.31067649755488, 39.646176805357683 ], [ -106.300346291012303, 39.641114809962204 ], [ -106.288512044474245, 39.63295482438965 ], [ -106.278105837080147, 39.628186832937217 ], [ -106.278669794758116, 39.615246872066237 ], [ -106.274511678640721, 39.605194902181509 ], [ -106.269590561634232, 39.59835592384411 ], [ -106.264158450793104, 39.595333934403378 ], [ -106.251890225784067, 39.594776938515082 ], [ -106.244916995571856, 39.591336964796469 ], [ -106.244374967070073, 39.588764975132094 ], [ -106.248198052222207, 39.577726004872964 ], [ -106.234304533098594, 39.563405086450558 ], [ -106.231946439746253, 39.559217105989994 ], [ -106.218960969247107, 39.546705175977536 ], [ -106.214153785690698, 39.538335213505498 ], [ -106.214977790634833, 39.53131223486546 ], [ -106.215466792171583, 39.526746248891079 ], [ -106.212688686875026, 39.521608271086869 ], [ -106.209682579001438, 39.517797289193815 ], [ -106.204853416081178, 39.514875307665214 ], [ -106.20155029524841, 39.509305331530882 ], [ -106.19799417509158, 39.506635346427274 ], [ -106.189242898228343, 39.506986361117448 ], [ -106.182658687052168, 39.506048375853027 ], [ -106.164973117161679, 39.501237421632261 ], [ -106.1556648255429, 39.503156432614595 ], [ -106.14679154454808, 39.503408447700174 ], [ -106.14168738603766, 39.50646744845443 ], [ -106.145250507416648, 39.51313542367518 ], [ -106.146295548335814, 39.519197405005954 ], [ -106.143747470525568, 39.522725400179887 ], [ -106.138544305662236, 39.525617402397828 ], [ -106.137537275425913, 39.527955398063717 ], [ -106.142588446433791, 39.534437370418182 ], [ -106.143473479721436, 39.53828635809279 ], [ -106.139101341879567, 39.543138353909939 ], [ -106.138567328684616, 39.547365343603381 ], [ -106.135157221231282, 39.552587336843501 ], [ -106.130304064725209, 39.557676333871946 ], [ -106.129267034767821, 39.563527320753508 ], [ -106.115266570080607, 39.571126332905116 ], [ -106.11287049040584, 39.573884331494526 ], [ -106.108796355336523, 39.584596314417794 ], [ -106.096184925317658, 39.592946324802767 ], [ -106.089042678242038, 39.600316325254084 ], [ -106.08309947145132, 39.604307331125078 ], [ -106.080055363657479, 39.60868632900128 ], [ -106.072716104897083, 39.613878336529204 ], [ -106.072845101329932, 39.624257313327142 ], [ -106.066977891100223, 39.628576319857416 ], [ -106.052558374723233, 39.634385347394819 ], [ -106.046378148854899, 39.638906355522984 ], [ -106.034803727051369, 39.644365377649763 ], [ -106.027776473788819, 39.645387395821032 ], [ -106.013035928986127, 39.652517425577997 ], [ -106.000592477128663, 39.653905459611082 ], [ -105.99304616935207, 39.657316468086279 ], [ -105.980381649396378, 39.663625482727362 ], [ -105.973621356563669, 39.671678484929771 ], [ -105.97024121634027, 39.673555489317046 ], [ -105.961344860181754, 39.674245506717412 ], [ -105.954196566620695, 39.676977518322992 ], [ -105.942584103475028, 39.677095542466262 ], [ -105.934053755299004, 39.679387558210941 ], [ -105.924936390696828, 39.679605577336424 ], [ -105.903962552884011, 39.679715621742609 ], [ -105.898377320461876, 39.682065632383072 ], [ -105.89144204201402, 39.682355647156967 ], [ -105.887771889433438, 39.683774654491259 ], [ -105.876487392573765, 39.694486676047433 ], [ -105.86294481706264, 39.701696706163972 ], [ -105.84346603146075, 39.701967752340522 ], [ -105.822866241841027, 39.693647798516203 ], [ -105.810223742909784, 39.691747826468898 ], [ -105.79317903594486, 39.695875867711223 ], [ -105.786937792074355, 39.694455881079094 ], [ -105.766550960274259, 39.69638692964336 ], [ -105.747492206606736, 39.696824981381255 ], [ -105.729264590089926, 39.694277064062476 ], [ -105.726312484773601, 39.694765078244018 ], [ -105.721658306671529, 39.697417101675583 ], [ -105.709129849119563, 39.700827161093109 ], [ -105.698235412526131, 39.709227212706431 ], [ -105.695664226762787, 39.723147226427827 ], [ -105.692444054661891, 39.731558240833074 ], [ -105.684409694581817, 39.742098272936857 ], [ -105.678916474547393, 39.745398293668295 ], [ -105.661978841134058, 39.752066350911946 ], [ -105.655676639109373, 39.758547357604989 ], [ -105.649633431473703, 39.760947372739928 ], [ -105.624127539171965, 39.766608444741607 ], [ -105.598156597474514, 39.76400654267831 ], [ -105.589947304754062, 39.764456569400423 ], [ -105.57976093493096, 39.763457608476301 ], [ -105.563556321382464, 39.756148695497373 ], [ -105.556460061208767, 39.755026725938443 ], [ -105.545938682073668, 39.747809792260291 ], [ -105.520547841471569, 39.740878907722397 ], [ -105.511872523426078, 39.741518939395263 ], [ -105.501527166079228, 39.74024898349947 ], [ -105.494186944759832, 39.741827967334885 ], [ -105.487312727087328, 39.745058940779799 ], [ -105.481666589588315, 39.743925931321705 ], [ -105.46776520511628, 39.745367894213246 ], [ -105.464752108402266, 39.746935882055254 ], [ -105.461082012935265, 39.746756874086728 ], [ -105.452841827829531, 39.743578865311889 ], [ -105.447829681829518, 39.7447958496412 ], [ -105.443785584542965, 39.743826843406232 ], [ -105.438857432043122, 39.745886825152205 ], [ -105.434340333128745, 39.743857821309 ], [ -105.426345258850631, 39.730456846874674 ], [ -105.421340170422013, 39.726046849809471 ], [ -105.398344647747209, 39.71679982713021 ], [ -105.392660509609513, 39.715338818828101 ], [ -105.385725317623113, 39.715887800973277 ], [ -105.379194150854772, 39.714987788864356 ], [ -105.3724649612127, 39.715857770417585 ], [ -105.365796810980399, 39.712866764964097 ], [ -105.354184505286796, 39.712119740635714 ], [ -105.339863206112625, 39.70298673811191 ], [ -105.333859057085732, 39.701567729030423 ], [ -105.329158923417708, 39.702246715932219 ], [ -105.314357417313275, 39.713576643796117 ], [ -105.311244326630089, 39.714297634185705 ], [ -105.293948898672355, 39.710036608606146 ], [ -105.283045615094281, 39.708788587670888 ], [ -105.274516411531138, 39.705737578319166 ], [ -105.262087090506455, 39.703947555749039 ], [ -105.256051920508924, 39.704668539409049 ], [ -105.249536748822322, 39.70376852759906 ], [ -105.241060515261509, 39.701437517464051 ], [ -105.235910386922541, 39.698428517299298 ], [ -105.228090154034504, 39.698248501614927 ], [ -105.210030636878969, 39.695357475331555 ], [ -105.205155461062844, 39.698855451286093 ], [ -105.204460436330606, 39.699316447971661 ], [ -105.194596039249134, 39.711413376841158 ], [ -105.188545794768416, 39.719027330758671 ], [ -105.179733482198998, 39.724970283860493 ], [ -105.169952141201236, 39.730925233004243 ], [ -105.153853553824362, 39.744120129758095 ], [ -105.145361241643684, 39.754702037489707 ], [ -105.143027153865418, 39.761586971220126 ], [ -105.143011115520153, 39.775995846367259 ], [ -105.140837042955212, 39.778402818883109 ], [ -105.137639942902695, 39.779355800825563 ], [ -105.125592561668356, 39.783834724471056 ], [ -105.109586070198759, 39.784185671711988 ], [ -105.090695492480961, 39.783857616096903 ], [ -105.081326194729812, 39.786359564022185 ], [ -105.074138973781018, 39.786386541338153 ], [ -105.067660787252592, 39.783635546777653 ], [ -105.054118372256028, 39.783567505479532 ], [ -105.053035337776421, 39.783822499714582 ], [ -105.048038178533815, 39.784990473133483 ], [ -105.043338041809548, 39.78351747257873 ], [ -105.025034476800656, 39.784105410213414 ], [ -105.002015774002786, 39.783418345653018 ], [ -104.989503310995488, 39.780004401144502 ], [ -104.979042895276024, 39.779905427024907 ], [ -104.940490360196307, 39.77988951888068 ], [ -104.931472001368448, 39.77982154112852 ], [ -104.923071676963303, 39.778264579715021 ], [ -104.903363892490816, 39.778138629000637 ], [ -104.895612584539677, 39.777990649667771 ], [ -104.846949672116679, 39.773938824277188 ], [ -104.827501905646486, 39.772630892446877 ], [ -104.810007221319012, 39.770719965837415 ], [ -104.801194881034547, 39.769141012783059 ], [ -104.792054538288738, 39.766089083955649 ], [ -104.753448095471839, 39.752806407029908 ], [ -104.731818478742198, 39.740057404358808 ], [ -104.714582892738576, 39.740027289516775 ], [ -104.685978918534929, 39.740080098351413 ], [ -104.655635885527104, 39.740056895995821 ], [ -104.637096281070967, 39.738027780042728 ], [ -104.630405031703702, 39.739625729214168 ], [ -104.597436908512293, 39.739595508957876 ], [ -104.433286255341258, 39.737384751107406 ], [ -104.411282793836548, 39.73796438550022 ], [ -104.376995171567486, 39.73268384385176 ], [ -104.335887291136899, 39.734842158072134 ], [ -104.317217920748604, 39.733941857692841 ], [ -104.292299471704737, 39.729882481373167 ], [ -104.276102147203801, 39.729291223262521 ], [ -104.222100784442262, 39.715881776494626 ], [ -104.195931887325045, 39.706200729770195 ], [ -104.157899943311293, 39.697662615139784 ], [ -104.123796033349421, 39.68679155664924 ], [ -104.088739252228962, 39.666012621065882 ], [ -104.0507076600814, 39.629601886087897 ], [ -104.038172879261907, 39.610822067184252 ], [ -104.032405092622568, 39.593701259800113 ], [ -104.013545399029326, 39.566003544913983 ], [ -103.969768425819893, 39.502253554421841 ], [ -103.944986626629486, 39.475753051500391 ], [ -103.922463747135282, 39.434795685415857 ], [ -103.910210349930225, 39.420364925067013 ], [ -103.888458555589963, 39.379376507559513 ], [ -103.877693200587132, 39.362126750460909 ], [ -103.873108070312654, 39.35740782308369 ], [ -103.851111531476946, 39.346006041942083 ], [ -103.844718367967701, 39.341176119705203 ], [ -103.824636781977176, 39.311277505346979 ], [ -103.813246498916186, 39.301015648292619 ], [ -103.784459856690958, 39.285238895670979 ], [ -103.762372400543825, 39.278357027551415 ], [ -103.737354795680616, 39.272536131096615 ], [ -103.714916189100606, 39.272322160665745 ], [ -103.708179007279043, 39.272368168654189 ], [ -103.686312417222553, 39.272658193711734 ], [ -103.677233165572559, 39.269118228947342 ], [ -103.668771929417318, 39.263808273324813 ], [ -103.661333725498153, 39.26042830216668 ], [ -103.647111347590894, 39.262438303218275 ], [ -103.617066544128903, 39.26667631061293 ], [ -103.553625842319647, 39.263647389544424 ], [ -103.519384912547707, 39.268347412292016 ], [ -103.498868343810472, 39.273669432274836 ], [ -103.473004634097094, 39.27604556791578 ], [ -103.273582205912675, 39.281967609084845 ], [ -103.155193830042251, 39.286450773971794 ], [ -103.076304384846921, 39.287080656524012 ], [ -103.044451780137678, 39.283763059278144 ], [ -102.996133764902524, 39.272540755612013 ], [ -102.931785065870201, 39.283672098749655 ], [ -102.885419850976191, 39.292591327690026 ], [ -102.874097543137012, 39.293293405283613 ], [ -102.816631961904207, 39.294441835103953 ], [ -102.671882626792765, 39.293454921303343 ], [ -102.604795504169914, 39.294424380835473 ], [ -102.474946306838675, 39.294623350064214 ], [ -102.454750592448491, 39.293086559098555 ], [ -102.428855705538766, 39.294196779709431 ], [ -102.278604496303458, 39.29416715954013 ], [ -102.264124013170274, 39.2958082640463 ], [ -102.254616747211912, 39.301247256456378 ], [ -102.24504949160071, 39.307767229883211 ], [ -102.239693330467958, 39.30994924024408 ], [ -102.145139135594391, 39.319669911201395 ], [ -102.136319845054302, 39.321458954902205 ], [ -102.065249426551645, 39.329218424701004 ], [ -102.048677847875183, 39.329618561083478 ], [ -101.886013910296839, 39.328319380202238 ], [ -101.870457475551746, 39.329349408408511 ], [ -101.750428080760059, 39.329444794577377 ], [ -101.726044351909948, 39.328251010759978 ], [ -101.707969815128195, 39.329800120914491 ], [ -101.541940862612748, 39.329591429780997 ], [ -101.391263866507131, 39.3312024528297 ], [ -101.320622185596733, 39.364382388907458 ], [ -101.314282032929171, 39.366171404653599 ], [ -101.204126336548597, 39.366264104106378 ], [ -101.058705865768616, 39.364593916822258 ], [ -101.055005777926951, 39.36464293631149 ], [ -101.051206687688278, 39.364684956425663 ], [ -101.039945418273803, 39.364495019669697 ], [ -101.030438169733998, 39.360993110520297 ], [ -100.991717978962285, 39.319534741440982 ], [ -100.968081371995837, 39.30904492772838 ], [ -100.899812185159547, 39.227236108998788 ], [ -100.880714353594826, 39.199267600823461 ], [ -100.869933955035862, 39.189356783150949 ], [ -100.857024472718635, 39.177725995754777 ], [ -100.837911614431121, 39.152278433217532 ], [ -100.820927883356973, 39.133197762057449 ], [ -100.81203149879336, 39.123588926558149 ], [ -100.808285333908273, 39.119457996742703 ], [ -100.803525135577772, 39.114968074098961 ], [ -100.796001893829711, 39.112309128743888 ], [ -100.50039415338469, 39.111667732136318 ], [ -100.4879958770792, 39.111106675176792 ], [ -100.478993660341061, 39.109397649071781 ], [ -100.443439805210829, 39.102558549219786 ], [ -100.413303087132192, 39.097118463009288 ], [ -100.336991440362254, 39.097438076318532 ], [ -100.324754164341769, 39.096446027618299 ], [ -100.173290258386174, 39.025768637107852 ], [ -100.165507981427766, 39.023517670088879 ], [ -100.148974440926409, 39.023578677613379 ], [ -99.931049480902388, 39.022869009054865 ], [ -99.89035321347896, 39.014538240129525 ], [ -99.871644636430929, 39.01065934325883 ], [ -99.802108532067308, 38.998639698254308 ], [ -99.742246746108705, 38.984079162765603 ], [ -99.72712426894924, 38.981210288967475 ], [ -99.696911316132272, 38.979700465431797 ], [ -99.689846094228102, 38.978498519522347 ], [ -99.594865160799387, 38.95031634117872 ], [ -99.526175023583363, 38.949790622209974 ], [ -99.424166643243524, 38.922100130295455 ], [ -99.3806021163129, 38.92124122099132 ], [ -99.35463022609143, 38.912292331462346 ], [ -99.317877962816951, 38.898422481387087 ], [ -99.274572469112513, 38.879360649937162 ], [ -99.267499220259182, 38.87835366369292 ], [ -99.250355612395879, 38.878471683317152 ], [ -99.194773323551487, 38.880271678290129 ], [ -99.126296515065363, 38.87794169118461 ], [ -99.081868749788001, 38.862670738287484 ], [ -99.039341005521322, 38.863906729370505 ], [ -99.000345412536689, 38.8635027253153 ], [ -98.854731618972011, 38.864212451014239 ], [ -98.839906929381897, 38.863952423181317 ], [ -98.807602468129659, 38.857292358335442 ], [ -98.781196237207567, 38.857460306516437 ], [ -98.61380702894256, 38.856792038882709 ], [ -98.564693585604914, 38.857459966061526 ], [ -98.533000032754359, 38.855219913735731 ], [ -98.500321466334569, 38.849341851582658 ], [ -98.485023873705856, 38.848849706453045 ], [ -98.467216176078821, 38.849120538932532 ], [ -98.427068614370825, 38.848471160926955 ], [ -98.250311706484155, 38.84949949037432 ], [ -98.22509584092866, 38.848809259893066 ], [ -98.1710629735297, 38.849338749630405 ], [ -98.158870553245023, 38.849277635951424 ], [ -98.144801033878338, 38.855506454664791 ], [ -98.140512881501706, 38.856376407664534 ], [ -98.117487084984461, 38.857108186670999 ], [ -98.110101823595897, 38.858516106573234 ], [ -98.104196608972103, 38.860786033574627 ], [ -98.094583246532764, 38.867235893297426 ], [ -98.070259407841576, 38.868075660045719 ], [ -98.061653099316374, 38.870947557574027 ], [ -98.051574738408775, 38.874365437302266 ], [ -98.033080103744169, 38.874666262916627 ], [ -98.015997503809146, 38.87827507640354 ], [ -97.928950277471145, 38.878518230416219 ], [ -97.896959075048784, 38.877983922595995 ], [ -97.882172510637929, 38.87927376499313 ], [ -97.862289766744794, 38.878365579687241 ], [ -97.675927230316461, 38.878012771593809 ], [ -97.657227674489732, 38.875002631731789 ], [ -97.645630317360769, 38.874563526017717 ], [ -97.622153575050064, 38.875727284233975 ], [ -97.612785277688559, 38.876284186408313 ], [ -97.612685267423473, 38.877012175498244 ], [ -97.607474108120329, 38.876692129661521 ], [ -97.602888952755194, 38.877939068383142 ], [ -97.551763103279683, 38.901601244701531 ], [ -97.52387616626406, 38.906681900668048 ], [ -97.427131814189252, 38.907970263843509 ], [ -97.420029534933533, 38.910641186116514 ], [ -97.394057452370063, 38.927020797890897 ], [ -97.388671247766354, 38.928569744654418 ], [ -97.381208982581882, 38.928893698661525 ], [ -97.372068663433893, 38.928714651171234 ], [ -97.276667305637559, 38.929728110143436 ], [ -97.254617475334726, 38.936838870739457 ], [ -97.223252434900488, 38.937933957239196 ], [ -97.213791111560795, 38.939958965458153 ], [ -97.209960980850951, 38.94076796851855 ], [ -97.207710904107628, 38.941240970235008 ], [ -97.194847469264531, 38.943468987349988 ], [ -97.147062910690352, 38.944209188043992 ], [ -97.055575725724935, 38.979288724668933 ], [ -97.033952973988377, 38.988939540038146 ], [ -97.000717904684066, 38.989527610023856 ], [ -96.9635539549827, 38.994303518857464 ], [ -96.917814789617282, 39.000788401292922 ], [ -96.87655376602207, 39.000578445712172 ], [ -96.861249388960445, 38.999437483081685 ], [ -96.852384168948831, 38.999468491301648 ], [ -96.836300780232662, 39.007097416578056 ], [ -96.825909532699541, 39.012407369851388 ], [ -96.812702225886824, 39.023210266540929 ], [ -96.805714057105888, 39.025541248357392 ], [ -96.784922549765014, 39.029749223610935 ], [ -96.774058288072382, 39.033708191551241 ], [ -96.767665137142814, 39.037622155478687 ], [ -96.750307742807337, 39.056195971062493 ], [ -96.742105533357375, 39.059716961252526 ], [ -96.686822089056363, 39.065138091843828 ], [ -96.635199736270962, 39.067179245215222 ], [ -96.611670111574853, 39.065348347292563 ], [ -96.584097388474675, 39.066118432627881 ], [ -96.551640521645098, 39.062647586321866 ], [ -96.538731180765936, 39.062437633446045 ], [ -96.521122717806875, 39.06267769122298 ], [ -96.501102206176967, 39.066500712089521 ], [ -96.48007479242753, 39.069078652376824 ], [ -96.445788081955627, 39.064028664701503 ], [ -96.390885988795276, 39.065157568650037 ], [ -96.28891694611859, 39.065027418122042 ], [ -96.193311087117991, 39.065699677215761 ], [ -96.167233521835911, 39.058317929889981 ], [ -95.94659383744083, 39.058238959484115 ], [ -95.849065117388847, 39.057621057740626 ], [ -95.830204580179924, 39.051769174041411 ], [ -95.816776206172463, 39.050308210433407 ], [ -95.816669202040785, 39.049580222844384 ], [ -95.801875797126385, 39.052608184519826 ], [ -95.780146195559396, 39.053364190824567 ], [ -95.777125111738258, 39.053211196033068 ], [ -95.762094695086532, 39.053379206395789 ], [ -95.752397425717945, 39.054859190297122 ], [ -95.743471164711067, 39.059879105459835 ], [ -95.731873819114881, 39.066729989303219 ], [ -95.724839611112316, 39.067370976909352 ], [ -95.715790343334874, 39.068191961374261 ], [ -95.706330061477701, 39.070659920695348 ], [ -95.682792374629315, 39.064301010091889 ], [ -95.676437194793309, 39.059299080991721 ], [ -95.668578969047388, 39.056030124214438 ], [ -95.669715010624799, 39.050812200400742 ], [ -95.672012088353839, 39.044022300758229 ], [ -95.667861974529174, 39.039520361897921 ], [ -95.650885488876455, 39.034969407952957 ], [ -95.637145090477844, 39.034679396051153 ], [ -95.626363779509717, 39.033749395920957 ], [ -95.62338070773481, 39.027180479362123 ], [ -95.614019428907852, 39.030552422819191 ], [ -95.585019587855442, 39.030842382425327 ], [ -95.568234104262089, 39.029919372094959 ], [ -95.527567967076138, 39.018749439212051 ], [ -95.500254183283545, 39.018028403131304 ], [ -95.491778046614016, 39.017719432940993 ], [ -95.473153762170512, 39.013519532976083 ], [ -95.432184155778444, 39.00199977222934 ], [ -95.413239860729519, 39.000309846584756 ], [ -95.372956217119466, 39.000000972976963 ], [ -95.349288857066114, 38.99703711277327 ], [ -95.332404588693606, 38.99634318106385 ], [ -95.31719133400702, 38.998052188907316 ], [ -95.287077852370913, 38.99731229933775 ], [ -95.25787940288518, 38.989968565194083 ], [ -95.233220982195988, 38.992890668948185 ], [ -95.223935823647793, 38.993882727164241 ], [ -95.202123455826552, 38.993672923849424 ], [ -95.186750196069042, 38.996709989997328 ], [ -95.166485803745758, 39.006273038581504 ], [ -95.14947146987123, 39.011763139109433 ], [ -95.13623416633979, 39.020601174237271 ], [ -95.129025017643826, 39.023481210903711 ], [ -95.091418170390639, 39.044851338370322 ], [ -95.07019272070923, 39.053122443208842 ], [ -95.056108433430552, 39.057272524772031 ], [ -95.038698046353076, 39.065222597189589 ], [ -95.030251873585271, 39.067541646928014 ], [ -95.011887532191878, 39.069273787225683 ], [ -94.952834894280642, 39.081851087184432 ], [ -94.930663267186304, 39.0844722101127 ], [ -94.918859910778153, 39.088943239568067 ], [ -94.909544650809536, 39.09003728970989 ], [ -94.908643625983132, 39.090106294968074 ], [ -94.895025230050152, 39.094184338205118 ], [ -94.881657855872135, 39.096603397869096 ], [ -94.847797902929514, 39.105872503982916 ], [ -94.81054291659602, 39.106963729447472 ], [ -94.779170096656728, 39.104644963233511 ], [ -94.738289989427258, 39.105854144459812 ], [ -94.704743031311736, 39.105686179558944 ], [ -94.700073897306027, 39.106095178135952 ], [ -94.679122301778122, 39.104145227111246 ], [ -94.667738983874386, 39.099526306182653 ], [ -94.649252461480714, 39.096085375390039 ], [ -94.641837254480919, 39.093174425917105 ], [ -94.631597964272956, 39.091904455154918 ], [ -94.626027802897852, 39.093353439325746 ], [ -94.622594698040302, 39.0975043811329 ], [ -94.622007675958315, 39.100723333883302 ], [ -94.620855630708135, 39.108185224102776 ], [ -94.616033482218114, 39.11462413293745 ], [ -94.607290241758136, 39.108994225135142 ], [ -94.602826116719143, 39.107502251701924 ], [ -94.59453288089702, 39.106842269596719 ] ], [ [ -88.508349554586943, 39.149740918830069 ], [ -88.50974560107764, 39.148512954940571 ], [ -88.37931689886021, 39.169168272421629 ], [ -88.366194529555273, 39.171102213394782 ], [ -88.359221336371206, 39.173780148785468 ], [ -88.342946890135252, 39.184628905257874 ], [ -88.312375019682207, 39.196050627836264 ], [ -88.254825336710923, 39.214269170743243 ], [ -88.207192913257842, 39.233990576287276 ], [ -88.199029667693978, 39.238087457647786 ], [ -88.177682039923852, 39.25217809240764 ], [ -88.153595346305906, 39.255317947196751 ], [ -88.142792035341998, 39.256808882889764 ], [ -88.127158602739243, 39.26134876309024 ], [ -88.11270024671748, 39.271678586078082 ], [ -88.108100120982456, 39.273356550505859 ], [ -88.091284626618616, 39.274836475604623 ], [ -88.072149102237432, 39.282077336896741 ], [ -88.052968532182874, 39.283206265517222 ], [ -88.047772391645367, 39.285586227572558 ], [ -88.010799433219177, 39.310201925711382 ], [ -88.000011142348285, 39.316114860041289 ], [ -87.984713847097126, 39.320715839985752 ], [ -87.968806536374828, 39.325525814823585 ], [ -87.957209333185276, 39.334047751392468 ], [ -87.936319921813592, 39.342336687247517 ], [ -87.87051454972476, 39.362276489943547 ], [ -87.835510807196584, 39.380205269211288 ], [ -87.823783549019822, 39.384935203033422 ], [ -87.763319171390805, 39.40172691819194 ], [ -87.746381762361622, 39.402665899488099 ], [ -87.736768499190589, 39.404336908353081 ], [ -87.71085878673243, 39.418645786567303 ], [ -87.693264304000238, 39.421624798689479 ], [ -87.681979994372099, 39.423196810845084 ], [ -87.666080559312576, 39.421986879331442 ], [ -87.631937624243051, 39.421754991011198 ], [ -87.614344140323098, 39.425576986046295 ], [ -87.582467266673859, 39.42595507930502 ], [ -87.567925866002639, 39.429346068729913 ], [ -87.560341659124688, 39.42786611653905 ], [ -87.554886510382602, 39.42676715167746 ], [ -87.548241327577358, 39.427767155578053 ], [ -87.536919011850927, 39.43512106653273 ], [ -87.531348857937431, 39.436651057310996 ], [ -87.517440474118729, 39.439596048317242 ], [ -87.512000323228847, 39.441622029494312 ], [ -87.506637175910228, 39.441797042103111 ], [ -87.473623469126608, 39.448717247425314 ], [ -87.448567975939852, 39.448557540442756 ], [ -87.441945842714844, 39.446184654626798 ], [ -87.427907545585384, 39.434698993324936 ], [ -87.420934398638408, 39.431487120410466 ], [ -87.414372264002239, 39.43079320388641 ], [ -87.391109793713397, 39.431517451936152 ], [ -87.333239615674913, 39.43069410669127 ], [ -87.323634420089149, 39.430607214490962 ], [ -87.301950976542372, 39.430118461197566 ], [ -87.296533875208368, 39.431507504794787 ], [ -87.272234459974698, 39.442287654260966 ], [ -87.25353411245743, 39.445427834146862 ], [ -87.239465873316377, 39.44566804890502 ], [ -87.209359386859859, 39.445977550923985 ], [ -87.194360190331579, 39.451108763717833 ], [ -87.126236068363283, 39.448950934153544 ], [ -87.110991835988855, 39.450252188502631 ], [ -87.073447380671098, 39.463099815169883 ], [ -87.032766817418505, 39.46964354438812 ], [ -87.014936649059692, 39.478272886309973 ], [ -86.974339979460538, 39.498681567547948 ], [ -86.95198535003469, 39.503923885409201 ], [ -86.930645714019064, 39.511423194483058 ], [ -86.88787349272215, 39.522394783082255 ], [ -86.868799950060236, 39.529266043758618 ], [ -86.851922486116024, 39.5330152653924 ], [ -86.802620179745688, 39.532146887148414 ], [ -86.789176820752559, 39.533375057895149 ], [ -86.737639289732186, 39.543656574711648 ], [ -86.710248208989768, 39.551316620328627 ], [ -86.650057853343938, 39.561829701737722 ], [ -86.643808612048744, 39.563755706183642 ], [ -86.62970207750152, 39.571575703465321 ], [ -86.56511661836926, 39.588215712110888 ], [ -86.530958329201454, 39.595425704588465 ], [ -86.517186823975592, 39.600750684337804 ], [ -86.46574019130685, 39.618332541427002 ], [ -86.446147622702611, 39.63024541435334 ], [ -86.429332120072672, 39.639805295303603 ], [ -86.400041210025705, 39.651707104498499 ], [ -86.386391782554483, 39.661163961974857 ], [ -86.375344427883434, 39.66624886811632 ], [ -86.370431268643387, 39.668124829346468 ], [ -86.326582818216934, 39.686244429189898 ], [ -86.305754108849968, 39.695640203530935 ], [ -86.280172210404075, 39.710783846727658 ], [ -86.264500667752344, 39.713015726757718 ], [ -86.261097547394158, 39.71421368853985 ], [ -86.250325138614556, 39.725508437982739 ], [ -86.242496897677213, 39.731291309258118 ], [ -86.239292797169071, 39.734266244821121 ], [ -86.238635751255345, 39.74165511223292 ], [ -86.235713646968662, 39.747460996403916 ], [ -86.231944535514373, 39.750390924951382 ], [ -86.225086369540705, 39.752328850003487 ], [ -86.206416887048107, 39.755727683586485 ], [ -86.1877923573972, 39.755841588078418 ], [ -86.175538989478383, 39.754445558961351 ], [ -86.167703761830907, 39.754098528199627 ], [ -86.165902710553652, 39.754098519296519 ], [ -86.154794387886142, 39.753587476423711 ], [ -86.145471118895429, 39.753285437666761 ] ], [ [ -78.238902910010111, 39.999354801763133 ], [ -78.244235961773654, 39.981464161729477 ], [ -78.247263928900068, 39.962734576748822 ], [ -78.246302856753928, 39.957295724867265 ], [ -78.23882556729761, 39.95241995697625 ], [ -78.230120243437128, 39.948506183940225 ], [ -78.227175089947295, 39.941095410462125 ], [ -78.233683203377396, 39.926267677335069 ], [ -78.239176202914976, 39.900484228713211 ], [ -78.244761291665398, 39.886606485793635 ], [ -78.243952231022277, 39.882025610599584 ], [ -78.253260400401061, 39.870756764830432 ], [ -78.26330050199121, 39.863318845941897 ], [ -78.275980530695392, 39.84102626313264 ], [ -78.275721473777992, 39.834026437061837 ], [ -78.271601295208043, 39.818618856538293 ], [ -78.272952243320233, 39.809029077388971 ], [ -78.269755171591584, 39.805828188869462 ], [ -78.254899913338761, 39.800709468485934 ], [ -78.213860569185627, 39.792768260676795 ], [ -78.209732366210204, 39.783880541962738 ], [ -78.204033151221495, 39.780637708179952 ], [ -78.200286986206862, 39.775197898905361 ], [ -78.200218916327444, 39.765799131333374 ], [ -78.189559497112896, 39.757231504104496 ], [ -78.18322724386131, 39.751509741205005 ], [ -78.181663132230725, 39.746790879087527 ], [ -78.182211920248832, 39.731330242026488 ], [ -78.184859874129828, 39.722492416567192 ], [ -78.18858286360252, 39.713870572567266 ], [ -78.183859620197879, 39.70768378720652 ], [ -78.169752113438392, 39.703461080048122 ], [ -78.158361729006828, 39.70152327936615 ], [ -78.149747382491782, 39.695801526432618 ], [ -78.141370087866051, 39.693131698052085 ], [ -78.131954777205507, 39.691533857876323 ], [ -78.123638485903498, 39.688642030681685 ], [ -78.102565799239642, 39.684892385167323 ], [ -78.084079125852952, 39.674253842769652 ], [ -78.069666635806072, 39.668173145604761 ], [ -78.05156098373547, 39.655276619476538 ], [ -78.050508956285086, 39.655593625841568 ], [ -78.039743560359568, 39.645773940582423 ], [ -78.02919120739594, 39.639274183675255 ], [ -78.013283660568931, 39.625915605419713 ], [ -78.003792375425689, 39.6224067708254 ], [ -77.984062025653557, 39.627044781117405 ], [ -77.968429764009073, 39.628265807439149 ], [ -77.940749400461911, 39.645515578011612 ], [ -77.923186137206429, 39.651680515252288 ], [ -77.916175022081703, 39.652565518729737 ], [ -77.848348848274625, 39.649665766668711 ], [ -77.832623550416216, 39.643844924910759 ], [ -77.81117712091698, 39.630906242296298 ], [ -77.791462751048684, 39.62263246759241 ], [ -77.785511624284808, 39.61710859662967 ], [ -77.782543552146663, 39.61260769610594 ], [ -77.779682488638429, 39.609376770129096 ], [ -77.774311385497185, 39.606316849383553 ], [ -77.75455806665407, 39.606412914015095 ], [ -77.729220712770541, 39.605447068877233 ], [ -77.715518523661061, 39.604036179035617 ], [ -77.702700326108484, 39.599798348370847 ], [ -77.694651214774069, 39.599157411438327 ], [ -77.68258906202459, 39.600057463928529 ], [ -77.669679898059343, 39.60074852559525 ], [ -77.662416786708448, 39.598806615558495 ], [ -77.631487210322177, 39.581019250351282 ], [ -77.624704051495016, 39.574397464540027 ], [ -77.610444627289439, 39.552959121640562 ], [ -77.606209440132204, 39.541309459459498 ], [ -77.606232394579465, 39.537029570987151 ], [ -77.606339380062764, 39.535522609397631 ], [ -77.601533162910954, 39.522388996362096 ], [ -77.592262868942655, 39.509358429095101 ], [ -77.581497643370454, 39.505101649145686 ], [ -77.556472166022743, 39.486792109285702 ], [ -77.545981992976849, 39.484632222618927 ], [ -77.541701922374244, 39.482580274367329 ], [ -77.514906483709268, 39.462301619498994 ], [ -77.505591333143357, 39.454092737350642 ], [ -77.502562284328278, 39.445761797104026 ], [ -77.490737172768434, 39.438002882833537 ], [ -77.488211158301183, 39.425131948704312 ], [ -77.485625141618073, 39.421751974764106 ], [ -77.477927092121021, 39.41654103349687 ], [ -77.46823703679722, 39.406043134520047 ], [ -77.461973999557244, 39.403823179003716 ], [ -77.44929392261362, 39.402602252482367 ], [ -77.440641875095736, 39.399302320319904 ], [ -77.43497284346418, 39.398021360080456 ], [ -77.424589782538206, 39.397845418310965 ], [ -77.418584747302859, 39.397883450985688 ], [ -77.409360689138921, 39.399714486340642 ], [ -77.391134570057815, 39.404269542672459 ], [ -77.381429515246481, 39.4037055984926 ], [ -77.366033423771952, 39.404502670450505 ], [ -77.352377376509637, 39.396972825531236 ], [ -77.339010310080425, 39.39564091570022 ], [ -77.308630192277633, 39.387703193137831 ], [ -77.276151076496333, 39.380901491449784 ], [ -77.25976299638414, 39.381813581839857 ], [ -77.227322928593878, 39.374153793690454 ], [ -77.218686917312297, 39.369652876102172 ], [ -77.205525866843388, 39.370583874708871 ], [ -77.19873584822281, 39.367702928864297 ], [ -77.18389679388244, 39.36474299287854 ], [ -77.1743057530269, 39.359933081615651 ], [ -77.16766072316085, 39.359315098814257 ], [ -77.166447717932044, 39.359403098677099 ], [ -77.14773264215107, 39.361085091336761 ], [ -77.139523590484913, 39.356652172642633 ], [ -77.135258561742489, 39.354524212045028 ], [ -77.082730239999634, 39.34588341115046 ], [ -77.055356004299824, 39.338224567201578 ], [ -77.042049899986296, 39.336213615207186 ], [ -77.016254593018203, 39.326623801805347 ], [ -77.003948436165871, 39.322354885984588 ], [ -76.988285257962133, 39.320524012529752 ], [ -76.962519835036275, 39.311014357681621 ], [ -76.952418700698246, 39.308924463476018 ], [ -76.919993328733028, 39.305216751989306 ], [ -76.913813240059682, 39.303373819526847 ], [ -76.906474152812578, 39.302225886014092 ], [ -76.898943115207587, 39.30415591785632 ], [ -76.884913009627297, 39.305576004450074 ], [ -76.875642888260145, 39.303294095946818 ], [ -76.862382679835989, 39.297717245596168 ], [ -76.854516587389526, 39.296275313704314 ], [ -76.825639338168514, 39.296394512037153 ], [ -76.807527198725126, 39.29738263048872 ], [ -76.796327218519167, 39.30499265991385 ], [ -76.786729171452151, 39.30729271687256 ], [ -76.775926073231417, 39.306804800244876 ], [ -76.75837794613723, 39.308105925210228 ], [ -76.753746897425955, 39.307376963212256 ], [ -76.748986824182808, 39.30592700351152 ], [ -76.744210698267935, 39.305958030476035 ], [ -76.733521420087428, 39.30623609000606 ], [ -76.711074757227962, 39.301178238767143 ] ], [ [ -89.9069592239114, 38.752378837039963 ], [ -89.876379961956175, 38.755697708249549 ], [ -89.85391002498217, 38.755918629795943 ], [ -89.823398773909005, 38.762208488289083 ], [ -89.800692823254721, 38.761716415503848 ], [ -89.763536282720779, 38.76576727169725 ], [ -89.747361631593449, 38.772077198627088 ], [ -89.742775465193347, 38.776506178742068 ], [ -89.736161225416765, 38.782487151899659 ], [ -89.73046900902041, 38.784208144954903 ], [ -89.686430306232197, 38.787507138409218 ], [ -89.672880774720269, 38.7865731456953 ], [ -89.631031142543435, 38.786058156878283 ], [ -89.623004840338268, 38.787915149505899 ], [ -89.598749982269212, 38.801942085779892 ], [ -89.565484796871615, 38.816488020203558 ], [ -89.546792188721213, 38.831467949060077 ], [ -89.533363703530611, 38.834797934528751 ], [ -89.517647091812961, 38.832775946967821 ], [ -89.512183889516649, 38.833416944584265 ], [ -89.485289856159881, 38.845135878473513 ], [ -89.46964816923564, 38.847775853849278 ], [ -89.451253384180603, 38.853665805655389 ], [ -89.44162495065062, 38.853985795931415 ], [ -89.406909449253419, 38.862686706586864 ], [ -89.385576551723133, 38.871105622099407 ], [ -89.377352202052037, 38.873905590868333 ], [ -89.342376677649511, 38.881245485455999 ], [ -89.28120215294328, 38.911434104583421 ], [ -89.268872621577856, 38.9147650457586 ], [ -89.256688083034987, 38.916413002821066 ], [ -89.250049799453137, 38.918506966606678 ], [ -89.242885582664627, 38.929065855385623 ], [ -89.233585234825696, 38.934245798676116 ], [ -89.140434716603963, 38.967071373809347 ], [ -89.132995445429387, 38.969684335399336 ], [ -89.11601988038835, 38.979304198455267 ], [ -89.096136068750141, 38.978713186561691 ], [ -89.085370609068434, 38.977008198740336 ], [ -89.003054228495174, 38.974284160838423 ], [ -88.989762698907825, 38.974124127553353 ], [ -88.979585317606379, 38.975314077666617 ], [ -88.921279241698159, 38.993723636855087 ], [ -88.880765817655075, 39.004313388728036 ], [ -88.805987483848455, 39.026239998007497 ], [ -88.748017601652535, 39.043923743970545 ], [ -88.719781027730789, 39.051614590094736 ], [ -88.622610785079033, 39.082321828710064 ], [ -88.58118162398064, 39.094254427229671 ] ], [ [ -86.141229346366671, 39.782013728833775 ], [ -86.140252346851966, 39.784424665423629 ], [ -86.128602065414938, 39.789639470993492 ], [ -86.117173817893118, 39.797585207180425 ], [ -86.11099364448124, 39.798554144922655 ], [ -86.102425376440976, 39.79742412001039 ], [ -86.08979804741044, 39.801921927670385 ], [ -86.083503863416979, 39.802356876835205 ], [ -86.075835640342547, 39.803016811334793 ], [ -86.061179239206496, 39.806983614372825 ], [ -86.057876139230672, 39.806926594560913 ], [ -86.04575269861067, 39.798671736517768 ], [ -86.035002381330258, 39.799075658803545 ], [ -86.009519635055469, 39.800887449928169 ], [ -85.970661830214752, 39.80323751304595 ], [ -85.952923526945867, 39.807052535017995 ], [ -85.915027877596202, 39.819381530418603 ], [ -85.794305580734203, 39.820782449157925 ], [ -85.774026193331792, 39.821133605041901 ], [ -85.769998118460578, 39.820061646851023 ], [ -85.768472085504868, 39.82206364021706 ], [ -85.766015040250224, 39.821213667470175 ], [ -85.746704681068934, 39.821697824111332 ], [ -85.707634059912451, 39.825631205696489 ], [ -85.611448557284518, 39.826124218101505 ], [ -85.5969453390165, 39.828592369708112 ], [ -85.577879056380468, 39.831835574110862 ], [ -85.554951745128506, 39.840174833649733 ], [ -85.542256576893777, 39.844355984202544 ], [ -85.505337034444494, 39.845424409322206 ], [ -85.47958032718914, 39.853275576090944 ], [ -85.412569083086339, 39.853946822796658 ], [ -85.366142522666621, 39.852874988343267 ], [ -85.327574231083247, 39.853688131581443 ], [ -85.27163335576185, 39.852337331478381 ], [ -85.220859336918622, 39.853726442863397 ], [ -85.145357581467024, 39.853245516367011 ], [ -85.143610562626861, 39.851925517597536 ], [ -85.140467532369328, 39.853108521151647 ], [ -85.122690353798319, 39.852726538790002 ], [ -85.098963119225729, 39.854267561489529 ], [ -85.070382831253511, 39.853306590265689 ], [ -85.03252547547477, 39.859646613854636 ], [ -84.980255717249719, 39.859745858537146 ], [ -84.957970235975623, 39.862420095151045 ], [ -84.926231560973065, 39.867418424228291 ], [ -84.888273753475801, 39.872197816975863 ], [ -84.881109598991728, 39.872667892517562 ], [ -84.869879343205511, 39.87132902084538 ], [ -84.84795179515416, 39.862048307429362 ], [ -84.816975889950442, 39.833327811367013 ], [ -84.813862799749202, 39.83076786163479 ], [ -84.806721622371143, 39.828821954962642 ], [ -84.779545003950432, 39.82880026788753 ], [ -84.738765013734181, 39.828948732456261 ], [ -84.716699432806308, 39.834529939370206 ], [ -84.707628182921454, 39.835591032454921 ], [ -84.632881050257765, 39.835549861753648 ], [ -84.629142934625321, 39.834328913139792 ], [ -84.629111942514896, 39.835518903806665 ], [ -84.625464839376988, 39.835640943258362 ], [ -84.483668819062643, 39.83799661702097 ], [ -84.447366809463261, 39.838394291635858 ], [ -84.43944759767966, 39.839634424250974 ], [ -84.432130420381682, 39.843204514952149 ], [ -84.417978110512351, 39.853935632079953 ], [ -84.409523902781103, 39.857074740647469 ], [ -84.369407780073686, 39.854622494641305 ], [ -84.339751964905545, 39.85465802632779 ], [ -84.291158638647445, 39.855581880612448 ], [ -84.280477377333384, 39.858527013574232 ], [ -84.257687815795819, 39.864035303725252 ], [ -84.231876932367896, 39.864463634288029 ], [ -84.188929335096432, 39.865612100570935 ], [ -84.158540213433938, 39.867317423024993 ], [ -84.149567908627802, 39.870415485961296 ], [ -84.137573453362961, 39.869938632940247 ], [ -84.052602222318782, 39.865376653710776 ], [ -84.049649111165692, 39.865323687532261 ], [ -83.994166046581043, 39.864950272894966 ], [ -83.948899670181177, 39.884107416712801 ], [ -83.916671670482444, 39.893408524701286 ], [ -83.886450640052402, 39.892389633620958 ], [ -83.853399557679239, 39.895250750260935 ], [ -83.839597091759799, 39.895166799799483 ], [ -83.812092124621557, 39.891920899989337 ], [ -83.78014702664801, 39.890437014886814 ], [ -83.736909753722429, 39.89054811691831 ], [ -83.730104641748952, 39.892062113677909 ], [ -83.723184569321702, 39.896720110646875 ], [ -83.714662530711777, 39.90640510846022 ], [ -83.688096227875349, 39.923900109446272 ], [ -83.679826143246132, 39.9304111127447 ], [ -83.672227033154883, 39.93394011539602 ], [ -83.66456689685559, 39.935519117287527 ], [ -83.599433536539806, 39.932330119679534 ], [ -83.5690149779699, 39.937949132878785 ], [ -83.532217255532132, 39.940822145127768 ], [ -83.510770831468321, 39.942370153158627 ], [ -83.442288151818445, 39.942012542024017 ], [ -83.374987534077135, 39.956017049625807 ], [ -83.307716842657243, 39.963570544321662 ], [ -83.249434375425764, 39.980760034646863 ], [ -83.239431984828386, 39.981553135463798 ], [ -83.182514746827465, 39.978936672377266 ], [ -83.15035548371047, 39.977471975030149 ], [ -83.119028255190017, 39.976793273634094 ], [ -83.083923877131639, 39.973955595496051 ], [ -83.06166800101883, 39.967856772628785 ], [ -83.054541719938257, 39.964464820140073 ], [ -83.044981341723044, 39.957182866447674 ], [ -83.039351117807612, 39.950022875384114 ], [ -83.036353000199171, 39.948515894402149 ], [ -83.03245384827251, 39.948210929467784 ], [ -83.016927245164297, 39.950938094120168 ], [ -83.006924856572013, 39.953590206222081 ], [ -82.999157549533905, 39.953109268053502 ], [ -82.996136414552907, 39.953391262428966 ], [ -82.994465339934862, 39.953605259666077 ], [ -82.984462893396639, 39.954436239996831 ], [ -82.947489239069427, 39.952830139647759 ], [ -82.944514102583867, 39.95080512222227 ], [ -82.94404807751323, 39.948363108913789 ], [ -82.933381570150317, 39.933757015286488 ], [ -82.927621306252632, 39.932123996667023 ], [ -82.909310477186409, 39.931887960955748 ], [ -82.892799740826817, 39.935381942385177 ], [ -82.87838709524452, 39.936888918656209 ], [ -82.870558742397336, 39.936968903042825 ], [ -82.86050227895619, 39.934446875686383 ], [ -82.85197289233416, 39.934118858134433 ], [ -82.811520051954417, 39.931604775523084 ], [ -82.799914524586697, 39.931162753142523 ], [ -82.794795299270234, 39.932283744683183 ], [ -82.789393062374259, 39.933561735505712 ], [ -82.78566289880763, 39.934408728926449 ], [ -82.769098179075499, 39.938902697906009 ], [ -82.747506254503378, 39.951033655819252 ], [ -82.733291412410168, 39.951563656653896 ], [ -82.703161612155995, 39.949873660024615 ], [ -82.599815472922586, 39.945204679234358 ], [ -82.535770690708574, 39.942373697255348 ], [ -82.519297719485422, 39.941992701539704 ], [ -82.491075184957182, 39.944376815290155 ], [ -82.456840699003862, 39.946784264220511 ], [ -82.409062659206953, 39.94412591872004 ], [ -82.256278191457611, 39.935988052923399 ], [ -82.247366815352905, 39.936438138976044 ], [ -82.232076149316285, 39.942324101367078 ], [ -82.21919758191801, 39.947657070122048 ], [ -82.207974108540469, 39.950529061777608 ], [ -82.198619721859146, 39.952261061897367 ], [ -82.190692399057923, 39.953326066087698 ], [ -82.149034856652705, 39.947218180586923 ], [ -82.096412844325073, 39.944765274571424 ], [ -82.078430137868608, 39.94530729775547 ], [ -82.057341253145793, 39.949785307606398 ], [ -82.046552860790442, 39.947928332892005 ], [ -82.041967681909071, 39.947970339756523 ], [ -82.02772311109085, 39.949110357245637 ], [ -82.0120135192997, 39.947855386199798 ], [ -82.004269265354736, 39.944777407977377 ], [ -81.992587901595726, 39.943796562704094 ], [ -81.977923415451357, 39.948275844358434 ], [ -81.954508715117299, 39.950527310485626 ], [ -81.942209280341913, 39.956310548803017 ], [ -81.919679566063962, 39.96151000043848 ], [ -81.90019292489643, 39.967820394717727 ], [ -81.869354015863124, 39.97060903001784 ], [ -81.847281322908316, 39.975831489716903 ], [ -81.841071144951357, 39.976079619016573 ], [ -81.834616989945474, 39.974111751154027 ], [ -81.829969881311811, 39.972459845628819 ], [ -81.816954530163272, 39.971312113352525 ], [ -81.802084106284511, 39.971713421501896 ], [ -81.778966373189903, 39.978171915368002 ], [ -81.752575628845463, 39.978492466445857 ], [ -81.741611258091453, 39.981311506461381 ], [ -81.731280937780241, 39.980934473261932 ], [ -81.725703748262248, 39.982074458636035 ], [ -81.709491195233298, 39.985591414129402 ], [ -81.689142566804762, 39.984691346721227 ], [ -81.682237334470685, 39.985954325612774 ], [ -81.67090789447208, 39.992893292571736 ], [ -81.660637432949173, 40.004901232971882 ], [ -81.650681087347479, 40.007762179763589 ], [ -81.624038249540803, 40.007473079329259 ], [ -81.6074667045106, 40.009231005459888 ], [ -81.591124266731867, 40.003218979455646 ], [ -81.572393745709803, 39.998015934268459 ], [ -81.564924519070715, 39.997401908651739 ], [ -81.558797301517231, 39.999609879482449 ], [ -81.534825481604585, 40.004412758791894 ], [ -81.504985565498586, 40.00308165534522 ], [ -81.497852323751701, 40.003649618281663 ], [ -81.488871932181567, 40.008002524663056 ], [ -81.475146233460052, 40.021010329574715 ], [ -81.465867797132304, 40.02759021150527 ], [ -81.454858338714672, 40.031691098594244 ], [ -81.437950691578394, 40.03442995196604 ], [ -81.434860553899611, 40.036168914474402 ], [ -81.434441551828371, 40.035348918343487 ], [ -81.42193605195466, 40.038759796374165 ], [ -81.403960422010528, 40.038030669300831 ], [ -81.32963957035868, 40.051258979815401 ], [ -81.305804599664029, 40.059368709071613 ], [ -81.279955739168344, 40.055550550348535 ], [ -81.26801531210026, 40.055748455597914 ], [ -81.258004932077171, 40.057389358789464 ], [ -81.247941557092304, 40.056530313102684 ], [ -81.237885028781122, 40.057141346476712 ], [ -81.230133653765762, 40.05534039948558 ], [ -81.22572342476262, 40.055409416539568 ], [ -81.209410531355374, 40.059269435601266 ], [ -81.162495112453286, 40.05957162066187 ], [ -81.158176899156658, 40.058720648759106 ], [ -81.153568673847033, 40.057549682128659 ], [ -81.139781947784087, 40.059159717298165 ], [ -81.122981085103277, 40.058949787657497 ], [ -81.111276500179812, 40.056828862317062 ], [ -81.097367758323202, 40.060139875286396 ], [ -81.071845471987785, 40.056169030601694 ], [ -81.065681154588646, 40.056100056493058 ], [ -81.03751966447436, 40.064481057075234 ], [ -81.002559880703345, 40.063379211675873 ], [ -80.981272725157012, 40.065339355931378 ], [ -80.969217047052325, 40.072080367914928 ], [ -80.95998552628356, 40.07721137804527 ], [ -80.943359615852529, 40.077909513351763 ], [ -80.933914100386872, 40.077821596825906 ], [ -80.92819979326282, 40.076558663646793 ], [ -80.918761287011861, 40.074350775504207 ], [ -80.903029448376856, 40.069829972743094 ], [ -80.89610907815721, 40.068316052958281 ], [ -80.894170975592758, 40.067652078604112 ], [ -80.881291263258518, 40.070178156664625 ], [ -80.869060586910592, 40.072390233551573 ], [ -80.860645133857332, 40.071318320763389 ], [ -80.840854075397431, 40.067709539745778 ], [ -80.837160879069913, 40.066863582786354 ], [ -80.811402497382545, 40.063681846994555 ], [ -80.784301019695505, 40.064823066688383 ], [ -80.772574386971542, 40.064239175576965 ], [ -80.748151010545925, 40.071720287422934 ], [ -80.740513585068413, 40.071964327817177 ], [ -80.73849947660959, 40.071449345874306 ], [ -80.724239681567511, 40.072044419433105 ], [ -80.72319462300193, 40.072139424145348 ], [ -80.714389128183441, 40.073192460414923 ], [ -80.713260065486139, 40.073207466626016 ], [ -80.704653581924362, 40.074291501068913 ], [ -80.700655365791647, 40.073352536234275 ], [ -80.693667014908016, 40.066944662079692 ], [ -80.685899591734383, 40.065479726752393 ], [ -80.67771319536169, 40.054737921138191 ], [ -80.667946666883765, 40.05176602030658 ], [ -80.663819450534845, 40.049119081786785 ], [ -80.655869029503066, 40.044671192002852 ], [ -80.650642740443089, 40.044091232017408 ], [ -80.640708174470518, 40.046368260255477 ], [ -80.627486447664751, 40.043942375482629 ], [ -80.618627950256879, 40.044549420736828 ], [ -80.610257490832041, 40.042729498466159 ], [ -80.607236317483583, 40.043809501076048 ], [ -80.598332789678395, 40.051262444832204 ], [ -80.590641312706524, 40.06341230926806 ], [ -80.575206449802309, 40.065152372716319 ], [ -80.568690081959886, 40.066952382994849 ], [ -80.537164262989904, 40.09023319858197 ], [ -80.519211259709834, 40.09594420473465 ], [ -80.506255538846773, 40.099743212537923 ], [ -80.492636954567686, 40.108143067281844 ], [ -80.485250712758841, 40.116603888875979 ], [ -80.4786435090124, 40.119171810711556 ], [ -80.47339435352464, 40.119152781301551 ], [ -80.465551141169186, 40.113964816439712 ], [ -80.461912037410031, 40.113143807821608 ], [ -80.451032703210487, 40.116443695184081 ], [ -80.436490272140489, 40.116882605423335 ], [ -80.419018775760378, 40.113571551930036 ], [ -80.399288146990813, 40.121273333380465 ], [ -80.392848955465695, 40.12138329587016 ], [ -80.374789391522427, 40.125282144916653 ], [ -80.366618154407277, 40.124504109876362 ], [ -80.355676778106584, 40.130740973089416 ], [ -80.336206202217397, 40.129942878616795 ], [ -80.325303859525093, 40.131724799880288 ], [ -80.306733154954102, 40.146361541703719 ], [ -80.294387750423112, 40.148985453532923 ], [ -80.286636457631772, 40.154070363521662 ], [ -80.276573034512339, 40.164065215770108 ], [ -80.275260929775655, 40.169672153738908 ], [ -80.263480413094044, 40.182065983429837 ], [ -80.249494899769843, 40.1875098791675 ], [ -80.244977747317591, 40.187963873678811 ], [ -80.227605234784164, 40.183462913116095 ], [ -80.221509125263168, 40.175542991017849 ], [ -80.208065740290991, 40.170176046276467 ], [ -80.201939608208235, 40.163454117097558 ], [ -80.195172406329192, 40.161116143738028 ], [ -80.194020367645564, 40.16112814400028 ], [ -80.178142775151869, 40.167483079717243 ], [ -80.174053638082682, 40.167620078993771 ], [ -80.164920363046733, 40.16454211539893 ], [ -80.156482131811742, 40.158892182322894 ], [ -80.131464317761598, 40.155852228664827 ], [ -80.126749163069533, 40.155371236675421 ], [ -80.122485010417108, 40.156622223388098 ], [ -80.106408396045822, 40.167559092740646 ], [ -80.102800268221273, 40.168803077668869 ], [ -80.076760426010694, 40.165652123852574 ], [ -80.050338576284375, 40.160262205011065 ], [ -80.037910181253892, 40.155810272592852 ], [ -80.025641817778165, 40.143332458537863 ], [ -80.006125186090699, 40.133311622423406 ], [ -79.99595483134479, 40.133360644461774 ], [ -79.988736579819133, 40.129752731117719 ], [ -79.967724821377459, 40.13086980645825 ], [ -79.963993687394733, 40.129610843140867 ], [ -79.959400521233206, 40.125803925298676 ], [ -79.958523489221591, 40.125071941185965 ], [ -79.949818166225072, 40.117454106750401 ], [ -79.939296771245196, 40.113281227420423 ], [ -79.920062044874598, 40.109565386711907 ], [ -79.909731657659648, 40.109428441133382 ], [ -79.903017395263248, 40.106796522034706 ], [ -79.897577194404576, 40.107612535141165 ], [ -79.880242642542086, 40.124496310106899 ], [ -79.877862570956509, 40.126956275222476 ], [ -79.872125395290965, 40.1318582090354 ], [ -79.861985050222657, 40.134296206889189 ], [ -79.856010874739866, 40.139163138833581 ], [ -79.842041391912431, 40.14019317674353 ], [ -79.826110831681078, 40.140083244842145 ], [ -79.817450569547987, 40.144104198633606 ], [ -79.811858408617184, 40.147220157019397 ], [ -79.776296284584078, 40.155002128562529 ], [ -79.75412466738274, 40.164024009719128 ], [ -79.737080347266129, 40.166781923951341 ], [ -79.717709121510396, 40.1743497006469 ], [ -79.713628094392035, 40.177531620264581 ], [ -79.708859116057639, 40.18527144087593 ], [ -79.701337025010361, 40.18850935220734 ], [ -79.688457838532358, 40.19200024609308 ], [ -79.6763878382001, 40.209741849336709 ], [ -79.671734775517919, 40.211782797781588 ], [ -79.666614677911269, 40.211687789438997 ], [ -79.662517596335192, 40.211309788894646 ], [ -79.653644427359751, 40.21112277474586 ], [ -79.634472120043085, 40.216104637849192 ], [ -79.620684851313996, 40.215352626161405 ], [ -79.602198539357445, 40.219377514431393 ], [ -79.594897353778791, 40.214158599043643 ], [ -79.590495258371647, 40.212716617382448 ], [ -79.58241510478662, 40.212453606236082 ], [ -79.554376483632154, 40.199121788066115 ], [ -79.54835735064772, 40.195718834380187 ], [ -79.536035097477992, 40.190839889912652 ], [ -79.530495953394507, 40.183581001363017 ], [ -79.507546504965262, 40.174521091763964 ], [ -79.495156251813398, 40.167521217296702 ], [ -79.488022111497457, 40.165862294286057 ], [ -79.483758009107547, 40.161150401023257 ], [ -79.464653608783294, 40.151442689706734 ], [ -79.459762513471063, 40.150351740524648 ], [ -79.44945532382026, 40.150290811484432 ], [ -79.443191227766903, 40.154181792137827 ], [ -79.433799059510349, 40.155032842878313 ], [ -79.426100881448676, 40.147354016229052 ], [ -79.410864559919219, 40.138332259462963 ], [ -79.408141465057184, 40.128803425431272 ], [ -79.399260272591377, 40.122253584616942 ], [ -79.396399192556373, 40.116283695003276 ], [ -79.385373967502204, 40.110881848191852 ], [ -79.37190070548273, 40.106903993969055 ], [ -79.365590607349901, 40.110332982240813 ], [ -79.329136993808476, 40.120003072373315 ], [ -79.303501549467043, 40.123814183425146 ], [ -79.293629394225647, 40.128884175484231 ], [ -79.290348335069538, 40.128834197739515 ], [ -79.281033148731623, 40.124394321518558 ], [ -79.277317059799415, 40.119195418838061 ], [ -79.261173761668516, 40.116963554123494 ], [ -79.254939637512564, 40.113911636407849 ], [ -79.248210506197097, 40.112294713477944 ], [ -79.238780282188713, 40.10571393605435 ], [ -79.234065180743613, 40.104932012866094 ], [ -79.224902003998679, 40.108053098033004 ], [ -79.221880940401689, 40.107847143166239 ], [ -79.202608512774447, 40.101694498442235 ], [ -79.201998450503197, 40.090875657361856 ], [ -79.196100301353056, 40.08520381916766 ], [ -79.188288124092807, 40.082162971464598 ], [ -79.179704918825379, 40.076674168963322 ], [ -79.168473683003512, 40.076426330753627 ], [ -79.164094586113691, 40.07530540819856 ], [ -79.156419394491721, 40.068953605593912 ], [ -79.143106094556657, 40.064654854125436 ], [ -79.13907698353384, 40.05939498519102 ], [ -79.126579686164874, 40.052505259402551 ], [ -79.118836478029422, 40.043785492555834 ], [ -79.114136366800423, 40.041435592595427 ], [ -79.105087173245963, 40.040817729957467 ], [ -79.08539565517772, 40.021859280046868 ], [ -79.077712475368969, 40.018708434688037 ], [ -79.067641207749588, 40.009007717317687 ], [ -79.053930895544042, 40.005196968246736 ], [ -79.050924820607676, 40.003252039236756 ], [ -79.046454707398695, 40.000078148916742 ], [ -79.03851153405158, 39.997988301266169 ], [ -79.025877256714452, 39.9940705560902 ], [ -79.005422820170438, 39.992712877981411 ], [ -78.988202493835914, 39.991248067111449 ], [ -78.960712994334884, 39.985980356441267 ], [ -78.934483498551785, 39.977439701550679 ], [ -78.874743398139856, 39.96896027833602 ], [ -78.848436860129482, 39.957310688986929 ], [ -78.844904799491815, 39.957748704914685 ], [ -78.837938709385156, 39.963150646997867 ], [ -78.833452636031581, 39.964130658791106 ], [ -78.823137421123775, 39.959412823325174 ], [ -78.821298363990678, 39.955841906552813 ], [ -78.819399324275111, 39.955009936181909 ], [ -78.817430289829844, 39.955131947474527 ], [ -78.813120233303977, 39.958080919207113 ], [ -78.810442224150421, 39.963539829929807 ], [ -78.80699318291984, 39.966308799089504 ], [ -78.7973121171934, 39.980511584868225 ], [ -78.791391022364905, 39.981491606201594 ], [ -78.784516941840593, 39.986420555700363 ], [ -78.779641861181119, 39.986759582447647 ], [ -78.764931545130352, 39.978741843057627 ], [ -78.760789465202478, 39.977692892503882 ], [ -78.75144329912294, 39.977081969160146 ], [ -78.707276194217343, 39.986069931641367 ], [ -78.689027244220696, 40.003971633670453 ], [ -78.68466321920188, 40.007240593700892 ], [ -78.678567189803744, 40.009601573037109 ], [ -78.649979078921533, 40.011440623864644 ], [ -78.618477924164509, 40.019501580464826 ], [ -78.611877908951044, 40.017689628544758 ], [ -78.60836893818734, 40.010052763903154 ], [ -78.603431927947597, 40.008861797483746 ], [ -78.587631818806386, 40.017818694006216 ], [ -78.556900497050734, 40.046921293098471 ], [ -78.536178373564113, 40.050751283286672 ], [ -78.517730296535788, 40.04993034554419 ], [ -78.510956270348998, 40.049450371491943 ], [ -78.50696528154252, 40.046200437228116 ], [ -78.503670324925039, 40.039810554672584 ], [ -78.496391315282864, 40.032959712389307 ], [ -78.48420716686195, 40.026501934313188 ], [ -78.467375991295341, 40.012772328055775 ], [ -78.464164943499114, 40.01174337603662 ], [ -78.443816591548114, 40.011460571423207 ], [ -78.431380429789598, 40.003301833852355 ], [ -78.428557383734784, 40.002732870778011 ], [ -78.414969132289229, 40.004731963342167 ], [ -78.40830897477997, 40.011823897327027 ], [ -78.401678856785409, 40.012509946878758 ], [ -78.390333674478015, 40.010061098123863 ], [ -78.378088494809006, 40.003344337807732 ], [ -78.358755169300878, 40.000502574498164 ], [ -78.347668973594523, 40.001093668804153 ], [ -78.328992614189715, 39.995512976651121 ], [ -78.319218403741999, 39.99042419355915 ], [ -78.311429266958854, 39.99010427588761 ], [ -78.301922072718625, 39.986201461979768 ], [ -78.294345938586787, 39.985633548504197 ], [ -78.28373373356257, 39.982532726117562 ], [ -78.275196591925607, 39.983005796597205 ], [ -78.256687307986823, 39.987102873936465 ], [ -78.248912184139101, 39.990172877581827 ], [ -78.238261828415645, 39.991104014241259 ], [ -78.233843711117345, 39.995654968514444 ], [ -78.232516693500017, 39.999454894937841 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I70  L\", \"DIST_MILES\": 2.810000, \"DIST_KM\": 4.520000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -92.35147133918737, 38.966549661826178 ], [ -92.333404285902532, 38.964786890924579 ], [ -92.324470254063044, 38.964150010236139 ], [ -92.299026135873092, 38.96370838306045 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I705\", \"DIST_MILES\": 5.990000, \"DIST_KM\": 9.640000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -122.502547144152345, 47.29962668840259 ], [ -122.491898842451235, 47.298885512617289 ], [ -122.482195647608151, 47.293604738875615 ], [ -122.47641066190134, 47.28832686926529 ], [ -122.457512112745775, 47.27829562733443 ], [ -122.451998661966741, 47.276709959798289 ], [ -122.433266181482153, 47.26563487414569 ], [ -122.428530347044088, 47.25981855380644 ] ], [ [ -122.423937394202028, 47.254827315312333 ], [ -122.422164820458534, 47.244511326467389 ], [ -122.41935255691655, 47.234724837218884 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I71\", \"DIST_MILES\": 322.910000, \"DIST_KM\": 519.670000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -84.522235993955604, 39.091963917965934 ], [ -84.522038010892686, 39.094820874933937 ], [ -84.521153004325242, 39.096445854624861 ], [ -84.519160968195862, 39.097212853546381 ], [ -84.518321950567625, 39.097208858135104 ], [ -84.51675091809166, 39.097273865613325 ], [ -84.508662760376311, 39.098913884232559 ], [ -84.507358735923347, 39.099314885183652 ], [ -84.505679700926407, 39.09934889377049 ], [ -84.504466677537394, 39.099634895998911 ], [ -84.503902688387967, 39.10276685144958 ], [ -84.50343670497449, 39.10640979864074 ], [ -84.500522687030454, 39.112417723633655 ], [ -84.497188707713917, 39.126535530167018 ], [ -84.49641770019025, 39.128187509855941 ], [ -84.493175665116624, 39.134741429986271 ], [ -84.480983417479194, 39.143618367232413 ], [ -84.470874157753912, 39.143236433493918 ], [ -84.461748924297993, 39.14302249134969 ], [ -84.445734558724965, 39.150068474047011 ], [ -84.436411385104833, 39.161497343697441 ], [ -84.433100311744994, 39.163690326870068 ], [ -84.425623128656525, 39.165670336627592 ], [ -84.418168959064374, 39.170240303087709 ], [ -84.402948565462765, 39.170927375771441 ], [ -84.399514485998026, 39.173040359258451 ], [ -84.39553243198435, 39.1836792018347 ], [ -84.39039731413223, 39.187544163663674 ], [ -84.386033223653655, 39.193155091158552 ], [ -84.376930993843033, 39.196104087520169 ], [ -84.374474948844124, 39.200998015929478 ], [ -84.367081849362805, 39.225526628451142 ], [ -84.364731901015233, 39.25259521251909 ], [ -84.356415769332301, 39.266606244694671 ], [ -84.351112650326002, 39.270882268777441 ], [ -84.326630053012835, 39.284779391632235 ], [ -84.316657820714894, 39.292477447961929 ], [ -84.301925477061985, 39.304364538664444 ], [ -84.291312252838523, 39.31706761495397 ], [ -84.281936103318515, 39.336583701013197 ], [ -84.279067049745692, 39.341451727323097 ], [ -84.259428594502211, 39.361531897581941 ], [ -84.250196375647988, 39.37077498387282 ], [ -84.239340181238774, 39.378229103061514 ], [ -84.223737868059061, 39.383146258079506 ], [ -84.219914786743303, 39.3835582941933 ], [ -84.208699557386055, 39.386789402294788 ], [ -84.179676982621245, 39.401850676969062 ], [ -84.165203695732814, 39.411489805828033 ], [ -84.122103734066471, 39.41477917070506 ], [ -84.110865485355646, 39.41699926294622 ], [ -84.088923001901776, 39.424521433543681 ], [ -84.066293499866561, 39.436450590505487 ], [ -84.049692119373077, 39.440661709574506 ], [ -83.996833857667767, 39.457203035913572 ], [ -83.987030542932203, 39.46133404245937 ], [ -83.956122547356571, 39.479900044589165 ], [ -83.941878089406202, 39.485771057919195 ], [ -83.845951060108263, 39.518940148880539 ], [ -83.829707545939968, 39.524490161333617 ], [ -83.788644225312154, 39.534512216644615 ], [ -83.727760540133275, 39.553841282799155 ], [ -83.71409528129378, 39.560093283496926 ], [ -83.700095021579102, 39.569340260653327 ], [ -83.666456407231308, 39.588463201222609 ], [ -83.607732370942429, 39.619343039037908 ], [ -83.5861410031047, 39.63098095266033 ], [ -83.538288190301301, 39.650031787606885 ], [ -83.473872110258299, 39.688350442998683 ], [ -83.436785416602987, 39.704410411634136 ], [ -83.417101047092473, 39.71202041469386 ], [ -83.390267558720907, 39.725360400964583 ], [ -83.369981170705927, 39.730651444519509 ], [ -83.341385635386601, 39.740230495774391 ], [ -83.282607553354225, 39.767562792142265 ], [ -83.24558176188296, 39.786167092515626 ], [ -83.193050835099498, 39.81025366920764 ], [ -83.164813790147832, 39.822922983831631 ], [ -83.151522290384548, 39.825181112680774 ], [ -83.141069894110942, 39.824983203103507 ], [ -83.128938434564887, 39.824983309334847 ], [ -83.09628420919195, 39.83543565709229 ], [ -83.090438992586684, 39.840497738750841 ], [ -83.081970680334621, 39.850343872746052 ], [ -83.056891739415761, 39.869120211518656 ], [ -83.038481049328226, 39.892416523260664 ], [ -83.014287129234646, 39.91755990561834 ], [ -83.00932094433054, 39.937648080944967 ], [ -83.016927245164297, 39.950938094120168 ] ], [ [ -81.693151529797277, 41.474157240493589 ], [ -81.692930364038574, 41.465539363999312 ], [ -81.694586364606721, 41.461008410003075 ], [ -81.696356411096843, 41.458688423809626 ], [ -81.700888601549963, 41.45669740372896 ], [ -81.714087237233954, 41.455373282466951 ], [ -81.729896960884986, 41.451173175599962 ], [ -81.740173400620932, 41.446088141338983 ], [ -81.752664037982939, 41.448853908943299 ], [ -81.759400255596972, 41.445866741399406 ], [ -81.765382482802323, 41.445580557316227 ], [ -81.779604029280023, 41.445336113404728 ], [ -81.789774332773433, 41.43882792990145 ], [ -81.80394287929397, 41.438621502894819 ], [ -81.808902056774357, 41.437526378284495 ], [ -81.820628334657641, 41.424293366566758 ], [ -81.818751214332394, 41.42077650962284 ], [ -81.817371126407338, 41.418239612224504 ], [ -81.817797933088002, 41.402591999462004 ], [ -81.815355707067056, 41.392922302585553 ], [ -81.820971646637986, 41.371857719862376 ], [ -81.821497576637981, 41.365059886686261 ], [ -81.818987336540616, 41.354600202403567 ], [ -81.81675895344577, 41.332708794943663 ], [ -81.811334468869887, 41.312995351226142 ], [ -81.808839274799269, 41.306128542738065 ], [ -81.806427768598823, 41.276054277815796 ], [ -81.80214724456944, 41.249286898139722 ], [ -81.79418907735662, 41.226837961932546 ], [ -81.793716138991229, 41.215438992087385 ], [ -81.793396200164466, 41.204945019673453 ], [ -81.785606131839856, 41.161954119282917 ], [ -81.786659226207803, 41.15541113727992 ], [ -81.794388743951515, 41.136124203826789 ], [ -81.804605381108047, 41.120995273386363 ], [ -81.849713354870261, 41.065674630280014 ], [ -81.879629438521675, 41.036675901541066 ], [ -81.890418159928515, 41.030514988251809 ], [ -81.971150563515636, 40.999433636836379 ], [ -81.981802220208195, 40.997915709053558 ], [ -81.99716816359701, 40.997434804301641 ], [ -82.014808165219847, 40.996496794155327 ], [ -82.030312037263414, 40.990682795116271 ], [ -82.037141421571931, 40.985395812593005 ], [ -82.050356158822694, 40.97078587685948 ], [ -82.071193293358988, 40.953153957107922 ], [ -82.082156881964039, 40.947374981207375 ], [ -82.081782860393602, 40.945764992416031 ], [ -82.085506060986035, 40.9457959877628 ], [ -82.115888668193904, 40.932296049840595 ], [ -82.128271299782924, 40.921435119564912 ], [ -82.141249955569521, 40.911616185684224 ], [ -82.171425494491771, 40.900786257665835 ], [ -82.196710716692721, 40.882746405195441 ], [ -82.204851110128075, 40.878257444451222 ], [ -82.243550010329074, 40.866458557650354 ], [ -82.257000536046576, 40.857524624206313 ], [ -82.268139892998605, 40.848517676157734 ], [ -82.274892123442825, 40.844905689176876 ], [ -82.348564742225989, 40.817694690487592 ], [ -82.387872136846809, 40.801017689687747 ], [ -82.402635652870174, 40.793177697946732 ], [ -82.412569965954987, 40.782393744951307 ], [ -82.430995534732304, 40.759875844669544 ], [ -82.453937246100693, 40.741267978215333 ], [ -82.471965763968115, 40.730415086750959 ], [ -82.491780105071456, 40.707977373589721 ], [ -82.49988227014336, 40.701729436138024 ], [ -82.511456653588269, 40.695125568386572 ], [ -82.519742909907066, 40.689297679138051 ], [ -82.526304072190683, 40.682327803553896 ], [ -82.556013501116567, 40.632157633375627 ], [ -82.574782046365499, 40.615369899626913 ], [ -82.600943648741321, 40.58165940033026 ], [ -82.609969937578086, 40.574591498657355 ], [ -82.623924457614237, 40.567949584732446 ], [ -82.640214075040191, 40.560640674247573 ], [ -82.646485292932567, 40.556539725073726 ], [ -82.665154825670285, 40.536737971451664 ], [ -82.703807095148264, 40.504561322688772 ], [ -82.723788900639917, 40.492862400837666 ], [ -82.810508135587355, 40.435531810473996 ], [ -82.817458357934797, 40.42718087443771 ], [ -82.820548433211229, 40.41955193378373 ], [ -82.823981347083247, 40.382900223087134 ], [ -82.826652412303488, 40.376312272981124 ], [ -82.829169496590254, 40.373890289812415 ], [ -82.856438451322347, 40.354477413145418 ], [ -82.910013329197625, 40.316261629667451 ], [ -82.918886629569897, 40.30809067529102 ], [ -82.924219769596874, 40.29637175037697 ], [ -82.927393710484083, 40.265472963506191 ], [ -82.92833957885955, 40.233621217646991 ], [ -82.932162585143161, 40.20221049542689 ], [ -82.939486831209805, 40.191522587235326 ], [ -82.964656739500995, 40.165311827078412 ], [ -82.96928788798327, 40.155263926152735 ], [ -82.971546900449596, 40.135168126271758 ], [ -82.972934899494973, 40.120459273803576 ], [ -82.977681057594197, 40.110426379501909 ], [ -82.984318295298124, 40.100103493028975 ], [ -82.987042364001681, 40.087954621965778 ], [ -82.988804379472256, 40.072111788675016 ], [ -82.997960728932611, 40.061419920315558 ], [ -82.994114397488744, 40.014922397519321 ], [ -82.985118978500239, 40.006953448857715 ], [ -82.98584397756612, 39.989757459193349 ], [ -82.984058890681212, 39.976901375143314 ], [ -82.98379887596937, 39.972190345819783 ], [ -82.983913878669043, 39.968715325113578 ], [ -82.983692867581013, 39.966842313144902 ], [ -82.983150841732666, 39.964282296160746 ], [ -82.982990830023994, 39.957805256649294 ], [ -82.984462893396639, 39.954436239996831 ] ], [ [ -85.741600327942848, 38.257970902669804 ], [ -85.735634292837588, 38.260892800799581 ], [ -85.726158197691873, 38.261709770288114 ], [ -85.713211083858994, 38.264772662779414 ], [ -85.667602772307703, 38.292794715419248 ], [ -85.656570641192502, 38.293492693226099 ], [ -85.647925515137857, 38.290203803299676 ], [ -85.642768452882621, 38.29029180071683 ], [ -85.62767729662751, 38.295735622279651 ], [ -85.619918217901201, 38.299488499931002 ], [ -85.608115078985307, 38.301800426306428 ], [ -85.581762783671095, 38.314892007138567 ], [ -85.574949700569746, 38.317634920838749 ], [ -85.558348485803421, 38.321597799850309 ], [ -85.546522334005616, 38.327834605333273 ], [ -85.545523320920537, 38.328391588016636 ], [ -85.523169014136073, 38.338218287613756 ], [ -85.499951678204638, 38.343250143868218 ], [ -85.460591094950232, 38.362726646573762 ], [ -85.444179852086606, 38.368864514710225 ], [ -85.387547008086003, 38.391245086286908 ], [ -85.373034788622476, 38.398801943647541 ], [ -85.365329670567419, 38.403966840999651 ], [ -85.346126380188068, 38.412595706953901 ], [ -85.328700110715914, 38.424646491166804 ], [ -85.314554891035669, 38.434434327680592 ], [ -85.301996683645967, 38.452164975466047 ], [ -85.284578408929789, 38.465447777756765 ], [ -85.274485246764016, 38.474846632433582 ], [ -85.26672511850208, 38.484356474177581 ], [ -85.2494138372018, 38.500076259396884 ], [ -85.234399485316999, 38.519973960575875 ], [ -85.230264384751578, 38.525584877750049 ], [ -85.211006935345893, 38.544433630403447 ], [ -85.201515686603642, 38.557372449658772 ], [ -85.183052229886783, 38.57441224899592 ], [ -85.176269033522473, 38.584621111065864 ], [ -85.173102870022532, 38.600824854215922 ], [ -85.166983680778074, 38.610804721123117 ], [ -85.152755284954821, 38.625422561904209 ], [ -85.130033725227449, 38.635614534993309 ], [ -85.12113044559463, 38.646982408645684 ], [ -85.114271251160716, 38.652563364145678 ], [ -85.109434132732858, 38.654001373016904 ], [ -85.08912369740581, 38.652334531901396 ], [ -85.072392294098961, 38.656035584996495 ], [ -85.055149911450371, 38.656023698802024 ], [ -85.02531014690976, 38.665773755588539 ], [ -85.011431755673939, 38.673052746720352 ], [ -84.989512369415024, 38.675303886701933 ], [ -84.964358065517672, 38.682128014534989 ], [ -84.953561939708663, 38.68526406671576 ], [ -84.8952352921293, 38.710113242101215 ], [ -84.876428135750814, 38.714114354638561 ], [ -84.857850964450876, 38.727843332485882 ], [ -84.840439842322098, 38.734122402323322 ], [ -84.83327579084559, 38.741103371278413 ], [ -84.818695706539373, 38.748695398557963 ], [ -84.811936671732937, 38.75007544033631 ], [ -84.806923661234521, 38.755855377428013 ], [ -84.788979570952108, 38.763126403557955 ], [ -84.764023408252953, 38.779983316930981 ], [ -84.748825262333753, 38.784724369082689 ], [ -84.72456351182791, 38.806613201890222 ], [ -84.716216265651255, 38.81055720687133 ], [ -84.705565956078701, 38.815555211131176 ], [ -84.694296639149343, 38.826335102210287 ], [ -84.671439022819953, 38.843782951130208 ], [ -84.657247670951079, 38.858973753672537 ], [ -84.624302859567734, 38.876982627995218 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I710\", \"DIST_MILES\": 20.130000, \"DIST_KM\": 32.400000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -118.163972980383548, 34.061324867559975 ], [ -118.162806160474688, 34.052940087592049 ], [ -118.168305229177278, 34.045494775418355 ], [ -118.168618459642275, 34.040664977088525 ], [ -118.168755763435499, 34.035924162232313 ], [ -118.171342527539764, 34.023690810612784 ], [ -118.171922622844463, 34.01902602736893 ], [ -118.17171690597749, 34.016577102131365 ], [ -118.171648842980503, 34.004843530534217 ], [ -118.175431568606712, 33.998794010978131 ], [ -118.175912410791639, 33.997886058243878 ], [ -118.174982167368512, 33.993041040202769 ], [ -118.168927362247302, 33.986677643852026 ], [ -118.166655819733506, 33.980417538742721 ], [ -118.166938514999543, 33.968244696311871 ], [ -118.169630988338398, 33.957995017658142 ], [ -118.169631533209781, 33.949954107257163 ], [ -118.17045580443336, 33.940452276404621 ], [ -118.176831382776186, 33.9336468424492 ], [ -118.177678177527582, 33.931037936585604 ], [ -118.177260223807977, 33.918480043669092 ], [ -118.178419145972285, 33.911953205158831 ], [ -118.179929733090432, 33.908016364969278 ], [ -118.184451975008272, 33.903866759021348 ], [ -118.187724505252234, 33.88921117288595 ], [ -118.189546985613887, 33.884816361762169 ], [ -118.191553718980941, 33.875566618257551 ], [ -118.198128625674045, 33.862974263726493 ], [ -118.202918020502423, 33.854986721113583 ], [ -118.204588839636799, 33.846788939837744 ], [ -118.207716385702611, 33.833137330560582 ], [ -118.20622951462046, 33.826587287121939 ], [ -118.205848028859734, 33.82169331106482 ], [ -118.206421970781435, 33.804549542335074 ], [ -118.206803815529156, 33.790027730069419 ], [ -118.206499456219703, 33.782809785293807 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I72\", \"DIST_MILES\": 163.740000, \"DIST_KM\": 263.510000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -91.194782697091966, 39.716427310264812 ], [ -91.092460707188323, 39.732205657209214 ], [ -91.050139074706593, 39.729767786667438 ], [ -91.020001922927378, 39.714207854445981 ], [ -90.997120090674045, 39.696045892189815 ], [ -90.947962877171918, 39.685056012071996 ], [ -90.83423601846745, 39.673597351093868 ], [ -90.780707676556901, 39.673799514054949 ], [ -90.767035354649806, 39.678327542529964 ], [ -90.638241758057944, 39.682465938687741 ], [ -90.569767031731189, 39.684666530208538 ], [ -90.539828709516044, 39.683888363710579 ], [ -90.520907502929887, 39.68128627738038 ], [ -90.500125281204674, 39.681195159850702 ], [ -90.456484568923074, 39.681244288026406 ], [ -90.39541057302317, 39.681416467180327 ], [ -90.372697194726172, 39.680287538852838 ], [ -90.31183619954389, 39.68037171575358 ], [ -90.294608918034342, 39.68040576589236 ], [ -90.264739434712681, 39.680866853056337 ], [ -90.242880937685385, 39.686146948150892 ], [ -90.22851430324404, 39.686616042998985 ], [ -90.224302114798036, 39.68655507061596 ], [ -90.209058438511249, 39.686796171060649 ], [ -90.201932153309343, 39.689409221000325 ], [ -90.167835050515791, 39.722719492300655 ], [ -90.15610067587744, 39.734426589313877 ], [ -90.151408496974923, 39.736768625072123 ], [ -90.145243234745195, 39.737676668922006 ], [ -90.112328779155874, 39.738088896458557 ], [ -90.089881787128022, 39.738417051819816 ], [ -90.065306676197253, 39.73683821805929 ], [ -90.000133785083165, 39.736960667127562 ], [ -89.985118283755966, 39.737017853309098 ], [ -89.970232828091298, 39.73986004118494 ], [ -89.828764152590693, 39.741219771273713 ], [ -89.821477941575253, 39.742569853261983 ], [ -89.800901456783038, 39.75124104673128 ], [ -89.750010810798429, 39.752450630920677 ], [ -89.735103172286145, 39.751611521582568 ], [ -89.72455066331581, 39.748331468330754 ], [ -89.706223783723416, 39.742372373276133 ], [ -89.677322598816687, 39.741891147384514 ], [ -89.668999244774525, 39.740652092455328 ], [ -89.661978980559866, 39.742422020325193 ], [ -89.644622276092917, 39.742821878272402 ], [ -89.636114932467166, 39.743401804940795 ] ], [ [ -89.595449840409259, 39.801659160636525 ], [ -89.590994682161949, 39.801880133561816 ], [ -89.587003586524048, 39.803543102705035 ], [ -89.579839416828463, 39.806488048910623 ], [ -89.569128169173467, 39.810840972037902 ], [ -89.554013710214136, 39.813369881711026 ], [ -89.550679705118426, 39.816650854051801 ], [ -89.548520915481632, 39.82482181904826 ], [ -89.539265927340693, 39.834079750869421 ], [ -89.535527881161087, 39.836288729012232 ], [ -89.526478623231185, 39.837539687081488 ], [ -89.458986918696596, 39.839419423468868 ], [ -89.386031514663699, 39.838345385924427 ], [ -89.366636669780036, 39.839614843602035 ], [ -89.349995847311433, 39.838165379184311 ], [ -89.255364429973156, 39.836632735163946 ], [ -89.217376548455789, 39.83669687830777 ], [ -89.166845557389777, 39.836660782500111 ], [ -89.141133877647377, 39.831369228499739 ], [ -89.122792515019398, 39.831159831576997 ], [ -89.084957792283589, 39.831509012138198 ], [ -89.052578323028143, 39.83678830433464 ], [ -89.047779389181017, 39.842136193242645 ], [ -89.046307499088854, 39.846786155119787 ], [ -89.045704813379672, 39.857708127521725 ], [ -89.04366788812608, 39.861606077832917 ], [ -89.016828068377976, 39.886908452695288 ], [ -89.006787062442314, 39.894236219852573 ], [ -88.989887878441564, 39.906546003818164 ], [ -88.983189660386856, 39.907877970747812 ], [ -88.955348615683235, 39.908434840678403 ], [ -88.912111000445606, 39.909834640422524 ], [ -88.898400485584844, 39.910238577499456 ], [ -88.89436433384536, 39.910356559026056 ], [ -88.889352145586884, 39.91051653613124 ], [ -88.874862613027304, 39.911623471056885 ], [ -88.868774418207153, 39.913675446378818 ], [ -88.845473788247517, 39.929327373850256 ], [ -88.809751982260934, 39.971605350938447 ], [ -88.806364876792628, 39.974367348760218 ], [ -88.793546408896418, 39.980547330293298 ], [ -88.789220269184995, 39.984247330500239 ], [ -88.77406074496183, 40.009195312692931 ], [ -88.770306556456347, 40.013185287214547 ], [ -88.764866306251022, 40.014776266232325 ], [ -88.745739445548892, 40.016306160471871 ], [ -88.718378197448487, 40.018723778364837 ], [ -88.644705819893716, 40.030273755004089 ], [ -88.604993023932607, 40.031433224516384 ], [ -88.597302662126424, 40.035263119107505 ], [ -88.567355247543176, 40.052695721155629 ], [ -88.55983989794143, 40.05589262498416 ], [ -88.543673119602431, 40.070464425030735 ], [ -88.532418594852587, 40.076224289243946 ], [ -88.521134048217036, 40.088263161908941 ], [ -88.501778165497569, 40.093442936708271 ], [ -88.491271658646838, 40.105512877829753 ], [ -88.484954359353182, 40.112001850994943 ], [ -88.462744358540775, 40.119863739213528 ], [ -88.407679932572293, 40.120283424920167 ], [ -88.315070853594804, 40.120011891894421 ], [ -88.305228419640528, 40.119809833536628 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I73\", \"DIST_MILES\": 54.840000, \"DIST_KM\": 88.250000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -79.82589742640728, 36.018415657680755 ], [ -79.827515339602982, 36.002466698666829 ], [ -79.827637363348529, 35.99371572682108 ], [ -79.827301355856719, 35.992696728317405 ], [ -79.821839224202279, 35.977495751312084 ], [ -79.820358269146638, 35.960474808380589 ], [ -79.820732334283619, 35.952615840427271 ], [ -79.827454732799296, 35.934583936646384 ], [ -79.823082692852182, 35.91155100527952 ], [ -79.822823804137258, 35.8921760771983 ], [ -79.820763775054374, 35.882716108696208 ], [ -79.818329729523469, 35.873217141320417 ], [ -79.817886826407801, 35.854647213993516 ], [ -79.826150304953885, 35.835917288604065 ], [ -79.826974375860686, 35.830447308287845 ], [ -79.822030344121401, 35.801116420022076 ], [ -79.828660729407559, 35.786715461973664 ], [ -79.82859980304336, 35.774775504144792 ], [ -79.824274096370999, 35.732051645962102 ], [ -79.82715156492749, 35.713515682558658 ], [ -79.83001278582968, 35.708525690126699 ], [ -79.832140986408206, 35.702845701693292 ], [ -79.832309152215103, 35.694216723930282 ], [ -79.830081203430765, 35.685885746645241 ], [ -79.828311240576483, 35.679446763067432 ], [ -79.835361841141363, 35.664256803388888 ], [ -79.836017967664006, 35.659003818256636 ], [ -79.832180012101446, 35.646983846615115 ], [ -79.83266133209959, 35.630736889743616 ], [ -79.82567220022645, 35.620314899704105 ], [ -79.825375206701892, 35.619208901500521 ], [ -79.796376806704515, 35.511286934686353 ], [ -79.793164987562022, 35.494793051897929 ], [ -79.780454410988128, 35.452008019108831 ], [ -79.774907502553077, 35.436417372074153 ], [ -79.768995842678422, 35.408949025964617 ], [ -79.765395769144959, 35.360770222434134 ], [ -79.763159914670211, 35.349059508605102 ], [ -79.73208528684161, 35.313451220772073 ], [ -79.729849322668898, 35.308083473035332 ], [ -79.728819535165741, 35.296853824831324 ], [ -79.727149145953931, 35.266764718310199 ], [ -79.728897534623812, 35.252315016665953 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I74\", \"DIST_MILES\": 408.020000, \"DIST_KM\": 656.650000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -89.021822142563011, 40.446817399608022 ], [ -89.019022137379508, 40.44147739376394 ], [ -89.014070010448876, 40.437715357500153 ], [ -88.990968131196922, 40.436296162553568 ], [ -88.978332693577968, 40.435385094855718 ], [ -88.966568297837071, 40.433946033912171 ], [ -88.959259083104513, 40.431505001704743 ], [ -88.950408923723487, 40.423516980837249 ], [ -88.944602777800029, 40.42026695935472 ], [ -88.860859412623071, 40.383256588807129 ], [ -88.754571285229986, 40.333855058009888 ], [ -88.727120522510873, 40.311485918685577 ], [ -88.686126236751676, 40.282001656945162 ], [ -88.664244540618981, 40.264824496009695 ], [ -88.658896333331583, 40.263084453687085 ], [ -88.641545610520978, 40.260963314223012 ], [ -88.625188022240366, 40.251465177202483 ], [ -88.609303391217409, 40.238899056649942 ], [ -88.552156923359249, 40.230162565755634 ], [ -88.527328858551556, 40.223631343199706 ], [ -88.462782151992144, 40.212683008598418 ], [ -88.411464028519617, 40.205312867131163 ], [ -88.397769460533866, 40.198522797794482 ], [ -88.387103014636594, 40.19298373717173 ], [ -88.36544210155941, 40.187334637531137 ], [ -88.312125817391546, 40.169202313064112 ], [ -88.287313705558219, 40.148881018203042 ], [ -88.283704541836499, 40.146042973147019 ], [ -88.273382072923212, 40.138752848416637 ], [ -88.258000390352279, 40.134923729242587 ], [ -88.243396664916318, 40.134770762432936 ], [ -88.219317297712649, 40.134950038753644 ], [ -88.203080375146357, 40.134893223192648 ], [ -88.195473938751746, 40.133741299219196 ], [ -88.187439471814017, 40.130941366133221 ], [ -88.177772892213937, 40.122892408957973 ], [ -88.173782658503384, 40.121061440932067 ], [ -88.166564244580726, 40.120103519324296 ], [ -88.15167139863884, 40.120252698773683 ], [ -87.959094951206581, 40.120033778195975 ], [ -87.940455119670744, 40.120216899093407 ], [ -87.918436144546931, 40.123505045960357 ], [ -87.902619438220086, 40.123955148727866 ], [ -87.82479595780471, 40.124684652181209 ], [ -87.750001607857584, 40.127626137387772 ], [ -87.72429776701766, 40.127336230026195 ], [ -87.711739361398187, 40.123468275195947 ], [ -87.710846332589028, 40.123174278478416 ], [ -87.693915789811101, 40.115373343263826 ], [ -87.67571220902181, 40.105516419523411 ], [ -87.658606651203456, 40.104727489260171 ], [ -87.635823906380196, 40.104936581174883 ], [ -87.625020551508683, 40.10609662298328 ], [ -87.60967003695967, 40.114076669472716 ], [ -87.592335469095104, 40.11471373508703 ], [ -87.554622234353161, 40.115595877865161 ], [ -87.537935685490694, 40.11739593599517 ], [ -87.531694480687705, 40.117777958432981 ], [ -87.475555787965263, 40.118518280557609 ], [ -87.45173614420699, 40.120688467154615 ], [ -87.407179943722355, 40.122313823923982 ], [ -87.330684890629954, 40.122169454529072 ], [ -87.325458747171282, 40.122860489975068 ], [ -87.320613605666637, 40.125309502447791 ], [ -87.312274371602385, 40.127357546554521 ], [ -87.290507806016848, 40.123348770613219 ], [ -87.242929659646634, 40.124310141485253 ], [ -87.233156586889677, 40.124261215224067 ], [ -87.212167457401875, 40.11926044966264 ], [ -87.146141960446627, 40.119489952691346 ], [ -87.123818805401214, 40.11689217382753 ], [ -87.091957597631719, 40.109926564676634 ], [ -87.051110330431925, 40.100093112892814 ], [ -87.013321045078769, 40.099181455071978 ], [ -86.942787567904745, 40.089461519956103 ], [ -86.920310423849031, 40.083892551789837 ], [ -86.903938318607601, 40.079539585662282 ], [ -86.888557217065951, 40.07598860566894 ], [ -86.863433045827122, 40.071422609522095 ], [ -86.827963818307708, 40.058211808631725 ], [ -86.821875780822666, 40.055022870054628 ], [ -86.811163721814239, 40.04624206821925 ], [ -86.784247566185314, 40.024521571865314 ], [ -86.752669355082318, 40.007530944584296 ], [ -86.695379338156172, 39.986322230622861 ], [ -86.662296657519775, 39.973954327843245 ], [ -86.62964282891879, 39.946763614063343 ], [ -86.605380223275773, 39.937173685839674 ], [ -86.583414591292254, 39.922875820623922 ], [ -86.572748268095211, 39.91587288588628 ], [ -86.548768449717102, 39.895754085377945 ], [ -86.541551223559082, 39.892283112186121 ], [ -86.508217210166521, 39.881273170943857 ], [ -86.50002297149706, 39.879725170574588 ], [ -86.440350838202306, 39.879472493199465 ], [ -86.42893736184665, 39.87506242820622 ], [ -86.414135683689921, 39.865472408168401 ], [ -86.40494930315036, 39.862092360449829 ], [ -86.392398823306152, 39.860032257671229 ], [ -86.382052409199915, 39.857144193738769 ], [ -86.363466552536309, 39.844712207142315 ], [ -86.340439565676107, 39.834054161077248 ], [ -86.327492052530872, 39.830731093830387 ], [ -86.313896510647211, 39.827039030139076 ], [ -86.301566923445918, 39.81751709322495 ], [ -86.281470082527946, 39.809457065531369 ], [ -86.275243798630214, 39.805448089398645 ], [ -86.275243730856729, 39.801076176791732 ], [ -86.270437315103734, 39.785291452818825 ], [ -86.270437228910055, 39.779729564904208 ], [ -86.269727083284423, 39.771962715909297 ], [ -86.266850870212394, 39.764814838481733 ], [ -86.264660694328413, 39.758489950697324 ], [ -86.264470561561708, 39.748419147784489 ], [ -86.264454615631479, 39.730028448355483 ], [ -86.264500667752344, 39.713015726757718 ], [ -86.26421868166689, 39.705099854731131 ], [ -86.261120585863651, 39.702002890070389 ], [ -86.250035235745585, 39.694594960969255 ], [ -86.239582960977188, 39.692228983297056 ], [ -86.205867047752093, 39.692545920056588 ], [ -86.186457505774044, 39.696001816281061 ], [ -86.164956892774967, 39.701521656320786 ], [ -86.158449715033541, 39.701594640419657 ], [ -86.148813464533134, 39.699484666594692 ], [ -86.138360186824556, 39.698366670519846 ], [ -86.108353336449397, 39.703585481044279 ], [ -86.104805234294517, 39.70437145332145 ], [ -86.082435627806831, 39.70374141711806 ], [ -86.074470410624457, 39.703703399659773 ], [ -86.068511237876635, 39.705034350170507 ], [ -86.060187977988065, 39.70921921619513 ], [ -86.049170580197739, 39.721185853976749 ], [ -86.044729368610632, 39.732133531829852 ], [ -86.032545028806595, 39.732057487016625 ], [ -86.022763790511348, 39.727983568661429 ], [ -86.001882372586365, 39.709925042229152 ], [ -85.98828626701831, 39.693567536943 ], [ -85.952183843493927, 39.668765251213578 ], [ -85.943844745713463, 39.662357426029551 ], [ -85.932888586553148, 39.657485550239976 ], [ -85.880313851436739, 39.625046327255028 ], [ -85.838794242972014, 39.59548694784602 ], [ -85.783640360751221, 39.555005658264847 ], [ -85.775606216264364, 39.550966706679816 ], [ -85.758141900244169, 39.541505818254528 ], [ -85.741616528364617, 39.529509018052757 ], [ -85.735665359731726, 39.526297078209957 ], [ -85.734719329790849, 39.52674706779262 ], [ -85.735024341490188, 39.525938084875648 ], [ -85.723336004903032, 39.519312205088895 ], [ -85.708549569996848, 39.50955837609304 ], [ -85.667609538856553, 39.47539074389374 ], [ -85.644277881944845, 39.459807866705049 ], [ -85.629682419773829, 39.453219910085821 ], [ -85.593983221935801, 39.437759011848698 ], [ -85.58453089764761, 39.431308065788635 ], [ -85.569339372597753, 39.412780244990621 ], [ -85.55153169578027, 39.397720382476059 ], [ -85.533464958476387, 39.374320616142299 ], [ -85.523775543764188, 39.367080682248421 ], [ -85.510483971294121, 39.36262871108687 ], [ -85.479461899746966, 39.362319745646971 ], [ -85.475280772293345, 39.362228756530556 ], [ -85.470184614442417, 39.361534776412057 ], [ -85.451950022051818, 39.353488910062396 ], [ -85.426245176669028, 39.34251809229432 ], [ -85.396680214079424, 39.334340249967099 ], [ -85.374966455788879, 39.321709437177567 ], [ -85.363690073181004, 39.317551507291512 ], [ -85.350818657411963, 39.316109550941199 ], [ -85.29641194717091, 39.316719662365756 ], [ -85.233864190158897, 39.31519087330377 ], [ -85.225670027161257, 39.313080943653112 ], [ -85.217414837061426, 39.308481041188088 ], [ -85.183318115915071, 39.29665137123429 ], [ -85.169622786348427, 39.288621541397916 ], [ -85.138678144460044, 39.280550818409687 ], [ -85.130055981888788, 39.279821879065487 ], [ -85.088742253779557, 39.280673120710098 ], [ -85.069889971434677, 39.284964185257266 ], [ -85.013369970204607, 39.285281523486191 ], [ -84.999934770656779, 39.288149570049505 ], [ -84.975588984451733, 39.287303852884264 ], [ -84.968393652959151, 39.280063020791225 ], [ -84.96028337311283, 39.278572129392828 ], [ -84.938828607401277, 39.272953436460263 ], [ -84.934632470259217, 39.272743485796852 ], [ -84.90429753536246, 39.275074796524223 ], [ -84.868453393631555, 39.275265194421607 ], [ -84.861769235262386, 39.278874226491986 ], [ -84.856887102972351, 39.280404263020415 ], [ -84.831922290840382, 39.279355554333627 ], [ -84.819577851485775, 39.276440726321553 ], [ -84.817914789000284, 39.275841751886702 ], [ -84.813321613425799, 39.274003824610041 ], [ -84.806332269352325, 39.266366991563814 ], [ -84.803776152929998, 39.264185045440634 ], [ -84.800297000795183, 39.261625113958388 ], [ -84.779583107288587, 39.245763557657696 ], [ -84.769251719916284, 39.239957779015739 ], [ -84.762240461719074, 39.23627692416305 ], [ -84.755396183504089, 39.229678120776832 ], [ -84.73896268488275, 39.220156431647027 ], [ -84.713510016774151, 39.207568833577575 ], [ -84.70797888555407, 39.206355892757756 ], [ -84.685662468164708, 39.214381903595267 ], [ -84.680825361743004, 39.214297938359806 ], [ -84.677300264180218, 39.211891004509226 ], [ -84.676018214314325, 39.209324057923133 ], [ -84.673050050710941, 39.197693279939017 ], [ -84.669540959009666, 39.195869334913681 ], [ -84.66433785462192, 39.196888351944239 ], [ -84.659126744407885, 39.197243380564316 ], [ -84.650428539742606, 39.19535847070928 ], [ -84.644500365014878, 39.189804604424232 ], [ -84.639617242455813, 39.187774670870283 ], [ -84.603339435374068, 39.185070952859448 ], [ -84.596854277200904, 39.182816032026253 ], [ -84.590308101574365, 39.178487145016895 ], [ -84.571592543080371, 39.158532585797971 ], [ -84.566495426449436, 39.157574632593573 ], [ -84.558553286434147, 39.161515618893937 ], [ -84.554731207810235, 39.161958635617644 ], [ -84.542553887736531, 39.154153833806987 ], [ -84.540554815621562, 39.150250907184102 ] ], [ [ -90.525114288616919, 41.596273346363624 ], [ -90.522031100704865, 41.586362505980688 ], [ -90.522015854485034, 41.554853887806971 ], [ -90.521664801274341, 41.549673954960006 ], [ -90.513867330657916, 41.526183336436198 ], [ -90.513714316474889, 41.525103351369886 ], [ -90.513043247530447, 41.519522427027646 ], [ -90.511082097343774, 41.50974156921361 ], [ -90.509327016883176, 41.507811614122282 ], [ -90.506526813778578, 41.494055788075158 ], [ -90.495166273862253, 41.479552989423119 ], [ -90.494876213053516, 41.471534050734491 ], [ -90.495250147039926, 41.457855152840288 ], [ -90.491068964478671, 41.457676166137482 ], [ -90.47788537093146, 41.45412423060769 ], [ -90.465494834043568, 41.454273264893935 ], [ -90.453927323788264, 41.452903308293926 ], [ -90.441513788007143, 41.453403339997315 ], [ -90.432129384099738, 41.45397236252073 ], [ -90.413612593228052, 41.456123399189494 ], [ -90.395560847718073, 41.462524402397875 ], [ -90.387717508784291, 41.462783422845533 ], [ -90.381811239014525, 41.460525456786755 ], [ -90.363713357148825, 41.44424463161323 ], [ -90.357839087945067, 41.441826666697743 ], [ -90.348950696280767, 41.440815699763952 ], [ -90.329944869567868, 41.440475756691249 ], [ -90.328982802621482, 41.436195791831999 ], [ -90.328616426815969, 41.375066255490268 ], [ -90.334392407609144, 41.329316585094155 ], [ -90.333774181172529, 41.29542684331367 ], [ -90.333781089976938, 41.2798969608072 ], [ -90.329775818365903, 41.263204098682955 ], [ -90.329783741169294, 41.250036198308464 ], [ -90.331592007036917, 41.230745312877119 ], [ -90.332217521941686, 41.180437623759268 ], [ -90.332599717039798, 41.161916737966507 ], [ -90.331088759314582, 41.151357806979867 ], [ -90.334843643303287, 41.074927274861992 ], [ -90.333775759137708, 41.058825376926983 ], [ -90.336232365188749, 40.986838807867059 ], [ -90.336370359610797, 40.983878822997241 ], [ -90.335378299211072, 40.97613886371591 ], [ -90.331380127283765, 40.965136922699209 ], [ -90.333455135472121, 40.94708601360783 ], [ -90.332044068407896, 40.941017044850028 ], [ -90.326199861020086, 40.936333069212509 ], [ -90.307438214411462, 40.924888124170714 ], [ -90.303143070878804, 40.923397130521941 ], [ -90.263582778588884, 40.918537144028747 ], [ -90.257387575342875, 40.916599149944943 ], [ -90.24829325422219, 40.91141915998729 ], [ -90.238770833945864, 40.905849143512924 ], [ -90.227860358755947, 40.9030991108298 ], [ -90.168608792564783, 40.902716882347995 ], [ -90.160803456079051, 40.901767854432116 ], [ -90.096240736886486, 40.881709636312031 ], [ -90.089160447996321, 40.878459611997705 ], [ -90.066499498802301, 40.875438520870865 ], [ -90.02874794915563, 40.866748367992919 ], [ -89.985426174378162, 40.851596234420882 ], [ -89.927677534511105, 40.850985173843597 ], [ -89.867157940779592, 40.826297126301732 ], [ -89.853424375777024, 40.817557118429619 ], [ -89.837997716446978, 40.811236107632745 ], [ -89.824439152923205, 40.803538100021299 ], [ -89.811873606543884, 40.799765090759699 ], [ -89.798079035339796, 40.791758083832271 ], [ -89.777204121586394, 40.786456068511939 ], [ -89.768734776609037, 40.780848065318771 ], [ -89.750102984895349, 40.77301705497355 ], [ -89.686356450887217, 40.747577119873434 ], [ -89.667641750644833, 40.742488172256898 ], [ -89.657364354939332, 40.740336195509826 ], [ -89.628958210003958, 40.737014236699906 ], [ -89.624335061043936, 40.734835258331493 ], [ -89.620214989087799, 40.730227301898296 ], [ -89.621741328998169, 40.718036412016964 ], [ -89.61991844948426, 40.709304492240527 ], [ -89.61547032039303, 40.706782517371209 ], [ -89.606268936031697, 40.706755522173644 ], [ -89.595831547319932, 40.704703546152388 ], [ -89.594259523030743, 40.702937563137894 ], [ -89.59304654190025, 40.699977590912233 ], [ -89.586607419125357, 40.69384365064284 ], [ -89.583761416384789, 40.688998696762589 ], [ -89.573934463109111, 40.670218875611482 ], [ -89.570646425156085, 40.666259914218415 ], [ -89.557508278489564, 40.650577068030394 ], [ -89.518323163332582, 40.633037259359298 ], [ -89.484302109827624, 40.6206473087936 ], [ -89.471301534085711, 40.621902230083371 ], [ -89.441141300249512, 40.620701086693543 ], [ -89.422875523515685, 40.621226987839862 ], [ -89.327641519219796, 40.6223064881125 ], [ -89.300655403484896, 40.621466357816665 ], [ -89.274744308573247, 40.622275216641114 ], [ -89.250062363229432, 40.614817164901645 ], [ -89.227181440977802, 40.609595063731525 ], [ -89.198371200426621, 40.609857867822988 ], [ -89.188719798906959, 40.608766812344484 ], [ -89.179281431004398, 40.605646774624468 ], [ -89.159772706565107, 40.596315714513167 ], [ -89.149983359604477, 40.590338690721516 ], [ -89.139897045691995, 40.580675688792809 ], [ -89.102221757885175, 40.554647574331582 ], [ -89.076921853429099, 40.54082744894955 ], [ -89.063127279152553, 40.539827337944011 ], [ -89.0277717965253, 40.5381560462613 ], [ -89.024429672577327, 40.536745024088688 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I75\", \"DIST_MILES\": 1778.630000, \"DIST_KM\": 2862.430000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -84.360520970736857, 46.508451970156251 ], [ -84.364107323934206, 46.498721018159273 ], [ -84.369272562021592, 46.492571950090387 ], [ -84.379764077103289, 46.484350873653973 ], [ -84.382045171669873, 46.480692830275324 ], [ -84.383288081750067, 46.46294258074078 ], [ -84.383578030232968, 46.455420474070728 ], [ -84.38759109685742, 46.438562248897682 ], [ -84.41439391269526, 46.374398445149005 ], [ -84.428524241649072, 46.335140948354052 ], [ -84.433003397954053, 46.328327871469504 ], [ -84.49576500152962, 46.282127503061503 ], [ -84.530007481340405, 46.264130043883839 ], [ -84.558343523074782, 46.238749416194743 ], [ -84.561425533016305, 46.230609238671555 ], [ -84.561386762598275, 46.187177412019807 ], [ -84.561348247104902, 46.158150859573823 ], [ -84.563858250469067, 46.151364717125219 ], [ -84.57021446407451, 46.145795578718428 ], [ -84.625048664609423, 46.118774822369438 ], [ -84.63483802540398, 46.112354666966361 ], [ -84.683323351544416, 46.056903557570038 ], [ -84.738050845471449, 45.992994490788334 ], [ -84.752020281616709, 45.964410238611492 ], [ -84.754408200677872, 45.940534038721992 ], [ -84.73946127573025, 45.911961904459879 ], [ -84.747243475196512, 45.890084721904309 ], [ -84.739858038699055, 45.879410668638471 ], [ -84.733319600535381, 45.863362576245073 ], [ -84.728299314900966, 45.857491552714535 ], [ -84.724698102044442, 45.852261529182904 ], [ -84.723538000239202, 45.846341492099384 ], [ -84.72890097146481, 45.81010921586622 ], [ -84.732311955797925, 45.787423040025267 ], [ -84.733158950646441, 45.781631994918264 ], [ -84.734302943176331, 45.773746933334465 ], [ -84.734622947297623, 45.772331921709466 ], [ -84.734958919821054, 45.766799880584749 ], [ -84.73225076150824, 45.763065867183883 ], [ -84.728778558201014, 45.758232850075501 ], [ -84.728511105408003, 45.732952763050612 ], [ -84.728258748006596, 45.717250736137423 ], [ -84.726389518351652, 45.710762731584246 ], [ -84.721285097238422, 45.702331733775502 ], [ -84.71657778160926, 45.697811740332867 ], [ -84.686753073674794, 45.681831789002935 ], [ -84.639974540624479, 45.661422823233863 ], [ -84.635694261795692, 45.656982810630787 ], [ -84.634258579812638, 45.625011655962716 ], [ -84.631649369176628, 45.620033633353763 ], [ -84.622439795382817, 45.611091592526876 ], [ -84.620883649731326, 45.606983571131302 ], [ -84.620272485885835, 45.546852247014961 ], [ -84.615618071679393, 45.535152174130921 ], [ -84.615387058334363, 45.458290317435193 ], [ -84.610633616705272, 45.450489380452474 ], [ -84.606368285900459, 45.445510423474332 ], [ -84.607115960315284, 45.434452519057963 ], [ -84.601927286384864, 45.419910654825294 ], [ -84.60693891003919, 45.402000800636763 ], [ -84.607303989256195, 45.372910051098067 ], [ -84.614177708120309, 45.355771157827604 ], [ -84.608020021076911, 45.341923314104271 ], [ -84.603304313579969, 45.325642491776236 ], [ -84.590746312072667, 45.309662747258749 ], [ -84.593170524361199, 45.25091328705107 ], [ -84.590980349143194, 45.246954305567414 ], [ -84.584189956174129, 45.240644349562487 ], [ -84.582549806985085, 45.236555341801093 ], [ -84.584906799414483, 45.231733282922391 ], [ -84.616523608397642, 45.208451842051012 ], [ -84.62202469001754, 45.200730767044568 ], [ -84.630683761893764, 45.18487265537965 ], [ -84.637634926276732, 45.177533593198973 ], [ -84.648163236557991, 45.169350518897922 ], [ -84.66470479778053, 45.159813431196945 ], [ -84.667832879913348, 45.156361419258829 ], [ -84.670243852804319, 45.147881417844914 ], [ -84.672394536677288, 45.121422444307193 ], [ -84.674614587235169, 45.118081446270672 ], [ -84.684479950596398, 45.111863450454578 ], [ -84.68718901486514, 45.107651460097358 ], [ -84.686982762447641, 45.091134503192585 ], [ -84.690911814751075, 45.081772536108424 ], [ -84.688309390715901, 45.061371586085478 ], [ -84.689950068308534, 45.033574672474032 ], [ -84.688209890312024, 45.027493677737709 ], [ -84.685287589328297, 45.017331682201714 ], [ -84.685638325905401, 44.996712750326175 ], [ -84.684471244081124, 44.994122757075203 ], [ -84.677153812310635, 44.987828734804395 ], [ -84.672331529876956, 44.983502723812101 ], [ -84.669516345541552, 44.977902741381534 ], [ -84.673888445826975, 44.960030908698769 ], [ -84.666830001371494, 44.946633957413411 ], [ -84.666021930793931, 44.941952987700716 ], [ -84.668372016066428, 44.937364038220508 ], [ -84.680037505309727, 44.926294191868294 ], [ -84.688673835447702, 44.91547531510961 ], [ -84.691992933397898, 44.90820538019895 ], [ -84.687758600273156, 44.891382470240714 ], [ -84.688811533679115, 44.877054569355899 ], [ -84.691657572389104, 44.866174650149048 ], [ -84.700118875486609, 44.858019726398211 ], [ -84.702971897477553, 44.846552802344426 ], [ -84.712676152939466, 44.829733916165509 ], [ -84.711378942582883, 44.813346004992738 ], [ -84.714575805008138, 44.785823155357171 ], [ -84.708182287671875, 44.75700332316373 ], [ -84.708319130255518, 44.73052551164681 ], [ -84.699972771927904, 44.719603619094592 ], [ -84.698942711951531, 44.715052657640769 ], [ -84.698919630573769, 44.698752785205251 ], [ -84.694990389580411, 44.678733956008571 ], [ -84.695775379576574, 44.670936014615243 ], [ -84.697690395060405, 44.660057092751337 ], [ -84.700055461564659, 44.656265112960135 ], [ -84.705106607831993, 44.649086147924372 ], [ -84.706861640081257, 44.642887188194244 ], [ -84.709096498032721, 44.598404518222139 ], [ -84.70800541728957, 44.590034587852976 ], [ -84.705427268272757, 44.57856368974668 ], [ -84.706655230512482, 44.562225808497985 ], [ -84.703222060466246, 44.552517903460839 ], [ -84.697590826987437, 44.545635990941861 ], [ -84.674747934850828, 44.528207273753303 ], [ -84.66053335313407, 44.511239509370725 ], [ -84.645067641349911, 44.492936760031768 ], [ -84.62054648333698, 44.475477055942775 ], [ -84.604462619302097, 44.45844829703104 ], [ -84.597733245405081, 44.450788404024003 ], [ -84.594352990462696, 44.443106486866952 ], [ -84.600974775973668, 44.416658630915222 ], [ -84.597480177153699, 44.389387861099735 ], [ -84.594358944839357, 44.382688937199347 ], [ -84.573323728581158, 44.35845830278538 ], [ -84.556522813151602, 44.342997573530717 ], [ -84.518274872031796, 44.317409134280425 ], [ -84.510095506249073, 44.314800233022041 ], [ -84.500269102346351, 44.313579335741821 ], [ -84.472175610984252, 44.314098298117649 ], [ -84.460045011435781, 44.316498261097742 ], [ -84.450431506940888, 44.316940244686478 ], [ -84.424261006077487, 44.312408252659324 ], [ -84.409810216720643, 44.311798240101609 ], [ -84.386248886116718, 44.309078236269826 ], [ -84.376963306579384, 44.305839255720684 ], [ -84.369607804162541, 44.301620287314428 ], [ -84.354180728120156, 44.292259359952325 ], [ -84.342529971716758, 44.287659391935129 ], [ -84.327415069408517, 44.28488940286222 ], [ -84.298917513364117, 44.285168369461957 ], [ -84.29096700000153, 44.282471388306327 ], [ -84.283390403255396, 44.276249443823893 ], [ -84.267963153630348, 44.262859566323556 ], [ -84.247079810262619, 44.254749628522369 ], [ -84.239923443328962, 44.250030664110533 ], [ -84.225601967571777, 44.244400678408461 ], [ -84.216721659396399, 44.237869709116296 ], [ -84.208473317796106, 44.219448827511407 ], [ -84.19225275200094, 44.205448892778598 ], [ -84.186797522974729, 44.191650979012238 ], [ -84.160452587534692, 44.161756122720767 ], [ -84.154455372688318, 44.154000160175158 ], [ -84.131215576019912, 44.131188249484779 ], [ -84.123349304276203, 44.122350285146567 ], [ -84.116727042226174, 44.105748374623829 ], [ -84.104015584315007, 44.084802470498545 ], [ -84.093624235276408, 44.073838506215786 ], [ -84.087887033443522, 44.064912543367171 ], [ -84.076648665907399, 44.054872567116767 ], [ -84.068606391672674, 44.043920606286392 ], [ -84.061518163452916, 44.03801861660709 ], [ -84.054308916726882, 44.027181655746936 ], [ -84.043421562709355, 44.015981681508975 ], [ -84.036897339539792, 44.005280719631017 ], [ -84.01997460598848, 43.993321733073316 ], [ -84.016236150163451, 43.983060792495763 ], [ -84.014151882042981, 43.947382042051345 ], [ -84.019568320648673, 43.925722236371868 ], [ -84.019849829585482, 43.910852349542971 ], [ -84.02001704965096, 43.887491525703936 ], [ -84.022541714005939, 43.875010641212697 ], [ -84.020581075443971, 43.857943752250883 ], [ -84.02080809026755, 43.798614200426201 ], [ -84.025178908101267, 43.788493328977125 ], [ -84.025796708034605, 43.781840387664211 ], [ -84.017388513642814, 43.755462479541514 ], [ -84.016631929930753, 43.738021663282048 ], [ -84.012382255328887, 43.721362821230123 ], [ -84.012586631421854, 43.668701501500863 ], [ -84.008222283571484, 43.662663525914958 ], [ -83.981067792346309, 43.64515348060813 ], [ -83.954866234689021, 43.624222504634211 ], [ -83.947915747270272, 43.616425537370382 ], [ -83.948388116144912, 43.596024797780409 ], [ -83.9494781854916, 43.565484191775724 ], [ -83.948188956083314, 43.559697251567769 ], [ -83.946860841489894, 43.557576264884652 ], [ -83.944953613527787, 43.552541308802475 ], [ -83.944899093683759, 43.536252512066881 ], [ -83.940000486493318, 43.522725630646249 ], [ -83.929654338568625, 43.497632817160266 ], [ -83.928464237662851, 43.494680820548709 ], [ -83.923343857094409, 43.484754821102321 ], [ -83.916835556677512, 43.481572771449187 ], [ -83.909534257201244, 43.47993670549738 ], [ -83.906551103958208, 43.477693687633838 ], [ -83.892535367546898, 43.466375610867019 ], [ -83.890994228042246, 43.462163620294618 ], [ -83.890878994479039, 43.450513688224014 ], [ -83.890932664790824, 43.433664788654902 ], [ -83.891061294388493, 43.414605902862355 ], [ -83.890862986827955, 43.39935499145065 ], [ -83.869071570350314, 43.368714983760789 ], [ -83.864593043220907, 43.350577059201186 ], [ -83.86347177396199, 43.339129122111736 ], [ -83.861029576410161, 43.333796135814445 ], [ -83.854224178083257, 43.326620126367622 ], [ -83.835805098189084, 43.307257107393717 ], [ -83.775361653564985, 43.250075068447259 ], [ -83.770051299501304, 43.241995117864427 ], [ -83.769287878366612, 43.22108733673069 ], [ -83.769112339879442, 43.192724639637134 ], [ -83.768822039541362, 43.177244803405408 ], [ -83.767860717945652, 43.16180296135942 ], [ -83.763602380508516, 43.151244040276836 ], [ -83.763449801660713, 43.120166370522348 ], [ -83.763426779874635, 43.119025382499366 ], [ -83.763151430738148, 43.100566577018185 ], [ -83.763052348379148, 43.096263622047317 ], [ -83.762938224611261, 43.089736690646262 ], [ -83.762471672158497, 43.060485998287533 ], [ -83.754109150780835, 43.044579091339067 ], [ -83.752911997651452, 43.037857151351524 ], [ -83.753788793902572, 43.025196293191883 ], [ -83.747509450440973, 43.016297347556744 ], [ -83.748989248325316, 43.002037499714078 ], [ -83.748898083634003, 42.996449533353669 ], [ -83.739734553362354, 42.9902585421938 ], [ -83.738612492433319, 42.989605542952347 ], [ -83.734157197164649, 42.985447551750624 ], [ -83.733348148312984, 42.984825552892133 ], [ -83.726747681286653, 42.9776965700364 ], [ -83.726023515084648, 42.973538584411486 ], [ -83.725518947745442, 42.957398643354033 ], [ -83.72327570660309, 42.952458659004705 ], [ -83.713677124019142, 42.944363678480045 ], [ -83.691535893609867, 42.928345717114574 ], [ -83.680663321789936, 42.921120735335222 ], [ -83.669653719817632, 42.912846758817068 ], [ -83.653425073557301, 42.907978764994446 ], [ -83.645451592833112, 42.900143791585045 ], [ -83.63405312914773, 42.896076800205968 ], [ -83.619197386194543, 42.885823834388084 ], [ -83.598589422477488, 42.873150878232167 ], [ -83.596201312439902, 42.871685883532592 ], [ -83.591600993296581, 42.865006911739258 ], [ -83.590181576211521, 42.851528973506596 ], [ -83.570969266450476, 42.822870101698584 ], [ -83.569603056194964, 42.81642713218244 ], [ -83.569358944792683, 42.812539150740214 ], [ -83.567008788966177, 42.809018167233091 ], [ -83.539023529265677, 42.788080267616749 ], [ -83.531988130211971, 42.779230312243946 ], [ -83.497151597567836, 42.750017499740395 ], [ -83.491032365330014, 42.745839658649054 ], [ -83.481274092589317, 42.742662835183815 ], [ -83.468669749277041, 42.738959052369687 ], [ -83.452167488064376, 42.740572200778274 ], [ -83.447269422797973, 42.741450236996002 ], [ -83.43390233554257, 42.746798278136509 ], [ -83.419353058764344, 42.746550445989733 ], [ -83.399744664711775, 42.745554684484951 ], [ -83.393511524792842, 42.744780768698895 ], [ -83.374398778693774, 42.73258920532097 ], [ -83.356187211863443, 42.725780523814471 ], [ -83.330139119418192, 42.708001105457697 ], [ -83.320334834426845, 42.705262251187065 ], [ -83.306899567586655, 42.705208387459592 ], [ -83.293960310416495, 42.705151518742902 ], [ -83.284201992059891, 42.701535674501891 ], [ -83.270895526705189, 42.695813896098755 ], [ -83.254934194989346, 42.695463058137072 ], [ -83.243306448072715, 42.683481285021806 ], [ -83.241063188355582, 42.678285363349687 ], [ -83.241093755483206, 42.666174547029932 ], [ -83.238314781469541, 42.641523922985094 ], [ -83.238551535467991, 42.634440030658574 ], [ -83.235864905125197, 42.619292264684958 ], [ -83.232416581599168, 42.613402359558563 ], [ -83.223833185885113, 42.610175421819143 ], [ -83.208550557507394, 42.606551502064399 ], [ -83.197671130424169, 42.60453355166068 ], [ -83.169037199786843, 42.604628596054511 ], [ -83.162734827442335, 42.599951685544902 ], [ -83.159270402479663, 42.591200840703607 ], [ -83.158186326101216, 42.562000341465072 ], [ -83.15582017164688, 42.559826384831275 ], [ -83.151640002102283, 42.558883412100322 ], [ -83.129864312962894, 42.559414460574885 ], [ -83.124005118511988, 42.559303478061885 ], [ -83.119739928691558, 42.557865515191139 ], [ -83.116695674667611, 42.553505601985016 ], [ -83.116535510988939, 42.549049682808473 ], [ -83.115977955803231, 42.533947957022576 ], [ -83.114724869907619, 42.504555492494134 ], [ -83.117555787225811, 42.49897557666997 ], [ -83.115754590521533, 42.488286723227041 ], [ -83.111818306741981, 42.476506892343792 ], [ -83.106125907418772, 42.460817118981282 ], [ -83.096054487572744, 42.455217231109799 ], [ -83.094994334822488, 42.44678734467621 ], [ -83.095024233918338, 42.439405440388924 ], [ -83.094734122929765, 42.4321085362281 ], [ -83.093650988899967, 42.425195630102841 ], [ -83.087760677437331, 42.417955746464102 ], [ -83.079574247760547, 42.408525899636146 ], [ -83.074264003415223, 42.404985965466238 ], [ -83.068640679076353, 42.396956090357115 ], [ -83.069662590729521, 42.388495195808126 ], [ -83.060614050141567, 42.37504540293628 ], [ -83.057912846178553, 42.368388498689029 ], [ -83.053563541823465, 42.359420630129897 ], [ -83.048070201814866, 42.351203755862436 ], [ -83.043743907525609, 42.34323887391168 ], [ -83.052900209617647, 42.339728886041527 ], [ -83.05916340652098, 42.336589903946454 ], [ -83.064481592730104, 42.335097904089558 ], [ -83.073018899015281, 42.333106899181324 ], [ -83.077704068960173, 42.332099895416896 ], [ -83.084509324369904, 42.331187882858337 ], [ -83.085303345737216, 42.33048588911177 ], [ -83.084120221105806, 42.325026964056136 ], [ -83.082724128421219, 42.322430002661079 ], [ -83.082564097377272, 42.320709025515903 ], [ -83.084913122244345, 42.315868079888659 ], [ -83.103186749431345, 42.307991117625996 ], [ -83.119865334627463, 42.300968150543582 ], [ -83.124297476939674, 42.297920174821961 ], [ -83.13010362354143, 42.290558250772627 ], [ -83.14701123762886, 42.283459285129247 ], [ -83.153473444329236, 42.278042333929378 ], [ -83.156105542971048, 42.27704633795436 ], [ -83.161377733365569, 42.274338355434693 ], [ -83.168083930300909, 42.266517435413185 ], [ -83.171106039999245, 42.26483144731619 ], [ -83.178392304507966, 42.260597478353233 ], [ -83.185457521499657, 42.252296564042233 ], [ -83.195268954770384, 42.242775745414598 ], [ -83.212893796814171, 42.227040093867309 ], [ -83.215136936628411, 42.219060293229838 ], [ -83.222164276238544, 42.213117427951815 ], [ -83.229106610823777, 42.207776548818408 ], [ -83.23944512426182, 42.197842783525921 ], [ -83.244107394689834, 42.187189053484502 ], [ -83.242917477275, 42.164572651899284 ], [ -83.241459567499859, 42.138392343398969 ], [ -83.241368821275799, 42.095074483469048 ], [ -83.24171990994023, 42.082962802161916 ], [ -83.253789476893203, 42.068330187551965 ], [ -83.258596622570295, 42.062402342867436 ], [ -83.270795959797383, 42.051156635739957 ], [ -83.287032380762724, 42.037614986290009 ], [ -83.311141992194337, 42.008326744460938 ], [ -83.326759296686831, 41.992594968729613 ], [ -83.34509257960616, 41.970515027539697 ], [ -83.362472855260208, 41.948905116128223 ], [ -83.363083851623657, 41.944217134033217 ], [ -83.358612718753122, 41.932414167093604 ], [ -83.359810722956254, 41.926517190279291 ], [ -83.364830778394946, 41.912296254927874 ], [ -83.371322881895779, 41.902625312622284 ], [ -83.399338384287077, 41.873344556667128 ], [ -83.40882255007655, 41.860213672047038 ], [ -83.430085929934151, 41.829345976601623 ], [ -83.451486351514234, 41.807877267729609 ], [ -83.481127937576929, 41.768826811146603 ], [ -83.481172930192429, 41.764405848793764 ], [ -83.483568959372064, 41.75074498679912 ], [ -83.488985839309237, 41.731931401197023 ], [ -83.492037846770089, 41.727174523165054 ], [ -83.501550987567995, 41.721544725750981 ], [ -83.502619969058827, 41.718595795749259 ], [ -83.50181765295919, 41.69581122964086 ], [ -83.504633668812005, 41.692728319676334 ], [ -83.513750822844756, 41.690451460107006 ], [ -83.544444423166908, 41.688841813039517 ], [ -83.552348561795412, 41.686964928548214 ], [ -83.555568630204931, 41.68723595746328 ], [ -83.562381781042376, 41.688384009190216 ], [ -83.569613885210316, 41.684432150496221 ], [ -83.573848900288837, 41.677669305019016 ], [ -83.57280280320235, 41.67053541175958 ], [ -83.568606680905177, 41.667316424428236 ], [ -83.564578575110502, 41.665378418336246 ], [ -83.564181525533414, 41.661598478066708 ], [ -83.562487451330966, 41.658111521071724 ], [ -83.55086013782298, 41.652397513398299 ], [ -83.549266081802855, 41.650508532064904 ], [ -83.54902201493033, 41.645133623671924 ], [ -83.548494953993583, 41.64082769433616 ], [ -83.545877866690645, 41.638259717344731 ], [ -83.542261721588289, 41.632690785913738 ], [ -83.541254522458416, 41.61764904514412 ], [ -83.539644433117942, 41.613198112545646 ], [ -83.540910432560651, 41.610672166705363 ], [ -83.556505587076657, 41.592255594008023 ], [ -83.581217938209946, 41.569189122667865 ], [ -83.585788007224252, 41.564870215954983 ], [ -83.603534308024408, 41.550107531881238 ], [ -83.615519504222149, 41.538148761672126 ], [ -83.616900528754925, 41.536909785342431 ], [ -83.620944562955685, 41.528924916474303 ], [ -83.622050532218879, 41.522120018099024 ], [ -83.622263871784128, 41.445464284888281 ], [ -83.615762544311693, 41.428690265576336 ], [ -83.615869168748972, 41.385352233099404 ], [ -83.616152055971767, 41.371512222457618 ], [ -83.621416074426108, 41.356230204135265 ], [ -83.622652065611007, 41.351092197789811 ], [ -83.625620028731959, 41.336863179304594 ], [ -83.627015829445511, 41.308993147812266 ], [ -83.642441994150971, 41.274733059737336 ], [ -83.647356087730529, 41.268424033136178 ], [ -83.648523001587833, 41.253951005825293 ], [ -83.650011046277385, 41.25395099996453 ], [ -83.650003009435267, 41.248961000602741 ], [ -83.652925065178181, 41.240271044479563 ], [ -83.654054066842292, 41.231493096146423 ], [ -83.649682882297412, 41.217501203591006 ], [ -83.649461689310485, 41.167662524027762 ], [ -83.651192723003916, 41.162341550998725 ], [ -83.658005897304875, 41.152323587024888 ], [ -83.658875909088735, 41.14814261019248 ], [ -83.660035702942693, 41.08145103227681 ], [ -83.660699700109305, 41.074852071718198 ], [ -83.66845889005512, 41.058784141736652 ], [ -83.672532990665061, 41.050312178626783 ], [ -83.672990927803298, 41.028171318123086 ], [ -83.675225989161788, 41.025062328454531 ], [ -83.682321209557102, 41.022434314967796 ], [ -83.686632337010266, 41.018863319339388 ], [ -83.687616355065032, 41.014747341371347 ], [ -83.686067270781777, 41.004650412360625 ], [ -83.688150322127711, 40.999862432616858 ], [ -83.69276645441721, 40.99645241046246 ], [ -83.73666675368294, 40.972541186111329 ], [ -83.803166908839131, 40.923010819305027 ], [ -83.823217636247605, 40.914713719579979 ], [ -83.836478135824137, 40.9140616622118 ], [ -83.840789295347705, 40.912573641107286 ], [ -83.874397536505697, 40.886462445801705 ], [ -83.880196759497579, 40.884615416948705 ], [ -83.895417350270463, 40.88380334932566 ], [ -83.901719594588201, 40.881453317049989 ], [ -83.929934706594636, 40.862822153499636 ], [ -83.937305004227781, 40.856711107441662 ], [ -83.945254325385164, 40.852850063586715 ], [ -83.959415909891746, 40.841810975398381 ], [ -83.961300001360414, 40.833082946855477 ], [ -83.962200043257397, 40.830129935990001 ], [ -83.966351216496307, 40.827981912284521 ], [ -83.98269388518807, 40.827211836646462 ], [ -83.988134113800243, 40.824800806294192 ], [ -84.070007730628603, 40.771158269710391 ], [ -84.075462931397155, 40.765867230150455 ], [ -84.075646027213864, 40.755811206247095 ], [ -84.075790879127283, 40.730507961872803 ], [ -84.075630579876602, 40.702324630223849 ], [ -84.080741693978112, 40.699086568727459 ], [ -84.089996960490183, 40.698956525010821 ], [ -84.107209458701732, 40.698956446548017 ], [ -84.1107725526183, 40.698117420660857 ], [ -84.122811783784257, 40.687630246390391 ], [ -84.13095988592903, 40.675919077428333 ], [ -84.13142469273815, 40.657653868657043 ], [ -84.131348575884985, 40.647506754115604 ], [ -84.132714514603379, 40.638698648886411 ], [ -84.157105763740134, 40.601558137975886 ], [ -84.161866781002558, 40.591918013614467 ], [ -84.169999796260385, 40.574526792836359 ], [ -84.169915558730949, 40.55474757574607 ], [ -84.169754430631073, 40.544337461855072 ], [ -84.169105614552691, 40.482569104469107 ], [ -84.16901263948337, 40.420206560194302 ], [ -84.161017049382963, 40.39589978928619 ], [ -84.158894985597314, 40.331478295882924 ], [ -84.159931943224876, 40.326999320998198 ], [ -84.1631979572104, 40.322311327339015 ], [ -84.178457181527563, 40.3105082725098 ], [ -84.180692109779045, 40.302040309935137 ], [ -84.18341579580995, 40.277118453158721 ], [ -84.183087581674911, 40.263900546728053 ], [ -84.183506421074725, 40.252830617423776 ], [ -84.195523665896587, 40.235900796681833 ], [ -84.208340939407293, 40.194874483949008 ], [ -84.21723717725763, 40.177689706782068 ], [ -84.222570330949353, 40.170384774343859 ], [ -84.223981367697306, 40.164780864542699 ], [ -84.220304233236362, 40.151002196065072 ], [ -84.216916101045896, 40.135843555059047 ], [ -84.215574049796615, 40.131353667866456 ], [ -84.216481068329131, 40.124330794506442 ], [ -84.233053591130044, 40.089404193893699 ], [ -84.233159579043033, 40.069445580276813 ], [ -84.232282533022669, 40.052031936672428 ], [ -84.230520436662346, 40.017719643518078 ], [ -84.230024411013261, 40.010753790673895 ], [ -84.227842321291135, 40.005912933600975 ], [ -84.215306769712939, 39.995328415225941 ], [ -84.19678888810968, 39.981111060910486 ], [ -84.191150603840981, 39.975187275226283 ], [ -84.19076157540151, 39.973959303246055 ], [ -84.18973849822541, 39.970503380259501 ], [ -84.189372381356932, 39.96099654234466 ], [ -84.189014193978736, 39.944917810541398 ], [ -84.188540935669906, 39.922656179965976 ], [ -84.187884577182388, 39.891715690557938 ], [ -84.188929335096432, 39.865612100570935 ], [ -84.189035844259493, 39.819752844856716 ], [ -84.189828645361686, 39.798631183497463 ], [ -84.183709317636769, 39.788945373192476 ], [ -84.186013251394627, 39.7749685850739 ], [ -84.188203308260199, 39.772874610140022 ], [ -84.194787520193245, 39.770417625790394 ], [ -84.19828962468624, 39.768372647736712 ], [ -84.201081644739773, 39.760979765372937 ], [ -84.202653666513456, 39.757794816109296 ], [ -84.205529651860644, 39.74780095026432 ], [ -84.205094428423024, 39.733609986732503 ], [ -84.207612439303517, 39.728341993945541 ], [ -84.213822523972439, 39.719533999945547 ], [ -84.226327847064383, 39.712533983353474 ], [ -84.228532869474378, 39.709149984658275 ], [ -84.230142488227159, 39.681494037925759 ], [ -84.231637474765947, 39.677542041317416 ], [ -84.23553635170272, 39.661898059856483 ], [ -84.23172887755446, 39.639654118944122 ], [ -84.229553586499051, 39.625448157122179 ], [ -84.232681506010749, 39.614405166770112 ], [ -84.237808376214772, 39.59685317898689 ], [ -84.24231736672688, 39.588240174404341 ], [ -84.269783773191136, 39.562569915465744 ], [ -84.284936018607965, 39.548917758633337 ], [ -84.314599581107046, 39.526791488117972 ], [ -84.321321604864991, 39.515321469948404 ], [ -84.324105392262467, 39.492375517456914 ], [ -84.327386247098829, 39.45615546719614 ], [ -84.336061402032072, 39.440030382398724 ], [ -84.339143459435803, 39.434769354013582 ], [ -84.35230470446669, 39.412980241692594 ], [ -84.361047859741248, 39.398068175050717 ], [ -84.363244876007585, 39.391293160588006 ], [ -84.364907838949989, 39.37948715321005 ], [ -84.366410790259593, 39.366818148371031 ], [ -84.37347590823056, 39.354630106341268 ], [ -84.384043155813444, 39.346318042145683 ], [ -84.400553591218952, 39.340137941389948 ], [ -84.41128085861618, 39.334366881437717 ], [ -84.432796312993077, 39.313503790216231 ], [ -84.4397844003432, 39.299846781221426 ], [ -84.441753377865609, 39.290447792611673 ], [ -84.440410093234604, 39.261059867883496 ], [ -84.451160241766118, 39.240090006876059 ], [ -84.44988614498331, 39.229878175512908 ], [ -84.451686173600251, 39.226426222315382 ], [ -84.459697344820555, 39.218659308094132 ], [ -84.461688355974886, 39.211816406587559 ], [ -84.463290379972847, 39.20875644699727 ], [ -84.468898478420257, 39.20056254777937 ], [ -84.47568162049096, 39.19456260688267 ], [ -84.477397655862688, 39.193005622231503 ], [ -84.481044731607071, 39.189843652289866 ], [ -84.486232791886678, 39.178590798252223 ], [ -84.48987985619523, 39.17406584787409 ], [ -84.49671601676657, 39.171490849636875 ], [ -84.503010151494735, 39.16933984508595 ], [ -84.51108227058765, 39.161866908419832 ], [ -84.521031480191525, 39.161343854635426 ], [ -84.534931745530812, 39.156949836840923 ], [ -84.53801479328888, 39.154511855983195 ], [ -84.540554815621562, 39.150250907184102 ], [ -84.535023631606975, 39.141447078061269 ], [ -84.534794620143629, 39.14056609316313 ], [ -84.534115588040606, 39.138204134011488 ], [ -84.532582510925749, 39.132238235942751 ], [ -84.535397514222296, 39.124685337334853 ], [ -84.535259462524536, 39.118162439880507 ], [ -84.533688419389065, 39.116831469511297 ], [ -84.531452349142114, 39.113741530185564 ], [ -84.531330299487792, 39.107420629156202 ], [ -84.528362218446645, 39.10492168431945 ], [ -84.525181142078395, 39.103643721567515 ], [ -84.522343074329683, 39.102548754014414 ], [ -84.521092018933302, 39.098600821724865 ], [ -84.521366016247356, 39.097456837885176 ], [ -84.521153004325242, 39.096445854624861 ] ], [ [ -84.256351853197501, 35.868943844542358 ], [ -84.258060919661574, 35.867055817203386 ], [ -84.25854085196616, 35.860387784519737 ], [ -84.267010190870721, 35.851598648264108 ], [ -84.273251313756958, 35.835938505783581 ], [ -84.277157453448353, 35.830586434379725 ], [ -84.278240477497519, 35.828038409672985 ], [ -84.281147621737716, 35.826936368793426 ], [ -84.315291140862556, 35.800655809194296 ], [ -84.346946626746416, 35.780918284878013 ], [ -84.367028487157782, 35.761534895959457 ], [ -84.376541926165643, 35.754576720580125 ], [ -84.394716759126695, 35.732672462948521 ], [ -84.41591978579649, 35.713076192995885 ], [ -84.452641409918698, 35.665777736119765 ], [ -84.475210367678415, 35.636484450344099 ], [ -84.498236409396625, 35.616853143282498 ], [ -84.514610053537439, 35.600294012944275 ], [ -84.515983107256758, 35.598783002941516 ], [ -84.516594130052724, 35.597966998642057 ], [ -84.522613368943894, 35.591328954706746 ], [ -84.630452419923458, 35.484040114570092 ], [ -84.648794287083348, 35.465690977185304 ], [ -84.651609418036074, 35.462982958609722 ], [ -84.691376195076757, 35.425300765242035 ], [ -84.698776483202934, 35.415203751611905 ], [ -84.726823605035776, 35.386352722492198 ], [ -84.734567866234912, 35.375022740765409 ], [ -84.73973298947034, 35.363113776251637 ], [ -84.757525462361627, 35.333004841780998 ], [ -84.76570375164934, 35.327941811038684 ], [ -84.788058642178186, 35.322982685035619 ], [ -84.799198041142091, 35.316196646191102 ], [ -84.805912267139732, 35.310653631418909 ], [ -84.81877550939673, 35.281433708605825 ], [ -84.860578744471169, 35.221341022654798 ], [ -84.866765930030496, 35.212754104648788 ], [ -84.875868198095134, 35.200432223107534 ], [ -84.887083597843841, 35.193940252062994 ], [ -84.902458155665229, 35.186963267381358 ], [ -84.907646337916574, 35.184212278657668 ], [ -84.938866298210201, 35.157864494209122 ], [ -84.948380600685837, 35.151764535444606 ], [ -84.953881785973365, 35.149273544762238 ], [ -84.987176976364808, 35.141083504648044 ], [ -85.004946485643714, 35.130333558204946 ], [ -85.01659682598364, 35.127282496371237 ], [ -85.024646084287397, 35.126839428569511 ], [ -85.02547811077396, 35.126778421829577 ], [ -85.034298401937832, 35.126874338231602 ], [ -85.04118757575165, 35.123124338336019 ], [ -85.044750632339188, 35.118813380393334 ], [ -85.057613687175575, 35.092663734621851 ], [ -85.067012907781347, 35.086453777291055 ], [ -85.110250155173333, 35.074544705954793 ], [ -85.121931449887114, 35.068383757527883 ], [ -85.127195554778353, 35.063653824827064 ], [ -85.131391629886679, 35.059292892974895 ], [ -85.149260055159658, 35.048174036104356 ], [ -85.170424470689809, 35.028944373433276 ], [ -85.179076582428777, 35.017076618779512 ], [ -85.184294691481782, 35.01283470114241 ], [ -85.209686419136716, 35.005945783290969 ], [ -85.211548410833089, 35.001173898928798 ], [ -85.203827089677773, 34.989955108917741 ], [ -85.201453990504348, 34.985881180315189 ], [ -85.196852785748405, 34.975726354897674 ], [ -85.191420567351372, 34.968184492119427 ], [ -85.18483632242615, 34.962794600137705 ], [ -85.170850756174588, 34.943293961483121 ], [ -85.157049257296364, 34.935287142189637 ], [ -85.152479068192676, 34.92845527054947 ], [ -85.146634816480272, 34.918075462571679 ], [ -85.14281966938205, 34.914386538154709 ], [ -85.126958121592324, 34.910354668776023 ], [ -85.108364497919951, 34.908916768644907 ], [ -85.092242936812212, 34.904327912395587 ], [ -85.087542766874748, 34.901966972027928 ], [ -85.081172517619279, 34.895688105852933 ], [ -85.07435126906239, 34.892049197248447 ], [ -85.051355431969895, 34.880269501094283 ], [ -85.032776721133047, 34.86570884013436 ], [ -85.022454332236094, 34.858778010625286 ], [ -85.018700175868815, 34.853979113604936 ], [ -85.017913890841911, 34.813947830429655 ], [ -85.017753854683235, 34.809187916061113 ], [ -85.015663760879704, 34.805578991407245 ], [ -85.004653343951418, 34.798598175048284 ], [ -85.001106190139183, 34.793410287514931 ], [ -85.002059009341465, 34.760939866724023 ], [ -85.002203892729071, 34.738380374969736 ], [ -85.005225963490503, 34.730835560067561 ], [ -85.006865978108607, 34.721157810781214 ], [ -85.006407892272875, 34.704759253844344 ], [ -85.001456649724759, 34.687840733720712 ], [ -84.996985425834453, 34.670473224038112 ], [ -84.986548034821212, 34.659433580671248 ], [ -84.975957567026597, 34.63280435324301 ], [ -84.964322104313624, 34.61580287298677 ], [ -84.956486772699222, 34.600395327403383 ], [ -84.950398459863592, 34.576908985874198 ], [ -84.936221889842173, 34.557035591270733 ], [ -84.921825325910689, 34.540785099693295 ], [ -84.920085242565207, 34.535776241573046 ], [ -84.918765079292328, 34.511656886659601 ], [ -84.920718092173999, 34.493148384765355 ], [ -84.918895040278343, 34.470719047960138 ], [ -84.919650079447877, 34.441948882562173 ], [ -84.920009099609544, 34.425149370341671 ], [ -84.917514017913447, 34.415460665569228 ], [ -84.918758068553743, 34.398733146686091 ], [ -84.915995979945095, 34.382731627194026 ], [ -84.910769800945786, 34.376620832021239 ], [ -84.896738317796363, 34.362560313370395 ], [ -84.887178986522187, 34.355991553464264 ], [ -84.869401369454309, 34.338822143885317 ], [ -84.857323948055026, 34.329182485813995 ], [ -84.824126782475602, 34.295843623652722 ], [ -84.819640623069375, 34.28213404483197 ], [ -84.811561336537949, 34.27304734965 ], [ -84.799116893641397, 34.259345810375592 ], [ -84.786436442462332, 34.252624069311914 ], [ -84.781736280704976, 34.248794197879221 ], [ -84.773374999749706, 34.245315323941099 ], [ -84.764157693864263, 34.240776479515219 ], [ -84.759580553246352, 34.236137614106475 ], [ -84.754743413387118, 34.229446799158829 ], [ -84.753789413906105, 34.222114980398366 ], [ -84.755673508548711, 34.21602711791747 ], [ -84.760999716492606, 34.211537200534877 ], [ -84.762204784412873, 34.205956329418463 ], [ -84.765546967142043, 34.191575660765864 ], [ -84.758733810568231, 34.173925118239822 ], [ -84.755139739256848, 34.162378412871327 ], [ -84.751874645694258, 34.158178528719375 ], [ -84.743253450920903, 34.148027769124234 ], [ -84.739949396576776, 34.141489919626032 ], [ -84.739293422557424, 34.132808126387189 ], [ -84.741467529573754, 34.122458378975303 ], [ -84.74048352199398, 34.118888462478367 ], [ -84.738133483161207, 34.114657558773793 ], [ -84.732007348243414, 34.110629641643435 ], [ -84.729573303781549, 34.10733771482343 ], [ -84.724698264413192, 34.091640077877791 ], [ -84.722203214742478, 34.08935912619576 ], [ -84.713460002268647, 34.088619122619363 ], [ -84.696400584271657, 34.087898098262031 ], [ -84.680927243780445, 34.081302215148625 ], [ -84.659236722706325, 34.079582201050052 ], [ -84.654040595401284, 34.079559188554349 ], [ -84.63314307245426, 34.080917104941889 ], [ -84.628420962612779, 34.080120111440813 ], [ -84.624132876498663, 34.077675156695705 ], [ -84.614145691297708, 34.070328299032298 ], [ -84.602091495004558, 34.05878852967286 ], [ -84.589960265514236, 34.051662657848297 ], [ -84.583223152794005, 34.046249761121402 ], [ -84.570505085156782, 34.02072229722323 ], [ -84.56853714878531, 34.008881556279924 ], [ -84.561624065955471, 34.000928711952369 ], [ -84.556924951421735, 33.99477885590067 ], [ -84.546639704414517, 33.98933996679969 ], [ -84.520203042281281, 33.961569620558187 ], [ -84.516990962443899, 33.957846709671891 ], [ -84.516540934173094, 33.95039990638228 ], [ -84.5151218969783, 33.947855969752908 ], [ -84.504753655618046, 33.941096118470966 ], [ -84.492515246220975, 33.933295282604135 ], [ -84.485488950857444, 33.922755533445205 ], [ -84.473357435407209, 33.901508041203201 ], [ -84.460218902030576, 33.889462296413363 ], [ -84.447515382071657, 33.875317603079054 ], [ -84.437634975205569, 33.86273687832945 ], [ -84.431714730162781, 33.854398061909393 ], [ -84.429303603913041, 33.837808473615326 ], [ -84.418477130470862, 33.80903114566712 ], [ -84.40781070790419, 33.802271253383502 ], [ -84.39826533886152, 33.800779233535735 ], [ -84.393588149839218, 33.795725331793918 ], [ -84.391109048769792, 33.792551395945637 ], [ -84.390231974819955, 33.771242922519086 ], [ -84.39057498146596, 33.767821010189472 ], [ -84.381541624345388, 33.761642104571784 ], [ -84.378405498440259, 33.758418163667635 ], [ -84.379420526899139, 33.752856308369083 ], [ -84.389399864519504, 33.745662562590745 ], [ -84.391886942888192, 33.743823628244229 ], [ -84.39209292324621, 33.740699712554147 ], [ -84.392023879553449, 33.736022836232067 ], [ -84.392336837443708, 33.729901000803125 ], [ -84.393999882685051, 33.728012061930151 ], [ -84.395243869237873, 33.721325247450785 ], [ -84.402225018702353, 33.709637602322012 ], [ -84.405307012940639, 33.69708795377862 ], [ -84.400103744798699, 33.68813815775291 ], [ -84.397974502136236, 33.669660633915065 ], [ -84.394747295776483, 33.659009896743392 ], [ -84.396128287718454, 33.652869067776997 ], [ -84.39789830624062, 33.648310199033439 ], [ -84.400668321718328, 33.63986443885414 ], [ -84.401125267691327, 33.632342640542959 ], [ -84.400500191497997, 33.626272797603995 ], [ -84.398753056334897, 33.617664015655031 ], [ -84.39222170089198, 33.601142417553802 ], [ -84.383584323972869, 33.58858470471958 ], [ -84.378206133621475, 33.585590755835923 ], [ -84.335799766063317, 33.575149812929006 ], [ -84.307066809603953, 33.557343149352526 ], [ -84.284361109915537, 33.549237257596971 ], [ -84.278371927482752, 33.546914291804008 ], [ -84.272245742325239, 33.544579325918399 ], [ -84.267598596691656, 33.540871405568346 ], [ -84.243923792015067, 33.516313043006392 ], [ -84.231907284300107, 33.506582390564432 ], [ -84.226040030677822, 33.500184602797127 ], [ -84.219226852308239, 33.490213715141763 ], [ -84.21486283002784, 33.474203863425807 ], [ -84.207706697648561, 33.457201064477154 ], [ -84.187297073428724, 33.432303539323989 ], [ -84.181498872697603, 33.427332671153735 ], [ -84.169046430251029, 33.417391965969735 ], [ -84.155030926450721, 33.405963332325577 ], [ -84.12564904181194, 33.354954661115315 ], [ -84.121591052887865, 33.32865719873498 ], [ -84.119950037600105, 33.320547378935863 ], [ -84.111725821715169, 33.298338989938401 ], [ -84.106499716019911, 33.2788994978334 ], [ -84.102470573553987, 33.272418741415024 ], [ -84.094887295251766, 33.2612071951811 ], [ -84.085257881911161, 33.246750883832114 ], [ -84.078978433612392, 33.230599810349645 ], [ -84.061010419970614, 33.207492368006022 ], [ -84.059759324674388, 33.202651613224795 ], [ -84.057531128741687, 33.190563196290533 ], [ -84.045674514674843, 33.176274124146474 ], [ -84.040906253874255, 33.167638609223637 ], [ -84.028919616596824, 33.14493483827772 ], [ -84.005633592794837, 33.124367187072075 ], [ -83.99993426424453, 33.098725289560363 ], [ -83.990404799273591, 33.082739036341728 ], [ -83.987833683129722, 33.079809185253922 ], [ -83.951256182394133, 33.053539720175991 ], [ -83.937957685303772, 33.042790325888085 ], [ -83.921508090469857, 33.034970866462885 ], [ -83.909880692221336, 33.027871309526553 ], [ -83.87488357057903, 33.009032549262024 ], [ -83.834423462302951, 32.984184997406786 ], [ -83.827008376697947, 32.971524507368663 ], [ -83.813763142848643, 32.958295117012007 ], [ -83.799297860140513, 32.948274639475763 ], [ -83.781444479822142, 32.940127148291346 ], [ -83.75586976679665, 32.939986514689998 ], [ -83.748194595213647, 32.936877696539447 ], [ -83.742335432532016, 32.933940790129398 ], [ -83.708795525070855, 32.918987225339613 ], [ -83.686074126088158, 32.902729638938773 ], [ -83.659799125590567, 32.871010363306233 ], [ -83.64978106540741, 32.862469523535438 ], [ -83.641838929896196, 32.859009565567398 ], [ -83.637428903104947, 32.855588621123857 ], [ -83.639962010233702, 32.854527658570959 ], [ -83.641885147714973, 32.851853730188608 ], [ -83.643281399158241, 32.844853899386706 ], [ -83.646325601011924, 32.840986007800389 ], [ -83.64724166081136, 32.839838040390219 ], [ -83.656176259429003, 32.827718388534343 ], [ -83.65647344707908, 32.821470540926754 ], [ -83.656214642721139, 32.81444070782797 ], [ -83.659908138222974, 32.800299081893066 ], [ -83.665859461248218, 32.793803297825946 ], [ -83.668193662068404, 32.78848945296491 ], [ -83.70212298357437, 32.765671422694311 ], [ -83.711889453511588, 32.753971867219349 ], [ -83.721723737626377, 32.739373389026397 ], [ -83.730253914955298, 32.715689125894691 ], [ -83.737761064495217, 32.694258785317849 ], [ -83.738463078145998, 32.692244847020248 ], [ -83.744673196741459, 32.673656411495067 ], [ -83.744284197008668, 32.659595776674756 ], [ -83.742766195948704, 32.612804990505943 ], [ -83.743384223151693, 32.579175882287174 ], [ -83.743865246980377, 32.546568745221258 ], [ -83.74362825093381, 32.53201612569449 ], [ -83.742857045992679, 32.494068253114214 ], [ -83.742872968924516, 32.491837361981567 ], [ -83.742803901663351, 32.489922454694465 ], [ -83.742612492437871, 32.478181025441927 ], [ -83.744108288964739, 32.471750350194469 ], [ -83.75352172903095, 32.452372328980807 ], [ -83.754872540605561, 32.4464526140925 ], [ -83.757450018842874, 32.430290391045325 ], [ -83.761249671003313, 32.418517954801381 ], [ -83.76368343884694, 32.410572334288794 ], [ -83.768206563676529, 32.382154690174325 ], [ -83.768998402125732, 32.34665638622706 ], [ -83.767785044390891, 32.336647867528832 ], [ -83.759025280880238, 32.290389109449677 ], [ -83.749341994305055, 32.260349592822209 ], [ -83.743192531433138, 32.24738027779302 ], [ -83.740300379345612, 32.241940577559475 ], [ -83.740209240287172, 32.236260865545361 ], [ -83.744640821426501, 32.217573773224892 ], [ -83.747150237970217, 32.192425024554588 ], [ -83.752192849430017, 32.172235009514118 ], [ -83.761309949415988, 32.123336415052073 ], [ -83.760393910537388, 32.122836446899029 ], [ -83.762468712295643, 32.11198797747344 ], [ -83.762834113934176, 32.086499256645368 ], [ -83.763550987965004, 32.038501663945233 ], [ -83.762344734931006, 32.029393133426773 ], [ -83.757025917144617, 31.993244794032584 ], [ -83.75427992947283, 31.974925185727876 ], [ -83.751784928541483, 31.959935513361405 ], [ -83.747458935040228, 31.935005054958165 ], [ -83.745253927354753, 31.925403264476234 ], [ -83.734053761506601, 31.898124899540296 ], [ -83.72021451776925, 31.858166813322871 ], [ -83.707419249986643, 31.80947689897118 ], [ -83.70462716955511, 31.804673018953281 ], [ -83.651868461859323, 31.735679739775097 ], [ -83.64207118538242, 31.722870983754422 ], [ -83.637143074240015, 31.711579169206388 ], [ -83.627636851876062, 31.690369527982718 ], [ -83.6079212623644, 31.665882048734694 ], [ -83.569041058752163, 31.617541151024163 ], [ -83.560358833170881, 31.596448559471369 ], [ -83.548463492462716, 31.572384063412102 ], [ -83.537454140086083, 31.556562446193357 ], [ -83.515496465452117, 31.514844395897978 ], [ -83.515328519335284, 31.493760676596651 ], [ -83.515892538925016, 31.483874743918783 ], [ -83.519417679685901, 31.47851573451981 ], [ -83.529024069150395, 31.467475686572914 ], [ -83.530588136244191, 31.450334804615558 ], [ -83.527070991633792, 31.441495922584512 ], [ -83.526963987285342, 31.440123935002088 ], [ -83.50768317399276, 31.422186317829169 ], [ -83.505074059733673, 31.416031394979782 ], [ -83.481697161401627, 31.326718801795472 ], [ -83.478202032319714, 31.311707055795218 ], [ -83.475607922378757, 31.284416374787124 ], [ -83.467787631729394, 31.250168971826479 ], [ -83.448690554673703, 31.162250039075442 ], [ -83.445409395547401, 31.15319929863238 ], [ -83.439885118764309, 31.13659075183347 ], [ -83.434368865219724, 31.124880130964296 ], [ -83.424435418225841, 31.106425769014869 ], [ -83.397723193653647, 31.057232433755743 ], [ -83.397990047393591, 31.02990478519401 ], [ -83.38836937285248, 30.99218373524992 ], [ -83.360000750801518, 30.90276903968196 ], [ -83.35533046201104, 30.895097381135233 ], [ -83.34152064791806, 30.873788337598302 ], [ -83.334570110832033, 30.854942009778686 ], [ -83.330922832569414, 30.845020358600696 ], [ -83.316837970531537, 30.818282398269055 ], [ -83.29391761270837, 30.773578045390646 ], [ -83.273805727509284, 30.751055047660309 ], [ -83.243980539997608, 30.69931640249505 ], [ -83.219344013997798, 30.676847716967639 ], [ -83.206052113768791, 30.660849524559953 ], [ -83.172321034980328, 30.626389325488475 ], [ -83.134553246938381, 30.608491674363695 ], [ -83.11988142293356, 30.594767364774452 ], [ -83.08552447405394, 30.558903015771584 ], [ -83.075277831327313, 30.54419458999028 ], [ -83.064603058119943, 30.522855323499993 ], [ -83.058331758338539, 30.518125556771313 ], [ -83.051846440265606, 30.51268580880885 ], [ -83.041965883558618, 30.500197287133552 ], [ -83.036571634887082, 30.496235504673074 ], [ -82.997614141235061, 30.483467571439771 ], [ -82.98125670424534, 30.477848878136104 ], [ -82.932968193613817, 30.448318230084904 ], [ -82.915267641836579, 30.437118757859714 ], [ -82.861859469511231, 30.372123483733926 ], [ -82.840328786350696, 30.355894290710356 ], [ -82.832729486094323, 30.346535707212112 ], [ -82.815226798123035, 30.324803687908648 ], [ -82.80739153375464, 30.317532046118338 ], [ -82.794627107982848, 30.305805632177279 ], [ -82.761026041868035, 30.277277128352615 ], [ -82.754426755432277, 30.266657614980325 ], [ -82.738648098465319, 30.239497639653958 ], [ -82.707016264133657, 30.216938526031541 ], [ -82.697287865996159, 30.197066075567555 ], [ -82.688628509866675, 30.179759572134937 ], [ -82.685614386690503, 30.17392574432186 ], [ -82.680930193704427, 30.164831015811981 ], [ -82.655828147472761, 30.11733251158596 ], [ -82.630917113524504, 30.074165014021748 ], [ -82.603480666013709, 30.005025321696262 ], [ -82.601176575328651, 30.001987454710346 ], [ -82.597193453571123, 29.999866604808435 ], [ -82.58851816451228, 29.995685894770794 ], [ -82.584108970029064, 29.991337079894127 ], [ -82.573327174424264, 29.965947780948031 ], [ -82.569084785095839, 29.952632110816143 ], [ -82.558021910820514, 29.925155841360073 ], [ -82.546469999585653, 29.897488577268646 ], [ -82.539464976537673, 29.86018935698079 ], [ -82.514179196708454, 29.813882683227352 ], [ -82.513279102113458, 29.810952750383375 ], [ -82.514056905612193, 29.801520884877217 ], [ -82.514651598659626, 29.787552096661972 ], [ -82.503527698907135, 29.763641720773034 ], [ -82.478303251887183, 29.739093295071903 ], [ -82.457854757870408, 29.701274902577129 ], [ -82.446685127013126, 29.688913131729464 ], [ -82.419026633855594, 29.65982468141674 ], [ -82.399761575728718, 29.63676510032175 ], [ -82.386424803489831, 29.617535431787168 ], [ -82.380709495893655, 29.610328561044479 ], [ -82.373370121333963, 29.602025715222968 ], [ -82.371287016030621, 29.599683758823264 ], [ -82.362199558508919, 29.589345950670012 ], [ -82.342408389563957, 29.554735521267649 ], [ -82.331871883157305, 29.542465748166872 ], [ -82.316322238714534, 29.53006601160028 ], [ -82.30477069221898, 29.515706272503468 ], [ -82.299567421475658, 29.507306414515934 ], [ -82.292540030272306, 29.49133869215747 ], [ -82.287481816859554, 29.484328839596539 ], [ -82.272374195778923, 29.464989266218726 ], [ -82.262089517012669, 29.427078976551741 ], [ -82.240604514661399, 29.397088632256203 ], [ -82.222056403677598, 29.35746039120588 ], [ -82.207399327285614, 29.306491347727444 ], [ -82.193146385700487, 29.26687312058559 ], [ -82.189896164815266, 29.257193310272822 ], [ -82.189933931950222, 29.235481745367991 ], [ -82.184768626868347, 29.225212994960007 ], [ -82.18449350048617, 29.214612221870954 ], [ -82.184508412233839, 29.206510393876151 ], [ -82.184722198779781, 29.186328821103601 ], [ -82.185102817276089, 29.150303583386872 ], [ -82.184729652449633, 29.136479879775656 ], [ -82.185019036265871, 29.079386089868812 ], [ -82.162990895241307, 29.042177083487513 ], [ -82.157482535292672, 29.02518850271435 ], [ -82.151592152148382, 29.006776959709676 ], [ -82.123560638562111, 28.960197776151535 ], [ -82.112366990714875, 28.938201654068742 ], [ -82.111810709907047, 28.918352351535276 ], [ -82.109467527724377, 28.910101662441832 ], [ -82.093498674557239, 28.882582780569308 ], [ -82.092277521200756, 28.873644104349978 ], [ -82.091575313260236, 28.859253613043915 ], [ -82.086478066301225, 28.774457620172306 ], [ -82.087935055360958, 28.770335749356736 ], [ -82.101401236350114, 28.754408170379431 ], [ -82.106421295838942, 28.74786834736906 ], [ -82.12309923782513, 28.704167680424266 ], [ -82.14256238153375, 28.6685396944176 ], [ -82.143180388124449, 28.667549721582414 ], [ -82.167060707254478, 28.633651614938238 ], [ -82.202263447865974, 28.604080219515808 ], [ -82.209556503460504, 28.588711652218347 ], [ -82.217056641480383, 28.580012857317698 ], [ -82.235467041355193, 28.563642189852775 ], [ -82.237023062043519, 28.560983260136986 ], [ -82.236976661194007, 28.523302514427861 ], [ -82.238456634935901, 28.51634272806098 ], [ -82.247368752935046, 28.500255153909897 ], [ -82.248672600862747, 28.485324734780001 ], [ -82.250160605436434, 28.48191485666214 ], [ -82.257156795479233, 28.47554411338027 ], [ -82.272332275605123, 28.466496490235048 ], [ -82.274743331686935, 28.463375620953794 ], [ -82.276597349506815, 28.458905807677112 ], [ -82.275803231558015, 28.451915095725568 ], [ -82.280312321199233, 28.444616406233223 ], [ -82.281213236947309, 28.434789817049943 ], [ -82.281457152701861, 28.42709813794265 ], [ -82.282853181786422, 28.424857235449146 ], [ -82.289452395613765, 28.420428441580228 ], [ -82.304383828118134, 28.405477130848208 ], [ -82.315500215127102, 28.399398439911142 ], [ -82.318575298060082, 28.395507623055824 ], [ -82.319817896313893, 28.354990398902906 ], [ -82.323022873925296, 28.340731045905866 ], [ -82.32372473549286, 28.325520718867814 ], [ -82.325433668591103, 28.31276329425279 ], [ -82.324723476733922, 28.298193928211042 ], [ -82.327027314312261, 28.274195008446103 ], [ -82.331673407621722, 28.263714524294596 ], [ -82.341409739132729, 28.253775083013711 ], [ -82.354669502382364, 28.236915096830522 ], [ -82.355280541169719, 28.236107145581251 ], [ -82.377314874674553, 28.206307882541683 ], [ -82.382992218149127, 28.196638411307539 ], [ -82.394710949985551, 28.170838758097858 ], [ -82.394338017626922, 28.163160129412152 ], [ -82.385410814412793, 28.153311569586499 ], [ -82.372944777068668, 28.123074039234716 ], [ -82.366375742137876, 28.110722656132282 ], [ -82.363445808919138, 28.099754214990607 ], [ -82.354656688483757, 28.091104664374093 ], [ -82.352352684768363, 28.087194869797145 ], [ -82.352329947020905, 28.069964767378639 ], [ -82.352414187925461, 28.054303582888046 ], [ -82.351041349803978, 28.041706245651557 ], [ -82.349111373263781, 28.037485475952185 ], [ -82.329778342710924, 28.015787746479116 ], [ -82.327176539694364, 28.002127504428689 ], [ -82.326627558096959, 27.997199710608644 ], [ -82.326352527324303, 27.981390236260598 ], [ -82.326474498920746, 27.962789851124455 ], [ -82.3295265193467, 27.941809523309001 ], [ -82.331571534026196, 27.927910969492448 ], [ -82.343717718121184, 27.903282704463461 ], [ -82.348767794901548, 27.89192305013346 ], [ -82.346501693061782, 27.850183459565457 ], [ -82.351621755212832, 27.825043270763118 ], [ -82.352841749262382, 27.803614981847474 ], [ -82.357457823522211, 27.792021346683214 ], [ -82.364224927334277, 27.769397073947697 ], [ -82.382353274408302, 27.745171852236389 ], [ -82.383627346865836, 27.718824959553626 ], [ -82.385252389492905, 27.713199191126826 ], [ -82.388945475711424, 27.70643746370342 ], [ -82.402288760883721, 27.696967819381054 ], [ -82.405432828113973, 27.694768902555762 ], [ -82.414733026994256, 27.688370145707204 ], [ -82.442252650847067, 27.652061634075828 ], [ -82.456191944740794, 27.645896868982476 ], [ -82.466080159952057, 27.638281180160519 ], [ -82.474274350394367, 27.626101699086291 ], [ -82.487976644575511, 27.618152025019437 ], [ -82.499817913122797, 27.604602608226084 ], [ -82.50406800404086, 27.601428723518357 ], [ -82.513742215601241, 27.590372152935728 ], [ -82.513871225935887, 27.585962347224271 ], [ -82.51374224410732, 27.574293864414436 ], [ -82.510881228578015, 27.552743839303485 ], [ -82.510820254171179, 27.53818548507143 ], [ -82.507798215092762, 27.529394899016719 ], [ -82.506105195758096, 27.523412178542241 ], [ -82.499818106390833, 27.511516760692476 ], [ -82.481224737515078, 27.504816049961434 ], [ -82.472397601328467, 27.490946614849637 ], [ -82.459984442940438, 27.464138666726733 ], [ -82.459595518464781, 27.441449563630378 ], [ -82.459824611082396, 27.41772050223863 ], [ -82.451027521536147, 27.388699638483036 ], [ -82.447846462498546, 27.385241770846672 ], [ -82.446564446158987, 27.381680909683347 ], [ -82.447830602716536, 27.345132354026127 ], [ -82.447876628666307, 27.338032634340422 ], [ -82.448570746771978, 27.309021780706196 ], [ -82.448395777875788, 27.298993176277598 ], [ -82.449394907352854, 27.26904736043447 ], [ -82.449295963786753, 27.252372018592759 ], [ -82.452912169044879, 27.230868881533524 ], [ -82.443391062458943, 27.208874738489914 ], [ -82.438363042464374, 27.191245431740874 ], [ -82.434037060162183, 27.170301259393639 ], [ -82.426010931771486, 27.159679669692888 ], [ -82.424149919737985, 27.15424988348137 ], [ -82.417534805539788, 27.147201154388711 ], [ -82.411766728439261, 27.137446535385685 ], [ -82.408745678037505, 27.134067665911314 ], [ -82.401260554651117, 27.125594993810477 ], [ -82.387436316906332, 27.112051516652329 ], [ -82.384354255084105, 27.110514573951733 ], [ -82.380783182053989, 27.108973630767959 ], [ -82.374817044497973, 27.108872626375167 ], [ -82.349189441428308, 27.110302532397949 ], [ -82.335464113477215, 27.111761453903465 ], [ -82.324293853370406, 27.11192143144045 ], [ -82.312056601350235, 27.107391597501831 ], [ -82.285498035884913, 27.100632834937176 ], [ -82.270696698580778, 27.100067837620685 ], [ -82.131571770529845, 27.099632490803824 ], [ -82.086855060303122, 27.062232876783675 ], [ -82.083283986667126, 27.061914879175212 ], [ -82.081803962540675, 27.060662925468293 ], [ -82.057473591332965, 27.034304918501775 ], [ -82.055283559245424, 27.031556022931447 ], [ -82.03347127289662, 26.996857357095656 ], [ -82.020493127948399, 26.973586255640505 ], [ -82.021233280975864, 26.950598185745413 ], [ -82.017998271400302, 26.940247591800482 ], [ -82.015290290027437, 26.927068113237571 ], [ -82.008523291029562, 26.901680109893835 ], [ -82.002084188947819, 26.894841359475542 ], [ -81.97355668988618, 26.867761316688853 ], [ -81.971382693878425, 26.858038696728975 ], [ -81.969551697883418, 26.849673023856631 ], [ -81.966575657575618, 26.844403221388738 ], [ -81.930747981370601, 26.812954313828399 ], [ -81.921698793514707, 26.807644483715777 ], [ -81.909415559174789, 26.795932894319506 ], [ -81.899420384589831, 26.782614379640012 ], [ -81.887427119294813, 26.777705518688116 ], [ -81.884711062931785, 26.77576358334343 ], [ -81.881011001063769, 26.769866801359811 ], [ -81.879804996079216, 26.764644004341644 ], [ -81.83856016708117, 26.728936291249557 ], [ -81.830319986797576, 26.724347449913331 ], [ -81.818074698381025, 26.721335523784479 ], [ -81.812321585093159, 26.715199761810002 ], [ -81.801213370832556, 26.701767292050405 ], [ -81.799389357637708, 26.694689589696882 ], [ -81.798672387896659, 26.684157041312918 ], [ -81.799595509052949, 26.662898962424503 ], [ -81.801747697014775, 26.634219207589361 ], [ -81.80564686762645, 26.619479856294756 ], [ -81.803677847333816, 26.612740140247844 ], [ -81.79324073348478, 26.577001651006665 ], [ -81.797749952927603, 26.555502592085574 ], [ -81.797368981766297, 26.546923961501491 ], [ -81.797010119588037, 26.514574357532869 ], [ -81.799360246729634, 26.501105943816903 ], [ -81.79807829710829, 26.492669245141926 ], [ -81.7964843750797, 26.481317642552938 ], [ -81.776380350897085, 26.432678302769588 ], [ -81.772390363433004, 26.42165967716624 ], [ -81.772421797723496, 26.382329053922781 ], [ -81.771604895254868, 26.371500430019847 ], [ -81.762975760614012, 26.36289069942093 ], [ -81.759084727340664, 26.356590904512515 ], [ -81.750288720611678, 26.336413572038762 ], [ -81.74992976781995, 26.3313727456263 ], [ -81.747190866199148, 26.316888230342688 ], [ -81.746793915076523, 26.311693408192177 ], [ -81.743948876395237, 26.309171476818477 ], [ -81.743253894350119, 26.306093579253172 ], [ -81.743041257663805, 26.273034728033622 ], [ -81.741805372533776, 26.260034172730283 ], [ -81.737631378248636, 26.250364483965484 ], [ -81.736785391286986, 26.244135722235765 ], [ -81.736151551777013, 26.211591990223379 ], [ -81.736151628742959, 26.197357546508059 ], [ -81.735495717061227, 26.17805829696929 ], [ -81.733267695958503, 26.171887525447982 ], [ -81.725485543688507, 26.1648577561831 ], [ -81.716025322121098, 26.163056773145602 ], [ -81.686803617709487, 26.161206680588119 ], [ -81.668340201478102, 26.15466883389599 ], [ -81.543581162882816, 26.152766209215859 ], [ -81.344770220172308, 26.154377086432778 ], [ -81.260310110502118, 26.155656592989082 ], [ -81.254618960185525, 26.157506489741902 ], [ -81.245943710235977, 26.164325183340601 ], [ -81.241953602344751, 26.165675118931588 ], [ -81.056554873635605, 26.168535504561358 ], [ -80.879143230443873, 26.172394727791115 ], [ -80.870438000172101, 26.172482689988186 ], [ -80.699939672485442, 26.146345112368678 ], [ -80.442174212042772, 26.145913647203248 ], [ -80.41061845616197, 26.137963893845644 ], [ -80.364902354477437, 26.126644244622071 ], [ -80.346331910358487, 26.119884468942022 ], [ -80.34694992874438, 26.118683515254279 ], [ -80.360507309932927, 26.10191416978877 ], [ -80.363284396883685, 26.09527542459238 ], [ -80.363727424833286, 26.08888566620811 ], [ -80.360377374058814, 26.076107142605348 ], [ -80.353427238501482, 26.060606716015425 ], [ -80.351741274158613, 26.029828874050622 ], [ -80.34029703685232, 26.007398702405801 ], [ -80.339114020535931, 26.001638917879614 ], [ -80.340823092479837, 25.993689212577689 ], [ -80.352160447012892, 25.977050840460681 ], [ -80.351741509940794, 25.95728956404345 ], [ -80.351298525288627, 25.950104826510511 ], [ -80.351207528656445, 25.948570882547088 ], [ -80.348681639772508, 25.901201612453182 ], [ -80.346362588033259, 25.898912690647297 ], [ -80.342746496701238, 25.89820170785713 ], [ -80.331981216691076, 25.898272679024917 ], [ -80.324321010009498, 25.900353584595084 ] ], [ [ -84.522235993955604, 39.091963917965934 ], [ -84.522563962090771, 39.086717997205561 ], [ -84.522571952150273, 39.085349018298203 ], [ -84.521831895348072, 39.079745108642108 ], [ -84.519359816195546, 39.0759921792189 ], [ -84.517688755142103, 39.072417242755002 ], [ -84.520412790532575, 39.06953327335814 ], [ -84.519908755344829, 39.066176327612844 ], [ -84.52615785027875, 39.061492368880316 ], [ -84.540806128710997, 39.05817334848772 ], [ -84.549114243044116, 39.050582427521363 ], [ -84.557293422779466, 39.052020365393325 ], [ -84.56804363503322, 39.050769333585308 ], [ -84.581257842378918, 39.042415405260321 ], [ -84.59926315058047, 39.034591449024177 ], [ -84.608266302093426, 39.030452475995368 ], [ -84.616796407893645, 39.021922579078755 ], [ -84.645734851063594, 39.004104753492697 ], [ -84.647588854619713, 38.999915817629031 ], [ -84.641317676156291, 38.985020165194094 ], [ -84.637021541343415, 38.972778450635978 ], [ -84.631124254913132, 38.932256366225261 ], [ -84.629682169162635, 38.919282659388777 ], [ -84.624302859567734, 38.876982627995218 ], [ -84.622906744928031, 38.858886038934756 ], [ -84.619854597399609, 38.844276388461651 ], [ -84.608158227212499, 38.834960699904585 ], [ -84.601933027107307, 38.830215863392652 ], [ -84.600002951946593, 38.826423967285102 ], [ -84.604259896887058, 38.792545695561238 ], [ -84.61083604044417, 38.781426878399415 ], [ -84.612156052901398, 38.775635994394591 ], [ -84.608730895509751, 38.765317263323716 ], [ -84.605151734798994, 38.744027736076852 ], [ -84.604205842969222, 38.716898144489413 ], [ -84.600993835100752, 38.700129428160096 ], [ -84.601909953857415, 38.682528675604757 ], [ -84.600391953944182, 38.674547810950003 ], [ -84.587733680040785, 38.662467141689476 ], [ -84.587192726566869, 38.652538295113189 ], [ -84.583202703060024, 38.63990753101023 ], [ -84.571872539080843, 38.622539929375641 ], [ -84.572543589245399, 38.617729992750974 ], [ -84.583202984383973, 38.595867183889496 ], [ -84.597943557426206, 38.552147640317983 ], [ -84.597180564586836, 38.548100709777543 ], [ -84.586415472442923, 38.528760136343053 ], [ -84.589344682372342, 38.50283948067284 ], [ -84.585781630489961, 38.489519695452429 ], [ -84.580021521782911, 38.481100871615638 ], [ -84.579594506073178, 38.473955961865023 ], [ -84.569355268040113, 38.440993480232052 ], [ -84.570461281264741, 38.435683528556893 ], [ -84.576954393820941, 38.423010597624149 ], [ -84.579846440822323, 38.41235268864078 ], [ -84.576565360247528, 38.403151836680522 ], [ -84.575642322828571, 38.389904003766681 ], [ -84.570515193684017, 38.379623183946471 ], [ -84.569844162377947, 38.36958330905891 ], [ -84.566540070911969, 38.360843448300784 ], [ -84.568386084367091, 38.343162633913849 ], [ -84.561923896756582, 38.327713883256642 ], [ -84.558185791493329, 38.322292985590053 ], [ -84.558589737138561, 38.292328326300712 ], [ -84.557498672529832, 38.276257522100025 ], [ -84.556712645550988, 38.273861557373522 ], [ -84.556308632373302, 38.272965571629754 ], [ -84.547717329427968, 38.249630922289448 ], [ -84.545932230678318, 38.244657014095445 ], [ -84.538363823591311, 38.22517537514149 ], [ -84.534479622014175, 38.216165543321857 ], [ -84.531511465935651, 38.209169672460227 ], [ -84.524798105919245, 38.192953966982913 ], [ -84.526034096952074, 38.188334024447101 ], [ -84.536173225561541, 38.170313209787139 ], [ -84.534601082568656, 38.160555366600015 ], [ -84.534319065610944, 38.159701381377303 ], [ -84.52942075726807, 38.143626654660288 ], [ -84.528901618935492, 38.131247840359407 ], [ -84.52616238436967, 38.116222079262592 ], [ -84.508629785265171, 38.111564260984842 ], [ -84.48535887854753, 38.099926546028605 ], [ -84.466033096886193, 38.089237776801035 ], [ -84.455816614501387, 38.076000997596168 ], [ -84.430577549066655, 38.05463937748172 ], [ -84.426541366363665, 38.049622457300416 ], [ -84.420300115446224, 38.045254536036879 ], [ -84.41975905966153, 38.041016592218732 ], [ -84.420285016817417, 38.034158678205863 ], [ -84.418926937483874, 38.030350731519853 ], [ -84.405239344461663, 38.01479097285376 ], [ -84.402843192914148, 38.006338086186879 ], [ -84.38907165787495, 37.981733304964386 ], [ -84.388682616700024, 37.962538411379519 ], [ -84.388873613564201, 37.956301445271961 ], [ -84.387049548497899, 37.951742473710702 ], [ -84.365511824475334, 37.915102697079057 ], [ -84.359018615408203, 37.906992743631932 ], [ -84.354967482708886, 37.897363793437279 ], [ -84.351526373760393, 37.892790817453907 ], [ -84.339784010040717, 37.88407786363981 ], [ -84.334351843285063, 37.880029883632155 ], [ -84.333260809101319, 37.876299900178324 ], [ -84.331895761990083, 37.853038000697964 ], [ -84.327225621436682, 37.843421040154148 ], [ -84.323304504962962, 37.835757070136466 ], [ -84.324914549743525, 37.808471184554087 ], [ -84.324280530388194, 37.795150239053811 ], [ -84.322503479462199, 37.790023257582902 ], [ -84.318436364237016, 37.781878284113844 ], [ -84.315545283478258, 37.773619311915759 ], [ -84.323815626757181, 37.736300676211755 ], [ -84.319153755050792, 37.706364219223104 ], [ -84.311295874306253, 37.67084187911491 ], [ -84.317140366732019, 37.629090647628857 ], [ -84.316065402192663, 37.622407774026058 ], [ -84.314562408808527, 37.618150857052029 ], [ -84.312952659707932, 37.586000461495217 ], [ -84.314691837572809, 37.56921276681998 ], [ -84.316385981194927, 37.555930005175796 ], [ -84.320437198198704, 37.53801331367962 ], [ -84.320422373638948, 37.517055698891319 ], [ -84.327212606185398, 37.500102961056442 ], [ -84.335026017322193, 37.469432876816825 ], [ -84.335758215724795, 37.450763852898596 ], [ -84.343426552157325, 37.429984752631093 ], [ -84.335255877386942, 37.38397179646887 ], [ -84.330616845912147, 37.378272851230832 ], [ -84.314625629586885, 37.368424058421908 ], [ -84.309444575284914, 37.363075129299382 ], [ -84.307728588631363, 37.357643154668409 ], [ -84.308117732880191, 37.342026154640187 ], [ -84.302227743469189, 37.326275250455652 ], [ -84.294582628626955, 37.320095373797848 ], [ -84.289814618738404, 37.308106462664561 ], [ -84.279545441885276, 37.300865641038357 ], [ -84.255863043826324, 37.27830609498838 ], [ -84.253414013809632, 37.273687151362488 ], [ -84.246975001600362, 37.248304320795313 ], [ -84.244815947023113, 37.244805338493343 ], [ -84.239306816176054, 37.240384403285397 ], [ -84.206851064061581, 37.221013845491349 ], [ -84.199632896112433, 37.215024948844246 ], [ -84.187303621199703, 37.212927144569747 ], [ -84.15904398763999, 37.202707602958121 ], [ -84.133935419036135, 37.179858050735383 ], [ -84.125580230441841, 37.169608216116558 ], [ -84.114494985488392, 37.160976436976739 ], [ -84.111488913486951, 37.147632524210245 ], [ -84.111328909450066, 37.146499529953012 ], [ -84.107223810903449, 37.125247663212662 ], [ -84.102539704758627, 37.110557798834485 ], [ -84.098053590290647, 37.062279036504655 ], [ -84.097770575340746, 37.039910109900283 ], [ -84.100151614852422, 37.018517113594925 ], [ -84.106659744709802, 36.998199968409594 ], [ -84.110908911830592, 36.977134550812814 ], [ -84.11114592069481, 36.976115530103989 ], [ -84.112091966130464, 36.969508410901163 ], [ -84.114907045462559, 36.964389269026526 ], [ -84.123048298157286, 36.945139806804818 ], [ -84.129433553533303, 36.918417300725004 ], [ -84.130479596339185, 36.914026219573039 ], [ -84.131493636756758, 36.910067145398429 ], [ -84.134530742355366, 36.901914974888292 ], [ -84.147150084190088, 36.890916581970011 ], [ -84.149912169706596, 36.886563474328398 ], [ -84.150530206976427, 36.881967406191016 ], [ -84.14731019443731, 36.869134308555594 ], [ -84.15027030660886, 36.860715151211949 ], [ -84.162546712017345, 36.839844691847091 ], [ -84.170146158379197, 36.792893046692853 ], [ -84.17044333725741, 36.761985701598306 ], [ -84.17154239295887, 36.757262636616119 ], [ -84.17615054327311, 36.749366496068909 ], [ -84.176142432274858, 36.743873421107239 ], [ -84.171336014711656, 36.729774275939057 ], [ -84.16658276731944, 36.724124241933374 ], [ -84.160639503195938, 36.719363228117807 ], [ -84.153963184331786, 36.713054193299179 ], [ -84.149705859347193, 36.703303079253203 ], [ -84.143449569895054, 36.698073046191197 ], [ -84.143441371259144, 36.688711897077972 ], [ -84.13349991299205, 36.680811835540965 ], [ -84.132965823542392, 36.677381781841142 ], [ -84.136947580149695, 36.66054348108738 ], [ -84.135299369363949, 36.653013365177834 ], [ -84.119307570783448, 36.63858218363108 ], [ -84.115912280579266, 36.630133044839248 ], [ -84.107252830588465, 36.621942919283889 ], [ -84.104726062007416, 36.591153351816331 ], [ -84.106129960015465, 36.584580229686971 ], [ -84.112600017511795, 36.577752107631412 ], [ -84.129423202793021, 36.561050836812157 ], [ -84.133543202477114, 36.554710739040132 ], [ -84.14598651841213, 36.550098694859315 ], [ -84.166296889735221, 36.535141533293817 ], [ -84.174688996152142, 36.526359443052044 ], [ -84.198828528335468, 36.5113913649894 ], [ -84.227072875818138, 36.473499256228081 ], [ -84.24871052342057, 36.464310334675147 ], [ -84.266472839904964, 36.450580166459076 ], [ -84.290459377486926, 36.437888963487168 ], [ -84.293084424557549, 36.43524893642244 ], [ -84.293839405393641, 36.431628915743836 ], [ -84.292580334589871, 36.428778909807313 ], [ -84.278053665442428, 36.410567901250822 ], [ -84.265228172359485, 36.404040933182273 ], [ -84.26073391111106, 36.395598911009614 ], [ -84.255637693059469, 36.391970915837291 ], [ -84.254286556456123, 36.385558887433938 ], [ -84.246077150388345, 36.378478846869072 ], [ -84.236227596626364, 36.368499737846413 ], [ -84.23097817332885, 36.355201636743828 ], [ -84.230221888934125, 36.339019544760347 ], [ -84.227665699277296, 36.333880503205542 ], [ -84.225956440056279, 36.322120430444336 ], [ -84.227185444121957, 36.318999420036228 ], [ -84.232602604050754, 36.314120422051836 ], [ -84.233021557605682, 36.309939401494937 ], [ -84.230305392567772, 36.307010371378055 ], [ -84.221607957093482, 36.303748308401644 ], [ -84.215808600938942, 36.297629245389878 ], [ -84.213809349966311, 36.287749182118112 ], [ -84.211620188147364, 36.283908150346264 ], [ -84.20555378335348, 36.27611007783608 ], [ -84.197466320606324, 36.270598007631889 ], [ -84.193255027788084, 36.264837956021474 ], [ -84.187532685299828, 36.260359903784135 ], [ -84.181688200696072, 36.248998822353194 ], [ -84.173439567050011, 36.240068798392095 ], [ -84.160583782016943, 36.233396760203831 ], [ -84.156005511445215, 36.231336748257576 ], [ -84.151656194497747, 36.227209744928473 ], [ -84.147268765944304, 36.219099757520077 ], [ -84.143995523818219, 36.215849759516793 ], [ -84.127683577554762, 36.209047745180847 ], [ -84.116047700380079, 36.196798783414685 ], [ -84.099422670750457, 36.187368816800721 ], [ -84.084612508520678, 36.169920929626251 ], [ -84.082201314355189, 36.166887952485126 ], [ -84.079638134133688, 36.164621970427525 ], [ -84.069261422643095, 36.156089045120581 ], [ -84.064630061158837, 36.1506490960628 ], [ -84.042151690167103, 36.138289247293102 ], [ -84.036918271895146, 36.131720325614701 ], [ -84.034071831391785, 36.120238453151394 ], [ -84.02937952194381, 36.11675550540577 ], [ -84.024877206245733, 36.112708565271248 ], [ -84.021230687234166, 36.09962772630557 ], [ -84.012044076239647, 36.092547850849449 ], [ -84.012195958280216, 36.087890905408663 ], [ -84.018140107774656, 36.083327927407659 ], [ -84.018681077801631, 36.081290947842952 ], [ -84.017139927011257, 36.078299990974287 ], [ -84.010296511507434, 36.074470076090492 ], [ -84.011028349266212, 36.067173158894882 ], [ -83.996477987224594, 36.040321630513738 ], [ -83.998956834991944, 36.030960704995195 ], [ -83.995348456298544, 36.022240880534731 ], [ -83.975190358677779, 36.011811381167533 ], [ -83.958511358503216, 36.000222840709043 ] ], [ [ -84.220423322294366, 35.886125419910734 ], [ -84.181419612254913, 35.896949009609429 ], [ -84.12067195098679, 35.911380868987195 ], [ -84.117291803837475, 35.912158914960081 ], [ -84.017212491108396, 35.934239194020428 ], [ -83.999565848240508, 35.943101379298433 ], [ -83.994575719763048, 35.946740454467815 ], [ -83.981811293294086, 35.951341670529722 ], [ -83.973991059095155, 35.955460795540354 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I75  S\", \"DIST_MILES\": 2.530000, \"DIST_KM\": 4.070000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -83.043743907525609, 42.34323887391168 ], [ -83.037083685205033, 42.345527868581726 ] ], [ [ -83.242917477275, 42.164572651899284 ], [ -83.245701613396292, 42.162821693376408 ], [ -83.265752378191195, 42.138637326392924 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I759\", \"DIST_MILES\": 4.490000, \"DIST_KM\": 7.220000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -86.077015721610579, 34.008657349471797 ], [ -86.070743537277153, 34.00452641955065 ], [ -86.059452218597414, 34.000707491711957 ], [ -86.04395575188515, 33.991907581486664 ], [ -86.015955990365484, 33.990759620516585 ], [ -86.00441168689521, 33.99199862431162 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I76\", \"DIST_MILES\": 536.030000, \"DIST_KM\": 862.660000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -78.256687307986823, 39.987102873936465 ], [ -78.249744188158715, 39.986823947433578 ], [ -78.240634861531021, 39.984535140198744 ], [ -78.233500629088709, 39.985935212689611 ], [ -78.224001377470756, 39.995773113045935 ], [ -78.214083071231528, 40.003643077230009 ], [ -78.206804822077913, 40.012332990446083 ], [ -78.202203664939518, 40.014873999021148 ], [ -78.194673408194802, 40.017033056474602 ], [ -78.176743794318867, 40.027035070322917 ], [ -78.169899560319664, 40.029392106242625 ], [ -78.150512898335592, 40.034226245617241 ], [ -78.132812298314406, 40.033382502166376 ], [ -78.125732050225565, 40.042416356545942 ], [ -78.118712806223641, 40.048473283695436 ], [ -78.103316279145076, 40.052685359890752 ], [ -78.093076923412781, 40.059853283723292 ], [ -78.088651773488863, 40.059605343631141 ], [ -78.074338295644495, 40.053974679074543 ], [ -78.056019690998056, 40.0442441965195 ], [ -78.051380535645649, 40.043695272347662 ], [ -78.045399332924632, 40.044656319347993 ], [ -78.029338795919273, 40.04308457339237 ], [ -78.020694502360485, 40.045137618683142 ], [ -77.998652783834643, 40.036818172140769 ], [ -77.994074644875511, 40.037115214616044 ], [ -77.972482981716951, 40.042807277217648 ], [ -77.963502702975404, 40.04670525594684 ], [ -77.959085559727143, 40.051535152947316 ], [ -77.952813356387679, 40.058287011901108 ], [ -77.947724199422865, 40.059996018535031 ], [ -77.933891765654977, 40.067945935104888 ], [ -77.929253625446009, 40.068265981670656 ], [ -77.922760433512238, 40.06685510479582 ], [ -77.909256012137348, 40.073836054458475 ], [ -77.89273051046294, 40.076555176025764 ], [ -77.883887248737992, 40.075380321272476 ], [ -77.878058070420707, 40.077067342928338 ], [ -77.861860552159854, 40.090944133811696 ], [ -77.8570084063373, 40.091337184264198 ], [ -77.844618042822788, 40.089083408554117 ], [ -77.830121617725084, 40.086817658582433 ], [ -77.815740165046279, 40.096445567233175 ], [ -77.784450186090453, 40.115088456126948 ], [ -77.773570848250898, 40.120676448823687 ], [ -77.761622485953936, 40.123858524421181 ], [ -77.745059055072758, 40.128336600700713 ], [ -77.704820427061108, 40.157736140443788 ], [ -77.684816157272309, 40.159437259201617 ], [ -77.6455856508137, 40.142878979610259 ], [ -77.641976601896189, 40.143656988716856 ], [ -77.636048520253851, 40.149187901896269 ], [ -77.624726369983208, 40.152735907056218 ], [ -77.617188271350969, 40.156607876081829 ] ], [ [ -77.617188271350969, 40.156607876081829 ], [ -77.615487249279155, 40.156878883456031 ], [ -77.612839214378411, 40.152366010603998 ] ], [ [ -77.617188271350969, 40.156607876081829 ], [ -77.611611199459816, 40.159735847946571 ], [ -77.598763036553947, 40.164877834097837 ], [ -77.408736517087036, 40.195968404656803 ], [ -77.368025380015325, 40.202857429348853 ], [ -77.256156017430456, 40.206508823576236 ], [ -77.229230680785236, 40.209843000564646 ], [ -77.163174634607358, 40.226422330714442 ], [ -77.150158426371718, 40.228077431664808 ], [ -77.13460218229153, 40.227982602445721 ], [ -77.13081812406341, 40.227623652258409 ], [ -77.102710711197105, 40.221097119870485 ], [ -77.045100942644794, 40.203570201667596 ], [ -77.042979916275172, 40.202887243017138 ], [ -77.023005674246235, 40.19644863462652 ], [ -76.993899269922153, 40.196822923015169 ], [ -76.975283017839772, 40.195510069001912 ], [ -76.962877844711869, 40.195789135811879 ], [ -76.948045633712638, 40.199920113292464 ], [ -76.943437572938521, 40.199642148200979 ], [ -76.929239384137389, 40.195587343011546 ], [ -76.924447319096529, 40.195587371805793 ], [ -76.917772231716228, 40.197616356467215 ], [ -76.892182928571515, 40.20609627537862 ], [ -76.879090799686622, 40.211719196227214 ], [ -76.874207745532559, 40.212085214522695 ], [ -76.868950675121837, 40.21052128889248 ], [ -76.85248644003606, 40.205024540069402 ], [ -76.836869193657634, 40.198997803558484 ], [ -76.827286052769225, 40.197059916369781 ], [ -76.813827887310808, 40.197429987171645 ], [ -76.810043854993125, 40.198627975713542 ], [ -76.808082855746093, 40.200584931397728 ], [ -76.797370882800465, 40.211879670251975 ], [ -76.791831854013267, 40.214061639773711 ], [ -76.786681808942419, 40.214706651252257 ], [ -76.780967753109195, 40.214981676699743 ], [ -76.752815380013772, 40.210582970799017 ], [ -76.722526479732849, 40.209790288896137 ], [ -76.707282560295809, 40.209519451662544 ], [ -76.706062566198113, 40.209462465672523 ], [ -76.680969622990844, 40.204392859058835 ], [ -76.660171825827945, 40.208893948272646 ], [ -76.644210892062247, 40.206995160291356 ], [ -76.623619054760042, 40.208993318386305 ], [ -76.613358118599663, 40.208871426222991 ], [ -76.601540169954447, 40.20725458679766 ], [ -76.573944355876776, 40.207307866336066 ], [ -76.541947629205737, 40.210772113839788 ], [ -76.534989722264925, 40.213812117223227 ], [ -76.518524987607492, 40.224326057798422 ], [ -76.513421048848969, 40.226153072918102 ], [ -76.493737903991473, 40.227835179628606 ], [ -76.480332296345011, 40.226332199417996 ], [ -76.46903981320628, 40.22752216277086 ], [ -76.451499051008071, 40.228434125865824 ], [ -76.442007643829001, 40.230006081363037 ], [ -76.432608229540079, 40.229735078356363 ] ], [ [ -76.432608229540079, 40.229735078356363 ], [ -76.436934425594288, 40.231013053565896 ], [ -76.436636422830148, 40.233183004044541 ], [ -76.434996353358741, 40.23391598568449 ] ], [ [ -76.432608229540079, 40.229735078356363 ], [ -76.426458956411679, 40.228682096529532 ], [ -76.422147757446652, 40.224722183498052 ], [ -76.417379548806565, 40.223063217720529 ], [ -76.394543570139476, 40.226435119782998 ], [ -76.355761891613326, 40.228816028495203 ], [ -76.310799888432925, 40.234811837384349 ], [ -76.28649882746241, 40.235303800980233 ], [ -76.220974981346941, 40.245473505704645 ], [ -76.175944374173852, 40.245302528573816 ], [ -76.154596679478232, 40.243452598752661 ], [ -76.13333308451935, 40.239324753096056 ], [ -76.126382129583632, 40.2316540270198 ], [ -76.098145496937846, 40.224124343862769 ], [ -76.073105060246519, 40.215766714294276 ] ], [ [ -76.073105060246519, 40.215766714294276 ], [ -76.076203209025181, 40.214533753797163 ], [ -76.084412467332172, 40.2143927379134 ], [ -76.087876562999043, 40.214655719074273 ], [ -76.090653572034952, 40.216506642804859 ], [ -76.09608548941199, 40.222685401035434 ] ], [ [ -76.073105060246519, 40.215766714294276 ], [ -76.045295464308822, 40.210304005181712 ], [ -76.024428903504386, 40.209106116026163 ], [ -76.009200998714391, 40.198566613724985 ], [ -75.998420347866983, 40.185486228665276 ], [ -75.982353118833799, 40.173375894435097 ], [ -75.978744005854821, 40.17197598786975 ], [ -75.966612180139592, 40.174786965973894 ], [ -75.949659392103726, 40.172826201103767 ], [ -75.933735292734781, 40.176260177919232 ], [ -75.926036839544466, 40.176725221300067 ], [ -75.913356518289532, 40.171999555289943 ], [ -75.902828653485884, 40.16346606078119 ], [ -75.898410596548985, 40.161460198972556 ], [ -75.89146031345642, 40.160727299413544 ], [ -75.880457901213319, 40.159240475773785 ], [ -75.854868668680879, 40.148598258639836 ], [ -75.840104849677957, 40.15010832797789 ], [ -75.830056706106063, 40.147037587854385 ], [ -75.819085357349294, 40.145710768460283 ], [ -75.805253249718902, 40.14114115327498 ], [ -75.79536646534045, 40.135491560988541 ], [ -75.783366243271843, 40.124582284747014 ], [ -75.762453644502017, 40.114913058584186 ], [ -75.754459863120175, 40.102931824260928 ], [ -75.751187112702553, 40.100143021616496 ], [ -75.736850979742144, 40.096233503456297 ], [ -75.723729595813339, 40.086473274938328 ], [ -75.707379441064759, 40.081620819996374 ], [ -75.696476734695409, 40.075064342993656 ], [ -75.681111482110651, 40.071222789666706 ], [ -75.652637920187729, 40.064735556461841 ], [ -75.636188108876425, 40.065097799495419 ], [ -75.629382172857092, 40.061794051712972 ], [ -75.624232976555646, 40.061405148178252 ], [ -75.615671088287712, 40.06568209915131 ], [ -75.602540588662436, 40.064732346740847 ], [ -75.580925534775048, 40.065254668258902 ], [ -75.571723645627458, 40.069496654078613 ], [ -75.561751083610176, 40.070503779947472 ], [ -75.545705610018402, 40.077461799766155 ], [ -75.521313967646108, 40.073350353142949 ], [ -75.500956754326651, 40.076364603325139 ], [ -75.487422274108397, 40.076265872261708 ], [ -75.451791621829031, 40.080782451790412 ], [ -75.414908678971585, 40.090098933013827 ] ], [ [ -102.154910304679817, 41.026363287270762 ], [ -102.174503596684403, 41.015133451939633 ], [ -102.190723833154308, 41.00229268023962 ], [ -102.209019115333291, 40.985927809172594 ], [ -102.23854554382936, 40.974117793820731 ], [ -102.247044671954271, 40.967823818920607 ], [ -102.261799888518155, 40.956623832247701 ], [ -102.300725416122532, 40.937664717072018 ], [ -102.345907991488403, 40.924961471715044 ], [ -102.445228233236989, 40.924960648374956 ], [ -102.517106100488576, 40.90272031513441 ], [ -102.651804863343159, 40.865607474848055 ], [ -102.828718085809541, 40.816760444215284 ], [ -102.976992268683489, 40.754159746602866 ], [ -103.132090295483735, 40.663748603223603 ], [ -103.143977969947358, 40.653857305613258 ], [ -103.152782699382328, 40.640017032706837 ], [ -103.163395333507154, 40.629636747870741 ], [ -103.172665847945296, 40.621396502700065 ], [ -103.177709309898191, 40.61163832561995 ], [ -103.227341894384637, 40.536174679438382 ], [ -103.25540438658841, 40.506144853190264 ], [ -103.259829691900435, 40.499834735001961 ], [ -103.2629887992249, 40.497984665743722 ], [ -103.321318085159362, 40.435582091340052 ], [ -103.343527899827464, 40.411652554758604 ], [ -103.355506287184753, 40.401970318482235 ], [ -103.471201447761388, 40.334215645284559 ], [ -103.570783460944128, 40.276159512104499 ], [ -103.584005849948966, 40.271528554174019 ], [ -103.597479233408009, 40.269049616729149 ], [ -103.621840910775589, 40.268530771591799 ], [ -103.725809790405535, 40.267791444877247 ], [ -103.753672431591596, 40.262771515396416 ], [ -103.775652279253677, 40.263068528339986 ], [ -103.801409103205202, 40.263942554957268 ], [ -103.810336048479925, 40.265540591622141 ], [ -103.861581690993503, 40.265540614017347 ], [ -103.866869646690233, 40.264220585786781 ], [ -103.881364485068673, 40.253829344868976 ], [ -103.890428390896844, 40.248031287400565 ], [ -103.89857632306726, 40.24494134213387 ], [ -103.908182251032713, 40.243388368485896 ], [ -103.936899047423012, 40.242049386956076 ], [ -104.017762670158177, 40.250098234972334 ], [ -104.053521815129258, 40.246120298851473 ], [ -104.055924824105787, 40.246638290008399 ], [ -104.080620940529229, 40.235839467002073 ], [ -104.091218990640982, 40.232581517397165 ], [ -104.150346240045977, 40.232265504513222 ], [ -104.166673308775813, 40.232169500954022 ], [ -104.172014334441357, 40.231139514393632 ], [ -104.34222120805488, 40.172081423705933 ], [ -104.373540989697702, 40.170792493892428 ], [ -104.387876355478454, 40.167900551939923 ], [ -104.44345774035466, 40.165001678241268 ], [ -104.451293946057945, 40.16125173123266 ], [ -104.503243401643516, 40.120721223308792 ], [ -104.532686768783719, 40.110513379697835 ], [ -104.572643581997738, 40.110761451716201 ], [ -104.600095853611293, 40.103593560732399 ], [ -104.623900995488299, 40.087503724290499 ], [ -104.646820089797572, 40.074521849674973 ], [ -104.651856356502279, 40.065202921417246 ], [ -104.657875657477462, 40.058702972500214 ], [ -104.706760114800815, 40.007464321631574 ], [ -104.716350587714615, 40.000384361389031 ], [ -104.724530010258306, 39.994875441691285 ], [ -104.734120503043314, 39.988325544939663 ], [ -104.735630580959409, 39.987185563246697 ], [ -104.770407309565101, 39.954173149491396 ], [ -104.783408910415673, 39.944194333035384 ], [ -104.793693401007701, 39.934043507996094 ], [ -104.813904347914317, 39.916133805841874 ], [ -104.815438419075775, 39.914855826478806 ], [ -104.817505512554334, 39.913470849173429 ], [ -104.824906845665922, 39.908706926381896 ], [ -104.868235757701925, 39.885395280334066 ], [ -104.87582008696215, 39.881962328350902 ], [ -104.8874705653636, 39.880661348354764 ], [ -104.893749836409611, 39.877987383870739 ], [ -104.899350096034809, 39.872917448527417 ], [ -104.912854740176599, 39.857815633462657 ], [ -104.92335323514709, 39.84675676176164 ], [ -104.946715299085241, 39.827320966977062 ], [ -104.950637466196397, 39.825764979955828 ], [ -104.964271025210635, 39.823674986536709 ], [ -104.978348609347208, 39.820371003808006 ], [ -104.983307828828302, 39.817033031861214 ], [ -104.987672018599596, 39.814607050589089 ], [ -105.002656624167074, 39.810605078415591 ], [ -105.006608770235232, 39.807027126900508 ], [ -105.025057389767269, 39.799608259835622 ], [ -105.053035276579962, 39.796209382568684 ], [ -105.063304619294513, 39.790986464434255 ], [ -105.064548661469658, 39.79017047600189 ], [ -105.064960675341311, 39.789918479658404 ], [ -105.065150681707806, 39.789808481285888 ], [ -105.074138973781018, 39.786386541338153 ] ], [ [ -81.890418159928515, 41.030514988251809 ], [ -81.883620758590652, 41.030602952218686 ], [ -81.872137050128487, 41.033036880654912 ], [ -81.862737497511333, 41.033143831582336 ], [ -81.774185316661431, 41.031434377664738 ], [ -81.766173844813778, 41.031705335386114 ], [ -81.761771579599596, 41.033162309835419 ], [ -81.749487849111773, 41.035847246492125 ], [ -81.743452474921668, 41.037354281454732 ], [ -81.735669971281808, 41.044736319409012 ], [ -81.729970615361808, 41.04666235244882 ], [ -81.699389742603231, 41.047387543043314 ], [ -81.694094425649112, 41.0457815777429 ], [ -81.687274026709062, 41.041604624065165 ], [ -81.683511801836019, 41.040467648386105 ], [ -81.662888546138589, 41.039673776686783 ], [ -81.631018602771405, 41.039265974050011 ], [ -81.612081441392945, 41.040430090983605 ], [ -81.589055044613929, 41.038831233543988 ], [ -81.581004567583918, 41.036169282911523 ], [ -81.565646635116565, 41.035459377221798 ], [ -81.565050532403049, 41.047716384569277 ], [ -81.56756863094995, 41.057958371615577 ], [ -81.566218537592178, 41.059953380787583 ], [ -81.556237927232331, 41.059911444505246 ], [ -81.550409564129737, 41.061094482245529 ], [ -81.537712781895692, 41.062059564012237 ], [ -81.527092130981856, 41.06225763218432 ], [ -81.5258030516964, 41.062330640494864 ], [ -81.51856260658937, 41.062700687177326 ], [ -81.504660760583107, 41.06196077566775 ], [ -81.489866000832876, 41.063364861885496 ], [ -81.483884734086629, 41.062189893838998 ], [ -81.457569535836058, 41.061175038004997 ], [ -81.456036463093284, 41.061629046157059 ], [ -81.450123181228179, 41.063624076951086 ], [ -81.439441688199594, 41.064437133760883 ], [ -81.425860052436789, 41.067126202397482 ], [ -81.401444875328664, 41.078627302731462 ], [ -81.392739440512315, 41.085765325264127 ], [ -81.385087066168978, 41.090678345668266 ], [ -81.377273659770509, 41.100451347909235 ], [ -81.371910393116679, 41.104895354351292 ], [ -81.367676192838175, 41.106456365419284 ], [ -81.347419267806856, 41.107577439799712 ], [ -81.295940927618446, 41.108718632253009 ], [ -81.276996058546473, 41.111014689224639 ], [ -81.25294697086602, 41.110648782361508 ], [ -81.242319505788203, 41.109366816880879 ], [ -81.231584031830096, 41.110156828942714 ], [ -81.222832657714122, 41.107535864529865 ], [ -81.206893963008596, 41.105986904151067 ], [ -81.157132777345183, 41.106215987758986 ], [ -81.110782744618419, 41.105057077098287 ], [ -81.095813087478135, 41.106289092453899 ], [ -81.043984815938316, 41.105896184901567 ], [ -81.035126426365039, 41.104797209741932 ], [ -81.017287635675331, 41.100017282668091 ], [ -80.999823868182204, 41.099937313879067 ], [ -80.9769876677735, 41.100258360811019 ], [ -80.956272590391606, 41.103908375510947 ], [ -80.857154413522494, 41.108059566824608 ], [ -80.837881412785151, 41.109356601886738 ], [ -80.821858464080279, 41.091137759979816 ], [ -80.797527081516634, 41.075748908038641 ], [ -80.761254916392971, 41.042569171627569 ], [ -80.739806867980988, 41.032155294745884 ], [ -80.731857566358627, 41.029599348700089 ], [ -80.722991213353424, 41.024537426840432 ], [ -80.722160179510396, 41.023961435110834 ], [ -80.710112680389742, 41.014447569222263 ], [ -80.684308578681822, 40.984170976529192 ], [ -80.660839670479874, 40.970648257624191 ], [ -80.642848957135172, 40.958303504301249 ], [ -80.627116327382154, 40.947370731561286 ], [ -80.583276691150019, 40.939052163614491 ], [ -80.557587662728224, 40.92467054115972 ], [ -80.528151531274716, 40.916320894181858 ], [ -80.519683186034172, 40.911430030990886 ], [ -80.51314392286497, 40.908211130782774 ], [ -80.491316200263995, 40.903370369893793 ], [ -80.456769313956926, 40.891121775107337 ], [ -80.431080692880059, 40.886121026008979 ], [ -80.402041920370934, 40.867192526590699 ], [ -80.396228707816306, 40.852803798843176 ], [ -80.391040549668006, 40.845078962672204 ], [ -80.385417404798247, 40.841196069506651 ], [ -80.374812142999133, 40.835569245730873 ], [ -80.36767797885804, 40.833834331747845 ], [ -80.351282595802545, 40.828211559193086 ], [ -80.341806353319228, 40.820040776874976 ], [ -80.334337186701163, 40.818548865179494 ], [ -80.324753962783021, 40.814113023373132 ], [ -80.301423431771141, 40.805041385130686 ], [ -80.295441288645407, 40.800464520256597 ], [ -80.290581179427591, 40.798457599656551 ], [ -80.269783720435825, 40.791015922788759 ], [ -80.242004238869811, 40.784287227359286 ], [ -80.240196223629908, 40.782345262784872 ], [ -80.238067191655475, 40.772686441798477 ], [ -80.226936115419505, 40.757824700974652 ], [ -80.214355061784531, 40.753624754556036 ], [ -80.203635997003857, 40.747475817389073 ], [ -80.193038893125461, 40.741444847832938 ], [ -80.16896770086133, 40.73415487212332 ], [ -80.151610431290507, 40.720574974899669 ], [ -80.140379304649642, 40.716359003392022 ], [ -80.125968070279285, 40.707048083680078 ], [ -80.105100446388192, 40.679254367649015 ], [ -80.101545324132061, 40.674115423616612 ], [ -80.096235083277705, 40.663499541564953 ], [ -80.094335044925913, 40.662446554051527 ], [ -80.090809979662765, 40.660855573450348 ], [ -80.07779475141524, 40.656011635851456 ], [ -80.061154510785272, 40.652951683066114 ], [ -80.041874276464483, 40.651826710934998 ], [ -80.028514925753356, 40.643018834614772 ], [ -80.019023846296946, 40.644288827267495 ], [ -80.007228605052489, 40.64003189597986 ], [ -79.997051436707991, 40.640130892205939 ], [ -79.988093991065043, 40.633229952363784 ], [ -79.979388309957045, 40.616350149006145 ], [ -79.969644940077089, 40.613020156303428 ], [ -79.956384561033218, 40.613512097828277 ], [ -79.947717208949328, 40.609438119009702 ], [ -79.929718444760852, 40.5992031860129 ], [ -79.923569261403046, 40.598971164790768 ], [ -79.910796795857792, 40.59469817136268 ], [ -79.895248338302764, 40.594229115831205 ], [ -79.886274975387749, 40.589373144638095 ], [ -79.877852677122959, 40.586668146843408 ], [ -79.864531050740169, 40.574835249664332 ], [ -79.856771729749823, 40.569823284258575 ], [ -79.846273150367168, 40.555681427216683 ], [ -79.83138767191798, 40.552077413051258 ], [ -79.824947423255665, 40.54832743538001 ], [ -79.822819210022303, 40.540350530561099 ], [ -79.819484796309723, 40.523627734459261 ], [ -79.803668312653784, 40.519976714815392 ], [ -79.800220159980242, 40.516630743505985 ], [ -79.792109868862212, 40.512270765293543 ], [ -79.789873768266801, 40.509939785832323 ], [ -79.789164641949469, 40.504057858734043 ], [ -79.785517475336277, 40.500002895049001 ], [ -79.780649227762169, 40.488440975566562 ], [ -79.771111917725563, 40.482203992693059 ], [ -79.767358748605616, 40.475410039435154 ], [ -79.759667382724615, 40.459804154074696 ], [ -79.755418212898945, 40.45420819139111 ], [ -79.753686054414558, 40.443752283291843 ], [ -79.751274937892589, 40.438762322601796 ], [ -79.750015882951246, 40.436702338186706 ], [ -79.748573829721664, 40.434188353727784 ], [ -79.739647604522801, 40.426997368181361 ], [ -79.730095281824163, 40.412410456302986 ], [ -79.724724149274522, 40.408695463827847 ], [ -79.692664450503187, 40.395549432350194 ], [ -79.679259079274445, 40.384193492766549 ], [ -79.675802963740864, 40.379787526666092 ], [ -79.678839927996648, 40.372756620986436 ], [ -79.679472797935688, 40.361533751439495 ], [ -79.690809786746669, 40.344211990468622 ], [ -79.692587757579375, 40.339192052327 ], [ -79.691427682090364, 40.334786096822398 ], [ -79.680418303714532, 40.320832217117498 ], [ -79.678457201035684, 40.315605270683392 ], [ -79.677717125158722, 40.310700324529087 ], [ -79.676924096440473, 40.30962033467577 ], [ -79.672681933051948, 40.303128398018856 ], [ -79.667355381784205, 40.26820479307284 ], [ -79.66557032771054, 40.266777806970737 ], [ -79.643062784608844, 40.259838857502977 ], [ -79.642307659636899, 40.251675957655749 ], [ -79.636417445334388, 40.243223106205427 ], [ -79.624462154624197, 40.23820618868028 ], [ -79.617892958934632, 40.231588307348538 ], [ -79.606623669734816, 40.224275429246738 ], [ -79.602198539357445, 40.219377514431393 ] ], [ [ -79.386228981305507, 40.110523848222897 ], [ -79.385373967502204, 40.110881848191852 ] ], [ [ -78.511017213222303, 40.055988260360934 ], [ -78.510956270348998, 40.049450371491943 ] ], [ [ -75.101831141194864, 39.867414483429428 ], [ -75.10219721855232, 39.874796424143746 ], [ -75.104906411928866, 39.888673305422579 ], [ -75.108514570594679, 39.897001228275101 ], [ -75.112443703221672, 39.901998176926028 ], [ -75.120164894059954, 39.903684138577603 ], [ -75.129527119731748, 39.905244096664894 ], [ -75.140452381436901, 39.907282047654704 ], [ -75.149592596414678, 39.908598010321043 ], [ -75.151019629512376, 39.908704005193826 ], [ -75.172359125407382, 39.912205919330098 ], [ -75.181224328345806, 39.913479886201486 ], [ -75.190189531585318, 39.915124851756744 ], [ -75.189617510953894, 39.92080782485715 ], [ -75.189563508608941, 39.921673820651748 ], [ -75.191127541410125, 39.922753811125354 ], [ -75.199939712211375, 39.931626746442106 ], [ -75.198902677408412, 39.936963723632388 ], [ -75.196773628986278, 39.939332716872052 ], [ -75.193103549461, 39.942879707113747 ], [ -75.182689342583402, 39.951676681653019 ], [ -75.182140332072208, 39.952740676995255 ], [ -75.181270315643374, 39.95463266845006 ], [ -75.181202314340098, 39.954892667184616 ], [ -75.181118312731769, 39.955227665546708 ], [ -75.180706304975615, 39.956746658145832 ], [ -75.182048327469829, 39.959633640869036 ], [ -75.185268379583604, 39.964329611946354 ], [ -75.191837483074494, 39.968964580460813 ], [ -75.194362512527547, 39.975258546910325 ], [ -75.203868650355844, 39.979138520282994 ], [ -75.207096690267932, 39.981976505014565 ], [ -75.207775689534998, 39.985104490632089 ], [ -75.206798665247049, 39.988038478100648 ], [ -75.196628504432496, 39.995373448246291 ], [ -75.194675380196202, 40.004471330846691 ], [ -75.208103427175402, 40.010014204405671 ], [ -75.21567939932423, 40.015385081102202 ], [ -75.221508326877441, 40.021575938306697 ], [ -75.228702319754035, 40.025363846991588 ], [ -75.232006328716906, 40.026531817623187 ], [ -75.242885229449612, 40.035469601600745 ], [ -75.247745231542041, 40.037414551069766 ], [ -75.259014406902281, 40.046546154885249 ], [ -75.270961544683487, 40.057761655056616 ], [ -75.282222501483673, 40.071097110232799 ], [ -75.28537358816962, 40.071661033405931 ], [ -75.321722152495198, 40.064908477068464 ], [ -75.330503485394345, 40.064683308978317 ], [ -75.334219505516785, 40.066934177611948 ], [ -75.341085671848049, 40.068452002087966 ], [ -75.349859654084327, 40.074303674784169 ], [ -75.367034091201887, 40.076706267020803 ], [ -75.39465254307467, 40.083476527638041 ], [ -75.407317471411503, 40.089835095148821 ], [ -75.411986534436366, 40.090845971780986 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I76  N\", \"DIST_MILES\": 0.570000, \"DIST_KM\": 0.910000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -80.105100446388192, 40.679254367649015 ], [ -80.100278404466721, 40.679311366961613 ], [ -80.095884368085009, 40.679460365249888 ] ], [ [ -77.96048160034799, 40.052218114624637 ], [ -77.959085559727143, 40.051535152947316 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I76  S\", \"DIST_MILES\": 0.520000, \"DIST_KM\": 0.840000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -77.815740165046279, 40.096445567233175 ], [ -77.809612999510051, 40.090536813689646 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I77\", \"DIST_MILES\": 546.830000, \"DIST_KM\": 880.050000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -81.561893976570218, 38.316688188012677 ], [ -81.557788885988685, 38.317058248019805 ], [ -81.554767806674036, 38.316753306374189 ], [ -81.552852704779596, 38.314205401292263 ], [ -81.554714697358861, 38.311825428470705 ], [ -81.557628747318631, 38.310909401899607 ], [ -81.563587853677248, 38.309227342820662 ] ], [ [ -81.504660760583107, 41.06196077566775 ], [ -81.505133985649849, 41.029092743608231 ], [ -81.50176880383745, 41.025259760577477 ], [ -81.497313599355508, 41.02040678517632 ], [ -81.494574540137506, 41.009218795713338 ], [ -81.493475749293012, 40.988714910362113 ], [ -81.491362712711535, 40.985349959535249 ], [ -81.47762128031404, 40.974272168618732 ], [ -81.465192901238908, 40.963668358967332 ], [ -81.455365600582226, 40.955386505446484 ], [ -81.428349944956523, 40.923564974947212 ], [ -81.426572001182123, 40.916088052629682 ], [ -81.428502259504768, 40.906845122913381 ], [ -81.431958756721727, 40.888386267338625 ], [ -81.429701060424577, 40.866272477822108 ], [ -81.423238918026925, 40.858040585476388 ], [ -81.411138514188778, 40.850128717665172 ], [ -81.399030224631815, 40.836086898371448 ], [ -81.396978316397721, 40.826122992062423 ], [ -81.396138404594382, 40.819318053052157 ], [ -81.397748642077019, 40.810441120143658 ], [ -81.397824797254543, 40.802258188558746 ], [ -81.39585675016049, 40.800004216022728 ], [ -81.391347592218196, 40.797543255970616 ], [ -81.384732525060983, 40.785100386227164 ], [ -81.382169467737711, 40.781972422177432 ], [ -81.381124474067562, 40.779103449711783 ], [ -81.388272912527881, 40.7728434728227 ], [ -81.402151725858005, 40.762677505056004 ], [ -81.407729154950246, 40.744523725284132 ], [ -81.414275357696596, 40.735516920040268 ], [ -81.421516572295232, 40.724817155501007 ], [ -81.421333483190381, 40.716879348339681 ], [ -81.429046675305443, 40.702299680268062 ], [ -81.438659684124559, 40.662585626697378 ], [ -81.44709797061924, 40.654941797077136 ], [ -81.452500087893512, 40.643963057634757 ], [ -81.45620013744427, 40.633682305592153 ], [ -81.475731792773374, 40.616802696566708 ], [ -81.48253803427707, 40.612312800196037 ], [ -81.496248589245326, 40.609531852730115 ], [ -81.50975306913665, 40.594823170843114 ], [ -81.520899551022197, 40.587922293258742 ], [ -81.522379587155555, 40.584382378777107 ], [ -81.520670450491707, 40.57968251019183 ], [ -81.509652776988574, 40.569062836177949 ], [ -81.50678455277631, 40.562052028876451 ], [ -81.502824226073614, 40.55104332663106 ], [ -81.499764945771616, 40.540194614044367 ], [ -81.493241530574664, 40.527540936145108 ], [ -81.4817738006318, 40.504714510683222 ], [ -81.477958561569096, 40.491523795508847 ], [ -81.483939756716836, 40.478516061981587 ], [ -81.494766148337433, 40.466946315123934 ], [ -81.506737626188524, 40.449677682640797 ], [ -81.524431434896641, 40.43550598657658 ], [ -81.534860910566309, 40.429086131441096 ], [ -81.542872253335375, 40.421426306830384 ], [ -81.549738486535347, 40.406804642374112 ], [ -81.550555490165408, 40.401677759286557 ], [ -81.560290843081447, 40.386946111987598 ], [ -81.560435720920054, 40.369627509565291 ], [ -81.569636924760715, 40.342288170086533 ], [ -81.569620735109893, 40.318507723273321 ], [ -81.567812584371993, 40.309200931118461 ], [ -81.559389146770243, 40.298390138300299 ], [ -81.556863990138652, 40.291371285341462 ], [ -81.543222291848878, 40.271038665317526 ], [ -81.544038296636856, 40.266739766454648 ], [ -81.552140559695474, 40.257841019025442 ], [ -81.551332594669901, 40.241640245435946 ], [ -81.554681868273818, 40.231599334435032 ], [ -81.552980973518743, 40.219644402278988 ], [ -81.556864350086727, 40.203569533208643 ], [ -81.557558555492648, 40.190912620669515 ], [ -81.554110613459997, 40.177820685996451 ], [ -81.545351474055323, 40.165159718692813 ], [ -81.544024533818956, 40.157739760947166 ], [ -81.550982963814604, 40.145391882865468 ], [ -81.553234278542561, 40.129031003695943 ], [ -81.562343887114523, 40.108599185435338 ], [ -81.562770963069525, 40.104231216001139 ], [ -81.558491006662834, 40.090662283302073 ], [ -81.566044470086283, 40.075880415600082 ], [ -81.567486716333221, 40.061602514303232 ], [ -81.562657742029671, 40.048293579027117 ], [ -81.561184760434998, 40.043539603619038 ], [ -81.562100962595011, 40.03124968751505 ], [ -81.561840975009645, 40.029765696103134 ], [ -81.561467992217686, 40.027682708141263 ], [ -81.56132301299067, 40.025870719357897 ], [ -81.559331132628913, 40.012850796447722 ], [ -81.560583298311826, 40.003890859800904 ], [ -81.558797301517231, 39.999609879482449 ], [ -81.557859307344728, 39.996592885409498 ], [ -81.552045149097424, 39.994551871117586 ], [ -81.549161088909315, 39.991961869689554 ], [ -81.536503894603158, 39.974501892485975 ], [ -81.529766755935398, 39.968199898434342 ], [ -81.533338165740773, 39.942451009081793 ], [ -81.52654829484824, 39.9127001198964 ], [ -81.530210599970047, 39.896308189094967 ], [ -81.53273585261887, 39.881374248839933 ], [ -81.544974558817145, 39.854030343848613 ], [ -81.544104717440916, 39.837970402118046 ], [ -81.550499079343496, 39.824420437608126 ], [ -81.548713338176057, 39.797233534206391 ], [ -81.554245669016709, 39.784084560711918 ], [ -81.542205540723927, 39.761741682100109 ], [ -81.533737378496838, 39.752143754108729 ], [ -81.533371407946959, 39.741870787646171 ], [ -81.531837364225467, 39.738925802919006 ], [ -81.519164980949043, 39.722614904372918 ], [ -81.502089459517194, 39.693833055437885 ], [ -81.481489688687319, 39.67013209659823 ], [ -81.468053174860714, 39.659314108062269 ], [ -81.465200086074589, 39.645779147804284 ], [ -81.463872055559619, 39.633591186089241 ], [ -81.457394842636816, 39.611561253493107 ], [ -81.461301035755, 39.588944331807319 ], [ -81.455815840567482, 39.579934360422705 ], [ -81.449322622452215, 39.56343141698656 ], [ -81.449185664388068, 39.53931550208894 ], [ -81.44453150296161, 39.531464532338298 ], [ -81.444767517995516, 39.528443543089509 ], [ -81.454434916149296, 39.511944594116237 ], [ -81.455235954788492, 39.507493608683546 ], [ -81.444676523968212, 39.490124705497998 ], [ -81.441235340366731, 39.478451780558309 ], [ -81.435498081536778, 39.468434849655274 ], [ -81.43982417565185, 39.45442392896048 ], [ -81.439053123460582, 39.449273961636038 ], [ -81.432804865207146, 39.442537013505081 ], [ -81.430080736933135, 39.435945059112527 ], [ -81.427020597945031, 39.429483104941532 ], [ -81.42734158419978, 39.423723140289717 ], [ -81.420741314763845, 39.416036201565539 ], [ -81.42485443282051, 39.409395234906356 ], [ -81.428615548691326, 39.405355252196657 ], [ -81.439113865960209, 39.393526302011097 ], [ -81.439273759452846, 39.369474448499226 ], [ -81.442531816893208, 39.357755511333657 ], [ -81.451275057699021, 39.345594560539261 ], [ -81.461667371448598, 39.337663577717507 ], [ -81.463543388433635, 39.328695624562044 ], [ -81.477505780314104, 39.314306664238671 ], [ -81.482846922447209, 39.30784468358825 ], [ -81.48831708064732, 39.303693688902229 ], [ -81.496076261043711, 39.290693734406702 ], [ -81.49380309790071, 39.275705824469902 ], [ -81.499296227698977, 39.267534849006985 ], [ -81.500783233906631, 39.259546892213848 ], [ -81.500295162431712, 39.241255149658677 ], [ -81.502126235164582, 39.238104227175768 ], [ -81.508756494055945, 39.233943336752915 ], [ -81.519590914725427, 39.22824348734094 ], [ -81.525260133826194, 39.227324517761957 ], [ -81.527724229008683, 39.225539562380916 ], [ -81.52860126283133, 39.223467610816279 ], [ -81.527228209951048, 39.220019687098898 ], [ -81.520002933835229, 39.207316967984816 ], [ -81.529707304369921, 39.188915395826264 ], [ -81.541052728374879, 39.164776942346613 ], [ -81.544417853154854, 39.160847029651052 ], [ -81.546637931420094, 39.147546324653938 ], [ -81.549545037041511, 39.141946447021795 ], [ -81.545149864535546, 39.111707122810891 ], [ -81.549301012487007, 39.103517297818321 ], [ -81.544714843813352, 39.09632746582367 ], [ -81.542906776342647, 39.08881963681317 ], [ -81.545645872851125, 39.08252977081483 ], [ -81.553085136629079, 39.075849900810326 ], [ -81.563575505767261, 39.066928068686643 ], [ -81.57138878239607, 39.065101086659269 ], [ -81.582612175945854, 39.059661170872204 ], [ -81.595727635328259, 39.055129226973364 ], [ -81.596375652704111, 39.050849314225331 ], [ -81.59238550510608, 39.045348442176589 ], [ -81.591385463359003, 39.039908559659153 ], [ -81.595002585122032, 39.035830632273409 ], [ -81.601403807296307, 39.034388639199122 ], [ -81.604371908981321, 39.032878659597273 ], [ -81.61126113544033, 39.023730821358193 ], [ -81.62033243776564, 39.016108939773574 ], [ -81.624551568087227, 39.007431096628181 ], [ -81.627306658091968, 39.004761138028393 ], [ -81.63047976533035, 39.003700145096602 ], [ -81.646517315453607, 39.002781091451602 ], [ -81.657557692260355, 38.995541216820442 ], [ -81.665881979280513, 38.993198240725363 ], [ -81.672069193874847, 38.988392339559645 ], [ -81.677257371870084, 38.987129347647603 ], [ -81.682270543062288, 38.987560311507707 ], [ -81.689419788754961, 38.982769401742033 ], [ -81.692760903739895, 38.978062507609081 ], [ -81.692287889140076, 38.9711686900202 ], [ -81.703473269498645, 38.955003046202258 ], [ -81.703603274403932, 38.942601365043366 ], [ -81.719960818514537, 38.924111730518895 ], [ -81.725721008282818, 38.918839823867259 ], [ -81.724553964641771, 38.901312272907639 ], [ -81.740293475414262, 38.88882346397471 ], [ -81.742041531003494, 38.886053518564751 ], [ -81.74028647038682, 38.879732688532044 ], [ -81.734930292585346, 38.871801928955655 ], [ -81.73610532820058, 38.866462051704552 ], [ -81.734861284561632, 38.858752253875586 ], [ -81.73093215577947, 38.852923433617995 ], [ -81.724103935000926, 38.847552629398429 ], [ -81.725522978889387, 38.842303748478116 ], [ -81.723409909968765, 38.836993901645791 ], [ -81.727636039060826, 38.820126284980134 ], [ -81.728392057142642, 38.80316670228585 ], [ -81.732710189352474, 38.795513848357416 ], [ -81.72366090344363, 38.783044257919279 ], [ -81.723622899935947, 38.774373476701008 ], [ -81.716306672748487, 38.7667557519583 ], [ -81.710713500542596, 38.76522685480785 ], [ -81.704922322578511, 38.761706011691906 ], [ -81.692287935393665, 38.759424217167116 ], [ -81.685001713511539, 38.755198413011392 ], [ -81.681469603062368, 38.748537627559443 ], [ -81.676121423583112, 38.742445841428093 ], [ -81.650592608292826, 38.722366652408674 ], [ -81.64152830413488, 38.703968229413931 ], [ -81.640620234709516, 38.680638830654694 ], [ -81.651118504221984, 38.665281078185089 ], [ -81.653460557076002, 38.658990204380508 ], [ -81.647700336235829, 38.6299610123219 ], [ -81.641452140732099, 38.617098424908555 ], [ -81.637301005568048, 38.604262809295356 ], [ -81.641009089967042, 38.596091962060974 ], [ -81.639659029321052, 38.582443327043968 ], [ -81.641558068225123, 38.576522448361786 ], [ -81.637407948860073, 38.570293668327821 ], [ -81.63619490693506, 38.564247839929358 ], [ -81.636568909531192, 38.560172937540763 ], [ -81.633592822973455, 38.55413113646032 ], [ -81.63719389860178, 38.544728319333196 ], [ -81.645388085648037, 38.534211456897665 ], [ -81.643260003028999, 38.518811878908913 ], [ -81.643808998306966, 38.509264110918899 ], [ -81.642938836300303, 38.494482493092001 ], [ -81.645792680475068, 38.484254695463207 ], [ -81.643343430958708, 38.475603946287798 ], [ -81.645837300447084, 38.466925116701155 ], [ -81.643785160465839, 38.46281725046309 ], [ -81.630410462356224, 38.44577388605024 ], [ -81.62662620103157, 38.43804513702954 ], [ -81.623306854673643, 38.425933487470886 ], [ -81.624847813945308, 38.422386548551671 ], [ -81.631416887495789, 38.418514534273143 ], [ -81.631713801095046, 38.414257633172511 ], [ -81.624679532309813, 38.409755859609511 ], [ -81.622810404960561, 38.406013981950814 ], [ -81.618187220715583, 38.402707139430575 ], [ -81.617767105976597, 38.397946262691185 ], [ -81.620613096363115, 38.394383302404464 ], [ -81.620536024939312, 38.391217380990632 ], [ -81.615828757267167, 38.38420263066056 ], [ -81.609076493786446, 38.379620855117345 ], [ -81.60661233828921, 38.375246003169288 ], [ -81.60900027378328, 38.369688099232633 ], [ -81.613760296000208, 38.365476122707037 ], [ -81.631392603016792, 38.360104959200399 ], [ -81.632094596794602, 38.359051973144091 ] ], [ [ -80.959896366007143, 33.996634490413669 ], [ -80.953411316932986, 33.988425386011635 ], [ -80.954853419128881, 33.973700354118591 ], [ -80.9526104491827, 33.962676293632036 ], [ -80.957073548186372, 33.95582431816274 ], [ -80.961574619152216, 33.954016358747687 ], [ -80.990476026777742, 33.950736643493286 ], [ -80.997571132818337, 33.948454705056186 ], [ -81.009717563626936, 33.936926368863489 ], [ -81.017842868195672, 33.93281010676445 ], [ -81.028563263215958, 33.928834772923445 ], [ -81.056319236448246, 33.930203946450256 ], [ -81.073150829451961, 33.930424442820097 ] ], [ [ -81.194631836876383, 37.729836039298085 ], [ -81.182844364088041, 37.722264241388345 ], [ -81.165341717391911, 37.718014500453194 ], [ -81.15387430792795, 37.716916660193185 ], [ -81.151684201777456, 37.714104706904124 ], [ -81.151425109161224, 37.706296758942088 ], [ -81.149739021373563, 37.703663797949758 ], [ -81.131526270996517, 37.694486100529566 ], [ -81.126520953553097, 37.682806242337286 ], [ -81.114710385042372, 37.671526474877282 ], [ -81.115809340047193, 37.664606504416675 ], [ -81.110681932106033, 37.647318686075479 ], [ -81.111489812779837, 37.635366752117967 ], [ -81.118402908956185, 37.621477745673367 ], [ -81.121339886489409, 37.610117777521225 ], [ -81.126199962658447, 37.600298772175876 ], [ -81.12661988416346, 37.592252817511422 ], [ -81.117982399505806, 37.581225009824031 ], [ -81.11224500850723, 37.568766171298549 ], [ -81.115479807903114, 37.541667299625672 ], [ -81.108521310573593, 37.525939501402547 ], [ -81.109665323839451, 37.523047503558793 ], [ -81.118836598312257, 37.51272843695287 ], [ -81.119415590092402, 37.509955446307053 ], [ -81.11107610923905, 37.501067625068792 ], [ -81.102424650975678, 37.495383769022681 ], [ -81.091399118270203, 37.4925189350773 ], [ -81.079168475376534, 37.485759124261598 ], [ -81.067937781025847, 37.472637305715274 ], [ -81.067105612913423, 37.463455331933972 ], [ -81.064183409144235, 37.458667379423616 ], [ -81.066464332620555, 37.445778368584477 ], [ -81.064572160588682, 37.439968402731253 ], [ -81.066136028948975, 37.425468404783729 ], [ -81.060779507666567, 37.40717750012675 ], [ -81.062374439569965, 37.397007495312252 ], [ -81.056644025710966, 37.388027577386147 ], [ -81.046199401492146, 37.381069710445338 ], [ -81.04342219670886, 37.376739747831607 ], [ -81.048571249201629, 37.362980703303656 ], [ -81.056643556226348, 37.355907620619263 ], [ -81.055781411163878, 37.349018639458208 ], [ -81.060893602588592, 37.344047589907802 ], [ -81.06087051020873, 37.337726599289795 ], [ -81.059184368183338, 37.333976622827109 ], [ -81.060222335031753, 37.327938620300259 ], [ -81.058009130966042, 37.321888652110239 ], [ -81.060923146459444, 37.312317635444806 ], [ -81.071475661715354, 37.309067532843819 ], [ -81.090473634487594, 37.306057346094732 ], [ -81.094631795454802, 37.301319314669847 ], [ -81.103970227401973, 37.295799234908422 ], [ -81.123663228487132, 37.29060705583958 ], [ -81.125479306538296, 37.288849043335361 ], [ -81.125769268947579, 37.284218054201794 ], [ -81.123762056236856, 37.27529909937649 ], [ -81.121648825048794, 37.265438147383158 ], [ -81.120053645810472, 37.257698183815236 ], [ -81.112401120657566, 37.241680277706074 ], [ -81.106716798921767, 37.239437327370709 ], [ -81.099621397733742, 37.237709388079821 ], [ -81.096462216312588, 37.235039415200291 ], [ -81.09167091583555, 37.214607455898886 ], [ -81.093731029501654, 37.212127440063938 ], [ -81.10520567501969, 37.20476935449576 ], [ -81.114026169945063, 37.194038295327864 ], [ -81.122891678414319, 37.19225723303898 ], [ -81.129393050609096, 37.188217190927091 ], [ -81.134855363474585, 37.181698160604682 ], [ -81.142637811707232, 37.163128134542205 ], [ -81.138655575278946, 37.143379186600434 ], [ -81.135023360382704, 37.139999211823579 ], [ -81.127957943656781, 37.139808252156577 ], [ -81.123761695254061, 37.138260277419626 ], [ -81.120465495084076, 37.130230302757226 ], [ -81.12115253155315, 37.12407730435725 ], [ -81.124326714109884, 37.114097297271108 ], [ -81.128247944788896, 37.107368285033445 ], [ -81.128964984774854, 37.101158288357368 ], [ -81.126752844203239, 37.086559313409388 ], [ -81.127248864374039, 37.067688330890689 ], [ -81.129599004950364, 37.061867328767981 ], [ -81.138342536580964, 37.049598314997965 ], [ -81.138708558076459, 37.044769320423654 ], [ -81.122266537702529, 37.032539380450736 ], [ -81.109386735238843, 37.027340417201927 ], [ -81.107243599855948, 37.025058423615199 ], [ -81.107174584931229, 37.015098428442414 ], [ -81.105511478423537, 37.012600433062282 ], [ -81.097010936320473, 37.00414645222655 ], [ -81.085475200950256, 36.998577500877829 ], [ -81.079927835498495, 36.994110593776661 ], [ -81.071611263094823, 36.981369853749435 ], [ -81.068170022033314, 36.97517098290384 ], [ -81.064660744199358, 36.960919271608056 ], [ -81.056023179836927, 36.956170401796207 ], [ -81.053428985250392, 36.948640564788931 ], [ -81.051521858500067, 36.947129604596618 ], [ -81.03406473778098, 36.94310877610404 ], [ -81.005528903031049, 36.936430077129863 ], [ -80.986232849303676, 36.936312222690432 ], [ -80.94443672045864, 36.932710654739545 ], [ -80.919754453794695, 36.945940517495735 ], [ -80.909942980296833, 36.930140007805129 ], [ -80.895553298079221, 36.916350494737728 ], [ -80.878813522009096, 36.904773955584119 ], [ -80.87620440885641, 36.901821059700374 ], [ -80.874800416274056, 36.885631513334928 ], [ -80.872008325680142, 36.877201770695947 ], [ -80.872397387936203, 36.868043016775594 ], [ -80.860242949719833, 36.84734471436785 ], [ -80.851438674041788, 36.829443310602272 ], [ -80.852292750186919, 36.823183475530527 ], [ -80.850942710506629, 36.820425568363618 ], [ -80.854352918004167, 36.81013381491924 ], [ -80.853009878797252, 36.807486904938905 ], [ -80.827497035985772, 36.781524959186406 ], [ -80.803158206268435, 36.768555655790138 ], [ -80.788890783177649, 36.757177185934609 ], [ -80.77585935923382, 36.751687530501307 ], [ -80.772517179622966, 36.745687684520369 ], [ -80.766619768096916, 36.734216916867886 ], [ -80.754557213457815, 36.727926152156172 ], [ -80.747682897513698, 36.721979354094735 ], [ -80.737588278190273, 36.697439968255459 ], [ -80.713867465431122, 36.679851892497702 ], [ -80.7097852684592, 36.674259072682368 ], [ -80.70926704331184, 36.663510195896627 ], [ -80.705337780508088, 36.654820396863478 ], [ -80.706656684548918, 36.648548420512562 ], [ -80.728873816237282, 36.627652015694572 ], [ -80.741050955514154, 36.618369789994425 ], [ -80.741355881807721, 36.61373183640994 ], [ -80.736449577552406, 36.603840081455516 ], [ -80.742103612422341, 36.597248011316424 ], [ -80.742896585549389, 36.594479023696891 ], [ -80.741965425906656, 36.58681913811256 ], [ -80.744933072860462, 36.561650364686045 ], [ -80.742880840665123, 36.551838530092915 ], [ -80.751036824878582, 36.535672565292593 ], [ -80.742514171593854, 36.514210984392122 ], [ -80.742474901657289, 36.497075206113323 ], [ -80.750463087715133, 36.484613278882264 ], [ -80.756033196488545, 36.469510545282773 ], [ -80.768469605403581, 36.458570726705922 ], [ -80.778135850559053, 36.439783031562555 ], [ -80.775701654387504, 36.425742271006321 ], [ -80.787985916103324, 36.394492752506352 ], [ -80.790815918515989, 36.379073991827127 ], [ -80.799003114089771, 36.360893246041449 ], [ -80.79517986596268, 36.347251482510373 ], [ -80.794248688454701, 36.327404805433844 ], [ -80.823836515205599, 36.277115367494829 ], [ -80.825416547750763, 36.272713419436627 ], [ -80.824599447596313, 36.263024569571847 ], [ -80.821059216946935, 36.250283790952267 ], [ -80.81221681551645, 36.22109380796622 ], [ -80.81084274362496, 36.210534795825843 ], [ -80.811445747447635, 36.197644760263934 ], [ -80.812239753217298, 36.181103714597597 ], [ -80.808309572125225, 36.166653715452426 ], [ -80.80798953286245, 36.150063679158166 ], [ -80.808782551450875, 36.141644652477133 ], [ -80.813879725665842, 36.121792562501916 ], [ -80.812292620851764, 36.096005515914179 ], [ -80.821775968037443, 36.072815384383681 ], [ -80.822493968379788, 36.054379336792223 ], [ -80.818769782670842, 36.0321433159273 ], [ -80.821646888885667, 36.025414277904133 ], [ -80.830787242787068, 36.014344181547479 ], [ -80.839454628181258, 35.993813175646842 ], [ -80.839316779242054, 35.97582343948045 ], [ -80.846161166651868, 35.961976571696333 ], [ -80.855377749462207, 35.934075855235818 ], [ -80.854301942642564, 35.905046263373428 ], [ -80.862863365328067, 35.890726330373113 ], [ -80.866525581300351, 35.879495419443671 ], [ -80.863961632276329, 35.860925700558781 ], [ -80.859239562009705, 35.849046938238835 ], [ -80.859910704668749, 35.83371212940515 ], [ -80.86124593386846, 35.809905417533834 ], [ -80.863627278639768, 35.774916823889335 ], [ -80.862558324298305, 35.764697981569405 ], [ -80.855723328790518, 35.71310816132037 ], [ -80.858973455369949, 35.698837021468577 ], [ -80.852762324402747, 35.684047086765631 ], [ -80.856546451701334, 35.674105958338124 ], [ -80.859476543651454, 35.668215869343769 ], [ -80.861353619875871, 35.65673777819822 ], [ -80.865053737591893, 35.646487657864434 ], [ -80.862543713044246, 35.629527632066512 ], [ -80.857493619632024, 35.617335672315875 ], [ -80.860209733320218, 35.597167529050736 ], [ -80.860003736162597, 35.594004518253591 ], [ -80.856493691597123, 35.579825513781778 ], [ -80.85590669286205, 35.574244497383589 ], [ -80.858713781998119, 35.56333839908126 ], [ -80.8578897893847, 35.553225365501639 ], [ -80.865840047819432, 35.51181705733606 ], [ -80.866527077841809, 35.503996013672634 ], [ -80.874934090640153, 35.483836242003832 ], [ -80.875003000932722, 35.474269453723323 ], [ -80.875223878702428, 35.460986745980421 ], [ -80.868982635736984, 35.447628127799703 ], [ -80.86731945782023, 35.432068495465941 ], [ -80.859079153146254, 35.41578696670296 ], [ -80.857523064334373, 35.409348129857214 ], [ -80.855493929934823, 35.398938386885632 ], [ -80.849702722376634, 35.387936706252475 ], [ -80.848428614671008, 35.378827923836134 ], [ -80.841851373130723, 35.36549930327881 ], [ -80.842217337029396, 35.360887399980875 ], [ -80.848687281699398, 35.34252072088055 ], [ -80.848512200744167, 35.334146907731935 ], [ -80.847496989585096, 35.313342379212138 ], [ -80.848412952841542, 35.307669492677164 ], [ -80.851280843922964, 35.290622832627363 ], [ -80.844826569463862, 35.273041300395931 ], [ -80.845314528233544, 35.26769241215564 ], [ -80.841057384448035, 35.260002633780232 ], [ -80.848335457753521, 35.244102921344684 ], [ -80.856148649963671, 35.236161037668211 ], [ -80.858726712173691, 35.23390306687395 ], [ -80.860870786201218, 35.22910016923413 ], [ -80.865440900910272, 35.224931226464733 ], [ -80.871972075618061, 35.218072333563761 ], [ -80.88765863418881, 35.188142961711364 ], [ -80.887826683903015, 35.182932101059961 ], [ -80.887063691049704, 35.180353179353908 ], [ -80.886376712873215, 35.176264297631008 ], [ -80.890237910730917, 35.163263608259669 ], [ -80.895372149697991, 35.149462929036986 ], [ -80.910433630330004, 35.135135165046357 ], [ -80.91643085550983, 35.126796333757447 ], [ -80.928485343047669, 35.108329725477141 ], [ -80.931087463420369, 35.103267840988373 ], [ -80.933543649053618, 35.092236124830002 ], [ -80.956532622750586, 35.061073787803323 ], [ -80.961011073114591, 35.035276479227576 ], [ -80.964826264872244, 35.028844629542164 ], [ -80.965551298665062, 35.027848651767378 ], [ -80.967893423301518, 35.023492756153182 ], [ -80.971936786678768, 35.005057248779089 ], [ -80.986433461360775, 34.982915877825697 ], [ -80.987646538846604, 34.979077777743235 ], [ -80.98677753284602, 34.976827734371028 ], [ -80.986784564308905, 34.973680661815969 ], [ -80.972441366438417, 34.940335080997258 ], [ -80.972441429260314, 34.932804916834719 ], [ -80.982603995930347, 34.913406337780401 ], [ -80.987365278016313, 34.904156051101744 ], [ -80.999543007189629, 34.88372336130211 ], [ -81.005814355276016, 34.860582623177905 ], [ -81.028116087031478, 34.835412469481881 ], [ -81.031724305699271, 34.827401220765296 ], [ -81.032876452092026, 34.821027068976342 ], [ -81.038592241488217, 34.7888723370964 ], [ -81.035326981775228, 34.745871694311305 ], [ -81.029483431380612, 34.702911106562986 ], [ -81.02835533126931, 34.643131583502644 ], [ -81.022069405663814, 34.624252777584068 ], [ -81.019093527155135, 34.61006290430975 ], [ -81.007619028739782, 34.554601362199385 ], [ -81.004942046137458, 34.548039417951159 ], [ -81.000494082943817, 34.536782509365786 ], [ -80.997747461733653, 34.508073743716011 ], [ -80.995687727956565, 34.485693148398781 ], [ -80.996496969843975, 34.47048445750621 ], [ -80.992095094455735, 34.451895930432194 ], [ -80.996161613820874, 34.424174454140797 ], [ -80.994635841036796, 34.405063881114231 ], [ -80.993735969947124, 34.394276119818599 ], [ -80.996505489465946, 34.362873762372281 ], [ -81.006203258358141, 34.324887591862939 ], [ -81.004693324097644, 34.31737675021629 ], [ -80.999993342415308, 34.307866935955957 ], [ -80.996873423563272, 34.297266167468074 ], [ -80.999307216373552, 34.242545426336648 ], [ -80.998712240074354, 34.239478519066097 ], [ -80.984384243153343, 34.216789147230998 ], [ -80.985597495037055, 34.196480778237152 ], [ -80.978800570494116, 34.179651250672741 ], [ -80.971552545714744, 34.171109461654076 ], [ -80.966715523553773, 34.165971583375601 ], [ -80.96420556214396, 34.159021774830727 ], [ -80.964838762147238, 34.142729269958728 ], [ -80.962564889077811, 34.128611676417556 ], [ -80.962123056387014, 34.113643122235892 ], [ -80.961253132790631, 34.105892347233521 ], [ -80.954203158943145, 34.094043637556553 ], [ -80.940944089630548, 34.082183863486705 ], [ -80.922258968028444, 34.068013092300454 ], [ -80.923419146779182, 34.054795485136275 ], [ -80.925448235888879, 34.050023644231935 ] ], [ [ -81.677946200953841, 41.495897103311023 ], [ -81.677275110393438, 41.492799153720071 ], [ -81.670163729224512, 41.490571262946212 ], [ -81.669209678869962, 41.490320276911888 ], [ -81.664876437624514, 41.488565348716492 ], [ -81.661549103010898, 41.4797765056122 ], [ -81.660947021507766, 41.477159547978566 ], [ -81.660480970067098, 41.4757215727087 ], [ -81.657032501888466, 41.460893812329161 ], [ -81.65687929668151, 41.451150946828022 ], [ -81.650569792670453, 41.44208413642648 ], [ -81.643969009260374, 41.420832492065557 ], [ -81.643388824189103, 41.413508596722977 ], [ -81.64705888281901, 41.407088646392282 ], [ -81.65282697698899, 41.396800728245857 ], [ -81.652834553003203, 41.376140008957748 ], [ -81.649957094669261, 41.36165223325667 ], [ -81.648713082950778, 41.316360858476145 ], [ -81.648414884173889, 41.307655979018733 ], [ -81.636321747848726, 41.288243346770464 ], [ -81.636168497696261, 41.2770934974846 ], [ -81.636565482824864, 41.275277518430229 ], [ -81.636321274254968, 41.266312640638738 ], [ -81.629522498888491, 41.249264914729878 ], [ -81.627599477745179, 41.228615936906635 ], [ -81.625738490930317, 41.201848959598195 ], [ -81.626417750622011, 41.157063967595057 ], [ -81.627813854366281, 41.153542958452697 ], [ -81.630843054447567, 41.151040937201266 ], [ -81.64862820811959, 41.140298813380298 ], [ -81.650543347577297, 41.135808802038518 ], [ -81.65387762313128, 41.120785786751313 ], [ -81.645332101078466, 41.119511846987336 ], [ -81.624555819529405, 41.119149991792192 ], [ -81.618131429054188, 41.117876036789632 ], [ -81.606709763477667, 41.110006116982447 ], [ -81.591304851933771, 41.102598222518004 ], [ -81.587100616413778, 41.098108250722412 ], [ -81.582836408874073, 41.08765627820214 ], [ -81.574313936266321, 41.078081332906137 ], [ -81.574473997801888, 41.068376329829164 ], [ -81.572947927728563, 41.063993338718902 ], [ -81.569559736165075, 41.061041359730595 ], [ -81.566218537592178, 41.059953380787583 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I78\", \"DIST_MILES\": 144.520000, \"DIST_KM\": 232.580000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -76.521284052214369, 40.425471925842437 ], [ -76.502423922725129, 40.429599118103326 ], [ -76.48430416197634, 40.439460161449389 ], [ -76.46252123240636, 40.447650271368985 ], [ -76.426203868201526, 40.452960584610636 ], [ -76.403940119665577, 40.451251831219523 ], [ -76.379273203518892, 40.456181050321902 ], [ -76.377061121316672, 40.456704070106753 ], [ -76.347839038351097, 40.464913337390563 ], [ -76.327796338531698, 40.468293546750111 ], [ -76.294996198475275, 40.476437900890716 ], [ -76.266484254537161, 40.481412236056059 ], [ -76.223094664696944, 40.491514600299212 ], [ -76.185732214648297, 40.499895837010989 ], [ -76.105688920720738, 40.516863091212805 ], [ -75.998161993132825, 40.557135161317902 ], [ -75.96200474255194, 40.570464301690741 ], [ -75.899653291096342, 40.578326816828117 ], [ -75.893770990441183, 40.578005877619951 ], [ -75.873308006699617, 40.573585111196508 ], [ -75.854187937808575, 40.577915269194499 ], [ -75.832457784815801, 40.579944474921717 ], [ -75.823874347170204, 40.579803561695009 ], [ -75.811964767500939, 40.577915687753524 ], [ -75.768932604252626, 40.576016117675501 ], [ -75.738116483601516, 40.579121458993129 ], [ -75.722544313477698, 40.581628659694047 ], [ -75.652162763444437, 40.575147592332122 ], [ -75.624483513035344, 40.579988937684384 ], [ -75.60301433609196, 40.584113197203642 ], [ -75.589815227609293, 40.589621336723553 ], [ -75.575418142170463, 40.585154548274581 ], [ -75.557748032080283, 40.577410830568297 ], [ -75.547867964433152, 40.576205970302937 ], [ -75.539711907557759, 40.572342108240058 ], [ -75.530770842769883, 40.569233253341132 ], [ -75.518898757518031, 40.567802426773227 ], [ -75.475937622048008, 40.563554081842923 ], [ -75.452317625437672, 40.560765464362241 ], [ -75.438179622702449, 40.557881709556767 ], [ -75.433236614704498, 40.555562811027343 ], [ -75.42804061443185, 40.554692900347838 ], [ -75.406609724446866, 40.568502056942982 ], [ -75.391602785559286, 40.573351216839363 ], [ -75.390168798612521, 40.574781219334618 ], [ -75.386933867725219, 40.58349415269042 ], [ -75.383843902069529, 40.587133148954251 ], [ -75.360673029076267, 40.594381376713891 ], [ -75.346513104863007, 40.597406530794004 ], [ -75.340570123509977, 40.596979619587657 ], [ -75.330637153595504, 40.596064771523686 ], [ -75.325197182156657, 40.596804836142482 ], [ -75.299318401312291, 40.607299027597392 ], [ -75.283441644565613, 40.622190994853064 ], [ -75.276109809970109, 40.633097905897564 ], [ -75.265321981178033, 40.641920890230764 ], [ -75.25299312837349, 40.647119951150152 ], [ -75.238497333102345, 40.655081953744741 ], [ -75.22959456261755, 40.668062805760215 ], [ -75.227145596949867, 40.66928780698607 ], [ -75.213992722783544, 40.67102690002578 ], [ -75.195086958205977, 40.677374966435984 ], [ -75.181881063612991, 40.676856100987756 ], [ -75.176990080104261, 40.674857182691923 ], [ -75.17235089580052, 40.65744753312125 ], [ -75.166720884912081, 40.652842667234601 ], [ -75.161585916520295, 40.651832733423603 ], [ -75.155200990774503, 40.653220769374549 ], [ -75.146686130613489, 40.658092764652004 ], [ -75.140155301281808, 40.666560678643108 ], [ -75.134815405069844, 40.670684657539802 ], [ -75.131977443201095, 40.671561669340967 ], [ -75.117450593328854, 40.672461792630521 ], [ -75.107761678964167, 40.671821896604463 ], [ -75.091144754128663, 40.665154171431539 ], [ -75.077877837923509, 40.661415363224201 ], [ -75.062870958341747, 40.658852551401708 ], [ -75.050908124427139, 40.661713617407472 ], [ -75.04617817251679, 40.661514666405161 ], [ -75.042477190518412, 40.659924729293031 ], [ -75.037282154300257, 40.65325289338012 ], [ -75.033742164126636, 40.651184962758052 ], [ -75.012311363508459, 40.64842321621947 ], [ -74.973187451710359, 40.635133710200783 ], [ -74.957402548731352, 40.636014783678704 ], [ -74.918507717212037, 40.63134607827871 ], [ -74.909238801703069, 40.633326098520797 ], [ -74.898442929808027, 40.637896086446347 ], [ -74.892567975381723, 40.638426111565067 ], [ -74.884382026975345, 40.638125163264199 ], [ -74.879041081506941, 40.639574170975571 ], [ -74.87294515343217, 40.641996167886546 ], [ -74.854788331983883, 40.646086209424304 ], [ -74.835668488213003, 40.647276303343894 ], [ -74.811834667355768, 40.646574455118426 ], [ -74.785291945404964, 40.651835534422823 ], [ -74.754508203486992, 40.650515740165091 ], [ -74.749663250003778, 40.650705766741389 ], [ -74.723784464904213, 40.645323935267335 ], [ -74.716544534744173, 40.644545971890615 ], [ -74.683699882098338, 40.642715114243174 ], [ -74.666694089940833, 40.64362616179595 ], [ -74.645401333896174, 40.642417255903197 ], [ -74.638000428140089, 40.642684278932407 ], [ -74.623710624862099, 40.644275308363646 ], [ -74.614944718725368, 40.64253936531864 ], [ -74.595475008799227, 40.645755391645416 ], [ -74.57736326590296, 40.646865443716301 ], [ -74.575387293408227, 40.646896450715523 ], [ -74.557183538052897, 40.64601853194673 ], [ -74.515421173178837, 40.648257661009175 ], [ -74.50572430644992, 40.647002716261888 ], [ -74.467218858736402, 40.651378915426989 ], [ -74.454890023967195, 40.651646001763801 ], [ -74.4338034254842, 40.66156400347711 ], [ -74.426486538427966, 40.662495041232098 ], [ -74.418567677973684, 40.664837060740382 ], [ -74.406703960897246, 40.674255993396002 ], [ -74.369472810774639, 40.69798684868605 ], [ -74.3489051908129, 40.702266906350815 ], [ -74.330655594303622, 40.710563874266612 ], [ -74.323712725110312, 40.711707896722125 ], [ -74.315465878803423, 40.712802927860956 ], [ -74.304922069850974, 40.7135739789071 ], [ -74.301184137289354, 40.713771998370525 ], [ -74.297537201824909, 40.713841019675513 ], [ -74.275129598782328, 40.713749160870229 ], [ -74.252729913955861, 40.706577442956807 ], [ -74.246040048673734, 40.705631508141259 ], [ -74.238006249694379, 40.705628567227961 ], [ -74.230582475581159, 40.708622562385408 ], [ -74.220740811943756, 40.715428499404467 ], [ -74.213021024737614, 40.716717530574122 ], [ -74.203301246567719, 40.714493646772112 ], [ -74.191750473818928, 40.708519852051111 ], [ -74.181999754000259, 40.710457885940379 ], [ -74.167291149836728, 40.710816988795131 ], [ -74.160844308518463, 40.709550062708551 ], [ -74.151788519758654, 40.706544191538157 ], [ -74.137429855240327, 40.701246407374796 ], [ -74.119196306071601, 40.695718658632259 ], [ -74.109682548654092, 40.693059785763403 ], [ -74.107760596693154, 40.692392814135829 ], [ -74.104655673700108, 40.691228861769808 ], [ -74.096575855600221, 40.68623602598251 ], [ -74.094248921715845, 40.686072047388052 ], [ -74.087436150255584, 40.688940041808166 ], [ -74.078945472854031, 40.69621895907153 ], [ -74.069644787035045, 40.700258948665059 ], [ -74.066638901616884, 40.702878918357399 ], [ -74.054989327910121, 40.71122983757477 ], [ -74.055882379593911, 40.719396662970929 ], [ -74.053624516573919, 40.726754529321262 ], [ -74.05047364961726, 40.730977466854569 ], [ -74.021207493422338, 40.72754876427738 ], [ -74.011144786195644, 40.725957875736292 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I780\", \"DIST_MILES\": 6.540000, \"DIST_KM\": 10.530000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -122.22313168515231, 38.092582995403589 ], [ -122.202770406503433, 38.086605352242636 ], [ -122.189165363950991, 38.083533282270658 ], [ -122.182127908966592, 38.077117667258769 ], [ -122.17613397665049, 38.070176447172933 ], [ -122.146229483916642, 38.062246471798808 ], [ -122.135351089364605, 38.051412521346919 ], [ -122.126074264430102, 38.051172159107502 ], [ -122.122041087389803, 38.049175703851901 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I787\", \"DIST_MILES\": 12.170000, \"DIST_KM\": 19.590000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -73.696852937865771, 42.774069437944938 ], [ -73.698866768565168, 42.766848487687326 ], [ -73.699568597243683, 42.750578620603719 ], [ -73.697699652893633, 42.742407731242309 ], [ -73.699400493987312, 42.729754885100149 ], [ -73.708188892835793, 42.699992222632119 ], [ -73.710561745773717, 42.693729290637506 ], [ -73.722058138275102, 42.682899371362083 ], [ -73.726421898181044, 42.673984461973795 ], [ -73.732960569438347, 42.667392512077029 ], [ -73.738781279594818, 42.659816577535224 ], [ -73.744579004288568, 42.655238605290428 ], [ -73.750590714457473, 42.644027707064751 ], [ -73.755733475184741, 42.637874717211702 ], [ -73.756381446483147, 42.638137705661201 ], [ -73.764018103133381, 42.633361666234045 ] ], [ [ -73.764018103133381, 42.633361666234045 ], [ -73.770601812989341, 42.632972586407391 ], [ -73.77544660057066, 42.632972524245524 ], [ -73.77596557787993, 42.632877518740365 ], [ -73.781954316376741, 42.63314743874983 ] ], [ [ -73.764018103133381, 42.633361666234045 ], [ -73.756068459990971, 42.637679715316544 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I79\", \"DIST_MILES\": 337.180000, \"DIST_KM\": 542.640000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -80.195172406329192, 40.161116143738028 ], [ -80.196255484475898, 40.157061186137788 ], [ -80.206524921474028, 40.1485242697511 ], [ -80.206563021721422, 40.139300364836366 ], [ -80.209981265327016, 40.127673480958627 ], [ -80.203290150543836, 40.116553603817607 ], [ -80.202627216698019, 40.10809269271855 ], [ -80.194150013842872, 40.098509807375891 ], [ -80.192495154198767, 40.078903018769971 ], [ -80.188375106803321, 40.068580138628363 ], [ -80.18302713423293, 40.045631400704607 ], [ -80.174703011846105, 40.025314649751962 ], [ -80.177755247278441, 40.013111773106033 ], [ -80.187307696975267, 40.005531819074619 ], [ -80.188840785475506, 40.002742842994941 ], [ -80.187917884281575, 39.996963938947317 ], [ -80.172392500626984, 39.961773718731834 ], [ -80.165366612984414, 39.950654972038848 ], [ -80.169647228018235, 39.937906215684102 ], [ -80.163276300526789, 39.928686426995348 ], [ -80.162315662029272, 39.917295662272153 ], [ -80.143783579015377, 39.898974100483215 ], [ -80.134765535882693, 39.89017431020882 ], [ -80.131554098804543, 39.870616716429858 ], [ -80.125680075008788, 39.864794853804753 ], [ -80.120865255171509, 39.854366080123995 ], [ -80.11641828263312, 39.848686209189459 ], [ -80.110894673065545, 39.831546571846864 ], [ -80.099595641971348, 39.820041838716364 ], [ -80.093697812236414, 39.808781082714049 ], [ -80.084855650086439, 39.803719211238281 ], [ -80.077889600432087, 39.797539355899445 ], [ -80.07658470190141, 39.793259445188887 ], [ -80.077928019801831, 39.785752590805487 ], [ -80.081728452373412, 39.777673740673585 ], [ -80.080309678230861, 39.769761902711558 ], [ -80.081675086212883, 39.759729098962559 ], [ -80.076503175752947, 39.751608275656821 ], [ -80.057497960430496, 39.738272652440109 ], [ -80.061229766074433, 39.721331060870298 ], [ -80.060839901999771, 39.717448158216541 ], [ -80.05365409938959, 39.70494749117676 ], [ -80.043621036122232, 39.69600974673412 ], [ -80.037311461866238, 39.678001217925342 ], [ -80.025654320166879, 39.668838489107472 ], [ -80.011981952623216, 39.663238679950375 ], [ -80.009983167072363, 39.655090893100912 ], [ -80.006908217080365, 39.650140029854306 ], [ -80.005237399934927, 39.64316321276273 ], [ -79.991123216571296, 39.630834521992725 ], [ -79.988277220178205, 39.627091610690364 ], [ -79.987797323773094, 39.623563700670026 ], [ -79.992894071727505, 39.60923208113752 ], [ -79.992444227710152, 39.60429220708852 ], [ -79.989743264469297, 39.5997103206426 ], [ -79.979970068114042, 39.592192502904552 ], [ -79.978978367448406, 39.582331760503706 ], [ -79.975659338323567, 39.57860485629044 ], [ -79.976071527994677, 39.573751984494073 ], [ -79.981535025209823, 39.567164158858745 ], [ -79.98551109803077, 39.542392802544619 ], [ -79.993224656234915, 39.537604918122661 ], [ -79.997734089183069, 39.531902058129617 ], [ -80.006973691525701, 39.52773312505834 ], [ -80.012132193103696, 39.520874272325088 ], [ -80.015855402740485, 39.520104272833819 ], [ -80.023973750100723, 39.521393199193142 ], [ -80.041559676214874, 39.519550156028309 ], [ -80.047099028712267, 39.517403181298107 ], [ -80.058498649692254, 39.515762163743723 ], [ -80.064465057236433, 39.512814206060902 ], [ -80.067661323027139, 39.510044257989819 ], [ -80.074979139577948, 39.498085542995597 ], [ -80.08051861661805, 39.491406770646122 ], [ -80.093840358208638, 39.488365808821818 ], [ -80.099959839384937, 39.482003010862158 ], [ -80.108528373712772, 39.477685116615895 ], [ -80.114814711891597, 39.476335124977233 ], [ -80.12084210820295, 39.472325230634738 ], [ -80.13253178748694, 39.467546320987687 ], [ -80.151667080348787, 39.451524738617273 ], [ -80.188145168973946, 39.432024080375562 ], [ -80.19680566410139, 39.426607174960964 ], [ -80.199521980530591, 39.416968456491865 ], [ -80.204336371951712, 39.407786698633004 ], [ -80.201917397501788, 39.401495923516009 ], [ -80.203504565207879, 39.396461065622468 ], [ -80.207449842051545, 39.3907162022861 ], [ -80.21247733411694, 39.375945604657062 ], [ -80.214316638927357, 39.363906955632451 ], [ -80.222427435465931, 39.337914645324346 ], [ -80.225036589364535, 39.334717705026122 ], [ -80.233047960174488, 39.330158724903868 ], [ -80.23790125112815, 39.323399853657598 ], [ -80.252106877195828, 39.314835911933258 ], [ -80.259302144201115, 39.311127989196962 ], [ -80.267313390980647, 39.310089985107723 ], [ -80.272852581681136, 39.30811801688904 ], [ -80.276918758085117, 39.304387102964952 ], [ -80.279199915140936, 39.298650251411715 ], [ -80.278590001341072, 39.292169433734138 ], [ -80.283999371544738, 39.278608778430758 ], [ -80.288958752852722, 39.263441162835306 ], [ -80.285151784520508, 39.254710426208703 ], [ -80.285624848052748, 39.248499591907184 ], [ -80.295291971212592, 39.238379791669445 ], [ -80.297274847444655, 39.226093101869608 ], [ -80.303645930691872, 39.219551225027175 ], [ -80.304644857743071, 39.212631398782683 ], [ -80.31298391242666, 39.200332652214897 ], [ -80.336254355276068, 39.185851827053611 ], [ -80.345852377261707, 39.16882417230871 ], [ -80.354610503234994, 39.160542298994656 ], [ -80.364994553614721, 39.143902612592704 ], [ -80.38439688273742, 39.128911785428492 ], [ -80.386661867079326, 39.123436894426547 ], [ -80.391643801622735, 39.109254183237283 ], [ -80.393024611510285, 39.093484546103952 ], [ -80.405704665294252, 39.072511900987443 ], [ -80.40047124809648, 39.053973402083386 ], [ -80.415722525827377, 39.043376465095484 ], [ -80.41962056345362, 39.038363533445725 ], [ -80.423733519788186, 39.027323737575315 ], [ -80.427601548433415, 39.021742816740051 ], [ -80.432674614225562, 39.016364874376869 ], [ -80.43528468383515, 39.016062847161763 ], [ -80.443874958130039, 39.018183686829808 ], [ -80.458867298354136, 39.012312622133763 ], [ -80.469396626288486, 39.014323439246404 ], [ -80.480847931753289, 39.012965318402415 ], [ -80.489676199246631, 39.014124177403026 ], [ -80.492987273629581, 39.01276316299758 ], [ -80.506506425885433, 38.992934412866781 ], [ -80.5058043426246, 38.988673528272798 ], [ -80.508368337320235, 38.981463665619934 ], [ -80.51124439581865, 38.978064704839326 ], [ -80.511312323739318, 38.972525839925602 ], [ -80.515326352713544, 38.963706995437875 ], [ -80.517897412551264, 38.9610860207844 ], [ -80.526312714676834, 38.960455908175227 ], [ -80.534086929905897, 38.954844928818709 ], [ -80.534742867006557, 38.94800508835975 ], [ -80.540633023657179, 38.94299712367193 ], [ -80.544294991608808, 38.929424405938278 ], [ -80.550109121285587, 38.922065502321978 ], [ -80.560859473552739, 38.917286461739181 ], [ -80.568503765369243, 38.917244349275428 ], [ -80.584824341113304, 38.912925215830327 ], [ -80.593620675873481, 38.912655092373029 ], [ -80.598503849591225, 38.911377052434915 ], [ -80.602844987293281, 38.908645057509986 ], [ -80.605401049906789, 38.905265105576113 ], [ -80.61029222070421, 38.903526077691289 ], [ -80.613839349951661, 38.902752045155829 ], [ -80.621247602000636, 38.8993150238379 ], [ -80.628625781151172, 38.888485192625971 ], [ -80.629617747554235, 38.8811573657661 ], [ -80.636026920417706, 38.87294448334832 ], [ -80.644900236584832, 38.869163452319867 ], [ -80.650728419459341, 38.863876504551563 ], [ -80.661730804349247, 38.857765504457269 ], [ -80.664156867151817, 38.853859570866852 ], [ -80.668299694265841, 38.814908522011649 ], [ -80.662638375997389, 38.805485844997584 ], [ -80.661967303283731, 38.800465984247971 ], [ -80.664217355027873, 38.795667077432562 ], [ -80.663691284816622, 38.790235225371319 ], [ -80.669298472374209, 38.784609294282859 ], [ -80.675112612297028, 38.772127539161083 ], [ -80.682741889884255, 38.766287587714366 ], [ -80.675760436895288, 38.746150201771059 ], [ -80.677447476073112, 38.737708390294706 ], [ -80.674730342746585, 38.733947519872373 ], [ -80.672556217654233, 38.726428735577102 ], [ -80.661157691113885, 38.71905906516222 ], [ -80.658708554448523, 38.711830274682363 ], [ -80.659578572253565, 38.706970383491914 ], [ -80.668809935315537, 38.697239508936832 ], [ -80.678026315853259, 38.691719532645465 ], [ -80.698154180372285, 38.687610389375202 ], [ -80.715480898736232, 38.676998450419767 ], [ -80.719769071608155, 38.672970502741194 ], [ -80.728031425530133, 38.670627464818281 ], [ -80.733738644497407, 38.662060620065489 ], [ -80.739918897473629, 38.656929681761653 ], [ -80.739102843721312, 38.6520578186759 ], [ -80.729481394480331, 38.645169108755795 ], [ -80.729992368073027, 38.632008444848893 ], [ -80.733479501954136, 38.626580547249709 ], [ -80.744793975438867, 38.619290613362395 ], [ -80.756132404296821, 38.618169489345313 ], [ -80.761854582512143, 38.615060482832995 ], [ -80.768422801367777, 38.61518237748249 ], [ -80.774724999416236, 38.612672347218833 ], [ -80.780592192291977, 38.612328265712911 ], [ -80.784735321115647, 38.610619248125978 ], [ -80.800780848999651, 38.61008201536842 ], [ -80.813301250909703, 38.608078878289149 ], [ -80.821205531065573, 38.611080672388248 ], [ -80.832931911738797, 38.609939523744195 ], [ -80.840638205566151, 38.615337250532697 ], [ -80.858742834073638, 38.618537876046595 ], [ -80.865694066714099, 38.618548767105779 ], [ -80.877183487745299, 38.622786462473449 ], [ -80.890283922329033, 38.62211927629491 ], [ -80.897730150846272, 38.619807228709163 ], [ -80.911707613134283, 38.619159029552087 ], [ -80.919375903203147, 38.622366811558194 ], [ -80.924610085347354, 38.622938711718014 ], [ -80.933818350364788, 38.618787695207232 ], [ -80.944912723746739, 38.618917517737188 ], [ -80.952991972026112, 38.616968452630537 ], [ -80.966237441289323, 38.619108178290929 ], [ -80.975506700415053, 38.61495816597796 ], [ -80.97894081485741, 38.61493811326983 ], [ -80.988683196720757, 38.619267822114317 ], [ -81.007124919787202, 38.623986427975744 ], [ -81.013282154604013, 38.623536386882982 ], [ -81.01939331872039, 38.617745520869811 ], [ -81.026984577956441, 38.614686552570063 ], [ -81.030051576374589, 38.605008842073502 ], [ -81.042403958248272, 38.596246019537105 ], [ -81.044151018402147, 38.595468029591224 ], [ -81.053314417932981, 38.598286855493626 ], [ -81.057220559173288, 38.597077860594538 ], [ -81.064285786887652, 38.592457950252673 ], [ -81.102907267938591, 38.586384810269138 ], [ -81.109240526250076, 38.586739742645051 ], [ -81.114275731195661, 38.586987690001209 ], [ -81.123553057540803, 38.582356762801368 ], [ -81.128276149902888, 38.572466051783174 ], [ -81.134578354755106, 38.567228172055792 ], [ -81.15130201013767, 38.564405121554401 ], [ -81.156933264138544, 38.567036984314889 ], [ -81.17529014731474, 38.582665297883011 ], [ -81.198210099822106, 38.58611697957415 ], [ -81.206137388943901, 38.58223804133398 ], [ -81.215422766598763, 38.582595947610905 ], [ -81.223258054919839, 38.578747009779832 ], [ -81.235328559023671, 38.580955828678043 ], [ -81.243629855086922, 38.575065957102133 ], [ -81.253021165338794, 38.571746986970581 ], [ -81.265183470966122, 38.571796872767713 ], [ -81.267952535355903, 38.570934876243875 ], [ -81.292199068965559, 38.556187139924376 ], [ -81.297387167778368, 38.549325316223388 ], [ -81.31260853615467, 38.54365635143467 ], [ -81.323777824396132, 38.542954262727257 ], [ -81.33028597724595, 38.538602337590198 ], [ -81.335589096494033, 38.533257455087607 ], [ -81.342173259917857, 38.530255483239571 ], [ -81.352640506147637, 38.52032568871369 ], [ -81.35508256846208, 38.519265696290041 ], [ -81.358996676115581, 38.520077629301269 ], [ -81.361292740360099, 38.520966577145707 ], [ -81.367762909810835, 38.519387558078094 ], [ -81.374027081603458, 38.520737449825937 ], [ -81.37863520449541, 38.520367412588691 ], [ -81.387340427099929, 38.514767492345264 ], [ -81.39750269945867, 38.513207430900387 ], [ -81.402576829539797, 38.508256526260077 ], [ -81.410901055161204, 38.507065471484104 ], [ -81.419705216547612, 38.496754667626611 ], [ -81.424031278890169, 38.494137685462341 ], [ -81.430264268021602, 38.485737827346981 ], [ -81.437420446991268, 38.484906768234424 ], [ -81.446453622398053, 38.481537751643515 ], [ -81.457402952160038, 38.48283459659914 ], [ -81.463193096677458, 38.482148548913045 ], [ -81.475858188276774, 38.470364700322229 ], [ -81.485654341303686, 38.465027722462501 ], [ -81.495153406738012, 38.456067837101926 ], [ -81.503347587597233, 38.454575763120232 ], [ -81.507719597600058, 38.450215798932291 ], [ -81.518026782703515, 38.447316700718716 ], [ -81.520536769639577, 38.443955742322167 ], [ -81.521673615533331, 38.435666928178357 ], [ -81.528814680589036, 38.430775930891038 ], [ -81.540922844830888, 38.424946874367301 ], [ -81.544454766065599, 38.417467000117533 ], [ -81.546720779470562, 38.415586008890713 ], [ -81.553487894638224, 38.413396950623792 ], [ -81.567915198009715, 38.411366761374779 ], [ -81.577773355510814, 38.407708687681854 ], [ -81.586623469092771, 38.403157652412744 ], [ -81.590819485812389, 38.399308677046967 ], [ -81.591513435313715, 38.396245740549567 ], [ -81.589705332666554, 38.393555836504561 ], [ -81.587210200251448, 38.390263958666878 ], [ -81.587912158573857, 38.387594012418425 ], [ -81.600813323634497, 38.380944960415135 ], [ -81.60661233828921, 38.375246003169288 ] ], [ [ -80.122382681134724, 42.108421284426953 ], [ -80.121825116068464, 42.094176991319486 ], [ -80.121169050718564, 42.093287967149159 ], [ -80.11531643627491, 42.084269732714745 ], [ -80.105893488929496, 42.069922370393776 ], [ -80.105862342925064, 42.065802290516125 ], [ -80.112202326174028, 42.057597180173964 ], [ -80.113926043497372, 42.047804999851955 ], [ -80.12156302864463, 42.03904587738117 ], [ -80.12256979089436, 42.031694735453627 ], [ -80.123592590190981, 42.025366613566923 ], [ -80.12705660217631, 42.022295571170126 ], [ -80.149266052163227, 42.013395505893719 ], [ -80.156651081257593, 42.007974425315304 ], [ -80.176312410180103, 41.982767369628107 ], [ -80.177205442712406, 41.977235382122664 ], [ -80.172711315065087, 41.956594404880036 ], [ -80.175786434751615, 41.922125471939921 ], [ -80.175854465753744, 41.87976654471246 ], [ -80.175869486872486, 41.849489596646514 ], [ -80.17488547929679, 41.82602564037866 ], [ -80.175984527874348, 41.793306692465833 ], [ -80.180325628607946, 41.783537685296572 ], [ -80.194935938180208, 41.763414621654746 ], [ -80.198637144654654, 41.740156512315032 ], [ -80.205038424143979, 41.729006365592973 ], [ -80.200346513494438, 41.716016272242136 ], [ -80.199476702970429, 41.70119613655644 ], [ -80.209158233494364, 41.675744851481618 ], [ -80.204726477590398, 41.65218465177005 ], [ -80.201514567472984, 41.641595563653048 ], [ -80.184142495517307, 41.625340457624851 ], [ -80.182105499224335, 41.622643435915293 ], [ -80.171736413561533, 41.616379397602223 ], [ -80.166274407506762, 41.610493348050873 ], [ -80.165015493332547, 41.603203272838506 ], [ -80.182243229459559, 41.571693921009583 ], [ -80.180854472080568, 41.553203734570722 ], [ -80.183334706967813, 41.539432595488208 ], [ -80.181549726572371, 41.536163561920823 ], [ -80.171829701720213, 41.527744470164102 ], [ -80.169532725430372, 41.523761426637087 ], [ -80.172180954637, 41.510673292025302 ], [ -80.166764020328628, 41.494423278690761 ], [ -80.166854996954086, 41.481521522828814 ], [ -80.16696997054288, 41.466812801113839 ], [ -80.16011882769557, 41.4477351578049 ], [ -80.164940858189183, 41.425065590257717 ], [ -80.156479676943732, 41.40396699242563 ], [ -80.15895867793536, 41.38488535560851 ], [ -80.157096615494083, 41.370474632165106 ], [ -80.159523627307664, 41.355974906210193 ], [ -80.158218458413074, 41.286945225170328 ], [ -80.166473574965181, 41.264889620959664 ], [ -80.1603393631882, 41.239857082069776 ], [ -80.164566319636378, 41.217828410811691 ], [ -80.159469127187919, 41.202706668597358 ], [ -80.159828106664264, 41.197968741433968 ], [ -80.16902918703606, 41.179459988272768 ], [ -80.156813787813959, 41.154341442119673 ], [ -80.154944683274621, 41.14319862794482 ], [ -80.152953555244821, 41.128561870626896 ], [ -80.145941314387741, 41.112708164357528 ], [ -80.144774241264258, 41.104560301819262 ], [ -80.138602022902973, 41.089801578344876 ], [ -80.123456564168578, 41.066971052493344 ], [ -80.127355500046974, 41.042831419813524 ], [ -80.125951447217062, 41.039085491666825 ], [ -80.125051420679981, 41.037891518045789 ], [ -80.12028328358258, 41.032169648562068 ], [ -80.116636153222188, 41.023682817204786 ], [ -80.114454018630198, 41.009454070657682 ], [ -80.1212741353296, 40.995893227499231 ], [ -80.130331363447027, 40.989923238468343 ], [ -80.132841434212111, 40.986691264913127 ], [ -80.132993534875439, 40.96940351167801 ], [ -80.13468760481129, 40.962693596393265 ], [ -80.142614808132265, 40.951943700924794 ], [ -80.143674844427494, 40.948442745939673 ], [ -80.142644839655219, 40.945672793169557 ], [ -80.134641739873928, 40.938073951485443 ], [ -80.132116742896045, 40.929953082275631 ], [ -80.132955802781879, 40.921804194564203 ], [ -80.131353822138422, 40.914003314115838 ], [ -80.123006743748036, 40.906134463751826 ], [ -80.122404821179316, 40.892664653752583 ], [ -80.11513380414776, 40.880625846018823 ], [ -80.110075873780929, 40.862132111082474 ], [ -80.103574894834452, 40.849734291130765 ], [ -80.102674942632788, 40.842414388897311 ], [ -80.105322027673068, 40.834815484334506 ], [ -80.10255304881656, 40.828735568142889 ], [ -80.102866072122396, 40.826125601933725 ], [ -80.108672202422937, 40.815574735873881 ], [ -80.116202295272331, 40.81106579187356 ], [ -80.118407375098343, 40.801753918614303 ], [ -80.119841414153782, 40.797404978391526 ], [ -80.125533491686909, 40.791233065086203 ], [ -80.124632525645822, 40.784866153967563 ], [ -80.128691603829736, 40.775833284069599 ], [ -80.129576648094641, 40.769123380159314 ], [ -80.127463658758984, 40.76565642660205 ], [ -80.116156658822121, 40.758057515369671 ], [ -80.109023673639811, 40.752144582672734 ], [ -80.107626583333015, 40.744190670745766 ], [ -80.107749510142853, 40.739895717048974 ], [ -80.102439217746678, 40.724526875252828 ], [ -80.101354732954221, 40.697385169876483 ], [ -80.095975462024583, 40.684617308249379 ], [ -80.095884368085009, 40.679460365249888 ], [ -80.095663269883801, 40.674138424117523 ], [ -80.090809979662765, 40.660855573450348 ], [ -80.091351943813322, 40.658605598339143 ], [ -80.098156647416516, 40.638051820512878 ], [ -80.0938458655055, 40.59799827042692 ], [ -80.099910753210168, 40.586497382810606 ], [ -80.103336763670796, 40.583952401718427 ], [ -80.114330884832128, 40.580496409464232 ], [ -80.117374885193485, 40.577452433079323 ], [ -80.116924762715712, 40.57046350755391 ], [ -80.114444620375153, 40.564486577975543 ], [ -80.116603494175394, 40.554495675938675 ], [ -80.121547470800394, 40.547346733005426 ], [ -80.121547385562735, 40.542048787834567 ], [ -80.126750309350882, 40.530722883837534 ], [ -80.129352319897023, 40.527979901028615 ], [ -80.132808243885307, 40.518309983756133 ], [ -80.134700200297601, 40.512740031023675 ], [ -80.13743912470558, 40.503642108676331 ], [ -80.133800013807502, 40.501720145465214 ], [ -80.123408776939129, 40.501602197337363 ], [ -80.121050697431983, 40.49981622660551 ], [ -80.121378684370214, 40.496227251629719 ], [ -80.125918762728432, 40.491687263989597 ], [ -80.115641400870516, 40.470310467692599 ], [ -80.112421301387087, 40.466369509320018 ], [ -80.111224174664201, 40.450004631204138 ], [ -80.111826115483595, 40.437702717231396 ], [ -80.106447925629936, 40.428268801119764 ], [ -80.106088886566539, 40.423370836575621 ], [ -80.103425793049027, 40.419017874520307 ], [ -80.107690843163155, 40.409736928191656 ], [ -80.106935777382475, 40.402129983654582 ], [ -80.100541553434539, 40.392529064527992 ], [ -80.096559383425884, 40.382077143513364 ], [ -80.105684565372201, 40.372948191037537 ], [ -80.115396817749939, 40.372284180712981 ], [ -80.117967876507365, 40.370709188295884 ], [ -80.118547806693215, 40.356022295327499 ], [ -80.117883754555848, 40.350129339256604 ], [ -80.119294770697195, 40.346314366011065 ], [ -80.131922074817624, 40.339096410801197 ], [ -80.146181376855694, 40.321350544688727 ], [ -80.155444582220554, 40.310070636775336 ], [ -80.166956865134949, 40.300396721445672 ], [ -80.169123908944997, 40.296227758433574 ], [ -80.169955904013563, 40.289551816948865 ], [ -80.160784594944687, 40.279877892881451 ], [ -80.158945515081001, 40.274205938949464 ], [ -80.159617517092954, 40.270371971988993 ], [ -80.163287603269637, 40.265535017487885 ], [ -80.170122794573828, 40.263032048062904 ], [ -80.174502907868415, 40.259073088919223 ], [ -80.203006794628934, 40.243638283492402 ], [ -80.210171123247065, 40.233381399491584 ], [ -80.213345342972033, 40.222257516636304 ], [ -80.215542459091438, 40.217950562489733 ], [ -80.223309777039077, 40.211381635174966 ], [ -80.238523275596151, 40.209871661987606 ], [ -80.245542547710187, 40.205789705900195 ], [ -80.248281715598338, 40.199243769033927 ], [ -80.244977747317591, 40.187963873678811 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I790\", \"DIST_MILES\": 6.000000, \"DIST_KM\": 9.660000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -75.230850719132903, 43.122016578292254 ], [ -75.213348670280581, 43.114192616713389 ], [ -75.207946636491883, 43.110588631767271 ], [ -75.205657673892773, 43.111911634362173 ] ], [ [ -75.292144215868035, 43.080356404491297 ], [ -75.286796233571152, 43.084259423139159 ], [ -75.280494215917045, 43.08654444549218 ], [ -75.263481174056238, 43.092502505807737 ], [ -75.240882286817083, 43.101924572236506 ], [ -75.239204373530271, 43.10601057358182 ], [ -75.239005389855052, 43.106815573538661 ], [ -75.231117709635669, 43.121582578190207 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I794\", \"DIST_MILES\": 2.470000, \"DIST_KM\": 3.980000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -87.901451522027571, 43.035764739154182 ], [ -87.900047471365511, 43.034822776180057 ], [ -87.89820126017554, 43.023173169798454 ], [ -87.892936895751916, 43.007353715685753 ], [ -87.893348819566015, 43.001101921105764 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I795\", \"DIST_MILES\": 9.000000, \"DIST_KM\": 14.480000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -76.838826230401295, 39.474114912608407 ], [ -76.837979193525413, 39.47236494063133 ], [ -76.833698903377112, 39.456804135339709 ], [ -76.828700701038329, 39.447275285390972 ], [ -76.823329546865139, 39.441027410596831 ], [ -76.792384795308863, 39.412627020912687 ], [ -76.785036662812701, 39.408656137023293 ], [ -76.769083445270326, 39.404536356559525 ], [ -76.765566375029437, 39.402064411754573 ], [ -76.762133162211484, 39.389697511804286 ], [ -76.756617033027254, 39.384364599150693 ], [ -76.750696848116604, 39.375335703445991 ], [ -76.746347718887719, 39.373126741839251 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I8\", \"DIST_MILES\": 356.090000, \"DIST_KM\": 573.070000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -116.030712946689533, 32.725747473942803 ], [ -116.046144355437193, 32.720208854641335 ], [ -116.050927616601925, 32.716337037759054 ], [ -116.053483300681307, 32.711751210231704 ], [ -116.053132575976065, 32.705041401602742 ], [ -116.055573265729393, 32.700918560530972 ], [ -116.058662748836397, 32.69960964754533 ], [ -116.062858125647892, 32.695302841764622 ], [ -116.065757986443913, 32.683070253823452 ], [ -116.074903608401797, 32.674086678240648 ], [ -116.091296671389188, 32.672252017041046 ], [ -116.101021716473554, 32.677566018908401 ], [ -116.105209976682886, 32.676551123399662 ], [ -116.106124868567647, 32.674633200204795 ], [ -116.105225118815497, 32.671970269032215 ], [ -116.104355547821314, 32.663475523005729 ], [ -116.098306757088451, 32.660453509688679 ], [ -116.096171224182726, 32.658092545199381 ], [ -116.105142003597464, 32.644463140343156 ], [ -116.105469948900605, 32.644280152325862 ] ], [ [ -116.030712946689533, 32.725747473942803 ], [ -116.041880955192852, 32.725472640916436 ], [ -116.058486845892816, 32.729172770894721 ], [ -116.063231019609049, 32.728142869713416 ], [ -116.06922714900756, 32.72127316301578 ], [ -116.065200233688742, 32.710092437397989 ], [ -116.065635257556735, 32.706842541204438 ], [ -116.070104543857326, 32.703752703420662 ], [ -116.077939185022359, 32.7016238912855 ], [ -116.088641529654623, 32.692122355733225 ], [ -116.09132616096116, 32.688223521043199 ], [ -116.090655441731386, 32.683234664831701 ], [ -116.091876273845372, 32.681464740478738 ], [ -116.098695111233454, 32.678622945622536 ], [ -116.105224931556066, 32.677890081167632 ], [ -116.106712740041061, 32.675266190322425 ], [ -116.105294389896486, 32.662994555108405 ], [ -116.098840678172493, 32.659843538475712 ], [ -116.097620990903195, 32.657043604345077 ], [ -116.099413804600744, 32.65250477970396 ], [ -116.105469948900605, 32.644280152325862 ] ], [ [ -116.030712946689533, 32.725747473942803 ], [ -116.021223592684208, 32.727200299480153 ], [ -116.013503872973402, 32.730080112621266 ], [ -115.993602114810543, 32.734111651115477 ], [ -115.972716175250611, 32.738848994784341 ], [ -115.960106960251395, 32.743178562730328 ], [ -115.843194517010929, 32.7599252153477 ], [ -115.779390926184035, 32.773023211746654 ], [ -115.690391202558615, 32.773710392873006 ], [ -115.594914904057276, 32.773463156387038 ], [ -115.569245203661893, 32.773596292159674 ], [ -115.551867410315865, 32.773724708576722 ], [ -115.526174642272821, 32.773800856147844 ], [ -115.501176753836589, 32.773723040185423 ], [ -115.378569187481062, 32.772984414635552 ], [ -115.337801086529765, 32.773188216853761 ], [ -115.337016113863712, 32.774267141291695 ], [ -115.336985162892219, 32.773207172572747 ], [ -115.285285981600154, 32.772952422128554 ], [ -115.269280753331557, 32.764662761954732 ], [ -115.250499573814167, 32.760732829727665 ], [ -115.089679972456594, 32.71046154686686 ], [ -115.082455659419196, 32.708050496524727 ], [ -115.077421110362266, 32.707748416118974 ], [ -115.000515739717599, 32.707820058350926 ], [ -114.942529227369945, 32.708695959766018 ], [ -114.927904295668981, 32.711137618893751 ], [ -114.919779840812211, 32.715207347528917 ], [ -114.907321535551233, 32.729828677007355 ], [ -114.884107073165367, 32.740565933590887 ], [ -114.87740148271277, 32.745494663916936 ], [ -114.855345911424322, 32.756754985696823 ], [ -114.842849759638696, 32.760553680233237 ], [ -114.764845317716578, 32.747334648376537 ], [ -114.738914280807762, 32.746853212596363 ], [ -114.729188158326693, 32.744004126539757 ], [ -114.72008694168062, 32.743431982804587 ], [ -114.712557583385703, 32.743164858031435 ], [ -114.702289389996167, 32.746952561430881 ], [ -114.697299803590667, 32.74729146343816 ], [ -114.684399959899963, 32.742073397673487 ], [ -114.662398838396285, 32.737941142523532 ], [ -114.648803961739219, 32.737071934883993 ], [ -114.632982286334965, 32.734065756344521 ], [ -114.624117028403489, 32.731986669328712 ], [ -114.619418436034749, 32.729750658494687 ], [ -114.615923712698674, 32.729907594332985 ], [ -114.615611756120998, 32.728590629738939 ], [ -114.61507684110309, 32.725581713657142 ], [ -114.612293126418933, 32.721030807204805 ], [ -114.610317495914686, 32.705833243712341 ], [ -114.607639808083903, 32.698623421619295 ], [ -114.60583898850139, 32.695858476903503 ], [ -114.599049568317255, 32.692508466823377 ], [ -114.581327994926312, 32.689201273963278 ], [ -114.56524628580442, 32.685432124848987 ], [ -114.551957371933455, 32.680053073613053 ], [ -114.538728422726436, 32.676279974878355 ], [ -114.530696033401554, 32.675772859976227 ], [ -114.506885767817025, 32.678950375457141 ], [ -114.491567959652784, 32.674200305714095 ], [ -114.485449435397513, 32.672190289173884 ], [ -114.486319393696689, 32.670371356992419 ], [ -114.41624044858581, 32.670099471773725 ], [ -114.395718926490716, 32.666860312266621 ], [ -114.375563393044274, 32.660909238201647 ], [ -114.352051003567126, 32.660549957815441 ], [ -114.342728663888693, 32.658009917362335 ], [ -114.320849086742214, 32.661644544810081 ], [ -114.32066605678385, 32.665249438541679 ], [ -114.319224134673405, 32.666790376693008 ], [ -114.30916173849316, 32.672200100482677 ], [ -114.302646164965978, 32.672478015014207 ], [ -114.210001458772865, 32.649238442242329 ], [ -114.197719254069767, 32.648898267877001 ], [ -114.146582316705747, 32.660807233068773 ], [ -114.141775632936728, 32.659449196925365 ], [ -114.137861824778597, 32.662909061434036 ], [ -114.098100099060346, 32.672075312330477 ], [ -114.045704101413236, 32.676636529184414 ], [ -113.989280008011264, 32.688125701567671 ], [ -113.76698455419303, 32.721724207912374 ], [ -113.730234897413567, 32.729432955134833 ], [ -113.712161515515348, 32.731671875831303 ], [ -113.562844193820595, 32.788532695867666 ], [ -113.544480734576453, 32.799221511551622 ], [ -113.494212213586636, 32.817692210819786 ], [ -113.333647460582966, 32.838759877356857 ], [ -113.281311702938353, 32.845351791611542 ], [ -113.247208476567437, 32.855681623653091 ], [ -113.168856008233362, 32.86255915356508 ], [ -113.070865965719122, 32.889200319692662 ], [ -113.041432505096637, 32.892809147536376 ], [ -112.968527988491985, 32.91031727017036 ], [ -112.843926226942912, 32.927775242955072 ], [ -112.792460022886345, 32.933614429437036 ], [ -112.741709757161914, 32.942193606237488 ], [ -112.715647869957067, 32.934964462183594 ], [ -112.671352040334554, 32.925305173532557 ], [ -112.583484162031183, 32.906124613220619 ], [ -112.574954184724305, 32.905552536810667 ], [ -112.541148344337003, 32.907413162788728 ], [ -112.533618348046772, 32.906475103759803 ], [ -112.467654352580652, 32.884883475501333 ], [ -112.438564430738808, 32.871852948314043 ], [ -112.35974497078432, 32.851384888517529 ], [ -112.310719461522197, 32.848596319186903 ], [ -112.203229164483801, 32.836169244791748 ], [ -112.133924441896795, 32.834807798342943 ], [ -111.965017877422554, 32.828019568161352 ], [ -111.740034942507137, 32.828584814163847 ], [ -111.725028047792165, 32.834734057966685 ], [ -111.715286064822052, 32.835222228246728 ], [ -111.708228034661417, 32.832521365696387 ], [ -111.681120841648962, 32.816393939608197 ] ], [ [ -116.105469948900605, 32.644280152325862 ], [ -116.108811497857175, 32.639035382635001 ], [ -116.11286980109341, 32.637345514551015 ], [ -116.147493436113592, 32.634546282321601 ], [ -116.161413771430958, 32.635896512510783 ], [ -116.166661745604912, 32.636945580756532 ], [ -116.175631856327556, 32.642854552885524 ], [ -116.194884940152122, 32.650434662878816 ], [ -116.20574656748245, 32.659406549930168 ], [ -116.210781533122898, 32.661398574393296 ], [ -116.231117602291832, 32.661016983668581 ], [ -116.239309968257473, 32.662139101731192 ], [ -116.29066637329295, 32.676615386502952 ], [ -116.319682100726595, 32.698755938712637 ], [ -116.356851405624766, 32.704615266526133 ], [ -116.360367608871911, 32.704207338633637 ], [ -116.361046412847813, 32.705378299272553 ], [ -116.373616418935441, 32.707938385514282 ], [ -116.39291352780873, 32.719645176135813 ], [ -116.414645201785945, 32.726157223924631 ], [ -116.442691593388616, 32.724997716495984 ], [ -116.456901415841415, 32.718799230593866 ], [ -116.466390172314831, 32.717857430027927 ], [ -116.470463158540142, 32.718818452355343 ], [ -116.475909698380107, 32.722976347149412 ], [ -116.478053022122381, 32.72744717200127 ], [ -116.480027890134522, 32.74584833688607 ], [ -116.485876830540747, 32.762445947953132 ], [ -116.49207784001014, 32.775045764248958 ], [ -116.495403294936338, 32.794267389388928 ], [ -116.5002838164922, 32.80243529059527 ], [ -116.508491705853771, 32.810075436749486 ], [ -116.52958171486317, 32.817729076015645 ], [ -116.544234391782581, 32.818625622062228 ], [ -116.557819145557218, 32.823379036349102 ], [ -116.5638447856563, 32.823219274421248 ], [ -116.5704963506805, 32.821167583524982 ], [ -116.583921302097338, 32.820740119946869 ], [ -116.606627911147058, 32.825280899996201 ], [ -116.62073164134064, 32.825319457025977 ], [ -116.62369091924468, 32.826238550619003 ], [ -116.625270439709695, 32.829275534345463 ], [ -116.633210414760782, 32.833990725572725 ], [ -116.650387231573234, 32.838290292557325 ], [ -116.699493551459298, 32.838624250569843 ], [ -116.71409312685519, 32.836095914828725 ], [ -116.719599879499896, 32.833742207206143 ], [ -116.725008564096939, 32.833864424921153 ], [ -116.726862122306756, 32.833635507501498 ], [ -116.750232362270637, 32.835235421689148 ], [ -116.760590810645283, 32.838245571801565 ], [ -116.774724377093989, 32.840507835443638 ], [ -116.786012712327249, 32.839707124890303 ], [ -116.800391084887991, 32.84475732157069 ], [ -116.805348768439373, 32.848225341468307 ], [ -116.809200688722143, 32.852486313028727 ], [ -116.812075887187177, 32.855515296726963 ], [ -116.817522513763663, 32.857075385639561 ], [ -116.828856777095041, 32.856594678050577 ], [ -116.839573270365847, 32.853486030111206 ], [ -116.852905992055, 32.853677356716197 ], [ -116.860099199376364, 32.854242521475562 ], [ -116.864668111350298, 32.853074668351994 ], [ -116.873722078524551, 32.847044060488201 ], [ -116.882950903746462, 32.843565387270516 ], [ -116.907085572591043, 32.822952545605325 ], [ -116.92033481993046, 32.805794328743254 ], [ -116.927093195689011, 32.803158566757681 ], [ -116.93494919677785, 32.803112765582476 ], [ -116.961530376600876, 32.803159440612831 ], [ -116.969196397462241, 32.803110639021838 ], [ -116.974108192805289, 32.801141814944188 ], [ -116.97633578071698, 32.796327992259215 ], [ -116.97727483122874, 32.787783228832495 ], [ -116.982079830346095, 32.780562530661342 ], [ -116.985222054516115, 32.779322641489905 ], [ -116.997769780056942, 32.779181966595566 ], [ -117.001239934085589, 32.777645099723685 ], [ -117.002490632419992, 32.777255148839451 ], [ -117.01850078462617, 32.771667792264367 ], [ -117.024427293865742, 32.771331989272532 ], [ -117.02908803340901, 32.773385089598868 ], [ -117.033343925290382, 32.774014211326801 ], [ -117.040895045878756, 32.772686485686037 ], [ -117.045242870013567, 32.77430858813635 ], [ -117.050696373741175, 32.776768707641452 ], [ -117.065447451773878, 32.779588124287073 ], [ -117.088680343496435, 32.780859862809315 ], [ -117.100556296398594, 32.77918129601062 ], [ -117.111410452300802, 32.778731669555668 ], [ -117.118435626856481, 32.77794992298697 ], [ -117.130929592404826, 32.771717479267927 ], [ -117.162590564954556, 32.762444750380737 ], [ -117.174825422176937, 32.759332233230943 ], [ -117.193451305964999, 32.760595849566783 ], [ -117.201391200548372, 32.759436148361303 ], [ -117.203023743854544, 32.759635201184935 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I80\", \"DIST_MILES\": 2874.380000, \"DIST_KM\": 4625.880000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -75.141976768594091, 40.992986996310698 ], [ -75.140145702072729, 40.989138081140091 ], [ -75.135506493497388, 40.977008324590436 ], [ -75.133805426202514, 40.973017406941992 ], [ -75.130730390694666, 40.970599493245352 ], [ -75.122277425063146, 40.971339635612367 ], [ -75.119691401837258, 40.969607703520751 ], [ -75.116021161284095, 40.955027947772827 ], [ -75.105049958341624, 40.940769307386802 ], [ -75.103599873524658, 40.93536739553916 ], [ -75.094993805914427, 40.929058611506846 ], [ -75.088898809941483, 40.9275977282879 ], [ -75.085884819561187, 40.92731878087546 ], [ -75.074234918526216, 40.930031943069274 ], [ -75.070480914558345, 40.928609020165183 ], [ -75.06441586657867, 40.923531172713332 ], [ -75.058296886431435, 40.922711280798168 ], [ -75.023225243849097, 40.933999752881206 ], [ -75.009934343315066, 40.935719961228827 ], [ -74.987756374011056, 40.931822222442378 ], [ -74.98085135828201, 40.929560274328381 ], [ -74.968575370381373, 40.928411343706543 ], [ -74.957314341675186, 40.92408243529011 ], [ -74.927026440732831, 40.92510057729865 ], [ -74.901055599697628, 40.930792656675528 ], [ -74.88808562356661, 40.928869738860158 ], [ -74.874688611320735, 40.923613854617813 ], [ -74.856561669814553, 40.922041961971573 ], [ -74.846398688315602, 40.919753035972718 ], [ -74.834695753165676, 40.920463089892067 ], [ -74.826577766051258, 40.918181154145685 ], [ -74.814195821993735, 40.917472225939434 ], [ -74.808389850998225, 40.917281258360561 ], [ -74.801095954727742, 40.92259124419995 ], [ -74.78820206818024, 40.925971277833618 ], [ -74.784716073947891, 40.924743308397495 ], [ -74.779276024424405, 40.917823406948969 ], [ -74.773142046789459, 40.916553452495577 ], [ -74.766176085072146, 40.91612149412817 ], [ -74.760309085866325, 40.913001557708526 ], [ -74.739946244910442, 40.912192663000518 ], [ -74.72777032415263, 40.908111754932342 ], [ -74.725092330619418, 40.90622678539679 ], [ -74.714685299399406, 40.893863955847522 ], [ -74.709581326849587, 40.89142200191305 ], [ -74.698107443214454, 40.890503058328413 ], [ -74.679865651892371, 40.890614132266968 ], [ -74.671198776613679, 40.892700146736992 ], [ -74.650500024871505, 40.892780232256257 ], [ -74.629229358905604, 40.899033258091492 ], [ -74.610568660259077, 40.904610280924047 ], [ -74.610019669485467, 40.904797281378599 ], [ -74.594874913323636, 40.908791306085256 ], [ -74.58009010333511, 40.907974378470726 ], [ -74.570980244615413, 40.909435403450182 ], [ -74.511960119841589, 40.911362645561724 ], [ -74.503987217215098, 40.909172703232414 ], [ -74.493535283099362, 40.902954801184706 ], [ -74.487622279614754, 40.896492882752334 ], [ -74.483823277117196, 40.892223936972428 ], [ -74.472493352322729, 40.886910024886554 ], [ -74.468526300024763, 40.877423135485706 ], [ -74.461240313935107, 40.870263233665263 ], [ -74.454762372577704, 40.868188276817961 ], [ -74.439733545593583, 40.866540344502297 ], [ -74.417539814927821, 40.864419443130011 ], [ -74.396490064409633, 40.860524560432296 ], [ -74.386458208559219, 40.860906591553217 ], [ -74.372328387644941, 40.858388671605304 ], [ -74.366926470977319, 40.858907685001306 ], [ -74.364111525939762, 40.860436676979923 ], [ -74.358839623301122, 40.862653669420126 ], [ -74.339621905722495, 40.862008746564648 ], [ -74.333945012076555, 40.864293738999784 ], [ -74.331885067047835, 40.867032712534744 ], [ -74.32539329330443, 40.881993549171156 ], [ -74.320731399571045, 40.886144512864085 ], [ -74.311164588599254, 40.891141481404176 ], [ -74.303115729320908, 40.893006483952995 ], [ -74.27439119640708, 40.893884567009572 ], [ -74.266808324583764, 40.894326586318833 ], [ -74.249680635093583, 40.897496600614275 ], [ -74.238198892943629, 40.899358637380928 ], [ -74.235024964306845, 40.899823648190768 ], [ -74.223001202826396, 40.896691756985291 ], [ -74.212030448704027, 40.897409807201029 ], [ -74.201738670410776, 40.89631087945272 ], [ -74.19335390862625, 40.904187813787146 ], [ -74.182268186365548, 40.90867381000384 ], [ -74.175303344211486, 40.90858984911906 ], [ -74.170718445064438, 40.907895884204166 ], [ -74.161310650898216, 40.905911964773651 ], [ -74.158526703804, 40.90380301104085 ], [ -74.154665783009392, 40.90180006191752 ], [ -74.145991980895218, 40.90053412914672 ], [ -74.135127248018392, 40.902010168262464 ], [ -74.133640283608031, 40.901987176971701 ], [ -74.126956441646428, 40.901354224153678 ], [ -74.115688729578409, 40.904120246046276 ], [ -74.108325909644662, 40.90395229024103 ], [ -74.089657369036161, 40.902643416679325 ], [ -74.084233499416712, 40.901079472071324 ], [ -74.067494862455661, 40.884398831261748 ], [ -74.06094099329637, 40.873572041816765 ], [ -74.056570093590267, 40.869296136520482 ], [ -74.048391304992194, 40.867065222951325 ], [ -74.039648540966269, 40.866820281629408 ], [ -74.015738195013284, 40.865344456520262 ], [ -74.008841387634064, 40.865207502645866 ], [ -73.994063850076756, 40.874515441989807 ], [ -73.987815053862604, 40.875629462333357 ], [ -73.984947144923623, 40.875098488990922 ], [ -73.977424371944238, 40.869163634667942 ], [ -73.975120433020265, 40.864310729936321 ], [ -73.976470372606812, 40.858436819206112 ] ], [ [ -75.141976768594091, 40.992986996310698 ], [ -75.145532843557831, 40.997396870945636 ], [ -75.154916847627618, 40.998235682294997 ], [ -75.163895784192434, 40.995359552858815 ], [ -75.172280701570699, 40.991468451037683 ], [ -75.1835186067687, 40.987154305216883 ], [ -75.190446544648736, 40.984338219521931 ], [ -75.195489446524434, 40.979646198125259 ], [ -75.199380426934084, 40.978868139348101 ], [ -75.21402849275475, 40.982716812937433 ], [ -75.21811053473229, 40.984868704041247 ], [ -75.222131542753942, 40.98534562266515 ], [ -75.232636558898022, 40.98627541473121 ], [ -75.268716494136655, 40.997715573739569 ], [ -75.289910182202561, 41.00768605545472 ], [ -75.300080005953291, 41.013754788258012 ], [ -75.310119806562071, 41.031405349359694 ], [ -75.316627659410301, 41.051832923684394 ], [ -75.319679607291761, 41.054773819987687 ], [ -75.329284454718049, 41.059965551546306 ], [ -75.33665434295051, 41.062322368451312 ], [ -75.35633805699517, 41.065300927569034 ], [ -75.373534822262485, 41.062420632990566 ], [ -75.394507525345801, 41.07019107663082 ], [ -75.398566472285864, 41.069264011638751 ], [ -75.41834920878739, 41.071681568101212 ], [ -75.442106904305149, 41.071189098579424 ], [ -75.470525549542231, 41.074622454505182 ], [ -75.494558261004713, 41.072611012573027 ], [ -75.509756133031573, 41.078039637137834 ], [ -75.513265109865927, 41.078359577284019 ], [ -75.524664035732499, 41.078557401504845 ], [ -75.559834816636993, 41.076058925693886 ], [ -75.577572714019581, 41.076668646471013 ], [ -75.58982564598702, 41.077149452864262 ], [ -75.600796590779638, 41.080326224890918 ], [ -75.611951530539798, 41.079098082957096 ], [ -75.622021485454141, 41.082896858428242 ], [ -75.626195465575876, 41.08335878754567 ], [ -75.649022353101401, 41.081428486315936 ], [ -75.663502282346471, 41.079047316153073 ], [ -75.68269018057407, 41.071376171205024 ], [ -75.694188124206988, 41.068347053268013 ] ], [ [ -75.141976768594091, 40.992986996310698 ], [ -75.14422770501173, 40.989668998203719 ] ], [ [ -75.694188124206988, 41.068347053268013 ], [ -75.703671078861191, 41.066027951789309 ], [ -75.724720965740218, 41.055968808758763 ], [ -75.74175691400572, 41.06011847781793 ], [ -75.748943888869221, 41.06035436471339 ], [ -75.756580988575962, 41.059435317505859 ], [ -75.770383192663274, 41.055346280021894 ], [ -75.775998280421163, 41.054876244712602 ], [ -75.785062427222087, 41.056967143534905 ], [ -75.798756644907797, 41.056055054056401 ], [ -75.814503899066253, 41.05716491957304 ], [ -75.848058461038946, 41.052533727995012 ], [ -75.857458610905098, 41.055806615631489 ], [ -75.86552272880887, 41.061185490340513 ], [ -75.868849782379556, 41.061685460192443 ], [ -75.878973959894878, 41.059644410321468 ], [ -75.896865269730327, 41.058503291736947 ], [ -75.926978786598738, 41.059297063197128 ], [ -75.941788053353818, 41.058464962735172 ], [ -75.959984421801749, 41.053475870555189 ], [ -75.977943780215696, 41.050514757976792 ], [ -75.996568125703661, 41.050793614630727 ], [ -76.013169463290623, 41.046555702333826 ], [ -76.062570456497639, 41.033235117453671 ], [ -76.078821804238331, 41.026376282276679 ], [ -76.100909207213633, 41.024717446603447 ], [ -76.112300457423714, 41.018853578443832 ], [ -76.127887780618408, 41.012864744682922 ], [ -76.139484036910076, 41.006093894293457 ], [ -76.156788362667882, 41.003367048781776 ], [ -76.161228440319405, 41.003546079681257 ], [ -76.164013480370784, 41.004946085561855 ], [ -76.168972495948523, 41.01587500620208 ], [ -76.174862583743916, 41.018877015723412 ], [ -76.193462936807407, 41.017237164761795 ], [ -76.223325521404675, 41.012060437975983 ], [ -76.242414895657745, 41.008776616582438 ], [ -76.254789188482334, 41.008417700337141 ], [ -76.26315144061202, 41.008726739095316 ], [ -76.277777870401096, 41.012945759531711 ], [ -76.290702275093537, 41.010534856455692 ], [ -76.294891403228746, 41.010718875436787 ], [ -76.298881522053009, 41.012064878152366 ], [ -76.326172333796677, 41.028559795655767 ], [ -76.334862601577484, 41.032973778623273 ], [ -76.342636845063538, 41.036158773079393 ], [ -76.358239344101577, 41.038847811505953 ], [ -76.409946017842529, 41.024467269261464 ], [ -76.425868537026531, 41.026706316654817 ], [ -76.434779829442292, 41.027797345277108 ], [ -76.463711766928157, 41.02276556623584 ], [ -76.490247606830621, 41.01271785603484 ], [ -76.503020021168211, 41.009086950579871 ], [ -76.511961339609144, 41.009116920144265 ], [ -76.532501068926948, 41.00593990366594 ], [ -76.552253782944135, 41.00711781969197 ], [ -76.565735273601035, 41.003761833946697 ], [ -76.577050691350152, 41.000976847397602 ], [ -76.593477293534974, 41.002238774061304 ], [ -76.624064434766126, 41.000098720099814 ], [ -76.620211291300691, 41.000087731958175 ], [ -76.637782986550988, 40.998576666748185 ], [ -76.643818273252876, 40.996188628941944 ], [ -76.652797702532851, 40.992385569720803 ], [ -76.661427073419276, 40.990257524646175 ], [ -76.678998730813703, 40.989867465596895 ], [ -76.691946257518467, 40.987708405213773 ], [ -76.716239190668091, 40.985996311588828 ], [ -76.731589646776811, 40.991908319653938 ], [ -76.74131797567145, 40.993926309434173 ], [ -76.751427171215582, 41.001868282040782 ], [ -76.775658222262919, 41.009848774983162 ], [ -76.784050247440447, 41.012625600017472 ], [ -76.792313228349158, 41.020106323323851 ], [ -76.800713247815395, 41.024626111205322 ], [ -76.814102203028952, 41.042245546663779 ], [ -76.840141396371834, 41.049436047870245 ], [ -76.847267456030579, 41.05122491591122 ], [ -76.856438546200309, 41.051666786461276 ], [ -76.871742700705454, 41.052113576920235 ], [ -76.882500806450139, 41.053715402418156 ], [ -76.900093967633907, 41.064742940652089 ], [ -76.92346323137329, 41.074954425748679 ], [ -76.934800372588768, 41.077144235041359 ], [ -76.972360842706465, 41.074141816265431 ], [ -77.003756180652118, 41.075251284698005 ], [ -77.030443067266049, 41.074502245987567 ], [ -77.072885851772782, 41.065047691667701 ], [ -77.088204734435635, 41.054240193663141 ], [ -77.130708509472612, 41.042008514840838 ], [ -77.137933479437265, 41.041226211112331 ], [ -77.143746488032832, 41.046032935667512 ], [ -77.146058498911117, 41.049156821226582 ], [ -77.149484498047443, 41.050926668593213 ], [ -77.187699379604936, 41.051615070942589 ], [ -77.195519370584051, 41.053945744030358 ], [ -77.207520339340007, 41.054624246995814 ], [ -77.215295367695774, 41.062432938213306 ], [ -77.219773360529956, 41.063252758146589 ], [ -77.285525643825551, 41.053290708869817 ], [ -77.301808757453344, 41.051962343105465 ], [ -77.318456926879435, 41.048082949581328 ], [ -77.336555170719862, 41.049070558095544 ], [ -77.347007862834047, 41.051359346532386 ], [ -77.367219068455, 41.061631992933577 ], [ -77.393778854654713, 41.061150414087543 ], [ -77.40015713372236, 41.067070333939036 ], [ -77.408473620978526, 41.069310178039615 ], [ -77.426259961779152, 41.063518736750716 ], [ -77.436742956019884, 41.054538413159001 ], [ -77.461823166026861, 41.041788717537301 ], [ -77.476534371239666, 41.038088346237025 ], [ -77.491725422090909, 41.039198021396849 ], [ -77.51214271647379, 41.032148476070489 ], [ -77.519451998092535, 41.031076298179613 ], [ -77.551229197488382, 41.027264528032951 ], [ -77.560797655643938, 41.024304263972894 ], [ -77.583243799366784, 41.016414615392428 ], [ -77.609201551995881, 40.997793724235386 ], [ -77.619165859698683, 40.984762612097335 ], [ -77.640917470166713, 40.968561267165732 ], [ -77.665256150401603, 40.963002766486056 ], [ -77.688502725082898, 40.954553333330637 ], [ -77.704144054123105, 40.947133070064559 ], [ -77.720799461595689, 40.944530729534435 ], [ -77.731137739645689, 40.944523498386218 ], [ -77.749738471501985, 40.954989938941161 ], [ -77.77026966304588, 40.956489630565379 ], [ -77.776578746649264, 40.958171518623821 ], [ -77.783895931702887, 40.964572325956098 ], [ -77.793928288621814, 40.979048979488418 ], [ -77.797819377202231, 40.982298877905805 ], [ -77.817389629632942, 40.989149499905885 ], [ -77.854269987835593, 40.9969808554469 ], [ -77.881216548597678, 41.014367786323021 ], [ -77.90965935653044, 41.024789634001166 ], [ -77.931090589869868, 41.024228304828526 ], [ -77.934988595648818, 41.02511726969761 ], [ -77.942198707306844, 41.024018136379169 ], [ -77.950377893052121, 41.020977941007871 ], [ -77.962440339955734, 41.010769513100996 ], [ -77.969261501666708, 41.007358330314268 ], [ -77.988616854321904, 41.000067872687829 ], [ -77.999748906372758, 40.997596752303579 ], [ -78.029679518053854, 40.987776889951355 ], [ -78.042580742491111, 40.975696061122953 ], [ -78.057329089298094, 40.975017054521054 ], [ -78.067140297869798, 40.970016114394838 ], [ -78.076890530353936, 40.969448109739794 ], [ -78.084123697777429, 40.967731123785306 ], [ -78.098795032146455, 40.961738183095569 ], [ -78.105731201760122, 40.961418176591245 ], [ -78.109713305337721, 40.963108148687944 ], [ -78.128924817262529, 40.979544918381393 ], [ -78.139247067163467, 40.980895892183341 ], [ -78.154605442544536, 40.986956808400535 ], [ -78.171192836509903, 40.986888796932668 ], [ -78.168636776911882, 40.988826777436273 ], [ -78.185528178041039, 40.986335792209637 ], [ -78.191655324185746, 40.986857782233024 ], [ -78.21809894178395, 40.996577670701164 ], [ -78.224226084328549, 40.997588658709866 ], [ -78.260260033697747, 40.994086701869065 ], [ -78.265235188946804, 40.996035695147533 ], [ -78.274604426016182, 41.004595746932388 ], [ -78.287268732744693, 41.012976897583123 ], [ -78.324829945007593, 41.014167979483972 ], [ -78.341927435374558, 41.020042090800629 ], [ -78.349847665911113, 41.022568138283063 ], [ -78.365824185160946, 41.023186171195206 ], [ -78.369440284558024, 41.024898199681047 ], [ -78.381433554459534, 41.035877362124623 ], [ -78.39454195164501, 41.039219421847029 ], [ -78.398440082703388, 41.039097424967835 ], [ -78.407252381547238, 41.038608429413948 ], [ -78.409343448267592, 41.038868435230313 ], [ -78.420611727855018, 41.047508555624532 ], [ -78.436291153082308, 41.056598681213693 ], [ -78.468900135248433, 41.067436832076119 ], [ -78.483922636112311, 41.068157849549344 ], [ -78.496030944559351, 41.078026963571972 ], [ -78.506521168088483, 41.083230113118255 ], [ -78.53743659488272, 41.1083697495731 ], [ -78.550367766944802, 41.119428993602291 ], [ -78.571372175548191, 41.125070273690966 ], [ -78.585746511827139, 41.123628426945672 ], [ -78.598327784517309, 41.124460573648491 ], [ -78.632134590977344, 41.120069941413966 ], [ -78.680680665272959, 41.122168502394203 ], [ -78.707972202616048, 41.129630804973878 ], [ -78.736368749086907, 41.138603091621583 ], [ -78.756442100742802, 41.145435257528689 ], [ -78.774562443606158, 41.144520397842257 ], [ -78.786929664170756, 41.145351487604245 ], [ -78.790210709401762, 41.147163504216884 ], [ -78.795299789907887, 41.148910534379581 ], [ -78.821049217127239, 41.157661681867879 ], [ -78.825619303062368, 41.158119712791837 ], [ -78.832386439637872, 41.157280766553164 ], [ -78.851979856409883, 41.149250955836386 ], [ -78.874761282321472, 41.151483112082062 ], [ -78.925604260725322, 41.152413482969436 ], [ -78.952124757061029, 41.144181744064376 ], [ -78.966300005099015, 41.137841903124936 ], [ -78.971511103253093, 41.138310939490552 ], [ -78.981445309878694, 41.143613971342219 ], [ -78.99191252489473, 41.147032021335583 ], [ -78.995407608127081, 41.150194020067275 ], [ -79.001373772270369, 41.159822978069343 ], [ -79.013497037460382, 41.169881967913874 ], [ -79.03253236770675, 41.169672093020374 ], [ -79.043252541698635, 41.167574180682031 ], [ -79.045067579406421, 41.168543184017253 ], [ -79.065011939726844, 41.170317297886342 ], [ -79.071420035134764, 41.167810360992519 ], [ -79.076089116387564, 41.167738391848324 ], [ -79.08504629094341, 41.170233428505306 ], [ -79.098009520643018, 41.17044351079015 ], [ -79.106325677349389, 41.171793553272217 ], [ -79.122439004206953, 41.177172612461028 ], [ -79.157336677804921, 41.183134789989928 ], [ -79.172564988507858, 41.18725485530021 ], [ -79.180164126893828, 41.187311904578245 ], [ -79.190647297977435, 41.185183990757061 ], [ -79.210613702095998, 41.189555085643732 ], [ -79.219234865492595, 41.190154137295899 ], [ -79.227345003125436, 41.189044199527231 ], [ -79.238095177257321, 41.186774288410241 ], [ -79.243748244901653, 41.1832463539576 ], [ -79.250607306879274, 41.177055435133816 ], [ -79.271237652048498, 41.173095268288272 ], [ -79.287610962047125, 41.173404107926295 ], [ -79.299803248368562, 41.179064941887987 ], [ -79.318510625565239, 41.181593738382531 ], [ -79.340682030257156, 41.180304534539566 ], [ -79.350013175435791, 41.177221472037644 ], [ -79.352332222204609, 41.177515446932517 ], [ -79.361228403124557, 41.178785349191415 ], [ -79.367522516723696, 41.178236293324602 ], [ -79.376372685823057, 41.178385206273838 ], [ -79.384879905685622, 41.184263068382108 ], [ -79.391304041701119, 41.185689992238537 ], [ -79.39433309965618, 41.185739962218527 ], [ -79.4096223980292, 41.186551805225577 ], [ -79.426018769084095, 41.192540586072596 ], [ -79.441941108248912, 41.196191393075011 ], [ -79.456109375176553, 41.195863256773038 ], [ -79.468530627950443, 41.197454118002952 ], [ -79.478494807154974, 41.196301031693785 ], [ -79.486910001580625, 41.199722912842063 ], [ -79.492464111409177, 41.200081854129337 ], [ -79.510263327333462, 41.194000804494898 ], [ -79.520540366563935, 41.183849872242575 ], [ -79.52621642527275, 41.182072868899311 ], [ -79.543406676660965, 41.184830771208581 ], [ -79.554377823227227, 41.185039725522486 ], [ -79.568263068789591, 41.192829585356094 ], [ -79.577228202860681, 41.195049525197788 ], [ -79.58561230541757, 41.19419150111073 ], [ -79.599414433967752, 41.186993525718798 ], [ -79.604854503498956, 41.18663050819324 ], [ -79.612102621954918, 41.189892443155536 ], [ -79.613803663804617, 41.192753404506725 ], [ -79.614505668553122, 41.192093409065556 ], [ -79.621684791227665, 41.196392332393501 ], [ -79.63140492720683, 41.197830277340913 ], [ -79.636188983909676, 41.196922268373108 ], [ -79.644512062454879, 41.191879291949135 ], [ -79.662808270155338, 41.185680289578023 ], [ -79.668903351956104, 41.185699265274231 ], [ -79.673222401702589, 41.184139266012266 ], [ -79.674702418183912, 41.183479267711945 ], [ -79.691898629788312, 41.179192249237673 ], [ -79.697323680994302, 41.174282284543224 ], [ -79.698513691002873, 41.172897295870264 ], [ -79.701572721360932, 41.17027331425021 ], [ -79.705364771076844, 41.169620307085843 ], [ -79.716389931328138, 41.171310244730918 ], [ -79.72265401676421, 41.170940224711082 ], [ -79.729833123049829, 41.172665176718439 ], [ -79.735524206438527, 41.173901140133694 ], [ -79.745877350044395, 41.173981098883672 ], [ -79.755818562319291, 41.176243027974472 ], [ -79.771276969180136, 41.181998882239618 ], [ -79.793135535690638, 41.18656871390786 ], [ -79.80351882210357, 41.192691579417442 ], [ -79.817619195299429, 41.196540452146877 ], [ -79.831222537466004, 41.195830388740717 ], [ -79.854180092318728, 41.189891352896169 ], [ -79.865181369939137, 41.189639299437658 ], [ -79.870873516852967, 41.190150262082092 ], [ -79.882012827429151, 41.195521120594286 ], [ -79.892251093915945, 41.196582048888352 ], [ -79.921449882813562, 41.204161765128518 ], [ -79.929118078410184, 41.203958725552162 ], [ -79.943323426944914, 41.201288692137318 ], [ -79.955561749683199, 41.202680599974357 ], [ -79.974399227221596, 41.201658513746565 ], [ -79.988941611574148, 41.203199404628805 ], [ -79.999782887009445, 41.202646354621052 ], [ -80.016522212776067, 41.200868315758981 ], [ -80.027424443111968, 41.202349241397137 ], [ -80.038365652386688, 41.200548227018068 ], [ -80.074583392836914, 41.201540052817855 ], [ -80.085882627946503, 41.20244798849707 ], [ -80.107703028091166, 41.195497011182688 ], [ -80.127265425344945, 41.195229928860748 ], [ -80.139563690709721, 41.19761083596503 ], [ -80.159828106664264, 41.197968741433968 ], [ -80.169799298227943, 41.195859730448028 ], [ -80.213769188033737, 41.193829565741147 ], [ -80.228799499993542, 41.194409490399231 ], [ -80.241059743047245, 41.192727459534353 ], [ -80.249779914229947, 41.19115944224805 ], [ -80.264765274484859, 41.185090414832715 ], [ -80.274934549348146, 41.18660831726168 ], [ -80.287111857391821, 41.184560255846634 ], [ -80.300616209923447, 41.184247159858622 ], [ -80.313800534555426, 41.180528117293115 ], [ -80.3185226626738, 41.181256071496691 ], [ -80.327540924979147, 41.185608938787944 ], [ -80.336750171221979, 41.186298859470966 ], [ -80.369252020195532, 41.18522663349215 ], [ -80.390393561760533, 41.182777515498934 ], [ -80.422720418290709, 41.18342226496987 ], [ -80.432547686172782, 41.184700170414303 ], [ -80.443411972632589, 41.184620090877125 ], [ -80.455604293495512, 41.18441800359264 ], [ -80.466224571129118, 41.183955932618751 ], [ -80.479300895084322, 41.180815890832328 ], [ -80.496346344959733, 41.18068676732198 ], [ -80.511925897981044, 41.184947699394918 ], [ -80.51929615696109, 41.184504727683652 ], [ -80.537858762402934, 41.176867902648439 ], [ -80.567492812167259, 41.176169984613466 ], [ -80.568743857271286, 41.176245986488929 ], [ -80.578708196211764, 41.174057041221097 ], [ -80.602611990682178, 41.166256196852501 ], [ -80.60723514130936, 41.164337230068938 ], [ -80.61706246272982, 41.160431295673298 ], [ -80.624767722452944, 41.158417332041573 ], [ -80.644147423535628, 41.159797346422778 ], [ -80.65803390769868, 41.158302383777894 ], [ -80.66784522249236, 41.15358344469746 ], [ -80.673788397199473, 41.148594499571125 ], [ -80.674849429703471, 41.147880507398604 ] ], [ [ -75.694188124206988, 41.068347053268013 ], [ -75.700207108276487, 41.071707902514433 ] ], [ [ -122.384967238188423, 37.786102465235643 ], [ -122.38368825554393, 37.787013960807251 ], [ -122.381610049974782, 37.788729141726087 ], [ -122.380376877691958, 37.789781656026697 ], [ -122.358666628153614, 37.81019714582721 ], [ -122.351930318321337, 37.815123520320491 ], [ -122.341626123619804, 37.818487515975548 ], [ -122.335111448388346, 37.820491992289952 ], [ -122.298065970920334, 37.826592753849283 ] ], [ [ -115.737464639433441, 40.859929941128343 ], [ -115.744061951427881, 40.854383170655595 ], [ -115.750774216271395, 40.849737381052357 ], [ -115.767211040813066, 40.84528972969192 ], [ -115.7744572371451, 40.841108934434914 ], [ -115.780002861136708, 40.83758109850865 ], [ -115.792313699387904, 40.834498355471005 ], [ -115.804250774604228, 40.824348765718291 ], [ -115.814395234050025, 40.817989063023418 ], [ -115.827956913014532, 40.805710543258385 ], [ -115.834173349958149, 40.801750726126585 ], [ -115.849756388149217, 40.793210153876736 ], [ -115.868321599299421, 40.784913622898749 ], [ -115.906747453294926, 40.773253480349823 ], [ -115.928165854877307, 40.762393052568754 ], [ -115.941208541049306, 40.751704484927188 ], [ -115.950117417861577, 40.735934805557442 ], [ -115.956577762348005, 40.729213969995726 ], [ -115.971763682343649, 40.721195270258988 ], [ -115.981268155544811, 40.714215467559249 ], [ -116.000129774699388, 40.715897732892806 ], [ -116.020120559675647, 40.725094978179442 ], [ -116.037914047875162, 40.729997219739829 ], [ -116.045914618472736, 40.729406350283114 ], [ -116.103644016771995, 40.718558385779616 ], [ -116.12126253894975, 40.716326707168534 ], [ -116.131444269903483, 40.718336864361952 ], [ -116.138872917934108, 40.718176995292332 ], [ -116.146485563538789, 40.715629153914712 ], [ -116.156911394229326, 40.709712398424401 ], [ -116.171090076252511, 40.701358741060105 ], [ -116.176978433148051, 40.692268944792062 ], [ -116.182805697315004, 40.687180107662627 ], [ -116.199714371706349, 40.682061484443992 ], [ -116.235950087613105, 40.663080413738896 ], [ -116.248329117083429, 40.659429708689608 ], [ -116.257884972579859, 40.65896094109705 ], [ -116.271812426508419, 40.656413315759792 ], [ -116.291505022616221, 40.65069187975913 ], [ -116.30190754998516, 40.649883153232913 ], [ -116.311739354270557, 40.646003454146275 ], [ -116.320654372658495, 40.644771699351303 ], [ -116.336061340639432, 40.638192186695598 ], [ -116.342391182949882, 40.637982355342885 ], [ -116.353244355619722, 40.641064599129479 ], [ -116.4069590423004, 40.658945781573749 ], [ -116.438807602624379, 40.662917591461941 ], [ -116.448729937016878, 40.666075817446114 ], [ -116.46344137807948, 40.673317114466222 ], [ -116.498240937457723, 40.694057761403471 ], [ -116.513768134640586, 40.698388247066838 ], [ -116.529303398355253, 40.700127793375188 ], [ -116.54352021257904, 40.699217337387637 ], [ -116.560207183796265, 40.695689020632372 ], [ -116.594785668923663, 40.685768496833695 ], [ -116.639996018242698, 40.673601451219184 ], [ -116.702128948839672, 40.67314593500906 ], [ -116.71485003883005, 40.670884489161423 ], [ -116.745134538796478, 40.659018931544225 ], [ -116.757153999842245, 40.653156522394077 ], [ -116.765710897742522, 40.645957992818268 ], [ -116.78757724585769, 40.620740317073341 ], [ -116.797163633848641, 40.614950811613689 ], [ -116.80845022049354, 40.611262343341586 ], [ -116.81790740688659, 40.610331754332059 ], [ -116.88820605845288, 40.614442680145359 ], [ -116.895404958099604, 40.615793969780924 ], [ -116.904448938564144, 40.619723297388475 ], [ -116.919861129538177, 40.624842886317609 ], [ -116.944257135550089, 40.635296788944601 ], [ -116.960086965893737, 40.660886062630574 ], [ -117.01745529974599, 40.705847870418083 ], [ -117.198325008334734, 40.847913448623146 ], [ -117.206789568308139, 40.853223804633707 ], [ -117.249636176851226, 40.874366697785725 ], [ -117.314855291927202, 40.906519663856265 ], [ -117.340217574458393, 40.916629876840005 ], [ -117.359044833689481, 40.916241867773742 ], [ -117.374195508962387, 40.922033611955484 ], [ -117.378107421508147, 40.922521815055106 ], [ -117.395791204194921, 40.921115773155812 ], [ -117.412520697550789, 40.92966459250929 ], [ -117.422448550187852, 40.927605150525771 ], [ -117.427686738108918, 40.927705434678131 ], [ -117.489755459039117, 40.947807686088574 ], [ -117.54308272715916, 40.986152782237291 ], [ -117.577674488770796, 41.019982924599255 ], [ -117.586275127426291, 41.025774491645812 ], [ -117.592771439443254, 41.025324937008996 ], [ -117.681338593582495, 40.990011263705846 ], [ -117.714240513008107, 40.983348666241959 ], [ -117.726440383739131, 40.980782565764216 ], [ -117.730420093185359, 40.979443864508809 ], [ -117.741629932942956, 40.972006740459811 ], [ -117.747791216165894, 40.959899293408817 ], [ -117.750109262067838, 40.954566507516823 ], [ -117.753312657865592, 40.950675770049351 ], [ -117.755447510396351, 40.948992937024165 ], [ -117.761548077009977, 40.945938399139891 ], [ -117.77791850824606, 40.941438610366937 ], [ -117.804659264098731, 40.928100641733437 ], [ -117.858041553754816, 40.910785651366766 ], [ -117.929401885757628, 40.879362108071305 ], [ -117.938048870056463, 40.872960782371671 ], [ -117.950751974753018, 40.857981792012602 ], [ -117.973978324417288, 40.830193627124736 ], [ -117.999242699787615, 40.786246636818511 ], [ -118.055618417296216, 40.688831589220776 ], [ -118.059736121861746, 40.684021943946703 ], [ -118.067070691191859, 40.679070545809402 ], [ -118.173057401088457, 40.649111009112303 ], [ -118.210432981220762, 40.631933066758883 ], [ -118.245056152675616, 40.605384939957979 ], [ -118.252726681756897, 40.595017585772652 ], [ -118.274030773266432, 40.558879416596362 ], [ -118.279876480497762, 40.500080079140254 ], [ -118.284257390668046, 40.4551898649284 ], [ -118.30321721015099, 40.371852214968065 ], [ -118.308976272580708, 40.347373920323967 ], [ -118.317737021574217, 40.334862764628362 ], [ -118.352032802493071, 40.292057030394936 ], [ -118.36533004304853, 40.27023835126365 ], [ -118.377612393178069, 40.265169439775498 ], [ -118.38646507208469, 40.251991312099307 ], [ -118.403246252628705, 40.234822845289386 ], [ -118.409520891318564, 40.231302402162555 ], [ -118.426553679559547, 40.224814903448937 ], [ -118.436037122721132, 40.218513755331188 ], [ -118.46443830033266, 40.190306357347417 ], [ -118.467761924462252, 40.188536655910369 ], [ -118.472589042057081, 40.180420113240473 ], [ -118.500037622876903, 40.143091675379303 ], [ -118.507837232274895, 40.136920379778481 ], [ -118.554410806318771, 40.109134639113513 ], [ -118.627355103702271, 40.077544530386582 ], [ -118.636610208328747, 40.072235438045666 ], [ -118.646718901257316, 40.064194453463941 ], [ -118.654098829743887, 40.055826219677371 ], [ -118.6720786206687, 40.024807197470423 ], [ -118.67791277911617, 39.998726987011182 ], [ -118.681610968886773, 39.988408458710239 ], [ -118.703783028327152, 39.960921917888072 ], [ -118.709713561194349, 39.95740153659559 ], [ -118.747053412428883, 39.942085384217805 ], [ -118.816075577070677, 39.915222251613152 ], [ -118.853155460363993, 39.893776053997371 ], [ -118.885463383464881, 39.870490431234252 ], [ -118.99179856851282, 39.818930563122464 ], [ -118.99916972165839, 39.812652368718872 ], [ -119.079833697331878, 39.725870113920315 ], [ -119.098213569242986, 39.702568415408983 ], [ -119.108421585094092, 39.690373692737339 ], [ -119.157520415771302, 39.656131718515383 ], [ -119.182348240711065, 39.635867820111777 ], [ -119.196100293765411, 39.625657541437967 ], [ -119.210430773281502, 39.615107342348836 ], [ -119.215910651753902, 39.613308019047992 ], [ -119.262373364984938, 39.616322672446202 ], [ -119.277151456673394, 39.618285466019493 ], [ -119.283363275055009, 39.618359227725293 ], [ -119.291336399610586, 39.617913211459481 ], [ -119.302181684282303, 39.617079556001336 ], [ -119.309811375657247, 39.61478751544783 ], [ -119.324560911069383, 39.605600406007348 ], [ -119.344813363831392, 39.599323981949411 ], [ -119.355681372266417, 39.59887535585441 ], [ -119.361664646200268, 39.59639612756434 ], [ -119.366101740286908, 39.592307713784045 ], [ -119.371886112467351, 39.590396459953958 ], [ -119.380247330490235, 39.591668518688955 ], [ -119.393569930497478, 39.589541236564116 ], [ -119.41011538396809, 39.592061354009267 ], [ -119.422127209331805, 39.589914922305887 ], [ -119.457033490604175, 39.590129487274062 ], [ -119.466423546787993, 39.58398875953857 ], [ -119.470106837943121, 39.570569318511168 ], [ -119.474672420581996, 39.567949937345908 ], [ -119.486912597284586, 39.566673571232911 ], [ -119.502589526268125, 39.568364651215305 ], [ -119.530108776821521, 39.568338320065983 ], [ -119.536816121579378, 39.564528237505094 ], [ -119.54648004043942, 39.561790550146483 ], [ -119.567424723239526, 39.552031423725658 ], [ -119.589960958552126, 39.54534752070424 ], [ -119.6034900532064, 39.532887416784732 ], [ -119.613642408117471, 39.52889082637595 ], [ -119.635180745374527, 39.514382845403802 ], [ -119.655498391807058, 39.510856685128715 ], [ -119.661656368121868, 39.511025547523452 ], [ -119.673757012856782, 39.514246243809517 ], [ -119.678359369362425, 39.516417890109864 ], [ -119.685377282557496, 39.522350874993933 ], [ -119.694726916259356, 39.525850199624486 ], [ -119.713039273340371, 39.528564816240724 ], [ -119.726489364502939, 39.530104752125183 ], [ -119.735610067955378, 39.533737070315418 ], [ -119.739649155761455, 39.534771656259913 ], [ -119.749807270452848, 39.534678131270873 ], [ -119.771540852355059, 39.534402272538564 ], [ -119.775289176299808, 39.535840817302535 ], [ -119.779594782049159, 39.537569444243026 ], [ -119.785104254248381, 39.537669247868948 ], [ -119.800146519983358, 39.537103450998977 ], [ -119.806654841036519, 39.536730408336972 ], [ -119.812682992765431, 39.534889296533805 ], [ -119.831727492724085, 39.527896114699672 ], [ -119.852621419329253, 39.527197235190577 ], [ -119.85803224378293, 39.525206045832761 ], [ -119.869463435951033, 39.519588762060081 ], [ -119.90212457040829, 39.513829717650943 ], [ -119.919352719273107, 39.516682366441664 ], [ -119.922332297943129, 39.515312823444823 ], [ -119.929313291709732, 39.511995895837437 ], [ -119.936202059472947, 39.51028795942586 ], [ -119.945977325082652, 39.512898483038043 ], [ -119.957163708873836, 39.510901224563383 ], [ -119.978749684853355, 39.514803623899681 ], [ -119.984046095524761, 39.514205459202238 ], [ -119.992169524021264, 39.510605737276855 ], [ -119.99588875085928, 39.506001316397189 ], [ -119.990673342630828, 39.483261120259186 ], [ -119.993813921089682, 39.473614414269932 ], [ -119.99922473418556, 39.468945161167539 ], [ -120.005451238942541, 39.458756902505783 ], [ -120.007091259308552, 39.44551288175176 ], [ -120.008958191197692, 39.443209122862854 ], [ -120.014978672968837, 39.440909008518737 ], [ -120.029220473247662, 39.431661044436318 ], [ -120.032177663694156, 39.425149381761344 ], [ -120.032231849620331, 39.423612360562338 ], [ -120.025595806941766, 39.416290175154835 ], [ -120.023083895363285, 39.405517567426948 ], [ -120.01863455947958, 39.40047676642736 ], [ -120.02245268559092, 39.393687233275209 ], [ -120.021608918692323, 39.386877964493742 ], [ -120.019315671120069, 39.3823185103291 ], [ -120.021129856739677, 39.378958730879276 ], [ -120.027476951765522, 39.376567692597447 ], [ -120.030845123224125, 39.373070161329039 ], [ -120.036377226067586, 39.370931004458178 ], [ -120.043585898601592, 39.370062143957561 ], [ -120.049170166708251, 39.372283082999111 ], [ -120.060180370126602, 39.373734884240058 ], [ -120.066945875936099, 39.37678403215417 ], [ -120.069824478202278, 39.380106556171157 ], [ -120.07735172126921, 39.384338848383543 ], [ -120.089954019604917, 39.383520883249687 ], [ -120.102108061602465, 39.375869748339568 ], [ -120.109438766192923, 39.37267090444616 ], [ -120.114004036710938, 39.364713536771141 ], [ -120.137897786401567, 39.358698427669786 ], [ -120.162716534716694, 39.339281357799102 ], [ -120.170450364542631, 39.337028647922558 ], [ -120.182855464074251, 39.330972700883791 ], [ -120.190680811448573, 39.325026981182255 ], [ -120.203763096519836, 39.32310622708787 ], [ -120.229118331908566, 39.325571679084348 ], [ -120.233757619703553, 39.326693503973992 ], [ -120.240270727814348, 39.330532683657857 ], [ -120.247210739017973, 39.331692916334966 ], [ -120.254799073501474, 39.3317972162098 ], [ -120.271294649013683, 39.327749019815194 ], [ -120.28576131180634, 39.331951559717176 ], [ -120.294386823569127, 39.328112027948777 ], [ -120.298408751562107, 39.329783743380318 ], [ -120.303130424137251, 39.337566633339115 ], [ -120.308981185531493, 39.34180569303215 ], [ -120.316834979178481, 39.341505069377085 ], [ -120.320743100743471, 39.342768767667835 ], [ -120.330220358981094, 39.343171443457493 ], [ -120.345922515276584, 39.33890119342626 ], [ -120.351493224406852, 39.3350531541358 ], [ -120.368787658776796, 39.327175185073258 ], [ -120.383833406798217, 39.328108904074696 ], [ -120.3913001297135, 39.324749228268892 ], [ -120.400419076353515, 39.322850869225846 ], [ -120.411091915095895, 39.324523829521937 ], [ -120.432173215413783, 39.316669635609458 ], [ -120.443638563072241, 39.31431073532594 ], [ -120.458165361516379, 39.315953447543784 ], [ -120.465136226031305, 39.314184734009572 ], [ -120.472784632706578, 39.314274166188433 ], [ -120.485065404512042, 39.312368458598776 ], [ -120.498213390092715, 39.312248937965173 ], [ -120.509738465738664, 39.313911111978427 ], [ -120.513121593403838, 39.312591737504299 ], [ -120.517715938246155, 39.306461553203064 ], [ -120.52474708402201, 39.306832883581492 ], [ -120.530414673458381, 39.305536945770932 ], [ -120.551841221818123, 39.316120110633776 ], [ -120.560829249298848, 39.320622869310228 ], [ -120.568490869850422, 39.326983394441193 ], [ -120.581431822602852, 39.330556922253493 ], [ -120.584997232156951, 39.330557612916685 ], [ -120.590383609417827, 39.326926628045292 ], [ -120.596636954742195, 39.326130837786785 ], [ -120.599464202207017, 39.323090363374121 ], [ -120.612834738404402, 39.315936917419833 ], [ -120.620315126893757, 39.31488137708277 ], [ -120.627407796203272, 39.310854739633811 ], [ -120.635161732335135, 39.30962826052351 ], [ -120.643221752081303, 39.305825825032713 ], [ -120.667385384802074, 39.299761591424748 ], [ -120.67402109291379, 39.293792871419399 ], [ -120.682369947837543, 39.292276538378481 ], [ -120.707988108758457, 39.280440625764449 ], [ -120.715379432306634, 39.270444045479984 ], [ -120.72172466846061, 39.267824319874606 ], [ -120.729702047667701, 39.257594865376383 ], [ -120.74117590729557, 39.246176102631601 ], [ -120.747109939899801, 39.242709272246707 ], [ -120.749701396347547, 39.235500683757088 ], [ -120.762150167852241, 39.22593203542089 ], [ -120.772442717775192, 39.215282959495347 ], [ -120.79183025215049, 39.204067743323016 ], [ -120.800117483478203, 39.203848432378543 ], [ -120.807863966834816, 39.202067997503434 ], [ -120.813715517186182, 39.192559086492288 ], [ -120.819071364147234, 39.189203152171437 ], [ -120.825019587276032, 39.18831237282226 ], [ -120.834821872293631, 39.18907741674122 ], [ -120.839757945970192, 39.187426426616177 ], [ -120.85505532449119, 39.174367491224039 ], [ -120.869641721495057, 39.169552521349708 ], [ -120.871073941509607, 39.166962799466788 ], [ -120.870732895712607, 39.161614674802848 ], [ -120.872576284930162, 39.159532045853432 ], [ -120.898155385042472, 39.14820740908285 ], [ -120.905437141945569, 39.147060968002961 ], [ -120.90821735171501, 39.143220536058855 ], [ -120.913519127752451, 39.139669654335457 ], [ -120.923610822794743, 39.139034841563465 ], [ -120.926841273814802, 39.13504551459971 ], [ -120.931609802409298, 39.131987532811614 ], [ -120.943483319078965, 39.105068944893588 ], [ -120.944848109049076, 39.09696718916318 ], [ -120.945398111831082, 39.093377285583252 ], [ -120.950440788647811, 39.087927365661102 ], [ -120.959075072018123, 39.071770180446116 ], [ -120.959593406844263, 39.067170266263297 ], [ -120.963189497819201, 39.062093038555325 ], [ -120.969119603820474, 39.045573267240947 ], [ -120.968611673592363, 39.037512102798594 ], [ -120.973931314349997, 39.023002216589369 ], [ -120.976765272709684, 39.019645839171226 ], [ -120.984923471045505, 39.014215663172941 ], [ -120.985298026940427, 39.009775723648474 ], [ -120.995379378207517, 38.991780006265309 ], [ -121.016215595131698, 38.966185069552935 ], [ -121.031884482471924, 38.955838879192946 ], [ -121.041262481426855, 38.945870180742631 ], [ -121.045307280928924, 38.942083174204619 ], [ -121.050016279846332, 38.933436344959674 ], [ -121.050717658789679, 38.93120452223949 ], [ -121.051236401997642, 38.928854655414334 ], [ -121.053637220836933, 38.92140126201069 ], [ -121.065315507328549, 38.909518148722086 ], [ -121.066786472941047, 38.903887524914133 ], [ -121.069620182894738, 38.900936227626239 ], [ -121.074830814289697, 38.89712251702759 ], [ -121.080063427793093, 38.893182814577465 ], [ -121.095502435208317, 38.885534646203389 ], [ -121.099943013527238, 38.883063752973726 ], [ -121.111404968380967, 38.87953861030514 ], [ -121.121503594149615, 38.878637131954299 ], [ -121.125715562500488, 38.876051192337563 ], [ -121.128902442118118, 38.863212024174992 ], [ -121.172746535427081, 38.826461192338279 ], [ -121.17755272723582, 38.822342427249062 ], [ -121.19167455247721, 38.810780066449325 ], [ -121.217739713127315, 38.788714832410307 ], [ -121.228715456239271, 38.779783699103817 ], [ -121.24338415686438, 38.770487541894319 ], [ -121.250443936651024, 38.76599939983852 ], [ -121.265040265268922, 38.744789324720841 ], [ -121.279710482065994, 38.730065322814809 ], [ -121.284935826086723, 38.725332745719832 ], [ -121.288446990906067, 38.722189702453875 ], [ -121.304062032206716, 38.708018967547559 ], [ -121.330857276589015, 38.683536321074271 ], [ -121.354437713383604, 38.661683829486861 ], [ -121.370912688799066, 38.64712039225585 ], [ -121.377415093175912, 38.645966171990068 ], [ -121.385859615723248, 38.644709487941839 ], [ -121.394457924183413, 38.639977871113231 ], [ -121.400252870510698, 38.63817147351039 ], [ -121.409404450947093, 38.638108996569343 ], [ -121.423519121502665, 38.643457880074095 ], [ -121.451181215955913, 38.642042607969081 ], [ -121.471882940667996, 38.641258441821435 ], [ -121.485047433651516, 38.639195179785382 ], [ -121.511524969984592, 38.625789902768098 ], [ -121.529487724657585, 38.616037223501024 ], [ -121.541781589730149, 38.599427881548813 ], [ -121.542757062733983, 38.597895171764215 ], [ -121.546306388421314, 38.59265022722272 ], [ -121.556551872697, 38.577803271295053 ], [ -121.560754435754617, 38.576480520412822 ], [ -121.577093565318506, 38.574093393077639 ], [ -121.662028327084926, 38.559242122880455 ], [ -121.683102658502563, 38.554575606740201 ], [ -121.687921499566357, 38.553230093220868 ], [ -121.720284066253768, 38.546378146091151 ], [ -121.729216034222205, 38.540974907744349 ], [ -121.731782041917356, 38.538873697144197 ], [ -121.739038823661147, 38.533146932775999 ], [ -121.744260740569217, 38.531328564272378 ], [ -121.755010830518884, 38.527928906735916 ], [ -121.762054074326045, 38.522152070520313 ], [ -121.797089723427945, 38.489372018116917 ], [ -121.814655645984615, 38.475728672182541 ], [ -121.81851592153609, 38.4727089189305 ], [ -121.824698644115657, 38.467567919414932 ], [ -121.836020904605107, 38.458695591929391 ], [ -121.848691170911977, 38.44930371637426 ], [ -121.886912299460775, 38.420092259520608 ], [ -121.890543810209962, 38.41743845902792 ], [ -121.946459377991687, 38.374278104028285 ], [ -121.958039294626388, 38.365199006404282 ], [ -121.971880050270528, 38.355262689313037 ], [ -121.990127327110471, 38.347265896127169 ], [ -122.00659195231384, 38.340893650586885 ], [ -122.019423687920266, 38.323171190900148 ], [ -122.025560902867085, 38.31508637155644 ], [ -122.027027347104735, 38.302352893473284 ], [ -122.027105181557488, 38.297221921146658 ], [ -122.028378490054308, 38.291100374800699 ], [ -122.042411828983006, 38.274301391782529 ], [ -122.055592517728826, 38.259135131240491 ], [ -122.062650475747986, 38.250806680076792 ], [ -122.087335831126225, 38.239931671412712 ], [ -122.115553572684433, 38.227468020751054 ], [ -122.130754512979266, 38.217521632385989 ], [ -122.142828588107434, 38.209053103493083 ], [ -122.162774800199301, 38.190506515218516 ], [ -122.166862365024286, 38.188242037011939 ], [ -122.174686793377901, 38.185055954546065 ], [ -122.192842585750469, 38.170383741054124 ], [ -122.194524775909272, 38.169201371210079 ], [ -122.201146796168132, 38.164462853909924 ], [ -122.207268575626117, 38.156168145939063 ], [ -122.209416922323797, 38.151743948012339 ], [ -122.210105227839378, 38.144465194991071 ], [ -122.212732409356306, 38.13988517646218 ], [ -122.222463978792263, 38.124244814701662 ], [ -122.222385813486696, 38.11096175580542 ], [ -122.222303773195193, 38.106837715724538 ], [ -122.22232186902815, 38.101783711284789 ], [ -122.22313168515231, 38.092582995403589 ], [ -122.225974350704888, 38.083196043235439 ], [ -122.224492623749455, 38.077392472175127 ], [ -122.219321227365327, 38.069551513161983 ], [ -122.218267140578277, 38.061960101961752 ], [ -122.217904628249912, 38.055905953419035 ], [ -122.22034046784492, 38.053343859603849 ], [ -122.239904042781006, 38.039492168987309 ], [ -122.254818343928179, 38.023467696951286 ], [ -122.26174558225425, 38.015997265570427 ], [ -122.28060279124513, 37.996839301603501 ], [ -122.298639011072112, 37.993646126411363 ], [ -122.304872064912573, 37.990444494192211 ], [ -122.308077627176147, 37.985981712233624 ], [ -122.314431912881219, 37.968059126185999 ], [ -122.32269897268263, 37.961627288229295 ], [ -122.322290103609006, 37.957057128900857 ], [ -122.316626505714822, 37.944889951067204 ], [ -122.318736890184695, 37.938305755432722 ], [ -122.319102677069438, 37.936627894610687 ], [ -122.318594279014505, 37.93381269794412 ], [ -122.313575718239306, 37.926623770793448 ], [ -122.310199129401838, 37.920965474947138 ], [ -122.309716407885119, 37.911992283492197 ], [ -122.303565015565454, 37.90198792519935 ], [ -122.301572604846783, 37.898917162260297 ], [ -122.299308592061948, 37.892049292621564 ], [ -122.301036574414539, 37.888673948480402 ], [ -122.30149430948515, 37.886580121209214 ], [ -122.299747137907033, 37.879270447822769 ], [ -122.296046835502239, 37.867977025975058 ], [ -122.291230264910666, 37.85028317287324 ], [ -122.2861480978641, 37.830891217341183 ] ], [ [ -115.737464639433441, 40.859929941128343 ], [ -115.722606387668165, 40.873864391308388 ], [ -115.714414408962341, 40.883050053444627 ], [ -115.709890389522101, 40.89459671604822 ], [ -115.686543100687629, 40.919165790247234 ], [ -115.662165167656781, 40.935496044020603 ], [ -115.629794265372155, 40.949274245862988 ], [ -115.522750174157736, 40.949592766677434 ], [ -115.463331030815823, 40.959113313113093 ], [ -115.453636180025796, 40.962659992364443 ], [ -115.446588682968283, 40.967531711084369 ], [ -115.421194651770492, 41.003010376328959 ], [ -115.393109476433963, 41.024700478602533 ], [ -115.263467541813213, 41.085617064989322 ], [ -115.185442730756435, 41.086035776042138 ], [ -115.105982275759231, 41.099263429197308 ], [ -115.088438644767137, 41.101232149908533 ], [ -115.047468271731105, 41.110893447901177 ], [ -115.000380895045282, 41.119380687514514 ], [ -114.970563433745809, 41.116321273828341 ], [ -114.961081338994205, 41.108821224650534 ], [ -114.960212611174924, 41.104159269204068 ], [ -114.955955439451856, 41.101722236176734 ], [ -114.945932322869481, 41.098392129578485 ], [ -114.937343872287741, 41.097861010383944 ], [ -114.831115020334693, 41.112370327965536 ], [ -114.777686957181714, 41.112537609547083 ], [ -114.660656441890481, 41.07389737595917 ], [ -114.642013369015672, 41.07115812932831 ], [ -114.621882421691197, 41.071855824240295 ], [ -114.617084171032232, 41.070776765746295 ], [ -114.609196448206305, 41.066686694800175 ], [ -114.604849112005709, 41.066225636168184 ], [ -114.601705561866609, 41.067266579076126 ], [ -114.594626489114859, 41.073507409743193 ], [ -114.584083993127962, 41.076666225045003 ], [ -114.576410103942692, 41.077955102274942 ], [ -114.565890686600937, 41.076566967431368 ], [ -114.557613978532629, 41.073014886450196 ], [ -114.546293675026746, 41.071065746348715 ], [ -114.537994999864608, 41.065564683712061 ], [ -114.522112422766085, 41.059636517666881 ], [ -114.500463991824276, 41.03779741683892 ], [ -114.489235756881001, 41.029416340845358 ], [ -114.363232883049747, 40.94432575620278 ], [ -114.326358066956757, 40.924565575403633 ], [ -114.313885969826146, 40.911454643658381 ], [ -114.293181608997628, 40.901616382495604 ], [ -114.282852758323344, 40.901093135344027 ], [ -114.270090254588652, 40.897262895162143 ], [ -114.258586662686355, 40.890625730144457 ], [ -114.141973089057359, 40.77426585927423 ], [ -114.108583370799167, 40.748565741301292 ], [ -114.098208564847866, 40.74482359747995 ], [ -114.074010218851157, 40.744503218634435 ], [ -114.057807035028077, 40.739894998267651 ], [ -114.04978992396822, 40.737963888964366 ], [ -114.043168630690133, 40.738173786224998 ], [ -114.038187153049293, 40.738871704952679 ], [ -114.019024083682254, 40.745974355753852 ], [ -114.000509010462352, 40.746852065292671 ], [ -113.962603305558844, 40.741342723423884 ], [ -113.375614021880935, 40.728888864583467 ], [ -113.142462118056386, 40.726068953509987 ], [ -113.12563340130292, 40.729207815328593 ], [ -112.990427137275447, 40.765698701694745 ], [ -112.97838874838699, 40.772198687225398 ], [ -112.931012107158182, 40.809166494128675 ], [ -112.903197517353561, 40.821698458921347 ], [ -112.895766896591795, 40.822827472467679 ], [ -112.887603316793488, 40.820797523470254 ], [ -112.771992827637376, 40.758398760090891 ], [ -112.762029266283307, 40.756689831730817 ], [ -112.656648237021642, 40.74676052114102 ], [ -112.635507973608568, 40.74409066380565 ], [ -112.616313622404533, 40.738631819583368 ], [ -112.551465663386878, 40.719070351165712 ], [ -112.527891339356174, 40.709671560396018 ], [ -112.519842562924438, 40.706581630495315 ], [ -112.488837459036688, 40.700710848474294 ], [ -112.44981458925146, 40.686120154153173 ], [ -112.413949618839382, 40.679040382537409 ], [ -112.366091920647776, 40.665360697857764 ], [ -112.347461419680172, 40.66257980407552 ], [ -112.321415116903168, 40.663911930429627 ], [ -112.296452780098377, 40.670633036207285 ], [ -112.279424231845212, 40.679823099216065 ], [ -112.263173665208612, 40.693971151337365 ], [ -112.254110912933555, 40.706651172563483 ], [ -112.226477913622048, 40.72290221814513 ], [ -112.225020968065365, 40.72373421928102 ], [ -112.19297114000716, 40.738222241578562 ], [ -112.183182497703996, 40.745332229593444 ], [ -112.15396357820849, 40.769243057667808 ], [ -112.150262709675189, 40.770693049933683 ], [ -112.024427775863771, 40.771433327570371 ], [ -112.003585406509345, 40.771543377782542 ], [ -111.987113845640522, 40.766126427413042 ], [ -111.977249115286043, 40.76503143029251 ], [ -111.958244640880864, 40.765131415484547 ], [ -111.95085984368734, 40.765352408357721 ], [ -111.939378153127549, 40.765241401639805 ], [ -111.936524233242096, 40.765772395137368 ], [ -111.914628798633245, 40.763651399439446 ] ], [ [ -115.737464639433441, 40.859929941128343 ], [ -115.752124027423207, 40.841459591948734 ], [ -115.762230586027158, 40.832621944961723 ] ], [ [ -111.903565961474811, 40.717882872577334 ], [ -111.887926366688959, 40.718073859495348 ], [ -111.87101979760547, 40.718584842471898 ], [ -111.847461385426485, 40.719621816012612 ], [ -111.823756962400495, 40.713052879714603 ], [ -111.81441118625763, 40.714403859186042 ], [ -111.806812366828282, 40.713953860804615 ], [ -111.799229546427156, 40.711301888546842 ], [ -111.791264732826818, 40.711183886447763 ], [ -111.786343845586941, 40.714292847582591 ], [ -111.783337912728612, 40.718504796436768 ], [ -111.775464090519804, 40.72261274434824 ], [ -111.759450444545692, 40.731462632314724 ], [ -111.747869669222439, 40.734693596732818 ], [ -111.740567758275148, 40.741041533599144 ], [ -111.732328864349554, 40.742952524125137 ], [ -111.716101106812573, 40.7512604445634 ], [ -111.708822186814828, 40.748972476685609 ], [ -111.700705288320492, 40.748521495255957 ], [ -111.688009399494192, 40.742822608290894 ], [ -111.67933549469285, 40.742410632008095 ], [ -111.672110546176782, 40.739702694176927 ], [ -111.636405051922509, 40.748300598269203 ], [ -111.62324425039985, 40.753442562457771 ], [ -111.615974329199688, 40.753343574104775 ], [ -111.603820433235214, 40.749773618615471 ], [ -111.58606665663406, 40.755472606762588 ], [ -111.580070719925274, 40.755960613063102 ], [ -111.574241770527919, 40.75479362999684 ], [ -111.567710805398818, 40.749971672280559 ], [ -111.548423398976851, 40.729823243833529 ], [ -111.543380352983363, 40.727244329846179 ], [ -111.524970281051125, 40.721904544283575 ], [ -111.520606294954177, 40.721724566017329 ], [ -111.497733737238107, 40.731475354404864 ], [ -111.47837108972054, 40.740432144867164 ], [ -111.472786333121633, 40.746462989461243 ], [ -111.471108490251225, 40.75329487144618 ], [ -111.472687509788315, 40.757951832087691 ], [ -111.469780563229151, 40.767992769909888 ], [ -111.470757576690559, 40.771143743702162 ], [ -111.468170611616983, 40.777521706404734 ], [ -111.461815634725369, 40.780302707724971 ], [ -111.446572733652971, 40.797224632776064 ], [ -111.436028777171387, 40.804533611332864 ], [ -111.423790797841647, 40.807352628465317 ], [ -111.407471808192085, 40.808511671184604 ], [ -111.400872828954945, 40.813112655424987 ], [ -111.391960886548546, 40.826551574694257 ], [ -111.387177953669294, 40.842394459988014 ], [ -111.389321986067728, 40.849611395225935 ], [ -111.387239027036074, 40.859293322070805 ], [ -111.397806229940784, 40.904351932005078 ], [ -111.41147732189809, 40.923562751384814 ], [ -111.409578379586961, 40.936700651146559 ], [ -111.422021447056181, 40.950562521627468 ], [ -111.426065480939897, 40.957772459523255 ], [ -111.437784523763952, 40.966691374307779 ], [ -111.438653540864422, 40.97039134504147 ], [ -111.42264758132805, 40.980221290420992 ], [ -111.402162613173857, 40.990700232959398 ], [ -111.37798457617896, 41.009152042869282 ], [ -111.370378550763505, 41.011670012735564 ], [ -111.36490850347306, 41.019008905620822 ], [ -111.336732383923206, 41.030189768993189 ], [ -111.326257307214973, 41.039619638317177 ], [ -111.305124207359654, 41.046569561805285 ], [ -111.292672109893928, 41.057029420836294 ], [ -111.282838040779581, 41.063289340761905 ], [ -111.268257959609684, 41.06781029517586 ], [ -111.237877830993042, 41.084655107830287 ], [ -111.231896839022895, 41.086624096719646 ], [ -111.190804878284837, 41.119494765528081 ], [ -111.184731898195608, 41.122233750430603 ], [ -111.171021950362544, 41.124373773578199 ], [ -111.159928992667759, 41.129702745513342 ], [ -111.156015009425971, 41.133944704965323 ], [ -111.138711117680245, 41.16285240273514 ], [ -111.132562182103456, 41.18057120495321 ], [ -111.127542229861959, 41.188063135060382 ], [ -111.117662310764658, 41.193263121064426 ], [ -111.097879507911586, 41.20947102928038 ], [ -111.089769631915217, 41.224042900642921 ], [ -111.068338931724924, 41.246362769920708 ], [ -111.063424991365366, 41.248762773754997 ], [ -111.056483067808585, 41.250303804383101 ], [ -111.04656414084333, 41.24796189115672 ], [ -111.038729199664886, 41.246473957930952 ], [ -111.020144362617202, 41.24689707296443 ], [ -111.013407431228046, 41.248271102074746 ], [ -111.005175534967421, 41.251845136944496 ], [ -110.985575638442015, 41.260977233663077 ], [ -110.978579637595772, 41.262270266752772 ], [ -110.971262587017705, 41.258559303974558 ], [ -110.967448574268275, 41.258059322650418 ], [ -110.959772566682119, 41.259051359378816 ], [ -110.95472958402614, 41.262198382538514 ], [ -110.949236614460261, 41.267020407391044 ], [ -110.938494594501208, 41.268057459726151 ], [ -110.928538557279438, 41.267134509067027 ], [ -110.890673391943437, 41.262290697653299 ], [ -110.875666355350177, 41.264758772085315 ], [ -110.858134340823796, 41.272349859602407 ], [ -110.853373320312372, 41.27239888368036 ], [ -110.838038216819839, 41.2676389613138 ], [ -110.831309192250217, 41.268618995483834 ], [ -110.819659165968162, 41.273101055203249 ], [ -110.807528104641037, 41.273231117343336 ], [ -110.802904091950253, 41.275058141385799 ], [ -110.77846806566879, 41.293499272337009 ], [ -110.762286010898379, 41.30171936013874 ], [ -110.73808488280271, 41.308658463528126 ], [ -110.731225830541689, 41.308120484649841 ], [ -110.691003456076231, 41.2948305999467 ], [ -110.677759373074082, 41.299209644893153 ], [ -110.557732278787512, 41.297551025536656 ], [ -110.548516195073631, 41.299420059380829 ], [ -110.46996245082039, 41.32540250764761 ], [ -110.428839971101496, 41.331509833445352 ], [ -110.410963763940444, 41.336320984624244 ], [ -110.372564331092022, 41.353471342630002 ], [ -110.365194236462742, 41.354704405225576 ], [ -110.345479966990013, 41.355062561962555 ], [ -110.337857868116316, 41.356821629446081 ], [ -110.318395618150348, 41.362882810211751 ], [ -110.295423306229807, 41.367743016816789 ], [ -110.246021678856081, 41.374163486141789 ], [ -110.238461709566053, 41.376414617586136 ], [ -110.2215927737019, 41.384364924404011 ], [ -110.18841983921719, 41.3915444835486 ], [ -110.180439847722425, 41.39441362286874 ], [ -110.150242833998732, 41.41023316885763 ], [ -110.130978771218409, 41.424737532161721 ], [ -110.096722634900075, 41.437727118443632 ], [ -110.04884724670994, 41.464674959198227 ], [ -110.040279153611422, 41.469848108997873 ], [ -110.016002776851849, 41.491557553176442 ], [ -110.004703596096519, 41.499957751880267 ], [ -109.921871694632287, 41.541107584781734 ], [ -109.916973741174203, 41.543098640113378 ], [ -109.907383811968259, 41.544418779558093 ], [ -109.885449937829108, 41.54132917206416 ], [ -109.834874247954261, 41.542710976741674 ], [ -109.682744157785365, 41.542004438829501 ], [ -109.611507506734839, 41.545812531959186 ], [ -109.604687425076634, 41.54799461518634 ], [ -109.590603226036492, 41.555543750872339 ], [ -109.570828008424982, 41.558703029933113 ], [ -109.550578752950955, 41.564745282336446 ], [ -109.531398602176793, 41.56055363999824 ], [ -109.524058538343638, 41.559523770113316 ], [ -109.51330946898652, 41.555563990108787 ], [ -109.492061286542096, 41.552703229240819 ], [ -109.482501257878482, 41.546531301468889 ], [ -109.477885266498689, 41.541366359621733 ], [ -109.445582132480112, 41.523773534652499 ], [ -109.440257081349714, 41.523593532727972 ], [ -109.425669886608205, 41.528152478760639 ], [ -109.407747703548424, 41.528144469072821 ], [ -109.385591419367728, 41.53314541569096 ], [ -109.374102305076036, 41.53247441687391 ], [ -109.329049631819544, 41.549354290442032 ], [ -109.30968632098552, 41.55786424398547 ], [ -109.290940016290392, 41.566036209591822 ], [ -109.276146780381737, 41.571803192789218 ], [ -109.256409465261399, 41.579166180438136 ], [ -109.250679339360218, 41.584266166727673 ], [ -109.237853852635112, 41.603736045609573 ], [ -109.229567635254654, 41.607856001384043 ], [ -109.222167455856024, 41.610235967156399 ], [ -109.213591288113548, 41.609183942770876 ], [ -109.203322133866379, 41.603194932458635 ], [ -109.19829410871499, 41.595095947972872 ], [ -109.192694016002307, 41.592352940233084 ], [ -109.184553837682316, 41.592673911864239 ], [ -109.17572661766819, 41.595785870185836 ], [ -109.15780421586436, 41.597372804523886 ], [ -109.143964832566809, 41.606913721171601 ], [ -109.083240350531469, 41.629153435421941 ], [ -109.043460447116814, 41.636114279804048 ], [ -108.971489917540026, 41.666753786536788 ], [ -108.956330676505956, 41.669362653977736 ], [ -108.936379369309591, 41.669961490009847 ], [ -108.926186203393598, 41.673143397364406 ], [ -108.917336035786704, 41.68555228795973 ], [ -108.899086746316939, 41.692754122102741 ], [ -108.884727533668126, 41.691194013336855 ], [ -108.866386253251491, 41.693981861615974 ], [ -108.838805834055108, 41.688393658241594 ], [ -108.817175497669268, 41.689034486342685 ], [ -108.803847283343814, 41.683472392489094 ], [ -108.777830857444158, 41.67780319645621 ], [ -108.76800369379022, 41.676052121119525 ], [ -108.742925291206888, 41.674270966276488 ], [ -108.734968167265592, 41.671321951819671 ], [ -108.707875728321696, 41.653491927275034 ], [ -108.698872588102432, 41.649741917872703 ], [ -108.689335444118953, 41.647941903605911 ], [ -108.648601837136795, 41.646922827666963 ], [ -108.622966454394842, 41.649432768768605 ], [ -108.61006525834668, 41.649600742838409 ], [ -108.573054685640685, 41.645263691653888 ], [ -108.378737224149518, 41.633590177208951 ], [ -108.292079808129955, 41.629881890351847 ], [ -108.231194874359645, 41.638338536118361 ], [ -108.157591958053359, 41.6457499948351 ], [ -108.118237391850087, 41.653741678571386 ], [ -107.99126437741549, 41.670910830071399 ], [ -107.9824821051713, 41.673679824772265 ], [ -107.949042074734422, 41.68900778934983 ], [ -107.899159525457009, 41.703659818893406 ], [ -107.888729198508145, 41.705208835777299 ], [ -107.867885540259977, 41.706188879409346 ], [ -107.839258628327414, 41.705028948193885 ], [ -107.826326218399785, 41.706058974916715 ], [ -107.728469031978861, 41.728349200174222 ], [ -107.670048847366317, 41.741319341017274 ], [ -107.577073269241126, 41.748429557661588 ], [ -107.505392604648037, 41.764195611166308 ], [ -107.413355403025264, 41.784780115999837 ], [ -107.387018460633371, 41.787586996562382 ], [ -107.372132904827751, 41.786869944849698 ], [ -107.340263635774974, 41.777847877458441 ], [ -107.330482254468649, 41.776047849465115 ], [ -107.322317949030108, 41.775837818409364 ], [ -107.282392496049823, 41.778965645027419 ], [ -107.27004706217545, 41.781418585036889 ], [ -107.266110936375995, 41.783359560561863 ], [ -107.251171330735872, 41.778938523548199 ], [ -107.224605640921212, 41.778168626697095 ], [ -107.200511132698381, 41.788898674345482 ], [ -107.196376028105007, 41.78909368988834 ], [ -107.169977300090849, 41.783977816394859 ], [ -107.130013245663449, 41.781109986180979 ], [ -107.116463837885789, 41.773808069328247 ], [ -107.088234094828366, 41.771440189458822 ], [ -107.077025818157807, 41.773068226983405 ], [ -107.069472622100008, 41.77287025739701 ], [ -106.960414962576948, 41.754197755375102 ], [ -106.921716312826689, 41.744470915592068 ], [ -106.830404239565581, 41.741289310918631 ], [ -106.771761560931282, 41.743139556759928 ], [ -106.744111461094164, 41.735998759350409 ], [ -106.703102321316891, 41.730701188414876 ], [ -106.657577013873777, 41.731372617779456 ], [ -106.622747001082956, 41.739341883373754 ], [ -106.615514795452441, 41.73898295485624 ], [ -106.601094385871107, 41.736103116235746 ], [ -106.594869207294053, 41.736492171992332 ], [ -106.567356421166508, 41.741211390880039 ], [ -106.528659333689674, 41.749912674777988 ], [ -106.515208007999902, 41.754254787157834 ], [ -106.498522469513162, 41.74634299556903 ], [ -106.486757097691552, 41.734594243195339 ], [ -106.459725283927895, 41.724141651996106 ], [ -106.449089958329651, 41.71993481387198 ], [ -106.427421265172526, 41.707453182013616 ], [ -106.405143598357924, 41.705202457611428 ], [ -106.390700139064791, 41.699873674162319 ], [ -106.385450955979294, 41.695666775086259 ], [ -106.376096577788246, 41.681087024300957 ], [ -106.372068389993288, 41.671596163109434 ], [ -106.36617817744704, 41.666976275552102 ], [ -106.318065506634667, 41.644177048772576 ], [ -106.293665697994726, 41.63962637255154 ], [ -106.274805994252389, 41.628647696434619 ], [ -106.243218862709085, 41.621606080967382 ], [ -106.238396645358065, 41.61835613831208 ], [ -106.221717843881819, 41.599557418573447 ], [ -106.217803686493809, 41.598096455143541 ], [ -106.208961359871992, 41.598157503036425 ], [ -106.199126988774154, 41.597165567615114 ], [ -106.184592410077059, 41.590486720562566 ], [ -106.140789727109393, 41.565978251233297 ], [ -106.113857777955843, 41.561949461569654 ], [ -106.107799565107925, 41.560008521934883 ], [ -106.092601037359955, 41.551867715569671 ], [ -106.071398339397859, 41.531608105638746 ], [ -106.060319988054189, 41.525447257817 ], [ -106.056970887304828, 41.5219303256915 ], [ -106.053079798176739, 41.507488539859651 ], [ -106.046571627378313, 41.497470718042322 ], [ -105.984229628535118, 41.463238685012932 ], [ -105.965696888574882, 41.445760128645951 ], [ -105.952894347696571, 41.44223932359516 ], [ -105.89068968420716, 41.432562168337199 ], [ -105.841157566113466, 41.41193397622574 ], [ -105.835198310874858, 41.408222085560205 ], [ -105.811561304789606, 41.381183648244878 ], [ -105.779188886369624, 41.364766178208725 ], [ -105.746037499895039, 41.355214659026458 ], [ -105.706775483594967, 41.349504360265691 ], [ -105.694782169724178, 41.350694541866915 ], [ -105.641046771713775, 41.350184425774167 ], [ -105.61938624915669, 41.340594923809547 ], [ -105.616586196759101, 41.336204037037078 ], [ -105.615693211914788, 41.327824179265193 ], [ -105.613923253524888, 41.30900649646955 ], [ -105.611345220382432, 41.302437643269634 ], [ -105.594681835379603, 41.297707020447717 ], [ -105.570259274920517, 41.291558570598632 ], [ -105.528571265567507, 41.291052351584405 ], [ -105.525001190567991, 41.28946944708337 ], [ -105.51885209121825, 41.282949683743873 ], [ -105.514060012892813, 41.278208863795093 ], [ -105.501600759529595, 41.272761206325164 ], [ -105.481741245754932, 41.271331253774633 ], [ -105.474760102666011, 41.265788358342078 ], [ -105.466748896599626, 41.264701377500614 ], [ -105.459447723193591, 41.26172243162447 ], [ -105.446859442464643, 41.253741574995693 ], [ -105.439771368622075, 41.243480771877302 ], [ -105.436856389419518, 41.23623291577816 ], [ -105.438855558521212, 41.228111081372781 ], [ -105.437917618279684, 41.221932204851058 ], [ -105.441159836550682, 41.212990389945368 ], [ -105.440671881426368, 41.20880147393472 ], [ -105.424466652584286, 41.190582807661308 ], [ -105.416806629918597, 41.174592103946324 ], [ -105.405919471080026, 41.160432348279244 ], [ -105.401410374170666, 41.156762404969221 ], [ -105.383862930293688, 41.147012532301879 ], [ -105.355831113514355, 41.138730585646911 ], [ -105.334514529152088, 41.126634717478993 ], [ -105.296907302612894, 41.123952612724182 ], [ -105.289736076989101, 41.122052614307748 ], [ -105.278878750672817, 41.116357659447409 ], [ -105.268113414053389, 41.111932681987717 ], [ -105.246681702999936, 41.105634704312905 ], [ -105.222815799913278, 41.103971761494222 ], [ -105.20524514995769, 41.096452904534438 ], [ -105.198652899188374, 41.095063936754222 ], [ -105.173573927944716, 41.096612949895196 ], [ -105.150098021324965, 41.09981393083573 ], [ -105.103350217496981, 41.097292043903309 ], [ -105.090006707848787, 41.099402025203517 ], [ -105.065148752477057, 41.100073048683669 ], [ -105.043693940535661, 41.103045022095721 ], [ -105.033042531748364, 41.103083036011583 ], [ -105.014967825117793, 41.101114100180503 ], [ -104.989295149106681, 41.107381913793645 ], [ -104.905735958812954, 41.11665116707605 ], [ -104.867031377925002, 41.116921902298749 ], [ -104.860257273091136, 41.114899886452307 ], [ -104.855465199295253, 41.113251877740787 ], [ -104.850865131450561, 41.113957836023438 ], [ -104.837993940377117, 41.116322715290877 ], [ -104.822238703235911, 41.116570605694811 ], [ -104.804683436867279, 41.118851458921135 ], [ -104.775324982572627, 41.123299213421383 ], [ -104.766840850611715, 41.123982151025196 ], [ -104.733889197349299, 41.125046056287012 ], [ -104.726809024236402, 41.126820047415706 ], [ -104.708680583936939, 41.133190007371972 ], [ -104.666992613977513, 41.153857864301038 ], [ -104.655663360361686, 41.157134850205296 ], [ -104.63576491347537, 41.158629866951969 ], [ -104.526509442670957, 41.158341039873285 ], [ -104.443736305606294, 41.156590283447677 ], [ -104.416826590494779, 41.157890360516326 ], [ -104.354088890039193, 41.157539571347499 ], [ -104.35076180969935, 41.158432573100932 ], [ -104.349342760823916, 41.157471587751992 ], [ -104.331390291232154, 41.158939631550751 ], [ -104.232808744774218, 41.158871900621122 ], [ -104.222455520358096, 41.157501918347435 ], [ -104.196117917977816, 41.15089100247603 ], [ -104.177806525265865, 41.148214038954343 ], [ -104.158680139650343, 41.147573051025454 ], [ -104.125414497876974, 41.149484033982887 ], [ -104.117549351291245, 41.150582021546292 ], [ -104.109629224373762, 41.154129977510216 ], [ -104.08991492297352, 41.165623831360755 ], [ -104.081026811172137, 41.174412717155008 ], [ -104.075754712524017, 41.175713700133187 ], [ -104.062791441029148, 41.175209706754089 ], [ -104.053361285601127, 41.18076063299479 ], [ -104.03695797003266, 41.184670579827461 ], [ -103.988037955201804, 41.192520453667903 ], [ -103.883588476437765, 41.192001327797335 ], [ -103.860729928892894, 41.190712316874844 ], [ -103.840832462063773, 41.192120271654318 ], [ -103.798282450171058, 41.191750222725666 ], [ -103.770472792456275, 41.192822171905533 ], [ -103.750475328828514, 41.197331081315404 ], [ -103.690239813773502, 41.213271813586879 ], [ -103.663155124635381, 41.216430749434153 ], [ -103.625571169704131, 41.22043966441872 ], [ -103.605886666724601, 41.221610633375569 ], [ -103.491038710095268, 41.221030600091296 ], [ -103.410805748123963, 41.222320822790671 ], [ -103.386872158516937, 41.222121898462433 ], [ -103.376121876889712, 41.22017696164118 ], [ -103.347641089109985, 41.211330186713127 ], [ -103.316970268901613, 41.205933363661664 ], [ -103.242589334927658, 41.199280719022937 ], [ -103.207637496746031, 41.198410962620848 ], [ -103.162600352756456, 41.192620353593263 ], [ -103.150209999660873, 41.18827250727837 ], [ -103.114769933605444, 41.172304011347698 ], [ -103.084617947638748, 41.153902530116213 ], [ -103.04847678200359, 41.134093125894829 ], [ -103.031119243448657, 41.126403384607414 ], [ -103.022902005075835, 41.123943487157888 ], [ -103.006231454926677, 41.114654772497474 ], [ -103.000501295470471, 41.113464835605413 ], [ -102.973744672456377, 41.113259010565166 ], [ -102.948963095067626, 41.113056172906767 ], [ -102.945080004542774, 41.113022198393296 ], [ -102.92279448660328, 41.112934342724564 ], [ -102.894022862709363, 41.115635476073621 ], [ -102.875452415838623, 41.114605614091012 ], [ -102.849801794487675, 41.112965809546274 ], [ -102.610439549587269, 41.113676240833897 ], [ -102.578212859601933, 41.112807447008919 ], [ -102.562175498244756, 41.11071658821259 ], [ -102.548205152193276, 41.105837783261471 ], [ -102.516290344418891, 41.091327316453814 ], [ -102.48574971020571, 41.084659675823623 ], [ -102.473855475419057, 41.080676854858083 ], [ -102.437728718634006, 41.059708617387265 ], [ -102.430412585165953, 41.057419725050949 ], [ -102.38057675118003, 41.050470250198416 ], [ -102.264225905982585, 41.043231263328309 ], [ -102.250439690311197, 41.041342409953835 ], [ -102.180881675269859, 41.030613050133788 ], [ -102.154910304679817, 41.026363287270762 ], [ -102.136753027532265, 41.035633168623065 ], [ -102.090006325397425, 41.042930259956925 ], [ -102.070307016686996, 41.048679244438837 ], [ -102.05545277986289, 41.053245230755095 ], [ -102.02880234991639, 41.060863224920858 ], [ -102.017473171980043, 41.062343261206323 ], [ -101.985687490289038, 41.063392422769262 ], [ -101.924116735135286, 41.077003486784356 ], [ -101.884908654170601, 41.079662649481151 ], [ -101.82716812199169, 41.093422686986074 ], [ -101.780939922835557, 41.099773811702867 ], [ -101.745165102097332, 41.112342723936116 ], [ -101.735299906481529, 41.114292689475157 ], [ -101.722093629785917, 41.11505168160474 ], [ -101.71505147930354, 41.115093684751017 ], [ -101.71087738871428, 41.114948689949294 ], [ -101.702027203297689, 41.115451685180204 ], [ -101.679733767197561, 41.120411604688258 ], [ -101.620002489463971, 41.1204606454531 ], [ -101.597387985645241, 41.118183699398031 ], [ -101.549260949774649, 41.117591739452052 ], [ -101.536130653185722, 41.115883773703111 ], [ -101.477413094215109, 41.103703133767347 ], [ -101.465853757102764, 41.104252208331317 ], [ -101.438586001726847, 41.109044333386848 ], [ -101.38966453814696, 41.107373706291206 ], [ -101.334380989704769, 41.113413011220558 ], [ -101.270307164763324, 41.116979413787831 ], [ -101.260586896948936, 41.118005467524569 ], [ -101.250462645124657, 41.120676499495055 ], [ -101.223834716166451, 41.133283623023189 ], [ -101.208537133997368, 41.137525736458855 ], [ -101.198008703567524, 41.138654841543463 ], [ -101.126777662597291, 41.138655671032986 ], [ -101.080998742272655, 41.140575170973086 ], [ -100.949905931258073, 41.134747421108123 ], [ -100.940361671248851, 41.133477482152529 ], [ -100.886153133923131, 41.121285901590923 ], [ -100.818371354374136, 41.112749291147047 ], [ -100.774990297130756, 41.1127574513227 ], [ -100.768962141070219, 41.111956484935924 ], [ -100.763912009339961, 41.111177514478435 ], [ -100.754130755651531, 41.109739570306161 ], [ -100.664879197145396, 41.094879072071109 ], [ -100.636306374525176, 41.085461639961203 ], [ -100.61649284210435, 41.084011960407977 ], [ -100.592688171174956, 41.072240498271107 ], [ -100.548252996997149, 41.056173423277833 ], [ -100.525463421825052, 41.051512846051594 ], [ -100.503528877036274, 41.047824241978212 ], [ -100.474901823338243, 41.035712648065889 ], [ -100.419708662808446, 41.018753233516776 ], [ -100.362944428250827, 40.997513826823571 ], [ -100.331403270432176, 40.9929060565903 ], [ -100.307545431608688, 40.98782524690175 ], [ -100.302265290612382, 40.984594315407591 ], [ -100.293461145067184, 40.975026480969369 ], [ -100.280650851998416, 40.965196664620791 ], [ -100.224359363241774, 40.942320217797352 ], [ -100.188119523749208, 40.927084543059657 ], [ -100.176392304169283, 40.918646660455067 ], [ -100.166726065667035, 40.914515729189098 ], [ -100.100356295349457, 40.887885069772295 ], [ -100.082265742840818, 40.883537121195289 ], [ -100.032864263582383, 40.865367208466189 ], [ -100.000377267725881, 40.850696200668445 ], [ -99.986117912053288, 40.843936156736639 ], [ -99.974482623550756, 40.838466119238362 ], [ -99.898789716040739, 40.809977865758476 ], [ -99.844207499530597, 40.779406600535594 ], [ -99.82362303818968, 40.769175496242113 ], [ -99.776563953137327, 40.750025262095114 ], [ -99.7408727612045, 40.741785305005322 ], [ -99.717525565660878, 40.735117584162467 ], [ -99.6812527783907, 40.714137021925737 ], [ -99.666787053788497, 40.708446193574211 ], [ -99.636115484250425, 40.702419553010571 ], [ -99.595387385395213, 40.697438027418713 ], [ -99.563990788023332, 40.6911663925749 ], [ -99.551013114133312, 40.69058654284612 ], [ -99.511872047412325, 40.693348995787531 ], [ -99.473174406132642, 40.69328834934835 ], [ -99.443372253796923, 40.695150589358498 ], [ -99.416645246209811, 40.69275480811261 ], [ -99.380076860512034, 40.689829109923522 ], [ -99.350213710949362, 40.690871351178416 ], [ -99.340356335520667, 40.690241432910788 ], [ -99.31772648483259, 40.684889631831943 ], [ -99.289741417323938, 40.681040874212528 ], [ -99.275412871009109, 40.677902003481783 ], [ -99.218594715950275, 40.672340505575193 ], [ -99.178286200475554, 40.672531850726145 ], [ -99.144837939495176, 40.669961146565953 ], [ -99.093055987965897, 40.66949159204426 ], [ -99.085814714244123, 40.669182655129781 ], [ -99.071471174856654, 40.669522776959717 ], [ -99.017216132632512, 40.669904240827442 ], [ -98.989795110032105, 40.680002401498832 ], [ -98.96679216701142, 40.682844495475933 ], [ -98.951410548392687, 40.686842552125178 ], [ -98.937676997859469, 40.69062260221461 ], [ -98.914650038607292, 40.690382705902401 ], [ -98.868964167338191, 40.695264896097143 ], [ -98.818379161517598, 40.710665079167804 ], [ -98.766543083536718, 40.721553282365107 ], [ -98.7567306846788, 40.722674323572797 ], [ -98.721535448336383, 40.722285263698254 ], [ -98.697356633091957, 40.722094188951594 ], [ -98.667967697908495, 40.727584081558646 ], [ -98.630132593351846, 40.741892920861581 ], [ -98.606090944628519, 40.756712785784018 ], [ -98.588146397244259, 40.76272469619169 ], [ -98.56057254449891, 40.770563563418875 ], [ -98.510004024671034, 40.793802260794912 ], [ -98.500321722827309, 40.796705210173869 ], [ -98.447410018244142, 40.810742927971418 ], [ -98.407064725983147, 40.82305273037926 ], [ -98.400304498929231, 40.823273706073181 ], [ -98.387785054472715, 40.819413675083702 ], [ -98.378644748921928, 40.819962640831456 ], [ -98.342899572701015, 40.825512501720254 ], [ -98.331607186984073, 40.824730464577257 ], [ -98.314532592242372, 40.821442410814043 ], [ -98.282602511170552, 40.820920298883138 ], [ -98.26391688026024, 40.820931232913594 ], [ -98.168600759543011, 40.822251029051024 ], [ -97.997165276723649, 40.822032706116971 ], [ -97.947237622502186, 40.822181716634411 ], [ -97.923014269844728, 40.820690702199393 ], [ -97.825929000573453, 40.821174723840102 ], [ -97.75030502526711, 40.822002748533549 ], [ -97.60187534448653, 40.821131868990044 ], [ -97.597618354464728, 40.821150844487718 ], [ -97.587120380898881, 40.821436788400206 ], [ -97.368230507072084, 40.821390366075029 ], [ -97.101631337462678, 40.822227427658582 ], [ -97.044407727851151, 40.821375980151643 ], [ -96.940795207807, 40.821855537715614 ], [ -96.910680850622995, 40.820679966604658 ], [ -96.872287103011729, 40.820145247543174 ], [ -96.852397168435715, 40.8219338874638 ], [ -96.82611196837739, 40.821883396309744 ], [ -96.787757270509303, 40.817297661947904 ], [ -96.7801509271832, 40.816843519204987 ], [ -96.764227205390583, 40.816103221703884 ], [ -96.756337822758468, 40.818022081530408 ], [ -96.739331971698221, 40.839521896724655 ], [ -96.716083970210519, 40.862412634226601 ] ], [ [ -96.716083970210519, 40.862412634226601 ], [ -96.697131231303246, 40.87274337726295 ], [ -96.681673549605136, 40.886609146808667 ], [ -96.665445881864883, 40.896469887898952 ], [ -96.643479144256347, 40.896820548404335 ], [ -96.573027781880342, 40.897540456637628 ], [ -96.56706061498889, 40.895579378498716 ], [ -96.562635495115273, 40.893920322912429 ], [ -96.558691364085448, 40.893908262791122 ], [ -96.532330340663279, 40.902220784480534 ], [ -96.491382254629997, 40.909548258801621 ], [ -96.463673487220163, 40.92141930367373 ], [ -96.438000779820172, 40.933439324648113 ], [ -96.406354208535831, 40.960337190004189 ], [ -96.388135578198842, 40.971559154649981 ], [ -96.364012164621769, 40.989088064293732 ], [ -96.314246871624135, 41.00609822368353 ], [ -96.309517201277998, 41.00995827126831 ], [ -96.296991380871987, 41.026644422155748 ], [ -96.291528853815961, 41.033449476926563 ], [ -96.296724681984358, 41.05198956529199 ], [ -96.294826133872846, 41.060118613322842 ], [ -96.276577555589967, 41.08223973160451 ], [ -96.253377496166422, 41.094679762271703 ], [ -96.231527695261363, 41.105379791954967 ], [ -96.213735934067785, 41.118898826947586 ], [ -96.16927869744211, 41.136080864305789 ], [ -96.15831584543109, 41.147219883014543 ], [ -96.152112907584169, 41.153257892131492 ], [ -96.139219876416533, 41.161638902458968 ], [ -96.130224863361676, 41.168264909556335 ], [ -96.108915810778598, 41.185194923337718 ], [ -96.104482776466071, 41.188257924793369 ], [ -96.10071373765858, 41.190599925525106 ], [ -96.09654773308624, 41.194719927838236 ], [ -96.091544039144054, 41.211847943127061 ], [ -96.09088723532922, 41.220167951427037 ], [ -96.087149234268949, 41.224657952923508 ], [ -96.072072708692843, 41.222486937923271 ], [ -96.052549096847272, 41.222349921273647 ], [ -96.043141836031239, 41.22394791426791 ], [ -96.023281210303651, 41.223787897083916 ], [ -95.985736061066433, 41.222597842648561 ], [ -95.975619803751812, 41.224428817903728 ], [ -95.957613339489214, 41.227259771881272 ], [ -95.95242517841946, 41.226297759992349 ], [ -95.942063887711271, 41.226389734375061 ], [ -95.932923681997408, 41.229750706650954 ], [ -95.910997091582018, 41.231520646992102 ], [ -95.891663560717049, 41.232408594484625 ] ], [ [ -96.716083970210519, 40.862412634226601 ], [ -96.713046963272944, 40.85471158676858 ], [ -96.712147150310571, 40.836499560825651 ], [ -96.712162234325987, 40.829450555525888 ], [ -96.710667282362792, 40.821492532478679 ] ], [ [ -96.710667282362792, 40.821492532478679 ], [ -96.708515273312457, 40.816682505436752 ] ], [ [ -96.710667282362792, 40.821492532478679 ], [ -96.707112230600544, 40.816640489965948 ] ], [ [ -95.839072022186542, 41.228807471081211 ], [ -95.835691932659159, 41.229170461069657 ], [ -95.827795782331108, 41.233728421605065 ], [ -95.823515791359526, 41.241899374483644 ], [ -95.811659586448343, 41.25001730218542 ], [ -95.800634222918248, 41.263848968906778 ], [ -95.789029877317276, 41.273118730688175 ], [ -95.784284731043371, 41.279965566326631 ], [ -95.774220430925951, 41.295876185872672 ], [ -95.759664038363937, 41.314007738644811 ], [ -95.731228337701438, 41.340113932314907 ], [ -95.727329243897543, 41.342444841682337 ], [ -95.709971830813217, 41.345496597524956 ], [ -95.704387698192591, 41.348136484946338 ], [ -95.671121925864028, 41.380743491312444 ], [ -95.668978877954842, 41.384153402990819 ], [ -95.66715484095289, 41.39371319538639 ], [ -95.656503604453789, 41.405133873830238 ], [ -95.625283927856486, 41.433972053798989 ], [ -95.605935510870196, 41.443912714109828 ], [ -95.589761210217659, 41.476740995929546 ], [ -95.585397152789071, 41.49695160345113 ], [ -95.582543091667873, 41.496821587132267 ], [ -95.576454965765151, 41.498831511824889 ], [ -95.54716533940794, 41.497813339191246 ], [ -95.527182919455186, 41.499991173303833 ], [ -95.404094819622074, 41.497621549755742 ], [ -95.336825057677899, 41.497812206940829 ], [ -95.288819801345127, 41.498948953841797 ], [ -95.252227841025928, 41.497429781839351 ], [ -95.211439371686836, 41.497208677579593 ], [ -95.155270319516788, 41.498299531771607 ], [ -95.133617527998737, 41.498558477016438 ], [ -95.11528286123756, 41.496949441217922 ], [ -95.096140159299367, 41.498238386805085 ], [ -95.059898839237718, 41.496968303921079 ], [ -94.945637777540256, 41.497169701185349 ], [ -94.875238350665796, 41.497459115368983 ], [ -94.78275915391832, 41.496207346744001 ], [ -94.758955338550905, 41.49697714885874 ], [ -94.700481111153593, 41.496848134545282 ], [ -94.687693615995869, 41.496817149478147 ], [ -94.67661515088372, 41.493346162362052 ], [ -94.662515602452459, 41.493166179367201 ], [ -94.598823134479687, 41.49324625613631 ], [ -94.575956290057505, 41.496657280197795 ], [ -94.452638498610568, 41.49588654762838 ], [ -94.241623311938255, 41.493492342130459 ], [ -94.220733636203448, 41.494819411070225 ], [ -94.208694333224656, 41.503539405841664 ], [ -94.196037000371149, 41.513709377668661 ], [ -94.187888764334957, 41.517837375487389 ], [ -94.093478610360066, 41.517539689977305 ], [ -94.077380091101062, 41.519798724758481 ], [ -94.067484774200992, 41.521499743208565 ], [ -94.02619352731999, 41.538658729531875 ], [ -94.012498080286846, 41.540206758474994 ], [ -93.964187595947521, 41.54544886268701 ], [ -93.930723617626455, 41.552978899354521 ], [ -93.861881579549049, 41.565719996731382 ], [ -93.832751775964411, 41.579917955149213 ], [ -93.809062121885702, 41.591728917565327 ], [ -93.790621552026082, 41.592147969635775 ], [ -93.777323139138872, 41.592167009825062 ] ], [ [ -80.675970467467181, 41.147583511305982 ], [ -80.699218301890554, 41.148235528977004 ], [ -80.708740633737122, 41.147163547036719 ], [ -80.735970506604133, 41.134056657712662 ], [ -80.743447744939147, 41.130295682975536 ], [ -80.748345879292614, 41.124981714625285 ], [ -80.752664070273767, 41.1237377145168 ], [ -80.768190875467639, 41.123653676516071 ], [ -80.784571723220665, 41.123268638299741 ], [ -80.793125146342661, 41.120125636930247 ], [ -80.815754272891454, 41.112018635207569 ], [ -80.837881412785151, 41.109356601886738 ], [ -80.850211141567158, 41.124649466301982 ], [ -80.865622992510168, 41.134304358344785 ], [ -80.89273147273768, 41.150905162255761 ], [ -80.919557951654866, 41.175315894109396 ], [ -80.939785040275424, 41.191348700351867 ], [ -80.946484408547832, 41.199736609063415 ], [ -80.950535659968622, 41.213645480037108 ], [ -80.953472821288699, 41.217856434431404 ], [ -80.982267316407999, 41.237326160097851 ], [ -80.990782747456649, 41.240435099532455 ], [ -80.999816197481664, 41.241126057750485 ], [ -81.060228625512067, 41.241983982772076 ], [ -81.089632807264962, 41.244005932828287 ], [ -81.134098595802399, 41.242136899214962 ], [ -81.161535697464473, 41.243456857890642 ], [ -81.212066729757325, 41.243814799131911 ], [ -81.298732399941585, 41.248609771109727 ], [ -81.310062902236027, 41.248785781930096 ], [ -81.345587514329381, 41.2530467687128 ], [ -81.363349358527458, 41.256235742576585 ], [ -81.371428717198057, 41.255880757578979 ], [ -81.391929611258334, 41.254255805289198 ], [ -81.409676374020492, 41.252577849195447 ], [ -81.440477800231974, 41.254583858335039 ], [ -81.472645263059107, 41.255155889457455 ], [ -81.490117119062916, 41.257501882209908 ], [ -81.5013486858184, 41.258554869298507 ], [ -81.539490005783819, 41.256445577372375 ], [ -81.550186710489569, 41.257776471989274 ], [ -81.571481907755953, 41.252634359781524 ], [ -81.585978825539087, 41.252947235962203 ], [ -81.603314058269333, 41.259054013133976 ], [ -81.6259057612437, 41.272244649588977 ], [ -81.636565482824864, 41.275277518430229 ], [ -81.641272809494183, 41.277054454383801 ], [ -81.654411725208831, 41.282479268268013 ], [ -81.666260590338155, 41.28976106616723 ], [ -81.705341166269321, 41.302143550635428 ], [ -81.737829125373793, 41.303447244564062 ], [ -81.745039587784689, 41.305664148251395 ], [ -81.757178271473805, 41.31268692554783 ], [ -81.785255551662615, 41.323020421651258 ], [ -81.791168830634291, 41.325945287872855 ], [ -81.81675895344577, 41.332708794943663 ], [ -81.827822511855103, 41.341230413245931 ], [ -81.83174368388994, 41.342340323704647 ], [ -81.843425149174479, 41.342084154065958 ], [ -81.87976577595694, 41.35547713119324 ], [ -81.910147016367063, 41.357635520335485 ], [ -81.927977833734744, 41.366461827299545 ], [ -81.944122509143966, 41.369227394668997 ], [ -81.961327176560374, 41.367709133539982 ], [ -81.970963578411883, 41.369302869210053 ], [ -81.975464784830848, 41.371721659510214 ], [ -81.986070274051997, 41.377782132904734 ], [ -81.988923397207671, 41.378675026575891 ], [ -82.031566755510909, 41.379608475182103 ], [ -82.058897398450952, 41.377926333080929 ], [ -82.066228852057904, 41.380600123959702 ], [ -82.076232469732503, 41.386592709785027 ], [ -82.099907881850029, 41.3840746443732 ], [ -82.116784881511705, 41.389648192637786 ], [ -82.12504736492842, 41.391845000388045 ], [ -82.163593661482281, 41.389113818535776 ], [ -82.171498136198124, 41.38845378692217 ], [ -82.189589257674086, 41.383932881687812 ], [ -82.210120526260809, 41.380919872693518 ], [ -82.231041837985245, 41.377527882156848 ], [ -82.261751616738579, 41.375830986601102 ], [ -82.279178727011924, 41.362693933060648 ], [ -82.314504765046678, 41.348539097666411 ], [ -82.34387234275907, 41.343683669443081 ], [ -82.372818970183232, 41.334380404102461 ], [ -82.387117689030404, 41.334990526613879 ], [ -82.482413643692141, 41.328880724487377 ], [ -82.49988553882676, 41.328590905661343 ], [ -82.520501705030213, 41.325959231135272 ], [ -82.544444018013124, 41.325428527457191 ], [ -82.579014924698953, 41.322979993194856 ], [ -82.599440023494395, 41.324590191111 ], [ -82.617056988882069, 41.323526419165134 ], [ -82.62174124358836, 41.323541472965147 ], [ -82.681193482796544, 41.335123973699652 ], [ -82.728300100293282, 41.336394549180412 ], [ -82.764616805234823, 41.340693786869295 ], [ -82.797119896211342, 41.346732741408566 ], [ -82.843858430617715, 41.350192727953313 ], [ -82.874911456214704, 41.353591705487268 ], [ -82.899280272628914, 41.358302663713786 ], [ -82.938786577512445, 41.362982626695143 ], [ -82.99993864328458, 41.379061457894011 ], [ -83.026405487632616, 41.382632346491043 ], [ -83.043321039928699, 41.38701125069074 ], [ -83.106540083878997, 41.398721951109877 ], [ -83.136738086980685, 41.408052766332425 ], [ -83.169011183045328, 41.421152534874018 ], [ -83.182378622424451, 41.424112467997219 ], [ -83.246017752824244, 41.4428111011825 ], [ -83.276818667047422, 41.454530086798798 ], [ -83.282959853500302, 41.457849082366181 ], [ -83.297838302553444, 41.465250083778386 ], [ -83.326197104127871, 41.471483175240266 ], [ -83.338274465596214, 41.476465199274244 ], [ -83.390996084853981, 41.500543333081872 ], [ -83.409482706428847, 41.508901277295379 ], [ -83.414433857081875, 41.51011428420933 ], [ -83.430135325147134, 41.513372319202112 ], [ -83.463469391019643, 41.525880286000536 ], [ -83.488960210148534, 41.53640124909677 ], [ -83.51813602814029, 41.540971311072489 ], [ -83.528641342408051, 41.544614288516506 ], [ -83.549699971591153, 41.552587241444279 ], [ -83.571642656037895, 41.564844142521025 ], [ -83.581217938209946, 41.569189122667865 ], [ -83.606585665016993, 41.580060096804175 ], [ -83.618235986771523, 41.584463101346081 ], [ -83.641437593181109, 41.590356162252711 ], [ -83.664845162685694, 41.591829291454289 ], [ -83.691609800701443, 41.591878461373618 ], [ -83.725317603693156, 41.591833676582311 ], [ -83.741651987748753, 41.590627791759132 ], [ -83.782478173430462, 41.595064800295653 ], [ -83.79772263584897, 41.598764768380406 ], [ -83.812432078071851, 41.60247273833167 ], [ -83.844690029583006, 41.600080755424763 ], [ -83.882198140858023, 41.599790755465733 ], [ -83.945142006663758, 41.59967275262445 ], [ -83.989142322381241, 41.597570760160664 ], [ -84.010344778225431, 41.598352718106952 ], [ -84.02729004471432, 41.592363684158393 ], [ -84.037399186605171, 41.591680650607792 ], [ -84.110215188953887, 41.590299392517352 ], [ -84.148919684773944, 41.593412239368853 ], [ -84.176057081801218, 41.590772151638909 ], [ -84.288737097669184, 41.590371876527655 ], [ -84.316302085578471, 41.591690865447831 ], [ -84.343035132433258, 41.587361876424431 ], [ -84.381190008671894, 41.601662811312693 ], [ -84.395608997994927, 41.603878798883819 ], [ -84.504206158260544, 41.607880746647893 ], [ -84.554348501954891, 41.614460608398467 ], [ -84.604138849366862, 41.618370479846604 ], [ -84.638090786429103, 41.616360414759598 ], [ -84.674086766245537, 41.617951326734342 ], [ -84.705505600641615, 41.625672214076644 ], [ -84.717911935213309, 41.627369176364901 ], [ -84.787295101635181, 41.630749121907805 ], [ -84.80569774949771, 41.628479151471296 ], [ -84.81309100763545, 41.628209159943623 ], [ -84.818241178237741, 41.630570154462205 ], [ -84.841785933628742, 41.647309112174312 ], [ -84.845212004171287, 41.659981067503786 ], [ -84.847775081328876, 41.662980060146424 ], [ -84.866506690478076, 41.672638058328602 ], [ -84.886587327798964, 41.686181054889111 ], [ -84.904966931154632, 41.693058076239673 ], [ -84.92084443674581, 41.702309091086406 ], [ -84.95930568149015, 41.718560161573983 ], [ -84.976251185578391, 41.734620189977434 ], [ -84.98405644722402, 41.735539213616065 ], [ -85.00112403892372, 41.734990264238952 ], [ -85.001047031598205, 41.735859263630019 ], [ -85.007487290490602, 41.736302262162091 ], [ -85.026378004582682, 41.747200252890714 ], [ -85.042857670443055, 41.747811250933943 ], [ -85.059994371164819, 41.746659249594643 ], [ -85.0833263116957, 41.748040246899492 ], [ -85.125816111935535, 41.75541019927995 ], [ -85.19659701777239, 41.756321190880662 ], [ -85.222606089585341, 41.75679118719215 ], [ -85.2338065063973, 41.754761201213569 ], [ -85.262456613510068, 41.754570231122308 ], [ -85.268887779585341, 41.751481266991725 ], [ -85.277792096161534, 41.741280285124105 ], [ -85.283788315501553, 41.739602295875514 ], [ -85.311812311462702, 41.742051361664593 ], [ -85.343590440444103, 41.748768447635683 ], [ -85.374955568914615, 41.748681519862203 ], [ -85.388910072211345, 41.750100555764206 ], [ -85.405466774319137, 41.754059568121093 ], [ -85.426745538949874, 41.753880618919126 ], [ -85.476453323695949, 41.753449737627776 ], [ -85.504423223206572, 41.746621794385533 ], [ -85.523421913581785, 41.745411767788532 ], [ -85.548751846267834, 41.747151747551086 ], [ -85.573975886357914, 41.753739693133689 ], [ -85.619158471617396, 41.751290666599594 ], [ -85.645275499030589, 41.754029594857066 ], [ -85.659748934632105, 41.750390633171726 ], [ -85.679982647867362, 41.747330602707692 ], [ -85.705831590282017, 41.746911571887289 ], [ -85.717818015090003, 41.745228550000832 ], [ -85.749992088979667, 41.733719454469572 ], [ -85.768165758480549, 41.72882933326477 ], [ -85.775117043136319, 41.730149303021911 ], [ -85.783700426517626, 41.73519928167233 ], [ -85.800287074115062, 41.734761190872256 ], [ -85.805727285557396, 41.734520160691474 ], [ -85.823619009331793, 41.736672074259118 ], [ -85.84685887221373, 41.731597929142218 ], [ -85.888280485718113, 41.730422705087484 ], [ -85.89423171431703, 41.729957671981552 ], [ -85.904768119161616, 41.729160613620728 ], [ -85.97325182550162, 41.730918256287261 ], [ -86.030604510110763, 41.733313984643075 ], [ -86.041338718118382, 41.732874936438918 ], [ -86.049532861917044, 41.731104896785936 ], [ -86.061984109745538, 41.731139842036853 ], [ -86.089908665275331, 41.731196719199239 ], [ -86.106816023865278, 41.73367964936844 ], [ -86.129650476900878, 41.733759548828097 ], [ -86.136547608178233, 41.733118517271393 ], [ -86.145840763874091, 41.72959447010377 ], [ -86.165258064175504, 41.718230365228727 ], [ -86.180906365628445, 41.716185293409815 ], [ -86.196492680545532, 41.716063225161768 ], [ -86.236044484348994, 41.716482053132076 ], [ -86.240240574100866, 41.71732203608893 ], [ -86.250090802809609, 41.7223690001397 ], [ -86.255920060334645, 41.722509941248397 ], [ -86.292679681101262, 41.722719568901276 ], [ -86.307741404161916, 41.729650428713121 ], [ -86.339297814490706, 41.730436111491784 ], [ -86.346485133757213, 41.730397038839222 ], [ -86.377392519938226, 41.731327728764242 ], [ -86.388906093401175, 41.736004623001719 ], [ -86.40565399325591, 41.746777479386004 ], [ -86.414473418406615, 41.748516395207503 ], [ -86.437729483369665, 41.749005163807517 ], [ -86.451119169038336, 41.754924990292366 ], [ -86.456345413877102, 41.755786930866314 ], [ -86.461953660987717, 41.755386878539902 ], [ -86.498675162110501, 41.744064540456357 ], [ -86.52421894728846, 41.741744154320948 ], [ -86.568356075092794, 41.727434477155086 ], [ -86.591847802470895, 41.726484132458317 ], [ -86.600248037818275, 41.72485600999439 ], [ -86.623892402633686, 41.704812686914138 ], [ -86.636221651619593, 41.697442525749452 ], [ -86.648001850592038, 41.688394380863642 ], [ -86.662925201021451, 41.682054195050803 ], [ -86.672416349998429, 41.674203090042582 ], [ -86.677459495358377, 41.67346302658116 ], [ -86.699860219416323, 41.674233733342959 ], [ -86.707596447251447, 41.673351636118007 ], [ -86.719277763588138, 41.670593495999469 ], [ -86.737947203701069, 41.662823292107404 ], [ -86.755441657956936, 41.658173076255764 ], [ -86.763986844698337, 41.65457195880326 ], [ -86.803988451408927, 41.623252525408603 ], [ -86.854488689518433, 41.607538886252605 ], [ -86.8707549590859, 41.595301749160754 ], [ -86.89736668099971, 41.590330411894747 ], [ -86.931615635717634, 41.585179975851531 ], [ -86.940015865938136, 41.583669872859709 ], [ -86.963316434575802, 41.575448634307911 ], [ -86.9843360012445, 41.570950394744543 ], [ -86.993133260472391, 41.570310281567188 ], [ -87.017837882315831, 41.571759002128481 ], [ -87.045678513202461, 41.573467721593317 ], [ -87.052811680506494, 41.574238646692976 ], [ -87.073488220045121, 41.579681399948534 ], [ -87.111910035478516, 41.578869053072772 ], [ -87.118861159796992, 41.577350001827419 ], [ -87.124484222884305, 41.573901978518407 ], [ -87.130168316336679, 41.572165939507414 ], [ -87.149706745417078, 41.572577752314793 ], [ -87.164844194853032, 41.579871556962509 ], [ -87.195949893437245, 41.581507260089211 ], [ -87.203992134818932, 41.585582161209096 ], [ -87.221936584032861, 41.589334977453035 ], [ -87.224148641889229, 41.589948954205212 ], [ -87.240140874846631, 41.583196846426901 ], [ -87.262083225650002, 41.576742725643655 ], [ -87.300512875338157, 41.569193555981009 ], [ -87.313964116031769, 41.567404490665957 ], [ -87.336615576772644, 41.56764836829808 ], [ -87.356055995011232, 41.569154259970787 ], [ -87.432443558670897, 41.570405851292591 ], [ -87.449227972350272, 41.57447175924063 ], [ -87.479357581637316, 41.574471601941937 ], [ -87.508693266747727, 41.573968439706242 ], [ -87.516055513418493, 41.574567393607232 ], [ -87.524692838068347, 41.577077338521498 ], [ -87.53091805401705, 41.577935298575916 ], [ -87.558659942449239, 41.577946121987253 ], [ -87.581945688629887, 41.577976973705184 ], [ -87.609144589694949, 41.579414796528646 ], [ -87.63635943995331, 41.578399625782581 ], [ -87.672020583396403, 41.578460398040448 ], [ -87.678543848914472, 41.5809933442928 ], [ -87.684610083854821, 41.582790296231806 ], [ -87.702478659538713, 41.582874179547815 ], [ -87.707803803283369, 41.581684151594203 ], [ -87.733286361652233, 41.57059805713407 ], [ -87.74353258387579, 41.566173023502884 ], [ -87.775562251078497, 41.55181079032463 ], [ -87.79249976788212, 41.551196600134453 ], [ -87.821141653606858, 41.550658274884022 ], [ -87.838163251771689, 41.553301065745742 ], [ -87.852941710030933, 41.553068898095695 ], [ -87.911483511423256, 41.551603234928749 ], [ -87.925277822063677, 41.546674095172719 ], [ -87.960023705741378, 41.538453719442501 ], [ -87.979631202065534, 41.533783502981557 ], [ -87.984873310697679, 41.531586447049953 ], [ -87.987863339607372, 41.529023418339023 ], [ -87.99192224289861, 41.520157392418874 ], [ -87.996347270585815, 41.515786349847957 ], [ -88.0020774139482, 41.514077300745939 ], [ -88.073719899305928, 41.512841010620932 ], [ -88.083455198266435, 41.511051975857193 ], [ -88.095761662818148, 41.512390921760947 ], [ -88.124281636541738, 41.511184808855923 ], [ -88.13732007711242, 41.51042175803029 ], [ -88.148169380037729, 41.50701972465454 ], [ -88.167586799805093, 41.491497709093167 ], [ -88.173461972443363, 41.48840770142786 ], [ -88.179604174484183, 41.486869685826569 ], [ -88.197433808303472, 41.486301622006948 ], [ -88.219682600851783, 41.485630542733141 ], [ -88.224793776442908, 41.484790528641156 ], [ -88.228684895762129, 41.482620527152804 ], [ -88.245195344740409, 41.465969571573005 ], [ -88.252054554275517, 41.462436580795469 ], [ -88.297351923667534, 41.461318652164898 ], [ -88.309841276423072, 41.458541690620699 ], [ -88.349538170957331, 41.429561986253304 ], [ -88.414137650318224, 41.393109455843117 ], [ -88.422247829443123, 41.388581520336558 ], [ -88.43772116840519, 41.380070645804963 ], [ -88.44559437321513, 41.378430684767608 ], [ -88.557107994563381, 41.376852096157982 ], [ -88.593760685476653, 41.376333253659467 ], [ -88.706204818485077, 41.375143733900927 ], [ -88.762991973332959, 41.375242948077066 ], [ -88.778945367585948, 41.376203976881641 ], [ -88.796698806121498, 41.377234009512613 ], [ -88.816887302020689, 41.376158076224591 ], [ -88.836258778825709, 41.375872130384373 ], [ -88.844749986644857, 41.374594169216813 ], [ -88.857804302729093, 41.368971276692626 ], [ -88.874634717317136, 41.368476326758397 ], [ -89.059278196247277, 41.367862004215887 ], [ -89.077902630673037, 41.37164306819821 ], [ -89.096915074445704, 41.372474170354394 ], [ -89.102851213820799, 41.371322218436937 ], [ -89.108649351701871, 41.367824292079753 ], [ -89.115577515544459, 41.365554357889778 ], [ -89.125815755541524, 41.365364419267422 ], [ -89.158119512954755, 41.364830611870985 ], [ -89.164604665054839, 41.364719650518403 ], [ -89.201242523607036, 41.364723862154406 ], [ -89.21895793365475, 41.367614936272076 ], [ -89.251154677261027, 41.374104062851195 ], [ -89.277675365614584, 41.387395091343087 ], [ -89.307965176993861, 41.399064163459933 ], [ -89.318630467828768, 41.400346214954745 ], [ -89.382979226285883, 41.40030459348835 ], [ -89.407683901631799, 41.400414737828548 ], [ -89.427444432476562, 41.397084878922989 ], [ -89.438850745121897, 41.39771794090958 ], [ -89.469155577820388, 41.399435106076609 ], [ -89.480469881631279, 41.398222180886307 ], [ -89.500116404619618, 41.395517313934008 ], [ -89.517793900608865, 41.389196299297119 ], [ -89.527751188265341, 41.387254281456514 ], [ -89.545870728124456, 41.387335223020457 ], [ -89.562542251835168, 41.394094113974219 ], [ -89.57040748800452, 41.394747082053186 ], [ -89.640470565283678, 41.393803855333744 ], [ -89.667784366174999, 41.390176803111238 ], [ -89.677466646523897, 41.387406802180749 ], [ -89.685462883879381, 41.387135779694326 ], [ -89.701996376041365, 41.387074727712054 ], [ -89.717811843650765, 41.385625694787151 ], [ -89.736787413262206, 41.387665609487939 ], [ -89.810596376458534, 41.386265433714058 ], [ -89.835668445314511, 41.38879533718287 ], [ -89.856863352093868, 41.393460220738049 ], [ -89.904953406849117, 41.404594944100658 ], [ -89.933435626608102, 41.415825711870198 ], [ -89.93911186797277, 41.416786683063542 ], [ -89.956652609444276, 41.415653651806508 ], [ -89.968173090564193, 41.40857372179768 ], [ -89.975040379070009, 41.405845742672831 ], [ -90.000134442154391, 41.405143687029856 ], [ -90.037520063853421, 41.413456659891388 ], [ -90.126093896854599, 41.415424859000822 ], [ -90.134654274050575, 41.417434859165674 ], [ -90.148280893238947, 41.425220813741895 ], [ -90.157467313576589, 41.430595785144014 ], [ -90.176312175439989, 41.440094749685841 ], [ -90.194211962088005, 41.440895800140865 ], [ -90.325839690493154, 41.440315769642623 ], [ -90.329944869567868, 41.440475756691249 ], [ -90.336628245032074, 41.454975627863902 ], [ -90.337803312561874, 41.457779603290071 ], [ -90.338627414758392, 41.469047515680167 ], [ -90.338459464271153, 41.478683443252194 ], [ -90.338490493484187, 41.483410407398445 ], [ -90.338833518608183, 41.485145393292456 ], [ -90.338619539946976, 41.490341354589305 ], [ -90.338780692255781, 41.505085218963103 ], [ -90.340855892611998, 41.511478134828693 ], [ -90.341314333477584, 41.535815835710181 ], [ -90.34266479126704, 41.559142546536584 ], [ -90.34547995871921, 41.562354499487235 ], [ -90.358359603981597, 41.570464364999395 ], [ -90.362066837596245, 41.575911288361588 ], [ -90.364432988565795, 41.579581237120266 ], [ -90.367202168679896, 41.584174173552313 ], [ -90.372352484634121, 41.591742067306093 ], [ -90.376441676397249, 41.594092027607232 ], [ -90.410058000534136, 41.597642893644071 ], [ -90.525114288616919, 41.596273346363624 ], [ -90.559004493086647, 41.594670931084778 ], [ -90.569953897948423, 41.596310770329424 ], [ -90.593185755733373, 41.599850427821089 ], [ -90.619401696697338, 41.600083087832125 ], [ -90.646890691536996, 41.601703713614576 ], [ -90.665583373170605, 41.603809445886952 ], [ -90.677218783838853, 41.602809309026888 ], [ -90.683017996550092, 41.603729222394847 ], [ -90.724111469915641, 41.604319685354191 ], [ -90.797271902809058, 41.61966858635077 ], [ -90.838319241484882, 41.632977906599415 ], [ -90.899791127629172, 41.632855169914883 ], [ -90.92901303836716, 41.634315795864097 ], [ -91.016135732176878, 41.633215717150648 ], [ -91.024269000045408, 41.633494589762961 ], [ -91.035552399915161, 41.636076375713209 ], [ -91.076050834779551, 41.643945627660997 ], [ -91.11416910824596, 41.645024030301414 ], [ -91.163990781970142, 41.64666424434656 ], [ -91.197614099335141, 41.657252539483494 ], [ -91.239417629887001, 41.663401785841941 ], [ -91.30761876501856, 41.663110577389766 ], [ -91.354106227464612, 41.664040710151561 ], [ -91.366229657178351, 41.666161446514266 ], [ -91.378277078646519, 41.667988189648632 ], [ -91.395138572715439, 41.666827904349795 ], [ -91.434217824323582, 41.668158162037571 ], [ -91.48120077316311, 41.684735953843187 ], [ -91.486739996204307, 41.686345817656999 ], [ -91.499214402960021, 41.686707579409074 ], [ -91.535569134781881, 41.687195987317239 ], [ -91.548860343850833, 41.685455811119361 ], [ -91.564790658946521, 41.685634553246132 ], [ -91.600191556534725, 41.693644830524732 ], [ -91.608393723900733, 41.694045692756127 ], [ -91.620280956708541, 41.694258500406136 ], [ -91.6383553071459, 41.694453210550073 ], [ -91.660968725016446, 41.693842864103871 ], [ -91.717182832672719, 41.695321947267942 ], [ -91.738210222987647, 41.694790624104023 ], [ -91.780080946059812, 41.687660939700798 ], [ -91.834007090606107, 41.687342827361093 ], [ -91.907555662992721, 41.687528300059576 ], [ -91.910973722010695, 41.686658242382421 ], [ -91.915246828038022, 41.687589139744681 ], [ -91.938959338457806, 41.687889643904768 ], [ -91.96100079301344, 41.686837202364501 ], [ -92.00472571259877, 41.687187300221105 ], [ -92.008296762829744, 41.686347245402125 ], [ -92.012416844769191, 41.687167156814674 ], [ -92.050663506840948, 41.687456437654028 ], [ -92.145735214533602, 41.695683495560694 ], [ -92.299805561361779, 41.695714634875017 ], [ -92.357606235169143, 41.695560624735371 ], [ -92.441591213608774, 41.696120136257555 ], [ -92.45495837234715, 41.695040930986004 ], [ -92.501978940719255, 41.694548125126452 ], [ -92.551829974605425, 41.696526337954175 ], [ -92.707648246619442, 41.694976085007958 ], [ -92.726867640149308, 41.696134775611078 ], [ -92.766358458219429, 41.695394245615979 ], [ -92.859476329561232, 41.694844082873445 ], [ -92.89207011153249, 41.683323877307309 ], [ -92.903026343922221, 41.682441750586136 ], [ -92.94285218347207, 41.679943273351547 ], [ -93.013731790023655, 41.682837330337051 ], [ -93.077096020301525, 41.683351616814555 ], [ -93.08532032153235, 41.682413536990445 ], [ -93.09867981031654, 41.680872406825493 ], [ -93.14131428878035, 41.683228902464791 ], [ -93.166614155287689, 41.685948590881303 ], [ -93.179951583136315, 41.690560394229962 ], [ -93.201741280187349, 41.698960069956179 ], [ -93.206670448711805, 41.699769008603525 ], [ -93.246603933226183, 41.692268646182427 ], [ -93.298973847876042, 41.682357679124145 ], [ -93.348391585278051, 41.680908674331661 ], [ -93.401303437128817, 41.680427659523701 ], [ -93.455595343466058, 41.669959728874133 ], [ -93.463919632735255, 41.66743874699138 ], [ -93.481780248490438, 41.66220878397224 ], [ -93.494933699822354, 41.661930780922155 ], [ -93.507897153978064, 41.662128766466424 ], [ -93.52160763834496, 41.660148764243942 ], [ -93.575610533045918, 41.652038760474525 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I805\", \"DIST_MILES\": 27.890000, \"DIST_KM\": 44.880000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -117.222869408300028, 32.903622092678397 ], [ -117.214007442508105, 32.894802927113638 ], [ -117.205518099017453, 32.890621688352375 ], [ -117.202955989361911, 32.887634651210277 ], [ -117.198417933899336, 32.875259728305466 ], [ -117.185582292927535, 32.861068539425176 ], [ -117.177360261567372, 32.847938506900263 ], [ -117.168979283472765, 32.834053490219226 ], [ -117.161542942246328, 32.821678481886572 ], [ -117.151903215738102, 32.808494418469628 ], [ -117.149325155489251, 32.803505433577527 ], [ -117.147731258600061, 32.789459674716547 ], [ -117.145565991519916, 32.786319666577214 ], [ -117.135490084079663, 32.778019498752812 ], [ -117.130929592404826, 32.771717479267927 ], [ -117.127489763447755, 32.766124483745699 ], [ -117.123989188240458, 32.755199602589492 ], [ -117.121944996660389, 32.749092669477477 ], [ -117.116133793606423, 32.741993648209011 ], [ -117.110786552431051, 32.732486700817759 ], [ -117.10343466645412, 32.727173587012466 ], [ -117.1016494337171, 32.719040724368853 ], [ -117.101192750398894, 32.713722837503965 ], [ -117.093840005226937, 32.704124828067123 ], [ -117.092894785414728, 32.689553148182505 ], [ -117.087014496639483, 32.683987090534444 ], [ -117.078800240958628, 32.666070255193382 ], [ -117.073353885421739, 32.658734255556759 ], [ -117.067702532492447, 32.652573221511489 ], [ -117.05761929997584, 32.645974056313186 ], [ -117.055301035766519, 32.64153008902678 ], [ -117.047559182801024, 32.635341990624454 ], [ -117.042959546011005, 32.628948998012461 ], [ -117.036110867854916, 32.610516224156321 ], [ -117.035569165244837, 32.605672323552326 ], [ -117.036416639087349, 32.585496835888769 ], [ -117.040101337193619, 32.567739380095745 ], [ -117.041879233903813, 32.55796667173761 ], [ -117.041505415834294, 32.555303723916047 ], [ -117.040193919910053, 32.549890812448169 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I81\", \"DIST_MILES\": 812.730000, \"DIST_KM\": 1307.970000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -76.143251129084021, 43.051153841721245 ], [ -76.142595113454689, 43.047446803694918 ], [ -76.142580104594629, 43.044386771077299 ], [ -76.142572100010881, 43.04280375420403 ], [ -76.143015078137395, 43.034060659884751 ], [ -76.140444041235298, 43.027270593361258 ], [ -76.140352021031433, 43.020212518240506 ], [ -76.138825993563742, 43.013739452648423 ], [ -76.134164946378846, 43.006537386420156 ], [ -76.134477938069509, 43.002562343249785 ], [ -76.133737015801501, 42.98794040303715 ], [ -76.131266078203666, 42.977526480598577 ], [ -76.137583245437128, 42.959208597454278 ], [ -76.139482355167416, 42.945437691757618 ], [ -76.125589398703809, 42.929796819213742 ], [ -76.110315602919144, 42.892700083815498 ], [ -76.11078874920392, 42.873447211288934 ], [ -76.117685876640039, 42.860267297651639 ], [ -76.123599041212771, 42.841358425931645 ], [ -76.125682203304152, 42.820499569405506 ], [ -76.121921280370003, 42.808078652247872 ], [ -76.123187351387102, 42.79911071428171 ], [ -76.126635519948195, 42.777942862595815 ], [ -76.1374777812171, 42.746331129815509 ], [ -76.149380032220392, 42.706238775516979 ], [ -76.157932128718713, 42.693768980892536 ], [ -76.167210274926845, 42.672498322500338 ], [ -76.173840352241584, 42.662641482299811 ], [ -76.171940395541426, 42.652921631109812 ], [ -76.174252468686092, 42.640661823210117 ], [ -76.172977512398973, 42.631330966734438 ], [ -76.176670554888986, 42.626002052170847 ], [ -76.180370601455024, 42.619933148802339 ], [ -76.180675636992234, 42.613371250405081 ], [ -76.176609640893886, 42.60949930752048 ], [ -76.166180601586078, 42.609171305745988 ], [ -76.160908582535797, 42.608942305885428 ], [ -76.157787583387275, 42.606512341774994 ], [ -76.153049604510187, 42.599062455242937 ], [ -76.140102574867868, 42.595702500657708 ], [ -76.132153570349487, 42.591200567342817 ], [ -76.126514582871948, 42.585070661360234 ], [ -76.115192652525835, 42.56441098415285 ], [ -76.10882266228505, 42.558563075221443 ], [ -76.098553663330335, 42.552150174946583 ], [ -76.090290695617583, 42.541103350279151 ], [ -76.086033759717211, 42.52632158712386 ], [ -76.080868783113999, 42.518913706151636 ], [ -76.078754842298139, 42.506332908860045 ], [ -76.071758798845437, 42.491063111113327 ], [ -76.060482699981023, 42.481465222917542 ], [ -76.050701590730242, 42.470643351276202 ], [ -76.037289373651362, 42.448552617271261 ], [ -76.031635299376319, 42.44226169661691 ], [ -76.019604107145199, 42.425763906284878 ], [ -76.01460593967488, 42.409143112541237 ], [ -76.002803737076718, 42.39409431459854 ], [ -75.996341572318528, 42.383154454768352 ], [ -75.99395332185243, 42.359274755883362 ], [ -75.990184215589679, 42.353193840071654 ], [ -75.979059964110334, 42.341906015038482 ], [ -75.978769928745308, 42.338446062596915 ], [ -75.978807805276162, 42.324835246430972 ], [ -75.971987677665595, 42.320704329690507 ], [ -75.953150358960926, 42.312625527519046 ], [ -75.92499682715453, 42.29335797928433 ], [ -75.928307743850951, 42.279537189664353 ], [ -75.919770471922149, 42.261177560143835 ], [ -75.918778317669876, 42.24696776733056 ], [ -75.914857084917116, 42.233516839593925 ], [ -75.913780999967386, 42.228347864064951 ], [ -75.907867833352469, 42.222034934971219 ], [ -75.899338472215945, 42.204888065006415 ], [ -75.898720359606486, 42.197678093607308 ], [ -75.902618230109454, 42.184598098191614 ], [ -75.896827945733577, 42.171006196871936 ], [ -75.896109844568628, 42.16481522382508 ], [ -75.896353833676017, 42.163796224707532 ], [ -75.897712701565922, 42.153146245380789 ], [ -75.896781636712873, 42.149731265692729 ], [ -75.901351583908635, 42.140694247959495 ], [ -75.905783426401072, 42.124104253433238 ], [ -75.909865417629788, 42.118191228263449 ], [ -75.908553352642741, 42.115250251045254 ], [ -75.905089286770391, 42.1150902884402 ], [ -75.897345145729147, 42.115136370855055 ], [ -75.88539793343385, 42.115453497254585 ], [ -75.869688571436711, 42.110387683581678 ], [ -75.860357389811881, 42.109563787281317 ], [ -75.851133180702575, 42.106938897330195 ], [ -75.839353001516713, 42.108812017365857 ], [ -75.826344663147921, 42.102693185173976 ], [ -75.817601421945213, 42.097975302301045 ], [ -75.813237283768203, 42.094705365528327 ], [ -75.809041038772492, 42.085554454906024 ], [ -75.801403696227609, 42.074827592414984 ], [ -75.798641466355335, 42.06545066952291 ], [ -75.798915250968051, 42.053816722768744 ], [ -75.793368946735839, 42.043672838303436 ], [ -75.792681908981578, 42.042429852680996 ], [ -75.783129301542303, 42.021334075094806 ], [ -75.781367229549318, 42.019564105957777 ], [ -75.768037861236635, 42.015212294416052 ], [ -75.762628683646014, 42.012122378724015 ], [ -75.754640359917133, 42.004729520125835 ], [ -75.752115222303686, 41.997950576219637 ], [ -75.749261239275953, 41.987429606005563 ], [ -75.741853283640296, 41.975631758568056 ], [ -75.73867933246386, 41.967028820392827 ], [ -75.736673377389977, 41.959960857833948 ], [ -75.7380694427886, 41.951960818875484 ], [ -75.730371588019665, 41.930407968071265 ], [ -75.731782749794533, 41.910209916557882 ], [ -75.725763945378688, 41.885761025526584 ], [ -75.722635982396312, 41.881580090692914 ], [ -75.721308038981206, 41.875042113576974 ], [ -75.716685089112175, 41.869999211031043 ], [ -75.688052254162315, 41.859180835530381 ], [ -75.684565297487083, 41.855980909719932 ], [ -75.679980627144545, 41.826912981997033 ], [ -75.681620733541791, 41.81634193483567 ], [ -75.687998819545143, 41.804901781657676 ], [ -75.683574129440132, 41.778290852816632 ], [ -75.686710253514988, 41.764252768993124 ], [ -75.676952556208491, 41.741329955661122 ], [ -75.674884732471824, 41.719688963776534 ], [ -75.670780803980421, 41.713719044993773 ], [ -75.669353847405276, 41.708871068496926 ], [ -75.670566852262766, 41.707063038249181 ], [ -75.669254900973272, 41.701253057559498 ], [ -75.670620911994718, 41.698529022263486 ], [ -75.676662900187978, 41.695461881584414 ], [ -75.686855923345036, 41.685829636008144 ], [ -75.688526949897692, 41.681660591017582 ], [ -75.68171403925254, 41.674068730464576 ], [ -75.675053154681223, 41.661991859102244 ], [ -75.659032253983312, 41.654752208073042 ], [ -75.658353308932661, 41.646241209078283 ], [ -75.655987338296384, 41.642350256076533 ], [ -75.644162425903772, 41.63084150506976 ], [ -75.643315441061915, 41.628190519985139 ], [ -75.644864528390727, 41.611333457336002 ], [ -75.654057683913308, 41.584790203828845 ], [ -75.653386750568316, 41.573281200017384 ], [ -75.650021779338033, 41.566781266383721 ], [ -75.652882833876433, 41.558843187564307 ], [ -75.650532932193343, 41.540200210722531 ], [ -75.653234015150232, 41.52821112853843 ], [ -75.659437092564531, 41.521320973712264 ], [ -75.680013373382309, 41.497238500401934 ], [ -75.681020369071419, 41.493351531450855 ], [ -75.678716333595872, 41.487224668914742 ], [ -75.678953323027017, 41.483131720280845 ], [ -75.68007433039206, 41.482956697652803 ], [ -75.682256331617069, 41.47842071246032 ], [ -75.681249314499723, 41.475124780775197 ], [ -75.675596264692729, 41.471001961457382 ], [ -75.668646212372138, 41.468175150622223 ], [ -75.666647179745524, 41.460225299363806 ], [ -75.660818137794678, 41.457021464983093 ], [ -75.638403002352774, 41.450273019154437 ], [ -75.630070954696606, 41.44584824364717 ], [ -75.629552941382656, 41.435873368896637 ], [ -75.62269390658183, 41.430716564629464 ], [ -75.61003685251093, 41.424879878233263 ], [ -75.609372848694818, 41.420530937012813 ], [ -75.616177869791457, 41.413523880788645 ], [ -75.632550918683663, 41.40551266157896 ], [ -75.64028693387263, 41.397913608255934 ], [ -75.645772949056607, 41.396429526014046 ], [ -75.647519953684281, 41.395864501136572 ], [ -75.663563978560589, 41.383978365101349 ], [ -75.669812975306073, 41.375589367584823 ], [ -75.68412600330845, 41.371641177079674 ], [ -75.686346008418553, 41.371305144110423 ], [ -75.707845014131394, 41.357282992926542 ], [ -75.715032025930043, 41.355714900328159 ], [ -75.722440039815581, 41.354505799580267 ], [ -75.729429017745375, 41.346250821170926 ], [ -75.738629972481263, 41.333425890837162 ], [ -75.737767921952582, 41.324175058139453 ], [ -75.739651899204006, 41.319326111809914 ], [ -75.747639883238818, 41.314299082762489 ], [ -75.758420913667422, 41.312231086173945 ], [ -75.762463922090177, 41.310480115173803 ], [ -75.768475908815304, 41.303389237093796 ], [ -75.79745988477103, 41.275663724962442 ], [ -75.80798089989284, 41.269415838610122 ], [ -75.819661880165626, 41.256255079572369 ], [ -75.820271850545581, 41.250827178175022 ], [ -75.823437866680052, 41.245402257667976 ], [ -75.836995952230808, 41.239074345195654 ], [ -75.852003058324783, 41.233199419808436 ], [ -75.87297621962135, 41.227317484934865 ], [ -75.881590308644917, 41.220946553914011 ], [ -75.888784410323098, 41.211021659191061 ], [ -75.893133452849426, 41.209697668968182 ], [ -75.896841490178957, 41.208499677688003 ], [ -75.903921580071, 41.203227724606712 ], [ -75.91666274857846, 41.194640792459218 ], [ -75.918112794550183, 41.189635839436029 ], [ -75.921354854947424, 41.185332875147203 ], [ -75.942939141096431, 41.177093902974683 ], [ -75.947356233845241, 41.171592940033335 ], [ -75.954253336999244, 41.168613946822255 ], [ -75.955886371355334, 41.166804957380847 ], [ -75.955634428780442, 41.159782016663534 ], [ -75.963515652758247, 41.145542106198789 ], [ -75.961737979633298, 41.106445428997304 ], [ -75.963798203658726, 41.085194588116671 ], [ -75.966270288351964, 41.080414610584668 ], [ -75.969436368068727, 41.077576612428416 ], [ -75.982513651139413, 41.071613570648019 ], [ -75.990150890189227, 41.061653588154172 ], [ -75.999696116468002, 41.056904551173666 ], [ -76.013169463290623, 41.046555702333826 ], [ -76.014459559606735, 41.039673757693741 ], [ -76.010041632772314, 41.026012822037039 ], [ -76.008859805250268, 41.008392932948802 ], [ -76.006638839766993, 41.001965960122135 ], [ -76.008736906964245, 40.99899401535184 ], [ -76.016291052497579, 40.997167115303647 ], [ -76.024118247342486, 40.992372287787092 ], [ -76.034014543306355, 40.983895557901391 ], [ -76.035349609739157, 40.981099632821376 ], [ -76.027811706381357, 40.964486984046438 ], [ -76.024958949008649, 40.942801492710203 ], [ -76.021509950105113, 40.936865621842351 ], [ -76.011881843656681, 40.927176822235786 ], [ -76.012079918026728, 40.921553962588789 ], [ -76.028811619338313, 40.902145485625041 ], [ -76.029353725914362, 40.895778639573443 ], [ -76.019542550718256, 40.887988809077754 ], [ -76.017734540783522, 40.884696886727703 ], [ -76.018161600749124, 40.881076976192425 ], [ -76.022212798045317, 40.875496117648801 ], [ -76.037350392590909, 40.867119332309287 ], [ -76.045773862800289, 40.854767624415125 ], [ -76.055600310443893, 40.847958779914748 ], [ -76.065206927390079, 40.832521120358876 ], [ -76.105544926107498, 40.809839539311625 ], [ -76.123757993729129, 40.796090766617276 ], [ -76.129899326305846, 40.793039807649365 ], [ -76.146067133601051, 40.788259847858896 ], [ -76.161623856369815, 40.786130836555444 ], [ -76.172008439327556, 40.781659878700886 ], [ -76.197918788495087, 40.775129892052988 ], [ -76.224074034608705, 40.772928826346089 ], [ -76.253753376353671, 40.770997705959346 ], [ -76.26089465228911, 40.768949646205684 ], [ -76.28784303303631, 40.752698487947669 ], [ -76.310801039372109, 40.731668459993131 ], [ -76.329219647629003, 40.725339300969544 ], [ -76.345936256408507, 40.71629120235891 ], [ -76.357967696680873, 40.709920129680853 ], [ -76.370885291703189, 40.695581154978804 ], [ -76.384809076944649, 40.671598299938708 ], [ -76.397596692652684, 40.656709335279089 ], [ -76.402380882727527, 40.653730312907193 ], [ -76.425948734466346, 40.644708125262412 ], [ -76.435074130908774, 40.637399105384205 ], [ -76.445518521519404, 40.632978028392017 ], [ -76.44812863895838, 40.630719025092141 ], [ -76.448959722632154, 40.627260061837461 ], [ -76.447670719924119, 40.625089108797333 ], [ -76.437759500520599, 40.620149307753131 ], [ -76.424538237604168, 40.611718598548279 ], [ -76.422462306876128, 40.603689736602561 ], [ -76.412582129620077, 40.596090971758684 ], [ -76.412247247685684, 40.588251084168 ], [ -76.405907194082189, 40.57960028700942 ], [ -76.40795132939148, 40.575159321183598 ], [ -76.426133017145645, 40.567580185797112 ], [ -76.430802241999118, 40.56280019015113 ], [ -76.431672367801085, 40.556872260403765 ], [ -76.428887659936336, 40.534022612025602 ], [ -76.432000859458867, 40.527949654776023 ], [ -76.437342079475869, 40.524931626139981 ], [ -76.459932899341538, 40.519129409356182 ], [ -76.474315399610006, 40.516947250724826 ], [ -76.480762633716651, 40.515452186812112 ], [ -76.506466568452396, 40.499720061196847 ], [ -76.521855783821721, 40.493471935455695 ], [ -76.529026952942601, 40.486657934231772 ], [ -76.530164062689522, 40.481009000525646 ], [ -76.519757193923965, 40.470950289816763 ], [ -76.51722439238209, 40.459792485410119 ], [ -76.516462569883487, 40.450251633194313 ], [ -76.51888899203675, 40.428332916454373 ], [ -76.521284052214369, 40.425471925842437 ], [ -76.541266183537047, 40.421130723599006 ], [ -76.564978361230629, 40.414221512283632 ], [ -76.581465405919928, 40.414019298272223 ], [ -76.590773450722281, 40.412669196248338 ], [ -76.61265469461776, 40.399432111956351 ], [ -76.634794839150089, 40.391950940760417 ], [ -76.6444309137039, 40.387422887262247 ], [ -76.660613027019494, 40.380121794677798 ], [ -76.670669075854079, 40.377088714463952 ], [ -76.690093196572775, 40.367929614504646 ], [ -76.703048244374841, 40.364419507740365 ], [ -76.720115358251462, 40.353154477424972 ], [ -76.735793400984932, 40.348897352284396 ], [ -76.750884484926857, 40.340001320266502 ], [ -76.760902665205748, 40.331445400458577 ], [ -76.791420063442828, 40.326040302547561 ], [ -76.807404259902682, 40.32525021757889 ], [ -76.815621365473262, 40.322999206042404 ], [ -76.823487468704158, 40.318708232591284 ], [ -76.835160618661305, 40.308381342733064 ], [ -76.839218665854361, 40.306428352833926 ], [ -76.858551879741754, 40.301439326579136 ], [ -76.877130083873084, 40.301370218514677 ], [ -76.880906127551327, 40.302297179641677 ], [ -76.890474251815874, 40.308770006246363 ], [ -76.900262375776265, 40.311611896383539 ], [ -76.914621563359077, 40.315224744492262 ], [ -76.920900647569937, 40.316696679763844 ], [ -76.930696759345523, 40.31478965620137 ], [ -76.954995996109275, 40.305443686095536 ], [ -76.974215178503542, 40.299725681491793 ], [ -76.979151206875571, 40.296360716699034 ], [ -76.981470203022155, 40.292919768714903 ], [ -76.9848351051414, 40.277967034132651 ], [ -76.990885142458922, 40.275350050335113 ], [ -77.005762315905585, 40.274327957484566 ], [ -77.011652397836983, 40.273335914694165 ], [ -77.036532771619378, 40.271637686137986 ], [ -77.044070861551234, 40.268769661584244 ], [ -77.059200030175433, 40.261788634996336 ], [ -77.074443160937207, 40.250889680284118 ], [ -77.083599315324406, 40.246296694223936 ], [ -77.094051493063887, 40.243470654147238 ], [ -77.115360837996064, 40.242008463659808 ], [ -77.12172394726062, 40.239510457526528 ], [ -77.127652056176501, 40.234337521439294 ], [ -77.13460218229153, 40.227982602445721 ], [ -77.139592270112786, 40.223889648404949 ], [ -77.148991423747177, 40.220356631982199 ], [ -77.152783488220223, 40.217388662533118 ], [ -77.158764611836261, 40.199148037935586 ], [ -77.164189701318122, 40.193387115971809 ], [ -77.169552783212112, 40.191160108957853 ], [ -77.186590036083103, 40.188183987071596 ], [ -77.191114102689795, 40.187840943880346 ], [ -77.23138269764803, 40.186108527343599 ], [ -77.238126796649837, 40.184552486715248 ], [ -77.256971976877097, 40.174946542254105 ], [ -77.29086205315339, 40.160656710676243 ], [ -77.301871074228956, 40.153477820549085 ], [ -77.318755111833411, 40.145729913539164 ], [ -77.349997177062662, 40.128679139280052 ], [ -77.36959721640352, 40.117200293134751 ], [ -77.38654224407631, 40.104299487447285 ], [ -77.408042293329473, 40.094888578868421 ], [ -77.41885231137006, 40.087091689018514 ], [ -77.444304375922925, 40.078428737385835 ], [ -77.475096445269841, 40.063897875250454 ], [ -77.478118449521489, 40.061471909181073 ], [ -77.47949845063998, 40.060048931192426 ], [ -77.493308447524143, 40.040652256188608 ], [ -77.507666558642015, 40.028563429692092 ], [ -77.533545930934096, 40.015051591831082 ], [ -77.547989141237437, 40.003779771375136 ], [ -77.567688643661327, 39.984202974634357 ], [ -77.578156044641432, 39.963550204646687 ], [ -77.58283322671376, 39.953601319307992 ], [ -77.586045300491747, 39.951183340367848 ], [ -77.591599397354855, 39.949691341464515 ], [ -77.608475645263624, 39.949382288906492 ], [ -77.613709738933295, 39.947643295234194 ], [ -77.618691847383673, 39.943984329243797 ], [ -77.632425143552425, 39.933483432035011 ], [ -77.63616323616796, 39.929130481960833 ], [ -77.638986349680664, 39.920970589035846 ], [ -77.648958589765101, 39.9090007319679 ], [ -77.662027827127602, 39.901111811949903 ], [ -77.669206988732455, 39.89245992073203 ], [ -77.68147531260675, 39.869862227713575 ], [ -77.689524565956418, 39.847741543703151 ], [ -77.698352782799475, 39.83017079574801 ], [ -77.713329210593756, 39.786455449622643 ], [ -77.724521455368233, 39.761125838189507 ], [ -77.726765498686248, 39.756605908512519 ], [ -77.728710540812543, 39.751764984208357 ], [ -77.726154399788783, 39.727950481268046 ], [ -77.732441412942649, 39.721102619747455 ], [ -77.740352446369059, 39.714667743926334 ], [ -77.7427864396643, 39.709300851075255 ], [ -77.742161410645053, 39.70489794288153 ], [ -77.735477293246149, 39.694919163322169 ], [ -77.733127229052428, 39.687576322580377 ], [ -77.735096153807035, 39.670593672742342 ], [ -77.73992516602496, 39.663345807540225 ], [ -77.749592220669527, 39.653125981753576 ], [ -77.771602477879199, 39.632695328848087 ], [ -77.779888549278269, 39.620328550527034 ], [ -77.785511624284808, 39.61710859662967 ], [ -77.797001792181646, 39.613335634059602 ], [ -77.803104850182365, 39.605576767152698 ], [ -77.811886912987433, 39.590826027311422 ], [ -77.815700958017132, 39.587736074430275 ], [ -77.822408052690861, 39.585138101305972 ], [ -77.830357179060371, 39.584593083423115 ], [ -77.84653244984986, 39.58574100332234 ], [ -77.866300743919837, 39.58056803134086 ], [ -77.876912912598641, 39.579588011487409 ], [ -77.882199982145679, 39.576677047253654 ], [ -77.891210070256605, 39.566778200175975 ], [ -77.905058237764038, 39.557058329130264 ], [ -77.916899306482506, 39.537088652771402 ], [ -77.92890742467921, 39.524915827380276 ], [ -77.934271426517114, 39.51164904770534 ], [ -77.946867566064867, 39.501776172315481 ], [ -77.959959748411976, 39.49621820834804 ], [ -77.971579908984708, 39.490718250344671 ], [ -77.981894017350726, 39.479419400644126 ], [ -77.989509090023233, 39.470118532483234 ], [ -77.990531062698963, 39.461848672527253 ], [ -77.989622951753731, 39.443389995964644 ], [ -77.989462937553355, 39.441147035341075 ], [ -77.992811957316761, 39.435203129656131 ], [ -78.009803152602288, 39.416569401228976 ], [ -78.021873333325473, 39.4087334982068 ], [ -78.026244384525384, 39.403892571758902 ], [ -78.029929317790675, 39.383041946269984 ], [ -78.046462494491806, 39.366193221217479 ], [ -78.049949494566391, 39.357804374220756 ], [ -78.058951562467996, 39.346402577911341 ], [ -78.078292583353274, 39.309545285150044 ], [ -78.081321511031859, 39.295214572480106 ], [ -78.10317945637253, 39.253154447000455 ], [ -78.115684537969472, 39.241271734678691 ], [ -78.130164684433751, 39.234023923997221 ], [ -78.133979714909827, 39.230904002316322 ], [ -78.137870715950129, 39.223263186994103 ], [ -78.137412667382677, 39.216965334445206 ], [ -78.133948480000583, 39.196014822505269 ], [ -78.134360444972273, 39.189983964812804 ], [ -78.137038444278787, 39.184564095632865 ], [ -78.13822845050511, 39.183129130876843 ], [ -78.151374551304272, 39.172055407805871 ], [ -78.157470564426816, 39.161984652127451 ], [ -78.163383608103032, 39.156793781518161 ], [ -78.172141619054585, 39.141264157245168 ], [ -78.191184728720629, 39.120226674865698 ], [ -78.199744764452831, 39.108866952051144 ], [ -78.208930750958345, 39.089275423002874 ], [ -78.215354782885839, 39.081576611442088 ], [ -78.222571841578244, 39.076217745916864 ], [ -78.244590951900889, 39.050186382836095 ], [ -78.268562352315442, 39.028797858426962 ], [ -78.284401703742859, 39.019078059859389 ], [ -78.295280962786137, 39.014348152737163 ], [ -78.300958087047832, 39.00942725885934 ], [ -78.3021171135142, 39.008584276736258 ], [ -78.312600372967211, 39.004468356088857 ], [ -78.321611612302618, 39.004003352152289 ], [ -78.334283966925852, 39.007737243454628 ], [ -78.353754511019019, 39.015107037875651 ], [ -78.363512761204845, 39.012010094686069 ], [ -78.409373963401165, 38.990648611988277 ], [ -78.419506228622964, 38.982137870199587 ], [ -78.431896548034786, 38.968680276786714 ], [ -78.452985099858608, 38.953848689428334 ], [ -78.477506734080251, 38.933700233400202 ], [ -78.514830778986379, 38.892491367367313 ], [ -78.527328187671088, 38.871941945645631 ], [ -78.533370390994008, 38.861043245926666 ], [ -78.538253560100742, 38.855791383269391 ], [ -78.570084697157441, 38.835412851358477 ], [ -78.595384642907121, 38.813052350910453 ], [ -78.602739930908157, 38.803275573634167 ], [ -78.610720261361905, 38.78643397003448 ], [ -78.61703052106067, 38.776783182437939 ], [ -78.627932964284057, 38.766075388346785 ], [ -78.648761818874831, 38.750133646965999 ], [ -78.651241949814903, 38.744175850516982 ], [ -78.650196961456132, 38.734814204659941 ], [ -78.657643318474626, 38.725094512611541 ], [ -78.659802438879439, 38.719815692730734 ], [ -78.659688464592691, 38.71491787471804 ], [ -78.655629372373298, 38.702356368553914 ], [ -78.65649949124564, 38.688657869361258 ], [ -78.666616094642492, 38.662745752978147 ], [ -78.676244625613307, 38.648128220104859 ], [ -78.686103166505887, 38.635750601023268 ], [ -78.698004788499816, 38.626770839622253 ], [ -78.706230278458605, 38.614671219682307 ], [ -78.718101946979857, 38.603390539602316 ], [ -78.740343331962322, 38.574060432279595 ], [ -78.74524971530839, 38.56157184688518 ], [ -78.751979120637259, 38.551692168477075 ], [ -78.770724881156056, 38.532180872194502 ], [ -78.785648568063735, 38.507091780081886 ], [ -78.806272194815719, 38.488542342670989 ], [ -78.817006452452603, 38.470384831899587 ], [ -78.833829853764883, 38.45362727833718 ], [ -78.850851238867577, 38.437685699966288 ], [ -78.854536325973754, 38.436125739924947 ], [ -78.86593460744119, 38.434984764075423 ], [ -78.872061749817462, 38.432394830126285 ], [ -78.886031017017885, 38.415885264406953 ], [ -78.905929428053852, 38.403434583659973 ], [ -78.914092537323256, 38.389697944066938 ], [ -78.920142541658038, 38.368595501423847 ], [ -78.933166675614672, 38.346288082648279 ], [ -78.933791657324718, 38.341798201332431 ], [ -78.930480392315985, 38.313535956166007 ], [ -78.929793309278892, 38.303438225479475 ], [ -78.932761263674323, 38.288668614441541 ], [ -78.939864225787744, 38.265189228593748 ], [ -78.955337381494545, 38.250148605210867 ], [ -78.966827359123798, 38.236470022486159 ], [ -78.989394427751463, 38.217282574709849 ], [ -79.001051959457115, 38.176610779066564 ], [ -79.012694059674999, 38.164293992090634 ], [ -79.017462938384071, 38.14905037711749 ], [ -79.017988922394593, 38.147192424308429 ], [ -79.026014951995748, 38.135626640848116 ], [ -79.034270087174065, 38.130068670578567 ], [ -79.036834132515295, 38.128523673566797 ], [ -79.04769831370821, 38.12110470556717 ] ], [ [ -83.389653634231394, 36.066821588489418 ], [ -83.35613727254173, 36.088994168973734 ], [ -83.322507250039806, 36.122544651395643 ], [ -83.3046769182167, 36.131421980425642 ], [ -83.286678412901665, 36.135431354066924 ], [ -83.280162218664984, 36.136564491971903 ], [ -83.26589484468029, 36.140684779620095 ], [ -83.255145609693884, 36.145322982825839 ], [ -83.219003940676174, 36.167925521552135 ], [ -83.185060305956554, 36.188755006321252 ], [ -83.17470705880568, 36.193344168234312 ], [ -83.163689729986828, 36.196186358848955 ], [ -83.131988641385135, 36.199951947045527 ], [ -83.095908431685572, 36.204957606858663 ], [ -83.0402199869892, 36.224428496599145 ], [ -82.974414775069576, 36.247840519738922 ], [ -82.942630611524621, 36.265128808816655 ], [ -82.922672431131687, 36.273948018075494 ], [ -82.905315294813491, 36.28263118031122 ], [ -82.873058123201488, 36.302639406058852 ], [ -82.849367885170409, 36.313419651238576 ], [ -82.826517720301993, 36.326877827824326 ], [ -82.798739440543983, 36.340550097251743 ], [ -82.760156859989749, 36.352200618633347 ], [ -82.749879672932664, 36.354001783466998 ], [ -82.71181516814292, 36.356180282419871 ], [ -82.691756454964747, 36.361780464361182 ], [ -82.677444033212211, 36.371130499585142 ], [ -82.644369157508066, 36.403250418316745 ], [ -82.63946296453274, 36.404699467770392 ], [ -82.630223543632766, 36.403726625438615 ], [ -82.616634923802522, 36.402082860246409 ], [ -82.609211616588851, 36.403421950594826 ], [ -82.596386137927567, 36.410102035592161 ], [ -82.581019567558414, 36.419642117283288 ], [ -82.570948200542858, 36.427463149098344 ], [ -82.556009653079983, 36.440654177453226 ], [ -82.533379660166631, 36.447177440551435 ], [ -82.523003229180262, 36.454093504492533 ], [ -82.489920750733091, 36.47552461737309 ], [ -82.452160917568634, 36.500533400811918 ], [ -82.431690981010973, 36.507243435622748 ], [ -82.422702557967767, 36.509772459272533 ], [ -82.411136046749192, 36.514724484428363 ], [ -82.389132231437628, 36.532493517514595 ], [ -82.382577954958037, 36.536353542724505 ], [ -82.373186497812256, 36.538920594109136 ], [ -82.358239680690943, 36.538482692460597 ], [ -82.345520012404947, 36.539542773484818 ], [ -82.335105534597815, 36.544242838404692 ], [ -82.316923721184793, 36.554072967859831 ], [ -82.309744470962286, 36.562222029447668 ], [ -82.284543287495154, 36.574291263324689 ], [ -82.258129054911421, 36.58885255941307 ], [ -82.243556407588514, 36.595657897908374 ], [ -82.233470012445679, 36.600160273215025 ], [ -82.227900793347189, 36.602563477058297 ], [ -82.179558948226216, 36.626296153856764 ], [ -82.168877469606656, 36.62695650702809 ], [ -82.156341875921328, 36.62574792531705 ], [ -82.134420868088185, 36.625515654331586 ], [ -82.110669933696443, 36.634725385332032 ], [ -82.095929366440174, 36.641069816622533 ], [ -82.085820049800219, 36.649649068559263 ], [ -82.067035354407992, 36.659060563855348 ], [ -82.05678203592305, 36.667677785160059 ], [ -82.016184629383204, 36.692561650494206 ], [ -82.011308434842235, 36.694019765405066 ], [ -81.990876743921802, 36.696602195417242 ], [ -81.981980585046017, 36.699772296121033 ], [ -81.97443440227012, 36.699803422565303 ], [ -81.967782239854643, 36.699761535128587 ], [ -81.960312101682447, 36.70198562482328 ], [ -81.950004968069877, 36.707787702400253 ], [ -81.935981744432368, 36.713219844589382 ], [ -81.933914711447812, 36.713990865738275 ], [ -81.917770470171817, 36.720540019228316 ], [ -81.90917943289223, 36.728021029329533 ], [ -81.902160461662248, 36.736611991757385 ], [ -81.892486355044838, 36.74157105770167 ], [ -81.880371281201292, 36.750093095233908 ], [ -81.874847131341326, 36.752344183410834 ], [ -81.822042684387071, 36.768542029508396 ], [ -81.791714942088277, 36.770194508437989 ], [ -81.772442411977238, 36.773821817066398 ], [ -81.759166992872792, 36.778465033570612 ], [ -81.734889282801348, 36.783153318846033 ], [ -81.727420027563355, 36.786293387165522 ], [ -81.713770647072195, 36.788234506128212 ], [ -81.703829409503697, 36.787754591199715 ], [ -81.697649288853881, 36.786026644050388 ], [ -81.688914026869341, 36.78838371918733 ], [ -81.667489212463167, 36.805046889919652 ], [ -81.660057975308689, 36.808803946194217 ], [ -81.644142598591344, 36.809155072401602 ], [ -81.626847233296957, 36.806466215245209 ], [ -81.617943006381736, 36.807793283787923 ], [ -81.611602810765191, 36.811455325567422 ], [ -81.605552653388131, 36.812855369613644 ], [ -81.586372203354387, 36.813626517580914 ], [ -81.571447885536955, 36.811154643228875 ], [ -81.560736614616559, 36.813664717886915 ], [ -81.55252738468748, 36.818474761956978 ], [ -81.543631163076512, 36.821053818776981 ], [ -81.529210826560217, 36.822995918896503 ], [ -81.517308560959762, 36.823118008022043 ], [ -81.512670454815932, 36.823637040200616 ], [ -81.506780306377536, 36.826948066171433 ], [ -81.500241132410295, 36.833192078925421 ], [ -81.488697400754063, 36.845327166419139 ], [ -81.481616956179835, 36.850515233711263 ], [ -81.470012258973725, 36.852277383160427 ], [ -81.446122808017606, 36.861837652159828 ], [ -81.427925727137946, 36.863577889845146 ], [ -81.41099471765429, 36.867629094231624 ], [ -81.402709222568618, 36.870856185354924 ], [ -81.392156584459002, 36.88056826226763 ], [ -81.356075461136214, 36.894705647008088 ], [ -81.342333661090919, 36.897666808623605 ], [ -81.327669810004537, 36.900469982844122 ], [ -81.278494981879362, 36.915188518371203 ], [ -81.263892145663462, 36.91716069412184 ], [ -81.22884801497581, 36.921810975153484 ], [ -81.157134509934821, 36.937970212620385 ], [ -81.152434218690559, 36.940030209123734 ], [ -81.144552742601789, 36.94711014753387 ], [ -81.129201785033317, 36.951138160283072 ], [ -81.098636885986068, 36.960198145370143 ], [ -81.078211618992114, 36.965989121715367 ], [ -81.064660744199358, 36.960919271608056 ] ], [ [ -80.919754453794695, 36.945940517495735 ], [ -80.9102939669785, 36.94542160560983 ], [ -80.901061488134559, 36.946581647880777 ], [ -80.865979640218228, 36.953729727179827 ], [ -80.860090313898425, 36.957121678325869 ], [ -80.844006355706185, 36.973921326377301 ], [ -80.835155843444554, 36.97894824555857 ], [ -80.815394684167472, 36.98929008085544 ], [ -80.792642391703581, 36.993791095968263 ], [ -80.75986451454439, 37.003198133574671 ], [ -80.740393393791493, 37.012392557383443 ], [ -80.731747877187487, 37.021021883184702 ], [ -80.729588756235501, 37.026110982412717 ], [ -80.726521589341175, 37.035140132997611 ], [ -80.716511990557848, 37.044951491717967 ], [ -80.70435730414701, 37.071792994224431 ], [ -80.691516520508145, 37.078823392230753 ], [ -80.684481083636257, 37.07991059467053 ], [ -80.665970925955477, 37.079663112961867 ], [ -80.655854299349869, 37.081754403243337 ], [ -80.645309653407423, 37.086583710587689 ], [ -80.637329158745985, 37.08807593529319 ], [ -80.621184146500696, 37.086744380125175 ], [ -80.604002074858101, 37.087343857093138 ], [ -80.590016198397734, 37.086196244569344 ], [ -80.580005582037231, 37.089492521116 ], [ -80.576755382936895, 37.090945610037409 ], [ -80.552926920626348, 37.100575250418828 ], [ -80.534920790836154, 37.098305744071318 ], [ -80.519798847998985, 37.098607154543728 ], [ -80.507652084226393, 37.096307493453146 ], [ -80.496130438240527, 37.093995792078694 ], [ -80.479818774429702, 37.094717120806465 ], [ -80.439472160572876, 37.113867854989884 ], [ -80.422557469198239, 37.11603918674421 ], [ -80.413516099731638, 37.117561362181704 ], [ -80.396212394709551, 37.123588682474917 ], [ -80.379579711470811, 37.125538007910855 ], [ -80.359680895572794, 37.133831366583252 ], [ -80.356354759556012, 37.137471414886903 ], [ -80.354355677927231, 37.140541439352369 ], [ -80.350853533588761, 37.142754498185049 ], [ -80.330611695016785, 37.151188859032217 ], [ -80.326140509002258, 37.154301931830602 ], [ -80.323623403830013, 37.158005962397439 ], [ -80.320281263509528, 37.164181996098328 ], [ -80.30270252617548, 37.172841298279984 ], [ -80.294798189828839, 37.182500401828008 ], [ -80.283459711005335, 37.186269604716287 ], [ -80.270108141110143, 37.195402816319515 ], [ -80.265911954937238, 37.204412847562956 ], [ -80.260448717995118, 37.209710924294725 ], [ -80.254574451703817, 37.224172955832422 ], [ -80.242130087705519, 37.228774176688461 ], [ -80.231486870203227, 37.238303334405394 ], [ -80.213297515528637, 37.242354674663652 ], [ -80.204608352278072, 37.248278811932806 ], [ -80.201228288981369, 37.249491871891799 ], [ -80.185710007459051, 37.25050316977196 ], [ -80.169337024179626, 37.26017328305111 ], [ -80.161287964817916, 37.263027376728999 ], [ -80.150301893131285, 37.267272493724725 ], [ -80.142480886037035, 37.271678542809731 ], [ -80.13619496386174, 37.277812519746654 ], [ -80.120584947505819, 37.286888597028288 ], [ -80.111124866589165, 37.290306689163799 ], [ -80.106233812369027, 37.291709744743997 ], [ -80.099924739127147, 37.293434817748384 ], [ -80.087297586939584, 37.296771964232114 ], [ -80.078683524658857, 37.300438026699254 ], [ -80.072618527537472, 37.304577028947769 ], [ -80.068781522057606, 37.306984034856789 ], [ -80.066095521662575, 37.308793035327625 ], [ -80.062761514035429, 37.31081804116581 ], [ -80.05445345799842, 37.314698084383842 ], [ -80.043298348245258, 37.318856166837769 ], [ -80.038232282623724, 37.320244216691343 ], [ -80.033807308027122, 37.324273182734935 ], [ -80.023706314361945, 37.331845145107295 ], [ -79.998056055535116, 37.341626289978521 ], [ -79.971292193552401, 37.359574154733423 ], [ -79.958559060257059, 37.361153290974194 ], [ -79.946251939252576, 37.363015414060087 ], [ -79.921387733352276, 37.368435620130406 ], [ -79.909737803462647, 37.377656537743441 ], [ -79.904969970132683, 37.386986355422756 ], [ -79.904007980614168, 37.387963343220825 ], [ -79.89522726774635, 37.404694024265915 ], [ -79.869424657768278, 37.437313553270876 ], [ -79.860345720635124, 37.446212462274005 ], [ -79.839243629120261, 37.457454505313486 ], [ -79.820428453328589, 37.463844643338497 ], [ -79.810373400172026, 37.469253668627012 ], [ -79.783998169258169, 37.479904831947259 ], [ -79.764124072729345, 37.492294855471243 ], [ -79.752083955969283, 37.497283934910428 ], [ -79.748452961024896, 37.500595914764325 ], [ -79.741434068727017, 37.509334861799552 ], [ -79.734422072730268, 37.514175871907227 ], [ -79.692772722795922, 37.5294961399171 ], [ -79.668145654564114, 37.54571615194893 ], [ -79.638115985100242, 37.586833731714734 ], [ -79.627205941065384, 37.595123694054209 ], [ -79.612511948614667, 37.610134560518148 ], [ -79.599854708077132, 37.611331672970188 ], [ -79.593957600455923, 37.612133720181617 ], [ -79.582665621799308, 37.625602565398538 ], [ -79.575097495058586, 37.627502605013014 ], [ -79.552422409633294, 37.650005363257037 ], [ -79.52987708006107, 37.660362360377235 ], [ -79.506614683359487, 37.668712398027829 ], [ -79.482414433123537, 37.690074169742431 ], [ -79.462074142721661, 37.703453089967915 ], [ -79.436621831217636, 37.72340292157309 ], [ -79.409872661715013, 37.757002527853729 ], [ -79.401404617664411, 37.774973379018192 ], [ -79.400465704484361, 37.787032227099182 ], [ -79.397749700088724, 37.794260160578474 ] ], [ [ -75.983301222175839, 44.347385444095579 ], [ -75.980157890856546, 44.3437195401225 ], [ -75.980668558454312, 44.340721499629325 ], [ -75.990204702048686, 44.334697093051908 ], [ -76.004447792258574, 44.329810637832033 ], [ -76.009703036655623, 44.324637540585975 ], [ -76.011343316727832, 44.318697485824956 ], [ -76.007841002722202, 44.31478750540262 ], [ -75.988972758788762, 44.30741795813806 ], [ -75.97252272371415, 44.293468472487746 ], [ -75.970851277857818, 44.288780500201256 ], [ -75.970468486036509, 44.271697390099682 ], [ -75.967599113652724, 44.267238461246563 ], [ -75.937026201902512, 44.235410069846608 ], [ -75.882254461417105, 44.20563630913194 ], [ -75.880057271614646, 44.202782510692671 ], [ -75.879102340592922, 44.192364998285285 ], [ -75.878618352652154, 44.15988443084867 ], [ -75.885163142901021, 44.148707692618295 ], [ -75.881691188975466, 44.13733730814905 ], [ -75.884199998935301, 44.125076757274215 ], [ -75.889601099048889, 44.116638941670942 ], [ -75.900829793650558, 44.104997069860275 ], [ -75.909298094414183, 44.099187038143171 ], [ -75.912905659042465, 44.095116095201988 ], [ -75.920303929828606, 44.065691142280265 ], [ -75.920013218215985, 44.057520512087827 ], [ -75.913747988101179, 44.04247938265754 ], [ -75.914701330222357, 44.035182672174571 ], [ -75.916882033117986, 44.020782234191856 ], [ -75.912836881874199, 44.007240962900354 ], [ -75.915018500469145, 44.003171070608353 ], [ -75.919466272126343, 44.001058018341766 ], [ -75.931749984400128, 43.996452780243146 ], [ -75.933381941522711, 43.995281766318051 ], [ -75.938943827911004, 43.992580678198422 ], [ -75.944345692673835, 43.988831633792799 ], [ -75.947885504792524, 43.982101754121217 ], [ -75.948434348844685, 43.975651959874682 ], [ -75.949006157862115, 43.967702217491279 ], [ -75.957909579638553, 43.945420743620275 ], [ -75.97589082857013, 43.91647232464527 ], [ -75.977515742799412, 43.91292841658889 ], [ -75.982886475403532, 43.90176270753328 ], [ -75.99902310822236, 43.887152905577487 ], [ -76.010824827365838, 43.877006222022601 ], [ -76.015143638354871, 43.86867452329578 ], [ -76.020552192431609, 43.846874347391164 ], [ -76.030973830866515, 43.82876699477309 ], [ -76.031552663678085, 43.819646349658122 ], [ -76.034650500957127, 43.810659683551592 ], [ -76.039922294887361, 43.798746118756021 ], [ -76.043491903294324, 43.775638004145996 ], [ -76.059452608407071, 43.753120787618982 ], [ -76.07130059934515, 43.743038907529488 ], [ -76.073574586160603, 43.737277954839129 ], [ -76.076321543966159, 43.724579073662667 ], [ -76.07333030354053, 43.67971857140904 ], [ -76.071163278746297, 43.678460597535768 ], [ -76.070225236747035, 43.671643675732852 ], [ -76.079723212836996, 43.648529868510742 ], [ -76.084209127150416, 43.620031149677196 ], [ -76.088940136702462, 43.610700224473177 ], [ -76.107204248387674, 43.586702387646184 ], [ -76.113667256554123, 43.567327565932047 ], [ -76.113964218548205, 43.555662692118013 ], [ -76.11484918112086, 43.541871838725363 ], [ -76.121258196811596, 43.520609040895643 ], [ -76.121830182742912, 43.513930111611003 ], [ -76.119541078870796, 43.496710257897654 ], [ -76.120197005371537, 43.484843195612811 ], [ -76.117351862108137, 43.470461136369927 ], [ -76.119510805479294, 43.457812063614426 ], [ -76.120273764702148, 43.450381023231444 ], [ -76.11763364651128, 43.439130978040112 ], [ -76.119891561186833, 43.422182884000065 ], [ -76.116031418701084, 43.410039838452185 ], [ -76.117129396001815, 43.404481806262226 ], [ -76.12234025092755, 43.372758628293852 ], [ -76.120768178183184, 43.365720598850125 ], [ -76.122561127841522, 43.354741537896913 ], [ -76.122896979648701, 43.33289942817396 ], [ -76.129068953119813, 43.315999324874795 ], [ -76.127848869450759, 43.306669282695864 ], [ -76.124811778460113, 43.300149259652152 ], [ -76.125337690275742, 43.286458190302461 ], [ -76.131227653587715, 43.26870108630704 ], [ -76.132418532422875, 43.246739956350183 ], [ -76.129656463189221, 43.234860836519779 ], [ -76.128710438811751, 43.230259789771779 ], [ -76.12900039554988, 43.210175574407813 ], [ -76.115969157255876, 43.175763239195419 ], [ -76.111345087151975, 43.16702315719381 ], [ -76.109941036252891, 43.145980935366346 ], [ -76.113130063092299, 43.14164788110201 ], [ -76.119059113984846, 43.135299798594666 ], [ -76.12024911316233, 43.128726725368381 ], [ -76.124201143406921, 43.123912664248699 ], [ -76.127962173271328, 43.120288616368747 ], [ -76.146166331626318, 43.111324476730111 ], [ -76.164064445329061, 43.093196240931093 ], [ -76.173151484534159, 43.081302092998548 ], [ -76.171205441048798, 43.074764028010691 ], [ -76.169603412489451, 43.071059992346186 ], [ -76.163935345421535, 43.066206953918005 ], [ -76.160570311520488, 43.064673945443786 ], [ -76.150217188354347, 43.052912844250258 ], [ -76.147852166706372, 43.051871838657078 ], [ -76.144556138414245, 43.0509178361607 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I81  S\", \"DIST_MILES\": 1.000000, \"DIST_KM\": 1.600000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -76.018161600749124, 40.881076976192425 ], [ -76.010531330027931, 40.884528879520559 ], [ -76.001162088330474, 40.881427943537489 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I82\", \"DIST_MILES\": 143.000000, \"DIST_KM\": 230.130000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -120.504658535555336, 46.971014418977191 ], [ -120.500892427745427, 46.962514528152965 ], [ -120.501219215014316, 46.938573504003976 ], [ -120.49344271351201, 46.928042700988406 ], [ -120.488891193498134, 46.923578655826653 ], [ -120.476606734508906, 46.916487863307296 ], [ -120.46311911253116, 46.912044825500622 ], [ -120.44984453475071, 46.905079838845062 ], [ -120.440049379917539, 46.897078630931759 ], [ -120.421727796554322, 46.889464554624105 ], [ -120.417916272792453, 46.881463679496548 ], [ -120.411912360095911, 46.874111327670207 ], [ -120.389167959009782, 46.862479309181055 ], [ -120.38436712877342, 46.851827213477762 ], [ -120.380919249484606, 46.849274453199904 ], [ -120.368937130794095, 46.845274843175559 ], [ -120.358390336595747, 46.827541479813988 ], [ -120.35243735697567, 46.822539175398859 ], [ -120.347201588905165, 46.814500010453855 ], [ -120.34826950788657, 46.80980821364912 ], [ -120.353920275464915, 46.802641386641106 ], [ -120.35285582221988, 46.79374911024545 ], [ -120.364217319191766, 46.782853497155401 ], [ -120.37184893461945, 46.771273085457686 ], [ -120.375719583138832, 46.759795864226213 ], [ -120.381567488837931, 46.754075104693477 ], [ -120.383001011555777, 46.747807384920229 ], [ -120.379592834632192, 46.737953595933362 ], [ -120.379464743084199, 46.731495536734926 ], [ -120.382289495596126, 46.728245134644112 ], [ -120.398993755874955, 46.723240752687651 ], [ -120.404492613825141, 46.716359922017844 ], [ -120.408634273115567, 46.713881817881877 ], [ -120.419063759172573, 46.713334109350676 ], [ -120.423252039500682, 46.711775025151667 ], [ -120.431855857042265, 46.705596894992432 ], [ -120.438146589796347, 46.695958237957221 ], [ -120.449139633822483, 46.691520658712726 ], [ -120.475193673743448, 46.678037417993494 ], [ -120.490058348830956, 46.660249668507468 ], [ -120.491674331423781, 46.65047997644271 ], [ -120.513387288255274, 46.640593813836091 ], [ -120.516753251593173, 46.638557563638564 ], [ -120.51611444097847, 46.63574540253537 ], [ -120.505671981277118, 46.627972997182631 ], [ -120.500716583322884, 46.626101869653894 ], [ -120.492214541418832, 46.622407932169629 ], [ -120.48741238237929, 46.617950821232668 ], [ -120.479727696070725, 46.605445017066806 ], [ -120.470070120379731, 46.593593781698175 ], [ -120.466859340107177, 46.585365016121003 ], [ -120.466180603631955, 46.563273737338882 ], [ -120.464171763720714, 46.556574250553986 ], [ -120.465044672122374, 46.538092338673231 ], [ -120.465419615058735, 46.531329383166955 ], [ -120.463450466276612, 46.521612888371983 ], [ -120.454437555881469, 46.520160877143816 ], [ -120.449701857493935, 46.520277828303698 ], [ -120.414774665550823, 46.488353005592948 ], [ -120.389441612715942, 46.473546453617722 ], [ -120.362533725751064, 46.453150590753872 ], [ -120.354732776215471, 46.442547882823192 ], [ -120.344967679038447, 46.432764762844947 ], [ -120.325860637307144, 46.420172658331644 ], [ -120.308639966797259, 46.413440000278534 ], [ -120.290925740986893, 46.403956249094641 ], [ -120.232722373383737, 46.380633152354257 ], [ -120.197320470165621, 46.3602549572987 ], [ -120.167825799040529, 46.345341045912022 ], [ -120.152308287052108, 46.33969597391259 ], [ -120.12488198940423, 46.331962601174638 ], [ -120.113932393246486, 46.330117478962336 ], [ -120.103554035785208, 46.326457465290389 ], [ -120.093771386831136, 46.318734550617101 ], [ -120.071179457096591, 46.308201196216942 ], [ -120.055386799911048, 46.305047198604782 ], [ -120.015239683183211, 46.303731701270728 ], [ -120.009687893801186, 46.303825675644717 ], [ -119.980558047959903, 46.305293335674776 ], [ -119.975015535335118, 46.299043286823235 ], [ -119.945967025439657, 46.277027889252672 ], [ -119.9214698095834, 46.264117417449029 ], [ -119.91337520818729, 46.259690947950133 ], [ -119.89917931410281, 46.260390435218483 ], [ -119.886635927324988, 46.258466210907145 ], [ -119.868739006245107, 46.255762056724514 ], [ -119.849753095765834, 46.251520726256352 ], [ -119.78654376497694, 46.223280748479787 ], [ -119.77138851694491, 46.218166165234557 ], [ -119.752118836818852, 46.214042916435979 ], [ -119.734722649055001, 46.215710981961088 ], [ -119.707636715488349, 46.220566429812266 ], [ -119.691899597663493, 46.220983793290593 ], [ -119.678844379304095, 46.224292638477834 ], [ -119.613423427914611, 46.249539088678333 ], [ -119.573034567054052, 46.260503695249355 ], [ -119.562507227538816, 46.265461063044242 ], [ -119.55101877108612, 46.268103268845771 ], [ -119.511226105898743, 46.260356985463766 ], [ -119.473352858630633, 46.251550091995746 ], [ -119.467958844778337, 46.252839281829573 ], [ -119.459259590561189, 46.255476984321469 ], [ -119.441357114123491, 46.258595310217352 ], [ -119.395412213781299, 46.262109500850642 ], [ -119.365764252542675, 46.249284021844396 ], [ -119.35622047198747, 46.24220255065449 ], [ -119.34416314198684, 46.224484593615855 ], [ -119.341429637996612, 46.215718094278778 ], [ -119.331435533457352, 46.207564549282758 ], [ -119.325860087767381, 46.204668708425856 ], [ -119.313465678624183, 46.200321869089819 ], [ -119.274847072264635, 46.198454333734531 ], [ -119.258537105542715, 46.192454951440268 ], [ -119.225702454901679, 46.176528098650884 ], [ -119.196690900027818, 46.166559904266407 ], [ -119.198703364574797, 46.116357539826673 ], [ -119.214461845955, 46.098018490694791 ], [ -119.220079048901454, 46.086468121250405 ], [ -119.21809232312981, 46.077049720590594 ], [ -119.220211828393673, 46.068489902596752 ], [ -119.221783126566095, 46.011120362038483 ], [ -119.224183297220534, 46.008358657528099 ], [ -119.229943789464699, 46.006020424578999 ], [ -119.23546045134168, 46.004591171429681 ], [ -119.24675896762605, 46.004130739249383 ], [ -119.254402016282086, 46.000164783400031 ], [ -119.265190254773287, 45.998587330689581 ], [ -119.276359182141277, 45.995395927895693 ], [ -119.307033792606546, 45.984841341092654 ], [ -119.318614635384975, 45.983221040088303 ], [ -119.331575549224013, 45.975303907124832 ], [ -119.347486095736059, 45.956416149829622 ], [ -119.347746752715409, 45.944949107630443 ], [ -119.330423943730395, 45.936992458497407 ], [ -119.324992597445473, 45.931784611214731 ], [ -119.319448090998819, 45.922601719128735 ], [ -119.319235124886802, 45.918432656831243 ], [ -119.319518355493486, 45.914827672447991 ], [ -119.32845667036483, 45.903342920501721 ], [ -119.325990587713349, 45.889639452303967 ], [ -119.330274772765094, 45.876696998361005 ], [ -119.33607364979521, 45.870258820712891 ], [ -119.372174754271654, 45.842817086091443 ], [ -119.378308048258589, 45.836378977654782 ], [ -119.379954649784551, 45.830886191610261 ], [ -119.379647979318747, 45.803545956355457 ], [ -119.387640809326172, 45.795795129719828 ], [ -119.384266152876549, 45.793219593603915 ], [ -119.37868909805465, 45.793836742430713 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I820\", \"DIST_MILES\": 34.940000, \"DIST_KM\": 56.230000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -97.467347372400823, 32.68957369883293 ], [ -97.478852750457335, 32.715069677670343 ], [ -97.480568812719611, 32.72451031244649 ], [ -97.481316850223394, 32.738109796134253 ], [ -97.481209854166764, 32.744609552185445 ], [ -97.476876736279067, 32.766120060924578 ], [ -97.475098687039207, 32.774168914048808 ], [ -97.472619616315711, 32.778418844308838 ], [ -97.452256037163664, 32.794619623132284 ], [ -97.448509931299981, 32.796538601555426 ], [ -97.43436452938414, 32.799998594937598 ], [ -97.422706204642481, 32.805510529631185 ], [ -97.418334086318183, 32.808989473365962 ], [ -97.412604933080587, 32.813868390934964 ], [ -97.375203926488041, 32.831759126224647 ], [ -97.362851597577276, 32.836458056563522 ], [ -97.344472111701165, 32.842927957664685 ], [ -97.327786638447193, 32.839808085008848 ], [ -97.312771221556375, 32.839480139555135 ], [ -97.290492605732766, 32.839617204710677 ], [ -97.264109874692252, 32.839438290909548 ], [ -97.233239979627513, 32.840079301119708 ], [ -97.215463400966883, 32.832899491431675 ], [ -97.209863229842554, 32.832518498469149 ], [ -97.206414117263662, 32.830958541051352 ], [ -97.205781033432658, 32.819048884091629 ], [ -97.209962103049989, 32.808929176659419 ], [ -97.211282125941651, 32.805949262467692 ], [ -97.211831134095647, 32.804469305011743 ], [ -97.212342003906599, 32.778221058242522 ], [ -97.212601932331211, 32.763932468041936 ], [ -97.21392194770057, 32.759789585709825 ], [ -97.224588174529885, 32.741720131425105 ], [ -97.225083165916885, 32.734681366004722 ], [ -97.225083148767226, 32.729432541269389 ], [ -97.225320122499525, 32.719251881120805 ], [ -97.231622273392048, 32.708041254681753 ], [ -97.240724492649647, 32.690573843082724 ], [ -97.240663425473656, 32.66842259074761 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I83\", \"DIST_MILES\": 82.940000, \"DIST_KM\": 133.480000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -76.835160618661305, 40.308381342733064 ], [ -76.828797557186476, 40.302003492174649 ], [ -76.825615532799006, 40.296426608247003 ], [ -76.819115504150631, 40.278898950863663 ], [ -76.815232490488938, 40.270098125505349 ], [ -76.814438508424857, 40.260264300346776 ], [ -76.811409491695215, 40.257746360558258 ], [ -76.811104498242415, 40.25450441829458 ], [ -76.811783507599642, 40.252886442591581 ], [ -76.813042516270059, 40.253073432523202 ], [ -76.814057523286621, 40.25322642436452 ], [ -76.823891594489965, 40.253786361255322 ], [ -76.838860702709198, 40.258200202495082 ], [ -76.862023884247705, 40.255438125251253 ], [ -76.867615925666669, 40.253226134440432 ], [ -76.871064950432597, 40.251818141022611 ], [ -76.87284196258571, 40.25083014915834 ], [ -76.877846989422366, 40.248312185056619 ], [ -76.88175300829063, 40.246088225820472 ], [ -76.888986048012868, 40.241911302385397 ], [ -76.894853085111336, 40.238524363931134 ], [ -76.882157860174487, 40.216594042920462 ], [ -76.879090799686622, 40.211719196227214 ], [ -76.875496729236815, 40.206741355885534 ], [ -76.863785527463165, 40.19802866899623 ], [ -76.848488268972289, 40.190746966328966 ], [ -76.842675149046016, 40.186230129529832 ], [ -76.82954376442548, 40.167069755274703 ], [ -76.816764329052546, 40.147382400048805 ], [ -76.796324741559488, 40.131205002884357 ], [ -76.793738662667394, 40.129164079585557 ], [ -76.783690175847013, 40.110102701622132 ], [ -76.758305916203327, 40.069928060511039 ], [ -76.741168761124456, 40.015852750342432 ], [ -76.734668735988052, 39.992060409474114 ], [ -76.729808979120293, 39.984053603476546 ], [ -76.724690127181617, 39.979655718670081 ], [ -76.699032330221769, 39.979232817710368 ], [ -76.694294494809199, 39.973094970779378 ], [ -76.685658773597609, 39.962131245241352 ], [ -76.685063858616374, 39.958023338795435 ], [ -76.684727945159537, 39.953747435175408 ], [ -76.679517124784837, 39.945709632876181 ], [ -76.679486181878389, 39.942745699006821 ], [ -76.682729274914692, 39.937408806117546 ], [ -76.689725340973439, 39.933174874950282 ], [ -76.693387394389561, 39.93019192797648 ], [ -76.697324534050637, 39.923257067780959 ], [ -76.703809605485191, 39.919671123717322 ], [ -76.704801656279301, 39.917344171754337 ], [ -76.703115811794746, 39.910291334579249 ], [ -76.704001110375046, 39.896760631791906 ], [ -76.695952262944417, 39.888818838328973 ], [ -76.695028313070694, 39.886311897528287 ], [ -76.69978260731979, 39.873339167900802 ], [ -76.69865276026195, 39.865961336131654 ], [ -76.695448834949744, 39.861593445447376 ], [ -76.691565884551963, 39.858080538437214 ], [ -76.684600450387848, 39.827331249656787 ], [ -76.674210150775863, 39.784302249511541 ], [ -76.66841228987461, 39.771843550875381 ], [ -76.662834478593609, 39.7557959318464 ], [ -76.659401579388842, 39.72977528551791 ], [ -76.654671516554373, 39.721105396416711 ], [ -76.644173357021813, 39.706407596222384 ], [ -76.640801311740105, 39.698915689940485 ], [ -76.644707422858346, 39.686814799998736 ], [ -76.644615452645979, 39.675626918109366 ], [ -76.652306664081138, 39.657564072645052 ], [ -76.665421965078579, 39.649763093478285 ], [ -76.671953160177907, 39.633936227538598 ], [ -76.669778135981048, 39.627405305694317 ], [ -76.662973029757282, 39.61472547027747 ], [ -76.65858594713599, 39.610247538213379 ], [ -76.657921943685139, 39.606707578436314 ], [ -76.664026111602624, 39.597284647014057 ], [ -76.671762297704248, 39.594206641078834 ], [ -76.672998332023326, 39.592486652860934 ], [ -76.678003494406653, 39.579603761649153 ], [ -76.665033254539992, 39.561786011946594 ], [ -76.66640636833715, 39.538005252590949 ], [ -76.660638267203225, 39.526225405542412 ], [ -76.662912364975426, 39.513606525203954 ], [ -76.667878535284316, 39.500121639126128 ], [ -76.667093418545875, 39.493465671769336 ], [ -76.661446872975091, 39.465896819821651 ], [ -76.656960686460451, 39.46090686556748 ], [ -76.638756061992282, 39.449658013379512 ], [ -76.63484988135896, 39.444058058955235 ], [ -76.633704691560155, 39.433106112499416 ], [ -76.63855766053976, 39.422657130726428 ], [ -76.641670701982846, 39.420117124431791 ] ], [ [ -76.663811138362632, 39.411503038759129 ], [ -76.661834988431707, 39.404690078756722 ], [ -76.666740947813778, 39.393326099908862 ], [ -76.659911555666326, 39.37843720148355 ], [ -76.654990381916448, 39.375157243057849 ], [ -76.6532432926887, 39.372109265895581 ], [ -76.650489134951499, 39.366139306930855 ], [ -76.650367048043549, 39.360417332134844 ], [ -76.646300797217833, 39.350388398089457 ], [ -76.646773731316927, 39.3450664182525 ], [ -76.647543667072966, 39.339337438468284 ], [ -76.642019415053028, 39.331787502270174 ], [ -76.64049430973985, 39.327267530390984 ], [ -76.633047070265746, 39.32391858728775 ], [ -76.630048909336054, 39.318176629209312 ], [ -76.629506877284115, 39.316937637663393 ], [ -76.623342632933728, 39.311016698596021 ], [ -76.614812343814307, 39.306137768757289 ], [ -76.613591311136361, 39.306027776256975 ], [ -76.611653255227196, 39.30557778936209 ], [ -76.611455152784146, 39.298977819228909 ], [ -76.611241112493872, 39.296616830739993 ], [ -76.610868076140989, 39.294796840815543 ], [ -76.610372050679572, 39.29392684746712 ], [ -76.608997998897721, 39.292786860368317 ], [ -76.606587908093999, 39.29078788301063 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I84\", \"DIST_MILES\": 959.910000, \"DIST_KM\": 1544.830000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -72.91784883822308, 41.558892232147883 ], [ -72.91712389144999, 41.559491245838139 ], [ -72.91623095792383, 41.560330263463797 ], [ -72.913882140074278, 41.563355315969723 ], [ -72.901508103129999, 41.57938860024619 ], [ -72.899295276395037, 41.582322652829596 ], [ -72.898990330530125, 41.586213686812606 ], [ -72.90308710898519, 41.592167675178224 ], [ -72.903476110714834, 41.595341693660863 ], [ -72.901126380707524, 41.608395825890781 ], [ -72.898990556098838, 41.612206885895553 ], [ -72.89179610894638, 41.620561056267654 ], [ -72.874013403734693, 41.632001415787592 ], [ -72.86736890395872, 41.637853566860265 ], [ -72.849205332197982, 41.660170049052716 ], [ -72.844711710314343, 41.668467197516982 ], [ -72.841667931555634, 41.669871260289767 ], [ -72.826149999012387, 41.66898250670878 ], [ -72.824983083774441, 41.669405530013385 ], [ -72.821748332129246, 41.672171610424179 ], [ -72.815225915950009, 41.687762874285774 ], [ -72.805049750078368, 41.702442198539003 ], [ -72.796550477701018, 41.718242513314657 ], [ -72.791248891062409, 41.722946658702561 ], [ -72.789921988403208, 41.723342686970362 ], [ -72.772672249849066, 41.72710504236192 ], [ -72.764677823958351, 41.726941187013715 ], [ -72.757674338861989, 41.72800132787701 ], [ -72.751479832841099, 41.733636508289443 ], [ -72.741966526532082, 41.735795601355598 ], [ -72.735810009927562, 41.741749696468787 ], [ -72.73579505341371, 41.747296758658706 ], [ -72.733972195757076, 41.748944784508502 ], [ -72.704951291620134, 41.750126915655329 ], [ -72.701190588978918, 41.753510874229086 ], [ -72.699756742900178, 41.760438763814697 ], [ -72.692791285225809, 41.76467672452398 ], [ -72.686436766275833, 41.766228728383439 ], [ -72.683743980582662, 41.768147709590785 ], [ -72.67938032852102, 41.771149681573583 ], [ -72.672887801480854, 41.769620737764349 ], [ -72.668066160930394, 41.769375765076134 ], [ -72.661764635172617, 41.769394795495145 ], [ -72.651702369258629, 41.766297892895402 ], [ -72.646018783602528, 41.764367950130115 ], [ -72.638993308250178, 41.763212001650835 ], [ -72.633141760666078, 41.763742022064278 ], [ -72.604343062643039, 41.770921062790677 ], [ -72.585423585982582, 41.773859122309894 ], [ -72.575490393774572, 41.775327156514564 ], [ -72.570501843713771, 41.779726125787185 ], [ -72.567877096724573, 41.783353092909799 ], [ -72.552803529835757, 41.80092395650852 ], [ -72.535973978120907, 41.805746004367307 ], [ -72.521128296560377, 41.811826029921086 ], [ -72.516780681075346, 41.813234042939733 ], [ -72.505535741738854, 41.821233028944185 ], [ -72.497975456735801, 41.824960043376407 ], [ -72.496800559509282, 41.824285060914448 ], [ -72.469299304736822, 41.83127721669657 ], [ -72.446909655698306, 41.842737280506221 ], [ -72.432102276260011, 41.853609286193908 ], [ -72.426464853929787, 41.854784322260343 ], [ -72.404495058807555, 41.855028513762043 ], [ -72.399207603592203, 41.855768552448787 ], [ -72.389115594941998, 41.853647667150788 ], [ -72.374773110394301, 41.857076757280851 ], [ -72.36100362934431, 41.863786805374687 ], [ -72.312754029284676, 41.885877996046524 ], [ -72.293850186267449, 41.894465074058928 ], [ -72.287960895269791, 41.899138075393935 ], [ -72.284871273198462, 41.901896072562614 ], [ -72.275038404108017, 41.905936118988684 ], [ -72.257553631953641, 41.925368059239673 ], [ -72.217588705715954, 41.943011410226191 ], [ -72.204231454619816, 41.949126546900999 ], [ -72.195832666160271, 41.959346568265943 ], [ -72.182894556728343, 41.975978600443852 ], [ -72.154204949720324, 42.017203570688494 ], [ -72.136347511609856, 42.030284656358972 ], [ -72.125843075482308, 42.040171666607158 ], [ -72.120838898245196, 42.048335613864161 ], [ -72.097512512181368, 42.075339526792874 ], [ -72.090272737712809, 42.088172417835615 ], [ -72.082767189062565, 42.109610159938356 ], [ -72.080036640576651, 42.113864125327893 ], [ -72.073430596039657, 42.117793150315151 ], [ -72.065847803191289, 42.127211090897802 ], [ -72.059462713330134, 42.130137127444328 ] ], [ [ -73.454393180018059, 41.39620762886539 ], [ -73.447153538183002, 41.399159693923259 ], [ -73.435740065731167, 41.399579819582165 ], [ -73.430484351301942, 41.404077856526087 ], [ -73.427066582623681, 41.411744858074222 ], [ -73.420443940001235, 41.416982909335523 ] ], [ [ -73.420443940001235, 41.416982909335523 ], [ -73.420581939774891, 41.4176349046528 ] ], [ [ -73.420443940001235, 41.416982909335523 ], [ -73.414768182366942, 41.414620986068876 ], [ -73.411327333878745, 41.413607030498987 ], [ -73.408962450233176, 41.414175055267123 ], [ -73.40199680999639, 41.417540121173047 ], [ -73.392377281801501, 41.419245226272906 ], [ -73.379353950122123, 41.424173359555681 ], [ -73.363501699616904, 41.422426554393482 ], [ -73.355948083137562, 41.424093638270193 ], [ -73.349639407657008, 41.425776707817676 ], [ -73.326820543458766, 41.42640598036094 ], [ -73.314401191124503, 41.429111123016689 ], [ -73.287562447375308, 41.416762479910744 ], [ -73.278933883118668, 41.41565658641148 ], [ -73.26924437912102, 41.414775705194522 ], [ -73.266673522126752, 41.415763734314659 ], [ -73.248394623085929, 41.432445927916639 ], [ -73.247067721390735, 41.436397936980555 ], [ -73.248028699063269, 41.439071921234778 ], [ -73.250134657658933, 41.446075884426413 ], [ -73.248577771783545, 41.450305896127333 ], [ -73.238485305550753, 41.455017007720564 ], [ -73.23064275113704, 41.461315090592798 ], [ -73.222922176555983, 41.465527175808646 ], [ -73.211783853580002, 41.476826291212681 ], [ -73.194633789619303, 41.481907489843515 ], [ -73.162569619677484, 41.493698862005154 ], [ -73.15448213701859, 41.500107951864337 ], [ -73.139217059810719, 41.508317173082617 ], [ -73.110699727254939, 41.516740563373546 ], [ -73.097273515877561, 41.52013974673568 ], [ -73.088767054326638, 41.525712878413195 ], [ -73.086745272206926, 41.535684947528019 ], [ -73.081969591179103, 41.540377029014621 ], [ -73.075560978621326, 41.542643121081127 ], [ -73.067985461492228, 41.547602240517755 ], [ -73.05281937254621, 41.551489454107504 ], [ -73.038965174497179, 41.551207632874664 ], [ -73.03049666760802, 41.550917741960333 ], [ -73.022540048961474, 41.541804802944327 ], [ -73.018397277292735, 41.539995848407727 ], [ -73.009700793102652, 41.539751960837719 ], [ -73.002552204401127, 41.537929045625802 ], [ -72.990459998931343, 41.542426217367009 ], [ -72.981709560100697, 41.543254328758287 ], [ -72.965498532303528, 41.536434488527028 ], [ -72.961378799997547, 41.536750540457184 ], [ -72.95575619719699, 41.540580632222415 ], [ -72.951766459752847, 41.541080684420727 ], [ -72.944503949465215, 41.543113787072983 ] ], [ [ -73.420581939774891, 41.4176349046528 ], [ -73.419895003748579, 41.421002896729441 ] ], [ [ -73.420581939774891, 41.4176349046528 ], [ -73.425814705516544, 41.418553839586551 ], [ -73.455904245434979, 41.41007753770117 ], [ -73.461404949949795, 41.405244501768891 ], [ -73.462899870395788, 41.403993491843018 ], [ -73.476319207638383, 41.397744377538757 ], [ -73.478318084290905, 41.394242375647295 ], [ -73.47763909085279, 41.391812397087378 ], [ -73.47598312997188, 41.388242435645417 ], [ -73.476868063822025, 41.385514441675213 ], [ -73.485580658069608, 41.383691358187136 ], [ -73.504981854155488, 41.389085119693085 ], [ -73.530584767699438, 41.392864839163792 ], [ -73.542783209658822, 41.389347737370471 ], [ -73.557644539450138, 41.385040612979189 ], [ -73.57644273552566, 41.383179435488167 ], [ -73.582660480997845, 41.383640371135328 ], [ -73.598154895200935, 41.390682181029746 ], [ -73.600115828604345, 41.392578151994279 ], [ -73.60098583381054, 41.398182114609739 ], [ -73.603045773022771, 41.401485077609955 ], [ -73.620554158632132, 41.416392834352841 ], [ -73.627214944754172, 41.425166728236363 ], [ -73.630418844179658, 41.429816675565093 ], [ -73.63428677941485, 41.444270569783335 ], [ -73.642129541106968, 41.457648434402898 ], [ -73.649171351290889, 41.474067294167391 ], [ -73.65412319534046, 41.482268212485877 ], [ -73.664749805341259, 41.490905080682964 ], [ -73.66835869362761, 41.497561019710716 ], [ -73.679085281519718, 41.503790926256137 ], [ -73.683319146877366, 41.512915913783026 ], [ -73.683693133242045, 41.513353911789999 ], [ -73.696990637823021, 41.527830840855351 ], [ -73.708106203298172, 41.536360775426466 ], [ -73.716467879618079, 41.544863734173553 ], [ -73.722243644569446, 41.547312696448856 ], [ -73.732367224818859, 41.548292620953639 ], [ -73.742772793396, 41.547880539262742 ], [ -73.762036049558873, 41.540743415646546 ], [ -73.771572702694655, 41.539072375436007 ], [ -73.805659473078506, 41.53039023370934 ], [ -73.812770223538891, 41.530004209034409 ], [ -73.828180698630703, 41.532579162120577 ], [ -73.834467483677955, 41.532606141118521 ], [ -73.845034118910192, 41.530916103810156 ], [ -73.861474542166235, 41.524656044544727 ], [ -73.875863068553414, 41.525762001048555 ], [ -73.890282588283881, 41.524133956500108 ], [ -73.905785079924271, 41.522828910365519 ], [ -73.916343764570229, 41.527184878432188 ], [ -73.924926508194261, 41.529981851553075 ], [ -73.950247719348297, 41.529618775951157 ], [ -73.955541546119676, 41.527799762363983 ], [ -73.967588126567307, 41.519460739094932 ], [ -73.973737929138267, 41.517796725118856 ], [ -73.997197240419993, 41.519769659929537 ], [ -74.011158928511435, 41.521069599218713 ], [ -74.020015729484925, 41.519486562910728 ], [ -74.032291471506696, 41.519353508662753 ], [ -74.050007074743846, 41.513814441677781 ], [ -74.066905741196791, 41.514336366810248 ], [ -74.067164738462196, 41.514756364862272 ], [ -74.073794609226752, 41.514882335856655 ], [ -74.083384429181038, 41.515973292349621 ], [ -74.099505154692395, 41.522576210769806 ], [ -74.104609058020557, 41.522527189195678 ], [ -74.110361940909982, 41.520547168565422 ], [ -74.121645705157931, 41.514382132443828 ], [ -74.131082528076448, 41.512791095721973 ], [ -74.150484185043297, 41.512513015333532 ], [ -74.168603890186859, 41.51697993270357 ], [ -74.181977667358439, 41.517532877192032 ], [ -74.190758521708858, 41.51729684202347 ], [ -74.207291238958987, 41.511303785677683 ], [ -74.235496783209129, 41.501159690025396 ], [ -74.252716504210397, 41.498737619346883 ], [ -74.26325929084652, 41.496158566030438 ], [ -74.284857781054797, 41.483169459206117 ], [ -74.304793373630289, 41.475559372787998 ], [ -74.315352146757718, 41.469940330980108 ], [ -74.34115469499443, 41.464550233224557 ], [ -74.355199391429394, 41.455009192473582 ], [ -74.370229104227917, 41.447719151411256 ], [ -74.382450816805147, 41.435589134795897 ], [ -74.398526492143233, 41.424110113480729 ], [ -74.423718088907549, 41.415291071369417 ], [ -74.434047925125284, 41.411190059148545 ], [ -74.451251701003542, 41.408977026843708 ], [ -74.466365487436533, 41.40435001130043 ], [ -74.472148420767482, 41.40411699994786 ], [ -74.493327217282385, 41.407317940523598 ], [ -74.502841046996323, 41.406588907242522 ], [ -74.529330176411051, 41.397116769722501 ], [ -74.547006651537231, 41.39643765192681 ], [ -74.568063008358166, 41.389449559770597 ], [ -74.578552685117799, 41.382979541947698 ], [ -74.599083111681125, 41.380698432860868 ], [ -74.611083771037613, 41.374369416738077 ], [ -74.621680487860615, 41.373290364595576 ], [ -74.63089724705641, 41.374186301988878 ], [ -74.637900063397751, 41.373519267796304 ], [ -74.665052371245423, 41.35804628390931 ], [ -74.676222101704383, 41.353858274998707 ], [ -74.684171909535465, 41.354377229194895 ], [ -74.693669677224506, 41.357058148838675 ], [ -74.695554630783334, 41.357714131142849 ], [ -74.702436462240698, 41.359488073636321 ], [ -74.713933195551974, 41.35722204411578 ], [ -74.749691407406985, 41.348879985373962 ], [ -74.764820169533948, 41.343076881770671 ], [ -74.776027990667501, 41.340368782569122 ], [ -74.779643926435796, 41.340807731505215 ], [ -74.787623763530704, 41.3454765647041 ], [ -74.791018704070012, 41.345777518361785 ], [ -74.798968586466117, 41.343107459434435 ], [ -74.808322427783551, 41.343595337041748 ], [ -74.818828277163689, 41.340326256077518 ], [ -74.831157076207418, 41.340639100189136 ], [ -74.837274994904035, 41.338407058362499 ], [ -74.849008852837699, 41.332856997558181 ], [ -74.852678799896523, 41.332394959705553 ], [ -74.874689403237326, 41.340047577005713 ], [ -74.917161758263404, 41.342168028829406 ], [ -74.932977482092681, 41.347347758250379 ], [ -74.948556236464768, 41.349926530110068 ], [ -74.97299988136146, 41.351665207849699 ], [ -74.991607692808401, 41.346435064608436 ], [ -74.996559629769479, 41.346313006992133 ], [ -75.016166439137749, 41.350813725784555 ], [ -75.033020326795523, 41.352313527405286 ], [ -75.045494191182541, 41.357935320769343 ], [ -75.069450065577001, 41.358283072958358 ], [ -75.092078980568814, 41.35671486243097 ], [ -75.128875692274903, 41.367132384209881 ], [ -75.133643663337494, 41.367933330192528 ], [ -75.142028645203283, 41.366945258964762 ], [ -75.173087635744153, 41.35996401733545 ], [ -75.190573588634152, 41.359723846145407 ], [ -75.202086534238944, 41.361443720274963 ], [ -75.212996514183189, 41.360962616575108 ], [ -75.242919594150649, 41.351052376347255 ], [ -75.25566752533183, 41.351281141074836 ], [ -75.268546471365298, 41.346881807594727 ], [ -75.284545333994288, 41.346591367621848 ], [ -75.300765272873491, 41.340289952393583 ], [ -75.314093154417506, 41.340620583601662 ], [ -75.330938979723811, 41.343710104167464 ], [ -75.339033878807598, 41.347070864303497 ], [ -75.350362729611589, 41.353097521901169 ], [ -75.374654542984501, 41.354447847319932 ], [ -75.37948450975, 41.354447714657347 ], [ -75.39192746787208, 41.349507398496051 ], [ -75.396246439749149, 41.349346280812689 ], [ -75.423055203807934, 41.357597502926232 ], [ -75.433119093740913, 41.365009188635185 ], [ -75.447423984719407, 41.370047770495972 ], [ -75.464337793153589, 41.38969620476152 ], [ -75.4913376369948, 41.401937401464238 ], [ -75.505597600474317, 41.407056034360764 ], [ -75.51449361534155, 41.407013866473399 ], [ -75.540127687159625, 41.397434451475206 ], [ -75.560895752764935, 41.380673206820575 ], [ -75.574086780517518, 41.373013042684676 ], [ -75.579884782336521, 41.379905880285641 ], [ -75.583638779525899, 41.392772695105442 ], [ -75.583829776418767, 41.397849644470526 ], [ -75.585965779466491, 41.401244573337671 ], [ -75.604809832286875, 41.420531025690316 ], [ -75.61003685251093, 41.424879878233263 ] ], [ [ -112.008375346856198, 41.18751230567478 ], [ -112.010771260620459, 41.183381274725761 ], [ -112.011015313973246, 41.177930239779649 ], [ -112.009580427026634, 41.175240225857486 ], [ -112.004133803946402, 41.168770197123216 ], [ -111.996878183790884, 41.1651691374161 ], [ -111.99226343339889, 41.158860047952977 ], [ -111.985442737183931, 41.155250953149334 ], [ -111.977409067488352, 41.153297856807029 ], [ -111.965454563022774, 41.149269715570078 ], [ -111.951615178930908, 41.138328552079045 ], [ -111.948724293130368, 41.137458523611286 ], [ -111.918421402711175, 41.13689824351674 ], [ -111.913805566517965, 41.137249200616147 ], [ -111.905230876567728, 41.136783122951904 ], [ -111.902811964980955, 41.136421101806143 ], [ -111.900729040899122, 41.136112083727944 ], [ -111.873172999478342, 41.138419822730839 ], [ -111.860218450484084, 41.138163705344795 ], [ -111.856098590039025, 41.138880662780132 ], [ -111.84361801503249, 41.139998539203468 ], [ -111.827687560346519, 41.138289407761164 ], [ -111.818074881834775, 41.139079312451855 ], [ -111.784788982190008, 41.135359059027863 ], [ -111.76635756544168, 41.124949053902952 ], [ -111.762366677442245, 41.113928191316624 ], [ -111.749687034276192, 41.10900019330581 ], [ -111.733727120238854, 41.087168553070363 ], [ -111.710427274821981, 41.065959904198628 ], [ -111.69835736103542, 41.057979037206302 ], [ -111.662346623349919, 41.041191320624094 ], [ -111.649956705047842, 41.046020246675774 ], [ -111.626671845845564, 41.051052174370824 ], [ -111.614784915084499, 41.050880182287827 ], [ -111.605881968960915, 41.048629222661951 ], [ -111.601120986038694, 41.052902155938433 ], [ -111.594308019859554, 41.053630147491603 ], [ -111.589738029291624, 41.059372057200079 ], [ -111.582528064822753, 41.058910068361442 ], [ -111.55413216691656, 41.065459978751335 ], [ -111.549005188595146, 41.064818992101308 ], [ -111.53876625093308, 41.058059106876513 ], [ -111.532083281761928, 41.056350138433338 ], [ -111.529687303970675, 41.052887195489639 ], [ -111.525499345767827, 41.046279304096672 ], [ -111.501832502376431, 41.030159577462477 ], [ -111.487062597640261, 41.013580856601948 ], [ -111.45148661414008, 40.986252209944887 ], [ -111.442659546345823, 40.971551330944592 ], [ -111.438653540864422, 40.97039134504147 ] ], [ [ -122.541595698401593, 45.54839312288086 ], [ -122.52759434848204, 45.54803535874187 ], [ -122.495930175759895, 45.543610169881397 ], [ -122.473677351600784, 45.543691507289559 ], [ -122.465464270703109, 45.542496570489519 ], [ -122.436684974979357, 45.540011881195433 ], [ -122.427270535990871, 45.542356443026179 ], [ -122.420249050788158, 45.543017139245258 ], [ -122.406626236400413, 45.540416747508949 ], [ -122.392278057469284, 45.545522056903032 ], [ -122.370994281414085, 45.545653187622214 ], [ -122.330319247917004, 45.542311548328165 ], [ -122.321961551520317, 45.540308758867546 ], [ -122.31056315957116, 45.539552604397002 ], [ -122.283515267734316, 45.542481436793068 ], [ -122.263991233707216, 45.543273731580044 ], [ -122.242772599646415, 45.541464359503678 ], [ -122.232208459707309, 45.542969646168217 ], [ -122.216275209266158, 45.547250533981241 ], [ -122.192561135126581, 45.549552058053159 ], [ -122.172741613782634, 45.558141344246778 ], [ -122.155428357740206, 45.570645776839037 ], [ -122.146259719283719, 45.574479806000461 ], [ -122.137159214569323, 45.577336883727696 ], [ -122.115730418098337, 45.579837716893906 ], [ -122.102139286712045, 45.580281943846757 ], [ -122.092544391354508, 45.582596883942934 ], [ -122.054293759696549, 45.597191864268282 ], [ -122.034024372726662, 45.602573482197577 ], [ -122.018352739571597, 45.61081806129279 ], [ -122.001724670186064, 45.613901283084303 ], [ -121.989059364102559, 45.614575149673406 ], [ -121.952459748303298, 45.631200601361307 ], [ -121.924948750097869, 45.639970798874586 ], [ -121.912492018750797, 45.646400964658284 ], [ -121.895184307349155, 45.653997284462555 ], [ -121.889958151142082, 45.658706294669066 ], [ -121.878366332590815, 45.668860898729356 ], [ -121.866745939316402, 45.67354847578352 ], [ -121.848412248977951, 45.678111519986658 ], [ -121.835711766409801, 45.68362675343122 ], [ -121.823989027947462, 45.69545144037324 ], [ -121.819722603788492, 45.697189853616493 ], [ -121.793868917188775, 45.697618199535029 ], [ -121.771127019613417, 45.69160171429359 ], [ -121.755986695187417, 45.692146152119719 ], [ -121.743972549480759, 45.69116074424533 ], [ -121.731052340008233, 45.692747083806125 ], [ -121.719835929776664, 45.690843018893638 ], [ -121.710147633068175, 45.690709540344201 ], [ -121.70296316303849, 45.688074933071881 ], [ -121.68592835396143, 45.688221866716013 ], [ -121.680817241858648, 45.689700076165096 ], [ -121.672624509606194, 45.694767257528156 ], [ -121.657762878584336, 45.698031080572285 ], [ -121.63395795197647, 45.700231806048507 ], [ -121.620983226649187, 45.699979302880827 ], [ -121.6098933588043, 45.70458356340248 ], [ -121.578648824730465, 45.706021903008505 ], [ -121.560531417574069, 45.707976805887618 ], [ -121.541591389299001, 45.711960525338718 ], [ -121.534410921272169, 45.713408156912891 ], [ -121.513349370359322, 45.713721158094167 ], [ -121.500373974178103, 45.711107804009089 ], [ -121.49348999212269, 45.710846529750121 ], [ -121.482020425786374, 45.709213746166128 ], [ -121.459479342996545, 45.699223182522957 ], [ -121.450413612992477, 45.696450188868027 ], [ -121.439094692496937, 45.69576753765552 ], [ -121.432820802274847, 45.692126434015194 ], [ -121.428295308973176, 45.689423917121303 ], [ -121.421723404824021, 45.687880781617309 ], [ -121.412078336311708, 45.686847689516185 ], [ -121.402197023493628, 45.687996592677585 ], [ -121.393212929957812, 45.686692723847607 ], [ -121.385157455312878, 45.686900197061767 ], [ -121.372655745323343, 45.695308513311232 ], [ -121.36871475053313, 45.696554317952817 ], [ -121.359510122638042, 45.694941408744434 ], [ -121.345748047394096, 45.69737921234006 ], [ -121.327178172922487, 45.695671446358084 ], [ -121.320537894033407, 45.693861360233392 ], [ -121.30838802126722, 45.695467695777012 ], [ -121.300209629704909, 45.694633184393375 ], [ -121.28464073158996, 45.684020163869384 ], [ -121.278533312096926, 45.67772713886027 ], [ -121.243524410342829, 45.669766421210049 ], [ -121.231959736515066, 45.668973970591644 ], [ -121.213890923074601, 45.665126541631466 ], [ -121.204825133428358, 45.655785639192011 ], [ -121.20139128663601, 45.642463288662881 ], [ -121.206614783844131, 45.629120449479792 ], [ -121.206106814162524, 45.624535180075675 ], [ -121.201629249896129, 45.615553649671611 ], [ -121.195566698960448, 45.610127765250475 ], [ -121.191473534218275, 45.608138540973997 ], [ -121.180434032757177, 45.606537347623707 ], [ -121.169950912378312, 45.602094260735583 ], [ -121.161551171587234, 45.600240841015335 ], [ -121.149506370156445, 45.600546455097259 ], [ -121.131098542918352, 45.603280357440234 ], [ -121.122788625385013, 45.606170099117847 ], [ -121.117330801488052, 45.609937654755662 ], [ -121.088673991619956, 45.634641156655782 ], [ -121.063924058280506, 45.645674503187365 ], [ -121.057463357766821, 45.64725175067592 ], [ -121.001660275918411, 45.646878584502545 ], [ -120.972460956592244, 45.644230690311055 ], [ -120.96088539573104, 45.646054603963805 ], [ -120.945974404208471, 45.653050689870902 ], [ -120.939840201990577, 45.65452207259014 ], [ -120.933485523734987, 45.652780371984107 ], [ -120.914464419444016, 45.637043219035107 ], [ -120.907683455696557, 45.635855430727361 ], [ -120.895048945050476, 45.637359142356992 ], [ -120.886554798668371, 45.640236955288557 ], [ -120.853509443893799, 45.661667583360675 ], [ -120.82764354429905, 45.67190304307497 ], [ -120.813987801158703, 45.676469607453498 ], [ -120.7922793134301, 45.67996215529665 ], [ -120.7452668130842, 45.693290527533904 ], [ -120.737647264085908, 45.694120676945367 ], [ -120.709837712330881, 45.703704011413187 ], [ -120.687853794360564, 45.708047776686826 ], [ -120.679996829698823, 45.711096925016541 ], [ -120.656059909145952, 45.725980349790113 ], [ -120.642988765576447, 45.731676314745968 ], [ -120.637194332426134, 45.736904989032169 ], [ -120.624754256825639, 45.740244110661187 ], [ -120.594175100754327, 45.740565053166534 ], [ -120.570432568660692, 45.736020606396067 ], [ -120.559098344146449, 45.732317015850562 ], [ -120.548373289370289, 45.72636356181453 ], [ -120.531674798208229, 45.710040722788833 ], [ -120.510467848829919, 45.696985924630312 ], [ -120.493203438165452, 45.690425068221238 ], [ -120.475237451916428, 45.687209089570828 ], [ -120.430515484772428, 45.690990371836456 ], [ -120.401818626541385, 45.692644222450113 ], [ -120.384475365270447, 45.692518534143225 ], [ -120.36785368564378, 45.695357038186131 ], [ -120.350964813656461, 45.70044152052386 ], [ -120.278644108330795, 45.707407648563056 ], [ -120.222507665896515, 45.718177413704502 ], [ -120.200188218619601, 45.720870005123295 ], [ -120.193037083395424, 45.724801615684669 ], [ -120.174118457440528, 45.74188699207668 ], [ -120.158322514907695, 45.750932966043329 ], [ -120.146229670040483, 45.754371656233275 ], [ -120.128142103949145, 45.761867242247803 ], [ -120.113603596133558, 45.765374495804956 ], [ -120.064308232425361, 45.773677274960683 ], [ -120.034301148760591, 45.787339824705043 ], [ -120.008901029429992, 45.797307251172121 ], [ -119.994787641914172, 45.801019710841885 ], [ -119.873863610999265, 45.823002112806932 ], [ -119.666503131190254, 45.840857887990808 ], [ -119.656257686954433, 45.840394180818841 ], [ -119.624799884527604, 45.835105955399428 ], [ -119.619292791900449, 45.834159047371557 ], [ -119.431079174622468, 45.802683908184548 ], [ -119.37868909805465, 45.793836742430713 ], [ -119.320242322122198, 45.783730812849861 ], [ -119.200315326311866, 45.763144300356814 ], [ -119.192536836669333, 45.761831213931863 ], [ -119.084563610587949, 45.742559296469203 ], [ -118.880565698994275, 45.676770997392616 ], [ -118.870507443658141, 45.676399741590025 ], [ -118.855928934287832, 45.67932297567711 ], [ -118.847934350972821, 45.677773970312472 ], [ -118.844681216441984, 45.676819558233191 ], [ -118.841968436703624, 45.67601821507948 ], [ -118.830781739250895, 45.672247799588106 ], [ -118.824898702787436, 45.670328059467728 ], [ -118.816180999739885, 45.667416966362815 ], [ -118.807988626772158, 45.664809945427663 ], [ -118.803446953180767, 45.663340381149936 ], [ -118.794584229670704, 45.661180291888627 ], [ -118.774921998593669, 45.663588967874126 ], [ -118.772239953507608, 45.66393565223175 ], [ -118.770021395201908, 45.664225391377116 ], [ -118.762888242378068, 45.665075553148043 ], [ -118.748065976224893, 45.662834779721642 ], [ -118.727679950658668, 45.659093429385017 ], [ -118.706448704760476, 45.655028998253457 ], [ -118.682153986799392, 45.639176122448767 ], [ -118.651283507694671, 45.619095492750738 ], [ -118.648418090917602, 45.614609128683938 ], [ -118.646033986671426, 45.603080740807329 ], [ -118.635227889081321, 45.599382512957938 ], [ -118.636264006768968, 45.597547606345898 ], [ -118.641759240874435, 45.597026204260665 ], [ -118.643291800217895, 45.595439355496509 ], [ -118.636326331484156, 45.58568448225337 ], [ -118.640450557518989, 45.580610880092856 ], [ -118.637120229351368, 45.579386500040151 ], [ -118.629392234608332, 45.580792666917091 ], [ -118.627501690170618, 45.576848415699004 ], [ -118.625451893946973, 45.57648218702046 ], [ -118.615863433620234, 45.581188192182566 ], [ -118.603890717923065, 45.583448915915596 ], [ -118.599462844307951, 45.579107385978915 ], [ -118.584166582063531, 45.580665752380973 ], [ -118.570591991379885, 45.586276362219628 ], [ -118.516355366056089, 45.59568874387567 ], [ -118.502902434637434, 45.600276400963196 ], [ -118.498337043312389, 45.600126925444108 ], [ -118.467645759450562, 45.591434754085292 ], [ -118.455206889281669, 45.584383435415425 ], [ -118.452471030098593, 45.580423115541812 ], [ -118.451717298617751, 45.575612979982999 ], [ -118.461476028650438, 45.553522658618071 ], [ -118.46045495640351, 45.545122450325792 ], [ -118.444512378884298, 45.529819688353236 ], [ -118.379016514347001, 45.458401609624829 ], [ -118.37625755984223, 45.454453309196801 ], [ -118.373956621341563, 45.446011011011478 ], [ -118.355710712583232, 45.429179109816793 ], [ -118.349118605517276, 45.422799420918878 ], [ -118.331841223687917, 45.39970755393351 ], [ -118.307040155864939, 45.382226034099226 ], [ -118.297474934007468, 45.373184040909507 ], [ -118.292565742275059, 45.370513552313014 ], [ -118.266704404129641, 45.361661044361774 ], [ -118.247115333104162, 45.350970143160509 ], [ -118.239418025264868, 45.344980524207983 ], [ -118.229196674793968, 45.342477766736444 ], [ -118.224630778611782, 45.343346452559118 ], [ -118.220018655531632, 45.346879167255125 ], [ -118.214133853367841, 45.348717773609145 ], [ -118.207402908757587, 45.349548310232073 ], [ -118.199537223550323, 45.347895739571747 ], [ -118.193986814508747, 45.352385406604697 ], [ -118.186685184949411, 45.354765928400134 ], [ -118.180038385760142, 45.352705443160147 ], [ -118.169793651166415, 45.352185730867973 ], [ -118.162994428940067, 45.345303177860004 ], [ -118.144791474125839, 45.347292961667932 ], [ -118.141849111044252, 45.347071759327982 ], [ -118.1354011340093, 45.344031283681083 ], [ -118.124805294291662, 45.346132597693355 ], [ -118.119888765787564, 45.344762249923718 ], [ -118.114385775737972, 45.343083859549104 ], [ -118.106739373676717, 45.344220365211982 ], [ -118.096792227670534, 45.342700684901061 ], [ -118.084131484209024, 45.340426818854098 ], [ -118.07781213977259, 45.338728380590361 ], [ -118.07027336863564, 45.331746789666227 ], [ -118.06448095127962, 45.325986330312297 ], [ -118.039648760216835, 45.301406364585148 ], [ -118.035692822291225, 45.294666010521297 ], [ -118.009575801106394, 45.23014205697617 ], [ -118.009735972076797, 45.227433120674597 ], [ -118.015720946013815, 45.218103685641474 ], [ -118.022742316220501, 45.215014193838577 ], [ -118.023710811741068, 45.212153311019762 ], [ -118.01084437082929, 45.197923772753207 ], [ -117.989226971273311, 45.186882555877141 ], [ -117.976986633803975, 45.175460930316568 ], [ -117.96697062397574, 45.170680333929134 ], [ -117.963578840305232, 45.167510167673051 ], [ -117.962679370069367, 45.16078125248729 ], [ -117.968984866705469, 45.153800837379691 ], [ -117.969724660977775, 45.150161966412355 ], [ -117.947930188499285, 45.08753189512796 ], [ -117.940470685849007, 45.059403059155606 ], [ -117.924054292461562, 45.025741829544231 ], [ -117.920297163529028, 45.019343754776159 ], [ -117.885845109612546, 44.979911072820961 ], [ -117.854775126391658, 44.955511243957758 ], [ -117.83535419139379, 44.933537952094561 ], [ -117.820848278266695, 44.920068586100903 ], [ -117.817540752990155, 44.912320679649852 ], [ -117.817222371981501, 44.890249509381938 ], [ -117.814137876720153, 44.861800400046597 ], [ -117.814042695281771, 44.82681373161828 ], [ -117.810980632453152, 44.803384411418662 ], [ -117.81026496885795, 44.796189633984511 ], [ -117.808573723749163, 44.782946014750785 ], [ -117.807545513136986, 44.773810285520867 ], [ -117.807523788737569, 44.762015728922329 ], [ -117.808874371829546, 44.755904059359615 ], [ -117.807364867196711, 44.75308505404567 ], [ -117.802783999768096, 44.747263894488064 ], [ -117.773786308762865, 44.723844283357018 ], [ -117.693470922903501, 44.697430776044861 ], [ -117.679878025213768, 44.689228133878515 ], [ -117.657387163106989, 44.682928938292108 ], [ -117.622667961002961, 44.67052511948873 ], [ -117.606573570398339, 44.661094312326469 ], [ -117.554462575732174, 44.647992464018486 ], [ -117.535997301746846, 44.640979468019523 ], [ -117.516373004267948, 44.628977426578359 ], [ -117.50906094166109, 44.626799021269946 ], [ -117.481453538263068, 44.610497471784861 ], [ -117.475087852991976, 44.605126115462127 ], [ -117.465771570753859, 44.590736620423151 ], [ -117.431240497060102, 44.566724670859131 ], [ -117.409070228570144, 44.534634477570933 ], [ -117.401339147988281, 44.531712034456916 ], [ -117.39504846385168, 44.524592688814657 ], [ -117.373242136102192, 44.518030440744901 ], [ -117.374089072700372, 44.511560507135506 ], [ -117.367326553784551, 44.505831130735416 ], [ -117.368096545131067, 44.49907118285936 ], [ -117.358611980710805, 44.485768530301186 ], [ -117.356920057871903, 44.484670424402026 ], [ -117.347319836297203, 44.484348871354193 ], [ -117.34494930709964, 44.483398728486954 ], [ -117.341594704121093, 44.476231482047339 ], [ -117.334457353649412, 44.469109022054347 ], [ -117.334274792729772, 44.463076965945739 ], [ -117.3291670381427, 44.459369649081715 ], [ -117.327230376321111, 44.455977514303399 ], [ -117.329342515289753, 44.448768579103238 ], [ -117.322930660265811, 44.442717173129537 ], [ -117.321374883314562, 44.437278045314201 ], [ -117.313826808496742, 44.429106562989745 ], [ -117.30762113465228, 44.417238130896799 ], [ -117.306873863550905, 44.412046051548472 ], [ -117.311998141540855, 44.40646529450818 ], [ -117.306768594595184, 44.39996495745708 ], [ -117.307570001675856, 44.384045885241605 ], [ -117.296354137002055, 44.374776202362263 ], [ -117.280587810307537, 44.331615039634961 ], [ -117.26485881836031, 44.31715309700742 ], [ -117.235884704462123, 44.30148848457722 ], [ -117.219689966939839, 44.288711593248628 ], [ -117.210395777023265, 44.282241095331273 ], [ -117.20117774668141, 44.271712585948094 ], [ -117.194421822349014, 44.269110243427725 ], [ -117.189215141679071, 44.263757964790067 ], [ -117.178951321868027, 44.259378450526768 ], [ -117.174239285823404, 44.254919205551026 ], [ -117.175208219021357, 44.246808222520244 ], [ -117.164877331758532, 44.229348688693399 ], [ -117.161660378382791, 44.226208527875059 ], [ -117.15304456792245, 44.221859107938585 ], [ -117.149041398988672, 44.213275895226758 ], [ -117.14302625563856, 44.206168590856116 ], [ -117.142934794813229, 44.198615565304515 ], [ -117.136423989383104, 44.190166232700072 ], [ -117.131879471602616, 44.175265973604489 ], [ -117.116828561806756, 44.163256224301087 ], [ -117.109921054118757, 44.151895861558074 ], [ -117.100572824983843, 44.140916384013856 ], [ -117.083074087670724, 44.127693514970161 ], [ -117.063248270548357, 44.118072552670405 ], [ -117.016460681899858, 44.083951246892688 ], [ -117.01234285097145, 44.083310055224437 ], [ -117.011680322519879, 44.080640012607248 ], [ -116.997299267524269, 44.069759300464106 ], [ -116.990284319487131, 44.060649926503928 ], [ -116.974789844225953, 44.048419141358188 ], [ -116.972502101299028, 44.046489025199037 ], [ -116.96548692942801, 44.040914671265305 ], [ -116.960850425516085, 44.03780244062807 ], [ -116.953728198839158, 44.034136092608044 ], [ -116.948947877799853, 44.027993841423935 ], [ -116.947529733739032, 44.024667759544258 ], [ -116.944380620338109, 44.017514578926409 ], [ -116.9429624696524, 44.014253497415957 ], [ -116.939828346274453, 44.006951316857801 ], [ -116.928947661656252, 43.986755616680952 ], [ -116.912812357074415, 43.971385673403717 ], [ -116.890630026064144, 43.95440541765786 ], [ -116.837746883435045, 43.925562551662345 ], [ -116.814328827482854, 43.906881175881452 ], [ -116.807351456612949, 43.89906772609514 ], [ -116.797247987873021, 43.880680952348094 ], [ -116.775263930855616, 43.864706654032794 ], [ -116.7685453526489, 43.857436212793743 ], [ -116.765328120635218, 43.850736943713322 ], [ -116.758748205569887, 43.825456182111935 ], [ -116.751252412513594, 43.807083492222418 ], [ -116.747477392143452, 43.801495221767944 ], [ -116.722984780189719, 43.775751719787571 ], [ -116.699788643857062, 43.714062917278511 ], [ -116.698019736929652, 43.705643761708423 ], [ -116.697951839592676, 43.703552737828865 ], [ -116.696136936796506, 43.695595586830251 ], [ -116.691828082149215, 43.690006365245267 ], [ -116.68918940342401, 43.68631022822963 ], [ -116.68780225219156, 43.679852113025987 ], [ -116.685407451941046, 43.676421989931619 ], [ -116.676752550918309, 43.670665613264454 ], [ -116.658884841324706, 43.662458886132612 ], [ -116.64499070218659, 43.642660233157279 ], [ -116.630685335595217, 43.633759671971113 ], [ -116.614128979205731, 43.623006040236852 ], [ -116.588605720521031, 43.604648102145831 ], [ -116.581216025011173, 43.601466851041771 ], [ -116.571858098565301, 43.600306549511878 ], [ -116.551908700421109, 43.598696918629315 ], [ -116.53683913328473, 43.597994450495868 ], [ -116.512634302160393, 43.59921371274018 ], [ -116.502323610733072, 43.59948040085682 ], [ -116.472390277477999, 43.596801540133065 ], [ -116.439300124330956, 43.593291614296959 ], [ -116.412494114101179, 43.593160879998415 ], [ -116.392490233334513, 43.593111340707317 ], [ -116.368451894695042, 43.593232702178312 ], [ -116.353374823183202, 43.596119303343173 ], [ -116.348012928572189, 43.596951162492338 ], [ -116.295307606114832, 43.596949816029024 ], [ -116.288230374514455, 43.595961641092821 ], [ -116.272847470527978, 43.589751273993421 ], [ -116.242654347191845, 43.575147564536344 ], [ -116.234532478147059, 43.571847363349946 ], [ -116.214124107147455, 43.570935843578795 ], [ -116.195698036245759, 43.566235389324831 ], [ -116.189574358565039, 43.563416242341447 ], [ -116.159914714491123, 43.541896553786074 ], [ -116.153196410635559, 43.531211411255249 ], [ -116.143457450115008, 43.509826216810282 ], [ -116.138057557569425, 43.502975098520956 ], [ -116.1210509342623, 43.488104669281142 ], [ -116.104013203689462, 43.476435233613778 ], [ -116.058733923357522, 43.432943045035593 ], [ -116.028287781583629, 43.415260271701953 ], [ -115.974078191756945, 43.364615693615015 ], [ -115.850867011359256, 43.249942190358432 ], [ -115.783421977529343, 43.187573889662517 ], [ -115.771882597983037, 43.180684661068348 ], [ -115.763988035699484, 43.177464498073299 ], [ -115.748512744300371, 43.174084164543828 ], [ -115.721391064333872, 43.168617576409154 ], [ -115.695413002117903, 43.159569043828327 ], [ -115.67216609511479, 43.147013599295036 ], [ -115.663074891274746, 43.139353442573245 ], [ -115.652992042526463, 43.126750292746685 ], [ -115.638729433170241, 43.110972070263863 ], [ -115.622598265509367, 43.09877278883075 ], [ -115.613788953104986, 43.087701660410232 ], [ -115.604132894534658, 43.074701524848052 ], [ -115.563891793820986, 43.032040902624459 ], [ -115.548119462329097, 43.008980695088518 ], [ -115.534939191938889, 42.999932468445856 ], [ -115.490105735265061, 42.962089561054654 ], [ -115.483371596423453, 42.958709437472777 ], [ -115.477902089112618, 42.957439337827928 ], [ -115.451191274401637, 42.956481856635449 ], [ -115.425930093571338, 42.945948420926946 ], [ -115.406022329893077, 42.945887077790069 ], [ -115.389348653267632, 42.948377789768386 ], [ -115.374063542030896, 42.954969518872531 ], [ -115.360334043997497, 42.957868281665981 ], [ -115.346917486297656, 42.956899060029549 ], [ -115.332791141906498, 42.951016842571462 ], [ -115.323333535573042, 42.950879689031211 ], [ -115.312998108131225, 42.953618513710822 ], [ -115.303784417090412, 42.953717365139049 ], [ -115.293250019114012, 42.956196188442512 ], [ -115.28884210286266, 42.957348114224217 ], [ -115.287384432890207, 42.960228080986589 ], [ -115.258583511205899, 42.962757615992551 ], [ -115.250307489078168, 42.966926469468284 ], [ -115.227013207600891, 42.972618062398894 ], [ -115.208866656265684, 42.973914762886146 ], [ -115.201720414235183, 42.973124650913881 ], [ -115.194214278570698, 42.970415540728872 ], [ -115.181713446649482, 42.960043378848795 ], [ -115.175885894711257, 42.957144296430386 ], [ -115.148258580731621, 42.953775872779865 ], [ -115.119052548273714, 42.951455428538054 ], [ -115.086277358935391, 42.942471957573794 ], [ -115.074874052694156, 42.939392795162519 ], [ -115.064385497414705, 42.938042642593977 ], [ -115.00115287761318, 42.938071724991879 ], [ -114.955790231296362, 42.937960941674156 ], [ -114.949657523948417, 42.935122843117085 ], [ -114.932807114631345, 42.923590582567826 ], [ -114.864554398984168, 42.873220567773735 ], [ -114.850518214026977, 42.866819356568449 ], [ -114.833592662642118, 42.853730116804705 ], [ -114.815949283153657, 42.836178879128148 ], [ -114.790319325070683, 42.821381515421329 ], [ -114.749678235173079, 42.794299966361855 ], [ -114.727946379698821, 42.779208842306652 ], [ -114.724384076479794, 42.774989828399654 ], [ -114.711118537185769, 42.7681387553937 ], [ -114.703116981749545, 42.76629970639366 ], [ -114.684153371337473, 42.762568592457058 ], [ -114.616050336328726, 42.741820372302762 ], [ -114.593280224282481, 42.736190362247875 ], [ -114.562501367745966, 42.731708312829419 ], [ -114.552417056733063, 42.72809934749538 ], [ -114.545841168674471, 42.724196406437606 ], [ -114.535512958958307, 42.712779623477843 ], [ -114.518014005723032, 42.68877013138151 ], [ -114.510538277373456, 42.680267321594279 ], [ -114.478759560753431, 42.655579718124521 ], [ -114.470040981390682, 42.651028755686987 ], [ -114.445340936050556, 42.642078775198257 ], [ -114.363703655726781, 42.613110936247111 ], [ -114.309367940193397, 42.582341471566977 ], [ -114.29588093963946, 42.577100550513684 ], [ -114.15503372536125, 42.576247041469848 ], [ -114.144217447802788, 42.57435882844382 ], [ -114.130829501724534, 42.576368466267681 ], [ -114.111972418640548, 42.576246025765869 ], [ -114.105709398563008, 42.575257899086708 ], [ -114.095678914697231, 42.576386642076777 ], [ -114.068864983046211, 42.576547016598646 ], [ -113.931996724843856, 42.576353085841845 ], [ -113.86789354334023, 42.576152833969573 ], [ -113.854878916149005, 42.57453159351693 ], [ -113.840186499567523, 42.568592346523978 ], [ -113.803256225280307, 42.568240632388445 ], [ -113.7876477720271, 42.568301331907101 ], [ -113.736383775031896, 42.568838476165844 ], [ -113.724726908416045, 42.568887356166414 ], [ -113.630520772995823, 42.568814416815307 ], [ -113.623517411514911, 42.568757349305102 ], [ -113.540135792345012, 42.568729563008119 ], [ -113.517737691593055, 42.570617342916414 ], [ -113.416696083951791, 42.512046185538843 ], [ -113.404132384125347, 42.499927223984066 ], [ -113.369689414313484, 42.458778595453168 ], [ -113.233090789812366, 42.342427754305412 ], [ -113.192048555978289, 42.313528037647849 ], [ -113.143361892206869, 42.267389405448441 ], [ -113.137228405342711, 42.263948414992988 ], [ -113.123039558197888, 42.259859391357054 ], [ -113.105690959182496, 42.253030375977694 ], [ -113.096261730730618, 42.247518384438784 ], [ -113.090006265463373, 42.241960412137622 ], [ -113.078639307457266, 42.22321155488342 ], [ -113.075557563043418, 42.220918563991937 ], [ -113.07186585236181, 42.219980555716425 ], [ -113.06054470190999, 42.220918490137137 ], [ -113.056181039899343, 42.219888479805881 ], [ -113.048444663939648, 42.214868495645682 ], [ -113.045385947860524, 42.208379549862791 ], [ -113.042052222408188, 42.205308566453752 ], [ -113.026397419840464, 42.200769539925311 ], [ -113.023880630315801, 42.197698560638536 ], [ -113.021324895976505, 42.188150650025278 ], [ -113.000612549076678, 42.169756748503005 ], [ -112.988780523806625, 42.157255840580966 ], [ -112.969464130366816, 42.130892043132967 ], [ -112.929146239970919, 42.094706241742919 ], [ -112.832908156629685, 41.999320644007931 ], [ -112.826217581845441, 41.99290371740107 ], [ -112.817856109723166, 41.987437767877566 ], [ -112.791505751008572, 41.976412829890656 ], [ -112.759502701063155, 41.965739871345228 ], [ -112.747349410713127, 41.961741902094616 ], [ -112.692466326385826, 41.960970894826794 ], [ -112.675362205213744, 41.954151005925603 ], [ -112.652902331244263, 41.93436032967216 ], [ -112.637439098782195, 41.925682466012447 ], [ -112.616268134412437, 41.914310640644921 ], [ -112.585034638375632, 41.90575076049803 ], [ -112.576689026814378, 41.897022893482358 ], [ -112.572920203215176, 41.894832925538637 ], [ -112.566160521949769, 41.894252930345608 ], [ -112.542281640266538, 41.897300869614135 ], [ -112.534614993379378, 41.896949871172914 ], [ -112.479777236820297, 41.881642161544555 ], [ -112.46381673118772, 41.870461387638578 ], [ -112.420818738345034, 41.822584262290448 ], [ -112.412021930566027, 41.816953380009267 ], [ -112.40778802638502, 41.815054424734704 ], [ -112.401844175458493, 41.814314459129882 ], [ -112.387196573910217, 41.816263488611234 ], [ -112.357839299843505, 41.815122624290261 ], [ -112.345319567725085, 41.812372716315686 ], [ -112.330709823609354, 41.806284866658892 ], [ -112.320425031376203, 41.804563935046538 ], [ -112.287573570619131, 41.794623220782761 ], [ -112.276495633809049, 41.786155392919085 ], [ -112.270911609553536, 41.779414516089986 ], [ -112.255690173216692, 41.740745232716009 ], [ -112.246443306003798, 41.729965517438835 ], [ -112.235358705627291, 41.723335687114982 ], [ -112.205970817377164, 41.710656031388851 ] ], [ [ -122.541595698401593, 45.54839312288086 ], [ -122.546487556470979, 45.548944497332435 ], [ -122.54969277250909, 45.55095606668192 ] ], [ [ -122.541595698401593, 45.54839312288086 ], [ -122.546907702574416, 45.545435677521475 ], [ -122.548385363899101, 45.538264345932213 ], [ -122.552329815844672, 45.534146232958115 ], [ -122.55966931847874, 45.532589792683105 ], [ -122.570478068915023, 45.536047093372098 ], [ -122.576449129080459, 45.536538020873522 ], [ -122.592254070197754, 45.529221735547395 ], [ -122.596811595776714, 45.528788980715774 ], [ -122.610649218154407, 45.534643877721379 ], [ -122.617880150073177, 45.535639480145107 ], [ -122.62311646598522, 45.531831057619605 ], [ -122.636752299315162, 45.530899866184122 ], [ -122.650587404473342, 45.525794772141708 ], [ -122.65267583511546, 45.526421829821167 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I85\", \"DIST_MILES\": 610.510000, \"DIST_KM\": 982.530000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -79.260873946677464, 36.075089427515358 ], [ -79.259408923691026, 36.07559744058829 ] ], [ [ -86.322135522150091, 32.366757462739827 ], [ -86.300055902621892, 32.367619494515587 ], [ -86.293456710335192, 32.367280520352288 ], [ -86.287230506959204, 32.365159594456244 ], [ -86.268537980766013, 32.365758625062391 ], [ -86.256437555538852, 32.359387833398401 ], [ -86.25071538284547, 32.35867886804607 ], [ -86.222073467947581, 32.362668866228383 ], [ -86.213749188390366, 32.362828893855557 ], [ -86.20424287340839, 32.363328916248804 ], [ -86.179225000045676, 32.361349070349029 ], [ -86.165720560324573, 32.362608085964112 ], [ -86.146432965464157, 32.366682039959834 ], [ -86.133325545401959, 32.368257042871569 ], [ -86.115700950717311, 32.368269109125613 ], [ -86.102821491380851, 32.366609208086423 ], [ -86.094055187349767, 32.366079257573872 ], [ -86.080184756852461, 32.36858923354918 ], [ -86.060668089255685, 32.368009325164437 ], [ -86.05252782805151, 32.368879328921857 ], [ -86.010953620076265, 32.380884104678842 ], [ -85.994542222011731, 32.386628998422637 ], [ -85.96049174862469, 32.405499627333491 ], [ -85.942585528105297, 32.417569358739208 ], [ -85.925884247432805, 32.424287252652114 ], [ -85.897571654151193, 32.428357308159008 ], [ -85.872119199385537, 32.437379180075006 ], [ -85.851892711876388, 32.436276349216762 ], [ -85.817530032610179, 32.444627296616204 ], [ -85.788087346514942, 32.44476848335448 ], [ -85.76789191661112, 32.447789512822141 ], [ -85.752426563587932, 32.448437591090176 ], [ -85.729828118161848, 32.454877460720091 ], [ -85.714659904724925, 32.465668143600766 ], [ -85.692153466159667, 32.472866969942892 ], [ -85.680350232343557, 32.476429884308779 ], [ -85.666509901584433, 32.476349931818582 ], [ -85.659269744625007, 32.47753991328041 ], [ -85.636259319668412, 32.487137645643244 ], [ -85.624319105845771, 32.492748481552653 ], [ -85.60542777996497, 32.50581709814896 ], [ -85.580533241836122, 32.516665839338451 ], [ -85.565555944987395, 32.528594519726518 ], [ -85.541072406662508, 32.539416262399172 ], [ -85.533893251020004, 32.543215168127638 ], [ -85.521456993455146, 32.552454924363644 ], [ -85.506297652349062, 32.558786777325302 ], [ -85.499949508818517, 32.561414716573218 ], [ -85.469202655721062, 32.580335310484649 ], [ -85.451105168216912, 32.594933963179429 ], [ -85.40421281969769, 32.615464583742778 ], [ -85.372076902409134, 32.63178324897698 ], [ -85.356428456231797, 32.640084073196398 ], [ -85.352362346680522, 32.64372298137539 ], [ -85.331540830518549, 32.673011177653706 ], [ -85.321607578161718, 32.685843827707764 ], [ -85.312238356856852, 32.702013369726828 ], [ -85.301152094722383, 32.721341819865323 ], [ -85.293652901104892, 32.730718562436643 ], [ -85.284939675133359, 32.741491266325539 ], [ -85.281941597116372, 32.745164165294206 ], [ -85.229800307257875, 32.803226699152269 ], [ -85.202707652715603, 32.833849948955944 ], [ -85.185610214308937, 32.848040630845055 ], [ -85.178576041445211, 32.854712477007411 ], [ -85.161645627740356, 32.870463118620428 ], [ -85.151307364095288, 32.878148957227943 ], [ -85.144487195260567, 32.883767835749929 ], [ -85.11418253181273, 32.918496026344719 ], [ -85.100983330166457, 32.943665395096595 ], [ -85.096596243340073, 32.949326262810821 ], [ -85.070556639902151, 32.97081782506632 ], [ -85.054114208591741, 32.977645741311065 ], [ -85.040564842430115, 32.981795714658439 ], [ -85.029417575194103, 32.98897558907813 ], [ -85.012640180566066, 33.000243390061009 ], [ -84.988049614959763, 33.017234110385438 ], [ -84.969785318486572, 33.041945569164525 ], [ -84.945690820912418, 33.060106203131305 ], [ -84.925068400639148, 33.07525388622139 ], [ -84.912128184500645, 33.089543553053929 ], [ -84.908596154771701, 33.096562377268846 ], [ -84.905758187200277, 33.108304071470755 ], [ -84.893062046949225, 33.129063547983975 ], [ -84.868266699204909, 33.15988176327307 ], [ -84.86254469785716, 33.174819360823271 ], [ -84.850993554786967, 33.190061954747151 ], [ -84.820651049829635, 33.215380274676257 ], [ -84.812814938121363, 33.223406051249917 ], [ -84.80791692139465, 33.233430765904899 ], [ -84.806635974267763, 33.241509533471621 ], [ -84.80477416842254, 33.26648787149778 ], [ -84.787944149008595, 33.311396751722036 ], [ -84.78065803826037, 33.320063541901703 ], [ -84.777330982395455, 33.32349745966004 ], [ -84.771814901300431, 33.330649287595719 ], [ -84.761347761009816, 33.346326911492014 ], [ -84.760126843535062, 33.360086572517488 ], [ -84.75515294129309, 33.387944892069669 ], [ -84.753130921203109, 33.392144792188958 ], [ -84.748590834315905, 33.396695690383218 ], [ -84.737627617108942, 33.407635453646179 ], [ -84.729616482024511, 33.418568205499504 ], [ -84.72191034273186, 33.427955992859538 ], [ -84.707140000222083, 33.436664813923258 ], [ -84.697381764768195, 33.441303722087518 ], [ -84.692651639264923, 33.442146712824872 ], [ -84.693795678737487, 33.443073686387301 ], [ -84.67783432902435, 33.455104419263996 ], [ -84.670159204733437, 33.466373148227639 ], [ -84.638618591064017, 33.500094339070372 ], [ -84.632003502844313, 33.511092093180956 ], [ -84.625824404919825, 33.519121914217635 ], [ -84.615974198802562, 33.525823770115359 ], [ -84.602912909492119, 33.532342632352247 ], [ -84.577567376845792, 33.54599933271502 ], [ -84.56866318327765, 33.549680252113021 ], [ -84.539129569170029, 33.562760955473323 ], [ -84.533941487274191, 33.566910855749647 ], [ -84.513128192341384, 33.584900414708294 ], [ -84.4876377178539, 33.602542902187231 ], [ -84.486020717507103, 33.606414793879658 ], [ -84.487195907724072, 33.618080500791976 ], [ -84.478688663702854, 33.620429392570408 ], [ -84.461949117142098, 33.619945310847214 ], [ -84.458325049265412, 33.624107182492395 ], [ -84.455861005408323, 33.627200088232208 ], [ -84.456746124122702, 33.634859894459133 ], [ -84.452572059840676, 33.641211705301956 ], [ -84.449039981986232, 33.644690594204882 ], [ -84.44842996822446, 33.64527357545964 ], [ -84.446605924568416, 33.646811524716028 ], [ -84.445728902718244, 33.647482502084181 ], [ -84.443996859440276, 33.648810457282906 ], [ -84.429531495294768, 33.660422067833068 ], [ -84.416912124786606, 33.666482832673665 ], [ -84.411678088548896, 33.681340409284665 ], [ -84.408099988931184, 33.684060315353364 ], [ -84.401850785096869, 33.685807230330653 ], [ -84.400103744798699, 33.68813815775291 ] ], [ [ -79.125372474814895, 36.059119270088118 ], [ -79.114088198791464, 36.059470408820467 ], [ -79.099485825338249, 36.055930618117543 ], [ -79.082517421180057, 36.059027807827107 ], [ -79.026684043753548, 36.039810631834655 ], [ -79.012614713233845, 36.038811810987305 ], [ -79.00783160122333, 36.038570871202232 ], [ -78.98563717731534, 36.03796118871599 ], [ -78.973238972199397, 36.036813384555089 ], [ -78.964808836039865, 36.032990537310475 ], [ -78.958353733928632, 36.028382665481367 ], [ -78.952906647497059, 36.02510277007741 ], [ -78.946955549935069, 36.024632864329369 ], [ -78.936365371013622, 36.028463001242272 ], [ -78.922571144062076, 36.028322213183522 ], [ -78.913262999026131, 36.02242539581345 ], [ -78.905664877720156, 36.020174527932419 ], [ -78.890573639650754, 36.014513799556681 ], [ -78.871377329007146, 36.013495102831719 ], [ -78.857247088137555, 36.020083272815121 ], [ -78.847946921867688, 36.028403354508967 ], [ -78.819344426107421, 36.043445677950125 ], [ -78.794166981979913, 36.05857494205123 ], [ -78.776702664978671, 36.071907098968403 ], [ -78.766532478061734, 36.080135184841666 ], [ -78.743284986186467, 36.125164167960406 ], [ -78.726568667611573, 36.145916240649882 ], [ -78.715948470027996, 36.156834292989359 ], [ -78.705603264707065, 36.171986288542215 ], [ -78.686467907432359, 36.190876344298779 ], [ -78.677449717848532, 36.207054277069176 ], [ -78.645574136505871, 36.231266357385685 ], [ -78.624676745625592, 36.249626339526635 ], [ -78.607639509335939, 36.271046220402056 ], [ -78.58802421253128, 36.28933015753919 ], [ -78.580723097187459, 36.295246143604814 ], [ -78.572947970430576, 36.299755152865799 ], [ -78.543856483117935, 36.314766204357412 ], [ -78.537669377048232, 36.31722322437961 ], [ -78.524401147575148, 36.320995288346424 ], [ -78.510668909105888, 36.321064412092198 ], [ -78.496584668031346, 36.321144532698654 ], [ -78.470567243037763, 36.319294747166218 ], [ -78.460870086288836, 36.321526781437527 ], [ -78.453202964843754, 36.324944782749789 ], [ -78.437455723466769, 36.334145751619111 ], [ -78.425873548771577, 36.339184755901357 ], [ -78.41349935565205, 36.339306842619273 ], [ -78.410760314909425, 36.340263847331578 ], [ -78.396195101888566, 36.345665867636328 ], [ -78.386451975543764, 36.354076806729026 ], [ -78.361648659236991, 36.370625728048822 ], [ -78.347244499593145, 36.383446633024896 ], [ -78.338104413394618, 36.393826538166763 ], [ -78.322006275716276, 36.412193370315542 ], [ -78.3008270729175, 36.427071294087057 ], [ -78.295547025763554, 36.430855274045513 ], [ -78.273802848154162, 36.447056182489803 ], [ -78.260420776500524, 36.461254061400801 ], [ -78.237601633858986, 36.478016035748183 ], [ -78.216628581864398, 36.500125973877537 ], [ -78.19088675519626, 36.534705836745246 ], [ -78.184081823039122, 36.54418879975151 ], [ -78.176048147606309, 36.573123518534054 ], [ -78.151916420975567, 36.600883491144238 ], [ -78.14372261919236, 36.616084410242614 ], [ -78.137382918971227, 36.636653235310284 ], [ -78.132073393753771, 36.667303917723011 ], [ -78.11315317502573, 36.713442621315821 ], [ -78.094484896197116, 36.750605475067694 ], [ -78.087268071779235, 36.758123814206861 ], [ -78.080004197881991, 36.762424050296801 ], [ -78.063182421935295, 36.767875450492582 ], [ -78.027430880306085, 36.775929155129731 ], [ -78.005726376885846, 36.787525692783888 ], [ -77.967632521144836, 36.817494637445243 ], [ -77.930096124280055, 36.836008231046414 ], [ -77.915432014263487, 36.845347466366235 ], [ -77.904269856153903, 36.849726595918533 ], [ -77.894397648204446, 36.85097767139407 ], [ -77.874995148898222, 36.849806773476729 ], [ -77.865785956965183, 36.851057842446622 ], [ -77.8582178375338, 36.853678914145775 ], [ -77.840280624423499, 36.862998100672392 ], [ -77.830934552386097, 36.86965920346131 ], [ -77.794939363803763, 36.900619547877014 ], [ -77.738213522540079, 36.935588807104921 ], [ -77.728341314921636, 36.943797878719245 ], [ -77.714326246272137, 36.967079011603388 ], [ -77.707246152545665, 36.976219072467153 ], [ -77.688392732439766, 36.992638214936576 ], [ -77.658721825037375, 37.012657461010683 ], [ -77.61639953289054, 37.046868842857904 ], [ -77.564372916686438, 37.079252211335238 ], [ -77.525477972391741, 37.120359510334836 ], [ -77.520152892985251, 37.129480559018354 ], [ -77.513636914422065, 37.14964064557855 ], [ -77.495188560270037, 37.172910739930046 ], [ -77.490809593801316, 37.186639761147433 ], [ -77.485903503636237, 37.192270755344005 ], [ -77.480952379401884, 37.195390741551449 ], [ -77.471812116678578, 37.198560708057023 ], [ -77.463052831711821, 37.199159669670657 ], [ -77.445474254621502, 37.199868591087522 ], [ -77.436226981805945, 37.202119551664893 ], [ -77.425637583287966, 37.199250500468537 ], [ -77.416565292899492, 37.199949459876827 ], [ -77.41146122334753, 37.205869439260447 ], [ -77.401099975506284, 37.211259391168653 ], [ -77.390037753503265, 37.219079335853294 ] ], [ [ -79.804648716460363, 36.032426500005435 ], [ -79.812804961136351, 36.024736563437664 ], [ -79.82589742640728, 36.018415657680755 ], [ -79.849458279573255, 36.006166835390381 ], [ -79.88205267784204, 35.987025083680933 ], [ -79.887530939148391, 35.982516122471708 ], [ -79.891940215579567, 35.969832161211812 ], [ -79.892543256306766, 35.96771116653499 ], [ -79.895389437452039, 35.959284188930901 ], [ -79.905048976051646, 35.941607245563596 ], [ -79.938978580025946, 35.920786373114318 ], [ -79.945402887732001, 35.916628390660364 ], [ -79.953864352877488, 35.903887399701034 ], [ -79.958479585547124, 35.899676405579832 ], [ -79.976676415180336, 35.894168440255378 ], [ -79.993081193427486, 35.885985454821999 ], [ -80.013689147831442, 35.870787473444828 ], [ -80.036235051158897, 35.865626549862462 ], [ -80.050181619710401, 35.860716595937689 ], [ -80.058573952374559, 35.85885562734066 ], [ -80.072704480243161, 35.860247689514132 ], [ -80.081646818219923, 35.860625727655005 ], [ -80.092145250094035, 35.855486765119387 ], [ -80.103528689470593, 35.854266812908122 ], [ -80.114668134620061, 35.850264858091158 ], [ -80.125051534675421, 35.848937903307281 ], [ -80.129736719479908, 35.847476923528916 ], [ -80.136702020138429, 35.840026952629302 ], [ -80.144179324018083, 35.83530798683536 ], [ -80.162033026520831, 35.827636073866117 ], [ -80.172027428036685, 35.820568126612514 ], [ -80.182274850077349, 35.809597186635877 ], [ -80.187615061808586, 35.805477218551751 ], [ -80.213427035320805, 35.796871370620821 ], [ -80.228426601864911, 35.789535467598483 ], [ -80.260501732373854, 35.780285665101388 ], [ -80.273975162174722, 35.77711874269685 ], [ -80.30215904838218, 35.776867888538192 ], [ -80.327169851479894, 35.771008048762795 ], [ -80.339911281790108, 35.761357174279141 ], [ -80.356009903172335, 35.746190364895895 ], [ -80.387245328409691, 35.723828674443119 ], [ -80.390847507769536, 35.720463711848595 ], [ -80.393502659540175, 35.71696974418952 ], [ -80.403268505226791, 35.689210931257143 ], [ -80.4066717099888, 35.684178970994402 ], [ -80.412446987485694, 35.679258019688589 ], [ -80.440471109286079, 35.666979189833299 ], [ -80.459369886798314, 35.657560298200252 ], [ -80.473095493833867, 35.648477377790485 ], [ -80.487081149637433, 35.637235457396919 ], [ -80.489744276223192, 35.635000471860643 ], [ -80.551613383713274, 35.582872366595261 ], [ -80.558045779096702, 35.572298330857755 ], [ -80.569719428867216, 35.556379253021618 ], [ -80.573930887204071, 35.535921204897072 ], [ -80.570903033554231, 35.520281211751559 ], [ -80.563105000195847, 35.506899265045725 ], [ -80.562167033027976, 35.503038270880722 ], [ -80.563617134099388, 35.498518279582584 ], [ -80.577655657796043, 35.479780433189156 ], [ -80.596554309076268, 35.451399720771079 ], [ -80.60138344926014, 35.448290736152636 ], [ -80.609173663485763, 35.446089718583224 ], [ -80.630605239061865, 35.440248673495965 ], [ -80.64818369858007, 35.438650588074076 ], [ -80.657842945962344, 35.435228587357287 ], [ -80.666876165206816, 35.428320656309189 ], [ -80.672659288025059, 35.418859795575557 ], [ -80.678564417430493, 35.413561860970873 ], [ -80.691122702041071, 35.408830883302087 ], [ -80.697882837207572, 35.403078959247573 ], [ -80.707556931970231, 35.377890407622111 ], [ -80.716002047420787, 35.366793596028316 ], [ -80.720115105479152, 35.362540667135654 ], [ -80.739921344245204, 35.341713035753926 ], [ -80.744353350561923, 35.332306222955395 ], [ -80.748206354144784, 35.324531379733372 ], [ -80.75864342711634, 35.311790536768122 ], [ -80.764686405200763, 35.297050776653663 ], [ -80.775611486402369, 35.284691905795441 ] ], [ [ -80.775611486402369, 35.284691905795441 ], [ -80.762656265441308, 35.284882063059825 ] ], [ [ -80.775611486402369, 35.284691905795441 ], [ -80.781821569750278, 35.282020886093186 ], [ -80.802833881802286, 35.276550743652521 ], [ -80.814873093057088, 35.277092582596545 ], [ -80.832291356293666, 35.273212451714492 ], [ -80.844826569463862, 35.273041300395931 ], [ -80.871162972394998, 35.2679210882863 ], [ -80.878717049642887, 35.26247011642964 ], [ -80.894006206310522, 35.251671169933175 ], [ -80.896272249403665, 35.248062233125246 ], [ -80.899743360144143, 35.242660338372644 ], [ -80.914872670165607, 35.238102281241993 ], [ -80.919656750521568, 35.238479213399309 ], [ -80.931909928504439, 35.241851972292203 ], [ -80.948572222674869, 35.241561779402552 ], [ -80.970224494282206, 35.249610288733528 ], [ -80.982973750318976, 35.254569016175246 ], [ -80.991289918092562, 35.257040857431541 ], [ -80.999820073756581, 35.257967731489416 ], [ -81.013202365515596, 35.257623586834171 ], [ -81.026775658580931, 35.256948447008142 ], [ -81.040279951595295, 35.256368305269014 ], [ -81.04334702633254, 35.257101254352342 ], [ -81.052365264324962, 35.261320061711615 ], [ -81.062191504288919, 35.263989895145762 ], [ -81.082470952256557, 35.264348661224439 ], [ -81.088849084641012, 35.263428608376884 ], [ -81.104017391635082, 35.260068503800348 ], [ -81.133711079747343, 35.264737082009724 ], [ -81.14939745082242, 35.268757835441427 ], [ -81.160017707094411, 35.272556652251744 ], [ -81.163267789681171, 35.274448584118304 ], [ -81.171554023767825, 35.283397342081635 ], [ -81.175788117829498, 35.283916288895462 ], [ -81.181915239015424, 35.282116254740764 ], [ -81.187972377891001, 35.283626166067215 ], [ -81.195358548738611, 35.285858052483064 ], [ -81.202354697340368, 35.28559798384336 ], [ -81.229935248104525, 35.276576831770818 ], [ -81.266076233702009, 35.26283533990123 ], [ -81.283929893723737, 35.260545843372803 ], [ -81.291407156018792, 35.255937668914676 ], [ -81.298144386704237, 35.250284519249085 ], [ -81.308764621708605, 35.241685153884319 ], [ -81.315821784906248, 35.235566913361822 ], [ -81.323925037380548, 35.231396655085604 ], [ -81.333118325268018, 35.225914363837504 ], [ -81.335552398714654, 35.224099286369366 ], [ -81.366910471850417, 35.200843332435099 ], [ -81.387594381641961, 35.19659775490868 ], [ -81.396680778199723, 35.192480503920066 ], [ -81.414160561536463, 35.179442036899594 ], [ -81.424705069884467, 35.172452766185856 ], [ -81.443046994395743, 35.167940296341357 ], [ -81.452081465923868, 35.163862073696947 ], [ -81.460503919147385, 35.159420871979101 ], [ -81.471437481216995, 35.160382589494851 ], [ -81.475405691231742, 35.159779490687455 ], [ -81.502216233332263, 35.143871907044172 ], [ -81.513454752698394, 35.138587707392389 ], [ -81.551497416630255, 35.128787004916092 ], [ -81.569923235900504, 35.122469688351252 ], [ -81.58529697870685, 35.111147485354458 ], [ -81.602417688390034, 35.109949165765144 ], [ -81.625535701572673, 35.102586797279542 ], [ -81.642626402811331, 35.101949479672129 ], [ -81.653261874779972, 35.097737326814332 ], [ -81.659679147053311, 35.096494220872437 ], [ -81.668727508795769, 35.097127043376744 ], [ -81.670108563615841, 35.097268015700251 ], [ -81.678851922507249, 35.096867856458474 ], [ -81.691738502223203, 35.090576697203403 ], [ -81.710355342936495, 35.08076548847599 ], [ -81.726340022007179, 35.076985253387733 ], [ -81.759567217809717, 35.07214661129553 ], [ -81.785537849254482, 35.056785052778579 ], [ -81.806374294363323, 35.048258538673508 ], [ -81.816712504577325, 35.043905282642804 ], [ -81.836388883272463, 35.036313780800846 ], [ -81.883615709940258, 35.024662467948168 ], [ -81.899087942814106, 35.016521086617146 ] ], [ [ -84.393588149839218, 33.795725331793918 ], [ -84.391796087026719, 33.798834243167526 ], [ -84.38217473044854, 33.805479019858396 ], [ -84.367365175146134, 33.812585756822976 ], [ -84.360246914269723, 33.819474546471383 ], [ -84.356965793604402, 33.822473454337263 ], [ -84.350122534596196, 33.824689361474405 ], [ -84.348474472697177, 33.825501332412784 ], [ -84.335602989554786, 33.832173098904818 ], [ -84.320343414987434, 33.83941784140346 ], [ -84.308486961934946, 33.841297732538344 ], [ -84.302932761861072, 33.8496785047004 ], [ -84.294929464724092, 33.856548301216371 ], [ -84.291541343649612, 33.862480144735706 ], [ -84.278921871836189, 33.871844863184101 ], [ -84.266875430714791, 33.887328446996854 ], [ -84.259436150056189, 33.891753310688529 ], [ -84.237706162630147, 33.904826106618735 ], [ -84.230351776024321, 33.908366108091471 ], [ -84.207851580486889, 33.912040275417603 ], [ -84.193445781617299, 33.920135247142447 ], [ -84.163606074534471, 33.933738255497929 ], [ -84.150597281005105, 33.942382191510305 ], [ -84.130195030009844, 33.952243175251709 ], [ -84.103909373672877, 33.963771176450926 ], [ -84.096386883339889, 33.967421166967945 ], [ -84.089611349923914, 33.976565014071866 ], [ -84.083277773124095, 33.989420763791401 ], [ -84.066873592277005, 34.013544470166529 ], [ -84.059389133287155, 34.021742430813184 ], [ -84.030441378163118, 34.045542422042026 ], [ -84.010344168575543, 34.054891534254487 ], [ -83.993253217416921, 34.057081802506374 ], [ -83.973118242542895, 34.056563328798951 ], [ -83.96569488482541, 34.057383509290105 ], [ -83.940310669924145, 34.065681046432189 ], [ -83.917909599665919, 34.07505448152903 ], [ -83.889374220870664, 34.077375168975813 ], [ -83.868919238639478, 34.083875582631904 ], [ -83.847052181921924, 34.086256092804632 ], [ -83.832952503708697, 34.090574373519026 ], [ -83.812214505444359, 34.096933780730033 ], [ -83.797778807706692, 34.099197098623634 ], [ -83.79296457609928, 34.101024185152461 ], [ -83.774477692283952, 34.11421540035947 ], [ -83.762346106381088, 34.117595633098091 ], [ -83.737107019144489, 34.126235932689788 ], [ -83.702864712952461, 34.129257301855006 ], [ -83.680113853491406, 34.133118505502182 ], [ -83.664777292354756, 34.140518538386942 ], [ -83.645459604400045, 34.152497513354398 ], [ -83.640843446885725, 34.156647477394962 ], [ -83.622516803563386, 34.166668468668057 ], [ -83.591502759985801, 34.187866333075874 ], [ -83.579691362278894, 34.194187313286562 ], [ -83.553270469196036, 34.205418324859863 ], [ -83.532402762928967, 34.212479367516472 ], [ -83.522744460335048, 34.218777308724277 ], [ -83.499648715822445, 34.229656260581997 ], [ -83.495597552477363, 34.231716221329428 ], [ -83.477087834549707, 34.246905897430864 ], [ -83.468336515889462, 34.25195679696823 ], [ -83.462897353253069, 34.254756740307442 ], [ -83.442670833484243, 34.268176447773747 ], [ -83.429372636601244, 34.282085117143161 ], [ -83.412946257300248, 34.294787829958949 ], [ -83.38160328973764, 34.310999499278253 ], [ -83.372975029034095, 34.315737400627135 ], [ -83.361644779495208, 34.325285180509468 ], [ -83.32709769708589, 34.343473805730902 ], [ -83.318377372731504, 34.346314758640517 ], [ -83.3085810244892, 34.35011468911793 ], [ -83.290071562925505, 34.364533360287638 ], [ -83.257996352338608, 34.374925187630375 ], [ -83.243897001245941, 34.384743942545533 ], [ -83.228515572300537, 34.391674746876028 ], [ -83.183973309981852, 34.412762209718117 ], [ -83.169492851511038, 34.418243085854812 ], [ -83.141736149608818, 34.437194679122229 ], [ -83.122257553381672, 34.446883499765399 ], [ -83.109661129765968, 34.451743422310187 ], [ -83.089976552185405, 34.463801222691394 ], [ -83.06382259884235, 34.471896140379698 ], [ -83.058222396855115, 34.473842121268802 ], [ -83.049059056896738, 34.476630099341321 ], [ -83.033784443793365, 34.479041107153158 ], [ -83.028443301572892, 34.483787043116131 ], [ -83.022004140923954, 34.490232956625697 ], [ -82.994423101278784, 34.500410918465853 ], [ -82.964269781172163, 34.506209058575315 ], [ -82.941250786712956, 34.511302203846185 ], [ -82.918270743759209, 34.51215341673565 ], [ -82.879328004263726, 34.515471798171546 ], [ -82.843735544718925, 34.527123265129681 ], [ -82.835686221829803, 34.530083396007221 ], [ -82.803909060899628, 34.548535111924082 ], [ -82.760602329163447, 34.562075162400212 ], [ -82.735386428685857, 34.568255884404408 ], [ -82.72505611528365, 34.572154242286473 ], [ -82.711711648962691, 34.573367601927295 ], [ -82.707439498865654, 34.573726716460243 ], [ -82.691821006426252, 34.579457261819826 ], [ -82.66054706034825, 34.59728755822114 ], [ -82.631555075275131, 34.608618633660726 ], [ -82.608955372538972, 34.628631834267878 ], [ -82.599358022335039, 34.632462206151096 ], [ -82.588752628636783, 34.636452612115782 ], [ -82.549307200519166, 34.668223704349927 ], [ -82.536725699897303, 34.674785269104063 ], [ -82.51691888984152, 34.684285140562643 ], [ -82.503559340099258, 34.695195890259193 ], [ -82.498134130249838, 34.715055699726484 ], [ -82.469896414495054, 34.768576986601843 ], [ -82.458344625465188, 34.779265982282098 ], [ -82.447166940170149, 34.786132992227245 ], [ -82.439193477384791, 34.789879003662712 ], [ -82.432479115418957, 34.791748021565176 ], [ -82.417273393217968, 34.791328099516612 ], [ -82.380917553072692, 34.79599722656117 ], [ -82.374653226010238, 34.797344240592707 ], [ -82.368724877416582, 34.800628229867016 ], [ -82.351389978286065, 34.804222261796561 ], [ -82.342425403300169, 34.811897200780408 ], [ -82.336748091598622, 34.814068193965554 ], [ -82.323884417493247, 34.817367196285559 ], [ -82.297095871634554, 34.832348063693004 ], [ -82.290687485505174, 34.836967009778434 ], [ -82.289863436731792, 34.837517003310751 ], [ -82.284103101902332, 34.84104896176985 ], [ -82.278074645607347, 34.850737819002362 ], [ -82.27527447547854, 34.852927788404806 ], [ -82.225474835638224, 34.871559048902036 ], [ -82.224208768574641, 34.872207064895903 ], [ -82.193956265335672, 34.885269470829677 ], [ -82.167710090985807, 34.890056932965457 ], [ -82.159744739728183, 34.892648044946192 ], [ -82.147903228155513, 34.899148146074289 ], [ -82.124800275613239, 34.903168530616504 ], [ -82.121718153956976, 34.904580559677221 ], [ -82.088934002197703, 34.925729678620243 ], [ -82.080762758663994, 34.931821674710221 ], [ -82.073987596286855, 34.939278602204958 ], [ -82.07404861839612, 34.94104155328732 ], [ -82.067586518164646, 34.951188395191849 ], [ -82.056790276496884, 34.959519356962105 ], [ -82.046635010631562, 34.963219430360787 ] ], [ [ -84.924551921531389, 32.405284924075218 ], [ -84.92559689935328, 32.402157043198329 ], [ -84.930807949648582, 32.398464189730582 ], [ -84.931806861305347, 32.390194498953761 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I86\", \"DIST_MILES\": 63.010000, \"DIST_KM\": 101.410000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -113.517737691593055, 42.570617342916414 ], [ -113.226848875623986, 42.598615469959796 ], [ -113.206373833517148, 42.602094467649835 ], [ -113.175279772776136, 42.604516495558457 ], [ -113.135778486009755, 42.618604401113203 ], [ -113.088090876231661, 42.62597439454057 ], [ -113.030456152766789, 42.644765246454007 ], [ -113.013558705168919, 42.652456167672597 ], [ -113.005106493462137, 42.657773105974606 ], [ -112.981907554865018, 42.679203758318245 ], [ -112.958074557115737, 42.69598447680319 ], [ -112.930687762377218, 42.708523265756909 ], [ -112.918511744344329, 42.715794157170627 ], [ -112.879528915418931, 42.74923372564124 ], [ -112.832748942194414, 42.790004711330447 ], [ -112.775409652782159, 42.825423801498047 ], [ -112.770771916963398, 42.831664817544002 ], [ -112.767377048662382, 42.843063839857912 ], [ -112.763157306952195, 42.846614853742622 ], [ -112.710182217949438, 42.865085862341637 ], [ -112.699836729253434, 42.871074865546682 ], [ -112.688531312101574, 42.874133862210066 ], [ -112.679360794164921, 42.874942855862479 ], [ -112.634113072599035, 42.888503865998779 ], [ -112.618824844272638, 42.890678866236776 ], [ -112.590483242057019, 42.897441882933492 ], [ -112.564620491685503, 42.905376913723011 ], [ -112.543518501605732, 42.911372942808285 ], [ -112.528871206182288, 42.912372950000808 ], [ -112.520570603496225, 42.912471952153446 ], [ -112.465832124999636, 42.912532908470006 ], [ -112.449757838100965, 42.912612887625464 ] ], [ [ -112.449757838100965, 42.912612887625464 ], [ -112.443632106546374, 42.913142882273895 ], [ -112.440626239545466, 42.912265874296949 ] ], [ [ -112.449757838100965, 42.912612887625464 ], [ -112.442777146413235, 42.91162087395454 ], [ -112.440175264870334, 42.908607856494477 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I87\", \"DIST_MILES\": 334.780000, \"DIST_KM\": 538.780000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -73.879420800957135, 40.899749739331249 ], [ -73.879664787845684, 40.898540758430684 ], [ -73.880725743175361, 40.896625784359031 ], [ -73.88743148119373, 40.889720859230287 ], [ -73.89731112069137, 40.885684864613815 ], [ -73.903749871677391, 40.878444946327065 ], [ -73.906259766873944, 40.873215018944087 ], [ -73.912836502719472, 40.862023166186276 ], [ -73.917886311404828, 40.856362229267333 ], [ -73.92712596163652, 40.845108359301314 ], [ -73.931206794054503, 40.835640492290715 ], [ -73.931168772174445, 40.828438613903693 ], [ -73.931496712536202, 40.813271867306476 ], [ -73.931817696956784, 40.811741890950501 ], [ -73.929436768863397, 40.809475945002433 ], [ -73.925263900004211, 40.807023014261333 ], [ -73.916193191003913, 40.803140140773365 ] ], [ [ -73.879420800957135, 40.899749739331249 ], [ -73.879313808280429, 40.900706723660747 ] ], [ [ -73.879420800957135, 40.899749739331249 ], [ -73.879313804757288, 40.899749740015132 ] ], [ [ -73.879313808280429, 40.900706723660747 ], [ -73.878329861612642, 40.90568164490594 ], [ -73.877703894971077, 40.908675597705106 ], [ -73.872196120947962, 40.916473499235785 ], [ -73.862903474984648, 40.921542471216547 ], [ -73.858555646146002, 40.925040438684974 ], [ -73.85673973716527, 40.931464339744366 ], [ -73.855686802566368, 40.93839222724403 ], [ -73.854313889989527, 40.94790907213865 ], [ -73.861095670349627, 40.955286903176585 ], [ -73.859760750352265, 40.963358772767734 ], [ -73.861461718517234, 40.971270626438987 ], [ -73.853604060875369, 40.984854440817259 ], [ -73.854344079740088, 40.996660233205148 ], [ -73.851109349894045, 41.009150063830212 ], [ -73.849469457170287, 41.012232029559868 ], [ -73.836149414754232, 41.043233666137034 ], [ -73.833692630414731, 41.051633560791799 ], [ -73.835440638383346, 41.056520480208491 ], [ -73.84102448650323, 41.060105395010893 ], [ -73.857716895019138, 41.061173278971232 ], [ -73.862263756016191, 41.062814228152725 ], [ -73.867108651401622, 41.067342134238238 ], [ -73.87312847856235, 41.070066059202745 ], [ -73.89484071316646, 41.070045930433984 ], [ -73.911060153493736, 41.070225832274588 ], [ -73.917941951593221, 41.072369761181271 ], [ -73.929293872980409, 41.091328422895153 ], [ -73.93128583520766, 41.09311738562004 ], [ -73.932192815124864, 41.093750371255844 ], [ -73.951197284916674, 41.099846173576736 ], [ -73.993134965444511, 41.101779905921141 ], [ -73.997689829015258, 41.102206874004246 ], [ -74.020592233617535, 41.104209724823605 ], [ -74.028595995814825, 41.102790703914543 ], [ -74.039550621772591, 41.097728721089211 ], [ -74.048004385457304, 41.09677869177623 ], [ -74.077185757378501, 41.104110436446184 ], [ -74.084372651589874, 41.108817330844104 ], [ -74.091315522301599, 41.111636254189861 ], [ -74.135808582792947, 41.12131388718867 ], [ -74.141439449253696, 41.121382858136435 ], [ -74.148420256740849, 41.119593850366904 ], [ -74.15036520291433, 41.119062848731318 ], [ -74.155782058395047, 41.117899839517591 ], [ -74.157606021602732, 41.118292824630714 ], [ -74.164601931527812, 41.123220715944434 ], [ -74.16830200529823, 41.134085533667118 ], [ -74.170339034805949, 41.1393344442508 ], [ -74.174946970808264, 41.142301376441729 ], [ -74.184056786064161, 41.144110303723529 ], [ -74.188786754790414, 41.149500198377005 ], [ -74.188557852225699, 41.155908102179893 ], [ -74.184377045690127, 41.162592021727676 ], [ -74.186582126663041, 41.171773871208536 ], [ -74.183004340327358, 41.180737753453052 ], [ -74.181570434860831, 41.184918697424784 ], [ -74.181440825363083, 41.211640292994872 ], [ -74.184179950129973, 41.224839078326333 ], [ -74.175253297648439, 41.233719991481657 ], [ -74.169188639243572, 41.24675782716271 ], [ -74.158515036843184, 41.259830841704812 ], [ -74.151420324316788, 41.273628889158431 ], [ -74.142662618666535, 41.283680942313282 ], [ -74.136055895913387, 41.299068986264338 ], [ -74.128106148289277, 41.3072590325257 ], [ -74.122490311281879, 41.311078063923659 ], [ -74.11663148255353, 41.315339096642688 ], [ -74.112816626811721, 41.323121120017852 ], [ -74.112816655880295, 41.327512121919725 ], [ -74.117333625181587, 41.338910103743537 ], [ -74.117600648842, 41.343320104400796 ], [ -74.11590671961082, 41.347970115111103 ], [ -74.107613970946502, 41.356999160865286 ], [ -74.102296156848482, 41.367001191457845 ], [ -74.102983230563439, 41.381211193423312 ], [ -74.09250054839427, 41.394929249576819 ], [ -74.080667876190176, 41.406278310361706 ], [ -74.069552182484784, 41.417539366591235 ], [ -74.064494468759534, 41.452363396984666 ], [ -74.067065456283842, 41.460526386600527 ], [ -74.078875320462075, 41.479970337477049 ], [ -74.079875334072312, 41.48599733456232 ], [ -74.075679523068843, 41.505795345340729 ], [ -74.073794609226752, 41.514882335856655 ], [ -74.076045659457634, 41.532193292520134 ], [ -74.083010686507436, 41.563306202702861 ], [ -74.088862692603016, 41.587422131833144 ], [ -74.084956841516529, 41.600366123166502 ], [ -74.079220103632721, 41.626550096269945 ], [ -74.076915257184922, 41.645558068851322 ], [ -74.080585337319221, 41.675758995491478 ], [ -74.07755647213726, 41.687839984211017 ], [ -74.079586490135682, 41.699920952709483 ], [ -74.066006000251804, 41.733337941247584 ], [ -74.063550133129993, 41.745991926034414 ], [ -74.056577335306997, 41.7598008966931 ], [ -74.052594441747928, 41.77193185104268 ], [ -74.0506264981492, 41.784458795299102 ], [ -74.052274465398654, 41.804889686216242 ], [ -74.057339340751128, 41.820358590552729 ], [ -74.057660338586899, 41.835460513843486 ], [ -74.060155278302588, 41.848339441107889 ], [ -74.0572943595146, 41.862728378536488 ], [ -74.057957344311347, 41.868488347573347 ], [ -74.057576361209982, 41.884758267336203 ], [ -74.045377696293002, 41.896000248113474 ], [ -74.042371781429395, 41.901058231502489 ], [ -74.044820728756463, 41.925857097959458 ], [ -74.040334858427784, 41.934307067642699 ], [ -74.031996099308557, 41.944324039569359 ], [ -74.030355146684471, 41.945629037392123 ], [ -74.027624225721269, 41.94767703436802 ], [ -74.019041476302263, 41.953968025299702 ], [ -74.016249560382846, 41.957950012056877 ], [ -73.997045859986088, 42.023589452744424 ], [ -73.992468897710609, 42.030589355195055 ], [ -73.973089771086421, 42.08367754019276 ], [ -73.970220774894713, 42.089948444714445 ], [ -73.959295926137159, 42.103388255564624 ], [ -73.955061763901014, 42.126256880527322 ], [ -73.947080766887254, 42.145177582670712 ], [ -73.922254986010898, 42.189273894416139 ], [ -73.919988991245162, 42.194645807159795 ], [ -73.919622906675556, 42.202457672217577 ], [ -73.914366877132395, 42.21846440660017 ], [ -73.905851981636431, 42.232284185296891 ], [ -73.891265305975566, 42.244719999929451 ], [ -73.890326328236753, 42.245432989441902 ], [ -73.883986480692542, 42.250426911326059 ], [ -73.87821965456402, 42.25896367667297 ], [ -73.873137788880868, 42.275733207753824 ], [ -73.872619791776785, 42.282595012289178 ], [ -73.875907660168906, 42.293302690380578 ], [ -73.87452668832816, 42.301782451761952 ], [ -73.859329123558936, 42.335312580236042 ], [ -73.858032150867515, 42.342774379001924 ], [ -73.849579404252609, 42.356701050023176 ], [ -73.846786478464097, 42.365707822493597 ], [ -73.840958648692208, 42.377651542148904 ], [ -73.833076902616867, 42.383693445467017 ], [ -73.828004066557654, 42.387710382279771 ], [ -73.825089152664717, 42.393630251094038 ], [ -73.822152233170016, 42.402320048686647 ], [ -73.809304646541818, 42.414938846322109 ], [ -73.803445805644927, 42.433344436606326 ], [ -73.804772746862596, 42.438589287846789 ], [ -73.811334493263004, 42.449750924960007 ], [ -73.807908581387323, 42.462282643196524 ], [ -73.80590963829107, 42.467309539212408 ], [ -73.806046621337188, 42.472394407176211 ], [ -73.808671508122742, 42.481927127906879 ], [ -73.808053520438463, 42.485658040181775 ], [ -73.793855971944978, 42.503197833598058 ], [ -73.789484112096829, 42.515518748389354 ], [ -73.788660133396547, 42.523796660969367 ], [ -73.785448245873624, 42.529690635170596 ], [ -73.781305389676319, 42.547306480752923 ], [ -73.789072077417643, 42.563896175760881 ], [ -73.788057103822908, 42.577671024644701 ], [ -73.785067206240882, 42.599803799078984 ], [ -73.78079437314824, 42.620368607562803 ], [ -73.778978447631232, 42.629153525060246 ], [ -73.781954316376741, 42.63314743874983 ], [ -73.790872924332518, 42.637504272671848 ], [ -73.808015164363212, 42.645903956190324 ], [ -73.82422642396881, 42.658152610740665 ], [ -73.843062534898436, 42.674231194752416 ], [ -73.845870387979744, 42.679266103481893 ], [ -73.845641375716937, 42.684168050661853 ], [ -73.844313406379158, 42.690560994084223 ], [ -73.846267272797959, 42.700418858916336 ] ], [ [ -73.879313808280429, 40.900706723660747 ], [ -73.879313804757288, 40.899749740015132 ] ], [ [ -73.879313804757288, 40.899749740015132 ], [ -73.879527792664774, 40.898528759512082 ] ], [ [ -73.736010299369866, 43.455544636438447 ], [ -73.74116006304763, 43.459428531465257 ], [ -73.743203980574279, 43.462952458684605 ] ], [ [ -73.736010299369866, 43.455544636438447 ], [ -73.736369295777493, 43.458108592719526 ], [ -73.743203980574279, 43.462952458684605 ] ], [ [ -73.736010299369866, 43.455544636438447 ], [ -73.735743301201097, 43.453488671335151 ], [ -73.721651897563589, 43.433309115314586 ], [ -73.720454936451901, 43.429487187252178 ], [ -73.723132726553487, 43.416387373585565 ], [ -73.721568773929448, 43.410814477133286 ], [ -73.712253202158394, 43.403089686790096 ] ], [ [ -73.743203980574279, 43.462952458684605 ], [ -73.747362820110894, 43.471387291310393 ], [ -73.753473567402551, 43.478146117031663 ], [ -73.753358623256375, 43.487156976145286 ], [ -73.743609479323325, 43.506946784895206 ], [ -73.744868614455669, 43.511314722167754 ], [ -73.741458188894569, 43.52026763397977 ], [ -73.741832733698104, 43.532726476062194 ], [ -73.734662610370748, 43.544365362246559 ], [ -73.735372005863383, 43.553924234875659 ], [ -73.728446023146759, 43.569095054691054 ], [ -73.729064656388758, 43.583895853384632 ], [ -73.726883176229052, 43.593177729319684 ], [ -73.732254464083667, 43.605277566058618 ], [ -73.743057245255372, 43.61163649187467 ], [ -73.749557244402411, 43.618247419578665 ], [ -73.751144987680462, 43.63637418839641 ], [ -73.754722967476141, 43.640013104192896 ], [ -73.763786731751168, 43.645185939957258 ], [ -73.767663152747787, 43.659074734900578 ], [ -73.770745177591422, 43.663232652536188 ], [ -73.779144959242373, 43.668184503015191 ], [ -73.805107784583313, 43.695252920574781 ], [ -73.811669289337075, 43.715043635662255 ], [ -73.823662124641359, 43.726113395007104 ], [ -73.825486447379134, 43.736043270473253 ], [ -73.824830689138636, 43.740933224485957 ], [ -73.821291149878306, 43.74731119025973 ], [ -73.811450044789169, 43.758701969030035 ], [ -73.805346509288697, 43.763622856505094 ], [ -73.80269979999602, 43.769065693268267 ], [ -73.794330936885132, 43.795031853151407 ], [ -73.787267707015019, 43.810751331071891 ], [ -73.773374902677389, 43.830911637823249 ], [ -73.770133353725114, 43.842908196376627 ], [ -73.757202430647453, 43.862568445879901 ], [ -73.754494753388016, 43.871121110206019 ], [ -73.752015086275662, 43.880737729086967 ], [ -73.752626330500419, 43.892608267994184 ], [ -73.758477405851465, 43.906748749987912 ], [ -73.758264615989802, 43.91534641821579 ], [ -73.754198056865718, 43.927137933319514 ], [ -73.742015069749399, 43.947038130812238 ], [ -73.735675487127722, 43.95148997187853 ], [ -73.728939019679231, 43.959854669913511 ], [ -73.723599818311399, 43.982246845620644 ], [ -73.723005100478076, 43.992885449996784 ], [ -73.717237623589753, 44.00157516492029 ], [ -73.715978860442036, 44.006545012493859 ], [ -73.703360922365889, 44.018145722149335 ], [ -73.698272568516913, 44.02914241188973 ], [ -73.689881230873439, 44.035482276007613 ], [ -73.683548845612023, 44.043585075803577 ], [ -73.682252075876661, 44.048291942637952 ], [ -73.683443480116679, 44.061963515892153 ], [ -73.681604708126827, 44.065763416376527 ], [ -73.672854399468761, 44.072301298594745 ], [ -73.663181057357605, 44.076333269528625 ], [ -73.653041749000977, 44.080522244572755 ], [ -73.641568701653185, 44.090142082902545 ], [ -73.614409754671655, 44.106491919259966 ], [ -73.592248657504868, 44.12606065767946 ], [ -73.584749499085305, 44.138451431103078 ], [ -73.582538143536595, 44.153862065583965 ], [ -73.583804543162969, 44.167849690019906 ], [ -73.582370794009861, 44.172889581701291 ], [ -73.577892228429263, 44.178260510689704 ], [ -73.558751725493934, 44.190322500239766 ], [ -73.547812380586322, 44.191070651595282 ], [ -73.533797366172962, 44.196200750631604 ], [ -73.517777399264745, 44.199000941866231 ], [ -73.510239997505835, 44.203582961819173 ], [ -73.507455321826882, 44.208362902574073 ], [ -73.5067077946604, 44.221229633956334 ], [ -73.501314838387827, 44.242968257523202 ], [ -73.502261093336656, 44.252780063203254 ], [ -73.503970094227142, 44.256491999308771 ], [ -73.512804723595295, 44.262079789411906 ], [ -73.518419611208301, 44.27014761972508 ], [ -73.526911324615526, 44.278101402050304 ], [ -73.531725295084158, 44.287569240461799 ], [ -73.527881411189426, 44.320528040624581 ], [ -73.532993452431114, 44.333497851349229 ], [ -73.533160879664024, 44.349797718463336 ], [ -73.532383091446519, 44.35592768188075 ], [ -73.526593855339542, 44.371148649971673 ], [ -73.508070385631328, 44.385148818066071 ], [ -73.50417277306731, 44.390340832455259 ], [ -73.497116771177971, 44.410249754019496 ], [ -73.497375937155283, 44.416837692458174 ], [ -73.491753581523199, 44.42708766081843 ], [ -73.492394992340863, 44.443387505502095 ], [ -73.49124307640966, 44.443749513609497 ], [ -73.485368899930023, 44.459786420949456 ], [ -73.485095076990405, 44.465527369395126 ], [ -73.489916337187893, 44.486119136238251 ], [ -73.494197197136003, 44.491013057318341 ], [ -73.500986872070953, 44.495086962184139 ], [ -73.499765954877887, 44.495178976769992 ], [ -73.501352985250847, 44.500046914113177 ], [ -73.498461366710728, 44.516674483692718 ], [ -73.49689061439652, 44.529156151455737 ], [ -73.504336509488226, 44.562365153607857 ], [ -73.502833783583824, 44.577524751465212 ], [ -73.501635956781215, 44.585684539135499 ], [ -73.481885798840764, 44.626603632673358 ], [ -73.486180696328063, 44.642926137510706 ], [ -73.483328045622684, 44.655014843275318 ], [ -73.49409253125701, 44.676094128416707 ], [ -73.491223928378943, 44.692175724678357 ], [ -73.490278049725674, 44.696600616271276 ], [ -73.488012261065691, 44.700491541147777 ], [ -73.482511707457633, 44.704192517285605 ], [ -73.477622102891175, 44.707175505546481 ], [ -73.464378171241037, 44.714201506873522 ], [ -73.447015599467179, 44.723773509161994 ], [ -73.440126193097996, 44.728972477145703 ], [ -73.435442629349026, 44.734610402791589 ], [ -73.429446366285035, 44.753623053097591 ], [ -73.447390979765387, 44.813172976980496 ], [ -73.447337463436241, 44.842060592420601 ], [ -73.453273427245264, 44.864510199327221 ], [ -73.451686798339182, 44.880009017474364 ], [ -73.453403845549076, 44.889629861972637 ], [ -73.454631939013737, 44.899921705206545 ], [ -73.446842754795341, 44.917831589304768 ], [ -73.446049962856193, 44.927268475953845 ], [ -73.450086360585004, 44.966540887918605 ], [ -73.457517150266909, 44.981078575989208 ], [ -73.458226184169774, 44.98552950530982 ], [ -73.456105501662435, 44.996500392456404 ], [ -73.455182607869389, 44.999461367574881 ], [ -73.452505070772602, 45.007254321971047 ], [ -73.452780115899486, 45.008772300722249 ] ], [ [ -73.712253202158394, 43.403089686790096 ], [ -73.710628226203525, 43.392847867578467 ], [ -73.706409405544036, 43.386653007655219 ] ], [ [ -73.712253202158394, 43.403089686790096 ], [ -73.707202424011626, 43.39691783353755 ], [ -73.706409405544036, 43.386653007655219 ] ], [ [ -73.706409405544036, 43.386653007655219 ], [ -73.70271655331976, 43.379569157919761 ], [ -73.701343572912464, 43.370784314276662 ], [ -73.703502415842237, 43.362639426045995 ], [ -73.704112358992887, 43.358157493031918 ], [ -73.689746996253035, 43.341193913306959 ], [ -73.684018224237022, 43.329677161338623 ], [ -73.675221598943864, 43.315979479318393 ], [ -73.679234283808967, 43.297573742789062 ], [ -73.681340119789468, 43.288063877853382 ], [ -73.680600128667621, 43.283050968876999 ], [ -73.674580365510792, 43.270448243888559 ], [ -73.676655217848051, 43.263509336374277 ], [ -73.683605793780885, 43.252057448689705 ], [ -73.691860291441188, 43.242505486872126 ], [ -73.692432200361409, 43.235730568184039 ], [ -73.6923331282361, 43.227265678951987 ], [ -73.695460776953595, 43.206613910460966 ], [ -73.706941991535516, 43.18664403521602 ], [ -73.711419616018105, 43.171911172131885 ], [ -73.723915786304104, 43.154203251649072 ], [ -73.732140154174473, 43.134500404550863 ], [ -73.750708909258165, 43.108843510784062 ], [ -73.752966679351303, 43.097521636414008 ], [ -73.75254768805344, 43.096453652842669 ], [ -73.748778740140864, 43.083902842375551 ], [ -73.749129646471189, 43.076902925969044 ], [ -73.751845451141406, 43.071180974819633 ], [ -73.755095237216764, 43.065784018346946 ], [ -73.766095596415212, 43.055041070744039 ], [ -73.776188977860301, 43.041980157772201 ], [ -73.787068290634096, 43.025615278571529 ], [ -73.791805025050877, 43.02151429341162 ], [ -73.795451824153247, 43.018642301229235 ], [ -73.79926658300576, 43.012694345485961 ], [ -73.802554313077607, 43.001723455153922 ], [ -73.803737169003199, 42.991523545507391 ], [ -73.801677088552353, 42.970405757722823 ], [ -73.801196019234624, 42.95938486409662 ], [ -73.80575068396891, 42.944945959748019 ], [ -73.804674668533352, 42.937058041788355 ], [ -73.801264704989336, 42.922062210531024 ], [ -73.786471257144029, 42.9027985250017 ], [ -73.780658470991881, 42.894283660221433 ], [ -73.775394477310954, 42.862630016143022 ], [ -73.767726522577476, 42.819711512565661 ], [ -73.764827482052851, 42.795625780359806 ], [ -73.761661611862323, 42.791566855009734 ], [ -73.758128749850115, 42.786023948903285 ], [ -73.763225304505085, 42.762072129235499 ], [ -73.768854949118364, 42.753538148672568 ], [ -73.769236925911798, 42.753077148786403 ], [ -73.78353317911052, 42.738268155082437 ], [ -73.79140679394024, 42.730700153753588 ], [ -73.796342554184946, 42.728155126223875 ], [ -73.809189939561449, 42.722326044275647 ], [ -73.825043216020376, 42.710755992189597 ], [ -73.831443932822097, 42.706079970283852 ], [ -73.838866633408941, 42.69520800641623 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I88\", \"DIST_MILES\": 256.710000, \"DIST_KM\": 413.130000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -90.341314333477584, 41.535815835710181 ], [ -90.334905092052637, 41.537154837225216 ], [ -90.311543067587735, 41.53400394117709 ], [ -90.28441109313215, 41.541312926997158 ], [ -90.26594736326615, 41.542601962518418 ], [ -90.255831033248029, 41.546393943776593 ], [ -90.240350629611157, 41.557711763398913 ], [ -90.195419507380052, 41.5930050395827 ], [ -90.192093551125737, 41.600812915291328 ], [ -90.19523008216494, 41.61749071516418 ], [ -90.194535174504963, 41.622602643017593 ], [ -90.189820097075796, 41.627691543775953 ], [ -90.173271638818036, 41.637529298329603 ], [ -90.169517534278484, 41.639696242851535 ], [ -90.16162931815731, 41.644346124162468 ], [ -90.144455029468773, 41.661541763231916 ], [ -90.13457503259653, 41.677929459956452 ], [ -90.119628674967359, 41.687962203469631 ], [ -90.112700419629959, 41.689030134772196 ], [ -90.087049374368974, 41.689060936636579 ], [ -90.081220162153599, 41.690029877268159 ], [ -90.074216947388663, 41.692699783116161 ], [ -90.057828563487007, 41.703250494960365 ], [ -90.051389373310144, 41.70586040389972 ], [ -90.032055613647458, 41.706649237699331 ], [ -89.96746250030543, 41.722380910062974 ], [ -89.943795750859934, 41.728178950766065 ], [ -89.908767429994839, 41.729320129128737 ], [ -89.865736397104868, 41.750339061243864 ], [ -89.843801949113015, 41.764968021897026 ], [ -89.83809475439503, 41.765789045932195 ], [ -89.798588237609636, 41.765209283661683 ], [ -89.78963080054919, 41.761772374773685 ], [ -89.786884668008625, 41.760780401979787 ], [ -89.783389502372671, 41.759632435297611 ], [ -89.754168150342124, 41.75141969756465 ], [ -89.708733609789661, 41.751408185004671 ], [ -89.689613967786656, 41.751339400066712 ], [ -89.665641170961578, 41.751511666775173 ], [ -89.646956560805194, 41.751973870863445 ], [ -89.637068437072728, 41.758252909318159 ], [ -89.631559402348159, 41.762726919310211 ], [ -89.625372311632916, 41.766140948961883 ], [ -89.602391583978701, 41.767011195305102 ], [ -89.567272814669408, 41.777952458619879 ], [ -89.544476200676925, 41.781492670325889 ], [ -89.54051613430066, 41.783201694104591 ], [ -89.525860075086285, 41.794481722871424 ], [ -89.493770578899657, 41.807653820211428 ], [ -89.477855526974139, 41.817571624537827 ], [ -89.473315451472374, 41.818792587882889 ], [ -89.44901603067585, 41.824903395940105 ], [ -89.436258618075414, 41.823003357305531 ], [ -89.297720919639559, 41.823243682572489 ], [ -89.277570760691205, 41.833592449605447 ], [ -89.22526328141673, 41.853260835836139 ], [ -89.160123660891401, 41.871929063939888 ], [ -89.140248511046579, 41.879740821846021 ], [ -89.095325902240376, 41.890028372081709 ], [ -89.08906182458756, 41.891859308222877 ], [ -89.073795714146044, 41.899397131004726 ], [ -89.06796660954997, 41.900080082218693 ], [ -89.056972383174056, 41.900308998739504 ], [ -89.038845063278515, 41.902807846770855 ], [ -89.020236721725865, 41.905038695703063 ], [ -88.974657486315436, 41.905809616080738 ], [ -88.951920596155645, 41.899507713004233 ], [ -88.941567256532011, 41.899377742105422 ], [ -88.798404634361461, 41.900420131465381 ], [ -88.783572187149531, 41.90160616838893 ], [ -88.774813937920911, 41.902800188772417 ], [ -88.763865619892442, 41.904047215347397 ], [ -88.734269705147895, 41.901015155786531 ], [ -88.724458453569852, 41.900439091530458 ], [ -88.650336688087535, 41.90065958956054 ], [ -88.644340467897322, 41.897947566352897 ], [ -88.614309139709789, 41.876039527231882 ], [ -88.601750766978242, 41.87326647386255 ], [ -88.513423157852003, 41.853177168331172 ], [ -88.494341418692443, 41.842637223070689 ], [ -88.47400031419545, 41.821397481558371 ], [ -88.466744042481551, 41.818498521619482 ], [ -88.457687766405215, 41.817258545668842 ], [ -88.432143724198923, 41.804109713858779 ], [ -88.421218355074302, 41.80138975388661 ], [ -88.403135801383797, 41.799028797097215 ], [ -88.398138608734129, 41.796945823539666 ], [ -88.392652398555796, 41.794717851775147 ], [ -88.372372858520649, 41.795068868439436 ], [ -88.32381856897068, 41.796003907898601 ], [ -88.282229514051338, 41.798482926717547 ], [ -88.262980025568837, 41.79959293633825 ], [ -88.203522348889493, 41.803744169164311 ], [ -88.171928443929588, 41.806361320293824 ], [ -88.119100789096734, 41.806006615190732 ], [ -88.084873720090002, 41.805884805275383 ], [ -88.075031535974105, 41.809813825434112 ], [ -88.053477878978811, 41.810229941005744 ], [ -88.039508420411508, 41.809455024952356 ], [ -88.031802226650669, 41.810909055014847 ], [ -88.02840022345525, 41.814159045817632 ], [ -88.020793447694402, 41.828719962620134 ], [ -88.017039418843694, 41.831473959819874 ], [ -88.011043294024645, 41.833376976859803 ], [ -87.978151544445637, 41.844070145732331 ], [ -87.957803861841683, 41.844543327036064 ], [ -87.946931512258701, 41.845291420103571 ], [ -87.933457285109014, 41.852958483695652 ] ], [ [ -87.933457285109014, 41.852958483695652 ], [ -87.925492279297274, 41.861759490001965 ], [ -87.920159275213692, 41.867691494926753 ], [ -87.917192231901936, 41.869655508055452 ] ], [ [ -87.933457285109014, 41.852958483695652 ], [ -87.929368148522371, 41.853095520306944 ], [ -87.92491193382439, 41.851085576656281 ], [ -87.919495551614375, 41.844638675038503 ] ], [ [ -75.901351583908635, 42.140694247959495 ], [ -75.892974498211444, 42.144604320902374 ], [ -75.884818562997467, 42.158017358141194 ], [ -75.873572480917943, 42.16434244742905 ], [ -75.872725468824882, 42.164418455510329 ], [ -75.859336208128937, 42.16120260002748 ], [ -75.847258001005059, 42.160054724697787 ], [ -75.842436956861846, 42.161854765321557 ], [ -75.836805947339172, 42.166314802491833 ], [ -75.83303690420324, 42.167100836331876 ], [ -75.829740841128796, 42.166322872207772 ], [ -75.80975139524746, 42.158277107394106 ], [ -75.805082307707835, 42.157358158603628 ], [ -75.777562973679082, 42.161157415818145 ], [ -75.772175933988194, 42.163057459727334 ], [ -75.763043867296943, 42.166158534102969 ], [ -75.749676942123443, 42.178499597239139 ], [ -75.736577879069785, 42.18051784726822 ], [ -75.711880821570404, 42.187018300852991 ], [ -75.693852650273328, 42.185340670737574 ], [ -75.688756653577926, 42.187327759677565 ], [ -75.681012741379746, 42.19435886824855 ], [ -75.674496757672216, 42.19747197711807 ], [ -75.66575369379855, 42.197430150791575 ], [ -75.662182646384863, 42.196350228932346 ], [ -75.651044418901876, 42.188969501008884 ], [ -75.637692288333042, 42.186958781783368 ], [ -75.617276098674282, 42.18407921135217 ], [ -75.593990975799102, 42.185082671074525 ], [ -75.587345998543057, 42.188241780222036 ], [ -75.579602093250429, 42.195393879855104 ], [ -75.570691104994836, 42.198641032177427 ], [ -75.544094948896998, 42.198183566450432 ], [ -75.534542925815941, 42.199602745424571 ], [ -75.522075978483898, 42.205721942480174 ], [ -75.517575059406866, 42.211184985423188 ], [ -75.513409262047844, 42.223001966575609 ], [ -75.510625374102389, 42.229681963809867 ], [ -75.507695397086934, 42.231692003893379 ], [ -75.497166385569471, 42.233474178263378 ], [ -75.491536426639868, 42.236224227484875 ], [ -75.469281616163329, 42.260715099324926 ], [ -75.467412593272741, 42.26808492208194 ], [ -75.473508571607852, 42.283762414007256 ], [ -75.472531556483446, 42.288874286910982 ], [ -75.468960536322029, 42.292280240583601 ], [ -75.464032515203399, 42.294043257136352 ], [ -75.456547491507422, 42.29373436395764 ], [ -75.438611450138779, 42.290010701067573 ], [ -75.415745376612776, 42.293097918700887 ], [ -75.406575351307268, 42.293662024574949 ], [ -75.397320333273171, 42.293002164641457 ], [ -75.388852306521201, 42.294513236106397 ], [ -75.384175283246734, 42.296824236135961 ], [ -75.37468420513126, 42.306273109507877 ], [ -75.365468155915963, 42.310573117781878 ], [ -75.356656128853132, 42.311553209608945 ], [ -75.338627106658265, 42.309444507151142 ], [ -75.331013084848053, 42.310454582527136 ], [ -75.322079042318919, 42.313758615283 ], [ -75.309383955430619, 42.321303587694409 ], [ -75.305706940603955, 42.322223613231294 ], [ -75.291141877847139, 42.32626370463101 ], [ -75.279110794407117, 42.332725699329202 ], [ -75.252514457142283, 42.359855358698589 ], [ -75.246143420524376, 42.362094370325067 ], [ -75.227024399480626, 42.361743544253727 ], [ -75.217861377860672, 42.362853594584685 ], [ -75.206096314738829, 42.367805567572418 ], [ -75.191692202957867, 42.377551438499665 ], [ -75.184589149574293, 42.382396373722223 ], [ -75.17177208733662, 42.388225332654301 ], [ -75.144313049625922, 42.392741452841875 ], [ -75.140422036844527, 42.39423344763312 ], [ -75.136692007084406, 42.397414396832446 ], [ -75.134860967630246, 42.401431307630233 ], [ -75.13788883440084, 42.414244946119133 ], [ -75.135020750575194, 42.422731748856243 ], [ -75.128420710505779, 42.427374684333827 ], [ -75.112818690059441, 42.43144071268069 ], [ -75.107897652557412, 42.435949637023178 ], [ -75.103381609647215, 42.441011543296945 ], [ -75.102061599056682, 42.442308520679461 ], [ -75.101153594557644, 42.442923512391772 ], [ -75.098643592214913, 42.44361751588022 ], [ -75.09791059258491, 42.443716519620288 ], [ -75.095553598095606, 42.443605542921361 ], [ -75.073695666253172, 42.441320792485406 ], [ -75.063647641396173, 42.446386746540099 ], [ -75.051959630103909, 42.450792732188873 ], [ -75.050219633410009, 42.450956743013414 ], [ -75.047205639076992, 42.451262761194094 ], [ -75.029513666436841, 42.454096840728049 ], [ -75.017954679135443, 42.456903867599955 ], [ -75.010905669839246, 42.460623830938346 ], [ -74.994143649714076, 42.475283526341613 ], [ -74.968195922485421, 42.483011243811838 ], [ -74.938991278134552, 42.488024015680963 ], [ -74.926395407938273, 42.493173827864197 ], [ -74.917186480228168, 42.499471613539654 ], [ -74.903400391924237, 42.517793268895602 ], [ -74.889896427681606, 42.526830093618862 ], [ -74.877460536042094, 42.530332011880695 ], [ -74.826893057171262, 42.539768777561846 ], [ -74.810643137463202, 42.546905659966576 ], [ -74.78560327262781, 42.556759509497915 ], [ -74.77721127754981, 42.56166844552294 ], [ -74.770894219074407, 42.567921371600498 ], [ -74.765088029127611, 42.579250246700589 ], [ -74.760311980685216, 42.583889196781989 ], [ -74.755047002832313, 42.585812176578834 ], [ -74.740117183546928, 42.587871174114937 ], [ -74.728764269169687, 42.592159154040928 ], [ -74.712147445291251, 42.59648114634745 ], [ -74.697880483311252, 42.604610100561629 ], [ -74.685994607270374, 42.607841097787471 ], [ -74.668942641541776, 42.617908047821864 ], [ -74.662991592539839, 42.623661011933741 ], [ -74.65931444392416, 42.63156895210124 ], [ -74.649747329328335, 42.641978888325546 ], [ -74.643277315786094, 42.646628867366154 ], [ -74.635342376630206, 42.649505866778483 ], [ -74.627072504132897, 42.650218885978092 ], [ -74.615353755585403, 42.648799933449411 ], [ -74.603612964538868, 42.649028967659973 ], [ -74.588964367688774, 42.644539047777663 ], [ -74.570623919627323, 42.637722154870517 ], [ -74.564498061252749, 42.637001178492746 ], [ -74.557959177193865, 42.637459194712143 ], [ -74.547209287236186, 42.640961202184585 ], [ -74.53295041743533, 42.64616821028936 ], [ -74.508429678383038, 42.654011237597814 ], [ -74.489707655839297, 42.667133228942035 ], [ -74.482291692190827, 42.670841239364222 ], [ -74.475844768590179, 42.672653257533511 ], [ -74.474105794754806, 42.672970263553218 ], [ -74.464232984654231, 42.673519305966934 ], [ -74.449943325326814, 42.672432380082675 ], [ -74.417846830609108, 42.678261492880644 ], [ -74.409836956129112, 42.679790520646165 ], [ -74.383431569342704, 42.679359650068022 ], [ -74.371186784748829, 42.681259696111177 ], [ -74.363778836856227, 42.684601708816359 ], [ -74.339181809488196, 42.701038712914865 ], [ -74.331765881227483, 42.703781729440117 ], [ -74.313898188120675, 42.706859794316003 ], [ -74.272211885268007, 42.714973940044288 ], [ -74.12702232756817, 42.760939090568264 ], [ -74.119484702060774, 42.760347177113111 ], [ -74.09588807418767, 42.769953388495509 ], [ -74.082384801919474, 42.771940527275781 ], [ -74.062862825106194, 42.772501740867085 ], [ -74.052861378861081, 42.774603840174713 ], [ -74.046772757362575, 42.778852883339653 ], [ -74.040494107911911, 42.780397944050961 ], [ -74.030790649075712, 42.782706038187008 ], [ -74.016417513243468, 42.791129146799882 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I880\", \"DIST_MILES\": 43.250000, \"DIST_KM\": 69.600000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -122.285481292078117, 37.807292935266318 ], [ -122.284781708321304, 37.805938667489741 ], [ -122.280863603879041, 37.804285176188515 ], [ -122.275157096564939, 37.802669008707163 ], [ -122.272136428364107, 37.801489862618055 ], [ -122.269709115760605, 37.800545942492739 ], [ -122.267350628019173, 37.799584049099309 ], [ -122.264938294183821, 37.798576135991155 ], [ -122.263539057249176, 37.798220607037656 ], [ -122.257604370013183, 37.795868364995833 ], [ -122.252423535728951, 37.791651407716266 ], [ -122.239496137987828, 37.788026556396936 ], [ -122.234261617219119, 37.785213601300917 ], [ -122.228534419761047, 37.777566459144047 ], [ -122.226061268602422, 37.776157538798074 ], [ -122.220574936359839, 37.774187502120526 ], [ -122.213666742881728, 37.770831942268458 ], [ -122.21265483446841, 37.769553566678319 ], [ -122.189332881871664, 37.741823013805899 ], [ -122.169517000715047, 37.720068931296012 ], [ -122.163469373401512, 37.71411178495908 ], [ -122.13046263648198, 37.691056145917557 ], [ -122.125037228881013, 37.687620251175126 ], [ -122.123059592903019, 37.686242563037609 ], [ -122.10482898342859, 37.673262259768585 ], [ -122.100850981335071, 37.667355923506271 ], [ -122.087128762482237, 37.64569936235123 ], [ -122.077696679274055, 37.632486241143006 ], [ -122.060048739530927, 37.607574469573841 ], [ -122.053970539244332, 37.59913050008538 ], [ -122.04184486119091, 37.579995630853141 ], [ -122.0384613976466, 37.571121605121895 ], [ -122.031842698216835, 37.564226471507638 ], [ -122.022924906934108, 37.555884599936 ], [ -122.01621500489199, 37.547291484102288 ], [ -122.008934634946243, 37.538069200174562 ], [ -121.995570610179982, 37.530519899474307 ], [ -121.981362130029353, 37.523095116531984 ], [ -121.976811456868063, 37.520728582263736 ], [ -121.961097184478362, 37.508089358467608 ], [ -121.929668326712388, 37.483511688566487 ], [ -121.916584585309053, 37.456499233407037 ], [ -121.909973435151727, 37.426364990948976 ], [ -121.902414982966405, 37.402447466278495 ], [ -121.898128583598677, 37.38302204535875 ], [ -121.894844921571917, 37.369096964757432 ], [ -121.895448135069344, 37.364909162099529 ], [ -121.900740666109726, 37.359027895370701 ], [ -121.905310192822554, 37.354730392074281 ], [ -121.912087255260133, 37.349308613115163 ], [ -121.91961882849759, 37.343337082754651 ], [ -121.929883134482068, 37.335154450576276 ], [ -121.934178175233868, 37.330928858616062 ], [ -121.934241627497428, 37.323962862560428 ], [ -121.933924585572683, 37.317904743277616 ] ], [ [ -122.2861480978641, 37.830891217341183 ], [ -122.285197269597745, 37.82931085399553 ], [ -122.284063507535294, 37.828650422340992 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I89\", \"DIST_MILES\": 190.140000, \"DIST_KM\": 306.000000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -73.085141786635177, 45.015530002348015 ], [ -73.087086209919477, 45.003804148855885 ], [ -73.086400517455814, 44.990063444582205 ], [ -73.089207369562317, 44.985776496007752 ], [ -73.100421425356942, 44.97791348351511 ], [ -73.104518120059339, 44.973485510345533 ], [ -73.114794821976702, 44.944943937497811 ], [ -73.115267934297506, 44.939127051519925 ], [ -73.107792329225532, 44.922155561762139 ], [ -73.087562960289588, 44.8893577201532 ], [ -73.083704043020035, 44.873436172699371 ], [ -73.083293060362067, 44.84704679020826 ], [ -73.079959656627139, 44.843658951770671 ], [ -73.077922976398924, 44.842847021785161 ], [ -73.066487796318512, 44.838143422349873 ], [ -73.062925417557636, 44.835526576478308 ], [ -73.062254828983598, 44.827958777456594 ], [ -73.064033180190009, 44.813078090933985 ], [ -73.065383361008031, 44.803678281098001 ], [ -73.070189984695958, 44.794718362351276 ], [ -73.075660027269052, 44.771608752036087 ], [ -73.08155528794093, 44.724879345450688 ], [ -73.089807896845571, 44.707141300742272 ], [ -73.097176475040797, 44.702220149121089 ], [ -73.106131951165622, 44.699320933563243 ], [ -73.121464357122093, 44.693910577526019 ], [ -73.125217632546651, 44.690729516015978 ], [ -73.128031942703785, 44.685434509038231 ], [ -73.138504128524659, 44.659330585302023 ], [ -73.141333569942873, 44.63534084592488 ], [ -73.154354316007243, 44.623789699987697 ], [ -73.171456244372848, 44.602869623148635 ], [ -73.172951871899343, 44.598268661494338 ], [ -73.170326864765514, 44.590319842017401 ], [ -73.176520692013085, 44.579630876815465 ], [ -73.180685482812464, 44.561110085597591 ], [ -73.186971390615952, 44.550841127776557 ], [ -73.197383823224428, 44.538661131734521 ], [ -73.193393770670966, 44.52524843014244 ], [ -73.190982512405029, 44.511241705367176 ], [ -73.188212680785114, 44.508281801702942 ], [ -73.181186274737726, 44.505511966326857 ], [ -73.174717763512405, 44.501682136252022 ], [ -73.173191635408912, 44.493290324249983 ], [ -73.174557159639861, 44.482391521825626 ], [ -73.184480808454509, 44.469982603906892 ], [ -73.185785479135177, 44.463421713632719 ], [ -73.18239046385149, 44.45239399376289 ], [ -73.178095796622628, 44.449811119872741 ], [ -73.159847520654779, 44.448533461541906 ], [ -73.141516176943128, 44.444493863433884 ], [ -73.130561131775252, 44.440863130270166 ], [ -73.115334583434361, 44.439394428699195 ], [ -73.097376309186615, 44.43770478165154 ], [ -73.068357071731583, 44.433425389469086 ], [ -73.043090610009273, 44.432662859543363 ], [ -73.037094115759672, 44.429695032236111 ], [ -73.034066293913114, 44.426068166046065 ], [ -73.025110074132584, 44.422295411181288 ], [ -73.0104246503506, 44.423996641468072 ], [ -73.00583210316212, 44.423386738820085 ], [ -72.992802033176943, 44.413896180803846 ], [ -72.989155036892711, 44.404756447097853 ], [ -72.982197516026034, 44.399846677260683 ], [ -72.949058327532711, 44.389498488183285 ], [ -72.939172242937033, 44.388148692598762 ], [ -72.932000785163922, 44.383707918799189 ], [ -72.894437295248139, 44.377536725753934 ], [ -72.839892337064768, 44.362661046243865 ], [ -72.825778715578608, 44.360074362332945 ], [ -72.821354147719489, 44.359189463355811 ], [ -72.812925101825883, 44.361280569980771 ], [ -72.803870051495124, 44.361181738341486 ], [ -72.797186714582367, 44.35989189068475 ], [ -72.785362785323954, 44.35432323615273 ], [ -72.775498760179843, 44.351912473948403 ], [ -72.765604614268511, 44.345530804148929 ], [ -72.757166507993944, 44.344962974354644 ], [ -72.752696941678479, 44.343391093917504 ], [ -72.748027311905545, 44.340400242465215 ], [ -72.745845228726523, 44.332042466731941 ], [ -72.740955500972163, 44.327404644993784 ], [ -72.732327130142536, 44.323711856631107 ], [ -72.724492620320007, 44.317792108920003 ], [ -72.717733121651122, 44.315014273198891 ], [ -72.704207336294843, 44.315674458421668 ], [ -72.698607784536591, 44.314202576047251 ], [ -72.693115135299834, 44.310025755514388 ], [ -72.686493359227683, 44.298944113901811 ], [ -72.677559992667554, 44.293913366511468 ], [ -72.666329872631778, 44.289945629979435 ], [ -72.657457306187652, 44.278865026235785 ], [ -72.62248708831288, 44.266215865679165 ], [ -72.61083801159549, 44.26150515972644 ], [ -72.604468571473149, 44.260463284447724 ], [ -72.601111788076238, 44.257587405907614 ], [ -72.596320006354077, 44.250797643827632 ], [ -72.586829690121377, 44.245166916549437 ], [ -72.585090517351546, 44.236256135208158 ], [ -72.586677035583662, 44.22753629698618 ], [ -72.583899852371033, 44.215688595161886 ], [ -72.583052782684433, 44.211694694284787 ], [ -72.577841851380825, 44.200178024327236 ], [ -72.575827356007039, 44.181780451149457 ], [ -72.577741645885396, 44.167867718974065 ], [ -72.583813706158693, 44.15873981767627 ], [ -72.599260397621094, 44.137877018544629 ], [ -72.60173178157342, 44.12815018758333 ], [ -72.607895644925549, 44.114379384471121 ], [ -72.611679000956983, 44.107360474628308 ], [ -72.611335581299642, 44.095679730155496 ], [ -72.613973867618938, 44.084029937591524 ], [ -72.60787796947163, 44.071030312968382 ], [ -72.604872538526806, 44.052071766922332 ], [ -72.614635792541335, 44.032411031912886 ], [ -72.619410355229945, 44.00795147915521 ], [ -72.62430734649034, 43.994542633801544 ], [ -72.625954583793117, 43.978311796085997 ], [ -72.621842040512647, 43.952143166511796 ], [ -72.621551503653038, 43.936712350754917 ], [ -72.613777722970326, 43.921164658422285 ], [ -72.612647620218169, 43.915232746114341 ], [ -72.616240505288104, 43.894823925278388 ], [ -72.616225151314865, 43.885139038421627 ], [ -72.615256021905381, 43.878932126753931 ], [ -72.607947229003869, 43.864314418336832 ], [ -72.606192000224766, 43.853213577320361 ], [ -72.600470390413093, 43.847922734677496 ], [ -72.590506908844716, 43.834225062445938 ], [ -72.579788738974187, 43.826744331234664 ], [ -72.566308669824636, 43.814034710245721 ], [ -72.557504486191931, 43.811245893486117 ], [ -72.546321654278415, 43.811086086716529 ], [ -72.543010098190209, 43.813653112804019 ], [ -72.539554734581799, 43.820996084162694 ], [ -72.537411017553666, 43.822515102703974 ], [ -72.533162486754932, 43.823026169435082 ], [ -72.528317952654774, 43.821706268493685 ], [ -72.517332575353933, 43.806874636618026 ], [ -72.504615441985521, 43.793436020057705 ], [ -72.495476218572904, 43.787085262108214 ], [ -72.485406229251367, 43.783247498269056 ], [ -72.47775505028325, 43.781645662438578 ], [ -72.455296827531839, 43.786407027460015 ], [ -72.452550138369077, 43.786147082864417 ], [ -72.447347656198986, 43.783668213524628 ], [ -72.44452474718733, 43.777068352424813 ], [ -72.445630205136865, 43.765716477538696 ], [ -72.448559592722589, 43.758327515953994 ], [ -72.443539834802607, 43.748336733527722 ], [ -72.434346634409891, 43.737788994930426 ], [ -72.430234870271221, 43.728329147702475 ], [ -72.414352546352646, 43.719147523652268 ], [ -72.41409228512677, 43.707810613561314 ], [ -72.400223299511964, 43.680200080523363 ], [ -72.386918667723407, 43.667718419961552 ], [ -72.385965771764788, 43.667024442715842 ], [ -72.384782901818795, 43.666192470734593 ], [ -72.380732356997868, 43.663690564096463 ], [ -72.353437747283465, 43.65883110857402 ], [ -72.348494266746471, 43.653239238276598 ], [ -72.345709448869329, 43.644801345677187 ], [ -72.338661270559228, 43.639971508251676 ], [ -72.329850327640997, 43.634882704570309 ], [ -72.320161548073685, 43.631609905160509 ], [ -72.315310183041902, 43.631010999108973 ], [ -72.286704102286137, 43.635341509214626 ], [ -72.281356867948915, 43.637851595862948 ], [ -72.260248932651237, 43.650402929000059 ], [ -72.248020557770047, 43.648831168220035 ], [ -72.237348900734418, 43.646962359137355 ], [ -72.2262642476352, 43.641373578900769 ], [ -72.215973560806034, 43.639870764160271 ], [ -72.211961011935557, 43.635193860066522 ], [ -72.207963414104356, 43.627404974247732 ], [ -72.201037273664625, 43.624383112873907 ], [ -72.19139436000205, 43.612737351776588 ], [ -72.181485508204887, 43.602521590202116 ], [ -72.169280106654213, 43.601274817270074 ], [ -72.166640432465343, 43.599653875070643 ], [ -72.167357203879618, 43.591142915696082 ], [ -72.160926826697704, 43.576243127623691 ], [ -72.159019037554671, 43.573466180505314 ], [ -72.150666061232926, 43.567557373245918 ], [ -72.143800900330433, 43.56237353510528 ], [ -72.142290053593385, 43.559226584166289 ], [ -72.13861324029601, 43.539794782604062 ], [ -72.141648563234398, 43.522795837550319 ], [ -72.135149257996517, 43.511524038161035 ], [ -72.133302294233815, 43.499004165085438 ], [ -72.128465729495332, 43.491325358911247 ], [ -72.123164409276271, 43.489994479553523 ], [ -72.112835814797705, 43.490085680454548 ], [ -72.107655467065044, 43.488136806869669 ], [ -72.102017892071586, 43.475617076247381 ], [ -72.103558450573388, 43.467297151740958 ], [ -72.095999317865548, 43.461026378080653 ], [ -72.092459600350182, 43.453507541579128 ], [ -72.079140240474885, 43.445824896238086 ], [ -72.064463180776926, 43.441606233843359 ], [ -72.055621243288414, 43.434755490146443 ], [ -72.037687469714442, 43.422647986559255 ], [ -72.023635071152952, 43.406798450298957 ], [ -72.011368595307658, 43.397139803371715 ], [ -71.983113570503932, 43.391640407359475 ], [ -71.973409912600445, 43.38847062842266 ], [ -71.956857114715802, 43.379090054030392 ], [ -71.937526829678717, 43.37281949858874 ], [ -71.925672203147627, 43.357190912035279 ], [ -71.914007767230871, 43.34972222657948 ], [ -71.904922561958472, 43.327322668951865 ], [ -71.897034685861314, 43.324472856988336 ], [ -71.888414865749837, 43.319312087339462 ], [ -71.874896906008203, 43.318122367775231 ], [ -71.864698389157411, 43.314742609781113 ], [ -71.852150300908278, 43.313521873662879 ], [ -71.846169153649754, 43.310555028300428 ], [ -71.836069130701915, 43.287712503013474 ], [ -71.82812817852917, 43.280243751811724 ], [ -71.823687822443034, 43.278202865669591 ], [ -71.814931178234076, 43.277284053529058 ], [ -71.805525565924142, 43.273465289870337 ], [ -71.790200017853849, 43.273934596279119 ], [ -71.781534283383237, 43.269353828474294 ], [ -71.772693677944403, 43.268366021742736 ], [ -71.757040025787376, 43.261534426603127 ], [ -71.752539616498041, 43.256296582806215 ], [ -71.744613259181961, 43.235397120335605 ], [ -71.714031320981078, 43.21071635596018 ], [ -71.701199860766664, 43.194939954768813 ], [ -71.697561070865717, 43.183397241023975 ], [ -71.689108332406946, 43.180669499570513 ], [ -71.684219109077944, 43.180478626072897 ], [ -71.676789372583471, 43.182630779140602 ], [ -71.667421918484465, 43.183687000358098 ], [ -71.652028415884999, 43.183649393956117 ], [ -71.616923923798964, 43.176071406223663 ], [ -71.61128586976001, 43.176406546172366 ], [ -71.591186486662338, 43.183952961351991 ], [ -71.586525296007736, 43.184700072909756 ], [ -71.571909677487042, 43.182301487203496 ], [ -71.545569730347552, 43.170343327105307 ], [ -71.53854384465393, 43.167882540164179 ], [ -71.530603306687979, 43.17050371603991 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I890\", \"DIST_MILES\": 9.150000, \"DIST_KM\": 14.730000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -74.014549215036922, 42.840628865035249 ], [ -74.009468451212456, 42.838964929134086 ], [ -74.004478732876436, 42.841448966746562 ], [ -73.993722103101305, 42.830306145119621 ], [ -73.987168235915789, 42.817073294063825 ], [ -73.981171470313384, 42.814765368711811 ], [ -73.971116889515031, 42.812961481217748 ], [ -73.957933487332511, 42.814540602798168 ], [ -73.950929768529434, 42.811786692472914 ], [ -73.948099822230134, 42.80497676904514 ], [ -73.931292501480456, 42.797599994980104 ], [ -73.92853061345383, 42.79630303316732 ], [ -73.925532695258582, 42.790985103662322 ], [ -73.923426699780748, 42.782028192243956 ], [ -73.927973336281383, 42.766941254847929 ], [ -73.931483112570589, 42.760887260957723 ], [ -73.932597052385788, 42.760014255133648 ], [ -73.933809936407741, 42.754208284025736 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I894\", \"DIST_MILES\": 9.630000, \"DIST_KM\": 15.500000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -88.033931857954485, 43.027181270565478 ], [ -88.03649486321288, 43.021879416449345 ], [ -88.036617809857916, 43.016405592730294 ], [ -88.038760715826001, 43.002246029118247 ], [ -88.038631528827807, 42.988055299478958 ], [ -88.039119252649243, 42.966654646410888 ], [ -88.037318150195986, 42.96237473529829 ], [ -88.012263508501363, 42.961105012739701 ], [ -88.008272407881947, 42.961025054896652 ], [ -87.988542880576773, 42.962124170785778 ], [ -87.968911298644798, 42.961776260769255 ], [ -87.948921722924496, 42.962475335397798 ], [ -87.938988425817399, 42.962147383402034 ], [ -87.936493353595807, 42.962208393134674 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I895\", \"DIST_MILES\": 15.210000, \"DIST_KM\": 24.480000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -73.881953477496722, 40.835797815250515 ], [ -73.885714318643849, 40.828079921819665 ], [ -73.887438238735939, 40.822484005686896 ] ], [ [ -73.881953477496722, 40.835797815250515 ], [ -73.881060514968965, 40.837525791699164 ] ], [ [ -73.881953477496722, 40.835797815250515 ], [ -73.877322642933834, 40.836777829442717 ] ], [ [ -76.5341064992664, 39.318288180314738 ], [ -76.540866550373451, 39.310518176039025 ], [ -76.545688547469553, 39.30231618477665 ], [ -76.547542558666805, 39.299978184462226 ], [ -76.553424600957769, 39.292989181469906 ], [ -76.553744523491815, 39.287267205093279 ], [ -76.553515426089447, 39.281129233764432 ], [ -76.553386371302537, 39.277677249892328 ], [ -76.553760324375432, 39.273908264493834 ], [ -76.554156324154121, 39.273229265202865 ], [ -76.565486452663166, 39.262769245381989 ], [ -76.580005572269854, 39.24207833383786 ], [ -76.610500321720437, 39.240190182669828 ], [ -76.61342238867428, 39.239438176569486 ], [ -76.617291462365927, 39.236783192776429 ], [ -76.625095588176833, 39.229207257955878 ] ], [ [ -76.625095588176833, 39.229207257955878 ], [ -76.627224632516274, 39.228299258784325 ], [ -76.649968234447755, 39.231836074201858 ], [ -76.6621755606417, 39.233605977161993 ], [ -76.667180680706139, 39.233013956659882 ] ], [ [ -76.625095588176833, 39.229207257955878 ], [ -76.624981396979408, 39.2088065570697 ] ], [ [ -76.624981396979408, 39.2088065570697 ], [ -76.623463322974686, 39.204694626120769 ], [ -76.620007224097748, 39.202821673784761 ], [ -76.613819069686002, 39.20186772404395 ] ], [ [ -76.624981396979408, 39.2088065570697 ], [ -76.631626498584069, 39.202760606582878 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I90\", \"DIST_MILES\": 2785.440000, \"DIST_KM\": 4482.740000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -122.308561412789217, 47.594433834128466 ], [ -122.30243803278006, 47.595911035762157 ], [ -122.300356305750725, 47.595311076202591 ], [ -122.297813187323456, 47.591578878942279 ], [ -122.294654061581213, 47.590997428621463 ], [ -122.289731083789448, 47.591186181402044 ], [ -122.241110208817858, 47.590431183996159 ], [ -122.237371478013856, 47.59145252017823 ], [ -122.231361127482174, 47.592917853023685 ], [ -122.218015006261737, 47.587651886818712 ], [ -122.202596330076148, 47.580275024689833 ], [ -122.194831211545235, 47.579321604744486 ], [ -122.182704780976536, 47.581056306289682 ], [ -122.177097255478245, 47.580614855641102 ], [ -122.162083816453176, 47.581600333892823 ], [ -122.157311478708962, 47.581594266321261 ], [ -122.129001010937756, 47.580464070191773 ], [ -122.120218394362581, 47.579171307712251 ], [ -122.093688247658505, 47.569817991447096 ], [ -122.074984237979081, 47.559510068156946 ], [ -122.052176384864055, 47.550452505802305 ], [ -122.032017739735011, 47.544794137444363 ], [ -122.025461182181132, 47.541270423638821 ], [ -122.016687098555721, 47.533755793323714 ], [ -122.010767483912787, 47.533284368687724 ], [ -122.000991694117857, 47.537522393695362 ], [ -121.996887449049865, 47.538027724487023 ], [ -121.985269679571019, 47.53327397354338 ], [ -121.978270169864615, 47.532191110931429 ], [ -121.966884541112165, 47.533086479423282 ], [ -121.963000010466445, 47.536243914265476 ], [ -121.957945127180679, 47.536783868196608 ], [ -121.947594987110691, 47.533849675225781 ], [ -121.933344872534661, 47.532332937466215 ], [ -121.930981355764104, 47.531172984854223 ], [ -121.924859185495137, 47.522999498456883 ], [ -121.902334095888705, 47.513850481907269 ], [ -121.893504542702132, 47.508467957364758 ], [ -121.889431013793143, 47.507905344119543 ], [ -121.873239500796842, 47.509779976536656 ], [ -121.843942562559079, 47.512636551937987 ], [ -121.830319467967954, 47.517522303955296 ], [ -121.826108057562479, 47.517112675974815 ], [ -121.818507052573125, 47.514229730885475 ], [ -121.785718661584681, 47.500766105941182 ], [ -121.78639070783548, 47.494975319678979 ], [ -121.778789553921158, 47.49150141092553 ], [ -121.753705942253731, 47.483011902562495 ], [ -121.737820656121073, 47.475037032326384 ], [ -121.720548829545365, 47.471140155417835 ], [ -121.697127612157288, 47.463323226638792 ], [ -121.692757320353323, 47.459552737454693 ], [ -121.689933435956931, 47.449110717513939 ], [ -121.681259090813498, 47.444988790793751 ], [ -121.664784284272741, 47.443602306352851 ], [ -121.634877098704919, 47.431854354396684 ], [ -121.612765785749588, 47.429466121402193 ], [ -121.606949131445703, 47.429983240730706 ], [ -121.589073702555922, 47.425808427489052 ], [ -121.576530719230746, 47.417892313467249 ], [ -121.575055868893912, 47.414832806156959 ], [ -121.563204304707469, 47.407107928956805 ], [ -121.549404321894372, 47.403475495819173 ], [ -121.540585187788977, 47.398852644514193 ], [ -121.513863773346358, 47.395663197353336 ], [ -121.501680752174977, 47.397040414753199 ], [ -121.474288796014676, 47.397500509806896 ], [ -121.462046246701206, 47.393437399070223 ], [ -121.457985180783055, 47.39404706647958 ], [ -121.439900053476407, 47.398088171937538 ], [ -121.435517903891281, 47.401317777130231 ], [ -121.422655968219104, 47.425101862747979 ], [ -121.420541298876557, 47.426273186374395 ], [ -121.411429399179013, 47.429081250363012 ], [ -121.402365976492803, 47.424848259359493 ], [ -121.401166198449346, 47.421215829947975 ], [ -121.402294362606909, 47.414048114577618 ], [ -121.396455250974697, 47.408046160549389 ], [ -121.395970396208241, 47.403864957914443 ], [ -121.391105618735722, 47.396603311537497 ], [ -121.388626308658147, 47.397041519231273 ], [ -121.375577179052812, 47.392768292426375 ], [ -121.371912659390617, 47.39030709705623 ], [ -121.36926016444815, 47.384607193623282 ], [ -121.367994330365732, 47.373535679014758 ], [ -121.364680180969557, 47.369705587778157 ], [ -121.364484283011834, 47.363113459924072 ], [ -121.358105395847716, 47.357442384106264 ], [ -121.354860205893686, 47.350342290339057 ], [ -121.355379948987988, 47.344040393471737 ], [ -121.352027269298006, 47.341750315025884 ], [ -121.345950296874832, 47.341489401437585 ], [ -121.342132915507904, 47.33948518481521 ], [ -121.336582651650644, 47.332746385620055 ], [ -121.320643351057555, 47.326192362108259 ], [ -121.300068390486985, 47.307431854365568 ], [ -121.292342707382673, 47.302673447945843 ], [ -121.284462429800584, 47.300649023684613 ], [ -121.279352912555055, 47.297976446861384 ], [ -121.274487762872951, 47.289353907766191 ], [ -121.272360318686069, 47.280675203378941 ], [ -121.261137382051004, 47.271729752212231 ], [ -121.244966153602988, 47.268276872706657 ], [ -121.240113211488193, 47.269404439532522 ], [ -121.231456850867943, 47.269443894122169 ], [ -121.217856271281732, 47.265807894506921 ], [ -121.205337682049617, 47.258224216282237 ], [ -121.200074604118001, 47.256742684493538 ], [ -121.187781683225325, 47.256171132314925 ], [ -121.159110134414675, 47.231401754205329 ], [ -121.141585796851317, 47.221477713424676 ], [ -121.098482834179848, 47.213764599567391 ], [ -121.041397543626843, 47.194350829382316 ], [ -121.033229445753179, 47.183945557109645 ], [ -121.027995177269375, 47.182933140732445 ], [ -120.990817957800786, 47.185475206651859 ], [ -120.95328827603781, 47.195735135291748 ], [ -120.94491135253287, 47.193881887170548 ], [ -120.924497825338776, 47.190897449177925 ], [ -120.901100439283212, 47.185779269918605 ], [ -120.894565458373549, 47.183218552618278 ], [ -120.886325453661399, 47.178886392482497 ], [ -120.879341953273411, 47.171705561542318 ], [ -120.868181017462902, 47.165453661490012 ], [ -120.853054479320818, 47.161749764559154 ], [ -120.840923748666953, 47.162196661985817 ], [ -120.815433367451206, 47.155240189043113 ], [ -120.808297291277995, 47.146147391250821 ], [ -120.801833031837091, 47.131646772249688 ], [ -120.796781688207446, 47.128875510388895 ], [ -120.792750734758584, 47.119254509902589 ], [ -120.788656966212912, 47.116311493362602 ], [ -120.760989093493436, 47.107924668819628 ], [ -120.757557475396396, 47.105195831411258 ], [ -120.752316221703666, 47.096012564691556 ], [ -120.746807846057962, 47.092940226682089 ], [ -120.740734198589436, 47.092099731489633 ], [ -120.736450453533664, 47.089927672901311 ], [ -120.73209092446497, 47.084086603540939 ], [ -120.716034023600471, 47.078974648265003 ], [ -120.686021748653502, 47.063937318938123 ], [ -120.652125974553798, 47.052501123149618 ], [ -120.622392437579023, 47.040451010732646 ], [ -120.615049413402517, 47.031221261908172 ], [ -120.603186334239695, 47.02082744491328 ], [ -120.588248784859729, 47.008795910780847 ], [ -120.583103465750213, 47.006551698743181 ], [ -120.583812009566643, 47.005792864347185 ], [ -120.572913873176759, 46.997168286095118 ], [ -120.570464132439071, 46.995233703619377 ], [ -120.565000082139534, 46.990884406657074 ], [ -120.56243565217126, 46.98872479852691 ], [ -120.54925523902844, 46.97791368583313 ], [ -120.536300015705592, 46.974790678914857 ], [ -120.534177003565517, 46.974431188396196 ], [ -120.532898026682915, 46.97414189277233 ], [ -120.529062087414502, 46.973267007042907 ], [ -120.527737159324872, 46.973163702318878 ], [ -120.513724893135716, 46.970856484387475 ], [ -120.504658535555336, 46.971014418977191 ], [ -120.451532125499639, 46.971193505856519 ], [ -120.368584894066231, 46.973345428059098 ], [ -120.347466785388534, 46.972150911752152 ], [ -120.325207581887085, 46.963796153067491 ], [ -120.320236901855679, 46.960915090060411 ], [ -120.303573237218572, 46.957069572827415 ], [ -120.294543532000716, 46.956198683164743 ], [ -120.281510873408351, 46.952513953263932 ], [ -120.250562090754869, 46.950070562461512 ], [ -120.241152321980294, 46.947138640644788 ], [ -120.22734130580298, 46.945316881024304 ], [ -120.21694872083475, 46.945191822465716 ], [ -120.197731579561406, 46.947199053670971 ], [ -120.170641311795833, 46.944145752589669 ], [ -120.148751108911512, 46.945289536045166 ], [ -120.124874036250688, 46.939894933350473 ], [ -120.119414812274101, 46.940183897911787 ], [ -120.100926014259372, 46.946161445094155 ], [ -120.091453549596693, 46.946659668214821 ], [ -120.085680952542802, 46.946357584347211 ], [ -120.073149493620051, 46.941853211406936 ], [ -120.060265545890928, 46.942052820110789 ], [ -120.040132351751595, 46.938380078089018 ], [ -120.025253653869669, 46.939876364903263 ], [ -120.013557242671652, 46.939035228032957 ], [ -120.002377958119396, 46.941840224115694 ], [ -119.979685057417001, 46.940539142662381 ], [ -119.961088028009186, 46.944247869963746 ], [ -119.955551894738178, 46.946314908801028 ], [ -119.955528718926615, 46.9473449132458 ], [ -119.957734409687589, 46.957705388388696 ], [ -119.962721072015412, 46.967266348672702 ], [ -119.962512062637586, 46.983196442784838 ], [ -119.965091382442637, 46.991886970395583 ], [ -119.969315963307764, 46.998917776107859 ], [ -119.968721301117824, 47.002477688337024 ], [ -119.966063704352919, 47.005097225209603 ], [ -119.952454438130388, 47.008314832225501 ], [ -119.948310559542008, 47.011064111149274 ], [ -119.934523714454812, 47.026991738804917 ], [ -119.871832276012086, 47.071850033761564 ], [ -119.856606034781137, 47.085526479137563 ], [ -119.846353592934349, 47.09018675692684 ], [ -119.830069584591214, 47.101353044283641 ], [ -119.822819046471977, 47.103961836879776 ], [ -119.338502261353113, 47.10426212700461 ], [ -119.320325431643042, 47.103340603759705 ], [ -119.317621522746492, 47.102814229038799 ], [ -119.311610501109996, 47.102256398961742 ], [ -119.309676550320148, 47.10108512965764 ], [ -119.29586377980381, 47.101685236513084 ], [ -119.269923501175967, 47.102780712053367 ], [ -119.242314964557153, 47.099637969746006 ], [ -119.239679801839173, 47.099373606940667 ], [ -119.236342672782044, 47.098935147576242 ], [ -119.23204590296487, 47.098571557810281 ], [ -119.106194174368426, 47.087156704567256 ], [ -118.977597659789268, 47.08458428288953 ], [ -118.948758244244061, 47.084656584148789 ], [ -118.922622473753719, 47.08803330656221 ], [ -118.834439170598088, 47.08615335496274 ], [ -118.718849419928858, 47.086509988552443 ], [ -118.709231574729699, 47.08773001415932 ], [ -118.680425033103489, 47.096787183206906 ], [ -118.664597297560107, 47.097506587807288 ], [ -118.628193211507735, 47.096739934022025 ], [ -118.619719768650924, 47.097471101922586 ], [ -118.598296485637064, 47.101837035446849 ], [ -118.569009211727263, 47.111184264641338 ], [ -118.553797262232237, 47.110281786014724 ], [ -118.494856848529722, 47.11134822014494 ], [ -118.395612160545696, 47.11151998551582 ], [ -118.393432519405138, 47.11067980382056 ], [ -118.392410497788333, 47.111469726451141 ], [ -118.384301914555209, 47.111500073290209 ], [ -118.375810615026523, 47.112338397505916 ], [ -118.361802609677284, 47.11655630763196 ], [ -118.360857382595768, 47.118448244836017 ], [ -118.230562041510851, 47.208778747674288 ], [ -118.220941976375286, 47.212535026124009 ], [ -118.111743998347805, 47.244910073327837 ], [ -118.097283671421792, 47.25195906728446 ], [ -118.074156101236937, 47.260891390892034 ], [ -118.051569155610991, 47.278925731139381 ], [ -118.039082890429711, 47.285824817898252 ], [ -118.02254178562724, 47.298393592861672 ], [ -118.013271879079426, 47.301142921993026 ], [ -117.995144938292157, 47.302030676991983 ], [ -117.977193374818071, 47.305889608441838 ], [ -117.970043410639747, 47.308499179213015 ], [ -117.910232674805741, 47.337334577052331 ], [ -117.875202614104197, 47.371931350662692 ], [ -117.858354772828079, 47.383912312918312 ], [ -117.837375206607177, 47.39641204210406 ], [ -117.820686912698903, 47.409778002249261 ], [ -117.787996504381923, 47.436287959253477 ], [ -117.674504976948924, 47.514272575891198 ], [ -117.658366654664121, 47.527161863053848 ], [ -117.628620163838008, 47.544559447937033 ], [ -117.610644235259073, 47.557467568286171 ], [ -117.590587052926082, 47.565915545401005 ], [ -117.563934622684869, 47.591427137592092 ], [ -117.559627969025641, 47.59442190304285 ], [ -117.51156139108916, 47.614225252884069 ], [ -117.478262067032546, 47.633952333409113 ], [ -117.449575003374363, 47.646859741406381 ], [ -117.437918851614739, 47.651059111251527 ], [ -117.423898491175876, 47.653038379318701 ], [ -117.410595567189986, 47.653018702162086 ], [ -117.40969524721865, 47.653018656511236 ], [ -117.393365551074808, 47.652502835507221 ], [ -117.389973073561208, 47.65352465953066 ], [ -117.358647395445033, 47.654011101216732 ], [ -117.325164018857905, 47.654162468647421 ], [ -117.322449963605948, 47.655612331073449 ], [ -117.320215545873168, 47.657454215084641 ], [ -117.313224492078533, 47.662900855288655 ], [ -117.301994495655023, 47.668043298118185 ], [ -117.290855413639463, 47.672352753909031 ], [ -117.281249274085809, 47.673783297656705 ], [ -117.264278353631425, 47.675399502250059 ], [ -117.238265624980002, 47.674239422384318 ], [ -117.221690974385581, 47.67429983730851 ], [ -117.195128152227028, 47.669388932088957 ], [ -117.173673676237897, 47.665848212827655 ], [ -117.152173008620025, 47.665656492847816 ], [ -117.141445108832244, 47.665725137613116 ], [ -117.131525648931515, 47.665705812098146 ], [ -117.110139534852394, 47.670355104083079 ], [ -117.099343335402025, 47.678968731572489 ], [ -117.086510593764743, 47.681222318227995 ], [ -117.051117959148641, 47.695267176980565 ], [ -117.039985999089666, 47.696979833238657 ], [ -117.021961317952261, 47.700351281688299 ], [ -117.000398632483552, 47.709490618059334 ], [ -116.958074322098156, 47.714058953382356 ], [ -116.946584550618581, 47.712860513202216 ], [ -116.904038933266136, 47.712587899034794 ], [ -116.893501437849309, 47.710798510799393 ], [ -116.88452695928703, 47.709127182619468 ], [ -116.859037439844542, 47.708485249296061 ], [ -116.849628142941114, 47.706989912115091 ], [ -116.805969325471835, 47.699984374395008 ], [ -116.790291585746075, 47.69880582913968 ], [ -116.77909917613178, 47.697282445145014 ], [ -116.769186031725582, 47.693983112672043 ], [ -116.749857695677392, 47.673333508864509 ], [ -116.736963581456124, 47.657899128951897 ], [ -116.727479229178655, 47.652050847984349 ], [ -116.716285804826313, 47.647842516108106 ], [ -116.704481681813874, 47.64442017104718 ], [ -116.687112828278188, 47.634070722640715 ], [ -116.676247023730213, 47.633696407305017 ], [ -116.658396193950423, 47.629880928946861 ], [ -116.649704137874039, 47.626661717452038 ], [ -116.647187591580845, 47.624017676433397 ], [ -116.609244635392145, 47.630749543189985 ], [ -116.59927114919607, 47.630059280497804 ], [ -116.592720784691323, 47.627339145136119 ], [ -116.588474120632554, 47.626858038954047 ], [ -116.576669643391924, 47.620677829613577 ], [ -116.568701939965152, 47.624717552250196 ], [ -116.561130057467452, 47.624076366623896 ], [ -116.554205825174421, 47.621986226885447 ], [ -116.545627433090061, 47.624335962125187 ], [ -116.536072570017708, 47.624445715984784 ], [ -116.529042346552913, 47.623286561850733 ], [ -116.518587957678207, 47.619135389761489 ], [ -116.519236661915471, 47.611986560727615 ], [ -116.512411301942421, 47.610125438346287 ], [ -116.507767790976175, 47.605765426820398 ], [ -116.499662079696961, 47.604975256980197 ], [ -116.490915742955963, 47.596316290281301 ], [ -116.489818350648392, 47.591265385492655 ], [ -116.481216875873926, 47.590525237259534 ], [ -116.463747068238462, 47.581576105545018 ], [ -116.440787035597978, 47.573724843756558 ], [ -116.428929116070378, 47.577874533961499 ], [ -116.421798774761513, 47.578035399591982 ], [ -116.417346072433034, 47.57574636632971 ], [ -116.405587159712255, 47.565065373276617 ], [ -116.384236057370487, 47.55728614199046 ], [ -116.366780873593754, 47.554283886908827 ], [ -116.337979321627756, 47.546173531502482 ], [ -116.323002709437972, 47.548351230649445 ], [ -116.312433875995666, 47.551742988587058 ], [ -116.295596129381977, 47.550403729723818 ], [ -116.282266594596251, 47.552032481506693 ], [ -116.238853651884639, 47.544130914722295 ], [ -116.22807784939539, 47.545584721852975 ], [ -116.222061714176306, 47.54871257717501 ], [ -116.205810539379854, 47.546843358276845 ], [ -116.179395119013563, 47.546521968257288 ], [ -116.163472620308511, 47.547811714653328 ], [ -116.136912048446675, 47.548131331797407 ], [ -116.122110013667154, 47.540010262486717 ], [ -116.112959282140366, 47.536450197530087 ], [ -116.105851573109504, 47.53487112835105 ], [ -116.09697564609958, 47.534932009151362 ], [ -116.086588444534087, 47.530651944650344 ], [ -116.070467734876644, 47.534161677311715 ], [ -116.05283672034075, 47.532261486876784 ], [ -116.032460027953377, 47.51717049329158 ], [ -116.012860819544926, 47.510471374454092 ], [ -115.999927539351702, 47.509869234584308 ], [ -115.993453390762895, 47.508030156035453 ], [ -115.985620849982041, 47.503941093399362 ], [ -115.974395924348357, 47.493499820925926 ], [ -115.970018873993482, 47.49122969365775 ], [ -115.955086301818881, 47.49153044901319 ], [ -115.950053512558597, 47.48949731574686 ], [ -115.935822822491289, 47.480497855985469 ], [ -115.933489897316932, 47.477289736773749 ], [ -115.925154525239563, 47.474008513104195 ], [ -115.924543843233451, 47.471678443865606 ], [ -115.916598210013802, 47.471727310169854 ], [ -115.906004619937377, 47.474230196991449 ], [ -115.899484381185928, 47.473539070622692 ], [ -115.890508089926939, 47.475747981413484 ], [ -115.881646885965779, 47.472138739743983 ], [ -115.87662891093531, 47.474717728144327 ], [ -115.864762872524963, 47.473428501782372 ], [ -115.859210288224517, 47.468896286429086 ], [ -115.848259828480636, 47.468018085889561 ], [ -115.823856015485589, 47.460747486762628 ], [ -115.821186097179407, 47.460975451075619 ], [ -115.81440673879743, 47.465309472954161 ], [ -115.805659344574352, 47.463028268604376 ], [ -115.797865356760781, 47.468117302931702 ], [ -115.794264784245897, 47.468986274865969 ], [ -115.779523727457175, 47.468017023497481 ], [ -115.762440496370033, 47.469634822258669 ], [ -115.756027147913315, 47.465735603551359 ], [ -115.745037526879969, 47.464453327978333 ], [ -115.725498329049742, 47.459554598445003 ], [ -115.707797154247018, 47.462126171475724 ], [ -115.695161043948687, 47.462182811243153 ], [ -115.693184833450459, 47.461175721335835 ], [ -115.693856704834133, 47.456277577691495 ], [ -115.692629414958333, 47.44739224701523 ], [ -115.690089494697602, 47.44359304752264 ], [ -115.680831205506735, 47.437832589149494 ], [ -115.669177772742586, 47.433712116907365 ], [ -115.663260025191263, 47.43383395193365 ], [ -115.656426570641841, 47.435832824916496 ], [ -115.651713436246851, 47.432852590255955 ], [ -115.641432378073603, 47.430750227729654 ], [ -115.632251051026742, 47.42243068453903 ], [ -115.622122935548504, 47.419061283441998 ], [ -115.614572759002726, 47.418939067024155 ], [ -115.606335752745352, 47.421788934937553 ], [ -115.598861600875367, 47.418889626285996 ], [ -115.590518696370381, 47.418519381678351 ], [ -115.585744522616451, 47.415959160187562 ], [ -115.572718318769233, 47.415607788312514 ], [ -115.555008738693559, 47.417488369662713 ], [ -115.545597178210429, 47.416618083001218 ], [ -115.534089300758851, 47.418158826709337 ], [ -115.501165359639941, 47.407407558246909 ], [ -115.490914906314956, 47.407125349986792 ], [ -115.475905116094992, 47.404175968566463 ], [ -115.470078174321799, 47.401135753252014 ], [ -115.46218485748696, 47.401066608186255 ], [ -115.450431982731857, 47.394684168520044 ], [ -115.435117109466248, 47.395633931222847 ], [ -115.42183157010372, 47.394695664838771 ], [ -115.407866303598553, 47.390483272641774 ], [ -115.37865622910121, 47.376051263811803 ], [ -115.357049199441519, 47.378572993643651 ], [ -115.353960210836917, 47.377992922285692 ], [ -115.316733507797551, 47.360359700809518 ], [ -115.294157748069111, 47.355160164207632 ], [ -115.291510625768225, 47.35287104323676 ], [ -115.289741282530343, 47.347800839060916 ], [ -115.284067162497976, 47.342650572183508 ], [ -115.281138073940525, 47.342860534561702 ], [ -115.27870476334553, 47.346419621138367 ], [ -115.274952942467834, 47.345962547875928 ], [ -115.27316053618685, 47.344161457934426 ], [ -115.274190287554546, 47.340499346320811 ], [ -115.2701935625945, 47.338889229648899 ], [ -115.269735774183673, 47.3353490997413 ], [ -115.263954636585524, 47.33182789026619 ], [ -115.258371371686877, 47.331449793367881 ], [ -115.255702262148802, 47.328028634916024 ], [ -115.250187983328104, 47.326910514066299 ], [ -115.248517566102038, 47.322729339037615 ], [ -115.243896002868851, 47.320219168546259 ], [ -115.241744713181077, 47.316839012812508 ], [ -115.2326385222119, 47.312478698505089 ], [ -115.224226003716879, 47.313847595597537 ], [ -115.209970266243658, 47.312070281745626 ], [ -115.198026992603218, 47.301487707755996 ], [ -115.19033822777736, 47.302639613598544 ], [ -115.179149525008953, 47.301296373973372 ], [ -115.169943293151562, 47.29672605905408 ], [ -115.151241766927058, 47.293406627675033 ], [ -115.131227376508576, 47.300006518119254 ], [ -115.104699905960288, 47.299846074904913 ], [ -115.097850876965879, 47.297693889883789 ], [ -115.085662437013539, 47.290476446953647 ], [ -115.053750811765227, 47.264573060623917 ], [ -115.051310666045381, 47.255432712597894 ], [ -115.053476243908264, 47.246582444419403 ], [ -115.048343842957877, 47.237022036410949 ], [ -115.033614890703333, 47.236373790261446 ], [ -115.019031915326394, 47.233412470825641 ], [ -114.991588264206911, 47.239752190971224 ], [ -114.984304287557805, 47.238832981134962 ], [ -114.970919043817631, 47.234151497727765 ], [ -114.965289655732889, 47.230070225067699 ], [ -114.957243057194347, 47.21854164755397 ], [ -114.939883857291619, 47.212910044403252 ], [ -114.932356008972448, 47.205989636487146 ], [ -114.923813374090926, 47.201869298168006 ], [ -114.906117207756878, 47.195387668766308 ], [ -114.890580371975162, 47.192378207914373 ], [ -114.883693234550364, 47.189607957740719 ], [ -114.868766331802931, 47.179147273052912 ], [ -114.857806372031291, 47.168717683907566 ], [ -114.800036773300619, 47.135264315629755 ], [ -114.786353635518068, 47.111882269236119 ], [ -114.782555054156333, 47.085453342754896 ], [ -114.767704875232795, 47.079230828331319 ], [ -114.765614431294637, 47.077201719482773 ], [ -114.761579788074627, 47.05700199172238 ], [ -114.736989549034917, 47.02409839175678 ], [ -114.734335351400759, 47.016931100424621 ], [ -114.731124207194284, 47.014667951595726 ], [ -114.720103048698803, 47.011829598076893 ], [ -114.712124063995475, 47.011646402359567 ], [ -114.694489452408035, 47.013416041288096 ], [ -114.6732246490335, 47.017997688270867 ], [ -114.666977207441903, 47.017226517813498 ], [ -114.659608985118822, 47.019076405461888 ], [ -114.651660943251372, 47.018706209226451 ], [ -114.601373331094806, 47.009465759312633 ], [ -114.586750942956868, 47.004315262372181 ], [ -114.555638321464116, 47.004093556568364 ], [ -114.551260325316647, 47.005203494784091 ], [ -114.535912582286699, 47.019443614201286 ], [ -114.523189508307439, 47.020664373304172 ], [ -114.511764204944541, 47.018314046679428 ], [ -114.506454483316219, 47.016032856715235 ], [ -114.49655497131053, 47.007083386867606 ], [ -114.484754700582286, 47.005145178854967 ], [ -114.450704524805246, 46.994688625873657 ], [ -114.433641341331565, 46.991182442179372 ], [ -114.428698435304554, 46.991373384456736 ], [ -114.414343496132474, 47.00213024552064 ], [ -114.410743009102916, 47.012003501175812 ], [ -114.390102163596623, 47.023973613426982 ], [ -114.387737672031591, 47.024091588709268 ], [ -114.37294000665166, 47.019243271959972 ], [ -114.367836107016828, 47.019121208960129 ], [ -114.361658349120972, 47.021852216096633 ], [ -114.354312636288995, 47.03114139704897 ], [ -114.342610996375299, 47.035181373879006 ], [ -114.329437806043629, 47.034212191627041 ], [ -114.309972025237215, 47.029801844145624 ], [ -114.274540488557378, 47.026040344423819 ], [ -114.252214245936358, 47.020500955688576 ], [ -114.232571998941694, 47.018600774452189 ], [ -114.2275230034397, 47.016632691950029 ], [ -114.222237119932203, 47.012710557594538 ], [ -114.210962352383831, 47.008400377135558 ], [ -114.201710325057704, 47.000869126690738 ], [ -114.195852444184368, 46.998359076986524 ], [ -114.173799615567205, 46.980918027692042 ], [ -114.164653373718323, 46.970581012070546 ], [ -114.130861673367917, 46.951422837483918 ], [ -114.112616058630223, 46.94119972404259 ], [ -114.096977886475273, 46.937510609221647 ], [ -114.063293044806656, 46.921416351673429 ], [ -114.040973017106225, 46.916163165660109 ], [ -114.033742322587472, 46.912898102143615 ], [ -114.008515990180172, 46.894079851031478 ], [ -113.997592900696517, 46.88864377044866 ], [ -113.992008886499647, 46.880453757285977 ], [ -113.981245680773966, 46.870275744182806 ], [ -113.971352251845232, 46.864881741663631 ], [ -113.96005494420038, 46.863874754742 ], [ -113.932058908618387, 46.8715878300574 ], [ -113.90474170947266, 46.879327918249018 ], [ -113.897380773428253, 46.878667931369037 ], [ -113.893230398565834, 46.876821931740132 ], [ -113.884351782059113, 46.870138918203622 ], [ -113.865173635743119, 46.861948916167805 ], [ -113.843814935071762, 46.84465986161571 ], [ -113.81483522538683, 46.828458814871233 ], [ -113.769988800985445, 46.800718695864305 ], [ -113.757653534303884, 46.795759676756617 ], [ -113.744075301940512, 46.794988669391287 ], [ -113.718634649043878, 46.786237549343632 ], [ -113.714438221990818, 46.783597518043848 ], [ -113.709449974129512, 46.776937448417819 ], [ -113.704881092313755, 46.749769189562059 ], [ -113.695192262500115, 46.731636896977037 ], [ -113.691721684377029, 46.728535841108908 ], [ -113.677899371507849, 46.726956776184252 ], [ -113.666700732863433, 46.728558766949249 ], [ -113.644112445092446, 46.728077695737213 ], [ -113.610661390013391, 46.725438565905634 ], [ -113.572762768284861, 46.724987464839188 ], [ -113.550755253754346, 46.720631344501442 ], [ -113.535260982301878, 46.717446258461258 ], [ -113.520156645932886, 46.712666147768601 ], [ -113.509339832779048, 46.711186100250778 ], [ -113.503198487748961, 46.705257989871022 ], [ -113.486949095906823, 46.697338818834488 ], [ -113.480296751131164, 46.698238816926775 ], [ -113.469571814869852, 46.703876883722351 ], [ -113.454939231242136, 46.704387857361525 ], [ -113.446067068992292, 46.700508772379948 ], [ -113.415453946700694, 46.69566762363079 ], [ -113.391759156856153, 46.698985629959672 ], [ -113.374372769958171, 46.705055698043743 ], [ -113.369681193234271, 46.704395678085653 ], [ -113.360329016730546, 46.69902757019981 ], [ -113.354118568232778, 46.697505533160104 ], [ -113.336580160773934, 46.705238633290328 ], [ -113.330210750382491, 46.711856734911898 ], [ -113.317271912957224, 46.718425825857047 ], [ -113.313419249418686, 46.71851782147904 ], [ -113.306202861597427, 46.715045751380266 ], [ -113.297963584361909, 46.717616783036235 ], [ -113.292387064970256, 46.717906779958568 ], [ -113.280929025871515, 46.713848694490665 ], [ -113.26871505291318, 46.712276651063391 ], [ -113.228839311024757, 46.697284321364762 ], [ -113.208181000633033, 46.696765268222762 ], [ -113.202787422031037, 46.693477198066283 ], [ -113.189986393608152, 46.681525954712882 ], [ -113.160874659094972, 46.673624745190367 ], [ -113.153040252801887, 46.670176663578324 ], [ -113.146341758864878, 46.667528599023726 ], [ -113.1354405753507, 46.663035489782821 ], [ -113.113912117296138, 46.645285099901237 ], [ -113.062538774627114, 46.621114496567934 ], [ -113.038050481201694, 46.613225274273098 ], [ -113.011761277661108, 46.605493047492892 ], [ -113.000226074314199, 46.605035008402552 ], [ -112.981627510692846, 46.606682980032822 ], [ -112.963485861512169, 46.60233382318421 ], [ -112.942300430226496, 46.599152678896424 ], [ -112.928195440896204, 46.591614454568521 ], [ -112.902127313263009, 46.582764147270197 ], [ -112.896817687973652, 46.579804054900684 ], [ -112.88609940948129, 46.562671589073148 ], [ -112.879278885148906, 46.556983417075116 ], [ -112.86551586939855, 46.556121333216225 ], [ -112.859680278210945, 46.55319123187185 ], [ -112.849030012407653, 46.542791913034321 ], [ -112.826181610877526, 46.537871671388224 ], [ -112.824228744771943, 46.536032612456317 ], [ -112.822779834240137, 46.526461348132507 ], [ -112.819842036975828, 46.524260273277925 ], [ -112.811305630504762, 46.523420204900383 ], [ -112.800106405629904, 46.524962187927734 ], [ -112.787412272397063, 46.513410798038699 ], [ -112.778806859901763, 46.509030626305723 ], [ -112.763136923853764, 46.504651411668739 ], [ -112.748687874375179, 46.503881321376433 ], [ -112.734764668005553, 46.497178204442221 ], [ -112.72501523804948, 46.487641120155125 ], [ -112.723130565826978, 46.411579286168411 ], [ -112.717309920870022, 46.399929177706483 ], [ -112.718324886799323, 46.392517092970742 ], [ -112.725679509669078, 46.382659958161732 ], [ -112.736824911824584, 46.374957831789231 ], [ -112.73989975042349, 46.37125777893354 ], [ -112.748657519931911, 46.28152772850931 ], [ -112.750618444844122, 46.269258579565133 ], [ -112.754021161522431, 46.266439589361724 ], [ -112.782575265044102, 46.194368645952032 ], [ -112.784794948225979, 46.177347631314468 ], [ -112.7885555817995, 46.170347655256165 ], [ -112.799449331621801, 46.118616629311894 ], [ -112.792773706055669, 46.095518507714964 ], [ -112.785770105627549, 46.075586400059656 ], [ -112.78342825734866, 46.07192837283921 ], [ -112.777004708665928, 46.067167312023798 ], [ -112.738227181379969, 46.041048059251047 ], [ -112.726493715937806, 46.023157008627095 ], [ -112.710564559396119, 46.011475952976859 ], [ -112.704651898407747, 46.010156938056262 ], [ -112.679926343291186, 46.009576889402979 ], [ -112.654170801613532, 46.006905831381147 ], [ -112.637852731123701, 46.007867806536673 ] ], [ [ -87.852129314762948, 41.984111356155239 ], [ -87.836862766602579, 41.984554519407283 ], [ -87.807190611692263, 41.982288856305843 ], [ -87.783050712516001, 41.98182712110836 ], [ -87.747922932355209, 41.963871587026269 ], [ -87.743260688438383, 41.961125626834274 ], [ -87.730290015767281, 41.953682740222902 ], [ -87.715214186166463, 41.943242890265317 ], [ -87.687830780220025, 41.9278771598701 ], [ -87.669259817736915, 41.91705135935419 ], [ -87.664765485481979, 41.910749438036966 ], [ -87.661049230113264, 41.906248498699185 ], [ -87.659515960554799, 41.898313572276429 ], [ -87.65313757021471, 41.89234366610642 ], [ -87.646202173685012, 41.886873762077094 ], [ -87.645705856832762, 41.875783858175694 ], [ -87.644385576801255, 41.867151940651546 ], [ -87.645392227744452, 41.852870051744077 ], [ -87.643178991705284, 41.847048119248036 ], [ -87.631689503112241, 41.844142242932875 ], [ -87.630360953733714, 41.825484417975865 ], [ -87.630238578803969, 41.811709539903411 ], [ -87.631924546189168, 41.80826855380505 ], [ -87.631070195477108, 41.796362666187107 ], [ -87.630916753047202, 41.780120809848931 ], [ -87.627200487955079, 41.775160892605875 ], [ -87.620212221248636, 41.774447973063296 ], [ -87.585786349352006, 41.750026583113851 ], [ -87.549323523878741, 41.722962024424362 ], [ -87.535307844767956, 41.713196178564196 ], [ -87.524977300086519, 41.703549288092141 ], [ -87.522963188663198, 41.701375308876372 ], [ -87.521734090778494, 41.698498321888309 ], [ -87.522435701826723, 41.67714832164868 ], [ -87.515866094844014, 41.657162384614914 ], [ -87.513569902989857, 41.651173404789787 ], [ -87.50845761277138, 41.644917447506465 ], [ -87.506123470420818, 41.641522466315855 ], [ -87.504932277606969, 41.63346247453569 ], [ -87.497867988162952, 41.629098520862357 ], [ -87.492053792277858, 41.625104543900136 ], [ -87.48740753178582, 41.61636456264884 ], [ -87.480479326312334, 41.613023592994928 ], [ -87.473742153748901, 41.611211623117676 ], [ -87.432398291597366, 41.610585807759499 ], [ -87.403062628397052, 41.607262944338686 ], [ -87.3935174420496, 41.60780498656743 ], [ -87.381249224241529, 41.609731037864591 ], [ -87.354759668209482, 41.609083158311044 ], [ -87.327896020564239, 41.603552297193879 ], [ -87.313872718671647, 41.602712364846674 ], [ -87.309394604815239, 41.601419390316835 ], [ -87.306197496870652, 41.598928414511228 ], [ -87.30531245516751, 41.597543423880772 ], [ -87.303351269851404, 41.589010465579499 ], [ -87.301009180674058, 41.586569486482894 ], [ -87.296614068633872, 41.58523351357448 ], [ -87.282644840657795, 41.588560569260842 ], [ -87.240339043321157, 41.593126793145167 ], [ -87.230603817205534, 41.592134884641609 ], [ -87.224148641889229, 41.589948954205212 ] ], [ [ -87.852129314762948, 41.984111356155239 ], [ -87.87035695437531, 41.983089164874308 ] ], [ [ -87.852129314762948, 41.984111356155239 ], [ -87.858400588024523, 41.985572278031192 ], [ -87.867564068444096, 41.990440144652027 ], [ -87.884564010095033, 42.00123185838865 ], [ -87.905277974339526, 42.009074431558865 ], [ -87.940520524571156, 42.018258844457542 ], [ -87.95209401422629, 42.020406679305893 ], [ -87.956016208503712, 42.02220359995119 ], [ -87.961891540662521, 42.02643044857912 ], [ -87.974999291656005, 42.036077116310601 ], [ -88.006708854146581, 42.051297552778223 ], [ -88.020167400413385, 42.056580383915403 ], [ -88.02817067329066, 42.057812321942443 ], [ -88.079564379005731, 42.0638959669092 ], [ -88.10188112377017, 42.066612815232354 ], [ -88.144591408330541, 42.066795617599325 ], [ -88.161086895714831, 42.066562546457504 ], [ -88.193382866510248, 42.066680397443413 ], [ -88.263399887235408, 42.066562101201448 ], [ -88.288470512902649, 42.066970019882547 ], [ -88.305736034440912, 42.070296917130541 ], [ -88.316807381939881, 42.072870844169479 ], [ -88.335751084962411, 42.080923662220059 ], [ -88.38123178504722, 42.100699212376227 ], [ -88.398337367049592, 42.106215071244492 ], [ -88.432457670836669, 42.122045709987873 ], [ -88.443208076186849, 42.126855597920731 ], [ -88.514247407337649, 42.144605155127088 ], [ -88.544697580401362, 42.153638058278489 ], [ -88.572652676704095, 42.162113940129451 ], [ -88.669046705550272, 42.195614233317201 ], [ -88.70556222406681, 42.206752918653365 ], [ -88.749929086769072, 42.219932489008045 ], [ -88.784835401451303, 42.233461932265861 ], [ -88.812431063700899, 42.233912793546025 ], [ -88.840378709644725, 42.23366467393349 ], [ -88.880883647407472, 42.233332499829146 ], [ -88.905573239465042, 42.233751375152735 ], [ -88.911219435030972, 42.235720290561211 ], [ -88.926745100926325, 42.245271933578323 ], [ -88.938350433732495, 42.247331818638436 ], [ -88.940997494355031, 42.247319806868013 ], [ -88.956439853983966, 42.247441732432854 ], [ -88.960299981000674, 42.24867767756772 ], [ -88.964733196258578, 42.253388550470234 ], [ -88.964741576288731, 42.271142200653415 ], [ -88.964261583782317, 42.318729265175271 ], [ -88.964308412582895, 42.357409502836241 ], [ -88.967032741936251, 42.370059242387676 ], [ -88.967024778858118, 42.37179520823458 ], [ -88.974410293784885, 42.388529848853786 ], [ -88.984237882289776, 42.406446457561238 ], [ -88.985916347043784, 42.426756052478339 ], [ -88.994828059312312, 42.45178752767373 ], [ -88.994851841189217, 42.488937800110158 ], [ -88.994172888709429, 42.491844745649558 ], [ -88.993936896095846, 42.492420735224599 ], [ -88.992837949712637, 42.496013668823295 ], [ -88.989427992312343, 42.502994527193728 ], [ -88.976754847271209, 42.51515626848029 ], [ -88.975160925723543, 42.527575963592255 ], [ -88.975069028261373, 42.539332669492488 ], [ -88.975161169923197, 42.555083274536294 ], [ -88.981310427011465, 42.570253863573434 ], [ -88.982936029593688, 42.63453323498225 ], [ -88.983524312623757, 42.665123459735533 ], [ -88.983447366245016, 42.671340303487412 ], [ -88.984058780984441, 42.716731153852841 ], [ -88.985843851855336, 42.720740038224903 ], [ -88.992543030897181, 42.72598885054807 ], [ -89.002461287626744, 42.73287058616652 ], [ -89.004155343237073, 42.735391502857951 ], [ -89.005734428324089, 42.74147932988727 ], [ -89.005314276214378, 42.798976587251623 ], [ -89.008618323299046, 42.804069392883108 ], [ -89.022358567504909, 42.815645885910591 ], [ -89.028492619286666, 42.836367176948706 ], [ -89.032269660777501, 42.847478792439674 ], [ -89.038578766287202, 42.857354420757936 ], [ -89.055768105352385, 42.87320375401633 ], [ -89.064771286601371, 42.882275382564018 ], [ -89.084081677419078, 42.907172422724479 ], [ -89.08605069248776, 42.921103975720733 ], [ -89.085760666160354, 42.929442722752171 ], [ -89.095891877594255, 42.94775206294743 ], [ -89.100385962374176, 42.962251576071338 ], [ -89.136206847037272, 42.990261383364334 ], [ -89.141470982595621, 42.993160246139098 ], [ -89.16548161249078, 42.999179839906382 ], [ -89.175201869511838, 42.999709733344382 ], [ -89.187981207073918, 42.998698644536631 ], [ -89.195061394732022, 42.999598551569278 ], [ -89.20031851506765, 43.002234418608673 ], [ -89.205605647947493, 43.003039343446275 ], [ -89.231149248280516, 43.011518832938982 ], [ -89.250139648859772, 43.022577301294973 ], [ -89.260027768214258, 43.03033600033239 ], [ -89.275736979041142, 43.040559598721181 ], [ -89.277513957586976, 43.046906392184631 ], [ -89.276933809550371, 43.062515907971246 ], [ -89.285570729680671, 43.090995992350727 ], [ -89.28571564418381, 43.10116167785749 ], [ -89.28571559257071, 43.107100494396846 ], [ -89.28572257897838, 43.108680445571522 ], [ -89.286073554685558, 43.112277333608901 ], [ -89.290475537863955, 43.124323952789439 ] ], [ [ -82.163593661482281, 41.389113818535776 ], [ -82.154728061829275, 41.400793249707583 ], [ -82.148791706495672, 41.402678197197538 ], [ -82.136263979238791, 41.403242275044178 ], [ -82.117013864027129, 41.4045353713541 ], [ -82.110291476109438, 41.404844412890782 ], [ -82.103570087733985, 41.406828362391067 ], [ -82.099144833213344, 41.412478090617981 ], [ -82.083869978971265, 41.420419788716075 ], [ -82.081267862336361, 41.435692974128941 ], [ -82.068595231619, 41.452644158417932 ], [ -82.054212531663765, 41.463286705603899 ], [ -82.049810316691946, 41.465140644062139 ], [ -82.02176288343837, 41.464419937121065 ], [ -81.989092352348649, 41.464378509453276 ], [ -81.977518949959901, 41.468235713058917 ], [ -81.96946864403823, 41.468555980114644 ], [ -81.94197957916721, 41.467855979232283 ], [ -81.928086036752163, 41.467154496826005 ], [ -81.901321072989361, 41.472457227431391 ], [ -81.882208380748935, 41.475715795563531 ], [ -81.867742832804609, 41.476197305008611 ], [ -81.857251381418479, 41.472340809400606 ], [ -81.836155567927307, 41.471978574796765 ], [ -81.822590048715156, 41.472037058046126 ], [ -81.812083613717775, 41.469641492495121 ], [ -81.789011719607942, 41.468967322547186 ], [ -81.780207339954472, 41.46595369181793 ], [ -81.768876916901263, 41.466797070938739 ], [ -81.744759985914641, 41.470173740271704 ], [ -81.736084571082685, 41.470841824049742 ], [ -81.721442918829112, 41.474820924733095 ], [ -81.693151529797277, 41.474157240493589 ], [ -81.693258584679739, 41.476922200466809 ], [ -81.688475580077295, 41.489377077994611 ], [ -81.683798435290853, 41.49360407048227 ], [ -81.681517342869668, 41.494451083892493 ], [ -81.677946200953841, 41.495897103311023 ], [ -81.672276996783339, 41.499216120244121 ], [ -81.670117875101553, 41.502180056086878 ], [ -81.670331847449148, 41.504399973811118 ], [ -81.671819821796731, 41.510071753381162 ], [ -81.675137861145203, 41.517144463123948 ], [ -81.675244844051505, 41.518471414323656 ], [ -81.670827596391973, 41.520569386477916 ], [ -81.652134523996352, 41.530217236944623 ], [ -81.638934726588786, 41.538586070491064 ], [ -81.631274339837248, 41.539174128732441 ], [ -81.626322072862052, 41.540421134400333 ], [ -81.598748446741695, 41.553550931089809 ], [ -81.596154283153538, 41.555202895720974 ], [ -81.590950863034166, 41.562808663601764 ], [ -81.575408972904185, 41.567783631022508 ], [ -81.56020208887395, 41.572891587289121 ], [ -81.526646029013321, 41.587478352754104 ], [ -81.502741434682449, 41.601619028387653 ], [ -81.497721091916702, 41.603728963795454 ], [ -81.494890866448614, 41.605410886219779 ], [ -81.489572644549838, 41.60061605042543 ], [ -81.488122658232356, 41.596321211161623 ], [ -81.486429647676303, 41.59232735888255 ], [ -81.481828411251101, 41.589725439231493 ], [ -81.448035172883849, 41.590904242204964 ], [ -81.445677898611422, 41.596347024543597 ], [ -81.43999340841566, 41.601916788362942 ], [ -81.390329630464365, 41.633222418921129 ], [ -81.374390505070124, 41.640882079741679 ], [ -81.325659392593721, 41.648148649133432 ], [ -81.305859180944907, 41.647988588098542 ], [ -81.298786736685244, 41.648895532327565 ], [ -81.289585142497629, 41.651642405258215 ], [ -81.247071483798294, 41.670322735095567 ], [ -81.22621985883012, 41.678379249827515 ], [ -81.164336055620424, 41.714906770252796 ], [ -81.157773885336113, 41.716856009624884 ], [ -81.125982088149101, 41.72214829039202 ], [ -81.11306476269246, 41.728889754172464 ], [ -81.097821388817863, 41.73896130484615 ], [ -81.074634847527534, 41.74824728404419 ], [ -81.047069310048229, 41.759085406732282 ], [ -81.03061995833761, 41.76219511778492 ], [ -81.003573340955214, 41.763745351425804 ], [ -80.981157428519836, 41.768002453417097 ], [ -80.887807159626419, 41.771824497606943 ], [ -80.871914481201898, 41.776864429464162 ], [ -80.85543382742685, 41.786442290216783 ], [ -80.814051207396133, 41.810592991594774 ], [ -80.790520328651127, 41.826824818555913 ], [ -80.78501209418306, 41.828052819690043 ], [ -80.765365205661382, 41.82796488968593 ], [ -80.753165662271527, 41.828575924189835 ], [ -80.743369184087513, 41.830902939083529 ], [ -80.724020240424565, 41.841384921049631 ], [ -80.703984220308271, 41.849174963057997 ], [ -80.667963543653102, 41.879253972900074 ], [ -80.655725927771854, 41.885945034251492 ], [ -80.62784647417098, 41.897240235410386 ], [ -80.599226968266564, 41.908654488293841 ], [ -80.569326348304529, 41.91670380371707 ], [ -80.548886238935665, 41.922556039043386 ], [ -80.519327674980602, 41.937185426894416 ], [ -80.508814113833907, 41.942255578970709 ], [ -80.504006845748975, 41.943117645207344 ], [ -80.463264149831332, 41.943124682344035 ], [ -80.430403842043432, 41.943124666033462 ], [ -80.386372107855635, 41.946016653227296 ], [ -80.341128390320151, 41.962625673541439 ], [ -80.300004815578262, 41.978864681293103 ], [ -80.239272787830245, 42.004835753105468 ], [ -80.216658479878561, 42.01372786866802 ], [ -80.18758269053923, 42.018964839194325 ], [ -80.142674250593132, 42.023966696223049 ], [ -80.12256979089436, 42.031694735453627 ], [ -80.097499225362526, 42.043615804373793 ], [ -80.081271750975887, 42.049486798808374 ], [ -80.067377326010359, 42.054697789181475 ], [ -80.040498560478085, 42.069746827472152 ], [ -80.005707455496591, 42.093340870813485 ], [ -79.999054217311553, 42.096697858756848 ], [ -79.990090147344418, 42.101255900967573 ], [ -79.96327191555379, 42.118888088168099 ], [ -79.955741826507435, 42.123957144074268 ], [ -79.923331272944338, 42.139544303349503 ], [ -79.886358457152312, 42.155947476823293 ], [ -79.878157251671027, 42.160254526870638 ], [ -79.849378472486649, 42.169955625953115 ], [ -79.830204823275324, 42.187728868602413 ], [ -79.814137209541286, 42.201755063651817 ], [ -79.785151978017169, 42.223858376218374 ], [ -79.780626698373794, 42.232017500700877 ], [ -79.776766446639471, 42.239265612034288 ], [ -79.761964766949689, 42.252598774250281 ], [ -79.745042545031481, 42.2617997723748 ], [ -79.726220887802398, 42.272106778866281 ], [ -79.716043001247471, 42.274963779099451 ], [ -79.700541154245556, 42.278805777767239 ], [ -79.679880474539885, 42.291302771803693 ], [ -79.620806968491408, 42.3135987273061 ], [ -79.590533228170997, 42.334728674805163 ], [ -79.583713264682359, 42.338806661487865 ], [ -79.576152293673417, 42.342659646925313 ], [ -79.55870330505951, 42.346428620241866 ], [ -79.537578325247324, 42.355186575724645 ], [ -79.507167314564001, 42.375068482124831 ], [ -79.478091037465205, 42.389679453988379 ], [ -79.451632685484782, 42.400005454459802 ], [ -79.438044477565313, 42.409965440536524 ], [ -79.43066636647518, 42.412369441734128 ], [ -79.416315156951811, 42.413887453387744 ], [ -79.406710003653913, 42.417248454068819 ], [ -79.385758582629265, 42.435669421268287 ], [ -79.373383281286777, 42.450275389797667 ], [ -79.366303126511468, 42.454918382998216 ], [ -79.354912901612195, 42.45848838396558 ], [ -79.33896662183605, 42.458954399336044 ], [ -79.324234356927022, 42.459942411769426 ], [ -79.314178166315713, 42.461387417784863 ], [ -79.302977959257319, 42.462398426353779 ], [ -79.294150770588359, 42.465088426991308 ], [ -79.262701987050349, 42.480285410258574 ], [ -79.234709216626641, 42.497818566197594 ], [ -79.199879738881208, 42.511398972205448 ], [ -79.164365172052811, 42.512910427676012 ], [ -79.155629060503884, 42.515927524235039 ], [ -79.134945852095285, 42.528828711623845 ], [ -79.108043621278668, 42.550908898323286 ], [ -79.093479495020844, 42.563477982258419 ], [ -79.092067482446552, 42.564690989940004 ], [ -79.079387361633678, 42.574968059717747 ], [ -79.063625161741484, 42.58278117715696 ], [ -79.054699061720086, 42.588861227165289 ], [ -79.046435970654812, 42.594820268182914 ], [ -79.029307747897064, 42.603659376594393 ], [ -79.021159662870687, 42.610559400817891 ], [ -79.00900551164662, 42.618208456609551 ], [ -78.993952303095725, 42.631609444585578 ], [ -78.970102820843579, 42.649858360775617 ], [ -78.952997497262103, 42.666269270689078 ], [ -78.931627130948897, 42.692495106442031 ], [ -78.930986118063885, 42.693041103850831 ], [ -78.918496863598506, 42.703321057193577 ], [ -78.903382537145873, 42.713468023370304 ], [ -78.877731955910988, 42.727334999459487 ], [ -78.846672223593544, 42.740572006357752 ], [ -78.837097010563113, 42.746632990857016 ], [ -78.824362797502999, 42.760220940928143 ], [ -78.817938686948466, 42.766423924562801 ], [ -78.816840700821672, 42.770825898194481 ], [ -78.816138869398145, 42.789880766652423 ], [ -78.816367941774672, 42.796593718207554 ], [ -78.813681927671922, 42.802720687083678 ], [ -78.79249445683179, 42.815137697028092 ], [ -78.790930524367127, 42.827145621147082 ], [ -78.792937665884807, 42.836270548534038 ], [ -78.792952674371136, 42.837136542461586 ], [ -78.79270873197909, 42.844075495536089 ], [ -78.79023671442782, 42.849820467599116 ], [ -78.791823899148994, 42.864812356177964 ], [ -78.789954906750935, 42.871514318981802 ], [ -78.787901879708713, 42.875096304375376 ], [ -78.784941806013634, 42.87651930922322 ], [ -78.77474852820427, 42.878857343786365 ], [ -78.769728407782736, 42.881909347997031 ], [ -78.767950385520749, 42.88534233356885 ], [ -78.766890502487186, 42.902360223485196 ], [ -78.766600552513054, 42.909104179248601 ], [ -78.766371681953231, 42.924779074186873 ], [ -78.766379749566241, 42.932526021638083 ], [ -78.766348848767365, 42.944042943744805 ], [ -78.763434807273526, 42.949634921517728 ], [ -78.754805562603806, 42.952247950399702 ], [ -78.69688193018068, 42.949689271102223 ], [ -78.671460213480955, 42.947213418961383 ], [ -78.633098177685724, 42.948438612163827 ], [ -78.608439524240978, 42.950364730748738 ], [ -78.592814135069901, 42.954419791396191 ], [ -78.564706440635135, 42.962098901498685 ], [ -78.531326596024471, 42.968359050980531 ], [ -78.517647265250332, 42.972601105626616 ], [ -78.502875922590789, 42.978807158537379 ], [ -78.482818598122691, 42.981279201198262 ], [ -78.463851352014572, 42.985983222160385 ], [ -78.431784944154018, 42.992990264123875 ], [ -78.42718389967736, 42.995100265969008 ], [ -78.412207786643364, 43.003759260780711 ], [ -78.405287733277191, 43.007204258579925 ], [ -78.396414632159463, 43.00903926950253 ], [ -78.359251124574129, 43.010031350765694 ], [ -78.278386114360103, 43.016161510272887 ], [ -78.19189074167987, 43.018389861488593 ], [ -78.13235775959312, 43.022059147244718 ], [ -78.124758605484274, 43.020739192279009 ], [ -78.108469222006832, 43.014590304654703 ], [ -78.099970059099974, 43.013579352874601 ], [ -78.066079626644537, 43.022731482602943 ], [ -78.044442356874669, 43.028960563705681 ], [ -78.033349187068239, 43.03016261480942 ], [ -77.964743890890432, 43.028843022580553 ], [ -77.935179289626902, 43.028221219475796 ], [ -77.90485271172102, 43.030003409550226 ], [ -77.877165162846055, 43.029842592246879 ], [ -77.832013285485104, 43.030262887113501 ], [ -77.793300680361313, 43.042401076339992 ], [ -77.779491433723223, 43.044244156842623 ], [ -77.743380701945043, 43.045354371602578 ], [ -77.726122217452257, 43.042985454268091 ], [ -77.724551173265738, 43.042752461858619 ], [ -77.714159886616216, 43.04168850941376 ], [ -77.691713305608076, 43.042722594637638 ], [ -77.658066476450543, 43.047746706601615 ], [ -77.648125217271655, 43.047784747156918 ], [ -77.628799719197573, 43.04824982431137 ], [ -77.619079455988597, 43.047177869129506 ], [ -77.599325948928254, 43.047509948838837 ], [ -77.583166536635005, 43.047857013908519 ], [ -77.569113161347289, 43.046377077992382 ], [ -77.553159726256922, 43.043619154728006 ], [ -77.524510905443051, 43.034155307968248 ], [ -77.515827655324713, 43.030993354698857 ], [ -77.485202511155819, 43.016722464759418 ], [ -77.475673097263126, 43.014654467339973 ], [ -77.457873354369667, 43.013697462310517 ], [ -77.444055756339765, 43.010832462418698 ], [ -77.439286539694024, 43.008879463941526 ], [ -77.428674032322547, 43.002230469652496 ], [ -77.422775766053363, 43.000040469052749 ], [ -77.41209429664184, 42.998015479124106 ], [ -77.367392435320156, 42.995642472397357 ], [ -77.33826922272722, 42.99351347834731 ], [ -77.272730401424027, 42.98015461889689 ], [ -77.232635741083286, 42.978674662567549 ], [ -77.192610027436501, 42.976782754234605 ], [ -77.174421223704869, 42.973482838732878 ], [ -77.092782841637444, 42.974222968572846 ], [ -77.075876100996368, 42.969924086242791 ], [ -77.054825214377132, 42.967425180109778 ], [ -77.034728313312513, 42.95886540947 ], [ -77.024267864450579, 42.956134495502383 ], [ -76.983083094829581, 42.954993704282913 ], [ -76.977505835928469, 42.954906746907298 ], [ -76.963711206457788, 42.955775827295078 ], [ -76.947002473386164, 42.959853855226847 ], [ -76.92661552149805, 42.958103044825727 ], [ -76.90912072659647, 42.958725158855799 ], [ -76.87657930183245, 42.965096253438773 ], [ -76.852523234495038, 42.967587375187094 ], [ -76.847381004882067, 42.967884406641893 ], [ -76.837568564726553, 42.968155473398902 ], [ -76.811940460008913, 42.973423546246551 ], [ -76.793895728908268, 42.981964491100236 ], [ -76.770007701651878, 42.986138578699517 ], [ -76.720902732712119, 43.000355554364113 ], [ -76.699073893037436, 43.008686718577621 ], [ -76.678863154731545, 43.020985911871492 ], [ -76.666274685866341, 43.02702402082511 ], [ -76.644582854559744, 43.033635179097764 ], [ -76.631551369946749, 43.03919728939649 ], [ -76.609036561590173, 43.051885510612586 ], [ -76.561358741557868, 43.061837838261908 ], [ -76.53602777545575, 43.065855004110453 ], [ -76.511246858034596, 43.072325193249561 ], [ -76.49721536782728, 43.074137276050472 ], [ -76.424421848594605, 43.084326539847837 ], [ -76.382993995765119, 43.088747679519592 ], [ -76.370969744069953, 43.08904571042946 ], [ -76.342450134834536, 43.08721875819132 ], [ -76.330097896174934, 43.089487810579215 ], [ -76.320118702676154, 43.09107885059634 ], [ -76.295597300043724, 43.104682050631773 ], [ -76.264674726019166, 43.111533197962849 ], [ -76.238284340923911, 43.11769432653189 ], [ -76.226458209605909, 43.11794635680215 ], [ -76.213382052416165, 43.115741364118747 ], [ -76.186014705365935, 43.104060304636555 ], [ -76.164064445329061, 43.093196240931093 ], [ -76.155664361298804, 43.091792245853441 ], [ -76.148546296187064, 43.09213626640588 ], [ -76.126779100293646, 43.093398331809624 ], [ -76.097848842071656, 43.091876385174558 ], [ -76.078935682212887, 43.093940453278591 ], [ -76.053620471681427, 43.094779524357385 ], [ -75.976150593623387, 43.09361273496107 ], [ -75.907195291044829, 43.091770980876298 ], [ -75.874685702086893, 43.095639144192361 ], [ -75.844442167646932, 43.096070265701719 ], [ -75.825902841173459, 43.094071320336582 ], [ -75.801404422790128, 43.094189418186716 ], [ -75.761463742179359, 43.090340545800331 ], [ -75.745372522800736, 43.093258652213017 ], [ -75.727306397941049, 43.101418859695734 ], [ -75.705631222001315, 43.103967048500195 ], [ -75.673121975185666, 43.107881326785268 ], [ -75.664721922552147, 43.11020840476862 ], [ -75.652812852046907, 43.113702514385309 ], [ -75.611353632421384, 43.12563887634672 ], [ -75.603350580348717, 43.125848935497338 ], [ -75.589655477004271, 43.123881029379142 ], [ -75.580843422199109, 43.124060094907371 ], [ -75.500834060492735, 43.134592693082205 ], [ -75.47789183051259, 43.135535771835947 ], [ -75.447435445098478, 43.128729869477041 ], [ -75.407456999459754, 43.124843001594783 ], [ -75.387696782370497, 43.122768067938608 ], [ -75.358635576003962, 43.127044166778063 ], [ -75.310288177321766, 43.127449333197021 ], [ -75.300972145432425, 43.129871365271505 ], [ -75.276604093421298, 43.137031449034623 ], [ -75.26938702409322, 43.135952474561094 ], [ -75.25004571656666, 43.126651545283394 ], [ -75.238563728313508, 43.124584564303234 ], [ -75.230850719132903, 43.122016578292254 ], [ -75.22985871802635, 43.121681580177494 ], [ -75.212585687483028, 43.114898617246325 ], [ -75.205657673892773, 43.111911634362173 ], [ -75.183380765443687, 43.109294683105887 ], [ -75.170036783828891, 43.10521772011311 ], [ -75.152198777316485, 43.097259781657876 ], [ -75.12778479846763, 43.08681487727911 ], [ -75.122581809291503, 43.08477789883073 ], [ -75.092826851513564, 43.07032104608443 ], [ -75.070152878770827, 43.056962186275683 ], [ -75.063293876677122, 43.051789237897111 ], [ -75.042465815643553, 43.030613438112752 ], [ -75.009201046173118, 43.017647669222562 ], [ -74.993416216129219, 43.017968752544846 ], [ -74.981430293574078, 43.016877837831721 ], [ -74.980568291850417, 43.01622184807983 ], [ -74.974007305926705, 43.013382911084612 ], [ -74.948021527992822, 43.0143940740817 ], [ -74.925454703823178, 43.013235231701849 ], [ -74.901421820015457, 43.006795442255395 ], [ -74.886094922243402, 43.004392564969891 ], [ -74.880066988069501, 43.004980601090757 ], [ -74.857728310533446, 43.01123670078281 ], [ -74.837678498518358, 43.010152845915833 ], [ -74.823808748671112, 43.015752891695925 ], [ -74.818758817741426, 43.016466919656743 ], [ -74.81093791540421, 43.016988968063238 ], [ -74.801310000235233, 43.015654045366773 ], [ -74.785082032753721, 43.007636229165044 ], [ -74.754550245082541, 43.000285510659751 ], [ -74.753085257466765, 42.999976524155983 ], [ -74.740702395980833, 42.995238672802635 ], [ -74.728831543423752, 42.990836814417136 ], [ -74.719615681172542, 42.989726897095707 ], [ -74.679821360483032, 42.991417181864328 ], [ -74.668453529341988, 42.98872729830692 ], [ -74.654834664997082, 42.978775508373928 ], [ -74.636760788393019, 42.960075838946274 ], [ -74.628231741719389, 42.941457092299792 ], [ -74.622974791837663, 42.937428170660304 ], [ -74.614872795509356, 42.924416358853065 ], [ -74.607036838816526, 42.915559501175778 ], [ -74.584958137503136, 42.906476739490614 ], [ -74.571339408972051, 42.908231814573845 ], [ -74.567120484990753, 42.907979845532402 ], [ -74.56326753564359, 42.906087889374426 ], [ -74.551983726100318, 42.904073984320021 ], [ -74.529745034908657, 42.893907225643858 ], [ -74.501219602911533, 42.894068415155026 ], [ -74.483252062920627, 42.896257522574579 ], [ -74.468413433875099, 42.896410626342686 ], [ -74.46154766101202, 42.900278644937394 ], [ -74.453567006667996, 42.910097627215016 ], [ -74.421937130488132, 42.928068734880362 ], [ -74.404946790396195, 42.939138792807952 ], [ -74.385019517443453, 42.947656898932465 ], [ -74.37793174015151, 42.948339953052262 ], [ -74.370569939794407, 42.947219020737805 ], [ -74.369387968618184, 42.946860032675538 ], [ -74.35965222228333, 42.944770125408745 ], [ -74.343020654836081, 42.94108528319795 ], [ -74.310482436815008, 42.930598603404228 ], [ -74.30304365273048, 42.929950666691518 ], [ -74.288251134856623, 42.930899782173739 ], [ -74.255354236859077, 42.933159042100534 ], [ -74.243872643474049, 42.932999142571482 ], [ -74.206657941864549, 42.925129517477799 ], [ -74.201966108941036, 42.924068565676102 ], [ -74.19194046806831, 42.921722669514189 ], [ -74.140642392210125, 42.90996321055799 ], [ -74.127444841851315, 42.903153371693065 ], [ -74.105983719694251, 42.89903060199979 ], [ -74.091336292562005, 42.893773773953377 ], [ -74.083401589663112, 42.889703874607854 ], [ -74.061109419616201, 42.87605917409963 ], [ -74.045432064437463, 42.86893737461768 ], [ -74.028594650954744, 42.851458651815555 ], [ -74.014549215036922, 42.840628865035249 ], [ -74.011482304198523, 42.835203930840777 ], [ -74.011154267412124, 42.830759961634087 ], [ -74.019782609168459, 42.813078976581309 ], [ -74.017149539705571, 42.796412106556609 ], [ -74.016417513243468, 42.791129146799882 ], [ -74.014067580233174, 42.786441201470439 ], [ -74.009375782851251, 42.782538277691032 ], [ -73.996765360474313, 42.776584453934603 ], [ -73.975350244694695, 42.77140071416941 ], [ -73.958359945389446, 42.766040932519068 ], [ -73.944589497963747, 42.759419128276726 ], [ -73.943147556045602, 42.758698149163038 ], [ -73.933809936407741, 42.754208284025736 ], [ -73.901920498143653, 42.735157829337744 ], [ -73.883611439252107, 42.721948181897851 ], [ -73.869543131860311, 42.714616425792535 ], [ -73.846267272797959, 42.700418858916336 ], [ -73.842246473973006, 42.696469951649149 ], [ -73.838866633408941, 42.69520800641623 ], [ -73.830299029447175, 42.694056122250402 ], [ -73.813324825927097, 42.688452391845061 ], [ -73.802979306676619, 42.686876535866595 ], [ -73.798860496017568, 42.687773575323455 ], [ -73.798501513200009, 42.687456583446078 ], [ -73.792016816598149, 42.686148677970721 ], [ -73.785425126943153, 42.682738799332334 ], [ -73.770350832418913, 42.680377013073567 ], [ -73.754191583718153, 42.670837330278339 ], [ -73.748668841280946, 42.669978401949585 ], [ -73.741535174811403, 42.670284433364394 ], [ -73.737339370396825, 42.669826459860133 ], [ -73.732960569438347, 42.667392512077029 ], [ -73.729191739570155, 42.665164558864113 ], [ -73.72341599955476, 42.661979628007082 ], [ -73.712583452347147, 42.648971847820057 ], [ -73.710706519376188, 42.644550913642597 ], [ -73.707235634723347, 42.635189050800207 ], [ -73.700627894620808, 42.627487184248061 ], [ -73.691939246480061, 42.620697318294766 ], [ -73.677267701531207, 42.591427777473292 ], [ -73.676893685968551, 42.58692283789852 ], [ -73.679121541967035, 42.579769917460119 ], [ -73.678801436625676, 42.562494142561071 ], [ -73.680090362093637, 42.559240176908574 ], [ -73.684637124132337, 42.550775258796719 ], [ -73.688832718243489, 42.511487738230961 ], [ -73.682622889124858, 42.493369088557053 ], [ -73.677954067524936, 42.489512213795535 ], [ -73.671370317846993, 42.48501136869433 ], [ -73.670248365126767, 42.482630435084538 ], [ -73.641174431379326, 42.483889602939257 ], [ -73.625275038197458, 42.480570798018192 ], [ -73.62468706101096, 42.480376807120741 ], [ -73.616249395550113, 42.475539991486961 ], [ -73.606057817092207, 42.464752345770357 ], [ -73.601266006935731, 42.463100424562867 ], [ -73.591524388340744, 42.462238520148567 ], [ -73.584932652145824, 42.460323620533678 ], [ -73.580362840053027, 42.457561728721487 ], [ -73.570803246551634, 42.447972059304512 ], [ -73.557490794919332, 42.442772305581805 ], [ -73.548999200809533, 42.421193963113495 ], [ -73.541294535294568, 42.414175221741466 ], [ -73.53219992385965, 42.409044443016782 ], [ -73.507283991237287, 42.399435935486224 ], [ -73.494337624565631, 42.389334344903226 ], [ -73.489866862804675, 42.388674407985036 ], [ -73.479895390717175, 42.389414487257802 ], [ -73.471938822248362, 42.386996632617695 ], [ -73.467117089938839, 42.383315779340052 ], [ -73.460464475539382, 42.371383160787495 ], [ -73.457046666828461, 42.368133278017908 ], [ -73.450570020688005, 42.36610438988496 ], [ -73.438286686493541, 42.366615488082076 ], [ -73.432115030323359, 42.363037634313301 ], [ -73.427385298706781, 42.357814806910348 ], [ -73.414881998941553, 42.350068104765285 ], [ -73.412379140158635, 42.348054174571679 ], [ -73.407786398503859, 42.345036285212856 ], [ -73.402636685914132, 42.343613361202777 ], [ -73.395237099378406, 42.342267452982405 ], [ -73.380474932754851, 42.336423705572628 ], [ -73.36519380330806, 42.327799015866894 ], [ -73.35957912631514, 42.321748189542419 ], [ -73.35685528806161, 42.310899443533806 ], [ -73.351400600207924, 42.307111561176853 ], [ -73.342498109171657, 42.30476266904742 ], [ -73.324066170310473, 42.303224820362331 ], [ -73.300775527959615, 42.29762107878846 ], [ -73.294435901011212, 42.297438122320642 ], [ -73.27043532814065, 42.297549273408009 ], [ -73.257832085468195, 42.296199377500585 ], [ -73.240690232738615, 42.297965499788702 ], [ -73.210197466897213, 42.301383783109344 ], [ -73.191895823235882, 42.299900011473554 ], [ -73.185739281313317, 42.296627131169856 ], [ -73.17911777653795, 42.293911246989389 ], [ -73.159870229474862, 42.289989521607623 ], [ -73.150577935896152, 42.281917745420571 ], [ -73.141957596007984, 42.276977913654278 ], [ -73.132795301926137, 42.269059129968959 ], [ -73.127409719284842, 42.261651295871445 ], [ -73.114066771671389, 42.24914362713087 ], [ -73.096986149780179, 42.245519894954725 ], [ -73.074053976158552, 42.243986179314021 ], [ -73.045506318897935, 42.233442740981502 ], [ -73.040891689410103, 42.233057801191393 ], [ -73.025412922170617, 42.23589190594128 ], [ -73.008598286080684, 42.237067065689814 ], [ -73.001007906126688, 42.238280121801488 ], [ -72.995439298067922, 42.23726921405212 ], [ -72.971651897314345, 42.226260776846111 ], [ -72.937543167470025, 42.198093886573467 ], [ -72.926961857450564, 42.186883291814787 ], [ -72.914244685785278, 42.176023717142769 ], [ -72.909476999480091, 42.173432841296886 ], [ -72.89783478023169, 42.171194046696719 ], [ -72.883538756245031, 42.171167234288539 ], [ -72.859011434130863, 42.167830637605952 ], [ -72.852526872113884, 42.165457780689657 ], [ -72.846348282746234, 42.16207394434187 ], [ -72.832768234715132, 42.161826131198154 ], [ -72.815466422538478, 42.156772485054873 ], [ -72.811163726461203, 42.156463550381147 ], [ -72.776017259001577, 42.156132034202201 ], [ -72.758905498589272, 42.154595305217825 ], [ -72.74027587841951, 42.146195778070897 ], [ -72.731548594348567, 42.144394953192169 ], [ -72.71108828293562, 42.14014236233519 ], [ -72.691825928424905, 42.139352672112295 ], [ -72.68651640224472, 42.14042472869594 ], [ -72.671800797019216, 42.148610773037973 ], [ -72.66289062670721, 42.151853841084652 ], [ -72.656375223273969, 42.153253913113673 ], [ -72.64829694068149, 42.153204041581617 ], [ -72.631856425136334, 42.154036284453724 ], [ -72.618208669349698, 42.15476848683884 ], [ -72.612098262089191, 42.157130536607113 ], [ -72.610595413586907, 42.158041542311416 ], [ -72.600732432058635, 42.165182558749343 ], [ -72.593668131598122, 42.168116616464872 ], [ -72.586908780605143, 42.169485701223415 ], [ -72.57784562265698, 42.169394853315936 ], [ -72.568104514996449, 42.168296036273972 ], [ -72.547331360053178, 42.161979499328652 ], [ -72.530211991629585, 42.162143780478615 ], [ -72.481770805613337, 42.167069404866218 ], [ -72.452209833860294, 42.170231685018791 ], [ -72.444313629925503, 42.170029778067104 ], [ -72.436815349219984, 42.167881897956818 ], [ -72.417301169816866, 42.159139258078568 ], [ -72.409755908619161, 42.157213373715472 ], [ -72.384276491916737, 42.153913714493754 ], [ -72.376503320870583, 42.154527794389679 ], [ -72.367196372352041, 42.15785485244043 ], [ -72.354112962134735, 42.167386866117667 ], [ -72.345294976159749, 42.170774922014459 ], [ -72.334020211810568, 42.171900041142202 ], [ -72.319853851442645, 42.176882142736979 ], [ -72.310386873112932, 42.176428264751863 ], [ -72.29191768259625, 42.166369627209598 ], [ -72.282694671156762, 42.164969758369665 ], [ -72.271663951082374, 42.167479860501977 ], [ -72.247626895022634, 42.177951022766031 ], [ -72.239150970471641, 42.180099091640493 ], [ -72.220347310636242, 42.182094279869752 ], [ -72.208080805074161, 42.181411430166094 ], [ -72.182235719001753, 42.167903926683088 ], [ -72.167535339548948, 42.157689257094816 ], [ -72.148440584175191, 42.149865616245286 ], [ -72.135228062124582, 42.140400934790669 ], [ -72.128331854918301, 42.136236091766939 ], [ -72.120489811052096, 42.13382923478737 ], [ -72.111640943956331, 42.13337136074167 ], [ -72.087535143080814, 42.136148638702892 ], [ -72.081546909363368, 42.135275734713858 ], [ -72.067571637961208, 42.130091016231596 ], [ -72.059462713330134, 42.130137127444328 ], [ -72.047913324981423, 42.133540225954292 ], [ -72.027637174800375, 42.139502396085163 ], [ -72.008222993664134, 42.148211497707841 ], [ -71.989839584370188, 42.151892731976183 ], [ -71.967137772956093, 42.154571116436721 ], [ -71.928454587897548, 42.172405534290974 ], [ -71.914387668938687, 42.176147743228071 ], [ -71.900946695035216, 42.180771925860604 ], [ -71.876506360369646, 42.18684530686707 ], [ -71.866764864114572, 42.190572437171156 ], [ -71.853910787970008, 42.192429666127069 ], [ -71.846016026854144, 42.195752768651779 ], [ -71.834275895004566, 42.201398910470047 ], [ -71.814198950081575, 42.204119279843034 ], [ -71.79027661933192, 42.206953732240052 ], [ -71.782098935175952, 42.210058851501266 ], [ -71.759977561095113, 42.220065152021768 ], [ -71.748977304315176, 42.222323349708404 ], [ -71.741044473841711, 42.222712509887408 ], [ -71.716283143009747, 42.22345702125822 ], [ -71.706595627507937, 42.225151200420456 ], [ -71.695770314486211, 42.227756391069455 ], [ -71.670147157181248, 42.226845957911848 ], [ -71.656859240790752, 42.228993214402671 ], [ -71.635240503029365, 42.226819719060693 ], [ -71.628596540514309, 42.227151860160312 ], [ -71.616406533102463, 42.230539081068514 ], [ -71.604010644007786, 42.236395275304289 ], [ -71.593209559882837, 42.243639418846691 ], [ -71.576855629363962, 42.260271593286518 ], [ -71.571469597267225, 42.264158673911986 ], [ -71.564856727880908, 42.266691797380957 ], [ -71.562263173947059, 42.267744845199118 ], [ -71.546457868843461, 42.272861151477841 ], [ -71.499780864096778, 42.28489709804056 ], [ -71.492580114328788, 42.287857265758518 ], [ -71.479170552151984, 42.29680353812185 ], [ -71.470551078217667, 42.300781733008975 ], [ -71.451762230634003, 42.302529239298444 ], [ -71.436986887301245, 42.309346573124323 ], [ -71.413363032091496, 42.315245167291458 ], [ -71.404613537889659, 42.31599640556793 ], [ -71.385276750898484, 42.312979993526142 ], [ -71.384101948424345, 42.312843028807912 ], [ -71.374955479259299, 42.311412308737864 ], [ -71.36805966796959, 42.311347507334013 ], [ -71.361407909078892, 42.314323659627497 ], [ -71.343948111445272, 42.319619092211731 ], [ -71.332956273023498, 42.327282306587499 ], [ -71.315457596461059, 42.334763709993211 ], [ -71.299125540232723, 42.335721169410995 ], [ -71.285693033055139, 42.338258524201876 ], [ -71.264807843673879, 42.339053122365883 ], [ -71.262305341939367, 42.340399176353642 ], [ -71.251397492922521, 42.34536242440754 ], [ -71.242526196107875, 42.346526631234909 ], [ -71.232450132599865, 42.3473808658485 ], [ -71.229276745420535, 42.347678939504092 ], [ -71.207673990290573, 42.351139422470027 ], [ -71.188543850165544, 42.356010827220594 ], [ -71.184195720338565, 42.356742925126078 ], [ -71.170397446466708, 42.357670257323946 ], [ -71.15517944492025, 42.357857637965232 ], [ -71.14838280409586, 42.358311803246593 ], [ -71.1306632602913, 42.356496280197099 ], [ -71.123325774614329, 42.357816448177239 ], [ -71.120144379036759, 42.356912542851205 ], [ -71.118397624381331, 42.354044629726914 ], [ -71.111425897746074, 42.350603859190834 ], [ -71.110434080679951, 42.35015689125381 ], [ -71.107275678174517, 42.349126987641533 ], [ -71.101165865264448, 42.347922162810526 ], [ -71.09858038267754, 42.347792231458477 ], [ -71.092966522979467, 42.34790337494691 ], [ -71.088343448989534, 42.347590499301532 ], [ -71.079159334651635, 42.348029731322768 ], [ -71.073087575392634, 42.348048889166918 ], [ -71.071890814790009, 42.347907922458454 ], [ -71.069449314646889, 42.347907986172807 ], [ -71.065117174424245, 42.347171110260994 ], [ -71.063522491343974, 42.346901155968432 ], [ -71.061424905844845, 42.346477217148298 ], [ -71.061065974301442, 42.346340228574562 ] ], [ [ -112.479497499445728, 45.980126399083169 ], [ -112.476865558250395, 45.977006382196983 ], [ -112.474316556710079, 45.967236361758587 ], [ -112.463246706245997, 45.944466283376912 ], [ -112.458020836331897, 45.941037250647554 ], [ -112.449811991317603, 45.930726195601281 ], [ -112.446188082513856, 45.928876173092256 ], [ -112.442831143411112, 45.924725150419313 ], [ -112.434591342354139, 45.920236098836135 ], [ -112.424223633773593, 45.919465037816025 ], [ -112.416502869532835, 45.92108999446144 ], [ -112.407592087987283, 45.917946940290491 ], [ -112.361938278417256, 45.914665677182555 ], [ -112.35108951459037, 45.911056612200603 ], [ -112.330964025096549, 45.911835501088497 ], [ -112.327660060425956, 45.908104478100761 ], [ -112.325334109309438, 45.907493464445658 ], [ -112.319474283247487, 45.910164435554194 ], [ -112.301690714850409, 45.911056339438865 ], [ -112.287241102850615, 45.915294267296616 ], [ -112.27918426899366, 45.914074222275133 ], [ -112.273516400988825, 45.914474192577501 ], [ -112.256815679323921, 45.908184093914613 ], [ -112.229419562089276, 45.903662933183547 ], [ -112.101882868282729, 45.877799210259099 ], [ -112.089157287785554, 45.876494143461912 ], [ -112.054391428931496, 45.875803966466755 ], [ -112.037896931569023, 45.871572880715725 ], [ -111.957089713219062, 45.870123746978543 ], [ -111.954205817540284, 45.869833750452948 ], [ -111.937421429855391, 45.871954770798176 ], [ -111.918089133560912, 45.881464790781529 ], [ -111.913832283232836, 45.882513795198463 ], [ -111.903357643301476, 45.882105807716371 ], [ -111.898284814399091, 45.880293815084158 ], [ -111.894988921795601, 45.875944822454919 ], [ -111.889373112802105, 45.875494830132716 ], [ -111.883224323346951, 45.878294835689644 ], [ -111.873840638783719, 45.879904846257851 ], [ -111.867668844925959, 45.884973848610962 ], [ -111.847939484368666, 45.893713861579549 ], [ -111.818750394602446, 45.899923886140876 ], [ -111.790217237772666, 45.908994901166686 ], [ -111.750652359205063, 45.914713932273671 ], [ -111.72458296488054, 45.91482384673423 ], [ -111.70169545968848, 45.920324760097635 ], [ -111.660139352932333, 45.920038631819068 ], [ -111.596930612366847, 45.918264446618764 ], [ -111.55892230803363, 45.918073337668055 ], [ -111.551552446426186, 45.914953321643111 ], [ -111.546928540982364, 45.909837316283117 ], [ -111.54287062223095, 45.905721310840484 ], [ -111.534515775148861, 45.901834292551655 ], [ -111.520379020302101, 45.898382256871017 ], [ -111.505029272396271, 45.897352214543261 ], [ -111.463250939202567, 45.890375106149015 ], [ -111.447054192335202, 45.88311207157939 ], [ -111.428194462329373, 45.881464023142705 ], [ -111.385776040242007, 45.871411926782045 ], [ -111.35586841750802, 45.860562867923143 ], [ -111.339534615176277, 45.850392843797295 ], [ -111.312816907179808, 45.845193788300044 ], [ -111.250660508443445, 45.812703702834234 ], [ -111.207547202806467, 45.790372929257991 ], [ -111.202176289888641, 45.785771965572103 ], [ -111.196546389155159, 45.773702025748065 ], [ -111.184842574711595, 45.768152098867127 ], [ -111.122519511639737, 45.745962488811124 ], [ -111.090124938563065, 45.729421669058468 ], [ -111.064315255700521, 45.715303815561946 ], [ -111.059539305713187, 45.704344845749269 ], [ -111.055114355835116, 45.70013287185693 ], [ -111.045913462860611, 45.697172924359556 ], [ -111.041793510372614, 45.696230947804679 ], [ -111.031249629869961, 45.693736008028843 ], [ -111.017883774495061, 45.687873085865178 ], [ -111.013053822565695, 45.68285311533193 ], [ -111.010848840164982, 45.676604130476917 ], [ -111.01026984532794, 45.67552813422607 ], [ -111.008498862554788, 45.673697145094316 ], [ -110.989251135275083, 45.668540272112566 ], [ -110.968155480227963, 45.663375429373275 ], [ -110.953080721485946, 45.660994544418585 ], [ -110.937630946801164, 45.647254698449572 ], [ -110.914827285846741, 45.64022390657717 ], [ -110.888917679148008, 45.646606090148055 ], [ -110.879106819529099, 45.646095171769787 ], [ -110.870927939914097, 45.648475224748829 ], [ -110.863162050155935, 45.649155282935254 ], [ -110.852480207306598, 45.654106337390196 ], [ -110.840472386764944, 45.662285376333102 ], [ -110.830142532315804, 45.665756429221055 ], [ -110.806857838943586, 45.666824592964822 ], [ -110.795649972962309, 45.662994708157441 ], [ -110.775638204720238, 45.656265921654743 ], [ -110.741786461478085, 45.660836150142032 ], [ -110.724308361342608, 45.661805296377985 ], [ -110.682086090865084, 45.663037663415217 ], [ -110.668139981404522, 45.658654830626475 ], [ -110.655261888684834, 45.659295940572598 ], [ -110.643465804701634, 45.661379027861386 ], [ -110.637125752480912, 45.660189096159179 ], [ -110.611849524854676, 45.65111740606735 ], [ -110.59898640591183, 45.647245555895303 ], [ -110.573016167945042, 45.64408781644444 ], [ -110.559176040857736, 45.644327938885503 ], [ -110.551408971727582, 45.645876995973751 ], [ -110.537172860093165, 45.655368046987867 ], [ -110.526277779429066, 45.665267066669294 ], [ -110.501375585473369, 45.687129125977528 ], [ -110.455339691811233, 45.707045732108817 ], [ -110.446916716690311, 45.710497657970421 ], [ -110.43664773734379, 45.712686584067292 ], [ -110.398355760765725, 45.713518370864236 ], [ -110.38276870984015, 45.70734634364625 ], [ -110.339006641263126, 45.704145144634246 ], [ -110.308549492547812, 45.695646071315252 ], [ -110.268991354890886, 45.693116898152077 ], [ -110.264902369162073, 45.695077857437234 ], [ -110.261041436645101, 45.700776778806272 ], [ -110.260721491208031, 45.704755735757232 ], [ -110.263475585802126, 45.711076684188512 ], [ -110.261598652036966, 45.716157621622372 ], [ -110.240251798280198, 45.726106520395653 ], [ -110.232194911107385, 45.732575502141529 ], [ -110.220277982833949, 45.73567754315534 ], [ -110.17865222317306, 45.747086697680338 ], [ -110.090235350949129, 45.766756727993055 ], [ -110.055056364994158, 45.784709542228732 ], [ -110.021693366453647, 45.805470505611254 ], [ -109.976283716890549, 45.82537944943023 ], [ -109.937107257809771, 45.826921608203641 ], [ -109.908649628913324, 45.831990867711276 ], [ -109.902874702250898, 45.832719910501218 ], [ -109.8965567852471, 45.831449882902575 ], [ -109.874425091811759, 45.819902523603254 ], [ -109.8440295435054, 45.798328798297554 ], [ -109.802480158707951, 45.778248119414918 ], [ -109.775442632447806, 45.749389075149615 ], [ -109.759939412785059, 45.736949345117388 ], [ -109.753996375377923, 45.733798422085705 ], [ -109.743185248001168, 45.732219501222886 ], [ -109.714634901751424, 45.734759598233381 ], [ -109.686558399912144, 45.73266978702776 ], [ -109.656787674492136, 45.723938108614171 ], [ -109.628069870537558, 45.710999491922351 ], [ -109.616915628306089, 45.708241595722036 ], [ -109.602732363107208, 45.706268698676467 ], [ -109.588412248272959, 45.710369694970773 ], [ -109.583666183199924, 45.710720711863708 ], [ -109.562036702983207, 45.704708918922847 ], [ -109.551561512271732, 45.703480989208167 ], [ -109.528749240367588, 45.707509031822525 ], [ -109.507737897472282, 45.707372135622286 ], [ -109.498734678799877, 45.704061218385043 ], [ -109.485566221284415, 45.693639365592119 ], [ -109.477279977231007, 45.689130429566603 ], [ -109.4378960731555, 45.680829535922591 ], [ -109.434303011865666, 45.681340523962518 ], [ -109.420714851347782, 45.688111387898523 ], [ -109.406012710026147, 45.698560173771497 ], [ -109.390822431526246, 45.70116910167679 ], [ -109.367337819963907, 45.691869257841553 ], [ -109.356298408792838, 45.676709561984644 ], [ -109.341382023291615, 45.66909971666459 ], [ -109.327862657925081, 45.659909914278394 ], [ -109.314175371067392, 45.657941959346282 ], [ -109.293109955220245, 45.657689968458691 ], [ -109.281489710019201, 45.65582101455432 ], [ -109.270175483753221, 45.655562023597135 ], [ -109.262752324274501, 45.653921065363527 ], [ -109.250659047962642, 45.648451204771966 ], [ -109.247263988042562, 45.646853299489351 ], [ -109.198328127296548, 45.630134449563961 ], [ -109.178048678660787, 45.614823058749302 ], [ -109.162766354350552, 45.60642343126495 ], [ -109.147126058116982, 45.602692708890757 ], [ -109.125679672737405, 45.600602028082982 ], [ -109.090125994598353, 45.594976573737782 ], [ -109.054465439817434, 45.601815954310304 ], [ -109.037116154952258, 45.603903164258526 ], [ -108.98605939187641, 45.619845788496647 ], [ -108.936238422947852, 45.629096603497324 ], [ -108.924443203637409, 45.632205796709236 ], [ -108.915303053250724, 45.636066941507067 ], [ -108.903858805750843, 45.636696143980373 ], [ -108.863697039997163, 45.646779836468085 ], [ -108.794542699871315, 45.664267095171638 ], [ -108.789430574867637, 45.663855192132019 ], [ -108.7815423412531, 45.660460341653767 ], [ -108.775881217127335, 45.661036448257207 ], [ -108.769243086697003, 45.662764573937444 ], [ -108.766283028225928, 45.663519630231349 ], [ -108.761078923520941, 45.664725729503182 ], [ -108.748292663692041, 45.667540953102232 ], [ -108.706070895620925, 45.683151367346156 ], [ -108.697692740797848, 45.686180445981257 ], [ -108.605681189384839, 45.731301204645845 ], [ -108.586683861691697, 45.740529337722428 ], [ -108.568052530503024, 45.749062462095345 ], [ -108.560598349467952, 45.749314520780317 ], [ -108.556829265554782, 45.749966548818833 ], [ -108.548040053466295, 45.75201964687038 ], [ -108.509610091233768, 45.752114955147022 ], [ -108.503536941688381, 45.753088017056484 ], [ -108.492633831295038, 45.758348166819125 ], [ -108.487338815415285, 45.767767337463113 ], [ -108.486926823606694, 45.772741411608429 ], [ -108.479747786870306, 45.788873700740055 ], [ -108.474819739125849, 45.791990786992194 ], [ -108.456714540680267, 45.796374004967838 ], [ -108.426013145531499, 45.808123463554203 ], [ -108.394266603452493, 45.827335099939091 ], [ -108.385165492478819, 45.824234131271652 ], [ -108.368616253075217, 45.823864284301372 ], [ -108.344148946929479, 45.819263426867145 ], [ -108.339708905099542, 45.817493432424108 ], [ -108.331308877110459, 45.810623367155699 ], [ -108.320031794849456, 45.805683363791871 ], [ -108.306085646570168, 45.80339443743847 ], [ -108.270074382219491, 45.79264450084623 ], [ -108.22374735307433, 45.784894111831143 ], [ -108.188361298096098, 45.776456707992025 ], [ -108.171805702741338, 45.776766100364881 ], [ -108.159025180698393, 45.77928747433333 ], [ -108.140798554015689, 45.778337869331878 ], [ -108.110256406009157, 45.780066639934134 ], [ -108.097232863421269, 45.782448028786462 ], [ -108.07956225718516, 45.781269402619778 ], [ -108.069048845692606, 45.782177683574787 ], [ -108.016769918616703, 45.782510930047074 ], [ -107.995284959179941, 45.780901606015007 ], [ -107.955959888459986, 45.780103231274275 ], [ -107.947368300017871, 45.777581709038294 ], [ -107.925912974622506, 45.76720374090884 ], [ -107.903252188590884, 45.767006271407148 ], [ -107.870389857595669, 45.759337201044779 ], [ -107.849522557833566, 45.748638210533578 ], [ -107.832462258389086, 45.745881265288475 ], [ -107.779159106322197, 45.743774757661768 ], [ -107.719477914533144, 45.743716241318161 ], [ -107.689384940369393, 45.746177925235436 ], [ -107.612201068209885, 45.746407354776878 ], [ -107.592210801636782, 45.746457724573439 ], [ -107.581438347278493, 45.741418680299084 ], [ -107.536811827925888, 45.714688269808775 ], [ -107.475982621627125, 45.648906346173156 ], [ -107.465699287633456, 45.625234446438121 ], [ -107.461740534124388, 45.597172278018057 ], [ -107.457475916183583, 45.585464833294012 ], [ -107.452609011371507, 45.578674614570552 ], [ -107.452899449072333, 45.570602260377726 ], [ -107.447291792170759, 45.558383823276145 ], [ -107.399311077950983, 45.505720429682064 ], [ -107.392139343804857, 45.491750120371982 ], [ -107.377924790609171, 45.487630276517201 ], [ -107.374987775730162, 45.484411248683443 ], [ -107.374736401867011, 45.469010864694326 ], [ -107.376895625993868, 45.466130754012831 ], [ -107.377796966656291, 45.458920556811279 ], [ -107.376423180770914, 45.452149410211078 ], [ -107.376447485826361, 45.420589614977054 ], [ -107.36954365364052, 45.409320442527182 ], [ -107.367285889153578, 45.377718675538169 ], [ -107.364745969921216, 45.373408604561327 ], [ -107.354979911075262, 45.365797557048658 ], [ -107.347320332644912, 45.349429247313971 ], [ -107.351341919407517, 45.339456931034555 ], [ -107.35079302661066, 45.336545863634697 ], [ -107.342034256803728, 45.324228667129304 ], [ -107.343896746398727, 45.314676392540633 ], [ -107.344782043488379, 45.308656223860638 ], [ -107.342066790789971, 45.289826769497814 ], [ -107.34673624460649, 45.282925529537444 ], [ -107.342090491476412, 45.274117359507372 ], [ -107.348560077732188, 45.265267048572973 ], [ -107.357700634037826, 45.235084668173151 ], [ -107.364544563217748, 45.224586675864352 ], [ -107.358524257852437, 45.219184792689688 ], [ -107.357768879890983, 45.204986921464226 ], [ -107.361369818964306, 45.198516934092105 ], [ -107.361354670597734, 45.192626984127919 ], [ -107.367488414424798, 45.175537058151669 ], [ -107.364573108390033, 45.166626167339459 ], [ -107.365732966588794, 45.159676213069396 ], [ -107.37433876250951, 45.141877266939289 ], [ -107.365282329821838, 45.134827429176525 ], [ -107.349282629479816, 45.124966692111009 ], [ -107.346871555893358, 45.124756720880484 ], [ -107.34639147518817, 45.12208674860954 ], [ -107.339387150664308, 45.117077868669327 ], [ -107.342979998695299, 45.106976912934876 ], [ -107.343216692459805, 45.094526014292754 ], [ -107.346626579159334, 45.086168046721497 ], [ -107.346756424466079, 45.079866098068955 ], [ -107.336646644392872, 45.060258371424332 ], [ -107.334975123645435, 45.041437545684616 ], [ -107.332914997839993, 45.038766589823432 ], [ -107.31851742068676, 45.032136797729187 ], [ -107.312031926817625, 45.019868966700152 ], [ -107.301472381165567, 45.010188156424398 ], [ -107.297719047885479, 45.001219268145029 ], [ -107.292842480855811, 44.984290288377963 ], [ -107.259539008321241, 44.964404633267662 ], [ -107.242029248345901, 44.955931837203003 ], [ -107.18218173870622, 44.932189529926106 ], [ -107.178618561124949, 44.929386567899691 ], [ -107.176703396467062, 44.924804583087699 ], [ -107.172896220814451, 44.922355624094727 ], [ -107.162572838557821, 44.919818741745885 ], [ -107.148626372167683, 44.91859090414399 ], [ -107.140905131767965, 44.918739995614835 ], [ -107.12846080001313, 44.92171914915243 ], [ -107.120671565327285, 44.922341242838641 ], [ -107.089992583949055, 44.92210160588354 ], [ -107.07778515297106, 44.919850744362286 ], [ -107.044961915038385, 44.908632097566944 ], [ -107.03311351326667, 44.906900230660867 ], [ -107.017548899649213, 44.899103385830529 ], [ -107.005554303352369, 44.884653473408413 ], [ -106.99241567659675, 44.86711353392726 ], [ -106.9878763031696, 44.849897502200982 ], [ -106.98041400328853, 44.842390527988819 ], [ -106.958296278143294, 44.830751636605228 ], [ -106.945172851697421, 44.823862693748858 ], [ -106.940198652793484, 44.818559699240851 ], [ -106.936803371656637, 44.804552644145652 ], [ -106.936580929285824, 44.773431471810959 ], [ -106.935734710183468, 44.759260396900203 ], [ -106.920520905396941, 44.740450410449775 ], [ -106.918566682746842, 44.735120417413285 ], [ -106.918811408565418, 44.726640411593287 ], [ -106.915767086162177, 44.719106424952635 ], [ -106.911134686043141, 44.710413448994714 ], [ -106.909654369700647, 44.701959455929433 ], [ -106.900872920530773, 44.694921511591275 ], [ -106.900513598756376, 44.685522514622313 ], [ -106.888328959052458, 44.675420602790226 ], [ -106.875610134922098, 44.660360707671792 ], [ -106.87177178369609, 44.652811744932258 ], [ -106.864050300669092, 44.644312817129006 ], [ -106.853460473766759, 44.627920931042382 ], [ -106.846608850146254, 44.614802015615027 ], [ -106.847188436996404, 44.602240033524168 ], [ -106.836986837942788, 44.592532152932314 ], [ -106.829692326194476, 44.583220248136385 ], [ -106.819567824719087, 44.576453370728196 ], [ -106.816622612001794, 44.572562412765066 ], [ -106.814158038488671, 44.55787548226234 ], [ -106.809457605770618, 44.54903356192753 ], [ -106.807451179860493, 44.538314618823769 ], [ -106.800606331153332, 44.519263764111379 ], [ -106.803330039251136, 44.508704765332183 ], [ -106.80054443494457, 44.480521753244872 ], [ -106.783613750697356, 44.462451922230393 ], [ -106.744382249871848, 44.430645384377712 ], [ -106.737980919390807, 44.419334429965694 ], [ -106.710910696810643, 44.38648267287482 ], [ -106.695628116683352, 44.377285836254053 ], [ -106.689089845937644, 44.371525904593859 ], [ -106.670366152241755, 44.361886114838946 ], [ -106.657746718580142, 44.35825426253281 ], [ -106.651528485438305, 44.354893334233573 ], [ -106.622467293789484, 44.331124672537619 ], [ -106.606101455553528, 44.304414867038169 ], [ -106.592932878774818, 44.290994033849877 ], [ -106.582975495792951, 44.285204163409631 ], [ -106.550450349412472, 44.274977594229178 ], [ -106.51584220856023, 44.270755056898253 ], [ -106.489100186263201, 44.260436351668083 ], [ -106.480348855927616, 44.259097413638763 ], [ -106.457536037393723, 44.259066571816511 ], [ -106.440919356139872, 44.252154688995589 ], [ -106.415138383093876, 44.247477872374859 ], [ -106.396483622345301, 44.237125027876047 ], [ -106.38052199802793, 44.231846149056317 ], [ -106.36137118219844, 44.218658310056902 ], [ -106.355244935619979, 44.216186356428295 ], [ -106.347615648866395, 44.215359408416624 ], [ -106.309619280738161, 44.217766652089281 ], [ -106.299860907375219, 44.216205719382629 ], [ -106.293734650544948, 44.213047765879125 ], [ -106.277002874743772, 44.197586904203 ], [ -106.268640537627405, 44.194965962604869 ], [ -106.26056823763318, 44.194898014356859 ], [ -106.242012541913795, 44.199548167940556 ], [ -106.212371349747528, 44.210549513900965 ], [ -106.205001082539425, 44.21663861069802 ], [ -106.199881870078471, 44.218179677053357 ], [ -106.184591190910481, 44.218167869412881 ], [ -106.161435110280294, 44.212088136016774 ], [ -106.155964875321146, 44.21298820668995 ], [ -106.140392232729823, 44.219099430634735 ], [ -106.122363409001437, 44.216349640485916 ], [ -106.088693937194819, 44.220580097385877 ], [ -106.058433553696219, 44.215259426018186 ], [ -106.027304185176092, 44.219451865420837 ], [ -106.016554689819372, 44.216437961233382 ], [ -105.981389188362982, 44.20325132838088 ], [ -105.950129970345372, 44.194290735906542 ], [ -105.927226063602816, 44.177612775078835 ], [ -105.920877823695804, 44.176792858205552 ], [ -105.908838375839096, 44.178964102047296 ], [ -105.892884775517729, 44.178601350648378 ], [ -105.867431824342063, 44.188784048315767 ], [ -105.853286291394951, 44.203123716716732 ], [ -105.834494568151584, 44.213313389486181 ], [ -105.819960004880429, 44.215575750965947 ], [ -105.806218468143271, 44.219914174924945 ], [ -105.791813910074708, 44.218525418761914 ], [ -105.778988403861888, 44.222954843974044 ], [ -105.760287666026002, 44.226648376430468 ], [ -105.735872665671465, 44.237306590184538 ], [ -105.728907369301879, 44.243505626362257 ], [ -105.724077169179552, 44.245637564864253 ], [ -105.718865957450646, 44.246217432496273 ], [ -105.67400415383625, 44.242282978579844 ], [ -105.642805877094588, 44.248973263131496 ], [ -105.629408414962569, 44.254584846117119 ], [ -105.624563279514291, 44.257921672462423 ], [ -105.60225478464811, 44.279603874241253 ], [ -105.591901627311174, 44.293023519679394 ], [ -105.584485379913787, 44.295350320087145 ], [ -105.571232856672154, 44.295231987751379 ], [ -105.544902808119673, 44.294602326774445 ], [ -105.531024230680757, 44.293105976061483 ], [ -105.509813146778299, 44.281440402994015 ], [ -105.504182887977166, 44.279811247326826 ], [ -105.493989488249454, 44.279490153884659 ], [ -105.47721186979534, 44.280292170286494 ], [ -105.472603760513621, 44.283542187815073 ], [ -105.467361688434721, 44.289962219883016 ], [ -105.464172633087301, 44.293365237500346 ], [ -105.460121510516586, 44.2950852487186 ], [ -105.424208121209901, 44.294997281277219 ], [ -105.370343035916093, 44.294936330432058 ], [ -105.363262691288725, 44.290191311877535 ], [ -105.35193224386974, 44.289420317646645 ], [ -105.326884320817555, 44.292579357142174 ], [ -105.309190693261911, 44.297225399860871 ], [ -105.300043339946015, 44.297454409808338 ], [ -105.263923933353411, 44.297511444234971 ], [ -105.239866966766343, 44.29265547001495 ], [ -105.150920640695901, 44.293273838712111 ], [ -105.140353225978785, 44.290652865841174 ], [ -105.129404786675977, 44.286334884115618 ], [ -105.083886079670236, 44.285561066471907 ], [ -105.065422391414771, 44.286064145460266 ], [ -105.058098110067021, 44.284691167198361 ], [ -105.052741902301733, 44.283238180374177 ], [ -105.044356580318407, 44.281509204356418 ], [ -105.013494418589147, 44.279564319637473 ], [ -104.993558647863424, 44.280590407954236 ], [ -104.96779254451917, 44.272400467455107 ], [ -104.943820525881321, 44.266380535459959 ], [ -104.921770604004834, 44.264999622355525 ], [ -104.907320013119502, 44.268299700973223 ], [ -104.849585614957775, 44.271141958970517 ], [ -104.74016789975822, 44.280980497753056 ], [ -104.712959327409237, 44.280141723713868 ], [ -104.631465752847603, 44.293345422823108 ], [ -104.626780512242831, 44.295862463432535 ], [ -104.615481076411342, 44.314383568815181 ], [ -104.594331998115223, 44.321993734647798 ], [ -104.58044524373139, 44.322676839808601 ], [ -104.56789459680104, 44.325663934061197 ], [ -104.555389014149043, 44.332404024809733 ], [ -104.549880721047941, 44.332793065147811 ], [ -104.53883206904456, 44.329585148896847 ], [ -104.524862156472267, 44.320815261787295 ], [ -104.519292828045963, 44.319595305501728 ], [ -104.512952487378072, 44.320113353133358 ], [ -104.496776770581121, 44.327926449622943 ], [ -104.476314033677369, 44.341945530064564 ], [ -104.46750974736689, 44.35075358100368 ], [ -104.455317261511368, 44.35844366251964 ], [ -104.452578213709259, 44.364394691862621 ], [ -104.448794078285502, 44.368194725764504 ], [ -104.424097001201019, 44.382293954956275 ], [ -104.417374661477382, 44.383114011977788 ], [ -104.407937154954951, 44.381813079793957 ], [ -104.404235975127449, 44.382946115499777 ], [ -104.400375817789637, 44.386986171016076 ], [ -104.398941795285623, 44.391903213650146 ], [ -104.397064722055973, 44.394356245568268 ], [ -104.391456452441815, 44.397095313755074 ], [ -104.377348706747341, 44.397694445872325 ], [ -104.366255147705942, 44.401676581486761 ], [ -104.358594760822001, 44.404873683283789 ], [ -104.351133401173499, 44.411045816446006 ], [ -104.343212994795635, 44.414955937683402 ], [ -104.285806899556718, 44.443376959867621 ], [ -104.270539034495656, 44.457686382835632 ], [ -104.241454499577742, 44.478075864003131 ], [ -104.223951812111508, 44.499846917385895 ], [ -104.21859671756107, 44.512728735645055 ], [ -104.208677425478484, 44.522936496138271 ], [ -104.20063615829487, 44.527789329244463 ], [ -104.190801807203698, 44.530917145447546 ], [ -104.15738355352137, 44.534517569809289 ], [ -104.123744323589776, 44.543213990310356 ], [ -104.106409662069865, 44.544186707602073 ], [ -104.055931704862587, 44.542617889346765 ], [ -104.03937508652615, 44.546058626107744 ], [ -104.0004635836695, 44.546233000883824 ], [ -103.982052776355914, 44.547404993555105 ], [ -103.967228105304883, 44.544321973403648 ], [ -103.95756165183937, 44.539103948974407 ], [ -103.940516832352074, 44.525522890631535 ], [ -103.935984622587682, 44.523462880617011 ], [ -103.925913174000641, 44.522432870852995 ], [ -103.890168597479672, 44.522013847583487 ], [ -103.863883429205899, 44.519713823559741 ], [ -103.860236256304873, 44.516894811554756 ], [ -103.857078061546758, 44.503985764854761 ], [ -103.854338922839759, 44.499506749897883 ], [ -103.847906624809596, 44.493303754539404 ], [ -103.837088124484694, 44.483992765405837 ], [ -103.824727564545142, 44.478602774122344 ], [ -103.814405105180498, 44.477385776737172 ], [ -103.803654627553001, 44.476496779218941 ], [ -103.787845924918685, 44.475252783624761 ], [ -103.754328442189134, 44.475111786754368 ], [ -103.748041191349941, 44.475763789333541 ], [ -103.740785954313253, 44.478533792612488 ], [ -103.721208315549987, 44.487032795926304 ], [ -103.706017799212745, 44.487742822306735 ], [ -103.698959554734202, 44.486574841004803 ], [ -103.679915885988208, 44.47979290810683 ], [ -103.645079688994599, 44.475493997169437 ], [ -103.636778396118117, 44.470874035612113 ], [ -103.628340096446166, 44.464854081482173 ], [ -103.599263084903086, 44.45089321079513 ], [ -103.58755167477112, 44.442123280080047 ], [ -103.575702257768285, 44.430385366051631 ], [ -103.568935026572888, 44.427474396455153 ], [ -103.558535675304384, 44.425361431384573 ], [ -103.550425401580299, 44.423633459233066 ], [ -103.5342968574558, 44.419563518513165 ], [ -103.532327790646022, 44.418605528276245 ], [ -103.518350308138835, 44.400954657319261 ], [ -103.509003994270486, 44.396503704856187 ], [ -103.506035895279169, 44.395759716363948 ], [ -103.490883455232037, 44.389083819120479 ], [ -103.484398280402303, 44.381274897158519 ], [ -103.467674833639364, 44.366726066529651 ], [ -103.44551823922157, 44.341477320965929 ], [ -103.435957979166091, 44.323475467888919 ], [ -103.436514989236457, 44.315617507171524 ], [ -103.432578875744994, 44.296475630131312 ], [ -103.398382967855838, 44.243898093266836 ], [ -103.383214581799848, 44.227475281835076 ], [ -103.368459188564898, 44.217626418410752 ], [ -103.348439635732774, 44.197416643211994 ], [ -103.323474917156261, 44.179555864782664 ], [ -103.315547667965234, 44.16479698905318 ], [ -103.305652368668703, 44.158217068767954 ], [ -103.295978046908687, 44.140879210092308 ], [ -103.278834507159644, 44.13066733326071 ], [ -103.274180324982879, 44.116785429305118 ], [ -103.264062988129055, 44.108717509619645 ], [ -103.250436558004111, 44.106306568899967 ], [ -103.232393019415056, 44.105208579892953 ], [ -103.221710700223454, 44.104407587403344 ], [ -103.195884934961427, 44.104277595526007 ], [ -103.183929566459668, 44.099448627731022 ], [ -103.178184395463745, 44.099047632003909 ], [ -103.151770618462905, 44.1005276314498 ], [ -103.138502233082178, 44.103518616715796 ], [ -103.112508490747999, 44.11701853608308 ], [ -103.067974164248227, 44.117804538805103 ], [ -102.938637795364798, 44.118048181774242 ], [ -102.915840322845426, 44.111746105701435 ], [ -102.898841991940159, 44.105055072901607 ], [ -102.889586801902951, 44.104048030846556 ], [ -102.654788731362132, 44.103517429641961 ], [ -102.627474380398453, 44.106847429033436 ], [ -102.605769148559318, 44.103338520809395 ], [ -102.518907113694013, 44.102468691994297 ], [ -102.503251932400516, 44.097715799779195 ], [ -102.498246839895344, 44.093335884101606 ], [ -102.457900695453688, 44.06738940484864 ], [ -102.436279067643639, 44.063818507587634 ], [ -102.423224684752682, 44.068556462173149 ], [ -102.416785497053098, 44.068987469694648 ], [ -102.378606385158307, 44.067107581129505 ], [ -102.373853246572637, 44.065756611074448 ], [ -102.369962132885632, 44.062868661223675 ], [ -102.360173844730724, 44.048796883063773 ], [ -102.341702297579758, 44.033607129737504 ], [ -102.328716913592729, 44.031188183645732 ], [ -102.311115389165522, 44.023467314783794 ], [ -102.297968998855978, 44.021717356503629 ], [ -102.253823760379845, 43.991256803467287 ], [ -102.243859532746711, 43.986419881430741 ], [ -102.239038409358642, 43.985858897358149 ], [ -102.215119751927816, 43.987388919610574 ], [ -102.207909575648912, 43.985717954506654 ], [ -102.188042188183502, 43.971138183782578 ], [ -102.14505741731881, 43.930230811978973 ], [ -102.138831270758331, 43.927659858740434 ], [ -102.051183035841674, 43.907259310789925 ], [ -102.019619265129251, 43.894537550738576 ], [ -101.971187047328343, 43.872061011549519 ], [ -101.940225228820523, 43.859789320374304 ], [ -101.89950617668768, 43.839739829371858 ], [ -101.890915953418059, 43.835562942354507 ], [ -101.886520826778479, 43.835070972301054 ], [ -101.661219874556224, 43.83570175270512 ], [ -101.541894652073424, 43.836063919254251 ], [ -101.524423444192323, 43.840831834737408 ], [ -101.496355118217281, 43.849941653205335 ], [ -101.482583023552948, 43.851062612310336 ], [ -101.39470745539171, 43.852001494781327 ], [ -101.375367338328999, 43.851188493945003 ], [ -101.359803246332376, 43.850322498863228 ], [ -101.318291049353931, 43.84307163999712 ], [ -101.227966498270476, 43.842693540431696 ], [ -101.218063410204593, 43.845543445862305 ], [ -101.180777997091113, 43.863841889246117 ], [ -101.159796789300756, 43.871741639233996 ], [ -101.141196577438095, 43.881281350288639 ], [ -101.108816218667485, 43.896829874958648 ], [ -101.085776038007666, 43.900899721873273 ], [ -101.064267906997543, 43.901201671637459 ], [ -100.922329612098494, 43.900980009608688 ], [ -100.915943547751866, 43.899469003735206 ], [ -100.885624256471601, 43.887720087311223 ], [ -100.8801691938082, 43.886850070263193 ], [ -100.759112692298132, 43.886849207432853 ], [ -100.73543745748799, 43.884999157742811 ], [ -100.70588120900905, 43.883061137078847 ], [ -100.692186093985541, 43.883179104904421 ], [ -100.683420019274976, 43.885109048113797 ], [ -100.644799670146355, 43.90594860647095 ], [ -100.634492576587689, 43.90869855128026 ], [ -100.50043539975978, 43.908798453897525 ], [ -100.366667346439513, 43.911079192307554 ], [ -100.312909510716267, 43.912399082258645 ], [ -100.190378177299934, 43.912418404877599 ], [ -100.182488883040278, 43.910797480345408 ], [ -100.155967949834064, 43.899566803323381 ], [ -100.150840757256518, 43.898437854514924 ], [ -100.045719571251098, 43.898110640511661 ], [ -99.875371962297038, 43.89718088241095 ], [ -99.865674678449054, 43.895212989261402 ], [ -99.805934952916772, 43.877451804227853 ], [ -99.74546210074908, 43.876682258148449 ], [ -99.7103970160492, 43.868690392691597 ], [ -99.619146098226565, 43.868412254737578 ], [ -99.60593964438273, 43.864322308052458 ], [ -99.564678148914084, 43.850063471199775 ], [ -99.55305772760228, 43.847541484720367 ], [ -99.517442521103618, 43.847374401152429 ], [ -99.486481501778243, 43.842952575719806 ], [ -99.453468341002434, 43.825993172840043 ], [ -99.433447678310088, 43.818173498055003 ], [ -99.405126668797365, 43.802915010127897 ], [ -99.39530737644688, 43.801023141434946 ], [ -99.385442100785099, 43.800184259156786 ], [ -99.367535740048467, 43.806844366084157 ], [ -99.361889583860531, 43.806455432423284 ], [ -99.355969370103409, 43.803121539787902 ], [ -99.344203927360439, 43.795454765738192 ], [ -99.339076726507614, 43.79165486969903 ], [ -99.329540250970737, 43.778636138237609 ], [ -99.325694101372946, 43.775855214636586 ], [ -99.312533666324001, 43.770835418144735 ], [ -99.25920193805662, 43.75260520769401 ], [ -99.208382059438932, 43.751884722376012 ], [ -99.182960700717359, 43.753326952386701 ], [ -99.163917390752971, 43.751908159689044 ], [ -99.059972830683535, 43.752176178066065 ], [ -99.026258265892579, 43.748537547987119 ], [ -98.99080355467828, 43.738649669761259 ], [ -98.958378086891443, 43.738237319182694 ], [ -98.854685611036601, 43.738007200873618 ], [ -98.795014765240524, 43.738056558073829 ], [ -98.780320549124681, 43.737686397452364 ], [ -98.76580927671391, 43.734466220578831 ], [ -98.74566674327825, 43.722144873440598 ], [ -98.739013615962591, 43.719954719539089 ], [ -98.69839503812922, 43.716123845885456 ], [ -98.674147605465279, 43.709375306881441 ], [ -98.50034046685532, 43.708490699535318 ], [ -98.458889532816059, 43.69583987164674 ], [ -98.453594424465422, 43.694798767418575 ], [ -98.444210266983418, 43.694890581619887 ], [ -98.325883277884387, 43.695933235515085 ], [ -98.146222873823262, 43.695453891450221 ], [ -98.070164299742146, 43.693805278929403 ], [ -98.057102007596583, 43.692317179631381 ], [ -98.04674178289315, 43.691543098745512 ], [ -98.012134083828144, 43.691832814269915 ], [ -97.994822733091652, 43.692316636998214 ], [ -97.966883152198392, 43.693621233080265 ], [ -97.947969768202242, 43.694932956841278 ], [ -97.879913285854457, 43.69445099011979 ], [ -97.870468011395374, 43.691139876533974 ], [ -97.847083224851261, 43.678249629626301 ], [ -97.820005389355259, 43.667412324551783 ], [ -97.810713145939758, 43.665752206987449 ], [ -97.786969594273359, 43.664710884789478 ], [ -97.725574428380597, 43.665931339936314 ], [ -97.667125526598369, 43.665580280099974 ], [ -97.606539596675219, 43.665313218584743 ], [ -97.507226076485765, 43.66413013438337 ], [ -97.436514688770444, 43.666758905404158 ], [ -97.388525718154639, 43.666159785250628 ], [ -97.129250735484945, 43.666593212893005 ], [ -97.122429610882634, 43.666448147536912 ], [ -97.117890519073327, 43.665059118755202 ], [ -97.089507849239425, 43.643887066176596 ], [ -97.03633761317657, 43.612736811295534 ], [ -97.026365394115743, 43.609127734189627 ], [ -96.809549017495243, 43.608484456694768 ], [ -96.791650661380274, 43.610445259750712 ], [ -96.780068432760729, 43.612474129199548 ], [ -96.770349235137985, 43.612695027310096 ], [ -96.75989602177016, 43.612702918858766 ], [ -96.728249079756594, 43.606965737947455 ], [ -96.711265513818844, 43.605485663552898 ], [ -96.690588832757314, 43.6064845582099 ], [ -96.652760586771322, 43.60834636267235 ], [ -96.64085819833879, 43.610234291255594 ], [ -96.571985915468758, 43.608513966965077 ], [ -96.453374263933028, 43.609007943618955 ], [ -96.432194233813959, 43.608870643339003 ], [ -96.376687534480212, 43.608640854672487 ], [ -96.331359332169058, 43.609090206769899 ], [ -96.308218229550903, 43.615719848389212 ], [ -96.248561420350143, 43.635860962529669 ], [ -96.212953050308101, 43.639419498727953 ], [ -96.190736186322269, 43.637569219986709 ], [ -96.053301862679945, 43.637521465736235 ], [ -95.957405626110713, 43.637677447248201 ], [ -95.933478902497214, 43.644165234320532 ], [ -95.924826676044432, 43.642845169698461 ], [ -95.909293298638573, 43.63781806376506 ], [ -95.623547570484902, 43.637658883091412 ], [ -95.593853551636528, 43.637693668248744 ], [ -95.565776590313604, 43.63740346833989 ], [ -95.562747486330792, 43.637410446407713 ], [ -95.454016729924362, 43.637802553128012 ], [ -95.335574605165618, 43.637431438451721 ], [ -95.313875854167264, 43.636130254746476 ], [ -95.294954189261162, 43.63766005062709 ], [ -95.174588964944249, 43.638658886846045 ], [ -95.087605067798307, 43.637239074435541 ], [ -95.007372293669292, 43.638309292673576 ], [ -94.994958900590277, 43.639839156284019 ], [ -94.98542148889311, 43.641560044990094 ], [ -94.964210619614533, 43.642138832519095 ], [ -94.958290333243738, 43.645148745162551 ], [ -94.951148965088706, 43.650168627293496 ], [ -94.943870638451827, 43.652068539534852 ], [ -94.854617983309595, 43.652666685443606 ], [ -94.776550777538688, 43.653516938319541 ], [ -94.755042758480911, 43.660374696466079 ], [ -94.733533981752913, 43.664464605380019 ], [ -94.718366487032768, 43.66671457131477 ], [ -94.650493477967245, 43.666615473582389 ], [ -94.643428225026952, 43.669026450751588 ], [ -94.633868776710955, 43.67829638865048 ], [ -94.626414508856172, 43.681065363616092 ], [ -94.501028847408378, 43.680257189231341 ], [ -94.488821478336902, 43.678956184039926 ], [ -94.450452251541279, 43.678937148666002 ], [ -94.447637161424936, 43.678944146031803 ], [ -94.444524060531791, 43.679051142666104 ], [ -94.437809853466419, 43.678426139285968 ], [ -94.427029566375666, 43.673501151107558 ], [ -94.417355278026434, 43.671456150686254 ], [ -94.408901018589361, 43.670224147690476 ], [ -94.345857982164873, 43.669926086439688 ], [ -94.33216256949737, 43.666035087334656 ], [ -94.247625812827664, 43.665997002027318 ], [ -94.129495608250721, 43.665523923570177 ], [ -94.113664058396949, 43.660473935029216 ], [ -94.096978464666535, 43.659893927167168 ], [ -94.085228046285465, 43.659534921509355 ], [ -94.066825403797566, 43.653034941490695 ], [ -94.056983054668791, 43.651645942823407 ], [ -93.830694743040965, 43.652225493715591 ], [ -93.791303258050647, 43.64920439001073 ], [ -93.773472594984767, 43.649204344341541 ], [ -93.75020175993717, 43.652103296431747 ], [ -93.728090937734706, 43.658123464251055 ], [ -93.721269681089183, 43.659595515471636 ], [ -93.6771019146816, 43.659633804743777 ], [ -93.660820331847589, 43.665035943769936 ], [ -93.64842184806929, 43.665849031570872 ], [ -93.577244016262341, 43.666165510083367 ], [ -93.568195643958219, 43.66537656424822 ], [ -93.518388671814776, 43.666196904397758 ], [ -93.513322498124197, 43.66792495453214 ], [ -93.506738325773711, 43.67337605084429 ], [ -93.500238112813349, 43.676077121586225 ], [ -93.477326328047099, 43.679945375763523 ], [ -93.432715679362261, 43.680265800911151 ], [ -93.427649514650454, 43.682005865456311 ], [ -93.418478249109853, 43.687858007973418 ], [ -93.414839143487498, 43.690268065306036 ], [ -93.408399920625712, 43.691787140557992 ], [ -93.387662139039335, 43.691626334790541 ], [ -93.363400197093995, 43.688727536487271 ], [ -93.359097027504006, 43.687896569303248 ], [ -93.343532416631902, 43.684867687890836 ], [ -93.326700788536598, 43.684798846345871 ], [ -93.321131572641733, 43.683806889713559 ], [ -93.299363725008334, 43.67874904842455 ], [ -93.272255640997656, 43.665459181902726 ], [ -93.208592755625517, 43.665380118202926 ], [ -93.197621193114998, 43.661210283695432 ], [ -93.191265871377624, 43.659669387087703 ], [ -93.107589700482507, 43.659510876619784 ], [ -93.089324790741259, 43.658591201612388 ], [ -93.068677760550727, 43.659923569433005 ], [ -93.04941280060396, 43.659679912597127 ], [ -93.028766769639049, 43.660343278215052 ], [ -93.019870306832686, 43.666523415073449 ], [ -93.002039365877181, 43.679341669289279 ], [ -92.993348997432633, 43.680691725246483 ], [ -92.97960045609392, 43.680458789173443 ], [ -92.966301930599968, 43.680653848682034 ], [ -92.95406447937961, 43.674782945203141 ], [ -92.939399909639292, 43.673791024216548 ], [ -92.929778532524324, 43.673761071785442 ], [ -92.914152935126253, 43.671483169267439 ], [ -92.870275219654758, 43.671273392797609 ], [ -92.869695203157235, 43.670522404278877 ], [ -92.844494189902022, 43.673574493764278 ], [ -92.778123589853351, 43.673383824059655 ], [ -92.751610534681234, 43.674672932336165 ], [ -92.745560267044596, 43.677182884173803 ], [ -92.724089216134672, 43.694913531856336 ], [ -92.70062012745575, 43.710233234564086 ], [ -92.684956399352629, 43.721112035157809 ], [ -92.673732789163424, 43.737084767613759 ], [ -92.64829579948227, 43.755680575673033 ], [ -92.617571180374, 43.782143678756022 ], [ -92.588510527404011, 43.804783759066723 ], [ -92.573984243565377, 43.818501807660247 ], [ -92.553002740534126, 43.834099856580565 ], [ -92.50534875561064, 43.879192996887888 ], [ -92.48825815234656, 43.885152070560615 ], [ -92.488212136166311, 43.884393067733647 ], [ -92.473837615843067, 43.889901155905839 ], [ -92.451330914847475, 43.906362321033178 ], [ -92.432889191195471, 43.912252424965139 ], [ -92.419422691296802, 43.918954508324944 ], [ -92.407315177848588, 43.921094568848105 ], [ -92.396854803531212, 43.928144638294619 ], [ -92.377367950230393, 43.930673730754094 ], [ -92.373766831378589, 43.934293757825607 ], [ -92.367296682674365, 43.946424823699218 ], [ -92.357844297250523, 43.951013877499364 ], [ -92.337953417826057, 43.955651973957508 ], [ -92.238842957888764, 43.955214270360436 ], [ -92.093803627302904, 43.954732434721251 ], [ -92.0786891551042, 43.952058352603117 ], [ -92.056647498535, 43.95228322665119 ], [ -92.049872288709281, 43.951383190322417 ], [ -92.036108814018419, 43.943883133555268 ], [ -92.019811286487084, 43.939374058619009 ], [ -92.009938954719317, 43.935353019427886 ], [ -91.992840406995015, 43.934292979301844 ], [ -91.974430826829305, 43.937992983117056 ], [ -91.955303131933391, 43.931844029714568 ], [ -91.948763904859987, 43.930913041186258 ], [ -91.930407313846061, 43.933194050175707 ], [ -91.91607083613728, 43.933263065118368 ], [ -91.883629751730183, 43.93307210082547 ], [ -91.868149213005509, 43.930913130611096 ], [ -91.848899604932242, 43.934232130464594 ], [ -91.81404044157469, 43.934182167371773 ], [ -91.771161075118499, 43.939862167496642 ], [ -91.740017124370823, 43.940534219309129 ], [ -91.733058955224138, 43.941293238446789 ], [ -91.712459487814982, 43.946622264959991 ], [ -91.69106604046361, 43.955922249524477 ], [ -91.68601491735987, 43.956552259948843 ], [ -91.661219279438001, 43.956533341673911 ], [ -91.656656152296847, 43.955594366730644 ], [ -91.632775391397544, 43.941114609790773 ], [ -91.612755716428026, 43.924634878746012 ], [ -91.607307517305117, 43.918454975206238 ], [ -91.602623373203741, 43.915842026850335 ], [ -91.597061219642356, 43.914503067396531 ], [ -91.580955814576967, 43.914664135835942 ], [ -91.558341202805323, 43.910284292735085 ], [ -91.548986978329708, 43.911505318218559 ], [ -91.520987275570235, 43.911864437816021 ], [ -91.5078259945887, 43.917685411577537 ], [ -91.484845768554024, 43.925284296854507 ], [ -91.475545714099823, 43.92570326867699 ], [ -91.446599480707079, 43.922385256055442 ], [ -91.440968473326862, 43.924315211069562 ], [ -91.43357651266804, 43.929545104830765 ], [ -91.419629483270697, 43.932394020290246 ], [ -91.400578178013191, 43.92272414745635 ], [ -91.377949941853316, 43.919104165644264 ], [ -91.364414740409629, 43.914915218672974 ], [ -91.360744612386256, 43.910994288345137 ], [ -91.347614297896214, 43.903315418416398 ], [ -91.342433902882135, 43.890753664659478 ], [ -91.31356287794911, 43.867675122663449 ], [ -91.308252512832553, 43.858436319010067 ], [ -91.306001456739637, 43.857703334782599 ], [ -91.300035372839758, 43.857791333029581 ], [ -91.272562058166699, 43.860133280561442 ], [ -91.236932566989623, 43.864257267688849 ], [ -91.209199220406688, 43.874275215720864 ], [ -91.19983006156059, 43.87678521950793 ], [ -91.184456656483121, 43.876773320896021 ], [ -91.169868248431911, 43.876003434279838 ], [ -91.149008551629294, 43.870899685791777 ], [ -91.135207202653262, 43.87113577047905 ], [ -91.131133125663055, 43.872154774370905 ], [ -91.111478934773871, 43.8845366297287 ], [ -91.090032527798471, 43.891876612258798 ], [ -91.032886945741936, 43.892116991803888 ], [ -91.020656577821683, 43.890465109049074 ], [ -91.009593214565271, 43.886856259179069 ], [ -90.99083996172466, 43.886166379376114 ], [ -90.939373135617771, 43.89237649078683 ], [ -90.910083311294343, 43.901928440381603 ], [ -90.860050535100342, 43.913956454062813 ], [ -90.835887614642289, 43.918034499001905 ], [ -90.821544660761859, 43.920494526314002 ], [ -90.810642694299744, 43.922303548865059 ], [ -90.802700722141864, 43.923947559771058 ], [ -90.780025847749741, 43.932915517306881 ], [ -90.764530959163665, 43.941704445175134 ], [ -90.761569976215185, 43.943047437711556 ], [ -90.74508295578002, 43.943707470628738 ], [ -90.695003598983845, 43.943627298158916 ], [ -90.655277283871314, 43.940106226725995 ], [ -90.596545862138157, 43.939186044622701 ], [ -90.588129811485373, 43.940227995177423 ], [ -90.577784767453224, 43.943824887215492 ], [ -90.575190758221723, 43.944976854885326 ], [ -90.550349603220312, 43.947887707933539 ], [ -90.539355553354369, 43.951804587314143 ], [ -90.520289426030971, 43.95331548649164 ], [ -90.512675375316576, 43.953975444750128 ], [ -90.504771341029652, 43.957366343243358 ], [ -90.489710280866305, 43.964626199306799 ], [ -90.472910214940541, 43.972564072077958 ], [ -90.460390167613497, 43.978537972835696 ], [ -90.447474126701721, 43.985625846846453 ], [ -90.443262083369888, 43.983744899536283 ], [ -90.429208966112824, 43.981314989747453 ], [ -90.378007458231281, 43.962653561470027 ], [ -90.31214981042298, 43.942028263433976 ], [ -90.296624653180302, 43.937004440127126 ], [ -90.275887408902761, 43.926525776847178 ], [ -90.262459268031563, 43.921948942086473 ], [ -90.253853156870122, 43.916688109572064 ], [ -90.247063074373585, 43.914136223412129 ], [ -90.197936459565781, 43.901988087129425 ], [ -90.168830082093109, 43.893218648326261 ], [ -90.14734577144911, 43.883029168068397 ], [ -90.122168387528816, 43.868740848858707 ], [ -90.099065948613088, 43.845551762517601 ], [ -90.083280592532319, 43.823141578861666 ], [ -90.072210384367906, 43.812201021782045 ], [ -90.056157083165601, 43.796370668412138 ], [ -90.048939938754245, 43.788191991447938 ], [ -90.043133843482252, 43.784034183152379 ], [ -89.968144011651361, 43.759312696078112 ], [ -89.913241607201201, 43.729105941591499 ], [ -89.874522356893308, 43.705867823459933 ], [ -89.84776617964755, 43.689007429873996 ], [ -89.81454794758298, 43.663289272790138 ], [ -89.811937925231391, 43.659078391246538 ], [ -89.81317391520129, 43.64951861952165 ], [ -89.811998893197313, 43.640969836034387 ], [ -89.805086826802523, 43.626188233293306 ], [ -89.804155818037088, 43.624319283476346 ], [ -89.804407811227279, 43.619749393814359 ], [ -89.813791822089598, 43.59532095057542 ], [ -89.813326813112155, 43.591819038722683 ], [ -89.810671791903644, 43.588691126517787 ], [ -89.799212696228167, 43.573211549309285 ], [ -89.794718666403938, 43.571479607979981 ], [ -89.778322565678479, 43.569652712044743 ], [ -89.75014739253082, 43.566680883876444 ], [ -89.679292401020362, 43.549782336785107 ], [ -89.632400751768415, 43.546352445130474 ], [ -89.599609264474694, 43.538071627010559 ], [ -89.5353992769342, 43.521603943068826 ], [ -89.529868184656308, 43.519371981318614 ], [ -89.523444052600681, 43.513070087212789 ], [ -89.517736918880544, 43.505212216976922 ], [ -89.497969579510354, 43.496324444506797 ], [ -89.493276472705674, 43.488313771261261 ], [ -89.492018428015825, 43.481173042323697 ], [ -89.497984459957536, 43.457533881757797 ], [ -89.49766344160669, 43.453464034201616 ], [ -89.468060760400832, 43.411564692159537 ], [ -89.467046661957554, 43.389165500488907 ], [ -89.460683489627172, 43.375006023452464 ], [ -89.459492376906354, 43.350478900513991 ], [ -89.45373220711376, 43.33522744879199 ], [ -89.448476058873524, 43.323657860762687 ], [ -89.41798832409907, 43.29411088066702 ], [ -89.400889901732114, 43.277872412754256 ], [ -89.380770377240509, 43.255282127066302 ], [ -89.369776236366533, 43.235392683787033 ], [ -89.358409210347702, 43.209102409580858 ], [ -89.344844050383557, 43.194332823450154 ], [ -89.3244577615407, 43.178723276646807 ], [ -89.316949669625771, 43.171422495344842 ], [ -89.306413604883062, 43.153818030704315 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I91\", \"DIST_MILES\": 289.880000, \"DIST_KM\": 466.520000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -72.089624770795623, 45.0057614076173 ], [ -72.090815540344806, 45.003758419743953 ], [ -72.101509829099086, 44.998299334793479 ], [ -72.104774185166505, 44.989010411769492 ], [ -72.124486066400237, 44.975399291554893 ], [ -72.145463838013882, 44.963940121102212 ], [ -72.150970848648171, 44.952168193121352 ], [ -72.158530601231192, 44.942208208235357 ], [ -72.165433517648566, 44.936108181681227 ], [ -72.1727572458814, 44.921978253914446 ], [ -72.178050343856171, 44.912548295017544 ], [ -72.179111112827641, 44.907589343424455 ], [ -72.17292361725876, 44.885510731349044 ], [ -72.173244458517487, 44.878659816398212 ], [ -72.177759715025232, 44.87201783147944 ], [ -72.194298150995053, 44.856270772200382 ], [ -72.194427850346528, 44.838909995578632 ], [ -72.210012400410491, 44.820210984846021 ], [ -72.212727779528919, 44.804681140173287 ], [ -72.215031414199444, 44.80151914310062 ], [ -72.215885171487272, 44.793619230352206 ], [ -72.213650097576632, 44.76994157076102 ], [ -72.203969237204305, 44.758661877401899 ], [ -72.192732668765728, 44.751982152938318 ], [ -72.190435914370681, 44.748282256353932 ], [ -72.189428874244399, 44.740080455761813 ], [ -72.183463600651407, 44.735762654077966 ], [ -72.180823918812479, 44.733679746002174 ], [ -72.180762738697652, 44.725081939306634 ], [ -72.178527905241268, 44.718643122279659 ], [ -72.173409456691374, 44.711631369269732 ], [ -72.170227843505572, 44.709251478868445 ], [ -72.152965115036039, 44.703701910898936 ], [ -72.148128726365769, 44.700894061417884 ], [ -72.1346491666053, 44.681214757013045 ], [ -72.132513118352165, 44.665952148302594 ], [ -72.134709518362328, 44.653093403899952 ], [ -72.131756596015904, 44.638395798494528 ], [ -72.12788886465998, 44.626506147001528 ], [ -72.116980050503841, 44.611674701964517 ], [ -72.10803208638076, 44.602146099536412 ], [ -72.084719112932376, 44.590656832548639 ], [ -72.054618159117538, 44.579747700974984 ], [ -72.043243613785748, 44.572008121505441 ], [ -72.044189403952188, 44.569017175027348 ], [ -72.042023628033078, 44.56535930888343 ], [ -72.038917986527693, 44.561628464248699 ], [ -72.033700669217055, 44.558607646501841 ], [ -72.029337156628799, 44.552648883876216 ], [ -72.029345057091675, 44.548658981875072 ], [ -72.02168598010023, 44.540900334407397 ], [ -72.016376502865583, 44.530768697914205 ], [ -72.01001425104684, 44.523491014817658 ], [ -72.007366461276504, 44.51641124817359 ], [ -72.010066941479607, 44.511421314076799 ], [ -72.020250203354038, 44.501171347529642 ], [ -72.022508718850901, 44.496181412701191 ], [ -72.024208863470434, 44.477936784730964 ], [ -72.024750675922803, 44.474682846083766 ], [ -72.024176804369219, 44.446050499960478 ], [ -72.027099152341052, 44.439382588496649 ], [ -72.034550856182548, 44.433351569565964 ], [ -72.034642671996423, 44.428292681791554 ], [ -72.031476678711201, 44.41466305392801 ], [ -72.023413540935621, 44.404772440439444 ], [ -72.01858401122081, 44.397299705625684 ], [ -72.018142052354918, 44.396551731280425 ], [ -72.01999522118102, 44.379832067355586 ], [ -72.023061526864623, 44.372752164547514 ], [ -72.030369166925027, 44.364772198910579 ], [ -72.035067087929818, 44.353583358782423 ], [ -72.032747929789011, 44.338573742240271 ], [ -72.040375346416866, 44.325633887956208 ], [ -72.039246211710136, 44.316654112653886 ], [ -72.036286501442149, 44.31202327337899 ], [ -72.037232261650843, 44.309155320282123 ], [ -72.04233524985473, 44.30204438524153 ], [ -72.045973647130438, 44.300465352993555 ], [ -72.053663483305087, 44.300274213849633 ], [ -72.056698951603451, 44.298073207663414 ], [ -72.059842410210095, 44.296055195536852 ], [ -72.072938693193322, 44.274452452603896 ], [ -72.07227463995153, 44.270104565071215 ], [ -72.062556539224289, 44.253934112244536 ], [ -72.062060420515465, 44.248494238867025 ], [ -72.070244634320105, 44.233785368065 ], [ -72.069007946008128, 44.210416825430435 ], [ -72.074812315134082, 44.189726116416715 ], [ -72.083988163048204, 44.167822383171739 ], [ -72.089496077389668, 44.159994446348769 ], [ -72.100647986779038, 44.146586533794604 ], [ -72.112317244278003, 44.087547519527376 ], [ -72.106868570308009, 44.04699738663637 ], [ -72.109980741570041, 44.035637569986676 ], [ -72.13626662021133, 43.98954915318064 ], [ -72.13564062834233, 43.987211202134681 ], [ -72.13117111665629, 43.983819315094799 ], [ -72.125807640316552, 43.977739487813587 ], [ -72.125838354606458, 43.968980645283089 ], [ -72.12889669530675, 43.961259747029132 ], [ -72.134205063138921, 43.932719191891799 ], [ -72.132777923009314, 43.922419394264544 ], [ -72.133945542980285, 43.91549950273636 ], [ -72.137407933796752, 43.911040536832743 ], [ -72.147859449124738, 43.908430445742482 ], [ -72.152130782285255, 43.905451441880885 ], [ -72.170789937441455, 43.894190390492923 ], [ -72.186930010396324, 43.86979958761799 ], [ -72.189409405273778, 43.861300696382266 ], [ -72.217945990815792, 43.810352131591976 ], [ -72.219638454780238, 43.800842260745092 ], [ -72.214473779252813, 43.790332508257826 ], [ -72.221926325641903, 43.775825630559048 ], [ -72.225755437377771, 43.764110760309642 ], [ -72.234513132082981, 43.759082705021399 ], [ -72.239700265735522, 43.753261716557589 ], [ -72.258099727885067, 43.746730455947926 ], [ -72.270572001875749, 43.739711238795941 ], [ -72.277010054496387, 43.732772146588019 ], [ -72.288704394269033, 43.724070960387103 ], [ -72.294890452110565, 43.716021883505348 ], [ -72.306462777158004, 43.706210712460617 ], [ -72.310475155416242, 43.700732666655739 ], [ -72.312671654685118, 43.689410692576288 ], [ -72.3182936730731, 43.676470663224308 ], [ -72.319369339607405, 43.666609703518624 ], [ -72.321832906681834, 43.661009691340482 ], [ -72.330018752309002, 43.656901562088443 ], [ -72.338104454336772, 43.645281484413985 ], [ -72.338661270559228, 43.639971508251676 ], [ -72.339241063308577, 43.633700537949686 ], [ -72.34776862305894, 43.618849477908768 ], [ -72.342040110769034, 43.606001666018955 ], [ -72.344549613181343, 43.598330670651897 ], [ -72.348188055966801, 43.59503062692599 ], [ -72.355221081782247, 43.593439511604601 ], [ -72.363009918598905, 43.58783941061008 ], [ -72.374864289703979, 43.5855702164436 ], [ -72.382103192653474, 43.579760129801357 ], [ -72.385719537706947, 43.572428118483906 ], [ -72.386305826267076, 43.54600029595224 ], [ -72.394918337200366, 43.532481247061433 ], [ -72.402073243204271, 43.527300164930317 ], [ -72.40678752634102, 43.524081110093533 ], [ -72.408298253273628, 43.521349105223592 ], [ -72.405871273437086, 43.509169235209143 ], [ -72.411272255788035, 43.498179246544296 ], [ -72.407915515930654, 43.490981422391506 ], [ -72.405732994562655, 43.461130959654049 ], [ -72.407220505540153, 43.450641113173056 ], [ -72.403214800593219, 43.441631326025231 ], [ -72.403245480479782, 43.430129518487902 ], [ -72.406135944952098, 43.424831564140767 ], [ -72.415725406598938, 43.415710576139169 ], [ -72.414779195451203, 43.403289800973226 ], [ -72.416013663883476, 43.389813012188959 ], [ -72.425571779959114, 43.367173264906015 ], [ -72.423694766614886, 43.35747245706964 ], [ -72.419606047509973, 43.347851677050279 ], [ -72.419361526855582, 43.327444028487875 ], [ -72.423113427136158, 43.305044362891884 ], [ -72.426508804590796, 43.298463432890024 ], [ -72.428217201026158, 43.284334654673223 ], [ -72.434891075080927, 43.27475173879936 ], [ -72.432992106743029, 43.266721900704255 ], [ -72.44743972524283, 43.246092100085079 ], [ -72.447797456866027, 43.233649343745981 ], [ -72.453358616191707, 43.226325427525481 ], [ -72.454045273557895, 43.211875709161234 ], [ -72.457217750419261, 43.204993812780756 ], [ -72.456393739265636, 43.198424953418602 ], [ -72.462755747398688, 43.18751510581982 ], [ -72.464052430798617, 43.178627271757819 ], [ -72.463152303259676, 43.164764560684446 ], [ -72.465295978816641, 43.161457606025962 ], [ -72.47557155627625, 43.152835679693112 ], [ -72.475121458360007, 43.143756869113083 ], [ -72.476891103765155, 43.135667017232656 ], [ -72.472160537900223, 43.126946239324774 ], [ -72.461702670615267, 43.117936518789485 ], [ -72.455836216631283, 43.107796776356736 ], [ -72.45418019793668, 43.09514804464105 ], [ -72.456758810659935, 43.091127102412628 ], [ -72.469459901268465, 43.070276413888372 ], [ -72.470679679340236, 43.065927491962086 ], [ -72.46937533202744, 43.036368102200193 ], [ -72.473852479965785, 43.017749446323755 ], [ -72.469198807769828, 43.004447750737413 ], [ -72.46932871804276, 43.00009883797393 ], [ -72.476857706328744, 42.99283984881712 ], [ -72.482639801309347, 42.979159925726705 ], [ -72.489924825380214, 42.971667932927524 ], [ -72.494655237812907, 42.969508913314975 ], [ -72.505700961952485, 42.967028814005459 ], [ -72.521919194701127, 42.965289614032436 ], [ -72.528891399222942, 42.962039550463849 ], [ -72.536390430248105, 42.951327546646205 ], [ -72.535070504523333, 42.947238599479803 ], [ -72.528395104995226, 42.94041774411042 ], [ -72.529501804110609, 42.929019828891334 ], [ -72.527380915236577, 42.921847917429979 ], [ -72.537472519837237, 42.901889968085186 ], [ -72.542354914683528, 42.896495957316816 ], [ -72.553271702879854, 42.892939859740352 ], [ -72.559289958408058, 42.886100851496565 ], [ -72.57991749218337, 42.867179792074772 ], [ -72.581481170583373, 42.857447867327039 ], [ -72.578964321752309, 42.850638959849178 ], [ -72.579040284972933, 42.848868975824516 ], [ -72.572921844302371, 42.843967088885876 ], [ -72.567299293631649, 42.835350230318397 ], [ -72.565232418120118, 42.829639305510412 ], [ -72.567917054970039, 42.824646323323179 ], [ -72.570770658339541, 42.818668349063458 ], [ -72.56274521518192, 42.800968596563408 ], [ -72.560929121983335, 42.783378776839221 ], [ -72.570174162379956, 42.730134360425495 ], [ -72.570112053823664, 42.724969455279705 ], [ -72.564688282021919, 42.709420797452005 ], [ -72.544396055084604, 42.691610358760052 ], [ -72.541794139832916, 42.682722559805249 ], [ -72.543472690182625, 42.67046977493959 ], [ -72.544990372543765, 42.663450890562181 ], [ -72.54827092185117, 42.659017933786686 ], [ -72.574092702650148, 42.638464980569893 ], [ -72.592073362814929, 42.619185079832931 ], [ -72.59413211017592, 42.617629078410793 ], [ -72.599503467623833, 42.614272061649331 ], [ -72.613447806616279, 42.60564301144413 ], [ -72.621602500607182, 42.585822221259221 ], [ -72.62196843300994, 42.584540236856661 ], [ -72.620671244279578, 42.570353489665195 ], [ -72.621410722013195, 42.550906797764895 ], [ -72.627352822577677, 42.538856897618174 ], [ -72.628535544768397, 42.532153986546312 ], [ -72.616565988471308, 42.49246283666082 ], [ -72.616465903015694, 42.483768972185551 ], [ -72.616450719124742, 42.466970230850627 ], [ -72.625612214877378, 42.415025863287937 ], [ -72.636840541503531, 42.361528478972645 ], [ -72.642386870199658, 42.348562576011858 ], [ -72.642172845977214, 42.343962650274769 ], [ -72.638443172757761, 42.340345773921761 ], [ -72.621300767719489, 42.333003201675957 ], [ -72.616701149362882, 42.326766382445236 ], [ -72.615587186242507, 42.320247503296827 ], [ -72.617615928301092, 42.314735550489374 ], [ -72.624428184582925, 42.306873545141038 ], [ -72.629425637956189, 42.300548549689402 ], [ -72.630073526875265, 42.295814610280168 ], [ -72.626663794103678, 42.290214759365583 ], [ -72.619744411617305, 42.286128950638414 ], [ -72.616425709861758, 42.284363039548836 ], [ -72.608690405447803, 42.280277246680242 ], [ -72.606409549921906, 42.27378138937879 ], [ -72.629569980768835, 42.242260483810838 ], [ -72.636870107370058, 42.22932562136144 ], [ -72.637426992638765, 42.225113699974521 ], [ -72.633277241183393, 42.216263959563868 ], [ -72.633528167521305, 42.212930024928497 ], [ -72.634390062272587, 42.211210045830285 ], [ -72.638944565564444, 42.205934077336764 ], [ -72.63898247339462, 42.200010201630121 ], [ -72.639051303458913, 42.189077431069222 ], [ -72.643948674891902, 42.1766146131733 ], [ -72.64471945215449, 42.166234821110926 ], [ -72.648906939487304, 42.156839954226818 ], [ -72.64829694068149, 42.153204041581617 ], [ -72.636387797792111, 42.139406519945851 ], [ -72.632268130036664, 42.137049632896293 ], [ -72.626371645173094, 42.136225740890225 ], [ -72.609748116985571, 42.134635029954254 ], [ -72.608574154604085, 42.130351134694983 ], [ -72.609763860150878, 42.118640353603588 ], [ -72.606811010746398, 42.111480542254611 ], [ -72.600547477755669, 42.105560753328803 ], [ -72.597252741168845, 42.103542841781298 ], [ -72.595390899226572, 42.102958880584822 ], [ -72.589814333397584, 42.098816043636653 ], [ -72.583253833493231, 42.093308246310478 ], [ -72.579248003134921, 42.08197852346845 ], [ -72.580857768198442, 42.076683603611258 ], [ -72.581589686186078, 42.075726612022258 ], [ -72.583497500176975, 42.074856602482846 ], [ -72.587235110782714, 42.071606614417369 ], [ -72.58898183229401, 42.064267734624266 ], [ -72.589599118768177, 42.024709504280956 ], [ -72.588173182766752, 42.021051593736495 ], [ -72.585235116561179, 42.001765006735525 ], [ -72.587828756948753, 41.990393141925303 ], [ -72.587660592970749, 41.974074367457092 ], [ -72.591422129617769, 41.961112505224079 ], [ -72.594137855090764, 41.957118531951494 ], [ -72.601255206904582, 41.952952516313793 ], [ -72.605420809426079, 41.948554535867345 ], [ -72.608777340637445, 41.930323762304461 ], [ -72.61190498713276, 41.921153864021321 ], [ -72.617862461445483, 41.917910855476102 ], [ -72.626253752982308, 41.916117804563648 ], [ -72.630648366370124, 41.913340805757244 ], [ -72.635454884955124, 41.903792905821007 ], [ -72.638871570430425, 41.89973393730471 ], [ -72.642923196872488, 41.894637980023013 ], [ -72.655175148172432, 41.887026995170103 ], [ -72.659263789727248, 41.883129022859897 ], [ -72.662955418856569, 41.873779140801865 ], [ -72.662521375483891, 41.864536290088658 ], [ -72.66559491516621, 41.838089686667004 ], [ -72.664732820200683, 41.818619001050138 ], [ -72.663542853378871, 41.811627119046584 ], [ -72.659248125518488, 41.804818251960768 ], [ -72.654815427529442, 41.800362347490442 ], [ -72.654769387647562, 41.795334426028063 ], [ -72.657653104126553, 41.787976524894759 ], [ -72.667067299607737, 41.777123646669537 ], [ -72.668066160930394, 41.769375765076134 ], [ -72.667463175051154, 41.765576828486779 ], [ -72.66548727933754, 41.760258922262864 ], [ -72.657972767720437, 41.751352096540586 ], [ -72.661017508731234, 41.747114078885403 ], [ -72.664335203264116, 41.73874799669931 ], [ -72.663878206344677, 41.734223962599984 ], [ -72.661444365937058, 41.730916948701505 ], [ -72.651450065573357, 41.723183943101297 ], [ -72.64516443702324, 41.707520865543906 ], [ -72.644477421470526, 41.697331796808136 ], [ -72.653578621334006, 41.681180613103926 ], [ -72.667157481455718, 41.664631377338139 ], [ -72.673557877686363, 41.647046176896957 ], [ -72.682842110782829, 41.637078006617642 ], [ -72.685603867174692, 41.631862934245653 ], [ -72.690822420381977, 41.623878811361962 ], [ -72.703981297927115, 41.604045488679816 ], [ -72.708283925937664, 41.596794370696905 ], [ -72.710549694473144, 41.58811125840824 ], [ -72.715005318200255, 41.581794143268056 ], [ -72.724304544456146, 41.570002910161321 ], [ -72.740180300142086, 41.559351598816335 ], [ -72.747267689142092, 41.547057367086943 ], [ -72.749159540429389, 41.545622325752007 ], [ -72.761632561933084, 41.537932071393676 ], [ -72.769649932962821, 41.532632906935355 ], [ -72.770626814458396, 41.526643827013672 ], [ -72.771793694760888, 41.5222687631273 ], [ -72.768024693243902, 41.492952536160224 ], [ -72.769779394803408, 41.481237476779732 ], [ -72.779513331466831, 41.457506289978717 ], [ -72.78598273736813, 41.449541194212429 ], [ -72.800492469110523, 41.435986998894762 ], [ -72.807960854109353, 41.431450907908584 ], [ -72.82334863160871, 41.424740731285368 ], [ -72.827681252812823, 41.420575677446763 ], [ -72.833028685625052, 41.40912759881963 ], [ -72.837156304281535, 41.403897547083311 ], [ -72.840642022037073, 41.401978508968881 ], [ -72.85165819548665, 41.399842397390877 ], [ -72.859599590819471, 41.397595316712234 ], [ -72.865032116572607, 41.392315256480629 ], [ -72.869715512017279, 41.375977188966509 ], [ -72.868143169692203, 41.348542164044282 ], [ -72.871515788658982, 41.340233123384245 ], [ -72.883179685896209, 41.324547006343622 ], [ -72.888886222714106, 41.321399956544816 ], [ -72.899940379768921, 41.318340864949903 ], [ -72.913786293659015, 41.312469751599508 ], [ -72.915007141834593, 41.308750740028302 ], [ -72.913939090717619, 41.301528744158126 ], [ -72.915235985994286, 41.300811733919829 ], [ -72.91628088857162, 41.299491725310354 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I93\", \"DIST_MILES\": 189.700000, \"DIST_KM\": 305.290000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -71.140657622817102, 42.207537755871861 ], [ -71.129963501877143, 42.203331047165385 ], [ -71.119520525869575, 42.203342316118558 ], [ -71.105531265747757, 42.203643676888568 ], [ -71.083448545933123, 42.202328257495225 ], [ -71.078345576469971, 42.202790389231211 ], [ -71.065309280057917, 42.205231721774453 ], [ -71.048115941173009, 42.209856157102507 ], [ -71.035073111121704, 42.221040457761951 ], [ -71.031228978941343, 42.222845552771496 ], [ -71.026309092264384, 42.225149674593958 ], [ -71.023753873663409, 42.230497720906136 ], [ -71.024609151583093, 42.239813659796553 ], [ -71.028331559788242, 42.243315546058625 ], [ -71.036852021461982, 42.247495302026159 ], [ -71.041863455541332, 42.258428035367217 ], [ -71.050888249914891, 42.274491558794033 ], [ -71.048988759964772, 42.277619562684983 ], [ -71.043329232154591, 42.285615593978335 ], [ -71.043176280062212, 42.286034591822137 ], [ -71.044435254391018, 42.291909471533685 ], [ -71.049310615484785, 42.30104520754103 ], [ -71.054260808612725, 42.306312999158322 ], [ -71.051636692259137, 42.315139937669699 ], [ -71.053918470552887, 42.321430784546571 ], [ -71.057304936769057, 42.325550634605719 ], [ -71.061714219884166, 42.33035244792358 ], [ -71.064734744815354, 42.334053314107358 ], [ -71.06516967807471, 42.334629294212405 ], [ -71.065474687969072, 42.336498258615002 ], [ -71.062362577168088, 42.342975244358193 ], [ -71.061065974301442, 42.346340228574562 ], [ -71.061012988888123, 42.346435228558072 ], [ -71.060899025695733, 42.346779226457819 ], [ -71.060357251542996, 42.349720197169979 ], [ -71.059396535597045, 42.351936189575007 ], [ -71.052470091753364, 42.355182323262845 ], [ -71.051677326667871, 42.356990317332261 ], [ -71.053393120614942, 42.360786216107947 ], [ -71.055559716497228, 42.361908142667339 ], [ -71.055788674526838, 42.362045134636908 ], [ -71.057215412940778, 42.362896084649712 ], [ -71.06115875309348, 42.366858922798265 ], [ -71.061662670598579, 42.3674119014414 ], [ -71.062981484859378, 42.369635834082224 ], [ -71.069824226686023, 42.373564597419289 ], [ -71.074912321775287, 42.377246410567437 ], [ -71.076712069308002, 42.38030931856084 ], [ -71.076827151945537, 42.383086274578936 ], [ -71.077460120036221, 42.385653220246262 ], [ -71.086148635227445, 42.393514879027506 ], [ -71.100031271650224, 42.406221333653654 ], [ -71.10411264887351, 42.411874145555728 ], [ -71.104547728325187, 42.416399067780667 ], [ -71.104516831661698, 42.419008030168349 ], [ -71.104448889807415, 42.42019801439406 ], [ -71.103816236827768, 42.426045944533129 ], [ -71.103693358253111, 42.428631909613536 ], [ -71.103480445362308, 42.429799897878425 ], [ -71.102892716458726, 42.433842853425809 ], [ -71.105677584066569, 42.445645608300644 ], [ -71.102512740198904, 42.45921048961867 ], [ -71.103656660983262, 42.463414398426075 ], [ -71.115503842174476, 42.480216848783236 ], [ -71.11819656273704, 42.487697670288014 ], [ -71.119081934173849, 42.50232642751704 ], [ -71.135406511496967, 42.523360652035343 ], [ -71.135491125291381, 42.537592404903826 ], [ -71.138504223925167, 42.553782048831401 ], [ -71.147155133584661, 42.569265559042243 ], [ -71.158010565991233, 42.584092022289198 ], [ -71.16875090919433, 42.596230533876074 ], [ -71.171512593311633, 42.601849364314972 ], [ -71.175334383303777, 42.614823038038715 ], [ -71.176417327242305, 42.618579944034003 ], [ -71.186541472279004, 42.64612919606104 ], [ -71.194696604837986, 42.664202663744831 ], [ -71.209641011039892, 42.697175685834161 ], [ -71.210915083336545, 42.704820515743137 ], [ -71.211113099540952, 42.706124487222731 ], [ -71.21070166630119, 42.717363297126489 ], [ -71.204317597471217, 42.732206201303825 ], [ -71.204165768701984, 42.735459147366839 ], [ -71.210183902063562, 42.743630841296323 ], [ -71.218910473625101, 42.751717464571747 ], [ -71.227713873925566, 42.756718141872433 ], [ -71.237019314624831, 42.765685735006144 ], [ -71.248614502726099, 42.78055516064596 ], [ -71.266403219187254, 42.786432632571746 ], [ -71.270522529762289, 42.789774475884542 ], [ -71.272940237046981, 42.795065323936683 ], [ -71.272109762418182, 42.805925147644487 ], [ -71.273444598052322, 42.808775064973773 ], [ -71.276305129902482, 42.811414950328277 ], [ -71.285672454010623, 42.815675654294552 ], [ -71.296328965113716, 42.832963092985644 ], [ -71.320770029615773, 42.856338100897084 ], [ -71.335651379489804, 42.862246649412363 ], [ -71.338580892059611, 42.864421542249239 ], [ -71.341281565496573, 42.870250373719358 ], [ -71.345714069829697, 42.881083073919768 ], [ -71.359398896395732, 42.894258518500443 ], [ -71.372054214393174, 42.916665817770159 ], [ -71.380049047531529, 42.927449436829562 ], [ -71.384755509855395, 42.938573124774138 ], [ -71.403543461900483, 42.953697417796 ], [ -71.408234765316237, 42.959491204220498 ] ], [ [ -71.408234765316237, 42.959491204220498 ], [ -71.413147119394807, 42.968272930435468 ] ], [ [ -71.408234765316237, 42.959491204220498 ], [ -71.415748439033479, 42.961795991119956 ], [ -71.413147119394807, 42.968272930435468 ] ], [ [ -71.413147119394807, 42.968272930435468 ], [ -71.416314121519704, 42.987696499458423 ], [ -71.4175881050828, 42.994956336238204 ], [ -71.42951803393818, 42.999715977194455 ], [ -71.432248582310123, 43.001238894338485 ], [ -71.435277427112567, 43.012106695014637 ], [ -71.44041172551357, 43.01869050129158 ], [ -71.444455149904172, 43.023206357617539 ], [ -71.453204005552593, 43.035535019216049 ], [ -71.460633848578524, 43.040890794562834 ], [ -71.472122067233215, 43.049103451457519 ], [ -71.472474054157544, 43.077126123478855 ], [ -71.475579070364873, 43.092533882765856 ], [ -71.475991599703917, 43.108623691120606 ], [ -71.486160495366875, 43.127983266000321 ], [ -71.510022369911852, 43.157092407927699 ], [ -71.528269617264158, 43.168012806589211 ], [ -71.530603306687979, 43.17050371603991 ], [ -71.532396176379123, 43.175359611158676 ], [ -71.532503270163033, 43.17841157190545 ], [ -71.524218923399971, 43.184404720750486 ], [ -71.522808255742405, 43.186773730721441 ], [ -71.526271897705698, 43.193330561133735 ], [ -71.533305250497278, 43.208841186717983 ], [ -71.534167540692451, 43.220804019780537 ], [ -71.538646320856458, 43.236000711991181 ], [ -71.537333599025402, 43.237370732230382 ], [ -71.540309129578361, 43.238659633051078 ], [ -71.552949787720522, 43.26333293998038 ], [ -71.560371783015015, 43.271949605104041 ], [ -71.568213886866715, 43.286182179056119 ], [ -71.574042100602568, 43.293024918769007 ], [ -71.581503102133127, 43.302019584187093 ], [ -71.588688275882618, 43.31495920310627 ], [ -71.607278636626134, 43.332429455250036 ], [ -71.61332785463263, 43.340547180528951 ], [ -71.613976858354164, 43.344266111501618 ], [ -71.60937072206238, 43.379109746426444 ], [ -71.606273543633648, 43.388409696768562 ], [ -71.600781766760079, 43.397206715472947 ], [ -71.591461286148885, 43.425846549537049 ], [ -71.586098482015245, 43.433968570620877 ], [ -71.57093464706152, 43.449349735118979 ], [ -71.570393826939252, 43.451966710851067 ], [ -71.571087756817448, 43.453617669261071 ], [ -71.597024336248822, 43.490424492797231 ], [ -71.618314078041493, 43.507475742622269 ], [ -71.615644823272248, 43.518793664508379 ], [ -71.614485418081742, 43.534723491202854 ], [ -71.618033443050336, 43.561174072129695 ], [ -71.626554407171568, 43.580094631864498 ], [ -71.626173561581837, 43.583684595812244 ], [ -71.621550568967294, 43.591615605157379 ], [ -71.626012954298616, 43.598634411973869 ], [ -71.640331679613624, 43.608482954199019 ], [ -71.64262740201481, 43.613632836837304 ], [ -71.652949009521265, 43.630741386623363 ], [ -71.647136364231912, 43.644875345468662 ], [ -71.650013279819888, 43.662361063476695 ], [ -71.643301042959266, 43.686641915046323 ], [ -71.644010101168917, 43.694243804691283 ], [ -71.64613082485964, 43.69829170673718 ], [ -71.649884267045238, 43.702582569316576 ], [ -71.651433276860828, 43.714362389126642 ], [ -71.655017807458975, 43.721103226121919 ], [ -71.66160216216565, 43.742582816410291 ], [ -71.667056394039932, 43.750452598099798 ], [ -71.675546085094268, 43.756140307523964 ], [ -71.682938216446956, 43.769639897982053 ], [ -71.683037282223978, 43.772302846811691 ], [ -71.674288313915682, 43.788480738347388 ], [ -71.677477133686253, 43.800568446427711 ], [ -71.670551685117488, 43.811452395202423 ], [ -71.660246791273778, 43.820920442951795 ], [ -71.646013135810094, 43.847440259094277 ], [ -71.647058095023212, 43.852059150698345 ], [ -71.653413228735062, 43.860328860181788 ], [ -71.668073938767336, 43.86969737242562 ], [ -71.673605086320691, 43.873459184971047 ], [ -71.684177873983657, 43.893798585783642 ], [ -71.68867126409711, 43.899329389229429 ], [ -71.692287044934702, 43.912448072077439 ], [ -71.691318475716542, 43.920858937823553 ], [ -71.687031519037419, 43.930387852385991 ], [ -71.688809386497184, 43.936056710920489 ], [ -71.687749894062591, 43.946405542695878 ], [ -71.680396566363129, 43.95887546649228 ], [ -71.674934929383369, 43.971906340072636 ], [ -71.67763565266273, 43.978185168004003 ], [ -71.670526451028806, 43.995835989944837 ], [ -71.67380700896004, 44.000107842987561 ], [ -71.677904435992346, 44.02691728423202 ], [ -71.681627260641676, 44.037957011057266 ], [ -71.682535862805139, 44.055687677990342 ], [ -71.685648539786683, 44.060695523641101 ], [ -71.687036305103277, 44.060806492427162 ], [ -71.701172543593572, 44.076205920507952 ], [ -71.698312425300401, 44.085265819279059 ], [ -71.698313235632455, 44.103964485875615 ], [ -71.683126111959226, 44.110514694147945 ], [ -71.680677428362131, 44.131453376081495 ], [ -71.684813095206096, 44.140135132721589 ], [ -71.679519432065689, 44.150282067986787 ], [ -71.676941460039728, 44.16405388073963 ], [ -71.688879753340231, 44.171472488024754 ], [ -71.692732412592306, 44.178644276244938 ], [ -71.691847635485018, 44.180353265216844 ], [ -71.683151309619873, 44.185144371105338 ], [ -71.68008501127612, 44.189413363067175 ], [ -71.681069992756449, 44.192869280141778 ], [ -71.681550150524544, 44.198442170836543 ], [ -71.683815884224245, 44.20114307285872 ], [ -71.719394231634979, 44.207783171317999 ], [ -71.723566680935036, 44.210930023334612 ], [ -71.731973756966994, 44.221301652099463 ], [ -71.749961170591092, 44.229110117320374 ], [ -71.753362719610877, 44.232218997394149 ], [ -71.760641006857611, 44.244460639906443 ], [ -71.76162503881109, 44.248980539651626 ], [ -71.759519546018879, 44.25297049343353 ], [ -71.746445231359132, 44.26710042764396 ], [ -71.743318166625244, 44.280341195291918 ], [ -71.744722071836961, 44.284472071537714 ], [ -71.754005800682521, 44.293241687008482 ], [ -71.767011587992044, 44.294488420017707 ], [ -71.779979656584587, 44.30383797272173 ], [ -71.794679120337392, 44.303170720999638 ], [ -71.798554627499954, 44.308358534396518 ], [ -71.799942493494044, 44.311524438235026 ], [ -71.798035997271882, 44.317086347671243 ], [ -71.797632173648992, 44.320423279981071 ], [ -71.799553941730764, 44.323372179093354 ], [ -71.811797917392923, 44.324996922640523 ], [ -71.825070627062203, 44.323371721889984 ], [ -71.847931600054167, 44.31702745824456 ], [ -71.85869482885326, 44.317470258605972 ], [ -71.864157088123278, 44.322486050625784 ], [ -71.882739234647474, 44.328680587864667 ], [ -71.893067873067949, 44.338713185155122 ], [ -71.896416534166406, 44.345082985437791 ], [ -71.897393726763113, 44.355954726511513 ], [ -71.901040487484451, 44.366864420892419 ], [ -71.912307010533539, 44.377544990277386 ], [ -71.921186736260921, 44.382340732346997 ], [ -71.921262996858701, 44.390774543669046 ], [ -71.920127645150046, 44.405174242991343 ], [ -71.923117458823242, 44.414252990611104 ], [ -71.931402261579734, 44.418254761784709 ], [ -71.942874734054655, 44.427554362604262 ], [ -71.948443877775318, 44.428412250359813 ], [ -71.955125741214275, 44.42597519278084 ], [ -71.961121679308306, 44.422404171962327 ], [ -71.969634301966352, 44.421214056865111 ], [ -71.981534272807593, 44.416071973597212 ], [ -71.992496296967218, 44.407763976358503 ], [ -72.002587671122043, 44.405455850576622 ], [ -72.007912784624466, 44.402739801730426 ], [ -72.018142052354918, 44.396551731280425 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I94\", \"DIST_MILES\": 1479.120000, \"DIST_KM\": 2380.420000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -108.394266603452493, 45.827335099939091 ], [ -108.386065426794048, 45.834259309492488 ], [ -108.35701968588387, 45.860555126397152 ], [ -108.295761025927163, 45.890825498137438 ], [ -108.268363270660615, 45.89845602361784 ], [ -108.248045512571721, 45.909598609754539 ], [ -108.170961664896254, 45.930929753533775 ], [ -108.102552811855332, 45.958334033541369 ], [ -108.045344905936247, 45.966126391609492 ], [ -107.990638280524763, 45.986709521432154 ], [ -107.941661113891072, 45.994681951635698 ], [ -107.923265452042742, 46.002015353500589 ], [ -107.904021917713862, 46.003546579356829 ], [ -107.88857867982648, 46.008235586749869 ], [ -107.875615646957996, 46.013618429721475 ], [ -107.861401527794257, 46.014489310338533 ], [ -107.853450902709369, 46.016149806743805 ], [ -107.837747680761879, 46.023600789151004 ], [ -107.814522878437828, 46.026913194985639 ], [ -107.80700730895397, 46.03070164386066 ], [ -107.79885072274179, 46.040223114146976 ], [ -107.785238716984693, 46.047021890670834 ], [ -107.763890108231422, 46.050014110805883 ], [ -107.735072255912215, 46.058444960500985 ], [ -107.692062821174844, 46.069096285441063 ], [ -107.671751732202267, 46.080036393518505 ], [ -107.655736894829246, 46.090435464135744 ], [ -107.639836981197234, 46.092625594874164 ], [ -107.62923840677351, 46.097336657004135 ], [ -107.619998877646339, 46.09875573153294 ], [ -107.605678088851064, 46.103806824766558 ], [ -107.593233471725966, 46.114224858297433 ], [ -107.586527109295304, 46.117085897499649 ], [ -107.582376905938602, 46.12068690732108 ], [ -107.56462194590992, 46.127996012122168 ], [ -107.536544380013126, 46.135206210757332 ], [ -107.508267758515061, 46.138711439902153 ], [ -107.489971987299413, 46.141187553116055 ], [ -107.470951366396946, 46.141877661807349 ], [ -107.46361114919587, 46.144086688821666 ], [ -107.423135974573725, 46.15969682008371 ], [ -107.412904658197462, 46.162298865295128 ], [ -107.406130433223311, 46.162656905212003 ], [ -107.380311532037851, 46.160036084816717 ], [ -107.375611377925722, 46.160536110821042 ], [ -107.354660731112304, 46.167067199799092 ], [ -107.312636275454466, 46.165007478262012 ], [ -107.303495975998246, 46.166548527021952 ], [ -107.291608605884818, 46.170927577486687 ], [ -107.285215421882825, 46.175158594652451 ], [ -107.264004847252309, 46.194586627495582 ], [ -107.255978660097284, 46.206255619868493 ], [ -107.237324209071588, 46.247027553629188 ], [ -107.227971042846235, 46.256918612389704 ], [ -107.223094892743475, 46.258986651649877 ], [ -107.156038035071433, 46.26310720701828 ], [ -107.069654186114121, 46.264068926551865 ], [ -107.038791867088705, 46.266808185323356 ], [ -107.007410442370102, 46.266682447557073 ], [ -106.96360853494312, 46.266191066153681 ], [ -106.936141243473571, 46.261659475977517 ], [ -106.900464486869353, 46.252321995291432 ], [ -106.875614361464528, 46.249732361693397 ], [ -106.816079799103363, 46.249721252823377 ], [ -106.763724661601103, 46.255673061406796 ], [ -106.720791733759299, 46.252694700549831 ], [ -106.705067080976022, 46.254223948058538 ], [ -106.693706642158901, 46.256956135615496 ], [ -106.680789111872485, 46.258585342004331 ], [ -106.670931830646154, 46.265905532773736 ], [ -106.665285604689132, 46.266943625545203 ], [ -106.540738101937677, 46.265514538652859 ], [ -106.468134079966021, 46.267457505222744 ], [ -106.350209387798088, 46.267488713773382 ], [ -106.333240662233223, 46.265318871340789 ], [ -106.316455055963502, 46.268298065945885 ], [ -106.269952026098252, 46.261027487835662 ], [ -106.25387640404287, 46.262118660964489 ], [ -106.197836734494558, 46.274639169199787 ], [ -106.169935950737624, 46.282421421058629 ], [ -106.154882621104449, 46.290485579271106 ], [ -106.122044928629279, 46.308979919169921 ], [ -106.117352812254651, 46.310879962118321 ], [ -106.102444368154352, 46.313840079560578 ], [ -106.082957626058359, 46.311101195380964 ], [ -106.046168347511284, 46.311051443311513 ], [ -106.02515556405055, 46.308942575151889 ], [ -106.017144310797576, 46.309972634191411 ], [ -105.971047066128591, 46.325620895209198 ], [ -105.947043554213977, 46.340132026501124 ], [ -105.871800589118294, 46.373571393992684 ], [ -105.822636229501541, 46.394350637119381 ], [ -105.819897153316163, 46.395540651008226 ], [ -105.815616033617943, 46.397383672671907 ], [ -105.802890720096812, 46.404883747467032 ], [ -105.786189550477843, 46.426222904612878 ], [ -105.76927540704574, 46.449775075864068 ], [ -105.720194251797949, 46.484122365255025 ], [ -105.706117127555004, 46.505042510140179 ], [ -105.687150601742303, 46.51733362388152 ], [ -105.64882640332786, 46.534911821084933 ], [ -105.630049949408104, 46.552722984782008 ], [ -105.605185127207108, 46.562622116564853 ], [ -105.600690997779679, 46.565754150384961 ], [ -105.592527824201738, 46.575672242696129 ], [ -105.571836144944356, 46.585083368790265 ], [ -105.542073365386472, 46.613434670604576 ], [ -105.534878211717015, 46.623055767579508 ], [ -105.52122879978478, 46.632984890040333 ], [ -105.51502668673858, 46.643013990373625 ], [ -105.509273506737301, 46.646917041453605 ], [ -105.499553165147717, 46.650625104797037 ], [ -105.491930964506537, 46.657125179188164 ], [ -105.485278765816744, 46.661157230884477 ], [ -105.47861763218188, 46.670354324437362 ], [ -105.464327200759016, 46.679414438928013 ], [ -105.446336679850305, 46.693444604554287 ], [ -105.431146423801607, 46.721795878622295 ], [ -105.414505925268031, 46.735827041008001 ], [ -105.319768440421242, 46.780146652716915 ], [ -105.302364771473776, 46.786936759138293 ], [ -105.301281724348286, 46.786387758584333 ], [ -105.288975254661963, 46.792048841687702 ], [ -105.282153986004417, 46.793757877397155 ], [ -105.243914403029038, 46.79489801087535 ], [ -105.238123146689276, 46.795978036163987 ], [ -105.188560005781852, 46.817668366187732 ], [ -105.152510415624732, 46.828788579533928 ], [ -105.139607836085602, 46.830806640054121 ], [ -105.110332630494938, 46.862507038615583 ], [ -105.043717671895266, 46.890671571404816 ], [ -104.877992613476081, 46.961531066785874 ], [ -104.865663102455372, 46.968871196706793 ], [ -104.855850707355842, 46.978590338108589 ], [ -104.783170677289434, 47.078262447985672 ], [ -104.779073504634766, 47.086891529841651 ], [ -104.769193083399912, 47.102111685812375 ], [ -104.765018903095168, 47.105571729677948 ], [ -104.735988633053552, 47.114921916740286 ], [ -104.716936795653695, 47.121682038286387 ], [ -104.694680813237497, 47.123772137162454 ], [ -104.686059432347065, 47.124310173446503 ], [ -104.667167595789039, 47.12132322209704 ], [ -104.652617949627199, 47.113282217089449 ], [ -104.638243313552323, 47.111611258611063 ], [ -104.628416876906158, 47.103333234218987 ], [ -104.623235647482261, 47.101662241294989 ], [ -104.584797948506036, 47.107632429588023 ], [ -104.574649499278721, 47.106904462268368 ], [ -104.554682615210538, 47.100663491086223 ], [ -104.506737495209777, 47.077813502558833 ], [ -104.453909064816742, 47.065121686625538 ], [ -104.356774558124727, 47.035852026587612 ], [ -104.327446191962679, 47.021162099169771 ], [ -104.305167152302189, 47.009615155441658 ], [ -104.298986863973198, 47.007562178663946 ], [ -104.290564471435687, 47.006403220526515 ], [ -104.233638940811943, 47.005563467630893 ], [ -104.205583825601209, 46.996355443481711 ], [ -104.190752236422185, 46.993494441806767 ], [ -104.178468749639606, 46.991304441616478 ], [ -104.141876297052377, 46.97930340586629 ], [ -104.116744293426763, 46.955362280471839 ], [ -104.096723510687582, 46.943834229562469 ], [ -104.082432957764382, 46.940855227092378 ], [ -104.059582075931289, 46.939722246507529 ], [ -104.045604537748176, 46.93485823169415 ], [ -104.034984129779659, 46.932012225923145 ], [ -104.007510072515515, 46.93175725649543 ], [ -103.986383260668859, 46.93331330358577 ], [ -103.90618018687735, 46.933511469266143 ], [ -103.859074346022894, 46.944414624762992 ], [ -103.819475826844879, 46.94241569268732 ], [ -103.78777458568598, 46.947012778308292 ], [ -103.755470338269959, 46.946912841027753 ], [ -103.735068479408156, 46.954713895876885 ], [ -103.727172151872921, 46.955812905460434 ], [ -103.704771258478033, 46.951612898583043 ], [ -103.669765837004732, 46.950212911882517 ], [ -103.654667229984071, 46.948412912066523 ], [ -103.634066382256435, 46.94971292975557 ], [ -103.609659431544955, 46.94108090354532 ], [ -103.587968595296019, 46.932012873842694 ], [ -103.571266932662411, 46.928613867600959 ], [ -103.56456766220488, 46.928114869101755 ], [ -103.549865045931583, 46.931112891325931 ], [ -103.541663705736326, 46.932111900602351 ], [ -103.526564103624864, 46.929613897632947 ], [ -103.504766275354086, 46.918913860619682 ], [ -103.493664872876039, 46.916513831297216 ], [ -103.488263686248274, 46.915712811055947 ], [ -103.476063281754605, 46.911111751423213 ], [ -103.448360318696089, 46.908414651648116 ], [ -103.435458899951826, 46.902612580644679 ], [ -103.416163229440315, 46.90101451037674 ], [ -103.410761054254706, 46.898714480335293 ], [ -103.405656908799898, 46.89361343535699 ], [ -103.399156699749469, 46.890714397642363 ], [ -103.377358926378577, 46.891615330782031 ], [ -103.365761547666835, 46.887514267904393 ], [ -103.340957657482249, 46.889913199969641 ], [ -103.316954766879618, 46.895815158646684 ], [ -103.231693511616868, 46.8976229031096 ], [ -103.211956618221251, 46.898713857008964 ], [ -103.189953749630988, 46.896912782231603 ], [ -103.17315384392964, 46.896313730791036 ], [ -103.147755976392659, 46.8913126176368 ], [ -103.011052652645091, 46.890812223664383 ], [ -102.995557704252306, 46.888211092407303 ], [ -102.97385192983667, 46.890911794755539 ], [ -102.851759938678612, 46.890310951903885 ], [ -102.836860067401091, 46.890508730594732 ], [ -102.83213713522818, 46.89171067667337 ], [ -102.83075615386646, 46.89200766017882 ], [ -102.818359345613672, 46.895608526519865 ], [ -102.811149419711569, 46.896108426280684 ], [ -102.789855600009801, 46.896009107269784 ], [ -102.757323805151188, 46.893292578915357 ], [ -102.745254837343595, 46.891507411902744 ], [ -102.73505376325285, 46.887207275906349 ], [ -102.726424696801516, 46.883492162510443 ], [ -102.646256055275401, 46.884006647420769 ], [ -102.630454953416148, 46.878406482043438 ], [ -102.622955951070168, 46.877307422964996 ], [ -102.593857217124935, 46.88200728639989 ], [ -102.587960242026966, 46.882007248417807 ], [ -102.53805612198029, 46.871805852185908 ], [ -102.510659396033816, 46.876807718225635 ], [ -102.342752119035808, 46.877505697474028 ], [ -102.307449560828331, 46.871405694122451 ], [ -102.281646431690561, 46.866705696707477 ], [ -102.254247176260264, 46.858107701415754 ], [ -102.216549748634208, 46.852007711943536 ], [ -102.201847275091822, 46.853705720482431 ], [ -102.174243475368186, 46.862707751041874 ], [ -102.125344778336725, 46.862604778550697 ], [ -102.116440486363331, 46.863806787297811 ], [ -102.096572764918022, 46.861410790777931 ], [ -102.063338636281486, 46.863306816454561 ], [ -102.050238164656719, 46.861807817745202 ], [ -102.031843527199328, 46.861807827906425 ], [ -102.018339078057977, 46.863707844335117 ], [ -101.975635526471379, 46.863207642485328 ], [ -101.958239911952049, 46.866606513673126 ], [ -101.932237942772588, 46.866507293954989 ], [ -101.918939406956426, 46.862807160633636 ], [ -101.898636618411174, 46.860105972855983 ], [ -101.886437181053978, 46.861703878948155 ], [ -101.794430747113964, 46.861905100780078 ], [ -101.78103326483884, 46.863205996313354 ], [ -101.772929968036465, 46.863606930569041 ], [ -101.752833184431097, 46.861305744071828 ], [ -101.714425975615626, 46.86160310600728 ], [ -101.690629255856749, 46.863403703285897 ], [ -101.640929688642998, 46.862204841321621 ], [ -101.625525192822735, 46.8608045752609 ], [ -101.614126850479124, 46.862101378996869 ], [ -101.602026463806553, 46.861200171298648 ], [ -101.417520365817452, 46.861299921165418 ], [ -101.281021835515332, 46.861194448413819 ], [ -101.262718656673087, 46.863296096458335 ], [ -101.238319204155729, 46.861995770303764 ], [ -101.21211856534056, 46.862593513631147 ], [ -101.192618111362918, 46.864695304642545 ], [ -101.174421613013436, 46.860896171435122 ], [ -101.15501913410391, 46.860895986254739 ], [ -101.137913730150075, 46.862295806943088 ], [ -101.108319002251804, 46.862493521499729 ], [ -101.07231415035433, 46.865293142138704 ], [ -101.042017368200689, 46.862694884468077 ], [ -101.008111537750281, 46.863194553212452 ], [ -100.951308853633577, 46.863393318241492 ], [ -100.943809593919312, 46.861191323461156 ], [ -100.925512909387351, 46.852429380970669 ], [ -100.907812260832969, 46.845193419334414 ], [ -100.874707132101889, 46.837891407109417 ], [ -100.865108794630174, 46.835194410955076 ], [ -100.858211489110587, 46.829194467009415 ], [ -100.843905947410647, 46.822892502090085 ], [ -100.834124630983354, 46.822106479732398 ], [ -100.815905155540463, 46.827794344794704 ], [ -100.803903836770175, 46.831093262026805 ], [ -100.773308894393139, 46.831395156693922 ], [ -100.730804448771366, 46.831193079242034 ], [ -100.721801122023493, 46.831895069107667 ], [ -100.710021726640406, 46.835419027228546 ], [ -100.709799719196397, 46.835492026396444 ], [ -100.69630324738894, 46.838791990406882 ], [ -100.650097483537621, 46.838592996200695 ], [ -100.625499538087681, 46.836995010853677 ], [ -100.288291732818323, 46.836289062469525 ], [ -100.26748504303734, 46.836090674978109 ], [ -100.260084780603592, 46.837188535737255 ], [ -100.253988541807885, 46.839588419394985 ], [ -100.229489729508316, 46.855586007826417 ], [ -100.185589630073082, 46.864588317743411 ], [ -100.077081258879346, 46.864483632352872 ], [ -99.915879371227916, 46.864383369587877 ], [ -99.896782546390583, 46.864585355109945 ], [ -99.866478742763903, 46.87178340173049 ], [ -99.823984159036712, 46.871883387260482 ], [ -99.796587380622825, 46.878383471148766 ], [ -99.751787839823336, 46.878486475224655 ], [ -99.656086125422433, 46.878284777218717 ], [ -99.637287376507842, 46.880985898335808 ], [ -99.621387592484126, 46.87938291483853 ], [ -99.573888234766329, 46.880184090991321 ], [ -99.560986407630409, 46.879086105714244 ], [ -99.48879032889873, 46.880783414768743 ], [ -99.474790442367194, 46.879486452929484 ], [ -99.459387544749461, 46.872383326171551 ], [ -99.447531645334109, 46.872818400295152 ], [ -99.384086199501581, 46.877983892622822 ], [ -99.341788555108039, 46.877984117995851 ], [ -99.279488077628073, 46.877786442998385 ], [ -99.233490281258867, 46.884885860161056 ], [ -99.142585827604108, 46.887388988228913 ], [ -99.117789687365075, 46.885488930908366 ], [ -99.099288615076333, 46.889185070377529 ], [ -99.075385504605734, 46.891287155073549 ], [ -98.991285897721582, 46.891886223561905 ], [ -98.977384550509115, 46.890585202946156 ], [ -98.937283582426687, 46.892588345324093 ], [ -98.755166130690128, 46.892096656358035 ], [ -98.749412966848467, 46.892096664501182 ], [ -98.718077422325635, 46.885786456786306 ], [ -98.71247014316765, 46.884295411203659 ], [ -98.706182834304215, 46.883688392990393 ], [ -98.700704572051123, 46.884688422516888 ], [ -98.67638141401379, 46.889586558508867 ], [ -98.671223169640555, 46.890681587072528 ], [ -98.66217473938984, 46.892187624285064 ], [ -98.439227664884385, 46.892385892601204 ], [ -98.334170260180372, 46.892285766376283 ], [ -98.325969236227138, 46.893383685378666 ], [ -98.297969203049163, 46.905285435969667 ], [ -98.291568185965104, 46.906784368044526 ], [ -98.195873760702781, 46.90668369553515 ], [ -98.106071638146418, 46.906483728886982 ], [ -98.081543415065028, 46.912869234321789 ], [ -98.045343564538129, 46.913367452949061 ], [ -98.036294856540621, 46.911983245636222 ], [ -98.02598818383413, 46.912189023502499 ], [ -98.015818515599534, 46.910181785193508 ], [ -98.007448777295437, 46.911386613743666 ], [ -97.999843003581432, 46.913195472171523 ], [ -97.986034235429827, 46.916178382434481 ], [ -97.965076605683336, 46.916780209549323 ], [ -97.955074782326733, 46.917078126850619 ], [ -97.940281032450002, 46.919878021526458 ], [ -97.929776216110241, 46.920579936153388 ], [ -97.787077757928003, 46.920177705307964 ], [ -97.692479659075104, 46.9200780986097 ], [ -97.686177362536753, 46.919678065813876 ], [ -97.681752164894107, 46.918064038763639 ], [ -97.619378638699828, 46.876975545798771 ], [ -97.613672386751347, 46.876178508326483 ], [ -97.556089762164007, 46.875975163693305 ], [ -97.303254990907291, 46.875954472110877 ], [ -97.238465261121107, 46.875972900144937 ], [ -97.223664129553683, 46.873874629934718 ], [ -97.210663987772506, 46.873771402142026 ], [ -97.191368728247312, 46.876873085006281 ], [ -96.96854876398848, 46.877467905631534 ], [ -96.950665291135223, 46.87716942006422 ], [ -96.940961087273806, 46.87346912941171 ], [ -96.931263957734274, 46.864766805551973 ], [ -96.906459523725601, 46.849267052914989 ], [ -96.897861319938428, 46.847466820767963 ], [ -96.872691641076969, 46.847767175385208 ], [ -96.861659345466904, 46.847766891732462 ], [ -96.840959793762295, 46.847564358848786 ], [ -96.819757227057934, 46.847464813656153 ], [ -96.798462639151282, 46.848665268198189 ], [ -96.792862481922384, 46.849165124603651 ], [ -96.780472169398308, 46.847810804347887 ], [ -96.768119847253374, 46.847192486643685 ], [ -96.695173192421564, 46.84728360071032 ], [ -96.66325793281203, 46.847313352265601 ], [ -96.652286508281875, 46.846241265285116 ], [ -96.637606938980824, 46.844643147826886 ], [ -96.631685718927599, 46.842381097083901 ], [ -96.567673285403473, 46.792682429128789 ], [ -96.552253635490317, 46.781871252023663 ], [ -96.524946432419355, 46.765451932272995 ], [ -96.521757285281353, 46.759710877383348 ], [ -96.521666263821416, 46.745569826535665 ], [ -96.518362104051818, 46.741419786581552 ], [ -96.466808251619796, 46.70633927545191 ], [ -96.441478465419038, 46.684679058967781 ], [ -96.435496282946147, 46.681940011443231 ], [ -96.420267823815806, 46.678140892522954 ], [ -96.411058545972509, 46.676000821848781 ], [ -96.406618408992458, 46.673699789129593 ], [ -96.394876026590808, 46.659570713685859 ], [ -96.387521785071314, 46.650559670706592 ], [ -96.364831052922312, 46.630628543980755 ], [ -96.332633951286994, 46.586320442891719 ], [ -96.324530654853532, 46.570317441735405 ], [ -96.31534433328666, 46.55772943132532 ], [ -96.292188509985408, 46.525147432809248 ], [ -96.290624443524209, 46.519898445169254 ], [ -96.29035042154932, 46.490350521845095 ], [ -96.286954337980703, 46.486318513215906 ], [ -96.280462153713216, 46.482984494615337 ], [ -96.265606738015649, 46.474450456190496 ], [ -96.25290343487336, 46.458299439142166 ], [ -96.223392654919493, 46.42762946797918 ], [ -96.21095634665528, 46.4116604867653 ], [ -96.192751861980682, 46.394448505476333 ], [ -96.179568555921392, 46.375268527990904 ], [ -96.158670979497614, 46.360127542527941 ], [ -96.149743754697312, 46.350560552823971 ], [ -96.138475428631821, 46.345170556721264 ], [ -96.132654273053731, 46.340489561253619 ], [ -96.124589061279039, 46.333528568125061 ], [ -96.122575024020804, 46.329469572931906 ], [ -96.122606244083684, 46.296685616725817 ], [ -96.120759234150043, 46.289418625828496 ], [ -96.111635037156688, 46.275807640957197 ], [ -96.104554852907157, 46.270028646267939 ], [ -96.100426738927467, 46.267655648025951 ], [ -96.085396332159618, 46.257989655698445 ], [ -96.078560149543634, 46.253343659469607 ], [ -96.06137858708081, 46.242700668545957 ], [ -96.019621066616295, 46.208138703813724 ], [ -95.987011969494645, 46.190370771529963 ], [ -95.959210023466923, 46.166780899878866 ], [ -95.947948613093189, 46.151399954547436 ], [ -95.929484035788803, 46.143000023760514 ], [ -95.922022752668383, 46.129629058765005 ], [ -95.908609319097991, 46.119700108088281 ], [ -95.896592920664276, 46.108191151863004 ], [ -95.893807820858797, 46.103869162577141 ], [ -95.892236707888998, 46.089499174855284 ], [ -95.858345647145086, 46.065599277262365 ], [ -95.855095541579715, 46.062201286613572 ], [ -95.843788138669709, 46.041460318819773 ], [ -95.832267796782148, 46.035799347159376 ], [ -95.783758384755188, 46.015200455743667 ], [ -95.76983399261033, 46.011953485141021 ], [ -95.741849264074702, 46.006540552554611 ], [ -95.734288097542631, 46.003351575832063 ], [ -95.730702021827611, 45.998819580087684 ], [ -95.721401867448066, 45.991900575402276 ], [ -95.701313476200397, 45.985998611861241 ], [ -95.683384101102874, 45.985239667741993 ], [ -95.677966991605487, 45.984079679747012 ], [ -95.655413558035477, 45.9720106914776 ], [ -95.624429918209017, 45.962130742049503 ], [ -95.618845805569237, 45.958559741590463 ], [ -95.610002633366719, 45.949179720970157 ], [ -95.588258165696416, 45.940310745249974 ], [ -95.555009435090071, 45.917620732392187 ], [ -95.530471867764319, 45.906900754353934 ], [ -95.515693517453641, 45.897829753096978 ], [ -95.512191432571242, 45.894400745806152 ], [ -95.507431313121131, 45.885531712977837 ], [ -95.504226234282413, 45.883310711218378 ], [ -95.481749466538403, 45.880121885680303 ], [ -95.470320047177779, 45.875101971608487 ], [ -95.438046862822588, 45.865592246044677 ], [ -95.4298375549578, 45.860339306222727 ], [ -95.420491202104358, 45.853892374966549 ], [ -95.388018993829391, 45.843982672718731 ], [ -95.361643006900593, 45.83626192469827 ], [ -95.314202262271991, 45.835323421435113 ], [ -95.294669533887074, 45.832302622670127 ], [ -95.209843519572885, 45.831552330128766 ], [ -95.156145698153239, 45.832864644713965 ], [ -95.147570405147135, 45.832753695173281 ], [ -95.140078124343347, 45.82974474416875 ], [ -95.11019990406281, 45.809095968467403 ], [ -95.095383238572651, 45.794653099910612 ], [ -95.050298389331601, 45.773871472354244 ], [ -95.03059855267604, 45.764303649004155 ], [ -94.989008814851772, 45.747145952444995 ], [ -94.964227450356987, 45.724624000831135 ], [ -94.952507964085953, 45.720424014045314 ], [ -94.880178948706231, 45.695705060835607 ], [ -94.819843171655847, 45.668075043642105 ], [ -94.794886269696747, 45.665763039379947 ], [ -94.703856817774493, 45.6630849916179 ], [ -94.689985193565803, 45.660853972137282 ], [ -94.68007472388588, 45.65836595463329 ], [ -94.644862939329272, 45.644694869101727 ], [ -94.599396816210046, 45.632303766462165 ], [ -94.581086000546293, 45.628474727036 ], [ -94.552573662913872, 45.61925364651875 ], [ -94.512907018675762, 45.614813570019912 ], [ -94.471729324931616, 45.601195530749038 ], [ -94.465580127456732, 45.601084541621823 ], [ -94.438815372587513, 45.605734613274556 ], [ -94.405855371345353, 45.608225683219608 ], [ -94.380417343478712, 45.596754683066585 ], [ -94.368217806862731, 45.588614675759942 ], [ -94.359657468122592, 45.584803679145551 ], [ -94.358398395285576, 45.582976675102515 ], [ -94.354736050793818, 45.570334637345667 ], [ -94.339934377004838, 45.558234629723529 ], [ -94.323125621077509, 45.544394626456501 ], [ -94.309628952748028, 45.529185615958681 ], [ -94.290844235716051, 45.519835642886392 ], [ -94.284328965174367, 45.515135649413203 ], [ -94.263904120111363, 45.499964674037876 ], [ -94.255945843941049, 45.498144696976453 ], [ -94.240320316920744, 45.498163754011252 ], [ -94.201179907173696, 45.498793907450995 ], [ -94.169928733047399, 45.497085027522161 ], [ -94.157279242260387, 45.495605075407276 ], [ -94.151464962212586, 45.492286094806623 ], [ -94.138159150592571, 45.476066131304286 ], [ -94.113544579705291, 45.440574197229161 ], [ -94.109890393379771, 45.437465209355125 ], [ -94.084719294786794, 45.424896301836071 ], [ -94.078784002812313, 45.419975322360635 ], [ -94.060671273887124, 45.413398392285778 ], [ -94.05721413640498, 45.412185405741909 ], [ -94.014152316319652, 45.389015570522211 ], [ -94.003478819858742, 45.379775610258129 ], [ -93.984525878312738, 45.370036592180512 ], [ -93.964909981835262, 45.367065552372068 ], [ -93.931278366513183, 45.356014445737081 ], [ -93.898492860647565, 45.349136327594586 ], [ -93.853614684271392, 45.329086042263519 ], [ -93.826101310018203, 45.311655772808223 ], [ -93.813962688416765, 45.302023618600387 ], [ -93.799138028607175, 45.298514503874557 ], [ -93.784596388264248, 45.295492391036575 ], [ -93.768664666912429, 45.290064235863717 ], [ -93.761737372036265, 45.289408187453574 ], [ -93.696326991454541, 45.253934994516797 ], [ -93.663351293339517, 45.241469131976928 ], [ -93.650113639739132, 45.238814204729685 ], [ -93.638073994060946, 45.232085245626422 ], [ -93.60939359121646, 45.225973392945477 ], [ -93.59622389784532, 45.218291427963266 ], [ -93.593790769424785, 45.216772433443239 ], [ -93.58322321720081, 45.21042145746582 ], [ -93.567879427035948, 45.201544490823572 ], [ -93.552513666705508, 45.194945535883747 ], [ -93.547889435884571, 45.192595546225569 ], [ -93.528723436278455, 45.176935541591789 ], [ -93.52680831188961, 45.172365518288842 ], [ -93.525717219508806, 45.167197485805673 ], [ -93.521390998312228, 45.163634482359278 ], [ -93.504934184796596, 45.152422482916151 ], [ -93.485020357670066, 45.126818369798485 ], [ -93.479267120680902, 45.117647329414588 ], [ -93.458476407832435, 45.103670337061146 ], [ -93.451206136457046, 45.096815333438805 ], [ -93.447924993487646, 45.091604320797174 ], [ -93.42474629105989, 45.088797436086139 ], [ -93.401727550217402, 45.082304540829021 ], [ -93.388223115036112, 45.078829608886274 ], [ -93.353264051324913, 45.076128815328723 ], [ -93.32286714135374, 45.075286002203462 ], [ -93.299253361132855, 45.069373148873972 ], [ -93.285840963155451, 45.06947623516043 ], [ -93.286771834534576, 45.058402234821024 ], [ -93.284223554075325, 45.044051261074273 ], [ -93.286595416487444, 45.029178251142397 ], [ -93.283040200063539, 45.021716284524096 ], [ -93.282636062310743, 45.012931293784582 ], [ -93.283382821451227, 44.993919276340087 ], [ -93.287731917526074, 44.990642226452572 ], [ -93.287655830829038, 44.984237206948258 ], [ -93.287090691712521, 44.97505118301973 ], [ -93.287731585096708, 44.965370146796495 ], [ -93.286518532539361, 44.964374154331111 ], [ -93.27498218776924, 44.966651263312016 ], [ -93.270283029363398, 44.966224303348355 ], [ -93.269214972587733, 44.964587307302345 ] ], [ [ -93.091389738280952, 44.954868673429537 ], [ -93.087880579529127, 44.952510684956216 ], [ -93.082539395919412, 44.952567693118162 ], [ -93.075116179336902, 44.955039696783651 ], [ -93.068447900708435, 44.952049716844407 ], [ -93.040789951549073, 44.952442758684136 ], [ -93.016459096378938, 44.951579801381186 ], [ -92.992799111202814, 44.948623894425531 ], [ -92.984497694220536, 44.948669949234386 ], [ -92.958793403988153, 44.948872118719798 ], [ -92.891567021453014, 44.948925564823369 ], [ -92.862734572455707, 44.949066755781757 ], [ -92.820740457990524, 44.949006034898183 ], [ -92.771681162821324, 44.961988337998278 ], [ -92.759297540363804, 44.962247422887927 ], [ -92.752896219010097, 44.962415466768825 ], [ -92.731235448279548, 44.963136431641111 ], [ -92.709262711588408, 44.963811369422871 ], [ -92.691027093497652, 44.96386931852215 ], [ -92.680277723615418, 44.963518289251873 ], [ -92.670923426348978, 44.964906260435328 ], [ -92.658998023786538, 44.965036226835515 ], [ -92.648987663393896, 44.963647201889572 ], [ -92.620865700291304, 44.963098124926027 ], [ -92.608871253327877, 44.960588097918446 ], [ -92.59027062696839, 44.960966045594958 ], [ -92.559766564291593, 44.95943596583556 ], [ -92.537571610321066, 44.947888940803544 ], [ -92.527188174133201, 44.943264928067009 ], [ -92.521137941472261, 44.941845916865759 ], [ -92.482981705298116, 44.941666715459164 ], [ -92.470621366915509, 44.943337602940105 ], [ -92.452401792564643, 44.941605453643859 ], [ -92.433053228455293, 44.942307284616248 ], [ -92.412514580968846, 44.940365117991277 ], [ -92.391593964526948, 44.94076593703889 ], [ -92.374702402468756, 44.937557810552946 ], [ -92.356062867029394, 44.938674645508819 ], [ -92.345556531987313, 44.937484563301751 ], [ -92.331602120821117, 44.937755443001727 ], [ -92.314275563588993, 44.935546310421152 ], [ -92.263470034442093, 44.934794886100633 ], [ -92.250163617553099, 44.933714782118663 ], [ -92.196702963583718, 44.933428459412561 ], [ -92.158707780544916, 44.932814231927715 ], [ -92.142593240380691, 44.930464146052067 ], [ -92.135276962458818, 44.927618115475667 ], [ -92.120482387182193, 44.921133054068719 ], [ -92.107862984237997, 44.920373977039553 ], [ -92.093008470583584, 44.917333894500423 ], [ -92.044980005561499, 44.918172581812897 ], [ -92.014156093072302, 44.920232378807576 ], [ -91.99629545065585, 44.915113270187533 ], [ -91.980684948420603, 44.913583156907613 ], [ -91.961099262855853, 44.908384018961954 ], [ -91.942696691127438, 44.907524882311229 ], [ -91.939309583039659, 44.907192857345755 ], [ -91.933129394751546, 44.907112811104064 ], [ -91.893638216251546, 44.908123514150894 ], [ -91.875113606212977, 44.904930377450498 ], [ -91.854787994573485, 44.905075224539189 ], [ -91.815373807674604, 44.905322928189058 ], [ -91.763934195808517, 44.900840539520942 ], [ -91.729303806659701, 44.885722326335113 ], [ -91.690521154166518, 44.867251123407861 ], [ -91.650488554589643, 44.854132912680633 ], [ -91.60422978301861, 44.843176668016781 ], [ -91.58253093364192, 44.833651544974416 ], [ -91.577769741461452, 44.830420515981096 ], [ -91.565684226322631, 44.817160433780963 ], [ -91.543459259688504, 44.784189263852404 ], [ -91.532510858553792, 44.778841196183592 ], [ -91.529061734458054, 44.777441175236788 ], [ -91.526704649821042, 44.776480160885328 ], [ -91.509133022481691, 44.769030052619172 ], [ -91.495842595935585, 44.765940009100078 ], [ -91.488296398190926, 44.765619027517481 ], [ -91.45905963684929, 44.765913102171154 ], [ -91.450148404574605, 44.765661123982873 ], [ -91.422041667842279, 44.767389201168221 ], [ -91.41095538109775, 44.766359225659237 ], [ -91.403242194912082, 44.762789231058875 ], [ -91.382161731610822, 44.747149273147357 ], [ -91.366154399562532, 44.731310550131404 ], [ -91.350384135029344, 44.718592744110744 ], [ -91.338071091339188, 44.694079069203418 ], [ -91.320058063325007, 44.670951309533599 ], [ -91.305920271701225, 44.642551565719231 ], [ -91.300557314799079, 44.636722594988655 ], [ -91.273144374760619, 44.624061526046027 ], [ -91.250210397195005, 44.618583393678712 ], [ -91.229985090608736, 44.608211436370226 ], [ -91.218510004223276, 44.597037497156506 ], [ -91.204982960556364, 44.579230601343184 ], [ -91.197879919129875, 44.570010655717368 ], [ -91.181842590299311, 44.560962698901712 ], [ -91.165729280687657, 44.548896763743215 ], [ -91.147556055023941, 44.523410921118796 ], [ -91.12555259015933, 44.499962063067457 ], [ -91.116686094879213, 44.483432852117481 ], [ -91.113031920902827, 44.480220812749344 ], [ -91.10272446282228, 44.475001752257917 ], [ -91.100511300708646, 44.469020684345068 ], [ -91.091629790530192, 44.457492562140779 ], [ -91.083809388055656, 44.451892511181327 ], [ -91.079529084606193, 44.443690431603635 ], [ -91.070983604159423, 44.436542375247008 ], [ -91.065345229218977, 44.428901312905495 ], [ -91.047034136327468, 44.414310229750868 ], [ -91.016476394550295, 44.39982122148372 ], [ -91.010295890270797, 44.391032183911783 ], [ -91.00240640030195, 44.386821190217276 ], [ -90.99173992283049, 44.381690190771877 ], [ -90.967050798535041, 44.363811149695074 ], [ -90.952149187128285, 44.355281142810739 ], [ -90.922325141930585, 44.345050175985783 ], [ -90.893851070819579, 44.330951189526459 ], [ -90.875143316292863, 44.31852318596308 ], [ -90.861989880699312, 44.314002207998676 ], [ -90.84224427818458, 44.30945125439991 ], [ -90.836583082578258, 44.306911261955243 ], [ -90.822712521076866, 44.296130259872648 ], [ -90.800357589856318, 44.276141250800592 ], [ -90.780123946076159, 44.267932293291594 ], [ -90.745202737264762, 44.247882379458296 ], [ -90.720604908806976, 44.240291531299299 ], [ -90.702140191198282, 44.225741777923766 ], [ -90.669043122330365, 44.209603041588537 ], [ -90.649648512005101, 44.197132228238729 ], [ -90.63985223527196, 44.192852289659506 ], [ -90.614567555345928, 44.182041436144161 ], [ -90.599576164504597, 44.173451546062203 ], [ -90.579784691341843, 44.165463639179258 ], [ -90.572246513563357, 44.160229700487683 ], [ -90.567394402315898, 44.156643741721503 ], [ -90.552387079324532, 44.151051797122911 ], [ -90.533999716913968, 44.132043003061447 ], [ -90.532595738816198, 44.093152458150357 ], [ -90.524935642460321, 44.079602597395443 ], [ -90.521716614636873, 44.070523693440997 ], [ -90.516200577713562, 44.055272851436783 ], [ -90.512553611108331, 44.028345144068616 ], [ -90.509577594468169, 44.023859183189344 ], [ -90.505259560614462, 44.021185196187332 ], [ -90.497569503994811, 44.019064206013809 ], [ -90.492793489839002, 44.015330258985379 ], [ -90.475474424319643, 43.999964463566613 ], [ -90.455012215297074, 43.990584717705815 ], [ -90.447474126701721, 43.985625846846453 ] ], [ [ -87.935158240189367, 42.957882469185371 ], [ -87.935318271272479, 42.959419443513944 ], [ -87.934052324636951, 42.964691363255845 ] ], [ [ -87.935158240189367, 42.957882469185371 ], [ -87.934967000879283, 42.944267691314124 ], [ -87.934775925356945, 42.940204758195264 ], [ -87.935096767160502, 42.93041691587753 ], [ -87.935843540991783, 42.915868148992629 ], [ -87.937239837590397, 42.872075854097879 ], [ -87.938185569027567, 42.854448135941723 ], [ -87.951452832623474, 42.842993258009841 ], [ -87.952169843883937, 42.842169267884337 ], [ -87.952665813466709, 42.839266312452175 ], [ -87.953854864898901, 42.778678286509802 ], [ -87.954183155618381, 42.725798852085397 ], [ -87.954059840390627, 42.696170979762186 ], [ -87.953052521104794, 42.669498099751287 ], [ -87.952586931084483, 42.615028336243348 ], [ -87.953212686965315, 42.589355442746005 ], [ -87.953181492241825, 42.570908522090171 ], [ -87.953280457253896, 42.567188537452708 ], [ -87.952639287191815, 42.553467600255132 ], [ -87.951731688300143, 42.499996835858973 ], [ -87.949816491311978, 42.493717938850494 ], [ -87.946779193178884, 42.484536089208412 ], [ -87.947153124662648, 42.480054151396878 ], [ -87.950167206789942, 42.47775416772032 ], [ -87.962023600584843, 42.472455181059843 ], [ -87.964098560284626, 42.465669271717836 ], [ -87.955262636790096, 42.435960752283783 ], [ -87.947755120909235, 42.425179937178186 ], [ -87.949318453947967, 42.38609549597377 ], [ -87.947548281485439, 42.380869574822768 ], [ -87.939208608680261, 42.363756831407159 ], [ -87.934783312154352, 42.357924918075774 ], [ -87.923254586517757, 42.345286100393949 ], [ -87.910229766491653, 42.331100292033618 ], [ -87.907277542025071, 42.325866359517427 ], [ -87.904835162542341, 42.311339544729151 ], [ -87.90249282260686, 42.298690703582153 ], [ -87.903682775942144, 42.29356777018895 ], [ -87.913288835071938, 42.275086025161563 ], [ -87.902553094150889, 42.260224191750957 ], [ -87.901370595780492, 42.239864577173535 ], [ -87.901217288946228, 42.227844883962881 ], [ -87.888849086246708, 42.20034558433877 ], [ -87.875420049584463, 42.180792109851971 ], [ -87.874214340143737, 42.15370484432313 ], [ -87.874427273981325, 42.150633926911297 ], [ -87.870452084433609, 42.149462969227656 ], [ -87.844092014588568, 42.149375042228179 ], [ -87.829801321429898, 42.1444732254717 ], [ -87.794078900214203, 42.145435300615937 ], [ -87.787852474103985, 42.137626568050464 ], [ -87.784976159188247, 42.128684864663605 ], [ -87.767381857934907, 42.101380835711744 ], [ -87.758393182085825, 42.086522383222814 ], [ -87.758423888924582, 42.07293183956731 ], [ -87.75460851161067, 42.062289225996963 ], [ -87.760284576509704, 42.05521641982002 ], [ -87.762962363694569, 42.040724881553743 ], [ -87.768547415255327, 42.033393074549799 ], [ -87.768547225578303, 42.02473036061312 ], [ -87.764220962564892, 42.020126555702966 ], [ -87.750853282034726, 42.011779972696147 ], [ -87.748511079016055, 42.006321173787825 ], [ -87.751455787335431, 41.990380417802299 ], [ -87.751402678587681, 41.986485439416526 ], [ -87.746755335041144, 41.980122504167824 ], [ -87.746770924932989, 41.965123586224152 ], [ -87.743260688438383, 41.961125626834274 ] ], [ [ -87.935158240189367, 42.957882469185371 ], [ -87.93493726010793, 42.959423445091055 ], [ -87.936493353595807, 42.962208393134674 ], [ -87.929901224813648, 42.965934360818935 ], [ -87.916633864228373, 42.967426393248878 ], [ -87.915076850239842, 42.969166371470202 ], [ -87.914916926777565, 42.973667298595359 ], [ -87.9159171004721, 42.981716162842588 ], [ -87.914055124331952, 42.985973101099461 ], [ -87.915901635270004, 43.015353355664509 ], [ -87.920837874827299, 43.023223074454414 ], [ -87.922898067671625, 43.033559723379106 ] ], [ [ -87.922898067671625, 43.033559723379106 ], [ -87.923036095938471, 43.03541366136924 ] ], [ [ -87.922898067671625, 43.033559723379106 ], [ -87.926568189948085, 43.035360648493842 ] ], [ [ -87.923036095938471, 43.03541366136924 ], [ -87.908791719865349, 43.035844706095929 ], [ -87.907562686924422, 43.035844711187366 ], [ -87.906166649616807, 43.03585271670562 ], [ -87.901451522027571, 43.035764739154182 ] ], [ [ -87.923036095938471, 43.03541366136924 ], [ -87.926568189948085, 43.035360648493842 ] ], [ [ -87.926568189948085, 43.035360648493842 ], [ -87.942605625137077, 43.035764568668228 ], [ -87.947763740530306, 43.033952607359943 ], [ -87.955957936120498, 43.031984638654428 ], [ -87.970026326606984, 43.032983547270483 ], [ -87.981974618582626, 43.030504579976714 ], [ -87.996623009968758, 43.030222528667402 ], [ -88.017345475704062, 43.027589426055727 ], [ -88.033931857954485, 43.027181270565478 ], [ -88.039317976590866, 43.026502237711199 ], [ -88.047108185343035, 43.029207071116893 ], [ -88.056156417138197, 43.031403908950153 ], [ -88.066990652970247, 43.029763851748612 ], [ -88.094358246925623, 43.024907726419983 ], [ -88.10736654646918, 43.024361610321463 ], [ -88.116308762605854, 43.025227492056104 ], [ -88.130881131020018, 43.028878231548212 ], [ -88.149702573238201, 43.029488022133002 ], [ -88.171882123604348, 43.03483263835264 ], [ -88.180290352476149, 43.040363390448114 ], [ -88.208313039573525, 43.04841187892643 ], [ -88.227456478566111, 43.049231668618596 ], [ -88.250886002113916, 43.047011503086878 ], [ -88.256074126559142, 43.046500468068409 ], [ -88.270196468771189, 43.045889350709025 ], [ -88.289400952066742, 43.049510066362096 ], [ -88.304232318301516, 43.050699892080679 ], [ -88.349102406480185, 43.049104509777521 ], [ -88.37363901280284, 43.051549208930055 ], [ -88.390652433331908, 43.053479994188287 ], [ -88.414083005792733, 43.05414675353282 ], [ -88.422849223877961, 43.055813624778395 ], [ -88.471045427603116, 43.068866814021263 ], [ -88.473998499419892, 43.068996782691663 ], [ -88.480948667870251, 43.069064715409858 ], [ -88.540191825329416, 43.070536684666287 ], [ -88.564233238762867, 43.069876217156676 ], [ -88.582299550752737, 43.070665829490792 ], [ -88.588693662432377, 43.07310663009558 ], [ -88.602486903141923, 43.082315083580689 ], [ -88.613489091111518, 43.085243773025454 ], [ -88.658197850612382, 43.084384881817407 ], [ -88.7614106906004, 43.086751769375297 ], [ -88.806562823914007, 43.086061179037223 ], [ -88.889129885930913, 43.087711005972238 ], [ -88.895539041629405, 43.088729886127318 ], [ -88.908844351214526, 43.093474552242668 ], [ -88.961335559825784, 43.110628282514746 ], [ -89.012072818304617, 43.110612645467619 ], [ -89.083004630892617, 43.108777057935725 ], [ -89.165396725444424, 43.108375319058098 ], [ -89.187675276010268, 43.110164058100281 ], [ -89.199104573114468, 43.109320980986908 ], [ -89.22905834444245, 43.108046748653116 ], [ -89.252648969953114, 43.103514695132006 ], [ -89.271539348691149, 43.102919662409377 ], [ -89.276361450129798, 43.102221670978089 ] ], [ [ -89.276361450129798, 43.102221670978089 ], [ -89.281068535713487, 43.103072631538595 ], [ -89.285089580269485, 43.107089496362804 ], [ -89.28572257897838, 43.108680445571522 ] ], [ [ -89.276361450129798, 43.102221670978089 ], [ -89.28571564418381, 43.10116167785749 ] ], [ [ -87.627200487955079, 41.775160892605875 ], [ -87.624728469491473, 41.738044181960483 ], [ -87.62431610747899, 41.721729239222199 ], [ -87.624727985632788, 41.71533925563574 ], [ -87.620759815075715, 41.713783301399495 ], [ -87.598558037054445, 41.713337530310476 ], [ -87.593903818945506, 41.710586584499524 ], [ -87.591995681290172, 41.707119611898037 ], [ -87.593743599814502, 41.700275610423802 ], [ -87.601654562203365, 41.68544457062842 ], [ -87.601570374425293, 41.676582594293833 ], [ -87.589339632282446, 41.660713742126624 ], [ -87.578994023974843, 41.647957857194491 ], [ -87.578848509126288, 41.622993906573555 ], [ -87.578535327743296, 41.614616925057433 ], [ -87.583265204013017, 41.601040917887609 ], [ -87.581945688629887, 41.577976973705184 ] ], [ [ -89.306413604883062, 43.153818030704315 ], [ -89.296281546819756, 43.136755561631183 ], [ -89.290475537863955, 43.124323952789439 ] ], [ [ -84.996786484778724, 42.297301512368051 ], [ -84.975591908544246, 42.297252425169226 ], [ -84.964002454129982, 42.294009445447891 ], [ -84.950993759028051, 42.285991556514787 ], [ -84.940052322375081, 42.282603576645442 ], [ -84.935917201609684, 42.282351562790339 ], [ -84.928035994800069, 42.282420525176441 ], [ -84.798584600905116, 42.283750908558645 ], [ -84.790977306986008, 42.281340912774773 ], [ -84.773146252421171, 42.26576107361042 ], [ -84.766288010546987, 42.264060065016331 ], [ -84.756437761246588, 42.264251011623614 ], [ -84.728726334786487, 42.264582513379402 ], [ -84.717228612610342, 42.263704275146914 ], [ -84.708271039324217, 42.262789091062679 ], [ -84.697535361686519, 42.261968865720036 ], [ -84.631659426028619, 42.262359422873921 ], [ -84.609090407647457, 42.269095907034163 ], [ -84.483885530441228, 42.268918578945375 ], [ -84.477041363091232, 42.268895577134437 ], [ -84.452840775096917, 42.268876571066357 ], [ -84.43938947088823, 42.269265569516968 ], [ -84.426900318354967, 42.271966578102429 ], [ -84.419881182351247, 42.272607578731005 ], [ -84.404949761965753, 42.271596570098801 ], [ -84.403782743218656, 42.271775570470112 ], [ -84.383137429011967, 42.275346577385655 ], [ -84.36014194553681, 42.276944574494472 ], [ -84.358729912805686, 42.276986574095915 ], [ -84.319689962080361, 42.277276560034764 ], [ -84.312944824019496, 42.277863558907882 ], [ -84.302255728755739, 42.281365562835454 ], [ -84.28838544368152, 42.282654559284389 ], [ -84.276468382832277, 42.287724563317745 ], [ -84.261743178432866, 42.291394561264852 ], [ -84.210983398942361, 42.292294715169952 ], [ -84.193595663154326, 42.290776788794901 ], [ -84.178160161967881, 42.293454847030482 ], [ -84.162801531653656, 42.292596911778681 ], [ -84.150419165486667, 42.296143948747215 ], [ -84.131261430422612, 42.296819020083007 ], [ -84.096942104270084, 42.297975144772721 ], [ -84.090502818302809, 42.2967771776432 ], [ -84.080470326534211, 42.29284524612244 ], [ -84.074900092416826, 42.292135274376797 ], [ -84.027108277072671, 42.29472544372544 ], [ -83.946928184699502, 42.299078738643367 ], [ -83.924756703523897, 42.296705873692801 ], [ -83.899709200626916, 42.297548975473156 ], [ -83.878124767382559, 42.298438059120492 ], [ -83.8618054359778, 42.298777127126741 ], [ -83.832172760446966, 42.28929843636147 ], [ -83.805103207766891, 42.287856596953887 ], [ -83.796153019844823, 42.286338671493553 ], [ -83.787501837412364, 42.284518751720462 ], [ -83.784334758724967, 42.281497829460349 ], [ -83.784922681914239, 42.264557171760785 ], [ -83.78372464260076, 42.26136824395499 ], [ -83.763514176858436, 42.245350713876107 ], [ -83.752023911200681, 42.237629962573287 ], [ -83.739259673195008, 42.236809986518857 ], [ -83.711770175432463, 42.237137959628939 ], [ -83.703477001192297, 42.233788031660303 ], [ -83.699661918783292, 42.231919072638732 ], [ -83.696831857789661, 42.230550102731335 ], [ -83.685646618723013, 42.225407216222514 ], [ -83.651855996282904, 42.224152226610073 ], [ -83.634040676689096, 42.224721202906927 ], [ -83.617248399425449, 42.228761095582378 ], [ -83.605788207236472, 42.231099031674376 ], [ -83.583731809470081, 42.231519007232698 ], [ -83.575964656750045, 42.22979804464417 ], [ -83.563856376132932, 42.220799260081975 ], [ -83.557295235197614, 42.217549337399518 ], [ -83.543439987148389, 42.21802631865522 ], [ -83.485325753707357, 42.219319259755338 ], [ -83.447673591319088, 42.220731212368321 ], [ -83.440944378519717, 42.219739235858583 ], [ -83.431834096822726, 42.220075224498757 ], [ -83.412515500738493, 42.221829173420474 ], [ -83.385705670766001, 42.227944006597404 ], [ -83.341949279300849, 42.23863271299367 ], [ -83.328162831014993, 42.242004619600841 ], [ -83.310584251404208, 42.246681490073179 ], [ -83.300771945333167, 42.254043340262449 ], [ -83.288099581731785, 42.261650228431698 ], [ -83.270521028454255, 42.263676197154396 ], [ -83.231784615005907, 42.265900226206568 ], [ -83.224025297623697, 42.267151236025498 ], [ -83.209963734010316, 42.270470239978295 ], [ -83.203455511865911, 42.276047188302094 ], [ -83.18311490251898, 42.299929942766482 ], [ -83.169885521189926, 42.314807793049198 ], [ -83.161096288792123, 42.325759680102671 ], [ -83.160394268746316, 42.326468673282541 ], [ -83.154382059623856, 42.329078660450833 ], [ -83.136017376089995, 42.332667679121599 ], [ -83.124824990986227, 42.337142660792544 ], [ -83.117515753249066, 42.340956637335779 ], [ -83.113982653313727, 42.343886611892565 ], [ -83.099326164783818, 42.349929586319952 ], [ -83.095809045234176, 42.351130583485698 ], [ -83.093886978094432, 42.351645583780254 ], [ -83.085211682980201, 42.354453578908149 ], [ -83.07645240300468, 42.358378560020633 ], [ -83.06883118719341, 42.363498521713247 ], [ -83.057912846178553, 42.368388498689029 ], [ -83.048673572811651, 42.373267469889299 ], [ -83.034078120107708, 42.379226447288517 ], [ -83.028607995116872, 42.384036405926089 ], [ -83.020100712357745, 42.386046411826307 ], [ -83.006031287004745, 42.391597393380046 ], [ -82.993869751862761, 42.392947386655194 ], [ -82.98867352487548, 42.396117336088878 ], [ -82.98292126497843, 42.399009288298025 ], [ -82.949685659122309, 42.408488107614609 ], [ -82.934640088560272, 42.418726957009355 ], [ -82.929069937997824, 42.424787875124586 ], [ -82.923103826789713, 42.433077767002061 ], [ -82.917717872377807, 42.446165604383133 ], [ -82.917343964791357, 42.450655550991385 ], [ -82.923547394596511, 42.455526501786842 ], [ -82.924478520526392, 42.458814464025984 ], [ -82.916558488036642, 42.47328728368003 ], [ -82.917238065074713, 42.495226026173825 ], [ -82.918100227792763, 42.500134968225787 ], [ -82.91739891532724, 42.519368577127203 ], [ -82.908533829758994, 42.527821399719251 ], [ -82.900400866739403, 42.53853717776984 ], [ -82.88588127752891, 42.540238134846653 ], [ -82.876200277962056, 42.55157490135138 ], [ -82.871752134680222, 42.553016870052012 ], [ -82.864465826127329, 42.553455857450075 ], [ -82.859895728931249, 42.556205800043358 ], [ -82.85814923508147, 42.571205499135985 ], [ -82.855189933805775, 42.618102560543527 ], [ -82.850010146258626, 42.629222337608113 ], [ -82.838917400922369, 42.647703968287452 ], [ -82.825092715658471, 42.670301519588385 ], [ -82.820690697458531, 42.674444437856977 ], [ -82.79571231370781, 42.690595122432285 ], [ -82.773777099948362, 42.707360798294509 ], [ -82.730273547253461, 42.734204431136895 ], [ -82.650469582001108, 42.797619079713535 ], [ -82.604409812950678, 42.828578972562219 ], [ -82.521484710933478, 42.888545668717981 ], [ -82.506706538768398, 42.899250607841282 ], [ -82.505196724725735, 42.907451488847066 ], [ -82.50696794395931, 42.948187830706786 ], [ -82.50506794920139, 42.95043080842845 ], [ -82.490678549905354, 42.957858780200006 ], [ -82.489854841567734, 42.969427604253859 ], [ -82.488107839445235, 42.972338569610955 ], [ -82.477975431800587, 42.975447584846528 ] ], [ [ -93.252467447783857, 44.966029459761003 ], [ -93.247134263294285, 44.965640481424046 ], [ -93.241717056309497, 44.964149482366672 ], [ -93.23151670435378, 44.964069493489042 ], [ -93.222963455805655, 44.967288511019412 ], [ -93.22052937105164, 44.967208513242888 ], [ -93.207619822625162, 44.959911512275006 ], [ -93.20199763384214, 44.960250520012451 ], [ -93.194505321249736, 44.95650452426267 ], [ -93.178772709478451, 44.951824542702759 ], [ -93.119596664572768, 44.951824636525068 ], [ -93.106298169713412, 44.949577662094171 ], [ -93.103582044885727, 44.947616670752922 ] ], [ [ -86.257696744178006, 42.178531843697328 ], [ -86.242682515325143, 42.179520899303839 ], [ -86.223104242599447, 42.183594868476376 ], [ -86.198903918309668, 42.18872883469222 ], [ -86.16882043723291, 42.192360897412243 ], [ -86.146298038035638, 42.19377999211946 ], [ -86.117786468576028, 42.193688175405839 ], [ -86.097820218043893, 42.197640178454542 ], [ -86.03248887204353, 42.196137643947935 ], [ -86.00662411684965, 42.19016797667387 ], [ -86.000016976012148, 42.189959023424734 ], [ -85.965706880004021, 42.198808781068593 ], [ -85.948639387745658, 42.204419627275321 ], [ -85.889775964605974, 42.206288581350442 ], [ -85.87919356733866, 42.207520548371924 ], [ -85.854938949075603, 42.217149285114942 ], [ -85.787980352609296, 42.222680140217591 ], [ -85.765625423602003, 42.223065132199643 ], [ -85.736335430574442, 42.223828353776106 ], [ -85.70369712859916, 42.2366805803671 ], [ -85.688177761582324, 42.237710827584159 ], [ -85.677519478084079, 42.237711016525495 ], [ -85.637609430509983, 42.238020715818372 ], [ -85.614102802053822, 42.237948134500677 ], [ -85.589619103680874, 42.236915595534306 ], [ -85.578906841419794, 42.237411772450059 ], [ -85.559711689369465, 42.245193911501069 ], [ -85.54325451762007, 42.251053051772324 ], [ -85.531490519314929, 42.259003038343408 ], [ -85.515010463707924, 42.268951041692077 ], [ -85.507884290096641, 42.269470148664936 ], [ -85.478701241505291, 42.270691260622755 ], [ -85.462419521541847, 42.269497304849409 ], [ -85.445976855519959, 42.26986330409607 ], [ -85.399550295337477, 42.278801080482786 ], [ -85.367887137799073, 42.282372003284287 ], [ -85.348485341973969, 42.282414016327124 ], [ -85.29790785475916, 42.272808312658256 ], [ -85.296884803571416, 42.272598318965635 ], [ -85.295435731071606, 42.272301327879298 ], [ -85.2575228664831, 42.265423534033353 ], [ -85.226279545406911, 42.264912522507714 ], [ -85.198530257664373, 42.261864566367414 ], [ -85.187451867874174, 42.263493510794362 ], [ -85.17870871144801, 42.268230380241057 ], [ -85.152096280071206, 42.283622967447684 ], [ -85.147259140946446, 42.285029928288836 ], [ -85.129009435488527, 42.286220883083814 ], [ -85.116084000378081, 42.288527816143343 ], [ -85.085841223179713, 42.299361534933901 ], [ -85.07773790702926, 42.299811519169545 ], [ -85.062455183935626, 42.297790556500757 ], [ -84.998160522841545, 42.297320517668808 ], [ -84.996901442187934, 42.296271535599843 ] ], [ [ -86.257696744178006, 42.178531843697328 ], [ -86.261770794968285, 42.17830682590612 ], [ -86.30610634834251, 42.175869631013434 ], [ -86.315108406930293, 42.173588655616292 ], [ -86.36801098968084, 42.134740701312751 ], [ -86.378630921951085, 42.127435890069101 ], [ -86.384443892938066, 42.123700983547806 ], [ -86.390783849872676, 42.119242098817978 ], [ -86.409132260139899, 42.090761980785345 ], [ -86.417044026430702, 42.079143335382604 ], [ -86.436543987279933, 42.068431573499744 ], [ -86.453053981479513, 42.060252741535486 ], [ -86.458181015826767, 42.058921751009088 ], [ -86.487944235995045, 42.051871780511028 ], [ -86.514212277549746, 42.031014169898668 ], [ -86.531363587582518, 42.021393195369605 ], [ -86.532797326685511, 42.010620531036011 ], [ -86.537855174144497, 41.996243825131323 ], [ -86.54442428311026, 41.978233861907817 ], [ -86.571310923518723, 41.936573751397816 ], [ -86.571371879464451, 41.9300618095047 ], [ -86.570250794021845, 41.923393889746947 ], [ -86.572401839386828, 41.919460887858598 ], [ -86.600280548939125, 41.887482702782833 ], [ -86.603385511157498, 41.868561829152917 ], [ -86.60956568079736, 41.863762770907236 ], [ -86.688630929970643, 41.819522909343128 ], [ -86.694315073898068, 41.814712867979075 ], [ -86.706164321089616, 41.79899184507569 ], [ -86.721247660203247, 41.782462784474909 ], [ -86.732226931829501, 41.773570709479444 ], [ -86.751262409502644, 41.759845562417063 ], [ -86.794949269124743, 41.733042971262257 ], [ -86.802594382679445, 41.727201871187091 ], [ -86.805188385765348, 41.723341850106685 ], [ -86.806111084795091, 41.706030947776682 ], [ -86.810695984767193, 41.69357195196568 ], [ -86.812099945542272, 41.68929195699922 ], [ -86.816219997263602, 41.68554191318055 ], [ -86.831074277738509, 41.676920726508321 ], [ -86.853520881360936, 41.673361383014282 ], [ -86.858090972495617, 41.670912327371205 ], [ -86.870389144967859, 41.660318213898812 ], [ -86.875028255929493, 41.658789152090684 ], [ -86.881589445407684, 41.658392050116078 ], [ -86.89412482384266, 41.658528847663661 ], [ -86.897527925899013, 41.658528793022192 ], [ -86.932326973111444, 41.658730232259479 ], [ -86.960968828998887, 41.65855877405297 ], [ -86.967965018410254, 41.657398674389889 ], [ -87.009751790876365, 41.634437356236731 ], [ -87.02546798178895, 41.625995328726169 ], [ -87.045717393560963, 41.624702181580851 ], [ -87.071397925328213, 41.623606987544221 ], [ -87.093310152461768, 41.609343943710677 ], [ -87.099612259539484, 41.607676905880844 ], [ -87.107218422424936, 41.607642841963973 ], [ -87.125376811059311, 41.607547689430795 ], [ -87.130717922096821, 41.607325646137099 ], [ -87.14702218097662, 41.601889550445357 ], [ -87.173862762916812, 41.602164317634177 ], [ -87.183239962954715, 41.602065237710356 ], [ -87.208661435362004, 41.597594046224579 ], [ -87.218091572384907, 41.593622987004977 ], [ -87.221966616841726, 41.59127296615948 ], [ -87.224148641889229, 41.589948954205212 ] ], [ [ -86.257696744178006, 42.178531843697328 ], [ -86.261763748338012, 42.17676988193378 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I94  S\", \"DIST_MILES\": 0.940000, \"DIST_KM\": 1.520000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -82.44136836437967, 43.001231451183621 ], [ -82.441719291110203, 42.997630493802006 ], [ -82.445267377171533, 42.99457051373129 ] ], [ [ -82.44136836437967, 43.001231451183621 ], [ -82.442276485228987, 43.005480407530086 ] ], [ [ -82.44136836437967, 43.001231451183621 ], [ -82.439056256015164, 43.001509464759017 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I95\", \"DIST_MILES\": 1829.690000, \"DIST_KM\": 2944.610000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -74.696117337427268, 40.28347931413024 ], [ -74.703640299793022, 40.286176198446135 ], [ -74.732433070303216, 40.285668964965957 ], [ -74.759326849268007, 40.287522743812133 ], [ -74.772639737062889, 40.291863606851457 ], [ -74.784625596389077, 40.290608576524079 ], [ -74.812861287156821, 40.289013481655765 ], [ -74.817256226385183, 40.287056497803505 ], [ -74.828105032932896, 40.27672263709573 ], [ -74.845567722898934, 40.259632870471144 ], [ -74.8467887063902, 40.259041875932319 ], [ -74.849718665359177, 40.257435892444079 ], [ -74.854623600407066, 40.255158912709405 ], [ -74.869142432699675, 40.251095924689452 ], [ -74.875696363966014, 40.248089944996629 ], [ -74.879793324855186, 40.242631009434632 ], [ -74.881433307164585, 40.23444112520064 ], [ -74.880838308070182, 40.225294264351447 ], [ -74.878259324460146, 40.216951398942825 ], [ -74.875787340272453, 40.211183494303313 ], [ -74.874620343030259, 40.201761638895242 ], [ -74.878778308135651, 40.193067753492016 ], [ -74.885026263140034, 40.187204819285618 ], [ -74.892046216579971, 40.182863860406357 ], [ -74.895769193416086, 40.176526943538704 ], [ -74.899759171490402, 40.166003089863516 ], [ -74.899042178149855, 40.152472297268773 ], [ -74.889253226642353, 40.129187677595979 ], [ -74.887811231638921, 40.120722808868621 ], [ -74.891634214660286, 40.110365954634119 ], [ -74.89579219897935, 40.106510002201247 ], [ -74.906404162513923, 40.103057028016721 ], [ -74.915353137450765, 40.097335093692109 ], [ -74.920511126943765, 40.092254159595363 ], [ -74.934541102530133, 40.083629261235579 ], [ -74.948167091419137, 40.074596373200244 ], [ -74.960672082287161, 40.070301415318895 ], [ -74.984033103098724, 40.055709603848022 ], [ -74.990701118501079, 40.050533675618034 ], [ -74.999483128633358, 40.047794704966634 ], [ -75.00490718665317, 40.040592813861991 ], [ -75.017976296165372, 40.035137885313375 ], [ -75.02189035349933, 40.029644972878188 ], [ -75.029893443165093, 40.024769046735344 ], [ -75.037981523226534, 40.022492077629842 ], [ -75.048540647666002, 40.017811149872543 ], [ -75.063341849029342, 40.0102202747292 ], [ -75.068796916435147, 40.008732298520535 ], [ -75.071504954146263, 40.007634317102024 ], [ -75.074511000943872, 40.006001345561998 ], [ -75.082324107923469, 39.996903478587932 ], [ -75.087000094737093, 39.990887526573367 ], [ -75.08889309147996, 39.988457545453386 ], [ -75.107752253608453, 39.979706599846899 ], [ -75.116885348447298, 39.975468622591102 ], [ -75.11989138128726, 39.973973630288704 ], [ -75.123515420809326, 39.971913641041752 ], [ -75.12423242600785, 39.97106664623778 ], [ -75.137255594893134, 39.965325669478837 ], [ -75.140521622351926, 39.95990070084806 ], [ -75.140521615825804, 39.958466710293692 ], [ -75.140521598050668, 39.954560736022309 ], [ -75.140559596120823, 39.953991739705792 ], [ -75.140879596004112, 39.95273374743536 ], [ -75.141757593563725, 39.948685772416724 ], [ -75.14212359418984, 39.947316780682499 ], [ -75.142474593407371, 39.94565679084446 ], [ -75.142825592395027, 39.943909801535973 ], [ -75.145251596867709, 39.933690862424811 ], [ -75.148478589358589, 39.913743981219078 ], [ -75.149592596414678, 39.908598010321043 ], [ -75.150965608344833, 39.902654043196804 ], [ -75.153727668750236, 39.900953044527789 ], [ -75.174450166757708, 39.898655987689814 ], [ -75.175190184921803, 39.898682985017345 ], [ -75.192211609253278, 39.89598994047347 ], [ -75.204097936404878, 39.887074939947261 ], [ -75.209508084092079, 39.885800925320353 ], [ -75.212163153951806, 39.886014914384731 ], [ -75.224187444256543, 39.891682847013954 ], [ -75.230626604794878, 39.892979819258926 ], [ -75.23518873012975, 39.892071806470781 ], [ -75.237805802359063, 39.8915877988997 ], [ -75.24062089538468, 39.889069797458689 ], [ -75.249250215261455, 39.878594798893545 ], [ -75.256040479233391, 39.876851742962032 ], [ -75.262479721129651, 39.876660683365714 ], [ -75.281928452276517, 39.876366503226244 ], [ -75.30170420316405, 39.87112935487179 ], [ -75.310821540922404, 39.868901290186869 ], [ -75.321487940784962, 39.871033179540625 ], [ -75.33302435902435, 39.867444109422934 ], [ -75.338456561487192, 39.86763806082692 ], [ -75.342721718817771, 39.867398026389267 ], [ -75.34438476995723, 39.865536030326631 ], [ -75.359674273361335, 39.857727985940976 ], [ -75.361124322921214, 39.857410977973544 ], [ -75.361299328955653, 39.857379976936812 ], [ -75.388003166384422, 39.847034900443816 ], [ -75.405169664050248, 39.840248874246981 ], [ -75.424465206634451, 39.83375184740143 ], [ -75.450314750767362, 39.81900094434102 ], [ -75.45330475842546, 39.815113997209416 ], [ -75.45434275692233, 39.813614018593533 ], [ -75.46748092330705, 39.803856137790497 ], [ -75.475598170889569, 39.804196099203551 ], [ -75.482053283402223, 39.801243131197005 ], [ -75.492688272248202, 39.789803323124993 ], [ -75.506223422908448, 39.779484441627829 ], [ -75.527250116617722, 39.774815295553964 ], [ -75.536886291564358, 39.768117320944704 ], [ -75.543013491377735, 39.766766277393053 ], [ -75.551657631273713, 39.760415305586051 ], [ -75.553289459706022, 39.75302643581648 ], [ -75.555037464099797, 39.751034455515466 ], [ -75.560934708339829, 39.741837364873447 ], [ -75.561239723235431, 39.741227358439033 ], [ -75.561674751272676, 39.739064343085595 ], [ -75.565542937573724, 39.731076261743851 ], [ -75.584296692823969, 39.714347985316877 ], [ -75.586852785850468, 39.714012956980795 ], [ -75.603653407085616, 39.704116745873463 ], [ -75.605484473069339, 39.703132723853763 ], [ -75.61660086774026, 39.696682591319885 ], [ -75.655970206752642, 39.684013178061313 ], [ -75.666453545300627, 39.679184071704938 ], [ -75.675494816329632, 39.672083979454079 ], [ -75.705097671636111, 39.65431870791118 ], [ -75.736042604089164, 39.648013450972222 ], [ -75.746342921767351, 39.647013367163616 ], [ -75.75952725413363, 39.646563354320755 ], [ -75.787633845280496, 39.63881244135785 ], [ -75.801939212574482, 39.640948459666141 ], [ -75.811835466449523, 39.642474467638472 ], [ -75.826361826644785, 39.643164489373987 ], [ -75.840049185016909, 39.646502474569822 ], [ -75.84743536459419, 39.646273488939734 ], [ -75.866439810066737, 39.641703590129396 ], [ -75.885094288949119, 39.644122587034431 ], [ -75.905320790341406, 39.64106268723117 ], [ -75.920831196165508, 39.645335627277994 ], [ -75.925081304731265, 39.645503630895369 ], [ -75.938577645690813, 39.641573750366639 ], [ -75.956614113844651, 39.632305037568401 ], [ -75.964678330378064, 39.628303175391231 ], [ -75.986796934825492, 39.624305382597981 ], [ -75.999729310488419, 39.615627715586882 ], [ -76.008022461347736, 39.610118657572116 ], [ -76.035549932355124, 39.604892036846522 ], [ -76.045758112733949, 39.599902890728821 ], [ -76.061574386053024, 39.595736551994719 ], [ -76.065854461669019, 39.593348493912792 ], [ -76.077084660366765, 39.586062363047404 ], [ -76.09560897648916, 39.585042840334744 ], [ -76.106153159903769, 39.58054964048933 ], [ -76.114355302222918, 39.577032481508418 ], [ -76.129942571017494, 39.575723042109921 ], [ -76.137647704554439, 39.570992918827123 ], [ -76.143568806381978, 39.56407289604882 ], [ -76.168372226476791, 39.545182529894831 ], [ -76.17170628064234, 39.54010052978947 ], [ -76.177779379478352, 39.532872482153287 ], [ -76.187949548624445, 39.527905246972352 ], [ -76.191298604252708, 39.526371166134446 ], [ -76.195098666607933, 39.523957086833015 ], [ -76.199469736758772, 39.519936018238909 ], [ -76.213332956124631, 39.506992789630665 ], [ -76.225281150532894, 39.501640471894021 ], [ -76.244347366231409, 39.487280835404988 ], [ -76.268600714720705, 39.477419511996672 ], [ -76.280258847248106, 39.469008428615759 ], [ -76.310182257027279, 39.456564212066105 ], [ -76.322480408920825, 39.450178128904064 ], [ -76.341294659193451, 39.442648001370408 ], [ -76.349084788206952, 39.44199994408045 ], [ -76.366625094046569, 39.441808812495786 ], [ -76.372179170635761, 39.439939775738388 ], [ -76.377588220486871, 39.436021746037774 ], [ -76.391939352348373, 39.42596966933219 ], [ -76.405909515536308, 39.41946958844575 ], [ -76.408678534375511, 39.417135576105295 ], [ -76.414049542045063, 39.41039855999837 ], [ -76.43083465763273, 39.39718748888572 ], [ -76.44880971538123, 39.379026435416534 ], [ -76.458231763911385, 39.371267404366876 ], [ -76.495563078679808, 39.35091525638979 ], [ -76.511233319180477, 39.343755197365859 ], [ -76.519267354941192, 39.333043199546019 ], [ -76.529712456180079, 39.322656186079413 ], [ -76.5341064992664, 39.318288180314738 ], [ -76.531390294933132, 39.309148237077743 ], [ -76.530597226066433, 39.305867256420193 ], [ -76.530414148491175, 39.301000279356266 ], [ -76.530871112060566, 39.29781829099857 ], [ -76.533603031169974, 39.287908319591153 ], [ -76.535556033187234, 39.28480632211393 ], [ -76.54727531126052, 39.283880257886551 ], [ -76.550754344903467, 39.280317253489748 ], [ -76.551349325114131, 39.277997260359676 ], [ -76.553302305497411, 39.273412269379989 ], [ -76.554156324154121, 39.273229265202865 ], [ -76.556247353997804, 39.271718259703825 ], [ -76.568355530268718, 39.26312822699235 ], [ -76.574817661144309, 39.260968198715453 ], [ -76.579532777494549, 39.260778171958876 ], [ -76.597431317204041, 39.26656804198965 ], [ -76.604847521625686, 39.267628994141063 ], [ -76.615101779128608, 39.267346935684223 ], [ -76.624349024236537, 39.267918879436955 ], [ -76.633588289291524, 39.26981881757802 ], [ -76.635007325471676, 39.269798809431599 ], [ -76.647947672447231, 39.270729730420392 ], [ -76.654966854577921, 39.270783689551074 ], [ -76.667349104571457, 39.265927638596288 ], [ -76.673384193382674, 39.261254623505522 ], [ -76.680289219330447, 39.250668628317811 ], [ -76.68278327437335, 39.249939618660726 ], [ -76.691977426007995, 39.242588672631761 ], [ -76.697256529252854, 39.239868681707151 ], [ -76.70468770647318, 39.23869765569458 ], [ -76.710142803114607, 39.235256674288877 ], [ -76.717901872538505, 39.225392773253056 ], [ -76.721579922980581, 39.222187798696247 ], [ -76.728797035322003, 39.217068831550954 ], [ -76.766670429526414, 39.197216932071967 ], [ -76.78974139495665, 39.178087128768915 ], [ -76.81942748309072, 39.160192294984448 ], [ -76.827842538780558, 39.157045314666 ], [ -76.835151592878148, 39.1546413271804 ], [ -76.838111601986085, 39.152513350523911 ], [ -76.848777565343624, 39.138219541037202 ], [ -76.86232763473889, 39.129407639025303 ], [ -76.87306962253129, 39.115205835574123 ], [ -76.885917692941746, 39.10534895948539 ], [ -76.889518686570824, 39.099707041953849 ], [ -76.893325645267765, 39.089953191937077 ], [ -76.912223686694617, 39.064760563648932 ], [ -76.923515817172969, 39.060141616290188 ], [ -76.928024856383715, 39.05660166630048 ], [ -76.934295850898579, 39.044035866068612 ], [ -76.93990388042333, 39.036524983027 ], [ -76.95105799324125, 39.027519117091607 ] ], [ [ -76.95105799324125, 39.027519117091607 ], [ -76.95252297167508, 39.021400219700865 ] ], [ [ -76.95105799324125, 39.027519117091607 ], [ -76.949584941118175, 39.023864182280704 ], [ -76.945449863064795, 39.022678209470037 ] ], [ [ -71.140657622817102, 42.207537755871861 ], [ -71.138163326412837, 42.212660799164112 ] ], [ [ -71.140657622817102, 42.207537755871861 ], [ -71.162238006174547, 42.219687156907639 ], [ -71.182169575536037, 42.228330618235375 ], [ -71.201087426634089, 42.23869510204586 ], [ -71.204397926841978, 42.241731007232097 ], [ -71.205641757987877, 42.243336969789958 ], [ -71.21158400557961, 42.252873754797044 ], [ -71.209494705471741, 42.262177671527077 ], [ -71.207122233486331, 42.264603695348519 ], [ -71.204253838741906, 42.266499739287148 ], [ -71.199280965065896, 42.272011783204931 ], [ -71.201035887894207, 42.279698627460313 ], [ -71.2141487674064, 42.29081013945089 ], [ -71.225057091378048, 42.302677696935241 ], [ -71.23421081286746, 42.316619268966953 ], [ -71.237697247661572, 42.319496141558794 ], [ -71.247247484119029, 42.320498892934346 ], [ -71.249581142009745, 42.323534791887738 ], [ -71.252457761489694, 42.328253640612601 ], [ -71.262305341939367, 42.340399176353642 ], [ -71.263442244806228, 42.343928092568284 ], [ -71.26347241789334, 42.349646009846722 ], [ -71.270986373345622, 42.360052643152578 ], [ -71.269773903108842, 42.369974537030082 ], [ -71.262611722785905, 42.386369508860156 ], [ -71.261926182955335, 42.397069375136645 ], [ -71.25743363931204, 42.417234213246815 ], [ -71.259096671641871, 42.428026011017614 ], [ -71.259951754999292, 42.435707876584658 ], [ -71.255961891727551, 42.448513804076399 ], [ -71.259349608453789, 42.459404552918841 ], [ -71.257831978030637, 42.462262553952641 ], [ -71.245665521305639, 42.470425758354686 ], [ -71.238624979989595, 42.473355886738446 ], [ -71.220508622631769, 42.476652280582549 ], [ -71.205191790267406, 42.481283588922508 ], [ -71.191972662934688, 42.488756805900955 ], [ -71.181751919927734, 42.495111966141664 ], [ -71.158647716569078, 42.499236481177434 ], [ -71.156641131800498, 42.499480527804273 ], [ -71.129859736155041, 42.50277714652767 ], [ -71.119081934173849, 42.50232642751704 ], [ -71.11240729581597, 42.501937603918819 ], [ -71.102674393370606, 42.503700822396901 ], [ -71.095595990999172, 42.506450957298732 ], [ -71.088030183014382, 42.519966924712207 ], [ -71.08233958777987, 42.524616994136956 ], [ -71.080120107432322, 42.525784032244331 ], [ -71.070730135710619, 42.526848258992409 ], [ -71.061736924921462, 42.524334535690414 ], [ -71.045435939567867, 42.514436126046512 ], [ -71.038410380834378, 42.5131163322039 ], [ -71.0019124233676, 42.51659324270851 ], [ -70.994216198789545, 42.519045399726636 ], [ -70.986801947929322, 42.522231536117815 ], [ -70.980814288665741, 42.523188672644707 ], [ -70.97937282278987, 42.527899635233489 ], [ -70.984178081881922, 42.534281412333577 ], [ -70.985697019936637, 42.539954283935899 ], [ -70.974797314373831, 42.559714254494118 ], [ -70.970411929227708, 42.573714150794885 ], [ -70.964913523918071, 42.582068166189217 ], [ -70.962625228377817, 42.586386160135184 ], [ -70.962777462818622, 42.592059068496376 ], [ -70.964608235641023, 42.595735962826694 ], [ -70.967331849713432, 42.600179821205778 ], [ -70.979575156693471, 42.620893169111511 ], [ -70.977259349391474, 42.677941337114547 ], [ -70.97583291838933, 42.683407291325452 ], [ -70.964751559130789, 42.709137203864429 ], [ -70.948193009089763, 42.747136099405587 ], [ -70.921124889901336, 42.791176262982439 ], [ -70.91268926798044, 42.802601356253 ], [ -70.916168096927279, 42.817357039290677 ], [ -70.915946650990804, 42.829452873367771 ], [ -70.90351413463425, 42.845295035611535 ], [ -70.897291016062653, 42.85629707676221 ], [ -70.893622130351346, 42.862832101536725 ], [ -70.88374516553209, 42.880997164771671 ], [ -70.880580463917354, 42.894433081854167 ], [ -70.877376739473235, 42.907055012769611 ], [ -70.862046573658787, 42.936875112244159 ], [ -70.858554199495998, 42.95580297473753 ], [ -70.857692570502536, 42.959754950751268 ], [ -70.856883926201547, 42.963634926056997 ], [ -70.850058759915314, 42.992282776158412 ], [ -70.827406728560163, 43.025222979272016 ], [ -70.815409605080205, 43.045403023752421 ], [ -70.81061916767807, 43.053685040126283 ], [ -70.805265669431293, 43.05800315151243 ], [ -70.793617843895703, 43.065342435266651 ], [ -70.783817651390379, 43.074044631740861 ], [ -70.77714351405308, 43.078873787574551 ], [ -70.77164440758321, 43.089989789525639 ], [ -70.766892698745593, 43.092621917339471 ], [ -70.750334283079354, 43.103139344543813 ], [ -70.748167916036763, 43.10467739143089 ], [ -70.747260197488899, 43.105623405477871 ], [ -70.727224163294238, 43.120966812595029 ], [ -70.715317894028985, 43.133256998095838 ], [ -70.666640984076693, 43.156505240650972 ], [ -70.660668736567615, 43.159408392920248 ], [ -70.654765636081478, 43.165447485772653 ], [ -70.646971860142173, 43.187175356463939 ], [ -70.644822216032452, 43.202179155411478 ], [ -70.637020744977264, 43.229415922196246 ], [ -70.621149435294555, 43.256945985202833 ], [ -70.615210208079901, 43.31124742031237 ], [ -70.608925403897572, 43.323077470997291 ], [ -70.563691136349007, 43.404097933412821 ], [ -70.552465062578904, 43.424118060090109 ], [ -70.525321146309821, 43.460758544250147 ], [ -70.503195092086642, 43.477299134315771 ], [ -70.499434315939482, 43.481122221494182 ], [ -70.494294010595183, 43.486897330565192 ], [ -70.488856039866349, 43.499024364829012 ], [ -70.484783403593909, 43.503529422438675 ], [ -70.453467561242022, 43.52741803617193 ], [ -70.41399096948382, 43.565489647513409 ], [ -70.386290536318782, 43.591849094870348 ], [ -70.377459603893371, 43.599978245479562 ], [ -70.351802693783128, 43.625583643503084 ], [ -70.347822117555111, 43.629599704954728 ], [ -70.343657590703017, 43.633387778740271 ], [ -70.336031318457245, 43.640773904285041 ], [ -70.332850555621889, 43.645854911848524 ], [ -70.333095386079862, 43.664725477954676 ], [ -70.328138514321253, 43.67663839993638 ], [ -70.317248060820333, 43.699637300728945 ], [ -70.308806354373544, 43.71229434104864 ], [ -70.305724789188531, 43.721579250868274 ], [ -70.302933731225167, 43.722647334669702 ], [ -70.295352271435206, 43.725043574202466 ], [ -70.292012392427111, 43.726081680361744 ], [ -70.277887137431918, 43.730171137774455 ], [ -70.247792151781852, 43.734391234410893 ], [ -70.238365334779772, 43.734002659228288 ], [ -70.231866423630265, 43.73154300140542 ], [ -70.222486348513783, 43.745462110769125 ], [ -70.21163474883349, 43.757025357062361 ], [ -70.194948099652635, 43.782244608828208 ], [ -70.19080769979189, 43.784784746448722 ], [ -70.166822561718632, 43.807933385333726 ], [ -70.164870369741706, 43.80982543786034 ], [ -70.154689140916801, 43.812552853392695 ], [ -70.148603552276612, 43.816525056867974 ], [ -70.121590931385285, 43.843395791331744 ], [ -70.105645270747715, 43.867795069723954 ], [ -70.087609402741535, 43.87647775781965 ], [ -70.082011996042482, 43.884786865352481 ], [ -70.077657489738698, 43.898416812824131 ], [ -70.074538815642995, 43.901136910254628 ], [ -70.020361103478194, 43.917980214015088 ], [ -70.014152577865644, 43.919968480591415 ], [ -69.99433276366311, 43.931566133053032 ], [ -69.979956675883429, 43.941980387282683 ], [ -69.965558788169758, 43.955148572518524 ], [ -69.957002686609357, 43.967019589361556 ], [ -69.948430375453924, 43.97558066777075 ], [ -69.939424759325632, 43.992509568460441 ], [ -69.925094745315107, 44.006181641300032 ], [ -69.919383523622571, 44.023019316497681 ], [ -69.917194486209567, 44.026849268952844 ], [ -69.898769983919934, 44.043008342717584 ], [ -69.884738106191307, 44.064248143717712 ], [ -69.873894444196139, 44.094589588240403 ], [ -69.870195076048731, 44.100159538664236 ], [ -69.84946002278582, 44.12514944810242 ], [ -69.840438474635619, 44.148560048430383 ], [ -69.836466690856767, 44.164737703145754 ], [ -69.834880865159306, 44.177989368622455 ], [ -69.833835559787815, 44.184829203116884 ], [ -69.827575459056177, 44.195888079170437 ], [ -69.826157559164855, 44.208765750893875 ], [ -69.825715087108108, 44.217108523268848 ], [ -69.825227421583193, 44.220495440586276 ], [ -69.819644740710359, 44.223776522102632 ], [ -69.809204428756757, 44.237677451820424 ], [ -69.807697249408676, 44.275975822920216 ], [ -69.808476767603764, 44.303853454090543 ], [ -69.809659794878257, 44.311376320037617 ], [ -69.81310676843664, 44.316384136429726 ], [ -69.816051197338226, 44.325306919374334 ], [ -69.815151925260167, 44.331036878996464 ], [ -69.808959808699811, 44.337926017269069 ], [ -69.795964467110721, 44.346067397547486 ], [ -69.784914272962297, 44.352567736456074 ], [ -69.773942055530213, 44.374135923267012 ], [ -69.766369685353482, 44.383330125320214 ], [ -69.750515613359511, 44.407103532634338 ], [ -69.73955842113665, 44.425577888734786 ], [ -69.717680383883149, 44.452857653680212 ], [ -69.713051946721023, 44.462508766412022 ], [ -69.707745318758199, 44.480560811763823 ], [ -69.702112081294899, 44.516189577486465 ], [ -69.697612620206328, 44.524928636868559 ], [ -69.684481326820801, 44.540294983233537 ], [ -69.681096123251436, 44.545059060056438 ], [ -69.679357208331368, 44.549683063537373 ], [ -69.670604191360866, 44.566239194420135 ], [ -69.667782597666942, 44.568810282980849 ], [ -69.66133158228314, 44.571499538924456 ], [ -69.641129418503496, 44.572419469559797 ], [ -69.63479234518168, 44.574540733098232 ], [ -69.628669493987303, 44.580678921840729 ], [ -69.616414909445396, 44.594019285769924 ], [ -69.610825756947918, 44.598902472763001 ], [ -69.599592962053705, 44.601759963682483 ], [ -69.593736579532745, 44.60189024263758 ], [ -69.587505371600784, 44.602031540119484 ], [ -69.580779541097598, 44.604053832019154 ], [ -69.542834619719798, 44.628004298912131 ], [ -69.52871307005357, 44.64007380462715 ], [ -69.51897530127539, 44.649146144898779 ], [ -69.491950582210578, 44.667514283996297 ], [ -69.477525088189324, 44.684406867026013 ], [ -69.469800671900629, 44.693543177198769 ], [ -69.447634614285107, 44.716287121357865 ], [ -69.413392684829745, 44.767157191069536 ], [ -69.406842877527254, 44.782840211544411 ], [ -69.404693079092667, 44.784838294290473 ], [ -69.397762268909091, 44.796927430360896 ], [ -69.392508169784961, 44.801051654979027 ], [ -69.368136914086989, 44.806130038817251 ], [ -69.339756058398407, 44.815191604674318 ], [ -69.311222962157359, 44.83456399130592 ], [ -69.301500153619514, 44.836224578114937 ], [ -69.293058480669103, 44.833886168467998 ], [ -69.288757652544433, 44.831941484989095 ], [ -69.260634929028043, 44.818587566256362 ], [ -69.232938842994599, 44.809148563526215 ], [ -69.221843218976616, 44.802840414867823 ], [ -69.207751036507133, 44.793990507426457 ], [ -69.200354753625561, 44.791783035546686 ], [ -69.157842776741646, 44.787745930876028 ], [ -69.131916544268222, 44.788197665876474 ], [ -69.106234078923734, 44.784037465664092 ], [ -69.036691506892524, 44.77438335565671 ], [ -69.010186140442528, 44.772467217101095 ], [ -69.000891161740981, 44.769155899506245 ], [ -68.984595904792243, 44.760578011691408 ], [ -68.976231552196211, 44.758701560674794 ], [ -68.959540257741253, 44.761586588956391 ], [ -68.942765209738553, 44.766558602138083 ], [ -68.935811229591891, 44.766521047867343 ], [ -68.916749096747807, 44.763111317059433 ], [ -68.907820331355794, 44.763390891984642 ], [ -68.879150531072085, 44.768275696565574 ], [ -68.861018685752725, 44.773803810254165 ], [ -68.839570842385783, 44.778047164654446 ], [ -68.817855199670191, 44.781081561896244 ], [ -68.813715863964546, 44.783103807070695 ], [ -68.809987434884675, 44.78721999250714 ], [ -68.803560208473641, 44.798797241113327 ], [ -68.801677697707319, 44.803371294832345 ], [ -68.79494524991344, 44.808986653924549 ], [ -68.78809102037593, 44.816284993220826 ], [ -68.781328411383868, 44.819016398929001 ], [ -68.777143042870335, 44.819470670290428 ], [ -68.771965311471078, 44.820123004988147 ], [ -68.757768530131983, 44.82476287723658 ], [ -68.747270414815318, 44.829341476215674 ], [ -68.721927300848378, 44.858269490364123 ], [ -68.716941626635133, 44.861221736674565 ], [ -68.709942345332678, 44.865853073607894 ], [ -68.703812747668096, 44.873193308735345 ], [ -68.699710715765633, 44.878304461801498 ], [ -68.69291113766505, 44.892983599766339 ], [ -68.69218002612439, 44.898412543261536 ], [ -68.693567475964755, 44.902474385483615 ], [ -68.707080073681965, 44.928612108700754 ], [ -68.709545848594473, 44.958007433134654 ], [ -68.7088906036021, 44.962390391787594 ], [ -68.704257114266653, 44.995471057706432 ], [ -68.701216217930536, 45.013380527102242 ], [ -68.689049356811523, 45.052670418520101 ], [ -68.697096056187775, 45.097215854263951 ], [ -68.695755368105637, 45.120545851662065 ], [ -68.705890934226275, 45.152464695531677 ], [ -68.696262409966309, 45.174193317720686 ], [ -68.695103811136917, 45.184751904158965 ], [ -68.692116209939016, 45.192571744771037 ], [ -68.677333067480703, 45.214334770598036 ], [ -68.678752536985527, 45.236092678364528 ], [ -68.682079241982009, 45.259891721367453 ], [ -68.68100478681842, 45.268562734203016 ], [ -68.667641404835152, 45.288502574861141 ], [ -68.659180376325153, 45.313321041998897 ], [ -68.609710032277874, 45.352974646379757 ], [ -68.607553082869771, 45.358956790973835 ], [ -68.606838281980146, 45.375836776239659 ], [ -68.606411652817314, 45.386475765564569 ], [ -68.593011978241577, 45.41881772852998 ], [ -68.590321881750071, 45.429376912892415 ], [ -68.592672988143619, 45.455625623729908 ], [ -68.556668848055281, 45.507008482510493 ], [ -68.554550282416869, 45.517308529331459 ], [ -68.553402123712161, 45.549550198918027 ], [ -68.545986197971018, 45.570119560590172 ], [ -68.543532762624039, 45.589810504922859 ], [ -68.541794318941427, 45.593510603530909 ], [ -68.532310617211834, 45.600950313900647 ], [ -68.512307136648317, 45.617072805879772 ], [ -68.501277241867783, 45.64171240242738 ], [ -68.50026564311564, 45.669891087850317 ], [ -68.490669150761718, 45.687263689306143 ], [ -68.487498473028097, 45.698242811634941 ], [ -68.477550744341997, 45.709931525120915 ], [ -68.471507592574383, 45.73570368371999 ], [ -68.457914813867006, 45.749735684680971 ], [ -68.451390009305584, 45.753985225232739 ], [ -68.445246972616943, 45.777595558011562 ], [ -68.429803173913896, 45.795296767514614 ], [ -68.429621409207272, 45.805756685010223 ], [ -68.435670527892839, 45.839725831547263 ], [ -68.428795889670383, 45.852005320964309 ], [ -68.413260610985091, 45.872937486733392 ], [ -68.413009145038927, 45.876218476814017 ], [ -68.405722055454518, 45.890218979917698 ], [ -68.386717873432389, 45.905120503227643 ], [ -68.364353383521049, 45.929582221926609 ], [ -68.33070581736412, 45.954803928844463 ], [ -68.302034644201399, 45.969836314650337 ], [ -68.282871797248973, 45.989738793448296 ], [ -68.280433455197965, 45.996528928880139 ], [ -68.290239296238099, 46.018546762858556 ], [ -68.287396282453997, 46.025057930156116 ], [ -68.260640533021643, 46.04342807639101 ], [ -68.24462523894114, 46.051181366020273 ], [ -68.207809369293003, 46.087472965476891 ], [ -68.187288466940942, 46.098266561769492 ], [ -68.162828127940728, 46.110436490535612 ], [ -68.120330963224376, 46.120931036113369 ], [ -68.076920059411606, 46.139122610620696 ], [ -68.060052281163749, 46.145045032169861 ], [ -68.053823692289825, 46.145235588333875 ], [ -68.016479736980756, 46.140669034621361 ], [ -68.001775699631693, 46.140739378026467 ], [ -68.001729890004327, 46.142021363348036 ], [ -67.945301051380994, 46.142476375423051 ], [ -67.910038922699997, 46.137428653419377 ], [ -67.85249097422529, 46.138433954228319 ], [ -67.842345812107126, 46.140105874726423 ], [ -67.825143619270179, 46.143242437432555 ], [ -67.8219117454681, 46.14348673832572 ], [ -67.809304363288817, 46.139643004128708 ], [ -67.798328298286748, 46.134578144729119 ], [ -67.790515610022609, 46.132660928981487 ], [ -67.783670325471874, 46.133240575713543 ] ], [ [ -71.140657622817102, 42.207537755871861 ], [ -71.148536599440263, 42.195716601872647 ], [ -71.171542174377791, 42.170794116417078 ], [ -71.186255816838838, 42.156320802232983 ], [ -71.200999741707264, 42.147977464640931 ], [ -71.212304346774886, 42.140153212688247 ], [ -71.223044030775753, 42.131253980083912 ], [ -71.227400022179225, 42.125763893424541 ], [ -71.231327990106109, 42.117623827978584 ], [ -71.23151065764209, 42.110028853401339 ], [ -71.22286736594684, 42.088625152893933 ], [ -71.22279803151001, 42.079908189045668 ], [ -71.243262955750978, 42.043431824155661 ], [ -71.250188314072986, 42.032467696053097 ], [ -71.254971287697416, 42.027726601691619 ], [ -71.255726134813997, 42.027207586006156 ], [ -71.256984876626831, 42.0262535602821 ], [ -71.28381249023289, 42.007760023947284 ], [ -71.291004932711388, 41.999465906307087 ], [ -71.293339244920702, 41.992629915000741 ], [ -71.296068829844316, 41.969868056520525 ], [ -71.304672783516097, 41.955482989879656 ], [ -71.31982939692476, 41.934127835200762 ], [ -71.342750635123792, 41.907939544436175 ], [ -71.349417440352923, 41.904716421652601 ], [ -71.372851445039359, 41.897566955757782 ], [ -71.377259622042388, 41.893999886990485 ], [ -71.379487145072176, 41.890433866953906 ], [ -71.377931099667649, 41.882292969861396 ], [ -71.378510912245758, 41.879572979580807 ], [ -71.379166754400714, 41.878012977883685 ], [ -71.379723622846726, 41.876753975887254 ], [ -71.381416272057862, 41.87429395838091 ], [ -71.382187138626946, 41.873911944245478 ], [ -71.388076198865221, 41.8731908180715 ], [ -71.398740496901681, 41.87162259235263 ], [ -71.404445362308834, 41.863982527578926 ], [ -71.406977691604908, 41.855513540202985 ], [ -71.411005913614318, 41.850523490755386 ], [ -71.411569470095529, 41.839713566104948 ], [ -71.41426999321844, 41.837580522844931 ], [ -71.414994864588152, 41.836981511445309 ], [ -71.415673744608569, 41.836432500670433 ], [ -71.416825520286423, 41.834860487577039 ], [ -71.417962259228645, 41.83208348456084 ], [ -71.419494834341862, 41.826071498777338 ], [ -71.420890476525628, 41.821452504723027 ], [ -71.41726788128463, 41.817351619441197 ], [ -71.41497919603141, 41.816573677368304 ], [ -71.406999243318893, 41.812323892423741 ], [ -71.40339138848168, 41.800659069760698 ], [ -71.403864225783764, 41.797912081479076 ], [ -71.410111176412542, 41.794157969881098 ], [ -71.417357993429434, 41.790602833967938 ], [ -71.420752395092904, 41.787489782028103 ], [ -71.424932603642361, 41.78185173251893 ], [ -71.426748181328676, 41.776900731062192 ], [ -71.433223700079225, 41.759627722030466 ], [ -71.443223924347095, 41.748042576660964 ], [ -71.444795608670475, 41.744559552426637 ], [ -71.44696217571466, 41.739836518825918 ], [ -71.455657719699047, 41.731322349939212 ], [ -71.459304137032049, 41.728743276074617 ], [ -71.467595803213968, 41.722437110129711 ], [ -71.471608069419787, 41.716063041269948 ], [ -71.472927824530444, 41.713831019124413 ], [ -71.474293533328051, 41.710123000940335 ], [ -71.473957398894925, 41.703421031035631 ], [ -71.475749986974733, 41.697462010908438 ], [ -71.478472992575803, 41.674811026310969 ], [ -71.481928384787977, 41.670202964728098 ], [ -71.490273131387553, 41.666860790229194 ], [ -71.499732811746185, 41.666562581319241 ], [ -71.514531566220185, 41.665662254046872 ], [ -71.532404744370851, 41.659741874626931 ], [ -71.547332526880297, 41.65923054529528 ], [ -71.559476722664655, 41.658329279718359 ], [ -71.584298899018748, 41.649928753383406 ], [ -71.606146791207152, 41.650840273957733 ], [ -71.612737818359577, 41.649478132934888 ], [ -71.624835880110652, 41.64065888374256 ], [ -71.652625309460404, 41.613619310537167 ], [ -71.657850326357618, 41.603258206115356 ], [ -71.659527980967979, 41.598715173461478 ], [ -71.660947267637567, 41.57803916165453 ], [ -71.663166680858112, 41.566767122128439 ], [ -71.673547854921111, 41.550435900053458 ], [ -71.684593718739649, 41.524667663854665 ], [ -71.692511350969497, 41.512426486849336 ], [ -71.697484561182392, 41.507417373351061 ], [ -71.716768606457549, 41.494705957596281 ], [ -71.747000025489072, 41.478516345904872 ], [ -71.765620027638192, 41.465607033521103 ], [ -71.78298212165339, 41.450095768563756 ], [ -71.786933532622925, 41.44839469853207 ], [ -71.7969949819459, 41.442473528606008 ], [ -71.812128596897026, 41.431525283476674 ], [ -71.84337416026635, 41.420553719165483 ], [ -71.850599098880735, 41.416624595867901 ], [ -71.856121214165981, 41.411375512529595 ], [ -71.863527954845267, 41.402021411655276 ], [ -71.873712373176616, 41.393206253063923 ], [ -71.913531842899715, 41.375138555816029 ], [ -71.930787652011787, 41.372296232396806 ], [ -71.956380665462945, 41.375217724908943 ], [ -71.975734238020152, 41.371063370986448 ], [ -71.9919453591788, 41.372002057782964 ], [ -71.999474426438752, 41.370231921806976 ], [ -72.015852140624773, 41.363101672710712 ], [ -72.049294830581985, 41.358905122247478 ], [ -72.054276238253152, 41.359816036752896 ], [ -72.067893671776318, 41.363985802624107 ], [ -72.078214410668195, 41.364244632368013 ], [ -72.101946511104259, 41.363947244532987 ], [ -72.106425003573847, 41.365244171212865 ], [ -72.109003713870308, 41.366072129211503 ], [ -72.110651529309109, 41.366617102467345 ], [ -72.116044924747882, 41.368353015481418 ], [ -72.124946922968562, 41.370965873632571 ], [ -72.133398894238042, 41.370297739055921 ], [ -72.152012614945605, 41.367631441385825 ], [ -72.162280400343917, 41.36747827869381 ], [ -72.193053995140218, 41.375290815988862 ], [ -72.201048950741225, 41.370270678925898 ], [ -72.210248669375417, 41.36075950622952 ], [ -72.229045154953909, 41.344494148472236 ], [ -72.241776537312134, 41.33631490760154 ], [ -72.247909636367311, 41.326647763473446 ], [ -72.258208547096103, 41.322840685353221 ], [ -72.289432498002895, 41.316107557345788 ], [ -72.326432256638341, 41.323188465874914 ], [ -72.339568031441814, 41.320746420886472 ], [ -72.34770028027431, 41.319285394460117 ], [ -72.356092512379988, 41.317908368460401 ], [ -72.359182211484935, 41.316207357087329 ], [ -72.363529777685983, 41.313052340417372 ], [ -72.370945056200711, 41.30847831501984 ], [ -72.380153204617656, 41.305113289079465 ], [ -72.39772157344683, 41.296706243960173 ], [ -72.417731805106797, 41.290938204730821 ], [ -72.444447597378641, 41.291808160717544 ], [ -72.465441869673938, 41.290847129681801 ], [ -72.486475208509887, 41.294547094442535 ], [ -72.502487859162969, 41.289748028709468 ], [ -72.528532524815091, 41.288206487529841 ], [ -72.554149275784283, 41.288174955760994 ], [ -72.564806367606025, 41.289902734637948 ], [ -72.570337898414067, 41.290764620430089 ], [ -72.583397782321015, 41.291356352358378 ], [ -72.602592111228788, 41.287944959017096 ], [ -72.661890194115657, 41.289553757188074 ], [ -72.667458748606023, 41.290293646494966 ], [ -72.682449596051256, 41.295344356765575 ], [ -72.704122879006761, 41.29686193050545 ], [ -72.74178692150808, 41.297323190928822 ], [ -72.751528160798699, 41.297105019517787 ], [ -72.778663995901482, 41.293587786763347 ], [ -72.784233574957895, 41.294201743894916 ], [ -72.791076054034164, 41.294556690088875 ], [ -72.820111749806046, 41.288399445118657 ], [ -72.861520561625525, 41.282364118262137 ], [ -72.868249067662106, 41.282460068304637 ], [ -72.877197465815598, 41.285687006059504 ], [ -72.896293145950892, 41.289562868016993 ], [ -72.901365850924066, 41.293620833592151 ], [ -72.902105840904809, 41.296111830024735 ], [ -72.906256623893015, 41.300723802056041 ], [ -72.909575409666004, 41.302013777658104 ], [ -72.913939090717619, 41.301528744158126 ] ], [ [ -70.98652797399653, 42.542800217659213 ], [ -70.983324821716124, 42.546084247988041 ], [ -70.98275982012504, 42.543448304054436 ], [ -70.985147228039764, 42.541850268049444 ], [ -70.988091487498821, 42.539641227671382 ] ], [ [ -77.434716949505145, 37.549466620451433 ], [ -77.428681782600961, 37.545384660849095 ], [ -77.426781733297418, 37.540097741849934 ], [ -77.42830777988388, 37.537286797179711 ], [ -77.429955834734258, 37.530355923368262 ], [ -77.424858701645391, 37.511686217302952 ], [ -77.428948842501327, 37.497706464369188 ], [ -77.432862983264883, 37.489866581505787 ], [ -77.42852090162296, 37.471129794952759 ], [ -77.425530826513167, 37.465128855200099 ], [ -77.425331840170642, 37.457838945341486 ], [ -77.42324180015612, 37.448997045323367 ], [ -77.425911898719534, 37.442779136547571 ], [ -77.431566094152302, 37.43463826727892 ], [ -77.423210946760008, 37.39442072685393 ], [ -77.419312847216105, 37.386897799977319 ], [ -77.410805604514579, 37.37989784152505 ], [ -77.406395481687639, 37.375148876747829 ], [ -77.403618413003969, 37.368888939355116 ], [ -77.404724485387376, 37.354428124686642 ], [ -77.405892550947513, 37.343289269303511 ], [ -77.399468390422854, 37.329190408126884 ], [ -77.400475452220974, 37.317559557778047 ], [ -77.398476404086352, 37.312439609773207 ], [ -77.391442216686627, 37.301190708474728 ], [ -77.389122182541286, 37.286888871411406 ], [ -77.3893362106583, 37.278668973978213 ], [ -77.399300569733242, 37.259401270793909 ], [ -77.392937357802879, 37.247941347350555 ], [ -77.395317279220791, 37.239267361845336 ], [ -77.395325100769995, 37.2291083623265 ], [ -77.394982064318413, 37.227659360556949 ], [ -77.390037753503265, 37.219079335853294 ], [ -77.384025507337498, 37.216199306348187 ], [ -77.376838219180428, 37.213182272174038 ], [ -77.370222939370962, 37.20969924240547 ], [ -77.364996663299593, 37.204099222499195 ], [ -77.351354659861087, 37.175519197196252 ], [ -77.350850604985169, 37.173581197883955 ], [ -77.350278461998982, 37.167249204352622 ], [ -77.351934357002818, 37.158922221163202 ], [ -77.353246314683972, 37.154390231281035 ], [ -77.35597718054855, 37.142480254182743 ], [ -77.359257655563368, 37.108949300270488 ], [ -77.356777163403493, 37.088102320046261 ], [ -77.357456055735753, 37.081159328873127 ], [ -77.379307388794786, 37.053849365696145 ], [ -77.389088490043193, 37.037980371746443 ], [ -77.391636375598083, 37.025781373047003 ], [ -77.392207893055044, 36.995797364976433 ], [ -77.392116271219138, 36.943750231675025 ], [ -77.404131955741278, 36.877271037271505 ], [ -77.413531136520234, 36.861748976910974 ], [ -77.438769882004422, 36.842419870055807 ], [ -77.452824218902208, 36.826119792226649 ], [ -77.460247165016, 36.800049698722567 ], [ -77.46313092474378, 36.773388612889178 ], [ -77.469364083591898, 36.767578579601604 ], [ -77.480198463184919, 36.765366544905049 ], [ -77.494427959387536, 36.762329498577394 ], [ -77.506871286186808, 36.755028427957313 ], [ -77.511953365424333, 36.749340396522065 ], [ -77.526319432750626, 36.727139537589288 ], [ -77.540181639641347, 36.715122576582772 ], [ -77.544576695072593, 36.710938591072264 ], [ -77.549428683806013, 36.70254264021343 ], [ -77.557508643298462, 36.687878724766271 ], [ -77.556638371040307, 36.674874844914292 ], [ -77.555928132741485, 36.663368951192702 ], [ -77.561977721877327, 36.633371175674974 ], [ -77.563717429585111, 36.61591831594901 ], [ -77.564670699599475, 36.577050647313655 ], [ -77.576343336166516, 36.545190825850113 ], [ -77.584376260896136, 36.532880860618718 ], [ -77.586139033338554, 36.519929952897712 ], [ -77.597055874765005, 36.501650003784398 ], [ -77.601198668580295, 36.488161106306066 ], [ -77.611345439445358, 36.468901214131371 ], [ -77.616762243958533, 36.45572129960852 ], [ -77.625383156076481, 36.445280321884987 ], [ -77.628176094272035, 36.44053134259611 ], [ -77.630082904949532, 36.430922421989287 ], [ -77.632050751354043, 36.422907483818619 ], [ -77.644273407449575, 36.40043158197296 ], [ -77.651368206101353, 36.38788163006376 ], [ -77.663018097281054, 36.377062607369936 ], [ -77.682503665009193, 36.35046264110661 ], [ -77.701134319936273, 36.329512617117246 ], [ -77.704117192609957, 36.323641635103321 ], [ -77.711287532475339, 36.296931789582786 ], [ -77.722425849736908, 36.269121896773342 ], [ -77.729017360852666, 36.247432003876646 ], [ -77.753218693002978, 36.2143430481105 ], [ -77.766662268028426, 36.179733336306974 ], [ -77.782126877701046, 36.159213474740419 ], [ -77.786941068177128, 36.143154614150227 ], [ -77.790512204713835, 36.134780682239779 ], [ -77.803047668438197, 36.114223832964967 ], [ -77.809357889890578, 36.082493121509131 ], [ -77.821877319381997, 36.063862252499035 ], [ -77.829820583147139, 36.051304342788562 ], [ -77.83791483789183, 36.032685492495027 ], [ -77.857645480266143, 36.020634526006859 ], [ -77.867723784120869, 36.006314623955639 ], [ -77.876796115690681, 35.981953933218179 ], [ -77.894130788791813, 35.94313648591276 ], [ -77.905598204407468, 35.92889567663854 ], [ -77.915707562109745, 35.91977579248281 ], [ -77.933599223095968, 35.894034164018002 ], [ -77.948293746165447, 35.880614349071415 ], [ -77.968023474209701, 35.854094752494071 ], [ -77.976393799907214, 35.837146026717534 ], [ -77.984954123043948, 35.823547246491906 ], [ -77.987327247836561, 35.807369524337034 ], [ -77.990226370631831, 35.79812668143186 ], [ -77.999740728146065, 35.784015916675045 ], [ -78.002616850911181, 35.776600035161479 ], [ -78.004050942760017, 35.763238264354591 ], [ -78.004654005366859, 35.747773522241879 ], [ -78.008942163670042, 35.739163613432851 ], [ -78.016175430745037, 35.729848702650095 ], [ -78.035180133073155, 35.717606785568172 ], [ -78.046052536900689, 35.702397943471617 ], [ -78.059962054811237, 35.684099135892005 ], [ -78.090007175177888, 35.661279344024038 ], [ -78.09370831416112, 35.655859406623229 ], [ -78.100704578653023, 35.639658608518396 ], [ -78.110057929694136, 35.631288697708882 ], [ -78.127446586191141, 35.607607983318822 ], [ -78.133809829036608, 35.592478182160079 ], [ -78.1399050604644, 35.58314830108224 ], [ -78.158781773171668, 35.571360429942345 ], [ -78.221352140944575, 35.549079639628083 ], [ -78.262010558468617, 35.532981811035519 ], [ -78.289416359694386, 35.519690999817392 ], [ -78.297107596215724, 35.515919064794623 ], [ -78.31810426743138, 35.505676266224654 ], [ -78.32114036765077, 35.504188298537933 ], [ -78.355237433313093, 35.487301629525291 ], [ -78.374708059206327, 35.472790894764792 ], [ -78.389257556323756, 35.457692167635805 ], [ -78.391188623067606, 35.456113196337924 ], [ -78.402099008996998, 35.446271374617787 ], [ -78.421386679181822, 35.439122509081535 ], [ -78.439186340385675, 35.426511738658732 ], [ -78.473565612342966, 35.41323298674471 ], [ -78.488062188206143, 35.404333149000394 ], [ -78.518001444853795, 35.389921335277648 ], [ -78.540150475001369, 35.376821464045406 ], [ -78.545964787683801, 35.370554541180439 ], [ -78.552213218985173, 35.356760735345809 ], [ -78.561246882139599, 35.335814023626583 ], [ -78.570563496353245, 35.321593195124443 ], [ -78.576567864019978, 35.31519225921825 ], [ -78.591255714407268, 35.30440033412696 ], [ -78.59867915491084, 35.298934368869432 ], [ -78.608483862293184, 35.285090507664492 ], [ -78.628825522806451, 35.250174858556214 ], [ -78.630435578429996, 35.24740988806446 ], [ -78.644596078711302, 35.224396118757355 ], [ -78.67610644049995, 35.197212236666957 ], [ -78.754616656120348, 35.123085426251059 ], [ -78.766784868033255, 35.111416450127876 ], [ -78.781602102518391, 35.091064553070439 ], [ -78.79019223857135, 35.07680564213144 ], [ -78.795296263965355, 35.059463802127986 ], [ -78.800820372368037, 35.050705854047266 ], [ -78.803582406614041, 35.042923921060741 ], [ -78.809106470486626, 35.025235080556691 ], [ -78.815514627343475, 35.016206126632753 ], [ -78.824723861279338, 35.002259204271589 ], [ -78.842684458035592, 34.98479616495429 ], [ -78.856500940408253, 34.976605071941002 ], [ -78.862178141193752, 34.973435029095157 ], [ -78.876307644122051, 34.969864890386482 ], [ -78.883014885453562, 34.96700382878857 ], [ -78.908855849670019, 34.945694612655743 ], [ -78.916837152760763, 34.940655529047135 ], [ -78.923017385520737, 34.938415456243881 ], [ -78.939390013540489, 34.930565260820764 ], [ -78.943831204673387, 34.922634217407364 ], [ -78.95444364080717, 34.912273086001782 ], [ -78.958639842409042, 34.901203039834066 ], [ -78.966659344532303, 34.854274960496561 ], [ -78.974944749586697, 34.838054823479588 ], [ -78.977042847000519, 34.835444786082924 ], [ -78.978782919522374, 34.835143754196885 ], [ -78.978393910098958, 34.833732761708994 ], [ -78.982514102155406, 34.828822685884738 ], [ -78.987419388253869, 34.811763590502288 ], [ -78.99459979475489, 34.791373437906017 ], [ -78.995949907660417, 34.780852403141623 ], [ -78.997430066037055, 34.763053358754398 ], [ -78.997560129704112, 34.718223596989588 ], [ -78.998628169305377, 34.694362761269915 ], [ -79.005914391315542, 34.669993890985396 ], [ -79.013429612064471, 34.646355027419787 ], [ -79.017434732750345, 34.6398240518308 ], [ -79.023034902452707, 34.635323049596622 ], [ -79.041521467765662, 34.626693992053738 ], [ -79.05216479607023, 34.623023947908436 ], [ -79.059421020242183, 34.62127291188721 ], [ -79.074062483219677, 34.613124871387519 ], [ -79.097973242053683, 34.60490376499483 ], [ -79.103154413884255, 34.60088275674994 ], [ -79.106083513762101, 34.597789757488911 ], [ -79.117123884850187, 34.589503736021989 ], [ -79.143621754644229, 34.581035603492367 ], [ -79.186309235671288, 34.55709444229214 ], [ -79.199134684955141, 34.551314381535825 ], [ -79.256647735730667, 34.532973068413717 ], [ -79.276637567663229, 34.523112020927165 ], [ -79.307270874430586, 34.502363980725384 ], [ -79.30811791108124, 34.501692980186512 ], [ -79.315488267506836, 34.496881909743195 ], [ -79.324841679159391, 34.494093827172541 ], [ -79.33010694977078, 34.490503754486383 ], [ -79.342710710077142, 34.475878501587601 ], [ -79.358046712435282, 34.453424131021592 ], [ -79.362923003843179, 34.447576029457352 ], [ -79.3728184625962, 34.442662913743945 ], [ -79.383713970147284, 34.436993782456518 ], [ -79.404176917641806, 34.426282533647417 ], [ -79.420740774470644, 34.412091257443755 ], [ -79.446490886123811, 34.401890983275671 ], [ -79.473409193308129, 34.38164156463727 ], [ -79.489583928513809, 34.371929344276587 ], [ -79.504156622586081, 34.360271042926719 ], [ -79.522010338762513, 34.351889576935498 ], [ -79.533897850577446, 34.342608216203239 ], [ -79.539727076293119, 34.339560059821842 ], [ -79.558525740718409, 34.333749610357586 ], [ -79.590913886838294, 34.318787768526015 ], [ -79.613078611974501, 34.310807223282538 ], [ -79.6316482131014, 34.301178726385366 ], [ -79.634143292123099, 34.299800658472819 ], [ -79.651439824018098, 34.290496191093517 ], [ -79.680127640545038, 34.282645519350112 ], [ -79.703718280539405, 34.268815866467754 ], [ -79.719778698020306, 34.26523350154666 ], [ -79.739043199919223, 34.26462311411165 ], [ -79.746726388526682, 34.261685922873404 ], [ -79.75830751531889, 34.252930711509684 ], [ -79.76587563948965, 34.247418724800895 ], [ -79.768622697062199, 34.246094752681415 ], [ -79.789054077415329, 34.238522890220892 ], [ -79.799224388826758, 34.229604101436848 ], [ -79.807853642282168, 34.222616261224651 ], [ -79.828965177031691, 34.209524530449073 ], [ -79.839417609823172, 34.196214845711644 ], [ -79.8439037356749, 34.193056909578246 ], [ -79.857515100548966, 34.184313076933726 ], [ -79.862871297016383, 34.178763197844575 ], [ -79.867181584535317, 34.169058434043265 ], [ -79.872469982795536, 34.155394767975515 ], [ -79.877627364605431, 34.142444080609124 ], [ -79.880496495855525, 34.138557165647498 ], [ -79.928639215088154, 34.094635978760444 ], [ -79.947210089031543, 34.070458447338716 ], [ -79.967878692754368, 34.058266585490585 ], [ -79.985488482636057, 34.037892934469937 ], [ -79.990386737604538, 34.031007057865473 ], [ -79.993201969676747, 34.023897203368563 ], [ -79.999802498214805, 34.007917524645144 ], [ -80.007896925653398, 33.999319660858419 ], [ -80.015512225069159, 33.992479703442356 ], [ -80.035012905302011, 33.979768753557146 ], [ -80.038813056578064, 33.975938785275041 ], [ -80.046129477350078, 33.959676984221069 ], [ -80.057673939849479, 33.946940110031697 ], [ -80.070827503044839, 33.929129315700131 ], [ -80.084850034697197, 33.914069484926088 ], [ -80.093205397597586, 33.901240655008671 ], [ -80.100567817575993, 33.881983942867485 ], [ -80.103849005403305, 33.873150077881533 ], [ -80.112897365532135, 33.860359260778743 ], [ -80.122503756565706, 33.845508483895422 ], [ -80.141600450758446, 33.820850863626205 ], [ -80.157622930584338, 33.807210073072447 ], [ -80.183548016746514, 33.754053027864167 ], [ -80.209153747722041, 33.7395111912301 ], [ -80.216095972147485, 33.735083225953524 ], [ -80.227380485493796, 33.721441334540351 ], [ -80.244555193877758, 33.705061437755688 ], [ -80.251757519288361, 33.696981474994644 ], [ -80.263988154846317, 33.677511550779933 ], [ -80.274677570144803, 33.665792581609672 ], [ -80.276813730637372, 33.659712621212222 ], [ -80.277149923291276, 33.650873696384508 ], [ -80.277989069296311, 33.644522747071015 ], [ -80.281003198669879, 33.640241767648298 ], [ -80.326704482167116, 33.601202904369899 ], [ -80.33386062928291, 33.596922915684395 ], [ -80.356580975521268, 33.589231898396427 ], [ -80.393058658623261, 33.563613047893057 ], [ -80.406775919713326, 33.550975153936299 ], [ -80.429268374109753, 33.523093440040185 ], [ -80.456466698274582, 33.50175066324681 ], [ -80.466667992934021, 33.49406360470374 ], [ -80.471368361686118, 33.48544250650577 ], [ -80.478258341191705, 33.462394246983514 ], [ -80.482638175174756, 33.442923023744378 ], [ -80.494793349232879, 33.417272686260041 ], [ -80.499203614591153, 33.411981603306621 ], [ -80.512052258867726, 33.398802135686175 ], [ -80.518910967431424, 33.382581826506076 ], [ -80.52911313170452, 33.354840411890486 ], [ -80.540680186041925, 33.32868308044727 ], [ -80.54779158222135, 33.31847094673968 ], [ -80.55440601411928, 33.307014839705708 ], [ -80.558145508565389, 33.293751779179232 ], [ -80.569163312274341, 33.271099694144517 ], [ -80.583759185702178, 33.237832017527843 ], [ -80.596439368616743, 33.221051437359336 ], [ -80.60110859800028, 33.2045228539371 ], [ -80.605403719687246, 33.194921085693785 ], [ -80.61953409473756, 33.164602783669395 ], [ -80.625378324505775, 33.147101179898343 ], [ -80.639668535767711, 33.126563572122677 ], [ -80.646427933047434, 33.09731320200742 ], [ -80.649885015381074, 33.090164334755549 ], [ -80.652593080296569, 33.084515437915364 ], [ -80.668569517593994, 33.047204099336511 ], [ -80.669271623533291, 33.039804253846583 ], [ -80.665944878813519, 33.024766630467454 ], [ -80.666350014119374, 33.01559582867047 ], [ -80.677916972720325, 32.963138637198504 ], [ -80.687583591280926, 32.933758812362747 ], [ -80.689826666422434, 32.930149944353083 ], [ -80.695411813554841, 32.923078189403448 ], [ -80.699852105648972, 32.910310706891202 ], [ -80.712182570174093, 32.890581449665113 ], [ -80.71662288354571, 32.878020968584444 ], [ -80.747340259389759, 32.828232930813385 ], [ -80.752146453690543, 32.822362141434517 ], [ -80.76792499379583, 32.807962553191778 ], [ -80.773479364863974, 32.796015017284674 ], [ -80.779949621591129, 32.788485261336156 ], [ -80.825322883993692, 32.75350514408867 ], [ -80.829709944282243, 32.752376124838356 ], [ -80.827962965616422, 32.751014216493388 ], [ -80.848516117090725, 32.730239961294984 ], [ -80.870680256250765, 32.704015001574703 ], [ -80.87868330630954, 32.693418446116389 ], [ -80.88045331547282, 32.688669673204146 ], [ -80.886122326196229, 32.649948660012804 ], [ -80.884397307763436, 32.643098048316403 ], [ -80.881117275703133, 32.633919579682804 ], [ -80.8819332783264, 32.62960979899394 ], [ -80.880811270115771, 32.629891798045101 ], [ -80.890638335762887, 32.619432234954601 ], [ -80.901380403177612, 32.601542067921216 ], [ -80.921461548201108, 32.590892414526898 ], [ -80.936613652362055, 32.573994172407659 ], [ -80.971937881098256, 32.502555799646572 ], [ -80.971198048249292, 32.478349040452862 ], [ -80.979613238911512, 32.463029732245204 ], [ -80.991133430322421, 32.450979221829463 ], [ -80.994445499821921, 32.445780447233666 ], [ -81.000258659588042, 32.431491096170291 ], [ -81.010688760154792, 32.416911714144348 ], [ -81.057870068692864, 32.320115249883926 ], [ -81.059403209537365, 32.311356693915116 ], [ -81.062547437993004, 32.298048366030351 ], [ -81.068566707496444, 32.284968014916878 ], [ -81.080706060499736, 32.272936586670838 ], [ -81.097246536077648, 32.259548223503472 ], [ -81.10637178635811, 32.253818493239372 ], [ -81.121058017911494, 32.253788437971082 ], [ -81.126529138408941, 32.25220850265989 ], [ -81.151156528274029, 32.235505202083864 ], [ -81.159442629593741, 32.229779420491944 ], [ -81.16739271729611, 32.223649649891087 ], [ -81.186374846856381, 32.200613520456798 ], [ -81.194781887853395, 32.191030852670828 ], [ -81.215663935720784, 32.166892623467938 ], [ -81.221072952938627, 32.162600729440108 ], [ -81.233952011565719, 32.155658837828007 ], [ -81.240458991506543, 32.147701053905188 ], [ -81.241328944908972, 32.142349243465986 ], [ -81.23784262334091, 32.112614422687628 ], [ -81.236407502691478, 32.101121885465908 ], [ -81.237788406112472, 32.090586260554296 ], [ -81.246036270947513, 32.07417571189081 ], [ -81.267641842244515, 32.031284141948312 ], [ -81.276941692394431, 32.012775752304201 ], [ -81.283297643485483, 32.004814993967841 ], [ -81.307436080553728, 31.981166761840502 ], [ -81.328820572901492, 31.96025943716992 ], [ -81.333665451646468, 31.954878611709489 ], [ -81.335999273782832, 31.948118857222891 ], [ -81.335786135806515, 31.943448040376243 ], [ -81.331009632066895, 31.927940681934022 ], [ -81.323554852943658, 31.90496164366462 ], [ -81.323394637105906, 31.897930920817249 ], [ -81.333997931490657, 31.868831958058593 ], [ -81.354826216664918, 31.829624256387909 ], [ -81.373700726212903, 31.794634372384657 ], [ -81.378552442056218, 31.778384926343332 ], [ -81.388210578573421, 31.729525329815246 ], [ -81.390972058753192, 31.701247940724432 ], [ -81.392504281722523, 31.662357812712205 ], [ -81.394724181122129, 31.6539669827262 ], [ -81.399645153793671, 31.644377155841749 ], [ -81.440234102345698, 31.562488775835572 ], [ -81.444094019736852, 31.549189077655821 ], [ -81.445016752148348, 31.532160492124291 ], [ -81.447358974900382, 31.477010997556494 ], [ -81.443505134654899, 31.426082620060562 ], [ -81.444329031521406, 31.415594944425376 ], [ -81.448760962973282, 31.396294518767693 ], [ -81.462608857199896, 31.345955975658953 ], [ -81.466918902822442, 31.336516229491892 ], [ -81.475708014146377, 31.3190266865704 ], [ -81.479804997714098, 31.306208039203643 ], [ -81.500038921006237, 31.2463985939964 ], [ -81.502593925339667, 31.241777657843997 ], [ -81.522561220597083, 31.221135862131383 ], [ -81.532105383437738, 31.212268941229063 ], [ -81.543984311419891, 31.183008390205668 ], [ -81.54972135405103, 31.173618516446933 ], [ -81.555008402949454, 31.165468623309039 ], [ -81.575387662941509, 31.137770965311784 ], [ -81.587983795250253, 31.117862231741153 ], [ -81.606180010845662, 31.089521610410433 ], [ -81.649469923254827, 31.045881058010124 ], [ -81.651819950563592, 31.041641118904383 ], [ -81.66600984810556, 30.991301905881283 ], [ -81.686480271704113, 30.946243278296727 ], [ -81.686220770999881, 30.878693117064174 ], [ -81.684793663504337, 30.872273209556106 ], [ -81.670372799512151, 30.841393723470986 ], [ -81.659675891575475, 30.790803447995938 ], [ -81.654594428372519, 30.765325810239105 ], [ -81.653175302764865, 30.758891902977432 ], [ -81.652030169773312, 30.750254020533763 ], [ -81.654609207274078, 30.744337061508354 ], [ -81.671882557546567, 30.711596273953273 ], [ -81.676918638871669, 30.700735355099006 ], [ -81.676551503004546, 30.692894447105047 ], [ -81.650030118361343, 30.619365455145523 ], [ -81.64476460035182, 30.601627679622936 ], [ -81.64727445182713, 30.583576858429264 ], [ -81.646107274482205, 30.575439952626908 ], [ -81.639117530696851, 30.54797828330797 ], [ -81.635065879681008, 30.51720362776577 ], [ -81.63495170019911, 30.505488751499293 ], [ -81.641527787965018, 30.490567872568167 ], [ -81.643488741699088, 30.48145995177773 ], [ -81.64911167510158, 30.459938133022099 ], [ -81.65533763068882, 30.438428308852796 ], [ -81.657442257428272, 30.408308584090669 ], [ -81.659235284982515, 30.40486960750896 ], [ -81.667299555471004, 30.398878622492223 ], [ -81.668261430959546, 30.388298716583748 ], [ -81.673159550374848, 30.382007749359854 ], [ -81.67310548625646, 30.378149785583179 ], [ -81.669115203225843, 30.371559868666029 ], [ -81.668595936136612, 30.356200015252472 ], [ -81.668931649334482, 30.337220190954856 ], [ -81.669801665212745, 30.335829198926454 ], [ -81.678651918413138, 30.327569224105684 ], [ -81.68213096849037, 30.32133026120081 ], [ -81.680841869299172, 30.318650293614709 ], [ -81.674928579892793, 30.316550348428692 ], [ -81.665300127156598, 30.314219427990718 ], [ -81.65867684004229, 30.314129468665953 ], [ -81.653916634719522, 30.314129497292086 ], [ -81.651230498275524, 30.312798526134479 ], [ -81.649490397396647, 30.311120552648308 ], [ -81.646294211261562, 30.307959602256698 ], [ -81.639289782703571, 30.299559725896707 ], [ -81.622808847983677, 30.284018979994464 ], [ -81.612135183612935, 30.269436192136141 ], [ -81.605191754896509, 30.259910332206694 ], [ -81.593381099015389, 30.248710520470514 ], [ -81.579929296117982, 30.234581734375247 ], [ -81.558618822329819, 30.201611185389343 ], [ -81.55628461063371, 30.195250261802386 ], [ -81.558008496813841, 30.184630346182377 ], [ -81.558863372581527, 30.175502423215317 ], [ -81.556154139273076, 30.168900506067775 ], [ -81.542153070313859, 30.143021866882819 ], [ -81.525871056742687, 30.126465171099035 ], [ -81.504133686965233, 30.104349593454188 ], [ -81.502134559092383, 30.102264633745648 ], [ -81.497686180701749, 30.092533771985977 ], [ -81.498555817613237, 30.071222985315757 ], [ -81.496953275937642, 30.046214255484504 ], [ -81.495228108761196, 30.04142331809561 ], [ -81.444062219214828, 29.956465663770036 ], [ -81.414900303460016, 29.92396430017104 ], [ -81.411787031869665, 29.916795414542118 ], [ -81.392941030268958, 29.853805359892011 ], [ -81.379313888919796, 29.825376842591396 ], [ -81.370646176838903, 29.808127142995286 ], [ -81.346396970089074, 29.748068151232818 ], [ -81.345435930265978, 29.748358157255804 ], [ -81.343223698137038, 29.740028288050151 ], [ -81.320027781538272, 29.683160258146128 ], [ -81.313214387039608, 29.676919406467356 ], [ -81.287388044832113, 29.662629846089988 ], [ -81.286761998454608, 29.661279869556811 ], [ -81.280322668176012, 29.657779977922392 ], [ -81.276713440518591, 29.652689078523654 ], [ -81.248360532692232, 29.600002015394335 ], [ -81.209990381338272, 29.540652878407599 ], [ -81.20530610600693, 29.532811991275363 ], [ -81.183621722019538, 29.475912991046677 ], [ -81.155536347963491, 29.404970583961276 ], [ -81.13178530241953, 29.349944805008111 ], [ -81.13108323689822, 29.340332010212535 ], [ -81.131129219074708, 29.336035101259526 ], [ -81.131373072045804, 29.301606831049522 ], [ -81.11605242584065, 29.257047795804642 ], [ -81.114816375557808, 29.253465872969482 ], [ -81.103372073914031, 29.219752663645188 ], [ -81.093422852059589, 29.192279323528798 ], [ -81.088509755058524, 29.177379683890923 ], [ -81.084625668794516, 29.171999819826272 ], [ -81.082749631526553, 29.16785292221018 ], [ -81.07572249062855, 29.155270238059394 ], [ -81.070252385878391, 29.145812477869644 ], [ -81.061325223124527, 29.131131854747107 ], [ -81.034011673447708, 29.11383036158994 ], [ -81.028785595025468, 29.106201565762831 ], [ -81.027999585962576, 29.104576608251527 ], [ -81.009132407566909, 29.065232648746175 ], [ -81.007316473423387, 29.048286076074032 ], [ -81.005347492399096, 29.03903431428505 ], [ -80.987876260634096, 29.012592955489428 ], [ -80.958746879909043, 28.96812395852173 ], [ -80.950598814990926, 28.950615363921646 ], [ -80.938986711053246, 28.925686935953262 ], [ -80.931936705274509, 28.902455481665875 ], [ -80.919844609983727, 28.871557188334524 ], [ -80.914618686827694, 28.841717898341827 ], [ -80.899458614142191, 28.7909550614993 ], [ -80.884871560186426, 28.739761329556497 ], [ -80.890280919733868, 28.720291035857887 ], [ -80.890326964930665, 28.7158821883217 ], [ -80.869604827399144, 28.666234775176491 ], [ -80.869169824777629, 28.665174809167269 ], [ -80.851530724799403, 28.621873200873704 ], [ -80.851187771583525, 28.6162053951047 ], [ -80.851340084391381, 28.585642454435991 ], [ -80.851600436003778, 28.551549636604591 ], [ -80.851600471235741, 28.548055757598171 ], [ -80.851455766786856, 28.518317786604687 ], [ -80.838706555659343, 28.501607293514052 ], [ -80.822257225611338, 28.480500063472814 ], [ -80.821525313994798, 28.465643672807992 ], [ -80.821586347869726, 28.461306852178751 ], [ -80.820396679748427, 28.411891886341518 ], [ -80.820075717926215, 28.405521147832594 ], [ -80.814414673086944, 28.390161754930862 ], [ -80.804160506306687, 28.374392358790281 ], [ -80.794456349471673, 28.359933913196425 ], [ -80.757651803932845, 28.303957082637389 ], [ -80.751578694064293, 28.297787315359436 ], [ -80.739531456746562, 28.290115558257593 ], [ -80.735014382561673, 28.285307727544495 ], [ -80.718405386121503, 28.230127802178508 ], [ -80.706663437842039, 28.188259253828107 ], [ -80.706000854282124, 28.137459111272626 ], [ -80.705984903189204, 28.131676323110945 ], [ -80.705847993290902, 28.120732723404288 ], [ -80.705924185190526, 28.098426541346523 ], [ -80.70613835683281, 28.078844260130147 ], [ -80.706138390055784, 28.074944403047702 ], [ -80.704314386458748, 28.070694549580899 ], [ -80.682792046361186, 28.056498965224026 ], [ -80.662634740278477, 28.043405353862571 ], [ -80.655836689375278, 28.033971673411568 ], [ -80.617140342496498, 27.979818570977052 ], [ -80.613920325959171, 27.969749954816738 ], [ -80.591208298295257, 27.882351348506777 ], [ -80.591238392003149, 27.863082114798232 ], [ -80.554654893555735, 27.82218771171382 ], [ -80.550893847720999, 27.817093915160424 ], [ -80.549153846673775, 27.810763170731832 ], [ -80.550619093608333, 27.767340931706524 ], [ -80.550985181915607, 27.751197585876714 ], [ -80.541540195900552, 27.706717096304999 ], [ -80.531180158212919, 27.671358262898583 ], [ -80.525580103574001, 27.660540607422686 ], [ -80.518110058124918, 27.640130256129442 ], [ -80.517790055759946, 27.639360280238233 ], [ -80.515875047459687, 27.633439467101891 ], [ -80.515539082063711, 27.624230767110486 ], [ -80.515494100805626, 27.619800911855151 ], [ -80.513464088103589, 27.614481076648936 ], [ -80.492803855004894, 27.573491325718976 ], [ -80.480268610632592, 27.558103814812451 ], [ -80.451413047233871, 27.521710993431586 ], [ -80.431171583232981, 27.47579857282151 ], [ -80.426678461449015, 27.47049776318558 ], [ -80.419926285067703, 27.465678937637666 ], [ -80.399104751632308, 27.454543344583158 ], [ -80.392901588385641, 27.447616595214232 ], [ -80.388957477323174, 27.437816947677288 ], [ -80.388263428907095, 27.415877732503525 ], [ -80.388186410935262, 27.404628134782076 ], [ -80.390979469860696, 27.398893337682651 ], [ -80.395114565363059, 27.396310426772963 ], [ -80.404719779457054, 27.386068784660957 ], [ -80.408633853627023, 27.374388197917096 ], [ -80.412051926722668, 27.369580366251743 ], [ -80.413821943194279, 27.3547188942016 ], [ -80.412837857037431, 27.317792211135103 ], [ -80.415713889043232, 27.297900916420485 ], [ -80.418002931422649, 27.292175117476358 ], [ -80.422817032324659, 27.287136290670762 ], [ -80.426022093968527, 27.280952506494536 ], [ -80.425106056692258, 27.272020825491708 ], [ -80.420451938223039, 27.264693092746459 ], [ -80.410258621984084, 27.237108074763562 ], [ -80.400584333263652, 27.222597589886497 ], [ -80.399257224211667, 27.206397150781704 ], [ -80.398715132838902, 27.190205710196302 ], [ -80.394976949877432, 27.17068738991787 ], [ -80.392076838620937, 27.162006694519693 ], [ -80.385233620772013, 27.150899090066556 ], [ -80.349053640413175, 27.129252904306568 ], [ -80.340394421519505, 27.127396984611085 ], [ -80.289993204263752, 27.126779099301938 ], [ -80.280173956579787, 27.12504217801969 ], [ -80.270926705549513, 27.120798343228529 ], [ -80.26239744293504, 27.112440650938986 ], [ -80.25981035663996, 27.108988776372485 ], [ -80.257186221119497, 27.098523146889999 ], [ -80.236761338304987, 27.053211831239793 ], [ -80.234693217058194, 27.044044166550428 ], [ -80.23112300494509, 27.027385775374409 ], [ -80.191913741363393, 26.991935279836589 ], [ -80.165798068308447, 26.956272605514094 ], [ -80.153529746099835, 26.942834103955931 ], [ -80.150675679728863, 26.934764375284839 ], [ -80.148478633000821, 26.926034662905415 ], [ -80.135768327870906, 26.895405683166349 ], [ -80.118478885416522, 26.869308555319964 ], [ -80.115549817667642, 26.860677829580755 ], [ -80.105142553839656, 26.843369386340498 ], [ -80.102014472110255, 26.839568509176477 ], [ -80.098093371850354, 26.833517700965626 ], [ -80.097269362821876, 26.825207953217454 ], [ -80.099405494803008, 26.783341213530008 ], [ -80.09940550240853, 26.778901347623112 ], [ -80.096613434999568, 26.77221055076717 ], [ -80.091341308492446, 26.759093945819206 ], [ -80.091592362500734, 26.724782102581788 ], [ -80.089899322103733, 26.718882308310036 ], [ -80.082605123453632, 26.713202503644577 ], [ -80.075867942669362, 26.70592275465744 ], [ -80.066964710309549, 26.691362257777509 ], [ -80.066620702923245, 26.689563320286407 ], [ -80.069726799588409, 26.682394572134964 ], [ -80.070061817213798, 26.675983795937015 ], [ -80.071351864703189, 26.667233102056663 ], [ -80.068421803940581, 26.650273691319672 ], [ -80.069085833653133, 26.641644992754014 ], [ -80.06728480624129, 26.623525622904221 ], [ -80.0682458416846, 26.616928853829066 ], [ -80.069268908418564, 26.587226890633836 ], [ -80.069871965636437, 26.555717990237884 ], [ -80.073808098533817, 26.537948615532144 ], [ -80.073358097415309, 26.528949928906464 ], [ -80.072992109606403, 26.511370541771488 ], [ -80.079507311316931, 26.498340010500677 ], [ -80.086198551253389, 26.479899696989978 ], [ -80.088968660481839, 26.46915109531459 ], [ -80.088663673738367, 26.461580372215746 ], [ -80.0909297679069, 26.451382749541807 ], [ -80.089456752856265, 26.442082087932491 ], [ -80.089922882550283, 26.402073554629673 ], [ -80.09319600046274, 26.394423840254397 ], [ -80.102503290818859, 26.388444074533897 ], [ -80.113589648021758, 26.378333463096471 ], [ -80.116580750100269, 26.373985627297287 ], [ -80.118205816674916, 26.368243840349844 ], [ -80.12003689064899, 26.362175065723044 ], [ -80.118357876341193, 26.351275462381079 ], [ -80.11705391485981, 26.327380335849877 ], [ -80.116389924361371, 26.318256669084789 ], [ -80.119716069411808, 26.304568176131355 ], [ -80.124950289348675, 26.286196857917943 ], [ -80.125004328352716, 26.274988268737143 ], [ -80.126301389307926, 26.268669502415541 ], [ -80.136516750174366, 26.255240011337122 ], [ -80.136425793792412, 26.231438889944496 ], [ -80.137020844166372, 26.210981647844672 ], [ -80.150220276708538, 26.196761200796452 ], [ -80.151868341591651, 26.188172522820711 ], [ -80.154690446436973, 26.177472925950525 ], [ -80.160290640382897, 26.16525239229836 ], [ -80.169301950267709, 26.14729408127608 ], [ -80.169331968686834, 26.136513482711035 ], [ -80.16866897212256, 26.12162403533717 ], [ -80.168432029664871, 26.081546526554515 ], [ -80.162656887170272, 26.057726395658232 ], [ -80.162060880369893, 26.050337668538972 ], [ -80.164426982598656, 26.032986321237555 ], [ -80.167326089481264, 26.023207694491909 ], [ -80.166822093858798, 26.010717157628907 ], [ -80.165891146597716, 25.973285523891111 ], [ -80.165525153919035, 25.965400809304594 ], [ -80.167593231394875, 25.960698986773103 ], [ -80.18354677316556, 25.948860466159122 ], [ -80.192054072835475, 25.93940083446256 ], [ -80.197600258758882, 25.936979938642139 ], [ -80.201934409325844, 25.93335108260462 ], [ -80.207351604015273, 25.926822334070632 ], [ -80.209090665329811, 25.925191397934523 ], [ -80.210723724804993, 25.923051479785215 ], [ -80.210357727026178, 25.918345648258789 ], [ -80.209212792730611, 25.883846888134435 ], [ -80.208777822184132, 25.869142416914997 ], [ -80.207999856360829, 25.848932143410991 ], [ -80.207915858983625, 25.847101209206727 ], [ -80.206282820362034, 25.84163540243825 ], [ -80.206343908473613, 25.812446455001165 ], [ -80.20645092048683, 25.809606557617965 ], [ -80.205703934245335, 25.796286036400851 ], [ -80.203933895435767, 25.788845301291801 ], [ -80.200263791975942, 25.781046575723902 ], [ -80.199843795076021, 25.774918796162329 ], [ -80.199370789689809, 25.771096933286231 ], [ -80.200423837346932, 25.76715807737283 ], [ -80.200454841260978, 25.766168113163545 ], [ -80.2002178587896, 25.757198436545654 ], [ -80.204971035764999, 25.753097592550265 ], [ -80.211532280412328, 25.74913774432456 ] ], [ [ -77.470125858570484, 37.584081202949605 ], [ -77.469522825902828, 37.589955100001248 ], [ -77.466432726172471, 37.596417974843241 ], [ -77.465768706281338, 37.597309956404033 ], [ -77.458749511064241, 37.601673847713712 ], [ -77.455041405036852, 37.605873758003881 ], [ -77.446092159907124, 37.613255588354725 ], [ -77.44419209980434, 37.620106462261269 ], [ -77.45185226206948, 37.635784232719288 ], [ -77.45256226345677, 37.643665101932292 ], [ -77.450616188837856, 37.657645854097304 ], [ -77.448099104720214, 37.670955614825985 ], [ -77.451036153151961, 37.680747462511412 ], [ -77.452539177330948, 37.685584387549717 ], [ -77.448480053485383, 37.703193067302358 ], [ -77.448442024603523, 37.718283809926078 ], [ -77.457002128239495, 37.750986287784187 ], [ -77.458810124155846, 37.757544124697972 ], [ -77.459398122597563, 37.759668071877769 ], [ -77.460245119527059, 37.762822993275535 ], [ -77.462152101416038, 37.771554773491033 ], [ -77.461748059269425, 37.777162624222903 ], [ -77.459679947365771, 37.789422292100376 ], [ -77.46028282508037, 37.811180723776992 ], [ -77.450936535563457, 37.835960028197029 ], [ -77.452515505063957, 37.845462786463671 ], [ -77.454766489609639, 37.853671581817643 ], [ -77.45346940590774, 37.86518027364724 ], [ -77.458100317274727, 37.890199638814146 ], [ -77.459496157688122, 37.919266882199629 ], [ -77.470764159354815, 37.936139490729737 ], [ -77.478249159436913, 37.945878268842485 ], [ -77.492470070451603, 37.972896622101395 ], [ -77.493385909146141, 37.994007070229451 ], [ -77.499115118266047, 38.014704513176326 ], [ -77.500244673265485, 38.049436516896051 ], [ -77.50460197945209, 38.061815198986842 ], [ -77.515878601835112, 38.083813666706824 ], [ -77.517924003221694, 38.107666996564468 ], [ -77.516962148847313, 38.119182655132853 ], [ -77.511362208846876, 38.132152228932227 ], [ -77.490992877541359, 38.200750104037816 ], [ -77.49099303532202, 38.211190802484616 ], [ -77.49929458070477, 38.238789038176968 ], [ -77.511157951261211, 38.253459746619008 ], [ -77.514080971167544, 38.260139628438949 ], [ -77.514438926252211, 38.270618403671541 ], [ -77.511280819462414, 38.280376163205183 ], [ -77.505580631567312, 38.296377766323857 ], [ -77.502338515181805, 38.306978509423409 ], [ -77.504024481807321, 38.319769247340474 ], [ -77.501773405411157, 38.326037093378382 ], [ -77.497981299971613, 38.334397885976443 ], [ -77.49200819613948, 38.340608715380149 ], [ -77.473437905957169, 38.357217233552014 ], [ -77.462687720608628, 38.375157761031737 ], [ -77.435969390759269, 38.397118068909819 ], [ -77.428111282121407, 38.413795622158347 ], [ -77.410647092006329, 38.443895771754434 ], [ -77.408732069262015, 38.450823590844024 ], [ -77.409487063735156, 38.458784408569436 ], [ -77.407397041285449, 38.465883221119697 ], [ -77.398736977119796, 38.478253845588966 ], [ -77.381486878598196, 38.498532188698825 ], [ -77.375933152621002, 38.516033586980583 ], [ -77.372095232541184, 38.521339380611643 ], [ -77.348277455358371, 38.54056154421923 ], [ -77.336810844139848, 38.566355626121954 ], [ -77.322947990184502, 38.580049072746789 ], [ -77.317119142786296, 38.591378667868327 ], [ -77.311443307300209, 38.603589238603192 ], [ -77.298610431599229, 38.617019713140095 ], [ -77.287784745127908, 38.641856857369099 ], [ -77.275058981074608, 38.663909079058065 ], [ -77.26961898715993, 38.667535925816779 ], [ -77.252071870428793, 38.670576697715816 ], [ -77.24603679326195, 38.67208364297646 ], [ -77.237102654398242, 38.675516560999469 ], [ -77.233478606132948, 38.677515509477438 ], [ -77.228404579883232, 38.683324346444834 ], [ -77.224101788870826, 38.705086699671007 ], [ -77.221347807040942, 38.710866532213871 ], [ -77.202724589675739, 38.726185119217853 ], [ -77.189968474824454, 38.740314728227318 ], [ -77.18465045317889, 38.752842401829369 ], [ -77.182704273017251, 38.773502056518382 ], [ -77.17809608182263, 38.78791382388971 ], [ -77.174830989707289, 38.79178576653846 ], [ -77.16288274183411, 38.791602800624517 ], [ -77.128741018572342, 38.797373790137733 ], [ -77.104738528091943, 38.803126752658223 ], [ -77.082589093278955, 38.800978847099323 ], [ -77.073738918451951, 38.799952887943633 ], [ -77.061791676651211, 38.795763992363668 ], [ -77.054268524538656, 38.794590032698331 ], [ -77.038735211903472, 38.793441093854454 ], [ -77.036263161951979, 38.793224104213891 ] ], [ [ -74.008841387634064, 40.865207502645866 ], [ -74.01171030153769, 40.863227516840695 ], [ -74.012137276078747, 40.858508591464009 ], [ -74.017119100525235, 40.846370757634944 ], [ -74.018836029200187, 40.838679871801986 ] ], [ [ -74.018836029200187, 40.838679871801986 ], [ -74.020048981630353, 40.834266935642141 ], [ -74.026647768477048, 40.825752029512756 ], [ -74.028615679362105, 40.815190187195867 ], [ -74.028989657058602, 40.811512244157981 ], [ -74.033849494649374, 40.804142329266263 ], [ -74.049923980641921, 40.787686478851448 ], [ -74.051861918925454, 40.785828494499484 ], [ -74.056767759710951, 40.780358545928024 ], [ -74.06033763493582, 40.774063619599019 ], [ -74.064518495354008, 40.768566675668716 ], [ -74.070057324917201, 40.765118688966766 ], [ -74.084972876625457, 40.758251685353592 ], [ -74.099948452804057, 40.756741597186483 ], [ -74.108836195342903, 40.754063572020762 ], [ -74.120814814037686, 40.746922607362876 ] ], [ [ -74.018836029200187, 40.838679871801986 ], [ -74.021619934765994, 40.833491937718129 ], [ -74.036893462795035, 40.820698041371742 ], [ -74.059384803664472, 40.811947026910595 ], [ -74.071263443682284, 40.803703074717248 ], [ -74.073025389541129, 40.802292084587926 ], [ -74.087032960050223, 40.791386156399277 ], [ -74.101833487144688, 40.775791291245731 ], [ -74.115497040727035, 40.759888434165958 ], [ -74.118281939963623, 40.754715491940907 ], [ -74.120814814037686, 40.746922607362876 ] ], [ [ -74.120814814037686, 40.746922607362876 ], [ -74.122683710190557, 40.742054692127979 ], [ -74.123637604358422, 40.734719833724668 ], [ -74.124026581379965, 40.733589853714534 ], [ -74.132639243715587, 40.724362975855648 ], [ -74.136599049042431, 40.716607102952942 ], [ -74.146974703751624, 40.711171134497135 ], [ -74.151788519758654, 40.706544191538157 ], [ -74.152719477074314, 40.705030215044744 ], [ -74.153764427883374, 40.703222243609716 ], [ -74.162667028491555, 40.689668449270471 ], [ -74.177948376935589, 40.669763733156579 ], [ -74.182739179733176, 40.664209808034798 ], [ -74.185051079530083, 40.661123852252238 ], [ -74.189201901928527, 40.655801927157981 ], [ -74.201736466890068, 40.648130984712417 ], [ -74.206008263683614, 40.641093092585123 ], [ -74.231573033558917, 40.599009733623113 ], [ -74.234601882156696, 40.593714815273778 ] ], [ [ -73.976470372606812, 40.858436819206112 ], [ -73.973899455119479, 40.858138840437753 ], [ -73.97180951648032, 40.855857891693489 ], [ -73.967834642032201, 40.854533939037246 ], [ -73.963562779663832, 40.853896976889409 ], [ -73.952180146774396, 40.851578088517819 ], [ -73.943398431881477, 40.849693176644983 ], [ -73.937493625558957, 40.84871323126373 ], [ -73.932381789310838, 40.846420303000258 ], [ -73.929551883262519, 40.846100326783009 ], [ -73.928444918350579, 40.845444345045912 ], [ -73.92712596163652, 40.845108359301314 ], [ -73.922861104520962, 40.844822391936148 ], [ -73.911600487687011, 40.84510446081724 ], [ -73.904405732944113, 40.844853512307296 ], [ -73.902673793203391, 40.845082519810376 ], [ -73.893450105357161, 40.843388609442634 ], [ -73.886233344710362, 40.840290710064885 ], [ -73.884783392330689, 40.839501733165029 ], [ -73.881060514968965, 40.837525791699164 ], [ -73.877322642933834, 40.836777829442717 ], [ -73.87383576363419, 40.836350860075044 ], [ -73.860767213461443, 40.833325999761328 ], [ -73.850925551414193, 40.830121121460138 ], [ -73.845836728240528, 40.828763179444842 ], [ -73.837338034542086, 40.828862235682834 ], [ -73.82604746675581, 40.834298218760132 ], [ -73.824864518512356, 40.836358191136135 ], [ -73.827206484342412, 40.84878295987567 ], [ -73.826138541782683, 40.853207890415312 ], [ -73.826512541785121, 40.856518830514382 ], [ -73.827756513870995, 40.860802747926151 ], [ -73.832722363413524, 40.868473581920369 ], [ -73.834271329848974, 40.874142473564518 ], [ -73.832272426990656, 40.879978385844517 ], [ -73.82603967272496, 40.883896359195504 ], [ -73.815374080422728, 40.886715380858874 ], [ -73.804739477106466, 40.886360457678428 ], [ -73.801199624668499, 40.889622424359274 ], [ -73.796118862829516, 40.900036276283991 ], [ -73.791427068792501, 40.906178199952336 ], [ -73.785552312950287, 40.9104581638341 ], [ -73.784118381869007, 40.913510119823265 ], [ -73.772261891759527, 40.924648002409427 ], [ -73.753296707780706, 40.939662862401804 ], [ -73.740609196570631, 40.959998545286972 ], [ -73.736268325015004, 40.962211516225544 ], [ -73.728372556982833, 40.966014468887956 ], [ -73.723817709796464, 40.973537352832587 ], [ -73.720605802548661, 40.974982336956892 ], [ -73.714066982816533, 40.975345348261357 ], [ -73.70501123121123, 40.974723382625484 ], [ -73.699076402006767, 40.976863364243108 ], [ -73.684359832312154, 40.986133261061589 ], [ -73.680918930566989, 40.987380252521469 ], [ -73.670482224149055, 40.987430284887665 ], [ -73.666125348884037, 40.988685280051556 ], [ -73.658870559592216, 40.995383205100453 ], [ -73.647129019798101, 41.007648093624958 ], [ -73.634434568504929, 41.018344026939154 ], [ -73.626179835286436, 41.019675047982076 ], [ -73.602910683283369, 41.027904067361256 ], [ -73.595366054669924, 41.035525028243342 ], [ -73.569053061999682, 41.044749075152147 ], [ -73.553207572063769, 41.044414161334501 ], [ -73.543174958223062, 41.047187191709085 ], [ -73.527825609229254, 41.053920222721331 ], [ -73.515802075231733, 41.056579271103516 ], [ -73.51378018182649, 41.05836026970821 ], [ -73.503015751209901, 41.06764526746263 ], [ -73.491091250877233, 41.068156348825717 ], [ -73.482333701052539, 41.071429392403488 ], [ -73.475078044566644, 41.072646439047517 ], [ -73.465457553049077, 41.076598485514054 ], [ -73.457898123560327, 41.087554469803734 ], [ -73.453503355738391, 41.089217492596568 ], [ -73.449353584278981, 41.091186511579764 ], [ -73.438093292886194, 41.100452537791341 ], [ -73.42544398669591, 41.10581160202517 ], [ -73.420432240103764, 41.106860634820741 ], [ -73.419707267318756, 41.106574642436186 ], [ -73.414595505188558, 41.106647682523828 ], [ -73.406279937838278, 41.108764734999788 ], [ -73.390579783493067, 41.113727828980181 ], [ -73.37813651413876, 41.120067889313916 ], [ -73.370591895074227, 41.120959945130217 ], [ -73.339091480207273, 41.123394188932913 ], [ -73.332568758643959, 41.121475254794454 ], [ -73.322208245731389, 41.120289348149328 ], [ -73.2999245573764, 41.128773483856264 ], [ -73.296903775675048, 41.13162649236434 ], [ -73.291952143805119, 41.1367075041506 ], [ -73.286779467641793, 41.139298532886862 ], [ -73.282637736133339, 41.141735553916646 ], [ -73.268096516574275, 41.14297167167615 ], [ -73.249931614466988, 41.149311792525303 ], [ -73.245834895199565, 41.153797815028099 ], [ -73.243356148917442, 41.160214807511942 ], [ -73.236276562385314, 41.165070863637418 ], [ -73.235162618274572, 41.165432874793758 ], [ -73.225115116202502, 41.168373977306942 ], [ -73.213068588141553, 41.166127134756032 ], [ -73.204249985427353, 41.166639237548821 ], [ -73.192043628357027, 41.171449355112628 ], [ -73.182408216488824, 41.178949424878866 ], [ -73.17891337809418, 41.179235465145453 ], [ -73.173405585629013, 41.177404542912591 ], [ -73.167660801946738, 41.175397624897499 ], [ -73.15908617531413, 41.174672733397472 ], [ -73.151922522080895, 41.175649814223476 ], [ -73.140364215858909, 41.183732902862147 ], [ -73.131476820836326, 41.193547947105415 ], [ -73.121902329423463, 41.196913041239 ], [ -73.11631766603557, 41.200888082817542 ], [ -73.109658053245411, 41.204890137093919 ], [ -73.091530997664705, 41.209856324095313 ], [ -73.082391575629131, 41.217699381967513 ], [ -73.076380022496949, 41.226519394563844 ], [ -73.069186492702912, 41.233618432815994 ], [ -73.060992944938121, 41.237093507960438 ], [ -73.05681214885864, 41.237330557009749 ], [ -73.042072804417373, 41.23420675846166 ], [ -73.036282065515934, 41.233000837857169 ], [ -73.032284271583279, 41.233618882426413 ], [ -73.016348196361974, 41.241981017622365 ], [ -73.007330746908877, 41.248290082284882 ], [ -72.988167168496659, 41.261516225341076 ], [ -72.973405333797885, 41.269264317850102 ], [ -72.968240823115039, 41.276275349495286 ], [ -72.948687332484113, 41.284301484292186 ], [ -72.937984073321033, 41.283748560692516 ], [ -72.928303783178507, 41.285224630609605 ], [ -72.925260034969909, 41.287254653347581 ], [ -72.91628088857162, 41.299491725310354 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I96\", \"DIST_MILES\": 185.000000, \"DIST_KM\": 297.720000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -83.436465655301518, 42.386015134610489 ], [ -83.429324443608166, 42.384027184425442 ], [ -83.418521122780035, 42.381326253599894 ], [ -83.372979802617778, 42.382246337985535 ], [ -83.353402236336123, 42.382738373275238 ], [ -83.333564663288598, 42.383268408944588 ], [ -83.276160010677629, 42.385114510136795 ], [ -83.24606110793745, 42.385187582457682 ], [ -83.236737726727597, 42.380857674933871 ], [ -83.233838599652032, 42.37852671678084 ], [ -83.230229456925542, 42.377626742141864 ], [ -83.217090972065392, 42.37861477762182 ], [ -83.19778024827022, 42.378675848316163 ], [ -83.190714988092921, 42.379167867968782 ], [ -83.178248559703661, 42.38294086435441 ], [ -83.17610448503514, 42.383455865523459 ], [ -83.16844421582303, 42.384996873684145 ], [ -83.158853861069716, 42.385206906587868 ], [ -83.152994637417834, 42.384718934787678 ], [ -83.147668408080946, 42.382047989626365 ], [ -83.14500618073221, 42.371123142736884 ], [ -83.138909903303428, 42.367202216532164 ], [ -83.110152657090467, 42.355498474533732 ], [ -83.102813337308717, 42.352717537421462 ], [ -83.099326164783818, 42.349929586319952 ], [ -83.096633004630803, 42.345858648954021 ], [ -83.095801955207435, 42.344615668098371 ], [ -83.090712636841374, 42.336016798022072 ], [ -83.087172429510602, 42.331187873326662 ], [ -83.084540235360166, 42.324855964774763 ], [ -83.082564097377272, 42.320709025515903 ] ], [ [ -86.206705790704348, 43.171605370905347 ], [ -86.192232059052344, 43.160317803227024 ], [ -86.146163989118691, 43.132930029131629 ], [ -86.129157075212916, 43.117793557590353 ], [ -86.112539185958425, 43.103107069229743 ], [ -86.098179479452071, 43.092468476683756 ], [ -86.080600442105421, 43.073659063087895 ], [ -86.072551170989541, 43.071858224380158 ], [ -86.053606724229923, 43.074021504561941 ], [ -86.043070412939301, 43.073121692901012 ], [ -86.026506869127658, 43.06988001660612 ], [ -85.984139549170592, 43.069872628098778 ], [ -85.957038100281096, 43.056380103921725 ], [ -85.947210609012259, 43.052733252950695 ], [ -85.890675443249776, 43.053092826976112 ], [ -85.834725869051496, 43.040783501793207 ], [ -85.818429051229231, 43.035423701250934 ], [ -85.809952606294431, 43.032124805880173 ], [ -85.799408063831365, 43.02839393027741 ], [ -85.786956510834173, 43.026540056838677 ], [ -85.779456179950941, 43.025502131683872 ], [ -85.769613566209571, 43.019143257043368 ], [ -85.763426284915496, 43.018098317356163 ], [ -85.741017378355792, 43.017793589348408 ], [ -85.719913665380759, 43.021875927848264 ], [ -85.68883020999742, 43.016661478077083 ], [ -85.680894873413848, 43.01629561398839 ], [ -85.668436538931118, 43.021139804091227 ], [ -85.640931404770271, 43.020797271862747 ], [ -85.636582170785005, 43.019206352071542 ], [ -85.631271886093032, 43.017288449780487 ], [ -85.613571071702552, 43.01466775972073 ], [ -85.607123661091862, 43.010486884962432 ], [ -85.604529345857401, 43.004558951634266 ], [ -85.604818746271874, 42.984345236761349 ], [ -85.605008594943172, 42.978817329700234 ], [ -85.603597475026035, 42.976635390784267 ], [ -85.602697407321955, 42.97554842440568 ], [ -85.590741841204519, 42.972687669419884 ], [ -85.586178571192704, 42.969708794811773 ], [ -85.577464993962508, 42.961847069691906 ], [ -85.569057439764293, 42.954328331557832 ], [ -85.566875120966728, 42.946237501842539 ], [ -85.566477952460843, 42.940889597552058 ], [ -85.565005708437937, 42.934408728981765 ], [ -85.562021477030228, 42.930498840847129 ], [ -85.536133933336856, 42.912730532858305 ], [ -85.502760961484654, 42.89015539639027 ], [ -85.488554321618835, 42.888275579881181 ], [ -85.477300820189555, 42.887111708687904 ], [ -85.46911326752155, 42.879562902112326 ], [ -85.465444072069431, 42.878040960319673 ], [ -85.42885155454789, 42.878262311100322 ], [ -85.372063197511892, 42.878533857059082 ], [ -85.370950122979508, 42.877522880864703 ], [ -85.370972152082729, 42.878533867621456 ], [ -85.363754850063401, 42.878479938179765 ], [ -85.321577978558437, 42.874330395665389 ], [ -85.317716828742888, 42.874723428076223 ], [ -85.311361638696653, 42.877405457850578 ], [ -85.307516514304837, 42.878690480116283 ], [ -85.298025124728298, 42.878892569731548 ], [ -85.283444489294808, 42.877870722300123 ], [ -85.272404060412356, 42.878980816990911 ], [ -85.24605095629515, 42.879134040396444 ], [ -85.074763329358532, 42.878653391312973 ], [ -84.97995725971883, 42.878802599049365 ], [ -84.96742867673025, 42.87504466603415 ], [ -84.958425121249931, 42.867804750685572 ], [ -84.949597700129303, 42.864794799974419 ], [ -84.93386509011431, 42.864092849871099 ], [ -84.914158229973083, 42.860003937429831 ], [ -84.90384286823506, 42.860812959874316 ], [ -84.889048286622184, 42.859874008435796 ], [ -84.885714109963246, 42.858135031118771 ], [ -84.883853053450949, 42.8585740329112 ], [ -84.876550519644354, 42.849834120049138 ], [ -84.847015777228464, 42.828342361377523 ], [ -84.840789543570665, 42.828293377966247 ], [ -84.837402366532885, 42.826584399477447 ], [ -84.739436908470935, 42.800144776884252 ], [ -84.727610393084234, 42.798694751385199 ], [ -84.701028320942584, 42.798393673075751 ], [ -84.688103754315861, 42.796592649295064 ], [ -84.676140080557971, 42.78938367748853 ], [ -84.674133962794215, 42.787979684399886 ], [ -84.671684793497491, 42.785312701595402 ], [ -84.670097524293553, 42.777664766327014 ] ], [ [ -84.668394108485728, 42.691296540859867 ], [ -84.667563057268737, 42.689416556182913 ], [ -84.652738359538731, 42.676778641094799 ], [ -84.642597879203905, 42.667752702059225 ], [ -84.637318655886446, 42.665654710425791 ], [ -84.60305334445367, 42.665566643884546 ], [ -84.589212807421163, 42.664796623464838 ], [ -84.588327772766277, 42.664715622436816 ], [ -84.546800124326921, 42.658574594161628 ], [ -84.538010805716496, 42.660336561446663 ], [ -84.53273861858014, 42.661805538287481 ], [ -84.523910305582049, 42.664315499157212 ], [ -84.512969918727052, 42.667554449705641 ], [ -84.495345328851911, 42.674844346598348 ], [ -84.482816914702411, 42.67764328210496 ], [ -84.432721155879321, 42.678204115430951 ], [ -84.383494386594919, 42.675075981600763 ], [ -84.351892190517034, 42.668193933697566 ], [ -84.332718485720932, 42.665992888187731 ], [ -84.216365911290495, 42.665805453292293 ], [ -84.208774509650553, 42.664055428380124 ], [ -84.198115893403497, 42.658985410738453 ], [ -84.183611046794752, 42.652523381624029 ], [ -84.14826223958697, 42.651073211793189 ], [ -84.114622533774451, 42.650566043901335 ], [ -84.100957738692486, 42.646704996144031 ], [ -84.060763710600057, 42.64704478805541 ], [ -84.052569267087293, 42.646174750385406 ], [ -84.02975582149287, 42.637854672460804 ], [ -84.004181054724782, 42.625743591684838 ], [ -83.992232188537457, 42.615203534539901 ], [ -83.983930773981783, 42.611231469415195 ], [ -83.955319621787297, 42.604796224277095 ], [ -83.950040363351235, 42.602301191083583 ], [ -83.934589449984401, 42.590453140702188 ], [ -83.925829989974829, 42.585242108647435 ], [ -83.913638575940254, 42.584345012501601 ], [ -83.902438194443761, 42.583471925829286 ], [ -83.888978589807962, 42.578123870639111 ], [ -83.858086629423781, 42.57821061740637 ], [ -83.840232701763199, 42.566892629599877 ], [ -83.814352460710325, 42.553072650291341 ], [ -83.807478196359085, 42.551343632084091 ], [ -83.795484816883587, 42.550870561387704 ], [ -83.78957954669076, 42.547971572168201 ], [ -83.773693834951757, 42.540502605466855 ], [ -83.762715112659251, 42.527662779795243 ], [ -83.756015853896159, 42.525693782902906 ], [ -83.752078725973263, 42.525323770307423 ], [ -83.745029462772365, 42.522203831956574 ], [ -83.719561920573824, 42.522405889181087 ], [ -83.697191462773091, 42.523202927041581 ], [ -83.691958325717636, 42.52238295591178 ], [ -83.682879026736487, 42.518893047578089 ], [ -83.670739724695295, 42.517504105085528 ], [ -83.656510390100181, 42.516524159759534 ], [ -83.628243923281516, 42.521311130877208 ], [ -83.617210613734144, 42.518836208546524 ], [ -83.557997877553234, 42.50270369453078 ], [ -83.536100331174481, 42.497885848671451 ], [ -83.514180860443375, 42.493228991421383 ], [ -83.491376330225577, 42.488155156819801 ], [ -83.475933923461696, 42.486709248727813 ], [ -83.449695229835655, 42.484340401342152 ], [ -83.445080106373936, 42.483379437310568 ], [ -83.443424061801153, 42.482933451914377 ], [ -83.43572585948553, 42.483184479795788 ], [ -83.434863837308939, 42.483413479501344 ], [ -83.433879802649031, 42.479728546306099 ], [ -83.433131776167798, 42.476925597023481 ], [ -83.432093737985099, 42.472519676030963 ], [ -83.432025732063352, 42.470821705123129 ], [ -83.432315662829069, 42.438924245605392 ], [ -83.426226472435019, 42.430096414593116 ], [ -83.4247924197402, 42.42517250196682 ], [ -83.42419736502778, 42.410683747475012 ], [ -83.424624366558078, 42.406655814083699 ], [ -83.433947598066382, 42.39262602784752 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I96  S\", \"DIST_MILES\": 1.060000, \"DIST_KM\": 1.710000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -83.438327923427252, 42.481132503998673 ], [ -83.435527844210654, 42.478862554284952 ], [ -83.433131776167798, 42.476925597023481 ] ], [ [ -83.433947598066382, 42.39262602784752 ], [ -83.433383570702588, 42.387956108593201 ], [ -83.429324443608166, 42.384027184425442 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I96 S\", \"DIST_MILES\": 0.290000, \"DIST_KM\": 0.460000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -83.443424061801153, 42.482933451914377 ], [ -83.438327923427252, 42.481132503998673 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I97\", \"DIST_MILES\": 19.080000, \"DIST_KM\": 30.710000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -76.627589253965269, 39.079761429442378 ], [ -76.629146170258906, 39.067809595060673 ], [ -76.627841011128226, 39.053287815194516 ] ], [ [ -76.627589253965269, 39.079761429442378 ], [ -76.632121282118476, 39.073947487699513 ], [ -76.644458420441836, 39.06530754116541 ], [ -76.627841011128226, 39.053287815194516 ] ], [ [ -76.627589253965269, 39.079761429442378 ], [ -76.624835267865919, 39.0867683432174 ], [ -76.627246386466368, 39.094650213679579 ], [ -76.631053582520309, 39.107662000894237 ], [ -76.643398086940806, 39.133753546664309 ], [ -76.645741337416879, 39.153677241599318 ], [ -76.644657391637054, 39.161398135074087 ], [ -76.633228327331608, 39.180928916506048 ], [ -76.631626498584069, 39.202760606582878 ] ], [ [ -76.627841011128226, 39.053287815194516 ], [ -76.616320706489589, 39.041321058533683 ], [ -76.610071420937274, 39.02019240482251 ], [ -76.600756220756779, 39.013604556656091 ], [ -76.588487995236193, 39.00872170123246 ], [ -76.585877935319004, 39.005993756744935 ], [ -76.579095538415984, 38.988481161202095 ], [ -76.576318408852714, 38.984609271069623 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I980\", \"DIST_MILES\": 1.830000, \"DIST_KM\": 2.950000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -122.260818027756784, 37.825517622242998 ], [ -122.263568854999548, 37.816638646100941 ], [ -122.266271229480679, 37.813591661786823 ], [ -122.270269320662763, 37.808126165292038 ], [ -122.27278945745752, 37.804393113988382 ], [ -122.272136428364107, 37.801489862618055 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I985\", \"DIST_MILES\": 23.760000, \"DIST_KM\": 38.250000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -83.788747743145521, 34.316061751059863 ], [ -83.788045523073862, 34.310408923813974 ], [ -83.798635552017188, 34.297362090840068 ], [ -83.800061447598111, 34.292201207123455 ], [ -83.805745477248237, 34.285151291915504 ], [ -83.818929560443536, 34.26824149127151 ], [ -83.821324569012532, 34.264792535726301 ], [ -83.821858393974438, 34.258162703359275 ], [ -83.826848439931325, 34.251613775340935 ], [ -83.836515863129137, 34.245173695515632 ], [ -83.845343284244507, 34.23580166417851 ], [ -83.853277666732779, 34.230903574914024 ], [ -83.85992299002254, 34.229243459186051 ], [ -83.86556226118303, 34.225444398841582 ], [ -83.881165011414609, 34.21548421768837 ], [ -83.914254576183922, 34.178962035799465 ], [ -83.92157992040562, 34.170172997661197 ], [ -83.92940028186068, 34.157172005592479 ], [ -83.956027542236839, 34.134439698156989 ], [ -83.959545707933046, 34.131117659629943 ], [ -83.978009573333367, 34.111990470224484 ], [ -83.993436279139971, 34.087240410930072 ], [ -83.998739522208695, 34.079321378659408 ], [ -84.010695208436019, 34.067171370432298 ], [ -84.021704862697703, 34.058851346054105 ], [ -84.030441378163118, 34.045542422042026 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I99\", \"DIST_MILES\": 53.090000, \"DIST_KM\": 85.430000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -78.185291848917018, 40.721751702646898 ], [ -78.189090845599651, 40.711410192661141 ], [ -78.213635490330631, 40.69916960811819 ], [ -78.223622692856409, 40.690243975436282 ], [ -78.229596777921316, 40.682530314494329 ], [ -78.232678755718467, 40.673951720728262 ], [ -78.235463796420149, 40.670590866854809 ], [ -78.238194846404838, 40.668042972505674 ], [ -78.254766078119104, 40.65362462789642 ], [ -78.27165816672435, 40.642486257723064 ], [ -78.314748001960979, 40.598077482075084 ], [ -78.322903530625467, 40.567774865712963 ], [ -78.326947485013847, 40.563087073878577 ], [ -78.332730343316285, 40.552665533008089 ], [ -78.346234169896249, 40.537392177096592 ], [ -78.35077301400581, 40.527779581679148 ], [ -78.362812891065417, 40.517052997115485 ], [ -78.374706636139493, 40.501043616381367 ], [ -78.383724698220647, 40.493722789701998 ], [ -78.398616875988537, 40.470194378098007 ], [ -78.403293921798962, 40.466467458396245 ], [ -78.408084962111161, 40.464957475086301 ], [ -78.417904037033182, 40.464568432533319 ], [ -78.42213107760891, 40.461688490937021 ], [ -78.421757112018881, 40.44937784122839 ], [ -78.427121185816929, 40.438568117167002 ], [ -78.42734220335187, 40.433372262795849 ], [ -78.424946208143254, 40.425731492221452 ], [ -78.424458209912771, 40.423908546510638 ], [ -78.423192216071953, 40.418651702309205 ], [ -78.432736316677733, 40.410003892628978 ], [ -78.433995357993794, 40.399773174350912 ], [ -78.435948373724386, 40.399651166609907 ], [ -78.433987417936095, 40.380272725018621 ], [ -78.430348426417041, 40.368074090795162 ], [ -78.430897485368021, 40.350267590600424 ], [ -78.432736519034805, 40.34413375291107 ], [ -78.438573620840316, 40.326525214965038 ], [ -78.44541670472924, 40.3176264244983 ], [ -78.455098865049791, 40.292255079830845 ], [ -78.459996962499645, 40.274578546741189 ], [ -78.460935026610471, 40.256985035642565 ], [ -78.461713042527293, 40.254086112234368 ], [ -78.469267270504616, 40.231347503190257 ], [ -78.481527568822884, 40.209637797204621 ], [ -78.499746974003884, 40.18562908121779 ], [ -78.516188223296481, 40.173830250061371 ], [ -78.51771428710677, 40.167909347363221 ], [ -78.512168357951978, 40.154459586584757 ], [ -78.511878420762059, 40.14701671347914 ], [ -78.521384654433632, 40.128020014891099 ], [ -78.527335847748915, 40.109691311266744 ], [ -78.529425971966887, 40.096148534971796 ], [ -78.527687090084498, 40.080500803278341 ], [ -78.518089135746123, 40.068939022688909 ], [ -78.518120245591064, 40.056099240050379 ], [ -78.517730296535788, 40.04993034554419 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"I990\", \"DIST_MILES\": 5.870000, \"DIST_KM\": 9.440000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -78.807862644917918, 42.997356347911001 ], [ -78.803994563591175, 43.001358343782194 ], [ -78.803429621937497, 43.0071333155758 ], [ -78.799454632649699, 43.017631281216886 ], [ -78.792306473499096, 43.023067292739469 ], [ -78.786675317523844, 43.025039314439418 ], [ -78.767822718539662, 43.02576841891009 ], [ -78.762863583878357, 43.027706437149277 ], [ -78.760063586679351, 43.034866415346549 ], [ -78.756324566211745, 43.0425873961631 ], [ -78.751777460486238, 43.045765405825563 ], [ -78.746742328275658, 43.047119427373808 ], [ -78.734320985516931, 43.047508495045349 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"IA4\", \"DIST_MILES\": 64.050000, \"DIST_KM\": 103.080000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -71.509918053701853, 70.805650311032068 ], [ -71.522961110539342, 70.802105402914862 ], [ -71.372011800499635, 70.812219527503089 ], [ -71.130234873347121, 70.832941467057552 ], [ -71.123577263299154, 70.823906857044392 ], [ -71.234013529718354, 70.797726395138596 ], [ -71.226204679329967, 70.786556337202882 ], [ -71.305426877062885, 70.7730041069062 ], [ -71.289350400184404, 70.7719992622131 ], [ -71.032363963679515, 70.798870854367522 ], [ -70.991394243317316, 70.800555652502325 ], [ -71.449023546105778, 70.72948270524688 ], [ -71.851458990361053, 70.670072365715555 ], [ -71.915223998566717, 70.657253627933926 ], [ -71.657518445137015, 70.667627093451813 ], [ -71.830309714234104, 70.640182646708141 ], [ -71.816317925251795, 70.639175756459608 ], [ -71.781164408337403, 70.641282740708121 ], [ -71.594951281766882, 70.659986841272826 ], [ -71.52691557657603, 70.664222318680714 ], [ -71.68084821190169, 70.63684203994417 ], [ -71.687741165333577, 70.631969855964428 ], [ -71.538301293093156, 70.643513340975559 ], [ -71.260076998437086, 70.67088006207203 ], [ -71.329626199736836, 70.647288473356937 ], [ -71.744734341298724, 70.578267302956718 ], [ -71.804408095930583, 70.564666519605296 ], [ -71.648889902705804, 70.580412795757709 ], [ -71.272059543468387, 70.621384070795116 ], [ -71.174731528672638, 70.628529417138566 ], [ -71.316284534168332, 70.605932605521815 ], [ -71.740314268519114, 70.545532359548488 ], [ -71.801576164806761, 70.535738143495962 ], [ -71.786252541183288, 70.531059554679956 ], [ -71.846298251380531, 70.516956537436897 ], [ -72.024728771694683, 70.488269989540854 ], [ -72.44485213370281, 70.428321963602912 ], [ -72.616732875260141, 70.402285998259813 ], [ -72.70720137722121, 70.384331211329311 ], [ -72.696628010623698, 70.381197012701264 ], [ -72.761831067517761, 70.371508364785001 ], [ -73.183038767627338, 70.315650730975577 ], [ -73.531873330146908, 70.272615585607738 ], [ -73.925757360486628, 70.219211319191643 ], [ -74.197250665048017, 70.181011966261408 ], [ -74.226685943424883, 70.172660762172129 ], [ -74.523640495374195, 70.128025922222008 ], [ -75.251235095308502, 70.02861809844832 ], [ -75.786502421008365, 69.962534118301775 ], [ -77.210766261317971, 69.772407542473232 ], [ -77.352024469093806, 69.754368647225832 ], [ -77.676199348431552, 69.7149536060939 ], [ -77.758848211622734, 69.704157305596169 ], [ -77.969214800956706, 69.668276658797879 ], [ -78.572932135688816, 69.590327972222994 ], [ -78.633461039158234, 69.581908136074972 ], [ -78.685003860533072, 69.566900112308772 ], [ -78.8819480380172, 69.537637202996279 ], [ -79.289594540117605, 69.481620189210133 ], [ -79.398133336569643, 69.465502257701516 ], [ -79.605335242752915, 69.436674113309522 ], [ -79.953997329888978, 69.391967718105974 ], [ -80.108933997530499, 69.372916601782578 ], [ -80.816438956107632, 69.290277491813328 ], [ -81.116665859792889, 69.25864767301502 ], [ -82.172534181984545, 69.126507655603646 ], [ -82.305868674264715, 69.11150751346868 ], [ -82.846725843885466, 69.046370702186508 ], [ -83.229447101193585, 68.995348156365111 ], [ -83.857155111566271, 68.917851755893267 ], [ -84.327586991829307, 68.861823026085574 ], [ -84.685039590390559, 68.81793863726638 ], [ -84.720033282242952, 68.815052470142248 ], [ -84.723825297740603, 68.813192929239634 ], [ -84.79363139390739, 68.804551996357915 ], [ -84.79736562658691, 68.803184813350811 ], [ -84.915818608283416, 68.788466164525005 ], [ -85.296771631820448, 68.738790656445346 ], [ -85.651478772467954, 68.691498122336952 ], [ -86.944163427199143, 68.529018210455106 ], [ -87.221907314306264, 68.490850965411909 ], [ -87.785866248231628, 68.420911047471023 ], [ -88.035821788671456, 68.386517421770961 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"IH1\", \"DIST_MILES\": 25.740000, \"DIST_KM\": 41.420000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -63.083657757913628, 60.628450896352838 ], [ -63.174001862866938, 60.588184620072738 ], [ -63.334846144073914, 60.511135535589226 ], [ -63.470318366526797, 60.447074313206777 ], [ -63.555258134079402, 60.406563042130941 ], [ -63.532366426065067, 60.409891663033399 ], [ -63.565536487882838, 60.39376116733029 ], [ -63.791367727098759, 60.288269569038484 ], [ -64.207031041559262, 60.100169248410552 ], [ -64.445434544252677, 59.99167641056934 ], [ -64.608428834767338, 59.918824451947387 ], [ -64.846684282427404, 59.809742773002043 ], [ -65.24546837921811, 59.634970305748723 ], [ -65.418622877334911, 59.558731755671658 ], [ -65.470412442224372, 59.53738998190029 ], [ -65.999240444690898, 59.308921083078822 ], [ -66.116064945206233, 59.257611002156018 ], [ -66.285674929466438, 59.181736930576577 ], [ -66.453922397135514, 59.107491130976314 ], [ -67.030147827244548, 58.858049224543059 ], [ -67.419635524346404, 58.692972256372094 ], [ -67.491047842671279, 58.663622979675658 ], [ -67.483854596320768, 58.669937399641739 ], [ -67.462490663522942, 58.682530757313877 ], [ -67.546518928935001, 58.653798069766559 ], [ -67.7199082608022, 58.582237669188515 ], [ -69.045102235521227, 58.003561426999305 ] ], [ [ -69.045102235521227, 58.003561426999305 ], [ -69.079958089897715, 57.985103066408307 ] ], [ [ -69.045102235521227, 58.003561426999305 ], [ -69.012346448902434, 58.018428493950218 ] ], [ [ -70.169443953644688, 57.518387386456482 ], [ -70.338617682040962, 57.447906360014237 ], [ -70.566368692748597, 57.34913897700168 ], [ -70.623026192440193, 57.324483877499411 ], [ -70.845397423628043, 57.227416442670915 ], [ -71.308933065511454, 57.026738559232633 ], [ -71.470638313323761, 56.957661913991757 ], [ -71.571573059377187, 56.913942930323948 ], [ -71.732127448090267, 56.845146788604751 ], [ -72.099539646750245, 56.68598286504438 ], [ -72.180620398718176, 56.650673304247817 ], [ -72.284100466619563, 56.604738944847782 ], [ -73.01444208703046, 56.282862519908825 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"IH2\", \"DIST_MILES\": 7.710000, \"DIST_KM\": 12.410000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -63.008409532068129, 60.55580128657941 ], [ -63.040209458627601, 60.542374608391839 ], [ -63.335097364581493, 60.420698858427876 ], [ -63.517977181692899, 60.342365406377105 ], [ -63.89469070123301, 60.182266284220297 ], [ -64.001407472797453, 60.136246722608057 ], [ -64.131871702120776, 60.079992539006625 ], [ -64.287820408714694, 60.012745036590879 ], [ -64.584003734723709, 59.88797873388566 ], [ -64.628991211980733, 59.869857293150055 ], [ -64.718704415583261, 59.841370943773967 ], [ -64.700835248485703, 59.852625546806905 ], [ -64.749714775905403, 59.832771690568492 ], [ -65.355467108233299, 59.584747718243889 ], [ -65.418622877334911, 59.558731755671658 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"IH201\", \"DIST_MILES\": 6.130000, \"DIST_KM\": 9.870000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -67.666486060518949, 58.587045580242304 ], [ -68.128555544599237, 58.386334113762068 ], [ -68.359328902715902, 58.288655998246135 ], [ -68.411516732802383, 58.268000346809103 ], [ -68.541518411188903, 58.213117737893931 ], [ -68.614030145042165, 58.183788658895423 ], [ -68.775092037600317, 58.116049084653085 ], [ -68.942737430500657, 58.04314879009587 ], [ -69.079958089897715, 57.985103066408307 ], [ -69.439131424917207, 57.829593794828298 ], [ -69.754198865548432, 57.695762202834437 ], [ -70.169443953644688, 57.518387386456482 ] ] ] } },\n{ \"type\": \"Feature\", \"properties\": { \"ROUTE_NUM\": \"IH3\", \"DIST_MILES\": 5.930000, \"DIST_KM\": 9.540000 }, \"geometry\": { \"type\": \"MultiLineString\", \"coordinates\": [ [ [ -70.612336324395955, 57.282478650046286 ], [ -70.76268434595687, 57.218931167233514 ], [ -71.150081362891441, 57.048016467829008 ], [ -71.354982473587611, 56.957363196142417 ], [ -71.418125956125394, 56.928242944911226 ], [ -71.47240595817739, 56.900290190048132 ], [ -71.487076003206667, 56.891093504829961 ], [ -71.576819220999766, 56.848909637308125 ], [ -71.581566923589421, 56.841377116644878 ], [ -71.465408862654812, 56.883653459808045 ] ], [ [ -67.491047842671279, 58.663622979675658 ], [ -67.666486060518949, 58.587045580242304 ] ] ] } }\n]\n}\n"
  },
  {
    "path": "bench/shapes/states.json",
    "content": "{\n\"type\": \"FeatureCollection\",\n\"features\": [\n{ \"type\": \"Feature\", \"properties\": { \"GEO_ID\": \"0400000US04\", \"STATE\": \"04\", \"NAME\": \"Arizona\", \"LSAD\": \"\", \"CENSUSAREA\": 113594.084000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -112.538593, 37.000674 ], [ -112.534545, 37.000684 ], [ -112.368946, 37.001125 ], [ -112.357690, 37.001025 ], [ -111.412784, 37.001478 ], [ -111.405869, 37.001481 ], [ -111.405517, 37.001497 ], [ -111.189888, 37.000959 ], [ -110.750690, 37.003197 ], [ -110.495259, 37.003875 ], [ -110.331050, 36.998216 ], [ -110.000677, 36.997968 ], [ -109.381226, 36.999148 ], [ -109.378039, 36.999135 ], [ -109.270097, 36.999266 ], [ -109.268213, 36.999242 ], [ -109.263390, 36.999263 ], [ -109.246917, 36.999346 ], [ -109.233848, 36.999266 ], [ -109.181196, 36.999271 ], [ -109.045223, 36.999084 ], [ -109.045244, 36.969489 ], [ -109.045272, 36.968871 ], [ -109.045407, 36.874998 ], [ -109.045433, 36.874589 ], [ -109.045973, 36.002338 ], [ -109.046011, 35.925896 ], [ -109.046054, 35.925860 ], [ -109.046055, 35.888721 ], [ -109.046024, 35.879800 ], [ -109.046295, 35.616517 ], [ -109.046296, 35.614251 ], [ -109.046509, 35.546440 ], [ -109.046481, 35.546326 ], [ -109.046082, 35.174665 ], [ -109.045851, 34.959718 ], [ -109.046156, 34.579291 ], [ -109.046182, 34.522553 ], [ -109.046182, 34.522393 ], [ -109.046627, 33.778233 ], [ -109.046870, 33.372654 ], [ -109.047045, 33.369280 ], [ -109.046909, 33.365570 ], [ -109.046827, 33.365272 ], [ -109.047237, 33.208965 ], [ -109.047116, 33.137995 ], [ -109.047117, 33.137559 ], [ -109.047013, 33.092917 ], [ -109.046905, 33.091931 ], [ -109.047453, 33.069427 ], [ -109.047480, 33.068420 ], [ -109.047117, 32.777570 ], [ -109.047117, 32.777569 ], [ -109.047638, 32.693439 ], [ -109.047645, 32.689988 ], [ -109.047653, 32.686327 ], [ -109.047653, 32.681379 ], [ -109.047926, 32.426376 ], [ -109.048286, 32.089114 ], [ -109.048296, 32.084093 ], [ -109.048731, 32.028174 ], [ -109.048599, 32.013651 ], [ -109.048590, 31.870791 ], [ -109.048769, 31.861383 ], [ -109.048763, 31.810776 ], [ -109.049195, 31.796551 ], [ -109.049813, 31.499528 ], [ -109.049843, 31.499515 ], [ -109.050044, 31.332502 ], [ -109.426931, 31.334033 ], [ -110.460172, 31.333051 ], [ -110.760997, 31.332765 ], [ -110.976828, 31.332560 ], [ -111.098097, 31.339836 ], [ -111.366635, 31.425880 ], [ -111.579530, 31.494095 ], [ -112.246102, 31.704195 ], [ -112.867074, 31.895488 ], [ -113.125961, 31.972780 ], [ -113.333794, 32.038521 ], [ -113.493196, 32.088943 ], [ -114.250775, 32.323910 ], [ -114.813613, 32.494277 ], [ -114.809393, 32.617119 ], [ -114.807390, 32.621332 ], [ -114.799302, 32.625115 ], [ -114.781872, 32.625050 ], [ -114.753111, 32.658304 ], [ -114.748000, 32.664184 ], [ -114.719633, 32.718763 ], [ -114.678632, 32.736614 ], [ -114.677091, 32.736218 ], [ -114.658840, 32.733830 ], [ -114.658260, 32.733799 ], [ -114.615585, 32.728446 ], [ -114.615733, 32.729427 ], [ -114.496827, 32.822119 ], [ -114.496284, 32.822326 ], [ -114.465715, 32.879191 ], [ -114.465715, 32.879420 ], [ -114.462890, 32.905797 ], [ -114.468605, 32.971649 ], [ -114.511343, 33.023455 ], [ -114.516912, 33.026871 ], [ -114.523578, 33.030961 ], [ -114.571653, 33.036624 ], [ -114.578287, 33.035375 ], [ -114.584765, 33.028231 ], [ -114.589778, 33.026228 ], [ -114.606282, 33.025703 ], [ -114.623870, 33.028720 ], [ -114.675104, 33.047532 ], [ -114.707819, 33.091102 ], [ -114.706175, 33.105335 ], [ -114.696829, 33.131209 ], [ -114.687074, 33.142196 ], [ -114.679359, 33.159519 ], [ -114.675360, 33.185489 ], [ -114.672088, 33.258499 ], [ -114.700103, 33.341045 ], [ -114.721233, 33.396912 ], [ -114.665278, 33.415358 ], [ -114.627125, 33.433554 ], [ -114.622918, 33.456561 ], [ -114.594534, 33.495059 ], [ -114.558898, 33.531819 ], [ -114.535664, 33.568788 ], [ -114.535965, 33.569154 ], [ -114.540300, 33.580615 ], [ -114.540617, 33.591412 ], [ -114.530348, 33.679245 ], [ -114.523959, 33.685879 ], [ -114.519113, 33.688473 ], [ -114.496489, 33.696901 ], [ -114.494197, 33.707922 ], [ -114.504340, 33.756381 ], [ -114.523365, 33.806120 ], [ -114.525539, 33.838614 ], [ -114.518434, 33.917518 ], [ -114.499883, 33.961789 ], [ -114.463610, 33.993431 ], [ -114.438266, 34.022609 ], [ -114.434949, 34.037784 ], [ -114.435429, 34.079727 ], [ -114.433380, 34.088413 ], [ -114.420499, 34.103466 ], [ -114.411681, 34.110031 ], [ -114.401352, 34.111652 ], [ -114.390565, 34.110084 ], [ -114.366521, 34.118575 ], [ -114.321618, 34.138093 ], [ -114.312592, 34.144453 ], [ -114.244191, 34.179625 ], [ -114.225861, 34.201774 ], [ -114.164476, 34.251667 ], [ -114.133264, 34.258462 ], [ -114.131489, 34.260387 ], [ -114.138282, 34.303230 ], [ -114.176909, 34.349306 ], [ -114.199482, 34.361373 ], [ -114.264317, 34.401329 ], [ -114.339627, 34.451435 ], [ -114.452547, 34.653494 ], [ -114.465607, 34.692260 ], [ -114.552682, 34.766871 ], [ -114.633051, 34.869971 ], [ -114.635176, 34.875003 ], [ -114.636725, 34.889107 ], [ -114.630877, 34.907263 ], [ -114.629015, 34.986148 ], [ -114.629190, 34.991887 ], [ -114.633013, 35.002085 ], [ -114.633544, 35.015644 ], [ -114.635469, 35.028266 ], [ -114.621956, 35.094678 ], [ -114.599120, 35.121050 ], [ -114.584300, 35.124999 ], [ -114.578524, 35.128750 ], [ -114.572747, 35.138725 ], [ -114.569569, 35.163053 ], [ -114.569238, 35.183480 ], [ -114.595931, 35.325234 ], [ -114.604314, 35.353584 ], [ -114.627137, 35.409504 ], [ -114.652005, 35.429165 ], [ -114.662125, 35.444241 ], [ -114.677643, 35.489742 ], [ -114.676733, 35.499063 ], [ -114.674981, 35.510564 ], [ -114.671147, 35.520641 ], [ -114.653806, 35.599490 ], [ -114.653406, 35.610789 ], [ -114.657506, 35.618289 ], [ -114.676707, 35.640989 ], [ -114.689407, 35.651412 ], [ -114.700308, 35.700387 ], [ -114.707710, 35.811885 ], [ -114.705611, 35.848884 ], [ -114.704211, 35.851984 ], [ -114.706130, 35.878712 ], [ -114.731296, 35.945157 ], [ -114.743576, 35.983721 ], [ -114.755618, 36.087166 ], [ -114.744857, 36.098693 ], [ -114.736165, 36.104367 ], [ -114.631716, 36.142306 ], [ -114.572031, 36.151610 ], [ -114.513256, 36.151217 ], [ -114.381446, 36.141665 ], [ -114.365835, 36.133722 ], [ -114.328777, 36.105501 ], [ -114.310857, 36.083787 ], [ -114.307235, 36.076544 ], [ -114.303614, 36.066456 ], [ -114.292663, 36.051118 ], [ -114.263146, 36.025937 ], [ -114.252651, 36.020193 ], [ -114.238799, 36.014561 ], [ -114.233289, 36.014289 ], [ -114.213690, 36.015613 ], [ -114.154130, 36.023862 ], [ -114.148774, 36.027310 ], [ -114.138202, 36.041284 ], [ -114.125796, 36.077531 ], [ -114.120193, 36.102228 ], [ -114.063021, 36.186942 ], [ -114.060302, 36.189363 ], [ -114.046838, 36.194069 ], [ -114.047106, 36.250591 ], [ -114.048515, 36.289598 ], [ -114.046403, 36.371873 ], [ -114.046488, 36.473449 ], [ -114.050562, 36.656259 ], [ -114.050578, 36.800173 ], [ -114.050583, 36.843141 ], [ -114.050600, 37.000396 ], [ -113.965907, 37.000025 ], [ -113.965907, 36.999976 ], [ -112.966471, 37.000219 ], [ -112.899366, 37.000319 ], [ -112.609787, 37.000753 ], [ -112.558974, 37.000692 ], [ -112.545094, 37.000734 ], [ -112.540368, 37.000669 ], [ -112.538593, 37.000674 ] ] ] } }\n,\n{ \"type\": \"Feature\", \"properties\": { \"GEO_ID\": \"0400000US05\", \"STATE\": \"05\", \"NAME\": \"Arkansas\", \"LSAD\": \"\", \"CENSUSAREA\": 52035.477000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -94.042964, 33.019219 ], [ -94.043036, 33.079485 ], [ -94.042870, 33.092727 ], [ -94.043007, 33.133890 ], [ -94.043077, 33.138162 ], [ -94.043185, 33.143476 ], [ -94.042875, 33.199785 ], [ -94.042892, 33.202666 ], [ -94.042876, 33.215219 ], [ -94.042730, 33.241823 ], [ -94.043004, 33.250128 ], [ -94.043050, 33.260904 ], [ -94.042990, 33.271227 ], [ -94.042990, 33.271243 ], [ -94.043067, 33.330498 ], [ -94.043067, 33.347351 ], [ -94.043067, 33.352097 ], [ -94.043128, 33.358757 ], [ -94.042869, 33.371170 ], [ -94.043053, 33.377716 ], [ -94.042887, 33.420225 ], [ -94.042988, 33.431024 ], [ -94.042988, 33.435824 ], [ -94.043188, 33.470324 ], [ -94.043279, 33.491030 ], [ -94.043009, 33.493039 ], [ -94.043375, 33.542315 ], [ -94.043428, 33.551425 ], [ -94.043450, 33.552253 ], [ -94.066846, 33.568909 ], [ -94.085243, 33.575546 ], [ -94.181805, 33.593217 ], [ -94.252656, 33.586144 ], [ -94.257801, 33.582508 ], [ -94.355945, 33.543180 ], [ -94.409329, 33.568265 ], [ -94.464336, 33.598819 ], [ -94.470963, 33.605940 ], [ -94.478366, 33.620847 ], [ -94.485875, 33.637867 ], [ -94.485577, 33.653310 ], [ -94.485528, 33.663388 ], [ -94.484520, 33.687909 ], [ -94.484616, 33.691592 ], [ -94.483840, 33.711332 ], [ -94.483874, 33.716733 ], [ -94.482870, 33.750564 ], [ -94.482862, 33.750780 ], [ -94.482777, 33.753638 ], [ -94.482682, 33.756286 ], [ -94.481842, 33.789008 ], [ -94.481543, 33.795719 ], [ -94.481361, 33.802649 ], [ -94.481355, 33.802887 ], [ -94.480574, 33.830166 ], [ -94.479954, 33.851330 ], [ -94.478994, 33.881197 ], [ -94.478842, 33.881485 ], [ -94.477387, 33.937759 ], [ -94.477318, 33.940932 ], [ -94.477038, 33.953838 ], [ -94.476957, 33.957365 ], [ -94.474895, 34.019655 ], [ -94.474896, 34.021838 ], [ -94.474896, 34.021877 ], [ -94.470292, 34.189864 ], [ -94.465847, 34.352073 ], [ -94.465425, 34.359548 ], [ -94.464176, 34.402713 ], [ -94.463816, 34.414465 ], [ -94.463671, 34.419585 ], [ -94.461149, 34.507457 ], [ -94.460058, 34.545264 ], [ -94.460052, 34.547869 ], [ -94.457500, 34.634945 ], [ -94.457530, 34.642961 ], [ -94.454576, 34.728962 ], [ -94.450233, 34.855413 ], [ -94.450140, 34.858694 ], [ -94.450065, 34.861335 ], [ -94.449630, 34.875253 ], [ -94.449058, 34.890556 ], [ -94.449086, 34.894152 ], [ -94.449253, 34.895869 ], [ -94.447889, 34.933941 ], [ -94.441232, 35.119724 ], [ -94.440754, 35.128806 ], [ -94.439550, 35.169037 ], [ -94.439509, 35.171807 ], [ -94.439056, 35.193588 ], [ -94.439084, 35.197298 ], [ -94.438470, 35.208587 ], [ -94.438247, 35.210992 ], [ -94.437774, 35.239271 ], [ -94.437578, 35.242202 ], [ -94.435812, 35.271300 ], [ -94.435706, 35.274267 ], [ -94.435316, 35.275893 ], [ -94.435280, 35.287485 ], [ -94.435170, 35.291494 ], [ -94.434115, 35.306493 ], [ -94.431815, 35.362891 ], [ -94.432685, 35.380806 ], [ -94.433742, 35.386467 ], [ -94.433915, 35.387391 ], [ -94.431215, 35.394290 ], [ -94.431789, 35.397659 ], [ -94.463318, 35.582660 ], [ -94.464097, 35.587265 ], [ -94.464457, 35.588909 ], [ -94.465272, 35.594037 ], [ -94.472647, 35.638556 ], [ -94.487585, 35.726147 ], [ -94.488210, 35.729240 ], [ -94.492932, 35.759166 ], [ -94.493362, 35.761892 ], [ -94.494549, 35.768303 ], [ -94.499045, 35.793460 ], [ -94.499647, 35.796910 ], [ -94.500526, 35.802642 ], [ -94.500764, 35.803820 ], [ -94.501162, 35.806430 ], [ -94.503011, 35.817210 ], [ -94.504438, 35.826369 ], [ -94.505642, 35.833628 ], [ -94.507631, 35.845901 ], [ -94.522658, 35.934250 ], [ -94.522658, 35.934799 ], [ -94.522634, 35.934892 ], [ -94.522910, 35.936127 ], [ -94.524344, 35.944050 ], [ -94.524640, 35.945727 ], [ -94.528162, 35.965665 ], [ -94.528305, 35.966054 ], [ -94.532071, 35.987852 ], [ -94.533646, 35.996804 ], [ -94.534852, 36.002678 ], [ -94.535724, 36.007807 ], [ -94.547715, 36.077271 ], [ -94.547871, 36.078281 ], [ -94.552184, 36.102235 ], [ -94.561165, 36.152110 ], [ -94.562803, 36.161749 ], [ -94.562828, 36.161895 ], [ -94.565655, 36.178439 ], [ -94.566588, 36.183774 ], [ -94.571253, 36.210901 ], [ -94.571806, 36.213748 ], [ -94.574395, 36.229996 ], [ -94.574880, 36.232741 ], [ -94.575071, 36.233682 ], [ -94.576003, 36.240070 ], [ -94.577899, 36.249548 ], [ -94.577883, 36.250080 ], [ -94.586200, 36.299969 ], [ -94.593397, 36.345742 ], [ -94.599723, 36.387587 ], [ -94.601984, 36.402120 ], [ -94.602623, 36.405283 ], [ -94.605408, 36.421949 ], [ -94.611609, 36.461528 ], [ -94.613830, 36.476248 ], [ -94.615311, 36.484992 ], [ -94.617919, 36.499414 ], [ -94.559290, 36.499496 ], [ -94.519478, 36.499214 ], [ -94.111473, 36.498597 ], [ -94.110673, 36.498587 ], [ -94.100252, 36.498670 ], [ -94.098588, 36.498676 ], [ -94.077089, 36.498730 ], [ -93.963920, 36.498717 ], [ -93.959190, 36.498717 ], [ -93.921840, 36.498718 ], [ -93.906128, 36.498718 ], [ -93.866758, 36.498789 ], [ -93.728022, 36.499037 ], [ -93.727552, 36.499055 ], [ -93.718893, 36.499178 ], [ -93.709956, 36.499179 ], [ -93.700171, 36.499135 ], [ -93.584282, 36.498896 ], [ -93.584281, 36.498896 ], [ -93.514512, 36.498881 ], [ -93.507408, 36.498911 ], [ -93.426989, 36.498585 ], [ -93.396079, 36.498669 ], [ -93.394718, 36.498519 ], [ -93.315337, 36.498408 ], [ -93.315324, 36.498408 ], [ -93.296117, 36.498389 ], [ -93.088988, 36.498184 ], [ -93.087635, 36.498239 ], [ -93.069512, 36.498242 ], [ -93.068455, 36.498250 ], [ -93.013742, 36.498130 ], [ -92.894336, 36.497867 ], [ -92.894001, 36.497850 ], [ -92.854049, 36.497983 ], [ -92.838876, 36.498033 ], [ -92.838621, 36.498079 ], [ -92.772341, 36.497772 ], [ -92.772333, 36.497772 ], [ -92.529145, 36.497739 ], [ -92.318415, 36.497711 ], [ -92.309424, 36.497894 ], [ -92.216412, 36.498417 ], [ -92.214143, 36.498372 ], [ -92.211449, 36.498395 ], [ -92.199396, 36.498351 ], [ -92.150295, 36.498634 ], [ -92.137741, 36.498706 ], [ -92.120415, 36.498863 ], [ -92.120306, 36.498864 ], [ -92.098356, 36.498803 ], [ -92.074934, 36.498761 ], [ -92.057178, 36.498670 ], [ -92.055789, 36.498670 ], [ -92.028847, 36.498642 ], [ -92.019375, 36.498524 ], [ -91.988751, 36.498498 ], [ -91.985802, 36.498431 ], [ -91.865995, 36.498783 ], [ -91.864385, 36.498789 ], [ -91.805981, 36.498987 ], [ -91.802040, 36.498963 ], [ -91.799500, 36.498952 ], [ -91.784713, 36.499074 ], [ -91.766111, 36.499114 ], [ -91.726663, 36.499209 ], [ -91.687615, 36.499397 ], [ -91.686026, 36.499374 ], [ -91.672343, 36.499463 ], [ -91.642590, 36.499335 ], [ -91.631439, 36.499198 ], [ -91.601317, 36.499343 ], [ -91.596213, 36.499162 ], [ -91.549163, 36.499161 ], [ -91.539359, 36.499116 ], [ -91.536870, 36.499156 ], [ -91.529774, 36.499022 ], [ -91.450005, 36.497538 ], [ -91.446284, 36.497469 ], [ -91.436502, 36.497377 ], [ -91.433298, 36.497262 ], [ -91.407261, 36.497123 ], [ -91.407137, 36.497112 ], [ -91.405141, 36.497165 ], [ -91.404915, 36.497120 ], [ -91.227398, 36.497617 ], [ -91.218645, 36.497564 ], [ -91.217360, 36.497511 ], [ -91.126529, 36.497712 ], [ -91.096277, 36.497893 ], [ -91.095880, 36.497870 ], [ -91.017974, 36.498062 ], [ -91.008558, 36.498270 ], [ -90.963063, 36.498418 ], [ -90.960648, 36.498426 ], [ -90.879220, 36.498378 ], [ -90.876867, 36.498423 ], [ -90.876567, 36.498313 ], [ -90.873775, 36.498074 ], [ -90.850434, 36.498548 ], [ -90.784398, 36.498524 ], [ -90.782454, 36.498523 ], [ -90.765672, 36.498494 ], [ -90.711226, 36.498318 ], [ -90.693005, 36.498510 ], [ -90.653246, 36.498488 ], [ -90.648494, 36.498447 ], [ -90.612554, 36.498559 ], [ -90.605450, 36.498459 ], [ -90.594300, 36.498459 ], [ -90.585342, 36.498497 ], [ -90.576180, 36.498446 ], [ -90.576112, 36.498446 ], [ -90.500160, 36.498399 ], [ -90.495027, 36.498371 ], [ -90.494575, 36.498368 ], [ -90.339892, 36.498213 ], [ -90.228943, 36.497771 ], [ -90.220732, 36.497858 ], [ -90.220702, 36.497858 ], [ -90.217323, 36.497797 ], [ -90.193943, 36.497823 ], [ -90.152481, 36.497952 ], [ -90.154409, 36.496832 ], [ -90.156369, 36.487748 ], [ -90.133993, 36.437906 ], [ -90.072897, 36.393007 ], [ -90.064514, 36.382085 ], [ -90.063980, 36.303038 ], [ -90.076301, 36.280708 ], [ -90.083731, 36.272332 ], [ -90.114922, 36.265595 ], [ -90.198735, 36.201382 ], [ -90.220425, 36.184764 ], [ -90.319168, 36.089976 ], [ -90.364430, 36.013625 ], [ -90.368718, 35.995812 ], [ -90.342616, 35.995895 ], [ -90.339434, 35.996033 ], [ -90.292376, 35.996397 ], [ -90.288947, 35.996418 ], [ -90.288800, 35.996419 ], [ -90.158812, 35.997375 ], [ -90.127331, 35.997635 ], [ -90.126350, 35.997596 ], [ -89.972563, 35.998994 ], [ -89.965327, 35.998813 ], [ -89.961075, 35.999135 ], [ -89.959893, 35.999020 ], [ -89.959377, 35.999020 ], [ -89.959375, 35.999020 ], [ -89.901183, 35.999365 ], [ -89.896508, 35.999432 ], [ -89.875586, 35.999562 ], [ -89.875085, 35.999578 ], [ -89.874590, 35.999575 ], [ -89.869010, 35.999640 ], [ -89.770255, 36.000524 ], [ -89.769973, 36.000536 ], [ -89.737648, 36.000567 ], [ -89.737564, 36.000522 ], [ -89.733095, 36.000608 ], [ -89.719970, 35.974620 ], [ -89.686924, 35.947716 ], [ -89.687939, 35.905384 ], [ -89.688141, 35.896946 ], [ -89.714934, 35.906247 ], [ -89.733610, 35.904699 ], [ -89.756036, 35.896817 ], [ -89.765689, 35.891299 ], [ -89.771726, 35.879724 ], [ -89.773564, 35.871697 ], [ -89.772467, 35.865098 ], [ -89.769413, 35.861558 ], [ -89.749424, 35.852955 ], [ -89.729517, 35.847632 ], [ -89.709261, 35.838911 ], [ -89.702883, 35.834153 ], [ -89.701045, 35.828227 ], [ -89.703875, 35.820281 ], [ -89.821216, 35.756716 ], [ -89.865631, 35.746577 ], [ -89.889023, 35.750558 ], [ -89.905538, 35.759063 ], [ -89.909996, 35.759396 ], [ -89.950278, 35.738493 ], [ -89.956254, 35.733386 ], [ -89.958882, 35.723834 ], [ -89.955753, 35.690621 ], [ -89.937383, 35.665711 ], [ -89.922749, 35.655293 ], [ -89.906147, 35.651145 ], [ -89.890510, 35.652408 ], [ -89.884932, 35.655107 ], [ -89.909797, 35.537914 ], [ -89.933572, 35.533299 ], [ -89.957347, 35.528683 ], [ -90.017312, 35.555996 ], [ -90.028620, 35.555249 ], [ -90.032938, 35.553440 ], [ -90.039744, 35.548041 ], [ -90.034976, 35.480705 ], [ -90.034014, 35.468821 ], [ -90.047680, 35.459255 ], [ -90.059068, 35.457889 ], [ -90.067798, 35.466224 ], [ -90.072154, 35.470752 ], [ -90.074420, 35.472518 ], [ -90.107723, 35.476935 ], [ -90.152386, 35.436789 ], [ -90.169002, 35.421853 ], [ -90.179265, 35.385194 ], [ -90.178341, 35.382092 ], [ -90.166246, 35.374745 ], [ -90.143633, 35.374745 ], [ -90.135510, 35.376668 ], [ -90.093589, 35.393333 ], [ -90.089612, 35.379842 ], [ -90.086691, 35.369935 ], [ -90.114893, 35.303887 ], [ -90.153394, 35.302588 ], [ -90.158913, 35.300637 ], [ -90.163812, 35.296115 ], [ -90.168871, 35.281997 ], [ -90.166594, 35.274588 ], [ -90.158865, 35.262577 ], [ -90.152094, 35.255989 ], [ -90.140394, 35.252289 ], [ -90.116493, 35.255788 ], [ -90.105093, 35.254288 ], [ -90.097947, 35.249983 ], [ -90.077410, 35.225479 ], [ -90.074262, 35.218316 ], [ -90.073354, 35.211004 ], [ -90.064612, 35.140621 ], [ -90.065392, 35.137691 ], [ -90.083420, 35.121670 ], [ -90.090610, 35.118287 ], [ -90.100593, 35.116691 ], [ -90.109393, 35.118891 ], [ -90.142794, 35.135091 ], [ -90.160058, 35.128830 ], [ -90.174594, 35.116682 ], [ -90.193859, 35.061646 ], [ -90.295596, 35.040093 ], [ -90.309877, 35.009750 ], [ -90.309297, 34.995694 ], [ -90.253969, 34.954988 ], [ -90.244476, 34.937596 ], [ -90.250095, 34.907320 ], [ -90.293918, 34.860563 ], [ -90.307384, 34.846195 ], [ -90.407964, 34.832767 ], [ -90.414864, 34.831846 ], [ -90.423879, 34.834606 ], [ -90.436431, 34.855060 ], [ -90.461451, 34.856728 ], [ -90.473961, 34.852558 ], [ -90.478131, 34.832542 ], [ -90.467289, 34.782502 ], [ -90.479799, 34.769158 ], [ -90.494811, 34.767490 ], [ -90.501325, 34.769931 ], [ -90.519831, 34.782502 ], [ -90.537345, 34.784170 ], [ -90.549855, 34.763320 ], [ -90.554859, 34.727458 ], [ -90.533175, 34.707442 ], [ -90.509823, 34.689928 ], [ -90.508989, 34.679086 ], [ -90.521499, 34.663240 ], [ -90.539013, 34.659070 ], [ -90.549855, 34.662406 ], [ -90.564033, 34.665742 ], [ -90.576543, 34.657402 ], [ -90.575786, 34.641749 ], [ -90.570133, 34.524829 ], [ -90.565809, 34.435400 ], [ -90.575336, 34.415152 ], [ -90.613944, 34.390723 ], [ -90.658542, 34.375705 ], [ -90.764143, 34.363396 ], [ -90.856367, 34.238928 ], [ -90.868775, 34.228245 ], [ -90.894744, 34.229977 ], [ -90.911480, 34.223051 ], [ -90.913212, 34.210355 ], [ -90.895898, 34.191888 ], [ -90.880894, 34.180346 ], [ -90.880317, 34.169381 ], [ -90.893013, 34.155531 ], [ -90.918405, 34.154376 ], [ -90.934564, 34.130138 ], [ -90.933116, 34.124488 ], [ -90.931969, 34.120017 ], [ -90.928793, 34.107631 ], [ -90.912057, 34.095512 ], [ -90.888396, 34.087433 ], [ -90.879163, 34.065503 ], [ -90.887413, 34.032505 ], [ -90.964708, 34.007952 ], [ -91.018890, 34.003151 ], [ -91.089119, 33.972653 ], [ -91.088164, 33.960078 ], [ -91.036821, 33.914656 ], [ -91.067511, 33.840443 ], [ -91.139869, 33.777117 ], [ -91.144682, 33.750108 ], [ -91.136118, 33.728632 ], [ -91.126805, 33.707814 ], [ -91.127900, 33.695762 ], [ -91.132831, 33.688092 ], [ -91.139953, 33.683709 ], [ -91.148170, 33.679327 ], [ -91.176110, 33.684257 ], [ -91.185971, 33.679327 ], [ -91.188710, 33.669466 ], [ -91.193093, 33.656866 ], [ -91.186519, 33.645909 ], [ -91.157484, 33.626187 ], [ -91.130445, 33.606034 ], [ -91.134043, 33.594489 ], [ -91.152148, 33.582721 ], [ -91.224121, 33.567369 ], [ -91.228287, 33.559937 ], [ -91.232295, 33.552788 ], [ -91.215671, 33.529423 ], [ -91.125109, 33.472842 ], [ -91.118495, 33.449116 ], [ -91.131885, 33.430063 ], [ -91.184427, 33.419576 ], [ -91.141216, 33.298397 ], [ -91.110561, 33.245930 ], [ -91.085984, 33.221644 ], [ -91.087589, 33.145177 ], [ -91.125656, 33.038276 ], [ -91.157662, 33.011217 ], [ -91.166073, 33.004106 ], [ -91.265018, 33.005084 ], [ -91.284398, 33.005007 ], [ -91.312016, 33.005262 ], [ -91.322506, 33.005341 ], [ -91.325037, 33.005364 ], [ -91.326396, 33.005376 ], [ -91.329767, 33.005421 ], [ -91.333011, 33.005529 ], [ -91.376016, 33.005794 ], [ -91.425466, 33.006016 ], [ -91.435782, 33.006099 ], [ -91.460370, 33.006246 ], [ -91.559494, 33.006840 ], [ -91.572326, 33.006908 ], [ -91.579639, 33.006472 ], [ -91.579802, 33.006518 ], [ -91.609001, 33.006556 ], [ -91.617615, 33.006717 ], [ -91.626670, 33.006639 ], [ -91.950001, 33.007520 ], [ -91.951958, 33.007428 ], [ -92.069105, 33.008163 ], [ -92.222825, 33.009080 ], [ -92.292664, 33.010103 ], [ -92.335893, 33.010349 ], [ -92.362865, 33.010628 ], [ -92.370290, 33.010717 ], [ -92.469762, 33.012010 ], [ -92.501383, 33.012160 ], [ -92.503776, 33.012161 ], [ -92.711289, 33.014307 ], [ -92.715884, 33.014398 ], [ -92.723553, 33.014328 ], [ -92.724743, 33.014347 ], [ -92.724994, 33.014351 ], [ -92.733197, 33.014347 ], [ -92.830798, 33.015661 ], [ -92.844073, 33.016034 ], [ -92.844286, 33.016070 ], [ -92.854167, 33.016132 ], [ -92.867510, 33.016062 ], [ -92.946553, 33.016807 ], [ -92.971137, 33.017192 ], [ -92.988708, 33.017298 ], [ -93.070686, 33.017792 ], [ -93.073167, 33.017898 ], [ -93.081428, 33.017928 ], [ -93.100981, 33.017786 ], [ -93.101443, 33.017740 ], [ -93.154351, 33.017856 ], [ -93.197402, 33.017951 ], [ -93.238607, 33.017992 ], [ -93.308181, 33.018156 ], [ -93.308398, 33.018179 ], [ -93.340353, 33.018337 ], [ -93.377134, 33.018234 ], [ -93.467042, 33.018611 ], [ -93.489506, 33.018443 ], [ -93.490520, 33.018442 ], [ -93.490893, 33.018442 ], [ -93.520971, 33.018616 ], [ -93.520994, 33.018616 ], [ -93.524916, 33.018637 ], [ -93.531499, 33.018643 ], [ -93.804930, 33.019347 ], [ -93.814553, 33.019372 ], [ -94.024475, 33.019207 ], [ -94.027983, 33.019139 ], [ -94.035839, 33.019145 ], [ -94.041444, 33.019188 ], [ -94.042964, 33.019219 ] ] ] } }\n,\n{ \"type\": \"Feature\", \"properties\": { \"GEO_ID\": \"0400000US06\", \"STATE\": \"06\", \"NAME\": \"California\", \"LSAD\": \"\", \"CENSUSAREA\": 155779.220000 }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [ [ [ [ -120.248484, 33.999329 ], [ -120.247393, 34.001911 ], [ -120.238657, 34.007592 ], [ -120.230001, 34.010136 ], [ -120.221287, 34.010367 ], [ -120.208478, 34.005655 ], [ -120.195780, 34.004284 ], [ -120.167306, 34.008219 ], [ -120.151663, 34.018126 ], [ -120.147647, 34.024831 ], [ -120.140362, 34.025974 ], [ -120.135853, 34.026087 ], [ -120.115058, 34.019866 ], [ -120.090182, 34.019806 ], [ -120.073609, 34.024477 ], [ -120.062778, 34.031161 ], [ -120.061953, 34.033976 ], [ -120.057637, 34.037340 ], [ -120.055107, 34.037729 ], [ -120.043259, 34.035806 ], [ -120.044004, 34.024820 ], [ -120.047798, 34.021227 ], [ -120.050382, 34.013331 ], [ -120.048926, 34.009898 ], [ -120.046575, 34.000002 ], [ -120.041311, 33.994507 ], [ -120.025653, 33.985553 ], [ -120.011123, 33.979894 ], [ -120.003815, 33.979547 ], [ -119.984316, 33.983948 ], [ -119.978876, 33.983081 ], [ -119.979913, 33.969623 ], [ -119.976857, 33.956693 ], [ -119.971141, 33.950401 ], [ -119.970260, 33.944359 ], [ -119.973691, 33.942481 ], [ -120.000960, 33.941554 ], [ -120.017715, 33.936366 ], [ -120.046881, 33.919597 ], [ -120.048315, 33.917625 ], [ -120.048611, 33.915775 ], [ -120.049682, 33.914563 ], [ -120.077793, 33.908886 ], [ -120.098601, 33.907853 ], [ -120.105489, 33.904280 ], [ -120.109137, 33.899129 ], [ -120.121817, 33.895712 ], [ -120.168974, 33.919090 ], [ -120.179049, 33.927994 ], [ -120.189840, 33.947703 ], [ -120.192339, 33.950266 ], [ -120.198602, 33.952211 ], [ -120.200085, 33.956904 ], [ -120.209372, 33.972376 ], [ -120.224461, 33.989059 ], [ -120.248484, 33.999329 ] ] ], [ [ [ -119.789798, 34.057260 ], [ -119.770729, 34.055051 ], [ -119.766081, 34.055370 ], [ -119.763688, 34.057155 ], [ -119.755521, 34.056716 ], [ -119.739472, 34.049299 ], [ -119.726437, 34.047908 ], [ -119.712576, 34.043265 ], [ -119.704628, 34.037681 ], [ -119.686507, 34.019805 ], [ -119.637742, 34.013178 ], [ -119.619343, 34.016468 ], [ -119.612226, 34.021256 ], [ -119.604287, 34.031561 ], [ -119.608798, 34.035245 ], [ -119.609239, 34.037350 ], [ -119.593240, 34.049625 ], [ -119.573410, 34.050110 ], [ -119.566700, 34.053452 ], [ -119.529603, 34.041155 ], [ -119.520640, 34.034262 ], [ -119.521770, 34.032247 ], [ -119.532413, 34.024949 ], [ -119.538847, 34.023988 ], [ -119.542449, 34.021082 ], [ -119.548280, 34.009819 ], [ -119.547072, 34.005469 ], [ -119.554472, 33.997820 ], [ -119.560464, 33.995530 ], [ -119.575636, 33.996009 ], [ -119.590200, 33.989712 ], [ -119.596877, 33.988611 ], [ -119.619082, 33.987228 ], [ -119.621117, 33.988990 ], [ -119.647710, 33.987786 ], [ -119.662825, 33.985889 ], [ -119.690110, 33.972225 ], [ -119.706952, 33.969178 ], [ -119.712363, 33.965422 ], [ -119.714696, 33.961439 ], [ -119.721206, 33.959583 ], [ -119.742966, 33.963877 ], [ -119.750438, 33.963759 ], [ -119.758141, 33.959212 ], [ -119.795938, 33.962929 ], [ -119.842748, 33.970340 ], [ -119.873358, 33.980375 ], [ -119.877057, 33.985757 ], [ -119.883033, 34.000802 ], [ -119.884896, 34.008814 ], [ -119.882531, 34.011674 ], [ -119.876916, 34.023527 ], [ -119.876329, 34.032087 ], [ -119.892821, 34.045529 ], [ -119.916216, 34.058351 ], [ -119.923337, 34.069361 ], [ -119.919155, 34.077280 ], [ -119.912857, 34.077508 ], [ -119.891130, 34.072856 ], [ -119.857304, 34.071298 ], [ -119.825865, 34.059794 ], [ -119.818742, 34.052997 ], [ -119.807825, 34.052127 ], [ -119.789798, 34.057260 ] ] ], [ [ [ -120.462580, 34.042627 ], [ -120.440248, 34.036918 ], [ -120.418768, 34.052093 ], [ -120.415287, 34.054960 ], [ -120.411314, 34.052869 ], [ -120.403613, 34.050442 ], [ -120.396188, 34.050187 ], [ -120.390906, 34.051994 ], [ -120.374211, 34.062658 ], [ -120.368813, 34.067780 ], [ -120.368584, 34.071214 ], [ -120.370176, 34.074907 ], [ -120.368278, 34.076465 ], [ -120.362251, 34.073056 ], [ -120.354982, 34.059256 ], [ -120.360290, 34.055820 ], [ -120.358608, 34.050235 ], [ -120.346946, 34.046576 ], [ -120.331161, 34.049097 ], [ -120.319032, 34.041979 ], [ -120.313175, 34.036576 ], [ -120.302122, 34.023574 ], [ -120.304543, 34.021171 ], [ -120.317052, 34.018837 ], [ -120.347706, 34.020114 ], [ -120.355320, 34.017914 ], [ -120.357930, 34.015029 ], [ -120.375143, 34.018775 ], [ -120.409368, 34.032198 ], [ -120.415225, 34.032245 ], [ -120.419021, 34.028949 ], [ -120.427408, 34.025425 ], [ -120.454134, 34.028081 ], [ -120.459635, 34.031537 ], [ -120.465329, 34.038448 ], [ -120.462580, 34.042627 ] ] ], [ [ [ -119.543842, 33.280329 ], [ -119.532941, 33.284728 ], [ -119.528141, 33.284929 ], [ -119.505040, 33.272829 ], [ -119.482780, 33.263973 ], [ -119.465717, 33.259239 ], [ -119.458466, 33.254661 ], [ -119.429559, 33.228167 ], [ -119.444269, 33.219190 ], [ -119.464725, 33.215432 ], [ -119.476029, 33.215520 ], [ -119.500684, 33.220569 ], [ -119.511659, 33.223027 ], [ -119.517514, 33.226737 ], [ -119.545872, 33.233406 ], [ -119.564971, 33.247440 ], [ -119.565641, 33.250029 ], [ -119.566014, 33.252639 ], [ -119.570642, 33.257729 ], [ -119.578942, 33.278628 ], [ -119.562042, 33.271129 ], [ -119.555242, 33.273429 ], [ -119.547642, 33.280328 ], [ -119.543842, 33.280329 ] ] ], [ [ [ -119.422972, 34.004368 ], [ -119.427589, 34.006445 ], [ -119.437734, 34.010000 ], [ -119.441116, 34.012426 ], [ -119.441226, 34.014075 ], [ -119.433912, 34.015975 ], [ -119.421376, 34.015012 ], [ -119.411317, 34.008005 ], [ -119.396251, 34.005918 ], [ -119.389983, 34.006099 ], [ -119.366591, 34.016785 ], [ -119.357462, 34.015919 ], [ -119.376396, 34.010551 ], [ -119.391551, 34.002505 ], [ -119.414528, 34.004994 ], [ -119.422972, 34.004368 ] ] ], [ [ [ -118.524531, 32.895488 ], [ -118.535823, 32.906280 ], [ -118.551134, 32.945155 ], [ -118.560887, 32.957891 ], [ -118.573522, 32.969183 ], [ -118.586928, 33.008281 ], [ -118.596037, 33.015357 ], [ -118.606559, 33.014690 ], [ -118.605534, 33.030999 ], [ -118.594033, 33.035951 ], [ -118.575160, 33.033961 ], [ -118.569013, 33.029151 ], [ -118.564445, 33.024914 ], [ -118.564527, 33.018637 ], [ -118.559171, 33.006291 ], [ -118.540069, 32.980933 ], [ -118.529228, 32.970921 ], [ -118.496811, 32.933847 ], [ -118.485288, 32.923545 ], [ -118.479039, 32.920363 ], [ -118.460623, 32.909510 ], [ -118.446771, 32.895424 ], [ -118.369984, 32.839273 ], [ -118.353504, 32.821962 ], [ -118.356541, 32.817311 ], [ -118.360530, 32.819921 ], [ -118.379968, 32.824545 ], [ -118.387375, 32.825327 ], [ -118.394565, 32.823978 ], [ -118.401268, 32.820338 ], [ -118.425634, 32.800595 ], [ -118.429430, 32.805429 ], [ -118.428372, 32.806872 ], [ -118.444920, 32.820593 ], [ -118.476074, 32.841754 ], [ -118.487908, 32.844590 ], [ -118.496298, 32.851572 ], [ -118.506902, 32.868503 ], [ -118.508095, 32.871321 ], [ -118.507193, 32.876264 ], [ -118.524641, 32.893175 ], [ -118.524531, 32.895488 ] ] ], [ [ [ -118.500212, 33.449592 ], [ -118.499669, 33.447879 ], [ -118.485570, 33.446213 ], [ -118.477646, 33.448392 ], [ -118.445812, 33.428907 ], [ -118.423576, 33.427258 ], [ -118.382037, 33.409883 ], [ -118.370323, 33.409285 ], [ -118.368301, 33.407110 ], [ -118.365094, 33.388374 ], [ -118.324460, 33.348782 ], [ -118.316083, 33.342928 ], [ -118.310213, 33.335795 ], [ -118.303174, 33.320264 ], [ -118.305084, 33.310323 ], [ -118.316787, 33.301137 ], [ -118.325244, 33.299075 ], [ -118.343249, 33.305234 ], [ -118.360332, 33.315330 ], [ -118.374768, 33.320065 ], [ -118.402941, 33.320901 ], [ -118.440047, 33.318638 ], [ -118.456309, 33.321820 ], [ -118.465368, 33.326056 ], [ -118.481886, 33.344123 ], [ -118.488770, 33.356649 ], [ -118.482609, 33.369914 ], [ -118.478465, 33.386320 ], [ -118.484949, 33.412131 ], [ -118.488750, 33.419826 ], [ -118.503952, 33.424234 ], [ -118.515914, 33.422417 ], [ -118.516267, 33.425075 ], [ -118.523230, 33.430733 ], [ -118.537380, 33.434608 ], [ -118.558715, 33.433419 ], [ -118.563442, 33.434381 ], [ -118.570927, 33.439351 ], [ -118.575901, 33.448261 ], [ -118.593969, 33.467198 ], [ -118.601185, 33.469853 ], [ -118.604030, 33.476540 ], [ -118.603375, 33.478098 ], [ -118.598783, 33.477939 ], [ -118.585936, 33.473819 ], [ -118.544530, 33.474119 ], [ -118.530702, 33.468071 ], [ -118.500212, 33.449592 ] ] ], [ [ [ -122.418698, 37.852717 ], [ -122.434403, 37.852434 ], [ -122.443302, 37.855448 ], [ -122.446316, 37.861046 ], [ -122.438565, 37.868367 ], [ -122.430958, 37.872242 ], [ -122.421439, 37.869969 ], [ -122.421341, 37.869946 ], [ -122.418470, 37.861764 ], [ -122.418470, 37.852721 ], [ -122.418698, 37.852717 ] ] ], [ [ [ -123.013916, 37.700355 ], [ -123.013897, 37.704478 ], [ -123.012194, 37.706749 ], [ -123.004489, 37.706262 ], [ -123.000190, 37.702937 ], [ -122.997189, 37.697909 ], [ -123.000677, 37.690203 ], [ -123.005543, 37.689392 ], [ -123.011464, 37.691907 ], [ -123.014303, 37.696205 ], [ -123.013916, 37.700355 ] ] ], [ [ [ -122.378500, 37.826505 ], [ -122.377879, 37.830648 ], [ -122.369941, 37.832137 ], [ -122.363244, 37.823951 ], [ -122.358779, 37.814278 ], [ -122.362661, 37.807577 ], [ -122.372422, 37.811301 ], [ -122.372670, 37.816510 ], [ -122.378500, 37.826505 ] ] ], [ [ [ -124.065521, 41.464739 ], [ -124.066057, 41.470258 ], [ -124.075917, 41.501757 ], [ -124.081427, 41.511228 ], [ -124.081987, 41.547761 ], [ -124.092404, 41.553615 ], [ -124.101123, 41.569192 ], [ -124.101403, 41.578524 ], [ -124.097385, 41.585251 ], [ -124.100961, 41.602499 ], [ -124.114413, 41.616768 ], [ -124.116037, 41.628849 ], [ -124.120225, 41.640354 ], [ -124.135552, 41.657307 ], [ -124.139354, 41.671652 ], [ -124.138373, 41.678881 ], [ -124.143479, 41.709284 ], [ -124.147412, 41.717955 ], [ -124.154246, 41.728801 ], [ -124.164716, 41.740126 ], [ -124.177390, 41.745756 ], [ -124.185363, 41.739351 ], [ -124.191040, 41.736079 ], [ -124.194953, 41.736778 ], [ -124.203843, 41.747035 ], [ -124.239720, 41.770800 ], [ -124.242288, 41.772034 ], [ -124.248704, 41.771459 ], [ -124.255994, 41.783014 ], [ -124.245027, 41.792300 ], [ -124.230678, 41.818681 ], [ -124.219592, 41.846432 ], [ -124.208439, 41.888192 ], [ -124.203402, 41.940964 ], [ -124.204948, 41.983441 ], [ -124.211605, 41.998460 ], [ -124.100921, 41.996956 ], [ -124.100216, 41.996842 ], [ -124.087827, 41.996891 ], [ -124.086661, 41.996869 ], [ -123.821472, 41.995473 ], [ -123.624554, 41.999837 ], [ -123.518075, 42.000436 ], [ -123.501997, 42.000527 ], [ -123.498896, 42.000474 ], [ -123.498830, 42.000525 ], [ -123.347562, 41.999108 ], [ -123.230764, 42.003845 ], [ -123.230762, 42.003845 ], [ -123.154908, 42.008036 ], [ -123.045254, 42.003049 ], [ -123.001152, 42.003000 ], [ -122.634739, 42.004858 ], [ -122.501135, 42.008460 ], [ -122.378193, 42.009518 ], [ -122.289533, 42.007764 ], [ -122.289527, 42.007764 ], [ -122.161328, 42.007637 ], [ -122.160438, 42.007637 ], [ -122.156666, 42.007384 ], [ -122.155408, 42.007429 ], [ -122.001119, 42.004017 ], [ -121.708199, 42.000815 ], [ -121.705045, 42.000766 ], [ -121.689159, 42.000584 ], [ -121.675348, 42.000351 ], [ -121.580865, 41.998668 ], [ -121.520250, 41.997983 ], [ -121.447540, 41.997169 ], [ -121.439610, 41.997080 ], [ -121.434977, 41.997022 ], [ -121.376101, 41.997026 ], [ -121.360253, 41.996680 ], [ -121.340517, 41.996220 ], [ -121.335734, 41.996518 ], [ -121.334385, 41.996655 ], [ -121.154347, 41.996352 ], [ -121.035195, 41.993323 ], [ -120.879481, 41.993781 ], [ -120.693941, 41.993676 ], [ -120.692219, 41.993677 ], [ -120.326005, 41.993122 ], [ -120.286424, 41.993058 ], [ -119.999168, 41.994540 ], [ -119.999866, 41.183974 ], [ -119.999358, 40.873101 ], [ -119.999232, 40.867454 ], [ -119.999231, 40.865899 ], [ -119.995926, 40.499901 ], [ -119.996155, 40.321838 ], [ -119.996155, 40.321250 ], [ -119.996182, 40.263532 ], [ -119.996183, 40.262461 ], [ -119.997124, 40.126363 ], [ -119.997234, 40.091591 ], [ -119.997175, 40.077245 ], [ -119.997291, 40.071803 ], [ -120.000607, 39.780779 ], [ -120.000502, 39.779956 ], [ -120.001319, 39.722420 ], [ -120.001319, 39.722416 ], [ -120.003116, 39.445113 ], [ -120.003117, 39.445045 ], [ -120.005318, 39.316479 ], [ -120.005320, 39.316350 ], [ -120.005413, 39.313848 ], [ -120.005414, 39.313345 ], [ -120.005743, 39.228664 ], [ -120.005746, 39.225210 ], [ -120.004504, 39.165599 ], [ -120.003402, 39.112687 ], [ -120.002461, 39.067489 ], [ -120.001014, 38.999574 ], [ -119.904315, 38.933324 ], [ -119.587679, 38.714734 ], [ -119.587066, 38.714345 ], [ -119.585437, 38.713212 ], [ -119.494183, 38.649852 ], [ -119.494022, 38.649734 ], [ -119.450612, 38.619964 ], [ -119.450623, 38.619965 ], [ -119.328498, 38.534648 ], [ -119.156863, 38.414743 ], [ -119.125982, 38.393170 ], [ -118.746598, 38.124926 ], [ -118.428581, 37.895613 ], [ -118.039798, 37.615273 ], [ -118.039849, 37.615245 ], [ -117.832726, 37.464929 ], [ -117.500909, 37.220282 ], [ -117.166187, 36.970862 ], [ -117.000895, 36.847694 ], [ -116.488233, 36.459097 ], [ -116.097216, 36.158346 ], [ -116.093601, 36.155805 ], [ -115.912858, 36.015359 ], [ -115.892975, 35.999967 ], [ -115.846080, 35.963596 ], [ -115.689302, 35.842003 ], [ -115.648029, 35.809629 ], [ -115.647683, 35.809358 ], [ -115.647202, 35.808995 ], [ -115.406079, 35.618613 ], [ -115.404537, 35.617605 ], [ -115.393996, 35.609344 ], [ -115.391535, 35.607271 ], [ -115.388866, 35.605171 ], [ -115.303743, 35.538207 ], [ -115.271342, 35.512660 ], [ -115.225273, 35.475907 ], [ -115.160599, 35.424313 ], [ -115.160068, 35.424129 ], [ -115.146788, 35.413662 ], [ -115.145813, 35.413182 ], [ -114.925480, 35.237054 ], [ -114.925381, 35.237039 ], [ -114.805030, 35.140284 ], [ -114.804249, 35.139689 ], [ -114.633013, 35.002085 ], [ -114.629190, 34.991887 ], [ -114.629015, 34.986148 ], [ -114.630877, 34.907263 ], [ -114.636725, 34.889107 ], [ -114.635176, 34.875003 ], [ -114.633051, 34.869971 ], [ -114.552682, 34.766871 ], [ -114.465607, 34.692260 ], [ -114.452547, 34.653494 ], [ -114.339627, 34.451435 ], [ -114.264317, 34.401329 ], [ -114.199482, 34.361373 ], [ -114.176909, 34.349306 ], [ -114.138282, 34.303230 ], [ -114.131489, 34.260387 ], [ -114.133264, 34.258462 ], [ -114.164476, 34.251667 ], [ -114.225861, 34.201774 ], [ -114.244191, 34.179625 ], [ -114.312592, 34.144453 ], [ -114.321618, 34.138093 ], [ -114.366521, 34.118575 ], [ -114.390565, 34.110084 ], [ -114.401352, 34.111652 ], [ -114.411681, 34.110031 ], [ -114.420499, 34.103466 ], [ -114.433380, 34.088413 ], [ -114.435429, 34.079727 ], [ -114.434949, 34.037784 ], [ -114.438266, 34.022609 ], [ -114.463610, 33.993431 ], [ -114.499883, 33.961789 ], [ -114.518434, 33.917518 ], [ -114.525539, 33.838614 ], [ -114.523365, 33.806120 ], [ -114.504340, 33.756381 ], [ -114.494197, 33.707922 ], [ -114.496489, 33.696901 ], [ -114.519113, 33.688473 ], [ -114.523959, 33.685879 ], [ -114.530348, 33.679245 ], [ -114.540617, 33.591412 ], [ -114.540300, 33.580615 ], [ -114.535965, 33.569154 ], [ -114.535664, 33.568788 ], [ -114.558898, 33.531819 ], [ -114.594534, 33.495059 ], [ -114.622918, 33.456561 ], [ -114.627125, 33.433554 ], [ -114.665278, 33.415358 ], [ -114.721233, 33.396912 ], [ -114.700103, 33.341045 ], [ -114.672088, 33.258499 ], [ -114.675360, 33.185489 ], [ -114.679359, 33.159519 ], [ -114.687074, 33.142196 ], [ -114.696829, 33.131209 ], [ -114.706175, 33.105335 ], [ -114.707819, 33.091102 ], [ -114.675104, 33.047532 ], [ -114.623870, 33.028720 ], [ -114.606282, 33.025703 ], [ -114.589778, 33.026228 ], [ -114.584765, 33.028231 ], [ -114.578287, 33.035375 ], [ -114.571653, 33.036624 ], [ -114.523578, 33.030961 ], [ -114.516912, 33.026871 ], [ -114.511343, 33.023455 ], [ -114.468605, 32.971649 ], [ -114.462890, 32.905797 ], [ -114.465715, 32.879420 ], [ -114.465715, 32.879191 ], [ -114.496284, 32.822326 ], [ -114.496827, 32.822119 ], [ -114.615733, 32.729427 ], [ -114.615585, 32.728446 ], [ -114.658260, 32.733799 ], [ -114.658840, 32.733830 ], [ -114.677091, 32.736218 ], [ -114.678632, 32.736614 ], [ -114.719633, 32.718763 ], [ -115.465164, 32.667100 ], [ -115.875842, 32.636424 ], [ -116.106159, 32.618328 ], [ -116.390091, 32.596020 ], [ -117.118865, 32.534661 ], [ -117.124862, 32.534156 ], [ -117.133363, 32.575625 ], [ -117.132963, 32.597054 ], [ -117.136664, 32.618754 ], [ -117.139464, 32.627054 ], [ -117.159865, 32.660652 ], [ -117.168866, 32.671952 ], [ -117.180366, 32.681652 ], [ -117.192967, 32.687751 ], [ -117.196767, 32.688851 ], [ -117.213068, 32.687751 ], [ -117.223868, 32.683051 ], [ -117.236239, 32.671353 ], [ -117.246069, 32.669352 ], [ -117.255169, 32.700051 ], [ -117.257570, 32.726050 ], [ -117.255370, 32.745449 ], [ -117.252570, 32.752949 ], [ -117.254970, 32.786948 ], [ -117.261070, 32.803148 ], [ -117.280971, 32.822247 ], [ -117.282170, 32.839547 ], [ -117.281170, 32.843047 ], [ -117.273870, 32.851447 ], [ -117.264970, 32.848947 ], [ -117.260670, 32.852647 ], [ -117.256170, 32.859447 ], [ -117.251670, 32.874346 ], [ -117.254470, 32.900146 ], [ -117.260470, 32.931245 ], [ -117.262547, 32.939542 ], [ -117.280770, 33.012343 ], [ -117.293370, 33.034642 ], [ -117.309771, 33.074540 ], [ -117.315278, 33.093504 ], [ -117.328359, 33.121842 ], [ -117.359484, 33.164231 ], [ -117.362572, 33.168437 ], [ -117.391480, 33.202762 ], [ -117.401926, 33.213598 ], [ -117.445583, 33.268517 ], [ -117.469794, 33.296417 ], [ -117.505650, 33.334063 ], [ -117.547693, 33.365491 ], [ -117.571722, 33.378988 ], [ -117.595880, 33.386629 ], [ -117.607905, 33.406317 ], [ -117.631682, 33.430528 ], [ -117.645582, 33.440728 ], [ -117.645592, 33.440733 ], [ -117.684584, 33.461927 ], [ -117.689284, 33.460155 ], [ -117.691984, 33.456627 ], [ -117.691384, 33.454028 ], [ -117.715349, 33.460556 ], [ -117.726486, 33.483427 ], [ -117.761387, 33.516326 ], [ -117.784888, 33.541525 ], [ -117.801288, 33.546324 ], [ -117.814188, 33.552224 ], [ -117.840289, 33.573523 ], [ -117.876790, 33.592322 ], [ -117.899790, 33.599622 ], [ -117.927091, 33.605521 ], [ -117.940591, 33.620021 ], [ -117.957114, 33.629466 ], [ -118.000593, 33.654319 ], [ -118.029694, 33.676418 ], [ -118.064895, 33.711018 ], [ -118.088896, 33.729817 ], [ -118.101097, 33.734117 ], [ -118.116703, 33.743549 ], [ -118.132698, 33.753217 ], [ -118.156900, 33.760317 ], [ -118.175500, 33.763617 ], [ -118.180831, 33.763072 ], [ -118.187701, 33.749218 ], [ -118.183700, 33.736118 ], [ -118.181367, 33.717367 ], [ -118.207476, 33.716905 ], [ -118.258687, 33.703741 ], [ -118.277208, 33.707091 ], [ -118.297104, 33.708319 ], [ -118.317205, 33.712818 ], [ -118.354705, 33.732317 ], [ -118.360505, 33.736817 ], [ -118.385006, 33.741417 ], [ -118.396606, 33.735917 ], [ -118.411211, 33.741985 ], [ -118.428407, 33.774715 ], [ -118.423407, 33.782015 ], [ -118.405007, 33.800215 ], [ -118.394376, 33.804289 ], [ -118.394307, 33.804315 ], [ -118.391507, 33.815415 ], [ -118.392107, 33.840915 ], [ -118.412708, 33.883913 ], [ -118.442410, 33.940312 ], [ -118.460611, 33.969111 ], [ -118.482729, 33.995912 ], [ -118.484212, 33.997710 ], [ -118.502813, 34.015509 ], [ -118.519514, 34.027509 ], [ -118.543115, 34.038508 ], [ -118.569235, 34.041640 ], [ -118.603572, 34.039048 ], [ -118.609652, 34.036424 ], [ -118.668358, 34.038887 ], [ -118.675430, 34.037479 ], [ -118.679366, 34.033255 ], [ -118.706215, 34.029383 ], [ -118.732391, 34.032743 ], [ -118.744952, 34.032103 ], [ -118.783433, 34.021543 ], [ -118.787094, 34.019545 ], [ -118.805114, 34.001239 ], [ -118.821579, 34.013959 ], [ -118.840380, 34.027527 ], [ -118.854653, 34.034215 ], [ -118.896159, 34.039207 ], [ -118.928048, 34.045847 ], [ -118.938081, 34.043383 ], [ -118.944887, 34.045340 ], [ -118.954722, 34.048167 ], [ -118.977751, 34.059822 ], [ -118.996980, 34.065943 ], [ -119.004644, 34.066231 ], [ -119.037494, 34.083111 ], [ -119.069959, 34.090470 ], [ -119.088536, 34.098310 ], [ -119.098216, 34.099334 ], [ -119.109784, 34.094566 ], [ -119.130169, 34.100102 ], [ -119.159554, 34.119653 ], [ -119.188640, 34.139005 ], [ -119.203140, 34.144505 ], [ -119.211241, 34.144905 ], [ -119.216441, 34.146105 ], [ -119.227743, 34.161728 ], [ -119.237142, 34.175804 ], [ -119.257043, 34.213304 ], [ -119.265927, 34.234609 ], [ -119.270144, 34.252903 ], [ -119.278644, 34.266902 ], [ -119.290945, 34.274902 ], [ -119.302131, 34.272761 ], [ -119.313034, 34.275689 ], [ -119.337475, 34.290576 ], [ -119.349187, 34.304383 ], [ -119.370356, 34.319486 ], [ -119.375780, 34.321118 ], [ -119.388249, 34.317398 ], [ -119.390449, 34.318198 ], [ -119.427770, 34.353016 ], [ -119.431066, 34.355297 ], [ -119.435888, 34.355839 ], [ -119.461036, 34.374064 ], [ -119.472678, 34.375628 ], [ -119.478265, 34.377197 ], [ -119.510655, 34.386295 ], [ -119.536957, 34.395495 ], [ -119.559459, 34.413395 ], [ -119.616862, 34.420995 ], [ -119.638864, 34.415696 ], [ -119.648664, 34.417396 ], [ -119.671866, 34.416096 ], [ -119.688167, 34.412497 ], [ -119.684666, 34.408297 ], [ -119.691749, 34.403154 ], [ -119.709067, 34.395397 ], [ -119.729369, 34.395897 ], [ -119.745470, 34.402898 ], [ -119.785871, 34.415997 ], [ -119.794771, 34.417597 ], [ -119.835771, 34.415796 ], [ -119.853771, 34.407996 ], [ -119.873971, 34.408795 ], [ -119.925227, 34.433931 ], [ -119.956433, 34.435288 ], [ -119.971951, 34.444641 ], [ -120.008077, 34.460447 ], [ -120.038828, 34.463434 ], [ -120.050682, 34.461651 ], [ -120.088591, 34.460208 ], [ -120.097212, 34.461809 ], [ -120.118411, 34.469927 ], [ -120.141165, 34.473405 ], [ -120.183505, 34.470372 ], [ -120.225498, 34.470587 ], [ -120.238002, 34.468098 ], [ -120.257770, 34.467451 ], [ -120.283001, 34.468354 ], [ -120.295051, 34.470623 ], [ -120.299169, 34.469731 ], [ -120.301822, 34.467077 ], [ -120.341369, 34.458789 ], [ -120.441975, 34.451512 ], [ -120.451425, 34.447094 ], [ -120.471376, 34.447846 ], [ -120.476610, 34.475131 ], [ -120.480372, 34.481059 ], [ -120.490523, 34.490075 ], [ -120.511421, 34.522953 ], [ -120.524776, 34.531291 ], [ -120.581293, 34.556959 ], [ -120.608355, 34.556656 ], [ -120.612005, 34.553564 ], [ -120.622575, 34.554017 ], [ -120.637805, 34.566220 ], [ -120.645739, 34.581035 ], [ -120.640244, 34.604406 ], [ -120.625127, 34.634489 ], [ -120.601970, 34.692095 ], [ -120.600450, 34.704640 ], [ -120.601672, 34.709721 ], [ -120.614852, 34.730709 ], [ -120.626320, 34.738072 ], [ -120.637415, 34.755895 ], [ -120.622970, 34.793300 ], [ -120.616296, 34.816308 ], [ -120.609898, 34.842751 ], [ -120.610266, 34.858180 ], [ -120.616325, 34.866739 ], [ -120.639283, 34.880413 ], [ -120.642212, 34.894145 ], [ -120.647328, 34.901133 ], [ -120.662889, 34.901183 ], [ -120.670835, 34.904115 ], [ -120.648905, 34.974393 ], [ -120.639990, 35.002963 ], [ -120.633570, 35.033085 ], [ -120.629931, 35.061515 ], [ -120.629583, 35.078362 ], [ -120.630957, 35.101941 ], [ -120.635787, 35.123805 ], [ -120.644311, 35.139616 ], [ -120.651134, 35.147768 ], [ -120.662475, 35.153357 ], [ -120.667994, 35.152030 ], [ -120.675074, 35.153061 ], [ -120.686974, 35.160708 ], [ -120.698906, 35.171192 ], [ -120.704203, 35.173206 ], [ -120.714185, 35.175998 ], [ -120.734231, 35.178472 ], [ -120.748870, 35.177795 ], [ -120.754823, 35.174701 ], [ -120.756862, 35.169208 ], [ -120.756086, 35.160459 ], [ -120.760492, 35.159710 ], [ -120.778998, 35.168897 ], [ -120.786076, 35.177666 ], [ -120.805258, 35.184973 ], [ -120.846674, 35.204429 ], [ -120.856047, 35.206487 ], [ -120.873046, 35.225688 ], [ -120.896790, 35.247877 ], [ -120.896876, 35.253990 ], [ -120.889354, 35.277819 ], [ -120.879570, 35.294184 ], [ -120.867200, 35.327154 ], [ -120.862684, 35.346776 ], [ -120.862133, 35.360763 ], [ -120.866099, 35.393045 ], [ -120.869209, 35.403276 ], [ -120.884757, 35.430196 ], [ -120.896862, 35.442243 ], [ -120.907937, 35.449069 ], [ -120.946546, 35.446715 ], [ -120.950742, 35.448020 ], [ -120.955863, 35.453743 ], [ -120.969436, 35.460197 ], [ -120.976122, 35.459028 ], [ -121.003359, 35.460710 ], [ -121.025621, 35.484598 ], [ -121.053080, 35.507530 ], [ -121.059913, 35.509671 ], [ -121.101595, 35.548814 ], [ -121.126027, 35.593058 ], [ -121.133556, 35.600455 ], [ -121.143561, 35.606046 ], [ -121.166712, 35.635399 ], [ -121.188897, 35.643138 ], [ -121.195291, 35.640734 ], [ -121.251034, 35.656641 ], [ -121.272322, 35.666711 ], [ -121.284973, 35.674109 ], [ -121.289794, 35.689428 ], [ -121.296473, 35.696824 ], [ -121.304583, 35.701794 ], [ -121.314632, 35.713310 ], [ -121.315786, 35.752520 ], [ -121.324918, 35.769347 ], [ -121.332449, 35.783106 ], [ -121.346363, 35.795183 ], [ -121.356737, 35.804187 ], [ -121.388053, 35.823483 ], [ -121.406823, 35.844623 ], [ -121.413146, 35.855316 ], [ -121.426955, 35.860103 ], [ -121.439584, 35.866950 ], [ -121.462264, 35.885618 ], [ -121.461227, 35.896906 ], [ -121.463452, 35.904416 ], [ -121.472435, 35.919890 ], [ -121.486200, 35.970348 ], [ -121.503112, 36.000299 ], [ -121.511590, 36.006598 ], [ -121.531876, 36.014368 ], [ -121.553716, 36.019798 ], [ -121.569612, 36.021539 ], [ -121.574602, 36.025156 ], [ -121.590395, 36.050363 ], [ -121.589183, 36.053775 ], [ -121.592853, 36.065062 ], [ -121.606845, 36.072065 ], [ -121.618672, 36.087767 ], [ -121.622009, 36.099695 ], [ -121.629634, 36.114452 ], [ -121.680145, 36.165818 ], [ -121.717176, 36.195146 ], [ -121.779851, 36.227407 ], [ -121.797059, 36.234211 ], [ -121.806979, 36.232907 ], [ -121.813734, 36.234235 ], [ -121.826425, 36.241860 ], [ -121.835785, 36.250748 ], [ -121.839350, 36.260478 ], [ -121.851967, 36.277831 ], [ -121.874797, 36.289064 ], [ -121.888491, 36.302810 ], [ -121.894714, 36.317806 ], [ -121.892917, 36.340428 ], [ -121.905446, 36.358269 ], [ -121.902669, 36.363901 ], [ -121.901813, 36.381879 ], [ -121.903195, 36.393603 ], [ -121.905657, 36.398206 ], [ -121.914378, 36.404344 ], [ -121.917463, 36.414809 ], [ -121.914740, 36.425890 ], [ -121.925500, 36.453918 ], [ -121.937205, 36.472488 ], [ -121.941600, 36.485602 ], [ -121.939216, 36.496896 ], [ -121.938763, 36.506423 ], [ -121.943678, 36.511802 ], [ -121.944666, 36.521861 ], [ -121.928769, 36.523147 ], [ -121.925937, 36.525173 ], [ -121.932508, 36.559935 ], [ -121.942533, 36.566435 ], [ -121.949659, 36.567602 ], [ -121.951460, 36.564009 ], [ -121.957335, 36.564482 ], [ -121.972594, 36.573370 ], [ -121.978592, 36.580488 ], [ -121.970427, 36.582754 ], [ -121.941666, 36.618059 ], [ -121.938551, 36.633908 ], [ -121.936430, 36.636746 ], [ -121.929666, 36.636959 ], [ -121.923866, 36.634559 ], [ -121.890164, 36.609259 ], [ -121.889064, 36.601759 ], [ -121.886764, 36.601459 ], [ -121.871364, 36.604559 ], [ -121.860604, 36.611136 ], [ -121.842263, 36.630059 ], [ -121.831995, 36.644856 ], [ -121.825052, 36.657207 ], [ -121.814462, 36.682858 ], [ -121.807062, 36.714157 ], [ -121.805643, 36.750239 ], [ -121.788278, 36.803994 ], [ -121.791544, 36.815186 ], [ -121.809363, 36.848654 ], [ -121.810552, 36.850648 ], [ -121.827664, 36.879353 ], [ -121.862266, 36.931552 ], [ -121.880167, 36.950151 ], [ -121.894667, 36.961851 ], [ -121.906468, 36.968950 ], [ -121.930069, 36.978150 ], [ -121.939470, 36.978050 ], [ -121.951670, 36.971450 ], [ -121.972771, 36.954151 ], [ -121.975871, 36.954051 ], [ -121.983896, 36.958727 ], [ -122.012373, 36.964550 ], [ -122.023373, 36.962150 ], [ -122.027174, 36.951150 ], [ -122.050122, 36.948523 ], [ -122.066421, 36.948271 ], [ -122.079356, 36.950783 ], [ -122.105976, 36.955951 ], [ -122.140578, 36.974950 ], [ -122.155078, 36.980850 ], [ -122.186879, 37.003450 ], [ -122.206180, 37.013949 ], [ -122.252181, 37.059448 ], [ -122.260481, 37.072548 ], [ -122.284882, 37.101747 ], [ -122.292974, 37.107318 ], [ -122.306139, 37.116383 ], [ -122.313907, 37.118161 ], [ -122.322971, 37.115460 ], [ -122.330463, 37.115338 ], [ -122.337071, 37.117382 ], [ -122.338856, 37.120854 ], [ -122.337085, 37.130795 ], [ -122.337833, 37.135936 ], [ -122.344029, 37.144099 ], [ -122.359791, 37.155574 ], [ -122.361790, 37.163593 ], [ -122.367085, 37.172817 ], [ -122.379270, 37.181128 ], [ -122.390599, 37.182988 ], [ -122.397065, 37.187249 ], [ -122.405073, 37.195791 ], [ -122.407181, 37.219465 ], [ -122.408982, 37.225258 ], [ -122.415822, 37.232839 ], [ -122.419113, 37.241470 ], [ -122.418452, 37.248521 ], [ -122.411686, 37.265844 ], [ -122.401323, 37.337009 ], [ -122.400850, 37.359225 ], [ -122.409258, 37.374805 ], [ -122.423286, 37.392542 ], [ -122.443687, 37.435941 ], [ -122.445987, 37.461541 ], [ -122.452087, 37.480540 ], [ -122.467888, 37.498140 ], [ -122.472388, 37.500540 ], [ -122.476443, 37.498768 ], [ -122.482351, 37.496187 ], [ -122.485888, 37.494641 ], [ -122.486749, 37.494390 ], [ -122.487139, 37.494277 ], [ -122.493789, 37.492341 ], [ -122.494429, 37.492690 ], [ -122.499289, 37.495341 ], [ -122.516689, 37.521340 ], [ -122.519533, 37.537302 ], [ -122.516589, 37.544939 ], [ -122.514789, 37.546139 ], [ -122.513688, 37.552239 ], [ -122.518088, 37.576138 ], [ -122.517187, 37.590637 ], [ -122.501386, 37.599637 ], [ -122.496786, 37.612136 ], [ -122.494085, 37.644035 ], [ -122.496784, 37.686433 ], [ -122.502427, 37.708133 ], [ -122.506483, 37.723731 ], [ -122.509397, 37.748841 ], [ -122.511983, 37.771130 ], [ -122.514483, 37.780829 ], [ -122.505310, 37.788312 ], [ -122.492883, 37.787929 ], [ -122.485783, 37.790629 ], [ -122.478083, 37.810828 ], [ -122.470336, 37.808671 ], [ -122.463793, 37.804653 ], [ -122.425942, 37.810979 ], [ -122.407452, 37.811441 ], [ -122.398139, 37.805630 ], [ -122.385323, 37.790724 ], [ -122.375854, 37.734979 ], [ -122.370094, 37.732331 ], [ -122.367697, 37.734943 ], [ -122.365478, 37.734621 ], [ -122.356784, 37.729505 ], [ -122.361749, 37.715010 ], [ -122.370411, 37.717572 ], [ -122.391374, 37.708331 ], [ -122.393190, 37.707531 ], [ -122.387626, 37.679060 ], [ -122.374291, 37.662206 ], [ -122.375600, 37.652389 ], [ -122.377890, 37.650425 ], [ -122.387381, 37.648462 ], [ -122.386072, 37.637662 ], [ -122.365455, 37.626208 ], [ -122.355310, 37.615736 ], [ -122.358583, 37.611155 ], [ -122.370364, 37.614427 ], [ -122.373309, 37.613773 ], [ -122.378545, 37.605592 ], [ -122.360219, 37.592501 ], [ -122.317676, 37.590865 ], [ -122.315385, 37.587265 ], [ -122.315713, 37.583666 ], [ -122.305895, 37.575484 ], [ -122.262698, 37.572866 ], [ -122.251898, 37.566321 ], [ -122.244372, 37.558140 ], [ -122.242832, 37.557136 ], [ -122.236323, 37.552891 ], [ -122.225135, 37.545594 ], [ -122.214264, 37.538505 ], [ -122.196593, 37.537196 ], [ -122.194957, 37.522469 ], [ -122.168449, 37.504143 ], [ -122.155686, 37.501198 ], [ -122.149632, 37.502671 ], [ -122.140142, 37.507907 ], [ -122.130979, 37.503652 ], [ -122.127706, 37.500053 ], [ -122.116112, 37.505386 ], [ -122.111344, 37.507580 ], [ -122.111998, 37.528851 ], [ -122.128688, 37.560594 ], [ -122.133924, 37.562885 ], [ -122.137524, 37.567467 ], [ -122.144396, 37.581866 ], [ -122.147014, 37.588411 ], [ -122.145378, 37.600846 ], [ -122.146360, 37.607391 ], [ -122.152905, 37.640771 ], [ -122.163049, 37.667933 ], [ -122.170904, 37.676114 ], [ -122.179085, 37.680041 ], [ -122.197411, 37.692804 ], [ -122.203971, 37.697769 ], [ -122.213774, 37.698695 ], [ -122.221628, 37.705567 ], [ -122.246826, 37.721930 ], [ -122.255989, 37.735674 ], [ -122.257953, 37.739601 ], [ -122.257134, 37.745001 ], [ -122.252226, 37.747619 ], [ -122.244938, 37.750294 ], [ -122.242638, 37.753744 ], [ -122.253753, 37.761218 ], [ -122.264101, 37.764667 ], [ -122.275408, 37.767350 ], [ -122.286139, 37.769458 ], [ -122.293996, 37.770416 ], [ -122.304345, 37.774632 ], [ -122.318909, 37.779040 ], [ -122.329159, 37.783173 ], [ -122.330790, 37.783830 ], [ -122.330963, 37.786035 ], [ -122.331748, 37.796052 ], [ -122.335550, 37.799538 ], [ -122.335675, 37.799652 ], [ -122.333711, 37.809797 ], [ -122.323567, 37.823214 ], [ -122.317676, 37.826814 ], [ -122.306222, 37.827469 ], [ -122.303931, 37.830087 ], [ -122.301313, 37.847758 ], [ -122.310477, 37.873938 ], [ -122.309986, 37.892755 ], [ -122.313258, 37.897010 ], [ -122.313496, 37.897211 ], [ -122.323730, 37.905845 ], [ -122.334530, 37.908791 ], [ -122.357110, 37.908791 ], [ -122.362346, 37.904209 ], [ -122.367582, 37.903882 ], [ -122.378709, 37.905191 ], [ -122.385908, 37.908136 ], [ -122.389181, 37.910100 ], [ -122.390490, 37.922535 ], [ -122.395071, 37.927117 ], [ -122.401289, 37.928426 ], [ -122.413725, 37.937262 ], [ -122.417371, 37.943513 ], [ -122.430087, 37.963115 ], [ -122.429760, 37.965405 ], [ -122.415361, 37.963115 ], [ -122.411761, 37.960497 ], [ -122.408383, 37.957544 ], [ -122.399832, 37.956009 ], [ -122.367582, 37.978168 ], [ -122.361905, 37.989991 ], [ -122.363001, 37.994375 ], [ -122.366928, 37.998458 ], [ -122.368891, 38.007948 ], [ -122.367909, 38.012530 ], [ -122.363655, 38.014166 ], [ -122.359493, 38.009941 ], [ -122.340093, 38.003694 ], [ -122.331912, 38.005330 ], [ -122.321112, 38.012857 ], [ -122.315549, 38.013511 ], [ -122.300823, 38.010893 ], [ -122.283478, 38.022674 ], [ -122.262861, 38.044600 ], [ -122.262861, 38.051473 ], [ -122.266669, 38.060070 ], [ -122.273006, 38.074380 ], [ -122.282824, 38.082889 ], [ -122.301804, 38.105142 ], [ -122.314567, 38.115287 ], [ -122.366273, 38.141467 ], [ -122.396380, 38.149976 ], [ -122.403514, 38.150624 ], [ -122.403580, 38.150630 ], [ -122.409798, 38.136231 ], [ -122.439577, 38.116923 ], [ -122.450377, 38.116269 ], [ -122.454958, 38.118887 ], [ -122.484411, 38.114960 ], [ -122.489974, 38.112014 ], [ -122.490727, 38.109755 ], [ -122.491283, 38.108087 ], [ -122.489974, 38.096961 ], [ -122.486702, 38.090088 ], [ -122.483757, 38.071762 ], [ -122.492265, 38.056381 ], [ -122.499465, 38.032165 ], [ -122.497828, 38.019402 ], [ -122.494556, 38.015148 ], [ -122.481466, 38.007621 ], [ -122.462812, 38.003367 ], [ -122.452995, 37.996167 ], [ -122.448413, 37.988313 ], [ -122.448413, 37.984713 ], [ -122.456595, 37.978823 ], [ -122.462485, 37.981441 ], [ -122.471975, 37.981768 ], [ -122.488665, 37.966714 ], [ -122.490302, 37.964751 ], [ -122.490302, 37.959188 ], [ -122.487684, 37.948716 ], [ -122.480484, 37.945443 ], [ -122.479175, 37.941516 ], [ -122.485720, 37.937589 ], [ -122.499465, 37.939225 ], [ -122.503064, 37.936607 ], [ -122.503064, 37.928753 ], [ -122.493574, 37.921881 ], [ -122.486375, 37.921881 ], [ -122.478193, 37.918608 ], [ -122.471975, 37.910427 ], [ -122.472303, 37.902573 ], [ -122.458558, 37.894064 ], [ -122.448413, 37.893410 ], [ -122.439250, 37.883920 ], [ -122.438268, 37.880974 ], [ -122.450050, 37.871157 ], [ -122.462158, 37.868866 ], [ -122.474266, 37.874429 ], [ -122.480811, 37.873448 ], [ -122.483429, 37.868866 ], [ -122.483102, 37.863957 ], [ -122.476536, 37.832812 ], [ -122.476473, 37.832513 ], [ -122.479151, 37.825428 ], [ -122.479860, 37.825641 ], [ -122.483483, 37.826728 ], [ -122.492474, 37.824840 ], [ -122.505383, 37.822128 ], [ -122.522836, 37.824717 ], [ -122.523585, 37.824828 ], [ -122.537285, 37.830328 ], [ -122.548986, 37.836227 ], [ -122.561487, 37.851827 ], [ -122.584289, 37.859227 ], [ -122.601290, 37.875126 ], [ -122.627113, 37.886080 ], [ -122.639977, 37.897349 ], [ -122.656519, 37.904519 ], [ -122.678474, 37.906604 ], [ -122.682171, 37.906450 ], [ -122.693569, 37.901171 ], [ -122.702640, 37.893820 ], [ -122.727297, 37.904626 ], [ -122.732898, 37.920225 ], [ -122.736898, 37.925825 ], [ -122.754606, 37.935527 ], [ -122.766138, 37.938004 ], [ -122.783244, 37.951334 ], [ -122.791739, 37.969422 ], [ -122.797405, 37.976657 ], [ -122.821383, 37.996735 ], [ -122.856573, 38.016717 ], [ -122.882114, 38.025273 ], [ -122.939711, 38.031908 ], [ -122.956811, 38.028720 ], [ -122.972378, 38.020247 ], [ -122.981776, 38.009119 ], [ -122.982386, 38.004274 ], [ -122.980147, 38.000831 ], [ -122.976764, 37.995680 ], [ -122.974390, 37.992429 ], [ -123.024066, 37.994878 ], [ -123.020562, 37.999544 ], [ -123.016303, 38.001691 ], [ -123.011533, 38.003438 ], [ -122.992420, 38.041758 ], [ -122.960889, 38.112962 ], [ -122.952086, 38.138562 ], [ -122.949074, 38.154060 ], [ -122.949626, 38.164041 ], [ -122.953629, 38.175670 ], [ -122.965408, 38.187113 ], [ -122.966370, 38.198514 ], [ -122.968112, 38.202428 ], [ -122.991953, 38.233185 ], [ -122.993959, 38.237602 ], [ -122.993235, 38.239686 ], [ -122.987149, 38.237538 ], [ -122.968569, 38.242879 ], [ -122.967203, 38.250691 ], [ -122.977082, 38.267902 ], [ -122.986319, 38.273164 ], [ -122.994603, 38.283096 ], [ -122.997106, 38.289458 ], [ -123.002911, 38.295708 ], [ -123.004122, 38.297012 ], [ -123.024333, 38.310573 ], [ -123.038742, 38.313576 ], [ -123.051061, 38.310693 ], [ -123.053476, 38.305722 ], [ -123.052021, 38.302246 ], [ -123.053504, 38.299385 ], [ -123.058239, 38.298355 ], [ -123.063671, 38.302178 ], [ -123.074684, 38.322574 ], [ -123.068437, 38.335210 ], [ -123.068265, 38.359865 ], [ -123.085572, 38.390525 ], [ -123.103706, 38.415541 ], [ -123.122379, 38.437314 ], [ -123.128825, 38.450418 ], [ -123.145325, 38.459422 ], [ -123.166428, 38.474947 ], [ -123.202277, 38.494314 ], [ -123.249797, 38.511045 ], [ -123.287156, 38.540223 ], [ -123.297151, 38.543452 ], [ -123.331899, 38.565542 ], [ -123.343338, 38.590008 ], [ -123.349612, 38.596805 ], [ -123.371876, 38.607235 ], [ -123.379303, 38.621953 ], [ -123.398166, 38.647044 ], [ -123.403010, 38.649449 ], [ -123.405663, 38.656729 ], [ -123.432720, 38.687131 ], [ -123.441774, 38.699744 ], [ -123.461291, 38.717001 ], [ -123.490021, 38.732213 ], [ -123.514784, 38.741966 ], [ -123.525152, 38.753801 ], [ -123.533535, 38.768408 ], [ -123.541837, 38.776764 ], [ -123.571987, 38.798189 ], [ -123.579856, 38.802835 ], [ -123.586380, 38.802857 ], [ -123.600221, 38.814115 ], [ -123.601569, 38.818990 ], [ -123.605317, 38.822765 ], [ -123.638637, 38.843865 ], [ -123.642676, 38.844005 ], [ -123.647387, 38.845472 ], [ -123.652212, 38.854582 ], [ -123.654696, 38.865638 ], [ -123.659846, 38.872529 ], [ -123.688099, 38.893594 ], [ -123.710540, 38.913230 ], [ -123.725367, 38.917438 ], [ -123.727630, 38.929500 ], [ -123.726315, 38.936367 ], [ -123.738886, 38.954120 ], [ -123.732892, 38.954994 ], [ -123.729053, 38.956667 ], [ -123.721347, 38.963879 ], [ -123.711149, 38.977316 ], [ -123.696900, 39.004401 ], [ -123.690740, 39.021293 ], [ -123.690095, 39.031157 ], [ -123.693969, 39.057363 ], [ -123.713392, 39.108422 ], [ -123.721505, 39.125327 ], [ -123.735936, 39.139644 ], [ -123.737913, 39.143442 ], [ -123.742221, 39.164885 ], [ -123.761010, 39.191595 ], [ -123.765891, 39.193657 ], [ -123.774998, 39.212083 ], [ -123.777368, 39.237214 ], [ -123.787893, 39.264327 ], [ -123.798991, 39.271355 ], [ -123.803848, 39.278771 ], [ -123.801757, 39.283530 ], [ -123.803081, 39.291747 ], [ -123.811387, 39.312825 ], [ -123.808772, 39.324368 ], [ -123.817369, 39.338800 ], [ -123.822085, 39.343857 ], [ -123.825331, 39.360814 ], [ -123.826306, 39.368710 ], [ -123.822325, 39.379987 ], [ -123.821887, 39.406809 ], [ -123.814690, 39.446538 ], [ -123.795639, 39.492215 ], [ -123.784170, 39.509419 ], [ -123.778521, 39.521478 ], [ -123.766475, 39.552803 ], [ -123.767210, 39.559852 ], [ -123.787417, 39.604552 ], [ -123.783540, 39.609517 ], [ -123.782322, 39.621486 ], [ -123.786360, 39.659932 ], [ -123.792659, 39.684122 ], [ -123.808208, 39.710715 ], [ -123.824744, 39.718128 ], [ -123.829545, 39.723071 ], [ -123.831599, 39.730629 ], [ -123.835092, 39.738768 ], [ -123.838089, 39.752409 ], [ -123.837150, 39.776232 ], [ -123.839797, 39.795637 ], [ -123.851714, 39.832041 ], [ -123.853764, 39.834100 ], [ -123.881458, 39.845422 ], [ -123.907664, 39.863028 ], [ -123.915142, 39.875313 ], [ -123.915853, 39.881114 ], [ -123.930047, 39.909697 ], [ -123.954952, 39.922373 ], [ -123.962655, 39.937635 ], [ -123.980031, 39.962458 ], [ -123.995860, 39.973045 ], [ -124.023938, 40.001284 ], [ -124.035904, 40.013319 ], [ -124.056408, 40.024305 ], [ -124.065069, 40.024785 ], [ -124.068908, 40.021307 ], [ -124.072509, 40.022657 ], [ -124.079983, 40.029773 ], [ -124.080709, 40.066110 ], [ -124.087086, 40.078442 ], [ -124.110549, 40.103765 ], [ -124.139952, 40.116350 ], [ -124.170767, 40.124207 ], [ -124.187874, 40.130542 ], [ -124.214895, 40.160902 ], [ -124.231095, 40.171581 ], [ -124.258405, 40.184277 ], [ -124.296497, 40.208816 ], [ -124.320912, 40.226617 ], [ -124.327691, 40.237370 ], [ -124.343070, 40.243979 ], [ -124.352715, 40.250453 ], [ -124.363414, 40.260974 ], [ -124.363634, 40.276212 ], [ -124.347853, 40.314634 ], [ -124.353124, 40.331425 ], [ -124.356595, 40.335016 ], [ -124.362796, 40.350046 ], [ -124.365357, 40.374855 ], [ -124.373599, 40.392923 ], [ -124.379082, 40.398828 ], [ -124.391496, 40.407047 ], [ -124.402623, 40.422105 ], [ -124.409591, 40.438076 ], [ -124.408601, 40.443201 ], [ -124.396642, 40.462119 ], [ -124.384940, 40.489820 ], [ -124.383224, 40.499852 ], [ -124.387023, 40.504954 ], [ -124.382816, 40.519000 ], [ -124.379096, 40.522865 ], [ -124.363545, 40.548698 ], [ -124.329404, 40.616430 ], [ -124.315141, 40.639526 ], [ -124.312558, 40.641333 ], [ -124.289119, 40.679630 ], [ -124.248406, 40.735166 ], [ -124.228244, 40.769390 ], [ -124.201921, 40.805111 ], [ -124.176715, 40.843618 ], [ -124.158322, 40.876069 ], [ -124.137066, 40.925732 ], [ -124.118147, 40.989263 ], [ -124.112165, 41.028173 ], [ -124.125448, 41.048504 ], [ -124.132946, 41.052482 ], [ -124.138217, 41.054342 ], [ -124.142867, 41.054032 ], [ -124.147216, 41.052884 ], [ -124.148939, 41.051467 ], [ -124.151266, 41.051101 ], [ -124.153622, 41.053550 ], [ -124.154028, 41.059923 ], [ -124.154513, 41.087159 ], [ -124.160556, 41.099011 ], [ -124.159065, 41.121957 ], [ -124.165414, 41.129822 ], [ -124.163988, 41.138675 ], [ -124.158539, 41.143021 ], [ -124.149674, 41.140845 ], [ -124.143800, 41.144686 ], [ -124.122677, 41.189726 ], [ -124.106986, 41.229678 ], [ -124.106389, 41.240682 ], [ -124.092284, 41.287695 ], [ -124.079015, 41.347135 ], [ -124.072294, 41.374844 ], [ -124.063076, 41.439579 ], [ -124.065521, 41.464739 ] ] ] ] } }\n,\n{ \"type\": \"Feature\", \"properties\": { \"GEO_ID\": \"0400000US08\", \"STATE\": \"08\", \"NAME\": \"Colorado\", \"LSAD\": \"\", \"CENSUSAREA\": 103641.888000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -107.317794, 41.002957 ], [ -107.000606, 41.003444 ], [ -106.857772, 41.003082 ], [ -106.453859, 41.002057 ], [ -106.439563, 41.001978 ], [ -106.437419, 41.001795 ], [ -106.430950, 41.001752 ], [ -106.391852, 41.001176 ], [ -106.386356, 41.001144 ], [ -106.321165, 40.999123 ], [ -106.190550, 40.998056 ], [ -106.061181, 40.996999 ], [ -105.730421, 40.996886 ], [ -105.724804, 40.996910 ], [ -105.277138, 40.998173 ], [ -105.276860, 40.998173 ], [ -105.256527, 40.998191 ], [ -105.254779, 40.998210 ], [ -104.943371, 40.998190 ], [ -104.882452, 40.998186 ], [ -104.497149, 41.001828 ], [ -104.497058, 41.001805 ], [ -104.214692, 41.001657 ], [ -104.214191, 41.001568 ], [ -104.211473, 41.001591 ], [ -104.123586, 41.001626 ], [ -104.104590, 41.001543 ], [ -104.086068, 41.001563 ], [ -104.066961, 41.001504 ], [ -104.053249, 41.001406 ], [ -104.039238, 41.001502 ], [ -104.023383, 41.001887 ], [ -104.018223, 41.001617 ], [ -103.972642, 41.001615 ], [ -103.971373, 41.001524 ], [ -103.953525, 41.001596 ], [ -103.896207, 41.001750 ], [ -103.877967, 41.001673 ], [ -103.858449, 41.001681 ], [ -103.574522, 41.001721 ], [ -103.497447, 41.001635 ], [ -103.486697, 41.001914 ], [ -103.421975, 41.002007 ], [ -103.421925, 41.001969 ], [ -103.382493, 41.001883 ], [ -103.365314, 41.001846 ], [ -103.362979, 41.001844 ], [ -103.077804, 41.002298 ], [ -103.076536, 41.002253 ], [ -103.059538, 41.002368 ], [ -103.057998, 41.002368 ], [ -103.043444, 41.002344 ], [ -103.038704, 41.002251 ], [ -103.002026, 41.002486 ], [ -103.000102, 41.002400 ], [ -102.982690, 41.002157 ], [ -102.981483, 41.002112 ], [ -102.963669, 41.002186 ], [ -102.962522, 41.002072 ], [ -102.960706, 41.002059 ], [ -102.959624, 41.002095 ], [ -102.944830, 41.002303 ], [ -102.943109, 41.002051 ], [ -102.925568, 41.002280 ], [ -102.924029, 41.002142 ], [ -102.906547, 41.002276 ], [ -102.904796, 41.002207 ], [ -102.887407, 41.002178 ], [ -102.885746, 41.002131 ], [ -102.867822, 41.002183 ], [ -102.865784, 41.001988 ], [ -102.849263, 41.002301 ], [ -102.846455, 41.002256 ], [ -102.830303, 41.002351 ], [ -102.827280, 41.002143 ], [ -102.773546, 41.002414 ], [ -102.766723, 41.002275 ], [ -102.754617, 41.002361 ], [ -102.739624, 41.002230 ], [ -102.653463, 41.002332 ], [ -102.621033, 41.002597 ], [ -102.578696, 41.002291 ], [ -102.575738, 41.002268 ], [ -102.575496, 41.002200 ], [ -102.566048, 41.002200 ], [ -102.556789, 41.002219 ], [ -102.487955, 41.002445 ], [ -102.470537, 41.002382 ], [ -102.469223, 41.002424 ], [ -102.379593, 41.002301 ], [ -102.364066, 41.002174 ], [ -102.292833, 41.002207 ], [ -102.292622, 41.002230 ], [ -102.292553, 41.002207 ], [ -102.291354, 41.002207 ], [ -102.272100, 41.002245 ], [ -102.267812, 41.002383 ], [ -102.231931, 41.002327 ], [ -102.212200, 41.002462 ], [ -102.209361, 41.002442 ], [ -102.191210, 41.002326 ], [ -102.124972, 41.002338 ], [ -102.070598, 41.002423 ], [ -102.051718, 41.002377 ], [ -102.051614, 41.002377 ], [ -102.051292, 40.749591 ], [ -102.051292, 40.749586 ], [ -102.051398, 40.697542 ], [ -102.051725, 40.537839 ], [ -102.051519, 40.520094 ], [ -102.051465, 40.440008 ], [ -102.051840, 40.396396 ], [ -102.051572, 40.393080 ], [ -102.051669, 40.349213 ], [ -102.051922, 40.235344 ], [ -102.051894, 40.229193 ], [ -102.051909, 40.162674 ], [ -102.052001, 40.148359 ], [ -102.051744, 40.003078 ], [ -102.051569, 39.849805 ], [ -102.051363, 39.843471 ], [ -102.051318, 39.833311 ], [ -102.051254, 39.818992 ], [ -102.050594, 39.675594 ], [ -102.049954, 39.592331 ], [ -102.049806, 39.574058 ], [ -102.049764, 39.568180 ], [ -102.049554, 39.538932 ], [ -102.049673, 39.536691 ], [ -102.049679, 39.506183 ], [ -102.049369, 39.423333 ], [ -102.049370, 39.418210 ], [ -102.049167, 39.403597 ], [ -102.048960, 39.373712 ], [ -102.048449, 39.303138 ], [ -102.047250, 39.137020 ], [ -102.047189, 39.133147 ], [ -102.047134, 39.129701 ], [ -102.046571, 39.047038 ], [ -102.045388, 38.813392 ], [ -102.045334, 38.799463 ], [ -102.045448, 38.783453 ], [ -102.045371, 38.770064 ], [ -102.045287, 38.755528 ], [ -102.045375, 38.754339 ], [ -102.045212, 38.697567 ], [ -102.045156, 38.688555 ], [ -102.045127, 38.686725 ], [ -102.045160, 38.675221 ], [ -102.045102, 38.674946 ], [ -102.045074, 38.669617 ], [ -102.045288, 38.615249 ], [ -102.045288, 38.615168 ], [ -102.045211, 38.581609 ], [ -102.045189, 38.558732 ], [ -102.045223, 38.543797 ], [ -102.045112, 38.523784 ], [ -102.045262, 38.505532 ], [ -102.045263, 38.505395 ], [ -102.044944, 38.384419 ], [ -102.044613, 38.312324 ], [ -102.044568, 38.268819 ], [ -102.044567, 38.268749 ], [ -102.044510, 38.262412 ], [ -102.044398, 38.250015 ], [ -102.043844, 37.928102 ], [ -102.043845, 37.926135 ], [ -102.043219, 37.867929 ], [ -102.043033, 37.824146 ], [ -102.042953, 37.803535 ], [ -102.042668, 37.788758 ], [ -102.042158, 37.760164 ], [ -102.041990, 37.738541 ], [ -102.041876, 37.723875 ], [ -102.041574, 37.680436 ], [ -102.041694, 37.665681 ], [ -102.041582, 37.654495 ], [ -102.041585, 37.644282 ], [ -102.041618, 37.607868 ], [ -102.041894, 37.557977 ], [ -102.041899, 37.541186 ], [ -102.042016, 37.535261 ], [ -102.041786, 37.506066 ], [ -102.041801, 37.469488 ], [ -102.041755, 37.434855 ], [ -102.041669, 37.434740 ], [ -102.041676, 37.409898 ], [ -102.041826, 37.389191 ], [ -102.042089, 37.352819 ], [ -102.041974, 37.352613 ], [ -102.041817, 37.309490 ], [ -102.041664, 37.297650 ], [ -102.041963, 37.258164 ], [ -102.042002, 37.141744 ], [ -102.042135, 37.125021 ], [ -102.042092, 37.125021 ], [ -102.041809, 37.111973 ], [ -102.041983, 37.106551 ], [ -102.041920, 37.035083 ], [ -102.041749, 37.034397 ], [ -102.041921, 37.032178 ], [ -102.041950, 37.030805 ], [ -102.041952, 37.024742 ], [ -102.042240, 36.993083 ], [ -102.054503, 36.993109 ], [ -102.184271, 36.993593 ], [ -102.208316, 36.993730 ], [ -102.355288, 36.994506 ], [ -102.355367, 36.994575 ], [ -102.570896, 36.995136 ], [ -102.875481, 36.999628 ], [ -102.979613, 36.998549 ], [ -102.985807, 36.998571 ], [ -102.986976, 36.998524 ], [ -103.002199, 37.000104 ], [ -103.086105, 36.999864 ], [ -103.733247, 36.998016 ], [ -103.734364, 36.998041 ], [ -104.007855, 36.996239 ], [ -104.732031, 36.993447 ], [ -104.732120, 36.993484 ], [ -105.000554, 36.993264 ], [ -105.120800, 36.995428 ], [ -105.155042, 36.995339 ], [ -105.220613, 36.995169 ], [ -105.419310, 36.995856 ], [ -105.442459, 36.995994 ], [ -105.447255, 36.996017 ], [ -105.465182, 36.995991 ], [ -105.508836, 36.995895 ], [ -105.512485, 36.995777 ], [ -105.533922, 36.995875 ], [ -105.627470, 36.995679 ], [ -105.664720, 36.995874 ], [ -105.716471, 36.995849 ], [ -105.718470, 36.995846 ], [ -105.996159, 36.995418 ], [ -105.997472, 36.995417 ], [ -106.006634, 36.995343 ], [ -106.247705, 36.994266 ], [ -106.248675, 36.994288 ], [ -106.476228, 36.993472 ], [ -106.617159, 36.992967 ], [ -106.617125, 36.993004 ], [ -106.628652, 36.993175 ], [ -106.628733, 36.993161 ], [ -106.661344, 36.993243 ], [ -106.675626, 36.993123 ], [ -106.869796, 36.992426 ], [ -107.000592, 37.000009 ], [ -107.420913, 37.000005 ], [ -107.420915, 37.000005 ], [ -107.481737, 36.999973 ], [ -108.288086, 36.999555 ], [ -108.288400, 36.999520 ], [ -108.320464, 36.999499 ], [ -108.320721, 36.999510 ], [ -108.379203, 36.999459 ], [ -108.619689, 36.999249 ], [ -108.620309, 36.999287 ], [ -108.954404, 36.998906 ], [ -108.958868, 36.998913 ], [ -109.045223, 36.999084 ], [ -109.045166, 37.072742 ], [ -109.045058, 37.074661 ], [ -109.044995, 37.086429 ], [ -109.045189, 37.096271 ], [ -109.045173, 37.109464 ], [ -109.045203, 37.111958 ], [ -109.045156, 37.112064 ], [ -109.045810, 37.374993 ], [ -109.043053, 37.485161 ], [ -109.041915, 37.530653 ], [ -109.041865, 37.530726 ], [ -109.041806, 37.604171 ], [ -109.042131, 37.617662 ], [ -109.042089, 37.623795 ], [ -109.041732, 37.711214 ], [ -109.041760, 37.713182 ], [ -109.041754, 37.835826 ], [ -109.041723, 37.842051 ], [ -109.042137, 37.881160 ], [ -109.043121, 37.974260 ], [ -109.042819, 37.997068 ], [ -109.042820, 37.999301 ], [ -109.042074, 38.153023 ], [ -109.042062, 38.155490 ], [ -109.060062, 38.275489 ], [ -109.059962, 38.499987 ], [ -109.059541, 38.719888 ], [ -109.053943, 38.904414 ], [ -109.053797, 38.905284 ], [ -109.053233, 38.942467 ], [ -109.053292, 38.942878 ], [ -109.051516, 39.124982 ], [ -109.051417, 39.366677 ], [ -109.051363, 39.497674 ], [ -109.051221, 39.660472 ], [ -109.050873, 40.058915 ], [ -109.050813, 40.059579 ], [ -109.050944, 40.180712 ], [ -109.050973, 40.180849 ], [ -109.050854, 40.222662 ], [ -109.049955, 40.539901 ], [ -109.050074, 40.540358 ], [ -109.048249, 40.653601 ], [ -109.048296, 40.662602 ], [ -109.050076, 41.000659 ], [ -108.250649, 41.000114 ], [ -107.918421, 41.002036 ], [ -107.317794, 41.002957 ] ] ] } }\n,\n{ \"type\": \"Feature\", \"properties\": { \"GEO_ID\": \"0400000US09\", \"STATE\": \"09\", \"NAME\": \"Connecticut\", \"LSAD\": \"\", \"CENSUSAREA\": 4842.355000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -72.397428, 42.033302 ], [ -72.198828, 42.030982 ], [ -72.135715, 42.030245 ], [ -72.135687, 42.030245 ], [ -72.102160, 42.028962 ], [ -72.059752, 42.027339 ], [ -71.800650, 42.023569 ], [ -71.799242, 42.008065 ], [ -71.796822, 41.928552 ], [ -71.796089, 41.904468 ], [ -71.794161, 41.841101 ], [ -71.794161, 41.840141 ], [ -71.792786, 41.808670 ], [ -71.792767, 41.807001 ], [ -71.789678, 41.724734 ], [ -71.789678, 41.724568 ], [ -71.789465, 41.640017 ], [ -71.789356, 41.596910 ], [ -71.789359, 41.596852 ], [ -71.797674, 41.416910 ], [ -71.797683, 41.416709 ], [ -71.818390, 41.419599 ], [ -71.839649, 41.412119 ], [ -71.842563, 41.409855 ], [ -71.843472, 41.405830 ], [ -71.842131, 41.395359 ], [ -71.833443, 41.384524 ], [ -71.831613, 41.370899 ], [ -71.831240, 41.344645 ], [ -71.832530, 41.341204 ], [ -71.839782, 41.334690 ], [ -71.859570, 41.322399 ], [ -71.868235, 41.330941 ], [ -71.886302, 41.336410 ], [ -71.916710, 41.332217 ], [ -71.922092, 41.334518 ], [ -71.923282, 41.335113 ], [ -71.936284, 41.337959 ], [ -71.945652, 41.337799 ], [ -71.956747, 41.329871 ], [ -71.970955, 41.324526 ], [ -71.979447, 41.329987 ], [ -71.982194, 41.329861 ], [ -71.988153, 41.320577 ], [ -72.021898, 41.316838 ], [ -72.084487, 41.319634 ], [ -72.094443, 41.314164 ], [ -72.099820, 41.306998 ], [ -72.111820, 41.299098 ], [ -72.134221, 41.299398 ], [ -72.161580, 41.310262 ], [ -72.173922, 41.317597 ], [ -72.177622, 41.322497 ], [ -72.184122, 41.323997 ], [ -72.191022, 41.323197 ], [ -72.201422, 41.315697 ], [ -72.203022, 41.313197 ], [ -72.204022, 41.299097 ], [ -72.212924, 41.291365 ], [ -72.225276, 41.299047 ], [ -72.235531, 41.300413 ], [ -72.248161, 41.299488 ], [ -72.251895, 41.298620 ], [ -72.250515, 41.294386 ], [ -72.251323, 41.289997 ], [ -72.261487, 41.282926 ], [ -72.317760, 41.277782 ], [ -72.327595, 41.278460 ], [ -72.333894, 41.282916 ], [ -72.341460, 41.280110 ], [ -72.348643, 41.277446 ], [ -72.348068, 41.269698 ], [ -72.386629, 41.261798 ], [ -72.398688, 41.278172 ], [ -72.405930, 41.278398 ], [ -72.451925, 41.278885 ], [ -72.472539, 41.270103 ], [ -72.485693, 41.270881 ], [ -72.499534, 41.265866 ], [ -72.506634, 41.260099 ], [ -72.518660, 41.261253 ], [ -72.521312, 41.265600 ], [ -72.529416, 41.264421 ], [ -72.533247, 41.262690 ], [ -72.536746, 41.256207 ], [ -72.537776, 41.255646 ], [ -72.546833, 41.250718 ], [ -72.547235, 41.250499 ], [ -72.570655, 41.267744 ], [ -72.571076, 41.268054 ], [ -72.571136, 41.268098 ], [ -72.583336, 41.271698 ], [ -72.585181, 41.271321 ], [ -72.585934, 41.271168 ], [ -72.586674, 41.271017 ], [ -72.587926, 41.270761 ], [ -72.589818, 41.270375 ], [ -72.590967, 41.270141 ], [ -72.598036, 41.268698 ], [ -72.607863, 41.270387 ], [ -72.610236, 41.270795 ], [ -72.617237, 41.271998 ], [ -72.617521, 41.271940 ], [ -72.617983, 41.271845 ], [ -72.631363, 41.269092 ], [ -72.641001, 41.267108 ], [ -72.641538, 41.266998 ], [ -72.642811, 41.266884 ], [ -72.650697, 41.266178 ], [ -72.653838, 41.265897 ], [ -72.653931, 41.265931 ], [ -72.654715, 41.266219 ], [ -72.662203, 41.268964 ], [ -72.662838, 41.269197 ], [ -72.667176, 41.268192 ], [ -72.671673, 41.267151 ], [ -72.672339, 41.266997 ], [ -72.674319, 41.265520 ], [ -72.684939, 41.257597 ], [ -72.685414, 41.252607 ], [ -72.685539, 41.251297 ], [ -72.689446, 41.247629 ], [ -72.690237, 41.246887 ], [ -72.690439, 41.246697 ], [ -72.693441, 41.245493 ], [ -72.694744, 41.244970 ], [ -72.695470, 41.244948 ], [ -72.701806, 41.244752 ], [ -72.706236, 41.244615 ], [ -72.707212, 41.244585 ], [ -72.708658, 41.244540 ], [ -72.708963, 41.244530 ], [ -72.709193, 41.244523 ], [ -72.710595, 41.244480 ], [ -72.710821, 41.244812 ], [ -72.713674, 41.249007 ], [ -72.711208, 41.251018 ], [ -72.712460, 41.254167 ], [ -72.722439, 41.259138 ], [ -72.732813, 41.254727 ], [ -72.754444, 41.266913 ], [ -72.757477, 41.266913 ], [ -72.786142, 41.264796 ], [ -72.818737, 41.252244 ], [ -72.819372, 41.254061 ], [ -72.826883, 41.256755 ], [ -72.847767, 41.256690 ], [ -72.850210, 41.255544 ], [ -72.854055, 41.247740 ], [ -72.861344, 41.245297 ], [ -72.881445, 41.242597 ], [ -72.895445, 41.243697 ], [ -72.900803, 41.245864 ], [ -72.904345, 41.247297 ], [ -72.905245, 41.248297 ], [ -72.903045, 41.252797 ], [ -72.902808, 41.252894 ], [ -72.894745, 41.256197 ], [ -72.894730, 41.256260 ], [ -72.893845, 41.259897 ], [ -72.896370, 41.263949 ], [ -72.903129, 41.274794 ], [ -72.907962, 41.282549 ], [ -72.908200, 41.282932 ], [ -72.916827, 41.282033 ], [ -72.917037, 41.281905 ], [ -72.920062, 41.280056 ], [ -72.920658, 41.271574 ], [ -72.920714, 41.270780 ], [ -72.920846, 41.268897 ], [ -72.931887, 41.261139 ], [ -72.933472, 41.260024 ], [ -72.935646, 41.258497 ], [ -72.956984, 41.252920 ], [ -72.959633, 41.252228 ], [ -72.961345, 41.251780 ], [ -72.962047, 41.251597 ], [ -72.983751, 41.235364 ], [ -72.985095, 41.234358 ], [ -72.986247, 41.233497 ], [ -72.997948, 41.222697 ], [ -73.003639, 41.215287 ], [ -73.007548, 41.210197 ], [ -73.013465, 41.205479 ], [ -73.013988, 41.205062 ], [ -73.014948, 41.204297 ], [ -73.020149, 41.204097 ], [ -73.020167, 41.204237 ], [ -73.020195, 41.204446 ], [ -73.020210, 41.204568 ], [ -73.020254, 41.204906 ], [ -73.020449, 41.206397 ], [ -73.022549, 41.207197 ], [ -73.024783, 41.207435 ], [ -73.045602, 41.209658 ], [ -73.050650, 41.210197 ], [ -73.054947, 41.208468 ], [ -73.059350, 41.206697 ], [ -73.077610, 41.195176 ], [ -73.079450, 41.194015 ], [ -73.091220, 41.184153 ], [ -73.092000, 41.183500 ], [ -73.092147, 41.183377 ], [ -73.104328, 41.173170 ], [ -73.105483, 41.172203 ], [ -73.105493, 41.172194 ], [ -73.107987, 41.168738 ], [ -73.110352, 41.159697 ], [ -73.109952, 41.156997 ], [ -73.108352, 41.153718 ], [ -73.111052, 41.150797 ], [ -73.130253, 41.146797 ], [ -73.164370, 41.158565 ], [ -73.170074, 41.160532 ], [ -73.170701, 41.164945 ], [ -73.177774, 41.166697 ], [ -73.202656, 41.158096 ], [ -73.228295, 41.142602 ], [ -73.235058, 41.143996 ], [ -73.247958, 41.126396 ], [ -73.262358, 41.117496 ], [ -73.286759, 41.127896 ], [ -73.296359, 41.125696 ], [ -73.311860, 41.116296 ], [ -73.330660, 41.109996 ], [ -73.372296, 41.104020 ], [ -73.392162, 41.087696 ], [ -73.400154, 41.086299 ], [ -73.413670, 41.073258 ], [ -73.435063, 41.056696 ], [ -73.450364, 41.057096 ], [ -73.468239, 41.051347 ], [ -73.477364, 41.035997 ], [ -73.493327, 41.048173 ], [ -73.516903, 41.038738 ], [ -73.516766, 41.029497 ], [ -73.522666, 41.019297 ], [ -73.528866, 41.016397 ], [ -73.531169, 41.021919 ], [ -73.530189, 41.028776 ], [ -73.532786, 41.031670 ], [ -73.535338, 41.031920 ], [ -73.551494, 41.024336 ], [ -73.561968, 41.016797 ], [ -73.567668, 41.010897 ], [ -73.570068, 41.001597 ], [ -73.583968, 41.000897 ], [ -73.584988, 41.010537 ], [ -73.595699, 41.015995 ], [ -73.603952, 41.015054 ], [ -73.643478, 41.002171 ], [ -73.651175, 40.995229 ], [ -73.657336, 40.985171 ], [ -73.654671, 41.011697 ], [ -73.655371, 41.012797 ], [ -73.670472, 41.030097 ], [ -73.679973, 41.041797 ], [ -73.687173, 41.050697 ], [ -73.694273, 41.059296 ], [ -73.727775, 41.100696 ], [ -73.639672, 41.141495 ], [ -73.632153, 41.144921 ], [ -73.614407, 41.153001 ], [ -73.514617, 41.198434 ], [ -73.509487, 41.200814 ], [ -73.482709, 41.212760 ], [ -73.550961, 41.295422 ], [ -73.544728, 41.366375 ], [ -73.543641, 41.376778 ], [ -73.537673, 41.433905 ], [ -73.537469, 41.435890 ], [ -73.536969, 41.441094 ], [ -73.536067, 41.451331 ], [ -73.535986, 41.453060 ], [ -73.535885, 41.455236 ], [ -73.535857, 41.455709 ], [ -73.535769, 41.457159 ], [ -73.534369, 41.475894 ], [ -73.534269, 41.476394 ], [ -73.534269, 41.476911 ], [ -73.534150, 41.478060 ], [ -73.534055, 41.478968 ], [ -73.533969, 41.479693 ], [ -73.530067, 41.527194 ], [ -73.521457, 41.616429 ], [ -73.517473, 41.666646 ], [ -73.510171, 41.758686 ], [ -73.505008, 41.823773 ], [ -73.504944, 41.824285 ], [ -73.487314, 42.049638 ], [ -73.294420, 42.046984 ], [ -73.293097, 42.046940 ], [ -73.231056, 42.044945 ], [ -73.229798, 42.044877 ], [ -73.127276, 42.041964 ], [ -73.053254, 42.039861 ], [ -73.008739, 42.039356 ], [ -72.863733, 42.037710 ], [ -72.863619, 42.037709 ], [ -72.813541, 42.036494 ], [ -72.816741, 41.997595 ], [ -72.774757, 42.002129 ], [ -72.766739, 42.002995 ], [ -72.766139, 42.007695 ], [ -72.758151, 42.020865 ], [ -72.757467, 42.020947 ], [ -72.755838, 42.036195 ], [ -72.714134, 42.036608 ], [ -72.695927, 42.036788 ], [ -72.509187, 42.034607 ], [ -72.397428, 42.033302 ] ] ] } }\n,\n{ \"type\": \"Feature\", \"properties\": { \"GEO_ID\": \"0400000US11\", \"STATE\": \"11\", \"NAME\": \"District of Columbia\", \"LSAD\": \"\", \"CENSUSAREA\": 61.048000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -77.032986, 38.839500 ], [ -77.031698, 38.850512 ], [ -77.040599, 38.871212 ], [ -77.068199, 38.899811 ], [ -77.090200, 38.904211 ], [ -77.101200, 38.911111 ], [ -77.119863, 38.934265 ], [ -77.119900, 38.934311 ], [ -77.100700, 38.948910 ], [ -77.054299, 38.985110 ], [ -77.040999, 38.995110 ], [ -77.036299, 38.991710 ], [ -77.015598, 38.975910 ], [ -77.013798, 38.974410 ], [ -77.008298, 38.970110 ], [ -77.002636, 38.965521 ], [ -77.002498, 38.965410 ], [ -76.941722, 38.918019 ], [ -76.909395, 38.892812 ], [ -76.910795, 38.891712 ], [ -76.919295, 38.885112 ], [ -76.920195, 38.884412 ], [ -76.949696, 38.861312 ], [ -76.953696, 38.858512 ], [ -77.001397, 38.821513 ], [ -77.024392, 38.802970 ], [ -77.038598, 38.791513 ], [ -77.032986, 38.839500 ] ] ] } }\n,\n{ \"type\": \"Feature\", \"properties\": { \"GEO_ID\": \"0400000US13\", \"STATE\": \"13\", \"NAME\": \"Georgia\", \"LSAD\": \"\", \"CENSUSAREA\": 57513.485000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -84.810477, 34.987607 ], [ -84.809184, 34.987569 ], [ -84.808127, 34.987592 ], [ -84.775852, 34.987800 ], [ -84.731022, 34.988088 ], [ -84.727434, 34.988020 ], [ -84.621483, 34.988329 ], [ -84.509886, 34.988010 ], [ -84.509052, 34.988033 ], [ -84.394903, 34.988030 ], [ -84.393935, 34.988068 ], [ -84.321869, 34.988408 ], [ -84.129555, 34.987504 ], [ -84.129455, 34.987504 ], [ -84.029954, 34.987321 ], [ -84.021357, 34.987430 ], [ -84.005457, 34.987440 ], [ -83.936646, 34.987485 ], [ -83.936413, 34.987485 ], [ -83.673621, 34.987111 ], [ -83.620185, 34.992091 ], [ -83.549381, 34.992492 ], [ -83.483064, 34.993737 ], [ -83.108714, 35.000768 ], [ -83.108535, 35.000771 ], [ -83.143261, 34.924756 ], [ -83.242962, 34.877749 ], [ -83.267293, 34.832748 ], [ -83.283151, 34.821328 ], [ -83.324060, 34.788691 ], [ -83.339129, 34.741266 ], [ -83.352422, 34.716111 ], [ -83.352485, 34.715993 ], [ -83.351392, 34.714456 ], [ -83.350976, 34.713243 ], [ -83.351293, 34.701703 ], [ -83.338194, 34.687924 ], [ -83.337867, 34.687681 ], [ -83.291683, 34.653396 ], [ -83.240669, 34.624507 ], [ -83.240676, 34.624307 ], [ -83.167523, 34.600424 ], [ -83.170978, 34.598798 ], [ -83.170278, 34.592398 ], [ -83.106874, 34.534053 ], [ -83.087189, 34.515939 ], [ -83.072746, 34.504349 ], [ -83.052161, 34.493062 ], [ -83.034712, 34.483495 ], [ -83.006848, 34.474376 ], [ -82.995284, 34.474549 ], [ -82.992671, 34.479072 ], [ -82.992215, 34.479198 ], [ -82.979568, 34.482702 ], [ -82.939067, 34.486202 ], [ -82.902665, 34.485902 ], [ -82.882864, 34.479003 ], [ -82.873831, 34.471508 ], [ -82.874864, 34.468891 ], [ -82.848651, 34.423844 ], [ -82.766078, 34.293509 ], [ -82.755028, 34.276067 ], [ -82.741980, 34.230196 ], [ -82.743461, 34.227343 ], [ -82.744415, 34.224913 ], [ -82.741920, 34.210063 ], [ -82.741491, 34.208709 ], [ -82.731881, 34.178363 ], [ -82.717507, 34.150504 ], [ -82.704140, 34.141007 ], [ -82.677320, 34.131657 ], [ -82.668113, 34.120160 ], [ -82.659077, 34.103544 ], [ -82.658561, 34.103118 ], [ -82.654019, 34.100346 ], [ -82.652175, 34.099704 ], [ -82.641252, 34.088914 ], [ -82.640701, 34.088341 ], [ -82.597079, 34.012390 ], [ -82.564582, 33.955810 ], [ -82.564483, 33.955744 ], [ -82.429164, 33.865844 ], [ -82.422803, 33.863754 ], [ -82.408354, 33.866320 ], [ -82.403881, 33.865477 ], [ -82.324480, 33.820033 ], [ -82.301457, 33.801864 ], [ -82.247472, 33.752591 ], [ -82.218649, 33.686299 ], [ -82.196583, 33.630582 ], [ -82.179854, 33.615945 ], [ -82.135046, 33.591044 ], [ -82.129080, 33.589925 ], [ -82.124841, 33.591274 ], [ -82.116630, 33.589723 ], [ -82.098816, 33.586358 ], [ -82.069039, 33.575382 ], [ -82.046335, 33.563830 ], [ -82.028238, 33.544934 ], [ -82.014293, 33.530313 ], [ -82.007638, 33.523335 ], [ -82.007138, 33.522835 ], [ -81.967037, 33.480636 ], [ -81.957934, 33.468632 ], [ -81.912572, 33.408811 ], [ -81.902737, 33.331242 ], [ -81.852136, 33.247544 ], [ -81.851975, 33.247408 ], [ -81.772251, 33.180120 ], [ -81.696934, 33.116551 ], [ -81.620287, 33.095408 ], [ -81.615756, 33.092534 ], [ -81.541831, 33.045654 ], [ -81.511690, 33.024506 ], [ -81.496637, 33.010224 ], [ -81.491495, 32.998572 ], [ -81.494736, 32.978998 ], [ -81.499830, 32.963816 ], [ -81.423772, 32.810514 ], [ -81.404949, 32.747027 ], [ -81.405134, 32.744964 ], [ -81.414761, 32.637440 ], [ -81.418431, 32.634704 ], [ -81.418660, 32.629392 ], [ -81.411906, 32.618410 ], [ -81.389338, 32.595436 ], [ -81.389258, 32.595385 ], [ -81.348155, 32.569294 ], [ -81.328753, 32.561228 ], [ -81.318255, 32.559722 ], [ -81.286776, 32.544831 ], [ -81.275415, 32.539457 ], [ -81.199029, 32.467286 ], [ -81.168032, 32.368391 ], [ -81.140932, 32.349393 ], [ -81.134332, 32.341693 ], [ -81.122333, 32.305395 ], [ -81.120333, 32.285796 ], [ -81.128034, 32.276297 ], [ -81.125457, 32.227130 ], [ -81.122034, 32.161803 ], [ -81.117234, 32.117605 ], [ -81.113334, 32.113205 ], [ -81.061850, 32.087935 ], [ -81.042833, 32.084508 ], [ -81.004115, 32.072225 ], [ -80.885517, 32.034600 ], [ -80.859111, 32.023693 ], [ -80.852276, 32.026676 ], [ -80.843130, 32.024226 ], [ -80.840549, 32.011306 ], [ -80.841913, 32.002643 ], [ -80.848441, 31.988279 ], [ -80.862814, 31.969346 ], [ -80.882814, 31.959075 ], [ -80.897687, 31.949065 ], [ -80.911207, 31.943769 ], [ -80.929101, 31.944964 ], [ -80.930279, 31.956705 ], [ -80.948491, 31.957230 ], [ -80.972392, 31.941270 ], [ -80.975714, 31.923602 ], [ -80.968494, 31.915822 ], [ -80.954469, 31.911768 ], [ -80.941359, 31.912984 ], [ -80.934508, 31.909180 ], [ -80.947294, 31.896210 ], [ -80.971434, 31.877941 ], [ -80.992690, 31.857641 ], [ -81.000317, 31.856744 ], [ -81.014478, 31.867474 ], [ -81.041548, 31.876198 ], [ -81.065255, 31.877095 ], [ -81.058596, 31.857811 ], [ -81.059070, 31.850106 ], [ -81.062790, 31.844740 ], [ -81.076178, 31.836132 ], [ -81.075812, 31.829031 ], [ -81.057181, 31.822687 ], [ -81.050946, 31.822383 ], [ -81.047940, 31.824881 ], [ -81.039808, 31.823000 ], [ -81.036958, 31.819558 ], [ -81.036873, 31.812721 ], [ -81.047345, 31.802865 ], [ -81.068116, 31.768735 ], [ -81.077057, 31.761256 ], [ -81.097402, 31.753126 ], [ -81.130634, 31.722692 ], [ -81.138448, 31.720934 ], [ -81.154686, 31.726203 ], [ -81.160670, 31.728144 ], [ -81.192784, 31.733245 ], [ -81.198394, 31.726070 ], [ -81.203572, 31.719448 ], [ -81.186303, 31.701509 ], [ -81.161084, 31.691401 ], [ -81.154624, 31.693874 ], [ -81.151888, 31.698411 ], [ -81.149369, 31.699304 ], [ -81.139394, 31.699917 ], [ -81.131137, 31.695774 ], [ -81.135608, 31.683491 ], [ -81.136408, 31.674832 ], [ -81.131728, 31.654484 ], [ -81.133493, 31.623348 ], [ -81.149970, 31.593476 ], [ -81.160364, 31.570436 ], [ -81.173079, 31.555908 ], [ -81.178822, 31.555530 ], [ -81.183252, 31.560058 ], [ -81.186114, 31.568032 ], [ -81.194380, 31.568101 ], [ -81.204315, 31.568183 ], [ -81.214536, 31.557601 ], [ -81.240699, 31.552313 ], [ -81.254218, 31.555940 ], [ -81.260076, 31.548280 ], [ -81.263905, 31.532579 ], [ -81.263437, 31.530932 ], [ -81.258809, 31.529060 ], [ -81.217948, 31.527284 ], [ -81.213519, 31.528152 ], [ -81.199518, 31.537596 ], [ -81.193016, 31.535833 ], [ -81.181592, 31.527697 ], [ -81.178310, 31.522410 ], [ -81.177254, 31.517074 ], [ -81.189643, 31.503588 ], [ -81.204883, 31.473124 ], [ -81.246911, 31.422784 ], [ -81.258616, 31.404425 ], [ -81.278798, 31.367214 ], [ -81.279338, 31.351127 ], [ -81.282923, 31.326491 ], [ -81.274513, 31.326237 ], [ -81.268027, 31.324218 ], [ -81.254820, 31.315452 ], [ -81.260958, 31.303910 ], [ -81.269906, 31.294489 ], [ -81.274688, 31.289454 ], [ -81.276862, 31.254734 ], [ -81.282842, 31.244330 ], [ -81.289136, 31.225487 ], [ -81.288403, 31.211065 ], [ -81.293359, 31.206332 ], [ -81.304957, 31.206173 ], [ -81.314183, 31.207938 ], [ -81.339028, 31.186918 ], [ -81.354880, 31.167204 ], [ -81.360791, 31.155903 ], [ -81.359349, 31.149166 ], [ -81.368241, 31.136534 ], [ -81.386830, 31.133214 ], [ -81.399677, 31.134113 ], [ -81.402096, 31.125383 ], [ -81.403732, 31.107115 ], [ -81.401209, 31.086143 ], [ -81.401267, 31.072781 ], [ -81.415123, 31.026718 ], [ -81.420474, 31.016703 ], [ -81.424732, 31.013678 ], [ -81.432475, 31.012991 ], [ -81.434710, 31.014641 ], [ -81.434923, 31.017804 ], [ -81.443170, 31.016661 ], [ -81.451444, 31.015515 ], [ -81.457795, 31.010259 ], [ -81.459240, 31.005692 ], [ -81.469298, 30.996028 ], [ -81.490586, 30.984952 ], [ -81.493651, 30.977528 ], [ -81.486966, 30.969602 ], [ -81.475789, 30.965976 ], [ -81.472321, 30.969899 ], [ -81.466814, 30.970910 ], [ -81.453568, 30.965573 ], [ -81.447388, 30.956732 ], [ -81.426929, 30.956615 ], [ -81.420108, 30.974076 ], [ -81.415825, 30.977192 ], [ -81.408484, 30.977718 ], [ -81.403409, 30.957914 ], [ -81.405153, 30.908203 ], [ -81.428577, 30.836336 ], [ -81.430835, 30.831156 ], [ -81.440130, 30.821369 ], [ -81.446927, 30.810390 ], [ -81.455287, 30.790930 ], [ -81.460061, 30.769912 ], [ -81.461065, 30.753684 ], [ -81.459470, 30.741979 ], [ -81.449375, 30.715601 ], [ -81.444124, 30.709714 ], [ -81.544618, 30.712636 ], [ -81.606221, 30.718135 ], [ -81.624298, 30.736194 ], [ -81.637222, 30.733835 ], [ -81.719927, 30.744634 ], [ -81.732627, 30.749934 ], [ -81.741278, 30.762681 ], [ -81.759338, 30.771377 ], [ -81.806652, 30.789683 ], [ -81.827014, 30.788933 ], [ -81.840375, 30.786384 ], [ -81.868608, 30.792754 ], [ -81.906014, 30.822176 ], [ -81.999836, 30.788348 ], [ -82.023213, 30.781987 ], [ -82.050432, 30.676266 ], [ -82.049401, 30.655296 ], [ -82.037609, 30.633271 ], [ -82.013290, 30.595665 ], [ -82.005477, 30.563495 ], [ -82.016990, 30.519358 ], [ -82.016103, 30.497355 ], [ -82.050031, 30.362490 ], [ -82.050069, 30.362338 ], [ -82.124835, 30.366564 ], [ -82.165192, 30.358035 ], [ -82.171508, 30.359869 ], [ -82.189583, 30.376213 ], [ -82.204151, 30.401330 ], [ -82.210291, 30.424590 ], [ -82.206040, 30.455507 ], [ -82.212330, 30.499558 ], [ -82.214385, 30.566958 ], [ -82.214847, 30.567009 ], [ -82.249841, 30.570863 ], [ -82.258100, 30.571559 ], [ -82.287343, 30.573458 ], [ -82.374844, 30.579004 ], [ -82.418915, 30.581745 ], [ -82.459544, 30.584272 ], [ -82.459792, 30.584287 ], [ -82.524899, 30.588189 ], [ -82.536233, 30.588885 ], [ -82.545055, 30.589361 ], [ -82.553159, 30.589934 ], [ -82.565476, 30.590622 ], [ -82.569237, 30.590965 ], [ -82.584002, 30.591796 ], [ -82.689271, 30.597719 ], [ -82.689539, 30.597734 ], [ -82.698618, 30.598232 ], [ -82.698902, 30.598271 ], [ -82.877259, 30.609024 ], [ -82.878779, 30.609082 ], [ -83.136616, 30.624346 ], [ -83.156170, 30.625504 ], [ -83.163309, 30.625895 ], [ -83.174411, 30.626444 ], [ -83.187391, 30.627223 ], [ -83.256218, 30.631279 ], [ -83.309249, 30.634405 ], [ -83.309250, 30.634405 ], [ -83.309455, 30.634417 ], [ -83.311647, 30.634577 ], [ -83.340852, 30.636336 ], [ -83.341011, 30.636346 ], [ -83.357703, 30.637359 ], [ -83.379460, 30.638680 ], [ -83.390062, 30.639333 ], [ -83.429477, 30.641519 ], [ -83.429584, 30.641496 ], [ -83.440021, 30.642023 ], [ -83.448895, 30.642410 ], [ -83.611667, 30.651255 ], [ -83.611720, 30.651258 ], [ -83.674058, 30.654747 ], [ -83.676773, 30.654905 ], [ -83.743729, 30.658396 ], [ -83.810536, 30.661880 ], [ -83.820886, 30.662612 ], [ -83.855216, 30.664412 ], [ -83.880220, 30.665832 ], [ -83.880317, 30.665807 ], [ -84.007391, 30.672097 ], [ -84.007454, 30.672100 ], [ -84.039707, 30.673819 ], [ -84.041810, 30.673878 ], [ -84.046605, 30.674200 ], [ -84.057228, 30.674705 ], [ -84.083753, 30.675954 ], [ -84.281210, 30.685256 ], [ -84.282562, 30.685316 ], [ -84.380719, 30.689673 ], [ -84.535042, 30.696523 ], [ -84.539370, 30.696775 ], [ -84.606249, 30.699872 ], [ -84.606386, 30.699865 ], [ -84.863465, 30.711487 ], [ -84.864693, 30.711542 ], [ -84.896122, 30.750591 ], [ -84.941925, 30.887988 ], [ -84.959626, 30.910587 ], [ -84.983527, 30.935486 ], [ -84.998628, 30.971386 ], [ -85.002368, 31.000682 ], [ -84.999428, 31.013843 ], [ -85.022121, 31.075480 ], [ -85.029736, 31.096163 ], [ -85.035615, 31.108192 ], [ -85.076628, 31.156927 ], [ -85.083582, 31.159630 ], [ -85.092106, 31.160293 ], [ -85.100207, 31.165490 ], [ -85.107516, 31.186451 ], [ -85.111871, 31.258388 ], [ -85.101561, 31.283362 ], [ -85.087651, 31.308677 ], [ -85.068065, 31.427586 ], [ -85.046859, 31.517451 ], [ -85.041305, 31.540987 ], [ -85.057473, 31.618624 ], [ -85.059534, 31.621717 ], [ -85.065236, 31.624351 ], [ -85.087029, 31.640966 ], [ -85.125530, 31.694965 ], [ -85.126530, 31.716764 ], [ -85.122230, 31.722764 ], [ -85.118930, 31.732664 ], [ -85.124501, 31.763081 ], [ -85.125230, 31.767063 ], [ -85.130731, 31.772263 ], [ -85.138668, 31.780425 ], [ -85.141331, 31.783163 ], [ -85.141831, 31.839861 ], [ -85.132931, 31.888260 ], [ -85.106630, 31.915159 ], [ -85.082130, 31.944658 ], [ -85.072330, 31.964758 ], [ -85.062246, 31.991857 ], [ -85.050212, 32.024196 ], [ -85.056029, 32.063055 ], [ -85.047865, 32.142033 ], [ -84.995929, 32.184852 ], [ -84.964828, 32.194952 ], [ -84.923638, 32.231539 ], [ -84.921650, 32.233306 ], [ -84.909052, 32.263540 ], [ -84.916611, 32.281177 ], [ -84.938680, 32.300708 ], [ -85.001874, 32.322015 ], [ -85.007103, 32.328362 ], [ -85.008096, 32.336677 ], [ -84.987386, 32.381201 ], [ -84.987278, 32.381623 ], [ -84.979431, 32.412244 ], [ -84.983831, 32.445643 ], [ -84.998231, 32.469842 ], [ -85.000779, 32.506548 ], [ -85.001030, 32.510157 ], [ -85.001052, 32.510477 ], [ -85.001324, 32.512973 ], [ -85.007100, 32.523868 ], [ -85.022509, 32.542923 ], [ -85.044606, 32.559499 ], [ -85.069583, 32.583930 ], [ -85.079935, 32.602889 ], [ -85.080288, 32.603577 ], [ -85.082454, 32.607022 ], [ -85.104790, 32.642542 ], [ -85.114737, 32.685634 ], [ -85.137136, 32.745168 ], [ -85.136776, 32.746512 ], [ -85.132040, 32.764211 ], [ -85.123421, 32.772248 ], [ -85.184131, 32.870525 ], [ -85.221868, 33.055538 ], [ -85.223261, 33.062580 ], [ -85.232378, 33.108077 ], [ -85.236509, 33.129562 ], [ -85.293902, 33.428079 ], [ -85.304439, 33.482884 ], [ -85.313999, 33.529807 ], [ -85.314091, 33.530218 ], [ -85.314994, 33.535898 ], [ -85.322497, 33.574167 ], [ -85.337974, 33.653111 ], [ -85.360491, 33.767958 ], [ -85.361844, 33.773951 ], [ -85.386693, 33.901697 ], [ -85.398837, 33.964129 ], [ -85.421731, 34.080821 ], [ -85.455057, 34.250689 ], [ -85.455371, 34.252854 ], [ -85.458071, 34.265736 ], [ -85.458693, 34.269437 ], [ -85.462304, 34.286365 ], [ -85.502316, 34.473954 ], [ -85.502454, 34.474527 ], [ -85.508384, 34.501212 ], [ -85.512108, 34.518252 ], [ -85.513699, 34.524133 ], [ -85.513709, 34.524170 ], [ -85.513930, 34.525192 ], [ -85.527127, 34.588684 ], [ -85.534423, 34.623789 ], [ -85.541264, 34.656701 ], [ -85.541267, 34.656783 ], [ -85.552454, 34.708138 ], [ -85.552482, 34.708321 ], [ -85.583145, 34.860371 ], [ -85.595163, 34.924171 ], [ -85.595191, 34.924331 ], [ -85.605165, 34.984678 ], [ -85.474472, 34.983972 ], [ -85.363919, 34.983375 ], [ -85.308257, 34.984375 ], [ -85.305457, 34.984475 ], [ -85.301488, 34.984475 ], [ -85.294500, 34.984651 ], [ -85.277556, 34.984975 ], [ -85.275856, 34.984975 ], [ -85.265055, 34.985075 ], [ -85.254955, 34.985175 ], [ -85.235555, 34.985475 ], [ -85.230354, 34.985475 ], [ -85.221854, 34.985475 ], [ -85.220554, 34.985575 ], [ -85.217854, 34.985675 ], [ -85.216554, 34.985675 ], [ -85.185905, 34.985995 ], [ -85.180553, 34.986075 ], [ -85.045183, 34.986883 ], [ -85.045052, 34.986859 ], [ -84.979860, 34.987647 ], [ -84.976973, 34.987669 ], [ -84.955623, 34.987830 ], [ -84.944420, 34.987864 ], [ -84.939306, 34.987916 ], [ -84.861314, 34.987791 ], [ -84.858032, 34.987746 ], [ -84.831799, 34.988004 ], [ -84.824010, 34.987707 ], [ -84.820478, 34.987913 ], [ -84.817279, 34.987753 ], [ -84.810742, 34.987615 ], [ -84.810477, 34.987607 ] ] ] } }\n,\n{ \"type\": \"Feature\", \"properties\": { \"GEO_ID\": \"0400000US15\", \"STATE\": \"15\", \"NAME\": \"Hawaii\", \"LSAD\": \"\", \"CENSUSAREA\": 6422.628000 }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [ [ [ [ -155.778234, 20.245743 ], [ -155.772734, 20.245409 ], [ -155.746893, 20.232325 ], [ -155.737004, 20.222773 ], [ -155.735822, 20.212417 ], [ -155.732704, 20.205392 ], [ -155.653966, 20.167360 ], [ -155.630382, 20.146916 ], [ -155.624565, 20.145911 ], [ -155.607797, 20.137987 ], [ -155.600909, 20.126573 ], [ -155.598033, 20.124539 ], [ -155.590923, 20.122497 ], [ -155.581680, 20.123617 ], [ -155.568368, 20.130545 ], [ -155.558933, 20.131570 ], [ -155.523661, 20.120028 ], [ -155.516795, 20.115230 ], [ -155.502561, 20.114155 ], [ -155.468211, 20.104296 ], [ -155.443957, 20.095318 ], [ -155.405459, 20.078772 ], [ -155.402400, 20.075541 ], [ -155.387578, 20.067119 ], [ -155.330210, 20.038517 ], [ -155.295480, 20.024438 ], [ -155.282629, 20.021969 ], [ -155.270316, 20.014525 ], [ -155.240933, 19.990173 ], [ -155.204486, 19.969438 ], [ -155.194593, 19.958368 ], [ -155.179939, 19.949372 ], [ -155.149215, 19.922872 ], [ -155.144394, 19.920523 ], [ -155.131235, 19.906801 ], [ -155.124618, 19.897288 ], [ -155.121750, 19.886099 ], [ -155.107541, 19.872467 ], [ -155.098716, 19.867811 ], [ -155.095032, 19.867882 ], [ -155.086341, 19.855399 ], [ -155.084357, 19.849736 ], [ -155.085674, 19.838584 ], [ -155.088979, 19.826656 ], [ -155.094414, 19.814910 ], [ -155.092070, 19.799409 ], [ -155.091216, 19.776368 ], [ -155.093517, 19.771832 ], [ -155.093387, 19.737751 ], [ -155.087118, 19.728013 ], [ -155.079426, 19.726193 ], [ -155.063972, 19.728917 ], [ -155.045382, 19.739824 ], [ -155.006423, 19.739286 ], [ -154.997278, 19.728580 ], [ -154.987168, 19.708524 ], [ -154.981102, 19.690687 ], [ -154.984718, 19.672161 ], [ -154.983778, 19.641647 ], [ -154.974342, 19.633201 ], [ -154.963933, 19.627605 ], [ -154.950359, 19.626461 ], [ -154.947874, 19.624250 ], [ -154.947718, 19.621947 ], [ -154.951014, 19.613614 ], [ -154.947106, 19.604856 ], [ -154.933940, 19.597505 ], [ -154.928205, 19.592702 ], [ -154.924422, 19.586553 ], [ -154.903542, 19.570622 ], [ -154.875000, 19.556797 ], [ -154.852618, 19.549172 ], [ -154.837384, 19.538354 ], [ -154.826732, 19.537626 ], [ -154.814417, 19.530090 ], [ -154.809561, 19.522377 ], [ -154.809379, 19.519086 ], [ -154.822968, 19.481290 ], [ -154.838545, 19.463642 ], [ -154.868540, 19.438126 ], [ -154.887817, 19.426425 ], [ -154.928772, 19.397646 ], [ -154.944185, 19.381852 ], [ -154.964619, 19.365646 ], [ -154.980861, 19.349291 ], [ -155.020537, 19.331317 ], [ -155.061729, 19.316636 ], [ -155.113272, 19.290613 ], [ -155.133700, 19.276099 ], [ -155.159635, 19.268375 ], [ -155.172413, 19.269060 ], [ -155.187427, 19.266156 ], [ -155.196260, 19.261295 ], [ -155.205892, 19.260907 ], [ -155.243961, 19.271313 ], [ -155.264619, 19.274213 ], [ -155.296761, 19.266289 ], [ -155.303808, 19.261835 ], [ -155.313370, 19.250698 ], [ -155.341268, 19.234039 ], [ -155.349148, 19.217756 ], [ -155.360631, 19.208930 ], [ -155.378638, 19.202435 ], [ -155.390701, 19.201171 ], [ -155.417369, 19.187858 ], [ -155.427093, 19.179546 ], [ -155.432519, 19.170623 ], [ -155.453516, 19.151952 ], [ -155.465663, 19.146964 ], [ -155.505281, 19.137908 ], [ -155.514740, 19.132501 ], [ -155.512140, 19.128174 ], [ -155.512137, 19.124296 ], [ -155.519652, 19.117025 ], [ -155.526136, 19.115889 ], [ -155.528902, 19.113710 ], [ -155.544806, 19.091059 ], [ -155.551129, 19.088780 ], [ -155.557817, 19.082130 ], [ -155.555326, 19.069377 ], [ -155.555177, 19.053932 ], [ -155.557371, 19.046565 ], [ -155.566446, 19.032531 ], [ -155.576599, 19.027412 ], [ -155.581903, 19.022240 ], [ -155.596032, 18.998833 ], [ -155.596521, 18.980654 ], [ -155.601866, 18.971572 ], [ -155.613966, 18.970399 ], [ -155.625256, 18.961951 ], [ -155.625000, 18.959934 ], [ -155.638054, 18.941723 ], [ -155.658486, 18.924835 ], [ -155.672005, 18.917466 ], [ -155.681825, 18.918694 ], [ -155.687716, 18.923358 ], [ -155.690171, 18.932195 ], [ -155.693117, 18.940542 ], [ -155.726043, 18.969437 ], [ -155.763598, 18.981837 ], [ -155.806109, 19.013967 ], [ -155.853943, 19.023762 ], [ -155.881550, 19.036644 ], [ -155.884077, 19.039266 ], [ -155.886278, 19.055760 ], [ -155.903693, 19.080777 ], [ -155.908355, 19.081138 ], [ -155.921389, 19.121183 ], [ -155.917292, 19.155963 ], [ -155.903339, 19.217792 ], [ -155.904910, 19.230147 ], [ -155.902565, 19.258427 ], [ -155.895435, 19.274639 ], [ -155.890842, 19.298905 ], [ -155.887356, 19.337101 ], [ -155.888701, 19.348031 ], [ -155.898792, 19.377984 ], [ -155.913849, 19.401107 ], [ -155.909087, 19.415455 ], [ -155.921707, 19.430550 ], [ -155.924269, 19.438794 ], [ -155.925166, 19.468081 ], [ -155.922609, 19.478611 ], [ -155.924124, 19.481406 ], [ -155.930523, 19.484921 ], [ -155.935641, 19.485628 ], [ -155.936403, 19.481905 ], [ -155.939145, 19.481577 ], [ -155.951490, 19.486649 ], [ -155.952897, 19.488805 ], [ -155.953663, 19.510003 ], [ -155.960457, 19.546612 ], [ -155.962264, 19.551779 ], [ -155.965211, 19.554745 ], [ -155.969350, 19.555963 ], [ -155.970969, 19.586328 ], [ -155.978206, 19.608159 ], [ -155.997728, 19.642816 ], [ -156.028982, 19.650098 ], [ -156.032928, 19.653905 ], [ -156.034994, 19.659360 ], [ -156.033326, 19.669230 ], [ -156.027427, 19.672154 ], [ -156.029281, 19.678908 ], [ -156.036079, 19.690252 ], [ -156.047960, 19.698938 ], [ -156.051652, 19.703649 ], [ -156.052485, 19.718667 ], [ -156.064364, 19.730766 ], [ -156.057220, 19.742536 ], [ -156.052315, 19.756836 ], [ -156.049651, 19.780452 ], [ -156.021732, 19.802200 ], [ -156.006267, 19.817580 ], [ -155.982821, 19.845651 ], [ -155.976651, 19.850530 ], [ -155.964817, 19.855183 ], [ -155.949251, 19.857034 ], [ -155.945297, 19.853443 ], [ -155.940311, 19.852305 ], [ -155.925843, 19.858928 ], [ -155.926938, 19.870221 ], [ -155.925490, 19.875000 ], [ -155.915662, 19.887126 ], [ -155.901987, 19.912081 ], [ -155.894099, 19.923135 ], [ -155.894474, 19.926927 ], [ -155.892533, 19.932162 ], [ -155.866919, 19.954172 ], [ -155.856588, 19.968885 ], [ -155.840708, 19.976952 ], [ -155.838692, 19.975527 ], [ -155.835312, 19.976078 ], [ -155.831948, 19.982775 ], [ -155.828965, 19.995542 ], [ -155.825473, 20.025944 ], [ -155.828182, 20.035424 ], [ -155.850385, 20.062506 ], [ -155.866931, 20.078652 ], [ -155.884190, 20.106750 ], [ -155.899149, 20.145728 ], [ -155.906035, 20.205157 ], [ -155.901452, 20.235787 ], [ -155.890663, 20.255240 ], [ -155.882631, 20.263026 ], [ -155.873921, 20.267744 ], [ -155.853293, 20.271548 ], [ -155.811459, 20.260320 ], [ -155.783242, 20.246395 ], [ -155.778234, 20.245743 ] ] ], [ [ [ -160.555771, 21.668287 ], [ -160.551041, 21.670101 ], [ -160.543320, 21.667128 ], [ -160.542404, 21.648081 ], [ -160.549316, 21.645353 ], [ -160.554123, 21.649546 ], [ -160.555771, 21.668287 ] ] ], [ [ [ -160.125000, 21.959090 ], [ -160.122262, 21.962881 ], [ -160.112746, 21.995245 ], [ -160.096450, 22.001489 ], [ -160.072123, 22.003334 ], [ -160.058543, 21.996380 ], [ -160.051992, 21.983681 ], [ -160.052729, 21.980321 ], [ -160.056336, 21.977939 ], [ -160.060549, 21.976729 ], [ -160.063349, 21.978354 ], [ -160.065811, 21.976562 ], [ -160.078393, 21.955153 ], [ -160.085787, 21.927295 ], [ -160.080012, 21.910808 ], [ -160.079065, 21.896080 ], [ -160.098897, 21.884711 ], [ -160.124283, 21.876789 ], [ -160.147609, 21.872814 ], [ -160.161620, 21.864746 ], [ -160.174796, 21.846923 ], [ -160.189782, 21.822450 ], [ -160.205211, 21.789053 ], [ -160.200427, 21.786479 ], [ -160.205851, 21.779518 ], [ -160.218044, 21.783755 ], [ -160.234780, 21.795418 ], [ -160.249610, 21.815145 ], [ -160.244943, 21.848943 ], [ -160.231028, 21.886263 ], [ -160.228965, 21.889117 ], [ -160.213830, 21.899193 ], [ -160.205528, 21.907507 ], [ -160.202716, 21.912422 ], [ -160.190158, 21.923592 ], [ -160.167471, 21.932863 ], [ -160.137050, 21.948632 ], [ -160.127302, 21.955508 ], [ -160.125000, 21.959090 ] ] ], [ [ [ -159.431707, 22.220015 ], [ -159.407320, 22.230555 ], [ -159.388119, 22.223252 ], [ -159.385977, 22.220009 ], [ -159.367563, 22.214906 ], [ -159.359842, 22.214831 ], [ -159.357227, 22.217744 ], [ -159.353795, 22.217669 ], [ -159.339964, 22.208519 ], [ -159.315613, 22.186817 ], [ -159.308855, 22.155555 ], [ -159.297808, 22.149748 ], [ -159.295875, 22.144547 ], [ -159.295271, 22.130390 ], [ -159.297143, 22.113815 ], [ -159.317451, 22.080944 ], [ -159.321667, 22.063411 ], [ -159.324775, 22.058670 ], [ -159.333267, 22.054639 ], [ -159.337996, 22.046575 ], [ -159.341401, 22.028978 ], [ -159.333224, 21.973005 ], [ -159.333109, 21.964176 ], [ -159.334714, 21.961099 ], [ -159.350828, 21.950817 ], [ -159.356613, 21.939546 ], [ -159.382349, 21.924479 ], [ -159.408284, 21.897781 ], [ -159.425862, 21.884527 ], [ -159.446599, 21.871647 ], [ -159.471962, 21.882920 ], [ -159.490914, 21.888898 ], [ -159.517973, 21.890996 ], [ -159.555415, 21.891355 ], [ -159.574991, 21.896585 ], [ -159.577784, 21.900486 ], [ -159.584272, 21.899038 ], [ -159.610241, 21.898356 ], [ -159.637849, 21.917166 ], [ -159.648132, 21.932970 ], [ -159.671872, 21.957038 ], [ -159.681493, 21.960054 ], [ -159.705255, 21.963427 ], [ -159.720140, 21.970789 ], [ -159.758218, 21.980694 ], [ -159.765735, 21.986593 ], [ -159.788139, 22.018411 ], [ -159.790932, 22.031177 ], [ -159.786543, 22.063690 ], [ -159.780096, 22.072567 ], [ -159.748159, 22.100388 ], [ -159.741223, 22.115666 ], [ -159.733457, 22.142756 ], [ -159.726043, 22.152171 ], [ -159.699978, 22.165252 ], [ -159.669840, 22.170782 ], [ -159.608794, 22.207878 ], [ -159.591596, 22.219456 ], [ -159.583965, 22.226680 ], [ -159.559643, 22.229185 ], [ -159.554166, 22.228212 ], [ -159.548594, 22.226263 ], [ -159.541150, 22.216764 ], [ -159.534594, 22.219403 ], [ -159.523769, 22.217602 ], [ -159.519410, 22.215646 ], [ -159.518348, 22.211182 ], [ -159.515574, 22.208008 ], [ -159.507811, 22.205987 ], [ -159.501055, 22.211064 ], [ -159.500821, 22.225538 ], [ -159.488558, 22.233170 ], [ -159.480158, 22.232715 ], [ -159.467007, 22.226529 ], [ -159.456190, 22.228811 ], [ -159.441809, 22.226321 ], [ -159.431707, 22.220015 ] ] ], [ [ [ -157.014553, 21.185503 ], [ -156.999108, 21.182221 ], [ -156.991318, 21.185510 ], [ -156.987768, 21.189350 ], [ -156.982343, 21.207798 ], [ -156.984464, 21.210063 ], [ -156.984032, 21.212198 ], [ -156.974002, 21.218503 ], [ -156.969064, 21.217018 ], [ -156.962847, 21.212131 ], [ -156.951654, 21.191662 ], [ -156.950808, 21.182636 ], [ -156.946159, 21.175963 ], [ -156.918248, 21.168279 ], [ -156.903466, 21.164210 ], [ -156.898174, 21.165940 ], [ -156.896130, 21.169561 ], [ -156.896537, 21.172208 ], [ -156.867944, 21.164520 ], [ -156.841592, 21.167926 ], [ -156.821944, 21.174693 ], [ -156.771495, 21.180053 ], [ -156.742231, 21.176214 ], [ -156.738341, 21.172020 ], [ -156.736648, 21.161880 ], [ -156.719386, 21.163911 ], [ -156.712696, 21.161547 ], [ -156.714158, 21.152238 ], [ -156.726033, 21.132360 ], [ -156.748932, 21.108600 ], [ -156.775995, 21.089751 ], [ -156.790815, 21.081686 ], [ -156.794136, 21.075796 ], [ -156.835351, 21.063360 ], [ -156.865795, 21.057801 ], [ -156.877137, 21.049300 ], [ -156.891946, 21.051831 ], [ -156.895170, 21.055771 ], [ -156.953719, 21.067761 ], [ -157.002950, 21.083282 ], [ -157.026170, 21.089015 ], [ -157.032045, 21.091094 ], [ -157.037667, 21.097864 ], [ -157.079696, 21.105835 ], [ -157.095373, 21.106360 ], [ -157.125000, 21.102600 ], [ -157.143483, 21.096632 ], [ -157.254061, 21.090601 ], [ -157.298054, 21.096917 ], [ -157.313343, 21.105755 ], [ -157.299187, 21.132488 ], [ -157.299471, 21.135972 ], [ -157.293774, 21.146127 ], [ -157.284346, 21.157755 ], [ -157.276474, 21.163175 ], [ -157.274504, 21.162762 ], [ -157.259911, 21.174875 ], [ -157.254709, 21.181376 ], [ -157.251007, 21.190952 ], [ -157.250260, 21.207739 ], [ -157.256935, 21.215665 ], [ -157.261457, 21.217661 ], [ -157.263163, 21.220873 ], [ -157.260690, 21.225684 ], [ -157.257085, 21.227268 ], [ -157.241534, 21.220969 ], [ -157.226445, 21.220185 ], [ -157.212082, 21.221848 ], [ -157.202125, 21.219298 ], [ -157.192439, 21.207644 ], [ -157.185553, 21.205602 ], [ -157.157103, 21.200706 ], [ -157.148125, 21.200745 ], [ -157.144627, 21.202555 ], [ -157.128207, 21.201488 ], [ -157.113438, 21.197375 ], [ -157.097971, 21.198012 ], [ -157.064264, 21.189076 ], [ -157.053053, 21.188754 ], [ -157.047757, 21.190739 ], [ -157.039987, 21.190909 ], [ -157.014553, 21.185503 ] ] ], [ [ [ -156.544169, 20.522802 ], [ -156.550016, 20.520273 ], [ -156.559994, 20.521892 ], [ -156.586238, 20.511711 ], [ -156.603844, 20.524372 ], [ -156.631143, 20.514943 ], [ -156.642347, 20.508285 ], [ -156.647464, 20.512017 ], [ -156.668809, 20.504738 ], [ -156.682939, 20.506775 ], [ -156.703673, 20.527237 ], [ -156.702265, 20.532451 ], [ -156.696662, 20.541646 ], [ -156.680100, 20.557021 ], [ -156.651567, 20.565574 ], [ -156.614598, 20.587109 ], [ -156.610734, 20.593770 ], [ -156.576871, 20.606570 ], [ -156.567140, 20.604895 ], [ -156.553604, 20.594729 ], [ -156.543034, 20.580115 ], [ -156.542808, 20.573674 ], [ -156.548909, 20.568590 ], [ -156.556021, 20.542657 ], [ -156.553018, 20.539382 ], [ -156.540189, 20.534741 ], [ -156.539643, 20.527644 ], [ -156.544169, 20.522802 ] ] ], [ [ [ -156.612012, 21.024770 ], [ -156.612065, 21.027273 ], [ -156.606238, 21.034371 ], [ -156.592256, 21.032880 ], [ -156.580448, 21.020172 ], [ -156.562773, 21.016167 ], [ -156.549813, 21.004939 ], [ -156.546291, 21.005082 ], [ -156.528246, 20.967757 ], [ -156.518707, 20.954662 ], [ -156.512226, 20.951280 ], [ -156.510391, 20.940358 ], [ -156.507913, 20.937886 ], [ -156.499480, 20.934577 ], [ -156.495883, 20.928005 ], [ -156.493263, 20.916011 ], [ -156.481055, 20.898199 ], [ -156.474796, 20.894546 ], [ -156.422668, 20.911631 ], [ -156.386045, 20.919563 ], [ -156.374297, 20.927616 ], [ -156.370729, 20.932669 ], [ -156.352649, 20.941414 ], [ -156.345655, 20.941596 ], [ -156.342365, 20.938737 ], [ -156.332817, 20.946450 ], [ -156.324578, 20.950184 ], [ -156.307198, 20.942739 ], [ -156.286332, 20.947701 ], [ -156.275116, 20.937361 ], [ -156.263107, 20.940888 ], [ -156.242555, 20.937838 ], [ -156.230159, 20.931936 ], [ -156.230089, 20.917864 ], [ -156.226757, 20.916677 ], [ -156.222062, 20.918309 ], [ -156.217953, 20.916573 ], [ -156.216341, 20.907035 ], [ -156.173103, 20.876926 ], [ -156.170458, 20.874605 ], [ -156.166746, 20.865646 ], [ -156.132669, 20.861369 ], [ -156.129381, 20.847513 ], [ -156.115735, 20.827301 ], [ -156.100123, 20.828502 ], [ -156.090291, 20.831872 ], [ -156.059788, 20.810540 ], [ -156.033287, 20.808246 ], [ -156.003532, 20.795545 ], [ -156.002947, 20.789418 ], [ -155.987944, 20.776552 ], [ -155.984587, 20.767496 ], [ -155.986851, 20.758577 ], [ -155.985413, 20.744245 ], [ -155.987216, 20.722717 ], [ -155.991534, 20.713654 ], [ -156.001870, 20.698064 ], [ -156.014150, 20.685681 ], [ -156.020044, 20.686857 ], [ -156.030702, 20.682452 ], [ -156.040341, 20.672719 ], [ -156.043786, 20.664902 ], [ -156.053385, 20.654320 ], [ -156.059753, 20.652044 ], [ -156.081472, 20.654387 ], [ -156.089365, 20.648519 ], [ -156.120985, 20.633685 ], [ -156.129898, 20.627523 ], [ -156.142665, 20.623605 ], [ -156.144588, 20.624032 ], [ -156.148085, 20.629067 ], [ -156.156772, 20.629639 ], [ -156.169732, 20.627358 ], [ -156.173393, 20.624100 ], [ -156.184556, 20.629719 ], [ -156.192938, 20.631769 ], [ -156.210258, 20.628518 ], [ -156.225338, 20.622940 ], [ -156.236145, 20.615950 ], [ -156.265921, 20.601629 ], [ -156.284391, 20.596488 ], [ -156.288037, 20.592030 ], [ -156.293454, 20.588783 ], [ -156.302692, 20.586199 ], [ -156.322944, 20.588273 ], [ -156.351716, 20.586970 ], [ -156.359634, 20.581977 ], [ -156.370725, 20.578760 ], [ -156.377633, 20.578427 ], [ -156.415313, 20.586099 ], [ -156.417523, 20.589728 ], [ -156.415746, 20.594044 ], [ -156.417799, 20.598682 ], [ -156.423141, 20.602079 ], [ -156.427708, 20.598873 ], [ -156.431872, 20.598143 ], [ -156.438385, 20.601337 ], [ -156.444242, 20.607941 ], [ -156.442884, 20.613842 ], [ -156.450651, 20.642212 ], [ -156.445894, 20.649270 ], [ -156.443673, 20.656018 ], [ -156.448656, 20.704739 ], [ -156.451038, 20.725469 ], [ -156.452895, 20.731287 ], [ -156.458438, 20.736676 ], [ -156.462242, 20.753952 ], [ -156.462058, 20.772571 ], [ -156.464043, 20.781667 ], [ -156.473562, 20.790756 ], [ -156.489496, 20.798339 ], [ -156.501688, 20.799933 ], [ -156.506026, 20.799463 ], [ -156.515994, 20.794234 ], [ -156.525215, 20.780821 ], [ -156.537752, 20.778408 ], [ -156.631794, 20.821240 ], [ -156.678634, 20.870541 ], [ -156.688969, 20.888673 ], [ -156.687804, 20.890720 ], [ -156.688132, 20.906325 ], [ -156.691334, 20.912440 ], [ -156.697418, 20.916368 ], [ -156.699890, 20.920629 ], [ -156.694110, 20.952708 ], [ -156.680905, 20.980262 ], [ -156.665514, 21.007054 ], [ -156.652419, 21.008994 ], [ -156.645966, 21.014416 ], [ -156.642592, 21.019936 ], [ -156.644167, 21.022312 ], [ -156.642809, 21.027583 ], [ -156.619581, 21.027793 ], [ -156.612012, 21.024770 ] ] ], [ [ [ -157.010001, 20.929757 ], [ -156.989813, 20.932127 ], [ -156.971604, 20.926254 ], [ -156.937529, 20.925274 ], [ -156.918450, 20.922546 ], [ -156.897169, 20.915395 ], [ -156.837047, 20.863575 ], [ -156.825237, 20.850731 ], [ -156.809576, 20.826036 ], [ -156.808469, 20.820396 ], [ -156.809463, 20.809169 ], [ -156.817427, 20.794606 ], [ -156.838321, 20.764575 ], [ -156.846413, 20.760201 ], [ -156.851481, 20.760069 ], [ -156.869753, 20.754701 ], [ -156.890295, 20.744855 ], [ -156.909081, 20.739533 ], [ -156.949009, 20.738997 ], [ -156.967890, 20.735080 ], [ -156.984747, 20.756677 ], [ -156.994001, 20.786671 ], [ -156.988933, 20.815496 ], [ -156.991834, 20.826603 ], [ -157.006243, 20.849603 ], [ -157.010911, 20.854476 ], [ -157.054552, 20.877219 ], [ -157.059663, 20.884634 ], [ -157.061128, 20.890635 ], [ -157.062511, 20.904385 ], [ -157.059130, 20.913407 ], [ -157.035789, 20.927078 ], [ -157.025626, 20.929528 ], [ -157.010001, 20.929757 ] ] ], [ [ [ -158.044485, 21.306011 ], [ -158.088300, 21.298800 ], [ -158.103300, 21.297900 ], [ -158.112700, 21.301900 ], [ -158.121100, 21.316900 ], [ -158.122500, 21.322400 ], [ -158.111949, 21.326622 ], [ -158.114196, 21.331123 ], [ -158.119427, 21.334594 ], [ -158.125459, 21.330264 ], [ -158.133240, 21.359207 ], [ -158.140300, 21.373800 ], [ -158.149719, 21.385208 ], [ -158.161743, 21.396282 ], [ -158.179200, 21.404300 ], [ -158.181274, 21.409626 ], [ -158.181000, 21.420868 ], [ -158.182648, 21.430073 ], [ -158.192352, 21.448040 ], [ -158.205383, 21.459793 ], [ -158.219446, 21.469780 ], [ -158.233000, 21.487600 ], [ -158.231171, 21.523857 ], [ -158.231750, 21.533035 ], [ -158.234314, 21.540058 ], [ -158.250671, 21.557373 ], [ -158.279510, 21.575794 ], [ -158.277679, 21.578789 ], [ -158.254425, 21.582684 ], [ -158.190704, 21.585892 ], [ -158.170000, 21.582300 ], [ -158.125610, 21.586739 ], [ -158.106720, 21.596577 ], [ -158.106689, 21.603024 ], [ -158.109500, 21.605700 ], [ -158.108185, 21.607487 ], [ -158.079895, 21.628101 ], [ -158.066800, 21.643700 ], [ -158.066711, 21.652340 ], [ -158.063900, 21.658400 ], [ -158.037200, 21.684300 ], [ -158.018127, 21.699955 ], [ -157.992300, 21.708000 ], [ -157.987030, 21.712494 ], [ -157.968628, 21.712704 ], [ -157.947174, 21.689568 ], [ -157.939000, 21.669000 ], [ -157.930100, 21.655200 ], [ -157.924591, 21.651183 ], [ -157.922800, 21.636100 ], [ -157.923800, 21.629300 ], [ -157.910797, 21.611183 ], [ -157.900574, 21.605885 ], [ -157.877350, 21.575277 ], [ -157.878601, 21.560181 ], [ -157.872528, 21.557568 ], [ -157.866900, 21.563700 ], [ -157.856140, 21.560661 ], [ -157.852570, 21.557514 ], [ -157.836945, 21.529945 ], [ -157.837372, 21.512085 ], [ -157.849579, 21.509598 ], [ -157.852625, 21.499971 ], [ -157.845490, 21.466747 ], [ -157.840990, 21.459483 ], [ -157.824890, 21.455379 ], [ -157.816300, 21.450200 ], [ -157.813900, 21.440300 ], [ -157.805900, 21.430100 ], [ -157.786513, 21.415633 ], [ -157.779846, 21.417309 ], [ -157.774455, 21.421352 ], [ -157.772209, 21.431236 ], [ -157.774905, 21.453698 ], [ -157.772209, 21.457741 ], [ -157.764572, 21.461335 ], [ -157.754239, 21.461335 ], [ -157.737617, 21.459089 ], [ -157.731777, 21.455944 ], [ -157.731328, 21.444713 ], [ -157.735820, 21.438424 ], [ -157.740762, 21.424048 ], [ -157.741211, 21.414614 ], [ -157.738600, 21.404300 ], [ -157.730191, 21.401871 ], [ -157.728221, 21.402104 ], [ -157.726421, 21.402845 ], [ -157.724324, 21.403311 ], [ -157.723794, 21.403290 ], [ -157.723286, 21.403227 ], [ -157.722735, 21.403121 ], [ -157.722544, 21.403036 ], [ -157.721845, 21.401596 ], [ -157.721083, 21.399541 ], [ -157.718900, 21.396100 ], [ -157.708900, 21.383300 ], [ -157.708700, 21.379300 ], [ -157.712600, 21.368900 ], [ -157.710600, 21.358500 ], [ -157.708800, 21.353400 ], [ -157.697100, 21.336400 ], [ -157.693800, 21.332900 ], [ -157.661900, 21.313100 ], [ -157.651800, 21.313900 ], [ -157.652629, 21.308709 ], [ -157.653700, 21.302000 ], [ -157.694600, 21.273900 ], [ -157.694400, 21.266500 ], [ -157.700100, 21.264000 ], [ -157.709700, 21.262100 ], [ -157.713900, 21.263800 ], [ -157.714200, 21.266500 ], [ -157.711400, 21.272000 ], [ -157.712200, 21.281400 ], [ -157.714300, 21.284500 ], [ -157.721300, 21.286900 ], [ -157.757200, 21.278000 ], [ -157.765000, 21.278900 ], [ -157.778200, 21.273500 ], [ -157.793100, 21.260400 ], [ -157.809600, 21.257700 ], [ -157.821100, 21.260600 ], [ -157.824100, 21.264600 ], [ -157.825300, 21.271400 ], [ -157.831900, 21.279500 ], [ -157.845700, 21.290000 ], [ -157.890000, 21.306500 ], [ -157.894518, 21.319632 ], [ -157.898969, 21.327391 ], [ -157.904820, 21.329172 ], [ -157.918939, 21.318615 ], [ -157.917921, 21.313781 ], [ -157.913469, 21.310983 ], [ -157.910925, 21.305768 ], [ -157.952263, 21.306531 ], [ -157.950736, 21.312509 ], [ -157.951881, 21.318742 ], [ -157.967971, 21.327986 ], [ -157.973334, 21.327426 ], [ -157.989424, 21.317984 ], [ -158.024500, 21.309300 ], [ -158.044485, 21.306011 ] ] ] ] } }\n,\n{ \"type\": \"Feature\", \"properties\": { \"GEO_ID\": \"0400000US17\", \"STATE\": \"17\", \"NAME\": \"Illinois\", \"LSAD\": \"\", \"CENSUSAREA\": 55518.930000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -89.366031, 42.500274 ], [ -89.361561, 42.500012 ], [ -89.290896, 42.498853 ], [ -89.250759, 42.497994 ], [ -89.246972, 42.498130 ], [ -89.228279, 42.498047 ], [ -89.226270, 42.497957 ], [ -89.166728, 42.497256 ], [ -89.164905, 42.497347 ], [ -89.125111, 42.496957 ], [ -89.120365, 42.496992 ], [ -89.116949, 42.496910 ], [ -89.099012, 42.496499 ], [ -89.071141, 42.496208 ], [ -89.042898, 42.496255 ], [ -89.013804, 42.496097 ], [ -89.013667, 42.496087 ], [ -88.992977, 42.496026 ], [ -88.992659, 42.496025 ], [ -88.943264, 42.495114 ], [ -88.940391, 42.495046 ], [ -88.940388, 42.495046 ], [ -88.776496, 42.494020 ], [ -88.707380, 42.493587 ], [ -88.707378, 42.493587 ], [ -88.506912, 42.494883 ], [ -88.470597, 42.494672 ], [ -88.461397, 42.494618 ], [ -88.417396, 42.494618 ], [ -88.304692, 42.494773 ], [ -88.271691, 42.494818 ], [ -88.216900, 42.495923 ], [ -88.200172, 42.496016 ], [ -88.199521, 42.496013 ], [ -88.049782, 42.495319 ], [ -87.990180, 42.494519 ], [ -87.971279, 42.494019 ], [ -87.900242, 42.493020 ], [ -87.843594, 42.492307 ], [ -87.815872, 42.491920 ], [ -87.800561, 42.491920 ], [ -87.800477, 42.491920 ], [ -87.800317, 42.490578 ], [ -87.798971, 42.479278 ], [ -87.798230, 42.473054 ], [ -87.798071, 42.471721 ], [ -87.800752, 42.445867 ], [ -87.803370, 42.420621 ], [ -87.803529, 42.417759 ], [ -87.803750, 42.413793 ], [ -87.805370, 42.384721 ], [ -87.806130, 42.383357 ], [ -87.815570, 42.366416 ], [ -87.816570, 42.364621 ], [ -87.820858, 42.361584 ], [ -87.820871, 42.361544 ], [ -87.826717, 42.343497 ], [ -87.830646, 42.331368 ], [ -87.830986, 42.330317 ], [ -87.831221, 42.328530 ], [ -87.834769, 42.301522 ], [ -87.833468, 42.294892 ], [ -87.832738, 42.291173 ], [ -87.832530, 42.290109 ], [ -87.831286, 42.283772 ], [ -87.828569, 42.269922 ], [ -87.828034, 42.268673 ], [ -87.827720, 42.267937 ], [ -87.826944, 42.266125 ], [ -87.825313, 42.262313 ], [ -87.812461, 42.232278 ], [ -87.812422, 42.232185 ], [ -87.812315, 42.231935 ], [ -87.812267, 42.231823 ], [ -87.808395, 42.224271 ], [ -87.803873, 42.215449 ], [ -87.800066, 42.208024 ], [ -87.798589, 42.206007 ], [ -87.798300, 42.205611 ], [ -87.797497, 42.204514 ], [ -87.797444, 42.204442 ], [ -87.796937, 42.203748 ], [ -87.796779, 42.203533 ], [ -87.788313, 42.191966 ], [ -87.787241, 42.190501 ], [ -87.775295, 42.174179 ], [ -87.759327, 42.152362 ], [ -87.756390, 42.148350 ], [ -87.755826, 42.147579 ], [ -87.754767, 42.146132 ], [ -87.754444, 42.145691 ], [ -87.754358, 42.145573 ], [ -87.750396, 42.140160 ], [ -87.748486, 42.137550 ], [ -87.746421, 42.134729 ], [ -87.741662, 42.128227 ], [ -87.741318, 42.127812 ], [ -87.740787, 42.127172 ], [ -87.740718, 42.127089 ], [ -87.739735, 42.125903 ], [ -87.739529, 42.125655 ], [ -87.733929, 42.118903 ], [ -87.730463, 42.114723 ], [ -87.729387, 42.113426 ], [ -87.729378, 42.113414 ], [ -87.728335, 42.112157 ], [ -87.728191, 42.111984 ], [ -87.727248, 42.110847 ], [ -87.727005, 42.110554 ], [ -87.725196, 42.108373 ], [ -87.724661, 42.107727 ], [ -87.724603, 42.107674 ], [ -87.723723, 42.106879 ], [ -87.722306, 42.105596 ], [ -87.722220, 42.105518 ], [ -87.721500, 42.104866 ], [ -87.720407, 42.103878 ], [ -87.720303, 42.103783 ], [ -87.718065, 42.101758 ], [ -87.717504, 42.101250 ], [ -87.717276, 42.101044 ], [ -87.717169, 42.100947 ], [ -87.712206, 42.096455 ], [ -87.710960, 42.095328 ], [ -87.706415, 42.092213 ], [ -87.704594, 42.090966 ], [ -87.703882, 42.090478 ], [ -87.702370, 42.089442 ], [ -87.682359, 42.075729 ], [ -87.682179, 42.075441 ], [ -87.680750, 42.073160 ], [ -87.679843, 42.071713 ], [ -87.671462, 42.058334 ], [ -87.670512, 42.052980 ], [ -87.670699, 42.052305 ], [ -87.671119, 42.050781 ], [ -87.671184, 42.050548 ], [ -87.671894, 42.047972 ], [ -87.671094, 42.042802 ], [ -87.668982, 42.029142 ], [ -87.630953, 41.933132 ], [ -87.630870, 41.932784 ], [ -87.627038, 41.916738 ], [ -87.624763, 41.907209 ], [ -87.624134, 41.904574 ], [ -87.624052, 41.904232 ], [ -87.622944, 41.902020 ], [ -87.619852, 41.901392 ], [ -87.617433, 41.898032 ], [ -87.614163, 41.893418 ], [ -87.612291, 41.893335 ], [ -87.611659, 41.892216 ], [ -87.611659, 41.890708 ], [ -87.612680, 41.889248 ], [ -87.614188, 41.888421 ], [ -87.613556, 41.884480 ], [ -87.613654, 41.884412 ], [ -87.615734, 41.882958 ], [ -87.616537, 41.882396 ], [ -87.616251, 41.868933 ], [ -87.609450, 41.845233 ], [ -87.600549, 41.826833 ], [ -87.587123, 41.811422 ], [ -87.587054, 41.811342 ], [ -87.580948, 41.804334 ], [ -87.580920, 41.804225 ], [ -87.580550, 41.802750 ], [ -87.576347, 41.786034 ], [ -87.560646, 41.766034 ], [ -87.542845, 41.752135 ], [ -87.530745, 41.748235 ], [ -87.524141, 41.723990 ], [ -87.524044, 41.708335 ], [ -87.524944, 41.702635 ], [ -87.524844, 41.691635 ], [ -87.524642, 41.634935 ], [ -87.524742, 41.632435 ], [ -87.524642, 41.622535 ], [ -87.524641, 41.563335 ], [ -87.525669, 41.470283 ], [ -87.525671, 41.470115 ], [ -87.525623, 41.453619 ], [ -87.526768, 41.298177 ], [ -87.526768, 41.298052 ], [ -87.526570, 41.166097 ], [ -87.526567, 41.163865 ], [ -87.526660, 41.160090 ], [ -87.526719, 41.159448 ], [ -87.526693, 41.153958 ], [ -87.526696, 41.149222 ], [ -87.526700, 41.139658 ], [ -87.526711, 41.121485 ], [ -87.526520, 41.024837 ], [ -87.526346, 41.010583 ], [ -87.526307, 41.010355 ], [ -87.526305, 41.010346 ], [ -87.526084, 40.911914 ], [ -87.526437, 40.894209 ], [ -87.525962, 40.880618 ], [ -87.526113, 40.879703 ], [ -87.525783, 40.854357 ], [ -87.526129, 40.736950 ], [ -87.526129, 40.736885 ], [ -87.526292, 40.535409 ], [ -87.526352, 40.535111 ], [ -87.526376, 40.491574 ], [ -87.526379, 40.491237 ], [ -87.526502, 40.477158 ], [ -87.526511, 40.476879 ], [ -87.526549, 40.475659 ], [ -87.526809, 40.462170 ], [ -87.530054, 40.250671 ], [ -87.529992, 40.250036 ], [ -87.530828, 40.191812 ], [ -87.531133, 40.170030 ], [ -87.531438, 40.148123 ], [ -87.531439, 40.148027 ], [ -87.531759, 40.144273 ], [ -87.531561, 40.133005 ], [ -87.532308, 40.011587 ], [ -87.532308, 40.011492 ], [ -87.532287, 40.000037 ], [ -87.532331, 39.997776 ], [ -87.532542, 39.987462 ], [ -87.532683, 39.977691 ], [ -87.532790, 39.975010 ], [ -87.532776, 39.971077 ], [ -87.533227, 39.883127 ], [ -87.533227, 39.883000 ], [ -87.533142, 39.810947 ], [ -87.533056, 39.803922 ], [ -87.533058, 39.796243 ], [ -87.533066, 39.781743 ], [ -87.532703, 39.664868 ], [ -87.532444, 39.646102 ], [ -87.532365, 39.646126 ], [ -87.532196, 39.607306 ], [ -87.532008, 39.564013 ], [ -87.531939, 39.545853 ], [ -87.531965, 39.526937 ], [ -87.531692, 39.495516 ], [ -87.531627, 39.491698 ], [ -87.531663, 39.477120 ], [ -87.531663, 39.477110 ], [ -87.531624, 39.469378 ], [ -87.531608, 39.466225 ], [ -87.531489, 39.449474 ], [ -87.531355, 39.437732 ], [ -87.531355, 39.436656 ], [ -87.531646, 39.347888 ], [ -87.537271, 39.352089 ], [ -87.544013, 39.352907 ], [ -87.584852, 39.337329 ], [ -87.589084, 39.333831 ], [ -87.604043, 39.313526 ], [ -87.610050, 39.282232 ], [ -87.605543, 39.261122 ], [ -87.604076, 39.259459 ], [ -87.593486, 39.247452 ], [ -87.587507, 39.249282 ], [ -87.605173, 39.185897 ], [ -87.628727, 39.157427 ], [ -87.642174, 39.157097 ], [ -87.651719, 39.150602 ], [ -87.658746, 39.135997 ], [ -87.614881, 39.102655 ], [ -87.572588, 39.057286 ], [ -87.512187, 38.954417 ], [ -87.518826, 38.923205 ], [ -87.527910, 38.908209 ], [ -87.528108, 38.908027 ], [ -87.540804, 38.896385 ], [ -87.553384, 38.863344 ], [ -87.550515, 38.859560 ], [ -87.537248, 38.853592 ], [ -87.532064, 38.852503 ], [ -87.528194, 38.851691 ], [ -87.525893, 38.848795 ], [ -87.495211, 38.783060 ], [ -87.498515, 38.758983 ], [ -87.519609, 38.697198 ], [ -87.531231, 38.684036 ], [ -87.540052, 38.679143 ], [ -87.579397, 38.672475 ], [ -87.593678, 38.667402 ], [ -87.600180, 38.662462 ], [ -87.620120, 38.639489 ], [ -87.627345, 38.607237 ], [ -87.651529, 38.568166 ], [ -87.670071, 38.545237 ], [ -87.669232, 38.541742 ], [ -87.656144, 38.521668 ], [ -87.740001, 38.415698 ], [ -87.750028, 38.403027 ], [ -87.863032, 38.280172 ], [ -87.923958, 38.258409 ], [ -87.951715, 38.239632 ], [ -87.955344, 38.230008 ], [ -87.961103, 38.214733 ], [ -87.959062, 38.203712 ], [ -87.951307, 38.193099 ], [ -87.940694, 38.181261 ], [ -87.928856, 38.176771 ], [ -87.915666, 38.173322 ], [ -87.910792, 38.167666 ], [ -87.911034, 38.162194 ], [ -87.927830, 38.141545 ], [ -87.942176, 38.131759 ], [ -87.974272, 38.121981 ], [ -88.013118, 38.103527 ], [ -88.042132, 38.046345 ], [ -88.041532, 38.037345 ], [ -88.012574, 37.977062 ], [ -88.013451, 37.893951 ], [ -88.017073, 37.889222 ], [ -88.021117, 37.888057 ], [ -88.055373, 37.891238 ], [ -88.071449, 37.895813 ], [ -88.049453, 37.845187 ], [ -88.027789, 37.828298 ], [ -88.028030, 37.799224 ], [ -88.039000, 37.775454 ], [ -88.045008, 37.762436 ], [ -88.050969, 37.752599 ], [ -88.059588, 37.742608 ], [ -88.072538, 37.733286 ], [ -88.122412, 37.709685 ], [ -88.151646, 37.675098 ], [ -88.158207, 37.664542 ], [ -88.160187, 37.657592 ], [ -88.156827, 37.632801 ], [ -88.139973, 37.586451 ], [ -88.133416, 37.574277 ], [ -88.133393, 37.574235 ], [ -88.133306, 37.574191 ], [ -88.133235, 37.574154 ], [ -88.121517, 37.568166 ], [ -88.072242, 37.528826 ], [ -88.063311, 37.515755 ], [ -88.061311, 37.505332 ], [ -88.061292, 37.505232 ], [ -88.062562, 37.489385 ], [ -88.083395, 37.473683 ], [ -88.255193, 37.456748 ], [ -88.281667, 37.452596 ], [ -88.312585, 37.440591 ], [ -88.330622, 37.429316 ], [ -88.358436, 37.404860 ], [ -88.408808, 37.425216 ], [ -88.414895, 37.423461 ], [ -88.439333, 37.416416 ], [ -88.456000, 37.408482 ], [ -88.470224, 37.396255 ], [ -88.476592, 37.386875 ], [ -88.514661, 37.290948 ], [ -88.515939, 37.284043 ], [ -88.509328, 37.262130 ], [ -88.471753, 37.220155 ], [ -88.458763, 37.213536 ], [ -88.447764, 37.203527 ], [ -88.424403, 37.152428 ], [ -88.444605, 37.098601 ], [ -88.458948, 37.073796 ], [ -88.482856, 37.067114 ], [ -88.490297, 37.066669 ], [ -88.514356, 37.065231 ], [ -88.531576, 37.067192 ], [ -88.545403, 37.070003 ], [ -88.560032, 37.076010 ], [ -88.564152, 37.078440 ], [ -88.576718, 37.085852 ], [ -88.589207, 37.099655 ], [ -88.625889, 37.119458 ], [ -88.809206, 37.189235 ], [ -88.916934, 37.224291 ], [ -88.928021, 37.226281 ], [ -88.942111, 37.228811 ], [ -88.933385, 37.225005 ], [ -88.933399, 37.225007 ], [ -88.966831, 37.229891 ], [ -88.983260, 37.228685 ], [ -89.000968, 37.224401 ], [ -89.041263, 37.202881 ], [ -89.086526, 37.165602 ], [ -89.168087, 37.074218 ], [ -89.171881, 37.068184 ], [ -89.175725, 37.062069 ], [ -89.181369, 37.046305 ], [ -89.182509, 37.037275 ], [ -89.178975, 37.020928 ], [ -89.173595, 37.011409 ], [ -89.166447, 37.003337 ], [ -89.132685, 36.982200 ], [ -89.170008, 36.970298 ], [ -89.185491, 36.973518 ], [ -89.207013, 36.982437 ], [ -89.226247, 36.985287 ], [ -89.245481, 36.983150 ], [ -89.261154, 36.982437 ], [ -89.271127, 36.985287 ], [ -89.278628, 36.988670 ], [ -89.292130, 36.992189 ], [ -89.322733, 37.009033 ], [ -89.378277, 37.039605 ], [ -89.383937, 37.046441 ], [ -89.385434, 37.055130 ], [ -89.414471, 37.125050 ], [ -89.467631, 37.218200 ], [ -89.491222, 37.248629 ], [ -89.517032, 37.281920 ], [ -89.518393, 37.289354 ], [ -89.511842, 37.310825 ], [ -89.489005, 37.333368 ], [ -89.484598, 37.334832 ], [ -89.474569, 37.338165 ], [ -89.447556, 37.340475 ], [ -89.436040, 37.344441 ], [ -89.432836, 37.347056 ], [ -89.428185, 37.356158 ], [ -89.421054, 37.387668 ], [ -89.425940, 37.407471 ], [ -89.439769, 37.437200 ], [ -89.450969, 37.450069 ], [ -89.475525, 37.471388 ], [ -89.492051, 37.494008 ], [ -89.517051, 37.537278 ], [ -89.521697, 37.557325 ], [ -89.521523, 37.566208 ], [ -89.521407, 37.572143 ], [ -89.521274, 37.578971 ], [ -89.518007, 37.583962 ], [ -89.511936, 37.584564 ], [ -89.506563, 37.625050 ], [ -89.515436, 37.671370 ], [ -89.671255, 37.801144 ], [ -89.674304, 37.803179 ], [ -89.739873, 37.846930 ], [ -89.844786, 37.905572 ], [ -89.851048, 37.903980 ], [ -89.862949, 37.896906 ], [ -89.881475, 37.879591 ], [ -89.901832, 37.869822 ], [ -89.923185, 37.870672 ], [ -89.937383, 37.874693 ], [ -89.938191, 37.875111 ], [ -89.950594, 37.881526 ], [ -89.973642, 37.917661 ], [ -89.974918, 37.926719 ], [ -89.997103, 37.963225 ], [ -90.072283, 38.017001 ], [ -90.126532, 38.041666 ], [ -90.203847, 38.088753 ], [ -90.243116, 38.112669 ], [ -90.254112, 38.121990 ], [ -90.334258, 38.189932 ], [ -90.353902, 38.213855 ], [ -90.363926, 38.236355 ], [ -90.373929, 38.281853 ], [ -90.372519, 38.323354 ], [ -90.370819, 38.333554 ], [ -90.350918, 38.375053 ], [ -90.346118, 38.381853 ], [ -90.340297, 38.386998 ], [ -90.295316, 38.426753 ], [ -90.285215, 38.443453 ], [ -90.279215, 38.472453 ], [ -90.263064, 38.520220 ], [ -90.260314, 38.528352 ], [ -90.257773, 38.532008 ], [ -90.248913, 38.544752 ], [ -90.224512, 38.574651 ], [ -90.202511, 38.588651 ], [ -90.196011, 38.594451 ], [ -90.184510, 38.611551 ], [ -90.182625, 38.617989 ], [ -90.178010, 38.633750 ], [ -90.177710, 38.642750 ], [ -90.181110, 38.659550 ], [ -90.181399, 38.660378 ], [ -90.186410, 38.674750 ], [ -90.195210, 38.687550 ], [ -90.202210, 38.693450 ], [ -90.209210, 38.702750 ], [ -90.212010, 38.711750 ], [ -90.209910, 38.726050 ], [ -90.171309, 38.766549 ], [ -90.165082, 38.770618 ], [ -90.123107, 38.798048 ], [ -90.117707, 38.805748 ], [ -90.114707, 38.815048 ], [ -90.109107, 38.837448 ], [ -90.109407, 38.843548 ], [ -90.113327, 38.849306 ], [ -90.207035, 38.898954 ], [ -90.225850, 38.908923 ], [ -90.250248, 38.919344 ], [ -90.275932, 38.926453 ], [ -90.385751, 38.956848 ], [ -90.406367, 38.962554 ], [ -90.450792, 38.967764 ], [ -90.450809, 38.967758 ], [ -90.467784, 38.961809 ], [ -90.472122, 38.958838 ], [ -90.482419, 38.944460 ], [ -90.482725, 38.934712 ], [ -90.486974, 38.925982 ], [ -90.507451, 38.902767 ], [ -90.544030, 38.875050 ], [ -90.555693, 38.870785 ], [ -90.566557, 38.868847 ], [ -90.583388, 38.869030 ], [ -90.625122, 38.888654 ], [ -90.657254, 38.920270 ], [ -90.663372, 38.928042 ], [ -90.665870, 38.934195 ], [ -90.711580, 39.046798 ], [ -90.713629, 39.053977 ], [ -90.712541, 39.057064 ], [ -90.682744, 39.088348 ], [ -90.681086, 39.100590 ], [ -90.718996, 39.224973 ], [ -90.726981, 39.251173 ], [ -90.729960, 39.255894 ], [ -90.799346, 39.313087 ], [ -90.842175, 39.341932 ], [ -90.882706, 39.362254 ], [ -90.939983, 39.393555 ], [ -90.993789, 39.422959 ], [ -91.042351, 39.452062 ], [ -91.158606, 39.553048 ], [ -91.168419, 39.564928 ], [ -91.178012, 39.598196 ], [ -91.229317, 39.620853 ], [ -91.313162, 39.684907 ], [ -91.349039, 39.712316 ], [ -91.367753, 39.729029 ], [ -91.370009, 39.732524 ], [ -91.369953, 39.745042 ], [ -91.367962, 39.759124 ], [ -91.365396, 39.777266 ], [ -91.432919, 39.840554 ], [ -91.446385, 39.870394 ], [ -91.455887, 39.945538 ], [ -91.460287, 39.980333 ], [ -91.494865, 40.037421 ], [ -91.510322, 40.127994 ], [ -91.512974, 40.181062 ], [ -91.510332, 40.201142 ], [ -91.505968, 40.234305 ], [ -91.501435, 40.248874 ], [ -91.489868, 40.286048 ], [ -91.462140, 40.342414 ], [ -91.444833, 40.363170 ], [ -91.419422, 40.378264 ], [ -91.388360, 40.384929 ], [ -91.375746, 40.391879 ], [ -91.372554, 40.401200 ], [ -91.363910, 40.490122 ], [ -91.364211, 40.500043 ], [ -91.369059, 40.512532 ], [ -91.384531, 40.530948 ], [ -91.404125, 40.539127 ], [ -91.406851, 40.547557 ], [ -91.405241, 40.554641 ], [ -91.359873, 40.601805 ], [ -91.348733, 40.609695 ], [ -91.339719, 40.613488 ], [ -91.306524, 40.626231 ], [ -91.253074, 40.637962 ], [ -91.218437, 40.638437 ], [ -91.197906, 40.636107 ], [ -91.186980, 40.637297 ], [ -91.185415, 40.638052 ], [ -91.138055, 40.660893 ], [ -91.122421, 40.670675 ], [ -91.112258, 40.696218 ], [ -91.111940, 40.697018 ], [ -91.094728, 40.797833 ], [ -91.097031, 40.802471 ], [ -91.097553, 40.808433 ], [ -91.092993, 40.821079 ], [ -91.009536, 40.900565 ], [ -90.998500, 40.908120 ], [ -90.968995, 40.919127 ], [ -90.962916, 40.924957 ], [ -90.952233, 40.954047 ], [ -90.942253, 41.034702 ], [ -90.945549, 41.061730 ], [ -90.948523, 41.070248 ], [ -90.949383, 41.072710 ], [ -90.949383, 41.072711 ], [ -90.946627, 41.096632 ], [ -90.989663, 41.155716 ], [ -90.997906, 41.162564 ], [ -91.005503, 41.165622 ], [ -91.019036, 41.164910 ], [ -91.049808, 41.178033 ], [ -91.113648, 41.241401 ], [ -91.114186, 41.250029 ], [ -91.079657, 41.333727 ], [ -91.078682, 41.336089 ], [ -91.047819, 41.410900 ], [ -91.039872, 41.418523 ], [ -91.027787, 41.423603 ], [ -90.989976, 41.431962 ], [ -90.847458, 41.455019 ], [ -90.786282, 41.452888 ], [ -90.771672, 41.450761 ], [ -90.737537, 41.450127 ], [ -90.655839, 41.462132 ], [ -90.605937, 41.494232 ], [ -90.499475, 41.518055 ], [ -90.474332, 41.519733 ], [ -90.461432, 41.523533 ], [ -90.397930, 41.572233 ], [ -90.341650, 41.621484 ], [ -90.343162, 41.648141 ], [ -90.334525, 41.679559 ], [ -90.317041, 41.729104 ], [ -90.315220, 41.734264 ], [ -90.309826, 41.743321 ], [ -90.302782, 41.750031 ], [ -90.278633, 41.767358 ], [ -90.242747, 41.783767 ], [ -90.222263, 41.793133 ], [ -90.208440, 41.797176 ], [ -90.187969, 41.803163 ], [ -90.181973, 41.807070 ], [ -90.152104, 41.928947 ], [ -90.151600, 41.931002 ], [ -90.140613, 41.995999 ], [ -90.141167, 42.008931 ], [ -90.150916, 42.029440 ], [ -90.154221, 42.033073 ], [ -90.164537, 42.045007 ], [ -90.166495, 42.054543 ], [ -90.168358, 42.075779 ], [ -90.163405, 42.087613 ], [ -90.161119, 42.104404 ], [ -90.162225, 42.114880 ], [ -90.167533, 42.122475 ], [ -90.211328, 42.154010 ], [ -90.234919, 42.165431 ], [ -90.306531, 42.190439 ], [ -90.316269, 42.193600 ], [ -90.349162, 42.204277 ], [ -90.356964, 42.205445 ], [ -90.375129, 42.214811 ], [ -90.391108, 42.225473 ], [ -90.419326, 42.254467 ], [ -90.430884, 42.278230 ], [ -90.430735, 42.284211 ], [ -90.424326, 42.293326 ], [ -90.416200, 42.321314 ], [ -90.416535, 42.325109 ], [ -90.419027, 42.328505 ], [ -90.474834, 42.381473 ], [ -90.477279, 42.383794 ], [ -90.559451, 42.430695 ], [ -90.624328, 42.458904 ], [ -90.646727, 42.471904 ], [ -90.654027, 42.478503 ], [ -90.656327, 42.483603 ], [ -90.656527, 42.489203 ], [ -90.655927, 42.491703 ], [ -90.640927, 42.508302 ], [ -90.617731, 42.508077 ], [ -90.614589, 42.508053 ], [ -90.565441, 42.507600 ], [ -90.555862, 42.507509 ], [ -90.551165, 42.507691 ], [ -90.544799, 42.507713 ], [ -90.544347, 42.507707 ], [ -90.532254, 42.507573 ], [ -90.491716, 42.507624 ], [ -90.479446, 42.507416 ], [ -90.474955, 42.507484 ], [ -90.437011, 42.507147 ], [ -90.426378, 42.507059 ], [ -90.405927, 42.506891 ], [ -90.370673, 42.507111 ], [ -90.367874, 42.507114 ], [ -90.362652, 42.507048 ], [ -90.303823, 42.507469 ], [ -90.272864, 42.507531 ], [ -90.269335, 42.507726 ], [ -90.267143, 42.507642 ], [ -90.253121, 42.507340 ], [ -90.250622, 42.507521 ], [ -90.223190, 42.507765 ], [ -90.206073, 42.507747 ], [ -90.181572, 42.508068 ], [ -90.164363, 42.508272 ], [ -90.142922, 42.508151 ], [ -90.095004, 42.507885 ], [ -90.093026, 42.508160 ], [ -90.018665, 42.507288 ], [ -90.017028, 42.507127 ], [ -89.999314, 42.506914 ], [ -89.997213, 42.506755 ], [ -89.985645, 42.506431 ], [ -89.985072, 42.506464 ], [ -89.926484, 42.505787 ], [ -89.926374, 42.505788 ], [ -89.926224, 42.505788 ], [ -89.837587, 42.505543 ], [ -89.801897, 42.505444 ], [ -89.799704, 42.505421 ], [ -89.793957, 42.505466 ], [ -89.780302, 42.505349 ], [ -89.769643, 42.505322 ], [ -89.742395, 42.505382 ], [ -89.693487, 42.505099 ], [ -89.690088, 42.505191 ], [ -89.667596, 42.504960 ], [ -89.650324, 42.504613 ], [ -89.644176, 42.504520 ], [ -89.613410, 42.503942 ], [ -89.603523, 42.503557 ], [ -89.600001, 42.503672 ], [ -89.594779, 42.503468 ], [ -89.564407, 42.502628 ], [ -89.522542, 42.501889 ], [ -89.493216, 42.501514 ], [ -89.492612, 42.501514 ], [ -89.484300, 42.501426 ], [ -89.425162, 42.500726 ], [ -89.423926, 42.500818 ], [ -89.422567, 42.500680 ], [ -89.420991, 42.500589 ], [ -89.401432, 42.500433 ], [ -89.401416, 42.500433 ], [ -89.366031, 42.500274 ] ] ] } }\n,\n{ \"type\": \"Feature\", \"properties\": { \"GEO_ID\": \"0400000US18\", \"STATE\": \"18\", \"NAME\": \"Indiana\", \"LSAD\": \"\", \"CENSUSAREA\": 35826.109000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -84.804119, 40.352757 ], [ -84.803917, 40.310115 ], [ -84.803918, 40.310094 ], [ -84.804098, 40.302498 ], [ -84.805627, 40.223659 ], [ -84.806175, 40.197995 ], [ -84.806340, 40.192327 ], [ -84.806347, 40.192252 ], [ -84.806766, 40.180128 ], [ -84.808291, 40.129027 ], [ -84.808305, 40.127018 ], [ -84.808706, 40.107216 ], [ -84.809737, 40.048929 ], [ -84.810099, 40.034214 ], [ -84.810670, 40.005074 ], [ -84.812193, 39.927340 ], [ -84.812357, 39.921764 ], [ -84.812411, 39.916916 ], [ -84.812411, 39.916915 ], [ -84.812698, 39.891585 ], [ -84.812787, 39.890830 ], [ -84.813050, 39.872958 ], [ -84.813464, 39.853261 ], [ -84.813549, 39.850773 ], [ -84.813674, 39.843173 ], [ -84.813703, 39.843059 ], [ -84.813793, 39.826771 ], [ -84.813852, 39.824621 ], [ -84.814179, 39.814212 ], [ -84.814120, 39.811398 ], [ -84.814209, 39.799755 ], [ -84.814179, 39.786853 ], [ -84.814189, 39.785569 ], [ -84.814129, 39.726620 ], [ -84.814129, 39.726556 ], [ -84.814530, 39.680429 ], [ -84.814619, 39.669174 ], [ -84.814705, 39.628854 ], [ -84.815156, 39.568351 ], [ -84.815036, 39.567695 ], [ -84.814955, 39.567251 ], [ -84.814955, 39.566251 ], [ -84.815155, 39.548051 ], [ -84.815355, 39.521951 ], [ -84.815355, 39.521950 ], [ -84.815555, 39.511052 ], [ -84.815555, 39.510952 ], [ -84.815754, 39.477358 ], [ -84.815754, 39.477352 ], [ -84.817453, 39.391753 ], [ -84.819352, 39.309454 ], [ -84.819451, 39.305153 ], [ -84.819451, 39.305152 ], [ -84.819622, 39.271590 ], [ -84.819633, 39.261855 ], [ -84.819859, 39.251018 ], [ -84.819801, 39.247806 ], [ -84.819813, 39.244334 ], [ -84.819802, 39.157613 ], [ -84.819826, 39.156504 ], [ -84.819985, 39.149081 ], [ -84.820157, 39.105480 ], [ -84.831197, 39.101920 ], [ -84.888873, 39.066376 ], [ -84.897364, 39.057378 ], [ -84.897171, 39.052407 ], [ -84.889065, 39.040820 ], [ -84.878614, 39.030296 ], [ -84.849445, 39.000923 ], [ -84.813182, 38.930583 ], [ -84.789521, 38.884687 ], [ -84.785111, 38.879988 ], [ -84.785799, 38.869496 ], [ -84.791078, 38.855859 ], [ -84.813350, 38.798330 ], [ -84.844412, 38.787078 ], [ -84.944296, 38.775184 ], [ -84.973432, 38.778847 ], [ -84.984627, 38.779072 ], [ -84.995939, 38.776756 ], [ -85.024205, 38.763311 ], [ -85.100963, 38.726800 ], [ -85.106902, 38.720789 ], [ -85.138680, 38.699168 ], [ -85.156158, 38.692251 ], [ -85.172528, 38.688082 ], [ -85.189362, 38.687579 ], [ -85.201498, 38.691575 ], [ -85.213257, 38.695446 ], [ -85.226062, 38.705456 ], [ -85.246505, 38.731821 ], [ -85.258846, 38.737754 ], [ -85.275454, 38.741172 ], [ -85.289226, 38.742410 ], [ -85.333285, 38.740480 ], [ -85.410925, 38.737080 ], [ -85.422021, 38.734834 ], [ -85.434065, 38.729455 ], [ -85.452114, 38.709348 ], [ -85.456978, 38.689135 ], [ -85.439351, 38.610388 ], [ -85.427467, 38.586735 ], [ -85.415821, 38.563558 ], [ -85.415600, 38.546341 ], [ -85.417322, 38.540763 ], [ -85.423077, 38.531581 ], [ -85.432928, 38.524072 ], [ -85.433136, 38.523914 ], [ -85.462518, 38.512602 ], [ -85.607629, 38.439295 ], [ -85.620521, 38.423105 ], [ -85.632937, 38.395666 ], [ -85.638041, 38.380338 ], [ -85.638044, 38.380270 ], [ -85.638777, 38.361443 ], [ -85.653641, 38.327108 ], [ -85.675017, 38.301317 ], [ -85.683561, 38.295469 ], [ -85.744862, 38.267170 ], [ -85.750962, 38.267870 ], [ -85.761062, 38.272570 ], [ -85.766563, 38.277670 ], [ -85.765963, 38.280469 ], [ -85.773363, 38.286169 ], [ -85.780963, 38.288469 ], [ -85.791563, 38.288569 ], [ -85.791575, 38.288566 ], [ -85.816164, 38.282969 ], [ -85.823764, 38.280569 ], [ -85.829364, 38.276769 ], [ -85.897664, 38.184269 ], [ -85.899550, 38.180343 ], [ -85.908764, 38.161169 ], [ -85.909464, 38.140070 ], [ -85.905164, 38.111070 ], [ -85.904564, 38.100270 ], [ -85.906163, 38.086170 ], [ -85.911607, 38.066890 ], [ -85.922395, 38.028679 ], [ -85.930235, 38.018311 ], [ -85.941403, 38.009831 ], [ -85.947952, 38.007083 ], [ -85.951467, 38.005608 ], [ -85.998609, 37.997775 ], [ -86.029509, 37.992640 ], [ -86.172186, 38.009920 ], [ -86.178983, 38.011308 ], [ -86.220371, 38.027922 ], [ -86.266891, 38.057125 ], [ -86.273584, 38.067443 ], [ -86.278720, 38.089303 ], [ -86.278034, 38.102426 ], [ -86.271223, 38.130112 ], [ -86.283964, 38.143185 ], [ -86.309727, 38.144393 ], [ -86.314292, 38.142610 ], [ -86.323453, 38.139032 ], [ -86.326788, 38.134604 ], [ -86.332567, 38.130131 ], [ -86.398661, 38.106238 ], [ -86.426508, 38.081784 ], [ -86.430091, 38.078638 ], [ -86.432789, 38.067171 ], [ -86.438236, 38.060426 ], [ -86.452192, 38.050490 ], [ -86.466876, 38.046597 ], [ -86.490853, 38.045796 ], [ -86.490858, 38.045796 ], [ -86.511760, 38.044448 ], [ -86.517289, 38.042634 ], [ -86.521825, 38.038327 ], [ -86.524969, 38.027879 ], [ -86.525174, 37.968228 ], [ -86.604624, 37.858272 ], [ -86.634271, 37.843845 ], [ -86.648028, 37.841425 ], [ -86.655285, 37.842506 ], [ -86.655296, 37.842508 ], [ -86.660293, 37.865057 ], [ -86.709164, 37.897640 ], [ -86.718462, 37.893123 ], [ -86.723510, 37.892831 ], [ -86.731460, 37.894340 ], [ -86.740877, 37.902568 ], [ -86.750990, 37.912893 ], [ -86.770179, 37.940264 ], [ -86.787695, 37.971449 ], [ -86.794985, 37.988982 ], [ -86.814776, 37.998638 ], [ -86.815267, 37.998877 ], [ -86.823491, 37.998939 ], [ -86.855950, 37.987292 ], [ -86.884961, 37.964373 ], [ -86.902413, 37.946161 ], [ -86.919329, 37.936664 ], [ -86.978830, 37.930214 ], [ -86.978957, 37.930200 ], [ -87.010315, 37.919668 ], [ -87.033444, 37.906593 ], [ -87.042249, 37.898291 ], [ -87.046237, 37.889866 ], [ -87.043407, 37.879940 ], [ -87.043854, 37.870796 ], [ -87.057836, 37.827457 ], [ -87.067836, 37.806065 ], [ -87.077404, 37.796209 ], [ -87.090636, 37.787808 ], [ -87.111133, 37.782512 ], [ -87.119229, 37.782848 ], [ -87.128749, 37.785728 ], [ -87.132621, 37.791008 ], [ -87.202240, 37.843791 ], [ -87.262930, 37.872846 ], [ -87.269561, 37.877155 ], [ -87.302324, 37.898445 ], [ -87.380247, 37.935596 ], [ -87.402632, 37.942267 ], [ -87.418585, 37.944763 ], [ -87.436859, 37.944192 ], [ -87.450458, 37.941451 ], [ -87.451185, 37.941034 ], [ -87.511499, 37.906426 ], [ -87.550333, 37.924890 ], [ -87.559342, 37.931146 ], [ -87.572030, 37.947466 ], [ -87.574287, 37.954842 ], [ -87.573415, 37.962642 ], [ -87.574715, 37.967742 ], [ -87.581115, 37.973442 ], [ -87.585916, 37.975442 ], [ -87.592916, 37.975842 ], [ -87.601416, 37.972542 ], [ -87.628960, 37.926714 ], [ -87.626256, 37.916138 ], [ -87.620272, 37.906922 ], [ -87.597118, 37.892394 ], [ -87.591582, 37.887194 ], [ -87.588426, 37.868791 ], [ -87.588729, 37.860984 ], [ -87.591504, 37.856642 ], [ -87.606599, 37.838669 ], [ -87.615399, 37.831974 ], [ -87.645858, 37.825899 ], [ -87.670889, 37.828429 ], [ -87.679188, 37.836321 ], [ -87.681900, 37.846410 ], [ -87.681633, 37.855917 ], [ -87.662865, 37.885578 ], [ -87.666481, 37.895786 ], [ -87.675730, 37.901930 ], [ -87.684018, 37.903498 ], [ -87.700421, 37.900858 ], [ -87.762260, 37.890906 ], [ -87.783643, 37.877759 ], [ -87.790900, 37.875714 ], [ -87.830578, 37.876516 ], [ -87.841193, 37.882325 ], [ -87.857243, 37.900649 ], [ -87.865558, 37.915056 ], [ -87.872540, 37.920999 ], [ -87.883321, 37.926238 ], [ -87.898062, 37.927514 ], [ -87.904789, 37.924892 ], [ -87.927424, 37.902038 ], [ -87.936784, 37.892587 ], [ -87.940069, 37.887670 ], [ -87.940839, 37.883338 ], [ -87.940005, 37.875044 ], [ -87.936228, 37.867937 ], [ -87.927303, 37.858709 ], [ -87.914892, 37.849618 ], [ -87.910276, 37.843416 ], [ -87.907773, 37.837611 ], [ -87.903804, 37.817762 ], [ -87.906810, 37.807624 ], [ -87.943756, 37.776843 ], [ -87.970869, 37.783456 ], [ -87.976389, 37.788004 ], [ -88.004706, 37.800145 ], [ -88.017314, 37.801911 ], [ -88.028030, 37.799224 ], [ -88.027789, 37.828298 ], [ -88.049453, 37.845187 ], [ -88.071449, 37.895813 ], [ -88.055373, 37.891238 ], [ -88.021117, 37.888057 ], [ -88.017073, 37.889222 ], [ -88.013451, 37.893951 ], [ -88.012574, 37.977062 ], [ -88.041532, 38.037345 ], [ -88.042132, 38.046345 ], [ -88.013118, 38.103527 ], [ -87.974272, 38.121981 ], [ -87.942176, 38.131759 ], [ -87.927830, 38.141545 ], [ -87.911034, 38.162194 ], [ -87.910792, 38.167666 ], [ -87.915666, 38.173322 ], [ -87.928856, 38.176771 ], [ -87.940694, 38.181261 ], [ -87.951307, 38.193099 ], [ -87.959062, 38.203712 ], [ -87.961103, 38.214733 ], [ -87.955344, 38.230008 ], [ -87.951715, 38.239632 ], [ -87.923958, 38.258409 ], [ -87.863032, 38.280172 ], [ -87.750028, 38.403027 ], [ -87.740001, 38.415698 ], [ -87.656144, 38.521668 ], [ -87.669232, 38.541742 ], [ -87.670071, 38.545237 ], [ -87.651529, 38.568166 ], [ -87.627345, 38.607237 ], [ -87.620120, 38.639489 ], [ -87.600180, 38.662462 ], [ -87.593678, 38.667402 ], [ -87.579397, 38.672475 ], [ -87.540052, 38.679143 ], [ -87.531231, 38.684036 ], [ -87.519609, 38.697198 ], [ -87.498515, 38.758983 ], [ -87.495211, 38.783060 ], [ -87.525893, 38.848795 ], [ -87.528194, 38.851691 ], [ -87.532064, 38.852503 ], [ -87.537248, 38.853592 ], [ -87.550515, 38.859560 ], [ -87.553384, 38.863344 ], [ -87.540804, 38.896385 ], [ -87.528108, 38.908027 ], [ -87.527910, 38.908209 ], [ -87.518826, 38.923205 ], [ -87.512187, 38.954417 ], [ -87.572588, 39.057286 ], [ -87.614881, 39.102655 ], [ -87.658746, 39.135997 ], [ -87.651719, 39.150602 ], [ -87.642174, 39.157097 ], [ -87.628727, 39.157427 ], [ -87.605173, 39.185897 ], [ -87.587507, 39.249282 ], [ -87.593486, 39.247452 ], [ -87.604076, 39.259459 ], [ -87.605543, 39.261122 ], [ -87.610050, 39.282232 ], [ -87.604043, 39.313526 ], [ -87.589084, 39.333831 ], [ -87.584852, 39.337329 ], [ -87.544013, 39.352907 ], [ -87.537271, 39.352089 ], [ -87.531646, 39.347888 ], [ -87.531355, 39.436656 ], [ -87.531355, 39.437732 ], [ -87.531489, 39.449474 ], [ -87.531608, 39.466225 ], [ -87.531624, 39.469378 ], [ -87.531663, 39.477110 ], [ -87.531663, 39.477120 ], [ -87.531627, 39.491698 ], [ -87.531692, 39.495516 ], [ -87.531965, 39.526937 ], [ -87.531939, 39.545853 ], [ -87.532008, 39.564013 ], [ -87.532196, 39.607306 ], [ -87.532365, 39.646126 ], [ -87.532444, 39.646102 ], [ -87.532703, 39.664868 ], [ -87.533066, 39.781743 ], [ -87.533058, 39.796243 ], [ -87.533056, 39.803922 ], [ -87.533142, 39.810947 ], [ -87.533227, 39.883000 ], [ -87.533227, 39.883127 ], [ -87.532776, 39.971077 ], [ -87.532790, 39.975010 ], [ -87.532683, 39.977691 ], [ -87.532542, 39.987462 ], [ -87.532331, 39.997776 ], [ -87.532287, 40.000037 ], [ -87.532308, 40.011492 ], [ -87.532308, 40.011587 ], [ -87.531561, 40.133005 ], [ -87.531759, 40.144273 ], [ -87.531439, 40.148027 ], [ -87.531438, 40.148123 ], [ -87.531133, 40.170030 ], [ -87.530828, 40.191812 ], [ -87.529992, 40.250036 ], [ -87.530054, 40.250671 ], [ -87.526809, 40.462170 ], [ -87.526549, 40.475659 ], [ -87.526511, 40.476879 ], [ -87.526502, 40.477158 ], [ -87.526379, 40.491237 ], [ -87.526376, 40.491574 ], [ -87.526352, 40.535111 ], [ -87.526292, 40.535409 ], [ -87.526129, 40.736885 ], [ -87.526129, 40.736950 ], [ -87.525783, 40.854357 ], [ -87.526113, 40.879703 ], [ -87.525962, 40.880618 ], [ -87.526437, 40.894209 ], [ -87.526084, 40.911914 ], [ -87.526305, 41.010346 ], [ -87.526307, 41.010355 ], [ -87.526346, 41.010583 ], [ -87.526520, 41.024837 ], [ -87.526711, 41.121485 ], [ -87.526700, 41.139658 ], [ -87.526696, 41.149222 ], [ -87.526693, 41.153958 ], [ -87.526719, 41.159448 ], [ -87.526660, 41.160090 ], [ -87.526567, 41.163865 ], [ -87.526570, 41.166097 ], [ -87.526768, 41.298052 ], [ -87.526768, 41.298177 ], [ -87.525623, 41.453619 ], [ -87.525671, 41.470115 ], [ -87.525669, 41.470283 ], [ -87.524641, 41.563335 ], [ -87.524642, 41.622535 ], [ -87.524742, 41.632435 ], [ -87.524642, 41.634935 ], [ -87.524844, 41.691635 ], [ -87.524944, 41.702635 ], [ -87.524044, 41.708335 ], [ -87.520544, 41.709935 ], [ -87.515243, 41.704235 ], [ -87.511043, 41.696535 ], [ -87.505343, 41.691535 ], [ -87.470742, 41.672835 ], [ -87.463142, 41.675535 ], [ -87.453041, 41.673035 ], [ -87.446113, 41.669340 ], [ -87.441987, 41.671905 ], [ -87.438530, 41.670679 ], [ -87.437191, 41.669006 ], [ -87.434849, 41.666887 ], [ -87.432953, 41.665102 ], [ -87.432396, 41.660530 ], [ -87.438941, 41.654335 ], [ -87.429840, 41.646035 ], [ -87.423440, 41.642835 ], [ -87.394539, 41.637235 ], [ -87.365439, 41.629536 ], [ -87.324338, 41.623036 ], [ -87.287637, 41.622236 ], [ -87.278437, 41.619736 ], [ -87.261536, 41.620336 ], [ -87.222644, 41.624161 ], [ -87.220660, 41.624356 ], [ -87.187651, 41.629653 ], [ -87.160625, 41.637266 ], [ -87.160784, 41.645385 ], [ -87.125835, 41.650302 ], [ -87.120322, 41.645701 ], [ -87.066033, 41.661845 ], [ -87.027888, 41.674661 ], [ -87.009640, 41.681520 ], [ -86.934830, 41.709638 ], [ -86.932747, 41.711040 ], [ -86.909130, 41.726938 ], [ -86.875429, 41.737939 ], [ -86.824828, 41.760240 ], [ -86.823628, 41.760240 ], [ -86.804427, 41.760240 ], [ -86.801578, 41.760240 ], [ -86.800707, 41.760240 ], [ -86.800611, 41.760251 ], [ -86.748096, 41.759967 ], [ -86.746521, 41.759982 ], [ -86.641186, 41.759633 ], [ -86.640044, 41.759671 ], [ -86.524223, 41.759456 ], [ -86.519318, 41.759447 ], [ -86.501773, 41.759553 ], [ -86.265496, 41.760207 ], [ -86.226097, 41.760016 ], [ -86.226070, 41.760016 ], [ -86.217590, 41.760016 ], [ -86.127844, 41.760592 ], [ -86.125460, 41.760560 ], [ -86.125060, 41.760576 ], [ -86.062572, 41.760283 ], [ -86.003683, 41.760007 ], [ -85.991302, 41.759949 ], [ -85.974980, 41.759849 ], [ -85.974901, 41.759849 ], [ -85.888825, 41.759422 ], [ -85.874997, 41.759341 ], [ -85.872041, 41.759365 ], [ -85.791363, 41.759051 ], [ -85.791335, 41.759051 ], [ -85.775039, 41.759147 ], [ -85.750469, 41.759090 ], [ -85.749992, 41.759091 ], [ -85.724534, 41.759085 ], [ -85.659750, 41.759101 ], [ -85.650738, 41.759103 ], [ -85.647683, 41.759125 ], [ -85.632714, 41.759164 ], [ -85.624987, 41.759093 ], [ -85.622608, 41.759049 ], [ -85.608312, 41.759193 ], [ -85.607548, 41.759079 ], [ -85.518251, 41.759513 ], [ -85.515959, 41.759352 ], [ -85.432471, 41.759684 ], [ -85.427553, 41.759706 ], [ -85.379133, 41.759875 ], [ -85.350174, 41.759908 ], [ -85.330623, 41.759982 ], [ -85.318129, 41.759983 ], [ -85.308140, 41.760097 ], [ -85.298365, 41.760028 ], [ -85.292178, 41.759963 ], [ -85.292099, 41.759962 ], [ -85.273713, 41.759770 ], [ -85.272951, 41.759911 ], [ -85.272216, 41.759999 ], [ -85.232835, 41.759839 ], [ -85.196774, 41.759735 ], [ -85.196637, 41.759735 ], [ -85.172230, 41.759618 ], [ -85.123102, 41.759743 ], [ -85.117267, 41.759700 ], [ -85.039436, 41.759985 ], [ -85.037817, 41.759801 ], [ -84.972803, 41.759366 ], [ -84.971551, 41.759527 ], [ -84.961562, 41.759552 ], [ -84.960860, 41.759438 ], [ -84.932484, 41.759691 ], [ -84.825196, 41.759990 ], [ -84.825130, 41.759991 ], [ -84.818873, 41.760059 ], [ -84.806134, 41.743115 ], [ -84.806074, 41.737603 ], [ -84.806065, 41.732909 ], [ -84.806042, 41.720544 ], [ -84.806018, 41.707485 ], [ -84.806082, 41.696089 ], [ -84.806210, 41.674550 ], [ -84.805673, 41.632342 ], [ -84.805696, 41.631398 ], [ -84.805812, 41.613040 ], [ -84.804729, 41.530231 ], [ -84.804729, 41.530135 ], [ -84.804729, 41.530092 ], [ -84.804551, 41.500364 ], [ -84.804457, 41.488224 ], [ -84.803919, 41.435531 ], [ -84.803956, 41.426128 ], [ -84.803956, 41.426044 ], [ -84.804015, 41.411655 ], [ -84.804046, 41.408361 ], [ -84.804133, 41.408292 ], [ -84.803926, 41.367959 ], [ -84.803582, 41.271273 ], [ -84.803581, 41.271079 ], [ -84.803580, 41.270942 ], [ -84.803492, 41.252562 ], [ -84.803492, 41.252531 ], [ -84.803472, 41.173889 ], [ -84.803594, 41.173203 ], [ -84.803413, 41.164649 ], [ -84.803378, 41.096867 ], [ -84.803374, 41.089302 ], [ -84.803313, 40.989394 ], [ -84.803313, 40.989209 ], [ -84.802936, 40.922568 ], [ -84.802935, 40.922377 ], [ -84.802538, 40.765515 ], [ -84.802266, 40.742298 ], [ -84.802119, 40.728163 ], [ -84.802119, 40.728146 ], [ -84.802181, 40.718602 ], [ -84.802094, 40.702476 ], [ -84.802127, 40.691405 ], [ -84.802157, 40.689324 ], [ -84.802220, 40.674776 ], [ -84.802193, 40.660298 ], [ -84.802135, 40.644859 ], [ -84.802265, 40.572215 ], [ -84.802265, 40.572212 ], [ -84.802483, 40.528046 ], [ -84.803068, 40.465388 ], [ -84.804119, 40.352844 ], [ -84.804119, 40.352757 ] ] ] } }\n,\n{ \"type\": \"Feature\", \"properties\": { \"GEO_ID\": \"0400000US22\", \"STATE\": \"22\", \"NAME\": \"Louisiana\", \"LSAD\": \"\", \"CENSUSAREA\": 43203.905000 }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [ [ [ [ -88.865067, 29.752714 ], [ -88.889755, 29.718204 ], [ -88.940346, 29.657234 ], [ -88.944435, 29.658806 ], [ -88.946320, 29.662579 ], [ -88.941605, 29.674833 ], [ -88.920235, 29.694319 ], [ -88.911751, 29.699348 ], [ -88.890060, 29.729202 ], [ -88.873611, 29.758043 ], [ -88.867973, 29.772272 ], [ -88.867973, 29.791330 ], [ -88.861267, 29.805826 ], [ -88.846497, 29.817101 ], [ -88.843010, 29.825960 ], [ -88.836296, 29.855221 ], [ -88.836830, 29.858978 ], [ -88.843277, 29.863810 ], [ -88.831200, 29.878839 ], [ -88.828247, 29.920717 ], [ -88.837379, 29.944878 ], [ -88.838715, 29.962326 ], [ -88.835495, 29.967695 ], [ -88.835495, 29.974138 ], [ -88.839790, 29.983803 ], [ -88.840866, 29.995613 ], [ -88.848373, 30.013330 ], [ -88.857368, 30.027826 ], [ -88.869720, 30.043798 ], [ -88.881454, 30.053202 ], [ -88.870476, 30.049212 ], [ -88.855583, 30.034414 ], [ -88.841225, 30.012789 ], [ -88.833725, 29.998821 ], [ -88.824158, 29.970461 ], [ -88.817017, 29.934250 ], [ -88.818146, 29.889109 ], [ -88.826538, 29.847092 ], [ -88.832710, 29.824062 ], [ -88.844078, 29.795713 ], [ -88.865067, 29.752714 ] ] ], [ [ [ -94.043147, 32.693030 ], [ -94.043147, 32.693031 ], [ -94.042947, 32.767991 ], [ -94.043027, 32.776863 ], [ -94.042938, 32.780558 ], [ -94.042829, 32.785277 ], [ -94.042747, 32.786973 ], [ -94.043026, 32.797476 ], [ -94.042785, 32.871486 ], [ -94.043025, 32.880446 ], [ -94.042886, 32.880965 ], [ -94.042886, 32.881089 ], [ -94.042859, 32.892771 ], [ -94.042885, 32.898911 ], [ -94.043092, 32.910021 ], [ -94.043067, 32.937903 ], [ -94.043088, 32.955592 ], [ -94.042964, 33.019219 ], [ -94.041444, 33.019188 ], [ -94.035839, 33.019145 ], [ -94.027983, 33.019139 ], [ -94.024475, 33.019207 ], [ -93.814553, 33.019372 ], [ -93.804930, 33.019347 ], [ -93.531499, 33.018643 ], [ -93.524916, 33.018637 ], [ -93.520994, 33.018616 ], [ -93.520971, 33.018616 ], [ -93.490893, 33.018442 ], [ -93.490520, 33.018442 ], [ -93.489506, 33.018443 ], [ -93.467042, 33.018611 ], [ -93.377134, 33.018234 ], [ -93.340353, 33.018337 ], [ -93.308398, 33.018179 ], [ -93.308181, 33.018156 ], [ -93.238607, 33.017992 ], [ -93.197402, 33.017951 ], [ -93.154351, 33.017856 ], [ -93.101443, 33.017740 ], [ -93.100981, 33.017786 ], [ -93.081428, 33.017928 ], [ -93.073167, 33.017898 ], [ -93.070686, 33.017792 ], [ -92.988708, 33.017298 ], [ -92.971137, 33.017192 ], [ -92.946553, 33.016807 ], [ -92.867510, 33.016062 ], [ -92.854167, 33.016132 ], [ -92.844286, 33.016070 ], [ -92.844073, 33.016034 ], [ -92.830798, 33.015661 ], [ -92.733197, 33.014347 ], [ -92.724994, 33.014351 ], [ -92.724743, 33.014347 ], [ -92.723553, 33.014328 ], [ -92.715884, 33.014398 ], [ -92.711289, 33.014307 ], [ -92.503776, 33.012161 ], [ -92.501383, 33.012160 ], [ -92.469762, 33.012010 ], [ -92.370290, 33.010717 ], [ -92.362865, 33.010628 ], [ -92.335893, 33.010349 ], [ -92.292664, 33.010103 ], [ -92.222825, 33.009080 ], [ -92.069105, 33.008163 ], [ -91.951958, 33.007428 ], [ -91.950001, 33.007520 ], [ -91.626670, 33.006639 ], [ -91.617615, 33.006717 ], [ -91.609001, 33.006556 ], [ -91.579802, 33.006518 ], [ -91.579639, 33.006472 ], [ -91.572326, 33.006908 ], [ -91.559494, 33.006840 ], [ -91.460370, 33.006246 ], [ -91.435782, 33.006099 ], [ -91.425466, 33.006016 ], [ -91.376016, 33.005794 ], [ -91.333011, 33.005529 ], [ -91.329767, 33.005421 ], [ -91.326396, 33.005376 ], [ -91.325037, 33.005364 ], [ -91.322506, 33.005341 ], [ -91.312016, 33.005262 ], [ -91.284398, 33.005007 ], [ -91.265018, 33.005084 ], [ -91.166073, 33.004106 ], [ -91.201842, 32.961212 ], [ -91.214027, 32.930320 ], [ -91.212837, 32.922104 ], [ -91.208263, 32.915354 ], [ -91.196785, 32.906784 ], [ -91.175405, 32.899998 ], [ -91.159975, 32.899879 ], [ -91.145076, 32.905494 ], [ -91.134041, 32.917676 ], [ -91.132115, 32.923122 ], [ -91.130947, 32.963815 ], [ -91.138585, 32.971352 ], [ -91.134414, 32.980533 ], [ -91.125107, 32.984669 ], [ -91.106581, 32.988938 ], [ -91.094265, 32.984371 ], [ -91.086802, 32.976266 ], [ -91.063974, 32.924113 ], [ -91.063809, 32.903709 ], [ -91.070602, 32.888659 ], [ -91.086683, 32.873392 ], [ -91.105631, 32.858396 ], [ -91.116091, 32.855641 ], [ -91.127886, 32.855059 ], [ -91.145002, 32.842870 ], [ -91.158336, 32.822304 ], [ -91.161669, 32.812465 ], [ -91.164397, 32.785821 ], [ -91.165328, 32.751301 ], [ -91.163389, 32.747009 ], [ -91.154461, 32.742339 ], [ -91.123152, 32.742798 ], [ -91.077176, 32.732534 ], [ -91.060766, 32.727494 ], [ -91.054481, 32.722259 ], [ -91.057043, 32.712576 ], [ -91.063946, 32.702926 ], [ -91.076061, 32.693751 ], [ -91.098762, 32.685291 ], [ -91.118258, 32.674075 ], [ -91.152081, 32.641508 ], [ -91.153821, 32.631282 ], [ -91.151318, 32.615919 ], [ -91.146204, 32.604144 ], [ -91.141148, 32.597209 ], [ -91.127912, 32.586493 ], [ -91.119854, 32.584795 ], [ -91.104111, 32.584657 ], [ -91.096774, 32.576652 ], [ -91.090771, 32.563978 ], [ -91.090611, 32.562705 ], [ -91.089436, 32.553306 ], [ -91.093741, 32.549128 ], [ -91.097878, 32.544752 ], [ -91.116708, 32.500139 ], [ -91.116008, 32.483140 ], [ -91.108808, 32.472040 ], [ -91.095308, 32.458741 ], [ -91.070207, 32.445141 ], [ -91.052907, 32.438442 ], [ -91.029606, 32.433542 ], [ -90.994080, 32.403862 ], [ -91.004506, 32.368144 ], [ -91.003506, 32.362145 ], [ -91.000106, 32.357695 ], [ -90.986672, 32.351760 ], [ -90.912363, 32.339454 ], [ -90.901511, 32.337864 ], [ -90.898588, 32.329094 ], [ -90.905173, 32.315497 ], [ -91.004557, 32.215381 ], [ -91.006306, 32.224150 ], [ -91.021507, 32.236149 ], [ -91.039007, 32.242349 ], [ -91.046507, 32.241149 ], [ -91.122602, 32.216929 ], [ -91.133587, 32.213432 ], [ -91.158026, 32.201956 ], [ -91.164171, 32.196888 ], [ -91.171046, 32.176526 ], [ -91.174552, 32.154978 ], [ -91.171702, 32.144250 ], [ -91.165452, 32.134290 ], [ -91.162822, 32.132694 ], [ -91.131403, 32.126213 ], [ -91.067004, 32.132144 ], [ -91.057487, 32.135515 ], [ -91.052342, 32.137337 ], [ -91.046615, 32.138768 ], [ -91.040531, 32.137337 ], [ -91.034447, 32.134832 ], [ -91.030152, 32.129821 ], [ -91.026931, 32.123737 ], [ -91.027125, 32.120434 ], [ -91.027535, 32.113431 ], [ -91.027946, 32.112722 ], [ -91.034707, 32.101053 ], [ -91.128009, 31.985857 ], [ -91.248144, 31.869848 ], [ -91.293413, 31.860160 ], [ -91.326914, 31.854961 ], [ -91.338414, 31.851261 ], [ -91.345714, 31.842861 ], [ -91.359514, 31.799362 ], [ -91.363714, 31.780363 ], [ -91.365614, 31.760763 ], [ -91.365084, 31.752743 ], [ -91.369375, 31.746903 ], [ -91.379935, 31.733013 ], [ -91.397915, 31.709364 ], [ -91.400115, 31.688164 ], [ -91.398059, 31.655922 ], [ -91.404668, 31.637898 ], [ -91.422090, 31.631290 ], [ -91.441315, 31.631290 ], [ -91.452730, 31.631290 ], [ -91.464746, 31.628886 ], [ -91.474959, 31.621677 ], [ -91.477963, 31.610863 ], [ -91.477963, 31.604855 ], [ -91.477963, 31.598247 ], [ -91.477362, 31.592239 ], [ -91.470754, 31.585630 ], [ -91.458679, 31.583226 ], [ -91.448620, 31.583032 ], [ -91.437711, 31.580824 ], [ -91.425094, 31.577820 ], [ -91.415482, 31.567006 ], [ -91.416683, 31.561599 ], [ -91.422691, 31.554390 ], [ -91.437616, 31.546166 ], [ -91.450017, 31.539666 ], [ -91.479718, 31.530366 ], [ -91.511217, 31.532612 ], [ -91.515810, 31.530894 ], [ -91.522920, 31.519841 ], [ -91.515130, 31.449206 ], [ -91.510356, 31.438928 ], [ -91.505301, 31.432945 ], [ -91.500406, 31.419008 ], [ -91.505093, 31.400933 ], [ -91.513795, 31.386875 ], [ -91.525386, 31.378904 ], [ -91.541242, 31.356750 ], [ -91.539904, 31.337336 ], [ -91.531201, 31.326625 ], [ -91.519820, 31.311228 ], [ -91.508858, 31.291644 ], [ -91.515614, 31.278210 ], [ -91.522397, 31.273423 ], [ -91.547588, 31.264444 ], [ -91.574493, 31.261289 ], [ -91.598490, 31.205485 ], [ -91.599965, 31.192318 ], [ -91.604197, 31.154545 ], [ -91.577373, 31.078179 ], [ -91.564150, 31.066830 ], [ -91.561283, 31.060906 ], [ -91.559907, 31.054119 ], [ -91.562468, 31.043213 ], [ -91.571695, 31.029782 ], [ -91.584670, 31.020185 ], [ -91.636942, 30.999416 ], [ -91.625118, 30.999167 ], [ -91.538727, 30.999388 ], [ -91.425749, 30.999007 ], [ -91.423621, 30.998984 ], [ -91.224839, 30.999183 ], [ -91.224068, 30.999183 ], [ -91.176209, 30.999144 ], [ -91.176140, 30.999144 ], [ -91.108291, 30.998880 ], [ -91.108114, 30.998857 ], [ -91.080814, 30.998909 ], [ -91.068270, 30.998920 ], [ -91.060217, 30.998935 ], [ -90.826027, 30.999360 ], [ -90.825829, 30.999360 ], [ -90.783745, 30.999447 ], [ -90.779858, 30.999457 ], [ -90.775981, 30.999491 ], [ -90.769333, 30.999374 ], [ -90.758775, 30.999583 ], [ -90.734552, 30.999222 ], [ -90.734473, 30.999214 ], [ -90.651193, 30.999510 ], [ -90.648721, 30.999486 ], [ -90.588676, 30.999650 ], [ -90.587373, 30.999604 ], [ -90.584448, 30.999698 ], [ -90.583518, 30.999698 ], [ -90.567195, 30.999733 ], [ -90.547615, 30.999723 ], [ -90.486749, 30.999693 ], [ -90.485876, 30.999740 ], [ -90.477284, 30.999717 ], [ -90.475928, 30.999740 ], [ -90.474094, 30.999798 ], [ -90.442479, 30.999722 ], [ -90.441725, 30.999729 ], [ -90.437351, 30.999730 ], [ -90.426849, 30.999776 ], [ -90.422117, 30.999810 ], [ -90.369371, 31.000335 ], [ -90.347241, 31.000359 ], [ -90.347230, 31.000359 ], [ -90.346007, 31.000363 ], [ -90.259555, 31.000657 ], [ -90.164676, 31.000980 ], [ -90.164278, 31.001025 ], [ -90.131395, 31.000924 ], [ -90.128406, 31.001047 ], [ -90.050706, 31.001215 ], [ -90.029574, 31.001190 ], [ -90.022185, 31.001302 ], [ -90.005332, 31.001364 ], [ -89.975430, 31.001692 ], [ -89.972802, 31.001392 ], [ -89.927161, 31.001437 ], [ -89.923119, 31.001446 ], [ -89.897516, 31.001913 ], [ -89.892708, 31.001759 ], [ -89.856862, 31.002075 ], [ -89.835908, 31.002059 ], [ -89.835542, 31.002059 ], [ -89.824617, 31.002060 ], [ -89.816429, 31.002084 ], [ -89.752642, 31.001853 ], [ -89.732504, 31.004831 ], [ -89.728147, 31.002431 ], [ -89.728148, 31.002300 ], [ -89.728382, 30.971141 ], [ -89.744789, 30.918933 ], [ -89.756543, 30.900431 ], [ -89.770931, 30.899432 ], [ -89.773410, 30.897693 ], [ -89.789863, 30.851527 ], [ -89.826175, 30.736594 ], [ -89.842596, 30.666038 ], [ -89.842585, 30.666005 ], [ -89.823384, 30.608535 ], [ -89.806843, 30.572039 ], [ -89.760570, 30.515761 ], [ -89.732577, 30.492502 ], [ -89.724614, 30.491902 ], [ -89.690580, 30.458773 ], [ -89.683410, 30.451793 ], [ -89.629941, 30.339449 ], [ -89.629877, 30.321017 ], [ -89.640694, 30.301313 ], [ -89.643575, 30.293099 ], [ -89.643440, 30.287682 ], [ -89.607655, 30.217096 ], [ -89.580754, 30.186197 ], [ -89.572654, 30.180897 ], [ -89.524504, 30.180753 ], [ -89.531213, 30.177099 ], [ -89.537493, 30.171745 ], [ -89.555013, 30.170798 ], [ -89.562825, 30.168667 ], [ -89.568270, 30.163932 ], [ -89.572093, 30.160362 ], [ -89.587062, 30.150648 ], [ -89.595021, 30.149891 ], [ -89.598027, 30.152409 ], [ -89.617542, 30.156422 ], [ -89.622880, 30.152368 ], [ -89.625053, 30.150717 ], [ -89.640989, 30.138612 ], [ -89.644550, 30.134108 ], [ -89.650467, 30.126625 ], [ -89.656986, 30.118381 ], [ -89.658594, 30.117364 ], [ -89.668164, 30.111311 ], [ -89.668638, 30.111011 ], [ -89.669157, 30.110683 ], [ -89.669182, 30.110667 ], [ -89.672881, 30.110490 ], [ -89.674124, 30.110430 ], [ -89.674633, 30.110406 ], [ -89.674956, 30.110212 ], [ -89.675762, 30.109728 ], [ -89.676117, 30.109515 ], [ -89.678156, 30.108290 ], [ -89.678163, 30.108286 ], [ -89.678293, 30.107746 ], [ -89.678457, 30.107059 ], [ -89.678499, 30.106886 ], [ -89.679655, 30.102067 ], [ -89.679823, 30.101367 ], [ -89.679838, 30.101304 ], [ -89.680042, 30.100452 ], [ -89.680350, 30.099171 ], [ -89.680485, 30.098605 ], [ -89.681265, 30.095355 ], [ -89.681906, 30.092682 ], [ -89.682057, 30.092052 ], [ -89.682181, 30.091536 ], [ -89.682181, 30.091531 ], [ -89.682277, 30.090565 ], [ -89.682280, 30.090531 ], [ -89.682331, 30.090015 ], [ -89.682371, 30.089607 ], [ -89.682393, 30.089391 ], [ -89.682409, 30.089225 ], [ -89.682691, 30.086365 ], [ -89.683051, 30.082718 ], [ -89.683168, 30.081530 ], [ -89.683712, 30.076018 ], [ -89.697556, 30.070842 ], [ -89.698461, 30.070504 ], [ -89.698496, 30.070491 ], [ -89.698909, 30.070451 ], [ -89.699144, 30.070428 ], [ -89.699629, 30.070381 ], [ -89.711848, 30.069194 ], [ -89.712942, 30.069088 ], [ -89.713003, 30.069061 ], [ -89.714085, 30.068582 ], [ -89.714827, 30.068253 ], [ -89.715494, 30.067958 ], [ -89.715884, 30.067785 ], [ -89.716237, 30.067628 ], [ -89.716425, 30.067545 ], [ -89.716750, 30.067402 ], [ -89.716887, 30.067341 ], [ -89.721992, 30.065080 ], [ -89.724433, 30.063999 ], [ -89.726330, 30.063158 ], [ -89.727453, 30.062661 ], [ -89.728026, 30.061841 ], [ -89.729570, 30.059628 ], [ -89.729680, 30.059470 ], [ -89.729790, 30.059314 ], [ -89.729911, 30.059139 ], [ -89.730990, 30.057594 ], [ -89.730999, 30.057581 ], [ -89.731208, 30.054558 ], [ -89.731428, 30.051377 ], [ -89.731452, 30.051040 ], [ -89.731545, 30.049694 ], [ -89.731545, 30.049691 ], [ -89.731544, 30.049690 ], [ -89.716300, 30.028110 ], [ -89.716300, 30.028106 ], [ -89.716301, 30.028088 ], [ -89.716328, 30.027415 ], [ -89.716336, 30.027230 ], [ -89.716358, 30.026686 ], [ -89.716377, 30.026222 ], [ -89.724649, 30.022454 ], [ -89.724669, 30.022453 ], [ -89.725760, 30.022403 ], [ -89.733323, 30.022054 ], [ -89.734361, 30.022884 ], [ -89.739028, 30.026618 ], [ -89.739574, 30.027055 ], [ -89.740886, 30.028104 ], [ -89.745827, 30.032056 ], [ -89.746313, 30.032445 ], [ -89.746505, 30.032599 ], [ -89.746506, 30.032600 ], [ -89.757138, 30.038650 ], [ -89.763216, 30.042108 ], [ -89.782534, 30.045372 ], [ -89.784630, 30.045253 ], [ -89.813684, 30.043605 ], [ -89.818561, 30.043328 ], [ -89.829762, 30.033275 ], [ -89.830442, 30.032664 ], [ -89.832213, 30.031075 ], [ -89.832965, 30.030400 ], [ -89.833794, 30.029656 ], [ -89.834644, 30.028893 ], [ -89.835202, 30.028393 ], [ -89.839926, 30.024153 ], [ -89.839933, 30.024146 ], [ -89.840963, 30.022995 ], [ -89.841739, 30.022127 ], [ -89.854533, 30.007821 ], [ -89.857558, 30.004439 ], [ -89.852312, 29.977650 ], [ -89.844202, 29.955645 ], [ -89.838500, 29.945816 ], [ -89.829023, 29.939228 ], [ -89.818030, 29.934145 ], [ -89.804463, 29.932588 ], [ -89.775459, 29.937416 ], [ -89.748492, 29.945831 ], [ -89.727933, 29.958780 ], [ -89.719067, 29.953699 ], [ -89.712910, 29.946349 ], [ -89.736311, 29.936263 ], [ -89.742727, 29.935894 ], [ -89.746273, 29.928221 ], [ -89.742479, 29.908170 ], [ -89.711158, 29.879287 ], [ -89.692004, 29.868722 ], [ -89.671555, 29.867535 ], [ -89.660568, 29.862909 ], [ -89.638016, 29.864065 ], [ -89.613159, 29.872160 ], [ -89.598129, 29.881409 ], [ -89.591194, 29.897018 ], [ -89.592346, 29.917253 ], [ -89.583099, 29.931705 ], [ -89.583099, 29.945581 ], [ -89.574997, 29.959455 ], [ -89.574425, 29.983738 ], [ -89.581360, 29.994722 ], [ -89.571533, 29.999926 ], [ -89.551292, 30.005709 ], [ -89.501587, 30.034037 ], [ -89.494064, 30.040972 ], [ -89.494637, 30.050800 ], [ -89.499275, 30.058893 ], [ -89.493484, 30.072191 ], [ -89.481926, 30.079128 ], [ -89.458946, 30.063450 ], [ -89.444618, 30.060959 ], [ -89.429047, 30.052240 ], [ -89.418465, 30.049747 ], [ -89.372375, 30.054729 ], [ -89.368637, 30.047256 ], [ -89.372375, 30.036671 ], [ -89.381096, 30.030441 ], [ -89.393555, 30.029818 ], [ -89.415970, 30.020477 ], [ -89.422813, 30.015495 ], [ -89.432785, 30.008022 ], [ -89.433411, 29.991205 ], [ -89.432785, 29.978752 ], [ -89.405380, 29.965672 ], [ -89.393555, 29.966295 ], [ -89.379227, 29.963804 ], [ -89.378601, 29.919588 ], [ -89.368019, 29.911491 ], [ -89.331894, 29.915850 ], [ -89.315453, 29.923208 ], [ -89.283562, 29.973320 ], [ -89.273315, 29.993820 ], [ -89.250534, 30.002361 ], [ -89.243706, 29.997236 ], [ -89.249969, 29.975597 ], [ -89.218071, 29.972750 ], [ -89.223770, 29.961929 ], [ -89.231178, 29.925484 ], [ -89.244843, 29.930040 ], [ -89.263062, 29.929472 ], [ -89.280144, 29.924915 ], [ -89.318306, 29.898149 ], [ -89.322289, 29.887333 ], [ -89.311462, 29.881636 ], [ -89.289253, 29.880499 ], [ -89.272179, 29.886763 ], [ -89.241425, 29.889610 ], [ -89.236298, 29.886763 ], [ -89.236298, 29.877081 ], [ -89.254517, 29.864552 ], [ -89.269897, 29.859997 ], [ -89.294952, 29.857149 ], [ -89.317726, 29.850885 ], [ -89.363289, 29.845760 ], [ -89.383789, 29.838928 ], [ -89.383217, 29.830385 ], [ -89.372971, 29.825260 ], [ -89.345634, 29.820135 ], [ -89.342781, 29.798496 ], [ -89.331970, 29.790524 ], [ -89.318306, 29.788815 ], [ -89.293251, 29.803053 ], [ -89.277298, 29.807608 ], [ -89.277298, 29.799635 ], [ -89.284134, 29.795649 ], [ -89.284706, 29.770021 ], [ -89.269325, 29.760912 ], [ -89.271034, 29.756355 ], [ -89.305199, 29.756926 ], [ -89.316025, 29.760912 ], [ -89.325134, 29.772301 ], [ -89.337662, 29.779135 ], [ -89.354179, 29.781412 ], [ -89.367271, 29.775148 ], [ -89.386063, 29.788815 ], [ -89.394608, 29.784828 ], [ -89.399162, 29.770592 ], [ -89.414536, 29.752371 ], [ -89.428207, 29.741550 ], [ -89.424210, 29.697638 ], [ -89.448120, 29.703316 ], [ -89.471992, 29.718597 ], [ -89.486961, 29.725920 ], [ -89.506065, 29.731651 ], [ -89.530258, 29.743750 ], [ -89.540131, 29.743750 ], [ -89.560181, 29.735472 ], [ -89.572922, 29.746616 ], [ -89.598068, 29.747570 ], [ -89.634048, 29.752981 ], [ -89.651237, 29.749479 ], [ -89.649651, 29.719872 ], [ -89.644562, 29.710957 ], [ -89.618446, 29.700768 ], [ -89.599030, 29.704908 ], [ -89.592979, 29.702042 ], [ -89.599663, 29.690262 ], [ -89.596802, 29.684212 ], [ -89.573883, 29.674025 ], [ -89.557320, 29.670204 ], [ -89.533760, 29.670204 ], [ -89.487915, 29.630405 ], [ -89.485367, 29.624357 ], [ -89.486709, 29.621003 ], [ -89.486931, 29.620447 ], [ -89.504738, 29.631508 ], [ -89.523018, 29.639427 ], [ -89.535202, 29.648567 ], [ -89.583336, 29.652834 ], [ -89.608925, 29.657707 ], [ -89.621109, 29.657101 ], [ -89.623550, 29.662584 ], [ -89.632698, 29.671724 ], [ -89.644272, 29.675381 ], [ -89.649750, 29.672941 ], [ -89.641228, 29.647961 ], [ -89.641228, 29.635773 ], [ -89.647324, 29.625414 ], [ -89.657677, 29.624195 ], [ -89.674736, 29.626633 ], [ -89.684486, 29.624804 ], [ -89.688141, 29.615055 ], [ -89.684486, 29.602867 ], [ -89.671082, 29.588243 ], [ -89.668648, 29.580322 ], [ -89.684486, 29.563263 ], [ -89.684486, 29.551073 ], [ -89.681092, 29.534487 ], [ -89.696230, 29.525004 ], [ -89.699698, 29.523423 ], [ -89.700845, 29.520785 ], [ -89.700501, 29.515967 ], [ -89.693877, 29.508559 ], [ -89.665813, 29.490020 ], [ -89.644039, 29.492343 ], [ -89.635330, 29.489294 ], [ -89.617558, 29.468298 ], [ -89.596533, 29.456303 ], [ -89.592474, 29.449822 ], [ -89.589536, 29.437662 ], [ -89.577096, 29.433692 ], [ -89.574635, 29.435734 ], [ -89.574653, 29.441100 ], [ -89.548686, 29.465723 ], [ -89.528429, 29.454702 ], [ -89.532150, 29.434567 ], [ -89.531943, 29.425679 ], [ -89.518368, 29.400230 ], [ -89.508551, 29.386168 ], [ -89.505038, 29.386040 ], [ -89.487308, 29.393346 ], [ -89.484354, 29.397471 ], [ -89.482318, 29.406222 ], [ -89.477140, 29.411241 ], [ -89.470142, 29.401471 ], [ -89.457303, 29.393148 ], [ -89.422380, 29.390628 ], [ -89.380001, 29.391785 ], [ -89.373109, 29.387175 ], [ -89.355528, 29.381569 ], [ -89.340304, 29.381412 ], [ -89.336589, 29.378228 ], [ -89.347615, 29.365000 ], [ -89.350694, 29.349544 ], [ -89.323170, 29.343982 ], [ -89.303766, 29.357455 ], [ -89.283028, 29.356467 ], [ -89.272543, 29.351195 ], [ -89.265300, 29.345352 ], [ -89.257852, 29.336872 ], [ -89.253545, 29.322802 ], [ -89.240870, 29.310081 ], [ -89.224192, 29.313792 ], [ -89.223444, 29.318066 ], [ -89.219734, 29.324412 ], [ -89.204703, 29.338674 ], [ -89.200389, 29.344418 ], [ -89.200599, 29.347672 ], [ -89.189354, 29.345061 ], [ -89.179547, 29.339608 ], [ -89.177351, 29.335210 ], [ -89.178221, 29.326970 ], [ -89.165015, 29.303039 ], [ -89.157593, 29.296691 ], [ -89.140275, 29.291085 ], [ -89.134337, 29.279340 ], [ -89.136979, 29.275239 ], [ -89.129688, 29.265632 ], [ -89.100106, 29.250220 ], [ -89.096173, 29.242930 ], [ -89.095544, 29.238028 ], [ -89.098389, 29.232963 ], [ -89.105833, 29.231608 ], [ -89.106244, 29.215912 ], [ -89.100650, 29.206314 ], [ -89.090724, 29.199992 ], [ -89.068265, 29.204166 ], [ -89.067371, 29.208636 ], [ -89.029103, 29.220956 ], [ -89.021850, 29.218162 ], [ -89.015192, 29.211561 ], [ -89.000674, 29.180091 ], [ -89.005290, 29.164949 ], [ -89.013254, 29.163280 ], [ -89.018344, 29.165046 ], [ -89.024269, 29.170043 ], [ -89.043919, 29.162528 ], [ -89.047233, 29.157833 ], [ -89.038730, 29.142380 ], [ -89.032004, 29.144747 ], [ -89.024149, 29.137298 ], [ -89.023942, 29.133700 ], [ -89.026031, 29.130126 ], [ -89.051953, 29.106554 ], [ -89.055475, 29.084167 ], [ -89.062335, 29.070234 ], [ -89.091260, 29.066931 ], [ -89.098068, 29.067984 ], [ -89.105009, 29.073641 ], [ -89.121542, 29.069074 ], [ -89.143453, 29.047591 ], [ -89.156339, 29.028782 ], [ -89.162000, 29.015860 ], [ -89.162326, 29.011713 ], [ -89.164788, 29.008703 ], [ -89.169850, 29.008703 ], [ -89.175732, 29.012123 ], [ -89.186061, 29.017993 ], [ -89.182150, 29.025486 ], [ -89.189893, 29.032635 ], [ -89.197871, 29.029701 ], [ -89.202563, 29.031603 ], [ -89.211144, 29.040813 ], [ -89.216101, 29.056371 ], [ -89.215531, 29.061410 ], [ -89.217201, 29.067275 ], [ -89.225865, 29.078660 ], [ -89.236310, 29.084605 ], [ -89.254726, 29.083261 ], [ -89.257283, 29.081086 ], [ -89.256869, 29.073800 ], [ -89.253640, 29.064954 ], [ -89.259354, 29.058358 ], [ -89.283215, 29.053325 ], [ -89.291090, 29.053097 ], [ -89.304888, 29.046379 ], [ -89.315389, 29.039081 ], [ -89.318102, 29.035342 ], [ -89.315182, 29.032662 ], [ -89.324850, 29.013805 ], [ -89.335228, 29.015003 ], [ -89.338249, 29.012935 ], [ -89.383814, 28.947434 ], [ -89.411480, 28.925011 ], [ -89.419865, 28.929709 ], [ -89.412388, 28.957504 ], [ -89.408157, 28.965341 ], [ -89.398104, 28.977016 ], [ -89.382106, 28.981525 ], [ -89.375049, 28.985368 ], [ -89.334735, 29.040335 ], [ -89.339828, 29.052221 ], [ -89.354798, 29.072543 ], [ -89.374522, 29.084174 ], [ -89.405654, 29.086936 ], [ -89.411154, 29.105838 ], [ -89.409371, 29.127855 ], [ -89.417718, 29.138690 ], [ -89.428965, 29.144510 ], [ -89.432932, 29.149023 ], [ -89.447472, 29.178576 ], [ -89.455829, 29.190991 ], [ -89.472310, 29.207550 ], [ -89.482844, 29.215053 ], [ -89.536600, 29.236212 ], [ -89.606651, 29.252023 ], [ -89.671781, 29.289028 ], [ -89.697258, 29.296679 ], [ -89.726162, 29.304026 ], [ -89.782149, 29.311132 ], [ -89.819859, 29.310241 ], [ -89.850305, 29.311768 ], [ -89.855109, 29.334997 ], [ -89.853699, 29.340640 ], [ -89.847124, 29.349186 ], [ -89.835000, 29.359043 ], [ -89.820824, 29.377486 ], [ -89.816916, 29.384385 ], [ -89.816155, 29.393518 ], [ -89.816916, 29.398845 ], [ -89.819199, 29.404173 ], [ -89.822243, 29.409500 ], [ -89.826049, 29.415589 ], [ -89.835392, 29.418538 ], [ -89.843553, 29.421677 ], [ -89.845075, 29.434615 ], [ -89.836773, 29.454040 ], [ -89.833659, 29.456686 ], [ -89.833659, 29.459731 ], [ -89.832898, 29.463536 ], [ -89.833659, 29.467341 ], [ -89.834420, 29.470386 ], [ -89.840509, 29.473430 ], [ -89.849642, 29.477996 ], [ -89.862580, 29.476474 ], [ -89.876224, 29.472168 ], [ -89.902179, 29.460011 ], [ -89.918999, 29.444254 ], [ -89.932598, 29.429288 ], [ -89.955430, 29.428527 ], [ -89.961950, 29.432874 ], [ -89.964563, 29.434615 ], [ -89.972934, 29.443748 ], [ -89.991961, 29.463536 ], [ -90.012510, 29.462775 ], [ -90.018598, 29.452120 ], [ -90.022404, 29.444509 ], [ -90.029466, 29.432015 ], [ -90.032298, 29.427005 ], [ -90.031536, 29.412545 ], [ -90.033295, 29.393274 ], [ -90.029468, 29.388136 ], [ -90.029614, 29.386658 ], [ -90.029967, 29.383087 ], [ -90.030761, 29.375043 ], [ -90.030764, 29.375008 ], [ -90.030855, 29.374876 ], [ -90.033604, 29.370851 ], [ -90.035415, 29.368201 ], [ -90.036374, 29.363661 ], [ -90.032842, 29.348624 ], [ -90.031815, 29.344251 ], [ -90.034275, 29.322661 ], [ -90.028536, 29.307083 ], [ -90.013778, 29.302710 ], [ -90.009678, 29.294785 ], [ -90.016288, 29.284257 ], [ -90.019517, 29.282213 ], [ -90.032088, 29.280027 ], [ -90.043293, 29.282487 ], [ -90.057094, 29.281331 ], [ -90.061057, 29.276748 ], [ -90.059691, 29.272648 ], [ -90.060511, 29.267729 ], [ -90.070622, 29.262537 ], [ -90.086747, 29.259257 ], [ -90.091119, 29.261443 ], [ -90.097678, 29.261990 ], [ -90.101231, 29.259804 ], [ -90.096038, 29.240673 ], [ -90.073355, 29.227282 ], [ -90.073355, 29.210611 ], [ -90.070622, 29.208698 ], [ -90.063610, 29.209474 ], [ -90.042910, 29.211765 ], [ -90.019772, 29.231903 ], [ -90.005718, 29.240627 ], [ -89.969981, 29.255753 ], [ -89.965667, 29.259126 ], [ -89.959509, 29.267677 ], [ -89.951175, 29.266124 ], [ -89.949925, 29.263154 ], [ -89.950756, 29.260801 ], [ -89.956460, 29.253744 ], [ -90.022029, 29.216065 ], [ -90.058512, 29.183687 ], [ -90.079276, 29.169970 ], [ -90.088684, 29.162574 ], [ -90.104162, 29.150407 ], [ -90.174273, 29.105301 ], [ -90.223587, 29.085075 ], [ -90.231984, 29.087730 ], [ -90.245283, 29.085824 ], [ -90.343293, 29.057062 ], [ -90.348768, 29.057817 ], [ -90.349891, 29.063681 ], [ -90.325514, 29.075138 ], [ -90.304129, 29.077332 ], [ -90.292930, 29.078761 ], [ -90.282983, 29.082326 ], [ -90.266290, 29.089421 ], [ -90.258145, 29.091627 ], [ -90.253141, 29.093772 ], [ -90.249806, 29.100919 ], [ -90.250044, 29.108067 ], [ -90.243849, 29.110450 ], [ -90.234235, 29.110268 ], [ -90.234405, 29.128824 ], [ -90.243435, 29.136311 ], [ -90.248629, 29.138370 ], [ -90.269010, 29.139242 ], [ -90.280516, 29.142521 ], [ -90.278320, 29.150691 ], [ -90.297000, 29.171317 ], [ -90.302846, 29.175098 ], [ -90.302948, 29.187948 ], [ -90.300885, 29.196171 ], [ -90.293183, 29.199789 ], [ -90.282800, 29.192545 ], [ -90.275851, 29.193668 ], [ -90.271251, 29.204639 ], [ -90.286621, 29.225694 ], [ -90.300304, 29.231241 ], [ -90.311663, 29.237954 ], [ -90.311523, 29.256374 ], [ -90.316093, 29.264777 ], [ -90.332796, 29.276956 ], [ -90.367166, 29.274128 ], [ -90.368154, 29.270736 ], [ -90.367012, 29.264956 ], [ -90.372565, 29.258923 ], [ -90.387924, 29.252786 ], [ -90.383857, 29.235606 ], [ -90.399465, 29.201046 ], [ -90.408578, 29.196421 ], [ -90.409416, 29.196135 ], [ -90.432912, 29.188132 ], [ -90.435907, 29.188449 ], [ -90.443954, 29.195830 ], [ -90.472489, 29.192688 ], [ -90.473273, 29.195224 ], [ -90.468773, 29.198469 ], [ -90.467233, 29.202549 ], [ -90.485786, 29.209843 ], [ -90.494928, 29.216713 ], [ -90.490987, 29.220883 ], [ -90.468320, 29.227532 ], [ -90.465764, 29.242951 ], [ -90.462866, 29.249809 ], [ -90.450674, 29.263739 ], [ -90.452186, 29.266250 ], [ -90.472779, 29.272556 ], [ -90.495299, 29.287277 ], [ -90.510555, 29.290925 ], [ -90.517277, 29.282719 ], [ -90.526216, 29.276492 ], [ -90.552005, 29.278512 ], [ -90.565436, 29.285111 ], [ -90.582525, 29.276037 ], [ -90.589724, 29.248521 ], [ -90.588470, 29.245863 ], [ -90.583924, 29.242886 ], [ -90.576506, 29.243986 ], [ -90.565378, 29.242475 ], [ -90.544547, 29.230683 ], [ -90.543245, 29.227843 ], [ -90.544311, 29.224292 ], [ -90.556501, 29.219913 ], [ -90.557390, 29.207881 ], [ -90.560889, 29.204261 ], [ -90.575277, 29.206827 ], [ -90.618413, 29.203290 ], [ -90.624161, 29.210366 ], [ -90.627420, 29.211004 ], [ -90.633819, 29.209128 ], [ -90.640223, 29.196554 ], [ -90.645612, 29.175867 ], [ -90.645169, 29.172958 ], [ -90.640863, 29.171261 ], [ -90.636973, 29.164572 ], [ -90.647042, 29.128580 ], [ -90.677724, 29.118742 ], [ -90.691109, 29.121722 ], [ -90.700893, 29.121470 ], [ -90.718035, 29.116611 ], [ -90.731239, 29.122886 ], [ -90.764189, 29.113374 ], [ -90.773458, 29.100133 ], [ -90.799444, 29.087377 ], [ -90.802053, 29.083322 ], [ -90.803699, 29.063709 ], [ -90.798720, 29.054841 ], [ -90.781981, 29.049431 ], [ -90.765188, 29.049403 ], [ -90.750092, 29.053247 ], [ -90.725300, 29.066616 ], [ -90.709105, 29.064305 ], [ -90.705350, 29.062679 ], [ -90.702102, 29.060275 ], [ -90.692205, 29.059607 ], [ -90.683645, 29.060944 ], [ -90.676958, 29.063619 ], [ -90.665589, 29.067230 ], [ -90.652348, 29.069237 ], [ -90.644189, 29.071510 ], [ -90.641247, 29.072313 ], [ -90.639240, 29.072848 ], [ -90.637623, 29.072084 ], [ -90.636033, 29.069792 ], [ -90.637495, 29.066608 ], [ -90.648058, 29.062649 ], [ -90.730899, 29.042259 ], [ -90.755677, 29.038997 ], [ -90.797680, 29.039741 ], [ -90.811473, 29.036580 ], [ -90.839345, 29.039167 ], [ -90.842762, 29.042947 ], [ -90.844849, 29.048721 ], [ -90.841226, 29.054266 ], [ -90.844593, 29.067280 ], [ -90.862757, 29.094863 ], [ -90.867766, 29.095434 ], [ -90.877583, 29.104891 ], [ -90.885351, 29.117016 ], [ -90.898215, 29.131342 ], [ -90.925797, 29.153116 ], [ -90.941877, 29.162373 ], [ -90.948091, 29.174104 ], [ -90.961278, 29.180817 ], [ -90.981458, 29.171211 ], [ -91.000096, 29.169481 ], [ -91.023955, 29.174784 ], [ -91.031786, 29.182188 ], [ -91.058630, 29.181734 ], [ -91.094015, 29.187711 ], [ -91.114760, 29.207918 ], [ -91.129141, 29.215863 ], [ -91.199647, 29.221287 ], [ -91.219032, 29.226051 ], [ -91.278792, 29.247776 ], [ -91.302677, 29.265958 ], [ -91.334885, 29.298775 ], [ -91.332750, 29.305816 ], [ -91.309314, 29.305698 ], [ -91.299054, 29.309017 ], [ -91.291821, 29.311357 ], [ -91.290420, 29.313062 ], [ -91.279742, 29.326058 ], [ -91.276647, 29.329825 ], [ -91.276187, 29.332783 ], [ -91.274308, 29.344878 ], [ -91.270582, 29.355415 ], [ -91.270053, 29.356912 ], [ -91.269940, 29.357231 ], [ -91.266589, 29.361218 ], [ -91.265479, 29.361767 ], [ -91.251546, 29.368659 ], [ -91.251232, 29.368814 ], [ -91.249517, 29.369662 ], [ -91.249109, 29.369864 ], [ -91.245558, 29.370580 ], [ -91.238515, 29.371999 ], [ -91.235348, 29.370638 ], [ -91.222377, 29.360703 ], [ -91.207299, 29.360703 ], [ -91.197465, 29.369882 ], [ -91.200087, 29.389550 ], [ -91.218463, 29.407235 ], [ -91.215976, 29.412505 ], [ -91.214284, 29.416089 ], [ -91.211999, 29.420931 ], [ -91.215100, 29.427542 ], [ -91.217448, 29.432549 ], [ -91.218067, 29.433193 ], [ -91.219242, 29.434418 ], [ -91.221166, 29.436421 ], [ -91.241640, 29.441021 ], [ -91.251319, 29.444483 ], [ -91.258226, 29.446954 ], [ -91.259537, 29.458001 ], [ -91.259844, 29.460582 ], [ -91.259988, 29.461803 ], [ -91.260024, 29.462102 ], [ -91.261588, 29.464954 ], [ -91.265649, 29.472362 ], [ -91.281300, 29.481547 ], [ -91.294325, 29.476894 ], [ -91.335742, 29.485886 ], [ -91.343567, 29.492593 ], [ -91.345880, 29.504538 ], [ -91.356625, 29.515191 ], [ -91.402214, 29.511914 ], [ -91.420449, 29.515745 ], [ -91.427130, 29.520215 ], [ -91.432337, 29.532830 ], [ -91.439941, 29.540434 ], [ -91.447345, 29.544749 ], [ -91.468748, 29.544299 ], [ -91.517274, 29.529740 ], [ -91.531021, 29.531543 ], [ -91.531471, 29.535374 ], [ -91.525840, 29.545946 ], [ -91.525523, 29.551904 ], [ -91.529217, 29.558598 ], [ -91.537445, 29.565888 ], [ -91.541974, 29.594353 ], [ -91.553537, 29.632766 ], [ -91.560908, 29.637350 ], [ -91.570589, 29.638312 ], [ -91.581843, 29.637165 ], [ -91.600179, 29.631156 ], [ -91.625114, 29.626195 ], [ -91.643832, 29.630625 ], [ -91.648941, 29.633635 ], [ -91.648657, 29.636713 ], [ -91.646478, 29.639427 ], [ -91.643198, 29.640274 ], [ -91.637344, 29.647217 ], [ -91.627286, 29.662132 ], [ -91.625114, 29.671679 ], [ -91.626826, 29.684753 ], [ -91.623829, 29.699240 ], [ -91.618479, 29.710816 ], [ -91.618090, 29.720694 ], [ -91.621512, 29.735429 ], [ -91.632829, 29.742576 ], [ -91.667128, 29.745822 ], [ -91.710935, 29.738993 ], [ -91.737253, 29.749370 ], [ -91.752259, 29.748264 ], [ -91.783674, 29.740689 ], [ -91.830499, 29.718918 ], [ -91.845962, 29.708763 ], [ -91.858640, 29.703121 ], [ -91.866516, 29.707150 ], [ -91.880750, 29.710839 ], [ -91.880999, 29.713338 ], [ -91.878331, 29.716087 ], [ -91.875637, 29.722316 ], [ -91.875570, 29.722471 ], [ -91.875570, 29.728043 ], [ -91.878355, 29.735007 ], [ -91.879748, 29.742668 ], [ -91.878355, 29.751025 ], [ -91.874761, 29.760083 ], [ -91.859151, 29.783331 ], [ -91.854677, 29.807436 ], [ -91.869998, 29.828328 ], [ -91.889118, 29.836023 ], [ -91.906890, 29.830940 ], [ -91.915989, 29.815654 ], [ -91.919143, 29.815379 ], [ -91.940723, 29.817008 ], [ -91.961230, 29.810221 ], [ -91.970443, 29.804310 ], [ -91.978381, 29.799217 ], [ -91.983871, 29.794516 ], [ -92.035666, 29.781662 ], [ -92.056398, 29.772313 ], [ -92.107486, 29.744429 ], [ -92.144431, 29.716418 ], [ -92.149349, 29.697052 ], [ -92.134347, 29.669516 ], [ -92.132804, 29.660462 ], [ -92.111787, 29.621770 ], [ -92.093419, 29.618694 ], [ -92.065640, 29.619967 ], [ -92.047670, 29.624527 ], [ -92.025320, 29.625647 ], [ -92.016270, 29.618741 ], [ -92.000371, 29.613143 ], [ -92.000003, 29.613013 ], [ -91.965031, 29.608019 ], [ -91.939903, 29.610291 ], [ -91.935024, 29.612239 ], [ -91.929567, 29.618840 ], [ -91.922825, 29.633173 ], [ -91.898996, 29.637010 ], [ -91.896763, 29.634618 ], [ -91.882318, 29.629770 ], [ -91.866113, 29.631583 ], [ -91.863018, 29.633739 ], [ -91.841294, 29.629620 ], [ -91.838981, 29.624475 ], [ -91.840921, 29.619913 ], [ -91.838297, 29.616041 ], [ -91.821693, 29.606049 ], [ -91.803831, 29.599562 ], [ -91.784976, 29.595204 ], [ -91.778500, 29.589220 ], [ -91.774805, 29.582113 ], [ -91.774686, 29.576387 ], [ -91.746320, 29.574337 ], [ -91.719102, 29.565568 ], [ -91.715642, 29.565844 ], [ -91.712002, 29.564740 ], [ -91.709205, 29.561012 ], [ -91.711654, 29.554270 ], [ -91.733956, 29.539504 ], [ -91.747058, 29.535144 ], [ -91.765448, 29.520844 ], [ -91.771927, 29.504871 ], [ -91.772529, 29.499016 ], [ -91.770069, 29.493812 ], [ -91.770516, 29.488953 ], [ -91.782387, 29.482882 ], [ -91.789119, 29.482081 ], [ -91.800121, 29.486828 ], [ -91.803448, 29.486851 ], [ -91.814609, 29.482061 ], [ -91.821576, 29.473925 ], [ -91.838500, 29.478874 ], [ -91.848665, 29.484144 ], [ -91.852598, 29.494984 ], [ -91.862324, 29.502393 ], [ -91.878746, 29.502937 ], [ -91.886815, 29.505577 ], [ -91.906175, 29.518052 ], [ -91.915322, 29.518513 ], [ -91.947007, 29.533160 ], [ -91.969312, 29.536893 ], [ -91.985726, 29.547708 ], [ -92.026810, 29.566805 ], [ -92.035462, 29.578640 ], [ -92.041168, 29.581648 ], [ -92.046316, 29.584362 ], [ -92.066533, 29.583842 ], [ -92.105923, 29.586335 ], [ -92.158624, 29.581616 ], [ -92.212590, 29.562479 ], [ -92.251860, 29.539354 ], [ -92.280392, 29.533434 ], [ -92.309357, 29.533026 ], [ -92.347236, 29.539394 ], [ -92.402165, 29.551269 ], [ -92.473585, 29.561081 ], [ -92.558602, 29.569935 ], [ -92.616270, 29.578729 ], [ -92.617725, 29.579092 ], [ -92.653651, 29.588065 ], [ -92.744126, 29.617608 ], [ -92.871232, 29.670028 ], [ -92.940455, 29.701033 ], [ -92.974305, 29.713980 ], [ -93.065354, 29.740966 ], [ -93.088182, 29.749125 ], [ -93.176930, 29.770487 ], [ -93.226934, 29.777519 ], [ -93.267456, 29.778113 ], [ -93.295573, 29.775071 ], [ -93.342104, 29.763402 ], [ -93.344993, 29.759618 ], [ -93.347331, 29.759046 ], [ -93.372029, 29.763049 ], [ -93.438973, 29.768949 ], [ -93.475252, 29.769242 ], [ -93.538462, 29.763299 ], [ -93.590786, 29.755649 ], [ -93.635304, 29.752806 ], [ -93.683640, 29.747153 ], [ -93.741948, 29.736343 ], [ -93.766048, 29.729500 ], [ -93.799250, 29.715260 ], [ -93.818995, 29.704076 ], [ -93.837971, 29.690619 ], [ -93.892246, 29.765241 ], [ -93.898470, 29.771577 ], [ -93.890679, 29.843159 ], [ -93.840799, 29.914423 ], [ -93.789431, 29.987812 ], [ -93.756630, 30.014163 ], [ -93.752038, 30.016403 ], [ -93.722481, 30.050898 ], [ -93.721589, 30.051939 ], [ -93.712101, 30.067346 ], [ -93.695684, 30.135729 ], [ -93.695252, 30.147600 ], [ -93.712008, 30.194304 ], [ -93.716223, 30.244318 ], [ -93.720575, 30.295961 ], [ -93.723586, 30.294951 ], [ -93.735896, 30.299440 ], [ -93.765822, 30.333318 ], [ -93.757654, 30.390423 ], [ -93.751437, 30.396288 ], [ -93.741701, 30.403007 ], [ -93.702665, 30.429947 ], [ -93.698302, 30.438657 ], [ -93.697828, 30.443838 ], [ -93.710117, 30.506400 ], [ -93.740045, 30.538765 ], [ -93.727844, 30.574070 ], [ -93.578395, 30.802047 ], [ -93.563292, 30.818503 ], [ -93.558672, 30.868829 ], [ -93.558617, 30.869424 ], [ -93.554970, 30.876685 ], [ -93.554576, 30.877470 ], [ -93.530936, 30.924534 ], [ -93.540354, 31.008135 ], [ -93.527644, 31.074509 ], [ -93.531744, 31.180817 ], [ -93.535097, 31.185614 ], [ -93.548931, 31.186601 ], [ -93.552540, 31.185605 ], [ -93.552649, 31.185575 ], [ -93.579215, 31.167422 ], [ -93.588503, 31.165581 ], [ -93.598828, 31.174679 ], [ -93.599705, 31.176456 ], [ -93.602315, 31.181742 ], [ -93.607243, 31.204806 ], [ -93.608158, 31.227835 ], [ -93.614402, 31.260869 ], [ -93.620829, 31.271299 ], [ -93.644407, 31.277110 ], [ -93.671676, 31.299586 ], [ -93.640805, 31.372546 ], [ -93.670182, 31.387184 ], [ -93.695866, 31.409392 ], [ -93.729613, 31.487922 ], [ -93.798087, 31.534044 ], [ -93.818582, 31.554826 ], [ -93.834923, 31.586210 ], [ -93.834924, 31.586211 ], [ -93.826290, 31.614903 ], [ -93.817059, 31.671694 ], [ -93.812477, 31.715246 ], [ -93.840029, 31.800596 ], [ -93.878225, 31.844276 ], [ -93.889193, 31.856819 ], [ -93.920290, 31.888651 ], [ -93.932135, 31.893672 ], [ -93.975377, 31.923660 ], [ -94.015630, 31.979856 ], [ -94.042720, 31.999265 ], [ -94.042700, 32.056012 ], [ -94.042337, 32.119914 ], [ -94.042681, 32.137956 ], [ -94.042591, 32.158097 ], [ -94.042539, 32.166826 ], [ -94.042566, 32.166894 ], [ -94.042621, 32.196005 ], [ -94.042662, 32.218146 ], [ -94.042732, 32.269620 ], [ -94.042733, 32.269696 ], [ -94.042739, 32.363559 ], [ -94.042763, 32.373332 ], [ -94.042901, 32.392283 ], [ -94.042923, 32.399918 ], [ -94.042899, 32.400659 ], [ -94.042986, 32.435507 ], [ -94.042908, 32.439891 ], [ -94.042903, 32.470386 ], [ -94.042875, 32.471348 ], [ -94.042902, 32.472906 ], [ -94.042995, 32.478004 ], [ -94.042955, 32.480261 ], [ -94.043072, 32.484300 ], [ -94.043089, 32.486561 ], [ -94.042911, 32.492852 ], [ -94.042885, 32.505145 ], [ -94.043081, 32.513613 ], [ -94.043142, 32.559502 ], [ -94.043083, 32.564261 ], [ -94.042919, 32.610142 ], [ -94.042929, 32.618260 ], [ -94.042926, 32.622015 ], [ -94.042824, 32.640305 ], [ -94.042780, 32.643466 ], [ -94.042913, 32.655127 ], [ -94.043147, 32.693030 ] ] ] ] } }\n,\n{ \"type\": \"Feature\", \"properties\": { \"GEO_ID\": \"0400000US27\", \"STATE\": \"27\", \"NAME\": \"Minnesota\", \"LSAD\": \"\", \"CENSUSAREA\": 79626.743000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -92.191501, 46.672586 ], [ -92.197145, 46.663408 ], [ -92.202292, 46.655041 ], [ -92.207092, 46.651941 ], [ -92.212392, 46.649941 ], [ -92.221731, 46.649724 ], [ -92.222338, 46.649710 ], [ -92.228155, 46.649574 ], [ -92.231944, 46.649486 ], [ -92.232647, 46.649470 ], [ -92.234815, 46.649420 ], [ -92.242493, 46.649241 ], [ -92.250861, 46.650061 ], [ -92.254379, 46.650405 ], [ -92.256654, 46.650628 ], [ -92.262503, 46.651201 ], [ -92.264462, 46.651393 ], [ -92.269948, 46.651930 ], [ -92.274465, 46.654227 ], [ -92.276373, 46.655198 ], [ -92.277155, 46.655596 ], [ -92.292192, 46.663242 ], [ -92.291597, 46.624941 ], [ -92.291647, 46.604649 ], [ -92.292371, 46.495585 ], [ -92.292510, 46.478761 ], [ -92.292727, 46.431993 ], [ -92.292847, 46.420876 ], [ -92.292860, 46.417220 ], [ -92.292999, 46.321894 ], [ -92.292782, 46.319312 ], [ -92.292803, 46.314628 ], [ -92.292880, 46.313752 ], [ -92.292839, 46.307107 ], [ -92.292840, 46.304319 ], [ -92.293007, 46.297987 ], [ -92.293074, 46.295129 ], [ -92.293619, 46.244043 ], [ -92.293558, 46.224578 ], [ -92.293857, 46.180073 ], [ -92.293744, 46.166838 ], [ -92.293706, 46.157321 ], [ -92.293530, 46.113824 ], [ -92.294069, 46.078346 ], [ -92.294033, 46.074377 ], [ -92.306756, 46.072410 ], [ -92.326877, 46.066618 ], [ -92.443285, 46.014648 ], [ -92.656125, 45.924442 ], [ -92.707702, 45.894901 ], [ -92.721128, 45.883805 ], [ -92.734039, 45.868108 ], [ -92.762490, 45.819239 ], [ -92.768430, 45.798010 ], [ -92.784621, 45.764196 ], [ -92.803971, 45.749805 ], [ -92.841051, 45.730024 ], [ -92.863703, 45.721820 ], [ -92.869193, 45.717568 ], [ -92.883987, 45.654870 ], [ -92.885661, 45.644126 ], [ -92.888114, 45.628377 ], [ -92.886421, 45.594881 ], [ -92.883749, 45.575483 ], [ -92.871082, 45.567581 ], [ -92.823309, 45.560934 ], [ -92.803432, 45.562500 ], [ -92.726230, 45.531085 ], [ -92.680234, 45.464344 ], [ -92.664102, 45.393309 ], [ -92.704794, 45.326526 ], [ -92.732594, 45.304224 ], [ -92.746139, 45.296046 ], [ -92.751735, 45.292667 ], [ -92.760615, 45.278827 ], [ -92.765898, 45.210173 ], [ -92.767130, 45.194165 ], [ -92.792875, 45.078489 ], [ -92.791206, 45.045698 ], [ -92.768606, 45.008016 ], [ -92.750645, 44.937299 ], [ -92.761677, 44.862022 ], [ -92.761845, 44.860879 ], [ -92.765461, 44.836202 ], [ -92.784443, 44.793958 ], [ -92.802201, 44.745714 ], [ -92.802402, 44.745167 ], [ -92.737259, 44.717155 ], [ -92.732042, 44.713775 ], [ -92.632105, 44.649027 ], [ -92.621733, 44.638983 ], [ -92.619774, 44.629214 ], [ -92.549685, 44.576000 ], [ -92.534186, 44.570375 ], [ -92.491773, 44.566003 ], [ -92.357313, 44.558480 ], [ -92.340058, 44.555273 ], [ -92.329013, 44.550895 ], [ -92.319938, 44.544940 ], [ -92.316425, 44.540792 ], [ -92.314071, 44.538014 ], [ -92.303046, 44.518646 ], [ -92.302215, 44.500298 ], [ -92.291005, 44.485464 ], [ -92.276784, 44.473649 ], [ -92.242010, 44.454254 ], [ -92.233897, 44.446334 ], [ -92.221083, 44.440386 ], [ -92.115296, 44.416056 ], [ -92.083925, 44.406211 ], [ -92.046285, 44.394398 ], [ -91.972493, 44.366760 ], [ -91.963600, 44.362112 ], [ -91.925590, 44.333548 ], [ -91.918625, 44.322671 ], [ -91.887189, 44.252513 ], [ -91.887905, 44.246398 ], [ -91.892963, 44.235149 ], [ -91.892698, 44.231105 ], [ -91.875158, 44.200575 ], [ -91.862858, 44.193001 ], [ -91.808064, 44.159262 ], [ -91.740871, 44.133918 ], [ -91.721552, 44.130342 ], [ -91.672520, 44.091286 ], [ -91.592070, 44.031372 ], [ -91.580019, 44.026925 ], [ -91.559197, 44.023959 ], [ -91.547028, 44.022226 ], [ -91.505918, 44.018651 ], [ -91.463515, 44.009041 ], [ -91.437380, 43.999962 ], [ -91.432522, 43.996827 ], [ -91.420114, 43.984243 ], [ -91.363242, 43.926563 ], [ -91.310991, 43.867381 ], [ -91.298815, 43.856555 ], [ -91.284138, 43.847065 ], [ -91.262436, 43.792166 ], [ -91.268198, 43.726571 ], [ -91.273316, 43.668307 ], [ -91.268748, 43.615348 ], [ -91.265091, 43.609977 ], [ -91.217706, 43.500550 ], [ -91.369325, 43.500827 ], [ -91.371608, 43.500945 ], [ -91.376950, 43.500482 ], [ -91.441786, 43.500438 ], [ -91.445932, 43.500588 ], [ -91.461403, 43.500642 ], [ -91.465063, 43.500608 ], [ -91.491042, 43.500690 ], [ -91.533806, 43.500560 ], [ -91.541220, 43.500515 ], [ -91.551021, 43.500539 ], [ -91.591073, 43.500536 ], [ -91.610832, 43.500530 ], [ -91.610895, 43.500530 ], [ -91.615293, 43.500550 ], [ -91.616895, 43.500663 ], [ -91.617407, 43.500687 ], [ -91.620785, 43.500677 ], [ -91.625611, 43.500727 ], [ -91.634244, 43.500479 ], [ -91.634495, 43.500439 ], [ -91.635626, 43.500463 ], [ -91.639772, 43.500573 ], [ -91.644924, 43.500529 ], [ -91.651396, 43.500454 ], [ -91.658401, 43.500533 ], [ -91.670872, 43.500513 ], [ -91.700749, 43.500581 ], [ -91.730217, 43.500680 ], [ -91.730359, 43.500680 ], [ -91.733330, 43.500623 ], [ -91.736558, 43.500561 ], [ -91.738446, 43.500525 ], [ -91.761414, 43.500637 ], [ -91.777688, 43.500711 ], [ -91.779290, 43.500803 ], [ -91.804925, 43.500716 ], [ -91.807156, 43.500648 ], [ -91.824848, 43.500684 ], [ -91.941837, 43.500554 ], [ -91.949879, 43.500485 ], [ -92.079802, 43.500647 ], [ -92.079954, 43.500647 ], [ -92.089970, 43.500684 ], [ -92.103886, 43.500735 ], [ -92.178863, 43.500713 ], [ -92.198788, 43.500527 ], [ -92.277425, 43.500466 ], [ -92.279084, 43.500436 ], [ -92.368908, 43.500454 ], [ -92.388298, 43.500483 ], [ -92.406130, 43.500476 ], [ -92.408832, 43.500614 ], [ -92.448948, 43.500420 ], [ -92.464505, 43.500345 ], [ -92.553128, 43.500300 ], [ -92.553161, 43.500300 ], [ -92.649194, 43.500049 ], [ -92.653318, 43.500050 ], [ -92.672580, 43.500055 ], [ -92.689033, 43.500062 ], [ -92.692786, 43.500063 ], [ -92.707312, 43.500069 ], [ -92.752088, 43.500084 ], [ -92.790317, 43.499567 ], [ -92.870277, 43.499548 ], [ -93.007871, 43.499604 ], [ -93.024348, 43.499572 ], [ -93.024429, 43.499572 ], [ -93.049192, 43.499571 ], [ -93.228861, 43.499567 ], [ -93.271800, 43.499356 ], [ -93.399035, 43.499485 ], [ -93.428509, 43.499478 ], [ -93.468563, 43.499473 ], [ -93.472804, 43.499400 ], [ -93.482009, 43.499482 ], [ -93.488261, 43.499417 ], [ -93.497350, 43.499456 ], [ -93.497405, 43.499456 ], [ -93.528482, 43.499471 ], [ -93.532178, 43.499472 ], [ -93.558631, 43.499521 ], [ -93.576728, 43.499520 ], [ -93.617131, 43.499548 ], [ -93.648533, 43.499559 ], [ -93.699345, 43.499576 ], [ -93.704916, 43.499568 ], [ -93.708771, 43.499564 ], [ -93.716217, 43.499563 ], [ -93.794285, 43.499542 ], [ -93.795793, 43.499520 ], [ -93.970760, 43.499605 ], [ -93.970762, 43.499605 ], [ -94.092894, 43.500302 ], [ -94.094339, 43.500302 ], [ -94.108068, 43.500300 ], [ -94.109880, 43.500283 ], [ -94.247965, 43.500333 ], [ -94.377466, 43.500379 ], [ -94.390597, 43.500469 ], [ -94.442835, 43.500583 ], [ -94.442848, 43.500583 ], [ -94.447048, 43.500639 ], [ -94.470420, 43.500340 ], [ -94.560838, 43.500377 ], [ -94.565665, 43.500330 ], [ -94.615916, 43.500544 ], [ -94.854555, 43.500614 ], [ -94.857867, 43.500615 ], [ -94.860192, 43.500546 ], [ -94.872725, 43.500564 ], [ -94.874235, 43.500557 ], [ -94.887291, 43.500502 ], [ -94.914523, 43.500450 ], [ -94.914634, 43.500450 ], [ -94.914905, 43.500450 ], [ -94.914955, 43.500450 ], [ -94.934625, 43.500490 ], [ -94.954477, 43.500467 ], [ -94.974359, 43.500508 ], [ -94.994460, 43.500523 ], [ -95.014245, 43.500872 ], [ -95.034000, 43.500811 ], [ -95.053504, 43.500769 ], [ -95.054289, 43.500860 ], [ -95.114874, 43.500667 ], [ -95.122633, 43.500755 ], [ -95.167294, 43.500771 ], [ -95.167891, 43.500885 ], [ -95.180423, 43.500774 ], [ -95.214938, 43.500885 ], [ -95.250762, 43.500406 ], [ -95.250969, 43.500464 ], [ -95.374737, 43.500314 ], [ -95.375269, 43.500322 ], [ -95.387787, 43.500240 ], [ -95.387812, 43.500240 ], [ -95.387851, 43.500240 ], [ -95.434199, 43.500314 ], [ -95.434293, 43.500360 ], [ -95.454433, 43.500644 ], [ -95.454706, 43.500648 ], [ -95.454706, 43.500563 ], [ -95.475065, 43.500335 ], [ -95.486737, 43.500274 ], [ -95.486803, 43.500246 ], [ -95.514774, 43.499865 ], [ -95.740813, 43.499894 ], [ -95.741569, 43.499891 ], [ -95.821277, 43.499965 ], [ -95.834421, 43.499966 ], [ -95.860946, 43.499966 ], [ -95.861152, 43.499966 ], [ -96.053163, 43.500176 ], [ -96.198484, 43.500335 ], [ -96.198766, 43.500312 ], [ -96.208814, 43.500391 ], [ -96.332062, 43.500415 ], [ -96.351059, 43.500333 ], [ -96.453049, 43.500415 ], [ -96.453352, 43.587040 ], [ -96.453383, 43.588183 ], [ -96.453356, 43.607544 ], [ -96.453387, 43.609944 ], [ -96.453408, 43.675008 ], [ -96.453380, 43.689637 ], [ -96.453281, 43.791435 ], [ -96.453088, 43.805123 ], [ -96.453264, 43.849501 ], [ -96.453264, 43.849506 ], [ -96.453264, 43.849604 ], [ -96.453335, 43.877029 ], [ -96.453304, 43.878583 ], [ -96.453183, 43.878650 ], [ -96.453352, 43.949122 ], [ -96.453289, 43.950814 ], [ -96.453165, 43.966540 ], [ -96.453292, 43.967180 ], [ -96.453389, 43.978060 ], [ -96.453263, 43.980277 ], [ -96.453328, 43.992871 ], [ -96.453297, 43.994723 ], [ -96.453116, 44.006876 ], [ -96.453053, 44.008887 ], [ -96.453373, 44.023744 ], [ -96.453405, 44.025413 ], [ -96.453313, 44.036430 ], [ -96.453187, 44.038350 ], [ -96.452774, 44.196780 ], [ -96.452774, 44.196895 ], [ -96.452673, 44.254588 ], [ -96.452419, 44.255274 ], [ -96.452369, 44.268967 ], [ -96.452365, 44.271972 ], [ -96.452617, 44.282702 ], [ -96.452500, 44.285687 ], [ -96.452334, 44.297009 ], [ -96.452239, 44.298655 ], [ -96.452369, 44.312071 ], [ -96.452248, 44.313362 ], [ -96.452372, 44.325991 ], [ -96.452309, 44.328094 ], [ -96.452248, 44.340642 ], [ -96.452152, 44.342219 ], [ -96.452305, 44.345332 ], [ -96.452282, 44.354857 ], [ -96.452213, 44.360149 ], [ -96.452134, 44.383679 ], [ -96.452073, 44.389690 ], [ -96.451924, 44.441549 ], [ -96.451816, 44.460402 ], [ -96.452218, 44.470873 ], [ -96.452122, 44.473043 ], [ -96.451974, 44.506849 ], [ -96.452010, 44.516929 ], [ -96.452236, 44.526871 ], [ -96.452016, 44.543533 ], [ -96.451990, 44.543639 ], [ -96.451888, 44.544058 ], [ -96.451720, 44.630708 ], [ -96.451761, 44.631194 ], [ -96.451761, 44.631350 ], [ -96.451543, 44.703135 ], [ -96.451573, 44.760510 ], [ -96.451380, 44.761788 ], [ -96.451620, 44.776191 ], [ -96.451823, 44.790471 ], [ -96.451888, 44.792299 ], [ -96.451829, 44.797691 ], [ -96.451559, 44.805468 ], [ -96.451560, 44.805569 ], [ -96.452009, 44.890080 ], [ -96.451853, 44.906672 ], [ -96.452047, 44.910695 ], [ -96.452347, 44.962734 ], [ -96.452092, 44.977475 ], [ -96.452092, 44.977494 ], [ -96.452240, 45.042347 ], [ -96.452177, 45.050185 ], [ -96.452210, 45.051602 ], [ -96.452219, 45.093836 ], [ -96.452026, 45.095138 ], [ -96.452418, 45.122677 ], [ -96.452353, 45.124071 ], [ -96.452304, 45.178563 ], [ -96.452162, 45.203109 ], [ -96.452152, 45.204849 ], [ -96.452315, 45.208986 ], [ -96.452948, 45.268925 ], [ -96.452949, 45.269059 ], [ -96.452791, 45.284280 ], [ -96.453067, 45.298115 ], [ -96.454094, 45.301546 ], [ -96.470020, 45.326832 ], [ -96.489065, 45.357071 ], [ -96.521787, 45.375645 ], [ -96.617726, 45.408092 ], [ -96.680454, 45.410499 ], [ -96.692541, 45.417338 ], [ -96.732739, 45.458737 ], [ -96.742509, 45.478723 ], [ -96.745487, 45.488712 ], [ -96.765280, 45.521414 ], [ -96.784863, 45.541300 ], [ -96.835451, 45.586129 ], [ -96.843957, 45.594003 ], [ -96.844334, 45.594375 ], [ -96.849444, 45.598944 ], [ -96.853646, 45.602307 ], [ -96.857751, 45.605962 ], [ -96.844211, 45.639583 ], [ -96.840746, 45.645294 ], [ -96.835769, 45.649648 ], [ -96.745086, 45.701576 ], [ -96.711157, 45.717561 ], [ -96.672665, 45.732336 ], [ -96.652226, 45.746809 ], [ -96.583085, 45.820024 ], [ -96.579740, 45.825820 ], [ -96.576544, 45.839945 ], [ -96.572984, 45.861602 ], [ -96.568772, 45.888072 ], [ -96.568281, 45.891203 ], [ -96.568053, 45.898697 ], [ -96.568315, 45.902902 ], [ -96.568918, 45.911426 ], [ -96.569265, 45.911471 ], [ -96.569401, 45.913946 ], [ -96.569069, 45.914785 ], [ -96.564317, 45.921074 ], [ -96.564518, 45.926256 ], [ -96.563280, 45.935238 ], [ -96.570350, 45.963595 ], [ -96.577326, 46.021757 ], [ -96.577940, 46.026874 ], [ -96.566295, 46.051416 ], [ -96.559271, 46.058272 ], [ -96.556940, 46.064601 ], [ -96.554835, 46.084824 ], [ -96.557952, 46.102442 ], [ -96.578362, 46.170112 ], [ -96.585647, 46.177309 ], [ -96.599087, 46.263701 ], [ -96.598233, 46.312563 ], [ -96.631586, 46.353752 ], [ -96.669794, 46.384644 ], [ -96.721999, 46.439986 ], [ -96.716438, 46.444567 ], [ -96.739054, 46.543708 ], [ -96.783003, 46.630405 ], [ -96.783009, 46.630418 ], [ -96.783014, 46.630647 ], [ -96.784205, 46.686768 ], [ -96.802013, 46.812464 ], [ -96.767458, 46.905163 ], [ -96.780258, 46.928263 ], [ -96.791558, 46.934264 ], [ -96.823222, 46.970861 ], [ -96.824598, 46.993309 ], [ -96.823180, 46.999965 ], [ -96.824807, 47.124968 ], [ -96.826655, 47.150539 ], [ -96.832946, 47.237588 ], [ -96.833019, 47.238095 ], [ -96.852676, 47.374973 ], [ -96.862312, 47.422333 ], [ -96.853768, 47.499527 ], [ -96.853286, 47.503881 ], [ -96.842430, 47.508225 ], [ -96.850955, 47.598287 ], [ -96.885740, 47.664266 ], [ -96.890671, 47.672153 ], [ -96.980391, 47.815662 ], [ -97.000356, 47.860915 ], [ -97.023156, 47.873978 ], [ -97.088158, 48.059515 ], [ -97.098275, 48.071310 ], [ -97.123135, 48.109497 ], [ -97.147510, 48.170572 ], [ -97.147498, 48.173227 ], [ -97.147401, 48.193779 ], [ -97.147170, 48.242966 ], [ -97.143148, 48.246708 ], [ -97.134534, 48.249737 ], [ -97.129930, 48.249731 ], [ -97.116570, 48.279661 ], [ -97.115581, 48.323928 ], [ -97.126745, 48.342140 ], [ -97.136373, 48.352393 ], [ -97.145693, 48.397431 ], [ -97.131479, 48.406586 ], [ -97.123399, 48.421201 ], [ -97.126770, 48.520191 ], [ -97.150541, 48.539449 ], [ -97.161110, 48.543155 ], [ -97.163105, 48.543855 ], [ -97.163050, 48.543963 ], [ -97.092606, 48.682033 ], [ -97.137571, 48.749191 ], [ -97.157797, 48.787680 ], [ -97.199549, 48.881183 ], [ -97.232610, 48.946561 ], [ -97.239155, 48.967596 ], [ -97.238387, 48.982631 ], [ -97.234005, 48.997470 ], [ -97.229039, 49.000687 ], [ -96.405412, 48.999820 ], [ -95.368698, 48.998729 ], [ -95.355819, 48.998735 ], [ -95.340962, 48.998740 ], [ -95.322946, 48.998767 ], [ -95.319895, 48.998769 ], [ -95.153711, 48.998903 ], [ -95.153309, 49.184880 ], [ -95.153424, 49.249995 ], [ -95.153333, 49.305655 ], [ -95.153319, 49.307720 ], [ -95.153331, 49.308442 ], [ -95.153330, 49.309287 ], [ -95.153284, 49.343409 ], [ -95.153344, 49.343662 ], [ -95.153407, 49.354397 ], [ -95.153330, 49.365886 ], [ -95.153259, 49.367691 ], [ -95.153293, 49.369107 ], [ -95.153350, 49.383079 ], [ -95.153314, 49.384358 ], [ -95.126467, 49.369439 ], [ -95.058404, 49.353170 ], [ -95.014415, 49.356405 ], [ -94.988908, 49.368897 ], [ -94.957465, 49.370186 ], [ -94.909273, 49.350176 ], [ -94.824291, 49.308834 ], [ -94.797527, 49.197791 ], [ -94.773223, 49.120733 ], [ -94.750221, 49.099763 ], [ -94.750218, 48.999992 ], [ -94.718932, 48.999991 ], [ -94.683069, 48.883929 ], [ -94.683127, 48.883376 ], [ -94.690302, 48.863711 ], [ -94.690246, 48.863363 ], [ -94.690889, 48.778066 ], [ -94.690863, 48.778047 ], [ -94.646256, 48.749975 ], [ -94.645150, 48.748991 ], [ -94.628854, 48.738789 ], [ -94.533057, 48.701262 ], [ -94.468728, 48.696324 ], [ -94.431854, 48.706588 ], [ -94.416191, 48.710948 ], [ -94.388848, 48.711945 ], [ -94.308446, 48.710239 ], [ -94.290737, 48.707747 ], [ -94.260541, 48.696381 ], [ -94.251169, 48.683514 ], [ -94.250497, 48.656654 ], [ -94.250191, 48.656323 ], [ -94.244394, 48.653442 ], [ -94.224276, 48.649527 ], [ -94.126336, 48.644447 ], [ -94.052452, 48.644020 ], [ -93.840754, 48.628548 ], [ -93.834323, 48.624954 ], [ -93.822644, 48.609067 ], [ -93.806763, 48.577616 ], [ -93.805369, 48.568393 ], [ -93.811201, 48.542385 ], [ -93.818375, 48.534442 ], [ -93.818253, 48.530046 ], [ -93.815178, 48.526508 ], [ -93.794454, 48.516021 ], [ -93.771741, 48.515825 ], [ -93.756483, 48.515366 ], [ -93.662337, 48.515708 ], [ -93.544361, 48.529109 ], [ -93.467504, 48.545664 ], [ -93.460798, 48.550552 ], [ -93.456675, 48.561834 ], [ -93.457046, 48.567199 ], [ -93.461731, 48.574030 ], [ -93.466007, 48.587291 ], [ -93.464308, 48.591792 ], [ -93.403660, 48.607593 ], [ -93.367025, 48.608283 ], [ -93.347528, 48.626620 ], [ -93.254854, 48.642784 ], [ -93.207398, 48.642474 ], [ -93.179990, 48.624926 ], [ -93.142420, 48.624924 ], [ -93.088438, 48.627597 ], [ -92.980484, 48.624915 ], [ -92.728046, 48.539290 ], [ -92.657881, 48.546263 ], [ -92.634931, 48.542873 ], [ -92.625739, 48.518189 ], [ -92.625151, 48.513048 ], [ -92.625374, 48.512916 ], [ -92.631117, 48.508252 ], [ -92.631137, 48.508077 ], [ -92.627237, 48.503383 ], [ -92.636696, 48.499428 ], [ -92.661418, 48.496557 ], [ -92.684866, 48.497611 ], [ -92.698824, 48.494892 ], [ -92.712562, 48.463013 ], [ -92.687998, 48.443889 ], [ -92.656027, 48.436709 ], [ -92.575636, 48.440827 ], [ -92.537202, 48.447703 ], [ -92.507285, 48.447875 ], [ -92.456325, 48.414204 ], [ -92.415121, 48.293841 ], [ -92.384387, 48.242914 ], [ -92.325304, 48.237030 ], [ -92.295053, 48.276587 ], [ -92.295668, 48.278118 ], [ -92.301451, 48.288608 ], [ -92.306309, 48.316442 ], [ -92.304561, 48.322977 ], [ -92.288994, 48.342991 ], [ -92.262280, 48.354933 ], [ -92.055228, 48.359213 ], [ -92.030872, 48.325824 ], [ -91.989545, 48.260214 ], [ -91.977555, 48.247140 ], [ -91.977486, 48.246340 ], [ -91.954432, 48.251678 ], [ -91.954397, 48.251199 ], [ -91.907597, 48.238183 ], [ -91.906967, 48.237770 ], [ -91.867641, 48.218341 ], [ -91.798268, 48.200086 ], [ -91.789693, 48.197829 ], [ -91.742313, 48.204491 ], [ -91.714931, 48.199130 ], [ -91.710519, 48.193898 ], [ -91.699336, 48.144728 ], [ -91.708099, 48.122985 ], [ -91.712226, 48.116883 ], [ -91.711850, 48.114598 ], [ -91.641062, 48.097703 ], [ -91.569746, 48.093348 ], [ -91.488067, 48.068111 ], [ -91.340159, 48.073236 ], [ -91.328738, 48.070588 ], [ -91.290215, 48.073945 ], [ -91.266380, 48.078713 ], [ -91.250112, 48.084087 ], [ -91.176181, 48.125811 ], [ -91.140773, 48.147689 ], [ -91.138311, 48.151024 ], [ -91.138482, 48.151458 ], [ -91.035858, 48.189436 ], [ -91.035550, 48.189459 ], [ -91.032942, 48.190794 ], [ -90.976955, 48.219452 ], [ -90.885480, 48.245784 ], [ -90.847352, 48.244443 ], [ -90.843624, 48.243576 ], [ -90.839176, 48.239511 ], [ -90.804207, 48.177833 ], [ -90.789776, 48.143472 ], [ -90.795308, 48.135523 ], [ -90.793841, 48.135569 ], [ -90.776133, 48.122481 ], [ -90.775962, 48.122229 ], [ -90.774225, 48.118894 ], [ -90.774191, 48.118575 ], [ -90.761625, 48.098283 ], [ -90.751608, 48.090968 ], [ -90.569763, 48.106951 ], [ -90.495637, 48.099444 ], [ -90.495398, 48.099787 ], [ -90.452022, 48.105006 ], [ -90.403219, 48.105114 ], [ -90.344234, 48.094447 ], [ -90.343484, 48.095064 ], [ -90.337177, 48.099771 ], [ -90.330052, 48.102399 ], [ -90.312386, 48.105300 ], [ -90.176605, 48.112445 ], [ -90.136191, 48.112136 ], [ -90.125090, 48.107702 ], [ -90.123900, 48.107131 ], [ -90.091639, 48.104630 ], [ -90.073873, 48.101138 ], [ -90.023595, 48.084708 ], [ -89.997852, 48.057567 ], [ -89.993822, 48.049027 ], [ -89.996702, 48.035391 ], [ -89.993050, 48.028404 ], [ -89.968255, 48.014482 ], [ -89.897414, 47.987599 ], [ -89.873286, 47.985419 ], [ -89.847571, 47.992442 ], [ -89.819802, 48.015099 ], [ -89.763967, 48.022969 ], [ -89.749314, 48.023325 ], [ -89.724184, 48.019818 ], [ -89.687891, 48.010826 ], [ -89.655793, 48.007532 ], [ -89.564288, 48.002930 ], [ -89.489226, 48.014528 ], [ -89.491739, 48.005212 ], [ -89.495344, 48.002356 ], [ -89.541521, 47.992841 ], [ -89.551555, 47.987305 ], [ -89.552939, 47.980731 ], [ -89.555015, 47.974849 ], [ -89.572315, 47.967238 ], [ -89.588230, 47.966200 ], [ -89.595890, 47.971046 ], [ -89.611412, 47.980731 ], [ -89.624559, 47.983153 ], [ -89.631825, 47.980039 ], [ -89.637015, 47.973465 ], [ -89.640129, 47.967930 ], [ -89.639844, 47.959826 ], [ -89.638285, 47.954275 ], [ -89.639545, 47.953590 ], [ -89.660616, 47.951216 ], [ -89.697619, 47.941288 ], [ -89.729730, 47.925245 ], [ -89.737539, 47.918183 ], [ -89.758714, 47.906993 ], [ -89.793539, 47.891358 ], [ -89.853960, 47.873997 ], [ -89.871580, 47.874194 ], [ -89.923649, 47.862062 ], [ -89.930844, 47.857723 ], [ -89.927520, 47.850825 ], [ -89.933899, 47.846760 ], [ -89.974296, 47.830514 ], [ -90.013730, 47.821373 ], [ -90.042761, 47.817568 ], [ -90.072025, 47.811105 ], [ -90.072241, 47.807727 ], [ -90.075559, 47.803303 ], [ -90.082354, 47.803619 ], [ -90.088160, 47.803041 ], [ -90.116800, 47.795380 ], [ -90.132078, 47.795720 ], [ -90.160790, 47.792807 ], [ -90.178755, 47.786414 ], [ -90.187636, 47.778130 ], [ -90.229145, 47.776198 ], [ -90.248794, 47.772763 ], [ -90.295952, 47.759054 ], [ -90.306340, 47.756627 ], [ -90.313958, 47.756681 ], [ -90.323446, 47.753771 ], [ -90.330254, 47.750892 ], [ -90.332686, 47.746387 ], [ -90.386234, 47.741100 ], [ -90.393823, 47.738271 ], [ -90.421390, 47.735150 ], [ -90.437712, 47.731612 ], [ -90.441912, 47.726404 ], [ -90.458365, 47.721400 ], [ -90.537105, 47.703055 ], [ -90.551291, 47.690266 ], [ -90.584954, 47.680740 ], [ -90.647837, 47.656176 ], [ -90.686382, 47.643594 ], [ -90.735927, 47.624343 ], [ -90.868270, 47.556900 ], [ -90.907494, 47.532873 ], [ -90.910127, 47.530178 ], [ -90.909801, 47.526215 ], [ -90.914247, 47.522639 ], [ -90.919375, 47.519784 ], [ -90.927975, 47.519008 ], [ -90.939072, 47.514532 ], [ -91.023124, 47.464964 ], [ -91.023125, 47.464964 ], [ -91.032945, 47.458236 ], [ -91.045646, 47.456525 ], [ -91.077712, 47.428767 ], [ -91.097569, 47.413888 ], [ -91.106218, 47.411806 ], [ -91.128131, 47.399619 ], [ -91.131268, 47.393567 ], [ -91.146958, 47.381464 ], [ -91.156513, 47.378816 ], [ -91.170037, 47.366266 ], [ -91.188772, 47.340082 ], [ -91.206248, 47.329182 ], [ -91.238658, 47.304976 ], [ -91.250163, 47.290490 ], [ -91.262512, 47.279290 ], [ -91.265950, 47.279479 ], [ -91.270697, 47.277134 ], [ -91.288478, 47.265960 ], [ -91.326019, 47.238993 ], [ -91.353850, 47.212686 ], [ -91.357803, 47.206743 ], [ -91.374191, 47.197800 ], [ -91.387021, 47.187293 ], [ -91.398455, 47.183916 ], [ -91.418805, 47.172152 ], [ -91.452031, 47.145158 ], [ -91.456965, 47.139156 ], [ -91.477351, 47.125667 ], [ -91.497902, 47.122579 ], [ -91.506998, 47.118489 ], [ -91.518793, 47.108121 ], [ -91.573817, 47.089917 ], [ -91.591508, 47.068684 ], [ -91.600969, 47.063425 ], [ -91.604949, 47.063309 ], [ -91.613173, 47.059192 ], [ -91.626824, 47.049953 ], [ -91.637164, 47.040429 ], [ -91.644564, 47.026491 ], [ -91.660248, 47.019288 ], [ -91.666477, 47.014297 ], [ -91.704649, 47.005246 ], [ -91.737098, 46.982853 ], [ -91.777300, 46.951799 ], [ -91.780675, 46.945881 ], [ -91.794039, 46.939676 ], [ -91.806851, 46.933727 ], [ -91.826068, 46.927199 ], [ -91.834852, 46.927135 ], [ -91.841349, 46.925215 ], [ -91.871286, 46.908352 ], [ -91.883238, 46.905728 ], [ -91.906483, 46.891236 ], [ -91.914984, 46.883836 ], [ -91.952985, 46.867037 ], [ -91.985086, 46.849637 ], [ -91.997987, 46.838737 ], [ -92.013405, 46.833727 ], [ -92.058888, 46.809938 ], [ -92.062088, 46.804038 ], [ -92.086089, 46.794339 ], [ -92.094089, 46.787839 ], [ -92.088289, 46.773639 ], [ -92.064490, 46.745439 ], [ -92.025789, 46.710839 ], [ -92.015290, 46.706469 ], [ -92.020289, 46.704039 ], [ -92.024720, 46.705624 ], [ -92.033990, 46.708939 ], [ -92.089490, 46.749240 ], [ -92.116590, 46.748640 ], [ -92.170413, 46.725553 ], [ -92.172997, 46.724444 ], [ -92.189091, 46.717541 ], [ -92.195321, 46.709626 ], [ -92.196264, 46.703966 ], [ -92.196435, 46.702938 ], [ -92.196575, 46.702100 ], [ -92.194562, 46.697672 ], [ -92.194087, 46.696626 ], [ -92.193439, 46.695202 ], [ -92.187795, 46.690185 ], [ -92.187592, 46.678941 ], [ -92.191075, 46.673278 ], [ -92.191501, 46.672586 ] ] ] } }\n,\n{ \"type\": \"Feature\", \"properties\": { \"GEO_ID\": \"0400000US28\", \"STATE\": \"28\", \"NAME\": \"Mississippi\", \"LSAD\": \"\", \"CENSUSAREA\": 46923.274000 }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [ [ [ [ -89.095623, 30.231767 ], [ -89.077259, 30.231680 ], [ -89.067128, 30.250199 ], [ -89.063989, 30.246299 ], [ -89.065097, 30.239929 ], [ -89.073538, 30.223318 ], [ -89.091469, 30.202305 ], [ -89.118222, 30.223343 ], [ -89.156738, 30.230699 ], [ -89.095623, 30.231767 ] ] ], [ [ [ -88.900370, 30.224576 ], [ -88.909752, 30.220405 ], [ -88.945498, 30.209646 ], [ -88.974672, 30.207391 ], [ -88.980239, 30.207962 ], [ -88.984249, 30.210320 ], [ -88.982219, 30.211627 ], [ -88.976811, 30.210987 ], [ -88.947872, 30.214179 ], [ -88.920511, 30.220578 ], [ -88.908885, 30.225437 ], [ -88.889797, 30.239665 ], [ -88.877824, 30.242442 ], [ -88.873660, 30.241748 ], [ -88.900370, 30.224576 ] ] ], [ [ [ -88.506999, 30.214348 ], [ -88.500011, 30.214044 ], [ -88.465713, 30.202540 ], [ -88.453444, 30.201236 ], [ -88.442654, 30.202314 ], [ -88.430332, 30.208548 ], [ -88.401466, 30.210172 ], [ -88.404581, 30.206162 ], [ -88.428301, 30.198511 ], [ -88.453654, 30.196584 ], [ -88.493523, 30.205945 ], [ -88.502752, 30.210506 ], [ -88.506999, 30.214348 ] ] ], [ [ [ -88.710719, 30.250799 ], [ -88.656804, 30.233956 ], [ -88.573044, 30.222640 ], [ -88.568056, 30.222732 ], [ -88.562067, 30.227476 ], [ -88.565576, 30.222847 ], [ -88.569138, 30.221357 ], [ -88.587424, 30.219154 ], [ -88.633743, 30.226342 ], [ -88.665857, 30.228847 ], [ -88.711830, 30.242662 ], [ -88.740647, 30.238665 ], [ -88.752782, 30.238803 ], [ -88.764022, 30.241488 ], [ -88.771991, 30.245523 ], [ -88.732550, 30.246322 ], [ -88.718104, 30.252931 ], [ -88.710719, 30.250799 ] ] ], [ [ [ -89.198288, 34.994484 ], [ -89.139136, 34.994307 ], [ -89.138997, 34.994330 ], [ -89.017128, 34.994649 ], [ -88.823049, 34.995157 ], [ -88.786612, 34.995252 ], [ -88.469877, 34.996033 ], [ -88.469801, 34.996052 ], [ -88.380508, 34.995610 ], [ -88.363531, 34.995590 ], [ -88.258111, 34.995463 ], [ -88.253825, 34.995553 ], [ -88.200064, 34.995634 ], [ -88.125038, 34.902227 ], [ -88.097888, 34.892202 ], [ -88.118407, 34.724292 ], [ -88.138719, 34.589215 ], [ -88.139246, 34.587795 ], [ -88.139988, 34.581703 ], [ -88.155305, 34.463087 ], [ -88.165634, 34.383102 ], [ -88.165910, 34.380926 ], [ -88.173632, 34.321054 ], [ -88.175867, 34.302171 ], [ -88.176889, 34.293858 ], [ -88.203597, 34.086530 ], [ -88.207229, 34.058333 ], [ -88.226428, 33.912875 ], [ -88.226517, 33.911665 ], [ -88.226517, 33.911551 ], [ -88.248390, 33.744908 ], [ -88.254445, 33.698779 ], [ -88.254622, 33.695780 ], [ -88.256131, 33.682860 ], [ -88.256343, 33.682053 ], [ -88.267005, 33.594229 ], [ -88.267148, 33.591989 ], [ -88.268160, 33.585040 ], [ -88.269076, 33.576929 ], [ -88.269532, 33.572894 ], [ -88.270050, 33.570819 ], [ -88.274619, 33.534008 ], [ -88.276805, 33.516463 ], [ -88.277421, 33.512436 ], [ -88.291127, 33.399061 ], [ -88.304514, 33.288320 ], [ -88.340432, 32.991199 ], [ -88.347692, 32.929059 ], [ -88.382985, 32.626954 ], [ -88.383039, 32.626679 ], [ -88.388739, 32.578116 ], [ -88.403789, 32.449885 ], [ -88.403789, 32.449770 ], [ -88.421453, 32.308680 ], [ -88.431707, 32.227662 ], [ -88.438650, 32.172806 ], [ -88.438710, 32.172078 ], [ -88.454959, 32.040576 ], [ -88.455039, 32.039719 ], [ -88.468660, 31.933173 ], [ -88.468879, 31.930262 ], [ -88.469960, 31.893759 ], [ -88.471214, 31.851385 ], [ -88.471106, 31.850949 ], [ -88.464428, 31.697952 ], [ -88.464425, 31.697881 ], [ -88.459722, 31.624002 ], [ -88.459478, 31.621652 ], [ -88.449446, 31.435837 ], [ -88.448660, 31.421277 ], [ -88.448686, 31.420888 ], [ -88.445209, 31.355969 ], [ -88.445182, 31.355855 ], [ -88.438211, 31.231252 ], [ -88.438104, 31.230060 ], [ -88.432007, 31.114298 ], [ -88.425807, 31.001123 ], [ -88.425729, 31.000183 ], [ -88.425635, 30.998301 ], [ -88.412462, 30.735598 ], [ -88.412270, 30.731771 ], [ -88.412209, 30.730395 ], [ -88.411550, 30.712956 ], [ -88.411339, 30.706334 ], [ -88.409571, 30.668731 ], [ -88.408070, 30.636970 ], [ -88.407462, 30.631653 ], [ -88.407484, 30.622736 ], [ -88.404013, 30.545060 ], [ -88.403931, 30.543359 ], [ -88.403547, 30.533100 ], [ -88.402283, 30.510852 ], [ -88.395023, 30.369425 ], [ -88.397236, 30.367689 ], [ -88.399062, 30.360744 ], [ -88.397082, 30.354785 ], [ -88.394150, 30.352493 ], [ -88.393980, 30.349307 ], [ -88.401181, 30.344382 ], [ -88.409927, 30.342115 ], [ -88.418811, 30.353911 ], [ -88.433891, 30.354652 ], [ -88.446495, 30.347753 ], [ -88.446625, 30.337671 ], [ -88.453810, 30.329626 ], [ -88.471875, 30.320020 ], [ -88.480117, 30.318345 ], [ -88.504802, 30.321472 ], [ -88.506226, 30.322393 ], [ -88.506334, 30.327398 ], [ -88.522494, 30.340092 ], [ -88.536214, 30.343299 ], [ -88.579483, 30.344190 ], [ -88.596349, 30.358365 ], [ -88.599249, 30.358933 ], [ -88.601762, 30.355876 ], [ -88.613745, 30.353108 ], [ -88.624523, 30.358713 ], [ -88.663820, 30.362099 ], [ -88.679575, 30.355710 ], [ -88.692164, 30.347302 ], [ -88.700587, 30.343689 ], [ -88.714077, 30.342186 ], [ -88.728893, 30.342671 ], [ -88.746945, 30.347622 ], [ -88.771742, 30.365403 ], [ -88.811615, 30.384907 ], [ -88.812576, 30.387680 ], [ -88.810127, 30.391298 ], [ -88.810227, 30.394698 ], [ -88.823724, 30.402376 ], [ -88.841328, 30.409598 ], [ -88.845609, 30.405266 ], [ -88.857828, 30.392898 ], [ -88.851442, 30.375355 ], [ -88.880526, 30.386600 ], [ -88.883789, 30.389172 ], [ -88.884829, 30.391998 ], [ -88.893930, 30.393398 ], [ -88.922031, 30.393798 ], [ -88.971233, 30.390798 ], [ -89.016334, 30.383898 ], [ -89.083237, 30.368097 ], [ -89.186840, 30.331197 ], [ -89.220442, 30.322497 ], [ -89.271833, 30.305491 ], [ -89.285744, 30.303097 ], [ -89.291444, 30.303296 ], [ -89.294444, 30.307596 ], [ -89.291844, 30.328096 ], [ -89.287844, 30.333196 ], [ -89.281564, 30.331980 ], [ -89.279818, 30.349790 ], [ -89.292499, 30.365635 ], [ -89.315067, 30.375408 ], [ -89.335942, 30.374016 ], [ -89.340947, 30.372896 ], [ -89.349447, 30.370995 ], [ -89.353248, 30.368795 ], [ -89.363848, 30.357395 ], [ -89.366116, 30.352169 ], [ -89.345934, 30.343573 ], [ -89.338847, 30.342995 ], [ -89.332546, 30.337895 ], [ -89.322345, 30.319296 ], [ -89.322545, 30.314896 ], [ -89.329946, 30.302896 ], [ -89.344746, 30.293196 ], [ -89.358546, 30.288896 ], [ -89.365747, 30.284896 ], [ -89.379547, 30.270396 ], [ -89.383747, 30.267796 ], [ -89.419348, 30.254320 ], [ -89.424624, 30.245391 ], [ -89.424493, 30.239092 ], [ -89.430428, 30.223218 ], [ -89.447465, 30.205098 ], [ -89.447910, 30.185352 ], [ -89.461275, 30.174745 ], [ -89.463595, 30.173943 ], [ -89.469792, 30.176278 ], [ -89.475824, 30.191561 ], [ -89.480214, 30.193751 ], [ -89.490099, 30.187677 ], [ -89.503231, 30.183051 ], [ -89.522814, 30.183076 ], [ -89.524504, 30.180753 ], [ -89.572654, 30.180897 ], [ -89.580754, 30.186197 ], [ -89.607655, 30.217096 ], [ -89.643440, 30.287682 ], [ -89.643575, 30.293099 ], [ -89.640694, 30.301313 ], [ -89.629877, 30.321017 ], [ -89.629941, 30.339449 ], [ -89.683410, 30.451793 ], [ -89.690580, 30.458773 ], [ -89.724614, 30.491902 ], [ -89.732577, 30.492502 ], [ -89.760570, 30.515761 ], [ -89.806843, 30.572039 ], [ -89.823384, 30.608535 ], [ -89.842585, 30.666005 ], [ -89.842596, 30.666038 ], [ -89.826175, 30.736594 ], [ -89.789863, 30.851527 ], [ -89.773410, 30.897693 ], [ -89.770931, 30.899432 ], [ -89.756543, 30.900431 ], [ -89.744789, 30.918933 ], [ -89.728382, 30.971141 ], [ -89.728148, 31.002300 ], [ -89.728147, 31.002431 ], [ -89.732504, 31.004831 ], [ -89.752642, 31.001853 ], [ -89.816429, 31.002084 ], [ -89.824617, 31.002060 ], [ -89.835542, 31.002059 ], [ -89.835908, 31.002059 ], [ -89.856862, 31.002075 ], [ -89.892708, 31.001759 ], [ -89.897516, 31.001913 ], [ -89.923119, 31.001446 ], [ -89.927161, 31.001437 ], [ -89.972802, 31.001392 ], [ -89.975430, 31.001692 ], [ -90.005332, 31.001364 ], [ -90.022185, 31.001302 ], [ -90.029574, 31.001190 ], [ -90.050706, 31.001215 ], [ -90.128406, 31.001047 ], [ -90.131395, 31.000924 ], [ -90.164278, 31.001025 ], [ -90.164676, 31.000980 ], [ -90.259555, 31.000657 ], [ -90.346007, 31.000363 ], [ -90.347230, 31.000359 ], [ -90.347241, 31.000359 ], [ -90.369371, 31.000335 ], [ -90.422117, 30.999810 ], [ -90.426849, 30.999776 ], [ -90.437351, 30.999730 ], [ -90.441725, 30.999729 ], [ -90.442479, 30.999722 ], [ -90.474094, 30.999798 ], [ -90.475928, 30.999740 ], [ -90.477284, 30.999717 ], [ -90.485876, 30.999740 ], [ -90.486749, 30.999693 ], [ -90.547615, 30.999723 ], [ -90.567195, 30.999733 ], [ -90.583518, 30.999698 ], [ -90.584448, 30.999698 ], [ -90.587373, 30.999604 ], [ -90.588676, 30.999650 ], [ -90.648721, 30.999486 ], [ -90.651193, 30.999510 ], [ -90.734473, 30.999214 ], [ -90.734552, 30.999222 ], [ -90.758775, 30.999583 ], [ -90.769333, 30.999374 ], [ -90.775981, 30.999491 ], [ -90.779858, 30.999457 ], [ -90.783745, 30.999447 ], [ -90.825829, 30.999360 ], [ -90.826027, 30.999360 ], [ -91.060217, 30.998935 ], [ -91.068270, 30.998920 ], [ -91.080814, 30.998909 ], [ -91.108114, 30.998857 ], [ -91.108291, 30.998880 ], [ -91.176140, 30.999144 ], [ -91.176209, 30.999144 ], [ -91.224068, 30.999183 ], [ -91.224839, 30.999183 ], [ -91.423621, 30.998984 ], [ -91.425749, 30.999007 ], [ -91.538727, 30.999388 ], [ -91.625118, 30.999167 ], [ -91.636942, 30.999416 ], [ -91.584670, 31.020185 ], [ -91.571695, 31.029782 ], [ -91.562468, 31.043213 ], [ -91.559907, 31.054119 ], [ -91.561283, 31.060906 ], [ -91.564150, 31.066830 ], [ -91.577373, 31.078179 ], [ -91.604197, 31.154545 ], [ -91.599965, 31.192318 ], [ -91.598490, 31.205485 ], [ -91.574493, 31.261289 ], [ -91.547588, 31.264444 ], [ -91.522397, 31.273423 ], [ -91.515614, 31.278210 ], [ -91.508858, 31.291644 ], [ -91.519820, 31.311228 ], [ -91.531201, 31.326625 ], [ -91.539904, 31.337336 ], [ -91.541242, 31.356750 ], [ -91.525386, 31.378904 ], [ -91.513795, 31.386875 ], [ -91.505093, 31.400933 ], [ -91.500406, 31.419008 ], [ -91.505301, 31.432945 ], [ -91.510356, 31.438928 ], [ -91.515130, 31.449206 ], [ -91.522920, 31.519841 ], [ -91.515810, 31.530894 ], [ -91.511217, 31.532612 ], [ -91.479718, 31.530366 ], [ -91.450017, 31.539666 ], [ -91.437616, 31.546166 ], [ -91.422691, 31.554390 ], [ -91.416683, 31.561599 ], [ -91.415482, 31.567006 ], [ -91.425094, 31.577820 ], [ -91.437711, 31.580824 ], [ -91.448620, 31.583032 ], [ -91.458679, 31.583226 ], [ -91.470754, 31.585630 ], [ -91.477362, 31.592239 ], [ -91.477963, 31.598247 ], [ -91.477963, 31.604855 ], [ -91.477963, 31.610863 ], [ -91.474959, 31.621677 ], [ -91.464746, 31.628886 ], [ -91.452730, 31.631290 ], [ -91.441315, 31.631290 ], [ -91.422090, 31.631290 ], [ -91.404668, 31.637898 ], [ -91.398059, 31.655922 ], [ -91.400115, 31.688164 ], [ -91.397915, 31.709364 ], [ -91.379935, 31.733013 ], [ -91.369375, 31.746903 ], [ -91.365084, 31.752743 ], [ -91.365614, 31.760763 ], [ -91.363714, 31.780363 ], [ -91.359514, 31.799362 ], [ -91.345714, 31.842861 ], [ -91.338414, 31.851261 ], [ -91.326914, 31.854961 ], [ -91.293413, 31.860160 ], [ -91.248144, 31.869848 ], [ -91.128009, 31.985857 ], [ -91.034707, 32.101053 ], [ -91.027946, 32.112722 ], [ -91.027535, 32.113431 ], [ -91.027125, 32.120434 ], [ -91.026931, 32.123737 ], [ -91.030152, 32.129821 ], [ -91.034447, 32.134832 ], [ -91.040531, 32.137337 ], [ -91.046615, 32.138768 ], [ -91.052342, 32.137337 ], [ -91.057487, 32.135515 ], [ -91.067004, 32.132144 ], [ -91.131403, 32.126213 ], [ -91.162822, 32.132694 ], [ -91.165452, 32.134290 ], [ -91.171702, 32.144250 ], [ -91.174552, 32.154978 ], [ -91.171046, 32.176526 ], [ -91.164171, 32.196888 ], [ -91.158026, 32.201956 ], [ -91.133587, 32.213432 ], [ -91.122602, 32.216929 ], [ -91.046507, 32.241149 ], [ -91.039007, 32.242349 ], [ -91.021507, 32.236149 ], [ -91.006306, 32.224150 ], [ -91.004557, 32.215381 ], [ -90.905173, 32.315497 ], [ -90.898588, 32.329094 ], [ -90.901511, 32.337864 ], [ -90.912363, 32.339454 ], [ -90.986672, 32.351760 ], [ -91.000106, 32.357695 ], [ -91.003506, 32.362145 ], [ -91.004506, 32.368144 ], [ -90.994080, 32.403862 ], [ -91.029606, 32.433542 ], [ -91.052907, 32.438442 ], [ -91.070207, 32.445141 ], [ -91.095308, 32.458741 ], [ -91.108808, 32.472040 ], [ -91.116008, 32.483140 ], [ -91.116708, 32.500139 ], [ -91.097878, 32.544752 ], [ -91.093741, 32.549128 ], [ -91.089436, 32.553306 ], [ -91.090611, 32.562705 ], [ -91.090771, 32.563978 ], [ -91.096774, 32.576652 ], [ -91.104111, 32.584657 ], [ -91.119854, 32.584795 ], [ -91.127912, 32.586493 ], [ -91.141148, 32.597209 ], [ -91.146204, 32.604144 ], [ -91.151318, 32.615919 ], [ -91.153821, 32.631282 ], [ -91.152081, 32.641508 ], [ -91.118258, 32.674075 ], [ -91.098762, 32.685291 ], [ -91.076061, 32.693751 ], [ -91.063946, 32.702926 ], [ -91.057043, 32.712576 ], [ -91.054481, 32.722259 ], [ -91.060766, 32.727494 ], [ -91.077176, 32.732534 ], [ -91.123152, 32.742798 ], [ -91.154461, 32.742339 ], [ -91.163389, 32.747009 ], [ -91.165328, 32.751301 ], [ -91.164397, 32.785821 ], [ -91.161669, 32.812465 ], [ -91.158336, 32.822304 ], [ -91.145002, 32.842870 ], [ -91.127886, 32.855059 ], [ -91.116091, 32.855641 ], [ -91.105631, 32.858396 ], [ -91.086683, 32.873392 ], [ -91.070602, 32.888659 ], [ -91.063809, 32.903709 ], [ -91.063974, 32.924113 ], [ -91.086802, 32.976266 ], [ -91.094265, 32.984371 ], [ -91.106581, 32.988938 ], [ -91.125107, 32.984669 ], [ -91.134414, 32.980533 ], [ -91.138585, 32.971352 ], [ -91.130947, 32.963815 ], [ -91.132115, 32.923122 ], [ -91.134041, 32.917676 ], [ -91.145076, 32.905494 ], [ -91.159975, 32.899879 ], [ -91.175405, 32.899998 ], [ -91.196785, 32.906784 ], [ -91.208263, 32.915354 ], [ -91.212837, 32.922104 ], [ -91.214027, 32.930320 ], [ -91.201842, 32.961212 ], [ -91.166073, 33.004106 ], [ -91.157662, 33.011217 ], [ -91.125656, 33.038276 ], [ -91.087589, 33.145177 ], [ -91.085984, 33.221644 ], [ -91.110561, 33.245930 ], [ -91.141216, 33.298397 ], [ -91.184427, 33.419576 ], [ -91.131885, 33.430063 ], [ -91.118495, 33.449116 ], [ -91.125109, 33.472842 ], [ -91.215671, 33.529423 ], [ -91.232295, 33.552788 ], [ -91.228287, 33.559937 ], [ -91.224121, 33.567369 ], [ -91.152148, 33.582721 ], [ -91.134043, 33.594489 ], [ -91.130445, 33.606034 ], [ -91.157484, 33.626187 ], [ -91.186519, 33.645909 ], [ -91.193093, 33.656866 ], [ -91.188710, 33.669466 ], [ -91.185971, 33.679327 ], [ -91.176110, 33.684257 ], [ -91.148170, 33.679327 ], [ -91.139953, 33.683709 ], [ -91.132831, 33.688092 ], [ -91.127900, 33.695762 ], [ -91.126805, 33.707814 ], [ -91.136118, 33.728632 ], [ -91.144682, 33.750108 ], [ -91.139869, 33.777117 ], [ -91.067511, 33.840443 ], [ -91.036821, 33.914656 ], [ -91.088164, 33.960078 ], [ -91.089119, 33.972653 ], [ -91.018890, 34.003151 ], [ -90.964708, 34.007952 ], [ -90.887413, 34.032505 ], [ -90.879163, 34.065503 ], [ -90.888396, 34.087433 ], [ -90.912057, 34.095512 ], [ -90.928793, 34.107631 ], [ -90.931969, 34.120017 ], [ -90.933116, 34.124488 ], [ -90.934564, 34.130138 ], [ -90.918405, 34.154376 ], [ -90.893013, 34.155531 ], [ -90.880317, 34.169381 ], [ -90.880894, 34.180346 ], [ -90.895898, 34.191888 ], [ -90.913212, 34.210355 ], [ -90.911480, 34.223051 ], [ -90.894744, 34.229977 ], [ -90.868775, 34.228245 ], [ -90.856367, 34.238928 ], [ -90.764143, 34.363396 ], [ -90.658542, 34.375705 ], [ -90.613944, 34.390723 ], [ -90.575336, 34.415152 ], [ -90.565809, 34.435400 ], [ -90.570133, 34.524829 ], [ -90.575786, 34.641749 ], [ -90.576543, 34.657402 ], [ -90.564033, 34.665742 ], [ -90.549855, 34.662406 ], [ -90.539013, 34.659070 ], [ -90.521499, 34.663240 ], [ -90.508989, 34.679086 ], [ -90.509823, 34.689928 ], [ -90.533175, 34.707442 ], [ -90.554859, 34.727458 ], [ -90.549855, 34.763320 ], [ -90.537345, 34.784170 ], [ -90.519831, 34.782502 ], [ -90.501325, 34.769931 ], [ -90.494811, 34.767490 ], [ -90.479799, 34.769158 ], [ -90.467289, 34.782502 ], [ -90.478131, 34.832542 ], [ -90.473961, 34.852558 ], [ -90.461451, 34.856728 ], [ -90.436431, 34.855060 ], [ -90.423879, 34.834606 ], [ -90.414864, 34.831846 ], [ -90.407964, 34.832767 ], [ -90.307384, 34.846195 ], [ -90.293918, 34.860563 ], [ -90.250095, 34.907320 ], [ -90.244476, 34.937596 ], [ -90.253969, 34.954988 ], [ -90.309297, 34.995694 ], [ -89.893402, 34.994356 ], [ -89.883365, 34.994261 ], [ -89.848488, 34.994193 ], [ -89.795187, 34.994293 ], [ -89.724324, 34.994763 ], [ -89.644282, 34.995293 ], [ -89.511153, 34.994755 ], [ -89.493739, 34.994361 ], [ -89.352679, 34.994420 ], [ -89.198288, 34.994484 ] ] ] ] } }\n,\n{ \"type\": \"Feature\", \"properties\": { \"GEO_ID\": \"0400000US30\", \"STATE\": \"30\", \"NAME\": \"Montana\", \"LSAD\": \"\", \"CENSUSAREA\": 145545.801000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -111.044275, 45.001345 ], [ -111.056207, 44.935901 ], [ -111.055629, 44.933578 ], [ -111.056888, 44.866658 ], [ -111.055495, 44.666262 ], [ -111.055208, 44.624927 ], [ -111.048974, 44.474072 ], [ -111.106574, 44.486330 ], [ -111.122654, 44.493659 ], [ -111.131379, 44.499925 ], [ -111.139455, 44.517112 ], [ -111.219236, 44.622616 ], [ -111.323669, 44.724474 ], [ -111.377682, 44.751744 ], [ -111.394815, 44.751351 ], [ -111.481536, 44.709186 ], [ -111.489008, 44.705553 ], [ -111.516588, 44.643707 ], [ -111.525764, 44.604883 ], [ -111.601249, 44.554210 ], [ -111.617502, 44.553035 ], [ -111.631505, 44.552022 ], [ -111.704218, 44.560205 ], [ -111.737191, 44.543060 ], [ -111.806528, 44.515459 ], [ -111.843295, 44.528225 ], [ -111.849293, 44.539837 ], [ -111.870504, 44.564033 ], [ -111.947941, 44.556776 ], [ -112.078471, 44.533551 ], [ -112.187115, 44.534452 ], [ -112.221698, 44.543519 ], [ -112.229477, 44.549494 ], [ -112.235864, 44.555194 ], [ -112.246665, 44.561010 ], [ -112.258297, 44.564334 ], [ -112.274083, 44.564334 ], [ -112.299009, 44.559348 ], [ -112.339721, 44.538577 ], [ -112.347199, 44.520298 ], [ -112.356600, 44.493127 ], [ -112.358926, 44.486280 ], [ -112.371294, 44.472108 ], [ -112.387080, 44.460476 ], [ -112.410345, 44.462968 ], [ -112.473207, 44.480027 ], [ -112.544224, 44.483763 ], [ -112.688160, 44.498850 ], [ -112.719110, 44.504344 ], [ -112.781294, 44.484888 ], [ -112.812087, 44.451370 ], [ -112.822046, 44.434109 ], [ -112.822046, 44.420831 ], [ -112.823373, 44.406225 ], [ -112.824701, 44.393611 ], [ -112.829247, 44.385427 ], [ -112.831340, 44.381660 ], [ -112.849266, 44.371038 ], [ -112.875822, 44.374357 ], [ -112.970300, 44.426933 ], [ -113.003544, 44.450814 ], [ -113.027147, 44.495915 ], [ -113.056770, 44.618657 ], [ -113.053529, 44.621187 ], [ -113.049349, 44.629380 ], [ -113.051504, 44.636950 ], [ -113.101082, 44.718832 ], [ -113.134617, 44.763149 ], [ -113.158206, 44.780847 ], [ -113.207878, 44.808040 ], [ -113.247166, 44.822950 ], [ -113.278382, 44.812706 ], [ -113.329491, 44.788645 ], [ -113.341704, 44.784853 ], [ -113.353631, 44.791395 ], [ -113.455071, 44.865424 ], [ -113.475838, 44.894648 ], [ -113.498745, 44.942314 ], [ -113.494446, 44.948597 ], [ -113.480836, 44.950310 ], [ -113.472715, 44.948123 ], [ -113.447199, 44.971924 ], [ -113.445915, 44.979918 ], [ -113.445751, 45.018351 ], [ -113.449349, 45.045745 ], [ -113.463961, 45.063194 ], [ -113.473770, 45.061700 ], [ -113.485278, 45.063519 ], [ -113.576453, 45.130311 ], [ -113.576360, 45.133771 ], [ -113.566179, 45.143120 ], [ -113.565979, 45.149335 ], [ -113.599506, 45.191114 ], [ -113.650064, 45.234710 ], [ -113.674409, 45.249411 ], [ -113.738729, 45.329741 ], [ -113.760924, 45.406501 ], [ -113.774156, 45.465372 ], [ -113.765760, 45.483228 ], [ -113.772915, 45.512322 ], [ -113.786269, 45.521385 ], [ -113.810117, 45.530924 ], [ -113.813456, 45.550002 ], [ -113.802009, 45.579096 ], [ -113.804871, 45.589112 ], [ -113.813933, 45.600559 ], [ -113.835396, 45.612960 ], [ -113.896681, 45.641451 ], [ -113.934220, 45.682232 ], [ -113.942600, 45.686362 ], [ -113.971565, 45.700636 ], [ -113.987759, 45.705247 ], [ -114.015633, 45.696127 ], [ -114.019315, 45.692937 ], [ -114.022534, 45.679620 ], [ -114.034930, 45.647967 ], [ -114.135249, 45.557465 ], [ -114.187852, 45.542151 ], [ -114.247828, 45.545489 ], [ -114.309613, 45.469432 ], [ -114.350819, 45.468542 ], [ -114.366620, 45.491616 ], [ -114.460542, 45.561283 ], [ -114.473759, 45.563278 ], [ -114.514196, 45.564734 ], [ -114.551286, 45.559007 ], [ -114.560855, 45.564575 ], [ -114.561773, 45.565109 ], [ -114.563652, 45.637412 ], [ -114.561046, 45.639906 ], [ -114.550834, 45.642600 ], [ -114.545574, 45.642928 ], [ -114.541820, 45.641305 ], [ -114.515411, 45.652842 ], [ -114.500925, 45.666715 ], [ -114.495421, 45.703321 ], [ -114.497553, 45.710677 ], [ -114.504869, 45.722176 ], [ -114.528667, 45.731636 ], [ -114.547763, 45.743309 ], [ -114.566172, 45.773864 ], [ -114.514596, 45.840785 ], [ -114.509303, 45.845531 ], [ -114.498809, 45.850676 ], [ -114.448680, 45.858891 ], [ -114.393760, 45.894020 ], [ -114.401552, 45.963195 ], [ -114.412007, 45.978057 ], [ -114.429638, 45.986638 ], [ -114.465376, 45.996077 ], [ -114.483379, 46.008047 ], [ -114.490578, 46.022872 ], [ -114.491200, 46.034059 ], [ -114.491200, 46.044003 ], [ -114.476284, 46.062026 ], [ -114.467583, 46.081914 ], [ -114.468205, 46.099937 ], [ -114.476284, 46.112988 ], [ -114.483120, 46.129147 ], [ -114.472643, 46.162202 ], [ -114.426885, 46.289671 ], [ -114.378000, 46.435371 ], [ -114.385297, 46.467162 ], [ -114.346528, 46.535789 ], [ -114.331093, 46.607649 ], [ -114.331093, 46.630248 ], [ -114.337942, 46.641205 ], [ -114.341336, 46.642803 ], [ -114.349584, 46.646684 ], [ -114.370129, 46.654217 ], [ -114.422176, 46.652163 ], [ -114.446830, 46.645314 ], [ -114.461211, 46.639151 ], [ -114.481943, 46.631993 ], [ -114.592264, 46.632861 ], [ -114.594707, 46.633558 ], [ -114.614423, 46.639188 ], [ -114.635868, 46.659510 ], [ -114.642713, 46.673145 ], [ -114.641745, 46.679286 ], [ -114.641322, 46.686404 ], [ -114.642692, 46.694622 ], [ -114.644747, 46.702155 ], [ -114.655704, 46.711743 ], [ -114.667346, 46.719276 ], [ -114.675505, 46.719516 ], [ -114.690630, 46.719961 ], [ -114.717645, 46.713994 ], [ -114.739253, 46.715167 ], [ -114.767180, 46.738828 ], [ -114.825923, 46.781949 ], [ -114.853279, 46.799794 ], [ -114.888146, 46.808573 ], [ -114.920459, 46.827697 ], [ -114.927837, 46.835990 ], [ -114.938713, 46.869021 ], [ -114.936015, 46.899761 ], [ -114.975789, 46.932865 ], [ -115.072985, 47.013760 ], [ -115.099178, 47.048129 ], [ -115.193221, 47.133026 ], [ -115.200547, 47.139154 ], [ -115.266723, 47.181101 ], [ -115.292110, 47.209861 ], [ -115.294785, 47.220914 ], [ -115.320184, 47.255717 ], [ -115.339201, 47.261623 ], [ -115.421645, 47.271736 ], [ -115.479255, 47.282089 ], [ -115.523690, 47.298919 ], [ -115.551309, 47.333856 ], [ -115.561439, 47.351887 ], [ -115.576836, 47.366825 ], [ -115.661341, 47.402663 ], [ -115.690570, 47.415059 ], [ -115.721084, 47.422350 ], [ -115.729861, 47.447287 ], [ -115.725931, 47.466934 ], [ -115.712178, 47.488546 ], [ -115.729861, 47.518016 ], [ -115.739684, 47.537663 ], [ -115.735755, 47.555346 ], [ -115.721207, 47.576323 ], [ -115.718072, 47.592675 ], [ -115.706284, 47.637864 ], [ -115.723770, 47.696671 ], [ -115.729123, 47.703102 ], [ -115.919291, 47.857406 ], [ -116.007254, 47.944968 ], [ -116.048421, 47.976820 ], [ -116.048424, 47.977126 ], [ -116.049320, 48.066644 ], [ -116.049368, 48.072134 ], [ -116.049398, 48.075395 ], [ -116.049415, 48.077220 ], [ -116.049353, 48.215460 ], [ -116.049226, 48.502058 ], [ -116.049023, 48.957947 ], [ -116.049025, 48.958351 ], [ -116.049193, 49.000912 ], [ -115.251126, 48.999557 ], [ -114.728125, 49.000623 ], [ -114.678217, 49.000725 ], [ -114.674398, 49.000679 ], [ -114.438830, 49.001076 ], [ -114.068151, 48.999364 ], [ -113.692982, 48.997632 ], [ -113.116356, 48.998462 ], [ -113.110155, 48.998550 ], [ -113.106891, 48.998501 ], [ -113.103212, 48.998530 ], [ -113.098147, 48.998494 ], [ -113.095436, 48.998533 ], [ -113.092055, 48.998543 ], [ -113.087863, 48.998557 ], [ -113.085576, 48.998581 ], [ -113.011041, 48.998643 ], [ -113.009895, 48.998619 ], [ -112.193588, 48.998229 ], [ -111.854088, 48.998067 ], [ -111.854090, 48.998039 ], [ -111.761679, 48.997614 ], [ -111.761613, 48.997650 ], [ -111.270702, 48.997895 ], [ -110.887459, 48.998087 ], [ -110.886706, 48.998124 ], [ -110.743209, 48.998363 ], [ -110.216135, 48.999239 ], [ -110.215516, 48.999197 ], [ -110.171595, 48.999262 ], [ -109.995618, 48.999642 ], [ -109.489686, 49.000267 ], [ -109.384762, 49.000397 ], [ -109.384068, 49.000374 ], [ -109.060570, 48.999666 ], [ -109.060292, 48.999621 ], [ -109.000708, 48.999234 ], [ -108.994722, 48.999237 ], [ -108.543194, 48.999377 ], [ -108.488063, 48.999368 ], [ -108.236495, 48.999405 ], [ -107.179865, 48.999559 ], [ -106.625597, 48.999640 ], [ -106.617539, 48.999583 ], [ -106.518201, 48.999564 ], [ -106.500592, 48.999756 ], [ -106.374616, 48.999617 ], [ -106.368151, 48.999503 ], [ -106.274267, 48.999312 ], [ -106.246210, 48.999258 ], [ -106.243154, 48.999373 ], [ -106.233987, 48.999423 ], [ -106.112108, 48.999279 ], [ -106.050543, 48.999207 ], [ -105.966197, 48.999445 ], [ -105.834181, 48.999707 ], [ -105.775808, 48.999637 ], [ -105.650270, 48.999444 ], [ -105.612577, 48.999703 ], [ -105.607542, 48.999624 ], [ -105.578616, 48.999673 ], [ -105.522636, 48.999591 ], [ -105.411972, 48.999582 ], [ -105.407909, 48.999480 ], [ -105.391379, 48.999475 ], [ -105.387490, 48.999382 ], [ -105.355888, 48.999357 ], [ -105.277521, 48.999457 ], [ -105.265192, 48.999500 ], [ -105.057514, 48.999448 ], [ -104.647389, 48.999344 ], [ -104.543636, 48.999541 ], [ -104.048736, 48.999877 ], [ -104.048478, 48.987007 ], [ -104.048616, 48.966736 ], [ -104.048555, 48.963772 ], [ -104.048800, 48.958997 ], [ -104.048627, 48.957124 ], [ -104.048698, 48.951823 ], [ -104.048872, 48.949630 ], [ -104.048770, 48.943301 ], [ -104.048701, 48.940331 ], [ -104.048807, 48.933636 ], [ -104.048744, 48.912113 ], [ -104.048746, 48.906858 ], [ -104.048643, 48.902609 ], [ -104.048719, 48.879921 ], [ -104.048893, 48.875739 ], [ -104.048883, 48.874008 ], [ -104.048824, 48.867539 ], [ -104.048652, 48.865734 ], [ -104.048900, 48.847387 ], [ -104.048569, 48.797052 ], [ -104.048537, 48.788552 ], [ -104.048548, 48.751356 ], [ -104.048340, 48.747133 ], [ -104.047883, 48.664191 ], [ -104.047849, 48.663163 ], [ -104.047861, 48.658856 ], [ -104.047865, 48.657450 ], [ -104.047887, 48.649911 ], [ -104.047819, 48.648631 ], [ -104.047582, 48.633984 ], [ -104.047582, 48.633976 ], [ -104.047620, 48.627015 ], [ -104.047586, 48.625644 ], [ -104.047930, 48.620190 ], [ -104.048212, 48.599055 ], [ -104.047974, 48.591606 ], [ -104.047811, 48.562770 ], [ -104.047783, 48.539737 ], [ -104.047648, 48.531489 ], [ -104.047876, 48.530798 ], [ -104.047513, 48.525913 ], [ -104.047675, 48.517852 ], [ -104.047555, 48.494140 ], [ -104.047392, 48.467086 ], [ -104.047259, 48.452941 ], [ -104.047294, 48.452529 ], [ -104.047192, 48.447251 ], [ -104.047090, 48.445903 ], [ -104.046960, 48.421065 ], [ -104.047134, 48.411057 ], [ -104.046969, 48.390675 ], [ -104.046913, 48.389433 ], [ -104.046913, 48.389429 ], [ -104.046654, 48.374773 ], [ -104.046371, 48.374154 ], [ -104.046332, 48.342290 ], [ -104.046039, 48.256761 ], [ -104.045861, 48.255097 ], [ -104.045645, 48.246179 ], [ -104.045729, 48.244586 ], [ -104.045692, 48.241415 ], [ -104.045560, 48.193913 ], [ -104.045424, 48.192473 ], [ -104.045498, 48.176249 ], [ -104.045399, 48.164390 ], [ -104.044120, 47.996107 ], [ -104.044162, 47.992836 ], [ -104.043933, 47.971515 ], [ -104.043497, 47.954490 ], [ -104.043329, 47.949554 ], [ -104.042230, 47.891031 ], [ -104.041662, 47.862282 ], [ -104.041869, 47.841699 ], [ -104.042567, 47.808237 ], [ -104.042432, 47.805358 ], [ -104.042384, 47.803256 ], [ -104.043199, 47.747292 ], [ -104.043242, 47.747106 ], [ -104.044621, 47.459380 ], [ -104.044797, 47.438445 ], [ -104.045069, 47.397461 ], [ -104.045333, 47.343452 ], [ -104.045313, 47.331955 ], [ -104.045307, 47.330128 ], [ -104.045121, 47.276969 ], [ -104.045155, 47.273930 ], [ -104.045088, 47.271406 ], [ -104.045057, 47.266868 ], [ -104.045091, 47.265953 ], [ -104.045159, 47.263874 ], [ -104.045081, 47.092813 ], [ -104.045018, 47.081202 ], [ -104.045354, 47.078574 ], [ -104.045259, 47.063901 ], [ -104.045227, 47.057502 ], [ -104.045195, 47.053639 ], [ -104.045052, 47.040863 ], [ -104.045076, 47.037589 ], [ -104.045566, 46.941231 ], [ -104.045535, 46.934009 ], [ -104.045542, 46.933887 ], [ -104.045402, 46.725423 ], [ -104.045403, 46.722177 ], [ -104.045370, 46.721332 ], [ -104.045572, 46.713881 ], [ -104.045474, 46.708738 ], [ -104.045271, 46.641449 ], [ -104.045271, 46.641443 ], [ -104.045335, 46.540929 ], [ -104.045462, 46.341895 ], [ -104.045469, 46.324545 ], [ -104.045633, 46.280188 ], [ -104.046670, 46.000001 ], [ -104.045443, 45.945310 ], [ -104.044030, 45.881975 ], [ -104.044030, 45.881971 ], [ -104.044009, 45.871974 ], [ -104.043814, 45.868385 ], [ -104.041937, 45.557915 ], [ -104.041647, 45.550691 ], [ -104.041717, 45.539122 ], [ -104.041145, 45.503367 ], [ -104.041274, 45.499994 ], [ -104.041764, 45.490789 ], [ -104.040410, 45.393474 ], [ -104.040114, 45.374214 ], [ -104.040265, 45.345356 ], [ -104.040358, 45.335946 ], [ -104.040274, 45.212891 ], [ -104.040128, 44.999987 ], [ -104.057698, 44.997431 ], [ -104.470117, 44.998453 ], [ -104.470422, 44.998453 ], [ -104.663882, 44.998869 ], [ -104.665171, 44.998618 ], [ -104.759855, 44.999066 ], [ -104.765063, 44.999183 ], [ -105.018240, 45.000437 ], [ -105.019284, 45.000329 ], [ -105.025266, 45.000290 ], [ -105.038405, 45.000345 ], [ -105.076607, 45.000347 ], [ -105.848065, 45.000396 ], [ -105.918995, 44.997771 ], [ -105.928184, 44.993647 ], [ -106.024814, 44.993688 ], [ -106.263586, 44.993788 ], [ -106.888773, 44.995885 ], [ -106.892875, 44.995947 ], [ -107.080624, 44.996791 ], [ -107.134180, 45.000109 ], [ -107.607824, 45.000929 ], [ -107.608854, 45.000860 ], [ -107.911495, 45.000948 ], [ -108.125666, 45.001011 ], [ -108.249345, 44.999458 ], [ -108.565921, 45.000578 ], [ -108.578484, 45.000484 ], [ -108.621313, 45.000408 ], [ -109.062262, 44.999623 ], [ -109.083010, 44.999610 ], [ -109.103445, 45.005904 ], [ -109.263431, 45.005345 ], [ -109.269294, 45.005283 ], [ -109.798687, 45.002188 ], [ -110.025544, 45.003602 ], [ -110.026347, 45.003665 ], [ -110.110103, 45.003905 ], [ -110.221343, 44.996176 ], [ -110.547165, 44.992459 ], [ -110.552433, 44.992237 ], [ -110.705272, 44.992324 ], [ -110.750767, 44.997948 ], [ -110.875772, 45.002101 ], [ -111.044275, 45.001345 ] ] ] } }\n,\n{ \"type\": \"Feature\", \"properties\": { \"GEO_ID\": \"0400000US35\", \"STATE\": \"35\", \"NAME\": \"New Mexico\", \"LSAD\": \"\", \"CENSUSAREA\": 121298.148000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -105.998003, 32.002328 ], [ -106.099760, 32.002174 ], [ -106.181840, 32.002050 ], [ -106.200699, 32.001785 ], [ -106.205915, 32.001762 ], [ -106.313307, 32.001512 ], [ -106.377174, 32.001490 ], [ -106.394298, 32.001484 ], [ -106.411075, 32.001334 ], [ -106.565142, 32.000736 ], [ -106.566056, 32.000759 ], [ -106.587972, 32.000749 ], [ -106.595333, 32.000778 ], [ -106.598639, 32.000754 ], [ -106.599096, 32.000731 ], [ -106.614702, 31.956000 ], [ -106.616136, 31.948439 ], [ -106.627808, 31.860593 ], [ -106.625763, 31.856276 ], [ -106.621857, 31.852854 ], [ -106.614637, 31.846490 ], [ -106.605845, 31.846305 ], [ -106.605245, 31.845905 ], [ -106.566844, 31.813306 ], [ -106.563444, 31.812606 ], [ -106.545344, 31.805007 ], [ -106.544714, 31.804287 ], [ -106.542144, 31.802107 ], [ -106.542097, 31.802146 ], [ -106.535843, 31.798607 ], [ -106.535343, 31.797507 ], [ -106.535154, 31.797089 ], [ -106.534743, 31.796107 ], [ -106.533043, 31.791907 ], [ -106.533000, 31.791829 ], [ -106.532480, 31.791914 ], [ -106.530515, 31.792103 ], [ -106.527943, 31.790507 ], [ -106.527738, 31.789761 ], [ -106.527623, 31.789119 ], [ -106.527997, 31.786945 ], [ -106.528543, 31.784407 ], [ -106.528543, 31.783907 ], [ -106.750547, 31.783706 ], [ -106.750547, 31.783898 ], [ -106.993544, 31.783689 ], [ -106.998235, 31.783671 ], [ -107.000560, 31.783679 ], [ -107.000560, 31.783513 ], [ -107.296824, 31.783762 ], [ -107.422246, 31.783599 ], [ -107.422495, 31.783599 ], [ -108.208394, 31.783599 ], [ -108.208521, 31.499798 ], [ -108.208572, 31.499742 ], [ -108.208573, 31.333395 ], [ -108.851105, 31.332301 ], [ -108.861028, 31.332315 ], [ -109.050044, 31.332502 ], [ -109.049843, 31.499515 ], [ -109.049813, 31.499528 ], [ -109.049195, 31.796551 ], [ -109.048763, 31.810776 ], [ -109.048769, 31.861383 ], [ -109.048590, 31.870791 ], [ -109.048599, 32.013651 ], [ -109.048731, 32.028174 ], [ -109.048296, 32.084093 ], [ -109.048286, 32.089114 ], [ -109.047926, 32.426376 ], [ -109.047653, 32.681379 ], [ -109.047653, 32.686327 ], [ -109.047645, 32.689988 ], [ -109.047638, 32.693439 ], [ -109.047117, 32.777569 ], [ -109.047117, 32.777570 ], [ -109.047480, 33.068420 ], [ -109.047453, 33.069427 ], [ -109.046905, 33.091931 ], [ -109.047013, 33.092917 ], [ -109.047117, 33.137559 ], [ -109.047116, 33.137995 ], [ -109.047237, 33.208965 ], [ -109.046827, 33.365272 ], [ -109.046909, 33.365570 ], [ -109.047045, 33.369280 ], [ -109.046870, 33.372654 ], [ -109.046627, 33.778233 ], [ -109.046182, 34.522393 ], [ -109.046182, 34.522553 ], [ -109.046156, 34.579291 ], [ -109.045851, 34.959718 ], [ -109.046082, 35.174665 ], [ -109.046481, 35.546326 ], [ -109.046509, 35.546440 ], [ -109.046296, 35.614251 ], [ -109.046295, 35.616517 ], [ -109.046024, 35.879800 ], [ -109.046055, 35.888721 ], [ -109.046054, 35.925860 ], [ -109.046011, 35.925896 ], [ -109.045973, 36.002338 ], [ -109.045433, 36.874589 ], [ -109.045407, 36.874998 ], [ -109.045272, 36.968871 ], [ -109.045244, 36.969489 ], [ -109.045223, 36.999084 ], [ -108.958868, 36.998913 ], [ -108.954404, 36.998906 ], [ -108.620309, 36.999287 ], [ -108.619689, 36.999249 ], [ -108.379203, 36.999459 ], [ -108.320721, 36.999510 ], [ -108.320464, 36.999499 ], [ -108.288400, 36.999520 ], [ -108.288086, 36.999555 ], [ -107.481737, 36.999973 ], [ -107.420915, 37.000005 ], [ -107.420913, 37.000005 ], [ -107.000592, 37.000009 ], [ -106.869796, 36.992426 ], [ -106.675626, 36.993123 ], [ -106.661344, 36.993243 ], [ -106.628733, 36.993161 ], [ -106.628652, 36.993175 ], [ -106.617125, 36.993004 ], [ -106.617159, 36.992967 ], [ -106.476228, 36.993472 ], [ -106.248675, 36.994288 ], [ -106.247705, 36.994266 ], [ -106.006634, 36.995343 ], [ -105.997472, 36.995417 ], [ -105.996159, 36.995418 ], [ -105.718470, 36.995846 ], [ -105.716471, 36.995849 ], [ -105.664720, 36.995874 ], [ -105.627470, 36.995679 ], [ -105.533922, 36.995875 ], [ -105.512485, 36.995777 ], [ -105.508836, 36.995895 ], [ -105.465182, 36.995991 ], [ -105.447255, 36.996017 ], [ -105.442459, 36.995994 ], [ -105.419310, 36.995856 ], [ -105.220613, 36.995169 ], [ -105.155042, 36.995339 ], [ -105.120800, 36.995428 ], [ -105.000554, 36.993264 ], [ -104.732120, 36.993484 ], [ -104.732031, 36.993447 ], [ -104.007855, 36.996239 ], [ -103.734364, 36.998041 ], [ -103.733247, 36.998016 ], [ -103.086105, 36.999864 ], [ -103.002199, 37.000104 ], [ -103.002247, 36.911587 ], [ -103.001964, 36.909573 ], [ -103.002198, 36.719427 ], [ -103.002518, 36.675186 ], [ -103.002252, 36.617180 ], [ -103.002188, 36.602716 ], [ -103.002565, 36.526588 ], [ -103.002434, 36.500397 ], [ -103.041669, 36.478514 ], [ -103.041745, 36.318267 ], [ -103.041674, 36.317534 ], [ -103.040824, 36.055231 ], [ -103.041357, 35.739274 ], [ -103.041554, 35.622487 ], [ -103.042497, 35.211862 ], [ -103.042377, 35.183156 ], [ -103.042377, 35.183149 ], [ -103.042366, 35.182786 ], [ -103.042339, 35.181922 ], [ -103.042395, 35.178573 ], [ -103.042568, 35.159318 ], [ -103.042711, 35.144735 ], [ -103.042600, 35.142766 ], [ -103.042520, 35.135596 ], [ -103.042521, 34.954101 ], [ -103.042521, 34.899546 ], [ -103.042781, 34.850243 ], [ -103.042770, 34.792224 ], [ -103.042769, 34.747361 ], [ -103.042827, 34.671188 ], [ -103.043072, 34.619782 ], [ -103.043594, 34.462660 ], [ -103.043589, 34.459774 ], [ -103.043588, 34.459662 ], [ -103.043582, 34.455657 ], [ -103.043538, 34.405463 ], [ -103.043583, 34.400678 ], [ -103.043611, 34.397105 ], [ -103.043585, 34.393716 ], [ -103.043613, 34.390442 ], [ -103.043613, 34.388679 ], [ -103.043614, 34.384969 ], [ -103.043630, 34.384690 ], [ -103.043693, 34.383578 ], [ -103.043919, 34.380916 ], [ -103.043944, 34.379660 ], [ -103.043946, 34.379555 ], [ -103.043979, 34.312764 ], [ -103.043979, 34.312749 ], [ -103.043936, 34.302585 ], [ -103.043719, 34.289441 ], [ -103.043644, 34.256903 ], [ -103.043569, 34.087947 ], [ -103.043516, 34.079382 ], [ -103.043686, 34.063078 ], [ -103.043744, 34.049986 ], [ -103.043767, 34.043545 ], [ -103.043721, 34.042320 ], [ -103.043771, 34.041538 ], [ -103.043746, 34.037294 ], [ -103.043555, 34.032714 ], [ -103.043531, 34.018014 ], [ -103.043617, 34.003633 ], [ -103.043950, 33.974629 ], [ -103.044893, 33.945617 ], [ -103.045698, 33.906299 ], [ -103.045644, 33.901537 ], [ -103.046907, 33.850300 ], [ -103.047346, 33.824675 ], [ -103.049096, 33.746270 ], [ -103.050148, 33.701971 ], [ -103.050532, 33.672408 ], [ -103.051087, 33.658186 ], [ -103.051535, 33.650487 ], [ -103.051363, 33.641950 ], [ -103.051664, 33.629489 ], [ -103.052610, 33.570599 ], [ -103.056655, 33.388438 ], [ -103.056655, 33.388416 ], [ -103.057487, 33.329477 ], [ -103.057856, 33.315234 ], [ -103.060103, 33.219225 ], [ -103.063905, 33.042055 ], [ -103.063980, 33.038693 ], [ -103.064452, 33.010290 ], [ -103.064625, 32.999899 ], [ -103.064679, 32.964373 ], [ -103.064657, 32.959097 ], [ -103.064569, 32.900014 ], [ -103.064701, 32.879355 ], [ -103.064862, 32.868346 ], [ -103.064807, 32.857696 ], [ -103.064916, 32.857260 ], [ -103.064889, 32.849359 ], [ -103.064672, 32.828470 ], [ -103.064699, 32.827531 ], [ -103.064711, 32.784593 ], [ -103.064698, 32.783602 ], [ -103.064807, 32.777303 ], [ -103.064827, 32.726628 ], [ -103.064799, 32.708694 ], [ -103.064798, 32.690761 ], [ -103.064864, 32.682647 ], [ -103.064633, 32.646420 ], [ -103.064815, 32.624537 ], [ -103.064761, 32.601863 ], [ -103.064788, 32.600397 ], [ -103.064761, 32.587983 ], [ -103.064696, 32.522193 ], [ -103.064422, 32.145006 ], [ -103.064348, 32.123041 ], [ -103.064344, 32.087051 ], [ -103.064423, 32.000518 ], [ -103.085876, 32.000465 ], [ -103.088698, 32.000453 ], [ -103.215641, 32.000513 ], [ -103.267633, 32.000475 ], [ -103.267708, 32.000324 ], [ -103.270383, 32.000326 ], [ -103.278521, 32.000419 ], [ -103.326501, 32.000370 ], [ -103.722853, 32.000221 ], [ -103.980179, 32.000125 ], [ -104.024521, 32.000010 ], [ -104.531756, 32.000117 ], [ -104.531937, 32.000311 ], [ -104.640918, 32.000396 ], [ -104.643526, 32.000443 ], [ -104.847757, 32.000482 ], [ -104.918272, 32.000496 ], [ -105.077046, 32.000579 ], [ -105.078605, 32.000533 ], [ -105.118040, 32.000485 ], [ -105.131377, 32.000524 ], [ -105.132916, 32.000518 ], [ -105.148240, 32.000485 ], [ -105.150310, 32.000497 ], [ -105.153994, 32.000497 ], [ -105.390396, 32.000607 ], [ -105.427049, 32.000638 ], [ -105.428582, 32.000600 ], [ -105.429281, 32.000577 ], [ -105.886159, 32.001970 ], [ -105.900600, 32.002100 ], [ -105.998003, 32.002328 ] ] ] } }\n,\n{ \"type\": \"Feature\", \"properties\": { \"GEO_ID\": \"0400000US38\", \"STATE\": \"38\", \"NAME\": \"North Dakota\", \"LSAD\": \"\", \"CENSUSAREA\": 69000.798000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -100.511949, 45.943654 ], [ -100.627681, 45.943642 ], [ -100.650820, 45.943680 ], [ -100.720865, 45.944024 ], [ -100.750407, 45.943649 ], [ -100.762072, 45.943803 ], [ -100.762110, 45.943767 ], [ -100.769751, 45.943766 ], [ -100.890176, 45.943861 ], [ -100.935582, 45.943757 ], [ -100.938989, 45.943848 ], [ -100.964411, 45.943822 ], [ -100.976565, 45.943864 ], [ -100.980693, 45.944068 ], [ -101.101334, 45.943841 ], [ -101.106826, 45.943984 ], [ -101.142571, 45.943841 ], [ -101.146076, 45.943842 ], [ -101.163241, 45.943915 ], [ -101.171074, 45.943959 ], [ -101.175693, 45.943983 ], [ -101.179103, 45.943896 ], [ -101.203787, 45.943895 ], [ -101.224006, 45.944025 ], [ -101.271524, 45.944209 ], [ -101.287223, 45.944107 ], [ -101.313272, 45.944164 ], [ -101.333871, 45.944166 ], [ -101.365283, 45.944092 ], [ -101.370690, 45.944198 ], [ -101.373769, 45.944265 ], [ -101.557276, 45.944100 ], [ -101.562156, 45.944237 ], [ -101.628597, 45.944293 ], [ -101.657631, 45.944387 ], [ -101.680574, 45.944329 ], [ -101.681819, 45.944444 ], [ -101.708785, 45.944348 ], [ -101.723380, 45.944187 ], [ -101.730069, 45.944356 ], [ -101.758611, 45.944478 ], [ -101.764277, 45.944412 ], [ -101.765293, 45.944367 ], [ -101.766177, 45.944322 ], [ -101.790054, 45.944442 ], [ -101.794606, 45.944397 ], [ -101.832991, 45.944464 ], [ -101.852642, 45.944457 ], [ -101.886838, 45.944559 ], [ -101.957439, 45.944484 ], [ -101.973749, 45.944456 ], [ -101.989501, 45.944472 ], [ -101.992187, 45.944471 ], [ -101.998618, 45.944556 ], [ -101.998703, 45.944557 ], [ -102.000425, 45.944581 ], [ -102.000656, 45.944515 ], [ -102.000679, 45.944515 ], [ -102.060930, 45.944622 ], [ -102.085122, 45.944642 ], [ -102.087555, 45.944598 ], [ -102.124628, 45.944813 ], [ -102.125429, 45.944652 ], [ -102.135269, 45.944586 ], [ -102.145356, 45.944659 ], [ -102.156393, 45.944663 ], [ -102.157965, 45.944641 ], [ -102.159439, 45.944641 ], [ -102.176698, 45.944622 ], [ -102.176993, 45.944622 ], [ -102.217867, 45.944711 ], [ -102.328230, 45.944806 ], [ -102.353384, 45.944984 ], [ -102.354283, 45.944901 ], [ -102.392696, 45.944951 ], [ -102.392767, 45.944979 ], [ -102.396359, 45.944916 ], [ -102.398575, 45.944868 ], [ -102.406176, 45.944997 ], [ -102.410346, 45.945079 ], [ -102.420173, 45.945070 ], [ -102.425358, 45.944990 ], [ -102.425397, 45.945041 ], [ -102.446419, 45.945083 ], [ -102.459586, 45.945081 ], [ -102.467563, 45.945159 ], [ -102.476024, 45.945183 ], [ -102.550947, 45.945015 ], [ -102.558579, 45.945129 ], [ -102.642555, 45.945404 ], [ -102.651620, 45.945450 ], [ -102.666684, 45.945307 ], [ -102.672474, 45.945244 ], [ -102.674077, 45.945274 ], [ -102.704871, 45.945072 ], [ -102.880252, 45.945069 ], [ -102.920482, 45.945038 ], [ -102.942070, 45.945092 ], [ -102.989902, 45.945211 ], [ -102.995345, 45.945166 ], [ -102.995668, 45.945167 ], [ -103.026058, 45.945307 ], [ -103.047779, 45.945335 ], [ -103.078477, 45.945289 ], [ -103.097872, 45.945262 ], [ -103.140939, 45.945257 ], [ -103.161251, 45.945309 ], [ -103.210634, 45.945222 ], [ -103.218396, 45.945208 ], [ -103.284092, 45.945149 ], [ -103.284109, 45.945152 ], [ -103.411325, 45.945264 ], [ -103.418040, 45.945186 ], [ -103.432393, 45.945313 ], [ -103.434851, 45.945291 ], [ -103.558710, 45.945131 ], [ -103.577083, 45.945283 ], [ -103.660779, 45.945231 ], [ -103.660779, 45.945241 ], [ -103.668479, 45.945242 ], [ -104.045443, 45.945310 ], [ -104.046670, 46.000001 ], [ -104.045633, 46.280188 ], [ -104.045469, 46.324545 ], [ -104.045462, 46.341895 ], [ -104.045335, 46.540929 ], [ -104.045271, 46.641443 ], [ -104.045271, 46.641449 ], [ -104.045474, 46.708738 ], [ -104.045572, 46.713881 ], [ -104.045370, 46.721332 ], [ -104.045403, 46.722177 ], [ -104.045402, 46.725423 ], [ -104.045542, 46.933887 ], [ -104.045535, 46.934009 ], [ -104.045566, 46.941231 ], [ -104.045076, 47.037589 ], [ -104.045052, 47.040863 ], [ -104.045195, 47.053639 ], [ -104.045227, 47.057502 ], [ -104.045259, 47.063901 ], [ -104.045354, 47.078574 ], [ -104.045018, 47.081202 ], [ -104.045081, 47.092813 ], [ -104.045159, 47.263874 ], [ -104.045091, 47.265953 ], [ -104.045057, 47.266868 ], [ -104.045088, 47.271406 ], [ -104.045155, 47.273930 ], [ -104.045121, 47.276969 ], [ -104.045307, 47.330128 ], [ -104.045313, 47.331955 ], [ -104.045333, 47.343452 ], [ -104.045069, 47.397461 ], [ -104.044797, 47.438445 ], [ -104.044621, 47.459380 ], [ -104.043242, 47.747106 ], [ -104.043199, 47.747292 ], [ -104.042384, 47.803256 ], [ -104.042432, 47.805358 ], [ -104.042567, 47.808237 ], [ -104.041869, 47.841699 ], [ -104.041662, 47.862282 ], [ -104.042230, 47.891031 ], [ -104.043329, 47.949554 ], [ -104.043497, 47.954490 ], [ -104.043933, 47.971515 ], [ -104.044162, 47.992836 ], [ -104.044120, 47.996107 ], [ -104.045399, 48.164390 ], [ -104.045498, 48.176249 ], [ -104.045424, 48.192473 ], [ -104.045560, 48.193913 ], [ -104.045692, 48.241415 ], [ -104.045729, 48.244586 ], [ -104.045645, 48.246179 ], [ -104.045861, 48.255097 ], [ -104.046039, 48.256761 ], [ -104.046332, 48.342290 ], [ -104.046371, 48.374154 ], [ -104.046654, 48.374773 ], [ -104.046913, 48.389429 ], [ -104.046913, 48.389433 ], [ -104.046969, 48.390675 ], [ -104.047134, 48.411057 ], [ -104.046960, 48.421065 ], [ -104.047090, 48.445903 ], [ -104.047192, 48.447251 ], [ -104.047294, 48.452529 ], [ -104.047259, 48.452941 ], [ -104.047392, 48.467086 ], [ -104.047555, 48.494140 ], [ -104.047675, 48.517852 ], [ -104.047513, 48.525913 ], [ -104.047876, 48.530798 ], [ -104.047648, 48.531489 ], [ -104.047783, 48.539737 ], [ -104.047811, 48.562770 ], [ -104.047974, 48.591606 ], [ -104.048212, 48.599055 ], [ -104.047930, 48.620190 ], [ -104.047586, 48.625644 ], [ -104.047620, 48.627015 ], [ -104.047582, 48.633976 ], [ -104.047582, 48.633984 ], [ -104.047819, 48.648631 ], [ -104.047887, 48.649911 ], [ -104.047865, 48.657450 ], [ -104.047861, 48.658856 ], [ -104.047849, 48.663163 ], [ -104.047883, 48.664191 ], [ -104.048340, 48.747133 ], [ -104.048548, 48.751356 ], [ -104.048537, 48.788552 ], [ -104.048569, 48.797052 ], [ -104.048900, 48.847387 ], [ -104.048652, 48.865734 ], [ -104.048824, 48.867539 ], [ -104.048883, 48.874008 ], [ -104.048893, 48.875739 ], [ -104.048719, 48.879921 ], [ -104.048643, 48.902609 ], [ -104.048746, 48.906858 ], [ -104.048744, 48.912113 ], [ -104.048807, 48.933636 ], [ -104.048701, 48.940331 ], [ -104.048770, 48.943301 ], [ -104.048872, 48.949630 ], [ -104.048698, 48.951823 ], [ -104.048627, 48.957124 ], [ -104.048800, 48.958997 ], [ -104.048555, 48.963772 ], [ -104.048616, 48.966736 ], [ -104.048478, 48.987007 ], [ -104.048736, 48.999877 ], [ -103.992467, 48.999567 ], [ -103.988925, 48.999580 ], [ -103.983786, 48.999604 ], [ -103.982361, 48.999615 ], [ -103.980868, 48.999581 ], [ -103.976459, 48.999605 ], [ -103.969479, 48.999525 ], [ -103.968611, 48.999525 ], [ -103.923261, 48.999562 ], [ -103.921976, 48.999551 ], [ -103.918921, 48.999551 ], [ -103.917428, 48.999585 ], [ -103.876905, 48.999544 ], [ -103.865336, 48.999591 ], [ -103.862738, 48.999639 ], [ -103.858363, 48.999606 ], [ -103.856072, 48.999572 ], [ -103.852287, 48.999561 ], [ -102.938793, 48.998998 ], [ -102.216993, 48.998553 ], [ -102.211301, 48.998554 ], [ -102.151847, 48.998798 ], [ -102.131614, 48.998842 ], [ -102.021144, 48.999015 ], [ -101.496737, 48.999355 ], [ -101.225915, 48.999531 ], [ -101.225187, 48.999566 ], [ -101.220754, 48.999455 ], [ -101.216182, 48.999469 ], [ -100.920577, 48.999560 ], [ -100.917939, 48.999571 ], [ -100.913634, 48.999662 ], [ -100.907107, 48.999593 ], [ -100.433981, 48.999410 ], [ -100.434351, 48.999570 ], [ -100.431642, 48.999604 ], [ -100.431676, 48.999398 ], [ -100.182707, 48.999230 ], [ -99.913780, 48.999049 ], [ -99.913705, 48.999049 ], [ -99.861488, 48.999156 ], [ -99.861454, 48.999202 ], [ -99.525700, 48.999423 ], [ -98.999819, 48.999769 ], [ -97.950205, 49.000459 ], [ -97.775750, 49.000574 ], [ -97.411216, 49.000510 ], [ -97.229039, 49.000687 ], [ -97.234005, 48.997470 ], [ -97.238387, 48.982631 ], [ -97.239155, 48.967596 ], [ -97.232610, 48.946561 ], [ -97.199549, 48.881183 ], [ -97.157797, 48.787680 ], [ -97.137571, 48.749191 ], [ -97.092606, 48.682033 ], [ -97.163050, 48.543963 ], [ -97.163105, 48.543855 ], [ -97.161110, 48.543155 ], [ -97.150541, 48.539449 ], [ -97.126770, 48.520191 ], [ -97.123399, 48.421201 ], [ -97.131479, 48.406586 ], [ -97.145693, 48.397431 ], [ -97.136373, 48.352393 ], [ -97.126745, 48.342140 ], [ -97.115581, 48.323928 ], [ -97.116570, 48.279661 ], [ -97.129930, 48.249731 ], [ -97.134534, 48.249737 ], [ -97.143148, 48.246708 ], [ -97.147170, 48.242966 ], [ -97.147401, 48.193779 ], [ -97.147498, 48.173227 ], [ -97.147510, 48.170572 ], [ -97.123135, 48.109497 ], [ -97.098275, 48.071310 ], [ -97.088158, 48.059515 ], [ -97.023156, 47.873978 ], [ -97.000356, 47.860915 ], [ -96.980391, 47.815662 ], [ -96.890671, 47.672153 ], [ -96.885740, 47.664266 ], [ -96.850955, 47.598287 ], [ -96.842430, 47.508225 ], [ -96.853286, 47.503881 ], [ -96.853768, 47.499527 ], [ -96.862312, 47.422333 ], [ -96.852676, 47.374973 ], [ -96.833019, 47.238095 ], [ -96.832946, 47.237588 ], [ -96.826655, 47.150539 ], [ -96.824807, 47.124968 ], [ -96.823180, 46.999965 ], [ -96.824598, 46.993309 ], [ -96.823222, 46.970861 ], [ -96.791558, 46.934264 ], [ -96.780258, 46.928263 ], [ -96.767458, 46.905163 ], [ -96.802013, 46.812464 ], [ -96.784205, 46.686768 ], [ -96.783014, 46.630647 ], [ -96.783009, 46.630418 ], [ -96.783003, 46.630405 ], [ -96.739054, 46.543708 ], [ -96.716438, 46.444567 ], [ -96.721999, 46.439986 ], [ -96.669794, 46.384644 ], [ -96.631586, 46.353752 ], [ -96.598233, 46.312563 ], [ -96.599087, 46.263701 ], [ -96.585647, 46.177309 ], [ -96.578362, 46.170112 ], [ -96.557952, 46.102442 ], [ -96.554835, 46.084824 ], [ -96.556940, 46.064601 ], [ -96.559271, 46.058272 ], [ -96.566295, 46.051416 ], [ -96.577940, 46.026874 ], [ -96.577326, 46.021757 ], [ -96.570350, 45.963595 ], [ -96.563280, 45.935238 ], [ -96.576897, 45.935259 ], [ -96.597432, 45.935209 ], [ -96.607142, 45.935301 ], [ -96.618295, 45.935407 ], [ -96.639066, 45.935318 ], [ -96.659895, 45.935560 ], [ -96.680646, 45.935716 ], [ -96.701313, 45.935807 ], [ -96.791505, 45.935857 ], [ -96.998652, 45.935700 ], [ -97.019596, 45.935382 ], [ -97.118053, 45.935485 ], [ -97.144987, 45.935278 ], [ -97.228291, 45.935141 ], [ -97.228304, 45.935141 ], [ -97.228323, 45.935141 ], [ -97.312184, 45.935077 ], [ -97.318899, 45.935054 ], [ -97.481967, 45.935138 ], [ -97.491892, 45.935111 ], [ -97.518944, 45.935304 ], [ -97.519035, 45.935304 ], [ -97.542598, 45.935258 ], [ -97.696691, 45.935352 ], [ -97.777040, 45.935393 ], [ -97.784575, 45.935327 ], [ -97.958718, 45.935878 ], [ -97.978778, 45.935937 ], [ -97.986893, 45.935961 ], [ -98.008102, 45.936095 ], [ -98.008202, 45.936096 ], [ -98.070515, 45.936180 ], [ -98.184637, 45.936183 ], [ -98.185630, 45.936185 ], [ -98.724375, 45.938685 ], [ -98.904429, 45.939520 ], [ -98.905477, 45.939520 ], [ -99.005642, 45.939944 ], [ -99.005754, 45.939944 ], [ -99.092868, 45.940184 ], [ -99.102372, 45.940158 ], [ -99.212571, 45.940108 ], [ -99.213644, 45.940116 ], [ -99.221672, 45.940069 ], [ -99.222269, 45.940071 ], [ -99.257745, 45.940060 ], [ -99.276266, 45.940188 ], [ -99.283968, 45.940195 ], [ -99.297272, 45.940165 ], [ -99.317875, 45.940263 ], [ -99.344774, 45.940299 ], [ -99.344960, 45.940299 ], [ -99.378486, 45.940403 ], [ -99.385565, 45.940407 ], [ -99.401260, 45.940367 ], [ -99.490254, 45.940362 ], [ -99.493140, 45.940383 ], [ -99.588780, 45.941104 ], [ -99.611160, 45.941098 ], [ -99.671938, 45.941062 ], [ -99.692975, 45.940949 ], [ -99.718071, 45.940907 ], [ -99.718073, 45.940907 ], [ -99.747870, 45.940933 ], [ -99.749325, 45.940935 ], [ -99.749494, 45.940956 ], [ -99.750396, 45.940935 ], [ -99.838680, 45.941293 ], [ -99.880062, 45.941670 ], [ -99.880292, 45.941672 ], [ -99.965775, 45.941822 ], [ -100.005486, 45.941950 ], [ -100.069020, 45.942170 ], [ -100.084163, 45.942301 ], [ -100.108471, 45.942391 ], [ -100.110339, 45.942367 ], [ -100.141730, 45.942506 ], [ -100.152084, 45.942486 ], [ -100.170826, 45.942514 ], [ -100.274762, 45.942945 ], [ -100.275614, 45.942922 ], [ -100.284134, 45.942951 ], [ -100.285345, 45.943130 ], [ -100.294126, 45.943269 ], [ -100.410386, 45.943453 ], [ -100.420162, 45.943533 ], [ -100.424438, 45.943569 ], [ -100.430597, 45.943638 ], [ -100.462838, 45.943566 ], [ -100.499354, 45.943632 ], [ -100.511793, 45.943654 ], [ -100.511949, 45.943654 ] ] ] } }\n,\n{ \"type\": \"Feature\", \"properties\": { \"GEO_ID\": \"0400000US40\", \"STATE\": \"40\", \"NAME\": \"Oklahoma\", \"LSAD\": \"\", \"CENSUSAREA\": 68594.921000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -100.000381, 34.746358 ], [ -100.000381, 34.746461 ], [ -100.000384, 35.030385 ], [ -100.000385, 35.182702 ], [ -100.000389, 35.422364 ], [ -100.000392, 35.619115 ], [ -100.000396, 35.880948 ], [ -100.000399, 36.055677 ], [ -100.000406, 36.499702 ], [ -100.003762, 36.499699 ], [ -100.090021, 36.499634 ], [ -100.181221, 36.499633 ], [ -100.310643, 36.499642 ], [ -100.311018, 36.499688 ], [ -100.311245, 36.499631 ], [ -100.324150, 36.499679 ], [ -100.334441, 36.499440 ], [ -100.334464, 36.499420 ], [ -100.351842, 36.499473 ], [ -100.351852, 36.499487 ], [ -100.378592, 36.499445 ], [ -100.378634, 36.499517 ], [ -100.413550, 36.499469 ], [ -100.413634, 36.499444 ], [ -100.421301, 36.499488 ], [ -100.421328, 36.499447 ], [ -100.433959, 36.499456 ], [ -100.441064, 36.499462 ], [ -100.441065, 36.499490 ], [ -100.522227, 36.499291 ], [ -100.530314, 36.499357 ], [ -100.530478, 36.499240 ], [ -100.531215, 36.499290 ], [ -100.531215, 36.499341 ], [ -100.546145, 36.499343 ], [ -100.578114, 36.499439 ], [ -100.578114, 36.499463 ], [ -100.583379, 36.499443 ], [ -100.583539, 36.499483 ], [ -100.592551, 36.499429 ], [ -100.592556, 36.499469 ], [ -100.592614, 36.499469 ], [ -100.648344, 36.499463 ], [ -100.648343, 36.499495 ], [ -100.657763, 36.499500 ], [ -100.657763, 36.499483 ], [ -100.708628, 36.499521 ], [ -100.708626, 36.499553 ], [ -100.724361, 36.499558 ], [ -100.724362, 36.499580 ], [ -100.761811, 36.499580 ], [ -100.761811, 36.499618 ], [ -100.802886, 36.499621 ], [ -100.802909, 36.499621 ], [ -100.806172, 36.499634 ], [ -100.806190, 36.499674 ], [ -100.824218, 36.499618 ], [ -100.824236, 36.499618 ], [ -100.850840, 36.499700 ], [ -100.859657, 36.499687 ], [ -100.884080, 36.499682 ], [ -100.884174, 36.499682 ], [ -100.918513, 36.499621 ], [ -100.936058, 36.499602 ], [ -100.954153, 36.499599 ], [ -100.977088, 36.499595 ], [ -101.045331, 36.499540 ], [ -101.052418, 36.499563 ], [ -101.085156, 36.499244 ], [ -101.623915, 36.499528 ], [ -101.649966, 36.499573 ], [ -101.653708, 36.499573 ], [ -101.698685, 36.499508 ], [ -101.709314, 36.499722 ], [ -101.779435, 36.499734 ], [ -101.780610, 36.499727 ], [ -101.781987, 36.499718 ], [ -101.783359, 36.499709 ], [ -101.788110, 36.499678 ], [ -101.826498, 36.499535 ], [ -101.826565, 36.499654 ], [ -102.032339, 36.500066 ], [ -102.162463, 36.500326 ], [ -103.002434, 36.500397 ], [ -103.002565, 36.526588 ], [ -103.002188, 36.602716 ], [ -103.002252, 36.617180 ], [ -103.002518, 36.675186 ], [ -103.002198, 36.719427 ], [ -103.001964, 36.909573 ], [ -103.002247, 36.911587 ], [ -103.002199, 37.000104 ], [ -102.986976, 36.998524 ], [ -102.985807, 36.998571 ], [ -102.979613, 36.998549 ], [ -102.875481, 36.999628 ], [ -102.570896, 36.995136 ], [ -102.355367, 36.994575 ], [ -102.355288, 36.994506 ], [ -102.208316, 36.993730 ], [ -102.184271, 36.993593 ], [ -102.054503, 36.993109 ], [ -102.042240, 36.993083 ], [ -102.028207, 36.993125 ], [ -102.028204, 36.993125 ], [ -102.000447, 36.993272 ], [ -102.000447, 36.993249 ], [ -101.902440, 36.993702 ], [ -101.601593, 36.995095 ], [ -101.600396, 36.995153 ], [ -101.555260, 36.995414 ], [ -101.555239, 36.995414 ], [ -101.519066, 36.995546 ], [ -101.485326, 36.995611 ], [ -101.415005, 36.995966 ], [ -101.413868, 36.996008 ], [ -101.378180, 36.996164 ], [ -101.359674, 36.996232 ], [ -101.357797, 36.996271 ], [ -101.212909, 36.997044 ], [ -101.211486, 36.997124 ], [ -101.066742, 36.997921 ], [ -101.053589, 36.997967 ], [ -101.012641, 36.998176 ], [ -100.996502, 36.998044 ], [ -100.945566, 36.998152 ], [ -100.945469, 36.998153 ], [ -100.904588, 36.998561 ], [ -100.904274, 36.998745 ], [ -100.891660, 36.998604 ], [ -100.855634, 36.998626 ], [ -100.814277, 36.999085 ], [ -100.806116, 36.999091 ], [ -100.765484, 36.999177 ], [ -100.756894, 36.999357 ], [ -100.675552, 36.999688 ], [ -100.633327, 36.999936 ], [ -100.633323, 36.999936 ], [ -100.629770, 37.000025 ], [ -100.591413, 37.000399 ], [ -100.591328, 37.000376 ], [ -100.552683, 37.000735 ], [ -100.551598, 37.000620 ], [ -100.201676, 37.002081 ], [ -100.193754, 37.002133 ], [ -100.192371, 37.002036 ], [ -100.187547, 37.002082 ], [ -100.115722, 37.002206 ], [ -100.089484, 37.002092 ], [ -100.005706, 37.001726 ], [ -100.002563, 37.001706 ], [ -100.001286, 37.001699 ], [ -99.995201, 37.001631 ], [ -99.786016, 37.000931 ], [ -99.774816, 37.000841 ], [ -99.774255, 37.000837 ], [ -99.657658, 37.000197 ], [ -99.625399, 36.999671 ], [ -99.558068, 36.999528 ], [ -99.541116, 36.999573 ], [ -99.508574, 36.999658 ], [ -99.504093, 36.999648 ], [ -99.502665, 36.999645 ], [ -99.500395, 36.999637 ], [ -99.500395, 36.999576 ], [ -99.484333, 36.999626 ], [ -99.456203, 36.999471 ], [ -99.277506, 36.999579 ], [ -99.248120, 36.999565 ], [ -99.129449, 36.999422 ], [ -99.124883, 36.999420 ], [ -99.029337, 36.999595 ], [ -99.000303, 36.999510 ], [ -98.994371, 36.999493 ], [ -98.880580, 36.999309 ], [ -98.880009, 36.999263 ], [ -98.869449, 36.999286 ], [ -98.797452, 36.999229 ], [ -98.793711, 36.999227 ], [ -98.791936, 36.999255 ], [ -98.761597, 36.999425 ], [ -98.718465, 36.999180 ], [ -98.714512, 36.999060 ], [ -98.544872, 36.998997 ], [ -98.544660, 36.998996 ], [ -98.420209, 36.998516 ], [ -98.418268, 36.998538 ], [ -98.408991, 36.998513 ], [ -98.354073, 36.997961 ], [ -98.347149, 36.997962 ], [ -98.346188, 36.997962 ], [ -98.237712, 36.997972 ], [ -98.219499, 36.997824 ], [ -98.208218, 36.997997 ], [ -98.177596, 36.998009 ], [ -98.147452, 36.998162 ], [ -98.111985, 36.998133 ], [ -98.045342, 36.998327 ], [ -98.039890, 36.998349 ], [ -98.033955, 36.998366 ], [ -97.802313, 36.998713 ], [ -97.802298, 36.998713 ], [ -97.783489, 36.998847 ], [ -97.783432, 36.998961 ], [ -97.768704, 36.998750 ], [ -97.697104, 36.998826 ], [ -97.650466, 36.999004 ], [ -97.637137, 36.999090 ], [ -97.606549, 36.998682 ], [ -97.564536, 36.998711 ], [ -97.546498, 36.998747 ], [ -97.545900, 36.998709 ], [ -97.527292, 36.998750 ], [ -97.472861, 36.998721 ], [ -97.462346, 36.998685 ], [ -97.462280, 36.998685 ], [ -97.384925, 36.998843 ], [ -97.372421, 36.998861 ], [ -97.147721, 36.999111 ], [ -97.122597, 36.999036 ], [ -97.120285, 36.999014 ], [ -97.104276, 36.999020 ], [ -97.100652, 36.998998 ], [ -97.039784, 36.999000 ], [ -97.030082, 36.998929 ], [ -96.975562, 36.999019 ], [ -96.967371, 36.999067 ], [ -96.934642, 36.999070 ], [ -96.921915, 36.999151 ], [ -96.917093, 36.999182 ], [ -96.903510, 36.999132 ], [ -96.902083, 36.999155 ], [ -96.876290, 36.999233 ], [ -96.867517, 36.999217 ], [ -96.822791, 36.999182 ], [ -96.795199, 36.998860 ], [ -96.792060, 36.999180 ], [ -96.749838, 36.998988 ], [ -96.741270, 36.999239 ], [ -96.736590, 36.999286 ], [ -96.710482, 36.999271 ], [ -96.705431, 36.999203 ], [ -96.525493, 36.999147 ], [ -96.415412, 36.999113 ], [ -96.394272, 36.999221 ], [ -96.279079, 36.999272 ], [ -96.276368, 36.999271 ], [ -96.217571, 36.999070 ], [ -96.200028, 36.999028 ], [ -96.184768, 36.999211 ], [ -96.154017, 36.999161 ], [ -96.152384, 36.999051 ], [ -96.149709, 36.999040 ], [ -96.147143, 36.999022 ], [ -96.143207, 36.999134 ], [ -96.141210, 36.998973 ], [ -96.000810, 36.998860 ], [ -95.964270, 36.999094 ], [ -95.936992, 36.999268 ], [ -95.928122, 36.999245 ], [ -95.910180, 36.999336 ], [ -95.877151, 36.999304 ], [ -95.875257, 36.999302 ], [ -95.873944, 36.999300 ], [ -95.866899, 36.999261 ], [ -95.807980, 36.999124 ], [ -95.786762, 36.999310 ], [ -95.768719, 36.999205 ], [ -95.759905, 36.999271 ], [ -95.741908, 36.999244 ], [ -95.718054, 36.999255 ], [ -95.714887, 36.999279 ], [ -95.710380, 36.999371 ], [ -95.696659, 36.999215 ], [ -95.686452, 36.999349 ], [ -95.664301, 36.999322 ], [ -95.630079, 36.999320 ], [ -95.624350, 36.999360 ], [ -95.615934, 36.999365 ], [ -95.612140, 36.999321 ], [ -95.573598, 36.999310 ], [ -95.534401, 36.999332 ], [ -95.522415, 36.999281 ], [ -95.511578, 36.999235 ], [ -95.407683, 36.999241 ], [ -95.407572, 36.999241 ], [ -95.331210, 36.999380 ], [ -95.328327, 36.999366 ], [ -95.328058, 36.999365 ], [ -95.322565, 36.999358 ], [ -95.195307, 36.999565 ], [ -95.177301, 36.999520 ], [ -95.155372, 36.999540 ], [ -95.155187, 36.999539 ], [ -95.073509, 36.999509 ], [ -95.073504, 36.999509 ], [ -95.049499, 36.999580 ], [ -95.037857, 36.999497 ], [ -95.030324, 36.999517 ], [ -95.011433, 36.999535 ], [ -95.007620, 36.999514 ], [ -94.995293, 36.999529 ], [ -94.853197, 36.998874 ], [ -94.849801, 36.998876 ], [ -94.840926, 36.998833 ], [ -94.831280, 36.998812 ], [ -94.777257, 36.998764 ], [ -94.739324, 36.998687 ], [ -94.737183, 36.998665 ], [ -94.712770, 36.998794 ], [ -94.701797, 36.998814 ], [ -94.699735, 36.998805 ], [ -94.618080, 36.998135 ], [ -94.618049, 36.996208 ], [ -94.618031, 36.994704 ], [ -94.618026, 36.950158 ], [ -94.618109, 36.946564 ], [ -94.618166, 36.937584 ], [ -94.618295, 36.929647 ], [ -94.618207, 36.926236 ], [ -94.618282, 36.911472 ], [ -94.618243, 36.897027 ], [ -94.618658, 36.880064 ], [ -94.618380, 36.847320 ], [ -94.618307, 36.766560 ], [ -94.618130, 36.701423 ], [ -94.618025, 36.669430 ], [ -94.618019, 36.667921 ], [ -94.617815, 36.612604 ], [ -94.617865, 36.606851 ], [ -94.617853, 36.599120 ], [ -94.617814, 36.577732 ], [ -94.617897, 36.536983 ], [ -94.617868, 36.536090 ], [ -94.617997, 36.534280 ], [ -94.617883, 36.517799 ], [ -94.617877, 36.514999 ], [ -94.617919, 36.499414 ], [ -94.615311, 36.484992 ], [ -94.613830, 36.476248 ], [ -94.611609, 36.461528 ], [ -94.605408, 36.421949 ], [ -94.602623, 36.405283 ], [ -94.601984, 36.402120 ], [ -94.599723, 36.387587 ], [ -94.593397, 36.345742 ], [ -94.586200, 36.299969 ], [ -94.577883, 36.250080 ], [ -94.577899, 36.249548 ], [ -94.576003, 36.240070 ], [ -94.575071, 36.233682 ], [ -94.574880, 36.232741 ], [ -94.574395, 36.229996 ], [ -94.571806, 36.213748 ], [ -94.571253, 36.210901 ], [ -94.566588, 36.183774 ], [ -94.565655, 36.178439 ], [ -94.562828, 36.161895 ], [ -94.562803, 36.161749 ], [ -94.561165, 36.152110 ], [ -94.552184, 36.102235 ], [ -94.547871, 36.078281 ], [ -94.547715, 36.077271 ], [ -94.535724, 36.007807 ], [ -94.534852, 36.002678 ], [ -94.533646, 35.996804 ], [ -94.532071, 35.987852 ], [ -94.528305, 35.966054 ], [ -94.528162, 35.965665 ], [ -94.524640, 35.945727 ], [ -94.524344, 35.944050 ], [ -94.522910, 35.936127 ], [ -94.522634, 35.934892 ], [ -94.522658, 35.934799 ], [ -94.522658, 35.934250 ], [ -94.507631, 35.845901 ], [ -94.505642, 35.833628 ], [ -94.504438, 35.826369 ], [ -94.503011, 35.817210 ], [ -94.501162, 35.806430 ], [ -94.500764, 35.803820 ], [ -94.500526, 35.802642 ], [ -94.499647, 35.796910 ], [ -94.499045, 35.793460 ], [ -94.494549, 35.768303 ], [ -94.493362, 35.761892 ], [ -94.492932, 35.759166 ], [ -94.488210, 35.729240 ], [ -94.487585, 35.726147 ], [ -94.472647, 35.638556 ], [ -94.465272, 35.594037 ], [ -94.464457, 35.588909 ], [ -94.464097, 35.587265 ], [ -94.463318, 35.582660 ], [ -94.431789, 35.397659 ], [ -94.431215, 35.394290 ], [ -94.433915, 35.387391 ], [ -94.433742, 35.386467 ], [ -94.432685, 35.380806 ], [ -94.431815, 35.362891 ], [ -94.434115, 35.306493 ], [ -94.435170, 35.291494 ], [ -94.435280, 35.287485 ], [ -94.435316, 35.275893 ], [ -94.435706, 35.274267 ], [ -94.435812, 35.271300 ], [ -94.437578, 35.242202 ], [ -94.437774, 35.239271 ], [ -94.438247, 35.210992 ], [ -94.438470, 35.208587 ], [ -94.439084, 35.197298 ], [ -94.439056, 35.193588 ], [ -94.439509, 35.171807 ], [ -94.439550, 35.169037 ], [ -94.440754, 35.128806 ], [ -94.441232, 35.119724 ], [ -94.447889, 34.933941 ], [ -94.449253, 34.895869 ], [ -94.449086, 34.894152 ], [ -94.449058, 34.890556 ], [ -94.449630, 34.875253 ], [ -94.450065, 34.861335 ], [ -94.450140, 34.858694 ], [ -94.450233, 34.855413 ], [ -94.454576, 34.728962 ], [ -94.457530, 34.642961 ], [ -94.457500, 34.634945 ], [ -94.460052, 34.547869 ], [ -94.460058, 34.545264 ], [ -94.461149, 34.507457 ], [ -94.463671, 34.419585 ], [ -94.463816, 34.414465 ], [ -94.464176, 34.402713 ], [ -94.465425, 34.359548 ], [ -94.465847, 34.352073 ], [ -94.470292, 34.189864 ], [ -94.474896, 34.021877 ], [ -94.474896, 34.021838 ], [ -94.474895, 34.019655 ], [ -94.476957, 33.957365 ], [ -94.477038, 33.953838 ], [ -94.477318, 33.940932 ], [ -94.477387, 33.937759 ], [ -94.478842, 33.881485 ], [ -94.478994, 33.881197 ], [ -94.479954, 33.851330 ], [ -94.480574, 33.830166 ], [ -94.481355, 33.802887 ], [ -94.481361, 33.802649 ], [ -94.481543, 33.795719 ], [ -94.481842, 33.789008 ], [ -94.482682, 33.756286 ], [ -94.482777, 33.753638 ], [ -94.482862, 33.750780 ], [ -94.482870, 33.750564 ], [ -94.483874, 33.716733 ], [ -94.483840, 33.711332 ], [ -94.484616, 33.691592 ], [ -94.484520, 33.687909 ], [ -94.485528, 33.663388 ], [ -94.485577, 33.653310 ], [ -94.485875, 33.637867 ], [ -94.487611, 33.628544 ], [ -94.490684, 33.625586 ], [ -94.524055, 33.615765 ], [ -94.528380, 33.615995 ], [ -94.660964, 33.660322 ], [ -94.735128, 33.691267 ], [ -94.746096, 33.703016 ], [ -94.760604, 33.727054 ], [ -94.822473, 33.732716 ], [ -94.869300, 33.745871 ], [ -95.039452, 33.860621 ], [ -95.062284, 33.903618 ], [ -95.063459, 33.914040 ], [ -95.067253, 33.917351 ], [ -95.129572, 33.936718 ], [ -95.155981, 33.944027 ], [ -95.219358, 33.961567 ], [ -95.226393, 33.961954 ], [ -95.231113, 33.960361 ], [ -95.252906, 33.933648 ], [ -95.253623, 33.929710 ], [ -95.249807, 33.922241 ], [ -95.248200, 33.912327 ], [ -95.249922, 33.902024 ], [ -95.255541, 33.892047 ], [ -95.260815, 33.887653 ], [ -95.287565, 33.873617 ], [ -95.310475, 33.871481 ], [ -95.339758, 33.868752 ], [ -95.407795, 33.866308 ], [ -95.445751, 33.868850 ], [ -95.544346, 33.880111 ], [ -95.548325, 33.882744 ], [ -95.552085, 33.888422 ], [ -95.552331, 33.894420 ], [ -95.549475, 33.901311 ], [ -95.549145, 33.907950 ], [ -95.559414, 33.930179 ], [ -95.567022, 33.932697 ], [ -95.599678, 33.934247 ], [ -95.757156, 33.867293 ], [ -95.763622, 33.847954 ], [ -95.824680, 33.837726 ], [ -95.846334, 33.841136 ], [ -95.949935, 33.857452 ], [ -96.097526, 33.847544 ], [ -96.148070, 33.837799 ], [ -96.156717, 33.813324 ], [ -96.164100, 33.784261 ], [ -96.170055, 33.769170 ], [ -96.181704, 33.758504 ], [ -96.199900, 33.752117 ], [ -96.220521, 33.747390 ], [ -96.229859, 33.748320 ], [ -96.304675, 33.745901 ], [ -96.369590, 33.716809 ], [ -96.378473, 33.726648 ], [ -96.423362, 33.776365 ], [ -96.436455, 33.780050 ], [ -96.448045, 33.781031 ], [ -96.500268, 33.772583 ], [ -96.612925, 33.833939 ], [ -96.614870, 33.841234 ], [ -96.615843, 33.853393 ], [ -96.612963, 33.867651 ], [ -96.611466, 33.875278 ], [ -96.613494, 33.878321 ], [ -96.615356, 33.881114 ], [ -96.622165, 33.885977 ], [ -96.633351, 33.889382 ], [ -96.646968, 33.895218 ], [ -96.658640, 33.900081 ], [ -96.672258, 33.899595 ], [ -96.678580, 33.892786 ], [ -96.682471, 33.883059 ], [ -96.685389, 33.872846 ], [ -96.689280, 33.861660 ], [ -96.694629, 33.849988 ], [ -96.700952, 33.840748 ], [ -96.707274, 33.835398 ], [ -96.712422, 33.831633 ], [ -96.761588, 33.824406 ], [ -96.856090, 33.847490 ], [ -96.866438, 33.853149 ], [ -96.883010, 33.868019 ], [ -96.895728, 33.896414 ], [ -96.899442, 33.933728 ], [ -96.907387, 33.950025 ], [ -96.916300, 33.957798 ], [ -96.922114, 33.959579 ], [ -96.934508, 33.953748 ], [ -96.944611, 33.948994 ], [ -96.972870, 33.935698 ], [ -96.985567, 33.886522 ], [ -97.006130, 33.861884 ], [ -97.047972, 33.817931 ], [ -97.092414, 33.733214 ], [ -97.097154, 33.727809 ], [ -97.107183, 33.721119 ], [ -97.121102, 33.717174 ], [ -97.137530, 33.718664 ], [ -97.151257, 33.722608 ], [ -97.162803, 33.729127 ], [ -97.163149, 33.729322 ], [ -97.172192, 33.737545 ], [ -97.204827, 33.799908 ], [ -97.204995, 33.818870 ], [ -97.199700, 33.827322 ], [ -97.194678, 33.831192 ], [ -97.181370, 33.831375 ], [ -97.171627, 33.835335 ], [ -97.166824, 33.840395 ], [ -97.166629, 33.847311 ], [ -97.180845, 33.895204 ], [ -97.185458, 33.900700 ], [ -97.210921, 33.916064 ], [ -97.226522, 33.914642 ], [ -97.310843, 33.872461 ], [ -97.372941, 33.819454 ], [ -97.426493, 33.819398 ], [ -97.444193, 33.823773 ], [ -97.453057, 33.828536 ], [ -97.459068, 33.834581 ], [ -97.462857, 33.841772 ], [ -97.461486, 33.849560 ], [ -97.457617, 33.855126 ], [ -97.451469, 33.870930 ], [ -97.450954, 33.891398 ], [ -97.458069, 33.901635 ], [ -97.484071, 33.915680 ], [ -97.486505, 33.916994 ], [ -97.500960, 33.919643 ], [ -97.519171, 33.913638 ], [ -97.545526, 33.900396 ], [ -97.555002, 33.897282 ], [ -97.561054, 33.898006 ], [ -97.581041, 33.900396 ], [ -97.587441, 33.902479 ], [ -97.596289, 33.913769 ], [ -97.597115, 33.917868 ], [ -97.588828, 33.951882 ], [ -97.589598, 33.953554 ], [ -97.609091, 33.968093 ], [ -97.656210, 33.989488 ], [ -97.671772, 33.991370 ], [ -97.688023, 33.986607 ], [ -97.693110, 33.983699 ], [ -97.700477, 33.972246 ], [ -97.733723, 33.936392 ], [ -97.785317, 33.890701 ], [ -97.834333, 33.857671 ], [ -97.865765, 33.849393 ], [ -97.877387, 33.850236 ], [ -97.966706, 33.881949 ], [ -97.977810, 33.889894 ], [ -97.977859, 33.889929 ], [ -97.953395, 33.936445 ], [ -97.945730, 33.989839 ], [ -97.983521, 34.001559 ], [ -98.019485, 33.993804 ], [ -98.041117, 33.993456 ], [ -98.085260, 34.003259 ], [ -98.088203, 34.005481 ], [ -98.106261, 34.033696 ], [ -98.169120, 34.114171 ], [ -98.200075, 34.116783 ], [ -98.293901, 34.133020 ], [ -98.300209, 34.134579 ], [ -98.325445, 34.151025 ], [ -98.364023, 34.157109 ], [ -98.383222, 34.147806 ], [ -98.398441, 34.128456 ], [ -98.400494, 34.121778 ], [ -98.433769, 34.096116 ], [ -98.475066, 34.064269 ], [ -98.504182, 34.072371 ], [ -98.553717, 34.133660 ], [ -98.577356, 34.149100 ], [ -98.599789, 34.160571 ], [ -98.610112, 34.161039 ], [ -98.637575, 34.162284 ], [ -98.652347, 34.161029 ], [ -98.665824, 34.151617 ], [ -98.700182, 34.135995 ], [ -98.765570, 34.136376 ], [ -98.858419, 34.152732 ], [ -98.920042, 34.182908 ], [ -98.952527, 34.195621 ], [ -98.966743, 34.201185 ], [ -99.060344, 34.204761 ], [ -99.119204, 34.201747 ], [ -99.157114, 34.207414 ], [ -99.190890, 34.215251 ], [ -99.211648, 34.292232 ], [ -99.211600, 34.313970 ], [ -99.209724, 34.324935 ], [ -99.211396, 34.337688 ], [ -99.211423, 34.337897 ], [ -99.261321, 34.403499 ], [ -99.356713, 34.442144 ], [ -99.398635, 34.375832 ], [ -99.407168, 34.372605 ], [ -99.440760, 34.374123 ], [ -99.453477, 34.388756 ], [ -99.474161, 34.398052 ], [ -99.499875, 34.409608 ], [ -99.515385, 34.414333 ], [ -99.574367, 34.418281 ], [ -99.580060, 34.416653 ], [ -99.616793, 34.375391 ], [ -99.663948, 34.373680 ], [ -99.694970, 34.378333 ], [ -99.767234, 34.430502 ], [ -99.793684, 34.453894 ], [ -99.846399, 34.505045 ], [ -99.864922, 34.523018 ], [ -99.872357, 34.532096 ], [ -99.874403, 34.537095 ], [ -99.884842, 34.546953 ], [ -99.923211, 34.574552 ], [ -99.945720, 34.579273 ], [ -99.954567, 34.578195 ], [ -99.997853, 34.561485 ], [ -100.000381, 34.560509 ], [ -100.000381, 34.746358 ] ] ] } }\n,\n{ \"type\": \"Feature\", \"properties\": { \"GEO_ID\": \"0400000US42\", \"STATE\": \"42\", \"NAME\": \"Pennsylvania\", \"LSAD\": \"\", \"CENSUSAREA\": 44742.703000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -79.476662, 39.721078 ], [ -79.608223, 39.721154 ], [ -79.610623, 39.721245 ], [ -79.763774, 39.720776 ], [ -79.852904, 39.720713 ], [ -79.853131, 39.720713 ], [ -79.916266, 39.720792 ], [ -80.308651, 39.721283 ], [ -80.309457, 39.721264 ], [ -80.421388, 39.721189 ], [ -80.519342, 39.721403 ], [ -80.519248, 39.936967 ], [ -80.519115, 39.939188 ], [ -80.519175, 39.956648 ], [ -80.519203, 39.959394 ], [ -80.519217, 39.962199 ], [ -80.519218, 39.962424 ], [ -80.519207, 39.963381 ], [ -80.519120, 40.016410 ], [ -80.519008, 40.077001 ], [ -80.518960, 40.078089 ], [ -80.519104, 40.159672 ], [ -80.519056, 40.172744 ], [ -80.519056, 40.172771 ], [ -80.517991, 40.398868 ], [ -80.517998, 40.399644 ], [ -80.518692, 40.477365 ], [ -80.519054, 40.517922 ], [ -80.519057, 40.517922 ], [ -80.519055, 40.590173 ], [ -80.519086, 40.590161 ], [ -80.519086, 40.616385 ], [ -80.519039, 40.616391 ], [ -80.518991, 40.638801 ], [ -80.519058, 40.792298 ], [ -80.518992, 40.801221 ], [ -80.519081, 40.849157 ], [ -80.519020, 40.850073 ], [ -80.519039, 40.851339 ], [ -80.519764, 40.899858 ], [ -80.519790, 40.900761 ], [ -80.519091, 40.921061 ], [ -80.519000, 40.987380 ], [ -80.518989, 40.995445 ], [ -80.518927, 41.015387 ], [ -80.518960, 41.061546 ], [ -80.518928, 41.070954 ], [ -80.518960, 41.071866 ], [ -80.518999, 41.075014 ], [ -80.519088, 41.082074 ], [ -80.519092, 41.090658 ], [ -80.519125, 41.100819 ], [ -80.519192, 41.105358 ], [ -80.518992, 41.115958 ], [ -80.519056, 41.125057 ], [ -80.519012, 41.125057 ], [ -80.519012, 41.125093 ], [ -80.519012, 41.125116 ], [ -80.519167, 41.133343 ], [ -80.519167, 41.133388 ], [ -80.519115, 41.145520 ], [ -80.519144, 41.171203 ], [ -80.518830, 41.209213 ], [ -80.518893, 41.219356 ], [ -80.518893, 41.219357 ], [ -80.518893, 41.232556 ], [ -80.518693, 41.248855 ], [ -80.518893, 41.265155 ], [ -80.518993, 41.268155 ], [ -80.518996, 41.268300 ], [ -80.518794, 41.305509 ], [ -80.519129, 41.312408 ], [ -80.519265, 41.333495 ], [ -80.519281, 41.335958 ], [ -80.519281, 41.337145 ], [ -80.519281, 41.337174 ], [ -80.519311, 41.339052 ], [ -80.519293, 41.339054 ], [ -80.519293, 41.339654 ], [ -80.519345, 41.340145 ], [ -80.519345, 41.340740 ], [ -80.519297, 41.350833 ], [ -80.519249, 41.361030 ], [ -80.519217, 41.372006 ], [ -80.519249, 41.378918 ], [ -80.519025, 41.416438 ], [ -80.518993, 41.416437 ], [ -80.518993, 41.435454 ], [ -80.519169, 41.462581 ], [ -80.519209, 41.489013 ], [ -80.519225, 41.499924 ], [ -80.519157, 41.528769 ], [ -80.519339, 41.539297 ], [ -80.519357, 41.669767 ], [ -80.519424, 41.671228 ], [ -80.519373, 41.701473 ], [ -80.519408, 41.739359 ], [ -80.519369, 41.752487 ], [ -80.519239, 41.765138 ], [ -80.519294, 41.849563 ], [ -80.519345, 41.929168 ], [ -80.519304, 41.943992 ], [ -80.519405, 41.976158 ], [ -80.519425, 41.977522 ], [ -80.519425, 41.977523 ], [ -80.435451, 42.005611 ], [ -80.409776, 42.011578 ], [ -80.373066, 42.024102 ], [ -80.371869, 42.023966 ], [ -80.363251, 42.027973 ], [ -80.349169, 42.030243 ], [ -80.329976, 42.036168 ], [ -80.296758, 42.049076 ], [ -80.230486, 42.077957 ], [ -80.188085, 42.094257 ], [ -80.165884, 42.105857 ], [ -80.154084, 42.114757 ], [ -80.136213, 42.149937 ], [ -80.130430, 42.156331 ], [ -80.117368, 42.166341 ], [ -80.088512, 42.173184 ], [ -80.077388, 42.171262 ], [ -80.073381, 42.168658 ], [ -80.080028, 42.163625 ], [ -80.071981, 42.155357 ], [ -80.078781, 42.151457 ], [ -80.076281, 42.147857 ], [ -80.071980, 42.146057 ], [ -80.061080, 42.144857 ], [ -79.989186, 42.177051 ], [ -79.931324, 42.206737 ], [ -79.923924, 42.207546 ], [ -79.901050, 42.216701 ], [ -79.886187, 42.224933 ], [ -79.867979, 42.230999 ], [ -79.844661, 42.235486 ], [ -79.798447, 42.255939 ], [ -79.761951, 42.269860 ], [ -79.761964, 42.251354 ], [ -79.762152, 42.243054 ], [ -79.761833, 42.183627 ], [ -79.761929, 42.179693 ], [ -79.761921, 42.173319 ], [ -79.761759, 42.162675 ], [ -79.761861, 42.150712 ], [ -79.762122, 42.131246 ], [ -79.761374, 41.999067 ], [ -79.625287, 41.999003 ], [ -79.625301, 41.999068 ], [ -79.610839, 41.998989 ], [ -79.551385, 41.998666 ], [ -79.538445, 41.998527 ], [ -79.061265, 41.999259 ], [ -79.052473, 41.999179 ], [ -78.918854, 41.997961 ], [ -78.874759, 41.997559 ], [ -78.596650, 41.999877 ], [ -78.308128, 41.999415 ], [ -78.206606, 41.999989 ], [ -78.124730, 42.000452 ], [ -78.031177, 41.999415 ], [ -78.030963, 41.999392 ], [ -77.832030, 41.998524 ], [ -77.822799, 41.998547 ], [ -77.749931, 41.998782 ], [ -77.610028, 41.999519 ], [ -77.505308, 42.000070 ], [ -77.124693, 41.999395 ], [ -77.007635, 42.000848 ], [ -77.007536, 42.000819 ], [ -76.965728, 42.001274 ], [ -76.965686, 42.001274 ], [ -76.942585, 42.001574 ], [ -76.937084, 42.001674 ], [ -76.927084, 42.001674 ], [ -76.921884, 42.001674 ], [ -76.920784, 42.001774 ], [ -76.835079, 42.001773 ], [ -76.815878, 42.001673 ], [ -76.558118, 42.000155 ], [ -76.557624, 42.000149 ], [ -76.466540, 41.999025 ], [ -76.462155, 41.998934 ], [ -76.349898, 41.998410 ], [ -76.343722, 41.998346 ], [ -76.145519, 41.998913 ], [ -76.131201, 41.998954 ], [ -76.123696, 41.998954 ], [ -76.105840, 41.998858 ], [ -75.983082, 41.999035 ], [ -75.980250, 41.999035 ], [ -75.483738, 41.999244 ], [ -75.483150, 41.999259 ], [ -75.477144, 41.999407 ], [ -75.436216, 41.999353 ], [ -75.431961, 41.999363 ], [ -75.359579, 41.999445 ], [ -75.341868, 41.993262 ], [ -75.292589, 41.953897 ], [ -75.279094, 41.938917 ], [ -75.263005, 41.885109 ], [ -75.146446, 41.850899 ], [ -75.140241, 41.852078 ], [ -75.114399, 41.843583 ], [ -75.090799, 41.811991 ], [ -75.053431, 41.752538 ], [ -75.048199, 41.632011 ], [ -75.053077, 41.618552 ], [ -75.050074, 41.606893 ], [ -75.040490, 41.569688 ], [ -74.984226, 41.506299 ], [ -74.939760, 41.483371 ], [ -74.912517, 41.475605 ], [ -74.891948, 41.448853 ], [ -74.876721, 41.440338 ], [ -74.799165, 41.430451 ], [ -74.755950, 41.426804 ], [ -74.752562, 41.426518 ], [ -74.691129, 41.367324 ], [ -74.689767, 41.361558 ], [ -74.694914, 41.357423 ], [ -74.761730, 41.336398 ], [ -74.795847, 41.318951 ], [ -74.830057, 41.287200 ], [ -74.838366, 41.277286 ], [ -74.861678, 41.241575 ], [ -74.867267, 41.228861 ], [ -74.864356, 41.224854 ], [ -74.867287, 41.208754 ], [ -74.882139, 41.180836 ], [ -74.923169, 41.138146 ], [ -74.974338, 41.103912 ], [ -74.969434, 41.096074 ], [ -74.967389, 41.094049 ], [ -74.966759, 41.093425 ], [ -74.968389, 41.087797 ], [ -74.980674, 41.078178 ], [ -75.026003, 41.042687 ], [ -75.036982, 41.034702 ], [ -75.051794, 41.027142 ], [ -75.069277, 41.019348 ], [ -75.091377, 41.012283 ], [ -75.109114, 41.004102 ], [ -75.130575, 40.991093 ], [ -75.135526, 40.973807 ], [ -75.131364, 40.969277 ], [ -75.120564, 40.968313 ], [ -75.120435, 40.968302 ], [ -75.120316, 40.962630 ], [ -75.119893, 40.961646 ], [ -75.117764, 40.953023 ], [ -75.052538, 40.872051 ], [ -75.051029, 40.865662 ], [ -75.053294, 40.859900 ], [ -75.108505, 40.791094 ], [ -75.134400, 40.773765 ], [ -75.149378, 40.774786 ], [ -75.163650, 40.778386 ], [ -75.171587, 40.777745 ], [ -75.196533, 40.751631 ], [ -75.203920, 40.691498 ], [ -75.200708, 40.618356 ], [ -75.196803, 40.608580 ], [ -75.190858, 40.591342 ], [ -75.190161, 40.589321 ], [ -75.147368, 40.573152 ], [ -75.135389, 40.575624 ], [ -75.117292, 40.573211 ], [ -75.100325, 40.567811 ], [ -75.068615, 40.542223 ], [ -75.067344, 40.536428 ], [ -75.065090, 40.526148 ], [ -75.065853, 40.519495 ], [ -75.070568, 40.455165 ], [ -75.061489, 40.422848 ], [ -75.058848, 40.418065 ], [ -75.035548, 40.406309 ], [ -75.024775, 40.403455 ], [ -74.937954, 40.340634 ], [ -74.860492, 40.284584 ], [ -74.770706, 40.214908 ], [ -74.758613, 40.201342 ], [ -74.722304, 40.160609 ], [ -74.721604, 40.153810 ], [ -74.724179, 40.147324 ], [ -74.724304, 40.147010 ], [ -74.740605, 40.135210 ], [ -74.838008, 40.100910 ], [ -74.900236, 40.077149 ], [ -74.974290, 40.048872 ], [ -74.974713, 40.048711 ], [ -75.014343, 40.020976 ], [ -75.056039, 39.991795 ], [ -75.072017, 39.980612 ], [ -75.085754, 39.967572 ], [ -75.133220, 39.922512 ], [ -75.153925, 39.906144 ], [ -75.184952, 39.881615 ], [ -75.210425, 39.865913 ], [ -75.210972, 39.865706 ], [ -75.235026, 39.856613 ], [ -75.271159, 39.849440 ], [ -75.306500, 39.849812 ], [ -75.374635, 39.825770 ], [ -75.390169, 39.816549 ], [ -75.415041, 39.801786 ], [ -75.428038, 39.809212 ], [ -75.453740, 39.820312 ], [ -75.498843, 39.833312 ], [ -75.539346, 39.838211 ], [ -75.579849, 39.838526 ], [ -75.579900, 39.838522 ], [ -75.593082, 39.837500 ], [ -75.593666, 39.837455 ], [ -75.594846, 39.837286 ], [ -75.595756, 39.837156 ], [ -75.634706, 39.830164 ], [ -75.641518, 39.828363 ], [ -75.662822, 39.821150 ], [ -75.685991, 39.811054 ], [ -75.716969, 39.791998 ], [ -75.739705, 39.772623 ], [ -75.788359, 39.721811 ], [ -75.799563, 39.721882 ], [ -75.810068, 39.721906 ], [ -76.013067, 39.721920 ], [ -76.027618, 39.721833 ], [ -76.135584, 39.721556 ], [ -76.224191, 39.721328 ], [ -76.233259, 39.721305 ], [ -76.233277, 39.721305 ], [ -76.239805, 39.721305 ], [ -76.380083, 39.721304 ], [ -76.380583, 39.721304 ], [ -76.395583, 39.721204 ], [ -76.418684, 39.721304 ], [ -76.418784, 39.721204 ], [ -76.491887, 39.721304 ], [ -76.517087, 39.721304 ], [ -76.569389, 39.721203 ], [ -76.569475, 39.721203 ], [ -76.711894, 39.721103 ], [ -76.715594, 39.721103 ], [ -76.787096, 39.720802 ], [ -76.787097, 39.720802 ], [ -76.806397, 39.720602 ], [ -76.809197, 39.720702 ], [ -76.890100, 39.720401 ], [ -76.897566, 39.720401 ], [ -76.999465, 39.720128 ], [ -77.047104, 39.720000 ], [ -77.058204, 39.720200 ], [ -77.058904, 39.720100 ], [ -77.216806, 39.719998 ], [ -77.217024, 39.719998 ], [ -77.239807, 39.719998 ], [ -77.243307, 39.719998 ], [ -77.459427, 39.720017 ], [ -77.469145, 39.720018 ], [ -77.533371, 39.720165 ], [ -77.534758, 39.720134 ], [ -77.672249, 39.720778 ], [ -77.674522, 39.720847 ], [ -77.724115, 39.720894 ], [ -77.732615, 39.721094 ], [ -77.743204, 39.721205 ], [ -77.768534, 39.721358 ], [ -78.073736, 39.722314 ], [ -78.075771, 39.722301 ], [ -78.099140, 39.722322 ], [ -78.202895, 39.722416 ], [ -78.204450, 39.722520 ], [ -78.240334, 39.722498 ], [ -78.243103, 39.722481 ], [ -78.268948, 39.722590 ], [ -78.269020, 39.722613 ], [ -78.330715, 39.722689 ], [ -78.337111, 39.722461 ], [ -78.339539, 39.722552 ], [ -78.340498, 39.722514 ], [ -78.342520, 39.722539 ], [ -78.342834, 39.722539 ], [ -78.380599, 39.722554 ], [ -78.808387, 39.722726 ], [ -78.931175, 39.722775 ], [ -78.931176, 39.722775 ], [ -79.392458, 39.721340 ], [ -79.476662, 39.721078 ] ] ] } }\n,\n{ \"type\": \"Feature\", \"properties\": { \"GEO_ID\": \"0400000US47\", \"STATE\": \"47\", \"NAME\": \"Tennessee\", \"LSAD\": \"\", \"CENSUSAREA\": 41234.896000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -83.472108, 36.597284 ], [ -83.276300, 36.598187 ], [ -83.250304, 36.593935 ], [ -83.249899, 36.593898 ], [ -83.248933, 36.593827 ], [ -83.028357, 36.593893 ], [ -83.027250, 36.593847 ], [ -82.985087, 36.593829 ], [ -82.830433, 36.593761 ], [ -82.695780, 36.593698 ], [ -82.679879, 36.593698 ], [ -82.609176, 36.594099 ], [ -82.561074, 36.594800 ], [ -82.559774, 36.594800 ], [ -82.554294, 36.594876 ], [ -82.293814, 36.595565 ], [ -82.243274, 36.595699 ], [ -82.226653, 36.595743 ], [ -82.225716, 36.595744 ], [ -82.223445, 36.595721 ], [ -82.221713, 36.595814 ], [ -82.211005, 36.595860 ], [ -82.210497, 36.595772 ], [ -82.188491, 36.595179 ], [ -82.180740, 36.594928 ], [ -82.177247, 36.594768 ], [ -82.173982, 36.594607 ], [ -82.150727, 36.594673 ], [ -82.148569, 36.594718 ], [ -82.146070, 36.594712 ], [ -81.934144, 36.594213 ], [ -81.922644, 36.616213 ], [ -81.826742, 36.614215 ], [ -81.646900, 36.611918 ], [ -81.677535, 36.588117 ], [ -81.699962, 36.539714 ], [ -81.707963, 36.536209 ], [ -81.700553, 36.515190 ], [ -81.700093, 36.514158 ], [ -81.699601, 36.512883 ], [ -81.699446, 36.511504 ], [ -81.697744, 36.508448 ], [ -81.697829, 36.507544 ], [ -81.697290, 36.504887 ], [ -81.697970, 36.504063 ], [ -81.699923, 36.500865 ], [ -81.700238, 36.500475 ], [ -81.699928, 36.498018 ], [ -81.698265, 36.497221 ], [ -81.697261, 36.496141 ], [ -81.696835, 36.493393 ], [ -81.695907, 36.491580 ], [ -81.697287, 36.484738 ], [ -81.715082, 36.453365 ], [ -81.714277, 36.450978 ], [ -81.720969, 36.387500 ], [ -81.725938, 36.340364 ], [ -81.730976, 36.341187 ], [ -81.747842, 36.337356 ], [ -81.764927, 36.338672 ], [ -81.789712, 36.348324 ], [ -81.793688, 36.360428 ], [ -81.800812, 36.358073 ], [ -81.855005, 36.337259 ], [ -81.908137, 36.302013 ], [ -81.918113, 36.287110 ], [ -81.932994, 36.264881 ], [ -81.960101, 36.228131 ], [ -82.026640, 36.130222 ], [ -82.080143, 36.105720 ], [ -82.080518, 36.105710 ], [ -82.127146, 36.104417 ], [ -82.130646, 36.106417 ], [ -82.137974, 36.119576 ], [ -82.136547, 36.128817 ], [ -82.147948, 36.149516 ], [ -82.211251, 36.159012 ], [ -82.222052, 36.156911 ], [ -82.234807, 36.141720 ], [ -82.235479, 36.140748 ], [ -82.236415, 36.139926 ], [ -82.237737, 36.139189 ], [ -82.325169, 36.119363 ], [ -82.329177, 36.117427 ], [ -82.348422, 36.115929 ], [ -82.360919, 36.110614 ], [ -82.366566, 36.107650 ], [ -82.371383, 36.106388 ], [ -82.375558, 36.105609 ], [ -82.409458, 36.083409 ], [ -82.416857, 36.072885 ], [ -82.462958, 36.007309 ], [ -82.487411, 35.991634 ], [ -82.487451, 35.991557 ], [ -82.505860, 35.978342 ], [ -82.507068, 35.977475 ], [ -82.512598, 35.975664 ], [ -82.557529, 35.954671 ], [ -82.596774, 35.964987 ], [ -82.611262, 35.973155 ], [ -82.615062, 36.000306 ], [ -82.602877, 36.039833 ], [ -82.619205, 36.056556 ], [ -82.632265, 36.065705 ], [ -82.637165, 36.065805 ], [ -82.683565, 36.046104 ], [ -82.715365, 36.024253 ], [ -82.754465, 36.004304 ], [ -82.778625, 35.974792 ], [ -82.830112, 35.932972 ], [ -82.852554, 35.949089 ], [ -82.874159, 35.952698 ], [ -82.898505, 35.945101 ], [ -82.898506, 35.945100 ], [ -82.913338, 35.924113 ], [ -82.897980, 35.881278 ], [ -82.918356, 35.845467 ], [ -82.962842, 35.795126 ], [ -82.964108, 35.794100 ], [ -82.983970, 35.778010 ], [ -82.995803, 35.773128 ], [ -83.100225, 35.774765 ], [ -83.100329, 35.774804 ], [ -83.100233, 35.774745 ], [ -83.164909, 35.759965 ], [ -83.240669, 35.726760 ], [ -83.251247, 35.719916 ], [ -83.255489, 35.714974 ], [ -83.250695, 35.709349 ], [ -83.254231, 35.695807 ], [ -83.297154, 35.657750 ], [ -83.366941, 35.638728 ], [ -83.445802, 35.611803 ], [ -83.479082, 35.583316 ], [ -83.478523, 35.579202 ], [ -83.480617, 35.576633 ], [ -83.485527, 35.568204 ], [ -83.498335, 35.562981 ], [ -83.640498, 35.566075 ], [ -83.662957, 35.569138 ], [ -83.676268, 35.570289 ], [ -83.756917, 35.563604 ], [ -83.880074, 35.518745 ], [ -83.933876, 35.472438 ], [ -83.952676, 35.460763 ], [ -83.952882, 35.460635 ], [ -83.961053, 35.464143 ], [ -83.961056, 35.463738 ], [ -83.961054, 35.462838 ], [ -83.961400, 35.459496 ], [ -83.999906, 35.425201 ], [ -84.002250, 35.422548 ], [ -84.024756, 35.353896 ], [ -84.035343, 35.350833 ], [ -84.037494, 35.349850 ], [ -84.038081, 35.348363 ], [ -84.032450, 35.326530 ], [ -84.032479, 35.325318 ], [ -84.021410, 35.301383 ], [ -84.023510, 35.295783 ], [ -84.029033, 35.291049 ], [ -84.055712, 35.268182 ], [ -84.097508, 35.247382 ], [ -84.115048, 35.249765 ], [ -84.115279, 35.250438 ], [ -84.121150, 35.250644 ], [ -84.124915, 35.249830 ], [ -84.202879, 35.255772 ], [ -84.211818, 35.266078 ], [ -84.223718, 35.269078 ], [ -84.227818, 35.267878 ], [ -84.290240, 35.225572 ], [ -84.292321, 35.206677 ], [ -84.308437, 35.093173 ], [ -84.308576, 35.092761 ], [ -84.321869, 34.988408 ], [ -84.393935, 34.988068 ], [ -84.394903, 34.988030 ], [ -84.509052, 34.988033 ], [ -84.509886, 34.988010 ], [ -84.621483, 34.988329 ], [ -84.727434, 34.988020 ], [ -84.731022, 34.988088 ], [ -84.775852, 34.987800 ], [ -84.808127, 34.987592 ], [ -84.809184, 34.987569 ], [ -84.810477, 34.987607 ], [ -84.810742, 34.987615 ], [ -84.817279, 34.987753 ], [ -84.820478, 34.987913 ], [ -84.824010, 34.987707 ], [ -84.831799, 34.988004 ], [ -84.858032, 34.987746 ], [ -84.861314, 34.987791 ], [ -84.939306, 34.987916 ], [ -84.944420, 34.987864 ], [ -84.955623, 34.987830 ], [ -84.976973, 34.987669 ], [ -84.979860, 34.987647 ], [ -85.045052, 34.986859 ], [ -85.045183, 34.986883 ], [ -85.180553, 34.986075 ], [ -85.185905, 34.985995 ], [ -85.216554, 34.985675 ], [ -85.217854, 34.985675 ], [ -85.220554, 34.985575 ], [ -85.221854, 34.985475 ], [ -85.230354, 34.985475 ], [ -85.235555, 34.985475 ], [ -85.254955, 34.985175 ], [ -85.265055, 34.985075 ], [ -85.275856, 34.984975 ], [ -85.277556, 34.984975 ], [ -85.294500, 34.984651 ], [ -85.301488, 34.984475 ], [ -85.305457, 34.984475 ], [ -85.308257, 34.984375 ], [ -85.363919, 34.983375 ], [ -85.474472, 34.983972 ], [ -85.605165, 34.984678 ], [ -85.824411, 34.988142 ], [ -85.828724, 34.988165 ], [ -85.863935, 34.988379 ], [ -86.311274, 34.991098 ], [ -86.318761, 34.991147 ], [ -86.397203, 34.991660 ], [ -86.433927, 34.991085 ], [ -86.467798, 34.990692 ], [ -86.528485, 34.990677 ], [ -86.555864, 34.990971 ], [ -86.571217, 34.991011 ], [ -86.588962, 34.991197 ], [ -86.600039, 34.991240 ], [ -86.641212, 34.991740 ], [ -86.659610, 34.991792 ], [ -86.670853, 34.992000 ], [ -86.674360, 34.992001 ], [ -86.676726, 34.992070 ], [ -86.677616, 34.992070 ], [ -86.783628, 34.991925 ], [ -86.783648, 34.991925 ], [ -86.820657, 34.991764 ], [ -86.836306, 34.991764 ], [ -86.836370, 34.991764 ], [ -86.846466, 34.991860 ], [ -86.849794, 34.991924 ], [ -86.862147, 34.991956 ], [ -86.967120, 34.994400 ], [ -86.970236, 34.994546 ], [ -86.972613, 34.994610 ], [ -86.974412, 34.994513 ], [ -87.000007, 34.995121 ], [ -87.011174, 34.995162 ], [ -87.210759, 34.999024 ], [ -87.216683, 34.999148 ], [ -87.224053, 34.999327 ], [ -87.230544, 34.999484 ], [ -87.270014, 35.000390 ], [ -87.299185, 35.000915 ], [ -87.349251, 35.001662 ], [ -87.359281, 35.001823 ], [ -87.381071, 35.002118 ], [ -87.391314, 35.002374 ], [ -87.417400, 35.002669 ], [ -87.421543, 35.002679 ], [ -87.428613, 35.002795 ], [ -87.606031, 35.003343 ], [ -87.664123, 35.003523 ], [ -87.671405, 35.003537 ], [ -87.696834, 35.003852 ], [ -87.700543, 35.003988 ], [ -87.702321, 35.003945 ], [ -87.709491, 35.004089 ], [ -87.758890, 35.004711 ], [ -87.767602, 35.004783 ], [ -87.773586, 35.004946 ], [ -87.851886, 35.005656 ], [ -87.853411, 35.005576 ], [ -87.853528, 35.005541 ], [ -87.872626, 35.005571 ], [ -87.877742, 35.005512 ], [ -87.877969, 35.005468 ], [ -87.984916, 35.006256 ], [ -88.182450, 35.007712 ], [ -88.200064, 34.995634 ], [ -88.253825, 34.995553 ], [ -88.258111, 34.995463 ], [ -88.363531, 34.995590 ], [ -88.380508, 34.995610 ], [ -88.469801, 34.996052 ], [ -88.469877, 34.996033 ], [ -88.786612, 34.995252 ], [ -88.823049, 34.995157 ], [ -89.017128, 34.994649 ], [ -89.138997, 34.994330 ], [ -89.139136, 34.994307 ], [ -89.198288, 34.994484 ], [ -89.352679, 34.994420 ], [ -89.493739, 34.994361 ], [ -89.511153, 34.994755 ], [ -89.644282, 34.995293 ], [ -89.724324, 34.994763 ], [ -89.795187, 34.994293 ], [ -89.848488, 34.994193 ], [ -89.883365, 34.994261 ], [ -89.893402, 34.994356 ], [ -90.309297, 34.995694 ], [ -90.309877, 35.009750 ], [ -90.295596, 35.040093 ], [ -90.193859, 35.061646 ], [ -90.174594, 35.116682 ], [ -90.160058, 35.128830 ], [ -90.142794, 35.135091 ], [ -90.109393, 35.118891 ], [ -90.100593, 35.116691 ], [ -90.090610, 35.118287 ], [ -90.083420, 35.121670 ], [ -90.065392, 35.137691 ], [ -90.064612, 35.140621 ], [ -90.073354, 35.211004 ], [ -90.074262, 35.218316 ], [ -90.077410, 35.225479 ], [ -90.097947, 35.249983 ], [ -90.105093, 35.254288 ], [ -90.116493, 35.255788 ], [ -90.140394, 35.252289 ], [ -90.152094, 35.255989 ], [ -90.158865, 35.262577 ], [ -90.166594, 35.274588 ], [ -90.168871, 35.281997 ], [ -90.163812, 35.296115 ], [ -90.158913, 35.300637 ], [ -90.153394, 35.302588 ], [ -90.114893, 35.303887 ], [ -90.086691, 35.369935 ], [ -90.089612, 35.379842 ], [ -90.093589, 35.393333 ], [ -90.135510, 35.376668 ], [ -90.143633, 35.374745 ], [ -90.166246, 35.374745 ], [ -90.178341, 35.382092 ], [ -90.179265, 35.385194 ], [ -90.169002, 35.421853 ], [ -90.152386, 35.436789 ], [ -90.107723, 35.476935 ], [ -90.074420, 35.472518 ], [ -90.072154, 35.470752 ], [ -90.067798, 35.466224 ], [ -90.059068, 35.457889 ], [ -90.047680, 35.459255 ], [ -90.034014, 35.468821 ], [ -90.034976, 35.480705 ], [ -90.039744, 35.548041 ], [ -90.032938, 35.553440 ], [ -90.028620, 35.555249 ], [ -90.017312, 35.555996 ], [ -89.957347, 35.528683 ], [ -89.933572, 35.533299 ], [ -89.909797, 35.537914 ], [ -89.884932, 35.655107 ], [ -89.890510, 35.652408 ], [ -89.906147, 35.651145 ], [ -89.922749, 35.655293 ], [ -89.937383, 35.665711 ], [ -89.955753, 35.690621 ], [ -89.958882, 35.723834 ], [ -89.956254, 35.733386 ], [ -89.950278, 35.738493 ], [ -89.909996, 35.759396 ], [ -89.905538, 35.759063 ], [ -89.889023, 35.750558 ], [ -89.865631, 35.746577 ], [ -89.821216, 35.756716 ], [ -89.703875, 35.820281 ], [ -89.701045, 35.828227 ], [ -89.702883, 35.834153 ], [ -89.709261, 35.838911 ], [ -89.729517, 35.847632 ], [ -89.749424, 35.852955 ], [ -89.769413, 35.861558 ], [ -89.772467, 35.865098 ], [ -89.773564, 35.871697 ], [ -89.771726, 35.879724 ], [ -89.765689, 35.891299 ], [ -89.756036, 35.896817 ], [ -89.733610, 35.904699 ], [ -89.714934, 35.906247 ], [ -89.688141, 35.896946 ], [ -89.687939, 35.905384 ], [ -89.686924, 35.947716 ], [ -89.719970, 35.974620 ], [ -89.733095, 36.000608 ], [ -89.706932, 36.000981 ], [ -89.690306, 36.024835 ], [ -89.687254, 36.034048 ], [ -89.684439, 36.051719 ], [ -89.624235, 36.108626 ], [ -89.601936, 36.119470 ], [ -89.594000, 36.127190 ], [ -89.591605, 36.144096 ], [ -89.594397, 36.155457 ], [ -89.607004, 36.171179 ], [ -89.618228, 36.179966 ], [ -89.629452, 36.185382 ], [ -89.699817, 36.248384 ], [ -89.691308, 36.252079 ], [ -89.678046, 36.248284 ], [ -89.602374, 36.238106 ], [ -89.589561, 36.239116 ], [ -89.541621, 36.247891 ], [ -89.534745, 36.252576 ], [ -89.535529, 36.270541 ], [ -89.539487, 36.277368 ], [ -89.544797, 36.280458 ], [ -89.554289, 36.277751 ], [ -89.578492, 36.288317 ], [ -89.611819, 36.309088 ], [ -89.620255, 36.323006 ], [ -89.619800, 36.329546 ], [ -89.615841, 36.336085 ], [ -89.610689, 36.340442 ], [ -89.605668, 36.342234 ], [ -89.581636, 36.342357 ], [ -89.560439, 36.337746 ], [ -89.545006, 36.336809 ], [ -89.531822, 36.339246 ], [ -89.519000, 36.348600 ], [ -89.513178, 36.359897 ], [ -89.509558, 36.375065 ], [ -89.519501, 36.475419 ], [ -89.522674, 36.481305 ], [ -89.539100, 36.498201 ], [ -89.498036, 36.497887 ], [ -89.492537, 36.497775 ], [ -89.485106, 36.497692 ], [ -89.493495, 36.478700 ], [ -89.493198, 36.470124 ], [ -89.486215, 36.461620 ], [ -89.471718, 36.457001 ], [ -89.460436, 36.458140 ], [ -89.448468, 36.464420 ], [ -89.429311, 36.481875 ], [ -89.417293, 36.499033 ], [ -89.403913, 36.499141 ], [ -89.381792, 36.500062 ], [ -89.380085, 36.500416 ], [ -89.356593, 36.502195 ], [ -89.346056, 36.503210 ], [ -89.346053, 36.503210 ], [ -89.282298, 36.506782 ], [ -89.279091, 36.506511 ], [ -89.211409, 36.505630 ], [ -89.163429, 36.504526 ], [ -89.163224, 36.504522 ], [ -89.119805, 36.503647 ], [ -89.117537, 36.503603 ], [ -89.090146, 36.503392 ], [ -89.072118, 36.503249 ], [ -89.058871, 36.503157 ], [ -89.034649, 36.502964 ], [ -89.010439, 36.502710 ], [ -89.006825, 36.502684 ], [ -89.000063, 36.502633 ], [ -88.964471, 36.502191 ], [ -88.874725, 36.502446 ], [ -88.834866, 36.502911 ], [ -88.834626, 36.502914 ], [ -88.827301, 36.502852 ], [ -88.827012, 36.502850 ], [ -88.816765, 36.502815 ], [ -88.799594, 36.502757 ], [ -88.747523, 36.502834 ], [ -88.715255, 36.502662 ], [ -88.661133, 36.502243 ], [ -88.577283, 36.501940 ], [ -88.545192, 36.501814 ], [ -88.516427, 36.501430 ], [ -88.516346, 36.501431 ], [ -88.512270, 36.501506 ], [ -88.511920, 36.501457 ], [ -88.489210, 36.501068 ], [ -88.489075, 36.501068 ], [ -88.472564, 36.501028 ], [ -88.452543, 36.500872 ], [ -88.450161, 36.501101 ], [ -88.416360, 36.500756 ], [ -88.330799, 36.500531 ], [ -88.325895, 36.500483 ], [ -88.320794, 36.500432 ], [ -88.053292, 36.497130 ], [ -88.053205, 36.497129 ], [ -88.039481, 36.510408 ], [ -88.037822, 36.513850 ], [ -88.032489, 36.540662 ], [ -88.035625, 36.561736 ], [ -88.045127, 36.602939 ], [ -88.055604, 36.635710 ], [ -88.068208, 36.659747 ], [ -88.070532, 36.678118 ], [ -88.011792, 36.677025 ], [ -87.849567, 36.663701 ], [ -87.853204, 36.633247 ], [ -87.694186, 36.636838 ], [ -87.641150, 36.638036 ], [ -87.641146, 36.638036 ], [ -87.564928, 36.639113 ], [ -87.563052, 36.639113 ], [ -87.436509, 36.640747 ], [ -87.425009, 36.641047 ], [ -87.414309, 36.641047 ], [ -87.347796, 36.641440 ], [ -87.344131, 36.641510 ], [ -87.335980, 36.641543 ], [ -87.281506, 36.641761 ], [ -87.278398, 36.641718 ], [ -87.247655, 36.641841 ], [ -87.231037, 36.641888 ], [ -87.230530, 36.641895 ], [ -87.114983, 36.642414 ], [ -87.114976, 36.642414 ], [ -87.060843, 36.643412 ], [ -86.906583, 36.646255 ], [ -86.906023, 36.646302 ], [ -86.854268, 36.646884 ], [ -86.833155, 36.647210 ], [ -86.818405, 36.647639 ], [ -86.816186, 36.647722 ], [ -86.813037, 36.647647 ], [ -86.763295, 36.648907 ], [ -86.758920, 36.649018 ], [ -86.606394, 36.652107 ], [ -86.605042, 36.652125 ], [ -86.564252, 36.633522 ], [ -86.564143, 36.633472 ], [ -86.473497, 36.651671 ], [ -86.473413, 36.651676 ], [ -86.472190, 36.651763 ], [ -86.468497, 36.651841 ], [ -86.411387, 36.650550 ], [ -86.333051, 36.648778 ], [ -86.222151, 36.640891 ], [ -86.219081, 36.640824 ], [ -86.216410, 36.640595 ], [ -86.216183, 36.640527 ], [ -86.205468, 36.639783 ], [ -86.204859, 36.639741 ], [ -86.197573, 36.639363 ], [ -86.081944, 36.633848 ], [ -86.080666, 36.633940 ], [ -86.038366, 36.630804 ], [ -86.033139, 36.630413 ], [ -86.032770, 36.630367 ], [ -85.976421, 36.628400 ], [ -85.788645, 36.621846 ], [ -85.788613, 36.621845 ], [ -85.552017, 36.615782 ], [ -85.551483, 36.615727 ], [ -85.508605, 36.615020 ], [ -85.471338, 36.616380 ], [ -85.436418, 36.618194 ], [ -85.295990, 36.625488 ], [ -85.276289, 36.626511 ], [ -85.276284, 36.626511 ], [ -85.096128, 36.622483 ], [ -85.086415, 36.621913 ], [ -84.974888, 36.614327 ], [ -84.859738, 36.606495 ], [ -84.859759, 36.606428 ], [ -84.785399, 36.603374 ], [ -84.785341, 36.603372 ], [ -84.778455, 36.603222 ], [ -84.261333, 36.591981 ], [ -84.227295, 36.591685 ], [ -83.987842, 36.589600 ], [ -83.987612, 36.589595 ], [ -83.930669, 36.588249 ], [ -83.690714, 36.582581 ], [ -83.677114, 36.596582 ], [ -83.675413, 36.600814 ], [ -83.670141, 36.600797 ], [ -83.670128, 36.600764 ], [ -83.472108, 36.597284 ] ] ] } }\n,\n{ \"type\": \"Feature\", \"properties\": { \"GEO_ID\": \"0400000US51\", \"STATE\": \"51\", \"NAME\": \"Virginia\", \"LSAD\": \"\", \"CENSUSAREA\": 39490.086000 }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [ [ [ [ -75.242266, 38.027209 ], [ -75.296871, 37.959043 ], [ -75.319335, 37.922484 ], [ -75.334296, 37.893477 ], [ -75.349338, 37.873143 ], [ -75.359036, 37.864143 ], [ -75.366830, 37.859446 ], [ -75.374642, 37.859454 ], [ -75.392008, 37.867738 ], [ -75.400540, 37.874865 ], [ -75.428956, 37.875305 ], [ -75.437868, 37.872324 ], [ -75.452681, 37.863510 ], [ -75.467951, 37.851328 ], [ -75.487485, 37.832136 ], [ -75.514921, 37.799149 ], [ -75.548082, 37.742383 ], [ -75.556868, 37.724410 ], [ -75.572464, 37.701565 ], [ -75.581333, 37.683593 ], [ -75.586136, 37.660653 ], [ -75.603220, 37.620243 ], [ -75.610808, 37.605909 ], [ -75.612237, 37.585602 ], [ -75.608123, 37.578018 ], [ -75.595716, 37.576657 ], [ -75.594044, 37.569698 ], [ -75.606720, 37.557170 ], [ -75.633370, 37.522140 ], [ -75.666178, 37.472124 ], [ -75.665500, 37.467319 ], [ -75.664311, 37.458901 ], [ -75.661790, 37.455028 ], [ -75.665957, 37.439209 ], [ -75.672648, 37.429915 ], [ -75.697914, 37.405301 ], [ -75.720739, 37.373129 ], [ -75.727335, 37.360346 ], [ -75.725634, 37.358416 ], [ -75.726691, 37.350127 ], [ -75.735829, 37.335426 ], [ -75.765401, 37.305596 ], [ -75.778817, 37.297176 ], [ -75.780766, 37.297222 ], [ -75.784634, 37.300976 ], [ -75.791913, 37.300589 ], [ -75.798448, 37.296285 ], [ -75.790830, 37.276207 ], [ -75.799343, 37.251779 ], [ -75.795881, 37.236922 ], [ -75.790386, 37.231225 ], [ -75.789929, 37.228134 ], [ -75.790903, 37.225066 ], [ -75.804446, 37.208011 ], [ -75.800468, 37.201029 ], [ -75.800755, 37.197297 ], [ -75.830341, 37.170600 ], [ -75.877670, 37.135604 ], [ -75.886369, 37.126085 ], [ -75.897298, 37.118037 ], [ -75.906734, 37.114193 ], [ -75.912308, 37.115154 ], [ -75.913222, 37.119849 ], [ -75.925520, 37.133601 ], [ -75.942539, 37.125142 ], [ -75.945872, 37.120514 ], [ -75.962596, 37.117535 ], [ -75.970430, 37.118608 ], [ -75.970004, 37.128861 ], [ -75.978083, 37.157338 ], [ -75.998647, 37.188739 ], [ -76.006094, 37.194810 ], [ -76.013071, 37.205366 ], [ -76.013778, 37.219263 ], [ -76.010535, 37.231579 ], [ -76.014026, 37.235381 ], [ -76.025753, 37.257407 ], [ -76.023664, 37.268971 ], [ -76.015507, 37.280874 ], [ -76.023475, 37.289067 ], [ -76.018645, 37.317820 ], [ -76.014251, 37.331943 ], [ -75.997778, 37.351739 ], [ -75.987122, 37.368548 ], [ -75.979970, 37.404608 ], [ -75.983105, 37.415802 ], [ -75.981624, 37.434116 ], [ -75.976491, 37.444878 ], [ -75.960877, 37.467562 ], [ -75.963496, 37.475352 ], [ -75.963326, 37.481785 ], [ -75.958966, 37.500133 ], [ -75.949974, 37.521876 ], [ -75.940318, 37.534582 ], [ -75.937665, 37.549652 ], [ -75.937299, 37.551729 ], [ -75.941153, 37.558436 ], [ -75.941182, 37.563839 ], [ -75.924756, 37.600215 ], [ -75.909586, 37.622671 ], [ -75.877059, 37.660641 ], [ -75.868481, 37.668224 ], [ -75.869523, 37.674356 ], [ -75.868355, 37.687609 ], [ -75.859262, 37.703111 ], [ -75.845579, 37.707993 ], [ -75.837685, 37.712985 ], [ -75.830773, 37.725486 ], [ -75.831438, 37.731690 ], [ -75.827922, 37.737986 ], [ -75.824810, 37.741671 ], [ -75.812155, 37.749502 ], [ -75.803041, 37.762464 ], [ -75.812125, 37.776589 ], [ -75.818125, 37.791698 ], [ -75.793399, 37.804493 ], [ -75.784599, 37.806826 ], [ -75.770607, 37.804602 ], [ -75.743097, 37.806656 ], [ -75.735880, 37.816561 ], [ -75.723224, 37.820124 ], [ -75.716590, 37.826696 ], [ -75.714487, 37.837777 ], [ -75.709114, 37.847700 ], [ -75.702914, 37.849659 ], [ -75.689837, 37.861817 ], [ -75.685293, 37.873341 ], [ -75.687584, 37.886340 ], [ -75.709626, 37.900622 ], [ -75.720490, 37.901926 ], [ -75.724505, 37.900184 ], [ -75.726699, 37.897299 ], [ -75.753048, 37.896605 ], [ -75.758796, 37.897615 ], [ -75.759835, 37.899333 ], [ -75.757694, 37.903912 ], [ -75.712065, 37.936082 ], [ -75.704318, 37.929010 ], [ -75.693942, 37.930362 ], [ -75.669711, 37.950796 ], [ -75.660956, 37.959174 ], [ -75.646507, 37.973000 ], [ -75.646289, 37.973209 ], [ -75.645251, 37.974202 ], [ -75.645096, 37.974350 ], [ -75.644665, 37.974763 ], [ -75.644591, 37.974833 ], [ -75.644545, 37.974877 ], [ -75.639786, 37.979432 ], [ -75.635502, 37.983531 ], [ -75.630222, 37.988584 ], [ -75.626129, 37.992500 ], [ -75.624341, 37.994211 ], [ -75.435956, 38.010282 ], [ -75.428810, 38.010854 ], [ -75.398839, 38.013277 ], [ -75.377851, 38.015145 ], [ -75.263779, 38.025295 ], [ -75.262088, 38.025445 ], [ -75.260635, 38.025574 ], [ -75.256076, 38.025980 ], [ -75.250358, 38.026489 ], [ -75.242296, 38.027206 ], [ -75.242266, 38.027209 ] ] ], [ [ [ -75.973607, 37.835817 ], [ -75.971705, 37.830928 ], [ -75.977301, 37.825821 ], [ -75.982158, 37.806226 ], [ -75.987301, 37.804917 ], [ -75.998300, 37.812626 ], [ -76.001116, 37.834947 ], [ -75.999658, 37.848198 ], [ -75.996859, 37.850420 ], [ -75.992556, 37.848889 ], [ -75.988018, 37.841085 ], [ -75.982098, 37.837253 ], [ -75.973607, 37.835817 ] ] ], [ [ [ -75.994739, 37.953501 ], [ -75.993905, 37.953489 ], [ -76.003130, 37.947997 ], [ -76.017592, 37.935161 ], [ -76.032491, 37.915008 ], [ -76.035802, 37.929008 ], [ -76.046530, 37.953586 ], [ -76.045561, 37.953669 ], [ -76.041691, 37.954000 ], [ -76.041402, 37.954006 ], [ -76.038026, 37.953901 ], [ -76.030122, 37.953655 ], [ -76.029463, 37.953775 ], [ -76.029405, 37.953776 ], [ -76.022325, 37.953878 ], [ -76.021714, 37.953887 ], [ -76.020932, 37.953879 ], [ -76.020796, 37.953877 ], [ -76.017686, 37.953832 ], [ -76.005888, 37.953662 ], [ -75.994739, 37.953501 ] ] ], [ [ [ -78.869276, 38.762991 ], [ -78.835191, 38.811499 ], [ -78.808181, 38.856175 ], [ -78.788031, 38.885123 ], [ -78.779198, 38.892298 ], [ -78.757278, 38.903203 ], [ -78.719806, 38.922638 ], [ -78.719755, 38.922135 ], [ -78.716956, 38.916273 ], [ -78.714135, 38.911176 ], [ -78.710949, 38.910175 ], [ -78.601655, 38.964603 ], [ -78.557647, 39.013189 ], [ -78.554222, 39.019672 ], [ -78.565837, 39.026303 ], [ -78.571901, 39.031995 ], [ -78.544111, 39.056676 ], [ -78.508132, 39.088630 ], [ -78.459869, 39.113351 ], [ -78.439429, 39.132146 ], [ -78.418377, 39.156656 ], [ -78.410740, 39.171983 ], [ -78.426722, 39.188903 ], [ -78.438651, 39.198049 ], [ -78.437053, 39.199766 ], [ -78.432130, 39.204717 ], [ -78.431167, 39.205744 ], [ -78.429803, 39.207014 ], [ -78.427911, 39.208611 ], [ -78.423968, 39.212049 ], [ -78.399669, 39.243874 ], [ -78.399785, 39.244129 ], [ -78.360035, 39.317771 ], [ -78.358940, 39.319484 ], [ -78.340480, 39.353492 ], [ -78.362267, 39.357784 ], [ -78.347087, 39.466012 ], [ -78.228766, 39.391233 ], [ -78.033185, 39.264626 ], [ -78.033183, 39.264624 ], [ -78.032841, 39.264403 ], [ -77.828157, 39.132329 ], [ -77.822182, 39.139985 ], [ -77.771415, 39.236776 ], [ -77.767277, 39.249380 ], [ -77.768992, 39.256417 ], [ -77.768000, 39.257657 ], [ -77.761768, 39.263031 ], [ -77.761217, 39.263721 ], [ -77.758733, 39.268114 ], [ -77.758412, 39.269197 ], [ -77.755698, 39.274575 ], [ -77.755193, 39.275191 ], [ -77.753105, 39.277340 ], [ -77.753060, 39.277971 ], [ -77.753357, 39.280331 ], [ -77.750267, 39.289284 ], [ -77.719029, 39.321125 ], [ -77.677505, 39.318699 ], [ -77.667749, 39.318129 ], [ -77.592739, 39.301290 ], [ -77.560854, 39.286152 ], [ -77.545846, 39.271535 ], [ -77.543228, 39.266937 ], [ -77.534461, 39.262361 ], [ -77.511222, 39.253500 ], [ -77.484605, 39.245941 ], [ -77.460210, 39.228359 ], [ -77.457680, 39.225020 ], [ -77.458779, 39.220280 ], [ -77.458884, 39.219826 ], [ -77.478596, 39.189168 ], [ -77.485971, 39.185665 ], [ -77.505162, 39.182050 ], [ -77.510631, 39.178484 ], [ -77.516426, 39.170891 ], [ -77.527282, 39.146236 ], [ -77.524559, 39.127821 ], [ -77.519929, 39.120925 ], [ -77.458202, 39.073723 ], [ -77.423180, 39.066878 ], [ -77.375079, 39.061297 ], [ -77.340287, 39.062991 ], [ -77.328002, 39.058554 ], [ -77.291605, 39.045408 ], [ -77.261403, 39.031009 ], [ -77.251803, 39.011409 ], [ -77.255703, 39.002409 ], [ -77.249803, 38.985909 ], [ -77.235403, 38.976610 ], [ -77.221502, 38.971310 ], [ -77.197502, 38.966810 ], [ -77.166901, 38.968110 ], [ -77.148179, 38.965002 ], [ -77.137701, 38.955310 ], [ -77.119900, 38.934311 ], [ -77.119863, 38.934265 ], [ -77.101200, 38.911111 ], [ -77.090200, 38.904211 ], [ -77.068199, 38.899811 ], [ -77.040599, 38.871212 ], [ -77.031698, 38.850512 ], [ -77.032986, 38.839500 ], [ -77.038598, 38.791513 ], [ -77.039239, 38.785200 ], [ -77.041398, 38.763914 ], [ -77.059910, 38.734419 ], [ -77.074599, 38.711015 ], [ -77.086113, 38.705792 ], [ -77.105900, 38.696815 ], [ -77.121101, 38.686616 ], [ -77.132501, 38.673816 ], [ -77.135901, 38.649817 ], [ -77.130200, 38.635017 ], [ -77.157501, 38.636417 ], [ -77.174902, 38.624217 ], [ -77.202002, 38.617217 ], [ -77.204302, 38.617817 ], [ -77.205103, 38.623917 ], [ -77.216303, 38.637817 ], [ -77.222350, 38.638091 ], [ -77.240604, 38.638917 ], [ -77.246704, 38.635217 ], [ -77.248904, 38.628617 ], [ -77.245104, 38.620717 ], [ -77.246441, 38.599532 ], [ -77.247003, 38.590618 ], [ -77.264430, 38.582845 ], [ -77.265304, 38.580319 ], [ -77.260830, 38.565330 ], [ -77.276603, 38.547120 ], [ -77.276303, 38.539620 ], [ -77.283503, 38.525221 ], [ -77.291103, 38.515721 ], [ -77.295820, 38.511457 ], [ -77.298844, 38.508724 ], [ -77.300776, 38.506978 ], [ -77.302457, 38.504683 ], [ -77.310334, 38.493926 ], [ -77.322622, 38.467131 ], [ -77.325440, 38.448850 ], [ -77.319036, 38.417803 ], [ -77.310719, 38.397669 ], [ -77.312201, 38.390958 ], [ -77.314848, 38.389579 ], [ -77.317288, 38.383576 ], [ -77.296077, 38.369797 ], [ -77.288145, 38.359477 ], [ -77.288350, 38.351286 ], [ -77.286202, 38.347025 ], [ -77.286202, 38.347024 ], [ -77.279633, 38.339444 ], [ -77.265295, 38.333165 ], [ -77.240072, 38.331598 ], [ -77.199433, 38.340890 ], [ -77.179340, 38.341915 ], [ -77.162692, 38.345994 ], [ -77.155191, 38.351047 ], [ -77.138224, 38.367917 ], [ -77.104717, 38.369655 ], [ -77.094665, 38.367715 ], [ -77.084810, 38.368297 ], [ -77.069956, 38.377895 ], [ -77.056032, 38.396200 ], [ -77.051437, 38.399083 ], [ -77.043526, 38.400548 ], [ -77.024866, 38.386791 ], [ -77.011827, 38.374554 ], [ -77.016932, 38.341697 ], [ -77.020947, 38.329273 ], [ -77.030683, 38.311623 ], [ -77.026304, 38.302685 ], [ -76.997670, 38.278047 ], [ -76.990255, 38.273935 ], [ -76.981372, 38.274214 ], [ -76.962150, 38.256486 ], [ -76.957796, 38.243183 ], [ -76.957417, 38.236341 ], [ -76.962375, 38.230093 ], [ -76.966553, 38.229542 ], [ -76.967335, 38.227185 ], [ -76.962311, 38.214075 ], [ -76.937134, 38.202384 ], [ -76.916922, 38.199751 ], [ -76.910832, 38.197073 ], [ -76.875272, 38.172207 ], [ -76.838795, 38.163476 ], [ -76.824274, 38.163639 ], [ -76.802968, 38.167988 ], [ -76.788445, 38.169199 ], [ -76.760241, 38.166581 ], [ -76.749685, 38.162114 ], [ -76.743064, 38.156988 ], [ -76.740278, 38.152824 ], [ -76.738938, 38.146510 ], [ -76.721722, 38.137635 ], [ -76.704048, 38.149264 ], [ -76.701297, 38.155718 ], [ -76.684892, 38.156497 ], [ -76.665127, 38.147638 ], [ -76.643448, 38.148250 ], [ -76.638983, 38.151476 ], [ -76.629476, 38.153050 ], [ -76.613939, 38.148587 ], [ -76.604131, 38.128771 ], [ -76.600937, 38.110084 ], [ -76.579497, 38.094870 ], [ -76.543155, 38.076971 ], [ -76.535919, 38.069532 ], [ -76.522354, 38.042590 ], [ -76.519536, 38.034814 ], [ -76.516547, 38.026566 ], [ -76.491998, 38.017222 ], [ -76.469343, 38.013544 ], [ -76.465291, 38.010226 ], [ -76.462542, 37.998572 ], [ -76.427487, 37.977038 ], [ -76.416299, 37.966828 ], [ -76.391439, 37.958742 ], [ -76.360211, 37.952329 ], [ -76.343848, 37.947345 ], [ -76.265998, 37.911380 ], [ -76.236725, 37.889174 ], [ -76.245072, 37.861918 ], [ -76.251358, 37.833072 ], [ -76.266057, 37.817400 ], [ -76.275178, 37.812664 ], [ -76.280544, 37.812597 ], [ -76.282592, 37.814109 ], [ -76.281985, 37.818068 ], [ -76.284904, 37.822308 ], [ -76.293525, 37.822717 ], [ -76.307482, 37.812350 ], [ -76.310307, 37.794849 ], [ -76.306489, 37.788646 ], [ -76.312108, 37.750522 ], [ -76.304917, 37.729913 ], [ -76.312858, 37.720338 ], [ -76.302803, 37.704474 ], [ -76.300067, 37.695364 ], [ -76.302545, 37.689000 ], [ -76.312079, 37.684651 ], [ -76.315161, 37.684720 ], [ -76.320216, 37.680666 ], [ -76.324808, 37.676983 ], [ -76.339892, 37.655966 ], [ -76.332562, 37.645817 ], [ -76.306464, 37.642005 ], [ -76.292534, 37.636098 ], [ -76.287959, 37.631771 ], [ -76.279447, 37.618225 ], [ -76.280370, 37.613715 ], [ -76.309174, 37.621892 ], [ -76.362320, 37.610368 ], [ -76.381106, 37.627003 ], [ -76.390054, 37.630326 ], [ -76.399236, 37.628636 ], [ -76.443254, 37.652347 ], [ -76.472392, 37.665772 ], [ -76.489576, 37.666201 ], [ -76.491799, 37.663614 ], [ -76.497564, 37.647056 ], [ -76.501522, 37.643762 ], [ -76.510187, 37.642324 ], [ -76.536548, 37.663574 ], [ -76.537698, 37.668930 ], [ -76.535302, 37.687516 ], [ -76.537228, 37.698892 ], [ -76.540050, 37.704432 ], [ -76.560476, 37.727827 ], [ -76.576387, 37.757493 ], [ -76.584289, 37.768890 ], [ -76.593835, 37.772848 ], [ -76.595939, 37.771680 ], [ -76.602024, 37.772731 ], [ -76.615351, 37.780759 ], [ -76.642276, 37.792317 ], [ -76.651413, 37.796239 ], [ -76.658302, 37.806815 ], [ -76.680197, 37.825654 ], [ -76.692747, 37.822770 ], [ -76.701606, 37.822677 ], [ -76.722156, 37.836680 ], [ -76.727180, 37.842263 ], [ -76.733046, 37.852009 ], [ -76.738395, 37.865373 ], [ -76.747552, 37.875864 ], [ -76.765711, 37.879274 ], [ -76.775390, 37.874306 ], [ -76.784618, 37.869569 ], [ -76.782826, 37.863184 ], [ -76.766328, 37.840437 ], [ -76.751200, 37.824141 ], [ -76.734309, 37.798660 ], [ -76.723863, 37.788503 ], [ -76.715498, 37.785873 ], [ -76.689773, 37.785190 ], [ -76.683775, 37.781391 ], [ -76.681901, 37.778118 ], [ -76.683343, 37.775783 ], [ -76.683359, 37.770258 ], [ -76.683372, 37.765507 ], [ -76.680922, 37.759647 ], [ -76.677002, 37.756100 ], [ -76.663887, 37.751887 ], [ -76.639962, 37.750941 ], [ -76.619710, 37.744795 ], [ -76.617373, 37.742347 ], [ -76.621433, 37.737973 ], [ -76.619970, 37.731271 ], [ -76.606466, 37.724819 ], [ -76.597213, 37.717269 ], [ -76.595943, 37.712989 ], [ -76.598073, 37.709120 ], [ -76.597868, 37.702918 ], [ -76.579591, 37.671508 ], [ -76.583143, 37.661986 ], [ -76.574049, 37.646781 ], [ -76.542666, 37.616857 ], [ -76.533777, 37.612530 ], [ -76.527188, 37.611315 ], [ -76.435474, 37.612807 ], [ -76.420252, 37.598686 ], [ -76.410781, 37.581815 ], [ -76.383188, 37.573056 ], [ -76.357835, 37.573699 ], [ -76.332641, 37.570042 ], [ -76.300144, 37.561734 ], [ -76.297960, 37.557636 ], [ -76.302762, 37.551295 ], [ -76.330598, 37.536391 ], [ -76.339989, 37.538330 ], [ -76.348992, 37.536548 ], [ -76.355084, 37.527364 ], [ -76.360474, 37.519240 ], [ -76.359378, 37.513426 ], [ -76.352678, 37.504913 ], [ -76.329470, 37.494920 ], [ -76.306952, 37.497488 ], [ -76.297739, 37.506863 ], [ -76.296445, 37.511235 ], [ -76.298456, 37.512677 ], [ -76.297651, 37.515424 ], [ -76.293599, 37.516499 ], [ -76.288167, 37.514118 ], [ -76.281043, 37.507821 ], [ -76.265056, 37.481365 ], [ -76.252415, 37.447274 ], [ -76.250454, 37.421886 ], [ -76.246617, 37.404122 ], [ -76.245283, 37.386839 ], [ -76.248460, 37.375135 ], [ -76.258277, 37.362020 ], [ -76.262407, 37.360786 ], [ -76.264847, 37.357399 ], [ -76.272888, 37.335174 ], [ -76.272005, 37.322194 ], [ -76.275552, 37.309964 ], [ -76.282555, 37.319107 ], [ -76.291324, 37.324145 ], [ -76.308581, 37.329366 ], [ -76.312050, 37.338088 ], [ -76.337476, 37.364014 ], [ -76.366751, 37.374495 ], [ -76.387112, 37.385061 ], [ -76.391437, 37.390284 ], [ -76.393958, 37.395940 ], [ -76.393125, 37.398068 ], [ -76.404756, 37.400213 ], [ -76.415167, 37.402133 ], [ -76.418719, 37.397800 ], [ -76.418176, 37.385064 ], [ -76.422503, 37.381355 ], [ -76.437525, 37.379750 ], [ -76.445333, 37.366460 ], [ -76.434965, 37.354524 ], [ -76.406388, 37.332924 ], [ -76.387770, 37.307670 ], [ -76.385603, 37.294108 ], [ -76.381075, 37.285340 ], [ -76.369029, 37.279311 ], [ -76.352556, 37.278334 ], [ -76.349489, 37.273963 ], [ -76.362290, 37.270226 ], [ -76.392788, 37.264973 ], [ -76.417173, 37.263950 ], [ -76.421765, 37.255198 ], [ -76.429141, 37.253310 ], [ -76.475927, 37.250543 ], [ -76.482840, 37.254831 ], [ -76.493302, 37.249470 ], [ -76.498900, 37.241015 ], [ -76.503640, 37.233856 ], [ -76.494008, 37.225408 ], [ -76.471799, 37.216016 ], [ -76.394132, 37.225150 ], [ -76.389793, 37.222981 ], [ -76.393600, 37.214049 ], [ -76.396052, 37.201087 ], [ -76.389284, 37.193503 ], [ -76.391252, 37.179887 ], [ -76.397883, 37.164415 ], [ -76.399659, 37.160272 ], [ -76.394756, 37.157568 ], [ -76.381379, 37.155711 ], [ -76.375255, 37.160840 ], [ -76.359690, 37.168580 ], [ -76.348658, 37.170655 ], [ -76.343234, 37.166207 ], [ -76.344898, 37.164479 ], [ -76.344050, 37.160367 ], [ -76.340129, 37.151823 ], [ -76.334017, 37.144223 ], [ -76.330481, 37.141727 ], [ -76.324353, 37.142895 ], [ -76.311088, 37.138495 ], [ -76.292344, 37.126615 ], [ -76.287236, 37.117453 ], [ -76.274463, 37.094544 ], [ -76.271262, 37.084544 ], [ -76.292863, 37.035145 ], [ -76.300352, 37.008850 ], [ -76.304272, 37.001378 ], [ -76.312048, 37.000371 ], [ -76.315008, 37.001683 ], [ -76.314624, 37.009330 ], [ -76.318065, 37.013846 ], [ -76.329531, 37.014556 ], [ -76.340110, 37.015212 ], [ -76.340666, 37.015246 ], [ -76.348066, 37.006747 ], [ -76.356366, 37.002947 ], [ -76.373567, 36.998347 ], [ -76.383367, 36.993347 ], [ -76.387711, 36.989671 ], [ -76.396368, 36.982347 ], [ -76.408568, 36.969147 ], [ -76.411768, 36.962847 ], [ -76.418969, 36.964047 ], [ -76.428869, 36.969947 ], [ -76.452118, 36.998163 ], [ -76.452461, 37.004603 ], [ -76.449891, 37.004868 ], [ -76.448231, 37.007705 ], [ -76.464471, 37.027547 ], [ -76.469490, 37.030414 ], [ -76.507614, 37.052188 ], [ -76.509339, 37.053173 ], [ -76.512289, 37.054858 ], [ -76.518242, 37.055351 ], [ -76.526273, 37.062947 ], [ -76.527973, 37.068247 ], [ -76.526573, 37.070047 ], [ -76.526203, 37.077773 ], [ -76.528997, 37.079388 ], [ -76.536875, 37.083942 ], [ -76.555066, 37.075859 ], [ -76.564219, 37.077507 ], [ -76.567931, 37.080467 ], [ -76.579499, 37.096627 ], [ -76.618252, 37.119347 ], [ -76.624780, 37.127091 ], [ -76.622252, 37.142146 ], [ -76.617084, 37.144498 ], [ -76.604476, 37.160034 ], [ -76.606684, 37.166674 ], [ -76.610972, 37.166994 ], [ -76.611018, 37.167097 ], [ -76.612517, 37.170486 ], [ -76.613599, 37.172931 ], [ -76.614221, 37.174335 ], [ -76.616268, 37.178962 ], [ -76.616804, 37.181260 ], [ -76.617537, 37.184409 ], [ -76.618008, 37.186429 ], [ -76.619340, 37.192146 ], [ -76.619962, 37.193184 ], [ -76.621113, 37.195103 ], [ -76.623292, 37.198738 ], [ -76.629868, 37.206738 ], [ -76.639608, 37.214783 ], [ -76.641085, 37.216002 ], [ -76.649869, 37.220914 ], [ -76.689166, 37.222866 ], [ -76.693373, 37.221228 ], [ -76.698943, 37.219059 ], [ -76.730951, 37.213813 ], [ -76.734320, 37.204211 ], [ -76.740000, 37.195379 ], [ -76.743040, 37.192611 ], [ -76.750470, 37.190098 ], [ -76.757765, 37.191658 ], [ -76.773752, 37.206061 ], [ -76.780532, 37.209336 ], [ -76.791555, 37.207564 ], [ -76.801023, 37.206043 ], [ -76.803198, 37.201513 ], [ -76.802511, 37.198308 ], [ -76.796905, 37.189404 ], [ -76.756899, 37.161582 ], [ -76.747632, 37.150548 ], [ -76.737280, 37.146164 ], [ -76.730320, 37.145395 ], [ -76.715295, 37.148035 ], [ -76.696735, 37.174403 ], [ -76.692926, 37.186147 ], [ -76.691918, 37.195731 ], [ -76.685614, 37.198851 ], [ -76.669886, 37.183571 ], [ -76.663774, 37.173875 ], [ -76.664270, 37.171027 ], [ -76.668670, 37.166771 ], [ -76.671470, 37.158739 ], [ -76.671588, 37.142060 ], [ -76.669604, 37.140534 ], [ -76.666542, 37.138179 ], [ -76.665833, 37.136098 ], [ -76.665641, 37.135534 ], [ -76.663750, 37.129979 ], [ -76.656894, 37.109843 ], [ -76.657101, 37.107617 ], [ -76.657703, 37.101161 ], [ -76.658110, 37.096787 ], [ -76.659394, 37.094019 ], [ -76.665550, 37.080746 ], [ -76.666526, 37.078643 ], [ -76.667219, 37.077149 ], [ -76.667646, 37.076228 ], [ -76.668295, 37.072656 ], [ -76.669118, 37.068132 ], [ -76.669822, 37.064260 ], [ -76.668350, 37.055060 ], [ -76.662558, 37.045748 ], [ -76.653998, 37.039172 ], [ -76.646013, 37.036228 ], [ -76.612124, 37.035604 ], [ -76.586491, 37.028740 ], [ -76.584478, 37.027349 ], [ -76.579393, 37.023835 ], [ -76.579236, 37.023726 ], [ -76.578160, 37.022982 ], [ -76.577531, 37.022548 ], [ -76.576617, 37.021374 ], [ -76.565803, 37.007493 ], [ -76.562923, 37.003796 ], [ -76.551246, 36.998946 ], [ -76.524853, 36.983833 ], [ -76.522971, 36.981085 ], [ -76.524142, 36.978316 ], [ -76.521006, 36.973187 ], [ -76.513363, 36.968057 ], [ -76.500355, 36.965212 ], [ -76.487559, 36.952372 ], [ -76.484107, 36.928916 ], [ -76.482407, 36.917364 ], [ -76.482135, 36.901108 ], [ -76.483369, 36.896239 ], [ -76.469914, 36.882898 ], [ -76.454692, 36.884077 ], [ -76.453290, 36.887031 ], [ -76.453941, 36.892740 ], [ -76.447413, 36.903220 ], [ -76.441605, 36.906116 ], [ -76.431220, 36.904532 ], [ -76.407507, 36.897444 ], [ -76.406908, 36.897507 ], [ -76.387567, 36.899547 ], [ -76.385867, 36.923247 ], [ -76.353765, 36.922747 ], [ -76.345569, 36.924531 ], [ -76.344663, 36.919313 ], [ -76.333158, 36.917293 ], [ -76.328864, 36.918447 ], [ -76.330765, 36.938647 ], [ -76.327365, 36.959447 ], [ -76.322764, 36.959147 ], [ -76.315867, 36.955351 ], [ -76.299364, 36.965547 ], [ -76.297663, 36.968147 ], [ -76.285063, 36.968747 ], [ -76.267962, 36.964547 ], [ -76.234961, 36.945147 ], [ -76.221660, 36.939547 ], [ -76.189959, 36.931447 ], [ -76.177019, 36.929290 ], [ -76.139557, 36.923047 ], [ -76.095508, 36.908817 ], [ -76.087955, 36.908647 ], [ -76.058154, 36.916947 ], [ -76.043054, 36.927547 ], [ -76.033454, 36.931946 ], [ -76.013753, 36.930746 ], [ -76.007553, 36.929047 ], [ -75.996252, 36.922047 ], [ -75.991552, 36.910847 ], [ -75.972151, 36.842268 ], [ -75.965451, 36.812449 ], [ -75.949550, 36.761150 ], [ -75.921748, 36.692051 ], [ -75.890946, 36.630753 ], [ -75.874145, 36.583853 ], [ -75.867044, 36.550754 ], [ -75.879744, 36.550754 ], [ -75.880644, 36.550754 ], [ -75.885945, 36.550754 ], [ -75.886545, 36.550754 ], [ -75.891945, 36.550754 ], [ -75.893245, 36.550654 ], [ -75.894145, 36.550754 ], [ -75.903445, 36.550654 ], [ -75.904745, 36.550654 ], [ -75.909046, 36.550654 ], [ -75.911446, 36.550654 ], [ -75.922046, 36.550654 ], [ -75.952847, 36.550553 ], [ -75.953447, 36.550553 ], [ -75.955748, 36.550553 ], [ -75.957648, 36.550553 ], [ -76.026750, 36.550553 ], [ -76.034751, 36.550653 ], [ -76.122360, 36.550621 ], [ -76.313196, 36.550551 ], [ -76.313215, 36.550551 ], [ -76.491497, 36.550365 ], [ -76.541391, 36.550312 ], [ -76.541687, 36.550312 ], [ -76.781296, 36.550659 ], [ -76.807078, 36.550606 ], [ -76.915384, 36.543856 ], [ -76.916001, 36.543818 ], [ -76.916048, 36.543815 ], [ -77.164500, 36.546330 ], [ -77.249690, 36.544745 ], [ -77.296875, 36.544746 ], [ -77.767117, 36.544752 ], [ -77.875280, 36.544754 ], [ -77.882357, 36.544737 ], [ -77.899771, 36.544663 ], [ -78.038938, 36.544173 ], [ -78.039420, 36.544196 ], [ -78.046202, 36.544168 ], [ -78.132911, 36.543811 ], [ -78.133323, 36.543847 ], [ -78.245462, 36.544411 ], [ -78.246681, 36.544341 ], [ -78.323912, 36.543809 ], [ -78.436333, 36.542666 ], [ -78.441199, 36.542687 ], [ -78.456970, 36.542474 ], [ -78.470792, 36.542316 ], [ -78.471022, 36.542307 ], [ -78.529722, 36.540981 ], [ -78.533013, 36.541004 ], [ -78.663317, 36.542011 ], [ -78.670051, 36.542035 ], [ -78.734122, 36.541902 ], [ -78.758392, 36.541852 ], [ -78.765430, 36.541727 ], [ -78.796300, 36.541713 ], [ -78.914543, 36.541972 ], [ -78.915420, 36.541974 ], [ -78.942009, 36.542113 ], [ -78.942254, 36.542079 ], [ -78.970577, 36.542154 ], [ -78.971814, 36.542123 ], [ -79.124736, 36.541568 ], [ -79.126078, 36.541533 ], [ -79.137936, 36.541739 ], [ -79.208686, 36.541571 ], [ -79.209480, 36.541594 ], [ -79.218638, 36.541579 ], [ -79.342696, 36.541382 ], [ -79.445687, 36.541218 ], [ -79.445961, 36.541195 ], [ -79.470047, 36.541025 ], [ -79.510647, 36.540738 ], [ -79.510961, 36.540740 ], [ -79.666827, 36.541772 ], [ -79.667309, 36.541772 ], [ -79.714855, 36.541884 ], [ -79.920239, 36.542365 ], [ -79.966979, 36.542475 ], [ -79.967511, 36.542502 ], [ -80.027269, 36.542495 ], [ -80.053455, 36.542623 ], [ -80.169535, 36.543190 ], [ -80.171636, 36.543219 ], [ -80.225408, 36.543748 ], [ -80.228263, 36.543867 ], [ -80.431605, 36.550219 ], [ -80.432628, 36.550302 ], [ -80.440100, 36.550630 ], [ -80.612158, 36.558127 ], [ -80.687539, 36.561411 ], [ -80.744101, 36.561686 ], [ -80.837089, 36.559154 ], [ -80.837641, 36.559118 ], [ -80.837954, 36.559131 ], [ -80.901726, 36.561751 ], [ -80.901836, 36.561754 ], [ -80.944338, 36.563058 ], [ -80.945988, 36.563196 ], [ -81.058844, 36.566976 ], [ -81.061866, 36.567020 ], [ -81.307511, 36.575024 ], [ -81.353169, 36.574724 ], [ -81.353322, 36.574723 ], [ -81.521032, 36.580520 ], [ -81.606970, 36.587094 ], [ -81.677535, 36.588117 ], [ -81.646900, 36.611918 ], [ -81.826742, 36.614215 ], [ -81.922644, 36.616213 ], [ -81.934144, 36.594213 ], [ -82.146070, 36.594712 ], [ -82.148569, 36.594718 ], [ -82.150727, 36.594673 ], [ -82.173982, 36.594607 ], [ -82.177247, 36.594768 ], [ -82.180740, 36.594928 ], [ -82.188491, 36.595179 ], [ -82.210497, 36.595772 ], [ -82.211005, 36.595860 ], [ -82.221713, 36.595814 ], [ -82.223445, 36.595721 ], [ -82.225716, 36.595744 ], [ -82.226653, 36.595743 ], [ -82.243274, 36.595699 ], [ -82.293814, 36.595565 ], [ -82.554294, 36.594876 ], [ -82.559774, 36.594800 ], [ -82.561074, 36.594800 ], [ -82.609176, 36.594099 ], [ -82.679879, 36.593698 ], [ -82.695780, 36.593698 ], [ -82.830433, 36.593761 ], [ -82.985087, 36.593829 ], [ -83.027250, 36.593847 ], [ -83.028357, 36.593893 ], [ -83.248933, 36.593827 ], [ -83.249899, 36.593898 ], [ -83.250304, 36.593935 ], [ -83.276300, 36.598187 ], [ -83.472108, 36.597284 ], [ -83.670128, 36.600764 ], [ -83.670141, 36.600797 ], [ -83.675413, 36.600814 ], [ -83.649513, 36.616683 ], [ -83.527212, 36.665984 ], [ -83.498011, 36.670485 ], [ -83.461013, 36.664916 ], [ -83.460808, 36.664885 ], [ -83.354606, 36.696153 ], [ -83.353613, 36.696699 ], [ -83.342804, 36.701286 ], [ -83.199698, 36.737487 ], [ -83.167396, 36.739187 ], [ -83.136395, 36.743088 ], [ -83.127833, 36.750828 ], [ -83.125728, 36.761276 ], [ -83.125655, 36.761407 ], [ -83.131245, 36.767105 ], [ -83.131694, 36.781488 ], [ -83.099792, 36.824889 ], [ -83.072590, 36.854589 ], [ -82.973395, 36.859097 ], [ -82.911824, 36.874243 ], [ -82.911690, 36.874248 ], [ -82.885618, 36.900415 ], [ -82.873777, 36.912299 ], [ -82.872136, 36.913456 ], [ -82.863468, 36.922308 ], [ -82.861943, 36.924236 ], [ -82.858461, 36.932717 ], [ -82.858784, 36.933065 ], [ -82.860537, 36.937439 ], [ -82.861684, 36.939316 ], [ -82.861282, 36.944848 ], [ -82.860633, 36.945840 ], [ -82.856099, 36.952471 ], [ -82.855705, 36.953808 ], [ -82.858443, 36.954036 ], [ -82.860534, 36.956015 ], [ -82.862866, 36.957765 ], [ -82.864211, 36.957983 ], [ -82.865404, 36.958084 ], [ -82.867358, 36.963182 ], [ -82.870230, 36.965498 ], [ -82.870274, 36.965993 ], [ -82.869183, 36.974182 ], [ -82.869183, 36.974183 ], [ -82.868455, 36.976481 ], [ -82.867535, 36.977518 ], [ -82.866689, 36.978052 ], [ -82.866019, 36.978272 ], [ -82.864909, 36.979010 ], [ -82.862926, 36.979975 ], [ -82.852614, 36.984963 ], [ -82.851397, 36.984497 ], [ -82.840051, 36.987113 ], [ -82.838549, 36.987027 ], [ -82.836008, 36.988837 ], [ -82.833843, 36.991973 ], [ -82.830802, 36.993445 ], [ -82.829125, 36.997541 ], [ -82.830588, 37.000945 ], [ -82.818006, 37.006161 ], [ -82.815748, 37.007196 ], [ -82.800531, 37.007944 ], [ -82.790890, 37.006760 ], [ -82.790462, 37.007263 ], [ -82.789092, 37.007995 ], [ -82.788897, 37.008160 ], [ -82.777368, 37.015279 ], [ -82.771795, 37.015716 ], [ -82.722472, 37.045101 ], [ -82.720597, 37.081833 ], [ -82.721941, 37.105689 ], [ -82.624878, 37.162932 ], [ -82.565375, 37.196092 ], [ -82.565329, 37.196118 ], [ -82.553549, 37.200867 ], [ -82.510826, 37.218091 ], [ -82.350948, 37.267077 ], [ -82.310793, 37.297387 ], [ -82.305874, 37.301100 ], [ -82.291908, 37.311642 ], [ -81.968297, 37.537798 ], [ -81.927870, 37.512118 ], [ -81.942640, 37.508844 ], [ -81.992916, 37.482969 ], [ -81.996578, 37.476705 ], [ -81.992270, 37.460916 ], [ -81.987006, 37.454878 ], [ -81.968795, 37.451496 ], [ -81.949367, 37.445687 ], [ -81.935621, 37.438397 ], [ -81.927490, 37.413251 ], [ -81.933895, 37.372747 ], [ -81.930194, 37.366728 ], [ -81.929915, 37.366589 ], [ -81.926589, 37.358942 ], [ -81.925643, 37.357316 ], [ -81.921571, 37.356423 ], [ -81.920711, 37.355416 ], [ -81.911487, 37.348839 ], [ -81.910875, 37.348729 ], [ -81.907895, 37.343783 ], [ -81.907322, 37.343119 ], [ -81.906368, 37.342760 ], [ -81.905945, 37.342775 ], [ -81.903795, 37.343050 ], [ -81.902992, 37.342340 ], [ -81.899495, 37.341102 ], [ -81.899459, 37.340277 ], [ -81.896001, 37.331967 ], [ -81.895489, 37.332022 ], [ -81.894797, 37.332012 ], [ -81.894768, 37.331381 ], [ -81.893773, 37.330105 ], [ -81.892876, 37.330134 ], [ -81.887722, 37.331156 ], [ -81.886952, 37.330725 ], [ -81.885075, 37.330665 ], [ -81.880886, 37.331146 ], [ -81.879601, 37.332074 ], [ -81.878713, 37.331753 ], [ -81.878343, 37.328837 ], [ -81.873213, 37.325065 ], [ -81.865219, 37.308839 ], [ -81.864760, 37.308404 ], [ -81.853978, 37.300418 ], [ -81.854465, 37.299937 ], [ -81.853488, 37.294763 ], [ -81.854059, 37.291352 ], [ -81.843167, 37.285586 ], [ -81.842310, 37.285556 ], [ -81.810559, 37.282980 ], [ -81.809184, 37.283003 ], [ -81.793639, 37.282188 ], [ -81.793425, 37.281674 ], [ -81.774747, 37.274847 ], [ -81.774684, 37.274807 ], [ -81.767837, 37.274216 ], [ -81.765195, 37.275099 ], [ -81.763836, 37.275218 ], [ -81.762776, 37.275391 ], [ -81.761752, 37.275713 ], [ -81.760220, 37.275254 ], [ -81.757631, 37.274003 ], [ -81.757730, 37.271934 ], [ -81.757714, 37.271124 ], [ -81.757531, 37.270010 ], [ -81.755012, 37.267720 ], [ -81.752912, 37.266614 ], [ -81.752123, 37.265568 ], [ -81.751290, 37.265131 ], [ -81.747656, 37.264329 ], [ -81.743505, 37.247601 ], [ -81.743420, 37.245858 ], [ -81.744291, 37.244178 ], [ -81.738378, 37.240917 ], [ -81.733320, 37.238127 ], [ -81.728194, 37.239823 ], [ -81.683544, 37.211452 ], [ -81.678603, 37.202467 ], [ -81.560625, 37.206663 ], [ -81.558353, 37.208145 ], [ -81.557315, 37.207697 ], [ -81.507325, 37.233800 ], [ -81.504880, 37.247697 ], [ -81.504168, 37.250115 ], [ -81.409729, 37.284837 ], [ -81.409196, 37.286071 ], [ -81.388132, 37.319903 ], [ -81.386727, 37.320474 ], [ -81.385810, 37.320085 ], [ -81.384914, 37.318832 ], [ -81.384127, 37.318596 ], [ -81.380159, 37.317838 ], [ -81.377349, 37.318447 ], [ -81.371315, 37.324115 ], [ -81.367599, 37.327569 ], [ -81.369379, 37.331827 ], [ -81.368090, 37.332423 ], [ -81.367052, 37.334504 ], [ -81.366315, 37.335927 ], [ -81.362156, 37.337687 ], [ -81.320105, 37.299323 ], [ -81.225104, 37.234874 ], [ -81.204774, 37.243013 ], [ -81.167029, 37.262881 ], [ -81.112596, 37.278497 ], [ -81.084012, 37.284401 ], [ -81.034652, 37.290751 ], [ -80.981322, 37.293465 ], [ -80.980044, 37.293118 ], [ -80.973889, 37.291444 ], [ -80.966556, 37.292158 ], [ -80.947896, 37.295872 ], [ -80.919259, 37.306163 ], [ -80.900535, 37.315000 ], [ -80.849451, 37.346909 ], [ -80.872589, 37.372347 ], [ -80.862761, 37.411829 ], [ -80.859558, 37.429555 ], [ -80.859556, 37.429568 ], [ -80.858473, 37.428301 ], [ -80.858360, 37.428168 ], [ -80.811639, 37.407507 ], [ -80.798869, 37.395807 ], [ -80.776766, 37.384131 ], [ -80.776649, 37.383679 ], [ -80.770082, 37.372363 ], [ -80.622664, 37.433307 ], [ -80.511391, 37.481672 ], [ -80.494867, 37.435070 ], [ -80.475601, 37.422949 ], [ -80.464820, 37.426144 ], [ -80.443025, 37.438126 ], [ -80.425656, 37.449876 ], [ -80.320627, 37.498880 ], [ -80.314806, 37.500943 ], [ -80.330306, 37.536244 ], [ -80.312393, 37.546239 ], [ -80.288766, 37.581960 ], [ -80.240272, 37.606961 ], [ -80.223386, 37.623185 ], [ -80.220984, 37.627767 ], [ -80.239288, 37.637672 ], [ -80.254431, 37.642352 ], [ -80.254469, 37.642333 ], [ -80.263281, 37.645082 ], [ -80.263291, 37.645101 ], [ -80.264830, 37.645526 ], [ -80.264874, 37.645511 ], [ -80.267228, 37.646011 ], [ -80.267455, 37.646108 ], [ -80.270352, 37.648929 ], [ -80.270323, 37.648982 ], [ -80.292258, 37.683732 ], [ -80.292337, 37.683976 ], [ -80.296138, 37.691783 ], [ -80.287107, 37.696403 ], [ -80.263936, 37.719137 ], [ -80.259342, 37.731205 ], [ -80.260313, 37.733517 ], [ -80.262765, 37.738336 ], [ -80.257411, 37.756084 ], [ -80.231551, 37.792591 ], [ -80.227092, 37.798886 ], [ -80.162202, 37.875122 ], [ -80.148964, 37.886057 ], [ -80.147316, 37.885936 ], [ -80.146130, 37.884453 ], [ -80.130464, 37.893194 ], [ -80.055278, 37.951702 ], [ -80.002507, 37.992767 ], [ -79.978427, 38.029082 ], [ -79.959844, 38.063697 ], [ -79.933911, 38.099168 ], [ -79.931034, 38.101402 ], [ -79.938394, 38.130563 ], [ -79.933751, 38.135508 ], [ -79.928747, 38.144436 ], [ -79.928683, 38.144928 ], [ -79.925512, 38.150237 ], [ -79.925251, 38.150465 ], [ -79.921026, 38.179954 ], [ -79.921196, 38.180378 ], [ -79.917061, 38.183741 ], [ -79.916174, 38.184386 ], [ -79.892345, 38.202397 ], [ -79.891999, 38.203378 ], [ -79.794568, 38.264856 ], [ -79.790134, 38.267654 ], [ -79.788945, 38.268703 ], [ -79.810115, 38.305037 ], [ -79.808711, 38.309429 ], [ -79.731661, 38.374143 ], [ -79.691377, 38.439558 ], [ -79.689544, 38.442511 ], [ -79.688962, 38.449538 ], [ -79.688205, 38.450476 ], [ -79.699006, 38.475148 ], [ -79.695565, 38.477842 ], [ -79.669128, 38.510883 ], [ -79.669128, 38.510975 ], [ -79.649075, 38.591515 ], [ -79.597955, 38.572767 ], [ -79.555471, 38.560217 ], [ -79.536870, 38.550917 ], [ -79.521469, 38.533918 ], [ -79.476638, 38.457228 ], [ -79.312276, 38.411876 ], [ -79.297758, 38.416438 ], [ -79.295712, 38.418129 ], [ -79.291813, 38.419627 ], [ -79.290529, 38.420757 ], [ -79.280263, 38.425475 ], [ -79.282663, 38.431021 ], [ -79.267414, 38.438322 ], [ -79.265327, 38.441772 ], [ -79.263376, 38.443762 ], [ -79.262910, 38.444586 ], [ -79.242024, 38.464332 ], [ -79.240059, 38.469841 ], [ -79.234408, 38.473011 ], [ -79.231620, 38.474041 ], [ -79.225839, 38.479446 ], [ -79.210026, 38.494231 ], [ -79.210008, 38.494283 ], [ -79.209703, 38.495574 ], [ -79.207873, 38.500122 ], [ -79.207884, 38.500428 ], [ -79.174881, 38.566314 ], [ -79.174512, 38.566531 ], [ -79.146974, 38.625641 ], [ -79.146741, 38.625819 ], [ -79.137012, 38.640655 ], [ -79.136374, 38.642400 ], [ -79.135546, 38.643715 ], [ -79.135472, 38.644057 ], [ -79.092271, 38.699208 ], [ -79.092555, 38.700149 ], [ -79.057253, 38.761413 ], [ -79.055354, 38.782213 ], [ -78.999752, 38.846162 ], [ -78.993997, 38.850102 ], [ -78.869276, 38.762991 ] ] ] ] } }\n,\n{ \"type\": \"Feature\", \"properties\": { \"GEO_ID\": \"0400000US72\", \"STATE\": \"72\", \"NAME\": \"Puerto Rico\", \"LSAD\": \"\", \"CENSUSAREA\": 3423.775000 }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [ [ [ [ -65.280764, 18.288274 ], [ -65.283269, 18.280214 ], [ -65.287257, 18.277744 ], [ -65.300238, 18.294404 ], [ -65.301690, 18.300126 ], [ -65.299701, 18.302181 ], [ -65.296515, 18.302299 ], [ -65.288941, 18.299977 ], [ -65.280764, 18.288274 ] ] ], [ [ [ -65.316371, 18.309660 ], [ -65.316885, 18.314047 ], [ -65.322785, 18.321157 ], [ -65.327318, 18.323666 ], [ -65.342068, 18.345290 ], [ -65.335701, 18.349535 ], [ -65.329334, 18.341955 ], [ -65.321754, 18.338316 ], [ -65.309833, 18.337973 ], [ -65.304409, 18.332054 ], [ -65.298328, 18.330529 ], [ -65.281657, 18.329370 ], [ -65.277319, 18.332582 ], [ -65.253174, 18.318524 ], [ -65.245095, 18.309668 ], [ -65.244424, 18.303493 ], [ -65.249857, 18.296691 ], [ -65.260282, 18.290823 ], [ -65.263937, 18.290685 ], [ -65.276037, 18.296067 ], [ -65.277099, 18.298978 ], [ -65.276007, 18.302613 ], [ -65.280502, 18.306202 ], [ -65.302536, 18.310488 ], [ -65.302160, 18.305379 ], [ -65.302426, 18.303145 ], [ -65.307027, 18.301636 ], [ -65.316371, 18.309660 ] ] ], [ [ [ -65.327700, 18.295843 ], [ -65.331398, 18.296110 ], [ -65.337451, 18.308308 ], [ -65.330188, 18.315998 ], [ -65.327821, 18.308970 ], [ -65.327700, 18.295843 ] ] ], [ [ [ -65.228485, 18.323013 ], [ -65.221568, 18.320959 ], [ -65.221110, 18.311984 ], [ -65.222853, 18.310464 ], [ -65.230025, 18.311274 ], [ -65.231933, 18.320339 ], [ -65.228485, 18.323013 ] ] ], [ [ [ -65.266169, 18.341751 ], [ -65.255933, 18.342117 ], [ -65.245756, 18.334707 ], [ -65.247210, 18.333345 ], [ -65.259612, 18.334147 ], [ -65.265558, 18.339392 ], [ -65.266169, 18.341751 ] ] ], [ [ [ -65.582967, 18.246749 ], [ -65.591954, 18.248653 ], [ -65.594940, 18.248653 ], [ -65.595860, 18.247792 ], [ -65.598153, 18.247595 ], [ -65.599627, 18.255699 ], [ -65.584892, 18.256376 ], [ -65.582967, 18.246749 ] ] ], [ [ [ -65.571523, 18.351635 ], [ -65.569013, 18.352794 ], [ -65.565744, 18.349524 ], [ -65.565072, 18.347499 ], [ -65.567951, 18.343341 ], [ -65.571523, 18.351635 ] ] ], [ [ [ -65.572248, 18.381757 ], [ -65.568979, 18.382125 ], [ -65.566355, 18.378212 ], [ -65.571787, 18.376370 ], [ -65.572248, 18.381757 ] ] ], [ [ [ -65.587335, 18.381994 ], [ -65.591650, 18.386287 ], [ -65.592585, 18.390849 ], [ -65.589332, 18.390516 ], [ -65.584537, 18.386939 ], [ -65.583571, 18.383751 ], [ -65.587335, 18.381994 ] ] ], [ [ [ -67.891740, 18.113970 ], [ -67.887099, 18.112574 ], [ -67.876430, 18.114157 ], [ -67.869804, 18.118851 ], [ -67.861548, 18.122144 ], [ -67.848245, 18.108320 ], [ -67.843202, 18.094858 ], [ -67.843615, 18.085099 ], [ -67.845293, 18.081938 ], [ -67.853098, 18.078195 ], [ -67.865598, 18.065440 ], [ -67.871462, 18.057800 ], [ -67.895921, 18.052342 ], [ -67.904431, 18.059130 ], [ -67.918778, 18.063116 ], [ -67.927841, 18.068572 ], [ -67.940799, 18.079716 ], [ -67.934479, 18.111306 ], [ -67.932185, 18.113221 ], [ -67.910880, 18.119668 ], [ -67.891740, 18.113970 ] ] ], [ [ [ -67.950099, 18.154235 ], [ -67.954119, 18.154576 ], [ -67.952974, 18.157663 ], [ -67.949873, 18.157015 ], [ -67.950099, 18.154235 ] ] ], [ [ [ -67.477976, 18.378945 ], [ -67.485499, 18.382224 ], [ -67.489346, 18.387441 ], [ -67.482204, 18.391470 ], [ -67.477922, 18.390544 ], [ -67.472368, 18.382801 ], [ -67.477976, 18.378945 ] ] ], [ [ [ -66.523478, 17.896176 ], [ -66.513454, 17.902857 ], [ -66.509783, 17.900466 ], [ -66.509525, 17.898552 ], [ -66.515349, 17.892700 ], [ -66.528572, 17.884813 ], [ -66.526072, 17.892937 ], [ -66.523478, 17.896176 ] ] ], [ [ [ -66.349647, 18.486335 ], [ -66.337728, 18.485620 ], [ -66.315477, 18.474724 ], [ -66.315030, 18.474680 ], [ -66.291225, 18.472347 ], [ -66.283675, 18.472203 ], [ -66.276599, 18.478129 ], [ -66.269799, 18.480281 ], [ -66.258015, 18.476906 ], [ -66.251547, 18.472464 ], [ -66.241797, 18.468740 ], [ -66.220148, 18.466000 ], [ -66.199032, 18.466163 ], [ -66.192664, 18.466212 ], [ -66.183886, 18.460506 ], [ -66.179218, 18.455305 ], [ -66.172315, 18.451462 ], [ -66.159796, 18.451706 ], [ -66.153037, 18.454457 ], [ -66.143950, 18.459761 ], [ -66.139572, 18.462317 ], [ -66.139451, 18.462387 ], [ -66.139443, 18.462315 ], [ -66.138532, 18.453305 ], [ -66.133085, 18.445881 ], [ -66.127938, 18.444632 ], [ -66.125198, 18.451209 ], [ -66.124284, 18.456324 ], [ -66.123188, 18.459430 ], [ -66.123343, 18.460363 ], [ -66.125015, 18.470435 ], [ -66.118338, 18.469581 ], [ -66.092098, 18.466535 ], [ -66.083254, 18.462022 ], [ -66.073987, 18.458100 ], [ -66.043272, 18.453655 ], [ -66.039440, 18.454441 ], [ -66.036559, 18.450216 ], [ -66.036491, 18.450117 ], [ -66.023221, 18.443875 ], [ -66.006523, 18.444347 ], [ -65.997180, 18.449895 ], [ -65.992935, 18.457489 ], [ -65.992793, 18.458102 ], [ -65.992349, 18.460024 ], [ -65.990790, 18.460419 ], [ -65.958492, 18.451354 ], [ -65.925670, 18.444881 ], [ -65.916843, 18.444619 ], [ -65.907756, 18.446893 ], [ -65.904988, 18.450926 ], [ -65.878683, 18.438322 ], [ -65.838825, 18.431865 ], [ -65.831476, 18.426849 ], [ -65.828457, 18.423543 ], [ -65.816691, 18.410663 ], [ -65.794556, 18.402845 ], [ -65.787666, 18.402544 ], [ -65.774937, 18.413951 ], [ -65.770530, 18.412940 ], [ -65.769749, 18.409473 ], [ -65.771695, 18.406277 ], [ -65.750455, 18.385208 ], [ -65.750179, 18.385050 ], [ -65.742154, 18.380459 ], [ -65.733567, 18.382211 ], [ -65.699069, 18.368156 ], [ -65.669636, 18.362102 ], [ -65.668845, 18.361939 ], [ -65.634431, 18.369835 ], [ -65.627246, 18.376436 ], [ -65.626527, 18.381728 ], [ -65.624975, 18.386553 ], [ -65.622761, 18.387771 ], [ -65.618229, 18.386496 ], [ -65.614891, 18.382473 ], [ -65.619068, 18.367755 ], [ -65.628198, 18.353711 ], [ -65.634190, 18.338965 ], [ -65.628047, 18.328252 ], [ -65.626456, 18.298982 ], [ -65.634389, 18.292349 ], [ -65.635826, 18.288271 ], [ -65.634893, 18.283923 ], [ -65.630833, 18.264989 ], [ -65.623111, 18.248012 ], [ -65.597618, 18.234289 ], [ -65.589947, 18.228225 ], [ -65.593795, 18.224059 ], [ -65.615981, 18.227389 ], [ -65.626731, 18.235484 ], [ -65.638181, 18.229121 ], [ -65.637565, 18.224444 ], [ -65.628414, 18.205149 ], [ -65.635281, 18.199975 ], [ -65.639688, 18.205656 ], [ -65.662185, 18.207018 ], [ -65.664127, 18.207136 ], [ -65.690749, 18.194990 ], [ -65.694515, 18.187011 ], [ -65.691021, 18.178998 ], [ -65.695856, 18.179324 ], [ -65.710895, 18.186963 ], [ -65.712533, 18.189146 ], [ -65.717999, 18.190176 ], [ -65.728471, 18.185588 ], [ -65.734664, 18.180368 ], [ -65.738834, 18.174066 ], [ -65.739125, 18.173453 ], [ -65.743632, 18.163957 ], [ -65.758728, 18.156601 ], [ -65.766919, 18.148424 ], [ -65.777584, 18.129239 ], [ -65.796711, 18.083746 ], [ -65.796289, 18.079835 ], [ -65.794686, 18.078607 ], [ -65.795028, 18.073561 ], [ -65.796711, 18.069842 ], [ -65.801831, 18.058527 ], [ -65.809174, 18.056818 ], [ -65.817107, 18.063378 ], [ -65.825848, 18.057482 ], [ -65.831090, 18.050664 ], [ -65.834274, 18.038988 ], [ -65.832429, 18.014916 ], [ -65.839591, 18.015077 ], [ -65.850913, 18.011954 ], [ -65.870335, 18.006597 ], [ -65.875122, 18.002826 ], [ -65.884937, 17.988521 ], [ -65.896102, 17.990260 ], [ -65.905319, 17.983974 ], [ -65.910537, 17.981855 ], [ -65.924738, 17.976087 ], [ -65.976611, 17.967669 ], [ -65.984550, 17.969411 ], [ -65.985358, 17.971854 ], [ -65.995185, 17.978989 ], [ -66.007731, 17.980541 ], [ -66.017308, 17.979583 ], [ -66.019539, 17.978354 ], [ -66.024000, 17.975896 ], [ -66.046585, 17.954853 ], [ -66.049033, 17.954561 ], [ -66.058217, 17.959238 ], [ -66.068678, 17.966335 ], [ -66.069979, 17.966357 ], [ -66.081410, 17.966552 ], [ -66.116194, 17.949141 ], [ -66.127009, 17.946953 ], [ -66.140661, 17.941020 ], [ -66.147912, 17.933963 ], [ -66.155387, 17.929406 ], [ -66.159742, 17.928613 ], [ -66.161232, 17.931747 ], [ -66.175626, 17.933565 ], [ -66.186914, 17.935363 ], [ -66.189726, 17.933936 ], [ -66.200174, 17.929515 ], [ -66.206961, 17.932268 ], [ -66.213374, 17.944614 ], [ -66.202655, 17.944753 ], [ -66.185554, 17.940997 ], [ -66.179548, 17.943727 ], [ -66.174839, 17.948214 ], [ -66.176814, 17.950438 ], [ -66.206207, 17.963050 ], [ -66.206807, 17.963307 ], [ -66.215355, 17.959376 ], [ -66.218081, 17.957290 ], [ -66.231519, 17.943912 ], [ -66.229181, 17.934651 ], [ -66.232013, 17.931154 ], [ -66.252737, 17.934574 ], [ -66.260684, 17.936083 ], [ -66.270905, 17.947098 ], [ -66.275651, 17.948260 ], [ -66.290782, 17.946491 ], [ -66.297679, 17.959148 ], [ -66.316950, 17.976683 ], [ -66.323659, 17.978536 ], [ -66.338152, 17.976492 ], [ -66.338390, 17.976458 ], [ -66.362511, 17.968231 ], [ -66.365098, 17.964832 ], [ -66.368777, 17.957717 ], [ -66.371591, 17.951469 ], [ -66.385059, 17.939004 ], [ -66.391227, 17.945819 ], [ -66.398945, 17.950925 ], [ -66.412131, 17.957286 ], [ -66.445481, 17.979379 ], [ -66.450368, 17.983226 ], [ -66.454888, 17.986784 ], [ -66.461342, 17.990273 ], [ -66.491396, 17.990262 ], [ -66.510143, 17.985618 ], [ -66.540537, 17.975476 ], [ -66.583233, 17.961229 ], [ -66.589658, 17.969386 ], [ -66.594392, 17.970682 ], [ -66.605035, 17.969015 ], [ -66.623788, 17.981050 ], [ -66.631944, 17.982746 ], [ -66.645651, 17.980260 ], [ -66.657797, 17.974605 ], [ -66.664391, 17.968259 ], [ -66.672819, 17.966451 ], [ -66.699115, 17.977568 ], [ -66.709856, 17.982109 ], [ -66.713394, 17.987763 ], [ -66.716957, 17.990344 ], [ -66.731118, 17.991658 ], [ -66.746248, 17.990349 ], [ -66.750427, 17.995443 ], [ -66.753964, 17.999590 ], [ -66.755341, 18.001203 ], [ -66.764491, 18.006317 ], [ -66.770307, 18.005955 ], [ -66.799656, 17.992450 ], [ -66.806866, 17.983786 ], [ -66.807924, 17.979606 ], [ -66.806903, 17.976046 ], [ -66.805683, 17.975052 ], [ -66.795106, 17.977438 ], [ -66.789302, 17.980793 ], [ -66.784953, 17.978326 ], [ -66.787245, 17.972914 ], [ -66.808270, 17.965635 ], [ -66.822400, 17.954499 ], [ -66.838584, 17.949931 ], [ -66.852288, 17.955004 ], [ -66.856474, 17.956553 ], [ -66.859471, 17.954316 ], [ -66.862545, 17.952022 ], [ -66.871697, 17.952707 ], [ -66.883440, 17.952526 ], [ -66.899639, 17.948298 ], [ -66.904585, 17.950527 ], [ -66.906532, 17.955356 ], [ -66.906276, 17.963368 ], [ -66.924529, 17.972808 ], [ -66.928651, 17.970204 ], [ -66.930414, 17.963127 ], [ -66.916127, 17.959102 ], [ -66.909483, 17.952559 ], [ -66.909359, 17.949880 ], [ -66.912522, 17.947446 ], [ -66.930313, 17.943389 ], [ -66.932636, 17.939998 ], [ -66.931581, 17.936900 ], [ -66.919298, 17.932062 ], [ -66.923826, 17.926923 ], [ -66.927261, 17.926875 ], [ -66.959998, 17.940216 ], [ -66.980516, 17.951648 ], [ -66.981050, 17.952505 ], [ -66.982669, 17.955100 ], [ -66.982206, 17.961192 ], [ -66.987287, 17.970663 ], [ -66.996738, 17.972899 ], [ -67.003972, 17.970799 ], [ -67.014744, 17.968468 ], [ -67.024522, 17.970722 ], [ -67.062478, 17.973819 ], [ -67.076534, 17.967759 ], [ -67.089827, 17.951418 ], [ -67.101468, 17.946621 ], [ -67.109985, 17.945806 ], [ -67.109986, 17.945806 ], [ -67.128251, 17.948153 ], [ -67.133733, 17.951919 ], [ -67.167031, 17.963073 ], [ -67.178566, 17.964792 ], [ -67.183508, 17.962706 ], [ -67.188717, 17.950989 ], [ -67.187474, 17.946252 ], [ -67.183694, 17.937982 ], [ -67.183457, 17.931135 ], [ -67.194785, 17.932826 ], [ -67.196924, 17.935651 ], [ -67.197273, 17.937461 ], [ -67.197517, 17.941514 ], [ -67.197668, 17.943549 ], [ -67.198988, 17.947820 ], [ -67.200973, 17.949896 ], [ -67.210034, 17.953595 ], [ -67.212101, 17.956027 ], [ -67.214330, 17.962436 ], [ -67.215271, 17.983464 ], [ -67.211973, 17.992993 ], [ -67.207694, 17.998019 ], [ -67.177893, 18.008882 ], [ -67.174299, 18.011149 ], [ -67.172397, 18.014906 ], [ -67.172138, 18.021422 ], [ -67.173761, 18.024548 ], [ -67.193269, 18.031850 ], [ -67.209887, 18.035439 ], [ -67.196694, 18.066491 ], [ -67.190656, 18.064269 ], [ -67.184589, 18.067750 ], [ -67.183938, 18.069914 ], [ -67.186465, 18.074195 ], [ -67.192999, 18.076877 ], [ -67.198212, 18.076828 ], [ -67.199314, 18.091135 ], [ -67.195290, 18.096149 ], [ -67.183921, 18.103683 ], [ -67.182182, 18.108507 ], [ -67.176554, 18.151046 ], [ -67.178618, 18.159318 ], [ -67.180822, 18.168055 ], [ -67.180701, 18.168182 ], [ -67.155185, 18.195001 ], [ -67.152665, 18.203493 ], [ -67.158001, 18.216719 ], [ -67.173000, 18.230666 ], [ -67.175429, 18.248008 ], [ -67.187843, 18.266671 ], [ -67.187873, 18.266874 ], [ -67.189971, 18.281015 ], [ -67.196056, 18.290443 ], [ -67.209963, 18.294974 ], [ -67.225403, 18.296648 ], [ -67.226081, 18.296722 ], [ -67.235137, 18.299935 ], [ -67.267484, 18.353149 ], [ -67.271350, 18.362329 ], [ -67.268259, 18.366989 ], [ -67.260671, 18.370197 ], [ -67.239090, 18.375318 ], [ -67.226744, 18.378247 ], [ -67.216998, 18.382078 ], [ -67.202167, 18.389908 ], [ -67.160144, 18.415587 ], [ -67.159608, 18.415915 ], [ -67.156599, 18.418983 ], [ -67.155245, 18.424401 ], [ -67.156619, 18.439562 ], [ -67.161746, 18.453462 ], [ -67.169011, 18.466352 ], [ -67.169016, 18.478488 ], [ -67.164144, 18.487396 ], [ -67.142830, 18.505485 ], [ -67.138249, 18.507776 ], [ -67.125655, 18.511706 ], [ -67.103468, 18.514523 ], [ -67.093752, 18.515757 ], [ -67.079290, 18.513256 ], [ -67.020276, 18.510603 ], [ -66.988958, 18.497724 ], [ -66.959540, 18.489878 ], [ -66.957733, 18.489129 ], [ -66.957517, 18.489171 ], [ -66.944636, 18.491693 ], [ -66.906872, 18.483556 ], [ -66.901430, 18.484552 ], [ -66.867386, 18.490785 ], [ -66.849673, 18.490745 ], [ -66.836940, 18.487659 ], [ -66.836635, 18.487701 ], [ -66.799320, 18.492775 ], [ -66.780311, 18.491411 ], [ -66.764893, 18.484097 ], [ -66.749301, 18.476701 ], [ -66.742067, 18.474681 ], [ -66.733986, 18.473457 ], [ -66.710743, 18.472611 ], [ -66.683719, 18.481367 ], [ -66.679876, 18.484944 ], [ -66.664364, 18.487809 ], [ -66.645839, 18.488777 ], [ -66.624618, 18.494199 ], [ -66.586778, 18.484948 ], [ -66.584074, 18.484287 ], [ -66.565241, 18.485523 ], [ -66.562916, 18.488450 ], [ -66.563485, 18.490512 ], [ -66.558503, 18.489987 ], [ -66.534840, 18.481253 ], [ -66.533487, 18.481663 ], [ -66.529476, 18.482877 ], [ -66.511609, 18.476848 ], [ -66.470292, 18.469070 ], [ -66.456486, 18.468920 ], [ -66.449184, 18.470991 ], [ -66.441852, 18.479751 ], [ -66.439961, 18.485525 ], [ -66.438813, 18.485713 ], [ -66.420921, 18.488639 ], [ -66.410344, 18.489886 ], [ -66.394287, 18.489748 ], [ -66.377286, 18.488044 ], [ -66.372820, 18.487726 ], [ -66.349647, 18.486335 ] ] ], [ [ [ -65.308717, 18.145172 ], [ -65.302295, 18.141089 ], [ -65.294896, 18.142830 ], [ -65.287962, 18.148097 ], [ -65.275165, 18.134430 ], [ -65.276214, 18.131936 ], [ -65.283248, 18.132999 ], [ -65.296036, 18.127990 ], [ -65.322794, 18.126589 ], [ -65.327184, 18.124106 ], [ -65.338506, 18.112439 ], [ -65.342037, 18.111380 ], [ -65.350493, 18.111914 ], [ -65.364733, 18.120377 ], [ -65.397837, 18.110873 ], [ -65.399791, 18.108832 ], [ -65.411767, 18.106211 ], [ -65.423765, 18.097764 ], [ -65.426311, 18.093749 ], [ -65.451380, 18.086096 ], [ -65.456810, 18.087778 ], [ -65.465849, 18.087715 ], [ -65.468768, 18.092643 ], [ -65.479790, 18.096352 ], [ -65.507265, 18.091646 ], [ -65.524209, 18.081977 ], [ -65.542087, 18.081177 ], [ -65.558646, 18.085660 ], [ -65.569305, 18.091616 ], [ -65.570628, 18.097325 ], [ -65.576860, 18.103224 ], [ -65.575579, 18.115669 ], [ -65.546199, 18.119329 ], [ -65.511712, 18.132840 ], [ -65.489829, 18.135912 ], [ -65.467910, 18.143767 ], [ -65.437058, 18.157660 ], [ -65.399517, 18.161935 ], [ -65.371373, 18.157517 ], [ -65.334289, 18.147761 ], [ -65.313476, 18.144296 ], [ -65.308717, 18.145172 ] ] ] ] } }\n,\n{ \"type\": \"Feature\", \"properties\": { \"GEO_ID\": \"0400000US10\", \"STATE\": \"10\", \"NAME\": \"Delaware\", \"LSAD\": \"\", \"CENSUSAREA\": 1948.543000 }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [ [ [ [ -75.564927, 39.583248 ], [ -75.576271, 39.588144 ], [ -75.578719, 39.591504 ], [ -75.579615, 39.598656 ], [ -75.565823, 39.590608 ], [ -75.564927, 39.583248 ] ] ], [ [ [ -75.555870, 39.605824 ], [ -75.561934, 39.605216 ], [ -75.567694, 39.613744 ], [ -75.571759, 39.623584 ], [ -75.570798, 39.626768 ], [ -75.559446, 39.629812 ], [ -75.555870, 39.605824 ] ] ], [ [ [ -75.594846, 39.837286 ], [ -75.593666, 39.837455 ], [ -75.593082, 39.837500 ], [ -75.579900, 39.838522 ], [ -75.579849, 39.838526 ], [ -75.539346, 39.838211 ], [ -75.498843, 39.833312 ], [ -75.453740, 39.820312 ], [ -75.428038, 39.809212 ], [ -75.415041, 39.801786 ], [ -75.416095, 39.795830 ], [ -75.437938, 39.783413 ], [ -75.440623, 39.780926 ], [ -75.448135, 39.773969 ], [ -75.466249, 39.750769 ], [ -75.466263, 39.750737 ], [ -75.469239, 39.743613 ], [ -75.474168, 39.735473 ], [ -75.475384, 39.731057 ], [ -75.504042, 39.698313 ], [ -75.509742, 39.686113 ], [ -75.529744, 39.692613 ], [ -75.562246, 39.656712 ], [ -75.587147, 39.651012 ], [ -75.611969, 39.621968 ], [ -75.613153, 39.620960 ], [ -75.613377, 39.620288 ], [ -75.614065, 39.618320 ], [ -75.614929, 39.615952 ], [ -75.614273, 39.614640 ], [ -75.613345, 39.613056 ], [ -75.613665, 39.612560 ], [ -75.613233, 39.607408 ], [ -75.613477, 39.606861 ], [ -75.613473, 39.606832 ], [ -75.613793, 39.606192 ], [ -75.611905, 39.597568 ], [ -75.611873, 39.597408 ], [ -75.604640, 39.589920 ], [ -75.603584, 39.588960 ], [ -75.592224, 39.583568 ], [ -75.591984, 39.583248 ], [ -75.587744, 39.580672 ], [ -75.587200, 39.580256 ], [ -75.586608, 39.578880 ], [ -75.586016, 39.578448 ], [ -75.571599, 39.567728 ], [ -75.570783, 39.567280 ], [ -75.563034, 39.562240 ], [ -75.564649, 39.559922 ], [ -75.565636, 39.558509 ], [ -75.569359, 39.540589 ], [ -75.569418, 39.539124 ], [ -75.570362, 39.527223 ], [ -75.560728, 39.520472 ], [ -75.566933, 39.508273 ], [ -75.576436, 39.509195 ], [ -75.587729, 39.496353 ], [ -75.587729, 39.495369 ], [ -75.593068, 39.479186 ], [ -75.593068, 39.477996 ], [ -75.589901, 39.462022 ], [ -75.589439, 39.460812 ], [ -75.580185, 39.450786 ], [ -75.578914, 39.447880 ], [ -75.570985, 39.442486 ], [ -75.571830, 39.438897 ], [ -75.555890, 39.430351 ], [ -75.538512, 39.416502 ], [ -75.535977, 39.409384 ], [ -75.523583, 39.391583 ], [ -75.521682, 39.387871 ], [ -75.512996, 39.366153 ], [ -75.512372, 39.365656 ], [ -75.511788, 39.365191 ], [ -75.505276, 39.359169 ], [ -75.494158, 39.354613 ], [ -75.491797, 39.351845 ], [ -75.494122, 39.346580 ], [ -75.493148, 39.345527 ], [ -75.491688, 39.343963 ], [ -75.490377, 39.342818 ], [ -75.479845, 39.337472 ], [ -75.479963, 39.336577 ], [ -75.469324, 39.330820 ], [ -75.460423, 39.328236 ], [ -75.439027, 39.313384 ], [ -75.436936, 39.309379 ], [ -75.435551, 39.297546 ], [ -75.435374, 39.296676 ], [ -75.427953, 39.285049 ], [ -75.408376, 39.264698 ], [ -75.402964, 39.254626 ], [ -75.404823, 39.245898 ], [ -75.405927, 39.243631 ], [ -75.405716, 39.223834 ], [ -75.404745, 39.222666 ], [ -75.396892, 39.216141 ], [ -75.393015, 39.204512 ], [ -75.394790, 39.188354 ], [ -75.398584, 39.186616 ], [ -75.400144, 39.186456 ], [ -75.408266, 39.174625 ], [ -75.410625, 39.156246 ], [ -75.401193, 39.088762 ], [ -75.402035, 39.066885 ], [ -75.400294, 39.065645 ], [ -75.395806, 39.059211 ], [ -75.396277, 39.057884 ], [ -75.387914, 39.051174 ], [ -75.379873, 39.048790 ], [ -75.345763, 39.024857 ], [ -75.340890, 39.019960 ], [ -75.318354, 38.988191 ], [ -75.314951, 38.980775 ], [ -75.311607, 38.967637 ], [ -75.312546, 38.951065 ], [ -75.312546, 38.949280 ], [ -75.311923, 38.945917 ], [ -75.311882, 38.945698 ], [ -75.311542, 38.944633 ], [ -75.302552, 38.939002 ], [ -75.312282, 38.924594 ], [ -75.304078, 38.913160 ], [ -75.263115, 38.877351 ], [ -75.232029, 38.844254 ], [ -75.205329, 38.823386 ], [ -75.190552, 38.806861 ], [ -75.160748, 38.791224 ], [ -75.159022, 38.790193 ], [ -75.134022, 38.782242 ], [ -75.113331, 38.782998 ], [ -75.097103, 38.788703 ], [ -75.093654, 38.793992 ], [ -75.097197, 38.803101 ], [ -75.093805, 38.803812 ], [ -75.089473, 38.797198 ], [ -75.082153, 38.772157 ], [ -75.080217, 38.750112 ], [ -75.079221, 38.738238 ], [ -75.065510, 38.661030 ], [ -75.065217, 38.632394 ], [ -75.061920, 38.608869 ], [ -75.061259, 38.608602 ], [ -75.060478, 38.608012 ], [ -75.060032, 38.607709 ], [ -75.049748, 38.486387 ], [ -75.048939, 38.451263 ], [ -75.049268, 38.451264 ], [ -75.052510, 38.451273 ], [ -75.053483, 38.451274 ], [ -75.066327, 38.451291 ], [ -75.069909, 38.451276 ], [ -75.070356, 38.451276 ], [ -75.085814, 38.451258 ], [ -75.088281, 38.451256 ], [ -75.089649, 38.451254 ], [ -75.141894, 38.451196 ], [ -75.185413, 38.451013 ], [ -75.252723, 38.451397 ], [ -75.260350, 38.451492 ], [ -75.341247, 38.451970 ], [ -75.341250, 38.451970 ], [ -75.355797, 38.452008 ], [ -75.371054, 38.452107 ], [ -75.393563, 38.452114 ], [ -75.394786, 38.452160 ], [ -75.410884, 38.452400 ], [ -75.424831, 38.452610 ], [ -75.428728, 38.452671 ], [ -75.479150, 38.453699 ], [ -75.500142, 38.454144 ], [ -75.502961, 38.454220 ], [ -75.521304, 38.454657 ], [ -75.522730, 38.454657 ], [ -75.533763, 38.454958 ], [ -75.559212, 38.455563 ], [ -75.559934, 38.455579 ], [ -75.574110, 38.455991 ], [ -75.583601, 38.456424 ], [ -75.589307, 38.456286 ], [ -75.593082, 38.456404 ], [ -75.598069, 38.456855 ], [ -75.630457, 38.457904 ], [ -75.662843, 38.458759 ], [ -75.665585, 38.458900 ], [ -75.693521, 38.460128 ], [ -75.696369, 38.492373 ], [ -75.696688, 38.496467 ], [ -75.698777, 38.522001 ], [ -75.700179, 38.542717 ], [ -75.701465, 38.559433 ], [ -75.701565, 38.560736 ], [ -75.703445, 38.585120 ], [ -75.703981, 38.592066 ], [ -75.705774, 38.614740 ], [ -75.705860, 38.616268 ], [ -75.706235, 38.621296 ], [ -75.706585, 38.626125 ], [ -75.707346, 38.635280 ], [ -75.707352, 38.635359 ], [ -75.722028, 38.822078 ], [ -75.722599, 38.829859 ], [ -75.722610, 38.830008 ], [ -75.722882, 38.833156 ], [ -75.724002, 38.846682 ], [ -75.724061, 38.847781 ], [ -75.725565, 38.868152 ], [ -75.725829, 38.869296 ], [ -75.745793, 39.114935 ], [ -75.746121, 39.120318 ], [ -75.747668, 39.143306 ], [ -75.747671, 39.143345 ], [ -75.755953, 39.245958 ], [ -75.755962, 39.246069 ], [ -75.760104, 39.296817 ], [ -75.766667, 39.377216 ], [ -75.766693, 39.377537 ], [ -75.779240, 39.534737 ], [ -75.779383, 39.536522 ], [ -75.786890, 39.630575 ], [ -75.787450, 39.637455 ], [ -75.788616, 39.680742 ], [ -75.788658, 39.681911 ], [ -75.788395, 39.700031 ], [ -75.788395, 39.700287 ], [ -75.788359, 39.721811 ], [ -75.739705, 39.772623 ], [ -75.716969, 39.791998 ], [ -75.685991, 39.811054 ], [ -75.662822, 39.821150 ], [ -75.641518, 39.828363 ], [ -75.634706, 39.830164 ], [ -75.595756, 39.837156 ], [ -75.594846, 39.837286 ] ] ] ] } }\n,\n{ \"type\": \"Feature\", \"properties\": { \"GEO_ID\": \"0400000US54\", \"STATE\": \"54\", \"NAME\": \"West Virginia\", \"LSAD\": \"\", \"CENSUSAREA\": 24038.210000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -78.571901, 39.031995 ], [ -78.565837, 39.026303 ], [ -78.554222, 39.019672 ], [ -78.557647, 39.013189 ], [ -78.601655, 38.964603 ], [ -78.710949, 38.910175 ], [ -78.714135, 38.911176 ], [ -78.716956, 38.916273 ], [ -78.719755, 38.922135 ], [ -78.719806, 38.922638 ], [ -78.757278, 38.903203 ], [ -78.779198, 38.892298 ], [ -78.788031, 38.885123 ], [ -78.808181, 38.856175 ], [ -78.835191, 38.811499 ], [ -78.869276, 38.762991 ], [ -78.993997, 38.850102 ], [ -78.999752, 38.846162 ], [ -79.055354, 38.782213 ], [ -79.057253, 38.761413 ], [ -79.092555, 38.700149 ], [ -79.092271, 38.699208 ], [ -79.135472, 38.644057 ], [ -79.135546, 38.643715 ], [ -79.136374, 38.642400 ], [ -79.137012, 38.640655 ], [ -79.146741, 38.625819 ], [ -79.146974, 38.625641 ], [ -79.174512, 38.566531 ], [ -79.174881, 38.566314 ], [ -79.207884, 38.500428 ], [ -79.207873, 38.500122 ], [ -79.209703, 38.495574 ], [ -79.210008, 38.494283 ], [ -79.210026, 38.494231 ], [ -79.225839, 38.479446 ], [ -79.231620, 38.474041 ], [ -79.234408, 38.473011 ], [ -79.240059, 38.469841 ], [ -79.242024, 38.464332 ], [ -79.262910, 38.444586 ], [ -79.263376, 38.443762 ], [ -79.265327, 38.441772 ], [ -79.267414, 38.438322 ], [ -79.282663, 38.431021 ], [ -79.280263, 38.425475 ], [ -79.290529, 38.420757 ], [ -79.291813, 38.419627 ], [ -79.295712, 38.418129 ], [ -79.297758, 38.416438 ], [ -79.312276, 38.411876 ], [ -79.476638, 38.457228 ], [ -79.521469, 38.533918 ], [ -79.536870, 38.550917 ], [ -79.555471, 38.560217 ], [ -79.597955, 38.572767 ], [ -79.649075, 38.591515 ], [ -79.669128, 38.510975 ], [ -79.669128, 38.510883 ], [ -79.695565, 38.477842 ], [ -79.699006, 38.475148 ], [ -79.688205, 38.450476 ], [ -79.688962, 38.449538 ], [ -79.689544, 38.442511 ], [ -79.691377, 38.439558 ], [ -79.731661, 38.374143 ], [ -79.808711, 38.309429 ], [ -79.810115, 38.305037 ], [ -79.788945, 38.268703 ], [ -79.790134, 38.267654 ], [ -79.794568, 38.264856 ], [ -79.891999, 38.203378 ], [ -79.892345, 38.202397 ], [ -79.916174, 38.184386 ], [ -79.917061, 38.183741 ], [ -79.921196, 38.180378 ], [ -79.921026, 38.179954 ], [ -79.925251, 38.150465 ], [ -79.925512, 38.150237 ], [ -79.928683, 38.144928 ], [ -79.928747, 38.144436 ], [ -79.933751, 38.135508 ], [ -79.938394, 38.130563 ], [ -79.931034, 38.101402 ], [ -79.933911, 38.099168 ], [ -79.959844, 38.063697 ], [ -79.978427, 38.029082 ], [ -80.002507, 37.992767 ], [ -80.055278, 37.951702 ], [ -80.130464, 37.893194 ], [ -80.146130, 37.884453 ], [ -80.147316, 37.885936 ], [ -80.148964, 37.886057 ], [ -80.162202, 37.875122 ], [ -80.227092, 37.798886 ], [ -80.231551, 37.792591 ], [ -80.257411, 37.756084 ], [ -80.262765, 37.738336 ], [ -80.260313, 37.733517 ], [ -80.259342, 37.731205 ], [ -80.263936, 37.719137 ], [ -80.287107, 37.696403 ], [ -80.296138, 37.691783 ], [ -80.292337, 37.683976 ], [ -80.292258, 37.683732 ], [ -80.270323, 37.648982 ], [ -80.270352, 37.648929 ], [ -80.267455, 37.646108 ], [ -80.267228, 37.646011 ], [ -80.264874, 37.645511 ], [ -80.264830, 37.645526 ], [ -80.263291, 37.645101 ], [ -80.263281, 37.645082 ], [ -80.254469, 37.642333 ], [ -80.254431, 37.642352 ], [ -80.239288, 37.637672 ], [ -80.220984, 37.627767 ], [ -80.223386, 37.623185 ], [ -80.240272, 37.606961 ], [ -80.288766, 37.581960 ], [ -80.312393, 37.546239 ], [ -80.330306, 37.536244 ], [ -80.314806, 37.500943 ], [ -80.320627, 37.498880 ], [ -80.425656, 37.449876 ], [ -80.443025, 37.438126 ], [ -80.464820, 37.426144 ], [ -80.475601, 37.422949 ], [ -80.494867, 37.435070 ], [ -80.511391, 37.481672 ], [ -80.622664, 37.433307 ], [ -80.770082, 37.372363 ], [ -80.776649, 37.383679 ], [ -80.776766, 37.384131 ], [ -80.798869, 37.395807 ], [ -80.811639, 37.407507 ], [ -80.858360, 37.428168 ], [ -80.858473, 37.428301 ], [ -80.859556, 37.429568 ], [ -80.859558, 37.429555 ], [ -80.862761, 37.411829 ], [ -80.872589, 37.372347 ], [ -80.849451, 37.346909 ], [ -80.900535, 37.315000 ], [ -80.919259, 37.306163 ], [ -80.947896, 37.295872 ], [ -80.966556, 37.292158 ], [ -80.973889, 37.291444 ], [ -80.980044, 37.293118 ], [ -80.981322, 37.293465 ], [ -81.034652, 37.290751 ], [ -81.084012, 37.284401 ], [ -81.112596, 37.278497 ], [ -81.167029, 37.262881 ], [ -81.204774, 37.243013 ], [ -81.225104, 37.234874 ], [ -81.320105, 37.299323 ], [ -81.362156, 37.337687 ], [ -81.366315, 37.335927 ], [ -81.367052, 37.334504 ], [ -81.368090, 37.332423 ], [ -81.369379, 37.331827 ], [ -81.367599, 37.327569 ], [ -81.371315, 37.324115 ], [ -81.377349, 37.318447 ], [ -81.380159, 37.317838 ], [ -81.384127, 37.318596 ], [ -81.384914, 37.318832 ], [ -81.385810, 37.320085 ], [ -81.386727, 37.320474 ], [ -81.388132, 37.319903 ], [ -81.409196, 37.286071 ], [ -81.409729, 37.284837 ], [ -81.504168, 37.250115 ], [ -81.504880, 37.247697 ], [ -81.507325, 37.233800 ], [ -81.557315, 37.207697 ], [ -81.558353, 37.208145 ], [ -81.560625, 37.206663 ], [ -81.678603, 37.202467 ], [ -81.683544, 37.211452 ], [ -81.728194, 37.239823 ], [ -81.733320, 37.238127 ], [ -81.738378, 37.240917 ], [ -81.744291, 37.244178 ], [ -81.743420, 37.245858 ], [ -81.743505, 37.247601 ], [ -81.747656, 37.264329 ], [ -81.751290, 37.265131 ], [ -81.752123, 37.265568 ], [ -81.752912, 37.266614 ], [ -81.755012, 37.267720 ], [ -81.757531, 37.270010 ], [ -81.757714, 37.271124 ], [ -81.757730, 37.271934 ], [ -81.757631, 37.274003 ], [ -81.760220, 37.275254 ], [ -81.761752, 37.275713 ], [ -81.762776, 37.275391 ], [ -81.763836, 37.275218 ], [ -81.765195, 37.275099 ], [ -81.767837, 37.274216 ], [ -81.774684, 37.274807 ], [ -81.774747, 37.274847 ], [ -81.793425, 37.281674 ], [ -81.793639, 37.282188 ], [ -81.809184, 37.283003 ], [ -81.810559, 37.282980 ], [ -81.842310, 37.285556 ], [ -81.843167, 37.285586 ], [ -81.854059, 37.291352 ], [ -81.853488, 37.294763 ], [ -81.854465, 37.299937 ], [ -81.853978, 37.300418 ], [ -81.864760, 37.308404 ], [ -81.865219, 37.308839 ], [ -81.873213, 37.325065 ], [ -81.878343, 37.328837 ], [ -81.878713, 37.331753 ], [ -81.879601, 37.332074 ], [ -81.880886, 37.331146 ], [ -81.885075, 37.330665 ], [ -81.886952, 37.330725 ], [ -81.887722, 37.331156 ], [ -81.892876, 37.330134 ], [ -81.893773, 37.330105 ], [ -81.894768, 37.331381 ], [ -81.894797, 37.332012 ], [ -81.895489, 37.332022 ], [ -81.896001, 37.331967 ], [ -81.899459, 37.340277 ], [ -81.899495, 37.341102 ], [ -81.902992, 37.342340 ], [ -81.903795, 37.343050 ], [ -81.905945, 37.342775 ], [ -81.906368, 37.342760 ], [ -81.907322, 37.343119 ], [ -81.907895, 37.343783 ], [ -81.910875, 37.348729 ], [ -81.911487, 37.348839 ], [ -81.920711, 37.355416 ], [ -81.921571, 37.356423 ], [ -81.925643, 37.357316 ], [ -81.926589, 37.358942 ], [ -81.929915, 37.366589 ], [ -81.930194, 37.366728 ], [ -81.933895, 37.372747 ], [ -81.927490, 37.413251 ], [ -81.935621, 37.438397 ], [ -81.949367, 37.445687 ], [ -81.968795, 37.451496 ], [ -81.987006, 37.454878 ], [ -81.992270, 37.460916 ], [ -81.996578, 37.476705 ], [ -81.992916, 37.482969 ], [ -81.942640, 37.508844 ], [ -81.927870, 37.512118 ], [ -81.968297, 37.537798 ], [ -81.998177, 37.543082 ], [ -81.999844, 37.542579 ], [ -82.008274, 37.533357 ], [ -82.048521, 37.531078 ], [ -82.116584, 37.559588 ], [ -82.125892, 37.574031 ], [ -82.125601, 37.579021 ], [ -82.141814, 37.595052 ], [ -82.219670, 37.643046 ], [ -82.250280, 37.657776 ], [ -82.297011, 37.687273 ], [ -82.307235, 37.707669 ], [ -82.325739, 37.735799 ], [ -82.326404, 37.740815 ], [ -82.319023, 37.758892 ], [ -82.329867, 37.775897 ], [ -82.400234, 37.851833 ], [ -82.417679, 37.870658 ], [ -82.474666, 37.910388 ], [ -82.500386, 37.936518 ], [ -82.497358, 37.945338 ], [ -82.497300, 37.945507 ], [ -82.464987, 37.976859 ], [ -82.464096, 37.982437 ], [ -82.465473, 37.984780 ], [ -82.487732, 37.998330 ], [ -82.509812, 38.001249 ], [ -82.519665, 38.008538 ], [ -82.539139, 38.039093 ], [ -82.547284, 38.061094 ], [ -82.600127, 38.117389 ], [ -82.602618, 38.118350 ], [ -82.621164, 38.123239 ], [ -82.636466, 38.137860 ], [ -82.644739, 38.165487 ], [ -82.604230, 38.247303 ], [ -82.594970, 38.245453 ], [ -82.584001, 38.246371 ], [ -82.578254, 38.254809 ], [ -82.574656, 38.263873 ], [ -82.571877, 38.315781 ], [ -82.593008, 38.375082 ], [ -82.595382, 38.382712 ], [ -82.595369, 38.382722 ], [ -82.597113, 38.412881 ], [ -82.596281, 38.417681 ], [ -82.593673, 38.421809 ], [ -82.560664, 38.404338 ], [ -82.520178, 38.407582 ], [ -82.506670, 38.410092 ], [ -82.340640, 38.440948 ], [ -82.330335, 38.444500 ], [ -82.323999, 38.449268 ], [ -82.320223, 38.454516 ], [ -82.313935, 38.468084 ], [ -82.295571, 38.539783 ], [ -82.293271, 38.560283 ], [ -82.293871, 38.572683 ], [ -82.291271, 38.578983 ], [ -82.287102, 38.582588 ], [ -82.274270, 38.593683 ], [ -82.262070, 38.598183 ], [ -82.245969, 38.598483 ], [ -82.218967, 38.591683 ], [ -82.193824, 38.593096 ], [ -82.181967, 38.599384 ], [ -82.177267, 38.603784 ], [ -82.175167, 38.608484 ], [ -82.172066, 38.619284 ], [ -82.172066, 38.625984 ], [ -82.182467, 38.708782 ], [ -82.188268, 38.734082 ], [ -82.198882, 38.757725 ], [ -82.220449, 38.773739 ], [ -82.221566, 38.787187 ], [ -82.215759, 38.797462 ], [ -82.191172, 38.815137 ], [ -82.184428, 38.816529 ], [ -82.139279, 38.866407 ], [ -82.098762, 38.958288 ], [ -82.093165, 38.970980 ], [ -82.051563, 38.994378 ], [ -82.045663, 39.003778 ], [ -82.041563, 39.017878 ], [ -82.035963, 39.025478 ], [ -82.017562, 39.030078 ], [ -82.002261, 39.027878 ], [ -81.935619, 38.989500 ], [ -81.919783, 38.968494 ], [ -81.900595, 38.937671 ], [ -81.898470, 38.929603 ], [ -81.900910, 38.924338 ], [ -81.926671, 38.901311 ], [ -81.928352, 38.895371 ], [ -81.926967, 38.891602 ], [ -81.908645, 38.878460 ], [ -81.874857, 38.881174 ], [ -81.759995, 38.925828 ], [ -81.756131, 38.933545 ], [ -81.764253, 39.015279 ], [ -81.772854, 39.026179 ], [ -81.793304, 39.040353 ], [ -81.803355, 39.047678 ], [ -81.811655, 39.059578 ], [ -81.814155, 39.073478 ], [ -81.812355, 39.082078 ], [ -81.747253, 39.095378 ], [ -81.747253, 39.095379 ], [ -81.749689, 39.180742 ], [ -81.749853, 39.186489 ], [ -81.740061, 39.190652 ], [ -81.721551, 39.212448 ], [ -81.695724, 39.242859 ], [ -81.605816, 39.275851 ], [ -81.542346, 39.352874 ], [ -81.467744, 39.403774 ], [ -81.456143, 39.409274 ], [ -81.446543, 39.410374 ], [ -81.435642, 39.408474 ], [ -81.412706, 39.394618 ], [ -81.406689, 39.388090 ], [ -81.393794, 39.351706 ], [ -81.384556, 39.343449 ], [ -81.375961, 39.341697 ], [ -81.371271, 39.342062 ], [ -81.356911, 39.343178 ], [ -81.347567, 39.345770 ], [ -81.295373, 39.375290 ], [ -81.270716, 39.385914 ], [ -81.249088, 39.389992 ], [ -81.223581, 39.386062 ], [ -81.215617, 39.388602 ], [ -81.127696, 39.464879 ], [ -81.063587, 39.520497 ], [ -81.038691, 39.540464 ], [ -81.020055, 39.555410 ], [ -80.943782, 39.606926 ], [ -80.892208, 39.616756 ], [ -80.880360, 39.620706 ], [ -80.831871, 39.705655 ], [ -80.829764, 39.711839 ], [ -80.828618, 39.720848 ], [ -80.812342, 39.848845 ], [ -80.806179, 39.897306 ], [ -80.809619, 39.905626 ], [ -80.808722, 39.912570 ], [ -80.806018, 39.917130 ], [ -80.759455, 39.958233 ], [ -80.743166, 39.969113 ], [ -80.740126, 39.970793 ], [ -80.732051, 40.033240 ], [ -80.731504, 40.037472 ], [ -80.730904, 40.049172 ], [ -80.733104, 40.058772 ], [ -80.726504, 40.089072 ], [ -80.705482, 40.153047 ], [ -80.703052, 40.157231 ], [ -80.685391, 40.187642 ], [ -80.652098, 40.244970 ], [ -80.644598, 40.251270 ], [ -80.637198, 40.255070 ], [ -80.616696, 40.280270 ], [ -80.602895, 40.307069 ], [ -80.599895, 40.317669 ], [ -80.609313, 40.360468 ], [ -80.619196, 40.381768 ], [ -80.617346, 40.396004 ], [ -80.612295, 40.434867 ], [ -80.599194, 40.482566 ], [ -80.610259, 40.490962 ], [ -80.666917, 40.573664 ], [ -80.667957, 40.582496 ], [ -80.665892, 40.587728 ], [ -80.634355, 40.616095 ], [ -80.627171, 40.619936 ], [ -80.601494, 40.625387 ], [ -80.594065, 40.623664 ], [ -80.589041, 40.620128 ], [ -80.560720, 40.623680 ], [ -80.518991, 40.638801 ], [ -80.519039, 40.616391 ], [ -80.519086, 40.616385 ], [ -80.519086, 40.590161 ], [ -80.519055, 40.590173 ], [ -80.519057, 40.517922 ], [ -80.519054, 40.517922 ], [ -80.518692, 40.477365 ], [ -80.517998, 40.399644 ], [ -80.517991, 40.398868 ], [ -80.519056, 40.172771 ], [ -80.519056, 40.172744 ], [ -80.519104, 40.159672 ], [ -80.518960, 40.078089 ], [ -80.519008, 40.077001 ], [ -80.519120, 40.016410 ], [ -80.519207, 39.963381 ], [ -80.519218, 39.962424 ], [ -80.519217, 39.962199 ], [ -80.519203, 39.959394 ], [ -80.519175, 39.956648 ], [ -80.519115, 39.939188 ], [ -80.519248, 39.936967 ], [ -80.519342, 39.721403 ], [ -80.421388, 39.721189 ], [ -80.309457, 39.721264 ], [ -80.308651, 39.721283 ], [ -79.916266, 39.720792 ], [ -79.853131, 39.720713 ], [ -79.852904, 39.720713 ], [ -79.763774, 39.720776 ], [ -79.610623, 39.721245 ], [ -79.608223, 39.721154 ], [ -79.476662, 39.721078 ], [ -79.478866, 39.531689 ], [ -79.482354, 39.524682 ], [ -79.482648, 39.521364 ], [ -79.487651, 39.279933 ], [ -79.486737, 39.278149 ], [ -79.486179, 39.264970 ], [ -79.485874, 39.264905 ], [ -79.486873, 39.205961 ], [ -79.402911, 39.250106 ], [ -79.378687, 39.271920 ], [ -79.280039, 39.340076 ], [ -79.256880, 39.356077 ], [ -79.213192, 39.367897 ], [ -79.201676, 39.379726 ], [ -79.084450, 39.471356 ], [ -79.067072, 39.474658 ], [ -79.042440, 39.479339 ], [ -79.025681, 39.465539 ], [ -78.968996, 39.441543 ], [ -78.874744, 39.522611 ], [ -78.824788, 39.590233 ], [ -78.787461, 39.627492 ], [ -78.760497, 39.609984 ], [ -78.769029, 39.599871 ], [ -78.772048, 39.593833 ], [ -78.767490, 39.587487 ], [ -78.760196, 39.582154 ], [ -78.689455, 39.545770 ], [ -78.676219, 39.540622 ], [ -78.657324, 39.535087 ], [ -78.655984, 39.534695 ], [ -78.565929, 39.519444 ], [ -78.468639, 39.516789 ], [ -78.436939, 39.538959 ], [ -78.432033, 39.561053 ], [ -78.450207, 39.570889 ], [ -78.454376, 39.574319 ], [ -78.458456, 39.581158 ], [ -78.457187, 39.587379 ], [ -78.430250, 39.623290 ], [ -78.355218, 39.640576 ], [ -78.334044, 39.635770 ], [ -78.313033, 39.631001 ], [ -78.283039, 39.620470 ], [ -78.271122, 39.619642 ], [ -78.224337, 39.663270 ], [ -78.191107, 39.690262 ], [ -78.182759, 39.695110 ], [ -78.176625, 39.695967 ], [ -78.143478, 39.690412 ], [ -78.107834, 39.682137 ], [ -78.074595, 39.666686 ], [ -78.035992, 39.635720 ], [ -78.023427, 39.619860 ], [ -78.009985, 39.602893 ], [ -77.946442, 39.584910 ], [ -77.902649, 39.587796 ], [ -77.884536, 39.568174 ], [ -77.886135, 39.560432 ], [ -77.888945, 39.555950 ], [ -77.865423, 39.516472 ], [ -77.845105, 39.498285 ], [ -77.825411, 39.494036 ], [ -77.807821, 39.490241 ], [ -77.765442, 39.428574 ], [ -77.739204, 39.385730 ], [ -77.760435, 39.344171 ], [ -77.760586, 39.338864 ], [ -77.755789, 39.333899 ], [ -77.727379, 39.321666 ], [ -77.719029, 39.321125 ], [ -77.750267, 39.289284 ], [ -77.753357, 39.280331 ], [ -77.753060, 39.277971 ], [ -77.753105, 39.277340 ], [ -77.755193, 39.275191 ], [ -77.755698, 39.274575 ], [ -77.758412, 39.269197 ], [ -77.758733, 39.268114 ], [ -77.761217, 39.263721 ], [ -77.761768, 39.263031 ], [ -77.768000, 39.257657 ], [ -77.768992, 39.256417 ], [ -77.767277, 39.249380 ], [ -77.771415, 39.236776 ], [ -77.822182, 39.139985 ], [ -77.828157, 39.132329 ], [ -78.032841, 39.264403 ], [ -78.033183, 39.264624 ], [ -78.033185, 39.264626 ], [ -78.228766, 39.391233 ], [ -78.347087, 39.466012 ], [ -78.362267, 39.357784 ], [ -78.340480, 39.353492 ], [ -78.358940, 39.319484 ], [ -78.360035, 39.317771 ], [ -78.399785, 39.244129 ], [ -78.399669, 39.243874 ], [ -78.423968, 39.212049 ], [ -78.427911, 39.208611 ], [ -78.429803, 39.207014 ], [ -78.431167, 39.205744 ], [ -78.432130, 39.204717 ], [ -78.437053, 39.199766 ], [ -78.438651, 39.198049 ], [ -78.426722, 39.188903 ], [ -78.410740, 39.171983 ], [ -78.418377, 39.156656 ], [ -78.439429, 39.132146 ], [ -78.459869, 39.113351 ], [ -78.508132, 39.088630 ], [ -78.544111, 39.056676 ], [ -78.571901, 39.031995 ] ] ] } }\n,\n{ \"type\": \"Feature\", \"properties\": { \"GEO_ID\": \"0400000US55\", \"STATE\": \"55\", \"NAME\": \"Wisconsin\", \"LSAD\": \"\", \"CENSUSAREA\": 54157.805000 }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [ [ [ [ -90.456677, 47.016737 ], [ -90.455300, 47.023750 ], [ -90.455251, 47.024000 ], [ -90.456008, 47.032085 ], [ -90.456380, 47.036062 ], [ -90.457076, 47.043506 ], [ -90.457128, 47.044058 ], [ -90.455502, 47.051331 ], [ -90.455113, 47.053071 ], [ -90.455024, 47.053470 ], [ -90.449572, 47.064965 ], [ -90.449083, 47.065995 ], [ -90.449075, 47.066013 ], [ -90.449024, 47.066045 ], [ -90.448439, 47.066415 ], [ -90.441968, 47.070511 ], [ -90.438734, 47.072557 ], [ -90.437271, 47.073483 ], [ -90.435387, 47.073868 ], [ -90.434762, 47.073996 ], [ -90.434543, 47.074040 ], [ -90.428370, 47.075302 ], [ -90.427087, 47.075564 ], [ -90.425277, 47.075934 ], [ -90.417272, 47.077570 ], [ -90.400234, 47.077263 ], [ -90.398913, 47.077239 ], [ -90.395367, 47.077175 ], [ -90.395170, 47.077017 ], [ -90.394950, 47.076841 ], [ -90.393848, 47.075956 ], [ -90.393830, 47.075941 ], [ -90.393723, 47.074859 ], [ -90.393115, 47.068687 ], [ -90.393111, 47.068644 ], [ -90.393077, 47.068304 ], [ -90.393035, 47.067877 ], [ -90.393241, 47.066753 ], [ -90.393277, 47.066557 ], [ -90.393342, 47.066204 ], [ -90.393351, 47.066153 ], [ -90.393507, 47.065302 ], [ -90.394212, 47.061452 ], [ -90.394312, 47.060909 ], [ -90.395988, 47.056972 ], [ -90.396177, 47.056528 ], [ -90.396275, 47.056299 ], [ -90.400067, 47.047391 ], [ -90.400219, 47.047034 ], [ -90.400365, 47.046691 ], [ -90.400409, 47.046588 ], [ -90.400427, 47.046463 ], [ -90.403306, 47.026693 ], [ -90.403321, 47.026590 ], [ -90.403499, 47.025366 ], [ -90.403908, 47.024864 ], [ -90.405033, 47.023482 ], [ -90.409437, 47.018072 ], [ -90.411972, 47.014958 ], [ -90.412886, 47.013836 ], [ -90.413133, 47.013533 ], [ -90.413428, 47.013170 ], [ -90.425351, 47.007526 ], [ -90.427320, 47.006593 ], [ -90.428273, 47.006142 ], [ -90.428438, 47.006064 ], [ -90.429397, 47.005610 ], [ -90.429539, 47.005565 ], [ -90.448857, 46.999452 ], [ -90.453619, 46.997946 ], [ -90.457445, 46.996735 ], [ -90.464079, 46.994636 ], [ -90.464087, 46.994681 ], [ -90.465465, 47.002593 ], [ -90.465321, 47.002777 ], [ -90.457688, 47.012484 ], [ -90.457453, 47.012783 ], [ -90.457315, 47.013488 ], [ -90.457272, 47.013707 ], [ -90.456677, 47.016737 ] ] ], [ [ [ -90.636718, 46.861323 ], [ -90.636386, 46.861705 ], [ -90.634048, 46.864396 ], [ -90.622048, 46.872872 ], [ -90.616452, 46.874466 ], [ -90.602619, 46.872715 ], [ -90.602552, 46.872706 ], [ -90.601924, 46.872099 ], [ -90.593899, 46.864344 ], [ -90.588190, 46.858827 ], [ -90.587392, 46.858056 ], [ -90.587306, 46.858015 ], [ -90.570006, 46.849696 ], [ -90.569868, 46.849398 ], [ -90.568938, 46.847391 ], [ -90.568874, 46.847252 ], [ -90.569108, 46.847112 ], [ -90.570652, 46.846192 ], [ -90.578263, 46.841653 ], [ -90.578390, 46.841616 ], [ -90.582347, 46.840454 ], [ -90.584489, 46.839825 ], [ -90.585050, 46.839789 ], [ -90.589921, 46.839476 ], [ -90.601288, 46.838747 ], [ -90.603290, 46.838618 ], [ -90.609501, 46.838219 ], [ -90.610306, 46.838168 ], [ -90.613569, 46.837958 ], [ -90.613822, 46.837942 ], [ -90.614240, 46.837815 ], [ -90.625480, 46.834395 ], [ -90.658031, 46.824493 ], [ -90.673838, 46.819684 ], [ -90.676133, 46.818986 ], [ -90.683356, 46.813275 ], [ -90.685753, 46.805003 ], [ -90.670438, 46.799633 ], [ -90.670049, 46.799496 ], [ -90.665389, 46.799394 ], [ -90.655310, 46.799173 ], [ -90.654861, 46.798907 ], [ -90.654550, 46.798723 ], [ -90.652916, 46.797755 ], [ -90.652906, 46.797707 ], [ -90.652343, 46.795088 ], [ -90.652236, 46.794589 ], [ -90.652219, 46.794511 ], [ -90.652591, 46.794083 ], [ -90.653417, 46.793131 ], [ -90.654103, 46.792342 ], [ -90.655339, 46.790919 ], [ -90.655375, 46.790877 ], [ -90.655483, 46.790753 ], [ -90.655611, 46.790606 ], [ -90.655682, 46.790524 ], [ -90.656358, 46.789745 ], [ -90.657179, 46.788800 ], [ -90.658920, 46.788500 ], [ -90.660541, 46.788221 ], [ -90.661154, 46.788116 ], [ -90.661517, 46.788054 ], [ -90.663260, 46.787754 ], [ -90.679469, 46.784964 ], [ -90.687630, 46.783560 ], [ -90.688602, 46.783393 ], [ -90.689259, 46.783280 ], [ -90.691473, 46.782899 ], [ -90.692974, 46.782641 ], [ -90.696465, 46.782040 ], [ -90.696934, 46.782119 ], [ -90.706594, 46.783752 ], [ -90.716456, 46.785418 ], [ -90.723938, 46.781737 ], [ -90.734915, 46.772015 ], [ -90.738840, 46.768539 ], [ -90.739425, 46.768021 ], [ -90.758019, 46.757969 ], [ -90.762500, 46.755547 ], [ -90.763647, 46.754927 ], [ -90.765221, 46.754534 ], [ -90.766611, 46.754187 ], [ -90.771228, 46.753034 ], [ -90.774436, 46.753086 ], [ -90.787751, 46.753301 ], [ -90.787810, 46.753302 ], [ -90.788304, 46.753310 ], [ -90.788515, 46.753313 ], [ -90.788430, 46.753619 ], [ -90.788285, 46.754145 ], [ -90.787554, 46.756786 ], [ -90.785415, 46.764520 ], [ -90.783086, 46.772939 ], [ -90.788926, 46.779191 ], [ -90.789243, 46.779529 ], [ -90.790965, 46.781373 ], [ -90.790992, 46.781534 ], [ -90.791085, 46.782097 ], [ -90.791358, 46.783752 ], [ -90.791392, 46.783955 ], [ -90.791517, 46.784713 ], [ -90.791562, 46.784983 ], [ -90.790231, 46.786103 ], [ -90.781682, 46.788835 ], [ -90.759119, 46.796044 ], [ -90.758586, 46.796214 ], [ -90.745720, 46.798228 ], [ -90.740603, 46.799029 ], [ -90.736609, 46.799654 ], [ -90.733231, 46.800183 ], [ -90.733001, 46.800219 ], [ -90.732823, 46.800385 ], [ -90.729581, 46.803395 ], [ -90.728546, 46.804356 ], [ -90.728384, 46.805707 ], [ -90.727952, 46.809319 ], [ -90.727818, 46.810434 ], [ -90.720932, 46.815897 ], [ -90.712381, 46.820743 ], [ -90.704619, 46.823508 ], [ -90.694496, 46.827114 ], [ -90.682954, 46.831225 ], [ -90.675364, 46.833929 ], [ -90.672908, 46.835202 ], [ -90.656946, 46.843476 ], [ -90.656109, 46.844108 ], [ -90.655873, 46.844286 ], [ -90.655691, 46.844424 ], [ -90.654497, 46.845325 ], [ -90.654472, 46.845344 ], [ -90.651804, 46.847359 ], [ -90.651231, 46.847792 ], [ -90.650914, 46.848031 ], [ -90.647486, 46.850620 ], [ -90.646982, 46.851001 ], [ -90.643218, 46.853844 ], [ -90.637885, 46.859981 ], [ -90.637091, 46.860895 ], [ -90.636718, 46.861323 ] ] ], [ [ [ -90.579568, 46.918230 ], [ -90.592933, 46.915558 ], [ -90.623547, 46.909438 ], [ -90.624635, 46.909221 ], [ -90.625685, 46.909011 ], [ -90.637124, 46.906724 ], [ -90.644120, 46.908373 ], [ -90.644144, 46.908379 ], [ -90.644218, 46.908455 ], [ -90.654796, 46.919249 ], [ -90.654805, 46.919259 ], [ -90.654797, 46.919276 ], [ -90.651834, 46.925267 ], [ -90.651043, 46.926074 ], [ -90.646351, 46.930860 ], [ -90.645340, 46.931893 ], [ -90.644790, 46.932453 ], [ -90.643966, 46.933294 ], [ -90.643328, 46.933944 ], [ -90.634507, 46.942944 ], [ -90.633915, 46.943113 ], [ -90.601876, 46.952251 ], [ -90.601153, 46.952457 ], [ -90.572383, 46.958835 ], [ -90.530597, 46.968099 ], [ -90.528804, 46.968497 ], [ -90.528182, 46.968396 ], [ -90.524874, 46.967860 ], [ -90.523298, 46.967604 ], [ -90.521791, 46.966804 ], [ -90.514782, 46.963084 ], [ -90.514616, 46.962996 ], [ -90.513328, 46.962312 ], [ -90.512884, 46.962076 ], [ -90.512211, 46.961719 ], [ -90.511623, 46.961407 ], [ -90.509880, 46.959108 ], [ -90.509372, 46.958438 ], [ -90.508157, 46.956836 ], [ -90.511124, 46.952885 ], [ -90.524018, 46.935714 ], [ -90.524056, 46.935664 ], [ -90.532652, 46.932489 ], [ -90.535368, 46.931486 ], [ -90.539947, 46.927850 ], [ -90.543583, 46.923002 ], [ -90.543852, 46.918289 ], [ -90.545105, 46.917287 ], [ -90.545872, 46.916673 ], [ -90.549104, 46.915461 ], [ -90.550371, 46.915829 ], [ -90.553280, 46.916674 ], [ -90.557319, 46.918693 ], [ -90.569169, 46.920309 ], [ -90.579568, 46.918230 ] ] ], [ [ [ -87.500105, 45.061117 ], [ -87.498964, 45.061231 ], [ -87.497254, 45.061278 ], [ -87.496415, 45.061072 ], [ -87.495479, 45.060661 ], [ -87.494543, 45.060044 ], [ -87.493381, 45.059107 ], [ -87.492864, 45.058376 ], [ -87.492850, 45.058325 ], [ -87.492702, 45.057805 ], [ -87.492691, 45.057799 ], [ -87.492573, 45.057736 ], [ -87.492563, 45.057653 ], [ -87.492540, 45.057462 ], [ -87.492516, 45.057419 ], [ -87.492411, 45.057233 ], [ -87.492314, 45.056936 ], [ -87.492023, 45.056502 ], [ -87.491765, 45.056273 ], [ -87.491636, 45.056227 ], [ -87.491507, 45.056090 ], [ -87.491345, 45.056022 ], [ -87.490216, 45.055222 ], [ -87.490151, 45.055039 ], [ -87.490189, 45.055017 ], [ -87.490312, 45.054948 ], [ -87.490925, 45.055039 ], [ -87.492668, 45.055792 ], [ -87.494475, 45.056523 ], [ -87.498379, 45.057733 ], [ -87.498670, 45.057779 ], [ -87.498863, 45.057847 ], [ -87.500105, 45.058167 ], [ -87.501572, 45.058602 ], [ -87.504281, 45.059198 ], [ -87.504967, 45.059287 ], [ -87.506055, 45.059428 ], [ -87.506086, 45.059461 ], [ -87.506184, 45.059565 ], [ -87.506109, 45.059644 ], [ -87.506054, 45.059702 ], [ -87.504488, 45.060024 ], [ -87.504280, 45.060067 ], [ -87.503602, 45.060272 ], [ -87.502440, 45.060706 ], [ -87.501802, 45.060841 ], [ -87.500603, 45.061094 ], [ -87.500105, 45.061117 ] ] ], [ [ [ -86.945964, 45.407673 ], [ -86.943041, 45.415250 ], [ -86.942901, 45.415392 ], [ -86.941237, 45.417075 ], [ -86.937393, 45.420966 ], [ -86.936224, 45.421035 ], [ -86.934724, 45.421123 ], [ -86.934276, 45.421149 ], [ -86.934091, 45.420972 ], [ -86.930511, 45.417536 ], [ -86.929028, 45.413770 ], [ -86.928246, 45.411784 ], [ -86.928045, 45.411273 ], [ -86.927768, 45.411183 ], [ -86.917686, 45.407890 ], [ -86.914004, 45.408052 ], [ -86.909743, 45.408239 ], [ -86.902739, 45.408547 ], [ -86.898049, 45.408753 ], [ -86.892893, 45.408980 ], [ -86.883364, 45.412076 ], [ -86.880629, 45.412965 ], [ -86.877502, 45.413981 ], [ -86.865002, 45.412489 ], [ -86.862174, 45.412151 ], [ -86.861472, 45.412067 ], [ -86.861317, 45.411946 ], [ -86.859922, 45.410853 ], [ -86.855993, 45.407777 ], [ -86.853145, 45.405547 ], [ -86.853082, 45.405562 ], [ -86.830353, 45.410852 ], [ -86.830331, 45.410955 ], [ -86.829741, 45.413705 ], [ -86.829352, 45.415516 ], [ -86.829143, 45.416490 ], [ -86.829905, 45.420623 ], [ -86.830123, 45.421805 ], [ -86.830175, 45.422092 ], [ -86.830900, 45.426023 ], [ -86.830755, 45.426186 ], [ -86.828731, 45.428461 ], [ -86.828661, 45.428539 ], [ -86.828071, 45.428459 ], [ -86.821770, 45.427602 ], [ -86.817069, 45.426963 ], [ -86.816741, 45.426760 ], [ -86.815510, 45.425998 ], [ -86.810055, 45.422619 ], [ -86.809910, 45.422283 ], [ -86.805978, 45.413159 ], [ -86.805868, 45.412903 ], [ -86.805843, 45.412592 ], [ -86.805767, 45.411661 ], [ -86.805652, 45.410247 ], [ -86.805415, 45.407324 ], [ -86.808303, 45.406067 ], [ -86.808658, 45.406143 ], [ -86.814956, 45.407483 ], [ -86.815881, 45.407680 ], [ -86.817148, 45.407950 ], [ -86.818073, 45.408147 ], [ -86.819540, 45.407679 ], [ -86.822083, 45.406868 ], [ -86.824383, 45.406135 ], [ -86.824730, 45.405798 ], [ -86.837482, 45.393432 ], [ -86.841432, 45.389601 ], [ -86.853103, 45.370861 ], [ -86.853182, 45.370816 ], [ -86.857308, 45.368460 ], [ -86.858384, 45.367846 ], [ -86.863367, 45.365000 ], [ -86.863563, 45.364888 ], [ -86.863600, 45.364783 ], [ -86.863694, 45.364518 ], [ -86.863719, 45.364446 ], [ -86.864314, 45.362764 ], [ -86.867743, 45.353065 ], [ -86.867710, 45.352890 ], [ -86.866244, 45.344992 ], [ -86.866126, 45.344356 ], [ -86.865528, 45.341136 ], [ -86.865499, 45.340981 ], [ -86.865634, 45.340686 ], [ -86.866054, 45.339765 ], [ -86.869031, 45.333244 ], [ -86.869041, 45.333223 ], [ -86.869510, 45.333041 ], [ -86.872296, 45.331962 ], [ -86.874685, 45.331037 ], [ -86.874761, 45.331008 ], [ -86.875117, 45.330870 ], [ -86.879361, 45.331335 ], [ -86.880572, 45.331467 ], [ -86.887802, 45.332259 ], [ -86.895055, 45.329035 ], [ -86.899488, 45.322588 ], [ -86.896667, 45.307275 ], [ -86.896922, 45.298521 ], [ -86.896928, 45.298300 ], [ -86.899891, 45.295185 ], [ -86.900636, 45.295431 ], [ -86.901602, 45.295750 ], [ -86.904362, 45.296662 ], [ -86.904898, 45.296839 ], [ -86.913995, 45.312110 ], [ -86.925681, 45.324200 ], [ -86.937368, 45.333065 ], [ -86.940715, 45.333762 ], [ -86.941070, 45.333836 ], [ -86.946796, 45.335027 ], [ -86.946943, 45.335058 ], [ -86.948087, 45.335296 ], [ -86.951550, 45.338298 ], [ -86.954990, 45.341280 ], [ -86.955456, 45.341684 ], [ -86.955577, 45.341788 ], [ -86.955691, 45.341888 ], [ -86.956054, 45.342202 ], [ -86.956129, 45.342267 ], [ -86.956140, 45.343785 ], [ -86.956192, 45.351179 ], [ -86.956198, 45.352006 ], [ -86.954435, 45.353706 ], [ -86.953389, 45.354715 ], [ -86.953360, 45.354720 ], [ -86.948272, 45.355682 ], [ -86.946297, 45.358690 ], [ -86.946475, 45.359826 ], [ -86.946503, 45.360004 ], [ -86.946791, 45.361845 ], [ -86.947142, 45.364085 ], [ -86.947510, 45.366434 ], [ -86.947604, 45.366645 ], [ -86.947684, 45.366825 ], [ -86.948731, 45.369178 ], [ -86.948743, 45.369205 ], [ -86.948803, 45.369338 ], [ -86.954970, 45.383194 ], [ -86.955204, 45.383721 ], [ -86.954329, 45.385989 ], [ -86.953773, 45.387430 ], [ -86.951866, 45.392373 ], [ -86.951176, 45.394162 ], [ -86.947346, 45.404090 ], [ -86.947074, 45.404796 ], [ -86.946837, 45.405410 ], [ -86.945964, 45.407673 ] ] ], [ [ [ -87.762620, 44.965796 ], [ -87.762700, 44.965786 ], [ -87.762846, 44.965768 ], [ -87.766115, 44.965351 ], [ -87.766872, 44.965254 ], [ -87.781298, 44.961738 ], [ -87.781464, 44.961697 ], [ -87.788987, 44.959863 ], [ -87.789934, 44.959633 ], [ -87.791372, 44.959282 ], [ -87.791987, 44.959132 ], [ -87.792325, 44.959050 ], [ -87.812594, 44.954109 ], [ -87.812989, 44.954013 ], [ -87.813276, 44.953885 ], [ -87.813866, 44.953623 ], [ -87.815134, 44.953060 ], [ -87.816151, 44.952608 ], [ -87.817285, 44.952104 ], [ -87.817551, 44.951986 ], [ -87.817713, 44.951914 ], [ -87.817912, 44.951826 ], [ -87.818113, 44.951736 ], [ -87.819313, 44.951203 ], [ -87.819369, 44.951178 ], [ -87.819525, 44.951109 ], [ -87.820281, 44.950358 ], [ -87.820848, 44.949793 ], [ -87.821050, 44.949593 ], [ -87.821485, 44.949161 ], [ -87.821983, 44.948665 ], [ -87.822192, 44.948457 ], [ -87.837647, 44.933091 ], [ -87.839028, 44.931718 ], [ -87.843433, 44.924355 ], [ -87.844299, 44.918524 ], [ -87.842844, 44.912586 ], [ -87.842719, 44.912077 ], [ -87.842640, 44.911916 ], [ -87.842375, 44.911371 ], [ -87.840382, 44.907289 ], [ -87.839561, 44.905607 ], [ -87.837017, 44.902509 ], [ -87.836743, 44.902177 ], [ -87.836082, 44.901371 ], [ -87.834275, 44.899172 ], [ -87.833731, 44.898510 ], [ -87.833521, 44.898254 ], [ -87.832137, 44.896569 ], [ -87.827751, 44.891229 ], [ -87.832764, 44.880939 ], [ -87.835497, 44.877544 ], [ -87.836916, 44.875780 ], [ -87.838359, 44.873987 ], [ -87.847616, 44.870692 ], [ -87.848324, 44.870440 ], [ -87.849140, 44.869420 ], [ -87.852789, 44.864860 ], [ -87.854184, 44.859633 ], [ -87.854681, 44.857771 ], [ -87.854938, 44.857386 ], [ -87.855962, 44.855854 ], [ -87.857121, 44.854120 ], [ -87.857469, 44.853599 ], [ -87.865898, 44.840988 ], [ -87.866237, 44.840481 ], [ -87.871679, 44.839816 ], [ -87.878218, 44.839016 ], [ -87.885709, 44.835208 ], [ -87.892570, 44.831720 ], [ -87.895812, 44.830072 ], [ -87.897931, 44.828995 ], [ -87.899787, 44.828051 ], [ -87.901137, 44.827365 ], [ -87.901814, 44.825616 ], [ -87.902166, 44.824708 ], [ -87.903395, 44.821534 ], [ -87.903844, 44.820376 ], [ -87.904281, 44.819246 ], [ -87.904484, 44.818723 ], [ -87.905444, 44.816997 ], [ -87.906582, 44.814949 ], [ -87.911366, 44.806345 ], [ -87.918874, 44.792840 ], [ -87.923588, 44.784361 ], [ -87.925845, 44.780301 ], [ -87.926816, 44.778555 ], [ -87.941453, 44.756080 ], [ -87.951560, 44.753107 ], [ -87.956849, 44.749272 ], [ -87.964714, 44.743570 ], [ -87.972654, 44.733687 ], [ -87.983065, 44.720730 ], [ -87.983494, 44.720196 ], [ -87.983941, 44.717781 ], [ -87.983950, 44.717735 ], [ -87.984094, 44.716955 ], [ -87.984247, 44.716129 ], [ -87.984401, 44.715298 ], [ -87.986055, 44.706360 ], [ -87.986134, 44.705936 ], [ -87.987296, 44.699657 ], [ -87.987417, 44.699005 ], [ -87.988667, 44.692255 ], [ -87.989250, 44.689107 ], [ -87.989344, 44.688598 ], [ -87.989376, 44.688424 ], [ -87.989470, 44.687918 ], [ -87.989717, 44.686582 ], [ -87.989912, 44.677587 ], [ -87.990081, 44.669791 ], [ -87.990110, 44.668455 ], [ -87.998964, 44.665187 ], [ -88.000321, 44.664686 ], [ -88.002085, 44.664035 ], [ -88.002254, 44.663442 ], [ -88.002677, 44.661956 ], [ -88.003340, 44.659630 ], [ -88.007287, 44.645779 ], [ -88.009766, 44.637081 ], [ -88.009523, 44.631711 ], [ -88.009486, 44.630897 ], [ -88.009472, 44.630594 ], [ -88.009463, 44.630398 ], [ -88.008717, 44.628932 ], [ -88.007489, 44.626521 ], [ -88.007158, 44.625871 ], [ -88.007013, 44.625586 ], [ -88.006871, 44.625306 ], [ -88.006409, 44.624399 ], [ -88.001172, 44.614112 ], [ -87.998836, 44.609523 ], [ -87.998716, 44.609288 ], [ -88.001943, 44.603909 ], [ -88.012395, 44.602438 ], [ -88.014735, 44.596400 ], [ -88.015092, 44.595478 ], [ -88.016373, 44.592172 ], [ -88.016404, 44.592092 ], [ -88.019465, 44.588344 ], [ -88.022853, 44.584196 ], [ -88.027103, 44.578992 ], [ -88.028148, 44.578736 ], [ -88.034535, 44.577175 ], [ -88.036103, 44.576792 ], [ -88.036104, 44.576791 ], [ -88.039092, 44.574324 ], [ -88.039489, 44.573995 ], [ -88.041162, 44.572614 ], [ -88.041202, 44.572581 ], [ -88.041358, 44.571809 ], [ -88.041485, 44.571183 ], [ -88.041561, 44.570804 ], [ -88.041659, 44.570320 ], [ -88.041775, 44.569746 ], [ -88.042261, 44.567344 ], [ -88.042414, 44.566589 ], [ -88.037178, 44.562705 ], [ -88.020707, 44.550484 ], [ -88.016709, 44.547518 ], [ -88.005518, 44.539216 ], [ -88.000099, 44.537827 ], [ -87.999002, 44.537546 ], [ -87.998536, 44.537426 ], [ -87.990985, 44.535491 ], [ -87.990468, 44.535358 ], [ -87.986059, 44.534228 ], [ -87.982821, 44.533398 ], [ -87.977901, 44.532137 ], [ -87.970702, 44.530292 ], [ -87.943801, 44.529693 ], [ -87.939972, 44.531323 ], [ -87.935707, 44.533138 ], [ -87.929001, 44.535993 ], [ -87.924044, 44.540991 ], [ -87.917467, 44.547622 ], [ -87.917000, 44.548093 ], [ -87.915846, 44.549612 ], [ -87.901206, 44.568887 ], [ -87.901178, 44.568924 ], [ -87.901177, 44.568925 ], [ -87.900668, 44.570084 ], [ -87.899368, 44.573043 ], [ -87.898907, 44.574091 ], [ -87.898888, 44.574135 ], [ -87.899183, 44.574576 ], [ -87.900198, 44.576095 ], [ -87.900634, 44.576747 ], [ -87.901061, 44.577386 ], [ -87.901236, 44.577648 ], [ -87.903689, 44.581317 ], [ -87.902319, 44.583079 ], [ -87.901179, 44.584545 ], [ -87.896412, 44.586780 ], [ -87.894356, 44.587745 ], [ -87.891727, 44.588977 ], [ -87.891717, 44.588982 ], [ -87.890868, 44.589647 ], [ -87.887410, 44.592356 ], [ -87.867941, 44.607606 ], [ -87.866884, 44.608434 ], [ -87.842164, 44.618826 ], [ -87.837416, 44.620822 ], [ -87.836101, 44.621375 ], [ -87.830848, 44.623583 ], [ -87.829229, 44.624521 ], [ -87.823444, 44.627870 ], [ -87.820083, 44.629816 ], [ -87.809076, 44.636189 ], [ -87.808819, 44.636338 ], [ -87.808366, 44.636378 ], [ -87.788240, 44.638137 ], [ -87.775160, 44.639281 ], [ -87.765774, 44.642023 ], [ -87.762912, 44.644110 ], [ -87.762376, 44.644501 ], [ -87.756048, 44.649117 ], [ -87.756031, 44.649129 ], [ -87.750899, 44.656192 ], [ -87.749090, 44.664131 ], [ -87.748409, 44.667122 ], [ -87.736058, 44.677025 ], [ -87.733701, 44.678916 ], [ -87.729836, 44.682015 ], [ -87.719780, 44.693246 ], [ -87.718413, 44.707765 ], [ -87.718409, 44.707811 ], [ -87.718427, 44.707870 ], [ -87.720248, 44.713833 ], [ -87.720599, 44.714984 ], [ -87.721816, 44.718969 ], [ -87.721252, 44.722361 ], [ -87.721059, 44.723522 ], [ -87.720889, 44.724548 ], [ -87.720312, 44.725073 ], [ -87.714401, 44.730449 ], [ -87.705852, 44.738225 ], [ -87.705733, 44.738364 ], [ -87.704653, 44.739630 ], [ -87.703557, 44.740914 ], [ -87.701022, 44.743882 ], [ -87.700778, 44.744169 ], [ -87.700539, 44.744448 ], [ -87.698653, 44.746657 ], [ -87.698584, 44.746738 ], [ -87.698246, 44.747133 ], [ -87.698167, 44.747226 ], [ -87.688207, 44.758892 ], [ -87.687497, 44.759567 ], [ -87.679709, 44.766973 ], [ -87.678368, 44.768247 ], [ -87.677995, 44.768602 ], [ -87.662056, 44.783758 ], [ -87.647764, 44.797347 ], [ -87.646300, 44.798739 ], [ -87.645229, 44.800466 ], [ -87.644646, 44.801407 ], [ -87.644637, 44.801423 ], [ -87.644545, 44.801571 ], [ -87.637104, 44.813575 ], [ -87.635416, 44.815124 ], [ -87.635265, 44.815263 ], [ -87.634476, 44.815986 ], [ -87.634390, 44.816065 ], [ -87.634381, 44.816073 ], [ -87.634059, 44.816369 ], [ -87.633418, 44.816956 ], [ -87.632977, 44.817361 ], [ -87.632892, 44.817439 ], [ -87.632699, 44.817616 ], [ -87.622014, 44.827419 ], [ -87.616384, 44.832585 ], [ -87.616242, 44.832715 ], [ -87.611852, 44.836743 ], [ -87.611118, 44.837416 ], [ -87.610245, 44.838217 ], [ -87.610063, 44.838384 ], [ -87.610018, 44.838405 ], [ -87.609784, 44.838514 ], [ -87.581635, 44.851638 ], [ -87.581306, 44.851791 ], [ -87.573175, 44.853118 ], [ -87.570851, 44.852932 ], [ -87.560183, 44.852080 ], [ -87.550288, 44.851290 ], [ -87.550003, 44.851381 ], [ -87.534723, 44.856250 ], [ -87.530999, 44.857437 ], [ -87.530794, 44.857594 ], [ -87.515142, 44.869596 ], [ -87.514590, 44.869380 ], [ -87.513775, 44.869061 ], [ -87.513413, 44.868919 ], [ -87.512129, 44.868416 ], [ -87.504868, 44.865573 ], [ -87.504405, 44.865392 ], [ -87.504303, 44.865352 ], [ -87.502431, 44.864619 ], [ -87.501578, 44.864285 ], [ -87.499063, 44.864207 ], [ -87.478489, 44.863572 ], [ -87.472639, 44.867690 ], [ -87.456688, 44.878918 ], [ -87.441339, 44.889723 ], [ -87.437084, 44.892718 ], [ -87.433128, 44.892741 ], [ -87.433005, 44.892691 ], [ -87.428144, 44.890738 ], [ -87.421007, 44.887869 ], [ -87.420327, 44.887596 ], [ -87.419106, 44.885378 ], [ -87.419114, 44.885285 ], [ -87.419135, 44.885052 ], [ -87.419951, 44.875940 ], [ -87.419253, 44.874960 ], [ -87.410919, 44.863259 ], [ -87.410015, 44.861990 ], [ -87.408779, 44.861453 ], [ -87.405658, 44.860098 ], [ -87.405541, 44.860047 ], [ -87.384821, 44.865532 ], [ -87.384593, 44.869277 ], [ -87.383874, 44.881116 ], [ -87.383839, 44.881685 ], [ -87.383833, 44.881788 ], [ -87.383670, 44.884475 ], [ -87.383655, 44.884723 ], [ -87.383631, 44.885115 ], [ -87.385396, 44.889964 ], [ -87.386111, 44.890699 ], [ -87.386375, 44.890972 ], [ -87.386396, 44.890993 ], [ -87.386490, 44.891090 ], [ -87.390604, 44.895323 ], [ -87.390651, 44.895372 ], [ -87.390800, 44.895524 ], [ -87.391070, 44.895803 ], [ -87.391980, 44.896739 ], [ -87.392270, 44.897037 ], [ -87.393399, 44.898199 ], [ -87.396972, 44.899955 ], [ -87.397184, 44.900059 ], [ -87.397359, 44.900145 ], [ -87.400488, 44.901683 ], [ -87.401947, 44.902400 ], [ -87.406199, 44.904490 ], [ -87.405361, 44.909626 ], [ -87.405005, 44.911806 ], [ -87.398368, 44.925226 ], [ -87.393752, 44.933751 ], [ -87.393672, 44.933899 ], [ -87.393405, 44.934393 ], [ -87.393058, 44.934677 ], [ -87.389006, 44.937988 ], [ -87.387253, 44.939421 ], [ -87.385066, 44.942445 ], [ -87.384669, 44.942993 ], [ -87.382436, 44.946080 ], [ -87.374805, 44.956631 ], [ -87.373046, 44.960388 ], [ -87.372599, 44.961343 ], [ -87.372568, 44.961410 ], [ -87.371854, 44.962935 ], [ -87.370075, 44.966736 ], [ -87.363492, 44.980798 ], [ -87.360288, 44.987643 ], [ -87.351487, 44.997203 ], [ -87.345091, 45.004151 ], [ -87.336548, 45.013431 ], [ -87.336457, 45.013530 ], [ -87.322117, 45.034201 ], [ -87.322022, 45.034290 ], [ -87.315879, 45.040103 ], [ -87.307394, 45.048130 ], [ -87.303475, 45.051838 ], [ -87.303420, 45.051890 ], [ -87.303149, 45.052146 ], [ -87.302831, 45.052447 ], [ -87.302470, 45.052666 ], [ -87.300887, 45.053625 ], [ -87.300724, 45.053724 ], [ -87.300146, 45.054075 ], [ -87.284280, 45.063694 ], [ -87.284208, 45.063760 ], [ -87.269231, 45.077396 ], [ -87.268737, 45.077847 ], [ -87.268695, 45.077884 ], [ -87.264877, 45.081361 ], [ -87.260631, 45.092355 ], [ -87.260542, 45.092585 ], [ -87.260595, 45.106007 ], [ -87.257449, 45.121644 ], [ -87.254072, 45.126323 ], [ -87.250487, 45.131289 ], [ -87.240813, 45.137559 ], [ -87.240308, 45.137886 ], [ -87.242331, 45.146773 ], [ -87.242924, 45.149377 ], [ -87.238426, 45.166492 ], [ -87.238229, 45.167238 ], [ -87.238224, 45.167259 ], [ -87.238220, 45.167262 ], [ -87.231925, 45.172316 ], [ -87.231214, 45.172887 ], [ -87.224065, 45.174551 ], [ -87.222316, 45.174959 ], [ -87.221971, 45.175039 ], [ -87.221707, 45.174716 ], [ -87.220937, 45.173773 ], [ -87.214370, 45.165735 ], [ -87.213483, 45.165614 ], [ -87.207963, 45.164857 ], [ -87.200385, 45.163819 ], [ -87.195876, 45.163201 ], [ -87.195213, 45.163110 ], [ -87.175170, 45.173000 ], [ -87.175068, 45.173050 ], [ -87.173722, 45.174850 ], [ -87.171272, 45.178123 ], [ -87.171233, 45.178175 ], [ -87.170266, 45.179468 ], [ -87.170062, 45.179741 ], [ -87.168298, 45.182099 ], [ -87.168252, 45.182160 ], [ -87.167179, 45.183594 ], [ -87.163169, 45.185331 ], [ -87.147709, 45.190711 ], [ -87.147657, 45.190719 ], [ -87.142708, 45.191437 ], [ -87.133030, 45.192843 ], [ -87.132874, 45.192794 ], [ -87.129810, 45.191825 ], [ -87.128597, 45.191441 ], [ -87.124549, 45.190162 ], [ -87.123689, 45.189890 ], [ -87.119972, 45.191103 ], [ -87.119971, 45.191125 ], [ -87.119968, 45.191198 ], [ -87.119925, 45.192280 ], [ -87.119921, 45.192386 ], [ -87.119894, 45.193071 ], [ -87.119887, 45.193242 ], [ -87.119876, 45.193527 ], [ -87.119874, 45.193581 ], [ -87.119868, 45.193724 ], [ -87.119864, 45.193843 ], [ -87.119825, 45.194814 ], [ -87.119822, 45.194908 ], [ -87.119784, 45.195866 ], [ -87.119780, 45.195965 ], [ -87.119768, 45.196271 ], [ -87.119534, 45.202184 ], [ -87.119522, 45.202488 ], [ -87.119511, 45.202754 ], [ -87.119413, 45.205237 ], [ -87.119405, 45.205440 ], [ -87.119450, 45.205529 ], [ -87.119654, 45.205930 ], [ -87.121541, 45.209649 ], [ -87.121566, 45.209698 ], [ -87.121609, 45.209783 ], [ -87.122098, 45.215121 ], [ -87.122194, 45.216168 ], [ -87.122226, 45.216519 ], [ -87.122248, 45.216764 ], [ -87.122364, 45.218023 ], [ -87.122708, 45.221786 ], [ -87.122819, 45.222997 ], [ -87.121667, 45.226337 ], [ -87.121288, 45.227438 ], [ -87.121266, 45.227500 ], [ -87.117391, 45.238740 ], [ -87.116456, 45.241450 ], [ -87.116432, 45.241520 ], [ -87.109541, 45.255397 ], [ -87.109014, 45.256458 ], [ -87.108743, 45.257003 ], [ -87.108430, 45.257093 ], [ -87.101681, 45.259027 ], [ -87.078316, 45.265723 ], [ -87.071035, 45.280355 ], [ -87.070845, 45.280532 ], [ -87.057627, 45.292838 ], [ -87.053417, 45.287901 ], [ -87.052927, 45.287326 ], [ -87.052872, 45.287262 ], [ -87.051979, 45.286215 ], [ -87.051700, 45.285888 ], [ -87.050796, 45.285758 ], [ -87.048745, 45.285464 ], [ -87.043895, 45.284767 ], [ -87.043724, 45.284820 ], [ -87.043497, 45.284890 ], [ -87.043130, 45.285003 ], [ -87.041463, 45.285518 ], [ -87.034206, 45.287758 ], [ -87.034077, 45.287844 ], [ -87.021088, 45.296541 ], [ -87.017036, 45.299254 ], [ -87.015797, 45.299190 ], [ -86.994112, 45.298061 ], [ -86.993528, 45.297915 ], [ -86.993201, 45.297833 ], [ -86.984223, 45.295585 ], [ -86.983880, 45.295499 ], [ -86.983355, 45.295368 ], [ -86.983227, 45.295260 ], [ -86.980058, 45.292598 ], [ -86.977780, 45.290684 ], [ -86.977714, 45.290575 ], [ -86.970355, 45.278455 ], [ -86.972786, 45.274591 ], [ -86.973227, 45.273890 ], [ -86.974346, 45.272113 ], [ -86.974528, 45.271823 ], [ -86.974622, 45.271752 ], [ -86.977355, 45.269687 ], [ -86.983597, 45.264971 ], [ -86.984398, 45.264366 ], [ -86.984495, 45.263409 ], [ -86.984938, 45.259036 ], [ -86.984975, 45.258674 ], [ -86.984172, 45.255346 ], [ -86.983066, 45.250764 ], [ -86.982669, 45.249117 ], [ -86.982393, 45.248980 ], [ -86.976711, 45.246146 ], [ -86.973287, 45.246381 ], [ -86.973022, 45.246399 ], [ -86.973453, 45.244966 ], [ -86.973460, 45.244944 ], [ -86.973483, 45.244867 ], [ -86.973651, 45.244308 ], [ -86.974086, 45.242864 ], [ -86.978697, 45.227538 ], [ -86.978759, 45.227333 ], [ -86.981080, 45.223646 ], [ -86.981956, 45.222254 ], [ -86.983001, 45.220593 ], [ -86.983708, 45.219470 ], [ -86.985973, 45.215872 ], [ -86.988075, 45.215360 ], [ -86.995804, 45.213478 ], [ -86.997316, 45.213110 ], [ -87.000112, 45.212429 ], [ -87.002806, 45.211773 ], [ -87.005243, 45.213607 ], [ -87.005359, 45.213694 ], [ -87.005468, 45.214114 ], [ -87.007540, 45.222127 ], [ -87.007583, 45.222127 ], [ -87.032521, 45.222274 ], [ -87.032546, 45.222274 ], [ -87.032576, 45.222235 ], [ -87.034524, 45.219734 ], [ -87.040909, 45.211535 ], [ -87.040924, 45.211421 ], [ -87.041063, 45.210375 ], [ -87.041075, 45.210283 ], [ -87.041106, 45.210052 ], [ -87.045899, 45.173902 ], [ -87.045883, 45.173543 ], [ -87.045701, 45.169351 ], [ -87.045687, 45.169016 ], [ -87.045681, 45.168889 ], [ -87.045660, 45.168403 ], [ -87.045480, 45.164271 ], [ -87.045242, 45.158798 ], [ -87.045225, 45.158401 ], [ -87.044176, 45.157630 ], [ -87.041145, 45.155404 ], [ -87.038479, 45.153445 ], [ -87.036716, 45.152150 ], [ -87.034083, 45.150216 ], [ -87.030225, 45.147382 ], [ -87.029164, 45.146603 ], [ -87.028980, 45.146467 ], [ -87.028847, 45.146370 ], [ -87.028957, 45.146250 ], [ -87.030105, 45.145009 ], [ -87.030126, 45.144986 ], [ -87.031167, 45.143860 ], [ -87.031307, 45.143709 ], [ -87.032194, 45.142748 ], [ -87.032344, 45.142586 ], [ -87.032461, 45.142460 ], [ -87.032920, 45.141963 ], [ -87.033114, 45.141753 ], [ -87.033117, 45.141752 ], [ -87.033546, 45.141522 ], [ -87.033550, 45.141519 ], [ -87.034621, 45.140946 ], [ -87.034667, 45.140921 ], [ -87.035465, 45.140494 ], [ -87.035838, 45.140294 ], [ -87.040175, 45.137972 ], [ -87.041564, 45.137228 ], [ -87.042114, 45.136933 ], [ -87.042286, 45.136841 ], [ -87.045748, 45.134987 ], [ -87.054282, 45.120074 ], [ -87.054342, 45.119968 ], [ -87.051049, 45.116172 ], [ -87.050750, 45.115111 ], [ -87.049346, 45.110122 ], [ -87.049268, 45.109845 ], [ -87.049231, 45.109712 ], [ -87.048951, 45.108718 ], [ -87.048911, 45.107665 ], [ -87.048406, 45.094259 ], [ -87.048346, 45.092647 ], [ -87.048213, 45.089124 ], [ -87.048359, 45.089098 ], [ -87.050780, 45.088663 ], [ -87.057415, 45.087472 ], [ -87.057444, 45.087467 ], [ -87.058259, 45.086304 ], [ -87.061966, 45.081015 ], [ -87.063129, 45.079356 ], [ -87.063157, 45.079316 ], [ -87.063376, 45.079202 ], [ -87.064864, 45.078427 ], [ -87.079552, 45.070783 ], [ -87.079555, 45.070770 ], [ -87.080271, 45.067154 ], [ -87.080755, 45.064710 ], [ -87.081866, 45.059103 ], [ -87.082419, 45.058879 ], [ -87.086351, 45.057287 ], [ -87.090849, 45.055465 ], [ -87.091639, 45.055145 ], [ -87.091761, 45.055158 ], [ -87.092177, 45.055203 ], [ -87.096387, 45.055654 ], [ -87.097479, 45.055771 ], [ -87.121156, 45.058311 ], [ -87.124701, 45.052936 ], [ -87.124722, 45.050833 ], [ -87.124727, 45.050344 ], [ -87.124737, 45.049268 ], [ -87.124744, 45.048608 ], [ -87.124788, 45.044141 ], [ -87.124797, 45.043262 ], [ -87.124808, 45.042167 ], [ -87.132344, 45.026862 ], [ -87.134354, 45.022780 ], [ -87.138024, 45.015327 ], [ -87.139384, 45.012565 ], [ -87.141048, 45.012175 ], [ -87.154084, 45.009117 ], [ -87.163477, 45.004913 ], [ -87.163529, 45.004890 ], [ -87.163561, 45.004848 ], [ -87.167474, 44.999736 ], [ -87.167970, 44.999088 ], [ -87.169494, 44.997096 ], [ -87.169676, 44.996860 ], [ -87.169694, 44.996836 ], [ -87.181428, 44.981505 ], [ -87.181901, 44.980887 ], [ -87.182922, 44.979221 ], [ -87.187585, 44.971606 ], [ -87.189134, 44.969078 ], [ -87.189407, 44.968632 ], [ -87.189402, 44.968524 ], [ -87.189383, 44.968164 ], [ -87.188582, 44.952193 ], [ -87.188399, 44.948560 ], [ -87.188375, 44.948077 ], [ -87.188074, 44.947886 ], [ -87.179974, 44.942753 ], [ -87.175240, 44.939753 ], [ -87.171700, 44.931476 ], [ -87.174920, 44.927749 ], [ -87.182421, 44.926297 ], [ -87.185858, 44.925632 ], [ -87.186732, 44.925463 ], [ -87.187984, 44.924845 ], [ -87.204238, 44.916819 ], [ -87.215808, 44.906744 ], [ -87.215977, 44.906597 ], [ -87.216059, 44.906009 ], [ -87.216074, 44.905900 ], [ -87.216146, 44.905379 ], [ -87.217171, 44.898013 ], [ -87.217195, 44.897839 ], [ -87.217149, 44.897789 ], [ -87.216710, 44.897309 ], [ -87.212587, 44.892809 ], [ -87.209265, 44.889182 ], [ -87.206285, 44.885928 ], [ -87.206184, 44.885329 ], [ -87.204815, 44.877199 ], [ -87.204809, 44.877159 ], [ -87.204545, 44.875593 ], [ -87.204904, 44.875429 ], [ -87.211398, 44.872461 ], [ -87.224891, 44.866295 ], [ -87.246171, 44.856571 ], [ -87.267061, 44.847025 ], [ -87.267441, 44.846851 ], [ -87.267564, 44.846655 ], [ -87.274769, 44.835187 ], [ -87.276030, 44.833180 ], [ -87.282561, 44.814729 ], [ -87.294869, 44.809131 ], [ -87.304824, 44.804603 ], [ -87.307482, 44.801377 ], [ -87.313363, 44.794237 ], [ -87.313692, 44.793838 ], [ -87.313751, 44.793766 ], [ -87.313880, 44.793595 ], [ -87.314247, 44.793109 ], [ -87.315813, 44.791034 ], [ -87.320397, 44.784963 ], [ -87.319796, 44.779170 ], [ -87.319169, 44.773135 ], [ -87.319030, 44.771794 ], [ -87.319013, 44.771632 ], [ -87.318982, 44.771335 ], [ -87.319903, 44.769672 ], [ -87.320855, 44.767953 ], [ -87.337584, 44.737751 ], [ -87.339155, 44.732839 ], [ -87.339904, 44.730498 ], [ -87.341226, 44.726364 ], [ -87.341491, 44.725535 ], [ -87.343508, 44.719228 ], [ -87.348082, 44.711526 ], [ -87.349559, 44.709039 ], [ -87.353789, 44.701915 ], [ -87.354172, 44.701445 ], [ -87.354249, 44.701350 ], [ -87.361150, 44.692876 ], [ -87.367992, 44.684474 ], [ -87.368263, 44.684141 ], [ -87.373228, 44.675593 ], [ -87.378490, 44.666534 ], [ -87.386840, 44.652157 ], [ -87.393521, 44.640655 ], [ -87.401629, 44.631191 ], [ -87.403724, 44.628974 ], [ -87.405410, 44.627191 ], [ -87.418028, 44.620870 ], [ -87.435766, 44.606472 ], [ -87.437493, 44.605071 ], [ -87.437751, 44.604559 ], [ -87.446963, 44.586274 ], [ -87.467089, 44.553557 ], [ -87.467214, 44.553355 ], [ -87.467398, 44.553055 ], [ -87.468093, 44.551925 ], [ -87.472934, 44.539338 ], [ -87.481884, 44.516065 ], [ -87.483696, 44.511354 ], [ -87.483873, 44.505742 ], [ -87.483914, 44.504425 ], [ -87.484042, 44.503856 ], [ -87.486822, 44.491477 ], [ -87.490024, 44.477224 ], [ -87.492333, 44.472804 ], [ -87.494678, 44.468314 ], [ -87.495176, 44.467360 ], [ -87.495252, 44.467215 ], [ -87.498662, 44.460686 ], [ -87.498860, 44.459737 ], [ -87.498872, 44.459680 ], [ -87.498934, 44.459384 ], [ -87.499349, 44.457395 ], [ -87.499674, 44.455837 ], [ -87.499719, 44.455625 ], [ -87.502309, 44.443219 ], [ -87.506362, 44.423804 ], [ -87.507651, 44.421418 ], [ -87.511387, 44.414502 ], [ -87.511635, 44.414043 ], [ -87.512311, 44.411941 ], [ -87.512886, 44.410153 ], [ -87.515482, 44.402077 ], [ -87.517965, 44.394356 ], [ -87.517881, 44.390082 ], [ -87.517597, 44.375696 ], [ -87.517740, 44.375357 ], [ -87.518094, 44.374519 ], [ -87.519106, 44.372122 ], [ -87.521047, 44.367526 ], [ -87.521663, 44.366719 ], [ -87.533583, 44.351111 ], [ -87.533606, 44.351052 ], [ -87.541517, 44.331123 ], [ -87.542950, 44.327513 ], [ -87.545382, 44.321385 ], [ -87.544725, 44.307068 ], [ -87.544716, 44.306864 ], [ -87.544675, 44.306707 ], [ -87.541382, 44.294018 ], [ -87.541265, 44.293567 ], [ -87.541156, 44.293147 ], [ -87.541155, 44.293143 ], [ -87.541053, 44.292968 ], [ -87.526466, 44.268016 ], [ -87.526391, 44.267888 ], [ -87.526226, 44.267605 ], [ -87.525824, 44.266918 ], [ -87.525797, 44.266871 ], [ -87.525703, 44.266711 ], [ -87.525643, 44.266609 ], [ -87.525485, 44.266338 ], [ -87.525455, 44.266285 ], [ -87.525294, 44.266010 ], [ -87.525211, 44.265869 ], [ -87.524691, 44.264979 ], [ -87.524459, 44.264583 ], [ -87.524193, 44.264128 ], [ -87.523179, 44.262393 ], [ -87.522840, 44.261813 ], [ -87.522557, 44.261329 ], [ -87.521862, 44.260140 ], [ -87.521755, 44.259957 ], [ -87.521330, 44.258993 ], [ -87.521318, 44.258965 ], [ -87.515406, 44.245537 ], [ -87.515399, 44.245522 ], [ -87.515314, 44.245328 ], [ -87.508457, 44.229755 ], [ -87.508419, 44.229669 ], [ -87.508412, 44.229546 ], [ -87.507419, 44.210803 ], [ -87.512903, 44.192808 ], [ -87.519660, 44.179870 ], [ -87.539940, 44.159690 ], [ -87.550076, 44.152933 ], [ -87.563181, 44.144195 ], [ -87.563551, 44.144072 ], [ -87.567045, 44.142914 ], [ -87.567817, 44.142658 ], [ -87.570533, 44.141757 ], [ -87.596680, 44.133088 ], [ -87.597910, 44.132680 ], [ -87.599055, 44.132301 ], [ -87.600882, 44.131695 ], [ -87.603572, 44.130390 ], [ -87.621082, 44.121895 ], [ -87.645800, 44.105222 ], [ -87.646583, 44.104694 ], [ -87.646719, 44.104335 ], [ -87.647551, 44.102128 ], [ -87.647603, 44.101991 ], [ -87.651507, 44.091639 ], [ -87.654935, 44.082552 ], [ -87.655183, 44.081894 ], [ -87.653483, 44.067194 ], [ -87.653691, 44.065961 ], [ -87.656062, 44.051919 ], [ -87.656083, 44.051794 ], [ -87.671316, 44.037350 ], [ -87.683361, 44.020139 ], [ -87.686389, 44.012520 ], [ -87.691479, 43.999710 ], [ -87.695053, 43.990715 ], [ -87.695503, 43.989582 ], [ -87.695511, 43.989524 ], [ -87.698920, 43.965936 ], [ -87.699029, 43.965734 ], [ -87.700125, 43.963712 ], [ -87.700321, 43.963351 ], [ -87.702707, 43.958946 ], [ -87.702719, 43.958926 ], [ -87.703951, 43.956651 ], [ -87.704679, 43.955872 ], [ -87.706656, 43.953753 ], [ -87.709463, 43.950747 ], [ -87.716037, 43.943705 ], [ -87.718170, 43.939498 ], [ -87.719041, 43.937781 ], [ -87.719041, 43.937780 ], [ -87.719194, 43.937100 ], [ -87.720121, 43.932958 ], [ -87.720382, 43.931794 ], [ -87.720734, 43.930224 ], [ -87.721268, 43.927840 ], [ -87.722100, 43.924128 ], [ -87.723716, 43.916915 ], [ -87.724244, 43.914557 ], [ -87.726766, 43.903297 ], [ -87.726803, 43.903133 ], [ -87.726841, 43.903040 ], [ -87.728542, 43.898920 ], [ -87.728885, 43.898090 ], [ -87.730630, 43.893862 ], [ -87.730645, 43.893825 ], [ -87.731322, 43.892184 ], [ -87.733735, 43.886340 ], [ -87.734457, 43.884590 ], [ -87.735436, 43.882219 ], [ -87.736178, 43.880421 ], [ -87.736017, 43.873721 ], [ -87.734881, 43.870430 ], [ -87.728698, 43.852524 ], [ -87.728728, 43.851833 ], [ -87.729217, 43.840582 ], [ -87.729600, 43.831782 ], [ -87.727686, 43.818989 ], [ -87.726772, 43.812885 ], [ -87.726408, 43.810454 ], [ -87.726407, 43.810445 ], [ -87.726405, 43.810442 ], [ -87.700251, 43.767350 ], [ -87.700245, 43.767129 ], [ -87.700090, 43.761590 ], [ -87.700085, 43.761395 ], [ -87.702985, 43.749695 ], [ -87.703047, 43.749565 ], [ -87.704630, 43.746256 ], [ -87.705185, 43.745095 ], [ -87.708167, 43.742979 ], [ -87.708285, 43.742895 ], [ -87.708321, 43.742737 ], [ -87.709885, 43.735795 ], [ -87.708185, 43.722895 ], [ -87.707923, 43.722064 ], [ -87.703144, 43.706901 ], [ -87.702985, 43.706395 ], [ -87.702685, 43.687596 ], [ -87.703671, 43.685339 ], [ -87.706204, 43.679542 ], [ -87.706242, 43.679488 ], [ -87.726460, 43.650462 ], [ -87.733622, 43.640181 ], [ -87.734312, 43.639190 ], [ -87.735065, 43.638217 ], [ -87.735489, 43.637668 ], [ -87.735972, 43.637044 ], [ -87.736146, 43.636819 ], [ -87.737859, 43.634604 ], [ -87.738638, 43.633597 ], [ -87.742485, 43.628622 ], [ -87.742522, 43.628574 ], [ -87.780175, 43.579889 ], [ -87.781255, 43.578493 ], [ -87.782271, 43.576726 ], [ -87.789105, 43.564844 ], [ -87.790135, 43.563054 ], [ -87.790277, 43.562376 ], [ -87.793075, 43.548990 ], [ -87.794321, 43.543034 ], [ -87.797608, 43.527310 ], [ -87.797336, 43.510623 ], [ -87.793239, 43.492783 ], [ -87.807799, 43.461136 ], [ -87.827319, 43.434849 ], [ -87.855608, 43.405441 ], [ -87.865048, 43.393570 ], [ -87.867504, 43.389158 ], [ -87.869099, 43.386295 ], [ -87.872504, 43.380178 ], [ -87.877448, 43.369235 ], [ -87.882392, 43.352099 ], [ -87.888122, 43.314731 ], [ -87.888312, 43.313489 ], [ -87.888314, 43.313476 ], [ -87.888328, 43.313388 ], [ -87.888335, 43.313342 ], [ -87.888342, 43.313294 ], [ -87.889207, 43.307652 ], [ -87.897813, 43.291628 ], [ -87.900255, 43.287081 ], [ -87.901847, 43.284117 ], [ -87.902967, 43.280319 ], [ -87.903094, 43.279887 ], [ -87.903141, 43.279728 ], [ -87.903451, 43.278676 ], [ -87.904251, 43.275962 ], [ -87.906465, 43.268454 ], [ -87.906483, 43.268393 ], [ -87.906502, 43.268330 ], [ -87.906565, 43.268115 ], [ -87.906583, 43.268055 ], [ -87.906599, 43.268002 ], [ -87.906605, 43.267980 ], [ -87.906611, 43.267960 ], [ -87.907289, 43.265661 ], [ -87.907291, 43.265653 ], [ -87.907306, 43.265604 ], [ -87.909053, 43.259678 ], [ -87.910345, 43.255296 ], [ -87.911787, 43.250406 ], [ -87.911512, 43.248064 ], [ -87.910172, 43.236634 ], [ -87.910087, 43.235907 ], [ -87.897331, 43.200046 ], [ -87.897326, 43.200031 ], [ -87.897316, 43.200003 ], [ -87.897125, 43.199468 ], [ -87.896286, 43.197108 ], [ -87.895554, 43.196225 ], [ -87.892090, 43.192044 ], [ -87.888570, 43.187795 ], [ -87.887586, 43.186608 ], [ -87.886266, 43.183359 ], [ -87.884878, 43.179944 ], [ -87.884872, 43.179929 ], [ -87.884769, 43.179674 ], [ -87.881085, 43.170609 ], [ -87.886380, 43.160255 ], [ -87.888849, 43.155429 ], [ -87.889327, 43.154493 ], [ -87.889375, 43.154400 ], [ -87.889634, 43.153894 ], [ -87.891059, 43.151108 ], [ -87.892285, 43.148710 ], [ -87.896008, 43.143405 ], [ -87.898105, 43.140417 ], [ -87.899020, 43.139112 ], [ -87.900285, 43.137310 ], [ -87.901345, 43.133357 ], [ -87.901385, 43.133210 ], [ -87.901359, 43.133002 ], [ -87.900496, 43.126000 ], [ -87.900485, 43.125910 ], [ -87.900463, 43.125874 ], [ -87.893185, 43.114011 ], [ -87.879169, 43.101717 ], [ -87.877915, 43.100617 ], [ -87.876084, 43.099011 ], [ -87.872493, 43.089810 ], [ -87.872362, 43.089474 ], [ -87.872352, 43.089449 ], [ -87.872255, 43.089199 ], [ -87.871928, 43.088363 ], [ -87.870459, 43.084598 ], [ -87.866487, 43.074419 ], [ -87.866484, 43.074412 ], [ -87.870184, 43.064412 ], [ -87.870217, 43.064376 ], [ -87.875460, 43.058516 ], [ -87.876343, 43.057529 ], [ -87.881930, 43.051285 ], [ -87.882069, 43.051130 ], [ -87.882084, 43.051113 ], [ -87.889883, 43.045834 ], [ -87.894813, 43.042497 ], [ -87.895028, 43.042351 ], [ -87.895084, 43.042313 ], [ -87.895127, 43.042152 ], [ -87.896227, 43.038028 ], [ -87.896598, 43.036637 ], [ -87.898184, 43.030689 ], [ -87.898684, 43.028813 ], [ -87.896836, 43.020530 ], [ -87.896647, 43.019680 ], [ -87.896398, 43.018565 ], [ -87.896157, 43.017486 ], [ -87.895784, 43.015814 ], [ -87.893511, 43.011521 ], [ -87.889342, 43.003647 ], [ -87.889095, 43.003181 ], [ -87.888804, 43.002631 ], [ -87.887789, 43.000715 ], [ -87.887703, 43.000552 ], [ -87.887683, 43.000514 ], [ -87.878683, 42.992415 ], [ -87.857182, 42.978015 ], [ -87.845181, 42.962015 ], [ -87.844739, 42.958848 ], [ -87.843835, 42.952375 ], [ -87.843575, 42.950519 ], [ -87.842786, 42.944865 ], [ -87.842760, 42.944679 ], [ -87.842681, 42.944116 ], [ -87.844578, 42.923688 ], [ -87.846708, 42.900756 ], [ -87.847745, 42.889595 ], [ -87.847780, 42.889216 ], [ -87.845811, 42.884256 ], [ -87.834879, 42.856717 ], [ -87.831176, 42.849886 ], [ -87.827021, 42.842222 ], [ -87.825352, 42.839144 ], [ -87.824000, 42.836649 ], [ -87.823278, 42.835318 ], [ -87.822324, 42.834371 ], [ -87.804033, 42.816205 ], [ -87.803773, 42.815948 ], [ -87.796201, 42.808428 ], [ -87.793976, 42.806218 ], [ -87.789953, 42.803691 ], [ -87.786291, 42.801391 ], [ -87.785936, 42.801168 ], [ -87.773699, 42.793481 ], [ -87.773623, 42.793388 ], [ -87.766675, 42.784896 ], [ -87.769774, 42.773719 ], [ -87.771340, 42.771687 ], [ -87.777432, 42.763781 ], [ -87.778174, 42.762819 ], [ -87.778774, 42.760556 ], [ -87.780782, 42.752973 ], [ -87.781016, 42.752090 ], [ -87.781949, 42.748570 ], [ -87.782174, 42.747719 ], [ -87.781849, 42.745847 ], [ -87.781655, 42.744733 ], [ -87.781642, 42.744656 ], [ -87.781333, 42.742879 ], [ -87.779527, 42.732482 ], [ -87.778824, 42.728432 ], [ -87.778627, 42.727299 ], [ -87.780320, 42.718679 ], [ -87.782023, 42.710008 ], [ -87.782374, 42.708219 ], [ -87.783489, 42.705164 ], [ -87.784015, 42.703720 ], [ -87.785074, 42.700819 ], [ -87.786774, 42.700719 ], [ -87.794874, 42.689919 ], [ -87.802377, 42.676651 ], [ -87.802876, 42.675768 ], [ -87.802989, 42.675569 ], [ -87.803028, 42.675501 ], [ -87.803074, 42.675419 ], [ -87.803127, 42.675276 ], [ -87.805421, 42.669067 ], [ -87.805768, 42.668128 ], [ -87.807082, 42.664571 ], [ -87.809880, 42.656997 ], [ -87.809885, 42.656982 ], [ -87.811371, 42.652959 ], [ -87.813445, 42.647345 ], [ -87.814674, 42.644020 ], [ -87.819407, 42.617327 ], [ -87.819674, 42.615820 ], [ -87.819374, 42.606620 ], [ -87.815736, 42.596045 ], [ -87.815074, 42.594120 ], [ -87.810873, 42.587320 ], [ -87.811617, 42.584809 ], [ -87.812871, 42.580576 ], [ -87.813273, 42.579220 ], [ -87.813223, 42.576759 ], [ -87.813142, 42.572768 ], [ -87.813135, 42.572424 ], [ -87.812851, 42.558352 ], [ -87.812724, 42.552104 ], [ -87.812632, 42.547562 ], [ -87.812273, 42.529820 ], [ -87.809672, 42.514820 ], [ -87.800477, 42.491920 ], [ -87.800561, 42.491920 ], [ -87.815872, 42.491920 ], [ -87.843594, 42.492307 ], [ -87.900242, 42.493020 ], [ -87.971279, 42.494019 ], [ -87.990180, 42.494519 ], [ -88.049782, 42.495319 ], [ -88.199521, 42.496013 ], [ -88.200172, 42.496016 ], [ -88.216900, 42.495923 ], [ -88.271691, 42.494818 ], [ -88.304692, 42.494773 ], [ -88.417396, 42.494618 ], [ -88.461397, 42.494618 ], [ -88.470597, 42.494672 ], [ -88.506912, 42.494883 ], [ -88.707378, 42.493587 ], [ -88.707380, 42.493587 ], [ -88.776496, 42.494020 ], [ -88.940388, 42.495046 ], [ -88.940391, 42.495046 ], [ -88.943264, 42.495114 ], [ -88.992659, 42.496025 ], [ -88.992977, 42.496026 ], [ -89.013667, 42.496087 ], [ -89.013804, 42.496097 ], [ -89.042898, 42.496255 ], [ -89.071141, 42.496208 ], [ -89.099012, 42.496499 ], [ -89.116949, 42.496910 ], [ -89.120365, 42.496992 ], [ -89.125111, 42.496957 ], [ -89.164905, 42.497347 ], [ -89.166728, 42.497256 ], [ -89.226270, 42.497957 ], [ -89.228279, 42.498047 ], [ -89.246972, 42.498130 ], [ -89.250759, 42.497994 ], [ -89.290896, 42.498853 ], [ -89.361561, 42.500012 ], [ -89.366031, 42.500274 ], [ -89.401416, 42.500433 ], [ -89.401432, 42.500433 ], [ -89.420991, 42.500589 ], [ -89.422567, 42.500680 ], [ -89.423926, 42.500818 ], [ -89.425162, 42.500726 ], [ -89.484300, 42.501426 ], [ -89.492612, 42.501514 ], [ -89.493216, 42.501514 ], [ -89.522542, 42.501889 ], [ -89.564407, 42.502628 ], [ -89.594779, 42.503468 ], [ -89.600001, 42.503672 ], [ -89.603523, 42.503557 ], [ -89.613410, 42.503942 ], [ -89.644176, 42.504520 ], [ -89.650324, 42.504613 ], [ -89.667596, 42.504960 ], [ -89.690088, 42.505191 ], [ -89.693487, 42.505099 ], [ -89.742395, 42.505382 ], [ -89.769643, 42.505322 ], [ -89.780302, 42.505349 ], [ -89.793957, 42.505466 ], [ -89.799704, 42.505421 ], [ -89.801897, 42.505444 ], [ -89.837587, 42.505543 ], [ -89.926224, 42.505788 ], [ -89.926374, 42.505788 ], [ -89.926484, 42.505787 ], [ -89.985072, 42.506464 ], [ -89.985645, 42.506431 ], [ -89.997213, 42.506755 ], [ -89.999314, 42.506914 ], [ -90.017028, 42.507127 ], [ -90.018665, 42.507288 ], [ -90.093026, 42.508160 ], [ -90.095004, 42.507885 ], [ -90.142922, 42.508151 ], [ -90.164363, 42.508272 ], [ -90.181572, 42.508068 ], [ -90.206073, 42.507747 ], [ -90.223190, 42.507765 ], [ -90.250622, 42.507521 ], [ -90.253121, 42.507340 ], [ -90.267143, 42.507642 ], [ -90.269335, 42.507726 ], [ -90.272864, 42.507531 ], [ -90.303823, 42.507469 ], [ -90.362652, 42.507048 ], [ -90.367874, 42.507114 ], [ -90.370673, 42.507111 ], [ -90.405927, 42.506891 ], [ -90.426378, 42.507059 ], [ -90.437011, 42.507147 ], [ -90.474955, 42.507484 ], [ -90.479446, 42.507416 ], [ -90.491716, 42.507624 ], [ -90.532254, 42.507573 ], [ -90.544347, 42.507707 ], [ -90.544799, 42.507713 ], [ -90.551165, 42.507691 ], [ -90.555862, 42.507509 ], [ -90.565441, 42.507600 ], [ -90.614589, 42.508053 ], [ -90.617731, 42.508077 ], [ -90.640927, 42.508302 ], [ -90.636927, 42.513202 ], [ -90.636727, 42.518702 ], [ -90.645627, 42.544100 ], [ -90.702671, 42.630756 ], [ -90.709204, 42.636078 ], [ -90.720209, 42.640758 ], [ -90.769495, 42.651443 ], [ -90.843910, 42.663071 ], [ -90.896961, 42.674407 ], [ -90.949213, 42.685573 ], [ -90.976314, 42.695996 ], [ -91.053733, 42.738238 ], [ -91.064896, 42.757272 ], [ -91.069549, 42.769628 ], [ -91.077643, 42.803798 ], [ -91.100565, 42.883078 ], [ -91.117411, 42.895837 ], [ -91.143375, 42.904670 ], [ -91.145560, 42.907980 ], [ -91.163064, 42.986781 ], [ -91.175167, 43.041267 ], [ -91.178087, 43.062044 ], [ -91.177222, 43.080247 ], [ -91.178251, 43.124982 ], [ -91.175253, 43.134665 ], [ -91.156200, 43.142945 ], [ -91.146200, 43.152405 ], [ -91.062562, 43.243165 ], [ -91.057918, 43.255366 ], [ -91.085652, 43.291870 ], [ -91.107237, 43.313645 ], [ -91.210233, 43.372064 ], [ -91.205550, 43.422949 ], [ -91.217706, 43.500550 ], [ -91.265091, 43.609977 ], [ -91.268748, 43.615348 ], [ -91.273316, 43.668307 ], [ -91.268198, 43.726571 ], [ -91.262436, 43.792166 ], [ -91.284138, 43.847065 ], [ -91.298815, 43.856555 ], [ -91.310991, 43.867381 ], [ -91.363242, 43.926563 ], [ -91.420114, 43.984243 ], [ -91.432522, 43.996827 ], [ -91.437380, 43.999962 ], [ -91.463515, 44.009041 ], [ -91.505918, 44.018651 ], [ -91.547028, 44.022226 ], [ -91.559197, 44.023959 ], [ -91.580019, 44.026925 ], [ -91.592070, 44.031372 ], [ -91.672520, 44.091286 ], [ -91.721552, 44.130342 ], [ -91.740871, 44.133918 ], [ -91.808064, 44.159262 ], [ -91.862858, 44.193001 ], [ -91.875158, 44.200575 ], [ -91.892698, 44.231105 ], [ -91.892963, 44.235149 ], [ -91.887905, 44.246398 ], [ -91.887189, 44.252513 ], [ -91.918625, 44.322671 ], [ -91.925590, 44.333548 ], [ -91.963600, 44.362112 ], [ -91.972493, 44.366760 ], [ -92.046285, 44.394398 ], [ -92.083925, 44.406211 ], [ -92.115296, 44.416056 ], [ -92.221083, 44.440386 ], [ -92.233897, 44.446334 ], [ -92.242010, 44.454254 ], [ -92.276784, 44.473649 ], [ -92.291005, 44.485464 ], [ -92.302215, 44.500298 ], [ -92.303046, 44.518646 ], [ -92.314071, 44.538014 ], [ -92.316425, 44.540792 ], [ -92.319938, 44.544940 ], [ -92.329013, 44.550895 ], [ -92.340058, 44.555273 ], [ -92.357313, 44.558480 ], [ -92.491773, 44.566003 ], [ -92.534186, 44.570375 ], [ -92.549685, 44.576000 ], [ -92.619774, 44.629214 ], [ -92.621733, 44.638983 ], [ -92.632105, 44.649027 ], [ -92.732042, 44.713775 ], [ -92.737259, 44.717155 ], [ -92.802402, 44.745167 ], [ -92.802201, 44.745714 ], [ -92.784443, 44.793958 ], [ -92.765461, 44.836202 ], [ -92.761845, 44.860879 ], [ -92.761677, 44.862022 ], [ -92.750645, 44.937299 ], [ -92.768606, 45.008016 ], [ -92.791206, 45.045698 ], [ -92.792875, 45.078489 ], [ -92.767130, 45.194165 ], [ -92.765898, 45.210173 ], [ -92.760615, 45.278827 ], [ -92.751735, 45.292667 ], [ -92.746139, 45.296046 ], [ -92.732594, 45.304224 ], [ -92.704794, 45.326526 ], [ -92.664102, 45.393309 ], [ -92.680234, 45.464344 ], [ -92.726230, 45.531085 ], [ -92.803432, 45.562500 ], [ -92.823309, 45.560934 ], [ -92.871082, 45.567581 ], [ -92.883749, 45.575483 ], [ -92.886421, 45.594881 ], [ -92.888114, 45.628377 ], [ -92.885661, 45.644126 ], [ -92.883987, 45.654870 ], [ -92.869193, 45.717568 ], [ -92.863703, 45.721820 ], [ -92.841051, 45.730024 ], [ -92.803971, 45.749805 ], [ -92.784621, 45.764196 ], [ -92.768430, 45.798010 ], [ -92.762490, 45.819239 ], [ -92.734039, 45.868108 ], [ -92.721128, 45.883805 ], [ -92.707702, 45.894901 ], [ -92.656125, 45.924442 ], [ -92.443285, 46.014648 ], [ -92.326877, 46.066618 ], [ -92.306756, 46.072410 ], [ -92.294033, 46.074377 ], [ -92.294069, 46.078346 ], [ -92.293530, 46.113824 ], [ -92.293706, 46.157321 ], [ -92.293744, 46.166838 ], [ -92.293857, 46.180073 ], [ -92.293558, 46.224578 ], [ -92.293619, 46.244043 ], [ -92.293074, 46.295129 ], [ -92.293007, 46.297987 ], [ -92.292840, 46.304319 ], [ -92.292839, 46.307107 ], [ -92.292880, 46.313752 ], [ -92.292803, 46.314628 ], [ -92.292782, 46.319312 ], [ -92.292999, 46.321894 ], [ -92.292860, 46.417220 ], [ -92.292847, 46.420876 ], [ -92.292727, 46.431993 ], [ -92.292510, 46.478761 ], [ -92.292371, 46.495585 ], [ -92.291647, 46.604649 ], [ -92.291597, 46.624941 ], [ -92.292192, 46.663242 ], [ -92.277155, 46.655596 ], [ -92.276373, 46.655198 ], [ -92.274465, 46.654227 ], [ -92.269948, 46.651930 ], [ -92.264462, 46.651393 ], [ -92.262503, 46.651201 ], [ -92.256654, 46.650628 ], [ -92.254379, 46.650405 ], [ -92.250861, 46.650061 ], [ -92.242493, 46.649241 ], [ -92.234815, 46.649420 ], [ -92.232647, 46.649470 ], [ -92.231944, 46.649486 ], [ -92.228155, 46.649574 ], [ -92.222338, 46.649710 ], [ -92.221731, 46.649724 ], [ -92.212392, 46.649941 ], [ -92.207092, 46.651941 ], [ -92.202292, 46.655041 ], [ -92.197145, 46.663408 ], [ -92.191501, 46.672586 ], [ -92.191075, 46.673278 ], [ -92.187592, 46.678941 ], [ -92.187795, 46.690185 ], [ -92.193439, 46.695202 ], [ -92.194087, 46.696626 ], [ -92.194562, 46.697672 ], [ -92.196575, 46.702100 ], [ -92.196435, 46.702938 ], [ -92.196264, 46.703966 ], [ -92.195321, 46.709626 ], [ -92.189091, 46.717541 ], [ -92.172997, 46.724444 ], [ -92.170413, 46.725553 ], [ -92.116590, 46.748640 ], [ -92.089490, 46.749240 ], [ -92.033990, 46.708939 ], [ -92.024720, 46.705624 ], [ -92.020289, 46.704039 ], [ -92.015290, 46.706469 ], [ -92.007989, 46.705039 ], [ -91.987889, 46.692739 ], [ -91.973389, 46.686439 ], [ -91.961889, 46.682539 ], [ -91.942988, 46.679939 ], [ -91.930261, 46.682273 ], [ -91.886963, 46.690211 ], [ -91.878730, 46.690811 ], [ -91.877371, 46.690910 ], [ -91.876183, 46.690997 ], [ -91.874840, 46.691095 ], [ -91.866583, 46.691697 ], [ -91.864491, 46.691850 ], [ -91.857462, 46.692362 ], [ -91.840288, 46.689693 ], [ -91.831355, 46.689906 ], [ -91.820027, 46.690176 ], [ -91.817185, 46.690604 ], [ -91.817099, 46.690617 ], [ -91.814669, 46.690982 ], [ -91.799987, 46.693192 ], [ -91.798455, 46.693422 ], [ -91.790473, 46.694624 ], [ -91.790132, 46.694675 ], [ -91.781928, 46.697604 ], [ -91.758619, 46.705927 ], [ -91.749650, 46.709129 ], [ -91.748787, 46.709341 ], [ -91.735632, 46.712575 ], [ -91.677021, 46.726984 ], [ -91.675621, 46.727329 ], [ -91.667534, 46.729317 ], [ -91.662426, 46.730572 ], [ -91.660670, 46.731004 ], [ -91.658739, 46.731479 ], [ -91.652915, 46.732911 ], [ -91.646146, 46.734575 ], [ -91.645502, 46.734733 ], [ -91.636919, 46.737802 ], [ -91.636040, 46.738116 ], [ -91.636005, 46.738128 ], [ -91.635161, 46.738430 ], [ -91.635107, 46.738449 ], [ -91.625387, 46.741924 ], [ -91.593442, 46.753345 ], [ -91.592742, 46.753595 ], [ -91.592203, 46.753788 ], [ -91.590684, 46.754331 ], [ -91.576632, 46.757037 ], [ -91.574291, 46.757488 ], [ -91.574019, 46.757466 ], [ -91.571423, 46.757260 ], [ -91.569075, 46.757074 ], [ -91.557503, 46.756155 ], [ -91.551445, 46.755674 ], [ -91.551408, 46.755666 ], [ -91.543057, 46.755153 ], [ -91.537583, 46.754817 ], [ -91.537115, 46.754788 ], [ -91.535764, 46.754926 ], [ -91.524766, 46.756052 ], [ -91.517712, 46.756774 ], [ -91.511077, 46.757453 ], [ -91.510595, 46.757614 ], [ -91.507819, 46.758538 ], [ -91.507586, 46.758615 ], [ -91.507160, 46.758757 ], [ -91.500042, 46.761128 ], [ -91.499696, 46.761243 ], [ -91.493643, 46.765757 ], [ -91.493037, 46.766210 ], [ -91.492493, 46.766615 ], [ -91.492429, 46.766663 ], [ -91.491744, 46.766732 ], [ -91.489125, 46.766997 ], [ -91.488247, 46.767086 ], [ -91.472097, 46.768717 ], [ -91.470181, 46.768911 ], [ -91.470124, 46.768923 ], [ -91.467168, 46.769546 ], [ -91.462774, 46.770471 ], [ -91.449570, 46.773252 ], [ -91.449327, 46.773303 ], [ -91.436955, 46.777586 ], [ -91.428526, 46.780504 ], [ -91.426491, 46.781208 ], [ -91.423713, 46.782170 ], [ -91.411799, 46.789640 ], [ -91.398256, 46.791213 ], [ -91.397140, 46.791047 ], [ -91.396959, 46.791020 ], [ -91.396261, 46.790917 ], [ -91.394764, 46.790694 ], [ -91.391469, 46.790205 ], [ -91.390774, 46.790316 ], [ -91.386155, 46.791057 ], [ -91.380577, 46.791951 ], [ -91.369387, 46.793745 ], [ -91.368819, 46.793836 ], [ -91.367498, 46.794545 ], [ -91.366888, 46.794872 ], [ -91.365974, 46.795362 ], [ -91.365536, 46.795597 ], [ -91.365277, 46.795736 ], [ -91.363644, 46.796612 ], [ -91.360804, 46.798136 ], [ -91.359434, 46.799612 ], [ -91.355330, 46.804035 ], [ -91.352191, 46.807417 ], [ -91.338250, 46.817704 ], [ -91.337570, 46.817969 ], [ -91.330463, 46.820735 ], [ -91.330433, 46.820746 ], [ -91.328848, 46.821363 ], [ -91.326045, 46.822454 ], [ -91.322202, 46.823950 ], [ -91.321010, 46.824414 ], [ -91.315061, 46.826729 ], [ -91.314815, 46.826825 ], [ -91.307050, 46.829007 ], [ -91.305487, 46.829446 ], [ -91.304512, 46.829720 ], [ -91.303594, 46.829978 ], [ -91.302295, 46.830343 ], [ -91.301879, 46.830384 ], [ -91.289541, 46.831604 ], [ -91.278558, 46.832689 ], [ -91.266404, 46.833891 ], [ -91.265866, 46.833944 ], [ -91.265816, 46.833960 ], [ -91.263725, 46.834632 ], [ -91.263445, 46.834722 ], [ -91.256873, 46.836833 ], [ -91.256705, 46.836887 ], [ -91.256563, 46.836989 ], [ -91.250806, 46.841135 ], [ -91.249471, 46.842531 ], [ -91.237730, 46.854809 ], [ -91.235283, 46.857368 ], [ -91.232733, 46.860035 ], [ -91.226796, 46.863610 ], [ -91.214886, 46.866137 ], [ -91.211647, 46.866824 ], [ -91.211113, 46.866696 ], [ -91.207524, 46.865835 ], [ -91.204839, 46.859727 ], [ -91.204439, 46.858816 ], [ -91.200107, 46.854017 ], [ -91.178292, 46.844259 ], [ -91.168297, 46.844727 ], [ -91.167601, 46.844760 ], [ -91.156108, 46.855414 ], [ -91.148026, 46.862906 ], [ -91.147837, 46.863082 ], [ -91.144266, 46.870301 ], [ -91.143877, 46.870576 ], [ -91.143850, 46.870595 ], [ -91.140301, 46.873105 ], [ -91.140165, 46.873201 ], [ -91.139758, 46.873148 ], [ -91.134668, 46.872490 ], [ -91.133772, 46.871043 ], [ -91.133337, 46.870341 ], [ -91.133674, 46.869348 ], [ -91.134184, 46.867843 ], [ -91.134724, 46.866250 ], [ -91.134882, 46.865784 ], [ -91.136512, 46.860975 ], [ -91.134977, 46.859023 ], [ -91.134948, 46.858986 ], [ -91.134732, 46.858935 ], [ -91.123530, 46.856273 ], [ -91.123109, 46.856173 ], [ -91.118540, 46.856548 ], [ -91.107323, 46.857469 ], [ -91.105490, 46.857620 ], [ -91.098780, 46.860560 ], [ -91.098346, 46.860750 ], [ -91.098125, 46.860847 ], [ -91.097550, 46.861098 ], [ -91.096565, 46.861530 ], [ -91.096342, 46.862965 ], [ -91.096028, 46.864987 ], [ -91.095058, 46.871234 ], [ -91.094828, 46.872714 ], [ -91.094724, 46.873383 ], [ -91.094620, 46.874050 ], [ -91.094498, 46.874837 ], [ -91.094096, 46.877423 ], [ -91.093714, 46.879882 ], [ -91.090916, 46.882670 ], [ -91.088721, 46.882877 ], [ -91.085077, 46.883220 ], [ -91.080951, 46.883609 ], [ -91.072584, 46.880126 ], [ -91.069331, 46.878772 ], [ -91.068220, 46.878309 ], [ -91.066193, 46.878710 ], [ -91.056258, 46.880678 ], [ -91.052991, 46.881325 ], [ -91.050153, 46.883037 ], [ -91.049232, 46.883593 ], [ -91.049220, 46.883600 ], [ -91.042992, 46.887358 ], [ -91.039890, 46.889230 ], [ -91.036622, 46.893594 ], [ -91.036193, 46.895523 ], [ -91.035936, 46.896679 ], [ -91.034518, 46.903053 ], [ -91.033447, 46.903642 ], [ -91.032508, 46.904158 ], [ -91.030583, 46.905215 ], [ -91.024009, 46.908827 ], [ -91.023976, 46.908845 ], [ -91.021538, 46.910185 ], [ -91.019670, 46.911211 ], [ -91.019141, 46.911502 ], [ -91.018045, 46.911872 ], [ -91.018024, 46.911879 ], [ -91.016237, 46.912481 ], [ -91.016184, 46.912499 ], [ -91.010689, 46.914352 ], [ -91.007997, 46.915259 ], [ -91.005872, 46.915976 ], [ -91.005199, 46.916203 ], [ -91.004892, 46.916192 ], [ -91.004752, 46.916187 ], [ -90.998848, 46.915975 ], [ -90.997943, 46.916367 ], [ -90.996825, 46.916851 ], [ -90.995149, 46.917577 ], [ -90.987013, 46.923776 ], [ -90.985815, 46.924689 ], [ -90.984617, 46.925602 ], [ -90.983192, 46.927662 ], [ -90.980235, 46.931937 ], [ -90.973755, 46.941304 ], [ -90.968419, 46.943910 ], [ -90.964865, 46.943780 ], [ -90.964072, 46.943369 ], [ -90.954612, 46.938468 ], [ -90.954537, 46.938429 ], [ -90.953865, 46.938283 ], [ -90.953685, 46.938244 ], [ -90.940560, 46.935394 ], [ -90.922040, 46.931372 ], [ -90.921811, 46.931322 ], [ -90.921382, 46.931434 ], [ -90.914044, 46.933346 ], [ -90.913838, 46.933400 ], [ -90.908654, 46.941221 ], [ -90.908598, 46.941305 ], [ -90.880358, 46.957661 ], [ -90.879621, 46.958088 ], [ -90.877324, 46.958910 ], [ -90.877165, 46.958967 ], [ -90.877092, 46.958993 ], [ -90.876778, 46.959106 ], [ -90.876544, 46.959189 ], [ -90.876213, 46.959308 ], [ -90.876211, 46.959309 ], [ -90.876006, 46.959382 ], [ -90.875995, 46.959386 ], [ -90.875635, 46.959515 ], [ -90.871126, 46.961129 ], [ -90.855874, 46.962232 ], [ -90.855165, 46.962045 ], [ -90.838814, 46.957728 ], [ -90.837973, 46.957506 ], [ -90.837716, 46.957438 ], [ -90.837617, 46.957379 ], [ -90.833091, 46.954686 ], [ -90.805028, 46.937987 ], [ -90.786595, 46.927019 ], [ -90.786502, 46.926964 ], [ -90.786010, 46.926672 ], [ -90.785606, 46.926431 ], [ -90.760095, 46.903296 ], [ -90.759364, 46.902634 ], [ -90.755630, 46.899247 ], [ -90.754552, 46.898270 ], [ -90.754388, 46.898037 ], [ -90.752725, 46.895680 ], [ -90.751329, 46.893702 ], [ -90.751048, 46.893305 ], [ -90.750858, 46.893035 ], [ -90.750871, 46.892643 ], [ -90.750889, 46.892136 ], [ -90.750952, 46.890293 ], [ -90.751031, 46.887963 ], [ -90.751151, 46.887863 ], [ -90.754692, 46.884915 ], [ -90.754734, 46.884880 ], [ -90.754753, 46.884875 ], [ -90.761295, 46.883238 ], [ -90.761567, 46.883170 ], [ -90.770170, 46.876296 ], [ -90.770240, 46.876184 ], [ -90.780972, 46.858989 ], [ -90.781011, 46.858911 ], [ -90.788040, 46.844886 ], [ -90.792034, 46.836916 ], [ -90.793713, 46.833566 ], [ -90.795693, 46.829614 ], [ -90.795957, 46.829087 ], [ -90.796437, 46.828129 ], [ -90.797404, 46.826200 ], [ -90.798545, 46.823922 ], [ -90.798936, 46.823143 ], [ -90.801041, 46.821626 ], [ -90.801370, 46.821389 ], [ -90.809270, 46.815695 ], [ -90.821967, 46.806545 ], [ -90.825696, 46.803858 ], [ -90.826337, 46.802110 ], [ -90.827350, 46.799345 ], [ -90.828057, 46.797415 ], [ -90.829048, 46.796410 ], [ -90.829933, 46.795513 ], [ -90.830094, 46.795349 ], [ -90.831645, 46.793777 ], [ -90.835008, 46.790366 ], [ -90.835028, 46.790346 ], [ -90.835319, 46.790051 ], [ -90.835607, 46.789759 ], [ -90.847214, 46.789274 ], [ -90.854916, 46.788952 ], [ -90.855472, 46.788929 ], [ -90.855746, 46.788918 ], [ -90.856317, 46.788894 ], [ -90.856531, 46.788885 ], [ -90.856677, 46.788712 ], [ -90.859999, 46.784769 ], [ -90.863542, 46.780565 ], [ -90.859724, 46.774433 ], [ -90.859445, 46.773985 ], [ -90.860880, 46.771079 ], [ -90.862333, 46.768135 ], [ -90.866337, 46.764626 ], [ -90.866586, 46.764408 ], [ -90.866694, 46.764361 ], [ -90.874598, 46.760902 ], [ -90.875925, 46.760321 ], [ -90.885021, 46.756341 ], [ -90.883443, 46.747255 ], [ -90.883396, 46.746987 ], [ -90.882099, 46.744622 ], [ -90.881622, 46.743753 ], [ -90.878810, 46.738629 ], [ -90.878343, 46.737777 ], [ -90.876538, 46.734487 ], [ -90.876426, 46.734284 ], [ -90.876334, 46.734115 ], [ -90.876039, 46.733577 ], [ -90.875829, 46.733195 ], [ -90.871612, 46.725509 ], [ -90.870577, 46.723623 ], [ -90.870396, 46.723293 ], [ -90.869461, 46.722039 ], [ -90.868607, 46.720896 ], [ -90.868531, 46.720794 ], [ -90.868273, 46.720448 ], [ -90.868024, 46.720115 ], [ -90.863864, 46.714539 ], [ -90.861353, 46.711173 ], [ -90.860897, 46.710562 ], [ -90.859797, 46.709088 ], [ -90.859601, 46.708826 ], [ -90.853225, 46.700280 ], [ -90.852916, 46.699866 ], [ -90.852704, 46.699582 ], [ -90.852731, 46.699437 ], [ -90.853644, 46.694464 ], [ -90.853807, 46.693579 ], [ -90.853829, 46.693457 ], [ -90.853927, 46.693369 ], [ -90.854539, 46.692822 ], [ -90.854692, 46.692686 ], [ -90.865494, 46.683033 ], [ -90.865745, 46.682808 ], [ -90.867423, 46.681309 ], [ -90.867823, 46.680952 ], [ -90.867981, 46.680810 ], [ -90.868376, 46.680457 ], [ -90.868468, 46.680375 ], [ -90.870079, 46.679449 ], [ -90.870532, 46.679189 ], [ -90.870739, 46.679070 ], [ -90.870956, 46.678945 ], [ -90.885869, 46.670374 ], [ -90.885943, 46.670353 ], [ -90.896529, 46.667315 ], [ -90.905273, 46.664807 ], [ -90.905567, 46.664722 ], [ -90.909176, 46.663687 ], [ -90.909688, 46.663540 ], [ -90.911281, 46.663083 ], [ -90.911353, 46.662996 ], [ -90.914619, 46.659054 ], [ -90.915152, 46.658410 ], [ -90.915367, 46.657615 ], [ -90.920813, 46.637432 ], [ -90.920835, 46.637351 ], [ -90.920850, 46.636492 ], [ -90.920867, 46.635515 ], [ -90.920936, 46.631606 ], [ -90.920936, 46.631584 ], [ -90.924487, 46.625417 ], [ -90.924489, 46.625415 ], [ -90.926745, 46.622698 ], [ -90.931623, 46.616822 ], [ -90.932120, 46.616223 ], [ -90.933208, 46.614913 ], [ -90.938310, 46.608768 ], [ -90.938617, 46.608398 ], [ -90.938680, 46.608322 ], [ -90.949532, 46.603019 ], [ -90.949621, 46.602975 ], [ -90.950215, 46.602248 ], [ -90.950544, 46.601845 ], [ -90.951418, 46.600774 ], [ -90.951543, 46.600621 ], [ -90.951528, 46.599827 ], [ -90.951476, 46.597033 ], [ -90.947572, 46.593510 ], [ -90.947287, 46.593253 ], [ -90.947159, 46.593138 ], [ -90.942101, 46.588573 ], [ -90.941930, 46.588419 ], [ -90.941374, 46.588293 ], [ -90.941102, 46.588232 ], [ -90.927387, 46.585132 ], [ -90.923560, 46.584267 ], [ -90.923438, 46.584239 ], [ -90.921483, 46.583797 ], [ -90.920411, 46.583555 ], [ -90.920132, 46.583492 ], [ -90.919920, 46.583444 ], [ -90.918414, 46.583103 ], [ -90.918352, 46.583089 ], [ -90.918266, 46.583070 ], [ -90.916982, 46.583014 ], [ -90.909815, 46.582703 ], [ -90.906058, 46.583430 ], [ -90.905572, 46.583524 ], [ -90.901918, 46.585519 ], [ -90.901725, 46.585624 ], [ -90.891944, 46.590964 ], [ -90.886197, 46.594102 ], [ -90.885103, 46.594700 ], [ -90.885007, 46.594752 ], [ -90.873154, 46.601223 ], [ -90.867120, 46.601911 ], [ -90.864284, 46.602965 ], [ -90.858725, 46.605031 ], [ -90.856811, 46.605742 ], [ -90.856244, 46.605953 ], [ -90.856090, 46.606010 ], [ -90.854575, 46.606573 ], [ -90.853380, 46.607017 ], [ -90.852153, 46.607473 ], [ -90.851889, 46.607571 ], [ -90.849684, 46.608391 ], [ -90.843225, 46.610791 ], [ -90.843189, 46.610805 ], [ -90.842058, 46.611225 ], [ -90.841708, 46.611355 ], [ -90.837306, 46.612991 ], [ -90.834259, 46.614123 ], [ -90.831868, 46.615012 ], [ -90.831226, 46.615250 ], [ -90.830011, 46.615702 ], [ -90.829070, 46.616051 ], [ -90.829031, 46.616066 ], [ -90.794775, 46.624941 ], [ -90.792583, 46.625938 ], [ -90.772455, 46.635097 ], [ -90.770192, 46.636127 ], [ -90.768381, 46.637362 ], [ -90.755381, 46.646225 ], [ -90.755287, 46.646289 ], [ -90.755289, 46.646323 ], [ -90.756312, 46.661820 ], [ -90.756495, 46.664591 ], [ -90.748090, 46.669817 ], [ -90.748026, 46.669968 ], [ -90.739565, 46.689943 ], [ -90.739549, 46.689981 ], [ -90.737260, 46.692267 ], [ -90.724924, 46.684186 ], [ -90.705375, 46.671381 ], [ -90.694721, 46.664402 ], [ -90.654497, 46.639990 ], [ -90.650949, 46.637837 ], [ -90.627885, 46.623839 ], [ -90.607649, 46.612186 ], [ -90.606720, 46.611651 ], [ -90.606177, 46.611339 ], [ -90.599602, 46.607552 ], [ -90.599375, 46.607422 ], [ -90.595850, 46.605392 ], [ -90.595583, 46.605238 ], [ -90.591894, 46.603114 ], [ -90.590811, 46.602490 ], [ -90.590712, 46.602433 ], [ -90.586249, 46.599863 ], [ -90.581408, 46.597541 ], [ -90.580191, 46.596958 ], [ -90.579422, 46.596589 ], [ -90.563668, 46.589034 ], [ -90.561966, 46.588218 ], [ -90.561126, 46.587816 ], [ -90.558141, 46.586384 ], [ -90.556224, 46.585880 ], [ -90.549596, 46.584138 ], [ -90.538346, 46.581182 ], [ -90.537962, 46.581081 ], [ -90.537829, 46.581143 ], [ -90.527776, 46.585858 ], [ -90.525788, 46.586790 ], [ -90.525498, 46.586926 ], [ -90.525334, 46.586949 ], [ -90.522674, 46.587313 ], [ -90.519105, 46.587803 ], [ -90.519002, 46.587817 ], [ -90.518510, 46.587885 ], [ -90.505909, 46.589614 ], [ -90.497359, 46.585509 ], [ -90.478826, 46.576610 ], [ -90.478469, 46.576439 ], [ -90.476480, 46.575484 ], [ -90.476315, 46.575405 ], [ -90.476046, 46.575276 ], [ -90.473760, 46.574178 ], [ -90.472483, 46.573730 ], [ -90.440085, 46.562365 ], [ -90.438174, 46.561695 ], [ -90.437596, 46.561492 ], [ -90.437532, 46.561507 ], [ -90.436512, 46.561748 ], [ -90.436314, 46.561795 ], [ -90.434812, 46.562150 ], [ -90.433367, 46.562492 ], [ -90.418136, 46.566094 ], [ -90.414596, 46.557320 ], [ -90.414464, 46.557320 ], [ -90.400429, 46.544384 ], [ -90.400041, 46.544384 ], [ -90.374461, 46.539212 ], [ -90.357676, 46.540271 ], [ -90.313894, 46.516199 ], [ -90.313839, 46.516199 ], [ -90.307716, 46.518392 ], [ -90.284545, 46.518714 ], [ -90.204572, 46.478998 ], [ -90.177860, 46.440548 ], [ -90.166919, 46.439851 ], [ -90.166909, 46.439311 ], [ -90.134656, 46.374979 ], [ -90.134663, 46.374947 ], [ -90.119757, 46.359748 ], [ -90.119691, 46.359755 ], [ -90.120489, 46.336852 ], [ -89.929093, 46.300087 ], [ -89.909910, 46.296402 ], [ -89.908196, 46.296037 ], [ -89.276883, 46.174116 ], [ -89.276489, 46.174047 ], [ -89.219964, 46.163319 ], [ -89.218156, 46.162988 ], [ -89.205657, 46.160408 ], [ -89.203289, 46.160020 ], [ -89.201283, 46.159426 ], [ -89.194508, 46.157942 ], [ -89.166887, 46.152868 ], [ -89.161757, 46.151816 ], [ -89.125136, 46.144531 ], [ -89.058745, 46.124952 ], [ -88.990885, 46.097330 ], [ -88.990807, 46.097298 ], [ -88.948698, 46.080205 ], [ -88.943279, 46.077943 ], [ -88.932558, 46.073601 ], [ -88.850270, 46.040274 ], [ -88.848464, 46.038858 ], [ -88.840584, 46.031112 ], [ -88.815629, 46.022320 ], [ -88.769712, 46.018968 ], [ -88.739994, 46.027308 ], [ -88.730675, 46.026535 ], [ -88.683198, 46.014563 ], [ -88.679132, 46.013538 ], [ -88.674606, 46.010567 ], [ -88.670115, 45.999957 ], [ -88.670939, 45.999957 ], [ -88.666056, 45.988191 ], [ -88.637500, 45.984960 ], [ -88.616405, 45.987700 ], [ -88.613063, 45.990627 ], [ -88.532414, 46.021212 ], [ -88.507188, 46.018300 ], [ -88.500133, 46.000457 ], [ -88.497417, 45.995149 ], [ -88.489608, 45.991381 ], [ -88.423437, 45.981930 ], [ -88.376447, 45.989458 ], [ -88.295559, 45.951459 ], [ -88.250133, 45.963147 ], [ -88.244452, 45.952142 ], [ -88.239672, 45.948982 ], [ -88.211158, 45.944531 ], [ -88.202247, 45.949584 ], [ -88.175532, 45.944897 ], [ -88.139372, 45.929932 ], [ -88.118516, 45.918562 ], [ -88.102603, 45.909888 ], [ -88.073944, 45.875593 ], [ -88.073134, 45.871952 ], [ -88.088825, 45.855860 ], [ -88.106622, 45.841072 ], [ -88.114267, 45.837891 ], [ -88.133640, 45.823128 ], [ -88.136110, 45.819029 ], [ -88.130434, 45.810020 ], [ -88.094047, 45.785658 ], [ -88.072091, 45.780261 ], [ -88.058256, 45.780719 ], [ -88.050634, 45.780972 ], [ -88.039729, 45.789626 ], [ -87.991447, 45.795393 ], [ -87.868111, 45.749477 ], [ -87.828827, 45.722760 ], [ -87.807144, 45.708014 ], [ -87.780808, 45.680349 ], [ -87.781623, 45.673280 ], [ -87.823672, 45.659817 ], [ -87.824102, 45.647138 ], [ -87.795880, 45.618846 ], [ -87.792016, 45.616756 ], [ -87.788798, 45.565947 ], [ -87.792769, 45.499967 ], [ -87.798960, 45.485147 ], [ -87.806347, 45.472262 ], [ -87.812976, 45.464159 ], [ -87.820348, 45.460284 ], [ -87.860432, 45.423504 ], [ -87.888052, 45.354697 ], [ -87.885170, 45.351736 ], [ -87.850133, 45.340435 ], [ -87.838141, 45.345101 ], [ -87.835303, 45.350980 ], [ -87.832612, 45.352249 ], [ -87.790324, 45.353444 ], [ -87.771384, 45.351210 ], [ -87.751452, 45.351755 ], [ -87.718891, 45.377462 ], [ -87.693956, 45.389893 ], [ -87.685934, 45.388711 ], [ -87.675017, 45.382454 ], [ -87.657349, 45.368752 ], [ -87.647729, 45.350721 ], [ -87.648126, 45.339396 ], [ -87.709137, 45.260341 ], [ -87.707779, 45.258343 ], [ -87.711722, 45.243481 ], [ -87.731710, 45.206792 ], [ -87.739492, 45.202126 ], [ -87.741732, 45.198201 ], [ -87.735282, 45.176565 ], [ -87.731389, 45.170989 ], [ -87.659952, 45.107512 ], [ -87.590208, 45.095264 ], [ -87.587147, 45.089495 ], [ -87.587992, 45.085271 ], [ -87.591583, 45.083792 ], [ -87.594718, 45.085134 ], [ -87.601849, 45.082297 ], [ -87.610395, 45.075617 ], [ -87.625748, 45.045157 ], [ -87.624693, 45.014176 ], [ -87.630298, 44.976865 ], [ -87.661964, 44.973035 ], [ -87.696492, 44.974233 ], [ -87.762620, 44.965796 ] ] ] ] } }\n,\n{ \"type\": \"Feature\", \"properties\": { \"GEO_ID\": \"0400000US56\", \"STATE\": \"56\", \"NAME\": \"Wyoming\", \"LSAD\": \"\", \"CENSUSAREA\": 97093.141000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -104.055077, 43.936535 ], [ -104.055104, 43.853478 ], [ -104.055138, 43.750421 ], [ -104.055133, 43.747105 ], [ -104.054902, 43.583852 ], [ -104.054885, 43.583512 ], [ -104.054840, 43.579368 ], [ -104.055032, 43.558603 ], [ -104.054787, 43.503328 ], [ -104.054786, 43.503072 ], [ -104.054779, 43.477815 ], [ -104.054766, 43.428914 ], [ -104.054614, 43.390949 ], [ -104.054403, 43.325914 ], [ -104.054218, 43.304370 ], [ -104.053884, 43.297047 ], [ -104.053876, 43.289801 ], [ -104.053127, 43.000585 ], [ -104.052863, 42.754569 ], [ -104.052809, 42.749966 ], [ -104.052583, 42.650062 ], [ -104.052741, 42.633982 ], [ -104.052586, 42.630917 ], [ -104.052773, 42.611766 ], [ -104.052775, 42.611590 ], [ -104.052775, 42.610813 ], [ -104.052776, 42.258220 ], [ -104.052793, 42.249962 ], [ -104.052761, 42.170278 ], [ -104.052547, 42.166801 ], [ -104.053001, 42.137254 ], [ -104.052738, 42.133769 ], [ -104.052600, 42.124963 ], [ -104.052954, 42.089077 ], [ -104.052967, 42.075004 ], [ -104.052880, 42.021761 ], [ -104.052729, 42.016318 ], [ -104.052704, 42.001718 ], [ -104.052699, 41.998673 ], [ -104.052761, 41.994967 ], [ -104.052830, 41.994600 ], [ -104.052856, 41.975958 ], [ -104.052734, 41.973007 ], [ -104.052991, 41.914973 ], [ -104.052931, 41.906143 ], [ -104.053026, 41.885464 ], [ -104.052774, 41.733401 ], [ -104.052830, 41.697954 ], [ -104.052913, 41.645190 ], [ -104.052945, 41.638167 ], [ -104.052975, 41.622931 ], [ -104.052735, 41.613676 ], [ -104.052859, 41.592254 ], [ -104.052540, 41.564274 ], [ -104.052531, 41.552723 ], [ -104.052584, 41.552650 ], [ -104.052692, 41.541154 ], [ -104.052686, 41.539111 ], [ -104.052476, 41.522343 ], [ -104.052478, 41.515754 ], [ -104.052340, 41.417865 ], [ -104.052160, 41.407662 ], [ -104.052287, 41.393307 ], [ -104.052287, 41.393214 ], [ -104.052324, 41.321144 ], [ -104.052476, 41.320961 ], [ -104.052568, 41.316202 ], [ -104.052453, 41.278202 ], [ -104.052574, 41.278019 ], [ -104.052666, 41.275251 ], [ -104.053142, 41.114457 ], [ -104.053083, 41.104985 ], [ -104.053025, 41.090274 ], [ -104.053177, 41.089725 ], [ -104.053097, 41.018045 ], [ -104.053158, 41.016809 ], [ -104.053249, 41.001406 ], [ -104.066961, 41.001504 ], [ -104.086068, 41.001563 ], [ -104.104590, 41.001543 ], [ -104.123586, 41.001626 ], [ -104.211473, 41.001591 ], [ -104.214191, 41.001568 ], [ -104.214692, 41.001657 ], [ -104.497058, 41.001805 ], [ -104.497149, 41.001828 ], [ -104.882452, 40.998186 ], [ -104.943371, 40.998190 ], [ -105.254779, 40.998210 ], [ -105.256527, 40.998191 ], [ -105.276860, 40.998173 ], [ -105.277138, 40.998173 ], [ -105.724804, 40.996910 ], [ -105.730421, 40.996886 ], [ -106.061181, 40.996999 ], [ -106.190550, 40.998056 ], [ -106.321165, 40.999123 ], [ -106.386356, 41.001144 ], [ -106.391852, 41.001176 ], [ -106.430950, 41.001752 ], [ -106.437419, 41.001795 ], [ -106.439563, 41.001978 ], [ -106.453859, 41.002057 ], [ -106.857772, 41.003082 ], [ -107.000606, 41.003444 ], [ -107.317794, 41.002957 ], [ -107.918421, 41.002036 ], [ -108.250649, 41.000114 ], [ -109.050076, 41.000659 ], [ -109.207383, 41.001459 ], [ -109.676421, 40.998395 ], [ -109.713877, 40.998266 ], [ -109.715409, 40.998191 ], [ -109.854302, 40.997661 ], [ -109.855299, 40.997614 ], [ -109.999838, 40.997330 ], [ -110.000708, 40.997352 ], [ -110.048474, 40.997103 ], [ -110.500718, 40.994746 ], [ -111.046723, 40.997959 ], [ -111.046551, 41.251716 ], [ -111.046600, 41.360692 ], [ -111.046264, 41.377731 ], [ -111.046402, 41.579845 ], [ -111.046689, 42.001567 ], [ -111.047109, 42.142497 ], [ -111.047107, 42.148971 ], [ -111.047058, 42.182672 ], [ -111.047097, 42.194773 ], [ -111.047074, 42.280787 ], [ -111.047080, 42.349420 ], [ -111.046249, 42.513116 ], [ -111.043959, 42.964450 ], [ -111.043957, 42.969482 ], [ -111.043924, 42.975063 ], [ -111.044129, 43.018702 ], [ -111.044156, 43.020052 ], [ -111.044206, 43.022614 ], [ -111.044034, 43.024581 ], [ -111.044034, 43.024844 ], [ -111.044033, 43.026411 ], [ -111.044094, 43.029270 ], [ -111.043997, 43.041415 ], [ -111.044058, 43.044640 ], [ -111.044063, 43.046302 ], [ -111.044086, 43.054819 ], [ -111.044117, 43.060309 ], [ -111.044150, 43.066172 ], [ -111.044162, 43.068222 ], [ -111.044143, 43.072364 ], [ -111.044235, 43.177121 ], [ -111.044266, 43.177236 ], [ -111.044232, 43.184440 ], [ -111.044168, 43.189244 ], [ -111.044229, 43.195579 ], [ -111.044617, 43.315720 ], [ -111.045205, 43.501136 ], [ -111.045706, 43.659112 ], [ -111.045880, 43.681033 ], [ -111.046118, 43.684902 ], [ -111.046051, 43.685812 ], [ -111.046110, 43.687848 ], [ -111.046421, 43.722059 ], [ -111.046435, 43.726545 ], [ -111.046340, 43.726957 ], [ -111.046715, 43.815832 ], [ -111.048107, 43.983096 ], [ -111.048751, 44.060403 ], [ -111.048751, 44.060838 ], [ -111.048633, 44.062903 ], [ -111.049216, 44.435811 ], [ -111.049194, 44.438058 ], [ -111.048974, 44.474072 ], [ -111.055208, 44.624927 ], [ -111.055495, 44.666262 ], [ -111.056888, 44.866658 ], [ -111.055629, 44.933578 ], [ -111.056207, 44.935901 ], [ -111.044275, 45.001345 ], [ -110.875772, 45.002101 ], [ -110.750767, 44.997948 ], [ -110.705272, 44.992324 ], [ -110.552433, 44.992237 ], [ -110.547165, 44.992459 ], [ -110.221343, 44.996176 ], [ -110.110103, 45.003905 ], [ -110.026347, 45.003665 ], [ -110.025544, 45.003602 ], [ -109.798687, 45.002188 ], [ -109.269294, 45.005283 ], [ -109.263431, 45.005345 ], [ -109.103445, 45.005904 ], [ -109.083010, 44.999610 ], [ -109.062262, 44.999623 ], [ -108.621313, 45.000408 ], [ -108.578484, 45.000484 ], [ -108.565921, 45.000578 ], [ -108.249345, 44.999458 ], [ -108.125666, 45.001011 ], [ -107.911495, 45.000948 ], [ -107.608854, 45.000860 ], [ -107.607824, 45.000929 ], [ -107.134180, 45.000109 ], [ -107.080624, 44.996791 ], [ -106.892875, 44.995947 ], [ -106.888773, 44.995885 ], [ -106.263586, 44.993788 ], [ -106.024814, 44.993688 ], [ -105.928184, 44.993647 ], [ -105.918995, 44.997771 ], [ -105.848065, 45.000396 ], [ -105.076607, 45.000347 ], [ -105.038405, 45.000345 ], [ -105.025266, 45.000290 ], [ -105.019284, 45.000329 ], [ -105.018240, 45.000437 ], [ -104.765063, 44.999183 ], [ -104.759855, 44.999066 ], [ -104.665171, 44.998618 ], [ -104.663882, 44.998869 ], [ -104.470422, 44.998453 ], [ -104.470117, 44.998453 ], [ -104.057698, 44.997431 ], [ -104.055963, 44.768236 ], [ -104.055963, 44.767962 ], [ -104.055934, 44.723720 ], [ -104.055870, 44.723422 ], [ -104.055777, 44.700466 ], [ -104.055938, 44.693881 ], [ -104.055810, 44.691343 ], [ -104.055877, 44.571016 ], [ -104.055892, 44.543341 ], [ -104.055927, 44.517730 ], [ -104.054487, 44.180381 ], [ -104.054562, 44.141081 ], [ -104.054950, 43.938090 ], [ -104.055077, 43.936535 ] ] ] } }\n,\n{ \"type\": \"Feature\", \"properties\": { \"GEO_ID\": \"0400000US01\", \"STATE\": \"01\", \"NAME\": \"Alabama\", \"LSAD\": \"\", \"CENSUSAREA\": 50645.326000 }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [ [ [ [ -88.124658, 30.283640 ], [ -88.086812, 30.259864 ], [ -88.074854, 30.249119 ], [ -88.075856, 30.246139 ], [ -88.078786, 30.245039 ], [ -88.109432, 30.242097 ], [ -88.120151, 30.246149 ], [ -88.137083, 30.249179 ], [ -88.166569, 30.249255 ], [ -88.208540, 30.244807 ], [ -88.280571, 30.230274 ], [ -88.304773, 30.228031 ], [ -88.313323, 30.230024 ], [ -88.310025, 30.233233 ], [ -88.299705, 30.231812 ], [ -88.280781, 30.233781 ], [ -88.258370, 30.239595 ], [ -88.224615, 30.245559 ], [ -88.173350, 30.252418 ], [ -88.158303, 30.252393 ], [ -88.141143, 30.255024 ], [ -88.130631, 30.262125 ], [ -88.124722, 30.273541 ], [ -88.124658, 30.283640 ] ] ], [ [ [ -86.783628, 34.991925 ], [ -86.677616, 34.992070 ], [ -86.676726, 34.992070 ], [ -86.674360, 34.992001 ], [ -86.670853, 34.992000 ], [ -86.659610, 34.991792 ], [ -86.641212, 34.991740 ], [ -86.600039, 34.991240 ], [ -86.588962, 34.991197 ], [ -86.571217, 34.991011 ], [ -86.555864, 34.990971 ], [ -86.528485, 34.990677 ], [ -86.467798, 34.990692 ], [ -86.433927, 34.991085 ], [ -86.397203, 34.991660 ], [ -86.318761, 34.991147 ], [ -86.311274, 34.991098 ], [ -85.863935, 34.988379 ], [ -85.828724, 34.988165 ], [ -85.824411, 34.988142 ], [ -85.605165, 34.984678 ], [ -85.595191, 34.924331 ], [ -85.595163, 34.924171 ], [ -85.583145, 34.860371 ], [ -85.552482, 34.708321 ], [ -85.552454, 34.708138 ], [ -85.541267, 34.656783 ], [ -85.541264, 34.656701 ], [ -85.534423, 34.623789 ], [ -85.527127, 34.588684 ], [ -85.513930, 34.525192 ], [ -85.513709, 34.524170 ], [ -85.513699, 34.524133 ], [ -85.512108, 34.518252 ], [ -85.508384, 34.501212 ], [ -85.502454, 34.474527 ], [ -85.502316, 34.473954 ], [ -85.462304, 34.286365 ], [ -85.458693, 34.269437 ], [ -85.458071, 34.265736 ], [ -85.455371, 34.252854 ], [ -85.455057, 34.250689 ], [ -85.421731, 34.080821 ], [ -85.398837, 33.964129 ], [ -85.386693, 33.901697 ], [ -85.361844, 33.773951 ], [ -85.360491, 33.767958 ], [ -85.337974, 33.653111 ], [ -85.322497, 33.574167 ], [ -85.314994, 33.535898 ], [ -85.314091, 33.530218 ], [ -85.313999, 33.529807 ], [ -85.304439, 33.482884 ], [ -85.293902, 33.428079 ], [ -85.236509, 33.129562 ], [ -85.232378, 33.108077 ], [ -85.223261, 33.062580 ], [ -85.221868, 33.055538 ], [ -85.184131, 32.870525 ], [ -85.123421, 32.772248 ], [ -85.132040, 32.764211 ], [ -85.136776, 32.746512 ], [ -85.137136, 32.745168 ], [ -85.114737, 32.685634 ], [ -85.104790, 32.642542 ], [ -85.082454, 32.607022 ], [ -85.080288, 32.603577 ], [ -85.079935, 32.602889 ], [ -85.069583, 32.583930 ], [ -85.044606, 32.559499 ], [ -85.022509, 32.542923 ], [ -85.007100, 32.523868 ], [ -85.001324, 32.512973 ], [ -85.001052, 32.510477 ], [ -85.001030, 32.510157 ], [ -85.000779, 32.506548 ], [ -84.998231, 32.469842 ], [ -84.983831, 32.445643 ], [ -84.979431, 32.412244 ], [ -84.987278, 32.381623 ], [ -84.987386, 32.381201 ], [ -85.008096, 32.336677 ], [ -85.007103, 32.328362 ], [ -85.001874, 32.322015 ], [ -84.938680, 32.300708 ], [ -84.916611, 32.281177 ], [ -84.909052, 32.263540 ], [ -84.921650, 32.233306 ], [ -84.923638, 32.231539 ], [ -84.964828, 32.194952 ], [ -84.995929, 32.184852 ], [ -85.047865, 32.142033 ], [ -85.056029, 32.063055 ], [ -85.050212, 32.024196 ], [ -85.062246, 31.991857 ], [ -85.072330, 31.964758 ], [ -85.082130, 31.944658 ], [ -85.106630, 31.915159 ], [ -85.132931, 31.888260 ], [ -85.141831, 31.839861 ], [ -85.141331, 31.783163 ], [ -85.138668, 31.780425 ], [ -85.130731, 31.772263 ], [ -85.125230, 31.767063 ], [ -85.124501, 31.763081 ], [ -85.118930, 31.732664 ], [ -85.122230, 31.722764 ], [ -85.126530, 31.716764 ], [ -85.125530, 31.694965 ], [ -85.087029, 31.640966 ], [ -85.065236, 31.624351 ], [ -85.059534, 31.621717 ], [ -85.057473, 31.618624 ], [ -85.041305, 31.540987 ], [ -85.046859, 31.517451 ], [ -85.068065, 31.427586 ], [ -85.087651, 31.308677 ], [ -85.101561, 31.283362 ], [ -85.111871, 31.258388 ], [ -85.107516, 31.186451 ], [ -85.100207, 31.165490 ], [ -85.092106, 31.160293 ], [ -85.083582, 31.159630 ], [ -85.076628, 31.156927 ], [ -85.035615, 31.108192 ], [ -85.029736, 31.096163 ], [ -85.022121, 31.075480 ], [ -84.999428, 31.013843 ], [ -85.002368, 31.000682 ], [ -85.024108, 31.000681 ], [ -85.027512, 31.000670 ], [ -85.030107, 31.000653 ], [ -85.031155, 31.000647 ], [ -85.052088, 31.000585 ], [ -85.054802, 31.000585 ], [ -85.057534, 31.000585 ], [ -85.145835, 31.000695 ], [ -85.152085, 31.000888 ], [ -85.152218, 31.000834 ], [ -85.154452, 31.000835 ], [ -85.488298, 30.997041 ], [ -85.497992, 30.996931 ], [ -85.498272, 30.996928 ], [ -86.035039, 30.993320 ], [ -86.052462, 30.993247 ], [ -86.056213, 30.993133 ], [ -86.162886, 30.993682 ], [ -86.168979, 30.993706 ], [ -86.175204, 30.993798 ], [ -86.180232, 30.994005 ], [ -86.187246, 30.993992 ], [ -86.289247, 30.993798 ], [ -86.304596, 30.994029 ], [ -86.364907, 30.994455 ], [ -86.369270, 30.994477 ], [ -86.374545, 30.994474 ], [ -86.388646, 30.994181 ], [ -86.388647, 30.994181 ], [ -86.391937, 30.994172 ], [ -86.404912, 30.994049 ], [ -86.454704, 30.993791 ], [ -86.458319, 30.993998 ], [ -86.512834, 30.993700 ], [ -86.519938, 30.993245 ], [ -86.563436, 30.995223 ], [ -86.567586, 30.995109 ], [ -86.664681, 30.994534 ], [ -86.678383, 30.994537 ], [ -86.688294, 30.995029 ], [ -86.725379, 30.996872 ], [ -86.727293, 30.996882 ], [ -86.728392, 30.996739 ], [ -86.785692, 30.996977 ], [ -86.785918, 30.996978 ], [ -86.830497, 30.997401 ], [ -86.831934, 30.997378 ], [ -86.872989, 30.997631 ], [ -86.888135, 30.997577 ], [ -87.027107, 30.999255 ], [ -87.036366, 30.999348 ], [ -87.039989, 30.999594 ], [ -87.053737, 30.999131 ], [ -87.064063, 30.999191 ], [ -87.068633, 30.999143 ], [ -87.162614, 30.999055 ], [ -87.163084, 30.999051 ], [ -87.254980, 30.998285 ], [ -87.255592, 30.998216 ], [ -87.257002, 30.998194 ], [ -87.257960, 30.998263 ], [ -87.259689, 30.998172 ], [ -87.260540, 30.998195 ], [ -87.265564, 30.998267 ], [ -87.288905, 30.998345 ], [ -87.290995, 30.998352 ], [ -87.301567, 30.998434 ], [ -87.304030, 30.998191 ], [ -87.312183, 30.998435 ], [ -87.333973, 30.998272 ], [ -87.355656, 30.998244 ], [ -87.364011, 30.998218 ], [ -87.367842, 30.998292 ], [ -87.425774, 30.998090 ], [ -87.432292, 30.998205 ], [ -87.449811, 30.998272 ], [ -87.455705, 30.998318 ], [ -87.458658, 30.998386 ], [ -87.461638, 30.998202 ], [ -87.461783, 30.998201 ], [ -87.466827, 30.998178 ], [ -87.466879, 30.998178 ], [ -87.478706, 30.998213 ], [ -87.479703, 30.998197 ], [ -87.480243, 30.998202 ], [ -87.548543, 30.997927 ], [ -87.571281, 30.997870 ], [ -87.598928, 30.997457 ], [ -87.598927, 30.997454 ], [ -87.594111, 30.976335 ], [ -87.601355, 30.936294 ], [ -87.622203, 30.897508 ], [ -87.634938, 30.865886 ], [ -87.624137, 30.845713 ], [ -87.532607, 30.743489 ], [ -87.502926, 30.722369 ], [ -87.497515, 30.720123 ], [ -87.481225, 30.716508 ], [ -87.449362, 30.698913 ], [ -87.407118, 30.671796 ], [ -87.396997, 30.653640 ], [ -87.394219, 30.641699 ], [ -87.394479, 30.625192 ], [ -87.449921, 30.514690 ], [ -87.449841, 30.514369 ], [ -87.448332, 30.513063 ], [ -87.430578, 30.491096 ], [ -87.419177, 30.410198 ], [ -87.427478, 30.408398 ], [ -87.440678, 30.391498 ], [ -87.451378, 30.367199 ], [ -87.450962, 30.346262 ], [ -87.450078, 30.311100 ], [ -87.452378, 30.300201 ], [ -87.518324, 30.280435 ], [ -87.544533, 30.275659 ], [ -87.558097, 30.274437 ], [ -87.581362, 30.269257 ], [ -87.656888, 30.249709 ], [ -87.735530, 30.240679 ], [ -87.800560, 30.229365 ], [ -87.838462, 30.227185 ], [ -87.926119, 30.230373 ], [ -87.962253, 30.229522 ], [ -87.999996, 30.225753 ], [ -88.014572, 30.222366 ], [ -88.028401, 30.221132 ], [ -88.029272, 30.222714 ], [ -88.023991, 30.230390 ], [ -87.966847, 30.235618 ], [ -87.948979, 30.256564 ], [ -87.936041, 30.261469 ], [ -87.918247, 30.253308 ], [ -87.913762, 30.247837 ], [ -87.900460, 30.241531 ], [ -87.893201, 30.239237 ], [ -87.879343, 30.238590 ], [ -87.860085, 30.240289 ], [ -87.817743, 30.254292 ], [ -87.802087, 30.253054 ], [ -87.787750, 30.254244 ], [ -87.766626, 30.262353 ], [ -87.755263, 30.277292 ], [ -87.755516, 30.291217 ], [ -87.772758, 30.311701 ], [ -87.796717, 30.324198 ], [ -87.809266, 30.332702 ], [ -87.829880, 30.353809 ], [ -87.837239, 30.369324 ], [ -87.845132, 30.377446 ], [ -87.853806, 30.378481 ], [ -87.865017, 30.383450 ], [ -87.906343, 30.409380 ], [ -87.908908, 30.414240 ], [ -87.914136, 30.446144 ], [ -87.920031, 30.470645 ], [ -87.924211, 30.476100 ], [ -87.931902, 30.481100 ], [ -87.933355, 30.487357 ], [ -87.911141, 30.525848 ], [ -87.905343, 30.537566 ], [ -87.901711, 30.550879 ], [ -87.904168, 30.565985 ], [ -87.907891, 30.573114 ], [ -87.911431, 30.576261 ], [ -87.914956, 30.585893 ], [ -87.912530, 30.615795 ], [ -87.919346, 30.636060 ], [ -87.931070, 30.652694 ], [ -87.936717, 30.657432 ], [ -87.955989, 30.658862 ], [ -87.981196, 30.675090 ], [ -88.008396, 30.684956 ], [ -88.012444, 30.683190 ], [ -88.022076, 30.673873 ], [ -88.026706, 30.661490 ], [ -88.034588, 30.653715 ], [ -88.044339, 30.652568 ], [ -88.061998, 30.644891 ], [ -88.059598, 30.619091 ], [ -88.053998, 30.612491 ], [ -88.064898, 30.588292 ], [ -88.074898, 30.578892 ], [ -88.085493, 30.563258 ], [ -88.081617, 30.546317 ], [ -88.082792, 30.528713 ], [ -88.090734, 30.523570 ], [ -88.100874, 30.509750 ], [ -88.103768, 30.500903 ], [ -88.102988, 30.493029 ], [ -88.096867, 30.471053 ], [ -88.100646, 30.461220 ], [ -88.106437, 30.452738 ], [ -88.104070, 30.427300 ], [ -88.107274, 30.377246 ], [ -88.115432, 30.356570 ], [ -88.124611, 30.341623 ], [ -88.128052, 30.338509 ], [ -88.136173, 30.320729 ], [ -88.155775, 30.327184 ], [ -88.171967, 30.324679 ], [ -88.191542, 30.317002 ], [ -88.195664, 30.321242 ], [ -88.198361, 30.338819 ], [ -88.196353, 30.343586 ], [ -88.188532, 30.345053 ], [ -88.188527, 30.348124 ], [ -88.200065, 30.362378 ], [ -88.204495, 30.362102 ], [ -88.260695, 30.382381 ], [ -88.282635, 30.382876 ], [ -88.290649, 30.370741 ], [ -88.311608, 30.368908 ], [ -88.316525, 30.369985 ], [ -88.319599, 30.380334 ], [ -88.332277, 30.388440 ], [ -88.341345, 30.389470 ], [ -88.364022, 30.388006 ], [ -88.374671, 30.385608 ], [ -88.395023, 30.369425 ], [ -88.402283, 30.510852 ], [ -88.403547, 30.533100 ], [ -88.403931, 30.543359 ], [ -88.404013, 30.545060 ], [ -88.407484, 30.622736 ], [ -88.407462, 30.631653 ], [ -88.408070, 30.636970 ], [ -88.409571, 30.668731 ], [ -88.411339, 30.706334 ], [ -88.411550, 30.712956 ], [ -88.412209, 30.730395 ], [ -88.412270, 30.731771 ], [ -88.412462, 30.735598 ], [ -88.425635, 30.998301 ], [ -88.425729, 31.000183 ], [ -88.425807, 31.001123 ], [ -88.432007, 31.114298 ], [ -88.438104, 31.230060 ], [ -88.438211, 31.231252 ], [ -88.445182, 31.355855 ], [ -88.445209, 31.355969 ], [ -88.448686, 31.420888 ], [ -88.448660, 31.421277 ], [ -88.449446, 31.435837 ], [ -88.459478, 31.621652 ], [ -88.459722, 31.624002 ], [ -88.464425, 31.697881 ], [ -88.464428, 31.697952 ], [ -88.471106, 31.850949 ], [ -88.471214, 31.851385 ], [ -88.469960, 31.893759 ], [ -88.468879, 31.930262 ], [ -88.468660, 31.933173 ], [ -88.455039, 32.039719 ], [ -88.454959, 32.040576 ], [ -88.438710, 32.172078 ], [ -88.438650, 32.172806 ], [ -88.431707, 32.227662 ], [ -88.421453, 32.308680 ], [ -88.403789, 32.449770 ], [ -88.403789, 32.449885 ], [ -88.388739, 32.578116 ], [ -88.383039, 32.626679 ], [ -88.382985, 32.626954 ], [ -88.347692, 32.929059 ], [ -88.340432, 32.991199 ], [ -88.304514, 33.288320 ], [ -88.291127, 33.399061 ], [ -88.277421, 33.512436 ], [ -88.276805, 33.516463 ], [ -88.274619, 33.534008 ], [ -88.270050, 33.570819 ], [ -88.269532, 33.572894 ], [ -88.269076, 33.576929 ], [ -88.268160, 33.585040 ], [ -88.267148, 33.591989 ], [ -88.267005, 33.594229 ], [ -88.256343, 33.682053 ], [ -88.256131, 33.682860 ], [ -88.254622, 33.695780 ], [ -88.254445, 33.698779 ], [ -88.248390, 33.744908 ], [ -88.226517, 33.911551 ], [ -88.226517, 33.911665 ], [ -88.226428, 33.912875 ], [ -88.207229, 34.058333 ], [ -88.203597, 34.086530 ], [ -88.176889, 34.293858 ], [ -88.175867, 34.302171 ], [ -88.173632, 34.321054 ], [ -88.165910, 34.380926 ], [ -88.165634, 34.383102 ], [ -88.155305, 34.463087 ], [ -88.139988, 34.581703 ], [ -88.139246, 34.587795 ], [ -88.138719, 34.589215 ], [ -88.118407, 34.724292 ], [ -88.097888, 34.892202 ], [ -88.125038, 34.902227 ], [ -88.200064, 34.995634 ], [ -88.182450, 35.007712 ], [ -87.984916, 35.006256 ], [ -87.877969, 35.005468 ], [ -87.877742, 35.005512 ], [ -87.872626, 35.005571 ], [ -87.853528, 35.005541 ], [ -87.853411, 35.005576 ], [ -87.851886, 35.005656 ], [ -87.773586, 35.004946 ], [ -87.767602, 35.004783 ], [ -87.758890, 35.004711 ], [ -87.709491, 35.004089 ], [ -87.702321, 35.003945 ], [ -87.700543, 35.003988 ], [ -87.696834, 35.003852 ], [ -87.671405, 35.003537 ], [ -87.664123, 35.003523 ], [ -87.606031, 35.003343 ], [ -87.428613, 35.002795 ], [ -87.421543, 35.002679 ], [ -87.417400, 35.002669 ], [ -87.391314, 35.002374 ], [ -87.381071, 35.002118 ], [ -87.359281, 35.001823 ], [ -87.349251, 35.001662 ], [ -87.299185, 35.000915 ], [ -87.270014, 35.000390 ], [ -87.230544, 34.999484 ], [ -87.224053, 34.999327 ], [ -87.216683, 34.999148 ], [ -87.210759, 34.999024 ], [ -87.011174, 34.995162 ], [ -87.000007, 34.995121 ], [ -86.974412, 34.994513 ], [ -86.972613, 34.994610 ], [ -86.970236, 34.994546 ], [ -86.967120, 34.994400 ], [ -86.862147, 34.991956 ], [ -86.849794, 34.991924 ], [ -86.846466, 34.991860 ], [ -86.836370, 34.991764 ], [ -86.836306, 34.991764 ], [ -86.820657, 34.991764 ], [ -86.783648, 34.991925 ], [ -86.783628, 34.991925 ] ] ] ] } }\n,\n{ \"type\": \"Feature\", \"properties\": { \"GEO_ID\": \"0400000US02\", \"STATE\": \"02\", \"NAME\": \"Alaska\", \"LSAD\": \"\", \"CENSUSAREA\": 570640.950000 }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [ [ [ [ -162.255031, 54.978353 ], [ -162.249682, 54.975900 ], [ -162.235675, 54.962601 ], [ -162.232962, 54.890984 ], [ -162.236806, 54.881630 ], [ -162.275316, 54.845565 ], [ -162.282944, 54.841216 ], [ -162.300580, 54.832594 ], [ -162.321094, 54.827928 ], [ -162.349315, 54.836049 ], [ -162.417370, 54.877491 ], [ -162.425244, 54.885021 ], [ -162.437501, 54.927627 ], [ -162.435473, 54.929249 ], [ -162.337431, 54.981636 ], [ -162.326811, 54.985330 ], [ -162.266743, 54.982133 ], [ -162.255031, 54.978353 ] ] ], [ [ [ -159.324364, 54.928329 ], [ -159.317681, 54.933707 ], [ -159.278696, 54.948514 ], [ -159.205670, 54.927438 ], [ -159.202857, 54.925500 ], [ -159.203228, 54.914842 ], [ -159.212627, 54.896066 ], [ -159.236066, 54.876480 ], [ -159.272354, 54.864204 ], [ -159.305864, 54.863698 ], [ -159.309681, 54.865813 ], [ -159.327873, 54.884749 ], [ -159.320732, 54.897269 ], [ -159.313528, 54.903388 ], [ -159.312060, 54.909601 ], [ -159.312733, 54.918686 ], [ -159.324364, 54.928329 ] ] ], [ [ [ -160.017900, 55.156130 ], [ -160.047358, 55.180879 ], [ -160.061469, 55.200378 ], [ -160.052941, 55.203035 ], [ -160.025257, 55.203914 ], [ -160.002155, 55.194480 ], [ -159.994027, 55.185247 ], [ -159.983499, 55.180379 ], [ -159.954350, 55.189291 ], [ -159.931240, 55.220060 ], [ -159.889174, 55.287138 ], [ -159.879690, 55.290183 ], [ -159.870591, 55.284889 ], [ -159.848619, 55.267548 ], [ -159.843859, 55.249367 ], [ -159.844622, 55.243828 ], [ -159.855302, 55.230378 ], [ -159.860991, 55.227884 ], [ -159.866624, 55.231202 ], [ -159.886523, 55.229149 ], [ -159.895326, 55.217872 ], [ -159.905365, 55.164689 ], [ -159.901569, 55.156858 ], [ -159.884997, 55.145598 ], [ -159.860891, 55.149337 ], [ -159.859568, 55.164912 ], [ -159.861308, 55.171748 ], [ -159.860786, 55.177086 ], [ -159.846264, 55.180834 ], [ -159.816419, 55.178051 ], [ -159.823710, 55.144130 ], [ -159.830890, 55.126467 ], [ -159.855444, 55.100758 ], [ -159.868580, 55.094888 ], [ -159.886109, 55.102558 ], [ -159.886476, 55.107087 ], [ -159.906609, 55.112544 ], [ -159.947575, 55.105215 ], [ -159.951281, 55.100644 ], [ -159.945410, 55.087939 ], [ -159.951127, 55.066642 ], [ -160.052093, 55.005777 ], [ -160.080659, 54.994425 ], [ -160.115775, 54.985078 ], [ -160.183466, 54.915680 ], [ -160.181636, 54.902992 ], [ -160.200831, 54.875282 ], [ -160.226967, 54.864075 ], [ -160.254765, 54.895974 ], [ -160.250814, 54.929816 ], [ -160.244253, 54.933532 ], [ -160.223411, 54.939124 ], [ -160.177607, 54.981446 ], [ -160.132168, 55.013743 ], [ -160.106837, 55.027002 ], [ -160.082168, 55.033578 ], [ -160.077872, 55.037600 ], [ -160.087574, 55.049967 ], [ -160.094288, 55.052996 ], [ -160.133416, 55.043947 ], [ -160.174366, 55.052577 ], [ -160.191392, 55.108574 ], [ -160.187261, 55.118376 ], [ -160.109864, 55.160777 ], [ -160.077308, 55.146495 ], [ -160.059599, 55.133663 ], [ -160.052545, 55.121716 ], [ -160.052820, 55.119373 ], [ -160.057033, 55.118488 ], [ -160.057797, 55.115353 ], [ -160.055642, 55.111580 ], [ -160.030330, 55.116109 ], [ -160.012220, 55.122946 ], [ -160.005170, 55.129378 ], [ -160.004129, 55.134482 ], [ -160.017900, 55.156130 ] ] ], [ [ [ -159.455311, 55.061452 ], [ -159.448473, 55.064343 ], [ -159.381841, 55.064032 ], [ -159.345276, 55.059397 ], [ -159.338470, 55.046683 ], [ -159.328791, 54.980598 ], [ -159.330164, 54.976378 ], [ -159.331770, 54.974598 ], [ -159.426615, 54.942266 ], [ -159.447982, 54.941374 ], [ -159.457995, 54.945730 ], [ -159.459551, 54.948652 ], [ -159.451251, 54.975285 ], [ -159.440057, 54.988502 ], [ -159.416786, 55.000296 ], [ -159.417987, 55.022013 ], [ -159.455434, 55.035809 ], [ -159.455311, 55.061452 ] ] ], [ [ [ -159.533457, 55.184761 ], [ -159.504325, 55.176822 ], [ -159.499502, 55.173991 ], [ -159.493398, 55.155055 ], [ -159.494772, 55.136050 ], [ -159.503592, 55.131373 ], [ -159.509361, 55.130206 ], [ -159.530302, 55.106194 ], [ -159.533630, 55.083987 ], [ -159.524444, 55.077358 ], [ -159.484200, 55.057695 ], [ -159.484980, 55.054050 ], [ -159.489589, 55.049229 ], [ -159.509674, 55.041408 ], [ -159.517824, 55.044735 ], [ -159.535465, 55.058735 ], [ -159.572365, 55.060122 ], [ -159.597824, 55.047000 ], [ -159.635226, 55.037294 ], [ -159.638905, 55.038745 ], [ -159.644029, 55.042597 ], [ -159.649062, 55.049532 ], [ -159.650859, 55.065790 ], [ -159.635410, 55.116654 ], [ -159.616961, 55.127666 ], [ -159.586075, 55.157652 ], [ -159.573144, 55.187562 ], [ -159.521096, 55.253393 ], [ -159.519196, 55.253693 ], [ -159.503196, 55.234993 ], [ -159.505270, 55.222269 ], [ -159.512350, 55.208353 ], [ -159.533457, 55.184761 ] ] ], [ [ [ -161.718614, 55.154166 ], [ -161.697097, 55.137133 ], [ -161.678389, 55.131747 ], [ -161.663618, 55.130260 ], [ -161.651563, 55.130916 ], [ -161.608634, 55.116906 ], [ -161.576643, 55.103831 ], [ -161.570523, 55.100493 ], [ -161.549901, 55.082564 ], [ -161.548924, 55.080115 ], [ -161.550357, 55.065734 ], [ -161.557315, 55.061193 ], [ -161.565036, 55.058874 ], [ -161.582584, 55.058224 ], [ -161.591069, 55.060818 ], [ -161.606359, 55.070264 ], [ -161.606482, 55.074208 ], [ -161.598303, 55.081341 ], [ -161.596951, 55.086584 ], [ -161.602514, 55.098267 ], [ -161.615867, 55.104388 ], [ -161.632391, 55.104896 ], [ -161.654918, 55.103244 ], [ -161.674539, 55.095912 ], [ -161.678537, 55.092829 ], [ -161.678171, 55.087741 ], [ -161.690346, 55.078500 ], [ -161.737922, 55.054054 ], [ -161.764169, 55.059509 ], [ -161.791606, 55.077307 ], [ -161.814984, 55.098639 ], [ -161.816482, 55.111319 ], [ -161.819869, 55.113965 ], [ -161.851152, 55.126378 ], [ -161.862504, 55.127598 ], [ -161.886278, 55.126933 ], [ -161.897846, 55.135768 ], [ -161.900685, 55.142139 ], [ -161.888936, 55.160724 ], [ -161.850057, 55.175260 ], [ -161.827840, 55.178473 ], [ -161.737810, 55.161935 ], [ -161.718614, 55.154166 ] ] ], [ [ [ -160.506927, 55.327730 ], [ -160.528864, 55.343501 ], [ -160.534943, 55.343537 ], [ -160.564427, 55.332504 ], [ -160.579690, 55.314292 ], [ -160.580668, 55.307196 ], [ -160.580088, 55.302503 ], [ -160.565929, 55.273137 ], [ -160.550759, 55.264302 ], [ -160.527617, 55.256374 ], [ -160.486174, 55.193617 ], [ -160.486511, 55.181951 ], [ -160.496306, 55.166399 ], [ -160.525226, 55.129871 ], [ -160.655577, 55.160261 ], [ -160.675871, 55.173622 ], [ -160.688372, 55.195588 ], [ -160.690293, 55.210474 ], [ -160.756587, 55.195143 ], [ -160.767393, 55.185399 ], [ -160.765229, 55.176716 ], [ -160.794198, 55.134399 ], [ -160.806009, 55.125670 ], [ -160.821381, 55.117851 ], [ -160.824468, 55.120153 ], [ -160.815862, 55.141556 ], [ -160.807468, 55.155579 ], [ -160.807558, 55.168161 ], [ -160.819487, 55.187457 ], [ -160.841917, 55.204440 ], [ -160.841221, 55.293957 ], [ -160.856621, 55.318488 ], [ -160.840251, 55.339777 ], [ -160.797147, 55.381521 ], [ -160.777800, 55.388639 ], [ -160.710298, 55.403075 ], [ -160.687442, 55.402198 ], [ -160.665927, 55.399025 ], [ -160.649234, 55.388780 ], [ -160.646214, 55.383142 ], [ -160.646156, 55.357689 ], [ -160.651011, 55.343650 ], [ -160.614256, 55.348019 ], [ -160.572716, 55.388978 ], [ -160.567384, 55.390078 ], [ -160.545227, 55.387911 ], [ -160.517513, 55.379378 ], [ -160.522063, 55.374369 ], [ -160.522399, 55.370371 ], [ -160.522307, 55.364367 ], [ -160.518955, 55.361552 ], [ -160.425658, 55.338883 ], [ -160.408614, 55.341677 ], [ -160.403350, 55.346299 ], [ -160.361758, 55.363230 ], [ -160.344369, 55.362962 ], [ -160.333692, 55.360139 ], [ -160.326463, 55.353189 ], [ -160.317665, 55.338533 ], [ -160.306550, 55.303275 ], [ -160.330722, 55.261045 ], [ -160.341217, 55.251799 ], [ -160.372603, 55.259910 ], [ -160.378887, 55.266692 ], [ -160.380472, 55.272803 ], [ -160.390421, 55.286576 ], [ -160.441896, 55.298264 ], [ -160.449799, 55.297081 ], [ -160.457765, 55.291893 ], [ -160.468262, 55.288925 ], [ -160.475493, 55.289230 ], [ -160.481536, 55.291779 ], [ -160.518148, 55.309102 ], [ -160.526945, 55.319044 ], [ -160.506927, 55.327730 ] ] ], [ [ [ -160.211780, 55.455862 ], [ -160.137032, 55.450709 ], [ -160.141834, 55.387154 ], [ -160.142505, 55.383491 ], [ -160.147993, 55.377576 ], [ -160.154038, 55.377518 ], [ -160.203610, 55.391739 ], [ -160.279970, 55.395905 ], [ -160.308921, 55.393174 ], [ -160.321132, 55.393677 ], [ -160.339858, 55.409692 ], [ -160.349526, 55.420477 ], [ -160.347609, 55.426187 ], [ -160.323237, 55.444633 ], [ -160.266834, 55.462789 ], [ -160.260565, 55.463674 ], [ -160.227504, 55.460340 ], [ -160.211780, 55.455862 ] ] ], [ [ [ -165.790523, 54.171758 ], [ -165.747893, 54.161297 ], [ -165.742613, 54.158352 ], [ -165.732602, 54.148121 ], [ -165.714198, 54.120815 ], [ -165.667323, 54.132123 ], [ -165.661379, 54.130935 ], [ -165.655573, 54.119100 ], [ -165.671477, 54.096235 ], [ -165.767173, 54.065935 ], [ -165.810747, 54.074764 ], [ -165.875129, 54.036420 ], [ -165.896308, 54.055714 ], [ -165.897261, 54.060634 ], [ -165.901649, 54.062870 ], [ -165.916235, 54.065708 ], [ -165.930242, 54.066554 ], [ -165.984415, 54.061722 ], [ -166.019861, 54.051441 ], [ -166.027733, 54.045917 ], [ -166.046438, 54.044186 ], [ -166.098255, 54.103538 ], [ -166.112242, 54.122528 ], [ -166.101402, 54.144148 ], [ -166.082028, 54.175184 ], [ -166.002465, 54.213629 ], [ -165.983200, 54.221175 ], [ -165.944630, 54.220855 ], [ -165.873076, 54.216455 ], [ -165.868192, 54.214884 ], [ -165.865140, 54.212160 ], [ -165.865872, 54.200014 ], [ -165.871973, 54.189783 ], [ -165.880456, 54.183648 ], [ -165.868076, 54.168731 ], [ -165.863518, 54.166162 ], [ -165.837274, 54.161028 ], [ -165.832421, 54.161333 ], [ -165.825159, 54.164499 ], [ -165.797147, 54.183246 ], [ -165.793781, 54.183433 ], [ -165.792569, 54.181605 ], [ -165.790523, 54.171758 ] ] ], [ [ [ -165.271048, 54.095665 ], [ -165.267012, 54.095467 ], [ -165.234364, 54.065423 ], [ -165.235149, 54.062767 ], [ -165.245830, 54.056110 ], [ -165.324415, 54.063907 ], [ -165.336836, 54.070126 ], [ -165.365768, 54.073317 ], [ -165.458179, 54.066313 ], [ -165.482747, 54.072218 ], [ -165.483373, 54.075036 ], [ -165.468221, 54.079641 ], [ -165.438972, 54.084136 ], [ -165.322268, 54.094634 ], [ -165.271048, 54.095665 ] ] ], [ [ [ -164.976199, 54.134595 ], [ -164.937766, 54.136682 ], [ -164.921307, 54.128569 ], [ -164.919689, 54.116080 ], [ -164.921464, 54.111083 ], [ -164.953165, 54.078056 ], [ -164.960581, 54.076026 ], [ -165.044322, 54.066629 ], [ -165.203413, 54.087752 ], [ -165.212264, 54.090158 ], [ -165.220871, 54.101574 ], [ -165.198746, 54.116474 ], [ -165.140978, 54.131079 ], [ -165.088486, 54.128005 ], [ -165.067428, 54.123174 ], [ -165.050155, 54.121708 ], [ -165.023065, 54.121919 ], [ -165.007910, 54.134934 ], [ -164.976199, 54.134595 ] ] ], [ [ [ -165.523466, 54.299895 ], [ -165.502775, 54.299469 ], [ -165.478452, 54.295333 ], [ -165.477750, 54.283707 ], [ -165.479981, 54.281838 ], [ -165.513700, 54.274086 ], [ -165.557581, 54.254138 ], [ -165.558835, 54.250763 ], [ -165.557950, 54.246826 ], [ -165.553251, 54.239601 ], [ -165.512782, 54.212929 ], [ -165.496279, 54.210938 ], [ -165.478816, 54.213310 ], [ -165.405377, 54.212837 ], [ -165.391441, 54.204253 ], [ -165.383719, 54.196731 ], [ -165.399985, 54.177741 ], [ -165.412925, 54.179221 ], [ -165.422356, 54.182799 ], [ -165.476190, 54.182701 ], [ -165.481317, 54.179962 ], [ -165.536004, 54.129606 ], [ -165.549217, 54.112196 ], [ -165.565422, 54.108122 ], [ -165.575645, 54.108618 ], [ -165.613214, 54.120908 ], [ -165.629725, 54.132558 ], [ -165.637081, 54.199436 ], [ -165.621854, 54.208105 ], [ -165.593656, 54.218375 ], [ -165.585782, 54.223067 ], [ -165.579801, 54.229575 ], [ -165.587157, 54.238166 ], [ -165.595732, 54.242713 ], [ -165.612082, 54.246537 ], [ -165.615629, 54.244834 ], [ -165.625609, 54.233756 ], [ -165.640013, 54.229673 ], [ -165.669383, 54.229036 ], [ -165.681458, 54.236914 ], [ -165.685823, 54.243406 ], [ -165.684114, 54.249907 ], [ -165.675447, 54.264639 ], [ -165.636383, 54.297567 ], [ -165.625550, 54.298964 ], [ -165.615570, 54.297445 ], [ -165.605225, 54.294219 ], [ -165.586509, 54.284361 ], [ -165.523466, 54.299895 ] ] ], [ [ [ -162.801865, 54.489440 ], [ -162.796290, 54.492254 ], [ -162.728415, 54.475354 ], [ -162.588883, 54.450064 ], [ -162.556667, 54.424621 ], [ -162.552718, 54.416113 ], [ -162.551618, 54.392217 ], [ -162.562726, 54.382840 ], [ -162.611891, 54.368077 ], [ -162.722797, 54.400340 ], [ -162.760396, 54.373254 ], [ -162.759472, 54.371116 ], [ -162.781239, 54.375085 ], [ -162.860050, 54.425452 ], [ -162.827621, 54.490859 ], [ -162.801865, 54.489440 ] ] ], [ [ [ -173.116905, 60.516005 ], [ -173.098092, 60.533367 ], [ -173.098094, 60.573993 ], [ -173.041847, 60.611497 ], [ -172.999659, 60.611498 ], [ -172.971530, 60.605249 ], [ -172.915274, 60.527122 ], [ -172.915273, 60.514621 ], [ -172.895349, 60.499750 ], [ -172.715261, 60.429864 ], [ -172.706472, 60.425179 ], [ -172.480536, 60.400184 ], [ -172.352622, 60.381435 ], [ -172.341399, 60.373145 ], [ -172.333051, 60.364359 ], [ -172.269754, 60.333887 ], [ -172.254821, 60.334082 ], [ -172.254821, 60.326466 ], [ -172.291289, 60.321193 ], [ -172.435476, 60.332653 ], [ -172.491531, 60.334874 ], [ -172.505544, 60.330428 ], [ -172.519558, 60.323758 ], [ -172.547585, 60.317088 ], [ -172.589625, 60.314863 ], [ -172.612982, 60.319309 ], [ -172.622325, 60.330424 ], [ -172.757794, 60.374881 ], [ -172.811529, 60.406621 ], [ -172.951477, 60.478649 ], [ -172.959056, 60.479695 ], [ -172.966515, 60.478167 ], [ -172.990296, 60.478702 ], [ -173.119005, 60.500067 ], [ -173.120769, 60.513010 ], [ -173.116905, 60.516005 ] ] ], [ [ [ -165.721389, 60.169620 ], [ -165.723168, 60.156603 ], [ -165.719120, 60.153521 ], [ -165.702411, 60.151285 ], [ -165.697273, 60.153592 ], [ -165.683507, 60.154221 ], [ -165.675374, 60.149360 ], [ -165.667863, 60.114676 ], [ -165.671567, 60.096877 ], [ -165.680612, 60.089962 ], [ -165.684585, 60.055237 ], [ -165.649318, 59.991837 ], [ -165.588873, 59.966005 ], [ -165.539367, 59.965175 ], [ -165.534482, 59.951276 ], [ -165.543456, 59.930376 ], [ -165.550405, 59.920007 ], [ -165.575815, 59.904672 ], [ -165.695981, 59.893513 ], [ -165.712875, 59.895364 ], [ -165.717549, 59.899137 ], [ -165.722458, 59.899813 ], [ -165.751851, 59.899947 ], [ -165.905471, 59.871937 ], [ -166.010201, 59.847061 ], [ -166.060952, 59.820508 ], [ -166.072465, 59.805462 ], [ -166.058096, 59.787110 ], [ -166.042089, 59.776212 ], [ -166.032277, 59.773729 ], [ -166.030813, 59.770600 ], [ -166.036947, 59.757859 ], [ -166.062854, 59.748586 ], [ -166.157071, 59.748886 ], [ -166.180920, 59.763728 ], [ -166.176669, 59.766495 ], [ -166.174820, 59.770681 ], [ -166.184234, 59.779432 ], [ -166.203293, 59.791676 ], [ -166.251528, 59.809807 ], [ -166.381986, 59.849087 ], [ -166.407290, 59.854604 ], [ -166.439746, 59.857816 ], [ -166.512223, 59.849939 ], [ -166.583297, 59.848705 ], [ -166.616849, 59.850711 ], [ -166.621473, 59.856438 ], [ -166.648076, 59.871100 ], [ -166.678200, 59.881248 ], [ -166.716563, 59.889011 ], [ -166.764183, 59.892061 ], [ -166.801634, 59.916321 ], [ -166.866530, 59.949544 ], [ -166.892330, 59.960507 ], [ -166.995748, 59.993495 ], [ -167.067602, 59.992295 ], [ -167.111785, 59.989349 ], [ -167.124867, 59.991700 ], [ -167.133258, 59.994695 ], [ -167.220210, 60.040133 ], [ -167.247627, 60.058862 ], [ -167.281357, 60.063892 ], [ -167.310664, 60.064874 ], [ -167.339109, 60.070159 ], [ -167.342702, 60.072395 ], [ -167.342885, 60.074979 ], [ -167.334050, 60.088609 ], [ -167.333860, 60.094065 ], [ -167.343303, 60.123181 ], [ -167.347866, 60.131140 ], [ -167.362783, 60.147556 ], [ -167.423053, 60.195072 ], [ -167.421489, 60.205431 ], [ -167.369927, 60.225496 ], [ -167.312616, 60.238454 ], [ -167.201940, 60.237822 ], [ -167.105975, 60.232895 ], [ -167.081935, 60.225765 ], [ -167.045820, 60.219088 ], [ -166.937970, 60.205870 ], [ -166.909802, 60.206513 ], [ -166.847438, 60.213592 ], [ -166.812484, 60.227780 ], [ -166.803469, 60.242802 ], [ -166.809546, 60.259658 ], [ -166.826169, 60.268644 ], [ -166.834966, 60.271406 ], [ -166.832877, 60.275449 ], [ -166.814979, 60.286283 ], [ -166.762522, 60.309837 ], [ -166.738323, 60.314301 ], [ -166.662112, 60.322993 ], [ -166.608896, 60.321250 ], [ -166.578305, 60.321850 ], [ -166.569828, 60.325955 ], [ -166.562081, 60.359022 ], [ -166.493543, 60.392389 ], [ -166.414570, 60.371870 ], [ -166.408546, 60.365899 ], [ -166.387184, 60.359671 ], [ -166.366596, 60.358227 ], [ -166.310655, 60.377611 ], [ -166.200019, 60.393404 ], [ -166.174906, 60.401003 ], [ -166.171187, 60.428854 ], [ -166.163203, 60.432641 ], [ -166.135704, 60.424510 ], [ -166.124379, 60.414253 ], [ -166.124231, 60.409953 ], [ -166.134927, 60.400129 ], [ -166.123805, 60.378116 ], [ -166.084791, 60.325288 ], [ -166.012169, 60.317691 ], [ -165.987336, 60.317833 ], [ -165.927956, 60.321592 ], [ -165.924640, 60.325249 ], [ -165.923572, 60.330503 ], [ -165.920794, 60.335398 ], [ -165.916828, 60.338002 ], [ -165.883458, 60.343902 ], [ -165.786573, 60.326821 ], [ -165.714510, 60.310496 ], [ -165.697326, 60.297238 ], [ -165.685751, 60.277564 ], [ -165.686143, 60.267811 ], [ -165.698339, 60.210676 ], [ -165.708863, 60.189125 ], [ -165.721389, 60.169620 ] ] ], [ [ [ -134.713987, 58.220748 ], [ -134.712801, 58.215369 ], [ -134.710513, 58.192557 ], [ -134.703727, 58.166794 ], [ -134.699956, 58.161494 ], [ -134.689515, 58.158825 ], [ -134.682812, 58.158843 ], [ -134.631434, 58.162198 ], [ -134.608911, 58.171637 ], [ -134.608358, 58.173472 ], [ -134.594804, 58.183511 ], [ -134.559241, 58.195121 ], [ -134.541609, 58.184327 ], [ -134.519644, 58.175771 ], [ -134.500740, 58.172546 ], [ -134.479810, 58.171199 ], [ -134.462633, 58.173851 ], [ -134.446657, 58.173583 ], [ -134.413953, 58.167546 ], [ -134.401512, 58.163427 ], [ -134.371445, 58.148966 ], [ -134.327360, 58.143880 ], [ -134.317037, 58.145440 ], [ -134.306483, 58.152490 ], [ -134.259705, 58.157712 ], [ -134.215981, 58.162128 ], [ -134.177467, 58.159640 ], [ -134.166332, 58.132558 ], [ -134.167257, 58.128577 ], [ -134.174352, 58.125284 ], [ -134.192724, 58.107685 ], [ -134.189370, 58.083444 ], [ -134.183983, 58.077295 ], [ -134.169743, 58.066845 ], [ -134.138231, 58.047103 ], [ -134.098652, 58.018748 ], [ -134.091885, 58.010777 ], [ -134.087461, 58.001685 ], [ -134.087572, 57.996475 ], [ -134.101549, 57.988716 ], [ -134.101125, 57.984070 ], [ -134.089575, 57.974357 ], [ -134.068949, 57.961083 ], [ -134.016873, 57.930006 ], [ -133.999948, 57.914810 ], [ -133.996340, 57.904167 ], [ -133.995977, 57.895632 ], [ -133.963791, 57.854628 ], [ -133.934735, 57.837626 ], [ -133.904874, 57.807406 ], [ -133.902695, 57.797797 ], [ -133.903854, 57.794818 ], [ -133.908085, 57.791670 ], [ -133.909890, 57.780628 ], [ -133.896846, 57.685524 ], [ -133.868134, 57.660137 ], [ -133.837424, 57.638486 ], [ -133.832895, 57.635733 ], [ -133.821673, 57.633887 ], [ -133.817662, 57.629764 ], [ -133.808285, 57.609604 ], [ -133.806003, 57.583457 ], [ -133.807133, 57.578770 ], [ -133.811640, 57.572365 ], [ -133.817600, 57.568353 ], [ -133.840838, 57.576865 ], [ -133.859635, 57.605325 ], [ -133.858010, 57.616940 ], [ -133.863112, 57.623701 ], [ -133.911329, 57.663562 ], [ -133.962582, 57.689887 ], [ -133.970087, 57.695342 ], [ -133.994964, 57.719821 ], [ -134.010728, 57.759392 ], [ -134.013144, 57.789393 ], [ -134.030820, 57.818646 ], [ -134.061833, 57.829808 ], [ -134.098628, 57.850550 ], [ -134.121337, 57.871236 ], [ -134.119210, 57.872917 ], [ -134.121904, 57.882520 ], [ -134.126105, 57.890260 ], [ -134.132146, 57.896189 ], [ -134.151127, 57.903209 ], [ -134.176606, 57.909725 ], [ -134.202353, 57.906330 ], [ -134.206874, 57.895901 ], [ -134.163120, 57.848669 ], [ -134.112948, 57.809263 ], [ -134.105408, 57.795974 ], [ -134.099782, 57.780261 ], [ -134.100899, 57.776779 ], [ -134.146342, 57.760258 ], [ -134.127700, 57.739216 ], [ -134.116097, 57.727582 ], [ -134.020169, 57.656734 ], [ -134.013367, 57.655898 ], [ -133.993974, 57.649095 ], [ -133.958454, 57.629537 ], [ -133.935976, 57.614414 ], [ -133.934361, 57.601765 ], [ -133.945156, 57.569841 ], [ -133.943417, 57.561555 ], [ -133.933216, 57.544450 ], [ -133.920557, 57.530088 ], [ -133.901074, 57.517219 ], [ -133.886269, 57.504999 ], [ -133.857368, 57.463964 ], [ -133.927539, 57.469570 ], [ -133.925527, 57.456650 ], [ -133.870327, 57.381298 ], [ -133.866931, 57.367869 ], [ -133.867279, 57.362060 ], [ -133.870657, 57.358287 ], [ -133.962897, 57.305425 ], [ -133.968495, 57.303937 ], [ -133.983501, 57.302838 ], [ -134.008394, 57.317522 ], [ -134.034563, 57.327638 ], [ -134.055618, 57.330194 ], [ -134.094891, 57.326401 ], [ -134.100587, 57.321738 ], [ -134.084374, 57.303963 ], [ -134.080495, 57.297678 ], [ -134.110315, 57.249948 ], [ -134.155390, 57.208003 ], [ -134.193629, 57.184879 ], [ -134.292760, 57.137049 ], [ -134.302721, 57.136562 ], [ -134.349602, 57.124638 ], [ -134.378359, 57.115016 ], [ -134.370797, 57.099924 ], [ -134.386052, 57.087392 ], [ -134.481167, 57.046006 ], [ -134.484288, 57.036481 ], [ -134.497718, 57.031194 ], [ -134.565687, 57.023737 ], [ -134.601407, 57.033812 ], [ -134.634565, 57.109863 ], [ -134.646773, 57.226327 ], [ -134.640169, 57.239852 ], [ -134.605032, 57.273000 ], [ -134.570954, 57.294624 ], [ -134.517279, 57.314567 ], [ -134.543385, 57.337414 ], [ -134.559794, 57.336138 ], [ -134.574114, 57.341172 ], [ -134.575492, 57.343694 ], [ -134.578511, 57.400291 ], [ -134.555540, 57.407428 ], [ -134.527594, 57.405331 ], [ -134.525997, 57.397845 ], [ -134.527759, 57.393940 ], [ -134.527873, 57.389874 ], [ -134.486023, 57.372492 ], [ -134.477240, 57.374401 ], [ -134.464032, 57.392184 ], [ -134.544853, 57.457872 ], [ -134.607557, 57.513042 ], [ -134.598452, 57.522395 ], [ -134.595981, 57.534107 ], [ -134.611177, 57.563137 ], [ -134.665337, 57.605701 ], [ -134.674438, 57.614409 ], [ -134.695428, 57.685335 ], [ -134.700518, 57.695966 ], [ -134.704859, 57.701457 ], [ -134.720351, 57.707052 ], [ -134.731798, 57.721921 ], [ -134.728792, 57.756640 ], [ -134.709024, 57.780498 ], [ -134.705869, 57.828929 ], [ -134.727077, 57.877098 ], [ -134.737475, 57.890790 ], [ -134.746108, 57.898529 ], [ -134.758833, 57.980212 ], [ -134.765290, 57.993762 ], [ -134.777022, 58.004679 ], [ -134.796804, 58.058855 ], [ -134.783772, 58.082292 ], [ -134.784927, 58.096793 ], [ -134.820663, 58.141465 ], [ -134.857221, 58.176288 ], [ -134.864299, 58.180489 ], [ -134.877918, 58.181535 ], [ -134.885857, 58.184031 ], [ -134.899665, 58.194320 ], [ -134.914857, 58.214932 ], [ -134.948327, 58.281316 ], [ -134.969189, 58.367542 ], [ -134.960502, 58.403758 ], [ -134.955902, 58.410297 ], [ -134.897292, 58.376890 ], [ -134.806116, 58.321284 ], [ -134.803831, 58.316567 ], [ -134.802388, 58.301070 ], [ -134.779354, 58.281279 ], [ -134.760052, 58.275251 ], [ -134.729861, 58.273512 ], [ -134.724463, 58.268277 ], [ -134.713987, 58.220748 ] ] ], [ [ [ -131.246018, 54.989555 ], [ -131.257421, 54.979010 ], [ -131.242771, 54.929639 ], [ -131.233001, 54.926814 ], [ -131.217805, 54.927423 ], [ -131.197924, 54.921489 ], [ -131.195197, 54.919767 ], [ -131.195411, 54.918249 ], [ -131.200161, 54.910169 ], [ -131.253671, 54.866779 ], [ -131.266049, 54.859369 ], [ -131.353233, 54.859009 ], [ -131.469097, 54.913153 ], [ -131.491504, 54.930392 ], [ -131.486616, 54.950394 ], [ -131.482676, 54.952659 ], [ -131.409738, 54.971152 ], [ -131.266084, 54.998806 ], [ -131.248909, 54.997190 ], [ -131.246018, 54.989555 ] ] ], [ [ [ -131.759896, 55.381845 ], [ -131.716140, 55.349570 ], [ -131.685192, 55.333501 ], [ -131.666738, 55.327492 ], [ -131.647236, 55.306140 ], [ -131.658130, 55.292512 ], [ -131.688644, 55.282113 ], [ -131.694487, 55.223739 ], [ -131.718468, 55.200099 ], [ -131.748334, 55.128588 ], [ -131.798943, 55.162351 ], [ -131.829585, 55.191916 ], [ -131.830718, 55.194991 ], [ -131.828395, 55.198482 ], [ -131.850839, 55.274364 ], [ -131.862162, 55.289284 ], [ -131.870568, 55.364553 ], [ -131.854297, 55.421074 ], [ -131.852330, 55.423782 ], [ -131.833218, 55.422014 ], [ -131.811697, 55.414048 ], [ -131.809721, 55.412555 ], [ -131.806790, 55.405175 ], [ -131.798555, 55.399386 ], [ -131.759896, 55.381845 ] ] ], [ [ [ -157.026070, 56.559757 ], [ -156.990969, 56.547939 ], [ -156.975549, 56.540446 ], [ -156.972896, 56.536505 ], [ -156.986090, 56.532749 ], [ -157.003409, 56.535639 ], [ -157.006523, 56.538910 ], [ -157.017711, 56.543081 ], [ -157.053384, 56.550425 ], [ -157.113193, 56.552658 ], [ -157.121393, 56.551963 ], [ -157.142219, 56.542390 ], [ -157.150309, 56.533600 ], [ -157.168777, 56.530210 ], [ -157.326059, 56.525169 ], [ -157.328898, 56.528155 ], [ -157.326110, 56.540375 ], [ -157.298635, 56.560051 ], [ -157.288702, 56.566039 ], [ -157.250098, 56.582142 ], [ -157.146636, 56.583651 ], [ -157.091146, 56.581134 ], [ -157.077383, 56.579035 ], [ -157.026070, 56.559757 ] ] ], [ [ [ -169.267598, 63.343995 ], [ -169.101961, 63.338022 ], [ -169.087914, 63.340937 ], [ -169.051950, 63.343127 ], [ -168.999241, 63.341249 ], [ -168.937385, 63.333789 ], [ -168.936333, 63.330622 ], [ -168.932623, 63.329140 ], [ -168.796086, 63.308781 ], [ -168.692939, 63.302282 ], [ -168.685145, 63.296427 ], [ -168.686675, 63.293022 ], [ -168.716872, 63.256316 ], [ -168.751537, 63.217962 ], [ -168.783239, 63.184131 ], [ -168.789266, 63.179646 ], [ -168.818344, 63.163224 ], [ -168.858750, 63.146958 ], [ -168.871465, 63.146009 ], [ -168.889683, 63.147708 ], [ -168.950091, 63.160895 ], [ -168.963577, 63.167104 ], [ -168.983024, 63.169671 ], [ -169.042674, 63.176511 ], [ -169.105808, 63.178803 ], [ -169.198398, 63.176011 ], [ -169.262039, 63.169936 ], [ -169.303477, 63.164439 ], [ -169.375667, 63.151269 ], [ -169.396308, 63.136617 ], [ -169.436748, 63.113579 ], [ -169.471949, 63.098565 ], [ -169.513650, 63.084717 ], [ -169.534984, 63.074355 ], [ -169.561131, 63.055178 ], [ -169.575873, 63.036450 ], [ -169.576965, 63.027025 ], [ -169.572777, 63.022118 ], [ -169.568016, 62.976879 ], [ -169.638309, 62.937527 ], [ -169.746736, 62.955991 ], [ -169.757249, 62.960087 ], [ -169.757514, 62.963722 ], [ -169.734938, 62.974468 ], [ -169.734938, 62.976617 ], [ -169.788466, 63.043015 ], [ -169.829912, 63.078550 ], [ -169.838511, 63.084339 ], [ -169.881230, 63.105848 ], [ -169.944056, 63.132360 ], [ -169.987936, 63.142975 ], [ -170.006196, 63.144540 ], [ -170.021208, 63.149500 ], [ -170.049622, 63.163377 ], [ -170.051062, 63.167489 ], [ -170.053402, 63.168858 ], [ -170.101301, 63.179300 ], [ -170.124354, 63.183665 ], [ -170.154072, 63.186402 ], [ -170.174421, 63.185464 ], [ -170.186485, 63.181618 ], [ -170.181985, 63.178804 ], [ -170.193695, 63.177434 ], [ -170.263032, 63.179147 ], [ -170.281388, 63.186821 ], [ -170.285648, 63.194570 ], [ -170.279881, 63.197108 ], [ -170.277915, 63.200239 ], [ -170.277721, 63.208819 ], [ -170.303630, 63.238692 ], [ -170.337275, 63.266308 ], [ -170.364806, 63.285596 ], [ -170.430656, 63.314284 ], [ -170.512102, 63.341881 ], [ -170.558950, 63.354989 ], [ -170.712572, 63.385975 ], [ -170.865412, 63.414229 ], [ -170.923450, 63.420859 ], [ -170.967475, 63.423730 ], [ -171.067663, 63.424579 ], [ -171.100855, 63.423420 ], [ -171.269249, 63.385386 ], [ -171.280185, 63.381543 ], [ -171.287157, 63.376642 ], [ -171.288265, 63.374833 ], [ -171.285411, 63.366464 ], [ -171.290324, 63.355383 ], [ -171.333089, 63.335393 ], [ -171.433319, 63.307578 ], [ -171.464455, 63.306915 ], [ -171.562263, 63.334591 ], [ -171.667115, 63.356166 ], [ -171.739321, 63.366114 ], [ -171.795297, 63.407853 ], [ -171.818259, 63.429452 ], [ -171.824872, 63.437141 ], [ -171.849984, 63.485039 ], [ -171.840382, 63.547724 ], [ -171.833681, 63.580074 ], [ -171.791881, 63.620625 ], [ -171.757081, 63.640252 ], [ -171.743979, 63.654905 ], [ -171.742338, 63.665494 ], [ -171.755552, 63.701173 ], [ -171.754336, 63.718960 ], [ -171.739918, 63.717096 ], [ -171.733206, 63.720327 ], [ -171.727986, 63.726791 ], [ -171.725748, 63.734745 ], [ -171.727986, 63.744938 ], [ -171.737432, 63.760350 ], [ -171.743398, 63.782971 ], [ -171.738178, 63.784711 ], [ -171.699647, 63.781728 ], [ -171.692686, 63.782598 ], [ -171.682494, 63.787570 ], [ -171.673296, 63.788067 ], [ -171.667330, 63.785581 ], [ -171.659873, 63.775762 ], [ -171.643963, 63.770791 ], [ -171.638991, 63.759231 ], [ -171.638246, 63.749536 ], [ -171.641477, 63.745559 ], [ -171.652912, 63.739220 ], [ -171.652664, 63.736610 ], [ -171.648935, 63.734870 ], [ -171.646692, 63.729425 ], [ -171.652630, 63.708523 ], [ -171.649923, 63.702540 ], [ -171.640027, 63.693430 ], [ -171.632194, 63.688601 ], [ -171.609439, 63.679832 ], [ -171.521859, 63.658797 ], [ -171.381677, 63.630646 ], [ -171.202557, 63.606897 ], [ -171.103558, 63.589268 ], [ -171.044486, 63.580431 ], [ -170.950817, 63.570127 ], [ -170.907197, 63.572107 ], [ -170.897581, 63.574676 ], [ -170.859032, 63.587503 ], [ -170.816581, 63.606329 ], [ -170.698156, 63.646778 ], [ -170.606282, 63.672732 ], [ -170.488192, 63.696723 ], [ -170.472181, 63.698677 ], [ -170.462947, 63.698022 ], [ -170.441066, 63.691981 ], [ -170.373871, 63.687322 ], [ -170.359363, 63.687321 ], [ -170.354527, 63.691924 ], [ -170.344855, 63.694225 ], [ -170.315839, 63.691923 ], [ -170.281988, 63.685020 ], [ -170.267480, 63.675816 ], [ -170.257808, 63.666611 ], [ -170.176413, 63.625489 ], [ -170.154754, 63.619072 ], [ -170.140040, 63.616696 ], [ -170.113066, 63.616245 ], [ -170.095833, 63.612701 ], [ -170.076689, 63.587988 ], [ -170.040919, 63.523411 ], [ -170.047114, 63.490135 ], [ -170.026953, 63.480702 ], [ -170.007943, 63.475428 ], [ -169.974858, 63.470618 ], [ -169.906304, 63.457519 ], [ -169.857078, 63.441975 ], [ -169.747634, 63.432756 ], [ -169.656474, 63.429929 ], [ -169.643167, 63.427802 ], [ -169.579892, 63.402870 ], [ -169.566562, 63.388725 ], [ -169.565439, 63.385563 ], [ -169.554375, 63.377158 ], [ -169.546934, 63.372792 ], [ -169.520524, 63.365941 ], [ -169.415329, 63.355943 ], [ -169.384080, 63.356733 ], [ -169.312970, 63.353335 ], [ -169.281422, 63.348381 ], [ -169.267598, 63.343995 ] ] ], [ [ [ -162.614621, 63.621832 ], [ -162.587527, 63.625115 ], [ -162.558234, 63.634308 ], [ -162.541389, 63.635727 ], [ -162.512298, 63.629784 ], [ -162.498175, 63.622069 ], [ -162.451929, 63.621270 ], [ -162.440229, 63.622491 ], [ -162.430304, 63.625745 ], [ -162.425419, 63.629950 ], [ -162.425265, 63.631654 ], [ -162.427696, 63.633134 ], [ -162.424205, 63.636215 ], [ -162.401203, 63.634367 ], [ -162.374243, 63.626425 ], [ -162.341892, 63.594062 ], [ -162.345179, 63.551785 ], [ -162.377988, 63.543813 ], [ -162.416802, 63.547389 ], [ -162.470029, 63.547500 ], [ -162.552701, 63.540951 ], [ -162.562007, 63.537105 ], [ -162.614949, 63.540601 ], [ -162.676581, 63.555648 ], [ -162.680973, 63.556859 ], [ -162.707559, 63.577607 ], [ -162.682629, 63.584066 ], [ -162.644513, 63.602599 ], [ -162.614621, 63.621832 ] ] ], [ [ [ -168.210120, 64.998960 ], [ -168.207906, 65.003291 ], [ -168.169090, 65.024067 ], [ -168.156162, 65.029174 ], [ -168.129109, 65.034565 ], [ -168.076108, 65.043289 ], [ -168.004872, 65.038897 ], [ -167.972262, 65.030534 ], [ -167.953076, 65.023479 ], [ -167.924296, 65.002728 ], [ -167.916447, 64.988618 ], [ -167.913829, 64.969943 ], [ -167.919060, 64.960813 ], [ -167.953094, 64.932994 ], [ -167.976149, 64.922872 ], [ -168.037032, 64.909284 ], [ -168.090879, 64.911113 ], [ -168.137033, 64.918432 ], [ -168.187035, 64.934902 ], [ -168.210114, 64.951372 ], [ -168.213962, 64.967845 ], [ -168.213963, 64.984318 ], [ -168.210120, 64.998960 ] ] ], [ [ [ -168.952766, 65.758911 ], [ -168.947278, 65.763817 ], [ -168.937240, 65.767116 ], [ -168.915518, 65.770484 ], [ -168.902235, 65.769665 ], [ -168.893219, 65.744705 ], [ -168.898754, 65.739709 ], [ -168.903439, 65.738454 ], [ -168.931220, 65.738940 ], [ -168.940760, 65.742714 ], [ -168.951388, 65.749319 ], [ -168.954515, 65.757144 ], [ -168.952766, 65.758911 ] ] ], [ [ [ -166.031870, 66.264639 ], [ -166.031342, 66.264631 ], [ -166.019921, 66.252754 ], [ -166.066397, 66.246531 ], [ -166.096969, 66.237833 ], [ -166.121659, 66.214773 ], [ -166.138390, 66.210089 ], [ -166.153012, 66.212289 ], [ -166.170909, 66.218437 ], [ -166.172071, 66.219909 ], [ -166.178474, 66.228016 ], [ -166.177606, 66.234732 ], [ -166.165412, 66.239084 ], [ -166.152374, 66.246373 ], [ -166.129652, 66.252813 ], [ -166.101781, 66.258743 ], [ -166.066097, 66.263721 ], [ -166.053153, 66.264944 ], [ -166.031870, 66.264639 ] ] ], [ [ [ -134.283312, 55.925175 ], [ -134.265872, 55.917371 ], [ -134.230613, 55.905629 ], [ -134.173104, 55.918519 ], [ -134.152216, 55.920916 ], [ -134.122839, 55.918654 ], [ -134.118062, 55.914642 ], [ -134.125521, 55.902095 ], [ -134.130544, 55.897512 ], [ -134.136647, 55.895393 ], [ -134.145803, 55.896713 ], [ -134.168363, 55.892319 ], [ -134.208251, 55.876709 ], [ -134.231157, 55.864747 ], [ -134.240537, 55.853922 ], [ -134.273156, 55.833058 ], [ -134.282453, 55.828667 ], [ -134.327238, 55.836440 ], [ -134.344418, 55.843198 ], [ -134.348153, 55.892817 ], [ -134.336063, 55.926614 ], [ -134.315782, 55.923003 ], [ -134.283312, 55.925175 ] ] ], [ [ [ -134.121514, 56.069847 ], [ -134.107218, 56.048156 ], [ -134.118132, 56.016922 ], [ -134.126903, 56.003592 ], [ -134.130907, 56.000104 ], [ -134.134181, 56.000971 ], [ -134.156721, 56.021080 ], [ -134.171731, 56.040227 ], [ -134.190863, 56.056540 ], [ -134.224073, 56.065223 ], [ -134.230449, 56.068341 ], [ -134.259913, 56.121275 ], [ -134.262217, 56.133222 ], [ -134.238264, 56.140863 ], [ -134.227942, 56.162835 ], [ -134.257478, 56.221411 ], [ -134.246307, 56.267768 ], [ -134.281387, 56.286218 ], [ -134.295634, 56.289228 ], [ -134.298292, 56.291993 ], [ -134.292353, 56.352644 ], [ -134.238139, 56.382806 ], [ -134.193922, 56.409906 ], [ -134.190494, 56.429749 ], [ -134.196394, 56.439800 ], [ -134.210968, 56.450498 ], [ -134.236978, 56.452363 ], [ -134.246627, 56.457135 ], [ -134.246179, 56.463511 ], [ -134.244667, 56.465100 ], [ -134.222814, 56.475402 ], [ -134.200909, 56.463297 ], [ -134.186476, 56.450571 ], [ -134.179214, 56.440305 ], [ -134.146136, 56.411069 ], [ -134.067466, 56.390987 ], [ -134.046227, 56.402275 ], [ -134.042704, 56.407697 ], [ -134.040938, 56.421530 ], [ -134.089604, 56.472582 ], [ -134.133892, 56.487825 ], [ -134.252386, 56.560861 ], [ -134.281093, 56.585555 ], [ -134.276735, 56.620290 ], [ -134.309869, 56.650509 ], [ -134.369035, 56.678022 ], [ -134.401407, 56.725419 ], [ -134.419791, 56.838385 ], [ -134.418940, 56.846524 ], [ -134.411471, 56.855837 ], [ -134.376975, 56.880055 ], [ -134.339168, 56.901830 ], [ -134.316868, 56.909091 ], [ -134.294362, 56.908714 ], [ -134.286818, 56.906534 ], [ -134.190950, 56.861675 ], [ -134.187063, 56.856714 ], [ -134.171675, 56.851218 ], [ -134.147160, 56.859357 ], [ -134.141933, 56.874188 ], [ -134.150935, 56.884958 ], [ -134.181383, 56.892572 ], [ -134.220002, 56.905084 ], [ -134.273113, 56.933823 ], [ -134.271664, 56.935928 ], [ -134.249327, 56.937374 ], [ -134.223939, 56.932553 ], [ -134.178507, 56.914018 ], [ -134.158108, 56.915029 ], [ -134.136240, 56.928842 ], [ -134.141236, 56.942081 ], [ -134.141385, 56.950887 ], [ -134.126562, 56.947381 ], [ -134.083291, 56.931579 ], [ -134.035140, 56.894510 ], [ -133.972257, 56.826934 ], [ -133.946767, 56.798924 ], [ -133.925648, 56.758912 ], [ -133.944663, 56.736433 ], [ -133.941801, 56.733493 ], [ -133.907795, 56.721840 ], [ -133.880781, 56.721396 ], [ -133.869334, 56.734081 ], [ -133.862981, 56.755650 ], [ -133.865056, 56.773240 ], [ -133.867616, 56.782025 ], [ -133.872250, 56.786186 ], [ -133.877395, 56.789192 ], [ -133.884755, 56.788656 ], [ -133.890005, 56.792468 ], [ -133.893861, 56.802526 ], [ -133.890805, 56.807980 ], [ -133.861472, 56.808837 ], [ -133.837925, 56.801788 ], [ -133.818194, 56.791453 ], [ -133.767780, 56.780469 ], [ -133.748129, 56.773919 ], [ -133.743376, 56.762291 ], [ -133.744002, 56.749772 ], [ -133.766143, 56.728886 ], [ -133.766143, 56.718242 ], [ -133.762049, 56.696135 ], [ -133.762780, 56.687180 ], [ -133.759650, 56.675913 ], [ -133.745673, 56.674028 ], [ -133.728479, 56.642915 ], [ -133.727728, 56.630846 ], [ -133.713331, 56.598298 ], [ -133.713331, 56.592664 ], [ -133.723142, 56.583962 ], [ -133.731617, 56.572304 ], [ -133.848207, 56.573057 ], [ -133.895746, 56.511217 ], [ -133.898589, 56.489877 ], [ -133.881080, 56.480803 ], [ -133.868625, 56.470919 ], [ -133.839117, 56.434885 ], [ -133.839238, 56.432018 ], [ -133.859104, 56.430348 ], [ -133.869729, 56.431796 ], [ -133.893040, 56.427364 ], [ -133.933512, 56.375428 ], [ -133.894358, 56.360989 ], [ -133.850314, 56.347417 ], [ -133.839099, 56.335467 ], [ -133.834671, 56.322382 ], [ -133.890940, 56.234467 ], [ -133.912992, 56.208351 ], [ -133.923420, 56.211725 ], [ -133.942205, 56.209460 ], [ -133.953825, 56.206661 ], [ -133.957471, 56.202584 ], [ -133.957575, 56.199887 ], [ -133.937349, 56.166129 ], [ -133.956411, 56.095484 ], [ -133.971228, 56.083293 ], [ -133.989359, 56.081347 ], [ -134.013920, 56.085374 ], [ -134.021028, 56.088745 ], [ -134.038695, 56.105807 ], [ -134.041765, 56.116337 ], [ -134.029643, 56.134864 ], [ -134.024495, 56.148164 ], [ -134.024356, 56.160382 ], [ -134.030964, 56.193214 ], [ -134.054411, 56.224854 ], [ -134.058499, 56.227214 ], [ -134.087317, 56.225424 ], [ -134.095013, 56.214751 ], [ -134.105098, 56.180941 ], [ -134.153663, 56.169700 ], [ -134.161971, 56.170153 ], [ -134.180057, 56.161635 ], [ -134.190371, 56.152571 ], [ -134.166141, 56.144564 ], [ -134.125902, 56.139804 ], [ -134.110755, 56.141053 ], [ -134.109236, 56.078732 ], [ -134.121514, 56.069847 ] ] ], [ [ [ -132.546463, 56.606563 ], [ -132.539698, 56.593199 ], [ -132.541282, 56.584573 ], [ -132.610830, 56.556252 ], [ -132.627435, 56.552428 ], [ -132.628511, 56.553553 ], [ -132.650910, 56.552127 ], [ -132.701275, 56.529580 ], [ -132.724189, 56.515371 ], [ -132.796627, 56.496471 ], [ -132.818043, 56.494934 ], [ -132.874282, 56.509108 ], [ -132.984751, 56.512640 ], [ -132.986907, 56.510784 ], [ -133.041726, 56.518356 ], [ -133.071828, 56.553483 ], [ -133.075496, 56.578684 ], [ -133.025091, 56.605048 ], [ -133.110329, 56.669727 ], [ -133.143198, 56.682979 ], [ -133.184363, 56.706526 ], [ -133.212185, 56.736822 ], [ -133.225298, 56.755591 ], [ -133.233331, 56.771095 ], [ -133.235251, 56.775639 ], [ -133.233646, 56.779447 ], [ -133.244689, 56.792649 ], [ -133.264047, 56.814544 ], [ -133.277352, 56.816432 ], [ -133.325392, 56.791864 ], [ -133.334308, 56.773402 ], [ -133.332845, 56.761663 ], [ -133.319860, 56.737693 ], [ -133.303752, 56.729879 ], [ -133.272958, 56.733653 ], [ -133.266844, 56.734882 ], [ -133.265608, 56.738237 ], [ -133.266768, 56.741943 ], [ -133.261381, 56.747459 ], [ -133.250686, 56.751431 ], [ -133.219681, 56.706887 ], [ -133.221517, 56.697886 ], [ -133.232516, 56.681336 ], [ -133.233684, 56.649286 ], [ -133.214228, 56.649592 ], [ -133.151444, 56.637672 ], [ -133.106316, 56.618393 ], [ -133.103363, 56.614645 ], [ -133.089388, 56.535474 ], [ -133.089215, 56.523916 ], [ -133.112907, 56.529295 ], [ -133.138307, 56.532923 ], [ -133.142099, 56.528591 ], [ -133.142482, 56.519697 ], [ -133.139228, 56.515994 ], [ -133.124726, 56.511439 ], [ -133.122245, 56.492020 ], [ -133.148730, 56.467357 ], [ -133.160996, 56.460257 ], [ -133.203584, 56.447657 ], [ -133.348504, 56.469568 ], [ -133.356300, 56.471794 ], [ -133.361615, 56.486073 ], [ -133.371889, 56.493689 ], [ -133.376245, 56.495592 ], [ -133.401797, 56.496355 ], [ -133.417795, 56.494147 ], [ -133.428585, 56.479247 ], [ -133.460634, 56.454120 ], [ -133.512684, 56.437015 ], [ -133.532969, 56.434751 ], [ -133.603669, 56.435413 ], [ -133.638349, 56.438881 ], [ -133.655468, 56.442279 ], [ -133.663094, 56.448073 ], [ -133.671653, 56.487656 ], [ -133.675836, 56.522714 ], [ -133.675696, 56.538672 ], [ -133.672262, 56.544152 ], [ -133.664509, 56.550727 ], [ -133.662631, 56.555735 ], [ -133.663064, 56.562070 ], [ -133.667639, 56.576390 ], [ -133.662631, 56.598924 ], [ -133.667639, 56.607687 ], [ -133.673621, 56.611801 ], [ -133.679352, 56.633089 ], [ -133.689178, 56.643734 ], [ -133.698309, 56.649624 ], [ -133.705820, 56.658387 ], [ -133.709576, 56.683424 ], [ -133.706372, 56.696954 ], [ -133.699822, 56.710054 ], [ -133.696547, 56.744443 ], [ -133.689996, 56.761637 ], [ -133.686416, 56.779817 ], [ -133.680990, 56.795207 ], [ -133.679352, 56.810764 ], [ -133.689996, 56.839421 ], [ -133.699822, 56.839421 ], [ -133.712922, 56.827958 ], [ -133.741579, 56.813220 ], [ -133.765324, 56.807489 ], [ -133.772302, 56.809495 ], [ -133.787484, 56.821366 ], [ -133.795364, 56.824586 ], [ -133.869040, 56.845938 ], [ -133.887426, 56.868391 ], [ -133.916358, 56.914447 ], [ -133.903634, 56.927269 ], [ -133.921451, 56.961511 ], [ -133.967060, 56.988044 ], [ -134.049218, 57.029203 ], [ -134.033979, 57.063281 ], [ -134.008856, 57.074578 ], [ -133.887957, 57.097744 ], [ -133.773464, 57.078676 ], [ -133.702925, 57.065206 ], [ -133.613908, 57.057978 ], [ -133.536258, 57.038700 ], [ -133.446204, 57.020124 ], [ -133.362502, 57.007424 ], [ -133.346321, 57.004118 ], [ -133.344217, 57.001834 ], [ -133.334272, 57.002442 ], [ -133.325058, 57.011711 ], [ -133.308317, 57.014762 ], [ -133.104611, 57.005701 ], [ -132.997430, 56.942201 ], [ -132.981370, 56.927380 ], [ -132.947081, 56.870963 ], [ -132.935933, 56.839963 ], [ -132.935258, 56.822941 ], [ -132.903211, 56.803610 ], [ -132.872512, 56.798144 ], [ -132.853150, 56.797810 ], [ -132.820556, 56.793787 ], [ -132.762964, 56.753227 ], [ -132.741709, 56.724278 ], [ -132.743207, 56.713720 ], [ -132.665874, 56.680241 ], [ -132.628129, 56.668830 ], [ -132.622788, 56.668710 ], [ -132.619258, 56.660778 ], [ -132.625450, 56.653210 ], [ -132.628201, 56.645642 ], [ -132.625450, 56.642202 ], [ -132.616506, 56.639450 ], [ -132.605498, 56.623627 ], [ -132.595179, 56.613308 ], [ -132.574540, 56.612620 ], [ -132.560780, 56.607804 ], [ -132.553213, 56.608492 ], [ -132.546463, 56.606563 ] ] ], [ [ [ -131.569560, 55.284114 ], [ -131.562650, 55.284012 ], [ -131.550916, 55.280915 ], [ -131.516651, 55.261645 ], [ -131.492640, 55.257749 ], [ -131.482252, 55.254110 ], [ -131.481522, 55.244448 ], [ -131.462701, 55.223438 ], [ -131.445293, 55.216977 ], [ -131.430501, 55.218175 ], [ -131.416951, 55.217298 ], [ -131.397690, 55.210916 ], [ -131.355642, 55.182945 ], [ -131.341407, 55.165659 ], [ -131.352654, 55.164822 ], [ -131.362319, 55.155896 ], [ -131.350575, 55.067042 ], [ -131.356314, 55.041211 ], [ -131.378572, 55.017308 ], [ -131.388569, 55.012222 ], [ -131.484995, 55.010454 ], [ -131.498863, 55.016138 ], [ -131.507590, 55.025427 ], [ -131.508449, 55.029166 ], [ -131.532140, 55.037945 ], [ -131.579882, 55.017576 ], [ -131.590063, 55.007745 ], [ -131.605661, 55.004403 ], [ -131.615632, 55.006999 ], [ -131.641035, 55.026585 ], [ -131.646276, 55.035579 ], [ -131.620745, 55.049259 ], [ -131.589387, 55.088940 ], [ -131.605302, 55.107436 ], [ -131.594978, 55.125502 ], [ -131.577773, 55.131094 ], [ -131.558603, 55.125508 ], [ -131.548093, 55.143138 ], [ -131.565677, 55.155354 ], [ -131.588368, 55.169961 ], [ -131.598454, 55.179566 ], [ -131.607383, 55.240437 ], [ -131.589070, 55.273951 ], [ -131.569560, 55.284114 ] ] ], [ [ [ -133.344847, 55.569327 ], [ -133.307406, 55.542249 ], [ -133.292346, 55.539736 ], [ -133.285317, 55.535315 ], [ -133.281917, 55.524486 ], [ -133.289854, 55.501870 ], [ -133.305747, 55.484115 ], [ -133.358993, 55.453832 ], [ -133.373595, 55.460656 ], [ -133.391243, 55.471979 ], [ -133.396511, 55.473169 ], [ -133.426516, 55.466702 ], [ -133.474054, 55.437155 ], [ -133.465300, 55.423370 ], [ -133.425823, 55.425511 ], [ -133.416649, 55.422146 ], [ -133.412524, 55.417560 ], [ -133.411582, 55.406683 ], [ -133.419384, 55.386105 ], [ -133.427366, 55.381832 ], [ -133.446281, 55.382175 ], [ -133.497028, 55.368159 ], [ -133.576808, 55.324795 ], [ -133.595805, 55.293766 ], [ -133.603491, 55.271739 ], [ -133.609073, 55.241486 ], [ -133.612780, 55.239737 ], [ -133.623457, 55.242571 ], [ -133.634509, 55.250043 ], [ -133.690174, 55.304409 ], [ -133.690944, 55.308703 ], [ -133.689159, 55.320285 ], [ -133.672243, 55.326765 ], [ -133.647725, 55.345480 ], [ -133.633006, 55.361299 ], [ -133.622422, 55.396474 ], [ -133.636291, 55.428423 ], [ -133.739077, 55.472323 ], [ -133.749371, 55.471818 ], [ -133.764347, 55.468593 ], [ -133.789055, 55.457892 ], [ -133.759130, 55.537371 ], [ -133.752870, 55.544282 ], [ -133.733029, 55.558757 ], [ -133.615623, 55.550776 ], [ -133.584326, 55.539707 ], [ -133.582005, 55.537363 ], [ -133.590163, 55.507236 ], [ -133.595632, 55.501483 ], [ -133.611671, 55.495585 ], [ -133.624912, 55.494674 ], [ -133.632978, 55.491664 ], [ -133.644202, 55.470815 ], [ -133.644565, 55.464680 ], [ -133.638673, 55.458902 ], [ -133.618367, 55.457045 ], [ -133.573698, 55.472083 ], [ -133.544088, 55.491784 ], [ -133.542322, 55.507084 ], [ -133.529120, 55.527700 ], [ -133.525646, 55.529097 ], [ -133.480965, 55.512738 ], [ -133.443670, 55.518639 ], [ -133.454576, 55.532423 ], [ -133.442660, 55.553012 ], [ -133.436102, 55.560872 ], [ -133.413499, 55.570384 ], [ -133.344847, 55.569327 ] ] ], [ [ [ -133.624918, 56.343906 ], [ -133.593728, 56.352192 ], [ -133.582116, 56.352506 ], [ -133.418370, 56.332132 ], [ -133.328577, 56.332797 ], [ -133.284826, 56.327118 ], [ -133.235354, 56.324275 ], [ -133.197009, 56.333016 ], [ -133.163212, 56.317445 ], [ -133.094977, 56.250583 ], [ -133.078230, 56.246802 ], [ -133.071435, 56.238484 ], [ -133.040979, 56.184536 ], [ -133.052004, 56.155585 ], [ -133.059994, 56.150761 ], [ -133.062175, 56.141163 ], [ -133.061465, 56.135305 ], [ -133.055520, 56.125258 ], [ -132.927305, 56.034459 ], [ -132.897675, 56.020166 ], [ -132.837592, 56.024327 ], [ -132.635291, 55.921766 ], [ -132.618464, 55.911476 ], [ -132.615103, 55.908082 ], [ -132.614757, 55.899635 ], [ -132.592085, 55.877152 ], [ -132.543398, 55.845927 ], [ -132.504800, 55.815166 ], [ -132.470697, 55.782162 ], [ -132.461281, 55.683400 ], [ -132.462531, 55.673854 ], [ -132.448855, 55.667337 ], [ -132.415237, 55.667263 ], [ -132.394266, 55.669114 ], [ -132.382505, 55.665336 ], [ -132.358558, 55.648759 ], [ -132.332401, 55.595071 ], [ -132.329280, 55.578936 ], [ -132.301119, 55.550960 ], [ -132.240921, 55.526533 ], [ -132.198289, 55.513045 ], [ -132.188771, 55.508443 ], [ -132.146062, 55.470346 ], [ -132.142649, 55.460967 ], [ -132.142945, 55.457941 ], [ -132.164757, 55.451213 ], [ -132.178610, 55.452829 ], [ -132.219413, 55.472211 ], [ -132.230752, 55.479944 ], [ -132.231936, 55.483960 ], [ -132.247327, 55.492951 ], [ -132.315773, 55.514547 ], [ -132.325728, 55.515395 ], [ -132.342101, 55.504670 ], [ -132.318570, 55.469208 ], [ -132.288585, 55.451365 ], [ -132.281269, 55.444189 ], [ -132.284442, 55.442173 ], [ -132.303329, 55.438268 ], [ -132.419340, 55.432054 ], [ -132.470036, 55.427028 ], [ -132.479688, 55.420918 ], [ -132.475532, 55.418062 ], [ -132.454974, 55.413600 ], [ -132.390782, 55.401739 ], [ -132.273503, 55.419189 ], [ -132.258056, 55.416142 ], [ -132.225960, 55.374919 ], [ -132.166857, 55.363039 ], [ -132.149864, 55.328637 ], [ -132.126398, 55.288418 ], [ -132.115561, 55.281237 ], [ -132.098531, 55.280560 ], [ -132.102716, 55.268175 ], [ -132.109531, 55.260240 ], [ -132.142742, 55.238212 ], [ -132.164031, 55.237617 ], [ -132.214912, 55.245700 ], [ -132.229963, 55.238080 ], [ -132.214353, 55.222562 ], [ -132.207431, 55.218273 ], [ -132.127370, 55.199570 ], [ -132.104376, 55.200899 ], [ -132.088127, 55.206516 ], [ -132.075095, 55.222390 ], [ -132.072751, 55.233718 ], [ -132.078869, 55.240335 ], [ -132.075924, 55.246276 ], [ -132.061625, 55.260052 ], [ -132.037122, 55.275144 ], [ -132.028163, 55.276950 ], [ -132.003500, 55.265254 ], [ -131.995908, 55.259054 ], [ -131.979818, 55.211787 ], [ -131.977397, 55.180949 ], [ -131.988815, 55.165464 ], [ -132.031417, 55.151671 ], [ -132.039009, 55.144070 ], [ -132.040874, 55.127326 ], [ -132.038978, 55.125011 ], [ -132.016932, 55.120971 ], [ -132.039002, 55.086962 ], [ -132.094024, 55.039452 ], [ -132.154061, 55.018197 ], [ -132.168076, 55.015574 ], [ -132.180334, 55.015557 ], [ -132.196215, 55.008047 ], [ -132.197614, 55.005158 ], [ -132.192581, 54.989655 ], [ -132.143263, 54.984633 ], [ -132.135544, 54.985976 ], [ -132.072544, 55.016956 ], [ -132.039217, 55.036765 ], [ -132.028288, 55.038672 ], [ -132.000449, 55.035712 ], [ -131.984592, 55.027978 ], [ -131.982890, 54.853068 ], [ -131.976847, 54.848894 ], [ -131.965904, 54.835539 ], [ -131.957382, 54.804279 ], [ -131.957914, 54.791239 ], [ -131.999591, 54.731975 ], [ -132.018657, 54.710109 ], [ -132.029747, 54.701189 ], [ -132.142277, 54.691674 ], [ -132.165182, 54.694050 ], [ -132.179635, 54.705898 ], [ -132.199566, 54.715444 ], [ -132.256092, 54.734617 ], [ -132.263100, 54.734312 ], [ -132.279597, 54.728230 ], [ -132.280701, 54.726184 ], [ -132.280103, 54.715988 ], [ -132.281803, 54.715290 ], [ -132.307943, 54.718714 ], [ -132.351004, 54.818182 ], [ -132.350629, 54.821314 ], [ -132.341009, 54.826718 ], [ -132.332661, 54.826322 ], [ -132.314146, 54.835120 ], [ -132.309213, 54.847534 ], [ -132.387494, 54.913664 ], [ -132.484579, 54.899301 ], [ -132.558390, 54.932612 ], [ -132.581367, 54.946005 ], [ -132.609786, 54.965728 ], [ -132.612531, 54.969924 ], [ -132.614836, 54.980095 ], [ -132.609900, 54.991517 ], [ -132.598557, 54.990301 ], [ -132.577830, 54.994234 ], [ -132.575001, 54.998317 ], [ -132.541802, 55.097764 ], [ -132.548994, 55.113556 ], [ -132.550502, 55.114247 ], [ -132.561819, 55.114897 ], [ -132.594568, 55.105378 ], [ -132.619912, 55.069094 ], [ -132.624575, 55.061352 ], [ -132.624296, 55.056163 ], [ -132.626687, 55.053314 ], [ -132.630865, 55.052946 ], [ -132.633305, 55.054954 ], [ -132.637866, 55.073602 ], [ -132.624518, 55.114419 ], [ -132.606895, 55.141722 ], [ -132.598675, 55.150482 ], [ -132.591084, 55.155695 ], [ -132.587868, 55.155971 ], [ -132.581133, 55.166076 ], [ -132.605219, 55.194064 ], [ -132.620123, 55.199617 ], [ -132.637926, 55.186077 ], [ -132.630049, 55.177618 ], [ -132.629643, 55.174232 ], [ -132.635758, 55.152514 ], [ -132.663719, 55.143932 ], [ -132.695227, 55.137711 ], [ -132.735645, 55.134218 ], [ -132.712195, 55.098736 ], [ -132.684005, 55.045604 ], [ -132.689667, 55.027901 ], [ -132.692917, 55.025060 ], [ -132.748854, 54.996007 ], [ -132.813743, 55.010987 ], [ -132.864117, 55.024833 ], [ -132.916414, 55.044465 ], [ -132.926772, 55.055023 ], [ -132.932293, 55.070199 ], [ -132.931172, 55.074154 ], [ -132.909355, 55.081277 ], [ -132.881083, 55.110375 ], [ -132.869827, 55.124104 ], [ -132.873408, 55.134241 ], [ -132.894283, 55.169373 ], [ -132.935449, 55.209898 ], [ -132.939845, 55.211481 ], [ -132.982166, 55.215882 ], [ -133.008156, 55.205700 ], [ -133.040748, 55.232969 ], [ -133.043938, 55.248569 ], [ -133.104708, 55.263800 ], [ -133.119294, 55.251405 ], [ -133.073381, 55.184492 ], [ -133.012275, 55.128056 ], [ -132.990860, 55.079112 ], [ -132.990395, 55.066730 ], [ -133.011351, 55.056849 ], [ -133.019740, 55.048366 ], [ -133.014178, 55.035502 ], [ -132.959508, 55.021045 ], [ -132.909706, 54.923594 ], [ -132.914650, 54.914009 ], [ -132.889474, 54.896619 ], [ -132.828340, 54.868747 ], [ -132.804525, 54.870938 ], [ -132.803014, 54.873725 ], [ -132.803742, 54.897206 ], [ -132.807952, 54.904378 ], [ -132.814282, 54.909356 ], [ -132.817385, 54.923640 ], [ -132.800784, 54.933783 ], [ -132.730931, 54.939483 ], [ -132.650001, 54.904387 ], [ -132.628612, 54.883316 ], [ -132.625563, 54.807503 ], [ -132.614851, 54.777170 ], [ -132.619024, 54.766565 ], [ -132.639032, 54.753251 ], [ -132.667250, 54.763369 ], [ -132.681165, 54.773697 ], [ -132.701203, 54.798446 ], [ -132.701153, 54.811012 ], [ -132.709267, 54.817521 ], [ -132.723538, 54.825128 ], [ -132.729369, 54.826981 ], [ -132.754875, 54.821236 ], [ -132.759779, 54.816998 ], [ -132.759364, 54.808277 ], [ -132.747451, 54.800743 ], [ -132.722011, 54.763259 ], [ -132.676226, 54.680865 ], [ -132.674324, 54.674652 ], [ -132.675868, 54.672812 ], [ -132.693970, 54.669064 ], [ -132.775733, 54.674844 ], [ -132.866355, 54.700386 ], [ -132.869604, 54.702416 ], [ -132.864084, 54.716917 ], [ -132.865598, 54.728908 ], [ -132.877210, 54.753772 ], [ -132.891553, 54.768191 ], [ -132.909517, 54.780516 ], [ -132.918751, 54.783253 ], [ -132.940485, 54.783831 ], [ -132.950250, 54.788333 ], [ -133.032752, 54.855055 ], [ -133.099047, 54.919007 ], [ -133.123941, 54.940065 ], [ -133.159756, 54.958760 ], [ -133.164788, 54.976909 ], [ -133.157326, 55.000365 ], [ -133.168931, 55.030889 ], [ -133.172360, 55.032745 ], [ -133.197719, 55.033404 ], [ -133.210420, 55.040269 ], [ -133.239695, 55.092415 ], [ -133.223923, 55.099986 ], [ -133.218101, 55.101042 ], [ -133.144954, 55.099155 ], [ -133.134987, 55.099473 ], [ -133.128705, 55.101429 ], [ -133.154780, 55.128110 ], [ -133.186809, 55.136372 ], [ -133.193242, 55.134108 ], [ -133.201053, 55.134099 ], [ -133.207702, 55.134220 ], [ -133.215086, 55.136876 ], [ -133.236908, 55.183326 ], [ -133.187745, 55.193639 ], [ -133.182520, 55.201964 ], [ -133.223791, 55.229317 ], [ -133.254478, 55.231149 ], [ -133.281979, 55.217117 ], [ -133.323021, 55.207030 ], [ -133.341259, 55.205701 ], [ -133.353719, 55.221215 ], [ -133.361562, 55.225560 ], [ -133.376615, 55.228288 ], [ -133.404497, 55.214992 ], [ -133.415257, 55.212159 ], [ -133.422869, 55.210659 ], [ -133.441074, 55.211654 ], [ -133.453777, 55.218497 ], [ -133.471938, 55.247527 ], [ -133.473593, 55.255547 ], [ -133.472866, 55.267873 ], [ -133.459753, 55.306780 ], [ -133.452818, 55.319980 ], [ -133.436350, 55.330158 ], [ -133.395371, 55.341753 ], [ -133.352083, 55.347381 ], [ -133.332360, 55.345357 ], [ -133.313491, 55.331557 ], [ -133.310529, 55.320257 ], [ -133.311114, 55.317301 ], [ -133.292402, 55.291377 ], [ -133.268999, 55.286971 ], [ -133.244343, 55.291865 ], [ -133.235129, 55.304162 ], [ -133.233572, 55.308822 ], [ -133.254639, 55.318806 ], [ -133.279271, 55.333264 ], [ -133.280701, 55.341536 ], [ -133.278443, 55.349184 ], [ -133.269068, 55.359341 ], [ -133.257734, 55.367026 ], [ -133.226844, 55.381850 ], [ -133.208794, 55.384237 ], [ -133.183280, 55.379392 ], [ -133.121513, 55.414536 ], [ -133.104304, 55.426907 ], [ -133.138129, 55.458373 ], [ -133.157704, 55.497782 ], [ -133.133293, 55.502508 ], [ -133.132409, 55.513579 ], [ -133.156566, 55.563589 ], [ -133.176760, 55.586722 ], [ -133.263042, 55.568793 ], [ -133.275972, 55.580188 ], [ -133.294158, 55.588680 ], [ -133.386900, 55.619346 ], [ -133.438180, 55.643862 ], [ -133.438933, 55.645167 ], [ -133.408432, 55.667925 ], [ -133.399885, 55.665133 ], [ -133.394486, 55.666881 ], [ -133.386432, 55.693365 ], [ -133.416549, 55.739647 ], [ -133.438619, 55.748366 ], [ -133.491430, 55.764082 ], [ -133.512632, 55.755898 ], [ -133.509704, 55.744183 ], [ -133.496509, 55.733258 ], [ -133.494087, 55.733158 ], [ -133.490882, 55.726576 ], [ -133.489253, 55.713081 ], [ -133.492438, 55.706525 ], [ -133.527387, 55.695108 ], [ -133.554504, 55.698354 ], [ -133.583297, 55.705338 ], [ -133.625120, 55.719927 ], [ -133.643324, 55.729037 ], [ -133.694546, 55.780599 ], [ -133.695749, 55.783118 ], [ -133.646377, 55.823413 ], [ -133.627534, 55.831630 ], [ -133.561973, 55.835543 ], [ -133.550028, 55.832181 ], [ -133.447875, 55.791738 ], [ -133.422064, 55.788821 ], [ -133.347915, 55.803943 ], [ -133.342058, 55.805764 ], [ -133.323664, 55.818632 ], [ -133.335139, 55.866118 ], [ -133.346569, 55.875809 ], [ -133.379472, 55.880716 ], [ -133.391026, 55.878751 ], [ -133.418797, 55.883278 ], [ -133.471044, 55.947381 ], [ -133.495052, 56.017089 ], [ -133.541041, 55.977322 ], [ -133.638122, 55.920982 ], [ -133.699900, 55.912206 ], [ -133.799931, 55.925349 ], [ -133.826236, 55.948750 ], [ -133.834370, 55.963578 ], [ -133.812770, 55.974135 ], [ -133.798092, 55.975096 ], [ -133.777846, 55.982876 ], [ -133.748803, 56.009536 ], [ -133.693765, 56.070562 ], [ -133.684209, 56.075507 ], [ -133.659241, 56.083818 ], [ -133.548802, 56.142840 ], [ -133.542830, 56.160794 ], [ -133.553454, 56.169015 ], [ -133.601500, 56.191925 ], [ -133.639282, 56.198813 ], [ -133.664218, 56.310504 ], [ -133.656415, 56.326909 ], [ -133.649916, 56.326792 ], [ -133.643182, 56.324459 ], [ -133.624658, 56.337070 ], [ -133.625121, 56.339847 ], [ -133.624918, 56.343906 ] ] ], [ [ [ -133.846128, 55.904622 ], [ -133.840833, 55.892726 ], [ -133.840298, 55.886770 ], [ -133.847565, 55.869599 ], [ -133.861039, 55.848844 ], [ -133.866988, 55.845886 ], [ -133.894706, 55.845641 ], [ -133.903184, 55.848101 ], [ -133.920250, 55.860295 ], [ -133.929325, 55.869538 ], [ -133.945619, 55.896216 ], [ -133.943499, 55.912446 ], [ -133.940298, 55.917506 ], [ -133.935016, 55.920689 ], [ -133.891851, 55.936680 ], [ -133.876494, 55.937683 ], [ -133.864099, 55.936286 ], [ -133.854291, 55.931581 ], [ -133.846763, 55.911670 ], [ -133.846128, 55.904622 ] ] ], [ [ [ -135.587961, 57.897320 ], [ -135.596769, 57.889705 ], [ -135.589170, 57.886409 ], [ -135.575718, 57.883548 ], [ -135.518882, 57.857383 ], [ -135.503498, 57.840860 ], [ -135.469477, 57.834466 ], [ -135.377758, 57.802212 ], [ -135.376444, 57.792039 ], [ -135.364221, 57.775347 ], [ -135.328887, 57.748420 ], [ -135.291560, 57.737468 ], [ -135.201461, 57.728171 ], [ -135.151475, 57.738296 ], [ -135.098422, 57.754898 ], [ -135.063972, 57.750847 ], [ -135.024837, 57.742990 ], [ -135.012577, 57.746105 ], [ -134.978120, 57.763125 ], [ -134.939924, 57.763612 ], [ -134.929726, 57.759203 ], [ -134.921604, 57.742376 ], [ -134.914790, 57.705821 ], [ -134.918167, 57.682272 ], [ -134.867433, 57.623439 ], [ -134.856386, 57.598967 ], [ -134.824891, 57.500067 ], [ -134.837120, 57.482761 ], [ -134.874346, 57.464406 ], [ -134.902680, 57.459349 ], [ -135.025148, 57.454315 ], [ -135.084338, 57.464671 ], [ -135.091216, 57.466352 ], [ -135.096818, 57.469916 ], [ -135.134063, 57.497681 ], [ -135.242855, 57.546302 ], [ -135.325849, 57.577178 ], [ -135.392499, 57.599909 ], [ -135.474703, 57.631381 ], [ -135.514801, 57.650349 ], [ -135.571606, 57.674397 ], [ -135.593447, 57.663795 ], [ -135.650701, 57.652520 ], [ -135.684951, 57.677508 ], [ -135.712317, 57.672648 ], [ -135.704444, 57.658361 ], [ -135.697422, 57.649711 ], [ -135.660902, 57.629196 ], [ -135.592778, 57.602474 ], [ -135.571186, 57.605367 ], [ -135.546143, 57.613826 ], [ -135.526303, 57.606388 ], [ -135.511012, 57.595906 ], [ -135.519471, 57.588615 ], [ -135.527610, 57.589003 ], [ -135.557812, 57.583449 ], [ -135.570574, 57.579613 ], [ -135.587475, 57.568829 ], [ -135.588477, 57.552081 ], [ -135.575724, 57.522874 ], [ -135.577831, 57.520530 ], [ -135.578215, 57.516445 ], [ -135.565271, 57.510209 ], [ -135.549627, 57.482016 ], [ -135.550310, 57.470141 ], [ -135.553903, 57.454870 ], [ -135.557765, 57.451966 ], [ -135.610454, 57.442232 ], [ -135.613576, 57.438173 ], [ -135.611786, 57.431154 ], [ -135.612882, 57.424907 ], [ -135.621725, 57.419245 ], [ -135.626558, 57.409961 ], [ -135.647179, 57.406132 ], [ -135.664449, 57.407229 ], [ -135.667985, 57.405124 ], [ -135.669837, 57.400578 ], [ -135.670267, 57.396215 ], [ -135.668153, 57.392832 ], [ -135.669416, 57.389296 ], [ -135.691043, 57.383518 ], [ -135.692400, 57.375267 ], [ -135.711401, 57.367760 ], [ -135.720478, 57.373663 ], [ -135.768018, 57.383435 ], [ -135.843810, 57.390896 ], [ -135.892131, 57.408048 ], [ -135.900816, 57.418181 ], [ -135.896979, 57.440719 ], [ -135.943766, 57.458780 ], [ -135.966986, 57.472759 ], [ -136.014529, 57.506227 ], [ -136.030458, 57.521540 ], [ -136.021283, 57.531551 ], [ -136.001717, 57.544499 ], [ -136.061747, 57.592068 ], [ -136.106796, 57.616567 ], [ -136.130611, 57.624607 ], [ -136.187897, 57.625730 ], [ -136.207876, 57.638107 ], [ -136.280809, 57.717379 ], [ -136.314631, 57.758703 ], [ -136.304684, 57.771051 ], [ -136.309429, 57.779465 ], [ -136.365052, 57.828561 ], [ -136.370705, 57.831668 ], [ -136.372377, 57.832587 ], [ -136.391157, 57.832653 ], [ -136.458829, 57.853901 ], [ -136.474424, 57.871648 ], [ -136.484259, 57.896460 ], [ -136.534201, 57.913938 ], [ -136.557651, 57.912135 ], [ -136.572045, 57.918469 ], [ -136.573288, 57.926844 ], [ -136.563223, 58.035052 ], [ -136.559999, 58.063358 ], [ -136.556247, 58.077019 ], [ -136.538708, 58.093482 ], [ -136.500119, 58.104787 ], [ -136.475811, 58.101294 ], [ -136.469272, 58.096868 ], [ -136.420449, 58.131857 ], [ -136.375338, 58.208714 ], [ -136.387114, 58.252414 ], [ -136.377329, 58.268328 ], [ -136.311596, 58.270388 ], [ -136.287765, 58.267373 ], [ -136.286263, 58.259741 ], [ -136.289842, 58.249086 ], [ -136.283886, 58.223685 ], [ -136.277477, 58.208856 ], [ -136.235246, 58.154416 ], [ -136.190155, 58.161301 ], [ -136.190382, 58.164473 ], [ -136.194557, 58.171811 ], [ -136.199498, 58.172086 ], [ -136.203642, 58.174416 ], [ -136.199854, 58.180871 ], [ -136.162108, 58.218724 ], [ -136.139007, 58.224393 ], [ -136.036160, 58.219210 ], [ -136.033030, 58.205462 ], [ -135.976386, 58.202029 ], [ -135.966119, 58.211386 ], [ -135.914178, 58.244073 ], [ -135.823562, 58.282975 ], [ -135.801133, 58.287716 ], [ -135.783380, 58.286709 ], [ -135.764372, 58.266276 ], [ -135.735100, 58.240213 ], [ -135.712398, 58.231892 ], [ -135.630521, 58.222933 ], [ -135.589198, 58.213677 ], [ -135.522646, 58.185909 ], [ -135.504671, 58.174914 ], [ -135.497911, 58.168882 ], [ -135.524668, 58.120750 ], [ -135.540712, 58.101750 ], [ -135.586820, 58.081670 ], [ -135.651368, 58.036484 ], [ -135.638490, 57.994508 ], [ -135.621582, 57.984623 ], [ -135.593287, 57.989636 ], [ -135.581753, 57.997568 ], [ -135.564307, 58.015007 ], [ -135.567817, 58.023420 ], [ -135.565443, 58.041120 ], [ -135.563434, 58.043491 ], [ -135.544529, 58.060880 ], [ -135.496739, 58.086212 ], [ -135.451444, 58.134348 ], [ -135.420107, 58.144202 ], [ -135.411777, 58.145473 ], [ -135.397518, 58.144155 ], [ -135.275797, 58.097024 ], [ -135.260951, 58.097323 ], [ -135.108896, 58.088270 ], [ -135.084832, 58.080869 ], [ -135.082981, 58.074737 ], [ -135.070700, 58.061242 ], [ -134.977183, 58.049943 ], [ -134.967723, 58.047625 ], [ -134.950844, 58.036993 ], [ -134.935005, 58.021639 ], [ -134.912854, 57.979287 ], [ -134.921104, 57.935298 ], [ -134.926395, 57.921919 ], [ -135.004952, 57.884338 ], [ -135.140674, 57.926114 ], [ -135.173712, 57.919399 ], [ -135.165220, 57.901524 ], [ -135.146717, 57.891656 ], [ -135.131957, 57.885241 ], [ -135.065720, 57.869451 ], [ -134.991819, 57.835436 ], [ -134.954547, 57.815785 ], [ -134.949436, 57.805027 ], [ -135.023370, 57.780537 ], [ -135.198960, 57.775092 ], [ -135.225158, 57.777783 ], [ -135.313776, 57.805739 ], [ -135.343991, 57.821444 ], [ -135.389894, 57.850991 ], [ -135.418517, 57.860506 ], [ -135.514151, 57.885371 ], [ -135.552802, 57.902711 ], [ -135.581326, 57.903056 ], [ -135.587961, 57.897320 ] ] ], [ [ [ -134.666587, 56.169947 ], [ -134.668151, 56.167026 ], [ -134.674028, 56.166925 ], [ -134.705007, 56.175722 ], [ -134.806163, 56.235533 ], [ -134.824902, 56.279692 ], [ -134.839411, 56.309403 ], [ -134.915911, 56.360555 ], [ -134.945704, 56.389710 ], [ -134.990763, 56.457998 ], [ -135.023780, 56.499977 ], [ -135.054049, 56.527658 ], [ -135.058238, 56.529453 ], [ -135.060878, 56.541965 ], [ -135.056756, 56.570611 ], [ -135.045054, 56.583392 ], [ -135.026740, 56.594625 ], [ -135.005249, 56.602252 ], [ -134.997669, 56.597272 ], [ -134.985881, 56.595844 ], [ -134.967164, 56.603026 ], [ -134.969842, 56.615392 ], [ -134.979386, 56.627676 ], [ -134.998369, 56.630017 ], [ -135.029747, 56.628918 ], [ -135.036432, 56.619628 ], [ -135.065693, 56.607852 ], [ -135.091611, 56.600068 ], [ -135.103271, 56.597927 ], [ -135.118709, 56.597728 ], [ -135.123389, 56.602823 ], [ -135.148836, 56.648915 ], [ -135.147761, 56.651932 ], [ -135.175826, 56.677876 ], [ -135.224142, 56.687858 ], [ -135.274910, 56.701633 ], [ -135.305077, 56.726382 ], [ -135.317429, 56.743311 ], [ -135.318082, 56.748688 ], [ -135.296430, 56.756294 ], [ -135.281608, 56.758528 ], [ -135.280875, 56.768357 ], [ -135.310159, 56.778093 ], [ -135.352176, 56.771196 ], [ -135.398678, 56.779201 ], [ -135.412989, 56.810079 ], [ -135.408542, 56.826014 ], [ -135.368899, 56.892589 ], [ -135.347244, 56.899980 ], [ -135.332356, 56.913951 ], [ -135.354090, 56.936500 ], [ -135.379725, 56.953039 ], [ -135.383376, 56.981544 ], [ -135.360232, 57.002231 ], [ -135.342801, 57.001874 ], [ -135.329492, 57.004507 ], [ -135.325216, 57.010866 ], [ -135.312780, 57.044984 ], [ -135.333998, 57.050403 ], [ -135.349229, 57.041535 ], [ -135.374100, 57.045391 ], [ -135.377763, 57.052910 ], [ -135.369858, 57.057923 ], [ -135.365710, 57.066062 ], [ -135.378337, 57.081622 ], [ -135.384617, 57.087725 ], [ -135.388859, 57.089026 ], [ -135.401721, 57.098654 ], [ -135.404140, 57.109318 ], [ -135.405293, 57.114508 ], [ -135.406158, 57.119697 ], [ -135.405293, 57.138149 ], [ -135.409703, 57.148861 ], [ -135.422746, 57.167724 ], [ -135.399312, 57.185003 ], [ -135.372441, 57.198063 ], [ -135.377580, 57.206302 ], [ -135.372021, 57.228003 ], [ -135.361771, 57.233591 ], [ -135.358715, 57.243776 ], [ -135.366177, 57.248852 ], [ -135.406086, 57.251678 ], [ -135.414799, 57.251324 ], [ -135.429229, 57.247213 ], [ -135.449073, 57.248104 ], [ -135.470189, 57.255752 ], [ -135.477683, 57.256824 ], [ -135.503121, 57.253809 ], [ -135.511241, 57.247077 ], [ -135.552574, 57.233194 ], [ -135.561883, 57.241868 ], [ -135.561853, 57.244067 ], [ -135.568954, 57.255186 ], [ -135.602297, 57.285707 ], [ -135.604161, 57.290437 ], [ -135.600688, 57.294074 ], [ -135.601782, 57.300772 ], [ -135.631415, 57.311568 ], [ -135.637423, 57.315276 ], [ -135.638209, 57.320278 ], [ -135.674687, 57.336747 ], [ -135.684597, 57.350328 ], [ -135.695563, 57.357460 ], [ -135.695120, 57.363077 ], [ -135.687696, 57.367477 ], [ -135.659614, 57.373907 ], [ -135.639556, 57.371883 ], [ -135.630627, 57.379595 ], [ -135.628016, 57.383393 ], [ -135.627022, 57.388207 ], [ -135.633573, 57.394211 ], [ -135.633654, 57.399102 ], [ -135.626007, 57.399578 ], [ -135.604184, 57.409932 ], [ -135.585395, 57.416811 ], [ -135.570872, 57.417459 ], [ -135.554548, 57.426636 ], [ -135.555321, 57.436738 ], [ -135.557806, 57.438236 ], [ -135.560990, 57.437455 ], [ -135.561916, 57.438505 ], [ -135.562234, 57.440413 ], [ -135.562234, 57.442720 ], [ -135.558496, 57.444788 ], [ -135.556109, 57.446458 ], [ -135.540158, 57.446241 ], [ -135.534221, 57.450252 ], [ -135.532069, 57.481117 ], [ -135.548794, 57.508977 ], [ -135.526036, 57.509697 ], [ -135.491537, 57.531687 ], [ -135.443404, 57.556876 ], [ -135.419205, 57.564159 ], [ -135.355749, 57.553568 ], [ -135.347597, 57.550232 ], [ -135.322925, 57.533476 ], [ -135.294491, 57.510836 ], [ -135.294837, 57.508720 ], [ -135.308458, 57.495201 ], [ -135.297784, 57.483721 ], [ -135.265557, 57.480860 ], [ -135.246114, 57.483598 ], [ -135.227293, 57.489838 ], [ -135.209123, 57.488753 ], [ -135.161017, 57.460713 ], [ -135.168056, 57.454212 ], [ -135.159206, 57.445568 ], [ -135.145949, 57.439049 ], [ -135.065050, 57.418972 ], [ -135.039634, 57.418131 ], [ -135.026566, 57.420497 ], [ -134.926516, 57.422267 ], [ -134.893440, 57.420044 ], [ -134.849477, 57.409670 ], [ -134.806352, 57.341888 ], [ -134.812769, 57.299765 ], [ -134.829365, 57.294098 ], [ -134.835211, 57.300315 ], [ -134.884780, 57.330003 ], [ -134.921651, 57.330713 ], [ -134.951267, 57.328660 ], [ -134.953951, 57.323723 ], [ -134.955014, 57.309433 ], [ -134.953011, 57.306131 ], [ -134.946626, 57.303164 ], [ -134.922329, 57.303708 ], [ -134.879535, 57.288177 ], [ -134.854948, 57.264766 ], [ -134.841774, 57.248588 ], [ -134.755886, 57.058035 ], [ -134.737880, 57.009935 ], [ -134.738300, 56.968059 ], [ -134.740135, 56.948481 ], [ -134.719275, 56.929031 ], [ -134.695735, 56.900791 ], [ -134.699099, 56.850864 ], [ -134.674238, 56.825177 ], [ -134.663434, 56.804687 ], [ -134.633997, 56.728722 ], [ -134.619799, 56.665888 ], [ -134.615955, 56.637289 ], [ -134.626943, 56.553868 ], [ -134.634207, 56.540968 ], [ -134.639732, 56.538835 ], [ -134.671047, 56.541200 ], [ -134.669778, 56.524129 ], [ -134.663839, 56.503183 ], [ -134.658622, 56.494676 ], [ -134.655174, 56.492033 ], [ -134.645308, 56.472215 ], [ -134.636506, 56.405625 ], [ -134.634010, 56.315840 ], [ -134.634411, 56.285341 ], [ -134.634668, 56.265832 ], [ -134.653827, 56.198385 ], [ -134.659870, 56.182494 ], [ -134.666587, 56.169947 ] ] ], [ [ [ -135.703464, 57.322040 ], [ -135.702919, 57.315582 ], [ -135.705483, 57.308557 ], [ -135.688233, 57.276143 ], [ -135.657272, 57.262027 ], [ -135.655008, 57.258240 ], [ -135.654898, 57.254742 ], [ -135.658859, 57.247964 ], [ -135.658600, 57.245541 ], [ -135.656363, 57.243036 ], [ -135.637289, 57.236124 ], [ -135.621346, 57.223693 ], [ -135.620735, 57.217885 ], [ -135.604953, 57.184204 ], [ -135.596921, 57.161196 ], [ -135.602057, 57.149161 ], [ -135.598600, 57.145360 ], [ -135.592379, 57.142683 ], [ -135.581473, 57.150599 ], [ -135.575674, 57.150530 ], [ -135.565707, 57.147312 ], [ -135.565756, 57.137344 ], [ -135.575722, 57.104231 ], [ -135.574693, 57.094339 ], [ -135.635347, 57.022411 ], [ -135.650540, 57.015139 ], [ -135.680520, 57.017342 ], [ -135.753682, 57.008258 ], [ -135.764949, 57.006094 ], [ -135.767654, 57.000428 ], [ -135.772432, 56.997301 ], [ -135.821915, 56.988215 ], [ -135.854131, 56.995043 ], [ -135.857028, 56.997287 ], [ -135.852146, 57.029699 ], [ -135.841819, 57.070899 ], [ -135.834890, 57.091387 ], [ -135.805945, 57.106778 ], [ -135.776975, 57.112555 ], [ -135.755997, 57.121225 ], [ -135.735559, 57.151755 ], [ -135.735405, 57.155403 ], [ -135.752591, 57.168834 ], [ -135.762241, 57.173341 ], [ -135.785583, 57.177929 ], [ -135.800824, 57.173655 ], [ -135.824388, 57.192862 ], [ -135.833896, 57.254233 ], [ -135.828831, 57.301981 ], [ -135.840359, 57.314342 ], [ -135.855849, 57.319960 ], [ -135.859572, 57.323108 ], [ -135.860558, 57.330854 ], [ -135.851162, 57.336916 ], [ -135.838568, 57.338756 ], [ -135.761471, 57.342631 ], [ -135.730323, 57.337286 ], [ -135.715233, 57.330722 ], [ -135.703464, 57.322040 ] ] ], [ [ [ -147.562801, 60.579821 ], [ -147.555392, 60.574059 ], [ -147.551709, 60.559612 ], [ -147.565775, 60.534713 ], [ -147.607756, 60.506920 ], [ -147.623835, 60.465878 ], [ -147.619972, 60.436821 ], [ -147.674351, 60.414430 ], [ -147.690773, 60.405054 ], [ -147.681888, 60.388167 ], [ -147.630081, 60.389550 ], [ -147.622020, 60.383794 ], [ -147.618906, 60.368848 ], [ -147.639474, 60.340579 ], [ -147.671135, 60.308929 ], [ -147.703599, 60.285589 ], [ -147.698608, 60.245552 ], [ -147.704731, 60.227874 ], [ -147.720124, 60.202002 ], [ -147.760681, 60.156396 ], [ -147.766484, 60.154180 ], [ -147.783583, 60.161073 ], [ -147.820159, 60.179555 ], [ -147.845681, 60.195434 ], [ -147.832285, 60.197855 ], [ -147.827991, 60.200630 ], [ -147.828962, 60.207442 ], [ -147.855453, 60.216419 ], [ -147.908985, 60.224359 ], [ -147.945158, 60.222324 ], [ -147.956228, 60.228667 ], [ -147.950532, 60.243791 ], [ -147.933269, 60.273632 ], [ -147.837456, 60.414452 ], [ -147.792822, 60.476193 ], [ -147.782548, 60.483300 ], [ -147.778269, 60.484007 ], [ -147.765825, 60.476505 ], [ -147.779329, 60.457078 ], [ -147.750864, 60.440981 ], [ -147.738151, 60.441277 ], [ -147.715312, 60.447915 ], [ -147.709160, 60.451883 ], [ -147.717097, 60.467282 ], [ -147.726642, 60.472216 ], [ -147.726460, 60.502533 ], [ -147.721824, 60.508635 ], [ -147.613843, 60.565906 ], [ -147.566372, 60.580849 ], [ -147.562801, 60.579821 ] ] ], [ [ [ -147.444468, 60.699654 ], [ -147.384779, 60.710017 ], [ -147.308537, 60.666793 ], [ -147.302915, 60.660673 ], [ -147.337429, 60.632685 ], [ -147.344494, 60.628544 ], [ -147.457407, 60.619090 ], [ -147.486045, 60.619348 ], [ -147.501603, 60.654772 ], [ -147.486484, 60.686582 ], [ -147.479814, 60.693593 ], [ -147.449559, 60.700046 ], [ -147.444468, 60.699654 ] ] ], [ [ [ -147.952039, 60.741879 ], [ -147.906021, 60.735515 ], [ -147.848176, 60.698116 ], [ -147.846103, 60.694509 ], [ -147.860057, 60.677233 ], [ -147.868067, 60.670825 ], [ -147.932931, 60.655714 ], [ -147.970684, 60.673799 ], [ -148.020259, 60.724950 ], [ -147.965419, 60.751996 ], [ -147.957239, 60.747706 ], [ -147.952039, 60.741879 ] ] ], [ [ [ -147.131319, 60.912932 ], [ -147.115336, 60.911938 ], [ -147.077772, 60.899503 ], [ -147.071788, 60.893833 ], [ -147.089645, 60.874693 ], [ -147.126799, 60.858011 ], [ -147.141802, 60.853991 ], [ -147.192354, 60.861635 ], [ -147.217749, 60.869741 ], [ -147.253128, 60.872969 ], [ -147.309086, 60.873924 ], [ -147.325640, 60.877153 ], [ -147.321084, 60.880198 ], [ -147.226303, 60.910421 ], [ -147.210324, 60.908776 ], [ -147.193399, 60.902949 ], [ -147.178969, 60.903704 ], [ -147.131319, 60.912932 ] ] ], [ [ [ -147.217704, 60.293504 ], [ -147.194940, 60.304563 ], [ -147.183277, 60.320680 ], [ -147.185243, 60.323083 ], [ -147.195608, 60.326224 ], [ -147.211625, 60.324936 ], [ -147.215312, 60.327109 ], [ -147.218799, 60.334726 ], [ -147.214679, 60.343793 ], [ -147.211582, 60.346260 ], [ -147.147514, 60.372470 ], [ -147.112667, 60.380982 ], [ -147.098703, 60.378697 ], [ -147.091897, 60.374969 ], [ -147.089363, 60.369126 ], [ -147.092717, 60.363396 ], [ -147.104010, 60.356727 ], [ -147.095483, 60.341964 ], [ -147.073932, 60.338982 ], [ -147.013164, 60.343863 ], [ -147.006138, 60.343119 ], [ -147.003839, 60.340310 ], [ -147.004091, 60.334348 ], [ -147.015307, 60.322548 ], [ -147.089866, 60.292106 ], [ -147.103118, 60.280190 ], [ -147.104107, 60.277155 ], [ -147.080463, 60.265355 ], [ -147.064768, 60.270188 ], [ -146.962633, 60.311911 ], [ -146.944024, 60.316020 ], [ -146.916164, 60.314898 ], [ -146.911772, 60.309807 ], [ -146.911377, 60.297593 ], [ -146.948089, 60.269974 ], [ -147.002067, 60.232453 ], [ -147.139641, 60.179058 ], [ -147.202416, 60.151128 ], [ -147.253868, 60.113852 ], [ -147.365424, 60.042867 ], [ -147.388508, 60.011116 ], [ -147.388686, 60.004301 ], [ -147.438369, 59.974680 ], [ -147.493235, 59.955388 ], [ -147.499783, 59.951069 ], [ -147.505311, 59.937494 ], [ -147.499625, 59.926296 ], [ -147.494317, 59.922756 ], [ -147.483056, 59.920873 ], [ -147.476312, 59.921563 ], [ -147.448681, 59.915892 ], [ -147.443678, 59.913543 ], [ -147.452360, 59.880518 ], [ -147.466920, 59.870100 ], [ -147.533041, 59.852401 ], [ -147.541643, 59.853282 ], [ -147.540437, 59.857264 ], [ -147.542664, 59.861336 ], [ -147.571278, 59.868709 ], [ -147.596339, 59.868872 ], [ -147.621980, 59.866484 ], [ -147.651738, 59.851223 ], [ -147.657015, 59.844035 ], [ -147.657048, 59.839497 ], [ -147.660388, 59.832248 ], [ -147.677139, 59.821368 ], [ -147.693869, 59.819070 ], [ -147.727499, 59.819780 ], [ -147.738538, 59.822949 ], [ -147.745417, 59.821844 ], [ -147.810788, 59.802233 ], [ -147.831008, 59.790043 ], [ -147.874097, 59.783260 ], [ -147.912883, 59.792240 ], [ -147.924906, 59.799712 ], [ -147.928064, 59.803496 ], [ -147.908247, 59.852832 ], [ -147.895411, 59.869145 ], [ -147.877936, 59.879678 ], [ -147.856693, 59.886661 ], [ -147.808272, 59.888148 ], [ -147.797213, 59.909477 ], [ -147.809035, 59.923480 ], [ -147.804252, 59.936497 ], [ -147.739635, 59.968008 ], [ -147.728869, 59.969509 ], [ -147.707445, 59.964151 ], [ -147.690642, 59.963236 ], [ -147.686280, 59.964476 ], [ -147.659569, 59.980064 ], [ -147.662645, 59.986676 ], [ -147.647042, 60.005649 ], [ -147.555529, 60.051131 ], [ -147.479543, 60.076653 ], [ -147.451490, 60.087920 ], [ -147.433254, 60.096159 ], [ -147.406000, 60.112631 ], [ -147.388701, 60.126473 ], [ -147.319715, 60.190581 ], [ -147.315691, 60.202891 ], [ -147.322841, 60.214784 ], [ -147.312081, 60.222871 ], [ -147.281373, 60.226812 ], [ -147.249786, 60.228589 ], [ -147.244310, 60.231298 ], [ -147.219108, 60.253513 ], [ -147.206150, 60.269508 ], [ -147.217704, 60.293504 ] ] ], [ [ [ -179.069176, 51.262874 ], [ -179.072320, 51.250963 ], [ -179.097619, 51.226135 ], [ -179.126856, 51.219862 ], [ -179.136196, 51.229216 ], [ -179.147340, 51.276781 ], [ -179.137239, 51.286006 ], [ -179.113495, 51.300801 ], [ -179.094665, 51.301229 ], [ -179.075466, 51.284619 ], [ -179.069176, 51.262874 ] ] ], [ [ [ -178.954338, 51.339247 ], [ -178.954460, 51.332731 ], [ -178.965171, 51.322682 ], [ -178.979179, 51.314380 ], [ -178.987236, 51.311038 ], [ -178.990684, 51.311648 ], [ -178.992094, 51.381311 ], [ -178.977782, 51.398929 ], [ -178.964323, 51.402492 ], [ -178.926874, 51.383640 ], [ -178.914207, 51.363992 ], [ -178.908883, 51.340582 ], [ -178.954338, 51.339247 ] ] ], [ [ [ 178.785825, 51.633434 ], [ 178.804128, 51.635034 ], [ 178.864937, 51.623133 ], [ 178.903910, 51.614914 ], [ 178.919136, 51.605546 ], [ 178.917608, 51.594949 ], [ 178.918827, 51.588337 ], [ 178.920826, 51.586137 ], [ 179.002896, 51.552486 ], [ 179.076803, 51.498518 ], [ 179.101442, 51.485497 ], [ 179.143656, 51.469442 ], [ 179.164531, 51.464635 ], [ 179.178081, 51.464812 ], [ 179.191082, 51.462935 ], [ 179.218031, 51.438940 ], [ 179.226883, 51.423941 ], [ 179.230270, 51.413419 ], [ 179.236253, 51.409606 ], [ 179.263934, 51.405838 ], [ 179.334980, 51.404933 ], [ 179.386221, 51.404401 ], [ 179.400809, 51.400557 ], [ 179.462765, 51.376176 ], [ 179.467581, 51.371629 ], [ 179.450191, 51.365142 ], [ 179.399469, 51.359433 ], [ 179.389855, 51.361004 ], [ 179.384679, 51.364210 ], [ 179.366788, 51.371837 ], [ 179.261618, 51.357688 ], [ 179.220471, 51.376667 ], [ 179.218185, 51.387377 ], [ 179.206500, 51.393284 ], [ 179.097477, 51.440580 ], [ 179.060354, 51.454875 ], [ 179.034532, 51.478530 ], [ 179.013516, 51.497280 ], [ 178.969019, 51.531237 ], [ 178.951626, 51.541963 ], [ 178.843631, 51.578642 ], [ 178.831825, 51.580534 ], [ 178.795194, 51.575429 ], [ 178.785061, 51.571866 ], [ 178.767787, 51.576123 ], [ 178.706047, 51.593182 ], [ 178.634021, 51.623981 ], [ 178.631609, 51.625782 ], [ 178.625536, 51.637303 ], [ 178.645511, 51.657634 ], [ 178.664013, 51.661935 ], [ 178.675528, 51.659064 ], [ 178.681998, 51.649946 ], [ 178.689903, 51.644422 ], [ 178.738019, 51.632734 ], [ 178.785825, 51.633434 ] ] ], [ [ [ -176.762478, 51.867878 ], [ -176.797799, 51.908512 ], [ -176.810433, 51.927089 ], [ -176.789558, 51.957211 ], [ -176.774023, 51.965895 ], [ -176.736549, 51.969808 ], [ -176.720780, 51.969518 ], [ -176.698771, 51.964454 ], [ -176.630510, 51.970352 ], [ -176.627155, 51.978294 ], [ -176.603598, 51.997056 ], [ -176.589955, 52.002741 ], [ -176.579975, 52.003238 ], [ -176.560565, 51.996732 ], [ -176.554398, 51.990660 ], [ -176.544867, 51.927245 ], [ -176.554661, 51.909834 ], [ -176.558376, 51.908725 ], [ -176.566275, 51.914702 ], [ -176.568916, 51.921300 ], [ -176.565559, 51.925862 ], [ -176.569683, 51.951324 ], [ -176.575635, 51.952641 ], [ -176.578931, 51.951328 ], [ -176.582927, 51.947964 ], [ -176.616095, 51.903013 ], [ -176.620015, 51.895630 ], [ -176.623452, 51.883205 ], [ -176.625463, 51.859824 ], [ -176.576381, 51.842275 ], [ -176.543309, 51.838624 ], [ -176.517599, 51.839557 ], [ -176.507989, 51.845970 ], [ -176.398062, 51.867842 ], [ -176.311573, 51.872463 ], [ -176.290728, 51.872136 ], [ -176.287188, 51.870313 ], [ -176.281694, 51.863919 ], [ -176.266490, 51.817716 ], [ -176.268243, 51.785498 ], [ -176.273792, 51.772019 ], [ -176.289921, 51.741678 ], [ -176.343756, 51.731520 ], [ -176.474132, 51.747208 ], [ -176.497054, 51.761426 ], [ -176.509655, 51.763326 ], [ -176.519330, 51.758482 ], [ -176.582933, 51.691822 ], [ -176.608482, 51.693349 ], [ -176.702660, 51.685404 ], [ -176.713062, 51.683330 ], [ -176.735912, 51.662154 ], [ -176.751817, 51.635017 ], [ -176.801675, 51.613488 ], [ -176.809000, 51.616235 ], [ -176.823682, 51.634011 ], [ -176.826252, 51.640932 ], [ -176.814437, 51.660250 ], [ -176.837514, 51.682745 ], [ -176.863062, 51.684921 ], [ -176.903184, 51.635648 ], [ -176.930952, 51.592470 ], [ -176.938917, 51.590982 ], [ -176.954147, 51.592568 ], [ -176.984331, 51.602135 ], [ -176.987383, 51.606872 ], [ -176.991322, 51.629052 ], [ -176.984489, 51.657411 ], [ -176.976249, 51.666400 ], [ -176.950128, 51.686719 ], [ -176.930872, 51.697195 ], [ -176.906884, 51.696639 ], [ -176.896966, 51.700424 ], [ -176.873924, 51.724071 ], [ -176.870997, 51.729410 ], [ -176.870700, 51.731969 ], [ -176.882018, 51.766628 ], [ -176.905030, 51.771532 ], [ -176.918065, 51.788003 ], [ -176.917088, 51.797016 ], [ -176.911016, 51.807597 ], [ -176.904302, 51.811772 ], [ -176.856205, 51.818366 ], [ -176.790163, 51.817217 ], [ -176.762478, 51.867878 ] ] ], [ [ [ -177.800647, 51.778294 ], [ -177.796308, 51.770831 ], [ -177.813886, 51.754280 ], [ -177.842267, 51.732480 ], [ -177.842419, 51.722645 ], [ -177.838054, 51.717198 ], [ -177.827524, 51.712086 ], [ -177.826997, 51.705972 ], [ -177.841411, 51.689560 ], [ -177.856332, 51.681015 ], [ -177.867960, 51.679374 ], [ -177.876811, 51.681411 ], [ -177.887768, 51.689483 ], [ -177.899416, 51.692557 ], [ -177.902693, 51.691581 ], [ -177.918806, 51.674390 ], [ -177.928907, 51.655368 ], [ -177.929023, 51.650520 ], [ -177.925640, 51.642481 ], [ -177.915445, 51.630684 ], [ -177.903083, 51.606497 ], [ -177.906072, 51.597670 ], [ -177.909185, 51.596671 ], [ -177.930123, 51.601499 ], [ -177.944957, 51.611539 ], [ -177.950665, 51.620001 ], [ -177.953024, 51.638175 ], [ -177.957443, 51.647149 ], [ -177.963852, 51.650231 ], [ -178.069823, 51.670676 ], [ -178.086304, 51.663618 ], [ -178.109378, 51.670461 ], [ -178.117864, 51.677831 ], [ -178.104285, 51.701539 ], [ -178.021818, 51.706906 ], [ -177.962426, 51.719772 ], [ -177.956443, 51.722862 ], [ -177.947777, 51.740381 ], [ -177.946649, 51.752681 ], [ -177.950283, 51.765682 ], [ -177.956998, 51.772541 ], [ -177.965031, 51.778162 ], [ -177.995272, 51.781535 ], [ -178.039344, 51.778925 ], [ -178.059335, 51.786829 ], [ -178.080640, 51.798739 ], [ -178.086074, 51.808047 ], [ -178.172666, 51.839985 ], [ -178.215124, 51.857801 ], [ -178.224129, 51.864881 ], [ -178.227822, 51.873526 ], [ -178.224618, 51.880675 ], [ -178.220742, 51.884841 ], [ -178.197090, 51.905464 ], [ -178.175023, 51.911584 ], [ -178.145326, 51.917216 ], [ -178.124786, 51.920093 ], [ -178.090632, 51.919399 ], [ -178.070548, 51.917408 ], [ -178.061147, 51.912539 ], [ -178.002345, 51.909968 ], [ -177.963723, 51.917919 ], [ -177.952094, 51.915348 ], [ -177.913269, 51.879748 ], [ -177.924315, 51.857522 ], [ -177.921569, 51.853883 ], [ -177.859763, 51.826944 ], [ -177.852285, 51.826045 ], [ -177.759641, 51.831195 ], [ -177.691714, 51.843975 ], [ -177.615311, 51.855080 ], [ -177.614511, 51.853033 ], [ -177.625008, 51.837529 ], [ -177.649208, 51.820727 ], [ -177.685555, 51.812745 ], [ -177.692118, 51.813897 ], [ -177.735909, 51.807991 ], [ -177.797719, 51.793297 ], [ -177.800647, 51.778294 ] ] ], [ [ [ -177.360408, 51.727533 ], [ -177.390760, 51.733525 ], [ -177.417678, 51.730875 ], [ -177.444717, 51.725419 ], [ -177.463577, 51.713943 ], [ -177.490005, 51.705106 ], [ -177.540393, 51.698755 ], [ -177.570973, 51.698220 ], [ -177.608055, 51.705184 ], [ -177.616753, 51.703978 ], [ -177.631523, 51.696844 ], [ -177.640524, 51.672084 ], [ -177.635883, 51.659541 ], [ -177.651386, 51.653604 ], [ -177.670951, 51.663980 ], [ -177.707802, 51.703268 ], [ -177.705261, 51.707240 ], [ -177.697662, 51.713123 ], [ -177.639983, 51.736061 ], [ -177.597498, 51.726464 ], [ -177.555197, 51.721125 ], [ -177.536977, 51.721470 ], [ -177.515591, 51.724978 ], [ -177.497974, 51.738624 ], [ -177.461200, 51.750718 ], [ -177.281479, 51.784075 ], [ -177.238175, 51.798520 ], [ -177.211930, 51.812331 ], [ -177.205675, 51.820639 ], [ -177.200825, 51.844605 ], [ -177.199120, 51.883142 ], [ -177.199764, 51.924816 ], [ -177.197506, 51.931339 ], [ -177.191399, 51.938001 ], [ -177.181271, 51.943167 ], [ -177.154842, 51.944381 ], [ -177.099266, 51.936119 ], [ -177.054768, 51.908944 ], [ -177.045090, 51.898605 ], [ -177.081010, 51.855497 ], [ -177.120377, 51.839687 ], [ -177.128617, 51.833835 ], [ -177.136977, 51.814493 ], [ -177.130960, 51.762772 ], [ -177.120581, 51.739815 ], [ -177.122808, 51.729355 ], [ -177.145675, 51.707294 ], [ -177.261631, 51.680846 ], [ -177.275121, 51.680510 ], [ -177.296369, 51.684245 ], [ -177.316501, 51.690353 ], [ -177.317888, 51.693447 ], [ -177.317939, 51.696866 ], [ -177.316353, 51.700811 ], [ -177.322977, 51.711416 ], [ -177.342784, 51.721395 ], [ -177.360408, 51.727533 ] ] ], [ [ [ -178.792409, 51.746071 ], [ -178.808157, 51.747078 ], [ -178.815757, 51.749176 ], [ -178.873024, 51.782623 ], [ -178.870118, 51.795261 ], [ -178.858248, 51.820966 ], [ -178.828645, 51.836150 ], [ -178.819459, 51.839575 ], [ -178.811249, 51.839018 ], [ -178.788541, 51.832602 ], [ -178.767695, 51.823179 ], [ -178.748283, 51.809942 ], [ -178.733355, 51.783947 ], [ -178.750414, 51.757752 ], [ -178.776661, 51.748612 ], [ -178.792409, 51.746071 ] ] ], [ [ [ 178.380741, 51.763907 ], [ 178.367465, 51.772758 ], [ 178.363680, 51.773948 ], [ 178.339082, 51.771529 ], [ 178.335664, 51.769926 ], [ 178.318757, 51.772322 ], [ 178.308563, 51.775701 ], [ 178.304892, 51.777434 ], [ 178.246209, 51.817078 ], [ 178.236931, 51.828209 ], [ 178.305568, 51.821748 ], [ 178.310298, 51.819993 ], [ 178.319389, 51.815737 ], [ 178.332190, 51.809037 ], [ 178.335631, 51.807031 ], [ 178.372348, 51.774146 ], [ 178.380741, 51.763907 ] ] ], [ [ [ -175.971562, 51.888631 ], [ -175.957546, 51.893455 ], [ -175.953251, 51.881376 ], [ -175.954287, 51.868381 ], [ -175.963041, 51.846253 ], [ -175.983742, 51.852352 ], [ -176.047892, 51.846309 ], [ -176.101070, 51.810609 ], [ -176.123965, 51.802745 ], [ -176.139622, 51.802386 ], [ -176.183142, 51.807099 ], [ -176.216957, 51.812714 ], [ -176.235544, 51.823157 ], [ -176.236246, 51.825965 ], [ -176.217544, 51.874627 ], [ -176.206069, 51.883089 ], [ -176.173871, 51.882449 ], [ -176.169751, 51.880138 ], [ -176.168775, 51.877330 ], [ -176.161052, 51.869685 ], [ -176.140908, 51.859562 ], [ -176.099137, 51.855533 ], [ -176.080442, 51.858567 ], [ -176.072225, 51.867938 ], [ -176.073431, 51.870312 ], [ -176.078865, 51.874778 ], [ -176.115489, 51.887015 ], [ -176.111452, 51.889748 ], [ -176.065288, 51.902986 ], [ -176.020182, 51.911373 ], [ -175.992650, 51.912655 ], [ -175.984993, 51.908445 ], [ -175.971562, 51.888631 ] ] ], [ [ [ 177.601645, 52.016377 ], [ 177.577226, 52.004970 ], [ 177.572068, 52.001812 ], [ 177.538223, 51.978897 ], [ 177.532729, 51.970070 ], [ 177.539627, 51.959418 ], [ 177.543534, 51.956175 ], [ 177.571796, 51.951590 ], [ 177.579823, 51.950836 ], [ 177.607535, 51.954720 ], [ 177.611553, 51.950829 ], [ 177.610618, 51.936713 ], [ 177.606529, 51.925069 ], [ 177.601005, 51.922254 ], [ 177.560513, 51.916364 ], [ 177.484313, 51.923413 ], [ 177.409536, 51.930821 ], [ 177.373934, 51.919760 ], [ 177.348816, 51.904469 ], [ 177.326781, 51.873636 ], [ 177.327179, 51.871049 ], [ 177.334229, 51.866769 ], [ 177.334017, 51.844444 ], [ 177.321687, 51.828543 ], [ 177.311768, 51.825971 ], [ 177.303314, 51.829458 ], [ 177.294035, 51.837301 ], [ 177.296018, 51.839866 ], [ 177.293424, 51.845610 ], [ 177.273370, 51.857123 ], [ 177.235523, 51.873260 ], [ 177.212422, 51.876431 ], [ 177.203996, 51.880531 ], [ 177.200423, 51.894746 ], [ 177.203323, 51.896562 ], [ 177.233904, 51.909624 ], [ 177.272695, 51.920054 ], [ 177.291312, 51.919430 ], [ 177.341518, 51.955016 ], [ 177.345577, 51.963005 ], [ 177.413484, 51.979724 ], [ 177.483712, 51.984877 ], [ 177.497441, 51.993328 ], [ 177.503441, 52.008829 ], [ 177.505747, 52.016374 ], [ 177.505319, 52.038768 ], [ 177.545604, 52.101091 ], [ 177.563396, 52.121959 ], [ 177.602673, 52.137320 ], [ 177.661607, 52.112746 ], [ 177.675952, 52.092167 ], [ 177.667256, 52.076274 ], [ 177.659451, 52.069439 ], [ 177.653614, 52.070323 ], [ 177.641864, 52.068316 ], [ 177.632555, 52.064844 ], [ 177.609087, 52.028518 ], [ 177.601645, 52.016377 ] ] ], [ [ [ 179.758993, 51.946595 ], [ 179.751525, 51.923933 ], [ 179.743012, 51.911749 ], [ 179.734772, 51.907606 ], [ 179.649484, 51.873670 ], [ 179.639077, 51.871931 ], [ 179.614364, 51.871772 ], [ 179.521868, 51.896765 ], [ 179.484634, 51.921268 ], [ 179.475569, 51.937456 ], [ 179.482464, 51.982834 ], [ 179.486565, 51.983959 ], [ 179.515025, 51.983751 ], [ 179.526743, 51.981164 ], [ 179.539223, 51.985178 ], [ 179.571049, 52.011111 ], [ 179.582857, 52.016841 ], [ 179.622283, 52.024975 ], [ 179.647641, 52.026259 ], [ 179.663327, 52.022941 ], [ 179.704433, 52.004877 ], [ 179.773922, 51.970693 ], [ 179.778470, 51.962217 ], [ 179.777158, 51.958700 ], [ 179.767251, 51.947572 ], [ 179.758993, 51.946595 ] ] ], [ [ [ 178.446964, 51.978222 ], [ 178.463385, 51.987849 ], [ 178.478586, 51.987549 ], [ 178.552612, 51.973968 ], [ 178.570619, 51.968064 ], [ 178.591597, 51.952652 ], [ 178.590245, 51.945457 ], [ 178.567447, 51.925939 ], [ 178.539395, 51.903246 ], [ 178.518861, 51.899759 ], [ 178.502493, 51.899644 ], [ 178.484831, 51.909898 ], [ 178.468045, 51.931635 ], [ 178.454664, 51.960501 ], [ 178.446964, 51.978222 ] ] ], [ [ [ -175.680144, 51.968970 ], [ -175.672640, 51.972471 ], [ -175.669707, 51.972166 ], [ -175.655056, 51.966651 ], [ -175.652493, 51.964813 ], [ -175.653194, 51.961669 ], [ -175.717436, 51.933695 ], [ -175.730011, 51.933817 ], [ -175.747438, 51.946200 ], [ -175.747836, 51.950655 ], [ -175.742618, 51.966632 ], [ -175.735477, 51.973331 ], [ -175.726245, 51.975969 ], [ -175.680144, 51.968970 ] ] ], [ [ [ -176.018089, 52.020099 ], [ -176.044001, 52.009331 ], [ -176.032156, 51.993667 ], [ -176.027546, 51.991630 ], [ -176.021839, 51.984848 ], [ -176.022663, 51.980621 ], [ -176.027667, 51.975112 ], [ -176.057085, 51.967825 ], [ -176.079181, 51.968884 ], [ -176.180356, 52.000426 ], [ -176.185086, 52.005705 ], [ -176.201935, 52.040212 ], [ -176.211855, 52.065533 ], [ -176.205324, 52.076246 ], [ -176.173155, 52.102314 ], [ -176.143914, 52.116097 ], [ -176.058103, 52.106467 ], [ -175.988653, 52.035509 ], [ -175.999044, 52.025385 ], [ -176.018089, 52.020099 ] ] ], [ [ [ 178.117600, 52.048612 ], [ 178.119144, 52.051659 ], [ 178.141695, 52.051034 ], [ 178.175781, 52.036777 ], [ 178.179962, 52.033247 ], [ 178.190963, 52.003546 ], [ 178.174473, 51.991684 ], [ 178.132547, 51.986982 ], [ 178.105874, 51.998357 ], [ 178.102730, 52.003927 ], [ 178.094610, 52.033294 ], [ 178.107266, 52.045744 ], [ 178.117600, 52.048612 ] ] ], [ [ [ -174.301818, 52.278949 ], [ -174.323471, 52.283990 ], [ -174.346089, 52.285036 ], [ -174.349404, 52.281336 ], [ -174.368754, 52.280405 ], [ -174.408277, 52.289872 ], [ -174.451554, 52.305557 ], [ -174.455979, 52.313690 ], [ -174.453660, 52.319367 ], [ -174.443132, 52.325654 ], [ -174.432846, 52.328004 ], [ -174.384199, 52.321139 ], [ -174.367047, 52.314105 ], [ -174.358624, 52.314190 ], [ -174.340679, 52.322284 ], [ -174.331065, 52.328465 ], [ -174.317700, 52.344869 ], [ -174.320813, 52.355726 ], [ -174.330494, 52.366439 ], [ -174.329818, 52.373548 ], [ -174.324935, 52.378095 ], [ -174.185347, 52.417788 ], [ -174.155774, 52.416041 ], [ -174.068248, 52.390331 ], [ -174.016822, 52.348537 ], [ -173.989415, 52.325275 ], [ -173.985203, 52.317600 ], [ -173.986421, 52.298565 ], [ -173.987917, 52.295345 ], [ -174.036222, 52.245011 ], [ -174.060451, 52.225326 ], [ -174.084042, 52.223677 ], [ -174.106533, 52.228392 ], [ -174.177679, 52.233638 ], [ -174.182857, 52.232762 ], [ -174.198624, 52.219244 ], [ -174.200389, 52.211861 ], [ -174.196836, 52.195856 ], [ -174.190100, 52.190320 ], [ -174.175044, 52.181835 ], [ -174.135217, 52.168514 ], [ -174.090169, 52.139119 ], [ -174.082814, 52.132069 ], [ -174.080677, 52.128026 ], [ -174.089100, 52.107251 ], [ -174.094470, 52.104274 ], [ -174.102161, 52.104534 ], [ -174.109089, 52.113117 ], [ -174.114370, 52.117107 ], [ -174.142262, 52.125452 ], [ -174.206353, 52.116554 ], [ -174.218469, 52.104880 ], [ -174.302947, 52.111325 ], [ -174.334424, 52.115198 ], [ -174.348463, 52.109245 ], [ -174.365667, 52.097238 ], [ -174.382661, 52.081658 ], [ -174.411255, 52.048757 ], [ -174.452760, 52.061047 ], [ -174.507816, 52.054955 ], [ -174.508822, 52.048623 ], [ -174.556278, 52.036733 ], [ -174.580676, 52.040453 ], [ -174.593635, 52.045247 ], [ -174.615943, 52.032665 ], [ -174.714610, 52.009863 ], [ -174.736592, 52.007308 ], [ -174.783189, 52.032293 ], [ -174.885554, 52.043001 ], [ -174.967907, 52.037203 ], [ -175.000792, 52.028354 ], [ -175.014748, 52.020584 ], [ -175.014807, 52.007000 ], [ -175.095510, 52.000797 ], [ -175.104889, 52.003548 ], [ -175.155673, 52.011512 ], [ -175.274850, 52.018619 ], [ -175.292821, 52.018790 ], [ -175.300639, 52.014970 ], [ -175.302683, 52.011499 ], [ -175.323322, 52.007488 ], [ -175.341624, 52.021588 ], [ -175.327070, 52.027032 ], [ -175.195900, 52.051407 ], [ -175.156744, 52.057642 ], [ -175.132635, 52.059223 ], [ -175.117115, 52.054499 ], [ -175.117680, 52.053234 ], [ -175.113721, 52.046308 ], [ -175.092867, 52.034794 ], [ -175.044344, 52.057519 ], [ -174.995237, 52.061417 ], [ -174.992309, 52.058603 ], [ -174.980497, 52.061471 ], [ -174.937497, 52.078334 ], [ -174.922299, 52.091580 ], [ -174.927549, 52.101415 ], [ -174.920042, 52.109274 ], [ -174.905409, 52.116509 ], [ -174.866725, 52.103172 ], [ -174.839715, 52.091338 ], [ -174.786809, 52.091324 ], [ -174.656294, 52.107962 ], [ -174.604871, 52.122124 ], [ -174.568402, 52.138426 ], [ -174.557080, 52.153637 ], [ -174.554670, 52.160405 ], [ -174.527081, 52.174720 ], [ -174.496880, 52.179151 ], [ -174.465189, 52.180711 ], [ -174.455707, 52.176802 ], [ -174.424054, 52.169053 ], [ -174.415290, 52.169376 ], [ -174.404588, 52.181330 ], [ -174.405464, 52.183560 ], [ -174.457804, 52.202831 ], [ -174.462962, 52.213031 ], [ -174.453746, 52.218823 ], [ -174.400139, 52.219053 ], [ -174.360631, 52.212994 ], [ -174.328599, 52.211647 ], [ -174.299044, 52.214670 ], [ -174.249848, 52.243694 ], [ -174.255832, 52.274152 ], [ -174.301818, 52.278949 ] ] ], [ [ [ -173.602446, 52.153773 ], [ -173.590560, 52.145393 ], [ -173.514171, 52.108348 ], [ -173.497020, 52.103641 ], [ -173.467877, 52.116423 ], [ -173.375229, 52.108228 ], [ -173.375595, 52.106343 ], [ -173.372574, 52.102750 ], [ -173.357498, 52.096129 ], [ -173.238295, 52.100443 ], [ -173.173206, 52.109136 ], [ -173.124504, 52.109420 ], [ -173.119255, 52.107628 ], [ -173.107373, 52.099280 ], [ -173.066430, 52.096330 ], [ -173.019588, 52.097881 ], [ -172.958523, 52.093648 ], [ -172.960751, 52.087018 ], [ -173.033166, 52.074611 ], [ -173.047540, 52.073329 ], [ -173.107933, 52.078828 ], [ -173.206837, 52.063532 ], [ -173.313705, 52.058701 ], [ -173.424178, 52.046298 ], [ -173.511915, 52.031278 ], [ -173.548385, 52.029308 ], [ -173.612014, 52.051148 ], [ -173.718000, 52.063069 ], [ -173.799574, 52.053650 ], [ -173.816999, 52.048538 ], [ -173.820692, 52.043312 ], [ -173.831555, 52.040763 ], [ -173.901075, 52.049435 ], [ -173.937239, 52.057513 ], [ -173.935561, 52.064731 ], [ -173.971330, 52.099428 ], [ -173.992274, 52.100590 ], [ -174.001866, 52.097641 ], [ -174.011338, 52.098862 ], [ -174.035082, 52.112952 ], [ -174.046750, 52.122403 ], [ -174.052296, 52.130400 ], [ -174.048451, 52.132911 ], [ -174.036854, 52.135878 ], [ -173.984245, 52.127855 ], [ -173.890733, 52.125470 ], [ -173.830906, 52.110450 ], [ -173.824087, 52.105892 ], [ -173.818277, 52.105363 ], [ -173.802339, 52.106390 ], [ -173.721266, 52.130207 ], [ -173.654404, 52.146192 ], [ -173.624771, 52.152213 ], [ -173.602446, 52.153773 ] ] ], [ [ [ 177.355215, 52.071396 ], [ 177.332629, 52.075209 ], [ 177.321366, 52.080428 ], [ 177.305190, 52.090324 ], [ 177.290600, 52.102150 ], [ 177.283488, 52.114159 ], [ 177.280160, 52.127579 ], [ 177.281807, 52.135126 ], [ 177.288827, 52.144190 ], [ 177.306009, 52.156108 ], [ 177.329296, 52.166669 ], [ 177.340528, 52.170323 ], [ 177.367356, 52.175299 ], [ 177.383655, 52.174276 ], [ 177.408835, 52.167632 ], [ 177.425775, 52.157203 ], [ 177.437924, 52.146873 ], [ 177.445983, 52.135130 ], [ 177.446563, 52.114453 ], [ 177.443023, 52.105259 ], [ 177.435577, 52.097011 ], [ 177.428801, 52.091738 ], [ 177.402034, 52.079668 ], [ 177.386805, 52.075196 ], [ 177.355215, 52.071396 ] ] ], [ [ [ -172.633153, 52.266215 ], [ -172.620261, 52.298751 ], [ -172.574154, 52.345323 ], [ -172.568051, 52.349420 ], [ -172.474610, 52.383763 ], [ -172.448182, 52.391439 ], [ -172.405243, 52.389442 ], [ -172.326444, 52.366472 ], [ -172.311427, 52.356456 ], [ -172.302393, 52.342357 ], [ -172.301445, 52.329951 ], [ -172.313133, 52.320697 ], [ -172.414419, 52.276740 ], [ -172.528095, 52.254336 ], [ -172.608935, 52.253014 ], [ -172.616839, 52.255317 ], [ -172.633153, 52.266215 ] ] ], [ [ [ 175.911286, 52.334831 ], [ 175.902770, 52.336823 ], [ 175.890684, 52.344514 ], [ 175.873317, 52.361138 ], [ 175.874353, 52.371004 ], [ 175.906734, 52.375651 ], [ 175.950560, 52.368357 ], [ 175.966521, 52.359728 ], [ 175.944180, 52.336437 ], [ 175.911286, 52.334831 ] ] ], [ [ [ 173.587554, 52.476785 ], [ 173.623883, 52.506948 ], [ 173.680586, 52.512878 ], [ 173.736270, 52.512422 ], [ 173.769503, 52.512072 ], [ 173.772799, 52.509905 ], [ 173.772402, 52.506877 ], [ 173.754979, 52.496127 ], [ 173.739385, 52.493257 ], [ 173.707741, 52.477377 ], [ 173.695719, 52.458935 ], [ 173.691601, 52.445935 ], [ 173.693860, 52.438694 ], [ 173.702252, 52.434804 ], [ 173.704299, 52.432192 ], [ 173.712323, 52.421033 ], [ 173.719161, 52.397703 ], [ 173.725696, 52.356579 ], [ 173.651293, 52.356370 ], [ 173.644793, 52.357598 ], [ 173.640825, 52.359428 ], [ 173.606767, 52.378249 ], [ 173.595397, 52.391893 ], [ 173.588794, 52.400973 ], [ 173.559891, 52.401165 ], [ 173.543778, 52.392666 ], [ 173.512162, 52.385035 ], [ 173.483843, 52.383485 ], [ 173.465442, 52.384621 ], [ 173.455586, 52.389656 ], [ 173.395500, 52.402647 ], [ 173.385704, 52.404072 ], [ 173.356927, 52.403873 ], [ 173.356103, 52.405563 ], [ 173.380058, 52.431843 ], [ 173.440111, 52.453664 ], [ 173.445696, 52.455031 ], [ 173.467698, 52.444473 ], [ 173.476243, 52.441909 ], [ 173.501022, 52.440926 ], [ 173.525161, 52.448137 ], [ 173.530105, 52.449968 ], [ 173.550002, 52.467067 ], [ 173.549605, 52.469989 ], [ 173.545302, 52.476000 ], [ 173.555739, 52.479472 ], [ 173.587554, 52.476785 ] ] ], [ [ [ -171.294554, 52.451105 ], [ -171.299348, 52.448716 ], [ -171.304170, 52.449952 ], [ -171.313083, 52.472932 ], [ -171.312658, 52.493502 ], [ -171.307500, 52.501514 ], [ -171.291387, 52.514813 ], [ -171.277165, 52.522634 ], [ -171.252053, 52.529954 ], [ -171.196013, 52.500106 ], [ -171.194639, 52.498039 ], [ -171.208919, 52.469023 ], [ -171.214565, 52.463300 ], [ -171.236843, 52.450527 ], [ -171.252316, 52.449466 ], [ -171.294554, 52.451105 ] ] ], [ [ [ -170.841936, 52.558171 ], [ -170.833364, 52.599985 ], [ -170.820641, 52.633091 ], [ -170.817943, 52.636275 ], [ -170.727717, 52.679978 ], [ -170.671545, 52.698082 ], [ -170.633753, 52.697469 ], [ -170.579913, 52.682029 ], [ -170.562734, 52.674785 ], [ -170.559523, 52.667907 ], [ -170.557324, 52.652105 ], [ -170.563610, 52.640706 ], [ -170.603862, 52.601732 ], [ -170.635419, 52.595711 ], [ -170.659041, 52.593811 ], [ -170.665266, 52.595260 ], [ -170.668075, 52.600677 ], [ -170.674453, 52.603385 ], [ -170.683854, 52.602485 ], [ -170.696488, 52.598364 ], [ -170.735824, 52.580823 ], [ -170.767378, 52.558254 ], [ -170.777143, 52.546664 ], [ -170.788495, 52.540240 ], [ -170.841936, 52.558171 ] ] ], [ [ [ 174.069186, 52.734888 ], [ 174.092073, 52.742060 ], [ 174.096650, 52.743485 ], [ 174.133150, 52.733786 ], [ 174.145326, 52.728550 ], [ 174.155764, 52.715375 ], [ 174.159252, 52.707387 ], [ 174.158146, 52.706059 ], [ 174.109409, 52.708560 ], [ 174.071842, 52.718295 ], [ 174.066195, 52.731042 ], [ 174.069186, 52.734888 ] ] ], [ [ [ -170.170683, 52.784918 ], [ -170.128714, 52.787425 ], [ -170.061868, 52.773525 ], [ -170.053443, 52.769076 ], [ -170.052922, 52.758745 ], [ -170.055363, 52.745887 ], [ -170.070287, 52.724301 ], [ -170.077734, 52.720416 ], [ -170.114087, 52.716172 ], [ -170.170646, 52.717359 ], [ -170.184564, 52.721937 ], [ -170.185684, 52.723007 ], [ -170.170683, 52.784918 ] ] ], [ [ [ 174.004827, 52.719857 ], [ 173.972600, 52.729423 ], [ 173.960880, 52.738136 ], [ 173.952793, 52.747885 ], [ 173.954075, 52.751410 ], [ 173.983432, 52.749053 ], [ 174.003651, 52.744283 ], [ 174.021702, 52.730286 ], [ 174.004827, 52.719857 ] ] ], [ [ [ 173.932926, 52.746649 ], [ 173.930912, 52.750227 ], [ 173.925271, 52.752433 ], [ 173.894753, 52.750780 ], [ 173.875585, 52.761898 ], [ 173.861653, 52.773579 ], [ 173.867436, 52.775128 ], [ 173.881412, 52.775028 ], [ 173.897452, 52.771780 ], [ 173.931553, 52.758574 ], [ 173.940037, 52.751860 ], [ 173.932926, 52.746649 ] ] ], [ [ [ 172.763366, 52.823656 ], [ 172.767390, 52.848372 ], [ 172.766693, 52.862669 ], [ 172.754236, 52.877490 ], [ 172.640372, 52.925441 ], [ 172.585075, 52.921327 ], [ 172.548700, 52.914322 ], [ 172.512996, 52.905181 ], [ 172.469022, 52.911337 ], [ 172.461667, 52.927160 ], [ 172.629077, 53.001324 ], [ 172.643266, 53.004979 ], [ 172.746566, 53.010750 ], [ 173.107249, 52.993228 ], [ 173.121988, 52.990352 ], [ 173.131510, 52.987521 ], [ 173.159648, 52.974163 ], [ 173.172406, 52.960545 ], [ 173.211752, 52.939489 ], [ 173.235265, 52.943628 ], [ 173.251326, 52.944362 ], [ 173.295399, 52.926987 ], [ 173.421682, 52.845477 ], [ 173.427670, 52.830763 ], [ 173.423819, 52.828799 ], [ 173.413016, 52.827891 ], [ 173.302331, 52.823286 ], [ 173.284417, 52.827933 ], [ 173.229070, 52.856156 ], [ 173.224051, 52.856403 ], [ 173.204948, 52.848911 ], [ 173.187952, 52.831500 ], [ 173.173543, 52.804378 ], [ 173.166899, 52.795229 ], [ 173.142678, 52.786254 ], [ 173.134521, 52.784357 ], [ 173.118560, 52.784440 ], [ 172.998472, 52.796979 ], [ 172.903628, 52.761667 ], [ 172.809387, 52.789290 ], [ 172.763366, 52.823656 ] ] ], [ [ [ -169.943521, 52.861099 ], [ -169.905631, 52.853240 ], [ -169.860214, 52.858377 ], [ -169.818139, 52.878446 ], [ -169.773504, 52.894450 ], [ -169.749177, 52.893269 ], [ -169.704736, 52.886272 ], [ -169.666512, 52.864349 ], [ -169.683482, 52.826618 ], [ -169.704105, 52.793938 ], [ -169.750136, 52.790576 ], [ -169.838232, 52.817280 ], [ -169.879866, 52.816088 ], [ -169.886671, 52.808563 ], [ -169.897078, 52.802131 ], [ -169.927446, 52.792675 ], [ -169.951498, 52.788615 ], [ -169.962883, 52.789882 ], [ -169.995422, 52.804676 ], [ -170.012487, 52.831161 ], [ -170.004218, 52.846743 ], [ -169.990149, 52.856266 ], [ -169.975345, 52.858884 ], [ -169.943521, 52.861099 ] ] ], [ [ [ -168.211705, 53.256184 ], [ -168.226915, 53.254822 ], [ -168.270744, 53.242811 ], [ -168.296229, 53.227235 ], [ -168.312376, 53.215231 ], [ -168.341678, 53.185911 ], [ -168.344468, 53.155215 ], [ -168.373150, 53.128891 ], [ -168.392379, 53.123609 ], [ -168.412522, 53.110683 ], [ -168.433734, 53.093934 ], [ -168.442859, 53.085562 ], [ -168.451161, 53.075131 ], [ -168.457103, 53.055839 ], [ -168.497490, 53.035403 ], [ -168.527404, 53.028588 ], [ -168.546059, 53.029580 ], [ -168.553195, 53.033296 ], [ -168.578895, 53.029915 ], [ -168.587808, 53.027175 ], [ -168.613964, 53.008776 ], [ -168.625257, 52.998214 ], [ -168.688468, 52.966400 ], [ -168.741851, 52.951442 ], [ -168.808854, 52.926102 ], [ -168.907003, 52.884006 ], [ -169.041338, 52.839348 ], [ -169.102465, 52.824349 ], [ -169.054243, 52.863266 ], [ -169.038767, 52.869662 ], [ -168.992403, 52.873440 ], [ -168.971710, 52.878028 ], [ -168.958983, 52.886048 ], [ -168.861078, 52.968046 ], [ -168.785236, 53.045038 ], [ -168.763689, 53.070961 ], [ -168.759691, 53.081461 ], [ -168.768544, 53.093684 ], [ -168.776176, 53.097766 ], [ -168.789424, 53.100970 ], [ -168.802030, 53.108226 ], [ -168.804901, 53.120015 ], [ -168.799469, 53.143794 ], [ -168.792327, 53.155720 ], [ -168.788756, 53.160749 ], [ -168.763331, 53.182812 ], [ -168.617143, 53.260985 ], [ -168.539398, 53.251670 ], [ -168.524991, 53.252311 ], [ -168.501365, 53.257340 ], [ -168.490957, 53.264009 ], [ -168.445083, 53.265330 ], [ -168.412851, 53.257859 ], [ -168.366519, 53.252024 ], [ -168.361758, 53.252253 ], [ -168.343994, 53.262150 ], [ -168.365388, 53.309105 ], [ -168.371218, 53.316575 ], [ -168.375674, 53.318291 ], [ -168.406531, 53.346393 ], [ -168.386886, 53.431496 ], [ -168.342127, 53.475992 ], [ -168.315847, 53.481729 ], [ -168.295793, 53.489062 ], [ -168.239572, 53.518491 ], [ -168.238321, 53.521902 ], [ -168.200443, 53.534079 ], [ -168.144620, 53.545342 ], [ -168.004624, 53.566053 ], [ -167.981038, 53.561714 ], [ -167.962723, 53.554069 ], [ -167.960861, 53.552550 ], [ -167.965714, 53.543440 ], [ -167.965038, 53.538913 ], [ -167.938981, 53.526907 ], [ -167.901871, 53.520508 ], [ -167.888901, 53.519691 ], [ -167.816998, 53.517947 ], [ -167.796866, 53.521113 ], [ -167.791026, 53.521076 ], [ -167.789164, 53.519329 ], [ -167.786387, 53.513896 ], [ -167.784099, 53.501048 ], [ -167.788066, 53.492411 ], [ -167.808117, 53.473861 ], [ -167.843611, 53.453893 ], [ -167.853225, 53.445469 ], [ -167.858337, 53.437910 ], [ -167.856837, 53.428609 ], [ -167.851698, 53.421236 ], [ -167.844800, 53.417497 ], [ -167.839520, 53.410325 ], [ -167.839887, 53.394432 ], [ -167.842328, 53.386489 ], [ -167.852217, 53.378294 ], [ -167.872879, 53.367360 ], [ -167.878128, 53.366902 ], [ -167.959096, 53.341788 ], [ -167.988487, 53.329578 ], [ -168.009301, 53.317263 ], [ -168.039760, 53.304276 ], [ -168.158943, 53.267710 ], [ -168.211705, 53.256184 ] ] ], [ [ [ -169.996712, 52.891475 ], [ -169.999094, 52.884034 ], [ -170.002368, 52.880239 ], [ -170.015514, 52.870260 ], [ -170.050274, 52.857433 ], [ -170.095331, 52.870851 ], [ -170.113189, 52.891078 ], [ -170.112853, 52.902043 ], [ -170.092221, 52.919387 ], [ -170.083985, 52.923640 ], [ -170.046560, 52.923853 ], [ -170.020493, 52.917171 ], [ -170.002071, 52.910043 ], [ -169.995982, 52.902378 ], [ -169.996712, 52.891475 ] ] ], [ [ [ -169.721744, 52.947117 ], [ -169.741096, 52.951512 ], [ -169.758008, 52.967246 ], [ -169.760725, 52.971556 ], [ -169.762740, 52.978050 ], [ -169.745743, 53.021470 ], [ -169.742538, 53.024072 ], [ -169.698128, 53.033779 ], [ -169.680033, 53.035075 ], [ -169.664930, 53.023973 ], [ -169.663576, 53.021258 ], [ -169.666078, 52.997068 ], [ -169.698274, 52.958267 ], [ -169.721744, 52.947117 ] ] ], [ [ [ -166.728918, 54.003111 ], [ -166.676640, 54.017419 ], [ -166.644627, 54.014495 ], [ -166.636936, 54.012000 ], [ -166.619754, 54.001264 ], [ -166.599947, 53.983695 ], [ -166.587393, 53.959831 ], [ -166.605438, 53.955354 ], [ -166.621979, 53.953744 ], [ -166.646786, 53.923785 ], [ -166.640466, 53.912519 ], [ -166.619003, 53.893514 ], [ -166.597182, 53.883990 ], [ -166.575090, 53.879236 ], [ -166.560546, 53.878775 ], [ -166.487847, 53.895448 ], [ -166.443699, 53.909727 ], [ -166.436526, 53.916151 ], [ -166.435153, 53.920415 ], [ -166.437083, 53.955644 ], [ -166.373689, 54.010030 ], [ -166.367460, 54.008903 ], [ -166.357117, 54.002343 ], [ -166.354614, 53.999039 ], [ -166.354341, 53.995515 ], [ -166.359925, 53.977136 ], [ -166.319895, 53.960126 ], [ -166.279407, 53.982532 ], [ -166.264519, 53.977550 ], [ -166.210964, 53.933557 ], [ -166.208767, 53.929110 ], [ -166.211207, 53.912334 ], [ -166.236513, 53.881343 ], [ -166.250935, 53.876851 ], [ -166.320004, 53.869527 ], [ -166.351999, 53.858532 ], [ -166.389196, 53.832343 ], [ -166.404896, 53.809345 ], [ -166.434846, 53.798012 ], [ -166.547438, 53.749404 ], [ -166.552078, 53.728498 ], [ -166.540531, 53.715926 ], [ -166.469112, 53.735935 ], [ -166.460324, 53.745838 ], [ -166.420471, 53.762088 ], [ -166.336768, 53.787090 ], [ -166.303201, 53.791538 ], [ -166.212603, 53.817127 ], [ -166.214312, 53.820430 ], [ -166.212330, 53.827769 ], [ -166.198751, 53.836100 ], [ -166.119922, 53.855048 ], [ -166.113037, 53.853716 ], [ -166.097565, 53.843990 ], [ -166.094147, 53.839200 ], [ -166.111317, 53.776856 ], [ -166.166703, 53.733402 ], [ -166.199060, 53.727328 ], [ -166.262974, 53.703710 ], [ -166.265182, 53.698248 ], [ -166.274896, 53.687253 ], [ -166.283267, 53.684219 ], [ -166.444909, 53.640646 ], [ -166.467583, 53.646574 ], [ -166.532639, 53.630533 ], [ -166.553983, 53.623448 ], [ -166.581011, 53.530449 ], [ -166.656234, 53.487119 ], [ -166.662276, 53.485349 ], [ -166.667921, 53.486027 ], [ -166.712475, 53.498445 ], [ -166.735039, 53.506640 ], [ -166.743054, 53.514820 ], [ -166.772655, 53.496371 ], [ -166.789062, 53.453100 ], [ -166.863119, 53.443878 ], [ -166.878087, 53.429884 ], [ -166.922674, 53.441136 ], [ -166.959082, 53.455753 ], [ -166.994329, 53.429201 ], [ -167.036104, 53.449289 ], [ -167.048210, 53.448844 ], [ -167.050025, 53.433067 ], [ -167.075386, 53.424979 ], [ -167.112008, 53.416775 ], [ -167.124277, 53.425534 ], [ -167.134134, 53.426448 ], [ -167.201432, 53.397900 ], [ -167.291831, 53.364102 ], [ -167.302982, 53.336911 ], [ -167.308126, 53.334330 ], [ -167.348653, 53.333262 ], [ -167.386984, 53.340671 ], [ -167.442804, 53.321015 ], [ -167.466304, 53.295888 ], [ -167.488215, 53.269121 ], [ -167.515470, 53.267876 ], [ -167.530884, 53.275659 ], [ -167.539247, 53.277864 ], [ -167.589180, 53.288698 ], [ -167.598428, 53.288048 ], [ -167.609903, 53.285300 ], [ -167.622173, 53.250362 ], [ -167.644179, 53.250842 ], [ -167.798984, 53.284757 ], [ -167.835090, 53.299620 ], [ -167.851511, 53.308668 ], [ -167.852333, 53.315599 ], [ -167.790928, 53.335520 ], [ -167.710446, 53.381326 ], [ -167.694484, 53.388034 ], [ -167.653113, 53.392276 ], [ -167.622089, 53.385329 ], [ -167.488252, 53.420001 ], [ -167.474457, 53.431782 ], [ -167.473328, 53.438001 ], [ -167.457366, 53.442793 ], [ -167.393985, 53.439752 ], [ -167.373527, 53.432776 ], [ -167.355624, 53.424498 ], [ -167.332792, 53.433107 ], [ -167.319143, 53.451317 ], [ -167.301290, 53.466006 ], [ -167.278827, 53.478565 ], [ -167.267902, 53.478115 ], [ -167.226182, 53.468692 ], [ -167.217606, 53.465389 ], [ -167.199966, 53.463039 ], [ -167.193801, 53.467007 ], [ -167.158520, 53.503747 ], [ -167.102305, 53.515077 ], [ -167.105816, 53.540507 ], [ -167.131239, 53.547267 ], [ -167.135695, 53.551227 ], [ -167.161640, 53.605909 ], [ -167.163196, 53.613813 ], [ -167.159808, 53.617308 ], [ -167.140430, 53.626968 ], [ -167.107836, 53.633056 ], [ -167.091377, 53.633438 ], [ -167.084579, 53.626502 ], [ -167.070082, 53.619857 ], [ -167.062187, 53.620058 ], [ -167.009635, 53.635344 ], [ -167.008671, 53.642040 ], [ -167.017863, 53.648607 ], [ -167.030011, 53.653559 ], [ -167.071823, 53.665560 ], [ -167.067674, 53.687267 ], [ -167.057695, 53.698864 ], [ -167.041245, 53.707929 ], [ -167.022385, 53.715467 ], [ -166.999282, 53.718520 ], [ -166.923324, 53.719719 ], [ -166.894976, 53.717746 ], [ -166.859022, 53.674439 ], [ -166.861769, 53.659234 ], [ -166.832725, 53.657376 ], [ -166.805874, 53.665733 ], [ -166.779991, 53.719126 ], [ -166.787318, 53.734577 ], [ -166.856491, 53.747301 ], [ -166.942766, 53.769562 ], [ -166.960681, 53.776841 ], [ -166.975635, 53.775254 ], [ -166.983294, 53.771348 ], [ -166.992846, 53.762604 ], [ -167.005778, 53.755446 ], [ -167.016863, 53.754936 ], [ -167.024981, 53.757241 ], [ -167.075859, 53.786272 ], [ -167.141966, 53.826932 ], [ -167.140992, 53.866774 ], [ -167.058168, 53.929778 ], [ -167.031252, 53.945204 ], [ -166.930452, 53.976091 ], [ -166.879488, 53.988716 ], [ -166.818635, 53.993198 ], [ -166.751681, 54.016050 ], [ -166.746095, 54.016936 ], [ -166.742587, 54.015501 ], [ -166.728918, 54.003111 ] ] ], [ [ [ -169.553937, 56.608682 ], [ -169.528659, 56.612181 ], [ -169.507415, 56.610702 ], [ -169.473138, 56.601741 ], [ -169.471550, 56.598864 ], [ -169.490133, 56.583482 ], [ -169.568984, 56.540935 ], [ -169.582624, 56.536939 ], [ -169.640735, 56.542162 ], [ -169.650135, 56.544230 ], [ -169.657736, 56.547319 ], [ -169.667749, 56.554535 ], [ -169.672818, 56.560866 ], [ -169.671324, 56.567328 ], [ -169.675327, 56.578414 ], [ -169.683639, 56.583340 ], [ -169.755750, 56.591922 ], [ -169.785692, 56.613245 ], [ -169.789659, 56.618217 ], [ -169.763506, 56.620739 ], [ -169.679305, 56.611593 ], [ -169.611548, 56.606924 ], [ -169.553937, 56.608682 ] ] ], [ [ [ -170.286318, 57.128169 ], [ -170.290793, 57.145052 ], [ -170.303963, 57.154910 ], [ -170.324840, 57.156769 ], [ -170.359817, 57.156118 ], [ -170.421867, 57.161202 ], [ -170.423548, 57.169327 ], [ -170.420410, 57.191760 ], [ -170.418919, 57.192844 ], [ -170.402772, 57.201933 ], [ -170.390121, 57.206248 ], [ -170.331880, 57.217488 ], [ -170.311707, 57.219122 ], [ -170.291916, 57.212056 ], [ -170.267664, 57.210649 ], [ -170.239557, 57.214658 ], [ -170.161647, 57.229656 ], [ -170.150813, 57.223168 ], [ -170.170848, 57.181100 ], [ -170.286318, 57.128169 ] ] ], [ [ [ -155.620560, 55.907509 ], [ -155.568207, 55.907509 ], [ -155.560593, 55.897041 ], [ -155.559895, 55.882898 ], [ -155.584396, 55.848499 ], [ -155.564407, 55.809475 ], [ -155.566315, 55.789490 ], [ -155.589157, 55.761887 ], [ -155.611038, 55.759983 ], [ -155.649109, 55.776165 ], [ -155.718597, 55.772358 ], [ -155.728104, 55.779018 ], [ -155.750000, 55.821850 ], [ -155.743125, 55.831488 ], [ -155.663374, 55.860488 ], [ -155.637695, 55.894184 ], [ -155.620560, 55.907509 ] ] ], [ [ [ -154.404015, 56.572287 ], [ -154.393868, 56.562388 ], [ -154.391294, 56.557931 ], [ -154.392480, 56.554053 ], [ -154.436794, 56.534556 ], [ -154.529507, 56.502655 ], [ -154.571701, 56.494165 ], [ -154.633586, 56.471817 ], [ -154.668517, 56.452544 ], [ -154.691485, 56.436711 ], [ -154.704129, 56.424230 ], [ -154.736550, 56.403848 ], [ -154.742887, 56.401678 ], [ -154.765021, 56.401361 ], [ -154.775766, 56.404075 ], [ -154.789003, 56.411015 ], [ -154.799907, 56.419387 ], [ -154.805481, 56.427488 ], [ -154.806114, 56.434182 ], [ -154.777505, 56.462199 ], [ -154.739644, 56.496332 ], [ -154.706140, 56.521273 ], [ -154.534726, 56.600540 ], [ -154.524629, 56.603925 ], [ -154.514078, 56.604059 ], [ -154.449965, 56.600361 ], [ -154.413435, 56.586768 ], [ -154.402289, 56.580543 ], [ -154.399389, 56.576411 ], [ -154.404015, 56.572287 ] ] ], [ [ [ -153.940505, 56.558317 ], [ -153.915288, 56.564921 ], [ -153.878764, 56.565925 ], [ -153.870804, 56.558015 ], [ -153.868461, 56.551493 ], [ -153.887678, 56.533637 ], [ -153.952958, 56.507174 ], [ -153.993909, 56.501796 ], [ -154.120244, 56.501838 ], [ -154.143711, 56.506172 ], [ -154.163987, 56.507844 ], [ -154.197280, 56.502002 ], [ -154.232464, 56.491052 ], [ -154.304371, 56.502322 ], [ -154.343096, 56.510171 ], [ -154.347400, 56.512046 ], [ -154.361378, 56.525640 ], [ -154.362361, 56.542512 ], [ -154.341401, 56.563705 ], [ -154.310913, 56.585447 ], [ -154.290020, 56.595376 ], [ -154.244234, 56.609194 ], [ -154.223759, 56.612955 ], [ -154.210336, 56.609684 ], [ -154.206001, 56.606908 ], [ -154.184819, 56.603773 ], [ -154.136739, 56.609350 ], [ -154.113397, 56.616745 ], [ -154.103243, 56.617695 ], [ -154.095833, 56.617786 ], [ -154.090014, 56.614798 ], [ -154.081829, 56.603716 ], [ -154.079016, 56.589977 ], [ -154.075187, 56.583745 ], [ -154.041572, 56.556209 ], [ -154.025334, 56.551763 ], [ -154.009274, 56.551445 ], [ -153.940505, 56.558317 ] ] ], [ [ [ -152.417424, 57.815464 ], [ -152.364079, 57.829372 ], [ -152.351152, 57.834768 ], [ -152.324284, 57.824444 ], [ -152.310927, 57.783452 ], [ -152.317267, 57.771987 ], [ -152.322172, 57.768315 ], [ -152.342674, 57.762306 ], [ -152.348644, 57.764393 ], [ -152.349169, 57.768480 ], [ -152.357233, 57.773918 ], [ -152.381076, 57.776744 ], [ -152.443786, 57.776142 ], [ -152.465550, 57.767169 ], [ -152.471000, 57.763466 ], [ -152.497314, 57.738596 ], [ -152.497056, 57.734387 ], [ -152.467679, 57.681390 ], [ -152.443030, 57.668049 ], [ -152.401492, 57.686513 ], [ -152.398569, 57.687210 ], [ -152.394474, 57.684665 ], [ -152.428946, 57.642162 ], [ -152.461018, 57.606311 ], [ -152.468172, 57.600996 ], [ -152.467756, 57.598221 ], [ -152.459929, 57.594373 ], [ -152.439667, 57.590399 ], [ -152.426062, 57.593357 ], [ -152.402470, 57.607981 ], [ -152.387140, 57.612428 ], [ -152.361903, 57.618800 ], [ -152.322733, 57.623402 ], [ -152.265346, 57.626430 ], [ -152.179531, 57.624809 ], [ -152.161617, 57.623287 ], [ -152.152393, 57.619485 ], [ -152.159677, 57.593614 ], [ -152.163996, 57.584607 ], [ -152.259641, 57.527156 ], [ -152.291470, 57.517103 ], [ -152.314889, 57.486065 ], [ -152.323683, 57.467861 ], [ -152.326134, 57.441514 ], [ -152.361592, 57.427761 ], [ -152.416473, 57.435293 ], [ -152.495215, 57.452379 ], [ -152.517004, 57.432184 ], [ -152.570527, 57.448909 ], [ -152.600375, 57.468833 ], [ -152.646017, 57.466134 ], [ -152.662831, 57.463679 ], [ -152.684413, 57.466597 ], [ -152.716765, 57.478467 ], [ -152.720471, 57.481572 ], [ -152.719447, 57.488028 ], [ -152.722846, 57.494087 ], [ -152.743084, 57.505710 ], [ -152.770196, 57.504290 ], [ -152.798914, 57.494255 ], [ -152.809036, 57.494505 ], [ -152.825515, 57.497048 ], [ -152.838905, 57.502270 ], [ -152.886205, 57.510697 ], [ -152.939629, 57.520088 ], [ -152.954939, 57.520449 ], [ -152.966300, 57.512170 ], [ -152.967222, 57.509993 ], [ -152.949010, 57.498212 ], [ -152.939573, 57.497763 ], [ -152.921748, 57.501397 ], [ -152.890173, 57.486705 ], [ -152.762676, 57.457560 ], [ -152.742678, 57.447852 ], [ -152.722651, 57.433352 ], [ -152.673250, 57.413246 ], [ -152.630018, 57.405573 ], [ -152.620377, 57.401601 ], [ -152.601148, 57.382165 ], [ -152.606522, 57.363660 ], [ -152.630441, 57.322668 ], [ -152.657569, 57.303551 ], [ -152.695698, 57.281318 ], [ -152.707768, 57.276046 ], [ -152.712008, 57.278120 ], [ -152.774155, 57.290432 ], [ -152.787994, 57.279905 ], [ -152.818187, 57.265368 ], [ -152.886384, 57.291337 ], [ -152.900688, 57.302976 ], [ -152.909051, 57.324222 ], [ -152.984715, 57.339918 ], [ -153.008525, 57.339733 ], [ -153.056007, 57.329229 ], [ -153.079288, 57.321960 ], [ -153.099040, 57.310513 ], [ -153.116280, 57.297312 ], [ -153.101322, 57.286901 ], [ -153.096133, 57.286866 ], [ -153.039134, 57.293314 ], [ -153.017643, 57.297715 ], [ -153.015994, 57.300231 ], [ -153.012992, 57.299453 ], [ -152.970910, 57.282624 ], [ -152.944201, 57.259083 ], [ -152.943463, 57.256956 ], [ -152.950982, 57.248991 ], [ -152.997739, 57.231176 ], [ -153.056971, 57.214756 ], [ -153.077916, 57.211444 ], [ -153.125477, 57.211841 ], [ -153.163333, 57.216713 ], [ -153.169724, 57.220236 ], [ -153.201722, 57.221679 ], [ -153.209732, 57.218773 ], [ -153.215107, 57.213356 ], [ -153.215967, 57.209297 ], [ -153.213802, 57.205059 ], [ -153.166002, 57.180643 ], [ -153.123865, 57.175445 ], [ -153.097019, 57.183289 ], [ -153.073982, 57.187091 ], [ -152.949333, 57.187346 ], [ -152.880321, 57.164798 ], [ -152.874839, 57.160950 ], [ -152.869797, 57.150849 ], [ -152.900540, 57.132076 ], [ -152.911371, 57.126813 ], [ -152.950736, 57.119788 ], [ -152.997246, 57.119491 ], [ -153.118673, 57.091033 ], [ -153.128881, 57.092571 ], [ -153.132708, 57.094936 ], [ -153.133988, 57.099351 ], [ -153.146361, 57.100883 ], [ -153.180010, 57.094523 ], [ -153.215440, 57.075943 ], [ -153.220953, 57.068239 ], [ -153.222240, 57.061798 ], [ -153.221204, 57.060367 ], [ -153.213318, 57.055891 ], [ -153.205384, 57.056148 ], [ -153.200217, 57.042039 ], [ -153.204319, 57.033640 ], [ -153.235282, 57.007398 ], [ -153.301142, 56.991192 ], [ -153.312583, 56.991486 ], [ -153.348707, 57.008373 ], [ -153.349037, 57.011196 ], [ -153.320929, 57.036838 ], [ -153.324265, 57.043308 ], [ -153.365239, 57.072080 ], [ -153.396921, 57.060399 ], [ -153.402608, 57.070092 ], [ -153.404263, 57.080511 ], [ -153.384699, 57.115354 ], [ -153.380389, 57.120468 ], [ -153.345533, 57.139565 ], [ -153.328206, 57.141993 ], [ -153.284012, 57.173867 ], [ -153.282735, 57.175815 ], [ -153.286351, 57.184288 ], [ -153.310143, 57.194426 ], [ -153.350266, 57.192339 ], [ -153.368180, 57.185337 ], [ -153.368921, 57.180832 ], [ -153.366525, 57.176708 ], [ -153.486520, 57.085915 ], [ -153.489600, 57.074702 ], [ -153.498850, 57.065363 ], [ -153.535942, 57.077988 ], [ -153.563562, 57.089769 ], [ -153.577006, 57.093177 ], [ -153.654497, 57.084602 ], [ -153.675981, 57.069830 ], [ -153.675736, 57.054778 ], [ -153.663810, 57.053694 ], [ -153.601294, 57.056656 ], [ -153.595819, 57.056309 ], [ -153.580831, 57.049048 ], [ -153.543429, 56.995245 ], [ -153.556762, 56.968862 ], [ -153.600664, 56.942629 ], [ -153.627483, 56.937127 ], [ -153.671317, 56.932926 ], [ -153.701197, 56.926394 ], [ -153.730713, 56.893996 ], [ -153.715263, 56.878442 ], [ -153.704603, 56.878046 ], [ -153.695896, 56.881009 ], [ -153.688713, 56.871975 ], [ -153.696693, 56.861519 ], [ -153.714644, 56.852925 ], [ -153.778199, 56.834386 ], [ -153.796111, 56.842655 ], [ -153.800935, 56.846894 ], [ -153.807353, 56.848584 ], [ -153.817978, 56.848651 ], [ -153.849289, 56.838915 ], [ -153.854196, 56.836412 ], [ -153.903580, 56.793418 ], [ -153.924041, 56.767216 ], [ -153.963274, 56.747600 ], [ -153.971780, 56.744861 ], [ -153.990158, 56.743263 ], [ -154.016213, 56.743466 ], [ -154.022610, 56.755946 ], [ -154.037153, 56.763414 ], [ -154.050518, 56.763523 ], [ -154.064292, 56.760091 ], [ -154.085088, 56.751193 ], [ -154.106565, 56.745572 ], [ -154.129017, 56.742168 ], [ -154.136965, 56.742359 ], [ -154.148745, 56.745677 ], [ -154.125431, 56.783298 ], [ -154.072878, 56.841099 ], [ -154.067425, 56.845303 ], [ -154.055228, 56.850465 ], [ -154.040948, 56.854135 ], [ -154.030502, 56.855052 ], [ -153.984547, 56.889626 ], [ -153.935992, 56.915772 ], [ -153.894564, 56.926986 ], [ -153.862954, 56.944374 ], [ -153.850464, 56.957278 ], [ -153.873411, 56.963403 ], [ -153.902802, 56.968445 ], [ -153.913627, 56.965391 ], [ -153.917703, 56.962169 ], [ -153.934781, 56.958928 ], [ -153.976871, 56.955144 ], [ -153.979743, 56.962189 ], [ -153.976869, 56.996831 ], [ -153.932221, 57.062970 ], [ -153.887461, 57.086958 ], [ -153.875356, 57.089802 ], [ -153.858891, 57.088844 ], [ -153.804787, 57.113158 ], [ -153.783465, 57.131822 ], [ -153.776707, 57.142858 ], [ -153.779087, 57.158821 ], [ -153.788521, 57.161381 ], [ -153.806290, 57.157424 ], [ -153.822875, 57.142372 ], [ -153.823978, 57.139790 ], [ -153.861711, 57.119224 ], [ -153.982792, 57.066277 ], [ -153.993807, 57.050502 ], [ -154.024288, 57.016608 ], [ -154.055554, 56.987209 ], [ -154.076623, 56.970589 ], [ -154.123489, 56.956170 ], [ -154.145167, 56.945034 ], [ -154.159014, 56.945323 ], [ -154.165409, 56.943244 ], [ -154.212110, 56.909749 ], [ -154.223560, 56.896064 ], [ -154.227193, 56.883026 ], [ -154.226494, 56.876257 ], [ -154.231771, 56.872294 ], [ -154.276739, 56.853648 ], [ -154.298965, 56.846479 ], [ -154.305713, 56.846871 ], [ -154.300193, 56.852023 ], [ -154.298422, 56.863176 ], [ -154.300002, 56.892252 ], [ -154.306936, 56.911783 ], [ -154.312888, 56.918673 ], [ -154.385285, 56.959767 ], [ -154.407490, 56.968334 ], [ -154.476315, 56.984204 ], [ -154.511672, 56.988548 ], [ -154.524695, 56.991623 ], [ -154.528538, 57.001892 ], [ -154.516842, 57.030312 ], [ -154.515213, 57.077985 ], [ -154.529844, 57.168882 ], [ -154.533699, 57.183513 ], [ -154.539552, 57.196351 ], [ -154.574343, 57.239919 ], [ -154.594977, 57.257161 ], [ -154.613723, 57.267800 ], [ -154.691855, 57.284110 ], [ -154.698264, 57.284294 ], [ -154.740161, 57.276517 ], [ -154.777368, 57.280008 ], [ -154.792054, 57.286696 ], [ -154.793840, 57.288862 ], [ -154.751537, 57.307781 ], [ -154.743090, 57.314770 ], [ -154.700598, 57.401162 ], [ -154.699629, 57.412873 ], [ -154.702588, 57.420528 ], [ -154.693310, 57.446085 ], [ -154.629678, 57.510197 ], [ -154.618704, 57.514972 ], [ -154.602546, 57.518751 ], [ -154.591678, 57.518597 ], [ -154.540923, 57.539621 ], [ -154.522060, 57.577786 ], [ -154.511233, 57.578646 ], [ -154.500282, 57.574423 ], [ -154.468328, 57.570339 ], [ -154.431841, 57.584783 ], [ -154.411385, 57.598452 ], [ -154.344244, 57.630901 ], [ -154.225660, 57.661366 ], [ -154.196959, 57.664639 ], [ -154.186597, 57.658578 ], [ -154.086130, 57.649054 ], [ -154.056226, 57.652430 ], [ -154.031592, 57.660854 ], [ -153.994572, 57.656905 ], [ -153.983015, 57.649835 ], [ -153.982581, 57.648251 ], [ -153.984847, 57.604595 ], [ -153.982199, 57.553156 ], [ -153.971114, 57.539436 ], [ -153.947550, 57.540244 ], [ -153.939099, 57.538271 ], [ -153.929265, 57.533253 ], [ -153.925905, 57.529051 ], [ -153.922982, 57.520153 ], [ -153.922183, 57.499036 ], [ -153.919897, 57.485202 ], [ -153.909415, 57.442413 ], [ -153.895800, 57.422108 ], [ -153.802932, 57.350896 ], [ -153.795299, 57.349047 ], [ -153.774275, 57.360243 ], [ -153.773191, 57.372442 ], [ -153.811506, 57.412375 ], [ -153.872922, 57.445743 ], [ -153.874177, 57.447817 ], [ -153.888891, 57.504682 ], [ -153.875950, 57.542769 ], [ -153.869096, 57.551844 ], [ -153.848082, 57.560589 ], [ -153.824823, 57.577617 ], [ -153.813136, 57.588581 ], [ -153.823753, 57.597651 ], [ -153.846828, 57.612648 ], [ -153.852502, 57.613517 ], [ -153.877756, 57.629529 ], [ -153.879943, 57.634072 ], [ -153.874286, 57.646110 ], [ -153.868275, 57.649688 ], [ -153.858545, 57.651138 ], [ -153.749178, 57.646224 ], [ -153.705322, 57.640923 ], [ -153.667261, 57.639008 ], [ -153.663007, 57.639858 ], [ -153.648693, 57.654125 ], [ -153.658008, 57.661480 ], [ -153.676721, 57.669663 ], [ -153.797971, 57.696508 ], [ -153.862886, 57.706943 ], [ -153.888099, 57.705447 ], [ -153.918344, 57.695663 ], [ -153.930279, 57.696791 ], [ -153.932964, 57.703778 ], [ -153.935220, 57.813047 ], [ -153.823385, 57.865013 ], [ -153.755054, 57.883565 ], [ -153.721176, 57.890615 ], [ -153.648798, 57.880103 ], [ -153.571362, 57.832101 ], [ -153.550823, 57.786890 ], [ -153.551088, 57.763110 ], [ -153.553251, 57.759512 ], [ -153.557647, 57.734741 ], [ -153.554226, 57.722450 ], [ -153.549605, 57.717967 ], [ -153.515205, 57.716505 ], [ -153.493401, 57.728316 ], [ -153.469892, 57.766536 ], [ -153.462463, 57.795292 ], [ -153.480377, 57.814665 ], [ -153.487350, 57.834274 ], [ -153.479457, 57.842020 ], [ -153.451560, 57.839284 ], [ -153.406716, 57.828663 ], [ -153.353580, 57.809731 ], [ -153.343408, 57.810866 ], [ -153.324872, 57.831048 ], [ -153.322687, 57.836190 ], [ -153.324881, 57.848421 ], [ -153.328137, 57.849851 ], [ -153.395813, 57.858772 ], [ -153.446406, 57.875035 ], [ -153.462011, 57.880588 ], [ -153.512024, 57.909156 ], [ -153.528697, 57.921717 ], [ -153.536524, 57.930770 ], [ -153.533204, 57.941117 ], [ -153.520392, 57.963387 ], [ -153.513347, 57.968751 ], [ -153.484603, 57.976500 ], [ -153.469421, 57.977282 ], [ -153.461113, 57.972769 ], [ -153.452645, 57.963509 ], [ -153.273676, 57.890408 ], [ -153.268149, 57.888741 ], [ -153.236952, 57.891818 ], [ -153.127278, 57.856748 ], [ -153.122513, 57.856639 ], [ -153.093420, 57.861569 ], [ -153.089419, 57.865233 ], [ -153.198618, 57.929923 ], [ -153.233229, 57.940993 ], [ -153.270325, 57.958566 ], [ -153.299009, 57.985626 ], [ -153.302198, 57.991706 ], [ -153.297756, 57.996425 ], [ -153.276536, 57.998447 ], [ -153.234730, 57.996972 ], [ -153.221576, 57.989319 ], [ -153.217306, 57.983659 ], [ -153.129494, 57.946551 ], [ -153.069857, 57.934428 ], [ -153.052671, 57.936711 ], [ -153.050941, 57.939998 ], [ -153.024425, 57.956954 ], [ -152.876197, 57.932446 ], [ -152.871663, 57.933279 ], [ -152.856284, 57.947385 ], [ -152.852785, 57.974583 ], [ -152.855096, 57.994501 ], [ -152.840896, 57.996759 ], [ -152.723425, 57.991720 ], [ -152.722524, 57.987364 ], [ -152.739766, 57.944798 ], [ -152.751978, 57.933466 ], [ -152.804807, 57.899175 ], [ -152.823299, 57.890928 ], [ -152.892517, 57.842525 ], [ -152.902633, 57.830146 ], [ -152.909791, 57.810405 ], [ -152.916334, 57.771216 ], [ -152.904312, 57.750825 ], [ -152.892875, 57.742012 ], [ -152.881998, 57.738320 ], [ -152.874498, 57.737961 ], [ -152.850336, 57.740041 ], [ -152.847811, 57.746625 ], [ -152.852269, 57.752318 ], [ -152.854718, 57.770271 ], [ -152.849997, 57.821462 ], [ -152.841361, 57.830221 ], [ -152.822543, 57.843203 ], [ -152.790211, 57.858058 ], [ -152.758168, 57.840272 ], [ -152.753437, 57.834452 ], [ -152.725302, 57.835400 ], [ -152.650456, 57.863721 ], [ -152.625607, 57.881232 ], [ -152.626441, 57.890450 ], [ -152.639887, 57.899688 ], [ -152.641805, 57.902499 ], [ -152.639375, 57.914220 ], [ -152.635378, 57.918610 ], [ -152.587705, 57.926961 ], [ -152.585985, 57.908101 ], [ -152.567395, 57.900358 ], [ -152.549661, 57.900137 ], [ -152.526283, 57.913266 ], [ -152.487666, 57.941968 ], [ -152.470336, 57.962099 ], [ -152.432608, 57.976029 ], [ -152.421408, 57.975683 ], [ -152.415177, 57.973081 ], [ -152.411618, 57.969282 ], [ -152.422573, 57.948662 ], [ -152.437604, 57.939834 ], [ -152.437416, 57.936978 ], [ -152.426458, 57.930851 ], [ -152.388626, 57.924486 ], [ -152.362161, 57.926200 ], [ -152.324103, 57.916604 ], [ -152.333209, 57.902550 ], [ -152.364777, 57.883921 ], [ -152.377063, 57.886728 ], [ -152.386130, 57.890706 ], [ -152.394750, 57.894602 ], [ -152.403700, 57.901146 ], [ -152.414977, 57.902231 ], [ -152.448240, 57.902605 ], [ -152.468511, 57.888621 ], [ -152.433653, 57.824314 ], [ -152.429326, 57.820114 ], [ -152.417424, 57.815464 ] ] ], [ [ [ -152.242890, 58.241192 ], [ -152.280629, 58.242344 ], [ -152.311415, 58.221115 ], [ -152.265111, 58.135732 ], [ -152.273605, 58.125630 ], [ -152.343522, 58.119174 ], [ -152.401892, 58.120755 ], [ -152.425391, 58.127614 ], [ -152.482674, 58.129813 ], [ -152.514794, 58.114321 ], [ -152.529036, 58.093779 ], [ -152.530388, 58.087766 ], [ -152.541533, 58.083666 ], [ -152.554461, 58.084620 ], [ -152.557237, 58.086462 ], [ -152.569595, 58.114800 ], [ -152.557497, 58.160683 ], [ -152.559884, 58.170941 ], [ -152.562829, 58.177979 ], [ -152.584222, 58.187477 ], [ -152.597506, 58.179686 ], [ -152.615103, 58.116224 ], [ -152.631214, 58.081924 ], [ -152.656801, 58.061049 ], [ -152.706831, 58.050577 ], [ -152.771303, 58.046883 ], [ -152.777906, 58.050364 ], [ -152.779473, 58.065269 ], [ -152.792041, 58.072665 ], [ -152.809062, 58.078917 ], [ -152.882423, 58.096074 ], [ -152.958680, 58.116441 ], [ -152.973149, 58.125427 ], [ -152.983857, 58.134358 ], [ -152.997340, 58.134341 ], [ -153.075746, 58.099571 ], [ -153.076485, 58.096077 ], [ -153.057201, 58.073576 ], [ -153.036131, 58.055619 ], [ -153.020589, 58.045202 ], [ -152.964700, 58.034650 ], [ -152.876788, 58.002307 ], [ -152.871836, 57.999275 ], [ -152.871416, 57.997157 ], [ -152.947547, 57.983519 ], [ -152.982406, 57.984697 ], [ -153.097462, 58.004516 ], [ -153.202525, 58.030122 ], [ -153.209885, 58.034925 ], [ -153.214568, 58.042418 ], [ -153.218115, 58.043909 ], [ -153.289701, 58.050330 ], [ -153.344807, 58.040619 ], [ -153.365574, 58.039052 ], [ -153.419783, 58.059638 ], [ -153.418343, 58.064053 ], [ -153.412933, 58.069811 ], [ -153.316127, 58.140390 ], [ -153.281874, 58.147555 ], [ -153.274215, 58.148102 ], [ -153.262643, 58.145099 ], [ -153.227567, 58.123364 ], [ -153.199117, 58.102005 ], [ -153.168617, 58.088385 ], [ -153.156402, 58.090087 ], [ -153.148740, 58.106121 ], [ -153.167605, 58.127818 ], [ -153.209672, 58.150350 ], [ -153.223709, 58.162120 ], [ -153.202801, 58.208080 ], [ -153.170101, 58.216704 ], [ -153.073927, 58.195107 ], [ -153.060846, 58.194502 ], [ -153.036662, 58.199235 ], [ -153.000579, 58.211768 ], [ -152.998094, 58.214122 ], [ -153.006979, 58.221847 ], [ -153.061678, 58.235649 ], [ -153.082507, 58.244495 ], [ -153.101841, 58.257938 ], [ -153.102410, 58.260344 ], [ -153.099284, 58.264065 ], [ -153.044316, 58.306336 ], [ -153.004390, 58.300135 ], [ -152.993217, 58.296254 ], [ -152.982356, 58.287495 ], [ -152.941270, 58.279614 ], [ -152.888204, 58.283100 ], [ -152.878858, 58.288533 ], [ -152.869811, 58.304906 ], [ -152.884023, 58.307087 ], [ -152.912450, 58.307191 ], [ -152.921122, 58.313268 ], [ -152.936757, 58.330513 ], [ -152.936440, 58.334923 ], [ -152.925586, 58.339686 ], [ -152.895407, 58.345305 ], [ -152.870555, 58.335743 ], [ -152.821964, 58.328501 ], [ -152.804789, 58.339510 ], [ -152.774048, 58.366826 ], [ -152.787420, 58.369015 ], [ -152.839234, 58.372477 ], [ -152.883107, 58.400443 ], [ -152.888860, 58.409384 ], [ -152.886358, 58.410585 ], [ -152.864939, 58.404340 ], [ -152.844173, 58.402842 ], [ -152.812207, 58.403464 ], [ -152.787776, 58.411313 ], [ -152.774509, 58.419721 ], [ -152.771106, 58.429515 ], [ -152.733845, 58.460662 ], [ -152.723169, 58.462080 ], [ -152.689940, 58.459861 ], [ -152.610955, 58.475775 ], [ -152.601666, 58.490423 ], [ -152.600534, 58.494946 ], [ -152.609030, 58.496167 ], [ -152.619197, 58.493674 ], [ -152.622794, 58.494189 ], [ -152.653673, 58.506572 ], [ -152.666220, 58.544087 ], [ -152.665999, 58.564493 ], [ -152.638569, 58.587448 ], [ -152.616130, 58.601852 ], [ -152.567710, 58.621304 ], [ -152.560171, 58.619680 ], [ -152.550418, 58.610996 ], [ -152.549635, 58.601024 ], [ -152.545009, 58.594253 ], [ -152.502820, 58.593451 ], [ -152.453817, 58.618515 ], [ -152.354709, 58.638280 ], [ -152.337964, 58.637404 ], [ -152.329835, 58.632102 ], [ -152.337212, 58.589095 ], [ -152.372317, 58.531175 ], [ -152.387610, 58.522870 ], [ -152.418267, 58.515244 ], [ -152.467197, 58.476609 ], [ -152.498571, 58.449538 ], [ -152.505516, 58.441876 ], [ -152.512483, 58.427349 ], [ -152.493991, 58.354684 ], [ -152.476814, 58.350955 ], [ -152.387343, 58.359499 ], [ -152.364682, 58.364613 ], [ -152.344860, 58.391630 ], [ -152.348389, 58.401502 ], [ -152.355073, 58.413052 ], [ -152.358724, 58.415585 ], [ -152.356090, 58.423470 ], [ -152.328063, 58.434372 ], [ -152.320554, 58.433829 ], [ -152.301713, 58.428697 ], [ -152.279508, 58.415872 ], [ -152.227835, 58.376424 ], [ -152.234718, 58.362024 ], [ -152.224965, 58.357372 ], [ -152.200953, 58.355332 ], [ -152.129257, 58.396414 ], [ -152.125339, 58.396396 ], [ -152.090437, 58.372628 ], [ -152.089250, 58.367644 ], [ -152.119530, 58.329770 ], [ -152.138294, 58.295712 ], [ -152.147142, 58.266992 ], [ -152.146519, 58.249120 ], [ -152.116569, 58.248537 ], [ -152.107962, 58.260525 ], [ -152.107635, 58.280240 ], [ -152.082342, 58.309945 ], [ -151.986171, 58.350413 ], [ -151.981781, 58.347971 ], [ -151.966218, 58.332737 ], [ -151.963817, 58.328999 ], [ -151.964103, 58.269049 ], [ -151.972053, 58.230702 ], [ -151.986127, 58.213774 ], [ -152.081083, 58.154275 ], [ -152.112205, 58.148559 ], [ -152.194827, 58.174128 ], [ -152.223175, 58.194794 ], [ -152.224439, 58.202365 ], [ -152.219826, 58.206289 ], [ -152.207488, 58.206284 ], [ -152.203699, 58.212055 ], [ -152.233830, 58.243329 ], [ -152.242890, 58.241192 ] ] ], [ [ [ -132.977163, 56.439673 ], [ -132.957364, 56.448963 ], [ -132.927663, 56.456859 ], [ -132.896342, 56.457978 ], [ -132.871919, 56.457038 ], [ -132.843184, 56.444827 ], [ -132.819256, 56.439511 ], [ -132.808145, 56.440801 ], [ -132.791872, 56.449169 ], [ -132.782864, 56.451530 ], [ -132.734466, 56.458515 ], [ -132.716056, 56.454861 ], [ -132.668127, 56.440279 ], [ -132.634335, 56.422174 ], [ -132.628592, 56.416284 ], [ -132.620608, 56.391200 ], [ -132.652380, 56.375879 ], [ -132.662178, 56.369134 ], [ -132.679401, 56.354299 ], [ -132.684112, 56.345671 ], [ -132.676553, 56.333105 ], [ -132.662478, 56.320451 ], [ -132.655467, 56.303756 ], [ -132.655513, 56.295575 ], [ -132.662081, 56.274795 ], [ -132.721254, 56.258464 ], [ -132.776045, 56.254585 ], [ -132.843716, 56.238933 ], [ -132.877582, 56.240322 ], [ -133.010587, 56.309492 ], [ -133.045383, 56.320783 ], [ -133.067556, 56.333573 ], [ -133.070863, 56.354194 ], [ -133.069441, 56.356426 ], [ -133.060361, 56.358378 ], [ -133.045714, 56.371451 ], [ -133.006575, 56.415881 ], [ -133.006314, 56.417778 ], [ -133.010871, 56.421404 ], [ -133.010817, 56.424264 ], [ -133.002357, 56.430655 ], [ -132.977163, 56.439673 ] ] ], [ [ [ -135.447381, 58.399891 ], [ -135.461296, 58.399884 ], [ -135.466083, 58.394328 ], [ -135.512402, 58.385759 ], [ -135.521358, 58.391449 ], [ -135.556066, 58.407740 ], [ -135.622105, 58.428186 ], [ -135.630425, 58.428580 ], [ -135.728054, 58.397067 ], [ -135.826079, 58.390246 ], [ -135.907310, 58.380839 ], [ -135.917917, 58.381237 ], [ -135.921134, 58.385772 ], [ -135.920299, 58.389084 ], [ -135.897255, 58.416132 ], [ -135.897169, 58.450001 ], [ -135.916112, 58.463858 ], [ -135.923268, 58.462919 ], [ -135.934547, 58.451953 ], [ -135.939926, 58.451600 ], [ -135.987564, 58.464420 ], [ -135.997418, 58.470375 ], [ -135.999530, 58.480281 ], [ -135.990948, 58.487315 ], [ -135.968087, 58.494669 ], [ -135.955625, 58.492765 ], [ -135.945121, 58.494836 ], [ -135.906941, 58.505810 ], [ -135.893152, 58.513929 ], [ -135.895088, 58.534077 ], [ -135.914003, 58.540583 ], [ -135.928572, 58.572925 ], [ -135.912187, 58.618800 ], [ -136.012226, 58.712247 ], [ -136.015761, 58.722600 ], [ -136.008929, 58.731910 ], [ -136.011669, 58.743276 ], [ -136.046172, 58.781796 ], [ -136.082937, 58.808383 ], [ -136.089603, 58.815729 ], [ -136.077276, 58.824983 ], [ -136.045279, 58.836074 ], [ -136.050351, 58.913433 ], [ -136.060728, 58.927580 ], [ -136.120307, 58.968418 ], [ -136.145306, 58.976705 ], [ -136.162725, 58.977261 ], [ -136.163648, 58.973204 ], [ -136.160293, 58.961999 ], [ -136.150300, 58.947111 ], [ -136.124491, 58.924542 ], [ -136.106997, 58.864441 ], [ -136.150772, 58.757266 ], [ -136.161943, 58.752171 ], [ -136.213660, 58.751153 ], [ -136.247343, 58.752935 ], [ -136.397322, 58.813019 ], [ -136.431055, 58.818416 ], [ -136.474735, 58.830788 ], [ -136.493716, 58.838963 ], [ -136.528161, 58.928484 ], [ -136.526520, 58.954523 ], [ -136.544899, 58.967314 ], [ -136.559836, 58.963414 ], [ -136.572163, 58.957292 ], [ -136.575516, 58.946600 ], [ -136.575541, 58.928941 ], [ -136.586289, 58.909364 ], [ -136.630497, 58.890256 ], [ -136.670412, 58.893224 ], [ -136.676898, 58.894973 ], [ -136.694600, 58.904081 ], [ -136.704848, 58.914395 ], [ -136.724994, 58.923514 ], [ -136.750422, 58.930439 ], [ -136.782908, 58.936659 ], [ -136.788710, 58.936318 ], [ -136.802832, 58.923118 ], [ -136.840986, 58.919742 ], [ -136.860014, 58.931997 ], [ -136.857823, 58.942868 ], [ -136.877826, 58.962392 ], [ -136.918530, 58.947217 ], [ -136.915995, 58.938384 ], [ -136.932352, 58.916252 ], [ -136.934841, 58.916345 ], [ -136.933458, 58.908558 ], [ -136.928643, 58.900131 ], [ -136.868184, 58.885243 ], [ -136.767930, 58.870608 ], [ -136.744507, 58.876626 ], [ -136.676388, 58.856348 ], [ -136.612807, 58.846227 ], [ -136.583430, 58.838826 ], [ -136.538029, 58.819777 ], [ -136.463258, 58.781607 ], [ -136.356786, 58.692581 ], [ -136.354222, 58.684304 ], [ -136.372775, 58.667410 ], [ -136.396076, 58.654421 ], [ -136.409876, 58.649250 ], [ -136.422309, 58.647412 ], [ -136.449827, 58.637816 ], [ -136.482395, 58.616739 ], [ -136.459436, 58.607880 ], [ -136.383327, 58.629987 ], [ -136.342827, 58.645030 ], [ -136.331366, 58.663545 ], [ -136.317193, 58.671231 ], [ -136.246368, 58.663185 ], [ -136.232481, 58.677144 ], [ -136.223308, 58.675028 ], [ -136.213659, 58.665054 ], [ -136.194207, 58.581731 ], [ -136.181596, 58.535019 ], [ -136.170498, 58.527323 ], [ -136.100303, 58.500673 ], [ -136.103925, 58.478001 ], [ -136.083551, 58.447115 ], [ -136.062165, 58.435795 ], [ -136.053028, 58.417375 ], [ -136.041818, 58.380161 ], [ -136.092646, 58.348990 ], [ -136.111930, 58.342530 ], [ -136.265906, 58.314499 ], [ -136.276769, 58.313894 ], [ -136.288255, 58.316144 ], [ -136.296281, 58.318447 ], [ -136.304158, 58.323450 ], [ -136.305121, 58.328691 ], [ -136.303092, 58.336277 ], [ -136.298718, 58.342941 ], [ -136.290055, 58.351447 ], [ -136.281631, 58.353090 ], [ -136.273929, 58.363409 ], [ -136.282604, 58.367261 ], [ -136.288867, 58.369649 ], [ -136.336728, 58.377570 ], [ -136.382035, 58.362694 ], [ -136.365148, 58.346663 ], [ -136.360416, 58.344077 ], [ -136.357115, 58.328838 ], [ -136.370979, 58.301643 ], [ -136.376464, 58.298625 ], [ -136.389964, 58.297070 ], [ -136.472020, 58.306356 ], [ -136.532824, 58.334072 ], [ -136.550003, 58.340371 ], [ -136.593029, 58.349793 ], [ -136.613500, 58.347889 ], [ -136.630425, 58.340607 ], [ -136.638634, 58.328458 ], [ -136.626345, 58.320590 ], [ -136.576799, 58.277951 ], [ -136.569831, 58.268700 ], [ -136.567956, 58.245153 ], [ -136.591924, 58.217886 ], [ -136.597198, 58.215006 ], [ -136.619824, 58.209899 ], [ -136.658638, 58.207323 ], [ -136.701250, 58.219416 ], [ -136.723391, 58.244926 ], [ -136.730885, 58.256496 ], [ -136.717093, 58.273508 ], [ -136.730218, 58.286153 ], [ -136.762198, 58.286765 ], [ -136.784326, 58.290497 ], [ -136.857605, 58.316360 ], [ -136.848992, 58.328994 ], [ -136.946663, 58.393185 ], [ -136.986384, 58.404043 ], [ -137.009415, 58.408877 ], [ -137.018409, 58.409141 ], [ -137.078109, 58.397474 ], [ -137.111802, 58.392594 ], [ -137.134453, 58.406596 ], [ -137.180029, 58.429939 ], [ -137.239366, 58.453159 ], [ -137.252710, 58.456338 ], [ -137.278612, 58.459484 ], [ -137.295788, 58.466179 ], [ -137.408758, 58.515822 ], [ -137.497002, 58.557721 ], [ -137.568216, 58.587989 ], [ -137.608804, 58.601234 ], [ -137.632889, 58.599982 ], [ -137.671690, 58.615523 ], [ -137.680811, 58.621835 ], [ -137.676857, 58.646770 ], [ -137.683516, 58.660267 ], [ -137.687627, 58.664989 ], [ -137.795037, 58.724855 ], [ -137.875350, 58.757232 ], [ -137.901675, 58.765316 ], [ -137.928156, 58.780533 ], [ -137.941828, 58.794322 ], [ -137.944259, 58.802349 ], [ -137.944957, 58.804652 ], [ -137.939353, 58.813721 ], [ -137.931565, 58.819787 ], [ -137.927624, 58.827187 ], [ -137.924608, 58.843928 ], [ -137.932593, 58.868494 ], [ -137.951995, 58.886029 ], [ -137.985198, 58.909525 ], [ -138.066332, 58.957126 ], [ -138.136246, 58.989026 ], [ -138.131000, 59.002613 ], [ -138.117551, 59.012494 ], [ -138.118853, 59.021307 ], [ -138.144594, 59.028072 ], [ -138.250531, 59.047031 ], [ -138.636702, 59.130585 ], [ -138.705900, 59.162549 ], [ -138.763467, 59.191320 ], [ -138.847498, 59.224835 ], [ -138.919749, 59.248531 ], [ -139.044593, 59.280341 ], [ -139.271031, 59.337421 ], [ -139.343049, 59.356608 ], [ -139.420168, 59.379760 ], [ -139.541156, 59.423071 ], [ -139.595186, 59.445413 ], [ -139.746478, 59.503415 ], [ -139.855565, 59.536660 ], [ -139.862547, 59.544258 ], [ -139.861306, 59.546678 ], [ -139.847236, 59.557304 ], [ -139.837817, 59.561984 ], [ -139.807161, 59.554333 ], [ -139.785068, 59.564043 ], [ -139.768672, 59.597610 ], [ -139.737189, 59.632629 ], [ -139.732271, 59.636860 ], [ -139.718958, 59.641156 ], [ -139.708090, 59.642657 ], [ -139.667235, 59.638803 ], [ -139.655218, 59.633497 ], [ -139.656432, 59.621210 ], [ -139.671436, 59.615682 ], [ -139.676310, 59.611249 ], [ -139.672408, 59.602894 ], [ -139.654579, 59.598015 ], [ -139.623125, 59.595909 ], [ -139.614513, 59.597135 ], [ -139.587135, 59.605959 ], [ -139.581447, 59.609171 ], [ -139.582528, 59.613542 ], [ -139.589369, 59.618674 ], [ -139.593488, 59.624317 ], [ -139.585789, 59.642765 ], [ -139.518180, 59.687814 ], [ -139.524011, 59.712510 ], [ -139.552648, 59.706835 ], [ -139.579024, 59.712198 ], [ -139.587176, 59.715650 ], [ -139.593360, 59.721503 ], [ -139.591988, 59.725026 ], [ -139.581578, 59.735063 ], [ -139.576389, 59.738179 ], [ -139.559376, 59.742699 ], [ -139.546110, 59.752667 ], [ -139.562049, 59.774887 ], [ -139.577410, 59.789332 ], [ -139.590430, 59.810232 ], [ -139.617214, 59.863576 ], [ -139.624665, 59.884388 ], [ -139.621313, 59.906725 ], [ -139.616912, 59.911999 ], [ -139.610762, 59.913759 ], [ -139.597232, 59.913652 ], [ -139.577232, 59.918265 ], [ -139.535902, 59.935248 ], [ -139.527455, 59.940047 ], [ -139.488702, 59.995034 ], [ -139.486032, 60.012407 ], [ -139.505389, 60.039428 ], [ -139.555157, 60.039243 ], [ -139.576819, 60.015425 ], [ -139.601852, 59.959866 ], [ -139.605790, 59.955600 ], [ -139.657451, 59.944727 ], [ -139.682456, 59.943984 ], [ -139.693423, 59.940730 ], [ -139.705328, 59.934826 ], [ -139.769537, 59.878108 ], [ -139.768612, 59.851160 ], [ -139.775517, 59.845210 ], [ -139.801197, 59.832586 ], [ -139.811185, 59.829332 ], [ -139.909851, 59.806070 ], [ -140.102591, 59.754910 ], [ -140.141090, 59.747979 ], [ -140.164657, 59.741878 ], [ -140.178132, 59.735628 ], [ -140.188610, 59.725248 ], [ -140.210907, 59.715535 ], [ -140.256351, 59.703052 ], [ -140.272266, 59.700609 ], [ -140.285557, 59.698717 ], [ -140.314400, 59.698302 ], [ -140.385022, 59.699480 ], [ -140.601672, 59.712953 ], [ -140.636639, 59.711409 ], [ -140.721980, 59.718563 ], [ -140.883583, 59.737613 ], [ -140.927220, 59.745709 ], [ -141.013338, 59.773338 ], [ -141.156497, 59.813582 ], [ -141.216148, 59.827285 ], [ -141.423923, 59.867361 ], [ -141.442023, 59.873324 ], [ -141.450506, 59.890419 ], [ -141.467528, 59.971272 ], [ -141.530295, 59.977655 ], [ -141.631361, 59.962762 ], [ -141.709054, 59.948938 ], [ -141.869766, 59.998834 ], [ -141.912218, 60.009779 ], [ -141.966178, 60.019129 ], [ -141.998818, 60.022606 ], [ -142.062454, 60.023781 ], [ -142.100059, 60.026772 ], [ -142.130040, 60.030327 ], [ -142.245180, 60.049778 ], [ -142.537534, 60.083953 ], [ -142.589676, 60.088182 ], [ -142.698419, 60.093333 ], [ -142.809852, 60.095217 ], [ -142.875248, 60.092428 ], [ -142.908859, 60.090328 ], [ -143.068700, 60.068603 ], [ -143.135616, 60.062082 ], [ -143.194276, 60.061995 ], [ -143.413377, 60.051924 ], [ -143.624152, 60.037257 ], [ -143.698990, 60.027761 ], [ -143.885474, 59.996787 ], [ -143.891429, 59.995798 ], [ -143.931211, 59.998343 ], [ -143.978568, 60.006347 ], [ -143.989235, 60.008830 ], [ -143.988639, 60.013993 ], [ -143.991356, 60.017725 ], [ -144.001244, 60.020906 ], [ -144.013823, 60.024398 ], [ -144.043536, 60.025174 ], [ -144.055365, 60.037003 ], [ -144.052424, 60.047001 ], [ -144.033324, 60.059533 ], [ -144.140503, 60.114400 ], [ -144.204654, 60.137301 ], [ -144.229803, 60.142788 ], [ -144.253878, 60.165894 ], [ -144.253979, 60.182934 ], [ -144.318856, 60.189295 ], [ -144.358774, 60.188132 ], [ -144.369311, 60.185659 ], [ -144.379225, 60.169090 ], [ -144.441936, 60.163069 ], [ -144.453957, 60.166004 ], [ -144.478160, 60.181595 ], [ -144.501059, 60.189815 ], [ -144.534892, 60.189420 ], [ -144.545101, 60.186999 ], [ -144.553786, 60.181914 ], [ -144.555093, 60.178485 ], [ -144.558163, 60.177797 ], [ -144.596256, 60.181666 ], [ -144.654899, 60.204882 ], [ -144.666556, 60.222572 ], [ -144.662685, 60.229296 ], [ -144.662364, 60.239480 ], [ -144.666134, 60.243885 ], [ -144.715474, 60.271215 ], [ -144.753450, 60.283515 ], [ -144.782521, 60.291972 ], [ -144.892815, 60.292821 ], [ -144.914016, 60.280934 ], [ -144.942134, 60.289728 ], [ -144.912707, 60.363178 ], [ -144.871428, 60.407269 ], [ -144.855457, 60.416886 ], [ -144.834059, 60.443751 ], [ -144.848662, 60.455192 ], [ -144.874451, 60.457304 ], [ -144.887342, 60.456048 ], [ -144.903296, 60.442581 ], [ -144.964135, 60.444466 ], [ -144.983585, 60.446902 ], [ -145.012409, 60.447920 ], [ -145.125550, 60.429389 ], [ -145.152365, 60.421558 ], [ -145.181041, 60.407531 ], [ -145.191183, 60.395239 ], [ -145.202891, 60.374915 ], [ -145.169934, 60.329987 ], [ -145.112199, 60.296200 ], [ -145.122441, 60.289876 ], [ -145.222896, 60.297911 ], [ -145.364296, 60.335961 ], [ -145.503315, 60.387954 ], [ -145.510457, 60.408988 ], [ -145.503930, 60.410607 ], [ -145.501549, 60.416799 ], [ -145.502351, 60.420811 ], [ -145.536942, 60.430533 ], [ -145.561523, 60.443124 ], [ -145.594158, 60.451830 ], [ -145.668841, 60.465431 ], [ -145.735938, 60.474660 ], [ -145.799318, 60.462031 ], [ -145.853469, 60.445630 ], [ -145.882293, 60.444633 ], [ -145.946900, 60.455395 ], [ -145.957404, 60.461101 ], [ -145.961060, 60.465017 ], [ -145.960508, 60.467510 ], [ -145.914403, 60.492350 ], [ -145.863092, 60.501821 ], [ -145.802387, 60.520173 ], [ -145.712891, 60.583249 ], [ -145.736494, 60.595210 ], [ -145.764045, 60.591588 ], [ -145.780628, 60.579182 ], [ -145.798819, 60.561918 ], [ -145.820659, 60.550051 ], [ -145.828622, 60.549746 ], [ -145.964543, 60.513557 ], [ -146.039209, 60.492968 ], [ -146.074409, 60.480085 ], [ -146.109713, 60.470345 ], [ -146.216786, 60.450228 ], [ -146.247144, 60.451188 ], [ -146.312552, 60.457438 ], [ -146.317354, 60.460608 ], [ -146.351292, 60.454293 ], [ -146.355334, 60.449349 ], [ -146.356252, 60.425527 ], [ -146.350104, 60.407780 ], [ -146.330118, 60.407098 ], [ -146.308784, 60.414246 ], [ -146.284201, 60.417656 ], [ -146.133957, 60.431523 ], [ -146.127029, 60.430815 ], [ -146.123595, 60.428031 ], [ -146.126199, 60.424290 ], [ -146.094249, 60.410296 ], [ -146.133058, 60.383774 ], [ -146.198680, 60.359928 ], [ -146.268052, 60.347958 ], [ -146.302167, 60.349234 ], [ -146.392859, 60.327476 ], [ -146.458322, 60.307250 ], [ -146.490407, 60.294939 ], [ -146.539897, 60.270968 ], [ -146.607295, 60.241182 ], [ -146.627980, 60.239633 ], [ -146.641030, 60.240897 ], [ -146.650455, 60.242982 ], [ -146.689126, 60.271279 ], [ -146.693637, 60.279608 ], [ -146.693149, 60.284593 ], [ -146.681470, 60.292247 ], [ -146.649855, 60.305063 ], [ -146.594979, 60.321203 ], [ -146.571617, 60.321755 ], [ -146.540306, 60.338811 ], [ -146.524194, 60.350667 ], [ -146.542704, 60.357974 ], [ -146.575438, 60.357272 ], [ -146.607038, 60.351673 ], [ -146.624217, 60.341407 ], [ -146.655894, 60.340462 ], [ -146.717151, 60.349598 ], [ -146.725114, 60.359939 ], [ -146.723671, 60.387606 ], [ -146.721082, 60.396416 ], [ -146.637386, 60.467178 ], [ -146.610443, 60.485613 ], [ -146.590633, 60.491039 ], [ -146.528853, 60.492135 ], [ -146.523866, 60.487332 ], [ -146.505445, 60.476961 ], [ -146.455047, 60.465318 ], [ -146.368003, 60.480671 ], [ -146.316364, 60.497499 ], [ -146.289686, 60.515692 ], [ -146.155893, 60.526296 ], [ -146.079963, 60.543056 ], [ -145.951340, 60.576779 ], [ -145.886523, 60.585713 ], [ -145.872572, 60.584836 ], [ -145.844229, 60.586509 ], [ -145.800411, 60.593996 ], [ -145.794744, 60.601121 ], [ -145.795287, 60.603151 ], [ -145.815708, 60.612217 ], [ -145.832320, 60.614851 ], [ -145.856046, 60.610936 ], [ -145.888350, 60.610304 ], [ -145.896266, 60.611789 ], [ -145.897785, 60.613653 ], [ -145.896160, 60.628684 ], [ -145.895243, 60.629213 ], [ -145.897145, 60.651214 ], [ -145.883904, 60.658185 ], [ -145.867770, 60.666784 ], [ -145.841345, 60.685893 ], [ -145.841418, 60.689787 ], [ -145.844540, 60.690169 ], [ -145.851783, 60.689858 ], [ -145.858160, 60.688484 ], [ -145.875820, 60.683453 ], [ -145.894257, 60.674164 ], [ -145.899208, 60.671118 ], [ -145.922006, 60.651954 ], [ -145.924923, 60.648898 ], [ -145.936921, 60.632053 ], [ -145.937067, 60.630490 ], [ -145.965559, 60.622748 ], [ -146.002533, 60.615082 ], [ -146.004621, 60.616231 ], [ -146.005755, 60.616854 ], [ -146.007675, 60.619742 ], [ -146.007747, 60.625326 ], [ -145.999198, 60.640832 ], [ -145.968734, 60.668235 ], [ -145.937031, 60.682822 ], [ -145.931436, 60.685478 ], [ -145.911538, 60.696647 ], [ -145.899162, 60.705642 ], [ -145.901279, 60.715373 ], [ -145.905477, 60.715045 ], [ -145.978105, 60.684712 ], [ -146.016402, 60.667222 ], [ -146.025020, 60.665311 ], [ -146.055670, 60.658685 ], [ -146.086293, 60.652030 ], [ -146.116912, 60.643327 ], [ -146.130941, 60.639181 ], [ -146.143249, 60.633869 ], [ -146.147236, 60.631407 ], [ -146.187676, 60.624521 ], [ -146.253074, 60.622315 ], [ -146.258380, 60.626288 ], [ -146.263142, 60.631932 ], [ -146.268684, 60.641240 ], [ -146.270257, 60.644928 ], [ -146.270250, 60.648035 ], [ -146.262982, 60.651569 ], [ -146.188159, 60.687333 ], [ -146.178676, 60.691483 ], [ -146.140640, 60.707652 ], [ -146.124073, 60.712417 ], [ -146.101061, 60.719277 ], [ -146.043736, 60.743636 ], [ -146.045326, 60.754040 ], [ -146.048704, 60.763770 ], [ -146.064557, 60.776944 ], [ -146.067221, 60.773918 ], [ -146.070967, 60.770956 ], [ -146.085107, 60.761063 ], [ -146.089780, 60.758156 ], [ -146.120390, 60.741981 ], [ -146.160220, 60.726383 ], [ -146.168059, 60.725350 ], [ -146.191156, 60.731990 ], [ -146.199026, 60.734359 ], [ -146.201912, 60.735912 ], [ -146.200100, 60.743081 ], [ -146.208740, 60.744390 ], [ -146.216811, 60.741700 ], [ -146.228250, 60.735643 ], [ -146.230706, 60.722008 ], [ -146.239512, 60.716889 ], [ -146.257663, 60.713068 ], [ -146.303398, 60.713214 ], [ -146.313858, 60.717926 ], [ -146.317300, 60.721124 ], [ -146.317949, 60.723817 ], [ -146.312283, 60.734401 ], [ -146.346573, 60.735747 ], [ -146.386892, 60.714598 ], [ -146.402873, 60.693084 ], [ -146.412520, 60.690450 ], [ -146.474142, 60.681539 ], [ -146.499849, 60.680134 ], [ -146.517848, 60.688102 ], [ -146.532396, 60.689748 ], [ -146.578813, 60.690212 ], [ -146.607153, 60.686377 ], [ -146.623266, 60.680420 ], [ -146.649059, 60.683438 ], [ -146.667754, 60.692761 ], [ -146.699219, 60.732176 ], [ -146.703597, 60.741903 ], [ -146.605008, 60.758608 ], [ -146.566731, 60.751198 ], [ -146.500678, 60.772113 ], [ -146.464824, 60.770722 ], [ -146.358618, 60.786193 ], [ -146.304445, 60.798038 ], [ -146.255415, 60.809962 ], [ -146.183158, 60.846969 ], [ -146.171897, 60.862823 ], [ -146.173131, 60.866071 ], [ -146.188185, 60.869374 ], [ -146.262572, 60.867787 ], [ -146.268659, 60.863842 ], [ -146.290202, 60.842694 ], [ -146.313757, 60.827833 ], [ -146.333424, 60.821921 ], [ -146.394369, 60.812271 ], [ -146.550577, 60.809402 ], [ -146.555964, 60.810066 ], [ -146.620419, 60.869019 ], [ -146.664368, 60.870854 ], [ -146.700741, 60.848345 ], [ -146.718132, 60.835667 ], [ -146.719532, 60.830166 ], [ -146.714748, 60.820385 ], [ -146.719790, 60.814475 ], [ -146.724844, 60.812120 ], [ -146.754847, 60.807882 ], [ -146.800612, 60.805160 ], [ -146.819018, 60.816346 ], [ -146.819008, 60.841568 ], [ -146.816305, 60.855628 ], [ -146.787431, 60.865597 ], [ -146.774155, 60.876225 ], [ -146.757004, 60.878454 ], [ -146.727226, 60.866270 ], [ -146.697690, 60.872534 ], [ -146.711287, 60.896465 ], [ -146.736025, 60.910301 ], [ -146.746758, 60.935454 ], [ -146.745543, 60.957582 ], [ -146.701356, 60.987009 ], [ -146.653430, 61.047752 ], [ -146.661518, 61.060776 ], [ -146.690552, 61.064076 ], [ -146.783730, 61.042936 ], [ -146.848112, 61.000587 ], [ -146.862709, 60.982523 ], [ -146.861961, 60.976177 ], [ -146.868826, 60.971448 ], [ -146.879853, 60.965161 ], [ -146.929789, 60.944263 ], [ -146.973072, 60.934835 ], [ -147.038952, 60.942079 ], [ -147.055754, 60.945468 ], [ -147.070552, 60.963312 ], [ -147.063230, 60.974057 ], [ -147.047088, 60.991209 ], [ -147.062671, 61.004336 ], [ -147.094863, 61.010189 ], [ -147.112607, 61.002974 ], [ -147.136884, 60.980968 ], [ -147.144639, 60.963492 ], [ -147.135571, 60.946248 ], [ -147.143314, 60.939831 ], [ -147.171624, 60.932877 ], [ -147.181257, 60.933099 ], [ -147.204930, 60.942660 ], [ -147.215273, 60.948077 ], [ -147.220809, 60.953121 ], [ -147.226487, 60.962160 ], [ -147.219575, 60.969505 ], [ -147.220325, 60.981702 ], [ -147.221616, 60.983541 ], [ -147.252984, 60.979621 ], [ -147.273646, 60.974595 ], [ -147.278004, 60.961063 ], [ -147.280437, 60.916963 ], [ -147.378086, 60.877845 ], [ -147.451569, 60.894219 ], [ -147.452904, 60.897366 ], [ -147.451699, 60.925880 ], [ -147.453406, 60.941468 ], [ -147.473090, 60.957552 ], [ -147.491546, 60.957998 ], [ -147.507268, 60.927235 ], [ -147.506010, 60.921170 ], [ -147.502365, 60.920429 ], [ -147.493812, 60.912379 ], [ -147.517424, 60.894819 ], [ -147.525056, 60.896057 ], [ -147.543002, 60.903331 ], [ -147.549756, 60.908009 ], [ -147.536798, 61.019346 ], [ -147.534034, 61.031090 ], [ -147.515782, 61.061408 ], [ -147.502323, 61.072056 ], [ -147.513776, 61.096127 ], [ -147.525097, 61.101176 ], [ -147.558201, 61.099797 ], [ -147.554439, 61.091719 ], [ -147.557226, 61.081402 ], [ -147.591260, 61.016591 ], [ -147.618800, 60.970040 ], [ -147.613846, 60.951496 ], [ -147.597749, 60.913905 ], [ -147.587309, 60.874463 ], [ -147.602405, 60.849978 ], [ -147.626585, 60.845065 ], [ -147.668593, 60.841563 ], [ -147.671928, 60.845283 ], [ -147.677292, 60.869960 ], [ -147.662960, 60.874951 ], [ -147.665855, 60.883774 ], [ -147.730391, 60.911256 ], [ -147.760843, 60.913227 ], [ -147.787115, 60.873511 ], [ -147.779717, 60.863435 ], [ -147.766961, 60.853544 ], [ -147.750212, 60.852141 ], [ -147.732124, 60.824711 ], [ -147.729421, 60.818252 ], [ -147.733252, 60.816975 ], [ -147.743256, 60.813887 ], [ -147.777157, 60.811018 ], [ -147.828765, 60.815947 ], [ -147.855920, 60.820882 ], [ -147.913399, 60.825152 ], [ -147.915116, 60.818955 ], [ -147.920445, 60.812442 ], [ -148.033953, 60.783198 ], [ -148.098148, 60.786556 ], [ -148.133987, 60.791268 ], [ -148.144355, 60.797089 ], [ -148.151597, 60.818122 ], [ -148.148298, 60.828701 ], [ -148.101841, 60.899347 ], [ -148.085220, 60.918613 ], [ -148.065132, 60.937963 ], [ -148.017276, 60.971807 ], [ -147.950619, 61.029211 ], [ -147.947785, 61.040625 ], [ -147.961969, 61.059537 ], [ -147.973392, 61.067391 ], [ -147.982673, 61.070246 ], [ -147.991241, 61.069533 ], [ -148.001637, 61.060103 ], [ -148.003216, 61.053797 ], [ -148.065505, 61.003979 ], [ -148.090090, 61.005110 ], [ -148.095004, 61.011384 ], [ -148.105388, 61.035123 ], [ -148.125128, 61.070698 ], [ -148.149024, 61.076672 ], [ -148.165969, 61.069277 ], [ -148.164452, 61.042665 ], [ -148.177649, 60.999608 ], [ -148.198970, 60.971584 ], [ -148.218954, 60.953573 ], [ -148.241664, 60.937738 ], [ -148.265584, 60.936331 ], [ -148.281248, 60.917792 ], [ -148.294475, 60.862751 ], [ -148.309710, 60.837737 ], [ -148.340711, 60.809072 ], [ -148.350460, 60.803991 ], [ -148.375416, 60.803470 ], [ -148.389517, 60.805622 ], [ -148.396614, 60.813694 ], [ -148.426555, 60.827113 ], [ -148.446278, 60.808705 ], [ -148.450122, 60.796405 ], [ -148.450890, 60.789487 ], [ -148.441666, 60.777956 ], [ -148.431078, 60.771842 ], [ -148.405576, 60.780301 ], [ -148.395962, 60.779701 ], [ -148.381999, 60.775768 ], [ -148.366407, 60.765833 ], [ -148.365314, 60.740969 ], [ -148.384094, 60.687754 ], [ -148.374018, 60.672640 ], [ -148.347881, 60.680327 ], [ -148.326357, 60.709539 ], [ -148.280136, 60.753337 ], [ -148.269523, 60.757389 ], [ -148.229756, 60.764140 ], [ -148.147662, 60.758536 ], [ -148.120366, 60.748952 ], [ -148.106987, 60.739770 ], [ -148.091315, 60.676249 ], [ -148.093732, 60.661533 ], [ -148.142596, 60.622632 ], [ -148.229961, 60.595062 ], [ -148.237828, 60.600206 ], [ -148.254852, 60.595124 ], [ -148.292837, 60.565496 ], [ -148.306123, 60.550702 ], [ -148.328167, 60.531913 ], [ -148.333245, 60.530464 ], [ -148.345627, 60.502973 ], [ -148.346378, 60.488730 ], [ -148.328987, 60.476182 ], [ -148.293534, 60.483001 ], [ -148.255425, 60.493410 ], [ -148.247867, 60.500504 ], [ -148.250132, 60.507573 ], [ -148.238554, 60.521443 ], [ -148.192033, 60.557371 ], [ -148.114766, 60.596029 ], [ -148.102747, 60.598026 ], [ -148.086378, 60.595518 ], [ -147.979019, 60.519146 ], [ -147.963617, 60.502750 ], [ -147.971198, 60.486479 ], [ -147.977250, 60.480937 ], [ -147.941709, 60.444029 ], [ -147.992939, 60.352596 ], [ -148.025597, 60.279029 ], [ -148.064494, 60.276233 ], [ -148.115864, 60.279522 ], [ -148.150132, 60.296210 ], [ -148.153122, 60.303062 ], [ -148.153624, 60.311600 ], [ -148.150109, 60.320739 ], [ -148.150231, 60.324182 ], [ -148.170881, 60.335266 ], [ -148.192669, 60.339103 ], [ -148.216921, 60.331594 ], [ -148.215848, 60.318269 ], [ -148.211194, 60.306961 ], [ -148.215152, 60.301014 ], [ -148.284807, 60.270971 ], [ -148.312625, 60.263084 ], [ -148.325572, 60.261824 ], [ -148.362100, 60.221849 ], [ -148.339155, 60.213350 ], [ -148.332652, 60.214000 ], [ -148.321208, 60.218469 ], [ -148.275752, 60.249270 ], [ -148.216863, 60.260006 ], [ -148.208328, 60.259342 ], [ -148.192000, 60.252500 ], [ -148.188298, 60.248574 ], [ -148.192569, 60.241826 ], [ -148.200779, 60.236711 ], [ -148.228931, 60.235911 ], [ -148.234227, 60.223689 ], [ -148.190530, 60.206957 ], [ -148.165099, 60.206173 ], [ -148.158947, 60.211675 ], [ -148.153775, 60.226236 ], [ -148.153037, 60.235528 ], [ -148.139869, 60.241081 ], [ -148.090238, 60.215863 ], [ -148.117300, 60.191335 ], [ -148.133624, 60.188390 ], [ -148.134990, 60.184596 ], [ -148.130641, 60.169789 ], [ -148.126291, 60.167063 ], [ -148.090876, 60.168649 ], [ -148.080188, 60.171568 ], [ -148.079884, 60.184234 ], [ -148.085791, 60.190041 ], [ -148.082874, 60.192357 ], [ -148.061865, 60.200094 ], [ -148.051918, 60.202062 ], [ -148.003433, 60.176167 ], [ -148.006656, 60.168461 ], [ -148.018404, 60.157419 ], [ -148.028870, 60.150518 ], [ -148.032495, 60.148423 ], [ -148.064401, 60.148508 ], [ -148.097230, 60.120120 ], [ -148.121797, 60.073548 ], [ -148.095719, 60.065935 ], [ -148.079466, 60.073251 ], [ -148.053431, 60.090762 ], [ -148.040178, 60.112361 ], [ -148.012270, 60.124734 ], [ -147.961701, 60.140900 ], [ -147.912824, 60.132576 ], [ -147.892320, 60.119515 ], [ -147.887734, 60.109683 ], [ -147.892576, 60.101161 ], [ -147.973112, 60.064636 ], [ -147.998659, 60.062305 ], [ -148.013551, 60.038159 ], [ -148.023817, 60.007108 ], [ -148.016035, 59.999344 ], [ -147.986164, 59.999344 ], [ -147.924401, 60.036230 ], [ -147.892229, 60.063265 ], [ -147.879679, 60.069593 ], [ -147.860607, 60.076356 ], [ -147.848072, 60.078962 ], [ -147.822043, 60.066955 ], [ -147.816451, 60.061824 ], [ -147.815238, 60.058562 ], [ -147.823738, 60.045035 ], [ -147.863929, 60.006619 ], [ -147.917538, 59.985997 ], [ -148.005827, 59.961542 ], [ -148.031770, 59.955862 ], [ -148.036776, 59.956664 ], [ -148.050706, 59.968908 ], [ -148.050143, 59.976767 ], [ -148.056373, 59.990423 ], [ -148.069919, 59.989098 ], [ -148.085820, 59.977512 ], [ -148.104818, 59.969237 ], [ -148.135095, 59.959055 ], [ -148.153742, 59.954643 ], [ -148.224838, 59.950195 ], [ -148.251099, 59.952416 ], [ -148.252869, 59.955614 ], [ -148.213497, 59.994643 ], [ -148.193842, 59.998979 ], [ -148.179545, 59.996653 ], [ -148.147614, 59.994952 ], [ -148.132300, 59.997697 ], [ -148.128693, 60.003442 ], [ -148.138918, 60.012416 ], [ -148.175808, 60.026337 ], [ -148.212668, 60.018101 ], [ -148.273844, 60.013318 ], [ -148.317941, 60.028731 ], [ -148.305725, 60.054468 ], [ -148.290367, 60.059995 ], [ -148.292816, 60.151289 ], [ -148.305868, 60.161607 ], [ -148.316849, 60.165437 ], [ -148.346535, 60.162108 ], [ -148.358188, 60.156510 ], [ -148.369109, 60.120922 ], [ -148.382325, 60.063299 ], [ -148.401204, 59.997600 ], [ -148.429106, 59.969158 ], [ -148.445588, 59.963755 ], [ -148.470205, 59.973708 ], [ -148.480171, 59.979653 ], [ -148.482505, 59.983308 ], [ -148.476974, 59.989515 ], [ -148.480436, 59.999394 ], [ -148.508825, 60.002875 ], [ -148.544134, 60.002809 ], [ -148.556294, 59.984931 ], [ -148.555253, 59.980657 ], [ -148.599121, 59.950889 ], [ -148.635842, 59.939661 ], [ -148.673822, 59.944828 ], [ -148.676172, 59.947216 ], [ -148.675485, 59.952070 ], [ -148.664283, 59.965128 ], [ -148.661876, 59.967436 ], [ -148.660830, 59.969735 ], [ -148.662712, 59.971825 ], [ -148.668146, 59.973497 ], [ -148.674841, 59.972699 ], [ -148.688758, 59.968006 ], [ -148.715511, 59.962120 ], [ -148.725872, 59.963727 ], [ -148.727688, 59.965050 ], [ -148.729731, 59.972376 ], [ -148.737453, 59.980879 ], [ -148.743229, 59.985389 ], [ -148.749742, 59.988497 ], [ -148.755366, 59.989237 ], [ -148.759807, 59.988941 ], [ -148.763803, 59.987905 ], [ -148.766911, 59.986869 ], [ -148.769871, 59.983464 ], [ -148.797927, 59.977400 ], [ -148.801223, 59.975844 ], [ -148.810654, 59.963105 ], [ -148.838304, 59.949900 ], [ -148.872181, 59.950321 ], [ -148.884265, 59.955388 ], [ -148.888537, 59.966362 ], [ -148.901981, 59.973319 ], [ -148.913089, 59.983207 ], [ -148.914569, 59.986891 ], [ -148.912676, 59.992894 ], [ -148.917819, 59.995595 ], [ -148.938327, 59.999074 ], [ -148.957554, 59.998371 ], [ -148.977589, 59.989881 ], [ -148.990301, 59.981013 ], [ -149.016790, 59.976134 ], [ -149.028418, 59.978821 ], [ -149.029394, 59.984098 ], [ -149.027274, 59.991698 ], [ -149.031273, 59.998492 ], [ -149.043265, 59.999115 ], [ -149.067833, 59.982177 ], [ -149.095070, 59.983019 ], [ -149.100687, 59.985727 ], [ -149.101785, 59.990943 ], [ -149.102321, 59.993149 ], [ -149.101717, 59.994155 ], [ -149.098699, 59.996167 ], [ -149.095278, 59.997374 ], [ -149.090072, 59.999445 ], [ -149.089077, 60.004504 ], [ -149.072716, 60.019653 ], [ -149.041599, 60.030726 ], [ -149.037439, 60.040530 ], [ -149.040358, 60.048744 ], [ -149.049290, 60.058700 ], [ -149.058700, 60.061419 ], [ -149.096621, 60.044631 ], [ -149.133115, 60.044918 ], [ -149.204853, 60.009212 ], [ -149.223781, 59.982763 ], [ -149.235390, 59.938792 ], [ -149.287588, 59.906506 ], [ -149.327029, 59.987029 ], [ -149.325822, 60.001033 ], [ -149.341584, 60.076762 ], [ -149.360414, 60.101665 ], [ -149.393171, 60.099845 ], [ -149.416829, 60.088926 ], [ -149.416829, 59.997934 ], [ -149.427748, 59.996114 ], [ -149.435027, 59.990655 ], [ -149.462855, 59.950151 ], [ -149.475659, 59.952698 ], [ -149.507429, 59.964519 ], [ -149.549677, 59.919681 ], [ -149.584254, 59.866905 ], [ -149.542398, 59.823229 ], [ -149.511461, 59.806851 ], [ -149.527839, 59.750436 ], [ -149.598813, 59.755895 ], [ -149.640669, 59.799571 ], [ -149.666147, 59.850527 ], [ -149.706184, 59.910582 ], [ -149.753500, 59.861446 ], [ -149.738941, 59.732237 ], [ -149.751680, 59.717678 ], [ -149.759110, 59.697825 ], [ -149.778024, 59.685930 ], [ -149.798304, 59.677545 ], [ -149.842672, 59.701300 ], [ -149.839032, 59.752255 ], [ -149.889988, 59.785013 ], [ -149.977340, 59.801391 ], [ -150.028296, 59.788652 ], [ -150.042854, 59.772274 ], [ -150.015557, 59.754075 ], [ -149.979160, 59.744976 ], [ -149.948223, 59.717678 ], [ -149.962781, 59.697660 ], [ -150.002818, 59.683101 ], [ -150.022836, 59.655804 ], [ -150.031935, 59.613947 ], [ -150.068332, 59.637605 ], [ -150.095630, 59.648524 ], [ -150.108369, 59.603028 ], [ -150.168424, 59.561172 ], [ -150.223019, 59.539334 ], [ -150.253956, 59.521136 ], [ -150.310371, 59.508397 ], [ -150.343128, 59.512036 ], [ -150.334029, 59.541154 ], [ -150.315831, 59.562992 ], [ -150.317651, 59.599389 ], [ -150.347696, 59.600928 ], [ -150.355493, 59.598412 ], [ -150.412448, 59.554628 ], [ -150.431518, 59.514287 ], [ -150.478742, 59.458498 ], [ -150.498900, 59.456298 ], [ -150.516317, 59.462326 ], [ -150.521537, 59.467924 ], [ -150.521626, 59.474672 ], [ -150.518382, 59.477136 ], [ -150.515867, 59.482167 ], [ -150.516286, 59.486778 ], [ -150.522994, 59.494744 ], [ -150.536119, 59.498457 ], [ -150.543537, 59.510256 ], [ -150.550245, 59.527026 ], [ -150.549825, 59.538764 ], [ -150.533056, 59.563080 ], [ -150.537248, 59.581108 ], [ -150.541860, 59.586977 ], [ -150.547729, 59.590331 ], [ -150.556114, 59.590331 ], [ -150.575818, 59.579431 ], [ -150.589315, 59.565154 ], [ -150.594543, 59.553167 ], [ -150.602230, 59.545891 ], [ -150.614808, 59.545472 ], [ -150.631158, 59.549245 ], [ -150.639543, 59.547149 ], [ -150.638704, 59.532056 ], [ -150.631577, 59.521575 ], [ -150.615152, 59.510199 ], [ -150.595056, 59.499777 ], [ -150.589645, 59.500083 ], [ -150.584636, 59.494510 ], [ -150.579595, 59.479540 ], [ -150.579869, 59.475709 ], [ -150.584342, 59.467715 ], [ -150.585567, 59.450057 ], [ -150.581182, 59.445233 ], [ -150.601162, 59.425657 ], [ -150.650046, 59.420885 ], [ -150.651586, 59.421751 ], [ -150.654010, 59.445458 ], [ -150.656329, 59.454437 ], [ -150.667211, 59.457900 ], [ -150.683235, 59.458541 ], [ -150.716564, 59.450849 ], [ -150.729062, 59.442197 ], [ -150.739958, 59.425211 ], [ -150.745004, 59.400729 ], [ -150.769853, 59.372966 ], [ -150.795470, 59.362845 ], [ -150.819565, 59.357276 ], [ -150.834627, 59.351980 ], [ -150.877447, 59.318120 ], [ -150.911598, 59.311614 ], [ -150.912817, 59.305214 ], [ -150.895552, 59.286227 ], [ -150.887825, 59.273526 ], [ -150.887821, 59.267920 ], [ -150.897808, 59.255648 ], [ -150.942212, 59.233136 ], [ -150.959531, 59.232537 ], [ -150.975164, 59.236141 ], [ -150.988397, 59.230549 ], [ -150.995406, 59.224149 ], [ -151.001196, 59.224149 ], [ -151.006682, 59.233292 ], [ -151.008815, 59.245787 ], [ -151.007292, 59.251577 ], [ -150.996808, 59.257739 ], [ -150.999063, 59.271082 ], [ -151.023097, 59.269045 ], [ -151.032430, 59.275762 ], [ -151.044411, 59.293611 ], [ -151.046100, 59.299359 ], [ -151.057756, 59.301721 ], [ -151.070305, 59.287852 ], [ -151.068166, 59.284102 ], [ -151.071902, 59.281058 ], [ -151.087319, 59.268790 ], [ -151.091532, 59.269187 ], [ -151.105635, 59.263143 ], [ -151.101102, 59.240605 ], [ -151.102395, 59.228713 ], [ -151.107558, 59.217792 ], [ -151.126247, 59.209923 ], [ -151.163408, 59.202636 ], [ -151.186254, 59.202813 ], [ -151.190948, 59.206632 ], [ -151.192634, 59.211208 ], [ -151.206053, 59.219319 ], [ -151.223629, 59.224347 ], [ -151.261636, 59.220304 ], [ -151.273779, 59.229663 ], [ -151.280544, 59.230476 ], [ -151.284880, 59.227586 ], [ -151.287063, 59.224789 ], [ -151.287771, 59.219417 ], [ -151.292812, 59.214273 ], [ -151.305724, 59.209544 ], [ -151.341601, 59.222231 ], [ -151.379612, 59.242024 ], [ -151.387261, 59.250450 ], [ -151.390544, 59.264917 ], [ -151.399549, 59.276005 ], [ -151.407203, 59.279349 ], [ -151.429415, 59.268552 ], [ -151.437695, 59.253989 ], [ -151.449207, 59.248457 ], [ -151.488612, 59.237714 ], [ -151.509551, 59.234395 ], [ -151.518488, 59.230309 ], [ -151.525127, 59.224947 ], [ -151.520245, 59.216930 ], [ -151.504699, 59.212690 ], [ -151.499592, 59.207839 ], [ -151.497805, 59.204264 ], [ -151.498826, 59.200178 ], [ -151.502657, 59.195071 ], [ -151.521455, 59.195483 ], [ -151.558151, 59.200085 ], [ -151.574664, 59.195327 ], [ -151.579261, 59.187666 ], [ -151.576452, 59.172601 ], [ -151.580351, 59.165233 ], [ -151.590729, 59.161725 ], [ -151.698875, 59.163081 ], [ -151.710625, 59.158097 ], [ -151.720931, 59.156078 ], [ -151.739068, 59.156005 ], [ -151.748451, 59.158601 ], [ -151.764908, 59.175510 ], [ -151.761451, 59.205235 ], [ -151.758530, 59.215743 ], [ -151.761301, 59.221327 ], [ -151.838335, 59.209135 ], [ -151.874356, 59.211931 ], [ -151.915684, 59.227522 ], [ -151.917248, 59.231254 ], [ -151.910958, 59.236707 ], [ -151.906191, 59.237963 ], [ -151.905106, 59.247075 ], [ -151.925051, 59.254428 ], [ -151.952723, 59.250447 ], [ -151.959279, 59.247625 ], [ -151.978748, 59.253779 ], [ -151.991618, 59.313617 ], [ -151.963130, 59.344958 ], [ -151.952705, 59.349413 ], [ -151.924018, 59.354417 ], [ -151.903021, 59.360454 ], [ -151.890738, 59.373156 ], [ -151.887102, 59.382532 ], [ -151.908015, 59.395274 ], [ -151.905153, 59.401035 ], [ -151.886513, 59.421033 ], [ -151.826047, 59.439049 ], [ -151.770875, 59.447917 ], [ -151.751420, 59.446554 ], [ -151.740538, 59.438432 ], [ -151.728486, 59.439679 ], [ -151.720421, 59.443117 ], [ -151.706462, 59.462811 ], [ -151.694726, 59.468370 ], [ -151.634472, 59.482443 ], [ -151.570032, 59.468945 ], [ -151.542349, 59.467061 ], [ -151.528493, 59.472338 ], [ -151.505890, 59.477048 ], [ -151.485624, 59.475459 ], [ -151.470992, 59.472250 ], [ -151.466272, 59.484050 ], [ -151.469630, 59.502811 ], [ -151.436359, 59.530329 ], [ -151.420966, 59.537728 ], [ -151.365776, 59.541255 ], [ -151.323670, 59.550943 ], [ -151.272459, 59.555823 ], [ -151.266733, 59.562632 ], [ -151.264811, 59.568598 ], [ -151.271737, 59.576468 ], [ -151.278905, 59.589029 ], [ -151.278827, 59.592980 ], [ -151.274795, 59.596986 ], [ -151.201678, 59.591503 ], [ -151.203835, 59.577961 ], [ -151.209130, 59.573623 ], [ -151.208364, 59.562061 ], [ -151.192803, 59.562432 ], [ -151.164259, 59.587013 ], [ -151.158254, 59.594141 ], [ -151.165427, 59.601329 ], [ -151.188032, 59.608687 ], [ -151.205459, 59.630284 ], [ -151.207639, 59.640670 ], [ -151.203186, 59.645989 ], [ -151.173984, 59.651793 ], [ -151.126122, 59.668336 ], [ -151.121362, 59.674735 ], [ -151.122791, 59.677782 ], [ -151.116490, 59.696132 ], [ -151.098253, 59.709442 ], [ -151.018888, 59.756593 ], [ -150.927312, 59.793431 ], [ -150.948132, 59.792194 ], [ -150.982996, 59.783543 ], [ -151.001663, 59.788391 ], [ -151.006717, 59.792986 ], [ -151.027756, 59.796196 ], [ -151.063758, 59.793146 ], [ -151.113845, 59.777231 ], [ -151.172439, 59.751346 ], [ -151.214539, 59.729847 ], [ -151.329812, 59.683644 ], [ -151.377054, 59.681313 ], [ -151.424840, 59.670521 ], [ -151.436610, 59.666360 ], [ -151.439187, 59.663247 ], [ -151.441127, 59.653543 ], [ -151.448669, 59.648171 ], [ -151.461253, 59.643039 ], [ -151.503822, 59.633662 ], [ -151.643061, 59.646966 ], [ -151.686486, 59.660864 ], [ -151.746815, 59.686234 ], [ -151.796300, 59.704156 ], [ -151.829137, 59.720151 ], [ -151.850272, 59.739035 ], [ -151.859327, 59.749567 ], [ -151.869468, 59.769159 ], [ -151.867713, 59.778411 ], [ -151.857339, 59.791145 ], [ -151.833340, 59.814129 ], [ -151.813619, 59.844297 ], [ -151.803059, 59.878533 ], [ -151.792594, 59.888810 ], [ -151.777855, 59.897493 ], [ -151.757693, 59.917637 ], [ -151.742742, 59.944626 ], [ -151.718010, 60.009473 ], [ -151.702898, 60.032253 ], [ -151.661437, 60.057139 ], [ -151.623799, 60.088033 ], [ -151.606881, 60.099558 ], [ -151.545579, 60.128394 ], [ -151.517887, 60.145008 ], [ -151.488721, 60.167616 ], [ -151.421702, 60.212931 ], [ -151.406607, 60.228183 ], [ -151.387919, 60.267066 ], [ -151.381959, 60.296951 ], [ -151.383231, 60.326348 ], [ -151.381604, 60.358728 ], [ -151.377281, 60.365522 ], [ -151.366874, 60.372655 ], [ -151.306090, 60.387257 ], [ -151.301868, 60.384712 ], [ -151.299782, 60.385481 ], [ -151.293074, 60.416163 ], [ -151.286819, 60.434648 ], [ -151.283967, 60.452196 ], [ -151.280992, 60.512627 ], [ -151.278810, 60.520107 ], [ -151.264461, 60.543263 ], [ -151.268373, 60.548977 ], [ -151.303125, 60.561326 ], [ -151.323951, 60.574135 ], [ -151.330409, 60.580539 ], [ -151.339069, 60.594244 ], [ -151.344477, 60.613458 ], [ -151.345508, 60.622954 ], [ -151.350154, 60.634660 ], [ -151.362397, 60.653526 ], [ -151.387839, 60.674501 ], [ -151.404451, 60.695004 ], [ -151.410273, 60.711023 ], [ -151.409270, 60.720558 ], [ -151.384800, 60.729946 ], [ -151.370515, 60.733572 ], [ -151.309230, 60.740724 ], [ -151.279635, 60.747676 ], [ -151.270505, 60.751286 ], [ -151.261383, 60.757768 ], [ -151.259343, 60.762896 ], [ -151.261319, 60.769801 ], [ -151.252902, 60.773993 ], [ -151.212186, 60.780342 ], [ -151.106079, 60.783749 ], [ -151.062558, 60.787429 ], [ -151.037007, 60.793649 ], [ -151.025634, 60.797497 ], [ -151.024799, 60.801787 ], [ -151.012016, 60.809340 ], [ -150.895508, 60.853166 ], [ -150.886964, 60.858187 ], [ -150.883774, 60.861865 ], [ -150.845731, 60.877893 ], [ -150.808418, 60.891336 ], [ -150.770594, 60.911362 ], [ -150.705812, 60.937792 ], [ -150.678438, 60.958267 ], [ -150.603069, 60.974434 ], [ -150.582471, 60.982095 ], [ -150.515058, 60.999443 ], [ -150.511099, 61.005145 ], [ -150.501923, 61.007957 ], [ -150.454661, 61.016566 ], [ -150.431873, 61.023939 ], [ -150.401859, 61.036227 ], [ -150.377171, 61.039144 ], [ -150.353702, 61.031822 ], [ -150.341709, 61.024201 ], [ -150.310334, 60.989547 ], [ -150.286369, 60.966696 ], [ -150.262096, 60.947839 ], [ -150.244072, 60.938585 ], [ -150.217179, 60.930001 ], [ -150.187657, 60.924796 ], [ -150.085166, 60.914020 ], [ -150.070289, 60.913679 ], [ -150.045570, 60.910004 ], [ -150.049148, 60.915816 ], [ -150.047088, 60.918924 ], [ -150.039866, 60.920777 ], [ -149.952655, 60.930393 ], [ -149.912166, 60.937843 ], [ -149.875188, 60.960244 ], [ -149.853693, 60.967395 ], [ -149.835580, 60.968855 ], [ -149.816817, 60.966947 ], [ -149.770264, 60.967607 ], [ -149.764966, 60.963412 ], [ -149.753082, 60.962059 ], [ -149.735376, 60.987813 ], [ -149.736395, 60.994692 ], [ -149.739692, 61.016961 ], [ -149.751943, 61.024072 ], [ -149.784393, 61.038147 ], [ -149.785126, 61.040798 ], [ -149.805816, 61.058641 ], [ -149.831922, 61.076197 ], [ -149.857168, 61.079020 ], [ -149.915666, 61.101428 ], [ -149.960100, 61.115346 ], [ -150.039304, 61.144291 ], [ -150.065646, 61.151079 ], [ -150.075451, 61.156269 ], [ -150.068004, 61.166132 ], [ -150.009941, 61.203637 ], [ -149.987002, 61.222753 ], [ -149.986576, 61.228323 ], [ -149.985874, 61.237515 ], [ -150.074793, 61.253500 ], [ -150.132634, 61.257915 ], [ -150.204894, 61.259548 ], [ -150.254296, 61.254501 ], [ -150.266124, 61.251237 ], [ -150.273575, 61.251559 ], [ -150.286978, 61.257443 ], [ -150.303688, 61.257467 ], [ -150.303639, 61.255871 ], [ -150.312226, 61.254029 ], [ -150.334576, 61.251301 ], [ -150.394411, 61.249107 ], [ -150.425000, 61.245552 ], [ -150.468812, 61.244627 ], [ -150.484391, 61.247262 ], [ -150.495726, 61.251245 ], [ -150.561670, 61.281487 ], [ -150.590166, 61.281487 ], [ -150.591842, 61.279485 ], [ -150.606961, 61.277732 ], [ -150.628459, 61.284407 ], [ -150.646221, 61.296689 ], [ -150.655804, 61.298173 ], [ -150.662620, 61.295356 ], [ -150.671250, 61.273652 ], [ -150.679902, 61.265888 ], [ -150.690497, 61.259297 ], [ -150.711291, 61.251089 ], [ -150.827295, 61.228390 ], [ -150.842410, 61.224213 ], [ -150.848842, 61.220588 ], [ -150.895905, 61.208915 ], [ -150.926773, 61.206351 ], [ -150.939251, 61.210299 ], [ -150.941944, 61.209947 ], [ -150.946243, 61.208644 ], [ -150.947155, 61.206299 ], [ -150.947425, 61.203140 ], [ -150.951153, 61.198778 ], [ -150.960114, 61.194037 ], [ -150.971775, 61.192041 ], [ -150.990086, 61.188907 ], [ -151.012620, 61.183258 ], [ -151.024905, 61.178391 ], [ -151.072775, 61.141669 ], [ -151.078500, 61.133381 ], [ -151.119722, 61.091117 ], [ -151.121692, 61.083574 ], [ -151.127357, 61.076896 ], [ -151.142587, 61.062778 ], [ -151.166606, 61.046404 ], [ -151.190318, 61.042737 ], [ -151.252384, 61.039968 ], [ -151.293622, 61.035715 ], [ -151.307796, 61.031008 ], [ -151.312653, 61.026364 ], [ -151.330920, 61.015124 ], [ -151.349004, 61.010004 ], [ -151.362243, 61.009412 ], [ -151.425120, 61.013107 ], [ -151.467851, 61.012423 ], [ -151.480300, 61.010902 ], [ -151.538227, 60.991835 ], [ -151.573698, 60.975876 ], [ -151.621005, 60.957453 ], [ -151.637346, 60.946727 ], [ -151.641066, 60.942177 ], [ -151.679518, 60.922491 ], [ -151.692644, 60.917743 ], [ -151.713913, 60.916546 ], [ -151.720815, 60.904257 ], [ -151.736015, 60.891507 ], [ -151.783271, 60.868713 ], [ -151.791698, 60.863060 ], [ -151.800264, 60.853672 ], [ -151.796723, 60.838734 ], [ -151.787394, 60.822307 ], [ -151.777310, 60.810461 ], [ -151.751817, 60.788729 ], [ -151.703802, 60.732376 ], [ -151.702833, 60.727778 ], [ -151.705553, 60.718052 ], [ -151.710444, 60.712657 ], [ -151.716379, 60.710415 ], [ -151.744321, 60.712403 ], [ -151.749493, 60.714175 ], [ -151.760301, 60.721441 ], [ -151.784039, 60.726814 ], [ -151.803814, 60.729004 ], [ -151.811286, 60.732222 ], [ -151.822596, 60.742352 ], [ -151.831185, 60.747303 ], [ -151.851967, 60.754074 ], [ -151.860179, 60.753282 ], [ -151.864958, 60.750458 ], [ -151.849634, 60.738286 ], [ -151.847965, 60.735694 ], [ -151.848614, 60.733976 ], [ -151.870471, 60.727284 ], [ -151.916914, 60.717916 ], [ -151.917922, 60.722809 ], [ -151.915911, 60.730245 ], [ -151.918758, 60.732270 ], [ -151.923384, 60.733735 ], [ -151.944439, 60.733050 ], [ -151.944599, 60.728176 ], [ -151.948287, 60.722476 ], [ -151.961757, 60.721431 ], [ -151.968381, 60.728340 ], [ -152.079433, 60.692804 ], [ -152.114140, 60.634069 ], [ -152.136160, 60.578475 ], [ -152.148434, 60.575977 ], [ -152.163517, 60.576934 ], [ -152.195084, 60.569675 ], [ -152.261497, 60.538237 ], [ -152.309221, 60.506384 ], [ -152.315149, 60.499824 ], [ -152.331365, 60.473525 ], [ -152.333375, 60.460641 ], [ -152.330263, 60.443134 ], [ -152.325821, 60.434806 ], [ -152.312226, 60.420397 ], [ -152.301950, 60.414328 ], [ -152.234199, 60.393888 ], [ -152.300622, 60.369604 ], [ -152.307615, 60.366489 ], [ -152.315855, 60.359071 ], [ -152.352294, 60.356101 ], [ -152.366213, 60.353304 ], [ -152.371475, 60.350176 ], [ -152.376743, 60.345613 ], [ -152.386334, 60.327889 ], [ -152.385979, 60.315845 ], [ -152.392009, 60.302108 ], [ -152.411281, 60.287864 ], [ -152.421130, 60.285331 ], [ -152.444165, 60.285717 ], [ -152.456291, 60.284042 ], [ -152.481794, 60.274681 ], [ -152.528206, 60.251346 ], [ -152.539843, 60.241644 ], [ -152.549236, 60.227631 ], [ -152.556752, 60.224217 ], [ -152.624648, 60.218687 ], [ -152.626275, 60.220852 ], [ -152.626901, 60.222728 ], [ -152.627683, 60.225700 ], [ -152.642361, 60.228766 ], [ -152.660055, 60.242004 ], [ -152.670403, 60.244320 ], [ -152.698634, 60.240661 ], [ -152.715881, 60.241274 ], [ -152.747026, 60.233311 ], [ -152.743388, 60.224323 ], [ -152.754884, 60.210910 ], [ -152.754884, 60.202901 ], [ -152.749545, 60.189552 ], [ -152.734251, 60.174801 ], [ -152.699879, 60.165272 ], [ -152.688392, 60.165820 ], [ -152.678085, 60.163504 ], [ -152.674176, 60.151731 ], [ -152.687485, 60.140305 ], [ -152.686373, 60.137717 ], [ -152.658418, 60.121591 ], [ -152.634972, 60.115799 ], [ -152.596784, 60.101071 ], [ -152.575271, 60.082363 ], [ -152.569121, 60.071748 ], [ -152.575153, 60.048260 ], [ -152.590169, 60.035978 ], [ -152.608599, 60.025429 ], [ -152.612721, 60.015115 ], [ -152.611651, 60.008521 ], [ -152.649479, 59.988253 ], [ -152.679402, 59.968054 ], [ -152.693674, 59.932773 ], [ -152.700822, 59.920309 ], [ -152.706431, 59.915284 ], [ -152.745083, 59.904232 ], [ -152.793584, 59.896720 ], [ -152.806934, 59.888029 ], [ -152.810058, 59.878322 ], [ -152.860867, 59.875033 ], [ -152.875167, 59.877471 ], [ -152.882672, 59.881986 ], [ -152.900414, 59.881812 ], [ -152.920417, 59.877741 ], [ -152.950662, 59.876759 ], [ -152.967267, 59.881494 ], [ -153.002521, 59.886726 ], [ -153.019977, 59.886230 ], [ -153.046986, 59.882425 ], [ -153.079187, 59.871103 ], [ -153.144747, 59.859829 ], [ -153.212865, 59.862784 ], [ -153.225937, 59.858343 ], [ -153.228615, 59.853355 ], [ -153.256944, 59.836490 ], [ -153.278808, 59.828066 ], [ -153.285802, 59.820535 ], [ -153.285412, 59.816755 ], [ -153.278535, 59.810924 ], [ -153.257736, 59.810807 ], [ -153.236556, 59.821867 ], [ -153.217481, 59.824721 ], [ -153.197352, 59.824827 ], [ -153.182307, 59.822389 ], [ -153.144372, 59.807616 ], [ -153.113586, 59.815631 ], [ -153.088515, 59.833376 ], [ -153.021945, 59.834133 ], [ -153.009084, 59.830643 ], [ -153.003964, 59.826747 ], [ -152.992126, 59.810027 ], [ -152.994466, 59.791261 ], [ -153.031319, 59.723625 ], [ -153.051559, 59.691562 ], [ -153.108940, 59.678316 ], [ -153.121740, 59.678009 ], [ -153.155019, 59.654344 ], [ -153.214156, 59.634271 ], [ -153.240018, 59.632426 ], [ -153.253408, 59.638415 ], [ -153.262740, 59.643426 ], [ -153.275175, 59.667303 ], [ -153.286525, 59.670251 ], [ -153.301687, 59.668717 ], [ -153.314002, 59.666336 ], [ -153.315123, 59.664896 ], [ -153.315083, 59.662490 ], [ -153.307199, 59.653954 ], [ -153.298205, 59.636345 ], [ -153.298047, 59.632502 ], [ -153.302756, 59.627679 ], [ -153.308837, 59.625706 ], [ -153.342938, 59.621312 ], [ -153.366613, 59.633729 ], [ -153.381595, 59.638032 ], [ -153.392022, 59.638856 ], [ -153.409422, 59.636328 ], [ -153.414898, 59.638600 ], [ -153.418099, 59.642147 ], [ -153.415507, 59.650918 ], [ -153.393849, 59.658847 ], [ -153.384886, 59.667188 ], [ -153.378235, 59.688936 ], [ -153.374778, 59.731587 ], [ -153.439977, 59.784652 ], [ -153.454972, 59.792099 ], [ -153.458549, 59.764467 ], [ -153.449620, 59.743810 ], [ -153.445336, 59.728865 ], [ -153.442219, 59.717420 ], [ -153.441214, 59.701316 ], [ -153.444003, 59.689957 ], [ -153.464556, 59.651712 ], [ -153.476098, 59.642730 ], [ -153.542466, 59.630236 ], [ -153.563866, 59.638903 ], [ -153.586518, 59.651541 ], [ -153.604813, 59.638734 ], [ -153.610739, 59.628341 ], [ -153.609253, 59.621640 ], [ -153.592193, 59.610842 ], [ -153.558292, 59.605790 ], [ -153.553163, 59.597046 ], [ -153.555148, 59.587858 ], [ -153.577828, 59.555991 ], [ -153.585406, 59.551475 ], [ -153.618151, 59.552571 ], [ -153.635262, 59.555694 ], [ -153.650943, 59.555427 ], [ -153.719309, 59.550264 ], [ -153.761480, 59.543411 ], [ -153.766242, 59.522342 ], [ -153.733853, 59.505754 ], [ -153.706419, 59.477994 ], [ -153.699025, 59.463603 ], [ -153.727546, 59.435346 ], [ -153.747201, 59.429657 ], [ -153.807119, 59.419466 ], [ -153.823384, 59.418035 ], [ -153.862199, 59.424124 ], [ -153.896576, 59.418486 ], [ -153.911268, 59.413732 ], [ -153.925307, 59.405254 ], [ -153.945539, 59.386061 ], [ -153.951389, 59.387017 ], [ -153.954717, 59.392532 ], [ -153.959893, 59.396850 ], [ -153.990003, 59.396777 ], [ -153.993994, 59.394049 ], [ -153.996261, 59.390820 ], [ -153.998506, 59.384723 ], [ -154.007207, 59.382528 ], [ -154.025696, 59.381521 ], [ -154.035965, 59.386362 ], [ -154.044563, 59.388295 ], [ -154.052150, 59.387138 ], [ -154.062453, 59.382753 ], [ -154.087803, 59.367967 ], [ -154.100989, 59.366016 ], [ -154.117672, 59.365508 ], [ -154.121808, 59.360544 ], [ -154.121394, 59.353099 ], [ -154.103014, 59.342719 ], [ -154.033703, 59.343999 ], [ -154.028739, 59.337381 ], [ -154.030807, 59.327040 ], [ -154.077942, 59.313364 ], [ -154.113577, 59.299627 ], [ -154.122681, 59.287622 ], [ -154.136840, 59.262666 ], [ -154.141192, 59.216598 ], [ -154.130585, 59.210503 ], [ -154.172944, 59.172496 ], [ -154.214818, 59.151562 ], [ -154.244220, 59.144161 ], [ -154.260121, 59.143020 ], [ -154.263291, 59.138462 ], [ -154.256528, 59.118462 ], [ -154.251233, 59.111239 ], [ -154.243785, 59.114868 ], [ -154.239842, 59.119324 ], [ -154.227238, 59.125407 ], [ -154.180691, 59.123235 ], [ -154.173669, 59.120200 ], [ -154.166745, 59.100548 ], [ -154.166406, 59.090582 ], [ -154.171502, 59.083423 ], [ -154.195271, 59.069491 ], [ -154.197422, 59.061155 ], [ -154.189580, 59.044207 ], [ -154.171462, 59.021963 ], [ -154.159835, 59.010595 ], [ -154.158207, 59.017853 ], [ -154.132449, 59.024745 ], [ -154.108278, 59.036827 ], [ -154.063489, 59.072140 ], [ -154.031822, 59.073681 ], [ -154.008547, 59.072904 ], [ -153.949958, 59.066782 ], [ -153.932824, 59.062677 ], [ -153.850238, 59.052917 ], [ -153.838180, 59.055296 ], [ -153.815724, 59.064851 ], [ -153.809866, 59.070797 ], [ -153.802782, 59.072224 ], [ -153.793972, 59.071416 ], [ -153.750936, 59.052840 ], [ -153.748680, 59.058729 ], [ -153.746201, 59.065199 ], [ -153.704162, 59.075780 ], [ -153.695664, 59.073994 ], [ -153.648029, 59.028924 ], [ -153.616066, 59.006737 ], [ -153.547283, 58.983716 ], [ -153.523522, 58.979221 ], [ -153.505618, 58.981734 ], [ -153.479939, 58.995286 ], [ -153.463266, 58.986903 ], [ -153.450672, 58.976119 ], [ -153.438144, 58.969911 ], [ -153.422015, 58.970648 ], [ -153.398479, 58.966056 ], [ -153.393101, 58.951097 ], [ -153.388765, 58.945337 ], [ -153.365371, 58.927753 ], [ -153.352283, 58.921705 ], [ -153.334780, 58.920521 ], [ -153.322843, 58.907849 ], [ -153.304788, 58.878919 ], [ -153.305216, 58.874637 ], [ -153.302433, 58.871212 ], [ -153.294726, 58.865432 ], [ -153.286163, 58.863077 ], [ -153.267407, 58.867218 ], [ -153.254798, 58.861756 ], [ -153.252250, 58.855850 ], [ -153.252662, 58.855797 ], [ -153.317823, 58.847441 ], [ -153.326138, 58.849320 ], [ -153.336826, 58.848878 ], [ -153.344830, 58.846953 ], [ -153.350964, 58.843551 ], [ -153.358917, 58.836767 ], [ -153.369389, 58.821255 ], [ -153.370730, 58.799301 ], [ -153.385126, 58.766173 ], [ -153.402472, 58.742607 ], [ -153.426641, 58.721127 ], [ -153.445002, 58.709310 ], [ -153.458816, 58.708561 ], [ -153.468963, 58.712234 ], [ -153.477755, 58.712767 ], [ -153.552650, 58.687176 ], [ -153.577544, 58.670532 ], [ -153.587799, 58.651742 ], [ -153.591635, 58.640084 ], [ -153.601257, 58.634633 ], [ -153.677597, 58.611603 ], [ -153.771636, 58.605639 ], [ -153.806232, 58.606595 ], [ -153.832837, 58.611671 ], [ -153.851432, 58.611872 ], [ -153.897155, 58.606237 ], [ -153.902558, 58.597377 ], [ -153.919134, 58.516659 ], [ -153.909588, 58.514562 ], [ -153.930473, 58.497482 ], [ -153.934852, 58.494414 ], [ -153.960370, 58.487831 ], [ -153.974020, 58.488348 ], [ -153.977617, 58.491931 ], [ -154.001918, 58.492346 ], [ -154.056526, 58.489222 ], [ -154.065121, 58.486430 ], [ -154.073032, 58.478259 ], [ -154.075051, 58.472188 ], [ -154.075235, 58.458106 ], [ -154.073592, 58.446866 ], [ -154.070660, 58.440018 ], [ -154.055759, 58.418782 ], [ -154.040013, 58.404297 ], [ -154.034147, 58.402638 ], [ -154.023713, 58.403952 ], [ -154.007305, 58.402187 ], [ -153.985416, 58.390877 ], [ -153.999323, 58.376372 ], [ -154.097254, 58.345322 ], [ -154.133866, 58.350632 ], [ -154.139223, 58.354108 ], [ -154.150373, 58.357581 ], [ -154.167997, 58.358378 ], [ -154.175194, 58.344527 ], [ -154.177161, 58.321470 ], [ -154.174999, 58.320107 ], [ -154.166648, 58.320569 ], [ -154.149073, 58.314539 ], [ -154.103412, 58.280161 ], [ -154.145277, 58.210931 ], [ -154.177652, 58.189832 ], [ -154.219755, 58.184631 ], [ -154.241874, 58.156328 ], [ -154.216250, 58.142849 ], [ -154.210078, 58.136062 ], [ -154.222465, 58.132566 ], [ -154.269027, 58.128770 ], [ -154.291163, 58.135680 ], [ -154.340449, 58.090921 ], [ -154.384327, 58.120823 ], [ -154.426570, 58.144901 ], [ -154.436518, 58.148294 ], [ -154.460121, 58.146067 ], [ -154.466436, 58.142328 ], [ -154.459389, 58.129089 ], [ -154.452096, 58.121582 ], [ -154.449212, 58.093218 ], [ -154.462929, 58.058350 ], [ -154.477979, 58.052379 ], [ -154.501246, 58.050112 ], [ -154.539367, 58.055887 ], [ -154.568627, 58.025787 ], [ -154.581547, 58.019285 ], [ -154.643965, 58.033147 ], [ -154.650618, 58.045387 ], [ -154.644666, 58.056433 ], [ -154.646223, 58.060141 ], [ -154.653383, 58.064037 ], [ -154.668895, 58.065272 ], [ -154.676108, 58.065114 ], [ -154.716162, 58.055256 ], [ -154.721884, 58.050544 ], [ -154.728980, 58.038455 ], [ -154.731059, 58.028454 ], [ -154.730726, 58.021837 ], [ -154.745581, 58.012220 ], [ -154.765287, 58.003710 ], [ -154.774719, 58.002168 ], [ -154.807767, 58.000939 ], [ -154.819518, 58.003494 ], [ -154.823518, 58.009348 ], [ -154.825051, 58.016586 ], [ -154.828230, 58.018849 ], [ -154.876559, 58.027722 ], [ -154.891812, 58.027676 ], [ -154.990431, 58.013424 ], [ -155.026275, 57.999302 ], [ -155.118648, 57.953925 ], [ -155.094686, 57.929280 ], [ -155.072566, 57.911968 ], [ -155.064199, 57.909294 ], [ -155.061806, 57.904330 ], [ -155.068148, 57.883773 ], [ -155.082139, 57.872248 ], [ -155.097095, 57.865356 ], [ -155.152420, 57.855375 ], [ -155.237933, 57.827131 ], [ -155.272917, 57.823981 ], [ -155.298385, 57.826020 ], [ -155.303044, 57.828454 ], [ -155.326369, 57.830545 ], [ -155.338153, 57.825384 ], [ -155.341235, 57.819644 ], [ -155.334944, 57.780692 ], [ -155.310981, 57.764811 ], [ -155.302789, 57.761658 ], [ -155.285339, 57.758726 ], [ -155.284691, 57.757388 ], [ -155.291651, 57.735809 ], [ -155.305814, 57.724050 ], [ -155.378610, 57.710766 ], [ -155.468287, 57.744637 ], [ -155.506533, 57.760970 ], [ -155.533627, 57.776880 ], [ -155.539766, 57.783942 ], [ -155.545676, 57.786769 ], [ -155.568437, 57.789511 ], [ -155.585411, 57.786981 ], [ -155.596857, 57.783539 ], [ -155.609353, 57.777699 ], [ -155.617188, 57.769715 ], [ -155.635323, 57.715441 ], [ -155.634543, 57.704764 ], [ -155.626373, 57.693623 ], [ -155.615203, 57.688074 ], [ -155.629912, 57.656376 ], [ -155.699986, 57.642085 ], [ -155.724167, 57.633445 ], [ -155.735509, 57.594149 ], [ -155.730951, 57.588562 ], [ -155.731412, 57.555546 ], [ -155.732779, 57.549732 ], [ -155.786939, 57.547007 ], [ -155.877856, 57.547173 ], [ -155.915261, 57.535331 ], [ -155.945812, 57.539249 ], [ -155.967890, 57.544429 ], [ -155.985988, 57.553721 ], [ -155.988113, 57.558328 ], [ -156.010818, 57.571379 ], [ -156.033806, 57.569883 ], [ -156.044031, 57.564455 ], [ -156.048584, 57.500808 ], [ -156.045324, 57.487037 ], [ -156.036722, 57.470941 ], [ -156.014396, 57.455285 ], [ -156.012841, 57.451394 ], [ -156.021875, 57.439660 ], [ -156.091668, 57.439829 ], [ -156.099067, 57.443691 ], [ -156.137480, 57.471734 ], [ -156.183932, 57.482112 ], [ -156.195740, 57.480059 ], [ -156.210883, 57.474409 ], [ -156.211485, 57.459475 ], [ -156.220105, 57.445295 ], [ -156.226886, 57.440667 ], [ -156.254462, 57.438961 ], [ -156.339425, 57.417641 ], [ -156.362039, 57.400474 ], [ -156.377439, 57.390865 ], [ -156.481632, 57.338705 ], [ -156.511412, 57.335020 ], [ -156.533544, 57.328527 ], [ -156.539718, 57.320059 ], [ -156.551239, 57.290800 ], [ -156.538684, 57.283041 ], [ -156.507301, 57.281164 ], [ -156.420864, 57.311142 ], [ -156.336427, 57.336081 ], [ -156.321910, 57.293369 ], [ -156.332718, 57.265192 ], [ -156.342943, 57.248056 ], [ -156.358139, 57.252188 ], [ -156.376507, 57.252284 ], [ -156.399423, 57.241627 ], [ -156.401488, 57.233169 ], [ -156.398751, 57.214756 ], [ -156.388592, 57.206620 ], [ -156.355756, 57.192844 ], [ -156.341300, 57.191857 ], [ -156.338430, 57.190325 ], [ -156.334404, 57.182300 ], [ -156.355401, 57.159679 ], [ -156.357358, 57.157570 ], [ -156.368524, 57.149986 ], [ -156.435110, 57.127430 ], [ -156.456497, 57.106041 ], [ -156.444610, 57.100087 ], [ -156.441566, 57.094698 ], [ -156.441599, 57.085158 ], [ -156.509239, 57.054911 ], [ -156.535587, 57.047905 ], [ -156.562827, 57.020314 ], [ -156.547667, 57.004629 ], [ -156.547200, 56.986488 ], [ -156.550520, 56.984610 ], [ -156.555077, 56.983550 ], [ -156.637840, 56.993905 ], [ -156.753642, 56.991225 ], [ -156.762718, 56.986342 ], [ -156.781421, 56.971879 ], [ -156.786900, 56.965035 ], [ -156.788341, 56.960693 ], [ -156.786802, 56.941443 ], [ -156.797310, 56.911717 ], [ -156.804432, 56.905881 ], [ -156.825982, 56.897667 ], [ -156.839322, 56.901854 ], [ -156.876316, 56.942828 ], [ -156.885372, 56.953284 ], [ -156.885686, 56.957965 ], [ -156.882464, 56.960072 ], [ -156.882893, 56.962582 ], [ -156.886307, 56.964869 ], [ -156.893683, 56.965965 ], [ -156.909725, 56.965581 ], [ -156.918796, 56.963583 ], [ -156.935692, 56.954873 ], [ -156.935629, 56.920087 ], [ -156.986171, 56.911131 ], [ -157.005950, 56.904220 ], [ -157.015665, 56.898486 ], [ -157.034624, 56.884487 ], [ -157.073453, 56.838345 ], [ -157.159494, 56.833477 ], [ -157.163811, 56.826066 ], [ -157.163272, 56.823542 ], [ -157.140990, 56.802275 ], [ -157.140277, 56.790874 ], [ -157.161372, 56.774134 ], [ -157.183636, 56.769079 ], [ -157.201724, 56.767511 ], [ -157.283764, 56.800766 ], [ -157.290511, 56.804713 ], [ -157.291231, 56.811077 ], [ -157.298283, 56.818567 ], [ -157.332735, 56.838398 ], [ -157.378771, 56.861696 ], [ -157.394663, 56.864426 ], [ -157.405679, 56.864216 ], [ -157.436932, 56.858522 ], [ -157.457590, 56.848204 ], [ -157.472407, 56.833356 ], [ -157.469925, 56.824889 ], [ -157.462361, 56.809603 ], [ -157.457622, 56.804291 ], [ -157.447768, 56.801246 ], [ -157.436358, 56.803781 ], [ -157.421120, 56.801691 ], [ -157.418560, 56.799821 ], [ -157.411488, 56.778351 ], [ -157.413440, 56.769185 ], [ -157.517478, 56.760839 ], [ -157.530765, 56.753775 ], [ -157.544855, 56.738945 ], [ -157.551196, 56.730314 ], [ -157.563802, 56.703426 ], [ -157.550792, 56.681029 ], [ -157.542295, 56.675320 ], [ -157.507589, 56.667169 ], [ -157.498689, 56.667285 ], [ -157.480990, 56.671419 ], [ -157.479153, 56.670080 ], [ -157.452160, 56.643220 ], [ -157.452196, 56.638863 ], [ -157.454860, 56.634748 ], [ -157.462105, 56.625685 ], [ -157.466497, 56.623266 ], [ -157.496523, 56.616897 ], [ -157.536486, 56.615317 ], [ -157.546085, 56.619025 ], [ -157.589315, 56.622262 ], [ -157.605231, 56.621315 ], [ -157.615041, 56.620020 ], [ -157.636018, 56.612838 ], [ -157.674587, 56.609507 ], [ -157.705382, 56.628780 ], [ -157.714280, 56.640575 ], [ -157.715998, 56.648492 ], [ -157.719048, 56.653084 ], [ -157.736799, 56.675616 ], [ -157.754141, 56.679468 ], [ -157.763698, 56.679247 ], [ -157.920045, 56.658636 ], [ -157.933988, 56.654571 ], [ -158.042012, 56.596744 ], [ -158.042839, 56.581850 ], [ -158.039356, 56.574884 ], [ -158.001041, 56.572097 ], [ -157.975222, 56.585722 ], [ -157.958745, 56.588304 ], [ -157.906647, 56.590925 ], [ -157.838420, 56.560760 ], [ -157.828139, 56.546332 ], [ -157.817826, 56.514210 ], [ -157.823072, 56.501982 ], [ -157.859766, 56.483668 ], [ -157.865642, 56.483285 ], [ -157.886126, 56.487805 ], [ -157.954625, 56.515845 ], [ -158.027621, 56.511779 ], [ -158.112276, 56.521322 ], [ -158.119570, 56.518346 ], [ -158.131729, 56.501944 ], [ -158.123352, 56.496457 ], [ -158.113709, 56.493001 ], [ -158.111603, 56.490110 ], [ -158.118682, 56.466558 ], [ -158.127440, 56.460805 ], [ -158.246144, 56.466124 ], [ -158.284699, 56.481089 ], [ -158.328798, 56.484208 ], [ -158.402954, 56.455193 ], [ -158.498837, 56.380110 ], [ -158.501705, 56.375860 ], [ -158.502040, 56.365178 ], [ -158.489546, 56.341865 ], [ -158.432795, 56.343505 ], [ -158.397337, 56.328921 ], [ -158.338137, 56.323923 ], [ -158.329735, 56.326028 ], [ -158.322563, 56.325242 ], [ -158.207387, 56.294354 ], [ -158.203083, 56.283833 ], [ -158.216540, 56.269451 ], [ -158.253331, 56.253125 ], [ -158.276842, 56.248698 ], [ -158.334506, 56.232940 ], [ -158.339765, 56.217807 ], [ -158.331039, 56.213609 ], [ -158.264792, 56.209597 ], [ -158.190960, 56.226407 ], [ -158.174930, 56.236227 ], [ -158.119493, 56.241995 ], [ -158.115282, 56.242102 ], [ -158.112718, 56.240286 ], [ -158.117797, 56.230742 ], [ -158.237025, 56.187387 ], [ -158.314128, 56.163697 ], [ -158.374324, 56.134522 ], [ -158.395996, 56.109834 ], [ -158.394388, 56.091949 ], [ -158.394922, 56.064721 ], [ -158.398324, 56.062957 ], [ -158.424451, 56.068899 ], [ -158.438644, 56.093672 ], [ -158.438315, 56.095702 ], [ -158.431105, 56.100264 ], [ -158.432229, 56.102881 ], [ -158.439944, 56.107780 ], [ -158.455297, 56.108742 ], [ -158.461810, 56.106644 ], [ -158.475258, 56.093405 ], [ -158.472706, 56.087583 ], [ -158.448413, 56.055278 ], [ -158.417889, 56.036796 ], [ -158.407723, 56.014521 ], [ -158.413645, 56.004951 ], [ -158.431471, 55.994452 ], [ -158.439330, 55.993620 ], [ -158.445696, 55.997580 ], [ -158.467335, 56.027219 ], [ -158.475543, 56.028366 ], [ -158.501967, 56.025170 ], [ -158.504850, 56.015544 ], [ -158.496366, 56.010601 ], [ -158.494015, 56.007320 ], [ -158.495114, 55.989207 ], [ -158.499050, 55.981685 ], [ -158.509840, 55.979617 ], [ -158.595620, 56.045252 ], [ -158.598367, 56.048822 ], [ -158.594188, 56.110445 ], [ -158.584362, 56.115657 ], [ -158.574659, 56.118640 ], [ -158.575042, 56.121129 ], [ -158.600405, 56.130444 ], [ -158.628303, 56.120943 ], [ -158.640447, 56.114079 ], [ -158.659738, 56.098553 ], [ -158.666818, 56.078415 ], [ -158.660914, 56.034928 ], [ -158.651674, 56.031358 ], [ -158.643216, 56.023415 ], [ -158.638704, 56.015932 ], [ -158.636689, 56.005007 ], [ -158.639497, 55.986070 ], [ -158.653214, 55.958615 ], [ -158.673246, 55.951485 ], [ -158.737009, 55.953313 ], [ -158.748560, 55.959365 ], [ -158.751215, 55.963759 ], [ -158.735348, 55.996208 ], [ -158.729567, 56.002854 ], [ -158.747305, 56.009908 ], [ -158.854132, 56.003343 ], [ -158.898116, 55.951041 ], [ -158.909396, 55.934887 ], [ -158.999598, 55.927011 ], [ -159.138748, 55.909320 ], [ -159.271514, 55.890704 ], [ -159.347681, 55.877802 ], [ -159.374842, 55.871522 ], [ -159.396400, 55.856767 ], [ -159.400096, 55.852357 ], [ -159.406126, 55.831956 ], [ -159.409380, 55.810434 ], [ -159.404326, 55.796992 ], [ -159.411505, 55.788911 ], [ -159.423468, 55.789025 ], [ -159.434787, 55.792909 ], [ -159.470216, 55.828911 ], [ -159.472801, 55.839050 ], [ -159.471973, 55.843506 ], [ -159.465282, 55.852845 ], [ -159.453945, 55.896820 ], [ -159.482226, 55.901826 ], [ -159.493883, 55.900109 ], [ -159.528349, 55.888458 ], [ -159.534415, 55.881299 ], [ -159.498022, 55.855299 ], [ -159.494404, 55.765798 ], [ -159.503768, 55.747878 ], [ -159.521589, 55.736021 ], [ -159.537152, 55.728459 ], [ -159.551432, 55.711543 ], [ -159.552016, 55.704794 ], [ -159.535961, 55.689831 ], [ -159.530117, 55.665394 ], [ -159.545115, 55.646517 ], [ -159.564413, 55.633045 ], [ -159.617770, 55.595798 ], [ -159.696713, 55.573306 ], [ -159.729333, 55.569650 ], [ -159.733899, 55.569985 ], [ -159.744495, 55.600018 ], [ -159.743282, 55.603624 ], [ -159.735196, 55.610933 ], [ -159.724150, 55.614549 ], [ -159.673432, 55.617350 ], [ -159.667511, 55.614825 ], [ -159.639619, 55.617915 ], [ -159.626772, 55.629412 ], [ -159.635866, 55.644398 ], [ -159.644656, 55.652469 ], [ -159.679201, 55.655895 ], [ -159.680635, 55.681340 ], [ -159.676761, 55.737357 ], [ -159.673191, 55.750961 ], [ -159.627482, 55.803248 ], [ -159.624884, 55.804694 ], [ -159.602148, 55.805004 ], [ -159.607973, 55.812900 ], [ -159.643739, 55.830424 ], [ -159.712816, 55.846392 ], [ -159.811070, 55.856570 ], [ -159.838981, 55.852412 ], [ -159.853255, 55.847162 ], [ -159.858456, 55.841793 ], [ -159.850750, 55.824076 ], [ -159.847359, 55.802530 ], [ -159.862484, 55.787629 ], [ -159.875994, 55.784608 ], [ -159.892319, 55.785096 ], [ -159.937089, 55.803306 ], [ -160.010322, 55.797087 ], [ -160.026282, 55.792295 ], [ -160.048711, 55.772061 ], [ -160.052525, 55.766430 ], [ -160.051945, 55.760594 ], [ -160.049417, 55.757588 ], [ -160.058443, 55.721734 ], [ -160.130445, 55.681419 ], [ -160.185712, 55.658644 ], [ -160.279827, 55.641384 ], [ -160.325419, 55.644207 ], [ -160.353494, 55.649731 ], [ -160.410823, 55.665380 ], [ -160.416452, 55.665302 ], [ -160.421853, 55.662701 ], [ -160.429727, 55.658046 ], [ -160.433602, 55.648975 ], [ -160.433022, 55.639979 ], [ -160.392587, 55.602771 ], [ -160.435859, 55.573692 ], [ -160.448277, 55.559049 ], [ -160.464301, 55.533243 ], [ -160.465186, 55.527361 ], [ -160.459815, 55.514986 ], [ -160.462745, 55.506654 ], [ -160.481633, 55.489068 ], [ -160.501346, 55.478518 ], [ -160.521335, 55.474420 ], [ -160.536654, 55.474938 ], [ -160.544224, 55.502351 ], [ -160.554173, 55.522965 ], [ -160.580083, 55.564385 ], [ -160.595771, 55.575540 ], [ -160.615305, 55.575516 ], [ -160.638371, 55.557426 ], [ -160.652775, 55.548668 ], [ -160.666966, 55.544417 ], [ -160.706883, 55.556066 ], [ -160.737095, 55.555448 ], [ -160.751040, 55.552907 ], [ -160.766237, 55.547559 ], [ -160.772950, 55.538998 ], [ -160.771433, 55.529430 ], [ -160.732150, 55.523596 ], [ -160.660117, 55.518475 ], [ -160.654117, 55.512596 ], [ -160.647464, 55.500862 ], [ -160.646304, 55.492851 ], [ -160.651523, 55.474174 ], [ -160.666917, 55.459776 ], [ -160.781401, 55.451780 ], [ -160.795988, 55.454946 ], [ -160.836725, 55.473135 ], [ -160.843407, 55.489782 ], [ -160.836023, 55.497259 ], [ -160.821773, 55.506216 ], [ -160.820810, 55.507974 ], [ -160.828273, 55.516111 ], [ -160.849145, 55.523916 ], [ -160.865380, 55.526968 ], [ -160.909625, 55.524140 ], [ -160.922934, 55.519300 ], [ -160.944265, 55.507825 ], [ -160.976551, 55.472736 ], [ -160.979298, 55.466274 ], [ -160.977376, 55.461185 ], [ -160.982717, 55.454326 ], [ -160.997335, 55.440265 ], [ -161.013662, 55.431002 ], [ -161.231535, 55.357452 ], [ -161.280675, 55.354038 ], [ -161.325325, 55.359855 ], [ -161.317545, 55.362758 ], [ -161.311989, 55.372836 ], [ -161.314949, 55.379231 ], [ -161.346080, 55.385782 ], [ -161.364577, 55.384194 ], [ -161.445196, 55.368103 ], [ -161.460392, 55.359070 ], [ -161.486114, 55.359322 ], [ -161.507657, 55.362786 ], [ -161.514211, 55.385254 ], [ -161.509306, 55.390626 ], [ -161.496123, 55.396967 ], [ -161.484588, 55.417994 ], [ -161.478303, 55.440600 ], [ -161.471468, 55.478588 ], [ -161.477114, 55.485195 ], [ -161.469271, 55.496830 ], [ -161.376102, 55.569794 ], [ -161.367405, 55.579484 ], [ -161.355686, 55.606378 ], [ -161.357670, 55.612603 ], [ -161.363378, 55.618478 ], [ -161.392613, 55.628221 ], [ -161.416235, 55.632324 ], [ -161.482064, 55.633979 ], [ -161.526162, 55.630498 ], [ -161.587047, 55.620060 ], [ -161.602825, 55.613811 ], [ -161.612926, 55.606158 ], [ -161.698860, 55.519400 ], [ -161.700069, 55.514390 ], [ -161.696719, 55.423307 ], [ -161.688357, 55.416380 ], [ -161.686495, 55.408041 ], [ -161.720096, 55.376690 ], [ -161.827543, 55.287872 ], [ -161.833891, 55.284400 ], [ -161.845473, 55.281249 ], [ -161.853418, 55.277634 ], [ -161.863339, 55.266989 ], [ -161.875606, 55.249921 ], [ -161.879542, 55.240804 ], [ -161.875759, 55.232592 ], [ -161.875238, 55.227224 ], [ -161.878076, 55.223599 ], [ -161.903407, 55.204941 ], [ -161.919519, 55.208209 ], [ -161.957455, 55.227999 ], [ -161.978788, 55.236131 ], [ -162.029636, 55.239492 ], [ -162.041236, 55.236806 ], [ -162.045694, 55.232775 ], [ -162.046242, 55.225605 ], [ -162.001711, 55.169236 ], [ -161.966974, 55.154831 ], [ -161.949882, 55.126686 ], [ -161.956595, 55.112174 ], [ -161.960866, 55.106734 ], [ -162.053281, 55.074212 ], [ -162.118740, 55.102911 ], [ -162.131878, 55.122776 ], [ -162.119033, 55.141116 ], [ -162.126369, 55.153408 ], [ -162.141084, 55.157339 ], [ -162.177427, 55.154403 ], [ -162.218192, 55.118903 ], [ -162.224047, 55.108658 ], [ -162.223528, 55.102211 ], [ -162.206800, 55.082391 ], [ -162.190348, 55.066981 ], [ -162.189247, 55.060260 ], [ -162.219326, 55.028975 ], [ -162.247946, 55.020439 ], [ -162.253500, 55.020454 ], [ -162.267754, 55.021553 ], [ -162.280512, 55.026207 ], [ -162.292511, 55.033429 ], [ -162.299619, 55.040152 ], [ -162.300378, 55.042927 ], [ -162.361969, 55.042679 ], [ -162.413510, 55.036560 ], [ -162.471364, 55.051932 ], [ -162.489735, 55.064849 ], [ -162.512104, 55.086227 ], [ -162.521688, 55.104011 ], [ -162.520986, 55.115417 ], [ -162.506887, 55.118927 ], [ -162.460958, 55.125840 ], [ -162.453451, 55.123948 ], [ -162.442556, 55.118226 ], [ -162.437368, 55.112122 ], [ -162.424796, 55.104813 ], [ -162.416800, 55.104096 ], [ -162.410574, 55.105614 ], [ -162.406191, 55.120498 ], [ -162.445182, 55.151521 ], [ -162.480980, 55.161271 ], [ -162.494470, 55.183915 ], [ -162.497920, 55.199052 ], [ -162.499019, 55.213770 ], [ -162.510435, 55.250177 ], [ -162.513121, 55.252374 ], [ -162.584872, 55.298386 ], [ -162.626101, 55.304085 ], [ -162.649173, 55.299118 ], [ -162.661960, 55.294295 ], [ -162.682405, 55.276450 ], [ -162.702851, 55.252775 ], [ -162.714607, 55.231611 ], [ -162.718077, 55.219911 ], [ -162.711128, 55.211267 ], [ -162.692309, 55.197313 ], [ -162.668346, 55.193445 ], [ -162.644734, 55.197115 ], [ -162.638791, 55.194770 ], [ -162.614497, 55.174735 ], [ -162.579765, 55.136939 ], [ -162.582908, 55.130240 ], [ -162.585533, 55.128600 ], [ -162.595603, 55.124846 ], [ -162.604454, 55.126028 ], [ -162.618918, 55.097096 ], [ -162.599812, 55.054806 ], [ -162.569292, 55.015874 ], [ -162.569289, 54.971240 ], [ -162.587967, 54.972010 ], [ -162.615159, 54.987841 ], [ -162.646472, 54.997163 ], [ -162.688131, 54.996126 ], [ -162.707083, 54.991159 ], [ -162.716177, 54.986679 ], [ -162.720404, 54.980223 ], [ -162.707203, 54.972023 ], [ -162.705096, 54.966010 ], [ -162.708453, 54.958480 ], [ -162.770983, 54.932736 ], [ -162.834245, 54.926851 ], [ -162.845475, 54.926989 ], [ -162.881639, 54.934785 ], [ -162.913684, 54.950273 ], [ -162.970632, 55.001039 ], [ -162.965872, 55.017374 ], [ -162.958975, 55.020151 ], [ -162.957826, 55.031826 ], [ -162.964897, 55.042201 ], [ -163.001550, 55.080043 ], [ -163.051631, 55.103267 ], [ -163.071468, 55.110477 ], [ -163.079006, 55.111652 ], [ -163.111507, 55.109705 ], [ -163.165036, 55.099214 ], [ -163.188428, 55.090903 ], [ -163.213009, 55.066742 ], [ -163.225092, 55.049683 ], [ -163.226313, 55.042694 ], [ -163.219018, 55.030281 ], [ -163.213281, 55.026138 ], [ -163.189447, 55.016678 ], [ -163.174830, 55.013100 ], [ -163.148615, 55.014023 ], [ -163.067008, 54.979302 ], [ -163.050467, 54.969071 ], [ -163.036062, 54.942544 ], [ -163.065602, 54.926172 ], [ -163.149580, 54.885906 ], [ -163.214398, 54.847487 ], [ -163.299809, 54.829232 ], [ -163.352997, 54.810174 ], [ -163.373207, 54.800841 ], [ -163.372806, 54.790936 ], [ -163.342655, 54.765104 ], [ -163.322849, 54.750280 ], [ -163.228391, 54.753513 ], [ -163.219765, 54.755072 ], [ -163.188853, 54.773717 ], [ -163.184295, 54.774912 ], [ -163.144089, 54.761499 ], [ -163.107558, 54.732752 ], [ -163.057228, 54.688101 ], [ -163.050970, 54.672263 ], [ -163.059085, 54.661072 ], [ -163.096744, 54.661597 ], [ -163.125738, 54.668180 ], [ -163.140925, 54.694829 ], [ -163.185401, 54.700398 ], [ -163.194952, 54.699025 ], [ -163.208775, 54.693136 ], [ -163.280633, 54.695367 ], [ -163.317996, 54.719938 ], [ -163.327457, 54.743414 ], [ -163.331516, 54.747518 ], [ -163.344791, 54.751211 ], [ -163.364626, 54.749464 ], [ -163.380618, 54.746176 ], [ -163.391970, 54.741980 ], [ -163.423067, 54.720426 ], [ -163.428377, 54.714819 ], [ -163.425477, 54.710081 ], [ -163.439361, 54.655928 ], [ -163.472016, 54.656468 ], [ -163.488861, 54.655110 ], [ -163.572383, 54.623211 ], [ -163.581481, 54.616863 ], [ -163.585967, 54.611644 ], [ -163.670838, 54.627825 ], [ -163.747316, 54.635011 ], [ -163.803590, 54.636498 ], [ -163.861206, 54.632911 ], [ -163.952391, 54.630461 ], [ -163.966307, 54.631681 ], [ -164.084894, 54.620131 ], [ -164.179617, 54.599188 ], [ -164.232470, 54.585494 ], [ -164.257585, 54.572722 ], [ -164.331404, 54.530431 ], [ -164.337538, 54.524259 ], [ -164.341474, 54.495266 ], [ -164.336042, 54.484509 ], [ -164.336530, 54.480977 ], [ -164.352704, 54.465023 ], [ -164.416820, 54.431713 ], [ -164.456554, 54.419856 ], [ -164.499034, 54.414225 ], [ -164.519970, 54.414652 ], [ -164.582778, 54.405702 ], [ -164.601607, 54.402451 ], [ -164.640457, 54.391166 ], [ -164.743977, 54.394216 ], [ -164.789357, 54.402012 ], [ -164.844931, 54.417583 ], [ -164.876075, 54.443495 ], [ -164.877373, 54.449908 ], [ -164.904077, 54.499195 ], [ -164.910059, 54.507542 ], [ -164.936122, 54.521253 ], [ -164.944636, 54.532903 ], [ -164.949781, 54.575697 ], [ -164.948789, 54.579877 ], [ -164.932187, 54.598745 ], [ -164.918760, 54.605306 ], [ -164.831936, 54.629028 ], [ -164.761347, 54.640634 ], [ -164.741815, 54.645441 ], [ -164.727654, 54.650957 ], [ -164.709465, 54.661518 ], [ -164.629661, 54.756031 ], [ -164.576896, 54.824564 ], [ -164.561546, 54.850835 ], [ -164.564050, 54.875539 ], [ -164.550256, 54.888785 ], [ -164.486780, 54.922441 ], [ -164.435280, 54.933126 ], [ -164.427303, 54.932849 ], [ -164.373441, 54.915349 ], [ -164.361631, 54.907391 ], [ -164.353330, 54.898327 ], [ -164.343534, 54.894139 ], [ -164.295033, 54.902122 ], [ -164.207070, 54.927578 ], [ -164.204897, 54.931240 ], [ -164.164342, 54.953532 ], [ -164.119196, 54.969416 ], [ -164.109333, 54.963999 ], [ -164.086798, 54.963396 ], [ -164.061164, 54.964708 ], [ -164.030708, 54.969818 ], [ -163.994179, 54.983315 ], [ -163.964730, 54.997337 ], [ -163.930369, 55.017646 ], [ -163.909222, 55.032089 ], [ -163.894695, 55.039115 ], [ -163.884869, 55.039909 ], [ -163.872144, 55.037399 ], [ -163.854260, 55.037796 ], [ -163.815779, 55.044625 ], [ -163.790733, 55.052583 ], [ -163.774093, 55.055780 ], [ -163.740737, 55.048266 ], [ -163.646834, 55.044467 ], [ -163.568159, 55.049145 ], [ -163.532962, 55.048881 ], [ -163.527109, 55.040871 ], [ -163.534638, 55.025305 ], [ -163.530087, 55.016660 ], [ -163.461500, 54.982511 ], [ -163.442854, 54.969875 ], [ -163.429548, 54.954759 ], [ -163.418042, 54.938499 ], [ -163.398294, 54.902371 ], [ -163.399292, 54.894012 ], [ -163.408027, 54.884580 ], [ -163.415872, 54.859652 ], [ -163.414691, 54.856090 ], [ -163.410594, 54.854576 ], [ -163.391397, 54.855331 ], [ -163.334234, 54.872948 ], [ -163.318885, 54.880120 ], [ -163.319161, 54.899026 ], [ -163.319956, 54.903085 ], [ -163.336739, 54.917490 ], [ -163.344402, 54.919333 ], [ -163.347730, 54.925093 ], [ -163.343735, 54.950416 ], [ -163.338395, 54.956191 ], [ -163.323106, 54.959929 ], [ -163.314592, 54.958862 ], [ -163.290908, 54.945977 ], [ -163.279586, 54.944849 ], [ -163.239900, 54.954617 ], [ -163.237414, 54.959292 ], [ -163.240008, 54.962885 ], [ -163.293205, 55.006865 ], [ -163.297876, 55.057619 ], [ -163.310694, 55.105612 ], [ -163.314069, 55.105146 ], [ -163.318731, 55.110811 ], [ -163.319873, 55.119622 ], [ -163.314652, 55.126312 ], [ -163.268767, 55.145465 ], [ -163.200867, 55.166057 ], [ -163.157532, 55.175510 ], [ -163.105011, 55.183979 ], [ -163.081634, 55.180409 ], [ -163.080719, 55.176861 ], [ -163.070494, 55.174114 ], [ -163.032256, 55.172147 ], [ -162.957182, 55.171271 ], [ -162.882292, 55.183251 ], [ -162.861520, 55.198339 ], [ -162.840140, 55.224043 ], [ -162.843172, 55.242564 ], [ -162.851839, 55.247317 ], [ -162.856600, 55.248721 ], [ -162.869478, 55.248086 ], [ -162.880892, 55.239564 ], [ -162.894020, 55.243046 ], [ -162.900454, 55.246416 ], [ -162.901644, 55.247652 ], [ -162.900027, 55.252466 ], [ -162.888118, 55.270424 ], [ -162.881779, 55.273776 ], [ -162.750371, 55.307623 ], [ -162.731816, 55.307829 ], [ -162.704747, 55.320296 ], [ -162.680487, 55.337004 ], [ -162.649910, 55.364151 ], [ -162.619883, 55.408670 ], [ -162.580524, 55.446514 ], [ -162.575826, 55.446833 ], [ -162.533216, 55.467625 ], [ -162.504041, 55.482556 ], [ -162.483687, 55.495237 ], [ -162.403581, 55.557465 ], [ -162.326436, 55.613918 ], [ -162.286002, 55.649288 ], [ -162.246972, 55.680013 ], [ -162.193078, 55.702178 ], [ -162.147059, 55.718415 ], [ -162.090664, 55.753427 ], [ -162.079678, 55.763400 ], [ -161.972624, 55.800526 ], [ -161.898956, 55.833464 ], [ -161.858430, 55.865402 ], [ -161.816225, 55.888993 ], [ -161.807833, 55.891954 ], [ -161.773409, 55.897310 ], [ -161.712283, 55.904232 ], [ -161.640007, 55.919503 ], [ -161.585604, 55.937324 ], [ -161.450442, 55.954485 ], [ -161.380557, 55.965618 ], [ -161.290777, 55.983130 ], [ -161.280307, 55.979323 ], [ -161.278330, 55.974912 ], [ -161.262763, 55.958734 ], [ -161.230444, 55.947467 ], [ -161.211273, 55.951712 ], [ -161.096617, 55.954752 ], [ -161.076383, 55.942079 ], [ -161.049162, 55.945407 ], [ -161.027739, 55.954554 ], [ -161.023376, 55.959468 ], [ -160.898682, 55.999014 ], [ -160.873229, 56.001448 ], [ -160.863250, 55.996237 ], [ -160.814205, 55.953834 ], [ -160.812893, 55.950858 ], [ -160.814113, 55.930633 ], [ -160.818201, 55.910749 ], [ -160.835077, 55.915747 ], [ -160.849665, 55.916227 ], [ -160.923856, 55.900574 ], [ -160.951560, 55.852772 ], [ -160.946400, 55.834881 ], [ -160.940845, 55.822529 ], [ -160.930591, 55.814358 ], [ -160.806014, 55.738241 ], [ -160.765228, 55.757174 ], [ -160.730726, 55.747664 ], [ -160.668102, 55.723556 ], [ -160.661205, 55.723427 ], [ -160.655560, 55.730041 ], [ -160.655468, 55.739868 ], [ -160.663037, 55.745491 ], [ -160.675794, 55.751411 ], [ -160.695227, 55.755075 ], [ -160.751236, 55.779364 ], [ -160.757705, 55.785841 ], [ -160.769155, 55.858268 ], [ -160.734182, 55.870995 ], [ -160.697591, 55.862396 ], [ -160.639088, 55.858300 ], [ -160.564014, 55.863719 ], [ -160.550343, 55.867549 ], [ -160.532582, 55.869891 ], [ -160.508433, 55.869379 ], [ -160.494678, 55.864193 ], [ -160.477892, 55.841099 ], [ -160.479355, 55.822361 ], [ -160.438735, 55.789608 ], [ -160.385878, 55.796445 ], [ -160.342876, 55.778166 ], [ -160.293924, 55.765556 ], [ -160.277382, 55.765861 ], [ -160.264568, 55.775723 ], [ -160.268930, 55.784278 ], [ -160.293498, 55.801788 ], [ -160.315655, 55.814544 ], [ -160.317826, 55.818983 ], [ -160.272533, 55.831673 ], [ -160.273176, 55.856881 ], [ -160.325637, 55.867858 ], [ -160.380573, 55.889456 ], [ -160.420735, 55.908620 ], [ -160.486594, 55.924168 ], [ -160.535759, 55.939617 ], [ -160.533685, 55.959950 ], [ -160.527094, 55.973011 ], [ -160.526362, 55.982433 ], [ -160.529292, 55.986103 ], [ -160.534541, 55.989498 ], [ -160.559597, 55.996838 ], [ -160.567604, 55.991670 ], [ -160.570895, 55.988929 ], [ -160.574397, 55.986552 ], [ -160.576655, 55.985416 ], [ -160.580840, 55.984079 ], [ -160.583491, 55.986468 ], [ -160.568356, 56.004062 ], [ -160.488708, 56.077214 ], [ -160.482208, 56.085234 ], [ -160.451417, 56.125564 ], [ -160.411381, 56.194138 ], [ -160.396338, 56.231775 ], [ -160.383094, 56.251352 ], [ -160.357156, 56.279582 ], [ -160.340249, 56.291271 ], [ -160.315896, 56.302227 ], [ -160.274604, 56.317151 ], [ -160.222878, 56.346868 ], [ -160.208383, 56.358022 ], [ -160.196329, 56.372550 ], [ -160.146252, 56.400176 ], [ -160.082592, 56.411094 ], [ -160.001477, 56.442201 ], [ -159.976758, 56.453951 ], [ -159.938337, 56.474192 ], [ -159.828049, 56.543935 ], [ -159.815477, 56.548941 ], [ -159.636156, 56.597390 ], [ -159.534961, 56.626529 ], [ -159.439380, 56.641332 ], [ -159.369434, 56.657073 ], [ -159.324421, 56.670356 ], [ -159.264871, 56.703136 ], [ -159.279894, 56.715667 ], [ -159.263113, 56.723321 ], [ -159.156455, 56.763324 ], [ -159.106652, 56.781126 ], [ -159.093468, 56.783704 ], [ -159.038354, 56.806006 ], [ -159.018304, 56.815094 ], [ -158.957471, 56.851184 ], [ -158.955338, 56.849762 ], [ -158.953543, 56.843418 ], [ -158.933589, 56.827905 ], [ -158.910730, 56.814797 ], [ -158.893212, 56.805788 ], [ -158.893211, 56.805788 ], [ -158.868797, 56.796648 ], [ -158.853294, 56.792620 ], [ -158.783590, 56.780750 ], [ -158.660298, 56.789015 ], [ -158.642293, 56.812850 ], [ -158.642845, 56.836608 ], [ -158.646812, 56.846992 ], [ -158.663659, 56.857055 ], [ -158.699788, 56.927362 ], [ -158.679293, 56.988625 ], [ -158.659945, 57.034585 ], [ -158.637364, 57.061364 ], [ -158.518429, 57.160550 ], [ -158.453711, 57.211790 ], [ -158.376249, 57.265542 ], [ -158.355066, 57.274850 ], [ -158.229883, 57.321534 ], [ -158.149710, 57.344916 ], [ -158.067030, 57.382915 ], [ -158.060041, 57.387456 ], [ -158.049932, 57.390141 ], [ -158.034246, 57.390230 ], [ -158.010538, 57.401456 ], [ -157.994670, 57.414234 ], [ -157.956239, 57.449383 ], [ -157.937241, 57.472048 ], [ -157.931624, 57.476208 ], [ -157.786046, 57.542189 ], [ -157.772496, 57.547055 ], [ -157.703852, 57.563455 ], [ -157.678891, 57.563888 ], [ -157.684833, 57.557746 ], [ -157.680416, 57.537727 ], [ -157.649389, 57.500331 ], [ -157.615137, 57.488691 ], [ -157.586910, 57.487156 ], [ -157.573129, 57.514525 ], [ -157.573472, 57.522732 ], [ -157.588339, 57.582152 ], [ -157.599644, 57.607950 ], [ -157.607387, 57.612537 ], [ -157.652202, 57.614794 ], [ -157.684282, 57.609974 ], [ -157.691291, 57.611131 ], [ -157.710645, 57.639946 ], [ -157.703782, 57.721768 ], [ -157.671061, 57.772866 ], [ -157.642226, 57.868777 ], [ -157.623886, 57.960502 ], [ -157.611802, 58.034263 ], [ -157.596601, 58.088670 ], [ -157.583636, 58.124307 ], [ -157.580924, 58.128096 ], [ -157.556556, 58.148445 ], [ -157.533329, 58.160335 ], [ -157.514474, 58.162978 ], [ -157.493784, 58.162148 ], [ -157.397350, 58.173383 ], [ -157.383099, 58.184607 ], [ -157.352316, 58.219097 ], [ -157.366928, 58.232669 ], [ -157.374511, 58.232117 ], [ -157.389237, 58.228091 ], [ -157.407918, 58.211871 ], [ -157.423325, 58.211360 ], [ -157.442712, 58.218875 ], [ -157.515475, 58.255638 ], [ -157.541564, 58.271883 ], [ -157.547209, 58.277535 ], [ -157.556343, 58.303749 ], [ -157.556865, 58.330715 ], [ -157.536176, 58.391597 ], [ -157.524477, 58.414506 ], [ -157.488108, 58.471705 ], [ -157.481487, 58.480771 ], [ -157.460880, 58.499693 ], [ -157.451918, 58.505618 ], [ -157.397197, 58.527333 ], [ -157.380259, 58.524398 ], [ -157.358487, 58.533876 ], [ -157.330683, 58.551516 ], [ -157.313572, 58.565043 ], [ -157.281327, 58.600236 ], [ -157.267437, 58.609794 ], [ -157.251462, 58.620786 ], [ -157.178834, 58.660440 ], [ -157.077914, 58.708103 ], [ -157.061928, 58.726102 ], [ -157.008226, 58.817139 ], [ -157.003401, 58.836822 ], [ -157.003607, 58.839306 ], [ -157.010984, 58.848400 ], [ -157.016088, 58.863490 ], [ -157.012392, 58.875889 ], [ -156.985833, 58.888654 ], [ -156.980888, 58.891031 ], [ -156.966649, 58.904074 ], [ -156.975946, 58.940896 ], [ -157.029517, 58.956203 ], [ -157.039206, 58.945921 ], [ -157.040625, 58.913391 ], [ -157.070584, 58.887816 ], [ -157.070601, 58.887808 ], [ -157.116866, 58.867533 ], [ -157.189554, 58.847724 ], [ -157.200998, 58.845012 ], [ -157.215710, 58.841526 ], [ -157.241396, 58.837558 ], [ -157.259663, 58.835665 ], [ -157.275451, 58.836136 ], [ -157.353132, 58.817729 ], [ -157.429531, 58.791071 ], [ -157.484062, 58.785962 ], [ -157.532654, 58.772638 ], [ -157.537543, 58.768542 ], [ -157.542326, 58.760962 ], [ -157.550603, 58.754514 ], [ -157.696472, 58.729975 ], [ -157.721786, 58.723212 ], [ -157.753583, 58.711924 ], [ -157.799597, 58.695590 ], [ -157.855396, 58.678277 ], [ -158.001016, 58.642893 ], [ -158.036593, 58.634248 ], [ -158.101646, 58.621090 ], [ -158.140307, 58.615020 ], [ -158.190283, 58.613710 ], [ -158.213861, 58.615828 ], [ -158.232276, 58.619902 ], [ -158.273036, 58.633470 ], [ -158.297189, 58.643147 ], [ -158.327038, 58.659835 ], [ -158.332093, 58.665313 ], [ -158.332860, 58.669274 ], [ -158.330216, 58.675043 ], [ -158.332394, 58.686814 ], [ -158.343545, 58.713634 ], [ -158.351481, 58.727693 ], [ -158.376873, 58.748043 ], [ -158.400475, 58.761182 ], [ -158.423828, 58.769847 ], [ -158.455210, 58.776972 ], [ -158.512547, 58.783110 ], [ -158.538516, 58.788394 ], [ -158.550626, 58.792915 ], [ -158.564833, 58.802715 ], [ -158.566397, 58.807137 ], [ -158.565870, 58.815429 ], [ -158.559499, 58.841819 ], [ -158.559132, 58.860776 ], [ -158.565718, 58.875828 ], [ -158.598645, 58.901230 ], [ -158.619684, 58.911048 ], [ -158.717436, 58.872462 ], [ -158.729581, 58.871218 ], [ -158.745305, 58.874098 ], [ -158.767748, 58.864264 ], [ -158.789632, 58.814257 ], [ -158.790786, 58.808424 ], [ -158.790378, 58.804712 ], [ -158.782365, 58.791157 ], [ -158.774626, 58.778593 ], [ -158.769800, 58.774141 ], [ -158.771246, 58.765109 ], [ -158.784886, 58.747739 ], [ -158.800959, 58.732842 ], [ -158.812116, 58.727845 ], [ -158.827105, 58.724495 ], [ -158.848225, 58.722736 ], [ -158.861207, 58.695580 ], [ -158.827852, 58.626432 ], [ -158.769131, 58.548650 ], [ -158.721173, 58.497971 ], [ -158.704052, 58.482759 ], [ -158.795316, 58.408032 ], [ -158.830598, 58.397095 ], [ -158.880927, 58.390670 ], [ -158.896067, 58.390065 ], [ -158.944154, 58.396885 ], [ -159.046105, 58.417466 ], [ -159.063346, 58.423139 ], [ -159.080496, 58.444256 ], [ -159.187347, 58.555609 ], [ -159.242290, 58.619067 ], [ -159.357625, 58.734520 ], [ -159.390664, 58.762362 ], [ -159.450831, 58.797736 ], [ -159.501768, 58.824304 ], [ -159.532347, 58.833609 ], [ -159.556355, 58.837414 ], [ -159.580287, 58.840691 ], [ -159.643549, 58.845063 ], [ -159.601899, 58.884671 ], [ -159.589811, 58.890359 ], [ -159.586966, 58.900314 ], [ -159.594788, 58.912402 ], [ -159.602610, 58.920935 ], [ -159.616120, 58.931601 ], [ -159.642430, 58.938712 ], [ -159.657362, 58.938712 ], [ -159.691493, 58.931601 ], [ -159.712114, 58.929468 ], [ -159.723491, 58.932312 ], [ -159.732932, 58.930739 ], [ -159.753754, 58.855724 ], [ -159.808777, 58.861542 ], [ -159.792923, 58.823971 ], [ -159.806305, 58.805595 ], [ -159.908386, 58.779903 ], [ -159.995667, 58.848301 ], [ -159.985352, 58.870464 ], [ -160.054047, 58.887001 ], [ -160.093109, 58.860798 ], [ -160.150528, 58.866062 ], [ -160.154480, 58.916874 ], [ -160.232788, 58.901127 ], [ -160.286346, 58.945007 ], [ -160.322922, 58.953953 ], [ -160.256592, 58.994480 ], [ -160.317780, 59.070477 ], [ -160.476578, 59.026047 ], [ -160.641785, 58.964489 ], [ -160.753067, 58.910431 ], [ -160.835358, 58.823494 ], [ -160.855194, 58.882523 ], [ -160.999741, 58.856655 ], [ -161.034520, 58.843894 ], [ -161.094249, 58.821979 ], [ -161.183380, 58.789276 ], [ -161.337982, 58.742912 ], [ -161.345396, 58.735450 ], [ -161.372711, 58.707958 ], [ -161.372314, 58.666172 ], [ -161.521347, 58.633141 ], [ -161.550537, 58.611160 ], [ -161.626450, 58.602581 ], [ -161.682907, 58.564671 ], [ -161.751999, 58.551842 ], [ -161.766296, 58.599224 ], [ -161.871216, 58.637478 ], [ -162.066269, 58.620800 ], [ -162.171722, 58.648441 ], [ -161.994644, 58.688828 ], [ -161.939163, 58.655613 ], [ -161.877213, 58.666138 ], [ -161.859055, 58.708637 ], [ -161.769501, 58.774937 ], [ -161.756622, 58.826477 ], [ -161.783981, 58.969421 ], [ -161.828171, 59.062702 ], [ -161.981964, 59.150997 ], [ -162.048584, 59.254177 ], [ -162.018982, 59.292278 ], [ -161.942993, 59.263828 ], [ -161.956528, 59.361771 ], [ -161.904053, 59.387341 ], [ -161.837936, 59.423836 ], [ -161.828125, 59.428188 ], [ -161.790375, 59.468197 ], [ -161.738312, 59.467010 ], [ -161.702530, 59.490906 ], [ -161.757980, 59.557152 ], [ -161.854752, 59.646214 ], [ -161.911163, 59.741741 ], [ -162.017059, 59.829426 ], [ -162.092361, 59.881104 ], [ -162.100708, 59.944675 ], [ -162.108560, 59.953861 ], [ -162.121072, 59.965241 ], [ -162.143049, 59.967506 ], [ -162.171759, 59.984163 ], [ -162.190616, 60.002030 ], [ -162.207225, 60.021834 ], [ -162.228371, 60.056313 ], [ -162.234642, 60.077333 ], [ -162.234043, 60.091345 ], [ -162.231426, 60.095297 ], [ -162.220054, 60.101078 ], [ -162.202141, 60.116450 ], [ -162.186148, 60.149605 ], [ -162.188441, 60.156509 ], [ -162.216366, 60.174190 ], [ -162.239267, 60.180100 ], [ -162.252564, 60.178623 ], [ -162.258105, 60.172713 ], [ -162.257318, 60.163353 ], [ -162.258328, 60.157939 ], [ -162.287089, 60.122173 ], [ -162.293850, 60.116580 ], [ -162.301090, 60.112146 ], [ -162.316922, 60.107590 ], [ -162.321481, 60.107970 ], [ -162.360185, 60.147360 ], [ -162.371131, 60.169019 ], [ -162.371870, 60.173451 ], [ -162.371032, 60.178616 ], [ -162.402270, 60.186425 ], [ -162.426344, 60.185331 ], [ -162.445727, 60.176448 ], [ -162.447904, 60.170480 ], [ -162.463026, 60.153020 ], [ -162.476214, 60.145536 ], [ -162.484234, 60.137964 ], [ -162.492346, 60.121804 ], [ -162.494327, 60.110675 ], [ -162.481175, 60.087544 ], [ -162.476759, 60.047690 ], [ -162.503647, 59.999230 ], [ -162.530118, 59.990110 ], [ -162.585518, 59.977230 ], [ -162.622569, 59.971809 ], [ -162.644231, 59.972954 ], [ -162.682717, 59.979432 ], [ -162.738592, 59.976321 ], [ -162.740059, 59.968797 ], [ -162.748554, 59.962664 ], [ -162.760007, 59.958013 ], [ -162.828585, 59.939142 ], [ -162.907260, 59.923682 ], [ -162.974977, 59.906443 ], [ -163.033128, 59.884135 ], [ -163.109595, 59.861633 ], [ -163.172633, 59.845058 ], [ -163.349027, 59.819890 ], [ -163.387670, 59.815880 ], [ -163.559148, 59.801391 ], [ -163.662607, 59.795710 ], [ -163.704795, 59.794805 ], [ -163.772229, 59.795624 ], [ -163.930798, 59.803853 ], [ -164.079837, 59.828034 ], [ -164.115117, 59.836688 ], [ -164.133393, 59.845612 ], [ -164.160319, 59.864679 ], [ -164.201811, 59.916119 ], [ -164.208475, 59.934461 ], [ -164.209843, 59.942874 ], [ -164.208306, 59.949046 ], [ -164.198545, 59.955109 ], [ -164.178705, 59.961810 ], [ -164.161024, 59.964076 ], [ -164.125430, 59.964626 ], [ -164.115080, 59.973166 ], [ -164.131810, 59.991177 ], [ -164.191600, 60.024496 ], [ -164.302968, 60.054233 ], [ -164.336111, 60.055527 ], [ -164.385471, 60.077190 ], [ -164.461194, 60.137824 ], [ -164.498556, 60.170546 ], [ -164.493861, 60.177397 ], [ -164.494317, 60.184833 ], [ -164.505677, 60.194304 ], [ -164.517647, 60.199493 ], [ -164.541699, 60.205279 ], [ -164.558343, 60.207042 ], [ -164.596070, 60.222874 ], [ -164.619501, 60.234938 ], [ -164.634362, 60.242980 ], [ -164.646332, 60.253303 ], [ -164.651996, 60.262745 ], [ -164.653098, 60.267902 ], [ -164.698889, 60.296298 ], [ -164.726570, 60.291475 ], [ -164.777233, 60.293833 ], [ -164.850355, 60.303615 ], [ -164.899296, 60.316787 ], [ -164.962678, 60.339660 ], [ -165.005576, 60.359812 ], [ -165.057585, 60.386287 ], [ -165.129403, 60.433707 ], [ -165.132893, 60.438867 ], [ -165.124792, 60.449191 ], [ -165.120728, 60.451196 ], [ -165.069693, 60.460893 ], [ -165.049070, 60.461516 ], [ -165.015155, 60.471414 ], [ -164.997870, 60.480459 ], [ -164.961439, 60.508391 ], [ -164.956788, 60.527837 ], [ -164.960843, 60.533845 ], [ -164.965488, 60.536701 ], [ -164.971280, 60.539558 ], [ -164.986952, 60.542406 ], [ -165.057440, 60.544631 ], [ -165.190449, 60.498001 ], [ -165.244442, 60.496298 ], [ -165.362975, 60.506866 ], [ -165.377559, 60.513164 ], [ -165.405071, 60.534650 ], [ -165.420349, 60.550692 ], [ -165.419788, 60.552418 ], [ -165.415193, 60.558160 ], [ -165.381052, 60.577987 ], [ -165.367676, 60.581158 ], [ -165.346721, 60.580603 ], [ -165.312937, 60.576313 ], [ -165.289651, 60.575755 ], [ -165.268717, 60.579488 ], [ -165.178617, 60.623927 ], [ -165.170458, 60.629091 ], [ -165.147184, 60.651160 ], [ -165.063148, 60.688645 ], [ -165.052642, 60.690068 ], [ -165.043300, 60.687468 ], [ -165.027535, 60.686008 ], [ -164.991665, 60.698840 ], [ -164.971250, 60.711434 ], [ -164.966591, 60.717438 ], [ -164.965410, 60.724306 ], [ -164.971839, 60.729730 ], [ -165.010452, 60.744789 ], [ -165.023904, 60.753128 ], [ -165.032074, 60.760022 ], [ -165.040843, 60.772660 ], [ -165.042584, 60.784430 ], [ -165.037889, 60.789010 ], [ -165.032615, 60.786704 ], [ -165.020309, 60.785539 ], [ -164.977663, 60.790360 ], [ -164.944914, 60.800379 ], [ -164.924180, 60.809331 ], [ -164.939313, 60.823463 ], [ -165.009703, 60.815060 ], [ -165.021430, 60.815086 ], [ -165.029620, 60.826001 ], [ -165.030183, 60.838050 ], [ -165.003679, 60.875580 ], [ -164.945958, 60.921060 ], [ -164.939496, 60.924774 ], [ -164.925994, 60.925063 ], [ -164.917542, 60.928144 ], [ -164.903903, 60.942213 ], [ -164.921256, 60.946509 ], [ -164.940065, 60.945369 ], [ -165.007096, 60.922058 ], [ -165.032040, 60.903986 ], [ -165.016941, 60.891071 ], [ -165.080907, 60.860224 ], [ -165.132488, 60.850145 ], [ -165.176774, 60.847149 ], [ -165.177531, 60.858865 ], [ -165.223480, 60.896450 ], [ -165.216942, 60.914322 ], [ -165.157111, 60.917363 ], [ -165.155232, 60.929186 ], [ -165.172467, 60.940328 ], [ -165.194945, 60.973900 ], [ -165.194964, 60.979915 ], [ -165.190271, 60.983073 ], [ -165.133937, 61.011250 ], [ -165.115681, 61.016097 ], [ -165.097425, 61.016658 ], [ -165.096828, 61.014944 ], [ -165.083282, 61.012933 ], [ -165.020265, 61.011153 ], [ -164.998172, 61.013826 ], [ -164.961527, 61.024166 ], [ -164.951103, 61.031020 ], [ -164.950573, 61.048079 ], [ -164.927825, 61.084392 ], [ -164.902245, 61.077902 ], [ -164.870450, 61.079564 ], [ -164.868009, 61.096394 ], [ -164.883441, 61.105924 ], [ -164.891286, 61.108246 ], [ -164.941253, 61.110863 ], [ -164.981718, 61.109691 ], [ -164.991273, 61.107232 ], [ -164.997636, 61.104430 ], [ -164.998547, 61.079492 ], [ -164.993599, 61.076241 ], [ -164.991227, 61.072192 ], [ -164.995695, 61.058035 ], [ -165.011271, 61.051984 ], [ -165.029551, 61.054010 ], [ -165.057842, 61.059746 ], [ -165.119781, 61.078640 ], [ -165.167636, 61.113502 ], [ -165.175321, 61.120926 ], [ -165.177110, 61.125494 ], [ -165.167072, 61.133487 ], [ -165.165857, 61.136567 ], [ -165.168860, 61.144913 ], [ -165.172994, 61.146919 ], [ -165.203757, 61.150341 ], [ -165.289700, 61.181714 ], [ -165.307976, 61.181823 ], [ -165.325552, 61.169306 ], [ -165.344389, 61.123691 ], [ -165.350154, 61.104545 ], [ -165.350113, 61.097407 ], [ -165.347082, 61.084847 ], [ -165.342321, 61.079994 ], [ -165.336996, 61.077709 ], [ -165.338136, 61.073432 ], [ -165.343442, 61.070564 ], [ -165.370544, 61.066821 ], [ -165.403007, 61.067060 ], [ -165.498726, 61.079149 ], [ -165.549613, 61.088162 ], [ -165.578127, 61.100361 ], [ -165.590682, 61.111169 ], [ -165.631996, 61.220708 ], [ -165.634048, 61.237557 ], [ -165.627549, 61.258125 ], [ -165.620589, 61.268586 ], [ -165.623317, 61.278431 ], [ -165.635791, 61.285456 ], [ -165.662892, 61.294570 ], [ -165.787442, 61.310063 ], [ -165.809373, 61.306827 ], [ -165.816434, 61.303363 ], [ -165.831365, 61.306719 ], [ -165.858993, 61.318865 ], [ -165.879599, 61.335044 ], [ -165.915445, 61.387686 ], [ -165.921194, 61.403080 ], [ -165.921950, 61.409638 ], [ -165.918612, 61.419087 ], [ -165.844525, 61.440601 ], [ -165.800525, 61.449657 ], [ -165.791085, 61.449852 ], [ -165.767226, 61.456950 ], [ -165.748503, 61.476446 ], [ -165.746352, 61.489304 ], [ -165.754317, 61.498704 ], [ -165.807627, 61.529171 ], [ -165.912496, 61.556200 ], [ -165.964035, 61.555919 ], [ -165.981879, 61.551249 ], [ -165.985948, 61.546650 ], [ -165.999535, 61.539720 ], [ -166.034748, 61.535221 ], [ -166.075524, 61.532672 ], [ -166.088680, 61.522885 ], [ -166.079983, 61.513464 ], [ -166.058242, 61.500419 ], [ -166.075398, 61.492980 ], [ -166.108269, 61.492475 ], [ -166.124202, 61.504645 ], [ -166.158345, 61.541537 ], [ -166.165232, 61.550618 ], [ -166.178627, 61.574807 ], [ -166.181850, 61.581342 ], [ -166.182688, 61.588481 ], [ -166.158976, 61.700437 ], [ -166.153178, 61.714931 ], [ -166.143757, 61.724352 ], [ -166.134285, 61.723919 ], [ -166.133020, 61.721918 ], [ -166.134402, 61.709068 ], [ -166.138684, 61.667101 ], [ -166.140133, 61.639562 ], [ -166.139409, 61.632315 ], [ -166.132162, 61.631590 ], [ -166.053983, 61.638201 ], [ -166.031834, 61.641199 ], [ -166.015134, 61.645866 ], [ -165.967894, 61.654432 ], [ -165.903783, 61.663632 ], [ -165.822140, 61.670610 ], [ -165.809933, 61.673029 ], [ -165.810000, 61.689360 ], [ -165.856791, 61.690734 ], [ -165.934968, 61.706299 ], [ -165.993851, 61.723105 ], [ -166.006693, 61.729879 ], [ -166.092081, 61.800733 ], [ -166.094045, 61.805296 ], [ -166.094312, 61.813859 ], [ -166.085334, 61.816498 ], [ -165.955265, 61.832408 ], [ -165.870982, 61.826013 ], [ -165.758413, 61.825444 ], [ -165.747090, 61.827720 ], [ -165.736904, 61.832901 ], [ -165.736429, 61.839188 ], [ -165.730439, 61.842075 ], [ -165.696038, 61.847055 ], [ -165.640216, 61.848041 ], [ -165.608427, 61.855892 ], [ -165.600043, 61.859663 ], [ -165.612337, 61.871907 ], [ -165.667939, 61.900275 ], [ -165.703482, 61.921572 ], [ -165.725818, 61.947184 ], [ -165.741481, 61.971392 ], [ -165.756806, 62.006337 ], [ -165.756386, 62.014032 ], [ -165.748641, 62.047145 ], [ -165.743522, 62.062280 ], [ -165.734117, 62.076873 ], [ -165.706155, 62.108365 ], [ -165.672037, 62.139890 ], [ -165.620746, 62.172616 ], [ -165.500322, 62.255451 ], [ -165.373713, 62.338196 ], [ -165.337722, 62.359031 ], [ -165.311967, 62.378812 ], [ -165.294962, 62.403353 ], [ -165.269270, 62.427352 ], [ -165.199804, 62.469637 ], [ -165.096155, 62.522452 ], [ -165.046045, 62.540420 ], [ -164.868059, 62.571142 ], [ -164.770232, 62.592082 ], [ -164.777244, 62.609083 ], [ -164.796056, 62.611486 ], [ -164.842846, 62.604504 ], [ -164.893740, 62.599671 ], [ -164.914064, 62.602530 ], [ -164.928813, 62.608992 ], [ -164.935992, 62.613456 ], [ -164.940464, 62.618431 ], [ -164.942068, 62.624956 ], [ -164.932145, 62.651071 ], [ -164.912910, 62.657496 ], [ -164.865896, 62.645817 ], [ -164.857109, 62.635513 ], [ -164.837337, 62.631446 ], [ -164.817110, 62.636697 ], [ -164.857182, 62.768830 ], [ -164.863640, 62.772620 ], [ -164.870348, 62.774135 ], [ -164.877300, 62.784320 ], [ -164.877773, 62.797774 ], [ -164.875640, 62.806254 ], [ -164.850838, 62.839510 ], [ -164.836318, 62.852168 ], [ -164.795229, 62.858486 ], [ -164.768253, 62.871331 ], [ -164.751982, 62.893169 ], [ -164.742134, 62.920144 ], [ -164.745514, 62.944865 ], [ -164.765769, 62.954907 ], [ -164.766117, 62.958228 ], [ -164.716841, 63.006264 ], [ -164.685213, 63.022191 ], [ -164.583735, 63.058457 ], [ -164.580201, 63.070127 ], [ -164.611616, 63.077673 ], [ -164.641186, 63.072680 ], [ -164.643672, 63.074975 ], [ -164.644886, 63.079268 ], [ -164.640324, 63.091257 ], [ -164.633943, 63.097820 ], [ -164.493118, 63.177670 ], [ -164.423449, 63.211977 ], [ -164.363592, 63.226280 ], [ -164.209475, 63.251472 ], [ -164.140096, 63.259336 ], [ -164.066991, 63.262276 ], [ -164.036565, 63.261204 ], [ -163.970266, 63.248291 ], [ -163.909405, 63.232514 ], [ -163.885059, 63.222308 ], [ -163.788882, 63.217482 ], [ -163.755283, 63.217461 ], [ -163.732650, 63.213257 ], [ -163.725805, 63.210620 ], [ -163.724072, 63.206592 ], [ -163.703980, 63.188107 ], [ -163.650294, 63.157564 ], [ -163.616272, 63.141213 ], [ -163.590122, 63.146091 ], [ -163.529938, 63.135400 ], [ -163.520806, 63.123280 ], [ -163.507217, 63.113685 ], [ -163.474794, 63.099053 ], [ -163.433968, 63.089296 ], [ -163.417683, 63.083874 ], [ -163.364979, 63.055805 ], [ -163.316203, 63.037763 ], [ -163.130853, 63.049387 ], [ -163.053996, 63.058334 ], [ -163.040500, 63.062151 ], [ -162.998302, 63.089286 ], [ -162.919727, 63.120153 ], [ -162.901643, 63.125597 ], [ -162.844559, 63.154191 ], [ -162.837850, 63.159224 ], [ -162.834926, 63.164621 ], [ -162.840187, 63.187579 ], [ -162.839167, 63.193004 ], [ -162.834354, 63.198076 ], [ -162.821122, 63.205596 ], [ -162.769536, 63.217069 ], [ -162.758741, 63.217187 ], [ -162.747621, 63.213572 ], [ -162.724080, 63.214615 ], [ -162.688083, 63.220608 ], [ -162.662614, 63.229906 ], [ -162.587754, 63.275727 ], [ -162.571695, 63.285556 ], [ -162.437059, 63.377836 ], [ -162.432169, 63.382606 ], [ -162.426095, 63.393651 ], [ -162.428744, 63.401055 ], [ -162.421530, 63.409014 ], [ -162.384625, 63.435797 ], [ -162.352274, 63.454069 ], [ -162.301869, 63.473422 ], [ -162.271089, 63.487711 ], [ -162.268242, 63.490799 ], [ -162.267833, 63.495084 ], [ -162.288532, 63.526412 ], [ -162.301471, 63.537350 ], [ -162.296731, 63.540108 ], [ -162.252411, 63.541753 ], [ -162.190145, 63.529886 ], [ -162.151574, 63.517952 ], [ -162.123249, 63.512807 ], [ -162.108597, 63.511927 ], [ -162.073156, 63.513768 ], [ -162.041687, 63.489650 ], [ -162.045709, 63.475434 ], [ -162.050132, 63.472850 ], [ -162.050543, 63.470589 ], [ -162.039444, 63.458930 ], [ -162.025552, 63.447539 ], [ -161.930714, 63.444843 ], [ -161.839897, 63.447313 ], [ -161.765832, 63.453803 ], [ -161.705630, 63.464061 ], [ -161.676526, 63.465003 ], [ -161.591632, 63.454244 ], [ -161.583772, 63.447857 ], [ -161.553077, 63.449217 ], [ -161.450463, 63.457178 ], [ -161.310181, 63.471312 ], [ -161.191163, 63.490072 ], [ -161.136758, 63.504525 ], [ -161.134230, 63.506735 ], [ -161.119964, 63.532544 ], [ -161.102721, 63.547800 ], [ -161.036049, 63.579566 ], [ -160.924877, 63.644814 ], [ -160.904353, 63.658024 ], [ -160.809089, 63.731332 ], [ -160.783304, 63.752893 ], [ -160.765560, 63.773552 ], [ -160.761974, 63.793453 ], [ -160.766291, 63.835189 ], [ -160.787624, 63.869196 ], [ -160.810798, 63.904646 ], [ -160.851979, 63.954409 ], [ -160.877686, 63.977265 ], [ -160.892455, 63.985943 ], [ -160.933740, 64.049729 ], [ -160.951641, 64.090067 ], [ -160.955132, 64.138030 ], [ -160.956425, 64.191732 ], [ -160.953596, 64.197775 ], [ -160.946857, 64.204158 ], [ -160.976038, 64.235761 ], [ -161.228941, 64.370747 ], [ -161.263519, 64.398166 ], [ -161.313668, 64.400874 ], [ -161.410382, 64.422107 ], [ -161.463026, 64.420074 ], [ -161.470182, 64.418814 ], [ -161.492926, 64.407851 ], [ -161.504903, 64.423074 ], [ -161.479093, 64.486401 ], [ -161.469046, 64.506575 ], [ -161.388621, 64.532783 ], [ -161.373572, 64.535028 ], [ -161.362901, 64.526913 ], [ -161.351145, 64.521382 ], [ -161.321343, 64.513865 ], [ -161.234092, 64.500365 ], [ -161.198029, 64.496626 ], [ -161.155518, 64.494687 ], [ -161.078031, 64.494094 ], [ -161.024185, 64.499719 ], [ -161.015095, 64.502124 ], [ -161.013228, 64.507521 ], [ -161.017140, 64.517124 ], [ -161.037534, 64.522246 ], [ -161.045947, 64.524948 ], [ -161.053060, 64.528504 ], [ -161.055549, 64.532416 ], [ -161.052348, 64.537395 ], [ -161.049148, 64.540952 ], [ -160.992894, 64.541295 ], [ -160.970555, 64.543884 ], [ -160.940493, 64.550000 ], [ -160.802048, 64.610352 ], [ -160.793356, 64.619317 ], [ -160.791614, 64.623055 ], [ -160.783570, 64.680581 ], [ -160.783398, 64.717160 ], [ -160.869571, 64.783797 ], [ -160.935974, 64.822370 ], [ -160.986417, 64.833984 ], [ -161.079718, 64.869549 ], [ -161.102755, 64.880661 ], [ -161.133062, 64.898219 ], [ -161.149655, 64.911985 ], [ -161.149366, 64.916558 ], [ -161.145725, 64.920534 ], [ -161.176009, 64.927161 ], [ -161.192120, 64.921366 ], [ -161.195202, 64.918178 ], [ -161.200893, 64.905796 ], [ -161.200964, 64.898659 ], [ -161.198586, 64.894403 ], [ -161.213756, 64.883324 ], [ -161.264283, 64.861970 ], [ -161.293049, 64.853243 ], [ -161.327848, 64.829836 ], [ -161.357867, 64.805922 ], [ -161.366808, 64.793777 ], [ -161.364438, 64.782099 ], [ -161.367483, 64.778907 ], [ -161.376985, 64.773036 ], [ -161.413493, 64.762723 ], [ -161.429860, 64.759027 ], [ -161.518211, 64.753250 ], [ -161.595506, 64.764478 ], [ -161.630287, 64.771290 ], [ -161.645520, 64.776452 ], [ -161.667261, 64.788981 ], [ -161.878363, 64.709476 ], [ -161.902429, 64.703851 ], [ -161.939279, 64.699119 ], [ -162.096528, 64.690983 ], [ -162.138832, 64.685934 ], [ -162.168516, 64.680290 ], [ -162.188146, 64.672395 ], [ -162.216620, 64.656213 ], [ -162.219718, 64.644176 ], [ -162.234477, 64.619336 ], [ -162.270025, 64.608710 ], [ -162.290571, 64.605496 ], [ -162.342308, 64.592240 ], [ -162.539996, 64.530931 ], [ -162.554875, 64.520341 ], [ -162.614220, 64.470702 ], [ -162.615452, 64.467077 ], [ -162.602178, 64.456869 ], [ -162.603020, 64.448666 ], [ -162.632242, 64.385734 ], [ -162.645156, 64.379783 ], [ -162.667680, 64.375356 ], [ -162.719218, 64.359971 ], [ -162.768424, 64.333516 ], [ -162.790167, 64.325182 ], [ -162.795636, 64.327716 ], [ -162.805385, 64.336023 ], [ -162.810004, 64.352647 ], [ -162.807205, 64.364643 ], [ -162.800350, 64.374695 ], [ -162.802266, 64.395327 ], [ -162.806612, 64.405608 ], [ -162.836540, 64.436702 ], [ -162.858556, 64.474864 ], [ -162.857562, 64.499780 ], [ -162.940776, 64.542417 ], [ -162.969250, 64.546870 ], [ -163.030657, 64.542353 ], [ -163.042618, 64.540046 ], [ -163.032057, 64.525608 ], [ -163.028887, 64.511908 ], [ -163.027158, 64.477945 ], [ -163.091486, 64.437736 ], [ -163.107459, 64.409192 ], [ -163.119450, 64.403808 ], [ -163.150789, 64.397249 ], [ -163.175336, 64.399334 ], [ -163.229206, 64.430019 ], [ -163.249092, 64.456223 ], [ -163.253027, 64.469501 ], [ -163.350926, 64.505859 ], [ -163.412900, 64.524986 ], [ -163.451482, 64.534820 ], [ -163.597834, 64.563356 ], [ -163.651943, 64.567299 ], [ -163.829739, 64.574965 ], [ -163.875774, 64.572935 ], [ -163.896180, 64.564483 ], [ -163.974352, 64.551370 ], [ -163.994532, 64.551742 ], [ -164.044839, 64.559167 ], [ -164.071997, 64.561280 ], [ -164.147059, 64.564552 ], [ -164.260064, 64.564220 ], [ -164.307273, 64.561488 ], [ -164.421871, 64.545256 ], [ -164.491327, 64.529824 ], [ -164.548298, 64.516738 ], [ -164.807747, 64.449432 ], [ -164.835679, 64.444917 ], [ -164.874421, 64.441195 ], [ -165.001961, 64.433917 ], [ -165.016519, 64.434392 ], [ -165.214182, 64.469726 ], [ -165.413443, 64.497939 ], [ -165.550573, 64.512235 ], [ -165.751093, 64.536437 ], [ -165.819595, 64.540171 ], [ -165.919704, 64.548660 ], [ -166.189546, 64.575798 ], [ -166.236939, 64.583558 ], [ -166.392403, 64.638161 ], [ -166.413926, 64.651229 ], [ -166.451788, 64.691761 ], [ -166.474714, 64.719267 ], [ -166.483801, 64.733419 ], [ -166.481076, 64.786156 ], [ -166.478978, 64.797036 ], [ -166.430516, 64.807715 ], [ -166.417028, 64.818740 ], [ -166.410198, 64.827968 ], [ -166.407303, 64.834278 ], [ -166.407315, 64.852281 ], [ -166.409331, 64.859755 ], [ -166.415624, 64.871928 ], [ -166.432246, 64.883160 ], [ -166.530518, 64.937114 ], [ -166.586066, 64.955712 ], [ -166.615110, 64.964330 ], [ -166.636843, 64.968113 ], [ -166.690814, 64.985372 ], [ -166.704830, 64.997051 ], [ -166.705283, 64.999846 ], [ -166.695206, 65.005184 ], [ -166.688762, 65.018029 ], [ -166.692426, 65.029629 ], [ -166.696453, 65.035857 ], [ -166.732794, 65.053498 ], [ -166.820910, 65.077053 ], [ -166.860402, 65.090866 ], [ -166.885451, 65.105856 ], [ -166.911922, 65.125965 ], [ -166.910131, 65.134024 ], [ -166.906687, 65.136320 ], [ -166.897720, 65.139028 ], [ -166.886677, 65.138763 ], [ -166.872666, 65.136928 ], [ -166.837496, 65.128146 ], [ -166.826753, 65.119778 ], [ -166.816790, 65.117089 ], [ -166.755554, 65.110585 ], [ -166.670320, 65.109720 ], [ -166.638411, 65.113586 ], [ -166.634449, 65.125873 ], [ -166.606070, 65.135992 ], [ -166.521506, 65.149242 ], [ -166.509566, 65.152719 ], [ -166.479913, 65.167249 ], [ -166.464192, 65.177086 ], [ -166.459984, 65.183284 ], [ -166.460050, 65.189897 ], [ -166.465342, 65.194818 ], [ -166.474839, 65.217663 ], [ -166.475297, 65.224335 ], [ -166.451711, 65.236178 ], [ -166.386271, 65.254143 ], [ -166.347189, 65.276341 ], [ -166.360618, 65.288631 ], [ -166.377721, 65.297983 ], [ -166.439404, 65.319058 ], [ -166.485968, 65.330900 ], [ -166.518640, 65.335824 ], [ -166.551097, 65.338406 ], [ -166.572735, 65.338155 ], [ -166.596964, 65.336246 ], [ -166.625987, 65.325121 ], [ -166.655179, 65.324938 ], [ -166.679717, 65.326856 ], [ -166.796001, 65.337184 ], [ -166.851646, 65.348485 ], [ -166.899681, 65.360642 ], [ -167.026782, 65.381967 ], [ -167.101860, 65.387737 ], [ -167.170465, 65.389269 ], [ -167.398458, 65.400259 ], [ -167.474024, 65.412744 ], [ -167.574639, 65.444979 ], [ -167.620388, 65.463463 ], [ -167.621371, 65.466589 ], [ -167.710888, 65.498524 ], [ -167.841836, 65.530249 ], [ -167.851234, 65.538181 ], [ -167.909599, 65.550876 ], [ -167.967065, 65.558599 ], [ -167.997178, 65.559346 ], [ -168.047620, 65.569149 ], [ -168.075200, 65.576355 ], [ -168.099046, 65.592239 ], [ -168.099356, 65.599045 ], [ -168.096140, 65.600882 ], [ -168.100003, 65.610972 ], [ -168.127044, 65.626584 ], [ -168.134663, 65.640840 ], [ -168.128930, 65.655744 ], [ -168.103708, 65.685552 ], [ -167.979889, 65.727972 ], [ -167.857216, 65.754341 ], [ -167.735690, 65.776124 ], [ -167.539643, 65.820836 ], [ -167.314935, 65.885039 ], [ -167.246146, 65.911408 ], [ -167.139524, 65.948095 ], [ -166.977872, 65.996247 ], [ -166.956089, 66.007711 ], [ -166.827684, 66.051277 ], [ -166.597243, 66.118919 ], [ -166.526162, 66.141849 ], [ -166.330971, 66.189514 ], [ -166.308287, 66.180287 ], [ -166.282123, 66.177089 ], [ -166.245693, 66.169920 ], [ -166.223186, 66.171033 ], [ -166.190692, 66.167410 ], [ -166.181579, 66.164626 ], [ -166.143876, 66.159265 ], [ -166.127228, 66.155204 ], [ -166.122248, 66.152622 ], [ -166.122486, 66.149417 ], [ -166.139023, 66.146991 ], [ -166.149870, 66.141303 ], [ -166.148866, 66.137747 ], [ -166.138305, 66.131966 ], [ -166.101618, 66.125198 ], [ -166.087392, 66.119610 ], [ -166.085179, 66.115369 ], [ -166.080015, 66.112602 ], [ -166.046471, 66.107833 ], [ -166.009898, 66.110750 ], [ -165.959741, 66.109410 ], [ -165.925101, 66.111066 ], [ -165.892999, 66.115767 ], [ -165.876740, 66.114802 ], [ -165.845082, 66.107971 ], [ -165.799096, 66.100823 ], [ -165.763510, 66.098885 ], [ -165.758784, 66.092915 ], [ -165.733616, 66.096231 ], [ -165.697845, 66.104041 ], [ -165.693048, 66.103303 ], [ -165.661901, 66.117944 ], [ -165.649344, 66.119562 ], [ -165.646741, 66.118152 ], [ -165.650220, 66.114746 ], [ -165.647717, 66.113487 ], [ -165.630793, 66.117643 ], [ -165.607237, 66.119397 ], [ -165.599803, 66.117686 ], [ -165.588512, 66.119695 ], [ -165.584292, 66.129489 ], [ -165.544886, 66.142901 ], [ -165.544660, 66.151933 ], [ -165.551682, 66.161584 ], [ -165.578906, 66.163270 ], [ -165.594386, 66.168083 ], [ -165.620879, 66.180572 ], [ -165.653814, 66.192453 ], [ -165.690509, 66.202029 ], [ -165.760518, 66.209561 ], [ -165.813473, 66.207174 ], [ -165.848314, 66.211367 ], [ -165.853291, 66.212684 ], [ -165.867148, 66.220871 ], [ -165.874462, 66.227999 ], [ -165.877514, 66.240309 ], [ -165.866468, 66.247073 ], [ -165.853577, 66.263185 ], [ -165.859933, 66.274220 ], [ -165.872497, 66.284271 ], [ -165.880454, 66.295160 ], [ -165.882129, 66.299766 ], [ -165.882496, 66.311603 ], [ -165.869233, 66.316112 ], [ -165.805030, 66.333310 ], [ -165.668600, 66.361971 ], [ -165.407204, 66.420441 ], [ -165.187082, 66.465154 ], [ -165.124026, 66.473179 ], [ -164.711009, 66.542541 ], [ -164.400727, 66.581110 ], [ -164.400724, 66.581110 ], [ -164.345015, 66.580834 ], [ -164.094554, 66.592281 ], [ -163.979581, 66.593953 ], [ -163.978095, 66.592616 ], [ -163.978492, 66.591012 ], [ -163.985713, 66.576085 ], [ -163.908341, 66.555970 ], [ -163.875235, 66.558248 ], [ -163.850476, 66.563102 ], [ -163.754171, 66.551284 ], [ -163.727179, 66.516388 ], [ -163.728308, 66.498552 ], [ -163.730247, 66.491372 ], [ -163.761967, 66.454874 ], [ -163.798687, 66.436875 ], [ -163.844221, 66.418978 ], [ -163.856359, 66.409296 ], [ -163.873106, 66.389015 ], [ -163.873096, 66.328550 ], [ -163.849163, 66.307639 ], [ -163.839825, 66.304079 ], [ -163.829977, 66.280398 ], [ -163.830077, 66.272000 ], [ -163.843108, 66.259869 ], [ -163.904813, 66.230303 ], [ -163.955901, 66.217170 ], [ -164.046937, 66.209404 ], [ -164.078765, 66.201764 ], [ -164.092715, 66.184537 ], [ -164.089237, 66.182338 ], [ -164.078677, 66.181019 ], [ -164.007503, 66.179386 ], [ -163.916551, 66.190494 ], [ -163.878306, 66.160279 ], [ -163.861406, 66.136665 ], [ -163.847401, 66.122106 ], [ -163.803580, 66.100059 ], [ -163.772467, 66.081922 ], [ -163.768357, 66.073662 ], [ -163.767510, 66.060803 ], [ -163.623921, 66.058281 ], [ -163.540115, 66.069921 ], [ -163.502704, 66.081165 ], [ -163.495845, 66.085388 ], [ -163.344759, 66.084937 ], [ -163.313843, 66.075287 ], [ -163.287768, 66.069229 ], [ -163.168568, 66.059290 ], [ -163.146726, 66.059487 ], [ -163.093003, 66.062960 ], [ -163.047140, 66.068327 ], [ -162.997473, 66.076845 ], [ -162.876016, 66.082833 ], [ -162.791232, 66.089138 ], [ -162.750705, 66.090160 ], [ -162.681304, 66.061574 ], [ -162.680204, 66.058129 ], [ -162.673584, 66.053685 ], [ -162.635985, 66.040366 ], [ -162.622284, 66.039526 ], [ -162.530755, 66.045062 ], [ -162.457670, 66.058579 ], [ -162.423726, 66.048984 ], [ -162.413452, 66.035085 ], [ -162.391892, 66.028724 ], [ -162.372147, 66.027985 ], [ -162.331284, 66.031403 ], [ -162.269670, 66.042104 ], [ -162.205889, 66.056753 ], [ -162.139516, 66.078819 ], [ -162.137424, 66.078547 ], [ -162.129709, 66.069487 ], [ -162.121788, 66.067391 ], [ -162.025701, 66.062829 ], [ -161.950043, 66.040302 ], [ -161.838018, 66.022582 ], [ -161.817091, 66.033089 ], [ -161.812306, 66.041688 ], [ -161.798585, 66.055317 ], [ -161.775537, 66.073732 ], [ -161.680577, 66.111588 ], [ -161.665300, 66.122177 ], [ -161.627008, 66.153194 ], [ -161.623983, 66.162082 ], [ -161.613943, 66.176693 ], [ -161.548429, 66.239912 ], [ -161.484539, 66.262426 ], [ -161.367875, 66.258653 ], [ -161.341189, 66.255100 ], [ -161.337269, 66.243163 ], [ -161.332120, 66.236431 ], [ -161.320778, 66.223591 ], [ -161.313025, 66.221051 ], [ -161.263655, 66.214154 ], [ -161.198971, 66.210949 ], [ -161.145397, 66.220179 ], [ -161.087342, 66.234208 ], [ -161.067871, 66.235164 ], [ -161.052732, 66.231018 ], [ -161.035866, 66.229437 ], [ -161.000026, 66.233126 ], [ -160.993965, 66.234444 ], [ -160.991066, 66.236816 ], [ -160.990275, 66.239715 ], [ -160.995905, 66.251962 ], [ -160.998540, 66.254935 ], [ -161.061034, 66.283804 ], [ -161.079328, 66.307126 ], [ -161.089161, 66.315140 ], [ -161.107995, 66.328367 ], [ -161.129512, 66.336248 ], [ -161.163100, 66.342291 ], [ -161.219834, 66.348918 ], [ -161.360743, 66.375943 ], [ -161.525554, 66.397046 ], [ -161.694404, 66.396174 ], [ -161.817538, 66.360815 ], [ -161.912946, 66.344436 ], [ -161.916309, 66.349481 ], [ -161.880900, 66.398763 ], [ -161.872447, 66.414132 ], [ -161.863387, 66.440783 ], [ -161.864156, 66.488195 ], [ -161.874880, 66.511446 ], [ -162.029043, 66.586504 ], [ -162.091453, 66.605963 ], [ -162.097910, 66.609863 ], [ -162.105641, 66.622584 ], [ -162.113311, 66.639596 ], [ -162.124348, 66.651291 ], [ -162.140377, 66.664737 ], [ -162.175398, 66.687789 ], [ -162.228635, 66.709770 ], [ -162.268767, 66.717905 ], [ -162.349774, 66.726713 ], [ -162.422414, 66.731581 ], [ -162.501415, 66.742503 ], [ -162.500520, 66.749751 ], [ -162.502502, 66.758875 ], [ -162.512617, 66.777733 ], [ -162.544381, 66.804872 ], [ -162.572224, 66.825364 ], [ -162.594237, 66.837647 ], [ -162.614738, 66.846476 ], [ -162.621564, 66.850860 ], [ -162.624945, 66.855031 ], [ -162.626696, 66.859572 ], [ -162.623054, 66.874325 ], [ -162.614590, 66.885941 ], [ -162.601052, 66.898455 ], [ -162.582856, 66.904292 ], [ -162.497438, 66.919860 ], [ -162.346352, 66.934792 ], [ -162.281116, 66.915679 ], [ -162.271769, 66.904144 ], [ -162.228675, 66.866623 ], [ -162.117304, 66.798482 ], [ -162.096878, 66.788500 ], [ -162.073714, 66.783324 ], [ -162.049123, 66.780639 ], [ -162.013623, 66.779406 ], [ -162.011455, 66.759063 ], [ -162.029615, 66.734580 ], [ -162.041314, 66.723764 ], [ -162.058825, 66.716253 ], [ -162.068253, 66.709857 ], [ -162.074634, 66.703681 ], [ -162.081515, 66.693052 ], [ -162.078010, 66.664048 ], [ -162.073620, 66.651217 ], [ -162.069068, 66.645700 ], [ -162.033156, 66.631585 ], [ -161.968863, 66.602611 ], [ -161.953413, 66.592365 ], [ -161.932642, 66.572547 ], [ -161.925440, 66.561215 ], [ -161.915856, 66.551339 ], [ -161.877098, 66.536877 ], [ -161.765368, 66.496934 ], [ -161.624334, 66.450143 ], [ -161.574129, 66.438566 ], [ -161.516449, 66.441839 ], [ -161.435312, 66.454162 ], [ -161.326349, 66.478371 ], [ -161.279803, 66.505179 ], [ -161.293210, 66.520591 ], [ -161.399006, 66.523529 ], [ -161.454092, 66.522205 ], [ -161.469227, 66.522843 ], [ -161.483604, 66.525626 ], [ -161.493509, 66.530977 ], [ -161.494988, 66.534443 ], [ -161.486308, 66.538037 ], [ -161.482869, 66.543724 ], [ -161.490400, 66.560844 ], [ -161.541756, 66.581379 ], [ -161.598953, 66.593181 ], [ -161.665368, 66.610433 ], [ -161.693125, 66.620562 ], [ -161.866180, 66.704978 ], [ -161.881671, 66.716796 ], [ -161.861540, 66.797076 ], [ -161.846258, 66.813647 ], [ -161.824170, 66.817889 ], [ -161.796307, 66.833126 ], [ -161.785495, 66.846547 ], [ -161.782218, 66.859956 ], [ -161.719587, 66.916898 ], [ -161.692146, 66.945033 ], [ -161.685775, 66.955794 ], [ -161.688506, 66.959799 ], [ -161.686280, 66.961367 ], [ -161.674359, 66.961965 ], [ -161.566678, 66.934775 ], [ -161.489169, 66.936950 ], [ -161.485121, 66.945647 ], [ -161.485383, 66.960818 ], [ -161.505747, 66.974314 ], [ -161.530525, 66.984951 ], [ -161.622160, 67.008146 ], [ -161.697392, 67.010849 ], [ -161.711715, 67.001044 ], [ -161.759641, 67.030572 ], [ -161.799175, 67.047502 ], [ -161.810256, 67.050281 ], [ -161.836325, 67.051777 ], [ -161.850188, 67.052186 ], [ -161.893702, 67.049075 ], [ -162.123181, 67.025790 ], [ -162.211633, 67.006710 ], [ -162.233964, 66.999568 ], [ -162.234302, 66.994581 ], [ -162.239230, 66.993814 ], [ -162.353954, 66.995128 ], [ -162.385074, 66.991235 ], [ -162.415866, 66.984710 ], [ -162.432615, 66.985089 ], [ -162.449219, 66.988391 ], [ -162.462616, 66.994323 ], [ -162.466855, 66.999339 ], [ -162.461822, 67.004426 ], [ -162.465522, 67.026629 ], [ -162.472765, 67.038368 ], [ -162.481257, 67.043113 ], [ -162.490552, 67.043331 ], [ -162.504523, 67.039629 ], [ -162.514878, 67.031069 ], [ -162.519046, 67.016552 ], [ -162.603562, 67.010490 ], [ -162.640260, 67.010869 ], [ -162.654094, 67.013099 ], [ -162.661661, 67.018890 ], [ -162.660733, 67.026771 ], [ -162.658706, 67.030335 ], [ -162.660740, 67.033884 ], [ -162.676656, 67.046789 ], [ -162.699069, 67.055476 ], [ -162.782401, 67.044467 ], [ -162.830420, 67.036173 ], [ -162.839402, 67.032956 ], [ -162.850964, 67.017922 ], [ -162.865944, 67.012543 ], [ -162.901348, 67.006833 ], [ -163.097854, 67.041191 ], [ -163.299266, 67.060748 ], [ -163.399048, 67.074167 ], [ -163.441198, 67.081459 ], [ -163.495201, 67.087503 ], [ -163.577010, 67.092491 ], [ -163.624959, 67.099391 ], [ -163.698870, 67.114443 ], [ -163.730671, 67.123774 ], [ -163.741345, 67.129123 ], [ -163.737724, 67.136802 ], [ -163.736901, 67.163230 ], [ -163.737464, 67.184754 ], [ -163.740820, 67.209960 ], [ -163.758588, 67.256439 ], [ -163.822185, 67.349812 ], [ -163.853584, 67.388101 ], [ -163.878781, 67.416125 ], [ -164.007032, 67.535699 ], [ -164.079514, 67.585856 ], [ -164.108716, 67.601993 ], [ -164.144380, 67.617228 ], [ -164.209816, 67.639079 ], [ -164.533937, 67.725606 ], [ -164.778331, 67.820866 ], [ -164.907297, 67.867844 ], [ -165.057516, 67.921694 ], [ -165.129567, 67.941833 ], [ -165.190915, 67.966071 ], [ -165.227228, 67.985322 ], [ -165.231620, 67.994512 ], [ -165.240848, 67.998714 ], [ -165.359980, 68.028054 ], [ -165.430442, 68.045408 ], [ -165.493550, 68.059283 ], [ -165.661690, 68.075999 ], [ -165.749518, 68.077694 ], [ -165.792146, 68.080867 ], [ -165.863428, 68.093367 ], [ -165.965534, 68.121920 ], [ -165.973621, 68.125986 ], [ -165.987929, 68.142738 ], [ -165.994377, 68.147305 ], [ -166.245281, 68.245275 ], [ -166.307977, 68.264948 ], [ -166.368546, 68.281770 ], [ -166.474608, 68.305273 ], [ -166.567220, 68.323288 ], [ -166.680842, 68.340911 ], [ -166.784578, 68.340431 ], [ -166.829715, 68.336324 ], [ -166.846456, 68.332508 ], [ -166.850640, 68.333089 ], [ -166.838178, 68.339714 ], [ -166.811836, 68.348136 ], [ -166.706139, 68.371783 ], [ -166.377564, 68.422406 ], [ -166.362135, 68.426240 ], [ -166.342381, 68.433966 ], [ -166.328459, 68.442261 ], [ -166.305962, 68.461540 ], [ -166.303464, 68.464683 ], [ -166.302030, 68.470413 ], [ -166.295343, 68.510900 ], [ -166.244490, 68.553888 ], [ -166.233780, 68.564263 ], [ -166.226111, 68.576186 ], [ -166.225567, 68.579015 ], [ -166.231432, 68.587338 ], [ -166.229761, 68.613771 ], [ -166.213635, 68.664324 ], [ -166.199826, 68.678556 ], [ -166.197365, 68.690019 ], [ -166.187795, 68.778706 ], [ -166.190209, 68.790437 ], [ -166.195374, 68.803990 ], [ -166.203750, 68.818221 ], [ -166.222496, 68.860441 ], [ -166.224187, 68.873175 ], [ -166.214433, 68.879524 ], [ -165.814938, 68.864158 ], [ -165.666566, 68.855387 ], [ -165.572483, 68.852946 ], [ -165.522358, 68.855839 ], [ -165.327043, 68.858111 ], [ -164.967542, 68.883030 ], [ -164.883745, 68.891649 ], [ -164.812671, 68.893542 ], [ -164.655317, 68.909360 ], [ -164.526887, 68.917909 ], [ -164.299092, 68.927569 ], [ -164.253157, 68.930938 ], [ -164.161249, 68.944773 ], [ -164.130742, 68.951001 ], [ -164.069362, 68.969651 ], [ -163.973678, 68.985044 ], [ -163.893881, 69.011962 ], [ -163.858069, 69.028860 ], [ -163.827447, 69.040632 ], [ -163.724184, 69.066713 ], [ -163.655864, 69.090567 ], [ -163.574034, 69.124077 ], [ -163.535314, 69.141656 ], [ -163.452685, 69.194630 ], [ -163.297956, 69.274725 ], [ -163.236121, 69.282661 ], [ -163.230902, 69.284464 ], [ -163.137614, 69.352178 ], [ -163.110318, 69.375343 ], [ -163.103166, 69.392261 ], [ -163.104387, 69.401350 ], [ -163.100569, 69.414222 ], [ -163.070341, 69.459872 ], [ -163.052068, 69.481971 ], [ -163.046961, 69.482892 ], [ -163.036311, 69.489028 ], [ -163.026170, 69.506890 ], [ -163.016456, 69.538142 ], [ -163.020001, 69.545145 ], [ -163.030290, 69.556591 ], [ -163.074128, 69.570272 ], [ -163.118176, 69.589156 ], [ -163.116622, 69.593416 ], [ -163.111605, 69.596605 ], [ -163.024590, 69.608609 ], [ -162.916958, 69.692512 ], [ -162.922009, 69.700372 ], [ -162.961086, 69.717165 ], [ -163.010545, 69.728109 ], [ -163.018175, 69.729074 ], [ -163.035390, 69.727406 ], [ -163.012595, 69.757462 ], [ -162.960245, 69.783328 ], [ -162.911869, 69.799471 ], [ -162.877165, 69.804411 ], [ -162.840602, 69.811763 ], [ -162.767210, 69.852179 ], [ -162.709550, 69.879126 ], [ -162.616345, 69.916997 ], [ -162.606297, 69.918988 ], [ -162.601284, 69.914568 ], [ -162.593773, 69.914096 ], [ -162.587906, 69.915637 ], [ -162.481016, 69.975242 ], [ -162.471549, 69.983132 ], [ -162.462304, 70.002438 ], [ -162.468339, 70.015784 ], [ -162.462778, 70.042217 ], [ -162.454541, 70.043958 ], [ -162.394531, 70.044574 ], [ -162.350558, 70.058800 ], [ -162.354740, 70.065479 ], [ -162.356469, 70.076391 ], [ -162.312491, 70.109281 ], [ -162.158156, 70.161530 ], [ -162.098377, 70.187045 ], [ -162.019265, 70.224044 ], [ -161.984888, 70.247681 ], [ -161.959603, 70.268873 ], [ -161.922949, 70.291599 ], [ -161.859745, 70.308048 ], [ -161.849998, 70.309430 ], [ -161.844213, 70.308530 ], [ -161.842162, 70.304429 ], [ -161.844688, 70.300054 ], [ -161.847403, 70.295877 ], [ -161.848909, 70.282183 ], [ -161.834651, 70.272504 ], [ -161.801603, 70.260634 ], [ -161.779794, 70.255411 ], [ -161.769496, 70.262498 ], [ -161.767838, 70.268337 ], [ -161.759176, 70.272443 ], [ -161.692195, 70.267092 ], [ -161.676220, 70.258021 ], [ -161.663593, 70.246187 ], [ -161.633888, 70.240693 ], [ -161.522941, 70.236888 ], [ -161.396757, 70.240606 ], [ -161.309118, 70.248091 ], [ -161.254723, 70.256612 ], [ -161.080282, 70.306679 ], [ -161.016416, 70.327744 ], [ -160.992764, 70.316226 ], [ -160.979126, 70.317661 ], [ -160.839536, 70.344534 ], [ -160.732703, 70.374382 ], [ -160.530362, 70.440751 ], [ -160.489778, 70.454463 ], [ -160.485530, 70.457121 ], [ -160.480062, 70.465971 ], [ -160.214828, 70.559087 ], [ -160.056727, 70.632834 ], [ -159.913805, 70.690673 ], [ -159.798514, 70.731226 ], [ -159.648383, 70.794368 ], [ -159.585714, 70.809475 ], [ -159.528682, 70.820849 ], [ -159.209082, 70.870067 ], [ -159.171810, 70.875103 ], [ -159.147634, 70.876653 ], [ -159.156511, 70.859221 ], [ -159.152026, 70.849543 ], [ -159.132483, 70.828359 ], [ -159.160836, 70.817960 ], [ -159.290577, 70.811262 ], [ -159.331021, 70.807394 ], [ -159.335837, 70.800079 ], [ -159.343075, 70.783115 ], [ -159.299304, 70.760012 ], [ -159.275634, 70.759531 ], [ -159.137790, 70.758609 ], [ -159.000676, 70.764336 ], [ -158.976647, 70.766973 ], [ -158.954571, 70.772712 ], [ -158.965600, 70.786852 ], [ -158.976456, 70.789864 ], [ -158.976615, 70.796377 ], [ -158.656101, 70.787955 ], [ -158.607320, 70.789099 ], [ -158.389500, 70.799729 ], [ -158.385792, 70.811468 ], [ -158.389269, 70.822048 ], [ -158.385816, 70.825704 ], [ -158.250320, 70.817734 ], [ -158.157725, 70.820806 ], [ -158.032397, 70.832263 ], [ -157.884086, 70.853468 ], [ -157.840997, 70.861025 ], [ -157.768452, 70.875842 ], [ -157.708782, 70.891390 ], [ -157.502459, 70.948659 ], [ -157.421001, 70.976805 ], [ -157.392802, 70.987908 ], [ -157.249083, 71.052537 ], [ -157.119621, 71.128682 ], [ -157.072487, 71.154521 ], [ -156.962555, 71.211885 ], [ -156.809653, 71.286886 ], [ -156.773937, 71.299506 ], [ -156.645615, 71.338012 ], [ -156.620140, 71.344209 ], [ -156.568650, 71.352561 ], [ -156.566383, 71.334016 ], [ -156.561512, 71.316809 ], [ -156.556496, 71.311795 ], [ -156.531124, 71.296338 ], [ -156.524499, 71.294469 ], [ -156.402659, 71.267945 ], [ -156.356736, 71.261273 ], [ -156.320702, 71.258952 ], [ -156.301938, 71.260566 ], [ -156.214200, 71.259392 ], [ -156.074411, 71.242489 ], [ -156.029205, 71.203209 ], [ -156.038116, 71.196506 ], [ -156.044754, 71.186770 ], [ -156.044615, 71.184701 ], [ -156.018574, 71.172041 ], [ -155.957961, 71.186211 ], [ -155.920202, 71.207157 ], [ -155.895105, 71.193899 ], [ -155.884180, 71.190057 ], [ -155.829034, 71.192088 ], [ -155.803853, 71.196420 ], [ -155.760802, 71.194662 ], [ -155.657178, 71.182471 ], [ -155.587702, 71.172560 ], [ -155.566925, 71.165139 ], [ -155.567765, 71.141130 ], [ -155.561772, 71.128458 ], [ -155.520737, 71.102476 ], [ -155.513987, 71.096794 ], [ -155.511125, 71.090348 ], [ -155.510637, 71.081152 ], [ -155.533347, 71.067683 ], [ -155.548283, 71.060685 ], [ -155.638994, 71.042360 ], [ -155.705487, 71.020153 ], [ -155.711852, 71.012473 ], [ -155.762068, 70.985644 ], [ -155.830881, 70.965584 ], [ -155.878946, 70.967684 ], [ -155.952050, 70.964831 ], [ -155.978405, 70.962197 ], [ -155.995681, 70.947796 ], [ -156.014769, 70.903133 ], [ -156.014425, 70.898644 ], [ -156.013512, 70.895983 ], [ -155.968559, 70.862931 ], [ -155.969194, 70.827982 ], [ -155.978421, 70.825558 ], [ -155.980975, 70.817355 ], [ -155.978978, 70.808750 ], [ -155.971935, 70.806828 ], [ -155.927958, 70.806010 ], [ -155.906615, 70.809988 ], [ -155.882145, 70.822056 ], [ -155.875096, 70.828895 ], [ -155.731842, 70.831160 ], [ -155.643516, 70.824209 ], [ -155.543031, 70.847175 ], [ -155.504202, 70.860303 ], [ -155.489811, 70.871740 ], [ -155.487980, 70.875299 ], [ -155.485915, 70.885905 ], [ -155.487574, 70.902679 ], [ -155.493044, 70.917371 ], [ -155.475940, 70.943547 ], [ -155.454991, 70.947490 ], [ -155.404225, 70.967477 ], [ -155.382646, 70.978973 ], [ -155.364160, 70.994195 ], [ -155.343871, 71.004449 ], [ -155.260042, 71.015227 ], [ -155.260084, 71.011281 ], [ -155.256177, 71.004762 ], [ -155.211434, 70.978023 ], [ -155.201466, 70.974306 ], [ -155.192246, 70.974056 ], [ -155.182779, 70.978218 ], [ -155.168934, 70.987947 ], [ -155.161735, 70.995715 ], [ -155.159922, 71.002775 ], [ -155.163938, 71.013801 ], [ -155.177000, 71.027450 ], [ -155.273764, 71.064728 ], [ -155.275814, 71.067042 ], [ -155.275989, 71.070464 ], [ -155.262602, 71.079149 ], [ -155.256860, 71.081119 ], [ -155.150524, 71.112050 ], [ -155.146948, 71.110959 ], [ -155.146931, 71.103459 ], [ -155.142858, 71.097254 ], [ -155.125994, 71.077495 ], [ -155.120317, 71.073416 ], [ -155.108509, 71.070475 ], [ -155.075362, 71.072042 ], [ -155.064004, 71.083912 ], [ -155.061428, 71.091999 ], [ -155.064558, 71.108006 ], [ -155.085782, 71.127572 ], [ -155.060764, 71.145422 ], [ -155.031740, 71.146473 ], [ -154.942864, 71.126264 ], [ -154.777335, 71.083231 ], [ -154.616050, 71.026182 ], [ -154.604413, 71.021502 ], [ -154.581129, 71.007321 ], [ -154.567593, 70.989929 ], [ -154.594048, 70.976993 ], [ -154.608294, 70.961716 ], [ -154.654375, 70.903318 ], [ -154.645793, 70.869167 ], [ -154.577386, 70.835335 ], [ -154.519040, 70.822799 ], [ -154.501866, 70.821765 ], [ -154.485700, 70.825304 ], [ -154.430229, 70.831258 ], [ -154.352604, 70.834828 ], [ -154.260799, 70.815164 ], [ -154.228627, 70.802417 ], [ -154.223307, 70.795230 ], [ -154.239166, 70.776866 ], [ -154.181863, 70.768325 ], [ -154.169631, 70.768604 ], [ -154.127487, 70.778133 ], [ -154.069982, 70.793703 ], [ -153.995579, 70.821876 ], [ -153.976014, 70.833925 ], [ -153.951370, 70.854028 ], [ -153.935450, 70.869728 ], [ -153.932949, 70.874201 ], [ -153.934351, 70.876609 ], [ -153.932921, 70.878677 ], [ -153.890480, 70.885719 ], [ -153.774169, 70.894584 ], [ -153.747253, 70.895017 ], [ -153.525976, 70.885500 ], [ -153.485989, 70.885873 ], [ -153.426265, 70.890131 ], [ -153.359112, 70.898292 ], [ -153.326202, 70.904111 ], [ -153.253386, 70.920775 ], [ -153.238480, 70.922467 ], [ -153.137311, 70.925438 ], [ -153.049207, 70.913102 ], [ -153.017038, 70.904004 ], [ -152.774415, 70.885279 ], [ -152.735892, 70.884545 ], [ -152.590148, 70.886933 ], [ -152.456950, 70.871788 ], [ -152.259966, 70.842820 ], [ -152.226464, 70.831043 ], [ -152.187197, 70.801546 ], [ -152.188649, 70.798140 ], [ -152.192460, 70.795294 ], [ -152.239344, 70.793416 ], [ -152.263346, 70.790777 ], [ -152.283763, 70.785600 ], [ -152.370808, 70.730068 ], [ -152.377274, 70.714682 ], [ -152.471531, 70.688840 ], [ -152.473348, 70.683669 ], [ -152.460505, 70.646107 ], [ -152.433781, 70.616926 ], [ -152.420775, 70.608983 ], [ -152.365736, 70.601242 ], [ -152.355679, 70.603794 ], [ -152.341592, 70.612193 ], [ -152.332608, 70.612871 ], [ -152.264049, 70.592655 ], [ -152.200644, 70.586070 ], [ -152.169944, 70.585219 ], [ -152.146165, 70.586754 ], [ -152.060684, 70.574935 ], [ -152.064546, 70.568542 ], [ -152.065748, 70.563074 ], [ -152.026070, 70.559345 ], [ -151.975785, 70.563215 ], [ -151.880141, 70.554869 ], [ -151.816701, 70.545698 ], [ -151.774703, 70.547925 ], [ -151.745047, 70.554041 ], [ -151.718215, 70.555286 ], [ -151.701467, 70.553220 ], [ -151.695162, 70.549675 ], [ -151.697258, 70.547741 ], [ -151.709462, 70.546490 ], [ -151.722711, 70.541608 ], [ -151.751558, 70.524105 ], [ -151.760248, 70.516711 ], [ -151.734287, 70.503492 ], [ -151.728579, 70.495375 ], [ -151.775537, 70.485353 ], [ -151.824111, 70.484011 ], [ -151.919210, 70.472686 ], [ -151.936783, 70.463564 ], [ -151.946384, 70.452523 ], [ -151.900033, 70.434135 ], [ -151.876122, 70.430761 ], [ -151.844375, 70.434959 ], [ -151.785657, 70.436935 ], [ -151.653184, 70.434800 ], [ -151.605581, 70.437332 ], [ -151.554647, 70.435895 ], [ -151.444897, 70.425405 ], [ -151.343202, 70.408877 ], [ -151.297598, 70.400748 ], [ -151.229919, 70.379840 ], [ -151.187394, 70.384775 ], [ -151.188592, 70.401755 ], [ -151.186516, 70.418208 ], [ -151.180436, 70.430401 ], [ -151.123105, 70.439374 ], [ -151.118601, 70.438088 ], [ -151.114352, 70.432886 ], [ -151.116099, 70.422403 ], [ -151.060430, 70.418734 ], [ -151.026337, 70.441455 ], [ -150.957813, 70.452610 ], [ -150.895452, 70.458158 ], [ -150.877322, 70.455182 ], [ -150.834973, 70.460171 ], [ -150.787069, 70.477117 ], [ -150.780029, 70.485986 ], [ -150.762035, 70.497219 ], [ -150.719845, 70.494998 ], [ -150.651175, 70.494928 ], [ -150.614734, 70.498292 ], [ -150.429915, 70.498172 ], [ -150.357384, 70.493738 ], [ -150.354056, 70.492724 ], [ -150.338851, 70.471075 ], [ -150.370283, 70.447858 ], [ -150.350541, 70.435998 ], [ -150.296287, 70.441136 ], [ -150.245325, 70.441658 ], [ -150.185078, 70.435370 ], [ -150.112899, 70.431372 ], [ -150.104388, 70.432091 ], [ -150.074461, 70.439333 ], [ -149.866698, 70.510769 ], [ -149.819740, 70.491428 ], [ -149.810924, 70.490477 ], [ -149.790427, 70.491190 ], [ -149.740188, 70.498151 ], [ -149.728247, 70.502793 ], [ -149.716075, 70.504968 ], [ -149.661165, 70.509203 ], [ -149.656806, 70.508713 ], [ -149.649556, 70.504757 ], [ -149.581348, 70.495891 ], [ -149.565278, 70.496450 ], [ -149.536891, 70.499397 ], [ -149.524235, 70.502128 ], [ -149.509854, 70.508746 ], [ -149.461755, 70.518271 ], [ -149.432083, 70.503750 ], [ -149.418727, 70.492257 ], [ -149.400623, 70.489931 ], [ -149.314473, 70.495325 ], [ -149.179148, 70.485700 ], [ -149.082079, 70.464894 ], [ -148.959443, 70.423944 ], [ -148.928979, 70.426835 ], [ -148.858069, 70.422917 ], [ -148.789577, 70.402746 ], [ -148.728082, 70.413035 ], [ -148.698770, 70.425878 ], [ -148.696768, 70.429160 ], [ -148.667017, 70.430084 ], [ -148.610566, 70.422588 ], [ -148.590007, 70.416956 ], [ -148.580356, 70.412546 ], [ -148.477044, 70.359068 ], [ -148.464543, 70.340159 ], [ -148.477028, 70.320872 ], [ -148.466150, 70.313609 ], [ -148.450639, 70.308437 ], [ -148.411253, 70.302627 ], [ -148.363196, 70.302627 ], [ -148.351437, 70.304453 ], [ -148.269800, 70.329617 ], [ -148.258200, 70.336996 ], [ -148.203477, 70.348188 ], [ -148.152676, 70.347148 ], [ -148.107231, 70.342801 ], [ -148.090580, 70.337432 ], [ -148.089576, 70.335423 ], [ -148.089676, 70.332812 ], [ -148.089174, 70.331005 ], [ -148.076865, 70.327510 ], [ -147.961500, 70.314201 ], [ -147.863719, 70.293317 ], [ -147.817637, 70.276938 ], [ -147.789357, 70.247972 ], [ -147.765104, 70.219806 ], [ -147.681722, 70.199954 ], [ -147.648000, 70.203299 ], [ -147.585678, 70.203398 ], [ -147.505270, 70.200384 ], [ -147.431532, 70.188826 ], [ -147.402283, 70.185273 ], [ -147.385271, 70.185256 ], [ -147.350145, 70.187683 ], [ -147.244119, 70.218963 ], [ -147.233327, 70.207553 ], [ -147.231008, 70.195398 ], [ -147.219210, 70.178826 ], [ -147.182123, 70.160350 ], [ -147.161601, 70.155612 ], [ -146.991109, 70.147610 ], [ -146.973212, 70.151857 ], [ -146.909516, 70.173259 ], [ -146.885771, 70.185917 ], [ -146.734021, 70.175475 ], [ -146.713053, 70.175398 ], [ -146.624761, 70.182398 ], [ -146.508133, 70.186044 ], [ -146.448860, 70.183398 ], [ -146.413197, 70.178250 ], [ -146.335147, 70.176235 ], [ -146.309558, 70.178907 ], [ -146.272965, 70.176944 ], [ -146.172672, 70.165894 ], [ -146.129579, 70.158948 ], [ -146.114124, 70.154956 ], [ -146.096827, 70.145151 ], [ -146.006411, 70.140402 ], [ -145.955164, 70.140199 ], [ -145.917674, 70.142525 ], [ -145.872923, 70.148829 ], [ -145.858297, 70.165996 ], [ -145.842689, 70.164102 ], [ -145.790386, 70.148569 ], [ -145.783327, 70.139454 ], [ -145.767092, 70.128717 ], [ -145.760443, 70.126113 ], [ -145.623306, 70.084375 ], [ -145.579972, 70.076804 ], [ -145.522384, 70.077465 ], [ -145.505682, 70.074528 ], [ -145.469508, 70.059136 ], [ -145.468856, 70.048336 ], [ -145.434830, 70.036994 ], [ -145.408182, 70.031572 ], [ -145.331553, 70.022596 ], [ -145.247167, 70.017891 ], [ -145.218593, 70.007280 ], [ -145.197331, 69.994954 ], [ -145.175073, 69.991707 ], [ -145.011711, 69.981144 ], [ -144.990131, 69.977680 ], [ -144.966761, 69.964362 ], [ -144.953637, 69.959262 ], [ -144.902304, 69.964510 ], [ -144.867623, 69.972266 ], [ -144.863111, 69.973524 ], [ -144.856954, 69.985987 ], [ -144.854539, 69.986364 ], [ -144.792614, 69.979796 ], [ -144.738976, 69.970112 ], [ -144.672305, 69.966876 ], [ -144.618671, 69.969315 ], [ -144.589172, 69.977611 ], [ -144.512258, 70.004478 ], [ -144.463286, 70.025735 ], [ -144.344073, 70.034374 ], [ -144.328391, 70.032555 ], [ -144.231051, 70.035912 ], [ -144.178194, 70.041742 ], [ -144.130283, 70.057951 ], [ -144.122641, 70.059138 ], [ -144.079634, 70.058961 ], [ -144.053709, 70.073182 ], [ -143.911494, 70.129837 ], [ -143.887688, 70.130736 ], [ -143.839879, 70.125827 ], [ -143.782213, 70.124668 ], [ -143.769015, 70.135066 ], [ -143.753065, 70.137242 ], [ -143.662250, 70.142517 ], [ -143.617407, 70.139915 ], [ -143.595181, 70.142521 ], [ -143.597879, 70.147204 ], [ -143.593813, 70.152604 ], [ -143.574986, 70.154598 ], [ -143.543230, 70.149742 ], [ -143.498058, 70.140100 ], [ -143.497982, 70.136875 ], [ -143.511617, 70.125191 ], [ -143.516098, 70.116362 ], [ -143.517248, 70.104293 ], [ -143.510081, 70.096436 ], [ -143.503487, 70.093458 ], [ -143.455354, 70.092934 ], [ -143.357961, 70.094970 ], [ -143.327114, 70.103127 ], [ -143.317900, 70.111145 ], [ -143.265892, 70.119286 ], [ -143.255576, 70.119330 ], [ -143.200147, 70.110323 ], [ -143.159929, 70.099203 ], [ -143.140019, 70.092997 ], [ -143.112951, 70.078271 ], [ -143.051291, 70.078188 ], [ -143.038100, 70.093888 ], [ -142.939555, 70.074380 ], [ -142.746807, 70.042531 ], [ -142.498036, 69.973611 ], [ -142.452927, 69.958125 ], [ -142.409962, 69.933646 ], [ -142.404366, 69.916511 ], [ -142.272156, 69.907044 ], [ -142.239873, 69.896598 ], [ -142.112714, 69.862162 ], [ -142.081696, 69.855498 ], [ -142.075612, 69.853319 ], [ -142.073063, 69.846625 ], [ -142.058734, 69.835330 ], [ -142.009321, 69.800726 ], [ -141.960753, 69.799876 ], [ -141.937176, 69.804805 ], [ -141.919828, 69.811308 ], [ -141.866738, 69.813005 ], [ -141.842843, 69.811927 ], [ -141.713369, 69.789497 ], [ -141.606229, 69.761695 ], [ -141.528197, 69.736025 ], [ -141.430840, 69.695144 ], [ -141.434872, 69.675245 ], [ -141.428856, 69.662658 ], [ -141.394082, 69.640846 ], [ -141.377718, 69.634631 ], [ -141.280849, 69.631025 ], [ -141.258558, 69.632247 ], [ -141.254547, 69.637053 ], [ -141.243946, 69.652482 ], [ -141.210456, 69.684190 ], [ -141.119233, 69.673527 ], [ -141.002672, 69.645609 ], [ -141.002694, 68.498391 ], [ -141.002465, 65.840075 ], [ -141.002465, 65.839421 ], [ -141.002020, 61.901922 ], [ -141.001850, 60.391688 ], [ -141.001840, 60.306105 ], [ -140.535090, 60.224224 ], [ -140.472292, 60.310590 ], [ -139.989142, 60.185240 ], [ -139.698361, 60.340421 ], [ -139.086669, 60.357654 ], [ -139.082246, 60.323825 ], [ -139.200346, 60.090701 ], [ -139.046426, 59.998235 ], [ -138.796083, 59.928701 ], [ -138.702053, 59.910245 ], [ -138.662769, 59.813719 ], [ -138.662972, 59.810225 ], [ -138.620931, 59.770559 ], [ -138.560226, 59.741201 ], [ -138.001128, 59.452164 ], [ -137.604277, 59.243057 ], [ -137.498558, 58.986694 ], [ -137.526424, 58.906834 ], [ -137.525295, 58.906872 ], [ -137.447383, 58.909513 ], [ -137.264752, 59.002352 ], [ -136.863896, 59.138472 ], [ -136.826633, 59.158389 ], [ -136.581521, 59.164909 ], [ -136.486609, 59.261108 ], [ -136.466815, 59.284252 ], [ -136.472941, 59.421683 ], [ -136.365825, 59.448008 ], [ -136.358141, 59.449799 ], [ -136.301846, 59.464128 ], [ -136.234229, 59.524731 ], [ -136.237340, 59.558734 ], [ -136.225748, 59.604573 ], [ -136.190352, 59.639854 ], [ -136.005158, 59.658160 ], [ -135.854166, 59.691846 ], [ -135.722460, 59.729526 ], [ -135.477436, 59.799626 ], [ -135.284921, 59.714893 ], [ -135.166736, 59.632240 ], [ -135.153113, 59.625159 ], [ -135.114588, 59.623415 ], [ -135.027456, 59.563692 ], [ -135.029769, 59.482444 ], [ -135.040037, 59.444792 ], [ -135.029769, 59.407140 ], [ -135.005180, 59.357217 ], [ -134.992117, 59.330695 ], [ -134.961972, 59.280376 ], [ -134.766204, 59.231430 ], [ -134.681924, 59.190843 ], [ -134.566689, 59.128278 ], [ -134.481241, 59.128071 ], [ -134.389798, 59.032673 ], [ -134.383637, 59.001867 ], [ -134.369945, 58.971745 ], [ -134.363773, 58.963891 ], [ -134.328964, 58.919593 ], [ -134.250526, 58.858046 ], [ -133.992081, 58.774581 ], [ -133.840392, 58.727991 ], [ -133.723635, 58.626004 ], [ -133.699835, 58.607290 ], [ -133.559942, 58.522318 ], [ -133.443373, 58.442415 ], [ -133.436075, 58.391324 ], [ -133.437696, 58.358074 ], [ -133.359691, 58.284789 ], [ -133.343725, 58.270915 ], [ -133.222898, 58.186368 ], [ -133.176444, 58.150151 ], [ -133.076421, 57.999762 ], [ -132.869318, 57.842941 ], [ -132.756813, 57.705093 ], [ -132.658124, 57.619486 ], [ -132.559178, 57.503927 ], [ -132.367984, 57.348685 ], [ -132.252187, 57.215655 ], [ -132.214442, 57.108167 ], [ -132.115075, 57.045602 ], [ -132.080112, 56.924153 ], [ -132.005107, 56.842920 ], [ -131.936582, 56.817425 ], [ -131.886500, 56.776083 ], [ -131.818813, 56.664694 ], [ -131.736007, 56.613170 ], [ -131.581221, 56.613275 ], [ -131.428413, 56.537135 ], [ -131.167925, 56.448361 ], [ -131.087433, 56.407420 ], [ -131.085704, 56.406540 ], [ -130.782231, 56.367511 ], [ -130.740619, 56.342953 ], [ -130.622482, 56.267939 ], [ -130.541173, 56.248017 ], [ -130.466874, 56.239789 ], [ -130.425575, 56.140676 ], [ -130.245540, 56.096876 ], [ -130.102761, 56.116696 ], [ -130.031573, 56.036791 ], [ -130.016874, 56.017323 ], [ -130.004260, 55.993379 ], [ -130.013198, 55.916382 ], [ -130.084510, 55.823997 ], [ -130.123720, 55.807040 ], [ -130.128538, 55.802148 ], [ -130.150595, 55.767031 ], [ -130.151509, 55.746029 ], [ -130.150061, 55.727099 ], [ -130.148040, 55.715041 ], [ -130.129518, 55.699806 ], [ -130.111677, 55.682051 ], [ -130.126743, 55.581282 ], [ -130.120132, 55.563919 ], [ -130.085413, 55.491517 ], [ -130.044303, 55.451970 ], [ -130.030182, 55.367696 ], [ -130.023558, 55.338259 ], [ -129.982348, 55.302079 ], [ -129.980487, 55.296334 ], [ -129.980058, 55.284230 ], [ -129.985379, 55.277760 ], [ -130.001735, 55.264557 ], [ -130.030162, 55.246592 ], [ -130.096546, 55.197953 ], [ -130.118919, 55.176074 ], [ -130.144723, 55.146038 ], [ -130.158117, 55.117104 ], [ -130.187541, 55.064665 ], [ -130.221512, 55.025990 ], [ -130.259079, 54.987642 ], [ -130.275560, 54.972930 ], [ -130.339504, 54.921376 ], [ -130.474605, 54.838102 ], [ -130.569366, 54.790869 ], [ -130.636745, 54.778456 ], [ -130.657754, 54.761828 ], [ -130.628070, 54.739341 ], [ -130.644479, 54.736897 ], [ -130.685213, 54.720091 ], [ -130.686192, 54.716910 ], [ -130.695817, 54.719346 ], [ -130.737423, 54.753545 ], [ -130.747227, 54.772600 ], [ -130.733209, 54.779610 ], [ -130.732201, 54.782620 ], [ -130.736295, 54.794798 ], [ -130.742316, 54.801914 ], [ -130.773606, 54.820845 ], [ -130.787444, 54.822905 ], [ -130.788570, 54.794643 ], [ -130.792122, 54.784784 ], [ -130.806815, 54.776862 ], [ -130.836853, 54.765437 ], [ -130.854966, 54.766341 ], [ -130.866866, 54.769068 ], [ -130.901801, 54.780876 ], [ -130.915936, 54.789617 ], [ -130.932454, 54.806938 ], [ -130.947098, 54.826047 ], [ -130.941029, 54.841587 ], [ -130.947338, 54.886733 ], [ -130.959732, 54.918678 ], [ -130.960400, 54.933685 ], [ -130.949104, 54.967846 ], [ -130.953507, 54.972102 ], [ -130.975030, 54.974853 ], [ -131.007787, 54.991300 ], [ -131.012061, 54.996238 ], [ -131.004216, 55.029605 ], [ -130.986802, 55.065222 ], [ -130.983730, 55.068946 ], [ -130.984157, 55.084410 ], [ -131.013215, 55.090069 ], [ -131.029676, 55.099478 ], [ -131.052298, 55.118160 ], [ -131.070692, 55.138143 ], [ -131.076646, 55.146178 ], [ -131.085579, 55.158233 ], [ -131.087497, 55.163036 ], [ -131.093806, 55.191335 ], [ -131.092605, 55.192711 ], [ -130.985304, 55.247286 ], [ -130.952956, 55.273092 ], [ -130.951572, 55.291648 ], [ -130.925069, 55.300713 ], [ -130.909948, 55.299878 ], [ -130.871329, 55.293780 ], [ -130.864918, 55.298367 ], [ -130.864918, 55.309469 ], [ -130.871857, 55.313991 ], [ -130.882146, 55.358831 ], [ -130.920800, 55.428721 ], [ -130.922985, 55.435113 ], [ -130.920295, 55.446085 ], [ -130.910744, 55.459982 ], [ -130.898129, 55.470177 ], [ -130.881297, 55.495582 ], [ -130.870524, 55.533768 ], [ -130.880013, 55.598954 ], [ -130.901872, 55.697380 ], [ -130.939017, 55.754831 ], [ -130.984774, 55.799349 ], [ -131.093956, 55.895675 ], [ -131.171406, 55.942952 ], [ -131.187429, 55.956010 ], [ -131.216475, 55.984342 ], [ -131.229971, 55.984342 ], [ -131.236936, 55.982293 ], [ -131.243491, 55.973689 ], [ -131.245949, 55.965905 ], [ -131.241704, 55.955069 ], [ -131.156834, 55.901147 ], [ -131.070138, 55.828551 ], [ -131.053217, 55.799843 ], [ -131.043527, 55.766997 ], [ -131.040966, 55.762837 ], [ -130.998638, 55.723538 ], [ -130.965994, 55.688974 ], [ -130.946830, 55.650716 ], [ -130.927651, 55.576585 ], [ -130.945177, 55.557731 ], [ -130.978917, 55.550835 ], [ -130.987103, 55.539872 ], [ -130.994376, 55.472396 ], [ -130.969588, 55.393281 ], [ -130.947498, 55.380823 ], [ -130.928172, 55.339426 ], [ -130.933399, 55.331906 ], [ -130.946597, 55.322396 ], [ -130.959772, 55.315892 ], [ -130.968326, 55.316626 ], [ -130.964088, 55.332664 ], [ -131.000594, 55.398012 ], [ -131.008726, 55.404818 ], [ -131.029045, 55.408395 ], [ -131.033054, 55.393118 ], [ -131.034191, 55.379358 ], [ -131.030521, 55.376917 ], [ -131.027301, 55.371392 ], [ -131.019881, 55.347905 ], [ -131.031357, 55.284785 ], [ -131.072348, 55.253822 ], [ -131.160492, 55.197481 ], [ -131.188747, 55.192745 ], [ -131.211230, 55.192379 ], [ -131.235516, 55.197574 ], [ -131.263089, 55.208318 ], [ -131.297162, 55.235046 ], [ -131.302697, 55.250217 ], [ -131.278302, 55.260319 ], [ -131.240190, 55.287156 ], [ -131.230432, 55.297802 ], [ -131.191595, 55.360527 ], [ -131.191933, 55.368334 ], [ -131.197489, 55.391051 ], [ -131.202477, 55.392834 ], [ -131.272447, 55.387774 ], [ -131.292102, 55.383946 ], [ -131.293043, 55.378684 ], [ -131.287016, 55.358260 ], [ -131.264608, 55.345639 ], [ -131.254461, 55.329698 ], [ -131.255107, 55.322104 ], [ -131.284986, 55.286437 ], [ -131.291203, 55.281751 ], [ -131.326989, 55.265911 ], [ -131.402931, 55.238065 ], [ -131.424502, 55.238764 ], [ -131.428234, 55.239416 ], [ -131.437857, 55.248407 ], [ -131.444799, 55.264491 ], [ -131.463532, 55.283389 ], [ -131.475602, 55.303263 ], [ -131.462968, 55.312648 ], [ -131.471976, 55.323386 ], [ -131.494146, 55.332310 ], [ -131.509811, 55.332310 ], [ -131.515257, 55.327938 ], [ -131.528201, 55.295349 ], [ -131.536510, 55.292352 ], [ -131.550044, 55.293389 ], [ -131.566677, 55.306068 ], [ -131.584842, 55.309588 ], [ -131.639031, 55.339481 ], [ -131.698743, 55.354873 ], [ -131.732441, 55.377553 ], [ -131.735939, 55.381905 ], [ -131.736654, 55.392206 ], [ -131.741834, 55.398074 ], [ -131.828446, 55.445214 ], [ -131.844157, 55.456742 ], [ -131.845542, 55.522119 ], [ -131.841683, 55.526748 ], [ -131.793717, 55.541682 ], [ -131.766373, 55.540050 ], [ -131.733052, 55.548559 ], [ -131.664629, 55.581525 ], [ -131.654172, 55.592431 ], [ -131.671471, 55.606573 ], [ -131.682849, 55.610488 ], [ -131.701091, 55.613684 ], [ -131.724359, 55.632559 ], [ -131.726322, 55.635930 ], [ -131.726615, 55.641000 ], [ -131.719546, 55.650282 ], [ -131.712102, 55.665797 ], [ -131.701147, 55.696960 ], [ -131.706744, 55.706435 ], [ -131.726467, 55.720826 ], [ -131.733408, 55.730832 ], [ -131.719308, 55.749099 ], [ -131.704907, 55.755541 ], [ -131.649626, 55.768728 ], [ -131.640294, 55.785274 ], [ -131.640141, 55.789355 ], [ -131.653124, 55.795735 ], [ -131.678213, 55.799837 ], [ -131.691058, 55.797561 ], [ -131.697211, 55.793768 ], [ -131.700951, 55.788977 ], [ -131.705259, 55.789939 ], [ -131.710448, 55.806620 ], [ -131.713742, 55.853263 ], [ -131.701487, 55.860943 ], [ -131.689044, 55.875488 ], [ -131.687317, 55.886772 ], [ -131.689509, 55.890232 ], [ -131.720384, 55.894659 ], [ -131.776737, 55.878784 ], [ -131.828176, 55.877284 ], [ -131.836962, 55.875472 ], [ -131.830547, 55.856616 ], [ -131.816310, 55.837449 ], [ -131.777033, 55.823261 ], [ -131.771248, 55.810028 ], [ -131.779908, 55.791904 ], [ -131.814759, 55.731350 ], [ -131.826160, 55.718580 ], [ -131.831407, 55.681342 ], [ -131.828887, 55.667148 ], [ -131.865395, 55.630680 ], [ -131.897413, 55.603914 ], [ -131.939318, 55.623844 ], [ -131.963121, 55.615263 ], [ -131.962642, 55.608708 ], [ -131.945303, 55.572441 ], [ -131.936689, 55.535151 ], [ -131.971792, 55.498279 ], [ -131.986493, 55.500619 ], [ -132.014613, 55.515238 ], [ -132.043772, 55.535742 ], [ -132.060504, 55.543030 ], [ -132.098521, 55.550015 ], [ -132.114654, 55.550623 ], [ -132.141118, 55.559010 ], [ -132.148383, 55.562481 ], [ -132.183207, 55.588128 ], [ -132.198652, 55.615721 ], [ -132.201500, 55.626376 ], [ -132.197869, 55.633967 ], [ -132.199549, 55.638593 ], [ -132.215409, 55.682270 ], [ -132.224167, 55.701766 ], [ -132.237532, 55.711347 ], [ -132.260119, 55.732293 ], [ -132.283594, 55.761774 ], [ -132.280431, 55.765599 ], [ -132.265071, 55.762174 ], [ -132.251732, 55.756247 ], [ -132.229647, 55.740488 ], [ -132.206951, 55.736987 ], [ -132.190479, 55.742501 ], [ -132.185478, 55.753161 ], [ -132.184982, 55.778776 ], [ -132.187494, 55.785595 ], [ -132.183163, 55.800830 ], [ -132.130413, 55.811419 ], [ -132.113361, 55.812718 ], [ -132.086050, 55.832436 ], [ -132.067412, 55.875078 ], [ -132.041795, 55.958795 ], [ -132.070340, 56.046733 ], [ -132.038364, 56.091297 ], [ -132.033368, 56.095572 ], [ -132.011297, 56.077359 ], [ -131.970294, 56.114042 ], [ -131.935728, 56.177207 ], [ -131.943402, 56.192557 ], [ -131.958838, 56.194762 ], [ -131.993894, 56.193351 ], [ -132.018130, 56.183155 ], [ -132.034849, 56.133432 ], [ -132.060993, 56.129355 ], [ -132.104020, 56.108109 ], [ -132.176955, 56.055706 ], [ -132.129697, 55.957855 ], [ -132.135474, 55.941626 ], [ -132.159064, 55.922560 ], [ -132.170198, 55.919231 ], [ -132.191893, 55.921717 ], [ -132.224241, 55.930421 ], [ -132.279962, 55.924839 ], [ -132.320487, 55.887648 ], [ -132.319799, 55.874347 ], [ -132.309306, 55.865059 ], [ -132.309949, 55.862301 ], [ -132.323242, 55.851878 ], [ -132.372298, 55.850359 ], [ -132.376518, 55.853377 ], [ -132.397304, 55.878867 ], [ -132.398349, 55.884052 ], [ -132.397080, 55.905546 ], [ -132.401192, 55.950467 ], [ -132.446166, 56.018666 ], [ -132.492795, 56.066436 ], [ -132.522076, 56.077035 ], [ -132.573677, 56.070700 ], [ -132.621793, 56.056140 ], [ -132.621492, 56.049174 ], [ -132.629155, 56.037425 ], [ -132.640079, 56.033194 ], [ -132.684620, 56.082323 ], [ -132.708697, 56.112124 ], [ -132.723396, 56.145814 ], [ -132.718342, 56.217704 ], [ -132.689888, 56.238744 ], [ -132.672471, 56.239439 ], [ -132.664212, 56.236332 ], [ -132.644250, 56.232807 ], [ -132.615797, 56.234172 ], [ -132.601495, 56.240065 ], [ -132.582070, 56.278816 ], [ -132.582033, 56.285456 ], [ -132.575023, 56.296468 ], [ -132.543076, 56.332276 ], [ -132.529360, 56.338555 ], [ -132.441839, 56.353983 ], [ -132.431631, 56.352163 ], [ -132.422041, 56.349341 ], [ -132.403678, 56.334811 ], [ -132.381766, 56.310756 ], [ -132.380574, 56.307785 ], [ -132.382793, 56.299203 ], [ -132.363966, 56.287126 ], [ -132.358710, 56.290800 ], [ -132.349149, 56.304456 ], [ -132.340678, 56.341754 ], [ -132.361132, 56.380627 ], [ -132.394268, 56.485579 ], [ -132.389380, 56.491367 ], [ -132.382379, 56.491972 ], [ -132.362556, 56.487904 ], [ -132.253393, 56.449539 ], [ -132.245479, 56.441215 ], [ -132.233927, 56.416736 ], [ -132.242000, 56.413660 ], [ -132.238473, 56.398706 ], [ -132.223136, 56.384017 ], [ -132.204367, 56.372086 ], [ -132.199269, 56.371054 ], [ -132.181158, 56.387128 ], [ -132.179350, 56.390823 ], [ -132.181647, 56.399336 ], [ -132.208568, 56.457125 ], [ -132.239043, 56.476671 ], [ -132.259611, 56.487630 ], [ -132.279753, 56.485881 ], [ -132.290475, 56.487017 ], [ -132.357564, 56.529008 ], [ -132.361293, 56.534232 ], [ -132.367088, 56.574578 ], [ -132.363836, 56.588613 ], [ -132.358410, 56.595266 ], [ -132.319303, 56.607116 ], [ -132.297288, 56.629819 ], [ -132.284216, 56.636699 ], [ -132.280089, 56.651834 ], [ -132.281464, 56.665593 ], [ -132.298664, 56.677977 ], [ -132.313799, 56.676601 ], [ -132.324807, 56.673849 ], [ -132.348886, 56.664217 ], [ -132.371589, 56.672473 ], [ -132.389476, 56.672473 ], [ -132.403923, 56.669721 ], [ -132.452081, 56.672473 ], [ -132.467904, 56.680729 ], [ -132.528446, 56.702056 ], [ -132.522398, 56.716256 ], [ -132.517127, 56.728632 ], [ -132.432385, 56.782385 ], [ -132.371032, 56.816413 ], [ -132.373615, 56.820353 ], [ -132.390129, 56.825837 ], [ -132.404564, 56.825506 ], [ -132.438330, 56.821117 ], [ -132.505513, 56.785485 ], [ -132.519457, 56.775455 ], [ -132.520712, 56.760116 ], [ -132.532002, 56.757141 ], [ -132.556758, 56.757242 ], [ -132.637458, 56.780910 ], [ -132.770404, 56.837486 ], [ -132.792089, 56.856152 ], [ -132.797107, 56.864922 ], [ -132.793601, 56.866364 ], [ -132.792727, 56.871673 ], [ -132.796999, 56.877790 ], [ -132.817890, 56.896901 ], [ -132.829346, 56.903573 ], [ -132.846744, 56.910635 ], [ -132.870340, 56.925682 ], [ -132.911970, 56.966651 ], [ -132.918967, 56.993673 ], [ -132.892388, 56.993016 ], [ -132.853636, 57.005343 ], [ -132.813684, 57.030218 ], [ -132.832220, 57.070408 ], [ -132.853284, 57.080077 ], [ -132.870116, 57.078424 ], [ -132.875197, 57.069577 ], [ -132.916487, 57.040086 ], [ -132.937520, 57.048321 ], [ -132.984307, 57.054845 ], [ -132.993944, 57.032353 ], [ -133.025050, 57.057322 ], [ -133.076481, 57.081733 ], [ -133.125306, 57.088891 ], [ -133.161448, 57.086264 ], [ -133.188074, 57.088973 ], [ -133.208726, 57.109699 ], [ -133.210261, 57.118453 ], [ -133.206655, 57.123834 ], [ -133.224656, 57.136522 ], [ -133.234880, 57.137937 ], [ -133.247414, 57.136802 ], [ -133.322359, 57.112727 ], [ -133.466932, 57.159356 ], [ -133.517194, 57.177775 ], [ -133.517197, 57.177776 ], [ -133.544817, 57.242570 ], [ -133.542565, 57.250682 ], [ -133.522837, 57.278580 ], [ -133.489738, 57.305192 ], [ -133.475890, 57.307982 ], [ -133.455936, 57.303970 ], [ -133.444958, 57.297729 ], [ -133.442436, 57.289978 ], [ -133.425948, 57.285995 ], [ -133.371591, 57.286713 ], [ -133.307565, 57.290052 ], [ -133.287052, 57.302920 ], [ -133.274829, 57.330625 ], [ -133.283510, 57.333119 ], [ -133.342070, 57.336798 ], [ -133.354720, 57.333253 ], [ -133.403868, 57.342685 ], [ -133.442682, 57.352845 ], [ -133.453783, 57.356240 ], [ -133.468267, 57.364217 ], [ -133.472039, 57.368651 ], [ -133.475998, 57.380394 ], [ -133.472454, 57.388446 ], [ -133.461179, 57.394577 ], [ -133.503115, 57.453528 ], [ -133.525140, 57.490344 ], [ -133.525830, 57.501777 ], [ -133.516749, 57.543911 ], [ -133.510806, 57.548139 ], [ -133.496365, 57.548772 ], [ -133.488197, 57.551387 ], [ -133.478086, 57.561730 ], [ -133.481221, 57.571470 ], [ -133.505982, 57.578459 ], [ -133.528313, 57.573944 ], [ -133.531905, 57.569466 ], [ -133.537860, 57.567292 ], [ -133.565478, 57.563095 ], [ -133.578948, 57.565094 ], [ -133.620760, 57.578919 ], [ -133.664390, 57.611707 ], [ -133.676449, 57.625192 ], [ -133.680963, 57.648265 ], [ -133.658550, 57.707924 ], [ -133.654530, 57.713689 ], [ -133.582212, 57.715095 ], [ -133.543928, 57.696454 ], [ -133.530957, 57.686914 ], [ -133.522243, 57.683663 ], [ -133.489677, 57.677141 ], [ -133.441215, 57.672013 ], [ -133.404980, 57.663783 ], [ -133.234598, 57.608749 ], [ -133.188864, 57.589071 ], [ -133.179062, 57.587147 ], [ -133.162464, 57.599796 ], [ -133.174032, 57.610062 ], [ -133.251126, 57.649966 ], [ -133.278209, 57.661859 ], [ -133.291062, 57.665358 ], [ -133.322532, 57.665830 ], [ -133.485403, 57.738677 ], [ -133.545031, 57.767970 ], [ -133.559889, 57.777457 ], [ -133.556097, 57.788830 ], [ -133.569787, 57.859365 ], [ -133.602032, 57.860394 ], [ -133.610178, 57.860654 ], [ -133.631303, 57.846766 ], [ -133.633931, 57.838029 ], [ -133.641996, 57.811215 ], [ -133.638899, 57.803323 ], [ -133.635578, 57.799900 ], [ -133.637054, 57.792203 ], [ -133.639675, 57.790361 ], [ -133.658113, 57.786368 ], [ -133.677433, 57.786593 ], [ -133.696784, 57.795075 ], [ -133.703097, 57.792152 ], [ -133.709141, 57.792739 ], [ -133.814706, 57.832979 ], [ -133.999331, 57.999016 ], [ -134.057521, 58.039471 ], [ -134.071720, 58.054636 ], [ -134.089207, 58.082534 ], [ -134.144813, 58.171242 ], [ -134.587101, 58.205802 ], [ -134.703351, 58.276537 ], [ -134.839307, 58.359261 ], [ -135.074096, 58.502123 ], [ -135.196338, 58.907875 ], [ -135.219128, 58.974972 ], [ -135.175756, 58.973868 ], [ -135.180116, 58.997871 ], [ -135.208585, 59.076824 ], [ -135.238267, 59.130134 ], [ -135.283964, 59.192532 ], [ -135.368331, 59.263275 ], [ -135.430331, 59.327200 ], [ -135.436438, 59.315791 ], [ -135.444526, 59.277689 ], [ -135.429601, 59.242722 ], [ -135.403687, 59.222767 ], [ -135.364060, 59.211403 ], [ -135.342254, 59.177825 ], [ -135.329458, 59.152700 ], [ -135.377826, 59.099262 ], [ -135.382354, 59.060749 ], [ -135.382641, 59.033366 ], [ -135.339375, 59.017667 ], [ -135.326711, 59.011469 ], [ -135.322604, 59.007812 ], [ -135.297293, 58.959860 ], [ -135.298627, 58.919262 ], [ -135.305907, 58.901340 ], [ -135.322622, 58.900661 ], [ -135.339948, 58.888955 ], [ -135.284657, 58.818114 ], [ -135.274203, 58.813122 ], [ -135.248985, 58.790878 ], [ -135.243200, 58.783112 ], [ -135.233878, 58.735487 ], [ -135.142322, 58.616370 ], [ -135.135843, 58.588225 ], [ -135.137516, 58.577835 ], [ -135.142161, 58.577107 ], [ -135.145521, 58.578332 ], [ -135.153827, 58.586626 ], [ -135.159062, 58.595525 ], [ -135.186357, 58.597770 ], [ -135.190544, 58.592417 ], [ -135.189368, 58.576244 ], [ -135.165861, 58.546605 ], [ -135.132273, 58.496536 ], [ -135.088983, 58.423022 ], [ -135.058071, 58.349447 ], [ -135.049062, 58.309295 ], [ -135.053488, 58.290498 ], [ -135.056552, 58.288699 ], [ -135.060452, 58.290338 ], [ -135.069775, 58.302694 ], [ -135.095814, 58.297233 ], [ -135.101210, 58.292607 ], [ -135.107700, 58.265034 ], [ -135.099106, 58.245096 ], [ -135.056227, 58.189884 ], [ -135.073269, 58.190575 ], [ -135.087872, 58.200073 ], [ -135.112868, 58.201553 ], [ -135.159055, 58.210178 ], [ -135.220281, 58.235584 ], [ -135.227736, 58.236900 ], [ -135.246709, 58.236368 ], [ -135.277198, 58.233634 ], [ -135.287700, 58.234933 ], [ -135.306507, 58.242916 ], [ -135.344868, 58.270795 ], [ -135.398260, 58.327689 ], [ -135.408059, 58.342999 ], [ -135.433061, 58.399899 ], [ -135.447381, 58.399891 ] ] ] ] } }\n,\n{ \"type\": \"Feature\", \"properties\": { \"GEO_ID\": \"0400000US12\", \"STATE\": \"12\", \"NAME\": \"Florida\", \"LSAD\": \"\", \"CENSUSAREA\": 53624.759000 }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [ [ [ [ -80.250581, 25.341930 ], [ -80.254916, 25.336336 ], [ -80.260137, 25.324641 ], [ -80.268138, 25.320675 ], [ -80.288184, 25.282835 ], [ -80.307584, 25.257561 ], [ -80.351399, 25.190615 ], [ -80.354019, 25.184306 ], [ -80.349855, 25.168825 ], [ -80.358570, 25.154073 ], [ -80.377084, 25.130487 ], [ -80.399767, 25.108536 ], [ -80.428318, 25.095547 ], [ -80.431032, 25.089250 ], [ -80.443375, 25.076084 ], [ -80.462011, 25.069935 ], [ -80.473870, 25.060253 ], [ -80.493881, 25.038502 ], [ -80.489120, 25.031301 ], [ -80.494781, 25.023019 ], [ -80.537995, 24.990244 ], [ -80.565831, 24.958155 ], [ -80.571668, 24.953659 ], [ -80.588272, 24.951153 ], [ -80.596073, 24.948173 ], [ -80.611693, 24.938420 ], [ -80.635571, 24.913003 ], [ -80.659395, 24.897433 ], [ -80.661280, 24.899704 ], [ -80.660198, 24.904980 ], [ -80.650765, 24.908121 ], [ -80.641306, 24.914311 ], [ -80.623866, 24.931236 ], [ -80.622896, 24.935587 ], [ -80.624172, 24.939058 ], [ -80.621658, 24.944265 ], [ -80.597074, 24.958492 ], [ -80.581131, 24.964738 ], [ -80.578185, 24.962811 ], [ -80.570813, 24.962215 ], [ -80.558785, 24.971505 ], [ -80.544110, 24.999916 ], [ -80.543254, 25.007337 ], [ -80.545971, 25.014770 ], [ -80.524498, 25.016945 ], [ -80.509136, 25.028317 ], [ -80.501326, 25.041436 ], [ -80.495569, 25.047497 ], [ -80.488900, 25.050110 ], [ -80.481197, 25.056604 ], [ -80.460652, 25.078904 ], [ -80.465496, 25.086609 ], [ -80.470211, 25.089438 ], [ -80.481763, 25.091905 ], [ -80.494715, 25.102269 ], [ -80.484188, 25.109430 ], [ -80.477480, 25.107407 ], [ -80.476174, 25.099454 ], [ -80.463987, 25.093210 ], [ -80.450399, 25.088751 ], [ -80.444887, 25.092966 ], [ -80.433575, 25.106317 ], [ -80.433499, 25.114665 ], [ -80.447659, 25.147729 ], [ -80.446473, 25.151287 ], [ -80.413260, 25.137053 ], [ -80.403177, 25.141798 ], [ -80.395467, 25.150694 ], [ -80.387164, 25.170859 ], [ -80.388350, 25.182721 ], [ -80.391909, 25.192210 ], [ -80.387164, 25.198141 ], [ -80.369965, 25.206444 ], [ -80.358696, 25.207037 ], [ -80.349800, 25.210595 ], [ -80.337345, 25.231353 ], [ -80.333787, 25.253891 ], [ -80.336159, 25.261601 ], [ -80.342683, 25.268125 ], [ -80.368186, 25.282359 ], [ -80.364034, 25.286510 ], [ -80.339421, 25.290069 ], [ -80.334676, 25.285917 ], [ -80.328746, 25.286510 ], [ -80.315698, 25.294220 ], [ -80.292567, 25.314385 ], [ -80.289602, 25.325061 ], [ -80.275961, 25.344039 ], [ -80.264614, 25.354322 ], [ -80.256982, 25.361239 ], [ -80.254610, 25.380810 ], [ -80.251052, 25.391486 ], [ -80.246307, 25.398603 ], [ -80.226142, 25.406313 ], [ -80.219025, 25.411058 ], [ -80.214280, 25.416988 ], [ -80.206570, 25.434188 ], [ -80.199453, 25.458504 ], [ -80.192336, 25.473331 ], [ -80.189964, 25.485786 ], [ -80.191743, 25.495275 ], [ -80.188778, 25.507730 ], [ -80.179288, 25.518999 ], [ -80.174544, 25.518406 ], [ -80.173951, 25.482821 ], [ -80.184033, 25.468587 ], [ -80.204198, 25.412244 ], [ -80.221991, 25.397417 ], [ -80.238004, 25.361832 ], [ -80.240376, 25.347005 ], [ -80.249865, 25.342853 ], [ -80.250581, 25.341930 ] ] ], [ [ [ -81.582923, 24.658732 ], [ -81.580534, 24.669140 ], [ -81.562917, 24.692912 ], [ -81.557610, 24.692488 ], [ -81.542116, 24.681026 ], [ -81.535323, 24.679540 ], [ -81.518980, 24.687818 ], [ -81.516433, 24.700341 ], [ -81.512400, 24.703737 ], [ -81.490962, 24.710105 ], [ -81.476642, 24.711244 ], [ -81.474186, 24.706332 ], [ -81.469275, 24.704286 ], [ -81.459043, 24.707355 ], [ -81.454132, 24.710834 ], [ -81.451881, 24.714518 ], [ -81.452700, 24.736209 ], [ -81.456588, 24.740097 ], [ -81.451267, 24.747464 ], [ -81.440831, 24.735390 ], [ -81.438580, 24.727000 ], [ -81.435715, 24.723931 ], [ -81.432032, 24.722908 ], [ -81.423028, 24.731911 ], [ -81.421595, 24.737641 ], [ -81.427121, 24.745827 ], [ -81.430599, 24.747259 ], [ -81.431009, 24.751761 ], [ -81.425483, 24.752989 ], [ -81.402769, 24.749101 ], [ -81.392947, 24.743371 ], [ -81.390287, 24.738460 ], [ -81.389468, 24.731298 ], [ -81.385580, 24.726182 ], [ -81.360410, 24.708788 ], [ -81.345881, 24.707560 ], [ -81.319282, 24.701238 ], [ -81.314787, 24.691764 ], [ -81.313933, 24.680707 ], [ -81.309664, 24.665017 ], [ -81.298028, 24.656774 ], [ -81.298369, 24.654326 ], [ -81.303113, 24.651665 ], [ -81.332831, 24.639528 ], [ -81.395096, 24.621062 ], [ -81.401946, 24.623564 ], [ -81.403319, 24.640294 ], [ -81.414187, 24.647167 ], [ -81.432315, 24.645949 ], [ -81.448623, 24.640172 ], [ -81.470411, 24.641985 ], [ -81.480951, 24.645121 ], [ -81.481830, 24.647369 ], [ -81.477915, 24.649893 ], [ -81.476410, 24.653197 ], [ -81.480504, 24.659757 ], [ -81.498580, 24.664980 ], [ -81.502992, 24.660877 ], [ -81.505585, 24.654609 ], [ -81.508740, 24.644210 ], [ -81.509028, 24.631516 ], [ -81.511165, 24.625135 ], [ -81.518595, 24.620304 ], [ -81.546450, 24.614895 ], [ -81.602998, 24.586444 ], [ -81.664209, 24.573143 ], [ -81.674694, 24.564359 ], [ -81.685278, 24.558739 ], [ -81.691575, 24.559886 ], [ -81.732511, 24.556423 ], [ -81.765993, 24.552103 ], [ -81.786157, 24.546580 ], [ -81.810333, 24.544701 ], [ -81.812890, 24.546468 ], [ -81.814446, 24.563580 ], [ -81.811386, 24.569750 ], [ -81.800676, 24.570989 ], [ -81.794057, 24.586000 ], [ -81.773808, 24.584977 ], [ -81.748071, 24.590199 ], [ -81.739241, 24.589973 ], [ -81.734573, 24.584148 ], [ -81.730473, 24.581960 ], [ -81.715944, 24.587956 ], [ -81.715480, 24.592498 ], [ -81.705364, 24.597647 ], [ -81.699349, 24.597647 ], [ -81.694235, 24.591932 ], [ -81.687017, 24.592534 ], [ -81.678595, 24.597647 ], [ -81.668970, 24.607873 ], [ -81.655735, 24.616295 ], [ -81.637087, 24.621408 ], [ -81.614829, 24.642764 ], [ -81.614529, 24.650584 ], [ -81.597685, 24.655397 ], [ -81.587759, 24.655998 ], [ -81.582923, 24.658732 ] ] ], [ [ [ -82.150680, 24.576331 ], [ -82.143075, 24.593395 ], [ -82.135423, 24.596879 ], [ -82.125268, 24.597426 ], [ -82.104187, 24.588256 ], [ -82.101051, 24.584679 ], [ -82.099417, 24.572522 ], [ -82.104429, 24.561167 ], [ -82.116787, 24.549144 ], [ -82.159439, 24.548212 ], [ -82.165206, 24.552159 ], [ -82.164426, 24.563375 ], [ -82.150680, 24.576331 ] ] ], [ [ [ -81.249799, 24.673357 ], [ -81.246095, 24.675832 ], [ -81.243232, 24.673998 ], [ -81.244761, 24.669202 ], [ -81.281778, 24.653750 ], [ -81.278312, 24.660448 ], [ -81.260006, 24.674848 ], [ -81.249799, 24.673357 ] ] ], [ [ [ -80.909954, 24.781154 ], [ -80.906288, 24.769867 ], [ -80.912042, 24.765050 ], [ -80.938543, 24.767535 ], [ -81.015933, 24.719881 ], [ -81.023794, 24.716901 ], [ -81.028616, 24.720618 ], [ -81.032447, 24.727323 ], [ -81.034290, 24.727341 ], [ -81.064554, 24.715453 ], [ -81.071034, 24.711722 ], [ -81.075855, 24.704266 ], [ -81.078716, 24.696557 ], [ -81.078439, 24.692382 ], [ -81.108041, 24.688592 ], [ -81.124094, 24.704873 ], [ -81.125371, 24.708291 ], [ -81.107355, 24.712760 ], [ -81.105287, 24.711280 ], [ -81.099135, 24.711993 ], [ -81.066816, 24.723926 ], [ -81.050570, 24.737581 ], [ -81.041797, 24.742965 ], [ -81.036698, 24.742827 ], [ -81.035192, 24.739982 ], [ -81.022170, 24.733091 ], [ -81.016918, 24.734676 ], [ -80.994426, 24.743991 ], [ -80.986454, 24.752749 ], [ -80.960129, 24.764226 ], [ -80.910431, 24.782324 ], [ -80.909954, 24.781154 ] ] ], [ [ [ -81.317673, 24.757290 ], [ -81.305468, 24.756612 ], [ -81.290801, 24.736862 ], [ -81.288259, 24.720881 ], [ -81.302984, 24.714199 ], [ -81.310744, 24.727068 ], [ -81.318505, 24.729477 ], [ -81.326844, 24.728375 ], [ -81.350162, 24.746524 ], [ -81.357417, 24.756834 ], [ -81.342695, 24.756250 ], [ -81.327555, 24.762315 ], [ -81.324637, 24.767210 ], [ -81.317673, 24.757290 ] ] ], [ [ [ -80.890540, 24.791678 ], [ -80.884572, 24.791561 ], [ -80.884020, 24.790414 ], [ -80.892649, 24.785991 ], [ -80.906874, 24.783744 ], [ -80.890540, 24.791678 ] ] ], [ [ [ -80.788263, 24.824218 ], [ -80.790497, 24.817789 ], [ -80.796053, 24.811940 ], [ -80.822342, 24.812629 ], [ -80.846191, 24.802968 ], [ -80.850338, 24.802600 ], [ -80.850866, 24.803701 ], [ -80.846142, 24.807488 ], [ -80.830158, 24.814280 ], [ -80.814551, 24.827953 ], [ -80.792780, 24.843918 ], [ -80.780564, 24.840520 ], [ -80.788263, 24.824218 ] ] ], [ [ [ -80.729275, 24.865361 ], [ -80.719977, 24.864644 ], [ -80.703028, 24.880873 ], [ -80.691762, 24.885759 ], [ -80.690354, 24.881539 ], [ -80.703176, 24.869495 ], [ -80.711850, 24.863323 ], [ -80.761359, 24.836225 ], [ -80.766966, 24.836158 ], [ -80.745468, 24.850652 ], [ -80.740611, 24.857421 ], [ -80.732343, 24.864810 ], [ -80.729275, 24.865361 ] ] ], [ [ [ -82.255777, 26.703437 ], [ -82.255159, 26.708160 ], [ -82.246535, 26.706435 ], [ -82.242510, 26.694361 ], [ -82.245960, 26.688612 ], [ -82.246535, 26.683437 ], [ -82.237440, 26.661976 ], [ -82.218342, 26.626407 ], [ -82.214337, 26.602944 ], [ -82.196514, 26.559823 ], [ -82.187315, 26.527626 ], [ -82.177541, 26.502328 ], [ -82.166042, 26.489679 ], [ -82.149368, 26.477605 ], [ -82.131545, 26.477030 ], [ -82.120046, 26.473581 ], [ -82.088423, 26.455182 ], [ -82.076924, 26.466106 ], [ -82.062551, 26.470131 ], [ -82.038403, 26.456907 ], [ -82.015607, 26.454858 ], [ -82.013713, 26.454258 ], [ -82.013913, 26.452058 ], [ -82.063114, 26.425459 ], [ -82.075015, 26.422059 ], [ -82.082915, 26.422059 ], [ -82.098115, 26.424959 ], [ -82.126671, 26.436279 ], [ -82.148716, 26.455458 ], [ -82.172917, 26.467658 ], [ -82.177017, 26.471558 ], [ -82.180717, 26.476257 ], [ -82.186441, 26.489221 ], [ -82.201402, 26.556310 ], [ -82.205523, 26.566536 ], [ -82.222131, 26.590402 ], [ -82.238872, 26.636433 ], [ -82.248659, 26.654337 ], [ -82.263008, 26.673388 ], [ -82.268007, 26.682791 ], [ -82.264351, 26.698496 ], [ -82.255777, 26.703437 ] ] ], [ [ [ -84.777208, 29.707398 ], [ -84.729836, 29.738881 ], [ -84.716994, 29.749066 ], [ -84.696726, 29.769930 ], [ -84.694125, 29.764593 ], [ -84.694939, 29.761844 ], [ -84.713747, 29.741390 ], [ -84.765117, 29.699724 ], [ -84.776954, 29.692191 ], [ -84.799129, 29.681565 ], [ -84.853829, 29.664720 ], [ -84.884632, 29.652248 ], [ -84.957779, 29.612635 ], [ -85.036219, 29.588919 ], [ -85.051033, 29.586928 ], [ -85.054624, 29.592084 ], [ -85.069453, 29.605282 ], [ -85.095190, 29.622490 ], [ -85.097082, 29.625215 ], [ -85.094882, 29.627757 ], [ -85.066530, 29.609952 ], [ -85.038497, 29.599552 ], [ -85.023501, 29.597073 ], [ -85.017205, 29.604379 ], [ -84.987775, 29.610307 ], [ -84.968314, 29.617238 ], [ -84.932592, 29.637232 ], [ -84.925842, 29.644949 ], [ -84.920333, 29.648638 ], [ -84.895885, 29.657444 ], [ -84.862099, 29.672572 ], [ -84.813352, 29.687028 ], [ -84.798160, 29.699321 ], [ -84.777208, 29.707398 ] ] ], [ [ [ -85.156415, 29.679628 ], [ -85.137397, 29.684348 ], [ -85.134639, 29.686569 ], [ -85.114268, 29.688658 ], [ -85.093902, 29.684838 ], [ -85.083719, 29.679019 ], [ -85.077237, 29.670862 ], [ -85.091399, 29.648634 ], [ -85.097218, 29.633004 ], [ -85.124913, 29.628433 ], [ -85.142746, 29.635404 ], [ -85.162520, 29.650282 ], [ -85.184530, 29.663987 ], [ -85.204314, 29.672695 ], [ -85.222546, 29.678039 ], [ -85.220324, 29.680138 ], [ -85.208981, 29.681775 ], [ -85.184776, 29.682710 ], [ -85.168625, 29.682409 ], [ -85.156415, 29.679628 ] ] ], [ [ [ -82.821585, 27.964443 ], [ -82.829801, 27.968469 ], [ -82.828625, 28.019795 ], [ -82.823025, 28.030695 ], [ -82.823063, 28.044758 ], [ -82.826282, 28.053450 ], [ -82.831825, 28.062893 ], [ -82.836326, 28.073193 ], [ -82.833225, 28.082193 ], [ -82.830525, 28.085293 ], [ -82.826125, 28.083793 ], [ -82.823063, 28.068258 ], [ -82.818288, 28.057613 ], [ -82.813435, 28.037160 ], [ -82.815168, 28.012547 ], [ -82.821408, 28.008387 ], [ -82.821755, 28.002494 ], [ -82.817248, 27.992094 ], [ -82.815168, 27.973721 ], [ -82.821585, 27.964443 ] ] ], [ [ [ -83.309455, 30.634417 ], [ -83.309250, 30.634405 ], [ -83.309249, 30.634405 ], [ -83.256218, 30.631279 ], [ -83.187391, 30.627223 ], [ -83.174411, 30.626444 ], [ -83.163309, 30.625895 ], [ -83.156170, 30.625504 ], [ -83.136616, 30.624346 ], [ -82.878779, 30.609082 ], [ -82.877259, 30.609024 ], [ -82.698902, 30.598271 ], [ -82.698618, 30.598232 ], [ -82.689539, 30.597734 ], [ -82.689271, 30.597719 ], [ -82.584002, 30.591796 ], [ -82.569237, 30.590965 ], [ -82.565476, 30.590622 ], [ -82.553159, 30.589934 ], [ -82.545055, 30.589361 ], [ -82.536233, 30.588885 ], [ -82.524899, 30.588189 ], [ -82.459792, 30.584287 ], [ -82.459544, 30.584272 ], [ -82.418915, 30.581745 ], [ -82.374844, 30.579004 ], [ -82.287343, 30.573458 ], [ -82.258100, 30.571559 ], [ -82.249841, 30.570863 ], [ -82.214847, 30.567009 ], [ -82.214385, 30.566958 ], [ -82.212330, 30.499558 ], [ -82.206040, 30.455507 ], [ -82.210291, 30.424590 ], [ -82.204151, 30.401330 ], [ -82.189583, 30.376213 ], [ -82.171508, 30.359869 ], [ -82.165192, 30.358035 ], [ -82.124835, 30.366564 ], [ -82.050069, 30.362338 ], [ -82.050031, 30.362490 ], [ -82.016103, 30.497355 ], [ -82.016990, 30.519358 ], [ -82.005477, 30.563495 ], [ -82.013290, 30.595665 ], [ -82.037609, 30.633271 ], [ -82.049401, 30.655296 ], [ -82.050432, 30.676266 ], [ -82.023213, 30.781987 ], [ -81.999836, 30.788348 ], [ -81.906014, 30.822176 ], [ -81.868608, 30.792754 ], [ -81.840375, 30.786384 ], [ -81.827014, 30.788933 ], [ -81.806652, 30.789683 ], [ -81.759338, 30.771377 ], [ -81.741278, 30.762681 ], [ -81.732627, 30.749934 ], [ -81.719927, 30.744634 ], [ -81.637222, 30.733835 ], [ -81.624298, 30.736194 ], [ -81.606221, 30.718135 ], [ -81.544618, 30.712636 ], [ -81.444124, 30.709714 ], [ -81.432725, 30.703017 ], [ -81.427420, 30.698020 ], [ -81.430843, 30.669393 ], [ -81.443099, 30.600938 ], [ -81.442564, 30.555189 ], [ -81.434064, 30.522569 ], [ -81.442784, 30.509920 ], [ -81.447087, 30.503679 ], [ -81.440108, 30.497678 ], [ -81.426010, 30.496739 ], [ -81.410809, 30.482039 ], [ -81.407008, 30.422040 ], [ -81.397422, 30.400626 ], [ -81.396407, 30.340040 ], [ -81.391606, 30.303441 ], [ -81.385505, 30.273841 ], [ -81.379879, 30.252914 ], [ -81.355591, 30.162563 ], [ -81.308978, 29.969440 ], [ -81.295268, 29.928614 ], [ -81.288955, 29.915180 ], [ -81.276540, 29.900460 ], [ -81.270442, 29.883106 ], [ -81.264693, 29.858212 ], [ -81.263396, 29.820663 ], [ -81.256711, 29.784693 ], [ -81.240924, 29.739218 ], [ -81.229015, 29.714693 ], [ -81.212878, 29.670667 ], [ -81.211565, 29.667085 ], [ -81.163581, 29.555290 ], [ -81.123896, 29.474465 ], [ -81.101923, 29.427055 ], [ -81.046678, 29.307856 ], [ -80.995423, 29.206052 ], [ -80.966176, 29.147960 ], [ -80.944376, 29.110861 ], [ -80.907275, 29.064262 ], [ -80.893675, 29.036163 ], [ -80.878275, 29.010563 ], [ -80.787021, 28.875266 ], [ -80.732244, 28.791237 ], [ -80.713183, 28.761997 ], [ -80.713108, 28.761882 ], [ -80.712714, 28.761277 ], [ -80.709725, 28.756692 ], [ -80.708545, 28.755202 ], [ -80.672232, 28.709363 ], [ -80.663183, 28.697940 ], [ -80.647924, 28.678677 ], [ -80.647760, 28.678470 ], [ -80.647288, 28.677875 ], [ -80.645839, 28.675817 ], [ -80.641436, 28.669564 ], [ -80.639019, 28.666131 ], [ -80.631314, 28.655188 ], [ -80.616790, 28.634561 ], [ -80.583884, 28.597705 ], [ -80.574868, 28.585166 ], [ -80.567361, 28.562353 ], [ -80.560973, 28.530736 ], [ -80.536115, 28.478647 ], [ -80.525094, 28.459454 ], [ -80.526732, 28.451705 ], [ -80.562877, 28.437779 ], [ -80.574136, 28.427764 ], [ -80.587813, 28.410856 ], [ -80.596174, 28.390682 ], [ -80.603374, 28.363983 ], [ -80.606874, 28.336484 ], [ -80.608074, 28.311285 ], [ -80.604214, 28.257733 ], [ -80.589975, 28.177990 ], [ -80.566432, 28.095630 ], [ -80.547675, 28.048795 ], [ -80.508871, 27.970477 ], [ -80.446973, 27.861954 ], [ -80.447084, 27.860755 ], [ -80.447179, 27.859731 ], [ -80.383695, 27.740045 ], [ -80.351717, 27.642623 ], [ -80.350553, 27.628361 ], [ -80.344370, 27.616226 ], [ -80.330956, 27.597541 ], [ -80.324699, 27.569178 ], [ -80.321271, 27.557378 ], [ -80.311757, 27.524625 ], [ -80.301170, 27.500314 ], [ -80.293171, 27.500314 ], [ -80.265535, 27.420542 ], [ -80.253665, 27.379790 ], [ -80.233538, 27.341307 ], [ -80.226753, 27.322736 ], [ -80.199288, 27.263022 ], [ -80.193090, 27.249546 ], [ -80.161470, 27.192814 ], [ -80.153375, 27.169308 ], [ -80.159554, 27.163325 ], [ -80.149820, 27.143557 ], [ -80.138605, 27.111517 ], [ -80.116772, 27.072397 ], [ -80.093909, 27.018587 ], [ -80.079531, 26.970500 ], [ -80.066697, 26.927579 ], [ -80.046263, 26.859238 ], [ -80.031362, 26.796339 ], [ -80.032120, 26.771530 ], [ -80.036362, 26.771240 ], [ -80.037462, 26.766340 ], [ -80.032862, 26.715242 ], [ -80.032862, 26.700842 ], [ -80.035763, 26.676043 ], [ -80.035363, 26.612346 ], [ -80.038863, 26.569347 ], [ -80.050363, 26.509549 ], [ -80.060564, 26.444652 ], [ -80.070564, 26.336455 ], [ -80.072264, 26.335356 ], [ -80.074837, 26.321032 ], [ -80.075264, 26.318656 ], [ -80.079865, 26.264358 ], [ -80.085565, 26.249259 ], [ -80.089365, 26.231859 ], [ -80.101366, 26.147762 ], [ -80.105266, 26.096264 ], [ -80.106813, 26.092991 ], [ -80.108995, 26.088372 ], [ -80.109566, 26.087165 ], [ -80.112334, 26.053193 ], [ -80.117778, 25.986369 ], [ -80.117798, 25.975152 ], [ -80.117904, 25.915772 ], [ -80.120870, 25.883152 ], [ -80.119684, 25.841043 ], [ -80.122056, 25.817913 ], [ -80.127394, 25.791224 ], [ -80.127987, 25.772245 ], [ -80.137476, 25.750301 ], [ -80.144000, 25.740812 ], [ -80.152896, 25.702855 ], [ -80.154082, 25.683283 ], [ -80.152303, 25.676759 ], [ -80.154972, 25.665490 ], [ -80.160903, 25.664897 ], [ -80.176916, 25.685062 ], [ -80.170392, 25.710565 ], [ -80.164461, 25.721833 ], [ -80.166241, 25.728950 ], [ -80.172765, 25.737847 ], [ -80.184626, 25.745557 ], [ -80.197674, 25.744370 ], [ -80.229107, 25.732509 ], [ -80.240376, 25.724206 ], [ -80.244528, 25.717089 ], [ -80.250459, 25.688028 ], [ -80.265879, 25.658373 ], [ -80.267065, 25.651849 ], [ -80.277147, 25.637022 ], [ -80.288416, 25.630498 ], [ -80.296719, 25.622195 ], [ -80.301464, 25.613299 ], [ -80.305615, 25.593134 ], [ -80.305615, 25.575342 ], [ -80.302057, 25.567632 ], [ -80.313918, 25.539164 ], [ -80.324594, 25.535605 ], [ -80.328746, 25.532640 ], [ -80.339421, 25.499427 ], [ -80.339421, 25.478669 ], [ -80.337049, 25.465621 ], [ -80.328152, 25.443084 ], [ -80.320442, 25.437153 ], [ -80.326373, 25.422919 ], [ -80.325780, 25.398010 ], [ -80.320442, 25.391486 ], [ -80.310360, 25.389707 ], [ -80.306801, 25.384369 ], [ -80.310360, 25.373100 ], [ -80.335269, 25.338701 ], [ -80.352469, 25.329805 ], [ -80.361662, 25.327433 ], [ -80.374116, 25.317350 ], [ -80.383013, 25.301337 ], [ -80.385978, 25.288289 ], [ -80.419191, 25.263380 ], [ -80.437815, 25.253077 ], [ -80.447066, 25.247960 ], [ -80.462832, 25.236248 ], [ -80.467824, 25.232540 ], [ -80.468366, 25.231977 ], [ -80.469843, 25.230442 ], [ -80.483244, 25.216526 ], [ -80.487591, 25.207829 ], [ -80.488035, 25.206942 ], [ -80.488216, 25.206757 ], [ -80.495341, 25.199463 ], [ -80.496179, 25.199637 ], [ -80.498361, 25.200091 ], [ -80.498644, 25.200150 ], [ -80.502983, 25.203160 ], [ -80.503125, 25.203259 ], [ -80.507780, 25.206488 ], [ -80.508113, 25.206719 ], [ -80.508116, 25.206725 ], [ -80.512928, 25.216719 ], [ -80.514724, 25.217702 ], [ -80.515297, 25.218016 ], [ -80.520359, 25.220788 ], [ -80.523190, 25.220080 ], [ -80.525784, 25.218649 ], [ -80.530207, 25.216207 ], [ -80.540947, 25.218210 ], [ -80.542040, 25.221850 ], [ -80.540947, 25.224945 ], [ -80.540765, 25.229678 ], [ -80.548491, 25.236535 ], [ -80.558223, 25.239012 ], [ -80.570785, 25.239366 ], [ -80.589186, 25.223796 ], [ -80.587593, 25.207695 ], [ -80.584783, 25.200695 ], [ -80.584771, 25.200665 ], [ -80.594338, 25.193437 ], [ -80.601627, 25.187931 ], [ -80.609607, 25.181902 ], [ -80.609609, 25.181901 ], [ -80.618989, 25.177345 ], [ -80.619024, 25.177328 ], [ -80.633992, 25.176829 ], [ -80.639873, 25.176633 ], [ -80.640275, 25.176620 ], [ -80.640823, 25.176364 ], [ -80.642456, 25.175601 ], [ -80.645737, 25.174069 ], [ -80.645822, 25.174029 ], [ -80.646099, 25.173599 ], [ -80.648565, 25.169773 ], [ -80.649251, 25.168708 ], [ -80.656944, 25.168216 ], [ -80.660692, 25.167976 ], [ -80.669950, 25.167384 ], [ -80.674324, 25.167104 ], [ -80.679852, 25.166751 ], [ -80.683909, 25.166491 ], [ -80.688361, 25.164711 ], [ -80.695038, 25.157588 ], [ -80.701270, 25.146683 ], [ -80.703718, 25.139115 ], [ -80.715099, 25.140872 ], [ -80.721886, 25.145101 ], [ -80.728602, 25.144316 ], [ -80.734741, 25.143598 ], [ -80.738330, 25.143178 ], [ -80.742877, 25.142646 ], [ -80.746379, 25.148559 ], [ -80.746264, 25.155303 ], [ -80.751866, 25.163762 ], [ -80.757581, 25.166734 ], [ -80.795456, 25.172337 ], [ -80.796219, 25.172450 ], [ -80.815193, 25.164956 ], [ -80.817116, 25.164196 ], [ -80.823441, 25.161698 ], [ -80.826465, 25.160504 ], [ -80.826530, 25.160478 ], [ -80.826544, 25.160509 ], [ -80.827179, 25.161888 ], [ -80.827489, 25.162562 ], [ -80.828435, 25.164619 ], [ -80.830034, 25.168094 ], [ -80.838227, 25.174791 ], [ -80.843703, 25.176312 ], [ -80.846395, 25.177060 ], [ -80.846400, 25.177060 ], [ -80.858167, 25.176576 ], [ -80.858801, 25.176493 ], [ -80.874323, 25.174469 ], [ -80.874815, 25.174405 ], [ -80.875460, 25.174321 ], [ -80.875731, 25.174185 ], [ -80.878982, 25.172562 ], [ -80.879235, 25.172436 ], [ -80.891681, 25.166221 ], [ -80.899459, 25.162337 ], [ -80.900066, 25.162034 ], [ -80.900124, 25.161726 ], [ -80.901110, 25.156496 ], [ -80.901592, 25.153933 ], [ -80.901617, 25.153803 ], [ -80.900220, 25.150627 ], [ -80.898911, 25.147652 ], [ -80.900559, 25.139755 ], [ -80.900577, 25.139669 ], [ -80.900668, 25.139679 ], [ -80.902311, 25.139853 ], [ -80.906578, 25.140307 ], [ -80.915924, 25.141301 ], [ -80.915965, 25.141291 ], [ -80.931353, 25.137424 ], [ -80.936750, 25.136068 ], [ -80.939272, 25.135434 ], [ -80.940988, 25.135003 ], [ -80.943164, 25.134456 ], [ -80.943216, 25.134443 ], [ -80.954567, 25.135450 ], [ -80.955577, 25.135540 ], [ -80.956150, 25.135591 ], [ -80.957427, 25.135704 ], [ -80.958727, 25.135546 ], [ -80.967465, 25.134482 ], [ -80.967506, 25.134477 ], [ -80.967740, 25.134448 ], [ -80.967832, 25.134437 ], [ -80.970185, 25.134150 ], [ -80.970727, 25.134084 ], [ -80.970797, 25.134076 ], [ -80.971585, 25.133980 ], [ -80.971664, 25.133970 ], [ -80.971765, 25.133958 ], [ -80.973129, 25.133473 ], [ -80.977198, 25.132028 ], [ -80.991949, 25.126789 ], [ -80.994096, 25.126026 ], [ -80.999176, 25.124222 ], [ -80.999772, 25.124290 ], [ -81.009598, 25.125403 ], [ -81.022989, 25.129393 ], [ -81.025154, 25.129305 ], [ -81.033404, 25.128969 ], [ -81.038021, 25.128781 ], [ -81.049308, 25.128322 ], [ -81.049344, 25.128320 ], [ -81.049445, 25.128316 ], [ -81.049896, 25.128298 ], [ -81.050505, 25.128273 ], [ -81.079859, 25.118797 ], [ -81.094524, 25.127054 ], [ -81.111943, 25.145470 ], [ -81.120616, 25.152302 ], [ -81.133567, 25.156295 ], [ -81.141024, 25.163868 ], [ -81.142278, 25.183000 ], [ -81.142471, 25.183440 ], [ -81.142897, 25.184406 ], [ -81.146737, 25.193139 ], [ -81.155252, 25.207706 ], [ -81.155481, 25.208098 ], [ -81.155820, 25.208389 ], [ -81.168046, 25.218854 ], [ -81.171265, 25.221609 ], [ -81.172044, 25.222276 ], [ -81.171978, 25.223648 ], [ -81.171455, 25.234483 ], [ -81.171369, 25.236268 ], [ -81.170953, 25.244898 ], [ -81.170907, 25.245857 ], [ -81.169709, 25.249231 ], [ -81.169509, 25.249795 ], [ -81.169294, 25.250398 ], [ -81.168307, 25.253178 ], [ -81.162070, 25.289833 ], [ -81.159293, 25.298595 ], [ -81.152300, 25.305543 ], [ -81.148915, 25.318067 ], [ -81.151916, 25.324766 ], [ -81.148103, 25.332793 ], [ -81.140099, 25.341117 ], [ -81.133913, 25.342996 ], [ -81.121410, 25.338750 ], [ -81.118208, 25.345220 ], [ -81.117265, 25.354953 ], [ -81.128492, 25.380511 ], [ -81.141395, 25.381358 ], [ -81.150508, 25.387255 ], [ -81.150656, 25.399206 ], [ -81.147144, 25.404297 ], [ -81.146765, 25.407577 ], [ -81.168652, 25.463848 ], [ -81.179406, 25.475427 ], [ -81.191924, 25.484745 ], [ -81.208201, 25.504937 ], [ -81.210149, 25.516888 ], [ -81.203175, 25.534160 ], [ -81.204389, 25.538908 ], [ -81.209321, 25.548611 ], [ -81.225557, 25.558470 ], [ -81.232705, 25.573366 ], [ -81.233051, 25.586587 ], [ -81.240519, 25.599041 ], [ -81.240677, 25.613629 ], [ -81.253951, 25.638181 ], [ -81.268924, 25.656927 ], [ -81.277374, 25.664980 ], [ -81.290328, 25.687506 ], [ -81.328935, 25.717233 ], [ -81.335037, 25.715649 ], [ -81.346078, 25.721473 ], [ -81.345972, 25.736536 ], [ -81.343984, 25.747668 ], [ -81.346767, 25.754029 ], [ -81.355116, 25.760390 ], [ -81.359489, 25.766354 ], [ -81.361875, 25.772715 ], [ -81.344779, 25.782257 ], [ -81.340406, 25.786631 ], [ -81.341598, 25.794582 ], [ -81.344564, 25.803322 ], [ -81.349152, 25.816847 ], [ -81.352731, 25.822015 ], [ -81.362272, 25.824401 ], [ -81.386127, 25.839906 ], [ -81.394476, 25.851834 ], [ -81.417536, 25.864954 ], [ -81.424295, 25.867737 ], [ -81.429066, 25.865351 ], [ -81.441391, 25.863761 ], [ -81.458487, 25.868929 ], [ -81.471607, 25.881652 ], [ -81.473992, 25.888411 ], [ -81.487510, 25.888411 ], [ -81.501027, 25.884037 ], [ -81.508979, 25.884037 ], [ -81.512955, 25.886423 ], [ -81.511762, 25.896760 ], [ -81.515738, 25.899941 ], [ -81.527665, 25.901531 ], [ -81.541183, 25.900338 ], [ -81.577363, 25.889206 ], [ -81.584519, 25.888808 ], [ -81.614735, 25.893977 ], [ -81.623482, 25.897158 ], [ -81.640084, 25.897784 ], [ -81.644553, 25.897953 ], [ -81.654493, 25.893579 ], [ -81.663821, 25.885605 ], [ -81.672633, 25.856654 ], [ -81.678287, 25.845301 ], [ -81.684800, 25.847205 ], [ -81.689540, 25.852710 ], [ -81.713172, 25.897568 ], [ -81.717687, 25.902039 ], [ -81.727086, 25.907207 ], [ -81.731950, 25.931506 ], [ -81.738118, 25.942009 ], [ -81.745579, 25.949643 ], [ -81.749724, 25.960463 ], [ -81.747834, 25.994273 ], [ -81.750668, 25.998425 ], [ -81.757463, 26.000374 ], [ -81.762439, 26.006070 ], [ -81.801663, 26.088227 ], [ -81.808833, 26.152246 ], [ -81.814610, 26.173167 ], [ -81.816810, 26.207166 ], [ -81.820675, 26.236735 ], [ -81.833142, 26.294518 ], [ -81.844555, 26.327712 ], [ -81.845834, 26.330378 ], [ -81.868983, 26.378648 ], [ -81.901910, 26.410859 ], [ -81.902710, 26.416159 ], [ -81.911710, 26.427158 ], [ -81.923611, 26.436658 ], [ -81.938411, 26.445058 ], [ -81.956611, 26.452358 ], [ -81.964212, 26.457957 ], [ -81.967112, 26.462857 ], [ -81.966212, 26.465057 ], [ -81.969509, 26.476505 ], [ -81.980712, 26.480957 ], [ -81.997012, 26.484856 ], [ -82.008961, 26.484052 ], [ -82.013680, 26.490829 ], [ -82.009080, 26.505203 ], [ -82.024604, 26.512677 ], [ -82.043577, 26.519577 ], [ -82.067150, 26.513252 ], [ -82.071750, 26.492554 ], [ -82.094748, 26.483930 ], [ -82.105672, 26.483930 ], [ -82.111996, 26.540850 ], [ -82.118896, 26.560973 ], [ -82.122345, 26.579371 ], [ -82.137869, 26.637441 ], [ -82.149943, 26.654115 ], [ -82.181565, 26.681712 ], [ -82.179840, 26.696661 ], [ -82.173516, 26.701836 ], [ -82.151668, 26.704136 ], [ -82.139019, 26.702986 ], [ -82.125795, 26.699536 ], [ -82.118896, 26.690912 ], [ -82.106247, 26.667339 ], [ -82.099922, 26.662739 ], [ -82.093023, 26.665614 ], [ -82.086698, 26.685162 ], [ -82.084974, 26.702411 ], [ -82.079799, 26.716784 ], [ -82.066575, 26.742657 ], [ -82.062029, 26.770439 ], [ -82.061401, 26.774279 ], [ -82.061401, 26.789228 ], [ -82.055076, 26.802452 ], [ -82.057951, 26.822000 ], [ -82.058526, 26.838674 ], [ -82.056801, 26.858797 ], [ -82.059101, 26.876621 ], [ -82.066575, 26.882370 ], [ -82.090723, 26.888694 ], [ -82.093023, 26.906518 ], [ -82.090148, 26.923191 ], [ -82.083249, 26.927791 ], [ -82.067725, 26.927791 ], [ -82.061976, 26.931241 ], [ -82.061401, 26.938715 ], [ -82.063126, 26.950214 ], [ -82.076349, 26.958263 ], [ -82.107972, 26.957688 ], [ -82.113039, 26.955788 ], [ -82.117171, 26.954239 ], [ -82.124645, 26.945615 ], [ -82.137294, 26.926066 ], [ -82.162017, 26.925491 ], [ -82.169491, 26.923191 ], [ -82.175241, 26.916867 ], [ -82.172941, 26.897319 ], [ -82.156267, 26.851898 ], [ -82.147068, 26.789803 ], [ -82.151093, 26.783479 ], [ -82.172941, 26.778879 ], [ -82.178690, 26.772555 ], [ -82.209329, 26.772146 ], [ -82.221812, 26.771980 ], [ -82.232193, 26.782880 ], [ -82.233311, 26.784054 ], [ -82.234019, 26.783251 ], [ -82.241935, 26.774279 ], [ -82.251134, 26.755881 ], [ -82.259867, 26.717398 ], [ -82.263804, 26.725644 ], [ -82.264682, 26.756836 ], [ -82.269499, 26.784674 ], [ -82.271699, 26.789516 ], [ -82.281552, 26.811203 ], [ -82.289086, 26.827784 ], [ -82.301736, 26.841588 ], [ -82.351649, 26.908384 ], [ -82.375737, 26.946041 ], [ -82.400618, 26.984937 ], [ -82.419218, 27.020736 ], [ -82.445718, 27.060634 ], [ -82.460319, 27.099933 ], [ -82.465319, 27.110732 ], [ -82.468890, 27.113612 ], [ -82.477019, 27.141231 ], [ -82.512319, 27.207528 ], [ -82.539719, 27.254326 ], [ -82.545120, 27.261026 ], [ -82.559020, 27.268826 ], [ -82.569754, 27.279452 ], [ -82.569248, 27.298588 ], [ -82.576020, 27.309324 ], [ -82.597629, 27.335754 ], [ -82.623863, 27.362206 ], [ -82.642821, 27.389720 ], [ -82.642837, 27.389737 ], [ -82.675121, 27.424318 ], [ -82.691821, 27.437218 ], [ -82.691004, 27.444331 ], [ -82.707821, 27.487615 ], [ -82.714521, 27.500415 ], [ -82.724522, 27.513614 ], [ -82.743017, 27.531086 ], [ -82.745748, 27.538834 ], [ -82.742437, 27.539360 ], [ -82.708121, 27.523514 ], [ -82.710621, 27.501715 ], [ -82.706821, 27.498415 ], [ -82.690421, 27.496415 ], [ -82.686421, 27.497215 ], [ -82.686921, 27.508015 ], [ -82.683621, 27.513115 ], [ -82.674621, 27.519614 ], [ -82.662020, 27.522814 ], [ -82.650720, 27.523115 ], [ -82.646014, 27.533540 ], [ -82.632053, 27.551908 ], [ -82.612019, 27.571231 ], [ -82.613003, 27.582837 ], [ -82.612749, 27.583319 ], [ -82.611717, 27.585283 ], [ -82.596488, 27.594045 ], [ -82.584629, 27.596021 ], [ -82.570607, 27.608882 ], [ -82.565667, 27.615713 ], [ -82.558538, 27.638678 ], [ -82.554499, 27.645145 ], [ -82.537146, 27.672933 ], [ -82.514265, 27.705588 ], [ -82.494891, 27.718963 ], [ -82.482449, 27.719886 ], [ -82.477638, 27.723004 ], [ -82.476297, 27.729929 ], [ -82.477129, 27.735216 ], [ -82.482305, 27.742649 ], [ -82.478339, 27.746250 ], [ -82.457543, 27.752571 ], [ -82.434635, 27.764355 ], [ -82.431980, 27.768092 ], [ -82.433981, 27.774087 ], [ -82.419066, 27.793767 ], [ -82.418401, 27.803187 ], [ -82.410837, 27.810868 ], [ -82.402857, 27.812671 ], [ -82.393383, 27.837519 ], [ -82.397463, 27.851631 ], [ -82.402615, 27.882602 ], [ -82.413915, 27.901401 ], [ -82.432316, 27.901301 ], [ -82.451591, 27.907506 ], [ -82.460016, 27.911600 ], [ -82.459616, 27.916900 ], [ -82.462078, 27.920066 ], [ -82.478063, 27.927680 ], [ -82.489817, 27.919600 ], [ -82.491117, 27.914500 ], [ -82.487417, 27.895001 ], [ -82.488057, 27.863566 ], [ -82.480137, 27.853246 ], [ -82.471624, 27.847342 ], [ -82.468840, 27.843295 ], [ -82.472440, 27.822559 ], [ -82.475273, 27.820991 ], [ -82.489849, 27.822607 ], [ -82.511193, 27.828015 ], [ -82.553946, 27.848462 ], [ -82.552918, 27.862702 ], [ -82.538618, 27.864901 ], [ -82.533218, 27.870701 ], [ -82.529918, 27.877501 ], [ -82.539318, 27.885001 ], [ -82.542818, 27.890601 ], [ -82.541747, 27.893706 ], [ -82.535818, 27.898000 ], [ -82.531318, 27.903900 ], [ -82.533718, 27.932999 ], [ -82.541218, 27.948998 ], [ -82.553918, 27.966998 ], [ -82.589419, 27.970898 ], [ -82.619520, 27.969698 ], [ -82.648616, 27.966309 ], [ -82.716522, 27.958398 ], [ -82.720522, 27.955798 ], [ -82.724122, 27.948098 ], [ -82.721975, 27.941819 ], [ -82.721429, 27.940222 ], [ -82.720395, 27.937199 ], [ -82.720122, 27.936399 ], [ -82.710022, 27.928299 ], [ -82.691621, 27.924899 ], [ -82.685121, 27.916299 ], [ -82.671221, 27.913000 ], [ -82.628063, 27.910397 ], [ -82.634220, 27.903700 ], [ -82.632120, 27.891100 ], [ -82.610020, 27.873501 ], [ -82.567919, 27.883701 ], [ -82.567826, 27.881537 ], [ -82.566819, 27.858002 ], [ -82.598443, 27.857582 ], [ -82.594819, 27.843402 ], [ -82.589319, 27.835702 ], [ -82.586519, 27.816703 ], [ -82.607420, 27.798904 ], [ -82.622723, 27.779868 ], [ -82.630520, 27.753905 ], [ -82.625020, 27.732706 ], [ -82.625720, 27.727006 ], [ -82.633620, 27.710607 ], [ -82.639820, 27.703907 ], [ -82.652521, 27.700307 ], [ -82.662921, 27.702307 ], [ -82.663246, 27.702442 ], [ -82.667445, 27.704179 ], [ -82.668772, 27.704728 ], [ -82.670449, 27.705422 ], [ -82.670942, 27.705626 ], [ -82.671549, 27.705877 ], [ -82.671621, 27.705907 ], [ -82.672093, 27.705932 ], [ -82.673061, 27.705983 ], [ -82.674123, 27.706039 ], [ -82.677321, 27.706207 ], [ -82.679019, 27.696054 ], [ -82.679251, 27.694665 ], [ -82.693748, 27.700217 ], [ -82.713629, 27.698661 ], [ -82.718822, 27.692007 ], [ -82.723022, 27.671208 ], [ -82.721622, 27.663908 ], [ -82.716322, 27.651409 ], [ -82.712555, 27.646647 ], [ -82.698091, 27.638858 ], [ -82.705017, 27.625310 ], [ -82.733076, 27.612972 ], [ -82.736552, 27.617326 ], [ -82.737312, 27.623115 ], [ -82.737790, 27.626758 ], [ -82.739122, 27.636909 ], [ -82.738022, 27.706807 ], [ -82.740323, 27.718206 ], [ -82.746223, 27.731306 ], [ -82.753723, 27.736306 ], [ -82.760923, 27.745205 ], [ -82.770023, 27.767904 ], [ -82.783124, 27.783804 ], [ -82.790224, 27.791603 ], [ -82.820433, 27.813742 ], [ -82.828561, 27.822254 ], [ -82.846526, 27.854301 ], [ -82.849126, 27.863200 ], [ -82.851126, 27.886300 ], [ -82.847826, 27.910199 ], [ -82.840882, 27.937162 ], [ -82.831388, 27.962117 ], [ -82.824875, 27.960201 ], [ -82.821975, 27.956868 ], [ -82.830819, 27.930926 ], [ -82.838484, 27.909111 ], [ -82.832155, 27.909242 ], [ -82.820715, 27.927268 ], [ -82.808745, 27.953112 ], [ -82.805462, 27.960201 ], [ -82.797820, 27.990563 ], [ -82.792635, 28.011160 ], [ -82.792635, 28.032307 ], [ -82.782724, 28.055894 ], [ -82.783824, 28.106292 ], [ -82.782181, 28.120287 ], [ -82.781324, 28.127591 ], [ -82.786624, 28.144991 ], [ -82.790724, 28.152490 ], [ -82.799024, 28.151790 ], [ -82.808474, 28.154803 ], [ -82.805097, 28.172181 ], [ -82.797762, 28.187789 ], [ -82.762643, 28.219013 ], [ -82.764460, 28.220069 ], [ -82.764103, 28.244345 ], [ -82.759072, 28.254020 ], [ -82.746188, 28.261192 ], [ -82.732792, 28.291933 ], [ -82.735463, 28.300390 ], [ -82.731460, 28.325075 ], [ -82.715822, 28.345501 ], [ -82.706112, 28.368057 ], [ -82.706322, 28.401325 ], [ -82.697433, 28.420166 ], [ -82.684137, 28.428019 ], [ -82.678743, 28.433456 ], [ -82.677839, 28.434367 ], [ -82.674787, 28.441956 ], [ -82.680396, 28.457194 ], [ -82.672410, 28.464746 ], [ -82.665055, 28.484434 ], [ -82.664470, 28.488788 ], [ -82.666390, 28.497330 ], [ -82.670146, 28.500769 ], [ -82.669416, 28.519879 ], [ -82.668040, 28.528199 ], [ -82.663705, 28.530193 ], [ -82.656694, 28.544814 ], [ -82.661729, 28.549743 ], [ -82.661650, 28.554143 ], [ -82.657050, 28.568028 ], [ -82.654138, 28.590837 ], [ -82.664055, 28.606584 ], [ -82.656649, 28.623727 ], [ -82.658510, 28.636756 ], [ -82.654167, 28.668395 ], [ -82.646411, 28.694434 ], [ -82.645482, 28.697553 ], [ -82.652926, 28.705618 ], [ -82.656028, 28.712443 ], [ -82.652926, 28.719267 ], [ -82.656028, 28.727952 ], [ -82.662232, 28.737258 ], [ -82.651065, 28.747184 ], [ -82.645482, 28.767037 ], [ -82.643000, 28.782546 ], [ -82.643000, 28.789991 ], [ -82.648584, 28.796195 ], [ -82.650445, 28.804880 ], [ -82.652926, 28.830936 ], [ -82.638657, 28.843344 ], [ -82.643000, 28.860094 ], [ -82.639898, 28.876224 ], [ -82.644861, 28.889252 ], [ -82.656028, 28.899179 ], [ -82.673399, 28.900419 ], [ -82.688864, 28.905609 ], [ -82.702618, 28.932955 ], [ -82.708793, 28.935979 ], [ -82.723861, 28.953506 ], [ -82.735754, 28.973709 ], [ -82.737872, 28.995703 ], [ -82.758906, 28.993277 ], [ -82.760551, 28.993087 ], [ -82.764055, 28.999707 ], [ -82.759378, 29.006619 ], [ -82.753513, 29.026496 ], [ -82.759704, 29.054192 ], [ -82.783328, 29.064619 ], [ -82.780558, 29.073580 ], [ -82.816925, 29.076215 ], [ -82.823659, 29.098902 ], [ -82.809483, 29.104620 ], [ -82.801166, 29.105103 ], [ -82.799117, 29.110647 ], [ -82.798876, 29.114504 ], [ -82.805703, 29.129848 ], [ -82.804736, 29.146624 ], [ -82.827073, 29.158425 ], [ -82.858179, 29.162275 ], [ -82.887211, 29.161741 ], [ -82.922613, 29.169769 ], [ -82.932405, 29.167891 ], [ -82.945302, 29.167821 ], [ -82.974676, 29.170910 ], [ -82.979522, 29.171817 ], [ -82.987162, 29.180094 ], [ -82.991653, 29.180664 ], [ -82.996144, 29.178074 ], [ -83.018212, 29.151417 ], [ -83.019071, 29.141324 ], [ -83.030453, 29.134023 ], [ -83.053207, 29.130839 ], [ -83.056867, 29.146263 ], [ -83.068249, 29.153135 ], [ -83.060947, 29.170959 ], [ -83.061162, 29.176113 ], [ -83.065242, 29.184489 ], [ -83.078986, 29.196944 ], [ -83.087839, 29.216420 ], [ -83.074734, 29.247975 ], [ -83.077265, 29.255331 ], [ -83.089013, 29.266502 ], [ -83.107477, 29.268889 ], [ -83.125567, 29.278845 ], [ -83.128027, 29.282733 ], [ -83.146445, 29.289194 ], [ -83.149764, 29.289768 ], [ -83.160730, 29.286611 ], [ -83.166091, 29.288880 ], [ -83.169576, 29.290355 ], [ -83.176736, 29.314220 ], [ -83.178260, 29.327916 ], [ -83.176852, 29.329269 ], [ -83.175518, 29.344690 ], [ -83.189581, 29.363417 ], [ -83.200702, 29.373855 ], [ -83.202446, 29.394422 ], [ -83.218075, 29.420492 ], [ -83.240509, 29.433178 ], [ -83.263965, 29.435806 ], [ -83.272019, 29.432256 ], [ -83.294747, 29.437923 ], [ -83.307094, 29.459651 ], [ -83.307828, 29.468861 ], [ -83.311546, 29.475666 ], [ -83.323214, 29.476789 ], [ -83.331130, 29.475594 ], [ -83.350067, 29.489358 ], [ -83.356722, 29.499901 ], [ -83.370288, 29.499901 ], [ -83.379254, 29.503558 ], [ -83.383973, 29.512995 ], [ -83.400252, 29.517242 ], [ -83.401552, 29.523291 ], [ -83.399830, 29.533042 ], [ -83.405256, 29.578319 ], [ -83.405068, 29.595570 ], [ -83.399480, 29.612956 ], [ -83.404081, 29.640798 ], [ -83.412278, 29.666922 ], [ -83.412768, 29.668485 ], [ -83.414701, 29.670536 ], [ -83.436259, 29.677389 ], [ -83.444635, 29.677155 ], [ -83.448194, 29.675254 ], [ -83.455356, 29.676444 ], [ -83.483143, 29.690478 ], [ -83.483567, 29.698542 ], [ -83.493728, 29.708388 ], [ -83.512716, 29.716480 ], [ -83.537645, 29.723060 ], [ -83.547172, 29.732223 ], [ -83.554993, 29.742600 ], [ -83.566018, 29.761434 ], [ -83.578955, 29.768378 ], [ -83.584716, 29.776080 ], [ -83.586089, 29.784644 ], [ -83.583045, 29.787307 ], [ -83.581903, 29.792063 ], [ -83.585899, 29.811754 ], [ -83.595493, 29.827984 ], [ -83.605244, 29.836387 ], [ -83.618568, 29.842336 ], [ -83.637980, 29.886073 ], [ -83.659951, 29.899524 ], [ -83.679219, 29.918513 ], [ -83.686423, 29.923735 ], [ -83.757249, 29.957943 ], [ -83.788729, 29.976982 ], [ -83.828690, 29.983187 ], [ -83.845427, 29.998068 ], [ -83.931510, 30.039068 ], [ -83.933668, 30.041152 ], [ -83.931879, 30.044175 ], [ -83.933432, 30.046305 ], [ -83.959680, 30.064943 ], [ -83.991607, 30.083920 ], [ -84.000716, 30.096209 ], [ -84.024274, 30.103271 ], [ -84.048715, 30.103208 ], [ -84.062990, 30.101378 ], [ -84.076043, 30.095464 ], [ -84.083057, 30.092286 ], [ -84.087034, 30.092103 ], [ -84.094725, 30.094964 ], [ -84.102730, 30.093611 ], [ -84.113840, 30.085478 ], [ -84.124889, 30.090601 ], [ -84.135683, 30.083018 ], [ -84.157278, 30.072714 ], [ -84.167881, 30.071422 ], [ -84.179149, 30.073187 ], [ -84.198530, 30.087937 ], [ -84.201585, 30.087982 ], [ -84.203349, 30.085875 ], [ -84.208010, 30.084776 ], [ -84.237014, 30.085560 ], [ -84.245668, 30.093021 ], [ -84.247491, 30.101140 ], [ -84.256439, 30.103791 ], [ -84.269363, 30.097660 ], [ -84.272511, 30.092358 ], [ -84.274003, 30.083079 ], [ -84.270368, 30.075469 ], [ -84.270792, 30.068094 ], [ -84.277168, 30.060263 ], [ -84.289727, 30.057197 ], [ -84.297836, 30.057451 ], [ -84.315344, 30.069492 ], [ -84.342022, 30.063858 ], [ -84.358923, 30.058224 ], [ -84.365882, 30.024588 ], [ -84.361962, 29.987739 ], [ -84.359986, 29.984739 ], [ -84.347700, 29.984123 ], [ -84.343041, 29.975100 ], [ -84.341261, 29.960775 ], [ -84.339426, 29.946007 ], [ -84.336511, 29.942508 ], [ -84.333746, 29.923721 ], [ -84.335953, 29.912962 ], [ -84.343389, 29.899539 ], [ -84.349066, 29.896812 ], [ -84.378937, 29.893112 ], [ -84.404958, 29.901229 ], [ -84.423834, 29.902996 ], [ -84.434287, 29.906328 ], [ -84.443652, 29.913785 ], [ -84.451705, 29.929085 ], [ -84.470323, 29.924524 ], [ -84.494562, 29.913957 ], [ -84.511996, 29.916574 ], [ -84.535873, 29.910092 ], [ -84.577440, 29.887828 ], [ -84.603303, 29.876117 ], [ -84.613154, 29.867984 ], [ -84.647958, 29.847104 ], [ -84.656318, 29.837943 ], [ -84.656450, 29.834277 ], [ -84.669728, 29.828910 ], [ -84.683934, 29.831327 ], [ -84.692053, 29.829059 ], [ -84.730327, 29.806900 ], [ -84.755595, 29.788540 ], [ -84.762998, 29.788846 ], [ -84.824197, 29.758288 ], [ -84.837168, 29.755926 ], [ -84.868271, 29.742454 ], [ -84.881777, 29.733882 ], [ -84.888031, 29.722406 ], [ -84.892493, 29.722660 ], [ -84.901781, 29.735723 ], [ -84.890066, 29.755802 ], [ -84.877111, 29.772888 ], [ -84.893992, 29.785176 ], [ -84.904130, 29.786279 ], [ -84.915110, 29.783303 ], [ -84.920917, 29.772901 ], [ -84.938370, 29.750211 ], [ -84.946595, 29.745032 ], [ -84.964007, 29.742422 ], [ -84.968841, 29.727080 ], [ -84.977004, 29.721209 ], [ -84.993264, 29.714961 ], [ -85.037212, 29.711074 ], [ -85.072123, 29.719027 ], [ -85.101682, 29.718748 ], [ -85.121473, 29.715854 ], [ -85.153238, 29.708231 ], [ -85.177284, 29.700193 ], [ -85.217355, 29.694953 ], [ -85.227450, 29.693633 ], [ -85.259719, 29.681296 ], [ -85.290740, 29.684081 ], [ -85.319215, 29.681494 ], [ -85.343619, 29.672004 ], [ -85.347711, 29.667190 ], [ -85.344768, 29.654793 ], [ -85.352615, 29.659787 ], [ -85.369419, 29.681048 ], [ -85.380303, 29.698485 ], [ -85.397871, 29.740498 ], [ -85.413983, 29.799865 ], [ -85.417971, 29.828855 ], [ -85.416548, 29.842628 ], [ -85.413575, 29.852940 ], [ -85.405815, 29.865817 ], [ -85.392469, 29.870914 ], [ -85.398740, 29.859267 ], [ -85.405011, 29.830151 ], [ -85.405907, 29.801930 ], [ -85.395528, 29.762368 ], [ -85.377960, 29.709621 ], [ -85.363800, 29.693526 ], [ -85.353885, 29.684765 ], [ -85.344986, 29.685015 ], [ -85.317661, 29.691286 ], [ -85.311390, 29.697557 ], [ -85.301331, 29.797117 ], [ -85.302591, 29.808094 ], [ -85.304877, 29.811096 ], [ -85.311420, 29.814373 ], [ -85.314547, 29.822279 ], [ -85.314783, 29.830575 ], [ -85.312911, 29.832273 ], [ -85.317464, 29.838894 ], [ -85.325008, 29.844966 ], [ -85.332289, 29.845905 ], [ -85.336654, 29.849295 ], [ -85.347044, 29.871981 ], [ -85.363731, 29.898915 ], [ -85.384730, 29.920949 ], [ -85.388677, 29.924355 ], [ -85.405052, 29.938487 ], [ -85.425956, 29.949888 ], [ -85.460488, 29.959579 ], [ -85.469425, 29.957788 ], [ -85.487764, 29.961227 ], [ -85.509148, 29.971466 ], [ -85.541176, 29.995791 ], [ -85.571907, 30.026440 ], [ -85.581390, 30.037783 ], [ -85.588242, 30.055543 ], [ -85.601178, 30.056342 ], [ -85.618254, 30.065481 ], [ -85.637285, 30.073319 ], [ -85.653251, 30.077839 ], [ -85.696810, 30.096890 ], [ -85.730054, 30.118153 ], [ -85.749930, 30.136537 ], [ -85.775405, 30.156290 ], [ -85.811219, 30.178320 ], [ -85.878138, 30.215619 ], [ -85.922600, 30.238024 ], [ -85.996083, 30.269148 ], [ -85.999937, 30.270780 ], [ -86.089963, 30.303569 ], [ -86.222561, 30.343585 ], [ -86.298700, 30.363049 ], [ -86.364175, 30.374524 ], [ -86.397325, 30.378553 ], [ -86.400403, 30.378927 ], [ -86.412076, 30.380346 ], [ -86.429322, 30.381389 ], [ -86.454731, 30.382925 ], [ -86.456197, 30.383014 ], [ -86.457045, 30.383065 ], [ -86.470849, 30.383900 ], [ -86.473990, 30.383758 ], [ -86.506150, 30.382300 ], [ -86.529067, 30.386896 ], [ -86.632953, 30.396299 ], [ -86.750906, 30.391881 ], [ -86.800283, 30.386477 ], [ -86.850625, 30.380967 ], [ -86.909679, 30.372423 ], [ -86.919292, 30.370675 ], [ -87.155392, 30.327748 ], [ -87.206254, 30.320943 ], [ -87.267827, 30.315480 ], [ -87.282787, 30.318744 ], [ -87.295422, 30.323503 ], [ -87.319518, 30.317814 ], [ -87.350486, 30.313064 ], [ -87.419859, 30.297128 ], [ -87.518324, 30.280435 ], [ -87.452378, 30.300201 ], [ -87.450078, 30.311100 ], [ -87.450962, 30.346262 ], [ -87.451378, 30.367199 ], [ -87.440678, 30.391498 ], [ -87.427478, 30.408398 ], [ -87.419177, 30.410198 ], [ -87.430578, 30.491096 ], [ -87.448332, 30.513063 ], [ -87.449841, 30.514369 ], [ -87.449921, 30.514690 ], [ -87.394479, 30.625192 ], [ -87.394219, 30.641699 ], [ -87.396997, 30.653640 ], [ -87.407118, 30.671796 ], [ -87.449362, 30.698913 ], [ -87.481225, 30.716508 ], [ -87.497515, 30.720123 ], [ -87.502926, 30.722369 ], [ -87.532607, 30.743489 ], [ -87.624137, 30.845713 ], [ -87.634938, 30.865886 ], [ -87.622203, 30.897508 ], [ -87.601355, 30.936294 ], [ -87.594111, 30.976335 ], [ -87.598927, 30.997454 ], [ -87.598928, 30.997457 ], [ -87.571281, 30.997870 ], [ -87.548543, 30.997927 ], [ -87.480243, 30.998202 ], [ -87.479703, 30.998197 ], [ -87.478706, 30.998213 ], [ -87.466879, 30.998178 ], [ -87.466827, 30.998178 ], [ -87.461783, 30.998201 ], [ -87.461638, 30.998202 ], [ -87.458658, 30.998386 ], [ -87.455705, 30.998318 ], [ -87.449811, 30.998272 ], [ -87.432292, 30.998205 ], [ -87.425774, 30.998090 ], [ -87.367842, 30.998292 ], [ -87.364011, 30.998218 ], [ -87.355656, 30.998244 ], [ -87.333973, 30.998272 ], [ -87.312183, 30.998435 ], [ -87.304030, 30.998191 ], [ -87.301567, 30.998434 ], [ -87.290995, 30.998352 ], [ -87.288905, 30.998345 ], [ -87.265564, 30.998267 ], [ -87.260540, 30.998195 ], [ -87.259689, 30.998172 ], [ -87.257960, 30.998263 ], [ -87.257002, 30.998194 ], [ -87.255592, 30.998216 ], [ -87.254980, 30.998285 ], [ -87.163084, 30.999051 ], [ -87.162614, 30.999055 ], [ -87.068633, 30.999143 ], [ -87.064063, 30.999191 ], [ -87.053737, 30.999131 ], [ -87.039989, 30.999594 ], [ -87.036366, 30.999348 ], [ -87.027107, 30.999255 ], [ -86.888135, 30.997577 ], [ -86.872989, 30.997631 ], [ -86.831934, 30.997378 ], [ -86.830497, 30.997401 ], [ -86.785918, 30.996978 ], [ -86.785692, 30.996977 ], [ -86.728392, 30.996739 ], [ -86.727293, 30.996882 ], [ -86.725379, 30.996872 ], [ -86.688294, 30.995029 ], [ -86.678383, 30.994537 ], [ -86.664681, 30.994534 ], [ -86.567586, 30.995109 ], [ -86.563436, 30.995223 ], [ -86.519938, 30.993245 ], [ -86.512834, 30.993700 ], [ -86.458319, 30.993998 ], [ -86.454704, 30.993791 ], [ -86.404912, 30.994049 ], [ -86.391937, 30.994172 ], [ -86.388647, 30.994181 ], [ -86.388646, 30.994181 ], [ -86.374545, 30.994474 ], [ -86.369270, 30.994477 ], [ -86.364907, 30.994455 ], [ -86.304596, 30.994029 ], [ -86.289247, 30.993798 ], [ -86.187246, 30.993992 ], [ -86.180232, 30.994005 ], [ -86.175204, 30.993798 ], [ -86.168979, 30.993706 ], [ -86.162886, 30.993682 ], [ -86.056213, 30.993133 ], [ -86.052462, 30.993247 ], [ -86.035039, 30.993320 ], [ -85.498272, 30.996928 ], [ -85.497992, 30.996931 ], [ -85.488298, 30.997041 ], [ -85.154452, 31.000835 ], [ -85.152218, 31.000834 ], [ -85.152085, 31.000888 ], [ -85.145835, 31.000695 ], [ -85.057534, 31.000585 ], [ -85.054802, 31.000585 ], [ -85.052088, 31.000585 ], [ -85.031155, 31.000647 ], [ -85.030107, 31.000653 ], [ -85.027512, 31.000670 ], [ -85.024108, 31.000681 ], [ -85.002368, 31.000682 ], [ -84.998628, 30.971386 ], [ -84.983527, 30.935486 ], [ -84.959626, 30.910587 ], [ -84.941925, 30.887988 ], [ -84.896122, 30.750591 ], [ -84.864693, 30.711542 ], [ -84.863465, 30.711487 ], [ -84.606386, 30.699865 ], [ -84.606249, 30.699872 ], [ -84.539370, 30.696775 ], [ -84.535042, 30.696523 ], [ -84.380719, 30.689673 ], [ -84.282562, 30.685316 ], [ -84.281210, 30.685256 ], [ -84.083753, 30.675954 ], [ -84.057228, 30.674705 ], [ -84.046605, 30.674200 ], [ -84.041810, 30.673878 ], [ -84.039707, 30.673819 ], [ -84.007454, 30.672100 ], [ -84.007391, 30.672097 ], [ -83.880317, 30.665807 ], [ -83.880220, 30.665832 ], [ -83.855216, 30.664412 ], [ -83.820886, 30.662612 ], [ -83.810536, 30.661880 ], [ -83.743729, 30.658396 ], [ -83.676773, 30.654905 ], [ -83.674058, 30.654747 ], [ -83.611720, 30.651258 ], [ -83.611667, 30.651255 ], [ -83.448895, 30.642410 ], [ -83.440021, 30.642023 ], [ -83.429584, 30.641496 ], [ -83.429477, 30.641519 ], [ -83.390062, 30.639333 ], [ -83.379460, 30.638680 ], [ -83.357703, 30.637359 ], [ -83.341011, 30.636346 ], [ -83.340852, 30.636336 ], [ -83.311647, 30.634577 ], [ -83.309455, 30.634417 ] ] ] ] } }\n,\n{ \"type\": \"Feature\", \"properties\": { \"GEO_ID\": \"0400000US16\", \"STATE\": \"16\", \"NAME\": \"Idaho\", \"LSAD\": \"\", \"CENSUSAREA\": 82643.117000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -111.048974, 44.474072 ], [ -111.049194, 44.438058 ], [ -111.049216, 44.435811 ], [ -111.048633, 44.062903 ], [ -111.048751, 44.060838 ], [ -111.048751, 44.060403 ], [ -111.048107, 43.983096 ], [ -111.046715, 43.815832 ], [ -111.046340, 43.726957 ], [ -111.046435, 43.726545 ], [ -111.046421, 43.722059 ], [ -111.046110, 43.687848 ], [ -111.046051, 43.685812 ], [ -111.046118, 43.684902 ], [ -111.045880, 43.681033 ], [ -111.045706, 43.659112 ], [ -111.045205, 43.501136 ], [ -111.044617, 43.315720 ], [ -111.044229, 43.195579 ], [ -111.044168, 43.189244 ], [ -111.044232, 43.184440 ], [ -111.044266, 43.177236 ], [ -111.044235, 43.177121 ], [ -111.044143, 43.072364 ], [ -111.044162, 43.068222 ], [ -111.044150, 43.066172 ], [ -111.044117, 43.060309 ], [ -111.044086, 43.054819 ], [ -111.044063, 43.046302 ], [ -111.044058, 43.044640 ], [ -111.043997, 43.041415 ], [ -111.044094, 43.029270 ], [ -111.044033, 43.026411 ], [ -111.044034, 43.024844 ], [ -111.044034, 43.024581 ], [ -111.044206, 43.022614 ], [ -111.044156, 43.020052 ], [ -111.044129, 43.018702 ], [ -111.043924, 42.975063 ], [ -111.043957, 42.969482 ], [ -111.043959, 42.964450 ], [ -111.046249, 42.513116 ], [ -111.047080, 42.349420 ], [ -111.047074, 42.280787 ], [ -111.047097, 42.194773 ], [ -111.047058, 42.182672 ], [ -111.047107, 42.148971 ], [ -111.047109, 42.142497 ], [ -111.046689, 42.001567 ], [ -111.415873, 42.000748 ], [ -111.420898, 42.000793 ], [ -111.425535, 42.000840 ], [ -111.507264, 41.999518 ], [ -111.876491, 41.998528 ], [ -111.915622, 41.998496 ], [ -111.915837, 41.998519 ], [ -112.109528, 41.997105 ], [ -112.163956, 41.996708 ], [ -112.239107, 42.001217 ], [ -112.264936, 42.000991 ], [ -112.386170, 42.001126 ], [ -112.450567, 42.001092 ], [ -112.450814, 42.000953 ], [ -112.648019, 42.000307 ], [ -112.709375, 42.000309 ], [ -112.788542, 41.999681 ], [ -112.833084, 41.999305 ], [ -112.833125, 41.999345 ], [ -112.880619, 41.998921 ], [ -112.882367, 41.998922 ], [ -112.909587, 41.998791 ], [ -112.979218, 41.998263 ], [ -113.000820, 41.998223 ], [ -113.000821, 41.998223 ], [ -113.396497, 41.994250 ], [ -113.402230, 41.994161 ], [ -113.431563, 41.993799 ], [ -113.764530, 41.989459 ], [ -113.796082, 41.989104 ], [ -113.893261, 41.988057 ], [ -114.041723, 41.993720 ], [ -114.048246, 41.993721 ], [ -114.048257, 41.993814 ], [ -114.061774, 41.993797 ], [ -114.061763, 41.993939 ], [ -114.107259, 41.993831 ], [ -114.107428, 41.993965 ], [ -114.281854, 41.994264 ], [ -114.498243, 41.994636 ], [ -114.498259, 41.994599 ], [ -114.598267, 41.994511 ], [ -114.763825, 41.999909 ], [ -114.914187, 41.999909 ], [ -115.031783, 41.996008 ], [ -115.038256, 41.996025 ], [ -115.986880, 41.998534 ], [ -116.012212, 41.998035 ], [ -116.012219, 41.998048 ], [ -116.018945, 41.997722 ], [ -116.018960, 41.997762 ], [ -116.030758, 41.997383 ], [ -116.030754, 41.997399 ], [ -116.038570, 41.997413 ], [ -116.038602, 41.997460 ], [ -116.160833, 41.997508 ], [ -116.163931, 41.997555 ], [ -116.463528, 41.996547 ], [ -116.483094, 41.996885 ], [ -116.485823, 41.996861 ], [ -116.510452, 41.997096 ], [ -116.586937, 41.997370 ], [ -116.626770, 41.997750 ], [ -117.018294, 41.999358 ], [ -117.026222, 42.000252 ], [ -117.026331, 42.807015 ], [ -117.026303, 42.807170 ], [ -117.026253, 42.807447 ], [ -117.026683, 43.024876 ], [ -117.026652, 43.025128 ], [ -117.026746, 43.577526 ], [ -117.026774, 43.578674 ], [ -117.026922, 43.593632 ], [ -117.026889, 43.596033 ], [ -117.026824, 43.600357 ], [ -117.026760, 43.601912 ], [ -117.026789, 43.610669 ], [ -117.026937, 43.617614 ], [ -117.027001, 43.621032 ], [ -117.026905, 43.624880 ], [ -117.026705, 43.631659 ], [ -117.026661, 43.664385 ], [ -117.026717, 43.675523 ], [ -117.026623, 43.680865 ], [ -117.026586, 43.683001 ], [ -117.026825, 43.706193 ], [ -117.026725, 43.714815 ], [ -117.026841, 43.732905 ], [ -117.026651, 43.733935 ], [ -117.026634, 43.808104 ], [ -116.996504, 43.864714 ], [ -116.982482, 43.872799 ], [ -116.979186, 43.879973 ], [ -116.961535, 43.918388 ], [ -116.935301, 43.988616 ], [ -116.931719, 44.102474 ], [ -116.897145, 44.152537 ], [ -116.895931, 44.154295 ], [ -116.894083, 44.160191 ], [ -116.895757, 44.171267 ], [ -116.902752, 44.179467 ], [ -116.975905, 44.242844 ], [ -116.986870, 44.245477 ], [ -117.027558, 44.248881 ], [ -117.033170, 44.248192 ], [ -117.041144, 44.243653 ], [ -117.170342, 44.258890 ], [ -117.190107, 44.273958 ], [ -117.196597, 44.287529 ], [ -117.197777, 44.295789 ], [ -117.197506, 44.297280 ], [ -117.196597, 44.302280 ], [ -117.194827, 44.310540 ], [ -117.191546, 44.329621 ], [ -117.189769, 44.336585 ], [ -117.214889, 44.466901 ], [ -117.208454, 44.485928 ], [ -117.156489, 44.528312 ], [ -117.149242, 44.536151 ], [ -117.144161, 44.545647 ], [ -117.115900, 44.623339 ], [ -117.095868, 44.664737 ], [ -117.062273, 44.727143 ], [ -117.044217, 44.745140 ], [ -117.038270, 44.748179 ], [ -117.016216, 44.755572 ], [ -116.931499, 44.792281 ], [ -116.891463, 44.840531 ], [ -116.852427, 44.887577 ], [ -116.831990, 44.933007 ], [ -116.835702, 44.940633 ], [ -116.844653, 44.949338 ], [ -116.850737, 44.958113 ], [ -116.858277, 44.978008 ], [ -116.845369, 45.017059 ], [ -116.783902, 45.079022 ], [ -116.729607, 45.142091 ], [ -116.709536, 45.203015 ], [ -116.696047, 45.254679 ], [ -116.691197, 45.269245 ], [ -116.673793, 45.321511 ], [ -116.553473, 45.499107 ], [ -116.481208, 45.580597 ], [ -116.463635, 45.602785 ], [ -116.463504, 45.615785 ], [ -116.471504, 45.628467 ], [ -116.489120, 45.651140 ], [ -116.510938, 45.668114 ], [ -116.528272, 45.681473 ], [ -116.535396, 45.691734 ], [ -116.538014, 45.714929 ], [ -116.535698, 45.734231 ], [ -116.548090, 45.752364 ], [ -116.594210, 45.779080 ], [ -116.633377, 45.784681 ], [ -116.789099, 45.847749 ], [ -116.796418, 45.853807 ], [ -116.857254, 45.904159 ], [ -116.866544, 45.916958 ], [ -116.875125, 45.942200 ], [ -116.915989, 45.995413 ], [ -116.943530, 46.062173 ], [ -116.925621, 46.158888 ], [ -116.958801, 46.242320 ], [ -116.985333, 46.294617 ], [ -116.987939, 46.298031 ], [ -117.047469, 46.342884 ], [ -117.061045, 46.367747 ], [ -117.046915, 46.379577 ], [ -117.039813, 46.425425 ], [ -117.039741, 46.462704 ], [ -117.039763, 46.469570 ], [ -117.039771, 46.471779 ], [ -117.039783, 46.541785 ], [ -117.039828, 46.815443 ], [ -117.039657, 46.825798 ], [ -117.039821, 47.127265 ], [ -117.039836, 47.154734 ], [ -117.039871, 47.181858 ], [ -117.039888, 47.203282 ], [ -117.039899, 47.225515 ], [ -117.040019, 47.259272 ], [ -117.039843, 47.347201 ], [ -117.039857, 47.366093 ], [ -117.039882, 47.399085 ], [ -117.039950, 47.412412 ], [ -117.039948, 47.434885 ], [ -117.039971, 47.463309 ], [ -117.039945, 47.477823 ], [ -117.040514, 47.522351 ], [ -117.040545, 47.527562 ], [ -117.040745, 47.532909 ], [ -117.041276, 47.558210 ], [ -117.041174, 47.558530 ], [ -117.041431, 47.678140 ], [ -117.041431, 47.678185 ], [ -117.041431, 47.680000 ], [ -117.041532, 47.683194 ], [ -117.041633, 47.706400 ], [ -117.041678, 47.722710 ], [ -117.042135, 47.744100 ], [ -117.042059, 47.745100 ], [ -117.042657, 47.760857 ], [ -117.042623, 47.761223 ], [ -117.042521, 47.764896 ], [ -117.042485, 47.766525 ], [ -117.041874, 47.977387 ], [ -117.041676, 48.045560 ], [ -117.041401, 48.085500 ], [ -117.039552, 48.173960 ], [ -117.039413, 48.177250 ], [ -117.039618, 48.178142 ], [ -117.039583, 48.180313 ], [ -117.039582, 48.180853 ], [ -117.039582, 48.181124 ], [ -117.039615, 48.184015 ], [ -117.039599, 48.184387 ], [ -117.035178, 48.370878 ], [ -117.035178, 48.371221 ], [ -117.035289, 48.422732 ], [ -117.035254, 48.423144 ], [ -117.035285, 48.429816 ], [ -117.035285, 48.430113 ], [ -117.034499, 48.620769 ], [ -117.034358, 48.628523 ], [ -117.033177, 48.846563 ], [ -117.032351, 48.999188 ], [ -116.757185, 48.999791 ], [ -116.757234, 48.999943 ], [ -116.049193, 49.000912 ], [ -116.049025, 48.958351 ], [ -116.049023, 48.957947 ], [ -116.049226, 48.502058 ], [ -116.049353, 48.215460 ], [ -116.049415, 48.077220 ], [ -116.049398, 48.075395 ], [ -116.049368, 48.072134 ], [ -116.049320, 48.066644 ], [ -116.048424, 47.977126 ], [ -116.048421, 47.976820 ], [ -116.007254, 47.944968 ], [ -115.919291, 47.857406 ], [ -115.729123, 47.703102 ], [ -115.723770, 47.696671 ], [ -115.706284, 47.637864 ], [ -115.718072, 47.592675 ], [ -115.721207, 47.576323 ], [ -115.735755, 47.555346 ], [ -115.739684, 47.537663 ], [ -115.729861, 47.518016 ], [ -115.712178, 47.488546 ], [ -115.725931, 47.466934 ], [ -115.729861, 47.447287 ], [ -115.721084, 47.422350 ], [ -115.690570, 47.415059 ], [ -115.661341, 47.402663 ], [ -115.576836, 47.366825 ], [ -115.561439, 47.351887 ], [ -115.551309, 47.333856 ], [ -115.523690, 47.298919 ], [ -115.479255, 47.282089 ], [ -115.421645, 47.271736 ], [ -115.339201, 47.261623 ], [ -115.320184, 47.255717 ], [ -115.294785, 47.220914 ], [ -115.292110, 47.209861 ], [ -115.266723, 47.181101 ], [ -115.200547, 47.139154 ], [ -115.193221, 47.133026 ], [ -115.099178, 47.048129 ], [ -115.072985, 47.013760 ], [ -114.975789, 46.932865 ], [ -114.936015, 46.899761 ], [ -114.938713, 46.869021 ], [ -114.927837, 46.835990 ], [ -114.920459, 46.827697 ], [ -114.888146, 46.808573 ], [ -114.853279, 46.799794 ], [ -114.825923, 46.781949 ], [ -114.767180, 46.738828 ], [ -114.739253, 46.715167 ], [ -114.717645, 46.713994 ], [ -114.690630, 46.719961 ], [ -114.675505, 46.719516 ], [ -114.667346, 46.719276 ], [ -114.655704, 46.711743 ], [ -114.644747, 46.702155 ], [ -114.642692, 46.694622 ], [ -114.641322, 46.686404 ], [ -114.641745, 46.679286 ], [ -114.642713, 46.673145 ], [ -114.635868, 46.659510 ], [ -114.614423, 46.639188 ], [ -114.594707, 46.633558 ], [ -114.592264, 46.632861 ], [ -114.481943, 46.631993 ], [ -114.461211, 46.639151 ], [ -114.446830, 46.645314 ], [ -114.422176, 46.652163 ], [ -114.370129, 46.654217 ], [ -114.349584, 46.646684 ], [ -114.341336, 46.642803 ], [ -114.337942, 46.641205 ], [ -114.331093, 46.630248 ], [ -114.331093, 46.607649 ], [ -114.346528, 46.535789 ], [ -114.385297, 46.467162 ], [ -114.378000, 46.435371 ], [ -114.426885, 46.289671 ], [ -114.472643, 46.162202 ], [ -114.483120, 46.129147 ], [ -114.476284, 46.112988 ], [ -114.468205, 46.099937 ], [ -114.467583, 46.081914 ], [ -114.476284, 46.062026 ], [ -114.491200, 46.044003 ], [ -114.491200, 46.034059 ], [ -114.490578, 46.022872 ], [ -114.483379, 46.008047 ], [ -114.465376, 45.996077 ], [ -114.429638, 45.986638 ], [ -114.412007, 45.978057 ], [ -114.401552, 45.963195 ], [ -114.393760, 45.894020 ], [ -114.448680, 45.858891 ], [ -114.498809, 45.850676 ], [ -114.509303, 45.845531 ], [ -114.514596, 45.840785 ], [ -114.566172, 45.773864 ], [ -114.547763, 45.743309 ], [ -114.528667, 45.731636 ], [ -114.504869, 45.722176 ], [ -114.497553, 45.710677 ], [ -114.495421, 45.703321 ], [ -114.500925, 45.666715 ], [ -114.515411, 45.652842 ], [ -114.541820, 45.641305 ], [ -114.545574, 45.642928 ], [ -114.550834, 45.642600 ], [ -114.561046, 45.639906 ], [ -114.563652, 45.637412 ], [ -114.561773, 45.565109 ], [ -114.560855, 45.564575 ], [ -114.551286, 45.559007 ], [ -114.514196, 45.564734 ], [ -114.473759, 45.563278 ], [ -114.460542, 45.561283 ], [ -114.366620, 45.491616 ], [ -114.350819, 45.468542 ], [ -114.309613, 45.469432 ], [ -114.247828, 45.545489 ], [ -114.187852, 45.542151 ], [ -114.135249, 45.557465 ], [ -114.034930, 45.647967 ], [ -114.022534, 45.679620 ], [ -114.019315, 45.692937 ], [ -114.015633, 45.696127 ], [ -113.987759, 45.705247 ], [ -113.971565, 45.700636 ], [ -113.942600, 45.686362 ], [ -113.934220, 45.682232 ], [ -113.896681, 45.641451 ], [ -113.835396, 45.612960 ], [ -113.813933, 45.600559 ], [ -113.804871, 45.589112 ], [ -113.802009, 45.579096 ], [ -113.813456, 45.550002 ], [ -113.810117, 45.530924 ], [ -113.786269, 45.521385 ], [ -113.772915, 45.512322 ], [ -113.765760, 45.483228 ], [ -113.774156, 45.465372 ], [ -113.760924, 45.406501 ], [ -113.738729, 45.329741 ], [ -113.674409, 45.249411 ], [ -113.650064, 45.234710 ], [ -113.599506, 45.191114 ], [ -113.565979, 45.149335 ], [ -113.566179, 45.143120 ], [ -113.576360, 45.133771 ], [ -113.576453, 45.130311 ], [ -113.485278, 45.063519 ], [ -113.473770, 45.061700 ], [ -113.463961, 45.063194 ], [ -113.449349, 45.045745 ], [ -113.445751, 45.018351 ], [ -113.445915, 44.979918 ], [ -113.447199, 44.971924 ], [ -113.472715, 44.948123 ], [ -113.480836, 44.950310 ], [ -113.494446, 44.948597 ], [ -113.498745, 44.942314 ], [ -113.475838, 44.894648 ], [ -113.455071, 44.865424 ], [ -113.353631, 44.791395 ], [ -113.341704, 44.784853 ], [ -113.329491, 44.788645 ], [ -113.278382, 44.812706 ], [ -113.247166, 44.822950 ], [ -113.207878, 44.808040 ], [ -113.158206, 44.780847 ], [ -113.134617, 44.763149 ], [ -113.101082, 44.718832 ], [ -113.051504, 44.636950 ], [ -113.049349, 44.629380 ], [ -113.053529, 44.621187 ], [ -113.056770, 44.618657 ], [ -113.027147, 44.495915 ], [ -113.003544, 44.450814 ], [ -112.970300, 44.426933 ], [ -112.875822, 44.374357 ], [ -112.849266, 44.371038 ], [ -112.831340, 44.381660 ], [ -112.829247, 44.385427 ], [ -112.824701, 44.393611 ], [ -112.823373, 44.406225 ], [ -112.822046, 44.420831 ], [ -112.822046, 44.434109 ], [ -112.812087, 44.451370 ], [ -112.781294, 44.484888 ], [ -112.719110, 44.504344 ], [ -112.688160, 44.498850 ], [ -112.544224, 44.483763 ], [ -112.473207, 44.480027 ], [ -112.410345, 44.462968 ], [ -112.387080, 44.460476 ], [ -112.371294, 44.472108 ], [ -112.358926, 44.486280 ], [ -112.356600, 44.493127 ], [ -112.347199, 44.520298 ], [ -112.339721, 44.538577 ], [ -112.299009, 44.559348 ], [ -112.274083, 44.564334 ], [ -112.258297, 44.564334 ], [ -112.246665, 44.561010 ], [ -112.235864, 44.555194 ], [ -112.229477, 44.549494 ], [ -112.221698, 44.543519 ], [ -112.187115, 44.534452 ], [ -112.078471, 44.533551 ], [ -111.947941, 44.556776 ], [ -111.870504, 44.564033 ], [ -111.849293, 44.539837 ], [ -111.843295, 44.528225 ], [ -111.806528, 44.515459 ], [ -111.737191, 44.543060 ], [ -111.704218, 44.560205 ], [ -111.631505, 44.552022 ], [ -111.617502, 44.553035 ], [ -111.601249, 44.554210 ], [ -111.525764, 44.604883 ], [ -111.516588, 44.643707 ], [ -111.489008, 44.705553 ], [ -111.481536, 44.709186 ], [ -111.394815, 44.751351 ], [ -111.377682, 44.751744 ], [ -111.323669, 44.724474 ], [ -111.219236, 44.622616 ], [ -111.139455, 44.517112 ], [ -111.131379, 44.499925 ], [ -111.122654, 44.493659 ], [ -111.106574, 44.486330 ], [ -111.048974, 44.474072 ] ] ] } }\n,\n{ \"type\": \"Feature\", \"properties\": { \"GEO_ID\": \"0400000US20\", \"STATE\": \"20\", \"NAME\": \"Kansas\", \"LSAD\": \"\", \"CENSUSAREA\": 81758.717000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -99.541116, 36.999573 ], [ -99.558068, 36.999528 ], [ -99.625399, 36.999671 ], [ -99.657658, 37.000197 ], [ -99.774255, 37.000837 ], [ -99.774816, 37.000841 ], [ -99.786016, 37.000931 ], [ -99.995201, 37.001631 ], [ -100.001286, 37.001699 ], [ -100.002563, 37.001706 ], [ -100.005706, 37.001726 ], [ -100.089484, 37.002092 ], [ -100.115722, 37.002206 ], [ -100.187547, 37.002082 ], [ -100.192371, 37.002036 ], [ -100.193754, 37.002133 ], [ -100.201676, 37.002081 ], [ -100.551598, 37.000620 ], [ -100.552683, 37.000735 ], [ -100.591328, 37.000376 ], [ -100.591413, 37.000399 ], [ -100.629770, 37.000025 ], [ -100.633323, 36.999936 ], [ -100.633327, 36.999936 ], [ -100.675552, 36.999688 ], [ -100.756894, 36.999357 ], [ -100.765484, 36.999177 ], [ -100.806116, 36.999091 ], [ -100.814277, 36.999085 ], [ -100.855634, 36.998626 ], [ -100.891660, 36.998604 ], [ -100.904274, 36.998745 ], [ -100.904588, 36.998561 ], [ -100.945469, 36.998153 ], [ -100.945566, 36.998152 ], [ -100.996502, 36.998044 ], [ -101.012641, 36.998176 ], [ -101.053589, 36.997967 ], [ -101.066742, 36.997921 ], [ -101.211486, 36.997124 ], [ -101.212909, 36.997044 ], [ -101.357797, 36.996271 ], [ -101.359674, 36.996232 ], [ -101.378180, 36.996164 ], [ -101.413868, 36.996008 ], [ -101.415005, 36.995966 ], [ -101.485326, 36.995611 ], [ -101.519066, 36.995546 ], [ -101.555239, 36.995414 ], [ -101.555260, 36.995414 ], [ -101.600396, 36.995153 ], [ -101.601593, 36.995095 ], [ -101.902440, 36.993702 ], [ -102.000447, 36.993249 ], [ -102.000447, 36.993272 ], [ -102.028204, 36.993125 ], [ -102.028207, 36.993125 ], [ -102.042240, 36.993083 ], [ -102.041952, 37.024742 ], [ -102.041950, 37.030805 ], [ -102.041921, 37.032178 ], [ -102.041749, 37.034397 ], [ -102.041920, 37.035083 ], [ -102.041983, 37.106551 ], [ -102.041809, 37.111973 ], [ -102.042092, 37.125021 ], [ -102.042135, 37.125021 ], [ -102.042002, 37.141744 ], [ -102.041963, 37.258164 ], [ -102.041664, 37.297650 ], [ -102.041817, 37.309490 ], [ -102.041974, 37.352613 ], [ -102.042089, 37.352819 ], [ -102.041826, 37.389191 ], [ -102.041676, 37.409898 ], [ -102.041669, 37.434740 ], [ -102.041755, 37.434855 ], [ -102.041801, 37.469488 ], [ -102.041786, 37.506066 ], [ -102.042016, 37.535261 ], [ -102.041899, 37.541186 ], [ -102.041894, 37.557977 ], [ -102.041618, 37.607868 ], [ -102.041585, 37.644282 ], [ -102.041582, 37.654495 ], [ -102.041694, 37.665681 ], [ -102.041574, 37.680436 ], [ -102.041876, 37.723875 ], [ -102.041990, 37.738541 ], [ -102.042158, 37.760164 ], [ -102.042668, 37.788758 ], [ -102.042953, 37.803535 ], [ -102.043033, 37.824146 ], [ -102.043219, 37.867929 ], [ -102.043845, 37.926135 ], [ -102.043844, 37.928102 ], [ -102.044398, 38.250015 ], [ -102.044510, 38.262412 ], [ -102.044567, 38.268749 ], [ -102.044568, 38.268819 ], [ -102.044613, 38.312324 ], [ -102.044944, 38.384419 ], [ -102.045263, 38.505395 ], [ -102.045262, 38.505532 ], [ -102.045112, 38.523784 ], [ -102.045223, 38.543797 ], [ -102.045189, 38.558732 ], [ -102.045211, 38.581609 ], [ -102.045288, 38.615168 ], [ -102.045288, 38.615249 ], [ -102.045074, 38.669617 ], [ -102.045102, 38.674946 ], [ -102.045160, 38.675221 ], [ -102.045127, 38.686725 ], [ -102.045156, 38.688555 ], [ -102.045212, 38.697567 ], [ -102.045375, 38.754339 ], [ -102.045287, 38.755528 ], [ -102.045371, 38.770064 ], [ -102.045448, 38.783453 ], [ -102.045334, 38.799463 ], [ -102.045388, 38.813392 ], [ -102.046571, 39.047038 ], [ -102.047134, 39.129701 ], [ -102.047189, 39.133147 ], [ -102.047250, 39.137020 ], [ -102.048449, 39.303138 ], [ -102.048960, 39.373712 ], [ -102.049167, 39.403597 ], [ -102.049370, 39.418210 ], [ -102.049369, 39.423333 ], [ -102.049679, 39.506183 ], [ -102.049673, 39.536691 ], [ -102.049554, 39.538932 ], [ -102.049764, 39.568180 ], [ -102.049806, 39.574058 ], [ -102.049954, 39.592331 ], [ -102.050594, 39.675594 ], [ -102.051254, 39.818992 ], [ -102.051318, 39.833311 ], [ -102.051363, 39.843471 ], [ -102.051569, 39.849805 ], [ -102.051744, 40.003078 ], [ -101.916696, 40.003142 ], [ -101.904176, 40.003162 ], [ -101.841025, 40.002784 ], [ -101.832161, 40.002933 ], [ -101.807687, 40.002798 ], [ -101.804862, 40.002752 ], [ -101.627071, 40.002620 ], [ -101.625809, 40.002711 ], [ -101.542273, 40.002609 ], [ -101.417209, 40.002424 ], [ -101.411043, 40.002365 ], [ -101.409953, 40.002354 ], [ -101.374326, 40.002521 ], [ -101.342859, 40.002580 ], [ -101.325514, 40.002687 ], [ -101.324036, 40.002696 ], [ -101.293991, 40.002559 ], [ -101.286555, 40.002559 ], [ -101.248673, 40.002543 ], [ -101.215033, 40.002555 ], [ -101.192219, 40.002491 ], [ -101.178805, 40.002468 ], [ -101.168704, 40.002547 ], [ -101.130907, 40.002427 ], [ -101.060317, 40.002307 ], [ -101.027686, 40.002256 ], [ -100.937427, 40.002145 ], [ -100.758830, 40.002302 ], [ -100.752183, 40.002128 ], [ -100.738826, 40.002228 ], [ -100.733296, 40.002270 ], [ -100.729904, 40.002111 ], [ -100.721128, 40.002069 ], [ -100.683435, 40.002234 ], [ -100.660230, 40.002162 ], [ -100.645445, 40.001883 ], [ -100.600945, 40.001906 ], [ -100.594757, 40.001977 ], [ -100.567238, 40.001889 ], [ -100.551886, 40.001889 ], [ -100.511065, 40.001840 ], [ -100.487159, 40.001767 ], [ -100.477018, 40.001752 ], [ -100.475854, 40.001768 ], [ -100.468773, 40.001724 ], [ -100.447072, 40.001795 ], [ -100.439081, 40.001774 ], [ -100.390080, 40.001809 ], [ -100.231652, 40.001623 ], [ -100.229479, 40.001693 ], [ -100.215406, 40.001629 ], [ -100.196959, 40.001494 ], [ -100.193597, 40.001573 ], [ -100.193590, 40.001573 ], [ -100.190323, 40.001586 ], [ -100.188181, 40.001541 ], [ -100.177823, 40.001593 ], [ -100.177795, 40.001593 ], [ -99.990926, 40.001503 ], [ -99.986611, 40.001550 ], [ -99.948167, 40.001813 ], [ -99.944417, 40.001584 ], [ -99.930433, 40.001516 ], [ -99.906658, 40.001512 ], [ -99.813401, 40.001400 ], [ -99.775640, 40.001647 ], [ -99.772121, 40.001804 ], [ -99.764214, 40.001551 ], [ -99.756835, 40.001342 ], [ -99.746628, 40.001820 ], [ -99.731959, 40.001827 ], [ -99.719639, 40.001808 ], [ -99.628346, 40.001866 ], [ -99.628255, 40.001866 ], [ -99.625980, 40.001865 ], [ -99.625324, 40.001866 ], [ -99.501792, 40.002026 ], [ -99.498999, 40.001957 ], [ -99.497660, 40.001912 ], [ -99.493465, 40.001937 ], [ -99.480728, 40.001942 ], [ -99.412645, 40.001868 ], [ -99.403389, 40.001969 ], [ -99.290703, 40.001949 ], [ -99.286656, 40.002017 ], [ -99.282967, 40.001879 ], [ -99.254012, 40.002074 ], [ -99.250370, 40.001957 ], [ -99.216376, 40.002016 ], [ -99.197592, 40.002033 ], [ -99.188905, 40.002023 ], [ -99.186962, 40.001977 ], [ -99.179133, 40.001977 ], [ -99.178965, 40.001977 ], [ -99.169816, 40.001925 ], [ -99.123033, 40.002165 ], [ -99.113510, 40.002193 ], [ -99.085597, 40.002133 ], [ -99.067022, 40.002170 ], [ -99.020338, 40.002264 ], [ -99.018701, 40.002333 ], [ -98.992135, 40.002192 ], [ -98.972287, 40.002245 ], [ -98.971721, 40.002268 ], [ -98.961009, 40.002317 ], [ -98.960919, 40.002271 ], [ -98.934792, 40.002205 ], [ -98.834456, 40.002363 ], [ -98.820590, 40.002319 ], [ -98.777203, 40.002359 ], [ -98.774941, 40.002336 ], [ -98.726373, 40.002222 ], [ -98.726295, 40.002222 ], [ -98.710404, 40.002180 ], [ -98.693096, 40.002373 ], [ -98.691443, 40.002505 ], [ -98.690287, 40.002548 ], [ -98.672819, 40.002364 ], [ -98.669724, 40.002410 ], [ -98.653833, 40.002269 ], [ -98.652494, 40.002245 ], [ -98.640710, 40.002493 ], [ -98.613755, 40.002400 ], [ -98.593342, 40.002476 ], [ -98.575219, 40.002480 ], [ -98.560578, 40.002274 ], [ -98.543186, 40.002285 ], [ -98.523053, 40.002336 ], [ -98.504455, 40.002329 ], [ -98.490533, 40.002323 ], [ -98.274017, 40.002516 ], [ -98.274015, 40.002516 ], [ -98.268218, 40.002490 ], [ -98.250008, 40.002307 ], [ -98.193483, 40.002614 ], [ -98.179315, 40.002483 ], [ -98.172269, 40.002438 ], [ -98.142031, 40.002452 ], [ -98.099659, 40.002227 ], [ -98.076034, 40.002301 ], [ -98.068701, 40.002355 ], [ -98.050057, 40.002278 ], [ -98.047469, 40.002186 ], [ -98.014412, 40.002223 ], [ -98.010157, 40.002153 ], [ -97.972186, 40.002114 ], [ -97.931826, 40.002050 ], [ -97.931811, 40.002050 ], [ -97.876261, 40.002102 ], [ -97.857450, 40.002065 ], [ -97.838379, 40.001910 ], [ -97.821598, 40.002004 ], [ -97.821496, 40.002002 ], [ -97.819426, 40.001958 ], [ -97.777155, 40.002167 ], [ -97.770776, 40.001977 ], [ -97.769204, 40.001995 ], [ -97.767746, 40.001994 ], [ -97.515308, 40.001901 ], [ -97.511381, 40.001899 ], [ -97.510264, 40.001835 ], [ -97.463285, 40.002047 ], [ -97.444662, 40.001958 ], [ -97.425443, 40.002048 ], [ -97.417826, 40.002024 ], [ -97.415833, 40.002001 ], [ -97.369199, 40.002060 ], [ -97.369199, 40.002060 ], [ -97.369103, 40.002060 ], [ -97.350896, 40.001930 ], [ -97.350272, 40.001976 ], [ -97.245169, 40.001513 ], [ -97.245080, 40.001467 ], [ -97.202310, 40.001442 ], [ -97.200190, 40.001549 ], [ -97.181775, 40.001550 ], [ -97.142448, 40.001495 ], [ -97.137866, 40.001814 ], [ -97.049663, 40.001323 ], [ -97.030803, 40.001342 ], [ -97.009165, 40.001463 ], [ -96.916407, 40.001506 ], [ -96.916093, 40.001506 ], [ -96.880459, 40.001448 ], [ -96.878253, 40.001466 ], [ -96.875057, 40.001448 ], [ -96.873812, 40.001450 ], [ -96.805768, 40.001371 ], [ -96.622401, 40.001158 ], [ -96.610349, 40.000881 ], [ -96.604884, 40.000891 ], [ -96.580852, 40.000966 ], [ -96.570854, 40.001091 ], [ -96.557863, 40.000968 ], [ -96.538977, 40.000851 ], [ -96.527111, 40.001031 ], [ -96.469945, 40.000966 ], [ -96.467536, 40.001035 ], [ -96.463713, 40.000968 ], [ -96.463640, 40.000967 ], [ -96.304555, 40.000629 ], [ -96.301066, 40.000632 ], [ -96.239208, 40.000691 ], [ -96.239172, 40.000691 ], [ -96.223839, 40.000729 ], [ -96.220171, 40.000720 ], [ -96.154365, 40.000495 ], [ -96.154246, 40.000450 ], [ -96.147167, 40.000479 ], [ -96.125937, 40.000432 ], [ -96.125788, 40.000467 ], [ -96.089781, 40.000519 ], [ -96.081395, 40.000603 ], [ -96.051691, 40.000727 ], [ -96.024090, 40.000719 ], [ -96.010680, 40.000638 ], [ -96.010678, 40.000638 ], [ -95.958139, 40.000521 ], [ -95.882524, 40.000470 ], [ -95.788111, 40.000452 ], [ -95.788024, 40.000452 ], [ -95.784575, 40.000463 ], [ -95.375257, 40.000000 ], [ -95.339896, 39.999999 ], [ -95.308290, 39.999998 ], [ -95.307780, 39.990618 ], [ -95.301549, 39.983603 ], [ -95.181222, 39.899996 ], [ -95.132695, 39.875925 ], [ -95.107745, 39.868579 ], [ -95.085003, 39.861883 ], [ -95.042142, 39.864805 ], [ -95.035047, 39.866807 ], [ -95.027931, 39.871522 ], [ -95.025250, 39.877688 ], [ -95.025240, 39.889700 ], [ -95.016320, 39.898766 ], [ -95.008440, 39.900596 ], [ -94.993348, 39.900747 ], [ -94.954155, 39.901138 ], [ -94.935963, 39.894355 ], [ -94.927897, 39.886112 ], [ -94.908267, 39.812172 ], [ -94.895268, 39.763210 ], [ -94.916932, 39.728186 ], [ -94.937924, 39.725471 ], [ -95.011103, 39.677572 ], [ -95.015310, 39.674262 ], [ -95.069592, 39.615106 ], [ -95.107454, 39.573843 ], [ -95.113077, 39.559133 ], [ -95.113557, 39.553941 ], [ -95.109304, 39.542285 ], [ -95.102888, 39.533347 ], [ -94.969061, 39.418876 ], [ -94.946662, 39.399717 ], [ -94.909954, 39.367459 ], [ -94.908337, 39.355647 ], [ -94.910641, 39.348335 ], [ -94.907569, 39.320623 ], [ -94.901009, 39.301680 ], [ -94.832399, 39.227218 ], [ -94.793948, 39.201276 ], [ -94.752338, 39.173203 ], [ -94.736537, 39.169203 ], [ -94.723637, 39.169003 ], [ -94.714137, 39.170403 ], [ -94.706723, 39.173801 ], [ -94.601733, 39.159603 ], [ -94.596033, 39.157703 ], [ -94.591933, 39.155003 ], [ -94.589933, 39.140403 ], [ -94.607354, 39.113444 ], [ -94.607234, 39.089604 ], [ -94.607334, 39.081704 ], [ -94.607234, 39.065704 ], [ -94.607391, 39.044086 ], [ -94.608134, 38.942006 ], [ -94.608134, 38.940006 ], [ -94.607866, 38.937398 ], [ -94.607978, 38.936870 ], [ -94.608033, 38.883807 ], [ -94.608033, 38.869207 ], [ -94.608033, 38.868107 ], [ -94.607993, 38.867271 ], [ -94.608033, 38.861207 ], [ -94.608033, 38.855007 ], [ -94.608033, 38.847207 ], [ -94.608041, 38.811064 ], [ -94.609039, 38.760611 ], [ -94.609399, 38.742440 ], [ -94.609456, 38.740700 ], [ -94.609509, 38.738102 ], [ -94.611602, 38.635384 ], [ -94.611858, 38.620485 ], [ -94.611908, 38.609272 ], [ -94.611887, 38.580139 ], [ -94.611902, 38.580110 ], [ -94.612176, 38.576546 ], [ -94.612157, 38.549817 ], [ -94.612272, 38.547917 ], [ -94.612644, 38.491644 ], [ -94.612726, 38.484367 ], [ -94.612696, 38.483154 ], [ -94.612865, 38.477602 ], [ -94.612866, 38.477571 ], [ -94.613365, 38.403422 ], [ -94.613265, 38.392426 ], [ -94.613275, 38.388718 ], [ -94.613329, 38.369618 ], [ -94.613312, 38.364407 ], [ -94.613000, 38.335801 ], [ -94.612825, 38.324387 ], [ -94.612788, 38.320142 ], [ -94.612673, 38.314832 ], [ -94.612673, 38.302527 ], [ -94.612844, 38.291423 ], [ -94.612849, 38.289914 ], [ -94.612692, 38.270394 ], [ -94.612614, 38.237766 ], [ -94.612635, 38.226987 ], [ -94.612659, 38.219251 ], [ -94.612658, 38.217649 ], [ -94.612822, 38.203918 ], [ -94.612848, 38.200714 ], [ -94.613073, 38.190552 ], [ -94.613422, 38.167908 ], [ -94.613748, 38.160633 ], [ -94.613856, 38.149769 ], [ -94.614061, 38.067343 ], [ -94.614089, 38.065901 ], [ -94.614055, 38.060088 ], [ -94.614055, 38.060056 ], [ -94.613981, 38.037057 ], [ -94.613981, 38.036949 ], [ -94.614212, 37.992462 ], [ -94.614465, 37.987799 ], [ -94.614557, 37.971037 ], [ -94.614562, 37.951517 ], [ -94.614594, 37.949978 ], [ -94.614612, 37.944362 ], [ -94.614754, 37.940769 ], [ -94.614835, 37.936700 ], [ -94.614778, 37.934200 ], [ -94.615181, 37.915944 ], [ -94.615393, 37.906392 ], [ -94.615469, 37.901775 ], [ -94.615706, 37.886843 ], [ -94.615921, 37.878331 ], [ -94.615834, 37.872510 ], [ -94.616000, 37.863126 ], [ -94.616426, 37.845282 ], [ -94.616450, 37.837560 ], [ -94.616862, 37.819456 ], [ -94.617808, 37.729707 ], [ -94.617975, 37.722176 ], [ -94.617805, 37.690178 ], [ -94.617651, 37.687671 ], [ -94.617687, 37.686653 ], [ -94.617885, 37.682214 ], [ -94.617734, 37.673127 ], [ -94.617734, 37.673105 ], [ -94.617576, 37.653671 ], [ -94.617575, 37.653577 ], [ -94.617477, 37.637170 ], [ -94.617300, 37.610495 ], [ -94.617428, 37.609522 ], [ -94.617283, 37.571896 ], [ -94.617315, 37.571499 ], [ -94.617081, 37.567013 ], [ -94.617160, 37.557308 ], [ -94.617186, 37.553485 ], [ -94.616908, 37.527804 ], [ -94.616789, 37.521510 ], [ -94.617023, 37.483765 ], [ -94.617183, 37.469665 ], [ -94.617180, 37.465203 ], [ -94.617222, 37.460476 ], [ -94.617205, 37.460373 ], [ -94.617201, 37.454788 ], [ -94.617132, 37.439818 ], [ -94.617265, 37.425536 ], [ -94.617511, 37.410909 ], [ -94.617557, 37.396375 ], [ -94.617625, 37.367576 ], [ -94.617626, 37.367445 ], [ -94.617537, 37.364355 ], [ -94.617538, 37.364167 ], [ -94.617636, 37.338417 ], [ -94.617636, 37.338415 ], [ -94.617695, 37.336842 ], [ -94.617648, 37.323589 ], [ -94.618075, 37.240436 ], [ -94.618158, 37.237597 ], [ -94.618123, 37.229334 ], [ -94.618150, 37.228121 ], [ -94.618219, 37.207772 ], [ -94.618305, 37.207337 ], [ -94.618319, 37.188774 ], [ -94.618505, 37.181184 ], [ -94.618473, 37.174782 ], [ -94.618351, 37.160211 ], [ -94.618072, 37.132345 ], [ -94.618075, 37.129755 ], [ -94.618212, 37.113169 ], [ -94.618151, 37.103968 ], [ -94.618059, 37.096676 ], [ -94.618088, 37.093671 ], [ -94.618090, 37.093494 ], [ -94.618082, 37.086432 ], [ -94.618120, 37.085934 ], [ -94.617982, 37.075077 ], [ -94.617875, 37.056798 ], [ -94.617875, 37.056797 ], [ -94.617965, 37.040537 ], [ -94.617995, 37.009016 ], [ -94.618080, 36.998135 ], [ -94.699735, 36.998805 ], [ -94.701797, 36.998814 ], [ -94.712770, 36.998794 ], [ -94.737183, 36.998665 ], [ -94.739324, 36.998687 ], [ -94.777257, 36.998764 ], [ -94.831280, 36.998812 ], [ -94.840926, 36.998833 ], [ -94.849801, 36.998876 ], [ -94.853197, 36.998874 ], [ -94.995293, 36.999529 ], [ -95.007620, 36.999514 ], [ -95.011433, 36.999535 ], [ -95.030324, 36.999517 ], [ -95.037857, 36.999497 ], [ -95.049499, 36.999580 ], [ -95.073504, 36.999509 ], [ -95.073509, 36.999509 ], [ -95.155187, 36.999539 ], [ -95.155372, 36.999540 ], [ -95.177301, 36.999520 ], [ -95.195307, 36.999565 ], [ -95.322565, 36.999358 ], [ -95.328058, 36.999365 ], [ -95.328327, 36.999366 ], [ -95.331210, 36.999380 ], [ -95.407572, 36.999241 ], [ -95.407683, 36.999241 ], [ -95.511578, 36.999235 ], [ -95.522415, 36.999281 ], [ -95.534401, 36.999332 ], [ -95.573598, 36.999310 ], [ -95.612140, 36.999321 ], [ -95.615934, 36.999365 ], [ -95.624350, 36.999360 ], [ -95.630079, 36.999320 ], [ -95.664301, 36.999322 ], [ -95.686452, 36.999349 ], [ -95.696659, 36.999215 ], [ -95.710380, 36.999371 ], [ -95.714887, 36.999279 ], [ -95.718054, 36.999255 ], [ -95.741908, 36.999244 ], [ -95.759905, 36.999271 ], [ -95.768719, 36.999205 ], [ -95.786762, 36.999310 ], [ -95.807980, 36.999124 ], [ -95.866899, 36.999261 ], [ -95.873944, 36.999300 ], [ -95.875257, 36.999302 ], [ -95.877151, 36.999304 ], [ -95.910180, 36.999336 ], [ -95.928122, 36.999245 ], [ -95.936992, 36.999268 ], [ -95.964270, 36.999094 ], [ -96.000810, 36.998860 ], [ -96.141210, 36.998973 ], [ -96.143207, 36.999134 ], [ -96.147143, 36.999022 ], [ -96.149709, 36.999040 ], [ -96.152384, 36.999051 ], [ -96.154017, 36.999161 ], [ -96.184768, 36.999211 ], [ -96.200028, 36.999028 ], [ -96.217571, 36.999070 ], [ -96.276368, 36.999271 ], [ -96.279079, 36.999272 ], [ -96.394272, 36.999221 ], [ -96.415412, 36.999113 ], [ -96.525493, 36.999147 ], [ -96.705431, 36.999203 ], [ -96.710482, 36.999271 ], [ -96.736590, 36.999286 ], [ -96.741270, 36.999239 ], [ -96.749838, 36.998988 ], [ -96.792060, 36.999180 ], [ -96.795199, 36.998860 ], [ -96.822791, 36.999182 ], [ -96.867517, 36.999217 ], [ -96.876290, 36.999233 ], [ -96.902083, 36.999155 ], [ -96.903510, 36.999132 ], [ -96.917093, 36.999182 ], [ -96.921915, 36.999151 ], [ -96.934642, 36.999070 ], [ -96.967371, 36.999067 ], [ -96.975562, 36.999019 ], [ -97.030082, 36.998929 ], [ -97.039784, 36.999000 ], [ -97.100652, 36.998998 ], [ -97.104276, 36.999020 ], [ -97.120285, 36.999014 ], [ -97.122597, 36.999036 ], [ -97.147721, 36.999111 ], [ -97.372421, 36.998861 ], [ -97.384925, 36.998843 ], [ -97.462280, 36.998685 ], [ -97.462346, 36.998685 ], [ -97.472861, 36.998721 ], [ -97.527292, 36.998750 ], [ -97.545900, 36.998709 ], [ -97.546498, 36.998747 ], [ -97.564536, 36.998711 ], [ -97.606549, 36.998682 ], [ -97.637137, 36.999090 ], [ -97.650466, 36.999004 ], [ -97.697104, 36.998826 ], [ -97.768704, 36.998750 ], [ -97.783432, 36.998961 ], [ -97.783489, 36.998847 ], [ -97.802298, 36.998713 ], [ -97.802313, 36.998713 ], [ -98.033955, 36.998366 ], [ -98.039890, 36.998349 ], [ -98.045342, 36.998327 ], [ -98.111985, 36.998133 ], [ -98.147452, 36.998162 ], [ -98.177596, 36.998009 ], [ -98.208218, 36.997997 ], [ -98.219499, 36.997824 ], [ -98.237712, 36.997972 ], [ -98.346188, 36.997962 ], [ -98.347149, 36.997962 ], [ -98.354073, 36.997961 ], [ -98.408991, 36.998513 ], [ -98.418268, 36.998538 ], [ -98.420209, 36.998516 ], [ -98.544660, 36.998996 ], [ -98.544872, 36.998997 ], [ -98.714512, 36.999060 ], [ -98.718465, 36.999180 ], [ -98.761597, 36.999425 ], [ -98.791936, 36.999255 ], [ -98.793711, 36.999227 ], [ -98.797452, 36.999229 ], [ -98.869449, 36.999286 ], [ -98.880009, 36.999263 ], [ -98.880580, 36.999309 ], [ -98.994371, 36.999493 ], [ -99.000303, 36.999510 ], [ -99.029337, 36.999595 ], [ -99.124883, 36.999420 ], [ -99.129449, 36.999422 ], [ -99.248120, 36.999565 ], [ -99.277506, 36.999579 ], [ -99.456203, 36.999471 ], [ -99.484333, 36.999626 ], [ -99.500395, 36.999576 ], [ -99.500395, 36.999637 ], [ -99.502665, 36.999645 ], [ -99.504093, 36.999648 ], [ -99.508574, 36.999658 ], [ -99.541116, 36.999573 ] ] ] } }\n,\n{ \"type\": \"Feature\", \"properties\": { \"GEO_ID\": \"0400000US24\", \"STATE\": \"24\", \"NAME\": \"Maryland\", \"LSAD\": \"\", \"CENSUSAREA\": 9707.241000 }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [ [ [ [ -76.048373, 38.120550 ], [ -76.056811, 38.125123 ], [ -76.061000, 38.127002 ], [ -76.061111, 38.126963 ], [ -76.061470, 38.126839 ], [ -76.063661, 38.126078 ], [ -76.064683, 38.125723 ], [ -76.081127, 38.120014 ], [ -76.081587, 38.119854 ], [ -76.085230, 38.118589 ], [ -76.085311, 38.118561 ], [ -76.085542, 38.117869 ], [ -76.085885, 38.116844 ], [ -76.085947, 38.116658 ], [ -76.086224, 38.116534 ], [ -76.089018, 38.115287 ], [ -76.089166, 38.115221 ], [ -76.090872, 38.114460 ], [ -76.095548, 38.125123 ], [ -76.090649, 38.131185 ], [ -76.090640, 38.131240 ], [ -76.090527, 38.131919 ], [ -76.089017, 38.141033 ], [ -76.089918, 38.143837 ], [ -76.090216, 38.144765 ], [ -76.092334, 38.151355 ], [ -76.088639, 38.192649 ], [ -76.071470, 38.203502 ], [ -76.067797, 38.203539 ], [ -76.067100, 38.203546 ], [ -76.066994, 38.203547 ], [ -76.061906, 38.203599 ], [ -76.059731, 38.203621 ], [ -76.059562, 38.203622 ], [ -76.059218, 38.203626 ], [ -76.059158, 38.203626 ], [ -76.059020, 38.203628 ], [ -76.058925, 38.203629 ], [ -76.053753, 38.203681 ], [ -76.052165, 38.203697 ], [ -76.050511, 38.203714 ], [ -76.048945, 38.203729 ], [ -76.048786, 38.203731 ], [ -76.046539, 38.201549 ], [ -76.046273, 38.201290 ], [ -76.042691, 38.197811 ], [ -76.042615, 38.197737 ], [ -76.042385, 38.197515 ], [ -76.042280, 38.197412 ], [ -76.041952, 38.197094 ], [ -76.040718, 38.195896 ], [ -76.038929, 38.194158 ], [ -76.036757, 38.192049 ], [ -76.028580, 38.184107 ], [ -76.028411, 38.183943 ], [ -76.026900, 38.182476 ], [ -76.025899, 38.181504 ], [ -76.022170, 38.177882 ], [ -76.021941, 38.171976 ], [ -76.025892, 38.170946 ], [ -76.032767, 38.169154 ], [ -76.032816, 38.169141 ], [ -76.034038, 38.157902 ], [ -76.033978, 38.157636 ], [ -76.031945, 38.148631 ], [ -76.031868, 38.148288 ], [ -76.031442, 38.147612 ], [ -76.022515, 38.133453 ], [ -76.020982, 38.132776 ], [ -76.020476, 38.132553 ], [ -76.019637, 38.132183 ], [ -76.018574, 38.131713 ], [ -76.017790, 38.131367 ], [ -76.015155, 38.131548 ], [ -76.013903, 38.131634 ], [ -76.012487, 38.131731 ], [ -76.011916, 38.122214 ], [ -76.013363, 38.121342 ], [ -76.014698, 38.120537 ], [ -76.015702, 38.119933 ], [ -76.020496, 38.117044 ], [ -76.021305, 38.108608 ], [ -76.021353, 38.108108 ], [ -76.021370, 38.107934 ], [ -76.020996, 38.107578 ], [ -76.017394, 38.104154 ], [ -76.015477, 38.102332 ], [ -76.008168, 38.095385 ], [ -76.005904, 38.077170 ], [ -76.011544, 38.072312 ], [ -76.012701, 38.072159 ], [ -76.015235, 38.071825 ], [ -76.023300, 38.070760 ], [ -76.036676, 38.076509 ], [ -76.052207, 38.089716 ], [ -76.058310, 38.094906 ], [ -76.059304, 38.095751 ], [ -76.050156, 38.107758 ], [ -76.047291, 38.108505 ], [ -76.046494, 38.108712 ], [ -76.045279, 38.109029 ], [ -76.044482, 38.109237 ], [ -76.042083, 38.109862 ], [ -76.041083, 38.110726 ], [ -76.040874, 38.110906 ], [ -76.039620, 38.111990 ], [ -76.039696, 38.112108 ], [ -76.040665, 38.113606 ], [ -76.043423, 38.117868 ], [ -76.048373, 38.120550 ] ] ], [ [ [ -75.993905, 37.953489 ], [ -75.994739, 37.953501 ], [ -76.005888, 37.953662 ], [ -76.017686, 37.953832 ], [ -76.020796, 37.953877 ], [ -76.020932, 37.953879 ], [ -76.021714, 37.953887 ], [ -76.022325, 37.953878 ], [ -76.029405, 37.953776 ], [ -76.029463, 37.953775 ], [ -76.030122, 37.953655 ], [ -76.038026, 37.953901 ], [ -76.041402, 37.954006 ], [ -76.041691, 37.954000 ], [ -76.045561, 37.953669 ], [ -76.046530, 37.953586 ], [ -76.049608, 37.983628 ], [ -76.049562, 37.985065 ], [ -76.049549, 37.985495 ], [ -76.049527, 37.986184 ], [ -76.049396, 37.990315 ], [ -76.048617, 38.014843 ], [ -76.046213, 38.025533 ], [ -76.041668, 38.032148 ], [ -76.020827, 38.039124 ], [ -76.013128, 38.039762 ], [ -76.008835, 38.038275 ], [ -76.008695, 38.038226 ], [ -76.004592, 38.036805 ], [ -75.991846, 38.025497 ], [ -75.981195, 38.022460 ], [ -75.977246, 38.021334 ], [ -75.975494, 38.020834 ], [ -75.975487, 38.020827 ], [ -75.973432, 38.018841 ], [ -75.972304, 38.017750 ], [ -75.970172, 38.015688 ], [ -75.970168, 38.015685 ], [ -75.970168, 38.015683 ], [ -75.970178, 38.015260 ], [ -75.970345, 38.008222 ], [ -75.970390, 38.006327 ], [ -75.970917, 38.006239 ], [ -75.979879, 38.004738 ], [ -75.980683, 38.004603 ], [ -75.982880, 38.004236 ], [ -75.984251, 38.004006 ], [ -75.984479, 38.003369 ], [ -75.984675, 38.002821 ], [ -75.985020, 38.001855 ], [ -75.985723, 37.999889 ], [ -75.986249, 37.998416 ], [ -75.986571, 37.997516 ], [ -75.988541, 37.992006 ], [ -75.988719, 37.991509 ], [ -75.989101, 37.990440 ], [ -75.992468, 37.981021 ], [ -75.994730, 37.974694 ], [ -75.994730, 37.974693 ], [ -75.992789, 37.969932 ], [ -75.991543, 37.966874 ], [ -75.988879, 37.960337 ], [ -75.993905, 37.953489 ] ] ], [ [ [ -76.438845, 39.052900 ], [ -76.438928, 39.052788 ], [ -76.437044, 39.051698 ], [ -76.422933, 39.043536 ], [ -76.407398, 39.034551 ], [ -76.407213, 39.034444 ], [ -76.407205, 39.034439 ], [ -76.405338, 39.033360 ], [ -76.405081, 39.033211 ], [ -76.405021, 39.033124 ], [ -76.402600, 39.029609 ], [ -76.397780, 39.022611 ], [ -76.397738, 39.022482 ], [ -76.396417, 39.018449 ], [ -76.396395, 39.018380 ], [ -76.395639, 39.016074 ], [ -76.395338, 39.015154 ], [ -76.394699, 39.013200 ], [ -76.394358, 39.012160 ], [ -76.394080, 39.011311 ], [ -76.412326, 38.996832 ], [ -76.414631, 38.995002 ], [ -76.421535, 38.989524 ], [ -76.422181, 38.989011 ], [ -76.427301, 38.987827 ], [ -76.448928, 38.982823 ], [ -76.448981, 38.982811 ], [ -76.449188, 38.982092 ], [ -76.450152, 38.978751 ], [ -76.450481, 38.977612 ], [ -76.451599, 38.976767 ], [ -76.454581, 38.974512 ], [ -76.474198, 38.972647 ], [ -76.474198, 38.972646 ], [ -76.474450, 38.970683 ], [ -76.474882, 38.967312 ], [ -76.474743, 38.966895 ], [ -76.473243, 38.962397 ], [ -76.471281, 38.956512 ], [ -76.463081, 38.948612 ], [ -76.460234, 38.948505 ], [ -76.457781, 38.948412 ], [ -76.457229, 38.947875 ], [ -76.451695, 38.942490 ], [ -76.450280, 38.941113 ], [ -76.450756, 38.940412 ], [ -76.461880, 38.924013 ], [ -76.461747, 38.923674 ], [ -76.460272, 38.919909 ], [ -76.458991, 38.916639 ], [ -76.458759, 38.916045 ], [ -76.458080, 38.914313 ], [ -76.459479, 38.907113 ], [ -76.460253, 38.907152 ], [ -76.460716, 38.907175 ], [ -76.462312, 38.907256 ], [ -76.465280, 38.907406 ], [ -76.469380, 38.907613 ], [ -76.469480, 38.911513 ], [ -76.475761, 38.914469 ], [ -76.493680, 38.910013 ], [ -76.493791, 38.904225 ], [ -76.493798, 38.903865 ], [ -76.493806, 38.903443 ], [ -76.493856, 38.900846 ], [ -76.493880, 38.899614 ], [ -76.492780, 38.895614 ], [ -76.490880, 38.894514 ], [ -76.490403, 38.892254 ], [ -76.490339, 38.891955 ], [ -76.489933, 38.890031 ], [ -76.489713, 38.888991 ], [ -76.489675, 38.888811 ], [ -76.489667, 38.888772 ], [ -76.489380, 38.887414 ], [ -76.490680, 38.884814 ], [ -76.491107, 38.884492 ], [ -76.491442, 38.884239 ], [ -76.494400, 38.882010 ], [ -76.494588, 38.881868 ], [ -76.494858, 38.881665 ], [ -76.498467, 38.878944 ], [ -76.507858, 38.871866 ], [ -76.511135, 38.869396 ], [ -76.519442, 38.863135 ], [ -76.516944, 38.851157 ], [ -76.516582, 38.851026 ], [ -76.509285, 38.848388 ], [ -76.509211, 38.848416 ], [ -76.499158, 38.852156 ], [ -76.497562, 38.852749 ], [ -76.496579, 38.853115 ], [ -76.496474, 38.852953 ], [ -76.493639, 38.848595 ], [ -76.492761, 38.847246 ], [ -76.492017, 38.846102 ], [ -76.491581, 38.845433 ], [ -76.491494, 38.845299 ], [ -76.489919, 38.842878 ], [ -76.489878, 38.842815 ], [ -76.489878, 38.838715 ], [ -76.490107, 38.838176 ], [ -76.491387, 38.835161 ], [ -76.491606, 38.834644 ], [ -76.491684, 38.834462 ], [ -76.491831, 38.834116 ], [ -76.496965, 38.822022 ], [ -76.497692, 38.820309 ], [ -76.498878, 38.817516 ], [ -76.499056, 38.817258 ], [ -76.502910, 38.811648 ], [ -76.506530, 38.806380 ], [ -76.506876, 38.805875 ], [ -76.509314, 38.802328 ], [ -76.510078, 38.801216 ], [ -76.511130, 38.800769 ], [ -76.514296, 38.799425 ], [ -76.515830, 38.798774 ], [ -76.523405, 38.795557 ], [ -76.524679, 38.795016 ], [ -76.524806, 38.794871 ], [ -76.524999, 38.794650 ], [ -76.525039, 38.794605 ], [ -76.525210, 38.794409 ], [ -76.525531, 38.794043 ], [ -76.527455, 38.791844 ], [ -76.527479, 38.791816 ], [ -76.527463, 38.791667 ], [ -76.527372, 38.790788 ], [ -76.527370, 38.790774 ], [ -76.527105, 38.788223 ], [ -76.527045, 38.787645 ], [ -76.526979, 38.787016 ], [ -76.527315, 38.786660 ], [ -76.528136, 38.785790 ], [ -76.532487, 38.781181 ], [ -76.533975, 38.779604 ], [ -76.535207, 38.778298 ], [ -76.535352, 38.778145 ], [ -76.535379, 38.778116 ], [ -76.535426, 38.778095 ], [ -76.535642, 38.778000 ], [ -76.536284, 38.777719 ], [ -76.536819, 38.777484 ], [ -76.536849, 38.777471 ], [ -76.537230, 38.777304 ], [ -76.539088, 38.776488 ], [ -76.542973, 38.774783 ], [ -76.544372, 38.774169 ], [ -76.544413, 38.774151 ], [ -76.554443, 38.769749 ], [ -76.554693, 38.769639 ], [ -76.559697, 38.767443 ], [ -76.559884, 38.767361 ], [ -76.559778, 38.766342 ], [ -76.558933, 38.758177 ], [ -76.557535, 38.744687 ], [ -76.557300, 38.744229 ], [ -76.557091, 38.743823 ], [ -76.556954, 38.743554 ], [ -76.553978, 38.737756 ], [ -76.552743, 38.735350 ], [ -76.551971, 38.734636 ], [ -76.544561, 38.727784 ], [ -76.544475, 38.727705 ], [ -76.543853, 38.727736 ], [ -76.543570, 38.727750 ], [ -76.543435, 38.727757 ], [ -76.542053, 38.727826 ], [ -76.539769, 38.727940 ], [ -76.529868, 38.728435 ], [ -76.529284, 38.728137 ], [ -76.527180, 38.727062 ], [ -76.526655, 38.724430 ], [ -76.529237, 38.713561 ], [ -76.529532, 38.712317 ], [ -76.529721, 38.711523 ], [ -76.530575, 38.707929 ], [ -76.530799, 38.706983 ], [ -76.530824, 38.706881 ], [ -76.532465, 38.699974 ], [ -76.532537, 38.699669 ], [ -76.532527, 38.698207 ], [ -76.532432, 38.683600 ], [ -76.532409, 38.680064 ], [ -76.532398, 38.678363 ], [ -76.532056, 38.676936 ], [ -76.530454, 38.670263 ], [ -76.527850, 38.659416 ], [ -76.527428, 38.657655 ], [ -76.525007, 38.647568 ], [ -76.524620, 38.645956 ], [ -76.524122, 38.645044 ], [ -76.517862, 38.633586 ], [ -76.516988, 38.631985 ], [ -76.515554, 38.629361 ], [ -76.511278, 38.615745 ], [ -76.512452, 38.609827 ], [ -76.512583, 38.609168 ], [ -76.514812, 38.597930 ], [ -76.515741, 38.593248 ], [ -76.515760, 38.593154 ], [ -76.515764, 38.593131 ], [ -76.516340, 38.590229 ], [ -76.515106, 38.555763 ], [ -76.515376, 38.553895 ], [ -76.515409, 38.553667 ], [ -76.515415, 38.553623 ], [ -76.515520, 38.552900 ], [ -76.517506, 38.539149 ], [ -76.515754, 38.529260 ], [ -76.515706, 38.528988 ], [ -76.515350, 38.528093 ], [ -76.507489, 38.508300 ], [ -76.506860, 38.506716 ], [ -76.506023, 38.504610 ], [ -76.499256, 38.493559 ], [ -76.498792, 38.492800 ], [ -76.498222, 38.491869 ], [ -76.492699, 38.482849 ], [ -76.491642, 38.481944 ], [ -76.473372, 38.466290 ], [ -76.471253, 38.464474 ], [ -76.467342, 38.461123 ], [ -76.467194, 38.460996 ], [ -76.467186, 38.460990 ], [ -76.464010, 38.458268 ], [ -76.461078, 38.455756 ], [ -76.455799, 38.451233 ], [ -76.456002, 38.447891 ], [ -76.454140, 38.445880 ], [ -76.450937, 38.442422 ], [ -76.445376, 38.439012 ], [ -76.442441, 38.437212 ], [ -76.442431, 38.437206 ], [ -76.441180, 38.436439 ], [ -76.438919, 38.435053 ], [ -76.436271, 38.433429 ], [ -76.435674, 38.432893 ], [ -76.415384, 38.414682 ], [ -76.402710, 38.396003 ], [ -76.393378, 38.389477 ], [ -76.388348, 38.387781 ], [ -76.388328, 38.387727 ], [ -76.386229, 38.382013 ], [ -76.386243, 38.381631 ], [ -76.386931, 38.363184 ], [ -76.386957, 38.362462 ], [ -76.387002, 38.361267 ], [ -76.387408, 38.360811 ], [ -76.388806, 38.359238 ], [ -76.388915, 38.359115 ], [ -76.398261, 38.348602 ], [ -76.400871, 38.345666 ], [ -76.401532, 38.344923 ], [ -76.402043, 38.344348 ], [ -76.403101, 38.343157 ], [ -76.404940, 38.341089 ], [ -76.409291, 38.325891 ], [ -76.405716, 38.317794 ], [ -76.402894, 38.311402 ], [ -76.382163, 38.303389 ], [ -76.381493, 38.303130 ], [ -76.380120, 38.302343 ], [ -76.375310, 38.299583 ], [ -76.375023, 38.299419 ], [ -76.374517, 38.296556 ], [ -76.374481, 38.296348 ], [ -76.376607, 38.294393 ], [ -76.382051, 38.289384 ], [ -76.394171, 38.278233 ], [ -76.396913, 38.271650 ], [ -76.398852, 38.266997 ], [ -76.399013, 38.264338 ], [ -76.399049, 38.263753 ], [ -76.399078, 38.263275 ], [ -76.399313, 38.259398 ], [ -76.399320, 38.259284 ], [ -76.399078, 38.258569 ], [ -76.392464, 38.239055 ], [ -76.392280, 38.238511 ], [ -76.391659, 38.236680 ], [ -76.391623, 38.236573 ], [ -76.385244, 38.217751 ], [ -76.378104, 38.209897 ], [ -76.377693, 38.209445 ], [ -76.372535, 38.203771 ], [ -76.364135, 38.194532 ], [ -76.361877, 38.192048 ], [ -76.359887, 38.188737 ], [ -76.353799, 38.178606 ], [ -76.353516, 38.178135 ], [ -76.352561, 38.177214 ], [ -76.352395, 38.177054 ], [ -76.347983, 38.172802 ], [ -76.343517, 38.168497 ], [ -76.337611, 38.162805 ], [ -76.336106, 38.161353 ], [ -76.329711, 38.155190 ], [ -76.329705, 38.155184 ], [ -76.329688, 38.155155 ], [ -76.328864, 38.153703 ], [ -76.328805, 38.153600 ], [ -76.328778, 38.153552 ], [ -76.328419, 38.152921 ], [ -76.327124, 38.150641 ], [ -76.320492, 38.138966 ], [ -76.320136, 38.138339 ], [ -76.324108, 38.134266 ], [ -76.330982, 38.127217 ], [ -76.331812, 38.126366 ], [ -76.335243, 38.122848 ], [ -76.335637, 38.122444 ], [ -76.337342, 38.120696 ], [ -76.338161, 38.119856 ], [ -76.338535, 38.119472 ], [ -76.337411, 38.110888 ], [ -76.337402, 38.110820 ], [ -76.331807, 38.101092 ], [ -76.331484, 38.100531 ], [ -76.331240, 38.100106 ], [ -76.330807, 38.099354 ], [ -76.330794, 38.099331 ], [ -76.330787, 38.099201 ], [ -76.329433, 38.073986 ], [ -76.329308, 38.071660 ], [ -76.329165, 38.071247 ], [ -76.325044, 38.059368 ], [ -76.320592, 38.046531 ], [ -76.319476, 38.043315 ], [ -76.321499, 38.038050 ], [ -76.321950, 38.036874 ], [ -76.322093, 38.036503 ], [ -76.326994, 38.045105 ], [ -76.332812, 38.049938 ], [ -76.341172, 38.053596 ], [ -76.341404, 38.053697 ], [ -76.344327, 38.053565 ], [ -76.345697, 38.053502 ], [ -76.350656, 38.053277 ], [ -76.352750, 38.053182 ], [ -76.361237, 38.059542 ], [ -76.361538, 38.060114 ], [ -76.361668, 38.060360 ], [ -76.361779, 38.060570 ], [ -76.369306, 38.074853 ], [ -76.370204, 38.076556 ], [ -76.370845, 38.077771 ], [ -76.371790, 38.079565 ], [ -76.378292, 38.086949 ], [ -76.380991, 38.090014 ], [ -76.381298, 38.090362 ], [ -76.381752, 38.090878 ], [ -76.381842, 38.090981 ], [ -76.383896, 38.093312 ], [ -76.384886, 38.094437 ], [ -76.390917, 38.101286 ], [ -76.391823, 38.102315 ], [ -76.392058, 38.102581 ], [ -76.392335, 38.102896 ], [ -76.393121, 38.103142 ], [ -76.394006, 38.103419 ], [ -76.396478, 38.104192 ], [ -76.397656, 38.104561 ], [ -76.398067, 38.104690 ], [ -76.405368, 38.106974 ], [ -76.405972, 38.106967 ], [ -76.413160, 38.106884 ], [ -76.414475, 38.105943 ], [ -76.414994, 38.105572 ], [ -76.416550, 38.104459 ], [ -76.421066, 38.105989 ], [ -76.421214, 38.106039 ], [ -76.421896, 38.107026 ], [ -76.429384, 38.117875 ], [ -76.429471, 38.118001 ], [ -76.430425, 38.119383 ], [ -76.430412, 38.119488 ], [ -76.430130, 38.121753 ], [ -76.429744, 38.124856 ], [ -76.429581, 38.126165 ], [ -76.437242, 38.135699 ], [ -76.439841, 38.138933 ], [ -76.459236, 38.139471 ], [ -76.459689, 38.139484 ], [ -76.460072, 38.138717 ], [ -76.460673, 38.137515 ], [ -76.465727, 38.127408 ], [ -76.469798, 38.119264 ], [ -76.469795, 38.119061 ], [ -76.469787, 38.118606 ], [ -76.469784, 38.118381 ], [ -76.469760, 38.116874 ], [ -76.469740, 38.115653 ], [ -76.469738, 38.115534 ], [ -76.467333, 38.112546 ], [ -76.466973, 38.112099 ], [ -76.466568, 38.111596 ], [ -76.466404, 38.111392 ], [ -76.466387, 38.111302 ], [ -76.466364, 38.111183 ], [ -76.465892, 38.108738 ], [ -76.465479, 38.106603 ], [ -76.465330, 38.105830 ], [ -76.467879, 38.104932 ], [ -76.473266, 38.103035 ], [ -76.475448, 38.104271 ], [ -76.476222, 38.104709 ], [ -76.478168, 38.109221 ], [ -76.478610, 38.110247 ], [ -76.478797, 38.110680 ], [ -76.478817, 38.110726 ], [ -76.479056, 38.111281 ], [ -76.479799, 38.113005 ], [ -76.481000, 38.115789 ], [ -76.481036, 38.115873 ], [ -76.481050, 38.115889 ], [ -76.481073, 38.115915 ], [ -76.482007, 38.116974 ], [ -76.484030, 38.119266 ], [ -76.485149, 38.120535 ], [ -76.485961, 38.121456 ], [ -76.486274, 38.121810 ], [ -76.486320, 38.121862 ], [ -76.492029, 38.128333 ], [ -76.495040, 38.131746 ], [ -76.497081, 38.134059 ], [ -76.497866, 38.134950 ], [ -76.499018, 38.136255 ], [ -76.499842, 38.137189 ], [ -76.499923, 38.137221 ], [ -76.500332, 38.137381 ], [ -76.501258, 38.137744 ], [ -76.502306, 38.138156 ], [ -76.508825, 38.140713 ], [ -76.514824, 38.141219 ], [ -76.522418, 38.139391 ], [ -76.528990, 38.134708 ], [ -76.529439, 38.134388 ], [ -76.529868, 38.134083 ], [ -76.540380, 38.152991 ], [ -76.545335, 38.165373 ], [ -76.547333, 38.175673 ], [ -76.547455, 38.175923 ], [ -76.547902, 38.176839 ], [ -76.548256, 38.177566 ], [ -76.548946, 38.178982 ], [ -76.552957, 38.187209 ], [ -76.566297, 38.198492 ], [ -76.574440, 38.203751 ], [ -76.588683, 38.212950 ], [ -76.590637, 38.214212 ], [ -76.624387, 38.223429 ], [ -76.625659, 38.223777 ], [ -76.628078, 38.224437 ], [ -76.629703, 38.224881 ], [ -76.629893, 38.224933 ], [ -76.631958, 38.225497 ], [ -76.631997, 38.225508 ], [ -76.632464, 38.225635 ], [ -76.632544, 38.225657 ], [ -76.643929, 38.225080 ], [ -76.643999, 38.225102 ], [ -76.645034, 38.225429 ], [ -76.645166, 38.225470 ], [ -76.659182, 38.229894 ], [ -76.673462, 38.234401 ], [ -76.678687, 38.234259 ], [ -76.687075, 38.234030 ], [ -76.712594, 38.233334 ], [ -76.716139, 38.233237 ], [ -76.716376, 38.233231 ], [ -76.717537, 38.233329 ], [ -76.719602, 38.233503 ], [ -76.740055, 38.235227 ], [ -76.744265, 38.230716 ], [ -76.749384, 38.225231 ], [ -76.752017, 38.222409 ], [ -76.752085, 38.222336 ], [ -76.752286, 38.222121 ], [ -76.769988, 38.226388 ], [ -76.778625, 38.228470 ], [ -76.779865, 38.229026 ], [ -76.791932, 38.234441 ], [ -76.796590, 38.236531 ], [ -76.797452, 38.236918 ], [ -76.811647, 38.250129 ], [ -76.811815, 38.251318 ], [ -76.811927, 38.252115 ], [ -76.809009, 38.252193 ], [ -76.808880, 38.252197 ], [ -76.808411, 38.252209 ], [ -76.805949, 38.252275 ], [ -76.805770, 38.252615 ], [ -76.805224, 38.253648 ], [ -76.802947, 38.275094 ], [ -76.802347, 38.280743 ], [ -76.804922, 38.283300 ], [ -76.805037, 38.283414 ], [ -76.805363, 38.283738 ], [ -76.805470, 38.283844 ], [ -76.806596, 38.284962 ], [ -76.810596, 38.288934 ], [ -76.811182, 38.289516 ], [ -76.815098, 38.293404 ], [ -76.816323, 38.294620 ], [ -76.820799, 38.299064 ], [ -76.821569, 38.299829 ], [ -76.821670, 38.299869 ], [ -76.824834, 38.301130 ], [ -76.824889, 38.301152 ], [ -76.834046, 38.299680 ], [ -76.845846, 38.297783 ], [ -76.846118, 38.297739 ], [ -76.846252, 38.297718 ], [ -76.846221, 38.291960 ], [ -76.846220, 38.291768 ], [ -76.841703, 38.289768 ], [ -76.841241, 38.289564 ], [ -76.840383, 38.289184 ], [ -76.838539, 38.284170 ], [ -76.834908, 38.274299 ], [ -76.834803, 38.274012 ], [ -76.835136, 38.272628 ], [ -76.837697, 38.261990 ], [ -76.837789, 38.261609 ], [ -76.842038, 38.254657 ], [ -76.842139, 38.254491 ], [ -76.843422, 38.254925 ], [ -76.844221, 38.255195 ], [ -76.844885, 38.255420 ], [ -76.846036, 38.255809 ], [ -76.847074, 38.256160 ], [ -76.864292, 38.268945 ], [ -76.866302, 38.269673 ], [ -76.866416, 38.269715 ], [ -76.886535, 38.277004 ], [ -76.908506, 38.288430 ], [ -76.920778, 38.291529 ], [ -76.920932, 38.291568 ], [ -76.922161, 38.311086 ], [ -76.922177, 38.311339 ], [ -76.923629, 38.314932 ], [ -76.924668, 38.316011 ], [ -76.927019, 38.318454 ], [ -76.929554, 38.321088 ], [ -76.942132, 38.329601 ], [ -76.953928, 38.333282 ], [ -76.966349, 38.341372 ], [ -76.975092, 38.347067 ], [ -76.975492, 38.347327 ], [ -76.983582, 38.362999 ], [ -76.986464, 38.382618 ], [ -76.986699, 38.384213 ], [ -76.986996, 38.386237 ], [ -76.987838, 38.391965 ], [ -76.988280, 38.394975 ], [ -76.989271, 38.396352 ], [ -76.989306, 38.396401 ], [ -76.990305, 38.397788 ], [ -76.993839, 38.402699 ], [ -76.996663, 38.406623 ], [ -76.996724, 38.406708 ], [ -76.998585, 38.409294 ], [ -76.998843, 38.410362 ], [ -77.000997, 38.419293 ], [ -77.001541, 38.421548 ], [ -77.001638, 38.421952 ], [ -77.001902, 38.422376 ], [ -77.002570, 38.423447 ], [ -77.006495, 38.429738 ], [ -77.006767, 38.430176 ], [ -77.016371, 38.445572 ], [ -77.016674, 38.445560 ], [ -77.040638, 38.444618 ], [ -77.042046, 38.443983 ], [ -77.042879, 38.443607 ], [ -77.044188, 38.443016 ], [ -77.053187, 38.437753 ], [ -77.053290, 38.437693 ], [ -77.053445, 38.437602 ], [ -77.053663, 38.437475 ], [ -77.053979, 38.437290 ], [ -77.054972, 38.436709 ], [ -77.055162, 38.436598 ], [ -77.055320, 38.436505 ], [ -77.056892, 38.435586 ], [ -77.057277, 38.435361 ], [ -77.057460, 38.435254 ], [ -77.057684, 38.435123 ], [ -77.062607, 38.432244 ], [ -77.074174, 38.425479 ], [ -77.074339, 38.425382 ], [ -77.074703, 38.425170 ], [ -77.075489, 38.424710 ], [ -77.081252, 38.419449 ], [ -77.081418, 38.419297 ], [ -77.086393, 38.414755 ], [ -77.091073, 38.407546 ], [ -77.106571, 38.406237 ], [ -77.106968, 38.406531 ], [ -77.107631, 38.407022 ], [ -77.107881, 38.407207 ], [ -77.109055, 38.408076 ], [ -77.109171, 38.408162 ], [ -77.110586, 38.409210 ], [ -77.110623, 38.409214 ], [ -77.123325, 38.410646 ], [ -77.125933, 38.404845 ], [ -77.127392, 38.401600 ], [ -77.127737, 38.400833 ], [ -77.128377, 38.400190 ], [ -77.128649, 38.399917 ], [ -77.128823, 38.399742 ], [ -77.128872, 38.399692 ], [ -77.129090, 38.399474 ], [ -77.130287, 38.398271 ], [ -77.135224, 38.393311 ], [ -77.136434, 38.392094 ], [ -77.136728, 38.391799 ], [ -77.136947, 38.391684 ], [ -77.139968, 38.390102 ], [ -77.143152, 38.388435 ], [ -77.147541, 38.386136 ], [ -77.163531, 38.377761 ], [ -77.168697, 38.375055 ], [ -77.177000, 38.370706 ], [ -77.179800, 38.369239 ], [ -77.182638, 38.367753 ], [ -77.183268, 38.367423 ], [ -77.184917, 38.366559 ], [ -77.186680, 38.365636 ], [ -77.189412, 38.364872 ], [ -77.205009, 38.360511 ], [ -77.207214, 38.359894 ], [ -77.207312, 38.359867 ], [ -77.207371, 38.359888 ], [ -77.208334, 38.360224 ], [ -77.212189, 38.361572 ], [ -77.216729, 38.363159 ], [ -77.216834, 38.363221 ], [ -77.236231, 38.374601 ], [ -77.250172, 38.382781 ], [ -77.250862, 38.384325 ], [ -77.251220, 38.385127 ], [ -77.253202, 38.389567 ], [ -77.256412, 38.396755 ], [ -77.257177, 38.398470 ], [ -77.261937, 38.409131 ], [ -77.264238, 38.414282 ], [ -77.261290, 38.423670 ], [ -77.259962, 38.427902 ], [ -77.259962, 38.435821 ], [ -77.260760, 38.438394 ], [ -77.263682, 38.447810 ], [ -77.266845, 38.458004 ], [ -77.269474, 38.466476 ], [ -77.274021, 38.481127 ], [ -77.274170, 38.481608 ], [ -77.274220, 38.481770 ], [ -77.274125, 38.482044 ], [ -77.271099, 38.490753 ], [ -77.263599, 38.512344 ], [ -77.257378, 38.521847 ], [ -77.254882, 38.525660 ], [ -77.246089, 38.539093 ], [ -77.242736, 38.544214 ], [ -77.237724, 38.551870 ], [ -77.236728, 38.552071 ], [ -77.226465, 38.554139 ], [ -77.221117, 38.555217 ], [ -77.209905, 38.568870 ], [ -77.205261, 38.574525 ], [ -77.183767, 38.600699 ], [ -77.175969, 38.604113 ], [ -77.169968, 38.606740 ], [ -77.169671, 38.606870 ], [ -77.167523, 38.606740 ], [ -77.163945, 38.606524 ], [ -77.163409, 38.606492 ], [ -77.163160, 38.606477 ], [ -77.162649, 38.606446 ], [ -77.161585, 38.606381 ], [ -77.148651, 38.605600 ], [ -77.146087, 38.606748 ], [ -77.135539, 38.611473 ], [ -77.129213, 38.614306 ], [ -77.129084, 38.614364 ], [ -77.128841, 38.614660 ], [ -77.126340, 38.617700 ], [ -77.125191, 38.619096 ], [ -77.124630, 38.619778 ], [ -77.130200, 38.635017 ], [ -77.135901, 38.649817 ], [ -77.132501, 38.673816 ], [ -77.121101, 38.686616 ], [ -77.105900, 38.696815 ], [ -77.086113, 38.705792 ], [ -77.074599, 38.711015 ], [ -77.059910, 38.734419 ], [ -77.041398, 38.763914 ], [ -77.039239, 38.785200 ], [ -77.038598, 38.791513 ], [ -77.024392, 38.802970 ], [ -77.001397, 38.821513 ], [ -76.953696, 38.858512 ], [ -76.949696, 38.861312 ], [ -76.920195, 38.884412 ], [ -76.919295, 38.885112 ], [ -76.910795, 38.891712 ], [ -76.909395, 38.892812 ], [ -76.941722, 38.918019 ], [ -77.002498, 38.965410 ], [ -77.002636, 38.965521 ], [ -77.008298, 38.970110 ], [ -77.013798, 38.974410 ], [ -77.015598, 38.975910 ], [ -77.036299, 38.991710 ], [ -77.040999, 38.995110 ], [ -77.054299, 38.985110 ], [ -77.100700, 38.948910 ], [ -77.119900, 38.934311 ], [ -77.137701, 38.955310 ], [ -77.148179, 38.965002 ], [ -77.166901, 38.968110 ], [ -77.197502, 38.966810 ], [ -77.221502, 38.971310 ], [ -77.235403, 38.976610 ], [ -77.249803, 38.985909 ], [ -77.255703, 39.002409 ], [ -77.251803, 39.011409 ], [ -77.261403, 39.031009 ], [ -77.291605, 39.045408 ], [ -77.328002, 39.058554 ], [ -77.340287, 39.062991 ], [ -77.375079, 39.061297 ], [ -77.423180, 39.066878 ], [ -77.458202, 39.073723 ], [ -77.519929, 39.120925 ], [ -77.524559, 39.127821 ], [ -77.527282, 39.146236 ], [ -77.516426, 39.170891 ], [ -77.510631, 39.178484 ], [ -77.505162, 39.182050 ], [ -77.485971, 39.185665 ], [ -77.478596, 39.189168 ], [ -77.458884, 39.219826 ], [ -77.458779, 39.220280 ], [ -77.457680, 39.225020 ], [ -77.460210, 39.228359 ], [ -77.484605, 39.245941 ], [ -77.511222, 39.253500 ], [ -77.534461, 39.262361 ], [ -77.543228, 39.266937 ], [ -77.545846, 39.271535 ], [ -77.560854, 39.286152 ], [ -77.592739, 39.301290 ], [ -77.667749, 39.318129 ], [ -77.677505, 39.318699 ], [ -77.719029, 39.321125 ], [ -77.727379, 39.321666 ], [ -77.755789, 39.333899 ], [ -77.760586, 39.338864 ], [ -77.760435, 39.344171 ], [ -77.739204, 39.385730 ], [ -77.765442, 39.428574 ], [ -77.807821, 39.490241 ], [ -77.825411, 39.494036 ], [ -77.845105, 39.498285 ], [ -77.865423, 39.516472 ], [ -77.888945, 39.555950 ], [ -77.886135, 39.560432 ], [ -77.884536, 39.568174 ], [ -77.902649, 39.587796 ], [ -77.946442, 39.584910 ], [ -78.009985, 39.602893 ], [ -78.023427, 39.619860 ], [ -78.035992, 39.635720 ], [ -78.074595, 39.666686 ], [ -78.107834, 39.682137 ], [ -78.143478, 39.690412 ], [ -78.176625, 39.695967 ], [ -78.182759, 39.695110 ], [ -78.191107, 39.690262 ], [ -78.224337, 39.663270 ], [ -78.271122, 39.619642 ], [ -78.283039, 39.620470 ], [ -78.313033, 39.631001 ], [ -78.334044, 39.635770 ], [ -78.355218, 39.640576 ], [ -78.430250, 39.623290 ], [ -78.457187, 39.587379 ], [ -78.458456, 39.581158 ], [ -78.454376, 39.574319 ], [ -78.450207, 39.570889 ], [ -78.432033, 39.561053 ], [ -78.436939, 39.538959 ], [ -78.468639, 39.516789 ], [ -78.565929, 39.519444 ], [ -78.655984, 39.534695 ], [ -78.657324, 39.535087 ], [ -78.676219, 39.540622 ], [ -78.689455, 39.545770 ], [ -78.760196, 39.582154 ], [ -78.767490, 39.587487 ], [ -78.772048, 39.593833 ], [ -78.769029, 39.599871 ], [ -78.760497, 39.609984 ], [ -78.787461, 39.627492 ], [ -78.824788, 39.590233 ], [ -78.874744, 39.522611 ], [ -78.968996, 39.441543 ], [ -79.025681, 39.465539 ], [ -79.042440, 39.479339 ], [ -79.067072, 39.474658 ], [ -79.084450, 39.471356 ], [ -79.201676, 39.379726 ], [ -79.213192, 39.367897 ], [ -79.256880, 39.356077 ], [ -79.280039, 39.340076 ], [ -79.378687, 39.271920 ], [ -79.402911, 39.250106 ], [ -79.486873, 39.205961 ], [ -79.485874, 39.264905 ], [ -79.486179, 39.264970 ], [ -79.486737, 39.278149 ], [ -79.487651, 39.279933 ], [ -79.482648, 39.521364 ], [ -79.482354, 39.524682 ], [ -79.478866, 39.531689 ], [ -79.476662, 39.721078 ], [ -79.392458, 39.721340 ], [ -78.931176, 39.722775 ], [ -78.931175, 39.722775 ], [ -78.808387, 39.722726 ], [ -78.380599, 39.722554 ], [ -78.342834, 39.722539 ], [ -78.342520, 39.722539 ], [ -78.340498, 39.722514 ], [ -78.339539, 39.722552 ], [ -78.337111, 39.722461 ], [ -78.330715, 39.722689 ], [ -78.269020, 39.722613 ], [ -78.268948, 39.722590 ], [ -78.243103, 39.722481 ], [ -78.240334, 39.722498 ], [ -78.204450, 39.722520 ], [ -78.202895, 39.722416 ], [ -78.099140, 39.722322 ], [ -78.075771, 39.722301 ], [ -78.073736, 39.722314 ], [ -77.768534, 39.721358 ], [ -77.743204, 39.721205 ], [ -77.732615, 39.721094 ], [ -77.724115, 39.720894 ], [ -77.674522, 39.720847 ], [ -77.672249, 39.720778 ], [ -77.534758, 39.720134 ], [ -77.533371, 39.720165 ], [ -77.469145, 39.720018 ], [ -77.459427, 39.720017 ], [ -77.243307, 39.719998 ], [ -77.239807, 39.719998 ], [ -77.217024, 39.719998 ], [ -77.216806, 39.719998 ], [ -77.058904, 39.720100 ], [ -77.058204, 39.720200 ], [ -77.047104, 39.720000 ], [ -76.999465, 39.720128 ], [ -76.897566, 39.720401 ], [ -76.890100, 39.720401 ], [ -76.809197, 39.720702 ], [ -76.806397, 39.720602 ], [ -76.787097, 39.720802 ], [ -76.787096, 39.720802 ], [ -76.715594, 39.721103 ], [ -76.711894, 39.721103 ], [ -76.569475, 39.721203 ], [ -76.569389, 39.721203 ], [ -76.517087, 39.721304 ], [ -76.491887, 39.721304 ], [ -76.418784, 39.721204 ], [ -76.418684, 39.721304 ], [ -76.395583, 39.721204 ], [ -76.380583, 39.721304 ], [ -76.380083, 39.721304 ], [ -76.239805, 39.721305 ], [ -76.233277, 39.721305 ], [ -76.233259, 39.721305 ], [ -76.224191, 39.721328 ], [ -76.135584, 39.721556 ], [ -76.027618, 39.721833 ], [ -76.013067, 39.721920 ], [ -75.810068, 39.721906 ], [ -75.799563, 39.721882 ], [ -75.788359, 39.721811 ], [ -75.788395, 39.700287 ], [ -75.788395, 39.700031 ], [ -75.788658, 39.681911 ], [ -75.788616, 39.680742 ], [ -75.787450, 39.637455 ], [ -75.786890, 39.630575 ], [ -75.779383, 39.536522 ], [ -75.779240, 39.534737 ], [ -75.766693, 39.377537 ], [ -75.766667, 39.377216 ], [ -75.760104, 39.296817 ], [ -75.755962, 39.246069 ], [ -75.755953, 39.245958 ], [ -75.747671, 39.143345 ], [ -75.747668, 39.143306 ], [ -75.746121, 39.120318 ], [ -75.745793, 39.114935 ], [ -75.725829, 38.869296 ], [ -75.725565, 38.868152 ], [ -75.724061, 38.847781 ], [ -75.724002, 38.846682 ], [ -75.722882, 38.833156 ], [ -75.722610, 38.830008 ], [ -75.722599, 38.829859 ], [ -75.722028, 38.822078 ], [ -75.707352, 38.635359 ], [ -75.707346, 38.635280 ], [ -75.706585, 38.626125 ], [ -75.706235, 38.621296 ], [ -75.705860, 38.616268 ], [ -75.705774, 38.614740 ], [ -75.703981, 38.592066 ], [ -75.703445, 38.585120 ], [ -75.701565, 38.560736 ], [ -75.701465, 38.559433 ], [ -75.700179, 38.542717 ], [ -75.698777, 38.522001 ], [ -75.696688, 38.496467 ], [ -75.696369, 38.492373 ], [ -75.693521, 38.460128 ], [ -75.665585, 38.458900 ], [ -75.662843, 38.458759 ], [ -75.630457, 38.457904 ], [ -75.598069, 38.456855 ], [ -75.593082, 38.456404 ], [ -75.589307, 38.456286 ], [ -75.583601, 38.456424 ], [ -75.574110, 38.455991 ], [ -75.559934, 38.455579 ], [ -75.559212, 38.455563 ], [ -75.533763, 38.454958 ], [ -75.522730, 38.454657 ], [ -75.521304, 38.454657 ], [ -75.502961, 38.454220 ], [ -75.500142, 38.454144 ], [ -75.479150, 38.453699 ], [ -75.428728, 38.452671 ], [ -75.424831, 38.452610 ], [ -75.410884, 38.452400 ], [ -75.394786, 38.452160 ], [ -75.393563, 38.452114 ], [ -75.371054, 38.452107 ], [ -75.355797, 38.452008 ], [ -75.341250, 38.451970 ], [ -75.341247, 38.451970 ], [ -75.260350, 38.451492 ], [ -75.252723, 38.451397 ], [ -75.185413, 38.451013 ], [ -75.141894, 38.451196 ], [ -75.089649, 38.451254 ], [ -75.088281, 38.451256 ], [ -75.085814, 38.451258 ], [ -75.070356, 38.451276 ], [ -75.069909, 38.451276 ], [ -75.066327, 38.451291 ], [ -75.053483, 38.451274 ], [ -75.052510, 38.451273 ], [ -75.049268, 38.451264 ], [ -75.048939, 38.451263 ], [ -75.049365, 38.448518 ], [ -75.049442, 38.448023 ], [ -75.049582, 38.447117 ], [ -75.051997, 38.431549 ], [ -75.052008, 38.431479 ], [ -75.052167, 38.430457 ], [ -75.052206, 38.430206 ], [ -75.052226, 38.430077 ], [ -75.052368, 38.429159 ], [ -75.052426, 38.428784 ], [ -75.052467, 38.428521 ], [ -75.052471, 38.428493 ], [ -75.052505, 38.428275 ], [ -75.052746, 38.426720 ], [ -75.052804, 38.426349 ], [ -75.052820, 38.426243 ], [ -75.053100, 38.424441 ], [ -75.053137, 38.424201 ], [ -75.053277, 38.423297 ], [ -75.053309, 38.423095 ], [ -75.054591, 38.414830 ], [ -75.055838, 38.410164 ], [ -75.056000, 38.409560 ], [ -75.056182, 38.408876 ], [ -75.057288, 38.404738 ], [ -75.061370, 38.389466 ], [ -75.068111, 38.368716 ], [ -75.068162, 38.368559 ], [ -75.068404, 38.367812 ], [ -75.068548, 38.367370 ], [ -75.068559, 38.367335 ], [ -75.069817, 38.363463 ], [ -75.069845, 38.363376 ], [ -75.071329, 38.358809 ], [ -75.071632, 38.357876 ], [ -75.071687, 38.357707 ], [ -75.071694, 38.357686 ], [ -75.072111, 38.356402 ], [ -75.072476, 38.355278 ], [ -75.073852, 38.352006 ], [ -75.074532, 38.350390 ], [ -75.084149, 38.327526 ], [ -75.085171, 38.325096 ], [ -75.085327, 38.324724 ], [ -75.085468, 38.324389 ], [ -75.085518, 38.324270 ], [ -75.087466, 38.322769 ], [ -75.092142, 38.323252 ], [ -75.093888, 38.323432 ], [ -75.102947, 38.311525 ], [ -75.103757, 38.309349 ], [ -75.116837, 38.274229 ], [ -75.143229, 38.220475 ], [ -75.155351, 38.192572 ], [ -75.158970, 38.184242 ], [ -75.161640, 38.176383 ], [ -75.177394, 38.130014 ], [ -75.178945, 38.126798 ], [ -75.192925, 38.097819 ], [ -75.193796, 38.096013 ], [ -75.195382, 38.093582 ], [ -75.204684, 38.079317 ], [ -75.204911, 38.078970 ], [ -75.206515, 38.076510 ], [ -75.216117, 38.061786 ], [ -75.224340, 38.050912 ], [ -75.227592, 38.046612 ], [ -75.235860, 38.035679 ], [ -75.236065, 38.035409 ], [ -75.237538, 38.033461 ], [ -75.241817, 38.027802 ], [ -75.242266, 38.027209 ], [ -75.242296, 38.027206 ], [ -75.250358, 38.026489 ], [ -75.256076, 38.025980 ], [ -75.260635, 38.025574 ], [ -75.262088, 38.025445 ], [ -75.263779, 38.025295 ], [ -75.377851, 38.015145 ], [ -75.398839, 38.013277 ], [ -75.428810, 38.010854 ], [ -75.435956, 38.010282 ], [ -75.624341, 37.994211 ], [ -75.626129, 37.992500 ], [ -75.630222, 37.988584 ], [ -75.635502, 37.983531 ], [ -75.639786, 37.979432 ], [ -75.644545, 37.974877 ], [ -75.644591, 37.974833 ], [ -75.644665, 37.974763 ], [ -75.645096, 37.974350 ], [ -75.645251, 37.974202 ], [ -75.646289, 37.973209 ], [ -75.646507, 37.973000 ], [ -75.660956, 37.959174 ], [ -75.669711, 37.950796 ], [ -75.665057, 37.956282 ], [ -75.663095, 37.961195 ], [ -75.665020, 37.962401 ], [ -75.669374, 37.965130 ], [ -75.671681, 37.966576 ], [ -75.685995, 37.967607 ], [ -75.686525, 37.967783 ], [ -75.708179, 37.974972 ], [ -75.713150, 37.976623 ], [ -75.722085, 37.973416 ], [ -75.722662, 37.971310 ], [ -75.724692, 37.969754 ], [ -75.725330, 37.969266 ], [ -75.727952, 37.967256 ], [ -75.735125, 37.964592 ], [ -75.737514, 37.963705 ], [ -75.737997, 37.963526 ], [ -75.750244, 37.968873 ], [ -75.759091, 37.970663 ], [ -75.776773, 37.972044 ], [ -75.778975, 37.972216 ], [ -75.783444, 37.972565 ], [ -75.783815, 37.972594 ], [ -75.785007, 37.971714 ], [ -75.785209, 37.971564 ], [ -75.785273, 37.971517 ], [ -75.785487, 37.971359 ], [ -75.788351, 37.969244 ], [ -75.789943, 37.968068 ], [ -75.806147, 37.956100 ], [ -75.806930, 37.955522 ], [ -75.807755, 37.954912 ], [ -75.819088, 37.946542 ], [ -75.820774, 37.945297 ], [ -75.822901, 37.943726 ], [ -75.824242, 37.942736 ], [ -75.824448, 37.942584 ], [ -75.829901, 37.938556 ], [ -75.830154, 37.938028 ], [ -75.831707, 37.934789 ], [ -75.831836, 37.934519 ], [ -75.832414, 37.933313 ], [ -75.832793, 37.933112 ], [ -75.843768, 37.927297 ], [ -75.845992, 37.926118 ], [ -75.846621, 37.925785 ], [ -75.847207, 37.925474 ], [ -75.847473, 37.925333 ], [ -75.847817, 37.925151 ], [ -75.847933, 37.925089 ], [ -75.848133, 37.924983 ], [ -75.849103, 37.924470 ], [ -75.860727, 37.918310 ], [ -75.881913, 37.912563 ], [ -75.883708, 37.912076 ], [ -75.885032, 37.911717 ], [ -75.892686, 37.916848 ], [ -75.895791, 37.921406 ], [ -75.895940, 37.921625 ], [ -75.898316, 37.925114 ], [ -75.894065, 37.930790 ], [ -75.893655, 37.933879 ], [ -75.892810, 37.940239 ], [ -75.890871, 37.954847 ], [ -75.898956, 37.974514 ], [ -75.882768, 38.002995 ], [ -75.875297, 38.011965 ], [ -75.875399, 38.028241 ], [ -75.873190, 38.034375 ], [ -75.869513, 38.035407 ], [ -75.865912, 38.036418 ], [ -75.864648, 38.036773 ], [ -75.858891, 38.038390 ], [ -75.857507, 38.038778 ], [ -75.856854, 38.038583 ], [ -75.855468, 38.038170 ], [ -75.854711, 38.037944 ], [ -75.852655, 38.037331 ], [ -75.850531, 38.036697 ], [ -75.850343, 38.035877 ], [ -75.849980, 38.034294 ], [ -75.847922, 38.034370 ], [ -75.847716, 38.034468 ], [ -75.836018, 38.040007 ], [ -75.834643, 38.040657 ], [ -75.833657, 38.041125 ], [ -75.833418, 38.041238 ], [ -75.830023, 38.042845 ], [ -75.829375, 38.043152 ], [ -75.829276, 38.043247 ], [ -75.826492, 38.045915 ], [ -75.825987, 38.046400 ], [ -75.812913, 38.058932 ], [ -75.813378, 38.059481 ], [ -75.813468, 38.059587 ], [ -75.819415, 38.066606 ], [ -75.819479, 38.066682 ], [ -75.819591, 38.066814 ], [ -75.830017, 38.069120 ], [ -75.831103, 38.069361 ], [ -75.832742, 38.069723 ], [ -75.839935, 38.071314 ], [ -75.841057, 38.071562 ], [ -75.841206, 38.071595 ], [ -75.844265, 38.072272 ], [ -75.847180, 38.071289 ], [ -75.852305, 38.069561 ], [ -75.858944, 38.067323 ], [ -75.859026, 38.067208 ], [ -75.859568, 38.066448 ], [ -75.860072, 38.065743 ], [ -75.859717, 38.064073 ], [ -75.859440, 38.062769 ], [ -75.859281, 38.062018 ], [ -75.859005, 38.060717 ], [ -75.858881, 38.060135 ], [ -75.860629, 38.059960 ], [ -75.860946, 38.059928 ], [ -75.861033, 38.059919 ], [ -75.861530, 38.059870 ], [ -75.866194, 38.059402 ], [ -75.867267, 38.059295 ], [ -75.867511, 38.059270 ], [ -75.868899, 38.059131 ], [ -75.871503, 38.058870 ], [ -75.874189, 38.060288 ], [ -75.880515, 38.075011 ], [ -75.871394, 38.089183 ], [ -75.870282, 38.090911 ], [ -75.865697, 38.098036 ], [ -75.865146, 38.098893 ], [ -75.863810, 38.100968 ], [ -75.842604, 38.113111 ], [ -75.837563, 38.113753 ], [ -75.837204, 38.114468 ], [ -75.837165, 38.114546 ], [ -75.837048, 38.114777 ], [ -75.827993, 38.132803 ], [ -75.827892, 38.133004 ], [ -75.827674, 38.133438 ], [ -75.827712, 38.133464 ], [ -75.843862, 38.144599 ], [ -75.849919, 38.144414 ], [ -75.854507, 38.142567 ], [ -75.858667, 38.140893 ], [ -75.859540, 38.140542 ], [ -75.866000, 38.134886 ], [ -75.868636, 38.134381 ], [ -75.870056, 38.134684 ], [ -75.871037, 38.134893 ], [ -75.880707, 38.136957 ], [ -75.880978, 38.137015 ], [ -75.900355, 38.141150 ], [ -75.901058, 38.140826 ], [ -75.902004, 38.140390 ], [ -75.903442, 38.139726 ], [ -75.905599, 38.138732 ], [ -75.906497, 38.138317 ], [ -75.907264, 38.137964 ], [ -75.923797, 38.130339 ], [ -75.932738, 38.126216 ], [ -75.936773, 38.124355 ], [ -75.937089, 38.124209 ], [ -75.937055, 38.123077 ], [ -75.937015, 38.121749 ], [ -75.936866, 38.116745 ], [ -75.936663, 38.109956 ], [ -75.938484, 38.109976 ], [ -75.945297, 38.113091 ], [ -75.949557, 38.118127 ], [ -75.956428, 38.131115 ], [ -75.956434, 38.131126 ], [ -75.958786, 38.135572 ], [ -75.959496, 38.136915 ], [ -75.959616, 38.137141 ], [ -75.952411, 38.158513 ], [ -75.951425, 38.161436 ], [ -75.951273, 38.161887 ], [ -75.949752, 38.164486 ], [ -75.947534, 38.168274 ], [ -75.947487, 38.168736 ], [ -75.947417, 38.169439 ], [ -75.947280, 38.170792 ], [ -75.948129, 38.171778 ], [ -75.948220, 38.171884 ], [ -75.948566, 38.172285 ], [ -75.948709, 38.172451 ], [ -75.951812, 38.176053 ], [ -75.951972, 38.176239 ], [ -75.951850, 38.176794 ], [ -75.951583, 38.178014 ], [ -75.951566, 38.178093 ], [ -75.949575, 38.180037 ], [ -75.949420, 38.180188 ], [ -75.948891, 38.180704 ], [ -75.948738, 38.180854 ], [ -75.946586, 38.182955 ], [ -75.945419, 38.184094 ], [ -75.942375, 38.187066 ], [ -75.941448, 38.187352 ], [ -75.933932, 38.189670 ], [ -75.888073, 38.203813 ], [ -75.886217, 38.203309 ], [ -75.884940, 38.200493 ], [ -75.884603, 38.199751 ], [ -75.884544, 38.199739 ], [ -75.878293, 38.198407 ], [ -75.877751, 38.198292 ], [ -75.877250, 38.198386 ], [ -75.870975, 38.199566 ], [ -75.868470, 38.200037 ], [ -75.864104, 38.200858 ], [ -75.862444, 38.201759 ], [ -75.856960, 38.204734 ], [ -75.854406, 38.206120 ], [ -75.852258, 38.207286 ], [ -75.848473, 38.209340 ], [ -75.847299, 38.209977 ], [ -75.847032, 38.210122 ], [ -75.846713, 38.210295 ], [ -75.846377, 38.210477 ], [ -75.851396, 38.226432 ], [ -75.851528, 38.226550 ], [ -75.859160, 38.233407 ], [ -75.864628, 38.238320 ], [ -75.870310, 38.243425 ], [ -75.870318, 38.243432 ], [ -75.872464, 38.243968 ], [ -75.874653, 38.244514 ], [ -75.882873, 38.244449 ], [ -75.883435, 38.244445 ], [ -75.885200, 38.243395 ], [ -75.886841, 38.242418 ], [ -75.887409, 38.242080 ], [ -75.888513, 38.241423 ], [ -75.889356, 38.239500 ], [ -75.885676, 38.231006 ], [ -75.885909, 38.230866 ], [ -75.890669, 38.228009 ], [ -75.894583, 38.228439 ], [ -75.895689, 38.228561 ], [ -75.895879, 38.228717 ], [ -75.899781, 38.231921 ], [ -75.900040, 38.232133 ], [ -75.900661, 38.233206 ], [ -75.901381, 38.234448 ], [ -75.905852, 38.242165 ], [ -75.906016, 38.242447 ], [ -75.908450, 38.246648 ], [ -75.908272, 38.252045 ], [ -75.911143, 38.257951 ], [ -75.917297, 38.263126 ], [ -75.919446, 38.264056 ], [ -75.920279, 38.264415 ], [ -75.925492, 38.266670 ], [ -75.938577, 38.272329 ], [ -75.940302, 38.271611 ], [ -75.942462, 38.270711 ], [ -75.942703, 38.270611 ], [ -75.948346, 38.268261 ], [ -75.951360, 38.267006 ], [ -75.951497, 38.266949 ], [ -75.951512, 38.266936 ], [ -75.951563, 38.266892 ], [ -75.951647, 38.266819 ], [ -75.954483, 38.264366 ], [ -75.954568, 38.264293 ], [ -75.954701, 38.264177 ], [ -75.954737, 38.264146 ], [ -75.954824, 38.264071 ], [ -75.954908, 38.263998 ], [ -75.954908, 38.263997 ], [ -75.954810, 38.261016 ], [ -75.954582, 38.254108 ], [ -75.954561, 38.253476 ], [ -75.954542, 38.252894 ], [ -75.950056, 38.249699 ], [ -75.949458, 38.249273 ], [ -75.948796, 38.248802 ], [ -75.947876, 38.248875 ], [ -75.945678, 38.249051 ], [ -75.944500, 38.249145 ], [ -75.943032, 38.248279 ], [ -75.942465, 38.247945 ], [ -75.942263, 38.247826 ], [ -75.940697, 38.246902 ], [ -75.941190, 38.246211 ], [ -75.942804, 38.243949 ], [ -75.946414, 38.238890 ], [ -75.948197, 38.238504 ], [ -75.951156, 38.237862 ], [ -75.955164, 38.236994 ], [ -75.955833, 38.236849 ], [ -75.958338, 38.236306 ], [ -75.958794, 38.236208 ], [ -75.961972, 38.235519 ], [ -75.962111, 38.235489 ], [ -75.962729, 38.235355 ], [ -75.962931, 38.235311 ], [ -75.970514, 38.233668 ], [ -75.971487, 38.233457 ], [ -75.972212, 38.233300 ], [ -75.970400, 38.235043 ], [ -75.970115, 38.235317 ], [ -75.969383, 38.236021 ], [ -75.969326, 38.236076 ], [ -75.964528, 38.240692 ], [ -75.964119, 38.241085 ], [ -75.963969, 38.241598 ], [ -75.962235, 38.247540 ], [ -75.963453, 38.251793 ], [ -75.984274, 38.265155 ], [ -75.985815, 38.276466 ], [ -75.987814, 38.279287 ], [ -75.988731, 38.280581 ], [ -75.990385, 38.282915 ], [ -75.991162, 38.283894 ], [ -75.991687, 38.284555 ], [ -75.992669, 38.285792 ], [ -75.992829, 38.285994 ], [ -75.993391, 38.286702 ], [ -76.000241, 38.295331 ], [ -76.004010, 38.300079 ], [ -76.007118, 38.303994 ], [ -76.007254, 38.304165 ], [ -76.007375, 38.304318 ], [ -76.007478, 38.304351 ], [ -76.011245, 38.305572 ], [ -76.011458, 38.305640 ], [ -76.016291, 38.307206 ], [ -76.016314, 38.307247 ], [ -76.016514, 38.307600 ], [ -76.017308, 38.309007 ], [ -76.017364, 38.309106 ], [ -76.009377, 38.311997 ], [ -76.008647, 38.312261 ], [ -75.991151, 38.314110 ], [ -75.990485, 38.314181 ], [ -75.986025, 38.314652 ], [ -75.984784, 38.314783 ], [ -75.984433, 38.314821 ], [ -75.983186, 38.314952 ], [ -75.983171, 38.314954 ], [ -75.982523, 38.315022 ], [ -75.981345, 38.315147 ], [ -75.969577, 38.320044 ], [ -75.969290, 38.320164 ], [ -75.968880, 38.320498 ], [ -75.964237, 38.324285 ], [ -75.961944, 38.332572 ], [ -75.961945, 38.335830 ], [ -75.961946, 38.336018 ], [ -75.961948, 38.341431 ], [ -75.965366, 38.348429 ], [ -75.966397, 38.350540 ], [ -75.968881, 38.355623 ], [ -75.969161, 38.356197 ], [ -75.970840, 38.359635 ], [ -75.971019, 38.360002 ], [ -75.971541, 38.361069 ], [ -75.971910, 38.361826 ], [ -75.972174, 38.362365 ], [ -75.972281, 38.362584 ], [ -75.973876, 38.365850 ], [ -75.979727, 38.367627 ], [ -75.980180, 38.367765 ], [ -75.980829, 38.367962 ], [ -75.995706, 38.372480 ], [ -76.001839, 38.374343 ], [ -76.002156, 38.374439 ], [ -76.002282, 38.374477 ], [ -76.004946, 38.372045 ], [ -76.006949, 38.370216 ], [ -76.011869, 38.360582 ], [ -76.012149, 38.357077 ], [ -76.011033, 38.354844 ], [ -76.010737, 38.354251 ], [ -76.010255, 38.353287 ], [ -76.010217, 38.353211 ], [ -76.010366, 38.352732 ], [ -76.010437, 38.352504 ], [ -76.016682, 38.332429 ], [ -76.033947, 38.323211 ], [ -76.041431, 38.322163 ], [ -76.041618, 38.322137 ], [ -76.041659, 38.322097 ], [ -76.043180, 38.320610 ], [ -76.043923, 38.319884 ], [ -76.044649, 38.319175 ], [ -76.045057, 38.318776 ], [ -76.045599, 38.318246 ], [ -76.045964, 38.317452 ], [ -76.046367, 38.316576 ], [ -76.047401, 38.314329 ], [ -76.047992, 38.313044 ], [ -76.048637, 38.311643 ], [ -76.048965, 38.310930 ], [ -76.049207, 38.310404 ], [ -76.049523, 38.309718 ], [ -76.049580, 38.309594 ], [ -76.049609, 38.309348 ], [ -76.049647, 38.309017 ], [ -76.050220, 38.304101 ], [ -76.047147, 38.301582 ], [ -76.040019, 38.295738 ], [ -76.030532, 38.287960 ], [ -76.028234, 38.282035 ], [ -76.027557, 38.280288 ], [ -76.027487, 38.280108 ], [ -76.032595, 38.268875 ], [ -76.032664, 38.268722 ], [ -76.032771, 38.268487 ], [ -76.032998, 38.267989 ], [ -76.033610, 38.266644 ], [ -76.033737, 38.266363 ], [ -76.038935, 38.254932 ], [ -76.039738, 38.254093 ], [ -76.043927, 38.249712 ], [ -76.044251, 38.249373 ], [ -76.044141, 38.243447 ], [ -76.044108, 38.241682 ], [ -76.043814, 38.241294 ], [ -76.037960, 38.233551 ], [ -76.037109, 38.232426 ], [ -76.037103, 38.232418 ], [ -76.036102, 38.231094 ], [ -76.035695, 38.230556 ], [ -76.033455, 38.222046 ], [ -76.033338, 38.221599 ], [ -76.032044, 38.216684 ], [ -76.058010, 38.227079 ], [ -76.069502, 38.238455 ], [ -76.070831, 38.241836 ], [ -76.071154, 38.242657 ], [ -76.073493, 38.248609 ], [ -76.073725, 38.249200 ], [ -76.074491, 38.251148 ], [ -76.074515, 38.251208 ], [ -76.074568, 38.251344 ], [ -76.074607, 38.251443 ], [ -76.074726, 38.251745 ], [ -76.074760, 38.251832 ], [ -76.074897, 38.252181 ], [ -76.082268, 38.252616 ], [ -76.082549, 38.252633 ], [ -76.089797, 38.253061 ], [ -76.092417, 38.253216 ], [ -76.092723, 38.253234 ], [ -76.094689, 38.253350 ], [ -76.099720, 38.253647 ], [ -76.107592, 38.262525 ], [ -76.102549, 38.277153 ], [ -76.111296, 38.286946 ], [ -76.126940, 38.283751 ], [ -76.131085, 38.282904 ], [ -76.137238, 38.281648 ], [ -76.137442, 38.281606 ], [ -76.138479, 38.281394 ], [ -76.138524, 38.281385 ], [ -76.138596, 38.281406 ], [ -76.140674, 38.282006 ], [ -76.140947, 38.282085 ], [ -76.143127, 38.282714 ], [ -76.149398, 38.284525 ], [ -76.149876, 38.284663 ], [ -76.160474, 38.290983 ], [ -76.160838, 38.290948 ], [ -76.161348, 38.290898 ], [ -76.166154, 38.290431 ], [ -76.173418, 38.285326 ], [ -76.173555, 38.285230 ], [ -76.173844, 38.284869 ], [ -76.174011, 38.284659 ], [ -76.174104, 38.284543 ], [ -76.174152, 38.284483 ], [ -76.174484, 38.284068 ], [ -76.174598, 38.283924 ], [ -76.174683, 38.283818 ], [ -76.180115, 38.277019 ], [ -76.180165, 38.276956 ], [ -76.180103, 38.276739 ], [ -76.179123, 38.273291 ], [ -76.178282, 38.270336 ], [ -76.175783, 38.261551 ], [ -76.171254, 38.256984 ], [ -76.164388, 38.250061 ], [ -76.163249, 38.248913 ], [ -76.146297, 38.249678 ], [ -76.135169, 38.245872 ], [ -76.134980, 38.245807 ], [ -76.132544, 38.244974 ], [ -76.130952, 38.244430 ], [ -76.126623, 38.242949 ], [ -76.126453, 38.242046 ], [ -76.125856, 38.238880 ], [ -76.125756, 38.238348 ], [ -76.128452, 38.235704 ], [ -76.128898, 38.235267 ], [ -76.131332, 38.232880 ], [ -76.140068, 38.231305 ], [ -76.151035, 38.234215 ], [ -76.173350, 38.247037 ], [ -76.188644, 38.267434 ], [ -76.189627, 38.272487 ], [ -76.189655, 38.272633 ], [ -76.190531, 38.277139 ], [ -76.197155, 38.285220 ], [ -76.197693, 38.285877 ], [ -76.197871, 38.286094 ], [ -76.201591, 38.290633 ], [ -76.201603, 38.290647 ], [ -76.202334, 38.291539 ], [ -76.202628, 38.291898 ], [ -76.202897, 38.292226 ], [ -76.203430, 38.292876 ], [ -76.203909, 38.293461 ], [ -76.211446, 38.302656 ], [ -76.216266, 38.305023 ], [ -76.217616, 38.305686 ], [ -76.218051, 38.305899 ], [ -76.226376, 38.309988 ], [ -76.226408, 38.309989 ], [ -76.243897, 38.310313 ], [ -76.254473, 38.315120 ], [ -76.258189, 38.318373 ], [ -76.266602, 38.339502 ], [ -76.264186, 38.346436 ], [ -76.259286, 38.341619 ], [ -76.259261, 38.341595 ], [ -76.259235, 38.341603 ], [ -76.258383, 38.341865 ], [ -76.257898, 38.342014 ], [ -76.238452, 38.347986 ], [ -76.238478, 38.348355 ], [ -76.238541, 38.349238 ], [ -76.238611, 38.350233 ], [ -76.239010, 38.350738 ], [ -76.239056, 38.350795 ], [ -76.239601, 38.351486 ], [ -76.239902, 38.351866 ], [ -76.240196, 38.352238 ], [ -76.240410, 38.352508 ], [ -76.247350, 38.361285 ], [ -76.248766, 38.363076 ], [ -76.249666, 38.364214 ], [ -76.256788, 38.366712 ], [ -76.257479, 38.366702 ], [ -76.258022, 38.366695 ], [ -76.273003, 38.366483 ], [ -76.278722, 38.382919 ], [ -76.278813, 38.383179 ], [ -76.280749, 38.388743 ], [ -76.281214, 38.390079 ], [ -76.281320, 38.390384 ], [ -76.281396, 38.390604 ], [ -76.281697, 38.391470 ], [ -76.282144, 38.392754 ], [ -76.282271, 38.393118 ], [ -76.280551, 38.403143 ], [ -76.283020, 38.413512 ], [ -76.290681, 38.424404 ], [ -76.300186, 38.437916 ], [ -76.301488, 38.439767 ], [ -76.311600, 38.450266 ], [ -76.311767, 38.450439 ], [ -76.320843, 38.459862 ], [ -76.331383, 38.473323 ], [ -76.331469, 38.473432 ], [ -76.331559, 38.473548 ], [ -76.331758, 38.474324 ], [ -76.331990, 38.475225 ], [ -76.336360, 38.492235 ], [ -76.327257, 38.500121 ], [ -76.318054, 38.498199 ], [ -76.289507, 38.503906 ], [ -76.283595, 38.504157 ], [ -76.281761, 38.502165 ], [ -76.263968, 38.503452 ], [ -76.262133, 38.504874 ], [ -76.260350, 38.506255 ], [ -76.247894, 38.523019 ], [ -76.247300, 38.523818 ], [ -76.244396, 38.536966 ], [ -76.248885, 38.539023 ], [ -76.250265, 38.539131 ], [ -76.251033, 38.539191 ], [ -76.253624, 38.539393 ], [ -76.274057, 38.531207 ], [ -76.278106, 38.532468 ], [ -76.281047, 38.536130 ], [ -76.277461, 38.541851 ], [ -76.275913, 38.548809 ], [ -76.279640, 38.557231 ], [ -76.283189, 38.561300 ], [ -76.283632, 38.561807 ], [ -76.289017, 38.567982 ], [ -76.290043, 38.569158 ], [ -76.290667, 38.569247 ], [ -76.296469, 38.570076 ], [ -76.299301, 38.570480 ], [ -76.308321, 38.571769 ], [ -76.305172, 38.575293 ], [ -76.291998, 38.581988 ], [ -76.290895, 38.582548 ], [ -76.273496, 38.591390 ], [ -76.268633, 38.597753 ], [ -76.272584, 38.601997 ], [ -76.274611, 38.604174 ], [ -76.274888, 38.604471 ], [ -76.275246, 38.604856 ], [ -76.275282, 38.604895 ], [ -76.275658, 38.605298 ], [ -76.279589, 38.609520 ], [ -76.278146, 38.610662 ], [ -76.276734, 38.611779 ], [ -76.271827, 38.615661 ], [ -76.264155, 38.615109 ], [ -76.263577, 38.615475 ], [ -76.262791, 38.615973 ], [ -76.261135, 38.617021 ], [ -76.260317, 38.617539 ], [ -76.253926, 38.621586 ], [ -76.247896, 38.625404 ], [ -76.246510, 38.626282 ], [ -76.236650, 38.628598 ], [ -76.235987, 38.626827 ], [ -76.234929, 38.624002 ], [ -76.231187, 38.614010 ], [ -76.229358, 38.613301 ], [ -76.229159, 38.613224 ], [ -76.228820, 38.613093 ], [ -76.222982, 38.610830 ], [ -76.220701, 38.609945 ], [ -76.212427, 38.606738 ], [ -76.212414, 38.606744 ], [ -76.203065, 38.610741 ], [ -76.202598, 38.613011 ], [ -76.190902, 38.621092 ], [ -76.174969, 38.628791 ], [ -76.170066, 38.629225 ], [ -76.160148, 38.625452 ], [ -76.152885, 38.631819 ], [ -76.147158, 38.636840 ], [ -76.147577, 38.637893 ], [ -76.148202, 38.639463 ], [ -76.148559, 38.640362 ], [ -76.148955, 38.641356 ], [ -76.149353, 38.642356 ], [ -76.152554, 38.650400 ], [ -76.152603, 38.650523 ], [ -76.152622, 38.650572 ], [ -76.152990, 38.651495 ], [ -76.153414, 38.652562 ], [ -76.153769, 38.653455 ], [ -76.154093, 38.654269 ], [ -76.154581, 38.655495 ], [ -76.154604, 38.655553 ], [ -76.154889, 38.656268 ], [ -76.154924, 38.656358 ], [ -76.155611, 38.658083 ], [ -76.160539, 38.661903 ], [ -76.164465, 38.664946 ], [ -76.168824, 38.668325 ], [ -76.174611, 38.672811 ], [ -76.175159, 38.673236 ], [ -76.196716, 38.672860 ], [ -76.199722, 38.671127 ], [ -76.199948, 38.670997 ], [ -76.200334, 38.670774 ], [ -76.212808, 38.681892 ], [ -76.226343, 38.698057 ], [ -76.229242, 38.701519 ], [ -76.231392, 38.704088 ], [ -76.231758, 38.704524 ], [ -76.232127, 38.704964 ], [ -76.232365, 38.705249 ], [ -76.232535, 38.705452 ], [ -76.232814, 38.705785 ], [ -76.232845, 38.705823 ], [ -76.232875, 38.705859 ], [ -76.232893, 38.705880 ], [ -76.234249, 38.707499 ], [ -76.234379, 38.707655 ], [ -76.234392, 38.707670 ], [ -76.234828, 38.708191 ], [ -76.237818, 38.711762 ], [ -76.237916, 38.711879 ], [ -76.238077, 38.712071 ], [ -76.238172, 38.712185 ], [ -76.238306, 38.712344 ], [ -76.238725, 38.712845 ], [ -76.239377, 38.716880 ], [ -76.239427, 38.717191 ], [ -76.239841, 38.719756 ], [ -76.237040, 38.724518 ], [ -76.238685, 38.735434 ], [ -76.255093, 38.736476 ], [ -76.255348, 38.736273 ], [ -76.257335, 38.734691 ], [ -76.257423, 38.734621 ], [ -76.257437, 38.734609 ], [ -76.257851, 38.734280 ], [ -76.258738, 38.733573 ], [ -76.259238, 38.733176 ], [ -76.259665, 38.732836 ], [ -76.259741, 38.732775 ], [ -76.259867, 38.732675 ], [ -76.259876, 38.732667 ], [ -76.260001, 38.732568 ], [ -76.260976, 38.731791 ], [ -76.261863, 38.731085 ], [ -76.268288, 38.725969 ], [ -76.268739, 38.725609 ], [ -76.269370, 38.725107 ], [ -76.269520, 38.724988 ], [ -76.270277, 38.724385 ], [ -76.271243, 38.716209 ], [ -76.271447, 38.714480 ], [ -76.271553, 38.713576 ], [ -76.271596, 38.713216 ], [ -76.275015, 38.712714 ], [ -76.275019, 38.712715 ], [ -76.298499, 38.718005 ], [ -76.299171, 38.719287 ], [ -76.296603, 38.723183 ], [ -76.296537, 38.723283 ], [ -76.295957, 38.724162 ], [ -76.298186, 38.726255 ], [ -76.299350, 38.727347 ], [ -76.299401, 38.727395 ], [ -76.312756, 38.730708 ], [ -76.316146, 38.729586 ], [ -76.321803, 38.723565 ], [ -76.321885, 38.723478 ], [ -76.322019, 38.723335 ], [ -76.322028, 38.723326 ], [ -76.322663, 38.722650 ], [ -76.322705, 38.722605 ], [ -76.322706, 38.722604 ], [ -76.322730, 38.722578 ], [ -76.322807, 38.722496 ], [ -76.322860, 38.722439 ], [ -76.322975, 38.722317 ], [ -76.323214, 38.722063 ], [ -76.323530, 38.721727 ], [ -76.326135, 38.718954 ], [ -76.327162, 38.717861 ], [ -76.328035, 38.716932 ], [ -76.328338, 38.716609 ], [ -76.330149, 38.714682 ], [ -76.331479, 38.713266 ], [ -76.332517, 38.709118 ], [ -76.333066, 38.706927 ], [ -76.333532, 38.705063 ], [ -76.333777, 38.704086 ], [ -76.334017, 38.703127 ], [ -76.333862, 38.702953 ], [ -76.332079, 38.700956 ], [ -76.321865, 38.689512 ], [ -76.321881, 38.689217 ], [ -76.321898, 38.688902 ], [ -76.321905, 38.688768 ], [ -76.321915, 38.688584 ], [ -76.322418, 38.679304 ], [ -76.338610, 38.672023 ], [ -76.340065, 38.671369 ], [ -76.340341, 38.671245 ], [ -76.343220, 38.676880 ], [ -76.343277, 38.676992 ], [ -76.343784, 38.677985 ], [ -76.344199, 38.678798 ], [ -76.347998, 38.686234 ], [ -76.345072, 38.703546 ], [ -76.344597, 38.706352 ], [ -76.340543, 38.730338 ], [ -76.340567, 38.731008 ], [ -76.340608, 38.732179 ], [ -76.340618, 38.732464 ], [ -76.340628, 38.732756 ], [ -76.340632, 38.732857 ], [ -76.340635, 38.732960 ], [ -76.340637, 38.733003 ], [ -76.340641, 38.733123 ], [ -76.340645, 38.733225 ], [ -76.340677, 38.734136 ], [ -76.340715, 38.735215 ], [ -76.340732, 38.735712 ], [ -76.340739, 38.735894 ], [ -76.340740, 38.735932 ], [ -76.341093, 38.745959 ], [ -76.341096, 38.746058 ], [ -76.341100, 38.746148 ], [ -76.341288, 38.751505 ], [ -76.341293, 38.751654 ], [ -76.341297, 38.751756 ], [ -76.341302, 38.751901 ], [ -76.334619, 38.772911 ], [ -76.333752, 38.773420 ], [ -76.329721, 38.775789 ], [ -76.323768, 38.779287 ], [ -76.322700, 38.780657 ], [ -76.312886, 38.793247 ], [ -76.310743, 38.795996 ], [ -76.310664, 38.796098 ], [ -76.310626, 38.796147 ], [ -76.310556, 38.796237 ], [ -76.310081, 38.796846 ], [ -76.308922, 38.813346 ], [ -76.308306, 38.814331 ], [ -76.308294, 38.814349 ], [ -76.308127, 38.814618 ], [ -76.307267, 38.815993 ], [ -76.301886, 38.824595 ], [ -76.300889, 38.826190 ], [ -76.300886, 38.826192 ], [ -76.298956, 38.827519 ], [ -76.297800, 38.828314 ], [ -76.296564, 38.828186 ], [ -76.296471, 38.828176 ], [ -76.296394, 38.828168 ], [ -76.296364, 38.828165 ], [ -76.296329, 38.828162 ], [ -76.296320, 38.828161 ], [ -76.296259, 38.828155 ], [ -76.295992, 38.828127 ], [ -76.295550, 38.828081 ], [ -76.295454, 38.828071 ], [ -76.295436, 38.828069 ], [ -76.293648, 38.827884 ], [ -76.292144, 38.827729 ], [ -76.288455, 38.827347 ], [ -76.284768, 38.828706 ], [ -76.277854, 38.831256 ], [ -76.277748, 38.831295 ], [ -76.277411, 38.831419 ], [ -76.277420, 38.831468 ], [ -76.278151, 38.835494 ], [ -76.278040, 38.835768 ], [ -76.274405, 38.844766 ], [ -76.271575, 38.851771 ], [ -76.267175, 38.851652 ], [ -76.265999, 38.851620 ], [ -76.264221, 38.851572 ], [ -76.265759, 38.847638 ], [ -76.265808, 38.847512 ], [ -76.265678, 38.847326 ], [ -76.262179, 38.842325 ], [ -76.261907, 38.841936 ], [ -76.261627, 38.841536 ], [ -76.257353, 38.835428 ], [ -76.255787, 38.833189 ], [ -76.255343, 38.832554 ], [ -76.255322, 38.832525 ], [ -76.250364, 38.825438 ], [ -76.250296, 38.825389 ], [ -76.245886, 38.822232 ], [ -76.238770, 38.819590 ], [ -76.229199, 38.816036 ], [ -76.228071, 38.815617 ], [ -76.221162, 38.813052 ], [ -76.219328, 38.812371 ], [ -76.198138, 38.814440 ], [ -76.197432, 38.815541 ], [ -76.196488, 38.817015 ], [ -76.196426, 38.817111 ], [ -76.195370, 38.818759 ], [ -76.193430, 38.821787 ], [ -76.193272, 38.822319 ], [ -76.193073, 38.822989 ], [ -76.193020, 38.823165 ], [ -76.192924, 38.823489 ], [ -76.192865, 38.823687 ], [ -76.192765, 38.824024 ], [ -76.192537, 38.824790 ], [ -76.191090, 38.829660 ], [ -76.191172, 38.829834 ], [ -76.192874, 38.833450 ], [ -76.192946, 38.833603 ], [ -76.192973, 38.833661 ], [ -76.197705, 38.843712 ], [ -76.197736, 38.843830 ], [ -76.199544, 38.850817 ], [ -76.200728, 38.855389 ], [ -76.202598, 38.862616 ], [ -76.202314, 38.864906 ], [ -76.200082, 38.882885 ], [ -76.205063, 38.892726 ], [ -76.204544, 38.905715 ], [ -76.204129, 38.916096 ], [ -76.204122, 38.916269 ], [ -76.204091, 38.917058 ], [ -76.203638, 38.928382 ], [ -76.207695, 38.931954 ], [ -76.213731, 38.937269 ], [ -76.213842, 38.937366 ], [ -76.228130, 38.941412 ], [ -76.228405, 38.941489 ], [ -76.232038, 38.942518 ], [ -76.233895, 38.942123 ], [ -76.234681, 38.941956 ], [ -76.250157, 38.938667 ], [ -76.250868, 38.928250 ], [ -76.250838, 38.928204 ], [ -76.249622, 38.926297 ], [ -76.249246, 38.925707 ], [ -76.248896, 38.925159 ], [ -76.248844, 38.925076 ], [ -76.248702, 38.924855 ], [ -76.248574, 38.924655 ], [ -76.248472, 38.924494 ], [ -76.248023, 38.923790 ], [ -76.249163, 38.921800 ], [ -76.249285, 38.921587 ], [ -76.249355, 38.921465 ], [ -76.249674, 38.920907 ], [ -76.249889, 38.920841 ], [ -76.255819, 38.919008 ], [ -76.256190, 38.918893 ], [ -76.256397, 38.918829 ], [ -76.258080, 38.919160 ], [ -76.258206, 38.919185 ], [ -76.262226, 38.919976 ], [ -76.264683, 38.924576 ], [ -76.264692, 38.924764 ], [ -76.264943, 38.930297 ], [ -76.265772, 38.931482 ], [ -76.266260, 38.932179 ], [ -76.269179, 38.936349 ], [ -76.270954, 38.938886 ], [ -76.271625, 38.939844 ], [ -76.273022, 38.941840 ], [ -76.273083, 38.941927 ], [ -76.273258, 38.941826 ], [ -76.276033, 38.940213 ], [ -76.284227, 38.935452 ], [ -76.288813, 38.932787 ], [ -76.291211, 38.931394 ], [ -76.295580, 38.928855 ], [ -76.295911, 38.928663 ], [ -76.298208, 38.922060 ], [ -76.299431, 38.918542 ], [ -76.299406, 38.918505 ], [ -76.298492, 38.917121 ], [ -76.293963, 38.910266 ], [ -76.293867, 38.910121 ], [ -76.293843, 38.909826 ], [ -76.293829, 38.909649 ], [ -76.293794, 38.909222 ], [ -76.293492, 38.905499 ], [ -76.293358, 38.903854 ], [ -76.293341, 38.903635 ], [ -76.293328, 38.903479 ], [ -76.293309, 38.903244 ], [ -76.293255, 38.902582 ], [ -76.293254, 38.902568 ], [ -76.308425, 38.898404 ], [ -76.317947, 38.911312 ], [ -76.317977, 38.911311 ], [ -76.318530, 38.911299 ], [ -76.319272, 38.911282 ], [ -76.322715, 38.911205 ], [ -76.323252, 38.911193 ], [ -76.324097, 38.911174 ], [ -76.324102, 38.911172 ], [ -76.336104, 38.905977 ], [ -76.336116, 38.905907 ], [ -76.336827, 38.901905 ], [ -76.336966, 38.901118 ], [ -76.337097, 38.900380 ], [ -76.337227, 38.899653 ], [ -76.337358, 38.898915 ], [ -76.338047, 38.895034 ], [ -76.338123, 38.894601 ], [ -76.338416, 38.892954 ], [ -76.338501, 38.892474 ], [ -76.337946, 38.891332 ], [ -76.336986, 38.889357 ], [ -76.336560, 38.888481 ], [ -76.336326, 38.888001 ], [ -76.335681, 38.886673 ], [ -76.335364, 38.886021 ], [ -76.335341, 38.885907 ], [ -76.333801, 38.878194 ], [ -76.333258, 38.875478 ], [ -76.333211, 38.875241 ], [ -76.332651, 38.872438 ], [ -76.331103, 38.864686 ], [ -76.331030, 38.864320 ], [ -76.334019, 38.860238 ], [ -76.337901, 38.857579 ], [ -76.338136, 38.857418 ], [ -76.339667, 38.856370 ], [ -76.340587, 38.855740 ], [ -76.348826, 38.857134 ], [ -76.350390, 38.857399 ], [ -76.356361, 38.854396 ], [ -76.359960, 38.852586 ], [ -76.360095, 38.852518 ], [ -76.361141, 38.851992 ], [ -76.361320, 38.851589 ], [ -76.366501, 38.839936 ], [ -76.368164, 38.836194 ], [ -76.368195, 38.836125 ], [ -76.368359, 38.836205 ], [ -76.372719, 38.838324 ], [ -76.373122, 38.838519 ], [ -76.375086, 38.839474 ], [ -76.375138, 38.839981 ], [ -76.375303, 38.841611 ], [ -76.375443, 38.842988 ], [ -76.376031, 38.848777 ], [ -76.376202, 38.850461 ], [ -76.376183, 38.850500 ], [ -76.375874, 38.851126 ], [ -76.372553, 38.857860 ], [ -76.367549, 38.868009 ], [ -76.367344, 38.868424 ], [ -76.364678, 38.873831 ], [ -76.365225, 38.892614 ], [ -76.365388, 38.898219 ], [ -76.365658, 38.907477 ], [ -76.365130, 38.911736 ], [ -76.364780, 38.914553 ], [ -76.364523, 38.916632 ], [ -76.362050, 38.936568 ], [ -76.361727, 38.939175 ], [ -76.359669, 38.943880 ], [ -76.357933, 38.947848 ], [ -76.357752, 38.948262 ], [ -76.354949, 38.954672 ], [ -76.353828, 38.957234 ], [ -76.351637, 38.960214 ], [ -76.343672, 38.971048 ], [ -76.333703, 38.984607 ], [ -76.331290, 38.987890 ], [ -76.323293, 38.998767 ], [ -76.322679, 38.999602 ], [ -76.322346, 39.005488 ], [ -76.322296, 39.006375 ], [ -76.323557, 39.008961 ], [ -76.322590, 39.013100 ], [ -76.320277, 39.022998 ], [ -76.320274, 39.023013 ], [ -76.320269, 39.023020 ], [ -76.311766, 39.035257 ], [ -76.302029, 39.039571 ], [ -76.301847, 39.039651 ], [ -76.301645, 39.037663 ], [ -76.301506, 39.036298 ], [ -76.301054, 39.031862 ], [ -76.301040, 39.031721 ], [ -76.301027, 39.031595 ], [ -76.302846, 39.025828 ], [ -76.302650, 39.025346 ], [ -76.294090, 39.004263 ], [ -76.293962, 39.003948 ], [ -76.291900, 39.001264 ], [ -76.289326, 38.997914 ], [ -76.286484, 38.994215 ], [ -76.284893, 38.992143 ], [ -76.283280, 38.990044 ], [ -76.280355, 38.986236 ], [ -76.278058, 38.983246 ], [ -76.277478, 38.982492 ], [ -76.277457, 38.982493 ], [ -76.275964, 38.982587 ], [ -76.258813, 38.983664 ], [ -76.258724, 38.983646 ], [ -76.246049, 38.981035 ], [ -76.243619, 38.980534 ], [ -76.229993, 38.977728 ], [ -76.229277, 38.977580 ], [ -76.228748, 38.977220 ], [ -76.218929, 38.970538 ], [ -76.218773, 38.970562 ], [ -76.202360, 38.973079 ], [ -76.202081, 38.973272 ], [ -76.187165, 38.983558 ], [ -76.182461, 38.986802 ], [ -76.180663, 38.988042 ], [ -76.168332, 38.996546 ], [ -76.164004, 38.999530 ], [ -76.163988, 38.999541 ], [ -76.163988, 38.999542 ], [ -76.163956, 39.000437 ], [ -76.163898, 39.002096 ], [ -76.163616, 39.010057 ], [ -76.167574, 39.018273 ], [ -76.173393, 39.025550 ], [ -76.174633, 39.027100 ], [ -76.177832, 39.031102 ], [ -76.178115, 39.031456 ], [ -76.178281, 39.031663 ], [ -76.184207, 39.046264 ], [ -76.179456, 39.052941 ], [ -76.177046, 39.056329 ], [ -76.175284, 39.058805 ], [ -76.169060, 39.062787 ], [ -76.158960, 39.065486 ], [ -76.156572, 39.069433 ], [ -76.153465, 39.074568 ], [ -76.150528, 39.079421 ], [ -76.145174, 39.092824 ], [ -76.158090, 39.093998 ], [ -76.167347, 39.094839 ], [ -76.169087, 39.094997 ], [ -76.169414, 39.095027 ], [ -76.169891, 39.095070 ], [ -76.183908, 39.096344 ], [ -76.189907, 39.093042 ], [ -76.194703, 39.090403 ], [ -76.203333, 39.085654 ], [ -76.203383, 39.085626 ], [ -76.203548, 39.085101 ], [ -76.205108, 39.080129 ], [ -76.207604, 39.072176 ], [ -76.210041, 39.064410 ], [ -76.210251, 39.062511 ], [ -76.210876, 39.056874 ], [ -76.211838, 39.048184 ], [ -76.212563, 39.041641 ], [ -76.212602, 39.041288 ], [ -76.212616, 39.041158 ], [ -76.212040, 39.038870 ], [ -76.211589, 39.037080 ], [ -76.210477, 39.032664 ], [ -76.209827, 39.030081 ], [ -76.209517, 39.028848 ], [ -76.208502, 39.024818 ], [ -76.208346, 39.024614 ], [ -76.206852, 39.022649 ], [ -76.206796, 39.022575 ], [ -76.205958, 39.021475 ], [ -76.200666, 39.014520 ], [ -76.201005, 39.014339 ], [ -76.202176, 39.013714 ], [ -76.209114, 39.010010 ], [ -76.209285, 39.010074 ], [ -76.216850, 39.012916 ], [ -76.221148, 39.014530 ], [ -76.223671, 39.015478 ], [ -76.231765, 39.018518 ], [ -76.240226, 39.026581 ], [ -76.241932, 39.028206 ], [ -76.242687, 39.028926 ], [ -76.240905, 39.039798 ], [ -76.239443, 39.041977 ], [ -76.237500, 39.044872 ], [ -76.237065, 39.045521 ], [ -76.231212, 39.060769 ], [ -76.231117, 39.061017 ], [ -76.231427, 39.071714 ], [ -76.231748, 39.082826 ], [ -76.233457, 39.091385 ], [ -76.240603, 39.106856 ], [ -76.245050, 39.116484 ], [ -76.252946, 39.133577 ], [ -76.252968, 39.133626 ], [ -76.260343, 39.142722 ], [ -76.260894, 39.143402 ], [ -76.264417, 39.143874 ], [ -76.266540, 39.144158 ], [ -76.268096, 39.144367 ], [ -76.274907, 39.145279 ], [ -76.276721, 39.145522 ], [ -76.278527, 39.145764 ], [ -76.276807, 39.154484 ], [ -76.275660, 39.160304 ], [ -76.274741, 39.164961 ], [ -76.274637, 39.165490 ], [ -76.274303, 39.166115 ], [ -76.269467, 39.175163 ], [ -76.268631, 39.176727 ], [ -76.266963, 39.179848 ], [ -76.266602, 39.180523 ], [ -76.255831, 39.191595 ], [ -76.251032, 39.199214 ], [ -76.248741, 39.203333 ], [ -76.232612, 39.232333 ], [ -76.232051, 39.233341 ], [ -76.226220, 39.246485 ], [ -76.220475, 39.259433 ], [ -76.219338, 39.261997 ], [ -76.219312, 39.262022 ], [ -76.218339, 39.262963 ], [ -76.217520, 39.263754 ], [ -76.211306, 39.269761 ], [ -76.211253, 39.269812 ], [ -76.211179, 39.269813 ], [ -76.210748, 39.269816 ], [ -76.203031, 39.269871 ], [ -76.202590, 39.270265 ], [ -76.193029, 39.278801 ], [ -76.191285, 39.280358 ], [ -76.189868, 39.281623 ], [ -76.185909, 39.285157 ], [ -76.185674, 39.285367 ], [ -76.181496, 39.291797 ], [ -76.181478, 39.291829 ], [ -76.177712, 39.298686 ], [ -76.177704, 39.298701 ], [ -76.177178, 39.303099 ], [ -76.176804, 39.306229 ], [ -76.176778, 39.306447 ], [ -76.176865, 39.306584 ], [ -76.178983, 39.309926 ], [ -76.179092, 39.310098 ], [ -76.186024, 39.312462 ], [ -76.186637, 39.315426 ], [ -76.186647, 39.315475 ], [ -76.186001, 39.317814 ], [ -76.185581, 39.319334 ], [ -76.185507, 39.319396 ], [ -76.170588, 39.331954 ], [ -76.170541, 39.331994 ], [ -76.170422, 39.332094 ], [ -76.169411, 39.332453 ], [ -76.168365, 39.332824 ], [ -76.159673, 39.335909 ], [ -76.157163, 39.335641 ], [ -76.152722, 39.335167 ], [ -76.145524, 39.334399 ], [ -76.133225, 39.340491 ], [ -76.135105, 39.342460 ], [ -76.136971, 39.344414 ], [ -76.134950, 39.351070 ], [ -76.129983, 39.353702 ], [ -76.116698, 39.360744 ], [ -76.116356, 39.360925 ], [ -76.115935, 39.361744 ], [ -76.113215, 39.367032 ], [ -76.110598, 39.372119 ], [ -76.110527, 39.372257 ], [ -76.108942, 39.372215 ], [ -76.108373, 39.372200 ], [ -76.074992, 39.371312 ], [ -76.065887, 39.371070 ], [ -76.065716, 39.371066 ], [ -76.061504, 39.370954 ], [ -76.059335, 39.370896 ], [ -76.058720, 39.370880 ], [ -76.057876, 39.370857 ], [ -76.054157, 39.370759 ], [ -76.049846, 39.370644 ], [ -76.032923, 39.367414 ], [ -76.031767, 39.366772 ], [ -76.030064, 39.365826 ], [ -76.022990, 39.361896 ], [ -76.019091, 39.362958 ], [ -76.006546, 39.366374 ], [ -76.002408, 39.367501 ], [ -76.002463, 39.376440 ], [ -76.002514, 39.384805 ], [ -76.002515, 39.385024 ], [ -76.006805, 39.385174 ], [ -76.022304, 39.385716 ], [ -76.035464, 39.386176 ], [ -76.035568, 39.386180 ], [ -76.035644, 39.386213 ], [ -76.039279, 39.387796 ], [ -76.039932, 39.388080 ], [ -76.039973, 39.388327 ], [ -76.040854, 39.393594 ], [ -76.040962, 39.394237 ], [ -76.040612, 39.394692 ], [ -76.035298, 39.401609 ], [ -76.035002, 39.401994 ], [ -76.034720, 39.402093 ], [ -76.018726, 39.407696 ], [ -76.018061, 39.407929 ], [ -76.016531, 39.408465 ], [ -76.015763, 39.408947 ], [ -76.012567, 39.410955 ], [ -76.009693, 39.412760 ], [ -76.006880, 39.414527 ], [ -76.002856, 39.421225 ], [ -75.998586, 39.428333 ], [ -75.997396, 39.430314 ], [ -75.996697, 39.430549 ], [ -75.992742, 39.431877 ], [ -75.992425, 39.431983 ], [ -75.988840, 39.433187 ], [ -75.982585, 39.435287 ], [ -75.977751, 39.443020 ], [ -75.976747, 39.444627 ], [ -75.976698, 39.445690 ], [ -75.976601, 39.447808 ], [ -75.990005, 39.458646 ], [ -75.990128, 39.458624 ], [ -75.991779, 39.458332 ], [ -75.994432, 39.457862 ], [ -75.998276, 39.457182 ], [ -76.002497, 39.450231 ], [ -76.002513, 39.450204 ], [ -76.002579, 39.450194 ], [ -76.009071, 39.449256 ], [ -76.009452, 39.449201 ], [ -76.009536, 39.449316 ], [ -76.011880, 39.452524 ], [ -76.012312, 39.453115 ], [ -76.011716, 39.454165 ], [ -76.010009, 39.457170 ], [ -76.002926, 39.469642 ], [ -75.996570, 39.476658 ], [ -75.995289, 39.483014 ], [ -75.994135, 39.488743 ], [ -75.993469, 39.490583 ], [ -75.986298, 39.510398 ], [ -75.985403, 39.512108 ], [ -75.985238, 39.512424 ], [ -75.980279, 39.521900 ], [ -75.976105, 39.529876 ], [ -75.976057, 39.529968 ], [ -75.975313, 39.530678 ], [ -75.973678, 39.532237 ], [ -75.966955, 39.538650 ], [ -75.966959, 39.538839 ], [ -75.967093, 39.544623 ], [ -75.967173, 39.548047 ], [ -75.967186, 39.548627 ], [ -75.967221, 39.550140 ], [ -75.970337, 39.557637 ], [ -75.992633, 39.563098 ], [ -75.999669, 39.560488 ], [ -76.000190, 39.559696 ], [ -76.001244, 39.558096 ], [ -76.002793, 39.555741 ], [ -76.003434, 39.554768 ], [ -76.004207, 39.553594 ], [ -76.006213, 39.550546 ], [ -76.006272, 39.550457 ], [ -76.006341, 39.550352 ], [ -76.030420, 39.548784 ], [ -76.046876, 39.547713 ], [ -76.063379, 39.546638 ], [ -76.063811, 39.546610 ], [ -76.075714, 39.543032 ], [ -76.096072, 39.536912 ], [ -76.102955, 39.523639 ], [ -76.105571, 39.518595 ], [ -76.105678, 39.518388 ], [ -76.106215, 39.517353 ], [ -76.107126, 39.515597 ], [ -76.111583, 39.507001 ], [ -76.116831, 39.496882 ], [ -76.117253, 39.496068 ], [ -76.114610, 39.488619 ], [ -76.113929, 39.486701 ], [ -76.108813, 39.482333 ], [ -76.104665, 39.478792 ], [ -76.100218, 39.476918 ], [ -76.099506, 39.476618 ], [ -76.098315, 39.476116 ], [ -76.083286, 39.477860 ], [ -76.083082, 39.477809 ], [ -76.081590, 39.477438 ], [ -76.073119, 39.475331 ], [ -76.072309, 39.475130 ], [ -76.071975, 39.475047 ], [ -76.071836, 39.474760 ], [ -76.069814, 39.470577 ], [ -76.063874, 39.458295 ], [ -76.062259, 39.454955 ], [ -76.060931, 39.452208 ], [ -76.060944, 39.451174 ], [ -76.060988, 39.447775 ], [ -76.060989, 39.447722 ], [ -76.081176, 39.436712 ], [ -76.081409, 39.436891 ], [ -76.083269, 39.438321 ], [ -76.083405, 39.438302 ], [ -76.093595, 39.436871 ], [ -76.102232, 39.435659 ], [ -76.112761, 39.429852 ], [ -76.115096, 39.428565 ], [ -76.116820, 39.427614 ], [ -76.117172, 39.427170 ], [ -76.120991, 39.422358 ], [ -76.121754, 39.421396 ], [ -76.121889, 39.421226 ], [ -76.132114, 39.414579 ], [ -76.142224, 39.408007 ], [ -76.146373, 39.405310 ], [ -76.147048, 39.405364 ], [ -76.150249, 39.405623 ], [ -76.150516, 39.405644 ], [ -76.150934, 39.405678 ], [ -76.151948, 39.405760 ], [ -76.152059, 39.405769 ], [ -76.152357, 39.405793 ], [ -76.157108, 39.406176 ], [ -76.158592, 39.406295 ], [ -76.158774, 39.406310 ], [ -76.159358, 39.405661 ], [ -76.171134, 39.392588 ], [ -76.171474, 39.392210 ], [ -76.171747, 39.391747 ], [ -76.175121, 39.386019 ], [ -76.175597, 39.385210 ], [ -76.175928, 39.384648 ], [ -76.180057, 39.377638 ], [ -76.180074, 39.377609 ], [ -76.199356, 39.366221 ], [ -76.202346, 39.364455 ], [ -76.226976, 39.349908 ], [ -76.227625, 39.350109 ], [ -76.229614, 39.350723 ], [ -76.233776, 39.352008 ], [ -76.234743, 39.353498 ], [ -76.234765, 39.353532 ], [ -76.235795, 39.355119 ], [ -76.236520, 39.356236 ], [ -76.237943, 39.358429 ], [ -76.239877, 39.361408 ], [ -76.241268, 39.361567 ], [ -76.243377, 39.361808 ], [ -76.244443, 39.361731 ], [ -76.244988, 39.361691 ], [ -76.245273, 39.361671 ], [ -76.250107, 39.361320 ], [ -76.250483, 39.361136 ], [ -76.266365, 39.353352 ], [ -76.265277, 39.350008 ], [ -76.263019, 39.348634 ], [ -76.258377, 39.345808 ], [ -76.258342, 39.345737 ], [ -76.253928, 39.336768 ], [ -76.262008, 39.334708 ], [ -76.262471, 39.334590 ], [ -76.263073, 39.334436 ], [ -76.263577, 39.334308 ], [ -76.263624, 39.334265 ], [ -76.265615, 39.332450 ], [ -76.265777, 39.332302 ], [ -76.266094, 39.332013 ], [ -76.266257, 39.331864 ], [ -76.266407, 39.331727 ], [ -76.272671, 39.326015 ], [ -76.276078, 39.322908 ], [ -76.277813, 39.318738 ], [ -76.277866, 39.318610 ], [ -76.278239, 39.317712 ], [ -76.278351, 39.317444 ], [ -76.278499, 39.317088 ], [ -76.280599, 39.312037 ], [ -76.280778, 39.311608 ], [ -76.281088, 39.307930 ], [ -76.281374, 39.304531 ], [ -76.281429, 39.303872 ], [ -76.281556, 39.302369 ], [ -76.281578, 39.302108 ], [ -76.281700, 39.302110 ], [ -76.296546, 39.302383 ], [ -76.297878, 39.302408 ], [ -76.291078, 39.318108 ], [ -76.298778, 39.329208 ], [ -76.298778, 39.333958 ], [ -76.298778, 39.339278 ], [ -76.298778, 39.340208 ], [ -76.297569, 39.342244 ], [ -76.295558, 39.345631 ], [ -76.294978, 39.346608 ], [ -76.295678, 39.350008 ], [ -76.301770, 39.352216 ], [ -76.310618, 39.355423 ], [ -76.310829, 39.355500 ], [ -76.311360, 39.355693 ], [ -76.311679, 39.355808 ], [ -76.312610, 39.355917 ], [ -76.312864, 39.355946 ], [ -76.314356, 39.356120 ], [ -76.322687, 39.357092 ], [ -76.323679, 39.357208 ], [ -76.330027, 39.356139 ], [ -76.341443, 39.354217 ], [ -76.339942, 39.350169 ], [ -76.335412, 39.337949 ], [ -76.334401, 39.335222 ], [ -76.334021, 39.334197 ], [ -76.333924, 39.333935 ], [ -76.338898, 39.325783 ], [ -76.339570, 39.324681 ], [ -76.333820, 39.319611 ], [ -76.327579, 39.314108 ], [ -76.337858, 39.305799 ], [ -76.339817, 39.304216 ], [ -76.341432, 39.302910 ], [ -76.353205, 39.310650 ], [ -76.354817, 39.311709 ], [ -76.355495, 39.312155 ], [ -76.364390, 39.311840 ], [ -76.365532, 39.310950 ], [ -76.380662, 39.299161 ], [ -76.380734, 39.298765 ], [ -76.383021, 39.286231 ], [ -76.383345, 39.284455 ], [ -76.383891, 39.281465 ], [ -76.384901, 39.275928 ], [ -76.385151, 39.275766 ], [ -76.395136, 39.269293 ], [ -76.395301, 39.269042 ], [ -76.400094, 39.261753 ], [ -76.400187, 39.261612 ], [ -76.401103, 39.260219 ], [ -76.402047, 39.258783 ], [ -76.402355, 39.258315 ], [ -76.401911, 39.258053 ], [ -76.386937, 39.249216 ], [ -76.381380, 39.249508 ], [ -76.382358, 39.247292 ], [ -76.384380, 39.242708 ], [ -76.384699, 39.242242 ], [ -76.389380, 39.235408 ], [ -76.389563, 39.235261 ], [ -76.393626, 39.232012 ], [ -76.394381, 39.231408 ], [ -76.398314, 39.229450 ], [ -76.399122, 39.229048 ], [ -76.417620, 39.219838 ], [ -76.417681, 39.219808 ], [ -76.418290, 39.218677 ], [ -76.419201, 39.216988 ], [ -76.425281, 39.205708 ], [ -76.425413, 39.205629 ], [ -76.441411, 39.196049 ], [ -76.442482, 39.195408 ], [ -76.447621, 39.197977 ], [ -76.461560, 39.204947 ], [ -76.462679, 39.205506 ], [ -76.463483, 39.205908 ], [ -76.471126, 39.205540 ], [ -76.480083, 39.205108 ], [ -76.482153, 39.204426 ], [ -76.485527, 39.203314 ], [ -76.486371, 39.203036 ], [ -76.488883, 39.202208 ], [ -76.489505, 39.202378 ], [ -76.489777, 39.202453 ], [ -76.490770, 39.202724 ], [ -76.497977, 39.204697 ], [ -76.498384, 39.204808 ], [ -76.500086, 39.207798 ], [ -76.500834, 39.209113 ], [ -76.500984, 39.209376 ], [ -76.519804, 39.222946 ], [ -76.520584, 39.223508 ], [ -76.520941, 39.223240 ], [ -76.528587, 39.217492 ], [ -76.529649, 39.216693 ], [ -76.534285, 39.213208 ], [ -76.534960, 39.212280 ], [ -76.535885, 39.211008 ], [ -76.533103, 39.207630 ], [ -76.533085, 39.207608 ], [ -76.533349, 39.207172 ], [ -76.534760, 39.204841 ], [ -76.535385, 39.203808 ], [ -76.534185, 39.190608 ], [ -76.525785, 39.177908 ], [ -76.525454, 39.177746 ], [ -76.525031, 39.177540 ], [ -76.524221, 39.177144 ], [ -76.520270, 39.175214 ], [ -76.519292, 39.174736 ], [ -76.511834, 39.171093 ], [ -76.508384, 39.169408 ], [ -76.500926, 39.161286 ], [ -76.500512, 39.161362 ], [ -76.484023, 39.164407 ], [ -76.483845, 39.164334 ], [ -76.475983, 39.161109 ], [ -76.474807, 39.159436 ], [ -76.473802, 39.158007 ], [ -76.471483, 39.154709 ], [ -76.468898, 39.153161 ], [ -76.459119, 39.147304 ], [ -76.458873, 39.147157 ], [ -76.458649, 39.147023 ], [ -76.458350, 39.146844 ], [ -76.458192, 39.146749 ], [ -76.452782, 39.143509 ], [ -76.440110, 39.137305 ], [ -76.430946, 39.132818 ], [ -76.430130, 39.132419 ], [ -76.428681, 39.131709 ], [ -76.432481, 39.126709 ], [ -76.432702, 39.120752 ], [ -76.432981, 39.113209 ], [ -76.432942, 39.113098 ], [ -76.427196, 39.096685 ], [ -76.427065, 39.096309 ], [ -76.426456, 39.094571 ], [ -76.426283, 39.094076 ], [ -76.426276, 39.094057 ], [ -76.423609, 39.086438 ], [ -76.423321, 39.085615 ], [ -76.423271, 39.085473 ], [ -76.422714, 39.083881 ], [ -76.422212, 39.082448 ], [ -76.422080, 39.082070 ], [ -76.421860, 39.081442 ], [ -76.423081, 39.074210 ], [ -76.432374, 39.061648 ], [ -76.438845, 39.052900 ] ] ] ] } }\n,\n{ \"type\": \"Feature\", \"properties\": { \"GEO_ID\": \"0400000US34\", \"STATE\": \"34\", \"NAME\": \"New Jersey\", \"LSAD\": \"\", \"CENSUSAREA\": 7354.220000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -74.900236, 40.077149 ], [ -74.838008, 40.100910 ], [ -74.740605, 40.135210 ], [ -74.724304, 40.147010 ], [ -74.724179, 40.147324 ], [ -74.721604, 40.153810 ], [ -74.722304, 40.160609 ], [ -74.758613, 40.201342 ], [ -74.770706, 40.214908 ], [ -74.860492, 40.284584 ], [ -74.937954, 40.340634 ], [ -75.024775, 40.403455 ], [ -75.035548, 40.406309 ], [ -75.058848, 40.418065 ], [ -75.061489, 40.422848 ], [ -75.070568, 40.455165 ], [ -75.065853, 40.519495 ], [ -75.065090, 40.526148 ], [ -75.067344, 40.536428 ], [ -75.068615, 40.542223 ], [ -75.100325, 40.567811 ], [ -75.117292, 40.573211 ], [ -75.135389, 40.575624 ], [ -75.147368, 40.573152 ], [ -75.190161, 40.589321 ], [ -75.190858, 40.591342 ], [ -75.196803, 40.608580 ], [ -75.200708, 40.618356 ], [ -75.203920, 40.691498 ], [ -75.196533, 40.751631 ], [ -75.171587, 40.777745 ], [ -75.163650, 40.778386 ], [ -75.149378, 40.774786 ], [ -75.134400, 40.773765 ], [ -75.108505, 40.791094 ], [ -75.053294, 40.859900 ], [ -75.051029, 40.865662 ], [ -75.052538, 40.872051 ], [ -75.117764, 40.953023 ], [ -75.119893, 40.961646 ], [ -75.120316, 40.962630 ], [ -75.120435, 40.968302 ], [ -75.120564, 40.968313 ], [ -75.131364, 40.969277 ], [ -75.135526, 40.973807 ], [ -75.130575, 40.991093 ], [ -75.109114, 41.004102 ], [ -75.091377, 41.012283 ], [ -75.069277, 41.019348 ], [ -75.051794, 41.027142 ], [ -75.036982, 41.034702 ], [ -75.026003, 41.042687 ], [ -74.980674, 41.078178 ], [ -74.968389, 41.087797 ], [ -74.966759, 41.093425 ], [ -74.967389, 41.094049 ], [ -74.969434, 41.096074 ], [ -74.974338, 41.103912 ], [ -74.923169, 41.138146 ], [ -74.882139, 41.180836 ], [ -74.867287, 41.208754 ], [ -74.864356, 41.224854 ], [ -74.867267, 41.228861 ], [ -74.861678, 41.241575 ], [ -74.838366, 41.277286 ], [ -74.830057, 41.287200 ], [ -74.795847, 41.318951 ], [ -74.761730, 41.336398 ], [ -74.694914, 41.357423 ], [ -74.457584, 41.248225 ], [ -74.392098, 41.215594 ], [ -74.365664, 41.203400 ], [ -74.234473, 41.142883 ], [ -74.213373, 41.133828 ], [ -74.096786, 41.083796 ], [ -74.092486, 41.081896 ], [ -74.041054, 41.059088 ], [ -74.041049, 41.059086 ], [ -73.911880, 41.001297 ], [ -73.902680, 40.997297 ], [ -73.893979, 40.997197 ], [ -73.917905, 40.917577 ], [ -73.919705, 40.913478 ], [ -73.927470, 40.895682 ], [ -73.933406, 40.882078 ], [ -73.933408, 40.882075 ], [ -73.938081, 40.874699 ], [ -73.948281, 40.858399 ], [ -73.986864, 40.798344 ], [ -73.993029, 40.788746 ], [ -74.000905, 40.776488 ], [ -74.009184, 40.763601 ], [ -74.013784, 40.756601 ], [ -74.024543, 40.709436 ], [ -74.038538, 40.710741 ], [ -74.051185, 40.695802 ], [ -74.069885, 40.684502 ], [ -74.082786, 40.673702 ], [ -74.089986, 40.659903 ], [ -74.087397, 40.653607 ], [ -74.094086, 40.649703 ], [ -74.143387, 40.641903 ], [ -74.161397, 40.644092 ], [ -74.181083, 40.646484 ], [ -74.186027, 40.646076 ], [ -74.189106, 40.643832 ], [ -74.202223, 40.631053 ], [ -74.206731, 40.594569 ], [ -74.208988, 40.576304 ], [ -74.214788, 40.560604 ], [ -74.218189, 40.557204 ], [ -74.231589, 40.559204 ], [ -74.248641, 40.549601 ], [ -74.251441, 40.542301 ], [ -74.246237, 40.520963 ], [ -74.268290, 40.499205 ], [ -74.269998, 40.495014 ], [ -74.272690, 40.488405 ], [ -74.267590, 40.471806 ], [ -74.261889, 40.464706 ], [ -74.236689, 40.457806 ], [ -74.225035, 40.453301 ], [ -74.224047, 40.452919 ], [ -74.222959, 40.452499 ], [ -74.209788, 40.447407 ], [ -74.206188, 40.440707 ], [ -74.206419, 40.438789 ], [ -74.208655, 40.437520 ], [ -74.207205, 40.435434 ], [ -74.202128, 40.438940 ], [ -74.193908, 40.440995 ], [ -74.191309, 40.442990 ], [ -74.187787, 40.447407 ], [ -74.174787, 40.455607 ], [ -74.174893, 40.454491 ], [ -74.175074, 40.449144 ], [ -74.176842, 40.447740 ], [ -74.175346, 40.446607 ], [ -74.169977, 40.450640 ], [ -74.167009, 40.448737 ], [ -74.166193, 40.447128 ], [ -74.164029, 40.448312 ], [ -74.163314, 40.448424 ], [ -74.157787, 40.446607 ], [ -74.153611, 40.447647 ], [ -74.152686, 40.447344 ], [ -74.151952, 40.448062 ], [ -74.142886, 40.450407 ], [ -74.139886, 40.453407 ], [ -74.138415, 40.454468 ], [ -74.135823, 40.455196 ], [ -74.133727, 40.454672 ], [ -74.131135, 40.453245 ], [ -74.127466, 40.451061 ], [ -74.124692, 40.449580 ], [ -74.122327, 40.448258 ], [ -74.116863, 40.446069 ], [ -74.088085, 40.438407 ], [ -74.076185, 40.433707 ], [ -74.058984, 40.422708 ], [ -74.047884, 40.418908 ], [ -74.006383, 40.411108 ], [ -73.998505, 40.410911 ], [ -73.995486, 40.419472 ], [ -73.991682, 40.442908 ], [ -74.006077, 40.464625 ], [ -74.017783, 40.472207 ], [ -74.017917, 40.474338 ], [ -74.014031, 40.476471 ], [ -74.007100, 40.475298 ], [ -73.995683, 40.468707 ], [ -73.978282, 40.440208 ], [ -73.976982, 40.408508 ], [ -73.971381, 40.371709 ], [ -73.971381, 40.348010 ], [ -73.977442, 40.299373 ], [ -73.981681, 40.279411 ], [ -73.993292, 40.237669 ], [ -74.016017, 40.166914 ], [ -74.030181, 40.122814 ], [ -74.034080, 40.103115 ], [ -74.031861, 40.101047 ], [ -74.031318, 40.100541 ], [ -74.033546, 40.099518 ], [ -74.039421, 40.081437 ], [ -74.058798, 40.001244 ], [ -74.064135, 39.979157 ], [ -74.077247, 39.910991 ], [ -74.090945, 39.799978 ], [ -74.097071, 39.767847 ], [ -74.096906, 39.763030 ], [ -74.098920, 39.759538 ], [ -74.101443, 39.756173 ], [ -74.113655, 39.740719 ], [ -74.141733, 39.689435 ], [ -74.190974, 39.625118 ], [ -74.240506, 39.554911 ], [ -74.249043, 39.547994 ], [ -74.277370, 39.514064 ], [ -74.291585, 39.507705 ], [ -74.311037, 39.506715 ], [ -74.312451, 39.499869 ], [ -74.313689, 39.493874 ], [ -74.308344, 39.483945 ], [ -74.304778, 39.482945 ], [ -74.302184, 39.478935 ], [ -74.304343, 39.471445 ], [ -74.334804, 39.432001 ], [ -74.366990, 39.402017 ], [ -74.406692, 39.377516 ], [ -74.406792, 39.373916 ], [ -74.408237, 39.365071 ], [ -74.412692, 39.360816 ], [ -74.459894, 39.345016 ], [ -74.521797, 39.313816 ], [ -74.541443, 39.300245 ], [ -74.551151, 39.293539 ], [ -74.553439, 39.286915 ], [ -74.560957, 39.278677 ], [ -74.581008, 39.270819 ], [ -74.597921, 39.258851 ], [ -74.614481, 39.244659 ], [ -74.636306, 39.220834 ], [ -74.646595, 39.212002 ], [ -74.651443, 39.198578 ], [ -74.671430, 39.179802 ], [ -74.714341, 39.119804 ], [ -74.715320, 39.116893 ], [ -74.714135, 39.114631 ], [ -74.704409, 39.107858 ], [ -74.705876, 39.102937 ], [ -74.738316, 39.074727 ], [ -74.778777, 39.023073 ], [ -74.786356, 39.000113 ], [ -74.792723, 38.991991 ], [ -74.807917, 38.985948 ], [ -74.819354, 38.979402 ], [ -74.850748, 38.954538 ], [ -74.864458, 38.940410 ], [ -74.865198, 38.941439 ], [ -74.870497, 38.943543 ], [ -74.882309, 38.941759 ], [ -74.907050, 38.931994 ], [ -74.920414, 38.929136 ], [ -74.933571, 38.928519 ], [ -74.963463, 38.931194 ], [ -74.967274, 38.933413 ], [ -74.971995, 38.940370 ], [ -74.955363, 39.001262 ], [ -74.949470, 39.015637 ], [ -74.938320, 39.035185 ], [ -74.903664, 39.087437 ], [ -74.897784, 39.098811 ], [ -74.892547, 39.113183 ], [ -74.885914, 39.143627 ], [ -74.887167, 39.158825 ], [ -74.905181, 39.174945 ], [ -74.914936, 39.177553 ], [ -74.962382, 39.190238 ], [ -74.976266, 39.192271 ], [ -74.998002, 39.191253 ], [ -75.026179, 39.193621 ], [ -75.028885, 39.194560 ], [ -75.027824, 39.199482 ], [ -75.023586, 39.202594 ], [ -75.023437, 39.204791 ], [ -75.026376, 39.209850 ], [ -75.035672, 39.215415 ], [ -75.041663, 39.215511 ], [ -75.047797, 39.211702 ], [ -75.052326, 39.213609 ], [ -75.062506, 39.213564 ], [ -75.086395, 39.208159 ], [ -75.101019, 39.211657 ], [ -75.107286, 39.211403 ], [ -75.114748, 39.207554 ], [ -75.127070, 39.189766 ], [ -75.136548, 39.179425 ], [ -75.139136, 39.180021 ], [ -75.165979, 39.201842 ], [ -75.164798, 39.216606 ], [ -75.170444, 39.234643 ], [ -75.177506, 39.242746 ], [ -75.205857, 39.262619 ], [ -75.212510, 39.262755 ], [ -75.241639, 39.274097 ], [ -75.244056, 39.277690 ], [ -75.242881, 39.280574 ], [ -75.244357, 39.285700 ], [ -75.251806, 39.299913 ], [ -75.271629, 39.304041 ], [ -75.282620, 39.299055 ], [ -75.285333, 39.292212 ], [ -75.288898, 39.289557 ], [ -75.306010, 39.301712 ], [ -75.315201, 39.310593 ], [ -75.326754, 39.332473 ], [ -75.327463, 39.339270 ], [ -75.333743, 39.345335 ], [ -75.341969, 39.348697 ], [ -75.355558, 39.347823 ], [ -75.365016, 39.341388 ], [ -75.390030, 39.358259 ], [ -75.394331, 39.363753 ], [ -75.395181, 39.371398 ], [ -75.399304, 39.379490 ], [ -75.407294, 39.381954 ], [ -75.422099, 39.386521 ], [ -75.431803, 39.391625 ], [ -75.442393, 39.402291 ], [ -75.465212, 39.438930 ], [ -75.476279, 39.438126 ], [ -75.483572, 39.440824 ], [ -75.505672, 39.452927 ], [ -75.508383, 39.459131 ], [ -75.536431, 39.460559 ], [ -75.542894, 39.470447 ], [ -75.544368, 39.479602 ], [ -75.542693, 39.496568 ], [ -75.528088, 39.498114 ], [ -75.527141, 39.500112 ], [ -75.514756, 39.562612 ], [ -75.511932, 39.567616 ], [ -75.512732, 39.578000 ], [ -75.525677, 39.584048 ], [ -75.531133, 39.587984 ], [ -75.534477, 39.590384 ], [ -75.537213, 39.592944 ], [ -75.539540, 39.594251 ], [ -75.539949, 39.594384 ], [ -75.543965, 39.596000 ], [ -75.545405, 39.596784 ], [ -75.555870, 39.605824 ], [ -75.559446, 39.629812 ], [ -75.526844, 39.655713 ], [ -75.526344, 39.656413 ], [ -75.509342, 39.685313 ], [ -75.509742, 39.686113 ], [ -75.504042, 39.698313 ], [ -75.475384, 39.731057 ], [ -75.474168, 39.735473 ], [ -75.469239, 39.743613 ], [ -75.466263, 39.750737 ], [ -75.466249, 39.750769 ], [ -75.448135, 39.773969 ], [ -75.440623, 39.780926 ], [ -75.437938, 39.783413 ], [ -75.416095, 39.795830 ], [ -75.415041, 39.801786 ], [ -75.390169, 39.816549 ], [ -75.374635, 39.825770 ], [ -75.306500, 39.849812 ], [ -75.271159, 39.849440 ], [ -75.235026, 39.856613 ], [ -75.210972, 39.865706 ], [ -75.210425, 39.865913 ], [ -75.184952, 39.881615 ], [ -75.153925, 39.906144 ], [ -75.133220, 39.922512 ], [ -75.085754, 39.967572 ], [ -75.072017, 39.980612 ], [ -75.056039, 39.991795 ], [ -75.014343, 40.020976 ], [ -74.974713, 40.048711 ], [ -74.974290, 40.048872 ], [ -74.900236, 40.077149 ] ] ] } }\n,\n{ \"type\": \"Feature\", \"properties\": { \"GEO_ID\": \"0400000US37\", \"STATE\": \"37\", \"NAME\": \"North Carolina\", \"LSAD\": \"\", \"CENSUSAREA\": 48617.905000 }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [ [ [ [ -75.753765, 35.199612 ], [ -75.745220, 35.203030 ], [ -75.734171, 35.204347 ], [ -75.718015, 35.209377 ], [ -75.708947, 35.213912 ], [ -75.698972, 35.221166 ], [ -75.694437, 35.222980 ], [ -75.687490, 35.231171 ], [ -75.684006, 35.232913 ], [ -75.681916, 35.232913 ], [ -75.675394, 35.228421 ], [ -75.664512, 35.227514 ], [ -75.640934, 35.233862 ], [ -75.630358, 35.238487 ], [ -75.615378, 35.248938 ], [ -75.599005, 35.256253 ], [ -75.598312, 35.261067 ], [ -75.597960, 35.266704 ], [ -75.596915, 35.269491 ], [ -75.585419, 35.266356 ], [ -75.581935, 35.263917 ], [ -75.561033, 35.266008 ], [ -75.535741, 35.272856 ], [ -75.529393, 35.288272 ], [ -75.523952, 35.318198 ], [ -75.518511, 35.336335 ], [ -75.512610, 35.362853 ], [ -75.506722, 35.387118 ], [ -75.500374, 35.424298 ], [ -75.494933, 35.454224 ], [ -75.487678, 35.485056 ], [ -75.488585, 35.497752 ], [ -75.489618, 35.508471 ], [ -75.487528, 35.525889 ], [ -75.482237, 35.538560 ], [ -75.478610, 35.553069 ], [ -75.478610, 35.599318 ], [ -75.481330, 35.622896 ], [ -75.487678, 35.648287 ], [ -75.498675, 35.666281 ], [ -75.507385, 35.680564 ], [ -75.515745, 35.721671 ], [ -75.515397, 35.730380 ], [ -75.533512, 35.773577 ], [ -75.528992, 35.776289 ], [ -75.522232, 35.774178 ], [ -75.502427, 35.742913 ], [ -75.496086, 35.728515 ], [ -75.479128, 35.678634 ], [ -75.458659, 35.596597 ], [ -75.460061, 35.581314 ], [ -75.462491, 35.553556 ], [ -75.471355, 35.479615 ], [ -75.486771, 35.391652 ], [ -75.502188, 35.320012 ], [ -75.525920, 35.233839 ], [ -75.533627, 35.225825 ], [ -75.544809, 35.228421 ], [ -75.560225, 35.232048 ], [ -75.580176, 35.231142 ], [ -75.610101, 35.227514 ], [ -75.635493, 35.220260 ], [ -75.672673, 35.208471 ], [ -75.728897, 35.190334 ], [ -75.749406, 35.185207 ], [ -75.757916, 35.183079 ], [ -75.769705, 35.180359 ], [ -75.789655, 35.172197 ], [ -75.840438, 35.151340 ], [ -75.912985, 35.119600 ], [ -75.944725, 35.105091 ], [ -75.963768, 35.092395 ], [ -75.982812, 35.081513 ], [ -76.001510, 35.067230 ], [ -76.013145, 35.061855 ], [ -76.014954, 35.065349 ], [ -76.013561, 35.068832 ], [ -76.000949, 35.084234 ], [ -75.991880, 35.092395 ], [ -75.989175, 35.100882 ], [ -75.990569, 35.108546 ], [ -75.989175, 35.115165 ], [ -75.983950, 35.120042 ], [ -75.973499, 35.121087 ], [ -75.966489, 35.117787 ], [ -75.954700, 35.119600 ], [ -75.923867, 35.135017 ], [ -75.910265, 35.142271 ], [ -75.893942, 35.150433 ], [ -75.839531, 35.172197 ], [ -75.819172, 35.176826 ], [ -75.812902, 35.178568 ], [ -75.801444, 35.183079 ], [ -75.793283, 35.188520 ], [ -75.785729, 35.194244 ], [ -75.754289, 35.199402 ], [ -75.753765, 35.199612 ] ] ], [ [ [ -75.675245, 35.929024 ], [ -75.659540, 35.919564 ], [ -75.662938, 35.916166 ], [ -75.662019, 35.906522 ], [ -75.653478, 35.904686 ], [ -75.648519, 35.906982 ], [ -75.645120, 35.905788 ], [ -75.627670, 35.883149 ], [ -75.616833, 35.856331 ], [ -75.619772, 35.847606 ], [ -75.614361, 35.815659 ], [ -75.620454, 35.809253 ], [ -75.624235, 35.809387 ], [ -75.638980, 35.818639 ], [ -75.667891, 35.823540 ], [ -75.675054, 35.830204 ], [ -75.660086, 35.838610 ], [ -75.660598, 35.862541 ], [ -75.663356, 35.869835 ], [ -75.672830, 35.882423 ], [ -75.681415, 35.883980 ], [ -75.697672, 35.901639 ], [ -75.696871, 35.909556 ], [ -75.702165, 35.915428 ], [ -75.723782, 35.925569 ], [ -75.727251, 35.933620 ], [ -75.726807, 35.935844 ], [ -75.718266, 35.939714 ], [ -75.705323, 35.939403 ], [ -75.691150, 35.936932 ], [ -75.686358, 35.932973 ], [ -75.675245, 35.929024 ] ] ], [ [ [ -76.491497, 36.550365 ], [ -76.313215, 36.550551 ], [ -76.313196, 36.550551 ], [ -76.122360, 36.550621 ], [ -76.034751, 36.550653 ], [ -76.026750, 36.550553 ], [ -75.957648, 36.550553 ], [ -75.955748, 36.550553 ], [ -75.953447, 36.550553 ], [ -75.952847, 36.550553 ], [ -75.922046, 36.550654 ], [ -75.911446, 36.550654 ], [ -75.909046, 36.550654 ], [ -75.904745, 36.550654 ], [ -75.903445, 36.550654 ], [ -75.894145, 36.550754 ], [ -75.893245, 36.550654 ], [ -75.891945, 36.550754 ], [ -75.886545, 36.550754 ], [ -75.885945, 36.550754 ], [ -75.880644, 36.550754 ], [ -75.879744, 36.550754 ], [ -75.867044, 36.550754 ], [ -75.856901, 36.500155 ], [ -75.834975, 36.422650 ], [ -75.818735, 36.357579 ], [ -75.796410, 36.290351 ], [ -75.773329, 36.231529 ], [ -75.772510, 36.229440 ], [ -75.759637, 36.204705 ], [ -75.738431, 36.154282 ], [ -75.718310, 36.113674 ], [ -75.696742, 36.077497 ], [ -75.658537, 36.020430 ], [ -75.569794, 35.863301 ], [ -75.552299, 35.822173 ], [ -75.538739, 35.797396 ], [ -75.533012, 35.787377 ], [ -75.536428, 35.780118 ], [ -75.543259, 35.779691 ], [ -75.546675, 35.787377 ], [ -75.553934, 35.799332 ], [ -75.566238, 35.813072 ], [ -75.573083, 35.828867 ], [ -75.588878, 35.844926 ], [ -75.601250, 35.867302 ], [ -75.619151, 35.889415 ], [ -75.617045, 35.906000 ], [ -75.617552, 35.914186 ], [ -75.620114, 35.925288 ], [ -75.631215, 35.941512 ], [ -75.648899, 35.965758 ], [ -75.668379, 35.978394 ], [ -75.671801, 35.985238 ], [ -75.678909, 35.993925 ], [ -75.723662, 36.003139 ], [ -75.727084, 36.010510 ], [ -75.726558, 36.021040 ], [ -75.722082, 36.032360 ], [ -75.722609, 36.037362 ], [ -75.726821, 36.040521 ], [ -75.737088, 36.040784 ], [ -75.740510, 36.046839 ], [ -75.741563, 36.055526 ], [ -75.739457, 36.066846 ], [ -75.739720, 36.075270 ], [ -75.750250, 36.121076 ], [ -75.750479, 36.131208 ], [ -75.752226, 36.140817 ], [ -75.755720, 36.153922 ], [ -75.775814, 36.201097 ], [ -75.783676, 36.215949 ], [ -75.793286, 36.226432 ], [ -75.794371, 36.227336 ], [ -75.798528, 36.230800 ], [ -75.803690, 36.235853 ], [ -75.811588, 36.244014 ], [ -75.811851, 36.247699 ], [ -75.808165, 36.259545 ], [ -75.814483, 36.285344 ], [ -75.822907, 36.291662 ], [ -75.833964, 36.292188 ], [ -75.837913, 36.294558 ], [ -75.845284, 36.305614 ], [ -75.841335, 36.328517 ], [ -75.831858, 36.339047 ], [ -75.831595, 36.346418 ], [ -75.836201, 36.363135 ], [ -75.843046, 36.371032 ], [ -75.847258, 36.372085 ], [ -75.851470, 36.379456 ], [ -75.852523, 36.384721 ], [ -75.851470, 36.415785 ], [ -75.864106, 36.430527 ], [ -75.880428, 36.435792 ], [ -75.888325, 36.441583 ], [ -75.891484, 36.460537 ], [ -75.899908, 36.482124 ], [ -75.907279, 36.485809 ], [ -75.913071, 36.486336 ], [ -75.917283, 36.485809 ], [ -75.924127, 36.482124 ], [ -75.927333, 36.482815 ], [ -75.935473, 36.490601 ], [ -75.960069, 36.495025 ], [ -75.972545, 36.494671 ], [ -76.003708, 36.506235 ], [ -76.019261, 36.503506 ], [ -76.023627, 36.500778 ], [ -76.029221, 36.494365 ], [ -76.031949, 36.482496 ], [ -76.020216, 36.458620 ], [ -76.012337, 36.447462 ], [ -76.003912, 36.441864 ], [ -75.989869, 36.436808 ], [ -75.980050, 36.435464 ], [ -75.962285, 36.417240 ], [ -75.940676, 36.418850 ], [ -75.936446, 36.423079 ], [ -75.932694, 36.427627 ], [ -75.928369, 36.428588 ], [ -75.923601, 36.425788 ], [ -75.916409, 36.389010 ], [ -75.916949, 36.383167 ], [ -75.923511, 36.367796 ], [ -75.923331, 36.361863 ], [ -75.917758, 36.353593 ], [ -75.915331, 36.352335 ], [ -75.895285, 36.319615 ], [ -75.888211, 36.293414 ], [ -75.882154, 36.284674 ], [ -75.872721, 36.282770 ], [ -75.864933, 36.284674 ], [ -75.860520, 36.280607 ], [ -75.861818, 36.266415 ], [ -75.867356, 36.252483 ], [ -75.864154, 36.235522 ], [ -75.858703, 36.222628 ], [ -75.848838, 36.216570 ], [ -75.838367, 36.200129 ], [ -75.841222, 36.193812 ], [ -75.839924, 36.177110 ], [ -75.823915, 36.158332 ], [ -75.822531, 36.145957 ], [ -75.813444, 36.136871 ], [ -75.800378, 36.112728 ], [ -75.791637, 36.082267 ], [ -75.793974, 36.071710 ], [ -75.799779, 36.072640 ], [ -75.836084, 36.092616 ], [ -75.847785, 36.101990 ], [ -75.867792, 36.127262 ], [ -75.866323, 36.141410 ], [ -75.867385, 36.151182 ], [ -75.869828, 36.154580 ], [ -75.875033, 36.157448 ], [ -75.887415, 36.160233 ], [ -75.904999, 36.164188 ], [ -75.920028, 36.164853 ], [ -75.924654, 36.163591 ], [ -75.939047, 36.165518 ], [ -75.995191, 36.178072 ], [ -76.016984, 36.186367 ], [ -76.018936, 36.188318 ], [ -76.031784, 36.189131 ], [ -76.047100, 36.183106 ], [ -76.051626, 36.181325 ], [ -76.063498, 36.173518 ], [ -76.065287, 36.170591 ], [ -76.065450, 36.165224 ], [ -76.059920, 36.155140 ], [ -76.059270, 36.149285 ], [ -76.064224, 36.143775 ], [ -76.071672, 36.140183 ], [ -76.092555, 36.135794 ], [ -76.178946, 36.123424 ], [ -76.184133, 36.121562 ], [ -76.190510, 36.116333 ], [ -76.190784, 36.116108 ], [ -76.192380, 36.113448 ], [ -76.191715, 36.107197 ], [ -76.216599, 36.095409 ], [ -76.238712, 36.098568 ], [ -76.265037, 36.104886 ], [ -76.287150, 36.104886 ], [ -76.298733, 36.101200 ], [ -76.303998, 36.092776 ], [ -76.323478, 36.084879 ], [ -76.331902, 36.083826 ], [ -76.337168, 36.086458 ], [ -76.355069, 36.086458 ], [ -76.410878, 36.078034 ], [ -76.411844, 36.075376 ], [ -76.412984, 36.072243 ], [ -76.420881, 36.060660 ], [ -76.442994, 36.042758 ], [ -76.451418, 36.039073 ], [ -76.458789, 36.028016 ], [ -76.459316, 36.024331 ], [ -76.491959, 36.018013 ], [ -76.514335, 36.005640 ], [ -76.547505, 36.009852 ], [ -76.563300, 36.009852 ], [ -76.575936, 36.006167 ], [ -76.580674, 36.007220 ], [ -76.589625, 36.015644 ], [ -76.603840, 36.033018 ], [ -76.615423, 36.037757 ], [ -76.631745, 36.038283 ], [ -76.653332, 36.035124 ], [ -76.668814, 36.020968 ], [ -76.671759, 36.018276 ], [ -76.684922, 36.009852 ], [ -76.683869, 36.000375 ], [ -76.679657, 35.991951 ], [ -76.684922, 35.983001 ], [ -76.695452, 35.973524 ], [ -76.700190, 35.964573 ], [ -76.697558, 35.951937 ], [ -76.692376, 35.945342 ], [ -76.691766, 35.944566 ], [ -76.673865, 35.935089 ], [ -76.667547, 35.933509 ], [ -76.657017, 35.935089 ], [ -76.608052, 35.936668 ], [ -76.603840, 35.939827 ], [ -76.586992, 35.941933 ], [ -76.528551, 35.944039 ], [ -76.507491, 35.949831 ], [ -76.496961, 35.955096 ], [ -76.473795, 35.960888 ], [ -76.460632, 35.970365 ], [ -76.398242, 35.984317 ], [ -76.389818, 35.980105 ], [ -76.381920, 35.971681 ], [ -76.381394, 35.962730 ], [ -76.365210, 35.944697 ], [ -76.362966, 35.942197 ], [ -76.340327, 35.943250 ], [ -76.317687, 35.946935 ], [ -76.272408, 35.972734 ], [ -76.213966, 35.988002 ], [ -76.176585, 35.993267 ], [ -76.093697, 35.993001 ], [ -76.083131, 35.989845 ], [ -76.062071, 35.993004 ], [ -76.024162, 35.970891 ], [ -76.014685, 35.960361 ], [ -76.014159, 35.957202 ], [ -76.019950, 35.934036 ], [ -76.011526, 35.914029 ], [ -76.004682, 35.905078 ], [ -75.999386, 35.903521 ], [ -75.977830, 35.897181 ], [ -75.966247, 35.899287 ], [ -75.962562, 35.901393 ], [ -75.947820, 35.920347 ], [ -75.934131, 35.928244 ], [ -75.929919, 35.928771 ], [ -75.927286, 35.931930 ], [ -75.926760, 35.940354 ], [ -75.937816, 35.950884 ], [ -75.943608, 35.952464 ], [ -75.946767, 35.955623 ], [ -75.947293, 35.959835 ], [ -75.938343, 35.965100 ], [ -75.899382, 35.977209 ], [ -75.879374, 35.978789 ], [ -75.860420, 35.978262 ], [ -75.849890, 35.976156 ], [ -75.809350, 35.959308 ], [ -75.805138, 35.954043 ], [ -75.800926, 35.944566 ], [ -75.782498, 35.935615 ], [ -75.782498, 35.928244 ], [ -75.778813, 35.918241 ], [ -75.768809, 35.901393 ], [ -75.751961, 35.878227 ], [ -75.753014, 35.871382 ], [ -75.748276, 35.852428 ], [ -75.734587, 35.839266 ], [ -75.727216, 35.822703 ], [ -75.726689, 35.811361 ], [ -75.732612, 35.790666 ], [ -75.738233, 35.778301 ], [ -75.739357, 35.770994 ], [ -75.735422, 35.767622 ], [ -75.724743, 35.742892 ], [ -75.719123, 35.714227 ], [ -75.715188, 35.708045 ], [ -75.712940, 35.698490 ], [ -75.713502, 35.693993 ], [ -75.741605, 35.672073 ], [ -75.742167, 35.655212 ], [ -75.737109, 35.638350 ], [ -75.729802, 35.628795 ], [ -75.729802, 35.625985 ], [ -75.747225, 35.610248 ], [ -75.762963, 35.603503 ], [ -75.778138, 35.592262 ], [ -75.775328, 35.579335 ], [ -75.797248, 35.574276 ], [ -75.837154, 35.570904 ], [ -75.851767, 35.578773 ], [ -75.859636, 35.586641 ], [ -75.869869, 35.582743 ], [ -75.895045, 35.573152 ], [ -75.906848, 35.559101 ], [ -75.908534, 35.555166 ], [ -75.908534, 35.546174 ], [ -75.916403, 35.538305 ], [ -75.945630, 35.534370 ], [ -75.950126, 35.530998 ], [ -75.954623, 35.526502 ], [ -75.964178, 35.511326 ], [ -75.964740, 35.504582 ], [ -75.961929, 35.496713 ], [ -75.963053, 35.493903 ], [ -75.987222, 35.484348 ], [ -75.995652, 35.475355 ], [ -75.994528, 35.463552 ], [ -75.997901, 35.453435 ], [ -76.009704, 35.442194 ], [ -76.012514, 35.432639 ], [ -76.011390, 35.423084 ], [ -76.014762, 35.416902 ], [ -76.020945, 35.410719 ], [ -76.025441, 35.408471 ], [ -76.037244, 35.414091 ], [ -76.050171, 35.415778 ], [ -76.059726, 35.410157 ], [ -76.063661, 35.405099 ], [ -76.063661, 35.398354 ], [ -76.060850, 35.392733 ], [ -76.059726, 35.383741 ], [ -76.069281, 35.370813 ], [ -76.092887, 35.361259 ], [ -76.123238, 35.351142 ], [ -76.132793, 35.349455 ], [ -76.142910, 35.338776 ], [ -76.142910, 35.328660 ], [ -76.149655, 35.326411 ], [ -76.165392, 35.328659 ], [ -76.168764, 35.332032 ], [ -76.182254, 35.336528 ], [ -76.205860, 35.336528 ], [ -76.235087, 35.350017 ], [ -76.253072, 35.350017 ], [ -76.257569, 35.344397 ], [ -76.265437, 35.343273 ], [ -76.282299, 35.345521 ], [ -76.304781, 35.355638 ], [ -76.327263, 35.356762 ], [ -76.335132, 35.355638 ], [ -76.340752, 35.346645 ], [ -76.349745, 35.345521 ], [ -76.365483, 35.348893 ], [ -76.374475, 35.355638 ], [ -76.382344, 35.356762 ], [ -76.387965, 35.356762 ], [ -76.399206, 35.348893 ], [ -76.408199, 35.350017 ], [ -76.409323, 35.353390 ], [ -76.420564, 35.359010 ], [ -76.431805, 35.362383 ], [ -76.436301, 35.378120 ], [ -76.448666, 35.383741 ], [ -76.455411, 35.383741 ], [ -76.462156, 35.380368 ], [ -76.472273, 35.371375 ], [ -76.485762, 35.371375 ], [ -76.499251, 35.381492 ], [ -76.521733, 35.391609 ], [ -76.546901, 35.389673 ], [ -76.580187, 35.387113 ], [ -76.606041, 35.387113 ], [ -76.620654, 35.378120 ], [ -76.628125, 35.368515 ], [ -76.628523, 35.368003 ], [ -76.619530, 35.345521 ], [ -76.604962, 35.337751 ], [ -76.602669, 35.336528 ], [ -76.588055, 35.333156 ], [ -76.554332, 35.332032 ], [ -76.548712, 35.328659 ], [ -76.500375, 35.321915 ], [ -76.482389, 35.314046 ], [ -76.472273, 35.294936 ], [ -76.467776, 35.276951 ], [ -76.467776, 35.261213 ], [ -76.477893, 35.243228 ], [ -76.483514, 35.240979 ], [ -76.490258, 35.233111 ], [ -76.491382, 35.220745 ], [ -76.494755, 35.212877 ], [ -76.504872, 35.207256 ], [ -76.521733, 35.192643 ], [ -76.536346, 35.174657 ], [ -76.539719, 35.166788 ], [ -76.536346, 35.149927 ], [ -76.536346, 35.142058 ], [ -76.546463, 35.122948 ], [ -76.557704, 35.116204 ], [ -76.561077, 35.108335 ], [ -76.568945, 35.097094 ], [ -76.575690, 35.092598 ], [ -76.586931, 35.092598 ], [ -76.592552, 35.083605 ], [ -76.593676, 35.075736 ], [ -76.600420, 35.067867 ], [ -76.613910, 35.061123 ], [ -76.622902, 35.061123 ], [ -76.631895, 35.056626 ], [ -76.639764, 35.051006 ], [ -76.646509, 35.042013 ], [ -76.646509, 35.025151 ], [ -76.644562, 35.019799 ], [ -76.642012, 35.012786 ], [ -76.628523, 34.994801 ], [ -76.588055, 34.991428 ], [ -76.566697, 34.998173 ], [ -76.539719, 35.000421 ], [ -76.502623, 35.007166 ], [ -76.495879, 35.011662 ], [ -76.491382, 35.017283 ], [ -76.490258, 35.034144 ], [ -76.480141, 35.052130 ], [ -76.474521, 35.070116 ], [ -76.468796, 35.075345 ], [ -76.463468, 35.076411 ], [ -76.435762, 35.057941 ], [ -76.432565, 35.049061 ], [ -76.431855, 35.030945 ], [ -76.425461, 35.001464 ], [ -76.406281, 34.987256 ], [ -76.398466, 34.976600 ], [ -76.395625, 34.975179 ], [ -76.332044, 34.970917 ], [ -76.326361, 34.976245 ], [ -76.329557, 34.986901 ], [ -76.350159, 35.016737 ], [ -76.360815, 35.025973 ], [ -76.364367, 35.031301 ], [ -76.364367, 35.034853 ], [ -76.352290, 35.033077 ], [ -76.318546, 35.020645 ], [ -76.293682, 35.009633 ], [ -76.288354, 35.005726 ], [ -76.288709, 34.997201 ], [ -76.290930, 34.994285 ], [ -76.293851, 34.991948 ], [ -76.296188, 34.986690 ], [ -76.296524, 34.976245 ], [ -76.290691, 34.969059 ], [ -76.275567, 34.960971 ], [ -76.274856, 34.953867 ], [ -76.277698, 34.940014 ], [ -76.284092, 34.936817 ], [ -76.311442, 34.910177 ], [ -76.319967, 34.897745 ], [ -76.333820, 34.882116 ], [ -76.347673, 34.872171 ], [ -76.368274, 34.872881 ], [ -76.377154, 34.867553 ], [ -76.379641, 34.862580 ], [ -76.395269, 34.855476 ], [ -76.400242, 34.855476 ], [ -76.411609, 34.841268 ], [ -76.415871, 34.825640 ], [ -76.415871, 34.813563 ], [ -76.403108, 34.806153 ], [ -76.390254, 34.805568 ], [ -76.383827, 34.807906 ], [ -76.373247, 34.817115 ], [ -76.362591, 34.824219 ], [ -76.341279, 34.842689 ], [ -76.322808, 34.861160 ], [ -76.273986, 34.897298 ], [ -76.233672, 34.925926 ], [ -76.194936, 34.962747 ], [ -76.160127, 34.991163 ], [ -76.111820, 35.034497 ], [ -76.093349, 35.048705 ], [ -76.069906, 35.075701 ], [ -76.064933, 35.077121 ], [ -76.043621, 35.070017 ], [ -76.038648, 35.065045 ], [ -76.035933, 35.058987 ], [ -76.073000, 35.030509 ], [ -76.137269, 34.987858 ], [ -76.233088, 34.905477 ], [ -76.310210, 34.852309 ], [ -76.386804, 34.784579 ], [ -76.450454, 34.714450 ], [ -76.494068, 34.661970 ], [ -76.524199, 34.615416 ], [ -76.535946, 34.588577 ], [ -76.555196, 34.615993 ], [ -76.553806, 34.628252 ], [ -76.550423, 34.630789 ], [ -76.549343, 34.645585 ], [ -76.579467, 34.660174 ], [ -76.618719, 34.672550 ], [ -76.642939, 34.677618 ], [ -76.662645, 34.685524 ], [ -76.676312, 34.693151 ], [ -76.693751, 34.692509 ], [ -76.726969, 34.696690 ], [ -76.770044, 34.696899 ], [ -76.817453, 34.693722 ], [ -76.906257, 34.682820 ], [ -76.990262, 34.669623 ], [ -77.031105, 34.661184 ], [ -77.112800, 34.639352 ], [ -77.136843, 34.632926 ], [ -77.169701, 34.622023 ], [ -77.209161, 34.605032 ], [ -77.240991, 34.587507 ], [ -77.322524, 34.535574 ], [ -77.462922, 34.471354 ], [ -77.491796, 34.456098 ], [ -77.517960, 34.440483 ], [ -77.556943, 34.417218 ], [ -77.582323, 34.400506 ], [ -77.635034, 34.359555 ], [ -77.661673, 34.341868 ], [ -77.687226, 34.320444 ], [ -77.713322, 34.294879 ], [ -77.715916, 34.292719 ], [ -77.740136, 34.272546 ], [ -77.764022, 34.245641 ], [ -77.829209, 34.162618 ], [ -77.841785, 34.140747 ], [ -77.870327, 34.079221 ], [ -77.874384, 34.075671 ], [ -77.878161, 34.067963 ], [ -77.915536, 33.971723 ], [ -77.927926, 33.945265 ], [ -77.937313, 33.928645 ], [ -77.946568, 33.912261 ], [ -77.956881, 33.877790 ], [ -77.960172, 33.853315 ], [ -77.970606, 33.844517 ], [ -78.006765, 33.858704 ], [ -78.009973, 33.861406 ], [ -78.009426, 33.867823 ], [ -78.018689, 33.888289 ], [ -78.095429, 33.906031 ], [ -78.136952, 33.912178 ], [ -78.177720, 33.914272 ], [ -78.276147, 33.912364 ], [ -78.383964, 33.901946 ], [ -78.509042, 33.865515 ], [ -78.541087, 33.851112 ], [ -78.650500, 33.944035 ], [ -78.710141, 33.994688 ], [ -78.712206, 33.996732 ], [ -79.071169, 34.299240 ], [ -79.143242, 34.359817 ], [ -79.151485, 34.366753 ], [ -79.190739, 34.399751 ], [ -79.192041, 34.401040 ], [ -79.198982, 34.406699 ], [ -79.323249, 34.514634 ], [ -79.324854, 34.516282 ], [ -79.331328, 34.521869 ], [ -79.358317, 34.545358 ], [ -79.450034, 34.621036 ], [ -79.459766, 34.629027 ], [ -79.461318, 34.630126 ], [ -79.461754, 34.630432 ], [ -79.468717, 34.635323 ], [ -79.471599, 34.637200 ], [ -79.479305, 34.644640 ], [ -79.490201, 34.653819 ], [ -79.519043, 34.677321 ], [ -79.520269, 34.678327 ], [ -79.554454, 34.706363 ], [ -79.561691, 34.711996 ], [ -79.631577, 34.768835 ], [ -79.634216, 34.771012 ], [ -79.688088, 34.804897 ], [ -79.690201, 34.804937 ], [ -79.692948, 34.804973 ], [ -79.744116, 34.805651 ], [ -79.744925, 34.805686 ], [ -79.772829, 34.805954 ], [ -79.773607, 34.805931 ], [ -79.927618, 34.806555 ], [ -80.027464, 34.808726 ], [ -80.042764, 34.809097 ], [ -80.072912, 34.809736 ], [ -80.077223, 34.809716 ], [ -80.098022, 34.810147 ], [ -80.098994, 34.810147 ], [ -80.320413, 34.813813 ], [ -80.399871, 34.815128 ], [ -80.417014, 34.815508 ], [ -80.418433, 34.815622 ], [ -80.419586, 34.815581 ], [ -80.425902, 34.815810 ], [ -80.434843, 34.815968 ], [ -80.448766, 34.816332 ], [ -80.451660, 34.816396 ], [ -80.485683, 34.816732 ], [ -80.561657, 34.817481 ], [ -80.561674, 34.817481 ], [ -80.621222, 34.818174 ], [ -80.625993, 34.818239 ], [ -80.626077, 34.818217 ], [ -80.644656, 34.818568 ], [ -80.646601, 34.818592 ], [ -80.771792, 34.819646 ], [ -80.777712, 34.819697 ], [ -80.796750, 34.825281 ], [ -80.782042, 34.935782 ], [ -80.806461, 34.962894 ], [ -80.806784, 34.963249 ], [ -80.840461, 35.001566 ], [ -80.906417, 35.076608 ], [ -80.906553, 35.076763 ], [ -80.934950, 35.107409 ], [ -80.957870, 35.092639 ], [ -81.041489, 35.044703 ], [ -81.057465, 35.061983 ], [ -81.058029, 35.073190 ], [ -81.057236, 35.086129 ], [ -81.052078, 35.096276 ], [ -81.046524, 35.100617 ], [ -81.036163, 35.103205 ], [ -81.032547, 35.109102 ], [ -81.042758, 35.146042 ], [ -81.043407, 35.148390 ], [ -81.090215, 35.152627 ], [ -81.239358, 35.159974 ], [ -81.241686, 35.160081 ], [ -81.269199, 35.161140 ], [ -81.328020, 35.163404 ], [ -81.366599, 35.164889 ], [ -81.366691, 35.164893 ], [ -81.452398, 35.168293 ], [ -81.461408, 35.168657 ], [ -81.493401, 35.169951 ], [ -81.494265, 35.169882 ], [ -81.768073, 35.180132 ], [ -81.857832, 35.183492 ], [ -81.874433, 35.184113 ], [ -81.969325, 35.187215 ], [ -82.167676, 35.193699 ], [ -82.176874, 35.193790 ], [ -82.185513, 35.194355 ], [ -82.195483, 35.194951 ], [ -82.216217, 35.196044 ], [ -82.230517, 35.196764 ], [ -82.230915, 35.196784 ], [ -82.257515, 35.198636 ], [ -82.288453, 35.198605 ], [ -82.352430, 35.206595 ], [ -82.384029, 35.210542 ], [ -82.476136, 35.175486 ], [ -82.516910, 35.163029 ], [ -82.517284, 35.162643 ], [ -82.535804, 35.158699 ], [ -82.536527, 35.159137 ], [ -82.574406, 35.144216 ], [ -82.580127, 35.141963 ], [ -82.582264, 35.142268 ], [ -82.686496, 35.121822 ], [ -82.686738, 35.119790 ], [ -82.764464, 35.068177 ], [ -82.781973, 35.066817 ], [ -82.780546, 35.069043 ], [ -82.779116, 35.073674 ], [ -82.777407, 35.076885 ], [ -82.781062, 35.084492 ], [ -82.781130, 35.084585 ], [ -82.897499, 35.056021 ], [ -83.008447, 35.026974 ], [ -83.108535, 35.000771 ], [ -83.108714, 35.000768 ], [ -83.483064, 34.993737 ], [ -83.549381, 34.992492 ], [ -83.620185, 34.992091 ], [ -83.673621, 34.987111 ], [ -83.936413, 34.987485 ], [ -83.936646, 34.987485 ], [ -84.005457, 34.987440 ], [ -84.021357, 34.987430 ], [ -84.029954, 34.987321 ], [ -84.129455, 34.987504 ], [ -84.129555, 34.987504 ], [ -84.321869, 34.988408 ], [ -84.308576, 35.092761 ], [ -84.308437, 35.093173 ], [ -84.292321, 35.206677 ], [ -84.290240, 35.225572 ], [ -84.227818, 35.267878 ], [ -84.223718, 35.269078 ], [ -84.211818, 35.266078 ], [ -84.202879, 35.255772 ], [ -84.124915, 35.249830 ], [ -84.121150, 35.250644 ], [ -84.115279, 35.250438 ], [ -84.115048, 35.249765 ], [ -84.097508, 35.247382 ], [ -84.055712, 35.268182 ], [ -84.029033, 35.291049 ], [ -84.023510, 35.295783 ], [ -84.021410, 35.301383 ], [ -84.032479, 35.325318 ], [ -84.032450, 35.326530 ], [ -84.038081, 35.348363 ], [ -84.037494, 35.349850 ], [ -84.035343, 35.350833 ], [ -84.024756, 35.353896 ], [ -84.002250, 35.422548 ], [ -83.999906, 35.425201 ], [ -83.961400, 35.459496 ], [ -83.961054, 35.462838 ], [ -83.961056, 35.463738 ], [ -83.961053, 35.464143 ], [ -83.952882, 35.460635 ], [ -83.952676, 35.460763 ], [ -83.933876, 35.472438 ], [ -83.880074, 35.518745 ], [ -83.756917, 35.563604 ], [ -83.676268, 35.570289 ], [ -83.662957, 35.569138 ], [ -83.640498, 35.566075 ], [ -83.498335, 35.562981 ], [ -83.485527, 35.568204 ], [ -83.480617, 35.576633 ], [ -83.478523, 35.579202 ], [ -83.479082, 35.583316 ], [ -83.445802, 35.611803 ], [ -83.366941, 35.638728 ], [ -83.297154, 35.657750 ], [ -83.254231, 35.695807 ], [ -83.250695, 35.709349 ], [ -83.255489, 35.714974 ], [ -83.251247, 35.719916 ], [ -83.240669, 35.726760 ], [ -83.164909, 35.759965 ], [ -83.100233, 35.774745 ], [ -83.100329, 35.774804 ], [ -83.100225, 35.774765 ], [ -82.995803, 35.773128 ], [ -82.983970, 35.778010 ], [ -82.964108, 35.794100 ], [ -82.962842, 35.795126 ], [ -82.918356, 35.845467 ], [ -82.897980, 35.881278 ], [ -82.913338, 35.924113 ], [ -82.898506, 35.945100 ], [ -82.898505, 35.945101 ], [ -82.874159, 35.952698 ], [ -82.852554, 35.949089 ], [ -82.830112, 35.932972 ], [ -82.778625, 35.974792 ], [ -82.754465, 36.004304 ], [ -82.715365, 36.024253 ], [ -82.683565, 36.046104 ], [ -82.637165, 36.065805 ], [ -82.632265, 36.065705 ], [ -82.619205, 36.056556 ], [ -82.602877, 36.039833 ], [ -82.615062, 36.000306 ], [ -82.611262, 35.973155 ], [ -82.596774, 35.964987 ], [ -82.557529, 35.954671 ], [ -82.512598, 35.975664 ], [ -82.507068, 35.977475 ], [ -82.505860, 35.978342 ], [ -82.487451, 35.991557 ], [ -82.487411, 35.991634 ], [ -82.462958, 36.007309 ], [ -82.416857, 36.072885 ], [ -82.409458, 36.083409 ], [ -82.375558, 36.105609 ], [ -82.371383, 36.106388 ], [ -82.366566, 36.107650 ], [ -82.360919, 36.110614 ], [ -82.348422, 36.115929 ], [ -82.329177, 36.117427 ], [ -82.325169, 36.119363 ], [ -82.237737, 36.139189 ], [ -82.236415, 36.139926 ], [ -82.235479, 36.140748 ], [ -82.234807, 36.141720 ], [ -82.222052, 36.156911 ], [ -82.211251, 36.159012 ], [ -82.147948, 36.149516 ], [ -82.136547, 36.128817 ], [ -82.137974, 36.119576 ], [ -82.130646, 36.106417 ], [ -82.127146, 36.104417 ], [ -82.080518, 36.105710 ], [ -82.080143, 36.105720 ], [ -82.026640, 36.130222 ], [ -81.960101, 36.228131 ], [ -81.932994, 36.264881 ], [ -81.918113, 36.287110 ], [ -81.908137, 36.302013 ], [ -81.855005, 36.337259 ], [ -81.800812, 36.358073 ], [ -81.793688, 36.360428 ], [ -81.789712, 36.348324 ], [ -81.764927, 36.338672 ], [ -81.747842, 36.337356 ], [ -81.730976, 36.341187 ], [ -81.725938, 36.340364 ], [ -81.720969, 36.387500 ], [ -81.714277, 36.450978 ], [ -81.715082, 36.453365 ], [ -81.697287, 36.484738 ], [ -81.695907, 36.491580 ], [ -81.696835, 36.493393 ], [ -81.697261, 36.496141 ], [ -81.698265, 36.497221 ], [ -81.699928, 36.498018 ], [ -81.700238, 36.500475 ], [ -81.699923, 36.500865 ], [ -81.697970, 36.504063 ], [ -81.697290, 36.504887 ], [ -81.697829, 36.507544 ], [ -81.697744, 36.508448 ], [ -81.699446, 36.511504 ], [ -81.699601, 36.512883 ], [ -81.700093, 36.514158 ], [ -81.700553, 36.515190 ], [ -81.707963, 36.536209 ], [ -81.699962, 36.539714 ], [ -81.677535, 36.588117 ], [ -81.606970, 36.587094 ], [ -81.521032, 36.580520 ], [ -81.353322, 36.574723 ], [ -81.353169, 36.574724 ], [ -81.307511, 36.575024 ], [ -81.061866, 36.567020 ], [ -81.058844, 36.566976 ], [ -80.945988, 36.563196 ], [ -80.944338, 36.563058 ], [ -80.901836, 36.561754 ], [ -80.901726, 36.561751 ], [ -80.837954, 36.559131 ], [ -80.837641, 36.559118 ], [ -80.837089, 36.559154 ], [ -80.744101, 36.561686 ], [ -80.687539, 36.561411 ], [ -80.612158, 36.558127 ], [ -80.440100, 36.550630 ], [ -80.432628, 36.550302 ], [ -80.431605, 36.550219 ], [ -80.228263, 36.543867 ], [ -80.225408, 36.543748 ], [ -80.171636, 36.543219 ], [ -80.169535, 36.543190 ], [ -80.053455, 36.542623 ], [ -80.027269, 36.542495 ], [ -79.967511, 36.542502 ], [ -79.966979, 36.542475 ], [ -79.920239, 36.542365 ], [ -79.714855, 36.541884 ], [ -79.667309, 36.541772 ], [ -79.666827, 36.541772 ], [ -79.510961, 36.540740 ], [ -79.510647, 36.540738 ], [ -79.470047, 36.541025 ], [ -79.445961, 36.541195 ], [ -79.445687, 36.541218 ], [ -79.342696, 36.541382 ], [ -79.218638, 36.541579 ], [ -79.209480, 36.541594 ], [ -79.208686, 36.541571 ], [ -79.137936, 36.541739 ], [ -79.126078, 36.541533 ], [ -79.124736, 36.541568 ], [ -78.971814, 36.542123 ], [ -78.970577, 36.542154 ], [ -78.942254, 36.542079 ], [ -78.942009, 36.542113 ], [ -78.915420, 36.541974 ], [ -78.914543, 36.541972 ], [ -78.796300, 36.541713 ], [ -78.765430, 36.541727 ], [ -78.758392, 36.541852 ], [ -78.734122, 36.541902 ], [ -78.670051, 36.542035 ], [ -78.663317, 36.542011 ], [ -78.533013, 36.541004 ], [ -78.529722, 36.540981 ], [ -78.471022, 36.542307 ], [ -78.470792, 36.542316 ], [ -78.456970, 36.542474 ], [ -78.441199, 36.542687 ], [ -78.436333, 36.542666 ], [ -78.323912, 36.543809 ], [ -78.246681, 36.544341 ], [ -78.245462, 36.544411 ], [ -78.133323, 36.543847 ], [ -78.132911, 36.543811 ], [ -78.046202, 36.544168 ], [ -78.039420, 36.544196 ], [ -78.038938, 36.544173 ], [ -77.899771, 36.544663 ], [ -77.882357, 36.544737 ], [ -77.875280, 36.544754 ], [ -77.767117, 36.544752 ], [ -77.296875, 36.544746 ], [ -77.249690, 36.544745 ], [ -77.164500, 36.546330 ], [ -76.916048, 36.543815 ], [ -76.916001, 36.543818 ], [ -76.915384, 36.543856 ], [ -76.807078, 36.550606 ], [ -76.781296, 36.550659 ], [ -76.541687, 36.550312 ], [ -76.541391, 36.550312 ], [ -76.491497, 36.550365 ] ] ] ] } }\n,\n{ \"type\": \"Feature\", \"properties\": { \"GEO_ID\": \"0400000US45\", \"STATE\": \"45\", \"NAME\": \"South Carolina\", \"LSAD\": \"\", \"CENSUSAREA\": 30060.696000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -82.216217, 35.196044 ], [ -82.195483, 35.194951 ], [ -82.185513, 35.194355 ], [ -82.176874, 35.193790 ], [ -82.167676, 35.193699 ], [ -81.969325, 35.187215 ], [ -81.874433, 35.184113 ], [ -81.857832, 35.183492 ], [ -81.768073, 35.180132 ], [ -81.494265, 35.169882 ], [ -81.493401, 35.169951 ], [ -81.461408, 35.168657 ], [ -81.452398, 35.168293 ], [ -81.366691, 35.164893 ], [ -81.366599, 35.164889 ], [ -81.328020, 35.163404 ], [ -81.269199, 35.161140 ], [ -81.241686, 35.160081 ], [ -81.239358, 35.159974 ], [ -81.090215, 35.152627 ], [ -81.043407, 35.148390 ], [ -81.042758, 35.146042 ], [ -81.032547, 35.109102 ], [ -81.036163, 35.103205 ], [ -81.046524, 35.100617 ], [ -81.052078, 35.096276 ], [ -81.057236, 35.086129 ], [ -81.058029, 35.073190 ], [ -81.057465, 35.061983 ], [ -81.041489, 35.044703 ], [ -80.957870, 35.092639 ], [ -80.934950, 35.107409 ], [ -80.906553, 35.076763 ], [ -80.906417, 35.076608 ], [ -80.840461, 35.001566 ], [ -80.806784, 34.963249 ], [ -80.806461, 34.962894 ], [ -80.782042, 34.935782 ], [ -80.796750, 34.825281 ], [ -80.777712, 34.819697 ], [ -80.771792, 34.819646 ], [ -80.646601, 34.818592 ], [ -80.644656, 34.818568 ], [ -80.626077, 34.818217 ], [ -80.625993, 34.818239 ], [ -80.621222, 34.818174 ], [ -80.561674, 34.817481 ], [ -80.561657, 34.817481 ], [ -80.485683, 34.816732 ], [ -80.451660, 34.816396 ], [ -80.448766, 34.816332 ], [ -80.434843, 34.815968 ], [ -80.425902, 34.815810 ], [ -80.419586, 34.815581 ], [ -80.418433, 34.815622 ], [ -80.417014, 34.815508 ], [ -80.399871, 34.815128 ], [ -80.320413, 34.813813 ], [ -80.098994, 34.810147 ], [ -80.098022, 34.810147 ], [ -80.077223, 34.809716 ], [ -80.072912, 34.809736 ], [ -80.042764, 34.809097 ], [ -80.027464, 34.808726 ], [ -79.927618, 34.806555 ], [ -79.773607, 34.805931 ], [ -79.772829, 34.805954 ], [ -79.744925, 34.805686 ], [ -79.744116, 34.805651 ], [ -79.692948, 34.804973 ], [ -79.690201, 34.804937 ], [ -79.688088, 34.804897 ], [ -79.634216, 34.771012 ], [ -79.631577, 34.768835 ], [ -79.561691, 34.711996 ], [ -79.554454, 34.706363 ], [ -79.520269, 34.678327 ], [ -79.519043, 34.677321 ], [ -79.490201, 34.653819 ], [ -79.479305, 34.644640 ], [ -79.471599, 34.637200 ], [ -79.468717, 34.635323 ], [ -79.461754, 34.630432 ], [ -79.461318, 34.630126 ], [ -79.459766, 34.629027 ], [ -79.450034, 34.621036 ], [ -79.358317, 34.545358 ], [ -79.331328, 34.521869 ], [ -79.324854, 34.516282 ], [ -79.323249, 34.514634 ], [ -79.198982, 34.406699 ], [ -79.192041, 34.401040 ], [ -79.190739, 34.399751 ], [ -79.151485, 34.366753 ], [ -79.143242, 34.359817 ], [ -79.071169, 34.299240 ], [ -78.712206, 33.996732 ], [ -78.710141, 33.994688 ], [ -78.650500, 33.944035 ], [ -78.541087, 33.851112 ], [ -78.553944, 33.847831 ], [ -78.584841, 33.844282 ], [ -78.672260, 33.817587 ], [ -78.714116, 33.800138 ], [ -78.772737, 33.768511 ], [ -78.812931, 33.743472 ], [ -78.862931, 33.705654 ], [ -78.938076, 33.639826 ], [ -79.002109, 33.572114 ], [ -79.007356, 33.566565 ], [ -79.028516, 33.533365 ], [ -79.041125, 33.523773 ], [ -79.084588, 33.483669 ], [ -79.101360, 33.461016 ], [ -79.135441, 33.403867 ], [ -79.147496, 33.378243 ], [ -79.152035, 33.350925 ], [ -79.158429, 33.332811 ], [ -79.162332, 33.327246 ], [ -79.180318, 33.254141 ], [ -79.180563, 33.237955 ], [ -79.172394, 33.206577 ], [ -79.187870, 33.173712 ], [ -79.195631, 33.166016 ], [ -79.215453, 33.155569 ], [ -79.238262, 33.137055 ], [ -79.246090, 33.124865 ], [ -79.290754, 33.110051 ], [ -79.291591, 33.109773 ], [ -79.329909, 33.089986 ], [ -79.337169, 33.072302 ], [ -79.335346, 33.065362 ], [ -79.339313, 33.050336 ], [ -79.359961, 33.006672 ], [ -79.403712, 33.003903 ], [ -79.416515, 33.006815 ], [ -79.423447, 33.015085 ], [ -79.461047, 33.007639 ], [ -79.483499, 33.001265 ], [ -79.488727, 33.015832 ], [ -79.506923, 33.032813 ], [ -79.522449, 33.035350 ], [ -79.557560, 33.021269 ], [ -79.580725, 33.006447 ], [ -79.586590, 32.991334 ], [ -79.601020, 32.979282 ], [ -79.606615, 32.972248 ], [ -79.617611, 32.952726 ], [ -79.617715, 32.944870 ], [ -79.612928, 32.934815 ], [ -79.606194, 32.925953 ], [ -79.585897, 32.926461 ], [ -79.581687, 32.931341 ], [ -79.574951, 32.934526 ], [ -79.572614, 32.933885 ], [ -79.569762, 32.926692 ], [ -79.576006, 32.906235 ], [ -79.631149, 32.888606 ], [ -79.655426, 32.872705 ], [ -79.695141, 32.850398 ], [ -79.699482, 32.839997 ], [ -79.702956, 32.835781 ], [ -79.719879, 32.825796 ], [ -79.716761, 32.813627 ], [ -79.726389, 32.805996 ], [ -79.811021, 32.776960 ], [ -79.818237, 32.766352 ], [ -79.840350, 32.756816 ], [ -79.848527, 32.755248 ], [ -79.866742, 32.757422 ], [ -79.872232, 32.752128 ], [ -79.873605, 32.745657 ], [ -79.868352, 32.734849 ], [ -79.870336, 32.727777 ], [ -79.888028, 32.695177 ], [ -79.884961, 32.684402 ], [ -79.915682, 32.664915 ], [ -79.968468, 32.639732 ], [ -79.975248, 32.639537 ], [ -79.986917, 32.626388 ], [ -79.991750, 32.616389 ], [ -79.999374, 32.611851 ], [ -80.010505, 32.608852 ], [ -80.037276, 32.610236 ], [ -80.077039, 32.603319 ], [ -80.121368, 32.590523 ], [ -80.148406, 32.578479 ], [ -80.167286, 32.559885 ], [ -80.171764, 32.546118 ], [ -80.188401, 32.553604 ], [ -80.193676, 32.554213 ], [ -80.205230, 32.555547 ], [ -80.246361, 32.531114 ], [ -80.249566, 32.529584 ], [ -80.277681, 32.516161 ], [ -80.332438, 32.478104 ], [ -80.338354, 32.478730 ], [ -80.343883, 32.490795 ], [ -80.363956, 32.496098 ], [ -80.380716, 32.486359 ], [ -80.386827, 32.478810 ], [ -80.392561, 32.475332 ], [ -80.413487, 32.470672 ], [ -80.415943, 32.472074 ], [ -80.417896, 32.476076 ], [ -80.418502, 32.490894 ], [ -80.423454, 32.497989 ], [ -80.439407, 32.503472 ], [ -80.452078, 32.497286 ], [ -80.465710, 32.495300 ], [ -80.472068, 32.496964 ], [ -80.476910, 32.485390 ], [ -80.480250, 32.477407 ], [ -80.484617, 32.460976 ], [ -80.480156, 32.447048 ], [ -80.467588, 32.425259 ], [ -80.446075, 32.423721 ], [ -80.432960, 32.410659 ], [ -80.429941, 32.401782 ], [ -80.429291, 32.389667 ], [ -80.434303, 32.375193 ], [ -80.445451, 32.350335 ], [ -80.456814, 32.336884 ], [ -80.455192, 32.326458 ], [ -80.466342, 32.319170 ], [ -80.517871, 32.298796 ], [ -80.539429, 32.287024 ], [ -80.545688, 32.282076 ], [ -80.571096, 32.273278 ], [ -80.596394, 32.273549 ], [ -80.618286, 32.260183 ], [ -80.638857, 32.255618 ], [ -80.658634, 32.248638 ], [ -80.669166, 32.216783 ], [ -80.688857, 32.200971 ], [ -80.721463, 32.160427 ], [ -80.749091, 32.140137 ], [ -80.789996, 32.122494 ], [ -80.812503, 32.109746 ], [ -80.821530, 32.108589 ], [ -80.828394, 32.113222 ], [ -80.831531, 32.112709 ], [ -80.844431, 32.109709 ], [ -80.858735, 32.099581 ], [ -80.878111, 32.079792 ], [ -80.905378, 32.051943 ], [ -80.892344, 32.043764 ], [ -80.885517, 32.034600 ], [ -81.004115, 32.072225 ], [ -81.042833, 32.084508 ], [ -81.061850, 32.087935 ], [ -81.113334, 32.113205 ], [ -81.117234, 32.117605 ], [ -81.122034, 32.161803 ], [ -81.125457, 32.227130 ], [ -81.128034, 32.276297 ], [ -81.120333, 32.285796 ], [ -81.122333, 32.305395 ], [ -81.134332, 32.341693 ], [ -81.140932, 32.349393 ], [ -81.168032, 32.368391 ], [ -81.199029, 32.467286 ], [ -81.275415, 32.539457 ], [ -81.286776, 32.544831 ], [ -81.318255, 32.559722 ], [ -81.328753, 32.561228 ], [ -81.348155, 32.569294 ], [ -81.389258, 32.595385 ], [ -81.389338, 32.595436 ], [ -81.411906, 32.618410 ], [ -81.418660, 32.629392 ], [ -81.418431, 32.634704 ], [ -81.414761, 32.637440 ], [ -81.405134, 32.744964 ], [ -81.404949, 32.747027 ], [ -81.423772, 32.810514 ], [ -81.499830, 32.963816 ], [ -81.494736, 32.978998 ], [ -81.491495, 32.998572 ], [ -81.496637, 33.010224 ], [ -81.511690, 33.024506 ], [ -81.541831, 33.045654 ], [ -81.615756, 33.092534 ], [ -81.620287, 33.095408 ], [ -81.696934, 33.116551 ], [ -81.772251, 33.180120 ], [ -81.851975, 33.247408 ], [ -81.852136, 33.247544 ], [ -81.902737, 33.331242 ], [ -81.912572, 33.408811 ], [ -81.957934, 33.468632 ], [ -81.967037, 33.480636 ], [ -82.007138, 33.522835 ], [ -82.007638, 33.523335 ], [ -82.014293, 33.530313 ], [ -82.028238, 33.544934 ], [ -82.046335, 33.563830 ], [ -82.069039, 33.575382 ], [ -82.098816, 33.586358 ], [ -82.116630, 33.589723 ], [ -82.124841, 33.591274 ], [ -82.129080, 33.589925 ], [ -82.135046, 33.591044 ], [ -82.179854, 33.615945 ], [ -82.196583, 33.630582 ], [ -82.218649, 33.686299 ], [ -82.247472, 33.752591 ], [ -82.301457, 33.801864 ], [ -82.324480, 33.820033 ], [ -82.403881, 33.865477 ], [ -82.408354, 33.866320 ], [ -82.422803, 33.863754 ], [ -82.429164, 33.865844 ], [ -82.564483, 33.955744 ], [ -82.564582, 33.955810 ], [ -82.597079, 34.012390 ], [ -82.640701, 34.088341 ], [ -82.641252, 34.088914 ], [ -82.652175, 34.099704 ], [ -82.654019, 34.100346 ], [ -82.658561, 34.103118 ], [ -82.659077, 34.103544 ], [ -82.668113, 34.120160 ], [ -82.677320, 34.131657 ], [ -82.704140, 34.141007 ], [ -82.717507, 34.150504 ], [ -82.731881, 34.178363 ], [ -82.741491, 34.208709 ], [ -82.741920, 34.210063 ], [ -82.744415, 34.224913 ], [ -82.743461, 34.227343 ], [ -82.741980, 34.230196 ], [ -82.755028, 34.276067 ], [ -82.766078, 34.293509 ], [ -82.848651, 34.423844 ], [ -82.874864, 34.468891 ], [ -82.873831, 34.471508 ], [ -82.882864, 34.479003 ], [ -82.902665, 34.485902 ], [ -82.939067, 34.486202 ], [ -82.979568, 34.482702 ], [ -82.992215, 34.479198 ], [ -82.992671, 34.479072 ], [ -82.995284, 34.474549 ], [ -83.006848, 34.474376 ], [ -83.034712, 34.483495 ], [ -83.052161, 34.493062 ], [ -83.072746, 34.504349 ], [ -83.087189, 34.515939 ], [ -83.106874, 34.534053 ], [ -83.170278, 34.592398 ], [ -83.170978, 34.598798 ], [ -83.167523, 34.600424 ], [ -83.240676, 34.624307 ], [ -83.240669, 34.624507 ], [ -83.291683, 34.653396 ], [ -83.337867, 34.687681 ], [ -83.338194, 34.687924 ], [ -83.351293, 34.701703 ], [ -83.350976, 34.713243 ], [ -83.351392, 34.714456 ], [ -83.352485, 34.715993 ], [ -83.352422, 34.716111 ], [ -83.339129, 34.741266 ], [ -83.324060, 34.788691 ], [ -83.283151, 34.821328 ], [ -83.267293, 34.832748 ], [ -83.242962, 34.877749 ], [ -83.143261, 34.924756 ], [ -83.108535, 35.000771 ], [ -83.008447, 35.026974 ], [ -82.897499, 35.056021 ], [ -82.781130, 35.084585 ], [ -82.781062, 35.084492 ], [ -82.777407, 35.076885 ], [ -82.779116, 35.073674 ], [ -82.780546, 35.069043 ], [ -82.781973, 35.066817 ], [ -82.764464, 35.068177 ], [ -82.686738, 35.119790 ], [ -82.686496, 35.121822 ], [ -82.582264, 35.142268 ], [ -82.580127, 35.141963 ], [ -82.574406, 35.144216 ], [ -82.536527, 35.159137 ], [ -82.535804, 35.158699 ], [ -82.517284, 35.162643 ], [ -82.516910, 35.163029 ], [ -82.476136, 35.175486 ], [ -82.384029, 35.210542 ], [ -82.352430, 35.206595 ], [ -82.288453, 35.198605 ], [ -82.257515, 35.198636 ], [ -82.230915, 35.196784 ], [ -82.230517, 35.196764 ], [ -82.216217, 35.196044 ] ] ] } }\n,\n{ \"type\": \"Feature\", \"properties\": { \"GEO_ID\": \"0400000US53\", \"STATE\": \"53\", \"NAME\": \"Washington\", \"LSAD\": \"\", \"CENSUSAREA\": 66455.521000 }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [ [ [ [ -122.397349, 47.912401 ], [ -122.419274, 47.912125 ], [ -122.431035, 47.914732 ], [ -122.445519, 47.930226 ], [ -122.445759, 47.936190 ], [ -122.440790, 47.946594 ], [ -122.440760, 47.951845 ], [ -122.446682, 47.963155 ], [ -122.472660, 47.988449 ], [ -122.487505, 47.990729 ], [ -122.501257, 47.987089 ], [ -122.514813, 47.981152 ], [ -122.517780, 47.974916 ], [ -122.521219, 47.972997 ], [ -122.546824, 47.967215 ], [ -122.552053, 47.973644 ], [ -122.551032, 47.977346 ], [ -122.543063, 47.985983 ], [ -122.541564, 47.992998 ], [ -122.542924, 47.996404 ], [ -122.560018, 48.006502 ], [ -122.581780, 48.010386 ], [ -122.607342, 48.030992 ], [ -122.596786, 48.038834 ], [ -122.593621, 48.047200 ], [ -122.594922, 48.056318 ], [ -122.614028, 48.072788 ], [ -122.613217, 48.079485 ], [ -122.607291, 48.088034 ], [ -122.598301, 48.110616 ], [ -122.602109, 48.135249 ], [ -122.609568, 48.151860 ], [ -122.617464, 48.159055 ], [ -122.633167, 48.163281 ], [ -122.656020, 48.162513 ], [ -122.671235, 48.157312 ], [ -122.677337, 48.154587 ], [ -122.679556, 48.155113 ], [ -122.686626, 48.174653 ], [ -122.693084, 48.181509 ], [ -122.711508, 48.193573 ], [ -122.735030, 48.199964 ], [ -122.744612, 48.209650 ], [ -122.763042, 48.215342 ], [ -122.770045, 48.224395 ], [ -122.769939, 48.227548 ], [ -122.752563, 48.260061 ], [ -122.732022, 48.279425 ], [ -122.722590, 48.304268 ], [ -122.707077, 48.315286 ], [ -122.673731, 48.354683 ], [ -122.664928, 48.374823 ], [ -122.664659, 48.401508 ], [ -122.644798, 48.405488 ], [ -122.634991, 48.404244 ], [ -122.632643, 48.401068 ], [ -122.634024, 48.398858 ], [ -122.637339, 48.398029 ], [ -122.637892, 48.395681 ], [ -122.635820, 48.395128 ], [ -122.627809, 48.397200 ], [ -122.617174, 48.407145 ], [ -122.609715, 48.411565 ], [ -122.601980, 48.409907 ], [ -122.596732, 48.405626 ], [ -122.595351, 48.397200 ], [ -122.585038, 48.395166 ], [ -122.588891, 48.363005 ], [ -122.585162, 48.353304 ], [ -122.565525, 48.348217 ], [ -122.551334, 48.342138 ], [ -122.515979, 48.320419 ], [ -122.506568, 48.310041 ], [ -122.504729, 48.300373 ], [ -122.505828, 48.297677 ], [ -122.519535, 48.288314 ], [ -122.522756, 48.285504 ], [ -122.530976, 48.282445 ], [ -122.551793, 48.281512 ], [ -122.558332, 48.282061 ], [ -122.574872, 48.294903 ], [ -122.584086, 48.297987 ], [ -122.599532, 48.298303 ], [ -122.618466, 48.294159 ], [ -122.626757, 48.288991 ], [ -122.620748, 48.282961 ], [ -122.623779, 48.269431 ], [ -122.652639, 48.265081 ], [ -122.653430, 48.259340 ], [ -122.669210, 48.240614 ], [ -122.668385, 48.223967 ], [ -122.631260, 48.220686 ], [ -122.628352, 48.222467 ], [ -122.606406, 48.208262 ], [ -122.588138, 48.185940 ], [ -122.585778, 48.182352 ], [ -122.582595, 48.170424 ], [ -122.574905, 48.155593 ], [ -122.567936, 48.148624 ], [ -122.558205, 48.119579 ], [ -122.559911, 48.114186 ], [ -122.571615, 48.105113 ], [ -122.571853, 48.102143 ], [ -122.554559, 48.077392 ], [ -122.545120, 48.052550 ], [ -122.538953, 48.050232 ], [ -122.516314, 48.057181 ], [ -122.513994, 48.059077 ], [ -122.511081, 48.075301 ], [ -122.516906, 48.081085 ], [ -122.525422, 48.096537 ], [ -122.513276, 48.097538 ], [ -122.491104, 48.094242 ], [ -122.461606, 48.068501 ], [ -122.448419, 48.054323 ], [ -122.431266, 48.045001 ], [ -122.400628, 48.036563 ], [ -122.387382, 48.034030 ], [ -122.376259, 48.034457 ], [ -122.373263, 48.000791 ], [ -122.369161, 47.995295 ], [ -122.353611, 47.981433 ], [ -122.350254, 47.969355 ], [ -122.349597, 47.958796 ], [ -122.350741, 47.953235 ], [ -122.358812, 47.937420 ], [ -122.367876, 47.932415 ], [ -122.376837, 47.923703 ], [ -122.375780, 47.910252 ], [ -122.377300, 47.905941 ], [ -122.380497, 47.904023 ], [ -122.390420, 47.905696 ], [ -122.397349, 47.912401 ] ] ], [ [ [ -122.649405, 48.588457 ], [ -122.642597, 48.588339 ], [ -122.629321, 48.572200 ], [ -122.610841, 48.561146 ], [ -122.592901, 48.553635 ], [ -122.583985, 48.551534 ], [ -122.578856, 48.548130 ], [ -122.572967, 48.529028 ], [ -122.583565, 48.532340 ], [ -122.590194, 48.536259 ], [ -122.599948, 48.536904 ], [ -122.619858, 48.529246 ], [ -122.635738, 48.526021 ], [ -122.640414, 48.525860 ], [ -122.649256, 48.528769 ], [ -122.652041, 48.531329 ], [ -122.654342, 48.537956 ], [ -122.653612, 48.548975 ], [ -122.650786, 48.554019 ], [ -122.652385, 48.583432 ], [ -122.649405, 48.588457 ] ] ], [ [ [ -122.714512, 48.608780 ], [ -122.694672, 48.596602 ], [ -122.691745, 48.590612 ], [ -122.670638, 48.568812 ], [ -122.689440, 48.543903 ], [ -122.717278, 48.539739 ], [ -122.722407, 48.540606 ], [ -122.724031, 48.549906 ], [ -122.730480, 48.565602 ], [ -122.736199, 48.569005 ], [ -122.739440, 48.573893 ], [ -122.739898, 48.583949 ], [ -122.724930, 48.603263 ], [ -122.714512, 48.608780 ] ] ], [ [ [ -122.699266, 48.621115 ], [ -122.698060, 48.623080 ], [ -122.674173, 48.629944 ], [ -122.657016, 48.609891 ], [ -122.666149, 48.608088 ], [ -122.676796, 48.610055 ], [ -122.686136, 48.613267 ], [ -122.699266, 48.621115 ] ] ], [ [ [ -122.800217, 48.601690 ], [ -122.804869, 48.595932 ], [ -122.801096, 48.585425 ], [ -122.786586, 48.576666 ], [ -122.771206, 48.562426 ], [ -122.770349, 48.558106 ], [ -122.772384, 48.552143 ], [ -122.782618, 48.545191 ], [ -122.788503, 48.530393 ], [ -122.787347, 48.523012 ], [ -122.777467, 48.517799 ], [ -122.779124, 48.508911 ], [ -122.800414, 48.494467 ], [ -122.816332, 48.487841 ], [ -122.817912, 48.483888 ], [ -122.819730, 48.458843 ], [ -122.813100, 48.452856 ], [ -122.807708, 48.444058 ], [ -122.802509, 48.433098 ], [ -122.803521, 48.428748 ], [ -122.812208, 48.422326 ], [ -122.825803, 48.424131 ], [ -122.874135, 48.418196 ], [ -122.883759, 48.418793 ], [ -122.893646, 48.422655 ], [ -122.889016, 48.435947 ], [ -122.903214, 48.436979 ], [ -122.913888, 48.443231 ], [ -122.917771, 48.439781 ], [ -122.928004, 48.439966 ], [ -122.916460, 48.453263 ], [ -122.920099, 48.458428 ], [ -122.926901, 48.460874 ], [ -122.937881, 48.456221 ], [ -122.962009, 48.451161 ], [ -123.039156, 48.460003 ], [ -123.058154, 48.471522 ], [ -123.067675, 48.479497 ], [ -123.119451, 48.492576 ], [ -123.141478, 48.505291 ], [ -123.151065, 48.513955 ], [ -123.163234, 48.529544 ], [ -123.164057, 48.535622 ], [ -123.161853, 48.539255 ], [ -123.161470, 48.547618 ], [ -123.172412, 48.556486 ], [ -123.176266, 48.562131 ], [ -123.175852, 48.568483 ], [ -123.171958, 48.572255 ], [ -123.173061, 48.579086 ], [ -123.184941, 48.586970 ], [ -123.197754, 48.586216 ], [ -123.202680, 48.590214 ], [ -123.203026, 48.596178 ], [ -123.195725, 48.607055 ], [ -123.178425, 48.622115 ], [ -123.151643, 48.623686 ], [ -123.139705, 48.622786 ], [ -123.135645, 48.620171 ], [ -123.107362, 48.622451 ], [ -123.098462, 48.612834 ], [ -123.098254, 48.610092 ], [ -123.102074, 48.604035 ], [ -123.101552, 48.597820 ], [ -123.074611, 48.591816 ], [ -123.060040, 48.582105 ], [ -123.048403, 48.569216 ], [ -123.033669, 48.563409 ], [ -123.015046, 48.560821 ], [ -122.987296, 48.561895 ], [ -122.986110, 48.569984 ], [ -122.989649, 48.574668 ], [ -122.995026, 48.578162 ], [ -123.004800, 48.580788 ], [ -123.016647, 48.580244 ], [ -123.034101, 48.591767 ], [ -123.024902, 48.594484 ], [ -123.023433, 48.599477 ], [ -123.041189, 48.611947 ], [ -123.046530, 48.611490 ], [ -123.048652, 48.621002 ], [ -123.023495, 48.634001 ], [ -123.015592, 48.642567 ], [ -123.014829, 48.647503 ], [ -123.009924, 48.655064 ], [ -122.988884, 48.667246 ], [ -122.984853, 48.672686 ], [ -122.949116, 48.693398 ], [ -122.941316, 48.702904 ], [ -122.942367, 48.706723 ], [ -122.918252, 48.713505 ], [ -122.894599, 48.715030 ], [ -122.875938, 48.712120 ], [ -122.833124, 48.698173 ], [ -122.802545, 48.682682 ], [ -122.800267, 48.679620 ], [ -122.743049, 48.661991 ], [ -122.742082, 48.660689 ], [ -122.755031, 48.649512 ], [ -122.783875, 48.635419 ], [ -122.792147, 48.633502 ], [ -122.809622, 48.619035 ], [ -122.808864, 48.615310 ], [ -122.799010, 48.604683 ], [ -122.798770, 48.602352 ], [ -122.800217, 48.601690 ] ] ], [ [ [ -123.197953, 48.684660 ], [ -123.186076, 48.684917 ], [ -123.172066, 48.679866 ], [ -123.147990, 48.668001 ], [ -123.130962, 48.656789 ], [ -123.122016, 48.647065 ], [ -123.106165, 48.633473 ], [ -123.119677, 48.632972 ], [ -123.134956, 48.637240 ], [ -123.215917, 48.669352 ], [ -123.237148, 48.683466 ], [ -123.236567, 48.688950 ], [ -123.212892, 48.689713 ], [ -123.197953, 48.684660 ] ] ], [ [ [ -123.025486, 48.717966 ], [ -123.019699, 48.721312 ], [ -123.009787, 48.722291 ], [ -123.007511, 48.718863 ], [ -123.005086, 48.694342 ], [ -123.014449, 48.684978 ], [ -123.021215, 48.681416 ], [ -123.042337, 48.675663 ], [ -123.041645, 48.678633 ], [ -123.035672, 48.685350 ], [ -123.036360, 48.690080 ], [ -123.047058, 48.695772 ], [ -123.070427, 48.699971 ], [ -123.040179, 48.717296 ], [ -123.025486, 48.717966 ] ] ], [ [ [ -122.321721, 48.019977 ], [ -122.303455, 48.005603 ], [ -122.306629, 48.004397 ], [ -122.326115, 48.010295 ], [ -122.334524, 48.018916 ], [ -122.328343, 48.021335 ], [ -122.321721, 48.019977 ] ] ], [ [ [ -123.035393, 49.002154 ], [ -123.021459, 48.977299 ], [ -123.028091, 48.973943 ], [ -123.040967, 48.977305 ], [ -123.060717, 48.975388 ], [ -123.083834, 48.976139 ], [ -123.084498, 48.986535 ], [ -123.090546, 49.001976 ], [ -123.035393, 49.002154 ] ] ], [ [ [ -122.695907, 48.737273 ], [ -122.668947, 48.706644 ], [ -122.663259, 48.697077 ], [ -122.644901, 48.691389 ], [ -122.618225, 48.670721 ], [ -122.609576, 48.645018 ], [ -122.616956, 48.645563 ], [ -122.635299, 48.651846 ], [ -122.673538, 48.680809 ], [ -122.691795, 48.711498 ], [ -122.702223, 48.717004 ], [ -122.718833, 48.716818 ], [ -122.721981, 48.723375 ], [ -122.722262, 48.731624 ], [ -122.715709, 48.748672 ], [ -122.703060, 48.743602 ], [ -122.695907, 48.737273 ] ] ], [ [ [ -122.418268, 47.320614 ], [ -122.364168, 47.335953 ], [ -122.336934, 47.341421 ], [ -122.324833, 47.348521 ], [ -122.325734, 47.391521 ], [ -122.328434, 47.400621 ], [ -122.335234, 47.408421 ], [ -122.348035, 47.415921 ], [ -122.355135, 47.441921 ], [ -122.367036, 47.447621 ], [ -122.383136, 47.450521 ], [ -122.368036, 47.459221 ], [ -122.363062, 47.475702 ], [ -122.361336, 47.481421 ], [ -122.365236, 47.488420 ], [ -122.386637, 47.502220 ], [ -122.396538, 47.515220 ], [ -122.393938, 47.524820 ], [ -122.398338, 47.550120 ], [ -122.409839, 47.568920 ], [ -122.421139, 47.576020 ], [ -122.401839, 47.583920 ], [ -122.387139, 47.595720 ], [ -122.375421, 47.585181 ], [ -122.370167, 47.583087 ], [ -122.358238, 47.584820 ], [ -122.342937, 47.591220 ], [ -122.339513, 47.599113 ], [ -122.344937, 47.609120 ], [ -122.367819, 47.624213 ], [ -122.386039, 47.631720 ], [ -122.393739, 47.631020 ], [ -122.404240, 47.633920 ], [ -122.414645, 47.639766 ], [ -122.429841, 47.658919 ], [ -122.407841, 47.680119 ], [ -122.403841, 47.689419 ], [ -122.393248, 47.701602 ], [ -122.380440, 47.709119 ], [ -122.376440, 47.716519 ], [ -122.375607, 47.719724 ], [ -122.373140, 47.729219 ], [ -122.382641, 47.749119 ], [ -122.380241, 47.758519 ], [ -122.394442, 47.772219 ], [ -122.396422, 47.777927 ], [ -122.397043, 47.779719 ], [ -122.394944, 47.803318 ], [ -122.392044, 47.807718 ], [ -122.353244, 47.840618 ], [ -122.346544, 47.842418 ], [ -122.339944, 47.846718 ], [ -122.335950, 47.852306 ], [ -122.329545, 47.869418 ], [ -122.330145, 47.875318 ], [ -122.333543, 47.880246 ], [ -122.328546, 47.897917 ], [ -122.321847, 47.911817 ], [ -122.311927, 47.923703 ], [ -122.310747, 47.925117 ], [ -122.309747, 47.929117 ], [ -122.311148, 47.936717 ], [ -122.307048, 47.949117 ], [ -122.278047, 47.956517 ], [ -122.249007, 47.959507 ], [ -122.230046, 47.970917 ], [ -122.226346, 47.976417 ], [ -122.232391, 47.987713 ], [ -122.230220, 48.007154 ], [ -122.228767, 48.012468 ], [ -122.224979, 48.016626 ], [ -122.231761, 48.029876 ], [ -122.281087, 48.049793 ], [ -122.305838, 48.073415 ], [ -122.321709, 48.085507 ], [ -122.326119, 48.092877 ], [ -122.343241, 48.097631 ], [ -122.363842, 48.123930 ], [ -122.365078, 48.125822 ], [ -122.363797, 48.142759 ], [ -122.364744, 48.151304 ], [ -122.370253, 48.164809 ], [ -122.363479, 48.174438 ], [ -122.362044, 48.187568 ], [ -122.372492, 48.193022 ], [ -122.382102, 48.207106 ], [ -122.385703, 48.217811 ], [ -122.395499, 48.228551 ], [ -122.396121, 48.229233 ], [ -122.425572, 48.232887 ], [ -122.430578, 48.236237 ], [ -122.433767, 48.236550 ], [ -122.449605, 48.232598 ], [ -122.453710, 48.228859 ], [ -122.453618, 48.226830 ], [ -122.449513, 48.214736 ], [ -122.444508, 48.214522 ], [ -122.441731, 48.211776 ], [ -122.442051, 48.209350 ], [ -122.454930, 48.196639 ], [ -122.461888, 48.193137 ], [ -122.464801, 48.194767 ], [ -122.470250, 48.194007 ], [ -122.478535, 48.188087 ], [ -122.479008, 48.175703 ], [ -122.475803, 48.166792 ], [ -122.442383, 48.130841 ], [ -122.411649, 48.113210 ], [ -122.379481, 48.087384 ], [ -122.360345, 48.061527 ], [ -122.358375, 48.056133 ], [ -122.363107, 48.054546 ], [ -122.377114, 48.057568 ], [ -122.387690, 48.065189 ], [ -122.390787, 48.069477 ], [ -122.393413, 48.078472 ], [ -122.400692, 48.085255 ], [ -122.423703, 48.102941 ], [ -122.449660, 48.114041 ], [ -122.467500, 48.130353 ], [ -122.477983, 48.129048 ], [ -122.486736, 48.120950 ], [ -122.489986, 48.120617 ], [ -122.512031, 48.133931 ], [ -122.522576, 48.161712 ], [ -122.537220, 48.183745 ], [ -122.538916, 48.209683 ], [ -122.534431, 48.223005 ], [ -122.535209, 48.240213 ], [ -122.530996, 48.249821 ], [ -122.503786, 48.257045 ], [ -122.499648, 48.256611 ], [ -122.497727, 48.253389 ], [ -122.493448, 48.252043 ], [ -122.480925, 48.251706 ], [ -122.474494, 48.255227 ], [ -122.466803, 48.269604 ], [ -122.463962, 48.270541 ], [ -122.406516, 48.251830 ], [ -122.405757, 48.252193 ], [ -122.395328, 48.257187 ], [ -122.392058, 48.269628 ], [ -122.371693, 48.287839 ], [ -122.376818, 48.296099 ], [ -122.378210, 48.297590 ], [ -122.384310, 48.304123 ], [ -122.408718, 48.326413 ], [ -122.424102, 48.334346 ], [ -122.442678, 48.337934 ], [ -122.475529, 48.359912 ], [ -122.482423, 48.361737 ], [ -122.497686, 48.361837 ], [ -122.507437, 48.364666 ], [ -122.533452, 48.383409 ], [ -122.539449, 48.397190 ], [ -122.547492, 48.399889 ], [ -122.554536, 48.406040 ], [ -122.558403, 48.426758 ], [ -122.551221, 48.439465 ], [ -122.557298, 48.444438 ], [ -122.568348, 48.444990 ], [ -122.575254, 48.443333 ], [ -122.581607, 48.429244 ], [ -122.614480, 48.414880 ], [ -122.649839, 48.408526 ], [ -122.665338, 48.416453 ], [ -122.674158, 48.424726 ], [ -122.678928, 48.439466 ], [ -122.677072, 48.444059 ], [ -122.674188, 48.443327 ], [ -122.674085, 48.441979 ], [ -122.667249, 48.442503 ], [ -122.654844, 48.454087 ], [ -122.657753, 48.472940 ], [ -122.664623, 48.478128 ], [ -122.689121, 48.476849 ], [ -122.695725, 48.464785 ], [ -122.695587, 48.460558 ], [ -122.700603, 48.457632 ], [ -122.710362, 48.461584 ], [ -122.712322, 48.464143 ], [ -122.712981, 48.478790 ], [ -122.701644, 48.497622 ], [ -122.684521, 48.509123 ], [ -122.679122, 48.507797 ], [ -122.676922, 48.504484 ], [ -122.671386, 48.503980 ], [ -122.615183, 48.521427 ], [ -122.606961, 48.522152 ], [ -122.599951, 48.520946 ], [ -122.598469, 48.512169 ], [ -122.568071, 48.508210 ], [ -122.556834, 48.498812 ], [ -122.537355, 48.466749 ], [ -122.532845, 48.466057 ], [ -122.526943, 48.468004 ], [ -122.515056, 48.465554 ], [ -122.511348, 48.461825 ], [ -122.500721, 48.460887 ], [ -122.471832, 48.470724 ], [ -122.469634, 48.472187 ], [ -122.469670, 48.474975 ], [ -122.473763, 48.479750 ], [ -122.478851, 48.481736 ], [ -122.483501, 48.492430 ], [ -122.484996, 48.509620 ], [ -122.483872, 48.521891 ], [ -122.485288, 48.528106 ], [ -122.498463, 48.556206 ], [ -122.504428, 48.564775 ], [ -122.525370, 48.567344 ], [ -122.531978, 48.568644 ], [ -122.534719, 48.574246 ], [ -122.534787, 48.575960 ], [ -122.512372, 48.578067 ], [ -122.495904, 48.575927 ], [ -122.488421, 48.564665 ], [ -122.482406, 48.559653 ], [ -122.478431, 48.559303 ], [ -122.444560, 48.570115 ], [ -122.433059, 48.581609 ], [ -122.425271, 48.599522 ], [ -122.448702, 48.622624 ], [ -122.464250, 48.625717 ], [ -122.486878, 48.643122 ], [ -122.488754, 48.645358 ], [ -122.493990, 48.651596 ], [ -122.500308, 48.656163 ], [ -122.506718, 48.669692 ], [ -122.519172, 48.713095 ], [ -122.515511, 48.720992 ], [ -122.505684, 48.724524 ], [ -122.495301, 48.737328 ], [ -122.490401, 48.751128 ], [ -122.510902, 48.757728 ], [ -122.528203, 48.768428 ], [ -122.535803, 48.776128 ], [ -122.567498, 48.779185 ], [ -122.596844, 48.771492 ], [ -122.598033, 48.769489 ], [ -122.606787, 48.759143 ], [ -122.627808, 48.744660 ], [ -122.637146, 48.735708 ], [ -122.638082, 48.732486 ], [ -122.626287, 48.720930 ], [ -122.612562, 48.714932 ], [ -122.605733, 48.701066 ], [ -122.606105, 48.698556 ], [ -122.615169, 48.693839 ], [ -122.620338, 48.693651 ], [ -122.630422, 48.696625 ], [ -122.646323, 48.708001 ], [ -122.673472, 48.733082 ], [ -122.666953, 48.748445 ], [ -122.661111, 48.753962 ], [ -122.647443, 48.773998 ], [ -122.645743, 48.781538 ], [ -122.646777, 48.785011 ], [ -122.656528, 48.784969 ], [ -122.659708, 48.786523 ], [ -122.680246, 48.802750 ], [ -122.693683, 48.804475 ], [ -122.697219, 48.802810 ], [ -122.698675, 48.800522 ], [ -122.699507, 48.794906 ], [ -122.699303, 48.789063 ], [ -122.703106, 48.786321 ], [ -122.709815, 48.786205 ], [ -122.711200, 48.791460 ], [ -122.709169, 48.817829 ], [ -122.711805, 48.832408 ], [ -122.717073, 48.847190 ], [ -122.722685, 48.852855 ], [ -122.785659, 48.885066 ], [ -122.793175, 48.892927 ], [ -122.792584, 48.894732 ], [ -122.783747, 48.894639 ], [ -122.751289, 48.911239 ], [ -122.747514, 48.915582 ], [ -122.745371, 48.921227 ], [ -122.746596, 48.930731 ], [ -122.755624, 48.938660 ], [ -122.766096, 48.941955 ], [ -122.770432, 48.942528 ], [ -122.787539, 48.931702 ], [ -122.818232, 48.939062 ], [ -122.821631, 48.941369 ], [ -122.822464, 48.944911 ], [ -122.817226, 48.955970 ], [ -122.796887, 48.975026 ], [ -122.774276, 48.991038 ], [ -122.766307, 48.991672 ], [ -122.756318, 48.996881 ], [ -122.756037, 48.999512 ], [ -122.758020, 49.002357 ], [ -122.407829, 49.002193 ], [ -122.405989, 49.002239 ], [ -122.098357, 49.002146 ], [ -121.751252, 48.997399 ], [ -121.126240, 49.001412 ], [ -120.851202, 49.001191 ], [ -119.702016, 49.000269 ], [ -119.701218, 49.000258 ], [ -119.457700, 49.000261 ], [ -119.428678, 49.000253 ], [ -119.137274, 49.000297 ], [ -119.132102, 49.000262 ], [ -118.836794, 49.000209 ], [ -118.196891, 49.000094 ], [ -117.429539, 48.999957 ], [ -117.268192, 48.999928 ], [ -117.268247, 48.999818 ], [ -117.032351, 48.999188 ], [ -117.033177, 48.846563 ], [ -117.034358, 48.628523 ], [ -117.034499, 48.620769 ], [ -117.035285, 48.430113 ], [ -117.035285, 48.429816 ], [ -117.035254, 48.423144 ], [ -117.035289, 48.422732 ], [ -117.035178, 48.371221 ], [ -117.035178, 48.370878 ], [ -117.039599, 48.184387 ], [ -117.039615, 48.184015 ], [ -117.039582, 48.181124 ], [ -117.039582, 48.180853 ], [ -117.039583, 48.180313 ], [ -117.039618, 48.178142 ], [ -117.039413, 48.177250 ], [ -117.039552, 48.173960 ], [ -117.041401, 48.085500 ], [ -117.041676, 48.045560 ], [ -117.041874, 47.977387 ], [ -117.042485, 47.766525 ], [ -117.042521, 47.764896 ], [ -117.042623, 47.761223 ], [ -117.042657, 47.760857 ], [ -117.042059, 47.745100 ], [ -117.042135, 47.744100 ], [ -117.041678, 47.722710 ], [ -117.041633, 47.706400 ], [ -117.041532, 47.683194 ], [ -117.041431, 47.680000 ], [ -117.041431, 47.678185 ], [ -117.041431, 47.678140 ], [ -117.041174, 47.558530 ], [ -117.041276, 47.558210 ], [ -117.040745, 47.532909 ], [ -117.040545, 47.527562 ], [ -117.040514, 47.522351 ], [ -117.039945, 47.477823 ], [ -117.039971, 47.463309 ], [ -117.039948, 47.434885 ], [ -117.039950, 47.412412 ], [ -117.039882, 47.399085 ], [ -117.039857, 47.366093 ], [ -117.039843, 47.347201 ], [ -117.040019, 47.259272 ], [ -117.039899, 47.225515 ], [ -117.039888, 47.203282 ], [ -117.039871, 47.181858 ], [ -117.039836, 47.154734 ], [ -117.039821, 47.127265 ], [ -117.039657, 46.825798 ], [ -117.039828, 46.815443 ], [ -117.039783, 46.541785 ], [ -117.039771, 46.471779 ], [ -117.039763, 46.469570 ], [ -117.039741, 46.462704 ], [ -117.039813, 46.425425 ], [ -117.046915, 46.379577 ], [ -117.061045, 46.367747 ], [ -117.047469, 46.342884 ], [ -116.987939, 46.298031 ], [ -116.985333, 46.294617 ], [ -116.958801, 46.242320 ], [ -116.925621, 46.158888 ], [ -116.943530, 46.062173 ], [ -116.915989, 45.995413 ], [ -117.212616, 45.998321 ], [ -117.214534, 45.998320 ], [ -117.216731, 45.998356 ], [ -117.475148, 45.997893 ], [ -117.475360, 45.997855 ], [ -117.480103, 45.997870 ], [ -117.480130, 45.997870 ], [ -117.504833, 45.998317 ], [ -117.603163, 45.998887 ], [ -117.977766, 46.000695 ], [ -117.996911, 46.000787 ], [ -118.126197, 46.000282 ], [ -118.131019, 46.000280 ], [ -118.228941, 46.000421 ], [ -118.236584, 46.000418 ], [ -118.252530, 46.000459 ], [ -118.256368, 46.000439 ], [ -118.314982, 46.000453 ], [ -118.367790, 46.000622 ], [ -118.378360, 46.000574 ], [ -118.470756, 46.000632 ], [ -118.497027, 46.000620 ], [ -118.537119, 46.000840 ], [ -118.569392, 46.000773 ], [ -118.575710, 46.000718 ], [ -118.579906, 46.000818 ], [ -118.637725, 46.000970 ], [ -118.639332, 46.000994 ], [ -118.658717, 46.000955 ], [ -118.677870, 46.000935 ], [ -118.987129, 45.999855 ], [ -119.008558, 45.979270 ], [ -119.027056, 45.969134 ], [ -119.093221, 45.942745 ], [ -119.126120, 45.932859 ], [ -119.169496, 45.927603 ], [ -119.195530, 45.927870 ], [ -119.225745, 45.932725 ], [ -119.257150, 45.939926 ], [ -119.322509, 45.933183 ], [ -119.376130, 45.920974 ], [ -119.432067, 45.913629 ], [ -119.487829, 45.906307 ], [ -119.524632, 45.908605 ], [ -119.571584, 45.925456 ], [ -119.600549, 45.919581 ], [ -119.623393, 45.905639 ], [ -119.669877, 45.856867 ], [ -119.772927, 45.845578 ], [ -119.802655, 45.847530 ], [ -119.868135, 45.835962 ], [ -119.999506, 45.812199 ], [ -120.001148, 45.811902 ], [ -120.141352, 45.773152 ], [ -120.170453, 45.761951 ], [ -120.210754, 45.725951 ], [ -120.403960, 45.699249 ], [ -120.482362, 45.694449 ], [ -120.505863, 45.700048 ], [ -120.521964, 45.709848 ], [ -120.559465, 45.738348 ], [ -120.591166, 45.746547 ], [ -120.634968, 45.745847 ], [ -120.653559, 45.737237 ], [ -120.668869, 45.730147 ], [ -120.689370, 45.715847 ], [ -120.788872, 45.686246 ], [ -120.855674, 45.671545 ], [ -120.870042, 45.661242 ], [ -120.915876, 45.641345 ], [ -120.943977, 45.656445 ], [ -121.064370, 45.652549 ], [ -121.086675, 45.646667 ], [ -121.195233, 45.629513 ], [ -121.200367, 45.649829 ], [ -121.215779, 45.671238 ], [ -121.312198, 45.699925 ], [ -121.337770, 45.704949 ], [ -121.372574, 45.703111 ], [ -121.401739, 45.692887 ], [ -121.423592, 45.693990 ], [ -121.441045, 45.697270 ], [ -121.462849, 45.701367 ], [ -121.522392, 45.724677 ], [ -121.533106, 45.726541 ], [ -121.626185, 45.705915 ], [ -121.707358, 45.694809 ], [ -121.735104, 45.694039 ], [ -121.811304, 45.706761 ], [ -121.820055, 45.704649 ], [ -121.867167, 45.693277 ], [ -121.901855, 45.670716 ], [ -121.900858, 45.662009 ], [ -121.908267, 45.654399 ], [ -121.922242, 45.648495 ], [ -121.983038, 45.622812 ], [ -122.101675, 45.583516 ], [ -122.112356, 45.581409 ], [ -122.126197, 45.582617 ], [ -122.126197, 45.582573 ], [ -122.129490, 45.582967 ], [ -122.129548, 45.582945 ], [ -122.140750, 45.584508 ], [ -122.183695, 45.577696 ], [ -122.201700, 45.564141 ], [ -122.248993, 45.547745 ], [ -122.266701, 45.543841 ], [ -122.294901, 45.543541 ], [ -122.331502, 45.548241 ], [ -122.352802, 45.569441 ], [ -122.380302, 45.575941 ], [ -122.492259, 45.583281 ], [ -122.643907, 45.609739 ], [ -122.675008, 45.618039 ], [ -122.738109, 45.644138 ], [ -122.763810, 45.657138 ], [ -122.774511, 45.680437 ], [ -122.772511, 45.699637 ], [ -122.762182, 45.728598 ], [ -122.760108, 45.734413 ], [ -122.761451, 45.759163 ], [ -122.769532, 45.780583 ], [ -122.795605, 45.810000 ], [ -122.795963, 45.825024 ], [ -122.785515, 45.850536 ], [ -122.785026, 45.867699 ], [ -122.813998, 45.960984 ], [ -122.884478, 46.060280 ], [ -122.904119, 46.083734 ], [ -123.115904, 46.185268 ], [ -123.166414, 46.188973 ], [ -123.213054, 46.172541 ], [ -123.280166, 46.144843 ], [ -123.363638, 46.146241 ], [ -123.371433, 46.146372 ], [ -123.430847, 46.181827 ], [ -123.427629, 46.229348 ], [ -123.447592, 46.249832 ], [ -123.468743, 46.264531 ], [ -123.474844, 46.267831 ], [ -123.484244, 46.269531 ], [ -123.547659, 46.259109 ], [ -123.547636, 46.265595 ], [ -123.559923, 46.265098 ], [ -123.564405, 46.262172 ], [ -123.581642, 46.260502 ], [ -123.613544, 46.259988 ], [ -123.669501, 46.266832 ], [ -123.679125, 46.272502 ], [ -123.680080, 46.277943 ], [ -123.678069, 46.286469 ], [ -123.678760, 46.290721 ], [ -123.680574, 46.296025 ], [ -123.687763, 46.299235 ], [ -123.700764, 46.305278 ], [ -123.724273, 46.301161 ], [ -123.724038, 46.295058 ], [ -123.727913, 46.289661 ], [ -123.728585, 46.288725 ], [ -123.741478, 46.290274 ], [ -123.759560, 46.275073 ], [ -123.766682, 46.273499 ], [ -123.775054, 46.274599 ], [ -123.782654, 46.280227 ], [ -123.795556, 46.284501 ], [ -123.806139, 46.283588 ], [ -123.875525, 46.239787 ], [ -123.909306, 46.245491 ], [ -123.919581, 46.251217 ], [ -123.954353, 46.277001 ], [ -123.969427, 46.291398 ], [ -123.970912, 46.293866 ], [ -123.970355, 46.299352 ], [ -123.974509, 46.303063 ], [ -123.985204, 46.309039 ], [ -124.001264, 46.313260 ], [ -124.020551, 46.315737 ], [ -124.029924, 46.308312 ], [ -124.035599, 46.296843 ], [ -124.038797, 46.283675 ], [ -124.044018, 46.275925 ], [ -124.060961, 46.278761 ], [ -124.080671, 46.267239 ], [ -124.082187, 46.269159 ], [ -124.081729, 46.274714 ], [ -124.076262, 46.296498 ], [ -124.071384, 46.305504 ], [ -124.064624, 46.326899 ], [ -124.058351, 46.386503 ], [ -124.057425, 46.409315 ], [ -124.057024, 46.493338 ], [ -124.061953, 46.556165 ], [ -124.068420, 46.601397 ], [ -124.069583, 46.630651 ], [ -124.068655, 46.634879 ], [ -124.062715, 46.642582 ], [ -124.056476, 46.645645 ], [ -124.048444, 46.645827 ], [ -124.035874, 46.630822 ], [ -124.052708, 46.622796 ], [ -124.050842, 46.617421 ], [ -124.028799, 46.591040 ], [ -124.023566, 46.582559 ], [ -124.023148, 46.564113 ], [ -124.026019, 46.531589 ], [ -124.031737, 46.496375 ], [ -124.026032, 46.462978 ], [ -124.001271, 46.459992 ], [ -123.990615, 46.463019 ], [ -123.990870, 46.465738 ], [ -123.994181, 46.468868 ], [ -123.992680, 46.488617 ], [ -123.988386, 46.497008 ], [ -123.983688, 46.498542 ], [ -123.979053, 46.497378 ], [ -123.979213, 46.489949 ], [ -123.970830, 46.475370 ], [ -123.968044, 46.473497 ], [ -123.943667, 46.477197 ], [ -123.921192, 46.507731 ], [ -123.896703, 46.522665 ], [ -123.897242, 46.528480 ], [ -123.894254, 46.537028 ], [ -123.903321, 46.551910 ], [ -123.916902, 46.562633 ], [ -123.920247, 46.567343 ], [ -123.922332, 46.577057 ], [ -123.928861, 46.588875 ], [ -123.939139, 46.596326 ], [ -123.955556, 46.603570 ], [ -123.959175, 46.613581 ], [ -123.960642, 46.636364 ], [ -123.940616, 46.640862 ], [ -123.921913, 46.650262 ], [ -123.920916, 46.653576 ], [ -123.923269, 46.672708 ], [ -123.915596, 46.678649 ], [ -123.895601, 46.683672 ], [ -123.864902, 46.698685 ], [ -123.851356, 46.702560 ], [ -123.846210, 46.716795 ], [ -123.848725, 46.719898 ], [ -123.862149, 46.727749 ], [ -123.870782, 46.728327 ], [ -123.876680, 46.730657 ], [ -123.893054, 46.750204 ], [ -123.898641, 46.750205 ], [ -123.910716, 46.746715 ], [ -123.916371, 46.741322 ], [ -123.915840, 46.737322 ], [ -123.912850, 46.730647 ], [ -123.916874, 46.726739 ], [ -123.929073, 46.725278 ], [ -123.948683, 46.725369 ], [ -123.968564, 46.736106 ], [ -123.974994, 46.733391 ], [ -123.979655, 46.724658 ], [ -123.975157, 46.713971 ], [ -123.966886, 46.705184 ], [ -123.973663, 46.703353 ], [ -123.987521, 46.707507 ], [ -123.994242, 46.707929 ], [ -124.003458, 46.702337 ], [ -124.022413, 46.708973 ], [ -124.042478, 46.720040 ], [ -124.042111, 46.722783 ], [ -124.046399, 46.725686 ], [ -124.063117, 46.733664 ], [ -124.080983, 46.735003 ], [ -124.092176, 46.741624 ], [ -124.096515, 46.746202 ], [ -124.095041, 46.756812 ], [ -124.096655, 46.784374 ], [ -124.098359, 46.794157 ], [ -124.101232, 46.810656 ], [ -124.108078, 46.836388 ], [ -124.122979, 46.879809 ], [ -124.138225, 46.905534 ], [ -124.117712, 46.912380 ], [ -124.110641, 46.912520 ], [ -124.093392, 46.901168 ], [ -124.090422, 46.895500 ], [ -124.089286, 46.867716 ], [ -124.073113, 46.861493 ], [ -124.066349, 46.863504 ], [ -124.061051, 46.865127 ], [ -124.055085, 46.870429 ], [ -124.049279, 46.891253 ], [ -124.046344, 46.893972 ], [ -124.036240, 46.898473 ], [ -124.013660, 46.903630 ], [ -124.009519, 46.910325 ], [ -123.985082, 46.921916 ], [ -123.979378, 46.923038 ], [ -123.957493, 46.921261 ], [ -123.915256, 46.932964 ], [ -123.882884, 46.939946 ], [ -123.860180, 46.948556 ], [ -123.876136, 46.961054 ], [ -123.889402, 46.968904 ], [ -123.898245, 46.971927 ], [ -123.921617, 46.971864 ], [ -123.939214, 46.969739 ], [ -123.947996, 46.971818 ], [ -123.959185, 46.981759 ], [ -123.991612, 46.980215 ], [ -124.012218, 46.985176 ], [ -124.019727, 46.991189 ], [ -124.010068, 46.997882 ], [ -124.005248, 47.003915 ], [ -124.017035, 47.011717 ], [ -124.016999, 47.014848 ], [ -124.026345, 47.030187 ], [ -124.065856, 47.041140 ], [ -124.106378, 47.042640 ], [ -124.122057, 47.041650 ], [ -124.141517, 47.035142 ], [ -124.149043, 47.029294 ], [ -124.151288, 47.021112 ], [ -124.139733, 46.988370 ], [ -124.138035, 46.970959 ], [ -124.124386, 46.943870 ], [ -124.141267, 46.940266 ], [ -124.158624, 46.929439 ], [ -124.180111, 46.926357 ], [ -124.174503, 46.941623 ], [ -124.171161, 46.958443 ], [ -124.169113, 46.994508 ], [ -124.173501, 47.066370 ], [ -124.176745, 47.092999 ], [ -124.183833, 47.124807 ], [ -124.182802, 47.134041 ], [ -124.185806, 47.136017 ], [ -124.189725, 47.146827 ], [ -124.195893, 47.174000 ], [ -124.209017, 47.218151 ], [ -124.236349, 47.287287 ], [ -124.242234, 47.295101 ], [ -124.253590, 47.302480 ], [ -124.257452, 47.304059 ], [ -124.271193, 47.305025 ], [ -124.286369, 47.325162 ], [ -124.293288, 47.339309 ], [ -124.299943, 47.348360 ], [ -124.307509, 47.352268 ], [ -124.319379, 47.355559 ], [ -124.324091, 47.367602 ], [ -124.326650, 47.388759 ], [ -124.336724, 47.415996 ], [ -124.345155, 47.489030 ], [ -124.353651, 47.533610 ], [ -124.355955, 47.545698 ], [ -124.359028, 47.547616 ], [ -124.366221, 47.582439 ], [ -124.371746, 47.599575 ], [ -124.374927, 47.603891 ], [ -124.382215, 47.632302 ], [ -124.395983, 47.665534 ], [ -124.412106, 47.691199 ], [ -124.420219, 47.725294 ], [ -124.425195, 47.738434 ], [ -124.430546, 47.746249 ], [ -124.453927, 47.765334 ], [ -124.471687, 47.766907 ], [ -124.476570, 47.769671 ], [ -124.482154, 47.797454 ], [ -124.489737, 47.816988 ], [ -124.497987, 47.822605 ], [ -124.506680, 47.823910 ], [ -124.512780, 47.822518 ], [ -124.539927, 47.836967 ], [ -124.558254, 47.855979 ], [ -124.559034, 47.863085 ], [ -124.562363, 47.866216 ], [ -124.588172, 47.877878 ], [ -124.609538, 47.879996 ], [ -124.610763, 47.880607 ], [ -124.625512, 47.887963 ], [ -124.630153, 47.892467 ], [ -124.629706, 47.896968 ], [ -124.645442, 47.935338 ], [ -124.651966, 47.943177 ], [ -124.662334, 47.951451 ], [ -124.672427, 47.964414 ], [ -124.670830, 47.982366 ], [ -124.679024, 48.015697 ], [ -124.682157, 48.035987 ], [ -124.685393, 48.049238 ], [ -124.688359, 48.054927 ], [ -124.693676, 48.058697 ], [ -124.696542, 48.069274 ], [ -124.695114, 48.087096 ], [ -124.688602, 48.092466 ], [ -124.687101, 48.098657 ], [ -124.695088, 48.114878 ], [ -124.721725, 48.153185 ], [ -124.731703, 48.160402 ], [ -124.733174, 48.163393 ], [ -124.731746, 48.169997 ], [ -124.704153, 48.184422 ], [ -124.696111, 48.198599 ], [ -124.690900, 48.212617 ], [ -124.690389, 48.219745 ], [ -124.705031, 48.238774 ], [ -124.705920, 48.239894 ], [ -124.699663, 48.245812 ], [ -124.684677, 48.255228 ], [ -124.680877, 48.265350 ], [ -124.676319, 48.295143 ], [ -124.669265, 48.296353 ], [ -124.665908, 48.299324 ], [ -124.662068, 48.310450 ], [ -124.658940, 48.331057 ], [ -124.670072, 48.341341 ], [ -124.696703, 48.349748 ], [ -124.713817, 48.366309 ], [ -124.727022, 48.371101 ], [ -124.730863, 48.376200 ], [ -124.731828, 48.381157 ], [ -124.725839, 48.386012 ], [ -124.716947, 48.389776 ], [ -124.694511, 48.389004 ], [ -124.653243, 48.390691 ], [ -124.639389, 48.385524 ], [ -124.631108, 48.376522 ], [ -124.611782, 48.378182 ], [ -124.599278, 48.381035 ], [ -124.597331, 48.381882 ], [ -124.590733, 48.373604 ], [ -124.572864, 48.366228 ], [ -124.564841, 48.367921 ], [ -124.546259, 48.353594 ], [ -124.538821, 48.349893 ], [ -124.525453, 48.349022 ], [ -124.510582, 48.343236 ], [ -124.414007, 48.300887 ], [ -124.395593, 48.288772 ], [ -124.380874, 48.284699 ], [ -124.361351, 48.287582 ], [ -124.342412, 48.277695 ], [ -124.299146, 48.268239 ], [ -124.295589, 48.262983 ], [ -124.296924, 48.261796 ], [ -124.297643, 48.260676 ], [ -124.295693, 48.259282 ], [ -124.272017, 48.254410 ], [ -124.265824, 48.254842 ], [ -124.255109, 48.258972 ], [ -124.252267, 48.261004 ], [ -124.250882, 48.264773 ], [ -124.238582, 48.262471 ], [ -124.217873, 48.253294 ], [ -124.192692, 48.246316 ], [ -124.141290, 48.227413 ], [ -124.110974, 48.220557 ], [ -124.101773, 48.216883 ], [ -124.107215, 48.200082 ], [ -124.090717, 48.196458 ], [ -124.072124, 48.189903 ], [ -124.050734, 48.177747 ], [ -123.981032, 48.164761 ], [ -123.955347, 48.165455 ], [ -123.934921, 48.160840 ], [ -123.915589, 48.159352 ], [ -123.880068, 48.160621 ], [ -123.866677, 48.154796 ], [ -123.858821, 48.154273 ], [ -123.831571, 48.157937 ], [ -123.778122, 48.155466 ], [ -123.756395, 48.161057 ], [ -123.728736, 48.162800 ], [ -123.728290, 48.160858 ], [ -123.725352, 48.159191 ], [ -123.718350, 48.158713 ], [ -123.706226, 48.163400 ], [ -123.706432, 48.165822 ], [ -123.702743, 48.166783 ], [ -123.672445, 48.162715 ], [ -123.651408, 48.156952 ], [ -123.636967, 48.150319 ], [ -123.641108, 48.146127 ], [ -123.628819, 48.139279 ], [ -123.590839, 48.134949 ], [ -123.574214, 48.140756 ], [ -123.560591, 48.150697 ], [ -123.551131, 48.151382 ], [ -123.534879, 48.145780 ], [ -123.522320, 48.135539 ], [ -123.507235, 48.131807 ], [ -123.473379, 48.134079 ], [ -123.455458, 48.140047 ], [ -123.440128, 48.142014 ], [ -123.439127, 48.141278 ], [ -123.441972, 48.124259 ], [ -123.424668, 48.118065 ], [ -123.395048, 48.114243 ], [ -123.360923, 48.115864 ], [ -123.332699, 48.112970 ], [ -123.314578, 48.113725 ], [ -123.288265, 48.121036 ], [ -123.280178, 48.117309 ], [ -123.268917, 48.116094 ], [ -123.248615, 48.115745 ], [ -123.239129, 48.118217 ], [ -123.217190, 48.127203 ], [ -123.191521, 48.143821 ], [ -123.164400, 48.165894 ], [ -123.144783, 48.175943 ], [ -123.133445, 48.177276 ], [ -123.132417, 48.174704 ], [ -123.139258, 48.166480 ], [ -123.143229, 48.156633 ], [ -123.131422, 48.152736 ], [ -123.124816, 48.153472 ], [ -123.116479, 48.150208 ], [ -123.085154, 48.127137 ], [ -123.066210, 48.120469 ], [ -123.050446, 48.102825 ], [ -123.038727, 48.081138 ], [ -123.016651, 48.085380 ], [ -123.004128, 48.090516 ], [ -122.979413, 48.095940 ], [ -122.946119, 48.098552 ], [ -122.929095, 48.096244 ], [ -122.917942, 48.091535 ], [ -122.920911, 48.088199 ], [ -122.926644, 48.074100 ], [ -122.927975, 48.066650 ], [ -122.927146, 48.065133 ], [ -122.926851, 48.064593 ], [ -122.918602, 48.058238 ], [ -122.877641, 48.047025 ], [ -122.849273, 48.053808 ], [ -122.857727, 48.065774 ], [ -122.878255, 48.076072 ], [ -122.882013, 48.100779 ], [ -122.876282, 48.110877 ], [ -122.833173, 48.134406 ], [ -122.784076, 48.142974 ], [ -122.760448, 48.143240 ], [ -122.748911, 48.117026 ], [ -122.773177, 48.106864 ], [ -122.778466, 48.106135 ], [ -122.792902, 48.097180 ], [ -122.798464, 48.092451 ], [ -122.801399, 48.087561 ], [ -122.770559, 48.053432 ], [ -122.770496, 48.047897 ], [ -122.766648, 48.044290 ], [ -122.742290, 48.049324 ], [ -122.740007, 48.054116 ], [ -122.739271, 48.069153 ], [ -122.741184, 48.070958 ], [ -122.747389, 48.070795 ], [ -122.748345, 48.072097 ], [ -122.733257, 48.091232 ], [ -122.718558, 48.097567 ], [ -122.698465, 48.103102 ], [ -122.687240, 48.101662 ], [ -122.691640, 48.096726 ], [ -122.692220, 48.087081 ], [ -122.682264, 48.042723 ], [ -122.677153, 48.036346 ], [ -122.668942, 48.032026 ], [ -122.669868, 48.017217 ], [ -122.686898, 48.008305 ], [ -122.690066, 48.008420 ], [ -122.697185, 48.014978 ], [ -122.701840, 48.016106 ], [ -122.723374, 48.008095 ], [ -122.718082, 47.987739 ], [ -122.701294, 47.972979 ], [ -122.683223, 47.972226 ], [ -122.678800, 47.967930 ], [ -122.676215, 47.958743 ], [ -122.684688, 47.944049 ], [ -122.684450, 47.939593 ], [ -122.681924, 47.936415 ], [ -122.662380, 47.930700 ], [ -122.657722, 47.931156 ], [ -122.651063, 47.920985 ], [ -122.653990, 47.915890 ], [ -122.655085, 47.905058 ], [ -122.646494, 47.894771 ], [ -122.637425, 47.889945 ], [ -122.618873, 47.890242 ], [ -122.610341, 47.887343 ], [ -122.631857, 47.874815 ], [ -122.633879, 47.868401 ], [ -122.636360, 47.866186 ], [ -122.650083, 47.863860 ], [ -122.666417, 47.867497 ], [ -122.693760, 47.868002 ], [ -122.690974, 47.860118 ], [ -122.681602, 47.850405 ], [ -122.683742, 47.838773 ], [ -122.688596, 47.831438 ], [ -122.719609, 47.813036 ], [ -122.731956, 47.809741 ], [ -122.748061, 47.800546 ], [ -122.750540, 47.773966 ], [ -122.757885, 47.757744 ], [ -122.758498, 47.746036 ], [ -122.749199, 47.741063 ], [ -122.740159, 47.736228 ], [ -122.733012, 47.737625 ], [ -122.722686, 47.748827 ], [ -122.719712, 47.760976 ], [ -122.714801, 47.768176 ], [ -122.690562, 47.778372 ], [ -122.684085, 47.798574 ], [ -122.682015, 47.800882 ], [ -122.648108, 47.825123 ], [ -122.623192, 47.836199 ], [ -122.614585, 47.850806 ], [ -122.608105, 47.856728 ], [ -122.573672, 47.857582 ], [ -122.573098, 47.874081 ], [ -122.586339, 47.902023 ], [ -122.588235, 47.912923 ], [ -122.596228, 47.920210 ], [ -122.616701, 47.925139 ], [ -122.620316, 47.931553 ], [ -122.617022, 47.938987 ], [ -122.611956, 47.940772 ], [ -122.603861, 47.940478 ], [ -122.601507, 47.931726 ], [ -122.592184, 47.922519 ], [ -122.581846, 47.920282 ], [ -122.549072, 47.919072 ], [ -122.527593, 47.905882 ], [ -122.513986, 47.880807 ], [ -122.512778, 47.863879 ], [ -122.506122, 47.831745 ], [ -122.502224, 47.826395 ], [ -122.482529, 47.815511 ], [ -122.482437, 47.809255 ], [ -122.485214, 47.804128 ], [ -122.495346, 47.797040 ], [ -122.495458, 47.786692 ], [ -122.471402, 47.765965 ], [ -122.470333, 47.757109 ], [ -122.471844, 47.749819 ], [ -122.477344, 47.746019 ], [ -122.488491, 47.743605 ], [ -122.507638, 47.743040 ], [ -122.515193, 47.743911 ], [ -122.519325, 47.746220 ], [ -122.537318, 47.747140 ], [ -122.554454, 47.745704 ], [ -122.543161, 47.710941 ], [ -122.530940, 47.704814 ], [ -122.525851, 47.705095 ], [ -122.523962, 47.708034 ], [ -122.511196, 47.708715 ], [ -122.504604, 47.699136 ], [ -122.504452, 47.685888 ], [ -122.508709, 47.670843 ], [ -122.518277, 47.651320 ], [ -122.502116, 47.639074 ], [ -122.493205, 47.635122 ], [ -122.492809, 47.629591 ], [ -122.494518, 47.623625 ], [ -122.500357, 47.617816 ], [ -122.498240, 47.598242 ], [ -122.493933, 47.588963 ], [ -122.483805, 47.586721 ], [ -122.479089, 47.583654 ], [ -122.503672, 47.575178 ], [ -122.518367, 47.574080 ], [ -122.529915, 47.568441 ], [ -122.534664, 47.566122 ], [ -122.543118, 47.556326 ], [ -122.542355, 47.537840 ], [ -122.547207, 47.528257 ], [ -122.546611, 47.523550 ], [ -122.532909, 47.522184 ], [ -122.523050, 47.524000 ], [ -122.500543, 47.515280 ], [ -122.494882, 47.510265 ], [ -122.484993, 47.512731 ], [ -122.467796, 47.509956 ], [ -122.452399, 47.503471 ], [ -122.460503, 47.494773 ], [ -122.460029, 47.486861 ], [ -122.433386, 47.466430 ], [ -122.439840, 47.458083 ], [ -122.440083, 47.417647 ], [ -122.437657, 47.407424 ], [ -122.427327, 47.402129 ], [ -122.395054, 47.399277 ], [ -122.373629, 47.388718 ], [ -122.378482, 47.385330 ], [ -122.401768, 47.381325 ], [ -122.437809, 47.365607 ], [ -122.448399, 47.354987 ], [ -122.453998, 47.343337 ], [ -122.457494, 47.342567 ], [ -122.469703, 47.344623 ], [ -122.491237, 47.335172 ], [ -122.491063, 47.332427 ], [ -122.493123, 47.330253 ], [ -122.504918, 47.330680 ], [ -122.518850, 47.333320 ], [ -122.524160, 47.338370 ], [ -122.528129, 47.345542 ], [ -122.526030, 47.358908 ], [ -122.537935, 47.359203 ], [ -122.551536, 47.359540 ], [ -122.555840, 47.347519 ], [ -122.571340, 47.327219 ], [ -122.575985, 47.326420 ], [ -122.573739, 47.318419 ], [ -122.571239, 47.315619 ], [ -122.547747, 47.316403 ], [ -122.547408, 47.317734 ], [ -122.540238, 47.318520 ], [ -122.533338, 47.316620 ], [ -122.471652, 47.277321 ], [ -122.444200, 47.266723 ], [ -122.437727, 47.268046 ], [ -122.429605, 47.269707 ], [ -122.418074, 47.281765 ], [ -122.409199, 47.288556 ], [ -122.413735, 47.293921 ], [ -122.424235, 47.297521 ], [ -122.432335, 47.296021 ], [ -122.444635, 47.300421 ], [ -122.443008, 47.306333 ], [ -122.423535, 47.319121 ], [ -122.418268, 47.320614 ] ] ] ] } }\n,\n{ \"type\": \"Feature\", \"properties\": { \"GEO_ID\": \"0400000US50\", \"STATE\": \"50\", \"NAME\": \"Vermont\", \"LSAD\": \"\", \"CENSUSAREA\": 9216.657000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -72.458519, 42.726853 ], [ -72.864180, 42.737117 ], [ -72.927291, 42.738714 ], [ -72.930271, 42.738789 ], [ -73.018646, 42.741025 ], [ -73.022903, 42.741133 ], [ -73.142487, 42.743508 ], [ -73.264957, 42.745940 ], [ -73.276421, 42.746019 ], [ -73.290944, 42.801920 ], [ -73.285388, 42.834093 ], [ -73.278673, 42.833410 ], [ -73.274466, 42.940361 ], [ -73.274393, 42.942482 ], [ -73.274294, 42.943652 ], [ -73.269472, 43.030686 ], [ -73.259159, 43.216848 ], [ -73.254848, 43.314684 ], [ -73.253084, 43.354714 ], [ -73.252832, 43.363493 ], [ -73.252674, 43.370285 ], [ -73.252582, 43.370997 ], [ -73.247061, 43.514919 ], [ -73.242042, 43.534925 ], [ -73.245594, 43.540253 ], [ -73.302552, 43.625708 ], [ -73.306234, 43.628018 ], [ -73.366537, 43.623462 ], [ -73.375594, 43.613350 ], [ -73.400295, 43.568889 ], [ -73.428636, 43.583994 ], [ -73.431229, 43.588285 ], [ -73.421606, 43.646577 ], [ -73.408697, 43.674020 ], [ -73.403517, 43.685032 ], [ -73.370724, 43.735571 ], [ -73.360711, 43.753268 ], [ -73.350431, 43.771438 ], [ -73.357547, 43.785933 ], [ -73.379279, 43.808391 ], [ -73.379312, 43.808478 ], [ -73.388389, 43.832404 ], [ -73.397256, 43.905668 ], [ -73.407742, 43.929887 ], [ -73.405525, 43.948813 ], [ -73.405999, 44.016229 ], [ -73.410776, 44.026944 ], [ -73.436880, 44.042578 ], [ -73.437429, 44.046861 ], [ -73.429239, 44.079414 ], [ -73.403686, 44.153102 ], [ -73.390583, 44.190886 ], [ -73.350806, 44.225943 ], [ -73.324681, 44.243614 ], [ -73.323268, 44.264796 ], [ -73.315016, 44.388513 ], [ -73.296031, 44.428339 ], [ -73.293613, 44.438903 ], [ -73.299885, 44.476652 ], [ -73.306707, 44.500334 ], [ -73.338630, 44.546844 ], [ -73.338634, 44.546847 ], [ -73.356788, 44.557918 ], [ -73.361952, 44.563064 ], [ -73.374389, 44.575455 ], [ -73.390231, 44.618353 ], [ -73.365326, 44.703294 ], [ -73.339958, 44.778893 ], [ -73.369647, 44.829136 ], [ -73.359450, 44.915684 ], [ -73.350188, 44.994304 ], [ -73.343124, 45.010840 ], [ -73.191948, 45.013576 ], [ -73.085972, 45.015494 ], [ -73.015539, 45.015072 ], [ -73.014766, 45.014980 ], [ -72.845633, 45.016659 ], [ -72.674770, 45.015459 ], [ -72.554253, 45.011794 ], [ -72.342453, 45.005354 ], [ -72.103058, 45.005598 ], [ -71.897622, 45.009172 ], [ -71.767452, 45.011437 ], [ -71.502487, 45.013367 ], [ -71.464555, 45.013637 ], [ -71.468567, 45.010222 ], [ -71.486457, 45.007011 ], [ -71.505000, 45.008151 ], [ -71.530091, 44.999656 ], [ -71.536980, 44.994177 ], [ -71.538592, 44.988182 ], [ -71.537784, 44.984298 ], [ -71.516814, 44.947588 ], [ -71.493985, 44.911312 ], [ -71.495844, 44.904980 ], [ -71.572520, 44.810074 ], [ -71.623924, 44.755135 ], [ -71.627358, 44.747544 ], [ -71.625323, 44.729718 ], [ -71.598656, 44.698005 ], [ -71.553156, 44.626645 ], [ -71.536251, 44.587939 ], [ -71.580263, 44.506509 ], [ -71.599480, 44.486455 ], [ -71.679950, 44.427908 ], [ -71.708934, 44.411611 ], [ -71.745011, 44.401359 ], [ -71.756091, 44.406401 ], [ -71.761966, 44.407027 ], [ -71.764537, 44.406403 ], [ -71.793924, 44.399271 ], [ -71.814388, 44.381932 ], [ -71.816065, 44.366817 ], [ -71.849465, 44.359295 ], [ -72.002314, 44.324871 ], [ -72.012173, 44.321408 ], [ -72.058880, 44.286240 ], [ -72.065434, 44.277235 ], [ -72.067774, 44.270976 ], [ -72.064285, 44.187888 ], [ -72.053021, 44.167903 ], [ -72.042087, 44.157633 ], [ -72.040082, 44.155749 ], [ -72.040082, 44.155748 ], [ -72.054675, 44.112147 ], [ -72.090710, 44.035211 ], [ -72.112813, 43.988020 ], [ -72.113078, 43.972790 ], [ -72.107042, 43.969513 ], [ -72.105594, 43.959029 ], [ -72.104421, 43.950536 ], [ -72.121002, 43.918956 ], [ -72.167224, 43.886113 ], [ -72.182203, 43.834032 ], [ -72.183743, 43.806644 ], [ -72.204792, 43.771926 ], [ -72.205717, 43.771143 ], [ -72.232713, 43.748286 ], [ -72.264245, 43.734158 ], [ -72.271180, 43.734138 ], [ -72.302867, 43.702718 ], [ -72.329660, 43.634648 ], [ -72.334401, 43.619250 ], [ -72.334745, 43.614519 ], [ -72.329620, 43.600201 ], [ -72.395825, 43.520560 ], [ -72.387642, 43.502481 ], [ -72.387852, 43.471567 ], [ -72.396934, 43.428990 ], [ -72.396948, 43.428925 ], [ -72.405253, 43.389992 ], [ -72.403949, 43.358098 ], [ -72.400511, 43.337073 ], [ -72.397150, 43.316515 ], [ -72.431187, 43.231786 ], [ -72.439407, 43.211322 ], [ -72.452100, 43.161414 ], [ -72.441904, 43.136615 ], [ -72.433097, 43.120021 ], [ -72.432661, 43.114077 ], [ -72.443762, 43.006245 ], [ -72.556214, 42.866950 ], [ -72.556112, 42.866252 ], [ -72.555768, 42.858153 ], [ -72.555693, 42.856380 ], [ -72.542784, 42.808482 ], [ -72.509506, 42.781183 ], [ -72.491122, 42.772465 ], [ -72.478453, 42.762296 ], [ -72.460195, 42.732066 ], [ -72.458519, 42.726853 ] ] ] } }\n,\n{ \"type\": \"Feature\", \"properties\": { \"GEO_ID\": \"0400000US49\", \"STATE\": \"49\", \"NAME\": \"Utah\", \"LSAD\": \"\", \"CENSUSAREA\": 82169.620000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -111.046689, 42.001567 ], [ -111.046402, 41.579845 ], [ -111.046264, 41.377731 ], [ -111.046600, 41.360692 ], [ -111.046551, 41.251716 ], [ -111.046723, 40.997959 ], [ -110.500718, 40.994746 ], [ -110.048474, 40.997103 ], [ -110.000708, 40.997352 ], [ -109.999838, 40.997330 ], [ -109.855299, 40.997614 ], [ -109.854302, 40.997661 ], [ -109.715409, 40.998191 ], [ -109.713877, 40.998266 ], [ -109.676421, 40.998395 ], [ -109.207383, 41.001459 ], [ -109.050076, 41.000659 ], [ -109.048296, 40.662602 ], [ -109.048249, 40.653601 ], [ -109.050074, 40.540358 ], [ -109.049955, 40.539901 ], [ -109.050854, 40.222662 ], [ -109.050973, 40.180849 ], [ -109.050944, 40.180712 ], [ -109.050813, 40.059579 ], [ -109.050873, 40.058915 ], [ -109.051221, 39.660472 ], [ -109.051363, 39.497674 ], [ -109.051417, 39.366677 ], [ -109.051516, 39.124982 ], [ -109.053292, 38.942878 ], [ -109.053233, 38.942467 ], [ -109.053797, 38.905284 ], [ -109.053943, 38.904414 ], [ -109.059541, 38.719888 ], [ -109.059962, 38.499987 ], [ -109.060062, 38.275489 ], [ -109.042062, 38.155490 ], [ -109.042074, 38.153023 ], [ -109.042820, 37.999301 ], [ -109.042819, 37.997068 ], [ -109.043121, 37.974260 ], [ -109.042137, 37.881160 ], [ -109.041723, 37.842051 ], [ -109.041754, 37.835826 ], [ -109.041760, 37.713182 ], [ -109.041732, 37.711214 ], [ -109.042089, 37.623795 ], [ -109.042131, 37.617662 ], [ -109.041806, 37.604171 ], [ -109.041865, 37.530726 ], [ -109.041915, 37.530653 ], [ -109.043053, 37.485161 ], [ -109.045810, 37.374993 ], [ -109.045156, 37.112064 ], [ -109.045203, 37.111958 ], [ -109.045173, 37.109464 ], [ -109.045189, 37.096271 ], [ -109.044995, 37.086429 ], [ -109.045058, 37.074661 ], [ -109.045166, 37.072742 ], [ -109.045223, 36.999084 ], [ -109.181196, 36.999271 ], [ -109.233848, 36.999266 ], [ -109.246917, 36.999346 ], [ -109.263390, 36.999263 ], [ -109.268213, 36.999242 ], [ -109.270097, 36.999266 ], [ -109.378039, 36.999135 ], [ -109.381226, 36.999148 ], [ -110.000677, 36.997968 ], [ -110.331050, 36.998216 ], [ -110.495259, 37.003875 ], [ -110.750690, 37.003197 ], [ -111.189888, 37.000959 ], [ -111.405517, 37.001497 ], [ -111.405869, 37.001481 ], [ -111.412784, 37.001478 ], [ -112.357690, 37.001025 ], [ -112.368946, 37.001125 ], [ -112.534545, 37.000684 ], [ -112.538593, 37.000674 ], [ -112.540368, 37.000669 ], [ -112.545094, 37.000734 ], [ -112.558974, 37.000692 ], [ -112.609787, 37.000753 ], [ -112.899366, 37.000319 ], [ -112.966471, 37.000219 ], [ -113.965907, 36.999976 ], [ -113.965907, 37.000025 ], [ -114.050600, 37.000396 ], [ -114.051749, 37.088434 ], [ -114.051822, 37.090976 ], [ -114.051974, 37.283848 ], [ -114.051974, 37.284511 ], [ -114.051800, 37.293044 ], [ -114.051800, 37.293548 ], [ -114.051927, 37.370459 ], [ -114.051927, 37.370734 ], [ -114.052701, 37.492014 ], [ -114.052685, 37.502513 ], [ -114.052718, 37.517264 ], [ -114.052689, 37.517859 ], [ -114.052472, 37.604776 ], [ -114.051728, 37.745997 ], [ -114.051785, 37.746249 ], [ -114.051670, 37.746958 ], [ -114.051109, 37.756276 ], [ -114.048473, 37.809861 ], [ -114.050423, 37.999961 ], [ -114.049903, 38.148601 ], [ -114.050120, 38.404536 ], [ -114.050091, 38.404673 ], [ -114.049834, 38.543784 ], [ -114.049862, 38.547764 ], [ -114.050154, 38.572920 ], [ -114.049893, 38.677365 ], [ -114.047728, 39.542742 ], [ -114.047134, 39.906037 ], [ -114.046555, 40.116931 ], [ -114.045518, 40.494474 ], [ -114.045577, 40.495801 ], [ -114.045281, 40.506586 ], [ -114.043505, 40.726292 ], [ -114.043831, 40.758666 ], [ -114.043803, 40.759205 ], [ -114.042145, 40.999926 ], [ -114.039882, 41.741991 ], [ -114.041152, 41.850595 ], [ -114.041107, 41.850573 ], [ -114.041723, 41.993720 ], [ -113.893261, 41.988057 ], [ -113.796082, 41.989104 ], [ -113.764530, 41.989459 ], [ -113.431563, 41.993799 ], [ -113.402230, 41.994161 ], [ -113.396497, 41.994250 ], [ -113.000821, 41.998223 ], [ -113.000820, 41.998223 ], [ -112.979218, 41.998263 ], [ -112.909587, 41.998791 ], [ -112.882367, 41.998922 ], [ -112.880619, 41.998921 ], [ -112.833125, 41.999345 ], [ -112.833084, 41.999305 ], [ -112.788542, 41.999681 ], [ -112.709375, 42.000309 ], [ -112.648019, 42.000307 ], [ -112.450814, 42.000953 ], [ -112.450567, 42.001092 ], [ -112.386170, 42.001126 ], [ -112.264936, 42.000991 ], [ -112.239107, 42.001217 ], [ -112.163956, 41.996708 ], [ -112.109528, 41.997105 ], [ -111.915837, 41.998519 ], [ -111.915622, 41.998496 ], [ -111.876491, 41.998528 ], [ -111.507264, 41.999518 ], [ -111.425535, 42.000840 ], [ -111.420898, 42.000793 ], [ -111.415873, 42.000748 ], [ -111.046689, 42.001567 ] ] ] } }\n,\n{ \"type\": \"Feature\", \"properties\": { \"GEO_ID\": \"0400000US19\", \"STATE\": \"19\", \"NAME\": \"Iowa\", \"LSAD\": \"\", \"CENSUSAREA\": 55857.130000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -91.163064, 42.986781 ], [ -91.145560, 42.907980 ], [ -91.143375, 42.904670 ], [ -91.117411, 42.895837 ], [ -91.100565, 42.883078 ], [ -91.077643, 42.803798 ], [ -91.069549, 42.769628 ], [ -91.064896, 42.757272 ], [ -91.053733, 42.738238 ], [ -90.976314, 42.695996 ], [ -90.949213, 42.685573 ], [ -90.896961, 42.674407 ], [ -90.843910, 42.663071 ], [ -90.769495, 42.651443 ], [ -90.720209, 42.640758 ], [ -90.709204, 42.636078 ], [ -90.702671, 42.630756 ], [ -90.645627, 42.544100 ], [ -90.636727, 42.518702 ], [ -90.636927, 42.513202 ], [ -90.640927, 42.508302 ], [ -90.655927, 42.491703 ], [ -90.656527, 42.489203 ], [ -90.656327, 42.483603 ], [ -90.654027, 42.478503 ], [ -90.646727, 42.471904 ], [ -90.624328, 42.458904 ], [ -90.559451, 42.430695 ], [ -90.477279, 42.383794 ], [ -90.474834, 42.381473 ], [ -90.419027, 42.328505 ], [ -90.416535, 42.325109 ], [ -90.416200, 42.321314 ], [ -90.424326, 42.293326 ], [ -90.430735, 42.284211 ], [ -90.430884, 42.278230 ], [ -90.419326, 42.254467 ], [ -90.391108, 42.225473 ], [ -90.375129, 42.214811 ], [ -90.356964, 42.205445 ], [ -90.349162, 42.204277 ], [ -90.316269, 42.193600 ], [ -90.306531, 42.190439 ], [ -90.234919, 42.165431 ], [ -90.211328, 42.154010 ], [ -90.167533, 42.122475 ], [ -90.162225, 42.114880 ], [ -90.161119, 42.104404 ], [ -90.163405, 42.087613 ], [ -90.168358, 42.075779 ], [ -90.166495, 42.054543 ], [ -90.164537, 42.045007 ], [ -90.154221, 42.033073 ], [ -90.150916, 42.029440 ], [ -90.141167, 42.008931 ], [ -90.140613, 41.995999 ], [ -90.151600, 41.931002 ], [ -90.152104, 41.928947 ], [ -90.181973, 41.807070 ], [ -90.187969, 41.803163 ], [ -90.208440, 41.797176 ], [ -90.222263, 41.793133 ], [ -90.242747, 41.783767 ], [ -90.278633, 41.767358 ], [ -90.302782, 41.750031 ], [ -90.309826, 41.743321 ], [ -90.315220, 41.734264 ], [ -90.317041, 41.729104 ], [ -90.334525, 41.679559 ], [ -90.343162, 41.648141 ], [ -90.341650, 41.621484 ], [ -90.397930, 41.572233 ], [ -90.461432, 41.523533 ], [ -90.474332, 41.519733 ], [ -90.499475, 41.518055 ], [ -90.605937, 41.494232 ], [ -90.655839, 41.462132 ], [ -90.737537, 41.450127 ], [ -90.771672, 41.450761 ], [ -90.786282, 41.452888 ], [ -90.847458, 41.455019 ], [ -90.989976, 41.431962 ], [ -91.027787, 41.423603 ], [ -91.039872, 41.418523 ], [ -91.047819, 41.410900 ], [ -91.078682, 41.336089 ], [ -91.079657, 41.333727 ], [ -91.114186, 41.250029 ], [ -91.113648, 41.241401 ], [ -91.049808, 41.178033 ], [ -91.019036, 41.164910 ], [ -91.005503, 41.165622 ], [ -90.997906, 41.162564 ], [ -90.989663, 41.155716 ], [ -90.946627, 41.096632 ], [ -90.949383, 41.072711 ], [ -90.949383, 41.072710 ], [ -90.948523, 41.070248 ], [ -90.945549, 41.061730 ], [ -90.942253, 41.034702 ], [ -90.952233, 40.954047 ], [ -90.962916, 40.924957 ], [ -90.968995, 40.919127 ], [ -90.998500, 40.908120 ], [ -91.009536, 40.900565 ], [ -91.092993, 40.821079 ], [ -91.097553, 40.808433 ], [ -91.097031, 40.802471 ], [ -91.094728, 40.797833 ], [ -91.111940, 40.697018 ], [ -91.112258, 40.696218 ], [ -91.122421, 40.670675 ], [ -91.138055, 40.660893 ], [ -91.185415, 40.638052 ], [ -91.186980, 40.637297 ], [ -91.197906, 40.636107 ], [ -91.218437, 40.638437 ], [ -91.253074, 40.637962 ], [ -91.306524, 40.626231 ], [ -91.339719, 40.613488 ], [ -91.348733, 40.609695 ], [ -91.359873, 40.601805 ], [ -91.405241, 40.554641 ], [ -91.406851, 40.547557 ], [ -91.404125, 40.539127 ], [ -91.384531, 40.530948 ], [ -91.369059, 40.512532 ], [ -91.364211, 40.500043 ], [ -91.363910, 40.490122 ], [ -91.372554, 40.401200 ], [ -91.375746, 40.391879 ], [ -91.388360, 40.384929 ], [ -91.419422, 40.378264 ], [ -91.484507, 40.383900 ], [ -91.490977, 40.393484 ], [ -91.524612, 40.410765 ], [ -91.619486, 40.507134 ], [ -91.622362, 40.514362 ], [ -91.618028, 40.534030 ], [ -91.620071, 40.540817 ], [ -91.696359, 40.588148 ], [ -91.716769, 40.598530 ], [ -91.729115, 40.613640 ], [ -91.785916, 40.611488 ], [ -91.795374, 40.611101 ], [ -91.800133, 40.610953 ], [ -91.813968, 40.610526 ], [ -91.824826, 40.610191 ], [ -91.832481, 40.609797 ], [ -91.868401, 40.608059 ], [ -91.943114, 40.605913 ], [ -91.970988, 40.605112 ], [ -91.998683, 40.604433 ], [ -92.029649, 40.603713 ], [ -92.067904, 40.602648 ], [ -92.069521, 40.602772 ], [ -92.082339, 40.602176 ], [ -92.083200, 40.602244 ], [ -92.092875, 40.602082 ], [ -92.096387, 40.601830 ], [ -92.179780, 40.600529 ], [ -92.196162, 40.600069 ], [ -92.201669, 40.599980 ], [ -92.217603, 40.599832 ], [ -92.236484, 40.599531 ], [ -92.298754, 40.598469 ], [ -92.331205, 40.597805 ], [ -92.331445, 40.597714 ], [ -92.350776, 40.597274 ], [ -92.350807, 40.597273 ], [ -92.379691, 40.596509 ], [ -92.453745, 40.595288 ], [ -92.461609, 40.595355 ], [ -92.481692, 40.594941 ], [ -92.482394, 40.594894 ], [ -92.484588, 40.594924 ], [ -92.580278, 40.592151 ], [ -92.637898, 40.590853 ], [ -92.639223, 40.590825 ], [ -92.686693, 40.589809 ], [ -92.689854, 40.589884 ], [ -92.714598, 40.589564 ], [ -92.742232, 40.589207 ], [ -92.757407, 40.588908 ], [ -92.828061, 40.588593 ], [ -92.827992, 40.588515 ], [ -92.835074, 40.588484 ], [ -92.857391, 40.588360 ], [ -92.863034, 40.588175 ], [ -92.879178, 40.588341 ], [ -92.889796, 40.588039 ], [ -92.903544, 40.587860 ], [ -92.941595, 40.587743 ], [ -92.957747, 40.587430 ], [ -93.085517, 40.584403 ], [ -93.097296, 40.584014 ], [ -93.098507, 40.583973 ], [ -93.260612, 40.580797 ], [ -93.317605, 40.580671 ], [ -93.345442, 40.580514 ], [ -93.374386, 40.580334 ], [ -93.441767, 40.579916 ], [ -93.465297, 40.580164 ], [ -93.466887, 40.580072 ], [ -93.524124, 40.580481 ], [ -93.527607, 40.580436 ], [ -93.528177, 40.580367 ], [ -93.548284, 40.580417 ], [ -93.553986, 40.580303 ], [ -93.556899, 40.580235 ], [ -93.558938, 40.580189 ], [ -93.560798, 40.580304 ], [ -93.565240, 40.580143 ], [ -93.565810, 40.580075 ], [ -93.566189, 40.580117 ], [ -93.597352, 40.579496 ], [ -93.656211, 40.578352 ], [ -93.659272, 40.578330 ], [ -93.661913, 40.578354 ], [ -93.668845, 40.578241 ], [ -93.677099, 40.578127 ], [ -93.690333, 40.577875 ], [ -93.722443, 40.577641 ], [ -93.728355, 40.577547 ], [ -93.737259, 40.577542 ], [ -93.742759, 40.577518 ], [ -93.750223, 40.577720 ], [ -93.770231, 40.577615 ], [ -93.774344, 40.577584 ], [ -93.815485, 40.577278 ], [ -93.818725, 40.577086 ], [ -93.840930, 40.576791 ], [ -93.853656, 40.576606 ], [ -93.898327, 40.576011 ], [ -93.899317, 40.575942 ], [ -93.900877, 40.575874 ], [ -93.913961, 40.575672 ], [ -93.935687, 40.575330 ], [ -93.936317, 40.575284 ], [ -93.937097, 40.575421 ], [ -93.938627, 40.575284 ], [ -93.939857, 40.575192 ], [ -93.963863, 40.574754 ], [ -93.976766, 40.574635 ], [ -94.015492, 40.573914 ], [ -94.034134, 40.573585 ], [ -94.080223, 40.572899 ], [ -94.080463, 40.572899 ], [ -94.089194, 40.572806 ], [ -94.091085, 40.572897 ], [ -94.232240, 40.571907 ], [ -94.287350, 40.571521 ], [ -94.294813, 40.571341 ], [ -94.310724, 40.571524 ], [ -94.324765, 40.571477 ], [ -94.336556, 40.571475 ], [ -94.336706, 40.571452 ], [ -94.358307, 40.571363 ], [ -94.429725, 40.571041 ], [ -94.460088, 40.570947 ], [ -94.470648, 40.570830 ], [ -94.471213, 40.570825 ], [ -94.489280, 40.570707 ], [ -94.533878, 40.570739 ], [ -94.537058, 40.570763 ], [ -94.538318, 40.570763 ], [ -94.541828, 40.570809 ], [ -94.542154, 40.570809 ], [ -94.594001, 40.570966 ], [ -94.632032, 40.571186 ], [ -94.632035, 40.571186 ], [ -94.682601, 40.571787 ], [ -94.714925, 40.572201 ], [ -94.716665, 40.572201 ], [ -94.773988, 40.572977 ], [ -94.811188, 40.573532 ], [ -94.819978, 40.573714 ], [ -94.823758, 40.573942 ], [ -94.896801, 40.574738 ], [ -94.901451, 40.574877 ], [ -94.914896, 40.575068 ], [ -94.955134, 40.575669 ], [ -94.966491, 40.575839 ], [ -95.068921, 40.576880 ], [ -95.079742, 40.577007 ], [ -95.097607, 40.577168 ], [ -95.107213, 40.577116 ], [ -95.110303, 40.577160 ], [ -95.110663, 40.577206 ], [ -95.112222, 40.577228 ], [ -95.120829, 40.577413 ], [ -95.154499, 40.577860 ], [ -95.164058, 40.578017 ], [ -95.202264, 40.578528 ], [ -95.211408, 40.578650 ], [ -95.211590, 40.578654 ], [ -95.212715, 40.578679 ], [ -95.213327, 40.578689 ], [ -95.217455, 40.578759 ], [ -95.218783, 40.578781 ], [ -95.221525, 40.578827 ], [ -95.335588, 40.579871 ], [ -95.357802, 40.580100 ], [ -95.373893, 40.580501 ], [ -95.373923, 40.580501 ], [ -95.415406, 40.581014 ], [ -95.469319, 40.581540 ], [ -95.525392, 40.582090 ], [ -95.526682, 40.582136 ], [ -95.533182, 40.582249 ], [ -95.554959, 40.582629 ], [ -95.574046, 40.582963 ], [ -95.611069, 40.583495 ], [ -95.641840, 40.584234 ], [ -95.687442, 40.584380 ], [ -95.687500, 40.584381 ], [ -95.746443, 40.584935 ], [ -95.765645, 40.585208 ], [ -95.753148, 40.592840 ], [ -95.750053, 40.597052 ], [ -95.748626, 40.603355 ], [ -95.776251, 40.647463 ], [ -95.786568, 40.657253 ], [ -95.795489, 40.662384 ], [ -95.822913, 40.667240 ], [ -95.842801, 40.677496 ], [ -95.883178, 40.717579 ], [ -95.888907, 40.731855 ], [ -95.886690, 40.742101 ], [ -95.881529, 40.750611 ], [ -95.872281, 40.758349 ], [ -95.861695, 40.762871 ], [ -95.854172, 40.784012 ], [ -95.821193, 40.876682 ], [ -95.823123, 40.900924 ], [ -95.829074, 40.975688 ], [ -95.835434, 40.984184 ], [ -95.867286, 41.001599 ], [ -95.867246, 41.043671 ], [ -95.866289, 41.051731 ], [ -95.853396, 41.160280 ], [ -95.852788, 41.165398 ], [ -95.914590, 41.185098 ], [ -95.923190, 41.190998 ], [ -95.923219, 41.191046 ], [ -95.925990, 41.195698 ], [ -95.927491, 41.202198 ], [ -95.924891, 41.211198 ], [ -95.902490, 41.273398 ], [ -95.913790, 41.320197 ], [ -95.925690, 41.322197 ], [ -95.939291, 41.328897 ], [ -95.953091, 41.339896 ], [ -95.956691, 41.345496 ], [ -95.956791, 41.349196 ], [ -95.938310, 41.392162 ], [ -95.937346, 41.394403 ], [ -95.930705, 41.433894 ], [ -95.981319, 41.506837 ], [ -95.994784, 41.526242 ], [ -96.030593, 41.527292 ], [ -96.036603, 41.509047 ], [ -96.040701, 41.507076 ], [ -96.046707, 41.507085 ], [ -96.055096, 41.509577 ], [ -96.089714, 41.531778 ], [ -96.094090, 41.539265 ], [ -96.118105, 41.613495 ], [ -96.116233, 41.621574 ], [ -96.097728, 41.639633 ], [ -96.095046, 41.647365 ], [ -96.095415, 41.652736 ], [ -96.099837, 41.661030 ], [ -96.121726, 41.682740 ], [ -96.096795, 41.698681 ], [ -96.077088, 41.715403 ], [ -96.064537, 41.793002 ], [ -96.065770, 41.798174 ], [ -96.071007, 41.804639 ], [ -96.077646, 41.808804 ], [ -96.086407, 41.811380 ], [ -96.110907, 41.830818 ], [ -96.139554, 41.865830 ], [ -96.144483, 41.871854 ], [ -96.161756, 41.901820 ], [ -96.161988, 41.905553 ], [ -96.159098, 41.910057 ], [ -96.142265, 41.915379 ], [ -96.136743, 41.920826 ], [ -96.129186, 41.965136 ], [ -96.129505, 41.971673 ], [ -96.221730, 42.026205 ], [ -96.251714, 42.040472 ], [ -96.272877, 42.047238 ], [ -96.279079, 42.074026 ], [ -96.307421, 42.130707 ], [ -96.344121, 42.162091 ], [ -96.349688, 42.172043 ], [ -96.359870, 42.210545 ], [ -96.356666, 42.215077 ], [ -96.356591, 42.215182 ], [ -96.336323, 42.218922 ], [ -96.323723, 42.229887 ], [ -96.322868, 42.233637 ], [ -96.328905, 42.254734 ], [ -96.348814, 42.282024 ], [ -96.375307, 42.318339 ], [ -96.384169, 42.325874 ], [ -96.407998, 42.337408 ], [ -96.413895, 42.343393 ], [ -96.417786, 42.351449 ], [ -96.415509, 42.400294 ], [ -96.413609, 42.407894 ], [ -96.387608, 42.432494 ], [ -96.380707, 42.446394 ], [ -96.381307, 42.461694 ], [ -96.385407, 42.473094 ], [ -96.396107, 42.484095 ], [ -96.409408, 42.487595 ], [ -96.443408, 42.489495 ], [ -96.466253, 42.497702 ], [ -96.476947, 42.508677 ], [ -96.481308, 42.516556 ], [ -96.479909, 42.524195 ], [ -96.477709, 42.535595 ], [ -96.476952, 42.556079 ], [ -96.479685, 42.561238 ], [ -96.516338, 42.630435 ], [ -96.542366, 42.660736 ], [ -96.575299, 42.682665 ], [ -96.601989, 42.697429 ], [ -96.606140, 42.694661 ], [ -96.610975, 42.694751 ], [ -96.630617, 42.705880 ], [ -96.639704, 42.737071 ], [ -96.633168, 42.768325 ], [ -96.632142, 42.770863 ], [ -96.577813, 42.828102 ], [ -96.563058, 42.831051 ], [ -96.552092, 42.836057 ], [ -96.549513, 42.839143 ], [ -96.541460, 42.857682 ], [ -96.523264, 42.909059 ], [ -96.510749, 42.944397 ], [ -96.509479, 42.971122 ], [ -96.513111, 43.027880 ], [ -96.466017, 43.062235 ], [ -96.455107, 43.083366 ], [ -96.439335, 43.113916 ], [ -96.436589, 43.120842 ], [ -96.475571, 43.221054 ], [ -96.485264, 43.224183 ], [ -96.557126, 43.224192 ], [ -96.572489, 43.249178 ], [ -96.584124, 43.268101 ], [ -96.586317, 43.274319 ], [ -96.569110, 43.295535 ], [ -96.551929, 43.292974 ], [ -96.530392, 43.300034 ], [ -96.525564, 43.312467 ], [ -96.521264, 43.374978 ], [ -96.521697, 43.386897 ], [ -96.524044, 43.394762 ], [ -96.529152, 43.397735 ], [ -96.531159, 43.395610 ], [ -96.537460, 43.395246 ], [ -96.557586, 43.406792 ], [ -96.594254, 43.434153 ], [ -96.602860, 43.450907 ], [ -96.600039, 43.457080 ], [ -96.584070, 43.468856 ], [ -96.587151, 43.484697 ], [ -96.598928, 43.500457 ], [ -96.591213, 43.500514 ], [ -96.453049, 43.500415 ], [ -96.351059, 43.500333 ], [ -96.332062, 43.500415 ], [ -96.208814, 43.500391 ], [ -96.198766, 43.500312 ], [ -96.198484, 43.500335 ], [ -96.053163, 43.500176 ], [ -95.861152, 43.499966 ], [ -95.860946, 43.499966 ], [ -95.834421, 43.499966 ], [ -95.821277, 43.499965 ], [ -95.741569, 43.499891 ], [ -95.740813, 43.499894 ], [ -95.514774, 43.499865 ], [ -95.486803, 43.500246 ], [ -95.486737, 43.500274 ], [ -95.475065, 43.500335 ], [ -95.454706, 43.500563 ], [ -95.454706, 43.500648 ], [ -95.454433, 43.500644 ], [ -95.434293, 43.500360 ], [ -95.434199, 43.500314 ], [ -95.387851, 43.500240 ], [ -95.387812, 43.500240 ], [ -95.387787, 43.500240 ], [ -95.375269, 43.500322 ], [ -95.374737, 43.500314 ], [ -95.250969, 43.500464 ], [ -95.250762, 43.500406 ], [ -95.214938, 43.500885 ], [ -95.180423, 43.500774 ], [ -95.167891, 43.500885 ], [ -95.167294, 43.500771 ], [ -95.122633, 43.500755 ], [ -95.114874, 43.500667 ], [ -95.054289, 43.500860 ], [ -95.053504, 43.500769 ], [ -95.034000, 43.500811 ], [ -95.014245, 43.500872 ], [ -94.994460, 43.500523 ], [ -94.974359, 43.500508 ], [ -94.954477, 43.500467 ], [ -94.934625, 43.500490 ], [ -94.914955, 43.500450 ], [ -94.914905, 43.500450 ], [ -94.914634, 43.500450 ], [ -94.914523, 43.500450 ], [ -94.887291, 43.500502 ], [ -94.874235, 43.500557 ], [ -94.872725, 43.500564 ], [ -94.860192, 43.500546 ], [ -94.857867, 43.500615 ], [ -94.854555, 43.500614 ], [ -94.615916, 43.500544 ], [ -94.565665, 43.500330 ], [ -94.560838, 43.500377 ], [ -94.470420, 43.500340 ], [ -94.447048, 43.500639 ], [ -94.442848, 43.500583 ], [ -94.442835, 43.500583 ], [ -94.390597, 43.500469 ], [ -94.377466, 43.500379 ], [ -94.247965, 43.500333 ], [ -94.109880, 43.500283 ], [ -94.108068, 43.500300 ], [ -94.094339, 43.500302 ], [ -94.092894, 43.500302 ], [ -93.970762, 43.499605 ], [ -93.970760, 43.499605 ], [ -93.795793, 43.499520 ], [ -93.794285, 43.499542 ], [ -93.716217, 43.499563 ], [ -93.708771, 43.499564 ], [ -93.704916, 43.499568 ], [ -93.699345, 43.499576 ], [ -93.648533, 43.499559 ], [ -93.617131, 43.499548 ], [ -93.576728, 43.499520 ], [ -93.558631, 43.499521 ], [ -93.532178, 43.499472 ], [ -93.528482, 43.499471 ], [ -93.497405, 43.499456 ], [ -93.497350, 43.499456 ], [ -93.488261, 43.499417 ], [ -93.482009, 43.499482 ], [ -93.472804, 43.499400 ], [ -93.468563, 43.499473 ], [ -93.428509, 43.499478 ], [ -93.399035, 43.499485 ], [ -93.271800, 43.499356 ], [ -93.228861, 43.499567 ], [ -93.049192, 43.499571 ], [ -93.024429, 43.499572 ], [ -93.024348, 43.499572 ], [ -93.007871, 43.499604 ], [ -92.870277, 43.499548 ], [ -92.790317, 43.499567 ], [ -92.752088, 43.500084 ], [ -92.707312, 43.500069 ], [ -92.692786, 43.500063 ], [ -92.689033, 43.500062 ], [ -92.672580, 43.500055 ], [ -92.653318, 43.500050 ], [ -92.649194, 43.500049 ], [ -92.553161, 43.500300 ], [ -92.553128, 43.500300 ], [ -92.464505, 43.500345 ], [ -92.448948, 43.500420 ], [ -92.408832, 43.500614 ], [ -92.406130, 43.500476 ], [ -92.388298, 43.500483 ], [ -92.368908, 43.500454 ], [ -92.279084, 43.500436 ], [ -92.277425, 43.500466 ], [ -92.198788, 43.500527 ], [ -92.178863, 43.500713 ], [ -92.103886, 43.500735 ], [ -92.089970, 43.500684 ], [ -92.079954, 43.500647 ], [ -92.079802, 43.500647 ], [ -91.949879, 43.500485 ], [ -91.941837, 43.500554 ], [ -91.824848, 43.500684 ], [ -91.807156, 43.500648 ], [ -91.804925, 43.500716 ], [ -91.779290, 43.500803 ], [ -91.777688, 43.500711 ], [ -91.761414, 43.500637 ], [ -91.738446, 43.500525 ], [ -91.736558, 43.500561 ], [ -91.733330, 43.500623 ], [ -91.730359, 43.500680 ], [ -91.730217, 43.500680 ], [ -91.700749, 43.500581 ], [ -91.670872, 43.500513 ], [ -91.658401, 43.500533 ], [ -91.651396, 43.500454 ], [ -91.644924, 43.500529 ], [ -91.639772, 43.500573 ], [ -91.635626, 43.500463 ], [ -91.634495, 43.500439 ], [ -91.634244, 43.500479 ], [ -91.625611, 43.500727 ], [ -91.620785, 43.500677 ], [ -91.617407, 43.500687 ], [ -91.616895, 43.500663 ], [ -91.615293, 43.500550 ], [ -91.610895, 43.500530 ], [ -91.610832, 43.500530 ], [ -91.591073, 43.500536 ], [ -91.551021, 43.500539 ], [ -91.541220, 43.500515 ], [ -91.533806, 43.500560 ], [ -91.491042, 43.500690 ], [ -91.465063, 43.500608 ], [ -91.461403, 43.500642 ], [ -91.445932, 43.500588 ], [ -91.441786, 43.500438 ], [ -91.376950, 43.500482 ], [ -91.371608, 43.500945 ], [ -91.369325, 43.500827 ], [ -91.217706, 43.500550 ], [ -91.205550, 43.422949 ], [ -91.210233, 43.372064 ], [ -91.107237, 43.313645 ], [ -91.085652, 43.291870 ], [ -91.057918, 43.255366 ], [ -91.062562, 43.243165 ], [ -91.146200, 43.152405 ], [ -91.156200, 43.142945 ], [ -91.175253, 43.134665 ], [ -91.178251, 43.124982 ], [ -91.177222, 43.080247 ], [ -91.178087, 43.062044 ], [ -91.175167, 43.041267 ], [ -91.163064, 42.986781 ] ] ] } }\n,\n{ \"type\": \"Feature\", \"properties\": { \"GEO_ID\": \"0400000US21\", \"STATE\": \"21\", \"NAME\": \"Kentucky\", \"LSAD\": \"\", \"CENSUSAREA\": 39486.338000 }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [ [ [ [ -89.539100, 36.498201 ], [ -89.560344, 36.525436 ], [ -89.570071, 36.544387 ], [ -89.571509, 36.552569 ], [ -89.566817, 36.564216 ], [ -89.552640, 36.577178 ], [ -89.546113, 36.579989 ], [ -89.527583, 36.581147 ], [ -89.500076, 36.576305 ], [ -89.484836, 36.571821 ], [ -89.479093, 36.568206 ], [ -89.473341, 36.559918 ], [ -89.467761, 36.546847 ], [ -89.465445, 36.536163 ], [ -89.465888, 36.529946 ], [ -89.472460, 36.513741 ], [ -89.485106, 36.497692 ], [ -89.492537, 36.497775 ], [ -89.498036, 36.497887 ], [ -89.539100, 36.498201 ] ] ], [ [ [ -82.604230, 38.247303 ], [ -82.644739, 38.165487 ], [ -82.636466, 38.137860 ], [ -82.621164, 38.123239 ], [ -82.602618, 38.118350 ], [ -82.600127, 38.117389 ], [ -82.547284, 38.061094 ], [ -82.539139, 38.039093 ], [ -82.519665, 38.008538 ], [ -82.509812, 38.001249 ], [ -82.487732, 37.998330 ], [ -82.465473, 37.984780 ], [ -82.464096, 37.982437 ], [ -82.464987, 37.976859 ], [ -82.497300, 37.945507 ], [ -82.497358, 37.945338 ], [ -82.500386, 37.936518 ], [ -82.474666, 37.910388 ], [ -82.417679, 37.870658 ], [ -82.400234, 37.851833 ], [ -82.329867, 37.775897 ], [ -82.319023, 37.758892 ], [ -82.326404, 37.740815 ], [ -82.325739, 37.735799 ], [ -82.307235, 37.707669 ], [ -82.297011, 37.687273 ], [ -82.250280, 37.657776 ], [ -82.219670, 37.643046 ], [ -82.141814, 37.595052 ], [ -82.125601, 37.579021 ], [ -82.125892, 37.574031 ], [ -82.116584, 37.559588 ], [ -82.048521, 37.531078 ], [ -82.008274, 37.533357 ], [ -81.999844, 37.542579 ], [ -81.998177, 37.543082 ], [ -81.968297, 37.537798 ], [ -82.291908, 37.311642 ], [ -82.305874, 37.301100 ], [ -82.310793, 37.297387 ], [ -82.350948, 37.267077 ], [ -82.510826, 37.218091 ], [ -82.553549, 37.200867 ], [ -82.565329, 37.196118 ], [ -82.565375, 37.196092 ], [ -82.624878, 37.162932 ], [ -82.721941, 37.105689 ], [ -82.720597, 37.081833 ], [ -82.722472, 37.045101 ], [ -82.771795, 37.015716 ], [ -82.777368, 37.015279 ], [ -82.788897, 37.008160 ], [ -82.789092, 37.007995 ], [ -82.790462, 37.007263 ], [ -82.790890, 37.006760 ], [ -82.800531, 37.007944 ], [ -82.815748, 37.007196 ], [ -82.818006, 37.006161 ], [ -82.830588, 37.000945 ], [ -82.829125, 36.997541 ], [ -82.830802, 36.993445 ], [ -82.833843, 36.991973 ], [ -82.836008, 36.988837 ], [ -82.838549, 36.987027 ], [ -82.840051, 36.987113 ], [ -82.851397, 36.984497 ], [ -82.852614, 36.984963 ], [ -82.862926, 36.979975 ], [ -82.864909, 36.979010 ], [ -82.866019, 36.978272 ], [ -82.866689, 36.978052 ], [ -82.867535, 36.977518 ], [ -82.868455, 36.976481 ], [ -82.869183, 36.974183 ], [ -82.869183, 36.974182 ], [ -82.870274, 36.965993 ], [ -82.870230, 36.965498 ], [ -82.867358, 36.963182 ], [ -82.865404, 36.958084 ], [ -82.864211, 36.957983 ], [ -82.862866, 36.957765 ], [ -82.860534, 36.956015 ], [ -82.858443, 36.954036 ], [ -82.855705, 36.953808 ], [ -82.856099, 36.952471 ], [ -82.860633, 36.945840 ], [ -82.861282, 36.944848 ], [ -82.861684, 36.939316 ], [ -82.860537, 36.937439 ], [ -82.858784, 36.933065 ], [ -82.858461, 36.932717 ], [ -82.861943, 36.924236 ], [ -82.863468, 36.922308 ], [ -82.872136, 36.913456 ], [ -82.873777, 36.912299 ], [ -82.885618, 36.900415 ], [ -82.911690, 36.874248 ], [ -82.911824, 36.874243 ], [ -82.973395, 36.859097 ], [ -83.072590, 36.854589 ], [ -83.099792, 36.824889 ], [ -83.131694, 36.781488 ], [ -83.131245, 36.767105 ], [ -83.125655, 36.761407 ], [ -83.125728, 36.761276 ], [ -83.127833, 36.750828 ], [ -83.136395, 36.743088 ], [ -83.167396, 36.739187 ], [ -83.199698, 36.737487 ], [ -83.342804, 36.701286 ], [ -83.353613, 36.696699 ], [ -83.354606, 36.696153 ], [ -83.460808, 36.664885 ], [ -83.461013, 36.664916 ], [ -83.498011, 36.670485 ], [ -83.527212, 36.665984 ], [ -83.649513, 36.616683 ], [ -83.675413, 36.600814 ], [ -83.677114, 36.596582 ], [ -83.690714, 36.582581 ], [ -83.930669, 36.588249 ], [ -83.987612, 36.589595 ], [ -83.987842, 36.589600 ], [ -84.227295, 36.591685 ], [ -84.261333, 36.591981 ], [ -84.778455, 36.603222 ], [ -84.785341, 36.603372 ], [ -84.785399, 36.603374 ], [ -84.859759, 36.606428 ], [ -84.859738, 36.606495 ], [ -84.974888, 36.614327 ], [ -85.086415, 36.621913 ], [ -85.096128, 36.622483 ], [ -85.276284, 36.626511 ], [ -85.276289, 36.626511 ], [ -85.295990, 36.625488 ], [ -85.436418, 36.618194 ], [ -85.471338, 36.616380 ], [ -85.508605, 36.615020 ], [ -85.551483, 36.615727 ], [ -85.552017, 36.615782 ], [ -85.788613, 36.621845 ], [ -85.788645, 36.621846 ], [ -85.976421, 36.628400 ], [ -86.032770, 36.630367 ], [ -86.033139, 36.630413 ], [ -86.038366, 36.630804 ], [ -86.080666, 36.633940 ], [ -86.081944, 36.633848 ], [ -86.197573, 36.639363 ], [ -86.204859, 36.639741 ], [ -86.205468, 36.639783 ], [ -86.216183, 36.640527 ], [ -86.216410, 36.640595 ], [ -86.219081, 36.640824 ], [ -86.222151, 36.640891 ], [ -86.333051, 36.648778 ], [ -86.411387, 36.650550 ], [ -86.468497, 36.651841 ], [ -86.472190, 36.651763 ], [ -86.473413, 36.651676 ], [ -86.473497, 36.651671 ], [ -86.564143, 36.633472 ], [ -86.564252, 36.633522 ], [ -86.605042, 36.652125 ], [ -86.606394, 36.652107 ], [ -86.758920, 36.649018 ], [ -86.763295, 36.648907 ], [ -86.813037, 36.647647 ], [ -86.816186, 36.647722 ], [ -86.818405, 36.647639 ], [ -86.833155, 36.647210 ], [ -86.854268, 36.646884 ], [ -86.906023, 36.646302 ], [ -86.906583, 36.646255 ], [ -87.060843, 36.643412 ], [ -87.114976, 36.642414 ], [ -87.114983, 36.642414 ], [ -87.230530, 36.641895 ], [ -87.231037, 36.641888 ], [ -87.247655, 36.641841 ], [ -87.278398, 36.641718 ], [ -87.281506, 36.641761 ], [ -87.335980, 36.641543 ], [ -87.344131, 36.641510 ], [ -87.347796, 36.641440 ], [ -87.414309, 36.641047 ], [ -87.425009, 36.641047 ], [ -87.436509, 36.640747 ], [ -87.563052, 36.639113 ], [ -87.564928, 36.639113 ], [ -87.641146, 36.638036 ], [ -87.641150, 36.638036 ], [ -87.694186, 36.636838 ], [ -87.853204, 36.633247 ], [ -87.849567, 36.663701 ], [ -88.011792, 36.677025 ], [ -88.070532, 36.678118 ], [ -88.068208, 36.659747 ], [ -88.055604, 36.635710 ], [ -88.045127, 36.602939 ], [ -88.035625, 36.561736 ], [ -88.032489, 36.540662 ], [ -88.037822, 36.513850 ], [ -88.039481, 36.510408 ], [ -88.053205, 36.497129 ], [ -88.053292, 36.497130 ], [ -88.320794, 36.500432 ], [ -88.325895, 36.500483 ], [ -88.330799, 36.500531 ], [ -88.416360, 36.500756 ], [ -88.450161, 36.501101 ], [ -88.452543, 36.500872 ], [ -88.472564, 36.501028 ], [ -88.489075, 36.501068 ], [ -88.489210, 36.501068 ], [ -88.511920, 36.501457 ], [ -88.512270, 36.501506 ], [ -88.516346, 36.501431 ], [ -88.516427, 36.501430 ], [ -88.545192, 36.501814 ], [ -88.577283, 36.501940 ], [ -88.661133, 36.502243 ], [ -88.715255, 36.502662 ], [ -88.747523, 36.502834 ], [ -88.799594, 36.502757 ], [ -88.816765, 36.502815 ], [ -88.827012, 36.502850 ], [ -88.827301, 36.502852 ], [ -88.834626, 36.502914 ], [ -88.834866, 36.502911 ], [ -88.874725, 36.502446 ], [ -88.964471, 36.502191 ], [ -89.000063, 36.502633 ], [ -89.006825, 36.502684 ], [ -89.010439, 36.502710 ], [ -89.034649, 36.502964 ], [ -89.058871, 36.503157 ], [ -89.072118, 36.503249 ], [ -89.090146, 36.503392 ], [ -89.117537, 36.503603 ], [ -89.119805, 36.503647 ], [ -89.163224, 36.504522 ], [ -89.163429, 36.504526 ], [ -89.211409, 36.505630 ], [ -89.279091, 36.506511 ], [ -89.282298, 36.506782 ], [ -89.346053, 36.503210 ], [ -89.346056, 36.503210 ], [ -89.356593, 36.502195 ], [ -89.380085, 36.500416 ], [ -89.381792, 36.500062 ], [ -89.403913, 36.499141 ], [ -89.417293, 36.499033 ], [ -89.400581, 36.538337 ], [ -89.388140, 36.573416 ], [ -89.376367, 36.613868 ], [ -89.365548, 36.625059 ], [ -89.343753, 36.630991 ], [ -89.327578, 36.632127 ], [ -89.326731, 36.632186 ], [ -89.313405, 36.620120 ], [ -89.294637, 36.593729 ], [ -89.271710, 36.571387 ], [ -89.259994, 36.565149 ], [ -89.236542, 36.566824 ], [ -89.227319, 36.569375 ], [ -89.213563, 36.580119 ], [ -89.202607, 36.601576 ], [ -89.200902, 36.618177 ], [ -89.197654, 36.628936 ], [ -89.187749, 36.641115 ], [ -89.174741, 36.650416 ], [ -89.174733, 36.650476 ], [ -89.171882, 36.672526 ], [ -89.199480, 36.716045 ], [ -89.201047, 36.725772 ], [ -89.197808, 36.739412 ], [ -89.184523, 36.753638 ], [ -89.169106, 36.759473 ], [ -89.142313, 36.755369 ], [ -89.130399, 36.751702 ], [ -89.123548, 36.785220 ], [ -89.123530, 36.785309 ], [ -89.179229, 36.812915 ], [ -89.178574, 36.816554 ], [ -89.177177, 36.835779 ], [ -89.147674, 36.847148 ], [ -89.100766, 36.943973 ], [ -89.100794, 36.944006 ], [ -89.132685, 36.982200 ], [ -89.166447, 37.003337 ], [ -89.173595, 37.011409 ], [ -89.178975, 37.020928 ], [ -89.182509, 37.037275 ], [ -89.181369, 37.046305 ], [ -89.175725, 37.062069 ], [ -89.171881, 37.068184 ], [ -89.168087, 37.074218 ], [ -89.086526, 37.165602 ], [ -89.041263, 37.202881 ], [ -89.000968, 37.224401 ], [ -88.983260, 37.228685 ], [ -88.966831, 37.229891 ], [ -88.933399, 37.225007 ], [ -88.933385, 37.225005 ], [ -88.942111, 37.228811 ], [ -88.928021, 37.226281 ], [ -88.916934, 37.224291 ], [ -88.809206, 37.189235 ], [ -88.625889, 37.119458 ], [ -88.589207, 37.099655 ], [ -88.576718, 37.085852 ], [ -88.564152, 37.078440 ], [ -88.560032, 37.076010 ], [ -88.545403, 37.070003 ], [ -88.531576, 37.067192 ], [ -88.514356, 37.065231 ], [ -88.490297, 37.066669 ], [ -88.482856, 37.067114 ], [ -88.458948, 37.073796 ], [ -88.444605, 37.098601 ], [ -88.424403, 37.152428 ], [ -88.447764, 37.203527 ], [ -88.458763, 37.213536 ], [ -88.471753, 37.220155 ], [ -88.509328, 37.262130 ], [ -88.515939, 37.284043 ], [ -88.514661, 37.290948 ], [ -88.476592, 37.386875 ], [ -88.470224, 37.396255 ], [ -88.456000, 37.408482 ], [ -88.439333, 37.416416 ], [ -88.414895, 37.423461 ], [ -88.408808, 37.425216 ], [ -88.358436, 37.404860 ], [ -88.330622, 37.429316 ], [ -88.312585, 37.440591 ], [ -88.281667, 37.452596 ], [ -88.255193, 37.456748 ], [ -88.083395, 37.473683 ], [ -88.062562, 37.489385 ], [ -88.061292, 37.505232 ], [ -88.061311, 37.505332 ], [ -88.063311, 37.515755 ], [ -88.072242, 37.528826 ], [ -88.121517, 37.568166 ], [ -88.133235, 37.574154 ], [ -88.133306, 37.574191 ], [ -88.133393, 37.574235 ], [ -88.133416, 37.574277 ], [ -88.139973, 37.586451 ], [ -88.156827, 37.632801 ], [ -88.160187, 37.657592 ], [ -88.158207, 37.664542 ], [ -88.151646, 37.675098 ], [ -88.122412, 37.709685 ], [ -88.072538, 37.733286 ], [ -88.059588, 37.742608 ], [ -88.050969, 37.752599 ], [ -88.045008, 37.762436 ], [ -88.039000, 37.775454 ], [ -88.028030, 37.799224 ], [ -88.017314, 37.801911 ], [ -88.004706, 37.800145 ], [ -87.976389, 37.788004 ], [ -87.970869, 37.783456 ], [ -87.943756, 37.776843 ], [ -87.906810, 37.807624 ], [ -87.903804, 37.817762 ], [ -87.907773, 37.837611 ], [ -87.910276, 37.843416 ], [ -87.914892, 37.849618 ], [ -87.927303, 37.858709 ], [ -87.936228, 37.867937 ], [ -87.940005, 37.875044 ], [ -87.940839, 37.883338 ], [ -87.940069, 37.887670 ], [ -87.936784, 37.892587 ], [ -87.927424, 37.902038 ], [ -87.904789, 37.924892 ], [ -87.898062, 37.927514 ], [ -87.883321, 37.926238 ], [ -87.872540, 37.920999 ], [ -87.865558, 37.915056 ], [ -87.857243, 37.900649 ], [ -87.841193, 37.882325 ], [ -87.830578, 37.876516 ], [ -87.790900, 37.875714 ], [ -87.783643, 37.877759 ], [ -87.762260, 37.890906 ], [ -87.700421, 37.900858 ], [ -87.684018, 37.903498 ], [ -87.675730, 37.901930 ], [ -87.666481, 37.895786 ], [ -87.662865, 37.885578 ], [ -87.681633, 37.855917 ], [ -87.681900, 37.846410 ], [ -87.679188, 37.836321 ], [ -87.670889, 37.828429 ], [ -87.645858, 37.825899 ], [ -87.615399, 37.831974 ], [ -87.606599, 37.838669 ], [ -87.591504, 37.856642 ], [ -87.588729, 37.860984 ], [ -87.588426, 37.868791 ], [ -87.591582, 37.887194 ], [ -87.597118, 37.892394 ], [ -87.620272, 37.906922 ], [ -87.626256, 37.916138 ], [ -87.628960, 37.926714 ], [ -87.601416, 37.972542 ], [ -87.592916, 37.975842 ], [ -87.585916, 37.975442 ], [ -87.581115, 37.973442 ], [ -87.574715, 37.967742 ], [ -87.573415, 37.962642 ], [ -87.574287, 37.954842 ], [ -87.572030, 37.947466 ], [ -87.559342, 37.931146 ], [ -87.550333, 37.924890 ], [ -87.511499, 37.906426 ], [ -87.451185, 37.941034 ], [ -87.450458, 37.941451 ], [ -87.436859, 37.944192 ], [ -87.418585, 37.944763 ], [ -87.402632, 37.942267 ], [ -87.380247, 37.935596 ], [ -87.302324, 37.898445 ], [ -87.269561, 37.877155 ], [ -87.262930, 37.872846 ], [ -87.202240, 37.843791 ], [ -87.132621, 37.791008 ], [ -87.128749, 37.785728 ], [ -87.119229, 37.782848 ], [ -87.111133, 37.782512 ], [ -87.090636, 37.787808 ], [ -87.077404, 37.796209 ], [ -87.067836, 37.806065 ], [ -87.057836, 37.827457 ], [ -87.043854, 37.870796 ], [ -87.043407, 37.879940 ], [ -87.046237, 37.889866 ], [ -87.042249, 37.898291 ], [ -87.033444, 37.906593 ], [ -87.010315, 37.919668 ], [ -86.978957, 37.930200 ], [ -86.978830, 37.930214 ], [ -86.919329, 37.936664 ], [ -86.902413, 37.946161 ], [ -86.884961, 37.964373 ], [ -86.855950, 37.987292 ], [ -86.823491, 37.998939 ], [ -86.815267, 37.998877 ], [ -86.814776, 37.998638 ], [ -86.794985, 37.988982 ], [ -86.787695, 37.971449 ], [ -86.770179, 37.940264 ], [ -86.750990, 37.912893 ], [ -86.740877, 37.902568 ], [ -86.731460, 37.894340 ], [ -86.723510, 37.892831 ], [ -86.718462, 37.893123 ], [ -86.709164, 37.897640 ], [ -86.660293, 37.865057 ], [ -86.655296, 37.842508 ], [ -86.655285, 37.842506 ], [ -86.648028, 37.841425 ], [ -86.634271, 37.843845 ], [ -86.604624, 37.858272 ], [ -86.525174, 37.968228 ], [ -86.524969, 38.027879 ], [ -86.521825, 38.038327 ], [ -86.517289, 38.042634 ], [ -86.511760, 38.044448 ], [ -86.490858, 38.045796 ], [ -86.490853, 38.045796 ], [ -86.466876, 38.046597 ], [ -86.452192, 38.050490 ], [ -86.438236, 38.060426 ], [ -86.432789, 38.067171 ], [ -86.430091, 38.078638 ], [ -86.426508, 38.081784 ], [ -86.398661, 38.106238 ], [ -86.332567, 38.130131 ], [ -86.326788, 38.134604 ], [ -86.323453, 38.139032 ], [ -86.314292, 38.142610 ], [ -86.309727, 38.144393 ], [ -86.283964, 38.143185 ], [ -86.271223, 38.130112 ], [ -86.278034, 38.102426 ], [ -86.278720, 38.089303 ], [ -86.273584, 38.067443 ], [ -86.266891, 38.057125 ], [ -86.220371, 38.027922 ], [ -86.178983, 38.011308 ], [ -86.172186, 38.009920 ], [ -86.029509, 37.992640 ], [ -85.998609, 37.997775 ], [ -85.951467, 38.005608 ], [ -85.947952, 38.007083 ], [ -85.941403, 38.009831 ], [ -85.930235, 38.018311 ], [ -85.922395, 38.028679 ], [ -85.911607, 38.066890 ], [ -85.906163, 38.086170 ], [ -85.904564, 38.100270 ], [ -85.905164, 38.111070 ], [ -85.909464, 38.140070 ], [ -85.908764, 38.161169 ], [ -85.899550, 38.180343 ], [ -85.897664, 38.184269 ], [ -85.829364, 38.276769 ], [ -85.823764, 38.280569 ], [ -85.816164, 38.282969 ], [ -85.791575, 38.288566 ], [ -85.791563, 38.288569 ], [ -85.780963, 38.288469 ], [ -85.773363, 38.286169 ], [ -85.765963, 38.280469 ], [ -85.766563, 38.277670 ], [ -85.761062, 38.272570 ], [ -85.750962, 38.267870 ], [ -85.744862, 38.267170 ], [ -85.683561, 38.295469 ], [ -85.675017, 38.301317 ], [ -85.653641, 38.327108 ], [ -85.638777, 38.361443 ], [ -85.638044, 38.380270 ], [ -85.638041, 38.380338 ], [ -85.632937, 38.395666 ], [ -85.620521, 38.423105 ], [ -85.607629, 38.439295 ], [ -85.462518, 38.512602 ], [ -85.433136, 38.523914 ], [ -85.432928, 38.524072 ], [ -85.423077, 38.531581 ], [ -85.417322, 38.540763 ], [ -85.415600, 38.546341 ], [ -85.415821, 38.563558 ], [ -85.427467, 38.586735 ], [ -85.439351, 38.610388 ], [ -85.456978, 38.689135 ], [ -85.452114, 38.709348 ], [ -85.434065, 38.729455 ], [ -85.422021, 38.734834 ], [ -85.410925, 38.737080 ], [ -85.333285, 38.740480 ], [ -85.289226, 38.742410 ], [ -85.275454, 38.741172 ], [ -85.258846, 38.737754 ], [ -85.246505, 38.731821 ], [ -85.226062, 38.705456 ], [ -85.213257, 38.695446 ], [ -85.201498, 38.691575 ], [ -85.189362, 38.687579 ], [ -85.172528, 38.688082 ], [ -85.156158, 38.692251 ], [ -85.138680, 38.699168 ], [ -85.106902, 38.720789 ], [ -85.100963, 38.726800 ], [ -85.024205, 38.763311 ], [ -84.995939, 38.776756 ], [ -84.984627, 38.779072 ], [ -84.973432, 38.778847 ], [ -84.944296, 38.775184 ], [ -84.844412, 38.787078 ], [ -84.813350, 38.798330 ], [ -84.791078, 38.855859 ], [ -84.785799, 38.869496 ], [ -84.785111, 38.879988 ], [ -84.789521, 38.884687 ], [ -84.813182, 38.930583 ], [ -84.849445, 39.000923 ], [ -84.878614, 39.030296 ], [ -84.889065, 39.040820 ], [ -84.897171, 39.052407 ], [ -84.897364, 39.057378 ], [ -84.888873, 39.066376 ], [ -84.831197, 39.101920 ], [ -84.820157, 39.105480 ], [ -84.787680, 39.115297 ], [ -84.766749, 39.138558 ], [ -84.754449, 39.146658 ], [ -84.744149, 39.147458 ], [ -84.732048, 39.144458 ], [ -84.718548, 39.137059 ], [ -84.689747, 39.104159 ], [ -84.684847, 39.100459 ], [ -84.632446, 39.076760 ], [ -84.623732, 39.074427 ], [ -84.620112, 39.073457 ], [ -84.603444, 39.073699 ], [ -84.510057, 39.093593 ], [ -84.509743, 39.093660 ], [ -84.506082, 39.095081 ], [ -84.502062, 39.096641 ], [ -84.493743, 39.102460 ], [ -84.432841, 39.094261 ], [ -84.326539, 39.027463 ], [ -84.319936, 39.022081 ], [ -84.313680, 39.016981 ], [ -84.304698, 39.006455 ], [ -84.234453, 38.893226 ], [ -84.232132, 38.880483 ], [ -84.232478, 38.874638 ], [ -84.233727, 38.853576 ], [ -84.231306, 38.830552 ], [ -84.229954, 38.827650 ], [ -84.225300, 38.817665 ], [ -84.212904, 38.805707 ], [ -84.205592, 38.802588 ], [ -84.071491, 38.770475 ], [ -84.052707, 38.770542 ], [ -84.044486, 38.770572 ], [ -83.978814, 38.787104 ], [ -83.962123, 38.787384 ], [ -83.943978, 38.783616 ], [ -83.903971, 38.768160 ], [ -83.903918, 38.768150 ], [ -83.870443, 38.761608 ], [ -83.859028, 38.756793 ], [ -83.853330, 38.752572 ], [ -83.777823, 38.674453 ], [ -83.773682, 38.661309 ], [ -83.769347, 38.655220 ], [ -83.762445, 38.652103 ], [ -83.706043, 38.637101 ], [ -83.679484, 38.630036 ], [ -83.663911, 38.627930 ], [ -83.655425, 38.629735 ], [ -83.649737, 38.632753 ], [ -83.646701, 38.637489 ], [ -83.642994, 38.643273 ], [ -83.636208, 38.670584 ], [ -83.626922, 38.679387 ], [ -83.615736, 38.684145 ], [ -83.574754, 38.692671 ], [ -83.533339, 38.702105 ], [ -83.520953, 38.703045 ], [ -83.512571, 38.701716 ], [ -83.369077, 38.659334 ], [ -83.333347, 38.641562 ], [ -83.324157, 38.633326 ], [ -83.320531, 38.622713 ], [ -83.282100, 38.602987 ], [ -83.265769, 38.605278 ], [ -83.156926, 38.620547 ], [ -83.142836, 38.625076 ], [ -83.135046, 38.631719 ], [ -83.127652, 38.642451 ], [ -83.030889, 38.725560 ], [ -83.030702, 38.725720 ], [ -83.011816, 38.730057 ], [ -82.979395, 38.725976 ], [ -82.968695, 38.728776 ], [ -82.943147, 38.743280 ], [ -82.923694, 38.750076 ], [ -82.894193, 38.756576 ], [ -82.889193, 38.756076 ], [ -82.879492, 38.751476 ], [ -82.875492, 38.747276 ], [ -82.874466, 38.745346 ], [ -82.871292, 38.739376 ], [ -82.869992, 38.730477 ], [ -82.870392, 38.722077 ], [ -82.873492, 38.710077 ], [ -82.869592, 38.678177 ], [ -82.853554, 38.610926 ], [ -82.847186, 38.595166 ], [ -82.839538, 38.586159 ], [ -82.820161, 38.572703 ], [ -82.816012, 38.570733 ], [ -82.800112, 38.563183 ], [ -82.789776, 38.559951 ], [ -82.730958, 38.559264 ], [ -82.724846, 38.557600 ], [ -82.696621, 38.542112 ], [ -82.690509, 38.536576 ], [ -82.665548, 38.505808 ], [ -82.665485, 38.505734 ], [ -82.593673, 38.421809 ], [ -82.596281, 38.417681 ], [ -82.597113, 38.412881 ], [ -82.595369, 38.382722 ], [ -82.595382, 38.382712 ], [ -82.593008, 38.375082 ], [ -82.571877, 38.315781 ], [ -82.574656, 38.263873 ], [ -82.578254, 38.254809 ], [ -82.584001, 38.246371 ], [ -82.594970, 38.245453 ], [ -82.604230, 38.247303 ] ] ] ] } }\n,\n{ \"type\": \"Feature\", \"properties\": { \"GEO_ID\": \"0400000US23\", \"STATE\": \"23\", \"NAME\": \"Maine\", \"LSAD\": \"\", \"CENSUSAREA\": 30842.923000 }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [ [ [ [ -69.307908, 43.773767 ], [ -69.306751, 43.775095 ], [ -69.302995, 43.774591 ], [ -69.300376, 43.772144 ], [ -69.300818, 43.768599 ], [ -69.314325, 43.756707 ], [ -69.322559, 43.755883 ], [ -69.323569, 43.758994 ], [ -69.321141, 43.765763 ], [ -69.313631, 43.772762 ], [ -69.307908, 43.773767 ] ] ], [ [ [ -69.427920, 43.928798 ], [ -69.423323, 43.922871 ], [ -69.422153, 43.917702 ], [ -69.423324, 43.915507 ], [ -69.438066, 43.909539 ], [ -69.440913, 43.909767 ], [ -69.441894, 43.916331 ], [ -69.433762, 43.949353 ], [ -69.429806, 43.948438 ], [ -69.421072, 43.938261 ], [ -69.427920, 43.928798 ] ] ], [ [ [ -67.619761, 44.519754 ], [ -67.615410, 44.521973 ], [ -67.587738, 44.516196 ], [ -67.582113, 44.513459 ], [ -67.589259, 44.500840 ], [ -67.590627, 44.494150 ], [ -67.580288, 44.488068 ], [ -67.562651, 44.472104 ], [ -67.569189, 44.455531 ], [ -67.571774, 44.453403 ], [ -67.574206, 44.451730 ], [ -67.588346, 44.449754 ], [ -67.592755, 44.458572 ], [ -67.604919, 44.502056 ], [ -67.607199, 44.503576 ], [ -67.614954, 44.503576 ], [ -67.619211, 44.506009 ], [ -67.619761, 44.519754 ] ] ], [ [ [ -70.119671, 43.748621 ], [ -70.113059, 43.749130 ], [ -70.097318, 43.757292 ], [ -70.094986, 43.753211 ], [ -70.100233, 43.742134 ], [ -70.107812, 43.734555 ], [ -70.109561, 43.730474 ], [ -70.108978, 43.722312 ], [ -70.124136, 43.708320 ], [ -70.129383, 43.708320 ], [ -70.138128, 43.718231 ], [ -70.138711, 43.727559 ], [ -70.127051, 43.742717 ], [ -70.119671, 43.748621 ] ] ], [ [ [ -70.171245, 43.663498 ], [ -70.171136, 43.663300 ], [ -70.190323, 43.642986 ], [ -70.205934, 43.633633 ], [ -70.207165, 43.633690 ], [ -70.211062, 43.641842 ], [ -70.200116, 43.662978 ], [ -70.188047, 43.673762 ], [ -70.184659, 43.674699 ], [ -70.171245, 43.663498 ] ] ], [ [ [ -70.186213, 43.682655 ], [ -70.187536, 43.678669 ], [ -70.192574, 43.673139 ], [ -70.207341, 43.662562 ], [ -70.210825, 43.661695 ], [ -70.213130, 43.662973 ], [ -70.213948, 43.666161 ], [ -70.209627, 43.676308 ], [ -70.201893, 43.685483 ], [ -70.196535, 43.688784 ], [ -70.191041, 43.689071 ], [ -70.186213, 43.682655 ] ] ], [ [ [ -70.163884, 43.692404 ], [ -70.156787, 43.694706 ], [ -70.146115, 43.701635 ], [ -70.135563, 43.700658 ], [ -70.154503, 43.680933 ], [ -70.168227, 43.675136 ], [ -70.170284, 43.675441 ], [ -70.173571, 43.683734 ], [ -70.171339, 43.687546 ], [ -70.163884, 43.692404 ] ] ], [ [ [ -70.087621, 43.699913 ], [ -70.093704, 43.691800 ], [ -70.099594, 43.695366 ], [ -70.115908, 43.682978 ], [ -70.118291, 43.683343 ], [ -70.118174, 43.686375 ], [ -70.115961, 43.689202 ], [ -70.100683, 43.705962 ], [ -70.095727, 43.709278 ], [ -70.093113, 43.710524 ], [ -70.092137, 43.709468 ], [ -70.097184, 43.700929 ], [ -70.091929, 43.698111 ], [ -70.087621, 43.699913 ] ] ], [ [ [ -68.880242, 43.863398 ], [ -68.882554, 43.848525 ], [ -68.876224, 43.836597 ], [ -68.886725, 43.822195 ], [ -68.898319, 43.820987 ], [ -68.899108, 43.821925 ], [ -68.893537, 43.831498 ], [ -68.894700, 43.843970 ], [ -68.898045, 43.849545 ], [ -68.903957, 43.848684 ], [ -68.908222, 43.849852 ], [ -68.902618, 43.868855 ], [ -68.889367, 43.875530 ], [ -68.880242, 43.863398 ] ] ], [ [ [ -69.043981, 44.005684 ], [ -69.078200, 43.974132 ], [ -69.092994, 43.979063 ], [ -69.061966, 44.015023 ], [ -69.047583, 44.013995 ], [ -69.043981, 44.005684 ] ] ], [ [ [ -68.618212, 44.012367 ], [ -68.635315, 44.018886 ], [ -68.647360, 44.014500 ], [ -68.651863, 44.009859 ], [ -68.652881, 44.003845 ], [ -68.657031, 44.003823 ], [ -68.659972, 44.016013 ], [ -68.659874, 44.022758 ], [ -68.657369, 44.024404 ], [ -68.650767, 44.039908 ], [ -68.654783, 44.059599 ], [ -68.661594, 44.075837 ], [ -68.627893, 44.088128 ], [ -68.625350, 44.092906 ], [ -68.618100, 44.096706 ], [ -68.609722, 44.094674 ], [ -68.602863, 44.086650 ], [ -68.589563, 44.075585 ], [ -68.585916, 44.075335 ], [ -68.584074, 44.070578 ], [ -68.588098, 44.061270 ], [ -68.590792, 44.058662 ], [ -68.601099, 44.058362 ], [ -68.611473, 44.025176 ], [ -68.610703, 44.013422 ], [ -68.615896, 44.009761 ], [ -68.618212, 44.012367 ] ] ], [ [ [ -68.785601, 44.053503 ], [ -68.790595, 44.053832 ], [ -68.807315, 44.035796 ], [ -68.818441, 44.032046 ], [ -68.828465, 44.032118 ], [ -68.862845, 44.025037 ], [ -68.874139, 44.025359 ], [ -68.889717, 44.032516 ], [ -68.899997, 44.066960 ], [ -68.905098, 44.077344 ], [ -68.913406, 44.085190 ], [ -68.907812, 44.105518 ], [ -68.908984, 44.110001 ], [ -68.943105, 44.109730 ], [ -68.944597, 44.112840 ], [ -68.935327, 44.130380 ], [ -68.917286, 44.148239 ], [ -68.888597, 44.159550 ], [ -68.878680, 44.166612 ], [ -68.847249, 44.183017 ], [ -68.825067, 44.186338 ], [ -68.819156, 44.180462 ], [ -68.822206, 44.178815 ], [ -68.822840, 44.173693 ], [ -68.818423, 44.160978 ], [ -68.792221, 44.145998 ], [ -68.786886, 44.143961 ], [ -68.782375, 44.145310 ], [ -68.780693, 44.143274 ], [ -68.792065, 44.136759 ], [ -68.802162, 44.137857 ], [ -68.818039, 44.136852 ], [ -68.819659, 44.135434 ], [ -68.820515, 44.130198 ], [ -68.819530, 44.122056 ], [ -68.815562, 44.115836 ], [ -68.806832, 44.116339 ], [ -68.790525, 44.092920 ], [ -68.781772, 44.084274 ], [ -68.772639, 44.078439 ], [ -68.770290, 44.069566 ], [ -68.779650, 44.057754 ], [ -68.785601, 44.053503 ] ] ], [ [ [ -68.942826, 44.281073 ], [ -68.919301, 44.309872 ], [ -68.919325, 44.335392 ], [ -68.911634, 44.365027 ], [ -68.903530, 44.378613 ], [ -68.878940, 44.386584 ], [ -68.868444, 44.381440 ], [ -68.860649, 44.364425 ], [ -68.864338, 44.355002 ], [ -68.871690, 44.344662 ], [ -68.883065, 44.338193 ], [ -68.888706, 44.338196 ], [ -68.892850, 44.334653 ], [ -68.896587, 44.321986 ], [ -68.887460, 44.303094 ], [ -68.899445, 44.283775 ], [ -68.904255, 44.279889 ], [ -68.916872, 44.242866 ], [ -68.926480, 44.233035 ], [ -68.945976, 44.220824 ], [ -68.951890, 44.218719 ], [ -68.947090, 44.226792 ], [ -68.955332, 44.243873 ], [ -68.959468, 44.247439 ], [ -68.965896, 44.249754 ], [ -68.967074, 44.251968 ], [ -68.965264, 44.259332 ], [ -68.953686, 44.272346 ], [ -68.942826, 44.281073 ] ] ], [ [ [ -68.499465, 44.124190 ], [ -68.492892, 44.116921 ], [ -68.491521, 44.109833 ], [ -68.502942, 44.099722 ], [ -68.517060, 44.103410 ], [ -68.518703, 44.113222 ], [ -68.511266, 44.125082 ], [ -68.506979, 44.127237 ], [ -68.499465, 44.124190 ] ] ], [ [ [ -68.358388, 44.125082 ], [ -68.353010, 44.127884 ], [ -68.346724, 44.127749 ], [ -68.330716, 44.110598 ], [ -68.331032, 44.107580 ], [ -68.338012, 44.101473 ], [ -68.365176, 44.101464 ], [ -68.376593, 44.112207 ], [ -68.376591, 44.113762 ], [ -68.375382, 44.116460 ], [ -68.365514, 44.124079 ], [ -68.358388, 44.125082 ] ] ], [ [ [ -68.453236, 44.189998 ], [ -68.437789, 44.188216 ], [ -68.424441, 44.190753 ], [ -68.416434, 44.187047 ], [ -68.408207, 44.176298 ], [ -68.384903, 44.154955 ], [ -68.396634, 44.140690 ], [ -68.427534, 44.119266 ], [ -68.438518, 44.116180 ], [ -68.448646, 44.125581 ], [ -68.447505, 44.133493 ], [ -68.456813, 44.145268 ], [ -68.479934, 44.147800 ], [ -68.484696, 44.146495 ], [ -68.496639, 44.146855 ], [ -68.502096, 44.152388 ], [ -68.500817, 44.160026 ], [ -68.495511, 44.162429 ], [ -68.474365, 44.181875 ], [ -68.453236, 44.189998 ] ] ], [ [ [ -68.680773, 44.279242 ], [ -68.675416, 44.279753 ], [ -68.668213, 44.276511 ], [ -68.658849, 44.268588 ], [ -68.623554, 44.255622 ], [ -68.611669, 44.244818 ], [ -68.605906, 44.230772 ], [ -68.612749, 44.207722 ], [ -68.624994, 44.197637 ], [ -68.625715, 44.194756 ], [ -68.619592, 44.189354 ], [ -68.618511, 44.186472 ], [ -68.618872, 44.181070 ], [ -68.643002, 44.157660 ], [ -68.652366, 44.153698 ], [ -68.670014, 44.151537 ], [ -68.671454, 44.138572 ], [ -68.675056, 44.137131 ], [ -68.681899, 44.138212 ], [ -68.686581, 44.147216 ], [ -68.692343, 44.153698 ], [ -68.700987, 44.158380 ], [ -68.709631, 44.158741 ], [ -68.713232, 44.160541 ], [ -68.716474, 44.162702 ], [ -68.720435, 44.169185 ], [ -68.718995, 44.183231 ], [ -68.715033, 44.191154 ], [ -68.714313, 44.203760 ], [ -68.721156, 44.212404 ], [ -68.722956, 44.219607 ], [ -68.722956, 44.223568 ], [ -68.718635, 44.228611 ], [ -68.711792, 44.228971 ], [ -68.700627, 44.234013 ], [ -68.694144, 44.248779 ], [ -68.680458, 44.262105 ], [ -68.677577, 44.268948 ], [ -68.677577, 44.275431 ], [ -68.680773, 44.279242 ] ] ], [ [ [ -68.355279, 44.199096 ], [ -68.333227, 44.207308 ], [ -68.324230, 44.205732 ], [ -68.316060, 44.200244 ], [ -68.314789, 44.197157 ], [ -68.318476, 44.196608 ], [ -68.321178, 44.199032 ], [ -68.332639, 44.192131 ], [ -68.339029, 44.171839 ], [ -68.347416, 44.169459 ], [ -68.378872, 44.184222 ], [ -68.371235, 44.193003 ], [ -68.364469, 44.197534 ], [ -68.355279, 44.199096 ] ] ], [ [ [ -68.472831, 44.219767 ], [ -68.460205, 44.212498 ], [ -68.453843, 44.201683 ], [ -68.454224, 44.199534 ], [ -68.459182, 44.197681 ], [ -68.484520, 44.202886 ], [ -68.487227, 44.209517 ], [ -68.482726, 44.227058 ], [ -68.480565, 44.228591 ], [ -68.470323, 44.228320 ], [ -68.468572, 44.223999 ], [ -68.472831, 44.219767 ] ] ], [ [ [ -68.792139, 44.237819 ], [ -68.769833, 44.222787 ], [ -68.769047, 44.213351 ], [ -68.780055, 44.203129 ], [ -68.789884, 44.203915 ], [ -68.801285, 44.208633 ], [ -68.809149, 44.212565 ], [ -68.815439, 44.214137 ], [ -68.822909, 44.216496 ], [ -68.829593, 44.216890 ], [ -68.837849, 44.227112 ], [ -68.839422, 44.236547 ], [ -68.833524, 44.240872 ], [ -68.827627, 44.242838 ], [ -68.825631, 44.242556 ], [ -68.792139, 44.237819 ] ] ], [ [ [ -68.236380, 44.266254 ], [ -68.214641, 44.263156 ], [ -68.211329, 44.257074 ], [ -68.212474, 44.255405 ], [ -68.221383, 44.257254 ], [ -68.231469, 44.256016 ], [ -68.237130, 44.253430 ], [ -68.240310, 44.251622 ], [ -68.241545, 44.247543 ], [ -68.240806, 44.239723 ], [ -68.248913, 44.235443 ], [ -68.266669, 44.234033 ], [ -68.274427, 44.237099 ], [ -68.276857, 44.240794 ], [ -68.274719, 44.258675 ], [ -68.262128, 44.260774 ], [ -68.254153, 44.257836 ], [ -68.246598, 44.257836 ], [ -68.241142, 44.260354 ], [ -68.236380, 44.266254 ] ] ], [ [ [ -68.498637, 44.369686 ], [ -68.478785, 44.319563 ], [ -68.489641, 44.313705 ], [ -68.515173, 44.324797 ], [ -68.530394, 44.333583 ], [ -68.528635, 44.344605 ], [ -68.520671, 44.358357 ], [ -68.521930, 44.367591 ], [ -68.518573, 44.381022 ], [ -68.512697, 44.384799 ], [ -68.507660, 44.385219 ], [ -68.501364, 44.382281 ], [ -68.498637, 44.369686 ] ] ], [ [ [ -69.028590, 44.249139 ], [ -69.029434, 44.248558 ], [ -69.040193, 44.233673 ], [ -69.043599, 44.225029 ], [ -69.042807, 44.215173 ], [ -69.051810, 44.195920 ], [ -69.052690, 44.188082 ], [ -69.054546, 44.171542 ], [ -69.061240, 44.165498 ], [ -69.077776, 44.165043 ], [ -69.079835, 44.160953 ], [ -69.080978, 44.156768 ], [ -69.079608, 44.143962 ], [ -69.075667, 44.129991 ], [ -69.080331, 44.117824 ], [ -69.100863, 44.104529 ], [ -69.101107, 44.093601 ], [ -69.092000, 44.085734 ], [ -69.089078, 44.085326 ], [ -69.076452, 44.090634 ], [ -69.056303, 44.095162 ], [ -69.050814, 44.094888 ], [ -69.043403, 44.092164 ], [ -69.031878, 44.079036 ], [ -69.048917, 44.062506 ], [ -69.050566, 44.063152 ], [ -69.050622, 44.068017 ], [ -69.056093, 44.069490 ], [ -69.064299, 44.069911 ], [ -69.067876, 44.067596 ], [ -69.079805, 44.055256 ], [ -69.073767, 44.046135 ], [ -69.081131, 44.041295 ], [ -69.094177, 44.038981 ], [ -69.113113, 44.028881 ], [ -69.125738, 44.019623 ], [ -69.128052, 44.017309 ], [ -69.124475, 44.007419 ], [ -69.128611, 44.005922 ], [ -69.148883, 43.998582 ], [ -69.162559, 43.999003 ], [ -69.170345, 43.995637 ], [ -69.193805, 43.975543 ], [ -69.197803, 43.967547 ], [ -69.193805, 43.959762 ], [ -69.196330, 43.950504 ], [ -69.203668, 43.941806 ], [ -69.214205, 43.935583 ], [ -69.237368, 43.931596 ], [ -69.242710, 43.925465 ], [ -69.259838, 43.921427 ], [ -69.265257, 43.933393 ], [ -69.267515, 43.943667 ], [ -69.280498, 43.957440 ], [ -69.282559, 43.958105 ], [ -69.283998, 43.958569 ], [ -69.288513, 43.957665 ], [ -69.307776, 43.943451 ], [ -69.314270, 43.942951 ], [ -69.319751, 43.944870 ], [ -69.305176, 43.956676 ], [ -69.304301, 43.962068 ], [ -69.321808, 43.969975 ], [ -69.331411, 43.974311 ], [ -69.351961, 43.974748 ], [ -69.366702, 43.964755 ], [ -69.375478, 43.964584 ], [ -69.388059, 43.964340 ], [ -69.398455, 43.971804 ], [ -69.416165, 43.977267 ], [ -69.428760, 43.957929 ], [ -69.431686, 43.964546 ], [ -69.436495, 43.966878 ], [ -69.441596, 43.964254 ], [ -69.451070, 43.941955 ], [ -69.459637, 43.903316 ], [ -69.483498, 43.880280 ], [ -69.486243, 43.869118 ], [ -69.503290, 43.837673 ], [ -69.514889, 43.831298 ], [ -69.516212, 43.837222 ], [ -69.513267, 43.844790 ], [ -69.520301, 43.868498 ], [ -69.524673, 43.875639 ], [ -69.543912, 43.881615 ], [ -69.549450, 43.880012 ], [ -69.550908, 43.877971 ], [ -69.550616, 43.872579 ], [ -69.545028, 43.861241 ], [ -69.552606, 43.841347 ], [ -69.558122, 43.840660 ], [ -69.568325, 43.844449 ], [ -69.572697, 43.844012 ], [ -69.575466, 43.841972 ], [ -69.578527, 43.823316 ], [ -69.588551, 43.818360 ], [ -69.604179, 43.813551 ], [ -69.605928, 43.814862 ], [ -69.604616, 43.825793 ], [ -69.598495, 43.825502 ], [ -69.592373, 43.830895 ], [ -69.589167, 43.851299 ], [ -69.594705, 43.858878 ], [ -69.604616, 43.858004 ], [ -69.613215, 43.845032 ], [ -69.613069, 43.837453 ], [ -69.615110, 43.831623 ], [ -69.621086, 43.826814 ], [ -69.630268, 43.837016 ], [ -69.629685, 43.843429 ], [ -69.634932, 43.845907 ], [ -69.649798, 43.836287 ], [ -69.653150, 43.817194 ], [ -69.650818, 43.803785 ], [ -69.653337, 43.791030 ], [ -69.664922, 43.791033 ], [ -69.685473, 43.816328 ], [ -69.685579, 43.820546 ], [ -69.692429, 43.824336 ], [ -69.697239, 43.825065 ], [ -69.697858, 43.824918 ], [ -69.705838, 43.823024 ], [ -69.714873, 43.810264 ], [ -69.717804, 43.801047 ], [ -69.717074, 43.792403 ], [ -69.719723, 43.786685 ], [ -69.752801, 43.755940 ], [ -69.761587, 43.757000 ], [ -69.780097, 43.755397 ], [ -69.782429, 43.753794 ], [ -69.782283, 43.751170 ], [ -69.778494, 43.747089 ], [ -69.778348, 43.744612 ], [ -69.835323, 43.721125 ], [ -69.838689, 43.705140 ], [ -69.851297, 43.703581 ], [ -69.855081, 43.704746 ], [ -69.857927, 43.723915 ], [ -69.855595, 43.732660 ], [ -69.858947, 43.740531 ], [ -69.868673, 43.742701 ], [ -69.862155, 43.758962 ], [ -69.869732, 43.775656 ], [ -69.884066, 43.778035 ], [ -69.887390, 43.777052 ], [ -69.903164, 43.772390 ], [ -69.915593, 43.775112 ], [ -69.927011, 43.780174 ], [ -69.948539, 43.765948 ], [ -69.953246, 43.768806 ], [ -69.958056, 43.767786 ], [ -69.982574, 43.750801 ], [ -69.989131, 43.743227 ], [ -69.994479, 43.728451 ], [ -69.992396, 43.726852 ], [ -69.992615, 43.724793 ], [ -70.001645, 43.717666 ], [ -70.006954, 43.717065 ], [ -70.005205, 43.727559 ], [ -70.001125, 43.733389 ], [ -69.998793, 43.740385 ], [ -70.001708, 43.744466 ], [ -70.041351, 43.738053 ], [ -70.040768, 43.745049 ], [ -70.034355, 43.759041 ], [ -70.025610, 43.769534 ], [ -70.005205, 43.787607 ], [ -69.998210, 43.798684 ], [ -69.999376, 43.805097 ], [ -70.002874, 43.812093 ], [ -70.011035, 43.810927 ], [ -70.026193, 43.822587 ], [ -70.026193, 43.829000 ], [ -70.023278, 43.834247 ], [ -70.006954, 43.844158 ], [ -70.002874, 43.848239 ], [ -70.002874, 43.852903 ], [ -70.009869, 43.859315 ], [ -70.019197, 43.858733 ], [ -70.022845, 43.856245 ], [ -70.032023, 43.849988 ], [ -70.053594, 43.828417 ], [ -70.053011, 43.821421 ], [ -70.064671, 43.813259 ], [ -70.066420, 43.819672 ], [ -70.080995, 43.819672 ], [ -70.107229, 43.809178 ], [ -70.142792, 43.791688 ], [ -70.153869, 43.781194 ], [ -70.153869, 43.774781 ], [ -70.176023, 43.760790 ], [ -70.177772, 43.764871 ], [ -70.172525, 43.773615 ], [ -70.175440, 43.777113 ], [ -70.190014, 43.771866 ], [ -70.194678, 43.766037 ], [ -70.197593, 43.753211 ], [ -70.194095, 43.745632 ], [ -70.194678, 43.742134 ], [ -70.217998, 43.719980 ], [ -70.219164, 43.715899 ], [ -70.215666, 43.707737 ], [ -70.216832, 43.704822 ], [ -70.227909, 43.701907 ], [ -70.231990, 43.704822 ], [ -70.251812, 43.683251 ], [ -70.254144, 43.676839 ], [ -70.252961, 43.675010 ], [ -70.247321, 43.671973 ], [ -70.242289, 43.669544 ], [ -70.239512, 43.665986 ], [ -70.240119, 43.664685 ], [ -70.241942, 43.663296 ], [ -70.240987, 43.659132 ], [ -70.222990, 43.639023 ], [ -70.211204, 43.625765 ], [ -70.217087, 43.596717 ], [ -70.214369, 43.590445 ], [ -70.201120, 43.586515 ], [ -70.196911, 43.565146 ], [ -70.206123, 43.557627 ], [ -70.216782, 43.556874 ], [ -70.219784, 43.562149 ], [ -70.231963, 43.561118 ], [ -70.244331, 43.551849 ], [ -70.261917, 43.553687 ], [ -70.272497, 43.562616 ], [ -70.299184, 43.550589 ], [ -70.307764, 43.544315 ], [ -70.341793, 43.540484 ], [ -70.352826, 43.535855 ], [ -70.353392, 43.535405 ], [ -70.361214, 43.529190 ], [ -70.379123, 43.507202 ], [ -70.384885, 43.496040 ], [ -70.385615, 43.487031 ], [ -70.382928, 43.469674 ], [ -70.380233, 43.464230 ], [ -70.372230, 43.455080 ], [ -70.349684, 43.442032 ], [ -70.362015, 43.439077 ], [ -70.370514, 43.434133 ], [ -70.384949, 43.418839 ], [ -70.383981, 43.412940 ], [ -70.390890, 43.402607 ], [ -70.400035, 43.399927 ], [ -70.401666, 43.401262 ], [ -70.406416, 43.400942 ], [ -70.421282, 43.395777 ], [ -70.427672, 43.389254 ], [ -70.424421, 43.379656 ], [ -70.424986, 43.375928 ], [ -70.442438, 43.356487 ], [ -70.460717, 43.343250 ], [ -70.465975, 43.340246 ], [ -70.472933, 43.343972 ], [ -70.485312, 43.346391 ], [ -70.517695, 43.344037 ], [ -70.535244, 43.336771 ], [ -70.536702, 43.335605 ], [ -70.553854, 43.321886 ], [ -70.562779, 43.310614 ], [ -70.585184, 43.270113 ], [ -70.593907, 43.249295 ], [ -70.591022, 43.237851 ], [ -70.575787, 43.221859 ], [ -70.576692, 43.217651 ], [ -70.587814, 43.199858 ], [ -70.618973, 43.163625 ], [ -70.634455, 43.127603 ], [ -70.634311, 43.122162 ], [ -70.638355, 43.114182 ], [ -70.654213, 43.099065 ], [ -70.655322, 43.098008 ], [ -70.656223, 43.093164 ], [ -70.665958, 43.076234 ], [ -70.673114, 43.070314 ], [ -70.703936, 43.059621 ], [ -70.756397, 43.079988 ], [ -70.784108, 43.098963 ], [ -70.819549, 43.123231 ], [ -70.828100, 43.129086 ], [ -70.833800, 43.146886 ], [ -70.829174, 43.180365 ], [ -70.828301, 43.186685 ], [ -70.816232, 43.234997 ], [ -70.817773, 43.237408 ], [ -70.817865, 43.237911 ], [ -70.822959, 43.240187 ], [ -70.823309, 43.240343 ], [ -70.825071, 43.240930 ], [ -70.826711, 43.241301 ], [ -70.828022, 43.241597 ], [ -70.833650, 43.242868 ], [ -70.839717, 43.250393 ], [ -70.839213, 43.251224 ], [ -70.863231, 43.265098 ], [ -70.863230, 43.265109 ], [ -70.909805, 43.306682 ], [ -70.912460, 43.308289 ], [ -70.916751, 43.317731 ], [ -70.930783, 43.329569 ], [ -70.952356, 43.333983 ], [ -70.967229, 43.343777 ], [ -70.984335, 43.376128 ], [ -70.984305, 43.376814 ], [ -70.987733, 43.391513 ], [ -70.986812, 43.414264 ], [ -70.964433, 43.473276 ], [ -70.964542, 43.473262 ], [ -70.963742, 43.476248 ], [ -70.954755, 43.509802 ], [ -70.962556, 43.534310 ], [ -70.958958, 43.537634 ], [ -70.955337, 43.540980 ], [ -70.955346, 43.540697 ], [ -70.953322, 43.552718 ], [ -70.972716, 43.570255 ], [ -70.979985, 43.673195 ], [ -70.980758, 43.684141 ], [ -70.981946, 43.700960 ], [ -70.981978, 43.701965 ], [ -70.982238, 43.711865 ], [ -70.982083, 43.715043 ], [ -70.989041, 43.792152 ], [ -70.989067, 43.792440 ], [ -70.992086, 43.886261 ], [ -70.992986, 43.914232 ], [ -71.001367, 44.092931 ], [ -71.001335, 44.093205 ], [ -71.008764, 44.258443 ], [ -71.008736, 44.258825 ], [ -71.010239, 44.284774 ], [ -71.013490, 44.340882 ], [ -71.029101, 44.610331 ], [ -71.037518, 44.755607 ], [ -71.060101, 45.019661 ], [ -71.075640, 45.224093 ], [ -71.084334, 45.305293 ], [ -71.030565, 45.312652 ], [ -71.014268, 45.316761 ], [ -71.009050, 45.319022 ], [ -71.002401, 45.327956 ], [ -71.005087, 45.331545 ], [ -70.990233, 45.336277 ], [ -70.950824, 45.334530 ], [ -70.917904, 45.311924 ], [ -70.912176, 45.296768 ], [ -70.913732, 45.292746 ], [ -70.907978, 45.269316 ], [ -70.896898, 45.242031 ], [ -70.885029, 45.234873 ], [ -70.857042, 45.229160 ], [ -70.842845, 45.234422 ], [ -70.839482, 45.237829 ], [ -70.831612, 45.260055 ], [ -70.808322, 45.325824 ], [ -70.807664, 45.378118 ], [ -70.824053, 45.391094 ], [ -70.825612, 45.400305 ], [ -70.798483, 45.424740 ], [ -70.781471, 45.431159 ], [ -70.753977, 45.427789 ], [ -70.744077, 45.421091 ], [ -70.743775, 45.411925 ], [ -70.729972, 45.399359 ], [ -70.712286, 45.390611 ], [ -70.660029, 45.377901 ], [ -70.651986, 45.377146 ], [ -70.634661, 45.383608 ], [ -70.626527, 45.407011 ], [ -70.635498, 45.427817 ], [ -70.650161, 45.443685 ], [ -70.663701, 45.447049 ], [ -70.675910, 45.452582 ], [ -70.716332, 45.486909 ], [ -70.723167, 45.507606 ], [ -70.721611, 45.515058 ], [ -70.700776, 45.532777 ], [ -70.686531, 45.549990 ], [ -70.688214, 45.563981 ], [ -70.659286, 45.586880 ], [ -70.564789, 45.655150 ], [ -70.551038, 45.661885 ], [ -70.469869, 45.701639 ], [ -70.451503, 45.704432 ], [ -70.397210, 45.756872 ], [ -70.407750, 45.773654 ], [ -70.417674, 45.794570 ], [ -70.396362, 45.802703 ], [ -70.398159, 45.804120 ], [ -70.397208, 45.807572 ], [ -70.387916, 45.819043 ], [ -70.367020, 45.834993 ], [ -70.342440, 45.852192 ], [ -70.307798, 45.858940 ], [ -70.284204, 45.872034 ], [ -70.262655, 45.887853 ], [ -70.253704, 45.902981 ], [ -70.240177, 45.943729 ], [ -70.252242, 45.954777 ], [ -70.265410, 45.962692 ], [ -70.312055, 45.971544 ], [ -70.313364, 46.016383 ], [ -70.310609, 46.064544 ], [ -70.289780, 46.094325 ], [ -70.284554, 46.098713 ], [ -70.252411, 46.106221 ], [ -70.237947, 46.147378 ], [ -70.278034, 46.175001 ], [ -70.290896, 46.185838 ], [ -70.292736, 46.191599 ], [ -70.207415, 46.331316 ], [ -70.188046, 46.350015 ], [ -70.174709, 46.358472 ], [ -70.133367, 46.368906 ], [ -70.056433, 46.416590 ], [ -70.023016, 46.573486 ], [ -69.997086, 46.695230 ], [ -69.818552, 46.875030 ], [ -69.566383, 47.125032 ], [ -69.224420, 47.459686 ], [ -69.146439, 47.448860 ], [ -69.055465, 47.432274 ], [ -69.042702, 47.426651 ], [ -69.032909, 47.407907 ], [ -69.031127, 47.403106 ], [ -69.040790, 47.398080 ], [ -69.041733, 47.397326 ], [ -69.039280, 47.385052 ], [ -69.043958, 47.383682 ], [ -69.046448, 47.383934 ], [ -69.053819, 47.375036 ], [ -69.050334, 47.256621 ], [ -69.040200, 47.245100 ], [ -69.033456, 47.240984 ], [ -68.982002, 47.220295 ], [ -68.941948, 47.206248 ], [ -68.926421, 47.197860 ], [ -68.900985, 47.178519 ], [ -68.853430, 47.193443 ], [ -68.723168, 47.239569 ], [ -68.580398, 47.286957 ], [ -68.474851, 47.297534 ], [ -68.361559, 47.355605 ], [ -68.333680, 47.360070 ], [ -68.284101, 47.360389 ], [ -68.240168, 47.354217 ], [ -68.224005, 47.348456 ], [ -68.153509, 47.314038 ], [ -67.955669, 47.199542 ], [ -67.952269, 47.196142 ], [ -67.949369, 47.182542 ], [ -67.935868, 47.164843 ], [ -67.889155, 47.118772 ], [ -67.846865, 47.092404 ], [ -67.816345, 47.081188 ], [ -67.790515, 47.067921 ], [ -67.789461, 47.062544 ], [ -67.789380, 46.765528 ], [ -67.789284, 46.758219 ], [ -67.782114, 46.279381 ], [ -67.781095, 45.943032 ], [ -67.768709, 45.901997 ], [ -67.763955, 45.829983 ], [ -67.763767, 45.820315 ], [ -67.780443, 45.816206 ], [ -67.801989, 45.803546 ], [ -67.806598, 45.794723 ], [ -67.817892, 45.693705 ], [ -67.805483, 45.680241 ], [ -67.803313, 45.677886 ], [ -67.754245, 45.667791 ], [ -67.645810, 45.613597 ], [ -67.561359, 45.594906 ], [ -67.518580, 45.587925 ], [ -67.499444, 45.587014 ], [ -67.490923, 45.591488 ], [ -67.488452, 45.594643 ], [ -67.491061, 45.598917 ], [ -67.489793, 45.601180 ], [ -67.476704, 45.604157 ], [ -67.455406, 45.604665 ], [ -67.449674, 45.602860 ], [ -67.425452, 45.579086 ], [ -67.423646, 45.572153 ], [ -67.420875, 45.550560 ], [ -67.425674, 45.502917 ], [ -67.448729, 45.510576 ], [ -67.463481, 45.508516 ], [ -67.503771, 45.488522 ], [ -67.473366, 45.425328 ], [ -67.460281, 45.419594 ], [ -67.430001, 45.392965 ], [ -67.422153, 45.379661 ], [ -67.429161, 45.344247 ], [ -67.460101, 45.301179 ], [ -67.465833, 45.297223 ], [ -67.485683, 45.291433 ], [ -67.489333, 45.281282 ], [ -67.463570, 45.244097 ], [ -67.405208, 45.165686 ], [ -67.354306, 45.129886 ], [ -67.345004, 45.126210 ], [ -67.339869, 45.125594 ], [ -67.305472, 45.144826 ], [ -67.302568, 45.161348 ], [ -67.290603, 45.187589 ], [ -67.283619, 45.192022 ], [ -67.271076, 45.191081 ], [ -67.161247, 45.162879 ], [ -67.128935, 45.132168 ], [ -67.112414, 45.112323 ], [ -67.090786, 45.068721 ], [ -67.105899, 45.065786 ], [ -67.117688, 45.056730 ], [ -67.099749, 45.045010 ], [ -67.082074, 45.029608 ], [ -67.074914, 45.019254 ], [ -67.072753, 45.008329 ], [ -67.068274, 45.001014 ], [ -67.054610, 44.986764 ], [ -67.038299, 44.945433 ], [ -67.033474, 44.939923 ], [ -67.002118, 44.918836 ], [ -66.990937, 44.917835 ], [ -66.984466, 44.912557 ], [ -66.983558, 44.903277 ], [ -66.985901, 44.897150 ], [ -66.989235, 44.896480 ], [ -66.990351, 44.882551 ], [ -66.981008, 44.862813 ], [ -66.978142, 44.856963 ], [ -66.992960, 44.849181 ], [ -66.996523, 44.844654 ], [ -66.986318, 44.820657 ], [ -66.975009, 44.815495 ], [ -66.966468, 44.819063 ], [ -66.952112, 44.820070 ], [ -66.949895, 44.817419 ], [ -66.950569, 44.814539 ], [ -66.961068, 44.807269 ], [ -66.970026, 44.805713 ], [ -66.976260, 44.808315 ], [ -66.979708, 44.807360 ], [ -66.989351, 44.798780 ], [ -66.995154, 44.791073 ], [ -67.019950, 44.771427 ], [ -67.026150, 44.768199 ], [ -67.043350, 44.765071 ], [ -67.055160, 44.771442 ], [ -67.062239, 44.769543 ], [ -67.063308, 44.758238 ], [ -67.073439, 44.741957 ], [ -67.083477, 44.739899 ], [ -67.092542, 44.742693 ], [ -67.098931, 44.741311 ], [ -67.103957, 44.717444 ], [ -67.128792, 44.695421 ], [ -67.139209, 44.693849 ], [ -67.148061, 44.684114 ], [ -67.155119, 44.669440 ], [ -67.154479, 44.668114 ], [ -67.169857, 44.662105 ], [ -67.181785, 44.663699 ], [ -67.186612, 44.662650 ], [ -67.192068, 44.655515 ], [ -67.191438, 44.647750 ], [ -67.189427, 44.645533 ], [ -67.213025, 44.639220 ], [ -67.234275, 44.637201 ], [ -67.247260, 44.641664 ], [ -67.251247, 44.640825 ], [ -67.274122, 44.626345 ], [ -67.277060, 44.617950 ], [ -67.273076, 44.610873 ], [ -67.279160, 44.606782 ], [ -67.293403, 44.599265 ], [ -67.302427, 44.597323 ], [ -67.314938, 44.598215 ], [ -67.322970, 44.609394 ], [ -67.322491, 44.612458 ], [ -67.310745, 44.613212 ], [ -67.293665, 44.634316 ], [ -67.292462, 44.648455 ], [ -67.298449, 44.654377 ], [ -67.309627, 44.659316 ], [ -67.307909, 44.691295 ], [ -67.300144, 44.696752 ], [ -67.299176, 44.705705 ], [ -67.308538, 44.707454 ], [ -67.347782, 44.699480 ], [ -67.355966, 44.699060 ], [ -67.376742, 44.681852 ], [ -67.381149, 44.669470 ], [ -67.379050, 44.665483 ], [ -67.374014, 44.662965 ], [ -67.367298, 44.652472 ], [ -67.363158, 44.631825 ], [ -67.368269, 44.624672 ], [ -67.377554, 44.619757 ], [ -67.386605, 44.626974 ], [ -67.388704, 44.626554 ], [ -67.395839, 44.612914 ], [ -67.398987, 44.602631 ], [ -67.405492, 44.594236 ], [ -67.411815, 44.596954 ], [ -67.418923, 44.603470 ], [ -67.420602, 44.607877 ], [ -67.428367, 44.609136 ], [ -67.443686, 44.605779 ], [ -67.447464, 44.603260 ], [ -67.448513, 44.600322 ], [ -67.457747, 44.598014 ], [ -67.492373, 44.617950 ], [ -67.493632, 44.628863 ], [ -67.505804, 44.636837 ], [ -67.522802, 44.633060 ], [ -67.524061, 44.626554 ], [ -67.530777, 44.621938 ], [ -67.533925, 44.621518 ], [ -67.540220, 44.626345 ], [ -67.543368, 44.626554 ], [ -67.551133, 44.621938 ], [ -67.552392, 44.619629 ], [ -67.575056, 44.560659 ], [ -67.569836, 44.556788 ], [ -67.562321, 44.539435 ], [ -67.568159, 44.531117 ], [ -67.648506, 44.525403 ], [ -67.653123, 44.525823 ], [ -67.656901, 44.535896 ], [ -67.660678, 44.537575 ], [ -67.685861, 44.537155 ], [ -67.696354, 44.533798 ], [ -67.702649, 44.527922 ], [ -67.698872, 44.515750 ], [ -67.703489, 44.504837 ], [ -67.714190, 44.495238 ], [ -67.722876, 44.498524 ], [ -67.733986, 44.496252 ], [ -67.743353, 44.497418 ], [ -67.742789, 44.506176 ], [ -67.740076, 44.508944 ], [ -67.742942, 44.526453 ], [ -67.753854, 44.543661 ], [ -67.758891, 44.546599 ], [ -67.767285, 44.548278 ], [ -67.774001, 44.547438 ], [ -67.779457, 44.543661 ], [ -67.781975, 44.534008 ], [ -67.781556, 44.520577 ], [ -67.797260, 44.520685 ], [ -67.802541, 44.523934 ], [ -67.805479, 44.529810 ], [ -67.805479, 44.536946 ], [ -67.808837, 44.544081 ], [ -67.829823, 44.557512 ], [ -67.839896, 44.558771 ], [ -67.844513, 44.556252 ], [ -67.845772, 44.551636 ], [ -67.843254, 44.542822 ], [ -67.856684, 44.523934 ], [ -67.853746, 44.497492 ], [ -67.851228, 44.492456 ], [ -67.851648, 44.484901 ], [ -67.855579, 44.478676 ], [ -67.860994, 44.477576 ], [ -67.866801, 44.471812 ], [ -67.868774, 44.465272 ], [ -67.868875, 44.456881 ], [ -67.851764, 44.428695 ], [ -67.851697, 44.424282 ], [ -67.855108, 44.419434 ], [ -67.868856, 44.424672 ], [ -67.878509, 44.435585 ], [ -67.887323, 44.433066 ], [ -67.887323, 44.426351 ], [ -67.892033, 44.409668 ], [ -67.899571, 44.394078 ], [ -67.911667, 44.419216 ], [ -67.913346, 44.430128 ], [ -67.921320, 44.433066 ], [ -67.926357, 44.431807 ], [ -67.930554, 44.428869 ], [ -67.927616, 44.421314 ], [ -67.931453, 44.411848 ], [ -67.936531, 44.411187 ], [ -67.947342, 44.415858 ], [ -67.955737, 44.416278 ], [ -67.957089, 44.415408 ], [ -67.961613, 44.412500 ], [ -67.961613, 44.399070 ], [ -67.978876, 44.387034 ], [ -67.985668, 44.386917 ], [ -67.997288, 44.399909 ], [ -68.000646, 44.406624 ], [ -68.006102, 44.409562 ], [ -68.010719, 44.407464 ], [ -68.019533, 44.396971 ], [ -68.013990, 44.390255 ], [ -68.034223, 44.360456 ], [ -68.039679, 44.360876 ], [ -68.044296, 44.357938 ], [ -68.044716, 44.351222 ], [ -68.043037, 44.343667 ], [ -68.049334, 44.330730 ], [ -68.060356, 44.331988 ], [ -68.067047, 44.335692 ], [ -68.076066, 44.347925 ], [ -68.077873, 44.373047 ], [ -68.086268, 44.376405 ], [ -68.090045, 44.371369 ], [ -68.092983, 44.370949 ], [ -68.103818, 44.385111 ], [ -68.112290, 44.401588 ], [ -68.112710, 44.421314 ], [ -68.116487, 44.429289 ], [ -68.119845, 44.445658 ], [ -68.119425, 44.459508 ], [ -68.115228, 44.467903 ], [ -68.117746, 44.475038 ], [ -68.123203, 44.478815 ], [ -68.150904, 44.482383 ], [ -68.159298, 44.479445 ], [ -68.162656, 44.477346 ], [ -68.163075, 44.473149 ], [ -68.171050, 44.470211 ], [ -68.194554, 44.471890 ], [ -68.189517, 44.478605 ], [ -68.189937, 44.484901 ], [ -68.192036, 44.487419 ], [ -68.213861, 44.492456 ], [ -68.223934, 44.487000 ], [ -68.227292, 44.479865 ], [ -68.224354, 44.464335 ], [ -68.229390, 44.463496 ], [ -68.244500, 44.471051 ], [ -68.252474, 44.483222 ], [ -68.261708, 44.484062 ], [ -68.268004, 44.471470 ], [ -68.270522, 44.459718 ], [ -68.281015, 44.451324 ], [ -68.298223, 44.449225 ], [ -68.299063, 44.437893 ], [ -68.294865, 44.432857 ], [ -68.268423, 44.440411 ], [ -68.247438, 44.433276 ], [ -68.244500, 44.429919 ], [ -68.243660, 44.420685 ], [ -68.249956, 44.417747 ], [ -68.249956, 44.414809 ], [ -68.215540, 44.390466 ], [ -68.209664, 44.392984 ], [ -68.203540, 44.392365 ], [ -68.196937, 44.386352 ], [ -68.184532, 44.369145 ], [ -68.174687, 44.343604 ], [ -68.173608, 44.328397 ], [ -68.191924, 44.306675 ], [ -68.233435, 44.288578 ], [ -68.275139, 44.288895 ], [ -68.289409, 44.283858 ], [ -68.298223, 44.276303 ], [ -68.298643, 44.266650 ], [ -68.297641, 44.263035 ], [ -68.295265, 44.261722 ], [ -68.290818, 44.247673 ], [ -68.317588, 44.225101 ], [ -68.339498, 44.222893 ], [ -68.343132, 44.229505 ], [ -68.365364, 44.237871 ], [ -68.369759, 44.243311 ], [ -68.377982, 44.247563 ], [ -68.389848, 44.247066 ], [ -68.401268, 44.252244 ], [ -68.419650, 44.274612 ], [ -68.421302, 44.284468 ], [ -68.426107, 44.295102 ], [ -68.430946, 44.298624 ], [ -68.430853, 44.312609 ], [ -68.411965, 44.322262 ], [ -68.409027, 44.325620 ], [ -68.409867, 44.329397 ], [ -68.421619, 44.336113 ], [ -68.421471, 44.337754 ], [ -68.409867, 44.356259 ], [ -68.406089, 44.356679 ], [ -68.396552, 44.363941 ], [ -68.395516, 44.369561 ], [ -68.398035, 44.376191 ], [ -68.367565, 44.390710 ], [ -68.363720, 44.388935 ], [ -68.360318, 44.389674 ], [ -68.358100, 44.392337 ], [ -68.359082, 44.402847 ], [ -68.372445, 44.423690 ], [ -68.379100, 44.430049 ], [ -68.387678, 44.430936 ], [ -68.390932, 44.427387 ], [ -68.392559, 44.418070 ], [ -68.416412, 44.397973 ], [ -68.421783, 44.396411 ], [ -68.427874, 44.396800 ], [ -68.433901, 44.401534 ], [ -68.432556, 44.426594 ], [ -68.429648, 44.439136 ], [ -68.439281, 44.448043 ], [ -68.448006, 44.449497 ], [ -68.455095, 44.447498 ], [ -68.460003, 44.443317 ], [ -68.463820, 44.436592 ], [ -68.458849, 44.412141 ], [ -68.464106, 44.398078 ], [ -68.464262, 44.391081 ], [ -68.461072, 44.385639 ], [ -68.461072, 44.378504 ], [ -68.466109, 44.377245 ], [ -68.478280, 44.378084 ], [ -68.483317, 44.388157 ], [ -68.480798, 44.397391 ], [ -68.472824, 44.404106 ], [ -68.480379, 44.432647 ], [ -68.485415, 44.434326 ], [ -68.494649, 44.429709 ], [ -68.499686, 44.414179 ], [ -68.505562, 44.411661 ], [ -68.514520, 44.413340 ], [ -68.529905, 44.399070 ], [ -68.534522, 44.397811 ], [ -68.555088, 44.403687 ], [ -68.560964, 44.402847 ], [ -68.565161, 44.399070 ], [ -68.566420, 44.394453 ], [ -68.564741, 44.385219 ], [ -68.559285, 44.374307 ], [ -68.550051, 44.371788 ], [ -68.545434, 44.355000 ], [ -68.553873, 44.346256 ], [ -68.563209, 44.333039 ], [ -68.566936, 44.317603 ], [ -68.566203, 44.313007 ], [ -68.564005, 44.308022 ], [ -68.556236, 44.300819 ], [ -68.538595, 44.299902 ], [ -68.531532, 44.290388 ], [ -68.532266, 44.286340 ], [ -68.528611, 44.276117 ], [ -68.519516, 44.265046 ], [ -68.519819, 44.260209 ], [ -68.529802, 44.249594 ], [ -68.528153, 44.241263 ], [ -68.523480, 44.235819 ], [ -68.525302, 44.227554 ], [ -68.534595, 44.229331 ], [ -68.550802, 44.236534 ], [ -68.551162, 44.238335 ], [ -68.562687, 44.248059 ], [ -68.572772, 44.252741 ], [ -68.603385, 44.274710 ], [ -68.615630, 44.275431 ], [ -68.626075, 44.280473 ], [ -68.627515, 44.284435 ], [ -68.630036, 44.286235 ], [ -68.682979, 44.299201 ], [ -68.725657, 44.321591 ], [ -68.733004, 44.328388 ], [ -68.746164, 44.331148 ], [ -68.762021, 44.329597 ], [ -68.766197, 44.327015 ], [ -68.771489, 44.320523 ], [ -68.795063, 44.307860 ], [ -68.827197, 44.312160 ], [ -68.828377, 44.316549 ], [ -68.825419, 44.334547 ], [ -68.821311, 44.349594 ], [ -68.817647, 44.353093 ], [ -68.814811, 44.362194 ], [ -68.818703, 44.375077 ], [ -68.821767, 44.408940 ], [ -68.815325, 44.428080 ], [ -68.801634, 44.434803 ], [ -68.785898, 44.462611 ], [ -68.783679, 44.473879 ], [ -68.796206, 44.471437 ], [ -68.810059, 44.468737 ], [ -68.829153, 44.462242 ], [ -68.858993, 44.444923 ], [ -68.880271, 44.428112 ], [ -68.886491, 44.430676 ], [ -68.890826, 44.437995 ], [ -68.892800, 44.443415 ], [ -68.892073, 44.445075 ], [ -68.897104, 44.450643 ], [ -68.900934, 44.452062 ], [ -68.927452, 44.448039 ], [ -68.931934, 44.438690 ], [ -68.946582, 44.429108 ], [ -68.982449, 44.426195 ], [ -68.990767, 44.415033 ], [ -68.984404, 44.396879 ], [ -68.978815, 44.386340 ], [ -68.967300, 44.381106 ], [ -68.961111, 44.375076 ], [ -68.948164, 44.355882 ], [ -68.954465, 44.324050 ], [ -68.958889, 44.314353 ], [ -68.979005, 44.296327 ], [ -69.003682, 44.294582 ], [ -69.005071, 44.274071 ], [ -69.017051, 44.257086 ], [ -69.028590, 44.249139 ] ] ] ] } }\n,\n{ \"type\": \"Feature\", \"properties\": { \"GEO_ID\": \"0400000US25\", \"STATE\": \"25\", \"NAME\": \"Massachusetts\", \"LSAD\": \"\", \"CENSUSAREA\": 7800.058000 }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [ [ [ [ -70.821001, 41.587268 ], [ -70.821743, 41.583656 ], [ -70.821910, 41.582841 ], [ -70.830087, 41.585385 ], [ -70.837632, 41.595374 ], [ -70.838147, 41.596056 ], [ -70.838452, 41.596460 ], [ -70.834529, 41.602610 ], [ -70.832044, 41.606504 ], [ -70.831802, 41.606272 ], [ -70.828025, 41.602666 ], [ -70.827398, 41.602067 ], [ -70.823735, 41.598569 ], [ -70.820918, 41.587673 ], [ -70.821001, 41.587268 ] ] ], [ [ [ -70.596280, 41.471905 ], [ -70.574850, 41.468259 ], [ -70.567356, 41.471208 ], [ -70.563280, 41.469127 ], [ -70.553277, 41.452955 ], [ -70.552943, 41.443394 ], [ -70.555588, 41.430882 ], [ -70.553096, 41.423952 ], [ -70.547567, 41.415831 ], [ -70.538301, 41.409241 ], [ -70.528581, 41.405100 ], [ -70.517584, 41.403769 ], [ -70.506984, 41.400242 ], [ -70.502372, 41.392005 ], [ -70.501306, 41.385391 ], [ -70.498959, 41.384339 ], [ -70.490758, 41.383634 ], [ -70.484503, 41.386290 ], [ -70.472604, 41.399128 ], [ -70.473035, 41.408757 ], [ -70.470788, 41.412875 ], [ -70.463833, 41.419145 ], [ -70.450431, 41.420703 ], [ -70.446233, 41.396480 ], [ -70.449268, 41.380422 ], [ -70.448262, 41.353651 ], [ -70.451084, 41.348161 ], [ -70.496162, 41.346452 ], [ -70.538294, 41.348958 ], [ -70.599157, 41.349272 ], [ -70.709826, 41.341723 ], [ -70.733253, 41.336226 ], [ -70.747541, 41.329952 ], [ -70.764188, 41.318706 ], [ -70.768015, 41.311959 ], [ -70.766166, 41.308962 ], [ -70.768687, 41.303702 ], [ -70.775665, 41.300982 ], [ -70.802083, 41.314207 ], [ -70.819415, 41.327212 ], [ -70.838777, 41.347209 ], [ -70.833802, 41.353386 ], [ -70.812309, 41.355745 ], [ -70.800289, 41.353800 ], [ -70.783291, 41.347829 ], [ -70.774974, 41.349176 ], [ -70.768901, 41.353246 ], [ -70.729225, 41.397728 ], [ -70.724366, 41.398942 ], [ -70.712432, 41.408850 ], [ -70.711493, 41.415460 ], [ -70.701378, 41.430925 ], [ -70.686881, 41.441334 ], [ -70.649330, 41.461068 ], [ -70.603555, 41.482384 ], [ -70.598444, 41.481151 ], [ -70.596280, 41.471905 ] ] ], [ [ [ -70.092142, 41.297741 ], [ -70.082072, 41.299093 ], [ -70.062565, 41.308726 ], [ -70.046088, 41.321651 ], [ -70.031332, 41.339332 ], [ -70.028805, 41.359919 ], [ -70.030924, 41.367453 ], [ -70.035162, 41.372161 ], [ -70.038458, 41.376399 ], [ -70.045586, 41.383598 ], [ -70.049564, 41.387900 ], [ -70.049053, 41.391702 ], [ -70.033514, 41.385816 ], [ -70.018446, 41.368630 ], [ -69.960277, 41.278731 ], [ -69.960181, 41.264546 ], [ -69.964422, 41.254570 ], [ -69.965725, 41.252466 ], [ -69.975000, 41.247392 ], [ -70.001586, 41.239353 ], [ -70.015225, 41.237964 ], [ -70.052807, 41.242685 ], [ -70.083239, 41.244400 ], [ -70.096967, 41.240850 ], [ -70.118669, 41.242351 ], [ -70.170681, 41.255881 ], [ -70.237175, 41.282724 ], [ -70.256164, 41.288123 ], [ -70.266776, 41.294453 ], [ -70.273478, 41.301528 ], [ -70.275526, 41.310464 ], [ -70.260632, 41.310092 ], [ -70.249276, 41.305623 ], [ -70.244435, 41.303203 ], [ -70.240153, 41.295384 ], [ -70.229541, 41.290171 ], [ -70.208690, 41.290171 ], [ -70.196304, 41.294612 ], [ -70.124460, 41.293851 ], [ -70.092142, 41.297741 ] ] ], [ [ [ -72.198828, 42.030982 ], [ -72.397428, 42.033302 ], [ -72.509187, 42.034607 ], [ -72.695927, 42.036788 ], [ -72.714134, 42.036608 ], [ -72.755838, 42.036195 ], [ -72.757467, 42.020947 ], [ -72.758151, 42.020865 ], [ -72.766139, 42.007695 ], [ -72.766739, 42.002995 ], [ -72.774757, 42.002129 ], [ -72.816741, 41.997595 ], [ -72.813541, 42.036494 ], [ -72.863619, 42.037709 ], [ -72.863733, 42.037710 ], [ -73.008739, 42.039356 ], [ -73.053254, 42.039861 ], [ -73.127276, 42.041964 ], [ -73.229798, 42.044877 ], [ -73.231056, 42.044945 ], [ -73.293097, 42.046940 ], [ -73.294420, 42.046984 ], [ -73.487314, 42.049638 ], [ -73.496879, 42.049675 ], [ -73.508142, 42.086257 ], [ -73.410647, 42.351738 ], [ -73.352527, 42.510002 ], [ -73.307004, 42.632653 ], [ -73.264957, 42.745940 ], [ -73.142487, 42.743508 ], [ -73.022903, 42.741133 ], [ -73.018646, 42.741025 ], [ -72.930271, 42.738789 ], [ -72.927291, 42.738714 ], [ -72.864180, 42.737117 ], [ -72.458519, 42.726853 ], [ -72.451257, 42.726653 ], [ -72.412011, 42.725569 ], [ -72.282968, 42.722008 ], [ -72.111068, 42.717264 ], [ -72.078463, 42.716364 ], [ -71.928811, 42.712234 ], [ -71.898714, 42.711478 ], [ -71.805450, 42.709137 ], [ -71.772510, 42.708310 ], [ -71.636214, 42.704888 ], [ -71.631814, 42.704788 ], [ -71.542520, 42.702726 ], [ -71.294205, 42.696990 ], [ -71.254532, 42.734136 ], [ -71.245504, 42.742589 ], [ -71.208302, 42.743314 ], [ -71.208227, 42.743294 ], [ -71.208137, 42.743273 ], [ -71.181803, 42.737590 ], [ -71.186104, 42.790689 ], [ -71.165603, 42.808689 ], [ -71.149703, 42.815489 ], [ -71.113858, 42.827865 ], [ -71.058407, 42.847009 ], [ -71.037901, 42.854089 ], [ -70.996901, 42.864589 ], [ -70.931699, 42.884189 ], [ -70.930799, 42.884589 ], [ -70.914899, 42.886589 ], [ -70.914886, 42.886564 ], [ -70.902768, 42.886530 ], [ -70.886136, 42.882610 ], [ -70.848625, 42.860939 ], [ -70.817296, 42.872290 ], [ -70.817731, 42.850613 ], [ -70.805220, 42.781798 ], [ -70.792867, 42.747118 ], [ -70.772267, 42.711064 ], [ -70.770453, 42.704824 ], [ -70.778552, 42.698520 ], [ -70.778671, 42.693622 ], [ -70.764421, 42.685650 ], [ -70.748752, 42.683878 ], [ -70.744427, 42.682092 ], [ -70.729820, 42.669602 ], [ -70.728845, 42.663877 ], [ -70.689402, 42.653319 ], [ -70.682594, 42.654525 ], [ -70.681594, 42.662342 ], [ -70.663548, 42.677603 ], [ -70.645101, 42.689423 ], [ -70.630077, 42.692699 ], [ -70.620031, 42.688006 ], [ -70.622864, 42.675990 ], [ -70.623815, 42.665481 ], [ -70.622791, 42.660873 ], [ -70.614820, 42.657650 ], [ -70.595474, 42.660336 ], [ -70.591742, 42.648508 ], [ -70.591469, 42.639821 ], [ -70.594014, 42.635030 ], [ -70.605611, 42.634898 ], [ -70.618420, 42.628640 ], [ -70.635635, 42.600243 ], [ -70.654727, 42.582234 ], [ -70.664887, 42.580436 ], [ -70.668022, 42.581732 ], [ -70.668115, 42.585361 ], [ -70.668488, 42.589643 ], [ -70.670442, 42.592249 ], [ -70.672583, 42.594296 ], [ -70.675747, 42.594669 ], [ -70.678819, 42.594389 ], [ -70.681428, 42.593173 ], [ -70.684502, 42.588858 ], [ -70.698574, 42.577393 ], [ -70.729688, 42.571510 ], [ -70.737044, 42.576863 ], [ -70.757283, 42.570455 ], [ -70.804091, 42.561595 ], [ -70.815391, 42.554195 ], [ -70.823291, 42.551495 ], [ -70.848492, 42.550195 ], [ -70.871382, 42.546404 ], [ -70.872357, 42.542952 ], [ -70.866279, 42.522617 ], [ -70.859751, 42.520441 ], [ -70.857125, 42.521492 ], [ -70.842091, 42.519495 ], [ -70.831091, 42.503596 ], [ -70.835991, 42.490496 ], [ -70.841591, 42.487596 ], [ -70.847391, 42.491496 ], [ -70.857791, 42.490296 ], [ -70.879692, 42.478796 ], [ -70.886493, 42.470197 ], [ -70.887992, 42.467096 ], [ -70.887292, 42.464896 ], [ -70.894292, 42.460896 ], [ -70.908092, 42.466896 ], [ -70.917693, 42.467996 ], [ -70.921993, 42.466696 ], [ -70.934993, 42.457896 ], [ -70.934264, 42.444646 ], [ -70.933155, 42.437833 ], [ -70.928226, 42.430986 ], [ -70.913192, 42.427697 ], [ -70.908392, 42.425197 ], [ -70.901992, 42.420297 ], [ -70.905692, 42.416197 ], [ -70.936393, 42.418097 ], [ -70.943295, 42.436248 ], [ -70.943612, 42.452092 ], [ -70.947020, 42.456236 ], [ -70.960470, 42.446166 ], [ -70.960647, 42.443787 ], [ -70.960835, 42.441272 ], [ -70.982994, 42.423996 ], [ -70.987694, 42.416696 ], [ -70.990595, 42.407098 ], [ -70.989195, 42.402598 ], [ -70.985068, 42.402041 ], [ -70.983426, 42.396246 ], [ -70.980336, 42.391513 ], [ -70.972706, 42.389968 ], [ -70.970195, 42.388036 ], [ -70.971740, 42.387071 ], [ -70.972513, 42.385042 ], [ -70.972706, 42.381759 ], [ -70.972223, 42.377316 ], [ -70.960798, 42.360648 ], [ -70.953292, 42.349698 ], [ -70.953022, 42.343973 ], [ -70.963578, 42.346860 ], [ -70.972418, 42.353875 ], [ -70.974897, 42.355843 ], [ -70.979927, 42.356382 ], [ -70.982282, 42.355920 ], [ -70.998253, 42.352788 ], [ -71.006877, 42.347039 ], [ -71.010146, 42.339234 ], [ -71.011804, 42.335274 ], [ -71.015680, 42.326019 ], [ -71.013165, 42.315419 ], [ -71.005399, 42.307196 ], [ -71.000948, 42.302483 ], [ -71.006158, 42.288110 ], [ -71.004900, 42.282720 ], [ -70.996097, 42.271222 ], [ -70.989090, 42.267449 ], [ -70.967351, 42.268168 ], [ -70.948971, 42.272505 ], [ -70.945547, 42.269081 ], [ -70.935886, 42.264189 ], [ -70.923169, 42.263211 ], [ -70.910941, 42.265412 ], [ -70.906302, 42.271636 ], [ -70.896267, 42.285100 ], [ -70.895778, 42.292436 ], [ -70.897123, 42.295860 ], [ -70.915588, 42.302463 ], [ -70.917490, 42.305686 ], [ -70.907556, 42.307889 ], [ -70.882764, 42.308860 ], [ -70.881242, 42.300663 ], [ -70.870873, 42.285668 ], [ -70.861807, 42.275965 ], [ -70.851093, 42.268270 ], [ -70.831075, 42.267424 ], [ -70.824661, 42.265935 ], [ -70.811742, 42.262935 ], [ -70.788724, 42.253920 ], [ -70.780722, 42.251792 ], [ -70.770964, 42.249197 ], [ -70.764757, 42.244062 ], [ -70.754488, 42.228673 ], [ -70.747230, 42.221816 ], [ -70.730560, 42.210940 ], [ -70.722269, 42.207959 ], [ -70.718707, 42.184853 ], [ -70.714301, 42.168783 ], [ -70.706264, 42.163137 ], [ -70.685315, 42.133025 ], [ -70.663931, 42.108336 ], [ -70.640169, 42.088633 ], [ -70.638480, 42.081579 ], [ -70.647349, 42.076331 ], [ -70.648190, 42.068441 ], [ -70.643208, 42.050821 ], [ -70.644337, 42.045895 ], [ -70.650874, 42.046247 ], [ -70.669360, 42.037116 ], [ -70.671666, 42.021390 ], [ -70.667512, 42.012320 ], [ -70.670934, 42.007786 ], [ -70.678798, 42.005510 ], [ -70.686798, 42.012764 ], [ -70.695809, 42.013346 ], [ -70.712204, 42.007586 ], [ -70.710034, 41.999544 ], [ -70.698981, 41.987103 ], [ -70.662476, 41.960592 ], [ -70.651673, 41.958701 ], [ -70.648365, 41.961672 ], [ -70.631251, 41.950475 ], [ -70.623513, 41.943273 ], [ -70.616491, 41.940204 ], [ -70.608166, 41.940701 ], [ -70.598078, 41.947772 ], [ -70.583572, 41.950007 ], [ -70.552941, 41.929641 ], [ -70.546386, 41.916751 ], [ -70.547410, 41.911934 ], [ -70.545949, 41.907158 ], [ -70.532084, 41.889568 ], [ -70.525567, 41.858730 ], [ -70.535487, 41.839381 ], [ -70.542065, 41.831263 ], [ -70.543168, 41.824446 ], [ -70.541030, 41.815754 ], [ -70.537289, 41.810859 ], [ -70.533823, 41.806323 ], [ -70.533303, 41.805643 ], [ -70.532656, 41.804796 ], [ -70.525070, 41.797907 ], [ -70.518468, 41.791912 ], [ -70.517615, 41.791139 ], [ -70.517411, 41.790953 ], [ -70.516921, 41.790595 ], [ -70.516651, 41.790398 ], [ -70.516101, 41.789996 ], [ -70.514603, 41.788901 ], [ -70.514483, 41.788814 ], [ -70.514424, 41.788771 ], [ -70.494048, 41.773883 ], [ -70.493016, 41.773318 ], [ -70.492884, 41.773245 ], [ -70.483477, 41.768094 ], [ -70.482152, 41.767368 ], [ -70.474051, 41.762931 ], [ -70.473707, 41.762743 ], [ -70.473335, 41.762539 ], [ -70.471999, 41.761808 ], [ -70.471969, 41.761791 ], [ -70.471807, 41.761702 ], [ -70.471552, 41.761563 ], [ -70.458968, 41.757906 ], [ -70.413713, 41.744756 ], [ -70.412476, 41.744397 ], [ -70.412071, 41.744336 ], [ -70.376992, 41.739029 ], [ -70.375341, 41.738779 ], [ -70.375253, 41.738774 ], [ -70.318091, 41.735748 ], [ -70.315290, 41.735600 ], [ -70.314667, 41.735567 ], [ -70.291301, 41.734330 ], [ -70.290957, 41.734312 ], [ -70.290788, 41.734224 ], [ -70.288323, 41.732946 ], [ -70.277064, 41.727108 ], [ -70.275393, 41.726242 ], [ -70.275203, 41.726143 ], [ -70.275164, 41.726079 ], [ -70.274188, 41.724471 ], [ -70.272289, 41.721346 ], [ -70.263831, 41.714263 ], [ -70.263654, 41.714115 ], [ -70.263097, 41.714095 ], [ -70.261440, 41.714035 ], [ -70.259205, 41.713954 ], [ -70.256395, 41.716236 ], [ -70.252686, 41.719248 ], [ -70.251794, 41.719973 ], [ -70.250704, 41.720858 ], [ -70.247935, 41.723106 ], [ -70.247379, 41.723558 ], [ -70.247050, 41.723825 ], [ -70.237418, 41.731648 ], [ -70.235048, 41.733572 ], [ -70.234850, 41.733733 ], [ -70.225881, 41.738150 ], [ -70.225312, 41.738431 ], [ -70.224462, 41.738849 ], [ -70.224006, 41.739074 ], [ -70.220842, 41.740632 ], [ -70.216697, 41.742674 ], [ -70.216073, 41.742981 ], [ -70.198037, 41.749034 ], [ -70.197525, 41.749206 ], [ -70.193202, 41.750657 ], [ -70.189254, 41.751982 ], [ -70.189117, 41.751961 ], [ -70.182076, 41.750885 ], [ -70.176566, 41.752134 ], [ -70.159127, 41.756085 ], [ -70.143848, 41.759547 ], [ -70.143444, 41.759639 ], [ -70.141533, 41.760072 ], [ -70.141519, 41.760071 ], [ -70.140380, 41.759999 ], [ -70.136007, 41.759724 ], [ -70.129065, 41.759287 ], [ -70.124364, 41.758991 ], [ -70.124070, 41.758973 ], [ -70.122132, 41.758851 ], [ -70.121978, 41.758841 ], [ -70.115895, 41.760650 ], [ -70.115067, 41.760896 ], [ -70.109319, 41.762606 ], [ -70.097666, 41.766072 ], [ -70.097658, 41.766074 ], [ -70.096768, 41.766339 ], [ -70.096061, 41.766549 ], [ -70.086376, 41.768470 ], [ -70.081833, 41.769371 ], [ -70.067603, 41.772193 ], [ -70.065142, 41.772681 ], [ -70.064314, 41.772845 ], [ -70.060674, 41.774180 ], [ -70.034390, 41.783822 ], [ -70.033874, 41.784011 ], [ -70.033223, 41.784250 ], [ -70.024734, 41.787364 ], [ -70.024658, 41.787427 ], [ -70.023082, 41.788726 ], [ -70.022809, 41.788952 ], [ -70.022381, 41.789305 ], [ -70.009936, 41.799570 ], [ -70.008882, 41.800440 ], [ -70.008462, 41.800786 ], [ -70.003842, 41.808520 ], [ -70.004486, 41.838826 ], [ -70.009013, 41.876625 ], [ -70.000188, 41.886938 ], [ -70.002922, 41.890315 ], [ -70.012154, 41.891656 ], [ -70.024335, 41.898820 ], [ -70.025553, 41.911699 ], [ -70.030537, 41.929154 ], [ -70.044995, 41.930049 ], [ -70.054464, 41.927366 ], [ -70.065671, 41.911658 ], [ -70.065723, 41.899641 ], [ -70.065372, 41.887702 ], [ -70.064084, 41.878924 ], [ -70.066002, 41.877011 ], [ -70.067566, 41.877793 ], [ -70.070889, 41.882973 ], [ -70.073039, 41.899783 ], [ -70.074006, 41.938650 ], [ -70.077421, 41.985497 ], [ -70.083775, 42.012041 ], [ -70.089578, 42.024896 ], [ -70.095595, 42.032832 ], [ -70.108060, 42.043601 ], [ -70.123043, 42.051668 ], [ -70.147411, 42.061590 ], [ -70.148294, 42.061950 ], [ -70.155415, 42.062409 ], [ -70.169781, 42.059736 ], [ -70.178468, 42.056420 ], [ -70.186816, 42.050450 ], [ -70.194456, 42.039470 ], [ -70.195345, 42.034163 ], [ -70.193074, 42.027576 ], [ -70.186295, 42.021308 ], [ -70.186708, 42.019904 ], [ -70.190834, 42.020028 ], [ -70.196693, 42.022429 ], [ -70.208016, 42.030730 ], [ -70.218701, 42.045848 ], [ -70.233256, 42.057714 ], [ -70.238875, 42.060479 ], [ -70.243540, 42.060569 ], [ -70.245385, 42.063733 ], [ -70.238087, 42.072878 ], [ -70.225626, 42.078601 ], [ -70.206899, 42.081900 ], [ -70.189305, 42.082337 ], [ -70.160166, 42.078628 ], [ -70.154177, 42.077139 ], [ -70.115968, 42.067638 ], [ -70.082624, 42.054657 ], [ -70.058531, 42.040363 ], [ -70.034806, 42.018916 ], [ -70.033501, 42.017736 ], [ -70.031054, 42.014562 ], [ -70.029953, 42.013135 ], [ -70.029449, 42.012482 ], [ -70.016280, 41.995403 ], [ -70.014109, 41.992587 ], [ -70.013876, 41.992285 ], [ -70.011957, 41.989796 ], [ -70.011898, 41.989720 ], [ -70.010510, 41.987563 ], [ -70.005717, 41.980113 ], [ -70.005458, 41.979710 ], [ -70.005332, 41.979515 ], [ -70.004608, 41.978389 ], [ -70.004271, 41.977865 ], [ -69.986196, 41.949769 ], [ -69.986085, 41.949597 ], [ -69.986024, 41.949465 ], [ -69.968598, 41.911700 ], [ -69.945314, 41.845222 ], [ -69.935952, 41.809422 ], [ -69.928652, 41.741250 ], [ -69.928311, 41.697981 ], [ -69.928308, 41.697681 ], [ -69.928275, 41.693504 ], [ -69.928265, 41.692247 ], [ -69.928265, 41.692242 ], [ -69.928261, 41.691700 ], [ -69.928723, 41.689634 ], [ -69.929377, 41.686713 ], [ -69.929457, 41.686357 ], [ -69.930900, 41.679910 ], [ -69.933114, 41.670014 ], [ -69.933149, 41.669955 ], [ -69.934120, 41.668304 ], [ -69.942742, 41.653649 ], [ -69.943474, 41.652406 ], [ -69.947599, 41.645394 ], [ -69.951169, 41.640799 ], [ -69.951911, 41.640656 ], [ -69.952844, 41.640476 ], [ -69.953924, 41.640268 ], [ -69.956862, 41.639701 ], [ -69.958272, 41.639429 ], [ -69.963234, 41.633794 ], [ -69.967869, 41.627503 ], [ -69.976478, 41.603664 ], [ -69.982768, 41.581812 ], [ -69.988215, 41.554704 ], [ -69.988495, 41.554390 ], [ -69.996546, 41.545360 ], [ -69.998071, 41.543650 ], [ -69.999063, 41.543400 ], [ -70.003768, 41.542213 ], [ -70.004136, 41.542120 ], [ -70.004554, 41.542166 ], [ -70.011211, 41.542892 ], [ -70.011504, 41.542924 ], [ -70.011725, 41.543120 ], [ -70.014456, 41.545534 ], [ -70.016584, 41.550772 ], [ -70.015059, 41.553037 ], [ -70.011596, 41.552766 ], [ -70.010644, 41.552692 ], [ -70.008854, 41.554510 ], [ -70.001530, 41.561953 ], [ -70.001281, 41.562470 ], [ -70.000937, 41.563184 ], [ -70.000627, 41.563827 ], [ -69.994357, 41.576846 ], [ -69.991723, 41.588510 ], [ -69.987192, 41.608579 ], [ -69.987111, 41.608765 ], [ -69.982946, 41.618316 ], [ -69.980418, 41.624113 ], [ -69.977489, 41.630832 ], [ -69.976886, 41.632213 ], [ -69.976641, 41.632777 ], [ -69.975579, 41.635212 ], [ -69.975245, 41.635978 ], [ -69.973035, 41.641046 ], [ -69.973037, 41.641126 ], [ -69.973153, 41.646963 ], [ -69.975719, 41.653738 ], [ -69.975811, 41.653798 ], [ -69.990659, 41.663471 ], [ -69.990668, 41.663476 ], [ -69.990734, 41.663519 ], [ -69.990748, 41.663528 ], [ -69.990790, 41.663556 ], [ -69.996194, 41.667076 ], [ -69.996359, 41.667184 ], [ -69.996509, 41.667246 ], [ -70.002697, 41.669799 ], [ -70.003016, 41.669931 ], [ -70.006833, 41.671506 ], [ -70.007011, 41.671579 ], [ -70.007153, 41.671587 ], [ -70.014211, 41.671971 ], [ -70.015789, 41.671530 ], [ -70.020964, 41.670085 ], [ -70.029119, 41.667807 ], [ -70.029319, 41.667751 ], [ -70.029346, 41.667744 ], [ -70.037145, 41.666880 ], [ -70.037255, 41.666868 ], [ -70.037757, 41.666812 ], [ -70.055523, 41.664843 ], [ -70.089238, 41.662813 ], [ -70.119904, 41.655455 ], [ -70.120935, 41.655208 ], [ -70.121351, 41.655108 ], [ -70.122597, 41.654809 ], [ -70.122689, 41.654787 ], [ -70.134702, 41.651905 ], [ -70.140163, 41.650594 ], [ -70.140207, 41.650584 ], [ -70.140437, 41.650529 ], [ -70.140877, 41.650423 ], [ -70.141049, 41.650423 ], [ -70.141141, 41.650423 ], [ -70.142592, 41.650424 ], [ -70.145882, 41.650427 ], [ -70.147011, 41.650428 ], [ -70.148435, 41.650429 ], [ -70.158621, 41.650438 ], [ -70.191061, 41.645259 ], [ -70.245867, 41.628479 ], [ -70.256210, 41.620698 ], [ -70.255420, 41.617541 ], [ -70.259601, 41.610863 ], [ -70.265424, 41.609333 ], [ -70.267587, 41.610912 ], [ -70.269687, 41.617775 ], [ -70.269130, 41.625742 ], [ -70.274522, 41.632927 ], [ -70.281320, 41.635125 ], [ -70.290620, 41.635196 ], [ -70.321588, 41.630508 ], [ -70.329924, 41.634578 ], [ -70.338067, 41.636338 ], [ -70.351634, 41.634687 ], [ -70.360352, 41.631069 ], [ -70.364892, 41.626721 ], [ -70.364744, 41.623671 ], [ -70.369854, 41.615888 ], [ -70.379151, 41.611361 ], [ -70.400581, 41.606382 ], [ -70.401148, 41.606451 ], [ -70.408535, 41.607345 ], [ -70.413944, 41.606965 ], [ -70.437246, 41.605329 ], [ -70.437889, 41.604249 ], [ -70.440556, 41.599767 ], [ -70.442225, 41.596963 ], [ -70.444350, 41.593393 ], [ -70.445289, 41.591815 ], [ -70.446543, 41.590247 ], [ -70.450382, 41.585445 ], [ -70.456052, 41.578355 ], [ -70.457356, 41.576724 ], [ -70.461093, 41.572051 ], [ -70.461278, 41.571820 ], [ -70.461960, 41.571213 ], [ -70.462206, 41.570995 ], [ -70.462239, 41.570965 ], [ -70.472778, 41.561595 ], [ -70.473328, 41.561106 ], [ -70.476231, 41.558524 ], [ -70.476256, 41.558502 ], [ -70.476275, 41.558493 ], [ -70.483350, 41.555259 ], [ -70.485155, 41.554434 ], [ -70.485571, 41.554244 ], [ -70.486815, 41.553887 ], [ -70.493244, 41.552044 ], [ -70.522009, 41.548999 ], [ -70.522327, 41.548965 ], [ -70.531640, 41.548807 ], [ -70.559482, 41.548334 ], [ -70.559689, 41.548330 ], [ -70.559728, 41.548326 ], [ -70.560909, 41.548203 ], [ -70.561261, 41.548167 ], [ -70.574023, 41.546840 ], [ -70.588412, 41.545345 ], [ -70.588494, 41.545336 ], [ -70.588810, 41.545304 ], [ -70.588894, 41.545295 ], [ -70.589570, 41.545225 ], [ -70.596570, 41.544497 ], [ -70.611081, 41.542989 ], [ -70.611147, 41.542975 ], [ -70.613006, 41.542584 ], [ -70.614398, 41.542292 ], [ -70.616715, 41.541805 ], [ -70.617223, 41.541698 ], [ -70.617638, 41.541611 ], [ -70.617911, 41.541553 ], [ -70.633607, 41.538254 ], [ -70.633713, 41.538192 ], [ -70.633800, 41.538141 ], [ -70.643627, 41.532357 ], [ -70.650059, 41.524172 ], [ -70.650128, 41.524084 ], [ -70.651566, 41.522254 ], [ -70.652050, 41.521639 ], [ -70.654104, 41.519025 ], [ -70.654168, 41.518992 ], [ -70.663856, 41.514031 ], [ -70.669518, 41.513339 ], [ -70.675379, 41.512623 ], [ -70.705181, 41.496677 ], [ -70.734306, 41.486335 ], [ -70.757171, 41.469917 ], [ -70.756481, 41.465977 ], [ -70.760863, 41.460947 ], [ -70.790270, 41.446339 ], [ -70.817478, 41.445562 ], [ -70.835867, 41.441877 ], [ -70.857528, 41.425767 ], [ -70.866946, 41.422378 ], [ -70.902763, 41.421061 ], [ -70.928197, 41.415781 ], [ -70.937282, 41.411618 ], [ -70.948431, 41.409193 ], [ -70.951045, 41.411777 ], [ -70.949861, 41.415323 ], [ -70.928165, 41.431265 ], [ -70.923698, 41.430716 ], [ -70.918983, 41.425300 ], [ -70.911640, 41.424484 ], [ -70.906011, 41.425708 ], [ -70.883247, 41.432239 ], [ -70.855265, 41.448892 ], [ -70.828546, 41.456448 ], [ -70.802186, 41.460864 ], [ -70.787769, 41.474609 ], [ -70.775268, 41.477465 ], [ -70.753905, 41.492256 ], [ -70.745053, 41.500966 ], [ -70.694800, 41.525640 ], [ -70.658659, 41.543385 ], [ -70.654302, 41.549926 ], [ -70.655365, 41.557498 ], [ -70.653899, 41.565160 ], [ -70.648780, 41.569870 ], [ -70.642748, 41.572385 ], [ -70.640948, 41.577325 ], [ -70.642040, 41.583066 ], [ -70.652449, 41.605210 ], [ -70.651986, 41.610184 ], [ -70.640003, 41.624616 ], [ -70.645251, 41.633547 ], [ -70.652614, 41.637829 ], [ -70.650419, 41.644202 ], [ -70.638695, 41.649427 ], [ -70.637632, 41.654573 ], [ -70.646308, 41.678433 ], [ -70.649285, 41.680943 ], [ -70.661475, 41.681756 ], [ -70.645962, 41.693794 ], [ -70.625440, 41.698691 ], [ -70.623652, 41.707398 ], [ -70.626529, 41.712995 ], [ -70.642914, 41.718410 ], [ -70.644641, 41.718980 ], [ -70.651093, 41.715715 ], [ -70.656596, 41.715401 ], [ -70.670453, 41.721912 ], [ -70.708193, 41.730959 ], [ -70.718739, 41.735740 ], [ -70.726331, 41.732731 ], [ -70.728933, 41.723433 ], [ -70.721302, 41.712968 ], [ -70.717451, 41.693980 ], [ -70.719575, 41.685002 ], [ -70.729395, 41.688140 ], [ -70.744396, 41.696967 ], [ -70.755347, 41.694326 ], [ -70.761481, 41.676808 ], [ -70.761497, 41.676641 ], [ -70.762360, 41.667735 ], [ -70.758198, 41.661225 ], [ -70.757622, 41.654265 ], [ -70.765463, 41.641575 ], [ -70.769318, 41.641145 ], [ -70.773654, 41.645033 ], [ -70.775798, 41.649145 ], [ -70.776709, 41.650756 ], [ -70.809118, 41.656437 ], [ -70.813286, 41.655670 ], [ -70.815729, 41.652796 ], [ -70.816351, 41.645995 ], [ -70.804664, 41.641157 ], [ -70.800215, 41.631753 ], [ -70.801063, 41.629513 ], [ -70.810279, 41.624873 ], [ -70.835296, 41.624532 ], [ -70.843177, 41.628487 ], [ -70.843522, 41.628660 ], [ -70.843528, 41.628663 ], [ -70.844165, 41.628983 ], [ -70.852518, 41.626919 ], [ -70.855031, 41.624283 ], [ -70.855162, 41.624145 ], [ -70.854232, 41.618429 ], [ -70.854211, 41.618302 ], [ -70.853445, 41.613592 ], [ -70.850181, 41.593529 ], [ -70.852220, 41.589223 ], [ -70.852488, 41.588658 ], [ -70.852551, 41.588526 ], [ -70.853121, 41.587321 ], [ -70.853240, 41.587332 ], [ -70.857239, 41.587705 ], [ -70.862852, 41.600678 ], [ -70.862998, 41.601014 ], [ -70.863486, 41.602143 ], [ -70.868501, 41.613733 ], [ -70.868904, 41.614664 ], [ -70.868360, 41.622664 ], [ -70.869624, 41.625608 ], [ -70.872665, 41.627816 ], [ -70.879040, 41.629777 ], [ -70.887643, 41.632422 ], [ -70.889209, 41.632904 ], [ -70.889260, 41.632875 ], [ -70.889594, 41.632685 ], [ -70.904513, 41.624205 ], [ -70.905765, 41.623494 ], [ -70.913202, 41.619266 ], [ -70.904522, 41.610361 ], [ -70.899981, 41.593504 ], [ -70.901381, 41.592504 ], [ -70.910814, 41.595506 ], [ -70.916581, 41.607483 ], [ -70.920074, 41.610810 ], [ -70.927172, 41.611253 ], [ -70.929722, 41.609479 ], [ -70.930000, 41.600441 ], [ -70.927393, 41.594064 ], [ -70.931338, 41.584200 ], [ -70.937978, 41.577416 ], [ -70.941588, 41.581034 ], [ -70.946911, 41.581089 ], [ -70.948797, 41.579038 ], [ -70.947300, 41.573659 ], [ -70.937830, 41.565239 ], [ -70.931545, 41.540169 ], [ -70.941785, 41.540121 ], [ -70.979225, 41.530427 ], [ -70.983354, 41.520616 ], [ -71.003275, 41.511912 ], [ -71.019354, 41.508857 ], [ -71.023523, 41.506326 ], [ -71.035514, 41.499047 ], [ -71.058418, 41.505967 ], [ -71.085663, 41.509292 ], [ -71.120570, 41.497448 ], [ -71.133353, 41.629509 ], [ -71.133608, 41.632152 ], [ -71.133796, 41.634090 ], [ -71.134484, 41.641198 ], [ -71.134478, 41.641262 ], [ -71.134688, 41.660502 ], [ -71.135188, 41.660502 ], [ -71.145870, 41.662795 ], [ -71.153989, 41.664102 ], [ -71.176090, 41.668102 ], [ -71.176090, 41.668502 ], [ -71.175990, 41.671402 ], [ -71.181290, 41.672502 ], [ -71.191175, 41.674292 ], [ -71.191178, 41.674216 ], [ -71.194390, 41.674802 ], [ -71.195640, 41.675090 ], [ -71.224798, 41.710498 ], [ -71.261392, 41.752301 ], [ -71.317790, 41.776099 ], [ -71.317795, 41.776101 ], [ -71.327896, 41.780501 ], [ -71.339297, 41.806500 ], [ -71.339597, 41.832000 ], [ -71.337597, 41.833700 ], [ -71.339298, 41.893399 ], [ -71.339298, 41.893599 ], [ -71.352699, 41.896699 ], [ -71.354699, 41.896499 ], [ -71.362499, 41.895599 ], [ -71.364699, 41.895399 ], [ -71.365399, 41.895299 ], [ -71.370999, 41.894599 ], [ -71.373799, 41.894399 ], [ -71.376600, 41.893999 ], [ -71.381700, 41.922699 ], [ -71.381600, 41.922899 ], [ -71.381401, 41.964799 ], [ -71.381501, 41.966699 ], [ -71.381466, 41.984998 ], [ -71.381401, 42.018798 ], [ -71.458104, 42.017762 ], [ -71.498258, 42.017220 ], [ -71.499905, 42.017198 ], [ -71.500905, 42.017098 ], [ -71.527306, 42.015098 ], [ -71.527606, 42.014998 ], [ -71.559439, 42.014342 ], [ -71.576908, 42.014098 ], [ -71.591104, 42.013713 ], [ -71.799242, 42.008065 ], [ -71.800650, 42.023569 ], [ -72.059752, 42.027339 ], [ -72.102160, 42.028962 ], [ -72.135687, 42.030245 ], [ -72.135715, 42.030245 ], [ -72.198828, 42.030982 ] ] ] ] } }\n,\n{ \"type\": \"Feature\", \"properties\": { \"GEO_ID\": \"0400000US26\", \"STATE\": \"26\", \"NAME\": \"Michigan\", \"LSAD\": \"\", \"CENSUSAREA\": 56538.901000 }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [ [ [ [ -85.566441, 45.760222 ], [ -85.549560, 45.757266 ], [ -85.543750, 45.751413 ], [ -85.535620, 45.750394 ], [ -85.525237, 45.750462 ], [ -85.506133, 45.754715 ], [ -85.501267, 45.754415 ], [ -85.497656, 45.746246 ], [ -85.503758, 45.742771 ], [ -85.508818, 45.742358 ], [ -85.510091, 45.742888 ], [ -85.508522, 45.744991 ], [ -85.509040, 45.748488 ], [ -85.515145, 45.749451 ], [ -85.520569, 45.744745 ], [ -85.521911, 45.739419 ], [ -85.520803, 45.737247 ], [ -85.510895, 45.734414 ], [ -85.498777, 45.726291 ], [ -85.494154, 45.705378 ], [ -85.494016, 45.698476 ], [ -85.502800, 45.690998 ], [ -85.506104, 45.681148 ], [ -85.503767, 45.670472 ], [ -85.500451, 45.664298 ], [ -85.490252, 45.652122 ], [ -85.487026, 45.621211 ], [ -85.491347, 45.609665 ], [ -85.509276, 45.596475 ], [ -85.518038, 45.592912 ], [ -85.526895, 45.591590 ], [ -85.530273, 45.589253 ], [ -85.534064, 45.578198 ], [ -85.541129, 45.575045 ], [ -85.561634, 45.572213 ], [ -85.618049, 45.582647 ], [ -85.622741, 45.586028 ], [ -85.630016, 45.598166 ], [ -85.619850, 45.624547 ], [ -85.608653, 45.632008 ], [ -85.604521, 45.639256 ], [ -85.604951, 45.647599 ], [ -85.609295, 45.658067 ], [ -85.604881, 45.681932 ], [ -85.600842, 45.688860 ], [ -85.590769, 45.698051 ], [ -85.583724, 45.700796 ], [ -85.572309, 45.711449 ], [ -85.565132, 45.730719 ], [ -85.564774, 45.745462 ], [ -85.567128, 45.750419 ], [ -85.567781, 45.757655 ], [ -85.566441, 45.760222 ] ] ], [ [ [ -88.684434, 48.115785 ], [ -88.675628, 48.120444 ], [ -88.676395, 48.124876 ], [ -88.674192, 48.127165 ], [ -88.656915, 48.139225 ], [ -88.614026, 48.154797 ], [ -88.578413, 48.162370 ], [ -88.547033, 48.174891 ], [ -88.524753, 48.165291 ], [ -88.501088, 48.168181 ], [ -88.491961, 48.175466 ], [ -88.482039, 48.179915 ], [ -88.459735, 48.183807 ], [ -88.447236, 48.182916 ], [ -88.422601, 48.190975 ], [ -88.418244, 48.180370 ], [ -88.419875, 48.170731 ], [ -88.427373, 48.166764 ], [ -88.449502, 48.163312 ], [ -88.459697, 48.158551 ], [ -88.469573, 48.152879 ], [ -88.485700, 48.137683 ], [ -88.511902, 48.121699 ], [ -88.566938, 48.093719 ], [ -88.578053, 48.084373 ], [ -88.578395, 48.078003 ], [ -88.575869, 48.075166 ], [ -88.573924, 48.068861 ], [ -88.575048, 48.064154 ], [ -88.579784, 48.058669 ], [ -88.670073, 48.011446 ], [ -88.718555, 47.995134 ], [ -88.772357, 47.981126 ], [ -88.791959, 47.978938 ], [ -88.832063, 47.965213 ], [ -88.852923, 47.965322 ], [ -88.899184, 47.953300 ], [ -88.918029, 47.945605 ], [ -88.923573, 47.937976 ], [ -88.962664, 47.923512 ], [ -88.968903, 47.909474 ], [ -88.968903, 47.901675 ], [ -88.957985, 47.895436 ], [ -88.942387, 47.895436 ], [ -88.899698, 47.902445 ], [ -88.898986, 47.900685 ], [ -88.911665, 47.891344 ], [ -88.998939, 47.867490 ], [ -89.022736, 47.858532 ], [ -89.044463, 47.855750 ], [ -89.056412, 47.852598 ], [ -89.107991, 47.835705 ], [ -89.124134, 47.828616 ], [ -89.157738, 47.824015 ], [ -89.190170, 47.831603 ], [ -89.192681, 47.833430 ], [ -89.192207, 47.841060 ], [ -89.201812, 47.850243 ], [ -89.234533, 47.851718 ], [ -89.235552, 47.853774 ], [ -89.234535, 47.855373 ], [ -89.228507, 47.858039 ], [ -89.246774, 47.871016 ], [ -89.250936, 47.870377 ], [ -89.255202, 47.876102 ], [ -89.247127, 47.888503 ], [ -89.226327, 47.895438 ], [ -89.220710, 47.900850 ], [ -89.221332, 47.908069 ], [ -89.214499, 47.913895 ], [ -89.179154, 47.935030 ], [ -89.095207, 47.967922 ], [ -89.018303, 47.992525 ], [ -88.994163, 48.002290 ], [ -88.940886, 48.019590 ], [ -88.931487, 48.021637 ], [ -88.927529, 48.019615 ], [ -88.915032, 48.020681 ], [ -88.895069, 48.029059 ], [ -88.896327, 48.031801 ], [ -88.893701, 48.034770 ], [ -88.835714, 48.056752 ], [ -88.816084, 48.057006 ], [ -88.810461, 48.055247 ], [ -88.787556, 48.063035 ], [ -88.772077, 48.070502 ], [ -88.771830, 48.079457 ], [ -88.764256, 48.085189 ], [ -88.744458, 48.092769 ], [ -88.728198, 48.101914 ], [ -88.705586, 48.111013 ], [ -88.695353, 48.110549 ], [ -88.684434, 48.115785 ] ] ], [ [ [ -84.593232, 45.817389 ], [ -84.594241, 45.818776 ], [ -84.597043, 45.822629 ], [ -84.611840, 45.833429 ], [ -84.611893, 45.833487 ], [ -84.612845, 45.834528 ], [ -84.623863, 45.846579 ], [ -84.629239, 45.850014 ], [ -84.639700, 45.852624 ], [ -84.650783, 45.859210 ], [ -84.651336, 45.862844 ], [ -84.646876, 45.884642 ], [ -84.641804, 45.885486 ], [ -84.629437, 45.882578 ], [ -84.622515, 45.877530 ], [ -84.608200, 45.861631 ], [ -84.602922, 45.851640 ], [ -84.589272, 45.825795 ], [ -84.578328, 45.820092 ], [ -84.538395, 45.807843 ], [ -84.514441, 45.810120 ], [ -84.492951, 45.805343 ], [ -84.432472, 45.786732 ], [ -84.426724, 45.788194 ], [ -84.421267, 45.792694 ], [ -84.419696, 45.799823 ], [ -84.421590, 45.805651 ], [ -84.419335, 45.806747 ], [ -84.410910, 45.797217 ], [ -84.403208, 45.784394 ], [ -84.356020, 45.771895 ], [ -84.356312, 45.769495 ], [ -84.370241, 45.756190 ], [ -84.372248, 45.745784 ], [ -84.394292, 45.735301 ], [ -84.395600, 45.732925 ], [ -84.394038, 45.727623 ], [ -84.405852, 45.722417 ], [ -84.418902, 45.721712 ], [ -84.430026, 45.726307 ], [ -84.451040, 45.727952 ], [ -84.469183, 45.732246 ], [ -84.484128, 45.730710 ], [ -84.500892, 45.737259 ], [ -84.507476, 45.744644 ], [ -84.509301, 45.754336 ], [ -84.525060, 45.764168 ], [ -84.549902, 45.789859 ], [ -84.561562, 45.796213 ], [ -84.581950, 45.802633 ], [ -84.587572, 45.806700 ], [ -84.590198, 45.813217 ], [ -84.593232, 45.817389 ] ] ], [ [ [ -86.093536, 45.007838 ], [ -86.115699, 44.999093 ], [ -86.133655, 44.996874 ], [ -86.154824, 45.002394 ], [ -86.156689, 45.010535 ], [ -86.154557, 45.018102 ], [ -86.141644, 45.040251 ], [ -86.138095, 45.043038 ], [ -86.117908, 45.048478 ], [ -86.093166, 45.041492 ], [ -86.079103, 45.030795 ], [ -86.093451, 45.031660 ], [ -86.097094, 45.030128 ], [ -86.100315, 45.026240 ], [ -86.101894, 45.022811 ], [ -86.101214, 45.018101 ], [ -86.093536, 45.007838 ] ] ], [ [ [ -86.033174, 45.158420 ], [ -86.005946, 45.155751 ], [ -85.993194, 45.152805 ], [ -85.989412, 45.151069 ], [ -85.976803, 45.138363 ], [ -85.976434, 45.120706 ], [ -85.980433, 45.113046 ], [ -85.984095, 45.087073 ], [ -85.982799, 45.080787 ], [ -85.977082, 45.072993 ], [ -85.976883, 45.062660 ], [ -85.997360, 45.055929 ], [ -86.013073, 45.063774 ], [ -86.019874, 45.071665 ], [ -86.037129, 45.086576 ], [ -86.052424, 45.095311 ], [ -86.058653, 45.100776 ], [ -86.060396, 45.104617 ], [ -86.065016, 45.140266 ], [ -86.059393, 45.152291 ], [ -86.050473, 45.158418 ], [ -86.044430, 45.159582 ], [ -86.033174, 45.158420 ] ] ], [ [ [ -83.372198, 41.874122 ], [ -83.372445, 41.874477 ], [ -83.379705, 41.871729 ], [ -83.381955, 41.870877 ], [ -83.389289, 41.861668 ], [ -83.393822, 41.855976 ], [ -83.396220, 41.852965 ], [ -83.408220, 41.832654 ], [ -83.409596, 41.830325 ], [ -83.422316, 41.822278 ], [ -83.422391, 41.822255 ], [ -83.425393, 41.821316 ], [ -83.426321, 41.821026 ], [ -83.431183, 41.819506 ], [ -83.434204, 41.818562 ], [ -83.435946, 41.816823 ], [ -83.436298, 41.816471 ], [ -83.439612, 41.813162 ], [ -83.441668, 41.808646 ], [ -83.442316, 41.801190 ], [ -83.442521, 41.798830 ], [ -83.442843, 41.795121 ], [ -83.443364, 41.789118 ], [ -83.437935, 41.771086 ], [ -83.437516, 41.769694 ], [ -83.437231, 41.769150 ], [ -83.437197, 41.769085 ], [ -83.435571, 41.765983 ], [ -83.434238, 41.763439 ], [ -83.432973, 41.761025 ], [ -83.432832, 41.760756 ], [ -83.432078, 41.759316 ], [ -83.431951, 41.759074 ], [ -83.431103, 41.757457 ], [ -83.427377, 41.750346 ], [ -83.427336, 41.750267 ], [ -83.427308, 41.750214 ], [ -83.426430, 41.747639 ], [ -83.424180, 41.741042 ], [ -83.424076, 41.740738 ], [ -83.424155, 41.740710 ], [ -83.434360, 41.737058 ], [ -83.451897, 41.734486 ], [ -83.453832, 41.732647 ], [ -83.497733, 41.731847 ], [ -83.499733, 41.731647 ], [ -83.503433, 41.731547 ], [ -83.504334, 41.731547 ], [ -83.585235, 41.729348 ], [ -83.593835, 41.729148 ], [ -83.595235, 41.729148 ], [ -83.636636, 41.727849 ], [ -83.639636, 41.727749 ], [ -83.665937, 41.726949 ], [ -83.685337, 41.726449 ], [ -83.763155, 41.723910 ], [ -83.880387, 41.720086 ], [ -83.880539, 41.720081 ], [ -84.360419, 41.706925 ], [ -84.396547, 41.705935 ], [ -84.399430, 41.705761 ], [ -84.399546, 41.705758 ], [ -84.438067, 41.704903 ], [ -84.806082, 41.696089 ], [ -84.806018, 41.707485 ], [ -84.806042, 41.720544 ], [ -84.806065, 41.732909 ], [ -84.806074, 41.737603 ], [ -84.806134, 41.743115 ], [ -84.818873, 41.760059 ], [ -84.825130, 41.759991 ], [ -84.825196, 41.759990 ], [ -84.932484, 41.759691 ], [ -84.960860, 41.759438 ], [ -84.961562, 41.759552 ], [ -84.971551, 41.759527 ], [ -84.972803, 41.759366 ], [ -85.037817, 41.759801 ], [ -85.039436, 41.759985 ], [ -85.117267, 41.759700 ], [ -85.123102, 41.759743 ], [ -85.172230, 41.759618 ], [ -85.196637, 41.759735 ], [ -85.196774, 41.759735 ], [ -85.232835, 41.759839 ], [ -85.272216, 41.759999 ], [ -85.272951, 41.759911 ], [ -85.273713, 41.759770 ], [ -85.292099, 41.759962 ], [ -85.292178, 41.759963 ], [ -85.298365, 41.760028 ], [ -85.308140, 41.760097 ], [ -85.318129, 41.759983 ], [ -85.330623, 41.759982 ], [ -85.350174, 41.759908 ], [ -85.379133, 41.759875 ], [ -85.427553, 41.759706 ], [ -85.432471, 41.759684 ], [ -85.515959, 41.759352 ], [ -85.518251, 41.759513 ], [ -85.607548, 41.759079 ], [ -85.608312, 41.759193 ], [ -85.622608, 41.759049 ], [ -85.624987, 41.759093 ], [ -85.632714, 41.759164 ], [ -85.647683, 41.759125 ], [ -85.650738, 41.759103 ], [ -85.659750, 41.759101 ], [ -85.724534, 41.759085 ], [ -85.749992, 41.759091 ], [ -85.750469, 41.759090 ], [ -85.775039, 41.759147 ], [ -85.791335, 41.759051 ], [ -85.791363, 41.759051 ], [ -85.872041, 41.759365 ], [ -85.874997, 41.759341 ], [ -85.888825, 41.759422 ], [ -85.974901, 41.759849 ], [ -85.974980, 41.759849 ], [ -85.991302, 41.759949 ], [ -86.003683, 41.760007 ], [ -86.062572, 41.760283 ], [ -86.125060, 41.760576 ], [ -86.125460, 41.760560 ], [ -86.127844, 41.760592 ], [ -86.217590, 41.760016 ], [ -86.226070, 41.760016 ], [ -86.226097, 41.760016 ], [ -86.265496, 41.760207 ], [ -86.501773, 41.759553 ], [ -86.519318, 41.759447 ], [ -86.524223, 41.759456 ], [ -86.640044, 41.759671 ], [ -86.641186, 41.759633 ], [ -86.746521, 41.759982 ], [ -86.748096, 41.759967 ], [ -86.800611, 41.760251 ], [ -86.800707, 41.760240 ], [ -86.801578, 41.760240 ], [ -86.804427, 41.760240 ], [ -86.823628, 41.760240 ], [ -86.824828, 41.760240 ], [ -86.823550, 41.760898 ], [ -86.802065, 41.771956 ], [ -86.801772, 41.772107 ], [ -86.794712, 41.775740 ], [ -86.794632, 41.775782 ], [ -86.793510, 41.776359 ], [ -86.777943, 41.784371 ], [ -86.777227, 41.784740 ], [ -86.776080, 41.785399 ], [ -86.774798, 41.786137 ], [ -86.751292, 41.799652 ], [ -86.735207, 41.808901 ], [ -86.717037, 41.819349 ], [ -86.715578, 41.820334 ], [ -86.697541, 41.832513 ], [ -86.679672, 41.844579 ], [ -86.679355, 41.844793 ], [ -86.648971, 41.869659 ], [ -86.647600, 41.870782 ], [ -86.645296, 41.872668 ], [ -86.644048, 41.873689 ], [ -86.643965, 41.873757 ], [ -86.629867, 41.885295 ], [ -86.629344, 41.885723 ], [ -86.623837, 41.890230 ], [ -86.623774, 41.890282 ], [ -86.621259, 41.892340 ], [ -86.619442, 41.893827 ], [ -86.616978, 41.896625 ], [ -86.616886, 41.896730 ], [ -86.616029, 41.897703 ], [ -86.612251, 41.901993 ], [ -86.612080, 41.902188 ], [ -86.611511, 41.902833 ], [ -86.610896, 41.903532 ], [ -86.600524, 41.915310 ], [ -86.597899, 41.918291 ], [ -86.596802, 41.919964 ], [ -86.588662, 41.932380 ], [ -86.587827, 41.933653 ], [ -86.587763, 41.933752 ], [ -86.586721, 41.935341 ], [ -86.585696, 41.936904 ], [ -86.585264, 41.937562 ], [ -86.582894, 41.941179 ], [ -86.582197, 41.942241 ], [ -86.581518, 41.943765 ], [ -86.564722, 41.981427 ], [ -86.564276, 41.982427 ], [ -86.564077, 41.982874 ], [ -86.563904, 41.983262 ], [ -86.563598, 41.983948 ], [ -86.561542, 41.988559 ], [ -86.556537, 41.999782 ], [ -86.556421, 42.000042 ], [ -86.549328, 42.010920 ], [ -86.549237, 42.011059 ], [ -86.545288, 42.017115 ], [ -86.544867, 42.017761 ], [ -86.541718, 42.022590 ], [ -86.541089, 42.023555 ], [ -86.536063, 42.031262 ], [ -86.533855, 42.034648 ], [ -86.532934, 42.036061 ], [ -86.532640, 42.036512 ], [ -86.532161, 42.037246 ], [ -86.508856, 42.072986 ], [ -86.501322, 42.084540 ], [ -86.490122, 42.105139 ], [ -86.485223, 42.118239 ], [ -86.479031, 42.123519 ], [ -86.466576, 42.134138 ], [ -86.466262, 42.134406 ], [ -86.464913, 42.135752 ], [ -86.464897, 42.135767 ], [ -86.464356, 42.136308 ], [ -86.463967, 42.136696 ], [ -86.463685, 42.136977 ], [ -86.440762, 42.159847 ], [ -86.439416, 42.161190 ], [ -86.437909, 42.162694 ], [ -86.437148, 42.163453 ], [ -86.404146, 42.196379 ], [ -86.402183, 42.198542 ], [ -86.398915, 42.202143 ], [ -86.398536, 42.202561 ], [ -86.397692, 42.203491 ], [ -86.394997, 42.206460 ], [ -86.394183, 42.207357 ], [ -86.393565, 42.208039 ], [ -86.393518, 42.208090 ], [ -86.386591, 42.215723 ], [ -86.385179, 42.217279 ], [ -86.383665, 42.219207 ], [ -86.383585, 42.219310 ], [ -86.381434, 42.222048 ], [ -86.380407, 42.223357 ], [ -86.380035, 42.223830 ], [ -86.364880, 42.243133 ], [ -86.356218, 42.254166 ], [ -86.321803, 42.310743 ], [ -86.297168, 42.358207 ], [ -86.284448, 42.394563 ], [ -86.284969, 42.401814 ], [ -86.276878, 42.413317 ], [ -86.273893, 42.419280 ], [ -86.261573, 42.443894 ], [ -86.249710, 42.480212 ], [ -86.241446, 42.534697 ], [ -86.240642, 42.540000 ], [ -86.235280, 42.564958 ], [ -86.235254, 42.565023 ], [ -86.234755, 42.566302 ], [ -86.234594, 42.566715 ], [ -86.231190, 42.575435 ], [ -86.228082, 42.583397 ], [ -86.226037, 42.592811 ], [ -86.225978, 42.593084 ], [ -86.225613, 42.594765 ], [ -86.229050, 42.637693 ], [ -86.226638, 42.644922 ], [ -86.216020, 42.664413 ], [ -86.208654, 42.692090 ], [ -86.206834, 42.719424 ], [ -86.208309, 42.762789 ], [ -86.208886, 42.767540 ], [ -86.210863, 42.783832 ], [ -86.211815, 42.833236 ], [ -86.210737, 42.859128 ], [ -86.214138, 42.883555 ], [ -86.216209, 42.919007 ], [ -86.226305, 42.988284 ], [ -86.232707, 43.015762 ], [ -86.244277, 43.049681 ], [ -86.250069, 43.057489 ], [ -86.250517, 43.066993 ], [ -86.254646, 43.083409 ], [ -86.271996, 43.118365 ], [ -86.280756, 43.136015 ], [ -86.299048, 43.166465 ], [ -86.311336, 43.186920 ], [ -86.311887, 43.187837 ], [ -86.316259, 43.195114 ], [ -86.329836, 43.215800 ], [ -86.344643, 43.238360 ], [ -86.348647, 43.244459 ], [ -86.348910, 43.244860 ], [ -86.349801, 43.246217 ], [ -86.350027, 43.246562 ], [ -86.352192, 43.249860 ], [ -86.352314, 43.250047 ], [ -86.354505, 43.253385 ], [ -86.357996, 43.258703 ], [ -86.382882, 43.296620 ], [ -86.383821, 43.298051 ], [ -86.386096, 43.301516 ], [ -86.386374, 43.301941 ], [ -86.388493, 43.305168 ], [ -86.389410, 43.306565 ], [ -86.392124, 43.310701 ], [ -86.393385, 43.312622 ], [ -86.395750, 43.316225 ], [ -86.401684, 43.327135 ], [ -86.403010, 43.329572 ], [ -86.403541, 43.330548 ], [ -86.404831, 43.332920 ], [ -86.407832, 43.338436 ], [ -86.411941, 43.347209 ], [ -86.427585, 43.380607 ], [ -86.434757, 43.395919 ], [ -86.434842, 43.396100 ], [ -86.435124, 43.396702 ], [ -86.435271, 43.397083 ], [ -86.437896, 43.403890 ], [ -86.438028, 43.404231 ], [ -86.438267, 43.404851 ], [ -86.438875, 43.406427 ], [ -86.448479, 43.431329 ], [ -86.448743, 43.432013 ], [ -86.454570, 43.449475 ], [ -86.456083, 43.454010 ], [ -86.456845, 43.456294 ], [ -86.457561, 43.458441 ], [ -86.462195, 43.472328 ], [ -86.468747, 43.491963 ], [ -86.468754, 43.491979 ], [ -86.468919, 43.492344 ], [ -86.476956, 43.510184 ], [ -86.477424, 43.511223 ], [ -86.478716, 43.514091 ], [ -86.479276, 43.515335 ], [ -86.479552, 43.515750 ], [ -86.481158, 43.518158 ], [ -86.481650, 43.518896 ], [ -86.481870, 43.519225 ], [ -86.482255, 43.519803 ], [ -86.483043, 43.520984 ], [ -86.483083, 43.521045 ], [ -86.505799, 43.555112 ], [ -86.509205, 43.560221 ], [ -86.509339, 43.560421 ], [ -86.512317, 43.564887 ], [ -86.514168, 43.567664 ], [ -86.515108, 43.569074 ], [ -86.515838, 43.570169 ], [ -86.516295, 43.570854 ], [ -86.516725, 43.571499 ], [ -86.517493, 43.572651 ], [ -86.518698, 43.574458 ], [ -86.519912, 43.576278 ], [ -86.520205, 43.576718 ], [ -86.520248, 43.576796 ], [ -86.529507, 43.593462 ], [ -86.537923, 43.615965 ], [ -86.538497, 43.617501 ], [ -86.538876, 43.619957 ], [ -86.538921, 43.620244 ], [ -86.539103, 43.621424 ], [ -86.539291, 43.622642 ], [ -86.539303, 43.622720 ], [ -86.540916, 43.633158 ], [ -86.540906, 43.634047 ], [ -86.540896, 43.634969 ], [ -86.540810, 43.642516 ], [ -86.540787, 43.644593 ], [ -86.540640, 43.645499 ], [ -86.538763, 43.657061 ], [ -86.538482, 43.658795 ], [ -86.538186, 43.659403 ], [ -86.529686, 43.676849 ], [ -86.529179, 43.677889 ], [ -86.527667, 43.679552 ], [ -86.526863, 43.680435 ], [ -86.517867, 43.690326 ], [ -86.516152, 43.692212 ], [ -86.514371, 43.694170 ], [ -86.511008, 43.697867 ], [ -86.510319, 43.698625 ], [ -86.507620, 43.701138 ], [ -86.506690, 43.702004 ], [ -86.504679, 43.703878 ], [ -86.503192, 43.705263 ], [ -86.502989, 43.705452 ], [ -86.501899, 43.706467 ], [ -86.496187, 43.711787 ], [ -86.488381, 43.719056 ], [ -86.486983, 43.720358 ], [ -86.481854, 43.725135 ], [ -86.480655, 43.726407 ], [ -86.480628, 43.726436 ], [ -86.480267, 43.726819 ], [ -86.463436, 43.744687 ], [ -86.461554, 43.746685 ], [ -86.460444, 43.748366 ], [ -86.445532, 43.770945 ], [ -86.445123, 43.771564 ], [ -86.444903, 43.772069 ], [ -86.442786, 43.776934 ], [ -86.437722, 43.788573 ], [ -86.437391, 43.789334 ], [ -86.431140, 43.815569 ], [ -86.431043, 43.815975 ], [ -86.431063, 43.819178 ], [ -86.431064, 43.819406 ], [ -86.431172, 43.836638 ], [ -86.431176, 43.837177 ], [ -86.431182, 43.838119 ], [ -86.431198, 43.840720 ], [ -86.431238, 43.840941 ], [ -86.432894, 43.850013 ], [ -86.433471, 43.853176 ], [ -86.433915, 43.855608 ], [ -86.434078, 43.856090 ], [ -86.434258, 43.856623 ], [ -86.434985, 43.858771 ], [ -86.445455, 43.889726 ], [ -86.445730, 43.892897 ], [ -86.445938, 43.895290 ], [ -86.446463, 43.901349 ], [ -86.447915, 43.918089 ], [ -86.448009, 43.918416 ], [ -86.448147, 43.918897 ], [ -86.449550, 43.923770 ], [ -86.451275, 43.929763 ], [ -86.454401, 43.940624 ], [ -86.462756, 43.969655 ], [ -86.463087, 43.970807 ], [ -86.463136, 43.970976 ], [ -86.463220, 43.971101 ], [ -86.481606, 43.998599 ], [ -86.483331, 44.001179 ], [ -86.484399, 44.002382 ], [ -86.501738, 44.021912 ], [ -86.502998, 44.023839 ], [ -86.504133, 44.025575 ], [ -86.504440, 44.026044 ], [ -86.508827, 44.032755 ], [ -86.514742, 44.047920 ], [ -86.514704, 44.057672 ], [ -86.514702, 44.058119 ], [ -86.514573, 44.058330 ], [ -86.509052, 44.067408 ], [ -86.508764, 44.067881 ], [ -86.508415, 44.068206 ], [ -86.501243, 44.074873 ], [ -86.500453, 44.075607 ], [ -86.497937, 44.077033 ], [ -86.469295, 44.093267 ], [ -86.454895, 44.101429 ], [ -86.447678, 44.105519 ], [ -86.447126, 44.105832 ], [ -86.446883, 44.105970 ], [ -86.446609, 44.106193 ], [ -86.429871, 44.119782 ], [ -86.426873, 44.123099 ], [ -86.425876, 44.124203 ], [ -86.425162, 44.124993 ], [ -86.421576, 44.128962 ], [ -86.421108, 44.129480 ], [ -86.400645, 44.156848 ], [ -86.397874, 44.161239 ], [ -86.397023, 44.162589 ], [ -86.396500, 44.163418 ], [ -86.386867, 44.178685 ], [ -86.380188, 44.189272 ], [ -86.380062, 44.189472 ], [ -86.362847, 44.208113 ], [ -86.354592, 44.223811 ], [ -86.354313, 44.224342 ], [ -86.351638, 44.229429 ], [ -86.349294, 44.235459 ], [ -86.343793, 44.249608 ], [ -86.327287, 44.263057 ], [ -86.326902, 44.263781 ], [ -86.319063, 44.278503 ], [ -86.318328, 44.279884 ], [ -86.316651, 44.283034 ], [ -86.316513, 44.283293 ], [ -86.316025, 44.284210 ], [ -86.313612, 44.287882 ], [ -86.312774, 44.289158 ], [ -86.311943, 44.290422 ], [ -86.304691, 44.301459 ], [ -86.304433, 44.301852 ], [ -86.300264, 44.308197 ], [ -86.268710, 44.345324 ], [ -86.251926, 44.400984 ], [ -86.248083, 44.420946 ], [ -86.248320, 44.434758 ], [ -86.251843, 44.451632 ], [ -86.251605, 44.465443 ], [ -86.248914, 44.483004 ], [ -86.248897, 44.483024 ], [ -86.248816, 44.483116 ], [ -86.243745, 44.488929 ], [ -86.238743, 44.501682 ], [ -86.233503, 44.518278 ], [ -86.223788, 44.549043 ], [ -86.220697, 44.566742 ], [ -86.225450, 44.594590 ], [ -86.231828, 44.609107 ], [ -86.253950, 44.648080 ], [ -86.259029, 44.663654 ], [ -86.256796, 44.686769 ], [ -86.254996, 44.691935 ], [ -86.248474, 44.699046 ], [ -86.232482, 44.706050 ], [ -86.172201, 44.720623 ], [ -86.169323, 44.722448 ], [ -86.160585, 44.727988 ], [ -86.160268, 44.728189 ], [ -86.122946, 44.727982 ], [ -86.122466, 44.727979 ], [ -86.121125, 44.727972 ], [ -86.120759, 44.728048 ], [ -86.108303, 44.730646 ], [ -86.106182, 44.731088 ], [ -86.105473, 44.731522 ], [ -86.090740, 44.740544 ], [ -86.089186, 44.741496 ], [ -86.077933, 44.758234 ], [ -86.077068, 44.760494 ], [ -86.076811, 44.761167 ], [ -86.076719, 44.761407 ], [ -86.074658, 44.766792 ], [ -86.073506, 44.769803 ], [ -86.073073, 44.778393 ], [ -86.071746, 44.804717 ], [ -86.065966, 44.821522 ], [ -86.066031, 44.834852 ], [ -86.071112, 44.865420 ], [ -86.072468, 44.884788 ], [ -86.070990, 44.895876 ], [ -86.066745, 44.905685 ], [ -86.058862, 44.911012 ], [ -86.038332, 44.915696 ], [ -86.031194, 44.907349 ], [ -86.021513, 44.902774 ], [ -86.009355, 44.899454 ], [ -85.992535, 44.900026 ], [ -85.980219, 44.906136 ], [ -85.972824, 44.914781 ], [ -85.967169, 44.929484 ], [ -85.961603, 44.935567 ], [ -85.952721, 44.940758 ], [ -85.942099, 44.954317 ], [ -85.938589, 44.964559 ], [ -85.931600, 44.968788 ], [ -85.915851, 44.968307 ], [ -85.897626, 44.962014 ], [ -85.891543, 44.957783 ], [ -85.879934, 44.943305 ], [ -85.869852, 44.939031 ], [ -85.854304, 44.938147 ], [ -85.836150, 44.940256 ], [ -85.815451, 44.945631 ], [ -85.807403, 44.949814 ], [ -85.780439, 44.977932 ], [ -85.778278, 44.983075 ], [ -85.776207, 45.000574 ], [ -85.771395, 45.015181 ], [ -85.761943, 45.023454 ], [ -85.746444, 45.051229 ], [ -85.740836, 45.055575 ], [ -85.712262, 45.065622 ], [ -85.695715, 45.076461 ], [ -85.681096, 45.092693 ], [ -85.675671, 45.105540 ], [ -85.674861, 45.116216 ], [ -85.656024, 45.145788 ], [ -85.618639, 45.186771 ], [ -85.613174, 45.184624 ], [ -85.611684, 45.181104 ], [ -85.606963, 45.178477 ], [ -85.593064, 45.178527 ], [ -85.585986, 45.180381 ], [ -85.564654, 45.192546 ], [ -85.561809, 45.200524 ], [ -85.551072, 45.210742 ], [ -85.540497, 45.210169 ], [ -85.526734, 45.189316 ], [ -85.531461, 45.177247 ], [ -85.536892, 45.173385 ], [ -85.552179, 45.167352 ], [ -85.561680, 45.158940 ], [ -85.562104, 45.156954 ], [ -85.563102, 45.155358 ], [ -85.563900, 45.154361 ], [ -85.564897, 45.153962 ], [ -85.566493, 45.153762 ], [ -85.568489, 45.153762 ], [ -85.570178, 45.155145 ], [ -85.573893, 45.155488 ], [ -85.590434, 45.153175 ], [ -85.599801, 45.149286 ], [ -85.614319, 45.127562 ], [ -85.609266, 45.113510 ], [ -85.583198, 45.071304 ], [ -85.573353, 45.068382 ], [ -85.566066, 45.059201 ], [ -85.566130, 45.043633 ], [ -85.570160, 45.041278 ], [ -85.573976, 45.043361 ], [ -85.597181, 45.040547 ], [ -85.599652, 45.021749 ], [ -85.609123, 45.013103 ], [ -85.621878, 45.004529 ], [ -85.606588, 44.990662 ], [ -85.604301, 44.990983 ], [ -85.602356, 44.974272 ], [ -85.602034, 44.926743 ], [ -85.621403, 44.923123 ], [ -85.625497, 44.921107 ], [ -85.639842, 44.890255 ], [ -85.645456, 44.883645 ], [ -85.648932, 44.874010 ], [ -85.652355, 44.849092 ], [ -85.651435, 44.831624 ], [ -85.641652, 44.810816 ], [ -85.637000, 44.790078 ], [ -85.640781, 44.775561 ], [ -85.640216, 44.775051 ], [ -85.636097, 44.771329 ], [ -85.627982, 44.767508 ], [ -85.624541, 44.767038 ], [ -85.623607, 44.766911 ], [ -85.620551, 44.766494 ], [ -85.619648, 44.766371 ], [ -85.610776, 44.765160 ], [ -85.607701, 44.765363 ], [ -85.605586, 44.765502 ], [ -85.599874, 44.765878 ], [ -85.599256, 44.765919 ], [ -85.599103, 44.765996 ], [ -85.593833, 44.768651 ], [ -85.593571, 44.768783 ], [ -85.593474, 44.769348 ], [ -85.593449, 44.769499 ], [ -85.591852, 44.778839 ], [ -85.591145, 44.782981 ], [ -85.591124, 44.783100 ], [ -85.590985, 44.783914 ], [ -85.581717, 44.807784 ], [ -85.581392, 44.808294 ], [ -85.545891, 44.864024 ], [ -85.539042, 44.868868 ], [ -85.532931, 44.873190 ], [ -85.530729, 44.889182 ], [ -85.530711, 44.889314 ], [ -85.530649, 44.889763 ], [ -85.553348, 44.890916 ], [ -85.553509, 44.890924 ], [ -85.559524, 44.888113 ], [ -85.564509, 44.895246 ], [ -85.562936, 44.896612 ], [ -85.562503, 44.896987 ], [ -85.557257, 44.901541 ], [ -85.556647, 44.902070 ], [ -85.556471, 44.902223 ], [ -85.551567, 44.906481 ], [ -85.539703, 44.916779 ], [ -85.538945, 44.917885 ], [ -85.538288, 44.918845 ], [ -85.533553, 44.925762 ], [ -85.530477, 44.933732 ], [ -85.529233, 44.936955 ], [ -85.520205, 44.960347 ], [ -85.520443, 44.961149 ], [ -85.520698, 44.962008 ], [ -85.522100, 44.966727 ], [ -85.521896, 44.967446 ], [ -85.520789, 44.971338 ], [ -85.520034, 44.973996 ], [ -85.518875, 44.974665 ], [ -85.492600, 44.989834 ], [ -85.492386, 44.989849 ], [ -85.475204, 44.991053 ], [ -85.472676, 44.985558 ], [ -85.471708, 44.983453 ], [ -85.470462, 44.980745 ], [ -85.470215, 44.979864 ], [ -85.468293, 44.973008 ], [ -85.468020, 44.972035 ], [ -85.466848, 44.967853 ], [ -85.464944, 44.961062 ], [ -85.466650, 44.958844 ], [ -85.470688, 44.959238 ], [ -85.471261, 44.959294 ], [ -85.471646, 44.959331 ], [ -85.472258, 44.959391 ], [ -85.474274, 44.958529 ], [ -85.485740, 44.953626 ], [ -85.489049, 44.938087 ], [ -85.489895, 44.934118 ], [ -85.490713, 44.930274 ], [ -85.491215, 44.927918 ], [ -85.491239, 44.927804 ], [ -85.491286, 44.927585 ], [ -85.491393, 44.925868 ], [ -85.491403, 44.925695 ], [ -85.491414, 44.925531 ], [ -85.491471, 44.924610 ], [ -85.491496, 44.924205 ], [ -85.492397, 44.909719 ], [ -85.492490, 44.908220 ], [ -85.489477, 44.903145 ], [ -85.488927, 44.902217 ], [ -85.488624, 44.901707 ], [ -85.489704, 44.897533 ], [ -85.489921, 44.896694 ], [ -85.498007, 44.865451 ], [ -85.500872, 44.858830 ], [ -85.502182, 44.855802 ], [ -85.502386, 44.855551 ], [ -85.508227, 44.848352 ], [ -85.508617, 44.847872 ], [ -85.511751, 44.847114 ], [ -85.513575, 44.846674 ], [ -85.516997, 44.845846 ], [ -85.518845, 44.845400 ], [ -85.519096, 44.845339 ], [ -85.527181, 44.841002 ], [ -85.533434, 44.837648 ], [ -85.538522, 44.834918 ], [ -85.539924, 44.834166 ], [ -85.542706, 44.831395 ], [ -85.546021, 44.828092 ], [ -85.547119, 44.826998 ], [ -85.551797, 44.822338 ], [ -85.552850, 44.821288 ], [ -85.553844, 44.820298 ], [ -85.555894, 44.818256 ], [ -85.557952, 44.814372 ], [ -85.560231, 44.810072 ], [ -85.560232, 44.809974 ], [ -85.560253, 44.808359 ], [ -85.560348, 44.800772 ], [ -85.560352, 44.800454 ], [ -85.560400, 44.796655 ], [ -85.560409, 44.795950 ], [ -85.560424, 44.794772 ], [ -85.560488, 44.789690 ], [ -85.560488, 44.789679 ], [ -85.568781, 44.774477 ], [ -85.571018, 44.770377 ], [ -85.575170, 44.762766 ], [ -85.576239, 44.760807 ], [ -85.576566, 44.760208 ], [ -85.575916, 44.759602 ], [ -85.571301, 44.755293 ], [ -85.554774, 44.748917 ], [ -85.554326, 44.748744 ], [ -85.554083, 44.748715 ], [ -85.538285, 44.746821 ], [ -85.527216, 44.748235 ], [ -85.523296, 44.751702 ], [ -85.509432, 44.763964 ], [ -85.504775, 44.768082 ], [ -85.504772, 44.768102 ], [ -85.504700, 44.768518 ], [ -85.503935, 44.772951 ], [ -85.504079, 44.773901 ], [ -85.504787, 44.778577 ], [ -85.505244, 44.781594 ], [ -85.507113, 44.784271 ], [ -85.509251, 44.787334 ], [ -85.508462, 44.788682 ], [ -85.507473, 44.790372 ], [ -85.499591, 44.803838 ], [ -85.496314, 44.805308 ], [ -85.484668, 44.810531 ], [ -85.481972, 44.811740 ], [ -85.477423, 44.813781 ], [ -85.475748, 44.814532 ], [ -85.475114, 44.814816 ], [ -85.474796, 44.814959 ], [ -85.474622, 44.815107 ], [ -85.462943, 44.825044 ], [ -85.462916, 44.825067 ], [ -85.462906, 44.825110 ], [ -85.462622, 44.826327 ], [ -85.460445, 44.835667 ], [ -85.457475, 44.839609 ], [ -85.457472, 44.839613 ], [ -85.457328, 44.839804 ], [ -85.456007, 44.841558 ], [ -85.455336, 44.842448 ], [ -85.452683, 44.845969 ], [ -85.442250, 44.859817 ], [ -85.425804, 44.881646 ], [ -85.423003, 44.895019 ], [ -85.406173, 44.911773 ], [ -85.395800, 44.931018 ], [ -85.378286, 44.998587 ], [ -85.381654, 45.018407 ], [ -85.380659, 45.046319 ], [ -85.377586, 45.055713 ], [ -85.366412, 45.069023 ], [ -85.366908, 45.116938 ], [ -85.372571, 45.126241 ], [ -85.376948, 45.142881 ], [ -85.380464, 45.180876 ], [ -85.386726, 45.189497 ], [ -85.387463, 45.207565 ], [ -85.388593, 45.235240 ], [ -85.371593, 45.270834 ], [ -85.355478, 45.282774 ], [ -85.335016, 45.294027 ], [ -85.323941, 45.303355 ], [ -85.307646, 45.313140 ], [ -85.294848, 45.316408 ], [ -85.289568, 45.314052 ], [ -85.273789, 45.315443 ], [ -85.262996, 45.319507 ], [ -85.255050, 45.325675 ], [ -85.252193, 45.330863 ], [ -85.235629, 45.339374 ], [ -85.209673, 45.356937 ], [ -85.196704, 45.360641 ], [ -85.182471, 45.360824 ], [ -85.143651, 45.370369 ], [ -85.095985, 45.367001 ], [ -85.073617, 45.365420 ], [ -85.066969, 45.364951 ], [ -85.064250, 45.364758 ], [ -85.063459, 45.364703 ], [ -85.060905, 45.364522 ], [ -85.054805, 45.364091 ], [ -85.046635, 45.362287 ], [ -85.045526, 45.362041 ], [ -85.043721, 45.361643 ], [ -85.043446, 45.361582 ], [ -85.043101, 45.361506 ], [ -85.032813, 45.361251 ], [ -85.022234, 45.366701 ], [ -84.998603, 45.370173 ], [ -84.975357, 45.373587 ], [ -84.959119, 45.375973 ], [ -84.915850, 45.393115 ], [ -84.912537, 45.402828 ], [ -84.912956, 45.409776 ], [ -84.916165, 45.417639 ], [ -84.922006, 45.421914 ], [ -84.976370, 45.428801 ], [ -84.976623, 45.428833 ], [ -84.978969, 45.429131 ], [ -84.980467, 45.429320 ], [ -84.980953, 45.429382 ], [ -84.981192, 45.429336 ], [ -84.990041, 45.427618 ], [ -84.990785, 45.425264 ], [ -84.989224, 45.424253 ], [ -84.987416, 45.423082 ], [ -84.987143, 45.422906 ], [ -84.984928, 45.421471 ], [ -84.983836, 45.420764 ], [ -84.978373, 45.420171 ], [ -84.977116, 45.420035 ], [ -84.978608, 45.418663 ], [ -84.994191, 45.423173 ], [ -85.034856, 45.434941 ], [ -85.037741, 45.435776 ], [ -85.040272, 45.436509 ], [ -85.040936, 45.436701 ], [ -85.046943, 45.441429 ], [ -85.050234, 45.444019 ], [ -85.050747, 45.444423 ], [ -85.052994, 45.446191 ], [ -85.069573, 45.459239 ], [ -85.070485, 45.460096 ], [ -85.087756, 45.476335 ], [ -85.088386, 45.476928 ], [ -85.097142, 45.495684 ], [ -85.103943, 45.510252 ], [ -85.109252, 45.521626 ], [ -85.109353, 45.521915 ], [ -85.110884, 45.526285 ], [ -85.110955, 45.526488 ], [ -85.115479, 45.539406 ], [ -85.115785, 45.541533 ], [ -85.115870, 45.542125 ], [ -85.117406, 45.552811 ], [ -85.117656, 45.554550 ], [ -85.119494, 45.567338 ], [ -85.119675, 45.568597 ], [ -85.119721, 45.568915 ], [ -85.119737, 45.569026 ], [ -85.119026, 45.573002 ], [ -85.118825, 45.574123 ], [ -85.118637, 45.575175 ], [ -85.118353, 45.575625 ], [ -85.117812, 45.576482 ], [ -85.112430, 45.585004 ], [ -85.112406, 45.585042 ], [ -85.111909, 45.585829 ], [ -85.111737, 45.585962 ], [ -85.107744, 45.589067 ], [ -85.106909, 45.589716 ], [ -85.106246, 45.590231 ], [ -85.105458, 45.590844 ], [ -85.103521, 45.592350 ], [ -85.103077, 45.592695 ], [ -85.102917, 45.592820 ], [ -85.102221, 45.593360 ], [ -85.101977, 45.593550 ], [ -85.096798, 45.597576 ], [ -85.095531, 45.598562 ], [ -85.093525, 45.600121 ], [ -85.079528, 45.617083 ], [ -85.079370, 45.617355 ], [ -85.076284, 45.622660 ], [ -85.075686, 45.623688 ], [ -85.075678, 45.623742 ], [ -85.075461, 45.625295 ], [ -85.074910, 45.629242 ], [ -85.074243, 45.629752 ], [ -85.071381, 45.631940 ], [ -85.065716, 45.636272 ], [ -85.063974, 45.637604 ], [ -85.061488, 45.639505 ], [ -85.061006, 45.639631 ], [ -85.044872, 45.643847 ], [ -85.041037, 45.644849 ], [ -85.035590, 45.646273 ], [ -85.020107, 45.650319 ], [ -85.019374, 45.650510 ], [ -85.015341, 45.651564 ], [ -85.014352, 45.652134 ], [ -85.013218, 45.652789 ], [ -85.007026, 45.656360 ], [ -85.005645, 45.657504 ], [ -85.002344, 45.660239 ], [ -85.001154, 45.661225 ], [ -84.997431, 45.667762 ], [ -84.996336, 45.669685 ], [ -84.996067, 45.669861 ], [ -84.974237, 45.684178 ], [ -84.970950, 45.686334 ], [ -84.970213, 45.686984 ], [ -84.945650, 45.708621 ], [ -84.943756, 45.710290 ], [ -84.942636, 45.714292 ], [ -84.941073, 45.719879 ], [ -84.940526, 45.721832 ], [ -84.942098, 45.728349 ], [ -84.942125, 45.728460 ], [ -84.942543, 45.728865 ], [ -84.943982, 45.730257 ], [ -84.945958, 45.732169 ], [ -84.947266, 45.733435 ], [ -84.950226, 45.736299 ], [ -84.950840, 45.736893 ], [ -84.951745, 45.737326 ], [ -84.954275, 45.738537 ], [ -84.955394, 45.739072 ], [ -84.958130, 45.740381 ], [ -84.968309, 45.745252 ], [ -84.982328, 45.751960 ], [ -84.982973, 45.752022 ], [ -84.983316, 45.752055 ], [ -84.983829, 45.752104 ], [ -84.983933, 45.752114 ], [ -84.984568, 45.752175 ], [ -84.985318, 45.752247 ], [ -84.996755, 45.753347 ], [ -85.001656, 45.753819 ], [ -85.002914, 45.753940 ], [ -85.011433, 45.757962 ], [ -85.014509, 45.760329 ], [ -85.009173, 45.762463 ], [ -85.007410, 45.763168 ], [ -84.995105, 45.759855 ], [ -84.938312, 45.759892 ], [ -84.937790, 45.759777 ], [ -84.931463, 45.758389 ], [ -84.926802, 45.757366 ], [ -84.925230, 45.757021 ], [ -84.924664, 45.756897 ], [ -84.922478, 45.755842 ], [ -84.920691, 45.754979 ], [ -84.919996, 45.754643 ], [ -84.910398, 45.750010 ], [ -84.866976, 45.752066 ], [ -84.840981, 45.744751 ], [ -84.810953, 45.745993 ], [ -84.810411, 45.746015 ], [ -84.808285, 45.746103 ], [ -84.806642, 45.746171 ], [ -84.805114, 45.746378 ], [ -84.800664, 45.746980 ], [ -84.799558, 45.747130 ], [ -84.792474, 45.750530 ], [ -84.789580, 45.751919 ], [ -84.788893, 45.752248 ], [ -84.788821, 45.752283 ], [ -84.788808, 45.752298 ], [ -84.781995, 45.760345 ], [ -84.781373, 45.761080 ], [ -84.779800, 45.769650 ], [ -84.787228, 45.774892 ], [ -84.792290, 45.778464 ], [ -84.792337, 45.778497 ], [ -84.793153, 45.780463 ], [ -84.780313, 45.787224 ], [ -84.774156, 45.788918 ], [ -84.774014, 45.788957 ], [ -84.772765, 45.789301 ], [ -84.751571, 45.782733 ], [ -84.742000, 45.784134 ], [ -84.734065, 45.788205 ], [ -84.732388, 45.787928 ], [ -84.726192, 45.786905 ], [ -84.718904, 45.777599 ], [ -84.715996, 45.766174 ], [ -84.681967, 45.756197 ], [ -84.679546, 45.749095 ], [ -84.644822, 45.739990 ], [ -84.604712, 45.721668 ], [ -84.573631, 45.710381 ], [ -84.555496, 45.702268 ], [ -84.553311, 45.698566 ], [ -84.539167, 45.690480 ], [ -84.539165, 45.690478 ], [ -84.538998, 45.690383 ], [ -84.461680, 45.652404 ], [ -84.442348, 45.654771 ], [ -84.435415, 45.664106 ], [ -84.427495, 45.669201 ], [ -84.413642, 45.669427 ], [ -84.400283, 45.663345 ], [ -84.376403, 45.655565 ], [ -84.329537, 45.664380 ], [ -84.289685, 45.653296 ], [ -84.270238, 45.644790 ], [ -84.215268, 45.634767 ], [ -84.204218, 45.627116 ], [ -84.196043, 45.621456 ], [ -84.180514, 45.604639 ], [ -84.157121, 45.585305 ], [ -84.139462, 45.573714 ], [ -84.128867, 45.562284 ], [ -84.126532, 45.556616 ], [ -84.126971, 45.542428 ], [ -84.122309, 45.523788 ], [ -84.116687, 45.513050 ], [ -84.109238, 45.505171 ], [ -84.095905, 45.497298 ], [ -84.075792, 45.490537 ], [ -84.056138, 45.489349 ], [ -84.039958, 45.493733 ], [ -84.036286, 45.496245 ], [ -84.028813, 45.497225 ], [ -84.009582, 45.495069 ], [ -83.998350, 45.491158 ], [ -83.978017, 45.494138 ], [ -83.939261, 45.493189 ], [ -83.909472, 45.485784 ], [ -83.881813, 45.467907 ], [ -83.858560, 45.446865 ], [ -83.841543, 45.435287 ], [ -83.806622, 45.419159 ], [ -83.788777, 45.416415 ], [ -83.773171, 45.417302 ], [ -83.755569, 45.411034 ], [ -83.737321, 45.410943 ], [ -83.721815, 45.413304 ], [ -83.697316, 45.396239 ], [ -83.667934, 45.384675 ], [ -83.643790, 45.371710 ], [ -83.599273, 45.352561 ], [ -83.570361, 45.347198 ], [ -83.550268, 45.350832 ], [ -83.546799, 45.352637 ], [ -83.545729, 45.358397 ], [ -83.538306, 45.358167 ], [ -83.520258, 45.347239 ], [ -83.514717, 45.346460 ], [ -83.496704, 45.357536 ], [ -83.488826, 45.355872 ], [ -83.477794, 45.341891 ], [ -83.477728, 45.341827 ], [ -83.468099, 45.332450 ], [ -83.445672, 45.310612 ], [ -83.433040, 45.303688 ], [ -83.425140, 45.296808 ], [ -83.423178, 45.292506 ], [ -83.422486, 45.290989 ], [ -83.422389, 45.290775 ], [ -83.422272, 45.290713 ], [ -83.420510, 45.289787 ], [ -83.401091, 45.279572 ], [ -83.400880, 45.279528 ], [ -83.400753, 45.279502 ], [ -83.400261, 45.279400 ], [ -83.398845, 45.279107 ], [ -83.388274, 45.276916 ], [ -83.385104, 45.274195 ], [ -83.381743, 45.268983 ], [ -83.388034, 45.254976 ], [ -83.412569, 45.245807 ], [ -83.412410, 45.238905 ], [ -83.405914, 45.227157 ], [ -83.387587, 45.207107 ], [ -83.384265, 45.203472 ], [ -83.381647, 45.203357 ], [ -83.368896, 45.182168 ], [ -83.368046, 45.172478 ], [ -83.363678, 45.166469 ], [ -83.359895, 45.163020 ], [ -83.348684, 45.161516 ], [ -83.337822, 45.147120 ], [ -83.316118, 45.141958 ], [ -83.315924, 45.139992 ], [ -83.319315, 45.137684 ], [ -83.318442, 45.128930 ], [ -83.307880, 45.099093 ], [ -83.298275, 45.090483 ], [ -83.290827, 45.069157 ], [ -83.291346, 45.062597 ], [ -83.280272, 45.045962 ], [ -83.277037, 45.044767 ], [ -83.271464, 45.038114 ], [ -83.265896, 45.026844 ], [ -83.271506, 45.023417 ], [ -83.287974, 45.026462 ], [ -83.302153, 45.032315 ], [ -83.340257, 45.041545 ], [ -83.357609, 45.050613 ], [ -83.367470, 45.062268 ], [ -83.399255, 45.070364 ], [ -83.433798, 45.057616 ], [ -83.442052, 45.051056 ], [ -83.453363, 45.035331 ], [ -83.454168, 45.031880 ], [ -83.446342, 45.016655 ], [ -83.435249, 45.011883 ], [ -83.431254, 45.007998 ], [ -83.435822, 45.000012 ], [ -83.438948, 45.000011 ], [ -83.450013, 44.990219 ], [ -83.443718, 44.952247 ], [ -83.438856, 44.940843 ], [ -83.433032, 44.932890 ], [ -83.425311, 44.926741 ], [ -83.404596, 44.918761 ], [ -83.398879, 44.906417 ], [ -83.393960, 44.903056 ], [ -83.352815, 44.886164 ], [ -83.320503, 44.880571 ], [ -83.321093, 44.858494 ], [ -83.321237, 44.853102 ], [ -83.321241, 44.852962 ], [ -83.321089, 44.852723 ], [ -83.318373, 44.848440 ], [ -83.314429, 44.842220 ], [ -83.314330, 44.842131 ], [ -83.312940, 44.840882 ], [ -83.312831, 44.840783 ], [ -83.312478, 44.840466 ], [ -83.308578, 44.836960 ], [ -83.306854, 44.835410 ], [ -83.300648, 44.829831 ], [ -83.299737, 44.823362 ], [ -83.298618, 44.815416 ], [ -83.295530, 44.793486 ], [ -83.295518, 44.793397 ], [ -83.295650, 44.790237 ], [ -83.295696, 44.789112 ], [ -83.296125, 44.778828 ], [ -83.296969, 44.758543 ], [ -83.296971, 44.758495 ], [ -83.298021, 44.755632 ], [ -83.298287, 44.754907 ], [ -83.298237, 44.754465 ], [ -83.297797, 44.750547 ], [ -83.297526, 44.748140 ], [ -83.297420, 44.747203 ], [ -83.297300, 44.746134 ], [ -83.296265, 44.743502 ], [ -83.290944, 44.729974 ], [ -83.290665, 44.729265 ], [ -83.288214, 44.726453 ], [ -83.284724, 44.722450 ], [ -83.284128, 44.721766 ], [ -83.283098, 44.721011 ], [ -83.277213, 44.716700 ], [ -83.274747, 44.714893 ], [ -83.274103, 44.714421 ], [ -83.273393, 44.713901 ], [ -83.274674, 44.704770 ], [ -83.275078, 44.701891 ], [ -83.275281, 44.700441 ], [ -83.275318, 44.700177 ], [ -83.275500, 44.698882 ], [ -83.275543, 44.698574 ], [ -83.275601, 44.698161 ], [ -83.276137, 44.694340 ], [ -83.276836, 44.689354 ], [ -83.277476, 44.687507 ], [ -83.279129, 44.682735 ], [ -83.279288, 44.682278 ], [ -83.285992, 44.662927 ], [ -83.286874, 44.660380 ], [ -83.287211, 44.659409 ], [ -83.287585, 44.658328 ], [ -83.287802, 44.657703 ], [ -83.289442, 44.652968 ], [ -83.295377, 44.645360 ], [ -83.307116, 44.630313 ], [ -83.307504, 44.629816 ], [ -83.309222, 44.624650 ], [ -83.309802, 44.622906 ], [ -83.309869, 44.622703 ], [ -83.314450, 44.608926 ], [ -83.314517, 44.608725 ], [ -83.314534, 44.608512 ], [ -83.315037, 44.602190 ], [ -83.315040, 44.602152 ], [ -83.315277, 44.599178 ], [ -83.315435, 44.597193 ], [ -83.315603, 44.595079 ], [ -83.315503, 44.593514 ], [ -83.314127, 44.572043 ], [ -83.314098, 44.571592 ], [ -83.314013, 44.570266 ], [ -83.313925, 44.568888 ], [ -83.313893, 44.568395 ], [ -83.313813, 44.567148 ], [ -83.313792, 44.566822 ], [ -83.313744, 44.566076 ], [ -83.313649, 44.564588 ], [ -83.313623, 44.564498 ], [ -83.309234, 44.549444 ], [ -83.309117, 44.549043 ], [ -83.308918, 44.548360 ], [ -83.308906, 44.548140 ], [ -83.308471, 44.539902 ], [ -83.309385, 44.537528 ], [ -83.310185, 44.535448 ], [ -83.310376, 44.534952 ], [ -83.311245, 44.532693 ], [ -83.311529, 44.531956 ], [ -83.318104, 44.514871 ], [ -83.318279, 44.514416 ], [ -83.318276, 44.514294 ], [ -83.318216, 44.511734 ], [ -83.317610, 44.486058 ], [ -83.326824, 44.444411 ], [ -83.327171, 44.429234 ], [ -83.324616, 44.415039 ], [ -83.321553, 44.409119 ], [ -83.321648, 44.404502 ], [ -83.333757, 44.372486 ], [ -83.335248, 44.357995 ], [ -83.332533, 44.340464 ], [ -83.336988, 44.332919 ], [ -83.343738, 44.329763 ], [ -83.352115, 44.332366 ], [ -83.364312, 44.332590 ], [ -83.373607, 44.327784 ], [ -83.401822, 44.301831 ], [ -83.414301, 44.294543 ], [ -83.419236, 44.287800 ], [ -83.425762, 44.272487 ], [ -83.429689, 44.269708 ], [ -83.442731, 44.265361 ], [ -83.445805, 44.273378 ], [ -83.447742, 44.273991 ], [ -83.460958, 44.278176 ], [ -83.463049, 44.278838 ], [ -83.479531, 44.280090 ], [ -83.500392, 44.276610 ], [ -83.508839, 44.273711 ], [ -83.524817, 44.261558 ], [ -83.537710, 44.248171 ], [ -83.549096, 44.227282 ], [ -83.552872, 44.210718 ], [ -83.553834, 44.197956 ], [ -83.565225, 44.163517 ], [ -83.565257, 44.163418 ], [ -83.565984, 44.161219 ], [ -83.566366, 44.160066 ], [ -83.567744, 44.155899 ], [ -83.567941, 44.150983 ], [ -83.568200, 44.144542 ], [ -83.568238, 44.143587 ], [ -83.568243, 44.143475 ], [ -83.568803, 44.129513 ], [ -83.568831, 44.128819 ], [ -83.568915, 44.126734 ], [ -83.568509, 44.124343 ], [ -83.567978, 44.121207 ], [ -83.567714, 44.119652 ], [ -83.573071, 44.101298 ], [ -83.588004, 44.086758 ], [ -83.591361, 44.079237 ], [ -83.590437, 44.069569 ], [ -83.584090, 44.056748 ], [ -83.601173, 44.054686 ], [ -83.621078, 44.056186 ], [ -83.650116, 44.052404 ], [ -83.679654, 44.036365 ], [ -83.687892, 44.020709 ], [ -83.680108, 43.994196 ], [ -83.708741, 43.992997 ], [ -83.743806, 43.991529 ], [ -83.746779, 43.988807 ], [ -83.757063, 43.986599 ], [ -83.762830, 43.985361 ], [ -83.763015, 43.985321 ], [ -83.763345, 43.985250 ], [ -83.763774, 43.985158 ], [ -83.779086, 43.985235 ], [ -83.787863, 43.985279 ], [ -83.828080, 43.989003 ], [ -83.828398, 43.989032 ], [ -83.829077, 43.989095 ], [ -83.829102, 43.989085 ], [ -83.829123, 43.989077 ], [ -83.848276, 43.981594 ], [ -83.851496, 43.979403 ], [ -83.851750, 43.979231 ], [ -83.851884, 43.979140 ], [ -83.853582, 43.977984 ], [ -83.854930, 43.977067 ], [ -83.855219, 43.975997 ], [ -83.855516, 43.974899 ], [ -83.855572, 43.974691 ], [ -83.855602, 43.974581 ], [ -83.855653, 43.974391 ], [ -83.856077, 43.972822 ], [ -83.856128, 43.972632 ], [ -83.856371, 43.972414 ], [ -83.858373, 43.970618 ], [ -83.858528, 43.970479 ], [ -83.859114, 43.969953 ], [ -83.859305, 43.969782 ], [ -83.859459, 43.969643 ], [ -83.859615, 43.969504 ], [ -83.859743, 43.969389 ], [ -83.869406, 43.960719 ], [ -83.869614, 43.960682 ], [ -83.877047, 43.959351 ], [ -83.877694, 43.959235 ], [ -83.880011, 43.955428 ], [ -83.880113, 43.955261 ], [ -83.885328, 43.946691 ], [ -83.885526, 43.946197 ], [ -83.885543, 43.946154 ], [ -83.890145, 43.934672 ], [ -83.890912, 43.923314 ], [ -83.907388, 43.918062 ], [ -83.911128, 43.910520 ], [ -83.916815, 43.899050 ], [ -83.917875, 43.856509 ], [ -83.926345, 43.787398 ], [ -83.929375, 43.777091 ], [ -83.945426, 43.759946 ], [ -83.954792, 43.760932 ], [ -83.956021, 43.759286 ], [ -83.954347, 43.750647 ], [ -83.939297, 43.715369 ], [ -83.929462, 43.701269 ], [ -83.909479, 43.672622 ], [ -83.897078, 43.664022 ], [ -83.852076, 43.644922 ], [ -83.814674, 43.643022 ], [ -83.806774, 43.641221 ], [ -83.778919, 43.630056 ], [ -83.770693, 43.628691 ], [ -83.769886, 43.634924 ], [ -83.725793, 43.618691 ], [ -83.703446, 43.597646 ], [ -83.699253, 43.596792 ], [ -83.669795, 43.590790 ], [ -83.666052, 43.591292 ], [ -83.654192, 43.599290 ], [ -83.618602, 43.628891 ], [ -83.595579, 43.650249 ], [ -83.563157, 43.684564 ], [ -83.553707, 43.685432 ], [ -83.549044, 43.693798 ], [ -83.551470, 43.699901 ], [ -83.540187, 43.708746 ], [ -83.524837, 43.716948 ], [ -83.515853, 43.718157 ], [ -83.513461, 43.714607 ], [ -83.506657, 43.710907 ], [ -83.480070, 43.714636 ], [ -83.470053, 43.723418 ], [ -83.467429, 43.728920 ], [ -83.465080, 43.733843 ], [ -83.459628, 43.740931 ], [ -83.440171, 43.761694 ], [ -83.438878, 43.767135 ], [ -83.441591, 43.770175 ], [ -83.446752, 43.771860 ], [ -83.438311, 43.786846 ], [ -83.426068, 43.799915 ], [ -83.416378, 43.801034 ], [ -83.411453, 43.805033 ], [ -83.410663, 43.807730 ], [ -83.412456, 43.817569 ], [ -83.410853, 43.825585 ], [ -83.407647, 43.831998 ], [ -83.390344, 43.839132 ], [ -83.389017, 43.840457 ], [ -83.389424, 43.844229 ], [ -83.358869, 43.857395 ], [ -83.332270, 43.880522 ], [ -83.331788, 43.893901 ], [ -83.333532, 43.898520 ], [ -83.340976, 43.904541 ], [ -83.348007, 43.906388 ], [ -83.348648, 43.909915 ], [ -83.347365, 43.912160 ], [ -83.338067, 43.915687 ], [ -83.318656, 43.917620 ], [ -83.305690, 43.922489 ], [ -83.282310, 43.938031 ], [ -83.268980, 43.956132 ], [ -83.261850, 43.969021 ], [ -83.261530, 43.973525 ], [ -83.227093, 43.981003 ], [ -83.195688, 43.983137 ], [ -83.180618, 43.982109 ], [ -83.145407, 43.989441 ], [ -83.134881, 43.993147 ], [ -83.120659, 44.000950 ], [ -83.107820, 44.003245 ], [ -83.079297, 44.001079 ], [ -83.066026, 44.003366 ], [ -83.058741, 44.006224 ], [ -83.046577, 44.015710 ], [ -83.029868, 44.041175 ], [ -83.024604, 44.045174 ], [ -82.999283, 44.046510 ], [ -82.990728, 44.048846 ], [ -82.967439, 44.066138 ], [ -82.958688, 44.065774 ], [ -82.956658, 44.063306 ], [ -82.947368, 44.062187 ], [ -82.928884, 44.069389 ], [ -82.915976, 44.070503 ], [ -82.889831, 44.050952 ], [ -82.875889, 44.045046 ], [ -82.833103, 44.036851 ], [ -82.793205, 44.023247 ], [ -82.788298, 44.013712 ], [ -82.783198, 44.009366 ], [ -82.765018, 44.006845 ], [ -82.746255, 43.996037 ], [ -82.738992, 43.989506 ], [ -82.728528, 43.972615 ], [ -82.712235, 43.949610 ], [ -82.709839, 43.948226 ], [ -82.693505, 43.917980 ], [ -82.678642, 43.883730 ], [ -82.655450, 43.867883 ], [ -82.643166, 43.852468 ], [ -82.642899, 43.846419 ], [ -82.647467, 43.844490 ], [ -82.647784, 43.842684 ], [ -82.644345, 43.837539 ], [ -82.633641, 43.831224 ], [ -82.617955, 43.768596 ], [ -82.619079, 43.756088 ], [ -82.617213, 43.746788 ], [ -82.612224, 43.739771 ], [ -82.606233, 43.690437 ], [ -82.604830, 43.678884 ], [ -82.605783, 43.669489 ], [ -82.600500, 43.602935 ], [ -82.597911, 43.590016 ], [ -82.593785, 43.581467 ], [ -82.585654, 43.543969 ], [ -82.565691, 43.502904 ], [ -82.565505, 43.497063 ], [ -82.553540, 43.464111 ], [ -82.539517, 43.437539 ], [ -82.538578, 43.431594 ], [ -82.539930, 43.422378 ], [ -82.535627, 43.368062 ], [ -82.536794, 43.348510 ], [ -82.530128, 43.333805 ], [ -82.529416, 43.316243 ], [ -82.532396, 43.305770 ], [ -82.523086, 43.225361 ], [ -82.519123, 43.212737 ], [ -82.508881, 43.196748 ], [ -82.503157, 43.168946 ], [ -82.502990, 43.168137 ], [ -82.501656, 43.161656 ], [ -82.501529, 43.161351 ], [ -82.500061, 43.157827 ], [ -82.495685, 43.147316 ], [ -82.494194, 43.143736 ], [ -82.494072, 43.142864 ], [ -82.494052, 43.142722 ], [ -82.494014, 43.142453 ], [ -82.493977, 43.142186 ], [ -82.493347, 43.137685 ], [ -82.493021, 43.135363 ], [ -82.490979, 43.120782 ], [ -82.490634, 43.118314 ], [ -82.490614, 43.118172 ], [ -82.490494, 43.117759 ], [ -82.486684, 43.104688 ], [ -82.486042, 43.102486 ], [ -82.471053, 43.087581 ], [ -82.457319, 43.061470 ], [ -82.457221, 43.061285 ], [ -82.450724, 43.051229 ], [ -82.443433, 43.039942 ], [ -82.422768, 43.007956 ], [ -82.415937, 43.005555 ], [ -82.447778, 42.937066 ], [ -82.455027, 42.926866 ], [ -82.469912, 42.887459 ], [ -82.483697, 42.733212 ], [ -82.509935, 42.637294 ], [ -82.518782, 42.613888 ], [ -82.523337, 42.607486 ], [ -82.583996, 42.554041 ], [ -82.589779, 42.550678 ], [ -82.607068, 42.548843 ], [ -82.624907, 42.557229 ], [ -82.679059, 42.522210 ], [ -82.686417, 42.518597 ], [ -82.685397, 42.528659 ], [ -82.679522, 42.535520 ], [ -82.670956, 42.537989 ], [ -82.664335, 42.546244 ], [ -82.680758, 42.557909 ], [ -82.681036, 42.574695 ], [ -82.688061, 42.588417 ], [ -82.701152, 42.585991 ], [ -82.711151, 42.590884 ], [ -82.713042, 42.597904 ], [ -82.700818, 42.606687 ], [ -82.683482, 42.609433 ], [ -82.681593, 42.618672 ], [ -82.690124, 42.625033 ], [ -82.689836, 42.627148 ], [ -82.669103, 42.637225 ], [ -82.645715, 42.631145 ], [ -82.630922, 42.642110 ], [ -82.626396, 42.647385 ], [ -82.623043, 42.655951 ], [ -82.623797, 42.665395 ], [ -82.630851, 42.673341 ], [ -82.635262, 42.675552 ], [ -82.659781, 42.678618 ], [ -82.674287, 42.687049 ], [ -82.685500, 42.690036 ], [ -82.700964, 42.689548 ], [ -82.706135, 42.683578 ], [ -82.707841, 42.683510 ], [ -82.726366, 42.682768 ], [ -82.753317, 42.669732 ], [ -82.765583, 42.655725 ], [ -82.780817, 42.652232 ], [ -82.792418, 42.655132 ], [ -82.797318, 42.654032 ], [ -82.813518, 42.640833 ], [ -82.820118, 42.626333 ], [ -82.819017, 42.616333 ], [ -82.811017, 42.610933 ], [ -82.789017, 42.603434 ], [ -82.787573, 42.598300 ], [ -82.788977, 42.592661 ], [ -82.788116, 42.582835 ], [ -82.781514, 42.571634 ], [ -82.782414, 42.564834 ], [ -82.784514, 42.563634 ], [ -82.789114, 42.568434 ], [ -82.796715, 42.571034 ], [ -82.821016, 42.570734 ], [ -82.834216, 42.567849 ], [ -82.845916, 42.560634 ], [ -82.849316, 42.555734 ], [ -82.851016, 42.548935 ], [ -82.859316, 42.541935 ], [ -82.860213, 42.540842 ], [ -82.874416, 42.523535 ], [ -82.882316, 42.501035 ], [ -82.883915, 42.471836 ], [ -82.870572, 42.451235 ], [ -82.870347, 42.450888 ], [ -82.886113, 42.408137 ], [ -82.888413, 42.398237 ], [ -82.894013, 42.389437 ], [ -82.898413, 42.385437 ], [ -82.915114, 42.378137 ], [ -82.919114, 42.374437 ], [ -82.928815, 42.359437 ], [ -82.923970, 42.352068 ], [ -82.959416, 42.339638 ], [ -82.988619, 42.332439 ], [ -83.018320, 42.329739 ], [ -83.064121, 42.317738 ], [ -83.079721, 42.308638 ], [ -83.096521, 42.290138 ], [ -83.128022, 42.238839 ], [ -83.131343, 42.202760 ], [ -83.133923, 42.174740 ], [ -83.124522, 42.137641 ], [ -83.133511, 42.088143 ], [ -83.157624, 42.085542 ], [ -83.168759, 42.073601 ], [ -83.170589, 42.072940 ], [ -83.188598, 42.066431 ], [ -83.189115, 42.061853 ], [ -83.186877, 42.061206 ], [ -83.185526, 42.052243 ], [ -83.188240, 42.031329 ], [ -83.185858, 42.029451 ], [ -83.185822, 42.029367 ], [ -83.181475, 42.019301 ], [ -83.187246, 42.007573 ], [ -83.190535, 42.006172 ], [ -83.208647, 42.005040 ], [ -83.209379, 41.995736 ], [ -83.216835, 41.988620 ], [ -83.216897, 41.988561 ], [ -83.223354, 41.989191 ], [ -83.223369, 41.989185 ], [ -83.224947, 41.988603 ], [ -83.227744, 41.987571 ], [ -83.228410, 41.987325 ], [ -83.228502, 41.987291 ], [ -83.228607, 41.987216 ], [ -83.229290, 41.986725 ], [ -83.248741, 41.972735 ], [ -83.249204, 41.972402 ], [ -83.249828, 41.971386 ], [ -83.255123, 41.962759 ], [ -83.256803, 41.960021 ], [ -83.257009, 41.959686 ], [ -83.257043, 41.958615 ], [ -83.257143, 41.955438 ], [ -83.257199, 41.953670 ], [ -83.257292, 41.950745 ], [ -83.269521, 41.939042 ], [ -83.270491, 41.939337 ], [ -83.287130, 41.944397 ], [ -83.292761, 41.944616 ], [ -83.293015, 41.944626 ], [ -83.295982, 41.944742 ], [ -83.298230, 41.944200 ], [ -83.299467, 41.943902 ], [ -83.302904, 41.943073 ], [ -83.303465, 41.942762 ], [ -83.305639, 41.941557 ], [ -83.315859, 41.935893 ], [ -83.326007, 41.924979 ], [ -83.326024, 41.924961 ], [ -83.326029, 41.924948 ], [ -83.327060, 41.922554 ], [ -83.330498, 41.914565 ], [ -83.332998, 41.908757 ], [ -83.333642, 41.907261 ], [ -83.334173, 41.903247 ], [ -83.334346, 41.901939 ], [ -83.335103, 41.896209 ], [ -83.335132, 41.895992 ], [ -83.335658, 41.892009 ], [ -83.335961, 41.889721 ], [ -83.341557, 41.879956 ], [ -83.359467, 41.867849 ], [ -83.366187, 41.865505 ], [ -83.372198, 41.874122 ] ] ], [ [ [ -88.932558, 46.073601 ], [ -88.943279, 46.077943 ], [ -88.948698, 46.080205 ], [ -88.990807, 46.097298 ], [ -88.990885, 46.097330 ], [ -89.058745, 46.124952 ], [ -89.125136, 46.144531 ], [ -89.161757, 46.151816 ], [ -89.166887, 46.152868 ], [ -89.194508, 46.157942 ], [ -89.201283, 46.159426 ], [ -89.203289, 46.160020 ], [ -89.205657, 46.160408 ], [ -89.218156, 46.162988 ], [ -89.219964, 46.163319 ], [ -89.276489, 46.174047 ], [ -89.276883, 46.174116 ], [ -89.908196, 46.296037 ], [ -89.909910, 46.296402 ], [ -89.929093, 46.300087 ], [ -90.120489, 46.336852 ], [ -90.119691, 46.359755 ], [ -90.119757, 46.359748 ], [ -90.134663, 46.374947 ], [ -90.134656, 46.374979 ], [ -90.166909, 46.439311 ], [ -90.166919, 46.439851 ], [ -90.177860, 46.440548 ], [ -90.204572, 46.478998 ], [ -90.284545, 46.518714 ], [ -90.307716, 46.518392 ], [ -90.313839, 46.516199 ], [ -90.313894, 46.516199 ], [ -90.357676, 46.540271 ], [ -90.374461, 46.539212 ], [ -90.400041, 46.544384 ], [ -90.400429, 46.544384 ], [ -90.414464, 46.557320 ], [ -90.414596, 46.557320 ], [ -90.418136, 46.566094 ], [ -90.417943, 46.566190 ], [ -90.398478, 46.575832 ], [ -90.397350, 46.576391 ], [ -90.397310, 46.576410 ], [ -90.396772, 46.576677 ], [ -90.394936, 46.577586 ], [ -90.371717, 46.589088 ], [ -90.355341, 46.597200 ], [ -90.353284, 46.598219 ], [ -90.348407, 46.600635 ], [ -90.347801, 46.600842 ], [ -90.327626, 46.607744 ], [ -90.327604, 46.607739 ], [ -90.306609, 46.602741 ], [ -90.295460, 46.606998 ], [ -90.284550, 46.611164 ], [ -90.284189, 46.611302 ], [ -90.283150, 46.611698 ], [ -90.279723, 46.613007 ], [ -90.278287, 46.613555 ], [ -90.265294, 46.618516 ], [ -90.265291, 46.618517 ], [ -90.251669, 46.621454 ], [ -90.250176, 46.621776 ], [ -90.237609, 46.624485 ], [ -90.164026, 46.645515 ], [ -90.100695, 46.655132 ], [ -90.045420, 46.668272 ], [ -90.028392, 46.674390 ], [ -89.996034, 46.693225 ], [ -89.985817, 46.703190 ], [ -89.973803, 46.710322 ], [ -89.957101, 46.716929 ], [ -89.918466, 46.740324 ], [ -89.907516, 46.749870 ], [ -89.892355, 46.763088 ], [ -89.888687, 46.765826 ], [ -89.875069, 46.775991 ], [ -89.862544, 46.785341 ], [ -89.851966, 46.793237 ], [ -89.850979, 46.793974 ], [ -89.848652, 46.795711 ], [ -89.846962, 46.796556 ], [ -89.844691, 46.797690 ], [ -89.841453, 46.799308 ], [ -89.831956, 46.804053 ], [ -89.830863, 46.804434 ], [ -89.830093, 46.804703 ], [ -89.828129, 46.805389 ], [ -89.790663, 46.818469 ], [ -89.788353, 46.818861 ], [ -89.787080, 46.819077 ], [ -89.757585, 46.824082 ], [ -89.724471, 46.829701 ], [ -89.720277, 46.830413 ], [ -89.717848, 46.830559 ], [ -89.713354, 46.830829 ], [ -89.710062, 46.831026 ], [ -89.708873, 46.831098 ], [ -89.708303, 46.831132 ], [ -89.708084, 46.831145 ], [ -89.678469, 46.832923 ], [ -89.677771, 46.832965 ], [ -89.676878, 46.833019 ], [ -89.673375, 46.833229 ], [ -89.660625, 46.831056 ], [ -89.659681, 46.830762 ], [ -89.651795, 46.828309 ], [ -89.646854, 46.826771 ], [ -89.643440, 46.825709 ], [ -89.642255, 46.825340 ], [ -89.637309, 46.821384 ], [ -89.634938, 46.819488 ], [ -89.619329, 46.818890 ], [ -89.598527, 46.824338 ], [ -89.578217, 46.829657 ], [ -89.572423, 46.831174 ], [ -89.570326, 46.831723 ], [ -89.569808, 46.831859 ], [ -89.564509, 46.832483 ], [ -89.542408, 46.835086 ], [ -89.540709, 46.835286 ], [ -89.538927, 46.835496 ], [ -89.535683, 46.835878 ], [ -89.534331, 46.836248 ], [ -89.525656, 46.838625 ], [ -89.516895, 46.841025 ], [ -89.515665, 46.841362 ], [ -89.513938, 46.841835 ], [ -89.500227, 46.841638 ], [ -89.499248, 46.841623 ], [ -89.499080, 46.841621 ], [ -89.497760, 46.841086 ], [ -89.494019, 46.839570 ], [ -89.491307, 46.838470 ], [ -89.491252, 46.838448 ], [ -89.491079, 46.838438 ], [ -89.485166, 46.838112 ], [ -89.475333, 46.837569 ], [ -89.471849, 46.837376 ], [ -89.471540, 46.837359 ], [ -89.470915, 46.837398 ], [ -89.470619, 46.837416 ], [ -89.470547, 46.837421 ], [ -89.469651, 46.837477 ], [ -89.469446, 46.837490 ], [ -89.453185, 46.838505 ], [ -89.448454, 46.838800 ], [ -89.448445, 46.838801 ], [ -89.446583, 46.838917 ], [ -89.445969, 46.838955 ], [ -89.445313, 46.838996 ], [ -89.440145, 46.839319 ], [ -89.437047, 46.839512 ], [ -89.434016, 46.840131 ], [ -89.415154, 46.843983 ], [ -89.413413, 46.844524 ], [ -89.401123, 46.848344 ], [ -89.395386, 46.850127 ], [ -89.372032, 46.857386 ], [ -89.370788, 46.857851 ], [ -89.336130, 46.870807 ], [ -89.317396, 46.877811 ], [ -89.304623, 46.882586 ], [ -89.285780, 46.889630 ], [ -89.278612, 46.892310 ], [ -89.249938, 46.903029 ], [ -89.249143, 46.903326 ], [ -89.228362, 46.912751 ], [ -89.227914, 46.912954 ], [ -89.226244, 46.914105 ], [ -89.202811, 46.930253 ], [ -89.201511, 46.931149 ], [ -89.199648, 46.933075 ], [ -89.183730, 46.949529 ], [ -89.168493, 46.965279 ], [ -89.168244, 46.965536 ], [ -89.142595, 46.984859 ], [ -89.142425, 46.984954 ], [ -89.142282, 46.985033 ], [ -89.128698, 46.992599 ], [ -89.128101, 46.992692 ], [ -89.124799, 46.993209 ], [ -89.118339, 46.994220 ], [ -89.118106, 46.994002 ], [ -89.115903, 46.991933 ], [ -89.113158, 46.989356 ], [ -89.106277, 46.986480 ], [ -89.086742, 46.985298 ], [ -89.063103, 46.988522 ], [ -89.058591, 46.990604 ], [ -89.048164, 46.995416 ], [ -89.039490, 46.999419 ], [ -89.038116, 46.999643 ], [ -89.028930, 47.001140 ], [ -89.027648, 46.999839 ], [ -89.022994, 46.995120 ], [ -88.998907, 46.995310 ], [ -88.998417, 46.995314 ], [ -88.992399, 46.996347 ], [ -88.991720, 46.996463 ], [ -88.987197, 46.997239 ], [ -88.982483, 46.998830 ], [ -88.978813, 47.000068 ], [ -88.978433, 47.000196 ], [ -88.972802, 47.002096 ], [ -88.960337, 47.008053 ], [ -88.959409, 47.008496 ], [ -88.957276, 47.010111 ], [ -88.944045, 47.020129 ], [ -88.933329, 47.032200 ], [ -88.925586, 47.040923 ], [ -88.924492, 47.042156 ], [ -88.923458, 47.043872 ], [ -88.914976, 47.057940 ], [ -88.914189, 47.059246 ], [ -88.908288, 47.074396 ], [ -88.903933, 47.085579 ], [ -88.903706, 47.086161 ], [ -88.899857, 47.089969 ], [ -88.890708, 47.099024 ], [ -88.890422, 47.099306 ], [ -88.890122, 47.099603 ], [ -88.889140, 47.100575 ], [ -88.885418, 47.102084 ], [ -88.885361, 47.102107 ], [ -88.872087, 47.107487 ], [ -88.855372, 47.114263 ], [ -88.855126, 47.114290 ], [ -88.854656, 47.114343 ], [ -88.848176, 47.115065 ], [ -88.826028, 47.132558 ], [ -88.825619, 47.132881 ], [ -88.825475, 47.132994 ], [ -88.816684, 47.139938 ], [ -88.816553, 47.140042 ], [ -88.815403, 47.140950 ], [ -88.815355, 47.140987 ], [ -88.814834, 47.141399 ], [ -88.813748, 47.141813 ], [ -88.798779, 47.147511 ], [ -88.789813, 47.150925 ], [ -88.784612, 47.150722 ], [ -88.783821, 47.150691 ], [ -88.779188, 47.150510 ], [ -88.778022, 47.150465 ], [ -88.764351, 47.155762 ], [ -88.750496, 47.167782 ], [ -88.746724, 47.171055 ], [ -88.746650, 47.171118 ], [ -88.729688, 47.185834 ], [ -88.728541, 47.186560 ], [ -88.728327, 47.186695 ], [ -88.712138, 47.196937 ], [ -88.702086, 47.203296 ], [ -88.702029, 47.203333 ], [ -88.700047, 47.204586 ], [ -88.699660, 47.204831 ], [ -88.698919, 47.205220 ], [ -88.698282, 47.205554 ], [ -88.676624, 47.216918 ], [ -88.674917, 47.217814 ], [ -88.673771, 47.218415 ], [ -88.673172, 47.218729 ], [ -88.672395, 47.219137 ], [ -88.666614, 47.221475 ], [ -88.657496, 47.225164 ], [ -88.656359, 47.225624 ], [ -88.648001, 47.226229 ], [ -88.642047, 47.226659 ], [ -88.640323, 47.226784 ], [ -88.633915, 47.228915 ], [ -88.625119, 47.231840 ], [ -88.623579, 47.232352 ], [ -88.623302, 47.232484 ], [ -88.618613, 47.234715 ], [ -88.609867, 47.238877 ], [ -88.609830, 47.238894 ], [ -88.608087, 47.239137 ], [ -88.598622, 47.240454 ], [ -88.585196, 47.242321 ], [ -88.584912, 47.242361 ], [ -88.584652, 47.242447 ], [ -88.573997, 47.245989 ], [ -88.573326, 47.246424 ], [ -88.573301, 47.246441 ], [ -88.571720, 47.247466 ], [ -88.526764, 47.276641 ], [ -88.518091, 47.282269 ], [ -88.515276, 47.284096 ], [ -88.514786, 47.284414 ], [ -88.512421, 47.285948 ], [ -88.504898, 47.290831 ], [ -88.501160, 47.293256 ], [ -88.500780, 47.293503 ], [ -88.498756, 47.295256 ], [ -88.487116, 47.305335 ], [ -88.478951, 47.312405 ], [ -88.477733, 47.313460 ], [ -88.471103, 47.326442 ], [ -88.470484, 47.327653 ], [ -88.465888, 47.332670 ], [ -88.465089, 47.333542 ], [ -88.459262, 47.339903 ], [ -88.458952, 47.340142 ], [ -88.432162, 47.360791 ], [ -88.431753, 47.361106 ], [ -88.431446, 47.361343 ], [ -88.418841, 47.371058 ], [ -88.418673, 47.371188 ], [ -88.400224, 47.379551 ], [ -88.399726, 47.379777 ], [ -88.394239, 47.382264 ], [ -88.391440, 47.383533 ], [ -88.389459, 47.384431 ], [ -88.378917, 47.387513 ], [ -88.360313, 47.392951 ], [ -88.324083, 47.403542 ], [ -88.303447, 47.412204 ], [ -88.301214, 47.413451 ], [ -88.285635, 47.422146 ], [ -88.285195, 47.422392 ], [ -88.284060, 47.422579 ], [ -88.274709, 47.424118 ], [ -88.239440, 47.429923 ], [ -88.239161, 47.429969 ], [ -88.238091, 47.430437 ], [ -88.228645, 47.434568 ], [ -88.227446, 47.435093 ], [ -88.225797, 47.436279 ], [ -88.218424, 47.441585 ], [ -88.216977, 47.445493 ], [ -88.217822, 47.448738 ], [ -88.217662, 47.448778 ], [ -88.213141, 47.449898 ], [ -88.213059, 47.449918 ], [ -88.207853, 47.451208 ], [ -88.207239, 47.451360 ], [ -88.206036, 47.451658 ], [ -88.181820, 47.457657 ], [ -88.181763, 47.457661 ], [ -88.179998, 47.457799 ], [ -88.169383, 47.458627 ], [ -88.167703, 47.458758 ], [ -88.167009, 47.458812 ], [ -88.150760, 47.460078 ], [ -88.150571, 47.460093 ], [ -88.150437, 47.460125 ], [ -88.143573, 47.461759 ], [ -88.140537, 47.462482 ], [ -88.139651, 47.462693 ], [ -88.137698, 47.462918 ], [ -88.129274, 47.463889 ], [ -88.128480, 47.463980 ], [ -88.090299, 47.468380 ], [ -88.089966, 47.468418 ], [ -88.085252, 47.468961 ], [ -88.084850, 47.468906 ], [ -88.083580, 47.468733 ], [ -88.081892, 47.468503 ], [ -88.081277, 47.468419 ], [ -88.080916, 47.468370 ], [ -88.080796, 47.468353 ], [ -88.080271, 47.468282 ], [ -88.079183, 47.468133 ], [ -88.076388, 47.467752 ], [ -88.074681, 47.467880 ], [ -88.073982, 47.467933 ], [ -88.073580, 47.467963 ], [ -88.067043, 47.468454 ], [ -88.049326, 47.469785 ], [ -88.048226, 47.470008 ], [ -88.048077, 47.474973 ], [ -88.047857, 47.475002 ], [ -88.046665, 47.475159 ], [ -88.040291, 47.475999 ], [ -88.040242, 47.476002 ], [ -88.036590, 47.476205 ], [ -88.031130, 47.476510 ], [ -88.031089, 47.476512 ], [ -88.027085, 47.476735 ], [ -88.021555, 47.477044 ], [ -88.017268, 47.477283 ], [ -88.015502, 47.477381 ], [ -88.014516, 47.477436 ], [ -88.010830, 47.477642 ], [ -88.010415, 47.477665 ], [ -88.009704, 47.477704 ], [ -87.982227, 47.479236 ], [ -87.981740, 47.479264 ], [ -87.978934, 47.479420 ], [ -87.978121, 47.479409 ], [ -87.962546, 47.479195 ], [ -87.959166, 47.479148 ], [ -87.958042, 47.479133 ], [ -87.957582, 47.479126 ], [ -87.956690, 47.479114 ], [ -87.955374, 47.479096 ], [ -87.954672, 47.479086 ], [ -87.954458, 47.479083 ], [ -87.951912, 47.479048 ], [ -87.948287, 47.478999 ], [ -87.929672, 47.478743 ], [ -87.929269, 47.478737 ], [ -87.928726, 47.478703 ], [ -87.928137, 47.478666 ], [ -87.927548, 47.478629 ], [ -87.922224, 47.478293 ], [ -87.921103, 47.478222 ], [ -87.920321, 47.478173 ], [ -87.920259, 47.478169 ], [ -87.902416, 47.477045 ], [ -87.898036, 47.474872 ], [ -87.816958, 47.471998 ], [ -87.801184, 47.473301 ], [ -87.756739, 47.460717 ], [ -87.730804, 47.449112 ], [ -87.715942, 47.439816 ], [ -87.710471, 47.406200 ], [ -87.712421, 47.401400 ], [ -87.721274, 47.401032 ], [ -87.742417, 47.405823 ], [ -87.751380, 47.405066 ], [ -87.759057, 47.403013 ], [ -87.765019, 47.398652 ], [ -87.800294, 47.392148 ], [ -87.815371, 47.384790 ], [ -87.827115, 47.386160 ], [ -87.834822, 47.390478 ], [ -87.848252, 47.394864 ], [ -87.856700, 47.395387 ], [ -87.882245, 47.395588 ], [ -87.941613, 47.390073 ], [ -87.957058, 47.387260 ], [ -87.965063, 47.374430 ], [ -87.965598, 47.368645 ], [ -87.962567, 47.362543 ], [ -87.954796, 47.356809 ], [ -87.947397, 47.355461 ], [ -87.938787, 47.346777 ], [ -87.938250, 47.342299 ], [ -87.943360, 47.335899 ], [ -87.946352, 47.334254 ], [ -87.958386, 47.334435 ], [ -87.968604, 47.332582 ], [ -87.989133, 47.322633 ], [ -88.016478, 47.306275 ], [ -88.054849, 47.298240 ], [ -88.060090, 47.295796 ], [ -88.071476, 47.286768 ], [ -88.096851, 47.261351 ], [ -88.108833, 47.259131 ], [ -88.117456, 47.255174 ], [ -88.131943, 47.239554 ], [ -88.163059, 47.216278 ], [ -88.194218, 47.209242 ], [ -88.204849, 47.210498 ], [ -88.212361, 47.209423 ], [ -88.227552, 47.199938 ], [ -88.228987, 47.199042 ], [ -88.229132, 47.198862 ], [ -88.235041, 47.191532 ], [ -88.236892, 47.189236 ], [ -88.237024, 47.188862 ], [ -88.240295, 47.179609 ], [ -88.242006, 47.174767 ], [ -88.242109, 47.172184 ], [ -88.242142, 47.171358 ], [ -88.242157, 47.170988 ], [ -88.242561, 47.160902 ], [ -88.242660, 47.158426 ], [ -88.242062, 47.157059 ], [ -88.239487, 47.151176 ], [ -88.239470, 47.151137 ], [ -88.238408, 47.150423 ], [ -88.236961, 47.149449 ], [ -88.236721, 47.149287 ], [ -88.236566, 47.149297 ], [ -88.234295, 47.149446 ], [ -88.231797, 47.149609 ], [ -88.232164, 47.145975 ], [ -88.239895, 47.139436 ], [ -88.247628, 47.135981 ], [ -88.249571, 47.136231 ], [ -88.249838, 47.137106 ], [ -88.250645, 47.139752 ], [ -88.250785, 47.140209 ], [ -88.250814, 47.140231 ], [ -88.253834, 47.142524 ], [ -88.254205, 47.142807 ], [ -88.254267, 47.142853 ], [ -88.255303, 47.143640 ], [ -88.255676, 47.143715 ], [ -88.262537, 47.145087 ], [ -88.262972, 47.145174 ], [ -88.263292, 47.145115 ], [ -88.272017, 47.143511 ], [ -88.281652, 47.138239 ], [ -88.281701, 47.138212 ], [ -88.281743, 47.138163 ], [ -88.288994, 47.129743 ], [ -88.289040, 47.129689 ], [ -88.289058, 47.129581 ], [ -88.289543, 47.126604 ], [ -88.288650, 47.125947 ], [ -88.288481, 47.125823 ], [ -88.287870, 47.125374 ], [ -88.287792, 47.124822 ], [ -88.287260, 47.121041 ], [ -88.287173, 47.120420 ], [ -88.287313, 47.119721 ], [ -88.287822, 47.117174 ], [ -88.287901, 47.116779 ], [ -88.287981, 47.116376 ], [ -88.288309, 47.114738 ], [ -88.288347, 47.114547 ], [ -88.288690, 47.113954 ], [ -88.288930, 47.113539 ], [ -88.289005, 47.113410 ], [ -88.289534, 47.112494 ], [ -88.290598, 47.110655 ], [ -88.290708, 47.110465 ], [ -88.291217, 47.109585 ], [ -88.291688, 47.108770 ], [ -88.294082, 47.104630 ], [ -88.296645, 47.100199 ], [ -88.297547, 47.098639 ], [ -88.297625, 47.098505 ], [ -88.297772, 47.098443 ], [ -88.313033, 47.091964 ], [ -88.315051, 47.091108 ], [ -88.333076, 47.083455 ], [ -88.337406, 47.081617 ], [ -88.340052, 47.080494 ], [ -88.344658, 47.079718 ], [ -88.346501, 47.079407 ], [ -88.346709, 47.079372 ], [ -88.347197, 47.078921 ], [ -88.349952, 47.076377 ], [ -88.353191, 47.069063 ], [ -88.353952, 47.058047 ], [ -88.354011, 47.057835 ], [ -88.356884, 47.047524 ], [ -88.357556, 47.045113 ], [ -88.357661, 47.044739 ], [ -88.358201, 47.042798 ], [ -88.358550, 47.041546 ], [ -88.358873, 47.040389 ], [ -88.359054, 47.039739 ], [ -88.359139, 47.039536 ], [ -88.367624, 47.019213 ], [ -88.368062, 47.018733 ], [ -88.368358, 47.018408 ], [ -88.373966, 47.012262 ], [ -88.374238, 47.012081 ], [ -88.379268, 47.008736 ], [ -88.384442, 47.005296 ], [ -88.385338, 47.004700 ], [ -88.385507, 47.004588 ], [ -88.385606, 47.004522 ], [ -88.386153, 47.003909 ], [ -88.386538, 47.003477 ], [ -88.387612, 47.002275 ], [ -88.388564, 47.001208 ], [ -88.389698, 46.999937 ], [ -88.404498, 46.983353 ], [ -88.405352, 46.982663 ], [ -88.406229, 46.981955 ], [ -88.410157, 46.978782 ], [ -88.410890, 46.978190 ], [ -88.411145, 46.977984 ], [ -88.416160, 46.977106 ], [ -88.416364, 46.977071 ], [ -88.443901, 46.972251 ], [ -88.448570, 46.946769 ], [ -88.450823, 46.939038 ], [ -88.452129, 46.934557 ], [ -88.452354, 46.933787 ], [ -88.454333, 46.926996 ], [ -88.454353, 46.926928 ], [ -88.454781, 46.925458 ], [ -88.455117, 46.924305 ], [ -88.455404, 46.923321 ], [ -88.457776, 46.918999 ], [ -88.474217, 46.889034 ], [ -88.475859, 46.886042 ], [ -88.476098, 46.881957 ], [ -88.476918, 46.867946 ], [ -88.477620, 46.855937 ], [ -88.477681, 46.854902 ], [ -88.477845, 46.852091 ], [ -88.477935, 46.850560 ], [ -88.483748, 46.831727 ], [ -88.482579, 46.826197 ], [ -88.473342, 46.806226 ], [ -88.462349, 46.786711 ], [ -88.438427, 46.786714 ], [ -88.433835, 46.793502 ], [ -88.415225, 46.811715 ], [ -88.381410, 46.838466 ], [ -88.382204, 46.844477 ], [ -88.381947, 46.846110 ], [ -88.381727, 46.847868 ], [ -88.380849, 46.850064 ], [ -88.380190, 46.852481 ], [ -88.378432, 46.854897 ], [ -88.375577, 46.857313 ], [ -88.372501, 46.858192 ], [ -88.368767, 46.857313 ], [ -88.362502, 46.856432 ], [ -88.361936, 46.856352 ], [ -88.360868, 46.856202 ], [ -88.360260, 46.856258 ], [ -88.352145, 46.857009 ], [ -88.351940, 46.857028 ], [ -88.351730, 46.857193 ], [ -88.347430, 46.860571 ], [ -88.334647, 46.870613 ], [ -88.333168, 46.871775 ], [ -88.333092, 46.871835 ], [ -88.310714, 46.889415 ], [ -88.310290, 46.889748 ], [ -88.308786, 46.890622 ], [ -88.307978, 46.891092 ], [ -88.307261, 46.891509 ], [ -88.305045, 46.892797 ], [ -88.299515, 46.896012 ], [ -88.296476, 46.897778 ], [ -88.289298, 46.901950 ], [ -88.288767, 46.902259 ], [ -88.286473, 46.903592 ], [ -88.282087, 46.906142 ], [ -88.282066, 46.906154 ], [ -88.281244, 46.906632 ], [ -88.276915, 46.908589 ], [ -88.274730, 46.909577 ], [ -88.273929, 46.909939 ], [ -88.272478, 46.910595 ], [ -88.261593, 46.915516 ], [ -88.258072, 46.918409 ], [ -88.250141, 46.924926 ], [ -88.246953, 46.927545 ], [ -88.246872, 46.927611 ], [ -88.244437, 46.929612 ], [ -88.243175, 46.930090 ], [ -88.241858, 46.930589 ], [ -88.241340, 46.930785 ], [ -88.240926, 46.930942 ], [ -88.240846, 46.930972 ], [ -88.238324, 46.931927 ], [ -88.235800, 46.932883 ], [ -88.235702, 46.932920 ], [ -88.233334, 46.933817 ], [ -88.232969, 46.933955 ], [ -88.194361, 46.948578 ], [ -88.176758, 46.955245 ], [ -88.167373, 46.958800 ], [ -88.167227, 46.958855 ], [ -88.164704, 46.960178 ], [ -88.164059, 46.960516 ], [ -88.162856, 46.961146 ], [ -88.162833, 46.961158 ], [ -88.162437, 46.961366 ], [ -88.160571, 46.962345 ], [ -88.160086, 46.962599 ], [ -88.156273, 46.964598 ], [ -88.155430, 46.965040 ], [ -88.155374, 46.965069 ], [ -88.145561, 46.966409 ], [ -88.143688, 46.966665 ], [ -88.143614, 46.966635 ], [ -88.142893, 46.966337 ], [ -88.142807, 46.966302 ], [ -88.142528, 46.966186 ], [ -88.142339, 46.966108 ], [ -88.142057, 46.965992 ], [ -88.141750, 46.965865 ], [ -88.132957, 46.962237 ], [ -88.132876, 46.962204 ], [ -88.135210, 46.959689 ], [ -88.150114, 46.943630 ], [ -88.156359, 46.939518 ], [ -88.167989, 46.931861 ], [ -88.170905, 46.929940 ], [ -88.171317, 46.929669 ], [ -88.175568, 46.926870 ], [ -88.176156, 46.926483 ], [ -88.177921, 46.925320 ], [ -88.185964, 46.920025 ], [ -88.187522, 46.918999 ], [ -88.182950, 46.913650 ], [ -88.181908, 46.912431 ], [ -88.175197, 46.904580 ], [ -88.161913, 46.904941 ], [ -88.160704, 46.905110 ], [ -88.130288, 46.909369 ], [ -88.126927, 46.909840 ], [ -88.126378, 46.909998 ], [ -88.124935, 46.910413 ], [ -88.124573, 46.910517 ], [ -88.122862, 46.911009 ], [ -88.106377, 46.915751 ], [ -88.105195, 46.916091 ], [ -88.102816, 46.916775 ], [ -88.102362, 46.916906 ], [ -88.101457, 46.917166 ], [ -88.101315, 46.917207 ], [ -88.100133, 46.917405 ], [ -88.099227, 46.917556 ], [ -88.098900, 46.917611 ], [ -88.098858, 46.917618 ], [ -88.097609, 46.917827 ], [ -88.083937, 46.920112 ], [ -88.083770, 46.920140 ], [ -88.082263, 46.920392 ], [ -88.081870, 46.920458 ], [ -88.080087, 46.920255 ], [ -88.074736, 46.919647 ], [ -88.065192, 46.918563 ], [ -88.063614, 46.918097 ], [ -88.044551, 46.912473 ], [ -88.032911, 46.909038 ], [ -88.032408, 46.908890 ], [ -88.030053, 46.908730 ], [ -88.029373, 46.908684 ], [ -88.004298, 46.906982 ], [ -88.003693, 46.906948 ], [ -87.986290, 46.905967 ], [ -87.986113, 46.905957 ], [ -87.983340, 46.906242 ], [ -87.982258, 46.906353 ], [ -87.975490, 46.907048 ], [ -87.958255, 46.908819 ], [ -87.957115, 46.908936 ], [ -87.956000, 46.909051 ], [ -87.955745, 46.909054 ], [ -87.954687, 46.909066 ], [ -87.915943, 46.909508 ], [ -87.914489, 46.909525 ], [ -87.911474, 46.909559 ], [ -87.910624, 46.909569 ], [ -87.908791, 46.909590 ], [ -87.900695, 46.909682 ], [ -87.900339, 46.909686 ], [ -87.900070, 46.909508 ], [ -87.887920, 46.901451 ], [ -87.875051, 46.892918 ], [ -87.874538, 46.892578 ], [ -87.873893, 46.892381 ], [ -87.847037, 46.884163 ], [ -87.846195, 46.883905 ], [ -87.844637, 46.884049 ], [ -87.841228, 46.884363 ], [ -87.838889, 46.885252 ], [ -87.830204, 46.888556 ], [ -87.827162, 46.889713 ], [ -87.816794, 46.891154 ], [ -87.814120, 46.888808 ], [ -87.813228, 46.888025 ], [ -87.813226, 46.888023 ], [ -87.793194, 46.880822 ], [ -87.788186, 46.880373 ], [ -87.783216, 46.879927 ], [ -87.782461, 46.879859 ], [ -87.781969, 46.879580 ], [ -87.777749, 46.877190 ], [ -87.777527, 46.877064 ], [ -87.777156, 46.876854 ], [ -87.776930, 46.876726 ], [ -87.776672, 46.874999 ], [ -87.776567, 46.874293 ], [ -87.776313, 46.872591 ], [ -87.776346, 46.872562 ], [ -87.778289, 46.870834 ], [ -87.778752, 46.870422 ], [ -87.776804, 46.866823 ], [ -87.766243, 46.861446 ], [ -87.765989, 46.861316 ], [ -87.765835, 46.861303 ], [ -87.755937, 46.860459 ], [ -87.755868, 46.860453 ], [ -87.755748, 46.860518 ], [ -87.754448, 46.861219 ], [ -87.748498, 46.864428 ], [ -87.746646, 46.865427 ], [ -87.745665, 46.865396 ], [ -87.744893, 46.865371 ], [ -87.744403, 46.865355 ], [ -87.741857, 46.865274 ], [ -87.741014, 46.865247 ], [ -87.740917, 46.865007 ], [ -87.740846, 46.864834 ], [ -87.734870, 46.850120 ], [ -87.735039, 46.849856 ], [ -87.735106, 46.849751 ], [ -87.736732, 46.847216 ], [ -87.736539, 46.846393 ], [ -87.736469, 46.846096 ], [ -87.734325, 46.836955 ], [ -87.731522, 46.831196 ], [ -87.727358, 46.827656 ], [ -87.725880, 46.827426 ], [ -87.725649, 46.827390 ], [ -87.713737, 46.825534 ], [ -87.694590, 46.827182 ], [ -87.685787, 46.832477 ], [ -87.685698, 46.832530 ], [ -87.685735, 46.832639 ], [ -87.687930, 46.839159 ], [ -87.687875, 46.839343 ], [ -87.687280, 46.841351 ], [ -87.687164, 46.841742 ], [ -87.686720, 46.841794 ], [ -87.681561, 46.842392 ], [ -87.680668, 46.842496 ], [ -87.679573, 46.841507 ], [ -87.675046, 46.837420 ], [ -87.674541, 46.836964 ], [ -87.673469, 46.829598 ], [ -87.673433, 46.829350 ], [ -87.673177, 46.827593 ], [ -87.673274, 46.827300 ], [ -87.673973, 46.825179 ], [ -87.674345, 46.824050 ], [ -87.672015, 46.820415 ], [ -87.662261, 46.815157 ], [ -87.651510, 46.812411 ], [ -87.646539, 46.813094 ], [ -87.642789, 46.813609 ], [ -87.641887, 46.813733 ], [ -87.640839, 46.813534 ], [ -87.633300, 46.812107 ], [ -87.628786, 46.806096 ], [ -87.628284, 46.805428 ], [ -87.628081, 46.805157 ], [ -87.627356, 46.804553 ], [ -87.627124, 46.804360 ], [ -87.619747, 46.798210 ], [ -87.617852, 46.796631 ], [ -87.616800, 46.795753 ], [ -87.613654, 46.793131 ], [ -87.613586, 46.793074 ], [ -87.610582, 46.790571 ], [ -87.609008, 46.789258 ], [ -87.607988, 46.788408 ], [ -87.595307, 46.782950 ], [ -87.595276, 46.782745 ], [ -87.594384, 46.776863 ], [ -87.593148, 46.768713 ], [ -87.592227, 46.762635 ], [ -87.592220, 46.762594 ], [ -87.591973, 46.760965 ], [ -87.591907, 46.760525 ], [ -87.591455, 46.757544 ], [ -87.591362, 46.756932 ], [ -87.591082, 46.755087 ], [ -87.590865, 46.753653 ], [ -87.590767, 46.753009 ], [ -87.590502, 46.752267 ], [ -87.589671, 46.749937 ], [ -87.587755, 46.744568 ], [ -87.587626, 46.744206 ], [ -87.584568, 46.735637 ], [ -87.583570, 46.732839 ], [ -87.582745, 46.730527 ], [ -87.581674, 46.729399 ], [ -87.573203, 46.720471 ], [ -87.567343, 46.716714 ], [ -87.557436, 46.710364 ], [ -87.553048, 46.707551 ], [ -87.551989, 46.706872 ], [ -87.549097, 46.705019 ], [ -87.543920, 46.701700 ], [ -87.534504, 46.695664 ], [ -87.533529, 46.695040 ], [ -87.532638, 46.694469 ], [ -87.523308, 46.688488 ], [ -87.523361, 46.687977 ], [ -87.523744, 46.684300 ], [ -87.524419, 46.677830 ], [ -87.524444, 46.677586 ], [ -87.519176, 46.670186 ], [ -87.506657, 46.652599 ], [ -87.503238, 46.647796 ], [ -87.503025, 46.647497 ], [ -87.501511, 46.646762 ], [ -87.493405, 46.642826 ], [ -87.492860, 46.642561 ], [ -87.492409, 46.642435 ], [ -87.469023, 46.635918 ], [ -87.467965, 46.635623 ], [ -87.466537, 46.631555 ], [ -87.467563, 46.626228 ], [ -87.464108, 46.614811 ], [ -87.451368, 46.605923 ], [ -87.442612, 46.602776 ], [ -87.411167, 46.601669 ], [ -87.403275, 46.595215 ], [ -87.383961, 46.593070 ], [ -87.381649, 46.580059 ], [ -87.392974, 46.572523 ], [ -87.392828, 46.570852 ], [ -87.382206, 46.553681 ], [ -87.375613, 46.547140 ], [ -87.390300, 46.542577 ], [ -87.393985, 46.533183 ], [ -87.389290, 46.524472 ], [ -87.381349, 46.517292 ], [ -87.366767, 46.507303 ], [ -87.352448, 46.501324 ], [ -87.351071, 46.500749 ], [ -87.312109, 46.492310 ], [ -87.310755, 46.492017 ], [ -87.309402, 46.491919 ], [ -87.259116, 46.488283 ], [ -87.258732, 46.488255 ], [ -87.258145, 46.488282 ], [ -87.205147, 46.490702 ], [ -87.202404, 46.490827 ], [ -87.200147, 46.491382 ], [ -87.175105, 46.497538 ], [ -87.175065, 46.497548 ], [ -87.145946, 46.495387 ], [ -87.127440, 46.494014 ], [ -87.116618, 46.495163 ], [ -87.107559, 46.496124 ], [ -87.098760, 46.503609 ], [ -87.077279, 46.515339 ], [ -87.046022, 46.519956 ], [ -87.029892, 46.525599 ], [ -87.017136, 46.533550 ], [ -87.008724, 46.532723 ], [ -86.976958, 46.526581 ], [ -86.964534, 46.516549 ], [ -86.962842, 46.509646 ], [ -86.946980, 46.484567 ], [ -86.946218, 46.479059 ], [ -86.949526, 46.476315 ], [ -86.947077, 46.472064 ], [ -86.927725, 46.464566 ], [ -86.903742, 46.466138 ], [ -86.889094, 46.458499 ], [ -86.883976, 46.450976 ], [ -86.883919, 46.441514 ], [ -86.875151, 46.437280 ], [ -86.850111, 46.434114 ], [ -86.837448, 46.434186 ], [ -86.816026, 46.437892 ], [ -86.810967, 46.449663 ], [ -86.808817, 46.460611 ], [ -86.803557, 46.466669 ], [ -86.787905, 46.477729 ], [ -86.768516, 46.479072 ], [ -86.750157, 46.479109 ], [ -86.735929, 46.475231 ], [ -86.731096, 46.471760 ], [ -86.730829, 46.468057 ], [ -86.710573, 46.444908 ], [ -86.703230, 46.439378 ], [ -86.698139, 46.438624 ], [ -86.686412, 46.454965 ], [ -86.688816, 46.463152 ], [ -86.686468, 46.471655 ], [ -86.683819, 46.498079 ], [ -86.696001, 46.503160 ], [ -86.701929, 46.511571 ], [ -86.709325, 46.543914 ], [ -86.695645, 46.555026 ], [ -86.678182, 46.561039 ], [ -86.675764, 46.557061 ], [ -86.670927, 46.556489 ], [ -86.656479, 46.558453 ], [ -86.652865, 46.560555 ], [ -86.627380, 46.533710 ], [ -86.629086, 46.518144 ], [ -86.632109, 46.508865 ], [ -86.634530, 46.504523 ], [ -86.641088, 46.500438 ], [ -86.645528, 46.492039 ], [ -86.646393, 46.485776 ], [ -86.636671, 46.478298 ], [ -86.627441, 46.477540 ], [ -86.620603, 46.483873 ], [ -86.618061, 46.489452 ], [ -86.612173, 46.493295 ], [ -86.609393, 46.492976 ], [ -86.606932, 46.478531 ], [ -86.609039, 46.470239 ], [ -86.586168, 46.463324 ], [ -86.557731, 46.487434 ], [ -86.524959, 46.505381 ], [ -86.495054, 46.524874 ], [ -86.484003, 46.535965 ], [ -86.481956, 46.542709 ], [ -86.469306, 46.551422 ], [ -86.459930, 46.551928 ], [ -86.444390, 46.548137 ], [ -86.437167, 46.548960 ], [ -86.390409, 46.563194 ], [ -86.349890, 46.578035 ], [ -86.188024, 46.654008 ], [ -86.161681, 46.669475 ], [ -86.138295, 46.672935 ], [ -86.119862, 46.657256 ], [ -86.112126, 46.655044 ], [ -86.099843, 46.654615 ], [ -86.074219, 46.657799 ], [ -86.036969, 46.667627 ], [ -85.995044, 46.673676 ], [ -85.953670, 46.676869 ], [ -85.924047, 46.684733 ], [ -85.877908, 46.690914 ], [ -85.864549, 46.690182 ], [ -85.857755, 46.689810 ], [ -85.856620, 46.689748 ], [ -85.841057, 46.688896 ], [ -85.840211, 46.688753 ], [ -85.815747, 46.684610 ], [ -85.796641, 46.681374 ], [ -85.794923, 46.681083 ], [ -85.792506, 46.680880 ], [ -85.751345, 46.677430 ], [ -85.750606, 46.677368 ], [ -85.742834, 46.677322 ], [ -85.739929, 46.677305 ], [ -85.738624, 46.677298 ], [ -85.714415, 46.677156 ], [ -85.700945, 46.678114 ], [ -85.674011, 46.680030 ], [ -85.668753, 46.680404 ], [ -85.663673, 46.680227 ], [ -85.647387, 46.679658 ], [ -85.624573, 46.678862 ], [ -85.617470, 46.678054 ], [ -85.595806, 46.675590 ], [ -85.594158, 46.675402 ], [ -85.593558, 46.675334 ], [ -85.587741, 46.674672 ], [ -85.587345, 46.674627 ], [ -85.584989, 46.674608 ], [ -85.558762, 46.674395 ], [ -85.547593, 46.674304 ], [ -85.542517, 46.674263 ], [ -85.509510, 46.675786 ], [ -85.482978, 46.680283 ], [ -85.482096, 46.680432 ], [ -85.369805, 46.713754 ], [ -85.362572, 46.716548 ], [ -85.347047, 46.722546 ], [ -85.296395, 46.742114 ], [ -85.289846, 46.744644 ], [ -85.257999, 46.753078 ], [ -85.256860, 46.753380 ], [ -85.256031, 46.753481 ], [ -85.237873, 46.755703 ], [ -85.173042, 46.763634 ], [ -85.063556, 46.757856 ], [ -85.036286, 46.760435 ], [ -85.009240, 46.769224 ], [ -84.989497, 46.772403 ], [ -84.964652, 46.772845 ], [ -84.954009, 46.771362 ], [ -84.951580, 46.769488 ], [ -84.987539, 46.745483 ], [ -85.007616, 46.728339 ], [ -85.020159, 46.712463 ], [ -85.027513, 46.697451 ], [ -85.030078, 46.684769 ], [ -85.028291, 46.675125 ], [ -85.035504, 46.625021 ], [ -85.037056, 46.600995 ], [ -85.035476, 46.581547 ], [ -85.031507, 46.568703 ], [ -85.029594, 46.554419 ], [ -85.027374, 46.553756 ], [ -85.025491, 46.546397 ], [ -85.027083, 46.543038 ], [ -85.045534, 46.537694 ], [ -85.052954, 46.532827 ], [ -85.056133, 46.526520 ], [ -85.054943, 46.514750 ], [ -85.049847, 46.503963 ], [ -85.033766, 46.487670 ], [ -85.025598, 46.483028 ], [ -85.015211, 46.479712 ], [ -84.969464, 46.476290 ], [ -84.955307, 46.480269 ], [ -84.947269, 46.487399 ], [ -84.937145, 46.489252 ], [ -84.934432, 46.480315 ], [ -84.921931, 46.469962 ], [ -84.915184, 46.467515 ], [ -84.893423, 46.465406 ], [ -84.875070, 46.466781 ], [ -84.861448, 46.469930 ], [ -84.849767, 46.460245 ], [ -84.843907, 46.448661 ], [ -84.829491, 46.444071 ], [ -84.800101, 46.446219 ], [ -84.769151, 46.453523 ], [ -84.723338, 46.468266 ], [ -84.689672, 46.483923 ], [ -84.678423, 46.487694 ], [ -84.653880, 46.482250 ], [ -84.631020, 46.484868 ], [ -84.616489, 46.471870 ], [ -84.607945, 46.456747 ], [ -84.584167, 46.439410 ], [ -84.573522, 46.427895 ], [ -84.551496, 46.418522 ], [ -84.503719, 46.439190 ], [ -84.493401, 46.440313 ], [ -84.479513, 46.432573 ], [ -84.471848, 46.434289 ], [ -84.462597, 46.440940 ], [ -84.455527, 46.453897 ], [ -84.455256, 46.462785 ], [ -84.463322, 46.467435 ], [ -84.445149, 46.489016 ], [ -84.420274, 46.501077 ], [ -84.394725, 46.499242 ], [ -84.375040, 46.508669 ], [ -84.325371, 46.500021 ], [ -84.264266, 46.495055 ], [ -84.226131, 46.533920 ], [ -84.193729, 46.539920 ], [ -84.139426, 46.532219 ], [ -84.128925, 46.530119 ], [ -84.117925, 46.517619 ], [ -84.111225, 46.504119 ], [ -84.125026, 46.470143 ], [ -84.146172, 46.418520 ], [ -84.138906, 46.372221 ], [ -84.115563, 46.268225 ], [ -84.108089, 46.241238 ], [ -84.118175, 46.233968 ], [ -84.125024, 46.232885 ], [ -84.134652, 46.232140 ], [ -84.145950, 46.224995 ], [ -84.147150, 46.224184 ], [ -84.149220, 46.223808 ], [ -84.150725, 46.223808 ], [ -84.151666, 46.224184 ], [ -84.152042, 46.224937 ], [ -84.152230, 46.226254 ], [ -84.152499, 46.227875 ], [ -84.159485, 46.233233 ], [ -84.182732, 46.235450 ], [ -84.219494, 46.231992 ], [ -84.233117, 46.224037 ], [ -84.249164, 46.206461 ], [ -84.245233, 46.192571 ], [ -84.247687, 46.179890 ], [ -84.251424, 46.175888 ], [ -84.221001, 46.163062 ], [ -84.196669, 46.166150 ], [ -84.177298, 46.183993 ], [ -84.171640, 46.181731 ], [ -84.125022, 46.180209 ], [ -84.114941, 46.174114 ], [ -84.113259, 46.168860 ], [ -84.100126, 46.150770 ], [ -84.095818, 46.147733 ], [ -84.089309, 46.146432 ], [ -84.060383, 46.146138 ], [ -84.026536, 46.131648 ], [ -84.031036, 46.123186 ], [ -84.038696, 46.125620 ], [ -84.051900, 46.119810 ], [ -84.061329, 46.113482 ], [ -84.069147, 46.103978 ], [ -84.072398, 46.096690 ], [ -84.071741, 46.092441 ], [ -84.066257, 46.087438 ], [ -84.051712, 46.079189 ], [ -84.027861, 46.054784 ], [ -84.006082, 46.044586 ], [ -83.989526, 46.032823 ], [ -83.963808, 46.027833 ], [ -83.951410, 46.029042 ], [ -83.943933, 46.031465 ], [ -83.939012, 46.029226 ], [ -83.935470, 46.020385 ], [ -83.931175, 46.017871 ], [ -83.908583, 46.011471 ], [ -83.900535, 45.998918 ], [ -83.873147, 45.993426 ], [ -83.868233, 45.995075 ], [ -83.845399, 46.025679 ], [ -83.830146, 46.022324 ], [ -83.818202, 46.002425 ], [ -83.794055, 45.995801 ], [ -83.776436, 46.004202 ], [ -83.765277, 46.018363 ], [ -83.765233, 46.031935 ], [ -83.773785, 46.051471 ], [ -83.796555, 46.056688 ], [ -83.812520, 46.073469 ], [ -83.824036, 46.103638 ], [ -83.815826, 46.108529 ], [ -83.812410, 46.108598 ], [ -83.792867, 46.101971 ], [ -83.779996, 46.093515 ], [ -83.771821, 46.090999 ], [ -83.755991, 46.092159 ], [ -83.728165, 46.090957 ], [ -83.723300, 46.093810 ], [ -83.719791, 46.101031 ], [ -83.703861, 46.103366 ], [ -83.661161, 46.100258 ], [ -83.634980, 46.103953 ], [ -83.625554, 46.102212 ], [ -83.615343, 46.095976 ], [ -83.598612, 46.090085 ], [ -83.581315, 46.089613 ], [ -83.576090, 46.083513 ], [ -83.572640, 46.074922 ], [ -83.572574, 46.069895 ], [ -83.565351, 46.061898 ], [ -83.554059, 46.058882 ], [ -83.547202, 46.047868 ], [ -83.543366, 46.037196 ], [ -83.540845, 46.021247 ], [ -83.532913, 46.011328 ], [ -83.494840, 45.999541 ], [ -83.488348, 45.999543 ], [ -83.480639, 45.996164 ], [ -83.473946, 45.988558 ], [ -83.473221, 45.984422 ], [ -83.481765, 45.971873 ], [ -83.488809, 45.968740 ], [ -83.510623, 45.929324 ], [ -83.517242, 45.923614 ], [ -83.526347, 45.918636 ], [ -83.561838, 45.912562 ], [ -83.583052, 45.915919 ], [ -83.632214, 45.932287 ], [ -83.657660, 45.945463 ], [ -83.687695, 45.935389 ], [ -83.719433, 45.934078 ], [ -83.732986, 45.937641 ], [ -83.742778, 45.938002 ], [ -83.766233, 45.935221 ], [ -83.768854, 45.932069 ], [ -83.786110, 45.933375 ], [ -83.801040, 45.937582 ], [ -83.803332, 45.943362 ], [ -83.808147, 45.945693 ], [ -83.822810, 45.943985 ], [ -83.827566, 45.941236 ], [ -83.835505, 45.941843 ], [ -83.840869, 45.952726 ], [ -83.846437, 45.953181 ], [ -83.864859, 45.959465 ], [ -83.879616, 45.966196 ], [ -83.881055, 45.968185 ], [ -83.910838, 45.965613 ], [ -83.921257, 45.958075 ], [ -83.952183, 45.965498 ], [ -83.985141, 45.967133 ], [ -83.996471, 45.961461 ], [ -84.017565, 45.959046 ], [ -84.080071, 45.970822 ], [ -84.090391, 45.967256 ], [ -84.105370, 45.972948 ], [ -84.107204, 45.977161 ], [ -84.111174, 45.978675 ], [ -84.114284, 45.978322 ], [ -84.140461, 45.975348 ], [ -84.140816, 45.975308 ], [ -84.169368, 45.966919 ], [ -84.172250, 45.966072 ], [ -84.174763, 45.967414 ], [ -84.175244, 45.967671 ], [ -84.178060, 45.969175 ], [ -84.203135, 45.968516 ], [ -84.213885, 45.968233 ], [ -84.218951, 45.968100 ], [ -84.238174, 45.967595 ], [ -84.253993, 45.956727 ], [ -84.254952, 45.956068 ], [ -84.261300, 45.956083 ], [ -84.261858, 45.956084 ], [ -84.266673, 45.956096 ], [ -84.281663, 45.956132 ], [ -84.317422, 45.956217 ], [ -84.319565, 45.956222 ], [ -84.320017, 45.956223 ], [ -84.320494, 45.956224 ], [ -84.324647, 45.956234 ], [ -84.325115, 45.956235 ], [ -84.325787, 45.956237 ], [ -84.326413, 45.956238 ], [ -84.327177, 45.956240 ], [ -84.330021, 45.956247 ], [ -84.330346, 45.956043 ], [ -84.331572, 45.955274 ], [ -84.345451, 45.946569 ], [ -84.353259, 45.941671 ], [ -84.353272, 45.941663 ], [ -84.353714, 45.941478 ], [ -84.357525, 45.939881 ], [ -84.376429, 45.931962 ], [ -84.376431, 45.931963 ], [ -84.387383, 45.937497 ], [ -84.391464, 45.939560 ], [ -84.398007, 45.942866 ], [ -84.398323, 45.943026 ], [ -84.398540, 45.943136 ], [ -84.399134, 45.943436 ], [ -84.399460, 45.943600 ], [ -84.399582, 45.943662 ], [ -84.411212, 45.949539 ], [ -84.428239, 45.958144 ], [ -84.428689, 45.958371 ], [ -84.436454, 45.971722 ], [ -84.436574, 45.971930 ], [ -84.437633, 45.973750 ], [ -84.443086, 45.977825 ], [ -84.443138, 45.977863 ], [ -84.443140, 45.977862 ], [ -84.443336, 45.977775 ], [ -84.459956, 45.970343 ], [ -84.463128, 45.968925 ], [ -84.473694, 45.974321 ], [ -84.478576, 45.976814 ], [ -84.480436, 45.977764 ], [ -84.480800, 45.978385 ], [ -84.482563, 45.981391 ], [ -84.483062, 45.982242 ], [ -84.482506, 45.985109 ], [ -84.482442, 45.985441 ], [ -84.482773, 45.986035 ], [ -84.484009, 45.988250 ], [ -84.485625, 45.988453 ], [ -84.488536, 45.988820 ], [ -84.507201, 45.991169 ], [ -84.514123, 45.987242 ], [ -84.514071, 45.971292 ], [ -84.525052, 45.968578 ], [ -84.532392, 45.969448 ], [ -84.534422, 45.972762 ], [ -84.534648, 45.978132 ], [ -84.530444, 45.991385 ], [ -84.533426, 46.005720 ], [ -84.540995, 46.019501 ], [ -84.544405, 46.022860 ], [ -84.563891, 46.032459 ], [ -84.581081, 46.031041 ], [ -84.586592, 46.026584 ], [ -84.609063, 46.026418 ], [ -84.647609, 46.049704 ], [ -84.656567, 46.052654 ], [ -84.666710, 46.050486 ], [ -84.675835, 46.046009 ], [ -84.687322, 46.034880 ], [ -84.692735, 46.027019 ], [ -84.692700, 46.016963 ], [ -84.686269, 45.979144 ], [ -84.684368, 45.977499 ], [ -84.685254, 45.973454 ], [ -84.687712, 45.971260 ], [ -84.703948, 45.970901 ], [ -84.723039, 45.967279 ], [ -84.730179, 45.961198 ], [ -84.738849, 45.945792 ], [ -84.739370, 45.941816 ], [ -84.733041, 45.932837 ], [ -84.718955, 45.927449 ], [ -84.713614, 45.920366 ], [ -84.713251, 45.916047 ], [ -84.734002, 45.907026 ], [ -84.730252, 45.897267 ], [ -84.729482, 45.895263 ], [ -84.721277, 45.873911 ], [ -84.721276, 45.873908 ], [ -84.715501, 45.865962 ], [ -84.715481, 45.865934 ], [ -84.715365, 45.865830 ], [ -84.709727, 45.860766 ], [ -84.702122, 45.853935 ], [ -84.701594, 45.853461 ], [ -84.701183, 45.853092 ], [ -84.702256, 45.850557 ], [ -84.702295, 45.850464 ], [ -84.704647, 45.849425 ], [ -84.705036, 45.849253 ], [ -84.705923, 45.848861 ], [ -84.705978, 45.848837 ], [ -84.706383, 45.848658 ], [ -84.707676, 45.848609 ], [ -84.709261, 45.848548 ], [ -84.720609, 45.848116 ], [ -84.720836, 45.848107 ], [ -84.721011, 45.847972 ], [ -84.721468, 45.847620 ], [ -84.722764, 45.846621 ], [ -84.723005, 45.845845 ], [ -84.723552, 45.844080 ], [ -84.725734, 45.837045 ], [ -84.726921, 45.836964 ], [ -84.746985, 45.835597 ], [ -84.747033, 45.835621 ], [ -84.751507, 45.837878 ], [ -84.754672, 45.839475 ], [ -84.758333, 45.841322 ], [ -84.773761, 45.849105 ], [ -84.775400, 45.849932 ], [ -84.792763, 45.858691 ], [ -84.820557, 45.868293 ], [ -84.828996, 45.871209 ], [ -84.831396, 45.872038 ], [ -84.831947, 45.872776 ], [ -84.834213, 45.875810 ], [ -84.834236, 45.875841 ], [ -84.835147, 45.877060 ], [ -84.838282, 45.881258 ], [ -84.838427, 45.881452 ], [ -84.838472, 45.881512 ], [ -84.838228, 45.883685 ], [ -84.837841, 45.887123 ], [ -84.837717, 45.888226 ], [ -84.837624, 45.889054 ], [ -84.837635, 45.889075 ], [ -84.839639, 45.893042 ], [ -84.840666, 45.895074 ], [ -84.842147, 45.898005 ], [ -84.842243, 45.898194 ], [ -84.843087, 45.898346 ], [ -84.844615, 45.898620 ], [ -84.846035, 45.898875 ], [ -84.850592, 45.899694 ], [ -84.852916, 45.900111 ], [ -84.853303, 45.900296 ], [ -84.855982, 45.901574 ], [ -84.859025, 45.903026 ], [ -84.860544, 45.903751 ], [ -84.861494, 45.904204 ], [ -84.867851, 45.907237 ], [ -84.870355, 45.908432 ], [ -84.873254, 45.909815 ], [ -84.873273, 45.909832 ], [ -84.877253, 45.913480 ], [ -84.878969, 45.915053 ], [ -84.879507, 45.915546 ], [ -84.879835, 45.915847 ], [ -84.902572, 45.923557 ], [ -84.902913, 45.923673 ], [ -84.917288, 45.930576 ], [ -84.917484, 45.930670 ], [ -84.936565, 45.955217 ], [ -84.936953, 45.955716 ], [ -84.937134, 45.955949 ], [ -84.971232, 45.984208 ], [ -84.973556, 45.986134 ], [ -84.974668, 45.986874 ], [ -84.974714, 45.986905 ], [ -84.992511, 45.998751 ], [ -85.003597, 46.006130 ], [ -85.010208, 46.009084 ], [ -85.010941, 46.009412 ], [ -85.013990, 46.010774 ], [ -85.020951, 46.012845 ], [ -85.047028, 46.020603 ], [ -85.047974, 46.020885 ], [ -85.048972, 46.021182 ], [ -85.054297, 46.022766 ], [ -85.055581, 46.023148 ], [ -85.081934, 46.027295 ], [ -85.088345, 46.028304 ], [ -85.088818, 46.028378 ], [ -85.102862, 46.032477 ], [ -85.102899, 46.032488 ], [ -85.105148, 46.033598 ], [ -85.106684, 46.034356 ], [ -85.113601, 46.037769 ], [ -85.124796, 46.043294 ], [ -85.125243, 46.043515 ], [ -85.127046, 46.044404 ], [ -85.127202, 46.044481 ], [ -85.130433, 46.046076 ], [ -85.133704, 46.047184 ], [ -85.137650, 46.048522 ], [ -85.139572, 46.049173 ], [ -85.140835, 46.049601 ], [ -85.142456, 46.049764 ], [ -85.145160, 46.050035 ], [ -85.147103, 46.050230 ], [ -85.151738, 46.050696 ], [ -85.151825, 46.050705 ], [ -85.152027, 46.050725 ], [ -85.190630, 46.047622 ], [ -85.194724, 46.045992 ], [ -85.195201, 46.045802 ], [ -85.197523, 46.044878 ], [ -85.210834, 46.053301 ], [ -85.214657, 46.055719 ], [ -85.217705, 46.057648 ], [ -85.220289, 46.059283 ], [ -85.221206, 46.059864 ], [ -85.222416, 46.060629 ], [ -85.222511, 46.060689 ], [ -85.222959, 46.060741 ], [ -85.225052, 46.060984 ], [ -85.248414, 46.063694 ], [ -85.255375, 46.064502 ], [ -85.266385, 46.065779 ], [ -85.268308, 46.066365 ], [ -85.278345, 46.069426 ], [ -85.287693, 46.072276 ], [ -85.287936, 46.072398 ], [ -85.290046, 46.073456 ], [ -85.295321, 46.076103 ], [ -85.304238, 46.080576 ], [ -85.310613, 46.083773 ], [ -85.316264, 46.086608 ], [ -85.335466, 46.092459 ], [ -85.335911, 46.092595 ], [ -85.336280, 46.092586 ], [ -85.356100, 46.092089 ], [ -85.356214, 46.092086 ], [ -85.356339, 46.092022 ], [ -85.366622, 46.086778 ], [ -85.367158, 46.086606 ], [ -85.381263, 46.082086 ], [ -85.381394, 46.082044 ], [ -85.382312, 46.083035 ], [ -85.382781, 46.083540 ], [ -85.382927, 46.083698 ], [ -85.390047, 46.091381 ], [ -85.393832, 46.095465 ], [ -85.404194, 46.098859 ], [ -85.409463, 46.100585 ], [ -85.412064, 46.101437 ], [ -85.426916, 46.101964 ], [ -85.429210, 46.101021 ], [ -85.429533, 46.100888 ], [ -85.432064, 46.099848 ], [ -85.437352, 46.097675 ], [ -85.437768, 46.097504 ], [ -85.441570, 46.095942 ], [ -85.441879, 46.095815 ], [ -85.441932, 46.095793 ], [ -85.441934, 46.095783 ], [ -85.442112, 46.094867 ], [ -85.442293, 46.093941 ], [ -85.442255, 46.093916 ], [ -85.440908, 46.093053 ], [ -85.440191, 46.092593 ], [ -85.445835, 46.086426 ], [ -85.445976, 46.086272 ], [ -85.446990, 46.085164 ], [ -85.453150, 46.087219 ], [ -85.466828, 46.091783 ], [ -85.468899, 46.092474 ], [ -85.476097, 46.094876 ], [ -85.480315, 46.096283 ], [ -85.480603, 46.096379 ], [ -85.480720, 46.096382 ], [ -85.486316, 46.096543 ], [ -85.499422, 46.096920 ], [ -85.500100, 46.096940 ], [ -85.500240, 46.096915 ], [ -85.512696, 46.094727 ], [ -85.521424, 46.091314 ], [ -85.521570, 46.091257 ], [ -85.521636, 46.091217 ], [ -85.528403, 46.087121 ], [ -85.528947, 46.086791 ], [ -85.529058, 46.086724 ], [ -85.533341, 46.084131 ], [ -85.539479, 46.080416 ], [ -85.540858, 46.079581 ], [ -85.542974, 46.077926 ], [ -85.545950, 46.075598 ], [ -85.561097, 46.063751 ], [ -85.563567, 46.061820 ], [ -85.603785, 46.030363 ], [ -85.615661, 46.011680 ], [ -85.617577, 46.008665 ], [ -85.617709, 46.008458 ], [ -85.625118, 46.002515 ], [ -85.628293, 45.999968 ], [ -85.628998, 45.999403 ], [ -85.629330, 45.999136 ], [ -85.646279, 45.985541 ], [ -85.646359, 45.985477 ], [ -85.647430, 45.984619 ], [ -85.647554, 45.984519 ], [ -85.648581, 45.983695 ], [ -85.648942, 45.983103 ], [ -85.650434, 45.980656 ], [ -85.650942, 45.979824 ], [ -85.654686, 45.973686 ], [ -85.654738, 45.973648 ], [ -85.663966, 45.967013 ], [ -85.664609, 45.966880 ], [ -85.688149, 45.962025 ], [ -85.697203, 45.960158 ], [ -85.697609, 45.960237 ], [ -85.701627, 45.961017 ], [ -85.704237, 45.961524 ], [ -85.704951, 45.961662 ], [ -85.706548, 45.961973 ], [ -85.716228, 45.963852 ], [ -85.724246, 45.965409 ], [ -85.725153, 45.965398 ], [ -85.731776, 45.965317 ], [ -85.743530, 45.965174 ], [ -85.743618, 45.965173 ], [ -85.760165, 45.968914 ], [ -85.770938, 45.971349 ], [ -85.774055, 45.972337 ], [ -85.790279, 45.977480 ], [ -85.790639, 45.977594 ], [ -85.791841, 45.977745 ], [ -85.809200, 45.979931 ], [ -85.810442, 45.980087 ], [ -85.811054, 45.980032 ], [ -85.817066, 45.979491 ], [ -85.817558, 45.979447 ], [ -85.818006, 45.979276 ], [ -85.820721, 45.978239 ], [ -85.825819, 45.976292 ], [ -85.826034, 45.976021 ], [ -85.826278, 45.975714 ], [ -85.829780, 45.971300 ], [ -85.832261, 45.968172 ], [ -85.832603, 45.967742 ], [ -85.834504, 45.967258 ], [ -85.835217, 45.967077 ], [ -85.835456, 45.967016 ], [ -85.838133, 45.966334 ], [ -85.838366, 45.966275 ], [ -85.839025, 45.966107 ], [ -85.842404, 45.965247 ], [ -85.843016, 45.965342 ], [ -85.860190, 45.968016 ], [ -85.861157, 45.968167 ], [ -85.865402, 45.968257 ], [ -85.882442, 45.968620 ], [ -85.893196, 45.967253 ], [ -85.909100, 45.959074 ], [ -85.912370, 45.956487 ], [ -85.912604, 45.956302 ], [ -85.922737, 45.948287 ], [ -85.926213, 45.938093 ], [ -85.926017, 45.932104 ], [ -85.917238, 45.927782 ], [ -85.910264, 45.922112 ], [ -85.913769, 45.919439 ], [ -85.920581, 45.920994 ], [ -85.954063, 45.936629 ], [ -85.998868, 45.950968 ], [ -86.050956, 45.962205 ], [ -86.072067, 45.965313 ], [ -86.094753, 45.966704 ], [ -86.123567, 45.964748 ], [ -86.145714, 45.957372 ], [ -86.150173, 45.954494 ], [ -86.159415, 45.953765 ], [ -86.196618, 45.963185 ], [ -86.208255, 45.962978 ], [ -86.220546, 45.958883 ], [ -86.229060, 45.948570 ], [ -86.233613, 45.945802 ], [ -86.248008, 45.944849 ], [ -86.254768, 45.948640 ], [ -86.278007, 45.942057 ], [ -86.315981, 45.915247 ], [ -86.324232, 45.906080 ], [ -86.332625, 45.851813 ], [ -86.349134, 45.834160 ], [ -86.355062, 45.805355 ], [ -86.351658, 45.798132 ], [ -86.363808, 45.790057 ], [ -86.369918, 45.789254 ], [ -86.395809, 45.789740 ], [ -86.401656, 45.795412 ], [ -86.415971, 45.793793 ], [ -86.424828, 45.789747 ], [ -86.428423, 45.785587 ], [ -86.428946, 45.782524 ], [ -86.427183, 45.779050 ], [ -86.428294, 45.775620 ], [ -86.431921, 45.767756 ], [ -86.435493, 45.764485 ], [ -86.435530, 45.764452 ], [ -86.439661, 45.760669 ], [ -86.440329, 45.760508 ], [ -86.442335, 45.760026 ], [ -86.455534, 45.756850 ], [ -86.459866, 45.758042 ], [ -86.466039, 45.759741 ], [ -86.479050, 45.757416 ], [ -86.486028, 45.746608 ], [ -86.496251, 45.749255 ], [ -86.504216, 45.754230 ], [ -86.514570, 45.752337 ], [ -86.518281, 45.747688 ], [ -86.523197, 45.736498 ], [ -86.525166, 45.720797 ], [ -86.533280, 45.710849 ], [ -86.537258, 45.708361 ], [ -86.541430, 45.708110 ], [ -86.570627, 45.716412 ], [ -86.580936, 45.711920 ], [ -86.585847, 45.704922 ], [ -86.584771, 45.682007 ], [ -86.587528, 45.666456 ], [ -86.593613, 45.665625 ], [ -86.611306, 45.669733 ], [ -86.620430, 45.667098 ], [ -86.625132, 45.663819 ], [ -86.627938, 45.659293 ], [ -86.616972, 45.620581 ], [ -86.616893, 45.606796 ], [ -86.623870, 45.613262 ], [ -86.633224, 45.618249 ], [ -86.648439, 45.615992 ], [ -86.666127, 45.621689 ], [ -86.687208, 45.634253 ], [ -86.688772, 45.639969 ], [ -86.695275, 45.648175 ], [ -86.708038, 45.649202 ], [ -86.717828, 45.668106 ], [ -86.718191, 45.677320 ], [ -86.715781, 45.683949 ], [ -86.705184, 45.690901 ], [ -86.689102, 45.687862 ], [ -86.676184, 45.691862 ], [ -86.665677, 45.702217 ], [ -86.665511, 45.709030 ], [ -86.669263, 45.710860 ], [ -86.671480, 45.720530 ], [ -86.662762, 45.728964 ], [ -86.647319, 45.732618 ], [ -86.633138, 45.747654 ], [ -86.634902, 45.763536 ], [ -86.631018, 45.782019 ], [ -86.617336, 45.783538 ], [ -86.612137, 45.779356 ], [ -86.597661, 45.775385 ], [ -86.583391, 45.778242 ], [ -86.576869, 45.788502 ], [ -86.581071, 45.791802 ], [ -86.581759, 45.794797 ], [ -86.576858, 45.801473 ], [ -86.571172, 45.805452 ], [ -86.563392, 45.804469 ], [ -86.557215, 45.808172 ], [ -86.555547, 45.813499 ], [ -86.559044, 45.822323 ], [ -86.555186, 45.831696 ], [ -86.549723, 45.836039 ], [ -86.545602, 45.836495 ], [ -86.538831, 45.840083 ], [ -86.529208, 45.853043 ], [ -86.528224, 45.856974 ], [ -86.529573, 45.874974 ], [ -86.532989, 45.882665 ], [ -86.541464, 45.890234 ], [ -86.553608, 45.896476 ], [ -86.567719, 45.900500 ], [ -86.583304, 45.898784 ], [ -86.593184, 45.885110 ], [ -86.603293, 45.876626 ], [ -86.613536, 45.875982 ], [ -86.625736, 45.868295 ], [ -86.633168, 45.860068 ], [ -86.632478, 45.843309 ], [ -86.645998, 45.833888 ], [ -86.721113, 45.845431 ], [ -86.728520, 45.848759 ], [ -86.742466, 45.864719 ], [ -86.749638, 45.867796 ], [ -86.758449, 45.867274 ], [ -86.782080, 45.860195 ], [ -86.784177, 45.854641 ], [ -86.782259, 45.829950 ], [ -86.777225, 45.827183 ], [ -86.774612, 45.821696 ], [ -86.773279, 45.811385 ], [ -86.785722, 45.794517 ], [ -86.801476, 45.780027 ], [ -86.821523, 45.770356 ], [ -86.823743, 45.765486 ], [ -86.820868, 45.760776 ], [ -86.821814, 45.757164 ], [ -86.838658, 45.741831 ], [ -86.841818, 45.729051 ], [ -86.838746, 45.722307 ], [ -86.870392, 45.710087 ], [ -86.876904, 45.711891 ], [ -86.895342, 45.711464 ], [ -86.904089, 45.709546 ], [ -86.921060, 45.697868 ], [ -86.944158, 45.695833 ], [ -86.964275, 45.672761 ], [ -86.966885, 45.675001 ], [ -86.967315, 45.684923 ], [ -86.969765, 45.691895 ], [ -86.981349, 45.696463 ], [ -86.984588, 45.705812 ], [ -86.982413, 45.719873 ], [ -86.977655, 45.728768 ], [ -86.975224, 45.753130 ], [ -86.981341, 45.766160 ], [ -86.981624, 45.792221 ], [ -86.988438, 45.810621 ], [ -87.005080, 45.831718 ], [ -87.006095, 45.832244 ], [ -87.006225, 45.832312 ], [ -87.018902, 45.838886 ], [ -87.031435, 45.837238 ], [ -87.039842, 45.834245 ], [ -87.050104, 45.823844 ], [ -87.052043, 45.821879 ], [ -87.057439, 45.812483 ], [ -87.057863, 45.809170 ], [ -87.057882, 45.809021 ], [ -87.058207, 45.806483 ], [ -87.058277, 45.805940 ], [ -87.058489, 45.804285 ], [ -87.058844, 45.801510 ], [ -87.058682, 45.796447 ], [ -87.058628, 45.794772 ], [ -87.058413, 45.788071 ], [ -87.058127, 45.779152 ], [ -87.058601, 45.778126 ], [ -87.063975, 45.766510 ], [ -87.064302, 45.758828 ], [ -87.062406, 45.753296 ], [ -87.055550, 45.751535 ], [ -87.052908, 45.747983 ], [ -87.057444, 45.736822 ], [ -87.061721, 45.732821 ], [ -87.070442, 45.718779 ], [ -87.059953, 45.708893 ], [ -87.059533, 45.708497 ], [ -87.061339, 45.708122 ], [ -87.073932, 45.705508 ], [ -87.074813, 45.705325 ], [ -87.074873, 45.705312 ], [ -87.093365, 45.701473 ], [ -87.095455, 45.701039 ], [ -87.099401, 45.698614 ], [ -87.099411, 45.698514 ], [ -87.099725, 45.695231 ], [ -87.100265, 45.694808 ], [ -87.111638, 45.685905 ], [ -87.112524, 45.685696 ], [ -87.128570, 45.681909 ], [ -87.129412, 45.681710 ], [ -87.146713, 45.673662 ], [ -87.150330, 45.671980 ], [ -87.161593, 45.666741 ], [ -87.172241, 45.661788 ], [ -87.173493, 45.660490 ], [ -87.191496, 45.641827 ], [ -87.196852, 45.636275 ], [ -87.211220, 45.616468 ], [ -87.215616, 45.610408 ], [ -87.218989, 45.605760 ], [ -87.223647, 45.599338 ], [ -87.232472, 45.590870 ], [ -87.234612, 45.588817 ], [ -87.250122, 45.569059 ], [ -87.260709, 45.555573 ], [ -87.261979, 45.553954 ], [ -87.263488, 45.552032 ], [ -87.263763, 45.551482 ], [ -87.264446, 45.550118 ], [ -87.280709, 45.517624 ], [ -87.288726, 45.501606 ], [ -87.289443, 45.500530 ], [ -87.306122, 45.475513 ], [ -87.317416, 45.466712 ], [ -87.319703, 45.464929 ], [ -87.330262, 45.451011 ], [ -87.333147, 45.447208 ], [ -87.333407, 45.446056 ], [ -87.334033, 45.443273 ], [ -87.334249, 45.442315 ], [ -87.333309, 45.437269 ], [ -87.333240, 45.436897 ], [ -87.331107, 45.433673 ], [ -87.329958, 45.431937 ], [ -87.328640, 45.431331 ], [ -87.327367, 45.430745 ], [ -87.326855, 45.430510 ], [ -87.325834, 45.430040 ], [ -87.326069, 45.429459 ], [ -87.327749, 45.425307 ], [ -87.328248, 45.424716 ], [ -87.329505, 45.423229 ], [ -87.330882, 45.421598 ], [ -87.336152, 45.415360 ], [ -87.338083, 45.414360 ], [ -87.350852, 45.407743 ], [ -87.351306, 45.407328 ], [ -87.359512, 45.399829 ], [ -87.360078, 45.398512 ], [ -87.360529, 45.397464 ], [ -87.364368, 45.388532 ], [ -87.371282, 45.383738 ], [ -87.387851, 45.372251 ], [ -87.389181, 45.371329 ], [ -87.389478, 45.371123 ], [ -87.389849, 45.370866 ], [ -87.391446, 45.369759 ], [ -87.392500, 45.369028 ], [ -87.394520, 45.363702 ], [ -87.399973, 45.349322 ], [ -87.409987, 45.338920 ], [ -87.427379, 45.320854 ], [ -87.431684, 45.316383 ], [ -87.436128, 45.307705 ], [ -87.437257, 45.305500 ], [ -87.437507, 45.303670 ], [ -87.438908, 45.293405 ], [ -87.455519, 45.280736 ], [ -87.456414, 45.280053 ], [ -87.464794, 45.273662 ], [ -87.465201, 45.273351 ], [ -87.496869, 45.240364 ], [ -87.503302, 45.233662 ], [ -87.504186, 45.232742 ], [ -87.512336, 45.224252 ], [ -87.530499, 45.208056 ], [ -87.535346, 45.203734 ], [ -87.548964, 45.191591 ], [ -87.552468, 45.189767 ], [ -87.556327, 45.187759 ], [ -87.563417, 45.184070 ], [ -87.582324, 45.169039 ], [ -87.585651, 45.166394 ], [ -87.587822, 45.163591 ], [ -87.596556, 45.152316 ], [ -87.600796, 45.146842 ], [ -87.607812, 45.134833 ], [ -87.607958, 45.134583 ], [ -87.609280, 45.132320 ], [ -87.612019, 45.123377 ], [ -87.611814, 45.122406 ], [ -87.611500, 45.120915 ], [ -87.611497, 45.120901 ], [ -87.611216, 45.119568 ], [ -87.610073, 45.114141 ], [ -87.608951, 45.112886 ], [ -87.606757, 45.110433 ], [ -87.605193, 45.108684 ], [ -87.604464, 45.107868 ], [ -87.602542, 45.105719 ], [ -87.602217, 45.105356 ], [ -87.602179, 45.105314 ], [ -87.601981, 45.105092 ], [ -87.601649, 45.104721 ], [ -87.601086, 45.104092 ], [ -87.600120, 45.103011 ], [ -87.598689, 45.102052 ], [ -87.597665, 45.101365 ], [ -87.592318, 45.097779 ], [ -87.590270, 45.096406 ], [ -87.589396, 45.096490 ], [ -87.581969, 45.097206 ], [ -87.590208, 45.095264 ], [ -87.659952, 45.107512 ], [ -87.731389, 45.170989 ], [ -87.735282, 45.176565 ], [ -87.741732, 45.198201 ], [ -87.739492, 45.202126 ], [ -87.731710, 45.206792 ], [ -87.711722, 45.243481 ], [ -87.707779, 45.258343 ], [ -87.709137, 45.260341 ], [ -87.648126, 45.339396 ], [ -87.647729, 45.350721 ], [ -87.657349, 45.368752 ], [ -87.675017, 45.382454 ], [ -87.685934, 45.388711 ], [ -87.693956, 45.389893 ], [ -87.718891, 45.377462 ], [ -87.751452, 45.351755 ], [ -87.771384, 45.351210 ], [ -87.790324, 45.353444 ], [ -87.832612, 45.352249 ], [ -87.835303, 45.350980 ], [ -87.838141, 45.345101 ], [ -87.850133, 45.340435 ], [ -87.885170, 45.351736 ], [ -87.888052, 45.354697 ], [ -87.860432, 45.423504 ], [ -87.820348, 45.460284 ], [ -87.812976, 45.464159 ], [ -87.806347, 45.472262 ], [ -87.798960, 45.485147 ], [ -87.792769, 45.499967 ], [ -87.788798, 45.565947 ], [ -87.792016, 45.616756 ], [ -87.795880, 45.618846 ], [ -87.824102, 45.647138 ], [ -87.823672, 45.659817 ], [ -87.781623, 45.673280 ], [ -87.780808, 45.680349 ], [ -87.807144, 45.708014 ], [ -87.828827, 45.722760 ], [ -87.868111, 45.749477 ], [ -87.991447, 45.795393 ], [ -88.039729, 45.789626 ], [ -88.050634, 45.780972 ], [ -88.058256, 45.780719 ], [ -88.072091, 45.780261 ], [ -88.094047, 45.785658 ], [ -88.130434, 45.810020 ], [ -88.136110, 45.819029 ], [ -88.133640, 45.823128 ], [ -88.114267, 45.837891 ], [ -88.106622, 45.841072 ], [ -88.088825, 45.855860 ], [ -88.073134, 45.871952 ], [ -88.073944, 45.875593 ], [ -88.102603, 45.909888 ], [ -88.118516, 45.918562 ], [ -88.139372, 45.929932 ], [ -88.175532, 45.944897 ], [ -88.202247, 45.949584 ], [ -88.211158, 45.944531 ], [ -88.239672, 45.948982 ], [ -88.244452, 45.952142 ], [ -88.250133, 45.963147 ], [ -88.295559, 45.951459 ], [ -88.376447, 45.989458 ], [ -88.423437, 45.981930 ], [ -88.489608, 45.991381 ], [ -88.497417, 45.995149 ], [ -88.500133, 46.000457 ], [ -88.507188, 46.018300 ], [ -88.532414, 46.021212 ], [ -88.613063, 45.990627 ], [ -88.616405, 45.987700 ], [ -88.637500, 45.984960 ], [ -88.666056, 45.988191 ], [ -88.670939, 45.999957 ], [ -88.670115, 45.999957 ], [ -88.674606, 46.010567 ], [ -88.679132, 46.013538 ], [ -88.683198, 46.014563 ], [ -88.730675, 46.026535 ], [ -88.739994, 46.027308 ], [ -88.769712, 46.018968 ], [ -88.815629, 46.022320 ], [ -88.840584, 46.031112 ], [ -88.848464, 46.038858 ], [ -88.850270, 46.040274 ], [ -88.932558, 46.073601 ] ] ] ] } }\n,\n{ \"type\": \"Feature\", \"properties\": { \"GEO_ID\": \"0400000US29\", \"STATE\": \"29\", \"NAME\": \"Missouri\", \"LSAD\": \"\", \"CENSUSAREA\": 68741.522000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -89.545006, 36.336809 ], [ -89.560439, 36.337746 ], [ -89.581636, 36.342357 ], [ -89.605668, 36.342234 ], [ -89.610689, 36.340442 ], [ -89.615841, 36.336085 ], [ -89.619800, 36.329546 ], [ -89.620255, 36.323006 ], [ -89.611819, 36.309088 ], [ -89.578492, 36.288317 ], [ -89.554289, 36.277751 ], [ -89.544797, 36.280458 ], [ -89.539487, 36.277368 ], [ -89.535529, 36.270541 ], [ -89.534745, 36.252576 ], [ -89.541621, 36.247891 ], [ -89.589561, 36.239116 ], [ -89.602374, 36.238106 ], [ -89.678046, 36.248284 ], [ -89.691308, 36.252079 ], [ -89.699817, 36.248384 ], [ -89.629452, 36.185382 ], [ -89.618228, 36.179966 ], [ -89.607004, 36.171179 ], [ -89.594397, 36.155457 ], [ -89.591605, 36.144096 ], [ -89.594000, 36.127190 ], [ -89.601936, 36.119470 ], [ -89.624235, 36.108626 ], [ -89.684439, 36.051719 ], [ -89.687254, 36.034048 ], [ -89.690306, 36.024835 ], [ -89.706932, 36.000981 ], [ -89.733095, 36.000608 ], [ -89.737564, 36.000522 ], [ -89.737648, 36.000567 ], [ -89.769973, 36.000536 ], [ -89.770255, 36.000524 ], [ -89.869010, 35.999640 ], [ -89.874590, 35.999575 ], [ -89.875085, 35.999578 ], [ -89.875586, 35.999562 ], [ -89.896508, 35.999432 ], [ -89.901183, 35.999365 ], [ -89.959375, 35.999020 ], [ -89.959377, 35.999020 ], [ -89.959893, 35.999020 ], [ -89.961075, 35.999135 ], [ -89.965327, 35.998813 ], [ -89.972563, 35.998994 ], [ -90.126350, 35.997596 ], [ -90.127331, 35.997635 ], [ -90.158812, 35.997375 ], [ -90.288800, 35.996419 ], [ -90.288947, 35.996418 ], [ -90.292376, 35.996397 ], [ -90.339434, 35.996033 ], [ -90.342616, 35.995895 ], [ -90.368718, 35.995812 ], [ -90.364430, 36.013625 ], [ -90.319168, 36.089976 ], [ -90.220425, 36.184764 ], [ -90.198735, 36.201382 ], [ -90.114922, 36.265595 ], [ -90.083731, 36.272332 ], [ -90.076301, 36.280708 ], [ -90.063980, 36.303038 ], [ -90.064514, 36.382085 ], [ -90.072897, 36.393007 ], [ -90.133993, 36.437906 ], [ -90.156369, 36.487748 ], [ -90.154409, 36.496832 ], [ -90.152481, 36.497952 ], [ -90.193943, 36.497823 ], [ -90.217323, 36.497797 ], [ -90.220702, 36.497858 ], [ -90.220732, 36.497858 ], [ -90.228943, 36.497771 ], [ -90.339892, 36.498213 ], [ -90.494575, 36.498368 ], [ -90.495027, 36.498371 ], [ -90.500160, 36.498399 ], [ -90.576112, 36.498446 ], [ -90.576180, 36.498446 ], [ -90.585342, 36.498497 ], [ -90.594300, 36.498459 ], [ -90.605450, 36.498459 ], [ -90.612554, 36.498559 ], [ -90.648494, 36.498447 ], [ -90.653246, 36.498488 ], [ -90.693005, 36.498510 ], [ -90.711226, 36.498318 ], [ -90.765672, 36.498494 ], [ -90.782454, 36.498523 ], [ -90.784398, 36.498524 ], [ -90.850434, 36.498548 ], [ -90.873775, 36.498074 ], [ -90.876567, 36.498313 ], [ -90.876867, 36.498423 ], [ -90.879220, 36.498378 ], [ -90.960648, 36.498426 ], [ -90.963063, 36.498418 ], [ -91.008558, 36.498270 ], [ -91.017974, 36.498062 ], [ -91.095880, 36.497870 ], [ -91.096277, 36.497893 ], [ -91.126529, 36.497712 ], [ -91.217360, 36.497511 ], [ -91.218645, 36.497564 ], [ -91.227398, 36.497617 ], [ -91.404915, 36.497120 ], [ -91.405141, 36.497165 ], [ -91.407137, 36.497112 ], [ -91.407261, 36.497123 ], [ -91.433298, 36.497262 ], [ -91.436502, 36.497377 ], [ -91.446284, 36.497469 ], [ -91.450005, 36.497538 ], [ -91.529774, 36.499022 ], [ -91.536870, 36.499156 ], [ -91.539359, 36.499116 ], [ -91.549163, 36.499161 ], [ -91.596213, 36.499162 ], [ -91.601317, 36.499343 ], [ -91.631439, 36.499198 ], [ -91.642590, 36.499335 ], [ -91.672343, 36.499463 ], [ -91.686026, 36.499374 ], [ -91.687615, 36.499397 ], [ -91.726663, 36.499209 ], [ -91.766111, 36.499114 ], [ -91.784713, 36.499074 ], [ -91.799500, 36.498952 ], [ -91.802040, 36.498963 ], [ -91.805981, 36.498987 ], [ -91.864385, 36.498789 ], [ -91.865995, 36.498783 ], [ -91.985802, 36.498431 ], [ -91.988751, 36.498498 ], [ -92.019375, 36.498524 ], [ -92.028847, 36.498642 ], [ -92.055789, 36.498670 ], [ -92.057178, 36.498670 ], [ -92.074934, 36.498761 ], [ -92.098356, 36.498803 ], [ -92.120306, 36.498864 ], [ -92.120415, 36.498863 ], [ -92.137741, 36.498706 ], [ -92.150295, 36.498634 ], [ -92.199396, 36.498351 ], [ -92.211449, 36.498395 ], [ -92.214143, 36.498372 ], [ -92.216412, 36.498417 ], [ -92.309424, 36.497894 ], [ -92.318415, 36.497711 ], [ -92.529145, 36.497739 ], [ -92.772333, 36.497772 ], [ -92.772341, 36.497772 ], [ -92.838621, 36.498079 ], [ -92.838876, 36.498033 ], [ -92.854049, 36.497983 ], [ -92.894001, 36.497850 ], [ -92.894336, 36.497867 ], [ -93.013742, 36.498130 ], [ -93.068455, 36.498250 ], [ -93.069512, 36.498242 ], [ -93.087635, 36.498239 ], [ -93.088988, 36.498184 ], [ -93.296117, 36.498389 ], [ -93.315324, 36.498408 ], [ -93.315337, 36.498408 ], [ -93.394718, 36.498519 ], [ -93.396079, 36.498669 ], [ -93.426989, 36.498585 ], [ -93.507408, 36.498911 ], [ -93.514512, 36.498881 ], [ -93.584281, 36.498896 ], [ -93.584282, 36.498896 ], [ -93.700171, 36.499135 ], [ -93.709956, 36.499179 ], [ -93.718893, 36.499178 ], [ -93.727552, 36.499055 ], [ -93.728022, 36.499037 ], [ -93.866758, 36.498789 ], [ -93.906128, 36.498718 ], [ -93.921840, 36.498718 ], [ -93.959190, 36.498717 ], [ -93.963920, 36.498717 ], [ -94.077089, 36.498730 ], [ -94.098588, 36.498676 ], [ -94.100252, 36.498670 ], [ -94.110673, 36.498587 ], [ -94.111473, 36.498597 ], [ -94.519478, 36.499214 ], [ -94.559290, 36.499496 ], [ -94.617919, 36.499414 ], [ -94.617877, 36.514999 ], [ -94.617883, 36.517799 ], [ -94.617997, 36.534280 ], [ -94.617868, 36.536090 ], [ -94.617897, 36.536983 ], [ -94.617814, 36.577732 ], [ -94.617853, 36.599120 ], [ -94.617865, 36.606851 ], [ -94.617815, 36.612604 ], [ -94.618019, 36.667921 ], [ -94.618025, 36.669430 ], [ -94.618130, 36.701423 ], [ -94.618307, 36.766560 ], [ -94.618380, 36.847320 ], [ -94.618658, 36.880064 ], [ -94.618243, 36.897027 ], [ -94.618282, 36.911472 ], [ -94.618207, 36.926236 ], [ -94.618295, 36.929647 ], [ -94.618166, 36.937584 ], [ -94.618109, 36.946564 ], [ -94.618026, 36.950158 ], [ -94.618031, 36.994704 ], [ -94.618049, 36.996208 ], [ -94.618080, 36.998135 ], [ -94.617995, 37.009016 ], [ -94.617965, 37.040537 ], [ -94.617875, 37.056797 ], [ -94.617875, 37.056798 ], [ -94.617982, 37.075077 ], [ -94.618120, 37.085934 ], [ -94.618082, 37.086432 ], [ -94.618090, 37.093494 ], [ -94.618088, 37.093671 ], [ -94.618059, 37.096676 ], [ -94.618151, 37.103968 ], [ -94.618212, 37.113169 ], [ -94.618075, 37.129755 ], [ -94.618072, 37.132345 ], [ -94.618351, 37.160211 ], [ -94.618473, 37.174782 ], [ -94.618505, 37.181184 ], [ -94.618319, 37.188774 ], [ -94.618305, 37.207337 ], [ -94.618219, 37.207772 ], [ -94.618150, 37.228121 ], [ -94.618123, 37.229334 ], [ -94.618158, 37.237597 ], [ -94.618075, 37.240436 ], [ -94.617648, 37.323589 ], [ -94.617695, 37.336842 ], [ -94.617636, 37.338415 ], [ -94.617636, 37.338417 ], [ -94.617538, 37.364167 ], [ -94.617537, 37.364355 ], [ -94.617626, 37.367445 ], [ -94.617625, 37.367576 ], [ -94.617557, 37.396375 ], [ -94.617511, 37.410909 ], [ -94.617265, 37.425536 ], [ -94.617132, 37.439818 ], [ -94.617201, 37.454788 ], [ -94.617205, 37.460373 ], [ -94.617222, 37.460476 ], [ -94.617180, 37.465203 ], [ -94.617183, 37.469665 ], [ -94.617023, 37.483765 ], [ -94.616789, 37.521510 ], [ -94.616908, 37.527804 ], [ -94.617186, 37.553485 ], [ -94.617160, 37.557308 ], [ -94.617081, 37.567013 ], [ -94.617315, 37.571499 ], [ -94.617283, 37.571896 ], [ -94.617428, 37.609522 ], [ -94.617300, 37.610495 ], [ -94.617477, 37.637170 ], [ -94.617575, 37.653577 ], [ -94.617576, 37.653671 ], [ -94.617734, 37.673105 ], [ -94.617734, 37.673127 ], [ -94.617885, 37.682214 ], [ -94.617687, 37.686653 ], [ -94.617651, 37.687671 ], [ -94.617805, 37.690178 ], [ -94.617975, 37.722176 ], [ -94.617808, 37.729707 ], [ -94.616862, 37.819456 ], [ -94.616450, 37.837560 ], [ -94.616426, 37.845282 ], [ -94.616000, 37.863126 ], [ -94.615834, 37.872510 ], [ -94.615921, 37.878331 ], [ -94.615706, 37.886843 ], [ -94.615469, 37.901775 ], [ -94.615393, 37.906392 ], [ -94.615181, 37.915944 ], [ -94.614778, 37.934200 ], [ -94.614835, 37.936700 ], [ -94.614754, 37.940769 ], [ -94.614612, 37.944362 ], [ -94.614594, 37.949978 ], [ -94.614562, 37.951517 ], [ -94.614557, 37.971037 ], [ -94.614465, 37.987799 ], [ -94.614212, 37.992462 ], [ -94.613981, 38.036949 ], [ -94.613981, 38.037057 ], [ -94.614055, 38.060056 ], [ -94.614055, 38.060088 ], [ -94.614089, 38.065901 ], [ -94.614061, 38.067343 ], [ -94.613856, 38.149769 ], [ -94.613748, 38.160633 ], [ -94.613422, 38.167908 ], [ -94.613073, 38.190552 ], [ -94.612848, 38.200714 ], [ -94.612822, 38.203918 ], [ -94.612658, 38.217649 ], [ -94.612659, 38.219251 ], [ -94.612635, 38.226987 ], [ -94.612614, 38.237766 ], [ -94.612692, 38.270394 ], [ -94.612849, 38.289914 ], [ -94.612844, 38.291423 ], [ -94.612673, 38.302527 ], [ -94.612673, 38.314832 ], [ -94.612788, 38.320142 ], [ -94.612825, 38.324387 ], [ -94.613000, 38.335801 ], [ -94.613312, 38.364407 ], [ -94.613329, 38.369618 ], [ -94.613275, 38.388718 ], [ -94.613265, 38.392426 ], [ -94.613365, 38.403422 ], [ -94.612866, 38.477571 ], [ -94.612865, 38.477602 ], [ -94.612696, 38.483154 ], [ -94.612726, 38.484367 ], [ -94.612644, 38.491644 ], [ -94.612272, 38.547917 ], [ -94.612157, 38.549817 ], [ -94.612176, 38.576546 ], [ -94.611902, 38.580110 ], [ -94.611887, 38.580139 ], [ -94.611908, 38.609272 ], [ -94.611858, 38.620485 ], [ -94.611602, 38.635384 ], [ -94.609509, 38.738102 ], [ -94.609456, 38.740700 ], [ -94.609399, 38.742440 ], [ -94.609039, 38.760611 ], [ -94.608041, 38.811064 ], [ -94.608033, 38.847207 ], [ -94.608033, 38.855007 ], [ -94.608033, 38.861207 ], [ -94.607993, 38.867271 ], [ -94.608033, 38.868107 ], [ -94.608033, 38.869207 ], [ -94.608033, 38.883807 ], [ -94.607978, 38.936870 ], [ -94.607866, 38.937398 ], [ -94.608134, 38.940006 ], [ -94.608134, 38.942006 ], [ -94.607391, 39.044086 ], [ -94.607234, 39.065704 ], [ -94.607334, 39.081704 ], [ -94.607234, 39.089604 ], [ -94.607354, 39.113444 ], [ -94.589933, 39.140403 ], [ -94.591933, 39.155003 ], [ -94.596033, 39.157703 ], [ -94.601733, 39.159603 ], [ -94.706723, 39.173801 ], [ -94.714137, 39.170403 ], [ -94.723637, 39.169003 ], [ -94.736537, 39.169203 ], [ -94.752338, 39.173203 ], [ -94.793948, 39.201276 ], [ -94.832399, 39.227218 ], [ -94.901009, 39.301680 ], [ -94.907569, 39.320623 ], [ -94.910641, 39.348335 ], [ -94.908337, 39.355647 ], [ -94.909954, 39.367459 ], [ -94.946662, 39.399717 ], [ -94.969061, 39.418876 ], [ -95.102888, 39.533347 ], [ -95.109304, 39.542285 ], [ -95.113557, 39.553941 ], [ -95.113077, 39.559133 ], [ -95.107454, 39.573843 ], [ -95.069592, 39.615106 ], [ -95.015310, 39.674262 ], [ -95.011103, 39.677572 ], [ -94.937924, 39.725471 ], [ -94.916932, 39.728186 ], [ -94.895268, 39.763210 ], [ -94.908267, 39.812172 ], [ -94.927897, 39.886112 ], [ -94.935963, 39.894355 ], [ -94.954155, 39.901138 ], [ -94.993348, 39.900747 ], [ -95.008440, 39.900596 ], [ -95.016320, 39.898766 ], [ -95.025240, 39.889700 ], [ -95.025250, 39.877688 ], [ -95.027931, 39.871522 ], [ -95.035047, 39.866807 ], [ -95.042142, 39.864805 ], [ -95.085003, 39.861883 ], [ -95.107745, 39.868579 ], [ -95.132695, 39.875925 ], [ -95.181222, 39.899996 ], [ -95.301549, 39.983603 ], [ -95.307780, 39.990618 ], [ -95.308290, 39.999998 ], [ -95.312211, 40.009395 ], [ -95.521925, 40.249470 ], [ -95.552473, 40.261904 ], [ -95.552314, 40.264443 ], [ -95.550966, 40.285947 ], [ -95.553292, 40.291158 ], [ -95.622684, 40.342323 ], [ -95.687280, 40.465059 ], [ -95.692665, 40.483022 ], [ -95.681409, 40.490820 ], [ -95.659281, 40.519808 ], [ -95.696673, 40.545137 ], [ -95.697281, 40.536985 ], [ -95.709974, 40.523798 ], [ -95.748680, 40.524275 ], [ -95.757110, 40.525990 ], [ -95.766920, 40.531563 ], [ -95.769281, 40.536656 ], [ -95.774704, 40.573574 ], [ -95.773549, 40.578205 ], [ -95.765645, 40.585208 ], [ -95.746443, 40.584935 ], [ -95.687500, 40.584381 ], [ -95.687442, 40.584380 ], [ -95.641840, 40.584234 ], [ -95.611069, 40.583495 ], [ -95.574046, 40.582963 ], [ -95.554959, 40.582629 ], [ -95.533182, 40.582249 ], [ -95.526682, 40.582136 ], [ -95.525392, 40.582090 ], [ -95.469319, 40.581540 ], [ -95.415406, 40.581014 ], [ -95.373923, 40.580501 ], [ -95.373893, 40.580501 ], [ -95.357802, 40.580100 ], [ -95.335588, 40.579871 ], [ -95.221525, 40.578827 ], [ -95.218783, 40.578781 ], [ -95.217455, 40.578759 ], [ -95.213327, 40.578689 ], [ -95.212715, 40.578679 ], [ -95.211590, 40.578654 ], [ -95.211408, 40.578650 ], [ -95.202264, 40.578528 ], [ -95.164058, 40.578017 ], [ -95.154499, 40.577860 ], [ -95.120829, 40.577413 ], [ -95.112222, 40.577228 ], [ -95.110663, 40.577206 ], [ -95.110303, 40.577160 ], [ -95.107213, 40.577116 ], [ -95.097607, 40.577168 ], [ -95.079742, 40.577007 ], [ -95.068921, 40.576880 ], [ -94.966491, 40.575839 ], [ -94.955134, 40.575669 ], [ -94.914896, 40.575068 ], [ -94.901451, 40.574877 ], [ -94.896801, 40.574738 ], [ -94.823758, 40.573942 ], [ -94.819978, 40.573714 ], [ -94.811188, 40.573532 ], [ -94.773988, 40.572977 ], [ -94.716665, 40.572201 ], [ -94.714925, 40.572201 ], [ -94.682601, 40.571787 ], [ -94.632035, 40.571186 ], [ -94.632032, 40.571186 ], [ -94.594001, 40.570966 ], [ -94.542154, 40.570809 ], [ -94.541828, 40.570809 ], [ -94.538318, 40.570763 ], [ -94.537058, 40.570763 ], [ -94.533878, 40.570739 ], [ -94.489280, 40.570707 ], [ -94.471213, 40.570825 ], [ -94.470648, 40.570830 ], [ -94.460088, 40.570947 ], [ -94.429725, 40.571041 ], [ -94.358307, 40.571363 ], [ -94.336706, 40.571452 ], [ -94.336556, 40.571475 ], [ -94.324765, 40.571477 ], [ -94.310724, 40.571524 ], [ -94.294813, 40.571341 ], [ -94.287350, 40.571521 ], [ -94.232240, 40.571907 ], [ -94.091085, 40.572897 ], [ -94.089194, 40.572806 ], [ -94.080463, 40.572899 ], [ -94.080223, 40.572899 ], [ -94.034134, 40.573585 ], [ -94.015492, 40.573914 ], [ -93.976766, 40.574635 ], [ -93.963863, 40.574754 ], [ -93.939857, 40.575192 ], [ -93.938627, 40.575284 ], [ -93.937097, 40.575421 ], [ -93.936317, 40.575284 ], [ -93.935687, 40.575330 ], [ -93.913961, 40.575672 ], [ -93.900877, 40.575874 ], [ -93.899317, 40.575942 ], [ -93.898327, 40.576011 ], [ -93.853656, 40.576606 ], [ -93.840930, 40.576791 ], [ -93.818725, 40.577086 ], [ -93.815485, 40.577278 ], [ -93.774344, 40.577584 ], [ -93.770231, 40.577615 ], [ -93.750223, 40.577720 ], [ -93.742759, 40.577518 ], [ -93.737259, 40.577542 ], [ -93.728355, 40.577547 ], [ -93.722443, 40.577641 ], [ -93.690333, 40.577875 ], [ -93.677099, 40.578127 ], [ -93.668845, 40.578241 ], [ -93.661913, 40.578354 ], [ -93.659272, 40.578330 ], [ -93.656211, 40.578352 ], [ -93.597352, 40.579496 ], [ -93.566189, 40.580117 ], [ -93.565810, 40.580075 ], [ -93.565240, 40.580143 ], [ -93.560798, 40.580304 ], [ -93.558938, 40.580189 ], [ -93.556899, 40.580235 ], [ -93.553986, 40.580303 ], [ -93.548284, 40.580417 ], [ -93.528177, 40.580367 ], [ -93.527607, 40.580436 ], [ -93.524124, 40.580481 ], [ -93.466887, 40.580072 ], [ -93.465297, 40.580164 ], [ -93.441767, 40.579916 ], [ -93.374386, 40.580334 ], [ -93.345442, 40.580514 ], [ -93.317605, 40.580671 ], [ -93.260612, 40.580797 ], [ -93.098507, 40.583973 ], [ -93.097296, 40.584014 ], [ -93.085517, 40.584403 ], [ -92.957747, 40.587430 ], [ -92.941595, 40.587743 ], [ -92.903544, 40.587860 ], [ -92.889796, 40.588039 ], [ -92.879178, 40.588341 ], [ -92.863034, 40.588175 ], [ -92.857391, 40.588360 ], [ -92.835074, 40.588484 ], [ -92.827992, 40.588515 ], [ -92.828061, 40.588593 ], [ -92.757407, 40.588908 ], [ -92.742232, 40.589207 ], [ -92.714598, 40.589564 ], [ -92.689854, 40.589884 ], [ -92.686693, 40.589809 ], [ -92.639223, 40.590825 ], [ -92.637898, 40.590853 ], [ -92.580278, 40.592151 ], [ -92.484588, 40.594924 ], [ -92.482394, 40.594894 ], [ -92.481692, 40.594941 ], [ -92.461609, 40.595355 ], [ -92.453745, 40.595288 ], [ -92.379691, 40.596509 ], [ -92.350807, 40.597273 ], [ -92.350776, 40.597274 ], [ -92.331445, 40.597714 ], [ -92.331205, 40.597805 ], [ -92.298754, 40.598469 ], [ -92.236484, 40.599531 ], [ -92.217603, 40.599832 ], [ -92.201669, 40.599980 ], [ -92.196162, 40.600069 ], [ -92.179780, 40.600529 ], [ -92.096387, 40.601830 ], [ -92.092875, 40.602082 ], [ -92.083200, 40.602244 ], [ -92.082339, 40.602176 ], [ -92.069521, 40.602772 ], [ -92.067904, 40.602648 ], [ -92.029649, 40.603713 ], [ -91.998683, 40.604433 ], [ -91.970988, 40.605112 ], [ -91.943114, 40.605913 ], [ -91.868401, 40.608059 ], [ -91.832481, 40.609797 ], [ -91.824826, 40.610191 ], [ -91.813968, 40.610526 ], [ -91.800133, 40.610953 ], [ -91.795374, 40.611101 ], [ -91.785916, 40.611488 ], [ -91.729115, 40.613640 ], [ -91.716769, 40.598530 ], [ -91.696359, 40.588148 ], [ -91.620071, 40.540817 ], [ -91.618028, 40.534030 ], [ -91.622362, 40.514362 ], [ -91.619486, 40.507134 ], [ -91.524612, 40.410765 ], [ -91.490977, 40.393484 ], [ -91.484507, 40.383900 ], [ -91.419422, 40.378264 ], [ -91.444833, 40.363170 ], [ -91.462140, 40.342414 ], [ -91.489868, 40.286048 ], [ -91.501435, 40.248874 ], [ -91.505968, 40.234305 ], [ -91.510332, 40.201142 ], [ -91.512974, 40.181062 ], [ -91.510322, 40.127994 ], [ -91.494865, 40.037421 ], [ -91.460287, 39.980333 ], [ -91.455887, 39.945538 ], [ -91.446385, 39.870394 ], [ -91.432919, 39.840554 ], [ -91.365396, 39.777266 ], [ -91.367962, 39.759124 ], [ -91.369953, 39.745042 ], [ -91.370009, 39.732524 ], [ -91.367753, 39.729029 ], [ -91.349039, 39.712316 ], [ -91.313162, 39.684907 ], [ -91.229317, 39.620853 ], [ -91.178012, 39.598196 ], [ -91.168419, 39.564928 ], [ -91.158606, 39.553048 ], [ -91.042351, 39.452062 ], [ -90.993789, 39.422959 ], [ -90.939983, 39.393555 ], [ -90.882706, 39.362254 ], [ -90.842175, 39.341932 ], [ -90.799346, 39.313087 ], [ -90.729960, 39.255894 ], [ -90.726981, 39.251173 ], [ -90.718996, 39.224973 ], [ -90.681086, 39.100590 ], [ -90.682744, 39.088348 ], [ -90.712541, 39.057064 ], [ -90.713629, 39.053977 ], [ -90.711580, 39.046798 ], [ -90.665870, 38.934195 ], [ -90.663372, 38.928042 ], [ -90.657254, 38.920270 ], [ -90.625122, 38.888654 ], [ -90.583388, 38.869030 ], [ -90.566557, 38.868847 ], [ -90.555693, 38.870785 ], [ -90.544030, 38.875050 ], [ -90.507451, 38.902767 ], [ -90.486974, 38.925982 ], [ -90.482725, 38.934712 ], [ -90.482419, 38.944460 ], [ -90.472122, 38.958838 ], [ -90.467784, 38.961809 ], [ -90.450809, 38.967758 ], [ -90.450792, 38.967764 ], [ -90.406367, 38.962554 ], [ -90.385751, 38.956848 ], [ -90.275932, 38.926453 ], [ -90.250248, 38.919344 ], [ -90.225850, 38.908923 ], [ -90.207035, 38.898954 ], [ -90.113327, 38.849306 ], [ -90.109407, 38.843548 ], [ -90.109107, 38.837448 ], [ -90.114707, 38.815048 ], [ -90.117707, 38.805748 ], [ -90.123107, 38.798048 ], [ -90.165082, 38.770618 ], [ -90.171309, 38.766549 ], [ -90.209910, 38.726050 ], [ -90.212010, 38.711750 ], [ -90.209210, 38.702750 ], [ -90.202210, 38.693450 ], [ -90.195210, 38.687550 ], [ -90.186410, 38.674750 ], [ -90.181399, 38.660378 ], [ -90.181110, 38.659550 ], [ -90.177710, 38.642750 ], [ -90.178010, 38.633750 ], [ -90.182625, 38.617989 ], [ -90.184510, 38.611551 ], [ -90.196011, 38.594451 ], [ -90.202511, 38.588651 ], [ -90.224512, 38.574651 ], [ -90.248913, 38.544752 ], [ -90.257773, 38.532008 ], [ -90.260314, 38.528352 ], [ -90.263064, 38.520220 ], [ -90.279215, 38.472453 ], [ -90.285215, 38.443453 ], [ -90.295316, 38.426753 ], [ -90.340297, 38.386998 ], [ -90.346118, 38.381853 ], [ -90.350918, 38.375053 ], [ -90.370819, 38.333554 ], [ -90.372519, 38.323354 ], [ -90.373929, 38.281853 ], [ -90.363926, 38.236355 ], [ -90.353902, 38.213855 ], [ -90.334258, 38.189932 ], [ -90.254112, 38.121990 ], [ -90.243116, 38.112669 ], [ -90.203847, 38.088753 ], [ -90.126532, 38.041666 ], [ -90.072283, 38.017001 ], [ -89.997103, 37.963225 ], [ -89.974918, 37.926719 ], [ -89.973642, 37.917661 ], [ -89.950594, 37.881526 ], [ -89.938191, 37.875111 ], [ -89.937383, 37.874693 ], [ -89.923185, 37.870672 ], [ -89.901832, 37.869822 ], [ -89.881475, 37.879591 ], [ -89.862949, 37.896906 ], [ -89.851048, 37.903980 ], [ -89.844786, 37.905572 ], [ -89.739873, 37.846930 ], [ -89.674304, 37.803179 ], [ -89.671255, 37.801144 ], [ -89.515436, 37.671370 ], [ -89.506563, 37.625050 ], [ -89.511936, 37.584564 ], [ -89.518007, 37.583962 ], [ -89.521274, 37.578971 ], [ -89.521407, 37.572143 ], [ -89.521523, 37.566208 ], [ -89.521697, 37.557325 ], [ -89.517051, 37.537278 ], [ -89.492051, 37.494008 ], [ -89.475525, 37.471388 ], [ -89.450969, 37.450069 ], [ -89.439769, 37.437200 ], [ -89.425940, 37.407471 ], [ -89.421054, 37.387668 ], [ -89.428185, 37.356158 ], [ -89.432836, 37.347056 ], [ -89.436040, 37.344441 ], [ -89.447556, 37.340475 ], [ -89.474569, 37.338165 ], [ -89.484598, 37.334832 ], [ -89.489005, 37.333368 ], [ -89.511842, 37.310825 ], [ -89.518393, 37.289354 ], [ -89.517032, 37.281920 ], [ -89.491222, 37.248629 ], [ -89.467631, 37.218200 ], [ -89.414471, 37.125050 ], [ -89.385434, 37.055130 ], [ -89.383937, 37.046441 ], [ -89.378277, 37.039605 ], [ -89.322733, 37.009033 ], [ -89.292130, 36.992189 ], [ -89.278628, 36.988670 ], [ -89.271127, 36.985287 ], [ -89.261154, 36.982437 ], [ -89.245481, 36.983150 ], [ -89.226247, 36.985287 ], [ -89.207013, 36.982437 ], [ -89.185491, 36.973518 ], [ -89.170008, 36.970298 ], [ -89.132685, 36.982200 ], [ -89.100794, 36.944006 ], [ -89.100766, 36.943973 ], [ -89.147674, 36.847148 ], [ -89.177177, 36.835779 ], [ -89.178574, 36.816554 ], [ -89.179229, 36.812915 ], [ -89.123530, 36.785309 ], [ -89.123548, 36.785220 ], [ -89.130399, 36.751702 ], [ -89.142313, 36.755369 ], [ -89.169106, 36.759473 ], [ -89.184523, 36.753638 ], [ -89.197808, 36.739412 ], [ -89.201047, 36.725772 ], [ -89.199480, 36.716045 ], [ -89.171882, 36.672526 ], [ -89.174733, 36.650476 ], [ -89.174741, 36.650416 ], [ -89.187749, 36.641115 ], [ -89.197654, 36.628936 ], [ -89.200902, 36.618177 ], [ -89.202607, 36.601576 ], [ -89.213563, 36.580119 ], [ -89.227319, 36.569375 ], [ -89.236542, 36.566824 ], [ -89.259994, 36.565149 ], [ -89.271710, 36.571387 ], [ -89.294637, 36.593729 ], [ -89.313405, 36.620120 ], [ -89.326731, 36.632186 ], [ -89.327578, 36.632127 ], [ -89.343753, 36.630991 ], [ -89.365548, 36.625059 ], [ -89.376367, 36.613868 ], [ -89.388140, 36.573416 ], [ -89.400581, 36.538337 ], [ -89.417293, 36.499033 ], [ -89.429311, 36.481875 ], [ -89.448468, 36.464420 ], [ -89.460436, 36.458140 ], [ -89.471718, 36.457001 ], [ -89.486215, 36.461620 ], [ -89.493198, 36.470124 ], [ -89.493495, 36.478700 ], [ -89.485106, 36.497692 ], [ -89.472460, 36.513741 ], [ -89.465888, 36.529946 ], [ -89.465445, 36.536163 ], [ -89.467761, 36.546847 ], [ -89.473341, 36.559918 ], [ -89.479093, 36.568206 ], [ -89.484836, 36.571821 ], [ -89.500076, 36.576305 ], [ -89.527583, 36.581147 ], [ -89.546113, 36.579989 ], [ -89.552640, 36.577178 ], [ -89.566817, 36.564216 ], [ -89.571509, 36.552569 ], [ -89.570071, 36.544387 ], [ -89.560344, 36.525436 ], [ -89.539100, 36.498201 ], [ -89.522674, 36.481305 ], [ -89.519501, 36.475419 ], [ -89.509558, 36.375065 ], [ -89.513178, 36.359897 ], [ -89.519000, 36.348600 ], [ -89.531822, 36.339246 ], [ -89.545006, 36.336809 ] ] ] } }\n,\n{ \"type\": \"Feature\", \"properties\": { \"GEO_ID\": \"0400000US31\", \"STATE\": \"31\", \"NAME\": \"Nebraska\", \"LSAD\": \"\", \"CENSUSAREA\": 76824.171000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -104.052830, 41.697954 ], [ -104.052774, 41.733401 ], [ -104.053026, 41.885464 ], [ -104.052931, 41.906143 ], [ -104.052991, 41.914973 ], [ -104.052734, 41.973007 ], [ -104.052856, 41.975958 ], [ -104.052830, 41.994600 ], [ -104.052761, 41.994967 ], [ -104.052699, 41.998673 ], [ -104.052704, 42.001718 ], [ -104.052729, 42.016318 ], [ -104.052880, 42.021761 ], [ -104.052967, 42.075004 ], [ -104.052954, 42.089077 ], [ -104.052600, 42.124963 ], [ -104.052738, 42.133769 ], [ -104.053001, 42.137254 ], [ -104.052547, 42.166801 ], [ -104.052761, 42.170278 ], [ -104.052793, 42.249962 ], [ -104.052776, 42.258220 ], [ -104.052775, 42.610813 ], [ -104.052775, 42.611590 ], [ -104.052773, 42.611766 ], [ -104.052586, 42.630917 ], [ -104.052741, 42.633982 ], [ -104.052583, 42.650062 ], [ -104.052809, 42.749966 ], [ -104.052863, 42.754569 ], [ -104.053127, 43.000585 ], [ -103.815573, 43.001279 ], [ -103.813939, 43.001378 ], [ -103.576966, 43.000746 ], [ -103.576329, 43.000807 ], [ -103.506556, 43.000771 ], [ -103.506151, 43.000771 ], [ -103.505219, 43.000770 ], [ -103.505100, 43.000770 ], [ -103.404579, 43.000737 ], [ -103.340829, 43.000879 ], [ -103.132955, 43.000784 ], [ -103.131740, 43.000783 ], [ -103.000897, 43.000474 ], [ -102.792111, 42.999980 ], [ -102.487329, 42.999559 ], [ -102.440547, 42.999609 ], [ -102.082546, 42.999356 ], [ -102.082486, 42.999356 ], [ -101.875424, 42.999298 ], [ -101.625424, 42.996238 ], [ -101.230325, 42.997899 ], [ -101.229203, 42.997854 ], [ -101.228104, 42.997874 ], [ -101.226853, 42.997896 ], [ -101.226494, 42.997901 ], [ -100.964190, 42.997886 ], [ -100.958365, 42.997796 ], [ -100.906714, 42.997910 ], [ -100.887898, 42.997881 ], [ -100.553131, 42.998721 ], [ -100.544018, 42.998795 ], [ -100.534335, 42.999017 ], [ -100.472742, 42.999288 ], [ -100.355406, 42.998760 ], [ -100.349548, 42.998740 ], [ -100.283713, 42.998767 ], [ -100.277793, 42.998674 ], [ -100.198434, 42.998542 ], [ -100.198413, 42.998542 ], [ -100.198412, 42.998542 ], [ -100.126896, 42.998711 ], [ -100.126427, 42.998710 ], [ -100.119297, 42.998689 ], [ -100.034389, 42.998425 ], [ -100.027815, 42.998424 ], [ -100.004757, 42.998392 ], [ -99.961204, 42.998335 ], [ -99.950921, 42.998291 ], [ -99.950411, 42.998286 ], [ -99.927645, 42.998113 ], [ -99.918401, 42.998057 ], [ -99.877697, 42.998094 ], [ -99.869885, 42.998094 ], [ -99.859945, 42.997962 ], [ -99.850037, 42.998171 ], [ -99.821868, 42.997995 ], [ -99.809373, 42.998178 ], [ -99.803328, 42.998064 ], [ -99.800306, 42.997972 ], [ -99.788247, 42.998016 ], [ -99.768524, 42.998125 ], [ -99.743138, 42.997912 ], [ -99.726788, 42.997892 ], [ -99.719177, 42.997899 ], [ -99.701446, 42.997994 ], [ -99.699234, 42.997880 ], [ -99.569277, 42.997995 ], [ -99.535375, 42.998038 ], [ -99.534049, 42.998041 ], [ -99.494287, 42.998118 ], [ -99.490798, 42.998143 ], [ -99.474531, 42.998081 ], [ -99.471353, 42.997967 ], [ -99.395568, 42.998170 ], [ -99.374268, 42.998047 ], [ -99.371121, 42.998093 ], [ -99.368628, 42.998140 ], [ -99.347283, 42.998217 ], [ -99.288045, 42.998152 ], [ -99.262710, 42.998234 ], [ -99.254454, 42.998140 ], [ -99.254297, 42.998138 ], [ -99.234462, 42.998281 ], [ -99.195199, 42.998107 ], [ -99.161388, 42.998465 ], [ -99.151143, 42.998344 ], [ -99.139045, 42.998508 ], [ -99.135961, 42.998301 ], [ -99.081880, 42.998288 ], [ -99.080011, 42.998357 ], [ -99.022300, 42.998237 ], [ -99.021909, 42.998365 ], [ -99.000370, 42.998273 ], [ -98.962081, 42.998286 ], [ -98.919234, 42.998241 ], [ -98.919136, 42.998242 ], [ -98.903154, 42.998306 ], [ -98.899944, 42.998122 ], [ -98.823989, 42.998310 ], [ -98.801304, 42.998241 ], [ -98.764378, 42.998323 ], [ -98.742394, 42.998343 ], [ -98.665613, 42.998536 ], [ -98.663712, 42.998444 ], [ -98.568936, 42.998537 ], [ -98.565072, 42.998400 ], [ -98.498550, 42.998560 ], [ -98.495747, 42.988032 ], [ -98.490483, 42.977948 ], [ -98.467356, 42.947556 ], [ -98.447047, 42.935117 ], [ -98.325864, 42.886500 ], [ -98.309741, 42.881232 ], [ -98.204506, 42.846845 ], [ -98.165835, 42.837011 ], [ -98.157405, 42.831899 ], [ -98.056625, 42.770781 ], [ -98.035034, 42.764205 ], [ -98.017228, 42.762411 ], [ -98.000348, 42.763256 ], [ -97.950147, 42.769619 ], [ -97.936716, 42.775754 ], [ -97.908983, 42.794909 ], [ -97.888562, 42.817251 ], [ -97.879878, 42.835395 ], [ -97.875345, 42.858724 ], [ -97.865695, 42.862860 ], [ -97.845270, 42.867734 ], [ -97.828496, 42.868797 ], [ -97.814382, 42.861119 ], [ -97.774456, 42.849774 ], [ -97.686506, 42.842435 ], [ -97.635115, 42.844984 ], [ -97.531867, 42.850105 ], [ -97.485376, 42.854838 ], [ -97.423190, 42.861168 ], [ -97.328511, 42.859501 ], [ -97.257089, 42.853854 ], [ -97.218269, 42.829561 ], [ -97.190135, 42.805076 ], [ -97.163082, 42.793385 ], [ -97.137460, 42.782313 ], [ -97.052180, 42.770187 ], [ -97.026103, 42.762625 ], [ -97.015691, 42.758697 ], [ -96.961021, 42.738075 ], [ -96.920494, 42.731432 ], [ -96.906797, 42.733800 ], [ -96.813148, 42.706397 ], [ -96.806553, 42.703405 ], [ -96.724033, 42.665971 ], [ -96.712871, 42.648136 ], [ -96.707245, 42.631258 ], [ -96.710604, 42.619625 ], [ -96.711332, 42.610399 ], [ -96.708049, 42.601594 ], [ -96.635982, 42.524324 ], [ -96.625958, 42.513576 ], [ -96.611489, 42.506088 ], [ -96.487490, 42.479846 ], [ -96.475565, 42.480036 ], [ -96.443408, 42.489495 ], [ -96.409408, 42.487595 ], [ -96.396107, 42.484095 ], [ -96.385407, 42.473094 ], [ -96.381307, 42.461694 ], [ -96.380707, 42.446394 ], [ -96.387608, 42.432494 ], [ -96.413609, 42.407894 ], [ -96.415509, 42.400294 ], [ -96.417786, 42.351449 ], [ -96.413895, 42.343393 ], [ -96.407998, 42.337408 ], [ -96.384169, 42.325874 ], [ -96.375307, 42.318339 ], [ -96.348814, 42.282024 ], [ -96.328905, 42.254734 ], [ -96.322868, 42.233637 ], [ -96.323723, 42.229887 ], [ -96.336323, 42.218922 ], [ -96.356591, 42.215182 ], [ -96.356666, 42.215077 ], [ -96.359870, 42.210545 ], [ -96.349688, 42.172043 ], [ -96.344121, 42.162091 ], [ -96.307421, 42.130707 ], [ -96.279079, 42.074026 ], [ -96.272877, 42.047238 ], [ -96.251714, 42.040472 ], [ -96.221730, 42.026205 ], [ -96.129505, 41.971673 ], [ -96.129186, 41.965136 ], [ -96.136743, 41.920826 ], [ -96.142265, 41.915379 ], [ -96.159098, 41.910057 ], [ -96.161988, 41.905553 ], [ -96.161756, 41.901820 ], [ -96.144483, 41.871854 ], [ -96.139554, 41.865830 ], [ -96.110907, 41.830818 ], [ -96.086407, 41.811380 ], [ -96.077646, 41.808804 ], [ -96.071007, 41.804639 ], [ -96.065770, 41.798174 ], [ -96.064537, 41.793002 ], [ -96.077088, 41.715403 ], [ -96.096795, 41.698681 ], [ -96.121726, 41.682740 ], [ -96.099837, 41.661030 ], [ -96.095415, 41.652736 ], [ -96.095046, 41.647365 ], [ -96.097728, 41.639633 ], [ -96.116233, 41.621574 ], [ -96.118105, 41.613495 ], [ -96.094090, 41.539265 ], [ -96.089714, 41.531778 ], [ -96.055096, 41.509577 ], [ -96.046707, 41.507085 ], [ -96.040701, 41.507076 ], [ -96.036603, 41.509047 ], [ -96.030593, 41.527292 ], [ -95.994784, 41.526242 ], [ -95.981319, 41.506837 ], [ -95.930705, 41.433894 ], [ -95.937346, 41.394403 ], [ -95.938310, 41.392162 ], [ -95.956791, 41.349196 ], [ -95.956691, 41.345496 ], [ -95.953091, 41.339896 ], [ -95.939291, 41.328897 ], [ -95.925690, 41.322197 ], [ -95.913790, 41.320197 ], [ -95.902490, 41.273398 ], [ -95.924891, 41.211198 ], [ -95.927491, 41.202198 ], [ -95.925990, 41.195698 ], [ -95.923219, 41.191046 ], [ -95.923190, 41.190998 ], [ -95.914590, 41.185098 ], [ -95.852788, 41.165398 ], [ -95.853396, 41.160280 ], [ -95.866289, 41.051731 ], [ -95.867246, 41.043671 ], [ -95.867286, 41.001599 ], [ -95.835434, 40.984184 ], [ -95.829074, 40.975688 ], [ -95.823123, 40.900924 ], [ -95.821193, 40.876682 ], [ -95.854172, 40.784012 ], [ -95.861695, 40.762871 ], [ -95.872281, 40.758349 ], [ -95.881529, 40.750611 ], [ -95.886690, 40.742101 ], [ -95.888907, 40.731855 ], [ -95.883178, 40.717579 ], [ -95.842801, 40.677496 ], [ -95.822913, 40.667240 ], [ -95.795489, 40.662384 ], [ -95.786568, 40.657253 ], [ -95.776251, 40.647463 ], [ -95.748626, 40.603355 ], [ -95.750053, 40.597052 ], [ -95.753148, 40.592840 ], [ -95.765645, 40.585208 ], [ -95.773549, 40.578205 ], [ -95.774704, 40.573574 ], [ -95.769281, 40.536656 ], [ -95.766920, 40.531563 ], [ -95.757110, 40.525990 ], [ -95.748680, 40.524275 ], [ -95.709974, 40.523798 ], [ -95.697281, 40.536985 ], [ -95.696673, 40.545137 ], [ -95.659281, 40.519808 ], [ -95.681409, 40.490820 ], [ -95.692665, 40.483022 ], [ -95.687280, 40.465059 ], [ -95.622684, 40.342323 ], [ -95.553292, 40.291158 ], [ -95.550966, 40.285947 ], [ -95.552314, 40.264443 ], [ -95.552473, 40.261904 ], [ -95.521925, 40.249470 ], [ -95.312211, 40.009395 ], [ -95.308290, 39.999998 ], [ -95.339896, 39.999999 ], [ -95.375257, 40.000000 ], [ -95.784575, 40.000463 ], [ -95.788024, 40.000452 ], [ -95.788111, 40.000452 ], [ -95.882524, 40.000470 ], [ -95.958139, 40.000521 ], [ -96.010678, 40.000638 ], [ -96.010680, 40.000638 ], [ -96.024090, 40.000719 ], [ -96.051691, 40.000727 ], [ -96.081395, 40.000603 ], [ -96.089781, 40.000519 ], [ -96.125788, 40.000467 ], [ -96.125937, 40.000432 ], [ -96.147167, 40.000479 ], [ -96.154246, 40.000450 ], [ -96.154365, 40.000495 ], [ -96.220171, 40.000720 ], [ -96.223839, 40.000729 ], [ -96.239172, 40.000691 ], [ -96.239208, 40.000691 ], [ -96.301066, 40.000632 ], [ -96.304555, 40.000629 ], [ -96.463640, 40.000967 ], [ -96.463713, 40.000968 ], [ -96.467536, 40.001035 ], [ -96.469945, 40.000966 ], [ -96.527111, 40.001031 ], [ -96.538977, 40.000851 ], [ -96.557863, 40.000968 ], [ -96.570854, 40.001091 ], [ -96.580852, 40.000966 ], [ -96.604884, 40.000891 ], [ -96.610349, 40.000881 ], [ -96.622401, 40.001158 ], [ -96.805768, 40.001371 ], [ -96.873812, 40.001450 ], [ -96.875057, 40.001448 ], [ -96.878253, 40.001466 ], [ -96.880459, 40.001448 ], [ -96.916093, 40.001506 ], [ -96.916407, 40.001506 ], [ -97.009165, 40.001463 ], [ -97.030803, 40.001342 ], [ -97.049663, 40.001323 ], [ -97.137866, 40.001814 ], [ -97.142448, 40.001495 ], [ -97.181775, 40.001550 ], [ -97.200190, 40.001549 ], [ -97.202310, 40.001442 ], [ -97.245080, 40.001467 ], [ -97.245169, 40.001513 ], [ -97.350272, 40.001976 ], [ -97.350896, 40.001930 ], [ -97.369103, 40.002060 ], [ -97.369199, 40.002060 ], [ -97.369199, 40.002060 ], [ -97.415833, 40.002001 ], [ -97.417826, 40.002024 ], [ -97.425443, 40.002048 ], [ -97.444662, 40.001958 ], [ -97.463285, 40.002047 ], [ -97.510264, 40.001835 ], [ -97.511381, 40.001899 ], [ -97.515308, 40.001901 ], [ -97.767746, 40.001994 ], [ -97.769204, 40.001995 ], [ -97.770776, 40.001977 ], [ -97.777155, 40.002167 ], [ -97.819426, 40.001958 ], [ -97.821496, 40.002002 ], [ -97.821598, 40.002004 ], [ -97.838379, 40.001910 ], [ -97.857450, 40.002065 ], [ -97.876261, 40.002102 ], [ -97.931811, 40.002050 ], [ -97.931826, 40.002050 ], [ -97.972186, 40.002114 ], [ -98.010157, 40.002153 ], [ -98.014412, 40.002223 ], [ -98.047469, 40.002186 ], [ -98.050057, 40.002278 ], [ -98.068701, 40.002355 ], [ -98.076034, 40.002301 ], [ -98.099659, 40.002227 ], [ -98.142031, 40.002452 ], [ -98.172269, 40.002438 ], [ -98.179315, 40.002483 ], [ -98.193483, 40.002614 ], [ -98.250008, 40.002307 ], [ -98.268218, 40.002490 ], [ -98.274015, 40.002516 ], [ -98.274017, 40.002516 ], [ -98.490533, 40.002323 ], [ -98.504455, 40.002329 ], [ -98.523053, 40.002336 ], [ -98.543186, 40.002285 ], [ -98.560578, 40.002274 ], [ -98.575219, 40.002480 ], [ -98.593342, 40.002476 ], [ -98.613755, 40.002400 ], [ -98.640710, 40.002493 ], [ -98.652494, 40.002245 ], [ -98.653833, 40.002269 ], [ -98.669724, 40.002410 ], [ -98.672819, 40.002364 ], [ -98.690287, 40.002548 ], [ -98.691443, 40.002505 ], [ -98.693096, 40.002373 ], [ -98.710404, 40.002180 ], [ -98.726295, 40.002222 ], [ -98.726373, 40.002222 ], [ -98.774941, 40.002336 ], [ -98.777203, 40.002359 ], [ -98.820590, 40.002319 ], [ -98.834456, 40.002363 ], [ -98.934792, 40.002205 ], [ -98.960919, 40.002271 ], [ -98.961009, 40.002317 ], [ -98.971721, 40.002268 ], [ -98.972287, 40.002245 ], [ -98.992135, 40.002192 ], [ -99.018701, 40.002333 ], [ -99.020338, 40.002264 ], [ -99.067022, 40.002170 ], [ -99.085597, 40.002133 ], [ -99.113510, 40.002193 ], [ -99.123033, 40.002165 ], [ -99.169816, 40.001925 ], [ -99.178965, 40.001977 ], [ -99.179133, 40.001977 ], [ -99.186962, 40.001977 ], [ -99.188905, 40.002023 ], [ -99.197592, 40.002033 ], [ -99.216376, 40.002016 ], [ -99.250370, 40.001957 ], [ -99.254012, 40.002074 ], [ -99.282967, 40.001879 ], [ -99.286656, 40.002017 ], [ -99.290703, 40.001949 ], [ -99.403389, 40.001969 ], [ -99.412645, 40.001868 ], [ -99.480728, 40.001942 ], [ -99.493465, 40.001937 ], [ -99.497660, 40.001912 ], [ -99.498999, 40.001957 ], [ -99.501792, 40.002026 ], [ -99.625324, 40.001866 ], [ -99.625980, 40.001865 ], [ -99.628255, 40.001866 ], [ -99.628346, 40.001866 ], [ -99.719639, 40.001808 ], [ -99.731959, 40.001827 ], [ -99.746628, 40.001820 ], [ -99.756835, 40.001342 ], [ -99.764214, 40.001551 ], [ -99.772121, 40.001804 ], [ -99.775640, 40.001647 ], [ -99.813401, 40.001400 ], [ -99.906658, 40.001512 ], [ -99.930433, 40.001516 ], [ -99.944417, 40.001584 ], [ -99.948167, 40.001813 ], [ -99.986611, 40.001550 ], [ -99.990926, 40.001503 ], [ -100.177795, 40.001593 ], [ -100.177823, 40.001593 ], [ -100.188181, 40.001541 ], [ -100.190323, 40.001586 ], [ -100.193590, 40.001573 ], [ -100.193597, 40.001573 ], [ -100.196959, 40.001494 ], [ -100.215406, 40.001629 ], [ -100.229479, 40.001693 ], [ -100.231652, 40.001623 ], [ -100.390080, 40.001809 ], [ -100.439081, 40.001774 ], [ -100.447072, 40.001795 ], [ -100.468773, 40.001724 ], [ -100.475854, 40.001768 ], [ -100.477018, 40.001752 ], [ -100.487159, 40.001767 ], [ -100.511065, 40.001840 ], [ -100.551886, 40.001889 ], [ -100.567238, 40.001889 ], [ -100.594757, 40.001977 ], [ -100.600945, 40.001906 ], [ -100.645445, 40.001883 ], [ -100.660230, 40.002162 ], [ -100.683435, 40.002234 ], [ -100.721128, 40.002069 ], [ -100.729904, 40.002111 ], [ -100.733296, 40.002270 ], [ -100.738826, 40.002228 ], [ -100.752183, 40.002128 ], [ -100.758830, 40.002302 ], [ -100.937427, 40.002145 ], [ -101.027686, 40.002256 ], [ -101.060317, 40.002307 ], [ -101.130907, 40.002427 ], [ -101.168704, 40.002547 ], [ -101.178805, 40.002468 ], [ -101.192219, 40.002491 ], [ -101.215033, 40.002555 ], [ -101.248673, 40.002543 ], [ -101.286555, 40.002559 ], [ -101.293991, 40.002559 ], [ -101.324036, 40.002696 ], [ -101.325514, 40.002687 ], [ -101.342859, 40.002580 ], [ -101.374326, 40.002521 ], [ -101.409953, 40.002354 ], [ -101.411043, 40.002365 ], [ -101.417209, 40.002424 ], [ -101.542273, 40.002609 ], [ -101.625809, 40.002711 ], [ -101.627071, 40.002620 ], [ -101.804862, 40.002752 ], [ -101.807687, 40.002798 ], [ -101.832161, 40.002933 ], [ -101.841025, 40.002784 ], [ -101.904176, 40.003162 ], [ -101.916696, 40.003142 ], [ -102.051744, 40.003078 ], [ -102.052001, 40.148359 ], [ -102.051909, 40.162674 ], [ -102.051894, 40.229193 ], [ -102.051922, 40.235344 ], [ -102.051669, 40.349213 ], [ -102.051572, 40.393080 ], [ -102.051840, 40.396396 ], [ -102.051465, 40.440008 ], [ -102.051519, 40.520094 ], [ -102.051725, 40.537839 ], [ -102.051398, 40.697542 ], [ -102.051292, 40.749586 ], [ -102.051292, 40.749591 ], [ -102.051614, 41.002377 ], [ -102.051718, 41.002377 ], [ -102.070598, 41.002423 ], [ -102.124972, 41.002338 ], [ -102.191210, 41.002326 ], [ -102.209361, 41.002442 ], [ -102.212200, 41.002462 ], [ -102.231931, 41.002327 ], [ -102.267812, 41.002383 ], [ -102.272100, 41.002245 ], [ -102.291354, 41.002207 ], [ -102.292553, 41.002207 ], [ -102.292622, 41.002230 ], [ -102.292833, 41.002207 ], [ -102.364066, 41.002174 ], [ -102.379593, 41.002301 ], [ -102.469223, 41.002424 ], [ -102.470537, 41.002382 ], [ -102.487955, 41.002445 ], [ -102.556789, 41.002219 ], [ -102.566048, 41.002200 ], [ -102.575496, 41.002200 ], [ -102.575738, 41.002268 ], [ -102.578696, 41.002291 ], [ -102.621033, 41.002597 ], [ -102.653463, 41.002332 ], [ -102.739624, 41.002230 ], [ -102.754617, 41.002361 ], [ -102.766723, 41.002275 ], [ -102.773546, 41.002414 ], [ -102.827280, 41.002143 ], [ -102.830303, 41.002351 ], [ -102.846455, 41.002256 ], [ -102.849263, 41.002301 ], [ -102.865784, 41.001988 ], [ -102.867822, 41.002183 ], [ -102.885746, 41.002131 ], [ -102.887407, 41.002178 ], [ -102.904796, 41.002207 ], [ -102.906547, 41.002276 ], [ -102.924029, 41.002142 ], [ -102.925568, 41.002280 ], [ -102.943109, 41.002051 ], [ -102.944830, 41.002303 ], [ -102.959624, 41.002095 ], [ -102.960706, 41.002059 ], [ -102.962522, 41.002072 ], [ -102.963669, 41.002186 ], [ -102.981483, 41.002112 ], [ -102.982690, 41.002157 ], [ -103.000102, 41.002400 ], [ -103.002026, 41.002486 ], [ -103.038704, 41.002251 ], [ -103.043444, 41.002344 ], [ -103.057998, 41.002368 ], [ -103.059538, 41.002368 ], [ -103.076536, 41.002253 ], [ -103.077804, 41.002298 ], [ -103.362979, 41.001844 ], [ -103.365314, 41.001846 ], [ -103.382493, 41.001883 ], [ -103.421925, 41.001969 ], [ -103.421975, 41.002007 ], [ -103.486697, 41.001914 ], [ -103.497447, 41.001635 ], [ -103.574522, 41.001721 ], [ -103.858449, 41.001681 ], [ -103.877967, 41.001673 ], [ -103.896207, 41.001750 ], [ -103.953525, 41.001596 ], [ -103.971373, 41.001524 ], [ -103.972642, 41.001615 ], [ -104.018223, 41.001617 ], [ -104.023383, 41.001887 ], [ -104.039238, 41.001502 ], [ -104.053249, 41.001406 ], [ -104.053158, 41.016809 ], [ -104.053097, 41.018045 ], [ -104.053177, 41.089725 ], [ -104.053025, 41.090274 ], [ -104.053083, 41.104985 ], [ -104.053142, 41.114457 ], [ -104.052666, 41.275251 ], [ -104.052574, 41.278019 ], [ -104.052453, 41.278202 ], [ -104.052568, 41.316202 ], [ -104.052476, 41.320961 ], [ -104.052324, 41.321144 ], [ -104.052287, 41.393214 ], [ -104.052287, 41.393307 ], [ -104.052160, 41.407662 ], [ -104.052340, 41.417865 ], [ -104.052478, 41.515754 ], [ -104.052476, 41.522343 ], [ -104.052686, 41.539111 ], [ -104.052692, 41.541154 ], [ -104.052584, 41.552650 ], [ -104.052531, 41.552723 ], [ -104.052540, 41.564274 ], [ -104.052859, 41.592254 ], [ -104.052735, 41.613676 ], [ -104.052975, 41.622931 ], [ -104.052945, 41.638167 ], [ -104.052913, 41.645190 ], [ -104.052830, 41.697954 ] ] ] } }\n,\n{ \"type\": \"Feature\", \"properties\": { \"GEO_ID\": \"0400000US32\", \"STATE\": \"32\", \"NAME\": \"Nevada\", \"LSAD\": \"\", \"CENSUSAREA\": 109781.180000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -114.046555, 40.116931 ], [ -114.047134, 39.906037 ], [ -114.047728, 39.542742 ], [ -114.049893, 38.677365 ], [ -114.050154, 38.572920 ], [ -114.049862, 38.547764 ], [ -114.049834, 38.543784 ], [ -114.050091, 38.404673 ], [ -114.050120, 38.404536 ], [ -114.049903, 38.148601 ], [ -114.050423, 37.999961 ], [ -114.048473, 37.809861 ], [ -114.051109, 37.756276 ], [ -114.051670, 37.746958 ], [ -114.051785, 37.746249 ], [ -114.051728, 37.745997 ], [ -114.052472, 37.604776 ], [ -114.052689, 37.517859 ], [ -114.052718, 37.517264 ], [ -114.052685, 37.502513 ], [ -114.052701, 37.492014 ], [ -114.051927, 37.370734 ], [ -114.051927, 37.370459 ], [ -114.051800, 37.293548 ], [ -114.051800, 37.293044 ], [ -114.051974, 37.284511 ], [ -114.051974, 37.283848 ], [ -114.051822, 37.090976 ], [ -114.051749, 37.088434 ], [ -114.050600, 37.000396 ], [ -114.050583, 36.843141 ], [ -114.050578, 36.800173 ], [ -114.050562, 36.656259 ], [ -114.046488, 36.473449 ], [ -114.046403, 36.371873 ], [ -114.048515, 36.289598 ], [ -114.047106, 36.250591 ], [ -114.046838, 36.194069 ], [ -114.060302, 36.189363 ], [ -114.063021, 36.186942 ], [ -114.120193, 36.102228 ], [ -114.125796, 36.077531 ], [ -114.138202, 36.041284 ], [ -114.148774, 36.027310 ], [ -114.154130, 36.023862 ], [ -114.213690, 36.015613 ], [ -114.233289, 36.014289 ], [ -114.238799, 36.014561 ], [ -114.252651, 36.020193 ], [ -114.263146, 36.025937 ], [ -114.292663, 36.051118 ], [ -114.303614, 36.066456 ], [ -114.307235, 36.076544 ], [ -114.310857, 36.083787 ], [ -114.328777, 36.105501 ], [ -114.365835, 36.133722 ], [ -114.381446, 36.141665 ], [ -114.513256, 36.151217 ], [ -114.572031, 36.151610 ], [ -114.631716, 36.142306 ], [ -114.736165, 36.104367 ], [ -114.744857, 36.098693 ], [ -114.755618, 36.087166 ], [ -114.743576, 35.983721 ], [ -114.731296, 35.945157 ], [ -114.706130, 35.878712 ], [ -114.704211, 35.851984 ], [ -114.705611, 35.848884 ], [ -114.707710, 35.811885 ], [ -114.700308, 35.700387 ], [ -114.689407, 35.651412 ], [ -114.676707, 35.640989 ], [ -114.657506, 35.618289 ], [ -114.653406, 35.610789 ], [ -114.653806, 35.599490 ], [ -114.671147, 35.520641 ], [ -114.674981, 35.510564 ], [ -114.676733, 35.499063 ], [ -114.677643, 35.489742 ], [ -114.662125, 35.444241 ], [ -114.652005, 35.429165 ], [ -114.627137, 35.409504 ], [ -114.604314, 35.353584 ], [ -114.595931, 35.325234 ], [ -114.569238, 35.183480 ], [ -114.569569, 35.163053 ], [ -114.572747, 35.138725 ], [ -114.578524, 35.128750 ], [ -114.584300, 35.124999 ], [ -114.599120, 35.121050 ], [ -114.621956, 35.094678 ], [ -114.635469, 35.028266 ], [ -114.633544, 35.015644 ], [ -114.633013, 35.002085 ], [ -114.804249, 35.139689 ], [ -114.805030, 35.140284 ], [ -114.925381, 35.237039 ], [ -114.925480, 35.237054 ], [ -115.145813, 35.413182 ], [ -115.146788, 35.413662 ], [ -115.160068, 35.424129 ], [ -115.160599, 35.424313 ], [ -115.225273, 35.475907 ], [ -115.271342, 35.512660 ], [ -115.303743, 35.538207 ], [ -115.388866, 35.605171 ], [ -115.391535, 35.607271 ], [ -115.393996, 35.609344 ], [ -115.404537, 35.617605 ], [ -115.406079, 35.618613 ], [ -115.647202, 35.808995 ], [ -115.647683, 35.809358 ], [ -115.648029, 35.809629 ], [ -115.689302, 35.842003 ], [ -115.846080, 35.963596 ], [ -115.892975, 35.999967 ], [ -115.912858, 36.015359 ], [ -116.093601, 36.155805 ], [ -116.097216, 36.158346 ], [ -116.488233, 36.459097 ], [ -117.000895, 36.847694 ], [ -117.166187, 36.970862 ], [ -117.500909, 37.220282 ], [ -117.832726, 37.464929 ], [ -118.039849, 37.615245 ], [ -118.039798, 37.615273 ], [ -118.428581, 37.895613 ], [ -118.746598, 38.124926 ], [ -119.125982, 38.393170 ], [ -119.156863, 38.414743 ], [ -119.328498, 38.534648 ], [ -119.450623, 38.619965 ], [ -119.450612, 38.619964 ], [ -119.494022, 38.649734 ], [ -119.494183, 38.649852 ], [ -119.585437, 38.713212 ], [ -119.587066, 38.714345 ], [ -119.587679, 38.714734 ], [ -119.904315, 38.933324 ], [ -120.001014, 38.999574 ], [ -120.002461, 39.067489 ], [ -120.003402, 39.112687 ], [ -120.004504, 39.165599 ], [ -120.005746, 39.225210 ], [ -120.005743, 39.228664 ], [ -120.005414, 39.313345 ], [ -120.005413, 39.313848 ], [ -120.005320, 39.316350 ], [ -120.005318, 39.316479 ], [ -120.003117, 39.445045 ], [ -120.003116, 39.445113 ], [ -120.001319, 39.722416 ], [ -120.001319, 39.722420 ], [ -120.000502, 39.779956 ], [ -120.000607, 39.780779 ], [ -119.997291, 40.071803 ], [ -119.997175, 40.077245 ], [ -119.997234, 40.091591 ], [ -119.997124, 40.126363 ], [ -119.996183, 40.262461 ], [ -119.996182, 40.263532 ], [ -119.996155, 40.321250 ], [ -119.996155, 40.321838 ], [ -119.995926, 40.499901 ], [ -119.999231, 40.865899 ], [ -119.999232, 40.867454 ], [ -119.999358, 40.873101 ], [ -119.999866, 41.183974 ], [ -119.999168, 41.994540 ], [ -119.986678, 41.995842 ], [ -119.790087, 41.997544 ], [ -119.360177, 41.994384 ], [ -119.324182, 41.994278 ], [ -118.777228, 41.992671 ], [ -118.775869, 41.992692 ], [ -118.197189, 41.996995 ], [ -117.026222, 42.000252 ], [ -117.018294, 41.999358 ], [ -116.626770, 41.997750 ], [ -116.586937, 41.997370 ], [ -116.510452, 41.997096 ], [ -116.485823, 41.996861 ], [ -116.483094, 41.996885 ], [ -116.463528, 41.996547 ], [ -116.163931, 41.997555 ], [ -116.160833, 41.997508 ], [ -116.038602, 41.997460 ], [ -116.038570, 41.997413 ], [ -116.030754, 41.997399 ], [ -116.030758, 41.997383 ], [ -116.018960, 41.997762 ], [ -116.018945, 41.997722 ], [ -116.012219, 41.998048 ], [ -116.012212, 41.998035 ], [ -115.986880, 41.998534 ], [ -115.038256, 41.996025 ], [ -115.031783, 41.996008 ], [ -114.914187, 41.999909 ], [ -114.763825, 41.999909 ], [ -114.598267, 41.994511 ], [ -114.498259, 41.994599 ], [ -114.498243, 41.994636 ], [ -114.281854, 41.994264 ], [ -114.107428, 41.993965 ], [ -114.107259, 41.993831 ], [ -114.061763, 41.993939 ], [ -114.061774, 41.993797 ], [ -114.048257, 41.993814 ], [ -114.048246, 41.993721 ], [ -114.041723, 41.993720 ], [ -114.041107, 41.850573 ], [ -114.041152, 41.850595 ], [ -114.039882, 41.741991 ], [ -114.042145, 40.999926 ], [ -114.043803, 40.759205 ], [ -114.043831, 40.758666 ], [ -114.043505, 40.726292 ], [ -114.045281, 40.506586 ], [ -114.045577, 40.495801 ], [ -114.045518, 40.494474 ], [ -114.046555, 40.116931 ] ] ] } }\n,\n{ \"type\": \"Feature\", \"properties\": { \"GEO_ID\": \"0400000US33\", \"STATE\": \"33\", \"NAME\": \"New Hampshire\", \"LSAD\": \"\", \"CENSUSAREA\": 8952.651000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -70.819549, 43.123231 ], [ -70.784108, 43.098963 ], [ -70.756397, 43.079988 ], [ -70.703936, 43.059621 ], [ -70.718936, 43.032350 ], [ -70.744570, 43.000090 ], [ -70.749024, 42.995467 ], [ -70.759975, 42.988592 ], [ -70.795596, 42.936290 ], [ -70.810069, 42.909549 ], [ -70.814610, 42.891346 ], [ -70.816321, 42.884487 ], [ -70.817296, 42.872290 ], [ -70.848625, 42.860939 ], [ -70.886136, 42.882610 ], [ -70.902768, 42.886530 ], [ -70.914886, 42.886564 ], [ -70.914899, 42.886589 ], [ -70.930799, 42.884589 ], [ -70.931699, 42.884189 ], [ -70.996901, 42.864589 ], [ -71.037901, 42.854089 ], [ -71.058407, 42.847009 ], [ -71.113858, 42.827865 ], [ -71.149703, 42.815489 ], [ -71.165603, 42.808689 ], [ -71.186104, 42.790689 ], [ -71.181803, 42.737590 ], [ -71.208137, 42.743273 ], [ -71.208227, 42.743294 ], [ -71.208302, 42.743314 ], [ -71.245504, 42.742589 ], [ -71.254532, 42.734136 ], [ -71.294205, 42.696990 ], [ -71.542520, 42.702726 ], [ -71.631814, 42.704788 ], [ -71.636214, 42.704888 ], [ -71.772510, 42.708310 ], [ -71.805450, 42.709137 ], [ -71.898714, 42.711478 ], [ -71.928811, 42.712234 ], [ -72.078463, 42.716364 ], [ -72.111068, 42.717264 ], [ -72.282968, 42.722008 ], [ -72.412011, 42.725569 ], [ -72.451257, 42.726653 ], [ -72.458519, 42.726853 ], [ -72.460195, 42.732066 ], [ -72.478453, 42.762296 ], [ -72.491122, 42.772465 ], [ -72.509506, 42.781183 ], [ -72.542784, 42.808482 ], [ -72.555693, 42.856380 ], [ -72.555768, 42.858153 ], [ -72.556112, 42.866252 ], [ -72.556214, 42.866950 ], [ -72.443762, 43.006245 ], [ -72.432661, 43.114077 ], [ -72.433097, 43.120021 ], [ -72.441904, 43.136615 ], [ -72.452100, 43.161414 ], [ -72.439407, 43.211322 ], [ -72.431187, 43.231786 ], [ -72.397150, 43.316515 ], [ -72.400511, 43.337073 ], [ -72.403949, 43.358098 ], [ -72.405253, 43.389992 ], [ -72.396948, 43.428925 ], [ -72.396934, 43.428990 ], [ -72.387852, 43.471567 ], [ -72.387642, 43.502481 ], [ -72.395825, 43.520560 ], [ -72.329620, 43.600201 ], [ -72.334745, 43.614519 ], [ -72.334401, 43.619250 ], [ -72.329660, 43.634648 ], [ -72.302867, 43.702718 ], [ -72.271180, 43.734138 ], [ -72.264245, 43.734158 ], [ -72.232713, 43.748286 ], [ -72.205717, 43.771143 ], [ -72.204792, 43.771926 ], [ -72.183743, 43.806644 ], [ -72.182203, 43.834032 ], [ -72.167224, 43.886113 ], [ -72.121002, 43.918956 ], [ -72.104421, 43.950536 ], [ -72.105594, 43.959029 ], [ -72.107042, 43.969513 ], [ -72.113078, 43.972790 ], [ -72.112813, 43.988020 ], [ -72.090710, 44.035211 ], [ -72.054675, 44.112147 ], [ -72.040082, 44.155748 ], [ -72.040082, 44.155749 ], [ -72.042087, 44.157633 ], [ -72.053021, 44.167903 ], [ -72.064285, 44.187888 ], [ -72.067774, 44.270976 ], [ -72.065434, 44.277235 ], [ -72.058880, 44.286240 ], [ -72.012173, 44.321408 ], [ -72.002314, 44.324871 ], [ -71.849465, 44.359295 ], [ -71.816065, 44.366817 ], [ -71.814388, 44.381932 ], [ -71.793924, 44.399271 ], [ -71.764537, 44.406403 ], [ -71.761966, 44.407027 ], [ -71.756091, 44.406401 ], [ -71.745011, 44.401359 ], [ -71.708934, 44.411611 ], [ -71.679950, 44.427908 ], [ -71.599480, 44.486455 ], [ -71.580263, 44.506509 ], [ -71.536251, 44.587939 ], [ -71.553156, 44.626645 ], [ -71.598656, 44.698005 ], [ -71.625323, 44.729718 ], [ -71.627358, 44.747544 ], [ -71.623924, 44.755135 ], [ -71.572520, 44.810074 ], [ -71.495844, 44.904980 ], [ -71.493985, 44.911312 ], [ -71.516814, 44.947588 ], [ -71.537784, 44.984298 ], [ -71.538592, 44.988182 ], [ -71.536980, 44.994177 ], [ -71.530091, 44.999656 ], [ -71.505000, 45.008151 ], [ -71.486457, 45.007011 ], [ -71.468567, 45.010222 ], [ -71.464555, 45.013637 ], [ -71.502487, 45.013367 ], [ -71.496098, 45.069235 ], [ -71.489145, 45.072308 ], [ -71.428828, 45.123881 ], [ -71.397810, 45.203553 ], [ -71.403267, 45.215348 ], [ -71.442880, 45.234799 ], [ -71.401182, 45.242544 ], [ -71.342961, 45.271281 ], [ -71.297092, 45.298985 ], [ -71.284396, 45.302434 ], [ -71.266754, 45.291230 ], [ -71.263042, 45.277401 ], [ -71.259614, 45.273240 ], [ -71.232998, 45.256625 ], [ -71.183785, 45.244932 ], [ -71.139430, 45.242958 ], [ -71.131953, 45.245423 ], [ -71.124517, 45.255270 ], [ -71.119914, 45.262287 ], [ -71.120112, 45.265738 ], [ -71.105151, 45.294635 ], [ -71.097772, 45.301906 ], [ -71.084334, 45.305293 ], [ -71.075640, 45.224093 ], [ -71.060101, 45.019661 ], [ -71.037518, 44.755607 ], [ -71.029101, 44.610331 ], [ -71.013490, 44.340882 ], [ -71.010239, 44.284774 ], [ -71.008736, 44.258825 ], [ -71.008764, 44.258443 ], [ -71.001335, 44.093205 ], [ -71.001367, 44.092931 ], [ -70.992986, 43.914232 ], [ -70.992086, 43.886261 ], [ -70.989067, 43.792440 ], [ -70.989041, 43.792152 ], [ -70.982083, 43.715043 ], [ -70.982238, 43.711865 ], [ -70.981978, 43.701965 ], [ -70.981946, 43.700960 ], [ -70.980758, 43.684141 ], [ -70.979985, 43.673195 ], [ -70.972716, 43.570255 ], [ -70.953322, 43.552718 ], [ -70.955346, 43.540697 ], [ -70.955337, 43.540980 ], [ -70.958958, 43.537634 ], [ -70.962556, 43.534310 ], [ -70.954755, 43.509802 ], [ -70.963742, 43.476248 ], [ -70.964542, 43.473262 ], [ -70.964433, 43.473276 ], [ -70.986812, 43.414264 ], [ -70.987733, 43.391513 ], [ -70.984305, 43.376814 ], [ -70.984335, 43.376128 ], [ -70.967229, 43.343777 ], [ -70.952356, 43.333983 ], [ -70.930783, 43.329569 ], [ -70.916751, 43.317731 ], [ -70.912460, 43.308289 ], [ -70.909805, 43.306682 ], [ -70.863230, 43.265109 ], [ -70.863231, 43.265098 ], [ -70.839213, 43.251224 ], [ -70.839717, 43.250393 ], [ -70.833650, 43.242868 ], [ -70.828022, 43.241597 ], [ -70.826711, 43.241301 ], [ -70.825071, 43.240930 ], [ -70.823309, 43.240343 ], [ -70.822959, 43.240187 ], [ -70.817865, 43.237911 ], [ -70.817773, 43.237408 ], [ -70.816232, 43.234997 ], [ -70.828301, 43.186685 ], [ -70.829174, 43.180365 ], [ -70.833800, 43.146886 ], [ -70.828100, 43.129086 ], [ -70.819549, 43.123231 ] ] ] } }\n,\n{ \"type\": \"Feature\", \"properties\": { \"GEO_ID\": \"0400000US36\", \"STATE\": \"36\", \"NAME\": \"New York\", \"LSAD\": \"\", \"CENSUSAREA\": 47126.399000 }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [ [ [ [ -73.773361, 40.859449 ], [ -73.770552, 40.860330 ], [ -73.766333, 40.857317 ], [ -73.765128, 40.854228 ], [ -73.766032, 40.844961 ], [ -73.769648, 40.844660 ], [ -73.773038, 40.848125 ], [ -73.773717, 40.854831 ], [ -73.773361, 40.859449 ] ] ], [ [ [ -74.040860, 40.700117 ], [ -74.040018, 40.700678 ], [ -74.039401, 40.700454 ], [ -74.037998, 40.698995 ], [ -74.043441, 40.689680 ], [ -74.044451, 40.688445 ], [ -74.046359, 40.689175 ], [ -74.047313, 40.690466 ], [ -74.046920, 40.691139 ], [ -74.040860, 40.700117 ] ] ], [ [ [ -74.144428, 40.535160 ], [ -74.148697, 40.534489 ], [ -74.160859, 40.526790 ], [ -74.177986, 40.519603 ], [ -74.182157, 40.520634 ], [ -74.199923, 40.511729 ], [ -74.210474, 40.509448 ], [ -74.219787, 40.502603 ], [ -74.233240, 40.501299 ], [ -74.246688, 40.496103 ], [ -74.250188, 40.496703 ], [ -74.254588, 40.502303 ], [ -74.256088, 40.507903 ], [ -74.252702, 40.513895 ], [ -74.242888, 40.520903 ], [ -74.241732, 40.531273 ], [ -74.247808, 40.543396 ], [ -74.229002, 40.555041 ], [ -74.216997, 40.554991 ], [ -74.210887, 40.560902 ], [ -74.204054, 40.589336 ], [ -74.196820, 40.597037 ], [ -74.195407, 40.601806 ], [ -74.196096, 40.616169 ], [ -74.200994, 40.616906 ], [ -74.201812, 40.619507 ], [ -74.200580, 40.631448 ], [ -74.189400, 40.642121 ], [ -74.180191, 40.645521 ], [ -74.174085, 40.645109 ], [ -74.170187, 40.642201 ], [ -74.152973, 40.638886 ], [ -74.120186, 40.642201 ], [ -74.086485, 40.648601 ], [ -74.075884, 40.648101 ], [ -74.069700, 40.641216 ], [ -74.067598, 40.623865 ], [ -74.060345, 40.611999 ], [ -74.053125, 40.603678 ], [ -74.059184, 40.593502 ], [ -74.068184, 40.584102 ], [ -74.090797, 40.566463 ], [ -74.111471, 40.546908 ], [ -74.112585, 40.547603 ], [ -74.121672, 40.542691 ], [ -74.137241, 40.530076 ], [ -74.140230, 40.533738 ], [ -74.144428, 40.535160 ] ] ], [ [ [ -72.132225, 41.104387 ], [ -72.128352, 41.108131 ], [ -72.126704, 41.115139 ], [ -72.084207, 41.101524 ], [ -72.081167, 41.093940 ], [ -72.086975, 41.058292 ], [ -72.095711, 41.054020 ], [ -72.097200, 41.054884 ], [ -72.097136, 41.075844 ], [ -72.103152, 41.086484 ], [ -72.106400, 41.088883 ], [ -72.120560, 41.093171 ], [ -72.139233, 41.092451 ], [ -72.141921, 41.094371 ], [ -72.142929, 41.097811 ], [ -72.140737, 41.100835 ], [ -72.132225, 41.104387 ] ] ], [ [ [ -71.943563, 41.286675 ], [ -71.926802, 41.290122 ], [ -71.935259, 41.280579 ], [ -71.946270, 41.276306 ], [ -71.962598, 41.270968 ], [ -71.978926, 41.265002 ], [ -71.994717, 41.256451 ], [ -72.002461, 41.252867 ], [ -72.036846, 41.249794 ], [ -72.034958, 41.255458 ], [ -72.029438, 41.263090 ], [ -72.023422, 41.270994 ], [ -72.018926, 41.274114 ], [ -72.006872, 41.273480 ], [ -71.991117, 41.281331 ], [ -71.980061, 41.280291 ], [ -71.952864, 41.285098 ], [ -71.943563, 41.286675 ] ] ], [ [ [ -73.767176, 40.886299 ], [ -73.767076, 40.885399 ], [ -73.767076, 40.884799 ], [ -73.767076, 40.883499 ], [ -73.766276, 40.881099 ], [ -73.766976, 40.880099 ], [ -73.770876, 40.879299 ], [ -73.775276, 40.882199 ], [ -73.775176, 40.884199 ], [ -73.772776, 40.884599 ], [ -73.772276, 40.887499 ], [ -73.770576, 40.888399 ], [ -73.768276, 40.887599 ], [ -73.767276, 40.886899 ], [ -73.767176, 40.886299 ] ] ], [ [ [ -73.403686, 44.153102 ], [ -73.429239, 44.079414 ], [ -73.437429, 44.046861 ], [ -73.436880, 44.042578 ], [ -73.410776, 44.026944 ], [ -73.405999, 44.016229 ], [ -73.405525, 43.948813 ], [ -73.407742, 43.929887 ], [ -73.397256, 43.905668 ], [ -73.388389, 43.832404 ], [ -73.379312, 43.808478 ], [ -73.379279, 43.808391 ], [ -73.357547, 43.785933 ], [ -73.350431, 43.771438 ], [ -73.360711, 43.753268 ], [ -73.370724, 43.735571 ], [ -73.403517, 43.685032 ], [ -73.408697, 43.674020 ], [ -73.421606, 43.646577 ], [ -73.431229, 43.588285 ], [ -73.428636, 43.583994 ], [ -73.400295, 43.568889 ], [ -73.375594, 43.613350 ], [ -73.366537, 43.623462 ], [ -73.306234, 43.628018 ], [ -73.302552, 43.625708 ], [ -73.245594, 43.540253 ], [ -73.242042, 43.534925 ], [ -73.247061, 43.514919 ], [ -73.252582, 43.370997 ], [ -73.252674, 43.370285 ], [ -73.252832, 43.363493 ], [ -73.253084, 43.354714 ], [ -73.254848, 43.314684 ], [ -73.259159, 43.216848 ], [ -73.269472, 43.030686 ], [ -73.274294, 42.943652 ], [ -73.274393, 42.942482 ], [ -73.274466, 42.940361 ], [ -73.278673, 42.833410 ], [ -73.285388, 42.834093 ], [ -73.290944, 42.801920 ], [ -73.276421, 42.746019 ], [ -73.264957, 42.745940 ], [ -73.307004, 42.632653 ], [ -73.352527, 42.510002 ], [ -73.410647, 42.351738 ], [ -73.508142, 42.086257 ], [ -73.496879, 42.049675 ], [ -73.487314, 42.049638 ], [ -73.504944, 41.824285 ], [ -73.505008, 41.823773 ], [ -73.510171, 41.758686 ], [ -73.517473, 41.666646 ], [ -73.521457, 41.616429 ], [ -73.530067, 41.527194 ], [ -73.533969, 41.479693 ], [ -73.534055, 41.478968 ], [ -73.534150, 41.478060 ], [ -73.534269, 41.476911 ], [ -73.534269, 41.476394 ], [ -73.534369, 41.475894 ], [ -73.535769, 41.457159 ], [ -73.535857, 41.455709 ], [ -73.535885, 41.455236 ], [ -73.535986, 41.453060 ], [ -73.536067, 41.451331 ], [ -73.536969, 41.441094 ], [ -73.537469, 41.435890 ], [ -73.537673, 41.433905 ], [ -73.543641, 41.376778 ], [ -73.544728, 41.366375 ], [ -73.550961, 41.295422 ], [ -73.482709, 41.212760 ], [ -73.509487, 41.200814 ], [ -73.514617, 41.198434 ], [ -73.614407, 41.153001 ], [ -73.632153, 41.144921 ], [ -73.639672, 41.141495 ], [ -73.727775, 41.100696 ], [ -73.694273, 41.059296 ], [ -73.687173, 41.050697 ], [ -73.679973, 41.041797 ], [ -73.670472, 41.030097 ], [ -73.655371, 41.012797 ], [ -73.654671, 41.011697 ], [ -73.657336, 40.985171 ], [ -73.655972, 40.979597 ], [ -73.659972, 40.968398 ], [ -73.662072, 40.966198 ], [ -73.664472, 40.967198 ], [ -73.678073, 40.962798 ], [ -73.683273, 40.948998 ], [ -73.686473, 40.945198 ], [ -73.697974, 40.939598 ], [ -73.721739, 40.932037 ], [ -73.731775, 40.924999 ], [ -73.756776, 40.912599 ], [ -73.781338, 40.885447 ], [ -73.783545, 40.881040 ], [ -73.784803, 40.878528 ], [ -73.785502, 40.869079 ], [ -73.788786, 40.858485 ], [ -73.788060, 40.854131 ], [ -73.784754, 40.851793 ], [ -73.782174, 40.847358 ], [ -73.782093, 40.844616 ], [ -73.782254, 40.842359 ], [ -73.781206, 40.838891 ], [ -73.782577, 40.837601 ], [ -73.783867, 40.836795 ], [ -73.785399, 40.838004 ], [ -73.788221, 40.842036 ], [ -73.791044, 40.846552 ], [ -73.789512, 40.851390 ], [ -73.792253, 40.855825 ], [ -73.793785, 40.855583 ], [ -73.797252, 40.852196 ], [ -73.799543, 40.848027 ], [ -73.806914, 40.849501 ], [ -73.812810, 40.846737 ], [ -73.815574, 40.835129 ], [ -73.815205, 40.831075 ], [ -73.811889, 40.825363 ], [ -73.804518, 40.818546 ], [ -73.797332, 40.815597 ], [ -73.785964, 40.800862 ], [ -73.781369, 40.794907 ], [ -73.776032, 40.795275 ], [ -73.768431, 40.800704 ], [ -73.768301, 40.800797 ], [ -73.754032, 40.820941 ], [ -73.754400, 40.826837 ], [ -73.728275, 40.852900 ], [ -73.726675, 40.856800 ], [ -73.730675, 40.865400 ], [ -73.729575, 40.866500 ], [ -73.713674, 40.870099 ], [ -73.675573, 40.856999 ], [ -73.670692, 40.858708 ], [ -73.655872, 40.863899 ], [ -73.654372, 40.878199 ], [ -73.641072, 40.892599 ], [ -73.633771, 40.898198 ], [ -73.626972, 40.899397 ], [ -73.617571, 40.897898 ], [ -73.601870, 40.902798 ], [ -73.595170, 40.907298 ], [ -73.569969, 40.915398 ], [ -73.566169, 40.915798 ], [ -73.548068, 40.908698 ], [ -73.519267, 40.914298 ], [ -73.514999, 40.912821 ], [ -73.499941, 40.918166 ], [ -73.497061, 40.922801 ], [ -73.496642, 40.923476 ], [ -73.491765, 40.942097 ], [ -73.485365, 40.946397 ], [ -73.484798, 40.946065 ], [ -73.480110, 40.943319 ], [ -73.478365, 40.942297 ], [ -73.474410, 40.941056 ], [ -73.463708, 40.937697 ], [ -73.460603, 40.937375 ], [ -73.456523, 40.936953 ], [ -73.445026, 40.935763 ], [ -73.437509, 40.934985 ], [ -73.436664, 40.934897 ], [ -73.429863, 40.929797 ], [ -73.429665, 40.928203 ], [ -73.428836, 40.921506 ], [ -73.406074, 40.920235 ], [ -73.402963, 40.925097 ], [ -73.403462, 40.942197 ], [ -73.400862, 40.953997 ], [ -73.399762, 40.955197 ], [ -73.392862, 40.955297 ], [ -73.374462, 40.937597 ], [ -73.365961, 40.931697 ], [ -73.352761, 40.926697 ], [ -73.345561, 40.925297 ], [ -73.344161, 40.927297 ], [ -73.331360, 40.929597 ], [ -73.295061, 40.924497 ], [ -73.295059, 40.924497 ], [ -73.229285, 40.905121 ], [ -73.148994, 40.928898 ], [ -73.146242, 40.935074 ], [ -73.144673, 40.955842 ], [ -73.140785, 40.966178 ], [ -73.110368, 40.971938 ], [ -73.081582, 40.973058 ], [ -73.043701, 40.962185 ], [ -73.040445, 40.964498 ], [ -72.995931, 40.966498 ], [ -72.955163, 40.966146 ], [ -72.913834, 40.962466 ], [ -72.888250, 40.962962 ], [ -72.826057, 40.969794 ], [ -72.774104, 40.965314 ], [ -72.760031, 40.975334 ], [ -72.714425, 40.985596 ], [ -72.689341, 40.989776 ], [ -72.665018, 40.987496 ], [ -72.635374, 40.990536 ], [ -72.585327, 40.997587 ], [ -72.565406, 41.009508 ], [ -72.560974, 41.015444 ], [ -72.549853, 41.019844 ], [ -72.521548, 41.037652 ], [ -72.477306, 41.052212 ], [ -72.460778, 41.067012 ], [ -72.445242, 41.086116 ], [ -72.417945, 41.087955 ], [ -72.397000, 41.096307 ], [ -72.356087, 41.133635 ], [ -72.333351, 41.138018 ], [ -72.322381, 41.140664 ], [ -72.291109, 41.155874 ], [ -72.278789, 41.158722 ], [ -72.272997, 41.155010 ], [ -72.268100, 41.154146 ], [ -72.245348, 41.161217 ], [ -72.238211, 41.159490 ], [ -72.237731, 41.156434 ], [ -72.253572, 41.137138 ], [ -72.265124, 41.128482 ], [ -72.300374, 41.112274 ], [ -72.300044, 41.132059 ], [ -72.306381, 41.137840 ], [ -72.312734, 41.138546 ], [ -72.318146, 41.137134 ], [ -72.326630, 41.132162 ], [ -72.335271, 41.120274 ], [ -72.335177, 41.106917 ], [ -72.317238, 41.088659 ], [ -72.297718, 41.081042 ], [ -72.280373, 41.080402 ], [ -72.276709, 41.076722 ], [ -72.283093, 41.067874 ], [ -72.273657, 41.051533 ], [ -72.260515, 41.042065 ], [ -72.241252, 41.044770 ], [ -72.229364, 41.044355 ], [ -72.217476, 41.040611 ], [ -72.201859, 41.032275 ], [ -72.190563, 41.032579 ], [ -72.183266, 41.035619 ], [ -72.179490, 41.038435 ], [ -72.174882, 41.046147 ], [ -72.162898, 41.053187 ], [ -72.160370, 41.053827 ], [ -72.153857, 41.051859 ], [ -72.137297, 41.039684 ], [ -72.135137, 41.031284 ], [ -72.137409, 41.023908 ], [ -72.116368, 40.999796 ], [ -72.109008, 40.994084 ], [ -72.102160, 40.991509 ], [ -72.095456, 40.991349 ], [ -72.083039, 40.996453 ], [ -72.079951, 41.003429 ], [ -72.079208, 41.006437 ], [ -72.076175, 41.009093 ], [ -72.061448, 41.009442 ], [ -72.057934, 41.004789 ], [ -72.057075, 41.004893 ], [ -72.055188, 41.005236 ], [ -72.051585, 41.006437 ], [ -72.049526, 41.009697 ], [ -72.051549, 41.015741 ], [ -72.051928, 41.020506 ], [ -72.047468, 41.022565 ], [ -72.035792, 41.020759 ], [ -72.015013, 41.028348 ], [ -71.999260, 41.039669 ], [ -71.967040, 41.047772 ], [ -71.961078, 41.054277 ], [ -71.960355, 41.059878 ], [ -71.961563, 41.064021 ], [ -71.959595, 41.071237 ], [ -71.938250, 41.077413 ], [ -71.919385, 41.080517 ], [ -71.899256, 41.080837 ], [ -71.895496, 41.077381 ], [ -71.889543, 41.075701 ], [ -71.869558, 41.075046 ], [ -71.864470, 41.076918 ], [ -71.857494, 41.073558 ], [ -71.856214, 41.070598 ], [ -71.873910, 41.052278 ], [ -71.903736, 41.040166 ], [ -71.935689, 41.034182 ], [ -72.029357, 40.999909 ], [ -72.114448, 40.972085 ], [ -72.395850, 40.866660 ], [ -72.469996, 40.842740 ], [ -72.573441, 40.813251 ], [ -72.745208, 40.767091 ], [ -72.753112, 40.763571 ], [ -72.757176, 40.764371 ], [ -72.768152, 40.761587 ], [ -72.863164, 40.732962 ], [ -72.923214, 40.713282 ], [ -73.012545, 40.679651 ], [ -73.054963, 40.666371 ], [ -73.145266, 40.645491 ], [ -73.208440, 40.630884 ], [ -73.239140, 40.625100 ], [ -73.262106, 40.621476 ], [ -73.264493, 40.621437 ], [ -73.306396, 40.620756 ], [ -73.309740, 40.622532 ], [ -73.319257, 40.635795 ], [ -73.351465, 40.630500 ], [ -73.391967, 40.617501 ], [ -73.423806, 40.609869 ], [ -73.450369, 40.603501 ], [ -73.562372, 40.583703 ], [ -73.583773, 40.586703 ], [ -73.610873, 40.587703 ], [ -73.646674, 40.582804 ], [ -73.701138, 40.583610 ], [ -73.754776, 40.584404 ], [ -73.754323, 40.586357 ], [ -73.753349, 40.590560 ], [ -73.774928, 40.590759 ], [ -73.801430, 40.585659 ], [ -73.806834, 40.584619 ], [ -73.834408, 40.577201 ], [ -73.878906, 40.560888 ], [ -73.934512, 40.545175 ], [ -73.934466, 40.555281 ], [ -73.932729, 40.560266 ], [ -73.935686, 40.564914 ], [ -73.938598, 40.566161 ], [ -73.944558, 40.568716 ], [ -73.950050, 40.573363 ], [ -73.959380, 40.572682 ], [ -73.991346, 40.570350 ], [ -74.002056, 40.570623 ], [ -74.009030, 40.572846 ], [ -74.012022, 40.574528 ], [ -74.012996, 40.578169 ], [ -74.007276, 40.583616 ], [ -74.006350, 40.584767 ], [ -74.001591, 40.590684 ], [ -74.003281, 40.595754 ], [ -74.010926, 40.600789 ], [ -74.032856, 40.604421 ], [ -74.039590, 40.612934 ], [ -74.042412, 40.624847 ], [ -74.038336, 40.637074 ], [ -74.035868, 40.640776 ], [ -74.032066, 40.646479 ], [ -74.018272, 40.659019 ], [ -74.020467, 40.678770 ], [ -74.022911, 40.681267 ], [ -74.023982, 40.682360 ], [ -74.024827, 40.687007 ], [ -74.021721, 40.693504 ], [ -74.018490, 40.695457 ], [ -74.016800, 40.701794 ], [ -74.019526, 40.706985 ], [ -74.024543, 40.709436 ], [ -74.013784, 40.756601 ], [ -74.009184, 40.763601 ], [ -74.000905, 40.776488 ], [ -73.993029, 40.788746 ], [ -73.986864, 40.798344 ], [ -73.948281, 40.858399 ], [ -73.938081, 40.874699 ], [ -73.933408, 40.882075 ], [ -73.933406, 40.882078 ], [ -73.927470, 40.895682 ], [ -73.919705, 40.913478 ], [ -73.917905, 40.917577 ], [ -73.893979, 40.997197 ], [ -73.902680, 40.997297 ], [ -73.911880, 41.001297 ], [ -74.041049, 41.059086 ], [ -74.041054, 41.059088 ], [ -74.092486, 41.081896 ], [ -74.096786, 41.083796 ], [ -74.213373, 41.133828 ], [ -74.234473, 41.142883 ], [ -74.365664, 41.203400 ], [ -74.392098, 41.215594 ], [ -74.457584, 41.248225 ], [ -74.694914, 41.357423 ], [ -74.689767, 41.361558 ], [ -74.691129, 41.367324 ], [ -74.752562, 41.426518 ], [ -74.755950, 41.426804 ], [ -74.799165, 41.430451 ], [ -74.876721, 41.440338 ], [ -74.891948, 41.448853 ], [ -74.912517, 41.475605 ], [ -74.939760, 41.483371 ], [ -74.984226, 41.506299 ], [ -75.040490, 41.569688 ], [ -75.050074, 41.606893 ], [ -75.053077, 41.618552 ], [ -75.048199, 41.632011 ], [ -75.053431, 41.752538 ], [ -75.090799, 41.811991 ], [ -75.114399, 41.843583 ], [ -75.140241, 41.852078 ], [ -75.146446, 41.850899 ], [ -75.263005, 41.885109 ], [ -75.279094, 41.938917 ], [ -75.292589, 41.953897 ], [ -75.341868, 41.993262 ], [ -75.359579, 41.999445 ], [ -75.431961, 41.999363 ], [ -75.436216, 41.999353 ], [ -75.477144, 41.999407 ], [ -75.483150, 41.999259 ], [ -75.483738, 41.999244 ], [ -75.980250, 41.999035 ], [ -75.983082, 41.999035 ], [ -76.105840, 41.998858 ], [ -76.123696, 41.998954 ], [ -76.131201, 41.998954 ], [ -76.145519, 41.998913 ], [ -76.343722, 41.998346 ], [ -76.349898, 41.998410 ], [ -76.462155, 41.998934 ], [ -76.466540, 41.999025 ], [ -76.557624, 42.000149 ], [ -76.558118, 42.000155 ], [ -76.815878, 42.001673 ], [ -76.835079, 42.001773 ], [ -76.920784, 42.001774 ], [ -76.921884, 42.001674 ], [ -76.927084, 42.001674 ], [ -76.937084, 42.001674 ], [ -76.942585, 42.001574 ], [ -76.965686, 42.001274 ], [ -76.965728, 42.001274 ], [ -77.007536, 42.000819 ], [ -77.007635, 42.000848 ], [ -77.124693, 41.999395 ], [ -77.505308, 42.000070 ], [ -77.610028, 41.999519 ], [ -77.749931, 41.998782 ], [ -77.822799, 41.998547 ], [ -77.832030, 41.998524 ], [ -78.030963, 41.999392 ], [ -78.031177, 41.999415 ], [ -78.124730, 42.000452 ], [ -78.206606, 41.999989 ], [ -78.308128, 41.999415 ], [ -78.596650, 41.999877 ], [ -78.874759, 41.997559 ], [ -78.918854, 41.997961 ], [ -79.052473, 41.999179 ], [ -79.061265, 41.999259 ], [ -79.538445, 41.998527 ], [ -79.551385, 41.998666 ], [ -79.610839, 41.998989 ], [ -79.625301, 41.999068 ], [ -79.625287, 41.999003 ], [ -79.761374, 41.999067 ], [ -79.762122, 42.131246 ], [ -79.761861, 42.150712 ], [ -79.761759, 42.162675 ], [ -79.761921, 42.173319 ], [ -79.761929, 42.179693 ], [ -79.761833, 42.183627 ], [ -79.762152, 42.243054 ], [ -79.761964, 42.251354 ], [ -79.761951, 42.269860 ], [ -79.717825, 42.284711 ], [ -79.645358, 42.315631 ], [ -79.593992, 42.341641 ], [ -79.546262, 42.363417 ], [ -79.510999, 42.382373 ], [ -79.474794, 42.404291 ], [ -79.453533, 42.411157 ], [ -79.429119, 42.428380 ], [ -79.405458, 42.453281 ], [ -79.381943, 42.466491 ], [ -79.362130, 42.480195 ], [ -79.351989, 42.488920 ], [ -79.342316, 42.489664 ], [ -79.335129, 42.488321 ], [ -79.331483, 42.489076 ], [ -79.323079, 42.494795 ], [ -79.317740, 42.499884 ], [ -79.283364, 42.511228 ], [ -79.264624, 42.523159 ], [ -79.242889, 42.531757 ], [ -79.223195, 42.536087 ], [ -79.193232, 42.545881 ], [ -79.148723, 42.553672 ], [ -79.138569, 42.564462 ], [ -79.136725, 42.569693 ], [ -79.129630, 42.589824 ], [ -79.126261, 42.590937 ], [ -79.121921, 42.594234 ], [ -79.113713, 42.605994 ], [ -79.111361, 42.613358 ], [ -79.078761, 42.640058 ], [ -79.073261, 42.639958 ], [ -79.063760, 42.644758 ], [ -79.062261, 42.668358 ], [ -79.048860, 42.689158 ], [ -79.018860, 42.701558 ], [ -79.006160, 42.704558 ], [ -78.991159, 42.705358 ], [ -78.944158, 42.731958 ], [ -78.918157, 42.737258 ], [ -78.868556, 42.770258 ], [ -78.853455, 42.783958 ], [ -78.851355, 42.791758 ], [ -78.856456, 42.800258 ], [ -78.859356, 42.800658 ], [ -78.863656, 42.813058 ], [ -78.865656, 42.826758 ], [ -78.860445, 42.835110 ], [ -78.859456, 42.841358 ], [ -78.865592, 42.852358 ], [ -78.872227, 42.853306 ], [ -78.882557, 42.867258 ], [ -78.891655, 42.884845 ], [ -78.912458, 42.886557 ], [ -78.905758, 42.899957 ], [ -78.905659, 42.923357 ], [ -78.909159, 42.933257 ], [ -78.918859, 42.946857 ], [ -78.921206, 42.948422 ], [ -78.932360, 42.955857 ], [ -78.972524, 42.966804 ], [ -79.011563, 42.985256 ], [ -79.019964, 42.994756 ], [ -79.028353, 43.066897 ], [ -79.028653, 43.069474 ], [ -79.058399, 43.075231 ], [ -79.066269, 43.090970 ], [ -79.056767, 43.126855 ], [ -79.044066, 43.138055 ], [ -79.042366, 43.143655 ], [ -79.058399, 43.238924 ], [ -79.070469, 43.262454 ], [ -79.019848, 43.273686 ], [ -78.971866, 43.281254 ], [ -78.930764, 43.293254 ], [ -78.859362, 43.310955 ], [ -78.836261, 43.318455 ], [ -78.834061, 43.317555 ], [ -78.777759, 43.327055 ], [ -78.747158, 43.334555 ], [ -78.696856, 43.341255 ], [ -78.634346, 43.357624 ], [ -78.547395, 43.369541 ], [ -78.488857, 43.374763 ], [ -78.482526, 43.374425 ], [ -78.473099, 43.370812 ], [ -78.465502, 43.371232 ], [ -78.370221, 43.376505 ], [ -78.358711, 43.373988 ], [ -78.250641, 43.370866 ], [ -78.233609, 43.369070 ], [ -78.145195, 43.375510 ], [ -78.104509, 43.375628 ], [ -78.023609, 43.366575 ], [ -77.995591, 43.365293 ], [ -77.994838, 43.365259 ], [ -77.976438, 43.369159 ], [ -77.965238, 43.368059 ], [ -77.952937, 43.363460 ], [ -77.922736, 43.356960 ], [ -77.904836, 43.356960 ], [ -77.875335, 43.349660 ], [ -77.816533, 43.343560 ], [ -77.797381, 43.339857 ], [ -77.785132, 43.339261 ], [ -77.760231, 43.341161 ], [ -77.756931, 43.337361 ], [ -77.730630, 43.330161 ], [ -77.714129, 43.323561 ], [ -77.701429, 43.308261 ], [ -77.660359, 43.282998 ], [ -77.653759, 43.279484 ], [ -77.628315, 43.271303 ], [ -77.602161, 43.256949 ], [ -77.577223, 43.243263 ], [ -77.551022, 43.235763 ], [ -77.534184, 43.234569 ], [ -77.500920, 43.250363 ], [ -77.476642, 43.254522 ], [ -77.436831, 43.265701 ], [ -77.414516, 43.269263 ], [ -77.391015, 43.276363 ], [ -77.385388, 43.276847 ], [ -77.376038, 43.277652 ], [ -77.341092, 43.280661 ], [ -77.314619, 43.281030 ], [ -77.303979, 43.278150 ], [ -77.264177, 43.277363 ], [ -77.214058, 43.284114 ], [ -77.173088, 43.281509 ], [ -77.143416, 43.287561 ], [ -77.130429, 43.285635 ], [ -77.111866, 43.287945 ], [ -77.067295, 43.280937 ], [ -77.033875, 43.271218 ], [ -76.999691, 43.271456 ], [ -76.988445, 43.274500 ], [ -76.958402, 43.270005 ], [ -76.952174, 43.270692 ], [ -76.922351, 43.285006 ], [ -76.904288, 43.291816 ], [ -76.886913, 43.293891 ], [ -76.877397, 43.292926 ], [ -76.854976, 43.298443 ], [ -76.841675, 43.305399 ], [ -76.794708, 43.309632 ], [ -76.769025, 43.318452 ], [ -76.747067, 43.331477 ], [ -76.731039, 43.343421 ], [ -76.722501, 43.343686 ], [ -76.698360, 43.344436 ], [ -76.684856, 43.352691 ], [ -76.669624, 43.366526 ], [ -76.642672, 43.401241 ], [ -76.630774, 43.413356 ], [ -76.617109, 43.419137 ], [ -76.607093, 43.423374 ], [ -76.562826, 43.448537 ], [ -76.531810, 43.460299 ], [ -76.521999, 43.468617 ], [ -76.515882, 43.471136 ], [ -76.506858, 43.469127 ], [ -76.486962, 43.475350 ], [ -76.472498, 43.492781 ], [ -76.437473, 43.509213 ], [ -76.417581, 43.521285 ], [ -76.410636, 43.523159 ], [ -76.368849, 43.525822 ], [ -76.345492, 43.513437 ], [ -76.330911, 43.511978 ], [ -76.297103, 43.512870 ], [ -76.259858, 43.524728 ], [ -76.235834, 43.529256 ], [ -76.228701, 43.532987 ], [ -76.217958, 43.545156 ], [ -76.209853, 43.560136 ], [ -76.203473, 43.574978 ], [ -76.199138, 43.600454 ], [ -76.196596, 43.649761 ], [ -76.200500, 43.680231 ], [ -76.205436, 43.718751 ], [ -76.213205, 43.753513 ], [ -76.229268, 43.804135 ], [ -76.250135, 43.825713 ], [ -76.266977, 43.838046 ], [ -76.277812, 43.841205 ], [ -76.283307, 43.843923 ], [ -76.284481, 43.850968 ], [ -76.282720, 43.858601 ], [ -76.276262, 43.863297 ], [ -76.269217, 43.868581 ], [ -76.261584, 43.873278 ], [ -76.249842, 43.875626 ], [ -76.243384, 43.877975 ], [ -76.234578, 43.877388 ], [ -76.227485, 43.875061 ], [ -76.219313, 43.866820 ], [ -76.202257, 43.864898 ], [ -76.192777, 43.869175 ], [ -76.180604, 43.877529 ], [ -76.158249, 43.887542 ], [ -76.145506, 43.888681 ], [ -76.133267, 43.892975 ], [ -76.127285, 43.897889 ], [ -76.125023, 43.912773 ], [ -76.130446, 43.933082 ], [ -76.133697, 43.940356 ], [ -76.134359, 43.945614 ], [ -76.134296, 43.954726 ], [ -76.139086, 43.962111 ], [ -76.146072, 43.964705 ], [ -76.169802, 43.962202 ], [ -76.184874, 43.971128 ], [ -76.228050, 43.982737 ], [ -76.236864, 43.977900 ], [ -76.244439, 43.975803 ], [ -76.252318, 43.975803 ], [ -76.258306, 43.976118 ], [ -76.264294, 43.978009 ], [ -76.268706, 43.980846 ], [ -76.268702, 43.987278 ], [ -76.266733, 43.995578 ], [ -76.269672, 44.001148 ], [ -76.281928, 44.009177 ], [ -76.287821, 44.011420 ], [ -76.296755, 44.013307 ], [ -76.298962, 44.017719 ], [ -76.300222, 44.022762 ], [ -76.299592, 44.030956 ], [ -76.296986, 44.045455 ], [ -76.300532, 44.057188 ], [ -76.304207, 44.059445 ], [ -76.360306, 44.070907 ], [ -76.360798, 44.087644 ], [ -76.366972, 44.100409 ], [ -76.363835, 44.111696 ], [ -76.358163, 44.123337 ], [ -76.355679, 44.133258 ], [ -76.312647, 44.199044 ], [ -76.286547, 44.203773 ], [ -76.245487, 44.203669 ], [ -76.206777, 44.214543 ], [ -76.191328, 44.221244 ], [ -76.164265, 44.239603 ], [ -76.118136, 44.294850 ], [ -76.045228, 44.331724 ], [ -76.000998, 44.347534 ], [ -75.978281, 44.346880 ], [ -75.970185, 44.342835 ], [ -75.949540, 44.349129 ], [ -75.912985, 44.368084 ], [ -75.871496, 44.394839 ], [ -75.860060, 44.403282 ], [ -75.820830, 44.432244 ], [ -75.807778, 44.471644 ], [ -75.765495, 44.516285 ], [ -75.696586, 44.567583 ], [ -75.491201, 44.712947 ], [ -75.433124, 44.750062 ], [ -75.333744, 44.806378 ], [ -75.301975, 44.826637 ], [ -75.307630, 44.836813 ], [ -75.283136, 44.849156 ], [ -75.216486, 44.877478 ], [ -75.189313, 44.883037 ], [ -75.139868, 44.896676 ], [ -75.064826, 44.929449 ], [ -75.027125, 44.946568 ], [ -75.005155, 44.958402 ], [ -74.999655, 44.965921 ], [ -74.999270, 44.971638 ], [ -74.992756, 44.977449 ], [ -74.972463, 44.983402 ], [ -74.826578, 45.015850 ], [ -74.801625, 45.014571 ], [ -74.724980, 45.005915 ], [ -74.702018, 45.003322 ], [ -74.291307, 44.992058 ], [ -74.146814, 44.991500 ], [ -74.027392, 44.995765 ], [ -73.874597, 45.001223 ], [ -73.624588, 45.003954 ], [ -73.343124, 45.010840 ], [ -73.350188, 44.994304 ], [ -73.359450, 44.915684 ], [ -73.369647, 44.829136 ], [ -73.339958, 44.778893 ], [ -73.365326, 44.703294 ], [ -73.390231, 44.618353 ], [ -73.374389, 44.575455 ], [ -73.361952, 44.563064 ], [ -73.356788, 44.557918 ], [ -73.338634, 44.546847 ], [ -73.338630, 44.546844 ], [ -73.306707, 44.500334 ], [ -73.299885, 44.476652 ], [ -73.293613, 44.438903 ], [ -73.296031, 44.428339 ], [ -73.315016, 44.388513 ], [ -73.323268, 44.264796 ], [ -73.324681, 44.243614 ], [ -73.350806, 44.225943 ], [ -73.390583, 44.190886 ], [ -73.403686, 44.153102 ] ] ] ] } }\n,\n{ \"type\": \"Feature\", \"properties\": { \"GEO_ID\": \"0400000US39\", \"STATE\": \"39\", \"NAME\": \"Ohio\", \"LSAD\": \"\", \"CENSUSAREA\": 40860.694000 }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [ [ [ [ -82.700208, 41.612190 ], [ -82.691123, 41.611331 ], [ -82.680150, 41.618970 ], [ -82.677772, 41.617986 ], [ -82.680669, 41.594611 ], [ -82.686033, 41.587246 ], [ -82.688744, 41.585896 ], [ -82.702027, 41.585437 ], [ -82.725827, 41.595199 ], [ -82.735766, 41.600982 ], [ -82.735707, 41.603361 ], [ -82.718802, 41.619629 ], [ -82.707310, 41.619609 ], [ -82.703438, 41.617734 ], [ -82.700208, 41.612190 ] ] ], [ [ [ -82.824731, 41.659428 ], [ -82.808587, 41.661682 ], [ -82.805179, 41.664281 ], [ -82.796333, 41.665973 ], [ -82.793069, 41.664692 ], [ -82.794198, 41.662496 ], [ -82.797493, 41.658197 ], [ -82.827011, 41.633701 ], [ -82.834662, 41.629331 ], [ -82.842099, 41.628323 ], [ -82.843602, 41.647009 ], [ -82.834092, 41.657121 ], [ -82.824731, 41.659428 ] ] ], [ [ [ -82.803341, 41.693837 ], [ -82.786304, 41.697140 ], [ -82.782719, 41.694003 ], [ -82.790561, 41.689970 ], [ -82.801539, 41.682577 ], [ -82.805137, 41.674931 ], [ -82.805423, 41.671920 ], [ -82.813781, 41.670594 ], [ -82.826443, 41.684774 ], [ -82.812805, 41.692002 ], [ -82.803341, 41.693837 ] ] ], [ [ [ -82.813489, 41.723468 ], [ -82.810487, 41.720524 ], [ -82.808869, 41.708333 ], [ -82.816133, 41.706732 ], [ -82.835118, 41.708971 ], [ -82.835577, 41.710823 ], [ -82.832709, 41.715650 ], [ -82.825720, 41.722810 ], [ -82.820409, 41.724549 ], [ -82.813489, 41.723468 ] ] ], [ [ [ -81.749689, 39.180742 ], [ -81.747253, 39.095379 ], [ -81.747253, 39.095378 ], [ -81.812355, 39.082078 ], [ -81.814155, 39.073478 ], [ -81.811655, 39.059578 ], [ -81.803355, 39.047678 ], [ -81.793304, 39.040353 ], [ -81.772854, 39.026179 ], [ -81.764253, 39.015279 ], [ -81.756131, 38.933545 ], [ -81.759995, 38.925828 ], [ -81.874857, 38.881174 ], [ -81.908645, 38.878460 ], [ -81.926967, 38.891602 ], [ -81.928352, 38.895371 ], [ -81.926671, 38.901311 ], [ -81.900910, 38.924338 ], [ -81.898470, 38.929603 ], [ -81.900595, 38.937671 ], [ -81.919783, 38.968494 ], [ -81.935619, 38.989500 ], [ -82.002261, 39.027878 ], [ -82.017562, 39.030078 ], [ -82.035963, 39.025478 ], [ -82.041563, 39.017878 ], [ -82.045663, 39.003778 ], [ -82.051563, 38.994378 ], [ -82.093165, 38.970980 ], [ -82.098762, 38.958288 ], [ -82.139279, 38.866407 ], [ -82.184428, 38.816529 ], [ -82.191172, 38.815137 ], [ -82.215759, 38.797462 ], [ -82.221566, 38.787187 ], [ -82.220449, 38.773739 ], [ -82.198882, 38.757725 ], [ -82.188268, 38.734082 ], [ -82.182467, 38.708782 ], [ -82.172066, 38.625984 ], [ -82.172066, 38.619284 ], [ -82.175167, 38.608484 ], [ -82.177267, 38.603784 ], [ -82.181967, 38.599384 ], [ -82.193824, 38.593096 ], [ -82.218967, 38.591683 ], [ -82.245969, 38.598483 ], [ -82.262070, 38.598183 ], [ -82.274270, 38.593683 ], [ -82.287102, 38.582588 ], [ -82.291271, 38.578983 ], [ -82.293871, 38.572683 ], [ -82.293271, 38.560283 ], [ -82.295571, 38.539783 ], [ -82.313935, 38.468084 ], [ -82.320223, 38.454516 ], [ -82.323999, 38.449268 ], [ -82.330335, 38.444500 ], [ -82.340640, 38.440948 ], [ -82.506670, 38.410092 ], [ -82.520178, 38.407582 ], [ -82.560664, 38.404338 ], [ -82.593673, 38.421809 ], [ -82.665485, 38.505734 ], [ -82.665548, 38.505808 ], [ -82.690509, 38.536576 ], [ -82.696621, 38.542112 ], [ -82.724846, 38.557600 ], [ -82.730958, 38.559264 ], [ -82.789776, 38.559951 ], [ -82.800112, 38.563183 ], [ -82.816012, 38.570733 ], [ -82.820161, 38.572703 ], [ -82.839538, 38.586159 ], [ -82.847186, 38.595166 ], [ -82.853554, 38.610926 ], [ -82.869592, 38.678177 ], [ -82.873492, 38.710077 ], [ -82.870392, 38.722077 ], [ -82.869992, 38.730477 ], [ -82.871292, 38.739376 ], [ -82.874466, 38.745346 ], [ -82.875492, 38.747276 ], [ -82.879492, 38.751476 ], [ -82.889193, 38.756076 ], [ -82.894193, 38.756576 ], [ -82.923694, 38.750076 ], [ -82.943147, 38.743280 ], [ -82.968695, 38.728776 ], [ -82.979395, 38.725976 ], [ -83.011816, 38.730057 ], [ -83.030702, 38.725720 ], [ -83.030889, 38.725560 ], [ -83.127652, 38.642451 ], [ -83.135046, 38.631719 ], [ -83.142836, 38.625076 ], [ -83.156926, 38.620547 ], [ -83.265769, 38.605278 ], [ -83.282100, 38.602987 ], [ -83.320531, 38.622713 ], [ -83.324157, 38.633326 ], [ -83.333347, 38.641562 ], [ -83.369077, 38.659334 ], [ -83.512571, 38.701716 ], [ -83.520953, 38.703045 ], [ -83.533339, 38.702105 ], [ -83.574754, 38.692671 ], [ -83.615736, 38.684145 ], [ -83.626922, 38.679387 ], [ -83.636208, 38.670584 ], [ -83.642994, 38.643273 ], [ -83.646701, 38.637489 ], [ -83.649737, 38.632753 ], [ -83.655425, 38.629735 ], [ -83.663911, 38.627930 ], [ -83.679484, 38.630036 ], [ -83.706043, 38.637101 ], [ -83.762445, 38.652103 ], [ -83.769347, 38.655220 ], [ -83.773682, 38.661309 ], [ -83.777823, 38.674453 ], [ -83.853330, 38.752572 ], [ -83.859028, 38.756793 ], [ -83.870443, 38.761608 ], [ -83.903918, 38.768150 ], [ -83.903971, 38.768160 ], [ -83.943978, 38.783616 ], [ -83.962123, 38.787384 ], [ -83.978814, 38.787104 ], [ -84.044486, 38.770572 ], [ -84.052707, 38.770542 ], [ -84.071491, 38.770475 ], [ -84.205592, 38.802588 ], [ -84.212904, 38.805707 ], [ -84.225300, 38.817665 ], [ -84.229954, 38.827650 ], [ -84.231306, 38.830552 ], [ -84.233727, 38.853576 ], [ -84.232478, 38.874638 ], [ -84.232132, 38.880483 ], [ -84.234453, 38.893226 ], [ -84.304698, 39.006455 ], [ -84.313680, 39.016981 ], [ -84.319936, 39.022081 ], [ -84.326539, 39.027463 ], [ -84.432841, 39.094261 ], [ -84.493743, 39.102460 ], [ -84.502062, 39.096641 ], [ -84.506082, 39.095081 ], [ -84.509743, 39.093660 ], [ -84.510057, 39.093593 ], [ -84.603444, 39.073699 ], [ -84.620112, 39.073457 ], [ -84.623732, 39.074427 ], [ -84.632446, 39.076760 ], [ -84.684847, 39.100459 ], [ -84.689747, 39.104159 ], [ -84.718548, 39.137059 ], [ -84.732048, 39.144458 ], [ -84.744149, 39.147458 ], [ -84.754449, 39.146658 ], [ -84.766749, 39.138558 ], [ -84.787680, 39.115297 ], [ -84.820157, 39.105480 ], [ -84.819985, 39.149081 ], [ -84.819826, 39.156504 ], [ -84.819802, 39.157613 ], [ -84.819813, 39.244334 ], [ -84.819801, 39.247806 ], [ -84.819859, 39.251018 ], [ -84.819633, 39.261855 ], [ -84.819622, 39.271590 ], [ -84.819451, 39.305152 ], [ -84.819451, 39.305153 ], [ -84.819352, 39.309454 ], [ -84.817453, 39.391753 ], [ -84.815754, 39.477352 ], [ -84.815754, 39.477358 ], [ -84.815555, 39.510952 ], [ -84.815555, 39.511052 ], [ -84.815355, 39.521950 ], [ -84.815355, 39.521951 ], [ -84.815155, 39.548051 ], [ -84.814955, 39.566251 ], [ -84.814955, 39.567251 ], [ -84.815036, 39.567695 ], [ -84.815156, 39.568351 ], [ -84.814705, 39.628854 ], [ -84.814619, 39.669174 ], [ -84.814530, 39.680429 ], [ -84.814129, 39.726556 ], [ -84.814129, 39.726620 ], [ -84.814189, 39.785569 ], [ -84.814179, 39.786853 ], [ -84.814209, 39.799755 ], [ -84.814120, 39.811398 ], [ -84.814179, 39.814212 ], [ -84.813852, 39.824621 ], [ -84.813793, 39.826771 ], [ -84.813703, 39.843059 ], [ -84.813674, 39.843173 ], [ -84.813549, 39.850773 ], [ -84.813464, 39.853261 ], [ -84.813050, 39.872958 ], [ -84.812787, 39.890830 ], [ -84.812698, 39.891585 ], [ -84.812411, 39.916915 ], [ -84.812411, 39.916916 ], [ -84.812357, 39.921764 ], [ -84.812193, 39.927340 ], [ -84.810670, 40.005074 ], [ -84.810099, 40.034214 ], [ -84.809737, 40.048929 ], [ -84.808706, 40.107216 ], [ -84.808305, 40.127018 ], [ -84.808291, 40.129027 ], [ -84.806766, 40.180128 ], [ -84.806347, 40.192252 ], [ -84.806340, 40.192327 ], [ -84.806175, 40.197995 ], [ -84.805627, 40.223659 ], [ -84.804098, 40.302498 ], [ -84.803918, 40.310094 ], [ -84.803917, 40.310115 ], [ -84.804119, 40.352757 ], [ -84.804119, 40.352844 ], [ -84.803068, 40.465388 ], [ -84.802483, 40.528046 ], [ -84.802265, 40.572212 ], [ -84.802265, 40.572215 ], [ -84.802135, 40.644859 ], [ -84.802193, 40.660298 ], [ -84.802220, 40.674776 ], [ -84.802157, 40.689324 ], [ -84.802127, 40.691405 ], [ -84.802094, 40.702476 ], [ -84.802181, 40.718602 ], [ -84.802119, 40.728146 ], [ -84.802119, 40.728163 ], [ -84.802266, 40.742298 ], [ -84.802538, 40.765515 ], [ -84.802935, 40.922377 ], [ -84.802936, 40.922568 ], [ -84.803313, 40.989209 ], [ -84.803313, 40.989394 ], [ -84.803374, 41.089302 ], [ -84.803378, 41.096867 ], [ -84.803413, 41.164649 ], [ -84.803594, 41.173203 ], [ -84.803472, 41.173889 ], [ -84.803492, 41.252531 ], [ -84.803492, 41.252562 ], [ -84.803580, 41.270942 ], [ -84.803581, 41.271079 ], [ -84.803582, 41.271273 ], [ -84.803926, 41.367959 ], [ -84.804133, 41.408292 ], [ -84.804046, 41.408361 ], [ -84.804015, 41.411655 ], [ -84.803956, 41.426044 ], [ -84.803956, 41.426128 ], [ -84.803919, 41.435531 ], [ -84.804457, 41.488224 ], [ -84.804551, 41.500364 ], [ -84.804729, 41.530092 ], [ -84.804729, 41.530135 ], [ -84.804729, 41.530231 ], [ -84.805812, 41.613040 ], [ -84.805696, 41.631398 ], [ -84.805673, 41.632342 ], [ -84.806210, 41.674550 ], [ -84.806082, 41.696089 ], [ -84.438067, 41.704903 ], [ -84.399546, 41.705758 ], [ -84.399430, 41.705761 ], [ -84.396547, 41.705935 ], [ -84.360419, 41.706925 ], [ -83.880539, 41.720081 ], [ -83.880387, 41.720086 ], [ -83.763155, 41.723910 ], [ -83.685337, 41.726449 ], [ -83.665937, 41.726949 ], [ -83.639636, 41.727749 ], [ -83.636636, 41.727849 ], [ -83.595235, 41.729148 ], [ -83.593835, 41.729148 ], [ -83.585235, 41.729348 ], [ -83.504334, 41.731547 ], [ -83.503433, 41.731547 ], [ -83.499733, 41.731647 ], [ -83.497733, 41.731847 ], [ -83.453832, 41.732647 ], [ -83.455626, 41.727445 ], [ -83.449001, 41.710719 ], [ -83.446032, 41.706847 ], [ -83.409531, 41.691247 ], [ -83.392630, 41.691947 ], [ -83.375730, 41.686647 ], [ -83.357073, 41.687763 ], [ -83.341817, 41.693518 ], [ -83.337985, 41.698682 ], [ -83.337977, 41.703410 ], [ -83.326825, 41.701562 ], [ -83.298731, 41.683871 ], [ -83.295610, 41.681905 ], [ -83.293928, 41.680846 ], [ -83.290680, 41.676794 ], [ -83.289682, 41.676409 ], [ -83.288469, 41.675941 ], [ -83.287125, 41.675423 ], [ -83.285181, 41.674673 ], [ -83.278455, 41.672078 ], [ -83.238191, 41.651167 ], [ -83.231660, 41.644218 ], [ -83.194524, 41.631008 ], [ -83.165713, 41.623246 ], [ -83.145887, 41.617904 ], [ -83.103928, 41.613558 ], [ -83.086036, 41.606680 ], [ -83.066593, 41.595340 ], [ -83.048222, 41.573951 ], [ -83.043287, 41.568205 ], [ -83.043079, 41.567963 ], [ -83.042909, 41.567823 ], [ -83.031653, 41.558592 ], [ -83.030764, 41.557864 ], [ -83.028072, 41.555656 ], [ -83.019057, 41.550174 ], [ -83.017473, 41.549211 ], [ -83.016753, 41.548773 ], [ -82.999916, 41.538534 ], [ -82.999897, 41.538525 ], [ -82.969850, 41.524327 ], [ -82.969642, 41.524229 ], [ -82.969574, 41.524210 ], [ -82.958481, 41.521104 ], [ -82.934369, 41.514353 ], [ -82.897728, 41.519241 ], [ -82.896854, 41.519541 ], [ -82.888200, 41.522508 ], [ -82.882305, 41.525770 ], [ -82.875229, 41.529684 ], [ -82.869422, 41.533962 ], [ -82.866262, 41.537534 ], [ -82.861323, 41.543116 ], [ -82.857841, 41.547051 ], [ -82.856770, 41.548262 ], [ -82.856533, 41.550650 ], [ -82.855197, 41.564114 ], [ -82.856088, 41.566633 ], [ -82.856647, 41.568216 ], [ -82.858702, 41.574025 ], [ -82.859531, 41.576371 ], [ -82.857945, 41.578049 ], [ -82.857316, 41.578714 ], [ -82.856919, 41.579135 ], [ -82.854263, 41.581945 ], [ -82.852957, 41.583327 ], [ -82.847657, 41.585639 ], [ -82.834101, 41.587587 ], [ -82.820207, 41.570664 ], [ -82.794324, 41.546486 ], [ -82.785496, 41.540675 ], [ -82.772010, 41.540580 ], [ -82.749907, 41.546470 ], [ -82.739868, 41.545047 ], [ -82.732886, 41.544057 ], [ -82.731900, 41.543918 ], [ -82.731628, 41.543879 ], [ -82.730516, 41.543721 ], [ -82.728489, 41.543434 ], [ -82.727656, 41.543316 ], [ -82.722069, 41.542524 ], [ -82.720539, 41.542307 ], [ -82.717878, 41.541930 ], [ -82.717595, 41.541715 ], [ -82.715227, 41.539913 ], [ -82.711332, 41.536950 ], [ -82.710935, 41.536648 ], [ -82.710967, 41.536221 ], [ -82.711632, 41.527201 ], [ -82.716492, 41.522227 ], [ -82.721914, 41.516677 ], [ -82.719956, 41.510735 ], [ -82.719811, 41.510296 ], [ -82.713904, 41.501697 ], [ -82.710013, 41.497590 ], [ -82.694722, 41.493945 ], [ -82.687921, 41.492324 ], [ -82.658302, 41.461878 ], [ -82.617745, 41.431833 ], [ -82.616952, 41.428425 ], [ -82.558080, 41.400005 ], [ -82.513827, 41.384257 ], [ -82.499099, 41.381541 ], [ -82.481214, 41.381342 ], [ -82.460599, 41.386316 ], [ -82.431315, 41.396866 ], [ -82.398086, 41.413945 ], [ -82.361784, 41.426644 ], [ -82.348076, 41.428431 ], [ -82.334182, 41.430243 ], [ -82.291580, 41.428442 ], [ -82.283488, 41.429283 ], [ -82.268479, 41.430842 ], [ -82.254678, 41.434441 ], [ -82.193375, 41.464540 ], [ -82.188850, 41.468097 ], [ -82.186174, 41.473440 ], [ -82.184774, 41.474040 ], [ -82.181598, 41.471634 ], [ -82.165373, 41.474440 ], [ -82.094169, 41.495039 ], [ -82.011966, 41.515639 ], [ -81.994565, 41.514440 ], [ -81.968130, 41.506422 ], [ -81.964912, 41.505446 ], [ -81.962664, 41.501341 ], [ -81.958463, 41.498642 ], [ -81.937862, 41.491443 ], [ -81.930404, 41.490457 ], [ -81.928652, 41.490226 ], [ -81.877360, 41.483445 ], [ -81.860262, 41.483841 ], [ -81.850141, 41.486255 ], [ -81.837092, 41.489367 ], [ -81.836059, 41.489614 ], [ -81.810992, 41.495592 ], [ -81.810758, 41.495648 ], [ -81.801207, 41.496223 ], [ -81.800253, 41.496281 ], [ -81.799746, 41.496311 ], [ -81.794449, 41.496630 ], [ -81.794157, 41.496648 ], [ -81.782258, 41.496050 ], [ -81.768898, 41.491663 ], [ -81.768856, 41.491649 ], [ -81.762489, 41.490460 ], [ -81.758610, 41.489736 ], [ -81.746095, 41.487400 ], [ -81.745818, 41.487348 ], [ -81.744755, 41.487150 ], [ -81.744272, 41.487263 ], [ -81.741852, 41.487827 ], [ -81.738755, 41.488550 ], [ -81.732674, 41.491437 ], [ -81.727806, 41.493749 ], [ -81.726429, 41.494402 ], [ -81.725763, 41.494718 ], [ -81.719310, 41.497782 ], [ -81.716836, 41.498957 ], [ -81.715590, 41.499549 ], [ -81.710986, 41.501734 ], [ -81.710953, 41.501750 ], [ -81.707622, 41.505108 ], [ -81.706864, 41.505872 ], [ -81.693250, 41.514161 ], [ -81.691248, 41.515379 ], [ -81.688058, 41.517321 ], [ -81.664884, 41.531430 ], [ -81.664851, 41.531450 ], [ -81.649872, 41.535775 ], [ -81.648453, 41.536185 ], [ -81.641055, 41.538321 ], [ -81.633652, 41.540458 ], [ -81.627431, 41.544163 ], [ -81.616910, 41.550428 ], [ -81.616567, 41.550633 ], [ -81.615816, 41.551079 ], [ -81.610163, 41.554446 ], [ -81.609670, 41.554740 ], [ -81.599747, 41.560649 ], [ -81.593144, 41.565462 ], [ -81.593092, 41.565500 ], [ -81.591981, 41.566310 ], [ -81.591471, 41.566682 ], [ -81.579815, 41.575178 ], [ -81.579746, 41.575228 ], [ -81.579727, 41.575243 ], [ -81.579285, 41.575565 ], [ -81.578666, 41.576016 ], [ -81.577459, 41.576896 ], [ -81.575715, 41.578167 ], [ -81.575577, 41.578267 ], [ -81.562844, 41.587549 ], [ -81.531674, 41.612972 ], [ -81.531612, 41.613023 ], [ -81.529955, 41.614374 ], [ -81.529742, 41.614548 ], [ -81.527026, 41.615373 ], [ -81.520707, 41.617292 ], [ -81.509359, 41.620739 ], [ -81.500440, 41.623448 ], [ -81.488640, 41.631348 ], [ -81.486919, 41.632704 ], [ -81.477544, 41.640086 ], [ -81.466038, 41.649148 ], [ -81.452461, 41.663139 ], [ -81.447734, 41.668011 ], [ -81.443647, 41.672222 ], [ -81.442843, 41.673051 ], [ -81.442720, 41.673178 ], [ -81.442645, 41.673255 ], [ -81.442552, 41.673314 ], [ -81.441803, 41.673783 ], [ -81.441339, 41.674074 ], [ -81.438971, 41.675560 ], [ -81.437809, 41.676289 ], [ -81.437014, 41.676788 ], [ -81.435582, 41.677686 ], [ -81.431441, 41.680285 ], [ -81.413062, 41.691816 ], [ -81.407984, 41.695002 ], [ -81.406098, 41.696185 ], [ -81.404476, 41.697203 ], [ -81.402417, 41.698495 ], [ -81.400686, 41.699581 ], [ -81.400617, 41.699624 ], [ -81.388632, 41.707144 ], [ -81.388269, 41.707355 ], [ -81.380935, 41.711622 ], [ -81.374509, 41.715361 ], [ -81.374454, 41.715393 ], [ -81.373666, 41.715852 ], [ -81.372587, 41.716480 ], [ -81.368913, 41.718618 ], [ -81.368670, 41.718759 ], [ -81.367498, 41.719441 ], [ -81.353229, 41.727743 ], [ -81.330154, 41.737938 ], [ -81.309499, 41.747064 ], [ -81.307010, 41.748164 ], [ -81.306495, 41.748392 ], [ -81.301626, 41.750543 ], [ -81.288892, 41.758945 ], [ -81.286925, 41.760243 ], [ -81.279925, 41.759944 ], [ -81.279187, 41.759859 ], [ -81.265576, 41.758298 ], [ -81.264224, 41.758143 ], [ -81.263751, 41.758239 ], [ -81.263110, 41.758369 ], [ -81.259349, 41.759130 ], [ -81.255520, 41.759905 ], [ -81.252977, 41.760420 ], [ -81.251918, 41.760634 ], [ -81.248672, 41.761291 ], [ -81.248609, 41.761316 ], [ -81.247832, 41.761623 ], [ -81.247607, 41.761712 ], [ -81.202359, 41.779570 ], [ -81.201721, 41.779822 ], [ -81.192684, 41.783389 ], [ -81.184368, 41.786671 ], [ -81.183328, 41.787120 ], [ -81.167638, 41.793903 ], [ -81.122295, 41.813503 ], [ -81.112885, 41.817571 ], [ -81.098931, 41.821319 ], [ -81.095592, 41.822216 ], [ -81.092716, 41.822988 ], [ -81.051920, 41.839557 ], [ -81.024525, 41.846469 ], [ -81.010490, 41.853962 ], [ -81.002663, 41.854846 ], [ -81.002117, 41.854908 ], [ -80.991799, 41.856074 ], [ -80.973674, 41.858122 ], [ -80.971141, 41.858409 ], [ -80.958494, 41.859838 ], [ -80.936244, 41.862352 ], [ -80.916528, 41.865954 ], [ -80.900342, 41.868912 ], [ -80.853542, 41.884685 ], [ -80.852064, 41.885183 ], [ -80.826889, 41.893668 ], [ -80.819165, 41.896271 ], [ -80.816444, 41.897188 ], [ -80.814943, 41.897694 ], [ -80.813240, 41.898760 ], [ -80.812659, 41.899125 ], [ -80.808697, 41.901606 ], [ -80.808010, 41.902304 ], [ -80.806133, 41.904211 ], [ -80.801436, 41.908982 ], [ -80.800794, 41.909635 ], [ -80.799822, 41.909749 ], [ -80.798311, 41.909926 ], [ -80.794388, 41.910386 ], [ -80.786410, 41.911322 ], [ -80.785497, 41.911429 ], [ -80.784682, 41.911525 ], [ -80.782944, 41.908294 ], [ -80.782052, 41.906635 ], [ -80.781112, 41.906897 ], [ -80.777090, 41.908018 ], [ -80.771784, 41.909496 ], [ -80.770756, 41.909782 ], [ -80.768020, 41.910545 ], [ -80.766046, 41.911095 ], [ -80.762176, 41.912173 ], [ -80.757945, 41.913352 ], [ -80.727504, 41.918593 ], [ -80.720816, 41.919744 ], [ -80.717469, 41.920656 ], [ -80.712218, 41.922087 ], [ -80.708293, 41.923157 ], [ -80.699363, 41.925591 ], [ -80.693429, 41.927208 ], [ -80.635576, 41.942976 ], [ -80.619443, 41.947373 ], [ -80.619242, 41.947428 ], [ -80.608610, 41.950325 ], [ -80.581882, 41.957610 ], [ -80.579439, 41.958499 ], [ -80.576735, 41.959483 ], [ -80.576591, 41.959535 ], [ -80.575500, 41.959932 ], [ -80.572028, 41.961196 ], [ -80.563327, 41.964362 ], [ -80.560671, 41.965328 ], [ -80.555898, 41.967065 ], [ -80.553836, 41.967815 ], [ -80.533774, 41.973475 ], [ -80.531390, 41.974147 ], [ -80.530164, 41.974493 ], [ -80.529274, 41.974744 ], [ -80.525521, 41.975803 ], [ -80.522057, 41.976780 ], [ -80.519461, 41.977513 ], [ -80.519425, 41.977523 ], [ -80.519425, 41.977522 ], [ -80.519405, 41.976158 ], [ -80.519304, 41.943992 ], [ -80.519345, 41.929168 ], [ -80.519294, 41.849563 ], [ -80.519239, 41.765138 ], [ -80.519369, 41.752487 ], [ -80.519408, 41.739359 ], [ -80.519373, 41.701473 ], [ -80.519424, 41.671228 ], [ -80.519357, 41.669767 ], [ -80.519339, 41.539297 ], [ -80.519157, 41.528769 ], [ -80.519225, 41.499924 ], [ -80.519209, 41.489013 ], [ -80.519169, 41.462581 ], [ -80.518993, 41.435454 ], [ -80.518993, 41.416437 ], [ -80.519025, 41.416438 ], [ -80.519249, 41.378918 ], [ -80.519217, 41.372006 ], [ -80.519249, 41.361030 ], [ -80.519297, 41.350833 ], [ -80.519345, 41.340740 ], [ -80.519345, 41.340145 ], [ -80.519293, 41.339654 ], [ -80.519293, 41.339054 ], [ -80.519311, 41.339052 ], [ -80.519281, 41.337174 ], [ -80.519281, 41.337145 ], [ -80.519281, 41.335958 ], [ -80.519265, 41.333495 ], [ -80.519129, 41.312408 ], [ -80.518794, 41.305509 ], [ -80.518996, 41.268300 ], [ -80.518993, 41.268155 ], [ -80.518893, 41.265155 ], [ -80.518693, 41.248855 ], [ -80.518893, 41.232556 ], [ -80.518893, 41.219357 ], [ -80.518893, 41.219356 ], [ -80.518830, 41.209213 ], [ -80.519144, 41.171203 ], [ -80.519115, 41.145520 ], [ -80.519167, 41.133388 ], [ -80.519167, 41.133343 ], [ -80.519012, 41.125116 ], [ -80.519012, 41.125093 ], [ -80.519012, 41.125057 ], [ -80.519056, 41.125057 ], [ -80.518992, 41.115958 ], [ -80.519192, 41.105358 ], [ -80.519125, 41.100819 ], [ -80.519092, 41.090658 ], [ -80.519088, 41.082074 ], [ -80.518999, 41.075014 ], [ -80.518960, 41.071866 ], [ -80.518928, 41.070954 ], [ -80.518960, 41.061546 ], [ -80.518927, 41.015387 ], [ -80.518989, 40.995445 ], [ -80.519000, 40.987380 ], [ -80.519091, 40.921061 ], [ -80.519790, 40.900761 ], [ -80.519764, 40.899858 ], [ -80.519039, 40.851339 ], [ -80.519020, 40.850073 ], [ -80.519081, 40.849157 ], [ -80.518992, 40.801221 ], [ -80.519058, 40.792298 ], [ -80.518991, 40.638801 ], [ -80.560720, 40.623680 ], [ -80.589041, 40.620128 ], [ -80.594065, 40.623664 ], [ -80.601494, 40.625387 ], [ -80.627171, 40.619936 ], [ -80.634355, 40.616095 ], [ -80.665892, 40.587728 ], [ -80.667957, 40.582496 ], [ -80.666917, 40.573664 ], [ -80.610259, 40.490962 ], [ -80.599194, 40.482566 ], [ -80.612295, 40.434867 ], [ -80.617346, 40.396004 ], [ -80.619196, 40.381768 ], [ -80.609313, 40.360468 ], [ -80.599895, 40.317669 ], [ -80.602895, 40.307069 ], [ -80.616696, 40.280270 ], [ -80.637198, 40.255070 ], [ -80.644598, 40.251270 ], [ -80.652098, 40.244970 ], [ -80.685391, 40.187642 ], [ -80.703052, 40.157231 ], [ -80.705482, 40.153047 ], [ -80.726504, 40.089072 ], [ -80.733104, 40.058772 ], [ -80.730904, 40.049172 ], [ -80.731504, 40.037472 ], [ -80.732051, 40.033240 ], [ -80.740126, 39.970793 ], [ -80.743166, 39.969113 ], [ -80.759455, 39.958233 ], [ -80.806018, 39.917130 ], [ -80.808722, 39.912570 ], [ -80.809619, 39.905626 ], [ -80.806179, 39.897306 ], [ -80.812342, 39.848845 ], [ -80.828618, 39.720848 ], [ -80.829764, 39.711839 ], [ -80.831871, 39.705655 ], [ -80.880360, 39.620706 ], [ -80.892208, 39.616756 ], [ -80.943782, 39.606926 ], [ -81.020055, 39.555410 ], [ -81.038691, 39.540464 ], [ -81.063587, 39.520497 ], [ -81.127696, 39.464879 ], [ -81.215617, 39.388602 ], [ -81.223581, 39.386062 ], [ -81.249088, 39.389992 ], [ -81.270716, 39.385914 ], [ -81.295373, 39.375290 ], [ -81.347567, 39.345770 ], [ -81.356911, 39.343178 ], [ -81.371271, 39.342062 ], [ -81.375961, 39.341697 ], [ -81.384556, 39.343449 ], [ -81.393794, 39.351706 ], [ -81.406689, 39.388090 ], [ -81.412706, 39.394618 ], [ -81.435642, 39.408474 ], [ -81.446543, 39.410374 ], [ -81.456143, 39.409274 ], [ -81.467744, 39.403774 ], [ -81.542346, 39.352874 ], [ -81.605816, 39.275851 ], [ -81.695724, 39.242859 ], [ -81.721551, 39.212448 ], [ -81.740061, 39.190652 ], [ -81.749853, 39.186489 ], [ -81.749689, 39.180742 ] ] ] ] } }\n,\n{ \"type\": \"Feature\", \"properties\": { \"GEO_ID\": \"0400000US41\", \"STATE\": \"41\", \"NAME\": \"Oregon\", \"LSAD\": \"\", \"CENSUSAREA\": 95988.013000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -121.908267, 45.654399 ], [ -121.900858, 45.662009 ], [ -121.901855, 45.670716 ], [ -121.867167, 45.693277 ], [ -121.820055, 45.704649 ], [ -121.811304, 45.706761 ], [ -121.735104, 45.694039 ], [ -121.707358, 45.694809 ], [ -121.626185, 45.705915 ], [ -121.533106, 45.726541 ], [ -121.522392, 45.724677 ], [ -121.462849, 45.701367 ], [ -121.441045, 45.697270 ], [ -121.423592, 45.693990 ], [ -121.401739, 45.692887 ], [ -121.372574, 45.703111 ], [ -121.337770, 45.704949 ], [ -121.312198, 45.699925 ], [ -121.215779, 45.671238 ], [ -121.200367, 45.649829 ], [ -121.195233, 45.629513 ], [ -121.086675, 45.646667 ], [ -121.064370, 45.652549 ], [ -120.943977, 45.656445 ], [ -120.915876, 45.641345 ], [ -120.870042, 45.661242 ], [ -120.855674, 45.671545 ], [ -120.788872, 45.686246 ], [ -120.689370, 45.715847 ], [ -120.668869, 45.730147 ], [ -120.653559, 45.737237 ], [ -120.634968, 45.745847 ], [ -120.591166, 45.746547 ], [ -120.559465, 45.738348 ], [ -120.521964, 45.709848 ], [ -120.505863, 45.700048 ], [ -120.482362, 45.694449 ], [ -120.403960, 45.699249 ], [ -120.210754, 45.725951 ], [ -120.170453, 45.761951 ], [ -120.141352, 45.773152 ], [ -120.001148, 45.811902 ], [ -119.999506, 45.812199 ], [ -119.868135, 45.835962 ], [ -119.802655, 45.847530 ], [ -119.772927, 45.845578 ], [ -119.669877, 45.856867 ], [ -119.623393, 45.905639 ], [ -119.600549, 45.919581 ], [ -119.571584, 45.925456 ], [ -119.524632, 45.908605 ], [ -119.487829, 45.906307 ], [ -119.432067, 45.913629 ], [ -119.376130, 45.920974 ], [ -119.322509, 45.933183 ], [ -119.257150, 45.939926 ], [ -119.225745, 45.932725 ], [ -119.195530, 45.927870 ], [ -119.169496, 45.927603 ], [ -119.126120, 45.932859 ], [ -119.093221, 45.942745 ], [ -119.027056, 45.969134 ], [ -119.008558, 45.979270 ], [ -118.987129, 45.999855 ], [ -118.677870, 46.000935 ], [ -118.658717, 46.000955 ], [ -118.639332, 46.000994 ], [ -118.637725, 46.000970 ], [ -118.579906, 46.000818 ], [ -118.575710, 46.000718 ], [ -118.569392, 46.000773 ], [ -118.537119, 46.000840 ], [ -118.497027, 46.000620 ], [ -118.470756, 46.000632 ], [ -118.378360, 46.000574 ], [ -118.367790, 46.000622 ], [ -118.314982, 46.000453 ], [ -118.256368, 46.000439 ], [ -118.252530, 46.000459 ], [ -118.236584, 46.000418 ], [ -118.228941, 46.000421 ], [ -118.131019, 46.000280 ], [ -118.126197, 46.000282 ], [ -117.996911, 46.000787 ], [ -117.977766, 46.000695 ], [ -117.603163, 45.998887 ], [ -117.504833, 45.998317 ], [ -117.480130, 45.997870 ], [ -117.480103, 45.997870 ], [ -117.475360, 45.997855 ], [ -117.475148, 45.997893 ], [ -117.216731, 45.998356 ], [ -117.214534, 45.998320 ], [ -117.212616, 45.998321 ], [ -116.915989, 45.995413 ], [ -116.875125, 45.942200 ], [ -116.866544, 45.916958 ], [ -116.857254, 45.904159 ], [ -116.796418, 45.853807 ], [ -116.789099, 45.847749 ], [ -116.633377, 45.784681 ], [ -116.594210, 45.779080 ], [ -116.548090, 45.752364 ], [ -116.535698, 45.734231 ], [ -116.538014, 45.714929 ], [ -116.535396, 45.691734 ], [ -116.528272, 45.681473 ], [ -116.510938, 45.668114 ], [ -116.489120, 45.651140 ], [ -116.471504, 45.628467 ], [ -116.463504, 45.615785 ], [ -116.463635, 45.602785 ], [ -116.481208, 45.580597 ], [ -116.553473, 45.499107 ], [ -116.673793, 45.321511 ], [ -116.691197, 45.269245 ], [ -116.696047, 45.254679 ], [ -116.709536, 45.203015 ], [ -116.729607, 45.142091 ], [ -116.783902, 45.079022 ], [ -116.845369, 45.017059 ], [ -116.858277, 44.978008 ], [ -116.850737, 44.958113 ], [ -116.844653, 44.949338 ], [ -116.835702, 44.940633 ], [ -116.831990, 44.933007 ], [ -116.852427, 44.887577 ], [ -116.891463, 44.840531 ], [ -116.931499, 44.792281 ], [ -117.016216, 44.755572 ], [ -117.038270, 44.748179 ], [ -117.044217, 44.745140 ], [ -117.062273, 44.727143 ], [ -117.095868, 44.664737 ], [ -117.115900, 44.623339 ], [ -117.144161, 44.545647 ], [ -117.149242, 44.536151 ], [ -117.156489, 44.528312 ], [ -117.208454, 44.485928 ], [ -117.214889, 44.466901 ], [ -117.189769, 44.336585 ], [ -117.191546, 44.329621 ], [ -117.194827, 44.310540 ], [ -117.196597, 44.302280 ], [ -117.197506, 44.297280 ], [ -117.197777, 44.295789 ], [ -117.196597, 44.287529 ], [ -117.190107, 44.273958 ], [ -117.170342, 44.258890 ], [ -117.041144, 44.243653 ], [ -117.033170, 44.248192 ], [ -117.027558, 44.248881 ], [ -116.986870, 44.245477 ], [ -116.975905, 44.242844 ], [ -116.902752, 44.179467 ], [ -116.895757, 44.171267 ], [ -116.894083, 44.160191 ], [ -116.895931, 44.154295 ], [ -116.897145, 44.152537 ], [ -116.931719, 44.102474 ], [ -116.935301, 43.988616 ], [ -116.961535, 43.918388 ], [ -116.979186, 43.879973 ], [ -116.982482, 43.872799 ], [ -116.996504, 43.864714 ], [ -117.026634, 43.808104 ], [ -117.026651, 43.733935 ], [ -117.026841, 43.732905 ], [ -117.026725, 43.714815 ], [ -117.026825, 43.706193 ], [ -117.026586, 43.683001 ], [ -117.026623, 43.680865 ], [ -117.026717, 43.675523 ], [ -117.026661, 43.664385 ], [ -117.026705, 43.631659 ], [ -117.026905, 43.624880 ], [ -117.027001, 43.621032 ], [ -117.026937, 43.617614 ], [ -117.026789, 43.610669 ], [ -117.026760, 43.601912 ], [ -117.026824, 43.600357 ], [ -117.026889, 43.596033 ], [ -117.026922, 43.593632 ], [ -117.026774, 43.578674 ], [ -117.026746, 43.577526 ], [ -117.026652, 43.025128 ], [ -117.026683, 43.024876 ], [ -117.026253, 42.807447 ], [ -117.026303, 42.807170 ], [ -117.026331, 42.807015 ], [ -117.026222, 42.000252 ], [ -118.197189, 41.996995 ], [ -118.775869, 41.992692 ], [ -118.777228, 41.992671 ], [ -119.324182, 41.994278 ], [ -119.360177, 41.994384 ], [ -119.790087, 41.997544 ], [ -119.986678, 41.995842 ], [ -119.999168, 41.994540 ], [ -120.286424, 41.993058 ], [ -120.326005, 41.993122 ], [ -120.692219, 41.993677 ], [ -120.693941, 41.993676 ], [ -120.879481, 41.993781 ], [ -121.035195, 41.993323 ], [ -121.154347, 41.996352 ], [ -121.334385, 41.996655 ], [ -121.335734, 41.996518 ], [ -121.340517, 41.996220 ], [ -121.360253, 41.996680 ], [ -121.376101, 41.997026 ], [ -121.434977, 41.997022 ], [ -121.439610, 41.997080 ], [ -121.447540, 41.997169 ], [ -121.520250, 41.997983 ], [ -121.580865, 41.998668 ], [ -121.675348, 42.000351 ], [ -121.689159, 42.000584 ], [ -121.705045, 42.000766 ], [ -121.708199, 42.000815 ], [ -122.001119, 42.004017 ], [ -122.155408, 42.007429 ], [ -122.156666, 42.007384 ], [ -122.160438, 42.007637 ], [ -122.161328, 42.007637 ], [ -122.289527, 42.007764 ], [ -122.289533, 42.007764 ], [ -122.378193, 42.009518 ], [ -122.501135, 42.008460 ], [ -122.634739, 42.004858 ], [ -123.001152, 42.003000 ], [ -123.045254, 42.003049 ], [ -123.154908, 42.008036 ], [ -123.230762, 42.003845 ], [ -123.230764, 42.003845 ], [ -123.347562, 41.999108 ], [ -123.498830, 42.000525 ], [ -123.498896, 42.000474 ], [ -123.501997, 42.000527 ], [ -123.518075, 42.000436 ], [ -123.624554, 41.999837 ], [ -123.821472, 41.995473 ], [ -124.086661, 41.996869 ], [ -124.087827, 41.996891 ], [ -124.100216, 41.996842 ], [ -124.100921, 41.996956 ], [ -124.211605, 41.998460 ], [ -124.214213, 42.005939 ], [ -124.270464, 42.045553 ], [ -124.287374, 42.046016 ], [ -124.299649, 42.051736 ], [ -124.314289, 42.067864 ], [ -124.341010, 42.092929 ], [ -124.356229, 42.114952 ], [ -124.357122, 42.118016 ], [ -124.351535, 42.129796 ], [ -124.351784, 42.134965 ], [ -124.355696, 42.141964 ], [ -124.361563, 42.143767 ], [ -124.366028, 42.152343 ], [ -124.366832, 42.158450 ], [ -124.363389, 42.158588 ], [ -124.360318, 42.162272 ], [ -124.361009, 42.180752 ], [ -124.367751, 42.188321 ], [ -124.373175, 42.190218 ], [ -124.374949, 42.193129 ], [ -124.376215, 42.196381 ], [ -124.375553, 42.208820 ], [ -124.377762, 42.218809 ], [ -124.383633, 42.227160 ], [ -124.410982, 42.250547 ], [ -124.411534, 42.254115 ], [ -124.408514, 42.260588 ], [ -124.405148, 42.278107 ], [ -124.410556, 42.307431 ], [ -124.429288, 42.331746 ], [ -124.427222, 42.334880 ], [ -124.425554, 42.351874 ], [ -124.424066, 42.377242 ], [ -124.424863, 42.395426 ], [ -124.428068, 42.420333 ], [ -124.434882, 42.434916 ], [ -124.435105, 42.440163 ], [ -124.422038, 42.461226 ], [ -124.423084, 42.478952 ], [ -124.421381, 42.491737 ], [ -124.399065, 42.539928 ], [ -124.390664, 42.566593 ], [ -124.389977, 42.574758 ], [ -124.400918, 42.597518 ], [ -124.399421, 42.618079 ], [ -124.401177, 42.627192 ], [ -124.413119, 42.657934 ], [ -124.416774, 42.661594 ], [ -124.450740, 42.675798 ], [ -124.451484, 42.677787 ], [ -124.447487, 42.684740 ], [ -124.448418, 42.689909 ], [ -124.473864, 42.732671 ], [ -124.491679, 42.741789 ], [ -124.498473, 42.741077 ], [ -124.499122, 42.738606 ], [ -124.510017, 42.734746 ], [ -124.513368, 42.735068 ], [ -124.514669, 42.736806 ], [ -124.516236, 42.753632 ], [ -124.524439, 42.789793 ], [ -124.536073, 42.814175 ], [ -124.544179, 42.822958 ], [ -124.552441, 42.840568 ], [ -124.500141, 42.917502 ], [ -124.480938, 42.951495 ], [ -124.479344, 42.954970 ], [ -124.462619, 42.991430 ], [ -124.456918, 43.000315 ], [ -124.436198, 43.071312 ], [ -124.432236, 43.097383 ], [ -124.434451, 43.115986 ], [ -124.424113, 43.126859 ], [ -124.401726, 43.184896 ], [ -124.395302, 43.211101 ], [ -124.395607, 43.223908 ], [ -124.382460, 43.270167 ], [ -124.388891, 43.290523 ], [ -124.393988, 43.299260 ], [ -124.400404, 43.302121 ], [ -124.402814, 43.305872 ], [ -124.387642, 43.325968 ], [ -124.373037, 43.338953 ], [ -124.353332, 43.342667 ], [ -124.341587, 43.351337 ], [ -124.315012, 43.388389 ], [ -124.286896, 43.436296 ], [ -124.255609, 43.502172 ], [ -124.233534, 43.557130 ], [ -124.218876, 43.610319 ], [ -124.203028, 43.667825 ], [ -124.204888, 43.673976 ], [ -124.198275, 43.689481 ], [ -124.193455, 43.706085 ], [ -124.168392, 43.808903 ], [ -124.158684, 43.863504 ], [ -124.150267, 43.910850 ], [ -124.142704, 43.958182 ], [ -124.133547, 44.035845 ], [ -124.122406, 44.104442 ], [ -124.125824, 44.126130 ], [ -124.117006, 44.171913 ], [ -124.114424, 44.198164 ], [ -124.115671, 44.206554 ], [ -124.111054, 44.235071 ], [ -124.108945, 44.265475 ], [ -124.109744, 44.270597 ], [ -124.114869, 44.272721 ], [ -124.115953, 44.274641 ], [ -124.115849, 44.276277 ], [ -124.115200, 44.286486 ], [ -124.109070, 44.303707 ], [ -124.108088, 44.309926 ], [ -124.109556, 44.314545 ], [ -124.100587, 44.331926 ], [ -124.092101, 44.370388 ], [ -124.084401, 44.415611 ], [ -124.080989, 44.419728 ], [ -124.071706, 44.423662 ], [ -124.067569, 44.428582 ], [ -124.073941, 44.434481 ], [ -124.079301, 44.430863 ], [ -124.082113, 44.441518 ], [ -124.082061, 44.478171 ], [ -124.084429, 44.486927 ], [ -124.083601, 44.501123 ], [ -124.076387, 44.531214 ], [ -124.067251, 44.608040 ], [ -124.069140, 44.612979 ], [ -124.082326, 44.608861 ], [ -124.084476, 44.611056 ], [ -124.065202, 44.622445 ], [ -124.065008, 44.632504 ], [ -124.058281, 44.658866 ], [ -124.060043, 44.669361 ], [ -124.070394, 44.683514 ], [ -124.063406, 44.703177 ], [ -124.059077, 44.737656 ], [ -124.066325, 44.762671 ], [ -124.075473, 44.771403 ], [ -124.074066, 44.798107 ], [ -124.066746, 44.831191 ], [ -124.063155, 44.835333 ], [ -124.054151, 44.838233 ], [ -124.048814, 44.850007 ], [ -124.032296, 44.900809 ], [ -124.025136, 44.928175 ], [ -124.025678, 44.936542 ], [ -124.023834, 44.949825 ], [ -124.015243, 44.982904 ], [ -124.004598, 45.044959 ], [ -124.004386, 45.046197 ], [ -124.004668, 45.048167 ], [ -124.009770, 45.047266 ], [ -124.017991, 45.049808 ], [ -124.015851, 45.064759 ], [ -124.012163, 45.076921 ], [ -124.006057, 45.084736 ], [ -124.004863, 45.084232 ], [ -123.989529, 45.094045 ], [ -123.975425, 45.145476 ], [ -123.968187, 45.201217 ], [ -123.972919, 45.216784 ], [ -123.962887, 45.280218 ], [ -123.964169, 45.317026 ], [ -123.972899, 45.336890 ], [ -123.978671, 45.338854 ], [ -124.007756, 45.336813 ], [ -124.007494, 45.339740 ], [ -123.979715, 45.347724 ], [ -123.973398, 45.354791 ], [ -123.965728, 45.386242 ], [ -123.960557, 45.430778 ], [ -123.964074, 45.449112 ], [ -123.972953, 45.467513 ], [ -123.976544, 45.489733 ], [ -123.970794, 45.493507 ], [ -123.966340, 45.493417 ], [ -123.957568, 45.510399 ], [ -123.947556, 45.564878 ], [ -123.956711, 45.571303 ], [ -123.951246, 45.585775 ], [ -123.939005, 45.661923 ], [ -123.939448, 45.708795 ], [ -123.943121, 45.727031 ], [ -123.946027, 45.733249 ], [ -123.968563, 45.757019 ], [ -123.982578, 45.761815 ], [ -123.981864, 45.768285 ], [ -123.969459, 45.782371 ], [ -123.969340, 45.783197 ], [ -123.961544, 45.837101 ], [ -123.962736, 45.869974 ], [ -123.967630, 45.907807 ], [ -123.979501, 45.930389 ], [ -123.993040, 45.938842 ], [ -123.993703, 45.946431 ], [ -123.969991, 45.969139 ], [ -123.957438, 45.974469 ], [ -123.941831, 45.975660 ], [ -123.937471, 45.977306 ], [ -123.927891, 46.009564 ], [ -123.929330, 46.041978 ], [ -123.933366, 46.071672 ], [ -123.947531, 46.116131 ], [ -123.959190, 46.141675 ], [ -123.974124, 46.168798 ], [ -123.996766, 46.203990 ], [ -124.010344, 46.223514 ], [ -124.024305, 46.229256 ], [ -124.011355, 46.236223 ], [ -124.001998, 46.237316 ], [ -123.998052, 46.235327 ], [ -123.988429, 46.224132 ], [ -123.990117, 46.217630 ], [ -123.987196, 46.211521 ], [ -123.982149, 46.209662 ], [ -123.961739, 46.207916 ], [ -123.950148, 46.204097 ], [ -123.927038, 46.191617 ], [ -123.912405, 46.179450 ], [ -123.904200, 46.169293 ], [ -123.891186, 46.164778 ], [ -123.854801, 46.157342 ], [ -123.842849, 46.160529 ], [ -123.841521, 46.169824 ], [ -123.863347, 46.182350 ], [ -123.866643, 46.187674 ], [ -123.864209, 46.189527 ], [ -123.838801, 46.192211 ], [ -123.821834, 46.190293 ], [ -123.793936, 46.196283 ], [ -123.759976, 46.207300 ], [ -123.736747, 46.200687 ], [ -123.712780, 46.198751 ], [ -123.706667, 46.199665 ], [ -123.675380, 46.212401 ], [ -123.673831, 46.215418 ], [ -123.666751, 46.218228 ], [ -123.655390, 46.217974 ], [ -123.636474, 46.214359 ], [ -123.632500, 46.216681 ], [ -123.626247, 46.226434 ], [ -123.625219, 46.233868 ], [ -123.622812, 46.236640 ], [ -123.613459, 46.239228 ], [ -123.605487, 46.239300 ], [ -123.600190, 46.234814 ], [ -123.586205, 46.228654 ], [ -123.548194, 46.248245 ], [ -123.547659, 46.259109 ], [ -123.484244, 46.269531 ], [ -123.474844, 46.267831 ], [ -123.468743, 46.264531 ], [ -123.447592, 46.249832 ], [ -123.427629, 46.229348 ], [ -123.430847, 46.181827 ], [ -123.371433, 46.146372 ], [ -123.363638, 46.146241 ], [ -123.280166, 46.144843 ], [ -123.213054, 46.172541 ], [ -123.166414, 46.188973 ], [ -123.115904, 46.185268 ], [ -122.904119, 46.083734 ], [ -122.884478, 46.060280 ], [ -122.813998, 45.960984 ], [ -122.785026, 45.867699 ], [ -122.785515, 45.850536 ], [ -122.795963, 45.825024 ], [ -122.795605, 45.810000 ], [ -122.769532, 45.780583 ], [ -122.761451, 45.759163 ], [ -122.760108, 45.734413 ], [ -122.762182, 45.728598 ], [ -122.772511, 45.699637 ], [ -122.774511, 45.680437 ], [ -122.763810, 45.657138 ], [ -122.738109, 45.644138 ], [ -122.675008, 45.618039 ], [ -122.643907, 45.609739 ], [ -122.492259, 45.583281 ], [ -122.380302, 45.575941 ], [ -122.352802, 45.569441 ], [ -122.331502, 45.548241 ], [ -122.294901, 45.543541 ], [ -122.266701, 45.543841 ], [ -122.248993, 45.547745 ], [ -122.201700, 45.564141 ], [ -122.183695, 45.577696 ], [ -122.140750, 45.584508 ], [ -122.129548, 45.582945 ], [ -122.129490, 45.582967 ], [ -122.126197, 45.582573 ], [ -122.126197, 45.582617 ], [ -122.112356, 45.581409 ], [ -122.101675, 45.583516 ], [ -121.983038, 45.622812 ], [ -121.922242, 45.648495 ], [ -121.908267, 45.654399 ] ] ] } }\n,\n{ \"type\": \"Feature\", \"properties\": { \"GEO_ID\": \"0400000US44\", \"STATE\": \"44\", \"NAME\": \"Rhode Island\", \"LSAD\": \"\", \"CENSUSAREA\": 1033.814000 }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [ [ [ [ -71.383586, 41.464782 ], [ -71.389284, 41.460605 ], [ -71.390275, 41.455043 ], [ -71.399568, 41.448596 ], [ -71.400560, 41.460940 ], [ -71.395927, 41.492215 ], [ -71.386511, 41.493071 ], [ -71.378914, 41.504948 ], [ -71.391005, 41.514578 ], [ -71.392137, 41.524468 ], [ -71.384478, 41.556736 ], [ -71.379021, 41.567772 ], [ -71.373618, 41.573214 ], [ -71.370194, 41.573963 ], [ -71.363560, 41.570860 ], [ -71.359868, 41.556308 ], [ -71.363292, 41.501952 ], [ -71.360403, 41.483121 ], [ -71.380947, 41.474561 ], [ -71.383586, 41.464782 ] ] ], [ [ [ -71.326769, 41.491286 ], [ -71.325365, 41.487601 ], [ -71.327822, 41.482985 ], [ -71.343013, 41.495615 ], [ -71.341122, 41.498598 ], [ -71.326769, 41.491286 ] ] ], [ [ [ -71.331200, 41.580318 ], [ -71.335949, 41.585898 ], [ -71.337048, 41.594688 ], [ -71.333751, 41.605859 ], [ -71.329559, 41.609097 ], [ -71.326609, 41.616114 ], [ -71.325877, 41.623988 ], [ -71.333305, 41.629536 ], [ -71.346570, 41.632229 ], [ -71.362869, 41.651457 ], [ -71.366165, 41.660980 ], [ -71.348402, 41.663727 ], [ -71.338696, 41.658782 ], [ -71.336182, 41.647961 ], [ -71.337048, 41.646146 ], [ -71.342514, 41.644791 ], [ -71.343666, 41.639900 ], [ -71.330711, 41.632992 ], [ -71.314889, 41.630398 ], [ -71.305550, 41.622523 ], [ -71.303352, 41.606591 ], [ -71.307381, 41.597984 ], [ -71.317474, 41.583187 ], [ -71.326103, 41.578583 ], [ -71.331200, 41.580318 ] ] ], [ [ [ -71.281571, 41.648207 ], [ -71.278171, 41.647309 ], [ -71.274315, 41.638125 ], [ -71.283791, 41.637797 ], [ -71.286755, 41.642725 ], [ -71.283005, 41.644434 ], [ -71.281571, 41.648207 ] ] ], [ [ [ -71.589550, 41.196557 ], [ -71.580228, 41.204837 ], [ -71.577301, 41.214710 ], [ -71.576661, 41.224434 ], [ -71.573785, 41.228436 ], [ -71.561093, 41.224207 ], [ -71.555006, 41.216822 ], [ -71.554067, 41.212957 ], [ -71.557459, 41.204542 ], [ -71.564119, 41.195372 ], [ -71.565752, 41.184373 ], [ -71.560969, 41.176186 ], [ -71.550226, 41.166787 ], [ -71.544446, 41.164912 ], [ -71.543872, 41.161321 ], [ -71.547051, 41.153684 ], [ -71.551953, 41.151718 ], [ -71.593700, 41.146339 ], [ -71.599993, 41.146932 ], [ -71.611706, 41.153239 ], [ -71.613133, 41.160281 ], [ -71.605565, 41.182139 ], [ -71.594994, 41.188392 ], [ -71.589550, 41.196557 ] ] ], [ [ [ -71.408636, 41.653819 ], [ -71.403770, 41.589321 ], [ -71.447712, 41.580400 ], [ -71.442567, 41.565075 ], [ -71.421649, 41.537892 ], [ -71.417398, 41.534536 ], [ -71.414825, 41.523126 ], [ -71.414937, 41.516303 ], [ -71.421425, 41.498629 ], [ -71.419971, 41.484758 ], [ -71.417957, 41.482073 ], [ -71.417621, 41.477934 ], [ -71.418404, 41.472652 ], [ -71.421157, 41.469888 ], [ -71.422991, 41.472682 ], [ -71.430744, 41.470636 ], [ -71.430926, 41.465655 ], [ -71.427935, 41.459529 ], [ -71.428652, 41.454158 ], [ -71.433612, 41.444995 ], [ -71.437670, 41.441302 ], [ -71.441199, 41.441602 ], [ -71.448948, 41.438479 ], [ -71.455845, 41.432986 ], [ -71.455371, 41.407962 ], [ -71.474918, 41.386104 ], [ -71.483295, 41.371722 ], [ -71.513401, 41.374702 ], [ -71.526724, 41.376636 ], [ -71.555381, 41.373316 ], [ -71.624505, 41.360870 ], [ -71.688070, 41.342823 ], [ -71.701631, 41.336968 ], [ -71.720740, 41.331567 ], [ -71.729247, 41.330990 ], [ -71.773702, 41.327977 ], [ -71.785957, 41.325739 ], [ -71.833755, 41.315631 ], [ -71.857432, 41.306318 ], [ -71.862772, 41.309791 ], [ -71.862109, 41.316612 ], [ -71.859570, 41.322399 ], [ -71.839782, 41.334690 ], [ -71.832530, 41.341204 ], [ -71.831240, 41.344645 ], [ -71.831613, 41.370899 ], [ -71.833443, 41.384524 ], [ -71.842131, 41.395359 ], [ -71.843472, 41.405830 ], [ -71.842563, 41.409855 ], [ -71.839649, 41.412119 ], [ -71.818390, 41.419599 ], [ -71.797683, 41.416709 ], [ -71.797674, 41.416910 ], [ -71.789359, 41.596852 ], [ -71.789356, 41.596910 ], [ -71.789465, 41.640017 ], [ -71.789678, 41.724568 ], [ -71.789678, 41.724734 ], [ -71.792767, 41.807001 ], [ -71.792786, 41.808670 ], [ -71.794161, 41.840141 ], [ -71.794161, 41.841101 ], [ -71.796089, 41.904468 ], [ -71.796822, 41.928552 ], [ -71.799242, 42.008065 ], [ -71.591104, 42.013713 ], [ -71.576908, 42.014098 ], [ -71.559439, 42.014342 ], [ -71.527606, 42.014998 ], [ -71.527306, 42.015098 ], [ -71.500905, 42.017098 ], [ -71.499905, 42.017198 ], [ -71.498258, 42.017220 ], [ -71.458104, 42.017762 ], [ -71.381401, 42.018798 ], [ -71.381466, 41.984998 ], [ -71.381501, 41.966699 ], [ -71.381401, 41.964799 ], [ -71.381600, 41.922899 ], [ -71.381700, 41.922699 ], [ -71.376600, 41.893999 ], [ -71.373799, 41.894399 ], [ -71.370999, 41.894599 ], [ -71.365399, 41.895299 ], [ -71.364699, 41.895399 ], [ -71.362499, 41.895599 ], [ -71.354699, 41.896499 ], [ -71.352699, 41.896699 ], [ -71.339298, 41.893599 ], [ -71.339298, 41.893399 ], [ -71.337597, 41.833700 ], [ -71.339597, 41.832000 ], [ -71.339297, 41.806500 ], [ -71.327896, 41.780501 ], [ -71.317795, 41.776101 ], [ -71.317790, 41.776099 ], [ -71.261392, 41.752301 ], [ -71.224798, 41.710498 ], [ -71.227875, 41.705498 ], [ -71.240991, 41.697744 ], [ -71.237635, 41.681635 ], [ -71.241550, 41.667205 ], [ -71.259560, 41.642595 ], [ -71.267055, 41.644945 ], [ -71.270075, 41.652439 ], [ -71.269180, 41.654900 ], [ -71.280366, 41.672575 ], [ -71.287637, 41.672463 ], [ -71.290546, 41.662395 ], [ -71.299159, 41.649531 ], [ -71.301396, 41.649978 ], [ -71.303746, 41.654788 ], [ -71.306095, 41.672575 ], [ -71.302627, 41.681747 ], [ -71.298935, 41.681524 ], [ -71.293119, 41.688347 ], [ -71.291217, 41.702666 ], [ -71.305759, 41.718662 ], [ -71.314820, 41.723808 ], [ -71.342786, 41.728506 ], [ -71.350057, 41.727835 ], [ -71.353172, 41.725191 ], [ -71.353748, 41.724702 ], [ -71.365717, 41.711615 ], [ -71.365717, 41.694947 ], [ -71.372988, 41.672575 ], [ -71.377910, 41.666646 ], [ -71.382049, 41.667317 ], [ -71.389880, 41.671903 ], [ -71.390775, 41.680629 ], [ -71.389432, 41.683425 ], [ -71.390551, 41.684096 ], [ -71.418069, 41.684208 ], [ -71.441336, 41.686446 ], [ -71.443082, 41.688303 ], [ -71.441896, 41.690025 ], [ -71.445923, 41.691144 ], [ -71.449318, 41.687401 ], [ -71.444468, 41.664409 ], [ -71.430038, 41.667541 ], [ -71.425452, 41.670785 ], [ -71.409302, 41.662643 ], [ -71.408636, 41.653819 ] ] ], [ [ [ -71.120570, 41.497448 ], [ -71.136867, 41.493942 ], [ -71.141093, 41.489937 ], [ -71.140224, 41.485855 ], [ -71.167345, 41.471405 ], [ -71.170131, 41.463974 ], [ -71.193020, 41.457931 ], [ -71.194967, 41.459037 ], [ -71.196857, 41.461116 ], [ -71.196607, 41.464756 ], [ -71.190016, 41.478275 ], [ -71.190167, 41.484285 ], [ -71.199390, 41.491769 ], [ -71.199692, 41.495511 ], [ -71.206382, 41.499215 ], [ -71.200788, 41.514371 ], [ -71.213563, 41.545818 ], [ -71.208650, 41.571028 ], [ -71.207780, 41.600660 ], [ -71.212656, 41.610072 ], [ -71.212417, 41.618290 ], [ -71.212004, 41.622990 ], [ -71.216160, 41.625490 ], [ -71.240709, 41.619225 ], [ -71.243600, 41.587508 ], [ -71.236130, 41.574767 ], [ -71.236642, 41.535852 ], [ -71.234775, 41.532538 ], [ -71.227989, 41.528297 ], [ -71.229444, 41.521544 ], [ -71.233056, 41.514757 ], [ -71.233141, 41.514598 ], [ -71.233435, 41.514045 ], [ -71.240614, 41.500557 ], [ -71.238586, 41.486845 ], [ -71.237175, 41.486546 ], [ -71.236751, 41.483369 ], [ -71.237783, 41.481155 ], [ -71.237902, 41.480899 ], [ -71.239804, 41.476817 ], [ -71.240047, 41.476296 ], [ -71.240710, 41.474872 ], [ -71.246703, 41.471960 ], [ -71.246676, 41.472323 ], [ -71.246174, 41.478917 ], [ -71.245992, 41.481302 ], [ -71.252692, 41.485902 ], [ -71.264793, 41.488902 ], [ -71.267579, 41.488755 ], [ -71.282262, 41.487982 ], [ -71.285639, 41.487805 ], [ -71.295111, 41.484350 ], [ -71.296517, 41.479829 ], [ -71.300438, 41.467220 ], [ -71.302583, 41.460325 ], [ -71.302741, 41.459817 ], [ -71.302895, 41.459323 ], [ -71.302929, 41.459213 ], [ -71.304247, 41.454976 ], [ -71.304394, 41.454502 ], [ -71.304604, 41.454391 ], [ -71.305896, 41.453708 ], [ -71.310357, 41.451350 ], [ -71.310473, 41.451289 ], [ -71.311344, 41.450829 ], [ -71.311394, 41.450802 ], [ -71.311404, 41.450807 ], [ -71.312694, 41.451402 ], [ -71.312718, 41.454597 ], [ -71.321410, 41.455600 ], [ -71.337377, 41.449033 ], [ -71.337695, 41.448902 ], [ -71.351096, 41.450802 ], [ -71.351457, 41.451099 ], [ -71.358166, 41.456616 ], [ -71.358262, 41.456695 ], [ -71.358356, 41.456772 ], [ -71.358657, 41.457019 ], [ -71.359015, 41.457314 ], [ -71.359136, 41.457414 ], [ -71.359292, 41.457542 ], [ -71.361852, 41.459647 ], [ -71.362201, 41.459934 ], [ -71.362288, 41.460006 ], [ -71.362699, 41.460343 ], [ -71.362743, 41.460379 ], [ -71.362736, 41.460405 ], [ -71.362012, 41.463041 ], [ -71.361760, 41.463955 ], [ -71.361520, 41.464831 ], [ -71.347070, 41.471230 ], [ -71.335992, 41.469647 ], [ -71.316519, 41.477560 ], [ -71.317414, 41.488776 ], [ -71.323125, 41.503088 ], [ -71.327804, 41.504258 ], [ -71.330694, 41.507699 ], [ -71.330831, 41.518364 ], [ -71.313079, 41.534672 ], [ -71.310533, 41.546920 ], [ -71.303652, 41.559925 ], [ -71.294363, 41.571416 ], [ -71.288376, 41.573274 ], [ -71.285142, 41.577127 ], [ -71.273445, 41.606990 ], [ -71.272412, 41.615041 ], [ -71.275234, 41.619444 ], [ -71.271862, 41.623986 ], [ -71.251082, 41.638780 ], [ -71.212136, 41.641945 ], [ -71.195640, 41.675090 ], [ -71.194390, 41.674802 ], [ -71.191178, 41.674216 ], [ -71.191175, 41.674292 ], [ -71.181290, 41.672502 ], [ -71.175990, 41.671402 ], [ -71.176090, 41.668502 ], [ -71.176090, 41.668102 ], [ -71.153989, 41.664102 ], [ -71.145870, 41.662795 ], [ -71.135188, 41.660502 ], [ -71.134688, 41.660502 ], [ -71.134478, 41.641262 ], [ -71.134484, 41.641198 ], [ -71.133796, 41.634090 ], [ -71.133608, 41.632152 ], [ -71.133353, 41.629509 ], [ -71.120570, 41.497448 ] ] ] ] } }\n,\n{ \"type\": \"Feature\", \"properties\": { \"GEO_ID\": \"0400000US46\", \"STATE\": \"46\", \"NAME\": \"South Dakota\", \"LSAD\": \"\", \"CENSUSAREA\": 75811.000000 }, \"geometry\": { \"type\": \"Polygon\", \"coordinates\": [ [ [ -104.055104, 43.853478 ], [ -104.055077, 43.936535 ], [ -104.054950, 43.938090 ], [ -104.054562, 44.141081 ], [ -104.054487, 44.180381 ], [ -104.055927, 44.517730 ], [ -104.055892, 44.543341 ], [ -104.055877, 44.571016 ], [ -104.055810, 44.691343 ], [ -104.055938, 44.693881 ], [ -104.055777, 44.700466 ], [ -104.055870, 44.723422 ], [ -104.055934, 44.723720 ], [ -104.055963, 44.767962 ], [ -104.055963, 44.768236 ], [ -104.057698, 44.997431 ], [ -104.040128, 44.999987 ], [ -104.040274, 45.212891 ], [ -104.040358, 45.335946 ], [ -104.040265, 45.345356 ], [ -104.040114, 45.374214 ], [ -104.040410, 45.393474 ], [ -104.041764, 45.490789 ], [ -104.041274, 45.499994 ], [ -104.041145, 45.503367 ], [ -104.041717, 45.539122 ], [ -104.041647, 45.550691 ], [ -104.041937, 45.557915 ], [ -104.043814, 45.868385 ], [ -104.044009, 45.871974 ], [ -104.044030, 45.881971 ], [ -104.044030, 45.881975 ], [ -104.045443, 45.945310 ], [ -103.668479, 45.945242 ], [ -103.660779, 45.945241 ], [ -103.660779, 45.945231 ], [ -103.577083, 45.945283 ], [ -103.558710, 45.945131 ], [ -103.434851, 45.945291 ], [ -103.432393, 45.945313 ], [ -103.418040, 45.945186 ], [ -103.411325, 45.945264 ], [ -103.284109, 45.945152 ], [ -103.284092, 45.945149 ], [ -103.218396, 45.945208 ], [ -103.210634, 45.945222 ], [ -103.161251, 45.945309 ], [ -103.140939, 45.945257 ], [ -103.097872, 45.945262 ], [ -103.078477, 45.945289 ], [ -103.047779, 45.945335 ], [ -103.026058, 45.945307 ], [ -102.995668, 45.945167 ], [ -102.995345, 45.945166 ], [ -102.989902, 45.945211 ], [ -102.942070, 45.945092 ], [ -102.920482, 45.945038 ], [ -102.880252, 45.945069 ], [ -102.704871, 45.945072 ], [ -102.674077, 45.945274 ], [ -102.672474, 45.945244 ], [ -102.666684, 45.945307 ], [ -102.651620, 45.945450 ], [ -102.642555, 45.945404 ], [ -102.558579, 45.945129 ], [ -102.550947, 45.945015 ], [ -102.476024, 45.945183 ], [ -102.467563, 45.945159 ], [ -102.459586, 45.945081 ], [ -102.446419, 45.945083 ], [ -102.425397, 45.945041 ], [ -102.425358, 45.944990 ], [ -102.420173, 45.945070 ], [ -102.410346, 45.945079 ], [ -102.406176, 45.944997 ], [ -102.398575, 45.944868 ], [ -102.396359, 45.944916 ], [ -102.392767, 45.944979 ], [ -102.392696, 45.944951 ], [ -102.354283, 45.944901 ], [ -102.353384, 45.944984 ], [ -102.328230, 45.944806 ], [ -102.217867, 45.944711 ], [ -102.176993, 45.944622 ], [ -102.176698, 45.944622 ], [ -102.159439, 45.944641 ], [ -102.157965, 45.944641 ], [ -102.156393, 45.944663 ], [ -102.145356, 45.944659 ], [ -102.135269, 45.944586 ], [ -102.125429, 45.944652 ], [ -102.124628, 45.944813 ], [ -102.087555, 45.944598 ], [ -102.085122, 45.944642 ], [ -102.060930, 45.944622 ], [ -102.000679, 45.944515 ], [ -102.000656, 45.944515 ], [ -102.000425, 45.944581 ], [ -101.998703, 45.944557 ], [ -101.998618, 45.944556 ], [ -101.992187, 45.944471 ], [ -101.989501, 45.944472 ], [ -101.973749, 45.944456 ], [ -101.957439, 45.944484 ], [ -101.886838, 45.944559 ], [ -101.852642, 45.944457 ], [ -101.832991, 45.944464 ], [ -101.794606, 45.944397 ], [ -101.790054, 45.944442 ], [ -101.766177, 45.944322 ], [ -101.765293, 45.944367 ], [ -101.764277, 45.944412 ], [ -101.758611, 45.944478 ], [ -101.730069, 45.944356 ], [ -101.723380, 45.944187 ], [ -101.708785, 45.944348 ], [ -101.681819, 45.944444 ], [ -101.680574, 45.944329 ], [ -101.657631, 45.944387 ], [ -101.628597, 45.944293 ], [ -101.562156, 45.944237 ], [ -101.557276, 45.944100 ], [ -101.373769, 45.944265 ], [ -101.370690, 45.944198 ], [ -101.365283, 45.944092 ], [ -101.333871, 45.944166 ], [ -101.313272, 45.944164 ], [ -101.287223, 45.944107 ], [ -101.271524, 45.944209 ], [ -101.224006, 45.944025 ], [ -101.203787, 45.943895 ], [ -101.179103, 45.943896 ], [ -101.175693, 45.943983 ], [ -101.171074, 45.943959 ], [ -101.163241, 45.943915 ], [ -101.146076, 45.943842 ], [ -101.142571, 45.943841 ], [ -101.106826, 45.943984 ], [ -101.101334, 45.943841 ], [ -100.980693, 45.944068 ], [ -100.976565, 45.943864 ], [ -100.964411, 45.943822 ], [ -100.938989, 45.943848 ], [ -100.935582, 45.943757 ], [ -100.890176, 45.943861 ], [ -100.769751, 45.943766 ], [ -100.762110, 45.943767 ], [ -100.762072, 45.943803 ], [ -100.750407, 45.943649 ], [ -100.720865, 45.944024 ], [ -100.650820, 45.943680 ], [ -100.627681, 45.943642 ], [ -100.511949, 45.943654 ], [ -100.511793, 45.943654 ], [ -100.499354, 45.943632 ], [ -100.462838, 45.943566 ], [ -100.430597, 45.943638 ], [ -100.424438, 45.943569 ], [ -100.420162, 45.943533 ], [ -100.410386, 45.943453 ], [ -100.294126, 45.943269 ], [ -100.285345, 45.943130 ], [ -100.284134, 45.942951 ], [ -100.275614, 45.942922 ], [ -100.274762, 45.942945 ], [ -100.170826, 45.942514 ], [ -100.152084, 45.942486 ], [ -100.141730, 45.942506 ], [ -100.110339, 45.942367 ], [ -100.108471, 45.942391 ], [ -100.084163, 45.942301 ], [ -100.069020, 45.942170 ], [ -100.005486, 45.941950 ], [ -99.965775, 45.941822 ], [ -99.880292, 45.941672 ], [ -99.880062, 45.941670 ], [ -99.838680, 45.941293 ], [ -99.750396, 45.940935 ], [ -99.749494, 45.940956 ], [ -99.749325, 45.940935 ], [ -99.747870, 45.940933 ], [ -99.718073, 45.940907 ], [ -99.718071, 45.940907 ], [ -99.692975, 45.940949 ], [ -99.671938, 45.941062 ], [ -99.611160, 45.941098 ], [ -99.588780, 45.941104 ], [ -99.493140, 45.940383 ], [ -99.490254, 45.940362 ], [ -99.401260, 45.940367 ], [ -99.385565, 45.940407 ], [ -99.378486, 45.940403 ], [ -99.344960, 45.940299 ], [ -99.344774, 45.940299 ], [ -99.317875, 45.940263 ], [ -99.297272, 45.940165 ], [ -99.283968, 45.940195 ], [ -99.276266, 45.940188 ], [ -99.257745, 45.940060 ], [ -99.222269, 45.940071 ], [ -99.221672, 45.940069 ], [ -99.213644, 45.940116 ], [ -99.212571, 45.940108 ], [ -99.102372, 45.940158 ], [ -99.092868, 45.940184 ], [ -99.005754, 45.939944 ], [ -99.005642, 45.939944 ], [ -98.905477, 45.939520 ], [ -98.904429, 45.939520 ], [ -98.724375, 45.938685 ], [ -98.185630, 45.936185 ], [ -98.184637, 45.936183 ], [ -98.070515, 45.936180 ], [ -98.008202, 45.936096 ], [ -98.008102, 45.936095 ], [ -97.986893, 45.935961 ], [ -97.978778, 45.935937 ], [ -97.958718, 45.935878 ], [ -97.784575, 45.935327 ], [ -97.777040, 45.935393 ], [ -97.696691, 45.935352 ], [ -97.542598, 45.935258 ], [ -97.519035, 45.935304 ], [ -97.518944, 45.935304 ], [ -97.491892, 45.935111 ], [ -97.481967, 45.935138 ], [ -97.318899, 45.935054 ], [ -97.312184, 45.935077 ], [ -97.228323, 45.935141 ], [ -97.228304, 45.935141 ], [ -97.228291, 45.935141 ], [ -97.144987, 45.935278 ], [ -97.118053, 45.935485 ], [ -97.019596, 45.935382 ], [ -96.998652, 45.935700 ], [ -96.791505, 45.935857 ], [ -96.701313, 45.935807 ], [ -96.680646, 45.935716 ], [ -96.659895, 45.935560 ], [ -96.639066, 45.935318 ], [ -96.618295, 45.935407 ], [ -96.607142, 45.935301 ], [ -96.597432, 45.935209 ], [ -96.576897, 45.935259 ], [ -96.563280, 45.935238 ], [ -96.564518, 45.926256 ], [ -96.564317, 45.921074 ], [ -96.569069, 45.914785 ], [ -96.569401, 45.913946 ], [ -96.569265, 45.911471 ], [ -96.568918, 45.911426 ], [ -96.568315, 45.902902 ], [ -96.568053, 45.898697 ], [ -96.568281, 45.891203 ], [ -96.568772, 45.888072 ], [ -96.572984, 45.861602 ], [ -96.576544, 45.839945 ], [ -96.579740, 45.825820 ], [ -96.583085, 45.820024 ], [ -96.652226, 45.746809 ], [ -96.672665, 45.732336 ], [ -96.711157, 45.717561 ], [ -96.745086, 45.701576 ], [ -96.835769, 45.649648 ], [ -96.840746, 45.645294 ], [ -96.844211, 45.639583 ], [ -96.857751, 45.605962 ], [ -96.853646, 45.602307 ], [ -96.849444, 45.598944 ], [ -96.844334, 45.594375 ], [ -96.843957, 45.594003 ], [ -96.835451, 45.586129 ], [ -96.784863, 45.541300 ], [ -96.765280, 45.521414 ], [ -96.745487, 45.488712 ], [ -96.742509, 45.478723 ], [ -96.732739, 45.458737 ], [ -96.692541, 45.417338 ], [ -96.680454, 45.410499 ], [ -96.617726, 45.408092 ], [ -96.521787, 45.375645 ], [ -96.489065, 45.357071 ], [ -96.470020, 45.326832 ], [ -96.454094, 45.301546 ], [ -96.453067, 45.298115 ], [ -96.452791, 45.284280 ], [ -96.452949, 45.269059 ], [ -96.452948, 45.268925 ], [ -96.452315, 45.208986 ], [ -96.452152, 45.204849 ], [ -96.452162, 45.203109 ], [ -96.452304, 45.178563 ], [ -96.452353, 45.124071 ], [ -96.452418, 45.122677 ], [ -96.452026, 45.095138 ], [ -96.452219, 45.093836 ], [ -96.452210, 45.051602 ], [ -96.452177, 45.050185 ], [ -96.452240, 45.042347 ], [ -96.452092, 44.977494 ], [ -96.452092, 44.977475 ], [ -96.452347, 44.962734 ], [ -96.452047, 44.910695 ], [ -96.451853, 44.906672 ], [ -96.452009, 44.890080 ], [ -96.451560, 44.805569 ], [ -96.451559, 44.805468 ], [ -96.451829, 44.797691 ], [ -96.451888, 44.792299 ], [ -96.451823, 44.790471 ], [ -96.451620, 44.776191 ], [ -96.451380, 44.761788 ], [ -96.451573, 44.760510 ], [ -96.451543, 44.703135 ], [ -96.451761, 44.631350 ], [ -96.451761, 44.631194 ], [ -96.451720, 44.630708 ], [ -96.451888, 44.544058 ], [ -96.451990, 44.543639 ], [ -96.452016, 44.543533 ], [ -96.452236, 44.526871 ], [ -96.452010, 44.516929 ], [ -96.451974, 44.506849 ], [ -96.452122, 44.473043 ], [ -96.452218, 44.470873 ], [ -96.451816, 44.460402 ], [ -96.451924, 44.441549 ], [ -96.452073, 44.389690 ], [ -96.452134, 44.383679 ], [ -96.452213, 44.360149 ], [ -96.452282, 44.354857 ], [ -96.452305, 44.345332 ], [ -96.452152, 44.342219 ], [ -96.452248, 44.340642 ], [ -96.452309, 44.328094 ], [ -96.452372, 44.325991 ], [ -96.452248, 44.313362 ], [ -96.452369, 44.312071 ], [ -96.452239, 44.298655 ], [ -96.452334, 44.297009 ], [ -96.452500, 44.285687 ], [ -96.452617, 44.282702 ], [ -96.452365, 44.271972 ], [ -96.452369, 44.268967 ], [ -96.452419, 44.255274 ], [ -96.452673, 44.254588 ], [ -96.452774, 44.196895 ], [ -96.452774, 44.196780 ], [ -96.453187, 44.038350 ], [ -96.453313, 44.036430 ], [ -96.453405, 44.025413 ], [ -96.453373, 44.023744 ], [ -96.453053, 44.008887 ], [ -96.453116, 44.006876 ], [ -96.453297, 43.994723 ], [ -96.453328, 43.992871 ], [ -96.453263, 43.980277 ], [ -96.453389, 43.978060 ], [ -96.453292, 43.967180 ], [ -96.453165, 43.966540 ], [ -96.453289, 43.950814 ], [ -96.453352, 43.949122 ], [ -96.453183, 43.878650 ], [ -96.453304, 43.878583 ], [ -96.453335, 43.877029 ], [ -96.453264, 43.849604 ], [ -96.453264, 43.849506 ], [ -96.453264, 43.849501 ], [ -96.453088, 43.805123 ], [ -96.453281, 43.791435 ], [ -96.453380, 43.689637 ], [ -96.453408, 43.675008 ], [ -96.453387, 43.609944 ], [ -96.453356, 43.607544 ], [ -96.453383, 43.588183 ], [ -96.453352, 43.587040 ], [ -96.453049, 43.500415 ], [ -96.591213, 43.500514 ], [ -96.598928, 43.500457 ], [ -96.587151, 43.484697 ], [ -96.584070, 43.468856 ], [ -96.600039, 43.457080 ], [ -96.602860, 43.450907 ], [ -96.594254, 43.434153 ], [ -96.557586, 43.406792 ], [ -96.537460, 43.395246 ], [ -96.531159, 43.395610 ], [ -96.529152, 43.397735 ], [ -96.524044, 43.394762 ], [ -96.521697, 43.386897 ], [ -96.521264, 43.374978 ], [ -96.525564, 43.312467 ], [ -96.530392, 43.300034 ], [ -96.551929, 43.292974 ], [ -96.569110, 43.295535 ], [ -96.586317, 43.274319 ], [ -96.584124, 43.268101 ], [ -96.572489, 43.249178 ], [ -96.557126, 43.224192 ], [ -96.485264, 43.224183 ], [ -96.475571, 43.221054 ], [ -96.436589, 43.120842 ], [ -96.439335, 43.113916 ], [ -96.455107, 43.083366 ], [ -96.466017, 43.062235 ], [ -96.513111, 43.027880 ], [ -96.509479, 42.971122 ], [ -96.510749, 42.944397 ], [ -96.523264, 42.909059 ], [ -96.541460, 42.857682 ], [ -96.549513, 42.839143 ], [ -96.552092, 42.836057 ], [ -96.563058, 42.831051 ], [ -96.577813, 42.828102 ], [ -96.632142, 42.770863 ], [ -96.633168, 42.768325 ], [ -96.639704, 42.737071 ], [ -96.630617, 42.705880 ], [ -96.610975, 42.694751 ], [ -96.606140, 42.694661 ], [ -96.601989, 42.697429 ], [ -96.575299, 42.682665 ], [ -96.542366, 42.660736 ], [ -96.516338, 42.630435 ], [ -96.479685, 42.561238 ], [ -96.476952, 42.556079 ], [ -96.477709, 42.535595 ], [ -96.479909, 42.524195 ], [ -96.481308, 42.516556 ], [ -96.476947, 42.508677 ], [ -96.466253, 42.497702 ], [ -96.443408, 42.489495 ], [ -96.475565, 42.480036 ], [ -96.487490, 42.479846 ], [ -96.611489, 42.506088 ], [ -96.625958, 42.513576 ], [ -96.635982, 42.524324 ], [ -96.708049, 42.601594 ], [ -96.711332, 42.610399 ], [ -96.710604, 42.619625 ], [ -96.707245, 42.631258 ], [ -96.712871, 42.648136 ], [ -96.724033, 42.665971 ], [ -96.806553, 42.703405 ], [ -96.813148, 42.706397 ], [ -96.906797, 42.733800 ], [ -96.920494, 42.731432 ], [ -96.961021, 42.738075 ], [ -97.015691, 42.758697 ], [ -97.026103, 42.762625 ], [ -97.052180, 42.770187 ], [ -97.137460, 42.782313 ], [ -97.163082, 42.793385 ], [ -97.190135, 42.805076 ], [ -97.218269, 42.829561 ], [ -97.257089, 42.853854 ], [ -97.328511, 42.859501 ], [ -97.423190, 42.861168 ], [ -97.485376, 42.854838 ], [ -97.531867, 42.850105 ], [ -97.635115, 42.844984 ], [ -97.686506, 42.842435 ], [ -97.774456, 42.849774 ], [ -97.814382, 42.861119 ], [ -97.828496, 42.868797 ], [ -97.845270, 42.867734 ], [ -97.865695, 42.862860 ], [ -97.875345, 42.858724 ], [ -97.879878, 42.835395 ], [ -97.888562, 42.817251 ], [ -97.908983, 42.794909 ], [ -97.936716, 42.775754 ], [ -97.950147, 42.769619 ], [ -98.000348, 42.763256 ], [ -98.017228, 42.762411 ], [ -98.035034, 42.764205 ], [ -98.056625, 42.770781 ], [ -98.157405, 42.831899 ], [ -98.165835, 42.837011 ], [ -98.204506, 42.846845 ], [ -98.309741, 42.881232 ], [ -98.325864, 42.886500 ], [ -98.447047, 42.935117 ], [ -98.467356, 42.947556 ], [ -98.490483, 42.977948 ], [ -98.495747, 42.988032 ], [ -98.498550, 42.998560 ], [ -98.565072, 42.998400 ], [ -98.568936, 42.998537 ], [ -98.663712, 42.998444 ], [ -98.665613, 42.998536 ], [ -98.742394, 42.998343 ], [ -98.764378, 42.998323 ], [ -98.801304, 42.998241 ], [ -98.823989, 42.998310 ], [ -98.899944, 42.998122 ], [ -98.903154, 42.998306 ], [ -98.919136, 42.998242 ], [ -98.919234, 42.998241 ], [ -98.962081, 42.998286 ], [ -99.000370, 42.998273 ], [ -99.021909, 42.998365 ], [ -99.022300, 42.998237 ], [ -99.080011, 42.998357 ], [ -99.081880, 42.998288 ], [ -99.135961, 42.998301 ], [ -99.139045, 42.998508 ], [ -99.151143, 42.998344 ], [ -99.161388, 42.998465 ], [ -99.195199, 42.998107 ], [ -99.234462, 42.998281 ], [ -99.254297, 42.998138 ], [ -99.254454, 42.998140 ], [ -99.262710, 42.998234 ], [ -99.288045, 42.998152 ], [ -99.347283, 42.998217 ], [ -99.368628, 42.998140 ], [ -99.371121, 42.998093 ], [ -99.374268, 42.998047 ], [ -99.395568, 42.998170 ], [ -99.471353, 42.997967 ], [ -99.474531, 42.998081 ], [ -99.490798, 42.998143 ], [ -99.494287, 42.998118 ], [ -99.534049, 42.998041 ], [ -99.535375, 42.998038 ], [ -99.569277, 42.997995 ], [ -99.699234, 42.997880 ], [ -99.701446, 42.997994 ], [ -99.719177, 42.997899 ], [ -99.726788, 42.997892 ], [ -99.743138, 42.997912 ], [ -99.768524, 42.998125 ], [ -99.788247, 42.998016 ], [ -99.800306, 42.997972 ], [ -99.803328, 42.998064 ], [ -99.809373, 42.998178 ], [ -99.821868, 42.997995 ], [ -99.850037, 42.998171 ], [ -99.859945, 42.997962 ], [ -99.869885, 42.998094 ], [ -99.877697, 42.998094 ], [ -99.918401, 42.998057 ], [ -99.927645, 42.998113 ], [ -99.950411, 42.998286 ], [ -99.950921, 42.998291 ], [ -99.961204, 42.998335 ], [ -100.004757, 42.998392 ], [ -100.027815, 42.998424 ], [ -100.034389, 42.998425 ], [ -100.119297, 42.998689 ], [ -100.126427, 42.998710 ], [ -100.126896, 42.998711 ], [ -100.198412, 42.998542 ], [ -100.198413, 42.998542 ], [ -100.198434, 42.998542 ], [ -100.277793, 42.998674 ], [ -100.283713, 42.998767 ], [ -100.349548, 42.998740 ], [ -100.355406, 42.998760 ], [ -100.472742, 42.999288 ], [ -100.534335, 42.999017 ], [ -100.544018, 42.998795 ], [ -100.553131, 42.998721 ], [ -100.887898, 42.997881 ], [ -100.906714, 42.997910 ], [ -100.958365, 42.997796 ], [ -100.964190, 42.997886 ], [ -101.226494, 42.997901 ], [ -101.226853, 42.997896 ], [ -101.228104, 42.997874 ], [ -101.229203, 42.997854 ], [ -101.230325, 42.997899 ], [ -101.625424, 42.996238 ], [ -101.875424, 42.999298 ], [ -102.082486, 42.999356 ], [ -102.082546, 42.999356 ], [ -102.440547, 42.999609 ], [ -102.487329, 42.999559 ], [ -102.792111, 42.999980 ], [ -103.000897, 43.000474 ], [ -103.131740, 43.000783 ], [ -103.132955, 43.000784 ], [ -103.340829, 43.000879 ], [ -103.404579, 43.000737 ], [ -103.505100, 43.000770 ], [ -103.505219, 43.000770 ], [ -103.506151, 43.000771 ], [ -103.506556, 43.000771 ], [ -103.576329, 43.000807 ], [ -103.576966, 43.000746 ], [ -103.813939, 43.001378 ], [ -103.815573, 43.001279 ], [ -104.053127, 43.000585 ], [ -104.053876, 43.289801 ], [ -104.053884, 43.297047 ], [ -104.054218, 43.304370 ], [ -104.054403, 43.325914 ], [ -104.054614, 43.390949 ], [ -104.054766, 43.428914 ], [ -104.054779, 43.477815 ], [ -104.054786, 43.503072 ], [ -104.054787, 43.503328 ], [ -104.055032, 43.558603 ], [ -104.054840, 43.579368 ], [ -104.054885, 43.583512 ], [ -104.054902, 43.583852 ], [ -104.055133, 43.747105 ], [ -104.055138, 43.750421 ], [ -104.055104, 43.853478 ] ] ] } }\n,\n{ \"type\": \"Feature\", \"properties\": { \"GEO_ID\": \"0400000US48\", \"STATE\": \"48\", \"NAME\": \"Texas\", \"LSAD\": \"\", \"CENSUSAREA\": 261231.711000 }, \"geometry\": { \"type\": \"MultiPolygon\", \"coordinates\": [ [ [ [ -96.830030, 28.111842 ], [ -96.827049, 28.112417 ], [ -96.816574, 28.119618 ], [ -96.810420, 28.126034 ], [ -96.810944, 28.136378 ], [ -96.816836, 28.158048 ], [ -96.820315, 28.163494 ], [ -96.822859, 28.167476 ], [ -96.818656, 28.172280 ], [ -96.816443, 28.174808 ], [ -96.791958, 28.188687 ], [ -96.733037, 28.190913 ], [ -96.703838, 28.198246 ], [ -96.697422, 28.202959 ], [ -96.702659, 28.211208 ], [ -96.703314, 28.216446 ], [ -96.686816, 28.218410 ], [ -96.662462, 28.227314 ], [ -96.660628, 28.228885 ], [ -96.663116, 28.233206 ], [ -96.651856, 28.251275 ], [ -96.607992, 28.277070 ], [ -96.608123, 28.280081 ], [ -96.611527, 28.281391 ], [ -96.610480, 28.283093 ], [ -96.592934, 28.296972 ], [ -96.581019, 28.302210 ], [ -96.553260, 28.302341 ], [ -96.546975, 28.305614 ], [ -96.542131, 28.315958 ], [ -96.528906, 28.322505 ], [ -96.476269, 28.330754 ], [ -96.450998, 28.337039 ], [ -96.434108, 28.344764 ], [ -96.418919, 28.354846 ], [ -96.415253, 28.362833 ], [ -96.417217, 28.367154 ], [ -96.412896, 28.369511 ], [ -96.403206, 28.371475 ], [ -96.401242, 28.366892 ], [ -96.397846, 28.343513 ], [ -96.413700, 28.327343 ], [ -96.439099, 28.319052 ], [ -96.547774, 28.270798 ], [ -96.621534, 28.229700 ], [ -96.694666, 28.182120 ], [ -96.758141, 28.136873 ], [ -96.849624, 28.064939 ], [ -96.853455, 28.061345 ], [ -96.929053, 27.990440 ], [ -96.966996, 27.950531 ], [ -97.001441, 27.911442 ], [ -97.031660, 27.869975 ], [ -97.041799, 27.852926 ], [ -97.045409, 27.837452 ], [ -97.045980, 27.835004 ], [ -97.085395, 27.793245 ], [ -97.116277, 27.752599 ], [ -97.166682, 27.676583 ], [ -97.201866, 27.614858 ], [ -97.221912, 27.576315 ], [ -97.276091, 27.472145 ], [ -97.304470, 27.407734 ], [ -97.326523, 27.347612 ], [ -97.347438, 27.277963 ], [ -97.350398, 27.268105 ], [ -97.363401, 27.210366 ], [ -97.370941, 27.161166 ], [ -97.377001, 27.101021 ], [ -97.379130, 27.047996 ], [ -97.378362, 26.992877 ], [ -97.370731, 26.909706 ], [ -97.364726, 26.871693 ], [ -97.351413, 26.808604 ], [ -97.333028, 26.736479 ], [ -97.300690, 26.635375 ], [ -97.287885, 26.600341 ], [ -97.275119, 26.565415 ], [ -97.269392, 26.554046 ], [ -97.229844, 26.433569 ], [ -97.223728, 26.411492 ], [ -97.194644, 26.306513 ], [ -97.185844, 26.267103 ], [ -97.173265, 26.192314 ], [ -97.161471, 26.088705 ], [ -97.154271, 26.066841 ], [ -97.161462, 26.067640 ], [ -97.169842, 26.077853 ], [ -97.171781, 26.102522 ], [ -97.179532, 26.146202 ], [ -97.178746, 26.177103 ], [ -97.183983, 26.214289 ], [ -97.194458, 26.271640 ], [ -97.214885, 26.353606 ], [ -97.226931, 26.385555 ], [ -97.240286, 26.405981 ], [ -97.240849, 26.411504 ], [ -97.243167, 26.434263 ], [ -97.247619, 26.456261 ], [ -97.254166, 26.471188 ], [ -97.262546, 26.482972 ], [ -97.276425, 26.521729 ], [ -97.292399, 26.528014 ], [ -97.310730, 26.556558 ], [ -97.308112, 26.571223 ], [ -97.308635, 26.576723 ], [ -97.317015, 26.597673 ], [ -97.318458, 26.600270 ], [ -97.324872, 26.611814 ], [ -97.338489, 26.647429 ], [ -97.336394, 26.666022 ], [ -97.345822, 26.700589 ], [ -97.363105, 26.710540 ], [ -97.370438, 26.723896 ], [ -97.370961, 26.736204 ], [ -97.367557, 26.740394 ], [ -97.364153, 26.758987 ], [ -97.364646, 26.767122 ], [ -97.368866, 26.774699 ], [ -97.370438, 26.781508 ], [ -97.368343, 26.795649 ], [ -97.373056, 26.808481 ], [ -97.387459, 26.820789 ], [ -97.383531, 26.875521 ], [ -97.385626, 26.888876 ], [ -97.391649, 26.901970 ], [ -97.389554, 26.945965 ], [ -97.390340, 27.052286 ], [ -97.389816, 27.067213 ], [ -97.386412, 27.083187 ], [ -97.387459, 27.090519 ], [ -97.390602, 27.094186 ], [ -97.390078, 27.156512 ], [ -97.377508, 27.199459 ], [ -97.379865, 27.202863 ], [ -97.386674, 27.204696 ], [ -97.382222, 27.229051 ], [ -97.374890, 27.250262 ], [ -97.373318, 27.276450 ], [ -97.372861, 27.278069 ], [ -97.367033, 27.298709 ], [ -97.364676, 27.302637 ], [ -97.359963, 27.304732 ], [ -97.357606, 27.307875 ], [ -97.362320, 27.326730 ], [ -97.366771, 27.333276 ], [ -97.361796, 27.359988 ], [ -97.346607, 27.390365 ], [ -97.336132, 27.402411 ], [ -97.331157, 27.412362 ], [ -97.329585, 27.418124 ], [ -97.330895, 27.425456 ], [ -97.329847, 27.434360 ], [ -97.317277, 27.463690 ], [ -97.293709, 27.497209 ], [ -97.282972, 27.521564 ], [ -97.266474, 27.542514 ], [ -97.257832, 27.556393 ], [ -97.261760, 27.563464 ], [ -97.260451, 27.567392 ], [ -97.252071, 27.578652 ], [ -97.247877, 27.581366 ], [ -97.247619, 27.581533 ], [ -97.236882, 27.598293 ], [ -97.241072, 27.602483 ], [ -97.242643, 27.607458 ], [ -97.231383, 27.632336 ], [ -97.221955, 27.632860 ], [ -97.219075, 27.630241 ], [ -97.214099, 27.631551 ], [ -97.200743, 27.650144 ], [ -97.197339, 27.664547 ], [ -97.197601, 27.678426 ], [ -97.203474, 27.684533 ], [ -97.203089, 27.688001 ], [ -97.190007, 27.692829 ], [ -97.170628, 27.720326 ], [ -97.166176, 27.732372 ], [ -97.161200, 27.734074 ], [ -97.153606, 27.733289 ], [ -97.147321, 27.735384 ], [ -97.130823, 27.751620 ], [ -97.127942, 27.755810 ], [ -97.127681, 27.760000 ], [ -97.103326, 27.789068 ], [ -97.102279, 27.798233 ], [ -97.098874, 27.808447 ], [ -97.092851, 27.814470 ], [ -97.092589, 27.819183 ], [ -97.098874, 27.822850 ], [ -97.126109, 27.819707 ], [ -97.130299, 27.820493 ], [ -97.134489, 27.825206 ], [ -97.132394, 27.827301 ], [ -97.056713, 27.842294 ], [ -97.055823, 27.843404 ], [ -97.043226, 27.859119 ], [ -97.013634, 27.906780 ], [ -97.017955, 27.911494 ], [ -97.016384, 27.917255 ], [ -96.985745, 27.954048 ], [ -96.977889, 27.976439 ], [ -96.978805, 27.978272 ], [ -96.980900, 27.978272 ], [ -96.986007, 27.976177 ], [ -96.986661, 27.980759 ], [ -96.978282, 28.001709 ], [ -96.967807, 28.020041 ], [ -96.966759, 28.020368 ], [ -96.965188, 28.013297 ], [ -96.962569, 28.012381 ], [ -96.952618, 28.016440 ], [ -96.946988, 28.026522 ], [ -96.932454, 28.035426 ], [ -96.926430, 28.043413 ], [ -96.929573, 28.051400 ], [ -96.927085, 28.057292 ], [ -96.906004, 28.076147 ], [ -96.890947, 28.076802 ], [ -96.886233, 28.084396 ], [ -96.888328, 28.086622 ], [ -96.889113, 28.099454 ], [ -96.886887, 28.117130 ], [ -96.879424, 28.131402 ], [ -96.874972, 28.133236 ], [ -96.870782, 28.131271 ], [ -96.864628, 28.126296 ], [ -96.857165, 28.115559 ], [ -96.845380, 28.108881 ], [ -96.830030, 28.111842 ] ] ], [ [ [ -100.000381, 34.746461 ], [ -100.000381, 34.746358 ], [ -100.000381, 34.560509 ], [ -99.997853, 34.561485 ], [ -99.954567, 34.578195 ], [ -99.945720, 34.579273 ], [ -99.923211, 34.574552 ], [ -99.884842, 34.546953 ], [ -99.874403, 34.537095 ], [ -99.872357, 34.532096 ], [ -99.864922, 34.523018 ], [ -99.846399, 34.505045 ], [ -99.793684, 34.453894 ], [ -99.767234, 34.430502 ], [ -99.694970, 34.378333 ], [ -99.663948, 34.373680 ], [ -99.616793, 34.375391 ], [ -99.580060, 34.416653 ], [ -99.574367, 34.418281 ], [ -99.515385, 34.414333 ], [ -99.499875, 34.409608 ], [ -99.474161, 34.398052 ], [ -99.453477, 34.388756 ], [ -99.440760, 34.374123 ], [ -99.407168, 34.372605 ], [ -99.398635, 34.375832 ], [ -99.356713, 34.442144 ], [ -99.261321, 34.403499 ], [ -99.211423, 34.337897 ], [ -99.211396, 34.337688 ], [ -99.209724, 34.324935 ], [ -99.211600, 34.313970 ], [ -99.211648, 34.292232 ], [ -99.190890, 34.215251 ], [ -99.157114, 34.207414 ], [ -99.119204, 34.201747 ], [ -99.060344, 34.204761 ], [ -98.966743, 34.201185 ], [ -98.952527, 34.195621 ], [ -98.920042, 34.182908 ], [ -98.858419, 34.152732 ], [ -98.765570, 34.136376 ], [ -98.700182, 34.135995 ], [ -98.665824, 34.151617 ], [ -98.652347, 34.161029 ], [ -98.637575, 34.162284 ], [ -98.610112, 34.161039 ], [ -98.599789, 34.160571 ], [ -98.577356, 34.149100 ], [ -98.553717, 34.133660 ], [ -98.504182, 34.072371 ], [ -98.475066, 34.064269 ], [ -98.433769, 34.096116 ], [ -98.400494, 34.121778 ], [ -98.398441, 34.128456 ], [ -98.383222, 34.147806 ], [ -98.364023, 34.157109 ], [ -98.325445, 34.151025 ], [ -98.300209, 34.134579 ], [ -98.293901, 34.133020 ], [ -98.200075, 34.116783 ], [ -98.169120, 34.114171 ], [ -98.106261, 34.033696 ], [ -98.088203, 34.005481 ], [ -98.085260, 34.003259 ], [ -98.041117, 33.993456 ], [ -98.019485, 33.993804 ], [ -97.983521, 34.001559 ], [ -97.945730, 33.989839 ], [ -97.953395, 33.936445 ], [ -97.977859, 33.889929 ], [ -97.977810, 33.889894 ], [ -97.966706, 33.881949 ], [ -97.877387, 33.850236 ], [ -97.865765, 33.849393 ], [ -97.834333, 33.857671 ], [ -97.785317, 33.890701 ], [ -97.733723, 33.936392 ], [ -97.700477, 33.972246 ], [ -97.693110, 33.983699 ], [ -97.688023, 33.986607 ], [ -97.671772, 33.991370 ], [ -97.656210, 33.989488 ], [ -97.609091, 33.968093 ], [ -97.589598, 33.953554 ], [ -97.588828, 33.951882 ], [ -97.597115, 33.917868 ], [ -97.596289, 33.913769 ], [ -97.587441, 33.902479 ], [ -97.581041, 33.900396 ], [ -97.561054, 33.898006 ], [ -97.555002, 33.897282 ], [ -97.545526, 33.900396 ], [ -97.519171, 33.913638 ], [ -97.500960, 33.919643 ], [ -97.486505, 33.916994 ], [ -97.484071, 33.915680 ], [ -97.458069, 33.901635 ], [ -97.450954, 33.891398 ], [ -97.451469, 33.870930 ], [ -97.457617, 33.855126 ], [ -97.461486, 33.849560 ], [ -97.462857, 33.841772 ], [ -97.459068, 33.834581 ], [ -97.453057, 33.828536 ], [ -97.444193, 33.823773 ], [ -97.426493, 33.819398 ], [ -97.372941, 33.819454 ], [ -97.310843, 33.872461 ], [ -97.226522, 33.914642 ], [ -97.210921, 33.916064 ], [ -97.185458, 33.900700 ], [ -97.180845, 33.895204 ], [ -97.166629, 33.847311 ], [ -97.166824, 33.840395 ], [ -97.171627, 33.835335 ], [ -97.181370, 33.831375 ], [ -97.194678, 33.831192 ], [ -97.199700, 33.827322 ], [ -97.204995, 33.818870 ], [ -97.204827, 33.799908 ], [ -97.172192, 33.737545 ], [ -97.163149, 33.729322 ], [ -97.162803, 33.729127 ], [ -97.151257, 33.722608 ], [ -97.137530, 33.718664 ], [ -97.121102, 33.717174 ], [ -97.107183, 33.721119 ], [ -97.097154, 33.727809 ], [ -97.092414, 33.733214 ], [ -97.047972, 33.817931 ], [ -97.006130, 33.861884 ], [ -96.985567, 33.886522 ], [ -96.972870, 33.935698 ], [ -96.944611, 33.948994 ], [ -96.934508, 33.953748 ], [ -96.922114, 33.959579 ], [ -96.916300, 33.957798 ], [ -96.907387, 33.950025 ], [ -96.899442, 33.933728 ], [ -96.895728, 33.896414 ], [ -96.883010, 33.868019 ], [ -96.866438, 33.853149 ], [ -96.856090, 33.847490 ], [ -96.761588, 33.824406 ], [ -96.712422, 33.831633 ], [ -96.707274, 33.835398 ], [ -96.700952, 33.840748 ], [ -96.694629, 33.849988 ], [ -96.689280, 33.861660 ], [ -96.685389, 33.872846 ], [ -96.682471, 33.883059 ], [ -96.678580, 33.892786 ], [ -96.672258, 33.899595 ], [ -96.658640, 33.900081 ], [ -96.646968, 33.895218 ], [ -96.633351, 33.889382 ], [ -96.622165, 33.885977 ], [ -96.615356, 33.881114 ], [ -96.613494, 33.878321 ], [ -96.611466, 33.875278 ], [ -96.612963, 33.867651 ], [ -96.615843, 33.853393 ], [ -96.614870, 33.841234 ], [ -96.612925, 33.833939 ], [ -96.500268, 33.772583 ], [ -96.448045, 33.781031 ], [ -96.436455, 33.780050 ], [ -96.423362, 33.776365 ], [ -96.378473, 33.726648 ], [ -96.369590, 33.716809 ], [ -96.304675, 33.745901 ], [ -96.229859, 33.748320 ], [ -96.220521, 33.747390 ], [ -96.199900, 33.752117 ], [ -96.181704, 33.758504 ], [ -96.170055, 33.769170 ], [ -96.164100, 33.784261 ], [ -96.156717, 33.813324 ], [ -96.148070, 33.837799 ], [ -96.097526, 33.847544 ], [ -95.949935, 33.857452 ], [ -95.846334, 33.841136 ], [ -95.824680, 33.837726 ], [ -95.763622, 33.847954 ], [ -95.757156, 33.867293 ], [ -95.599678, 33.934247 ], [ -95.567022, 33.932697 ], [ -95.559414, 33.930179 ], [ -95.549145, 33.907950 ], [ -95.549475, 33.901311 ], [ -95.552331, 33.894420 ], [ -95.552085, 33.888422 ], [ -95.548325, 33.882744 ], [ -95.544346, 33.880111 ], [ -95.445751, 33.868850 ], [ -95.407795, 33.866308 ], [ -95.339758, 33.868752 ], [ -95.310475, 33.871481 ], [ -95.287565, 33.873617 ], [ -95.260815, 33.887653 ], [ -95.255541, 33.892047 ], [ -95.249922, 33.902024 ], [ -95.248200, 33.912327 ], [ -95.249807, 33.922241 ], [ -95.253623, 33.929710 ], [ -95.252906, 33.933648 ], [ -95.231113, 33.960361 ], [ -95.226393, 33.961954 ], [ -95.219358, 33.961567 ], [ -95.155981, 33.944027 ], [ -95.129572, 33.936718 ], [ -95.067253, 33.917351 ], [ -95.063459, 33.914040 ], [ -95.062284, 33.903618 ], [ -95.039452, 33.860621 ], [ -94.869300, 33.745871 ], [ -94.822473, 33.732716 ], [ -94.760604, 33.727054 ], [ -94.746096, 33.703016 ], [ -94.735128, 33.691267 ], [ -94.660964, 33.660322 ], [ -94.528380, 33.615995 ], [ -94.524055, 33.615765 ], [ -94.490684, 33.625586 ], [ -94.487611, 33.628544 ], [ -94.485875, 33.637867 ], [ -94.478366, 33.620847 ], [ -94.470963, 33.605940 ], [ -94.464336, 33.598819 ], [ -94.409329, 33.568265 ], [ -94.355945, 33.543180 ], [ -94.257801, 33.582508 ], [ -94.252656, 33.586144 ], [ -94.181805, 33.593217 ], [ -94.085243, 33.575546 ], [ -94.066846, 33.568909 ], [ -94.043450, 33.552253 ], [ -94.043428, 33.551425 ], [ -94.043375, 33.542315 ], [ -94.043009, 33.493039 ], [ -94.043279, 33.491030 ], [ -94.043188, 33.470324 ], [ -94.042988, 33.435824 ], [ -94.042988, 33.431024 ], [ -94.042887, 33.420225 ], [ -94.043053, 33.377716 ], [ -94.042869, 33.371170 ], [ -94.043128, 33.358757 ], [ -94.043067, 33.352097 ], [ -94.043067, 33.347351 ], [ -94.043067, 33.330498 ], [ -94.042990, 33.271243 ], [ -94.042990, 33.271227 ], [ -94.043050, 33.260904 ], [ -94.043004, 33.250128 ], [ -94.042730, 33.241823 ], [ -94.042876, 33.215219 ], [ -94.042892, 33.202666 ], [ -94.042875, 33.199785 ], [ -94.043185, 33.143476 ], [ -94.043077, 33.138162 ], [ -94.043007, 33.133890 ], [ -94.042870, 33.092727 ], [ -94.043036, 33.079485 ], [ -94.042964, 33.019219 ], [ -94.043088, 32.955592 ], [ -94.043067, 32.937903 ], [ -94.043092, 32.910021 ], [ -94.042885, 32.898911 ], [ -94.042859, 32.892771 ], [ -94.042886, 32.881089 ], [ -94.042886, 32.880965 ], [ -94.043025, 32.880446 ], [ -94.042785, 32.871486 ], [ -94.043026, 32.797476 ], [ -94.042747, 32.786973 ], [ -94.042829, 32.785277 ], [ -94.042938, 32.780558 ], [ -94.043027, 32.776863 ], [ -94.042947, 32.767991 ], [ -94.043147, 32.693031 ], [ -94.043147, 32.693030 ], [ -94.042913, 32.655127 ], [ -94.042780, 32.643466 ], [ -94.042824, 32.640305 ], [ -94.042926, 32.622015 ], [ -94.042929, 32.618260 ], [ -94.042919, 32.610142 ], [ -94.043083, 32.564261 ], [ -94.043142, 32.559502 ], [ -94.043081, 32.513613 ], [ -94.042885, 32.505145 ], [ -94.042911, 32.492852 ], [ -94.043089, 32.486561 ], [ -94.043072, 32.484300 ], [ -94.042955, 32.480261 ], [ -94.042995, 32.478004 ], [ -94.042902, 32.472906 ], [ -94.042875, 32.471348 ], [ -94.042903, 32.470386 ], [ -94.042908, 32.439891 ], [ -94.042986, 32.435507 ], [ -94.042899, 32.400659 ], [ -94.042923, 32.399918 ], [ -94.042901, 32.392283 ], [ -94.042763, 32.373332 ], [ -94.042739, 32.363559 ], [ -94.042733, 32.269696 ], [ -94.042732, 32.269620 ], [ -94.042662, 32.218146 ], [ -94.042621, 32.196005 ], [ -94.042566, 32.166894 ], [ -94.042539, 32.166826 ], [ -94.042591, 32.158097 ], [ -94.042681, 32.137956 ], [ -94.042337, 32.119914 ], [ -94.042700, 32.056012 ], [ -94.042720, 31.999265 ], [ -94.015630, 31.979856 ], [ -93.975377, 31.923660 ], [ -93.932135, 31.893672 ], [ -93.920290, 31.888651 ], [ -93.889193, 31.856819 ], [ -93.878225, 31.844276 ], [ -93.840029, 31.800596 ], [ -93.812477, 31.715246 ], [ -93.817059, 31.671694 ], [ -93.826290, 31.614903 ], [ -93.834924, 31.586211 ], [ -93.834923, 31.586210 ], [ -93.818582, 31.554826 ], [ -93.798087, 31.534044 ], [ -93.729613, 31.487922 ], [ -93.695866, 31.409392 ], [ -93.670182, 31.387184 ], [ -93.640805, 31.372546 ], [ -93.671676, 31.299586 ], [ -93.644407, 31.277110 ], [ -93.620829, 31.271299 ], [ -93.614402, 31.260869 ], [ -93.608158, 31.227835 ], [ -93.607243, 31.204806 ], [ -93.602315, 31.181742 ], [ -93.599705, 31.176456 ], [ -93.598828, 31.174679 ], [ -93.588503, 31.165581 ], [ -93.579215, 31.167422 ], [ -93.552649, 31.185575 ], [ -93.552540, 31.185605 ], [ -93.548931, 31.186601 ], [ -93.535097, 31.185614 ], [ -93.531744, 31.180817 ], [ -93.527644, 31.074509 ], [ -93.540354, 31.008135 ], [ -93.530936, 30.924534 ], [ -93.554576, 30.877470 ], [ -93.554970, 30.876685 ], [ -93.558617, 30.869424 ], [ -93.558672, 30.868829 ], [ -93.563292, 30.818503 ], [ -93.578395, 30.802047 ], [ -93.727844, 30.574070 ], [ -93.740045, 30.538765 ], [ -93.710117, 30.506400 ], [ -93.697828, 30.443838 ], [ -93.698302, 30.438657 ], [ -93.702665, 30.429947 ], [ -93.741701, 30.403007 ], [ -93.751437, 30.396288 ], [ -93.757654, 30.390423 ], [ -93.765822, 30.333318 ], [ -93.735896, 30.299440 ], [ -93.723586, 30.294951 ], [ -93.720575, 30.295961 ], [ -93.716223, 30.244318 ], [ -93.712008, 30.194304 ], [ -93.695252, 30.147600 ], [ -93.695684, 30.135729 ], [ -93.712101, 30.067346 ], [ -93.721589, 30.051939 ], [ -93.722481, 30.050898 ], [ -93.752038, 30.016403 ], [ -93.756630, 30.014163 ], [ -93.789431, 29.987812 ], [ -93.840799, 29.914423 ], [ -93.890679, 29.843159 ], [ -93.898470, 29.771577 ], [ -93.892246, 29.765241 ], [ -93.837971, 29.690619 ], [ -93.852868, 29.675885 ], [ -93.866981, 29.673085 ], [ -93.889990, 29.674013 ], [ -93.931000, 29.679612 ], [ -94.001406, 29.681486 ], [ -94.056506, 29.671163 ], [ -94.132577, 29.646217 ], [ -94.354163, 29.561459 ], [ -94.370866, 29.555070 ], [ -94.500807, 29.505367 ], [ -94.594853, 29.467903 ], [ -94.631084, 29.451464 ], [ -94.670389, 29.430780 ], [ -94.694158, 29.415632 ], [ -94.708473, 29.403049 ], [ -94.723959, 29.383268 ], [ -94.731047, 29.369141 ], [ -94.744834, 29.369158 ], [ -94.761491, 29.361883 ], [ -94.778691, 29.361483 ], [ -94.782356, 29.364266 ], [ -94.783131, 29.375642 ], [ -94.766848, 29.393489 ], [ -94.754100, 29.401000 ], [ -94.723818, 29.426536 ], [ -94.706365, 29.436805 ], [ -94.686386, 29.466509 ], [ -94.681541, 29.471389 ], [ -94.672400, 29.476843 ], [ -94.665853, 29.478401 ], [ -94.656737, 29.478033 ], [ -94.645948, 29.473769 ], [ -94.628217, 29.475986 ], [ -94.608557, 29.483345 ], [ -94.594211, 29.492127 ], [ -94.595440, 29.507669 ], [ -94.591407, 29.513858 ], [ -94.580274, 29.525295 ], [ -94.566674, 29.531988 ], [ -94.553990, 29.529559 ], [ -94.546994, 29.524379 ], [ -94.532348, 29.517800 ], [ -94.511045, 29.519650 ], [ -94.495025, 29.525031 ], [ -94.503429, 29.543250 ], [ -94.509487, 29.542590 ], [ -94.511086, 29.542971 ], [ -94.522421, 29.545672 ], [ -94.523743, 29.545987 ], [ -94.526336, 29.552634 ], [ -94.532021, 29.558379 ], [ -94.541108, 29.567561 ], [ -94.542532, 29.569000 ], [ -94.546385, 29.572048 ], [ -94.553988, 29.573882 ], [ -94.570006, 29.572232 ], [ -94.570593, 29.571878 ], [ -94.570867, 29.571713 ], [ -94.578211, 29.567281 ], [ -94.593518, 29.561319 ], [ -94.610147, 29.556947 ], [ -94.618028, 29.554875 ], [ -94.621819, 29.553878 ], [ -94.621953, 29.553843 ], [ -94.625890, 29.552808 ], [ -94.682706, 29.539825 ], [ -94.689353, 29.538306 ], [ -94.691625, 29.537787 ], [ -94.718276, 29.533547 ], [ -94.740699, 29.525858 ], [ -94.755514, 29.524776 ], [ -94.757689, 29.524617 ], [ -94.757788, 29.524626 ], [ -94.757883, 29.524635 ], [ -94.767246, 29.525523 ], [ -94.768676, 29.525659 ], [ -94.769418, 29.525988 ], [ -94.769573, 29.526057 ], [ -94.770840, 29.526618 ], [ -94.774571, 29.528271 ], [ -94.774798, 29.528372 ], [ -94.779674, 29.530533 ], [ -94.779708, 29.530548 ], [ -94.779831, 29.530602 ], [ -94.780938, 29.531093 ], [ -94.783296, 29.535314 ], [ -94.784034, 29.536635 ], [ -94.786512, 29.541073 ], [ -94.786649, 29.541319 ], [ -94.789540, 29.546494 ], [ -94.790605, 29.548401 ], [ -94.779439, 29.549472 ], [ -94.771053, 29.548439 ], [ -94.755237, 29.562782 ], [ -94.734626, 29.584046 ], [ -94.708741, 29.625226 ], [ -94.693154, 29.694453 ], [ -94.692434, 29.703610 ], [ -94.695317, 29.723052 ], [ -94.724616, 29.774766 ], [ -94.735271, 29.785433 ], [ -94.740919, 29.787081 ], [ -94.771512, 29.773889 ], [ -94.792238, 29.767433 ], [ -94.816085, 29.756710 ], [ -94.851108, 29.721373 ], [ -94.865007, 29.695337 ], [ -94.867438, 29.678768 ], [ -94.872551, 29.671250 ], [ -94.893107, 29.661336 ], [ -94.915413, 29.656614 ], [ -94.921318, 29.658178 ], [ -94.931154, 29.673874 ], [ -94.934167, 29.678682 ], [ -94.936089, 29.692704 ], [ -94.942681, 29.697778 ], [ -94.965963, 29.700330 ], [ -94.972666, 29.684870 ], [ -94.988924, 29.672202 ], [ -95.005398, 29.659366 ], [ -95.005648, 29.658985 ], [ -95.006381, 29.657871 ], [ -95.007623, 29.655980 ], [ -95.011025, 29.650803 ], [ -95.011683, 29.649802 ], [ -95.012720, 29.647088 ], [ -95.013777, 29.644322 ], [ -95.015636, 29.639457 ], [ -95.015600, 29.639285 ], [ -95.013623, 29.629790 ], [ -95.013499, 29.629194 ], [ -95.011660, 29.627768 ], [ -95.000781, 29.619331 ], [ -95.000460, 29.619082 ], [ -94.999481, 29.618323 ], [ -94.999082, 29.618014 ], [ -94.988871, 29.610095 ], [ -94.984831, 29.604361 ], [ -94.982936, 29.601670 ], [ -94.982706, 29.601344 ], [ -94.982855, 29.601103 ], [ -94.982923, 29.600992 ], [ -94.988993, 29.591155 ], [ -95.007670, 29.574257 ], [ -95.016145, 29.559336 ], [ -95.016353, 29.558970 ], [ -95.016627, 29.558487 ], [ -95.016672, 29.558388 ], [ -95.018253, 29.554885 ], [ -95.018198, 29.554618 ], [ -95.018191, 29.554584 ], [ -95.016889, 29.548303 ], [ -95.015165, 29.539989 ], [ -95.013378, 29.537822 ], [ -94.999581, 29.521093 ], [ -94.981916, 29.511141 ], [ -94.958443, 29.505013 ], [ -94.934876, 29.501079 ], [ -94.933483, 29.500847 ], [ -94.933039, 29.500773 ], [ -94.909898, 29.496910 ], [ -94.909465, 29.496838 ], [ -94.913385, 29.487254 ], [ -94.925914, 29.469047 ], [ -94.930861, 29.450504 ], [ -94.919401, 29.448031 ], [ -94.890800, 29.433432 ], [ -94.887300, 29.415132 ], [ -94.886536, 29.366386 ], [ -94.894234, 29.338000 ], [ -94.893994, 29.308170 ], [ -94.886536, 29.297826 ], [ -94.875952, 29.293015 ], [ -94.865126, 29.293977 ], [ -94.849730, 29.297345 ], [ -94.824953, 29.306005 ], [ -94.822547, 29.321882 ], [ -94.822307, 29.344254 ], [ -94.810696, 29.353435 ], [ -94.784895, 29.335535 ], [ -94.779995, 29.334935 ], [ -94.777064, 29.336811 ], [ -94.745529, 29.334235 ], [ -94.744945, 29.336410 ], [ -94.731320, 29.338066 ], [ -94.722530, 29.331446 ], [ -94.731082, 29.331833 ], [ -94.769695, 29.304936 ], [ -94.786095, 29.290737 ], [ -94.803695, 29.279237 ], [ -95.026219, 29.148064 ], [ -95.081773, 29.111222 ], [ -95.110484, 29.088224 ], [ -95.119271, 29.077844 ], [ -95.122525, 29.074000 ], [ -95.125134, 29.067321 ], [ -95.191391, 29.023090 ], [ -95.238924, 28.988644 ], [ -95.272266, 28.961546 ], [ -95.297147, 28.934073 ], [ -95.309704, 28.928262 ], [ -95.353451, 28.898145 ], [ -95.376979, 28.876160 ], [ -95.382390, 28.866348 ], [ -95.416174, 28.859482 ], [ -95.439594, 28.859022 ], [ -95.486769, 28.836287 ], [ -95.507041, 28.824755 ], [ -95.568136, 28.789998 ], [ -95.812504, 28.664942 ], [ -95.884026, 28.633098 ], [ -96.000682, 28.588238 ], [ -96.077868, 28.556626 ], [ -96.194412, 28.502224 ], [ -96.220376, 28.491966 ], [ -96.244751, 28.475055 ], [ -96.270391, 28.461930 ], [ -96.303212, 28.441871 ], [ -96.321560, 28.425148 ], [ -96.328817, 28.423659 ], [ -96.341617, 28.417334 ], [ -96.371117, 28.397661 ], [ -96.372101, 28.393875 ], [ -96.370717, 28.387667 ], [ -96.378616, 28.383909 ], [ -96.379372, 28.386089 ], [ -96.381864, 28.393276 ], [ -96.375960, 28.401682 ], [ -96.374138, 28.404275 ], [ -96.335119, 28.437795 ], [ -96.268341, 28.477992 ], [ -96.223825, 28.495067 ], [ -96.218978, 28.500383 ], [ -96.215050, 28.509679 ], [ -96.145448, 28.544741 ], [ -96.104735, 28.559499 ], [ -96.046211, 28.586980 ], [ -96.032979, 28.589016 ], [ -96.007534, 28.599703 ], [ -95.986160, 28.606319 ], [ -95.982088, 28.614461 ], [ -95.985651, 28.621077 ], [ -95.983106, 28.641942 ], [ -95.978526, 28.650594 ], [ -95.986066, 28.655468 ], [ -95.996338, 28.658736 ], [ -96.002954, 28.656192 ], [ -96.006516, 28.648049 ], [ -96.033488, 28.652629 ], [ -96.047737, 28.649067 ], [ -96.072165, 28.635326 ], [ -96.099137, 28.624639 ], [ -96.148501, 28.611408 ], [ -96.187178, 28.593596 ], [ -96.198374, 28.586980 ], [ -96.221784, 28.580364 ], [ -96.228909, 28.580873 ], [ -96.233998, 28.596649 ], [ -96.233998, 28.601738 ], [ -96.222293, 28.607336 ], [ -96.214150, 28.613443 ], [ -96.212624, 28.622604 ], [ -96.230944, 28.641433 ], [ -96.208552, 28.662298 ], [ -96.214659, 28.665352 ], [ -96.192267, 28.687744 ], [ -96.191250, 28.694360 ], [ -96.195830, 28.698940 ], [ -96.202446, 28.700976 ], [ -96.222802, 28.698431 ], [ -96.231453, 28.696395 ], [ -96.256899, 28.684690 ], [ -96.263515, 28.683673 ], [ -96.268604, 28.688762 ], [ -96.287942, 28.683164 ], [ -96.304227, 28.671459 ], [ -96.305245, 28.660263 ], [ -96.303718, 28.644996 ], [ -96.322921, 28.641860 ], [ -96.328655, 28.640924 ], [ -96.373439, 28.626675 ], [ -96.376492, 28.620059 ], [ -96.384635, 28.615988 ], [ -96.473694, 28.573240 ], [ -96.487943, 28.569677 ], [ -96.482854, 28.580364 ], [ -96.480309, 28.596649 ], [ -96.485907, 28.607845 ], [ -96.490488, 28.610899 ], [ -96.510844, 28.614970 ], [ -96.510335, 28.617515 ], [ -96.497612, 28.625148 ], [ -96.496595, 28.630746 ], [ -96.499648, 28.635835 ], [ -96.506264, 28.638380 ], [ -96.545450, 28.645505 ], [ -96.555119, 28.646013 ], [ -96.563262, 28.644487 ], [ -96.572931, 28.667897 ], [ -96.570386, 28.674003 ], [ -96.559190, 28.687235 ], [ -96.559699, 28.691306 ], [ -96.561226, 28.696395 ], [ -96.566824, 28.697922 ], [ -96.575141, 28.702837 ], [ -96.577727, 28.704365 ], [ -96.578020, 28.704538 ], [ -96.579639, 28.712312 ], [ -96.579669, 28.712455 ], [ -96.580564, 28.716752 ], [ -96.584091, 28.722798 ], [ -96.584127, 28.722859 ], [ -96.584196, 28.722877 ], [ -96.591647, 28.724838 ], [ -96.593796, 28.725403 ], [ -96.604921, 28.722210 ], [ -96.634419, 28.713743 ], [ -96.634912, 28.713601 ], [ -96.645867, 28.710457 ], [ -96.648758, 28.709627 ], [ -96.655528, 28.704167 ], [ -96.664534, 28.696904 ], [ -96.657918, 28.687744 ], [ -96.635018, 28.668914 ], [ -96.634000, 28.654665 ], [ -96.627893, 28.650085 ], [ -96.623313, 28.649576 ], [ -96.615679, 28.644487 ], [ -96.610590, 28.638889 ], [ -96.610590, 28.636344 ], [ -96.619750, 28.627693 ], [ -96.622804, 28.622095 ], [ -96.611099, 28.585962 ], [ -96.608045, 28.583418 ], [ -96.573949, 28.584436 ], [ -96.565297, 28.582400 ], [ -96.564279, 28.576293 ], [ -96.561226, 28.570695 ], [ -96.536289, 28.559499 ], [ -96.526111, 28.557972 ], [ -96.522040, 28.554410 ], [ -96.514406, 28.535071 ], [ -96.505755, 28.525911 ], [ -96.450284, 28.490796 ], [ -96.419749, 28.467387 ], [ -96.410589, 28.459244 ], [ -96.402446, 28.449066 ], [ -96.403973, 28.442450 ], [ -96.461480, 28.421585 ], [ -96.481836, 28.407844 ], [ -96.504737, 28.397666 ], [ -96.520513, 28.394104 ], [ -96.542905, 28.385452 ], [ -96.559699, 28.377819 ], [ -96.570386, 28.368658 ], [ -96.591760, 28.357462 ], [ -96.600412, 28.354409 ], [ -96.650794, 28.346775 ], [ -96.672677, 28.335579 ], [ -96.688453, 28.347284 ], [ -96.694560, 28.347284 ], [ -96.698122, 28.342704 ], [ -96.705247, 28.348811 ], [ -96.700158, 28.369676 ], [ -96.705756, 28.400211 ], [ -96.710336, 28.406827 ], [ -96.722550, 28.408862 ], [ -96.749013, 28.408862 ], [ -96.762245, 28.411916 ], [ -96.766960, 28.410737 ], [ -96.768352, 28.410389 ], [ -96.772209, 28.408074 ], [ -96.775985, 28.405809 ], [ -96.780796, 28.398421 ], [ -96.790235, 28.383926 ], [ -96.794554, 28.365688 ], [ -96.794796, 28.364668 ], [ -96.794815, 28.364587 ], [ -96.794812, 28.364515 ], [ -96.794812, 28.364503 ], [ -96.794357, 28.350865 ], [ -96.794306, 28.349320 ], [ -96.794016, 28.347249 ], [ -96.793926, 28.346606 ], [ -96.793835, 28.345959 ], [ -96.793765, 28.345453 ], [ -96.792540, 28.336705 ], [ -96.790744, 28.323874 ], [ -96.791159, 28.319095 ], [ -96.791761, 28.312170 ], [ -96.806011, 28.296902 ], [ -96.809573, 28.290287 ], [ -96.806011, 28.282144 ], [ -96.799302, 28.272716 ], [ -96.787181, 28.255681 ], [ -96.787181, 28.250083 ], [ -96.800413, 28.224128 ], [ -96.810037, 28.217086 ], [ -96.842143, 28.193594 ], [ -96.872678, 28.176291 ], [ -96.898123, 28.152881 ], [ -96.910337, 28.147283 ], [ -96.934765, 28.123873 ], [ -96.962755, 28.123365 ], [ -97.000414, 28.137614 ], [ -97.007539, 28.136087 ], [ -97.027386, 28.124382 ], [ -97.028913, 28.117258 ], [ -97.022806, 28.107588 ], [ -97.023824, 28.103517 ], [ -97.031966, 28.093848 ], [ -97.035528, 28.084688 ], [ -97.035528, 28.074000 ], [ -97.031457, 28.053644 ], [ -97.025859, 28.041939 ], [ -97.030948, 28.033288 ], [ -97.040618, 28.028708 ], [ -97.048760, 28.022092 ], [ -97.061992, 27.996138 ], [ -97.075732, 27.986977 ], [ -97.121534, 27.923364 ], [ -97.129168, 27.919801 ], [ -97.134801, 27.902467 ], [ -97.135783, 27.899445 ], [ -97.136615, 27.898956 ], [ -97.144435, 27.894356 ], [ -97.155122, 27.880615 ], [ -97.183455, 27.833231 ], [ -97.184639, 27.831251 ], [ -97.186709, 27.825453 ], [ -97.186871, 27.825001 ], [ -97.187183, 27.824126 ], [ -97.188866, 27.823772 ], [ -97.192874, 27.822928 ], [ -97.193701, 27.822754 ], [ -97.196852, 27.822091 ], [ -97.209127, 27.822091 ], [ -97.209575, 27.822091 ], [ -97.211226, 27.822391 ], [ -97.219738, 27.823939 ], [ -97.220771, 27.824126 ], [ -97.222212, 27.824649 ], [ -97.222957, 27.824919 ], [ -97.225176, 27.825723 ], [ -97.225435, 27.826145 ], [ -97.225811, 27.826755 ], [ -97.226012, 27.827083 ], [ -97.227317, 27.829204 ], [ -97.227317, 27.830939 ], [ -97.227317, 27.831258 ], [ -97.227317, 27.832895 ], [ -97.227317, 27.832952 ], [ -97.226514, 27.838307 ], [ -97.228388, 27.843661 ], [ -97.234512, 27.849063 ], [ -97.241127, 27.857714 ], [ -97.241393, 27.858953 ], [ -97.242654, 27.864839 ], [ -97.242922, 27.865208 ], [ -97.250797, 27.876035 ], [ -97.256394, 27.877901 ], [ -97.258305, 27.878538 ], [ -97.263010, 27.880106 ], [ -97.272253, 27.881427 ], [ -97.273698, 27.881633 ], [ -97.276632, 27.881144 ], [ -97.285466, 27.879672 ], [ -97.295072, 27.878071 ], [ -97.301455, 27.875907 ], [ -97.317892, 27.870335 ], [ -97.325097, 27.867893 ], [ -97.327494, 27.866405 ], [ -97.354614, 27.849572 ], [ -97.360212, 27.850590 ], [ -97.360547, 27.850363 ], [ -97.361246, 27.849891 ], [ -97.379042, 27.837867 ], [ -97.391764, 27.813948 ], [ -97.393291, 27.782905 ], [ -97.386166, 27.766620 ], [ -97.368355, 27.741683 ], [ -97.346980, 27.725398 ], [ -97.316446, 27.712676 ], [ -97.253955, 27.696696 ], [ -97.259957, 27.679597 ], [ -97.266064, 27.678579 ], [ -97.296598, 27.613947 ], [ -97.298634, 27.604787 ], [ -97.297616, 27.598680 ], [ -97.294054, 27.594100 ], [ -97.302196, 27.585957 ], [ -97.321535, 27.571199 ], [ -97.325118, 27.560927 ], [ -97.336802, 27.527433 ], [ -97.343418, 27.517764 ], [ -97.347489, 27.503005 ], [ -97.350543, 27.478578 ], [ -97.359194, 27.458221 ], [ -97.365810, 27.450588 ], [ -97.371917, 27.425142 ], [ -97.369881, 27.412420 ], [ -97.372935, 27.401224 ], [ -97.379550, 27.390028 ], [ -97.399398, 27.344735 ], [ -97.401942, 27.335574 ], [ -97.404996, 27.329977 ], [ -97.413138, 27.321325 ], [ -97.420263, 27.317254 ], [ -97.430441, 27.313691 ], [ -97.450798, 27.313691 ], [ -97.482859, 27.297915 ], [ -97.508304, 27.275014 ], [ -97.532223, 27.278577 ], [ -97.544437, 27.284175 ], [ -97.546981, 27.290791 ], [ -97.536803, 27.289264 ], [ -97.526625, 27.291808 ], [ -97.524589, 27.297915 ], [ -97.517465, 27.305040 ], [ -97.504742, 27.305040 ], [ -97.498126, 27.308602 ], [ -97.502706, 27.322343 ], [ -97.499144, 27.327941 ], [ -97.483877, 27.338628 ], [ -97.483877, 27.351351 ], [ -97.486930, 27.358984 ], [ -97.501688, 27.366618 ], [ -97.514411, 27.361529 ], [ -97.520518, 27.352877 ], [ -97.538330, 27.335574 ], [ -97.570900, 27.315727 ], [ -97.584132, 27.309620 ], [ -97.609068, 27.285193 ], [ -97.621791, 27.287228 ], [ -97.631460, 27.286210 ], [ -97.636549, 27.282139 ], [ -97.636680, 27.281727 ], [ -97.640111, 27.270943 ], [ -97.639094, 27.253131 ], [ -97.635022, 27.247024 ], [ -97.628916, 27.242953 ], [ -97.597363, 27.242444 ], [ -97.582605, 27.240409 ], [ -97.573953, 27.238882 ], [ -97.561231, 27.232775 ], [ -97.542910, 27.229213 ], [ -97.520009, 27.231248 ], [ -97.509831, 27.235320 ], [ -97.503215, 27.239900 ], [ -97.500162, 27.244480 ], [ -97.485149, 27.250841 ], [ -97.467083, 27.253640 ], [ -97.458431, 27.259493 ], [ -97.450289, 27.262546 ], [ -97.424080, 27.264073 ], [ -97.422299, 27.257712 ], [ -97.434767, 27.202241 ], [ -97.444945, 27.144734 ], [ -97.443673, 27.116235 ], [ -97.452324, 27.115217 ], [ -97.455887, 27.110383 ], [ -97.456650, 27.099695 ], [ -97.461739, 27.095624 ], [ -97.475480, 27.098423 ], [ -97.480569, 27.102494 ], [ -97.491510, 27.101222 ], [ -97.495836, 27.094098 ], [ -97.493291, 27.078067 ], [ -97.477515, 27.066108 ], [ -97.479042, 27.062800 ], [ -97.482257, 27.061942 ], [ -97.486930, 27.057711 ], [ -97.487693, 27.053639 ], [ -97.486676, 27.034810 ], [ -97.477515, 27.032520 ], [ -97.473953, 27.029212 ], [ -97.473444, 27.022850 ], [ -97.478533, 26.999186 ], [ -97.480569, 26.997659 ], [ -97.484131, 27.000458 ], [ -97.536803, 26.999695 ], [ -97.549271, 26.995878 ], [ -97.555378, 26.990280 ], [ -97.551053, 26.980865 ], [ -97.549526, 26.965344 ], [ -97.552325, 26.952112 ], [ -97.555378, 26.947277 ], [ -97.555378, 26.938880 ], [ -97.540874, 26.906310 ], [ -97.540111, 26.900967 ], [ -97.547999, 26.895114 ], [ -97.552325, 26.888499 ], [ -97.552325, 26.867633 ], [ -97.558432, 26.864325 ], [ -97.563266, 26.842188 ], [ -97.552579, 26.827938 ], [ -97.547745, 26.824631 ], [ -97.537566, 26.824885 ], [ -97.509831, 26.803511 ], [ -97.484385, 26.763562 ], [ -97.478024, 26.757200 ], [ -97.471663, 26.758727 ], [ -97.468609, 26.740915 ], [ -97.467337, 26.710126 ], [ -97.444945, 26.633535 ], [ -97.445708, 26.609362 ], [ -97.441206, 26.599901 ], [ -97.428151, 26.572466 ], [ -97.416955, 26.553637 ], [ -97.422299, 26.520303 ], [ -97.425861, 26.516741 ], [ -97.430696, 26.506563 ], [ -97.430696, 26.494603 ], [ -97.426370, 26.484425 ], [ -97.429169, 26.478064 ], [ -97.435530, 26.470176 ], [ -97.441383, 26.466614 ], [ -97.441383, 26.455418 ], [ -97.437566, 26.449820 ], [ -97.425861, 26.446003 ], [ -97.421026, 26.446766 ], [ -97.417210, 26.449820 ], [ -97.411612, 26.447275 ], [ -97.412884, 26.433026 ], [ -97.421790, 26.417249 ], [ -97.419500, 26.413178 ], [ -97.406014, 26.409107 ], [ -97.398126, 26.410888 ], [ -97.394309, 26.414450 ], [ -97.395072, 26.417249 ], [ -97.382485, 26.411326 ], [ -97.377769, 26.409107 ], [ -97.369627, 26.394603 ], [ -97.374461, 26.380862 ], [ -97.388965, 26.365850 ], [ -97.392019, 26.339386 ], [ -97.391001, 26.332262 ], [ -97.387947, 26.330481 ], [ -97.376242, 26.336333 ], [ -97.372171, 26.339895 ], [ -97.369372, 26.348547 ], [ -97.358176, 26.356435 ], [ -97.343418, 26.359234 ], [ -97.335275, 26.355672 ], [ -97.330441, 26.350582 ], [ -97.336802, 26.331753 ], [ -97.352833, 26.318521 ], [ -97.354359, 26.313941 ], [ -97.346980, 26.311396 ], [ -97.347489, 26.292821 ], [ -97.343927, 26.267376 ], [ -97.341128, 26.265595 ], [ -97.331967, 26.265595 ], [ -97.322807, 26.271956 ], [ -97.311866, 26.273737 ], [ -97.307031, 26.253126 ], [ -97.308049, 26.249055 ], [ -97.321280, 26.236078 ], [ -97.321280, 26.228699 ], [ -97.304486, 26.202490 ], [ -97.296598, 26.200709 ], [ -97.294817, 26.192312 ], [ -97.296089, 26.182388 ], [ -97.306776, 26.159487 ], [ -97.296598, 26.142439 ], [ -97.285360, 26.128378 ], [ -97.282094, 26.120301 ], [ -97.283112, 26.117757 ], [ -97.294054, 26.113940 ], [ -97.295072, 26.108342 ], [ -97.279804, 26.092057 ], [ -97.270898, 26.086459 ], [ -97.246980, 26.080352 ], [ -97.208048, 26.079589 ], [ -97.199651, 26.077044 ], [ -97.195071, 26.041930 ], [ -97.204995, 26.030225 ], [ -97.214918, 26.030734 ], [ -97.224842, 26.027426 ], [ -97.226114, 26.024372 ], [ -97.219244, 25.996128 ], [ -97.216954, 25.993838 ], [ -97.208557, 25.991802 ], [ -97.195834, 25.993074 ], [ -97.174460, 26.000072 ], [ -97.167208, 26.007069 ], [ -97.162755, 26.014576 ], [ -97.162628, 26.023482 ], [ -97.172043, 26.044729 ], [ -97.178659, 26.045492 ], [ -97.182730, 26.053126 ], [ -97.164982, 26.063876 ], [ -97.152009, 26.062108 ], [ -97.153210, 26.038906 ], [ -97.151922, 26.017653 ], [ -97.145567, 25.971132 ], [ -97.172633, 25.962883 ], [ -97.228025, 25.958936 ], [ -97.271382, 25.951832 ], [ -97.348275, 25.931143 ], [ -97.362345, 25.915724 ], [ -97.367045, 25.903021 ], [ -97.366723, 25.885066 ], [ -97.408357, 25.856459 ], [ -97.496861, 25.880058 ], [ -97.511161, 25.887458 ], [ -97.582565, 25.937857 ], [ -97.668099, 26.022522 ], [ -97.671568, 26.033955 ], [ -97.863056, 26.061273 ], [ -97.888699, 26.064931 ], [ -98.008307, 26.061147 ], [ -98.011883, 26.056608 ], [ -98.044517, 26.043746 ], [ -98.132605, 26.057507 ], [ -98.241664, 26.074544 ], [ -98.264514, 26.085507 ], [ -98.386694, 26.157872 ], [ -98.438822, 26.212022 ], [ -98.466167, 26.223245 ], [ -98.585810, 26.257403 ], [ -98.586720, 26.257456 ], [ -98.623335, 26.259592 ], [ -98.632900, 26.250348 ], [ -98.705676, 26.277480 ], [ -98.751164, 26.331307 ], [ -98.807348, 26.369421 ], [ -98.822373, 26.370902 ], [ -98.861354, 26.365990 ], [ -99.047575, 26.406922 ], [ -99.105719, 26.438720 ], [ -99.167996, 26.557799 ], [ -99.172058, 26.570860 ], [ -99.208951, 26.689489 ], [ -99.242444, 26.788262 ], [ -99.268613, 26.843213 ], [ -99.321819, 26.906846 ], [ -99.379149, 26.934490 ], [ -99.446524, 27.023008 ], [ -99.452316, 27.062669 ], [ -99.451035, 27.066765 ], [ -99.446593, 27.070593 ], [ -99.429879, 27.094323 ], [ -99.426348, 27.176262 ], [ -99.441549, 27.249920 ], [ -99.452391, 27.264046 ], [ -99.453949, 27.264673 ], [ -99.463309, 27.268437 ], [ -99.470880, 27.265444 ], [ -99.494678, 27.277595 ], [ -99.529654, 27.306051 ], [ -99.536443, 27.312538 ], [ -99.537771, 27.316073 ], [ -99.506960, 27.356420 ], [ -99.492831, 27.390491 ], [ -99.487704, 27.409924 ], [ -99.480219, 27.485796 ], [ -99.519381, 27.573569 ], [ -99.541644, 27.605772 ], [ -99.600619, 27.641314 ], [ -99.623478, 27.644136 ], [ -99.626294, 27.642450 ], [ -99.627123, 27.638412 ], [ -99.666175, 27.638324 ], [ -99.843463, 27.774560 ], [ -99.876174, 27.806276 ], [ -99.901486, 27.864162 ], [ -99.904385, 27.875284 ], [ -99.895828, 27.904178 ], [ -99.922046, 27.922119 ], [ -99.991447, 27.994560 ], [ -100.057049, 28.095656 ], [ -100.080868, 28.137192 ], [ -100.083393, 28.144035 ], [ -100.088143, 28.147503 ], [ -100.144140, 28.168238 ], [ -100.171323, 28.176230 ], [ -100.202448, 28.190554 ], [ -100.209464, 28.196866 ], [ -100.257788, 28.240341 ], [ -100.291391, 28.275398 ], [ -100.346986, 28.407232 ], [ -100.333814, 28.499252 ], [ -100.338518, 28.501833 ], [ -100.386963, 28.514023 ], [ -100.405058, 28.535780 ], [ -100.429856, 28.596441 ], [ -100.446659, 28.608659 ], [ -100.500354, 28.661960 ], [ -100.510055, 28.690723 ], [ -100.511998, 28.705352 ], [ -100.506701, 28.716745 ], [ -100.507613, 28.740599 ], [ -100.535438, 28.805195 ], [ -100.546804, 28.825374 ], [ -100.589854, 28.861618 ], [ -100.640092, 28.915833 ], [ -100.651512, 28.943432 ], [ -100.648104, 28.983860 ], [ -100.645894, 28.986421 ], [ -100.664065, 29.073206 ], [ -100.668356, 29.083970 ], [ -100.674656, 29.099777 ], [ -100.793662, 29.242146 ], [ -100.797671, 29.246943 ], [ -100.954042, 29.347598 ], [ -100.995607, 29.363403 ], [ -101.037642, 29.414681 ], [ -101.043364, 29.429880 ], [ -101.060151, 29.458661 ], [ -101.087149, 29.469414 ], [ -101.137503, 29.473542 ], [ -101.235275, 29.524854 ], [ -101.247319, 29.618482 ], [ -101.250383, 29.624171 ], [ -101.314135, 29.659054 ], [ -101.343743, 29.662047 ], [ -101.403926, 29.757587 ], [ -101.455007, 29.770188 ], [ -101.625958, 29.771063 ], [ -101.635128, 29.758675 ], [ -101.646418, 29.754304 ], [ -101.761839, 29.777187 ], [ -101.786353, 29.782047 ], [ -101.883655, 29.796193 ], [ -101.944913, 29.801468 ], [ -102.040539, 29.790061 ], [ -102.050044, 29.785070 ], [ -102.116076, 29.792527 ], [ -102.262466, 29.853765 ], [ -102.282247, 29.863598 ], [ -102.297331, 29.875194 ], [ -102.320819, 29.875193 ], [ -102.323389, 29.875193 ], [ -102.364647, 29.843624 ], [ -102.386677, 29.761480 ], [ -102.404422, 29.765105 ], [ -102.434063, 29.776700 ], [ -102.486819, 29.786725 ], [ -102.500741, 29.781446 ], [ -102.554915, 29.748966 ], [ -102.612879, 29.748182 ], [ -102.665194, 29.737421 ], [ -102.689738, 29.722349 ], [ -102.698347, 29.695591 ], [ -102.745494, 29.592967 ], [ -102.781807, 29.542454 ], [ -102.808692, 29.522319 ], [ -102.831938, 29.437943 ], [ -102.833320, 29.408981 ], [ -102.875813, 29.353715 ], [ -102.895886, 29.284778 ], [ -102.886308, 29.245680 ], [ -102.881135, 29.246022 ], [ -102.871347, 29.241625 ], [ -102.866846, 29.225015 ], [ -102.878020, 29.214698 ], [ -102.950890, 29.176835 ], [ -102.995688, 29.161219 ], [ -103.104430, 29.033590 ], [ -103.115328, 28.985270 ], [ -103.156646, 28.972831 ], [ -103.163865, 28.972099 ], [ -103.281903, 28.990089 ], [ -103.383508, 29.024112 ], [ -103.471037, 29.075368 ], [ -103.470518, 29.085108 ], [ -103.503236, 29.119110 ], [ -103.525471, 29.137744 ], [ -103.558679, 29.154962 ], [ -103.610070, 29.165727 ], [ -103.627067, 29.163336 ], [ -103.714867, 29.184137 ], [ -103.767814, 29.224954 ], [ -103.792005, 29.262695 ], [ -103.792705, 29.262931 ], [ -103.838303, 29.278304 ], [ -103.924976, 29.293913 ], [ -103.963076, 29.298404 ], [ -104.025488, 29.314404 ], [ -104.143692, 29.383278 ], [ -104.167506, 29.402928 ], [ -104.213410, 29.462069 ], [ -104.235847, 29.496744 ], [ -104.264155, 29.514001 ], [ -104.290728, 29.519326 ], [ -104.321603, 29.527923 ], [ -104.394351, 29.560535 ], [ -104.515512, 29.641493 ], [ -104.538569, 29.677396 ], [ -104.549773, 29.716091 ], [ -104.549117, 29.728814 ], [ -104.566055, 29.771379 ], [ -104.633275, 29.870485 ], [ -104.667301, 29.910401 ], [ -104.674932, 29.911112 ], [ -104.679877, 29.920946 ], [ -104.693592, 30.019077 ], [ -104.685793, 30.092656 ], [ -104.687296, 30.179464 ], [ -104.708916, 30.235826 ], [ -104.761634, 30.301148 ], [ -104.781020, 30.314564 ], [ -104.859521, 30.390413 ], [ -104.872808, 30.500145 ], [ -104.929778, 30.599240 ], [ -104.972071, 30.610260 ], [ -104.985365, 30.623792 ], [ -105.044407, 30.683895 ], [ -105.129328, 30.750139 ], [ -105.211234, 30.799609 ], [ -105.250028, 30.799068 ], [ -105.265479, 30.802536 ], [ -105.394627, 30.858920 ], [ -105.411833, 30.893367 ], [ -105.556790, 30.989469 ], [ -105.577650, 31.019811 ], [ -105.579756, 31.036588 ], [ -105.585323, 31.057488 ], [ -105.603330, 31.082625 ], [ -105.648834, 31.115902 ], [ -105.709491, 31.136375 ], [ -105.750519, 31.164940 ], [ -105.793719, 31.201713 ], [ -105.869353, 31.288634 ], [ -105.900315, 31.300008 ], [ -105.923131, 31.312089 ], [ -105.981027, 31.375122 ], [ -105.997658, 31.386489 ], [ -106.006930, 31.392826 ], [ -106.099393, 31.414760 ], [ -106.132782, 31.425367 ], [ -106.202851, 31.464073 ], [ -106.206018, 31.466648 ], [ -106.207524, 31.467872 ], [ -106.209200, 31.469234 ], [ -106.212918, 31.473409 ], [ -106.218538, 31.479720 ], [ -106.254062, 31.547512 ], [ -106.356938, 31.702210 ], [ -106.381039, 31.732110 ], [ -106.417940, 31.752009 ], [ -106.436743, 31.756872 ], [ -106.472514, 31.751802 ], [ -106.528543, 31.783907 ], [ -106.528543, 31.784407 ], [ -106.527997, 31.786945 ], [ -106.527623, 31.789119 ], [ -106.527738, 31.789761 ], [ -106.527943, 31.790507 ], [ -106.530515, 31.792103 ], [ -106.532480, 31.791914 ], [ -106.533000, 31.791829 ], [ -106.533043, 31.791907 ], [ -106.534743, 31.796107 ], [ -106.535154, 31.797089 ], [ -106.535343, 31.797507 ], [ -106.535843, 31.798607 ], [ -106.542097, 31.802146 ], [ -106.542144, 31.802107 ], [ -106.544714, 31.804287 ], [ -106.545344, 31.805007 ], [ -106.563444, 31.812606 ], [ -106.566844, 31.813306 ], [ -106.605245, 31.845905 ], [ -106.605845, 31.846305 ], [ -106.614637, 31.846490 ], [ -106.621857, 31.852854 ], [ -106.625763, 31.856276 ], [ -106.627808, 31.860593 ], [ -106.616136, 31.948439 ], [ -106.614702, 31.956000 ], [ -106.599096, 32.000731 ], [ -106.598639, 32.000754 ], [ -106.595333, 32.000778 ], [ -106.587972, 32.000749 ], [ -106.566056, 32.000759 ], [ -106.565142, 32.000736 ], [ -106.411075, 32.001334 ], [ -106.394298, 32.001484 ], [ -106.377174, 32.001490 ], [ -106.313307, 32.001512 ], [ -106.205915, 32.001762 ], [ -106.200699, 32.001785 ], [ -106.181840, 32.002050 ], [ -106.099760, 32.002174 ], [ -105.998003, 32.002328 ], [ -105.900600, 32.002100 ], [ -105.886159, 32.001970 ], [ -105.429281, 32.000577 ], [ -105.428582, 32.000600 ], [ -105.427049, 32.000638 ], [ -105.390396, 32.000607 ], [ -105.153994, 32.000497 ], [ -105.150310, 32.000497 ], [ -105.148240, 32.000485 ], [ -105.132916, 32.000518 ], [ -105.131377, 32.000524 ], [ -105.118040, 32.000485 ], [ -105.078605, 32.000533 ], [ -105.077046, 32.000579 ], [ -104.918272, 32.000496 ], [ -104.847757, 32.000482 ], [ -104.643526, 32.000443 ], [ -104.640918, 32.000396 ], [ -104.531937, 32.000311 ], [ -104.531756, 32.000117 ], [ -104.024521, 32.000010 ], [ -103.980179, 32.000125 ], [ -103.722853, 32.000221 ], [ -103.326501, 32.000370 ], [ -103.278521, 32.000419 ], [ -103.270383, 32.000326 ], [ -103.267708, 32.000324 ], [ -103.267633, 32.000475 ], [ -103.215641, 32.000513 ], [ -103.088698, 32.000453 ], [ -103.085876, 32.000465 ], [ -103.064423, 32.000518 ], [ -103.064344, 32.087051 ], [ -103.064348, 32.123041 ], [ -103.064422, 32.145006 ], [ -103.064696, 32.522193 ], [ -103.064761, 32.587983 ], [ -103.064788, 32.600397 ], [ -103.064761, 32.601863 ], [ -103.064815, 32.624537 ], [ -103.064633, 32.646420 ], [ -103.064864, 32.682647 ], [ -103.064798, 32.690761 ], [ -103.064799, 32.708694 ], [ -103.064827, 32.726628 ], [ -103.064807, 32.777303 ], [ -103.064698, 32.783602 ], [ -103.064711, 32.784593 ], [ -103.064699, 32.827531 ], [ -103.064672, 32.828470 ], [ -103.064889, 32.849359 ], [ -103.064916, 32.857260 ], [ -103.064807, 32.857696 ], [ -103.064862, 32.868346 ], [ -103.064701, 32.879355 ], [ -103.064569, 32.900014 ], [ -103.064657, 32.959097 ], [ -103.064679, 32.964373 ], [ -103.064625, 32.999899 ], [ -103.064452, 33.010290 ], [ -103.063980, 33.038693 ], [ -103.063905, 33.042055 ], [ -103.060103, 33.219225 ], [ -103.057856, 33.315234 ], [ -103.057487, 33.329477 ], [ -103.056655, 33.388416 ], [ -103.056655, 33.388438 ], [ -103.052610, 33.570599 ], [ -103.051664, 33.629489 ], [ -103.051363, 33.641950 ], [ -103.051535, 33.650487 ], [ -103.051087, 33.658186 ], [ -103.050532, 33.672408 ], [ -103.050148, 33.701971 ], [ -103.049096, 33.746270 ], [ -103.047346, 33.824675 ], [ -103.046907, 33.850300 ], [ -103.045644, 33.901537 ], [ -103.045698, 33.906299 ], [ -103.044893, 33.945617 ], [ -103.043950, 33.974629 ], [ -103.043617, 34.003633 ], [ -103.043531, 34.018014 ], [ -103.043555, 34.032714 ], [ -103.043746, 34.037294 ], [ -103.043771, 34.041538 ], [ -103.043721, 34.042320 ], [ -103.043767, 34.043545 ], [ -103.043744, 34.049986 ], [ -103.043686, 34.063078 ], [ -103.043516, 34.079382 ], [ -103.043569, 34.087947 ], [ -103.043644, 34.256903 ], [ -103.043719, 34.289441 ], [ -103.043936, 34.302585 ], [ -103.043979, 34.312749 ], [ -103.043979, 34.312764 ], [ -103.043946, 34.379555 ], [ -103.043944, 34.379660 ], [ -103.043919, 34.380916 ], [ -103.043693, 34.383578 ], [ -103.043630, 34.384690 ], [ -103.043614, 34.384969 ], [ -103.043613, 34.388679 ], [ -103.043613, 34.390442 ], [ -103.043585, 34.393716 ], [ -103.043611, 34.397105 ], [ -103.043583, 34.400678 ], [ -103.043538, 34.405463 ], [ -103.043582, 34.455657 ], [ -103.043588, 34.459662 ], [ -103.043589, 34.459774 ], [ -103.043594, 34.462660 ], [ -103.043072, 34.619782 ], [ -103.042827, 34.671188 ], [ -103.042769, 34.747361 ], [ -103.042770, 34.792224 ], [ -103.042781, 34.850243 ], [ -103.042521, 34.899546 ], [ -103.042521, 34.954101 ], [ -103.042520, 35.135596 ], [ -103.042600, 35.142766 ], [ -103.042711, 35.144735 ], [ -103.042568, 35.159318 ], [ -103.042395, 35.178573 ], [ -103.042339, 35.181922 ], [ -103.042366, 35.182786 ], [ -103.042377, 35.183149 ], [ -103.042377, 35.183156 ], [ -103.042497, 35.211862 ], [ -103.041554, 35.622487 ], [ -103.041357, 35.739274 ], [ -103.040824, 36.055231 ], [ -103.041674, 36.317534 ], [ -103.041745, 36.318267 ], [ -103.041669, 36.478514 ], [ -103.002434, 36.500397 ], [ -102.162463, 36.500326 ], [ -102.032339, 36.500066 ], [ -101.826565, 36.499654 ], [ -101.826498, 36.499535 ], [ -101.788110, 36.499678 ], [ -101.783359, 36.499709 ], [ -101.781987, 36.499718 ], [ -101.780610, 36.499727 ], [ -101.779435, 36.499734 ], [ -101.709314, 36.499722 ], [ -101.698685, 36.499508 ], [ -101.653708, 36.499573 ], [ -101.649966, 36.499573 ], [ -101.623915, 36.499528 ], [ -101.085156, 36.499244 ], [ -101.052418, 36.499563 ], [ -101.045331, 36.499540 ], [ -100.977088, 36.499595 ], [ -100.954153, 36.499599 ], [ -100.936058, 36.499602 ], [ -100.918513, 36.499621 ], [ -100.884174, 36.499682 ], [ -100.884080, 36.499682 ], [ -100.859657, 36.499687 ], [ -100.850840, 36.499700 ], [ -100.824236, 36.499618 ], [ -100.824218, 36.499618 ], [ -100.806190, 36.499674 ], [ -100.806172, 36.499634 ], [ -100.802909, 36.499621 ], [ -100.802886, 36.499621 ], [ -100.761811, 36.499618 ], [ -100.761811, 36.499580 ], [ -100.724362, 36.499580 ], [ -100.724361, 36.499558 ], [ -100.708626, 36.499553 ], [ -100.708628, 36.499521 ], [ -100.657763, 36.499483 ], [ -100.657763, 36.499500 ], [ -100.648343, 36.499495 ], [ -100.648344, 36.499463 ], [ -100.592614, 36.499469 ], [ -100.592556, 36.499469 ], [ -100.592551, 36.499429 ], [ -100.583539, 36.499483 ], [ -100.583379, 36.499443 ], [ -100.578114, 36.499463 ], [ -100.578114, 36.499439 ], [ -100.546145, 36.499343 ], [ -100.531215, 36.499341 ], [ -100.531215, 36.499290 ], [ -100.530478, 36.499240 ], [ -100.530314, 36.499357 ], [ -100.522227, 36.499291 ], [ -100.441065, 36.499490 ], [ -100.441064, 36.499462 ], [ -100.433959, 36.499456 ], [ -100.421328, 36.499447 ], [ -100.421301, 36.499488 ], [ -100.413634, 36.499444 ], [ -100.413550, 36.499469 ], [ -100.378634, 36.499517 ], [ -100.378592, 36.499445 ], [ -100.351852, 36.499487 ], [ -100.351842, 36.499473 ], [ -100.334464, 36.499420 ], [ -100.334441, 36.499440 ], [ -100.324150, 36.499679 ], [ -100.311245, 36.499631 ], [ -100.311018, 36.499688 ], [ -100.310643, 36.499642 ], [ -100.181221, 36.499633 ], [ -100.090021, 36.499634 ], [ -100.003762, 36.499699 ], [ -100.000406, 36.499702 ], [ -100.000399, 36.055677 ], [ -100.000396, 35.880948 ], [ -100.000392, 35.619115 ], [ -100.000389, 35.422364 ], [ -100.000385, 35.182702 ], [ -100.000384, 35.030385 ], [ -100.000381, 34.746461 ] ] ] ] } }\n\n]\n}\n"
  },
  {
    "path": "config/config.exs",
    "content": "# This file is responsible for configuring your application\n# and its dependencies with the aid of the Mix.Config module.\nimport Config\n\n# This configuration is loaded before any dependency and is restricted\n# to this project. If another project depends on this project, this\n# file won't be loaded nor affect the parent project. For this reason,\n# if you want to provide default values for your application for\n# 3rd-party users, it should be done in your \"mix.exs\" file.\n\n# You can configure for your application as:\n#\n#     config :topo, key: :value\n#\n# And access this configuration in your application as:\n#\n#     Application.get_env(:topo, :key)\n#\n# Or configure a 3rd-party app:\n#\n#     config :logger, level: :info\n#\n\n# It is also possible to import configuration files, relative to this\n# directory. For example, you can emulate configuration per environment\n# by uncommenting the line below and defining dev.exs, test.exs and such.\n# Configuration from the imported file will override the ones defined\n# here (which is why it is important to import them last).\n#\n\nif Mix.env() == :test do\n  config :topo, epsilon: true\nend\n"
  },
  {
    "path": "coveralls.json",
    "content": "{\n  \"skip_files\": [\n    \"lib/mix/tasks\"\n  ]\n}\n"
  },
  {
    "path": "doc/.build",
    "content": "404.html\nTopo.html\napi-reference.html\ndist/handlebars.runtime-NWIB6V2M.js\ndist/handlebars.templates-K7URE6B4.js\ndist/html-BHYOTRCH.js\ndist/html-elixir-CDEHVNM4.css\ndist/inconsolata-latin-400-normal-RGKDDNDD.woff2\ndist/inconsolata-latin-700-normal-DTS2D7TO.woff2\ndist/inconsolata-latin-ext-400-normal-K7HVGTP7.woff2\ndist/inconsolata-latin-ext-700-normal-4MPBLFZC.woff2\ndist/inconsolata-vietnamese-400-normal-IGQPHHJH.woff2\ndist/inconsolata-vietnamese-700-normal-LHEGSN35.woff2\ndist/lato-latin-300-normal-YUMVEFOL.woff2\ndist/lato-latin-400-normal-W7754I4D.woff2\ndist/lato-latin-700-normal-2XVSBPG4.woff2\ndist/lato-latin-ext-300-normal-VPGGJKJL.woff2\ndist/lato-latin-ext-400-normal-N27NCBWW.woff2\ndist/lato-latin-ext-700-normal-Q2L5DVMW.woff2\ndist/remixicon-NKANDIL5.woff2\ndist/search_data-6BAA9AEB.js\ndist/sidebar_items-E095BA35.js\nindex.html\nsearch.html\n"
  },
  {
    "path": "doc/404.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n  <head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"x-ua-compatible\" content=\"ie=edge\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <meta name=\"generator\" content=\"ExDoc v0.32.2\">\n    <meta name=\"project\" content=\"Topo v1.0.3\">\n\n\n      <meta name=\"robots\" content=\"noindex\">\n\n    <title>404 — Topo v1.0.3</title>\n    <link rel=\"stylesheet\" href=\"dist/html-elixir-CDEHVNM4.css\" />\n\n\n    <script src=\"dist/handlebars.runtime-NWIB6V2M.js\"></script>\n    <script src=\"dist/handlebars.templates-K7URE6B4.js\"></script>\n    <script src=\"dist/sidebar_items-E095BA35.js\"></script>\n    <script src=\"docs_config.js\"></script>\n    <script async src=\"dist/html-BHYOTRCH.js\"></script>\n\n\n  </head>\n  <body data-type=\"extras\" class=\"page-extra\">\n    <script>\n\n      try {\n        var settings = JSON.parse(localStorage.getItem('ex_doc:settings') || '{}');\n\n        if (settings.theme === 'dark' ||\n           ((settings.theme === 'system' || settings.theme == null) &&\n             window.matchMedia('(prefers-color-scheme: dark)').matches)\n           ) {\n          document.body.classList.add('dark')\n        }\n      } catch (error) { }\n    </script>\n\n<div class=\"body-wrapper\">\n\n<button id=\"sidebar-menu\" class=\"sidebar-button sidebar-toggle\" aria-label=\"toggle sidebar\" aria-controls=\"sidebar\">\n  <i class=\"ri-menu-line ri-lg\" title=\"Collapse/expand sidebar\"></i>\n</button>\n\n<nav id=\"sidebar\" class=\"sidebar\">\n\n  <div class=\"sidebar-header\">\n    <div class=\"sidebar-projectInfo\">\n\n      <div>\n        <a href=\"Topo.html\" class=\"sidebar-projectName\" translate=\"no\">\nTopo\n        </a>\n        <div class=\"sidebar-projectVersion\" translate=\"no\">\n          v1.0.3\n        </div>\n      </div>\n    </div>\n    <ul id=\"sidebar-listNav\" class=\"sidebar-listNav\" role=\"tablist\">\n      <li>\n        <button id=\"extras-list-tab-button\" role=\"tab\" data-type=\"extras\" aria-controls=\"extras-tab-panel\" aria-selected=\"true\" tabindex=\"0\">\nPages\n        </button>\n      </li>\n\n        <li>\n          <button id=\"modules-list-tab-button\" role=\"tab\" data-type=\"modules\" aria-controls=\"modules-tab-panel\" aria-selected=\"false\" tabindex=\"-1\">\n            Modules\n          </button>\n        </li>\n\n\n    </ul>\n  </div>\n\n  <div id=\"extras-tab-panel\" class=\"sidebar-tabpanel\" role=\"tabpanel\" aria-labelledby=\"extras-list-tab-button\">\n    <ul id=\"extras-full-list\" class=\"full-list\"></ul>\n  </div>\n\n    <div id=\"modules-tab-panel\" class=\"sidebar-tabpanel\" role=\"tabpanel\" aria-labelledby=\"modules-list-tab-button\" hidden>\n      <ul id=\"modules-full-list\" class=\"full-list\"></ul>\n    </div>\n\n\n</nav>\n\n<main class=\"content\">\n  <output role=\"status\" id=\"toast\"></output>\n\n  <div id=\"content\" class=\"content-inner\">\n    <div class=\"top-search\">\n      <div class=\"search-settings\">\n        <form class=\"search-bar\" action=\"search.html\">\n          <label class=\"search-label\">\n            <span class=\"sr-only\">Search documentation of Topo</span>\n            <input name=\"q\" type=\"text\" class=\"search-input\" placeholder=\"Press / to search\" autocomplete=\"off\" autocorrect=\"off\" autocapitalize=\"off\" spellcheck=\"false\" />\n          </label>\n          <button type=\"submit\" class=\"search-button\" aria-label=\"Submit Search\">\n            <i class=\"ri-search-2-line ri-lg\" aria-hidden=\"true\" title=\"Submit search\"></i>\n          </button>\n          <button type=\"button\" tabindex=\"-1\" class=\"search-close-button\" aria-hidden=\"true\">\n            <i class=\"ri-close-line ri-lg\" title=\"Cancel search\"></i>\n          </button>\n        </form>\n        <div class=\"autocomplete\">\n        </div>\n        <button class=\"icon-settings display-settings\">\n          <i class=\"ri-settings-3-line\"></i>\n          <span class=\"sr-only\">Settings</span>\n        </button>\n      </div>\n    </div>\n\n<h1>\n  <span>Page not found</span>\n</h1>\n\n<p>Sorry, but the page you were trying to get to, does not exist. You\nmay want to try searching this site using the sidebar\n\n  or using our <a href=\"api-reference.html\">API Reference</a> page\n\nto find what you were looking for.</p>\n    <footer class=\"footer\">\n      <p>\n\n          <span class=\"line\">\n            <a href=\"https://hex.pm/packages/topo/1.0.3\" class=\"footer-hex-package\">Hex Package</a>\n\n            <a href=\"https://preview.hex.pm/preview/topo/1.0.3\">Hex Preview</a>\n\n          </span>\n\n        <span class=\"line\">\n          <button class=\"a-main footer-button display-quick-switch\" title=\"Search HexDocs packages\">\n            Search HexDocs\n          </button>\n\n            <a href=\"Topo.epub\" title=\"ePub version\">\n              Download ePub version\n            </a>\n\n        </span>\n      </p>\n\n      <p class=\"built-using\">\n        Built using\n        <a href=\"https://github.com/elixir-lang/ex_doc\" title=\"ExDoc\" target=\"_blank\" rel=\"help noopener\" translate=\"no\">ExDoc</a> (v0.32.2) for the\n\n          <a href=\"https://elixir-lang.org\" title=\"Elixir\" target=\"_blank\" translate=\"no\">Elixir programming language</a>\n\n      </p>\n\n    </footer>\n  </div>\n</main>\n</div>\n\n\n  </body>\n</html>\n"
  },
  {
    "path": "doc/Topo.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n  <head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"x-ua-compatible\" content=\"ie=edge\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <meta name=\"generator\" content=\"ExDoc v0.32.2\">\n    <meta name=\"project\" content=\"Topo v1.0.3\">\n\n\n    <title>Topo — Topo v1.0.3</title>\n    <link rel=\"stylesheet\" href=\"dist/html-elixir-CDEHVNM4.css\" />\n\n\n    <script src=\"dist/handlebars.runtime-NWIB6V2M.js\"></script>\n    <script src=\"dist/handlebars.templates-K7URE6B4.js\"></script>\n    <script src=\"dist/sidebar_items-E095BA35.js\"></script>\n    <script src=\"docs_config.js\"></script>\n    <script async src=\"dist/html-BHYOTRCH.js\"></script>\n\n\n  </head>\n  <body data-type=\"modules\" class=\"page-module\">\n    <script>\n\n      try {\n        var settings = JSON.parse(localStorage.getItem('ex_doc:settings') || '{}');\n\n        if (settings.theme === 'dark' ||\n           ((settings.theme === 'system' || settings.theme == null) &&\n             window.matchMedia('(prefers-color-scheme: dark)').matches)\n           ) {\n          document.body.classList.add('dark')\n        }\n      } catch (error) { }\n    </script>\n\n<div class=\"body-wrapper\">\n\n<button id=\"sidebar-menu\" class=\"sidebar-button sidebar-toggle\" aria-label=\"toggle sidebar\" aria-controls=\"sidebar\">\n  <i class=\"ri-menu-line ri-lg\" title=\"Collapse/expand sidebar\"></i>\n</button>\n\n<nav id=\"sidebar\" class=\"sidebar\">\n\n  <div class=\"sidebar-header\">\n    <div class=\"sidebar-projectInfo\">\n\n      <div>\n        <a href=\"Topo.html\" class=\"sidebar-projectName\" translate=\"no\">\nTopo\n        </a>\n        <div class=\"sidebar-projectVersion\" translate=\"no\">\n          v1.0.3\n        </div>\n      </div>\n    </div>\n    <ul id=\"sidebar-listNav\" class=\"sidebar-listNav\" role=\"tablist\">\n      <li>\n        <button id=\"extras-list-tab-button\" role=\"tab\" data-type=\"extras\" aria-controls=\"extras-tab-panel\" aria-selected=\"true\" tabindex=\"0\">\nPages\n        </button>\n      </li>\n\n        <li>\n          <button id=\"modules-list-tab-button\" role=\"tab\" data-type=\"modules\" aria-controls=\"modules-tab-panel\" aria-selected=\"false\" tabindex=\"-1\">\n            Modules\n          </button>\n        </li>\n\n\n    </ul>\n  </div>\n\n  <div id=\"extras-tab-panel\" class=\"sidebar-tabpanel\" role=\"tabpanel\" aria-labelledby=\"extras-list-tab-button\">\n    <ul id=\"extras-full-list\" class=\"full-list\"></ul>\n  </div>\n\n    <div id=\"modules-tab-panel\" class=\"sidebar-tabpanel\" role=\"tabpanel\" aria-labelledby=\"modules-list-tab-button\" hidden>\n      <ul id=\"modules-full-list\" class=\"full-list\"></ul>\n    </div>\n\n\n</nav>\n\n<main class=\"content\">\n  <output role=\"status\" id=\"toast\"></output>\n\n  <div id=\"content\" class=\"content-inner\">\n    <div class=\"top-search\">\n      <div class=\"search-settings\">\n        <form class=\"search-bar\" action=\"search.html\">\n          <label class=\"search-label\">\n            <span class=\"sr-only\">Search documentation of Topo</span>\n            <input name=\"q\" type=\"text\" class=\"search-input\" placeholder=\"Press / to search\" autocomplete=\"off\" autocorrect=\"off\" autocapitalize=\"off\" spellcheck=\"false\" />\n          </label>\n          <button type=\"submit\" class=\"search-button\" aria-label=\"Submit Search\">\n            <i class=\"ri-search-2-line ri-lg\" aria-hidden=\"true\" title=\"Submit search\"></i>\n          </button>\n          <button type=\"button\" tabindex=\"-1\" class=\"search-close-button\" aria-hidden=\"true\">\n            <i class=\"ri-close-line ri-lg\" title=\"Cancel search\"></i>\n          </button>\n        </form>\n        <div class=\"autocomplete\">\n        </div>\n        <button class=\"icon-settings display-settings\">\n          <i class=\"ri-settings-3-line\"></i>\n          <span class=\"sr-only\">Settings</span>\n        </button>\n      </div>\n    </div>\n\n<div id=\"top-content\">\n  <h1>\n\n      <a href=\"https://github.com/pkinney/topo/blob/master/lib/topo.ex#L1\" title=\"View Source\" class=\"icon-action\" rel=\"help\">\n        <i class=\"ri-code-s-slash-line\" aria-hidden=\"true\"></i>\n        <span class=\"sr-only\">View Source</span>\n      </a>\n\n    <span translate=\"no\">Topo</span> \n    <small class=\"app-vsn\" translate=\"no\">(Topo v1.0.3)</small>\n\n  </h1>\n\n\n    <section id=\"moduledoc\">\n<p>A Geometry library for Elixir that calculates relationships between two\ngeometries.  Geometries can be of any of the following types:</p><ul><li>Point</li><li>LineString</li><li>Polygon</li><li>MultiPoint</li><li>MultiLineString</li><li>MultiPolygon</li></ul><p>Each of these functions can be passed any two Geometries in either a Map with a\n<code class=\"inline\">:type</code> and <code class=\"inline\">:coordinates</code> keys or as a struct generated via the Geo library\n(<a href=\"https://github.com/bryanjos/geo\">https://github.com/bryanjos/geo</a>). Coordinates are represented as atoms <code class=\"inline\">{x, y}</code>\nand multiple coordinates as Lists.</p><pre><code class=\"makeup elixir\" translate=\"no\"><span class=\"n\">a</span><span class=\"w\"> </span><span class=\"o\">=</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"9458894643-1\">%{</span><span class=\"ss\">type</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"s\">&quot;Polygon&quot;</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"ss\">coordinates</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"9458894643-2\">[</span><span class=\"p\" data-group-id=\"9458894643-3\">[</span><span class=\"p\" data-group-id=\"9458894643-4\">{</span><span class=\"mi\">2</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">2</span><span class=\"p\" data-group-id=\"9458894643-4\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"9458894643-5\">{</span><span class=\"mi\">20</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">2</span><span class=\"p\" data-group-id=\"9458894643-5\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"9458894643-6\">{</span><span class=\"mi\">11</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">11</span><span class=\"p\" data-group-id=\"9458894643-6\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"9458894643-7\">{</span><span class=\"mi\">2</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">2</span><span class=\"p\" data-group-id=\"9458894643-7\">}</span><span class=\"p\" data-group-id=\"9458894643-3\">]</span><span class=\"p\" data-group-id=\"9458894643-2\">]</span><span class=\"p\" data-group-id=\"9458894643-1\">}</span><span class=\"w\">\n</span><span class=\"n\">b</span><span class=\"w\"> </span><span class=\"o\">=</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"9458894643-8\">%</span><span class=\"nc\" data-group-id=\"9458894643-8\">Geo.Polygon</span><span class=\"p\" data-group-id=\"9458894643-8\">{</span><span class=\"ss\">coordinates</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"9458894643-9\">[</span><span class=\"p\" data-group-id=\"9458894643-10\">[</span><span class=\"p\" data-group-id=\"9458894643-11\">{</span><span class=\"mi\">2</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">2</span><span class=\"p\" data-group-id=\"9458894643-11\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"9458894643-12\">{</span><span class=\"mi\">20</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">2</span><span class=\"p\" data-group-id=\"9458894643-12\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"9458894643-13\">{</span><span class=\"mi\">11</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">11</span><span class=\"p\" data-group-id=\"9458894643-13\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"9458894643-14\">{</span><span class=\"mi\">2</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">2</span><span class=\"p\" data-group-id=\"9458894643-14\">}</span><span class=\"p\" data-group-id=\"9458894643-10\">]</span><span class=\"p\" data-group-id=\"9458894643-9\">]</span><span class=\"p\" data-group-id=\"9458894643-8\">}</span><span class=\"w\">\n\n</span><span class=\"nc\">Topo</span><span class=\"o\">.</span><span class=\"n\">equals?</span><span class=\"w\"> </span><span class=\"n\">a</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">b</span><span class=\"w\"> </span><span class=\"c1\"># =&gt; true</span></code></pre><p>Instead of a Point geometry, just a single coordinate can be used.</p><pre><code class=\"makeup elixir\" translate=\"no\"><span class=\"n\">a</span><span class=\"w\"> </span><span class=\"o\">=</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"7236947095-1\">%{</span><span class=\"ss\">type</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"s\">&quot;Polygon&quot;</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"ss\">coordinates</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"7236947095-2\">[</span><span class=\"p\" data-group-id=\"7236947095-3\">[</span><span class=\"p\" data-group-id=\"7236947095-4\">{</span><span class=\"mi\">2</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">2</span><span class=\"p\" data-group-id=\"7236947095-4\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"7236947095-5\">{</span><span class=\"mi\">20</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">2</span><span class=\"p\" data-group-id=\"7236947095-5\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"7236947095-6\">{</span><span class=\"mi\">11</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">11</span><span class=\"p\" data-group-id=\"7236947095-6\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"7236947095-7\">{</span><span class=\"mi\">2</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">2</span><span class=\"p\" data-group-id=\"7236947095-7\">}</span><span class=\"p\" data-group-id=\"7236947095-3\">]</span><span class=\"p\" data-group-id=\"7236947095-2\">]</span><span class=\"p\" data-group-id=\"7236947095-1\">}</span><span class=\"w\">\n\n</span><span class=\"nc\">Topo</span><span class=\"o\">.</span><span class=\"n\">intersects?</span><span class=\"w\"> </span><span class=\"n\">a</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"7236947095-8\">{</span><span class=\"mi\">4</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">6</span><span class=\"p\" data-group-id=\"7236947095-8\">}</span><span class=\"w\"> </span><span class=\"c1\"># =&gt; true</span></code></pre><p>The <a href=\"Topo.html#content\"><code class=\"inline\">Topo</code></a> library's functions will automatically attempt to &quot;clean&quot; geometries\npassed to them:</p><ul><li>Linear Rings (including Polygons) will be reordered to a counter-clockwise\ndirection.</li><li>Polygon's Linear Rings will automatically be closed if the first point is not\nrepeated as the last point.</li><li>Points that are equal or collinear with surrounding points are removed from\nLineStrings or Polygons.</li></ul>\n    </section>\n\n</div>\n\n  <section id=\"summary\" class=\"details-list\">\n    <h1 class=\"section-heading\">\n      <a class=\"hover-link\" href=\"#summary\">\n        <i class=\"ri-link-m\" aria-hidden=\"true\"></i>\n      </a>\n      <span class=\"text\">Summary</span>\n    </h1>\n<div class=\"summary-types summary\">\n  <h2>\n    <a href=\"#types\">Types</a>\n  </h2>\n\n    <div class=\"summary-row\">\n      <div class=\"summary-signature\">\n        <a href=\"#t:geometry/0\" data-no-tooltip translate=\"no\">geometry()</a>\n\n      </div>\n\n    </div>\n\n</div>\n<div class=\"summary-functions summary\">\n  <h2>\n    <a href=\"#functions\">Functions</a>\n  </h2>\n\n    <div class=\"summary-row\">\n      <div class=\"summary-signature\">\n        <a href=\"#contains?/2\" data-no-tooltip translate=\"no\">contains?(a, b)</a>\n\n      </div>\n\n        <div class=\"summary-synopsis\"><p>Returns <code class=\"inline\">true</code> if all points of geometry <strong>B</strong> lie within <strong>A</strong>.</p></div>\n\n    </div>\n\n    <div class=\"summary-row\">\n      <div class=\"summary-signature\">\n        <a href=\"#disjoint?/2\" data-no-tooltip translate=\"no\">disjoint?(a, b)</a>\n\n      </div>\n\n        <div class=\"summary-synopsis\"><p>Returns <code class=\"inline\">true</code> if geometries <strong>A</strong> and <strong>B</strong> do not have any points in\ncommon.</p></div>\n\n    </div>\n\n    <div class=\"summary-row\">\n      <div class=\"summary-signature\">\n        <a href=\"#equals?/2\" data-no-tooltip translate=\"no\">equals?(a, b)</a>\n\n      </div>\n\n        <div class=\"summary-synopsis\"><p>Geometries <strong>A</strong> and <strong>B</strong> are equivalent and cover the exact\nsame set of points.  By definition, <strong>A</strong> and <strong>B</strong> are equal if <strong>A</strong> contains\n<strong>B</strong> and <strong>B</strong> contains <strong>A</strong>.  Equality does not necessarily mean that the\ngeometries are of the same type.  A Point <strong>A</strong> is equal to a MultiPoint that\ncontains only the same Point <strong>A</strong>.</p></div>\n\n    </div>\n\n    <div class=\"summary-row\">\n      <div class=\"summary-signature\">\n        <a href=\"#intersects?/2\" data-no-tooltip translate=\"no\">intersects?(a, b)</a>\n\n      </div>\n\n        <div class=\"summary-synopsis\"><p>Returns <code class=\"inline\">true</code> if geometries <strong>A</strong> and <strong>B</strong> share at least one point in\ncommon.</p></div>\n\n    </div>\n\n    <div class=\"summary-row\">\n      <div class=\"summary-signature\">\n        <a href=\"#within?/2\" data-no-tooltip translate=\"no\">within?(a, b)</a>\n\n      </div>\n\n        <div class=\"summary-synopsis\"><p>This is the direct converse of <code class=\"inline\">contains?</code>.  All points of\ngeometry <strong>A</strong> lie within geometry <strong>B</strong>.</p></div>\n\n    </div>\n\n</div>\n\n  </section>\n\n\n  <section id=\"types\" class=\"details-list\">\n    <h1 class=\"section-heading\">\n      <a class=\"hover-link\" href=\"#types\">\n        <i class=\"ri-link-m\" aria-hidden=\"true\"></i>\n      </a>\n      <span class=\"text\">Types</span>\n    </h1>\n    <div class=\"types-list\">\n<section class=\"detail\" id=\"t:geometry/0\">\n\n  <div class=\"detail-header\">\n    <a href=\"#t:geometry/0\" class=\"detail-link\" data-no-tooltip title=\"Link to this type\">\n      <i class=\"ri-link-m\" aria-hidden=\"true\"></i>\n      <span class=\"sr-only\">Link to this type</span>\n    </a>\n    <h1 class=\"signature\" translate=\"no\">geometry()</h1>\n\n      <a href=\"https://github.com/pkinney/topo/blob/master/lib/topo.ex#L48\" class=\"icon-action\" rel=\"help\" title=\"View Source\">\n       <i class=\"ri-code-s-slash-line\" aria-hidden=\"true\"></i>\n       <span class=\"sr-only\">View Source</span>\n     </a>\n\n\n  </div>\n\n  <section class=\"docstring\">\n\n      <div class=\"specs\">\n\n          <pre translate=\"no\"><span class=\"attribute\">@type</span> geometry() ::\n  {<a href=\"https://hexdocs.pm/elixir/typespecs.html#built-in-types\">number</a>(), <a href=\"https://hexdocs.pm/elixir/typespecs.html#built-in-types\">number</a>()}\n  | %{type: <a href=\"https://hexdocs.pm/elixir/String.html#t:t/0\">String.t</a>(), coordinates: <a href=\"https://hexdocs.pm/elixir/typespecs.html#built-in-types\">list</a>()}\n  | %Geo.Point{coordinates: <a href=\"https://hexdocs.pm/elixir/typespecs.html#built-in-types\">term</a>(), properties: <a href=\"https://hexdocs.pm/elixir/typespecs.html#built-in-types\">term</a>(), srid: <a href=\"https://hexdocs.pm/elixir/typespecs.html#built-in-types\">term</a>()}\n  | %Geo.MultiPoint{coordinates: <a href=\"https://hexdocs.pm/elixir/typespecs.html#built-in-types\">term</a>(), properties: <a href=\"https://hexdocs.pm/elixir/typespecs.html#built-in-types\">term</a>(), srid: <a href=\"https://hexdocs.pm/elixir/typespecs.html#built-in-types\">term</a>()}\n  | %Geo.LineString{coordinates: <a href=\"https://hexdocs.pm/elixir/typespecs.html#built-in-types\">term</a>(), properties: <a href=\"https://hexdocs.pm/elixir/typespecs.html#built-in-types\">term</a>(), srid: <a href=\"https://hexdocs.pm/elixir/typespecs.html#built-in-types\">term</a>()}\n  | %Geo.MultiLineString{coordinates: <a href=\"https://hexdocs.pm/elixir/typespecs.html#built-in-types\">term</a>(), properties: <a href=\"https://hexdocs.pm/elixir/typespecs.html#built-in-types\">term</a>(), srid: <a href=\"https://hexdocs.pm/elixir/typespecs.html#built-in-types\">term</a>()}\n  | %Geo.Polygon{coordinates: <a href=\"https://hexdocs.pm/elixir/typespecs.html#built-in-types\">term</a>(), properties: <a href=\"https://hexdocs.pm/elixir/typespecs.html#built-in-types\">term</a>(), srid: <a href=\"https://hexdocs.pm/elixir/typespecs.html#built-in-types\">term</a>()}\n  | %Geo.MultiPolygon{coordinates: <a href=\"https://hexdocs.pm/elixir/typespecs.html#built-in-types\">term</a>(), properties: <a href=\"https://hexdocs.pm/elixir/typespecs.html#built-in-types\">term</a>(), srid: <a href=\"https://hexdocs.pm/elixir/typespecs.html#built-in-types\">term</a>()}</pre>\n\n      </div>\n\n\n  </section>\n</section>\n\n    </div>\n  </section>\n\n  <section id=\"functions\" class=\"details-list\">\n    <h1 class=\"section-heading\">\n      <a class=\"hover-link\" href=\"#functions\">\n        <i class=\"ri-link-m\" aria-hidden=\"true\"></i>\n      </a>\n      <span class=\"text\">Functions</span>\n    </h1>\n    <div class=\"functions-list\">\n<section class=\"detail\" id=\"contains?/2\">\n\n  <div class=\"detail-header\">\n    <a href=\"#contains?/2\" class=\"detail-link\" data-no-tooltip title=\"Link to this function\">\n      <i class=\"ri-link-m\" aria-hidden=\"true\"></i>\n      <span class=\"sr-only\">Link to this function</span>\n    </a>\n    <h1 class=\"signature\" translate=\"no\">contains?(a, b)</h1>\n\n      <a href=\"https://github.com/pkinney/topo/blob/master/lib/topo.ex#L142\" class=\"icon-action\" rel=\"help\" title=\"View Source\">\n       <i class=\"ri-code-s-slash-line\" aria-hidden=\"true\"></i>\n       <span class=\"sr-only\">View Source</span>\n     </a>\n\n\n  </div>\n\n  <section class=\"docstring\">\n\n      <div class=\"specs\">\n\n          <pre translate=\"no\"><span class=\"attribute\">@spec</span> contains?(<a href=\"#t:geometry/0\">geometry</a>(), <a href=\"#t:geometry/0\">geometry</a>()) :: <a href=\"https://hexdocs.pm/elixir/typespecs.html#built-in-types\">boolean</a>()</pre>\n\n      </div>\n\n<p>Returns <code class=\"inline\">true</code> if all points of geometry <strong>B</strong> lie within <strong>A</strong>.</p><p>There are a few non-obvious special cases that are worth mentioning:</p><ul><li>A Polygon does not contain its own boundary.  Specifically a LineString that\nis the exact same as a Polygon's exterior Linear ring is not contained within a\nthat Polygon.</li></ul><pre><code class=\"makeup elixir\" translate=\"no\"><span class=\"w\">  </span><span class=\"n\">a</span><span class=\"w\"> </span><span class=\"o\">=</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"2052096549-1\">%</span><span class=\"nc\" data-group-id=\"2052096549-1\">Geo.Polygon</span><span class=\"p\" data-group-id=\"2052096549-1\">{</span><span class=\"ss\">coordinates</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"2052096549-2\">[</span><span class=\"p\" data-group-id=\"2052096549-3\">[</span><span class=\"p\" data-group-id=\"2052096549-4\">{</span><span class=\"mi\">2</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">2</span><span class=\"p\" data-group-id=\"2052096549-4\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"2052096549-5\">{</span><span class=\"mi\">20</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">2</span><span class=\"p\" data-group-id=\"2052096549-5\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"2052096549-6\">{</span><span class=\"mi\">11</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">11</span><span class=\"p\" data-group-id=\"2052096549-6\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"2052096549-7\">{</span><span class=\"mi\">2</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">2</span><span class=\"p\" data-group-id=\"2052096549-7\">}</span><span class=\"p\" data-group-id=\"2052096549-3\">]</span><span class=\"p\" data-group-id=\"2052096549-2\">]</span><span class=\"p\" data-group-id=\"2052096549-1\">}</span><span class=\"w\">\n  </span><span class=\"n\">b</span><span class=\"w\"> </span><span class=\"o\">=</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"2052096549-8\">%</span><span class=\"nc\" data-group-id=\"2052096549-8\">Geo.LineString</span><span class=\"p\" data-group-id=\"2052096549-8\">{</span><span class=\"ss\">coordinates</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"2052096549-9\">[</span><span class=\"p\" data-group-id=\"2052096549-10\">{</span><span class=\"mi\">2</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">2</span><span class=\"p\" data-group-id=\"2052096549-10\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"2052096549-11\">{</span><span class=\"mi\">20</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">2</span><span class=\"p\" data-group-id=\"2052096549-11\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"2052096549-12\">{</span><span class=\"mi\">11</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">11</span><span class=\"p\" data-group-id=\"2052096549-12\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"2052096549-13\">{</span><span class=\"mi\">2</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">2</span><span class=\"p\" data-group-id=\"2052096549-13\">}</span><span class=\"p\" data-group-id=\"2052096549-9\">]</span><span class=\"p\" data-group-id=\"2052096549-8\">}</span><span class=\"w\">\n\n  </span><span class=\"nc\">Topo</span><span class=\"o\">.</span><span class=\"n\">contains?</span><span class=\"w\"> </span><span class=\"n\">a</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">b</span><span class=\"w\"> </span><span class=\"c1\"># =&gt; false</span><span class=\"w\">\n  </span><span class=\"nc\">Topo</span><span class=\"o\">.</span><span class=\"n\">intersects?</span><span class=\"w\"> </span><span class=\"n\">a</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"n\">b</span><span class=\"w\">  </span><span class=\"c1\"># =&gt; true</span></code></pre><ul><li>A LineString does not contain it's own first and last point (unless those\npoints are the same, as in a LinearRing)</li></ul><pre><code class=\"makeup elixir\" translate=\"no\"><span class=\"w\">  </span><span class=\"n\">a</span><span class=\"w\"> </span><span class=\"o\">=</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"7711801204-1\">%</span><span class=\"nc\" data-group-id=\"7711801204-1\">Geo.LineString</span><span class=\"p\" data-group-id=\"7711801204-1\">{</span><span class=\"ss\">coordinates</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"7711801204-2\">[</span><span class=\"p\" data-group-id=\"7711801204-3\">{</span><span class=\"mi\">1</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">3</span><span class=\"p\" data-group-id=\"7711801204-3\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"7711801204-4\">{</span><span class=\"mi\">2</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"o\">-</span><span class=\"mi\">1</span><span class=\"p\" data-group-id=\"7711801204-4\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"7711801204-5\">{</span><span class=\"mi\">0</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"o\">-</span><span class=\"mi\">1</span><span class=\"p\" data-group-id=\"7711801204-5\">}</span><span class=\"p\" data-group-id=\"7711801204-2\">]</span><span class=\"p\" data-group-id=\"7711801204-1\">}</span><span class=\"w\">\n  </span><span class=\"n\">b</span><span class=\"w\"> </span><span class=\"o\">=</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"7711801204-6\">%</span><span class=\"nc\" data-group-id=\"7711801204-6\">Geo.LineString</span><span class=\"p\" data-group-id=\"7711801204-6\">{</span><span class=\"ss\">coordinates</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"7711801204-7\">[</span><span class=\"p\" data-group-id=\"7711801204-8\">{</span><span class=\"mi\">1</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">3</span><span class=\"p\" data-group-id=\"7711801204-8\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"7711801204-9\">{</span><span class=\"mi\">2</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"o\">-</span><span class=\"mi\">1</span><span class=\"p\" data-group-id=\"7711801204-9\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"7711801204-10\">{</span><span class=\"mi\">0</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"o\">-</span><span class=\"mi\">1</span><span class=\"p\" data-group-id=\"7711801204-10\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"7711801204-11\">{</span><span class=\"mi\">1</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">3</span><span class=\"p\" data-group-id=\"7711801204-11\">}</span><span class=\"p\" data-group-id=\"7711801204-7\">]</span><span class=\"p\" data-group-id=\"7711801204-6\">}</span><span class=\"w\">\n\n  </span><span class=\"nc\">Topo</span><span class=\"o\">.</span><span class=\"n\">contains?</span><span class=\"w\"> </span><span class=\"n\">a</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"7711801204-12\">{</span><span class=\"mi\">1</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">3</span><span class=\"p\" data-group-id=\"7711801204-12\">}</span><span class=\"w\"> </span><span class=\"c1\"># =&gt; false</span><span class=\"w\">\n  </span><span class=\"nc\">Topo</span><span class=\"o\">.</span><span class=\"n\">intersects?</span><span class=\"w\"> </span><span class=\"n\">a</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"7711801204-13\">{</span><span class=\"mi\">1</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">3</span><span class=\"p\" data-group-id=\"7711801204-13\">}</span><span class=\"w\"> </span><span class=\"c1\"># =&gt; true</span><span class=\"w\">\n  </span><span class=\"nc\">Topo</span><span class=\"o\">.</span><span class=\"n\">contains?</span><span class=\"w\"> </span><span class=\"n\">b</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"7711801204-14\">{</span><span class=\"mi\">1</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">3</span><span class=\"p\" data-group-id=\"7711801204-14\">}</span><span class=\"w\"> </span><span class=\"c1\"># =&gt; true</span></code></pre><h2 id=\"contains?/2-examples\" class=\"section-heading\">\n  <a href=\"#contains?/2-examples\" class=\"hover-link\">\n    <i class=\"ri-link-m\" aria-hidden=\"true\"></i>\n  </a>\n  <span class=\"text\">Examples</span>\n</h2>\n<pre><code class=\"makeup elixir\" translate=\"no\"><span class=\"gp unselectable\">iex&gt; </span><span class=\"nc\">Topo</span><span class=\"o\">.</span><span class=\"n\">contains?</span><span class=\"p\" data-group-id=\"9948285176-1\">(</span><span class=\"w\">\n</span><span class=\"gp unselectable\">...&gt; </span><span class=\"w\">  </span><span class=\"p\" data-group-id=\"9948285176-2\">%{</span><span class=\"ss\">type</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"s\">&quot;Polygon&quot;</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"ss\">coordinates</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"9948285176-3\">[</span><span class=\"p\" data-group-id=\"9948285176-4\">[</span><span class=\"p\" data-group-id=\"9948285176-5\">{</span><span class=\"mi\">20</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">20</span><span class=\"p\" data-group-id=\"9948285176-5\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"9948285176-6\">{</span><span class=\"mi\">20</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">180</span><span class=\"p\" data-group-id=\"9948285176-6\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"9948285176-7\">{</span><span class=\"mi\">220</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">180</span><span class=\"p\" data-group-id=\"9948285176-7\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"9948285176-8\">{</span><span class=\"mi\">220</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">20</span><span class=\"p\" data-group-id=\"9948285176-8\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"9948285176-9\">{</span><span class=\"mi\">20</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">20</span><span class=\"p\" data-group-id=\"9948285176-9\">}</span><span class=\"p\" data-group-id=\"9948285176-4\">]</span><span class=\"p\" data-group-id=\"9948285176-3\">]</span><span class=\"p\" data-group-id=\"9948285176-2\">}</span><span class=\"p\">,</span><span class=\"w\">\n</span><span class=\"gp unselectable\">...&gt; </span><span class=\"w\">  </span><span class=\"p\" data-group-id=\"9948285176-10\">%{</span><span class=\"ss\">type</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"s\">&quot;Polygon&quot;</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"ss\">coordinates</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"9948285176-11\">[</span><span class=\"p\" data-group-id=\"9948285176-12\">[</span><span class=\"p\" data-group-id=\"9948285176-13\">{</span><span class=\"mi\">160</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">60</span><span class=\"p\" data-group-id=\"9948285176-13\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"9948285176-14\">{</span><span class=\"mi\">20</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">20</span><span class=\"p\" data-group-id=\"9948285176-14\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"9948285176-15\">{</span><span class=\"mi\">100</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">140</span><span class=\"p\" data-group-id=\"9948285176-15\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"9948285176-16\">{</span><span class=\"mi\">160</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">60</span><span class=\"p\" data-group-id=\"9948285176-16\">}</span><span class=\"p\" data-group-id=\"9948285176-12\">]</span><span class=\"p\" data-group-id=\"9948285176-11\">]</span><span class=\"p\" data-group-id=\"9948285176-10\">}</span><span class=\"w\">\n</span><span class=\"gp unselectable\">...&gt; </span><span class=\"p\" data-group-id=\"9948285176-1\">)</span><span class=\"w\">\n</span><span class=\"no\">true</span><span class=\"w\">\n\n</span><span class=\"gp unselectable\">iex&gt; </span><span class=\"nc\">Topo</span><span class=\"o\">.</span><span class=\"n\">contains?</span><span class=\"p\" data-group-id=\"9948285176-17\">(</span><span class=\"w\">\n</span><span class=\"gp unselectable\">...&gt; </span><span class=\"w\">  </span><span class=\"p\" data-group-id=\"9948285176-18\">%{</span><span class=\"ss\">type</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"s\">&quot;Polygon&quot;</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"ss\">coordinates</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"9948285176-19\">[</span><span class=\"p\" data-group-id=\"9948285176-20\">[</span><span class=\"p\" data-group-id=\"9948285176-21\">{</span><span class=\"mi\">160</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">60</span><span class=\"p\" data-group-id=\"9948285176-21\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"9948285176-22\">{</span><span class=\"mi\">20</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">20</span><span class=\"p\" data-group-id=\"9948285176-22\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"9948285176-23\">{</span><span class=\"mi\">100</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">140</span><span class=\"p\" data-group-id=\"9948285176-23\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"9948285176-24\">{</span><span class=\"mi\">160</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">60</span><span class=\"p\" data-group-id=\"9948285176-24\">}</span><span class=\"p\" data-group-id=\"9948285176-20\">]</span><span class=\"p\" data-group-id=\"9948285176-19\">]</span><span class=\"p\" data-group-id=\"9948285176-18\">}</span><span class=\"p\">,</span><span class=\"w\">\n</span><span class=\"gp unselectable\">...&gt; </span><span class=\"w\">  </span><span class=\"p\" data-group-id=\"9948285176-25\">%{</span><span class=\"ss\">type</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"s\">&quot;Polygon&quot;</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"ss\">coordinates</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"9948285176-26\">[</span><span class=\"p\" data-group-id=\"9948285176-27\">[</span><span class=\"p\" data-group-id=\"9948285176-28\">{</span><span class=\"mi\">20</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">20</span><span class=\"p\" data-group-id=\"9948285176-28\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"9948285176-29\">{</span><span class=\"mi\">20</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">180</span><span class=\"p\" data-group-id=\"9948285176-29\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"9948285176-30\">{</span><span class=\"mi\">220</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">180</span><span class=\"p\" data-group-id=\"9948285176-30\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"9948285176-31\">{</span><span class=\"mi\">220</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">20</span><span class=\"p\" data-group-id=\"9948285176-31\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"9948285176-32\">{</span><span class=\"mi\">20</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">20</span><span class=\"p\" data-group-id=\"9948285176-32\">}</span><span class=\"p\" data-group-id=\"9948285176-27\">]</span><span class=\"p\" data-group-id=\"9948285176-26\">]</span><span class=\"p\" data-group-id=\"9948285176-25\">}</span><span class=\"w\">\n</span><span class=\"gp unselectable\">...&gt; </span><span class=\"p\" data-group-id=\"9948285176-17\">)</span><span class=\"w\">\n</span><span class=\"no\">false</span></code></pre>\n  </section>\n</section>\n<section class=\"detail\" id=\"disjoint?/2\">\n\n  <div class=\"detail-header\">\n    <a href=\"#disjoint?/2\" class=\"detail-link\" data-no-tooltip title=\"Link to this function\">\n      <i class=\"ri-link-m\" aria-hidden=\"true\"></i>\n      <span class=\"sr-only\">Link to this function</span>\n    </a>\n    <h1 class=\"signature\" translate=\"no\">disjoint?(a, b)</h1>\n\n      <a href=\"https://github.com/pkinney/topo/blob/master/lib/topo.ex#L97\" class=\"icon-action\" rel=\"help\" title=\"View Source\">\n       <i class=\"ri-code-s-slash-line\" aria-hidden=\"true\"></i>\n       <span class=\"sr-only\">View Source</span>\n     </a>\n\n\n  </div>\n\n  <section class=\"docstring\">\n\n      <div class=\"specs\">\n\n          <pre translate=\"no\"><span class=\"attribute\">@spec</span> disjoint?(<a href=\"#t:geometry/0\">geometry</a>(), <a href=\"#t:geometry/0\">geometry</a>()) :: <a href=\"https://hexdocs.pm/elixir/typespecs.html#built-in-types\">boolean</a>()</pre>\n\n      </div>\n\n<p>Returns <code class=\"inline\">true</code> if geometries <strong>A</strong> and <strong>B</strong> do not have any points in\ncommon.</p><h2 id=\"disjoint?/2-examples\" class=\"section-heading\">\n  <a href=\"#disjoint?/2-examples\" class=\"hover-link\">\n    <i class=\"ri-link-m\" aria-hidden=\"true\"></i>\n  </a>\n  <span class=\"text\">Examples</span>\n</h2>\n<pre><code class=\"makeup elixir\" translate=\"no\"><span class=\"gp unselectable\">iex&gt; </span><span class=\"nc\">Topo</span><span class=\"o\">.</span><span class=\"n\">disjoint?</span><span class=\"p\" data-group-id=\"8828991343-1\">(</span><span class=\"p\" data-group-id=\"8828991343-2\">{</span><span class=\"mi\">1</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"o\">-</span><span class=\"mi\">3</span><span class=\"p\" data-group-id=\"8828991343-2\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"8828991343-3\">%{</span><span class=\"ss\">type</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"s\">&quot;MultiPoint&quot;</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"ss\">coordinates</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"8828991343-4\">[</span><span class=\"p\" data-group-id=\"8828991343-5\">{</span><span class=\"mi\">70</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">35</span><span class=\"p\" data-group-id=\"8828991343-5\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"8828991343-6\">{</span><span class=\"mi\">100</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">80</span><span class=\"p\" data-group-id=\"8828991343-6\">}</span><span class=\"p\" data-group-id=\"8828991343-4\">]</span><span class=\"p\" data-group-id=\"8828991343-3\">}</span><span class=\"p\" data-group-id=\"8828991343-1\">)</span><span class=\"w\">\n</span><span class=\"no\">true</span><span class=\"w\">\n\n</span><span class=\"gp unselectable\">iex&gt; </span><span class=\"nc\">Topo</span><span class=\"o\">.</span><span class=\"n\">disjoint?</span><span class=\"p\" data-group-id=\"8828991343-7\">(</span><span class=\"w\">\n</span><span class=\"gp unselectable\">...&gt; </span><span class=\"w\">  </span><span class=\"p\" data-group-id=\"8828991343-8\">%{</span><span class=\"ss\">type</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"s\">&quot;Polygon&quot;</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"ss\">coordinates</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"8828991343-9\">[</span><span class=\"w\">\n</span><span class=\"gp unselectable\">...&gt; </span><span class=\"w\">    </span><span class=\"p\" data-group-id=\"8828991343-10\">[</span><span class=\"p\" data-group-id=\"8828991343-11\">{</span><span class=\"mi\">60</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">120</span><span class=\"p\" data-group-id=\"8828991343-11\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"8828991343-12\">{</span><span class=\"mi\">60</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">40</span><span class=\"p\" data-group-id=\"8828991343-12\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"8828991343-13\">{</span><span class=\"mi\">160</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">40</span><span class=\"p\" data-group-id=\"8828991343-13\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"8828991343-14\">{</span><span class=\"mi\">160</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">120</span><span class=\"p\" data-group-id=\"8828991343-14\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"8828991343-15\">{</span><span class=\"mi\">60</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">120</span><span class=\"p\" data-group-id=\"8828991343-15\">}</span><span class=\"p\" data-group-id=\"8828991343-10\">]</span><span class=\"p\">,</span><span class=\"w\">\n</span><span class=\"gp unselectable\">...&gt; </span><span class=\"w\">    </span><span class=\"p\" data-group-id=\"8828991343-16\">[</span><span class=\"p\" data-group-id=\"8828991343-17\">{</span><span class=\"mi\">140</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">100</span><span class=\"p\" data-group-id=\"8828991343-17\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"8828991343-18\">{</span><span class=\"mi\">80</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">100</span><span class=\"p\" data-group-id=\"8828991343-18\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"8828991343-19\">{</span><span class=\"mi\">80</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">60</span><span class=\"p\" data-group-id=\"8828991343-19\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"8828991343-20\">{</span><span class=\"mi\">140</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">60</span><span class=\"p\" data-group-id=\"8828991343-20\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"8828991343-21\">{</span><span class=\"mi\">140</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">100</span><span class=\"p\" data-group-id=\"8828991343-21\">}</span><span class=\"p\" data-group-id=\"8828991343-16\">]</span><span class=\"p\" data-group-id=\"8828991343-9\">]</span><span class=\"p\" data-group-id=\"8828991343-8\">}</span><span class=\"p\">,</span><span class=\"w\">\n</span><span class=\"gp unselectable\">...&gt; </span><span class=\"w\">  </span><span class=\"p\" data-group-id=\"8828991343-22\">%</span><span class=\"nc\" data-group-id=\"8828991343-22\">Geo.MultiPoint</span><span class=\"p\" data-group-id=\"8828991343-22\">{</span><span class=\"ss\">coordinates</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"8828991343-23\">[</span><span class=\"p\" data-group-id=\"8828991343-24\">{</span><span class=\"mi\">70</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">35</span><span class=\"p\" data-group-id=\"8828991343-24\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"8828991343-25\">{</span><span class=\"mi\">100</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">80</span><span class=\"p\" data-group-id=\"8828991343-25\">}</span><span class=\"p\" data-group-id=\"8828991343-23\">]</span><span class=\"p\" data-group-id=\"8828991343-22\">}</span><span class=\"w\">\n</span><span class=\"gp unselectable\">...&gt; </span><span class=\"p\" data-group-id=\"8828991343-7\">)</span><span class=\"w\">\n</span><span class=\"no\">true</span></code></pre>\n  </section>\n</section>\n<section class=\"detail\" id=\"equals?/2\">\n\n  <div class=\"detail-header\">\n    <a href=\"#equals?/2\" class=\"detail-link\" data-no-tooltip title=\"Link to this function\">\n      <i class=\"ri-link-m\" aria-hidden=\"true\"></i>\n      <span class=\"sr-only\">Link to this function</span>\n    </a>\n    <h1 class=\"signature\" translate=\"no\">equals?(a, b)</h1>\n\n      <a href=\"https://github.com/pkinney/topo/blob/master/lib/topo.ex#L185\" class=\"icon-action\" rel=\"help\" title=\"View Source\">\n       <i class=\"ri-code-s-slash-line\" aria-hidden=\"true\"></i>\n       <span class=\"sr-only\">View Source</span>\n     </a>\n\n\n  </div>\n\n  <section class=\"docstring\">\n\n      <div class=\"specs\">\n\n          <pre translate=\"no\"><span class=\"attribute\">@spec</span> equals?(<a href=\"#t:geometry/0\">geometry</a>(), <a href=\"#t:geometry/0\">geometry</a>()) :: <a href=\"https://hexdocs.pm/elixir/typespecs.html#built-in-types\">boolean</a>()</pre>\n\n      </div>\n\n<p>Geometries <strong>A</strong> and <strong>B</strong> are equivalent and cover the exact\nsame set of points.  By definition, <strong>A</strong> and <strong>B</strong> are equal if <strong>A</strong> contains\n<strong>B</strong> and <strong>B</strong> contains <strong>A</strong>.  Equality does not necessarily mean that the\ngeometries are of the same type.  A Point <strong>A</strong> is equal to a MultiPoint that\ncontains only the same Point <strong>A</strong>.</p><h2 id=\"equals?/2-examples\" class=\"section-heading\">\n  <a href=\"#equals?/2-examples\" class=\"hover-link\">\n    <i class=\"ri-link-m\" aria-hidden=\"true\"></i>\n  </a>\n  <span class=\"text\">Examples</span>\n</h2>\n<pre><code class=\"makeup elixir\" translate=\"no\"><span class=\"gp unselectable\">iex&gt; </span><span class=\"nc\">Topo</span><span class=\"o\">.</span><span class=\"n\">equals?</span><span class=\"p\" data-group-id=\"4056927767-1\">(</span><span class=\"w\">\n</span><span class=\"gp unselectable\">...&gt; </span><span class=\"w\">  </span><span class=\"p\" data-group-id=\"4056927767-2\">%{</span><span class=\"ss\">type</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"s\">&quot;Point&quot;</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"ss\">coordinates</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"4056927767-3\">{</span><span class=\"mi\">2</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"o\">-</span><span class=\"mi\">3</span><span class=\"p\" data-group-id=\"4056927767-3\">}</span><span class=\"p\" data-group-id=\"4056927767-2\">}</span><span class=\"p\">,</span><span class=\"w\">\n</span><span class=\"gp unselectable\">...&gt; </span><span class=\"w\">  </span><span class=\"p\" data-group-id=\"4056927767-4\">%{</span><span class=\"ss\">type</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"s\">&quot;MultiPoint&quot;</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"ss\">coordinates</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"4056927767-5\">[</span><span class=\"p\" data-group-id=\"4056927767-6\">{</span><span class=\"mi\">2</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"o\">-</span><span class=\"mi\">3</span><span class=\"p\" data-group-id=\"4056927767-6\">}</span><span class=\"p\" data-group-id=\"4056927767-5\">]</span><span class=\"p\" data-group-id=\"4056927767-4\">}</span><span class=\"w\">\n</span><span class=\"gp unselectable\">...&gt; </span><span class=\"p\" data-group-id=\"4056927767-1\">)</span><span class=\"w\">\n</span><span class=\"no\">true</span><span class=\"w\">\n\n</span><span class=\"gp unselectable\">iex&gt; </span><span class=\"nc\">Topo</span><span class=\"o\">.</span><span class=\"n\">equals?</span><span class=\"p\" data-group-id=\"4056927767-7\">(</span><span class=\"w\">\n</span><span class=\"gp unselectable\">...&gt; </span><span class=\"w\">  </span><span class=\"p\" data-group-id=\"4056927767-8\">%{</span><span class=\"ss\">type</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"s\">&quot;Polygon&quot;</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"ss\">coordinates</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"4056927767-9\">[</span><span class=\"p\" data-group-id=\"4056927767-10\">[</span><span class=\"p\" data-group-id=\"4056927767-11\">{</span><span class=\"mi\">160</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">60</span><span class=\"p\" data-group-id=\"4056927767-11\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"4056927767-12\">{</span><span class=\"mi\">20</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">20</span><span class=\"p\" data-group-id=\"4056927767-12\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"4056927767-13\">{</span><span class=\"mi\">100</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">140</span><span class=\"p\" data-group-id=\"4056927767-13\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"4056927767-14\">{</span><span class=\"mi\">160</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">60</span><span class=\"p\" data-group-id=\"4056927767-14\">}</span><span class=\"p\" data-group-id=\"4056927767-10\">]</span><span class=\"p\" data-group-id=\"4056927767-9\">]</span><span class=\"p\" data-group-id=\"4056927767-8\">}</span><span class=\"p\">,</span><span class=\"w\">\n</span><span class=\"gp unselectable\">...&gt; </span><span class=\"w\">  </span><span class=\"p\" data-group-id=\"4056927767-15\">%{</span><span class=\"ss\">type</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"s\">&quot;Polygon&quot;</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"ss\">coordinates</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"4056927767-16\">[</span><span class=\"p\" data-group-id=\"4056927767-17\">[</span><span class=\"p\" data-group-id=\"4056927767-18\">{</span><span class=\"mi\">20</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">20</span><span class=\"p\" data-group-id=\"4056927767-18\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"4056927767-19\">{</span><span class=\"mi\">20</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">180</span><span class=\"p\" data-group-id=\"4056927767-19\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"4056927767-20\">{</span><span class=\"mi\">220</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">180</span><span class=\"p\" data-group-id=\"4056927767-20\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"4056927767-21\">{</span><span class=\"mi\">220</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">20</span><span class=\"p\" data-group-id=\"4056927767-21\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"4056927767-22\">{</span><span class=\"mi\">20</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">20</span><span class=\"p\" data-group-id=\"4056927767-22\">}</span><span class=\"p\" data-group-id=\"4056927767-17\">]</span><span class=\"p\" data-group-id=\"4056927767-16\">]</span><span class=\"p\" data-group-id=\"4056927767-15\">}</span><span class=\"w\">\n</span><span class=\"gp unselectable\">...&gt; </span><span class=\"p\" data-group-id=\"4056927767-7\">)</span><span class=\"w\">\n</span><span class=\"no\">false</span></code></pre>\n  </section>\n</section>\n<section class=\"detail\" id=\"intersects?/2\">\n\n  <div class=\"detail-header\">\n    <a href=\"#intersects?/2\" class=\"detail-link\" data-no-tooltip title=\"Link to this function\">\n      <i class=\"ri-link-m\" aria-hidden=\"true\"></i>\n      <span class=\"sr-only\">Link to this function</span>\n    </a>\n    <h1 class=\"signature\" translate=\"no\">intersects?(a, b)</h1>\n\n      <a href=\"https://github.com/pkinney/topo/blob/master/lib/topo.ex#L78\" class=\"icon-action\" rel=\"help\" title=\"View Source\">\n       <i class=\"ri-code-s-slash-line\" aria-hidden=\"true\"></i>\n       <span class=\"sr-only\">View Source</span>\n     </a>\n\n\n  </div>\n\n  <section class=\"docstring\">\n\n      <div class=\"specs\">\n\n          <pre translate=\"no\"><span class=\"attribute\">@spec</span> intersects?(<a href=\"#t:geometry/0\">geometry</a>(), <a href=\"#t:geometry/0\">geometry</a>()) :: <a href=\"https://hexdocs.pm/elixir/typespecs.html#built-in-types\">boolean</a>()</pre>\n\n      </div>\n\n<p>Returns <code class=\"inline\">true</code> if geometries <strong>A</strong> and <strong>B</strong> share at least one point in\ncommon.</p><h2 id=\"intersects?/2-examples\" class=\"section-heading\">\n  <a href=\"#intersects?/2-examples\" class=\"hover-link\">\n    <i class=\"ri-link-m\" aria-hidden=\"true\"></i>\n  </a>\n  <span class=\"text\">Examples</span>\n</h2>\n<pre><code class=\"makeup elixir\" translate=\"no\"><span class=\"gp unselectable\">iex&gt; </span><span class=\"nc\">Topo</span><span class=\"o\">.</span><span class=\"n\">intersects?</span><span class=\"p\" data-group-id=\"4364422745-1\">(</span><span class=\"w\">\n</span><span class=\"gp unselectable\">...&gt; </span><span class=\"w\">  </span><span class=\"p\" data-group-id=\"4364422745-2\">%{</span><span class=\"ss\">type</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"s\">&quot;Polygon&quot;</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"ss\">coordinates</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"4364422745-3\">[</span><span class=\"p\" data-group-id=\"4364422745-4\">[</span><span class=\"p\" data-group-id=\"4364422745-5\">{</span><span class=\"mi\">2</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">2</span><span class=\"p\" data-group-id=\"4364422745-5\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"4364422745-6\">{</span><span class=\"mi\">20</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">2</span><span class=\"p\" data-group-id=\"4364422745-6\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"4364422745-7\">{</span><span class=\"mi\">11</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">11</span><span class=\"p\" data-group-id=\"4364422745-7\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"4364422745-8\">{</span><span class=\"mi\">2</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">2</span><span class=\"p\" data-group-id=\"4364422745-8\">}</span><span class=\"p\" data-group-id=\"4364422745-4\">]</span><span class=\"p\" data-group-id=\"4364422745-3\">]</span><span class=\"p\" data-group-id=\"4364422745-2\">}</span><span class=\"p\">,</span><span class=\"w\">\n</span><span class=\"gp unselectable\">...&gt; </span><span class=\"w\">  </span><span class=\"p\" data-group-id=\"4364422745-9\">%{</span><span class=\"ss\">type</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"s\">&quot;LineString&quot;</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"ss\">coordinates</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"4364422745-10\">[</span><span class=\"p\" data-group-id=\"4364422745-11\">{</span><span class=\"mi\">11</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">10</span><span class=\"p\" data-group-id=\"4364422745-11\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"4364422745-12\">{</span><span class=\"mi\">4</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mf\">2.5</span><span class=\"p\" data-group-id=\"4364422745-12\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"4364422745-13\">{</span><span class=\"mi\">16</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mf\">2.5</span><span class=\"p\" data-group-id=\"4364422745-13\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"4364422745-14\">{</span><span class=\"mi\">11</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">10</span><span class=\"p\" data-group-id=\"4364422745-14\">}</span><span class=\"p\" data-group-id=\"4364422745-10\">]</span><span class=\"p\" data-group-id=\"4364422745-9\">}</span><span class=\"w\">\n</span><span class=\"gp unselectable\">...&gt; </span><span class=\"p\" data-group-id=\"4364422745-1\">)</span><span class=\"w\">\n</span><span class=\"no\">true</span><span class=\"w\">\n\n</span><span class=\"gp unselectable\">iex&gt; </span><span class=\"nc\">Topo</span><span class=\"o\">.</span><span class=\"n\">intersects?</span><span class=\"p\" data-group-id=\"4364422745-15\">(</span><span class=\"w\">\n</span><span class=\"gp unselectable\">...&gt; </span><span class=\"w\">  </span><span class=\"p\" data-group-id=\"4364422745-16\">%{</span><span class=\"ss\">type</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"s\">&quot;Polygon&quot;</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"ss\">coordinates</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"4364422745-17\">[</span><span class=\"w\">\n</span><span class=\"gp unselectable\">...&gt; </span><span class=\"w\">    </span><span class=\"p\" data-group-id=\"4364422745-18\">[</span><span class=\"p\" data-group-id=\"4364422745-19\">{</span><span class=\"mi\">60</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">120</span><span class=\"p\" data-group-id=\"4364422745-19\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"4364422745-20\">{</span><span class=\"mi\">60</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">40</span><span class=\"p\" data-group-id=\"4364422745-20\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"4364422745-21\">{</span><span class=\"mi\">160</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">40</span><span class=\"p\" data-group-id=\"4364422745-21\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"4364422745-22\">{</span><span class=\"mi\">160</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">120</span><span class=\"p\" data-group-id=\"4364422745-22\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"4364422745-23\">{</span><span class=\"mi\">60</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">120</span><span class=\"p\" data-group-id=\"4364422745-23\">}</span><span class=\"p\" data-group-id=\"4364422745-18\">]</span><span class=\"p\">,</span><span class=\"w\">\n</span><span class=\"gp unselectable\">...&gt; </span><span class=\"w\">    </span><span class=\"p\" data-group-id=\"4364422745-24\">[</span><span class=\"p\" data-group-id=\"4364422745-25\">{</span><span class=\"mi\">140</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">100</span><span class=\"p\" data-group-id=\"4364422745-25\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"4364422745-26\">{</span><span class=\"mi\">80</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">100</span><span class=\"p\" data-group-id=\"4364422745-26\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"4364422745-27\">{</span><span class=\"mi\">80</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">60</span><span class=\"p\" data-group-id=\"4364422745-27\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"4364422745-28\">{</span><span class=\"mi\">140</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">60</span><span class=\"p\" data-group-id=\"4364422745-28\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"4364422745-29\">{</span><span class=\"mi\">140</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">100</span><span class=\"p\" data-group-id=\"4364422745-29\">}</span><span class=\"p\" data-group-id=\"4364422745-24\">]</span><span class=\"p\" data-group-id=\"4364422745-17\">]</span><span class=\"p\" data-group-id=\"4364422745-16\">}</span><span class=\"p\">,</span><span class=\"w\">\n</span><span class=\"gp unselectable\">...&gt; </span><span class=\"w\">  </span><span class=\"p\" data-group-id=\"4364422745-30\">%{</span><span class=\"ss\">type</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"s\">&quot;MultiPoint&quot;</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"ss\">coordinates</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"4364422745-31\">[</span><span class=\"p\" data-group-id=\"4364422745-32\">{</span><span class=\"mi\">70</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">35</span><span class=\"p\" data-group-id=\"4364422745-32\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"4364422745-33\">{</span><span class=\"mi\">100</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">80</span><span class=\"p\" data-group-id=\"4364422745-33\">}</span><span class=\"p\" data-group-id=\"4364422745-31\">]</span><span class=\"p\" data-group-id=\"4364422745-30\">}</span><span class=\"w\">\n</span><span class=\"gp unselectable\">...&gt; </span><span class=\"p\" data-group-id=\"4364422745-15\">)</span><span class=\"w\">\n</span><span class=\"no\">false</span></code></pre>\n  </section>\n</section>\n<section class=\"detail\" id=\"within?/2\">\n\n  <div class=\"detail-header\">\n    <a href=\"#within?/2\" class=\"detail-link\" data-no-tooltip title=\"Link to this function\">\n      <i class=\"ri-link-m\" aria-hidden=\"true\"></i>\n      <span class=\"sr-only\">Link to this function</span>\n    </a>\n    <h1 class=\"signature\" translate=\"no\">within?(a, b)</h1>\n\n      <a href=\"https://github.com/pkinney/topo/blob/master/lib/topo.ex#L162\" class=\"icon-action\" rel=\"help\" title=\"View Source\">\n       <i class=\"ri-code-s-slash-line\" aria-hidden=\"true\"></i>\n       <span class=\"sr-only\">View Source</span>\n     </a>\n\n\n  </div>\n\n  <section class=\"docstring\">\n\n      <div class=\"specs\">\n\n          <pre translate=\"no\"><span class=\"attribute\">@spec</span> within?(<a href=\"#t:geometry/0\">geometry</a>(), <a href=\"#t:geometry/0\">geometry</a>()) :: <a href=\"https://hexdocs.pm/elixir/typespecs.html#built-in-types\">boolean</a>()</pre>\n\n      </div>\n\n<p>This is the direct converse of <code class=\"inline\">contains?</code>.  All points of\ngeometry <strong>A</strong> lie within geometry <strong>B</strong>.</p><h2 id=\"within?/2-examples\" class=\"section-heading\">\n  <a href=\"#within?/2-examples\" class=\"hover-link\">\n    <i class=\"ri-link-m\" aria-hidden=\"true\"></i>\n  </a>\n  <span class=\"text\">Examples</span>\n</h2>\n<pre><code class=\"makeup elixir\" translate=\"no\"><span class=\"gp unselectable\">iex&gt; </span><span class=\"nc\">Topo</span><span class=\"o\">.</span><span class=\"n\">within?</span><span class=\"p\" data-group-id=\"1262263480-1\">(</span><span class=\"w\">\n</span><span class=\"gp unselectable\">...&gt; </span><span class=\"w\">  </span><span class=\"p\" data-group-id=\"1262263480-2\">%{</span><span class=\"ss\">type</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"s\">&quot;Polygon&quot;</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"ss\">coordinates</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"1262263480-3\">[</span><span class=\"p\" data-group-id=\"1262263480-4\">[</span><span class=\"p\" data-group-id=\"1262263480-5\">{</span><span class=\"mi\">20</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">20</span><span class=\"p\" data-group-id=\"1262263480-5\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"1262263480-6\">{</span><span class=\"mi\">20</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">180</span><span class=\"p\" data-group-id=\"1262263480-6\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"1262263480-7\">{</span><span class=\"mi\">220</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">180</span><span class=\"p\" data-group-id=\"1262263480-7\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"1262263480-8\">{</span><span class=\"mi\">220</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">20</span><span class=\"p\" data-group-id=\"1262263480-8\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"1262263480-9\">{</span><span class=\"mi\">20</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">20</span><span class=\"p\" data-group-id=\"1262263480-9\">}</span><span class=\"p\" data-group-id=\"1262263480-4\">]</span><span class=\"p\" data-group-id=\"1262263480-3\">]</span><span class=\"p\" data-group-id=\"1262263480-2\">}</span><span class=\"p\">,</span><span class=\"w\">\n</span><span class=\"gp unselectable\">...&gt; </span><span class=\"w\">  </span><span class=\"p\" data-group-id=\"1262263480-10\">%{</span><span class=\"ss\">type</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"s\">&quot;Polygon&quot;</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"ss\">coordinates</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"1262263480-11\">[</span><span class=\"p\" data-group-id=\"1262263480-12\">[</span><span class=\"p\" data-group-id=\"1262263480-13\">{</span><span class=\"mi\">160</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">60</span><span class=\"p\" data-group-id=\"1262263480-13\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"1262263480-14\">{</span><span class=\"mi\">20</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">20</span><span class=\"p\" data-group-id=\"1262263480-14\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"1262263480-15\">{</span><span class=\"mi\">100</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">140</span><span class=\"p\" data-group-id=\"1262263480-15\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"1262263480-16\">{</span><span class=\"mi\">160</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">60</span><span class=\"p\" data-group-id=\"1262263480-16\">}</span><span class=\"p\" data-group-id=\"1262263480-12\">]</span><span class=\"p\" data-group-id=\"1262263480-11\">]</span><span class=\"p\" data-group-id=\"1262263480-10\">}</span><span class=\"w\">\n</span><span class=\"gp unselectable\">...&gt; </span><span class=\"p\" data-group-id=\"1262263480-1\">)</span><span class=\"w\">\n</span><span class=\"no\">false</span><span class=\"w\">\n\n</span><span class=\"gp unselectable\">iex&gt; </span><span class=\"nc\">Topo</span><span class=\"o\">.</span><span class=\"n\">within?</span><span class=\"p\" data-group-id=\"1262263480-17\">(</span><span class=\"w\">\n</span><span class=\"gp unselectable\">...&gt; </span><span class=\"w\">  </span><span class=\"p\" data-group-id=\"1262263480-18\">%{</span><span class=\"ss\">type</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"s\">&quot;Polygon&quot;</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"ss\">coordinates</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"1262263480-19\">[</span><span class=\"p\" data-group-id=\"1262263480-20\">[</span><span class=\"p\" data-group-id=\"1262263480-21\">{</span><span class=\"mi\">160</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">60</span><span class=\"p\" data-group-id=\"1262263480-21\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"1262263480-22\">{</span><span class=\"mi\">20</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">20</span><span class=\"p\" data-group-id=\"1262263480-22\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"1262263480-23\">{</span><span class=\"mi\">100</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">140</span><span class=\"p\" data-group-id=\"1262263480-23\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"1262263480-24\">{</span><span class=\"mi\">160</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">60</span><span class=\"p\" data-group-id=\"1262263480-24\">}</span><span class=\"p\" data-group-id=\"1262263480-20\">]</span><span class=\"p\" data-group-id=\"1262263480-19\">]</span><span class=\"p\" data-group-id=\"1262263480-18\">}</span><span class=\"p\">,</span><span class=\"w\">\n</span><span class=\"gp unselectable\">...&gt; </span><span class=\"w\">  </span><span class=\"p\" data-group-id=\"1262263480-25\">%{</span><span class=\"ss\">type</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"s\">&quot;Polygon&quot;</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"ss\">coordinates</span><span class=\"p\">:</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"1262263480-26\">[</span><span class=\"p\" data-group-id=\"1262263480-27\">[</span><span class=\"p\" data-group-id=\"1262263480-28\">{</span><span class=\"mi\">20</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">20</span><span class=\"p\" data-group-id=\"1262263480-28\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"1262263480-29\">{</span><span class=\"mi\">20</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">180</span><span class=\"p\" data-group-id=\"1262263480-29\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"1262263480-30\">{</span><span class=\"mi\">220</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">180</span><span class=\"p\" data-group-id=\"1262263480-30\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"1262263480-31\">{</span><span class=\"mi\">220</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">20</span><span class=\"p\" data-group-id=\"1262263480-31\">}</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"p\" data-group-id=\"1262263480-32\">{</span><span class=\"mi\">20</span><span class=\"p\">,</span><span class=\"w\"> </span><span class=\"mi\">20</span><span class=\"p\" data-group-id=\"1262263480-32\">}</span><span class=\"p\" data-group-id=\"1262263480-27\">]</span><span class=\"p\" data-group-id=\"1262263480-26\">]</span><span class=\"p\" data-group-id=\"1262263480-25\">}</span><span class=\"w\">\n</span><span class=\"gp unselectable\">...&gt; </span><span class=\"p\" data-group-id=\"1262263480-17\">)</span><span class=\"w\">\n</span><span class=\"no\">true</span></code></pre>\n  </section>\n</section>\n\n    </div>\n  </section>\n\n    <footer class=\"footer\">\n      <p>\n\n          <span class=\"line\">\n            <a href=\"https://hex.pm/packages/topo/1.0.3\" class=\"footer-hex-package\">Hex Package</a>\n\n            <a href=\"https://preview.hex.pm/preview/topo/1.0.3\">Hex Preview</a>\n\n          </span>\n\n        <span class=\"line\">\n          <button class=\"a-main footer-button display-quick-switch\" title=\"Search HexDocs packages\">\n            Search HexDocs\n          </button>\n\n            <a href=\"Topo.epub\" title=\"ePub version\">\n              Download ePub version\n            </a>\n\n        </span>\n      </p>\n\n      <p class=\"built-using\">\n        Built using\n        <a href=\"https://github.com/elixir-lang/ex_doc\" title=\"ExDoc\" target=\"_blank\" rel=\"help noopener\" translate=\"no\">ExDoc</a> (v0.32.2) for the\n\n          <a href=\"https://elixir-lang.org\" title=\"Elixir\" target=\"_blank\" translate=\"no\">Elixir programming language</a>\n\n      </p>\n\n    </footer>\n  </div>\n</main>\n</div>\n\n\n  </body>\n</html>\n"
  },
  {
    "path": "doc/api-reference.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n  <head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"x-ua-compatible\" content=\"ie=edge\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <meta name=\"generator\" content=\"ExDoc v0.32.2\">\n    <meta name=\"project\" content=\"Topo v1.0.3\">\n\n\n    <title>API Reference — Topo v1.0.3</title>\n    <link rel=\"stylesheet\" href=\"dist/html-elixir-CDEHVNM4.css\" />\n\n\n    <script src=\"dist/handlebars.runtime-NWIB6V2M.js\"></script>\n    <script src=\"dist/handlebars.templates-K7URE6B4.js\"></script>\n    <script src=\"dist/sidebar_items-E095BA35.js\"></script>\n    <script src=\"docs_config.js\"></script>\n    <script async src=\"dist/html-BHYOTRCH.js\"></script>\n\n\n  </head>\n  <body data-type=\"extras\" class=\"page-extra\">\n    <script>\n\n      try {\n        var settings = JSON.parse(localStorage.getItem('ex_doc:settings') || '{}');\n\n        if (settings.theme === 'dark' ||\n           ((settings.theme === 'system' || settings.theme == null) &&\n             window.matchMedia('(prefers-color-scheme: dark)').matches)\n           ) {\n          document.body.classList.add('dark')\n        }\n      } catch (error) { }\n    </script>\n\n<div class=\"body-wrapper\">\n\n<button id=\"sidebar-menu\" class=\"sidebar-button sidebar-toggle\" aria-label=\"toggle sidebar\" aria-controls=\"sidebar\">\n  <i class=\"ri-menu-line ri-lg\" title=\"Collapse/expand sidebar\"></i>\n</button>\n\n<nav id=\"sidebar\" class=\"sidebar\">\n\n  <div class=\"sidebar-header\">\n    <div class=\"sidebar-projectInfo\">\n\n      <div>\n        <a href=\"Topo.html\" class=\"sidebar-projectName\" translate=\"no\">\nTopo\n        </a>\n        <div class=\"sidebar-projectVersion\" translate=\"no\">\n          v1.0.3\n        </div>\n      </div>\n    </div>\n    <ul id=\"sidebar-listNav\" class=\"sidebar-listNav\" role=\"tablist\">\n      <li>\n        <button id=\"extras-list-tab-button\" role=\"tab\" data-type=\"extras\" aria-controls=\"extras-tab-panel\" aria-selected=\"true\" tabindex=\"0\">\nPages\n        </button>\n      </li>\n\n        <li>\n          <button id=\"modules-list-tab-button\" role=\"tab\" data-type=\"modules\" aria-controls=\"modules-tab-panel\" aria-selected=\"false\" tabindex=\"-1\">\n            Modules\n          </button>\n        </li>\n\n\n    </ul>\n  </div>\n\n  <div id=\"extras-tab-panel\" class=\"sidebar-tabpanel\" role=\"tabpanel\" aria-labelledby=\"extras-list-tab-button\">\n    <ul id=\"extras-full-list\" class=\"full-list\"></ul>\n  </div>\n\n    <div id=\"modules-tab-panel\" class=\"sidebar-tabpanel\" role=\"tabpanel\" aria-labelledby=\"modules-list-tab-button\" hidden>\n      <ul id=\"modules-full-list\" class=\"full-list\"></ul>\n    </div>\n\n\n</nav>\n\n<main class=\"content\">\n  <output role=\"status\" id=\"toast\"></output>\n\n  <div id=\"content\" class=\"content-inner\">\n    <div class=\"top-search\">\n      <div class=\"search-settings\">\n        <form class=\"search-bar\" action=\"search.html\">\n          <label class=\"search-label\">\n            <span class=\"sr-only\">Search documentation of Topo</span>\n            <input name=\"q\" type=\"text\" class=\"search-input\" placeholder=\"Press / to search\" autocomplete=\"off\" autocorrect=\"off\" autocapitalize=\"off\" spellcheck=\"false\" />\n          </label>\n          <button type=\"submit\" class=\"search-button\" aria-label=\"Submit Search\">\n            <i class=\"ri-search-2-line ri-lg\" aria-hidden=\"true\" title=\"Submit search\"></i>\n          </button>\n          <button type=\"button\" tabindex=\"-1\" class=\"search-close-button\" aria-hidden=\"true\">\n            <i class=\"ri-close-line ri-lg\" title=\"Cancel search\"></i>\n          </button>\n        </form>\n        <div class=\"autocomplete\">\n        </div>\n        <button class=\"icon-settings display-settings\">\n          <i class=\"ri-settings-3-line\"></i>\n          <span class=\"sr-only\">Settings</span>\n        </button>\n      </div>\n    </div>\n\n<div id=\"top-content\">\n  <h1>\n\n      <a href=\"https://github.com/pkinney/topo\" title=\"View Source\" class=\"icon-action\" rel=\"help\">\n        <i class=\"ri-code-s-slash-line\" aria-hidden=\"true\"></i>\n        <span class=\"sr-only\">View Source</span>\n      </a>\n\n\n    <span>API Reference <small class=\"app-vsn\">Topo v1.0.3</small></span>\n  </h1>\n\n\n  <section class=\"details-list\">\n    <h2 id=\"modules\" class=\"section-heading\">\n  <a href=\"#modules\" class=\"hover-link\">\n    <i class=\"ri-link-m\" aria-hidden=\"true\"></i>\n  </a>\n  <span class=\"text\">Modules</span>\n</h2>\n\n    <div class=\"summary\">\n<div class=\"summary-row\">\n  <div class=\"summary-signature\">\n    <a href=\"Topo.html\" translate=\"no\">Topo</a>\n\n  </div>\n\n    <div class=\"summary-synopsis\"><p>A Geometry library for Elixir that calculates relationships between two\ngeometries.  Geometries can be of any of the following types</p></div>\n\n</div>\n\n    </div>\n  </section>\n\n\n</div>\n\n<div class=\"bottom-actions\" id=\"bottom-actions\">\n  <div class=\"bottom-actions-item\">\n\n  </div>\n  <div class=\"bottom-actions-item\">\n\n  </div>\n</div>\n    <footer class=\"footer\">\n      <p>\n\n          <span class=\"line\">\n            <a href=\"https://hex.pm/packages/topo/1.0.3\" class=\"footer-hex-package\">Hex Package</a>\n\n            <a href=\"https://preview.hex.pm/preview/topo/1.0.3\">Hex Preview</a>\n\n          </span>\n\n        <span class=\"line\">\n          <button class=\"a-main footer-button display-quick-switch\" title=\"Search HexDocs packages\">\n            Search HexDocs\n          </button>\n\n            <a href=\"Topo.epub\" title=\"ePub version\">\n              Download ePub version\n            </a>\n\n        </span>\n      </p>\n\n      <p class=\"built-using\">\n        Built using\n        <a href=\"https://github.com/elixir-lang/ex_doc\" title=\"ExDoc\" target=\"_blank\" rel=\"help noopener\" translate=\"no\">ExDoc</a> (v0.32.2) for the\n\n          <a href=\"https://elixir-lang.org\" title=\"Elixir\" target=\"_blank\" translate=\"no\">Elixir programming language</a>\n\n      </p>\n\n    </footer>\n  </div>\n</main>\n</div>\n\n\n  </body>\n</html>\n"
  },
  {
    "path": "doc/dist/handlebars.runtime-NWIB6V2M.js",
    "content": "/**!\n\n @license\n handlebars v4.7.7\n\nCopyright (C) 2011-2019 by Yehuda Katz\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n*/(function(r,e){typeof exports==\"object\"&&typeof module==\"object\"?module.exports=e():typeof define==\"function\"&&define.amd?define([],e):typeof exports==\"object\"?exports.Handlebars=e():r.Handlebars=e()})(this,function(){return function(u){var r={};function e(n){if(r[n])return r[n].exports;var t=r[n]={exports:{},id:n,loaded:!1};return u[n].call(t.exports,t,t.exports,e),t.loaded=!0,t.exports}return e.m=u,e.c=r,e.p=\"\",e(0)}([function(u,r,e){\"use strict\";var n=e(1).default,t=e(2).default;r.__esModule=!0;var f=e(3),a=n(f),i=e(36),l=t(i),h=e(5),v=t(h),P=e(4),H=n(P),C=e(37),E=n(C),I=e(43),o=t(I);function g(){var y=new a.HandlebarsEnvironment;return H.extend(y,a),y.SafeString=l.default,y.Exception=v.default,y.Utils=H,y.escapeExpression=H.escapeExpression,y.VM=E,y.template=function(p){return E.template(p,y)},y}var w=g();w.create=g,o.default(w),w.default=w,r.default=w,u.exports=r.default},function(u,r){\"use strict\";r.default=function(e){if(e&&e.__esModule)return e;var n={};if(e!=null)for(var t in e)Object.prototype.hasOwnProperty.call(e,t)&&(n[t]=e[t]);return n.default=e,n},r.__esModule=!0},function(u,r){\"use strict\";r.default=function(e){return e&&e.__esModule?e:{default:e}},r.__esModule=!0},function(u,r,e){\"use strict\";var n=e(2).default;r.__esModule=!0,r.HandlebarsEnvironment=g;var t=e(4),f=e(5),a=n(f),i=e(9),l=e(29),h=e(31),v=n(h),P=e(32),H=\"4.7.7\";r.VERSION=H;var C=8;r.COMPILER_REVISION=C;var E=7;r.LAST_COMPATIBLE_COMPILER_REVISION=E;var I={1:\"<= 1.0.rc.2\",2:\"== 1.0.0-rc.3\",3:\"== 1.0.0-rc.4\",4:\"== 1.x.x\",5:\"== 2.0.0-alpha.x\",6:\">= 2.0.0-beta.1\",7:\">= 4.0.0 <4.3.0\",8:\">= 4.3.0\"};r.REVISION_CHANGES=I;var o=\"[object Object]\";function g(y,p,R){this.helpers=y||{},this.partials=p||{},this.decorators=R||{},i.registerDefaultHelpers(this),l.registerDefaultDecorators(this)}g.prototype={constructor:g,logger:v.default,log:v.default.log,registerHelper:function(p,R){if(t.toString.call(p)===o){if(R)throw new a.default(\"Arg not supported with multiple helpers\");t.extend(this.helpers,p)}else this.helpers[p]=R},unregisterHelper:function(p){delete this.helpers[p]},registerPartial:function(p,R){if(t.toString.call(p)===o)t.extend(this.partials,p);else{if(typeof R>\"u\")throw new a.default('Attempting to register a partial called \"'+p+'\" as undefined');this.partials[p]=R}},unregisterPartial:function(p){delete this.partials[p]},registerDecorator:function(p,R){if(t.toString.call(p)===o){if(R)throw new a.default(\"Arg not supported with multiple decorators\");t.extend(this.decorators,p)}else this.decorators[p]=R},unregisterDecorator:function(p){delete this.decorators[p]},resetLoggedPropertyAccesses:function(){P.resetLoggedProperties()}};var w=v.default.log;r.log=w,r.createFrame=t.createFrame,r.logger=v.default},function(u,r){\"use strict\";r.__esModule=!0,r.extend=a,r.indexOf=v,r.escapeExpression=P,r.isEmpty=H,r.createFrame=C,r.blockParams=E,r.appendContextPath=I;var e={\"&\":\"&amp;\",\"<\":\"&lt;\",\">\":\"&gt;\",'\"':\"&quot;\",\"'\":\"&#x27;\",\"`\":\"&#x60;\",\"=\":\"&#x3D;\"},n=/[&<>\"'`=]/g,t=/[&<>\"'`=]/;function f(o){return e[o]}function a(o){for(var g=1;g<arguments.length;g++)for(var w in arguments[g])Object.prototype.hasOwnProperty.call(arguments[g],w)&&(o[w]=arguments[g][w]);return o}var i=Object.prototype.toString;r.toString=i;var l=function(g){return typeof g==\"function\"};l(/x/)&&(r.isFunction=l=function(o){return typeof o==\"function\"&&i.call(o)===\"[object Function]\"}),r.isFunction=l;var h=Array.isArray||function(o){return o&&typeof o==\"object\"?i.call(o)===\"[object Array]\":!1};r.isArray=h;function v(o,g){for(var w=0,y=o.length;w<y;w++)if(o[w]===g)return w;return-1}function P(o){if(typeof o!=\"string\"){if(o&&o.toHTML)return o.toHTML();if(o==null)return\"\";if(!o)return o+\"\";o=\"\"+o}return t.test(o)?o.replace(n,f):o}function H(o){return!o&&o!==0?!0:!!(h(o)&&o.length===0)}function C(o){var g=a({},o);return g._parent=o,g}function E(o,g){return o.path=g,o}function I(o,g){return(o?o+\".\":\"\")+g}},function(u,r,e){\"use strict\";var n=e(6).default;r.__esModule=!0;var t=[\"description\",\"fileName\",\"lineNumber\",\"endLineNumber\",\"message\",\"name\",\"number\",\"stack\"];function f(a,i){var l=i&&i.loc,h=void 0,v=void 0,P=void 0,H=void 0;l&&(h=l.start.line,v=l.end.line,P=l.start.column,H=l.end.column,a+=\" - \"+h+\":\"+P);for(var C=Error.prototype.constructor.call(this,a),E=0;E<t.length;E++)this[t[E]]=C[t[E]];Error.captureStackTrace&&Error.captureStackTrace(this,f);try{l&&(this.lineNumber=h,this.endLineNumber=v,n?(Object.defineProperty(this,\"column\",{value:P,enumerable:!0}),Object.defineProperty(this,\"endColumn\",{value:H,enumerable:!0})):(this.column=P,this.endColumn=H))}catch{}}f.prototype=new Error,r.default=f,u.exports=r.default},function(u,r,e){u.exports={default:e(7),__esModule:!0}},function(u,r,e){var n=e(8);u.exports=function(f,a,i){return n.setDesc(f,a,i)}},function(u,r){var e=Object;u.exports={create:e.create,getProto:e.getPrototypeOf,isEnum:{}.propertyIsEnumerable,getDesc:e.getOwnPropertyDescriptor,setDesc:e.defineProperty,setDescs:e.defineProperties,getKeys:e.keys,getNames:e.getOwnPropertyNames,getSymbols:e.getOwnPropertySymbols,each:[].forEach}},function(u,r,e){\"use strict\";var n=e(2).default;r.__esModule=!0,r.registerDefaultHelpers=w,r.moveHelperToHooks=y;var t=e(10),f=n(t),a=e(11),i=n(a),l=e(24),h=n(l),v=e(25),P=n(v),H=e(26),C=n(H),E=e(27),I=n(E),o=e(28),g=n(o);function w(p){f.default(p),i.default(p),h.default(p),P.default(p),C.default(p),I.default(p),g.default(p)}function y(p,R,N){p.helpers[R]&&(p.hooks[R]=p.helpers[R],N||delete p.helpers[R])}},function(u,r,e){\"use strict\";r.__esModule=!0;var n=e(4);r.default=function(t){t.registerHelper(\"blockHelperMissing\",function(f,a){var i=a.inverse,l=a.fn;if(f===!0)return l(this);if(f===!1||f==null)return i(this);if(n.isArray(f))return f.length>0?(a.ids&&(a.ids=[a.name]),t.helpers.each(f,a)):i(this);if(a.data&&a.ids){var h=n.createFrame(a.data);h.contextPath=n.appendContextPath(a.data.contextPath,a.name),a={data:h}}return l(f,a)})},u.exports=r.default},function(u,r,e){(function(n){\"use strict\";var t=e(12).default,f=e(2).default;r.__esModule=!0;var a=e(4),i=e(5),l=f(i);r.default=function(h){h.registerHelper(\"each\",function(v,P){if(!P)throw new l.default(\"Must pass iterator to #each\");var H=P.fn,C=P.inverse,E=0,I=\"\",o=void 0,g=void 0;P.data&&P.ids&&(g=a.appendContextPath(P.data.contextPath,P.ids[0])+\".\"),a.isFunction(v)&&(v=v.call(this)),P.data&&(o=a.createFrame(P.data));function w(b,F,c){o&&(o.key=b,o.index=F,o.first=F===0,o.last=!!c,g&&(o.contextPath=g+b)),I=I+H(v[b],{data:o,blockParams:a.blockParams([v[b],b],[g+b,null])})}if(v&&typeof v==\"object\")if(a.isArray(v))for(var y=v.length;E<y;E++)E in v&&w(E,E,E===v.length-1);else if(n.Symbol&&v[n.Symbol.iterator]){for(var p=[],R=v[n.Symbol.iterator](),N=R.next();!N.done;N=R.next())p.push(N.value);v=p;for(var y=v.length;E<y;E++)w(E,E,E===v.length-1)}else(function(){var b=void 0;t(v).forEach(function(F){b!==void 0&&w(b,E-1),b=F,E++}),b!==void 0&&w(b,E-1,!0)})();return E===0&&(I=C(this)),I})},u.exports=r.default}).call(r,function(){return this}())},function(u,r,e){u.exports={default:e(13),__esModule:!0}},function(u,r,e){e(14),u.exports=e(20).Object.keys},function(u,r,e){var n=e(15);e(17)(\"keys\",function(t){return function(a){return t(n(a))}})},function(u,r,e){var n=e(16);u.exports=function(t){return Object(n(t))}},function(u,r){u.exports=function(e){if(e==null)throw TypeError(\"Can't call method on  \"+e);return e}},function(u,r,e){var n=e(18),t=e(20),f=e(23);u.exports=function(a,i){var l=(t.Object||{})[a]||Object[a],h={};h[a]=i(l),n(n.S+n.F*f(function(){l(1)}),\"Object\",h)}},function(u,r,e){var n=e(19),t=e(20),f=e(21),a=\"prototype\",i=function(l,h,v){var P=l&i.F,H=l&i.G,C=l&i.S,E=l&i.P,I=l&i.B,o=l&i.W,g=H?t:t[h]||(t[h]={}),w=H?n:C?n[h]:(n[h]||{})[a],y,p,R;H&&(v=h);for(y in v)p=!P&&w&&y in w,!(p&&y in g)&&(R=p?w[y]:v[y],g[y]=H&&typeof w[y]!=\"function\"?v[y]:I&&p?f(R,n):o&&w[y]==R?function(N){var b=function(F){return this instanceof N?new N(F):N(F)};return b[a]=N[a],b}(R):E&&typeof R==\"function\"?f(Function.call,R):R,E&&((g[a]||(g[a]={}))[y]=R))};i.F=1,i.G=2,i.S=4,i.P=8,i.B=16,i.W=32,u.exports=i},function(u,r){var e=u.exports=typeof window<\"u\"&&window.Math==Math?window:typeof self<\"u\"&&self.Math==Math?self:Function(\"return this\")();typeof __g==\"number\"&&(__g=e)},function(u,r){var e=u.exports={version:\"1.2.6\"};typeof __e==\"number\"&&(__e=e)},function(u,r,e){var n=e(22);u.exports=function(t,f,a){if(n(t),f===void 0)return t;switch(a){case 1:return function(i){return t.call(f,i)};case 2:return function(i,l){return t.call(f,i,l)};case 3:return function(i,l,h){return t.call(f,i,l,h)}}return function(){return t.apply(f,arguments)}}},function(u,r){u.exports=function(e){if(typeof e!=\"function\")throw TypeError(e+\" is not a function!\");return e}},function(u,r){u.exports=function(e){try{return!!e()}catch{return!0}}},function(u,r,e){\"use strict\";var n=e(2).default;r.__esModule=!0;var t=e(5),f=n(t);r.default=function(a){a.registerHelper(\"helperMissing\",function(){if(arguments.length!==1)throw new f.default('Missing helper: \"'+arguments[arguments.length-1].name+'\"')})},u.exports=r.default},function(u,r,e){\"use strict\";var n=e(2).default;r.__esModule=!0;var t=e(4),f=e(5),a=n(f);r.default=function(i){i.registerHelper(\"if\",function(l,h){if(arguments.length!=2)throw new a.default(\"#if requires exactly one argument\");return t.isFunction(l)&&(l=l.call(this)),!h.hash.includeZero&&!l||t.isEmpty(l)?h.inverse(this):h.fn(this)}),i.registerHelper(\"unless\",function(l,h){if(arguments.length!=2)throw new a.default(\"#unless requires exactly one argument\");return i.helpers.if.call(this,l,{fn:h.inverse,inverse:h.fn,hash:h.hash})})},u.exports=r.default},function(u,r){\"use strict\";r.__esModule=!0,r.default=function(e){e.registerHelper(\"log\",function(){for(var n=[void 0],t=arguments[arguments.length-1],f=0;f<arguments.length-1;f++)n.push(arguments[f]);var a=1;t.hash.level!=null?a=t.hash.level:t.data&&t.data.level!=null&&(a=t.data.level),n[0]=a,e.log.apply(e,n)})},u.exports=r.default},function(u,r){\"use strict\";r.__esModule=!0,r.default=function(e){e.registerHelper(\"lookup\",function(n,t,f){return n&&f.lookupProperty(n,t)})},u.exports=r.default},function(u,r,e){\"use strict\";var n=e(2).default;r.__esModule=!0;var t=e(4),f=e(5),a=n(f);r.default=function(i){i.registerHelper(\"with\",function(l,h){if(arguments.length!=2)throw new a.default(\"#with requires exactly one argument\");t.isFunction(l)&&(l=l.call(this));var v=h.fn;if(t.isEmpty(l))return h.inverse(this);var P=h.data;return h.data&&h.ids&&(P=t.createFrame(h.data),P.contextPath=t.appendContextPath(h.data.contextPath,h.ids[0])),v(l,{data:P,blockParams:t.blockParams([l],[P&&P.contextPath])})})},u.exports=r.default},function(u,r,e){\"use strict\";var n=e(2).default;r.__esModule=!0,r.registerDefaultDecorators=a;var t=e(30),f=n(t);function a(i){f.default(i)}},function(u,r,e){\"use strict\";r.__esModule=!0;var n=e(4);r.default=function(t){t.registerDecorator(\"inline\",function(f,a,i,l){var h=f;return a.partials||(a.partials={},h=function(v,P){var H=i.partials;i.partials=n.extend({},H,a.partials);var C=f(v,P);return i.partials=H,C}),a.partials[l.args[0]]=l.fn,h})},u.exports=r.default},function(u,r,e){\"use strict\";r.__esModule=!0;var n=e(4),t={methodMap:[\"debug\",\"info\",\"warn\",\"error\"],level:\"info\",lookupLevel:function(a){if(typeof a==\"string\"){var i=n.indexOf(t.methodMap,a.toLowerCase());i>=0?a=i:a=parseInt(a,10)}return a},log:function(a){if(a=t.lookupLevel(a),typeof console<\"u\"&&t.lookupLevel(t.level)<=a){var i=t.methodMap[a];console[i]||(i=\"log\");for(var l=arguments.length,h=Array(l>1?l-1:0),v=1;v<l;v++)h[v-1]=arguments[v];console[i].apply(console,h)}}};r.default=t,u.exports=r.default},function(u,r,e){\"use strict\";var n=e(33).default,t=e(12).default,f=e(1).default;r.__esModule=!0,r.createProtoAccessControl=v,r.resultIsAllowed=P,r.resetLoggedProperties=E;var a=e(35),i=e(31),l=f(i),h=n(null);function v(I){var o=n(null);o.constructor=!1,o.__defineGetter__=!1,o.__defineSetter__=!1,o.__lookupGetter__=!1;var g=n(null);return g.__proto__=!1,{properties:{whitelist:a.createNewLookupObject(g,I.allowedProtoProperties),defaultValue:I.allowProtoPropertiesByDefault},methods:{whitelist:a.createNewLookupObject(o,I.allowedProtoMethods),defaultValue:I.allowProtoMethodsByDefault}}}function P(I,o,g){return H(typeof I==\"function\"?o.methods:o.properties,g)}function H(I,o){return I.whitelist[o]!==void 0?I.whitelist[o]===!0:I.defaultValue!==void 0?I.defaultValue:(C(o),!1)}function C(I){h[I]!==!0&&(h[I]=!0,l.log(\"error\",'Handlebars: Access has been denied to resolve the property \"'+I+`\" because it is not an \"own property\" of its parent.\nYou can add a runtime option to disable the check or this warning:\nSee https://handlebarsjs.com/api-reference/runtime-options.html#options-to-control-prototype-access for details`))}function E(){t(h).forEach(function(I){delete h[I]})}},function(u,r,e){u.exports={default:e(34),__esModule:!0}},function(u,r,e){var n=e(8);u.exports=function(f,a){return n.create(f,a)}},function(u,r,e){\"use strict\";var n=e(33).default;r.__esModule=!0,r.createNewLookupObject=f;var t=e(4);function f(){for(var a=arguments.length,i=Array(a),l=0;l<a;l++)i[l]=arguments[l];return t.extend.apply(void 0,[n(null)].concat(i))}},function(u,r){\"use strict\";r.__esModule=!0;function e(n){this.string=n}e.prototype.toString=e.prototype.toHTML=function(){return\"\"+this.string},r.default=e,u.exports=r.default},function(u,r,e){\"use strict\";var n=e(38).default,t=e(12).default,f=e(1).default,a=e(2).default;r.__esModule=!0,r.checkRevision=I,r.template=o,r.wrapProgram=g,r.resolvePartial=w,r.invokePartial=y,r.noop=p;var i=e(4),l=f(i),h=e(5),v=a(h),P=e(3),H=e(9),C=e(42),E=e(32);function I(c){var O=c&&c[0]||1,M=P.COMPILER_REVISION;if(!(O>=P.LAST_COMPATIBLE_COMPILER_REVISION&&O<=P.COMPILER_REVISION))if(O<P.LAST_COMPATIBLE_COMPILER_REVISION){var x=P.REVISION_CHANGES[M],L=P.REVISION_CHANGES[O];throw new v.default(\"Template was precompiled with an older version of Handlebars than the current runtime. Please update your precompiler to a newer version (\"+x+\") or downgrade your runtime to an older version (\"+L+\").\")}else throw new v.default(\"Template was precompiled with a newer version of Handlebars than the current runtime. Please update your runtime to a newer version (\"+c[1]+\").\")}function o(c,O){if(!O)throw new v.default(\"No environment passed to template\");if(!c||!c.main)throw new v.default(\"Unknown template object: \"+typeof c);c.main.decorator=c.main_d,O.VM.checkRevision(c.compiler);var M=c.compiler&&c.compiler[0]===7;function x(m,s,d){d.hash&&(s=l.extend({},s,d.hash),d.ids&&(d.ids[0]=!0)),m=O.VM.resolvePartial.call(this,m,s,d);var A=l.extend({},d,{hooks:this.hooks,protoAccessControl:this.protoAccessControl}),D=O.VM.invokePartial.call(this,m,s,A);if(D==null&&O.compile&&(d.partials[d.name]=O.compile(m,c.compilerOptions,O),D=d.partials[d.name](s,A)),D!=null){if(d.indent){for(var T=D.split(`\n`),j=0,V=T.length;j<V&&!(!T[j]&&j+1===V);j++)T[j]=d.indent+T[j];D=T.join(`\n`)}return D}else throw new v.default(\"The partial \"+d.name+\" could not be compiled when running in runtime-only mode\")}var L={strict:function(s,d,A){if(!s||!(d in s))throw new v.default('\"'+d+'\" not defined in '+s,{loc:A});return L.lookupProperty(s,d)},lookupProperty:function(s,d){var A=s[d];if(A==null||Object.prototype.hasOwnProperty.call(s,d)||E.resultIsAllowed(A,L.protoAccessControl,d))return A},lookup:function(s,d){for(var A=s.length,D=0;D<A;D++){var T=s[D]&&L.lookupProperty(s[D],d);if(T!=null)return s[D][d]}},lambda:function(s,d){return typeof s==\"function\"?s.call(d):s},escapeExpression:l.escapeExpression,invokePartial:x,fn:function(s){var d=c[s];return d.decorator=c[s+\"_d\"],d},programs:[],program:function(s,d,A,D,T){var j=this.programs[s],V=this.fn(s);return d||T||D||A?j=g(this,s,V,d,A,D,T):j||(j=this.programs[s]=g(this,s,V)),j},data:function(s,d){for(;s&&d--;)s=s._parent;return s},mergeIfNeeded:function(s,d){var A=s||d;return s&&d&&s!==d&&(A=l.extend({},d,s)),A},nullContext:n({}),noop:O.VM.noop,compilerInfo:c.compiler};function S(m){var s=arguments.length<=1||arguments[1]===void 0?{}:arguments[1],d=s.data;S._setup(s),!s.partial&&c.useData&&(d=R(m,d));var A=void 0,D=c.useBlockParams?[]:void 0;c.useDepths&&(s.depths?A=m!=s.depths[0]?[m].concat(s.depths):s.depths:A=[m]);function T(j){return\"\"+c.main(L,j,L.helpers,L.partials,d,D,A)}return T=N(c.main,T,L,s.depths||[],d,D),T(m,s)}return S.isTop=!0,S._setup=function(m){if(m.partial)L.protoAccessControl=m.protoAccessControl,L.helpers=m.helpers,L.partials=m.partials,L.decorators=m.decorators,L.hooks=m.hooks;else{var s=l.extend({},O.helpers,m.helpers);b(s,L),L.helpers=s,c.usePartial&&(L.partials=L.mergeIfNeeded(m.partials,O.partials)),(c.usePartial||c.useDecorators)&&(L.decorators=l.extend({},O.decorators,m.decorators)),L.hooks={},L.protoAccessControl=E.createProtoAccessControl(m);var d=m.allowCallsToHelperMissing||M;H.moveHelperToHooks(L,\"helperMissing\",d),H.moveHelperToHooks(L,\"blockHelperMissing\",d)}},S._child=function(m,s,d,A){if(c.useBlockParams&&!d)throw new v.default(\"must pass block params\");if(c.useDepths&&!A)throw new v.default(\"must pass parent depths\");return g(L,m,c[m],s,0,d,A)},S}function g(c,O,M,x,L,S,m){function s(d){var A=arguments.length<=1||arguments[1]===void 0?{}:arguments[1],D=m;return m&&d!=m[0]&&!(d===c.nullContext&&m[0]===null)&&(D=[d].concat(m)),M(c,d,c.helpers,c.partials,A.data||x,S&&[A.blockParams].concat(S),D)}return s=N(M,s,c,m,x,S),s.program=O,s.depth=m?m.length:0,s.blockParams=L||0,s}function w(c,O,M){return c?!c.call&&!M.name&&(M.name=c,c=M.partials[c]):M.name===\"@partial-block\"?c=M.data[\"partial-block\"]:c=M.partials[M.name],c}function y(c,O,M){var x=M.data&&M.data[\"partial-block\"];M.partial=!0,M.ids&&(M.data.contextPath=M.ids[0]||M.data.contextPath);var L=void 0;if(M.fn&&M.fn!==p&&function(){M.data=P.createFrame(M.data);var S=M.fn;L=M.data[\"partial-block\"]=function(s){var d=arguments.length<=1||arguments[1]===void 0?{}:arguments[1];return d.data=P.createFrame(d.data),d.data[\"partial-block\"]=x,S(s,d)},S.partials&&(M.partials=l.extend({},M.partials,S.partials))}(),c===void 0&&L&&(c=L),c===void 0)throw new v.default(\"The partial \"+M.name+\" could not be found\");if(c instanceof Function)return c(O,M)}function p(){return\"\"}function R(c,O){return(!O||!(\"root\"in O))&&(O=O?P.createFrame(O):{},O.root=c),O}function N(c,O,M,x,L,S){if(c.decorator){var m={};O=c.decorator(O,m,M,x&&x[0],L,S,x),l.extend(O,m)}return O}function b(c,O){t(c).forEach(function(M){var x=c[M];c[M]=F(x,O)})}function F(c,O){var M=O.lookupProperty;return C.wrapHelper(c,function(x){return l.extend({lookupProperty:M},x)})}},function(u,r,e){u.exports={default:e(39),__esModule:!0}},function(u,r,e){e(40),u.exports=e(20).Object.seal},function(u,r,e){var n=e(41);e(17)(\"seal\",function(t){return function(a){return t&&n(a)?t(a):a}})},function(u,r){u.exports=function(e){return typeof e==\"object\"?e!==null:typeof e==\"function\"}},function(u,r){\"use strict\";r.__esModule=!0,r.wrapHelper=e;function e(n,t){if(typeof n!=\"function\")return n;var f=function(){var i=arguments[arguments.length-1];return arguments[arguments.length-1]=t(i),n.apply(this,arguments)};return f}},function(u,r){(function(e){\"use strict\";r.__esModule=!0,r.default=function(n){var t=typeof e<\"u\"?e:window,f=t.Handlebars;n.noConflict=function(){return t.Handlebars===n&&(t.Handlebars=f),n}},u.exports=r.default}).call(r,function(){return this}())}])});\n"
  },
  {
    "path": "doc/dist/handlebars.templates-K7URE6B4.js",
    "content": "(()=>{(function(){var d=Handlebars.template,y=Handlebars.templates=Handlebars.templates||{};y[\"autocomplete-suggestions\"]=d({1:function(e,l,a,p,u){var o,n,r=l??(e.nullContext||{}),s=e.hooks.helperMissing,i=\"function\",c=e.escapeExpression,t=e.lookupProperty||function(f,m){if(Object.prototype.hasOwnProperty.call(f,m))return f[m]};return'      <a href=\"'+c((n=(n=t(a,\"link\")||(l!=null?t(l,\"link\"):l))!=null?n:s,typeof n===i?n.call(r,{name:\"link\",hash:{},data:u,loc:{start:{line:14,column:15},end:{line:14,column:23}}}):n))+'\" class=\"autocomplete-suggestion\" data-index=\"'+c((n=(n=t(a,\"index\")||u&&t(u,\"index\"))!=null?n:s,typeof n===i?n.call(r,{name:\"index\",hash:{},data:u,loc:{start:{line:14,column:69},end:{line:14,column:79}}}):n))+`\" tabindex=\"-1\">\n        <div class=\"title\">\n`+((o=t(a,\"if\").call(r,l!=null?t(l,\"deprecated\"):l,{name:\"if\",hash:{},fn:e.program(2,u,0),inverse:e.program(4,u,0),data:u,loc:{start:{line:16,column:10},end:{line:20,column:17}}}))!=null?o:\"\")+`\n`+((o=t(a,\"each\").call(r,l!=null?t(l,\"labels\"):l,{name:\"each\",hash:{},fn:e.program(6,u,0),inverse:e.noop,data:u,loc:{start:{line:22,column:10},end:{line:24,column:19}}}))!=null?o:\"\")+`          <div class=\"autocomplete-preview-indicator autocomplete-preview-indicator-open\">\n            <button onclick=\"onTogglePreviewClick(event, false)\" title=\"Close preview\" tabindex=\"-1\">\n              <i class=\"ri-close-line\" aria-hidden=\"true\"></i>\n              Close preview\n            </button>\n          </div>\n          <div class=\"autocomplete-preview-indicator autocomplete-preview-indicator-closed\">\n            <button onclick=\"onTogglePreviewClick(event, true)\" title=\"Open preview\" tabindex=\"-1\">\n              <i class=\"ri-search-2-line\" aria-hidden=\"true\"></i>\n              Open preview\n            </button>\n          </div>\n        </div>\n\n`+((o=t(a,\"if\").call(r,l!=null?t(l,\"description\"):l,{name:\"if\",hash:{},fn:e.program(8,u,0),inverse:e.noop,data:u,loc:{start:{line:39,column:8},end:{line:43,column:15}}}))!=null?o:\"\")+`      </a>\n`},2:function(e,l,a,p,u){var o,n,r=e.lookupProperty||function(s,i){if(Object.prototype.hasOwnProperty.call(s,i))return s[i]};return'          <s><span class=\"header\" translate=\"no\">'+((o=(n=(n=r(a,\"title\")||(l!=null?r(l,\"title\"):l))!=null?n:e.hooks.helperMissing,typeof n==\"function\"?n.call(l??(e.nullContext||{}),{name:\"title\",hash:{},data:u,loc:{start:{line:17,column:49},end:{line:17,column:60}}}):n))!=null?o:\"\")+`</span></s>\n`},4:function(e,l,a,p,u){var o,n,r=e.lookupProperty||function(s,i){if(Object.prototype.hasOwnProperty.call(s,i))return s[i]};return'          <span class=\"header\" translate=\"no\">'+((o=(n=(n=r(a,\"title\")||(l!=null?r(l,\"title\"):l))!=null?n:e.hooks.helperMissing,typeof n==\"function\"?n.call(l??(e.nullContext||{}),{name:\"title\",hash:{},data:u,loc:{start:{line:19,column:46},end:{line:19,column:57}}}):n))!=null?o:\"\")+`</span>\n`},6:function(e,l,a,p,u){return'          <span class=\"label\">'+e.escapeExpression(e.lambda(l,l))+`</span>\n`},8:function(e,l,a,p,u){var o,n,r=e.lookupProperty||function(s,i){if(Object.prototype.hasOwnProperty.call(s,i))return s[i]};return`        <div class=\"description\" translate=\"no\">\n          `+((o=(n=(n=r(a,\"description\")||(l!=null?r(l,\"description\"):l))!=null?n:e.hooks.helperMissing,typeof n==\"function\"?n.call(l??(e.nullContext||{}),{name:\"description\",hash:{},data:u,loc:{start:{line:41,column:10},end:{line:41,column:27}}}):n))!=null?o:\"\")+`\n        </div>\n`},compiler:[8,\">= 4.3.0\"],main:function(e,l,a,p,u){var o,n,r=l??(e.nullContext||{}),s=e.lookupProperty||function(i,c){if(Object.prototype.hasOwnProperty.call(i,c))return i[c]};return`<div class=\"triangle\"></div>\n<div class=\"autocomplete-container\">\n  <div class=\"autocomplete-suggestions\">\n    <div class=\"autocomplete-results\">\n      <span>\n        Autocompletion results for <span class=\"bold\">\"`+e.escapeExpression((n=(n=s(a,\"term\")||(l!=null?s(l,\"term\"):l))!=null?n:e.hooks.helperMissing,typeof n==\"function\"?n.call(r,{name:\"term\",hash:{},data:u,loc:{start:{line:6,column:55},end:{line:6,column:63}}}):n))+`\"</span>\n      </span>\n      <span class=\"press-return\">\n        Press <span class=\"bold\">RETURN</span> for full-text search, <span class=\"bold\">TAB</span> for previews\n      </span>\n    </div>\n    <div>\n`+((o=s(a,\"each\").call(r,l!=null?s(l,\"suggestions\"):l,{name:\"each\",hash:{},fn:e.program(1,u,0),inverse:e.noop,data:u,loc:{start:{line:13,column:6},end:{line:45,column:15}}}))!=null?o:\"\")+`    </div>\n  </div>\n</div>\n`},useData:!0}),y[\"modal-layout\"]=d({compiler:[8,\">= 4.3.0\"],main:function(e,l,a,p,u){return`<div class=\"modal\" tabindex=\"-1\">\n  <div class=\"modal-contents\">\n    <div class=\"modal-header\">\n      <div class=\"modal-title\"></div>\n      <button class=\"modal-close\" aria-label=\"close\">\\xD7</button>\n    </div>\n    <div class=\"modal-body\">\n    </div>\n  </div>\n</div>\n`},useData:!0}),y[\"quick-switch-modal-body\"]=d({compiler:[8,\">= 4.3.0\"],main:function(e,l,a,p,u){return`<div id=\"quick-switch-modal-body\">\n  <i class=\"ri-search-2-line\" aria-hidden=\"true\"></i>\n  <input type=\"text\" id=\"quick-switch-input\" class=\"search-input\" placeholder=\"Jump to...\" autocomplete=\"off\" spellcheck=\"false\">\n  <div id=\"quick-switch-results\"></div>\n</div>\n`},useData:!0}),y[\"quick-switch-results\"]=d({1:function(e,l,a,p,u){var o,n=l??(e.nullContext||{}),r=e.hooks.helperMissing,s=\"function\",i=e.escapeExpression,c=e.lookupProperty||function(t,f){if(Object.prototype.hasOwnProperty.call(t,f))return t[f]};return'  <div class=\"quick-switch-result\" data-index=\"'+i((o=(o=c(a,\"index\")||u&&c(u,\"index\"))!=null?o:r,typeof o===s?o.call(n,{name:\"index\",hash:{},data:u,loc:{start:{line:2,column:47},end:{line:2,column:57}}}):o))+`\">\n    `+i((o=(o=c(a,\"name\")||(l!=null?c(l,\"name\"):l))!=null?o:r,typeof o===s?o.call(n,{name:\"name\",hash:{},data:u,loc:{start:{line:3,column:4},end:{line:3,column:12}}}):o))+`\n  </div>\n`},compiler:[8,\">= 4.3.0\"],main:function(e,l,a,p,u){var o,n=e.lookupProperty||function(r,s){if(Object.prototype.hasOwnProperty.call(r,s))return r[s]};return(o=n(a,\"each\").call(l??(e.nullContext||{}),l!=null?n(l,\"results\"):l,{name:\"each\",hash:{},fn:e.program(1,u,0),inverse:e.noop,data:u,loc:{start:{line:1,column:0},end:{line:5,column:9}}}))!=null?o:\"\"},useData:!0}),y[\"search-results\"]=d({1:function(e,l,a,p,u){var o,n=e.lookupProperty||function(r,s){if(Object.prototype.hasOwnProperty.call(r,s))return r[s]};return\"    Search results for <em>\"+e.escapeExpression((o=(o=n(a,\"value\")||(l!=null?n(l,\"value\"):l))!=null?o:e.hooks.helperMissing,typeof o==\"function\"?o.call(l??(e.nullContext||{}),{name:\"value\",hash:{},data:u,loc:{start:{line:3,column:27},end:{line:3,column:36}}}):o))+`</em>\n`},3:function(e,l,a,p,u){return`    Invalid search\n`},5:function(e,l,a,p,u){var o,n=e.lookupProperty||function(r,s){if(Object.prototype.hasOwnProperty.call(r,s))return r[s]};return(o=n(a,\"each\").call(l??(e.nullContext||{}),l!=null?n(l,\"results\"):l,{name:\"each\",hash:{},fn:e.program(6,u,0),inverse:e.noop,data:u,loc:{start:{line:10,column:2},end:{line:21,column:11}}}))!=null?o:\"\"},6:function(e,l,a,p,u){var o,n=e.lambda,r=e.escapeExpression,s=e.lookupProperty||function(i,c){if(Object.prototype.hasOwnProperty.call(i,c))return i[c]};return`    <div class=\"result\">\n      <h2 class=\"result-id\">\n        <a href=\"`+r(n(l!=null?s(l,\"ref\"):l,l))+`\">\n          <span translate=\"no\">`+r(n(l!=null?s(l,\"title\"):l,l))+\"</span> <small>(\"+r(n(l!=null?s(l,\"type\"):l,l))+`)</small>\n        </a>\n      </h2>\n`+((o=s(a,\"each\").call(l??(e.nullContext||{}),l!=null?s(l,\"excerpts\"):l,{name:\"each\",hash:{},fn:e.program(7,u,0),inverse:e.noop,data:u,loc:{start:{line:17,column:8},end:{line:19,column:17}}}))!=null?o:\"\")+`    </div>\n`},7:function(e,l,a,p,u){var o;return'          <p class=\"result-elem\">'+((o=e.lambda(l,l))!=null?o:\"\")+`</p>\n`},9:function(e,l,a,p,u){var o,n=e.lookupProperty||function(r,s){if(Object.prototype.hasOwnProperty.call(r,s))return r[s]};return((o=(n(a,\"isArray\")||l&&n(l,\"isArray\")||e.hooks.helperMissing).call(l??(e.nullContext||{}),l!=null?n(l,\"results\"):l,{name:\"isArray\",hash:{},fn:e.program(10,u,0),inverse:e.program(12,u,0),data:u,loc:{start:{line:23,column:2},end:{line:29,column:14}}}))!=null?o:\"\")+`\n  <p>The search functionality is full-text based. Here are some tips:</p>\n\n  <ul>\n    <li>Multiple words (such as <code>foo bar</code>) are searched as <code>OR</code></li>\n    <li>Use <code>*</code> anywhere (such as <code>fo*</code>) as wildcard</li>\n    <li>Use <code>+</code> before a word (such as <code>+foo</code>) to make its presence required</li>\n    <li>Use <code>-</code> before a word (such as <code>-foo</code>) to make its absence required</li>\n    <li>Use <code>:</code> to search on a particular field (such as <code>field:word</code>). The available fields are <code>title</code>, <code>doc</code> and <code>type</code></li>\n    <li>Use <code>WORD^NUMBER</code> (such as <code>foo^2</code>) to boost the given word</li>\n    <li>Use <code>WORD~NUMBER</code> (such as <code>foo~2</code>) to do a search with edit distance on word</li>\n  </ul>\n\n  <p>To quickly go to a module, type, or function, use the autocompletion feature in the sidebar search.</p>\n`},10:function(e,l,a,p,u){var o,n=e.lookupProperty||function(r,s){if(Object.prototype.hasOwnProperty.call(r,s))return r[s]};return\"    <p>Sorry, we couldn't find anything for <em>\"+e.escapeExpression((o=(o=n(a,\"value\")||(l!=null?n(l,\"value\"):l))!=null?o:e.hooks.helperMissing,typeof o==\"function\"?o.call(l??(e.nullContext||{}),{name:\"value\",hash:{},data:u,loc:{start:{line:24,column:48},end:{line:24,column:57}}}):o))+`</em>.</p>\n`},12:function(e,l,a,p,u){var o,n=e.lookupProperty||function(r,s){if(Object.prototype.hasOwnProperty.call(r,s))return r[s]};return(o=n(a,\"if\").call(l??(e.nullContext||{}),l!=null?n(l,\"value\"):l,{name:\"if\",hash:{},fn:e.program(13,u,0),inverse:e.program(15,u,0),data:u,loc:{start:{line:25,column:2},end:{line:29,column:2}}}))!=null?o:\"\"},13:function(e,l,a,p,u){var o,n=e.lookupProperty||function(r,s){if(Object.prototype.hasOwnProperty.call(r,s))return r[s]};return\"    <p>Invalid search: \"+e.escapeExpression((o=(o=n(a,\"errorMessage\")||(l!=null?n(l,\"errorMessage\"):l))!=null?o:e.hooks.helperMissing,typeof o==\"function\"?o.call(l??(e.nullContext||{}),{name:\"errorMessage\",hash:{},data:u,loc:{start:{line:26,column:23},end:{line:26,column:39}}}):o))+`.</p>\n`},15:function(e,l,a,p,u){return`    <p>Please type something into the search bar to perform a search.</p>\n  `},compiler:[8,\">= 4.3.0\"],main:function(e,l,a,p,u){var o,n=l??(e.nullContext||{}),r=e.lookupProperty||function(s,i){if(Object.prototype.hasOwnProperty.call(s,i))return s[i]};return`<h1>\n`+((o=r(a,\"if\").call(n,l!=null?r(l,\"value\"):l,{name:\"if\",hash:{},fn:e.program(1,u,0),inverse:e.program(3,u,0),data:u,loc:{start:{line:2,column:2},end:{line:6,column:9}}}))!=null?o:\"\")+`</h1>\n\n`+((o=(r(a,\"isNonEmptyArray\")||l&&r(l,\"isNonEmptyArray\")||e.hooks.helperMissing).call(n,l!=null?r(l,\"results\"):l,{name:\"isNonEmptyArray\",hash:{},fn:e.program(5,u,0),inverse:e.program(9,u,0),data:u,loc:{start:{line:9,column:0},end:{line:44,column:20}}}))!=null?o:\"\")},useData:!0}),y[\"settings-modal-body\"]=d({1:function(e,l,a,p,u){var o,n=e.lookupProperty||function(r,s){if(Object.prototype.hasOwnProperty.call(r,s))return r[s]};return(o=n(a,\"if\").call(l??(e.nullContext||{}),l!=null?n(l,\"description\"):l,{name:\"if\",hash:{},fn:e.program(2,u,0),inverse:e.noop,data:u,loc:{start:{line:40,column:6},end:{line:53,column:13}}}))!=null?o:\"\"},2:function(e,l,a,p,u){var o,n=e.lookupProperty||function(r,s){if(Object.prototype.hasOwnProperty.call(r,s))return r[s]};return`        <dl class=\"shortcut-row\">\n          <dd class=\"shortcut-description\">\n            `+e.escapeExpression(e.lambda(l!=null?n(l,\"description\"):l,l))+`\n          </dd>\n          <dt class=\"shortcut-keys\">\n`+((o=n(a,\"if\").call(l??(e.nullContext||{}),l!=null?n(l,\"displayAs\"):l,{name:\"if\",hash:{},fn:e.program(3,u,0),inverse:e.program(5,u,0),data:u,loc:{start:{line:46,column:12},end:{line:50,column:19}}}))!=null?o:\"\")+`          </dt>\n        </dl>\n`},3:function(e,l,a,p,u){var o,n=e.lookupProperty||function(r,s){if(Object.prototype.hasOwnProperty.call(r,s))return r[s]};return\"              \"+((o=e.lambda(l!=null?n(l,\"displayAs\"):l,l))!=null?o:\"\")+`\n`},5:function(e,l,a,p,u){var o=e.lookupProperty||function(n,r){if(Object.prototype.hasOwnProperty.call(n,r))return n[r]};return\"              <kbd><kbd>\"+e.escapeExpression(e.lambda(l!=null?o(l,\"key\"):l,l))+`</kbd></kbd>\n`},compiler:[8,\">= 4.3.0\"],main:function(e,l,a,p,u){var o,n=e.lookupProperty||function(r,s){if(Object.prototype.hasOwnProperty.call(r,s))return r[s]};return`<div id=\"settings-modal-content\">\n  <div id=\"settings-content\">\n    <label class=\"switch-button-container\">\n      <div>\n        <span>Theme</span>\n        <p>Use the documentation UI in a theme.</p>\n      </div>\n      <div>\n        <select name=\"theme\" class=\"settings-select\">\n          <option value=\"dark\">Dark</option>\n          <option value=\"light\">Light</option>\n          <option value=\"system\">System</option>\n        </select>\n      </div>\n    </label>\n    <label class=\"switch-button-container\">\n      <div>\n        <span>Show tooltips</span>\n        <p>Show tooltips when mousing over code references.</p>\n      </div>\n      <div class=\"switch-button\">\n        <input class=\"switch-button__checkbox\" type=\"checkbox\" name=\"tooltips\" />\n        <div class=\"switch-button__bg\"></div>\n      </div>\n    </label>\n    <label class=\"switch-button-container\">\n      <div>\n        <span>Run in Livebook</span>\n        <p>Use Direct Address for \\u201CRun in Livebook\\u201D badges.</p>\n      </div>\n      <div class=\"switch-button\">\n        <input class=\"switch-button__checkbox\" type=\"checkbox\" name=\"direct_livebook_url\" />\n        <div class=\"switch-button__bg\"></div>\n      </div>\n    </label>\n    <input class=\"input\" type=\"url\" name=\"livebook_url\" placeholder=\"Enter Livebook instance URL\" aria-label=\"Enter Livebook instance URL\" />\n  </div>\n  <div id=\"keyboard-shortcuts-content\" class=\"hidden\">\n`+((o=n(a,\"each\").call(l??(e.nullContext||{}),l!=null?n(l,\"shortcuts\"):l,{name:\"each\",hash:{},fn:e.program(1,u,0),inverse:e.noop,data:u,loc:{start:{line:39,column:4},end:{line:54,column:13}}}))!=null?o:\"\")+`  </div>\n</div>\n`},useData:!0}),y[\"sidebar-items\"]=d({1:function(e,l,a,p,u,o,n){var r,s=l??(e.nullContext||{}),i=e.hooks.helperMissing,c=e.lookupProperty||function(t,f){if(Object.prototype.hasOwnProperty.call(t,f))return t[f]};return((r=(c(a,\"groupChanged\")||l&&c(l,\"groupChanged\")||i).call(s,n[1],(r=o[0][0])!=null?c(r,\"group\"):r,{name:\"groupChanged\",hash:{},fn:e.program(2,u,0,o,n),inverse:e.noop,data:u,blockParams:o,loc:{start:{line:2,column:2},end:{line:6,column:19}}}))!=null?r:\"\")+`\n`+((r=(c(a,\"nestingChanged\")||l&&c(l,\"nestingChanged\")||i).call(s,n[1],o[0][0],{name:\"nestingChanged\",hash:{},fn:e.program(7,u,0,o,n),inverse:e.noop,data:u,blockParams:o,loc:{start:{line:8,column:2},end:{line:10,column:21}}}))!=null?r:\"\")+`\n  <li class=\"`+((r=(c(a,\"isLocal\")||l&&c(l,\"isLocal\")||i).call(s,(r=o[0][0])!=null?c(r,\"id\"):r,{name:\"isLocal\",hash:{},fn:e.program(9,u,0,o,n),inverse:e.noop,data:u,blockParams:o,loc:{start:{line:12,column:13},end:{line:12,column:62}}}))!=null?r:\"\")+`\">\n    <a href=\"`+e.escapeExpression(e.lambda((r=o[0][0])!=null?c(r,\"id\"):r,l))+\".html\"+((r=(c(a,\"isLocal\")||l&&c(l,\"isLocal\")||i).call(s,(r=o[0][0])!=null?c(r,\"id\"):r,{name:\"isLocal\",hash:{},fn:e.program(11,u,0,o,n),inverse:e.noop,data:u,blockParams:o,loc:{start:{line:13,column:29},end:{line:13,column:69}}}))!=null?r:\"\")+'\" class=\"expand\" aria-current=\"'+((r=(c(a,\"isLocal\")||l&&c(l,\"isLocal\")||i).call(s,(r=o[0][0])!=null?c(r,\"id\"):r,{name:\"isLocal\",hash:{},fn:e.program(13,u,0,o,n),inverse:e.program(15,u,0,o,n),data:u,blockParams:o,loc:{start:{line:13,column:100},end:{line:13,column:149}}}))!=null?r:\"\")+'\" '+((r=(c(a,\"isArray\")||l&&c(l,\"isArray\")||i).call(s,(r=o[0][0])!=null?c(r,\"headers\"):r,{name:\"isArray\",hash:{},fn:e.program(3,u,0,o,n),inverse:e.program(5,u,0,o,n),data:u,blockParams:o,loc:{start:{line:13,column:151},end:{line:13,column:210}}}))!=null?r:\"\")+`>\n`+((r=c(a,\"if\").call(s,(r=o[0][0])!=null?c(r,\"nested_title\"):r,{name:\"if\",hash:{},fn:e.program(17,u,0,o,n),inverse:e.program(19,u,0,o,n),data:u,blockParams:o,loc:{start:{line:14,column:6},end:{line:18,column:13}}}))!=null?r:\"\")+`    </a>\n\n`+((r=(c(a,\"isEmptyArray\")||l&&c(l,\"isEmptyArray\")||i).call(s,(r=o[0][0])!=null?c(r,\"headers\"):r,{name:\"isEmptyArray\",hash:{},fn:e.program(3,u,0,o,n),inverse:e.program(21,u,0,o,n),data:u,blockParams:o,loc:{start:{line:21,column:4},end:{line:24,column:21}}}))!=null?r:\"\")+`\n`+((r=(c(a,\"isArray\")||l&&c(l,\"isArray\")||i).call(s,(r=o[0][0])!=null?c(r,\"headers\"):r,{name:\"isArray\",hash:{},fn:e.program(24,u,0,o,n),inverse:e.program(28,u,0,o,n),data:u,blockParams:o,loc:{start:{line:26,column:4},end:{line:74,column:16}}}))!=null?r:\"\")+`  </li>\n`},2:function(e,l,a,p,u,o){var n,r=e.lookupProperty||function(s,i){if(Object.prototype.hasOwnProperty.call(s,i))return s[i]};return'    <li class=\"group\" '+((n=(r(a,\"isArray\")||l&&r(l,\"isArray\")||e.hooks.helperMissing).call(l??(e.nullContext||{}),(n=o[1][0])!=null?r(n,\"headers\"):n,{name:\"isArray\",hash:{},fn:e.program(3,u,0,o),inverse:e.program(5,u,0,o),data:u,blockParams:o,loc:{start:{line:3,column:22},end:{line:3,column:81}}}))!=null?n:\"\")+`>\n      `+e.escapeExpression(e.lambda((n=o[1][0])!=null?r(n,\"group\"):n,l))+`\n    </li>\n`},3:function(e,l,a,p,u){return\"\"},5:function(e,l,a,p,u){return'translate=\"no\"'},7:function(e,l,a,p,u,o){var n,r=e.lookupProperty||function(s,i){if(Object.prototype.hasOwnProperty.call(s,i))return s[i]};return'    <li class=\"nesting-context\" aria-hidden=\"true\" translate=\"no\">'+e.escapeExpression(e.lambda((n=o[1][0])!=null?r(n,\"nested_context\"):n,l))+`</li>\n`},9:function(e,l,a,p,u){return\"current-page open\"},11:function(e,l,a,p,u){return\"#content\"},13:function(e,l,a,p,u){return\"page\"},15:function(e,l,a,p,u){return\"false\"},17:function(e,l,a,p,u,o){var n,r=e.lookupProperty||function(s,i){if(Object.prototype.hasOwnProperty.call(s,i))return s[i]};return\"        \"+((n=e.lambda((n=o[1][0])!=null?r(n,\"nested_title\"):n,l))!=null?n:\"\")+`\n`},19:function(e,l,a,p,u,o){var n,r=e.lookupProperty||function(s,i){if(Object.prototype.hasOwnProperty.call(s,i))return s[i]};return\"        \"+((n=e.lambda((n=o[1][0])!=null?r(n,\"title\"):n,l))!=null?n:\"\")+`\n`},21:function(e,l,a,p,u,o){var n,r=e.lookupProperty||function(s,i){if(Object.prototype.hasOwnProperty.call(s,i))return s[i]};return'      <button class=\"icon-expand\" aria-label=\"expand\" aria-expanded=\"'+((n=(r(a,\"isLocal\")||l&&r(l,\"isLocal\")||e.hooks.helperMissing).call(l??(e.nullContext||{}),(n=o[1][0])!=null?r(n,\"id\"):n,{name:\"isLocal\",hash:{},fn:e.program(22,u,0,o),inverse:e.program(15,u,0,o),data:u,blockParams:o,loc:{start:{line:23,column:69},end:{line:23,column:118}}}))!=null?n:\"\")+'\" aria-controls=\"node-'+e.escapeExpression(e.lambda((n=o[1][0])!=null?r(n,\"id\"):n,l))+`-headers\"></button>\n`},22:function(e,l,a,p,u){return\"true\"},24:function(e,l,a,p,u,o){var n,r=e.lookupProperty||function(s,i){if(Object.prototype.hasOwnProperty.call(s,i))return s[i]};return(n=(r(a,\"isNonEmptyArray\")||l&&r(l,\"isNonEmptyArray\")||e.hooks.helperMissing).call(l??(e.nullContext||{}),(n=o[1][0])!=null?r(n,\"headers\"):n,{name:\"isNonEmptyArray\",hash:{},fn:e.program(25,u,0,o),inverse:e.noop,data:u,blockParams:o,loc:{start:{line:27,column:6},end:{line:35,column:26}}}))!=null?n:\"\"},25:function(e,l,a,p,u,o){var n,r=e.lookupProperty||function(s,i){if(Object.prototype.hasOwnProperty.call(s,i))return s[i]};return'        <ul id=\"node-'+e.escapeExpression(e.lambda((n=o[2][0])!=null?r(n,\"id\"):n,l))+`-headers\">\n`+((n=r(a,\"each\").call(l??(e.nullContext||{}),(n=o[2][0])!=null?r(n,\"headers\"):n,{name:\"each\",hash:{},fn:e.program(26,u,0,o),inverse:e.noop,data:u,blockParams:o,loc:{start:{line:29,column:10},end:{line:33,column:19}}}))!=null?n:\"\")+`        </ul>\n`},26:function(e,l,a,p,u,o){var n,r,s=l??(e.nullContext||{}),i=e.hooks.helperMissing,c=\"function\",t=e.lookupProperty||function(f,m){if(Object.prototype.hasOwnProperty.call(f,m))return f[m]};return`            <li>\n              <a href=\"`+e.escapeExpression(e.lambda((n=o[3][0])!=null?t(n,\"id\"):n,l))+\".html#\"+((n=(r=(r=t(a,\"anchor\")||(l!=null?t(l,\"anchor\"):l))!=null?r:i,typeof r===c?r.call(s,{name:\"anchor\",hash:{},data:u,blockParams:o,loc:{start:{line:31,column:40},end:{line:31,column:52}}}):r))!=null?n:\"\")+'\">'+((n=(r=(r=t(a,\"id\")||(l!=null?t(l,\"id\"):l))!=null?r:i,typeof r===c?r.call(s,{name:\"id\",hash:{},data:u,blockParams:o,loc:{start:{line:31,column:54},end:{line:31,column:62}}}):r))!=null?n:\"\")+`</a>\n            </li>\n`},28:function(e,l,a,p,u,o){var n,r=l??(e.nullContext||{}),s=e.hooks.helperMissing,i=e.lookupProperty||function(c,t){if(Object.prototype.hasOwnProperty.call(c,t))return c[t]};return'      <ul id=\"node-'+e.escapeExpression(e.lambda((n=o[1][0])!=null?i(n,\"id\"):n,l))+`-headers\">\n`+((n=(i(a,\"showSections\")||l&&i(l,\"showSections\")||s).call(r,o[1][0],{name:\"showSections\",hash:{},fn:e.program(29,u,0,o),inverse:e.noop,data:u,blockParams:o,loc:{start:{line:38,column:8},end:{line:52,column:25}}}))!=null?n:\"\")+((n=(i(a,\"showSummary\")||l&&i(l,\"showSummary\")||s).call(r,o[1][0],{name:\"showSummary\",hash:{},fn:e.program(34,u,0,o),inverse:e.noop,data:u,blockParams:o,loc:{start:{line:53,column:8},end:{line:57,column:24}}}))!=null?n:\"\")+((n=i(a,\"each\").call(r,(n=o[1][0])!=null?i(n,\"nodeGroups\"):n,{name:\"each\",hash:{},fn:e.program(36,u,1,o),inverse:e.noop,data:u,blockParams:o,loc:{start:{line:58,column:8},end:{line:72,column:17}}}))!=null?n:\"\")+`      </ul>\n`},29:function(e,l,a,p,u,o){var n,r=l??(e.nullContext||{}),s=e.hooks.helperMissing,i=e.lambda,c=e.escapeExpression,t=e.lookupProperty||function(f,m){if(Object.prototype.hasOwnProperty.call(f,m))return f[m]};return'          <li class=\"docs '+((n=(t(a,\"isLocal\")||l&&t(l,\"isLocal\")||s).call(r,(n=o[2][0])!=null?t(n,\"id\"):n,{name:\"isLocal\",hash:{},fn:e.program(30,u,0,o),inverse:e.noop,data:u,blockParams:o,loc:{start:{line:39,column:26},end:{line:39,column:62}}}))!=null?n:\"\")+`\">\n            <a href=\"`+c(i((n=o[2][0])!=null?t(n,\"id\"):n,l))+`.html#content\" class=\"expand\">\n              Sections\n            </a>\n            <button class=\"icon-expand\" aria-label=\"expand\" aria-expanded=\"`+((n=(t(a,\"isLocal\")||l&&t(l,\"isLocal\")||s).call(r,(n=o[2][0])!=null?t(n,\"id\"):n,{name:\"isLocal\",hash:{},fn:e.program(22,u,0,o),inverse:e.program(15,u,0,o),data:u,blockParams:o,loc:{start:{line:43,column:75},end:{line:43,column:124}}}))!=null?n:\"\")+'\" aria-controls=\"'+c(i((n=o[2][0])!=null?t(n,\"id\"):n,l))+`-sections-list\"></button>\n            <ul id=\"`+c(i((n=o[2][0])!=null?t(n,\"id\"):n,l))+`-sections-list\" class=\"sections-list deflist\">\n`+((n=t(a,\"each\").call(r,l!=null?t(l,\"sections\"):l,{name:\"each\",hash:{},fn:e.program(32,u,0,o),inverse:e.noop,data:u,blockParams:o,loc:{start:{line:45,column:14},end:{line:49,column:23}}}))!=null?n:\"\")+`            </ul>\n          </li>\n`},30:function(e,l,a,p,u){return\"open\"},32:function(e,l,a,p,u,o){var n,r,s=e.escapeExpression,i=l??(e.nullContext||{}),c=e.hooks.helperMissing,t=\"function\",f=e.lookupProperty||function(m,v){if(Object.prototype.hasOwnProperty.call(m,v))return m[v]};return`                <li>\n                  <a href=\"`+s(e.lambda((n=o[3][0])!=null?f(n,\"id\"):n,l))+\".html#\"+s((r=(r=f(a,\"anchor\")||(l!=null?f(l,\"anchor\"):l))!=null?r:c,typeof r===t?r.call(i,{name:\"anchor\",hash:{},data:u,blockParams:o,loc:{start:{line:47,column:44},end:{line:47,column:54}}}):r))+'\">'+((n=(r=(r=f(a,\"id\")||(l!=null?f(l,\"id\"):l))!=null?r:c,typeof r===t?r.call(i,{name:\"id\",hash:{},data:u,blockParams:o,loc:{start:{line:47,column:56},end:{line:47,column:64}}}):r))!=null?n:\"\")+`</a>\n                </li>\n`},34:function(e,l,a,p,u,o){var n,r=e.lookupProperty||function(s,i){if(Object.prototype.hasOwnProperty.call(s,i))return s[i]};return`          <li>\n            <a href=\"`+e.escapeExpression(e.lambda((n=o[2][0])!=null?r(n,\"id\"):n,l))+`.html#summary\" class=\"summary\">Summary</a>\n          </li>\n`},36:function(e,l,a,p,u,o){var n,r=e.lambda,s=e.escapeExpression,i=e.lookupProperty||function(c,t){if(Object.prototype.hasOwnProperty.call(c,t))return c[t]};return`          <li class=\"docs\">\n            <a href=\"`+s(r((n=o[2][0])!=null?i(n,\"id\"):n,l))+\".html#\"+s(r((n=o[0][0])!=null?i(n,\"key\"):n,l))+`\" class=\"expand\">\n              `+s(r((n=o[0][0])!=null?i(n,\"name\"):n,l))+`\n            </a>\n            <button class=\"icon-expand\" aria-label=\"expand\" aria-expanded=\"false\" aria-controls=\"node-`+s(r((n=o[2][0])!=null?i(n,\"id\"):n,l))+\"-group-\"+s(r((n=o[0][0])!=null?i(n,\"key\"):n,l))+`-list\"></button>\n            <ul id=\"node-`+s(r((n=o[2][0])!=null?i(n,\"id\"):n,l))+\"-group-\"+s(r((n=o[0][0])!=null?i(n,\"key\"):n,l))+'-list\" class=\"'+s(r((n=o[0][0])!=null?i(n,\"key\"):n,l))+`-list deflist\">\n`+((n=i(a,\"each\").call(l??(e.nullContext||{}),(n=o[0][0])!=null?i(n,\"nodes\"):n,{name:\"each\",hash:{},fn:e.program(37,u,0,o),inverse:e.noop,data:u,blockParams:o,loc:{start:{line:65,column:14},end:{line:69,column:23}}}))!=null?n:\"\")+`            </ul>\n          </li>\n`},37:function(e,l,a,p,u,o){var n,r,s=e.escapeExpression,i=l??(e.nullContext||{}),c=e.hooks.helperMissing,t=\"function\",f=e.lookupProperty||function(m,v){if(Object.prototype.hasOwnProperty.call(m,v))return m[v]};return`                <li>\n                  <a href=\"`+s(e.lambda((n=o[3][0])!=null?f(n,\"id\"):n,l))+\".html#\"+s((r=(r=f(a,\"anchor\")||(l!=null?f(l,\"anchor\"):l))!=null?r:c,typeof r===t?r.call(i,{name:\"anchor\",hash:{},data:u,blockParams:o,loc:{start:{line:67,column:44},end:{line:67,column:54}}}):r))+'\" title=\"'+s((r=(r=f(a,\"title\")||(l!=null?f(l,\"title\"):l))!=null?r:c,typeof r===t?r.call(i,{name:\"title\",hash:{},data:u,blockParams:o,loc:{start:{line:67,column:63},end:{line:67,column:72}}}):r))+'\" translate=\"no\">'+s((r=(r=f(a,\"id\")||(l!=null?f(l,\"id\"):l))!=null?r:c,typeof r===t?r.call(i,{name:\"id\",hash:{},data:u,blockParams:o,loc:{start:{line:67,column:89},end:{line:67,column:95}}}):r))+`</a>\n                </li>\n`},compiler:[8,\">= 4.3.0\"],main:function(e,l,a,p,u,o,n){var r,s=e.lookupProperty||function(i,c){if(Object.prototype.hasOwnProperty.call(i,c))return i[c]};return(r=s(a,\"each\").call(l??(e.nullContext||{}),l!=null?s(l,\"nodes\"):l,{name:\"each\",hash:{},fn:e.program(1,u,2,o,n),inverse:e.noop,data:u,blockParams:o,loc:{start:{line:1,column:0},end:{line:76,column:9}}}))!=null?r:\"\"},useData:!0,useDepths:!0,useBlockParams:!0}),y.tabset=d({1:function(e,l,a,p,u){var o,n,r=l??(e.nullContext||{}),s=e.hooks.helperMissing,i=\"function\",c=e.escapeExpression,t=e.lookupProperty||function(f,m){if(Object.prototype.hasOwnProperty.call(f,m))return f[m]};return'    <button role=\"tab\" id=\"tab-'+c((n=(n=t(a,\"setIndex\")||(l!=null?t(l,\"setIndex\"):l))!=null?n:s,typeof n===i?n.call(r,{name:\"setIndex\",hash:{},data:u,loc:{start:{line:3,column:31},end:{line:3,column:43}}}):n))+\"-\"+c((n=(n=t(a,\"index\")||u&&t(u,\"index\"))!=null?n:s,typeof n===i?n.call(r,{name:\"index\",hash:{},data:u,loc:{start:{line:3,column:44},end:{line:3,column:54}}}):n))+`\" class=\"tabset-tab\"\n    tabindex=\"`+((o=t(a,\"if\").call(r,u&&t(u,\"index\"),{name:\"if\",hash:{},fn:e.program(2,u,0),inverse:e.program(4,u,0),data:u,loc:{start:{line:4,column:14},end:{line:4,column:46}}}))!=null?o:\"\")+`\"\n    aria-selected=\"`+((o=t(a,\"if\").call(r,u&&t(u,\"index\"),{name:\"if\",hash:{},fn:e.program(6,u,0),inverse:e.program(8,u,0),data:u,loc:{start:{line:5,column:19},end:{line:5,column:57}}}))!=null?o:\"\")+`\"\n    aria-controls=\"tabpanel-`+c((n=(n=t(a,\"setIndex\")||(l!=null?t(l,\"setIndex\"):l))!=null?n:s,typeof n===i?n.call(r,{name:\"setIndex\",hash:{},data:u,loc:{start:{line:6,column:28},end:{line:6,column:40}}}):n))+\"-\"+c((n=(n=t(a,\"index\")||u&&t(u,\"index\"))!=null?n:s,typeof n===i?n.call(r,{name:\"index\",hash:{},data:u,loc:{start:{line:6,column:41},end:{line:6,column:51}}}):n))+`\">\n      `+c(e.lambda(l!=null?t(l,\"label\"):l,l))+`\n    </button>\n`},2:function(e,l,a,p,u){return\"-1\"},4:function(e,l,a,p,u){return\"0\"},6:function(e,l,a,p,u){return\"false\"},8:function(e,l,a,p,u){return\"true\"},10:function(e,l,a,p,u){var o,n,r=l??(e.nullContext||{}),s=e.hooks.helperMissing,i=\"function\",c=e.escapeExpression,t=e.lookupProperty||function(f,m){if(Object.prototype.hasOwnProperty.call(f,m))return f[m]};return'  <div role=\"tabpanel\" id=\"tabpanel-'+c((n=(n=t(a,\"setIndex\")||(l!=null?t(l,\"setIndex\"):l))!=null?n:s,typeof n===i?n.call(r,{name:\"setIndex\",hash:{},data:u,loc:{start:{line:13,column:36},end:{line:13,column:48}}}):n))+\"-\"+c((n=(n=t(a,\"index\")||u&&t(u,\"index\"))!=null?n:s,typeof n===i?n.call(r,{name:\"index\",hash:{},data:u,loc:{start:{line:13,column:49},end:{line:13,column:59}}}):n))+`\" class=\"tabset-panel\"\n    `+((o=t(a,\"if\").call(r,u&&t(u,\"index\"),{name:\"if\",hash:{},fn:e.program(11,u,0),inverse:e.noop,data:u,loc:{start:{line:14,column:4},end:{line:14,column:31}}}))!=null?o:\"\")+' tabindex=\"'+((o=t(a,\"if\").call(r,u&&t(u,\"index\"),{name:\"if\",hash:{},fn:e.program(2,u,0),inverse:e.program(4,u,0),data:u,loc:{start:{line:14,column:42},end:{line:14,column:74}}}))!=null?o:\"\")+`\"\n    aria-labelledby=\"tab-`+c((n=(n=t(a,\"setIndex\")||(l!=null?t(l,\"setIndex\"):l))!=null?n:s,typeof n===i?n.call(r,{name:\"setIndex\",hash:{},data:u,loc:{start:{line:15,column:25},end:{line:15,column:37}}}):n))+\"-\"+c((n=(n=t(a,\"index\")||u&&t(u,\"index\"))!=null?n:s,typeof n===i?n.call(r,{name:\"index\",hash:{},data:u,loc:{start:{line:15,column:38},end:{line:15,column:48}}}):n))+`\">\n`+((o=t(a,\"each\").call(r,l!=null?t(l,\"content\"):l,{name:\"each\",hash:{},fn:e.program(13,u,0),inverse:e.noop,data:u,loc:{start:{line:16,column:4},end:{line:18,column:13}}}))!=null?o:\"\")+`  </div>\n`},11:function(e,l,a,p,u){return\"hidden\"},13:function(e,l,a,p,u){var o;return\"      \"+((o=e.lambda(l,l))!=null?o:\"\")+`\n`},compiler:[8,\">= 4.3.0\"],main:function(e,l,a,p,u){var o,n=l??(e.nullContext||{}),r=e.lookupProperty||function(s,i){if(Object.prototype.hasOwnProperty.call(s,i))return s[i]};return`<div role=\"tablist\" class=\"tabset-tablist\">\n`+((o=r(a,\"each\").call(n,l!=null?r(l,\"tabs\"):l,{name:\"each\",hash:{},fn:e.program(1,u,0),inverse:e.noop,data:u,loc:{start:{line:2,column:2},end:{line:9,column:11}}}))!=null?o:\"\")+`</div>\n\n`+((o=r(a,\"each\").call(n,l!=null?r(l,\"tabs\"):l,{name:\"each\",hash:{},fn:e.program(10,u,0),inverse:e.noop,data:u,loc:{start:{line:12,column:0},end:{line:20,column:9}}}))!=null?o:\"\")},useData:!0}),y[\"tooltip-body\"]=d({1:function(e,l,a,p,u){var o,n=e.lookupProperty||function(r,s){if(Object.prototype.hasOwnProperty.call(r,s))return r[s]};return`  <section class=\"docstring docstring-plain\">\n    `+e.escapeExpression(e.lambda((o=l!=null?n(l,\"hint\"):l)!=null?n(o,\"description\"):o,l))+`\n  </section>\n`},3:function(e,l,a,p,u){var o,n=e.lambda,r=e.escapeExpression,s=e.lookupProperty||function(i,c){if(Object.prototype.hasOwnProperty.call(i,c))return i[c]};return`  <div class=\"detail-header\">\n    <h1 class=\"signature\">\n      <span translate=\"no\">`+r(n((o=l!=null?s(l,\"hint\"):l)!=null?s(o,\"title\"):o,l))+`</span>\n      <div class=\"version-info\" translate=\"no\">`+r(n((o=l!=null?s(l,\"hint\"):l)!=null?s(o,\"version\"):o,l))+`</div>\n    </h1>\n  </div>\n`+((o=s(a,\"if\").call(l??(e.nullContext||{}),(o=l!=null?s(l,\"hint\"):l)!=null?s(o,\"description\"):o,{name:\"if\",hash:{},fn:e.program(4,u,0),inverse:e.noop,data:u,loc:{start:{line:12,column:2},end:{line:16,column:9}}}))!=null?o:\"\")},4:function(e,l,a,p,u){var o,n=e.lookupProperty||function(r,s){if(Object.prototype.hasOwnProperty.call(r,s))return r[s]};return`    <section class=\"docstring\">\n      `+((o=e.lambda((o=l!=null?n(l,\"hint\"):l)!=null?n(o,\"description\"):o,l))!=null?o:\"\")+`\n    </section>\n`},compiler:[8,\">= 4.3.0\"],main:function(e,l,a,p,u){var o,n=e.lookupProperty||function(r,s){if(Object.prototype.hasOwnProperty.call(r,s))return r[s]};return(o=n(a,\"if\").call(l??(e.nullContext||{}),l!=null?n(l,\"isPlain\"):l,{name:\"if\",hash:{},fn:e.program(1,u,0),inverse:e.program(3,u,0),data:u,loc:{start:{line:1,column:0},end:{line:17,column:7}}}))!=null?o:\"\"},useData:!0}),y[\"tooltip-layout\"]=d({compiler:[8,\">= 4.3.0\"],main:function(e,l,a,p,u){return`<div class=\"tooltip\">\n  <div class=\"tooltip-body\"></div>\n</div>\n`},useData:!0}),y[\"versions-dropdown\"]=d({1:function(e,l,a,p,u){var o,n,r=l??(e.nullContext||{}),s=e.hooks.helperMissing,i=\"function\",c=e.escapeExpression,t=e.lookupProperty||function(f,m){if(Object.prototype.hasOwnProperty.call(f,m))return f[m]};return'        <option translate=\"no\" value=\"'+c((n=(n=t(a,\"url\")||(l!=null?t(l,\"url\"):l))!=null?n:s,typeof n===i?n.call(r,{name:\"url\",hash:{},data:u,loc:{start:{line:7,column:38},end:{line:7,column:45}}}):n))+'\"'+((o=t(a,\"if\").call(r,l!=null?t(l,\"isCurrentVersion\"):l,{name:\"if\",hash:{},fn:e.program(2,u,0),inverse:e.noop,data:u,loc:{start:{line:7,column:46},end:{line:7,column:95}}}))!=null?o:\"\")+`>\n          `+c((n=(n=t(a,\"version\")||(l!=null?t(l,\"version\"):l))!=null?n:s,typeof n===i?n.call(r,{name:\"version\",hash:{},data:u,loc:{start:{line:8,column:10},end:{line:8,column:21}}}):n))+`\n        </option>\n`},2:function(e,l,a,p,u){return\" selected disabled\"},compiler:[8,\">= 4.3.0\"],main:function(e,l,a,p,u){var o,n=e.lookupProperty||function(r,s){if(Object.prototype.hasOwnProperty.call(r,s))return r[s]};return`<form autocomplete=\"off\">\n  <label>\n    <span class=\"sidebar-projectVersionsDropdownCaret\" aria-hidden=\"true\">&#x25bc;</span>\n    <span class=\"sr-only\">Project version</span>\n    <select class=\"sidebar-projectVersionsDropdown\">\n`+((o=n(a,\"each\").call(l??(e.nullContext||{}),l!=null?n(l,\"nodes\"):l,{name:\"each\",hash:{},fn:e.program(1,u,0),inverse:e.noop,data:u,loc:{start:{line:6,column:6},end:{line:10,column:15}}}))!=null?o:\"\")+`    </select>\n  </label>\n</form>\n`},useData:!0})})();})();\n"
  },
  {
    "path": "doc/dist/html-BHYOTRCH.js",
    "content": "(()=>{var Zn=Object.create;var ut=Object.defineProperty;var ei=Object.getOwnPropertyDescriptor;var ti=Object.getOwnPropertyNames;var ni=Object.getPrototypeOf,ii=Object.prototype.hasOwnProperty;var dt=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports);var ri=(e,t,n,i)=>{if(t&&typeof t==\"object\"||typeof t==\"function\")for(let r of ti(t))!ii.call(e,r)&&r!==n&&ut(e,r,{get:()=>t[r],enumerable:!(i=ei(t,r))||i.enumerable});return e};var ft=(e,t,n)=>(n=e!=null?Zn(ni(e)):{},ri(t||!e||!e.__esModule?ut(n,\"default\",{value:e,enumerable:!0}):n,e));var kt=dt((ro,wt)=>{var Tt=\"Expected a function\",Et=NaN,mi=\"[object Symbol]\",gi=/^\\s+|\\s+$/g,yi=/^[-+]0x[0-9a-f]+$/i,vi=/^0b[01]+$/i,bi=/^0o[0-7]+$/i,Si=parseInt,xi=typeof global==\"object\"&&global&&global.Object===Object&&global,Ei=typeof self==\"object\"&&self&&self.Object===Object&&self,Li=xi||Ei||Function(\"return this\")(),Ti=Object.prototype,wi=Ti.toString,ki=Math.max,_i=Math.min,Fe=function(){return Li.Date.now()};function Oi(e,t,n){var i,r,s,o,a,l,u=0,f=!1,y=!1,g=!0;if(typeof e!=\"function\")throw new TypeError(Tt);t=Lt(t)||0,ve(n)&&(f=!!n.leading,y=\"maxWait\"in n,s=y?ki(Lt(n.maxWait)||0,t):s,g=\"trailing\"in n?!!n.trailing:g);function L(S){var C=i,D=r;return i=r=void 0,u=S,o=e.apply(D,C),o}function b(S){return u=S,a=setTimeout(h,t),f?L(S):o}function T(S){var C=S-l,D=S-u,V=t-C;return y?_i(V,s-D):V}function m(S){var C=S-l,D=S-u;return l===void 0||C>=t||C<0||y&&D>=s}function h(){var S=Fe();if(m(S))return _(S);a=setTimeout(h,T(S))}function _(S){return a=void 0,g&&i?L(S):(i=r=void 0,o)}function w(){a!==void 0&&clearTimeout(a),u=0,i=l=r=a=void 0}function N(){return a===void 0?o:_(Fe())}function F(){var S=Fe(),C=m(S);if(i=arguments,r=this,l=S,C){if(a===void 0)return b(l);if(y)return a=setTimeout(h,t),L(l)}return a===void 0&&(a=setTimeout(h,t)),o}return F.cancel=w,F.flush=N,F}function Ii(e,t,n){var i=!0,r=!0;if(typeof e!=\"function\")throw new TypeError(Tt);return ve(n)&&(i=\"leading\"in n?!!n.leading:i,r=\"trailing\"in n?!!n.trailing:r),Oi(e,t,{leading:i,maxWait:t,trailing:r})}function ve(e){var t=typeof e;return!!e&&(t==\"object\"||t==\"function\")}function Ci(e){return!!e&&typeof e==\"object\"}function Ai(e){return typeof e==\"symbol\"||Ci(e)&&wi.call(e)==mi}function Lt(e){if(typeof e==\"number\")return e;if(Ai(e))return Et;if(ve(e)){var t=typeof e.valueOf==\"function\"?e.valueOf():e;e=ve(t)?t+\"\":t}if(typeof e!=\"string\")return e===0?e:+e;e=e.replace(gi,\"\");var n=vi.test(e);return n||bi.test(e)?Si(e.slice(2),n?2:8):yi.test(e)?Et:+e}wt.exports=Ii});var ln=dt((an,cn)=>{(function(){var e=function(t){var n=new e.Builder;return n.pipeline.add(e.trimmer,e.stopWordFilter,e.stemmer),n.searchPipeline.add(e.stemmer),t.call(n,n),n.build()};e.version=\"2.3.9\";e.utils={},e.utils.warn=function(t){return function(n){t.console&&console.warn&&console.warn(n)}}(this),e.utils.asString=function(t){return t==null?\"\":t.toString()},e.utils.clone=function(t){if(t==null)return t;for(var n=Object.create(null),i=Object.keys(t),r=0;r<i.length;r++){var s=i[r],o=t[s];if(Array.isArray(o)){n[s]=o.slice();continue}if(typeof o==\"string\"||typeof o==\"number\"||typeof o==\"boolean\"){n[s]=o;continue}throw new TypeError(\"clone is not deep and does not support nested objects\")}return n},e.FieldRef=function(t,n,i){this.docRef=t,this.fieldName=n,this._stringValue=i},e.FieldRef.joiner=\"/\",e.FieldRef.fromString=function(t){var n=t.indexOf(e.FieldRef.joiner);if(n===-1)throw\"malformed field ref string\";var i=t.slice(0,n),r=t.slice(n+1);return new e.FieldRef(r,i,t)},e.FieldRef.prototype.toString=function(){return this._stringValue==null&&(this._stringValue=this.fieldName+e.FieldRef.joiner+this.docRef),this._stringValue};e.Set=function(t){if(this.elements=Object.create(null),t){this.length=t.length;for(var n=0;n<this.length;n++)this.elements[t[n]]=!0}else this.length=0},e.Set.complete={intersect:function(t){return t},union:function(){return this},contains:function(){return!0}},e.Set.empty={intersect:function(){return this},union:function(t){return t},contains:function(){return!1}},e.Set.prototype.contains=function(t){return!!this.elements[t]},e.Set.prototype.intersect=function(t){var n,i,r,s=[];if(t===e.Set.complete)return this;if(t===e.Set.empty)return t;this.length<t.length?(n=this,i=t):(n=t,i=this),r=Object.keys(n.elements);for(var o=0;o<r.length;o++){var a=r[o];a in i.elements&&s.push(a)}return new e.Set(s)},e.Set.prototype.union=function(t){return t===e.Set.complete?e.Set.complete:t===e.Set.empty?this:new e.Set(Object.keys(this.elements).concat(Object.keys(t.elements)))},e.idf=function(t,n){var i=0;for(var r in t)r!=\"_index\"&&(i+=Object.keys(t[r]).length);var s=(n-i+.5)/(i+.5);return Math.log(1+Math.abs(s))},e.Token=function(t,n){this.str=t||\"\",this.metadata=n||{}},e.Token.prototype.toString=function(){return this.str},e.Token.prototype.update=function(t){return this.str=t(this.str,this.metadata),this},e.Token.prototype.clone=function(t){return t=t||function(n){return n},new e.Token(t(this.str,this.metadata),this.metadata)};e.tokenizer=function(t,n){if(t==null||t==null)return[];if(Array.isArray(t))return t.map(function(y){return new e.Token(e.utils.asString(y).toLowerCase(),e.utils.clone(n))});for(var i=t.toString().toLowerCase(),r=i.length,s=[],o=0,a=0;o<=r;o++){var l=i.charAt(o),u=o-a;if(l.match(e.tokenizer.separator)||o==r){if(u>0){var f=e.utils.clone(n)||{};f.position=[a,u],f.index=s.length,s.push(new e.Token(i.slice(a,o),f))}a=o+1}}return s},e.tokenizer.separator=/[\\s\\-]+/;e.Pipeline=function(){this._stack=[]},e.Pipeline.registeredFunctions=Object.create(null),e.Pipeline.registerFunction=function(t,n){n in this.registeredFunctions&&e.utils.warn(\"Overwriting existing registered function: \"+n),t.label=n,e.Pipeline.registeredFunctions[t.label]=t},e.Pipeline.warnIfFunctionNotRegistered=function(t){var n=t.label&&t.label in this.registeredFunctions;n||e.utils.warn(`Function is not registered with pipeline. This may cause problems when serialising the index.\n`,t)},e.Pipeline.load=function(t){var n=new e.Pipeline;return t.forEach(function(i){var r=e.Pipeline.registeredFunctions[i];if(r)n.add(r);else throw new Error(\"Cannot load unregistered function: \"+i)}),n},e.Pipeline.prototype.add=function(){var t=Array.prototype.slice.call(arguments);t.forEach(function(n){e.Pipeline.warnIfFunctionNotRegistered(n),this._stack.push(n)},this)},e.Pipeline.prototype.after=function(t,n){e.Pipeline.warnIfFunctionNotRegistered(n);var i=this._stack.indexOf(t);if(i==-1)throw new Error(\"Cannot find existingFn\");i=i+1,this._stack.splice(i,0,n)},e.Pipeline.prototype.before=function(t,n){e.Pipeline.warnIfFunctionNotRegistered(n);var i=this._stack.indexOf(t);if(i==-1)throw new Error(\"Cannot find existingFn\");this._stack.splice(i,0,n)},e.Pipeline.prototype.remove=function(t){var n=this._stack.indexOf(t);n!=-1&&this._stack.splice(n,1)},e.Pipeline.prototype.run=function(t){for(var n=this._stack.length,i=0;i<n;i++){for(var r=this._stack[i],s=[],o=0;o<t.length;o++){var a=r(t[o],o,t);if(!(a==null||a===\"\"))if(Array.isArray(a))for(var l=0;l<a.length;l++)s.push(a[l]);else s.push(a)}t=s}return t},e.Pipeline.prototype.runString=function(t,n){var i=new e.Token(t,n);return this.run([i]).map(function(r){return r.toString()})},e.Pipeline.prototype.reset=function(){this._stack=[]},e.Pipeline.prototype.toJSON=function(){return this._stack.map(function(t){return e.Pipeline.warnIfFunctionNotRegistered(t),t.label})};e.Vector=function(t){this._magnitude=0,this.elements=t||[]},e.Vector.prototype.positionForIndex=function(t){if(this.elements.length==0)return 0;for(var n=0,i=this.elements.length/2,r=i-n,s=Math.floor(r/2),o=this.elements[s*2];r>1&&(o<t&&(n=s),o>t&&(i=s),o!=t);)r=i-n,s=n+Math.floor(r/2),o=this.elements[s*2];if(o==t||o>t)return s*2;if(o<t)return(s+1)*2},e.Vector.prototype.insert=function(t,n){this.upsert(t,n,function(){throw\"duplicate index\"})},e.Vector.prototype.upsert=function(t,n,i){this._magnitude=0;var r=this.positionForIndex(t);this.elements[r]==t?this.elements[r+1]=i(this.elements[r+1],n):this.elements.splice(r,0,t,n)},e.Vector.prototype.magnitude=function(){if(this._magnitude)return this._magnitude;for(var t=0,n=this.elements.length,i=1;i<n;i+=2){var r=this.elements[i];t+=r*r}return this._magnitude=Math.sqrt(t)},e.Vector.prototype.dot=function(t){for(var n=0,i=this.elements,r=t.elements,s=i.length,o=r.length,a=0,l=0,u=0,f=0;u<s&&f<o;)a=i[u],l=r[f],a<l?u+=2:a>l?f+=2:a==l&&(n+=i[u+1]*r[f+1],u+=2,f+=2);return n},e.Vector.prototype.similarity=function(t){return this.dot(t)/this.magnitude()||0},e.Vector.prototype.toArray=function(){for(var t=new Array(this.elements.length/2),n=1,i=0;n<this.elements.length;n+=2,i++)t[i]=this.elements[n];return t},e.Vector.prototype.toJSON=function(){return this.elements};e.stemmer=function(){var t={ational:\"ate\",tional:\"tion\",enci:\"ence\",anci:\"ance\",izer:\"ize\",bli:\"ble\",alli:\"al\",entli:\"ent\",eli:\"e\",ousli:\"ous\",ization:\"ize\",ation:\"ate\",ator:\"ate\",alism:\"al\",iveness:\"ive\",fulness:\"ful\",ousness:\"ous\",aliti:\"al\",iviti:\"ive\",biliti:\"ble\",logi:\"log\"},n={icate:\"ic\",ative:\"\",alize:\"al\",iciti:\"ic\",ical:\"ic\",ful:\"\",ness:\"\"},i=\"[^aeiou]\",r=\"[aeiouy]\",s=i+\"[^aeiouy]*\",o=r+\"[aeiou]*\",a=\"^(\"+s+\")?\"+o+s,l=\"^(\"+s+\")?\"+o+s+\"(\"+o+\")?$\",u=\"^(\"+s+\")?\"+o+s+o+s,f=\"^(\"+s+\")?\"+r,y=new RegExp(a),g=new RegExp(u),L=new RegExp(l),b=new RegExp(f),T=/^(.+?)(ss|i)es$/,m=/^(.+?)([^s])s$/,h=/^(.+?)eed$/,_=/^(.+?)(ed|ing)$/,w=/.$/,N=/(at|bl|iz)$/,F=new RegExp(\"([^aeiouylsz])\\\\1$\"),S=new RegExp(\"^\"+s+r+\"[^aeiouwxy]$\"),C=/^(.+?[^aeiou])y$/,D=/^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/,V=/^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/,oe=/^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/,de=/^(.+?)(s|t)(ion)$/,j=/^(.+?)e$/,fe=/ll$/,pe=new RegExp(\"^\"+s+r+\"[^aeiouwxy]$\"),ae=function(d){var v,U,R,p,x,W,Z;if(d.length<3)return d;if(R=d.substr(0,1),R==\"y\"&&(d=R.toUpperCase()+d.substr(1)),p=T,x=m,p.test(d)?d=d.replace(p,\"$1$2\"):x.test(d)&&(d=d.replace(x,\"$1$2\")),p=h,x=_,p.test(d)){var E=p.exec(d);p=y,p.test(E[1])&&(p=w,d=d.replace(p,\"\"))}else if(x.test(d)){var E=x.exec(d);v=E[1],x=b,x.test(v)&&(d=v,x=N,W=F,Z=S,x.test(d)?d=d+\"e\":W.test(d)?(p=w,d=d.replace(p,\"\")):Z.test(d)&&(d=d+\"e\"))}if(p=C,p.test(d)){var E=p.exec(d);v=E[1],d=v+\"i\"}if(p=D,p.test(d)){var E=p.exec(d);v=E[1],U=E[2],p=y,p.test(v)&&(d=v+t[U])}if(p=V,p.test(d)){var E=p.exec(d);v=E[1],U=E[2],p=y,p.test(v)&&(d=v+n[U])}if(p=oe,x=de,p.test(d)){var E=p.exec(d);v=E[1],p=g,p.test(v)&&(d=v)}else if(x.test(d)){var E=x.exec(d);v=E[1]+E[2],x=g,x.test(v)&&(d=v)}if(p=j,p.test(d)){var E=p.exec(d);v=E[1],p=g,x=L,W=pe,(p.test(v)||x.test(v)&&!W.test(v))&&(d=v)}return p=fe,x=g,p.test(d)&&x.test(d)&&(p=w,d=d.replace(p,\"\")),R==\"y\"&&(d=R.toLowerCase()+d.substr(1)),d};return function(X){return X.update(ae)}}(),e.Pipeline.registerFunction(e.stemmer,\"stemmer\");e.generateStopWordFilter=function(t){var n=t.reduce(function(i,r){return i[r]=r,i},{});return function(i){if(i&&n[i.toString()]!==i.toString())return i}},e.stopWordFilter=e.generateStopWordFilter([\"a\",\"able\",\"about\",\"across\",\"after\",\"all\",\"almost\",\"also\",\"am\",\"among\",\"an\",\"and\",\"any\",\"are\",\"as\",\"at\",\"be\",\"because\",\"been\",\"but\",\"by\",\"can\",\"cannot\",\"could\",\"dear\",\"did\",\"do\",\"does\",\"either\",\"else\",\"ever\",\"every\",\"for\",\"from\",\"get\",\"got\",\"had\",\"has\",\"have\",\"he\",\"her\",\"hers\",\"him\",\"his\",\"how\",\"however\",\"i\",\"if\",\"in\",\"into\",\"is\",\"it\",\"its\",\"just\",\"least\",\"let\",\"like\",\"likely\",\"may\",\"me\",\"might\",\"most\",\"must\",\"my\",\"neither\",\"no\",\"nor\",\"not\",\"of\",\"off\",\"often\",\"on\",\"only\",\"or\",\"other\",\"our\",\"own\",\"rather\",\"said\",\"say\",\"says\",\"she\",\"should\",\"since\",\"so\",\"some\",\"than\",\"that\",\"the\",\"their\",\"them\",\"then\",\"there\",\"these\",\"they\",\"this\",\"tis\",\"to\",\"too\",\"twas\",\"us\",\"wants\",\"was\",\"we\",\"were\",\"what\",\"when\",\"where\",\"which\",\"while\",\"who\",\"whom\",\"why\",\"will\",\"with\",\"would\",\"yet\",\"you\",\"your\"]),e.Pipeline.registerFunction(e.stopWordFilter,\"stopWordFilter\");e.trimmer=function(t){return t.update(function(n){return n.replace(/^\\W+/,\"\").replace(/\\W+$/,\"\")})},e.Pipeline.registerFunction(e.trimmer,\"trimmer\");e.TokenSet=function(){this.final=!1,this.edges={},this.id=e.TokenSet._nextId,e.TokenSet._nextId+=1},e.TokenSet._nextId=1,e.TokenSet.fromArray=function(t){for(var n=new e.TokenSet.Builder,i=0,r=t.length;i<r;i++)n.insert(t[i]);return n.finish(),n.root},e.TokenSet.fromClause=function(t){return\"editDistance\"in t?e.TokenSet.fromFuzzyString(t.term,t.editDistance):e.TokenSet.fromString(t.term)},e.TokenSet.fromFuzzyString=function(t,n){for(var i=new e.TokenSet,r=[{node:i,editsRemaining:n,str:t}];r.length;){var s=r.pop();if(s.str.length>0){var o=s.str.charAt(0),a;o in s.node.edges?a=s.node.edges[o]:(a=new e.TokenSet,s.node.edges[o]=a),s.str.length==1&&(a.final=!0),r.push({node:a,editsRemaining:s.editsRemaining,str:s.str.slice(1)})}if(s.editsRemaining!=0){if(\"*\"in s.node.edges)var l=s.node.edges[\"*\"];else{var l=new e.TokenSet;s.node.edges[\"*\"]=l}if(s.str.length==0&&(l.final=!0),r.push({node:l,editsRemaining:s.editsRemaining-1,str:s.str}),s.str.length>1&&r.push({node:s.node,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)}),s.str.length==1&&(s.node.final=!0),s.str.length>=1){if(\"*\"in s.node.edges)var u=s.node.edges[\"*\"];else{var u=new e.TokenSet;s.node.edges[\"*\"]=u}s.str.length==1&&(u.final=!0),r.push({node:u,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)})}if(s.str.length>1){var f=s.str.charAt(0),y=s.str.charAt(1),g;y in s.node.edges?g=s.node.edges[y]:(g=new e.TokenSet,s.node.edges[y]=g),s.str.length==1&&(g.final=!0),r.push({node:g,editsRemaining:s.editsRemaining-1,str:f+s.str.slice(2)})}}}return i},e.TokenSet.fromString=function(t){for(var n=new e.TokenSet,i=n,r=0,s=t.length;r<s;r++){var o=t[r],a=r==s-1;if(o==\"*\")n.edges[o]=n,n.final=a;else{var l=new e.TokenSet;l.final=a,n.edges[o]=l,n=l}}return i},e.TokenSet.prototype.toArray=function(){for(var t=[],n=[{prefix:\"\",node:this}];n.length;){var i=n.pop(),r=Object.keys(i.node.edges),s=r.length;i.node.final&&(i.prefix.charAt(0),t.push(i.prefix));for(var o=0;o<s;o++){var a=r[o];n.push({prefix:i.prefix.concat(a),node:i.node.edges[a]})}}return t},e.TokenSet.prototype.toString=function(){if(this._str)return this._str;for(var t=this.final?\"1\":\"0\",n=Object.keys(this.edges).sort(),i=n.length,r=0;r<i;r++){var s=n[r],o=this.edges[s];t=t+s+o.id}return t},e.TokenSet.prototype.intersect=function(t){for(var n=new e.TokenSet,i=void 0,r=[{qNode:t,output:n,node:this}];r.length;){i=r.pop();for(var s=Object.keys(i.qNode.edges),o=s.length,a=Object.keys(i.node.edges),l=a.length,u=0;u<o;u++)for(var f=s[u],y=0;y<l;y++){var g=a[y];if(g==f||f==\"*\"){var L=i.node.edges[g],b=i.qNode.edges[f],T=L.final&&b.final,m=void 0;g in i.output.edges?(m=i.output.edges[g],m.final=m.final||T):(m=new e.TokenSet,m.final=T,i.output.edges[g]=m),r.push({qNode:b,output:m,node:L})}}}return n},e.TokenSet.Builder=function(){this.previousWord=\"\",this.root=new e.TokenSet,this.uncheckedNodes=[],this.minimizedNodes={}},e.TokenSet.Builder.prototype.insert=function(t){var n,i=0;if(t<this.previousWord)throw new Error(\"Out of order word insertion\");for(var r=0;r<t.length&&r<this.previousWord.length&&t[r]==this.previousWord[r];r++)i++;this.minimize(i),this.uncheckedNodes.length==0?n=this.root:n=this.uncheckedNodes[this.uncheckedNodes.length-1].child;for(var r=i;r<t.length;r++){var s=new e.TokenSet,o=t[r];n.edges[o]=s,this.uncheckedNodes.push({parent:n,char:o,child:s}),n=s}n.final=!0,this.previousWord=t},e.TokenSet.Builder.prototype.finish=function(){this.minimize(0)},e.TokenSet.Builder.prototype.minimize=function(t){for(var n=this.uncheckedNodes.length-1;n>=t;n--){var i=this.uncheckedNodes[n],r=i.child.toString();r in this.minimizedNodes?i.parent.edges[i.char]=this.minimizedNodes[r]:(i.child._str=r,this.minimizedNodes[r]=i.child),this.uncheckedNodes.pop()}};e.Index=function(t){this.invertedIndex=t.invertedIndex,this.fieldVectors=t.fieldVectors,this.tokenSet=t.tokenSet,this.fields=t.fields,this.pipeline=t.pipeline},e.Index.prototype.search=function(t){return this.query(function(n){var i=new e.QueryParser(t,n);i.parse()})},e.Index.prototype.query=function(t){for(var n=new e.Query(this.fields),i=Object.create(null),r=Object.create(null),s=Object.create(null),o=Object.create(null),a=Object.create(null),l=0;l<this.fields.length;l++)r[this.fields[l]]=new e.Vector;t.call(n,n);for(var l=0;l<n.clauses.length;l++){var u=n.clauses[l],f=null,y=e.Set.empty;u.usePipeline?f=this.pipeline.runString(u.term,{fields:u.fields}):f=[u.term];for(var g=0;g<f.length;g++){var L=f[g];u.term=L;var b=e.TokenSet.fromClause(u),T=this.tokenSet.intersect(b).toArray();if(T.length===0&&u.presence===e.Query.presence.REQUIRED){for(var m=0;m<u.fields.length;m++){var h=u.fields[m];o[h]=e.Set.empty}break}for(var _=0;_<T.length;_++)for(var w=T[_],N=this.invertedIndex[w],F=N._index,m=0;m<u.fields.length;m++){var h=u.fields[m],S=N[h],C=Object.keys(S),D=w+\"/\"+h,V=new e.Set(C);if(u.presence==e.Query.presence.REQUIRED&&(y=y.union(V),o[h]===void 0&&(o[h]=e.Set.complete)),u.presence==e.Query.presence.PROHIBITED){a[h]===void 0&&(a[h]=e.Set.empty),a[h]=a[h].union(V);continue}if(r[h].upsert(F,u.boost,function(Jn,Xn){return Jn+Xn}),!s[D]){for(var oe=0;oe<C.length;oe++){var de=C[oe],j=new e.FieldRef(de,h),fe=S[de],pe;(pe=i[j])===void 0?i[j]=new e.MatchData(w,h,fe):pe.add(w,h,fe)}s[D]=!0}}}if(u.presence===e.Query.presence.REQUIRED)for(var m=0;m<u.fields.length;m++){var h=u.fields[m];o[h]=o[h].intersect(y)}}for(var ae=e.Set.complete,X=e.Set.empty,l=0;l<this.fields.length;l++){var h=this.fields[l];o[h]&&(ae=ae.intersect(o[h])),a[h]&&(X=X.union(a[h]))}var d=Object.keys(i),v=[],U=Object.create(null);if(n.isNegated()){d=Object.keys(this.fieldVectors);for(var l=0;l<d.length;l++){var j=d[l],R=e.FieldRef.fromString(j);i[j]=new e.MatchData}}for(var l=0;l<d.length;l++){var R=e.FieldRef.fromString(d[l]),p=R.docRef;if(ae.contains(p)&&!X.contains(p)){var x=this.fieldVectors[R],W=r[R.fieldName].similarity(x),Z;if((Z=U[p])!==void 0)Z.score+=W,Z.matchData.combine(i[R]);else{var E={ref:p,score:W,matchData:i[R]};U[p]=E,v.push(E)}}}return v.sort(function(Kn,Yn){return Yn.score-Kn.score})},e.Index.prototype.toJSON=function(){var t=Object.keys(this.invertedIndex).sort().map(function(i){return[i,this.invertedIndex[i]]},this),n=Object.keys(this.fieldVectors).map(function(i){return[i,this.fieldVectors[i].toJSON()]},this);return{version:e.version,fields:this.fields,fieldVectors:n,invertedIndex:t,pipeline:this.pipeline.toJSON()}},e.Index.load=function(t){var n={},i={},r=t.fieldVectors,s=Object.create(null),o=t.invertedIndex,a=new e.TokenSet.Builder,l=e.Pipeline.load(t.pipeline);t.version!=e.version&&e.utils.warn(\"Version mismatch when loading serialised index. Current version of lunr '\"+e.version+\"' does not match serialized index '\"+t.version+\"'\");for(var u=0;u<r.length;u++){var f=r[u],y=f[0],g=f[1];i[y]=new e.Vector(g)}for(var u=0;u<o.length;u++){var f=o[u],L=f[0],b=f[1];a.insert(L),s[L]=b}return a.finish(),n.fields=t.fields,n.fieldVectors=i,n.invertedIndex=s,n.tokenSet=a.root,n.pipeline=l,new e.Index(n)};e.Builder=function(){this._ref=\"id\",this._fields=Object.create(null),this._documents=Object.create(null),this.invertedIndex=Object.create(null),this.fieldTermFrequencies={},this.fieldLengths={},this.tokenizer=e.tokenizer,this.pipeline=new e.Pipeline,this.searchPipeline=new e.Pipeline,this.documentCount=0,this._b=.75,this._k1=1.2,this.termIndex=0,this.metadataWhitelist=[]},e.Builder.prototype.ref=function(t){this._ref=t},e.Builder.prototype.field=function(t,n){if(/\\//.test(t))throw new RangeError(\"Field '\"+t+\"' contains illegal character '/'\");this._fields[t]=n||{}},e.Builder.prototype.b=function(t){t<0?this._b=0:t>1?this._b=1:this._b=t},e.Builder.prototype.k1=function(t){this._k1=t},e.Builder.prototype.add=function(t,n){var i=t[this._ref],r=Object.keys(this._fields);this._documents[i]=n||{},this.documentCount+=1;for(var s=0;s<r.length;s++){var o=r[s],a=this._fields[o].extractor,l=a?a(t):t[o],u=this.tokenizer(l,{fields:[o]}),f=this.pipeline.run(u),y=new e.FieldRef(i,o),g=Object.create(null);this.fieldTermFrequencies[y]=g,this.fieldLengths[y]=0,this.fieldLengths[y]+=f.length;for(var L=0;L<f.length;L++){var b=f[L];if(g[b]==null&&(g[b]=0),g[b]+=1,this.invertedIndex[b]==null){var T=Object.create(null);T._index=this.termIndex,this.termIndex+=1;for(var m=0;m<r.length;m++)T[r[m]]=Object.create(null);this.invertedIndex[b]=T}this.invertedIndex[b][o][i]==null&&(this.invertedIndex[b][o][i]=Object.create(null));for(var h=0;h<this.metadataWhitelist.length;h++){var _=this.metadataWhitelist[h],w=b.metadata[_];this.invertedIndex[b][o][i][_]==null&&(this.invertedIndex[b][o][i][_]=[]),this.invertedIndex[b][o][i][_].push(w)}}}},e.Builder.prototype.calculateAverageFieldLengths=function(){for(var t=Object.keys(this.fieldLengths),n=t.length,i={},r={},s=0;s<n;s++){var o=e.FieldRef.fromString(t[s]),a=o.fieldName;r[a]||(r[a]=0),r[a]+=1,i[a]||(i[a]=0),i[a]+=this.fieldLengths[o]}for(var l=Object.keys(this._fields),s=0;s<l.length;s++){var u=l[s];i[u]=i[u]/r[u]}this.averageFieldLength=i},e.Builder.prototype.createFieldVectors=function(){for(var t={},n=Object.keys(this.fieldTermFrequencies),i=n.length,r=Object.create(null),s=0;s<i;s++){for(var o=e.FieldRef.fromString(n[s]),a=o.fieldName,l=this.fieldLengths[o],u=new e.Vector,f=this.fieldTermFrequencies[o],y=Object.keys(f),g=y.length,L=this._fields[a].boost||1,b=this._documents[o.docRef].boost||1,T=0;T<g;T++){var m=y[T],h=f[m],_=this.invertedIndex[m]._index,w,N,F;r[m]===void 0?(w=e.idf(this.invertedIndex[m],this.documentCount),r[m]=w):w=r[m],N=w*((this._k1+1)*h)/(this._k1*(1-this._b+this._b*(l/this.averageFieldLength[a]))+h),N*=L,N*=b,F=Math.round(N*1e3)/1e3,u.insert(_,F)}t[o]=u}this.fieldVectors=t},e.Builder.prototype.createTokenSet=function(){this.tokenSet=e.TokenSet.fromArray(Object.keys(this.invertedIndex).sort())},e.Builder.prototype.build=function(){return this.calculateAverageFieldLengths(),this.createFieldVectors(),this.createTokenSet(),new e.Index({invertedIndex:this.invertedIndex,fieldVectors:this.fieldVectors,tokenSet:this.tokenSet,fields:Object.keys(this._fields),pipeline:this.searchPipeline})},e.Builder.prototype.use=function(t){var n=Array.prototype.slice.call(arguments,1);n.unshift(this),t.apply(this,n)},e.MatchData=function(t,n,i){for(var r=Object.create(null),s=Object.keys(i||{}),o=0;o<s.length;o++){var a=s[o];r[a]=i[a].slice()}this.metadata=Object.create(null),t!==void 0&&(this.metadata[t]=Object.create(null),this.metadata[t][n]=r)},e.MatchData.prototype.combine=function(t){for(var n=Object.keys(t.metadata),i=0;i<n.length;i++){var r=n[i],s=Object.keys(t.metadata[r]);this.metadata[r]==null&&(this.metadata[r]=Object.create(null));for(var o=0;o<s.length;o++){var a=s[o],l=Object.keys(t.metadata[r][a]);this.metadata[r][a]==null&&(this.metadata[r][a]=Object.create(null));for(var u=0;u<l.length;u++){var f=l[u];this.metadata[r][a][f]==null?this.metadata[r][a][f]=t.metadata[r][a][f]:this.metadata[r][a][f]=this.metadata[r][a][f].concat(t.metadata[r][a][f])}}}},e.MatchData.prototype.add=function(t,n,i){if(!(t in this.metadata)){this.metadata[t]=Object.create(null),this.metadata[t][n]=i;return}if(!(n in this.metadata[t])){this.metadata[t][n]=i;return}for(var r=Object.keys(i),s=0;s<r.length;s++){var o=r[s];o in this.metadata[t][n]?this.metadata[t][n][o]=this.metadata[t][n][o].concat(i[o]):this.metadata[t][n][o]=i[o]}},e.Query=function(t){this.clauses=[],this.allFields=t},e.Query.wildcard=new String(\"*\"),e.Query.wildcard.NONE=0,e.Query.wildcard.LEADING=1,e.Query.wildcard.TRAILING=2,e.Query.presence={OPTIONAL:1,REQUIRED:2,PROHIBITED:3},e.Query.prototype.clause=function(t){return\"fields\"in t||(t.fields=this.allFields),\"boost\"in t||(t.boost=1),\"usePipeline\"in t||(t.usePipeline=!0),\"wildcard\"in t||(t.wildcard=e.Query.wildcard.NONE),t.wildcard&e.Query.wildcard.LEADING&&t.term.charAt(0)!=e.Query.wildcard&&(t.term=\"*\"+t.term),t.wildcard&e.Query.wildcard.TRAILING&&t.term.slice(-1)!=e.Query.wildcard&&(t.term=\"\"+t.term+\"*\"),\"presence\"in t||(t.presence=e.Query.presence.OPTIONAL),this.clauses.push(t),this},e.Query.prototype.isNegated=function(){for(var t=0;t<this.clauses.length;t++)if(this.clauses[t].presence!=e.Query.presence.PROHIBITED)return!1;return!0},e.Query.prototype.term=function(t,n){if(Array.isArray(t))return t.forEach(function(r){this.term(r,e.utils.clone(n))},this),this;var i=n||{};return i.term=t.toString(),this.clause(i),this},e.QueryParseError=function(t,n,i){this.name=\"QueryParseError\",this.message=t,this.start=n,this.end=i},e.QueryParseError.prototype=new Error,e.QueryLexer=function(t){this.lexemes=[],this.str=t,this.length=t.length,this.pos=0,this.start=0,this.escapeCharPositions=[]},e.QueryLexer.prototype.run=function(){for(var t=e.QueryLexer.lexText;t;)t=t(this)},e.QueryLexer.prototype.sliceString=function(){for(var t=[],n=this.start,i=this.pos,r=0;r<this.escapeCharPositions.length;r++)i=this.escapeCharPositions[r],t.push(this.str.slice(n,i)),n=i+1;return t.push(this.str.slice(n,this.pos)),this.escapeCharPositions.length=0,t.join(\"\")},e.QueryLexer.prototype.emit=function(t){this.lexemes.push({type:t,str:this.sliceString(),start:this.start,end:this.pos}),this.start=this.pos},e.QueryLexer.prototype.escapeCharacter=function(){this.escapeCharPositions.push(this.pos-1),this.pos+=1},e.QueryLexer.prototype.next=function(){if(this.pos>=this.length)return e.QueryLexer.EOS;var t=this.str.charAt(this.pos);return this.pos+=1,t},e.QueryLexer.prototype.width=function(){return this.pos-this.start},e.QueryLexer.prototype.ignore=function(){this.start==this.pos&&(this.pos+=1),this.start=this.pos},e.QueryLexer.prototype.backup=function(){this.pos-=1},e.QueryLexer.prototype.acceptDigitRun=function(){var t,n;do t=this.next(),n=t.charCodeAt(0);while(n>47&&n<58);t!=e.QueryLexer.EOS&&this.backup()},e.QueryLexer.prototype.more=function(){return this.pos<this.length},e.QueryLexer.EOS=\"EOS\",e.QueryLexer.FIELD=\"FIELD\",e.QueryLexer.TERM=\"TERM\",e.QueryLexer.EDIT_DISTANCE=\"EDIT_DISTANCE\",e.QueryLexer.BOOST=\"BOOST\",e.QueryLexer.PRESENCE=\"PRESENCE\",e.QueryLexer.lexField=function(t){return t.backup(),t.emit(e.QueryLexer.FIELD),t.ignore(),e.QueryLexer.lexText},e.QueryLexer.lexTerm=function(t){if(t.width()>1&&(t.backup(),t.emit(e.QueryLexer.TERM)),t.ignore(),t.more())return e.QueryLexer.lexText},e.QueryLexer.lexEditDistance=function(t){return t.ignore(),t.acceptDigitRun(),t.emit(e.QueryLexer.EDIT_DISTANCE),e.QueryLexer.lexText},e.QueryLexer.lexBoost=function(t){return t.ignore(),t.acceptDigitRun(),t.emit(e.QueryLexer.BOOST),e.QueryLexer.lexText},e.QueryLexer.lexEOS=function(t){t.width()>0&&t.emit(e.QueryLexer.TERM)},e.QueryLexer.termSeparator=e.tokenizer.separator,e.QueryLexer.lexText=function(t){for(;;){var n=t.next();if(n==e.QueryLexer.EOS)return e.QueryLexer.lexEOS;if(n.charCodeAt(0)==92){t.escapeCharacter();continue}if(n==\":\")return e.QueryLexer.lexField;if(n==\"~\")return t.backup(),t.width()>0&&t.emit(e.QueryLexer.TERM),e.QueryLexer.lexEditDistance;if(n==\"^\")return t.backup(),t.width()>0&&t.emit(e.QueryLexer.TERM),e.QueryLexer.lexBoost;if(n==\"+\"&&t.width()===1||n==\"-\"&&t.width()===1)return t.emit(e.QueryLexer.PRESENCE),e.QueryLexer.lexText;if(n.match(e.QueryLexer.termSeparator))return e.QueryLexer.lexTerm}},e.QueryParser=function(t,n){this.lexer=new e.QueryLexer(t),this.query=n,this.currentClause={},this.lexemeIdx=0},e.QueryParser.prototype.parse=function(){this.lexer.run(),this.lexemes=this.lexer.lexemes;for(var t=e.QueryParser.parseClause;t;)t=t(this);return this.query},e.QueryParser.prototype.peekLexeme=function(){return this.lexemes[this.lexemeIdx]},e.QueryParser.prototype.consumeLexeme=function(){var t=this.peekLexeme();return this.lexemeIdx+=1,t},e.QueryParser.prototype.nextClause=function(){var t=this.currentClause;this.query.clause(t),this.currentClause={}},e.QueryParser.parseClause=function(t){var n=t.peekLexeme();if(n!=null)switch(n.type){case e.QueryLexer.PRESENCE:return e.QueryParser.parsePresence;case e.QueryLexer.FIELD:return e.QueryParser.parseField;case e.QueryLexer.TERM:return e.QueryParser.parseTerm;default:var i=\"expected either a field or a term, found \"+n.type;throw n.str.length>=1&&(i+=\" with value '\"+n.str+\"'\"),new e.QueryParseError(i,n.start,n.end)}},e.QueryParser.parsePresence=function(t){var n=t.consumeLexeme();if(n!=null){switch(n.str){case\"-\":t.currentClause.presence=e.Query.presence.PROHIBITED;break;case\"+\":t.currentClause.presence=e.Query.presence.REQUIRED;break;default:var i=\"unrecognised presence operator'\"+n.str+\"'\";throw new e.QueryParseError(i,n.start,n.end)}var r=t.peekLexeme();if(r==null){var i=\"expecting term or field, found nothing\";throw new e.QueryParseError(i,n.start,n.end)}switch(r.type){case e.QueryLexer.FIELD:return e.QueryParser.parseField;case e.QueryLexer.TERM:return e.QueryParser.parseTerm;default:var i=\"expecting term or field, found '\"+r.type+\"'\";throw new e.QueryParseError(i,r.start,r.end)}}},e.QueryParser.parseField=function(t){var n=t.consumeLexeme();if(n!=null){if(t.query.allFields.indexOf(n.str)==-1){var i=t.query.allFields.map(function(o){return\"'\"+o+\"'\"}).join(\", \"),r=\"unrecognised field '\"+n.str+\"', possible fields: \"+i;throw new e.QueryParseError(r,n.start,n.end)}t.currentClause.fields=[n.str];var s=t.peekLexeme();if(s==null){var r=\"expecting term, found nothing\";throw new e.QueryParseError(r,n.start,n.end)}switch(s.type){case e.QueryLexer.TERM:return e.QueryParser.parseTerm;default:var r=\"expecting term, found '\"+s.type+\"'\";throw new e.QueryParseError(r,s.start,s.end)}}},e.QueryParser.parseTerm=function(t){var n=t.consumeLexeme();if(n!=null){t.currentClause.term=n.str.toLowerCase(),n.str.indexOf(\"*\")!=-1&&(t.currentClause.usePipeline=!1);var i=t.peekLexeme();if(i==null){t.nextClause();return}switch(i.type){case e.QueryLexer.TERM:return t.nextClause(),e.QueryParser.parseTerm;case e.QueryLexer.FIELD:return t.nextClause(),e.QueryParser.parseField;case e.QueryLexer.EDIT_DISTANCE:return e.QueryParser.parseEditDistance;case e.QueryLexer.BOOST:return e.QueryParser.parseBoost;case e.QueryLexer.PRESENCE:return t.nextClause(),e.QueryParser.parsePresence;default:var r=\"Unexpected lexeme type '\"+i.type+\"'\";throw new e.QueryParseError(r,i.start,i.end)}}},e.QueryParser.parseEditDistance=function(t){var n=t.consumeLexeme();if(n!=null){var i=parseInt(n.str,10);if(isNaN(i)){var r=\"edit distance must be numeric\";throw new e.QueryParseError(r,n.start,n.end)}t.currentClause.editDistance=i;var s=t.peekLexeme();if(s==null){t.nextClause();return}switch(s.type){case e.QueryLexer.TERM:return t.nextClause(),e.QueryParser.parseTerm;case e.QueryLexer.FIELD:return t.nextClause(),e.QueryParser.parseField;case e.QueryLexer.EDIT_DISTANCE:return e.QueryParser.parseEditDistance;case e.QueryLexer.BOOST:return e.QueryParser.parseBoost;case e.QueryLexer.PRESENCE:return t.nextClause(),e.QueryParser.parsePresence;default:var r=\"Unexpected lexeme type '\"+s.type+\"'\";throw new e.QueryParseError(r,s.start,s.end)}}},e.QueryParser.parseBoost=function(t){var n=t.consumeLexeme();if(n!=null){var i=parseInt(n.str,10);if(isNaN(i)){var r=\"boost must be numeric\";throw new e.QueryParseError(r,n.start,n.end)}t.currentClause.boost=i;var s=t.peekLexeme();if(s==null){t.nextClause();return}switch(s.type){case e.QueryLexer.TERM:return t.nextClause(),e.QueryParser.parseTerm;case e.QueryLexer.FIELD:return t.nextClause(),e.QueryParser.parseField;case e.QueryLexer.EDIT_DISTANCE:return e.QueryParser.parseEditDistance;case e.QueryLexer.BOOST:return e.QueryParser.parseBoost;case e.QueryLexer.PRESENCE:return t.nextClause(),e.QueryParser.parsePresence;default:var r=\"Unexpected lexeme type '\"+s.type+\"'\";throw new e.QueryParseError(r,s.start,s.end)}}},function(t,n){typeof define==\"function\"&&define.amd?define(n):typeof an==\"object\"?cn.exports=n():t.lunr=n()}(this,function(){return e})})()});Handlebars.registerHelper(\"groupChanged\",function(e,t,n){let i=t||\"\";if(e.group!==i)return delete e.nestedContext,e.group=i,n.fn(this)});Handlebars.registerHelper(\"nestingChanged\",function(e,t,n){if(t.nested_context&&t.nested_context!==e.nestedContext){if(e.nestedContext=t.nested_context,e.lastModuleSeenInGroup!==t.nested_context)return n.fn(this)}else e.lastModuleSeenInGroup=t.title});Handlebars.registerHelper(\"showSections\",function(e,t){if(e.sections.length>0)return t.fn(this)});Handlebars.registerHelper(\"showSummary\",function(e,t){if(e.nodeGroups)return t.fn(this)});Handlebars.registerHelper(\"isArray\",function(e,t){return Array.isArray(e)?t.fn(this):t.inverse(this)});Handlebars.registerHelper(\"isNonEmptyArray\",function(e,t){return Array.isArray(e)&&e.length>0?t.fn(this):t.inverse(this)});Handlebars.registerHelper(\"isEmptyArray\",function(e,t){return Array.isArray(e)&&e.length===0?t.fn(this):t.inverse(this)});Handlebars.registerHelper(\"isLocal\",function(e,t){let n=window.location.pathname.split(\"/\").pop();return e+\".html\"===n?t.fn(this):t.inverse(this)});var c=document.querySelector.bind(document),k=document.querySelectorAll.bind(document);function pt(e){return e.replace(/[\\-\\[\\]{}()*+?.,\\\\\\^$|#\\s]/g,\"\\\\$&\")}function he(e){return String(e).replace(/&/g,\"&amp;\").replace(/</g,\"&lt;\").replace(/>/g,\"&gt;\").replace(/\"/g,\"&quot;\")}function $(){return document.body.dataset.type}function ht(e,t){if(e){for(let n of e){let i=n.nodeGroups&&n.nodeGroups.find(r=>r.nodes.some(s=>s.anchor===t));if(i)return i.key}return null}}function me(e,t=!1){if(!e)return t?document.getElementById(\"top-content\"):null;let n=document.getElementById(e);return n?n.matches(\".detail\")?n:[\"h1\",\"h2\",\"h3\",\"h4\",\"h5\",\"h6\"].includes(n.tagName.toLowerCase())?si(n):null:null}function si(e){let t=[e],n=e.nextElementSibling,i=e.tagName.toLowerCase();for(;n;){let s=n.tagName.toLowerCase();[\"h1\",\"h2\",\"h3\",\"h4\",\"h5\",\"h6\"].includes(s)&&s<=i?n=null:(t.push(n),n=n.nextElementSibling)}let r=document.createElement(\"div\");return r.append(...t),r}function ee(){return window.location.hash.replace(/^#/,\"\")}function mt(e){return new URLSearchParams(window.location.search).get(e)}function gt(e){return fetch(e).then(t=>t.ok).catch(()=>!1)}function yt(e){document.readyState!==\"loading\"?e():document.addEventListener(\"DOMContentLoaded\",e)}function te(e){return!e||e.trim()===\"\"}function vt(e,t){let n;return function(...r){clearTimeout(n),n=setTimeout(()=>{n=null,e(...r)},t)}}function ge(){return document.head.querySelector(\"meta[name=project][content]\").content}function ye(){return/(Mac|iPhone|iPod|iPad)/i.test(navigator.platform)}var bt=\"ex_doc:settings\",oi={tooltips:!0,theme:null,livebookUrl:null},He=class{constructor(){this._subscribers=[],this._settings=oi,this._loadSettings()}get(){return this._settings}update(t){let n=this._settings;this._settings={...this._settings,...t},this._subscribers.forEach(i=>i(this._settings,n)),this._storeSettings()}getAndSubscribe(t){this._subscribers.push(t),t(this._settings)}_loadSettings(){try{let t=localStorage.getItem(bt);if(t){let n=JSON.parse(t);this._settings={...this._settings,...n}}this._loadSettingsLegacy()}catch(t){console.error(`Failed to load settings: ${t}`)}}_storeSettings(){try{this._storeSettingsLegacy(),localStorage.setItem(bt,JSON.stringify(this._settings))}catch(t){console.error(`Failed to persist settings: ${t}`)}}_loadSettingsLegacy(){localStorage.getItem(\"tooltipsDisabled\")!==null&&(this._settings={...this._settings,tooltips:!1}),localStorage.getItem(\"night-mode\")===\"true\"&&(this._settings={...this._settings,nightMode:!0}),this._settings.nightMode===!0&&(this._settings={...this._settings,theme:\"dark\"})}_storeSettingsLegacy(){this._settings.tooltips?localStorage.removeItem(\"tooltipsDisabled\"):localStorage.setItem(\"tooltipsDisabled\",\"true\"),this._settings.nightMode!==null?localStorage.setItem(\"night-mode\",this._settings.nightMode===!0?\"true\":\"false\"):localStorage.removeItem(\"night-mode\"),this._settings.theme!==null?(localStorage.setItem(\"night-mode\",this._settings.theme===\"dark\"?\"true\":\"false\"),this._settings.nightMode=this._settings.theme===\"dark\"):(delete this._settings.nightMode,localStorage.removeItem(\"night-mode\"))}},O=new He;var ai=\".content\",St=\".content-inner\",ci=\".livebook-badge\";function xt(e){e||di(),fi(),li(),ui()}function li(){c(ai).querySelectorAll(\"a\").forEach(e=>{e.querySelector(\"code, img\")&&e.classList.add(\"no-underline\")})}function ui(){[\"warning\",\"info\",\"error\",\"neutral\",\"tip\"].forEach(t=>{k(`blockquote h3.${t}, blockquote h4.${t}`).forEach(n=>{n.closest(\"blockquote\").classList.add(t)})})}function di(){c(St).setAttribute(\"tabindex\",-1),c(St).focus()}function fi(){let t=window.location.pathname.replace(/(\\.html)?$/,\".livemd\"),n=new URL(t,window.location.href).toString();O.getAndSubscribe(i=>{let r=i.livebookUrl?hi(i.livebookUrl,n):pi(n);for(let s of k(ci))s.href=r})}function pi(e){return`https://livebook.dev/run?url=${encodeURIComponent(e)}`}function hi(e,t){return`${e}/import?url=${encodeURIComponent(t)}`}var Ot=ft(kt());var Pi=768,De=300,ne=\".sidebar-toggle\",Ri=\".content\",M={CLOSED:\"closed\",OPEN:\"open\",NO_PREF:\"no_pref\"},Q={opened:\"sidebar-opened\",openingStart:\"sidebar-opening-start\",opening:\"sidebar-opening\",closed:\"sidebar-closed\",closingStart:\"sidebar-closing-start\",closing:\"sidebar-closing\"},Ni=Object.values(Q),A={togglingTimeout:null,lastWindowWidth:window.innerWidth,sidebarPreference:M.NO_PREF};function It(){Ct(),Qi(),Hi()}function Qi(){let e=sessionStorage.getItem(\"sidebar_width\");e&&_t(e),new ResizeObserver(n=>{for(let i of n)_t(i.contentRect.width)}).observe(document.getElementById(\"sidebar\"))}function _t(e){sessionStorage.setItem(\"sidebar_width\",e),document.body.style.setProperty(\"--sidebarWidth\",`${e}px`)}function Ct(){sessionStorage.getItem(\"sidebar_state\")===\"closed\"||At()?(q(Q.closed),c(ne).setAttribute(\"aria-expanded\",\"false\")):(q(Q.opened),c(ne).setAttribute(\"aria-expanded\",\"true\")),setTimeout(()=>c(ne).classList.add(\"sidebar-toggle--animated\"),De)}function At(){return window.matchMedia(`screen and (max-width: ${Pi}px)`).matches}function q(...e){document.body.classList.remove(...Ni),document.body.classList.add(...e)}function Hi(){c(ne).addEventListener(\"click\",e=>{Me(),Bi()}),c(Ri).addEventListener(\"click\",e=>{Mi()}),window.addEventListener(\"resize\",(0,Ot.default)(e=>{Di()},100))}function Me(){return Be()?Pt():Fi()}function Be(){return document.body.classList.contains(Q.opened)||document.body.classList.contains(Q.opening)}function Fi(){Rt(),sessionStorage.setItem(\"sidebar_state\",\"opened\"),c(ne).setAttribute(\"aria-expanded\",\"true\"),requestAnimationFrame(()=>{q(Q.openingStart),requestAnimationFrame(()=>(q(Q.opening),new Promise((e,t)=>{A.togglingTimeout=setTimeout(()=>{q(Q.opened),e()},De)})))})}function Pt(){Rt(),sessionStorage.setItem(\"sidebar_state\",\"closed\"),c(ne).setAttribute(\"aria-expanded\",\"false\"),requestAnimationFrame(()=>{q(Q.closingStart),requestAnimationFrame(()=>(q(Q.closing),new Promise((e,t)=>{A.togglingTimeout=setTimeout(()=>{q(Q.closed),e()},De)})))})}function Rt(){A.togglingTimeout&&(clearTimeout(A.togglingTimeout),A.togglingTimeout=null)}function Di(){A.lastWindowWidth!==window.innerWidth&&(A.lastWindowWidth=window.innerWidth,(A.sidebarPreference===M.OPEN||A.sidebarPreference===M.NO_PREF)&&Ct())}function Mi(){At()&&Be()&&Pt()}function Bi(){switch(A.sidebarPreference){case M.OPEN:A.sidebarPreference=M.CLOSED;break;case M.CLOSED:A.sidebarPreference=M.OPEN;break;case M.NO_PREF:Be()?A.sidebarPreference=M.OPEN:A.sidebarPreference=M.CLOSED}}function ce(){return window.sidebarNodes||{}}function Nt(){return window.versionNodes||[]}var ze={search:\"search\",extras:\"extras\",modules:\"modules\",tasks:\"tasks\"},$e=[ze.extras,ze.modules,ze.tasks],Se=e=>`#${e}-full-list`;function Qt(){$e.forEach(e=>{zi(ce(),e)}),be($()),Ft(),Ht(),Gi()}function zi(e,t){let n=e[t]||[],i=c(Se(t));if(!i)return;let r=Handlebars.templates[\"sidebar-items\"]({nodes:n,group:\"\"});i.innerHTML=r,i.querySelectorAll(\"ul\").forEach(s=>{if(s.innerHTML.trim()===\"\"){let o=s.previousElementSibling;o.classList.contains(\"expand\")&&o.classList.remove(\"expand\"),s.remove()}}),i.querySelectorAll(\"li a + button\").forEach(s=>{s.addEventListener(\"click\",o=>{let l=o.target.closest(\"li\");qi(l)})}),i.querySelectorAll(\"li a\").forEach(s=>{s.addEventListener(\"click\",o=>{let l=o.target.closest(\"li\"),u=i.querySelector(\".current-section\");u&&ji(u),s.matches(\".expand\")&&s.pathname===window.location.pathname&&qe(l)})})}function qe(e){e.classList.add(\"open\"),e.querySelector(\"button[aria-controls]\").setAttribute(\"aria-expanded\",\"true\")}function $i(e){e.classList.remove(\"open\"),e.querySelector(\"button[aria-controls]\").setAttribute(\"aria-expanded\",\"false\")}function qi(e){e.classList.contains(\"open\")?$i(e):qe(e)}function Vi(e){e.classList.add(\"current-section\"),e.querySelector(\"a\").setAttribute(\"aria-current\",\"true\")}function ji(e){e.classList.remove(\"current-section\"),e.querySelector(\"a\").setAttribute(\"aria-current\",\"false\")}function Ui(e){e.classList.add(\"current-hash\"),e.querySelector(\"a\").setAttribute(\"aria-current\",\"true\")}function Wi(e){e.classList.remove(\"current-hash\"),e.querySelector(\"a\").setAttribute(\"aria-current\",\"false\")}function be(e){$e.forEach(t=>{let n=c(`#${t}-list-tab-button`);if(n){let i=c(`#${n.getAttribute(\"aria-controls\")}`);t===e?(n.parentElement.classList.add(\"selected\"),n.setAttribute(\"aria-selected\",\"true\"),n.setAttribute(\"tabindex\",\"0\"),i.removeAttribute(\"hidden\")):(n.parentElement.classList.remove(\"selected\"),n.setAttribute(\"aria-selected\",\"false\"),n.setAttribute(\"tabindex\",\"-1\"),i.setAttribute(\"hidden\",\"hidden\"))}})}function Ht(){let e=c(Se($()));if(!e)return;let t=e.querySelector(\"li.current-page\");t&&(t.scrollIntoView(),e.scrollTop-=40)}function Ft(){let e=ee()||\"content\",n=ce()[$()]||[],i=ht(n,e),r=c(Se($()));if(!r)return;let s=r.querySelector(`li.current-page a.expand[href$=\"#${i}\"]`);s&&qe(s.closest(\"li\"));let o=r.querySelector(`li.current-page a[href$=\"#${e}\"]`);if(o){let a=o.closest(\"ul\");a.classList.contains(\"deflist\")&&Vi(a.closest(\"li\")),Ui(o.closest(\"li\"))}}function Gi(){$e.forEach(t=>{let n=c(`#${t}-list-tab-button`);n&&n.addEventListener(\"click\",i=>{be(t),Ht()})});let e=c(\"#sidebar-listNav\");e.addEventListener(\"keydown\",t=>{if(t.key!==\"ArrowRight\"&&t.key!==\"ArrowLeft\")return;let n=Array.from(e.querySelectorAll('[role=\"tab\"]')).map(r=>r.dataset.type),i=e.querySelector('[role=\"tab\"][aria-selected=\"true\"]').dataset.type;if(t.key===\"ArrowRight\"){let r=n.indexOf(i)+1;r>=n.length&&(r=0);let s=n[r];be(s),c(`#${s}-list-tab-button`).focus()}else if(t.key===\"ArrowLeft\"){let r=n.indexOf(i)-1;r<0&&(r=n.length-1);let s=n[r];be(s),c(`#${s}-list-tab-button`).focus()}}),window.addEventListener(\"hashchange\",t=>{let n=c(Se($()));if(!n)return;let i=n.querySelector(\"li.current-page li.current-hash\");i&&Wi(i),Ft()})}var B={module:\"module\",moduleChild:\"module-child\",mixTask:\"mix-task\",extra:\"extra\",section:\"section\"};function Mt(e,t=8){if(te(e))return[];let n=ce(),i=[...Ve(n.modules,e,B.module,\"module\"),...Ki(n.modules,e,B.moduleChild),...Ve(n.tasks,e,B.mixTask,\"mix task\"),...Ve(n.extras,e,B.extra,\"page\"),...je(n.modules,e,B.section,\"module\"),...je(n.tasks,e,B.section,\"mix task\"),...je(n.extras,e,B.section,\"page\")].filter(r=>r!==null);return nr(i).slice(0,t)}function Ve(e,t,n,i){return e.map(r=>Ji(r,t,n,i))}function Ki(e,t,n){return e.filter(i=>i.nodeGroups).flatMap(i=>i.nodeGroups.flatMap(({key:r,nodes:s})=>{let o=tr(r);return s.map(a=>Xi(a,i.id,t,n,o)||er(a,i.id,t,n,o))}))}function je(e,t,n,i){return e.flatMap(r=>Yi(r).map(s=>Zi(r,s,t,n,i)))}function Yi(e){return(e.sections||[]).concat(e.headers||[])}function Ji(e,t,n,i){return Ee(e.title,t)?{link:`${e.id}.html`,title:we(e.title,t),description:null,matchQuality:Le(e.title,t),deprecated:e.deprecated,labels:[i],category:n}:null}function Xi(e,t,n,i,r){return Ee(e.id,n)?{link:`${t}.html#${e.anchor}`,title:we(e.id,n),labels:[r],description:t,matchQuality:Le(e.id,n),deprecated:e.deprecated,category:i}:null}function Zi(e,t,n,i,r){return Bt(t.id,n)?{link:`${e.id}.html#${t.anchor}`,title:we(t.id,n),description:e.title,matchQuality:Le(t.id,n),labels:[r,\"section\"],category:i}:null}function er(e,t,n,i,r){let s=`${t}.${e.id}`,o=`${t}:${e.id}`,a,l;if(Ee(s,n))a=s,l=/\\./g;else if(Ee(o,n))a=o,l=/:/g;else return null;let u=n.replace(l,\" \");return Bt(e.id,u)?{link:`${t}.html#${e.anchor}`,title:we(e.id,u),label:r,description:t,matchQuality:Le(a,n),deprecated:e.deprecated,category:i}:null}function tr(e){switch(e){case\"callbacks\":return\"callback\";case\"types\":return\"type\";default:return\"function\"}}function nr(e){return e.slice().sort((t,n)=>t.matchQuality!==n.matchQuality?n.matchQuality-t.matchQuality:Dt(t.category)-Dt(n.category))}function Dt(e){switch(e){case B.module:return 1;case B.moduleChild:return 2;case B.mixTask:return 3;default:return 4}}function Bt(e,t){return Te(t).some(i=>zt(e,i))}function Ee(e,t){return Te(t).every(i=>zt(e,i))}function zt(e,t){return e.toLowerCase().includes(t.toLowerCase())}function Le(e,t){let n=Te(t),r=n.map(o=>o.length).reduce((o,a)=>o+a,0)/e.length,s=ir(e,n[0])?1:0;return r+s}function ir(e,t){return e.toLowerCase().startsWith(t.toLowerCase())}function Te(e){return e.trim().split(/\\s+/)}function we(e,t){let n=Te(t).sort((i,r)=>r.length-i.length);return xe(e,n)}function xe(e,t){if(t.length===0)return e;let[n,...i]=t,r=e.match(new RegExp(`(.*)(${pt(n)})(.*)`,\"i\"));if(r){let[,s,o,a]=r;return xe(s,t)+\"<em>\"+he(o)+\"</em>\"+xe(a,t)}else return xe(e,i)}var ke=null,G=null;function $t(){G=document.getElementById(\"toast\"),G.addEventListener(\"click\",e=>{clearTimeout(ke),e.target.classList.remove(\"show\")})}function Ue(e){G&&(clearTimeout(ke),G.innerText=e,G.classList.add(\"show\"),ke=setTimeout(()=>{G.classList.remove(\"show\"),ke=setTimeout(function(){G.innerText=\"\"},1e3)},5e3))}var qt=\"dark\",We=[\"system\",\"dark\",\"light\"];function Vt(e){O.getAndSubscribe(t=>{document.body.classList.toggle(qt,Ut(e||t.theme))}),sr()}function jt(){let e=We[We.indexOf(Ge())+1]||We[0];O.update({theme:e}),Ue(`Set theme to \"${e}\"`)}function Ge(){return O.get().theme||\"system\"}function Ut(e){return e===\"dark\"||rr()&&(e==null||e===\"system\")}function rr(){return window.matchMedia(\"(prefers-color-scheme: dark)\").matches}function sr(){window.matchMedia(\"(prefers-color-scheme: dark)\").addListener(e=>{let t=O.get().theme,n=Ut(t);(t==null||t===\"system\")&&(document.body.classList.toggle(qt,n),Ue(`Browser changed theme to \"${n?\"dark\":\"light\"}\"`))})}var ie=\".autocomplete\",Oe=\".autocomplete-suggestions\",_e=\".autocomplete-suggestion\",I={autocompleteSuggestions:[],previewOpen:!1,selectedIdx:-1};function or(){c(ie).classList.add(\"shown\")}function Ke(){c(ie).classList.remove(\"shown\")}function Wt(){return c(ie).classList.contains(\"shown\")}function Ye(e){I.autocompleteSuggestions=Mt(e),I.selectedIdx=-1,te(e)?Ke():(ar({term:e,suggestions:I.autocompleteSuggestions}),Ie(0),or())}function ar({term:e,suggestions:t}){let n=Handlebars.templates[\"autocomplete-suggestions\"]({suggestions:t,term:e}),i=c(ie);i.innerHTML=n}function Gt(){return I.selectedIdx===-1?null:I.autocompleteSuggestions[I.selectedIdx]}function Ie(e){Yt(cr(e))}function Kt(e){if(e.data.type===\"preview\"){let{contentHeight:t}=e.data,n=c(\".autocomplete-preview\");n&&(n.style.height=`${t+32}px`,n.classList.remove(\"loading\"))}}function Yt(e){I.selectedIdx=e;let t=c(Oe),n=c(`${_e}.selected`),i=c(`${_e}[data-index=\"${I.selectedIdx}\"]`);if(n&&n.classList.remove(\"selected\"),i){if(I.previewOpen){Xt(),window.addEventListener(\"message\",Kt),t.classList.add(\"previewing\");let r=document.createElement(\"div\");r.classList.add(\"autocomplete-preview\"),r.classList.add(\"loading\");let s=i.href.replace(\".html\",`.html?preview=true&theme=${Ge()}`),o=document.createElement(\"iframe\");o.setAttribute(\"src\",s),r.appendChild(document.createElement(\"div\")),r.appendChild(document.createElement(\"span\")),r.appendChild(o),i.parentNode.insertBefore(r,i.nextSibling)}i.classList.add(\"selected\"),i.scrollIntoView({block:\"nearest\"})}else t&&(t.scrollTop=0)}function Jt(){I.previewOpen?Ce():Je()}function Ce(){I.previewOpen=!1;let e=c(Oe);e&&e.classList.remove(\"previewing\"),Xt()}function Je(e){I.previewOpen=!0,e?e=e.closest(_e):e=c(`${_e}[data-index=\"${I.selectedIdx}\"]`),e&&Yt(parseInt(e.dataset.index))}function Xt(){let e=c(\".autocomplete-preview\");e&&(e.remove(),window.removeEventListener(\"message\",Kt))}function cr(e){let t=I.autocompleteSuggestions.length+1;return(I.selectedIdx+e+1+t)%t-1}var le=\"form.search-bar input\",lr=\"form.search-bar .search-close-button\";function nn(){ur(),window.onTogglePreviewClick=function(e,t){e.preventDefault(),e.stopImmediatePropagation(),Xe(),t?Je(e.target):Ce()}}function rn(e){let t=c(le);t.value=e}function Xe(){let e=c(le);document.body.classList.add(\"search-focused\"),e.focus()}function ur(){let e=c(le);if(document.querySelector('meta[name=\"exdoc:autocomplete\"][content=\"off\"]'))return e.addEventListener(\"keydown\",t=>{t.key===\"Enter\"&&Zt(t)}),!0;e.addEventListener(\"keydown\",t=>{let n=ye();t.key===\"Escape\"?(Ae(),e.blur()):t.key===\"Enter\"?Zt(t):t.key===\"ArrowUp\"||n&&t.ctrlKey&&t.key===\"p\"?(Ie(-1),t.preventDefault()):t.key===\"ArrowDown\"||n&&t.ctrlKey&&t.key===\"n\"?(Ie(1),t.preventDefault()):t.key===\"Tab\"&&(Jt(),t.preventDefault())}),e.addEventListener(\"input\",t=>{Ye(t.target.value)}),e.addEventListener(\"focus\",t=>{document.body.classList.contains(\"search-focused\")||(document.body.classList.add(\"search-focused\"),Ye(t.target.value))}),e.addEventListener(\"blur\",t=>{let n=t.relatedTarget,i=c(Oe);if(n&&i&&i.contains(n))return setTimeout(()=>{Wt()&&e.focus()},1e3),null;Pe()}),c(ie).addEventListener(\"click\",t=>{t.shiftKey||t.ctrlKey?e.focus():(Ae(),Pe())}),c(lr).addEventListener(\"click\",t=>{Ae(),Pe()})}function Zt(e){let t=c(le),n=e.shiftKey||e.ctrlKey,i=Gt();e.preventDefault();let r=n?\"_blank\":\"_self\",s=document.createElement(\"a\");if(s.setAttribute(\"target\",r),i)s.setAttribute(\"href\",i.link);else{let o=document.querySelector('meta[name=\"exdoc:full-text-search-url\"]'),a=o?o.getAttribute(\"content\"):\"search.html?q=\";s.setAttribute(\"href\",`${a}${encodeURIComponent(t.value)}`)}s.click(),n||(Ae(),Pe())}function Ae(){let e=c(le);e.value=\"\"}function Pe(){Ce(),document.body.classList.remove(\"search-focused\"),Ke()}var en=window.scrollY,tn=70;window.addEventListener(\"scroll\",function(){let e=window.scrollY;e>tn*2&&document.body.classList.add(\"scroll-sticky\"),e===0&&document.body.classList.remove(\"scroll-sticky\"),e>en&&e>tn?document.body.classList.remove(\"scroll-sticky\"):document.body.classList.add(\"scroll-sticky\"),en=e<=0?0:e},!1);var sn=\".sidebar-projectVersion\",dr=\".sidebar-projectVersionsDropdown\";function on(){let e=Nt();if(e.length>0){let n=c(sn).textContent.trim(),i=pr(e,n);fr({nodes:i})}}function fr({nodes:e}){let t=c(sn),n=Handlebars.templates[\"versions-dropdown\"]({nodes:e});t.innerHTML=n,c(dr).addEventListener(\"change\",mr)}function pr(e,t){return hr(e,t).map(i=>({...i,isCurrentVersion:i.version===t}))}function hr(e,t){return e.some(i=>i.version===t)?e:[{version:t,url:\"#\"},...e]}function mr(e){let t=e.target.value,n=window.location.pathname.split(\"/\").pop()+window.location.hash,i=`${t}/${n}`;gt(i).then(r=>{r?window.location.href=i:window.location.href=t})}var H=ft(ln());var Re=80,gr=\"#search\";function dn(){if(window.location.pathname.endsWith(\"/search.html\")){let e=mt(\"q\");yr(e)}}async function yr(e){if(te(e))Ze({value:e});else{rn(e);let t=await vr();try{let n=e.replaceAll(/(\\B|\\\\):/g,\"\\\\:\"),i=Or(t.search(n));Ze({value:e,results:i})}catch(n){Ze({value:e,errorMessage:n.message})}}}function Ze({value:e,results:t,errorMessage:n}){let i=c(gr),r=Handlebars.templates[\"search-results\"]({value:e,results:t,errorMessage:n});i.innerHTML=r}async function vr(){H.default.tokenizer.separator=/\\s+/,H.default.QueryLexer.termSeparator=/\\s+/,H.default.Pipeline.registerFunction(pn,\"docTokenSplitter\"),H.default.Pipeline.registerFunction(hn,\"docTrimmer\");let e=await br();if(e)return e;let t=wr();return Sr(t),t}async function br(){try{let e=sessionStorage.getItem(fn());if(e){let t=await Er(e);return H.default.Index.load(t)}else return null}catch(e){return console.error(\"Failed to load index: \",e),null}}async function Sr(e){try{let t=await xr(e);sessionStorage.setItem(fn(),t)}catch(t){console.error(\"Failed to save index: \",t)}}async function xr(e){let t=new Blob([JSON.stringify(e)],{type:\"application/json\"}).stream().pipeThrough(new window.CompressionStream(\"gzip\")),i=await(await new Response(t).blob()).arrayBuffer();return Lr(i)}async function Er(e){let t=new Blob([Tr(e)],{type:\"application/json\"}).stream().pipeThrough(new window.DecompressionStream(\"gzip\")),n=await new Response(t).text();return JSON.parse(n)}function Lr(e){let t=\"\",n=new Uint8Array(e),i=n.byteLength;for(let r=0;r<i;r++)t+=String.fromCharCode(n[r]);return window.btoa(t)}function Tr(e){let t=window.atob(e),n=t.length,i=new Uint8Array(new ArrayBuffer(n));for(let r=0;r<n;r++)i[r]=t.charCodeAt(r);return i}function fn(){return`idv4:${ge()}`}function wr(){return(0,H.default)(function(){this.ref(\"ref\"),this.field(\"title\",{boost:3}),this.field(\"doc\"),this.field(\"type\"),this.metadataWhitelist=[\"position\"],this.pipeline.remove(H.default.stopWordFilter),this.pipeline.remove(H.default.trimmer),this.use(kr),this.use(_r),searchData.items.forEach(e=>{this.add(e)})})}function kr(e){e.pipeline.before(H.default.stemmer,pn)}function pn(e){let t=e.toString().split(/\\:|\\.|\\/|_|-/).map(n=>e.clone().update(()=>n));return t.length>1?[...t,e]:t}function _r(e){e.pipeline.before(H.default.stemmer,hn)}function hn(e){return e.update(function(t){return t.replace(/^[^@:\\w]+/,\"\").replace(/[^\\?\\!\\w]+$/,\"\")})}function Or(e){return e.filter(t=>un(t.ref)).map(t=>{let n=un(t.ref),i=t.matchData.metadata;return{...n,metadata:i,excerpts:Ir(n,i)}})}function un(e){return searchData.items.find(t=>t.ref===e)||null}function Ir(e,t){let{doc:n}=e,r=Object.keys(t).filter(s=>\"doc\"in t[s]).map(s=>t[s].doc.position.map(([o,a])=>Cr(n,o,a))).reduce((s,o)=>s.concat(o),[]);return r.length===0?[n.slice(0,Re*2)+(Re*2<n.length?\"...\":\"\")]:r.slice(0,1)}function Cr(e,t,n){let i=Math.max(t-Re,0),r=Math.min(t+n+Re,e.length);return[i>0?\"...\":\"\",e.slice(i,t),\"<em>\"+he(e.slice(t,t+n))+\"</em>\",e.slice(t+n,r),r<e.length?\"...\":\"\"].join(\"\")}var Ar=\"hll\";function gn(){Pr()}function Pr(){k(\"[data-group-id]\").forEach(t=>{let n=t.getAttribute(\"data-group-id\");t.addEventListener(\"mouseenter\",i=>{mn(n,!0)}),t.addEventListener(\"mouseleave\",i=>{mn(n,!1)})})}function mn(e,t){k(`[data-group-id=\"${e}\"]`).forEach(i=>{i.classList.toggle(Ar,t)})}var K=\".modal\",Rr=\".modal .modal-close\",Nr=\".modal .modal-title\",Qr=\".modal .modal-body\",yn='button:not([disabled]), [href], input:not([disabled]), select:not([disabled]), textarea:not([disabled]), [tabindex]:not([tabindex=\"-1\"])',z={prevFocus:null,lastFocus:null,ignoreFocusChanges:!1};function vn(){Hr()}function Hr(){let e=Handlebars.templates[\"modal-layout\"]();document.body.insertAdjacentHTML(\"beforeend\",e),c(K).addEventListener(\"keydown\",t=>{t.key===\"Escape\"&&re()}),c(Rr).addEventListener(\"click\",t=>{re()}),c(K).addEventListener(\"click\",t=>{t.target.classList.contains(\"modal\")&&re()})}function bn(e){if(z.ignoreFocusChanges)return;let t=c(K);if(t.contains(e.target))z.lastFocus=e.target;else{z.ignoreFocusChanges=!0;let n=Fr(t);z.lastFocus===n?Dr(t).focus():n.focus(),z.ignoreFocusChanges=!1,z.lastFocus=document.activeElement}}function Fr(e){return e.querySelector(yn)}function Dr(e){let t=e.querySelectorAll(yn);return t[t.length-1]}function Ne({title:e,body:t}){z.prevFocus=document.activeElement,document.addEventListener(\"focus\",bn,!0),c(Nr).innerHTML=e,c(Qr).innerHTML=t,c(K).classList.add(\"shown\"),c(K).focus()}function re(){c(K).classList.remove(\"shown\"),document.addEventListener(\"focus\",bn,!0),z.prevFocus&&z.prevFocus.focus(),z.prevFocus=null}function Sn(){return c(K).classList.contains(\"shown\")}var Mr=\"https://hexdocs.pm/%%\",Br=\"https://hex.pm/api/packages?search=name:%%*\",zr=\".display-quick-switch\",et=\"#quick-switch-input\",En=\"#quick-switch-results\",$r=\".quick-switch-result\",qr=300,Vr=9,jr=[\"elixir\",\"eex\",\"ex_unit\",\"hex\",\"iex\",\"logger\",\"mix\"].map(e=>({name:e})),Ln=2,P={autocompleteResults:[],selectedIdx:null};function Tn(){Ur()}function Ur(){k(zr).forEach(e=>{e.addEventListener(\"click\",t=>{nt()})})}function Wr(e){if(e.key===\"Enter\"){let t=e.target.value;Kr(t),e.preventDefault()}else e.key===\"ArrowUp\"?(xn(-1),e.preventDefault()):e.key===\"ArrowDown\"&&(xn(1),e.preventDefault())}function Gr(e){let t=e.target.value;if(t.length<Ln){let n=c(En);n.innerHTML=\"\"}else Yr(t)}function nt(){Ne({title:\"Search HexDocs package\",body:Handlebars.templates[\"quick-switch-modal-body\"]()}),c(et).focus();let e=c(et);e.addEventListener(\"keydown\",Wr),e.addEventListener(\"input\",Gr),P.autocompleteResults=[],P.selectedIdx=null}function Kr(e){if(P.selectedIdx===null)tt(e);else{let t=P.autocompleteResults[P.selectedIdx];tt(t.name)}}function tt(e){window.location=Mr.replace(\"%%\",e.toLowerCase())}var Yr=vt(Jr,qr);function Jr(e){let t=Br.replace(\"%%\",e);fetch(t).then(n=>n.json()).then(n=>{Array.isArray(n)&&(P.autocompleteResults=Zr(e,n),P.selectedIdx=null,c(et).value.length>=Ln&&Xr({results:P.autocompleteResults}))})}function Xr({results:e}){let t=c(En),n=Handlebars.templates[\"quick-switch-results\"]({results:e});t.innerHTML=n,k($r).forEach(i=>{i.addEventListener(\"click\",r=>{let s=i.getAttribute(\"data-index\"),o=P.autocompleteResults[s];tt(o.name)})})}function Zr(e,t){return jr.concat(t).filter(n=>n.name.toLowerCase().includes(e.toLowerCase())).filter(n=>n.releases===void 0||n.releases[0].has_docs===!0).slice(0,Vr)}function xn(e){P.selectedIdx=es(e);let t=c(\".quick-switch-result.selected\"),n=c(`.quick-switch-result[data-index=\"${P.selectedIdx}\"]`);t&&t.classList.remove(\"selected\"),n&&n.classList.add(\"selected\")}function es(e){let t=P.autocompleteResults.length;if(P.selectedIdx===null){if(e>=0)return 0;if(e<0)return t-1}return(P.selectedIdx+e+t)%t}var ts=\".display-settings\",ns=\"#settings-modal-content\",it=\"#modal-settings-tab\",rt=\"#modal-keyboard-shortcuts-tab\",kn=\"#settings-content\",_n=\"#keyboard-shortcuts-content\",is=[{title:\"Settings\",id:\"modal-settings-tab\"},{title:\"Keyboard shortcuts\",id:\"modal-keyboard-shortcuts-tab\"}];function On(){rs()}function rs(){k(ts).forEach(e=>{e.addEventListener(\"click\",t=>{st()})})}function wn(){c(rt).classList.remove(\"active\"),c(it).classList.add(\"active\"),c(kn).classList.remove(\"hidden\"),c(_n).classList.add(\"hidden\")}function ss(){c(rt).classList.add(\"active\"),c(it).classList.remove(\"active\"),c(_n).classList.remove(\"hidden\"),c(kn).classList.add(\"hidden\")}function st(){Ne({title:is.map(({id:s,title:o})=>`<button id=\"${s}\">${o}</button>`).join(\"\"),body:Handlebars.templates[\"settings-modal-body\"]({shortcuts:ot})});let e=c(ns),t=e.querySelector('[name=\"theme\"]'),n=e.querySelector('[name=\"tooltips\"]'),i=e.querySelector('[name=\"direct_livebook_url\"]'),r=e.querySelector('[name=\"livebook_url\"]');O.getAndSubscribe(s=>{t.value=s.theme||\"system\",n.checked=s.tooltips,s.livebookUrl===null?(i.checked=!1,r.classList.add(\"hidden\"),r.tabIndex=-1):(i.checked=!0,r.classList.remove(\"hidden\"),r.tabIndex=0,r.value=s.livebookUrl)}),t.addEventListener(\"change\",s=>{O.update({theme:s.target.value})}),n.addEventListener(\"change\",s=>{O.update({tooltips:s.target.checked})}),i.addEventListener(\"change\",s=>{let o=s.target.checked?r.value:null;O.update({livebookUrl:o})}),r.addEventListener(\"input\",s=>{O.update({livebookUrl:s.target.value})}),c(it).addEventListener(\"click\",s=>{wn()}),c(rt).addEventListener(\"click\",s=>{ss()}),wn()}var os=\"#settings-modal-content\",ot=[{key:\"c\",description:\"Toggle sidebar\",action:Me},{key:\"n\",description:\"Cycle themes\",action:jt},{key:\"s\",description:\"Focus search bar\",displayAs:\"<kbd><kbd>/</kbd></kbd> or <kbd><kbd>s</kdb></kdb>\",action:at},{key:\"/\",action:at},{key:\"k\",hasModifier:!0,action:at},{key:\"g\",description:\"Search HexDocs package\",displayAs:\"<kbd><kbd>g</kdb></kdb>\",action:nt},{key:\"?\",displayAs:\"<kbd><kbd>?</kbd></kbd>\",description:\"Bring up this modal\",action:us}],ct={shortcutBeingPressed:null};function In(){as()}function as(){document.addEventListener(\"keydown\",cs),document.addEventListener(\"keyup\",ls)}function cs(e){if(ct.shortcutBeingPressed||e.target.matches(\"input, textarea\"))return;let t=ot.find(n=>n.hasModifier?ye()&&e.metaKey||e.ctrlKey?n.key===e.key:!1:e.ctrlKey||e.metaKey||e.altKey?!1:n.key===e.key);t&&(ct.shortcutBeingPressed=t,e.preventDefault(),t.action(e))}function ls(e){ct.shortcutBeingPressed=null}function at(e){re(),Xe()}function us(){ds()?re():st()}function ds(){return Sn()&&c(os)}var Y={plain:\"plain\",function:\"function\",module:\"module\"},fs=[{href:\"typespecs.html#basic-types\",hint:{kind:Y.plain,description:\"Basic type\"}},{href:\"typespecs.html#literals\",hint:{kind:Y.plain,description:\"Literal\"}},{href:\"typespecs.html#built-in-types\",hint:{kind:Y.plain,description:\"Built-in type\"}}],Qe={cancelHintFetching:null};function Cn(e){if(Pn(e))return!0;let t=/#.*\\//;return e.includes(\"#\")&&!t.test(e)?!1:e.includes(\".html\")}function An(e){let t=Pn(e);return t?Promise.resolve(t):ps(e)}function Pn(e){let t=fs.find(n=>e.includes(n.href));return t?t.hint:null}function ps(e){let t=e.replace(\".html\",\".html?hint=true\");return new Promise((n,i)=>{let r=document.createElement(\"iframe\");r.setAttribute(\"src\",t),r.style.display=\"none\";function s(a){let{href:l,hint:u}=a.data;t===l&&(o(),n(u))}Qe.cancelHintFetching=()=>{o(),i(new Error(\"cancelled\"))};function o(){r.remove(),window.removeEventListener(\"message\",s),Qe.cancelHintFetching=null}window.addEventListener(\"message\",s),document.body.appendChild(r)})}function Rn(){Qe.cancelHintFetching&&Qe.cancelHintFetching()}function Nn(e){let n=e.querySelector(\"h1\").textContent,i=e.querySelector(\".docstring > p\"),r=i?i.innerHTML:\"\";return{kind:Y.function,title:n.trim(),description:r.trim()}}function Qn(e){let n=e.querySelector(\"h1 > span\").textContent,i=e.querySelector(\"#moduledoc p\"),r=i?i.innerHTML:\"\";return{kind:Y.module,title:n.trim(),description:r.trim()}}var hs=\".content a\",lt=\".tooltip\",ms=\".tooltip .tooltip-body\",Fn=\"body .content-inner\",gs=\"#content\",Dn=\"tooltip-shown\",ue=10,ys=ue*4,Hn={height:450,width:768},vs=100,se={currentLinkElement:null,hoverDelayTimeout:null};function Mn(){bs(),Ss()}function bs(){let e=Handlebars.templates[\"tooltip-layout\"]();c(Fn).insertAdjacentHTML(\"beforeend\",e)}function Ss(){k(hs).forEach(e=>{xs(e)&&(e.addEventListener(\"mouseenter\",t=>{Ls(e)}),e.addEventListener(\"mouseleave\",t=>{_s(e)}))})}function xs(e){return!(e.getAttribute(\"data-no-tooltip\")!==null||Es(e.href)||!Cn(e.href))}function Es(e){let t=e.replace(gs,\"\");return window.location.href.split(\"#\")[0]===t}function Ls(e){Ts()&&(se.currentLinkElement=e,se.hoverDelayTimeout=setTimeout(()=>{An(e.href).then(t=>{ws(t),ks()}).catch(()=>{})},vs))}function Ts(){let e=window.innerWidth<Hn.width||window.innerHeight<Hn.height;return Bn()&&!e}function ws(e){let t=Handlebars.templates[\"tooltip-body\"]({isPlain:e.kind===Y.plain,hint:e});c(ms).innerHTML=t,Is()}function ks(){c(lt).classList.add(Dn)}function _s(e){Bn()&&(clearTimeout(se.hoverDelayTimeout),Rn(),se.currentLinkElement=null,Os())}function Os(){c(lt).classList.remove(Dn)}function Is(){if(!se.currentLinkElement)return;let e=c(lt),t=se.currentLinkElement.getBoundingClientRect(),n=c(Fn).getBoundingClientRect(),i=e.getBoundingClientRect(),r=Cs(t,n);if(t.left+i.width+ue<window.innerWidth)e.style.left=`${r.left}px`,e.style.right=\"auto\";else{let s=Math.max(r.right-i.width,ue);e.style.left=`${s}px`,e.style.right=\"auto\"}t.bottom+i.height+ys<window.innerHeight?e.style.top=`${r.bottom+ue}px`:e.style.top=`${r.top-i.height-ue}px`}function Cs(e,t){return{top:e.top-t.top,bottom:e.bottom-t.top,left:e.left-t.left,right:e.right-t.left,x:e.x-t.x,y:e.y-t.y,width:e.width,height:e.height}}function Bn(){return O.get().tooltips}var As=\".content-inner\";function $n(){if(Ps()){let e=Ns();e&&Rs(e)}}function Ps(){return new URLSearchParams(window.location.search).has(\"hint\")&&window.self!==window.parent}function Rs(e){let t=window.location.href,n={hint:e,href:t};window.parent.postMessage(n,\"*\")}function Ns(){let e=me(ee()),t=c(As);if(e){let n=Nn(e);return zn(n)}else if(Qs()){let n=Qn(t);return zn(n)}return null}function zn(e){let t=ge();return{...e,version:t}}function Qs(){return[\"modules\",\"tasks\"].includes($())}var Hs='<button class=\"copy-button\"><svg aria-hidden=\"true\" xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\" viewBox=\"0 0 24 24\" width=\"24px\" fill=\"currentColor\"><path d=\"M0 0h24v24H0z\" fill=\"none\"/><path d=\"M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z\"/></svg><span class=\"sr-only\">copy</span><span aria-live=\"polite\"></span></button>';function qn(){\"clipboard\"in navigator&&Fs()}function Fs(){Array.from(k(\"pre\")).filter(e=>e.firstElementChild&&e.firstElementChild.tagName===\"CODE\").forEach(e=>e.insertAdjacentHTML(\"beforeend\",Hs)),Array.from(k(\".copy-button\")).forEach(e=>{let t;e.addEventListener(\"click\",()=>{let n=e.querySelector(\"[aria-live]\");t&&clearTimeout(t);let i=Array.from(e.parentElement.querySelector(\"code\").childNodes).filter(r=>!(r.tagName===\"SPAN\"&&r.classList.contains(\"unselectable\"))).map(r=>r.textContent).join(\"\");navigator.clipboard.writeText(i),e.classList.add(\"clicked\"),n.innerHTML=\"Copied! &#x2713;\",t=setTimeout(()=>{e.classList.remove(\"clicked\"),n.innerHTML=\"\"},3e3)})})}function Vn(){let t=/(Macintosh|iPhone|iPad|iPod)/.test(window.navigator.userAgent)?\"apple-os\":\"non-apple-os\";document.documentElement.classList.add(t)}var Ds=\"content\",Ms=\"tabs-open\",Bs=\"tabs-close\",zs=\"H3\",$s=\"tabset\";function Un(){qs().map(Vs).forEach(n=>Ws(n))}function qs(){let e=document.createNodeIterator(document.getElementById(Ds),NodeFilter.SHOW_COMMENT,{acceptNode(i){return i.nodeValue.trim()===Ms?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_REJECT}}),t=[],n;for(;n=e.nextNode();)t.push(n);return t}function Vs(e,t,n){let i=[],r=[],s={label:\"\",content:[]};for(;e=e.nextSibling;){if(js(e)){jn(s,r,t);break}i.push(e),e.nodeName===zs?(jn(s,r,t),s.label=e.innerText,s.content=[]):s.content.push(e.outerHTML)}let o=document.createElement(\"div\");return o.className=$s,Us(i,o),o.innerHTML=Handlebars.templates.tabset({tabs:r}),o}function js(e){return e.nodeName===\"#comment\"&&e.nodeValue.trim()===Bs}function jn(e,t,n){if(e.label===\"\"&&!e.content.length)return!1;let i=e.label,r=e.content;t.push({label:i,content:r,setIndex:n})}function Us(e,t){if(!e||!e.length)return!1;e[0].parentNode.insertBefore(t,e[0]),e.forEach(n=>t.appendChild(n))}function Ws(e){let t={tabs:e.querySelectorAll(':scope [role=\"tab\"]'),panels:e.querySelectorAll(':scope [role=\"tabpanel\"]'),activeIndex:0};t.tabs.forEach((n,i)=>{n.addEventListener(\"click\",r=>{J(i,t)}),n.addEventListener(\"keydown\",r=>{let s=t.tabs.length-1;r.code===\"ArrowLeft\"?(r.preventDefault(),t.activeIndex===0?J(s,t):J(t.activeIndex-1,t)):r.code===\"ArrowRight\"?(r.preventDefault(),t.activeIndex===s?J(0,t):J(t.activeIndex+1,t)):r.code===\"Home\"?(r.preventDefault(),J(0,t)):r.code===\"End\"&&(r.preventDefault(),J(s,t))})})}function J(e,t){t.tabs[t.activeIndex].setAttribute(\"aria-selected\",\"false\"),t.tabs[t.activeIndex].tabIndex=-1,t.tabs[e].setAttribute(\"aria-selected\",\"true\"),t.tabs[e].tabIndex=0,t.tabs[e].focus(),t.panels[t.activeIndex].setAttribute(\"hidden\",\"\"),t.panels[t.activeIndex].tabIndex=-1,t.panels[e].removeAttribute(\"hidden\"),t.panels[e].tabIndex=0,t.activeIndex=e}function Gn(){let e=me(ee(),!0);e&&Gs(e)}function Gs(e){Js(e),Ks(),Ys(),Wn(),window.addEventListener(\"resize\",t=>{Wn()})}function Wn(){let e=document.body.scrollHeight,t=document.getElementById(\"content\").parentElement.offsetHeight,n={type:\"preview\",maxHeight:e,contentHeight:t};window.parent.postMessage(n,\"*\")}function Ks(){let e=document.getElementsByTagName(\"a\");for(let t of e)t.getAttribute(\"target\")!==\"_blank\"&&t.setAttribute(\"target\",\"_parent\")}function Ys(){window.scrollTo(0,0)}function Js(e){document.body.classList.add(\"preview\");let t=document.getElementById(\"content\");t.innerHTML=e.innerHTML}yt(()=>{let e=new URLSearchParams(window.location.search),t=e.has(\"preview\");Vt(e.get(\"theme\")),xt(t),gn(),Mn(),$n(),qn(),Vn(),Un(),t?Gn():(on(),It(),Qt(),nn(),vn(),In(),Tn(),$t(),dn(),On())});})();\n/*! Bundled license information:\n\nlunr/lunr.js:\n  (**\n   * lunr - http://lunrjs.com - A bit like Solr, but much smaller and not as bright - 2.3.9\n   * Copyright (C) 2020 Oliver Nightingale\n   * @license MIT\n   *)\n  (*!\n   * lunr.utils\n   * Copyright (C) 2020 Oliver Nightingale\n   *)\n  (*!\n   * lunr.Set\n   * Copyright (C) 2020 Oliver Nightingale\n   *)\n  (*!\n   * lunr.tokenizer\n   * Copyright (C) 2020 Oliver Nightingale\n   *)\n  (*!\n   * lunr.Pipeline\n   * Copyright (C) 2020 Oliver Nightingale\n   *)\n  (*!\n   * lunr.Vector\n   * Copyright (C) 2020 Oliver Nightingale\n   *)\n  (*!\n   * lunr.stemmer\n   * Copyright (C) 2020 Oliver Nightingale\n   * Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt\n   *)\n  (*!\n   * lunr.stopWordFilter\n   * Copyright (C) 2020 Oliver Nightingale\n   *)\n  (*!\n   * lunr.trimmer\n   * Copyright (C) 2020 Oliver Nightingale\n   *)\n  (*!\n   * lunr.TokenSet\n   * Copyright (C) 2020 Oliver Nightingale\n   *)\n  (*!\n   * lunr.Index\n   * Copyright (C) 2020 Oliver Nightingale\n   *)\n  (*!\n   * lunr.Builder\n   * Copyright (C) 2020 Oliver Nightingale\n   *)\n*/\n"
  },
  {
    "path": "doc/dist/html-elixir-CDEHVNM4.css",
    "content": ":root{--main: hsl(250, 68%, 69%);--mainDark: hsl(250, 68%, 59%);--mainDarkest: hsl(250, 68%, 49%);--mainLight: hsl(250, 68%, 74%);--mainLightest: hsl(250, 68%, 79%);--searchBarFocusColor: #8E7CE6;--searchBarBorderColor: rgba(142, 124, 230, .25);--linksNoUnderline: var(--mainDark);--linksNoUnderlineVisited: var(--mainDarkest)}body.dark{--linksNoUnderline: var(--mainLightest);--linksNoUnderlineVisited: var(--mainLight)}@font-face{font-family:Lato;font-style:normal;font-display:swap;font-weight:300;src:url(./lato-latin-ext-300-normal-VPGGJKJL.woff2) format(\"woff2\"),url(./lato-all-300-normal-GIV56FBX.woff) format(\"woff\");unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Lato;font-style:normal;font-display:swap;font-weight:300;src:url(./lato-latin-300-normal-YUMVEFOL.woff2) format(\"woff2\"),url(./lato-all-300-normal-GIV56FBX.woff) format(\"woff\");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Lato;font-style:normal;font-display:swap;font-weight:400;src:url(./lato-latin-ext-400-normal-N27NCBWW.woff2) format(\"woff2\"),url(./lato-all-400-normal-MNITWADU.woff) format(\"woff\");unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Lato;font-style:normal;font-display:swap;font-weight:400;src:url(./lato-latin-400-normal-W7754I4D.woff2) format(\"woff2\"),url(./lato-all-400-normal-MNITWADU.woff) format(\"woff\");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Lato;font-style:normal;font-display:swap;font-weight:700;src:url(./lato-latin-ext-700-normal-Q2L5DVMW.woff2) format(\"woff2\"),url(./lato-all-700-normal-XMT5XFBS.woff) format(\"woff\");unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Lato;font-style:normal;font-display:swap;font-weight:700;src:url(./lato-latin-700-normal-2XVSBPG4.woff2) format(\"woff2\"),url(./lato-all-700-normal-XMT5XFBS.woff) format(\"woff\");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Inconsolata;font-style:normal;font-display:swap;font-weight:400;src:url(./inconsolata-vietnamese-400-normal-IGQPHHJH.woff2) format(\"woff2\"),url(./inconsolata-all-400-normal-HMVRHNDU.woff) format(\"woff\");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-family:Inconsolata;font-style:normal;font-display:swap;font-weight:400;src:url(./inconsolata-latin-ext-400-normal-K7HVGTP7.woff2) format(\"woff2\"),url(./inconsolata-all-400-normal-HMVRHNDU.woff) format(\"woff\");unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Inconsolata;font-style:normal;font-display:swap;font-weight:400;src:url(./inconsolata-latin-400-normal-RGKDDNDD.woff2) format(\"woff2\"),url(./inconsolata-all-400-normal-HMVRHNDU.woff) format(\"woff\");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Inconsolata;font-style:normal;font-display:swap;font-weight:700;src:url(./inconsolata-vietnamese-700-normal-LHEGSN35.woff2) format(\"woff2\"),url(./inconsolata-all-700-normal-WFUKXZPS.woff) format(\"woff\");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-family:Inconsolata;font-style:normal;font-display:swap;font-weight:700;src:url(./inconsolata-latin-ext-700-normal-4MPBLFZC.woff2) format(\"woff2\"),url(./inconsolata-all-700-normal-WFUKXZPS.woff) format(\"woff\");unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Inconsolata;font-style:normal;font-display:swap;font-weight:700;src:url(./inconsolata-latin-700-normal-DTS2D7TO.woff2) format(\"woff2\"),url(./inconsolata-all-700-normal-WFUKXZPS.woff) format(\"woff\");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}:root{--content-width: 949px;--content-gutter: 60px;--borderRadius: 4px;--navTabBorderWidth: 4px;--defaultFontFamily: -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\";--sansFontFamily: \"Lato\", sans-serif;--monoFontFamily: \"Inconsolata\", Menlo, Courier, monospace;--baseFontSize: 18px;--baseLineHeight: 1.5em;--gray25: hsl(207, 43%, 98%);--gray50: hsl(207, 43%, 96%);--gray100: hsl(212, 33%, 91%);--gray200: hsl(210, 29%, 88%);--gray300: hsl(210, 26%, 84%);--gray400: hsl(210, 21%, 64%);--gray450: hsl(210, 21%, 49%);--gray500: hsl(210, 21%, 34%);--gray600: hsl(210, 27%, 26%);--gray700: hsl(212, 35%, 17%);--gray750: hsl(214, 46%, 14%);--gray800: hsl(216, 52%, 11%);--gray800-opacity-0: hsla(216, 52%, 11%, 0%);--gray850: hsl(216, 63%, 8%);--gray900: hsl(218, 73%, 4%);--gray900-opacity-50: hsla(218, 73%, 4%, 50%);--gray900-opacity-0: hsla(218, 73%, 4%, 0%);--coldGrayFaint: hsl(240, 5%, 97%);--coldGrayLight: hsl(240, 5%, 88%);--coldGray-lightened-10: hsl(240, 5%, 56%);--coldGray: hsl(240, 5%, 46%);--coldGray-opacity-10: hsla(240, 5%, 46%, 10%);--coldGrayDark: hsl(240, 5%, 28%);--coldGrayDim: hsl(240, 5%, 18%);--yellowLight: hsl(60, 100%, 81%);--yellowDark: hsl(60, 100%, 43%, 62%);--yellow: hsl(60, 100%, 43%);--green-lightened-10: hsl(90, 100%, 45%);--green: hsl(90, 100%, 35%);--white: hsl(0, 0%, 100%);--white-opacity-50: hsla(0, 0%, 100%, 50%);--white-opacity-10: hsla(0, 0%, 100%, 10%);--white-opacity-0: hsla(0, 0%, 100%, 0%);--black: hsl(0, 0%, 0%);--black-opacity-10: hsla(0, 0%, 0%, 10%);--black-opacity-50: hsla(0, 0%, 0%, 50%)}@media screen and (max-width: 768px){:root{--content-width: 100%;--content-gutter: 20px}}:root{--background: var(--white);--contrast: var(--black);--textBody: var(--gray800);--textHeaders: var(--gray900);--textDetailAccent: var(--mainLight);--textDetailBackground: var(--coldGrayFaint);--textFooter: var(--gray700);--links: var(--black);--linksVisited: var(--black);--linksDecoration: var(--gray450);--iconAction: var(--coldGray);--iconActionHover: var(--gray800);--blockquoteBackground: var(--coldGrayFaint);--blockquoteBorder: var(--coldGrayLight);--tableHeadBorder: var(--gray100);--tableBodyBorder: var(--gray50);--warningBackground: hsl( 33, 100%, 97%);--warningHeadingBackground: hsl( 33, 87%, 64%);--warningHeading: var(--black);--errorBackground: hsl( 7, 81%, 96%);--errorHeadingBackground: hsl( 6, 80%, 60%);--errorHeading: var(--white);--infoBackground: hsl(206, 91%, 96%);--infoHeadingBackground: hsl(213, 92%, 62%);--infoHeading: var(--white);--neutralBackground: hsl(212, 29%, 92%);--neutralHeadingBackground: hsl(220, 43%, 11%);--neutralHeading: var(--white);--tipBackground: hsl(142, 31%, 93%);--tipHeadingBackground: hsl(134, 39%, 36%);--tipHeading: var(--white);--fnSpecAttr: var(--coldGray);--fnDeprecated: var(--yellowLight);--blink: var(--yellowLight);--codeBackground: var(--gray25);--codeBorder: var(--gray100);--codeScrollThumb: var(--gray400);--codeScrollBackground: var(--codeBorder);--admCodeBackground: var(--gray25);--admCodeBorder: var(--gray100);--admCodeColor: var(--black);--admInlineCodeColor: var(--black);--admInlineCodeBackground: var(--gray25);--admInlineCodeBorder: var(--gray100);--tabBackground: var(--white);--tabBorder: var(--gray300);--tabBorderTop: var(--gray100);--tab: var(--gray600);--tabShadow: var(--gray25);--bottomActionsBtnBorder: var(--black-opacity-10);--bottomActionsBtnSubheader: var(--mainDark);--modalBackground: var(--white);--settingsInput: var(--gray500);--settingsInputBackground: var(--white);--settingsInputBorder: var(--gray300);--settingsSectionBorder: var(--gray300);--quickSwitchInput: var(--gray500);--quickSwitchContour: var(--coldGray);--success: var(--green);--sidebarButtonBackground: linear-gradient(180deg, var(--white) 20%, var(--white-opacity-50) 70%, var(--white-opacity-0) 100%);--sidebarAccentMain: var(--gray50);--sidebarBackground: var(--gray800);--sidebarHeader: var(--gray700);--sidebarMuted: var(--gray300);--sidebarHover: var(--white);--sidebarScrollbarThumb: var(--coldGray);--sidebarScrollbarTrack: var(--sidebarBackground);--sidebarSubheadings: var(--gray400);--sidebarItem: var(--gray200);--sidebarInactiveItemMarker: var(--gray600);--sidebarLanguageAccentBar: var(--mainLight);--sidebarActiveItem: var(--mainLightest);--searchBarBorder: var(--gray200);--searchAccentMain: var(--gray-400);--searchLanguageAccentBar: var(--main);--searchSearch: var(--white);--autocompleteBorder: rgba(3, 9, 19, .1);--autocompletePreview: var(--gray25);--autocompleteHover: var(--grey50, #F0F5F9);--autocompleteBackground: var(--white);--suggestionBorder: var(--gray200);--autocompleteResults: var(--gray600);--autocompleteResultsBold: var(--gray800);--autocompleteSrollbarThumb: var(--gray200);--autocompleteSrollbarTrack: var(--gray50);--autocompleteLabelBack: var(--gray100);--autocompleteLabelFont: var(--gray600)}body.dark{--background: var(--gray900);--contrast: var(--white);--textBody: var(--gray200);--textHeaders: var(--gray100);--textDetailAccent: var(--mainLight);--textDetailBackground: var(--gray700);--textFooter: var(--gray300);--links: var(--gray100);--linksVisited: var(--gray100);--linksDecoration: var(--gray450);--iconAction: var(--coldGray-lightened-10);--iconActionHover: var(--white);--blockquoteBackground: var(--coldGray-opacity-10);--blockquoteBorder: var(--coldGrayDim);--tableHeadBorder: var(--gray600);--tableBodyBorder: var(--gray700);--warningBackground: hsla( 33, 30%, 60%, 10%);--warningHeadingBackground: hsla( 33, 66%, 35%, 80%);--warningHeading: var(--white);--errorBackground: hsla( 7, 30%, 60%, 10%);--errorHeadingBackground: hsla( 6, 70%, 40%, 80%);--errorHeading: var(--white);--infoBackground: hsla(206, 30%, 60%, 10%);--infoHeadingBackground: hsla(213, 55%, 35%, 80%);--infoHeading: var(--white);--neutralBackground: hsl(210, 30%, 60%, 10%);--neutralHeadingBackground: var(--gray600);--neutralHeading: var(--white);--tipBackground: hsla(142, 30%, 60%, 10%);--tipHeadingBackground: hsla(134, 45%, 30%, 80%);--tipHeading: var(--white);--fnSpecAttr: var(--gray400);--fnDeprecated: var(--yellowDark);--blink: var(--gray600);--codeBackground: var(--gray750);--codeBorder: var(--gray600);--codeScrollThumb: var(--gray500);--codeScrollBackground: var(--codeBorder);--admCodeBackground: var(--gray750);--admCodeBorder: var(--gray600);--admCodeColor: var(--gray100);--admInlineCodeColor: var(--gray100);--admInlineCodeBackground: var(--gray750);--admInlineCodeBorder: var(--gray600);--tabBackground: var(--gray900);--tabBorder: var(--gray700);--tabBorderTop: var(--gray700);--tab: var(--white);--tabShadow: var(--black);--bottomActionsBtnBorder: var(--white-opacity-10);--bottomActionsBtnSubheader: var(--mainLight);--modalBackground: var(--gray800);--settingsInput: var(--white);--settingsInputBackground: var(--gray700);--settingsInputBorder: var(--gray700);--settingsSectionBorder: var(--gray700);--quickSwitchInput: var(--gray300);--quickSwitchContour: var(--gray500);--success: var(--green-lightened-10);--sidebarButtonBackground: linear-gradient(180deg, var(--gray900) 20%, var(--gray900-opacity-50) 70%, var(--gray900-opacity-0) 100%);--sidebarAccentMain: var(--gray50);--sidebarBackground: var(--gray800);--sidebarHeader: var(--gray700);--sidebarMuted: var(--gray300);--sidebarHover: var(--white);--sidebarScrollbarThumb: var(--coldGray);--sidebarScrollbarTrack: var(--sidebarBackground);--sidebarSubheadings: var(--gray400);--sidebarItem: var(--gray200);--sidebarInactiveItemMarker: var(--gray600);--sidebarLanguageAccentBar: var(--mainLight);--sidebarActiveItem: var(--mainLightest);--searchBarBorder: var(--gray500);--searchAccentMain: var(--gray300);--searchSearch: var(--gray900);--autocompleteBorder: rgba(28,42,60,.75);--autocompletePreview: var(--gray750);--autocompleteHover: var(--gray700);--autocompleteBackground: var(--gray800);--suggestionBorder: var(--gray600);--autocompleteResults: var(--gray200);--autocompleteResultsBold: var(--gray100);--autocompleteSrollbarThumb: var(--gray600);--autocompleteSrollbarTrack: var(--gray850);--autocompleteLabelBack: var(--gray600);--autocompleteLabelFont: rgba(255, 255, 255, .8)}html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}@font-face{font-family:remixicon;src:url(./remixicon-NKANDIL5.woff2) format(\"woff2\");font-display:swap}[class^=ri-],[class*=\" ri-\"],.remix-icon{font-family:remixicon;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}:root{--icon-arrow-up-s: \"\\ea78\";--icon-arrow-down-s: \"\\ea4e\";--icon-arrow-right-s: \"\\ea6e\";--icon-add: \"\\ea13\";--icon-subtract: \"\\f1af\";--icon-error-warning: \"\\eca1\";--icon-information: \"\\ee59\";--icon-alert: \"\\ea21\";--icon-double-quotes-l: \"\\ec51\";--icon-link-m: \"\\eeaf\";--icon-close-line: \"\\eb99\";--icon-code-s-slash-line: \"\\ebad\";--icon-menu-line: \"\\ef3e\";--icon-search-2-line: \"\\f0cd\";--icon-settings-3-line: \"\\f0e6\";--icon-printer-line: \"\\f029\"}.ri-lg{font-size:1.3333em;line-height:.75em;vertical-align:-.0667em}.ri-settings-3-line:before{content:var(--icon-settings-3-line)}.ri-add-line:before{content:var(--icon-add)}.ri-subtract-line:before{content:var(--icon-subtract)}.ri-arrow-up-s-line:before{content:var(--icon-arrow-up-s)}.ri-arrow-down-s-line:before{content:var(--icon-arrow-down-s)}.ri-arrow-right-s-line:before{content:var(--icon-arrow-right-s)}.ri-search-2-line:before{content:var(--icon-search-2-line)}.ri-menu-line:before{content:var(--icon-menu-line)}.ri-close-line:before{content:var(--icon-close-line)}.ri-link-m:before{content:var(--icon-link-m)}.ri-code-s-slash-line:before{content:var(--icon-code-s-slash-line)}.ri-error-warning-line:before{content:var(--icon-error-warning)}.ri-information-line:before{content:var(--icon-information)}.ri-alert-line:before{content:var(--icon-alert)}.ri-double-quotes-l:before{content:var(--icon-double-quotes-l)}.ri-printer-line:before{content:var(--icon-printer-line)}html,body{box-sizing:border-box;height:100%;width:100%}body{--sidebarWidth: 300px;--sidebarMinWidth: 300px;--sidebarTransitionDuration: .3s;background-color:var(--background);color:var(--textBody);font-size:16px;font-family:var(--sansFontFamily);line-height:1.6875em}*,*:before,*:after{box-sizing:inherit}.body-wrapper{display:flex;height:100%}.sidebar{display:flex;flex-direction:column;width:var(--sidebarWidth);min-width:var(--sidebarMinWidth);height:100%;position:fixed;top:0;left:0;z-index:100;resize:horizontal}.sidebar-button{padding:26px 12px 18px 19px;position:fixed;z-index:200;top:0;left:0;will-change:transform}.sidebar-toggle--animated.sidebar-button{transition:transform var(--sidebarTransitionDuration) ease-in-out}.content{width:calc(100% - var(--sidebarWidth));left:var(--sidebarWidth);height:100%;position:absolute}.content .content-inner{max-width:var(--content-width);min-height:100%;margin:0 auto;padding:0 var(--content-gutter) 10px}.content-inner:focus{outline:none}body:is(.sidebar-opening,.sidebar-opened) .sidebar-button{transform:translate(calc(var(--sidebarWidth) - 100%))}body.sidebar-opening-start .sidebar{left:calc(-1 * var(--sidebarWidth))}body.sidebar-opening-start .content{width:100%;left:0}body.sidebar-opening .sidebar{left:0;transition:left var(--sidebarTransitionDuration) ease-in-out}body.sidebar-opening .content{width:calc(100% - var(--sidebarWidth));left:var(--sidebarWidth);transition:all var(--sidebarTransitionDuration) ease-in-out}body.sidebar-closing .sidebar-button{transform:translate(0)}body.sidebar-closing .sidebar{left:calc(-1 * var(--sidebarWidth));transition:left var(--sidebarTransitionDuration) ease-in-out}body.sidebar-closing .content{width:100%;left:0;transition:all var(--sidebarTransitionDuration) ease-in-out}body.sidebar-closed .sidebar{left:calc(-1 * var(--sidebarWidth));display:none}body.sidebar-closed .content{width:100%;left:0}@media screen and (max-width: 768px){.content,body.sidebar-opening .content{left:0;width:100%}body.sidebar-closed .sidebar-button{position:absolute}}.sidebar{--sidebarFontSize: 16px;--sidebarLineHeight: 20px;font-family:var(--sansFontFamily);font-size:var(--sidebarFontSize);font-weight:300;line-height:var(--sidebarLineHeight);background-color:var(--sidebarBackground);color:var(--sidebarAccentMain);overflow:hidden;scrollbar-color:var(--sidebarScrollbarThumb) var(--sidebarScrollbarTrack)}.non-apple-os .sidebar{font-weight:400}.sidebar ul{list-style:none}.sidebar ul li{margin:0;padding:0 10px}.sidebar a{color:var(--sidebarAccentMain);text-decoration:none;transition:color .3s ease-in-out}.sidebar a:hover{color:var(--sidebarHover)}.sidebar .sidebar-header{background-color:var(--sidebarHeader);width:100%}.sidebar .sidebar-projectInfo{display:flex;justify-content:start;align-items:center;gap:16px;margin:12px 16px 12px 14px;max-width:235px}.sidebar .sidebar-projectImage{align-self:flex-end}.sidebar .sidebar-projectImage img{display:block;max-width:48px;max-height:48px}.sidebar .sidebar-projectName{font-weight:700;font-size:20px;line-height:24px;color:var(--sidebarAccentMain);margin:0;padding:0;max-width:230px;word-wrap:break-word}.sidebar .sidebar-projectVersion{display:block;position:relative;margin:0;padding:0;font-size:var(--sidebarFontSize);line-height:var(--sidebarLineHeight);color:var(--sidebarMuted)}.sidebar .sidebar-projectVersionsDropdown{cursor:pointer;position:relative;margin:0;padding:0 0 0 12px;border:none;-webkit-appearance:none;appearance:none;background-color:transparent;color:var(--sidebarMuted);z-index:2}.sidebar .sidebar-projectVersionsDropdown option{color:initial}.sidebar .sidebar-projectVersionsDropdownCaret{position:absolute;left:0;top:2px;z-index:1;font-size:8px;color:var(--sidebarMuted)}.sidebar .sidebar-projectVersionsDropdown::-ms-expand{display:none}.sidebar .sidebar-listNav{display:flex;margin:0;padding:4px 4px 0}.sidebar .sidebar-listNav :is(li,li button){text-transform:uppercase;letter-spacing:.02em;font-size:14px;color:var(--sidebarMuted)}.sidebar .sidebar-listNav li{display:inline-block;padding:0}.sidebar .sidebar-listNav li button{background:none;border:0;border-radius:0;-webkit-appearance:none;text-align:inherit;color:inherit;font-weight:inherit;cursor:pointer;display:inline-block;line-height:27px;padding:4px 10px 2px;transition:all .15s}.sidebar .sidebar-listNav li:is(.selected) button{background-color:var(--sidebarBackground);border-top:var(--navTabBorderWidth) solid var(--sidebarLanguageAccentBar)}.sidebar .sidebar-listNav li:not(.selected) button{border-top:var(--navTabBorderWidth) solid var(--sidebarHeader)}.sidebar .sidebar-listNav li:is(:hover):not(.selected) button{background-color:var(--gray600);border-top:var(--navTabBorderWidth) solid var(--gray400);color:var(--sidebarAccentMain);transition:all .15s}.sidebar .sidebar-tabpanel{flex:1 1 .01%;overflow-y:auto;overscroll-behavior:contain;position:relative;-webkit-overflow-scrolling:touch;margin-top:12px}.sidebar .full-list{margin:0;padding:0 0 20px;position:relative}.sidebar .full-list :is(li,a){overflow:hidden;text-overflow:ellipsis}.sidebar .full-list li{padding:0;margin-right:30px;line-height:27px;white-space:nowrap}.sidebar .full-list li.docs{margin-right:0}.sidebar .full-list li.open>ul{display:block;margin-left:10px}.sidebar .full-list li a.expand+button.icon-expand{appearance:none;background-color:transparent;border:0;padding:0;cursor:pointer;color:inherit;margin-right:10px;font-size:calc(1.2 * var(--sidebarFontSize));line-height:var(--sidebarLineHeight);position:absolute;display:flex;right:0;transform:translateY(calc(-100% - 4px))}.sidebar .full-list li a+button.icon-expand:after{font-family:remixicon;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.sidebar .full-list li a.expand+button.icon-expand:after{content:var(--icon-arrow-down-s)}.sidebar .full-list li.open>a.expand+button.icon-expand:after{content:var(--icon-arrow-up-s)}.sidebar .full-list li.docs>a+button.icon-expand{margin-right:12px;font-size:var(--sidebarFontSize);line-height:var(--sidebarFontSize);transform:translateY(calc(-100% - 5px))}.sidebar .full-list li.docs>a+button.icon-expand:after{content:var(--icon-add)}.sidebar .full-list li.docs.open>a+button.icon-expand:after{content:var(--icon-subtract)}.sidebar .full-list li.nesting-context{font-weight:700;font-size:.9em;line-height:1.8em;color:var(--sidebarSubheadings);padding-left:15px}.sidebar .full-list li.group{text-transform:uppercase;font-weight:700;font-size:.8em;margin:1.5em 0 0;line-height:1.8em;color:var(--sidebarSubheadings);padding-left:15px}.sidebar .full-list li a{padding:3px 0 3px 15px;color:var(--sidebarItem)}.sidebar .full-list>li>a{display:block;width:100%;height:27px;line-height:var(--sidebarLineHeight)}.sidebar .full-list li .current-section>a{color:var(--sidebarActiveItem)}.sidebar .full-list li .current-section>a+button.icon-expand{color:var(--sidebarActiveItem)}.sidebar .full-list>li>a:hover{border-left:3px solid var(--sidebarLanguageAccentBar);padding-left:12px}.sidebar .full-list>li.current-page>a{color:var(--sidebarActiveItem);border-left:3px solid var(--sidebarLanguageAccentBar);padding-left:12px}.sidebar .full-list>li.current-page>a:after,.sidebar .full-list>li.current-page{color:var(--sidebarActiveItem)}.sidebar .full-list>li:last-child{margin-bottom:30px}.sidebar .full-list>li.group:first-child{margin-top:0}.sidebar .full-list ul{display:none;margin:10px 0 10px 15px;padding:0}.sidebar .full-list ul li{font-weight:300;line-height:var(--sidebarFontSize);padding:0 8px;margin-right:0;color:var(--sidebarAccentMain)}.non-apple-os .sidebar .full-list ul li{font-weight:400}.sidebar .full-list ul li.current-hash{color:var(--sidebarActiveItem)}.sidebar .full-list ul li.current-hash>a{color:var(--sidebarActiveItem)}.sidebar .full-list ul li.current-hash>a:before,.sidebar .full-list>li>ul>li>a:hover:before{content:\"\\2022\";position:absolute;margin-left:-15px;color:var(--sidebarActiveItem)}.sidebar .full-list ul li a{padding-left:15px;display:block;width:100%;height:24px}.sidebar .full-list ul li ul{display:none;margin:9px 0 9px 20px}.sidebar .full-list ul li ul li{margin-right:0;height:20px;color:var(--sidebarAccentMain)}.sidebar .full-list ul li ul li a{border-left:1px solid var(--sidebarInactiveItemMarker);padding:0 10px;height:20px}.sidebar .full-list ul li ul li.current-hash>a:before{content:none}.sidebar .full-list ul li ul li>a:hover{border-color:var(--sidebarLanguageAccentBar)}.sidebar .full-list ul li ul li.current-hash>a{color:var(--sidebarActiveItem);border-color:var(--sidebarLanguageAccentBar)}.sidebar .full-list ul li ul li.current-hash>a{color:var(--sidebarActiveItem);margin-left:0}.sidebar ::-webkit-scrollbar{width:14px}::-webkit-scrollbar-track{background-color:var(--sidebarBackground)}.sidebar ::-webkit-scrollbar-thumb{background-color:var(--sidebarScrollbarThumb);border-radius:10px;border:3px solid var(--sidebarBackground)}.sidebar-button{cursor:pointer;background-color:transparent;border:none;font-size:var(--sidebarFontSize)}.sidebar-button:hover{color:var(--sidebarHover)}.sidebar-button{color:var(--sidebarAccentMain)}.sidebar-closed .sidebar-button{color:var(--contrast)}@media screen and (max-height: 500px){.sidebar{overflow-y:auto}.sidebar .full-list{overflow:visible}}.top-search{background-color:var(--background);top:0;z-index:99;position:relative;width:100%;padding:10px 0}.search-settings{display:flex;column-gap:12px;align-items:center;width:100%;position:relative}.search-bar{border:1px solid var(--searchBarBorder);border-radius:8px;height:48px;position:relative;width:100%}.top-search .search-bar .search-input{background-color:var(--searchSearch);border:none;border-radius:8px;color:var(--searchAccentMain);position:relative;height:46px;padding:8px 35px 8px 43px;width:100%}.top-search .search-bar .search-input::placeholder{color:var(--searchAccentMain);opacity:.5}.top-search .search-bar .search-input:focus{border:1px solid var(--searchBarFocusColor);border-radius:7px;position:relative;box-shadow:0 4px 20px 0 var(--searchBarBorderColor) inset}.top-search .search-bar .search-label{position:relative}.top-search .search-bar .search-button{font-size:14px;color:var(--searchAccentMain);background-color:transparent;border:none;cursor:pointer;left:11px;opacity:.5;padding:5px 1px 5px 5px;position:absolute;top:60%;transform:translateY(-60%);z-index:99}.top-search .search-bar.selected .search-button,.top-search .search-bar .search-button:hover,.top-search .search-bar .search-button:focus{color:var(--top-searchLanguageAccentBar);opacity:1}.top-search .search-bar .search-close-button{font-size:16px;color:var(--searchAccentMain);background-color:transparent;border:none;cursor:pointer;right:11px;margin:0;opacity:.5;padding:5px 1px 5px 0;position:absolute;transform:scaleY(0);top:calc(50% - 13px);transition:.15s transform ease-out;z-index:99}.top-search .search-bar .search-close-button:hover{opacity:.7}.top-search .search-settings button.icon-settings{display:flex;align-items:center;justify-content:flex-end}.top-search .search-settings .icon-settings{font-size:20px;float:right;color:var(--iconAction);text-decoration:none;border:none;transition:color .3s ease-in-out;background-color:transparent;cursor:pointer;padding:0}.top-search .search-settings .icon-settings:hover{color:var(--iconActionHover)}.top-search .search-settings .icon-settings:visited{color:var(--iconAction)}@media screen and (max-width: 768px){.top-search{padding-left:calc(var(--content-gutter) + 36px);padding-right:var(--content-gutter);margin-left:calc(-1 * var(--content-gutter));margin-right:calc(-1 * var(--content-gutter));width:calc(2 * var(--content-gutter) + 100%)}.search-settings{width:100%;box-sizing:border-box}}body.search-focused .search-bar .search-close-button{transform:scaleY(1);transition:transform .15s ease-out .15s}@media screen and (hover: hover){body.search-focused .top-search{position:sticky!important}body.search-focused.sidebar-closed .sidebar-button{position:fixed!important}}@media screen and (hover: none){body.scroll-sticky .top-search{position:sticky!important}body.scroll-sticky.sidebar-closed .sidebar-button{position:fixed!important}}*:focus,button:focus,[type=button]:focus,[type=reset]:focus,[type=submit]:focus{outline:2px solid var(--main);outline-offset:-2px}*:focus:not(:focus-visible),button:focus:not(:focus-visible),[type=button]:focus:not(:focus-visible),[type=reset]:focus:not(:focus-visible),[type=submit]:focus:not(:focus-visible){outline:0}input[type=text],input[type=number],input[type=date],input[type=datetime],input[type=datetime-local],input[type=email],input[type=month],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=time],input[type=url],input[type=week],textarea{outline:0}.content-inner{font-family:var(--defaultFontFamily);font-size:1em;line-height:1.6875em;position:relative;background-color:var(--background);color:var(--textBody)}.content-inner :is(h1,h2,h3,h4,h5,h6){font-family:var(--sansFontFamily);font-weight:700;line-height:1.5em;word-wrap:break-word;color:var(--textHeaders)}.content-inner h1{font-size:2em;margin:.5em 0}.content-inner h1.signature{margin:0}.content-inner h1.section-heading{margin:1.5em 0 .5em}.content-inner h1 small{font-weight:300}.content-inner h1 .icon-action{font-size:1.2rem;font-weight:400}.content-inner h2{font-size:1.6em;margin:1em 0 .5em;font-weight:700}.content-inner h3{font-size:1.375em;margin:1em 0 .5em;font-weight:700}.content-inner li+li{margin-top:.25em}.content-inner :is(a,.a-main){color:var(--links);text-decoration:underline;text-decoration-color:var(--linksDecoration);text-decoration-skip-ink:auto}.content-inner :is(a:visited,.a-main:visited){color:var(--linksVisited)}.content-inner .icon-action{float:right;color:var(--iconAction);text-decoration:none;border:none;transition:color .3s ease-in-out;background-color:transparent;cursor:pointer}.content-inner button.icon-action{margin-top:12px}.content-inner .icon-action:hover{color:var(--iconActionHover)}.content-inner .icon-action:visited{color:var(--iconAction)}.content-inner .livebook-badge-container{display:flex}.content-inner a.livebook-badge{display:inline-flex}.content-inner .note{color:var(--iconAction);margin-right:5px;font-size:14px;font-weight:400}.content-inner blockquote{border-left:3px solid var(--blockquoteBorder);position:relative;margin:1.5625em 0;padding:0 1.2rem;overflow:auto;background-color:var(--blockquoteBackground);border-radius:var(--borderRadius)}.content-inner blockquote p:last-child{padding-bottom:1em;margin-bottom:0}.content-inner table{margin:2em 0;border-collapse:collapse}.content-inner th{text-align:left;font-family:var(--sansFontFamily);text-transform:uppercase;font-weight:700;padding-bottom:.5em}.content-inner thead tr{border-bottom:1px solid var(--tableHeadBorder)}.content-inner tbody tr{border-bottom:1px solid var(--tableBodyBorder)}.content-inner tbody tr:last-child{border-bottom:none}.content-inner tr{vertical-align:bottom;height:2.5em}.content-inner :is(td,th){padding:.25em .25em .25em 1em;line-height:2em;vertical-align:top}.content-inner .section-heading{--icon-size: 16px;--icon-spacing: 5px;display:grid;grid-template:1fr / 1fr}.content-inner .section-heading>:is(.hover-link,.text){grid-row:1;grid-column:1}.content-inner .section-heading .hover-link{text-decoration:none}.content-inner .section-heading i{font-size:var(--icon-size);margin-top:.1em;margin-left:calc(-1 * (var(--icon-size) + var(--icon-spacing)));padding-right:var(--icon-spacing);opacity:0}@media screen and (max-width: 768px){.content-inner .section-heading i{margin-left:calc(-1 * (var(--icon-size)))}}.content-inner blockquote .section-heading i{display:none}.content-inner .section-heading .hover-link:is(:hover,:focus) i{opacity:1}.content-inner .section-heading .text{pointer-events:none}.content-inner .section-heading .text a{pointer-events:all}.content-inner .app-vsn{display:none!important;font-size:.6em;line-height:1.5em}@media screen and (max-width: 768px){.content-inner .app-vsn{display:block!important}}.content-inner img{max-width:100%}.content-inner strong>code{font-weight:700}.content-inner code{font-family:var(--monoFontFamily);font-style:normal;line-height:24px;font-weight:400}@media screen and (max-width: 768px){.content-inner :is(ol,ul){padding-left:calc(1.5 * var(--content-gutter))}}.content-inner blockquote:is(.warning,.error,.info,.neutral,.tip){border-radius:10px;border-left:0}.content-inner blockquote.warning{background-color:var(--warningBackground)}.content-inner blockquote.error{background-color:var(--errorBackground)}.content-inner blockquote.info{background-color:var(--infoBackground)}.content-inner blockquote.neutral{background-color:var(--neutralBackground)}.content-inner blockquote.tip{background-color:var(--tipBackground)}.content-inner blockquote :is(h3,h4):is(.warning,.error,.info,.neutral,.tip){color:var(--contrast);margin:0 -1.2rem;padding:.7rem 1.2rem .7rem 3.3rem;font-weight:700;font-style:normal}.content-inner blockquote :is(h3,h4):is(.warning,.error,.info,.neutral,.tip):before{color:var(--contrast);position:absolute;left:1rem;font-size:1.8rem;font-family:remixicon;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.content-inner blockquote :is(h3,h4).warning{background-color:var(--warningHeadingBackground);color:var(--warningHeading)}.content-inner blockquote :is(h3,h4).warning:before{content:var(--icon-error-warning);color:var(--warningHeading)}.content-inner blockquote :is(h3,h4).error{background-color:var(--errorHeadingBackground);color:var(--errorHeading)}.content-inner blockquote :is(h3,h4).error:before{content:var(--icon-error-warning);color:var(--errorHeading)}.content-inner blockquote :is(h3,h4).info{background-color:var(--infoHeadingBackground);color:var(--infoHeading)}.content-inner blockquote :is(h3,h4).info:before{content:var(--icon-information);color:var(--infoHeading)}.content-inner blockquote :is(h3,h4).neutral{background-color:var(--neutralHeadingBackground);color:var(--neutralHeading)}.content-inner blockquote :is(h3,h4).neutral:before{content:var(--icon-double-quotes-l);color:var(--neutralHeading)}.content-inner blockquote :is(h3,h4).tip{background-color:var(--tipHeadingBackground);color:var(--tipHeading)}.content-inner blockquote :is(h3,h4).tip:before{content:var(--icon-information);color:var(--tipHeading)}.content-inner blockquote :is(h3,h4):is(.warning,.error,.info,.neutral,.tip) code{margin:0 .5ch}.content-inner blockquote:is(.warning,.error,.info,.neutral,.tip) code{background-color:var(--admInlineCodeBackground);border:1px solid var(--admInlineCodeBorder);color:var(--admInlineCodeColor)}.content-inner blockquote:is(.warning,.error,.info,.neutral,.tip) pre code{background-color:var(--admCodeBackground);border:1px solid var(--admCodeBorder);color:var(--admCodeColor)}.content-inner blockquote :is(h3,h4):is(.warning,.error,.info,.neutral,.tip) :is(a,a:visited){color:inherit;text-decoration-color:currentColor}@media screen and (max-width: 768px){.content-inner blockquote:is(.warning,.error,.info,.neutral,.tip){margin-left:calc(-1 * var(--content-gutter));margin-right:calc(-1 * var(--content-gutter));padding-left:var(--content-gutter);padding-right:var(--content-gutter);border-radius:0}.content-inner blockquote :is(h3,h4):is(.warning,.error,.info,.neutral,.tip){margin:0 calc(-1 * var(--content-gutter))}}.content-inner .summary h2{font-weight:700}.content-inner .summary h2 a{text-decoration:none;border:none}.content-inner .summary span.deprecated{color:var(--darkDeprecated);font-weight:400;font-style:italic}.content-inner .summary .summary-row .summary-signature{font-family:var(--monoFontFamily);font-weight:700}.content-inner .summary .summary-row .summary-signature a{text-decoration:none;border:none}.content-inner .summary .summary-row .summary-synopsis{font-family:var(--defaultFontFamily);font-style:italic;padding:0 1.2em;margin:0 0 .5em}.content-inner .summary .summary-row .summary-synopsis p{margin:0;padding:0}.content-inner :is(a.no-underline,pre a){color:var(--linksNoUnderline);text-shadow:none;text-decoration:none;background-image:none}.content-inner :is(a.no-underline,pre a):is(:visited,:active,:focus,:hover){color:var(--linksNoUnderlineVisited)}.content-inner code{background-color:var(--codeBackground);vertical-align:baseline;border-radius:2px;padding:.1em .2em;border:1px solid var(--codeBorder);text-transform:none}.content-inner pre{margin:var(--baseLineHeight) 0}.content-inner pre code{display:block;overflow-x:auto;white-space:inherit;padding:.5em 1em}.content-inner pre code::-webkit-scrollbar{width:.4rem;height:.4rem}.content-inner pre code::-webkit-scrollbar-thumb{border-radius:.25rem;background-color:var(--codeScrollThumb)}.content-inner pre code::-webkit-scrollbar-track{background-color:var(--codeScrollBackground)}.content-inner pre code::-webkit-scrollbar-corner{background-color:var(--codeScrollBackground)}.content-inner pre code.output{margin:0 12px;max-height:400px;overflow:auto}.content-inner pre code.output+.copy-button{margin-right:12px}.content-inner pre code.output:before{content:\"Output\";display:block;position:absolute;top:-16px;left:12px;padding:2px 4px;font-size:12px;font-family:var(--monoFontFamily);line-height:1;color:var(--textHeaders);background-color:var(--codeBackground);border:1px solid var(--codeBorder);border-bottom:0;border-radius:2px}@media screen and (max-width: 768px){.content-inner>pre,.content-inner section>pre{margin-left:calc(-1 * var(--content-gutter));margin-right:calc(-1 * var(--content-gutter))}.content-inner>pre code,.content-inner section>pre code{padding-left:var(--content-gutter);padding-right:var(--content-gutter);border-radius:0;border-left-width:0;border-right-width:0}}@keyframes blink-background{0%{background-color:var(--textDetailBackground)}to{background-color:var(--blink)}}.content-inner .detail:target .detail-header{animation-duration:.55s;animation-name:blink-background;animation-iteration-count:1;animation-timing-function:ease-in-out}.content-inner .detail-header{margin:2 0 1em;padding:.5em 1em;background-color:var(--textDetailBackground);border-left:3px solid var(--textDetailAccent);font-size:1em;font-family:var(--monoFontFamily);position:relative}.content-inner .detail-header .note{float:right}.content-inner .detail-header .signature{display:inline-block;font-family:var(--monoFontFamily);font-size:1rem;font-weight:700}.content-inner .detail-header:hover a.detail-link,.content-inner .detail-header a.detail-link:focus{opacity:1;text-decoration:none}.content-inner .detail-header a.detail-link{transition:opacity .3s ease-in-out;position:absolute;top:0;left:0;display:block;opacity:0;padding:.6em;line-height:1.5em;margin-left:-2.5em;text-decoration:none;border:none}@media screen and (max-width: 768px){.content-inner .detail-header a.detail-link{margin-left:-30px}}.content-inner .specs pre{font-family:var(--monoFontFamily);font-size:.9em;font-style:normal;line-height:24px;white-space:pre-wrap;margin:0;padding:0}.content-inner .specs .attribute{color:var(--fnSpecAttr)}.content-inner .docstring{margin:1.2em 0 3em 1.2em}@media screen and (max-width: 768px){.content-inner .docstring{margin-left:0}}.content-inner .docstring:is(h2,h3,h4,h5){font-weight:700}.content-inner .docstring h2{font-size:1.1em}.content-inner .docstring h3{font-size:1em}.content-inner .docstring h4{font-size:.95em}.content-inner .docstring h5{font-size:.9em}.content-inner div.deprecated{display:block;padding:9px 15px;background-color:var(--fnDeprecated)}.content-inner .footer{margin:4em auto 1em;text-align:center;font-style:italic;font-size:14px}.content-inner .footer,.content-inner .footer :is(a,.footer-button){color:var(--textFooter)}.content-inner .footer .line{display:inline-block}.content-inner .footer .footer-button{background-color:transparent;border:0;cursor:pointer;font-style:italic;padding:0 4px}.content-inner .footer .footer-hex-package{margin-right:4px}.content-inner .bottom-actions{display:flex;justify-content:space-between;margin-top:4em}.content-inner .bottom-actions .bottom-actions-button{display:flex;text-decoration:none;flex-direction:column;border-radius:var(--borderRadius);border:1px solid var(--bottomActionsBtnBorder);padding:8px 16px;min-width:150px}.content-inner .bottom-actions .bottom-actions-button .subheader{font-size:.8em;color:var(--bottomActionsBtnSubheader);white-space:nowrap}.content-inner .bottom-actions .bottom-actions-button[rel=prev] .subheader{text-align:right}@media screen and (max-width: 768px){.content-inner .bottom-actions{flex-direction:column-reverse}.content-inner .bottom-actions .bottom-actions-item:not(:first-child){margin-bottom:16px}}.page-cheatmd .content-inner{--horizontal-space: 1.5em;--vertical-space: 1em}@media (max-width: 600px){.page-cheatmd .content-inner{--horizontal-space: 1em;--vertical-space: .75em}}.page-cheatmd .content-inner{max-width:1200px}.page-cheatmd .content-inner h1{margin-bottom:var(--vertical-space)}.page-cheatmd .content-inner h2{margin:var(--vertical-space) 0;column-span:all;color:var(--gray700);font-weight:500}.page-cheatmd.dark .content-inner h2{color:var(--gray200)}.page-cheatmd .content-inner h3{color:var(--main);text-decoration-color:var(--main);margin:0 0 1em;font-weight:400}.page-cheatmd .content-inner h3 :is(a,a:visited){color:var(--main);text-decoration-color:var(--main)}.page-cheatmd .content-inner section.h3{min-width:300px;margin:0;padding:0 0 calc(var(--vertical-space) * 2) 0;break-inside:avoid}.page-cheatmd .content-inner h3 .text{overflow:hidden}.page-cheatmd .content-inner h3 .text:after{content:\"\";margin-left:calc(var(--horizontal-space) / 2);vertical-align:baseline;display:inline-block;width:100%;height:1px;margin-right:-100%;margin-bottom:5px;background-color:var(--codeBorder)}.page-cheatmd .content-inner h4{display:block;margin:0;padding:.25em var(--horizontal-space);font-weight:400;background:var(--gray100);color:#567;border:solid 1px 1px 0 1px var(--gray100)}.page-cheatmd.dark .content-inner h4{background:#192f50;color:var(--textBody);border:1px solid #192f50;border-bottom:0}.page-cheatmd .content-inner .h2 p{margin:0;display:block;background:var(--gray50);padding:var(--vertical-space) var(--horizontal-space)}.page-cheatmd.dark .content-inner .h2 p{background:var(--gray700)}.page-cheatmd .content-inner .h2 p>code{color:#eb5757;border-radius:var(--borderRadius);padding:.2em .4em}.page-cheatmd .content-inner pre code{padding:var(--vertical-space) var(--horizontal-space)}.page-cheatmd .content-inner pre code::-webkit-scrollbar{width:.4rem;height:.6rem}.page-cheatmd .content-inner .h2 pre{margin:0}.page-cheatmd .content-inner .h2 pre+pre{margin-top:-1px}.page-cheatmd .content-inner pre.wrap{white-space:break-spaces}@media screen and (max-width: 768px){.page-cheatmd .content-inner pre code{border-left-width:1px!important;border-right-width:1px!important}}.page-cheatmd .content-inner .h2 table{display:table;box-sizing:border-box;width:100%;border-collapse:collapse;margin:0}.page-cheatmd .content-inner .h2 th{padding:var(--vertical-space) var(--horizontal-space);line-height:inherit;margin-bottom:-1px;vertical-align:middle;border-bottom:1px solid var(--codeBorder)}.page-cheatmd .content-inner .h2 td{padding:var(--vertical-space) var(--horizontal-space);border:0;border-bottom:1px solid var(--codeBorder)}.page-cheatmd .content-inner .h2 tr:first-child{border-top:1px solid var(--codeBorder)}.page-cheatmd .content-inner .h2 td code{color:#eb5757;border-radius:var(--borderRadius);padding:.2em .4em}.page-cheatmd .content-inner .h2 thead{background-color:var(--gray50)}.page-cheatmd.dark .content-inner .h2 thead{background-color:var(--gray700)}.page-cheatmd .content-inner .h2 tbody{background-color:var(--codeBackground)}.page-cheatmd .content-inner .h2 :is(ul,ol){margin:0;padding:0}.page-cheatmd .content-inner .h2 li{list-style-position:inside;padding:.5em var(--horizontal-space);line-height:2em;vertical-align:middle;background-color:var(--codeBackground);border-bottom:1px solid var(--codeBorder);margin-top:0}.page-cheatmd .content-inner .h2 :is(ul,ol)+pre code{border-top:0}.page-cheatmd .content-inner .h2 li>code{color:#eb5757;border-radius:var(--borderRadius);padding:.2em .4em}.page-cheatmd .content-inner section.width-50{display:block;width:50%;margin:0}.page-cheatmd .content-inner section.width-50>section>table{width:100%}.page-cheatmd .content-inner section:is(.col-2,.col-2-left,.col-3){column-gap:40px}.page-cheatmd .content-inner section.col-2{column-count:2;height:auto}.page-cheatmd .content-inner section.col-2-left{display:grid;grid-template-columns:calc(100% / 3) auto}.page-cheatmd .content-inner section.col-2-left>h2{grid-column-end:span 2}.page-cheatmd .content-inner section.col-3{column-count:3;height:auto}.page-cheatmd .content-inner section.list-4>ul{display:flex;flex-wrap:wrap}.page-cheatmd .content-inner section.list-4>ul>li{flex:0 0 25%}.page-cheatmd .content-inner section.list-6>ul{display:flex;flex-wrap:wrap}.page-cheatmd .content-inner section.list-6>ul>li{flex:0 0 calc(100% / 6)}@media screen and (max-width: 1400px){.page-cheatmd .content-inner section.col-3{column-count:2}.page-cheatmd .content-inner section.col-2-left{display:flex;flex-direction:column}}@media screen and (max-width: 1200px){.page-cheatmd .content-inner section:is(.col-2,.col-3){display:flex;flex-direction:column}.page-cheatmd .content-inner section.list-6>ul>li{flex:0 0 25%}}@media screen and (max-width: 1000px){.page-cheatmd .content-inner section:is(.list-4,.list-6)>ul>li{flex:0 0 calc(100% / 3)}}@media screen and (max-width: 600px){.page-cheatmd .content-inner section:is(.list-4,.list-6)>ul>li{flex:0 0 50%}.page-cheatmd .content-inner section.width-50{width:100%}}#search{min-height:200px;position:relative}#search .loading{height:64px;width:64px;position:absolute;top:50%;left:calc(50% - 32px)}#search .loading div{box-sizing:border-box;display:block;position:absolute;width:51px;height:51px;margin:6px;border:6px solid var(--coldGray);border-radius:50%;animation:loading 1.2s cubic-bezier(.5,0,.5,1) infinite;border-color:var(--coldGray) transparent transparent transparent}#search .loading div:nth-child(1){animation-delay:-.45s}#search .loading div:nth-child(2){animation-delay:-.3s}#search .loading div:nth-child(3){animation-delay:-.15s}@keyframes loading{0%{transform:rotate(0)}to{transform:rotate(360deg)}}#search .result{margin:2em 0 2.5em}#search .result p{margin:0}#search .result-id{font-size:1.4em;margin:0}#search .result-id a{text-decoration:none;transition:color .1s ease-in-out;color:var(--links)}#search .result-id a:is(:visited,:active,:focus){color:var(--linksVisited)}#search .result-id a:hover{color:var(--main)}#search :is(.result-id,.result-elem) em{font-style:normal;color:var(--main)}#search .result-id small{font-weight:400}@keyframes keyboard-shortcuts-show{0%{opacity:0}to{opacity:1}}.modal{animation-duration:.15s;animation-name:keyboard-shortcuts-show;animation-iteration-count:1;animation-timing-function:ease-in-out;display:none;background-color:#000000bf;position:fixed;inset:0;z-index:300}.modal.shown{display:block}.modal .modal-contents{margin:75px auto 0;max-width:500px;background-color:var(--modalBackground);border-radius:var(--borderRadius);box-shadow:2px 2px 8px #0003;padding:25px 35px 35px}@media screen and (max-width: 768px){.modal .modal-contents{padding:20px}}.modal .modal-header{display:flex;align-items:start}.modal .modal-title{display:inline-block;flex-grow:1;font-size:1.2rem;font-weight:700;margin-bottom:20px}.modal .modal-title button{border:none;background-color:transparent;color:var(--textHeaders);font-weight:700;margin-right:30px;padding-left:0;text-align:left;transition:color .15s}.modal .modal-title button:hover{color:var(--main);cursor:pointer}.modal .modal-title button.active{color:var(--main)}.modal .modal-close{cursor:pointer;display:block;font-size:1.5rem;margin:-8px -8px 0 0;padding:8px;opacity:.7;background-color:transparent;color:var(--textHeaders);border:none;transition:opacity .15s}.modal .modal-close:hover{opacity:1}#keyboard-shortcuts-content dl.shortcut-row{display:flex;align-items:center;justify-content:space-between;margin:0;padding:6px 0 8px;border-bottom:1px solid var(--settingsSectionBorder)}#keyboard-shortcuts-content dl.shortcut-row:last-of-type{border-bottom-style:none}#keyboard-shortcuts-content dl.shortcut-row:first-child{padding-top:0}#keyboard-shortcuts-content :is(.shortcut-keys,.shortcut-description){display:inline-block}#keyboard-shortcuts-content kbd>kbd{background-color:var(--settingsInputBorder);color:var(--contrast);border-radius:var(--borderRadius);font-family:inherit;font-weight:700;display:inline-block;line-height:1;padding:4px 7px 6px;min-width:26px;text-align:center}#keyboard-shortcuts-content :is(.shortcut-keys,.shortcut-description){margin:0}#quick-switch-modal-body{width:100%;position:relative}#quick-switch-modal-body .ri-search-2-line{position:absolute;left:0;top:0;padding:4px 10px;color:var(--quickSwitchContour);font-weight:700}#quick-switch-modal-body #quick-switch-input{width:100%;padding:8px 6px 8px 38px;border:none;color:var(--quickSwitchInput);background-color:transparent;border-bottom:1px solid var(--quickSwitchContour);box-sizing:border-box;transition:all .12s ease-out}#quick-switch-modal-body #quick-switch-results{margin:0}#quick-switch-modal-body .quick-switch-result{padding:2px 5px;border-bottom:1px dotted var(--quickSwitchContour);transition:all .12s ease-out}#quick-switch-modal-body .quick-switch-result:last-child{border-bottom:none}#quick-switch-modal-body .quick-switch-result:hover{cursor:pointer}#quick-switch-modal-body .quick-switch-result:is(:hover,.selected){border-left:4px solid var(--main);background-color:var(--codeBackground)}.autocomplete{display:none;position:absolute;width:calc(100% - 32px);top:55px}.autocomplete .triangle{width:0;height:0;border-left:12px solid transparent;border-right:12px solid transparent;border-bottom:12px solid var(--autocompleteBackground);position:absolute;top:8px;left:26px;transform:translate(-50%);z-index:100;background-color:transparent}.autocomplete-preview{width:100%;margin:0;height:100%;line-height:20px;background-color:var(--background);font-family:var(--sansFontFamily);border:4px solid var(--autocompleteBorder);padding:12px 16px}.autocomplete-preview div,.autocomplete-preview span{display:none}.autocomplete-preview.loading div{float:left;display:block;border:5px solid var(--autocompleteBorder);border-radius:50%;border-top:5px solid var(--textDetailAccent);width:20px;height:20px;animation:spinner 4s linear infinite}.autocomplete-preview.loading span{color:var(--autocompleteResults);display:inline;margin-left:6px}.autocomplete-preview.loading span:after{color:var(--autocompleteResults);content:\"Loading\"}@keyframes spinner{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.autocomplete-preview.loading iframe{height:0}.autocomplete-preview iframe{width:100%;height:100%;border:0}.autocomplete-results{list-style:none;margin:0;padding:15px 20px;display:flex;justify-content:space-between;color:var(--autocompleteResults);font-family:var(--sansFontFamily);font-weight:300;font-size:.9rem}.autocomplete-results .bold{color:var(--autocompleteResultsBold);font-weight:400}.autocomplete.shown{display:block}.autocomplete-container{position:absolute;top:15px;width:100%;z-index:200}.autocomplete-suggestions{background-color:var(--autocompleteBackground);border-radius:8px;box-shadow:0 15px 99px 0 var(--autocompleteBorder);overflow-y:auto;max-height:450px;white-space:normal;overflow-x:hidden;overscroll-behavior-y:contain}.autocomplete-suggestions.previewing:has(.selected){max-height:80vh}.autocomplete-suggestions.previewing:has(.selected) .autocomplete-suggestion:not(.selected){display:none}.autocomplete-suggestions.previewing:not(:has(.selected)) .autocomplete-preview{display:none}.autocomplete-suggestions:not(.previewing) .autocomplete-preview{display:none}.autocomplete-suggestion{color:inherit;display:block;padding:12px 20px;text-decoration:none;transition:background-color .3s ease-in-out;border-top:1px solid var(--suggestionBorder);font-size:.9rem}.autocomplete-suggestion:hover,.autocomplete-suggestion.selected{background-color:var(--autocompleteHover)}.autocomplete-suggestion:not(.selected) .autocomplete-preview-indicator{display:none}.autocomplete-preview-indicator{float:right}.autocomplete-preview-indicator button{color:var(--iconAction);display:flex;align-items:center;text-decoration:none;border:1px solid var(--suggestionBorder);border-radius:8px;transition:color .3s ease-in-out;background-color:var(--autocompletePreview);cursor:pointer;padding:4px 8px;font-size:14px}.autocomplete-preview-indicator button:hover{color:var(--iconActionHover);background-color:var(--autocompleteHover)}.autocomplete-preview-indicator button i{margin-right:4px}.autocomplete-suggestions.previewing .autocomplete-preview-indicator-closed{display:none}.autocomplete-suggestions:not(.previewing) .autocomplete-preview-indicator-open{display:none}.autocomplete-suggestion:hover:not(.selected) .autocomplete-preview-indicator-closed{display:block}.autocomplete-suggestion em{font-style:normal;font-weight:700}.autocomplete-suggestion .description{opacity:.6;padding-top:3px}.autocomplete-suggestion .label{background-color:var(--autocompleteLabelBack);opacity:.6;color:var(--autocompleteLabelFont);padding:4px 8px;border-radius:4px;margin-left:5px;text-transform:uppercase;font-family:var(--sansFontFamily);font-size:.7rem}.autocomplete-suggestion .header{margin-right:5px}.autocomplete-suggestion .title,.autocomplete-suggestion .description{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%}.autocomplete-suggestions a{text-decoration:none!important}.autocomplete-suggestions::-webkit-scrollbar{width:5px;border-radius:7px;flex-shrink:0}.autocomplete-suggestions::-webkit-scrollbar-thumb{background-color:var(--autocompleteSrollbarThumb);border-radius:7px}.autocomplete-suggestions::-webkit-scrollbar-track{background-color:var(--autocompleteSrollbarTrack)}@media screen and (max-width: 1023px){.autocomplete-results .press-return{display:none}}.tooltip{box-shadow:0 0 10px var(--black-opacity-10);max-height:300px;max-width:500px;padding:0;position:absolute;pointer-events:none;margin:0;z-index:99;top:0;left:0;visibility:hidden;transform:translateY(20px);opacity:0;transition:.2s visibility ease-out,.2s transform ease-out,.2s opacity ease-out}.tooltip.tooltip-shown{visibility:visible;transform:translateY(0);opacity:1}.tooltip .tooltip-body{border:1px solid var(--codeBorder)}.tooltip .tooltip-body .signature{min-width:320px;width:100%}.tooltip .tooltip-body .detail-header{border-left:0;margin-bottom:0;margin-top:0}.tooltip .tooltip-body .docstring{background-color:var(--background);padding:1.2em;margin:0;width:498px}.tooltip .tooltip-body .docstring-plain{max-width:498px;width:auto}.tooltip .tooltip-body .version-info{float:right;line-height:1.6rem;font-family:var(--monoFontFamily);font-size:.9rem;font-weight:400;margin-bottom:-6px;opacity:.3;padding-left:.3em}pre{position:relative}pre:hover .copy-button,pre .copy-button:focus{opacity:1}.copy-button{display:flex;opacity:0;position:absolute;top:5px;right:5px;padding:4px;background-color:var(--codeBackground);border:none;cursor:pointer;transition:all .15s;font-family:var(--defaultFontFamily);font-size:14px;line-height:24px;color:currentColor}.copy-button svg{opacity:.5;transition:all .15s}pre .copy-button:hover svg,pre .copy-button:focus-visible svg{opacity:1}.copy-button svg{width:20px}.copy-button.clicked{opacity:1;color:var(--success)}.copy-button.clicked svg{display:none;color:currentColor}#settings-modal-content{margin-top:10px}#settings-modal-content .hidden{display:none}#settings-modal-content .input{box-sizing:border-box;width:80%;padding:8px;font-size:14px;background-color:var(--settingsInputBackground);color:var(--settingsInput);border:1px solid var(--settingsInputBorder);border-radius:8px;transition:border-color .15s}#settings-modal-content .input:focus{border-color:var(--main)}#settings-modal-content .input::placeholder{color:var(--gray400)}#settings-modal-content .switch-button-container{display:flex;align-items:center;justify-content:space-between;border-top:1px solid var(--settingsSectionBorder);padding:10px 0}#settings-modal-content .switch-button-container:first-of-type{border-top-style:none;padding-top:0}#settings-modal-content .switch-button-container>div>span{font-size:18px}#settings-modal-content .switch-button-container>div>p{font-size:14px;font-weight:300;line-height:1.4;margin:0;padding-bottom:6px;padding-right:10px}#settings-modal-content .switch-button{position:relative;display:inline-block;flex-shrink:0;width:40px;height:20px;user-select:none;transition:all .15s}#settings-modal-content .switch-button__checkbox{appearance:none;position:absolute;display:block;width:20px;height:20px;border-radius:1000px;background-color:#91a4b7;border:3px solid #e5edf5;cursor:pointer;transition:all .3s}#settings-modal-content .switch-button__bg{display:block;width:100%;height:100%;border-radius:1000px;background-color:#e5edf5;cursor:pointer;transition:all .3s}#settings-modal-content .switch-button__checkbox:checked{background-color:#fff;border-color:var(--main);transform:translate(100%)}#settings-modal-content .switch-button__checkbox:checked+.switch-button__bg{background-color:var(--main)}#settings-modal-content .switch-button__checkbox:focus{outline:0}#settings-modal-content .switch-button__checkbox:focus+.switch-button__bg{outline:2px solid var(--main);outline-offset:2px}#settings-modal-content .switch-button__checkbox:focus:not(:focus-visible)+.switch-button__bg{outline:0}#settings-modal-content .settings-select{cursor:pointer;position:relative;border:none;background-color:transparent;color:var(--textBody)}#settings-modal-content .settings-select option{color:initial}#toast{opacity:0;position:fixed;z-index:1;left:50%;bottom:1rem;min-width:3rem;margin:0 -1.2rem;padding:.7rem 1.2rem;text-align:center;font-weight:700;border-radius:10px;border:1px solid var(--codeBorder);background-color:var(--codeBackground);color:var(--textBody);transition:opacity .4s ease-in-out,transform .3s ease-out;cursor:default}#toast.show{opacity:1;transform:translateY(-.75rem)}@media (prefers-reduced-motion: reduce){#toast{transition:none}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0;user-select:none}@media print{.body-wrapper{display:block}.sidebar,.sidebar-button,.top-search{display:none}.content{padding-left:0;overflow:visible;left:0;width:100%}.summary-row{break-inside:avoid}#toast{display:none}.content-inner{padding:0}.content-inner .section-heading a.hover-link,.content-inner button.icon-action,.content-inner a.icon-action,.content-inner .bottom-actions{display:none}.footer p:first-of-type{display:none}.content-inner blockquote:is(.warning,.error,.info,.neutral,.tip){border:2px solid var(--gray400)}.content-inner blockquote :is(h3,h4):is(.warning,.error,.info,.neutral,.tip){color:var(--textHeaders);border-bottom:2px solid var(--gray400)}.content-inner pre code.makeup{border-color:var(--gray400);white-space:break-spaces;break-inside:avoid}.content-inner blockquote code.inline,.content-inner code.inline{border-color:var(--gray400)}}@media print{.page-cheatmd .content-inner *{background-color:transparent!important;border-color:var(--gray400)!important}.page-cheatmd .content-inner{max-width:100%;width:100%;padding:0;font-size:.7em}.page-cheatmd .content-inner section:is(.col-2,.col-2-left,.col-3){column-gap:30px}.page-cheatmd .content-inner section.col-2{column-count:2}.page-cheatmd .content-inner section.col-2-left{display:grid}.page-cheatmd .content-inner section.col-3{column-count:3}.page-cheatmd .content-inner h1{margin-top:0;margin-bottom:.5em}.page-cheatmd .content-inner h2.section-heading{font-weight:700;margin-top:1em;column-span:all}.page-cheatmd .content-inner section.h2{break-inside:avoid}.page-cheatmd .content-inner h3{font-weight:700;color:var(--mainDark)}.page-cheatmd .content-inner h3:after{height:2px;background-color:var(--gray400)}.page-cheatmd .content-inner section.h3{min-width:300px;break-inside:avoid}.page-cheatmd .content-inner h4{padding:.5em 0;border:none;font-weight:700;color:#000}.page-cheatmd .content-inner .h2 p{padding-left:0;padding-right:0;border:none!important}.page-cheatmd .content-inner code{line-height:1.5em}.page-cheatmd .content-inner .h2 table{font-variant-numeric:tabular-nums;break-inside:avoid}.page-cheatmd .content-inner .h2 :is(th,td){vertical-align:top;padding-left:0;padding-right:0}.page-cheatmd .content-inner .h2 thead{border-style:solid none;border-width:1px}.page-cheatmd .content-inner .h2 tr{border-bottom:none}.page-cheatmd .content-inner .h2 th{font-weight:700}.page-cheatmd .content-inner .h2 li{padding-left:0;padding-right:0;vertical-align:middle;border-bottom:none}.page-cheatmd .content-inner pre:hover button.copy-button,.page-cheatmd .content-inner div.tooltip{display:none}.page-cheatmd .content-inner footer p:not(.built-using){display:none}}code.makeup .unselectable{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.makeup .hll{background-color:#ffc}.makeup .bp{color:#3465a4}.makeup .c,.makeup .c1,.makeup .ch,.makeup .cm,.makeup .cp,.makeup .cpf,.makeup .cs{color:#4d4d4d}.makeup .dl{color:#408200}.makeup .err{color:#a40000;border:#ef2929}.makeup .fm,.makeup .g{color:#4d4d4c}.makeup .gd{color:#a40000}.makeup .ge{color:#4d4d4c;font-style:italic}.makeup .gh{color:navy;font-weight:700}.makeup .gi{color:#00a000}.makeup .go{color:#4d4d4c;font-style:italic}.makeup .gp{color:#4d4d4d}.makeup .gr{color:#ef2929}.makeup .gs{color:#4d4d4c;font-weight:700}.makeup .gt{color:#a40000;font-weight:700}.makeup .gu{color:purple;font-weight:700}.makeup .il{color:#0000cf;font-weight:700}.makeup .k,.makeup .kc,.makeup .kd,.makeup .kn,.makeup .kp,.makeup .kr,.makeup .kt{color:#204a87}.makeup .l{color:#4d4d4c}.makeup .ld{color:#c00}.makeup .m,.makeup .mb,.makeup .mf,.makeup .mh,.makeup .mi,.makeup .mo{color:#2937ab}.makeup .n{color:#4d4d4c}.makeup .na{color:#8a7000}.makeup .nb{color:#204a87}.makeup .nc{color:#0000cf}.makeup .nd{color:#5c35cc;font-weight:700}.makeup .ne{color:#c00;font-weight:700}.makeup .nf{color:#b65800}.makeup .ni{color:#bc5400}.makeup .nl{color:#b65800}.makeup .nn{color:#4d4d4c}.makeup .no{color:#a06600}.makeup .nt{color:#204a87;font-weight:700}.makeup .nv,.makeup .nx{color:#4d4d4c}.makeup .o{color:#bc5400}.makeup .ow{color:#204a87}.makeup .p,.makeup .py{color:#4d4d4c}.makeup .s,.makeup .s1,.makeup .s2,.makeup .sa,.makeup .sb,.makeup .sc{color:#408200}.makeup .sd{color:#8f5902;font-style:italic}.makeup .se{color:#204a87}.makeup .sh{color:#408200}.makeup .si{color:#204a87}.makeup .sr{color:#c00}.makeup .ss{color:#a06600}.makeup .sx{color:#408200}.makeup .vc,.makeup .vg,.makeup .vi,.makeup .vm,.makeup .x{color:#4d4d4c}.dark .makeup{color:#dce1e6}.dark .makeup .hll{background-color:#49483e}.dark .makeup .bp{color:#dce1e6}.dark .makeup .c,.dark .makeup .c1,.dark .makeup .ch,.dark .makeup .cm,.dark .makeup .cp,.dark .makeup .cpf,.dark .makeup .cs{color:#969386}.dark .makeup .dl{color:#e6db74}.dark .makeup .err{color:#960050;background-color:#1e0010}.dark .makeup .fm{color:#a6e22e}.dark .makeup .gd{color:#ff5385}.dark .makeup .ge{font-style:italic}.dark .makeup .gi{color:#a6e22e}.dark .makeup .gp{color:#969386}.dark .makeup .gs{font-weight:700}.dark .makeup .gu{color:#969386}.dark .makeup .gt{color:#ff5385;font-weight:700}.dark .makeup .il{color:#ae81ff}.dark .makeup .k,.dark .makeup .kc,.dark .makeup .kd{color:#66d9ef}.dark .makeup .kn{color:#ff5385}.dark .makeup .kp,.dark .makeup .kr,.dark .makeup .kt{color:#66d9ef}.dark .makeup .l,.dark .makeup .ld,.dark .makeup .m,.dark .makeup .mb,.dark .makeup .mf,.dark .makeup .mh,.dark .makeup .mi,.dark .makeup .mo{color:#ae81ff}.dark .makeup .n{color:#dce1e6}.dark .makeup .na{color:#a6e22e}.dark .makeup .nb{color:#dce1e6}.dark .makeup .nc,.dark .makeup .nd,.dark .makeup .ne,.dark .makeup .nf{color:#a6e22e}.dark .makeup .ni,.dark .makeup .nl,.dark .makeup .nn{color:#dce1e6}.dark .makeup .no{color:#66d9ef}.dark .makeup .nt{color:#ff5385}.dark .makeup .nv{color:#dce1e6}.dark .makeup .nx{color:#a6e22e}.dark .makeup .o,.dark .makeup .ow{color:#ff5385}.dark .makeup .p,.dark .makeup .py{color:#dce1e6}.dark .makeup .s,.dark .makeup .s1,.dark .makeup .s2,.dark .makeup .sa,.dark .makeup .sb,.dark .makeup .sc,.dark .makeup .sd{color:#e6db74}.dark .makeup .se{color:#ae81ff}.dark .makeup .sh,.dark .makeup .si,.dark .makeup .sr,.dark .makeup .ss,.dark .makeup .sx{color:#e6db74}.dark .makeup .vc,.dark .makeup .vg,.dark .makeup .vi,.dark .makeup .vm{color:#dce1e6}.tabset{--borderWidth: 1px;--tabsetPadding: var(--baseLineHeight);margin:var(--baseLineHeight) 0}.tabset-tablist{display:flex;overflow-x:auto}.tabset-tab{padding:.6rem var(--tabsetPadding);min-height:46px;font-family:var(--sansFontFamily);background-color:var(--tabBackground);color:var(--tab);border:var(--borderWidth) solid var(--tabBorder);margin-right:calc(-1 * var(--borderWidth));border-top-width:4px;border-top-color:var(--tabBorderTop);border-radius:0;border-top-left-radius:var(--borderRadius);border-top-right-radius:var(--borderRadius);box-shadow:0 -3px 4px var(--tabShadow) inset;cursor:pointer}.tabset-tab[aria-selected=true]{border-bottom-color:var(--tabBackground);border-top-color:var(--mainLight);box-shadow:none}.tabset-tab[aria-selected=true]:focus-visible{background-color:var(--mainLight);border-color:var(--mainLight);color:var(--white)}.tabset-panel{padding:0 var(--tabsetPadding);border:var(--borderWidth) solid var(--tabBorder);margin-top:calc(-1 * var(--borderWidth));border-bottom-left-radius:var(--borderRadius);border-bottom-right-radius:var(--borderRadius)}@media screen and (max-width: 768px){.tabset{--tabsetPadding: calc(var(--baseLineHeight) / 2)}.tabset-panel{padding-top:calc(var(--tabsetPadding) / 2);padding-bottom:calc(var(--tabsetPadding) / 2)}.tabset-panel pre,.tabset-panel blockquote{margin-left:calc(-1 * var(--tabsetPadding))!important;margin-right:calc(-1 * var(--tabsetPadding))!important}.tabset-panel>pre code{border-left-width:0;border-right-width:0}}body.preview{--sidebarWidth: 0px;overflow:hidden}body.preview .content{height:auto}body.preview .content-inner{padding:0}body.preview .sidebar,body.preview #sidebar-menu,body.preview .hover-link,body.preview .detail-link{display:none}body.preview :is(h1,h2,h3):first-of-type{margin-top:0}body:not(.dark) .content-inner img[src*=\"#gh-dark-mode-only\"],body.dark .content-inner img[src*=\"#gh-light-mode-only\"]{display:none}\n/*! Bundled license information:\n\nnormalize.css/normalize.css:\n  (*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css *)\n*/\n"
  },
  {
    "path": "doc/dist/search_data-6BAA9AEB.js",
    "content": "searchData={\"items\":[{\"type\":\"module\",\"title\":\"Topo\",\"doc\":\"A Geometry library for Elixir that calculates relationships between two\\ngeometries.  Geometries can be of any of the following types:\\n\\n* Point\\n* LineString\\n* Polygon\\n* MultiPoint\\n* MultiLineString\\n* MultiPolygon\\n\\nEach of these functions can be passed any two Geometries in either a Map with a\\n`:type` and `:coordinates` keys or as a struct generated via the Geo library\\n(https://github.com/bryanjos/geo). Coordinates are represented as atoms `{x, y}`\\nand multiple coordinates as Lists.\\n\\n```elixir\\na = %{type: \\\"Polygon\\\", coordinates: [[{2, 2}, {20, 2}, {11, 11}, {2, 2}]]}\\nb = %Geo.Polygon{coordinates: [[{2, 2}, {20, 2}, {11, 11}, {2, 2}]]}\\n\\nTopo.equals? a, b # => true\\n```\\n\\nInstead of a Point geometry, just a single coordinate can be used.\\n\\n```elixir\\na = %{type: \\\"Polygon\\\", coordinates: [[{2, 2}, {20, 2}, {11, 11}, {2, 2}]]}\\n\\nTopo.intersects? a, {4, 6} # => true\\n```\\n\\nThe `Topo` library's functions will automatically attempt to \\\"clean\\\" geometries\\npassed to them:\\n\\n* Linear Rings (including Polygons) will be reordered to a counter-clockwise\\ndirection.\\n* Polygon's Linear Rings will automatically be closed if the first point is not\\nrepeated as the last point.\\n* Points that are equal or collinear with surrounding points are removed from\\nLineStrings or Polygons.\",\"ref\":\"Topo.html\"},{\"type\":\"function\",\"title\":\"Topo.contains?/2\",\"doc\":\"Returns `true` if all points of geometry **B** lie within **A**.\\n\\nThere are a few non-obvious special cases that are worth mentioning:\\n\\n  - A Polygon does not contain its own boundary.  Specifically a LineString that\\n  is the exact same as a Polygon's exterior Linear ring is not contained within a\\n  that Polygon.\\n\\n  ```elixir\\n  a = %Geo.Polygon{coordinates: [[{2, 2}, {20, 2}, {11, 11}, {2, 2}]]}\\n  b = %Geo.LineString{coordinates: [{2, 2}, {20, 2}, {11, 11}, {2, 2}]}\\n\\n  Topo.contains? a, b # => false\\n  Topo.intersects? a, b  # => true\\n  ```\\n\\n  - A LineString does not contain it's own first and last point (unless those\\n  points are the same, as in a LinearRing)\\n\\n  ```elixir\\n  a = %Geo.LineString{coordinates: [{1, 3}, {2, -1}, {0, -1}]}\\n  b = %Geo.LineString{coordinates: [{1, 3}, {2, -1}, {0, -1}, {1, 3}]}\\n\\n  Topo.contains? a, {1, 3} # => false\\n  Topo.intersects? a, {1, 3} # => true\\n  Topo.contains? b, {1, 3} # => true\\n  ```\",\"ref\":\"Topo.html#contains?/2\"},{\"type\":\"function\",\"title\":\"Examples - Topo.contains?/2\",\"doc\":\"iex> Topo.contains?(\\n    ...>   %{type: \\\"Polygon\\\", coordinates: [[{20, 20}, {20, 180}, {220, 180}, {220, 20}, {20, 20}]]},\\n    ...>   %{type: \\\"Polygon\\\", coordinates: [[{160, 60}, {20, 20}, {100, 140}, {160, 60}]]}\\n    ...> )\\n    true\\n\\n    iex> Topo.contains?(\\n    ...>   %{type: \\\"Polygon\\\", coordinates: [[{160, 60}, {20, 20}, {100, 140}, {160, 60}]]},\\n    ...>   %{type: \\\"Polygon\\\", coordinates: [[{20, 20}, {20, 180}, {220, 180}, {220, 20}, {20, 20}]]}\\n    ...> )\\n    false\",\"ref\":\"Topo.html#contains?/2-examples\"},{\"type\":\"function\",\"title\":\"Topo.disjoint?/2\",\"doc\":\"Returns `true` if geometries **A** and **B** do not have any points in\\ncommon.\",\"ref\":\"Topo.html#disjoint?/2\"},{\"type\":\"function\",\"title\":\"Examples - Topo.disjoint?/2\",\"doc\":\"iex> Topo.disjoint?({1, -3}, %{type: \\\"MultiPoint\\\", coordinates: [{70, 35}, {100, 80}]})\\n    true\\n\\n    iex> Topo.disjoint?(\\n    ...>   %{type: \\\"Polygon\\\", coordinates: [\\n    ...>     [{60, 120}, {60, 40}, {160, 40}, {160, 120}, {60, 120}],\\n    ...>     [{140, 100}, {80, 100}, {80, 60}, {140, 60}, {140, 100}]]},\\n    ...>   %Geo.MultiPoint{coordinates: [{70, 35}, {100, 80}]}\\n    ...> )\\n    true\",\"ref\":\"Topo.html#disjoint?/2-examples\"},{\"type\":\"function\",\"title\":\"Topo.equals?/2\",\"doc\":\"Geometries **A** and **B** are equivalent and cover the exact\\nsame set of points.  By definition, **A** and **B** are equal if **A** contains\\n**B** and **B** contains **A**.  Equality does not necessarily mean that the\\ngeometries are of the same type.  A Point **A** is equal to a MultiPoint that\\ncontains only the same Point **A**.\",\"ref\":\"Topo.html#equals?/2\"},{\"type\":\"function\",\"title\":\"Examples - Topo.equals?/2\",\"doc\":\"iex> Topo.equals?(\\n    ...>   %{type: \\\"Point\\\", coordinates: {2, -3}},\\n    ...>   %{type: \\\"MultiPoint\\\", coordinates: [{2, -3}]}\\n    ...> )\\n    true\\n\\n    iex> Topo.equals?(\\n    ...>   %{type: \\\"Polygon\\\", coordinates: [[{160, 60}, {20, 20}, {100, 140}, {160, 60}]]},\\n    ...>   %{type: \\\"Polygon\\\", coordinates: [[{20, 20}, {20, 180}, {220, 180}, {220, 20}, {20, 20}]]}\\n    ...> )\\n    false\",\"ref\":\"Topo.html#equals?/2-examples\"},{\"type\":\"function\",\"title\":\"Topo.intersects?/2\",\"doc\":\"Returns `true` if geometries **A** and **B** share at least one point in\\ncommon.\",\"ref\":\"Topo.html#intersects?/2\"},{\"type\":\"function\",\"title\":\"Examples - Topo.intersects?/2\",\"doc\":\"iex> Topo.intersects?(\\n    ...>   %{type: \\\"Polygon\\\", coordinates: [[{2, 2}, {20, 2}, {11, 11}, {2, 2}]]},\\n    ...>   %{type: \\\"LineString\\\", coordinates: [{11, 10}, {4, 2.5}, {16, 2.5}, {11, 10}]}\\n    ...> )\\n    true\\n\\n    iex> Topo.intersects?(\\n    ...>   %{type: \\\"Polygon\\\", coordinates: [\\n    ...>     [{60, 120}, {60, 40}, {160, 40}, {160, 120}, {60, 120}],\\n    ...>     [{140, 100}, {80, 100}, {80, 60}, {140, 60}, {140, 100}]]},\\n    ...>   %{type: \\\"MultiPoint\\\", coordinates: [{70, 35}, {100, 80}]}\\n    ...> )\\n    false\",\"ref\":\"Topo.html#intersects?/2-examples\"},{\"type\":\"function\",\"title\":\"Topo.within?/2\",\"doc\":\"This is the direct converse of `contains?`.  All points of\\ngeometry **A** lie within geometry **B**.\",\"ref\":\"Topo.html#within?/2\"},{\"type\":\"function\",\"title\":\"Examples - Topo.within?/2\",\"doc\":\"iex> Topo.within?(\\n    ...>   %{type: \\\"Polygon\\\", coordinates: [[{20, 20}, {20, 180}, {220, 180}, {220, 20}, {20, 20}]]},\\n    ...>   %{type: \\\"Polygon\\\", coordinates: [[{160, 60}, {20, 20}, {100, 140}, {160, 60}]]}\\n    ...> )\\n    false\\n\\n    iex> Topo.within?(\\n    ...>   %{type: \\\"Polygon\\\", coordinates: [[{160, 60}, {20, 20}, {100, 140}, {160, 60}]]},\\n    ...>   %{type: \\\"Polygon\\\", coordinates: [[{20, 20}, {20, 180}, {220, 180}, {220, 20}, {20, 20}]]}\\n    ...> )\\n    true\",\"ref\":\"Topo.html#within?/2-examples\"},{\"type\":\"type\",\"title\":\"Topo.geometry/0\",\"doc\":\"\",\"ref\":\"Topo.html#t:geometry/0\"}],\"content_type\":\"text/markdown\",\"producer\":{\"name\":\"ex_doc\",\"version\":[48,46,51,50,46,50]}}"
  },
  {
    "path": "doc/dist/sidebar_items-E095BA35.js",
    "content": "sidebarNodes={\"modules\":[{\"id\":\"Topo\",\"deprecated\":false,\"group\":\"\",\"title\":\"Topo\",\"sections\":[],\"nodeGroups\":[{\"name\":\"Types\",\"nodes\":[{\"id\":\"geometry/0\",\"deprecated\":false,\"title\":\"geometry()\",\"anchor\":\"t:geometry/0\"}],\"key\":\"types\"},{\"name\":\"Functions\",\"nodes\":[{\"id\":\"contains?/2\",\"deprecated\":false,\"title\":\"contains?(a, b)\",\"anchor\":\"contains?/2\"},{\"id\":\"disjoint?/2\",\"deprecated\":false,\"title\":\"disjoint?(a, b)\",\"anchor\":\"disjoint?/2\"},{\"id\":\"equals?/2\",\"deprecated\":false,\"title\":\"equals?(a, b)\",\"anchor\":\"equals?/2\"},{\"id\":\"intersects?/2\",\"deprecated\":false,\"title\":\"intersects?(a, b)\",\"anchor\":\"intersects?/2\"},{\"id\":\"within?/2\",\"deprecated\":false,\"title\":\"within?(a, b)\",\"anchor\":\"within?/2\"}],\"key\":\"functions\"}]}],\"tasks\":[],\"extras\":[{\"id\":\"api-reference\",\"group\":\"\",\"title\":\"API Reference\",\"headers\":[{\"id\":\"Modules\",\"anchor\":\"modules\"}]}]}"
  },
  {
    "path": "doc/index.html",
    "content": "<!DOCTYPE html>\n<html>\n  <head>\n    <meta charset=\"utf-8\">\n    <title>Topo v1.0.3 — Documentation</title>\n    <meta http-equiv=\"refresh\" content=\"0; url=Topo.html\">\n    <meta name=\"generator\" content=\"ExDoc v0.32.2\">\n  </head>\n  <body></body>\n</html>\n"
  },
  {
    "path": "doc/search.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n  <head>\n    <meta charset=\"utf-8\">\n    <meta http-equiv=\"x-ua-compatible\" content=\"ie=edge\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <meta name=\"generator\" content=\"ExDoc v0.32.2\">\n    <meta name=\"project\" content=\"Topo v1.0.3\">\n\n\n      <meta name=\"robots\" content=\"noindex\">\n\n    <title>Search — Topo v1.0.3</title>\n    <link rel=\"stylesheet\" href=\"dist/html-elixir-CDEHVNM4.css\" />\n\n\n    <script src=\"dist/handlebars.runtime-NWIB6V2M.js\"></script>\n    <script src=\"dist/handlebars.templates-K7URE6B4.js\"></script>\n    <script src=\"dist/sidebar_items-E095BA35.js\"></script>\n    <script src=\"docs_config.js\"></script>\n    <script async src=\"dist/html-BHYOTRCH.js\"></script>\n\n\n  </head>\n  <body data-type=\"search\" class=\"page-search\">\n    <script>\n\n      try {\n        var settings = JSON.parse(localStorage.getItem('ex_doc:settings') || '{}');\n\n        if (settings.theme === 'dark' ||\n           ((settings.theme === 'system' || settings.theme == null) &&\n             window.matchMedia('(prefers-color-scheme: dark)').matches)\n           ) {\n          document.body.classList.add('dark')\n        }\n      } catch (error) { }\n    </script>\n\n<div class=\"body-wrapper\">\n\n<button id=\"sidebar-menu\" class=\"sidebar-button sidebar-toggle\" aria-label=\"toggle sidebar\" aria-controls=\"sidebar\">\n  <i class=\"ri-menu-line ri-lg\" title=\"Collapse/expand sidebar\"></i>\n</button>\n\n<nav id=\"sidebar\" class=\"sidebar\">\n\n  <div class=\"sidebar-header\">\n    <div class=\"sidebar-projectInfo\">\n\n      <div>\n        <a href=\"Topo.html\" class=\"sidebar-projectName\" translate=\"no\">\nTopo\n        </a>\n        <div class=\"sidebar-projectVersion\" translate=\"no\">\n          v1.0.3\n        </div>\n      </div>\n    </div>\n    <ul id=\"sidebar-listNav\" class=\"sidebar-listNav\" role=\"tablist\">\n      <li>\n        <button id=\"extras-list-tab-button\" role=\"tab\" data-type=\"extras\" aria-controls=\"extras-tab-panel\" aria-selected=\"true\" tabindex=\"0\">\nPages\n        </button>\n      </li>\n\n        <li>\n          <button id=\"modules-list-tab-button\" role=\"tab\" data-type=\"modules\" aria-controls=\"modules-tab-panel\" aria-selected=\"false\" tabindex=\"-1\">\n            Modules\n          </button>\n        </li>\n\n\n    </ul>\n  </div>\n\n  <div id=\"extras-tab-panel\" class=\"sidebar-tabpanel\" role=\"tabpanel\" aria-labelledby=\"extras-list-tab-button\">\n    <ul id=\"extras-full-list\" class=\"full-list\"></ul>\n  </div>\n\n    <div id=\"modules-tab-panel\" class=\"sidebar-tabpanel\" role=\"tabpanel\" aria-labelledby=\"modules-list-tab-button\" hidden>\n      <ul id=\"modules-full-list\" class=\"full-list\"></ul>\n    </div>\n\n\n</nav>\n\n<main class=\"content\">\n  <output role=\"status\" id=\"toast\"></output>\n\n  <div id=\"content\" class=\"content-inner\">\n    <div class=\"top-search\">\n      <div class=\"search-settings\">\n        <form class=\"search-bar\" action=\"search.html\">\n          <label class=\"search-label\">\n            <span class=\"sr-only\">Search documentation of Topo</span>\n            <input name=\"q\" type=\"text\" class=\"search-input\" placeholder=\"Press / to search\" autocomplete=\"off\" autocorrect=\"off\" autocapitalize=\"off\" spellcheck=\"false\" />\n          </label>\n          <button type=\"submit\" class=\"search-button\" aria-label=\"Submit Search\">\n            <i class=\"ri-search-2-line ri-lg\" aria-hidden=\"true\" title=\"Submit search\"></i>\n          </button>\n          <button type=\"button\" tabindex=\"-1\" class=\"search-close-button\" aria-hidden=\"true\">\n            <i class=\"ri-close-line ri-lg\" title=\"Cancel search\"></i>\n          </button>\n        </form>\n        <div class=\"autocomplete\">\n        </div>\n        <button class=\"icon-settings display-settings\">\n          <i class=\"ri-settings-3-line\"></i>\n          <span class=\"sr-only\">Settings</span>\n        </button>\n      </div>\n    </div>\n\n<div id=\"search\">\n  <h1>\n    <span></span>\n  </h1>\n\n  <div class=\"loading\"><div></div><div></div><div></div><div></div></div>\n</div>\n<script src=\"dist/search_data-6BAA9AEB.js\"></script>\n    <footer class=\"footer\">\n      <p>\n\n          <span class=\"line\">\n            <a href=\"https://hex.pm/packages/topo/1.0.3\" class=\"footer-hex-package\">Hex Package</a>\n\n            <a href=\"https://preview.hex.pm/preview/topo/1.0.3\">Hex Preview</a>\n\n          </span>\n\n        <span class=\"line\">\n          <button class=\"a-main footer-button display-quick-switch\" title=\"Search HexDocs packages\">\n            Search HexDocs\n          </button>\n\n            <a href=\"Topo.epub\" title=\"ePub version\">\n              Download ePub version\n            </a>\n\n        </span>\n      </p>\n\n      <p class=\"built-using\">\n        Built using\n        <a href=\"https://github.com/elixir-lang/ex_doc\" title=\"ExDoc\" target=\"_blank\" rel=\"help noopener\" translate=\"no\">ExDoc</a> (v0.32.2) for the\n\n          <a href=\"https://elixir-lang.org\" title=\"Elixir\" target=\"_blank\" translate=\"no\">Elixir programming language</a>\n\n      </p>\n\n    </footer>\n  </div>\n</main>\n</div>\n\n\n  </body>\n</html>\n"
  },
  {
    "path": "lib/mix/tasks/generate_validation_suite.ex",
    "content": "defmodule Mix.Tasks.Validation.Gen do\n  @moduledoc false\n\n  use Mix.Task\n\n  @shortdoc \"Generates the ExUnit tests to cover the validation suite\"\n\n  @skip ~w{05-033 05-034 05-037 05-038 05-042 06-001 06-002 06-003 06-004}\n\n  @groups %{\n    \"TestRelatePP\" => %{file_name: \"point_point_a\", module_name: \"PointPointA\"},\n    \"TestRelatePL\" => %{file_name: \"point_line_a\", module_name: \"PointLineA\"},\n    \"TestRelatePA\" => %{file_name: \"point_polygon_a\", module_name: \"PointPolygonA\"},\n    \"TestRelateLL\" => %{file_name: \"line_line_a\", module_name: \"LineLineA\"},\n    \"TestRelateLA\" => %{file_name: \"line_polygon_a\", module_name: \"LinePolygonA\"},\n    \"TestRelateLC\" => %{file_name: \"line_complex_a\", module_name: \"LineComplexA\"},\n    \"TestRelateAA\" => %{file_name: \"polygon_polygon_a\", module_name: \"PolygonPolygonA\"},\n    \"TestRelateAC\" => %{file_name: \"polygon_complex_a\", module_name: \"PolygonComplexA\"},\n    \"TestFunctionPP\" => %{file_name: \"point_point_b\", module_name: \"PointPointB\"},\n    \"TestFunctionPL\" => %{file_name: \"point_line_b\", module_name: \"PointLineB\"},\n    \"TestFunctionPA\" => %{file_name: \"point_polygon_b\", module_name: \"PointPolygonB\"},\n    \"TestFunctionLL\" => %{file_name: \"line_line_b\", module_name: \"LineLineB\"},\n    \"TestFunctionLA\" => %{file_name: \"line_polygon_b\", module_name: \"LinePolygonB\"},\n    \"TestFunctionAA\" => %{file_name: \"polygon_polygon_b\", module_name: \"PolygonPolygonB\"},\n    \"TestFunctionPLPrec\" => %{\n      file_name: \"point_line_precision\",\n      module_name: \"PointLinePrecision\"\n    },\n    \"TestFunctionLLPrec\" => %{file_name: \"line_line_precision\", module_name: \"LineLinePrecision\"},\n    \"TestFunctionLAPrec\" => %{\n      file_name: \"line_polygon_precision\",\n      module_name: \"LinePolygonPrecision\"\n    },\n    \"TestFunctionAAPrec\" => %{\n      file_name: \"polygon_polygon_precision\",\n      module_name: \"PolygonPolygonPrecision\"\n    }\n  }\n\n  @spec run(any) :: atom\n  def run(_) do\n    cases = test_cases()\n\n    Enum.each(Map.keys(@groups), fn group ->\n      group_cases = Enum.filter(cases, &(&1[\"group\"] == group))\n\n      write_test_file(\n        group_cases,\n        @groups[group].module_name <> \"Test\",\n        \"test/validation2/#{@groups[group].file_name}_test.exs\"\n      )\n    end)\n\n    :ok\n  end\n\n  defp test_cases() do\n    [\"lib\", \"mix\", \"tasks\", \"validation_cases.json\"]\n    |> Path.join()\n    |> File.read!()\n    |> Poison.decode!()\n    |> Map.get(\"cases\")\n    |> Enum.filter(& &1[\"b\"])\n  end\n\n  defp write_test_file(cases, module_name, filename) do\n    s = ~s\"\"\"\n    defmodule Intersect.Validation.#{module_name} do\n      use ExUnit.Case\n    #{cases |> Enum.map(&generate_test/1)}end\n    \"\"\"\n\n    File.write!(filename, s)\n  end\n\n  defp generate_test(test_case) do\n    title = test_case[\"title\"] |> String.replace(~r{\\[.*\\]}, \"\") |> String.trim()\n\n    tags =\n      if test_case[\"id\"] in @skip do\n        \"@tag :validation\\n  @tag :skip\"\n      else\n        \"@tag :validation\"\n      end\n\n    build_test(test_case, title, tags)\n  end\n\n  defp build_test(test_case, title, tag_str) do\n    ~s\"\"\"\n\n      #{tag_str}\n      test \"#{test_case[\"id\"]} - #{title}\" do\n        a = \"#{test_case[\"a\"][\"wkt\"]}\" |> Geo.WKT.decode!\n        b = \"#{test_case[\"b\"][\"wkt\"]}\" |> Geo.WKT.decode!\n\n        #{build_assertions(test_case)}\n      end\n\n      #{tag_str}\n      test \"#{test_case[\"id\"]} - #{title} (float)\" do\n        a = \"#{test_case[\"a\"][\"wkt\"] |> convert_to_float()}\" |> Geo.WKT.decode!\n        b = \"#{test_case[\"b\"][\"wkt\"] |> convert_to_float()}\" |> Geo.WKT.decode!\n\n        #{build_assertions(test_case)}\n      end\n    \"\"\"\n  end\n\n  defp build_assertions(test_case) do\n    build_symetric_assertion(test_case, \"intersects\") <>\n      build_symetric_assertion(test_case, \"disjoint\") <>\n      build_asymetric_assertion(test_case, \"contains\") <>\n      build_asymetric_assertion(test_case, \"within\") <>\n      build_symetric_assertion(test_case, \"equals\")\n  end\n\n  defp build_asymetric_assertion(test_case, relationship) do\n    ~s\"\"\"\n        assert Topo.#{relationship}?(a, b) == #{test_case[\"relationship\"][relationship]}\n    \"\"\"\n  end\n\n  defp build_symetric_assertion(test_case, relationship) do\n    ~s\"\"\"\n        assert Topo.#{relationship}?(a, b) == #{test_case[\"relationship\"][relationship]}\n        assert Topo.#{relationship}?(b, a) == #{test_case[\"relationship\"][relationship]}\n    \"\"\"\n  end\n\n  defp convert_to_float(wkt) when is_binary(wkt) do\n    geometry = Geo.WKT.decode!(wkt)\n    Geo.WKT.encode!(%{geometry | coordinates: convert_to_float(geometry.coordinates)})\n  end\n\n  defp convert_to_float([value]), do: [convert_to_float(value)]\n  defp convert_to_float([value | rest]), do: [convert_to_float(value)] ++ convert_to_float(rest)\n  defp convert_to_float({a, b}), do: {a * 1.0, b * 1.0}\nend\n"
  },
  {
    "path": "lib/mix/tasks/validation_cases.json",
    "content": "{\n  \"cases\": [\n    {\n      \"group\": \"TestRelatePP\",\n      \"category\": \"relate\",\n      \"title\": \"P/P: same point [dim(0){A.P.Int = B.P.Int}]\",\n      \"id\": \"01-001\",\n      \"a\": {\n        \"wkt\": \"POINT (20 20)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            20,\n            20\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POINT (20 20)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            20,\n            20\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": true,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFFFF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePP\",\n      \"category\": \"relate\",\n      \"title\": \"P/P: different point [dim(0){A.P.Int = B.P.Ext}]\",\n      \"id\": \"01-002\",\n      \"a\": {\n        \"wkt\": \"POINT (20 20)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            20,\n            20\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POINT (40 60)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            40,\n            60\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": true,\n        \"intersects\": false,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF0FFF0F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePP\",\n      \"category\": \"relate\",\n      \"title\": \"P/mP: different points [dim(0){A.P.Int = B.3P.Ext}]\",\n      \"id\": \"01-003\",\n      \"a\": {\n        \"wkt\": \"POINT (40 40)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            40,\n            40\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTIPOINT (20 20, 80 80, 20 120)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              20,\n              20\n            ],\n            [\n              80,\n              80\n            ],\n            [\n              20,\n              120\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": true,\n        \"intersects\": false,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF0FFF0F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePP\",\n      \"category\": \"relate\",\n      \"title\": \"P/mP: point A within one of B points [dim(0){A.P.Int = B.3P1.Int}]\",\n      \"id\": \"01-004\",\n      \"a\": {\n        \"wkt\": \"POINT (20 20)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            20,\n            20\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTIPOINT (20 20, 80 80, 20 120)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              20,\n              20\n            ],\n            [\n              80,\n              80\n            ],\n            [\n              20,\n              120\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF0F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePP\",\n      \"category\": \"relate\",\n      \"title\": \"mP/mP-1-1: same points [dim(0){A.3P1.Int = B.3P1.Int}, dim(0){A.3P2.Int = B.3P2.Int}, dim(0){A.3P3.Int = B.3P3.Int}]\",\n      \"id\": \"01-005\",\n      \"a\": {\n        \"wkt\": \"MULTIPOINT (40 40, 80 60, 120 100)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              40,\n              40\n            ],\n            [\n              80,\n              60\n            ],\n            [\n              120,\n              100\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTIPOINT (40 40, 80 60, 120 100)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              40,\n              40\n            ],\n            [\n              80,\n              60\n            ],\n            [\n              120,\n              100\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": true,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFFFF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePP\",\n      \"category\": \"relate\",\n      \"title\": \"mP/mP-1-2: same but different sequence of points [dim(0){A.3P1.Int = B.3P1.Int}, dim(0){A.3P1.Int = B.3P3.Int}, dim(0){A.3P3.Int = B.3P2.Int}]\",\n      \"id\": \"01-006\",\n      \"a\": {\n        \"wkt\": \"MULTIPOINT (40 40, 80 60, 120 100)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              40,\n              40\n            ],\n            [\n              80,\n              60\n            ],\n            [\n              120,\n              100\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTIPOINT (40 40, 120 100, 80 60)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              40,\n              40\n            ],\n            [\n              120,\n              100\n            ],\n            [\n              80,\n              60\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": true,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFFFF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePP\",\n      \"category\": \"relate\",\n      \"title\": \"mP/mP-2: different points [dim(0){A.4P.Int = B.4P.Ext}]\",\n      \"id\": \"01-007\",\n      \"a\": {\n        \"wkt\": \"MULTIPOINT (40 40, 60 100, 100 60, 120 120)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              40,\n              40\n            ],\n            [\n              60,\n              100\n            ],\n            [\n              100,\n              60\n            ],\n            [\n              120,\n              120\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTIPOINT (20 120, 60 60, 100 100, 140 40)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              20,\n              120\n            ],\n            [\n              60,\n              60\n            ],\n            [\n              100,\n              100\n            ],\n            [\n              140,\n              40\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": true,\n        \"intersects\": false,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF0FFF0F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePP\",\n      \"category\": \"relate\",\n      \"title\": \"mP/mP-5-1: same points [dim(0){A.4P.Int = B.4P.Int}]\",\n      \"id\": \"01-008\",\n      \"a\": {\n        \"wkt\": \"MULTIPOINT (20 20, 80 70, 140 120, 200 170)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              20,\n              20\n            ],\n            [\n              80,\n              70\n            ],\n            [\n              140,\n              120\n            ],\n            [\n              200,\n              170\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTIPOINT (20 20, 80 70, 140 120, 200 170)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              20,\n              20\n            ],\n            [\n              80,\n              70\n            ],\n            [\n              140,\n              120\n            ],\n            [\n              200,\n              170\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": true,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFFFF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePP\",\n      \"category\": \"relate\",\n      \"title\": \"mP/mP-5-2: same points but different sequence [dim(0){A.4P.Int = B.4P.Int}]\",\n      \"id\": \"01-009\",\n      \"a\": {\n        \"wkt\": \"MULTIPOINT (20 20, 140 120, 80 70, 200 170)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              20,\n              20\n            ],\n            [\n              140,\n              120\n            ],\n            [\n              80,\n              70\n            ],\n            [\n              200,\n              170\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTIPOINT (80 70, 20 20, 200 170, 140 120)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              80,\n              70\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              200,\n              170\n            ],\n            [\n              140,\n              120\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": true,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFFFF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePP\",\n      \"category\": \"relate\",\n      \"title\": \"mP/mP-5-3: some points same [dim(0){A.4P2.Int = B.2P1.Int}, dim(0){A.4P3.Int = B.2P2.Int}]\",\n      \"id\": \"01-010\",\n      \"a\": {\n        \"wkt\": \"MULTIPOINT (20 20, 80 70, 140 120, 200 170)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              20,\n              20\n            ],\n            [\n              80,\n              70\n            ],\n            [\n              140,\n              120\n            ],\n            [\n              200,\n              170\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTIPOINT (80 70, 140 120)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              80,\n              70\n            ],\n            [\n              140,\n              120\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"0F0FFFFF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePP\",\n      \"category\": \"relate\",\n      \"title\": \"mP/mP-5-4: some points same, in a different sequence [dim(0){A.4P1.Int = B.2P2.Int}, dim(0){A.4P4.Int = B.2P1.Int}]\",\n      \"id\": \"01-011\",\n      \"a\": {\n        \"wkt\": \"MULTIPOINT (80 70, 20 20, 200 170, 140 120)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              80,\n              70\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              200,\n              170\n            ],\n            [\n              140,\n              120\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTIPOINT (140 120, 80 70)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              140,\n              120\n            ],\n            [\n              80,\n              70\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"0F0FFFFF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePP\",\n      \"category\": \"relate\",\n      \"title\": \"mP/mP-6-1: some points same, some different [dim(0){A.4P4.Int = B.3P2.Int}]\",\n      \"id\": \"01-012\",\n      \"a\": {\n        \"wkt\": \"MULTIPOINT (80 70, 20 20, 200 170, 140 120)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              80,\n              70\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              200,\n              170\n            ],\n            [\n              140,\n              120\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTIPOINT (80 170, 140 120, 200 80)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              80,\n              170\n            ],\n            [\n              140,\n              120\n            ],\n            [\n              200,\n              80\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"0F0FFF0F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePP\",\n      \"category\": \"relate\",\n      \"title\": \"mP/mP-6-2: dim(0){A.4P1.Int = B.4P4.Int}, dim(0){A.4P4.Int = B.4P2.Int}\",\n      \"id\": \"01-013\",\n      \"a\": {\n        \"wkt\": \"MULTIPOINT (80 70, 20 20, 200 170, 140 120)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              80,\n              70\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              200,\n              170\n            ],\n            [\n              140,\n              120\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTIPOINT (80 170, 140 120, 200 80, 80 70)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              80,\n              170\n            ],\n            [\n              140,\n              120\n            ],\n            [\n              200,\n              80\n            ],\n            [\n              80,\n              70\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"0F0FFF0F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/L-2: a point and a line disjoint [dim(0){A.P.Int = B.L.Ext}]\",\n      \"id\": \"02-001\",\n      \"a\": {\n        \"wkt\": \"POINT (110 200)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            200\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (90 80, 160 150, 300 150, 340 150, 340 240)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              90,\n              80\n            ],\n            [\n              160,\n              150\n            ],\n            [\n              300,\n              150\n            ],\n            [\n              340,\n              150\n            ],\n            [\n              340,\n              240\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": true,\n        \"intersects\": false,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF0FFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/L-3-1: a point touching the start point of a line [dim(0){A.P.Int = B.L.Bdy.SP}]\",\n      \"id\": \"02-002\",\n      \"a\": {\n        \"wkt\": \"POINT (90 80)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            90,\n            80\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (90 80, 160 150, 300 150, 340 150, 340 240)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              90,\n              80\n            ],\n            [\n              160,\n              150\n            ],\n            [\n              300,\n              150\n            ],\n            [\n              340,\n              150\n            ],\n            [\n              340,\n              240\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F0FFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/L-3-2: a point touching the end point of a line [dim(0){A.P.Int = B.L.Bdy.EP}]\",\n      \"id\": \"02-003\",\n      \"a\": {\n        \"wkt\": \"POINT (340 240)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            340,\n            240\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (90 80, 160 150, 300 150, 340 150, 340 240)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              90,\n              80\n            ],\n            [\n              160,\n              150\n            ],\n            [\n              300,\n              150\n            ],\n            [\n              340,\n              150\n            ],\n            [\n              340,\n              240\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F0FFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/L-5-1: a point on the line at a non-vertex [dim(0){A.P.Int = B.L.Int.NV}]\",\n      \"id\": \"02-004\",\n      \"a\": {\n        \"wkt\": \"POINT (230 150)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            230,\n            150\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (90 80, 160 150, 300 150, 340 150, 340 240)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              90,\n              80\n            ],\n            [\n              160,\n              150\n            ],\n            [\n              300,\n              150\n            ],\n            [\n              340,\n              150\n            ],\n            [\n              340,\n              240\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/L-5-2: a point on the line at a vertex [dim(0){A.P.Int = B.L.Int.V}]\",\n      \"id\": \"02-005\",\n      \"a\": {\n        \"wkt\": \"POINT (160 150)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            160,\n            150\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (90 80, 160 150, 300 150, 340 150, 340 240)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              90,\n              80\n            ],\n            [\n              160,\n              150\n            ],\n            [\n              300,\n              150\n            ],\n            [\n              340,\n              150\n            ],\n            [\n              340,\n              240\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/LR-2-1: a point outside a LinearRing [dim(0){A.P.Int = B.LR.Ext}]\",\n      \"id\": \"02-006\",\n      \"a\": {\n        \"wkt\": \"POINT (90 150)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            90,\n            150\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (150 150, 20 20, 280 20, 150 150)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              150,\n              150\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              280,\n              20\n            ],\n            [\n              150,\n              150\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": true,\n        \"intersects\": false,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF0FFF1F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/LR-2-2: a point inside a LinearRing [dim(0){A.P.Int = B.LR.Ext}]\",\n      \"id\": \"02-007\",\n      \"a\": {\n        \"wkt\": \"POINT (150 80)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            150,\n            80\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (150 150, 20 20, 280 20, 150 150)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              150,\n              150\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              280,\n              20\n            ],\n            [\n              150,\n              150\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": true,\n        \"intersects\": false,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF0FFF1F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/LR-5-1: a point on the closing point of a LinearRing [dim(0){A.P.Int = B.LR.Int.CP}]\",\n      \"id\": \"02-008\",\n      \"a\": {\n        \"wkt\": \"POINT (150 150)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            150,\n            150\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (150 150, 20 20, 280 20, 150 150)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              150,\n              150\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              280,\n              20\n            ],\n            [\n              150,\n              150\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF1F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/LR-5-2: a point on a LinearRing at a non-vertex [dim(0){A.P.Int = B.L.Int.NV}]\",\n      \"id\": \"02-009\",\n      \"a\": {\n        \"wkt\": \"POINT (100 20)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            100,\n            20\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (150 150, 20 20, 280 20, 150 150)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              150,\n              150\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              280,\n              20\n            ],\n            [\n              150,\n              150\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF1F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/LR-5-3: a point on a LinearRing at a vertex [dim(0){A.P.Int = B.L.Int.V}]\",\n      \"id\": \"02-010\",\n      \"a\": {\n        \"wkt\": \"POINT (20 20)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            20,\n            20\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (150 150, 20 20, 280 20, 150 150)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              150,\n              150\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              280,\n              20\n            ],\n            [\n              150,\n              150\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF1F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.1-3-1: a point on a non-simple LineString's end point [dim(0){A.P.Int = B.nsL.Bdy.EP}]\",\n      \"id\": \"02-011\",\n      \"a\": {\n        \"wkt\": \"POINT (220 220)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            220,\n            220\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (110 110, 220 20, 20 20, 110 110, 220 220)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              110\n            ],\n            [\n              220,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              220,\n              220\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F0FFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.1-5-1: a point on a non-simple LineString's start point with crossing line segments [dim(0){A.P.Int = B.nsL.Bdy.SPx}]\",\n      \"id\": \"02-012\",\n      \"a\": {\n        \"wkt\": \"POINT (110 110)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            110\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (110 110, 220 20, 20 20, 110 110, 220 220)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              110\n            ],\n            [\n              220,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              220,\n              220\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F0FFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.1-5-2: a point a non-simple LineString's start point with crossing line segments [dim(0){A.P.Int = B.nsL.Bdy.SPx}]\",\n      \"id\": \"02-013\",\n      \"a\": {\n        \"wkt\": \"POINT (110 110)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            110\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (110 110, 220 20, 20 20, 220 220)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              110\n            ],\n            [\n              220,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              220,\n              220\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F0FFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.1-5-3: a point on a non-simple LineString's interior at a non-vertex [dim(0){A.P.Int = B.nsL.Int.NV}]\",\n      \"id\": \"02-014\",\n      \"a\": {\n        \"wkt\": \"POINT (110 20)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            20\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (110 110, 220 20, 20 20, 220 220)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              110\n            ],\n            [\n              220,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              220,\n              220\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.1-5-4: a point on a non-simple LineString's interior at a vertex [dim(0){A.P.Int = B.nsL.Int.V}]\",\n      \"id\": \"02-015\",\n      \"a\": {\n        \"wkt\": \"POINT (220 20)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            220,\n            20\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (110 110, 220 20, 20 20, 220 220)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              110\n            ],\n            [\n              220,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              220,\n              220\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.2-5-2: a point on a non-simple LineString's interior at a vertex [dim(0){A.P.Int = B.nsL.Int.NV}]\",\n      \"id\": \"02-016\",\n      \"a\": {\n        \"wkt\": \"POINT (110 20)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            20\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (220 220, 20 20, 220 20, 110 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              220,\n              220\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              220,\n              20\n            ],\n            [\n              110,\n              110\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.2-5-3: a point on a non-simple LineString's interior at a vertex [dim(0){A.P.Int = B.nsL.Int.V}]\",\n      \"id\": \"02-017\",\n      \"a\": {\n        \"wkt\": \"POINT (20 20)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            20,\n            20\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (220 220, 20 20, 220 20, 110 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              220,\n              220\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              220,\n              20\n            ],\n            [\n              110,\n              110\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.2-5-4: a point on a non-simple LineString's interior at a vertex with crossing line segments [dim(0){A.P.Int = B.nsL.Int.Vx}]\",\n      \"id\": \"02-018\",\n      \"a\": {\n        \"wkt\": \"POINT (20 110)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            20,\n            110\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (20 200, 20 20, 110 20, 20 110, 110 200)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              200\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              110,\n              20\n            ],\n            [\n              20,\n              110\n            ],\n            [\n              110,\n              200\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.3-3-1: a point on a non-simple LineString's start point [dim(0){A.P.Int = B.nsL.Bdy.SP}]\",\n      \"id\": \"02-019\",\n      \"a\": {\n        \"wkt\": \"POINT (20 200)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            20,\n            200\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (20 200, 200 20, 20 20, 200 200)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              200\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              200,\n              200\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F0FFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.3-5-1: a point on a non-simple LineString's interior at a non-vertex with overlapping line segments [dim(0){A.P.Int = B.nsL.Int.NVo}]\",\n      \"id\": \"02-020\",\n      \"a\": {\n        \"wkt\": \"POINT (110 110)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            110\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (20 200, 200 20, 140 20, 140 80, 80 140, 20 140)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              200\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              140,\n              20\n            ],\n            [\n              140,\n              80\n            ],\n            [\n              80,\n              140\n            ],\n            [\n              20,\n              140\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.3-5-2: a point on a non-simple LineString's interior at a non-vertex with crossing line segments [dim(0){A.P.Int = B.nsL.Int.NVx}]\",\n      \"id\": \"02-021\",\n      \"a\": {\n        \"wkt\": \"POINT (110 110)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            110\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (20 200, 200 20, 20 20, 200 200)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              200\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              200,\n              200\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.3-5-3: a point on a non-simple LineString's interior at a vertex with both crossing and overlapping line segments [dim(0){A.P.Int = B.nsL.Int.Vb}]\",\n      \"id\": \"02-022\",\n      \"a\": {\n        \"wkt\": \"POINT (80 140)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            80,\n            140\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (20 200, 110 110, 200 20, 140 20, 140 80, 110 110, 80 140, 20 140)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              200\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              140,\n              20\n            ],\n            [\n              140,\n              80\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              80,\n              140\n            ],\n            [\n              20,\n              140\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.3-5-4: a point on a non-simple LineString's interior at a two-vertex point with overlapping line segments [dim(0){A.P.Int = B.nsL.Int.Vo}]\",\n      \"id\": \"02-023\",\n      \"a\": {\n        \"wkt\": \"POINT (110 110)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            110\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (20 200, 110 110, 200 20, 140 20, 140 80, 110 110, 80 140, 20 140)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              200\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              140,\n              20\n            ],\n            [\n              140,\n              80\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              80,\n              140\n            ],\n            [\n              20,\n              140\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.3-5-5: a point on a non-simple LineString's interior at a vertex with overlapping line segments [dim(0){A.P.Int = B.nsL.Int.Vo}]\",\n      \"id\": \"02-024\",\n      \"a\": {\n        \"wkt\": \"POINT (110 110)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            110\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (20 200, 200 20, 140 20, 140 80, 110 110, 80 140, 20 140)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              200\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              140,\n              20\n            ],\n            [\n              140,\n              80\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              80,\n              140\n            ],\n            [\n              20,\n              140\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.3-5-6: a point on a non-simple LineString's interior at a two-vertex point with crossing line segments [dim(0){A.P.Int = B.nsL.Int.Vx}]\",\n      \"id\": \"02-025\",\n      \"a\": {\n        \"wkt\": \"POINT (110 110)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            110\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (20 200, 110 110, 200 20, 20 20, 110 110, 200 200)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              200\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              200,\n              200\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.3-5-7: a point on a non-simple LineString's interior at a vertex with crossing line segments [dim(0){A.P.Int = B.nsL.Int.Vx}]\",\n      \"id\": \"02-026\",\n      \"a\": {\n        \"wkt\": \"POINT (110 110)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            110\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (20 200, 200 20, 20 20, 110 110, 200 200)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              200\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              200,\n              200\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.3-5-8: a point on a non-simple LineString's interior at a two-vertex point with crossing line segments [dim(0){A.P.Int = B.nsL.Int.Vx}]\",\n      \"id\": \"02-027\",\n      \"a\": {\n        \"wkt\": \"POINT (110 110)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            110\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (20 200, 110 110, 20 20, 200 20, 110 110, 200 200)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              200\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              200,\n              200\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.4-3-1: a point on a non-simple LineString's start point with crossing and overlapping line segments [dim(0){A.P.Int = B.nsL.Bdy.SPb}]\",\n      \"id\": \"02-028\",\n      \"a\": {\n        \"wkt\": \"POINT (110 110)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            110\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (110 110, 110 200, 20 200, 110 110, 200 20, 140 20, 140 80, 110 110, 80 140, 20 140)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              110\n            ],\n            [\n              110,\n              200\n            ],\n            [\n              20,\n              200\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              140,\n              20\n            ],\n            [\n              140,\n              80\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              80,\n              140\n            ],\n            [\n              20,\n              140\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F0FFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.4-3-2: a point on a non-simple LineString's start point with crossing and overlapping line segments [dim(0){A.P.Int = B.nsL.Bdy.SPb}]\",\n      \"id\": \"02-029\",\n      \"a\": {\n        \"wkt\": \"POINT (110 110)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            110\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (110 110, 110 200, 20 200, 200 20, 140 20, 140 80, 110 110, 80 140, 20 140)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              110\n            ],\n            [\n              110,\n              200\n            ],\n            [\n              20,\n              200\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              140,\n              20\n            ],\n            [\n              140,\n              80\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              80,\n              140\n            ],\n            [\n              20,\n              140\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F0FFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.4-3-3:a point on a non-simple LineString's start point with crossing and overlapping line segments [dim(0){A.P.Int = B.nsL.Bdy.SPb}]\",\n      \"id\": \"02-030\",\n      \"a\": {\n        \"wkt\": \"POINT (110 110)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            110\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (110 110, 110 200, 20 200, 200 20, 140 20, 140 80, 80 140, 20 140)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              110\n            ],\n            [\n              110,\n              200\n            ],\n            [\n              20,\n              200\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              140,\n              20\n            ],\n            [\n              140,\n              80\n            ],\n            [\n              80,\n              140\n            ],\n            [\n              20,\n              140\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F0FFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.4-3-4: a point on a non-simple LineString's start point with crossing line segments [dim(0){A.P.Int = B.nsL.Bdy.SPx}]\",\n      \"id\": \"02-031\",\n      \"a\": {\n        \"wkt\": \"POINT (110 110)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            110\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (110 110, 110 200, 20 200, 110 110, 200 20, 20 20, 110 110, 200 200)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              110\n            ],\n            [\n              110,\n              200\n            ],\n            [\n              20,\n              200\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              200,\n              200\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F0FFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.4-3-5: a point on a non-simple LineString's start point with crossing line segments [dim(0){A.P.Int = B.nsL.Bdy.SPx}]\",\n      \"id\": \"02-032\",\n      \"a\": {\n        \"wkt\": \"POINT (110 110)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            110\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (110 110, 110 200, 20 200, 200 20, 20 20, 110 110, 200 200)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              110\n            ],\n            [\n              110,\n              200\n            ],\n            [\n              20,\n              200\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              200,\n              200\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F0FFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.4-3-6: a point on a non-simple LineString's start point with crossing line segments [dim(0){A.P.Int = B.nsL.Bdy.SPx}]\",\n      \"id\": \"02-033\",\n      \"a\": {\n        \"wkt\": \"POINT (110 110)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            110\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (110 110, 110 200, 20 200, 200 20, 20 20, 200 200)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              110\n            ],\n            [\n              110,\n              200\n            ],\n            [\n              20,\n              200\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              200,\n              200\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F0FFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.4-3-7: a point on a non-simple LineString's start point with crossing line segments [dim(0){A.P.Int = B.nsL.Bdy.SPx}]\",\n      \"id\": \"02-034\",\n      \"a\": {\n        \"wkt\": \"POINT (110 110)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            110\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (110 110, 110 200, 20 200, 110 110, 20 20, 200 20, 110 110, 200 200)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              110\n            ],\n            [\n              110,\n              200\n            ],\n            [\n              20,\n              200\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              200,\n              200\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F0FFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.4-3-8: a point on a non-simple LineString's start point with crossing line segments [dim(0){A.P.Int = B.nsL.Bdy.SPx}]\",\n      \"id\": \"02-035\",\n      \"a\": {\n        \"wkt\": \"POINT (110 110)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            110\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (110 110, 110 200, 20 200, 200 20, 200 110, 110 110, 200 200)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              110\n            ],\n            [\n              110,\n              200\n            ],\n            [\n              20,\n              200\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              200,\n              110\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              200,\n              200\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F0FFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.5-3-1: a point on a non-simple LineString's end point with crossing line segments [dim(0){A.P.Int = B.nsL.Bdy.EPx}]\",\n      \"id\": \"02-036\",\n      \"a\": {\n        \"wkt\": \"POINT (110 110)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            110\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (200 200, 110 110, 20 20, 200 20, 110 110, 20 200, 110 200, 110 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              200,\n              200\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              20,\n              200\n            ],\n            [\n              110,\n              200\n            ],\n            [\n              110,\n              110\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F0FFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.5-3-2: a point on a non-simple LineString's end point with crossing line segments [dim(0){A.P.Int = B.nsL.Bdy.EPx}]\",\n      \"id\": \"02-037\",\n      \"a\": {\n        \"wkt\": \"POINT (110 110)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            110\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (200 200, 20 20, 200 20, 110 110, 20 200, 110 200, 110 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              200,\n              200\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              20,\n              200\n            ],\n            [\n              110,\n              200\n            ],\n            [\n              110,\n              110\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F0FFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.5-3-3: a point on a non-simple LineString's end point with crossing line segments [dim(0){A.P.Int = B.nsL.Bdy.EPx}]\",\n      \"id\": \"02-038\",\n      \"a\": {\n        \"wkt\": \"POINT (110 110)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            110\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (200 200, 20 20, 200 20, 20 200, 110 200, 110 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              200,\n              200\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              20,\n              200\n            ],\n            [\n              110,\n              200\n            ],\n            [\n              110,\n              110\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F0FFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.5-3-4: a point on a non-simple LineString's end point with crossing line segments [dim(0){A.P.Int = B.nsL.Bdy.EPx}]\",\n      \"id\": \"02-039\",\n      \"a\": {\n        \"wkt\": \"POINT (110 110)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            110\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (200 200, 110 110, 200 20, 20 20, 110 110, 20 200, 110 200, 110 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              200,\n              200\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              20,\n              200\n            ],\n            [\n              110,\n              200\n            ],\n            [\n              110,\n              110\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F0FFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.5-3-5: a point on a non-simple LineString's end point with crossing line segments [dim(0){A.P.Int = B.nsL.Bdy.EPx}]\",\n      \"id\": \"02-040\",\n      \"a\": {\n        \"wkt\": \"POINT (110 110)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            110\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (200 200, 20 20, 20 110, 110 110, 20 200, 110 200, 110 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              200,\n              200\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              20,\n              110\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              20,\n              200\n            ],\n            [\n              110,\n              200\n            ],\n            [\n              110,\n              110\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F0FFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.6-3-1: a point on a non-simple LineString's start point with crossing line segments [dim(0){A.P.Int = B.nsL.Bdy.SPx}]\",\n      \"id\": \"02-041\",\n      \"a\": {\n        \"wkt\": \"POINT (110 160)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            160\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (110 160, 200 250, 110 250, 110 160, 110 110, 110 20, 20 20, 110 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              160\n            ],\n            [\n              200,\n              250\n            ],\n            [\n              110,\n              250\n            ],\n            [\n              110,\n              160\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              110,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              110,\n              110\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F0FFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.6-3-2: a point on a non-simple LineString's start point with crossing line segments [dim(0){A.P.Int = B.nsL.Bdy.SPx}]\",\n      \"id\": \"02-042\",\n      \"a\": {\n        \"wkt\": \"POINT (110 160)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            160\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (110 160, 200 250, 110 250, 110 110, 110 20, 20 20, 110 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              160\n            ],\n            [\n              200,\n              250\n            ],\n            [\n              110,\n              250\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              110,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              110,\n              110\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F0FFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.6-3-3: a point on a non-simple LineString's end point with crossing line segments [dim(0){A.P.Int = B.nsL.Bdy.EPx}]\",\n      \"id\": \"02-043\",\n      \"a\": {\n        \"wkt\": \"POINT (110 110)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            110\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (110 160, 200 250, 110 250, 110 160, 110 110, 110 20, 20 20, 110 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              160\n            ],\n            [\n              200,\n              250\n            ],\n            [\n              110,\n              250\n            ],\n            [\n              110,\n              160\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              110,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              110,\n              110\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F0FFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.6-3-4: a point on a non-simple LineString's end point with crossing line segments [dim(0){A.P.Int = B.nsL.Bdy.EPx}]\",\n      \"id\": \"02-044\",\n      \"a\": {\n        \"wkt\": \"POINT (110 110)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            110\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (110 160, 200 250, 110 250, 110 160, 110 20, 20 20, 110 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              160\n            ],\n            [\n              200,\n              250\n            ],\n            [\n              110,\n              250\n            ],\n            [\n              110,\n              160\n            ],\n            [\n              110,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              110,\n              110\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F0FFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.7-5-1: a point on a closed non-simple LineString's closing point with crossing line segments [dim(0){A.P.Int = B.nsL.Int.CPx}]\",\n      \"id\": \"02-045\",\n      \"a\": {\n        \"wkt\": \"POINT (110 110)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            110\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (110 110, 200 200, 110 200, 110 110, 110 20, 20 20, 110 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              110\n            ],\n            [\n              200,\n              200\n            ],\n            [\n              110,\n              200\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              110,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              110,\n              110\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF1F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.7-5-2: a point on a closed non-simple LineString's closing point with crossing line segments [dim(0){A.P.Int = B.nsL.Int.CPx}]\",\n      \"id\": \"02-046\",\n      \"a\": {\n        \"wkt\": \"POINT (110 110)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            110\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (110 110, 200 200, 110 200, 110 20, 20 20, 110 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              110\n            ],\n            [\n              200,\n              200\n            ],\n            [\n              110,\n              200\n            ],\n            [\n              110,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              110,\n              110\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF1F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.7-5-3: a point on a closed non-simple LineString's interior at a non-vertex [dim(0){A.P.Int = B.nsL.Int.NV}]\",\n      \"id\": \"02-047\",\n      \"a\": {\n        \"wkt\": \"POINT (140 200)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            140,\n            200\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (110 110, 200 200, 110 200, 110 110, 110 20, 20 20, 110 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              110\n            ],\n            [\n              200,\n              200\n            ],\n            [\n              110,\n              200\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              110,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              110,\n              110\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF1F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.7-5-4: a point on a closed non-simple LineString's interior at a vertex [dim(0){A.P.Int = B.nsL.Int.V}]\",\n      \"id\": \"02-048\",\n      \"a\": {\n        \"wkt\": \"POINT (110 200)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            200\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (110 110, 200 200, 110 200, 110 110, 110 20, 20 20, 110 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              110\n            ],\n            [\n              200,\n              200\n            ],\n            [\n              110,\n              200\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              110,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              110,\n              110\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF1F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.8-5-1: a point on a closed non-simple LineString's closing point with crossing line segments [dim(0){A.P.Int = B.nsL.Int.CPx}]\",\n      \"id\": \"02-049\",\n      \"a\": {\n        \"wkt\": \"POINT (110 110)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            110\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (110 110, 200 200, 110 200, 110 110, 110 20, 200 20, 110 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              110\n            ],\n            [\n              200,\n              200\n            ],\n            [\n              110,\n              200\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              110,\n              20\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              110,\n              110\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF1F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.8-5-2: a point on the interior (at a non-vertex) of a closed non-simple LineString [dim(0){A.P.Int = B.nsL.Int.NV}]\",\n      \"id\": \"02-050\",\n      \"a\": {\n        \"wkt\": \"POINT (140 200)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            140,\n            200\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (110 110, 200 200, 110 200, 110 110, 110 20, 200 20, 110 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              110\n            ],\n            [\n              200,\n              200\n            ],\n            [\n              110,\n              200\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              110,\n              20\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              110,\n              110\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF1F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.8-5-3: a point on a closed non-simple LineString's interior at a vertex [dim(0){A.P.Int = B.nsL.Int.V}]\",\n      \"id\": \"02-051\",\n      \"a\": {\n        \"wkt\": \"POINT (110 200)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            200\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (110 110, 200 200, 110 200, 110 110, 110 20, 200 20, 110 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              110\n            ],\n            [\n              200,\n              200\n            ],\n            [\n              110,\n              200\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              110,\n              20\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              110,\n              110\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF1F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.9-3-1: a point on a non-simple LineString's start point with crossing line segments [dim(0){A.P.Int = B.nsL.Bdy.SPx}]\",\n      \"id\": \"02-052\",\n      \"a\": {\n        \"wkt\": \"POINT (90 130)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            90,\n            130\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (90 130, 20 130, 20 200, 90 130, 200 20, 20 20, 200 200)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              90,\n              130\n            ],\n            [\n              20,\n              130\n            ],\n            [\n              20,\n              200\n            ],\n            [\n              90,\n              130\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              200,\n              200\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F0FFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.9-5-1: a point on a non-simple LineString's interior at a non-vertex with crossing line segments [dim(0){A.P.Int = B.nsL.Int.NVx}]\",\n      \"id\": \"02-053\",\n      \"a\": {\n        \"wkt\": \"POINT (110 110)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            110\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (90 130, 20 130, 20 200, 90 130, 200 20, 20 20, 200 200)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              90,\n              130\n            ],\n            [\n              20,\n              130\n            ],\n            [\n              20,\n              200\n            ],\n            [\n              90,\n              130\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              200,\n              200\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.10-3-1: a point on a non-simple LineString's start point with crossing line segments [dim(0){A.P.Int = B.nsL.Bdy.SPx}]\",\n      \"id\": \"02-054\",\n      \"a\": {\n        \"wkt\": \"POINT (90 130)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            90,\n            130\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (90 130, 20 130, 20 200, 200 20, 20 20, 200 200)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              90,\n              130\n            ],\n            [\n              20,\n              130\n            ],\n            [\n              20,\n              200\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              200,\n              200\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F0FFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.10-5-1: a point on a non-simple LineString's interior at a non-vertex with crossing line segments [dim(0){A.P.Int = B.nsL.Int.NVx}]\",\n      \"id\": \"02-055\",\n      \"a\": {\n        \"wkt\": \"POINT (110 110)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            110\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (90 130, 20 130, 20 200, 200 20, 20 20, 200 200)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              90,\n              130\n            ],\n            [\n              20,\n              130\n            ],\n            [\n              20,\n              200\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              200,\n              200\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.11-3-1: a point on a closed non-simple LineString's end point with crossing line segments [dim(0){A.P.Int = B.nsL.Bdy.EPx}]\",\n      \"id\": \"02-056\",\n      \"a\": {\n        \"wkt\": \"POINT (90 130)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            90,\n            130\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (200 200, 20 20, 200 20, 90 130, 20 200, 20 130, 90 130)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              200,\n              200\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              90,\n              130\n            ],\n            [\n              20,\n              200\n            ],\n            [\n              20,\n              130\n            ],\n            [\n              90,\n              130\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F0FFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.11-5-1: a point on a closed non-simple LineString's interior at a non-vertex with crossing line segments [dim(0){A.P.Int = B.nsL.Int.NVx}]\",\n      \"id\": \"02-057\",\n      \"a\": {\n        \"wkt\": \"POINT (110 110)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            110\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (200 200, 20 20, 200 20, 90 130, 20 200, 20 130, 90 130)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              200,\n              200\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              90,\n              130\n            ],\n            [\n              20,\n              200\n            ],\n            [\n              20,\n              130\n            ],\n            [\n              90,\n              130\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.12-3-1: a point on a closed non-simple LineString's end point with crossing line segments [dim(0){A.P.Int = B.nsL.Bdy.SPx}]\",\n      \"id\": \"02-058\",\n      \"a\": {\n        \"wkt\": \"POINT (90 130)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            90,\n            130\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (200 200, 20 20, 200 20, 20 200, 20 130, 90 130)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              200,\n              200\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              20,\n              200\n            ],\n            [\n              20,\n              130\n            ],\n            [\n              90,\n              130\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F0FFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.12-5-1: a point on a closed non-simple LineString's interior at a non-vertex with crossing line segments [dim(0){A.P.Int = B.nsL.Int.NVx}]\",\n      \"id\": \"02-059\",\n      \"a\": {\n        \"wkt\": \"POINT (110 110)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            110\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (200 200, 20 20, 200 20, 20 200, 20 130, 90 130)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              200,\n              200\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              20,\n              200\n            ],\n            [\n              20,\n              130\n            ],\n            [\n              90,\n              130\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.13-5-1: a point on a closed non-simple LineString's closing point with crossing line segments [dim(0){A.P.Int = B.nsL.Int.CPx}]\",\n      \"id\": \"02-060\",\n      \"a\": {\n        \"wkt\": \"POINT (110 110)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            110\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (110 110, 20 130, 20 200, 110 110, 200 20, 20 20, 110 110, 200 200, 200 130, 110 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              110\n            ],\n            [\n              20,\n              130\n            ],\n            [\n              20,\n              200\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              200,\n              200\n            ],\n            [\n              200,\n              130\n            ],\n            [\n              110,\n              110\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF1F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.13-5-2: a point on a closed non-simple LineString's closing point with crossing line segments [dim(0){A.P.Int = B.nsL.Int.CPx}]\",\n      \"id\": \"02-061\",\n      \"a\": {\n        \"wkt\": \"POINT (110 110)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            110\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (110 110, 20 130, 20 200, 200 20, 20 20, 200 200, 200 130, 110 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              110\n            ],\n            [\n              20,\n              130\n            ],\n            [\n              20,\n              200\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              200,\n              200\n            ],\n            [\n              200,\n              130\n            ],\n            [\n              110,\n              110\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF1F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.14-5-1: a point on a closed non-simple LineString's closing point with crossing line segments [dim(0){A.P.Int = B.nsL.Int.CPx}]\",\n      \"id\": \"02-062\",\n      \"a\": {\n        \"wkt\": \"POINT (110 110)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            110\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (110 110, 80 200, 20 200, 110 110, 200 20, 20 20, 110 110, 200 200, 140 200, 110 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              110\n            ],\n            [\n              80,\n              200\n            ],\n            [\n              20,\n              200\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              200,\n              200\n            ],\n            [\n              140,\n              200\n            ],\n            [\n              110,\n              110\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF1F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.14-5-2: a point on a closed non-simple LineString's closing point with crossing line segments [dim(0){A.P.Int = B.nsL.Int.CPx}]\",\n      \"id\": \"02-063\",\n      \"a\": {\n        \"wkt\": \"POINT (110 110)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            110\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (110 110, 80 200, 20 200, 200 20, 20 20, 200 200, 140 200, 110 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              110\n            ],\n            [\n              80,\n              200\n            ],\n            [\n              20,\n              200\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              200,\n              200\n            ],\n            [\n              140,\n              200\n            ],\n            [\n              110,\n              110\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF1F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.15-5-1: a point on a closed non-simple LineString's interior at a non-vertex with crossing line segments [dim(0){A.P.Int = B.nsL.Int.NVx}]\",\n      \"id\": \"02-064\",\n      \"a\": {\n        \"wkt\": \"POINT (110 110)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            110\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (200 200, 20 20, 200 20, 20 200, 200 200)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              200,\n              200\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              20,\n              200\n            ],\n            [\n              200,\n              200\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF1F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.15-5-2: a point on a closed non-simple LineString's interior at a vertex with crossing line segments [dim(0){A.P.Int = B.nsL.Int.Vx}]\",\n      \"id\": \"02-065\",\n      \"a\": {\n        \"wkt\": \"POINT (110 110)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            110\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (200 200, 110 110, 20 20, 200 20, 110 110, 20 200, 200 200)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              200,\n              200\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              20,\n              200\n            ],\n            [\n              200,\n              200\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF1F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.15-5-3: a point on a closed non-simple LineString's interior at a vertex with crossing line segments [dim(0){A.P.Int = B.nsL.Int.Vx}]\",\n      \"id\": \"02-066\",\n      \"a\": {\n        \"wkt\": \"POINT (110 110)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            110\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (200 200, 110 110, 200 20, 20 20, 110 110, 20 200, 200 200)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              200,\n              200\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              20,\n              200\n            ],\n            [\n              200,\n              200\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF1F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.16-5-1: a point on a closed non-simple LineString's closing point with crossing line segments [dim(0){A.P.Int = B.nsL.Int.CPx}]\",\n      \"id\": \"02-067\",\n      \"a\": {\n        \"wkt\": \"POINT (90 130)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            90,\n            130\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (90 130, 20 130, 20 200, 90 130, 110 110, 200 20, 20 20, 110 110, 200 200, 90 130)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              90,\n              130\n            ],\n            [\n              20,\n              130\n            ],\n            [\n              20,\n              200\n            ],\n            [\n              90,\n              130\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              200,\n              200\n            ],\n            [\n              90,\n              130\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF1F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.16-5-2: a point on a closed non-simple LineString's closing point with crossing line segments [dim(0){A.P.Int = B.nsL.Int.CPx}]\",\n      \"id\": \"02-068\",\n      \"a\": {\n        \"wkt\": \"POINT (90 130)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            90,\n            130\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (90 130, 20 130, 20 200, 110 110, 200 20, 20 20, 110 110, 200 200, 90 130)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              90,\n              130\n            ],\n            [\n              20,\n              130\n            ],\n            [\n              20,\n              200\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              200,\n              200\n            ],\n            [\n              90,\n              130\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF1F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.17-5-1: a point on a closed non-simple LineString's closing point with crossing line segments [dim(0){A.P.Int = B.nsL.Int.CPx}]\",\n      \"id\": \"02-069\",\n      \"a\": {\n        \"wkt\": \"POINT (90 130)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            90,\n            130\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (90 130, 90 200, 20 200, 90 130, 110 110, 200 20, 20 20, 110 110, 200 200, 90 130)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              90,\n              130\n            ],\n            [\n              90,\n              200\n            ],\n            [\n              20,\n              200\n            ],\n            [\n              90,\n              130\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              200,\n              200\n            ],\n            [\n              90,\n              130\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF1F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.17-5-2: a point on a closed non-simple LineString's closing point with crossing line segments [dim(0){A.P.Int = B.nsL.Int.CPx}]\",\n      \"id\": \"02-070\",\n      \"a\": {\n        \"wkt\": \"POINT (90 130)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            90,\n            130\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (90 130, 90 200, 20 200, 200 20, 20 20, 200 200, 90 130)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              90,\n              130\n            ],\n            [\n              90,\n              200\n            ],\n            [\n              20,\n              200\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              200,\n              200\n            ],\n            [\n              90,\n              130\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF1F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.17-5-3: a point on a closed non-simple LineString's closing point with crossing line segments [dim(0){A.P.Int = B.nsL.Int.CPx}]\",\n      \"id\": \"02-071\",\n      \"a\": {\n        \"wkt\": \"POINT (90 130)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            90,\n            130\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (90 130, 90 200, 20 200, 110 110, 200 20, 20 20, 110 110, 200 200, 90 130)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              90,\n              130\n            ],\n            [\n              90,\n              200\n            ],\n            [\n              20,\n              200\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              200,\n              200\n            ],\n            [\n              90,\n              130\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF1F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.17-5-4: a point on a closed non-simple LineString's closing point with crossing line segments [dim(0){A.P.Int = B.nsL.Int.CPx}]\",\n      \"id\": \"02-072\",\n      \"a\": {\n        \"wkt\": \"POINT (90 130)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            90,\n            130\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (90 130, 90 200, 20 200, 200 20, 20 20, 200 200, 90 130)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              90,\n              130\n            ],\n            [\n              90,\n              200\n            ],\n            [\n              20,\n              200\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              200,\n              200\n            ],\n            [\n              90,\n              130\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF1F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.17-5-5: a point on a closed non-simple LineString's interior at a non-vertex with crossing line segments [dim(0){A.P.Int = B.nsL.Int.NVx}]\",\n      \"id\": \"02-073\",\n      \"a\": {\n        \"wkt\": \"POINT (110 110)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            110\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (90 130, 90 200, 20 200, 200 20, 20 20, 200 200, 90 130)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              90,\n              130\n            ],\n            [\n              90,\n              200\n            ],\n            [\n              20,\n              200\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              200,\n              200\n            ],\n            [\n              90,\n              130\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF1F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.18-5-1: a point on a non-simple LineString's start point with both crossing and overlapping line segments [dim(0){A.P.Int = B.nsL.Bdy.SPb)}]\",\n      \"id\": \"02-074\",\n      \"a\": {\n        \"wkt\": \"POINT (110 200)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            200\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (110 200, 110 110, 20 20, 200 20, 110 110, 110 200, 200 200)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              200\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              110,\n              200\n            ],\n            [\n              200,\n              200\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F0FFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.18-5-2: a point on a non-simple LineString's interior at a non-vertex with overlapping line segments [dim(0){A.P.Int = B.nsL.Int.NVo}]\",\n      \"id\": \"02-075\",\n      \"a\": {\n        \"wkt\": \"POINT (110 150)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            150\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (110 200, 110 110, 20 20, 200 20, 110 110, 110 200, 200 200)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              200\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              110,\n              200\n            ],\n            [\n              200,\n              200\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.18-5-3: a point on a non-simple LineString's interior at a vertex with both crossing and overlapping line segments [dim(0){A.P.Int = B.nsL.Int.Vb}]\",\n      \"id\": \"02-076\",\n      \"a\": {\n        \"wkt\": \"POINT (110 110)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            110\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (110 200, 110 110, 20 20, 200 20, 110 110, 110 200, 200 200)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              200\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              110,\n              200\n            ],\n            [\n              200,\n              200\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.19-5-1: a point on a non-simple LineString's closing point with overlapping line segments [dim(0){A.P.Int = B.nsL.Int.CPo}]\",\n      \"id\": \"02-077\",\n      \"a\": {\n        \"wkt\": \"POINT (110 200)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            200\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (110 200, 110 110, 20 20, 200 20, 110 110, 110 200)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              200\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              110,\n              200\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF1F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.19-5-2: a point on a non-simple LineString's interior at a non-vertex overlapping line segments [dim(0){A.P.Int = B.nsL.Int.NVo}]\",\n      \"id\": \"02-078\",\n      \"a\": {\n        \"wkt\": \"POINT (110 150)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            150\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (110 200, 110 110, 20 20, 200 20, 110 110, 110 200)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              200\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              110,\n              200\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF1F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.19-5-3: a point on a non-simple LineString interior at a vertex with both crossing and overlapping line segments [dim(0){A.P.Int = B.nsL.Int.Vb}]\",\n      \"id\": \"02-079\",\n      \"a\": {\n        \"wkt\": \"POINT (110 110)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            110\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (110 200, 110 110, 20 20, 200 20, 110 110, 110 200)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              200\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              110,\n              200\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF1F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.20-5-1: a point on a non-simple LineString's interior at a non-vertex with overlapping line segments [dim(0){A.P.Int = B.nsL.Int.NVo}]\",\n      \"id\": \"02-080\",\n      \"a\": {\n        \"wkt\": \"POINT (110 150)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            150\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (20 200, 110 200, 110 110, 20 20, 200 20, 110 110, 110 200, 200 200)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              200\n            ],\n            [\n              110,\n              200\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              110,\n              200\n            ],\n            [\n              200,\n              200\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsL.20-5-2: a point on a non-simple LineString's interior at a vertex with both crossing and overlapping line segments [dim(0){A.P.Int = B.nsL.Int.Vb}]\",\n      \"id\": \"02-081\",\n      \"a\": {\n        \"wkt\": \"POINT (110 110)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            110\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (20 200, 110 200, 110 110, 20 20, 200 20, 110 110, 110 200, 200 200)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              200\n            ],\n            [\n              110,\n              200\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              110,\n              200\n            ],\n            [\n              200,\n              200\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"P/nsl.20-5-3: a point on a non-simple LineString's interior at a vertex with both crossing and overlapping line segments [dim(0){A.P.Int = B.nsL.Int.Vb}]\",\n      \"id\": \"02-082\",\n      \"a\": {\n        \"wkt\": \"POINT (110 200)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            200\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (20 200, 110 200, 110 110, 20 20, 200 20, 110 110, 110 200, 200 200)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              200\n            ],\n            [\n              110,\n              200\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              110,\n              200\n            ],\n            [\n              200,\n              200\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"mP/L-2-1: MultiPoint and a line disjoint (points on one side of the line) [dim(0){A.3P.Int = B.L.Ext}]\",\n      \"id\": \"02-083\",\n      \"a\": {\n        \"wkt\": \"MULTIPOINT (50 250, 90 220, 130 190)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              50,\n              250\n            ],\n            [\n              90,\n              220\n            ],\n            [\n              130,\n              190\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (90 80, 160 150, 300 150, 340 150, 340 240)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              90,\n              80\n            ],\n            [\n              160,\n              150\n            ],\n            [\n              300,\n              150\n            ],\n            [\n              340,\n              150\n            ],\n            [\n              340,\n              240\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": true,\n        \"intersects\": false,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF0FFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"mP/L-2-2: MultiPoint and a line disjoint (points over the line but no intersection) [dim(0){A.3P.Int = B.L.Ext}]\",\n      \"id\": \"02-084\",\n      \"a\": {\n        \"wkt\": \"MULTIPOINT (180 180, 230 130, 280 80)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              180,\n              180\n            ],\n            [\n              230,\n              130\n            ],\n            [\n              280,\n              80\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (90 80, 160 150, 300 150, 340 150, 340 240)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              90,\n              80\n            ],\n            [\n              160,\n              150\n            ],\n            [\n              300,\n              150\n            ],\n            [\n              340,\n              150\n            ],\n            [\n              340,\n              240\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": true,\n        \"intersects\": false,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF0FFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"mP/L-3-1: one of the points intersecting the start point of a line [dim(0){A.3P2.Int = B.L.Bdy.SP}]\",\n      \"id\": \"02-085\",\n      \"a\": {\n        \"wkt\": \"MULTIPOINT (50 120, 90 80, 130 40)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              50,\n              120\n            ],\n            [\n              90,\n              80\n            ],\n            [\n              130,\n              40\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (90 80, 160 150, 300 150, 340 150, 340 240)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              90,\n              80\n            ],\n            [\n              160,\n              150\n            ],\n            [\n              300,\n              150\n            ],\n            [\n              340,\n              150\n            ],\n            [\n              340,\n              240\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F00FFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"mP/L-3-2: one of the points intersecting the end point of a line [dim(0){A.3P2 = B.L.Bdy.EP}]\",\n      \"id\": \"02-086\",\n      \"a\": {\n        \"wkt\": \"MULTIPOINT (300 280, 340 240, 380 200)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              300,\n              280\n            ],\n            [\n              340,\n              240\n            ],\n            [\n              380,\n              200\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (90 80, 160 150, 300 150, 340 150, 340 240)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              90,\n              80\n            ],\n            [\n              160,\n              150\n            ],\n            [\n              300,\n              150\n            ],\n            [\n              340,\n              150\n            ],\n            [\n              340,\n              240\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F00FFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"mP/L-4-1: one of the points intersecting the interior of a line at a non-vertex (points on one side of the line) [dim(0){A.3P1.Int = B.L.Int.NV]\",\n      \"id\": \"02-087\",\n      \"a\": {\n        \"wkt\": \"MULTIPOINT (230 150, 260 120, 290 90)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              230,\n              150\n            ],\n            [\n              260,\n              120\n            ],\n            [\n              290,\n              90\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (90 80, 160 150, 300 150, 340 150, 340 240)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              90,\n              80\n            ],\n            [\n              160,\n              150\n            ],\n            [\n              300,\n              150\n            ],\n            [\n              340,\n              150\n            ],\n            [\n              340,\n              240\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F0FFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"mP/L-4-2: one of the points intersecting the interior of a line at a non-vertex (points over the line) [dim(0){A.3P2.Int = B.L.Int.NV]\",\n      \"id\": \"02-088\",\n      \"a\": {\n        \"wkt\": \"MULTIPOINT (200 190, 240 150, 270 110)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              200,\n              190\n            ],\n            [\n              240,\n              150\n            ],\n            [\n              270,\n              110\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (90 80, 160 150, 300 150, 340 150, 340 240)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              90,\n              80\n            ],\n            [\n              160,\n              150\n            ],\n            [\n              300,\n              150\n            ],\n            [\n              340,\n              150\n            ],\n            [\n              340,\n              240\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F0FFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"mP/L-4-3: one of the points intersecting the interior of a line at a vertex (points on one side of the line) [dim(0){A.3P1.Int = B.L.Int.V]\",\n      \"id\": \"02-089\",\n      \"a\": {\n        \"wkt\": \"MULTIPOINT (160 150, 190 120, 220 90)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              160,\n              150\n            ],\n            [\n              190,\n              120\n            ],\n            [\n              220,\n              90\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (90 80, 160 150, 300 150, 340 150, 340 240)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              90,\n              80\n            ],\n            [\n              160,\n              150\n            ],\n            [\n              300,\n              150\n            ],\n            [\n              340,\n              150\n            ],\n            [\n              340,\n              240\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F0FFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"mP/L-4-4: one of the points intersecting the interior of a line at a vertex (points over the line) [dim(0){A.3P2.Int = B.L.Int.V]\",\n      \"id\": \"02-090\",\n      \"a\": {\n        \"wkt\": \"MULTIPOINT (120 190, 160 150, 200 110)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              120,\n              190\n            ],\n            [\n              160,\n              150\n            ],\n            [\n              200,\n              110\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (90 80, 160 150, 300 150, 340 150, 340 240)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              90,\n              80\n            ],\n            [\n              160,\n              150\n            ],\n            [\n              300,\n              150\n            ],\n            [\n              340,\n              150\n            ],\n            [\n              340,\n              240\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F0FFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"mP/L-5-1: all the points on a line [dim(0){A.3P1.Int = B.L.Bdy.SP}, dim(0){A.3P2.Int = B.L.Int.V}, dim(0){A.3P3.Int = B.Bdy.EP}]\",\n      \"id\": \"02-091\",\n      \"a\": {\n        \"wkt\": \"MULTIPOINT (90 80, 160 150, 340 240)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              90,\n              80\n            ],\n            [\n              160,\n              150\n            ],\n            [\n              340,\n              240\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (90 80, 160 150, 300 150, 340 150, 340 240)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              90,\n              80\n            ],\n            [\n              160,\n              150\n            ],\n            [\n              300,\n              150\n            ],\n            [\n              340,\n              150\n            ],\n            [\n              340,\n              240\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"00FFFF1F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"mP/L-5-2: all the points on a line [dim(0){A.3P1.Int = B.L.Bdy.SP}, dim(0){A.3P2.Int = B.L.Int.V}, dim(0){A.3P3.Int = B.Int.V}]\",\n      \"id\": \"02-092\",\n      \"a\": {\n        \"wkt\": \"MULTIPOINT (90 80, 160 150, 300 150)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              90,\n              80\n            ],\n            [\n              160,\n              150\n            ],\n            [\n              300,\n              150\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (90 80, 160 150, 300 150, 340 150, 340 240)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              90,\n              80\n            ],\n            [\n              160,\n              150\n            ],\n            [\n              300,\n              150\n            ],\n            [\n              340,\n              150\n            ],\n            [\n              340,\n              240\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"00FFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"mP/L-5-3: all the points on a line [dim(0){A.3P1.Int = B.L.Bdy.SP}, dim(0){A.3P2.Int = B.L.Int.V}, dim(0){A.3P3.Int = B.Int.NV}]\",\n      \"id\": \"02-093\",\n      \"a\": {\n        \"wkt\": \"MULTIPOINT (90 80, 160 150, 240 150)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              90,\n              80\n            ],\n            [\n              160,\n              150\n            ],\n            [\n              240,\n              150\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (90 80, 160 150, 300 150, 340 150, 340 240)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              90,\n              80\n            ],\n            [\n              160,\n              150\n            ],\n            [\n              300,\n              150\n            ],\n            [\n              340,\n              150\n            ],\n            [\n              340,\n              240\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"00FFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"mP/L-5-4: all the points on a line [dim(0){A.3P1.Int = B.L.Bdy.SP}, dim(0){A.3P2.Int = B.L.Int.NV}, dim(0){A.3P3.Int = B.Int.NV}]\",\n      \"id\": \"02-094\",\n      \"a\": {\n        \"wkt\": \"MULTIPOINT (90 80, 130 120, 210 150)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              90,\n              80\n            ],\n            [\n              130,\n              120\n            ],\n            [\n              210,\n              150\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (90 80, 160 150, 300 150, 340 150, 340 240)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              90,\n              80\n            ],\n            [\n              160,\n              150\n            ],\n            [\n              300,\n              150\n            ],\n            [\n              340,\n              150\n            ],\n            [\n              340,\n              240\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"00FFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"mP/L-5-5: all the points on a line [dim(0){A.3P1.Int = B.L.Int.NV}, dim(0){A.3P2.Int = B.L.Int.NV}, dim(0){A.3P3.Int = B.Int.NV}]\",\n      \"id\": \"02-095\",\n      \"a\": {\n        \"wkt\": \"MULTIPOINT (130 120, 210 150, 340 200)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              130,\n              120\n            ],\n            [\n              210,\n              150\n            ],\n            [\n              340,\n              200\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (90 80, 160 150, 300 150, 340 150, 340 240)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              90,\n              80\n            ],\n            [\n              160,\n              150\n            ],\n            [\n              300,\n              150\n            ],\n            [\n              340,\n              150\n            ],\n            [\n              340,\n              240\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"mP/L-5-6: all the points on a line [dim(0){A.3P1.Int = B.L.Int.V}, dim(0){A.3P2.Int = B.L.Int.V}, dim(0){A.3P3.Int = B.Int.NV}]\",\n      \"id\": \"02-096\",\n      \"a\": {\n        \"wkt\": \"MULTIPOINT (160 150, 240 150, 340 210)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              160,\n              150\n            ],\n            [\n              240,\n              150\n            ],\n            [\n              340,\n              210\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (90 80, 160 150, 300 150, 340 150, 340 240)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              90,\n              80\n            ],\n            [\n              160,\n              150\n            ],\n            [\n              300,\n              150\n            ],\n            [\n              340,\n              150\n            ],\n            [\n              340,\n              240\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"mP/L-5-7: all the points on a line [dim(0){A.3P1.Int = B.L.Int.V}, dim(0){A.3P2.Int = B.L.Int.V}, dim(0){A.3P3.Int = B.Int.V}]\",\n      \"id\": \"02-097\",\n      \"a\": {\n        \"wkt\": \"MULTIPOINT (160 150, 300 150, 340 150)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              160,\n              150\n            ],\n            [\n              300,\n              150\n            ],\n            [\n              340,\n              150\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (90 80, 160 150, 300 150, 340 150, 340 240)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              90,\n              80\n            ],\n            [\n              160,\n              150\n            ],\n            [\n              300,\n              150\n            ],\n            [\n              340,\n              150\n            ],\n            [\n              340,\n              240\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePL\",\n      \"category\": \"relate\",\n      \"title\": \"mP/L-5-8: all the points on a line [dim(0){A.3P1.Int = B.L.Int.V}, dim(0){A.3P2.Int = B.L.Int.NV}, dim(0){A.3P3.Int = B.Bdy.EP}]\",\n      \"id\": \"02-098\",\n      \"a\": {\n        \"wkt\": \"MULTIPOINT (160 150, 240 150, 340 240)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              160,\n              150\n            ],\n            [\n              240,\n              150\n            ],\n            [\n              340,\n              240\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (90 80, 160 150, 300 150, 340 150, 340 240)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              90,\n              80\n            ],\n            [\n              160,\n              150\n            ],\n            [\n              300,\n              150\n            ],\n            [\n              340,\n              150\n            ],\n            [\n              340,\n              240\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"00FFFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePA\",\n      \"category\": \"relate\",\n      \"title\": \"P/A-2-1: a point outside a polygon [dim(0){A.P.Int = B.A.Ext}]\",\n      \"id\": \"03-001\",\n      \"a\": {\n        \"wkt\": \"POINT (20 20)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            20,\n            20\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((60 120, 60 40, 160 40, 160 120, 60 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                60,\n                120\n              ],\n              [\n                60,\n                40\n              ],\n              [\n                160,\n                40\n              ],\n              [\n                160,\n                120\n              ],\n              [\n                60,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": true,\n        \"intersects\": false,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF0FFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePA\",\n      \"category\": \"relate\",\n      \"title\": \"P/A-2-2: a point outside a converx polygon [dim(0){A.P.Int = B.A.Ext}]\",\n      \"id\": \"03-002\",\n      \"a\": {\n        \"wkt\": \"POINT (70 170)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            70,\n            170\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((110 230, 80 160, 20 160, 20 20, 200 20, 200 160, 140 160, 110 230))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                110,\n                230\n              ],\n              [\n                80,\n                160\n              ],\n              [\n                20,\n                160\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                200,\n                20\n              ],\n              [\n                200,\n                160\n              ],\n              [\n                140,\n                160\n              ],\n              [\n                110,\n                230\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": true,\n        \"intersects\": false,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF0FFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePA\",\n      \"category\": \"relate\",\n      \"title\": \"P/A-2-3: a point outside a concave polygon [dim(0){A.P.Int = B.A.Ext}]\",\n      \"id\": \"03-003\",\n      \"a\": {\n        \"wkt\": \"POINT (110 130)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            130\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((20 160, 80 160, 110 100, 140 160, 200 160, 200 20, 20 20, 20 160))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                160\n              ],\n              [\n                80,\n                160\n              ],\n              [\n                110,\n                100\n              ],\n              [\n                140,\n                160\n              ],\n              [\n                200,\n                160\n              ],\n              [\n                200,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                160\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": true,\n        \"intersects\": false,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF0FFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePA\",\n      \"category\": \"relate\",\n      \"title\": \"P/A-2-4: dim(0){A.P.Int = B.A.Ext}\",\n      \"id\": \"03-004\",\n      \"a\": {\n        \"wkt\": \"POINT (100 70)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            100,\n            70\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((20 150, 100 150, 40 50, 170 50, 110 150, 190 150, 190 20, 20 20, 20 150))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                150\n              ],\n              [\n                100,\n                150\n              ],\n              [\n                40,\n                50\n              ],\n              [\n                170,\n                50\n              ],\n              [\n                110,\n                150\n              ],\n              [\n                190,\n                150\n              ],\n              [\n                190,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                150\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": true,\n        \"intersects\": false,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF0FFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePA\",\n      \"category\": \"relate\",\n      \"title\": \"P/A-2-5: a point outside a concave polygon [dim(0){A.P.Int = B.A.Ext}]\",\n      \"id\": \"03-005\",\n      \"a\": {\n        \"wkt\": \"POINT (100 70)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            100,\n            70\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((20 150, 100 150, 40 50, 160 50, 100 150, 180 150, 180 20, 20 20, 20 150))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                150\n              ],\n              [\n                100,\n                150\n              ],\n              [\n                40,\n                50\n              ],\n              [\n                160,\n                50\n              ],\n              [\n                100,\n                150\n              ],\n              [\n                180,\n                150\n              ],\n              [\n                180,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                150\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": true,\n        \"intersects\": false,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF0FFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePA\",\n      \"category\": \"relate\",\n      \"title\": \"P/A-3-1: a point on the closing point of a polygon [dim(0){A.P.Int = B.A.Bdy.CP}]\",\n      \"id\": \"03-006\",\n      \"a\": {\n        \"wkt\": \"POINT (60 120)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            60,\n            120\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((60 120, 60 40, 160 40, 160 120, 60 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                60,\n                120\n              ],\n              [\n                60,\n                40\n              ],\n              [\n                160,\n                40\n              ],\n              [\n                160,\n                120\n              ],\n              [\n                60,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F0FFFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePA\",\n      \"category\": \"relate\",\n      \"title\": \"P/A-3-2: a point on the boudary of a polygon at a non-vertex [dim(0){A.P.Int = B.A.Bdy.NV}]\",\n      \"id\": \"03-007\",\n      \"a\": {\n        \"wkt\": \"POINT (110 120)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            120\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((60 120, 60 40, 160 40, 160 120, 60 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                60,\n                120\n              ],\n              [\n                60,\n                40\n              ],\n              [\n                160,\n                40\n              ],\n              [\n                160,\n                120\n              ],\n              [\n                60,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F0FFFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePA\",\n      \"category\": \"relate\",\n      \"title\": \"P/A-3-3: a point on the boundary of a polygon at a vertex [dim(0){A.P.Int = B.A.Bdy.V]\",\n      \"id\": \"03-008\",\n      \"a\": {\n        \"wkt\": \"POINT (160 120)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            160,\n            120\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((60 120, 60 40, 160 40, 160 120, 60 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                60,\n                120\n              ],\n              [\n                60,\n                40\n              ],\n              [\n                160,\n                40\n              ],\n              [\n                160,\n                120\n              ],\n              [\n                60,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F0FFFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePA\",\n      \"category\": \"relate\",\n      \"title\": \"P/A-3-4: a point on the touching point of boudary [dim(0){A.P.Int = B.A.Bdy.TP}]\",\n      \"id\": \"03-009\",\n      \"a\": {\n        \"wkt\": \"POINT (100 150)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            100,\n            150\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((20 150, 100 150, 40 50, 160 50, 100 150, 180 150, 180 20, 20 20, 20 150))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                150\n              ],\n              [\n                100,\n                150\n              ],\n              [\n                40,\n                50\n              ],\n              [\n                160,\n                50\n              ],\n              [\n                100,\n                150\n              ],\n              [\n                180,\n                150\n              ],\n              [\n                180,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                150\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F0FFFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePA\",\n      \"category\": \"relate\",\n      \"title\": \"P/A-5: a point on the interior of a polygon [dim(0){A.P.Int = B.A.Int}]\",\n      \"id\": \"03-010\",\n      \"a\": {\n        \"wkt\": \"POINT (100 80)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            100,\n            80\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((60 120, 60 40, 160 40, 160 120, 60 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                60,\n                120\n              ],\n              [\n                60,\n                40\n              ],\n              [\n                160,\n                40\n              ],\n              [\n                160,\n                120\n              ],\n              [\n                60,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePA\",\n      \"category\": \"relate\",\n      \"title\": \"P/Ah-2-1: a point outside of polygon with a hole [dim(0){A.P.Int = B.A.Ext}]\",\n      \"id\": \"03-011\",\n      \"a\": {\n        \"wkt\": \"POINT (60 160)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            60,\n            160\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((190 190, 360 20, 20 20, 190 190),(280 50, 100 50, 190 140, 280 50))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                190,\n                190\n              ],\n              [\n                360,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                190,\n                190\n              ]\n            ],\n            [\n              [\n                280,\n                50\n              ],\n              [\n                100,\n                50\n              ],\n              [\n                190,\n                140\n              ],\n              [\n                280,\n                50\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": true,\n        \"intersects\": false,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF0FFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePA\",\n      \"category\": \"relate\",\n      \"title\": \"P/Ah-2-2: a point inside the hole of the polygon [dim(0){A.P.Int = B.A.Ext.h}]\",\n      \"id\": \"03-012\",\n      \"a\": {\n        \"wkt\": \"POINT (190 90)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            190,\n            90\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((190 190, 360 20, 20 20, 190 190),(280 50, 100 50, 190 140, 280 50))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                190,\n                190\n              ],\n              [\n                360,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                190,\n                190\n              ]\n            ],\n            [\n              [\n                280,\n                50\n              ],\n              [\n                100,\n                50\n              ],\n              [\n                190,\n                140\n              ],\n              [\n                280,\n                50\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": true,\n        \"intersects\": false,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF0FFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePA\",\n      \"category\": \"relate\",\n      \"title\": \"P/Ah-3-1: a point on the closing point of the outer boundary of a polygon with a hole [dim(0){A.P.Int = B.A.oBdy.CP}]\",\n      \"id\": \"03-013\",\n      \"a\": {\n        \"wkt\": \"POINT (190 190)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            190,\n            190\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((190 190, 360 20, 20 20, 190 190),(280 50, 100 50, 190 140, 280 50))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                190,\n                190\n              ],\n              [\n                360,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                190,\n                190\n              ]\n            ],\n            [\n              [\n                280,\n                50\n              ],\n              [\n                100,\n                50\n              ],\n              [\n                190,\n                140\n              ],\n              [\n                280,\n                50\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F0FFFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePA\",\n      \"category\": \"relate\",\n      \"title\": \"P/Ah-3-2: a point on the outer boundary of a polygon at a vertex [dim(0){A.P.Int = B.A.oBdy.V}]\",\n      \"id\": \"03-014\",\n      \"a\": {\n        \"wkt\": \"POINT (360 20)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            360,\n            20\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((190 190, 360 20, 20 20, 190 190),(280 50, 100 50, 190 140, 280 50))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                190,\n                190\n              ],\n              [\n                360,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                190,\n                190\n              ]\n            ],\n            [\n              [\n                280,\n                50\n              ],\n              [\n                100,\n                50\n              ],\n              [\n                190,\n                140\n              ],\n              [\n                280,\n                50\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F0FFFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePA\",\n      \"category\": \"relate\",\n      \"title\": \"P/Ah-3-3: a point on the outer boundary of a polygon at a non-vertex [dim(0){A.P.Int = B.A.oBdy.NV}]\",\n      \"id\": \"03-015\",\n      \"a\": {\n        \"wkt\": \"POINT (130 130)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            130,\n            130\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((190 190, 360 20, 20 20, 190 190),(280 50, 100 50, 190 140, 280 50))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                190,\n                190\n              ],\n              [\n                360,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                190,\n                190\n              ]\n            ],\n            [\n              [\n                280,\n                50\n              ],\n              [\n                100,\n                50\n              ],\n              [\n                190,\n                140\n              ],\n              [\n                280,\n                50\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F0FFFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePA\",\n      \"category\": \"relate\",\n      \"title\": \"P/Ah-3-4: a point on the closing point of the inner boundary of a polygon [dim(0){A.P.Int = B.A.iBdy.CP}]\",\n      \"id\": \"03-016\",\n      \"a\": {\n        \"wkt\": \"POINT (280 50)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            280,\n            50\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((190 190, 360 20, 20 20, 190 190),(280 50, 100 50, 190 140, 280 50))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                190,\n                190\n              ],\n              [\n                360,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                190,\n                190\n              ]\n            ],\n            [\n              [\n                280,\n                50\n              ],\n              [\n                100,\n                50\n              ],\n              [\n                190,\n                140\n              ],\n              [\n                280,\n                50\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F0FFFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePA\",\n      \"category\": \"relate\",\n      \"title\": \"P/Ah-3-5: a point on the inner boundary of a polygon at a non-vertex [dim(0){A.P.Int = B.A.iBdy.NV}]\",\n      \"id\": \"03-017\",\n      \"a\": {\n        \"wkt\": \"POINT (150 100)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            150,\n            100\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((190 190, 360 20, 20 20, 190 190),(280 50, 100 50, 190 140, 280 50))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                190,\n                190\n              ],\n              [\n                360,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                190,\n                190\n              ]\n            ],\n            [\n              [\n                280,\n                50\n              ],\n              [\n                100,\n                50\n              ],\n              [\n                190,\n                140\n              ],\n              [\n                280,\n                50\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F0FFFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePA\",\n      \"category\": \"relate\",\n      \"title\": \"P/Ah-3-6: a point on the inner boundary of a polygon at a vertex [dim(0){A.P.Int = B.A.iBdy.V}]\",\n      \"id\": \"03-018\",\n      \"a\": {\n        \"wkt\": \"POINT (100 50)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            100,\n            50\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((190 190, 360 20, 20 20, 190 190),(280 50, 100 50, 190 140, 280 50))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                190,\n                190\n              ],\n              [\n                360,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                190,\n                190\n              ]\n            ],\n            [\n              [\n                280,\n                50\n              ],\n              [\n                100,\n                50\n              ],\n              [\n                190,\n                140\n              ],\n              [\n                280,\n                50\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F0FFFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePA\",\n      \"category\": \"relate\",\n      \"title\": \"P/Ah-5: a point inside the interior of a polygon with a hole [dim(0){A.P.Int = B.A.Int}]\",\n      \"id\": \"03-019\",\n      \"a\": {\n        \"wkt\": \"POINT (140 120)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            140,\n            120\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((190 190, 360 20, 20 20, 190 190),(280 50, 100 50, 190 140, 280 50))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                190,\n                190\n              ],\n              [\n                360,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                190,\n                190\n              ]\n            ],\n            [\n              [\n                280,\n                50\n              ],\n              [\n                100,\n                50\n              ],\n              [\n                190,\n                140\n              ],\n              [\n                280,\n                50\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePA\",\n      \"category\": \"relate\",\n      \"title\": \"P/A2h-3-1: a point on the touching point of two holes in a polygon [dim(0){A.P.Int = B.A.iBdy.TP}]\",\n      \"id\": \"03-020\",\n      \"a\": {\n        \"wkt\": \"POINT (190 50)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            190,\n            50\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((190 190, 360 20, 20 20, 190 190),(90 50, 150 110, 190 50, 90 50),(190 50, 230 110, 290 50, 190 50))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                190,\n                190\n              ],\n              [\n                360,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                190,\n                190\n              ]\n            ],\n            [\n              [\n                90,\n                50\n              ],\n              [\n                150,\n                110\n              ],\n              [\n                190,\n                50\n              ],\n              [\n                90,\n                50\n              ]\n            ],\n            [\n              [\n                190,\n                50\n              ],\n              [\n                230,\n                110\n              ],\n              [\n                290,\n                50\n              ],\n              [\n                190,\n                50\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F0FFFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePA\",\n      \"category\": \"relate\",\n      \"title\": \"P/A2h-3-2: a point on the touching point of two holes in a polygon [dim(0){A.P.Int = B.A.iBdy.TP}]\",\n      \"id\": \"03-021\",\n      \"a\": {\n        \"wkt\": \"POINT (180 90)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            180,\n            90\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((190 190, 360 20, 20 20, 190 190),(180 140, 180 40, 80 40, 180 140),(180 90, 210 140, 310 40, 230 40, 180 90))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                190,\n                190\n              ],\n              [\n                360,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                190,\n                190\n              ]\n            ],\n            [\n              [\n                180,\n                140\n              ],\n              [\n                180,\n                40\n              ],\n              [\n                80,\n                40\n              ],\n              [\n                180,\n                140\n              ]\n            ],\n            [\n              [\n                180,\n                90\n              ],\n              [\n                210,\n                140\n              ],\n              [\n                310,\n                40\n              ],\n              [\n                230,\n                40\n              ],\n              [\n                180,\n                90\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F0FFFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePA\",\n      \"category\": \"relate\",\n      \"title\": \"mP/A-2: 3 points outside a polygon [dim(0){A.2P.Int = B.A.Ext}]\",\n      \"id\": \"03-022\",\n      \"a\": {\n        \"wkt\": \"MULTIPOINT (20 80, 110 160, 20 160)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              20,\n              80\n            ],\n            [\n              110,\n              160\n            ],\n            [\n              20,\n              160\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((60 120, 60 40, 160 40, 160 120, 60 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                60,\n                120\n              ],\n              [\n                60,\n                40\n              ],\n              [\n                160,\n                40\n              ],\n              [\n                160,\n                120\n              ],\n              [\n                60,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": true,\n        \"intersects\": false,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF0FFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePA\",\n      \"category\": \"relate\",\n      \"title\": \"mP/A-3-1: one of 3 points on the closing point of the boundary of a polygon [dim(0){A.3P1.Int = B.A.Bdy.CP}]\",\n      \"id\": \"03-023\",\n      \"a\": {\n        \"wkt\": \"MULTIPOINT (20 80, 60 120, 20 160)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              20,\n              80\n            ],\n            [\n              60,\n              120\n            ],\n            [\n              20,\n              160\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((60 120, 60 40, 160 40, 160 120, 60 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                60,\n                120\n              ],\n              [\n                60,\n                40\n              ],\n              [\n                160,\n                40\n              ],\n              [\n                160,\n                120\n              ],\n              [\n                60,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F00FFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePA\",\n      \"category\": \"relate\",\n      \"title\": \"mP/A-3-2: one of 3 points on the boundary of a polygon at a non-vertex [dim(0){A.3P3 = B.A.Bdy.NV}]\",\n      \"id\": \"03-024\",\n      \"a\": {\n        \"wkt\": \"MULTIPOINT (10 80, 110 170, 110 120)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              10,\n              80\n            ],\n            [\n              110,\n              170\n            ],\n            [\n              110,\n              120\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((60 120, 60 40, 160 40, 160 120, 60 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                60,\n                120\n              ],\n              [\n                60,\n                40\n              ],\n              [\n                160,\n                40\n              ],\n              [\n                160,\n                120\n              ],\n              [\n                60,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F00FFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePA\",\n      \"category\": \"relate\",\n      \"title\": \"mP/A-3-3: one of 3 points on the boundary of a polygon at a vertex [dim(0){A.3P1.Int = B.A.Bdy.V}]\",\n      \"id\": \"03-025\",\n      \"a\": {\n        \"wkt\": \"MULTIPOINT (10 80, 110 170, 160 120)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              10,\n              80\n            ],\n            [\n              110,\n              170\n            ],\n            [\n              160,\n              120\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((60 120, 60 40, 160 40, 160 120, 60 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                60,\n                120\n              ],\n              [\n                60,\n                40\n              ],\n              [\n                160,\n                40\n              ],\n              [\n                160,\n                120\n              ],\n              [\n                60,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F00FFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePA\",\n      \"category\": \"relate\",\n      \"title\": \"mP/A-3-4: 3 of the 5 points on the boundary of a polygon [dim(0){A.5P2.Int = B.A.Bdy.CP}, dim(0){A.5P3.Int = B.A.Bdy.NV}, dim(0){A.5P4.Int = B.A.Bdy.V}]\",\n      \"id\": \"03-026\",\n      \"a\": {\n        \"wkt\": \"MULTIPOINT (20 120, 60 120, 110 120, 160 120, 200 120)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              20,\n              120\n            ],\n            [\n              60,\n              120\n            ],\n            [\n              110,\n              120\n            ],\n            [\n              160,\n              120\n            ],\n            [\n              200,\n              120\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((60 120, 60 40, 160 40, 160 120, 60 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                60,\n                120\n              ],\n              [\n                60,\n                40\n              ],\n              [\n                160,\n                40\n              ],\n              [\n                160,\n                120\n              ],\n              [\n                60,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F00FFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePA\",\n      \"category\": \"relate\",\n      \"title\": \"mP/A-3-5: all 3 points on the boundary of a polygon [dim(0){A.3P1.Int = B.A.Bdy.CP}, dim(0){A.3P2.Int = B.A.Bdy.NV}, dim(0){A.3P3.Int = B.A.Bdy.V}]\",\n      \"id\": \"03-027\",\n      \"a\": {\n        \"wkt\": \"MULTIPOINT (60 120, 110 120, 160 120)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              60,\n              120\n            ],\n            [\n              110,\n              120\n            ],\n            [\n              160,\n              120\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((60 120, 60 40, 160 40, 160 120, 60 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                60,\n                120\n              ],\n              [\n                60,\n                40\n              ],\n              [\n                160,\n                40\n              ],\n              [\n                160,\n                120\n              ],\n              [\n                60,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F0FFFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePA\",\n      \"category\": \"relate\",\n      \"title\": \"mP/A-3-6: all 4 points on the boundary of a polygon [dim(0){A.4P = B.A.Bdy}]\",\n      \"id\": \"03-028\",\n      \"a\": {\n        \"wkt\": \"MULTIPOINT (60 120, 160 120, 160 40, 60 40)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              60,\n              120\n            ],\n            [\n              160,\n              120\n            ],\n            [\n              160,\n              40\n            ],\n            [\n              60,\n              40\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((60 120, 60 40, 160 40, 160 120, 60 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                60,\n                120\n              ],\n              [\n                60,\n                40\n              ],\n              [\n                160,\n                40\n              ],\n              [\n                160,\n                120\n              ],\n              [\n                60,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F0FFFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePA\",\n      \"category\": \"relate\",\n      \"title\": \"mP/A-4-1: 1 point outside a polygon, 1 point on the boundary and 1 point inside [dim(0){A.3P1.Int = B.A.Ext}, dim(0){A.3P2.Int = B.A.Bdy.CP}, dim(0){A.3P3.Int = B.A.Int}]\",\n      \"id\": \"03-029\",\n      \"a\": {\n        \"wkt\": \"MULTIPOINT (20 150, 60 120, 110 80)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              20,\n              150\n            ],\n            [\n              60,\n              120\n            ],\n            [\n              110,\n              80\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((60 120, 60 40, 160 40, 160 120, 60 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                60,\n                120\n              ],\n              [\n                60,\n                40\n              ],\n              [\n                160,\n                40\n              ],\n              [\n                160,\n                120\n              ],\n              [\n                60,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"000FFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePA\",\n      \"category\": \"relate\",\n      \"title\": \"mP/A-4-2: 1 point outside a polygon, 1 point on the boundary and 1 point inside [dim(0){A.3P1.Int = B.A.Ext}, dim(0){A.3P2.Int = B.A.Bdy.V}, dim(0){A.3P3.Int = B.A.Int}]\",\n      \"id\": \"03-030\",\n      \"a\": {\n        \"wkt\": \"MULTIPOINT (110 80, 160 120, 200 160)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              110,\n              80\n            ],\n            [\n              160,\n              120\n            ],\n            [\n              200,\n              160\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((60 120, 60 40, 160 40, 160 120, 60 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                60,\n                120\n              ],\n              [\n                60,\n                40\n              ],\n              [\n                160,\n                40\n              ],\n              [\n                160,\n                120\n              ],\n              [\n                60,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"000FFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePA\",\n      \"category\": \"relate\",\n      \"title\": \"mP/A-4-3: 1 point outside a polygon, 1 point on the boundary and 1 point inside [dim(0){A.3P1.Int = B.A.Ext}, dim(0){A.3P2.Int = B.A.Bdy.NV}, dim(0){A.3P3.Int = B.A.Int}]\",\n      \"id\": \"03-031\",\n      \"a\": {\n        \"wkt\": \"MULTIPOINT (110 80, 110 120, 110 160)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              110,\n              80\n            ],\n            [\n              110,\n              120\n            ],\n            [\n              110,\n              160\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((60 120, 60 40, 160 40, 160 120, 60 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                60,\n                120\n              ],\n              [\n                60,\n                40\n              ],\n              [\n                160,\n                40\n              ],\n              [\n                160,\n                120\n              ],\n              [\n                60,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"000FFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePA\",\n      \"category\": \"relate\",\n      \"title\": \"mP/A-4-4: 1 point outside a polygon, 1 point inside [dim(0){A.2P1.Int = B.A.Ext}, dim(0){A.2P2.Int = B.A.Int}]\",\n      \"id\": \"03-032\",\n      \"a\": {\n        \"wkt\": \"MULTIPOINT (110 170, 110 80)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              110,\n              170\n            ],\n            [\n              110,\n              80\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((60 120, 60 40, 160 40, 160 120, 60 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                60,\n                120\n              ],\n              [\n                60,\n                40\n              ],\n              [\n                160,\n                40\n              ],\n              [\n                160,\n                120\n              ],\n              [\n                60,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F0FFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePA\",\n      \"category\": \"relate\",\n      \"title\": \"mP/A-4-5: 1 point outside a polygon, 2 points on the boundary and 1 point inside [dim(0){A.4P1.Int = B.A.Ext}, dim(0){A.4P2.Int = B.A.Bdy.CP}, dim(0){A.4P3.Int = B.A.Bdy.V}, dim(0){A.4P4.Int = B.A.Int}]\",\n      \"id\": \"03-033\",\n      \"a\": {\n        \"wkt\": \"MULTIPOINT (60 120, 160 120, 110 80, 110 170)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              60,\n              120\n            ],\n            [\n              160,\n              120\n            ],\n            [\n              110,\n              80\n            ],\n            [\n              110,\n              170\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((60 120, 60 40, 160 40, 160 120, 60 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                60,\n                120\n              ],\n              [\n                60,\n                40\n              ],\n              [\n                160,\n                40\n              ],\n              [\n                160,\n                120\n              ],\n              [\n                60,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"000FFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePA\",\n      \"category\": \"relate\",\n      \"title\": \"mP/A-5-1: 2 points within a polygon [dim(0){A.2P.Int = B.A.Int]\",\n      \"id\": \"03-034\",\n      \"a\": {\n        \"wkt\": \"MULTIPOINT (90 80, 130 80)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              90,\n              80\n            ],\n            [\n              130,\n              80\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((60 120, 60 40, 160 40, 160 120, 60 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                60,\n                120\n              ],\n              [\n                60,\n                40\n              ],\n              [\n                160,\n                40\n              ],\n              [\n                160,\n                120\n              ],\n              [\n                60,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePA\",\n      \"category\": \"relate\",\n      \"title\": \"mP/A-5-2: 1 point on the boundary and 1 point inside a polygon [dim(0){A.2P1.Int = B.A.Bdy.CP}, dim(0){A.2P2.Int = B.A.Int}]\",\n      \"id\": \"03-035\",\n      \"a\": {\n        \"wkt\": \"MULTIPOINT (60 120, 160 120, 110 80)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              60,\n              120\n            ],\n            [\n              160,\n              120\n            ],\n            [\n              110,\n              80\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((60 120, 60 40, 160 40, 160 120, 60 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                60,\n                120\n              ],\n              [\n                60,\n                40\n              ],\n              [\n                160,\n                40\n              ],\n              [\n                160,\n                120\n              ],\n              [\n                60,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"00FFFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePA\",\n      \"category\": \"relate\",\n      \"title\": \"mP/Ah-2-1: 3 points outside a polygon [dim(0){A.3P.Int = B.Ah.Ext}]\",\n      \"id\": \"03-036\",\n      \"a\": {\n        \"wkt\": \"MULTIPOINT (40 170, 40 90, 130 170)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              40,\n              170\n            ],\n            [\n              40,\n              90\n            ],\n            [\n              130,\n              170\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((190 190, 360 20, 20 20, 190 190),(280 50, 100 50, 190 140, 280 50))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                190,\n                190\n              ],\n              [\n                360,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                190,\n                190\n              ]\n            ],\n            [\n              [\n                280,\n                50\n              ],\n              [\n                100,\n                50\n              ],\n              [\n                190,\n                140\n              ],\n              [\n                280,\n                50\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": true,\n        \"intersects\": false,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF0FFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePA\",\n      \"category\": \"relate\",\n      \"title\": \"mP/Ah-2-2: 2 points outside a polygon and 1 point inside the hole of the polygon [dim(0){A.3P1.Int = B.Ah.Ext}, dim(0){A.3P2.Int = B.Ah.Ext}, dim(0){A.3P3.Int = B.Ah.Ext.h}]\",\n      \"id\": \"03-037\",\n      \"a\": {\n        \"wkt\": \"MULTIPOINT (90 170, 280 170, 190 90)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              90,\n              170\n            ],\n            [\n              280,\n              170\n            ],\n            [\n              190,\n              90\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((190 190, 360 20, 20 20, 190 190),(280 50, 100 50, 190 140, 280 50))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                190,\n                190\n              ],\n              [\n                360,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                190,\n                190\n              ]\n            ],\n            [\n              [\n                280,\n                50\n              ],\n              [\n                100,\n                50\n              ],\n              [\n                190,\n                140\n              ],\n              [\n                280,\n                50\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": true,\n        \"intersects\": false,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF0FFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePA\",\n      \"category\": \"relate\",\n      \"title\": \"mP/Ah-2-3: all 3 points in polygon's hole [dim(0){A.3P.Int = B.Ah.Ext.h}]\",\n      \"id\": \"03-038\",\n      \"a\": {\n        \"wkt\": \"MULTIPOINT (190 110, 150 70, 230 70)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              190,\n              110\n            ],\n            [\n              150,\n              70\n            ],\n            [\n              230,\n              70\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((190 190, 360 20, 20 20, 190 190),(280 50, 100 50, 190 140, 280 50))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                190,\n                190\n              ],\n              [\n                360,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                190,\n                190\n              ]\n            ],\n            [\n              [\n                280,\n                50\n              ],\n              [\n                100,\n                50\n              ],\n              [\n                190,\n                140\n              ],\n              [\n                280,\n                50\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": true,\n        \"intersects\": false,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF0FFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePA\",\n      \"category\": \"relate\",\n      \"title\": \"P/mA-3-1: a point on the touching point of two polygons [dim(0){A.P.Int = B.2A.Bdy}]\",\n      \"id\": \"03-039\",\n      \"a\": {\n        \"wkt\": \"POINT (100 100)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            100,\n            100\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTIPOLYGON (((20 100, 20 20, 100 20, 100 100, 20 100)),((100 180, 100 100, 180 100, 180 180, 100 180)))\",\n        \"geometry\": {\n          \"type\": \"MultiPolygon\",\n          \"coordinates\": [\n            [\n              [\n                [\n                  20,\n                  100\n                ],\n                [\n                  20,\n                  20\n                ],\n                [\n                  100,\n                  20\n                ],\n                [\n                  100,\n                  100\n                ],\n                [\n                  20,\n                  100\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  100,\n                  180\n                ],\n                [\n                  100,\n                  100\n                ],\n                [\n                  180,\n                  100\n                ],\n                [\n                  180,\n                  180\n                ],\n                [\n                  100,\n                  180\n                ]\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F0FFFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePA\",\n      \"category\": \"relate\",\n      \"title\": \"P/mA-3-2: a point on the boundary of one of the 2 polygons [dim(0){A.P.Int = B.2A1.Bdy.CP}]\",\n      \"id\": \"03-040\",\n      \"a\": {\n        \"wkt\": \"POINT (20 100)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            20,\n            100\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTIPOLYGON (((20 100, 20 20, 100 20, 100 100, 20 100)),((100 180, 100 100, 180 100, 180 180, 100 180)))\",\n        \"geometry\": {\n          \"type\": \"MultiPolygon\",\n          \"coordinates\": [\n            [\n              [\n                [\n                  20,\n                  100\n                ],\n                [\n                  20,\n                  20\n                ],\n                [\n                  100,\n                  20\n                ],\n                [\n                  100,\n                  100\n                ],\n                [\n                  20,\n                  100\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  100,\n                  180\n                ],\n                [\n                  100,\n                  100\n                ],\n                [\n                  180,\n                  100\n                ],\n                [\n                  180,\n                  180\n                ],\n                [\n                  100,\n                  180\n                ]\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F0FFFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePA\",\n      \"category\": \"relate\",\n      \"title\": \"P/mA-3-3: a point on the boundary of one of the 2 polygons [dim(0){A.P.Int = B.2A1.Bdy.V}]\",\n      \"id\": \"03-041\",\n      \"a\": {\n        \"wkt\": \"POINT (60 100)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            60,\n            100\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTIPOLYGON (((20 100, 20 20, 100 20, 100 100, 20 100)),((100 180, 100 100, 180 100, 180 180, 100 180)))\",\n        \"geometry\": {\n          \"type\": \"MultiPolygon\",\n          \"coordinates\": [\n            [\n              [\n                [\n                  20,\n                  100\n                ],\n                [\n                  20,\n                  20\n                ],\n                [\n                  100,\n                  20\n                ],\n                [\n                  100,\n                  100\n                ],\n                [\n                  20,\n                  100\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  100,\n                  180\n                ],\n                [\n                  100,\n                  100\n                ],\n                [\n                  180,\n                  100\n                ],\n                [\n                  180,\n                  180\n                ],\n                [\n                  100,\n                  180\n                ]\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F0FFFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelatePA\",\n      \"category\": \"relate\",\n      \"title\": \"P/mA-3-4: a point touching a polygon's boundary where the boundaries touch at a point [dim(0){A.P.Int = B.2A.Bdy.TP}]\",\n      \"id\": \"03-042\",\n      \"a\": {\n        \"wkt\": \"POINT (110 110)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            110,\n            110\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTIPOLYGON (((110 110, 20 200, 200 200, 110 110),(110 110, 80 180, 140 180, 110 110)),((110 110, 20 20, 200 20, 110 110),(110 110, 80 40, 140 40, 110 110)))\",\n        \"geometry\": {\n          \"type\": \"MultiPolygon\",\n          \"coordinates\": [\n            [\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  20,\n                  200\n                ],\n                [\n                  200,\n                  200\n                ],\n                [\n                  110,\n                  110\n                ]\n              ],\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  80,\n                  180\n                ],\n                [\n                  140,\n                  180\n                ],\n                [\n                  110,\n                  110\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  20,\n                  20\n                ],\n                [\n                  200,\n                  20\n                ],\n                [\n                  110,\n                  110\n                ]\n              ],\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  80,\n                  40\n                ],\n                [\n                  140,\n                  40\n                ],\n                [\n                  110,\n                  110\n                ]\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F0FFFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.1-3-1: touching at the start points of two lines [dim(0){A.L.Bdy.SP = B.L.Bdy.SP}]\",\n      \"id\": \"04-001\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (40 40, 120 120)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              40\n            ],\n            [\n              120,\n              120\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (40 40, 60 120)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              40\n            ],\n            [\n              60,\n              120\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF1F00102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.1-3-2: start point of one line touching end point of another line [dim(0){A.L.Bdy.SP = B.L.Bdy.EP}]\",\n      \"id\": \"04-002\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (40 40, 120 120)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              40\n            ],\n            [\n              120,\n              120\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (60 240, 40 40)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              60,\n              240\n            ],\n            [\n              40,\n              40\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF1F00102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.1-3-3: start point of a line touching the interior of another line at a non-vertex [dim(0){A.L.Bdy.SP = B.L.Int.NV}]\",\n      \"id\": \"04-003\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (40 40, 180 180)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              40\n            ],\n            [\n              180,\n              180\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (120 120, 20 200)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              120,\n              120\n            ],\n            [\n              20,\n              200\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F01FF0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.1-3-4: touching at the end points of two lines [dim(0){A.L.Bdy.EP = B.L.Bdy.EP}]\",\n      \"id\": \"04-004\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (40 40, 120 120)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              40\n            ],\n            [\n              120,\n              120\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (60 240, 120 120)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              60,\n              240\n            ],\n            [\n              120,\n              120\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF1F00102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.1-3-5: end point of a line touching the interior of another line at a non-vertex [dim(0){A.L.Bdy.EP = B.L.Int.NV}]\",\n      \"id\": \"04-005\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (40 40, 180 180)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              40\n            ],\n            [\n              180,\n              180\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (20 180, 140 140)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              180\n            ],\n            [\n              140,\n              140\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F01FF0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.1-4-1: two lines crossing at non-vertex [dim(0){A.L.Int.NV = B.L.Int.NV}]\",\n      \"id\": \"04-006\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (40 40, 120 120)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              40\n            ],\n            [\n              120,\n              120\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (40 120, 120 40)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              120\n            ],\n            [\n              120,\n              40\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F1FF0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.1-1-1: equal pointwise [dim(1){A.L.Int.SP-EP = B.L.Int.SP-EP}]\",\n      \"id\": \"04-007\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (40 40, 100 100)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              40\n            ],\n            [\n              100,\n              100\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (40 40, 100 100)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              40\n            ],\n            [\n              100,\n              100\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": true,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"1FFF0FFF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.1-1-2: equal lines but points in reverse sequence [dim(1){A.L.Int.SP-EP = B.L.Int.EP-SP}]\",\n      \"id\": \"04-008\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (40 40, 100 100)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              40\n            ],\n            [\n              100,\n              100\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (100 100, 40 40)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              100,\n              100\n            ],\n            [\n              40,\n              40\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": true,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"1FFF0FFF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.1-2-1: dim(1){A.L.Int.SP-EP = B.L.Ext}\",\n      \"id\": \"04-009\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (40 40, 120 120)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              40\n            ],\n            [\n              120,\n              120\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (40 120, 120 160)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              120\n            ],\n            [\n              120,\n              160\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": true,\n        \"intersects\": false,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF1FF0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.1-5-1: line A containing line B [dim(1){A.L.Int.SP-EP = B.L.Int.SP-EP}]\",\n      \"id\": \"04-010\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (20 20, 180 180)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              20\n            ],\n            [\n              180,\n              180\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (20 20, 180 180)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              20\n            ],\n            [\n              180,\n              180\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": true,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"1FFF0FFF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.1-5-2: line B is part of line A [dim(1){A.L.Int.SP-NV) = B.L.Int.SP-EP}]\",\n      \"id\": \"04-011\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (20 20, 180 180)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              20\n            ],\n            [\n              180,\n              180\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (20 20, 110 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              20\n            ],\n            [\n              110,\n              110\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"101F00FF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.1-5-3: Line B is part of line A (in the middle portion) [dim(1){A.L.Int.NV-NV = B.L.Int.SP-EP}]\",\n      \"id\": \"04-012\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (20 20, 180 180)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              20\n            ],\n            [\n              180,\n              180\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (50 50, 140 140)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              50,\n              50\n            ],\n            [\n              140,\n              140\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"101FF0FF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.1-6-1: start portions of two lines overlapping [dim(1){A.L.Int.SP-NV = B.L.Int.SP-NV]\",\n      \"id\": \"04-013\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (180 180, 40 40)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              180,\n              180\n            ],\n            [\n              40,\n              40\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (120 120, 260 260)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              120,\n              120\n            ],\n            [\n              260,\n              260\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"1010F0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.1-6-2: end portions of two lines overlapping [dim(1){A.L.Int.NV-EP = B.L.Int.NV-EP]\",\n      \"id\": \"04-014\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (40 40, 180 180)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              40\n            ],\n            [\n              180,\n              180\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (260 260, 120 120)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              260,\n              260\n            ],\n            [\n              120,\n              120\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"1010F0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.1-6-3: end portion of line A overlapping the start portion of line B [dim(1){A.L.Int.NV-EP = B.L.Int.SP-NV]\",\n      \"id\": \"04-015\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (40 40, 180 180)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              40\n            ],\n            [\n              180,\n              180\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (120 120, 260 260)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              120,\n              120\n            ],\n            [\n              260,\n              260\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"1010F0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-3-1: two LineStrings touching at start points [dim(0){A.L.Bdy.SP = B.L.Bdy.SP}]\",\n      \"id\": \"04-016\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (40 40, 100 100, 200 120, 80 240)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              40\n            ],\n            [\n              100,\n              100\n            ],\n            [\n              200,\n              120\n            ],\n            [\n              80,\n              240\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (40 40, 20 100, 40 160, 20 200)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              40\n            ],\n            [\n              20,\n              100\n            ],\n            [\n              40,\n              160\n            ],\n            [\n              20,\n              200\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF1F00102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-3-2: start point of LineStrings A touching the end point of LineString B [dim(0){A.L.Bdy.SP = B.L.Bdy.EP}]\",\n      \"id\": \"04-017\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (40 40, 100 100, 200 120, 80 240)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              40\n            ],\n            [\n              100,\n              100\n            ],\n            [\n              200,\n              120\n            ],\n            [\n              80,\n              240\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (20 200, 40 160, 20 100, 40 40)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              200\n            ],\n            [\n              40,\n              160\n            ],\n            [\n              20,\n              100\n            ],\n            [\n              40,\n              40\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF1F00102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-3-3: two LineStrings touching at end points [dim(0){A.L.Bdy.EP = B.L.Bdy.EP}]\",\n      \"id\": \"04-018\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (80 240, 200 120, 100 100, 40 40)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              80,\n              240\n            ],\n            [\n              200,\n              120\n            ],\n            [\n              100,\n              100\n            ],\n            [\n              40,\n              40\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (20 200, 40 160, 20 100, 40 40)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              200\n            ],\n            [\n              40,\n              160\n            ],\n            [\n              20,\n              100\n            ],\n            [\n              40,\n              40\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF1F00102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-3-4: both the start and end points of LineString A touching the interior of LineString B at two vertices [dim(0){A.L.Bdy.SP = B.L.Int.V}, dim(0){A.L.Bdy.EP = B.L.Int.V}]\",\n      \"id\": \"04-019\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (60 60, 60 230, 140 230, 250 160)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              60,\n              60\n            ],\n            [\n              60,\n              230\n            ],\n            [\n              140,\n              230\n            ],\n            [\n              250,\n              160\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (20 20, 60 60, 250 160, 310 230)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              20\n            ],\n            [\n              60,\n              60\n            ],\n            [\n              250,\n              160\n            ],\n            [\n              310,\n              230\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF10FF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-3-5: both the start and end points of LineString A touching the interior of LineString B at two non-vertices [dim(0){A.L.Bdy.SP = B.L.Int.NV}, dim(0){A.L.Bdy.EP = B.L.Int.NV}]\",\n      \"id\": \"04-020\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (60 60, 60 230, 140 230, 250 160)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              60,\n              60\n            ],\n            [\n              60,\n              230\n            ],\n            [\n              140,\n              230\n            ],\n            [\n              250,\n              160\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (20 20, 110 110, 200 110, 320 230)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              20\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              200,\n              110\n            ],\n            [\n              320,\n              230\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF10FF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-3-6: the start and end points of two LineStrings touching each other [dim(0){A.L.Bdy.SP = B.L.Bdy.SP}, dim(0){A.L.Bdy.EP = B.L.Bdy.EP}]\",\n      \"id\": \"04-021\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (60 110, 60 250, 360 210)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              60,\n              110\n            ],\n            [\n              60,\n              250\n            ],\n            [\n              360,\n              210\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (60 110, 110 160, 250 160, 310 160, 360 210)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              60,\n              110\n            ],\n            [\n              110,\n              160\n            ],\n            [\n              250,\n              160\n            ],\n            [\n              310,\n              160\n            ],\n            [\n              360,\n              210\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF1F0F1F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-3-7: the start and end points of two LineStrings touching each other [dim(0){A.L.Bdy.SP = B.L.Bdy.EP}, dim(0){A.L.Bdy.EP = B.L.Bdy.SP}]\",\n      \"id\": \"04-022\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (60 110, 60 250, 360 210)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              60,\n              110\n            ],\n            [\n              60,\n              250\n            ],\n            [\n              360,\n              210\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (360 210, 310 160, 110 160, 60 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              360,\n              210\n            ],\n            [\n              310,\n              160\n            ],\n            [\n              110,\n              160\n            ],\n            [\n              60,\n              110\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF1F0F1F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-3-8: start point of LineString B touching LineString A at a non-vertex [dim(0){A.L.Int.NV = B.L.Bdy.SP}]\",\n      \"id\": \"04-023\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (40 40, 100 100, 200 120, 80 240)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              40\n            ],\n            [\n              100,\n              100\n            ],\n            [\n              200,\n              120\n            ],\n            [\n              80,\n              240\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (160 160, 240 240)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              160,\n              160\n            ],\n            [\n              240,\n              240\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F01FF0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-3-9: end point of LineString B touching LineString A at a non-vertex [dim(0){A.L.Int.NV = B.L.Bdy.EP}]\",\n      \"id\": \"04-024\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (40 40, 100 100, 200 120, 80 240)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              40\n            ],\n            [\n              100,\n              100\n            ],\n            [\n              200,\n              120\n            ],\n            [\n              80,\n              240\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (240 240, 160 160)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              240,\n              240\n            ],\n            [\n              160,\n              160\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F01FF0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-3-10: both the start and end points of LineString B touching the interior of LineString A at two non-vertices [dim(0){A.L.Int.NV = B.L.Bdy.SP}, dim(0){A.L.Int.NV = B.L.Bdy.EP}]\",\n      \"id\": \"04-025\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (60 60, 60 230, 140 230, 250 160)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              60,\n              60\n            ],\n            [\n              60,\n              230\n            ],\n            [\n              140,\n              230\n            ],\n            [\n              250,\n              160\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (60 150, 110 100, 170 100, 110 230)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              60,\n              150\n            ],\n            [\n              110,\n              100\n            ],\n            [\n              170,\n              100\n            ],\n            [\n              110,\n              230\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F01FF01F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-3-11: the start point of LineString B touching the interior of LineString A at a non-vertex and the end point of LineString A touching the interior of LineString B at a vertex [dim(0){A.L.Int.NV = B.L.Bdy.SP}, dim(0){A.L.Bdy.EP = B.L.Int.V}]\",\n      \"id\": \"04-026\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (60 60, 60 230, 140 230, 250 160)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              60,\n              60\n            ],\n            [\n              60,\n              230\n            ],\n            [\n              140,\n              230\n            ],\n            [\n              250,\n              160\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (60 110, 110 160, 250 160, 310 160, 360 210)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              60,\n              110\n            ],\n            [\n              110,\n              160\n            ],\n            [\n              250,\n              160\n            ],\n            [\n              310,\n              160\n            ],\n            [\n              360,\n              210\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F010F0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-3-12: start point of LineString B touching LineString A at a vertex [dim(0){A.L.Int.V = B.L.Bdy.SP}]\",\n      \"id\": \"04-027\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (40 40, 100 100, 200 120, 80 240)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              40\n            ],\n            [\n              100,\n              100\n            ],\n            [\n              200,\n              120\n            ],\n            [\n              80,\n              240\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (200 120, 200 190, 150 240, 200 240)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              200,\n              120\n            ],\n            [\n              200,\n              190\n            ],\n            [\n              150,\n              240\n            ],\n            [\n              200,\n              240\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F01FF0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-3-13: end point of LineString B touching LineString A at a vertex [dim(0){A.L.Int.V = B.L.Bdy.EP}]\",\n      \"id\": \"04-028\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (40 40, 100 100, 200 120, 80 240)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              40\n            ],\n            [\n              100,\n              100\n            ],\n            [\n              200,\n              120\n            ],\n            [\n              80,\n              240\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (200 240, 150 240, 200 200, 200 120)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              200,\n              240\n            ],\n            [\n              150,\n              240\n            ],\n            [\n              200,\n              200\n            ],\n            [\n              200,\n              120\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F01FF0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-3-14: both the start and end points of LineString B touching the interior of LineString A at two vertices [dim(0){A.L.Int.V = B.L.Bdy.SP}, dim(0){A.L.Int.V = B.L.Bdy.EP}]\",\n      \"id\": \"04-029\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (60 60, 60 230, 140 230, 250 160)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              60,\n              60\n            ],\n            [\n              60,\n              230\n            ],\n            [\n              140,\n              230\n            ],\n            [\n              250,\n              160\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (60 230, 80 140, 120 140, 140 230)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              60,\n              230\n            ],\n            [\n              80,\n              140\n            ],\n            [\n              120,\n              140\n            ],\n            [\n              140,\n              230\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F01FF01F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-4-1: two LineStrings crossing at two points [dim(0){A.L.Bdy.SP = B.L.Bdy.SP}, dim(0){A.L.Int.V = B.L.Int.V}]\",\n      \"id\": \"04-030\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (60 110, 200 110, 250 160, 300 210)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              60,\n              110\n            ],\n            [\n              200,\n              110\n            ],\n            [\n              250,\n              160\n            ],\n            [\n              300,\n              210\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (60 110, 110 160, 250 160, 310 160, 360 210)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              60,\n              110\n            ],\n            [\n              110,\n              160\n            ],\n            [\n              250,\n              160\n            ],\n            [\n              310,\n              160\n            ],\n            [\n              360,\n              210\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F1F00102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-4-2: two LineStrings crossing at two points [dim(0){A.L.Bdy.SP = B.L.Int.SP}, dim(0){A.L.Int.V = B.L.Int.V}, dim(0){A.L.Bdy.EP = B.L.Int.EP}]\",\n      \"id\": \"04-031\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (60 110, 200 110, 250 160, 300 210, 360 210)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              60,\n              110\n            ],\n            [\n              200,\n              110\n            ],\n            [\n              250,\n              160\n            ],\n            [\n              300,\n              210\n            ],\n            [\n              360,\n              210\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (60 110, 110 160, 250 160, 310 160, 360 210)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              60,\n              110\n            ],\n            [\n              110,\n              160\n            ],\n            [\n              250,\n              160\n            ],\n            [\n              310,\n              160\n            ],\n            [\n              360,\n              210\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F1F0F1F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-4-3: two LineStrings crossing on one side [dim(0){A.L.Bdy.SP = B.L.Bdy.SP}, dim(0){A.L.Int.V = B.L.Int.V}]\",\n      \"id\": \"04-032\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (60 110, 220 110, 250 160, 280 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              60,\n              110\n            ],\n            [\n              220,\n              110\n            ],\n            [\n              250,\n              160\n            ],\n            [\n              280,\n              110\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (60 110, 110 160, 250 160, 310 160, 360 210)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              60,\n              110\n            ],\n            [\n              110,\n              160\n            ],\n            [\n              250,\n              160\n            ],\n            [\n              310,\n              160\n            ],\n            [\n              360,\n              210\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F1F00102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-4-4: two LineStrings crossing on one side [dim(0){A.L.Bdy.SP = B.L.Int.SP}, dim(0){A.L.Int.V = B.L.Int.NV}, dim(0){A.L.Bdy.EP = B.L.Int.EP}]\",\n      \"id\": \"04-033\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (60 110, 150 110, 200 160, 250 110, 360 110, 360 210)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              60,\n              110\n            ],\n            [\n              150,\n              110\n            ],\n            [\n              200,\n              160\n            ],\n            [\n              250,\n              110\n            ],\n            [\n              360,\n              110\n            ],\n            [\n              360,\n              210\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (60 110, 110 160, 250 160, 310 160, 360 210)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              60,\n              110\n            ],\n            [\n              110,\n              160\n            ],\n            [\n              250,\n              160\n            ],\n            [\n              310,\n              160\n            ],\n            [\n              360,\n              210\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F1F0F1F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-4-5: two LineStrings crossing at two points [dim(0){A.L.Bdy.SP = B.L.Int.NV}, dim(0){A.L.Int.V = B.L.Int.V}]\",\n      \"id\": \"04-034\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (130 160, 160 110, 220 110, 250 160, 250 210)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              130,\n              160\n            ],\n            [\n              160,\n              110\n            ],\n            [\n              220,\n              110\n            ],\n            [\n              250,\n              160\n            ],\n            [\n              250,\n              210\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (60 110, 110 160, 250 160, 310 160, 360 210)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              60,\n              110\n            ],\n            [\n              110,\n              160\n            ],\n            [\n              250,\n              160\n            ],\n            [\n              310,\n              160\n            ],\n            [\n              360,\n              210\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F10F0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-4-6: two LineStrings crossing at two points [dim(0){A.L.Bdy.SP = B.L.Int.NV}, dim(0){A.L.Int.NV = B.L.Int.NV}]\",\n      \"id\": \"04-035\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (130 160, 160 110, 190 110, 230 210)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              130,\n              160\n            ],\n            [\n              160,\n              110\n            ],\n            [\n              190,\n              110\n            ],\n            [\n              230,\n              210\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (60 110, 110 160, 250 160, 310 160, 360 210)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              60,\n              110\n            ],\n            [\n              110,\n              160\n            ],\n            [\n              250,\n              160\n            ],\n            [\n              310,\n              160\n            ],\n            [\n              360,\n              210\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F10F0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-4-7: two LineStrings crossing at two points [dim(0){A.L.Bdy.SP = B.L.Int.NV}, dim(0){A.L.Int.V = B.L.Int.NV}, dim(0){A.L.Bdy.SP = B.L.Bdy.EP}]\",\n      \"id\": \"04-036\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (130 160, 160 110, 200 110, 230 160, 260 210, 360 210)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              130,\n              160\n            ],\n            [\n              160,\n              110\n            ],\n            [\n              200,\n              110\n            ],\n            [\n              230,\n              160\n            ],\n            [\n              260,\n              210\n            ],\n            [\n              360,\n              210\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (60 110, 110 160, 250 160, 310 160, 360 210)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              60,\n              110\n            ],\n            [\n              110,\n              160\n            ],\n            [\n              250,\n              160\n            ],\n            [\n              310,\n              160\n            ],\n            [\n              360,\n              210\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F100F102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-4-8: two LineStrings crossing at two points [dim(0){A.L.Bdy.SP = B.L.Int.NV}, dim(0){A.L.Int.V = B.L.Int.NV}, dim(0){A.L.Int.V = B.L.Bdy.EP}]\",\n      \"id\": \"04-037\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (130 160, 160 110, 200 110, 230 160, 260 210, 360 210, 380 210)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              130,\n              160\n            ],\n            [\n              160,\n              110\n            ],\n            [\n              200,\n              110\n            ],\n            [\n              230,\n              160\n            ],\n            [\n              260,\n              210\n            ],\n            [\n              360,\n              210\n            ],\n            [\n              380,\n              210\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (60 110, 110 160, 250 160, 310 160, 360 210)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              60,\n              110\n            ],\n            [\n              110,\n              160\n            ],\n            [\n              250,\n              160\n            ],\n            [\n              310,\n              160\n            ],\n            [\n              360,\n              210\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0010F0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-4-9: two LineStrings crossing at three points [dim(0){A.L.Bdy.SP = B.L.Int.NV}, dim(0){A.L.Int.V = B.L.Int.NV}, dim(0){A.L.Int.NV = B.L.Bdy.EP}]\",\n      \"id\": \"04-038\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (130 160, 160 110, 200 110, 230 160, 260 210, 380 210)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              130,\n              160\n            ],\n            [\n              160,\n              110\n            ],\n            [\n              200,\n              110\n            ],\n            [\n              230,\n              160\n            ],\n            [\n              260,\n              210\n            ],\n            [\n              380,\n              210\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (60 110, 110 160, 250 160, 310 160, 360 210)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              60,\n              110\n            ],\n            [\n              110,\n              160\n            ],\n            [\n              250,\n              160\n            ],\n            [\n              310,\n              160\n            ],\n            [\n              360,\n              210\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0010F0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-4-10: two LineStrings crossing at two points [dim(0){A.L.Bdy.SP = B.L.Int.V}, dim(0){A.L.Int.V = B.L.Int.V}]\",\n      \"id\": \"04-039\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (110 160, 160 110, 200 110, 250 160, 250 210)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              160\n            ],\n            [\n              160,\n              110\n            ],\n            [\n              200,\n              110\n            ],\n            [\n              250,\n              160\n            ],\n            [\n              250,\n              210\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (60 110, 110 160, 250 160, 310 160, 360 210)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              60,\n              110\n            ],\n            [\n              110,\n              160\n            ],\n            [\n              250,\n              160\n            ],\n            [\n              310,\n              160\n            ],\n            [\n              360,\n              210\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F10F0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-4-11: two LineStrings crossing on one side [dim(0){A.L.Bdy.SP = B.L.Int.V}, dim(0){A.L.Int.V = B.L.Int.V}]\",\n      \"id\": \"04-040\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (110 160, 180 110, 250 160, 320 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              160\n            ],\n            [\n              180,\n              110\n            ],\n            [\n              250,\n              160\n            ],\n            [\n              320,\n              110\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (60 110, 110 160, 250 160, 310 160, 360 210)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              60,\n              110\n            ],\n            [\n              110,\n              160\n            ],\n            [\n              250,\n              160\n            ],\n            [\n              310,\n              160\n            ],\n            [\n              360,\n              210\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F10F0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-4-12: two LineStrings crossing on one side [dim(0){A.L.Bdy.SP = B.L.Int.NV}, dim(0){A.L.Int.V = B.L.Int.NV}]\",\n      \"id\": \"04-041\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (140 160, 180 80, 220 160, 250 80)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              140,\n              160\n            ],\n            [\n              180,\n              80\n            ],\n            [\n              220,\n              160\n            ],\n            [\n              250,\n              80\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (60 110, 110 160, 250 160, 310 160, 360 210)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              60,\n              110\n            ],\n            [\n              110,\n              160\n            ],\n            [\n              250,\n              160\n            ],\n            [\n              310,\n              160\n            ],\n            [\n              360,\n              210\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F10F0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-4-13: two LineStrings crossing at a vertex for one of the LineStrings [dim(0){A.L.Int.V = B.L.Int.NV}]\",\n      \"id\": \"04-042\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (40 40, 100 100, 200 120, 130 190)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              40\n            ],\n            [\n              100,\n              100\n            ],\n            [\n              200,\n              120\n            ],\n            [\n              130,\n              190\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (20 130, 70 130, 160 40)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              130\n            ],\n            [\n              70,\n              130\n            ],\n            [\n              160,\n              40\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F1FF0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-4-14: two LineStrings crossing at non-vertices for both of the LineStrings [dim(0){A.L.Int.NV = B.L.Int.NV}]\",\n      \"id\": \"04-043\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (40 40, 100 100, 200 120, 130 190)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              40\n            ],\n            [\n              100,\n              100\n            ],\n            [\n              200,\n              120\n            ],\n            [\n              130,\n              190\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (40 160, 40 100, 110 40, 170 40)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              160\n            ],\n            [\n              40,\n              100\n            ],\n            [\n              110,\n              40\n            ],\n            [\n              170,\n              40\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F1FF0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-4-15: two LineStrings crossing on one side [dim(0){A.L.Int.V = B.L.Int.NV}, dim(0){A.L.Int.V = B.L.Int.NV}]\",\n      \"id\": \"04-044\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (130 110, 180 160, 230 110, 280 160, 330 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              130,\n              110\n            ],\n            [\n              180,\n              160\n            ],\n            [\n              230,\n              110\n            ],\n            [\n              280,\n              160\n            ],\n            [\n              330,\n              110\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (60 110, 110 160, 250 160, 310 160, 360 210)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              60,\n              110\n            ],\n            [\n              110,\n              160\n            ],\n            [\n              250,\n              160\n            ],\n            [\n              310,\n              160\n            ],\n            [\n              360,\n              210\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F1FF0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-4-16: two LineStrings crossing at vertices for both LineString [dim(0){A.L.Int.V = B.L.Int.V}]\",\n      \"id\": \"04-045\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (40 40, 100 100, 200 120, 130 190)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              40\n            ],\n            [\n              100,\n              100\n            ],\n            [\n              200,\n              120\n            ],\n            [\n              130,\n              190\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (30 140, 80 140, 100 100, 200 30)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              30,\n              140\n            ],\n            [\n              80,\n              140\n            ],\n            [\n              100,\n              100\n            ],\n            [\n              200,\n              30\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F1FF0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-4-17: two LineStrings crossing on one side [dim(0){A.L.Int.V = B.L.Int.V}, dim(0){A.L.Int.V = B.L.Int.V}]\",\n      \"id\": \"04-046\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (110 110, 110 160, 180 110, 250 160, 250 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              110\n            ],\n            [\n              110,\n              160\n            ],\n            [\n              180,\n              110\n            ],\n            [\n              250,\n              160\n            ],\n            [\n              250,\n              110\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (60 110, 110 160, 250 160, 310 160, 360 210)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              60,\n              110\n            ],\n            [\n              110,\n              160\n            ],\n            [\n              250,\n              160\n            ],\n            [\n              310,\n              160\n            ],\n            [\n              360,\n              210\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F1FF0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-4-18: multiple crossings [dim(0){A.L.Int.V = B.L.Int.V}, dim(0){A.L.Int.NV = B.L.Int.NV}]\",\n      \"id\": \"04-047\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (20 20, 80 80, 160 80, 240 80, 300 140)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              20\n            ],\n            [\n              80,\n              80\n            ],\n            [\n              160,\n              80\n            ],\n            [\n              240,\n              80\n            ],\n            [\n              300,\n              140\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (20 60, 60 60, 60 140, 80 80, 100 20, 140 140, 180 20, 200 80, 220 20, 240 80, 300 80, 270 110, 200 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              60\n            ],\n            [\n              60,\n              60\n            ],\n            [\n              60,\n              140\n            ],\n            [\n              80,\n              80\n            ],\n            [\n              100,\n              20\n            ],\n            [\n              140,\n              140\n            ],\n            [\n              180,\n              20\n            ],\n            [\n              200,\n              80\n            ],\n            [\n              220,\n              20\n            ],\n            [\n              240,\n              80\n            ],\n            [\n              300,\n              80\n            ],\n            [\n              270,\n              110\n            ],\n            [\n              200,\n              110\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F1FF0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-4-19: spiky LineStrings with multiple crossing [dim(0){A.L.Int.V = B.L.Int.V}]\",\n      \"id\": \"04-048\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (20 20, 230 20, 20 30, 170 30, 20 40, 230 40, 20 50, 230 60, 60 60, 230 70, 20 70, 180 80, 60 80, 230 90, 20 90, 230 100, 30 100, 210 110, 20 110, 80 120, 20 130, 170 130, 90 120, 230 130, 170 140, 230 140, 80 150, 160 140, 20 140, 70 150, 20 150, 230 160, 80 160, 230 170, 20 160, 180 170, 20 170, 230 180, 20 180, 40 190, 230 190, 20 200, 230 200)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              20\n            ],\n            [\n              230,\n              20\n            ],\n            [\n              20,\n              30\n            ],\n            [\n              170,\n              30\n            ],\n            [\n              20,\n              40\n            ],\n            [\n              230,\n              40\n            ],\n            [\n              20,\n              50\n            ],\n            [\n              230,\n              60\n            ],\n            [\n              60,\n              60\n            ],\n            [\n              230,\n              70\n            ],\n            [\n              20,\n              70\n            ],\n            [\n              180,\n              80\n            ],\n            [\n              60,\n              80\n            ],\n            [\n              230,\n              90\n            ],\n            [\n              20,\n              90\n            ],\n            [\n              230,\n              100\n            ],\n            [\n              30,\n              100\n            ],\n            [\n              210,\n              110\n            ],\n            [\n              20,\n              110\n            ],\n            [\n              80,\n              120\n            ],\n            [\n              20,\n              130\n            ],\n            [\n              170,\n              130\n            ],\n            [\n              90,\n              120\n            ],\n            [\n              230,\n              130\n            ],\n            [\n              170,\n              140\n            ],\n            [\n              230,\n              140\n            ],\n            [\n              80,\n              150\n            ],\n            [\n              160,\n              140\n            ],\n            [\n              20,\n              140\n            ],\n            [\n              70,\n              150\n            ],\n            [\n              20,\n              150\n            ],\n            [\n              230,\n              160\n            ],\n            [\n              80,\n              160\n            ],\n            [\n              230,\n              170\n            ],\n            [\n              20,\n              160\n            ],\n            [\n              180,\n              170\n            ],\n            [\n              20,\n              170\n            ],\n            [\n              230,\n              180\n            ],\n            [\n              20,\n              180\n            ],\n            [\n              40,\n              190\n            ],\n            [\n              230,\n              190\n            ],\n            [\n              20,\n              200\n            ],\n            [\n              230,\n              200\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (30 210, 30 60, 40 210, 40 30, 50 190, 50 20, 60 160, 60 50, 70 220, 70 50, 80 20, 80 210, 90 50, 90 150, 100 30, 100 210, 110 20, 110 190, 120 50, 120 180, 130 210, 120 20, 140 210, 130 50, 150 210, 130 20, 160 210, 140 30, 170 210, 150 20, 180 210, 160 20, 190 210, 180 80, 170 50, 170 20, 180 70, 180 20, 190 190, 190 30, 200 210, 200 30, 210 210, 210 20, 220 150, 220 20)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              30,\n              210\n            ],\n            [\n              30,\n              60\n            ],\n            [\n              40,\n              210\n            ],\n            [\n              40,\n              30\n            ],\n            [\n              50,\n              190\n            ],\n            [\n              50,\n              20\n            ],\n            [\n              60,\n              160\n            ],\n            [\n              60,\n              50\n            ],\n            [\n              70,\n              220\n            ],\n            [\n              70,\n              50\n            ],\n            [\n              80,\n              20\n            ],\n            [\n              80,\n              210\n            ],\n            [\n              90,\n              50\n            ],\n            [\n              90,\n              150\n            ],\n            [\n              100,\n              30\n            ],\n            [\n              100,\n              210\n            ],\n            [\n              110,\n              20\n            ],\n            [\n              110,\n              190\n            ],\n            [\n              120,\n              50\n            ],\n            [\n              120,\n              180\n            ],\n            [\n              130,\n              210\n            ],\n            [\n              120,\n              20\n            ],\n            [\n              140,\n              210\n            ],\n            [\n              130,\n              50\n            ],\n            [\n              150,\n              210\n            ],\n            [\n              130,\n              20\n            ],\n            [\n              160,\n              210\n            ],\n            [\n              140,\n              30\n            ],\n            [\n              170,\n              210\n            ],\n            [\n              150,\n              20\n            ],\n            [\n              180,\n              210\n            ],\n            [\n              160,\n              20\n            ],\n            [\n              190,\n              210\n            ],\n            [\n              180,\n              80\n            ],\n            [\n              170,\n              50\n            ],\n            [\n              170,\n              20\n            ],\n            [\n              180,\n              70\n            ],\n            [\n              180,\n              20\n            ],\n            [\n              190,\n              190\n            ],\n            [\n              190,\n              30\n            ],\n            [\n              200,\n              210\n            ],\n            [\n              200,\n              30\n            ],\n            [\n              210,\n              210\n            ],\n            [\n              210,\n              20\n            ],\n            [\n              220,\n              150\n            ],\n            [\n              220,\n              20\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"001FF0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-1-1: two equal LineStrings with equal pointwise [dim(1){A.L.Int.SP-EP = B.L.Int.SP-EP}]\",\n      \"id\": \"04-049\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (40 40, 100 100, 200 120, 80 240)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              40\n            ],\n            [\n              100,\n              100\n            ],\n            [\n              200,\n              120\n            ],\n            [\n              80,\n              240\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (40 40, 100 100, 200 120, 80 240)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              40\n            ],\n            [\n              100,\n              100\n            ],\n            [\n              200,\n              120\n            ],\n            [\n              80,\n              240\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": true,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"1FFF0FFF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-1-2: two equal LineStrings with points in reverse sequence [dim(1){A.L.Int.SP-EP = B.L.Int.EP-SP}]\",\n      \"id\": \"04-050\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (40 40, 100 100, 200 120, 80 240)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              40\n            ],\n            [\n              100,\n              100\n            ],\n            [\n              200,\n              120\n            ],\n            [\n              80,\n              240\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (80 240, 200 120, 100 100, 40 40)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              80,\n              240\n            ],\n            [\n              200,\n              120\n            ],\n            [\n              100,\n              100\n            ],\n            [\n              40,\n              40\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": true,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"1FFF0FFF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-1-3: two equal LineStrings with different number of points [dim(1){A.L.Int.SP-EP = B.L.Int.EP-SP}]\",\n      \"id\": \"04-051\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (40 40, 100 100, 200 120, 80 240)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              40\n            ],\n            [\n              100,\n              100\n            ],\n            [\n              200,\n              120\n            ],\n            [\n              80,\n              240\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (80 240, 120 200, 200 120, 100 100, 80 80, 40 40)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              80,\n              240\n            ],\n            [\n              120,\n              200\n            ],\n            [\n              200,\n              120\n            ],\n            [\n              100,\n              100\n            ],\n            [\n              80,\n              80\n            ],\n            [\n              40,\n              40\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": true,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"1FFF0FFF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-2-1: disjoint [dim(1){A.L.Int.SP-EP = B.L.Ext}]\",\n      \"id\": \"04-052\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (40 40, 100 100, 200 120, 80 240)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              40\n            ],\n            [\n              100,\n              100\n            ],\n            [\n              200,\n              120\n            ],\n            [\n              80,\n              240\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (260 210, 240 130, 280 120, 260 40)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              260,\n              210\n            ],\n            [\n              240,\n              130\n            ],\n            [\n              280,\n              120\n            ],\n            [\n              260,\n              40\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": true,\n        \"intersects\": false,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF1FF0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-2-2: wrapping around but still disjoint [dim(1){A.L.Int.SP-EP = B.L.Ext}]\",\n      \"id\": \"04-053\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (100 20, 20 20, 20 160, 210 160, 210 20, 110 20, 50 120, 120 150, 200 150)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              100,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              20,\n              160\n            ],\n            [\n              210,\n              160\n            ],\n            [\n              210,\n              20\n            ],\n            [\n              110,\n              20\n            ],\n            [\n              50,\n              120\n            ],\n            [\n              120,\n              150\n            ],\n            [\n              200,\n              150\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (140 130, 100 110, 120 60, 170 60)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              140,\n              130\n            ],\n            [\n              100,\n              110\n            ],\n            [\n              120,\n              60\n            ],\n            [\n              170,\n              60\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": true,\n        \"intersects\": false,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF1FF0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-5-1: LineString A containing LineString B, same pointwise [dim(1){A.L.Int.SP-EP = B.L.Int.SP-EP}]\",\n      \"id\": \"04-054\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (60 110, 110 160, 250 160, 310 160, 360 210)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              60,\n              110\n            ],\n            [\n              110,\n              160\n            ],\n            [\n              250,\n              160\n            ],\n            [\n              310,\n              160\n            ],\n            [\n              360,\n              210\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (60 110, 110 160, 250 160, 310 160, 360 210)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              60,\n              110\n            ],\n            [\n              110,\n              160\n            ],\n            [\n              250,\n              160\n            ],\n            [\n              310,\n              160\n            ],\n            [\n              360,\n              210\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": true,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"1FFF0FFF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-5-2: LineString A containing LineString B, LineString A with less points [dim(1){A.L.Int.SP-V = B.L.Int.SP-EP}]\",\n      \"id\": \"04-055\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (60 110, 110 160, 310 160, 360 210)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              60,\n              110\n            ],\n            [\n              110,\n              160\n            ],\n            [\n              310,\n              160\n            ],\n            [\n              360,\n              210\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (60 110, 110 160, 250 160, 310 160, 360 210)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              60,\n              110\n            ],\n            [\n              110,\n              160\n            ],\n            [\n              250,\n              160\n            ],\n            [\n              310,\n              160\n            ],\n            [\n              360,\n              210\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": true,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"1FFF0FFF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-5-3: LineString A containing LineString B [dim(1){A.L.Int.SP-V = B.L.Int.SP-EP}]\",\n      \"id\": \"04-056\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (60 110, 110 160, 250 160, 310 160, 360 210)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              60,\n              110\n            ],\n            [\n              110,\n              160\n            ],\n            [\n              250,\n              160\n            ],\n            [\n              310,\n              160\n            ],\n            [\n              360,\n              210\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (60 110, 110 160, 250 160)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              60,\n              110\n            ],\n            [\n              110,\n              160\n            ],\n            [\n              250,\n              160\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"101F00FF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-5-4: LineString A containing LineString B [dim(1){A.L.Int.NV-NV = B.L.Int.SP-EP}]\",\n      \"id\": \"04-057\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (60 110, 110 160, 250 160, 310 160, 360 210)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              60,\n              110\n            ],\n            [\n              110,\n              160\n            ],\n            [\n              250,\n              160\n            ],\n            [\n              310,\n              160\n            ],\n            [\n              360,\n              210\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (110 160, 310 160, 340 190)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              160\n            ],\n            [\n              310,\n              160\n            ],\n            [\n              340,\n              190\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"101FF0FF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-5-5: LineString A containing LineString B [dim(1){A.L.Int.V-NV = B.L.Int.SP-EP}]\",\n      \"id\": \"04-058\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (60 110, 110 160, 250 160, 310 160, 360 210)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              60,\n              110\n            ],\n            [\n              110,\n              160\n            ],\n            [\n              250,\n              160\n            ],\n            [\n              310,\n              160\n            ],\n            [\n              360,\n              210\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (140 160, 250 160, 310 160, 340 190)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              140,\n              160\n            ],\n            [\n              250,\n              160\n            ],\n            [\n              310,\n              160\n            ],\n            [\n              340,\n              190\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"101FF0FF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-5-6: LineString A containing LineString B [dim(1){A.L.Int.V-V = B.L.Int.SP-EP}]\",\n      \"id\": \"04-059\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (60 110, 110 160, 250 160, 310 160, 360 210)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              60,\n              110\n            ],\n            [\n              110,\n              160\n            ],\n            [\n              250,\n              160\n            ],\n            [\n              310,\n              160\n            ],\n            [\n              360,\n              210\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (110 160, 250 160, 310 160)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              160\n            ],\n            [\n              250,\n              160\n            ],\n            [\n              310,\n              160\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"101FF0FF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-6-1: start portions of two LineStrings overlapping [dim(1){A.L.Int.SP-V = B.L.Int.SP-V}]\",\n      \"id\": \"04-060\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (40 40, 100 100, 200 120, 80 240)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              40\n            ],\n            [\n              100,\n              100\n            ],\n            [\n              200,\n              120\n            ],\n            [\n              80,\n              240\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (200 120, 100 100, 40 40, 140 80, 200 40)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              200,\n              120\n            ],\n            [\n              100,\n              100\n            ],\n            [\n              40,\n              40\n            ],\n            [\n              140,\n              80\n            ],\n            [\n              200,\n              40\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"1010F0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-6-2: start portion of LineString A overlapping end portion of LineString B, intersecting at the middle of LineString A [dim(1){A.L.Int.SP-V = B.L.Int.V-EP}]\",\n      \"id\": \"04-061\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (40 40, 100 100, 200 120, 80 240)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              40\n            ],\n            [\n              100,\n              100\n            ],\n            [\n              200,\n              120\n            ],\n            [\n              80,\n              240\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (280 240, 240 140, 200 120, 100 100, 40 40)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              280,\n              240\n            ],\n            [\n              240,\n              140\n            ],\n            [\n              200,\n              120\n            ],\n            [\n              100,\n              100\n            ],\n            [\n              40,\n              40\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"1F1F00102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-6-3: start portion of LineString A overlapping end portion of LineString B, intersecting at the middle of LineString A [dim(1){A.L.Int.SP-V = B.L.Int.NV-EP}]\",\n      \"id\": \"04-062\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (40 40, 100 100, 200 120, 80 240)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              40\n            ],\n            [\n              100,\n              100\n            ],\n            [\n              200,\n              120\n            ],\n            [\n              80,\n              240\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (80 190, 140 140, 40 40)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              80,\n              190\n            ],\n            [\n              140,\n              140\n            ],\n            [\n              40,\n              40\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"1F1F00102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-6-4: end portions of two LineStrings overlapping [dim(1){A.L.Int.NV-EP = B.L.Int.V-EP}]\",\n      \"id\": \"04-063\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (40 40, 100 100, 200 120, 80 240)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              40\n            ],\n            [\n              100,\n              100\n            ],\n            [\n              200,\n              120\n            ],\n            [\n              80,\n              240\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (240 200, 200 260, 80 240, 140 180)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              240,\n              200\n            ],\n            [\n              200,\n              260\n            ],\n            [\n              80,\n              240\n            ],\n            [\n              140,\n              180\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"1010F0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-6-5: end portion of LineString A overlapping start portion of LineString B [dim(1){A.L.Int.NV-EP = B.L.Int.SP-V}]\",\n      \"id\": \"04-064\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (40 40, 100 100, 200 120, 80 240)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              40\n            ],\n            [\n              100,\n              100\n            ],\n            [\n              200,\n              120\n            ],\n            [\n              80,\n              240\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (140 180, 80 240, 200 260, 240 200)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              140,\n              180\n            ],\n            [\n              80,\n              240\n            ],\n            [\n              200,\n              260\n            ],\n            [\n              240,\n              200\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"1010F0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-6-6: end portion of LineString A overlapping end portion of LineString B, intersecting at the middle of LineString A [dim(1){A.L.Int.V-EP = B.L.Int.V-EP}]\",\n      \"id\": \"04-065\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (40 40, 100 100, 200 120, 80 240)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              40\n            ],\n            [\n              100,\n              100\n            ],\n            [\n              200,\n              120\n            ],\n            [\n              80,\n              240\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (280 240, 240 140, 200 120, 80 240)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              280,\n              240\n            ],\n            [\n              240,\n              140\n            ],\n            [\n              200,\n              120\n            ],\n            [\n              80,\n              240\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"1F1F00102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-6-7: middle portions of two LineStrings overlapping [dim(1){A.L.Int.V-NV = B.L.Int.NV-V}]\",\n      \"id\": \"04-066\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (20 20, 80 80, 160 80, 240 80, 300 140)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              20\n            ],\n            [\n              80,\n              80\n            ],\n            [\n              160,\n              80\n            ],\n            [\n              240,\n              80\n            ],\n            [\n              300,\n              140\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (20 80, 120 80, 200 80, 260 20)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              80\n            ],\n            [\n              120,\n              80\n            ],\n            [\n              200,\n              80\n            ],\n            [\n              260,\n              20\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"1F1FF0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-6-8: middle portion of LineString A overlapping start portion of LineString B [dim(1){A.L.Int.V-V = B.L.Int.SP-V}]\",\n      \"id\": \"04-067\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (40 40, 100 100, 200 120, 80 240)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              40\n            ],\n            [\n              100,\n              100\n            ],\n            [\n              200,\n              120\n            ],\n            [\n              80,\n              240\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (100 100, 200 120, 240 140, 280 240)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              100,\n              100\n            ],\n            [\n              200,\n              120\n            ],\n            [\n              240,\n              140\n            ],\n            [\n              280,\n              240\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"101FF0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-6-9: middle portion of LineString A overlapping end portion of LineString B [dim(1){A.L.Int.V-V = B.L.Int.V-EP}]\",\n      \"id\": \"04-068\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (40 40, 100 100, 200 120, 80 240)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              40\n            ],\n            [\n              100,\n              100\n            ],\n            [\n              200,\n              120\n            ],\n            [\n              80,\n              240\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (280 240, 240 140, 200 120, 100 100)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              280,\n              240\n            ],\n            [\n              240,\n              140\n            ],\n            [\n              200,\n              120\n            ],\n            [\n              100,\n              100\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"101FF0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-6-10: middle portions of two LineStrings overlapping [dim(1){A.L.Int.V-V = B.L.Int.V-V}]\",\n      \"id\": \"04-069\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (20 20, 80 80, 160 80, 240 80, 300 140)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              20\n            ],\n            [\n              80,\n              80\n            ],\n            [\n              160,\n              80\n            ],\n            [\n              240,\n              80\n            ],\n            [\n              300,\n              140\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (80 20, 80 80, 240 80, 300 20)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              80,\n              20\n            ],\n            [\n              80,\n              80\n            ],\n            [\n              240,\n              80\n            ],\n            [\n              300,\n              20\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"1F1FF0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/L.2-6-11: middle portions of two LineStrings overlapping, multiple intersects [dim(1){A.L.Int.V-V = B.L.Int.V-NV}, dim(1){A.L.Int.V-V = B.L.Int.V-NV}, dim(1){A.L.Int.V-V = B.L.Int.V-NV}]\",\n      \"id\": \"04-070\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (20 20, 80 80, 160 80, 240 80, 300 140)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              20\n            ],\n            [\n              80,\n              80\n            ],\n            [\n              160,\n              80\n            ],\n            [\n              240,\n              80\n            ],\n            [\n              300,\n              140\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (20 80, 80 80, 120 80, 140 140, 160 80, 200 80, 220 20, 240 80, 270 110, 300 80)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              80\n            ],\n            [\n              80,\n              80\n            ],\n            [\n              120,\n              80\n            ],\n            [\n              140,\n              140\n            ],\n            [\n              160,\n              80\n            ],\n            [\n              200,\n              80\n            ],\n            [\n              220,\n              20\n            ],\n            [\n              240,\n              80\n            ],\n            [\n              270,\n              110\n            ],\n            [\n              300,\n              80\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"1F1FF0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/LR-3-1: a LineString touching a LinearRing [dim(0){A.L.Bdy.SP = B.LR.Int.CP}]\",\n      \"id\": \"04-071\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (100 100, 20 180, 180 180)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              100,\n              100\n            ],\n            [\n              20,\n              180\n            ],\n            [\n              180,\n              180\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (100 100, 180 20, 20 20, 100 100)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              100,\n              100\n            ],\n            [\n              180,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              100,\n              100\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF10F01F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/LR-4-1: a LineString crossing a LinearRing [dim(0){A.L.Int.NV = B.LR.Int.CP}]\",\n      \"id\": \"04-072\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (20 100, 180 100, 100 180)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              100\n            ],\n            [\n              180,\n              100\n            ],\n            [\n              100,\n              180\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (100 100, 180 20, 20 20, 100 100)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              100,\n              100\n            ],\n            [\n              180,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              100,\n              100\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F1FF01F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/LR-4-2: a LineString crossing a LinearRing [dim(0){A.L.Int.NV = B.LR.Int.CP}]\",\n      \"id\": \"04-073\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (100 40, 100 160, 180 160)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              100,\n              40\n            ],\n            [\n              100,\n              160\n            ],\n            [\n              180,\n              160\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (100 100, 180 20, 20 20, 100 100)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              100,\n              100\n            ],\n            [\n              180,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              100,\n              100\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F1FF01F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/LR-4-3: a LineString crossing a LinearRing [dim(0){A.L.Int.V = B.LR.Int.CP}]\",\n      \"id\": \"04-074\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (20 100, 100 100, 180 100, 100 180)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              100\n            ],\n            [\n              100,\n              100\n            ],\n            [\n              180,\n              100\n            ],\n            [\n              100,\n              180\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (100 100, 180 20, 20 20, 100 100)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              100,\n              100\n            ],\n            [\n              180,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              100,\n              100\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F1FF01F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/LR-5-1: a LineString within a LinearRing [dim(1){A.L.Int.SP-EP = B.LR.Int.SP-NV}]\",\n      \"id\": \"04-075\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (100 100, 160 40)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              100,\n              100\n            ],\n            [\n              160,\n              40\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (100 100, 180 20, 20 20, 100 100)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              100,\n              100\n            ],\n            [\n              180,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              100,\n              100\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"1FF0FF1F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/LR-5-2: a LineString within a LinearRing [dim(1){A.L.Int.SP-EP = B.LR.Int.SP-NV}]\",\n      \"id\": \"04-076\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (100 100, 180 20)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              100,\n              100\n            ],\n            [\n              180,\n              20\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (100 100, 180 20, 20 20, 100 100)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              100,\n              100\n            ],\n            [\n              180,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              100,\n              100\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"1FF0FF1F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/LR-5-3: a LineString within a LinearRing [dim(1){A.L.Int.SP-V-EP = B.LR.Int.NV-CP-NV}]\",\n      \"id\": \"04-077\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (60 60, 100 100, 140 60)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              60,\n              60\n            ],\n            [\n              100,\n              100\n            ],\n            [\n              140,\n              60\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (100 100, 180 20, 20 20, 100 100)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              100,\n              100\n            ],\n            [\n              180,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              100,\n              100\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"1FF0FF1F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/LR-6-1: a LineString crossing a LinearRing [dim(1){A.L.Int.SP-NV = B.LR.Int.SP-V}]\",\n      \"id\": \"04-078\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (100 100, 190 10, 190 100)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              100,\n              100\n            ],\n            [\n              190,\n              10\n            ],\n            [\n              190,\n              100\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (100 100, 180 20, 20 20, 100 100)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              100,\n              100\n            ],\n            [\n              180,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              100,\n              100\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"1F10F01F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/LR-6-2: a LineString crossing a LinearRing [dim(1){A.L.Int.SP-V = B.LR.Int.SP-NV}]\",\n      \"id\": \"04-079\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (100 100, 160 40, 160 100)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              100,\n              100\n            ],\n            [\n              160,\n              40\n            ],\n            [\n              160,\n              100\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (100 100, 180 20, 20 20, 100 100)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              100,\n              100\n            ],\n            [\n              180,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              100,\n              100\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"1F10F01F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/LR-6-3: a LineString crossing a LinearRing [dim(1){A.L.Int.NV-V = B.LR.Int.SP-NV}]\",\n      \"id\": \"04-080\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (60 140, 160 40, 160 140)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              60,\n              140\n            ],\n            [\n              160,\n              40\n            ],\n            [\n              160,\n              140\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (100 100, 180 20, 20 20, 100 100)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              100,\n              100\n            ],\n            [\n              180,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              100,\n              100\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"1F1FF01F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/nsL: A line's interior at a non-vertex intersecting a non-simple linestring's end point with both crossing and overlapping line segments [dim(0){A.L.Int.NV = B.nsL.Bdy.EPb}]\",\n      \"id\": \"04-081\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (20 20, 140 140)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              20\n            ],\n            [\n              140,\n              140\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (80 80, 20 80, 140 80, 80 20, 80 140)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              80,\n              80\n            ],\n            [\n              20,\n              80\n            ],\n            [\n              140,\n              80\n            ],\n            [\n              80,\n              20\n            ],\n            [\n              80,\n              140\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F01FF0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/nsL: A line's interior at a non-vertex intersecting a non-simple linestring's end point with overlapping line segments [dim(0){A.L.Int.NV = B.nsL.Bdy.EPo}]\",\n      \"id\": \"04-082\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (20 20, 140 140)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              20\n            ],\n            [\n              140,\n              140\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (80 80, 20 80, 140 80)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              80,\n              80\n            ],\n            [\n              20,\n              80\n            ],\n            [\n              140,\n              80\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F01FF0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/nsL: A line's interior at a non-vertex intersecting a non-simple linestring's end point with crossing line segments [dim(0){A.L.Int.NV = B.nsL.Bdy.EPx}]\",\n      \"id\": \"04-083\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (20 20, 140 140)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              20\n            ],\n            [\n              140,\n              140\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (80 80, 140 80, 80 20, 80 140)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              80,\n              80\n            ],\n            [\n              140,\n              80\n            ],\n            [\n              80,\n              20\n            ],\n            [\n              80,\n              140\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F01FF0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/nsL: A line's interior at a non-vertex intersecting a non-simple linestring's closing point with both crossing and overlapping line segments [dim(0){A.L.Int.NV = B.nsL.Int.CPb}]\",\n      \"id\": \"04-084\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (20 20, 140 140)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              20\n            ],\n            [\n              140,\n              140\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (80 80, 20 80, 140 80, 80 20, 80 80)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              80,\n              80\n            ],\n            [\n              20,\n              80\n            ],\n            [\n              140,\n              80\n            ],\n            [\n              80,\n              20\n            ],\n            [\n              80,\n              80\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F1FF01F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/nsL: A line's interior at a non-vertex intersecting a non-simple linestring's closing point with overlapping line segments [dim(0){A.L.Int.NV = B.nsL.Int.CPo}]\",\n      \"id\": \"04-085\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (20 20, 140 140)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              20\n            ],\n            [\n              140,\n              140\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (80 80, 20 80, 140 80, 80 80)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              80,\n              80\n            ],\n            [\n              20,\n              80\n            ],\n            [\n              140,\n              80\n            ],\n            [\n              80,\n              80\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F1FF01F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/nsL: A line's interior at a non-vertex intersecting a non-simple linestring's closing point with crossing line segments [dim(0){A.L.Int.NV = B.nsL.Int.CPx}]\",\n      \"id\": \"04-086\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (20 20, 140 140)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              20\n            ],\n            [\n              140,\n              140\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (80 80, 20 80, 20 140, 140 20, 80 20, 80 80)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              80,\n              80\n            ],\n            [\n              20,\n              80\n            ],\n            [\n              20,\n              140\n            ],\n            [\n              140,\n              20\n            ],\n            [\n              80,\n              20\n            ],\n            [\n              80,\n              80\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F1FF01F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/nsL: A line's interior at a non-vertex intersecting a non-simple linestring's interior at a non-vertex [dim(0){A.L.Int.NV = B.nsL.Int.NV}]\",\n      \"id\": \"04-087\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (20 20, 140 140)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              20\n            ],\n            [\n              140,\n              140\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (20 140, 140 20, 100 20, 100 80)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              140\n            ],\n            [\n              140,\n              20\n            ],\n            [\n              100,\n              20\n            ],\n            [\n              100,\n              80\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F1FF0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/nsL: A line's interior at a non-vertex intersecting a non-simple linestring's interior at a non-vertex with both crossing and overlapping line segments [dim(0){A.L.Int.NV = B.nsL.Int.NVb}]\",\n      \"id\": \"04-088\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (20 20, 140 140)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              20\n            ],\n            [\n              140,\n              140\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (140 80, 20 80, 120 80, 80 20, 80 140)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              140,\n              80\n            ],\n            [\n              20,\n              80\n            ],\n            [\n              120,\n              80\n            ],\n            [\n              80,\n              20\n            ],\n            [\n              80,\n              140\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F1FF0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/nsL: A line's interior at a non-vertex intersecting a non-simple linestring's interior at a non-vertex with overlapping line segments [dim(0){A.L.Int.NV = B.nsL.Int.NVo}]\",\n      \"id\": \"04-089\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (20 20, 140 140)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              20\n            ],\n            [\n              140,\n              140\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (140 80, 20 80, 140 80)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              140,\n              80\n            ],\n            [\n              20,\n              80\n            ],\n            [\n              140,\n              80\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F1FF01F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/nsL: A line's interior at a non-vertex intersecting a non-simple linestring's interior at a non-vertex with crossing line segments [dim(0){A.L.Int.NV = B.nsL.Int.NVx}]\",\n      \"id\": \"04-090\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (20 20, 140 140)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              20\n            ],\n            [\n              140,\n              140\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (140 80, 20 80, 80 140, 80 20)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              140,\n              80\n            ],\n            [\n              20,\n              80\n            ],\n            [\n              80,\n              140\n            ],\n            [\n              80,\n              20\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F1FF0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/nsL: A line's interior at a non-vertex intersecting a non-simple linestring's interior at a vertex [dim(0){A.L.Int.NV = B.nsL.Int.V}]\",\n      \"id\": \"04-091\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (20 20, 140 140)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              20\n            ],\n            [\n              140,\n              140\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (140 80, 80 80, 20 80, 50 140, 50 60)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              140,\n              80\n            ],\n            [\n              80,\n              80\n            ],\n            [\n              20,\n              80\n            ],\n            [\n              50,\n              140\n            ],\n            [\n              50,\n              60\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F1FF0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/nsL: A line's interior at a non-vertex intersecting a non-simple linestring's interior at a vertex with both crossing and overlapping line segments [dim(0){A.L.Int.NV = B.nsL.Int.Vb}]\",\n      \"id\": \"04-092\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (20 20, 140 140)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              20\n            ],\n            [\n              140,\n              140\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (140 80, 20 80, 120 80, 80 20, 80 80, 80 140)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              140,\n              80\n            ],\n            [\n              20,\n              80\n            ],\n            [\n              120,\n              80\n            ],\n            [\n              80,\n              20\n            ],\n            [\n              80,\n              80\n            ],\n            [\n              80,\n              140\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F1FF0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/nsL: A line's interior at a non-vertex intersecting a non-simple linestring's interior at a vertex with overlapping line segments [dim(0){A.L.Int.NV = B.nsL.Int.Vo}]\",\n      \"id\": \"04-093\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (20 20, 140 140)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              20\n            ],\n            [\n              140,\n              140\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (140 80, 20 80, 80 80, 140 80)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              140,\n              80\n            ],\n            [\n              20,\n              80\n            ],\n            [\n              80,\n              80\n            ],\n            [\n              140,\n              80\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F1FF01F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/nsL: A line's interior at a non-vertex intersecting a non-simple linestring's interior at a vertex with crossing line segments [dim(0){A.L.Int.NV = B.nsL.Int.Vx}]\",\n      \"id\": \"04-094\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (20 20, 140 140)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              20\n            ],\n            [\n              140,\n              140\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (140 80, 20 80, 80 140, 80 80, 80 20)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              140,\n              80\n            ],\n            [\n              20,\n              80\n            ],\n            [\n              80,\n              140\n            ],\n            [\n              80,\n              80\n            ],\n            [\n              80,\n              20\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F1FF0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/nsL.1-3-1: start point of a LineString touching the self-intersecting point of a non-simple LineString [dim(0){A.L.Bdy.SP = B.nsL.Bdy.EPx}]\",\n      \"id\": \"04-095\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (130 150, 220 150, 220 240)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              130,\n              150\n            ],\n            [\n              220,\n              150\n            ],\n            [\n              220,\n              240\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (130 240, 130 150, 220 20, 50 20, 130 150)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              130,\n              240\n            ],\n            [\n              130,\n              150\n            ],\n            [\n              220,\n              20\n            ],\n            [\n              50,\n              20\n            ],\n            [\n              130,\n              150\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF1F00102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/nsL.1-3-2: the interior of a LineString touching the self-intersecting point of a non-simple LineString [dim(0){A.L.Int.V = B.nsL.Bdy.EPx}]\",\n      \"id\": \"04-096\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (30 150, 130 150, 250 150)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              30,\n              150\n            ],\n            [\n              130,\n              150\n            ],\n            [\n              250,\n              150\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (130 240, 130 150, 220 20, 50 20, 130 150)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              130,\n              240\n            ],\n            [\n              130,\n              150\n            ],\n            [\n              220,\n              20\n            ],\n            [\n              50,\n              20\n            ],\n            [\n              130,\n              150\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F01FF0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/nsL.1-3-3: the interior of a LineString touching the self-intersecting point of a non-simple LineString [dim(0){A.L.Int.NV = B.nsL.Bdy.EPx}]\",\n      \"id\": \"04-097\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (30 150, 250 150)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              30,\n              150\n            ],\n            [\n              250,\n              150\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (130 240, 130 150, 220 20, 50 20, 130 150)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              130,\n              240\n            ],\n            [\n              130,\n              150\n            ],\n            [\n              220,\n              20\n            ],\n            [\n              50,\n              20\n            ],\n            [\n              130,\n              150\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F01FF0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/nsL.1-3-4: the interior of a LineString touching the self-intersecting point of a non-simple LineString [dim(0){A.L.Int.V = B.nsL.Bdy.EPx}]\",\n      \"id\": \"04-098\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (30 150, 130 150, 250 150)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              30,\n              150\n            ],\n            [\n              130,\n              150\n            ],\n            [\n              250,\n              150\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (130 240, 130 20, 30 20, 130 150)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              130,\n              240\n            ],\n            [\n              130,\n              20\n            ],\n            [\n              30,\n              20\n            ],\n            [\n              130,\n              150\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F01FF0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/nsL.1-4: a Line crossing a non-simple LineString at non-vertices [dim(0){A.L.Int.NV = B.nsL.Int.NV}]\",\n      \"id\": \"04-099\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (30 150, 250 150)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              30,\n              150\n            ],\n            [\n              250,\n              150\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (120 240, 120 20, 20 20, 120 170)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              120,\n              240\n            ],\n            [\n              120,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              120,\n              170\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F1FF0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"nsL.5/L-3-1: switching the geometries for case L/nsL.5-3-1 [dim(0){A.nsL.Bdy.EPx = B.L.Bdy.SP}]\",\n      \"id\": \"04-100\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (200 200, 20 20, 200 20, 110 110, 20 200, 110 200, 110 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              200,\n              200\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              20,\n              200\n            ],\n            [\n              110,\n              200\n            ],\n            [\n              110,\n              110\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (110 110, 200 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              110\n            ],\n            [\n              200,\n              110\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF1F00102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/nsL.5-3-2: the start point of a line touching the self-intersecting and self-crossing point of a non-simple LineString [dim(0){A.L.Bdy.SP = B.nsL.Bdy.EPx}]\",\n      \"id\": \"04-101\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (110 110, 200 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              110\n            ],\n            [\n              200,\n              110\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (200 200, 20 20, 200 20, 110 110, 20 200, 110 200, 110 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              200,\n              200\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              20,\n              200\n            ],\n            [\n              110,\n              200\n            ],\n            [\n              110,\n              110\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF1F00102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/nsL.5-3-3: the interior of a line touching the self-intersecting and self-crossing point of a non-simple LineString [dim(0){A.L.Int.NV = B.nsL.Bdy.EPx}]\",\n      \"id\": \"04-102\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (20 110, 200 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              110\n            ],\n            [\n              200,\n              110\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (200 200, 20 20, 200 20, 110 110, 20 200, 110 200, 110 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              200,\n              200\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              20,\n              200\n            ],\n            [\n              110,\n              200\n            ],\n            [\n              110,\n              110\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F01FF0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"nsL.5/L-3-4 touches dim(0){A.nsL.Bdy.EPx = B.L.Int.NV}\",\n      \"id\": \"04-103\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (200 200, 20 20, 200 20, 110 110, 20 200, 110 200, 110 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              200,\n              200\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              20,\n              200\n            ],\n            [\n              110,\n              200\n            ],\n            [\n              110,\n              110\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (20 110, 200 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              110\n            ],\n            [\n              200,\n              110\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF10F0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/nsL.10-6-1: the middle portion of a line overlapping from the self-intersecting to the self-crossing a non-simple LineString [dim(1){A.L.Int.V-V = B.nsL.Int.EPx-NVx}]\",\n      \"id\": \"04-104\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (90 200, 90 130, 110 110, 150 200)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              90,\n              200\n            ],\n            [\n              90,\n              130\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              150,\n              200\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (200 200, 20 20, 200 20, 20 200, 20 130, 90 130)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              200,\n              200\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              20,\n              200\n            ],\n            [\n              20,\n              130\n            ],\n            [\n              90,\n              130\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"101FF0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/nsL.10-6-2: the middle portion of a line overlapping from the self-intersecting to the self-crossing a non-simple LineString [dim(1){A.L.Int.V-V = B.nsL.Int.NVx-EPx}]\",\n      \"id\": \"04-105\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (200 110, 110 110, 90 130, 90 200)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              200,\n              110\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              90,\n              130\n            ],\n            [\n              90,\n              200\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (200 200, 20 20, 200 20, 20 200, 20 130, 90 130)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              200,\n              200\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              20,\n              200\n            ],\n            [\n              20,\n              130\n            ],\n            [\n              90,\n              130\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"101FF0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"L/mL-3-1: a line's end point touching a non-vertex with crossing line segments of a MultiLineString [dim(0){A.L.Bdy.SP = B.mL.Int.NVx]\",\n      \"id\": \"04-106\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (80 80, 150 80, 210 80)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              80,\n              80\n            ],\n            [\n              150,\n              80\n            ],\n            [\n              210,\n              80\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTILINESTRING ((20 20, 140 140),(20 140, 140 20))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                140,\n                140\n              ]\n            ],\n            [\n              [\n                20,\n                140\n              ],\n              [\n                140,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF10F0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"LR/LR-1-1: two equal LinearRings, pointwise [dim(1){A.LR.Int.SP-EP = B.LR.Int.SP-EP}, dim(0){A.LR.Int.CP = B.LR.Int.CP}]\",\n      \"id\": \"04-107\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (40 80, 160 200, 260 20, 40 80)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              80\n            ],\n            [\n              160,\n              200\n            ],\n            [\n              260,\n              20\n            ],\n            [\n              40,\n              80\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (40 80, 160 200, 260 20, 40 80)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              80\n            ],\n            [\n              160,\n              200\n            ],\n            [\n              260,\n              20\n            ],\n            [\n              40,\n              80\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": true,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"1FFFFFFF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"LR/LR-1-2: two equal LinearRings with points in reverse sequence [dim(1){A.LR.Int.SP-EP = B.LR.Int.EP-SP}, dim(0){A.LR.Int.CP = B.LR.Int.CP}]\",\n      \"id\": \"04-108\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (40 80, 160 200, 260 20, 40 80)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              80\n            ],\n            [\n              160,\n              200\n            ],\n            [\n              260,\n              20\n            ],\n            [\n              40,\n              80\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (40 80, 260 20, 160 200, 40 80)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              80\n            ],\n            [\n              260,\n              20\n            ],\n            [\n              160,\n              200\n            ],\n            [\n              40,\n              80\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": true,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"1FFFFFFF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"LR/LR-1-3: two equal LinearRings with points in different sequence [dim(1){A.LR.Int.SP-EP = B.LR.Int.SP-EP}, dim(0){A.LR.Int.CP = B.LR.Int.V}, dim(0){A.LR.Int.V = B.LR.Int.CP}]\",\n      \"id\": \"04-109\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (40 80, 160 200, 260 20, 40 80)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              80\n            ],\n            [\n              160,\n              200\n            ],\n            [\n              260,\n              20\n            ],\n            [\n              40,\n              80\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (260 20, 40 80, 160 200, 260 20)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              260,\n              20\n            ],\n            [\n              40,\n              80\n            ],\n            [\n              160,\n              200\n            ],\n            [\n              260,\n              20\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": true,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"1FFFFFFF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"LR/LR-1-4: two equal LinearRings with different number of points [dim(1){A.LR.Int.SP-EP = B.LR.Int.SP-EP}, dim(0){A.LR.Int.CP = B.LR.Int.V}, dim(0){A.LR.Int.NV = B.LR.Int.CP}]\",\n      \"id\": \"04-110\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (40 80, 160 200, 260 20, 40 80)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              80\n            ],\n            [\n              160,\n              200\n            ],\n            [\n              260,\n              20\n            ],\n            [\n              40,\n              80\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (100 140, 160 200, 260 20, 40 80, 100 140)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              100,\n              140\n            ],\n            [\n              160,\n              200\n            ],\n            [\n              260,\n              20\n            ],\n            [\n              40,\n              80\n            ],\n            [\n              100,\n              140\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": true,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"1FFFFFFF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"LR/LR-4-1: two LinearRings crossing at closing points [dim(0){A.LR.Int.CP = B.LR.Int.CP}]\",\n      \"id\": \"04-111\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (100 100, 180 20, 20 20, 100 100)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              100,\n              100\n            ],\n            [\n              180,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              100,\n              100\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (100 100, 180 180, 20 180, 100 100)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              100,\n              100\n            ],\n            [\n              180,\n              180\n            ],\n            [\n              20,\n              180\n            ],\n            [\n              100,\n              100\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F1FFF1F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"LR/LR-4-2: two LinearRings crossing at two points [dim(0){A.LR.Int.CP = B.LR.Int.CP}, dim(0){A.LR.Int.V = B.LR.Int.V},]\",\n      \"id\": \"04-112\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (40 150, 40 40, 150 40, 150 150, 40 150)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              150\n            ],\n            [\n              40,\n              40\n            ],\n            [\n              150,\n              40\n            ],\n            [\n              150,\n              150\n            ],\n            [\n              40,\n              150\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (40 150, 150 40, 170 20, 170 190, 40 150)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              150\n            ],\n            [\n              150,\n              40\n            ],\n            [\n              170,\n              20\n            ],\n            [\n              170,\n              190\n            ],\n            [\n              40,\n              150\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F1FFF1F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"LR/LR-4-3: two LinearRings crossing at the closing and a non-vertex [dim(0){A.LR.Int.CP = B.LR.Int.NV}]\",\n      \"id\": \"04-113\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (100 100, 180 20, 20 20, 100 100)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              100,\n              100\n            ],\n            [\n              180,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              100,\n              100\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (180 100, 20 100, 100 180, 180 100)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              180,\n              100\n            ],\n            [\n              20,\n              100\n            ],\n            [\n              100,\n              180\n            ],\n            [\n              180,\n              100\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F1FFF1F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"LR/LR-4-4: two LinearRings crossing at the closing and a vertex [dim(0){A.LR.Int.CP = B.LR.Int.V}]\",\n      \"id\": \"04-114\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (100 100, 180 20, 20 20, 100 100)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              100,\n              100\n            ],\n            [\n              180,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              100,\n              100\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (180 180, 100 100, 20 180, 180 180)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              180,\n              180\n            ],\n            [\n              100,\n              100\n            ],\n            [\n              20,\n              180\n            ],\n            [\n              180,\n              180\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F1FFF1F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"LR/LR-4-5: two LinearRings crossing at a vertex and a non-vertex [dim(0){A.LR.Int.V = B.LR.Int.NV}]\",\n      \"id\": \"04-115\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (20 180, 100 100, 20 20, 20 180)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              180\n            ],\n            [\n              100,\n              100\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              20,\n              180\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (100 20, 100 180, 180 100, 100 20)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              100,\n              20\n            ],\n            [\n              100,\n              180\n            ],\n            [\n              180,\n              100\n            ],\n            [\n              100,\n              20\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F1FFF1F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"LR/LR-4-6: two LinearRings crossing at two points [dim(0){A.LR.Int.V = B.LR.Int.NV}, dim(0){A.LR.Int.V = B.LR.Int.NV},]\",\n      \"id\": \"04-116\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (40 150, 40 40, 150 40, 150 150, 40 150)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              150\n            ],\n            [\n              40,\n              40\n            ],\n            [\n              150,\n              40\n            ],\n            [\n              150,\n              150\n            ],\n            [\n              40,\n              150\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (170 20, 20 170, 170 170, 170 20)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              170,\n              20\n            ],\n            [\n              20,\n              170\n            ],\n            [\n              170,\n              170\n            ],\n            [\n              170,\n              20\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F1FFF1F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"LR/LR-6-1: two LinearRings overlapping [dim(1){A.LR.Int.CP-V = B.LR.Int.CP-V}]\",\n      \"id\": \"04-117\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (40 150, 40 40, 150 40, 150 150, 40 150)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              150\n            ],\n            [\n              40,\n              40\n            ],\n            [\n              150,\n              40\n            ],\n            [\n              150,\n              150\n            ],\n            [\n              40,\n              150\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (40 150, 150 150, 90 210, 40 150)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              150\n            ],\n            [\n              150,\n              150\n            ],\n            [\n              90,\n              210\n            ],\n            [\n              40,\n              150\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"1F1FFF1F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"LR/LR-6-2: two LinearRings overlapping [dim(1){A.LR.Int.CP-V = B.LR.Int.NV-NV}]\",\n      \"id\": \"04-118\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (40 150, 40 40, 150 40, 150 150, 40 150)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              150\n            ],\n            [\n              40,\n              40\n            ],\n            [\n              150,\n              40\n            ],\n            [\n              150,\n              150\n            ],\n            [\n              40,\n              150\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (20 150, 170 150, 90 230, 20 150)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              150\n            ],\n            [\n              170,\n              150\n            ],\n            [\n              90,\n              230\n            ],\n            [\n              20,\n              150\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"1F1FFF1F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"LR/LR-6-3: two LinearRings overlapping [dim(1){A.LR.Int.(V-V-V-EP) = B.LR.Int.(NV-V-V-SP)}]\",\n      \"id\": \"04-119\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (40 150, 40 40, 150 40, 150 150, 40 150)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              150\n            ],\n            [\n              40,\n              40\n            ],\n            [\n              150,\n              40\n            ],\n            [\n              150,\n              150\n            ],\n            [\n              40,\n              150\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (40 150, 150 150, 150 40, 20 40, 20 150, 40 150)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              150\n            ],\n            [\n              150,\n              150\n            ],\n            [\n              150,\n              40\n            ],\n            [\n              20,\n              40\n            ],\n            [\n              20,\n              150\n            ],\n            [\n              40,\n              150\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"1F1FFF1F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"LR/nsL-3-1: a LinearRing touching a non-simple LineString [dim(0){A.nsL.Int.CP = B.nsL.Bdy.SPb}]\",\n      \"id\": \"04-120\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (110 110, 200 20, 20 20, 110 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              110\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              110,\n              110\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (110 110, 200 200, 110 110, 20 200, 20 110, 200 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              110\n            ],\n            [\n              200,\n              200\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              20,\n              200\n            ],\n            [\n              20,\n              110\n            ],\n            [\n              200,\n              110\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F01FFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"LR/nsL-3-1: a LinearRing touching a non-simple LineString [dim(0){A.nsL.Int.CP = B.nsL.Bdy.SPo}]\",\n      \"id\": \"04-121\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (110 110, 200 20, 20 20, 110 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              110\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              110,\n              110\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (110 110, 20 110, 200 110, 50 110, 110 170)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              110\n            ],\n            [\n              20,\n              110\n            ],\n            [\n              200,\n              110\n            ],\n            [\n              50,\n              110\n            ],\n            [\n              110,\n              170\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F01FFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"LR/nsL-3-1: a LinearRing touching a non-simple LineString [dim(0){A.nsL.Int.CP = B.nsL.Bdy.SPx}]\",\n      \"id\": \"04-122\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (110 110, 200 20, 20 20, 110 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              110\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              110,\n              110\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (110 110, 20 200, 110 200, 110 110, 200 200)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              110\n            ],\n            [\n              20,\n              200\n            ],\n            [\n              110,\n              200\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              200,\n              200\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F01FFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"LR/nsL-6-1: a LinearRing and a non-simple LineString overlapping [dim(1){A.nsL.Int.SP-V = B.nsL.Int.NVx-SP}]\",\n      \"id\": \"04-123\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (110 110, 200 20, 20 20, 110 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              110\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              110,\n              110\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (200 20, 20 200, 200 200, 110 110, 110 40)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              200,\n              20\n            ],\n            [\n              20,\n              200\n            ],\n            [\n              200,\n              200\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              110,\n              40\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"101FFF102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"LR/nsL-6-2: a LinearRing and a non-simple LineString overlapping [dim(1){A.nsL.Int.SP-V = B.nsL.Int.NVx-SP}, dim(1){A.nsL.Int.V-EP = B.nsL.Int.EP-NVx}]\",\n      \"id\": \"04-124\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (110 110, 200 20, 20 20, 110 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              110\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              110,\n              110\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (200 20, 20 200, 200 200, 20 20)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              200,\n              20\n            ],\n            [\n              20,\n              200\n            ],\n            [\n              200,\n              200\n            ],\n            [\n              20,\n              20\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"101FFF1F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"nsL/nsL-4-1: non-simple LineStrings crossing at closing points [dim(0){A.nsL.Int.CP = B.nsL.Int.CP}]\",\n      \"id\": \"04-125\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (110 110, 20 110, 110 20, 20 20, 110 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              110\n            ],\n            [\n              20,\n              110\n            ],\n            [\n              110,\n              20\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              110,\n              110\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (110 110, 200 200, 110 200, 200 110, 110 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              110\n            ],\n            [\n              200,\n              200\n            ],\n            [\n              110,\n              200\n            ],\n            [\n              200,\n              110\n            ],\n            [\n              110,\n              110\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F1FFF1F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"nsL/nsL-4-2: non-simple LineStrings crossing at two points without vertices [dim(0){A.nsL.Int.NV = B.nsL.Int.NV}]\",\n      \"id\": \"04-126\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (20 120, 120 120, 20 20, 120 20, 20 120)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              120\n            ],\n            [\n              120,\n              120\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              120,\n              20\n            ],\n            [\n              20,\n              120\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (170 100, 70 100, 170 170, 70 170, 170 100)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              170,\n              100\n            ],\n            [\n              70,\n              100\n            ],\n            [\n              170,\n              170\n            ],\n            [\n              70,\n              170\n            ],\n            [\n              170,\n              100\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F1FFF1F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"nsL/nsL-4-3: non-simple LineStrings crossing at a point [dim(0){A.nsL.Int.NV = B.nsL.Int.V}]\",\n      \"id\": \"04-127\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (20 110, 110 110, 20 20, 110 20, 20 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              110\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              110,\n              20\n            ],\n            [\n              20,\n              110\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (110 160, 70 110, 60 160, 20 130, 110 160)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              160\n            ],\n            [\n              70,\n              110\n            ],\n            [\n              60,\n              160\n            ],\n            [\n              20,\n              130\n            ],\n            [\n              110,\n              160\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F1FFF1F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"nsL/nsL-4-4: non-simple LineStrings crossing at self-crossing points [dim(0){A.nsL.Int.NVx = B.nsL.Int.NVx}]\",\n      \"id\": \"04-128\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (20 200, 200 200, 20 20, 200 20, 20 200)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              200\n            ],\n            [\n              200,\n              200\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              20,\n              200\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (20 110, 200 110, 200 160, 20 60, 20 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              110\n            ],\n            [\n              200,\n              110\n            ],\n            [\n              200,\n              160\n            ],\n            [\n              20,\n              60\n            ],\n            [\n              20,\n              110\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F1FFF1F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"nsL/nsL-4-5: non-simple LineStrings crossing at vertices [dim(0){A.nsL.Int.V = B.nsL.Int.V}]\",\n      \"id\": \"04-129\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (20 110, 110 110, 20 20, 110 20, 20 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              110\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              110,\n              20\n            ],\n            [\n              20,\n              110\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (200 200, 110 110, 200 110, 110 200, 200 200)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              200,\n              200\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              200,\n              110\n            ],\n            [\n              110,\n              200\n            ],\n            [\n              200,\n              200\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F1FFF1F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"nsL/nsL-4-6: non-simple LineStrings crossing at two points with vertices [dim(0){A.nsL.Int.V = B.nsL.Int.V}]\",\n      \"id\": \"04-130\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (20 120, 120 120, 20 20, 120 20, 20 120)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              120\n            ],\n            [\n              120,\n              120\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              120,\n              20\n            ],\n            [\n              20,\n              120\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (220 120, 120 20, 220 20, 120 120, 220 120)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              220,\n              120\n            ],\n            [\n              120,\n              20\n            ],\n            [\n              220,\n              20\n            ],\n            [\n              120,\n              120\n            ],\n            [\n              220,\n              120\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F1FFF1F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"mL/mL-1: MultiLineString [dim(1){A.mL.Int.SP-EP = B.mL.Int.SP-EP}]\",\n      \"id\": \"04-131\",\n      \"a\": {\n        \"wkt\": \"MULTILINESTRING ((70 20, 20 90, 70 170),(70 170, 120 90, 70 20))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                70,\n                20\n              ],\n              [\n                20,\n                90\n              ],\n              [\n                70,\n                170\n              ]\n            ],\n            [\n              [\n                70,\n                170\n              ],\n              [\n                120,\n                90\n              ],\n              [\n                70,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTILINESTRING ((70 20, 20 90, 70 170),(70 170, 120 90, 70 20))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                70,\n                20\n              ],\n              [\n                20,\n                90\n              ],\n              [\n                70,\n                170\n              ]\n            ],\n            [\n              [\n                70,\n                170\n              ],\n              [\n                120,\n                90\n              ],\n              [\n                70,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": true,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"1FFFFFFF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"mL/mL-1-1: non-simple MultiLineString [dim(1){A.mL.Int.SP-EP = B.mL.Int.SP-EP}]\",\n      \"id\": \"04-132\",\n      \"a\": {\n        \"wkt\": \"MULTILINESTRING ((20 20, 90 20, 170 20),(90 20, 90 80, 90 140))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                90,\n                20\n              ],\n              [\n                170,\n                20\n              ]\n            ],\n            [\n              [\n                90,\n                20\n              ],\n              [\n                90,\n                80\n              ],\n              [\n                90,\n                140\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTILINESTRING ((20 20, 90 20, 170 20),(90 20, 90 80, 90 140))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                90,\n                20\n              ],\n              [\n                170,\n                20\n              ]\n            ],\n            [\n              [\n                90,\n                20\n              ],\n              [\n                90,\n                80\n              ],\n              [\n                90,\n                140\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": true,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"1FFF0FFF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"mL/mL-1-2: equal non-simple MultiLineString with different sequence of lines and points [dim(1){A.mL.Int.SP-EP = B.mL.Int.EP-SP}]\",\n      \"id\": \"04-133\",\n      \"a\": {\n        \"wkt\": \"MULTILINESTRING ((20 20, 90 20, 170 20),(90 20, 90 80, 90 140))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                90,\n                20\n              ],\n              [\n                170,\n                20\n              ]\n            ],\n            [\n              [\n                90,\n                20\n              ],\n              [\n                90,\n                80\n              ],\n              [\n                90,\n                140\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTILINESTRING ((90 140, 90 60, 90 20),(170 20, 130 20, 20 20))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                90,\n                140\n              ],\n              [\n                90,\n                60\n              ],\n              [\n                90,\n                20\n              ]\n            ],\n            [\n              [\n                170,\n                20\n              ],\n              [\n                130,\n                20\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": true,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"1FFF0FFF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"mL/mL-3-1: non-simple MultiLineStrings touching at boundaries [dim(0){A.mL.Bdy.SPx = B.mL.Bdy.SPb}]\",\n      \"id\": \"04-134\",\n      \"a\": {\n        \"wkt\": \"MULTILINESTRING ((20 20, 90 20, 170 20),(90 20, 90 80, 90 140))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                90,\n                20\n              ],\n              [\n                170,\n                20\n              ]\n            ],\n            [\n              [\n                90,\n                20\n              ],\n              [\n                90,\n                80\n              ],\n              [\n                90,\n                140\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTILINESTRING ((90 20, 170 100, 170 140),(170 60, 90 20, 20 60),(130 100, 130 60, 90 20, 50 90))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                90,\n                20\n              ],\n              [\n                170,\n                100\n              ],\n              [\n                170,\n                140\n              ]\n            ],\n            [\n              [\n                170,\n                60\n              ],\n              [\n                90,\n                20\n              ],\n              [\n                20,\n                60\n              ]\n            ],\n            [\n              [\n                130,\n                100\n              ],\n              [\n                130,\n                60\n              ],\n              [\n                90,\n                20\n              ],\n              [\n                50,\n                90\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF1F00102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"mL/mL-3-2: non-simple MultiLineStrings touching at boundaries [dim(0){A.mL.Bdy.SPx = B.mL.Bdy.SPo}]\",\n      \"id\": \"04-135\",\n      \"a\": {\n        \"wkt\": \"MULTILINESTRING ((20 20, 90 20, 170 20),(90 20, 90 80, 90 140))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                90,\n                20\n              ],\n              [\n                170,\n                20\n              ]\n            ],\n            [\n              [\n                90,\n                20\n              ],\n              [\n                90,\n                80\n              ],\n              [\n                90,\n                140\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTILINESTRING ((90 20, 170 100, 170 140),(130 140, 130 60, 90 20, 20 90, 90 20, 130 60, 170 60))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                90,\n                20\n              ],\n              [\n                170,\n                100\n              ],\n              [\n                170,\n                140\n              ]\n            ],\n            [\n              [\n                130,\n                140\n              ],\n              [\n                130,\n                60\n              ],\n              [\n                90,\n                20\n              ],\n              [\n                20,\n                90\n              ],\n              [\n                90,\n                20\n              ],\n              [\n                130,\n                60\n              ],\n              [\n                170,\n                60\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF1F00102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"mL/mL-3-3: non-simple MultiLineStrings touching at boundaries [dim(0){A.mL.Bdy.SPx = B.mL.Bdy.SPx}]\",\n      \"id\": \"04-136\",\n      \"a\": {\n        \"wkt\": \"MULTILINESTRING ((20 20, 90 20, 170 20),(90 20, 90 80, 90 140))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                90,\n                20\n              ],\n              [\n                170,\n                20\n              ]\n            ],\n            [\n              [\n                90,\n                20\n              ],\n              [\n                90,\n                80\n              ],\n              [\n                90,\n                140\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTILINESTRING ((90 20, 170 100, 170 140),(170 60, 90 20, 20 60))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                90,\n                20\n              ],\n              [\n                170,\n                100\n              ],\n              [\n                170,\n                140\n              ]\n            ],\n            [\n              [\n                170,\n                60\n              ],\n              [\n                90,\n                20\n              ],\n              [\n                20,\n                60\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF1F00102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"mL/mL-3-4: non-simple MultiLineStrings touching at boundaries [dim(0){A.mL.Bdy.SPx = B.mL.Bdy.SPx}]\",\n      \"id\": \"04-137\",\n      \"a\": {\n        \"wkt\": \"MULTILINESTRING ((20 20, 90 20, 170 20),(90 20, 90 80, 90 140))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                90,\n                20\n              ],\n              [\n                170,\n                20\n              ]\n            ],\n            [\n              [\n                90,\n                20\n              ],\n              [\n                90,\n                80\n              ],\n              [\n                90,\n                140\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTILINESTRING ((90 20, 170 100, 170 140),(170 60, 90 20, 20 60),(130 100, 90 20))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                90,\n                20\n              ],\n              [\n                170,\n                100\n              ],\n              [\n                170,\n                140\n              ]\n            ],\n            [\n              [\n                170,\n                60\n              ],\n              [\n                90,\n                20\n              ],\n              [\n                20,\n                60\n              ]\n            ],\n            [\n              [\n                130,\n                100\n              ],\n              [\n                90,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF10F0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"mL/mL-3-5: non-simple MultiLineStrings touching at boundaries [dim(0){A.mL.Bdy.SPx = B.mL.Bdy.SPx}]\",\n      \"id\": \"04-138\",\n      \"a\": {\n        \"wkt\": \"MULTILINESTRING ((20 20, 90 20, 170 20),(90 20, 90 80, 90 140))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                90,\n                20\n              ],\n              [\n                170,\n                20\n              ]\n            ],\n            [\n              [\n                90,\n                20\n              ],\n              [\n                90,\n                80\n              ],\n              [\n                90,\n                140\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTILINESTRING ((90 20, 170 100, 170 140),(170 60, 90 20, 20 60),(120 100, 170 100, 90 20))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                90,\n                20\n              ],\n              [\n                170,\n                100\n              ],\n              [\n                170,\n                140\n              ]\n            ],\n            [\n              [\n                170,\n                60\n              ],\n              [\n                90,\n                20\n              ],\n              [\n                20,\n                60\n              ]\n            ],\n            [\n              [\n                120,\n                100\n              ],\n              [\n                170,\n                100\n              ],\n              [\n                90,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF10F0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"mL/mL-3-6: non-simple MultiLineStrings touching at boundaries [dim(0){A.mL.Bdy.SPx = B.mL.Int.SPb}]\",\n      \"id\": \"04-139\",\n      \"a\": {\n        \"wkt\": \"MULTILINESTRING ((20 20, 90 20, 170 20),(90 20, 90 80, 90 140))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                90,\n                20\n              ],\n              [\n                170,\n                20\n              ]\n            ],\n            [\n              [\n                90,\n                20\n              ],\n              [\n                90,\n                80\n              ],\n              [\n                90,\n                140\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTILINESTRING ((90 20, 170 100, 170 140),(170 60, 90 20, 20 60),(120 100, 170 100, 90 20))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                90,\n                20\n              ],\n              [\n                170,\n                100\n              ],\n              [\n                170,\n                140\n              ]\n            ],\n            [\n              [\n                170,\n                60\n              ],\n              [\n                90,\n                20\n              ],\n              [\n                20,\n                60\n              ]\n            ],\n            [\n              [\n                120,\n                100\n              ],\n              [\n                170,\n                100\n              ],\n              [\n                90,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF10F0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"mL/mL-3-7: non-simple MultiLineStrings touching at boundaries [dim(0){A.mL.Bdy.SPx = B.mL.Int.SPo}]\",\n      \"id\": \"04-140\",\n      \"a\": {\n        \"wkt\": \"MULTILINESTRING ((20 20, 90 20, 170 20),(90 20, 90 80, 90 140))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                90,\n                20\n              ],\n              [\n                170,\n                20\n              ]\n            ],\n            [\n              [\n                90,\n                20\n              ],\n              [\n                90,\n                80\n              ],\n              [\n                90,\n                140\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTILINESTRING ((90 20, 170 100, 170 140),(130 140, 130 60, 90 20, 20 90, 90 20))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                90,\n                20\n              ],\n              [\n                170,\n                100\n              ],\n              [\n                170,\n                140\n              ]\n            ],\n            [\n              [\n                130,\n                140\n              ],\n              [\n                130,\n                60\n              ],\n              [\n                90,\n                20\n              ],\n              [\n                20,\n                90\n              ],\n              [\n                90,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF10F0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"mL/mL-3-8: non-simple MultiLineStrings touching at boundaries [dim(0){A.mL.Bdy.SPx = B.mL.Int.SPx}]\",\n      \"id\": \"04-141\",\n      \"a\": {\n        \"wkt\": \"MULTILINESTRING ((20 20, 90 20, 170 20),(90 20, 90 80, 90 140))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                90,\n                20\n              ],\n              [\n                170,\n                20\n              ]\n            ],\n            [\n              [\n                90,\n                20\n              ],\n              [\n                90,\n                80\n              ],\n              [\n                90,\n                140\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTILINESTRING ((90 20, 170 100, 170 140),(170 60, 90 20, 20 60, 20 140, 90 20))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                90,\n                20\n              ],\n              [\n                170,\n                100\n              ],\n              [\n                170,\n                140\n              ]\n            ],\n            [\n              [\n                170,\n                60\n              ],\n              [\n                90,\n                20\n              ],\n              [\n                20,\n                60\n              ],\n              [\n                20,\n                140\n              ],\n              [\n                90,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF10F0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"mL/mL-4-1: non-simple MultiLineStrings crossing [dim(0){A.mL.Int.Vx = B.mL.Int.Vb}]\",\n      \"id\": \"04-142\",\n      \"a\": {\n        \"wkt\": \"MULTILINESTRING ((20 20, 90 90, 20 160),(90 160, 90 20))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                90,\n                90\n              ],\n              [\n                20,\n                160\n              ]\n            ],\n            [\n              [\n                90,\n                160\n              ],\n              [\n                90,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTILINESTRING ((160 160, 90 90, 160 20),(160 120, 120 120, 90 90, 160 60))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                160,\n                160\n              ],\n              [\n                90,\n                90\n              ],\n              [\n                160,\n                20\n              ]\n            ],\n            [\n              [\n                160,\n                120\n              ],\n              [\n                120,\n                120\n              ],\n              [\n                90,\n                90\n              ],\n              [\n                160,\n                60\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F1FF0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"mL/mL-4-2: non-simple MultiLineStrings crossing [dim(0){A.mL.Int.Vx = B.mL.Int.Vo}]\",\n      \"id\": \"04-143\",\n      \"a\": {\n        \"wkt\": \"MULTILINESTRING ((20 20, 90 90, 20 160),(90 160, 90 20))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                90,\n                90\n              ],\n              [\n                20,\n                160\n              ]\n            ],\n            [\n              [\n                90,\n                160\n              ],\n              [\n                90,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTILINESTRING ((160 160, 90 90, 160 20),(160 120, 120 120, 90 90, 120 60, 160 60))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                160,\n                160\n              ],\n              [\n                90,\n                90\n              ],\n              [\n                160,\n                20\n              ]\n            ],\n            [\n              [\n                160,\n                120\n              ],\n              [\n                120,\n                120\n              ],\n              [\n                90,\n                90\n              ],\n              [\n                120,\n                60\n              ],\n              [\n                160,\n                60\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F1FF0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLL\",\n      \"category\": \"relate\",\n      \"title\": \"mL/mL-4-3: non-simple MultiLineStrings crossing [dim(0){A.mL.Int.Vx = B.mL.Int.Vx}]\",\n      \"id\": \"04-144\",\n      \"a\": {\n        \"wkt\": \"MULTILINESTRING ((20 20, 90 90, 20 160),(90 160, 90 20))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                90,\n                90\n              ],\n              [\n                20,\n                160\n              ]\n            ],\n            [\n              [\n                90,\n                160\n              ],\n              [\n                90,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTILINESTRING ((160 160, 90 90, 160 20),(160 120, 90 90, 160 60))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                160,\n                160\n              ],\n              [\n                90,\n                90\n              ],\n              [\n                160,\n                20\n              ]\n            ],\n            [\n              [\n                160,\n                120\n              ],\n              [\n                90,\n                90\n              ],\n              [\n                160,\n                60\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F1FF0102\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"L/A-3-1: a line touching the closing point of a polygon [dim(0){A.L.Bdy.SP = B.oBdy.CP}]\",\n      \"id\": \"05-001\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (150 150, 40 230)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              150,\n              150\n            ],\n            [\n              40,\n              230\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                150,\n                150\n              ],\n              [\n                410,\n                150\n              ],\n              [\n                280,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                150,\n                150\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF1F00212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"L/A-3-2: the start and end points of a LineString touching the boundary (at non-vertices) of a polygon [dim(0){A.L.Bdy.SP = B.oBdy.NV}, dim(0){A.L.Bdy.EP = B.oBdy.NV}]\",\n      \"id\": \"05-002\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (40 40, 50 130, 130 130)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              40\n            ],\n            [\n              50,\n              130\n            ],\n            [\n              130,\n              130\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                150,\n                150\n              ],\n              [\n                410,\n                150\n              ],\n              [\n                280,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                150,\n                150\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF1F0F212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"L/A-3-3: the end point of a line touching the closing point of a polygon [dim(0){A.L.Bdy.EP = B.oBdy.CP}]\",\n      \"id\": \"05-003\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (40 230, 150 150)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              230\n            ],\n            [\n              150,\n              150\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                150,\n                150\n              ],\n              [\n                410,\n                150\n              ],\n              [\n                280,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                150,\n                150\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF1F00212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"L/A-3-4: an entire LineString touching the boundary (at non-vertices) of a polygon [dim(1){A.L.Int.SP-EP = B.oBdy.NV-NV}]\",\n      \"id\": \"05-004\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (210 150, 330 150)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              210,\n              150\n            ],\n            [\n              330,\n              150\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                150,\n                150\n              ],\n              [\n                410,\n                150\n              ],\n              [\n                280,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                150,\n                150\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F1FF0F212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"L/A-3-5: the start portion of a LineString touching the boundary (at non-vertices) of a polygon [dim(1){A.L.Int.SP-V = B.oBdy.NV-NV}]\",\n      \"id\": \"05-005\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (200 150, 310 150, 360 220)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              200,\n              150\n            ],\n            [\n              310,\n              150\n            ],\n            [\n              360,\n              220\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                150,\n                150\n              ],\n              [\n                410,\n                150\n              ],\n              [\n                280,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                150,\n                150\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F11F00212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"L/A-3-6: the start portion and the end point of a LineString touching the boundary of a polygon [dim(1){A.L.Int.SP-V = B.oBdy.NV-NV}, dim(0){A.L.Bdy.EP = B.A.oBdy.V}]\",\n      \"id\": \"05-006\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (180 150, 250 150, 230 250, 370 250, 410 150)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              180,\n              150\n            ],\n            [\n              250,\n              150\n            ],\n            [\n              230,\n              250\n            ],\n            [\n              370,\n              250\n            ],\n            [\n              410,\n              150\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                150,\n                150\n              ],\n              [\n                410,\n                150\n              ],\n              [\n                280,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                150,\n                150\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F11F0F212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"L/A-3-7: the middle portion of a LineString touching the boundary (at non-vertices) of a polygon [dim(1){A.L.Int.V-V = B.oBdy.NV-NV}]\",\n      \"id\": \"05-007\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (210 210, 220 150, 320 150, 370 210)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              210,\n              210\n            ],\n            [\n              220,\n              150\n            ],\n            [\n              320,\n              150\n            ],\n            [\n              370,\n              210\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                150,\n                150\n              ],\n              [\n                410,\n                150\n              ],\n              [\n                280,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                150,\n                150\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F11FF0212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"L/A-4-1: a line at non-vertex crossing non-vertex boundary of polygon [dim(0){A.L.Int.NV = B.A.oBdy.NV}, dim(1){A.L.Int.NV-EP = B.A.Int}]\",\n      \"id\": \"05-008\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (20 60, 150 60)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              60\n            ],\n            [\n              150,\n              60\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                150,\n                150\n              ],\n              [\n                410,\n                150\n              ],\n              [\n                280,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                150,\n                150\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"1010F0212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"L/A-4-2: a line at non-vertex crossing non-vertex boundaries of polygon twice [dim(0){A.L.Int.NV = B.A.oBdy.NV}, dim(1){A.L.Int.NV-NV = B.A.Int}]\",\n      \"id\": \"05-009\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (60 90, 310 180)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              60,\n              90\n            ],\n            [\n              310,\n              180\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                150,\n                150\n              ],\n              [\n                410,\n                150\n              ],\n              [\n                280,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                150,\n                150\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"101FF0212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"L/A-4-3: a line at non-vertex crossing vertex boundary of polygon [dim(0){A.L.Int.NV = B.A.oBdy.V}, dim(1){A.L.Int.NV-EP = B.A.Int}]\",\n      \"id\": \"05-010\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (90 210, 210 90)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              90,\n              210\n            ],\n            [\n              210,\n              90\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                150,\n                150\n              ],\n              [\n                410,\n                150\n              ],\n              [\n                280,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                150,\n                150\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"1010F0212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"L/A-4-4: a line at non-vertex crossing vertex boundaries of polygon twice [dim(0){A.L.Int.NV = B.A.oBdy.V}, dim(1){A.L.Int.NV-NV = B.A.Int}, dim(0){A.L.Int.NV = B.A.oBdy.CP}]\",\n      \"id\": \"05-011\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (290 10, 130 170)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              290,\n              10\n            ],\n            [\n              130,\n              170\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                150,\n                150\n              ],\n              [\n                410,\n                150\n              ],\n              [\n                280,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                150,\n                150\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"101FF0212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"L/A-4-5: a line at vertex crossing non-vertex boundary of polygon [dim(0){A.L.Int.V = B.A.oBdy.NV}, dim(1){A.L.Int.V-EP = B.A.Int}]\",\n      \"id\": \"05-012\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (30 100, 100 100, 180 100)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              30,\n              100\n            ],\n            [\n              100,\n              100\n            ],\n            [\n              180,\n              100\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                150,\n                150\n              ],\n              [\n                410,\n                150\n              ],\n              [\n                280,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                150,\n                150\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"1010F0212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"L/A-4-6: a line at vertex crossing non-vertex boundaries of polygon twice [dim(0){A.L.Int.V = B.A.oBdy.NV}, dim(1){A.L.Int.V-V = B.A.Int}]\",\n      \"id\": \"05-013\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (20 100, 100 100, 360 100, 410 100)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              100\n            ],\n            [\n              100,\n              100\n            ],\n            [\n              360,\n              100\n            ],\n            [\n              410,\n              100\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                150,\n                150\n              ],\n              [\n                410,\n                150\n              ],\n              [\n                280,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                150,\n                150\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"101FF0212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"L/A-4-7: a line at vertex crossing vertex boundary of polygon [dim(0){A.L.Int.V = B.A.oBdy.V}, dim(1){A.L.Int.V-EP = B.A.Int}]\",\n      \"id\": \"05-014\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (90 210, 150 150, 210 90)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              90,\n              210\n            ],\n            [\n              150,\n              150\n            ],\n            [\n              210,\n              90\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                150,\n                150\n              ],\n              [\n                410,\n                150\n              ],\n              [\n                280,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                150,\n                150\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"1010F0212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"L/A-5-1: an entire line within a polygon [dim(1){A.L.Int.SP-EP = B.A.Int}]\",\n      \"id\": \"05-015\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (180 90, 280 120)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              180,\n              90\n            ],\n            [\n              280,\n              120\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                150,\n                150\n              ],\n              [\n                410,\n                150\n              ],\n              [\n                280,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                150,\n                150\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"1FF0FF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"L/A-5-2: a line within a polygon but the line's both ends touching the boundary of the polygon [dim(1){A.L.Int.SP-EP = B.A.Int}, dim(0){A.L.Bdy.SP = B.oBdy.NV}, dim(0){A.L.Bdy.EP = B.oBdy.NV}]\",\n      \"id\": \"05-016\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (70 70, 80 20)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              70,\n              70\n            ],\n            [\n              80,\n              20\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                150,\n                150\n              ],\n              [\n                410,\n                150\n              ],\n              [\n                280,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                150,\n                150\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"1FFF0F212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"L/A-5-3: a line within a polygon but the line's start point touching the boundary of the polygon [dim(1){A.L.Int.SP-EP = B.A.Int}, dim(0){A.L.Bdy.SP = B.oBdy.NV}]\",\n      \"id\": \"05-017\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (130 20, 150 60)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              130,\n              20\n            ],\n            [\n              150,\n              60\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                150,\n                150\n              ],\n              [\n                410,\n                150\n              ],\n              [\n                280,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                150,\n                150\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"1FF00F212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"L/A-5-4: a line within a polygon but the line's start point and middle portion touching the boundary of the polygon [dim(1){A.L.Int.SP-V = B.A.Int}, dim(1){A.L.Int.V-V = B.oBdy.NV-NV}, dim(1){A.L.Int.V-EP = B.A.Int}, dim(0){A.L.Bdy.SP = B.A.oBdy.NV}]\",\n      \"id\": \"05-018\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (70 70, 80 20, 140 20, 150 60)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              70,\n              70\n            ],\n            [\n              80,\n              20\n            ],\n            [\n              140,\n              20\n            ],\n            [\n              150,\n              60\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                150,\n                150\n              ],\n              [\n                410,\n                150\n              ],\n              [\n                280,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                150,\n                150\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"11F00F212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"L/A-5-5: a line within a polygon but the line's middle portion touching the boundary of the polygon [dim(1){A.L.Int.SP-V = B.A.Int}, dim(1){A.L.Int.V-V = B.A.oBdy.NV-NV}, dim(1){A.L.Int.V-EP = B.A.Int}]\",\n      \"id\": \"05-019\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (170 50, 170 20, 240 20, 260 60)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              170,\n              50\n            ],\n            [\n              170,\n              20\n            ],\n            [\n              240,\n              20\n            ],\n            [\n              260,\n              60\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                150,\n                150\n              ],\n              [\n                410,\n                150\n              ],\n              [\n                280,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                150,\n                150\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"11F0FF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"L/Ah-2-1: a line outside a polygon [dim(1){A.L.Int.SP-EP = B.A.Ext}]\",\n      \"id\": \"05-020\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (50 100, 140 190, 280 190)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              50,\n              100\n            ],\n            [\n              140,\n              190\n            ],\n            [\n              280,\n              190\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150),(170 120, 330 120, 260 50, 100 50, 170 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                150,\n                150\n              ],\n              [\n                410,\n                150\n              ],\n              [\n                280,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                150,\n                150\n              ]\n            ],\n            [\n              [\n                170,\n                120\n              ],\n              [\n                330,\n                120\n              ],\n              [\n                260,\n                50\n              ],\n              [\n                100,\n                50\n              ],\n              [\n                170,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": true,\n        \"intersects\": false,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF1FF0212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"L/Ah-2-2: a line inside a polygon's hole [dim(1){A.L.Int.SP-EP = B.A.Ext.h}]\",\n      \"id\": \"05-021\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (140 60, 180 100, 290 100)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              140,\n              60\n            ],\n            [\n              180,\n              100\n            ],\n            [\n              290,\n              100\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150),(170 120, 330 120, 260 50, 100 50, 170 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                150,\n                150\n              ],\n              [\n                410,\n                150\n              ],\n              [\n                280,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                150,\n                150\n              ]\n            ],\n            [\n              [\n                170,\n                120\n              ],\n              [\n                330,\n                120\n              ],\n              [\n                260,\n                50\n              ],\n              [\n                100,\n                50\n              ],\n              [\n                170,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": true,\n        \"intersects\": false,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF1FF0212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"L/Ah-3-1: the start point of a line touching the inner boundary of a polygon [dim(0){A.L.Bdy.SP = B.A.iBdy.CP}, dim(1){A.L.Int.SP-EP = B.A.Ext.h}]\",\n      \"id\": \"05-022\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (170 120, 210 80, 270 80)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              170,\n              120\n            ],\n            [\n              210,\n              80\n            ],\n            [\n              270,\n              80\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150),(170 120, 330 120, 260 50, 100 50, 170 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                150,\n                150\n              ],\n              [\n                410,\n                150\n              ],\n              [\n                280,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                150,\n                150\n              ]\n            ],\n            [\n              [\n                170,\n                120\n              ],\n              [\n                330,\n                120\n              ],\n              [\n                260,\n                50\n              ],\n              [\n                100,\n                50\n              ],\n              [\n                170,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF1F00212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"L/Ah-3-2: both ends of a line touching the inner boundary of a polygon [dim(0){A.L.Bdy.SP = B.A.iBdy.CP}, dim(1){A.L.Int.SP-EP = B.A.Ext.h}, dim(0){A.L.Bdy.SP = B.A.iBdy.CP}]\",\n      \"id\": \"05-023\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (170 120, 260 50)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              170,\n              120\n            ],\n            [\n              260,\n              50\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150),(170 120, 330 120, 260 50, 100 50, 170 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                150,\n                150\n              ],\n              [\n                410,\n                150\n              ],\n              [\n                280,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                150,\n                150\n              ]\n            ],\n            [\n              [\n                170,\n                120\n              ],\n              [\n                330,\n                120\n              ],\n              [\n                260,\n                50\n              ],\n              [\n                100,\n                50\n              ],\n              [\n                170,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF1F0F212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"L/Ah-3-1: both ends of a line touching the inner boundary of a polygon [dim(0){A.L.Int.NV = B.A.Bdy.TP}]\",\n      \"id\": \"05-024\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (190 90, 190 270)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              190,\n              90\n            ],\n            [\n              190,\n              270\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((190 190, 360 20, 20 20, 190 190),(190 190, 280 50, 100 50, 190 190))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                190,\n                190\n              ],\n              [\n                360,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                190,\n                190\n              ]\n            ],\n            [\n              [\n                190,\n                190\n              ],\n              [\n                280,\n                50\n              ],\n              [\n                100,\n                50\n              ],\n              [\n                190,\n                190\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F01FF0212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"L/Ah-3-2: a line at a non-vertex crossing the boundary of a polygon where the closing point of the hole touches the shell at a non-vertex [dim(0){A.L.Int.NV = B.A.Bdy.TP}]\",\n      \"id\": \"05-025\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (60 160, 150 70)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              60,\n              160\n            ],\n            [\n              150,\n              70\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((190 190, 360 20, 20 20, 190 190),(110 110, 250 100, 140 30, 110 110))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                190,\n                190\n              ],\n              [\n                360,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                190,\n                190\n              ]\n            ],\n            [\n              [\n                110,\n                110\n              ],\n              [\n                250,\n                100\n              ],\n              [\n                140,\n                30\n              ],\n              [\n                110,\n                110\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F01FF0212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"L/Ah-3-3: a line at a non-vertex crossing the boundary of a polygon where the hole at a vertex touches the shell at a non-vertex [dim(0){A.L.Int.NV = B.A.Bdy.TP}]\",\n      \"id\": \"05-026\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (60 160, 150 70)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              60,\n              160\n            ],\n            [\n              150,\n              70\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((190 190, 20 20, 360 20, 190 190),(250 100, 110 110, 140 30, 250 100))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                190,\n                190\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                360,\n                20\n              ],\n              [\n                190,\n                190\n              ]\n            ],\n            [\n              [\n                250,\n                100\n              ],\n              [\n                110,\n                110\n              ],\n              [\n                140,\n                30\n              ],\n              [\n                250,\n                100\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F01FF0212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"L/Ah-3-4: a line at a non-vertex crossing the boundary of a polygon where the hole at a vertex touches the shell at a vertex [dim(0){A.L.Int.NV = B.A.Bdy.TP}]\",\n      \"id\": \"05-027\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (60 160, 150 70)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              60,\n              160\n            ],\n            [\n              150,\n              70\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((190 190, 20 20, 360 20, 190 190),(250 100, 110 110, 140 30, 250 100))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                190,\n                190\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                360,\n                20\n              ],\n              [\n                190,\n                190\n              ]\n            ],\n            [\n              [\n                250,\n                100\n              ],\n              [\n                110,\n                110\n              ],\n              [\n                140,\n                30\n              ],\n              [\n                250,\n                100\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F01FF0212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"L/Ah-3-5: a line crossing polygon boundary where the closing point of the hole touches the shell at a vertex [dim(0){A.L.Int.V = B.A.Bdy.TP}]\",\n      \"id\": \"05-028\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (190 90, 190 190, 190 270)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              190,\n              90\n            ],\n            [\n              190,\n              190\n            ],\n            [\n              190,\n              270\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((190 190, 360 20, 20 20, 190 190),(190 190, 280 50, 100 50, 190 190))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                190,\n                190\n              ],\n              [\n                360,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                190,\n                190\n              ]\n            ],\n            [\n              [\n                190,\n                190\n              ],\n              [\n                280,\n                50\n              ],\n              [\n                100,\n                50\n              ],\n              [\n                190,\n                190\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F01FF0212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"L/Ah-3-6: a line at a vertex crossing the boundary of a polygon where closing point of the hole touches the shell at a non-vertex [dim(0){A.L.Int.V = B.A.Bdy.TP}]\",\n      \"id\": \"05-029\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (60 160, 110 110, 150 70)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              60,\n              160\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              150,\n              70\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((190 190, 360 20, 20 20, 190 190),(110 110, 250 100, 140 30, 110 110))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                190,\n                190\n              ],\n              [\n                360,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                190,\n                190\n              ]\n            ],\n            [\n              [\n                110,\n                110\n              ],\n              [\n                250,\n                100\n              ],\n              [\n                140,\n                30\n              ],\n              [\n                110,\n                110\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F01FF0212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"L/Ah-3-7: a line at a vertex crossing the boundary of a polygon where the hole at a vertex touches the shell at a non-vertex [dim(0){A.L.Int.V = B.A.Bdy.TP}]\",\n      \"id\": \"05-030\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (60 160, 110 110, 150 70)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              60,\n              160\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              150,\n              70\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((190 190, 20 20, 360 20, 190 190),(250 100, 110 110, 140 30, 250 100))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                190,\n                190\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                360,\n                20\n              ],\n              [\n                190,\n                190\n              ]\n            ],\n            [\n              [\n                250,\n                100\n              ],\n              [\n                110,\n                110\n              ],\n              [\n                140,\n                30\n              ],\n              [\n                250,\n                100\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F01FF0212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"L/Ah-3-8: a line at a non-vertex crossing the boundary of a polygon where the hole at a vertex touches the shell at a vertex [dim(0){A.L.Int.V = B.A.Bdy.TP}]\",\n      \"id\": \"05-031\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (60 160, 110 110, 150 70)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              60,\n              160\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              150,\n              70\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((190 190, 110 110, 20 20, 360 20, 190 190),(250 100, 110 110, 140 30, 250 100))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                190,\n                190\n              ],\n              [\n                110,\n                110\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                360,\n                20\n              ],\n              [\n                190,\n                190\n              ]\n            ],\n            [\n              [\n                250,\n                100\n              ],\n              [\n                110,\n                110\n              ],\n              [\n                140,\n                30\n              ],\n              [\n                250,\n                100\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F01FF0212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"L/A2h-3-1: the start point a line touching the closing points of two connected holes in a polygon [dim(0){A.L.Int.SP = B.A.iBdy.TP}]\",\n      \"id\": \"05-032\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (130 110, 180 110, 190 60)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              130,\n              110\n            ],\n            [\n              180,\n              110\n            ],\n            [\n              190,\n              60\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((20 200, 240 200, 240 20, 20 20, 20 200),(130 110, 60 180, 60 40, 130 110),(130 110, 200 40, 200 180, 130 110))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                200\n              ],\n              [\n                240,\n                200\n              ],\n              [\n                240,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                200\n              ]\n            ],\n            [\n              [\n                130,\n                110\n              ],\n              [\n                60,\n                180\n              ],\n              [\n                60,\n                40\n              ],\n              [\n                130,\n                110\n              ]\n            ],\n            [\n              [\n                130,\n                110\n              ],\n              [\n                200,\n                40\n              ],\n              [\n                200,\n                180\n              ],\n              [\n                130,\n                110\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF1F00212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"L/A2h-3-2: the interior (at a non-vertex) of a line touching the closing points of two connected holes in a polygon [dim(0){A.L.Int.NV = B.A.iBdy.TP}]\",\n      \"id\": \"05-033\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (80 110, 180 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              80,\n              110\n            ],\n            [\n              180,\n              110\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((20 200, 240 200, 240 20, 20 20, 20 200),(130 110, 60 180, 60 40, 130 110),(130 110, 200 40, 200 180, 130 110))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                200\n              ],\n              [\n                240,\n                200\n              ],\n              [\n                240,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                200\n              ]\n            ],\n            [\n              [\n                130,\n                110\n              ],\n              [\n                60,\n                180\n              ],\n              [\n                60,\n                40\n              ],\n              [\n                130,\n                110\n              ]\n            ],\n            [\n              [\n                130,\n                110\n              ],\n              [\n                200,\n                40\n              ],\n              [\n                200,\n                180\n              ],\n              [\n                130,\n                110\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F01FF0212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"L/A2h-3-3: the interior (at a non-vertex) of a line touching the closing point and at a vertex of two connected holes in a polygon [dim(0){A.L.Int.NV = B.A.iBdy1.TP}]\",\n      \"id\": \"05-034\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (80 110, 180 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              80,\n              110\n            ],\n            [\n              180,\n              110\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((20 200, 20 20, 240 20, 240 200, 20 200),(60 180, 130 110, 60 40, 60 180),(130 110, 200 40, 200 180, 130 110))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                200\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                240,\n                20\n              ],\n              [\n                240,\n                200\n              ],\n              [\n                20,\n                200\n              ]\n            ],\n            [\n              [\n                60,\n                180\n              ],\n              [\n                130,\n                110\n              ],\n              [\n                60,\n                40\n              ],\n              [\n                60,\n                180\n              ]\n            ],\n            [\n              [\n                130,\n                110\n              ],\n              [\n                200,\n                40\n              ],\n              [\n                200,\n                180\n              ],\n              [\n                130,\n                110\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F01FF0212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"L/A2h-3-4: the interior (at a non-vertex) of a line touching the closing point and at a non-vertex of two connected holes in a polygon [dim(0){A.L.Int.NV = B.A.iBdy.TP}]\",\n      \"id\": \"05-035\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (80 110, 170 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              80,\n              110\n            ],\n            [\n              170,\n              110\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((20 200, 20 20, 240 20, 240 200, 20 200),(130 110, 60 40, 60 180, 130 110),(130 180, 130 40, 200 110, 130 180))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                200\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                240,\n                20\n              ],\n              [\n                240,\n                200\n              ],\n              [\n                20,\n                200\n              ]\n            ],\n            [\n              [\n                130,\n                110\n              ],\n              [\n                60,\n                40\n              ],\n              [\n                60,\n                180\n              ],\n              [\n                130,\n                110\n              ]\n            ],\n            [\n              [\n                130,\n                180\n              ],\n              [\n                130,\n                40\n              ],\n              [\n                200,\n                110\n              ],\n              [\n                130,\n                180\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F01FF0212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"L/A2h-3-5: the start point a line touching the closing point and a non-vertex of two connected holes in a polygon [dim(0){A.L.Int.V = B.A.iBdy.TP}]\",\n      \"id\": \"05-036\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (80 110, 130 110, 170 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              80,\n              110\n            ],\n            [\n              130,\n              110\n            ],\n            [\n              170,\n              110\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((20 200, 20 20, 240 20, 240 200, 20 200),(130 110, 60 40, 60 180, 130 110),(130 180, 130 40, 200 110, 130 180))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                200\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                240,\n                20\n              ],\n              [\n                240,\n                200\n              ],\n              [\n                20,\n                200\n              ]\n            ],\n            [\n              [\n                130,\n                110\n              ],\n              [\n                60,\n                40\n              ],\n              [\n                60,\n                180\n              ],\n              [\n                130,\n                110\n              ]\n            ],\n            [\n              [\n                130,\n                180\n              ],\n              [\n                130,\n                40\n              ],\n              [\n                200,\n                110\n              ],\n              [\n                130,\n                180\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F01FF0212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"L/A2h-3-6: the interior (at a vertex) of a line touching the closing points of two connected holes in a polygon [dim(0){A.L.Int.V = B.A.iBdy.TP}]\",\n      \"id\": \"05-037\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (80 110, 130 110, 180 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              80,\n              110\n            ],\n            [\n              130,\n              110\n            ],\n            [\n              180,\n              110\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((20 200, 240 200, 240 20, 20 20, 20 200),(130 110, 60 180, 60 40, 130 110),(130 110, 200 40, 200 180, 130 110))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                200\n              ],\n              [\n                240,\n                200\n              ],\n              [\n                240,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                200\n              ]\n            ],\n            [\n              [\n                130,\n                110\n              ],\n              [\n                60,\n                180\n              ],\n              [\n                60,\n                40\n              ],\n              [\n                130,\n                110\n              ]\n            ],\n            [\n              [\n                130,\n                110\n              ],\n              [\n                200,\n                40\n              ],\n              [\n                200,\n                180\n              ],\n              [\n                130,\n                110\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F01FF0212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"L/A2h-3-7: the interior (at a vertex) of a line touching the closing point and at a vertex of two connected holes in a polygon [dim(0){A.L.Int.V = B.A.iBdy1.TP}]\",\n      \"id\": \"05-038\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (80 110, 130 110, 180 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              80,\n              110\n            ],\n            [\n              130,\n              110\n            ],\n            [\n              180,\n              110\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((20 200, 20 20, 240 20, 240 200, 20 200),(60 180, 130 110, 60 40, 60 180),(130 110, 200 40, 200 180, 130 110))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                200\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                240,\n                20\n              ],\n              [\n                240,\n                200\n              ],\n              [\n                20,\n                200\n              ]\n            ],\n            [\n              [\n                60,\n                180\n              ],\n              [\n                130,\n                110\n              ],\n              [\n                60,\n                40\n              ],\n              [\n                60,\n                180\n              ]\n            ],\n            [\n              [\n                130,\n                110\n              ],\n              [\n                200,\n                40\n              ],\n              [\n                200,\n                180\n              ],\n              [\n                130,\n                110\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F01FF0212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"L/A2h-3-8: the interior (at a vertex) of a line touching the closing point and at a non-vertex of two connected holes in a polygon [dim(0){A.L.Int.V = B.A.iBdy.TP}]\",\n      \"id\": \"05-039\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (80 110, 130 110, 170 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              80,\n              110\n            ],\n            [\n              130,\n              110\n            ],\n            [\n              170,\n              110\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((20 200, 20 20, 240 20, 240 200, 20 200),(130 110, 60 40, 60 180, 130 110),(130 180, 130 40, 200 110, 130 180))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                200\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                240,\n                20\n              ],\n              [\n                240,\n                200\n              ],\n              [\n                20,\n                200\n              ]\n            ],\n            [\n              [\n                130,\n                110\n              ],\n              [\n                60,\n                40\n              ],\n              [\n                60,\n                180\n              ],\n              [\n                130,\n                110\n              ]\n            ],\n            [\n              [\n                130,\n                180\n              ],\n              [\n                130,\n                40\n              ],\n              [\n                200,\n                110\n              ],\n              [\n                130,\n                180\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F01FF0212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"L/mA-4-1: a line intersecting the interior and exterior of MultiPolygon [dim(1){A.L.Int.SP-NV = B.2A1.Int}, dim (1){A.L.Int.NV-EP = B.2A2.Int}]\",\n      \"id\": \"05-040\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (160 70, 320 230)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              160,\n              70\n            ],\n            [\n              320,\n              230\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTIPOLYGON (((140 110, 260 110, 170 20, 50 20, 140 110)),((300 270, 420 270, 340 190, 220 190, 300 270)))\",\n        \"geometry\": {\n          \"type\": \"MultiPolygon\",\n          \"coordinates\": [\n            [\n              [\n                [\n                  140,\n                  110\n                ],\n                [\n                  260,\n                  110\n                ],\n                [\n                  170,\n                  20\n                ],\n                [\n                  50,\n                  20\n                ],\n                [\n                  140,\n                  110\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  300,\n                  270\n                ],\n                [\n                  420,\n                  270\n                ],\n                [\n                  340,\n                  190\n                ],\n                [\n                  220,\n                  190\n                ],\n                [\n                  300,\n                  270\n                ]\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"1010FF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"L/mA-4-2: a line intersecting the interior and exterior of MultiPolygon [dim(1){A.L.Int.SP-V = B.2A1.Int}, dim (1){A.L.Int.V-EP = B.2A2.Int}]\",\n      \"id\": \"05-041\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (160 70, 200 110, 280 190, 320 230)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              160,\n              70\n            ],\n            [\n              200,\n              110\n            ],\n            [\n              280,\n              190\n            ],\n            [\n              320,\n              230\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTIPOLYGON (((140 110, 260 110, 170 20, 50 20, 140 110)),((300 270, 420 270, 340 190, 220 190, 300 270)))\",\n        \"geometry\": {\n          \"type\": \"MultiPolygon\",\n          \"coordinates\": [\n            [\n              [\n                [\n                  140,\n                  110\n                ],\n                [\n                  260,\n                  110\n                ],\n                [\n                  170,\n                  20\n                ],\n                [\n                  50,\n                  20\n                ],\n                [\n                  140,\n                  110\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  300,\n                  270\n                ],\n                [\n                  420,\n                  270\n                ],\n                [\n                  340,\n                  190\n                ],\n                [\n                  220,\n                  190\n                ],\n                [\n                  300,\n                  270\n                ]\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"1010FF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"L/mA-5-1: a line within two connected polygons [dim(1){A.L.Int = B.2A.Int}, dim(0){A.L.Int.NV = B.2A.Bdy.TP]\",\n      \"id\": \"05-042\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (70 50, 70 150)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              70,\n              50\n            ],\n            [\n              70,\n              150\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTIPOLYGON (((0 0, 0 100, 140 100, 140 0, 0 0)),((20 170, 70 100, 130 170, 20 170)))\",\n        \"geometry\": {\n          \"type\": \"MultiPolygon\",\n          \"coordinates\": [\n            [\n              [\n                [\n                  0,\n                  0\n                ],\n                [\n                  0,\n                  100\n                ],\n                [\n                  140,\n                  100\n                ],\n                [\n                  140,\n                  0\n                ],\n                [\n                  0,\n                  0\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  20,\n                  170\n                ],\n                [\n                  70,\n                  100\n                ],\n                [\n                  130,\n                  170\n                ],\n                [\n                  20,\n                  170\n                ]\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"10F0FF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"RL/A-3-1: a LinearRing touching a polygon's closing point [dim(0){A.RL.Int.CP = B.A.Bdy.CP}]\",\n      \"id\": \"05-043\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (110 110, 20 200, 200 200, 110 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              110\n            ],\n            [\n              20,\n              200\n            ],\n            [\n              200,\n              200\n            ],\n            [\n              110,\n              110\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((20 20, 200 20, 110 110, 20 20))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                200,\n                20\n              ],\n              [\n                110,\n                110\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F01FFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"RL/A-3-2: a LinearRing touching a polygon's boundary at a non-vertex [dim(0){A.RL.Int.CP = B.A.Bdy.NV}]\",\n      \"id\": \"05-044\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (150 70, 160 110, 200 60, 150 70)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              150,\n              70\n            ],\n            [\n              160,\n              110\n            ],\n            [\n              200,\n              60\n            ],\n            [\n              150,\n              70\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((20 20, 200 20, 110 110, 20 20))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                200,\n                20\n              ],\n              [\n                110,\n                110\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F01FFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"RL/A-3-3: a LinearRing touching a polygon's boundary at a non-vertex [dim(0){A.RL.Int.CP = B.A.iBdy.NV}]\",\n      \"id\": \"05-045\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (80 60, 120 40, 120 70, 80 60)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              80,\n              60\n            ],\n            [\n              120,\n              40\n            ],\n            [\n              120,\n              70\n            ],\n            [\n              80,\n              60\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((110 110, 200 20, 20 20, 110 110),(110 90, 50 30, 170 30, 110 90))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                110,\n                110\n              ],\n              [\n                200,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                110,\n                110\n              ]\n            ],\n            [\n              [\n                110,\n                90\n              ],\n              [\n                50,\n                30\n              ],\n              [\n                170,\n                30\n              ],\n              [\n                110,\n                90\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F01FFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"RL/A-3-4: a LinearRing on the boundary of a polygon [dim(1){A.RL.Int.SP-EP = B.A.Bdy.SP-EP}]\",\n      \"id\": \"05-046\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (20 20, 200 20, 110 110, 20 20)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              20\n            ],\n            [\n              200,\n              20\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              20,\n              20\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((20 20, 200 20, 110 110, 20 20))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                200,\n                20\n              ],\n              [\n                110,\n                110\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F1FFFF2F2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"RL/A-3-5: a LinearRing on the inner boundary of a polygon [dim(1){A.RL.Int.SP-EP = B.A.iBdy.SP-EP}]\",\n      \"id\": \"05-047\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (110 90, 170 30, 50 30, 110 90)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              90\n            ],\n            [\n              170,\n              30\n            ],\n            [\n              50,\n              30\n            ],\n            [\n              110,\n              90\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((110 110, 200 20, 20 20, 110 110),(110 90, 50 30, 170 30, 110 90))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                110,\n                110\n              ],\n              [\n                200,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                110,\n                110\n              ]\n            ],\n            [\n              [\n                110,\n                90\n              ],\n              [\n                50,\n                30\n              ],\n              [\n                170,\n                30\n              ],\n              [\n                110,\n                90\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F1FFFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"RL/A-3-6: a LinearRing on the inner boundary of a polygon [dim(1){A.RL.Int.SP-V = B.A.oBdy.SP-NV}]\",\n      \"id\": \"05-048\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (110 110, 170 50, 170 110, 110 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              110\n            ],\n            [\n              170,\n              50\n            ],\n            [\n              170,\n              110\n            ],\n            [\n              110,\n              110\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((110 110, 200 20, 20 20, 110 110),(110 90, 50 30, 170 30, 110 90))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                110,\n                110\n              ],\n              [\n                200,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                110,\n                110\n              ]\n            ],\n            [\n              [\n                110,\n                90\n              ],\n              [\n                50,\n                30\n              ],\n              [\n                170,\n                30\n              ],\n              [\n                110,\n                90\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F11FFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"RL/A-3-7: a LinearRing on the inner boundary of a polygon [dim(1){A.RL.Int.SP-V = B.A.iBdy.SP-NV}]\",\n      \"id\": \"05-049\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (110 90, 70 50, 130 50, 110 90)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              90\n            ],\n            [\n              70,\n              50\n            ],\n            [\n              130,\n              50\n            ],\n            [\n              110,\n              90\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((110 110, 200 20, 20 20, 110 110),(110 90, 50 30, 170 30, 110 90))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                110,\n                110\n              ],\n              [\n                200,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                110,\n                110\n              ]\n            ],\n            [\n              [\n                110,\n                90\n              ],\n              [\n                50,\n                30\n              ],\n              [\n                170,\n                30\n              ],\n              [\n                110,\n                90\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F11FFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"RL/A-4-1: a LinearRing crossing a polygon [dim(1){A.RL.Int.CP-NV = B.A.Int}, dim(0){A.L.Int.NV = B.A.Bdy.NV}]\",\n      \"id\": \"05-050\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (110 60, 20 150, 200 150, 110 60)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              60\n            ],\n            [\n              20,\n              150\n            ],\n            [\n              200,\n              150\n            ],\n            [\n              110,\n              60\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((20 20, 200 20, 110 110, 20 20))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                200,\n                20\n              ],\n              [\n                110,\n                110\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"101FFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"RL/A-4-2: a LinearRing crossing a polygon with a hole [dim(1){A.RL.Int.NV-NV = B.A.Int}, dim(0){A.RL.Int.NV = B.A.oBdy.CP}, dim(0){A.RL.Int.NV = B.A.iBdy.CP}, dim(0){A.RL.Int.NV = B.A.oBdy.NV}, dim(0){A.RL.Int.NV = B.A.iBdy.NV}]\",\n      \"id\": \"05-051\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (110 130, 110 70, 200 100, 110 130)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              130\n            ],\n            [\n              110,\n              70\n            ],\n            [\n              200,\n              100\n            ],\n            [\n              110,\n              130\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((110 110, 200 20, 20 20, 110 110),(110 90, 50 30, 170 30, 110 90))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                110,\n                110\n              ],\n              [\n                200,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                110,\n                110\n              ]\n            ],\n            [\n              [\n                110,\n                90\n              ],\n              [\n                50,\n                30\n              ],\n              [\n                170,\n                30\n              ],\n              [\n                110,\n                90\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"101FFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"RL/A-5-1: a LinearRing within a polygon [dim(1){A.RL.Int.SP-EP = B.A.Int}]\",\n      \"id\": \"05-052\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (110 90, 160 40, 60 40, 110 90)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              90\n            ],\n            [\n              160,\n              40\n            ],\n            [\n              60,\n              40\n            ],\n            [\n              110,\n              90\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((20 20, 200 20, 110 110, 20 20))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                200,\n                20\n              ],\n              [\n                110,\n                110\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"1FFFFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"RL/A-5-2: a LinearRing within a polygon with a hole [dim(1){A.RL.Int.SP-EP = B.A.Int}]\",\n      \"id\": \"05-053\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (110 100, 40 30, 180 30, 110 100)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              100\n            ],\n            [\n              40,\n              30\n            ],\n            [\n              180,\n              30\n            ],\n            [\n              110,\n              100\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((110 110, 200 20, 20 20, 110 110),(110 90, 60 40, 160 40, 110 90))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                110,\n                110\n              ],\n              [\n                200,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                110,\n                110\n              ]\n            ],\n            [\n              [\n                110,\n                90\n              ],\n              [\n                60,\n                40\n              ],\n              [\n                160,\n                40\n              ],\n              [\n                110,\n                90\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"1FFFFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"RL/A-5-3: a LinearRing within a polygon with a hole [dim(1){A.RL.Int.SP-EP = B.A.Int}, dim(0){A.L.Int.CP = B.A.oBdy.CP}]\",\n      \"id\": \"05-054\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (110 110, 180 30, 40 30, 110 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              110\n            ],\n            [\n              180,\n              30\n            ],\n            [\n              40,\n              30\n            ],\n            [\n              110,\n              110\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((110 110, 200 20, 20 20, 110 110),(110 90, 60 40, 160 40, 110 90))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                110,\n                110\n              ],\n              [\n                200,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                110,\n                110\n              ]\n            ],\n            [\n              [\n                110,\n                90\n              ],\n              [\n                60,\n                40\n              ],\n              [\n                160,\n                40\n              ],\n              [\n                110,\n                90\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"10FFFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"RL/A-5-4: a LinearRing within a polygon with a hole [dim(1){A.RL.Int.SP-EP = B.A.Int}, dim(0){A.RL.Int.CP = B.A.iBdy.CP}]\",\n      \"id\": \"05-055\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (110 90, 180 30, 40 30, 110 90)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              90\n            ],\n            [\n              180,\n              30\n            ],\n            [\n              40,\n              30\n            ],\n            [\n              110,\n              90\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((110 110, 200 20, 20 20, 110 110),(110 90, 60 40, 160 40, 110 90))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                110,\n                110\n              ],\n              [\n                200,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                110,\n                110\n              ]\n            ],\n            [\n              [\n                110,\n                90\n              ],\n              [\n                60,\n                40\n              ],\n              [\n                160,\n                40\n              ],\n              [\n                110,\n                90\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"10FFFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"RL/A-5-5: a LinearRing within a polygon with a hole [dim(1){A.RL.Int.SP-EP = B.A.Int}, dim(1){A.RL.Int.SP-NV = B.A.Bdy.iBdy.SP-V}]\",\n      \"id\": \"05-056\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (110 90, 50 30, 180 30, 110 90)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              90\n            ],\n            [\n              50,\n              30\n            ],\n            [\n              180,\n              30\n            ],\n            [\n              110,\n              90\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((110 110, 200 20, 20 20, 110 110),(110 90, 60 40, 160 40, 110 90))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                110,\n                110\n              ],\n              [\n                200,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                110,\n                110\n              ]\n            ],\n            [\n              [\n                110,\n                90\n              ],\n              [\n                60,\n                40\n              ],\n              [\n                160,\n                40\n              ],\n              [\n                110,\n                90\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"11FFFF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"nsL/A-3-1: a non-simple LineString touching a polygon [dim(0){A.nsL.Bdy.SP = B.A.Bdy.CP}]\",\n      \"id\": \"05-057\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (110 110, 200 200, 200 110, 110 200)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              110\n            ],\n            [\n              200,\n              200\n            ],\n            [\n              200,\n              110\n            ],\n            [\n              110,\n              200\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((110 110, 200 20, 20 20, 110 110))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                110,\n                110\n              ],\n              [\n                200,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                110,\n                110\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF1F00212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"nsL/A-3-2: a non-simple LineString touching a polygon [dim(0){A.nsL.Bdy.SPb = B.A.Bdy.CP}]\",\n      \"id\": \"05-058\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (110 110, 200 200, 110 110, 20 200, 20 110, 200 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              110\n            ],\n            [\n              200,\n              200\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              20,\n              200\n            ],\n            [\n              20,\n              110\n            ],\n            [\n              200,\n              110\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((110 110, 200 20, 20 20, 110 110))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                110,\n                110\n              ],\n              [\n                200,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                110,\n                110\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF1F00212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"nsL/A-3-3: a non-simple LineString touching a polygon [dim(0){A.nsL.Bdy.SPo = B.A.Bdy.CP}]\",\n      \"id\": \"05-059\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (110 110, 20 110, 200 110, 50 110, 110 170)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              110\n            ],\n            [\n              20,\n              110\n            ],\n            [\n              200,\n              110\n            ],\n            [\n              50,\n              110\n            ],\n            [\n              110,\n              170\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((110 110, 200 20, 20 20, 110 110))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                110,\n                110\n              ],\n              [\n                200,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                110,\n                110\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF1F00212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"nsL/A-3-4: a non-simple LineString touching a polygon [dim(0){A.nsL.Bdy.SPx = B.A.Bdy.CP}]\",\n      \"id\": \"05-060\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (110 110, 20 200, 110 200, 110 110, 200 200)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              110\n            ],\n            [\n              20,\n              200\n            ],\n            [\n              110,\n              200\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              200,\n              200\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((110 110, 200 20, 20 20, 110 110))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                110,\n                110\n              ],\n              [\n                200,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                110,\n                110\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF1F00212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"nsL/A-3-5: a non-simple LineString touching a polygon [dim(1){A.nsL.Int.SPb-Vo = B.A.Bdy.SP-NV}]\",\n      \"id\": \"05-061\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (110 110, 170 50, 20 200, 20 110, 200 110)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              110\n            ],\n            [\n              170,\n              50\n            ],\n            [\n              20,\n              200\n            ],\n            [\n              20,\n              110\n            ],\n            [\n              200,\n              110\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((110 110, 200 20, 20 20, 110 110))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                110,\n                110\n              ],\n              [\n                200,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                110,\n                110\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F11F00212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"nsL/A-4-1: a non-simple LineString crossing a polygon [dim(1){A.nsL.Int.V-V-NV = B.A.Int}, dim(1){A.nsL.SPx-V = B.A.Bdy.SP-NV}]\",\n      \"id\": \"05-062\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (110 110, 180 40, 110 40, 110 180)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              110\n            ],\n            [\n              180,\n              40\n            ],\n            [\n              110,\n              40\n            ],\n            [\n              110,\n              180\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((110 110, 200 20, 20 20, 110 110))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                110,\n                110\n              ],\n              [\n                200,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                110,\n                110\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"111F00212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"nsL/A-5-1: a non-simple LineString within a polygon [dim(1){A.nsL.Int.SPx-EP = B.A.Int}]\",\n      \"id\": \"05-063\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (110 60, 50 30, 170 30, 90 70)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              60\n            ],\n            [\n              50,\n              30\n            ],\n            [\n              170,\n              30\n            ],\n            [\n              90,\n              70\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((110 110, 200 20, 20 20, 110 110))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                110,\n                110\n              ],\n              [\n                200,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                110,\n                110\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"1FF0FF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"nsL/A-5-2: a non-simple LineString within a polygon [dim(1){A.nsL.Int.SPx-EP = B.A.Int}, dim(1){A.nsL.Int.SPx-V = B.A.Bdy.SP-NV}]\",\n      \"id\": \"05-064\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (110 110, 180 40, 110 40, 110 110, 70 40)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              110\n            ],\n            [\n              180,\n              40\n            ],\n            [\n              110,\n              40\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              70,\n              40\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((110 110, 200 20, 20 20, 110 110))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                110,\n                110\n              ],\n              [\n                200,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                110,\n                110\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"11F00F212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"nsL/Ah: the self-crossing point of a non-simple LineString touching the closing point of the inner boundary of a polygon [dim(0){A.nsL.Int.V = B.A.iBdy.CP}]\",\n      \"id\": \"05-065\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (230 70, 170 120, 190 60, 140 60, 170 120, 270 90)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              230,\n              70\n            ],\n            [\n              170,\n              120\n            ],\n            [\n              190,\n              60\n            ],\n            [\n              140,\n              60\n            ],\n            [\n              170,\n              120\n            ],\n            [\n              270,\n              90\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150),(170 120, 330 120, 260 50, 100 50, 170 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                150,\n                150\n              ],\n              [\n                410,\n                150\n              ],\n              [\n                280,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                150,\n                150\n              ]\n            ],\n            [\n              [\n                170,\n                120\n              ],\n              [\n                330,\n                120\n              ],\n              [\n                260,\n                50\n              ],\n              [\n                100,\n                50\n              ],\n              [\n                170,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F01FF0212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"mL/A-3-1: MultiLineString touching a polygon's closing point [dim(0){A.mL.Bdy.SPb = B.A.Bdy.CP}]\",\n      \"id\": \"05-066\",\n      \"a\": {\n        \"wkt\": \"MULTILINESTRING ((20 110, 200 110),(200 200, 110 110, 20 210, 110 110))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                110\n              ],\n              [\n                200,\n                110\n              ]\n            ],\n            [\n              [\n                200,\n                200\n              ],\n              [\n                110,\n                110\n              ],\n              [\n                20,\n                210\n              ],\n              [\n                110,\n                110\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((110 110, 200 20, 20 20, 110 110))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                110,\n                110\n              ],\n              [\n                200,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                110,\n                110\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF1F00212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"mL/A-3-2: MultiLineString touching a polygon's closing point [dim(0){A.mL.Bdy.SPo = B.A.Bdy.CP}]\",\n      \"id\": \"05-067\",\n      \"a\": {\n        \"wkt\": \"MULTILINESTRING ((20 110, 200 110),(60 180, 60 110, 160 110, 110 110))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                110\n              ],\n              [\n                200,\n                110\n              ]\n            ],\n            [\n              [\n                60,\n                180\n              ],\n              [\n                60,\n                110\n              ],\n              [\n                160,\n                110\n              ],\n              [\n                110,\n                110\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((110 110, 200 20, 20 20, 110 110))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                110,\n                110\n              ],\n              [\n                200,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                110,\n                110\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF1F00212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"mL/A-3-3: MultiLineString touching a polygon's closing point [dim(0){A.mL.Bdy.SPx = B.A.Bdy.CP}]\",\n      \"id\": \"05-068\",\n      \"a\": {\n        \"wkt\": \"MULTILINESTRING ((20 110, 200 110),(200 200, 110 110, 20 200, 110 200, 110 110))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                110\n              ],\n              [\n                200,\n                110\n              ]\n            ],\n            [\n              [\n                200,\n                200\n              ],\n              [\n                110,\n                110\n              ],\n              [\n                20,\n                200\n              ],\n              [\n                110,\n                200\n              ],\n              [\n                110,\n                110\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((110 110, 200 20, 20 20, 110 110))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                110,\n                110\n              ],\n              [\n                200,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                110,\n                110\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF1F00212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"mL/A-4-1: MultiLineString crossing a polygon [dim(1){A.mL.Int.SP-NVb = B.A.Int}, dim(0){A.mL.Int.NVb = B.A.Bdy.CP}]\",\n      \"id\": \"05-069\",\n      \"a\": {\n        \"wkt\": \"MULTILINESTRING ((20 110, 200 110),(110 50, 110 170, 110 70, 110 150, 200 150))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                110\n              ],\n              [\n                200,\n                110\n              ]\n            ],\n            [\n              [\n                110,\n                50\n              ],\n              [\n                110,\n                170\n              ],\n              [\n                110,\n                70\n              ],\n              [\n                110,\n                150\n              ],\n              [\n                200,\n                150\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((110 110, 200 20, 20 20, 110 110))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                110,\n                110\n              ],\n              [\n                200,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                110,\n                110\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"1010F0212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"mL/A-4-2: MultiLineString crossing a polygon [dim(1){A.mL.Int.SP-NVo = B.A.Int}, dim(0){A.mL.Int.NVo = B.A.Bdy.CP}]\",\n      \"id\": \"05-070\",\n      \"a\": {\n        \"wkt\": \"MULTILINESTRING ((20 110, 200 110),(50 110, 170 110, 110 170, 110 50, 110 170, 110 50))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                110\n              ],\n              [\n                200,\n                110\n              ]\n            ],\n            [\n              [\n                50,\n                110\n              ],\n              [\n                170,\n                110\n              ],\n              [\n                110,\n                170\n              ],\n              [\n                110,\n                50\n              ],\n              [\n                110,\n                170\n              ],\n              [\n                110,\n                50\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((110 110, 200 20, 20 20, 110 110))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                110,\n                110\n              ],\n              [\n                200,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                110,\n                110\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"1010F0212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"mL/A-4-3: MultiLineString crossing a polygon [dim(1){A.mL.Int.SP-NVx = B.A.Int}, dim(0){A.mL.Int.NVx = B.A.Bdy.CP}]\",\n      \"id\": \"05-071\",\n      \"a\": {\n        \"wkt\": \"MULTILINESTRING ((20 110, 200 110),(110 60, 110 160, 200 160))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                110\n              ],\n              [\n                200,\n                110\n              ]\n            ],\n            [\n              [\n                110,\n                60\n              ],\n              [\n                110,\n                160\n              ],\n              [\n                200,\n                160\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((110 110, 200 20, 20 20, 110 110))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                110,\n                110\n              ],\n              [\n                200,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                110,\n                110\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"1010F0212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"mL/A-4-4: MultiLineString crossing a polygon [dim(1){A.mL.Int.Vb-Vb = B.A.Int}, dim(0){A.mL.Int.Vb = B.A.oBdy.CP}, dim(0){A.mL.Int.Vb = B.A.iBdy.CP}]\",\n      \"id\": \"05-072\",\n      \"a\": {\n        \"wkt\": \"MULTILINESTRING ((20 110, 200 110),(110 60, 110 160, 200 160))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                110\n              ],\n              [\n                200,\n                110\n              ]\n            ],\n            [\n              [\n                110,\n                60\n              ],\n              [\n                110,\n                160\n              ],\n              [\n                200,\n                160\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((110 110, 200 20, 20 20, 110 110))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                110,\n                110\n              ],\n              [\n                200,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                110,\n                110\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"1010F0212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"mL/A-5-1: MultiLineString within a polygon [dim(1){A.mL.Int.SP-EP = B.A.Int}]\",\n      \"id\": \"05-073\",\n      \"a\": {\n        \"wkt\": \"MULTILINESTRING ((110 100, 40 30, 180 30),(170 30, 110 90, 50 30))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                110,\n                100\n              ],\n              [\n                40,\n                30\n              ],\n              [\n                180,\n                30\n              ]\n            ],\n            [\n              [\n                170,\n                30\n              ],\n              [\n                110,\n                90\n              ],\n              [\n                50,\n                30\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((110 110, 200 20, 20 20, 110 110))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                110,\n                110\n              ],\n              [\n                200,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                110,\n                110\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"1FF0FF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"mL/A-5-2: MultiLineString within a polygon [dim(1){A.mL.Int.SP-EP = B.A.Int}]\",\n      \"id\": \"05-074\",\n      \"a\": {\n        \"wkt\": \"MULTILINESTRING ((110 110, 60 40, 70 20, 150 20, 170 40),(180 30, 40 30, 110 80))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                110,\n                110\n              ],\n              [\n                60,\n                40\n              ],\n              [\n                70,\n                20\n              ],\n              [\n                150,\n                20\n              ],\n              [\n                170,\n                40\n              ]\n            ],\n            [\n              [\n                180,\n                30\n              ],\n              [\n                40,\n                30\n              ],\n              [\n                110,\n                80\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((110 110, 200 20, 20 20, 110 110))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                110,\n                110\n              ],\n              [\n                200,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                110,\n                110\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"11F00F212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"mL/mA-3-1: MultiLineString within a MultiPolygon [dim(0){A.mL.Bdy.SPb = B.mA.Bdy.TP}]\",\n      \"id\": \"05-075\",\n      \"a\": {\n        \"wkt\": \"MULTILINESTRING ((20 110, 200 110, 200 160),(110 110, 200 110, 200 70, 20 150))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                110\n              ],\n              [\n                200,\n                110\n              ],\n              [\n                200,\n                160\n              ]\n            ],\n            [\n              [\n                110,\n                110\n              ],\n              [\n                200,\n                110\n              ],\n              [\n                200,\n                70\n              ],\n              [\n                20,\n                150\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTIPOLYGON (((110 110, 20 20, 200 20, 110 110)),((110 110, 20 200, 200 200, 110 110)))\",\n        \"geometry\": {\n          \"type\": \"MultiPolygon\",\n          \"coordinates\": [\n            [\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  20,\n                  20\n                ],\n                [\n                  200,\n                  20\n                ],\n                [\n                  110,\n                  110\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  20,\n                  200\n                ],\n                [\n                  200,\n                  200\n                ],\n                [\n                  110,\n                  110\n                ]\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF1F00212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"mL/mA-3-2: MultiLineString within a MultiPolygon [dim(0){A.mL.Bdy.SPo = B.mA.Bdy.TP}]\",\n      \"id\": \"05-076\",\n      \"a\": {\n        \"wkt\": \"MULTILINESTRING ((20 160, 70 110, 150 110, 200 160),(110 110, 20 110, 50 80, 70 110, 200 110))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                160\n              ],\n              [\n                70,\n                110\n              ],\n              [\n                150,\n                110\n              ],\n              [\n                200,\n                160\n              ]\n            ],\n            [\n              [\n                110,\n                110\n              ],\n              [\n                20,\n                110\n              ],\n              [\n                50,\n                80\n              ],\n              [\n                70,\n                110\n              ],\n              [\n                200,\n                110\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTIPOLYGON (((110 110, 20 20, 200 20, 110 110)),((110 110, 20 200, 200 200, 110 110)))\",\n        \"geometry\": {\n          \"type\": \"MultiPolygon\",\n          \"coordinates\": [\n            [\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  20,\n                  20\n                ],\n                [\n                  200,\n                  20\n                ],\n                [\n                  110,\n                  110\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  20,\n                  200\n                ],\n                [\n                  200,\n                  200\n                ],\n                [\n                  110,\n                  110\n                ]\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF1F00212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLA\",\n      \"category\": \"relate\",\n      \"title\": \"mL/mA-3-3: MultiLineString within a MultiPolygon [dim(0){A.mL.Bdy.SPx = B.mA.Bdy.TP}]\",\n      \"id\": \"05-077\",\n      \"a\": {\n        \"wkt\": \"MULTILINESTRING ((20 110, 200 110),(110 110, 20 170, 20 130, 200 90))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                110\n              ],\n              [\n                200,\n                110\n              ]\n            ],\n            [\n              [\n                110,\n                110\n              ],\n              [\n                20,\n                170\n              ],\n              [\n                20,\n                130\n              ],\n              [\n                200,\n                90\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTIPOLYGON (((110 110, 20 20, 200 20, 110 110)),((110 110, 20 200, 200 200, 110 110)))\",\n        \"geometry\": {\n          \"type\": \"MultiPolygon\",\n          \"coordinates\": [\n            [\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  20,\n                  20\n                ],\n                [\n                  200,\n                  20\n                ],\n                [\n                  110,\n                  110\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  20,\n                  200\n                ],\n                [\n                  200,\n                  200\n                ],\n                [\n                  110,\n                  110\n                ]\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF1F00212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLC\",\n      \"category\": \"relate\",\n      \"title\": \"LC - topographically equal with no boundary\",\n      \"id\": \"06-001\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (0 0, 0 50, 50 50, 50 0, 0 0)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              0,\n              0\n            ],\n            [\n              0,\n              50\n            ],\n            [\n              50,\n              50\n            ],\n            [\n              50,\n              0\n            ],\n            [\n              0,\n              0\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTILINESTRING ((0 0, 0 50),(0 50, 50 50),(50 50, 50 0),(50 0, 0 0))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                0,\n                0\n              ],\n              [\n                0,\n                50\n              ]\n            ],\n            [\n              [\n                0,\n                50\n              ],\n              [\n                50,\n                50\n              ]\n            ],\n            [\n              [\n                50,\n                50\n              ],\n              [\n                50,\n                0\n              ]\n            ],\n            [\n              [\n                50,\n                0\n              ],\n              [\n                0,\n                0\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": true,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"1FFFFFFF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLC\",\n      \"category\": \"relate\",\n      \"title\": \"LC - intersection (containment) along mod-2 A-Int line segment\",\n      \"id\": \"06-002\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (40 180, 140 180)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              180\n            ],\n            [\n              140,\n              180\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTIPOLYGON (((20 320, 180 320, 180 180, 20 180, 20 320)),((20 180, 20 80, 180 80, 180 180, 20 180)))\",\n        \"geometry\": {\n          \"type\": \"MultiPolygon\",\n          \"coordinates\": [\n            [\n              [\n                [\n                  20,\n                  320\n                ],\n                [\n                  180,\n                  320\n                ],\n                [\n                  180,\n                  180\n                ],\n                [\n                  20,\n                  180\n                ],\n                [\n                  20,\n                  320\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  20,\n                  180\n                ],\n                [\n                  20,\n                  80\n                ],\n                [\n                  180,\n                  80\n                ],\n                [\n                  180,\n                  180\n                ],\n                [\n                  20,\n                  180\n                ]\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"1FF0FF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLC\",\n      \"category\": \"relate\",\n      \"title\": \"LC - intersection (overlap) along mod-2 A-Int line segment\",\n      \"id\": \"06-003\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (40 180, 140 180)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              180\n            ],\n            [\n              140,\n              180\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTIPOLYGON (((20 320, 180 320, 180 180, 20 180, 20 320)),((60 180, 60 80, 180 80, 180 180, 60 180)))\",\n        \"geometry\": {\n          \"type\": \"MultiPolygon\",\n          \"coordinates\": [\n            [\n              [\n                [\n                  20,\n                  320\n                ],\n                [\n                  180,\n                  320\n                ],\n                [\n                  180,\n                  180\n                ],\n                [\n                  20,\n                  180\n                ],\n                [\n                  20,\n                  320\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  60,\n                  180\n                ],\n                [\n                  60,\n                  80\n                ],\n                [\n                  180,\n                  80\n                ],\n                [\n                  180,\n                  180\n                ],\n                [\n                  60,\n                  180\n                ]\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"11F00F212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateLC\",\n      \"category\": \"relate\",\n      \"title\": \"LC - equal with boundary intersection\",\n      \"id\": \"06-004\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (0 0, 60 0, 60 60, 60 0, 120 0)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              0,\n              0\n            ],\n            [\n              60,\n              0\n            ],\n            [\n              60,\n              60\n            ],\n            [\n              60,\n              0\n            ],\n            [\n              120,\n              0\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTILINESTRING ((0 0, 60 0),(60 0, 120 0),(60 0, 60 60))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                0,\n                0\n              ],\n              [\n                60,\n                0\n              ]\n            ],\n            [\n              [\n                60,\n                0\n              ],\n              [\n                120,\n                0\n              ]\n            ],\n            [\n              [\n                60,\n                0\n              ],\n              [\n                60,\n                60\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": true,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"10FF0FFF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-1-1: same polygons [dim(2){A.A.Int = B.A.Int}, dim(1){A.A.Bdy.SP-EP = B.A.Bdy.SP-EP}]\",\n      \"id\": \"07-001\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((20 20, 20 100, 120 100, 140 20, 20 20))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                100\n              ],\n              [\n                120,\n                100\n              ],\n              [\n                140,\n                20\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((20 20, 20 100, 120 100, 140 20, 20 20))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                100\n              ],\n              [\n                120,\n                100\n              ],\n              [\n                140,\n                20\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": true,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"2FFF1FFF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-1-2: same polygons with reverse sequence of points [dim(2){A.A.Int = B.A.Int}, dim(1){A.A.Bdy.SP-EP = B.A.Bdy.EP-SP}]\",\n      \"id\": \"07-002\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((20 20, 20 100, 120 100, 140 20, 20 20))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                100\n              ],\n              [\n                120,\n                100\n              ],\n              [\n                140,\n                20\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((20 20, 140 20, 120 100, 20 100, 20 20))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                140,\n                20\n              ],\n              [\n                120,\n                100\n              ],\n              [\n                20,\n                100\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": true,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"2FFF1FFF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-1-3: same polygons with different sequence of points [dim(2){A.A.Int = B.A.Int}, dim(1){A.A.Bdy.SP-EP = B.A.Bdy.SP-EP}]\",\n      \"id\": \"07-003\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((20 20, 20 100, 120 100, 140 20, 20 20))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                100\n              ],\n              [\n                120,\n                100\n              ],\n              [\n                140,\n                20\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((120 100, 140 20, 20 20, 20 100, 120 100))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                120,\n                100\n              ],\n              [\n                140,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                100\n              ],\n              [\n                120,\n                100\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": true,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"2FFF1FFF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-1-4: same polygons with different number of points [dim(2){A.A.Int = B.A.Int}, dim(1){A.A.Bdy.SP-EP = B.A.Bdy.SP-EP}]\",\n      \"id\": \"07-004\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((20 20, 20 100, 120 100, 140 20, 20 20))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                100\n              ],\n              [\n                120,\n                100\n              ],\n              [\n                140,\n                20\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((20 100, 60 100, 120 100, 140 20, 80 20, 20 20, 20 100))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                100\n              ],\n              [\n                60,\n                100\n              ],\n              [\n                120,\n                100\n              ],\n              [\n                140,\n                20\n              ],\n              [\n                80,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                100\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": true,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"2FFF1FFF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-2: different polygons [dim(2){A.A.Int = B.A.Ext}]\",\n      \"id\": \"07-005\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((0 0, 80 0, 80 80, 0 80, 0 0))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                0,\n                0\n              ],\n              [\n                80,\n                0\n              ],\n              [\n                80,\n                80\n              ],\n              [\n                0,\n                80\n              ],\n              [\n                0,\n                0\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((100 200, 100 140, 180 140, 180 200, 100 200))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                100,\n                200\n              ],\n              [\n                100,\n                140\n              ],\n              [\n                180,\n                140\n              ],\n              [\n                180,\n                200\n              ],\n              [\n                100,\n                200\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": true,\n        \"intersects\": false,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF2FF1212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-3-1-1: the closing point of a polygon touching the closing point of another polygon [dim(0){A.A.Bdy.CP = B.A.Bdy.CP}]\",\n      \"id\": \"07-006\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((140 120, 160 20, 20 20, 20 120, 140 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                140,\n                120\n              ],\n              [\n                160,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                120\n              ],\n              [\n                140,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((140 120, 140 200, 240 200, 240 120, 140 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                140,\n                120\n              ],\n              [\n                140,\n                200\n              ],\n              [\n                240,\n                200\n              ],\n              [\n                240,\n                120\n              ],\n              [\n                140,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF2F01212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-3-1-2: the closing point of a polygon touching the boundary (at a non-vertex) of another polygon [dim(0){A.A.Bdy.CP = B.A.Bdy.NV}]\",\n      \"id\": \"07-007\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((140 120, 160 20, 20 20, 20 120, 140 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                140,\n                120\n              ],\n              [\n                160,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                120\n              ],\n              [\n                140,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((80 180, 140 260, 260 200, 200 60, 80 180))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                80,\n                180\n              ],\n              [\n                140,\n                260\n              ],\n              [\n                260,\n                200\n              ],\n              [\n                200,\n                60\n              ],\n              [\n                80,\n                180\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF2F01212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-3-1-3: the closing point of a polygon touching the boundary (at a vertex) of another polygon [dim(0){A.A.Bdy.CP = B.A.Bdy.V}]\",\n      \"id\": \"07-008\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((140 120, 160 20, 20 20, 20 120, 140 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                140,\n                120\n              ],\n              [\n                160,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                120\n              ],\n              [\n                140,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((240 80, 140 120, 180 240, 280 200, 240 80))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                240,\n                80\n              ],\n              [\n                140,\n                120\n              ],\n              [\n                180,\n                240\n              ],\n              [\n                280,\n                200\n              ],\n              [\n                240,\n                80\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF2F01212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-3-1-4: the boundary (at a non-vertex) of a polygon touching the closing point of another polygon [dim(0){A.A.Bdy.NV = B.A.Bdy.CP}]\",\n      \"id\": \"07-009\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((140 160, 20 20, 270 20, 150 160, 230 40, 60 40, 140 160))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                140,\n                160\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                270,\n                20\n              ],\n              [\n                150,\n                160\n              ],\n              [\n                230,\n                40\n              ],\n              [\n                60,\n                40\n              ],\n              [\n                140,\n                160\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((140 40, 180 80, 120 100, 140 40))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                140,\n                40\n              ],\n              [\n                180,\n                80\n              ],\n              [\n                120,\n                100\n              ],\n              [\n                140,\n                40\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF2F01212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-3-1-5: the boundary (at a non-vertex) of a polygon touching the boundary (at a vertex) of another polygon [dim(0){A.A.Bdy.NV = B.A.Bdy.V}]\",\n      \"id\": \"07-010\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((140 160, 20 20, 270 20, 150 160, 230 40, 60 40, 140 160))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                140,\n                160\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                270,\n                20\n              ],\n              [\n                150,\n                160\n              ],\n              [\n                230,\n                40\n              ],\n              [\n                60,\n                40\n              ],\n              [\n                140,\n                160\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((120 100, 180 80, 130 40, 120 100))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                120,\n                100\n              ],\n              [\n                180,\n                80\n              ],\n              [\n                130,\n                40\n              ],\n              [\n                120,\n                100\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF2F01212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-3-1-6: the boundary (at a vertex) of a polygon touching the boundary (at a non-vertex) of another polygon [dim(0){A.A.Bdy.V = B.A.Bdy.NV}]\",\n      \"id\": \"07-011\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((20 20, 180 20, 140 140, 20 140, 20 20))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                180,\n                20\n              ],\n              [\n                140,\n                140\n              ],\n              [\n                20,\n                140\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((180 100, 80 200, 180 280, 260 200, 180 100))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                180,\n                100\n              ],\n              [\n                80,\n                200\n              ],\n              [\n                180,\n                280\n              ],\n              [\n                260,\n                200\n              ],\n              [\n                180,\n                100\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF2F01212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-3-1-7: the boundary (at a vertex) of a polygon touching the boundary (at a vertex) of another polygon [dim(0){A.A.Bdy.V = B.A.Bdy.V}]\",\n      \"id\": \"07-012\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((140 120, 160 20, 20 20, 20 120, 140 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                140,\n                120\n              ],\n              [\n                160,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                120\n              ],\n              [\n                140,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((140 140, 20 120, 0 220, 120 240, 140 140))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                140,\n                140\n              ],\n              [\n                20,\n                120\n              ],\n              [\n                0,\n                220\n              ],\n              [\n                120,\n                240\n              ],\n              [\n                140,\n                140\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF2F01212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-3-1-8: the closing point of a polygon touching the boundary of another polygon where the closing point touching the boundary at a vertex [dim(0){A.A.Bdy.CP = B.A.Bdy.TP}]\",\n      \"id\": \"07-013\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((160 200, 210 70, 120 70, 160 200))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                160,\n                200\n              ],\n              [\n                210,\n                70\n              ],\n              [\n                120,\n                70\n              ],\n              [\n                160,\n                200\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((160 200, 260 40, 70 40, 160 200, 20 20, 310 20, 160 200))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                160,\n                200\n              ],\n              [\n                260,\n                40\n              ],\n              [\n                70,\n                40\n              ],\n              [\n                160,\n                200\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                310,\n                20\n              ],\n              [\n                160,\n                200\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF2F01212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-3-1-9: the closing point of a polygon touching the boundary of another polygon where the closing point intersecting the boundary at a non-vertex [dim(0){A.A.Bdy.CP = B.A.Bdy.TP}]\",\n      \"id\": \"07-014\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((110 140, 200 70, 200 160, 110 140))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                110,\n                140\n              ],\n              [\n                200,\n                70\n              ],\n              [\n                200,\n                160\n              ],\n              [\n                110,\n                140\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((110 140, 110 50, 60 50, 60 90, 160 190, 20 110, 20 20, 200 20, 110 140))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                110,\n                140\n              ],\n              [\n                110,\n                50\n              ],\n              [\n                60,\n                50\n              ],\n              [\n                60,\n                90\n              ],\n              [\n                160,\n                190\n              ],\n              [\n                20,\n                110\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                200,\n                20\n              ],\n              [\n                110,\n                140\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF2F01212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-3-2-1: two polygons touching at multiple points [dim(0){A.A.Bdy.CP = B.A.Bdy.CP}, dim(0){A.A.Bdy.V = B.A.Bdy.V}]\",\n      \"id\": \"07-015\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((20 120, 20 20, 260 20, 260 120, 200 40, 140 120, 80 40, 20 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                120\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                260,\n                20\n              ],\n              [\n                260,\n                120\n              ],\n              [\n                200,\n                40\n              ],\n              [\n                140,\n                120\n              ],\n              [\n                80,\n                40\n              ],\n              [\n                20,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((20 120, 20 240, 260 240, 260 120, 200 200, 140 120, 80 200, 20 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                120\n              ],\n              [\n                20,\n                240\n              ],\n              [\n                260,\n                240\n              ],\n              [\n                260,\n                120\n              ],\n              [\n                200,\n                200\n              ],\n              [\n                140,\n                120\n              ],\n              [\n                80,\n                200\n              ],\n              [\n                20,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF2F01212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-3-2-2: two polygons touching at multiple points [dim(0){A.A.Bdy.CP = B.A.Bdy.CP}, dim(0){A.A.Bdy.V = B.A.Bdy.NV}]\",\n      \"id\": \"07-016\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((20 120, 20 20, 260 20, 260 120, 180 40, 140 120, 100 40, 20 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                120\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                260,\n                20\n              ],\n              [\n                260,\n                120\n              ],\n              [\n                180,\n                40\n              ],\n              [\n                140,\n                120\n              ],\n              [\n                100,\n                40\n              ],\n              [\n                20,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((20 120, 300 120, 140 240, 20 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                120\n              ],\n              [\n                300,\n                120\n              ],\n              [\n                140,\n                240\n              ],\n              [\n                20,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF2F01212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-3-2-3: two polygons touching at multiple points [dim(0){A.A.Bdy.CP = B.A.Bdy.NV}, dim(0){A.A.Bdy.V = B.A.Bdy.NV}]\",\n      \"id\": \"07-017\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((20 20, 20 300, 280 300, 280 260, 220 260, 60 100, 60 60, 280 60, 280 20, 20 20))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                300\n              ],\n              [\n                280,\n                300\n              ],\n              [\n                280,\n                260\n              ],\n              [\n                220,\n                260\n              ],\n              [\n                60,\n                100\n              ],\n              [\n                60,\n                60\n              ],\n              [\n                280,\n                60\n              ],\n              [\n                280,\n                20\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((100 140, 160 80, 280 180, 200 240, 220 160, 160 200, 180 120, 100 140))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                100,\n                140\n              ],\n              [\n                160,\n                80\n              ],\n              [\n                280,\n                180\n              ],\n              [\n                200,\n                240\n              ],\n              [\n                220,\n                160\n              ],\n              [\n                160,\n                200\n              ],\n              [\n                180,\n                120\n              ],\n              [\n                100,\n                140\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF2F01212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-3-2-4: two polygons touching at multiple points [dim(0){A.A.Bdy.V = B.A.Bdy.NV}]\",\n      \"id\": \"07-018\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((20 20, 20 300, 280 300, 280 260, 220 260, 60 100, 60 60, 280 60, 280 20, 20 20))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                300\n              ],\n              [\n                280,\n                300\n              ],\n              [\n                280,\n                260\n              ],\n              [\n                220,\n                260\n              ],\n              [\n                60,\n                100\n              ],\n              [\n                60,\n                60\n              ],\n              [\n                280,\n                60\n              ],\n              [\n                280,\n                20\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((260 200, 180 80, 120 160, 200 160, 180 220, 260 200))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                260,\n                200\n              ],\n              [\n                180,\n                80\n              ],\n              [\n                120,\n                160\n              ],\n              [\n                200,\n                160\n              ],\n              [\n                180,\n                220\n              ],\n              [\n                260,\n                200\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF2F01212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-3-2-5: two polygons touching at multiple points [dim(0){A.A.Bdy.V = B.A.Bdy.NV}]\",\n      \"id\": \"07-019\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((20 20, 280 20, 280 140, 220 60, 140 140, 80 60, 20 140, 20 20))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                280,\n                20\n              ],\n              [\n                280,\n                140\n              ],\n              [\n                220,\n                60\n              ],\n              [\n                140,\n                140\n              ],\n              [\n                80,\n                60\n              ],\n              [\n                20,\n                140\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((0 140, 300 140, 140 240, 0 140))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                0,\n                140\n              ],\n              [\n                300,\n                140\n              ],\n              [\n                140,\n                240\n              ],\n              [\n                0,\n                140\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF2F01212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-3-2-6: two polygons touching at multiple points [dim(0){A.A.Bdy.V = B.A.Bdy.V}, dim(0){A.A.Bdy.V = B.A.Bdy.NV}]\",\n      \"id\": \"07-020\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((20 20, 280 20, 280 140, 220 60, 140 140, 80 60, 20 140, 20 20))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                280,\n                20\n              ],\n              [\n                280,\n                140\n              ],\n              [\n                220,\n                60\n              ],\n              [\n                140,\n                140\n              ],\n              [\n                80,\n                60\n              ],\n              [\n                20,\n                140\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((20 240, 20 140, 320 140, 180 240, 20 240))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                240\n              ],\n              [\n                20,\n                140\n              ],\n              [\n                320,\n                140\n              ],\n              [\n                180,\n                240\n              ],\n              [\n                20,\n                240\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF2F01212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-3-2-7: two polygons touching at multiple points [dim(0){A.A.Bdy.V = B.A.Bdy.V}]\",\n      \"id\": \"07-021\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((20 20, 280 20, 280 140, 220 60, 140 140, 80 60, 20 140, 20 20))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                280,\n                20\n              ],\n              [\n                280,\n                140\n              ],\n              [\n                220,\n                60\n              ],\n              [\n                140,\n                140\n              ],\n              [\n                80,\n                60\n              ],\n              [\n                20,\n                140\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((20 240, 20 140, 80 180, 140 140, 220 180, 280 140, 280 240, 20 240))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                240\n              ],\n              [\n                20,\n                140\n              ],\n              [\n                80,\n                180\n              ],\n              [\n                140,\n                140\n              ],\n              [\n                220,\n                180\n              ],\n              [\n                280,\n                140\n              ],\n              [\n                280,\n                240\n              ],\n              [\n                20,\n                240\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF2F01212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-3-3-1: two polygons touching along a boundary [dim(1){A.A.Bdy.SP-V = B.A.Bdy.SP-NV}]\",\n      \"id\": \"07-022\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((120 120, 180 60, 20 20, 20 120, 120 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                120,\n                120\n              ],\n              [\n                180,\n                60\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                120\n              ],\n              [\n                120,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((120 120, 220 20, 280 20, 240 160, 120 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                120,\n                120\n              ],\n              [\n                220,\n                20\n              ],\n              [\n                280,\n                20\n              ],\n              [\n                240,\n                160\n              ],\n              [\n                120,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF2F11212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-3-3-2: two polygons touching along a boundary [dim(1){A.A.Bdy.SP-V = B.A.Bdy.SP-V}]\",\n      \"id\": \"07-023\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((140 120, 160 20, 20 20, 20 120, 140 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                140,\n                120\n              ],\n              [\n                160,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                120\n              ],\n              [\n                140,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((140 120, 160 20, 260 120, 220 200, 140 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                140,\n                120\n              ],\n              [\n                160,\n                20\n              ],\n              [\n                260,\n                120\n              ],\n              [\n                220,\n                200\n              ],\n              [\n                140,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF2F11212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-3-3-3: two polygons touching along a boundary [dim(1){A.A.Bdy.SP-V = B.A.Bdy.NV-V}]\",\n      \"id\": \"07-024\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((20 140, 120 40, 20 40, 20 140))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                140\n              ],\n              [\n                120,\n                40\n              ],\n              [\n                20,\n                40\n              ],\n              [\n                20,\n                140\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((190 140, 190 20, 140 20, 20 140, 190 140))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                190,\n                140\n              ],\n              [\n                190,\n                20\n              ],\n              [\n                140,\n                20\n              ],\n              [\n                20,\n                140\n              ],\n              [\n                190,\n                140\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF2F11212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-3-3-4: two polygons touching along a boundary [dim(1){A.A.Bdy.SP-V = B.A.Bdy.NV-V}]\",\n      \"id\": \"07-025\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((120 120, 180 60, 20 20, 20 120, 120 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                120,\n                120\n              ],\n              [\n                180,\n                60\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                120\n              ],\n              [\n                120,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((300 20, 220 20, 120 120, 260 160, 300 20))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                300,\n                20\n              ],\n              [\n                220,\n                20\n              ],\n              [\n                120,\n                120\n              ],\n              [\n                260,\n                160\n              ],\n              [\n                300,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF2F11212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-3-3-5: two polygons touching along a boundary [dim(1){A.A.Bdy.SP-V = B.A.Bdy.V-EP}]\",\n      \"id\": \"07-026\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((140 120, 160 20, 20 20, 20 120, 140 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                140,\n                120\n              ],\n              [\n                160,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                120\n              ],\n              [\n                140,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((140 120, 240 160, 280 60, 160 20, 140 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                140,\n                120\n              ],\n              [\n                240,\n                160\n              ],\n              [\n                280,\n                60\n              ],\n              [\n                160,\n                20\n              ],\n              [\n                140,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF2F11212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-3-3-6: two polygons touching along a boundary [dim(1){A.A.Bdy.SP-V = B.A.Bdy.V-V}]\",\n      \"id\": \"07-027\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((120 120, 180 60, 20 20, 20 120, 120 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                120,\n                120\n              ],\n              [\n                180,\n                60\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                120\n              ],\n              [\n                120,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((280 60, 180 60, 120 120, 260 180, 280 60))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                280,\n                60\n              ],\n              [\n                180,\n                60\n              ],\n              [\n                120,\n                120\n              ],\n              [\n                260,\n                180\n              ],\n              [\n                280,\n                60\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF2F11212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-3-3-7: two polygons touching along a boundary [dim(1){A.A.Bdy.NV-NV = B.A.Bdy.V-V}]\",\n      \"id\": \"07-028\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((140 120, 160 20, 20 20, 20 120, 140 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                140,\n                120\n              ],\n              [\n                160,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                120\n              ],\n              [\n                140,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((120 200, 120 120, 40 120, 40 200, 120 200))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                120,\n                200\n              ],\n              [\n                120,\n                120\n              ],\n              [\n                40,\n                120\n              ],\n              [\n                40,\n                200\n              ],\n              [\n                120,\n                200\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF2F11212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-3-3-8: two polygons touching along a boundary [dim(1){A.A.Bdy.NV-EP = B.A.Bdy.V-V}]\",\n      \"id\": \"07-029\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((140 120, 160 20, 20 20, 20 120, 140 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                140,\n                120\n              ],\n              [\n                160,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                120\n              ],\n              [\n                140,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((160 220, 140 120, 60 120, 40 220, 160 220))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                160,\n                220\n              ],\n              [\n                140,\n                120\n              ],\n              [\n                60,\n                120\n              ],\n              [\n                40,\n                220\n              ],\n              [\n                160,\n                220\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF2F11212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-3-3-9: two polygons touching along a boundary [dim(1){A.A.Bdy.V-EP = B.A.Bdy.V-SP}]\",\n      \"id\": \"07-030\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((140 120, 160 20, 20 20, 20 120, 140 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                140,\n                120\n              ],\n              [\n                160,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                120\n              ],\n              [\n                140,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((140 120, 20 120, 20 220, 140 220, 140 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                140,\n                120\n              ],\n              [\n                20,\n                120\n              ],\n              [\n                20,\n                220\n              ],\n              [\n                140,\n                220\n              ],\n              [\n                140,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF2F11212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-3-3-10: two polygons touching along a boundary [dim(1){A.A.Bdy.V-V = B.A.Bdy.NV-NV}]\",\n      \"id\": \"07-031\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((120 120, 180 60, 20 20, 20 120, 120 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                120,\n                120\n              ],\n              [\n                180,\n                60\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                120\n              ],\n              [\n                120,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((320 20, 220 20, 80 160, 240 140, 320 20))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                320,\n                20\n              ],\n              [\n                220,\n                20\n              ],\n              [\n                80,\n                160\n              ],\n              [\n                240,\n                140\n              ],\n              [\n                320,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF2F11212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-5-1: a polygon containing another polygon [dim(2){A.A.Int = B.A.Int}, dim(1){A.A.Bdy.SP-EP = B.A.Int}]\",\n      \"id\": \"07-032\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((20 20, 20 180, 220 180, 220 20, 20 20))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                180\n              ],\n              [\n                220,\n                180\n              ],\n              [\n                220,\n                20\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((60 40, 60 140, 180 140, 180 40, 60 40))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                60,\n                40\n              ],\n              [\n                60,\n                140\n              ],\n              [\n                180,\n                140\n              ],\n              [\n                180,\n                40\n              ],\n              [\n                60,\n                40\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"212FF1FF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-5-2-1: a polygon containing another polygon [dim(2){A.A.Int = B.A.Int}, dim(0){A.A.Bdy.CP = B.A.Bdy.CP}]\",\n      \"id\": \"07-033\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((20 20, 20 180, 220 180, 220 20, 20 20))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                180\n              ],\n              [\n                220,\n                180\n              ],\n              [\n                220,\n                20\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((20 20, 80 140, 160 60, 20 20))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                80,\n                140\n              ],\n              [\n                160,\n                60\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"212F01FF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-5-2-2: a polygon containing another polygon [dim(2){A.A.Int = B.A.Int}, dim(0){A.A.Bdy.CP = B.A.Bdy.V}]\",\n      \"id\": \"07-034\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((20 20, 20 180, 220 180, 220 20, 20 20))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                180\n              ],\n              [\n                220,\n                180\n              ],\n              [\n                220,\n                20\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((160 60, 20 20, 100 140, 160 60))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                160,\n                60\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                100,\n                140\n              ],\n              [\n                160,\n                60\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"212F01FF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-5-2-3: a polygon containing another polygon [dim(2){A.A.Int = B.A.Int}, dim(0){A.A.Bdy.NV = B.A.Bdy.CP}]\",\n      \"id\": \"07-035\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((20 20, 20 180, 220 180, 220 20, 20 20))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                180\n              ],\n              [\n                220,\n                180\n              ],\n              [\n                220,\n                20\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((20 100, 140 160, 160 40, 20 100))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                100\n              ],\n              [\n                140,\n                160\n              ],\n              [\n                160,\n                40\n              ],\n              [\n                20,\n                100\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"212F01FF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-5-2-4: a polygon containing another polygon [dim(2){A.A.Int = B.A.Int}, dim(0){A.A.Bdy.NV = B.A.Bdy.V}]\",\n      \"id\": \"07-036\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((20 20, 20 180, 220 180, 220 20, 20 20))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                180\n              ],\n              [\n                220,\n                180\n              ],\n              [\n                220,\n                20\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((160 40, 20 100, 160 160, 160 40))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                160,\n                40\n              ],\n              [\n                20,\n                100\n              ],\n              [\n                160,\n                160\n              ],\n              [\n                160,\n                40\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"212F01FF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-5-2-5: a polygon containing another polygon [dim(2){A.A.Int = B.A.Int}, dim(0){A.A.Bdy.V = B.A.Bdy.CP}]\",\n      \"id\": \"07-037\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((20 20, 20 180, 220 180, 220 20, 20 20))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                180\n              ],\n              [\n                220,\n                180\n              ],\n              [\n                220,\n                20\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((20 180, 180 120, 80 40, 20 180))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                180\n              ],\n              [\n                180,\n                120\n              ],\n              [\n                80,\n                40\n              ],\n              [\n                20,\n                180\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"212F01FF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-5-2-6: a polygon containing another polygon [dim(2){A.A.Int = B.A.Int}, dim(0){A.A.Bdy.V = B.A.Bdy.V}]\",\n      \"id\": \"07-038\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((20 20, 20 180, 220 180, 220 20, 20 20))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                180\n              ],\n              [\n                220,\n                180\n              ],\n              [\n                220,\n                20\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((180 120, 100 40, 20 180, 180 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                180,\n                120\n              ],\n              [\n                100,\n                40\n              ],\n              [\n                20,\n                180\n              ],\n              [\n                180,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"212F01FF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-5-3-1: a polygon containing another polygon [dim(2){A.A.Int = B.A.Int}, dim(0){A.A.Bdy.CP = B.A.Bdy.CP}, dim(0){A.A.Bdy.NV = B.A.Bdy.V}]\",\n      \"id\": \"07-039\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((20 20, 20 180, 220 180, 220 20, 20 20))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                180\n              ],\n              [\n                220,\n                180\n              ],\n              [\n                220,\n                20\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((20 20, 140 40, 140 120, 20 160, 80 80, 20 20))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                140,\n                40\n              ],\n              [\n                140,\n                120\n              ],\n              [\n                20,\n                160\n              ],\n              [\n                80,\n                80\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"212F01FF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-5-3-2: a polygon containing another polygon [dim(2){A.A.Int = B.A.Int}, dim(0){A.A.Bdy.CP = B.A.Bdy.CP}, dim(0){A.A.Bdy.V = B.A.Bdy.V}]\",\n      \"id\": \"07-040\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((20 20, 20 180, 220 180, 220 20, 20 20))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                180\n              ],\n              [\n                220,\n                180\n              ],\n              [\n                220,\n                20\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((20 20, 140 40, 140 140, 20 180, 80 100, 20 20))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                140,\n                40\n              ],\n              [\n                140,\n                140\n              ],\n              [\n                20,\n                180\n              ],\n              [\n                80,\n                100\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"212F01FF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-5-3-3: a polygon containing another polygon [dim(2){A.A.Int = B.A.Int}, dim(0){A.A.Bdy.NV = B.A.Bdy.V}, dim(0){A.A.Bdy.NV = B.A.Bdy.V}]\",\n      \"id\": \"07-041\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((20 20, 20 180, 220 180, 220 20, 20 20))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                180\n              ],\n              [\n                220,\n                180\n              ],\n              [\n                220,\n                20\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((40 180, 60 100, 180 100, 200 180, 120 120, 40 180))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                40,\n                180\n              ],\n              [\n                60,\n                100\n              ],\n              [\n                180,\n                100\n              ],\n              [\n                200,\n                180\n              ],\n              [\n                120,\n                120\n              ],\n              [\n                40,\n                180\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"212F01FF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-5-3-4: a polygon containing another polygon [dim(2){A.A.Int = B.A.Int}, dim(0){A.A.Bdy.V = B.A.Bdy.CP}, dim(0){A.A.Bdy.V = B.A.Bdy.V}]\",\n      \"id\": \"07-042\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((20 20, 20 180, 220 180, 220 20, 20 20))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                180\n              ],\n              [\n                220,\n                180\n              ],\n              [\n                220,\n                20\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((20 180, 60 80, 180 80, 220 180, 120 120, 20 180))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                180\n              ],\n              [\n                60,\n                80\n              ],\n              [\n                180,\n                80\n              ],\n              [\n                220,\n                180\n              ],\n              [\n                120,\n                120\n              ],\n              [\n                20,\n                180\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"212F01FF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-5-3-5: a polygon containing another polygon [dim(2){A.A.Int = B.A.Int}, dim(0){A.A.Bdy.V = B.A.Bdy.V}, dim(0){A.A.Bdy.NV = B.A.Bdy.V}, dim(0){A.A.Bdy.NV = B.A.Bdy.V}]\",\n      \"id\": \"07-043\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((20 20, 20 180, 220 180, 220 20, 20 20))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                180\n              ],\n              [\n                220,\n                180\n              ],\n              [\n                220,\n                20\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((40 60, 20 180, 100 100, 140 180, 160 120, 220 100, 140 40, 40 60))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                40,\n                60\n              ],\n              [\n                20,\n                180\n              ],\n              [\n                100,\n                100\n              ],\n              [\n                140,\n                180\n              ],\n              [\n                160,\n                120\n              ],\n              [\n                220,\n                100\n              ],\n              [\n                140,\n                40\n              ],\n              [\n                40,\n                60\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"212F01FF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-5-3-6: a polygon containing another polygon [dim(2){A.A.Int = B.A.Int}, dim(0){A.A.Bdy.V = B.A.Bdy.V}, dim(0){A.A.Bdy.V = B.A.Bdy.V}]\",\n      \"id\": \"07-044\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((20 20, 20 180, 220 180, 220 20, 20 20))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                180\n              ],\n              [\n                220,\n                180\n              ],\n              [\n                220,\n                20\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((60 100, 180 100, 220 180, 120 140, 20 180, 60 100))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                60,\n                100\n              ],\n              [\n                180,\n                100\n              ],\n              [\n                220,\n                180\n              ],\n              [\n                120,\n                140\n              ],\n              [\n                20,\n                180\n              ],\n              [\n                60,\n                100\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"212F01FF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-5-4-1: a polygon containing another polygon [dim(2){A.A.Int = B.A.Int}, dim(1){A.A.Bdy.SP-NV = B.A.Bdy.SP-V}]\",\n      \"id\": \"07-045\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((20 20, 20 180, 220 180, 220 20, 20 20))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                180\n              ],\n              [\n                220,\n                180\n              ],\n              [\n                220,\n                20\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((20 20, 20 140, 120 120, 120 40, 20 20))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                140\n              ],\n              [\n                120,\n                120\n              ],\n              [\n                120,\n                40\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"212F11FF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-5-4-2: a polygon containing another polygon [dim(2){A.A.Int = B.A.Int}, dim(1){A.A.Bdy.SP-V = B.A.Bdy.SP-V)}]\",\n      \"id\": \"07-046\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((20 20, 20 180, 220 180, 220 20, 20 20))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                180\n              ],\n              [\n                220,\n                180\n              ],\n              [\n                220,\n                20\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((20 20, 20 180, 140 140, 140 60, 20 20))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                180\n              ],\n              [\n                140,\n                140\n              ],\n              [\n                140,\n                60\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"212F11FF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-5-4-3: a polygon containing another polygon [dim(2){A.A.Int = B.A.Int}, dim(1){A.A.Bdy.SP-NV = B.A.Bdy.V-EP}]\",\n      \"id\": \"07-047\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((20 20, 20 180, 220 180, 220 20, 20 20))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                180\n              ],\n              [\n                220,\n                180\n              ],\n              [\n                220,\n                20\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((20 20, 120 40, 120 120, 20 140, 20 20))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                120,\n                40\n              ],\n              [\n                120,\n                120\n              ],\n              [\n                20,\n                140\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"212F11FF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-5-4-4: a polygon containing another polygon [dim(2){A.A.Int = B.A.Int}, dim(1){A.A.Bdy.SP-NV = B.A.Bdy.V-V}]\",\n      \"id\": \"07-048\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((20 20, 20 180, 220 180, 220 20, 20 20))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                180\n              ],\n              [\n                220,\n                180\n              ],\n              [\n                220,\n                20\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((120 40, 20 20, 20 140, 120 120, 120 40))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                120,\n                40\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                140\n              ],\n              [\n                120,\n                120\n              ],\n              [\n                120,\n                40\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"212F11FF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-5-4-5: a polygon containing another polygon [dim(2){A.A.Int = B.A.Int}, dim(1){A.A.Bdy.SP-V = B.A.Bdy.V-EP}]\",\n      \"id\": \"07-049\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((20 20, 20 180, 220 180, 220 20, 20 20))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                180\n              ],\n              [\n                220,\n                180\n              ],\n              [\n                220,\n                20\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((20 20, 140 60, 140 140, 20 180, 20 20))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                140,\n                60\n              ],\n              [\n                140,\n                140\n              ],\n              [\n                20,\n                180\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"212F11FF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-5-4-6: a polygon containing another polygon [dim(2){A.A.Int = B.A.Int}, dim(1){A.A.Bdy.SP-V = B.A.Bdy.V-V}]\",\n      \"id\": \"07-050\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((20 20, 20 180, 220 180, 220 20, 20 20))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                180\n              ],\n              [\n                220,\n                180\n              ],\n              [\n                220,\n                20\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((140 60, 20 20, 20 180, 140 140, 140 60))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                140,\n                60\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                180\n              ],\n              [\n                140,\n                140\n              ],\n              [\n                140,\n                60\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"212F11FF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-5-4-7: a polygon containing another polygon [dim(2){A.A.Int = B.A.Int}, dim(1){A.A.Bdy.NV-EP = B.A.Bdy.V-EP}]\",\n      \"id\": \"07-051\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((20 20, 20 180, 220 180, 220 20, 20 20))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                180\n              ],\n              [\n                220,\n                180\n              ],\n              [\n                220,\n                20\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((20 20, 60 120, 140 120, 180 20, 20 20))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                60,\n                120\n              ],\n              [\n                140,\n                120\n              ],\n              [\n                180,\n                20\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"212F11FF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-5-4-8: a polygon containing another polygon [dim(2){A.A.Int = B.A.Int}, dim(1){A.A.Bdy.NV-NV = B.A.Bdy.V-EP}]\",\n      \"id\": \"07-052\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((20 20, 20 180, 220 180, 220 20, 20 20))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                180\n              ],\n              [\n                220,\n                180\n              ],\n              [\n                220,\n                20\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((20 40, 120 40, 120 120, 20 140, 20 40))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                40\n              ],\n              [\n                120,\n                40\n              ],\n              [\n                120,\n                120\n              ],\n              [\n                20,\n                140\n              ],\n              [\n                20,\n                40\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"212F11FF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-5-5-1: a polygon containing another polygon [dim(2){A.A.Int = B.A.Int}, dim(1){A.A.Bdy.SP-V = B.A.Bdy.SP-V}, dim(1){A.A.Bdy.(NV, V) = B.A.Bdy.(V, V)}]\",\n      \"id\": \"07-053\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((20 20, 20 180, 220 180, 220 20, 20 20))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                180\n              ],\n              [\n                220,\n                180\n              ],\n              [\n                220,\n                20\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((20 20, 20 180, 60 120, 100 180, 140 120, 220 180, 200 120, 140 60, 20 20))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                180\n              ],\n              [\n                60,\n                120\n              ],\n              [\n                100,\n                180\n              ],\n              [\n                140,\n                120\n              ],\n              [\n                220,\n                180\n              ],\n              [\n                200,\n                120\n              ],\n              [\n                140,\n                60\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"212F11FF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-6-1: a polygon overlapping another polygon [dim(2){A.A.Int = B.A.Int}]\",\n      \"id\": \"07-054\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((150 150, 330 150, 250 70, 70 70, 150 150))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                150,\n                150\n              ],\n              [\n                330,\n                150\n              ],\n              [\n                250,\n                70\n              ],\n              [\n                70,\n                70\n              ],\n              [\n                150,\n                150\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((150 150, 270 150, 140 20, 20 20, 150 150))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                150,\n                150\n              ],\n              [\n                270,\n                150\n              ],\n              [\n                140,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                150,\n                150\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"212111212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-6-2: a polygon overlapping another polygon [dim(2){A.A.Int = B.A.Int}]\",\n      \"id\": \"07-055\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((150 150, 270 150, 330 150, 250 70, 190 70, 70 70, 150 150))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                150,\n                150\n              ],\n              [\n                270,\n                150\n              ],\n              [\n                330,\n                150\n              ],\n              [\n                250,\n                70\n              ],\n              [\n                190,\n                70\n              ],\n              [\n                70,\n                70\n              ],\n              [\n                150,\n                150\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((150 150, 270 150, 190 70, 140 20, 20 20, 70 70, 150 150))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                150,\n                150\n              ],\n              [\n                270,\n                150\n              ],\n              [\n                190,\n                70\n              ],\n              [\n                140,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                70,\n                70\n              ],\n              [\n                150,\n                150\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"212111212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-6-3: spiky polygons overlapping; boundary &lt;-&gt; boundary intersecting at 0 dimension [dim(2){A.A.Int = B.A.Int}]\",\n      \"id\": \"07-056\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((20 20, 60 50, 20 40, 60 70, 20 60, 60 90, 20 90, 70 110, 20 130, 80 130, 20 150, 80 160, 20 170, 80 180, 20 200, 80 200, 30 240, 80 220, 50 260, 100 220, 100 260, 120 220, 130 260, 140 220, 150 280, 150 190, 160 280, 170 190, 180 280, 190 190, 200 280, 210 190, 220 280, 230 190, 240 260, 250 230, 260 260, 260 220, 290 270, 290 220, 330 260, 300 210, 340 240, 290 180, 340 210, 290 170, 350 170, 240 150, 350 150, 240 140, 350 130, 240 120, 350 120, 240 110, 350 110, 240 100, 350 100, 240 90, 350 90, 240 80, 350 80, 300 70, 340 60, 290 60, 340 40, 300 50, 340 20, 270 60, 310 20, 250 60, 270 20, 230 60, 240 20, 210 60, 210 20, 190 70, 190 20, 180 90, 170 20, 160 90, 150 20, 140 90, 130 20, 120 90, 110 20, 100 90, 100 20, 90 60, 80 20, 70 40, 20 20))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                60,\n                50\n              ],\n              [\n                20,\n                40\n              ],\n              [\n                60,\n                70\n              ],\n              [\n                20,\n                60\n              ],\n              [\n                60,\n                90\n              ],\n              [\n                20,\n                90\n              ],\n              [\n                70,\n                110\n              ],\n              [\n                20,\n                130\n              ],\n              [\n                80,\n                130\n              ],\n              [\n                20,\n                150\n              ],\n              [\n                80,\n                160\n              ],\n              [\n                20,\n                170\n              ],\n              [\n                80,\n                180\n              ],\n              [\n                20,\n                200\n              ],\n              [\n                80,\n                200\n              ],\n              [\n                30,\n                240\n              ],\n              [\n                80,\n                220\n              ],\n              [\n                50,\n                260\n              ],\n              [\n                100,\n                220\n              ],\n              [\n                100,\n                260\n              ],\n              [\n                120,\n                220\n              ],\n              [\n                130,\n                260\n              ],\n              [\n                140,\n                220\n              ],\n              [\n                150,\n                280\n              ],\n              [\n                150,\n                190\n              ],\n              [\n                160,\n                280\n              ],\n              [\n                170,\n                190\n              ],\n              [\n                180,\n                280\n              ],\n              [\n                190,\n                190\n              ],\n              [\n                200,\n                280\n              ],\n              [\n                210,\n                190\n              ],\n              [\n                220,\n                280\n              ],\n              [\n                230,\n                190\n              ],\n              [\n                240,\n                260\n              ],\n              [\n                250,\n                230\n              ],\n              [\n                260,\n                260\n              ],\n              [\n                260,\n                220\n              ],\n              [\n                290,\n                270\n              ],\n              [\n                290,\n                220\n              ],\n              [\n                330,\n                260\n              ],\n              [\n                300,\n                210\n              ],\n              [\n                340,\n                240\n              ],\n              [\n                290,\n                180\n              ],\n              [\n                340,\n                210\n              ],\n              [\n                290,\n                170\n              ],\n              [\n                350,\n                170\n              ],\n              [\n                240,\n                150\n              ],\n              [\n                350,\n                150\n              ],\n              [\n                240,\n                140\n              ],\n              [\n                350,\n                130\n              ],\n              [\n                240,\n                120\n              ],\n              [\n                350,\n                120\n              ],\n              [\n                240,\n                110\n              ],\n              [\n                350,\n                110\n              ],\n              [\n                240,\n                100\n              ],\n              [\n                350,\n                100\n              ],\n              [\n                240,\n                90\n              ],\n              [\n                350,\n                90\n              ],\n              [\n                240,\n                80\n              ],\n              [\n                350,\n                80\n              ],\n              [\n                300,\n                70\n              ],\n              [\n                340,\n                60\n              ],\n              [\n                290,\n                60\n              ],\n              [\n                340,\n                40\n              ],\n              [\n                300,\n                50\n              ],\n              [\n                340,\n                20\n              ],\n              [\n                270,\n                60\n              ],\n              [\n                310,\n                20\n              ],\n              [\n                250,\n                60\n              ],\n              [\n                270,\n                20\n              ],\n              [\n                230,\n                60\n              ],\n              [\n                240,\n                20\n              ],\n              [\n                210,\n                60\n              ],\n              [\n                210,\n                20\n              ],\n              [\n                190,\n                70\n              ],\n              [\n                190,\n                20\n              ],\n              [\n                180,\n                90\n              ],\n              [\n                170,\n                20\n              ],\n              [\n                160,\n                90\n              ],\n              [\n                150,\n                20\n              ],\n              [\n                140,\n                90\n              ],\n              [\n                130,\n                20\n              ],\n              [\n                120,\n                90\n              ],\n              [\n                110,\n                20\n              ],\n              [\n                100,\n                90\n              ],\n              [\n                100,\n                20\n              ],\n              [\n                90,\n                60\n              ],\n              [\n                80,\n                20\n              ],\n              [\n                70,\n                40\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((190 140, 140 130, 200 160, 130 150, 210 170, 130 170, 210 180, 120 190, 220 200, 120 200, 250 210, 120 210, 250 220, 120 220, 250 230, 120 240, 230 240, 120 250, 240 260, 120 260, 240 270, 120 270, 270 290, 120 290, 230 300, 150 310, 250 310, 180 320, 250 320, 200 360, 260 330, 240 360, 280 320, 290 370, 290 320, 320 360, 310 320, 360 360, 310 310, 380 340, 310 290, 390 330, 310 280, 410 310, 310 270, 420 280, 310 260, 430 250, 300 250, 440 240, 300 240, 450 230, 280 220, 440 220, 280 210, 440 210, 300 200, 430 190, 300 190, 440 180, 330 180, 430 150, 320 180, 420 130, 300 180, 410 120, 280 180, 400 110, 280 170, 390 90, 280 160, 400 70, 270 160, 450 30, 260 160, 420 30, 250 160, 390 30, 240 160, 370 30, 230 160, 360 30, 230 150, 330 50, 240 130, 330 30, 230 130, 310 30, 220 130, 280 30, 230 100, 270 40, 220 110, 250 30, 210 130, 240 30, 210 100, 220 40, 200 90, 200 20, 190 100, 180 30, 20 20, 180 40, 20 30, 180 50, 20 50, 180 60, 30 60, 180 70, 20 70, 170 80, 80 80, 170 90, 20 80, 180 100, 40 100, 200 110, 60 110, 200 120, 120 120, 190 140))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                190,\n                140\n              ],\n              [\n                140,\n                130\n              ],\n              [\n                200,\n                160\n              ],\n              [\n                130,\n                150\n              ],\n              [\n                210,\n                170\n              ],\n              [\n                130,\n                170\n              ],\n              [\n                210,\n                180\n              ],\n              [\n                120,\n                190\n              ],\n              [\n                220,\n                200\n              ],\n              [\n                120,\n                200\n              ],\n              [\n                250,\n                210\n              ],\n              [\n                120,\n                210\n              ],\n              [\n                250,\n                220\n              ],\n              [\n                120,\n                220\n              ],\n              [\n                250,\n                230\n              ],\n              [\n                120,\n                240\n              ],\n              [\n                230,\n                240\n              ],\n              [\n                120,\n                250\n              ],\n              [\n                240,\n                260\n              ],\n              [\n                120,\n                260\n              ],\n              [\n                240,\n                270\n              ],\n              [\n                120,\n                270\n              ],\n              [\n                270,\n                290\n              ],\n              [\n                120,\n                290\n              ],\n              [\n                230,\n                300\n              ],\n              [\n                150,\n                310\n              ],\n              [\n                250,\n                310\n              ],\n              [\n                180,\n                320\n              ],\n              [\n                250,\n                320\n              ],\n              [\n                200,\n                360\n              ],\n              [\n                260,\n                330\n              ],\n              [\n                240,\n                360\n              ],\n              [\n                280,\n                320\n              ],\n              [\n                290,\n                370\n              ],\n              [\n                290,\n                320\n              ],\n              [\n                320,\n                360\n              ],\n              [\n                310,\n                320\n              ],\n              [\n                360,\n                360\n              ],\n              [\n                310,\n                310\n              ],\n              [\n                380,\n                340\n              ],\n              [\n                310,\n                290\n              ],\n              [\n                390,\n                330\n              ],\n              [\n                310,\n                280\n              ],\n              [\n                410,\n                310\n              ],\n              [\n                310,\n                270\n              ],\n              [\n                420,\n                280\n              ],\n              [\n                310,\n                260\n              ],\n              [\n                430,\n                250\n              ],\n              [\n                300,\n                250\n              ],\n              [\n                440,\n                240\n              ],\n              [\n                300,\n                240\n              ],\n              [\n                450,\n                230\n              ],\n              [\n                280,\n                220\n              ],\n              [\n                440,\n                220\n              ],\n              [\n                280,\n                210\n              ],\n              [\n                440,\n                210\n              ],\n              [\n                300,\n                200\n              ],\n              [\n                430,\n                190\n              ],\n              [\n                300,\n                190\n              ],\n              [\n                440,\n                180\n              ],\n              [\n                330,\n                180\n              ],\n              [\n                430,\n                150\n              ],\n              [\n                320,\n                180\n              ],\n              [\n                420,\n                130\n              ],\n              [\n                300,\n                180\n              ],\n              [\n                410,\n                120\n              ],\n              [\n                280,\n                180\n              ],\n              [\n                400,\n                110\n              ],\n              [\n                280,\n                170\n              ],\n              [\n                390,\n                90\n              ],\n              [\n                280,\n                160\n              ],\n              [\n                400,\n                70\n              ],\n              [\n                270,\n                160\n              ],\n              [\n                450,\n                30\n              ],\n              [\n                260,\n                160\n              ],\n              [\n                420,\n                30\n              ],\n              [\n                250,\n                160\n              ],\n              [\n                390,\n                30\n              ],\n              [\n                240,\n                160\n              ],\n              [\n                370,\n                30\n              ],\n              [\n                230,\n                160\n              ],\n              [\n                360,\n                30\n              ],\n              [\n                230,\n                150\n              ],\n              [\n                330,\n                50\n              ],\n              [\n                240,\n                130\n              ],\n              [\n                330,\n                30\n              ],\n              [\n                230,\n                130\n              ],\n              [\n                310,\n                30\n              ],\n              [\n                220,\n                130\n              ],\n              [\n                280,\n                30\n              ],\n              [\n                230,\n                100\n              ],\n              [\n                270,\n                40\n              ],\n              [\n                220,\n                110\n              ],\n              [\n                250,\n                30\n              ],\n              [\n                210,\n                130\n              ],\n              [\n                240,\n                30\n              ],\n              [\n                210,\n                100\n              ],\n              [\n                220,\n                40\n              ],\n              [\n                200,\n                90\n              ],\n              [\n                200,\n                20\n              ],\n              [\n                190,\n                100\n              ],\n              [\n                180,\n                30\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                180,\n                40\n              ],\n              [\n                20,\n                30\n              ],\n              [\n                180,\n                50\n              ],\n              [\n                20,\n                50\n              ],\n              [\n                180,\n                60\n              ],\n              [\n                30,\n                60\n              ],\n              [\n                180,\n                70\n              ],\n              [\n                20,\n                70\n              ],\n              [\n                170,\n                80\n              ],\n              [\n                80,\n                80\n              ],\n              [\n                170,\n                90\n              ],\n              [\n                20,\n                80\n              ],\n              [\n                180,\n                100\n              ],\n              [\n                40,\n                100\n              ],\n              [\n                200,\n                110\n              ],\n              [\n                60,\n                110\n              ],\n              [\n                200,\n                120\n              ],\n              [\n                120,\n                120\n              ],\n              [\n                190,\n                140\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"212101212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-6-4: spiky polygons overlapping; boundary &lt;-&gt; boundary intersecting at 1 dimension at a few locations [dim(2){A.A.Int = B.A.Int}]\",\n      \"id\": \"07-057\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((70 150, 20 160, 110 160, 20 180, 100 200, 20 200, 190 210, 20 210, 160 220, 20 220, 150 230, 60 240, 180 250, 20 260, 170 260, 60 270, 160 270, 100 310, 170 280, 200 260, 180 230, 210 260, 130 330, 230 250, 210 290, 240 250, 230 210, 260 300, 250 230, 270 300, 270 240, 300 340, 280 250, 320 330, 290 250, 340 350, 290 240, 350 360, 270 190, 350 340, 290 200, 350 330, 300 190, 360 320, 310 190, 360 300, 320 200, 360 280, 330 200, 360 260, 340 200, 370 260, 340 180, 390 290, 340 170, 400 260, 350 170, 400 250, 350 160, 410 240, 350 150, 400 170, 350 140, 310 170, 340 140, 270 180, 330 140, 260 170, 310 140, 240 170, 290 140, 200 190, 270 140, 180 190, 260 140, 170 190, 260 130, 170 180, 250 130, 170 170, 240 120, 170 160, 210 120, 170 150, 210 110, 340 130, 230 110, 420 140, 220 100, 410 130, 220 90, 400 120, 220 80, 390 110, 220 70, 420 110, 240 70, 420 100, 260 70, 420 90, 280 70, 430 80, 230 60, 430 60, 270 50, 450 40, 210 50, 370 40, 260 40, 460 30, 160 40, 210 60, 200 110, 190 60, 190 120, 170 50, 180 130, 150 30, 170 130, 140 20, 160 120, 130 20, 160 150, 120 20, 160 170, 110 20, 160 190, 100 20, 150 190, 90 20, 140 180, 80 20, 120 140, 70 20, 120 150, 60 20, 110 150, 50 20, 100 140, 50 30, 90 130, 40 30, 80 120, 30 30, 80 130, 30 40, 80 140, 20 40, 70 140, 40 90, 60 130, 20 90, 60 140, 20 130, 70 150))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                70,\n                150\n              ],\n              [\n                20,\n                160\n              ],\n              [\n                110,\n                160\n              ],\n              [\n                20,\n                180\n              ],\n              [\n                100,\n                200\n              ],\n              [\n                20,\n                200\n              ],\n              [\n                190,\n                210\n              ],\n              [\n                20,\n                210\n              ],\n              [\n                160,\n                220\n              ],\n              [\n                20,\n                220\n              ],\n              [\n                150,\n                230\n              ],\n              [\n                60,\n                240\n              ],\n              [\n                180,\n                250\n              ],\n              [\n                20,\n                260\n              ],\n              [\n                170,\n                260\n              ],\n              [\n                60,\n                270\n              ],\n              [\n                160,\n                270\n              ],\n              [\n                100,\n                310\n              ],\n              [\n                170,\n                280\n              ],\n              [\n                200,\n                260\n              ],\n              [\n                180,\n                230\n              ],\n              [\n                210,\n                260\n              ],\n              [\n                130,\n                330\n              ],\n              [\n                230,\n                250\n              ],\n              [\n                210,\n                290\n              ],\n              [\n                240,\n                250\n              ],\n              [\n                230,\n                210\n              ],\n              [\n                260,\n                300\n              ],\n              [\n                250,\n                230\n              ],\n              [\n                270,\n                300\n              ],\n              [\n                270,\n                240\n              ],\n              [\n                300,\n                340\n              ],\n              [\n                280,\n                250\n              ],\n              [\n                320,\n                330\n              ],\n              [\n                290,\n                250\n              ],\n              [\n                340,\n                350\n              ],\n              [\n                290,\n                240\n              ],\n              [\n                350,\n                360\n              ],\n              [\n                270,\n                190\n              ],\n              [\n                350,\n                340\n              ],\n              [\n                290,\n                200\n              ],\n              [\n                350,\n                330\n              ],\n              [\n                300,\n                190\n              ],\n              [\n                360,\n                320\n              ],\n              [\n                310,\n                190\n              ],\n              [\n                360,\n                300\n              ],\n              [\n                320,\n                200\n              ],\n              [\n                360,\n                280\n              ],\n              [\n                330,\n                200\n              ],\n              [\n                360,\n                260\n              ],\n              [\n                340,\n                200\n              ],\n              [\n                370,\n                260\n              ],\n              [\n                340,\n                180\n              ],\n              [\n                390,\n                290\n              ],\n              [\n                340,\n                170\n              ],\n              [\n                400,\n                260\n              ],\n              [\n                350,\n                170\n              ],\n              [\n                400,\n                250\n              ],\n              [\n                350,\n                160\n              ],\n              [\n                410,\n                240\n              ],\n              [\n                350,\n                150\n              ],\n              [\n                400,\n                170\n              ],\n              [\n                350,\n                140\n              ],\n              [\n                310,\n                170\n              ],\n              [\n                340,\n                140\n              ],\n              [\n                270,\n                180\n              ],\n              [\n                330,\n                140\n              ],\n              [\n                260,\n                170\n              ],\n              [\n                310,\n                140\n              ],\n              [\n                240,\n                170\n              ],\n              [\n                290,\n                140\n              ],\n              [\n                200,\n                190\n              ],\n              [\n                270,\n                140\n              ],\n              [\n                180,\n                190\n              ],\n              [\n                260,\n                140\n              ],\n              [\n                170,\n                190\n              ],\n              [\n                260,\n                130\n              ],\n              [\n                170,\n                180\n              ],\n              [\n                250,\n                130\n              ],\n              [\n                170,\n                170\n              ],\n              [\n                240,\n                120\n              ],\n              [\n                170,\n                160\n              ],\n              [\n                210,\n                120\n              ],\n              [\n                170,\n                150\n              ],\n              [\n                210,\n                110\n              ],\n              [\n                340,\n                130\n              ],\n              [\n                230,\n                110\n              ],\n              [\n                420,\n                140\n              ],\n              [\n                220,\n                100\n              ],\n              [\n                410,\n                130\n              ],\n              [\n                220,\n                90\n              ],\n              [\n                400,\n                120\n              ],\n              [\n                220,\n                80\n              ],\n              [\n                390,\n                110\n              ],\n              [\n                220,\n                70\n              ],\n              [\n                420,\n                110\n              ],\n              [\n                240,\n                70\n              ],\n              [\n                420,\n                100\n              ],\n              [\n                260,\n                70\n              ],\n              [\n                420,\n                90\n              ],\n              [\n                280,\n                70\n              ],\n              [\n                430,\n                80\n              ],\n              [\n                230,\n                60\n              ],\n              [\n                430,\n                60\n              ],\n              [\n                270,\n                50\n              ],\n              [\n                450,\n                40\n              ],\n              [\n                210,\n                50\n              ],\n              [\n                370,\n                40\n              ],\n              [\n                260,\n                40\n              ],\n              [\n                460,\n                30\n              ],\n              [\n                160,\n                40\n              ],\n              [\n                210,\n                60\n              ],\n              [\n                200,\n                110\n              ],\n              [\n                190,\n                60\n              ],\n              [\n                190,\n                120\n              ],\n              [\n                170,\n                50\n              ],\n              [\n                180,\n                130\n              ],\n              [\n                150,\n                30\n              ],\n              [\n                170,\n                130\n              ],\n              [\n                140,\n                20\n              ],\n              [\n                160,\n                120\n              ],\n              [\n                130,\n                20\n              ],\n              [\n                160,\n                150\n              ],\n              [\n                120,\n                20\n              ],\n              [\n                160,\n                170\n              ],\n              [\n                110,\n                20\n              ],\n              [\n                160,\n                190\n              ],\n              [\n                100,\n                20\n              ],\n              [\n                150,\n                190\n              ],\n              [\n                90,\n                20\n              ],\n              [\n                140,\n                180\n              ],\n              [\n                80,\n                20\n              ],\n              [\n                120,\n                140\n              ],\n              [\n                70,\n                20\n              ],\n              [\n                120,\n                150\n              ],\n              [\n                60,\n                20\n              ],\n              [\n                110,\n                150\n              ],\n              [\n                50,\n                20\n              ],\n              [\n                100,\n                140\n              ],\n              [\n                50,\n                30\n              ],\n              [\n                90,\n                130\n              ],\n              [\n                40,\n                30\n              ],\n              [\n                80,\n                120\n              ],\n              [\n                30,\n                30\n              ],\n              [\n                80,\n                130\n              ],\n              [\n                30,\n                40\n              ],\n              [\n                80,\n                140\n              ],\n              [\n                20,\n                40\n              ],\n              [\n                70,\n                140\n              ],\n              [\n                40,\n                90\n              ],\n              [\n                60,\n                130\n              ],\n              [\n                20,\n                90\n              ],\n              [\n                60,\n                140\n              ],\n              [\n                20,\n                130\n              ],\n              [\n                70,\n                150\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((190 140, 140 130, 200 160, 130 150, 210 170, 130 170, 210 180, 120 190, 220 200, 120 200, 250 210, 120 210, 250 220, 120 220, 250 230, 120 240, 230 240, 120 250, 240 260, 120 260, 240 270, 120 270, 270 290, 120 290, 230 300, 150 310, 250 310, 180 320, 250 320, 200 360, 260 330, 240 360, 280 320, 290 370, 290 320, 320 360, 310 320, 360 360, 310 310, 380 340, 310 290, 390 330, 310 280, 410 310, 310 270, 420 280, 310 260, 430 250, 300 250, 440 240, 300 240, 450 230, 280 220, 440 220, 280 210, 440 210, 300 200, 430 190, 300 190, 440 180, 330 180, 430 150, 320 180, 420 130, 300 180, 410 120, 280 180, 400 110, 280 170, 390 90, 280 160, 400 70, 270 160, 450 30, 260 160, 420 30, 250 160, 390 30, 240 160, 370 30, 230 160, 360 30, 230 150, 330 50, 240 130, 330 30, 230 130, 310 30, 220 130, 280 30, 230 100, 270 40, 220 110, 250 30, 210 130, 240 30, 210 100, 220 40, 200 90, 200 20, 190 100, 180 30, 20 20, 180 40, 20 30, 180 50, 20 50, 180 60, 30 60, 180 70, 20 70, 170 80, 80 80, 170 90, 20 80, 180 100, 40 100, 200 110, 60 110, 200 120, 120 120, 190 140))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                190,\n                140\n              ],\n              [\n                140,\n                130\n              ],\n              [\n                200,\n                160\n              ],\n              [\n                130,\n                150\n              ],\n              [\n                210,\n                170\n              ],\n              [\n                130,\n                170\n              ],\n              [\n                210,\n                180\n              ],\n              [\n                120,\n                190\n              ],\n              [\n                220,\n                200\n              ],\n              [\n                120,\n                200\n              ],\n              [\n                250,\n                210\n              ],\n              [\n                120,\n                210\n              ],\n              [\n                250,\n                220\n              ],\n              [\n                120,\n                220\n              ],\n              [\n                250,\n                230\n              ],\n              [\n                120,\n                240\n              ],\n              [\n                230,\n                240\n              ],\n              [\n                120,\n                250\n              ],\n              [\n                240,\n                260\n              ],\n              [\n                120,\n                260\n              ],\n              [\n                240,\n                270\n              ],\n              [\n                120,\n                270\n              ],\n              [\n                270,\n                290\n              ],\n              [\n                120,\n                290\n              ],\n              [\n                230,\n                300\n              ],\n              [\n                150,\n                310\n              ],\n              [\n                250,\n                310\n              ],\n              [\n                180,\n                320\n              ],\n              [\n                250,\n                320\n              ],\n              [\n                200,\n                360\n              ],\n              [\n                260,\n                330\n              ],\n              [\n                240,\n                360\n              ],\n              [\n                280,\n                320\n              ],\n              [\n                290,\n                370\n              ],\n              [\n                290,\n                320\n              ],\n              [\n                320,\n                360\n              ],\n              [\n                310,\n                320\n              ],\n              [\n                360,\n                360\n              ],\n              [\n                310,\n                310\n              ],\n              [\n                380,\n                340\n              ],\n              [\n                310,\n                290\n              ],\n              [\n                390,\n                330\n              ],\n              [\n                310,\n                280\n              ],\n              [\n                410,\n                310\n              ],\n              [\n                310,\n                270\n              ],\n              [\n                420,\n                280\n              ],\n              [\n                310,\n                260\n              ],\n              [\n                430,\n                250\n              ],\n              [\n                300,\n                250\n              ],\n              [\n                440,\n                240\n              ],\n              [\n                300,\n                240\n              ],\n              [\n                450,\n                230\n              ],\n              [\n                280,\n                220\n              ],\n              [\n                440,\n                220\n              ],\n              [\n                280,\n                210\n              ],\n              [\n                440,\n                210\n              ],\n              [\n                300,\n                200\n              ],\n              [\n                430,\n                190\n              ],\n              [\n                300,\n                190\n              ],\n              [\n                440,\n                180\n              ],\n              [\n                330,\n                180\n              ],\n              [\n                430,\n                150\n              ],\n              [\n                320,\n                180\n              ],\n              [\n                420,\n                130\n              ],\n              [\n                300,\n                180\n              ],\n              [\n                410,\n                120\n              ],\n              [\n                280,\n                180\n              ],\n              [\n                400,\n                110\n              ],\n              [\n                280,\n                170\n              ],\n              [\n                390,\n                90\n              ],\n              [\n                280,\n                160\n              ],\n              [\n                400,\n                70\n              ],\n              [\n                270,\n                160\n              ],\n              [\n                450,\n                30\n              ],\n              [\n                260,\n                160\n              ],\n              [\n                420,\n                30\n              ],\n              [\n                250,\n                160\n              ],\n              [\n                390,\n                30\n              ],\n              [\n                240,\n                160\n              ],\n              [\n                370,\n                30\n              ],\n              [\n                230,\n                160\n              ],\n              [\n                360,\n                30\n              ],\n              [\n                230,\n                150\n              ],\n              [\n                330,\n                50\n              ],\n              [\n                240,\n                130\n              ],\n              [\n                330,\n                30\n              ],\n              [\n                230,\n                130\n              ],\n              [\n                310,\n                30\n              ],\n              [\n                220,\n                130\n              ],\n              [\n                280,\n                30\n              ],\n              [\n                230,\n                100\n              ],\n              [\n                270,\n                40\n              ],\n              [\n                220,\n                110\n              ],\n              [\n                250,\n                30\n              ],\n              [\n                210,\n                130\n              ],\n              [\n                240,\n                30\n              ],\n              [\n                210,\n                100\n              ],\n              [\n                220,\n                40\n              ],\n              [\n                200,\n                90\n              ],\n              [\n                200,\n                20\n              ],\n              [\n                190,\n                100\n              ],\n              [\n                180,\n                30\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                180,\n                40\n              ],\n              [\n                20,\n                30\n              ],\n              [\n                180,\n                50\n              ],\n              [\n                20,\n                50\n              ],\n              [\n                180,\n                60\n              ],\n              [\n                30,\n                60\n              ],\n              [\n                180,\n                70\n              ],\n              [\n                20,\n                70\n              ],\n              [\n                170,\n                80\n              ],\n              [\n                80,\n                80\n              ],\n              [\n                170,\n                90\n              ],\n              [\n                20,\n                80\n              ],\n              [\n                180,\n                100\n              ],\n              [\n                40,\n                100\n              ],\n              [\n                200,\n                110\n              ],\n              [\n                60,\n                110\n              ],\n              [\n                200,\n                120\n              ],\n              [\n                120,\n                120\n              ],\n              [\n                190,\n                140\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"212111212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-6-5: a polygon overlapping another polygon [dim(2){A.A.Int = B.A.Int}, dim(0){A.A.Bdy.CP = B.A.Bdy.CP}, dim(0){A.A.Bdy.V = B.A.Bdy.V}]\",\n      \"id\": \"07-058\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((60 160, 220 160, 220 20, 60 20, 60 160))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                60,\n                160\n              ],\n              [\n                220,\n                160\n              ],\n              [\n                220,\n                20\n              ],\n              [\n                60,\n                20\n              ],\n              [\n                60,\n                160\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((60 160, 20 200, 260 200, 220 160, 140 80, 60 160))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                60,\n                160\n              ],\n              [\n                20,\n                200\n              ],\n              [\n                260,\n                200\n              ],\n              [\n                220,\n                160\n              ],\n              [\n                140,\n                80\n              ],\n              [\n                60,\n                160\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"212101212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-6-6: a polygon overlapping another polygon [dim(2){A.A.Int = B.A.Int}, dim(0){A.A.Bdy.CP = B.A.Bdy.CP}, dim(0){A.A.Bdy.V = B.A.Bdy.NV}]\",\n      \"id\": \"07-059\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((60 160, 220 160, 220 20, 60 20, 60 160))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                60,\n                160\n              ],\n              [\n                220,\n                160\n              ],\n              [\n                220,\n                20\n              ],\n              [\n                60,\n                20\n              ],\n              [\n                60,\n                160\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((60 160, 20 200, 260 200, 140 80, 60 160))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                60,\n                160\n              ],\n              [\n                20,\n                200\n              ],\n              [\n                260,\n                200\n              ],\n              [\n                140,\n                80\n              ],\n              [\n                60,\n                160\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"212101212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-6-7: a polygon overlapping another polygon [dim(2){A.A.Int = B.A.Int}, dim(0){A.A.Bdy.CP = B.A.Bdy.NV}, dim(0){A.A.Bdy.V = B.A.Bdy.NV}]\",\n      \"id\": \"07-060\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((60 160, 220 160, 220 20, 60 20, 60 160))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                60,\n                160\n              ],\n              [\n                220,\n                160\n              ],\n              [\n                220,\n                20\n              ],\n              [\n                60,\n                20\n              ],\n              [\n                60,\n                160\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((20 200, 140 80, 260 200, 20 200))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                200\n              ],\n              [\n                140,\n                80\n              ],\n              [\n                260,\n                200\n              ],\n              [\n                20,\n                200\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"212101212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-6-8: a polygon overlapping another polygon [dim(2){A.A.Int = B.A.Int}, dim(0){A.A.Bdy.CP = B.A.Bdy.V}, dim(0){A.A.Bdy.V = B.A.Bdy.V}]\",\n      \"id\": \"07-061\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((60 160, 220 160, 220 20, 60 20, 60 160))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                60,\n                160\n              ],\n              [\n                220,\n                160\n              ],\n              [\n                220,\n                20\n              ],\n              [\n                60,\n                20\n              ],\n              [\n                60,\n                160\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((20 200, 60 160, 140 80, 220 160, 260 200, 20 200))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                200\n              ],\n              [\n                60,\n                160\n              ],\n              [\n                140,\n                80\n              ],\n              [\n                220,\n                160\n              ],\n              [\n                260,\n                200\n              ],\n              [\n                20,\n                200\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"212101212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-6-9: a polygon overlapping another polygon [dim(2){A.A.Int = B.A.Int}, dim(0){A.A.Bdy.CP = B.A.Bdy.V}, dim(0){A.A.Bdy.V = B.A.Bdy.NV}]\",\n      \"id\": \"07-062\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((60 160, 220 160, 220 20, 60 20, 60 160))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                60,\n                160\n              ],\n              [\n                220,\n                160\n              ],\n              [\n                220,\n                20\n              ],\n              [\n                60,\n                20\n              ],\n              [\n                60,\n                160\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((20 200, 60 160, 140 80, 260 200, 20 200))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                200\n              ],\n              [\n                60,\n                160\n              ],\n              [\n                140,\n                80\n              ],\n              [\n                260,\n                200\n              ],\n              [\n                20,\n                200\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"212101212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-6-10: a polygon overlapping a skinny polygon [dim(2){A.A.Int = B.A.Int}, dim(0){A.A.Bdy.NV = B.A.Bdy.NV}]\",\n      \"id\": \"07-063\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((0 0, 0 200, 200 200, 200 0, 0 0))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                0,\n                0\n              ],\n              [\n                0,\n                200\n              ],\n              [\n                200,\n                200\n              ],\n              [\n                200,\n                0\n              ],\n              [\n                0,\n                0\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((100 100, 1000000 110, 10000000 100, 100 100))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                100,\n                100\n              ],\n              [\n                1000000,\n                110\n              ],\n              [\n                10000000,\n                100\n              ],\n              [\n                100,\n                100\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"212101212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-6-11: a polygon overlapping a skinny polygon [dim(2){A.A.Int = B.A.Int}, dim(0){A.A.Bdy.NV = B.A.Bdy.CP}, dim(0){A.A.Bdy.NV = B.A.Bdy.NV}]\",\n      \"id\": \"07-064\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((100 0, 100 200, 200 200, 200 0, 100 0))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                100,\n                0\n              ],\n              [\n                100,\n                200\n              ],\n              [\n                200,\n                200\n              ],\n              [\n                200,\n                0\n              ],\n              [\n                100,\n                0\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((100 100, 1000000 110, 10000000 100, 100 100))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                100,\n                100\n              ],\n              [\n                1000000,\n                110\n              ],\n              [\n                10000000,\n                100\n              ],\n              [\n                100,\n                100\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"212101212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-6-12: a polygon overlapping a skinny polygon [dim(2){A.A.Int = B.A.Int}, dim(0){A.A.Bdy.NV = B.A.Bdy.NV}]\",\n      \"id\": \"07-065\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((120 0, 120 200, 200 200, 200 0, 120 0))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                120,\n                0\n              ],\n              [\n                120,\n                200\n              ],\n              [\n                200,\n                200\n              ],\n              [\n                200,\n                0\n              ],\n              [\n                120,\n                0\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((100 100, 1000000 110, 10000000 100, 100 100))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                100,\n                100\n              ],\n              [\n                1000000,\n                110\n              ],\n              [\n                10000000,\n                100\n              ],\n              [\n                100,\n                100\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"212101212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-6-13: a polygon overlapping a skinny polygon [dim(2){A.A.Int = B.A.Int}, dim(0){A.A.Bdy.NV = B.A.Bdy.NV}]\",\n      \"id\": \"07-066\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((0 0, 0 200, 110 200, 110 0, 0 0))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                0,\n                0\n              ],\n              [\n                0,\n                200\n              ],\n              [\n                110,\n                200\n              ],\n              [\n                110,\n                0\n              ],\n              [\n                0,\n                0\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((100 100, 1000000 110, 10000000 100, 100 100))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                100,\n                100\n              ],\n              [\n                1000000,\n                110\n              ],\n              [\n                10000000,\n                100\n              ],\n              [\n                100,\n                100\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"212101212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-6-14: a polygon overlapping a skinny polygon [dim(2){A.A.Int = B.A.Int}, dim(1){A.A.Bdy.V-EP = B.A.Bdy.NV-EP}, dim(0){A.A.Bdy.CP = B.A.Bdy.CP}, dim(0){A.A.Bdy.NV = B.A.Bdy.NV}]\",\n      \"id\": \"07-067\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((100 100, 100 200, 200 200, 200 100, 100 100))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                100,\n                100\n              ],\n              [\n                100,\n                200\n              ],\n              [\n                200,\n                200\n              ],\n              [\n                200,\n                100\n              ],\n              [\n                100,\n                100\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((100 100, 2100 110, 2100 100, 100 100))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                100,\n                100\n              ],\n              [\n                2100,\n                110\n              ],\n              [\n                2100,\n                100\n              ],\n              [\n                100,\n                100\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"212111212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-6-15: a polygon overlapping a skinny polygon [dim(2){A.A.Int = B.A.Int}, dim(1){A.A.Bdy.V-EP = B.A.Bdy.NV-EP}, dim(0){A.A.Bdy.CP = B.A.Bdy.CP}, dim(0){A.A.Bdy.NV = B.A.Bdy.NV}]\",\n      \"id\": \"07-068\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((100 100, 100 200, 200 200, 200 100, 100 100))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                100,\n                100\n              ],\n              [\n                100,\n                200\n              ],\n              [\n                200,\n                200\n              ],\n              [\n                200,\n                100\n              ],\n              [\n                100,\n                100\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((100 100, 2101 110, 2101 100, 100 100))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                100,\n                100\n              ],\n              [\n                2101,\n                110\n              ],\n              [\n                2101,\n                100\n              ],\n              [\n                100,\n                100\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"212111212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-6-16: two skinny polygons overlapping [dim(2){A.A.Int = B.A.Int}, dim(1){A.A.Bdy.V-EP = B.A.Bdy.NV-EP}, dim(0){A.A.Bdy.CP = B.A.Bdy.CP}, dim(0){A.A.Bdy.NV = B.A.Bdy.NV}]\",\n      \"id\": \"07-069\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((100 100, 200 200, 200 100, 100 100))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                100,\n                100\n              ],\n              [\n                200,\n                200\n              ],\n              [\n                200,\n                100\n              ],\n              [\n                100,\n                100\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((100 100, 2101 110, 2101 100, 100 100))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                100,\n                100\n              ],\n              [\n                2101,\n                110\n              ],\n              [\n                2101,\n                100\n              ],\n              [\n                100,\n                100\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"212111212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-6-17: a polygon overlapping a skinny polygon [dim(2){A.A.Int = B.A.Int}, dim(1){A.A.Bdy.V-EP = B.A.Bdy.NV-EP}, dim(0){A.A.Bdy.CP = B.A.Bdy.CP}, dim(0){A.A.Bdy.NV = B.A.Bdy.NV}]\",\n      \"id\": \"07-070\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((100 100, 100 200, 200 200, 200 100, 100 100))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                100,\n                100\n              ],\n              [\n                100,\n                200\n              ],\n              [\n                200,\n                200\n              ],\n              [\n                200,\n                100\n              ],\n              [\n                100,\n                100\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((100 100, 1000000 110, 1000000 100, 100 100))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                100,\n                100\n              ],\n              [\n                1000000,\n                110\n              ],\n              [\n                1000000,\n                100\n              ],\n              [\n                100,\n                100\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"212111212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-6-19: a polygon overlapping a skinny polygon [dim(2){A.A.Int = B.A.Int}, dim(1){A.A.Bdy.V-EP = B.A.Bdy.NV-NV}, dim(0){A.A.Bdy.NV = B.A.Bdy.NV}]\",\n      \"id\": \"07-071\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((120 100, 120 200, 200 200, 200 100, 120 100))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                120,\n                100\n              ],\n              [\n                120,\n                200\n              ],\n              [\n                200,\n                200\n              ],\n              [\n                200,\n                100\n              ],\n              [\n                120,\n                100\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((100 100, 500 110, 500 100, 100 100))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                100,\n                100\n              ],\n              [\n                500,\n                110\n              ],\n              [\n                500,\n                100\n              ],\n              [\n                100,\n                100\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"212111212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-6-20: a polygon overlapping a skinny polygon [dim(2){A.A.Int = B.A.Int}, dim(1){A.A.Bdy.V-EP = B.A.Bdy.NV-NV}, dim(0){A.A.Bdy.NV = B.A.Bdy.NV}]\",\n      \"id\": \"07-072\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((120 100, 120 200, 200 200, 200 100, 120 100))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                120,\n                100\n              ],\n              [\n                120,\n                200\n              ],\n              [\n                200,\n                200\n              ],\n              [\n                200,\n                100\n              ],\n              [\n                120,\n                100\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((100 100, 501 110, 501 100, 100 100))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                100,\n                100\n              ],\n              [\n                501,\n                110\n              ],\n              [\n                501,\n                100\n              ],\n              [\n                100,\n                100\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"212111212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-6-21: a polygon overlapping a skinny polygon [dim(2){A.A.Int = B.A.Int}, dim(1){A.A.Bdy.V-EP = B.A.Bdy.NV-NV}, dim(0){A.A.Bdy.NV = B.A.Bdy.NV}]\",\n      \"id\": \"07-073\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((120 100, 130 200, 200 200, 200 100, 120 100))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                120,\n                100\n              ],\n              [\n                130,\n                200\n              ],\n              [\n                200,\n                200\n              ],\n              [\n                200,\n                100\n              ],\n              [\n                120,\n                100\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((100 100, 501 110, 501 100, 100 100))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                100,\n                100\n              ],\n              [\n                501,\n                110\n              ],\n              [\n                501,\n                100\n              ],\n              [\n                100,\n                100\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"212111212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-6-22: a polygon overlapping a skinny polygon [dim(2){A.A.Int = B.A.Int}, dim(1){A.A.Bdy.V-EP = B.A.Bdy.NV-NV}, dim(0){A.A.Bdy.NV = B.A.Bdy.NV}]\",\n      \"id\": \"07-074\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((120 100, 17 200, 200 200, 200 100, 120 100))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                120,\n                100\n              ],\n              [\n                17,\n                200\n              ],\n              [\n                200,\n                200\n              ],\n              [\n                200,\n                100\n              ],\n              [\n                120,\n                100\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((100 100, 501 110, 501 100, 100 100))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                100,\n                100\n              ],\n              [\n                501,\n                110\n              ],\n              [\n                501,\n                100\n              ],\n              [\n                100,\n                100\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"212111212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-6-23: a polygon overlapping a skinny polygon [dim(2){A.A.Int = B.A.Int}, dim(1){A.A.Bdy.V-EP = B.A.Bdy.NV-NV}, dim(0){A.A.Bdy.NV = B.A.Bdy.NV}]\",\n      \"id\": \"07-075\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((120 100, 120 200, 200 200, 200 100, 120 100))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                120,\n                100\n              ],\n              [\n                120,\n                200\n              ],\n              [\n                200,\n                200\n              ],\n              [\n                200,\n                100\n              ],\n              [\n                120,\n                100\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((100 100, 1000000 110, 1000000 100, 100 100))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                100,\n                100\n              ],\n              [\n                1000000,\n                110\n              ],\n              [\n                1000000,\n                100\n              ],\n              [\n                100,\n                100\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"212111212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-6-25: two skinny polygons overlapping [dim(2){A.A.Int = B.A.Int}, dim(0){A.A.Bdy.NV = B.A.Bdy.NV}]\",\n      \"id\": \"07-076\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((101 99, 101 1000000, 102 1000000, 101 99))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                101,\n                99\n              ],\n              [\n                101,\n                1000000\n              ],\n              [\n                102,\n                1000000\n              ],\n              [\n                101,\n                99\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((100 100, 1000000 110, 1000000 100, 100 100))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                100,\n                100\n              ],\n              [\n                1000000,\n                110\n              ],\n              [\n                1000000,\n                100\n              ],\n              [\n                100,\n                100\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"212101212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-6-26: two skinny polygons overlapping [dim(2){A.A.Int = B.A.Int}, dim(1){A.A.Bdy.V-EP = B.A.Bdy.NV-EP}, dim(0){A.A.Bdy.CP = B.A.Bdy.CP}, dim(0){A.A.Bdy.NV = B.A.Bdy.NV}]\",\n      \"id\": \"07-077\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((100 100, 200 101, 200 100, 100 100))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                100,\n                100\n              ],\n              [\n                200,\n                101\n              ],\n              [\n                200,\n                100\n              ],\n              [\n                100,\n                100\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((100 100, 2101 110, 2101 100, 100 100))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                100,\n                100\n              ],\n              [\n                2101,\n                110\n              ],\n              [\n                2101,\n                100\n              ],\n              [\n                100,\n                100\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"212111212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/A-6-26: two polygons overlapping [dim(2){A.A.Int = B.A.Int}, dim(0){A.A.Bdy.NV = B.A.Bdy.NV}]\",\n      \"id\": \"07-078\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((16 319, 150 39, 25 302, 160 20, 265 20, 127 317, 16 319))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                16,\n                319\n              ],\n              [\n                150,\n                39\n              ],\n              [\n                25,\n                302\n              ],\n              [\n                160,\n                20\n              ],\n              [\n                265,\n                20\n              ],\n              [\n                127,\n                317\n              ],\n              [\n                16,\n                319\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((10 307, 22 307, 153 34, 22 34, 10 307))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                10,\n                307\n              ],\n              [\n                22,\n                307\n              ],\n              [\n                153,\n                34\n              ],\n              [\n                22,\n                34\n              ],\n              [\n                10,\n                307\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"212101212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/Ah-3-1: the closing point of a polygon touching the closing points of another polygon and its hole [dim(0){A.A.Bdy.CP = B.A.oBdy.CP}, dim(0){A.A.Bdy.CP = B.A.iBdy.CP}]\",\n      \"id\": \"07-079\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((160 200, 210 70, 120 70, 160 200))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                160,\n                200\n              ],\n              [\n                210,\n                70\n              ],\n              [\n                120,\n                70\n              ],\n              [\n                160,\n                200\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((160 200, 310 20, 20 20, 160 200),(160 200, 260 40, 70 40, 160 200))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                160,\n                200\n              ],\n              [\n                310,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                160,\n                200\n              ]\n            ],\n            [\n              [\n                160,\n                200\n              ],\n              [\n                260,\n                40\n              ],\n              [\n                70,\n                40\n              ],\n              [\n                160,\n                200\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF2F01212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/Ah-3-2: the boundary of a polygon touching the inner boundary of another polygon at two spots [dim(2){A.A.Int = B.A.Ext.h}, dim(0){A.A.oBdy.SP = B.A.iBdy.SP}, dim(0){A.A.oBdy.V = B.A.iBdy.V}]\",\n      \"id\": \"07-080\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((170 120, 240 100, 260 50, 190 70, 170 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                170,\n                120\n              ],\n              [\n                240,\n                100\n              ],\n              [\n                260,\n                50\n              ],\n              [\n                190,\n                70\n              ],\n              [\n                170,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150),(170 120, 330 120, 260 50, 100 50, 170 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                150,\n                150\n              ],\n              [\n                410,\n                150\n              ],\n              [\n                280,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                150,\n                150\n              ]\n            ],\n            [\n              [\n                170,\n                120\n              ],\n              [\n                330,\n                120\n              ],\n              [\n                260,\n                50\n              ],\n              [\n                100,\n                50\n              ],\n              [\n                170,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF2F01212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/Ah-3-3: the boundary of a polygon touching the inner boundary of another polygon at two spots [dim(2){A.A.Int = B.A.Ext.h}, dim(0){A.A.oBdy.SP = B.A.iBdy.SP}, dim(0){A.A.oBdy.V = B.A.iBdy.V}]\",\n      \"id\": \"07-081\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((270 90, 200 50, 150 80, 210 120, 270 90))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                270,\n                90\n              ],\n              [\n                200,\n                50\n              ],\n              [\n                150,\n                80\n              ],\n              [\n                210,\n                120\n              ],\n              [\n                270,\n                90\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150),(170 120, 330 120, 260 50, 100 50, 170 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                150,\n                150\n              ],\n              [\n                410,\n                150\n              ],\n              [\n                280,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                150,\n                150\n              ]\n            ],\n            [\n              [\n                170,\n                120\n              ],\n              [\n                330,\n                120\n              ],\n              [\n                260,\n                50\n              ],\n              [\n                100,\n                50\n              ],\n              [\n                170,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF2F01212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/Ah-3-4: the boundary of a polygon touching the inner boundary of another polygon at one spot [dim(2){A.A.Int = B.A.Ext.h}, dim(0){A.A.oBdy.SP = B.A.iBdy.SP}]\",\n      \"id\": \"07-082\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((170 120, 260 100, 240 60, 150 80, 170 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                170,\n                120\n              ],\n              [\n                260,\n                100\n              ],\n              [\n                240,\n                60\n              ],\n              [\n                150,\n                80\n              ],\n              [\n                170,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150),(170 120, 330 120, 260 50, 100 50, 170 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                150,\n                150\n              ],\n              [\n                410,\n                150\n              ],\n              [\n                280,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                150,\n                150\n              ]\n            ],\n            [\n              [\n                170,\n                120\n              ],\n              [\n                330,\n                120\n              ],\n              [\n                260,\n                50\n              ],\n              [\n                100,\n                50\n              ],\n              [\n                170,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF2F01212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/Ah-3-5: the boundary of a polygon touching the inner boundary of another polygon at one spot [dim(2){A.A.Int = B.A.Ext.h}, dim(0){A.A.oBdy.SP = B.A.iBdy.NV}]\",\n      \"id\": \"07-083\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((220 120, 270 80, 200 60, 160 100, 220 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                220,\n                120\n              ],\n              [\n                270,\n                80\n              ],\n              [\n                200,\n                60\n              ],\n              [\n                160,\n                100\n              ],\n              [\n                220,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150),(170 120, 330 120, 260 50, 100 50, 170 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                150,\n                150\n              ],\n              [\n                410,\n                150\n              ],\n              [\n                280,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                150,\n                150\n              ]\n            ],\n            [\n              [\n                170,\n                120\n              ],\n              [\n                330,\n                120\n              ],\n              [\n                260,\n                50\n              ],\n              [\n                100,\n                50\n              ],\n              [\n                170,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF2F01212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/Ah-3-6: the boundary of a polygon touching the inner boundary of another polygon at one spot [dim(2){A.A.Int = B.A.Ext.h}, dim(0){A.A.oBdy.SP = B.A.iBdy.V}]\",\n      \"id\": \"07-084\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((260 50, 180 70, 180 110, 260 90, 260 50))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                260,\n                50\n              ],\n              [\n                180,\n                70\n              ],\n              [\n                180,\n                110\n              ],\n              [\n                260,\n                90\n              ],\n              [\n                260,\n                50\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150),(170 120, 330 120, 260 50, 100 50, 170 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                150,\n                150\n              ],\n              [\n                410,\n                150\n              ],\n              [\n                280,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                150,\n                150\n              ]\n            ],\n            [\n              [\n                170,\n                120\n              ],\n              [\n                330,\n                120\n              ],\n              [\n                260,\n                50\n              ],\n              [\n                100,\n                50\n              ],\n              [\n                170,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF2F01212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/Ah-3-7: the boundary of a polygon touching the inner boundary of another polygon at two spots [dim(2){A.A.Int = B.A.Ext.h}, dim(0){A.A.oBdy.V = B.A.iBdy.NV}, dim(0){A.A.oBdy.V = B.A.iBdy.NV}]\",\n      \"id\": \"07-085\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((230 110, 290 80, 190 60, 140 90, 230 110))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                230,\n                110\n              ],\n              [\n                290,\n                80\n              ],\n              [\n                190,\n                60\n              ],\n              [\n                140,\n                90\n              ],\n              [\n                230,\n                110\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150),(170 120, 330 120, 260 50, 100 50, 170 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                150,\n                150\n              ],\n              [\n                410,\n                150\n              ],\n              [\n                280,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                150,\n                150\n              ]\n            ],\n            [\n              [\n                170,\n                120\n              ],\n              [\n                330,\n                120\n              ],\n              [\n                260,\n                50\n              ],\n              [\n                100,\n                50\n              ],\n              [\n                170,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF2F01212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/Ah-3-8: the boundary of a polygon touching the inner boundary of another polygon [dim(2){A.A.Int = B.A.Ext.h}, dim(1){A.A.oBdy.SP-EP = B.A.iBdy.SP-EP}]\",\n      \"id\": \"07-086\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((170 120, 330 120, 260 50, 100 50, 170 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                170,\n                120\n              ],\n              [\n                330,\n                120\n              ],\n              [\n                260,\n                50\n              ],\n              [\n                100,\n                50\n              ],\n              [\n                170,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150),(170 120, 330 120, 260 50, 100 50, 170 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                150,\n                150\n              ],\n              [\n                410,\n                150\n              ],\n              [\n                280,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                150,\n                150\n              ]\n            ],\n            [\n              [\n                170,\n                120\n              ],\n              [\n                330,\n                120\n              ],\n              [\n                260,\n                50\n              ],\n              [\n                100,\n                50\n              ],\n              [\n                170,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF2F1F212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/Ah-3-9: part of the boundary of a polygon touching part of the inner boundary of another polygon [dim(2){A.A.Int = B.A.Ext.h}, dim(1){A.A.oBdy.SP-V = B.A.iBdy.SP-NV}, dim(1){A.A.oBdy.V-EP = B.A.iBdy.NV-EP}]\",\n      \"id\": \"07-087\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((170 120, 330 120, 280 70, 120 70, 170 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                170,\n                120\n              ],\n              [\n                330,\n                120\n              ],\n              [\n                280,\n                70\n              ],\n              [\n                120,\n                70\n              ],\n              [\n                170,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150),(170 120, 330 120, 260 50, 100 50, 170 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                150,\n                150\n              ],\n              [\n                410,\n                150\n              ],\n              [\n                280,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                150,\n                150\n              ]\n            ],\n            [\n              [\n                170,\n                120\n              ],\n              [\n                330,\n                120\n              ],\n              [\n                260,\n                50\n              ],\n              [\n                100,\n                50\n              ],\n              [\n                170,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF2F11212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/Ah-3-10: part of the boundary of a polygon touching part of the inner boundary of another polygon [dim(2){A.A.Int = B.A.Ext.h}, dim(1){A.A.oBdy.SP-V = B.A.iBdy.SP-NV}, dim(1){A.A.oBdy.V-EP = B.A.iBdy.NV-EP}]\",\n      \"id\": \"07-088\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((170 120, 300 120, 250 70, 120 70, 170 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                170,\n                120\n              ],\n              [\n                300,\n                120\n              ],\n              [\n                250,\n                70\n              ],\n              [\n                120,\n                70\n              ],\n              [\n                170,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150),(170 120, 330 120, 260 50, 100 50, 170 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                150,\n                150\n              ],\n              [\n                410,\n                150\n              ],\n              [\n                280,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                150,\n                150\n              ]\n            ],\n            [\n              [\n                170,\n                120\n              ],\n              [\n                330,\n                120\n              ],\n              [\n                260,\n                50\n              ],\n              [\n                100,\n                50\n              ],\n              [\n                170,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF2F11212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/Ah-3-11: part of the boundary of a polygon touching part of the inner boundary of another polygon [dim(2){A.A.Int = B.A.Ext.h}, dim(1){A.A.oBdy.V-V-V = B.A.iBdy.NV-V-NV}]\",\n      \"id\": \"07-089\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((190 100, 310 100, 260 50, 140 50, 190 100))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                190,\n                100\n              ],\n              [\n                310,\n                100\n              ],\n              [\n                260,\n                50\n              ],\n              [\n                140,\n                50\n              ],\n              [\n                190,\n                100\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150),(170 120, 330 120, 260 50, 100 50, 170 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                150,\n                150\n              ],\n              [\n                410,\n                150\n              ],\n              [\n                280,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                150,\n                150\n              ]\n            ],\n            [\n              [\n                170,\n                120\n              ],\n              [\n                330,\n                120\n              ],\n              [\n                260,\n                50\n              ],\n              [\n                100,\n                50\n              ],\n              [\n                170,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF2F11212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/Ah-5-1: an entire polygon within another polygon which has a hole [dim(2){A.A.Ext = B.A.Int}, dim(2){A.A.Int = B.A.Int}]\",\n      \"id\": \"07-090\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((280 130, 360 130, 270 40, 190 40, 280 130))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                280,\n                130\n              ],\n              [\n                360,\n                130\n              ],\n              [\n                270,\n                40\n              ],\n              [\n                190,\n                40\n              ],\n              [\n                280,\n                130\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150),(170 120, 250 120, 180 50, 100 50, 170 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                150,\n                150\n              ],\n              [\n                410,\n                150\n              ],\n              [\n                280,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                150,\n                150\n              ]\n            ],\n            [\n              [\n                170,\n                120\n              ],\n              [\n                250,\n                120\n              ],\n              [\n                180,\n                50\n              ],\n              [\n                100,\n                50\n              ],\n              [\n                170,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"2FF1FF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/Ah-5-2: an entire polygon within another polygon which has a hole [dim(2){A.A.Int = B.A.Int}, dim(2){A.A.Ext = B.A.Int}]\",\n      \"id\": \"07-091\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((220 80, 180 40, 80 40, 170 130, 270 130, 230 90, 300 90, 250 30, 280 30, 390 140, 150 140, 40 30, 230 30, 280 80, 220 80))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                220,\n                80\n              ],\n              [\n                180,\n                40\n              ],\n              [\n                80,\n                40\n              ],\n              [\n                170,\n                130\n              ],\n              [\n                270,\n                130\n              ],\n              [\n                230,\n                90\n              ],\n              [\n                300,\n                90\n              ],\n              [\n                250,\n                30\n              ],\n              [\n                280,\n                30\n              ],\n              [\n                390,\n                140\n              ],\n              [\n                150,\n                140\n              ],\n              [\n                40,\n                30\n              ],\n              [\n                230,\n                30\n              ],\n              [\n                280,\n                80\n              ],\n              [\n                220,\n                80\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150),(170 120, 250 120, 180 50, 100 50, 170 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                150,\n                150\n              ],\n              [\n                410,\n                150\n              ],\n              [\n                280,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                150,\n                150\n              ]\n            ],\n            [\n              [\n                170,\n                120\n              ],\n              [\n                250,\n                120\n              ],\n              [\n                180,\n                50\n              ],\n              [\n                100,\n                50\n              ],\n              [\n                170,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"2FF1FF212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/Ah-5-3: polygon A within polygon B, the boundary of A touching the inner boundary of B [dim(2){A.A.Int = B.A.Int}, dim(2){A.A.Ext = B.A.Int}, dim(1){A.A.Bdy.NV-NV = B.A.iBdy.V-V}]\",\n      \"id\": \"07-092\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((260 130, 360 130, 280 40, 170 40, 260 130))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                260,\n                130\n              ],\n              [\n                360,\n                130\n              ],\n              [\n                280,\n                40\n              ],\n              [\n                170,\n                40\n              ],\n              [\n                260,\n                130\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150),(170 120, 250 120, 180 50, 100 50, 170 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                150,\n                150\n              ],\n              [\n                410,\n                150\n              ],\n              [\n                280,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                150,\n                150\n              ]\n            ],\n            [\n              [\n                170,\n                120\n              ],\n              [\n                250,\n                120\n              ],\n              [\n                180,\n                50\n              ],\n              [\n                100,\n                50\n              ],\n              [\n                170,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"2FF11F212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/Ah-5-4: polygon A within polygon B, the boundary of A touching the inner boundary of B [dim(2){A.A.Int = B.A.Int}, dim(2){A.A.Ext = B.A.Int}, dim(1){A.A.Bdy.V-V = B.A.iBdy.NV-NV}]\",\n      \"id\": \"07-093\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((240 110, 340 110, 290 60, 190 60, 240 110))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                240,\n                110\n              ],\n              [\n                340,\n                110\n              ],\n              [\n                290,\n                60\n              ],\n              [\n                190,\n                60\n              ],\n              [\n                240,\n                110\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150),(170 120, 250 120, 180 50, 100 50, 170 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                150,\n                150\n              ],\n              [\n                410,\n                150\n              ],\n              [\n                280,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                150,\n                150\n              ]\n            ],\n            [\n              [\n                170,\n                120\n              ],\n              [\n                250,\n                120\n              ],\n              [\n                180,\n                50\n              ],\n              [\n                100,\n                50\n              ],\n              [\n                170,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"2FF11F212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/Ah-5-5: polygon A within polygon B, the boundary of A touching the inner boundary of B [dim(2){A.A.Int = B.A.Int}, dim(2){A.A.Ext = B.A.Int}, dim(1){A.A.Bdy.V-V = B.A.iBdy.V-V}]\",\n      \"id\": \"07-094\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((250 120, 350 120, 280 50, 180 50, 250 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                250,\n                120\n              ],\n              [\n                350,\n                120\n              ],\n              [\n                280,\n                50\n              ],\n              [\n                180,\n                50\n              ],\n              [\n                250,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150),(170 120, 250 120, 180 50, 100 50, 170 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                150,\n                150\n              ],\n              [\n                410,\n                150\n              ],\n              [\n                280,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                150,\n                150\n              ]\n            ],\n            [\n              [\n                170,\n                120\n              ],\n              [\n                250,\n                120\n              ],\n              [\n                180,\n                50\n              ],\n              [\n                100,\n                50\n              ],\n              [\n                170,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"2FF11F212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"Ah/Ah-1-1: same polygons (with a hole) [dim(2){A.A.Int = B.A.Int}, dim(1){A.A.oBdy.SP-EP = B.A.oBdy.SP-EP}, dim(1){A.A.iBdy.SP-EP = B.A.iBdy.SP-EP}]\",\n      \"id\": \"07-095\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((230 210, 230 20, 20 20, 20 210, 230 210),(120 180, 50 50, 200 50, 120 180))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                230,\n                210\n              ],\n              [\n                230,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                210\n              ],\n              [\n                230,\n                210\n              ]\n            ],\n            [\n              [\n                120,\n                180\n              ],\n              [\n                50,\n                50\n              ],\n              [\n                200,\n                50\n              ],\n              [\n                120,\n                180\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((230 210, 230 20, 20 20, 20 210, 230 210),(120 180, 50 50, 200 50, 120 180))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                230,\n                210\n              ],\n              [\n                230,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                210\n              ],\n              [\n                230,\n                210\n              ]\n            ],\n            [\n              [\n                120,\n                180\n              ],\n              [\n                50,\n                50\n              ],\n              [\n                200,\n                50\n              ],\n              [\n                120,\n                180\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": true,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"2FFF1FFF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A2h/A2h-1-1: same polygons (with two holes) [dim(2){A.A.Int = B.A.Int}, dim(1){A.A.oBdy.SP-EP = B.A.oBdy.SP-EP}, dim(1){A.A.iBdy.SP-EP = B.A.iBdy.SP-EP}]\",\n      \"id\": \"07-096\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((230 210, 230 20, 20 20, 20 210, 230 210),(140 40, 40 40, 40 170, 140 40),(110 190, 210 190, 210 50, 110 190))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                230,\n                210\n              ],\n              [\n                230,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                210\n              ],\n              [\n                230,\n                210\n              ]\n            ],\n            [\n              [\n                140,\n                40\n              ],\n              [\n                40,\n                40\n              ],\n              [\n                40,\n                170\n              ],\n              [\n                140,\n                40\n              ]\n            ],\n            [\n              [\n                110,\n                190\n              ],\n              [\n                210,\n                190\n              ],\n              [\n                210,\n                50\n              ],\n              [\n                110,\n                190\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((230 210, 230 20, 20 20, 20 210, 230 210),(140 40, 40 40, 40 170, 140 40),(110 190, 210 190, 210 50, 110 190))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                230,\n                210\n              ],\n              [\n                230,\n                20\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                210\n              ],\n              [\n                230,\n                210\n              ]\n            ],\n            [\n              [\n                140,\n                40\n              ],\n              [\n                40,\n                40\n              ],\n              [\n                40,\n                170\n              ],\n              [\n                140,\n                40\n              ]\n            ],\n            [\n              [\n                110,\n                190\n              ],\n              [\n                210,\n                190\n              ],\n              [\n                210,\n                50\n              ],\n              [\n                110,\n                190\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": true,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"2FFF1FFF2\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/mA-3-1: a polygon touching multipolygon at two points [dim(2){A.A.Int = B.2A.Ext}, dim(0){A.A.oBdy.CP = B.2A2.oBdy.NV}, dim(0){A.A.oBdy.V = B.2A1.oBdy.NV}]\",\n      \"id\": \"07-097\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((280 190, 330 150, 200 110, 150 150, 280 190))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                280,\n                190\n              ],\n              [\n                330,\n                150\n              ],\n              [\n                200,\n                110\n              ],\n              [\n                150,\n                150\n              ],\n              [\n                280,\n                190\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTIPOLYGON (((140 110, 260 110, 170 20, 50 20, 140 110)),((300 270, 420 270, 340 190, 220 190, 300 270)))\",\n        \"geometry\": {\n          \"type\": \"MultiPolygon\",\n          \"coordinates\": [\n            [\n              [\n                [\n                  140,\n                  110\n                ],\n                [\n                  260,\n                  110\n                ],\n                [\n                  170,\n                  20\n                ],\n                [\n                  50,\n                  20\n                ],\n                [\n                  140,\n                  110\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  300,\n                  270\n                ],\n                [\n                  420,\n                  270\n                ],\n                [\n                  340,\n                  190\n                ],\n                [\n                  220,\n                  190\n                ],\n                [\n                  300,\n                  270\n                ]\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF2F01212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/mA-3-2: a polygon touching multipolygon at two points [dim(2){A.A.Int = B.2A.Ext}, dim(0){A.A.oBdy.V = B.2A1.oBdy.CP}, dim(0){A.A.oBdy.V = B.2A2.oBdy.V}]\",\n      \"id\": \"07-098\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((80 190, 220 190, 140 110, 0 110, 80 190))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                80,\n                190\n              ],\n              [\n                220,\n                190\n              ],\n              [\n                140,\n                110\n              ],\n              [\n                0,\n                110\n              ],\n              [\n                80,\n                190\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTIPOLYGON (((140 110, 260 110, 170 20, 50 20, 140 110)),((300 270, 420 270, 340 190, 220 190, 300 270)))\",\n        \"geometry\": {\n          \"type\": \"MultiPolygon\",\n          \"coordinates\": [\n            [\n              [\n                [\n                  140,\n                  110\n                ],\n                [\n                  260,\n                  110\n                ],\n                [\n                  170,\n                  20\n                ],\n                [\n                  50,\n                  20\n                ],\n                [\n                  140,\n                  110\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  300,\n                  270\n                ],\n                [\n                  420,\n                  270\n                ],\n                [\n                  340,\n                  190\n                ],\n                [\n                  220,\n                  190\n                ],\n                [\n                  300,\n                  270\n                ]\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF2F01212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/mA-3-3: a polygon touching multipolygon at two points [dim(2){A.A.Int = B.2A.Ext}, dim(0){A.A.oBdy.V = B.2A2.oBdy.NV}, dim(0){A.A.oBdy.V = B.2A1.oBdy.NV}]\",\n      \"id\": \"07-099\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((330 150, 200 110, 150 150, 280 190, 330 150))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                330,\n                150\n              ],\n              [\n                200,\n                110\n              ],\n              [\n                150,\n                150\n              ],\n              [\n                280,\n                190\n              ],\n              [\n                330,\n                150\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTIPOLYGON (((140 110, 260 110, 170 20, 50 20, 140 110)),((300 270, 420 270, 340 190, 220 190, 300 270)))\",\n        \"geometry\": {\n          \"type\": \"MultiPolygon\",\n          \"coordinates\": [\n            [\n              [\n                [\n                  140,\n                  110\n                ],\n                [\n                  260,\n                  110\n                ],\n                [\n                  170,\n                  20\n                ],\n                [\n                  50,\n                  20\n                ],\n                [\n                  140,\n                  110\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  300,\n                  270\n                ],\n                [\n                  420,\n                  270\n                ],\n                [\n                  340,\n                  190\n                ],\n                [\n                  220,\n                  190\n                ],\n                [\n                  300,\n                  270\n                ]\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF2F01212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/mA-3-4: a polygon touching multipolygon at one spoint [dim(2){A.A.Int = B.2A.Ext}, dim(0){A.A.oBdy.V = B.2A2.oBdy.NV}]\",\n      \"id\": \"07-100\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((290 190, 340 150, 220 120, 170 170, 290 190))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                290,\n                190\n              ],\n              [\n                340,\n                150\n              ],\n              [\n                220,\n                120\n              ],\n              [\n                170,\n                170\n              ],\n              [\n                290,\n                190\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTIPOLYGON (((140 110, 260 110, 170 20, 50 20, 140 110)),((300 270, 420 270, 340 190, 220 190, 300 270)))\",\n        \"geometry\": {\n          \"type\": \"MultiPolygon\",\n          \"coordinates\": [\n            [\n              [\n                [\n                  140,\n                  110\n                ],\n                [\n                  260,\n                  110\n                ],\n                [\n                  170,\n                  20\n                ],\n                [\n                  50,\n                  20\n                ],\n                [\n                  140,\n                  110\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  300,\n                  270\n                ],\n                [\n                  420,\n                  270\n                ],\n                [\n                  340,\n                  190\n                ],\n                [\n                  220,\n                  190\n                ],\n                [\n                  300,\n                  270\n                ]\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF2F01212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/mA-3-5: a polygon touching multipolygon along boundaries [dim(2){A.A.Int = B.2A.Ext}, dim(1){A.A.oBdy.SP-V = B.2A2.oBdy.V-V}, dim(1){A.A.oBdy.V-V = B.2A1.oBdy.V-SP}]\",\n      \"id\": \"07-101\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((220 190, 340 190, 260 110, 140 110, 220 190))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                220,\n                190\n              ],\n              [\n                340,\n                190\n              ],\n              [\n                260,\n                110\n              ],\n              [\n                140,\n                110\n              ],\n              [\n                220,\n                190\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTIPOLYGON (((140 110, 260 110, 170 20, 50 20, 140 110)),((300 270, 420 270, 340 190, 220 190, 300 270)))\",\n        \"geometry\": {\n          \"type\": \"MultiPolygon\",\n          \"coordinates\": [\n            [\n              [\n                [\n                  140,\n                  110\n                ],\n                [\n                  260,\n                  110\n                ],\n                [\n                  170,\n                  20\n                ],\n                [\n                  50,\n                  20\n                ],\n                [\n                  140,\n                  110\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  300,\n                  270\n                ],\n                [\n                  420,\n                  270\n                ],\n                [\n                  340,\n                  190\n                ],\n                [\n                  220,\n                  190\n                ],\n                [\n                  300,\n                  270\n                ]\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF2F11212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/mA-3-6: a polygon touching multipolygon along boundaries and at a point [dim(2){A.A.Int = B.2A.Ext}, dim(1){A.A.oBdy.V-NV = B.2A1.oBdy.NV-SP}, dim(0){A.A.oBdy.V = B.2A2.oBdy.V}]\",\n      \"id\": \"07-102\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((140 190, 220 190, 100 70, 20 70, 140 190))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                140,\n                190\n              ],\n              [\n                220,\n                190\n              ],\n              [\n                100,\n                70\n              ],\n              [\n                20,\n                70\n              ],\n              [\n                140,\n                190\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTIPOLYGON (((140 110, 260 110, 170 20, 50 20, 140 110)),((300 270, 420 270, 340 190, 220 190, 300 270)))\",\n        \"geometry\": {\n          \"type\": \"MultiPolygon\",\n          \"coordinates\": [\n            [\n              [\n                [\n                  140,\n                  110\n                ],\n                [\n                  260,\n                  110\n                ],\n                [\n                  170,\n                  20\n                ],\n                [\n                  50,\n                  20\n                ],\n                [\n                  140,\n                  110\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  300,\n                  270\n                ],\n                [\n                  420,\n                  270\n                ],\n                [\n                  340,\n                  190\n                ],\n                [\n                  220,\n                  190\n                ],\n                [\n                  300,\n                  270\n                ]\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF2F11212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"A/mA-6-1: a polygon overlapping multipolygon [dim(2){A.A.Int = B.4A.Int}, dim(0){A.A.Bdy.NV = B.A.Bdy.V}, dim(0){A.A.Bdy.NV = B.A.Bdy.CP}, dim(0){A.A.Bdy.NV = B.A.Bdy.V}, dim(0){A.A.Bdy.NV = B.A.Bdy.CP}]\",\n      \"id\": \"07-103\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((140 220, 60 140, 140 60, 220 140, 140 220))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                140,\n                220\n              ],\n              [\n                60,\n                140\n              ],\n              [\n                140,\n                60\n              ],\n              [\n                220,\n                140\n              ],\n              [\n                140,\n                220\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTIPOLYGON (((100 20, 180 20, 180 100, 100 100, 100 20)),((20 100, 100 100, 100 180, 20 180, 20 100)),((100 180, 180 180, 180 260, 100 260, 100 180)),((180 100, 260 100, 260 180, 180 180, 180 100)))\",\n        \"geometry\": {\n          \"type\": \"MultiPolygon\",\n          \"coordinates\": [\n            [\n              [\n                [\n                  100,\n                  20\n                ],\n                [\n                  180,\n                  20\n                ],\n                [\n                  180,\n                  100\n                ],\n                [\n                  100,\n                  100\n                ],\n                [\n                  100,\n                  20\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  20,\n                  100\n                ],\n                [\n                  100,\n                  100\n                ],\n                [\n                  100,\n                  180\n                ],\n                [\n                  20,\n                  180\n                ],\n                [\n                  20,\n                  100\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  100,\n                  180\n                ],\n                [\n                  180,\n                  180\n                ],\n                [\n                  180,\n                  260\n                ],\n                [\n                  100,\n                  260\n                ],\n                [\n                  100,\n                  180\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  180,\n                  100\n                ],\n                [\n                  260,\n                  100\n                ],\n                [\n                  260,\n                  180\n                ],\n                [\n                  180,\n                  180\n                ],\n                [\n                  180,\n                  100\n                ]\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"21210F212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"mA/mA-3-1: MultiPolygon touching MultiPolygon [dim(0){A.mA.Bdy.TP = B.mA.Bdy.TP}]\",\n      \"id\": \"07-104\",\n      \"a\": {\n        \"wkt\": \"MULTIPOLYGON (((110 110, 70 200, 150 200, 110 110)),((110 110, 150 20, 70 20, 110 110)))\",\n        \"geometry\": {\n          \"type\": \"MultiPolygon\",\n          \"coordinates\": [\n            [\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  70,\n                  200\n                ],\n                [\n                  150,\n                  200\n                ],\n                [\n                  110,\n                  110\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  150,\n                  20\n                ],\n                [\n                  70,\n                  20\n                ],\n                [\n                  110,\n                  110\n                ]\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTIPOLYGON (((110 110, 160 160, 210 110, 160 60, 110 110)),((110 110, 60 60, 10 110, 60 160, 110 110)))\",\n        \"geometry\": {\n          \"type\": \"MultiPolygon\",\n          \"coordinates\": [\n            [\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  160,\n                  160\n                ],\n                [\n                  210,\n                  110\n                ],\n                [\n                  160,\n                  60\n                ],\n                [\n                  110,\n                  110\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  60,\n                  60\n                ],\n                [\n                  10,\n                  110\n                ],\n                [\n                  60,\n                  160\n                ],\n                [\n                  110,\n                  110\n                ]\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF2F01212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"mAh/mAh-3-1: MultiPolygon touching MultiPolygon [dim(0){A.mA.Bdy.TP = B.mA.Bdy.TP}]\",\n      \"id\": \"07-105\",\n      \"a\": {\n        \"wkt\": \"MULTIPOLYGON (((110 110, 70 200, 150 200, 110 110),(110 110, 100 180, 120 180, 110 110)),((110 110, 150 20, 70 20, 110 110),(110 110, 120 40, 100 40, 110 110)))\",\n        \"geometry\": {\n          \"type\": \"MultiPolygon\",\n          \"coordinates\": [\n            [\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  70,\n                  200\n                ],\n                [\n                  150,\n                  200\n                ],\n                [\n                  110,\n                  110\n                ]\n              ],\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  100,\n                  180\n                ],\n                [\n                  120,\n                  180\n                ],\n                [\n                  110,\n                  110\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  150,\n                  20\n                ],\n                [\n                  70,\n                  20\n                ],\n                [\n                  110,\n                  110\n                ]\n              ],\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  120,\n                  40\n                ],\n                [\n                  100,\n                  40\n                ],\n                [\n                  110,\n                  110\n                ]\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTIPOLYGON (((110 110, 160 160, 210 110, 160 60, 110 110),(110 110, 160 130, 160 90, 110 110)),((110 110, 60 60, 10 110, 60 160, 110 110),(110 110, 60 90, 60 130, 110 110)))\",\n        \"geometry\": {\n          \"type\": \"MultiPolygon\",\n          \"coordinates\": [\n            [\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  160,\n                  160\n                ],\n                [\n                  210,\n                  110\n                ],\n                [\n                  160,\n                  60\n                ],\n                [\n                  110,\n                  110\n                ]\n              ],\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  160,\n                  130\n                ],\n                [\n                  160,\n                  90\n                ],\n                [\n                  110,\n                  110\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  60,\n                  60\n                ],\n                [\n                  10,\n                  110\n                ],\n                [\n                  60,\n                  160\n                ],\n                [\n                  110,\n                  110\n                ]\n              ],\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  60,\n                  90\n                ],\n                [\n                  60,\n                  130\n                ],\n                [\n                  110,\n                  110\n                ]\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF2F01212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"mAh/mAh-3-2: MultiPolygon touching MultiPolygon [dim(1){A.mA.Bdy.NV-EP = B.mA.Bdy.V-SP}, dim(1){A.mA.Bdy.SP-NV = B.mA.Bdy.EP-V}]\",\n      \"id\": \"07-106\",\n      \"a\": {\n        \"wkt\": \"MULTIPOLYGON (((110 110, 70 200, 200 200, 110 110),(110 110, 100 180, 120 180, 110 110)),((110 110, 200 20, 70 20, 110 110),(110 110, 120 40, 100 40, 110 110)))\",\n        \"geometry\": {\n          \"type\": \"MultiPolygon\",\n          \"coordinates\": [\n            [\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  70,\n                  200\n                ],\n                [\n                  200,\n                  200\n                ],\n                [\n                  110,\n                  110\n                ]\n              ],\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  100,\n                  180\n                ],\n                [\n                  120,\n                  180\n                ],\n                [\n                  110,\n                  110\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  200,\n                  20\n                ],\n                [\n                  70,\n                  20\n                ],\n                [\n                  110,\n                  110\n                ]\n              ],\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  120,\n                  40\n                ],\n                [\n                  100,\n                  40\n                ],\n                [\n                  110,\n                  110\n                ]\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTIPOLYGON (((110 110, 160 160, 210 110, 160 60, 110 110),(110 110, 160 130, 160 90, 110 110)),((110 110, 60 60, 10 110, 60 160, 110 110),(110 110, 60 90, 60 130, 110 110)))\",\n        \"geometry\": {\n          \"type\": \"MultiPolygon\",\n          \"coordinates\": [\n            [\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  160,\n                  160\n                ],\n                [\n                  210,\n                  110\n                ],\n                [\n                  160,\n                  60\n                ],\n                [\n                  110,\n                  110\n                ]\n              ],\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  160,\n                  130\n                ],\n                [\n                  160,\n                  90\n                ],\n                [\n                  110,\n                  110\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  60,\n                  60\n                ],\n                [\n                  10,\n                  110\n                ],\n                [\n                  60,\n                  160\n                ],\n                [\n                  110,\n                  110\n                ]\n              ],\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  60,\n                  90\n                ],\n                [\n                  60,\n                  130\n                ],\n                [\n                  110,\n                  110\n                ]\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF2F11212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"mAh/mAh-3-3: MultiPolygon touching MultiPolygon [dim(1){A.mA.Bdy.SP-NV = B.mA.Bdy.EP-V}, dim(1){A.mA.Bdy.NV-EP = B.mA.Bdy.V-SP}, dim(1){A.mA.Bdy.NV-EP = B.mA.Bdy.V-SP}, dim(1){A.mA.Bdy.SP-NV = B.mA.Bdy.EP-V}]\",\n      \"id\": \"07-107\",\n      \"a\": {\n        \"wkt\": \"MULTIPOLYGON (((110 110, 20 200, 200 200, 110 110),(110 110, 100 180, 120 180, 110 110)),((110 110, 200 20, 20 20, 110 110),(110 110, 120 40, 100 40, 110 110)))\",\n        \"geometry\": {\n          \"type\": \"MultiPolygon\",\n          \"coordinates\": [\n            [\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  20,\n                  200\n                ],\n                [\n                  200,\n                  200\n                ],\n                [\n                  110,\n                  110\n                ]\n              ],\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  100,\n                  180\n                ],\n                [\n                  120,\n                  180\n                ],\n                [\n                  110,\n                  110\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  200,\n                  20\n                ],\n                [\n                  20,\n                  20\n                ],\n                [\n                  110,\n                  110\n                ]\n              ],\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  120,\n                  40\n                ],\n                [\n                  100,\n                  40\n                ],\n                [\n                  110,\n                  110\n                ]\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTIPOLYGON (((110 110, 160 160, 210 110, 160 60, 110 110),(110 110, 160 130, 160 90, 110 110)),((110 110, 60 60, 10 110, 60 160, 110 110),(110 110, 60 90, 60 130, 110 110)))\",\n        \"geometry\": {\n          \"type\": \"MultiPolygon\",\n          \"coordinates\": [\n            [\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  160,\n                  160\n                ],\n                [\n                  210,\n                  110\n                ],\n                [\n                  160,\n                  60\n                ],\n                [\n                  110,\n                  110\n                ]\n              ],\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  160,\n                  130\n                ],\n                [\n                  160,\n                  90\n                ],\n                [\n                  110,\n                  110\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  60,\n                  60\n                ],\n                [\n                  10,\n                  110\n                ],\n                [\n                  60,\n                  160\n                ],\n                [\n                  110,\n                  110\n                ]\n              ],\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  60,\n                  90\n                ],\n                [\n                  60,\n                  130\n                ],\n                [\n                  110,\n                  110\n                ]\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF2F11212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"mAh/mAh-6-1: MultiPolygon touching MultiPolygon [dim(2){A.mA.Int = B.mA.Int}]\",\n      \"id\": \"07-108\",\n      \"a\": {\n        \"wkt\": \"MULTIPOLYGON (((110 110, 70 200, 200 200, 110 110),(110 110, 100 180, 120 180, 110 110)),((110 110, 200 20, 70 20, 110 110),(110 110, 120 40, 100 40, 110 110)))\",\n        \"geometry\": {\n          \"type\": \"MultiPolygon\",\n          \"coordinates\": [\n            [\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  70,\n                  200\n                ],\n                [\n                  200,\n                  200\n                ],\n                [\n                  110,\n                  110\n                ]\n              ],\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  100,\n                  180\n                ],\n                [\n                  120,\n                  180\n                ],\n                [\n                  110,\n                  110\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  200,\n                  20\n                ],\n                [\n                  70,\n                  20\n                ],\n                [\n                  110,\n                  110\n                ]\n              ],\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  120,\n                  40\n                ],\n                [\n                  100,\n                  40\n                ],\n                [\n                  110,\n                  110\n                ]\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTIPOLYGON (((110 110, 160 160, 210 110, 160 60, 110 110),(110 110, 160 130, 160 90, 110 110)),((110 110, 60 60, 10 110, 60 160, 110 110),(110 110, 60 90, 60 130, 110 110)))\",\n        \"geometry\": {\n          \"type\": \"MultiPolygon\",\n          \"coordinates\": [\n            [\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  160,\n                  160\n                ],\n                [\n                  210,\n                  110\n                ],\n                [\n                  160,\n                  60\n                ],\n                [\n                  110,\n                  110\n                ]\n              ],\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  160,\n                  130\n                ],\n                [\n                  160,\n                  90\n                ],\n                [\n                  110,\n                  110\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  60,\n                  60\n                ],\n                [\n                  10,\n                  110\n                ],\n                [\n                  60,\n                  160\n                ],\n                [\n                  110,\n                  110\n                ]\n              ],\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  60,\n                  90\n                ],\n                [\n                  60,\n                  130\n                ],\n                [\n                  110,\n                  110\n                ]\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF2F11212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAA\",\n      \"category\": \"relate\",\n      \"title\": \"mAh/mAh-6-2: MultiPolygon touching MultiPolygon [dim(2){A.mA.Int = B.mA.Int}]\",\n      \"id\": \"07-109\",\n      \"a\": {\n        \"wkt\": \"MULTIPOLYGON (((110 110, 70 200, 200 200, 110 110),(110 110, 100 180, 120 180, 110 110)),((110 110, 200 20, 70 20, 110 110),(110 110, 120 40, 100 40, 110 110)))\",\n        \"geometry\": {\n          \"type\": \"MultiPolygon\",\n          \"coordinates\": [\n            [\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  70,\n                  200\n                ],\n                [\n                  200,\n                  200\n                ],\n                [\n                  110,\n                  110\n                ]\n              ],\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  100,\n                  180\n                ],\n                [\n                  120,\n                  180\n                ],\n                [\n                  110,\n                  110\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  200,\n                  20\n                ],\n                [\n                  70,\n                  20\n                ],\n                [\n                  110,\n                  110\n                ]\n              ],\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  120,\n                  40\n                ],\n                [\n                  100,\n                  40\n                ],\n                [\n                  110,\n                  110\n                ]\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTIPOLYGON (((110 110, 70 200, 210 110, 70 20, 110 110),(110 110, 110 140, 150 110, 110 80, 110 110)),((110 110, 60 60, 10 110, 60 160, 110 110),(110 110, 60 90, 60 130, 110 110)))\",\n        \"geometry\": {\n          \"type\": \"MultiPolygon\",\n          \"coordinates\": [\n            [\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  70,\n                  200\n                ],\n                [\n                  210,\n                  110\n                ],\n                [\n                  70,\n                  20\n                ],\n                [\n                  110,\n                  110\n                ]\n              ],\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  110,\n                  140\n                ],\n                [\n                  150,\n                  110\n                ],\n                [\n                  110,\n                  80\n                ],\n                [\n                  110,\n                  110\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  60,\n                  60\n                ],\n                [\n                  10,\n                  110\n                ],\n                [\n                  60,\n                  160\n                ],\n                [\n                  110,\n                  110\n                ]\n              ],\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  60,\n                  90\n                ],\n                [\n                  60,\n                  130\n                ],\n                [\n                  110,\n                  110\n                ]\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"212111212\"\n      }\n    },\n    {\n      \"group\": \"TestRelateAC\",\n      \"category\": \"relate\",\n      \"title\": \"AC A-shells overlapping B-shell at A-vertex\",\n      \"id\": \"08-001\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((100 60, 140 100, 100 140, 60 100, 100 60))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                100,\n                60\n              ],\n              [\n                140,\n                100\n              ],\n              [\n                100,\n                140\n              ],\n              [\n                60,\n                100\n              ],\n              [\n                100,\n                60\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTIPOLYGON (((80 40, 120 40, 120 80, 80 80, 80 40)),((120 80, 160 80, 160 120, 120 120, 120 80)),((80 120, 120 120, 120 160, 80 160, 80 120)),((40 80, 80 80, 80 120, 40 120, 40 80)))\",\n        \"geometry\": {\n          \"type\": \"MultiPolygon\",\n          \"coordinates\": [\n            [\n              [\n                [\n                  80,\n                  40\n                ],\n                [\n                  120,\n                  40\n                ],\n                [\n                  120,\n                  80\n                ],\n                [\n                  80,\n                  80\n                ],\n                [\n                  80,\n                  40\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  120,\n                  80\n                ],\n                [\n                  160,\n                  80\n                ],\n                [\n                  160,\n                  120\n                ],\n                [\n                  120,\n                  120\n                ],\n                [\n                  120,\n                  80\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  80,\n                  120\n                ],\n                [\n                  120,\n                  120\n                ],\n                [\n                  120,\n                  160\n                ],\n                [\n                  80,\n                  160\n                ],\n                [\n                  80,\n                  120\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  40,\n                  80\n                ],\n                [\n                  80,\n                  80\n                ],\n                [\n                  80,\n                  120\n                ],\n                [\n                  40,\n                  120\n                ],\n                [\n                  40,\n                  80\n                ]\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"21210F212\"\n      }\n    },\n    {\n      \"group\": \"TestFunctionPP\",\n      \"category\": \"function\",\n      \"title\": \"PP - point contained in both A and B\",\n      \"id\": \"09-001\",\n      \"a\": {\n        \"wkt\": \"POINT (100 100)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            100,\n            100\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POINT (100 100)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            100,\n            100\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": true,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFFFF2\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POINT (100 100)\",\n          \"geometry\": {\n            \"type\": \"Point\",\n            \"coordinates\": [\n              100,\n              100\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"POINT (100 100)\",\n          \"geometry\": {\n            \"type\": \"Point\",\n            \"coordinates\": [\n              100,\n              100\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"POINT (100 100)\",\n          \"geometry\": {\n            \"type\": \"Point\",\n            \"coordinates\": [\n              100,\n              100\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"GEOMETRYCOLLECTION EMPTY\",\n          \"geometry\": null\n        },\n        \"symDifference\": {\n          \"wkt\": \"GEOMETRYCOLLECTION EMPTY\",\n          \"geometry\": null\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionPP\",\n      \"category\": \"function\",\n      \"title\": \"PP - A different from B\",\n      \"id\": \"09-002\",\n      \"a\": {\n        \"wkt\": \"POINT (100 100)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            100,\n            100\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POINT (200 200)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            200,\n            200\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": true,\n        \"intersects\": false,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF0FFF0F2\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POINT (100 100)\",\n          \"geometry\": {\n            \"type\": \"Point\",\n            \"coordinates\": [\n              100,\n              100\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"GEOMETRYCOLLECTION EMPTY\",\n          \"geometry\": null\n        },\n        \"union\": {\n          \"wkt\": \"MULTIPOINT (100 100, 200 200)\",\n          \"geometry\": {\n            \"type\": \"MultiPoint\",\n            \"coordinates\": [\n              [\n                100,\n                100\n              ],\n              [\n                200,\n                200\n              ]\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"POINT (100 100)\",\n          \"geometry\": {\n            \"type\": \"Point\",\n            \"coordinates\": [\n              100,\n              100\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"MULTIPOINT (100 100, 200 200)\",\n          \"geometry\": {\n            \"type\": \"MultiPoint\",\n            \"coordinates\": [\n              [\n                100,\n                100\n              ],\n              [\n                200,\n                200\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionPP\",\n      \"category\": \"function\",\n      \"title\": \"PmP - point in A contained in B\",\n      \"id\": \"09-003\",\n      \"a\": {\n        \"wkt\": \"POINT (100 100)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            100,\n            100\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTIPOINT (100 100, 200 200)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              100,\n              100\n            ],\n            [\n              200,\n              200\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF0F2\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POINT (100 100)\",\n          \"geometry\": {\n            \"type\": \"Point\",\n            \"coordinates\": [\n              100,\n              100\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"POINT (100 100)\",\n          \"geometry\": {\n            \"type\": \"Point\",\n            \"coordinates\": [\n              100,\n              100\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"MULTIPOINT (100 100, 200 200)\",\n          \"geometry\": {\n            \"type\": \"MultiPoint\",\n            \"coordinates\": [\n              [\n                100,\n                100\n              ],\n              [\n                200,\n                200\n              ]\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"GEOMETRYCOLLECTION EMPTY\",\n          \"geometry\": null\n        },\n        \"symDifference\": {\n          \"wkt\": \"POINT (200 200)\",\n          \"geometry\": {\n            \"type\": \"Point\",\n            \"coordinates\": [\n              200,\n              200\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionPP\",\n      \"category\": \"function\",\n      \"title\": \"mPmP - points in A only, B only, and in both\",\n      \"id\": \"09-004\",\n      \"a\": {\n        \"wkt\": \"MULTIPOINT (100 100, 200 200, 300 300, 500 500)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              100,\n              100\n            ],\n            [\n              200,\n              200\n            ],\n            [\n              300,\n              300\n            ],\n            [\n              500,\n              500\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTIPOINT (100 100, 200 200, 400 400, 600 600)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              100,\n              100\n            ],\n            [\n              200,\n              200\n            ],\n            [\n              400,\n              400\n            ],\n            [\n              600,\n              600\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"0F0FFF0F2\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"LINESTRING (100 100, 500 500)\",\n          \"geometry\": {\n            \"type\": \"LineString\",\n            \"coordinates\": [\n              [\n                100,\n                100\n              ],\n              [\n                500,\n                500\n              ]\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"MULTIPOINT (100 100, 200 200)\",\n          \"geometry\": {\n            \"type\": \"MultiPoint\",\n            \"coordinates\": [\n              [\n                100,\n                100\n              ],\n              [\n                200,\n                200\n              ]\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"MULTIPOINT (100 100, 200 200, 300 300, 400 400, 500 500, 600 600)\",\n          \"geometry\": {\n            \"type\": \"MultiPoint\",\n            \"coordinates\": [\n              [\n                100,\n                100\n              ],\n              [\n                200,\n                200\n              ],\n              [\n                300,\n                300\n              ],\n              [\n                400,\n                400\n              ],\n              [\n                500,\n                500\n              ],\n              [\n                600,\n                600\n              ]\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"MULTIPOINT (300 300, 500 500)\",\n          \"geometry\": {\n            \"type\": \"MultiPoint\",\n            \"coordinates\": [\n              [\n                300,\n                300\n              ],\n              [\n                500,\n                500\n              ]\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"MULTIPOINT (300 300, 400 400, 500 500, 600 600)\",\n          \"geometry\": {\n            \"type\": \"MultiPoint\",\n            \"coordinates\": [\n              [\n                300,\n                300\n              ],\n              [\n                400,\n                400\n              ],\n              [\n                500,\n                500\n              ],\n              [\n                600,\n                600\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionPP\",\n      \"category\": \"function\",\n      \"title\": \"PP - point contained in both A and B\",\n      \"id\": \"09-005\",\n      \"a\": {\n        \"wkt\": \"POINT (80 200)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            80,\n            200\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POINT (80 200)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            80,\n            200\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": true,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFFFF2\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POINT (80 200)\",\n          \"geometry\": {\n            \"type\": \"Point\",\n            \"coordinates\": [\n              80,\n              200\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"POINT (80 200)\",\n          \"geometry\": {\n            \"type\": \"Point\",\n            \"coordinates\": [\n              80,\n              200\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"POINT (80 200)\",\n          \"geometry\": {\n            \"type\": \"Point\",\n            \"coordinates\": [\n              80,\n              200\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"GEOMETRYCOLLECTION EMPTY\",\n          \"geometry\": null\n        },\n        \"symDifference\": {\n          \"wkt\": \"GEOMETRYCOLLECTION EMPTY\",\n          \"geometry\": null\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionPP\",\n      \"category\": \"function\",\n      \"title\": \"PP - A different from B\",\n      \"id\": \"09-006\",\n      \"a\": {\n        \"wkt\": \"POINT (80 200)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            80,\n            200\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POINT (260 80)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            260,\n            80\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": true,\n        \"intersects\": false,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF0FFF0F2\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POINT (80 200)\",\n          \"geometry\": {\n            \"type\": \"Point\",\n            \"coordinates\": [\n              80,\n              200\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"GEOMETRYCOLLECTION EMPTY\",\n          \"geometry\": null\n        },\n        \"union\": {\n          \"wkt\": \"MULTIPOINT (80 200, 260 80)\",\n          \"geometry\": {\n            \"type\": \"MultiPoint\",\n            \"coordinates\": [\n              [\n                80,\n                200\n              ],\n              [\n                260,\n                80\n              ]\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"POINT (80 200)\",\n          \"geometry\": {\n            \"type\": \"Point\",\n            \"coordinates\": [\n              80,\n              200\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"MULTIPOINT (80 200, 260 80)\",\n          \"geometry\": {\n            \"type\": \"MultiPoint\",\n            \"coordinates\": [\n              [\n                80,\n                200\n              ],\n              [\n                260,\n                80\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionPP\",\n      \"category\": \"function\",\n      \"title\": \"PP - A different from B, same y\",\n      \"id\": \"09-007\",\n      \"a\": {\n        \"wkt\": \"POINT (60 260)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            60,\n            260\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POINT (120 260)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            120,\n            260\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": true,\n        \"intersects\": false,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF0FFF0F2\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POINT (60 260)\",\n          \"geometry\": {\n            \"type\": \"Point\",\n            \"coordinates\": [\n              60,\n              260\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"GEOMETRYCOLLECTION EMPTY\",\n          \"geometry\": null\n        },\n        \"union\": {\n          \"wkt\": \"MULTIPOINT (60 260, 120 260)\",\n          \"geometry\": {\n            \"type\": \"MultiPoint\",\n            \"coordinates\": [\n              [\n                60,\n                260\n              ],\n              [\n                120,\n                260\n              ]\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"POINT (60 260)\",\n          \"geometry\": {\n            \"type\": \"Point\",\n            \"coordinates\": [\n              60,\n              260\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"MULTIPOINT (60 260, 120 260)\",\n          \"geometry\": {\n            \"type\": \"MultiPoint\",\n            \"coordinates\": [\n              [\n                60,\n                260\n              ],\n              [\n                120,\n                260\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionPP\",\n      \"category\": \"function\",\n      \"title\": \"PP - A different from B, same x\",\n      \"id\": \"09-008\",\n      \"a\": {\n        \"wkt\": \"POINT (80 80)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            80,\n            80\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POINT (80 280)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            80,\n            280\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": true,\n        \"intersects\": false,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF0FFF0F2\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POINT (80 80)\",\n          \"geometry\": {\n            \"type\": \"Point\",\n            \"coordinates\": [\n              80,\n              80\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"GEOMETRYCOLLECTION EMPTY\",\n          \"geometry\": null\n        },\n        \"union\": {\n          \"wkt\": \"MULTIPOINT (80 80, 80 280)\",\n          \"geometry\": {\n            \"type\": \"MultiPoint\",\n            \"coordinates\": [\n              [\n                80,\n                80\n              ],\n              [\n                80,\n                280\n              ]\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"POINT (80 80)\",\n          \"geometry\": {\n            \"type\": \"Point\",\n            \"coordinates\": [\n              80,\n              80\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"MULTIPOINT (80 80, 80 280)\",\n          \"geometry\": {\n            \"type\": \"MultiPoint\",\n            \"coordinates\": [\n              [\n                80,\n                80\n              ],\n              [\n                80,\n                280\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionPL\",\n      \"category\": \"function\",\n      \"title\": \"mPL - points in I and E of line\",\n      \"id\": \"10-001\",\n      \"a\": {\n        \"wkt\": \"MULTIPOINT (40 90, 20 20, 70 70)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              40,\n              90\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              70,\n              70\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (20 20, 100 100)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              20\n            ],\n            [\n              100,\n              100\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"000FFF102\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((20 20, 40 90, 70 70, 20 20))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  20,\n                  20\n                ],\n                [\n                  40,\n                  90\n                ],\n                [\n                  70,\n                  70\n                ],\n                [\n                  20,\n                  20\n                ]\n              ]\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"MULTIPOINT (20 20, 70 70)\",\n          \"geometry\": {\n            \"type\": \"MultiPoint\",\n            \"coordinates\": [\n              [\n                20,\n                20\n              ],\n              [\n                70,\n                70\n              ]\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"GEOMETRYCOLLECTION (POINT (40 90), LINESTRING (20 20, 100 100))\",\n          \"geometry\": {\n            \"type\": \"GeometryCollection\",\n            \"geometries\": [\n              {\n                \"type\": \"Point\",\n                \"coordinates\": [\n                  40,\n                  90\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    20,\n                    20\n                  ],\n                  [\n                    100,\n                    100\n                  ]\n                ]\n              }\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"POINT (40 90)\",\n          \"geometry\": {\n            \"type\": \"Point\",\n            \"coordinates\": [\n              40,\n              90\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"GEOMETRYCOLLECTION (POINT (40 90), LINESTRING (20 20, 100 100))\",\n          \"geometry\": {\n            \"type\": \"GeometryCollection\",\n            \"geometries\": [\n              {\n                \"type\": \"Point\",\n                \"coordinates\": [\n                  40,\n                  90\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    20,\n                    20\n                  ],\n                  [\n                    100,\n                    100\n                  ]\n                ]\n              }\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionPL\",\n      \"category\": \"function\",\n      \"title\": \"mPL - points in I and E of line, line self-intersecting\",\n      \"id\": \"10-002\",\n      \"a\": {\n        \"wkt\": \"MULTIPOINT (40 90, 20 20, 70 70)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              40,\n              90\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              70,\n              70\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (20 20, 110 110, 170 50, 130 10, 70 70)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              20,\n              20\n            ],\n            [\n              110,\n              110\n            ],\n            [\n              170,\n              50\n            ],\n            [\n              130,\n              10\n            ],\n            [\n              70,\n              70\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"F00FFF1F2\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((20 20, 40 90, 70 70, 20 20))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  20,\n                  20\n                ],\n                [\n                  40,\n                  90\n                ],\n                [\n                  70,\n                  70\n                ],\n                [\n                  20,\n                  20\n                ]\n              ]\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"MULTIPOINT (20 20, 70 70)\",\n          \"geometry\": {\n            \"type\": \"MultiPoint\",\n            \"coordinates\": [\n              [\n                20,\n                20\n              ],\n              [\n                70,\n                70\n              ]\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"GEOMETRYCOLLECTION (POINT (40 90), LINESTRING (20 20, 70 70), LINESTRING (70 70, 110 110, 170 50, 130 10, 70 70))\",\n          \"geometry\": {\n            \"type\": \"GeometryCollection\",\n            \"geometries\": [\n              {\n                \"type\": \"Point\",\n                \"coordinates\": [\n                  40,\n                  90\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    20,\n                    20\n                  ],\n                  [\n                    70,\n                    70\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    70,\n                    70\n                  ],\n                  [\n                    110,\n                    110\n                  ],\n                  [\n                    170,\n                    50\n                  ],\n                  [\n                    130,\n                    10\n                  ],\n                  [\n                    70,\n                    70\n                  ]\n                ]\n              }\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"POINT (40 90)\",\n          \"geometry\": {\n            \"type\": \"Point\",\n            \"coordinates\": [\n              40,\n              90\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"GEOMETRYCOLLECTION (POINT (40 90), LINESTRING (20 20, 70 70), LINESTRING (70 70, 110 110, 170 50, 130 10, 70 70))\",\n          \"geometry\": {\n            \"type\": \"GeometryCollection\",\n            \"geometries\": [\n              {\n                \"type\": \"Point\",\n                \"coordinates\": [\n                  40,\n                  90\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    20,\n                    20\n                  ],\n                  [\n                    70,\n                    70\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    70,\n                    70\n                  ],\n                  [\n                    110,\n                    110\n                  ],\n                  [\n                    170,\n                    50\n                  ],\n                  [\n                    130,\n                    10\n                  ],\n                  [\n                    70,\n                    70\n                  ]\n                ]\n              }\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionPL\",\n      \"category\": \"function\",\n      \"title\": \"mPmL - points in I, B and E of lines, lines overlap, points overlap\",\n      \"id\": \"10-003\",\n      \"a\": {\n        \"wkt\": \"MULTILINESTRING ((100 320, 100 220),(100 180, 200 180),(220 180, 220 320),(220 320, 160 320),(100 320, 100 220),(100 180, 200 180),(220 180, 220 320),(220 320, 160 320),(100 220, 100 320))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                100,\n                320\n              ],\n              [\n                100,\n                220\n              ]\n            ],\n            [\n              [\n                100,\n                180\n              ],\n              [\n                200,\n                180\n              ]\n            ],\n            [\n              [\n                220,\n                180\n              ],\n              [\n                220,\n                320\n              ]\n            ],\n            [\n              [\n                220,\n                320\n              ],\n              [\n                160,\n                320\n              ]\n            ],\n            [\n              [\n                100,\n                320\n              ],\n              [\n                100,\n                220\n              ]\n            ],\n            [\n              [\n                100,\n                180\n              ],\n              [\n                200,\n                180\n              ]\n            ],\n            [\n              [\n                220,\n                180\n              ],\n              [\n                220,\n                320\n              ]\n            ],\n            [\n              [\n                220,\n                320\n              ],\n              [\n                160,\n                320\n              ]\n            ],\n            [\n              [\n                100,\n                220\n              ],\n              [\n                100,\n                320\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTIPOINT (100 320, 100 260, 100 220, 100 200, 100 180, 120 180, 200 180, 220 180, 220 260, 220 320, 200 320, 160 320, 140 320, 120 320, 100 320, 100 260, 100 220, 100 200, 100 180, 120 180, 200 180, 220 180, 220 260, 220 320, 200 320, 160 320, 140 320, 120 320)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              100,\n              320\n            ],\n            [\n              100,\n              260\n            ],\n            [\n              100,\n              220\n            ],\n            [\n              100,\n              200\n            ],\n            [\n              100,\n              180\n            ],\n            [\n              120,\n              180\n            ],\n            [\n              200,\n              180\n            ],\n            [\n              220,\n              180\n            ],\n            [\n              220,\n              260\n            ],\n            [\n              220,\n              320\n            ],\n            [\n              200,\n              320\n            ],\n            [\n              160,\n              320\n            ],\n            [\n              140,\n              320\n            ],\n            [\n              120,\n              320\n            ],\n            [\n              100,\n              320\n            ],\n            [\n              100,\n              260\n            ],\n            [\n              100,\n              220\n            ],\n            [\n              100,\n              200\n            ],\n            [\n              100,\n              180\n            ],\n            [\n              120,\n              180\n            ],\n            [\n              200,\n              180\n            ],\n            [\n              220,\n              180\n            ],\n            [\n              220,\n              260\n            ],\n            [\n              220,\n              320\n            ],\n            [\n              200,\n              320\n            ],\n            [\n              160,\n              320\n            ],\n            [\n              140,\n              320\n            ],\n            [\n              120,\n              320\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F10FF0F2\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((100 180, 100 320, 220 320, 220 180, 100 180))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  100,\n                  180\n                ],\n                [\n                  100,\n                  320\n                ],\n                [\n                  220,\n                  320\n                ],\n                [\n                  220,\n                  180\n                ],\n                [\n                  100,\n                  180\n                ]\n              ]\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"MULTIPOINT (100 180, 100 220, 100 260, 100 320, 120 180, 160 320, 200 180, 200 320, 220 180, 220 260, 220 320)\",\n          \"geometry\": {\n            \"type\": \"MultiPoint\",\n            \"coordinates\": [\n              [\n                100,\n                180\n              ],\n              [\n                100,\n                220\n              ],\n              [\n                100,\n                260\n              ],\n              [\n                100,\n                320\n              ],\n              [\n                120,\n                180\n              ],\n              [\n                160,\n                320\n              ],\n              [\n                200,\n                180\n              ],\n              [\n                200,\n                320\n              ],\n              [\n                220,\n                180\n              ],\n              [\n                220,\n                260\n              ],\n              [\n                220,\n                320\n              ]\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"GEOMETRYCOLLECTION (POINT (100 200), POINT (120 320), POINT (140 320), LINESTRING (100 320, 100 220), LINESTRING (100 180, 200 180), LINESTRING (220 180, 220 320), LINESTRING (220 320, 160 320))\",\n          \"geometry\": {\n            \"type\": \"GeometryCollection\",\n            \"geometries\": [\n              {\n                \"type\": \"Point\",\n                \"coordinates\": [\n                  100,\n                  200\n                ]\n              },\n              {\n                \"type\": \"Point\",\n                \"coordinates\": [\n                  120,\n                  320\n                ]\n              },\n              {\n                \"type\": \"Point\",\n                \"coordinates\": [\n                  140,\n                  320\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    100,\n                    320\n                  ],\n                  [\n                    100,\n                    220\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    100,\n                    180\n                  ],\n                  [\n                    200,\n                    180\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    220,\n                    180\n                  ],\n                  [\n                    220,\n                    320\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    220,\n                    320\n                  ],\n                  [\n                    160,\n                    320\n                  ]\n                ]\n              }\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"MULTILINESTRING ((100 320, 100 220),(100 180, 200 180),(220 180, 220 320),(220 320, 160 320))\",\n          \"geometry\": {\n            \"type\": \"MultiLineString\",\n            \"coordinates\": [\n              [\n                [\n                  100,\n                  320\n                ],\n                [\n                  100,\n                  220\n                ]\n              ],\n              [\n                [\n                  100,\n                  180\n                ],\n                [\n                  200,\n                  180\n                ]\n              ],\n              [\n                [\n                  220,\n                  180\n                ],\n                [\n                  220,\n                  320\n                ]\n              ],\n              [\n                [\n                  220,\n                  320\n                ],\n                [\n                  160,\n                  320\n                ]\n              ]\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"GEOMETRYCOLLECTION (POINT (100 200), POINT (120 320), POINT (140 320), LINESTRING (100 320, 100 220), LINESTRING (100 180, 200 180), LINESTRING (220 180, 220 320), LINESTRING (220 320, 160 320))\",\n          \"geometry\": {\n            \"type\": \"GeometryCollection\",\n            \"geometries\": [\n              {\n                \"type\": \"Point\",\n                \"coordinates\": [\n                  100,\n                  200\n                ]\n              },\n              {\n                \"type\": \"Point\",\n                \"coordinates\": [\n                  120,\n                  320\n                ]\n              },\n              {\n                \"type\": \"Point\",\n                \"coordinates\": [\n                  140,\n                  320\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    100,\n                    320\n                  ],\n                  [\n                    100,\n                    220\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    100,\n                    180\n                  ],\n                  [\n                    200,\n                    180\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    220,\n                    180\n                  ],\n                  [\n                    220,\n                    320\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    220,\n                    320\n                  ],\n                  [\n                    160,\n                    320\n                  ]\n                ]\n              }\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionPL\",\n      \"category\": \"function\",\n      \"title\": \"mPmL - points in I, B and E of lines, lines overlap, points overlap, x &lt;0, y &lt; 0\",\n      \"id\": \"10-004\",\n      \"a\": {\n        \"wkt\": \"MULTILINESTRING ((-500 -140, -500 -280, -320 -280, -320 -140, -500 -140, -500 -340),(-500 -140, -320 -140, -500 -140, -320 -140, -500 -140))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                -500,\n                -140\n              ],\n              [\n                -500,\n                -280\n              ],\n              [\n                -320,\n                -280\n              ],\n              [\n                -320,\n                -140\n              ],\n              [\n                -500,\n                -140\n              ],\n              [\n                -500,\n                -340\n              ]\n            ],\n            [\n              [\n                -500,\n                -140\n              ],\n              [\n                -320,\n                -140\n              ],\n              [\n                -500,\n                -140\n              ],\n              [\n                -320,\n                -140\n              ],\n              [\n                -500,\n                -140\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTIPOINT (-560 -180, -420 -180, -500 -220, -500 -340, -500 -280, -500 -140, -320 -140, -420 -140, -320 -180, -280 -140, -320 -120, -560 -180, -420 -180, -500 -220, -500 -340, -500 -280, -500 -140, -320 -140, -420 -140, -320 -180, -280 -140, -320 -120)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              -560,\n              -180\n            ],\n            [\n              -420,\n              -180\n            ],\n            [\n              -500,\n              -220\n            ],\n            [\n              -500,\n              -340\n            ],\n            [\n              -500,\n              -280\n            ],\n            [\n              -500,\n              -140\n            ],\n            [\n              -320,\n              -140\n            ],\n            [\n              -420,\n              -140\n            ],\n            [\n              -320,\n              -180\n            ],\n            [\n              -280,\n              -140\n            ],\n            [\n              -320,\n              -120\n            ],\n            [\n              -560,\n              -180\n            ],\n            [\n              -420,\n              -180\n            ],\n            [\n              -500,\n              -220\n            ],\n            [\n              -500,\n              -340\n            ],\n            [\n              -500,\n              -280\n            ],\n            [\n              -500,\n              -140\n            ],\n            [\n              -320,\n              -140\n            ],\n            [\n              -420,\n              -140\n            ],\n            [\n              -320,\n              -180\n            ],\n            [\n              -280,\n              -140\n            ],\n            [\n              -320,\n              -120\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F10FF0F2\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((-500 -340, -500 -140, -320 -140, -320 -280, -500 -340))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  -500,\n                  -340\n                ],\n                [\n                  -500,\n                  -140\n                ],\n                [\n                  -320,\n                  -140\n                ],\n                [\n                  -320,\n                  -280\n                ],\n                [\n                  -500,\n                  -340\n                ]\n              ]\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"MULTIPOINT (-500 -340, -500 -280, -500 -220, -500 -140, -420 -140, -320 -180, -320 -140)\",\n          \"geometry\": {\n            \"type\": \"MultiPoint\",\n            \"coordinates\": [\n              [\n                -500,\n                -340\n              ],\n              [\n                -500,\n                -280\n              ],\n              [\n                -500,\n                -220\n              ],\n              [\n                -500,\n                -140\n              ],\n              [\n                -420,\n                -140\n              ],\n              [\n                -320,\n                -180\n              ],\n              [\n                -320,\n                -140\n              ]\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"GEOMETRYCOLLECTION (POINT (-560 -180), POINT (-420 -180), POINT (-320 -120), POINT (-280 -140), LINESTRING (-500 -140, -500 -280), LINESTRING (-500 -280, -320 -280, -320 -140), LINESTRING (-320 -140, -500 -140), LINESTRING (-500 -280, -500 -340))\",\n          \"geometry\": {\n            \"type\": \"GeometryCollection\",\n            \"geometries\": [\n              {\n                \"type\": \"Point\",\n                \"coordinates\": [\n                  -560,\n                  -180\n                ]\n              },\n              {\n                \"type\": \"Point\",\n                \"coordinates\": [\n                  -420,\n                  -180\n                ]\n              },\n              {\n                \"type\": \"Point\",\n                \"coordinates\": [\n                  -320,\n                  -120\n                ]\n              },\n              {\n                \"type\": \"Point\",\n                \"coordinates\": [\n                  -280,\n                  -140\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    -500,\n                    -140\n                  ],\n                  [\n                    -500,\n                    -280\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    -500,\n                    -280\n                  ],\n                  [\n                    -320,\n                    -280\n                  ],\n                  [\n                    -320,\n                    -140\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    -320,\n                    -140\n                  ],\n                  [\n                    -500,\n                    -140\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    -500,\n                    -280\n                  ],\n                  [\n                    -500,\n                    -340\n                  ]\n                ]\n              }\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"MULTILINESTRING ((-500 -140, -500 -280),(-500 -280, -320 -280, -320 -140),(-320 -140, -500 -140),(-500 -280, -500 -340))\",\n          \"geometry\": {\n            \"type\": \"MultiLineString\",\n            \"coordinates\": [\n              [\n                [\n                  -500,\n                  -140\n                ],\n                [\n                  -500,\n                  -280\n                ]\n              ],\n              [\n                [\n                  -500,\n                  -280\n                ],\n                [\n                  -320,\n                  -280\n                ],\n                [\n                  -320,\n                  -140\n                ]\n              ],\n              [\n                [\n                  -320,\n                  -140\n                ],\n                [\n                  -500,\n                  -140\n                ]\n              ],\n              [\n                [\n                  -500,\n                  -280\n                ],\n                [\n                  -500,\n                  -340\n                ]\n              ]\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"GEOMETRYCOLLECTION (POINT (-560 -180), POINT (-420 -180), POINT (-320 -120), POINT (-280 -140), LINESTRING (-500 -140, -500 -280), LINESTRING (-500 -280, -320 -280, -320 -140), LINESTRING (-320 -140, -500 -140), LINESTRING (-500 -280, -500 -340))\",\n          \"geometry\": {\n            \"type\": \"GeometryCollection\",\n            \"geometries\": [\n              {\n                \"type\": \"Point\",\n                \"coordinates\": [\n                  -560,\n                  -180\n                ]\n              },\n              {\n                \"type\": \"Point\",\n                \"coordinates\": [\n                  -420,\n                  -180\n                ]\n              },\n              {\n                \"type\": \"Point\",\n                \"coordinates\": [\n                  -320,\n                  -120\n                ]\n              },\n              {\n                \"type\": \"Point\",\n                \"coordinates\": [\n                  -280,\n                  -140\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    -500,\n                    -140\n                  ],\n                  [\n                    -500,\n                    -280\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    -500,\n                    -280\n                  ],\n                  [\n                    -320,\n                    -280\n                  ],\n                  [\n                    -320,\n                    -140\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    -320,\n                    -140\n                  ],\n                  [\n                    -500,\n                    -140\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    -500,\n                    -280\n                  ],\n                  [\n                    -500,\n                    -340\n                  ]\n                ]\n              }\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionPL\",\n      \"category\": \"function\",\n      \"title\": \"mL - lines intersect at 1 point\",\n      \"id\": \"10-005\",\n      \"a\": {\n        \"wkt\": \"MULTILINESTRING ((180 100, 140 280, 240 140, 220 120, 140 280),(140 280, 100 400, 80 380, 140 280, 40 380, 20 360, 140 280))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                180,\n                100\n              ],\n              [\n                140,\n                280\n              ],\n              [\n                240,\n                140\n              ],\n              [\n                220,\n                120\n              ],\n              [\n                140,\n                280\n              ]\n            ],\n            [\n              [\n                140,\n                280\n              ],\n              [\n                100,\n                400\n              ],\n              [\n                80,\n                380\n              ],\n              [\n                140,\n                280\n              ],\n              [\n                40,\n                380\n              ],\n              [\n                20,\n                360\n              ],\n              [\n                140,\n                280\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"de9im\": \"\\r\\n      \\r\\n    \"\n      },\n      \"functions\": {}\n    },\n    {\n      \"group\": \"TestFunctionPL\",\n      \"category\": \"function\",\n      \"title\": \"mPmL - points in I, B and E of lines, lines overlap, points overlap\",\n      \"id\": \"10-006\",\n      \"a\": {\n        \"wkt\": \"MULTILINESTRING ((100 320, 100 220),(100 180, 200 180),(220 180, 220 320),(220 320, 160 320),(100 320, 100 220),(100 180, 200 180),(220 180, 220 320),(220 320, 160 320),(100 220, 100 320))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                100,\n                320\n              ],\n              [\n                100,\n                220\n              ]\n            ],\n            [\n              [\n                100,\n                180\n              ],\n              [\n                200,\n                180\n              ]\n            ],\n            [\n              [\n                220,\n                180\n              ],\n              [\n                220,\n                320\n              ]\n            ],\n            [\n              [\n                220,\n                320\n              ],\n              [\n                160,\n                320\n              ]\n            ],\n            [\n              [\n                100,\n                320\n              ],\n              [\n                100,\n                220\n              ]\n            ],\n            [\n              [\n                100,\n                180\n              ],\n              [\n                200,\n                180\n              ]\n            ],\n            [\n              [\n                220,\n                180\n              ],\n              [\n                220,\n                320\n              ]\n            ],\n            [\n              [\n                220,\n                320\n              ],\n              [\n                160,\n                320\n              ]\n            ],\n            [\n              [\n                100,\n                220\n              ],\n              [\n                100,\n                320\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTIPOINT (100 320, 100 260, 100 220, 100 200, 100 180, 120 180, 200 180, 220 180, 220 260, 220 320, 200 320, 160 320, 140 320, 120 320, 100 320, 100 260, 100 220, 100 200, 100 180, 120 180, 200 180, 220 180, 220 260, 220 320, 200 320, 160 320, 140 320, 120 320)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              100,\n              320\n            ],\n            [\n              100,\n              260\n            ],\n            [\n              100,\n              220\n            ],\n            [\n              100,\n              200\n            ],\n            [\n              100,\n              180\n            ],\n            [\n              120,\n              180\n            ],\n            [\n              200,\n              180\n            ],\n            [\n              220,\n              180\n            ],\n            [\n              220,\n              260\n            ],\n            [\n              220,\n              320\n            ],\n            [\n              200,\n              320\n            ],\n            [\n              160,\n              320\n            ],\n            [\n              140,\n              320\n            ],\n            [\n              120,\n              320\n            ],\n            [\n              100,\n              320\n            ],\n            [\n              100,\n              260\n            ],\n            [\n              100,\n              220\n            ],\n            [\n              100,\n              200\n            ],\n            [\n              100,\n              180\n            ],\n            [\n              120,\n              180\n            ],\n            [\n              200,\n              180\n            ],\n            [\n              220,\n              180\n            ],\n            [\n              220,\n              260\n            ],\n            [\n              220,\n              320\n            ],\n            [\n              200,\n              320\n            ],\n            [\n              160,\n              320\n            ],\n            [\n              140,\n              320\n            ],\n            [\n              120,\n              320\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F10FF0F2\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((100 180, 100 320, 220 320, 220 180, 100 180))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  100,\n                  180\n                ],\n                [\n                  100,\n                  320\n                ],\n                [\n                  220,\n                  320\n                ],\n                [\n                  220,\n                  180\n                ],\n                [\n                  100,\n                  180\n                ]\n              ]\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"MULTIPOINT (100 180, 100 220, 100 260, 100 320, 120 180, 160 320, 200 180, 200 320, 220 180, 220 260, 220 320)\",\n          \"geometry\": {\n            \"type\": \"MultiPoint\",\n            \"coordinates\": [\n              [\n                100,\n                180\n              ],\n              [\n                100,\n                220\n              ],\n              [\n                100,\n                260\n              ],\n              [\n                100,\n                320\n              ],\n              [\n                120,\n                180\n              ],\n              [\n                160,\n                320\n              ],\n              [\n                200,\n                180\n              ],\n              [\n                200,\n                320\n              ],\n              [\n                220,\n                180\n              ],\n              [\n                220,\n                260\n              ],\n              [\n                220,\n                320\n              ]\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"GEOMETRYCOLLECTION (POINT (100 200), POINT (120 320), POINT (140 320), LINESTRING (100 320, 100 220), LINESTRING (100 180, 200 180), LINESTRING (220 180, 220 320), LINESTRING (220 320, 160 320))\",\n          \"geometry\": {\n            \"type\": \"GeometryCollection\",\n            \"geometries\": [\n              {\n                \"type\": \"Point\",\n                \"coordinates\": [\n                  100,\n                  200\n                ]\n              },\n              {\n                \"type\": \"Point\",\n                \"coordinates\": [\n                  120,\n                  320\n                ]\n              },\n              {\n                \"type\": \"Point\",\n                \"coordinates\": [\n                  140,\n                  320\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    100,\n                    320\n                  ],\n                  [\n                    100,\n                    220\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    100,\n                    180\n                  ],\n                  [\n                    200,\n                    180\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    220,\n                    180\n                  ],\n                  [\n                    220,\n                    320\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    220,\n                    320\n                  ],\n                  [\n                    160,\n                    320\n                  ]\n                ]\n              }\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"MULTILINESTRING ((100 320, 100 220),(100 180, 200 180),(220 180, 220 320),(220 320, 160 320))\",\n          \"geometry\": {\n            \"type\": \"MultiLineString\",\n            \"coordinates\": [\n              [\n                [\n                  100,\n                  320\n                ],\n                [\n                  100,\n                  220\n                ]\n              ],\n              [\n                [\n                  100,\n                  180\n                ],\n                [\n                  200,\n                  180\n                ]\n              ],\n              [\n                [\n                  220,\n                  180\n                ],\n                [\n                  220,\n                  320\n                ]\n              ],\n              [\n                [\n                  220,\n                  320\n                ],\n                [\n                  160,\n                  320\n                ]\n              ]\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"GEOMETRYCOLLECTION (POINT (100 200), POINT (120 320), POINT (140 320), LINESTRING (100 320, 100 220), LINESTRING (100 180, 200 180), LINESTRING (220 180, 220 320), LINESTRING (220 320, 160 320))\",\n          \"geometry\": {\n            \"type\": \"GeometryCollection\",\n            \"geometries\": [\n              {\n                \"type\": \"Point\",\n                \"coordinates\": [\n                  100,\n                  200\n                ]\n              },\n              {\n                \"type\": \"Point\",\n                \"coordinates\": [\n                  120,\n                  320\n                ]\n              },\n              {\n                \"type\": \"Point\",\n                \"coordinates\": [\n                  140,\n                  320\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    100,\n                    320\n                  ],\n                  [\n                    100,\n                    220\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    100,\n                    180\n                  ],\n                  [\n                    200,\n                    180\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    220,\n                    180\n                  ],\n                  [\n                    220,\n                    320\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    220,\n                    320\n                  ],\n                  [\n                    160,\n                    320\n                  ]\n                ]\n              }\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionPA\",\n      \"category\": \"function\",\n      \"title\": \"PA - point contained in simple polygon\",\n      \"id\": \"11-001\",\n      \"a\": {\n        \"wkt\": \"POINT (100 100)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            100,\n            100\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((50 50, 200 50, 200 200, 50 200, 50 50))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                50,\n                50\n              ],\n              [\n                200,\n                50\n              ],\n              [\n                200,\n                200\n              ],\n              [\n                50,\n                200\n              ],\n              [\n                50,\n                50\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0FFFFF212\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POINT (100 100)\",\n          \"geometry\": {\n            \"type\": \"Point\",\n            \"coordinates\": [\n              100,\n              100\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"POINT (100 100)\",\n          \"geometry\": {\n            \"type\": \"Point\",\n            \"coordinates\": [\n              100,\n              100\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"POLYGON ((50 50, 50 200, 200 200, 200 50, 50 50))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  50,\n                  50\n                ],\n                [\n                  50,\n                  200\n                ],\n                [\n                  200,\n                  200\n                ],\n                [\n                  200,\n                  50\n                ],\n                [\n                  50,\n                  50\n                ]\n              ]\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"GEOMETRYCOLLECTION EMPTY\",\n          \"geometry\": null\n        },\n        \"symDifference\": {\n          \"wkt\": \"POLYGON ((50 50, 50 200, 200 200, 200 50, 50 50))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  50,\n                  50\n                ],\n                [\n                  50,\n                  200\n                ],\n                [\n                  200,\n                  200\n                ],\n                [\n                  200,\n                  50\n                ],\n                [\n                  50,\n                  50\n                ]\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionPA\",\n      \"category\": \"function\",\n      \"title\": \"mPmA - points on I, B and E of touching triangles\",\n      \"id\": \"11-002\",\n      \"a\": {\n        \"wkt\": \"MULTIPOLYGON (((120 320, 180 200, 240 320, 120 320)),((180 200, 240 80, 300 200, 180 200)))\",\n        \"geometry\": {\n          \"type\": \"MultiPolygon\",\n          \"coordinates\": [\n            [\n              [\n                [\n                  120,\n                  320\n                ],\n                [\n                  180,\n                  200\n                ],\n                [\n                  240,\n                  320\n                ],\n                [\n                  120,\n                  320\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  180,\n                  200\n                ],\n                [\n                  240,\n                  80\n                ],\n                [\n                  300,\n                  200\n                ],\n                [\n                  180,\n                  200\n                ]\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTIPOINT (120 320, 180 260, 180 320, 180 200, 300 200, 200 220)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              120,\n              320\n            ],\n            [\n              180,\n              260\n            ],\n            [\n              180,\n              320\n            ],\n            [\n              180,\n              200\n            ],\n            [\n              300,\n              200\n            ],\n            [\n              200,\n              220\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F20F10F2\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((240 80, 120 320, 240 320, 300 200, 240 80))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  240,\n                  80\n                ],\n                [\n                  120,\n                  320\n                ],\n                [\n                  240,\n                  320\n                ],\n                [\n                  300,\n                  200\n                ],\n                [\n                  240,\n                  80\n                ]\n              ]\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"MULTIPOINT (120 320, 180 200, 180 260, 180 320, 300 200)\",\n          \"geometry\": {\n            \"type\": \"MultiPoint\",\n            \"coordinates\": [\n              [\n                120,\n                320\n              ],\n              [\n                180,\n                200\n              ],\n              [\n                180,\n                260\n              ],\n              [\n                180,\n                320\n              ],\n              [\n                300,\n                200\n              ]\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"GEOMETRYCOLLECTION (POINT (200 220), POLYGON ((180 200, 120 320, 240 320, 180 200)), POLYGON ((180 200, 300 200, 240 80, 180 200)))\",\n          \"geometry\": {\n            \"type\": \"GeometryCollection\",\n            \"geometries\": [\n              {\n                \"type\": \"Point\",\n                \"coordinates\": [\n                  200,\n                  220\n                ]\n              },\n              {\n                \"type\": \"Polygon\",\n                \"coordinates\": [\n                  [\n                    [\n                      180,\n                      200\n                    ],\n                    [\n                      120,\n                      320\n                    ],\n                    [\n                      240,\n                      320\n                    ],\n                    [\n                      180,\n                      200\n                    ]\n                  ]\n                ]\n              },\n              {\n                \"type\": \"Polygon\",\n                \"coordinates\": [\n                  [\n                    [\n                      180,\n                      200\n                    ],\n                    [\n                      300,\n                      200\n                    ],\n                    [\n                      240,\n                      80\n                    ],\n                    [\n                      180,\n                      200\n                    ]\n                  ]\n                ]\n              }\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"MULTIPOLYGON (((180 200, 120 320, 240 320, 180 200)),((180 200, 300 200, 240 80, 180 200)))\",\n          \"geometry\": {\n            \"type\": \"MultiPolygon\",\n            \"coordinates\": [\n              [\n                [\n                  [\n                    180,\n                    200\n                  ],\n                  [\n                    120,\n                    320\n                  ],\n                  [\n                    240,\n                    320\n                  ],\n                  [\n                    180,\n                    200\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    180,\n                    200\n                  ],\n                  [\n                    300,\n                    200\n                  ],\n                  [\n                    240,\n                    80\n                  ],\n                  [\n                    180,\n                    200\n                  ]\n                ]\n              ]\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"GEOMETRYCOLLECTION (POINT (200 220), POLYGON ((180 200, 120 320, 240 320, 180 200)), POLYGON ((180 200, 300 200, 240 80, 180 200)))\",\n          \"geometry\": {\n            \"type\": \"GeometryCollection\",\n            \"geometries\": [\n              {\n                \"type\": \"Point\",\n                \"coordinates\": [\n                  200,\n                  220\n                ]\n              },\n              {\n                \"type\": \"Polygon\",\n                \"coordinates\": [\n                  [\n                    [\n                      180,\n                      200\n                    ],\n                    [\n                      120,\n                      320\n                    ],\n                    [\n                      240,\n                      320\n                    ],\n                    [\n                      180,\n                      200\n                    ]\n                  ]\n                ]\n              },\n              {\n                \"type\": \"Polygon\",\n                \"coordinates\": [\n                  [\n                    [\n                      180,\n                      200\n                    ],\n                    [\n                      300,\n                      200\n                    ],\n                    [\n                      240,\n                      80\n                    ],\n                    [\n                      180,\n                      200\n                    ]\n                  ]\n                ]\n              }\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionPA\",\n      \"category\": \"function\",\n      \"title\": \"mPmA - points on I, B and E of concentric doughnuts\",\n      \"id\": \"11-003\",\n      \"a\": {\n        \"wkt\": \"MULTIPOLYGON (((120 80, 420 80, 420 340, 120 340, 120 80),(160 300, 160 120, 380 120, 380 300, 160 300)),((200 260, 200 160, 340 160, 340 260, 200 260),(240 220, 240 200, 300 200, 300 220, 240 220)))\",\n        \"geometry\": {\n          \"type\": \"MultiPolygon\",\n          \"coordinates\": [\n            [\n              [\n                [\n                  120,\n                  80\n                ],\n                [\n                  420,\n                  80\n                ],\n                [\n                  420,\n                  340\n                ],\n                [\n                  120,\n                  340\n                ],\n                [\n                  120,\n                  80\n                ]\n              ],\n              [\n                [\n                  160,\n                  300\n                ],\n                [\n                  160,\n                  120\n                ],\n                [\n                  380,\n                  120\n                ],\n                [\n                  380,\n                  300\n                ],\n                [\n                  160,\n                  300\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  200,\n                  260\n                ],\n                [\n                  200,\n                  160\n                ],\n                [\n                  340,\n                  160\n                ],\n                [\n                  340,\n                  260\n                ],\n                [\n                  200,\n                  260\n                ]\n              ],\n              [\n                [\n                  240,\n                  220\n                ],\n                [\n                  240,\n                  200\n                ],\n                [\n                  300,\n                  200\n                ],\n                [\n                  300,\n                  220\n                ],\n                [\n                  240,\n                  220\n                ]\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTIPOINT (200 360, 420 340, 400 100, 340 120, 200 140, 200 160, 220 180, 260 200, 200 360, 420 340, 400 100, 340 120, 200 140, 200 160, 220 180, 260 200)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              200,\n              360\n            ],\n            [\n              420,\n              340\n            ],\n            [\n              400,\n              100\n            ],\n            [\n              340,\n              120\n            ],\n            [\n              200,\n              140\n            ],\n            [\n              200,\n              160\n            ],\n            [\n              220,\n              180\n            ],\n            [\n              260,\n              200\n            ],\n            [\n              200,\n              360\n            ],\n            [\n              420,\n              340\n            ],\n            [\n              400,\n              100\n            ],\n            [\n              340,\n              120\n            ],\n            [\n              200,\n              140\n            ],\n            [\n              200,\n              160\n            ],\n            [\n              220,\n              180\n            ],\n            [\n              260,\n              200\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F20F10F2\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((120 80, 120 340, 420 340, 420 80, 120 80))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  120,\n                  80\n                ],\n                [\n                  120,\n                  340\n                ],\n                [\n                  420,\n                  340\n                ],\n                [\n                  420,\n                  80\n                ],\n                [\n                  120,\n                  80\n                ]\n              ]\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"MULTIPOINT (200 160, 220 180, 260 200, 340 120, 400 100, 420 340)\",\n          \"geometry\": {\n            \"type\": \"MultiPoint\",\n            \"coordinates\": [\n              [\n                200,\n                160\n              ],\n              [\n                220,\n                180\n              ],\n              [\n                260,\n                200\n              ],\n              [\n                340,\n                120\n              ],\n              [\n                400,\n                100\n              ],\n              [\n                420,\n                340\n              ]\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"GEOMETRYCOLLECTION (POINT (200 140), POINT (200 360), POLYGON ((120 80, 120 340, 420 340, 420 80, 120 80),(160 300, 160 120, 380 120, 380 300, 160 300)), POLYGON ((200 260, 340 260, 340 160, 200 160, 200 260),(240 220, 240 200, 300 200, 300 220, 240 220)))\",\n          \"geometry\": {\n            \"type\": \"GeometryCollection\",\n            \"geometries\": [\n              {\n                \"type\": \"Point\",\n                \"coordinates\": [\n                  200,\n                  140\n                ]\n              },\n              {\n                \"type\": \"Point\",\n                \"coordinates\": [\n                  200,\n                  360\n                ]\n              },\n              {\n                \"type\": \"Polygon\",\n                \"coordinates\": [\n                  [\n                    [\n                      120,\n                      80\n                    ],\n                    [\n                      120,\n                      340\n                    ],\n                    [\n                      420,\n                      340\n                    ],\n                    [\n                      420,\n                      80\n                    ],\n                    [\n                      120,\n                      80\n                    ]\n                  ],\n                  [\n                    [\n                      160,\n                      300\n                    ],\n                    [\n                      160,\n                      120\n                    ],\n                    [\n                      380,\n                      120\n                    ],\n                    [\n                      380,\n                      300\n                    ],\n                    [\n                      160,\n                      300\n                    ]\n                  ]\n                ]\n              },\n              {\n                \"type\": \"Polygon\",\n                \"coordinates\": [\n                  [\n                    [\n                      200,\n                      260\n                    ],\n                    [\n                      340,\n                      260\n                    ],\n                    [\n                      340,\n                      160\n                    ],\n                    [\n                      200,\n                      160\n                    ],\n                    [\n                      200,\n                      260\n                    ]\n                  ],\n                  [\n                    [\n                      240,\n                      220\n                    ],\n                    [\n                      240,\n                      200\n                    ],\n                    [\n                      300,\n                      200\n                    ],\n                    [\n                      300,\n                      220\n                    ],\n                    [\n                      240,\n                      220\n                    ]\n                  ]\n                ]\n              }\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"MULTIPOLYGON (((120 80, 120 340, 420 340, 420 80, 120 80),(160 300, 160 120, 380 120, 380 300, 160 300)),((200 260, 340 260, 340 160, 200 160, 200 260),(240 220, 240 200, 300 200, 300 220, 240 220)))\",\n          \"geometry\": {\n            \"type\": \"MultiPolygon\",\n            \"coordinates\": [\n              [\n                [\n                  [\n                    120,\n                    80\n                  ],\n                  [\n                    120,\n                    340\n                  ],\n                  [\n                    420,\n                    340\n                  ],\n                  [\n                    420,\n                    80\n                  ],\n                  [\n                    120,\n                    80\n                  ]\n                ],\n                [\n                  [\n                    160,\n                    300\n                  ],\n                  [\n                    160,\n                    120\n                  ],\n                  [\n                    380,\n                    120\n                  ],\n                  [\n                    380,\n                    300\n                  ],\n                  [\n                    160,\n                    300\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    200,\n                    260\n                  ],\n                  [\n                    340,\n                    260\n                  ],\n                  [\n                    340,\n                    160\n                  ],\n                  [\n                    200,\n                    160\n                  ],\n                  [\n                    200,\n                    260\n                  ]\n                ],\n                [\n                  [\n                    240,\n                    220\n                  ],\n                  [\n                    240,\n                    200\n                  ],\n                  [\n                    300,\n                    200\n                  ],\n                  [\n                    300,\n                    220\n                  ],\n                  [\n                    240,\n                    220\n                  ]\n                ]\n              ]\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"GEOMETRYCOLLECTION (POINT (200 140), POINT (200 360), POLYGON ((120 80, 120 340, 420 340, 420 80, 120 80),(160 300, 160 120, 380 120, 380 300, 160 300)), POLYGON ((200 260, 340 260, 340 160, 200 160, 200 260),(240 220, 240 200, 300 200, 300 220, 240 220)))\",\n          \"geometry\": {\n            \"type\": \"GeometryCollection\",\n            \"geometries\": [\n              {\n                \"type\": \"Point\",\n                \"coordinates\": [\n                  200,\n                  140\n                ]\n              },\n              {\n                \"type\": \"Point\",\n                \"coordinates\": [\n                  200,\n                  360\n                ]\n              },\n              {\n                \"type\": \"Polygon\",\n                \"coordinates\": [\n                  [\n                    [\n                      120,\n                      80\n                    ],\n                    [\n                      120,\n                      340\n                    ],\n                    [\n                      420,\n                      340\n                    ],\n                    [\n                      420,\n                      80\n                    ],\n                    [\n                      120,\n                      80\n                    ]\n                  ],\n                  [\n                    [\n                      160,\n                      300\n                    ],\n                    [\n                      160,\n                      120\n                    ],\n                    [\n                      380,\n                      120\n                    ],\n                    [\n                      380,\n                      300\n                    ],\n                    [\n                      160,\n                      300\n                    ]\n                  ]\n                ]\n              },\n              {\n                \"type\": \"Polygon\",\n                \"coordinates\": [\n                  [\n                    [\n                      200,\n                      260\n                    ],\n                    [\n                      340,\n                      260\n                    ],\n                    [\n                      340,\n                      160\n                    ],\n                    [\n                      200,\n                      160\n                    ],\n                    [\n                      200,\n                      260\n                    ]\n                  ],\n                  [\n                    [\n                      240,\n                      220\n                    ],\n                    [\n                      240,\n                      200\n                    ],\n                    [\n                      300,\n                      200\n                    ],\n                    [\n                      300,\n                      220\n                    ],\n                    [\n                      240,\n                      220\n                    ]\n                  ]\n                ]\n              }\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionLL\",\n      \"category\": \"function\",\n      \"title\": \"LL - A crosses B\",\n      \"id\": \"12-001\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (0 0, 100 100)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              0,\n              0\n            ],\n            [\n              100,\n              100\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (0 100, 100 0)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              0,\n              100\n            ],\n            [\n              100,\n              0\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F1FF0102\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"LINESTRING (0 0, 100 100)\",\n          \"geometry\": {\n            \"type\": \"LineString\",\n            \"coordinates\": [\n              [\n                0,\n                0\n              ],\n              [\n                100,\n                100\n              ]\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"POINT (50 50)\",\n          \"geometry\": {\n            \"type\": \"Point\",\n            \"coordinates\": [\n              50,\n              50\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"MULTILINESTRING ((0 0, 50 50),(50 50, 100 100),(0 100, 50 50),(50 50, 100 0))\",\n          \"geometry\": {\n            \"type\": \"MultiLineString\",\n            \"coordinates\": [\n              [\n                [\n                  0,\n                  0\n                ],\n                [\n                  50,\n                  50\n                ]\n              ],\n              [\n                [\n                  50,\n                  50\n                ],\n                [\n                  100,\n                  100\n                ]\n              ],\n              [\n                [\n                  0,\n                  100\n                ],\n                [\n                  50,\n                  50\n                ]\n              ],\n              [\n                [\n                  50,\n                  50\n                ],\n                [\n                  100,\n                  0\n                ]\n              ]\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"MULTILINESTRING ((0 0, 50 50),(50 50, 100 100))\",\n          \"geometry\": {\n            \"type\": \"MultiLineString\",\n            \"coordinates\": [\n              [\n                [\n                  0,\n                  0\n                ],\n                [\n                  50,\n                  50\n                ]\n              ],\n              [\n                [\n                  50,\n                  50\n                ],\n                [\n                  100,\n                  100\n                ]\n              ]\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"MULTILINESTRING ((0 0, 50 50),(50 50, 100 100),(0 100, 50 50),(50 50, 100 0))\",\n          \"geometry\": {\n            \"type\": \"MultiLineString\",\n            \"coordinates\": [\n              [\n                [\n                  0,\n                  0\n                ],\n                [\n                  50,\n                  50\n                ]\n              ],\n              [\n                [\n                  50,\n                  50\n                ],\n                [\n                  100,\n                  100\n                ]\n              ],\n              [\n                [\n                  0,\n                  100\n                ],\n                [\n                  50,\n                  50\n                ]\n              ],\n              [\n                [\n                  50,\n                  50\n                ],\n                [\n                  100,\n                  0\n                ]\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionLL\",\n      \"category\": \"function\",\n      \"title\": \"LL - A shares one segment with B\",\n      \"id\": \"12-002\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (0 0, 100 100, 200 0)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              0,\n              0\n            ],\n            [\n              100,\n              100\n            ],\n            [\n              200,\n              0\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (0 0, 100 100, 200 200)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              0,\n              0\n            ],\n            [\n              100,\n              100\n            ],\n            [\n              200,\n              200\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"1F1F00102\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((0 0, 100 100, 200 0, 0 0))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  0,\n                  0\n                ],\n                [\n                  100,\n                  100\n                ],\n                [\n                  200,\n                  0\n                ],\n                [\n                  0,\n                  0\n                ]\n              ]\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"LINESTRING (0 0, 100 100)\",\n          \"geometry\": {\n            \"type\": \"LineString\",\n            \"coordinates\": [\n              [\n                0,\n                0\n              ],\n              [\n                100,\n                100\n              ]\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"MULTILINESTRING ((0 0, 100 100),(100 100, 200 0),(100 100, 200 200))\",\n          \"geometry\": {\n            \"type\": \"MultiLineString\",\n            \"coordinates\": [\n              [\n                [\n                  0,\n                  0\n                ],\n                [\n                  100,\n                  100\n                ]\n              ],\n              [\n                [\n                  100,\n                  100\n                ],\n                [\n                  200,\n                  0\n                ]\n              ],\n              [\n                [\n                  100,\n                  100\n                ],\n                [\n                  200,\n                  200\n                ]\n              ]\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"LINESTRING (100 100, 200 0)\",\n          \"geometry\": {\n            \"type\": \"LineString\",\n            \"coordinates\": [\n              [\n                100,\n                100\n              ],\n              [\n                200,\n                0\n              ]\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"MULTILINESTRING ((100 100, 200 0),(100 100, 200 200))\",\n          \"geometry\": {\n            \"type\": \"MultiLineString\",\n            \"coordinates\": [\n              [\n                [\n                  100,\n                  100\n                ],\n                [\n                  200,\n                  0\n                ]\n              ],\n              [\n                [\n                  100,\n                  100\n                ],\n                [\n                  200,\n                  200\n                ]\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionLL\",\n      \"category\": \"function\",\n      \"title\": \"LL - A and B disjoint\",\n      \"id\": \"12-003\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (40 360, 40 220, 120 360)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              360\n            ],\n            [\n              40,\n              220\n            ],\n            [\n              120,\n              360\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (120 340, 60 220, 140 220, 140 360)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              120,\n              340\n            ],\n            [\n              60,\n              220\n            ],\n            [\n              140,\n              220\n            ],\n            [\n              140,\n              360\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": true,\n        \"intersects\": false,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF1FF0102\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((40 220, 40 360, 120 360, 40 220))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  40,\n                  220\n                ],\n                [\n                  40,\n                  360\n                ],\n                [\n                  120,\n                  360\n                ],\n                [\n                  40,\n                  220\n                ]\n              ]\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"GEOMETRYCOLLECTION EMPTY\",\n          \"geometry\": null\n        },\n        \"union\": {\n          \"wkt\": \"MULTILINESTRING ((40 360, 40 220, 120 360),(120 340, 60 220, 140 220, 140 360))\",\n          \"geometry\": {\n            \"type\": \"MultiLineString\",\n            \"coordinates\": [\n              [\n                [\n                  40,\n                  360\n                ],\n                [\n                  40,\n                  220\n                ],\n                [\n                  120,\n                  360\n                ]\n              ],\n              [\n                [\n                  120,\n                  340\n                ],\n                [\n                  60,\n                  220\n                ],\n                [\n                  140,\n                  220\n                ],\n                [\n                  140,\n                  360\n                ]\n              ]\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"LINESTRING (40 360, 40 220, 120 360)\",\n          \"geometry\": {\n            \"type\": \"LineString\",\n            \"coordinates\": [\n              [\n                40,\n                360\n              ],\n              [\n                40,\n                220\n              ],\n              [\n                120,\n                360\n              ]\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"MULTILINESTRING ((40 360, 40 220, 120 360),(120 340, 60 220, 140 220, 140 360))\",\n          \"geometry\": {\n            \"type\": \"MultiLineString\",\n            \"coordinates\": [\n              [\n                [\n                  40,\n                  360\n                ],\n                [\n                  40,\n                  220\n                ],\n                [\n                  120,\n                  360\n                ]\n              ],\n              [\n                [\n                  120,\n                  340\n                ],\n                [\n                  60,\n                  220\n                ],\n                [\n                  140,\n                  220\n                ],\n                [\n                  140,\n                  360\n                ]\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionLL\",\n      \"category\": \"function\",\n      \"title\": \"LL - A and B intersect frequently\",\n      \"id\": \"12-004\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (220 240, 200 220, 60 320, 40 300, 180 200, 160 180, 20 280)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              220,\n              240\n            ],\n            [\n              200,\n              220\n            ],\n            [\n              60,\n              320\n            ],\n            [\n              40,\n              300\n            ],\n            [\n              180,\n              200\n            ],\n            [\n              160,\n              180\n            ],\n            [\n              20,\n              280\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (220 240, 140 160, 120 180, 220 280, 200 300, 100 200)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              220,\n              240\n            ],\n            [\n              140,\n              160\n            ],\n            [\n              120,\n              180\n            ],\n            [\n              220,\n              280\n            ],\n            [\n              200,\n              300\n            ],\n            [\n              100,\n              200\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"1F1F00102\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((160 180, 20 280, 60 320, 220 240, 160 180))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  160,\n                  180\n                ],\n                [\n                  20,\n                  280\n                ],\n                [\n                  60,\n                  320\n                ],\n                [\n                  220,\n                  240\n                ],\n                [\n                  160,\n                  180\n                ]\n              ]\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"GEOMETRYCOLLECTION (POINT (113.33333333333333 213.33333333333334), POINT (133.33333333333334 233.33333333333334), POINT (136.66666666666666 196.66666666666666), POINT (153.33333333333334 253.33333333333334), POINT (156.66666666666666 216.66666666666666), POINT (176.66666666666666 236.66666666666666), LINESTRING (220 240, 200 220), LINESTRING (180 200, 160 180))\",\n          \"geometry\": {\n            \"type\": \"GeometryCollection\",\n            \"geometries\": [\n              {\n                \"type\": \"Point\",\n                \"coordinates\": [\n                  113.33333333333333,\n                  213.33333333333334\n                ]\n              },\n              {\n                \"type\": \"Point\",\n                \"coordinates\": [\n                  133.33333333333334,\n                  233.33333333333334\n                ]\n              },\n              {\n                \"type\": \"Point\",\n                \"coordinates\": [\n                  136.66666666666666,\n                  196.66666666666666\n                ]\n              },\n              {\n                \"type\": \"Point\",\n                \"coordinates\": [\n                  153.33333333333334,\n                  253.33333333333334\n                ]\n              },\n              {\n                \"type\": \"Point\",\n                \"coordinates\": [\n                  156.66666666666666,\n                  216.66666666666666\n                ]\n              },\n              {\n                \"type\": \"Point\",\n                \"coordinates\": [\n                  176.66666666666666,\n                  236.66666666666666\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    220,\n                    240\n                  ],\n                  [\n                    200,\n                    220\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    180,\n                    200\n                  ],\n                  [\n                    160,\n                    180\n                  ]\n                ]\n              }\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"MULTILINESTRING ((220 240, 200 220),(200 220, 176.66666666666666 236.66666666666666),(176.66666666666666 236.66666666666666, 153.33333333333334 253.33333333333334),(153.33333333333334 253.33333333333334, 60 320, 40 300, 133.33333333333334 233.33333333333334),(133.33333333333334 233.33333333333334, 156.66666666666666 216.66666666666666),(156.66666666666666 216.66666666666666, 180 200),(180 200, 160 180),(160 180, 136.66666666666666 196.66666666666666),(136.66666666666666 196.66666666666666, 113.33333333333333 213.33333333333334),(113.33333333333333 213.33333333333334, 20 280),(200 220, 180 200),(160 180, 140 160, 120 180, 136.66666666666666 196.66666666666666),(136.66666666666666 196.66666666666666, 156.66666666666666 216.66666666666666),(156.66666666666666 216.66666666666666, 176.66666666666666 236.66666666666666),(176.66666666666666 236.66666666666666, 220 280, 200 300, 153.33333333333334 253.33333333333334),(153.33333333333334 253.33333333333334, 133.33333333333334 233.33333333333334),(133.33333333333334 233.33333333333334, 113.33333333333333 213.33333333333334),(113.33333333333333 213.33333333333334, 100 200))\",\n          \"geometry\": {\n            \"type\": \"MultiLineString\",\n            \"coordinates\": [\n              [\n                [\n                  220,\n                  240\n                ],\n                [\n                  200,\n                  220\n                ]\n              ],\n              [\n                [\n                  200,\n                  220\n                ],\n                [\n                  176.66666666666666,\n                  236.66666666666666\n                ]\n              ],\n              [\n                [\n                  176.66666666666666,\n                  236.66666666666666\n                ],\n                [\n                  153.33333333333334,\n                  253.33333333333334\n                ]\n              ],\n              [\n                [\n                  153.33333333333334,\n                  253.33333333333334\n                ],\n                [\n                  60,\n                  320\n                ],\n                [\n                  40,\n                  300\n                ],\n                [\n                  133.33333333333334,\n                  233.33333333333334\n                ]\n              ],\n              [\n                [\n                  133.33333333333334,\n                  233.33333333333334\n                ],\n                [\n                  156.66666666666666,\n                  216.66666666666666\n                ]\n              ],\n              [\n                [\n                  156.66666666666666,\n                  216.66666666666666\n                ],\n                [\n                  180,\n                  200\n                ]\n              ],\n              [\n                [\n                  180,\n                  200\n                ],\n                [\n                  160,\n                  180\n                ]\n              ],\n              [\n                [\n                  160,\n                  180\n                ],\n                [\n                  136.66666666666666,\n                  196.66666666666666\n                ]\n              ],\n              [\n                [\n                  136.66666666666666,\n                  196.66666666666666\n                ],\n                [\n                  113.33333333333333,\n                  213.33333333333334\n                ]\n              ],\n              [\n                [\n                  113.33333333333333,\n                  213.33333333333334\n                ],\n                [\n                  20,\n                  280\n                ]\n              ],\n              [\n                [\n                  200,\n                  220\n                ],\n                [\n                  180,\n                  200\n                ]\n              ],\n              [\n                [\n                  160,\n                  180\n                ],\n                [\n                  140,\n                  160\n                ],\n                [\n                  120,\n                  180\n                ],\n                [\n                  136.66666666666666,\n                  196.66666666666666\n                ]\n              ],\n              [\n                [\n                  136.66666666666666,\n                  196.66666666666666\n                ],\n                [\n                  156.66666666666666,\n                  216.66666666666666\n                ]\n              ],\n              [\n                [\n                  156.66666666666666,\n                  216.66666666666666\n                ],\n                [\n                  176.66666666666666,\n                  236.66666666666666\n                ]\n              ],\n              [\n                [\n                  176.66666666666666,\n                  236.66666666666666\n                ],\n                [\n                  220,\n                  280\n                ],\n                [\n                  200,\n                  300\n                ],\n                [\n                  153.33333333333334,\n                  253.33333333333334\n                ]\n              ],\n              [\n                [\n                  153.33333333333334,\n                  253.33333333333334\n                ],\n                [\n                  133.33333333333334,\n                  233.33333333333334\n                ]\n              ],\n              [\n                [\n                  133.33333333333334,\n                  233.33333333333334\n                ],\n                [\n                  113.33333333333333,\n                  213.33333333333334\n                ]\n              ],\n              [\n                [\n                  113.33333333333333,\n                  213.33333333333334\n                ],\n                [\n                  100,\n                  200\n                ]\n              ]\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"MULTILINESTRING ((200 220, 176.66666666666666 236.66666666666666),(176.66666666666666 236.66666666666666, 153.33333333333334 253.33333333333334),(153.33333333333334 253.33333333333334, 60 320, 40 300, 133.33333333333334 233.33333333333334),(133.33333333333334 233.33333333333334, 156.66666666666666 216.66666666666666),(156.66666666666666 216.66666666666666, 180 200),(160 180, 136.66666666666666 196.66666666666666),(136.66666666666666 196.66666666666666, 113.33333333333333 213.33333333333334),(113.33333333333333 213.33333333333334, 20 280))\",\n          \"geometry\": {\n            \"type\": \"MultiLineString\",\n            \"coordinates\": [\n              [\n                [\n                  200,\n                  220\n                ],\n                [\n                  176.66666666666666,\n                  236.66666666666666\n                ]\n              ],\n              [\n                [\n                  176.66666666666666,\n                  236.66666666666666\n                ],\n                [\n                  153.33333333333334,\n                  253.33333333333334\n                ]\n              ],\n              [\n                [\n                  153.33333333333334,\n                  253.33333333333334\n                ],\n                [\n                  60,\n                  320\n                ],\n                [\n                  40,\n                  300\n                ],\n                [\n                  133.33333333333334,\n                  233.33333333333334\n                ]\n              ],\n              [\n                [\n                  133.33333333333334,\n                  233.33333333333334\n                ],\n                [\n                  156.66666666666666,\n                  216.66666666666666\n                ]\n              ],\n              [\n                [\n                  156.66666666666666,\n                  216.66666666666666\n                ],\n                [\n                  180,\n                  200\n                ]\n              ],\n              [\n                [\n                  160,\n                  180\n                ],\n                [\n                  136.66666666666666,\n                  196.66666666666666\n                ]\n              ],\n              [\n                [\n                  136.66666666666666,\n                  196.66666666666666\n                ],\n                [\n                  113.33333333333333,\n                  213.33333333333334\n                ]\n              ],\n              [\n                [\n                  113.33333333333333,\n                  213.33333333333334\n                ],\n                [\n                  20,\n                  280\n                ]\n              ]\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"MULTILINESTRING ((200 220, 176.66666666666666 236.66666666666666),(176.66666666666666 236.66666666666666, 153.33333333333334 253.33333333333334),(153.33333333333334 253.33333333333334, 60 320, 40 300, 133.33333333333334 233.33333333333334),(133.33333333333334 233.33333333333334, 156.66666666666666 216.66666666666666),(156.66666666666666 216.66666666666666, 180 200),(160 180, 136.66666666666666 196.66666666666666),(136.66666666666666 196.66666666666666, 113.33333333333333 213.33333333333334),(113.33333333333333 213.33333333333334, 20 280),(200 220, 180 200),(160 180, 140 160, 120 180, 136.66666666666666 196.66666666666666),(136.66666666666666 196.66666666666666, 156.66666666666666 216.66666666666666),(156.66666666666666 216.66666666666666, 176.66666666666666 236.66666666666666),(176.66666666666666 236.66666666666666, 220 280, 200 300, 153.33333333333334 253.33333333333334),(153.33333333333334 253.33333333333334, 133.33333333333334 233.33333333333334),(133.33333333333334 233.33333333333334, 113.33333333333333 213.33333333333334),(113.33333333333333 213.33333333333334, 100 200))\",\n          \"geometry\": {\n            \"type\": \"MultiLineString\",\n            \"coordinates\": [\n              [\n                [\n                  200,\n                  220\n                ],\n                [\n                  176.66666666666666,\n                  236.66666666666666\n                ]\n              ],\n              [\n                [\n                  176.66666666666666,\n                  236.66666666666666\n                ],\n                [\n                  153.33333333333334,\n                  253.33333333333334\n                ]\n              ],\n              [\n                [\n                  153.33333333333334,\n                  253.33333333333334\n                ],\n                [\n                  60,\n                  320\n                ],\n                [\n                  40,\n                  300\n                ],\n                [\n                  133.33333333333334,\n                  233.33333333333334\n                ]\n              ],\n              [\n                [\n                  133.33333333333334,\n                  233.33333333333334\n                ],\n                [\n                  156.66666666666666,\n                  216.66666666666666\n                ]\n              ],\n              [\n                [\n                  156.66666666666666,\n                  216.66666666666666\n                ],\n                [\n                  180,\n                  200\n                ]\n              ],\n              [\n                [\n                  160,\n                  180\n                ],\n                [\n                  136.66666666666666,\n                  196.66666666666666\n                ]\n              ],\n              [\n                [\n                  136.66666666666666,\n                  196.66666666666666\n                ],\n                [\n                  113.33333333333333,\n                  213.33333333333334\n                ]\n              ],\n              [\n                [\n                  113.33333333333333,\n                  213.33333333333334\n                ],\n                [\n                  20,\n                  280\n                ]\n              ],\n              [\n                [\n                  200,\n                  220\n                ],\n                [\n                  180,\n                  200\n                ]\n              ],\n              [\n                [\n                  160,\n                  180\n                ],\n                [\n                  140,\n                  160\n                ],\n                [\n                  120,\n                  180\n                ],\n                [\n                  136.66666666666666,\n                  196.66666666666666\n                ]\n              ],\n              [\n                [\n                  136.66666666666666,\n                  196.66666666666666\n                ],\n                [\n                  156.66666666666666,\n                  216.66666666666666\n                ]\n              ],\n              [\n                [\n                  156.66666666666666,\n                  216.66666666666666\n                ],\n                [\n                  176.66666666666666,\n                  236.66666666666666\n                ]\n              ],\n              [\n                [\n                  176.66666666666666,\n                  236.66666666666666\n                ],\n                [\n                  220,\n                  280\n                ],\n                [\n                  200,\n                  300\n                ],\n                [\n                  153.33333333333334,\n                  253.33333333333334\n                ]\n              ],\n              [\n                [\n                  153.33333333333334,\n                  253.33333333333334\n                ],\n                [\n                  133.33333333333334,\n                  233.33333333333334\n                ]\n              ],\n              [\n                [\n                  133.33333333333334,\n                  233.33333333333334\n                ],\n                [\n                  113.33333333333333,\n                  213.33333333333334\n                ]\n              ],\n              [\n                [\n                  113.33333333333333,\n                  213.33333333333334\n                ],\n                [\n                  100,\n                  200\n                ]\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionLL\",\n      \"category\": \"function\",\n      \"title\": \"LL - A and B equal\",\n      \"id\": \"12-005\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (80 320, 220 320, 220 160, 80 300)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              80,\n              320\n            ],\n            [\n              220,\n              320\n            ],\n            [\n              220,\n              160\n            ],\n            [\n              80,\n              300\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (80 320, 220 320, 220 160, 80 300)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              80,\n              320\n            ],\n            [\n              220,\n              320\n            ],\n            [\n              220,\n              160\n            ],\n            [\n              80,\n              300\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": true,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": true,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"1FFF0FFF2\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((220 160, 80 300, 80 320, 220 320, 220 160))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  220,\n                  160\n                ],\n                [\n                  80,\n                  300\n                ],\n                [\n                  80,\n                  320\n                ],\n                [\n                  220,\n                  320\n                ],\n                [\n                  220,\n                  160\n                ]\n              ]\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"MULTILINESTRING ((80 320, 220 320),(220 320, 220 160),(220 160, 80 300))\",\n          \"geometry\": {\n            \"type\": \"MultiLineString\",\n            \"coordinates\": [\n              [\n                [\n                  80,\n                  320\n                ],\n                [\n                  220,\n                  320\n                ]\n              ],\n              [\n                [\n                  220,\n                  320\n                ],\n                [\n                  220,\n                  160\n                ]\n              ],\n              [\n                [\n                  220,\n                  160\n                ],\n                [\n                  80,\n                  300\n                ]\n              ]\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"MULTILINESTRING ((80 320, 220 320),(220 320, 220 160),(220 160, 80 300))\",\n          \"geometry\": {\n            \"type\": \"MultiLineString\",\n            \"coordinates\": [\n              [\n                [\n                  80,\n                  320\n                ],\n                [\n                  220,\n                  320\n                ]\n              ],\n              [\n                [\n                  220,\n                  320\n                ],\n                [\n                  220,\n                  160\n                ]\n              ],\n              [\n                [\n                  220,\n                  160\n                ],\n                [\n                  80,\n                  300\n                ]\n              ]\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"GEOMETRYCOLLECTION EMPTY\",\n          \"geometry\": null\n        },\n        \"symDifference\": {\n          \"wkt\": \"GEOMETRYCOLLECTION EMPTY\",\n          \"geometry\": null\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionLL\",\n      \"category\": \"function\",\n      \"title\": \"LL - A and B touch ends\",\n      \"id\": \"12-006\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (60 200, 60 260, 140 200)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              60,\n              200\n            ],\n            [\n              60,\n              260\n            ],\n            [\n              140,\n              200\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (60 200, 60 140, 140 200)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              60,\n              200\n            ],\n            [\n              60,\n              140\n            ],\n            [\n              140,\n              200\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF1F0F1F2\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((60 200, 60 260, 140 200, 60 200))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  60,\n                  200\n                ],\n                [\n                  60,\n                  260\n                ],\n                [\n                  140,\n                  200\n                ],\n                [\n                  60,\n                  200\n                ]\n              ]\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"MULTIPOINT (60 200, 140 200)\",\n          \"geometry\": {\n            \"type\": \"MultiPoint\",\n            \"coordinates\": [\n              [\n                60,\n                200\n              ],\n              [\n                140,\n                200\n              ]\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"MULTILINESTRING ((60 200, 60 260, 140 200),(60 200, 60 140, 140 200))\",\n          \"geometry\": {\n            \"type\": \"MultiLineString\",\n            \"coordinates\": [\n              [\n                [\n                  60,\n                  200\n                ],\n                [\n                  60,\n                  260\n                ],\n                [\n                  140,\n                  200\n                ]\n              ],\n              [\n                [\n                  60,\n                  200\n                ],\n                [\n                  60,\n                  140\n                ],\n                [\n                  140,\n                  200\n                ]\n              ]\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"LINESTRING (60 200, 60 260, 140 200)\",\n          \"geometry\": {\n            \"type\": \"LineString\",\n            \"coordinates\": [\n              [\n                60,\n                200\n              ],\n              [\n                60,\n                260\n              ],\n              [\n                140,\n                200\n              ]\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"MULTILINESTRING ((60 200, 60 260, 140 200),(60 200, 60 140, 140 200))\",\n          \"geometry\": {\n            \"type\": \"MultiLineString\",\n            \"coordinates\": [\n              [\n                [\n                  60,\n                  200\n                ],\n                [\n                  60,\n                  260\n                ],\n                [\n                  140,\n                  200\n                ]\n              ],\n              [\n                [\n                  60,\n                  200\n                ],\n                [\n                  60,\n                  140\n                ],\n                [\n                  140,\n                  200\n                ]\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionLL\",\n      \"category\": \"function\",\n      \"title\": \"LL - intersecting rings\",\n      \"id\": \"12-007\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (180 200, 100 280, 20 200, 100 120, 180 200)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              180,\n              200\n            ],\n            [\n              100,\n              280\n            ],\n            [\n              20,\n              200\n            ],\n            [\n              100,\n              120\n            ],\n            [\n              180,\n              200\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (100 200, 220 200, 220 80, 100 80, 100 200)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              100,\n              200\n            ],\n            [\n              220,\n              200\n            ],\n            [\n              220,\n              80\n            ],\n            [\n              100,\n              80\n            ],\n            [\n              100,\n              200\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"0F1FFF1F2\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((100 120, 20 200, 100 280, 180 200, 100 120))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  100,\n                  120\n                ],\n                [\n                  20,\n                  200\n                ],\n                [\n                  100,\n                  280\n                ],\n                [\n                  180,\n                  200\n                ],\n                [\n                  100,\n                  120\n                ]\n              ]\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"MULTIPOINT (100 120, 180 200)\",\n          \"geometry\": {\n            \"type\": \"MultiPoint\",\n            \"coordinates\": [\n              [\n                100,\n                120\n              ],\n              [\n                180,\n                200\n              ]\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"MULTILINESTRING ((180 200, 100 280, 20 200, 100 120),(100 120, 180 200),(100 200, 180 200),(180 200, 220 200, 220 80, 100 80, 100 120),(100 120, 100 200))\",\n          \"geometry\": {\n            \"type\": \"MultiLineString\",\n            \"coordinates\": [\n              [\n                [\n                  180,\n                  200\n                ],\n                [\n                  100,\n                  280\n                ],\n                [\n                  20,\n                  200\n                ],\n                [\n                  100,\n                  120\n                ]\n              ],\n              [\n                [\n                  100,\n                  120\n                ],\n                [\n                  180,\n                  200\n                ]\n              ],\n              [\n                [\n                  100,\n                  200\n                ],\n                [\n                  180,\n                  200\n                ]\n              ],\n              [\n                [\n                  180,\n                  200\n                ],\n                [\n                  220,\n                  200\n                ],\n                [\n                  220,\n                  80\n                ],\n                [\n                  100,\n                  80\n                ],\n                [\n                  100,\n                  120\n                ]\n              ],\n              [\n                [\n                  100,\n                  120\n                ],\n                [\n                  100,\n                  200\n                ]\n              ]\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"MULTILINESTRING ((180 200, 100 280, 20 200, 100 120),(100 120, 180 200))\",\n          \"geometry\": {\n            \"type\": \"MultiLineString\",\n            \"coordinates\": [\n              [\n                [\n                  180,\n                  200\n                ],\n                [\n                  100,\n                  280\n                ],\n                [\n                  20,\n                  200\n                ],\n                [\n                  100,\n                  120\n                ]\n              ],\n              [\n                [\n                  100,\n                  120\n                ],\n                [\n                  180,\n                  200\n                ]\n              ]\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"MULTILINESTRING ((180 200, 100 280, 20 200, 100 120),(100 120, 180 200),(100 200, 180 200),(180 200, 220 200, 220 80, 100 80, 100 120),(100 120, 100 200))\",\n          \"geometry\": {\n            \"type\": \"MultiLineString\",\n            \"coordinates\": [\n              [\n                [\n                  180,\n                  200\n                ],\n                [\n                  100,\n                  280\n                ],\n                [\n                  20,\n                  200\n                ],\n                [\n                  100,\n                  120\n                ]\n              ],\n              [\n                [\n                  100,\n                  120\n                ],\n                [\n                  180,\n                  200\n                ]\n              ],\n              [\n                [\n                  100,\n                  200\n                ],\n                [\n                  180,\n                  200\n                ]\n              ],\n              [\n                [\n                  180,\n                  200\n                ],\n                [\n                  220,\n                  200\n                ],\n                [\n                  220,\n                  80\n                ],\n                [\n                  100,\n                  80\n                ],\n                [\n                  100,\n                  120\n                ]\n              ],\n              [\n                [\n                  100,\n                  120\n                ],\n                [\n                  100,\n                  200\n                ]\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionLA\",\n      \"category\": \"function\",\n      \"title\": \"LA - A and B simple\",\n      \"id\": \"13-001\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (240 190, 120 120)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              240,\n              190\n            ],\n            [\n              120,\n              120\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((110 240, 50 80, 240 70, 110 240))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                110,\n                240\n              ],\n              [\n                50,\n                80\n              ],\n              [\n                240,\n                70\n              ],\n              [\n                110,\n                240\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"1010F0212\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"LINESTRING (240 190, 120 120)\",\n          \"geometry\": {\n            \"type\": \"LineString\",\n            \"coordinates\": [\n              [\n                240,\n                190\n              ],\n              [\n                120,\n                120\n              ]\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"LINESTRING (176.54237288135593 152.98305084745763, 120 120)\",\n          \"geometry\": {\n            \"type\": \"LineString\",\n            \"coordinates\": [\n              [\n                176.54237288135593,\n                152.98305084745763\n              ],\n              [\n                120,\n                120\n              ]\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"GEOMETRYCOLLECTION (LINESTRING (240 190, 176.54237288135593 152.98305084745763), POLYGON ((176.54237288135593 152.98305084745763, 240 70, 50 80, 110 240, 176.54237288135593 152.98305084745763)))\",\n          \"geometry\": {\n            \"type\": \"GeometryCollection\",\n            \"geometries\": [\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    240,\n                    190\n                  ],\n                  [\n                    176.54237288135593,\n                    152.98305084745763\n                  ]\n                ]\n              },\n              {\n                \"type\": \"Polygon\",\n                \"coordinates\": [\n                  [\n                    [\n                      176.54237288135593,\n                      152.98305084745763\n                    ],\n                    [\n                      240,\n                      70\n                    ],\n                    [\n                      50,\n                      80\n                    ],\n                    [\n                      110,\n                      240\n                    ],\n                    [\n                      176.54237288135593,\n                      152.98305084745763\n                    ]\n                  ]\n                ]\n              }\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"LINESTRING (240 190, 176.54237288135593 152.98305084745763)\",\n          \"geometry\": {\n            \"type\": \"LineString\",\n            \"coordinates\": [\n              [\n                240,\n                190\n              ],\n              [\n                176.54237288135593,\n                152.98305084745763\n              ]\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"GEOMETRYCOLLECTION (LINESTRING (240 190, 176.54237288135593 152.98305084745763), POLYGON ((176.54237288135593 152.98305084745763, 240 70, 50 80, 110 240, 176.54237288135593 152.98305084745763)))\",\n          \"geometry\": {\n            \"type\": \"GeometryCollection\",\n            \"geometries\": [\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    240,\n                    190\n                  ],\n                  [\n                    176.54237288135593,\n                    152.98305084745763\n                  ]\n                ]\n              },\n              {\n                \"type\": \"Polygon\",\n                \"coordinates\": [\n                  [\n                    [\n                      176.54237288135593,\n                      152.98305084745763\n                    ],\n                    [\n                      240,\n                      70\n                    ],\n                    [\n                      50,\n                      80\n                    ],\n                    [\n                      110,\n                      240\n                    ],\n                    [\n                      176.54237288135593,\n                      152.98305084745763\n                    ]\n                  ]\n                ]\n              }\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionLA\",\n      \"category\": \"function\",\n      \"title\": \"LA - A intersects B-hole\",\n      \"id\": \"13-002\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (0 100, 100 100, 200 200)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              0,\n              100\n            ],\n            [\n              100,\n              100\n            ],\n            [\n              200,\n              200\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((30 240, 260 30, 30 30, 30 240),(80 140, 80 80, 140 80, 80 140))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                30,\n                240\n              ],\n              [\n                260,\n                30\n              ],\n              [\n                30,\n                30\n              ],\n              [\n                30,\n                240\n              ]\n            ],\n            [\n              [\n                80,\n                140\n              ],\n              [\n                80,\n                80\n              ],\n              [\n                140,\n                80\n              ],\n              [\n                80,\n                140\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"101FF0212\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((0 100, 200 200, 100 100, 0 100))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  0,\n                  100\n                ],\n                [\n                  200,\n                  200\n                ],\n                [\n                  100,\n                  100\n                ],\n                [\n                  0,\n                  100\n                ]\n              ]\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"MULTILINESTRING ((30 100, 80 100),(110 110, 139.77272727272728 139.77272727272728))\",\n          \"geometry\": {\n            \"type\": \"MultiLineString\",\n            \"coordinates\": [\n              [\n                [\n                  30,\n                  100\n                ],\n                [\n                  80,\n                  100\n                ]\n              ],\n              [\n                [\n                  110,\n                  110\n                ],\n                [\n                  139.77272727272728,\n                  139.77272727272728\n                ]\n              ]\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"GEOMETRYCOLLECTION (LINESTRING (0 100, 30 100), LINESTRING (80 100, 100 100, 110 110), LINESTRING (139.77272727272728 139.77272727272728, 200 200), POLYGON ((30 240, 139.77272727272728 139.77272727272728, 260 30, 30 30, 30 100, 30 240),(80 140, 80 100, 80 80, 140 80, 110 110, 80 140)))\",\n          \"geometry\": {\n            \"type\": \"GeometryCollection\",\n            \"geometries\": [\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    0,\n                    100\n                  ],\n                  [\n                    30,\n                    100\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    80,\n                    100\n                  ],\n                  [\n                    100,\n                    100\n                  ],\n                  [\n                    110,\n                    110\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    139.77272727272728,\n                    139.77272727272728\n                  ],\n                  [\n                    200,\n                    200\n                  ]\n                ]\n              },\n              {\n                \"type\": \"Polygon\",\n                \"coordinates\": [\n                  [\n                    [\n                      30,\n                      240\n                    ],\n                    [\n                      139.77272727272728,\n                      139.77272727272728\n                    ],\n                    [\n                      260,\n                      30\n                    ],\n                    [\n                      30,\n                      30\n                    ],\n                    [\n                      30,\n                      100\n                    ],\n                    [\n                      30,\n                      240\n                    ]\n                  ],\n                  [\n                    [\n                      80,\n                      140\n                    ],\n                    [\n                      80,\n                      100\n                    ],\n                    [\n                      80,\n                      80\n                    ],\n                    [\n                      140,\n                      80\n                    ],\n                    [\n                      110,\n                      110\n                    ],\n                    [\n                      80,\n                      140\n                    ]\n                  ]\n                ]\n              }\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"MULTILINESTRING ((0 100, 30 100),(80 100, 100 100, 110 110),(139.77272727272728 139.77272727272728, 200 200))\",\n          \"geometry\": {\n            \"type\": \"MultiLineString\",\n            \"coordinates\": [\n              [\n                [\n                  0,\n                  100\n                ],\n                [\n                  30,\n                  100\n                ]\n              ],\n              [\n                [\n                  80,\n                  100\n                ],\n                [\n                  100,\n                  100\n                ],\n                [\n                  110,\n                  110\n                ]\n              ],\n              [\n                [\n                  139.77272727272728,\n                  139.77272727272728\n                ],\n                [\n                  200,\n                  200\n                ]\n              ]\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"GEOMETRYCOLLECTION (LINESTRING (0 100, 30 100), LINESTRING (80 100, 100 100, 110 110), LINESTRING (139.77272727272728 139.77272727272728, 200 200), POLYGON ((30 240, 139.77272727272728 139.77272727272728, 260 30, 30 30, 30 100, 30 240),(80 140, 80 100, 80 80, 140 80, 110 110, 80 140)))\",\n          \"geometry\": {\n            \"type\": \"GeometryCollection\",\n            \"geometries\": [\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    0,\n                    100\n                  ],\n                  [\n                    30,\n                    100\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    80,\n                    100\n                  ],\n                  [\n                    100,\n                    100\n                  ],\n                  [\n                    110,\n                    110\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    139.77272727272728,\n                    139.77272727272728\n                  ],\n                  [\n                    200,\n                    200\n                  ]\n                ]\n              },\n              {\n                \"type\": \"Polygon\",\n                \"coordinates\": [\n                  [\n                    [\n                      30,\n                      240\n                    ],\n                    [\n                      139.77272727272728,\n                      139.77272727272728\n                    ],\n                    [\n                      260,\n                      30\n                    ],\n                    [\n                      30,\n                      30\n                    ],\n                    [\n                      30,\n                      100\n                    ],\n                    [\n                      30,\n                      240\n                    ]\n                  ],\n                  [\n                    [\n                      80,\n                      140\n                    ],\n                    [\n                      80,\n                      100\n                    ],\n                    [\n                      80,\n                      80\n                    ],\n                    [\n                      140,\n                      80\n                    ],\n                    [\n                      110,\n                      110\n                    ],\n                    [\n                      80,\n                      140\n                    ]\n                  ]\n                ]\n              }\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionLA\",\n      \"category\": \"function\",\n      \"title\": \"LA - A intersects B-hole #2\",\n      \"id\": \"13-003\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (40 340, 200 250, 120 180, 160 110, 270 40)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              340\n            ],\n            [\n              200,\n              250\n            ],\n            [\n              120,\n              180\n            ],\n            [\n              160,\n              110\n            ],\n            [\n              270,\n              40\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((160 330, 60 260, 20 150, 60 40, 190 20, 270 130, 260 250, 160 330),(140 240, 80 190, 90 100, 160 70, 210 130, 210 210, 140 240))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                160,\n                330\n              ],\n              [\n                60,\n                260\n              ],\n              [\n                20,\n                150\n              ],\n              [\n                60,\n                40\n              ],\n              [\n                190,\n                20\n              ],\n              [\n                270,\n                130\n              ],\n              [\n                260,\n                250\n              ],\n              [\n                160,\n                330\n              ]\n            ],\n            [\n              [\n                140,\n                240\n              ],\n              [\n                80,\n                190\n              ],\n              [\n                90,\n                100\n              ],\n              [\n                160,\n                70\n              ],\n              [\n                210,\n                130\n              ],\n              [\n                210,\n                210\n              ],\n              [\n                140,\n                240\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"101FF0212\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((270 40, 160 110, 120 180, 40 340, 200 250, 270 40))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  270,\n                  40\n                ],\n                [\n                  160,\n                  110\n                ],\n                [\n                  120,\n                  180\n                ],\n                [\n                  40,\n                  340\n                ],\n                [\n                  200,\n                  250\n                ],\n                [\n                  270,\n                  40\n                ]\n              ]\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"MULTILINESTRING ((114.45544554455445 298.1188118811881, 200 250, 172.6027397260274 226.02739726027397),(181.78217821782178 96.13861386138613, 225.25423728813558 68.47457627118644))\",\n          \"geometry\": {\n            \"type\": \"MultiLineString\",\n            \"coordinates\": [\n              [\n                [\n                  114.45544554455445,\n                  298.1188118811881\n                ],\n                [\n                  200,\n                  250\n                ],\n                [\n                  172.6027397260274,\n                  226.02739726027397\n                ]\n              ],\n              [\n                [\n                  181.78217821782178,\n                  96.13861386138613\n                ],\n                [\n                  225.25423728813558,\n                  68.47457627118644\n                ]\n              ]\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"GEOMETRYCOLLECTION (LINESTRING (40 340, 114.45544554455445 298.1188118811881), LINESTRING (172.6027397260274 226.02739726027397, 120 180, 160 110, 181.78217821782178 96.13861386138613), LINESTRING (225.25423728813558 68.47457627118644, 270 40), POLYGON ((114.45544554455445 298.1188118811881, 160 330, 260 250, 270 130, 225.25423728813558 68.47457627118644, 190 20, 60 40, 20 150, 60 260, 114.45544554455445 298.1188118811881),(140 240, 80 190, 90 100, 160 70, 181.78217821782178 96.13861386138613, 210 130, 210 210, 172.6027397260274 226.02739726027397, 140 240)))\",\n          \"geometry\": {\n            \"type\": \"GeometryCollection\",\n            \"geometries\": [\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    40,\n                    340\n                  ],\n                  [\n                    114.45544554455445,\n                    298.1188118811881\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    172.6027397260274,\n                    226.02739726027397\n                  ],\n                  [\n                    120,\n                    180\n                  ],\n                  [\n                    160,\n                    110\n                  ],\n                  [\n                    181.78217821782178,\n                    96.13861386138613\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    225.25423728813558,\n                    68.47457627118644\n                  ],\n                  [\n                    270,\n                    40\n                  ]\n                ]\n              },\n              {\n                \"type\": \"Polygon\",\n                \"coordinates\": [\n                  [\n                    [\n                      114.45544554455445,\n                      298.1188118811881\n                    ],\n                    [\n                      160,\n                      330\n                    ],\n                    [\n                      260,\n                      250\n                    ],\n                    [\n                      270,\n                      130\n                    ],\n                    [\n                      225.25423728813558,\n                      68.47457627118644\n                    ],\n                    [\n                      190,\n                      20\n                    ],\n                    [\n                      60,\n                      40\n                    ],\n                    [\n                      20,\n                      150\n                    ],\n                    [\n                      60,\n                      260\n                    ],\n                    [\n                      114.45544554455445,\n                      298.1188118811881\n                    ]\n                  ],\n                  [\n                    [\n                      140,\n                      240\n                    ],\n                    [\n                      80,\n                      190\n                    ],\n                    [\n                      90,\n                      100\n                    ],\n                    [\n                      160,\n                      70\n                    ],\n                    [\n                      181.78217821782178,\n                      96.13861386138613\n                    ],\n                    [\n                      210,\n                      130\n                    ],\n                    [\n                      210,\n                      210\n                    ],\n                    [\n                      172.6027397260274,\n                      226.02739726027397\n                    ],\n                    [\n                      140,\n                      240\n                    ]\n                  ]\n                ]\n              }\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"MULTILINESTRING ((40 340, 114.45544554455445 298.1188118811881),(172.6027397260274 226.02739726027397, 120 180, 160 110, 181.78217821782178 96.13861386138613),(225.25423728813558 68.47457627118644, 270 40))\",\n          \"geometry\": {\n            \"type\": \"MultiLineString\",\n            \"coordinates\": [\n              [\n                [\n                  40,\n                  340\n                ],\n                [\n                  114.45544554455445,\n                  298.1188118811881\n                ]\n              ],\n              [\n                [\n                  172.6027397260274,\n                  226.02739726027397\n                ],\n                [\n                  120,\n                  180\n                ],\n                [\n                  160,\n                  110\n                ],\n                [\n                  181.78217821782178,\n                  96.13861386138613\n                ]\n              ],\n              [\n                [\n                  225.25423728813558,\n                  68.47457627118644\n                ],\n                [\n                  270,\n                  40\n                ]\n              ]\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"GEOMETRYCOLLECTION (LINESTRING (40 340, 114.45544554455445 298.1188118811881), LINESTRING (172.6027397260274 226.02739726027397, 120 180, 160 110, 181.78217821782178 96.13861386138613), LINESTRING (225.25423728813558 68.47457627118644, 270 40), POLYGON ((114.45544554455445 298.1188118811881, 160 330, 260 250, 270 130, 225.25423728813558 68.47457627118644, 190 20, 60 40, 20 150, 60 260, 114.45544554455445 298.1188118811881),(140 240, 80 190, 90 100, 160 70, 181.78217821782178 96.13861386138613, 210 130, 210 210, 172.6027397260274 226.02739726027397, 140 240)))\",\n          \"geometry\": {\n            \"type\": \"GeometryCollection\",\n            \"geometries\": [\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    40,\n                    340\n                  ],\n                  [\n                    114.45544554455445,\n                    298.1188118811881\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    172.6027397260274,\n                    226.02739726027397\n                  ],\n                  [\n                    120,\n                    180\n                  ],\n                  [\n                    160,\n                    110\n                  ],\n                  [\n                    181.78217821782178,\n                    96.13861386138613\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    225.25423728813558,\n                    68.47457627118644\n                  ],\n                  [\n                    270,\n                    40\n                  ]\n                ]\n              },\n              {\n                \"type\": \"Polygon\",\n                \"coordinates\": [\n                  [\n                    [\n                      114.45544554455445,\n                      298.1188118811881\n                    ],\n                    [\n                      160,\n                      330\n                    ],\n                    [\n                      260,\n                      250\n                    ],\n                    [\n                      270,\n                      130\n                    ],\n                    [\n                      225.25423728813558,\n                      68.47457627118644\n                    ],\n                    [\n                      190,\n                      20\n                    ],\n                    [\n                      60,\n                      40\n                    ],\n                    [\n                      20,\n                      150\n                    ],\n                    [\n                      60,\n                      260\n                    ],\n                    [\n                      114.45544554455445,\n                      298.1188118811881\n                    ]\n                  ],\n                  [\n                    [\n                      140,\n                      240\n                    ],\n                    [\n                      80,\n                      190\n                    ],\n                    [\n                      90,\n                      100\n                    ],\n                    [\n                      160,\n                      70\n                    ],\n                    [\n                      181.78217821782178,\n                      96.13861386138613\n                    ],\n                    [\n                      210,\n                      130\n                    ],\n                    [\n                      210,\n                      210\n                    ],\n                    [\n                      172.6027397260274,\n                      226.02739726027397\n                    ],\n                    [\n                      140,\n                      240\n                    ]\n                  ]\n                ]\n              }\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionLA\",\n      \"category\": \"function\",\n      \"title\": \"mLmA - A and B complex, disjoint\",\n      \"id\": \"13-004\",\n      \"a\": {\n        \"wkt\": \"MULTIPOLYGON (((60 320, 60 80, 300 80, 60 320),(80 280, 80 100, 260 100, 80 280)),((120 160, 140 160, 140 140, 120 160)))\",\n        \"geometry\": {\n          \"type\": \"MultiPolygon\",\n          \"coordinates\": [\n            [\n              [\n                [\n                  60,\n                  320\n                ],\n                [\n                  60,\n                  80\n                ],\n                [\n                  300,\n                  80\n                ],\n                [\n                  60,\n                  320\n                ]\n              ],\n              [\n                [\n                  80,\n                  280\n                ],\n                [\n                  80,\n                  100\n                ],\n                [\n                  260,\n                  100\n                ],\n                [\n                  80,\n                  280\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  120,\n                  160\n                ],\n                [\n                  140,\n                  160\n                ],\n                [\n                  140,\n                  140\n                ],\n                [\n                  120,\n                  160\n                ]\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTILINESTRING ((100 240, 100 180, 160 180, 160 120, 220 120),(40 360, 40 60, 340 60, 40 360, 40 20),(120 120, 120 140, 100 140, 100 120, 140 120))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                100,\n                240\n              ],\n              [\n                100,\n                180\n              ],\n              [\n                160,\n                180\n              ],\n              [\n                160,\n                120\n              ],\n              [\n                220,\n                120\n              ]\n            ],\n            [\n              [\n                40,\n                360\n              ],\n              [\n                40,\n                60\n              ],\n              [\n                340,\n                60\n              ],\n              [\n                40,\n                360\n              ],\n              [\n                40,\n                20\n              ]\n            ],\n            [\n              [\n                120,\n                120\n              ],\n              [\n                120,\n                140\n              ],\n              [\n                100,\n                140\n              ],\n              [\n                100,\n                120\n              ],\n              [\n                140,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": true,\n        \"intersects\": false,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF2FF1102\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((60 80, 60 320, 300 80, 60 80))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  60,\n                  80\n                ],\n                [\n                  60,\n                  320\n                ],\n                [\n                  300,\n                  80\n                ],\n                [\n                  60,\n                  80\n                ]\n              ]\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"GEOMETRYCOLLECTION EMPTY\",\n          \"geometry\": null\n        },\n        \"union\": {\n          \"wkt\": \"GEOMETRYCOLLECTION (LINESTRING (100 240, 100 180, 160 180, 160 120, 220 120), LINESTRING (40 360, 40 60), LINESTRING (40 60, 340 60, 40 360), LINESTRING (40 60, 40 20), LINESTRING (120 120, 120 140, 100 140, 100 120, 120 120), LINESTRING (120 120, 140 120), POLYGON ((60 320, 300 80, 60 80, 60 320),(80 280, 80 100, 260 100, 80 280)), POLYGON ((120 160, 140 160, 140 140, 120 160)))\",\n          \"geometry\": {\n            \"type\": \"GeometryCollection\",\n            \"geometries\": [\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    100,\n                    240\n                  ],\n                  [\n                    100,\n                    180\n                  ],\n                  [\n                    160,\n                    180\n                  ],\n                  [\n                    160,\n                    120\n                  ],\n                  [\n                    220,\n                    120\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    40,\n                    360\n                  ],\n                  [\n                    40,\n                    60\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    40,\n                    60\n                  ],\n                  [\n                    340,\n                    60\n                  ],\n                  [\n                    40,\n                    360\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    40,\n                    60\n                  ],\n                  [\n                    40,\n                    20\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    120,\n                    120\n                  ],\n                  [\n                    120,\n                    140\n                  ],\n                  [\n                    100,\n                    140\n                  ],\n                  [\n                    100,\n                    120\n                  ],\n                  [\n                    120,\n                    120\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    120,\n                    120\n                  ],\n                  [\n                    140,\n                    120\n                  ]\n                ]\n              },\n              {\n                \"type\": \"Polygon\",\n                \"coordinates\": [\n                  [\n                    [\n                      60,\n                      320\n                    ],\n                    [\n                      300,\n                      80\n                    ],\n                    [\n                      60,\n                      80\n                    ],\n                    [\n                      60,\n                      320\n                    ]\n                  ],\n                  [\n                    [\n                      80,\n                      280\n                    ],\n                    [\n                      80,\n                      100\n                    ],\n                    [\n                      260,\n                      100\n                    ],\n                    [\n                      80,\n                      280\n                    ]\n                  ]\n                ]\n              },\n              {\n                \"type\": \"Polygon\",\n                \"coordinates\": [\n                  [\n                    [\n                      120,\n                      160\n                    ],\n                    [\n                      140,\n                      160\n                    ],\n                    [\n                      140,\n                      140\n                    ],\n                    [\n                      120,\n                      160\n                    ]\n                  ]\n                ]\n              }\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"MULTIPOLYGON (((60 320, 300 80, 60 80, 60 320),(80 280, 80 100, 260 100, 80 280)),((120 160, 140 160, 140 140, 120 160)))\",\n          \"geometry\": {\n            \"type\": \"MultiPolygon\",\n            \"coordinates\": [\n              [\n                [\n                  [\n                    60,\n                    320\n                  ],\n                  [\n                    300,\n                    80\n                  ],\n                  [\n                    60,\n                    80\n                  ],\n                  [\n                    60,\n                    320\n                  ]\n                ],\n                [\n                  [\n                    80,\n                    280\n                  ],\n                  [\n                    80,\n                    100\n                  ],\n                  [\n                    260,\n                    100\n                  ],\n                  [\n                    80,\n                    280\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    120,\n                    160\n                  ],\n                  [\n                    140,\n                    160\n                  ],\n                  [\n                    140,\n                    140\n                  ],\n                  [\n                    120,\n                    160\n                  ]\n                ]\n              ]\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"GEOMETRYCOLLECTION (LINESTRING (100 240, 100 180, 160 180, 160 120, 220 120), LINESTRING (40 360, 40 60), LINESTRING (40 60, 340 60, 40 360), LINESTRING (40 60, 40 20), LINESTRING (120 120, 120 140, 100 140, 100 120, 120 120), LINESTRING (120 120, 140 120), POLYGON ((60 320, 300 80, 60 80, 60 320),(80 280, 80 100, 260 100, 80 280)), POLYGON ((120 160, 140 160, 140 140, 120 160)))\",\n          \"geometry\": {\n            \"type\": \"GeometryCollection\",\n            \"geometries\": [\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    100,\n                    240\n                  ],\n                  [\n                    100,\n                    180\n                  ],\n                  [\n                    160,\n                    180\n                  ],\n                  [\n                    160,\n                    120\n                  ],\n                  [\n                    220,\n                    120\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    40,\n                    360\n                  ],\n                  [\n                    40,\n                    60\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    40,\n                    60\n                  ],\n                  [\n                    340,\n                    60\n                  ],\n                  [\n                    40,\n                    360\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    40,\n                    60\n                  ],\n                  [\n                    40,\n                    20\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    120,\n                    120\n                  ],\n                  [\n                    120,\n                    140\n                  ],\n                  [\n                    100,\n                    140\n                  ],\n                  [\n                    100,\n                    120\n                  ],\n                  [\n                    120,\n                    120\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    120,\n                    120\n                  ],\n                  [\n                    140,\n                    120\n                  ]\n                ]\n              },\n              {\n                \"type\": \"Polygon\",\n                \"coordinates\": [\n                  [\n                    [\n                      60,\n                      320\n                    ],\n                    [\n                      300,\n                      80\n                    ],\n                    [\n                      60,\n                      80\n                    ],\n                    [\n                      60,\n                      320\n                    ]\n                  ],\n                  [\n                    [\n                      80,\n                      280\n                    ],\n                    [\n                      80,\n                      100\n                    ],\n                    [\n                      260,\n                      100\n                    ],\n                    [\n                      80,\n                      280\n                    ]\n                  ]\n                ]\n              },\n              {\n                \"type\": \"Polygon\",\n                \"coordinates\": [\n                  [\n                    [\n                      120,\n                      160\n                    ],\n                    [\n                      140,\n                      160\n                    ],\n                    [\n                      140,\n                      140\n                    ],\n                    [\n                      120,\n                      160\n                    ]\n                  ]\n                ]\n              }\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionLA\",\n      \"category\": \"function\",\n      \"title\": \"mLmA - A and B complex, overlapping and touching #1\",\n      \"id\": \"13-005\",\n      \"a\": {\n        \"wkt\": \"MULTIPOLYGON (((60 260, 60 120, 220 120, 220 260, 60 260),(80 240, 80 140, 200 140, 200 240, 80 240)),((100 220, 100 160, 180 160, 180 220, 100 220),(120 200, 120 180, 160 180, 160 200, 120 200)))\",\n        \"geometry\": {\n          \"type\": \"MultiPolygon\",\n          \"coordinates\": [\n            [\n              [\n                [\n                  60,\n                  260\n                ],\n                [\n                  60,\n                  120\n                ],\n                [\n                  220,\n                  120\n                ],\n                [\n                  220,\n                  260\n                ],\n                [\n                  60,\n                  260\n                ]\n              ],\n              [\n                [\n                  80,\n                  240\n                ],\n                [\n                  80,\n                  140\n                ],\n                [\n                  200,\n                  140\n                ],\n                [\n                  200,\n                  240\n                ],\n                [\n                  80,\n                  240\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  100,\n                  220\n                ],\n                [\n                  100,\n                  160\n                ],\n                [\n                  180,\n                  160\n                ],\n                [\n                  180,\n                  220\n                ],\n                [\n                  100,\n                  220\n                ]\n              ],\n              [\n                [\n                  120,\n                  200\n                ],\n                [\n                  120,\n                  180\n                ],\n                [\n                  160,\n                  180\n                ],\n                [\n                  160,\n                  200\n                ],\n                [\n                  120,\n                  200\n                ]\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTILINESTRING ((40 260, 240 260, 240 240, 40 240, 40 220, 240 220),(120 300, 120 80, 140 80, 140 300, 140 80, 120 80, 120 320))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                40,\n                260\n              ],\n              [\n                240,\n                260\n              ],\n              [\n                240,\n                240\n              ],\n              [\n                40,\n                240\n              ],\n              [\n                40,\n                220\n              ],\n              [\n                240,\n                220\n              ]\n            ],\n            [\n              [\n                120,\n                300\n              ],\n              [\n                120,\n                80\n              ],\n              [\n                140,\n                80\n              ],\n              [\n                140,\n                300\n              ],\n              [\n                140,\n                80\n              ],\n              [\n                120,\n                80\n              ],\n              [\n                120,\n                320\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"1F21F1102\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((60 120, 60 260, 220 260, 220 120, 60 120))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  60,\n                  120\n                ],\n                [\n                  60,\n                  260\n                ],\n                [\n                  220,\n                  260\n                ],\n                [\n                  220,\n                  120\n                ],\n                [\n                  60,\n                  120\n                ]\n              ]\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"MULTILINESTRING ((220 260, 140 260),(140 260, 120 260),(120 260, 60 260),(200 240, 140 240),(140 240, 120 240),(120 240, 80 240),(180 220, 140 220),(140 220, 120 220),(120 220, 100 220),(120 200, 120 180),(220 240, 200 240),(80 240, 60 240),(60 220, 80 220),(200 220, 220 220),(120 260, 120 240),(120 220, 120 200),(120 180, 120 160),(120 140, 120 120),(140 120, 140 140),(140 160, 140 180),(140 200, 140 220),(140 240, 140 260))\",\n          \"geometry\": {\n            \"type\": \"MultiLineString\",\n            \"coordinates\": [\n              [\n                [\n                  220,\n                  260\n                ],\n                [\n                  140,\n                  260\n                ]\n              ],\n              [\n                [\n                  140,\n                  260\n                ],\n                [\n                  120,\n                  260\n                ]\n              ],\n              [\n                [\n                  120,\n                  260\n                ],\n                [\n                  60,\n                  260\n                ]\n              ],\n              [\n                [\n                  200,\n                  240\n                ],\n                [\n                  140,\n                  240\n                ]\n              ],\n              [\n                [\n                  140,\n                  240\n                ],\n                [\n                  120,\n                  240\n                ]\n              ],\n              [\n                [\n                  120,\n                  240\n                ],\n                [\n                  80,\n                  240\n                ]\n              ],\n              [\n                [\n                  180,\n                  220\n                ],\n                [\n                  140,\n                  220\n                ]\n              ],\n              [\n                [\n                  140,\n                  220\n                ],\n                [\n                  120,\n                  220\n                ]\n              ],\n              [\n                [\n                  120,\n                  220\n                ],\n                [\n                  100,\n                  220\n                ]\n              ],\n              [\n                [\n                  120,\n                  200\n                ],\n                [\n                  120,\n                  180\n                ]\n              ],\n              [\n                [\n                  220,\n                  240\n                ],\n                [\n                  200,\n                  240\n                ]\n              ],\n              [\n                [\n                  80,\n                  240\n                ],\n                [\n                  60,\n                  240\n                ]\n              ],\n              [\n                [\n                  60,\n                  220\n                ],\n                [\n                  80,\n                  220\n                ]\n              ],\n              [\n                [\n                  200,\n                  220\n                ],\n                [\n                  220,\n                  220\n                ]\n              ],\n              [\n                [\n                  120,\n                  260\n                ],\n                [\n                  120,\n                  240\n                ]\n              ],\n              [\n                [\n                  120,\n                  220\n                ],\n                [\n                  120,\n                  200\n                ]\n              ],\n              [\n                [\n                  120,\n                  180\n                ],\n                [\n                  120,\n                  160\n                ]\n              ],\n              [\n                [\n                  120,\n                  140\n                ],\n                [\n                  120,\n                  120\n                ]\n              ],\n              [\n                [\n                  140,\n                  120\n                ],\n                [\n                  140,\n                  140\n                ]\n              ],\n              [\n                [\n                  140,\n                  160\n                ],\n                [\n                  140,\n                  180\n                ]\n              ],\n              [\n                [\n                  140,\n                  200\n                ],\n                [\n                  140,\n                  220\n                ]\n              ],\n              [\n                [\n                  140,\n                  240\n                ],\n                [\n                  140,\n                  260\n                ]\n              ]\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"GEOMETRYCOLLECTION (LINESTRING (40 260, 60 260), LINESTRING (220 260, 240 260, 240 240, 220 240), LINESTRING (60 240, 40 240, 40 220, 60 220), LINESTRING (80 220, 100 220), LINESTRING (180 220, 200 220), LINESTRING (220 220, 240 220), LINESTRING (120 300, 120 260), LINESTRING (120 240, 120 220), LINESTRING (120 160, 120 140), LINESTRING (120 120, 120 80), LINESTRING (120 80, 140 80), LINESTRING (140 80, 140 120), LINESTRING (140 140, 140 160), LINESTRING (140 180, 140 200), LINESTRING (140 220, 140 240), LINESTRING (140 260, 140 300), LINESTRING (120 300, 120 320), POLYGON ((60 240, 60 260, 120 260, 140 260, 220 260, 220 240, 220 220, 220 120, 140 120, 120 120, 60 120, 60 220, 60 240),(80 240, 80 220, 80 140, 120 140, 140 140, 200 140, 200 220, 200 240, 140 240, 120 240, 80 240)), POLYGON ((120 160, 100 160, 100 220, 120 220, 140 220, 180 220, 180 160, 140 160, 120 160),(120 200, 120 180, 140 180, 160 180, 160 200, 140 200, 120 200)))\",\n          \"geometry\": {\n            \"type\": \"GeometryCollection\",\n            \"geometries\": [\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    40,\n                    260\n                  ],\n                  [\n                    60,\n                    260\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    220,\n                    260\n                  ],\n                  [\n                    240,\n                    260\n                  ],\n                  [\n                    240,\n                    240\n                  ],\n                  [\n                    220,\n                    240\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    60,\n                    240\n                  ],\n                  [\n                    40,\n                    240\n                  ],\n                  [\n                    40,\n                    220\n                  ],\n                  [\n                    60,\n                    220\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    80,\n                    220\n                  ],\n                  [\n                    100,\n                    220\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    180,\n                    220\n                  ],\n                  [\n                    200,\n                    220\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    220,\n                    220\n                  ],\n                  [\n                    240,\n                    220\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    120,\n                    300\n                  ],\n                  [\n                    120,\n                    260\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    120,\n                    240\n                  ],\n                  [\n                    120,\n                    220\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    120,\n                    160\n                  ],\n                  [\n                    120,\n                    140\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    120,\n                    120\n                  ],\n                  [\n                    120,\n                    80\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    120,\n                    80\n                  ],\n                  [\n                    140,\n                    80\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    140,\n                    80\n                  ],\n                  [\n                    140,\n                    120\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    140,\n                    140\n                  ],\n                  [\n                    140,\n                    160\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    140,\n                    180\n                  ],\n                  [\n                    140,\n                    200\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    140,\n                    220\n                  ],\n                  [\n                    140,\n                    240\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    140,\n                    260\n                  ],\n                  [\n                    140,\n                    300\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    120,\n                    300\n                  ],\n                  [\n                    120,\n                    320\n                  ]\n                ]\n              },\n              {\n                \"type\": \"Polygon\",\n                \"coordinates\": [\n                  [\n                    [\n                      60,\n                      240\n                    ],\n                    [\n                      60,\n                      260\n                    ],\n                    [\n                      120,\n                      260\n                    ],\n                    [\n                      140,\n                      260\n                    ],\n                    [\n                      220,\n                      260\n                    ],\n                    [\n                      220,\n                      240\n                    ],\n                    [\n                      220,\n                      220\n                    ],\n                    [\n                      220,\n                      120\n                    ],\n                    [\n                      140,\n                      120\n                    ],\n                    [\n                      120,\n                      120\n                    ],\n                    [\n                      60,\n                      120\n                    ],\n                    [\n                      60,\n                      220\n                    ],\n                    [\n                      60,\n                      240\n                    ]\n                  ],\n                  [\n                    [\n                      80,\n                      240\n                    ],\n                    [\n                      80,\n                      220\n                    ],\n                    [\n                      80,\n                      140\n                    ],\n                    [\n                      120,\n                      140\n                    ],\n                    [\n                      140,\n                      140\n                    ],\n                    [\n                      200,\n                      140\n                    ],\n                    [\n                      200,\n                      220\n                    ],\n                    [\n                      200,\n                      240\n                    ],\n                    [\n                      140,\n                      240\n                    ],\n                    [\n                      120,\n                      240\n                    ],\n                    [\n                      80,\n                      240\n                    ]\n                  ]\n                ]\n              },\n              {\n                \"type\": \"Polygon\",\n                \"coordinates\": [\n                  [\n                    [\n                      120,\n                      160\n                    ],\n                    [\n                      100,\n                      160\n                    ],\n                    [\n                      100,\n                      220\n                    ],\n                    [\n                      120,\n                      220\n                    ],\n                    [\n                      140,\n                      220\n                    ],\n                    [\n                      180,\n                      220\n                    ],\n                    [\n                      180,\n                      160\n                    ],\n                    [\n                      140,\n                      160\n                    ],\n                    [\n                      120,\n                      160\n                    ]\n                  ],\n                  [\n                    [\n                      120,\n                      200\n                    ],\n                    [\n                      120,\n                      180\n                    ],\n                    [\n                      140,\n                      180\n                    ],\n                    [\n                      160,\n                      180\n                    ],\n                    [\n                      160,\n                      200\n                    ],\n                    [\n                      140,\n                      200\n                    ],\n                    [\n                      120,\n                      200\n                    ]\n                  ]\n                ]\n              }\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"MULTIPOLYGON (((60 240, 60 260, 120 260, 140 260, 220 260, 220 240, 220 220, 220 120, 140 120, 120 120, 60 120, 60 220, 60 240),(80 240, 80 220, 80 140, 120 140, 140 140, 200 140, 200 220, 200 240, 140 240, 120 240, 80 240)),((120 160, 100 160, 100 220, 120 220, 140 220, 180 220, 180 160, 140 160, 120 160),(120 200, 120 180, 140 180, 160 180, 160 200, 140 200, 120 200)))\",\n          \"geometry\": {\n            \"type\": \"MultiPolygon\",\n            \"coordinates\": [\n              [\n                [\n                  [\n                    60,\n                    240\n                  ],\n                  [\n                    60,\n                    260\n                  ],\n                  [\n                    120,\n                    260\n                  ],\n                  [\n                    140,\n                    260\n                  ],\n                  [\n                    220,\n                    260\n                  ],\n                  [\n                    220,\n                    240\n                  ],\n                  [\n                    220,\n                    220\n                  ],\n                  [\n                    220,\n                    120\n                  ],\n                  [\n                    140,\n                    120\n                  ],\n                  [\n                    120,\n                    120\n                  ],\n                  [\n                    60,\n                    120\n                  ],\n                  [\n                    60,\n                    220\n                  ],\n                  [\n                    60,\n                    240\n                  ]\n                ],\n                [\n                  [\n                    80,\n                    240\n                  ],\n                  [\n                    80,\n                    220\n                  ],\n                  [\n                    80,\n                    140\n                  ],\n                  [\n                    120,\n                    140\n                  ],\n                  [\n                    140,\n                    140\n                  ],\n                  [\n                    200,\n                    140\n                  ],\n                  [\n                    200,\n                    220\n                  ],\n                  [\n                    200,\n                    240\n                  ],\n                  [\n                    140,\n                    240\n                  ],\n                  [\n                    120,\n                    240\n                  ],\n                  [\n                    80,\n                    240\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    120,\n                    160\n                  ],\n                  [\n                    100,\n                    160\n                  ],\n                  [\n                    100,\n                    220\n                  ],\n                  [\n                    120,\n                    220\n                  ],\n                  [\n                    140,\n                    220\n                  ],\n                  [\n                    180,\n                    220\n                  ],\n                  [\n                    180,\n                    160\n                  ],\n                  [\n                    140,\n                    160\n                  ],\n                  [\n                    120,\n                    160\n                  ]\n                ],\n                [\n                  [\n                    120,\n                    200\n                  ],\n                  [\n                    120,\n                    180\n                  ],\n                  [\n                    140,\n                    180\n                  ],\n                  [\n                    160,\n                    180\n                  ],\n                  [\n                    160,\n                    200\n                  ],\n                  [\n                    140,\n                    200\n                  ],\n                  [\n                    120,\n                    200\n                  ]\n                ]\n              ]\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"GEOMETRYCOLLECTION (LINESTRING (40 260, 60 260), LINESTRING (220 260, 240 260, 240 240, 220 240), LINESTRING (60 240, 40 240, 40 220, 60 220), LINESTRING (80 220, 100 220), LINESTRING (180 220, 200 220), LINESTRING (220 220, 240 220), LINESTRING (120 300, 120 260), LINESTRING (120 240, 120 220), LINESTRING (120 160, 120 140), LINESTRING (120 120, 120 80), LINESTRING (120 80, 140 80), LINESTRING (140 80, 140 120), LINESTRING (140 140, 140 160), LINESTRING (140 180, 140 200), LINESTRING (140 220, 140 240), LINESTRING (140 260, 140 300), LINESTRING (120 300, 120 320), POLYGON ((60 240, 60 260, 120 260, 140 260, 220 260, 220 240, 220 220, 220 120, 140 120, 120 120, 60 120, 60 220, 60 240),(80 240, 80 220, 80 140, 120 140, 140 140, 200 140, 200 220, 200 240, 140 240, 120 240, 80 240)), POLYGON ((120 160, 100 160, 100 220, 120 220, 140 220, 180 220, 180 160, 140 160, 120 160),(120 200, 120 180, 140 180, 160 180, 160 200, 140 200, 120 200)))\",\n          \"geometry\": {\n            \"type\": \"GeometryCollection\",\n            \"geometries\": [\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    40,\n                    260\n                  ],\n                  [\n                    60,\n                    260\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    220,\n                    260\n                  ],\n                  [\n                    240,\n                    260\n                  ],\n                  [\n                    240,\n                    240\n                  ],\n                  [\n                    220,\n                    240\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    60,\n                    240\n                  ],\n                  [\n                    40,\n                    240\n                  ],\n                  [\n                    40,\n                    220\n                  ],\n                  [\n                    60,\n                    220\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    80,\n                    220\n                  ],\n                  [\n                    100,\n                    220\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    180,\n                    220\n                  ],\n                  [\n                    200,\n                    220\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    220,\n                    220\n                  ],\n                  [\n                    240,\n                    220\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    120,\n                    300\n                  ],\n                  [\n                    120,\n                    260\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    120,\n                    240\n                  ],\n                  [\n                    120,\n                    220\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    120,\n                    160\n                  ],\n                  [\n                    120,\n                    140\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    120,\n                    120\n                  ],\n                  [\n                    120,\n                    80\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    120,\n                    80\n                  ],\n                  [\n                    140,\n                    80\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    140,\n                    80\n                  ],\n                  [\n                    140,\n                    120\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    140,\n                    140\n                  ],\n                  [\n                    140,\n                    160\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    140,\n                    180\n                  ],\n                  [\n                    140,\n                    200\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    140,\n                    220\n                  ],\n                  [\n                    140,\n                    240\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    140,\n                    260\n                  ],\n                  [\n                    140,\n                    300\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    120,\n                    300\n                  ],\n                  [\n                    120,\n                    320\n                  ]\n                ]\n              },\n              {\n                \"type\": \"Polygon\",\n                \"coordinates\": [\n                  [\n                    [\n                      60,\n                      240\n                    ],\n                    [\n                      60,\n                      260\n                    ],\n                    [\n                      120,\n                      260\n                    ],\n                    [\n                      140,\n                      260\n                    ],\n                    [\n                      220,\n                      260\n                    ],\n                    [\n                      220,\n                      240\n                    ],\n                    [\n                      220,\n                      220\n                    ],\n                    [\n                      220,\n                      120\n                    ],\n                    [\n                      140,\n                      120\n                    ],\n                    [\n                      120,\n                      120\n                    ],\n                    [\n                      60,\n                      120\n                    ],\n                    [\n                      60,\n                      220\n                    ],\n                    [\n                      60,\n                      240\n                    ]\n                  ],\n                  [\n                    [\n                      80,\n                      240\n                    ],\n                    [\n                      80,\n                      220\n                    ],\n                    [\n                      80,\n                      140\n                    ],\n                    [\n                      120,\n                      140\n                    ],\n                    [\n                      140,\n                      140\n                    ],\n                    [\n                      200,\n                      140\n                    ],\n                    [\n                      200,\n                      220\n                    ],\n                    [\n                      200,\n                      240\n                    ],\n                    [\n                      140,\n                      240\n                    ],\n                    [\n                      120,\n                      240\n                    ],\n                    [\n                      80,\n                      240\n                    ]\n                  ]\n                ]\n              },\n              {\n                \"type\": \"Polygon\",\n                \"coordinates\": [\n                  [\n                    [\n                      120,\n                      160\n                    ],\n                    [\n                      100,\n                      160\n                    ],\n                    [\n                      100,\n                      220\n                    ],\n                    [\n                      120,\n                      220\n                    ],\n                    [\n                      140,\n                      220\n                    ],\n                    [\n                      180,\n                      220\n                    ],\n                    [\n                      180,\n                      160\n                    ],\n                    [\n                      140,\n                      160\n                    ],\n                    [\n                      120,\n                      160\n                    ]\n                  ],\n                  [\n                    [\n                      120,\n                      200\n                    ],\n                    [\n                      120,\n                      180\n                    ],\n                    [\n                      140,\n                      180\n                    ],\n                    [\n                      160,\n                      180\n                    ],\n                    [\n                      160,\n                      200\n                    ],\n                    [\n                      140,\n                      200\n                    ],\n                    [\n                      120,\n                      200\n                    ]\n                  ]\n                ]\n              }\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionLA\",\n      \"category\": \"function\",\n      \"title\": \"mLmA - A and B complex, overlapping and touching #2\",\n      \"id\": \"13-006\",\n      \"a\": {\n        \"wkt\": \"MULTIPOLYGON (((60 320, 60 120, 280 120, 280 320, 60 320),(120 260, 120 180, 240 180, 240 260, 120 260)),((280 400, 320 400, 320 360, 280 360, 280 400)),((300 240, 300 220, 320 220, 320 240, 300 240)))\",\n        \"geometry\": {\n          \"type\": \"MultiPolygon\",\n          \"coordinates\": [\n            [\n              [\n                [\n                  60,\n                  320\n                ],\n                [\n                  60,\n                  120\n                ],\n                [\n                  280,\n                  120\n                ],\n                [\n                  280,\n                  320\n                ],\n                [\n                  60,\n                  320\n                ]\n              ],\n              [\n                [\n                  120,\n                  260\n                ],\n                [\n                  120,\n                  180\n                ],\n                [\n                  240,\n                  180\n                ],\n                [\n                  240,\n                  260\n                ],\n                [\n                  120,\n                  260\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  280,\n                  400\n                ],\n                [\n                  320,\n                  400\n                ],\n                [\n                  320,\n                  360\n                ],\n                [\n                  280,\n                  360\n                ],\n                [\n                  280,\n                  400\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  300,\n                  240\n                ],\n                [\n                  300,\n                  220\n                ],\n                [\n                  320,\n                  220\n                ],\n                [\n                  320,\n                  240\n                ],\n                [\n                  300,\n                  240\n                ]\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTILINESTRING ((80 300, 80 160, 260 160, 260 300, 80 300, 80 140),(220 360, 220 240, 300 240, 300 360))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                80,\n                300\n              ],\n              [\n                80,\n                160\n              ],\n              [\n                260,\n                160\n              ],\n              [\n                260,\n                300\n              ],\n              [\n                80,\n                300\n              ],\n              [\n                80,\n                140\n              ]\n            ],\n            [\n              [\n                220,\n                360\n              ],\n              [\n                220,\n                240\n              ],\n              [\n                300,\n                240\n              ],\n              [\n                300,\n                360\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"102001102\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((60 120, 60 320, 280 400, 320 400, 320 220, 280 120, 60 120))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  60,\n                  120\n                ],\n                [\n                  60,\n                  320\n                ],\n                [\n                  280,\n                  400\n                ],\n                [\n                  320,\n                  400\n                ],\n                [\n                  320,\n                  220\n                ],\n                [\n                  280,\n                  120\n                ],\n                [\n                  60,\n                  120\n                ]\n              ]\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"GEOMETRYCOLLECTION (POINT (300 240), POINT (300 360), LINESTRING (80 300, 80 160), LINESTRING (80 160, 260 160, 260 240), LINESTRING (260 240, 260 300, 220 300), LINESTRING (220 300, 80 300), LINESTRING (80 160, 80 140), LINESTRING (220 320, 220 300), LINESTRING (220 300, 220 260), LINESTRING (240 240, 260 240), LINESTRING (260 240, 280 240))\",\n          \"geometry\": {\n            \"type\": \"GeometryCollection\",\n            \"geometries\": [\n              {\n                \"type\": \"Point\",\n                \"coordinates\": [\n                  300,\n                  240\n                ]\n              },\n              {\n                \"type\": \"Point\",\n                \"coordinates\": [\n                  300,\n                  360\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    80,\n                    300\n                  ],\n                  [\n                    80,\n                    160\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    80,\n                    160\n                  ],\n                  [\n                    260,\n                    160\n                  ],\n                  [\n                    260,\n                    240\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    260,\n                    240\n                  ],\n                  [\n                    260,\n                    300\n                  ],\n                  [\n                    220,\n                    300\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    220,\n                    300\n                  ],\n                  [\n                    80,\n                    300\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    80,\n                    160\n                  ],\n                  [\n                    80,\n                    140\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    220,\n                    320\n                  ],\n                  [\n                    220,\n                    300\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    220,\n                    300\n                  ],\n                  [\n                    220,\n                    260\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    240,\n                    240\n                  ],\n                  [\n                    260,\n                    240\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    260,\n                    240\n                  ],\n                  [\n                    280,\n                    240\n                  ]\n                ]\n              }\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"GEOMETRYCOLLECTION (LINESTRING (220 360, 220 320), LINESTRING (220 260, 220 240, 240 240), LINESTRING (280 240, 300 240), LINESTRING (300 240, 300 360), POLYGON ((280 240, 280 120, 60 120, 60 320, 220 320, 280 320, 280 240),(120 260, 120 180, 240 180, 240 240, 240 260, 220 260, 120 260)), POLYGON ((280 400, 320 400, 320 360, 300 360, 280 360, 280 400)), POLYGON ((300 240, 320 240, 320 220, 300 220, 300 240)))\",\n          \"geometry\": {\n            \"type\": \"GeometryCollection\",\n            \"geometries\": [\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    220,\n                    360\n                  ],\n                  [\n                    220,\n                    320\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    220,\n                    260\n                  ],\n                  [\n                    220,\n                    240\n                  ],\n                  [\n                    240,\n                    240\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    280,\n                    240\n                  ],\n                  [\n                    300,\n                    240\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    300,\n                    240\n                  ],\n                  [\n                    300,\n                    360\n                  ]\n                ]\n              },\n              {\n                \"type\": \"Polygon\",\n                \"coordinates\": [\n                  [\n                    [\n                      280,\n                      240\n                    ],\n                    [\n                      280,\n                      120\n                    ],\n                    [\n                      60,\n                      120\n                    ],\n                    [\n                      60,\n                      320\n                    ],\n                    [\n                      220,\n                      320\n                    ],\n                    [\n                      280,\n                      320\n                    ],\n                    [\n                      280,\n                      240\n                    ]\n                  ],\n                  [\n                    [\n                      120,\n                      260\n                    ],\n                    [\n                      120,\n                      180\n                    ],\n                    [\n                      240,\n                      180\n                    ],\n                    [\n                      240,\n                      240\n                    ],\n                    [\n                      240,\n                      260\n                    ],\n                    [\n                      220,\n                      260\n                    ],\n                    [\n                      120,\n                      260\n                    ]\n                  ]\n                ]\n              },\n              {\n                \"type\": \"Polygon\",\n                \"coordinates\": [\n                  [\n                    [\n                      280,\n                      400\n                    ],\n                    [\n                      320,\n                      400\n                    ],\n                    [\n                      320,\n                      360\n                    ],\n                    [\n                      300,\n                      360\n                    ],\n                    [\n                      280,\n                      360\n                    ],\n                    [\n                      280,\n                      400\n                    ]\n                  ]\n                ]\n              },\n              {\n                \"type\": \"Polygon\",\n                \"coordinates\": [\n                  [\n                    [\n                      300,\n                      240\n                    ],\n                    [\n                      320,\n                      240\n                    ],\n                    [\n                      320,\n                      220\n                    ],\n                    [\n                      300,\n                      220\n                    ],\n                    [\n                      300,\n                      240\n                    ]\n                  ]\n                ]\n              }\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"MULTIPOLYGON (((280 240, 280 120, 60 120, 60 320, 220 320, 280 320, 280 240),(120 260, 120 180, 240 180, 240 240, 240 260, 220 260, 120 260)),((280 400, 320 400, 320 360, 300 360, 280 360, 280 400)),((300 240, 320 240, 320 220, 300 220, 300 240)))\",\n          \"geometry\": {\n            \"type\": \"MultiPolygon\",\n            \"coordinates\": [\n              [\n                [\n                  [\n                    280,\n                    240\n                  ],\n                  [\n                    280,\n                    120\n                  ],\n                  [\n                    60,\n                    120\n                  ],\n                  [\n                    60,\n                    320\n                  ],\n                  [\n                    220,\n                    320\n                  ],\n                  [\n                    280,\n                    320\n                  ],\n                  [\n                    280,\n                    240\n                  ]\n                ],\n                [\n                  [\n                    120,\n                    260\n                  ],\n                  [\n                    120,\n                    180\n                  ],\n                  [\n                    240,\n                    180\n                  ],\n                  [\n                    240,\n                    240\n                  ],\n                  [\n                    240,\n                    260\n                  ],\n                  [\n                    220,\n                    260\n                  ],\n                  [\n                    120,\n                    260\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    280,\n                    400\n                  ],\n                  [\n                    320,\n                    400\n                  ],\n                  [\n                    320,\n                    360\n                  ],\n                  [\n                    300,\n                    360\n                  ],\n                  [\n                    280,\n                    360\n                  ],\n                  [\n                    280,\n                    400\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    300,\n                    240\n                  ],\n                  [\n                    320,\n                    240\n                  ],\n                  [\n                    320,\n                    220\n                  ],\n                  [\n                    300,\n                    220\n                  ],\n                  [\n                    300,\n                    240\n                  ]\n                ]\n              ]\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"GEOMETRYCOLLECTION (LINESTRING (220 360, 220 320), LINESTRING (220 260, 220 240, 240 240), LINESTRING (280 240, 300 240), LINESTRING (300 240, 300 360), POLYGON ((280 240, 280 120, 60 120, 60 320, 220 320, 280 320, 280 240),(120 260, 120 180, 240 180, 240 240, 240 260, 220 260, 120 260)), POLYGON ((280 400, 320 400, 320 360, 300 360, 280 360, 280 400)), POLYGON ((300 240, 320 240, 320 220, 300 220, 300 240)))\",\n          \"geometry\": {\n            \"type\": \"GeometryCollection\",\n            \"geometries\": [\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    220,\n                    360\n                  ],\n                  [\n                    220,\n                    320\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    220,\n                    260\n                  ],\n                  [\n                    220,\n                    240\n                  ],\n                  [\n                    240,\n                    240\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    280,\n                    240\n                  ],\n                  [\n                    300,\n                    240\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    300,\n                    240\n                  ],\n                  [\n                    300,\n                    360\n                  ]\n                ]\n              },\n              {\n                \"type\": \"Polygon\",\n                \"coordinates\": [\n                  [\n                    [\n                      280,\n                      240\n                    ],\n                    [\n                      280,\n                      120\n                    ],\n                    [\n                      60,\n                      120\n                    ],\n                    [\n                      60,\n                      320\n                    ],\n                    [\n                      220,\n                      320\n                    ],\n                    [\n                      280,\n                      320\n                    ],\n                    [\n                      280,\n                      240\n                    ]\n                  ],\n                  [\n                    [\n                      120,\n                      260\n                    ],\n                    [\n                      120,\n                      180\n                    ],\n                    [\n                      240,\n                      180\n                    ],\n                    [\n                      240,\n                      240\n                    ],\n                    [\n                      240,\n                      260\n                    ],\n                    [\n                      220,\n                      260\n                    ],\n                    [\n                      120,\n                      260\n                    ]\n                  ]\n                ]\n              },\n              {\n                \"type\": \"Polygon\",\n                \"coordinates\": [\n                  [\n                    [\n                      280,\n                      400\n                    ],\n                    [\n                      320,\n                      400\n                    ],\n                    [\n                      320,\n                      360\n                    ],\n                    [\n                      300,\n                      360\n                    ],\n                    [\n                      280,\n                      360\n                    ],\n                    [\n                      280,\n                      400\n                    ]\n                  ]\n                ]\n              },\n              {\n                \"type\": \"Polygon\",\n                \"coordinates\": [\n                  [\n                    [\n                      300,\n                      240\n                    ],\n                    [\n                      320,\n                      240\n                    ],\n                    [\n                      320,\n                      220\n                    ],\n                    [\n                      300,\n                      220\n                    ],\n                    [\n                      300,\n                      240\n                    ]\n                  ]\n                ]\n              }\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionLA\",\n      \"category\": \"function\",\n      \"title\": \"mLmA - A and B complex, overlapping and touching #3\",\n      \"id\": \"13-007\",\n      \"a\": {\n        \"wkt\": \"MULTIPOLYGON (((120 180, 60 80, 180 80, 120 180)),((100 240, 140 240, 120 220, 100 240)))\",\n        \"geometry\": {\n          \"type\": \"MultiPolygon\",\n          \"coordinates\": [\n            [\n              [\n                [\n                  120,\n                  180\n                ],\n                [\n                  60,\n                  80\n                ],\n                [\n                  180,\n                  80\n                ],\n                [\n                  120,\n                  180\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  100,\n                  240\n                ],\n                [\n                  140,\n                  240\n                ],\n                [\n                  120,\n                  220\n                ],\n                [\n                  100,\n                  240\n                ]\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTILINESTRING ((180 260, 120 180, 60 260, 180 260),(60 300, 60 40),(100 100, 140 100))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                180,\n                260\n              ],\n              [\n                120,\n                180\n              ],\n              [\n                60,\n                260\n              ],\n              [\n                180,\n                260\n              ]\n            ],\n            [\n              [\n                60,\n                300\n              ],\n              [\n                60,\n                40\n              ]\n            ],\n            [\n              [\n                100,\n                100\n              ],\n              [\n                140,\n                100\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"1020F1102\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((60 80, 100 240, 140 240, 180 80, 60 80))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  60,\n                  80\n                ],\n                [\n                  100,\n                  240\n                ],\n                [\n                  140,\n                  240\n                ],\n                [\n                  180,\n                  80\n                ],\n                [\n                  60,\n                  80\n                ]\n              ]\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"GEOMETRYCOLLECTION (POINT (60 80), POINT (120 180), LINESTRING (100 100, 140 100))\",\n          \"geometry\": {\n            \"type\": \"GeometryCollection\",\n            \"geometries\": [\n              {\n                \"type\": \"Point\",\n                \"coordinates\": [\n                  60,\n                  80\n                ]\n              },\n              {\n                \"type\": \"Point\",\n                \"coordinates\": [\n                  120,\n                  180\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    100,\n                    100\n                  ],\n                  [\n                    140,\n                    100\n                  ]\n                ]\n              }\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"GEOMETRYCOLLECTION (LINESTRING (180 260, 120 180), LINESTRING (120 180, 60 260), LINESTRING (60 260, 180 260), LINESTRING (60 300, 60 260), LINESTRING (60 260, 60 80), LINESTRING (60 80, 60 40), POLYGON ((60 80, 120 180, 180 80, 60 80)), POLYGON ((100 240, 140 240, 120 220, 100 240)))\",\n          \"geometry\": {\n            \"type\": \"GeometryCollection\",\n            \"geometries\": [\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    180,\n                    260\n                  ],\n                  [\n                    120,\n                    180\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    120,\n                    180\n                  ],\n                  [\n                    60,\n                    260\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    60,\n                    260\n                  ],\n                  [\n                    180,\n                    260\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    60,\n                    300\n                  ],\n                  [\n                    60,\n                    260\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    60,\n                    260\n                  ],\n                  [\n                    60,\n                    80\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    60,\n                    80\n                  ],\n                  [\n                    60,\n                    40\n                  ]\n                ]\n              },\n              {\n                \"type\": \"Polygon\",\n                \"coordinates\": [\n                  [\n                    [\n                      60,\n                      80\n                    ],\n                    [\n                      120,\n                      180\n                    ],\n                    [\n                      180,\n                      80\n                    ],\n                    [\n                      60,\n                      80\n                    ]\n                  ]\n                ]\n              },\n              {\n                \"type\": \"Polygon\",\n                \"coordinates\": [\n                  [\n                    [\n                      100,\n                      240\n                    ],\n                    [\n                      140,\n                      240\n                    ],\n                    [\n                      120,\n                      220\n                    ],\n                    [\n                      100,\n                      240\n                    ]\n                  ]\n                ]\n              }\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"MULTIPOLYGON (((60 80, 120 180, 180 80, 60 80)),((100 240, 140 240, 120 220, 100 240)))\",\n          \"geometry\": {\n            \"type\": \"MultiPolygon\",\n            \"coordinates\": [\n              [\n                [\n                  [\n                    60,\n                    80\n                  ],\n                  [\n                    120,\n                    180\n                  ],\n                  [\n                    180,\n                    80\n                  ],\n                  [\n                    60,\n                    80\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    100,\n                    240\n                  ],\n                  [\n                    140,\n                    240\n                  ],\n                  [\n                    120,\n                    220\n                  ],\n                  [\n                    100,\n                    240\n                  ]\n                ]\n              ]\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"GEOMETRYCOLLECTION (LINESTRING (180 260, 120 180), LINESTRING (120 180, 60 260), LINESTRING (60 260, 180 260), LINESTRING (60 300, 60 260), LINESTRING (60 260, 60 80), LINESTRING (60 80, 60 40), POLYGON ((60 80, 120 180, 180 80, 60 80)), POLYGON ((100 240, 140 240, 120 220, 100 240)))\",\n          \"geometry\": {\n            \"type\": \"GeometryCollection\",\n            \"geometries\": [\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    180,\n                    260\n                  ],\n                  [\n                    120,\n                    180\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    120,\n                    180\n                  ],\n                  [\n                    60,\n                    260\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    60,\n                    260\n                  ],\n                  [\n                    180,\n                    260\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    60,\n                    300\n                  ],\n                  [\n                    60,\n                    260\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    60,\n                    260\n                  ],\n                  [\n                    60,\n                    80\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    60,\n                    80\n                  ],\n                  [\n                    60,\n                    40\n                  ]\n                ]\n              },\n              {\n                \"type\": \"Polygon\",\n                \"coordinates\": [\n                  [\n                    [\n                      60,\n                      80\n                    ],\n                    [\n                      120,\n                      180\n                    ],\n                    [\n                      180,\n                      80\n                    ],\n                    [\n                      60,\n                      80\n                    ]\n                  ]\n                ]\n              },\n              {\n                \"type\": \"Polygon\",\n                \"coordinates\": [\n                  [\n                    [\n                      100,\n                      240\n                    ],\n                    [\n                      140,\n                      240\n                    ],\n                    [\n                      120,\n                      220\n                    ],\n                    [\n                      100,\n                      240\n                    ]\n                  ]\n                ]\n              }\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionAA\",\n      \"category\": \"function\",\n      \"title\": \"AA - simple polygons\",\n      \"id\": \"14-001\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((10 10, 100 10, 100 100, 10 100, 10 10))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                10,\n                10\n              ],\n              [\n                100,\n                10\n              ],\n              [\n                100,\n                100\n              ],\n              [\n                10,\n                100\n              ],\n              [\n                10,\n                10\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((50 50, 200 50, 200 200, 50 200, 50 50))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                50,\n                50\n              ],\n              [\n                200,\n                50\n              ],\n              [\n                200,\n                200\n              ],\n              [\n                50,\n                200\n              ],\n              [\n                50,\n                50\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"212101212\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((10 10, 10 100, 100 100, 100 10, 10 10))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  10,\n                  10\n                ],\n                [\n                  10,\n                  100\n                ],\n                [\n                  100,\n                  100\n                ],\n                [\n                  100,\n                  10\n                ],\n                [\n                  10,\n                  10\n                ]\n              ]\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"POLYGON ((50 100, 100 100, 100 50, 50 50, 50 100))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  50,\n                  100\n                ],\n                [\n                  100,\n                  100\n                ],\n                [\n                  100,\n                  50\n                ],\n                [\n                  50,\n                  50\n                ],\n                [\n                  50,\n                  100\n                ]\n              ]\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"POLYGON ((100 50, 100 10, 10 10, 10 100, 50 100, 50 200, 200 200, 200 50, 100 50))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  100,\n                  50\n                ],\n                [\n                  100,\n                  10\n                ],\n                [\n                  10,\n                  10\n                ],\n                [\n                  10,\n                  100\n                ],\n                [\n                  50,\n                  100\n                ],\n                [\n                  50,\n                  200\n                ],\n                [\n                  200,\n                  200\n                ],\n                [\n                  200,\n                  50\n                ],\n                [\n                  100,\n                  50\n                ]\n              ]\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"POLYGON ((100 50, 100 10, 10 10, 10 100, 50 100, 50 50, 100 50))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  100,\n                  50\n                ],\n                [\n                  100,\n                  10\n                ],\n                [\n                  10,\n                  10\n                ],\n                [\n                  10,\n                  100\n                ],\n                [\n                  50,\n                  100\n                ],\n                [\n                  50,\n                  50\n                ],\n                [\n                  100,\n                  50\n                ]\n              ]\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"MULTIPOLYGON (((100 50, 100 10, 10 10, 10 100, 50 100, 50 50, 100 50)),((100 50, 100 100, 50 100, 50 200, 200 200, 200 50, 100 50)))\",\n          \"geometry\": {\n            \"type\": \"MultiPolygon\",\n            \"coordinates\": [\n              [\n                [\n                  [\n                    100,\n                    50\n                  ],\n                  [\n                    100,\n                    10\n                  ],\n                  [\n                    10,\n                    10\n                  ],\n                  [\n                    10,\n                    100\n                  ],\n                  [\n                    50,\n                    100\n                  ],\n                  [\n                    50,\n                    50\n                  ],\n                  [\n                    100,\n                    50\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    100,\n                    50\n                  ],\n                  [\n                    100,\n                    100\n                  ],\n                  [\n                    50,\n                    100\n                  ],\n                  [\n                    50,\n                    200\n                  ],\n                  [\n                    200,\n                    200\n                  ],\n                  [\n                    200,\n                    50\n                  ],\n                  [\n                    100,\n                    50\n                  ]\n                ]\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionAA\",\n      \"category\": \"function\",\n      \"title\": \"AA - A with hole intersecting B\",\n      \"id\": \"14-002\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((20 20, 20 160, 160 160, 160 20, 20 20),(140 140, 40 140, 40 40, 140 40, 140 140))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                160\n              ],\n              [\n                160,\n                160\n              ],\n              [\n                160,\n                20\n              ],\n              [\n                20,\n                20\n              ]\n            ],\n            [\n              [\n                140,\n                140\n              ],\n              [\n                40,\n                140\n              ],\n              [\n                40,\n                40\n              ],\n              [\n                140,\n                40\n              ],\n              [\n                140,\n                140\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((80 100, 220 100, 220 240, 80 240, 80 100))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                80,\n                100\n              ],\n              [\n                220,\n                100\n              ],\n              [\n                220,\n                240\n              ],\n              [\n                80,\n                240\n              ],\n              [\n                80,\n                100\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"212101212\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((20 20, 20 160, 160 160, 160 20, 20 20))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  20,\n                  20\n                ],\n                [\n                  20,\n                  160\n                ],\n                [\n                  160,\n                  160\n                ],\n                [\n                  160,\n                  20\n                ],\n                [\n                  20,\n                  20\n                ]\n              ]\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"POLYGON ((80 160, 160 160, 160 100, 140 100, 140 140, 80 140, 80 160))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  80,\n                  160\n                ],\n                [\n                  160,\n                  160\n                ],\n                [\n                  160,\n                  100\n                ],\n                [\n                  140,\n                  100\n                ],\n                [\n                  140,\n                  140\n                ],\n                [\n                  80,\n                  140\n                ],\n                [\n                  80,\n                  160\n                ]\n              ]\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"POLYGON ((20 20, 20 160, 80 160, 80 240, 220 240, 220 100, 160 100, 160 20, 20 20),(80 140, 40 140, 40 40, 140 40, 140 100, 80 100, 80 140))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  20,\n                  20\n                ],\n                [\n                  20,\n                  160\n                ],\n                [\n                  80,\n                  160\n                ],\n                [\n                  80,\n                  240\n                ],\n                [\n                  220,\n                  240\n                ],\n                [\n                  220,\n                  100\n                ],\n                [\n                  160,\n                  100\n                ],\n                [\n                  160,\n                  20\n                ],\n                [\n                  20,\n                  20\n                ]\n              ],\n              [\n                [\n                  80,\n                  140\n                ],\n                [\n                  40,\n                  140\n                ],\n                [\n                  40,\n                  40\n                ],\n                [\n                  140,\n                  40\n                ],\n                [\n                  140,\n                  100\n                ],\n                [\n                  80,\n                  100\n                ],\n                [\n                  80,\n                  140\n                ]\n              ]\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"POLYGON ((20 20, 20 160, 80 160, 80 140, 40 140, 40 40, 140 40, 140 100, 160 100, 160 20, 20 20))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  20,\n                  20\n                ],\n                [\n                  20,\n                  160\n                ],\n                [\n                  80,\n                  160\n                ],\n                [\n                  80,\n                  140\n                ],\n                [\n                  40,\n                  140\n                ],\n                [\n                  40,\n                  40\n                ],\n                [\n                  140,\n                  40\n                ],\n                [\n                  140,\n                  100\n                ],\n                [\n                  160,\n                  100\n                ],\n                [\n                  160,\n                  20\n                ],\n                [\n                  20,\n                  20\n                ]\n              ]\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"MULTIPOLYGON (((20 20, 20 160, 80 160, 80 140, 40 140, 40 40, 140 40, 140 100, 160 100, 160 20, 20 20)),((160 100, 160 160, 80 160, 80 240, 220 240, 220 100, 160 100)),((80 140, 140 140, 140 100, 80 100, 80 140)))\",\n          \"geometry\": {\n            \"type\": \"MultiPolygon\",\n            \"coordinates\": [\n              [\n                [\n                  [\n                    20,\n                    20\n                  ],\n                  [\n                    20,\n                    160\n                  ],\n                  [\n                    80,\n                    160\n                  ],\n                  [\n                    80,\n                    140\n                  ],\n                  [\n                    40,\n                    140\n                  ],\n                  [\n                    40,\n                    40\n                  ],\n                  [\n                    140,\n                    40\n                  ],\n                  [\n                    140,\n                    100\n                  ],\n                  [\n                    160,\n                    100\n                  ],\n                  [\n                    160,\n                    20\n                  ],\n                  [\n                    20,\n                    20\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    160,\n                    100\n                  ],\n                  [\n                    160,\n                    160\n                  ],\n                  [\n                    80,\n                    160\n                  ],\n                  [\n                    80,\n                    240\n                  ],\n                  [\n                    220,\n                    240\n                  ],\n                  [\n                    220,\n                    100\n                  ],\n                  [\n                    160,\n                    100\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    80,\n                    140\n                  ],\n                  [\n                    140,\n                    140\n                  ],\n                  [\n                    140,\n                    100\n                  ],\n                  [\n                    80,\n                    100\n                  ],\n                  [\n                    80,\n                    140\n                  ]\n                ]\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionAA\",\n      \"category\": \"function\",\n      \"title\": \"AA - simple polygons #2\",\n      \"id\": \"14-003\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((20 340, 330 380, 50 40, 20 340))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                340\n              ],\n              [\n                330,\n                380\n              ],\n              [\n                50,\n                40\n              ],\n              [\n                20,\n                340\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((210 320, 140 270, 0 270, 140 220, 210 320))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                210,\n                320\n              ],\n              [\n                140,\n                270\n              ],\n              [\n                0,\n                270\n              ],\n              [\n                140,\n                220\n              ],\n              [\n                210,\n                320\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"212101212\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((50 40, 20 340, 330 380, 50 40))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  50,\n                  40\n                ],\n                [\n                  20,\n                  340\n                ],\n                [\n                  330,\n                  380\n                ],\n                [\n                  50,\n                  40\n                ]\n              ]\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"POLYGON ((28 260, 27 270, 140 270, 210 320, 140 220, 28 260))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  28,\n                  260\n                ],\n                [\n                  27,\n                  270\n                ],\n                [\n                  140,\n                  270\n                ],\n                [\n                  210,\n                  320\n                ],\n                [\n                  140,\n                  220\n                ],\n                [\n                  28,\n                  260\n                ]\n              ]\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"POLYGON ((20 340, 330 380, 50 40, 28 260, 0 270, 27 270, 20 340))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  20,\n                  340\n                ],\n                [\n                  330,\n                  380\n                ],\n                [\n                  50,\n                  40\n                ],\n                [\n                  28,\n                  260\n                ],\n                [\n                  0,\n                  270\n                ],\n                [\n                  27,\n                  270\n                ],\n                [\n                  20,\n                  340\n                ]\n              ]\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"POLYGON ((20 340, 330 380, 50 40, 28 260, 140 220, 210 320, 140 270, 27 270, 20 340))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  20,\n                  340\n                ],\n                [\n                  330,\n                  380\n                ],\n                [\n                  50,\n                  40\n                ],\n                [\n                  28,\n                  260\n                ],\n                [\n                  140,\n                  220\n                ],\n                [\n                  210,\n                  320\n                ],\n                [\n                  140,\n                  270\n                ],\n                [\n                  27,\n                  270\n                ],\n                [\n                  20,\n                  340\n                ]\n              ]\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"MULTIPOLYGON (((20 340, 330 380, 50 40, 28 260, 140 220, 210 320, 140 270, 27 270, 20 340)),((27 270, 28 260, 0 270, 27 270)))\",\n          \"geometry\": {\n            \"type\": \"MultiPolygon\",\n            \"coordinates\": [\n              [\n                [\n                  [\n                    20,\n                    340\n                  ],\n                  [\n                    330,\n                    380\n                  ],\n                  [\n                    50,\n                    40\n                  ],\n                  [\n                    28,\n                    260\n                  ],\n                  [\n                    140,\n                    220\n                  ],\n                  [\n                    210,\n                    320\n                  ],\n                  [\n                    140,\n                    270\n                  ],\n                  [\n                    27,\n                    270\n                  ],\n                  [\n                    20,\n                    340\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    27,\n                    270\n                  ],\n                  [\n                    28,\n                    260\n                  ],\n                  [\n                    0,\n                    270\n                  ],\n                  [\n                    27,\n                    270\n                  ]\n                ]\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionAA\",\n      \"category\": \"function\",\n      \"title\": \"AA - simple polygons intersecting in P, L and A\",\n      \"id\": \"14-004\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((0 0, 110 0, 110 60, 40 60, 180 140, 40 220, 110 260, 0 260, 0 0))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                0,\n                0\n              ],\n              [\n                110,\n                0\n              ],\n              [\n                110,\n                60\n              ],\n              [\n                40,\n                60\n              ],\n              [\n                180,\n                140\n              ],\n              [\n                40,\n                220\n              ],\n              [\n                110,\n                260\n              ],\n              [\n                0,\n                260\n              ],\n              [\n                0,\n                0\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((220 0, 110 0, 110 60, 180 60, 40 140, 180 220, 110 260, 220 260, 220 0))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                220,\n                0\n              ],\n              [\n                110,\n                0\n              ],\n              [\n                110,\n                60\n              ],\n              [\n                180,\n                60\n              ],\n              [\n                40,\n                140\n              ],\n              [\n                180,\n                220\n              ],\n              [\n                110,\n                260\n              ],\n              [\n                220,\n                260\n              ],\n              [\n                220,\n                0\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"212111212\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((0 0, 0 260, 110 260, 180 140, 110 0, 0 0))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  0,\n                  0\n                ],\n                [\n                  0,\n                  260\n                ],\n                [\n                  110,\n                  260\n                ],\n                [\n                  180,\n                  140\n                ],\n                [\n                  110,\n                  0\n                ],\n                [\n                  0,\n                  0\n                ]\n              ]\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"GEOMETRYCOLLECTION (POINT (110 260), LINESTRING (110 0, 110 60), POLYGON ((110 180, 180 140, 110 100, 40 140, 110 180)))\",\n          \"geometry\": {\n            \"type\": \"GeometryCollection\",\n            \"geometries\": [\n              {\n                \"type\": \"Point\",\n                \"coordinates\": [\n                  110,\n                  260\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    110,\n                    0\n                  ],\n                  [\n                    110,\n                    60\n                  ]\n                ]\n              },\n              {\n                \"type\": \"Polygon\",\n                \"coordinates\": [\n                  [\n                    [\n                      110,\n                      180\n                    ],\n                    [\n                      180,\n                      140\n                    ],\n                    [\n                      110,\n                      100\n                    ],\n                    [\n                      40,\n                      140\n                    ],\n                    [\n                      110,\n                      180\n                    ]\n                  ]\n                ]\n              }\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"POLYGON ((110 0, 0 0, 0 260, 110 260, 220 260, 220 0, 110 0),(110 260, 40 220, 110 180, 180 220, 110 260),(110 100, 40 60, 110 60, 180 60, 110 100))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  110,\n                  0\n                ],\n                [\n                  0,\n                  0\n                ],\n                [\n                  0,\n                  260\n                ],\n                [\n                  110,\n                  260\n                ],\n                [\n                  220,\n                  260\n                ],\n                [\n                  220,\n                  0\n                ],\n                [\n                  110,\n                  0\n                ]\n              ],\n              [\n                [\n                  110,\n                  260\n                ],\n                [\n                  40,\n                  220\n                ],\n                [\n                  110,\n                  180\n                ],\n                [\n                  180,\n                  220\n                ],\n                [\n                  110,\n                  260\n                ]\n              ],\n              [\n                [\n                  110,\n                  100\n                ],\n                [\n                  40,\n                  60\n                ],\n                [\n                  110,\n                  60\n                ],\n                [\n                  180,\n                  60\n                ],\n                [\n                  110,\n                  100\n                ]\n              ]\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"POLYGON ((110 0, 0 0, 0 260, 110 260, 40 220, 110 180, 40 140, 110 100, 40 60, 110 60, 110 0))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  110,\n                  0\n                ],\n                [\n                  0,\n                  0\n                ],\n                [\n                  0,\n                  260\n                ],\n                [\n                  110,\n                  260\n                ],\n                [\n                  40,\n                  220\n                ],\n                [\n                  110,\n                  180\n                ],\n                [\n                  40,\n                  140\n                ],\n                [\n                  110,\n                  100\n                ],\n                [\n                  40,\n                  60\n                ],\n                [\n                  110,\n                  60\n                ],\n                [\n                  110,\n                  0\n                ]\n              ]\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"POLYGON ((110 0, 0 0, 0 260, 110 260, 220 260, 220 0, 110 0),(110 260, 40 220, 110 180, 180 220, 110 260),(110 180, 40 140, 110 100, 180 140, 110 180),(110 100, 40 60, 110 60, 180 60, 110 100))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  110,\n                  0\n                ],\n                [\n                  0,\n                  0\n                ],\n                [\n                  0,\n                  260\n                ],\n                [\n                  110,\n                  260\n                ],\n                [\n                  220,\n                  260\n                ],\n                [\n                  220,\n                  0\n                ],\n                [\n                  110,\n                  0\n                ]\n              ],\n              [\n                [\n                  110,\n                  260\n                ],\n                [\n                  40,\n                  220\n                ],\n                [\n                  110,\n                  180\n                ],\n                [\n                  180,\n                  220\n                ],\n                [\n                  110,\n                  260\n                ]\n              ],\n              [\n                [\n                  110,\n                  180\n                ],\n                [\n                  40,\n                  140\n                ],\n                [\n                  110,\n                  100\n                ],\n                [\n                  180,\n                  140\n                ],\n                [\n                  110,\n                  180\n                ]\n              ],\n              [\n                [\n                  110,\n                  100\n                ],\n                [\n                  40,\n                  60\n                ],\n                [\n                  110,\n                  60\n                ],\n                [\n                  180,\n                  60\n                ],\n                [\n                  110,\n                  100\n                ]\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionAA\",\n      \"category\": \"function\",\n      \"title\": \"AA - simple polygons with two touching holes in their symDifference\",\n      \"id\": \"14-005\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((0 0, 120 0, 120 50, 50 50, 120 100, 50 150, 120 150, 120 190, 0 190, 0 0))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                0,\n                0\n              ],\n              [\n                120,\n                0\n              ],\n              [\n                120,\n                50\n              ],\n              [\n                50,\n                50\n              ],\n              [\n                120,\n                100\n              ],\n              [\n                50,\n                150\n              ],\n              [\n                120,\n                150\n              ],\n              [\n                120,\n                190\n              ],\n              [\n                0,\n                190\n              ],\n              [\n                0,\n                0\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((230 0, 120 0, 120 50, 190 50, 120 100, 190 150, 120 150, 120 190, 230 190, 230 0))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                230,\n                0\n              ],\n              [\n                120,\n                0\n              ],\n              [\n                120,\n                50\n              ],\n              [\n                190,\n                50\n              ],\n              [\n                120,\n                100\n              ],\n              [\n                190,\n                150\n              ],\n              [\n                120,\n                150\n              ],\n              [\n                120,\n                190\n              ],\n              [\n                230,\n                190\n              ],\n              [\n                230,\n                0\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF2F11212\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((0 0, 0 190, 120 190, 120 0, 0 0))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  0,\n                  0\n                ],\n                [\n                  0,\n                  190\n                ],\n                [\n                  120,\n                  190\n                ],\n                [\n                  120,\n                  0\n                ],\n                [\n                  0,\n                  0\n                ]\n              ]\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"GEOMETRYCOLLECTION (POINT (120 100), LINESTRING (120 0, 120 50), LINESTRING (120 150, 120 190))\",\n          \"geometry\": {\n            \"type\": \"GeometryCollection\",\n            \"geometries\": [\n              {\n                \"type\": \"Point\",\n                \"coordinates\": [\n                  120,\n                  100\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    120,\n                    0\n                  ],\n                  [\n                    120,\n                    50\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    120,\n                    150\n                  ],\n                  [\n                    120,\n                    190\n                  ]\n                ]\n              }\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"POLYGON ((120 0, 0 0, 0 190, 120 190, 230 190, 230 0, 120 0),(120 100, 50 50, 120 50, 190 50, 120 100),(120 100, 190 150, 120 150, 50 150, 120 100))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  120,\n                  0\n                ],\n                [\n                  0,\n                  0\n                ],\n                [\n                  0,\n                  190\n                ],\n                [\n                  120,\n                  190\n                ],\n                [\n                  230,\n                  190\n                ],\n                [\n                  230,\n                  0\n                ],\n                [\n                  120,\n                  0\n                ]\n              ],\n              [\n                [\n                  120,\n                  100\n                ],\n                [\n                  50,\n                  50\n                ],\n                [\n                  120,\n                  50\n                ],\n                [\n                  190,\n                  50\n                ],\n                [\n                  120,\n                  100\n                ]\n              ],\n              [\n                [\n                  120,\n                  100\n                ],\n                [\n                  190,\n                  150\n                ],\n                [\n                  120,\n                  150\n                ],\n                [\n                  50,\n                  150\n                ],\n                [\n                  120,\n                  100\n                ]\n              ]\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"POLYGON ((120 0, 0 0, 0 190, 120 190, 120 150, 50 150, 120 100, 50 50, 120 50, 120 0))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  120,\n                  0\n                ],\n                [\n                  0,\n                  0\n                ],\n                [\n                  0,\n                  190\n                ],\n                [\n                  120,\n                  190\n                ],\n                [\n                  120,\n                  150\n                ],\n                [\n                  50,\n                  150\n                ],\n                [\n                  120,\n                  100\n                ],\n                [\n                  50,\n                  50\n                ],\n                [\n                  120,\n                  50\n                ],\n                [\n                  120,\n                  0\n                ]\n              ]\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"POLYGON ((120 0, 0 0, 0 190, 120 190, 230 190, 230 0, 120 0),(120 100, 50 50, 120 50, 190 50, 120 100),(120 100, 190 150, 120 150, 50 150, 120 100))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  120,\n                  0\n                ],\n                [\n                  0,\n                  0\n                ],\n                [\n                  0,\n                  190\n                ],\n                [\n                  120,\n                  190\n                ],\n                [\n                  230,\n                  190\n                ],\n                [\n                  230,\n                  0\n                ],\n                [\n                  120,\n                  0\n                ]\n              ],\n              [\n                [\n                  120,\n                  100\n                ],\n                [\n                  50,\n                  50\n                ],\n                [\n                  120,\n                  50\n                ],\n                [\n                  190,\n                  50\n                ],\n                [\n                  120,\n                  100\n                ]\n              ],\n              [\n                [\n                  120,\n                  100\n                ],\n                [\n                  190,\n                  150\n                ],\n                [\n                  120,\n                  150\n                ],\n                [\n                  50,\n                  150\n                ],\n                [\n                  120,\n                  100\n                ]\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionAA\",\n      \"category\": \"function\",\n      \"title\": \"AmA - A simple, symDiff contains inversion\",\n      \"id\": \"14-006\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((0 0, 210 0, 210 230, 0 230, 0 0))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                0,\n                0\n              ],\n              [\n                210,\n                0\n              ],\n              [\n                210,\n                230\n              ],\n              [\n                0,\n                230\n              ],\n              [\n                0,\n                0\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTIPOLYGON (((40 20, 0 0, 20 40, 60 60, 40 20)),((60 90, 60 60, 90 60, 90 90, 60 90)),((70 120, 90 90, 100 120, 70 120)),((120 70, 90 90, 120 100, 120 70)))\",\n        \"geometry\": {\n          \"type\": \"MultiPolygon\",\n          \"coordinates\": [\n            [\n              [\n                [\n                  40,\n                  20\n                ],\n                [\n                  0,\n                  0\n                ],\n                [\n                  20,\n                  40\n                ],\n                [\n                  60,\n                  60\n                ],\n                [\n                  40,\n                  20\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  60,\n                  90\n                ],\n                [\n                  60,\n                  60\n                ],\n                [\n                  90,\n                  60\n                ],\n                [\n                  90,\n                  90\n                ],\n                [\n                  60,\n                  90\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  70,\n                  120\n                ],\n                [\n                  90,\n                  90\n                ],\n                [\n                  100,\n                  120\n                ],\n                [\n                  70,\n                  120\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  120,\n                  70\n                ],\n                [\n                  90,\n                  90\n                ],\n                [\n                  120,\n                  100\n                ],\n                [\n                  120,\n                  70\n                ]\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"212F01FF2\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((0 0, 0 230, 210 230, 210 0, 0 0))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  0,\n                  0\n                ],\n                [\n                  0,\n                  230\n                ],\n                [\n                  210,\n                  230\n                ],\n                [\n                  210,\n                  0\n                ],\n                [\n                  0,\n                  0\n                ]\n              ]\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"MULTIPOLYGON (((40 20, 0 0, 20 40, 60 60, 40 20)),((60 60, 60 90, 90 90, 90 60, 60 60)),((90 90, 70 120, 100 120, 90 90)),((120 70, 90 90, 120 100, 120 70)))\",\n          \"geometry\": {\n            \"type\": \"MultiPolygon\",\n            \"coordinates\": [\n              [\n                [\n                  [\n                    40,\n                    20\n                  ],\n                  [\n                    0,\n                    0\n                  ],\n                  [\n                    20,\n                    40\n                  ],\n                  [\n                    60,\n                    60\n                  ],\n                  [\n                    40,\n                    20\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    60,\n                    60\n                  ],\n                  [\n                    60,\n                    90\n                  ],\n                  [\n                    90,\n                    90\n                  ],\n                  [\n                    90,\n                    60\n                  ],\n                  [\n                    60,\n                    60\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    90,\n                    90\n                  ],\n                  [\n                    70,\n                    120\n                  ],\n                  [\n                    100,\n                    120\n                  ],\n                  [\n                    90,\n                    90\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    120,\n                    70\n                  ],\n                  [\n                    90,\n                    90\n                  ],\n                  [\n                    120,\n                    100\n                  ],\n                  [\n                    120,\n                    70\n                  ]\n                ]\n              ]\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"POLYGON ((0 0, 0 230, 210 230, 210 0, 0 0))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  0,\n                  0\n                ],\n                [\n                  0,\n                  230\n                ],\n                [\n                  210,\n                  230\n                ],\n                [\n                  210,\n                  0\n                ],\n                [\n                  0,\n                  0\n                ]\n              ]\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"POLYGON ((0 0, 0 230, 210 230, 210 0, 0 0),(0 0, 40 20, 60 60, 20 40, 0 0),(60 60, 90 60, 90 90, 60 90, 60 60),(90 90, 120 70, 120 100, 90 90),(90 90, 100 120, 70 120, 90 90))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  0,\n                  0\n                ],\n                [\n                  0,\n                  230\n                ],\n                [\n                  210,\n                  230\n                ],\n                [\n                  210,\n                  0\n                ],\n                [\n                  0,\n                  0\n                ]\n              ],\n              [\n                [\n                  0,\n                  0\n                ],\n                [\n                  40,\n                  20\n                ],\n                [\n                  60,\n                  60\n                ],\n                [\n                  20,\n                  40\n                ],\n                [\n                  0,\n                  0\n                ]\n              ],\n              [\n                [\n                  60,\n                  60\n                ],\n                [\n                  90,\n                  60\n                ],\n                [\n                  90,\n                  90\n                ],\n                [\n                  60,\n                  90\n                ],\n                [\n                  60,\n                  60\n                ]\n              ],\n              [\n                [\n                  90,\n                  90\n                ],\n                [\n                  120,\n                  70\n                ],\n                [\n                  120,\n                  100\n                ],\n                [\n                  90,\n                  90\n                ]\n              ],\n              [\n                [\n                  90,\n                  90\n                ],\n                [\n                  100,\n                  120\n                ],\n                [\n                  70,\n                  120\n                ],\n                [\n                  90,\n                  90\n                ]\n              ]\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"POLYGON ((0 0, 0 230, 210 230, 210 0, 0 0),(0 0, 40 20, 60 60, 20 40, 0 0),(60 60, 90 60, 90 90, 60 90, 60 60),(90 90, 120 70, 120 100, 90 90),(90 90, 100 120, 70 120, 90 90))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  0,\n                  0\n                ],\n                [\n                  0,\n                  230\n                ],\n                [\n                  210,\n                  230\n                ],\n                [\n                  210,\n                  0\n                ],\n                [\n                  0,\n                  0\n                ]\n              ],\n              [\n                [\n                  0,\n                  0\n                ],\n                [\n                  40,\n                  20\n                ],\n                [\n                  60,\n                  60\n                ],\n                [\n                  20,\n                  40\n                ],\n                [\n                  0,\n                  0\n                ]\n              ],\n              [\n                [\n                  60,\n                  60\n                ],\n                [\n                  90,\n                  60\n                ],\n                [\n                  90,\n                  90\n                ],\n                [\n                  60,\n                  90\n                ],\n                [\n                  60,\n                  60\n                ]\n              ],\n              [\n                [\n                  90,\n                  90\n                ],\n                [\n                  120,\n                  70\n                ],\n                [\n                  120,\n                  100\n                ],\n                [\n                  90,\n                  90\n                ]\n              ],\n              [\n                [\n                  90,\n                  90\n                ],\n                [\n                  100,\n                  120\n                ],\n                [\n                  70,\n                  120\n                ],\n                [\n                  90,\n                  90\n                ]\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionAA\",\n      \"category\": \"function\",\n      \"title\": \"AmA - A simple, B connected multiPolygon touching A at vertex\",\n      \"id\": \"14-007\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((0 0, 340 0, 340 300, 0 300, 0 0))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                0,\n                0\n              ],\n              [\n                340,\n                0\n              ],\n              [\n                340,\n                300\n              ],\n              [\n                0,\n                300\n              ],\n              [\n                0,\n                0\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTIPOLYGON (((40 20, 0 0, 20 40, 60 60, 40 20)),((60 100, 60 60, 100 60, 100 100, 60 100)))\",\n        \"geometry\": {\n          \"type\": \"MultiPolygon\",\n          \"coordinates\": [\n            [\n              [\n                [\n                  40,\n                  20\n                ],\n                [\n                  0,\n                  0\n                ],\n                [\n                  20,\n                  40\n                ],\n                [\n                  60,\n                  60\n                ],\n                [\n                  40,\n                  20\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  60,\n                  100\n                ],\n                [\n                  60,\n                  60\n                ],\n                [\n                  100,\n                  60\n                ],\n                [\n                  100,\n                  100\n                ],\n                [\n                  60,\n                  100\n                ]\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"212F01FF2\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((0 0, 0 300, 340 300, 340 0, 0 0))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  0,\n                  0\n                ],\n                [\n                  0,\n                  300\n                ],\n                [\n                  340,\n                  300\n                ],\n                [\n                  340,\n                  0\n                ],\n                [\n                  0,\n                  0\n                ]\n              ]\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"MULTIPOLYGON (((40 20, 0 0, 20 40, 60 60, 40 20)),((60 60, 60 100, 100 100, 100 60, 60 60)))\",\n          \"geometry\": {\n            \"type\": \"MultiPolygon\",\n            \"coordinates\": [\n              [\n                [\n                  [\n                    40,\n                    20\n                  ],\n                  [\n                    0,\n                    0\n                  ],\n                  [\n                    20,\n                    40\n                  ],\n                  [\n                    60,\n                    60\n                  ],\n                  [\n                    40,\n                    20\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    60,\n                    60\n                  ],\n                  [\n                    60,\n                    100\n                  ],\n                  [\n                    100,\n                    100\n                  ],\n                  [\n                    100,\n                    60\n                  ],\n                  [\n                    60,\n                    60\n                  ]\n                ]\n              ]\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"POLYGON ((0 0, 0 300, 340 300, 340 0, 0 0))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  0,\n                  0\n                ],\n                [\n                  0,\n                  300\n                ],\n                [\n                  340,\n                  300\n                ],\n                [\n                  340,\n                  0\n                ],\n                [\n                  0,\n                  0\n                ]\n              ]\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"POLYGON ((0 0, 0 300, 340 300, 340 0, 0 0),(0 0, 40 20, 60 60, 20 40, 0 0),(60 60, 100 60, 100 100, 60 100, 60 60))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  0,\n                  0\n                ],\n                [\n                  0,\n                  300\n                ],\n                [\n                  340,\n                  300\n                ],\n                [\n                  340,\n                  0\n                ],\n                [\n                  0,\n                  0\n                ]\n              ],\n              [\n                [\n                  0,\n                  0\n                ],\n                [\n                  40,\n                  20\n                ],\n                [\n                  60,\n                  60\n                ],\n                [\n                  20,\n                  40\n                ],\n                [\n                  0,\n                  0\n                ]\n              ],\n              [\n                [\n                  60,\n                  60\n                ],\n                [\n                  100,\n                  60\n                ],\n                [\n                  100,\n                  100\n                ],\n                [\n                  60,\n                  100\n                ],\n                [\n                  60,\n                  60\n                ]\n              ]\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"POLYGON ((0 0, 0 300, 340 300, 340 0, 0 0),(0 0, 40 20, 60 60, 20 40, 0 0),(60 60, 100 60, 100 100, 60 100, 60 60))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  0,\n                  0\n                ],\n                [\n                  0,\n                  300\n                ],\n                [\n                  340,\n                  300\n                ],\n                [\n                  340,\n                  0\n                ],\n                [\n                  0,\n                  0\n                ]\n              ],\n              [\n                [\n                  0,\n                  0\n                ],\n                [\n                  40,\n                  20\n                ],\n                [\n                  60,\n                  60\n                ],\n                [\n                  20,\n                  40\n                ],\n                [\n                  0,\n                  0\n                ]\n              ],\n              [\n                [\n                  60,\n                  60\n                ],\n                [\n                  100,\n                  60\n                ],\n                [\n                  100,\n                  100\n                ],\n                [\n                  60,\n                  100\n                ],\n                [\n                  60,\n                  60\n                ]\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionAA\",\n      \"category\": \"function\",\n      \"title\": \"AmA - A simple, B connected multiPolygon touching A at interior of edge\",\n      \"id\": \"14-008\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((0 0, 120 0, 120 120, 0 120, 0 0))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                0,\n                0\n              ],\n              [\n                120,\n                0\n              ],\n              [\n                120,\n                120\n              ],\n              [\n                0,\n                120\n              ],\n              [\n                0,\n                0\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTIPOLYGON (((60 20, 0 20, 60 60, 60 20)),((60 100, 60 60, 100 60, 100 100, 60 100)))\",\n        \"geometry\": {\n          \"type\": \"MultiPolygon\",\n          \"coordinates\": [\n            [\n              [\n                [\n                  60,\n                  20\n                ],\n                [\n                  0,\n                  20\n                ],\n                [\n                  60,\n                  60\n                ],\n                [\n                  60,\n                  20\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  60,\n                  100\n                ],\n                [\n                  60,\n                  60\n                ],\n                [\n                  100,\n                  60\n                ],\n                [\n                  100,\n                  100\n                ],\n                [\n                  60,\n                  100\n                ]\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": true,\n        \"overlaps\": false,\n        \"de9im\": \"212F01FF2\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((0 0, 0 120, 120 120, 120 0, 0 0))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  0,\n                  0\n                ],\n                [\n                  0,\n                  120\n                ],\n                [\n                  120,\n                  120\n                ],\n                [\n                  120,\n                  0\n                ],\n                [\n                  0,\n                  0\n                ]\n              ]\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"MULTIPOLYGON (((60 20, 0 20, 60 60, 60 20)),((60 60, 60 100, 100 100, 100 60, 60 60)))\",\n          \"geometry\": {\n            \"type\": \"MultiPolygon\",\n            \"coordinates\": [\n              [\n                [\n                  [\n                    60,\n                    20\n                  ],\n                  [\n                    0,\n                    20\n                  ],\n                  [\n                    60,\n                    60\n                  ],\n                  [\n                    60,\n                    20\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    60,\n                    60\n                  ],\n                  [\n                    60,\n                    100\n                  ],\n                  [\n                    100,\n                    100\n                  ],\n                  [\n                    100,\n                    60\n                  ],\n                  [\n                    60,\n                    60\n                  ]\n                ]\n              ]\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"POLYGON ((0 20, 0 120, 120 120, 120 0, 0 0, 0 20))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  0,\n                  20\n                ],\n                [\n                  0,\n                  120\n                ],\n                [\n                  120,\n                  120\n                ],\n                [\n                  120,\n                  0\n                ],\n                [\n                  0,\n                  0\n                ],\n                [\n                  0,\n                  20\n                ]\n              ]\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"POLYGON ((0 20, 0 120, 120 120, 120 0, 0 0, 0 20),(0 20, 60 20, 60 60, 0 20),(60 60, 100 60, 100 100, 60 100, 60 60))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  0,\n                  20\n                ],\n                [\n                  0,\n                  120\n                ],\n                [\n                  120,\n                  120\n                ],\n                [\n                  120,\n                  0\n                ],\n                [\n                  0,\n                  0\n                ],\n                [\n                  0,\n                  20\n                ]\n              ],\n              [\n                [\n                  0,\n                  20\n                ],\n                [\n                  60,\n                  20\n                ],\n                [\n                  60,\n                  60\n                ],\n                [\n                  0,\n                  20\n                ]\n              ],\n              [\n                [\n                  60,\n                  60\n                ],\n                [\n                  100,\n                  60\n                ],\n                [\n                  100,\n                  100\n                ],\n                [\n                  60,\n                  100\n                ],\n                [\n                  60,\n                  60\n                ]\n              ]\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"POLYGON ((0 20, 0 120, 120 120, 120 0, 0 0, 0 20),(0 20, 60 20, 60 60, 0 20),(60 60, 100 60, 100 100, 60 100, 60 60))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  0,\n                  20\n                ],\n                [\n                  0,\n                  120\n                ],\n                [\n                  120,\n                  120\n                ],\n                [\n                  120,\n                  0\n                ],\n                [\n                  0,\n                  0\n                ],\n                [\n                  0,\n                  20\n                ]\n              ],\n              [\n                [\n                  0,\n                  20\n                ],\n                [\n                  60,\n                  20\n                ],\n                [\n                  60,\n                  60\n                ],\n                [\n                  0,\n                  20\n                ]\n              ],\n              [\n                [\n                  60,\n                  60\n                ],\n                [\n                  100,\n                  60\n                ],\n                [\n                  100,\n                  100\n                ],\n                [\n                  60,\n                  100\n                ],\n                [\n                  60,\n                  60\n                ]\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionAA\",\n      \"category\": \"function\",\n      \"title\": \"AA - simple polygons with holes\",\n      \"id\": \"14-009\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((160 330, 60 260, 20 150, 60 40, 190 20, 270 130, 260 250, 160 330),(140 240, 80 190, 90 100, 160 70, 210 130, 210 210, 140 240))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                160,\n                330\n              ],\n              [\n                60,\n                260\n              ],\n              [\n                20,\n                150\n              ],\n              [\n                60,\n                40\n              ],\n              [\n                190,\n                20\n              ],\n              [\n                270,\n                130\n              ],\n              [\n                260,\n                250\n              ],\n              [\n                160,\n                330\n              ]\n            ],\n            [\n              [\n                140,\n                240\n              ],\n              [\n                80,\n                190\n              ],\n              [\n                90,\n                100\n              ],\n              [\n                160,\n                70\n              ],\n              [\n                210,\n                130\n              ],\n              [\n                210,\n                210\n              ],\n              [\n                140,\n                240\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((300 330, 190 270, 150 170, 150 110, 250 30, 380 50, 380 250, 300 330),(290 240, 240 200, 240 110, 290 80, 330 170, 290 240))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                300,\n                330\n              ],\n              [\n                190,\n                270\n              ],\n              [\n                150,\n                170\n              ],\n              [\n                150,\n                110\n              ],\n              [\n                250,\n                30\n              ],\n              [\n                380,\n                50\n              ],\n              [\n                380,\n                250\n              ],\n              [\n                300,\n                330\n              ]\n            ],\n            [\n              [\n                290,\n                240\n              ],\n              [\n                240,\n                200\n              ],\n              [\n                240,\n                110\n              ],\n              [\n                290,\n                80\n              ],\n              [\n                330,\n                170\n              ],\n              [\n                290,\n                240\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"212101212\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((190 20, 60 40, 20 150, 60 260, 160 330, 260 250, 270 130, 190 20))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  190,\n                  20\n                ],\n                [\n                  60,\n                  40\n                ],\n                [\n                  20,\n                  150\n                ],\n                [\n                  60,\n                  260\n                ],\n                [\n                  160,\n                  330\n                ],\n                [\n                  260,\n                  250\n                ],\n                [\n                  270,\n                  130\n                ],\n                [\n                  190,\n                  20\n                ]\n              ]\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"POLYGON ((250.7594936708861 103.54430379746836, 216.66666666666666 56.666666666666664, 176 89.2, 210 130, 210 210, 172.4390243902439 226.09756097560975, 190 270, 216.75675675675674 284.5945945945946, 260 250, 262.65625 218.125, 240 200, 240 110, 250.7594936708861 103.54430379746836))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  250.7594936708861,\n                  103.54430379746836\n                ],\n                [\n                  216.66666666666666,\n                  56.666666666666664\n                ],\n                [\n                  176,\n                  89.2\n                ],\n                [\n                  210,\n                  130\n                ],\n                [\n                  210,\n                  210\n                ],\n                [\n                  172.4390243902439,\n                  226.09756097560975\n                ],\n                [\n                  190,\n                  270\n                ],\n                [\n                  216.75675675675674,\n                  284.5945945945946\n                ],\n                [\n                  260,\n                  250\n                ],\n                [\n                  262.65625,\n                  218.125\n                ],\n                [\n                  240,\n                  200\n                ],\n                [\n                  240,\n                  110\n                ],\n                [\n                  250.7594936708861,\n                  103.54430379746836\n                ]\n              ]\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"POLYGON ((216.66666666666666 56.666666666666664, 190 20, 60 40, 20 150, 60 260, 160 330, 216.75675675675674 284.5945945945946, 300 330, 380 250, 380 50, 250 30, 216.66666666666666 56.666666666666664),(262.65625 218.125, 270 130, 250.7594936708861 103.54430379746836, 290 80, 330 170, 290 240, 262.65625 218.125),(140 240, 80 190, 90 100, 160 70, 176 89.2, 150 110, 150 170, 172.4390243902439 226.09756097560975, 140 240))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  216.66666666666666,\n                  56.666666666666664\n                ],\n                [\n                  190,\n                  20\n                ],\n                [\n                  60,\n                  40\n                ],\n                [\n                  20,\n                  150\n                ],\n                [\n                  60,\n                  260\n                ],\n                [\n                  160,\n                  330\n                ],\n                [\n                  216.75675675675674,\n                  284.5945945945946\n                ],\n                [\n                  300,\n                  330\n                ],\n                [\n                  380,\n                  250\n                ],\n                [\n                  380,\n                  50\n                ],\n                [\n                  250,\n                  30\n                ],\n                [\n                  216.66666666666666,\n                  56.666666666666664\n                ]\n              ],\n              [\n                [\n                  262.65625,\n                  218.125\n                ],\n                [\n                  270,\n                  130\n                ],\n                [\n                  250.7594936708861,\n                  103.54430379746836\n                ],\n                [\n                  290,\n                  80\n                ],\n                [\n                  330,\n                  170\n                ],\n                [\n                  290,\n                  240\n                ],\n                [\n                  262.65625,\n                  218.125\n                ]\n              ],\n              [\n                [\n                  140,\n                  240\n                ],\n                [\n                  80,\n                  190\n                ],\n                [\n                  90,\n                  100\n                ],\n                [\n                  160,\n                  70\n                ],\n                [\n                  176,\n                  89.2\n                ],\n                [\n                  150,\n                  110\n                ],\n                [\n                  150,\n                  170\n                ],\n                [\n                  172.4390243902439,\n                  226.09756097560975\n                ],\n                [\n                  140,\n                  240\n                ]\n              ]\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"MULTIPOLYGON (((216.66666666666666 56.666666666666664, 190 20, 60 40, 20 150, 60 260, 160 330, 216.75675675675674 284.5945945945946, 190 270, 172.4390243902439 226.09756097560975, 140 240, 80 190, 90 100, 160 70, 176 89.2, 216.66666666666666 56.666666666666664)),((262.65625 218.125, 270 130, 250.7594936708861 103.54430379746836, 240 110, 240 200, 262.65625 218.125)))\",\n          \"geometry\": {\n            \"type\": \"MultiPolygon\",\n            \"coordinates\": [\n              [\n                [\n                  [\n                    216.66666666666666,\n                    56.666666666666664\n                  ],\n                  [\n                    190,\n                    20\n                  ],\n                  [\n                    60,\n                    40\n                  ],\n                  [\n                    20,\n                    150\n                  ],\n                  [\n                    60,\n                    260\n                  ],\n                  [\n                    160,\n                    330\n                  ],\n                  [\n                    216.75675675675674,\n                    284.5945945945946\n                  ],\n                  [\n                    190,\n                    270\n                  ],\n                  [\n                    172.4390243902439,\n                    226.09756097560975\n                  ],\n                  [\n                    140,\n                    240\n                  ],\n                  [\n                    80,\n                    190\n                  ],\n                  [\n                    90,\n                    100\n                  ],\n                  [\n                    160,\n                    70\n                  ],\n                  [\n                    176,\n                    89.2\n                  ],\n                  [\n                    216.66666666666666,\n                    56.666666666666664\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    262.65625,\n                    218.125\n                  ],\n                  [\n                    270,\n                    130\n                  ],\n                  [\n                    250.7594936708861,\n                    103.54430379746836\n                  ],\n                  [\n                    240,\n                    110\n                  ],\n                  [\n                    240,\n                    200\n                  ],\n                  [\n                    262.65625,\n                    218.125\n                  ]\n                ]\n              ]\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"MULTIPOLYGON (((216.66666666666666 56.666666666666664, 190 20, 60 40, 20 150, 60 260, 160 330, 216.75675675675674 284.5945945945946, 190 270, 172.4390243902439 226.09756097560975, 140 240, 80 190, 90 100, 160 70, 176 89.2, 216.66666666666666 56.666666666666664)),((216.66666666666666 56.666666666666664, 250.7594936708861 103.54430379746836, 290 80, 330 170, 290 240, 262.65625 218.125, 260 250, 216.75675675675674 284.5945945945946, 300 330, 380 250, 380 50, 250 30, 216.66666666666666 56.666666666666664)),((262.65625 218.125, 270 130, 250.7594936708861 103.54430379746836, 240 110, 240 200, 262.65625 218.125)),((172.4390243902439 226.09756097560975, 210 210, 210 130, 176 89.2, 150 110, 150 170, 172.4390243902439 226.09756097560975)))\",\n          \"geometry\": {\n            \"type\": \"MultiPolygon\",\n            \"coordinates\": [\n              [\n                [\n                  [\n                    216.66666666666666,\n                    56.666666666666664\n                  ],\n                  [\n                    190,\n                    20\n                  ],\n                  [\n                    60,\n                    40\n                  ],\n                  [\n                    20,\n                    150\n                  ],\n                  [\n                    60,\n                    260\n                  ],\n                  [\n                    160,\n                    330\n                  ],\n                  [\n                    216.75675675675674,\n                    284.5945945945946\n                  ],\n                  [\n                    190,\n                    270\n                  ],\n                  [\n                    172.4390243902439,\n                    226.09756097560975\n                  ],\n                  [\n                    140,\n                    240\n                  ],\n                  [\n                    80,\n                    190\n                  ],\n                  [\n                    90,\n                    100\n                  ],\n                  [\n                    160,\n                    70\n                  ],\n                  [\n                    176,\n                    89.2\n                  ],\n                  [\n                    216.66666666666666,\n                    56.666666666666664\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    216.66666666666666,\n                    56.666666666666664\n                  ],\n                  [\n                    250.7594936708861,\n                    103.54430379746836\n                  ],\n                  [\n                    290,\n                    80\n                  ],\n                  [\n                    330,\n                    170\n                  ],\n                  [\n                    290,\n                    240\n                  ],\n                  [\n                    262.65625,\n                    218.125\n                  ],\n                  [\n                    260,\n                    250\n                  ],\n                  [\n                    216.75675675675674,\n                    284.5945945945946\n                  ],\n                  [\n                    300,\n                    330\n                  ],\n                  [\n                    380,\n                    250\n                  ],\n                  [\n                    380,\n                    50\n                  ],\n                  [\n                    250,\n                    30\n                  ],\n                  [\n                    216.66666666666666,\n                    56.666666666666664\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    262.65625,\n                    218.125\n                  ],\n                  [\n                    270,\n                    130\n                  ],\n                  [\n                    250.7594936708861,\n                    103.54430379746836\n                  ],\n                  [\n                    240,\n                    110\n                  ],\n                  [\n                    240,\n                    200\n                  ],\n                  [\n                    262.65625,\n                    218.125\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    172.4390243902439,\n                    226.09756097560975\n                  ],\n                  [\n                    210,\n                    210\n                  ],\n                  [\n                    210,\n                    130\n                  ],\n                  [\n                    176,\n                    89.2\n                  ],\n                  [\n                    150,\n                    110\n                  ],\n                  [\n                    150,\n                    170\n                  ],\n                  [\n                    172.4390243902439,\n                    226.09756097560975\n                  ]\n                ]\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionAA\",\n      \"category\": \"function\",\n      \"title\": \"mAmA - complex polygons touching and overlapping\",\n      \"id\": \"14-010\",\n      \"a\": {\n        \"wkt\": \"MULTIPOLYGON (((120 340, 120 200, 140 200, 140 280, 160 280, 160 200, 180 200, 180 280, 200 280, 200 200, 220 200, 220 340, 120 340)),((360 200, 220 200, 220 180, 300 180, 300 160, 220 160, 220 140, 300 140, 300 120, 220 120, 220 100, 360 100, 360 200)))\",\n        \"geometry\": {\n          \"type\": \"MultiPolygon\",\n          \"coordinates\": [\n            [\n              [\n                [\n                  120,\n                  340\n                ],\n                [\n                  120,\n                  200\n                ],\n                [\n                  140,\n                  200\n                ],\n                [\n                  140,\n                  280\n                ],\n                [\n                  160,\n                  280\n                ],\n                [\n                  160,\n                  200\n                ],\n                [\n                  180,\n                  200\n                ],\n                [\n                  180,\n                  280\n                ],\n                [\n                  200,\n                  280\n                ],\n                [\n                  200,\n                  200\n                ],\n                [\n                  220,\n                  200\n                ],\n                [\n                  220,\n                  340\n                ],\n                [\n                  120,\n                  340\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  360,\n                  200\n                ],\n                [\n                  220,\n                  200\n                ],\n                [\n                  220,\n                  180\n                ],\n                [\n                  300,\n                  180\n                ],\n                [\n                  300,\n                  160\n                ],\n                [\n                  220,\n                  160\n                ],\n                [\n                  220,\n                  140\n                ],\n                [\n                  300,\n                  140\n                ],\n                [\n                  300,\n                  120\n                ],\n                [\n                  220,\n                  120\n                ],\n                [\n                  220,\n                  100\n                ],\n                [\n                  360,\n                  100\n                ],\n                [\n                  360,\n                  200\n                ]\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTIPOLYGON (((100 220, 100 200, 300 200, 300 220, 100 220)),((280 180, 280 160, 300 160, 300 180, 280 180)),((220 140, 220 120, 240 120, 240 140, 220 140)),((180 220, 160 240, 200 240, 180 220)))\",\n        \"geometry\": {\n          \"type\": \"MultiPolygon\",\n          \"coordinates\": [\n            [\n              [\n                [\n                  100,\n                  220\n                ],\n                [\n                  100,\n                  200\n                ],\n                [\n                  300,\n                  200\n                ],\n                [\n                  300,\n                  220\n                ],\n                [\n                  100,\n                  220\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  280,\n                  180\n                ],\n                [\n                  280,\n                  160\n                ],\n                [\n                  300,\n                  160\n                ],\n                [\n                  300,\n                  180\n                ],\n                [\n                  280,\n                  180\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  220,\n                  140\n                ],\n                [\n                  220,\n                  120\n                ],\n                [\n                  240,\n                  120\n                ],\n                [\n                  240,\n                  140\n                ],\n                [\n                  220,\n                  140\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  180,\n                  220\n                ],\n                [\n                  160,\n                  240\n                ],\n                [\n                  200,\n                  240\n                ],\n                [\n                  180,\n                  220\n                ]\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"212111212\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((220 100, 120 200, 120 340, 220 340, 360 200, 360 100, 220 100))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  220,\n                  100\n                ],\n                [\n                  120,\n                  200\n                ],\n                [\n                  120,\n                  340\n                ],\n                [\n                  220,\n                  340\n                ],\n                [\n                  360,\n                  200\n                ],\n                [\n                  360,\n                  100\n                ],\n                [\n                  220,\n                  100\n                ]\n              ]\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"GEOMETRYCOLLECTION (POINT (200 240), LINESTRING (300 200, 220 200), LINESTRING (280 180, 300 180), LINESTRING (300 180, 300 160), LINESTRING (300 160, 280 160), LINESTRING (220 140, 240 140), LINESTRING (240 120, 220 120), POLYGON ((120 200, 120 220, 140 220, 140 200, 120 200)), POLYGON ((160 200, 160 220, 180 220, 180 200, 160 200)), POLYGON ((180 240, 180 220, 160 240, 180 240)), POLYGON ((200 200, 200 220, 220 220, 220 200, 200 200)))\",\n          \"geometry\": {\n            \"type\": \"GeometryCollection\",\n            \"geometries\": [\n              {\n                \"type\": \"Point\",\n                \"coordinates\": [\n                  200,\n                  240\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    300,\n                    200\n                  ],\n                  [\n                    220,\n                    200\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    280,\n                    180\n                  ],\n                  [\n                    300,\n                    180\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    300,\n                    180\n                  ],\n                  [\n                    300,\n                    160\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    300,\n                    160\n                  ],\n                  [\n                    280,\n                    160\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    220,\n                    140\n                  ],\n                  [\n                    240,\n                    140\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    240,\n                    120\n                  ],\n                  [\n                    220,\n                    120\n                  ]\n                ]\n              },\n              {\n                \"type\": \"Polygon\",\n                \"coordinates\": [\n                  [\n                    [\n                      120,\n                      200\n                    ],\n                    [\n                      120,\n                      220\n                    ],\n                    [\n                      140,\n                      220\n                    ],\n                    [\n                      140,\n                      200\n                    ],\n                    [\n                      120,\n                      200\n                    ]\n                  ]\n                ]\n              },\n              {\n                \"type\": \"Polygon\",\n                \"coordinates\": [\n                  [\n                    [\n                      160,\n                      200\n                    ],\n                    [\n                      160,\n                      220\n                    ],\n                    [\n                      180,\n                      220\n                    ],\n                    [\n                      180,\n                      200\n                    ],\n                    [\n                      160,\n                      200\n                    ]\n                  ]\n                ]\n              },\n              {\n                \"type\": \"Polygon\",\n                \"coordinates\": [\n                  [\n                    [\n                      180,\n                      240\n                    ],\n                    [\n                      180,\n                      220\n                    ],\n                    [\n                      160,\n                      240\n                    ],\n                    [\n                      180,\n                      240\n                    ]\n                  ]\n                ]\n              },\n              {\n                \"type\": \"Polygon\",\n                \"coordinates\": [\n                  [\n                    [\n                      200,\n                      200\n                    ],\n                    [\n                      200,\n                      220\n                    ],\n                    [\n                      220,\n                      220\n                    ],\n                    [\n                      220,\n                      200\n                    ],\n                    [\n                      200,\n                      200\n                    ]\n                  ]\n                ]\n              }\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"POLYGON ((120 220, 120 340, 220 340, 220 220, 300 220, 300 200, 360 200, 360 100, 220 100, 220 120, 220 140, 220 160, 280 160, 280 180, 220 180, 220 200, 200 200, 180 200, 160 200, 140 200, 120 200, 100 200, 100 220, 120 220),(200 240, 200 280, 180 280, 180 240, 200 240),(200 240, 180 220, 200 220, 200 240),(160 240, 160 280, 140 280, 140 220, 160 220, 160 240),(240 120, 300 120, 300 140, 240 140, 240 120))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  120,\n                  220\n                ],\n                [\n                  120,\n                  340\n                ],\n                [\n                  220,\n                  340\n                ],\n                [\n                  220,\n                  220\n                ],\n                [\n                  300,\n                  220\n                ],\n                [\n                  300,\n                  200\n                ],\n                [\n                  360,\n                  200\n                ],\n                [\n                  360,\n                  100\n                ],\n                [\n                  220,\n                  100\n                ],\n                [\n                  220,\n                  120\n                ],\n                [\n                  220,\n                  140\n                ],\n                [\n                  220,\n                  160\n                ],\n                [\n                  280,\n                  160\n                ],\n                [\n                  280,\n                  180\n                ],\n                [\n                  220,\n                  180\n                ],\n                [\n                  220,\n                  200\n                ],\n                [\n                  200,\n                  200\n                ],\n                [\n                  180,\n                  200\n                ],\n                [\n                  160,\n                  200\n                ],\n                [\n                  140,\n                  200\n                ],\n                [\n                  120,\n                  200\n                ],\n                [\n                  100,\n                  200\n                ],\n                [\n                  100,\n                  220\n                ],\n                [\n                  120,\n                  220\n                ]\n              ],\n              [\n                [\n                  200,\n                  240\n                ],\n                [\n                  200,\n                  280\n                ],\n                [\n                  180,\n                  280\n                ],\n                [\n                  180,\n                  240\n                ],\n                [\n                  200,\n                  240\n                ]\n              ],\n              [\n                [\n                  200,\n                  240\n                ],\n                [\n                  180,\n                  220\n                ],\n                [\n                  200,\n                  220\n                ],\n                [\n                  200,\n                  240\n                ]\n              ],\n              [\n                [\n                  160,\n                  240\n                ],\n                [\n                  160,\n                  280\n                ],\n                [\n                  140,\n                  280\n                ],\n                [\n                  140,\n                  220\n                ],\n                [\n                  160,\n                  220\n                ],\n                [\n                  160,\n                  240\n                ]\n              ],\n              [\n                [\n                  240,\n                  120\n                ],\n                [\n                  300,\n                  120\n                ],\n                [\n                  300,\n                  140\n                ],\n                [\n                  240,\n                  140\n                ],\n                [\n                  240,\n                  120\n                ]\n              ]\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"MULTIPOLYGON (((120 220, 120 340, 220 340, 220 220, 200 220, 200 240, 200 280, 180 280, 180 240, 160 240, 160 280, 140 280, 140 220, 120 220)),((160 220, 160 240, 180 220, 160 220)),((300 200, 360 200, 360 100, 220 100, 220 120, 240 120, 300 120, 300 140, 240 140, 220 140, 220 160, 280 160, 300 160, 300 180, 280 180, 220 180, 220 200, 300 200)))\",\n          \"geometry\": {\n            \"type\": \"MultiPolygon\",\n            \"coordinates\": [\n              [\n                [\n                  [\n                    120,\n                    220\n                  ],\n                  [\n                    120,\n                    340\n                  ],\n                  [\n                    220,\n                    340\n                  ],\n                  [\n                    220,\n                    220\n                  ],\n                  [\n                    200,\n                    220\n                  ],\n                  [\n                    200,\n                    240\n                  ],\n                  [\n                    200,\n                    280\n                  ],\n                  [\n                    180,\n                    280\n                  ],\n                  [\n                    180,\n                    240\n                  ],\n                  [\n                    160,\n                    240\n                  ],\n                  [\n                    160,\n                    280\n                  ],\n                  [\n                    140,\n                    280\n                  ],\n                  [\n                    140,\n                    220\n                  ],\n                  [\n                    120,\n                    220\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    160,\n                    220\n                  ],\n                  [\n                    160,\n                    240\n                  ],\n                  [\n                    180,\n                    220\n                  ],\n                  [\n                    160,\n                    220\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    300,\n                    200\n                  ],\n                  [\n                    360,\n                    200\n                  ],\n                  [\n                    360,\n                    100\n                  ],\n                  [\n                    220,\n                    100\n                  ],\n                  [\n                    220,\n                    120\n                  ],\n                  [\n                    240,\n                    120\n                  ],\n                  [\n                    300,\n                    120\n                  ],\n                  [\n                    300,\n                    140\n                  ],\n                  [\n                    240,\n                    140\n                  ],\n                  [\n                    220,\n                    140\n                  ],\n                  [\n                    220,\n                    160\n                  ],\n                  [\n                    280,\n                    160\n                  ],\n                  [\n                    300,\n                    160\n                  ],\n                  [\n                    300,\n                    180\n                  ],\n                  [\n                    280,\n                    180\n                  ],\n                  [\n                    220,\n                    180\n                  ],\n                  [\n                    220,\n                    200\n                  ],\n                  [\n                    300,\n                    200\n                  ]\n                ]\n              ]\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"MULTIPOLYGON (((120 220, 120 340, 220 340, 220 220, 200 220, 200 240, 200 280, 180 280, 180 240, 160 240, 160 280, 140 280, 140 220, 120 220)),((120 220, 120 200, 100 200, 100 220, 120 220)),((140 200, 140 220, 160 220, 160 200, 140 200)),((160 220, 160 240, 180 220, 160 220)),((180 200, 180 220, 200 220, 200 200, 180 200)),((180 220, 180 240, 200 240, 180 220)),((220 200, 220 220, 300 220, 300 200, 360 200, 360 100, 220 100, 220 120, 220 140, 220 160, 280 160, 280 180, 220 180, 220 200),(240 120, 300 120, 300 140, 240 140, 240 120)))\",\n          \"geometry\": {\n            \"type\": \"MultiPolygon\",\n            \"coordinates\": [\n              [\n                [\n                  [\n                    120,\n                    220\n                  ],\n                  [\n                    120,\n                    340\n                  ],\n                  [\n                    220,\n                    340\n                  ],\n                  [\n                    220,\n                    220\n                  ],\n                  [\n                    200,\n                    220\n                  ],\n                  [\n                    200,\n                    240\n                  ],\n                  [\n                    200,\n                    280\n                  ],\n                  [\n                    180,\n                    280\n                  ],\n                  [\n                    180,\n                    240\n                  ],\n                  [\n                    160,\n                    240\n                  ],\n                  [\n                    160,\n                    280\n                  ],\n                  [\n                    140,\n                    280\n                  ],\n                  [\n                    140,\n                    220\n                  ],\n                  [\n                    120,\n                    220\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    120,\n                    220\n                  ],\n                  [\n                    120,\n                    200\n                  ],\n                  [\n                    100,\n                    200\n                  ],\n                  [\n                    100,\n                    220\n                  ],\n                  [\n                    120,\n                    220\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    140,\n                    200\n                  ],\n                  [\n                    140,\n                    220\n                  ],\n                  [\n                    160,\n                    220\n                  ],\n                  [\n                    160,\n                    200\n                  ],\n                  [\n                    140,\n                    200\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    160,\n                    220\n                  ],\n                  [\n                    160,\n                    240\n                  ],\n                  [\n                    180,\n                    220\n                  ],\n                  [\n                    160,\n                    220\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    180,\n                    200\n                  ],\n                  [\n                    180,\n                    220\n                  ],\n                  [\n                    200,\n                    220\n                  ],\n                  [\n                    200,\n                    200\n                  ],\n                  [\n                    180,\n                    200\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    180,\n                    220\n                  ],\n                  [\n                    180,\n                    240\n                  ],\n                  [\n                    200,\n                    240\n                  ],\n                  [\n                    180,\n                    220\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    220,\n                    200\n                  ],\n                  [\n                    220,\n                    220\n                  ],\n                  [\n                    300,\n                    220\n                  ],\n                  [\n                    300,\n                    200\n                  ],\n                  [\n                    360,\n                    200\n                  ],\n                  [\n                    360,\n                    100\n                  ],\n                  [\n                    220,\n                    100\n                  ],\n                  [\n                    220,\n                    120\n                  ],\n                  [\n                    220,\n                    140\n                  ],\n                  [\n                    220,\n                    160\n                  ],\n                  [\n                    280,\n                    160\n                  ],\n                  [\n                    280,\n                    180\n                  ],\n                  [\n                    220,\n                    180\n                  ],\n                  [\n                    220,\n                    200\n                  ]\n                ],\n                [\n                  [\n                    240,\n                    120\n                  ],\n                  [\n                    300,\n                    120\n                  ],\n                  [\n                    300,\n                    140\n                  ],\n                  [\n                    240,\n                    140\n                  ],\n                  [\n                    240,\n                    120\n                  ]\n                ]\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionAA\",\n      \"category\": \"function\",\n      \"title\": \"mAmA - complex polygons touching\",\n      \"id\": \"14-011\",\n      \"a\": {\n        \"wkt\": \"MULTIPOLYGON (((100 200, 100 180, 120 180, 120 200, 100 200)),((60 240, 60 140, 220 140, 220 160, 160 160, 160 180, 200 180, 200 200, 160 200, 160 220, 220 220, 220 240, 60 240),(80 220, 80 160, 140 160, 140 220, 80 220)),((280 220, 240 180, 260 160, 300 200, 280 220)))\",\n        \"geometry\": {\n          \"type\": \"MultiPolygon\",\n          \"coordinates\": [\n            [\n              [\n                [\n                  100,\n                  200\n                ],\n                [\n                  100,\n                  180\n                ],\n                [\n                  120,\n                  180\n                ],\n                [\n                  120,\n                  200\n                ],\n                [\n                  100,\n                  200\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  60,\n                  240\n                ],\n                [\n                  60,\n                  140\n                ],\n                [\n                  220,\n                  140\n                ],\n                [\n                  220,\n                  160\n                ],\n                [\n                  160,\n                  160\n                ],\n                [\n                  160,\n                  180\n                ],\n                [\n                  200,\n                  180\n                ],\n                [\n                  200,\n                  200\n                ],\n                [\n                  160,\n                  200\n                ],\n                [\n                  160,\n                  220\n                ],\n                [\n                  220,\n                  220\n                ],\n                [\n                  220,\n                  240\n                ],\n                [\n                  60,\n                  240\n                ]\n              ],\n              [\n                [\n                  80,\n                  220\n                ],\n                [\n                  80,\n                  160\n                ],\n                [\n                  140,\n                  160\n                ],\n                [\n                  140,\n                  220\n                ],\n                [\n                  80,\n                  220\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  280,\n                  220\n                ],\n                [\n                  240,\n                  180\n                ],\n                [\n                  260,\n                  160\n                ],\n                [\n                  300,\n                  200\n                ],\n                [\n                  280,\n                  220\n                ]\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"MULTIPOLYGON (((80 220, 80 160, 140 160, 140 220, 80 220),(100 200, 100 180, 120 180, 120 200, 100 200)),((220 240, 220 220, 160 220, 160 200, 220 200, 220 180, 160 180, 160 160, 220 160, 220 140, 320 140, 320 240, 220 240),(240 220, 240 160, 300 160, 300 220, 240 220)))\",\n        \"geometry\": {\n          \"type\": \"MultiPolygon\",\n          \"coordinates\": [\n            [\n              [\n                [\n                  80,\n                  220\n                ],\n                [\n                  80,\n                  160\n                ],\n                [\n                  140,\n                  160\n                ],\n                [\n                  140,\n                  220\n                ],\n                [\n                  80,\n                  220\n                ]\n              ],\n              [\n                [\n                  100,\n                  200\n                ],\n                [\n                  100,\n                  180\n                ],\n                [\n                  120,\n                  180\n                ],\n                [\n                  120,\n                  200\n                ],\n                [\n                  100,\n                  200\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  220,\n                  240\n                ],\n                [\n                  220,\n                  220\n                ],\n                [\n                  160,\n                  220\n                ],\n                [\n                  160,\n                  200\n                ],\n                [\n                  220,\n                  200\n                ],\n                [\n                  220,\n                  180\n                ],\n                [\n                  160,\n                  180\n                ],\n                [\n                  160,\n                  160\n                ],\n                [\n                  220,\n                  160\n                ],\n                [\n                  220,\n                  140\n                ],\n                [\n                  320,\n                  140\n                ],\n                [\n                  320,\n                  240\n                ],\n                [\n                  220,\n                  240\n                ]\n              ],\n              [\n                [\n                  240,\n                  220\n                ],\n                [\n                  240,\n                  160\n                ],\n                [\n                  300,\n                  160\n                ],\n                [\n                  300,\n                  220\n                ],\n                [\n                  240,\n                  220\n                ]\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": true,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF2F11212\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((60 140, 60 240, 220 240, 280 220, 300 200, 260 160, 220 140, 60 140))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  60,\n                  140\n                ],\n                [\n                  60,\n                  240\n                ],\n                [\n                  220,\n                  240\n                ],\n                [\n                  280,\n                  220\n                ],\n                [\n                  300,\n                  200\n                ],\n                [\n                  260,\n                  160\n                ],\n                [\n                  220,\n                  140\n                ],\n                [\n                  60,\n                  140\n                ]\n              ]\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"GEOMETRYCOLLECTION (POINT (240 180), POINT (260 160), POINT (280 220), POINT (300 200), LINESTRING (100 200, 100 180), LINESTRING (100 180, 120 180), LINESTRING (120 180, 120 200), LINESTRING (120 200, 100 200), LINESTRING (220 140, 220 160), LINESTRING (220 160, 160 160), LINESTRING (160 160, 160 180), LINESTRING (160 180, 200 180), LINESTRING (200 200, 160 200), LINESTRING (160 200, 160 220), LINESTRING (160 220, 220 220), LINESTRING (220 220, 220 240), LINESTRING (80 220, 80 160), LINESTRING (80 160, 140 160), LINESTRING (140 160, 140 220), LINESTRING (140 220, 80 220))\",\n          \"geometry\": {\n            \"type\": \"GeometryCollection\",\n            \"geometries\": [\n              {\n                \"type\": \"Point\",\n                \"coordinates\": [\n                  240,\n                  180\n                ]\n              },\n              {\n                \"type\": \"Point\",\n                \"coordinates\": [\n                  260,\n                  160\n                ]\n              },\n              {\n                \"type\": \"Point\",\n                \"coordinates\": [\n                  280,\n                  220\n                ]\n              },\n              {\n                \"type\": \"Point\",\n                \"coordinates\": [\n                  300,\n                  200\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    100,\n                    200\n                  ],\n                  [\n                    100,\n                    180\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    100,\n                    180\n                  ],\n                  [\n                    120,\n                    180\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    120,\n                    180\n                  ],\n                  [\n                    120,\n                    200\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    120,\n                    200\n                  ],\n                  [\n                    100,\n                    200\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    220,\n                    140\n                  ],\n                  [\n                    220,\n                    160\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    220,\n                    160\n                  ],\n                  [\n                    160,\n                    160\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    160,\n                    160\n                  ],\n                  [\n                    160,\n                    180\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    160,\n                    180\n                  ],\n                  [\n                    200,\n                    180\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    200,\n                    200\n                  ],\n                  [\n                    160,\n                    200\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    160,\n                    200\n                  ],\n                  [\n                    160,\n                    220\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    160,\n                    220\n                  ],\n                  [\n                    220,\n                    220\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    220,\n                    220\n                  ],\n                  [\n                    220,\n                    240\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    80,\n                    220\n                  ],\n                  [\n                    80,\n                    160\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    80,\n                    160\n                  ],\n                  [\n                    140,\n                    160\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    140,\n                    160\n                  ],\n                  [\n                    140,\n                    220\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    140,\n                    220\n                  ],\n                  [\n                    80,\n                    220\n                  ]\n                ]\n              }\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"MULTIPOLYGON (((220 140, 60 140, 60 240, 220 240, 320 240, 320 140, 220 140),(200 200, 200 180, 220 180, 220 200, 200 200),(240 220, 240 180, 240 160, 260 160, 300 160, 300 200, 300 220, 280 220, 240 220)),((240 180, 280 220, 300 200, 260 160, 240 180)))\",\n          \"geometry\": {\n            \"type\": \"MultiPolygon\",\n            \"coordinates\": [\n              [\n                [\n                  [\n                    220,\n                    140\n                  ],\n                  [\n                    60,\n                    140\n                  ],\n                  [\n                    60,\n                    240\n                  ],\n                  [\n                    220,\n                    240\n                  ],\n                  [\n                    320,\n                    240\n                  ],\n                  [\n                    320,\n                    140\n                  ],\n                  [\n                    220,\n                    140\n                  ]\n                ],\n                [\n                  [\n                    200,\n                    200\n                  ],\n                  [\n                    200,\n                    180\n                  ],\n                  [\n                    220,\n                    180\n                  ],\n                  [\n                    220,\n                    200\n                  ],\n                  [\n                    200,\n                    200\n                  ]\n                ],\n                [\n                  [\n                    240,\n                    220\n                  ],\n                  [\n                    240,\n                    180\n                  ],\n                  [\n                    240,\n                    160\n                  ],\n                  [\n                    260,\n                    160\n                  ],\n                  [\n                    300,\n                    160\n                  ],\n                  [\n                    300,\n                    200\n                  ],\n                  [\n                    300,\n                    220\n                  ],\n                  [\n                    280,\n                    220\n                  ],\n                  [\n                    240,\n                    220\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    240,\n                    180\n                  ],\n                  [\n                    280,\n                    220\n                  ],\n                  [\n                    300,\n                    200\n                  ],\n                  [\n                    260,\n                    160\n                  ],\n                  [\n                    240,\n                    180\n                  ]\n                ]\n              ]\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"MULTIPOLYGON (((100 180, 100 200, 120 200, 120 180, 100 180)),((220 140, 60 140, 60 240, 220 240, 220 220, 160 220, 160 200, 200 200, 200 180, 160 180, 160 160, 220 160, 220 140),(80 220, 80 160, 140 160, 140 220, 80 220)),((240 180, 280 220, 300 200, 260 160, 240 180)))\",\n          \"geometry\": {\n            \"type\": \"MultiPolygon\",\n            \"coordinates\": [\n              [\n                [\n                  [\n                    100,\n                    180\n                  ],\n                  [\n                    100,\n                    200\n                  ],\n                  [\n                    120,\n                    200\n                  ],\n                  [\n                    120,\n                    180\n                  ],\n                  [\n                    100,\n                    180\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    220,\n                    140\n                  ],\n                  [\n                    60,\n                    140\n                  ],\n                  [\n                    60,\n                    240\n                  ],\n                  [\n                    220,\n                    240\n                  ],\n                  [\n                    220,\n                    220\n                  ],\n                  [\n                    160,\n                    220\n                  ],\n                  [\n                    160,\n                    200\n                  ],\n                  [\n                    200,\n                    200\n                  ],\n                  [\n                    200,\n                    180\n                  ],\n                  [\n                    160,\n                    180\n                  ],\n                  [\n                    160,\n                    160\n                  ],\n                  [\n                    220,\n                    160\n                  ],\n                  [\n                    220,\n                    140\n                  ]\n                ],\n                [\n                  [\n                    80,\n                    220\n                  ],\n                  [\n                    80,\n                    160\n                  ],\n                  [\n                    140,\n                    160\n                  ],\n                  [\n                    140,\n                    220\n                  ],\n                  [\n                    80,\n                    220\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    240,\n                    180\n                  ],\n                  [\n                    280,\n                    220\n                  ],\n                  [\n                    300,\n                    200\n                  ],\n                  [\n                    260,\n                    160\n                  ],\n                  [\n                    240,\n                    180\n                  ]\n                ]\n              ]\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"MULTIPOLYGON (((220 140, 60 140, 60 240, 220 240, 320 240, 320 140, 220 140),(200 200, 200 180, 220 180, 220 200, 200 200),(240 220, 240 180, 240 160, 260 160, 300 160, 300 200, 300 220, 280 220, 240 220)),((240 180, 280 220, 300 200, 260 160, 240 180)))\",\n          \"geometry\": {\n            \"type\": \"MultiPolygon\",\n            \"coordinates\": [\n              [\n                [\n                  [\n                    220,\n                    140\n                  ],\n                  [\n                    60,\n                    140\n                  ],\n                  [\n                    60,\n                    240\n                  ],\n                  [\n                    220,\n                    240\n                  ],\n                  [\n                    320,\n                    240\n                  ],\n                  [\n                    320,\n                    140\n                  ],\n                  [\n                    220,\n                    140\n                  ]\n                ],\n                [\n                  [\n                    200,\n                    200\n                  ],\n                  [\n                    200,\n                    180\n                  ],\n                  [\n                    220,\n                    180\n                  ],\n                  [\n                    220,\n                    200\n                  ],\n                  [\n                    200,\n                    200\n                  ]\n                ],\n                [\n                  [\n                    240,\n                    220\n                  ],\n                  [\n                    240,\n                    180\n                  ],\n                  [\n                    240,\n                    160\n                  ],\n                  [\n                    260,\n                    160\n                  ],\n                  [\n                    300,\n                    160\n                  ],\n                  [\n                    300,\n                    200\n                  ],\n                  [\n                    300,\n                    220\n                  ],\n                  [\n                    280,\n                    220\n                  ],\n                  [\n                    240,\n                    220\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    240,\n                    180\n                  ],\n                  [\n                    280,\n                    220\n                  ],\n                  [\n                    300,\n                    200\n                  ],\n                  [\n                    260,\n                    160\n                  ],\n                  [\n                    240,\n                    180\n                  ]\n                ]\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionAA\",\n      \"category\": \"function\",\n      \"title\": \"AA - hole intersecting boundary to produce line\",\n      \"id\": \"14-012\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((60 160, 140 160, 140 60, 60 60, 60 160))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                60,\n                160\n              ],\n              [\n                140,\n                160\n              ],\n              [\n                140,\n                60\n              ],\n              [\n                60,\n                60\n              ],\n              [\n                60,\n                160\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((160 160, 100 160, 100 100, 160 100, 160 160),(140 140, 120 140, 120 120, 140 120, 140 140))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                160,\n                160\n              ],\n              [\n                100,\n                160\n              ],\n              [\n                100,\n                100\n              ],\n              [\n                160,\n                100\n              ],\n              [\n                160,\n                160\n              ]\n            ],\n            [\n              [\n                140,\n                140\n              ],\n              [\n                120,\n                140\n              ],\n              [\n                120,\n                120\n              ],\n              [\n                140,\n                120\n              ],\n              [\n                140,\n                140\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"212111212\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((60 60, 60 160, 140 160, 140 60, 60 60))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  60,\n                  60\n                ],\n                [\n                  60,\n                  160\n                ],\n                [\n                  140,\n                  160\n                ],\n                [\n                  140,\n                  60\n                ],\n                [\n                  60,\n                  60\n                ]\n              ]\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"GEOMETRYCOLLECTION (LINESTRING (140 140, 140 120), POLYGON ((100 160, 140 160, 140 140, 120 140, 120 120, 140 120, 140 100, 100 100, 100 160)))\",\n          \"geometry\": {\n            \"type\": \"GeometryCollection\",\n            \"geometries\": [\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    140,\n                    140\n                  ],\n                  [\n                    140,\n                    120\n                  ]\n                ]\n              },\n              {\n                \"type\": \"Polygon\",\n                \"coordinates\": [\n                  [\n                    [\n                      100,\n                      160\n                    ],\n                    [\n                      140,\n                      160\n                    ],\n                    [\n                      140,\n                      140\n                    ],\n                    [\n                      120,\n                      140\n                    ],\n                    [\n                      120,\n                      120\n                    ],\n                    [\n                      140,\n                      120\n                    ],\n                    [\n                      140,\n                      100\n                    ],\n                    [\n                      100,\n                      100\n                    ],\n                    [\n                      100,\n                      160\n                    ]\n                  ]\n                ]\n              }\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"POLYGON ((60 160, 100 160, 140 160, 160 160, 160 100, 140 100, 140 60, 60 60, 60 160))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  60,\n                  160\n                ],\n                [\n                  100,\n                  160\n                ],\n                [\n                  140,\n                  160\n                ],\n                [\n                  160,\n                  160\n                ],\n                [\n                  160,\n                  100\n                ],\n                [\n                  140,\n                  100\n                ],\n                [\n                  140,\n                  60\n                ],\n                [\n                  60,\n                  60\n                ],\n                [\n                  60,\n                  160\n                ]\n              ]\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"MULTIPOLYGON (((60 160, 100 160, 100 100, 140 100, 140 60, 60 60, 60 160)),((140 140, 140 120, 120 120, 120 140, 140 140)))\",\n          \"geometry\": {\n            \"type\": \"MultiPolygon\",\n            \"coordinates\": [\n              [\n                [\n                  [\n                    60,\n                    160\n                  ],\n                  [\n                    100,\n                    160\n                  ],\n                  [\n                    100,\n                    100\n                  ],\n                  [\n                    140,\n                    100\n                  ],\n                  [\n                    140,\n                    60\n                  ],\n                  [\n                    60,\n                    60\n                  ],\n                  [\n                    60,\n                    160\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    140,\n                    140\n                  ],\n                  [\n                    140,\n                    120\n                  ],\n                  [\n                    120,\n                    120\n                  ],\n                  [\n                    120,\n                    140\n                  ],\n                  [\n                    140,\n                    140\n                  ]\n                ]\n              ]\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"MULTIPOLYGON (((60 160, 100 160, 100 100, 140 100, 140 60, 60 60, 60 160)),((140 140, 140 160, 160 160, 160 100, 140 100, 140 120, 120 120, 120 140, 140 140)))\",\n          \"geometry\": {\n            \"type\": \"MultiPolygon\",\n            \"coordinates\": [\n              [\n                [\n                  [\n                    60,\n                    160\n                  ],\n                  [\n                    100,\n                    160\n                  ],\n                  [\n                    100,\n                    100\n                  ],\n                  [\n                    140,\n                    100\n                  ],\n                  [\n                    140,\n                    60\n                  ],\n                  [\n                    60,\n                    60\n                  ],\n                  [\n                    60,\n                    160\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    140,\n                    140\n                  ],\n                  [\n                    140,\n                    160\n                  ],\n                  [\n                    160,\n                    160\n                  ],\n                  [\n                    160,\n                    100\n                  ],\n                  [\n                    140,\n                    100\n                  ],\n                  [\n                    140,\n                    120\n                  ],\n                  [\n                    120,\n                    120\n                  ],\n                  [\n                    120,\n                    140\n                  ],\n                  [\n                    140,\n                    140\n                  ]\n                ]\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionPLPrec\",\n      \"category\": \"function\",\n      \"title\": \"PP - Point just off line. Causes non-robust algorithms to fail.\",\n      \"id\": \"15-001\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (-123456789 -40, 381039468754763 123456789)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              -123456789,\n              -40\n            ],\n            [\n              381039468754763,\n              123456789\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POINT (0 0)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            0,\n            0\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": true,\n        \"intersects\": false,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"FF1FF00F2\"\n      },\n      \"functions\": {}\n    },\n    {\n      \"group\": \"TestFunctionLLPrec\",\n      \"category\": \"function\",\n      \"title\": \"LL - narrow V\",\n      \"id\": \"16-001\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (0 10, 620 10, 0 11)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              0,\n              10\n            ],\n            [\n              620,\n              10\n            ],\n            [\n              0,\n              11\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (400 60, 400 10)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              400,\n              60\n            ],\n            [\n              400,\n              10\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"001FF0102\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((0 10, 0 11, 620 10, 0 10))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  0,\n                  10\n                ],\n                [\n                  0,\n                  11\n                ],\n                [\n                  620,\n                  10\n                ],\n                [\n                  0,\n                  10\n                ]\n              ]\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"MULTIPOINT (400 10, 400 10.35483870967742)\",\n          \"geometry\": {\n            \"type\": \"MultiPoint\",\n            \"coordinates\": [\n              [\n                400,\n                10\n              ],\n              [\n                400,\n                10.35483870967742\n              ]\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"MULTILINESTRING ((0 10, 400 10),(400 10, 620 10, 400 10.35483870967742),(400 10.35483870967742, 0 11),(400 60, 400 10.35483870967742),(400 10.35483870967742, 400 10))\",\n          \"geometry\": {\n            \"type\": \"MultiLineString\",\n            \"coordinates\": [\n              [\n                [\n                  0,\n                  10\n                ],\n                [\n                  400,\n                  10\n                ]\n              ],\n              [\n                [\n                  400,\n                  10\n                ],\n                [\n                  620,\n                  10\n                ],\n                [\n                  400,\n                  10.35483870967742\n                ]\n              ],\n              [\n                [\n                  400,\n                  10.35483870967742\n                ],\n                [\n                  0,\n                  11\n                ]\n              ],\n              [\n                [\n                  400,\n                  60\n                ],\n                [\n                  400,\n                  10.35483870967742\n                ]\n              ],\n              [\n                [\n                  400,\n                  10.35483870967742\n                ],\n                [\n                  400,\n                  10\n                ]\n              ]\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"MULTILINESTRING ((0 10, 400 10),(400 10, 620 10, 400 10.35483870967742),(400 10.35483870967742, 0 11))\",\n          \"geometry\": {\n            \"type\": \"MultiLineString\",\n            \"coordinates\": [\n              [\n                [\n                  0,\n                  10\n                ],\n                [\n                  400,\n                  10\n                ]\n              ],\n              [\n                [\n                  400,\n                  10\n                ],\n                [\n                  620,\n                  10\n                ],\n                [\n                  400,\n                  10.35483870967742\n                ]\n              ],\n              [\n                [\n                  400,\n                  10.35483870967742\n                ],\n                [\n                  0,\n                  11\n                ]\n              ]\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"MULTILINESTRING ((0 10, 400 10),(400 10, 620 10, 400 10.35483870967742),(400 10.35483870967742, 0 11),(400 60, 400 10.35483870967742),(400 10.35483870967742, 400 10))\",\n          \"geometry\": {\n            \"type\": \"MultiLineString\",\n            \"coordinates\": [\n              [\n                [\n                  0,\n                  10\n                ],\n                [\n                  400,\n                  10\n                ]\n              ],\n              [\n                [\n                  400,\n                  10\n                ],\n                [\n                  620,\n                  10\n                ],\n                [\n                  400,\n                  10.35483870967742\n                ]\n              ],\n              [\n                [\n                  400,\n                  10.35483870967742\n                ],\n                [\n                  0,\n                  11\n                ]\n              ],\n              [\n                [\n                  400,\n                  60\n                ],\n                [\n                  400,\n                  10.35483870967742\n                ]\n              ],\n              [\n                [\n                  400,\n                  10.35483870967742\n                ],\n                [\n                  400,\n                  10\n                ]\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionLAPrec\",\n      \"category\": \"function\",\n      \"title\": \"LA - line and sliver intersecting, dimensional collapse\",\n      \"id\": \"17-001\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((95 9, 81 414, 87 414, 95 9))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                95,\n                9\n              ],\n              [\n                81,\n                414\n              ],\n              [\n                87,\n                414\n              ],\n              [\n                95,\n                9\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (93 13, 96 13)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              93,\n              13\n            ],\n            [\n              96,\n              13\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"1F20F1102\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((95 9, 81 414, 87 414, 95 9))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  95,\n                  9\n                ],\n                [\n                  81,\n                  414\n                ],\n                [\n                  87,\n                  414\n                ],\n                [\n                  95,\n                  9\n                ]\n              ]\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"LINESTRING (94.86172839506173 13, 94.92098765432098 13)\",\n          \"geometry\": {\n            \"type\": \"LineString\",\n            \"coordinates\": [\n              [\n                94.86172839506173,\n                13\n              ],\n              [\n                94.92098765432098,\n                13\n              ]\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"GEOMETRYCOLLECTION (LINESTRING (93 13, 94.86172839506173 13), LINESTRING (94.92098765432098 13, 96 13), POLYGON ((95 9, 94.86172839506173 13, 81 414, 87 414, 94.92098765432098 13, 95 9)))\",\n          \"geometry\": {\n            \"type\": \"GeometryCollection\",\n            \"geometries\": [\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    93,\n                    13\n                  ],\n                  [\n                    94.86172839506173,\n                    13\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    94.92098765432098,\n                    13\n                  ],\n                  [\n                    96,\n                    13\n                  ]\n                ]\n              },\n              {\n                \"type\": \"Polygon\",\n                \"coordinates\": [\n                  [\n                    [\n                      95,\n                      9\n                    ],\n                    [\n                      94.86172839506173,\n                      13\n                    ],\n                    [\n                      81,\n                      414\n                    ],\n                    [\n                      87,\n                      414\n                    ],\n                    [\n                      94.92098765432098,\n                      13\n                    ],\n                    [\n                      95,\n                      9\n                    ]\n                  ]\n                ]\n              }\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"POLYGON ((95 9, 94.86172839506173 13, 81 414, 87 414, 94.92098765432098 13, 95 9))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  95,\n                  9\n                ],\n                [\n                  94.86172839506173,\n                  13\n                ],\n                [\n                  81,\n                  414\n                ],\n                [\n                  87,\n                  414\n                ],\n                [\n                  94.92098765432098,\n                  13\n                ],\n                [\n                  95,\n                  9\n                ]\n              ]\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"GEOMETRYCOLLECTION (LINESTRING (93 13, 94.86172839506173 13), LINESTRING (94.92098765432098 13, 96 13), POLYGON ((95 9, 94.86172839506173 13, 81 414, 87 414, 94.92098765432098 13, 95 9)))\",\n          \"geometry\": {\n            \"type\": \"GeometryCollection\",\n            \"geometries\": [\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    93,\n                    13\n                  ],\n                  [\n                    94.86172839506173,\n                    13\n                  ]\n                ]\n              },\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    94.92098765432098,\n                    13\n                  ],\n                  [\n                    96,\n                    13\n                  ]\n                ]\n              },\n              {\n                \"type\": \"Polygon\",\n                \"coordinates\": [\n                  [\n                    [\n                      95,\n                      9\n                    ],\n                    [\n                      94.86172839506173,\n                      13\n                    ],\n                    [\n                      81,\n                      414\n                    ],\n                    [\n                      87,\n                      414\n                    ],\n                    [\n                      94.92098765432098,\n                      13\n                    ],\n                    [\n                      95,\n                      9\n                    ]\n                  ]\n                ]\n              }\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionAAPrec\",\n      \"category\": \"function\",\n      \"title\": \"AA - sliver triangle, cut by polygon\",\n      \"id\": \"18-001\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((10 10, 100 10, 10 11, 10 10))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                10,\n                10\n              ],\n              [\n                100,\n                10\n              ],\n              [\n                10,\n                11\n              ],\n              [\n                10,\n                10\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((90 0, 200 0, 200 200, 90 200, 90 0))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                90,\n                0\n              ],\n              [\n                200,\n                0\n              ],\n              [\n                200,\n                200\n              ],\n              [\n                90,\n                200\n              ],\n              [\n                90,\n                0\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"212101212\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((10 10, 10 11, 100 10, 10 10))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  10,\n                  10\n                ],\n                [\n                  10,\n                  11\n                ],\n                [\n                  100,\n                  10\n                ],\n                [\n                  10,\n                  10\n                ]\n              ]\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"POLYGON ((90 10.11111111111111, 100 10, 90 10, 90 10.11111111111111))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  90,\n                  10.11111111111111\n                ],\n                [\n                  100,\n                  10\n                ],\n                [\n                  90,\n                  10\n                ],\n                [\n                  90,\n                  10.11111111111111\n                ]\n              ]\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"POLYGON ((90 10, 10 10, 10 11, 90 10.11111111111111, 90 200, 200 200, 200 0, 90 0, 90 10))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  90,\n                  10\n                ],\n                [\n                  10,\n                  10\n                ],\n                [\n                  10,\n                  11\n                ],\n                [\n                  90,\n                  10.11111111111111\n                ],\n                [\n                  90,\n                  200\n                ],\n                [\n                  200,\n                  200\n                ],\n                [\n                  200,\n                  0\n                ],\n                [\n                  90,\n                  0\n                ],\n                [\n                  90,\n                  10\n                ]\n              ]\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"POLYGON ((90 10, 10 10, 10 11, 90 10.11111111111111, 90 10))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  90,\n                  10\n                ],\n                [\n                  10,\n                  10\n                ],\n                [\n                  10,\n                  11\n                ],\n                [\n                  90,\n                  10.11111111111111\n                ],\n                [\n                  90,\n                  10\n                ]\n              ]\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"MULTIPOLYGON (((90 10, 10 10, 10 11, 90 10.11111111111111, 90 10)),((90 10, 100 10, 90 10.11111111111111, 90 200, 200 200, 200 0, 90 0, 90 10)))\",\n          \"geometry\": {\n            \"type\": \"MultiPolygon\",\n            \"coordinates\": [\n              [\n                [\n                  [\n                    90,\n                    10\n                  ],\n                  [\n                    10,\n                    10\n                  ],\n                  [\n                    10,\n                    11\n                  ],\n                  [\n                    90,\n                    10.11111111111111\n                  ],\n                  [\n                    90,\n                    10\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    90,\n                    10\n                  ],\n                  [\n                    100,\n                    10\n                  ],\n                  [\n                    90,\n                    10.11111111111111\n                  ],\n                  [\n                    90,\n                    200\n                  ],\n                  [\n                    200,\n                    200\n                  ],\n                  [\n                    200,\n                    0\n                  ],\n                  [\n                    90,\n                    0\n                  ],\n                  [\n                    90,\n                    10\n                  ]\n                ]\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionAAPrec\",\n      \"category\": \"function\",\n      \"title\": \"AA - polygon with outward sliver, cut by polygon\",\n      \"id\": \"18-002\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((100 10, 10 10, 90 11, 90 20, 100 20, 100 10))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                100,\n                10\n              ],\n              [\n                10,\n                10\n              ],\n              [\n                90,\n                11\n              ],\n              [\n                90,\n                20\n              ],\n              [\n                100,\n                20\n              ],\n              [\n                100,\n                10\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((20 20, 0 20, 0 0, 20 0, 20 20))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                0,\n                20\n              ],\n              [\n                0,\n                0\n              ],\n              [\n                20,\n                0\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"212101212\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((10 10, 90 20, 100 20, 100 10, 10 10))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  10,\n                  10\n                ],\n                [\n                  90,\n                  20\n                ],\n                [\n                  100,\n                  20\n                ],\n                [\n                  100,\n                  10\n                ],\n                [\n                  10,\n                  10\n                ]\n              ]\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"POLYGON ((20 10, 10 10, 20 10.125, 20 10))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  20,\n                  10\n                ],\n                [\n                  10,\n                  10\n                ],\n                [\n                  20,\n                  10.125\n                ],\n                [\n                  20,\n                  10\n                ]\n              ]\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"POLYGON ((100 10, 20 10, 20 0, 0 0, 0 20, 20 20, 20 10.125, 90 11, 90 20, 100 20, 100 10))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  100,\n                  10\n                ],\n                [\n                  20,\n                  10\n                ],\n                [\n                  20,\n                  0\n                ],\n                [\n                  0,\n                  0\n                ],\n                [\n                  0,\n                  20\n                ],\n                [\n                  20,\n                  20\n                ],\n                [\n                  20,\n                  10.125\n                ],\n                [\n                  90,\n                  11\n                ],\n                [\n                  90,\n                  20\n                ],\n                [\n                  100,\n                  20\n                ],\n                [\n                  100,\n                  10\n                ]\n              ]\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"POLYGON ((100 10, 20 10, 20 10.125, 90 11, 90 20, 100 20, 100 10))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  100,\n                  10\n                ],\n                [\n                  20,\n                  10\n                ],\n                [\n                  20,\n                  10.125\n                ],\n                [\n                  90,\n                  11\n                ],\n                [\n                  90,\n                  20\n                ],\n                [\n                  100,\n                  20\n                ],\n                [\n                  100,\n                  10\n                ]\n              ]\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"MULTIPOLYGON (((100 10, 20 10, 20 10.125, 90 11, 90 20, 100 20, 100 10)),((20 10.125, 10 10, 20 10, 20 0, 0 0, 0 20, 20 20, 20 10.125)))\",\n          \"geometry\": {\n            \"type\": \"MultiPolygon\",\n            \"coordinates\": [\n              [\n                [\n                  [\n                    100,\n                    10\n                  ],\n                  [\n                    20,\n                    10\n                  ],\n                  [\n                    20,\n                    10.125\n                  ],\n                  [\n                    90,\n                    11\n                  ],\n                  [\n                    90,\n                    20\n                  ],\n                  [\n                    100,\n                    20\n                  ],\n                  [\n                    100,\n                    10\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    20,\n                    10.125\n                  ],\n                  [\n                    10,\n                    10\n                  ],\n                  [\n                    20,\n                    10\n                  ],\n                  [\n                    20,\n                    0\n                  ],\n                  [\n                    0,\n                    0\n                  ],\n                  [\n                    0,\n                    20\n                  ],\n                  [\n                    20,\n                    20\n                  ],\n                  [\n                    20,\n                    10.125\n                  ]\n                ]\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionAAPrec\",\n      \"category\": \"function\",\n      \"title\": \"AA - narrow wedge in polygon\",\n      \"id\": \"18-003\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((10 10, 50 10, 50 50, 10 50, 10 31, 49 30, 10 30, 10 10))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                10,\n                10\n              ],\n              [\n                50,\n                10\n              ],\n              [\n                50,\n                50\n              ],\n              [\n                10,\n                50\n              ],\n              [\n                10,\n                31\n              ],\n              [\n                49,\n                30\n              ],\n              [\n                10,\n                30\n              ],\n              [\n                10,\n                10\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((60 40, 40 40, 40 20, 60 20, 60 40))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                60,\n                40\n              ],\n              [\n                40,\n                40\n              ],\n              [\n                40,\n                20\n              ],\n              [\n                60,\n                20\n              ],\n              [\n                60,\n                40\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"212101212\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((10 10, 10 50, 50 50, 50 10, 10 10))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  10,\n                  10\n                ],\n                [\n                  10,\n                  50\n                ],\n                [\n                  50,\n                  50\n                ],\n                [\n                  50,\n                  10\n                ],\n                [\n                  10,\n                  10\n                ]\n              ]\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"POLYGON ((50 40, 50 20, 40 20, 40 30, 49 30, 40 30.23076923076923, 40 40, 50 40))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  50,\n                  40\n                ],\n                [\n                  50,\n                  20\n                ],\n                [\n                  40,\n                  20\n                ],\n                [\n                  40,\n                  30\n                ],\n                [\n                  49,\n                  30\n                ],\n                [\n                  40,\n                  30.23076923076923\n                ],\n                [\n                  40,\n                  40\n                ],\n                [\n                  50,\n                  40\n                ]\n              ]\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"POLYGON ((50 20, 50 10, 10 10, 10 30, 40 30, 40 30.23076923076923, 10 31, 10 50, 50 50, 50 40, 60 40, 60 20, 50 20))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  50,\n                  20\n                ],\n                [\n                  50,\n                  10\n                ],\n                [\n                  10,\n                  10\n                ],\n                [\n                  10,\n                  30\n                ],\n                [\n                  40,\n                  30\n                ],\n                [\n                  40,\n                  30.23076923076923\n                ],\n                [\n                  10,\n                  31\n                ],\n                [\n                  10,\n                  50\n                ],\n                [\n                  50,\n                  50\n                ],\n                [\n                  50,\n                  40\n                ],\n                [\n                  60,\n                  40\n                ],\n                [\n                  60,\n                  20\n                ],\n                [\n                  50,\n                  20\n                ]\n              ]\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"MULTIPOLYGON (((50 20, 50 10, 10 10, 10 30, 40 30, 40 20, 50 20)),((40 30.23076923076923, 10 31, 10 50, 50 50, 50 40, 40 40, 40 30.23076923076923)))\",\n          \"geometry\": {\n            \"type\": \"MultiPolygon\",\n            \"coordinates\": [\n              [\n                [\n                  [\n                    50,\n                    20\n                  ],\n                  [\n                    50,\n                    10\n                  ],\n                  [\n                    10,\n                    10\n                  ],\n                  [\n                    10,\n                    30\n                  ],\n                  [\n                    40,\n                    30\n                  ],\n                  [\n                    40,\n                    20\n                  ],\n                  [\n                    50,\n                    20\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    40,\n                    30.23076923076923\n                  ],\n                  [\n                    10,\n                    31\n                  ],\n                  [\n                    10,\n                    50\n                  ],\n                  [\n                    50,\n                    50\n                  ],\n                  [\n                    50,\n                    40\n                  ],\n                  [\n                    40,\n                    40\n                  ],\n                  [\n                    40,\n                    30.23076923076923\n                  ]\n                ]\n              ]\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"MULTIPOLYGON (((50 20, 50 10, 10 10, 10 30, 40 30, 40 20, 50 20)),((50 20, 50 40, 60 40, 60 20, 50 20)),((40 30.23076923076923, 10 31, 10 50, 50 50, 50 40, 40 40, 40 30.23076923076923)),((40 30.23076923076923, 49 30, 40 30, 40 30.23076923076923)))\",\n          \"geometry\": {\n            \"type\": \"MultiPolygon\",\n            \"coordinates\": [\n              [\n                [\n                  [\n                    50,\n                    20\n                  ],\n                  [\n                    50,\n                    10\n                  ],\n                  [\n                    10,\n                    10\n                  ],\n                  [\n                    10,\n                    30\n                  ],\n                  [\n                    40,\n                    30\n                  ],\n                  [\n                    40,\n                    20\n                  ],\n                  [\n                    50,\n                    20\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    50,\n                    20\n                  ],\n                  [\n                    50,\n                    40\n                  ],\n                  [\n                    60,\n                    40\n                  ],\n                  [\n                    60,\n                    20\n                  ],\n                  [\n                    50,\n                    20\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    40,\n                    30.23076923076923\n                  ],\n                  [\n                    10,\n                    31\n                  ],\n                  [\n                    10,\n                    50\n                  ],\n                  [\n                    50,\n                    50\n                  ],\n                  [\n                    50,\n                    40\n                  ],\n                  [\n                    40,\n                    40\n                  ],\n                  [\n                    40,\n                    30.23076923076923\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    40,\n                    30.23076923076923\n                  ],\n                  [\n                    49,\n                    30\n                  ],\n                  [\n                    40,\n                    30\n                  ],\n                  [\n                    40,\n                    30.23076923076923\n                  ]\n                ]\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionAAPrec\",\n      \"category\": \"function\",\n      \"title\": \"AA - hole close to shell\",\n      \"id\": \"18-004\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((10 100, 10 10, 100 10, 100 100, 10 100),(90 90, 11 90, 10 10, 90 11, 90 90))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                10,\n                100\n              ],\n              [\n                10,\n                10\n              ],\n              [\n                100,\n                10\n              ],\n              [\n                100,\n                100\n              ],\n              [\n                10,\n                100\n              ]\n            ],\n            [\n              [\n                90,\n                90\n              ],\n              [\n                11,\n                90\n              ],\n              [\n                10,\n                10\n              ],\n              [\n                90,\n                11\n              ],\n              [\n                90,\n                90\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((0 30, 0 0, 30 0, 30 30, 0 30))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                0,\n                30\n              ],\n              [\n                0,\n                0\n              ],\n              [\n                30,\n                0\n              ],\n              [\n                30,\n                30\n              ],\n              [\n                0,\n                30\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"212101212\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((10 10, 10 100, 100 100, 100 10, 10 10))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  10,\n                  10\n                ],\n                [\n                  10,\n                  100\n                ],\n                [\n                  100,\n                  100\n                ],\n                [\n                  100,\n                  10\n                ],\n                [\n                  10,\n                  10\n                ]\n              ]\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"MULTIPOLYGON (((10 10, 10 30, 10.25 30, 10 10)),((30 10, 10 10, 30 10.25, 30 10)))\",\n          \"geometry\": {\n            \"type\": \"MultiPolygon\",\n            \"coordinates\": [\n              [\n                [\n                  [\n                    10,\n                    10\n                  ],\n                  [\n                    10,\n                    30\n                  ],\n                  [\n                    10.25,\n                    30\n                  ],\n                  [\n                    10,\n                    10\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    30,\n                    10\n                  ],\n                  [\n                    10,\n                    10\n                  ],\n                  [\n                    30,\n                    10.25\n                  ],\n                  [\n                    30,\n                    10\n                  ]\n                ]\n              ]\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"POLYGON ((10 30, 10 100, 100 100, 100 10, 30 10, 30 0, 0 0, 0 30, 10 30),(90 90, 11 90, 10.25 30, 30 30, 30 10.25, 90 11, 90 90))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  10,\n                  30\n                ],\n                [\n                  10,\n                  100\n                ],\n                [\n                  100,\n                  100\n                ],\n                [\n                  100,\n                  10\n                ],\n                [\n                  30,\n                  10\n                ],\n                [\n                  30,\n                  0\n                ],\n                [\n                  0,\n                  0\n                ],\n                [\n                  0,\n                  30\n                ],\n                [\n                  10,\n                  30\n                ]\n              ],\n              [\n                [\n                  90,\n                  90\n                ],\n                [\n                  11,\n                  90\n                ],\n                [\n                  10.25,\n                  30\n                ],\n                [\n                  30,\n                  30\n                ],\n                [\n                  30,\n                  10.25\n                ],\n                [\n                  90,\n                  11\n                ],\n                [\n                  90,\n                  90\n                ]\n              ]\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"POLYGON ((10 30, 10 100, 100 100, 100 10, 30 10, 30 10.25, 90 11, 90 90, 11 90, 10.25 30, 10 30))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  10,\n                  30\n                ],\n                [\n                  10,\n                  100\n                ],\n                [\n                  100,\n                  100\n                ],\n                [\n                  100,\n                  10\n                ],\n                [\n                  30,\n                  10\n                ],\n                [\n                  30,\n                  10.25\n                ],\n                [\n                  90,\n                  11\n                ],\n                [\n                  90,\n                  90\n                ],\n                [\n                  11,\n                  90\n                ],\n                [\n                  10.25,\n                  30\n                ],\n                [\n                  10,\n                  30\n                ]\n              ]\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"MULTIPOLYGON (((10 30, 10 100, 100 100, 100 10, 30 10, 30 10.25, 90 11, 90 90, 11 90, 10.25 30, 10 30)),((10 30, 10 10, 30 10, 30 0, 0 0, 0 30, 10 30)),((10 10, 10.25 30, 30 30, 30 10.25, 10 10)))\",\n          \"geometry\": {\n            \"type\": \"MultiPolygon\",\n            \"coordinates\": [\n              [\n                [\n                  [\n                    10,\n                    30\n                  ],\n                  [\n                    10,\n                    100\n                  ],\n                  [\n                    100,\n                    100\n                  ],\n                  [\n                    100,\n                    10\n                  ],\n                  [\n                    30,\n                    10\n                  ],\n                  [\n                    30,\n                    10.25\n                  ],\n                  [\n                    90,\n                    11\n                  ],\n                  [\n                    90,\n                    90\n                  ],\n                  [\n                    11,\n                    90\n                  ],\n                  [\n                    10.25,\n                    30\n                  ],\n                  [\n                    10,\n                    30\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    10,\n                    30\n                  ],\n                  [\n                    10,\n                    10\n                  ],\n                  [\n                    30,\n                    10\n                  ],\n                  [\n                    30,\n                    0\n                  ],\n                  [\n                    0,\n                    0\n                  ],\n                  [\n                    0,\n                    30\n                  ],\n                  [\n                    10,\n                    30\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    10,\n                    10\n                  ],\n                  [\n                    10.25,\n                    30\n                  ],\n                  [\n                    30,\n                    30\n                  ],\n                  [\n                    30,\n                    10.25\n                  ],\n                  [\n                    10,\n                    10\n                  ]\n                ]\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionAAPrec\",\n      \"category\": \"function\",\n      \"title\": \"mAA - shells close together\",\n      \"id\": \"18-005\",\n      \"a\": {\n        \"wkt\": \"MULTIPOLYGON (((0 0, 100 0, 100 20, 0 20, 0 0)),((0 40, 0 21, 100 20, 100 40, 0 40)))\",\n        \"geometry\": {\n          \"type\": \"MultiPolygon\",\n          \"coordinates\": [\n            [\n              [\n                [\n                  0,\n                  0\n                ],\n                [\n                  100,\n                  0\n                ],\n                [\n                  100,\n                  20\n                ],\n                [\n                  0,\n                  20\n                ],\n                [\n                  0,\n                  0\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  0,\n                  40\n                ],\n                [\n                  0,\n                  21\n                ],\n                [\n                  100,\n                  20\n                ],\n                [\n                  100,\n                  40\n                ],\n                [\n                  0,\n                  40\n                ]\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((110 30, 90 30, 90 10, 110 10, 110 30))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                110,\n                30\n              ],\n              [\n                90,\n                30\n              ],\n              [\n                90,\n                10\n              ],\n              [\n                110,\n                10\n              ],\n              [\n                110,\n                30\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"212101212\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((0 0, 0 40, 100 40, 100 0, 0 0))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  0,\n                  0\n                ],\n                [\n                  0,\n                  40\n                ],\n                [\n                  100,\n                  40\n                ],\n                [\n                  100,\n                  0\n                ],\n                [\n                  0,\n                  0\n                ]\n              ]\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"MULTIPOLYGON (((100 20, 100 10, 90 10, 90 20, 100 20)),((100 20, 90 20.1, 90 30, 100 30, 100 20)))\",\n          \"geometry\": {\n            \"type\": \"MultiPolygon\",\n            \"coordinates\": [\n              [\n                [\n                  [\n                    100,\n                    20\n                  ],\n                  [\n                    100,\n                    10\n                  ],\n                  [\n                    90,\n                    10\n                  ],\n                  [\n                    90,\n                    20\n                  ],\n                  [\n                    100,\n                    20\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    100,\n                    20\n                  ],\n                  [\n                    90,\n                    20.1\n                  ],\n                  [\n                    90,\n                    30\n                  ],\n                  [\n                    100,\n                    30\n                  ],\n                  [\n                    100,\n                    20\n                  ]\n                ]\n              ]\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"POLYGON ((100 10, 100 0, 0 0, 0 20, 90 20, 90 20.1, 0 21, 0 40, 100 40, 100 30, 110 30, 110 10, 100 10))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  100,\n                  10\n                ],\n                [\n                  100,\n                  0\n                ],\n                [\n                  0,\n                  0\n                ],\n                [\n                  0,\n                  20\n                ],\n                [\n                  90,\n                  20\n                ],\n                [\n                  90,\n                  20.1\n                ],\n                [\n                  0,\n                  21\n                ],\n                [\n                  0,\n                  40\n                ],\n                [\n                  100,\n                  40\n                ],\n                [\n                  100,\n                  30\n                ],\n                [\n                  110,\n                  30\n                ],\n                [\n                  110,\n                  10\n                ],\n                [\n                  100,\n                  10\n                ]\n              ]\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"MULTIPOLYGON (((100 10, 100 0, 0 0, 0 20, 90 20, 90 10, 100 10)),((90 20.1, 0 21, 0 40, 100 40, 100 30, 90 30, 90 20.1)))\",\n          \"geometry\": {\n            \"type\": \"MultiPolygon\",\n            \"coordinates\": [\n              [\n                [\n                  [\n                    100,\n                    10\n                  ],\n                  [\n                    100,\n                    0\n                  ],\n                  [\n                    0,\n                    0\n                  ],\n                  [\n                    0,\n                    20\n                  ],\n                  [\n                    90,\n                    20\n                  ],\n                  [\n                    90,\n                    10\n                  ],\n                  [\n                    100,\n                    10\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    90,\n                    20.1\n                  ],\n                  [\n                    0,\n                    21\n                  ],\n                  [\n                    0,\n                    40\n                  ],\n                  [\n                    100,\n                    40\n                  ],\n                  [\n                    100,\n                    30\n                  ],\n                  [\n                    90,\n                    30\n                  ],\n                  [\n                    90,\n                    20.1\n                  ]\n                ]\n              ]\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"MULTIPOLYGON (((100 10, 100 0, 0 0, 0 20, 90 20, 90 10, 100 10)),((100 10, 100 20, 100 30, 110 30, 110 10, 100 10)),((100 20, 90 20, 90 20.1, 100 20)),((90 20.1, 0 21, 0 40, 100 40, 100 30, 90 30, 90 20.1)))\",\n          \"geometry\": {\n            \"type\": \"MultiPolygon\",\n            \"coordinates\": [\n              [\n                [\n                  [\n                    100,\n                    10\n                  ],\n                  [\n                    100,\n                    0\n                  ],\n                  [\n                    0,\n                    0\n                  ],\n                  [\n                    0,\n                    20\n                  ],\n                  [\n                    90,\n                    20\n                  ],\n                  [\n                    90,\n                    10\n                  ],\n                  [\n                    100,\n                    10\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    100,\n                    10\n                  ],\n                  [\n                    100,\n                    20\n                  ],\n                  [\n                    100,\n                    30\n                  ],\n                  [\n                    110,\n                    30\n                  ],\n                  [\n                    110,\n                    10\n                  ],\n                  [\n                    100,\n                    10\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    100,\n                    20\n                  ],\n                  [\n                    90,\n                    20\n                  ],\n                  [\n                    90,\n                    20.1\n                  ],\n                  [\n                    100,\n                    20\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    90,\n                    20.1\n                  ],\n                  [\n                    0,\n                    21\n                  ],\n                  [\n                    0,\n                    40\n                  ],\n                  [\n                    100,\n                    40\n                  ],\n                  [\n                    100,\n                    30\n                  ],\n                  [\n                    90,\n                    30\n                  ],\n                  [\n                    90,\n                    20.1\n                  ]\n                ]\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionAAPrec\",\n      \"category\": \"function\",\n      \"title\": \"AA - A sliver triangle cutting all the way across B\",\n      \"id\": \"18-006\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((100 10, 0 10, 100 11, 100 10))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                100,\n                10\n              ],\n              [\n                0,\n                10\n              ],\n              [\n                100,\n                11\n              ],\n              [\n                100,\n                10\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((20 20, 0 20, 0 0, 20 0, 20 20))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                0,\n                20\n              ],\n              [\n                0,\n                0\n              ],\n              [\n                20,\n                0\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"212101212\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((0 10, 100 11, 100 10, 0 10))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  0,\n                  10\n                ],\n                [\n                  100,\n                  11\n                ],\n                [\n                  100,\n                  10\n                ],\n                [\n                  0,\n                  10\n                ]\n              ]\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"POLYGON ((20 10, 0 10, 20 10.2, 20 10))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  20,\n                  10\n                ],\n                [\n                  0,\n                  10\n                ],\n                [\n                  20,\n                  10.2\n                ],\n                [\n                  20,\n                  10\n                ]\n              ]\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"POLYGON ((100 10, 20 10, 20 0, 0 0, 0 10, 0 20, 20 20, 20 10.2, 100 11, 100 10))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  100,\n                  10\n                ],\n                [\n                  20,\n                  10\n                ],\n                [\n                  20,\n                  0\n                ],\n                [\n                  0,\n                  0\n                ],\n                [\n                  0,\n                  10\n                ],\n                [\n                  0,\n                  20\n                ],\n                [\n                  20,\n                  20\n                ],\n                [\n                  20,\n                  10.2\n                ],\n                [\n                  100,\n                  11\n                ],\n                [\n                  100,\n                  10\n                ]\n              ]\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"POLYGON ((100 10, 20 10, 20 10.2, 100 11, 100 10))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  100,\n                  10\n                ],\n                [\n                  20,\n                  10\n                ],\n                [\n                  20,\n                  10.2\n                ],\n                [\n                  100,\n                  11\n                ],\n                [\n                  100,\n                  10\n                ]\n              ]\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"MULTIPOLYGON (((100 10, 20 10, 20 10.2, 100 11, 100 10)),((0 10, 20 10, 20 0, 0 0, 0 10)),((20 10.2, 0 10, 0 20, 20 20, 20 10.2)))\",\n          \"geometry\": {\n            \"type\": \"MultiPolygon\",\n            \"coordinates\": [\n              [\n                [\n                  [\n                    100,\n                    10\n                  ],\n                  [\n                    20,\n                    10\n                  ],\n                  [\n                    20,\n                    10.2\n                  ],\n                  [\n                    100,\n                    11\n                  ],\n                  [\n                    100,\n                    10\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    0,\n                    10\n                  ],\n                  [\n                    20,\n                    10\n                  ],\n                  [\n                    20,\n                    0\n                  ],\n                  [\n                    0,\n                    0\n                  ],\n                  [\n                    0,\n                    10\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    20,\n                    10.2\n                  ],\n                  [\n                    0,\n                    10\n                  ],\n                  [\n                    0,\n                    20\n                  ],\n                  [\n                    20,\n                    20\n                  ],\n                  [\n                    20,\n                    10.2\n                  ]\n                ]\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionAAPrec\",\n      \"category\": \"function\",\n      \"title\": \"AA - A polygon with sliver cutting all the way across B\",\n      \"id\": \"18-007\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((100 10, 0 10, 90 11, 90 20, 100 20, 100 10))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                100,\n                10\n              ],\n              [\n                0,\n                10\n              ],\n              [\n                90,\n                11\n              ],\n              [\n                90,\n                20\n              ],\n              [\n                100,\n                20\n              ],\n              [\n                100,\n                10\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((20 20, 0 20, 0 0, 20 0, 20 20))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                20\n              ],\n              [\n                0,\n                20\n              ],\n              [\n                0,\n                0\n              ],\n              [\n                20,\n                0\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"212101212\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((0 10, 90 20, 100 20, 100 10, 0 10))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  0,\n                  10\n                ],\n                [\n                  90,\n                  20\n                ],\n                [\n                  100,\n                  20\n                ],\n                [\n                  100,\n                  10\n                ],\n                [\n                  0,\n                  10\n                ]\n              ]\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"POLYGON ((20 10, 0 10, 20 10.222222222222221, 20 10))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  20,\n                  10\n                ],\n                [\n                  0,\n                  10\n                ],\n                [\n                  20,\n                  10.222222222222221\n                ],\n                [\n                  20,\n                  10\n                ]\n              ]\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"POLYGON ((100 10, 20 10, 20 0, 0 0, 0 10, 0 20, 20 20, 20 10.222222222222221, 90 11, 90 20, 100 20, 100 10))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  100,\n                  10\n                ],\n                [\n                  20,\n                  10\n                ],\n                [\n                  20,\n                  0\n                ],\n                [\n                  0,\n                  0\n                ],\n                [\n                  0,\n                  10\n                ],\n                [\n                  0,\n                  20\n                ],\n                [\n                  20,\n                  20\n                ],\n                [\n                  20,\n                  10.222222222222221\n                ],\n                [\n                  90,\n                  11\n                ],\n                [\n                  90,\n                  20\n                ],\n                [\n                  100,\n                  20\n                ],\n                [\n                  100,\n                  10\n                ]\n              ]\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"POLYGON ((100 10, 20 10, 20 10.222222222222221, 90 11, 90 20, 100 20, 100 10))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  100,\n                  10\n                ],\n                [\n                  20,\n                  10\n                ],\n                [\n                  20,\n                  10.222222222222221\n                ],\n                [\n                  90,\n                  11\n                ],\n                [\n                  90,\n                  20\n                ],\n                [\n                  100,\n                  20\n                ],\n                [\n                  100,\n                  10\n                ]\n              ]\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"MULTIPOLYGON (((100 10, 20 10, 20 10.222222222222221, 90 11, 90 20, 100 20, 100 10)),((0 10, 20 10, 20 0, 0 0, 0 10)),((20 10.222222222222221, 0 10, 0 20, 20 20, 20 10.222222222222221)))\",\n          \"geometry\": {\n            \"type\": \"MultiPolygon\",\n            \"coordinates\": [\n              [\n                [\n                  [\n                    100,\n                    10\n                  ],\n                  [\n                    20,\n                    10\n                  ],\n                  [\n                    20,\n                    10.222222222222221\n                  ],\n                  [\n                    90,\n                    11\n                  ],\n                  [\n                    90,\n                    20\n                  ],\n                  [\n                    100,\n                    20\n                  ],\n                  [\n                    100,\n                    10\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    0,\n                    10\n                  ],\n                  [\n                    20,\n                    10\n                  ],\n                  [\n                    20,\n                    0\n                  ],\n                  [\n                    0,\n                    0\n                  ],\n                  [\n                    0,\n                    10\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    20,\n                    10.222222222222221\n                  ],\n                  [\n                    0,\n                    10\n                  ],\n                  [\n                    0,\n                    20\n                  ],\n                  [\n                    20,\n                    20\n                  ],\n                  [\n                    20,\n                    10.222222222222221\n                  ]\n                ]\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionAAPrec\",\n      \"category\": \"function\",\n      \"title\": \"AA - hole close to shell, B coincident with A\",\n      \"id\": \"18-008\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((10 100, 10 10, 100 10, 100 100, 10 100),(90 90, 11 90, 10 10, 90 11, 90 90))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                10,\n                100\n              ],\n              [\n                10,\n                10\n              ],\n              [\n                100,\n                10\n              ],\n              [\n                100,\n                100\n              ],\n              [\n                10,\n                100\n              ]\n            ],\n            [\n              [\n                90,\n                90\n              ],\n              [\n                11,\n                90\n              ],\n              [\n                10,\n                10\n              ],\n              [\n                90,\n                11\n              ],\n              [\n                90,\n                90\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((10 30, 10 0, 30 10, 30 30, 10 30))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                10,\n                30\n              ],\n              [\n                10,\n                0\n              ],\n              [\n                30,\n                10\n              ],\n              [\n                30,\n                30\n              ],\n              [\n                10,\n                30\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"212111212\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((10 10, 10 100, 100 100, 100 10, 10 10))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  10,\n                  10\n                ],\n                [\n                  10,\n                  100\n                ],\n                [\n                  100,\n                  100\n                ],\n                [\n                  100,\n                  10\n                ],\n                [\n                  10,\n                  10\n                ]\n              ]\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"MULTIPOLYGON (((10 10, 10 30, 10.25 30, 10 10)),((30 10, 10 10, 30 10.25, 30 10)))\",\n          \"geometry\": {\n            \"type\": \"MultiPolygon\",\n            \"coordinates\": [\n              [\n                [\n                  [\n                    10,\n                    10\n                  ],\n                  [\n                    10,\n                    30\n                  ],\n                  [\n                    10.25,\n                    30\n                  ],\n                  [\n                    10,\n                    10\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    30,\n                    10\n                  ],\n                  [\n                    10,\n                    10\n                  ],\n                  [\n                    30,\n                    10.25\n                  ],\n                  [\n                    30,\n                    10\n                  ]\n                ]\n              ]\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"POLYGON ((10 30, 10 100, 100 100, 100 10, 30 10, 10 0, 10 10, 10 30),(90 90, 11 90, 10.25 30, 30 30, 30 10.25, 90 11, 90 90))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  10,\n                  30\n                ],\n                [\n                  10,\n                  100\n                ],\n                [\n                  100,\n                  100\n                ],\n                [\n                  100,\n                  10\n                ],\n                [\n                  30,\n                  10\n                ],\n                [\n                  10,\n                  0\n                ],\n                [\n                  10,\n                  10\n                ],\n                [\n                  10,\n                  30\n                ]\n              ],\n              [\n                [\n                  90,\n                  90\n                ],\n                [\n                  11,\n                  90\n                ],\n                [\n                  10.25,\n                  30\n                ],\n                [\n                  30,\n                  30\n                ],\n                [\n                  30,\n                  10.25\n                ],\n                [\n                  90,\n                  11\n                ],\n                [\n                  90,\n                  90\n                ]\n              ]\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"POLYGON ((10 30, 10 100, 100 100, 100 10, 30 10, 30 10.25, 90 11, 90 90, 11 90, 10.25 30, 10 30))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  10,\n                  30\n                ],\n                [\n                  10,\n                  100\n                ],\n                [\n                  100,\n                  100\n                ],\n                [\n                  100,\n                  10\n                ],\n                [\n                  30,\n                  10\n                ],\n                [\n                  30,\n                  10.25\n                ],\n                [\n                  90,\n                  11\n                ],\n                [\n                  90,\n                  90\n                ],\n                [\n                  11,\n                  90\n                ],\n                [\n                  10.25,\n                  30\n                ],\n                [\n                  10,\n                  30\n                ]\n              ]\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"MULTIPOLYGON (((10 30, 10 100, 100 100, 100 10, 30 10, 30 10.25, 90 11, 90 90, 11 90, 10.25 30, 10 30)),((10 10, 30 10, 10 0, 10 10)),((10 10, 10.25 30, 30 30, 30 10.25, 10 10)))\",\n          \"geometry\": {\n            \"type\": \"MultiPolygon\",\n            \"coordinates\": [\n              [\n                [\n                  [\n                    10,\n                    30\n                  ],\n                  [\n                    10,\n                    100\n                  ],\n                  [\n                    100,\n                    100\n                  ],\n                  [\n                    100,\n                    10\n                  ],\n                  [\n                    30,\n                    10\n                  ],\n                  [\n                    30,\n                    10.25\n                  ],\n                  [\n                    90,\n                    11\n                  ],\n                  [\n                    90,\n                    90\n                  ],\n                  [\n                    11,\n                    90\n                  ],\n                  [\n                    10.25,\n                    30\n                  ],\n                  [\n                    10,\n                    30\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    10,\n                    10\n                  ],\n                  [\n                    30,\n                    10\n                  ],\n                  [\n                    10,\n                    0\n                  ],\n                  [\n                    10,\n                    10\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    10,\n                    10\n                  ],\n                  [\n                    10.25,\n                    30\n                  ],\n                  [\n                    30,\n                    30\n                  ],\n                  [\n                    30,\n                    10.25\n                  ],\n                  [\n                    10,\n                    10\n                  ]\n                ]\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionAAPrec\",\n      \"category\": \"function\",\n      \"title\": \"AA - A hole close to shell, B coincident with A\",\n      \"id\": \"18-009\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((10 100, 10 10, 100 10, 100 100, 10 100),(90 90, 11 90, 10 10, 90 11, 90 90))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                10,\n                100\n              ],\n              [\n                10,\n                10\n              ],\n              [\n                100,\n                10\n              ],\n              [\n                100,\n                100\n              ],\n              [\n                10,\n                100\n              ]\n            ],\n            [\n              [\n                90,\n                90\n              ],\n              [\n                11,\n                90\n              ],\n              [\n                10,\n                10\n              ],\n              [\n                90,\n                11\n              ],\n              [\n                90,\n                90\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((10 30, 10 10, 30 10, 30 30, 10 30))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                10,\n                30\n              ],\n              [\n                10,\n                10\n              ],\n              [\n                30,\n                10\n              ],\n              [\n                30,\n                30\n              ],\n              [\n                10,\n                30\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"212111212\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((10 10, 10 100, 100 100, 100 10, 10 10))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  10,\n                  10\n                ],\n                [\n                  10,\n                  100\n                ],\n                [\n                  100,\n                  100\n                ],\n                [\n                  100,\n                  10\n                ],\n                [\n                  10,\n                  10\n                ]\n              ]\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"MULTIPOLYGON (((10 10, 10 30, 10.25 30, 10 10)),((30 10, 10 10, 30 10.25, 30 10)))\",\n          \"geometry\": {\n            \"type\": \"MultiPolygon\",\n            \"coordinates\": [\n              [\n                [\n                  [\n                    10,\n                    10\n                  ],\n                  [\n                    10,\n                    30\n                  ],\n                  [\n                    10.25,\n                    30\n                  ],\n                  [\n                    10,\n                    10\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    30,\n                    10\n                  ],\n                  [\n                    10,\n                    10\n                  ],\n                  [\n                    30,\n                    10.25\n                  ],\n                  [\n                    30,\n                    10\n                  ]\n                ]\n              ]\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"POLYGON ((10 30, 10 100, 100 100, 100 10, 30 10, 10 10, 10 30),(90 90, 11 90, 10.25 30, 30 30, 30 10.25, 90 11, 90 90))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  10,\n                  30\n                ],\n                [\n                  10,\n                  100\n                ],\n                [\n                  100,\n                  100\n                ],\n                [\n                  100,\n                  10\n                ],\n                [\n                  30,\n                  10\n                ],\n                [\n                  10,\n                  10\n                ],\n                [\n                  10,\n                  30\n                ]\n              ],\n              [\n                [\n                  90,\n                  90\n                ],\n                [\n                  11,\n                  90\n                ],\n                [\n                  10.25,\n                  30\n                ],\n                [\n                  30,\n                  30\n                ],\n                [\n                  30,\n                  10.25\n                ],\n                [\n                  90,\n                  11\n                ],\n                [\n                  90,\n                  90\n                ]\n              ]\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"POLYGON ((10 30, 10 100, 100 100, 100 10, 30 10, 30 10.25, 90 11, 90 90, 11 90, 10.25 30, 10 30))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  10,\n                  30\n                ],\n                [\n                  10,\n                  100\n                ],\n                [\n                  100,\n                  100\n                ],\n                [\n                  100,\n                  10\n                ],\n                [\n                  30,\n                  10\n                ],\n                [\n                  30,\n                  10.25\n                ],\n                [\n                  90,\n                  11\n                ],\n                [\n                  90,\n                  90\n                ],\n                [\n                  11,\n                  90\n                ],\n                [\n                  10.25,\n                  30\n                ],\n                [\n                  10,\n                  30\n                ]\n              ]\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"MULTIPOLYGON (((10 30, 10 100, 100 100, 100 10, 30 10, 30 10.25, 90 11, 90 90, 11 90, 10.25 30, 10 30)),((10 10, 10.25 30, 30 30, 30 10.25, 10 10)))\",\n          \"geometry\": {\n            \"type\": \"MultiPolygon\",\n            \"coordinates\": [\n              [\n                [\n                  [\n                    10,\n                    30\n                  ],\n                  [\n                    10,\n                    100\n                  ],\n                  [\n                    100,\n                    100\n                  ],\n                  [\n                    100,\n                    10\n                  ],\n                  [\n                    30,\n                    10\n                  ],\n                  [\n                    30,\n                    10.25\n                  ],\n                  [\n                    90,\n                    11\n                  ],\n                  [\n                    90,\n                    90\n                  ],\n                  [\n                    11,\n                    90\n                  ],\n                  [\n                    10.25,\n                    30\n                  ],\n                  [\n                    10,\n                    30\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    10,\n                    10\n                  ],\n                  [\n                    10.25,\n                    30\n                  ],\n                  [\n                    30,\n                    30\n                  ],\n                  [\n                    30,\n                    10.25\n                  ],\n                  [\n                    10,\n                    10\n                  ]\n                ]\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionAAPrec\",\n      \"category\": \"function\",\n      \"title\": \"AA - B hole close to shell, A coincident with B\",\n      \"id\": \"18-010\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((10 30, 10 10, 30 10, 30 30, 10 30))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                10,\n                30\n              ],\n              [\n                10,\n                10\n              ],\n              [\n                30,\n                10\n              ],\n              [\n                30,\n                30\n              ],\n              [\n                10,\n                30\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((10 100, 10 10, 100 10, 100 100, 10 100),(90 90, 11 90, 10 10, 90 11, 90 90))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                10,\n                100\n              ],\n              [\n                10,\n                10\n              ],\n              [\n                100,\n                10\n              ],\n              [\n                100,\n                100\n              ],\n              [\n                10,\n                100\n              ]\n            ],\n            [\n              [\n                90,\n                90\n              ],\n              [\n                11,\n                90\n              ],\n              [\n                10,\n                10\n              ],\n              [\n                90,\n                11\n              ],\n              [\n                90,\n                90\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"212111212\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((10 10, 10 30, 30 30, 30 10, 10 10))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  10,\n                  10\n                ],\n                [\n                  10,\n                  30\n                ],\n                [\n                  30,\n                  30\n                ],\n                [\n                  30,\n                  10\n                ],\n                [\n                  10,\n                  10\n                ]\n              ]\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"MULTIPOLYGON (((10 10, 10 30, 10.25 30, 10 10)),((30 10, 10 10, 30 10.25, 30 10)))\",\n          \"geometry\": {\n            \"type\": \"MultiPolygon\",\n            \"coordinates\": [\n              [\n                [\n                  [\n                    10,\n                    10\n                  ],\n                  [\n                    10,\n                    30\n                  ],\n                  [\n                    10.25,\n                    30\n                  ],\n                  [\n                    10,\n                    10\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    30,\n                    10\n                  ],\n                  [\n                    10,\n                    10\n                  ],\n                  [\n                    30,\n                    10.25\n                  ],\n                  [\n                    30,\n                    10\n                  ]\n                ]\n              ]\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"POLYGON ((10 10, 10 30, 10 100, 100 100, 100 10, 30 10, 10 10),(10.25 30, 30 30, 30 10.25, 90 11, 90 90, 11 90, 10.25 30))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  10,\n                  10\n                ],\n                [\n                  10,\n                  30\n                ],\n                [\n                  10,\n                  100\n                ],\n                [\n                  100,\n                  100\n                ],\n                [\n                  100,\n                  10\n                ],\n                [\n                  30,\n                  10\n                ],\n                [\n                  10,\n                  10\n                ]\n              ],\n              [\n                [\n                  10.25,\n                  30\n                ],\n                [\n                  30,\n                  30\n                ],\n                [\n                  30,\n                  10.25\n                ],\n                [\n                  90,\n                  11\n                ],\n                [\n                  90,\n                  90\n                ],\n                [\n                  11,\n                  90\n                ],\n                [\n                  10.25,\n                  30\n                ]\n              ]\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"POLYGON ((10.25 30, 30 30, 30 10.25, 10 10, 10.25 30))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  10.25,\n                  30\n                ],\n                [\n                  30,\n                  30\n                ],\n                [\n                  30,\n                  10.25\n                ],\n                [\n                  10,\n                  10\n                ],\n                [\n                  10.25,\n                  30\n                ]\n              ]\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"MULTIPOLYGON (((30 10, 30 10.25, 90 11, 90 90, 11 90, 10.25 30, 10 30, 10 100, 100 100, 100 10, 30 10)),((10.25 30, 30 30, 30 10.25, 10 10, 10.25 30)))\",\n          \"geometry\": {\n            \"type\": \"MultiPolygon\",\n            \"coordinates\": [\n              [\n                [\n                  [\n                    30,\n                    10\n                  ],\n                  [\n                    30,\n                    10.25\n                  ],\n                  [\n                    90,\n                    11\n                  ],\n                  [\n                    90,\n                    90\n                  ],\n                  [\n                    11,\n                    90\n                  ],\n                  [\n                    10.25,\n                    30\n                  ],\n                  [\n                    10,\n                    30\n                  ],\n                  [\n                    10,\n                    100\n                  ],\n                  [\n                    100,\n                    100\n                  ],\n                  [\n                    100,\n                    10\n                  ],\n                  [\n                    30,\n                    10\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    10.25,\n                    30\n                  ],\n                  [\n                    30,\n                    30\n                  ],\n                  [\n                    30,\n                    10.25\n                  ],\n                  [\n                    10,\n                    10\n                  ],\n                  [\n                    10.25,\n                    30\n                  ]\n                ]\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionAAPrec\",\n      \"category\": \"function\",\n      \"title\": \"AA - B sliver crossing A triangle in line segment with length &lt; 1\",\n      \"id\": \"18-011\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((0 0, 200 0, 0 198, 0 0))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                0,\n                0\n              ],\n              [\n                200,\n                0\n              ],\n              [\n                0,\n                198\n              ],\n              [\n                0,\n                0\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((280 60, 139 60, 280 70, 280 60))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                280,\n                60\n              ],\n              [\n                139,\n                60\n              ],\n              [\n                280,\n                70\n              ],\n              [\n                280,\n                60\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"212101212\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((0 0, 0 198, 200 0, 0 0))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  0,\n                  0\n                ],\n                [\n                  0,\n                  198\n                ],\n                [\n                  200,\n                  0\n                ],\n                [\n                  0,\n                  0\n                ]\n              ]\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"POLYGON ((139.3676047864162 60.02607126144796, 139.3939393939394 60, 139 60, 139.3676047864162 60.02607126144796))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  139.3676047864162,\n                  60.02607126144796\n                ],\n                [\n                  139.3939393939394,\n                  60\n                ],\n                [\n                  139,\n                  60\n                ],\n                [\n                  139.3676047864162,\n                  60.02607126144796\n                ]\n              ]\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"POLYGON ((139.3939393939394 60, 200 0, 0 0, 0 198, 139.3676047864162 60.02607126144796, 280 70, 280 60, 139.3939393939394 60))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  139.3939393939394,\n                  60\n                ],\n                [\n                  200,\n                  0\n                ],\n                [\n                  0,\n                  0\n                ],\n                [\n                  0,\n                  198\n                ],\n                [\n                  139.3676047864162,\n                  60.02607126144796\n                ],\n                [\n                  280,\n                  70\n                ],\n                [\n                  280,\n                  60\n                ],\n                [\n                  139.3939393939394,\n                  60\n                ]\n              ]\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"POLYGON ((139.3939393939394 60, 200 0, 0 0, 0 198, 139.3676047864162 60.02607126144796, 139 60, 139.3939393939394 60))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  139.3939393939394,\n                  60\n                ],\n                [\n                  200,\n                  0\n                ],\n                [\n                  0,\n                  0\n                ],\n                [\n                  0,\n                  198\n                ],\n                [\n                  139.3676047864162,\n                  60.02607126144796\n                ],\n                [\n                  139,\n                  60\n                ],\n                [\n                  139.3939393939394,\n                  60\n                ]\n              ]\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"MULTIPOLYGON (((139.3939393939394 60, 200 0, 0 0, 0 198, 139.3676047864162 60.02607126144796, 139 60, 139.3939393939394 60)),((139.3939393939394 60, 139.3676047864162 60.02607126144796, 280 70, 280 60, 139.3939393939394 60)))\",\n          \"geometry\": {\n            \"type\": \"MultiPolygon\",\n            \"coordinates\": [\n              [\n                [\n                  [\n                    139.3939393939394,\n                    60\n                  ],\n                  [\n                    200,\n                    0\n                  ],\n                  [\n                    0,\n                    0\n                  ],\n                  [\n                    0,\n                    198\n                  ],\n                  [\n                    139.3676047864162,\n                    60.02607126144796\n                  ],\n                  [\n                    139,\n                    60\n                  ],\n                  [\n                    139.3939393939394,\n                    60\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    139.3939393939394,\n                    60\n                  ],\n                  [\n                    139.3676047864162,\n                    60.02607126144796\n                  ],\n                  [\n                    280,\n                    70\n                  ],\n                  [\n                    280,\n                    60\n                  ],\n                  [\n                    139.3939393939394,\n                    60\n                  ]\n                ]\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionAAPrec\",\n      \"category\": \"function\",\n      \"title\": \"AA - sliver triangles, at angle to each other\",\n      \"id\": \"18-012\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((0 0, 140 10, 0 20, 0 0))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                0,\n                0\n              ],\n              [\n                140,\n                10\n              ],\n              [\n                0,\n                20\n              ],\n              [\n                0,\n                0\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((280 0, 139 10, 280 1, 280 0))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                280,\n                0\n              ],\n              [\n                139,\n                10\n              ],\n              [\n                280,\n                1\n              ],\n              [\n                280,\n                0\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"212101212\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((0 0, 0 20, 140 10, 0 0))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  0,\n                  0\n                ],\n                [\n                  0,\n                  20\n                ],\n                [\n                  140,\n                  10\n                ],\n                [\n                  0,\n                  0\n                ]\n              ]\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"POLYGON ((139.52808988764045 9.96629213483146, 139.5017793594306 9.9644128113879, 139 10, 139.52808988764045 9.96629213483146))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  139.52808988764045,\n                  9.96629213483146\n                ],\n                [\n                  139.5017793594306,\n                  9.9644128113879\n                ],\n                [\n                  139,\n                  10\n                ],\n                [\n                  139.52808988764045,\n                  9.96629213483146\n                ]\n              ]\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"POLYGON ((139.5017793594306 9.9644128113879, 0 0, 0 20, 140 10, 139.52808988764045 9.96629213483146, 280 1, 280 0, 139.5017793594306 9.9644128113879))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  139.5017793594306,\n                  9.9644128113879\n                ],\n                [\n                  0,\n                  0\n                ],\n                [\n                  0,\n                  20\n                ],\n                [\n                  140,\n                  10\n                ],\n                [\n                  139.52808988764045,\n                  9.96629213483146\n                ],\n                [\n                  280,\n                  1\n                ],\n                [\n                  280,\n                  0\n                ],\n                [\n                  139.5017793594306,\n                  9.9644128113879\n                ]\n              ]\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"POLYGON ((139.5017793594306 9.9644128113879, 0 0, 0 20, 140 10, 139.52808988764045 9.96629213483146, 139 10, 139.5017793594306 9.9644128113879))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  139.5017793594306,\n                  9.9644128113879\n                ],\n                [\n                  0,\n                  0\n                ],\n                [\n                  0,\n                  20\n                ],\n                [\n                  140,\n                  10\n                ],\n                [\n                  139.52808988764045,\n                  9.96629213483146\n                ],\n                [\n                  139,\n                  10\n                ],\n                [\n                  139.5017793594306,\n                  9.9644128113879\n                ]\n              ]\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"MULTIPOLYGON (((139.5017793594306 9.9644128113879, 0 0, 0 20, 140 10, 139.52808988764045 9.96629213483146, 139 10, 139.5017793594306 9.9644128113879)),((139.5017793594306 9.9644128113879, 139.52808988764045 9.96629213483146, 280 1, 280 0, 139.5017793594306 9.9644128113879)))\",\n          \"geometry\": {\n            \"type\": \"MultiPolygon\",\n            \"coordinates\": [\n              [\n                [\n                  [\n                    139.5017793594306,\n                    9.9644128113879\n                  ],\n                  [\n                    0,\n                    0\n                  ],\n                  [\n                    0,\n                    20\n                  ],\n                  [\n                    140,\n                    10\n                  ],\n                  [\n                    139.52808988764045,\n                    9.96629213483146\n                  ],\n                  [\n                    139,\n                    10\n                  ],\n                  [\n                    139.5017793594306,\n                    9.9644128113879\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    139.5017793594306,\n                    9.9644128113879\n                  ],\n                  [\n                    139.52808988764045,\n                    9.96629213483146\n                  ],\n                  [\n                    280,\n                    1\n                  ],\n                  [\n                    280,\n                    0\n                  ],\n                  [\n                    139.5017793594306,\n                    9.9644128113879\n                  ]\n                ]\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionAAPrec\",\n      \"category\": \"function\",\n      \"title\": \"AA - sliver triangle with multiple intersecting boxes\",\n      \"id\": \"18-013\",\n      \"a\": {\n        \"wkt\": \"MULTIPOLYGON (((1 4, 1 1, 2 1, 2 4, 1 4)),((3 4, 3 1, 4 1, 4 4, 3 4)),((5 4, 5 1, 6 1, 6 4, 5 4)),((7 4, 7 1, 8 1, 8 4, 7 4)),((9 4, 9 1, 10 1, 10 4, 9 4)))\",\n        \"geometry\": {\n          \"type\": \"MultiPolygon\",\n          \"coordinates\": [\n            [\n              [\n                [\n                  1,\n                  4\n                ],\n                [\n                  1,\n                  1\n                ],\n                [\n                  2,\n                  1\n                ],\n                [\n                  2,\n                  4\n                ],\n                [\n                  1,\n                  4\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  3,\n                  4\n                ],\n                [\n                  3,\n                  1\n                ],\n                [\n                  4,\n                  1\n                ],\n                [\n                  4,\n                  4\n                ],\n                [\n                  3,\n                  4\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  5,\n                  4\n                ],\n                [\n                  5,\n                  1\n                ],\n                [\n                  6,\n                  1\n                ],\n                [\n                  6,\n                  4\n                ],\n                [\n                  5,\n                  4\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  7,\n                  4\n                ],\n                [\n                  7,\n                  1\n                ],\n                [\n                  8,\n                  1\n                ],\n                [\n                  8,\n                  4\n                ],\n                [\n                  7,\n                  4\n                ]\n              ]\n            ],\n            [\n              [\n                [\n                  9,\n                  4\n                ],\n                [\n                  9,\n                  1\n                ],\n                [\n                  10,\n                  1\n                ],\n                [\n                  10,\n                  4\n                ],\n                [\n                  9,\n                  4\n                ]\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((0 2, 11 3, 11 2, 0 2))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                0,\n                2\n              ],\n              [\n                11,\n                3\n              ],\n              [\n                11,\n                2\n              ],\n              [\n                0,\n                2\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"212101212\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((1 1, 1 4, 10 4, 10 1, 1 1))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  1,\n                  1\n                ],\n                [\n                  1,\n                  4\n                ],\n                [\n                  10,\n                  4\n                ],\n                [\n                  10,\n                  1\n                ],\n                [\n                  1,\n                  1\n                ]\n              ]\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"MULTIPOLYGON (((1 2, 1 2.090909090909091, 2 2.1818181818181817, 2 2, 1 2)),((3 2, 3 2.272727272727273, 4 2.3636363636363638, 4 2, 3 2)),((5 2, 5 2.4545454545454546, 6 2.5454545454545454, 6 2, 5 2)),((7 2, 7 2.6363636363636362, 8 2.727272727272727, 8 2, 7 2)),((9 2, 9 2.8181818181818183, 10 2.909090909090909, 10 2, 9 2)))\",\n          \"geometry\": {\n            \"type\": \"MultiPolygon\",\n            \"coordinates\": [\n              [\n                [\n                  [\n                    1,\n                    2\n                  ],\n                  [\n                    1,\n                    2.090909090909091\n                  ],\n                  [\n                    2,\n                    2.1818181818181817\n                  ],\n                  [\n                    2,\n                    2\n                  ],\n                  [\n                    1,\n                    2\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    3,\n                    2\n                  ],\n                  [\n                    3,\n                    2.272727272727273\n                  ],\n                  [\n                    4,\n                    2.3636363636363638\n                  ],\n                  [\n                    4,\n                    2\n                  ],\n                  [\n                    3,\n                    2\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    5,\n                    2\n                  ],\n                  [\n                    5,\n                    2.4545454545454546\n                  ],\n                  [\n                    6,\n                    2.5454545454545454\n                  ],\n                  [\n                    6,\n                    2\n                  ],\n                  [\n                    5,\n                    2\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    7,\n                    2\n                  ],\n                  [\n                    7,\n                    2.6363636363636362\n                  ],\n                  [\n                    8,\n                    2.727272727272727\n                  ],\n                  [\n                    8,\n                    2\n                  ],\n                  [\n                    7,\n                    2\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    9,\n                    2\n                  ],\n                  [\n                    9,\n                    2.8181818181818183\n                  ],\n                  [\n                    10,\n                    2.909090909090909\n                  ],\n                  [\n                    10,\n                    2\n                  ],\n                  [\n                    9,\n                    2\n                  ]\n                ]\n              ]\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"POLYGON ((1 2.090909090909091, 1 4, 2 4, 2 2.1818181818181817, 3 2.272727272727273, 3 4, 4 4, 4 2.3636363636363638, 5 2.4545454545454546, 5 4, 6 4, 6 2.5454545454545454, 7 2.6363636363636362, 7 4, 8 4, 8 2.727272727272727, 9 2.8181818181818183, 9 4, 10 4, 10 2.909090909090909, 11 3, 11 2, 10 2, 10 1, 9 1, 9 2, 8 2, 8 1, 7 1, 7 2, 6 2, 6 1, 5 1, 5 2, 4 2, 4 1, 3 1, 3 2, 2 2, 2 1, 1 1, 1 2, 0 2, 1 2.090909090909091))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  1,\n                  2.090909090909091\n                ],\n                [\n                  1,\n                  4\n                ],\n                [\n                  2,\n                  4\n                ],\n                [\n                  2,\n                  2.1818181818181817\n                ],\n                [\n                  3,\n                  2.272727272727273\n                ],\n                [\n                  3,\n                  4\n                ],\n                [\n                  4,\n                  4\n                ],\n                [\n                  4,\n                  2.3636363636363638\n                ],\n                [\n                  5,\n                  2.4545454545454546\n                ],\n                [\n                  5,\n                  4\n                ],\n                [\n                  6,\n                  4\n                ],\n                [\n                  6,\n                  2.5454545454545454\n                ],\n                [\n                  7,\n                  2.6363636363636362\n                ],\n                [\n                  7,\n                  4\n                ],\n                [\n                  8,\n                  4\n                ],\n                [\n                  8,\n                  2.727272727272727\n                ],\n                [\n                  9,\n                  2.8181818181818183\n                ],\n                [\n                  9,\n                  4\n                ],\n                [\n                  10,\n                  4\n                ],\n                [\n                  10,\n                  2.909090909090909\n                ],\n                [\n                  11,\n                  3\n                ],\n                [\n                  11,\n                  2\n                ],\n                [\n                  10,\n                  2\n                ],\n                [\n                  10,\n                  1\n                ],\n                [\n                  9,\n                  1\n                ],\n                [\n                  9,\n                  2\n                ],\n                [\n                  8,\n                  2\n                ],\n                [\n                  8,\n                  1\n                ],\n                [\n                  7,\n                  1\n                ],\n                [\n                  7,\n                  2\n                ],\n                [\n                  6,\n                  2\n                ],\n                [\n                  6,\n                  1\n                ],\n                [\n                  5,\n                  1\n                ],\n                [\n                  5,\n                  2\n                ],\n                [\n                  4,\n                  2\n                ],\n                [\n                  4,\n                  1\n                ],\n                [\n                  3,\n                  1\n                ],\n                [\n                  3,\n                  2\n                ],\n                [\n                  2,\n                  2\n                ],\n                [\n                  2,\n                  1\n                ],\n                [\n                  1,\n                  1\n                ],\n                [\n                  1,\n                  2\n                ],\n                [\n                  0,\n                  2\n                ],\n                [\n                  1,\n                  2.090909090909091\n                ]\n              ]\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"MULTIPOLYGON (((1 2.090909090909091, 1 4, 2 4, 2 2.1818181818181817, 1 2.090909090909091)),((2 2, 2 1, 1 1, 1 2, 2 2)),((3 2.272727272727273, 3 4, 4 4, 4 2.3636363636363638, 3 2.272727272727273)),((4 2, 4 1, 3 1, 3 2, 4 2)),((5 2.4545454545454546, 5 4, 6 4, 6 2.5454545454545454, 5 2.4545454545454546)),((6 2, 6 1, 5 1, 5 2, 6 2)),((7 2.6363636363636362, 7 4, 8 4, 8 2.727272727272727, 7 2.6363636363636362)),((8 2, 8 1, 7 1, 7 2, 8 2)),((9 2.8181818181818183, 9 4, 10 4, 10 2.909090909090909, 9 2.8181818181818183)),((10 2, 10 1, 9 1, 9 2, 10 2)))\",\n          \"geometry\": {\n            \"type\": \"MultiPolygon\",\n            \"coordinates\": [\n              [\n                [\n                  [\n                    1,\n                    2.090909090909091\n                  ],\n                  [\n                    1,\n                    4\n                  ],\n                  [\n                    2,\n                    4\n                  ],\n                  [\n                    2,\n                    2.1818181818181817\n                  ],\n                  [\n                    1,\n                    2.090909090909091\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    2,\n                    2\n                  ],\n                  [\n                    2,\n                    1\n                  ],\n                  [\n                    1,\n                    1\n                  ],\n                  [\n                    1,\n                    2\n                  ],\n                  [\n                    2,\n                    2\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    3,\n                    2.272727272727273\n                  ],\n                  [\n                    3,\n                    4\n                  ],\n                  [\n                    4,\n                    4\n                  ],\n                  [\n                    4,\n                    2.3636363636363638\n                  ],\n                  [\n                    3,\n                    2.272727272727273\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    4,\n                    2\n                  ],\n                  [\n                    4,\n                    1\n                  ],\n                  [\n                    3,\n                    1\n                  ],\n                  [\n                    3,\n                    2\n                  ],\n                  [\n                    4,\n                    2\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    5,\n                    2.4545454545454546\n                  ],\n                  [\n                    5,\n                    4\n                  ],\n                  [\n                    6,\n                    4\n                  ],\n                  [\n                    6,\n                    2.5454545454545454\n                  ],\n                  [\n                    5,\n                    2.4545454545454546\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    6,\n                    2\n                  ],\n                  [\n                    6,\n                    1\n                  ],\n                  [\n                    5,\n                    1\n                  ],\n                  [\n                    5,\n                    2\n                  ],\n                  [\n                    6,\n                    2\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    7,\n                    2.6363636363636362\n                  ],\n                  [\n                    7,\n                    4\n                  ],\n                  [\n                    8,\n                    4\n                  ],\n                  [\n                    8,\n                    2.727272727272727\n                  ],\n                  [\n                    7,\n                    2.6363636363636362\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    8,\n                    2\n                  ],\n                  [\n                    8,\n                    1\n                  ],\n                  [\n                    7,\n                    1\n                  ],\n                  [\n                    7,\n                    2\n                  ],\n                  [\n                    8,\n                    2\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    9,\n                    2.8181818181818183\n                  ],\n                  [\n                    9,\n                    4\n                  ],\n                  [\n                    10,\n                    4\n                  ],\n                  [\n                    10,\n                    2.909090909090909\n                  ],\n                  [\n                    9,\n                    2.8181818181818183\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    10,\n                    2\n                  ],\n                  [\n                    10,\n                    1\n                  ],\n                  [\n                    9,\n                    1\n                  ],\n                  [\n                    9,\n                    2\n                  ],\n                  [\n                    10,\n                    2\n                  ]\n                ]\n              ]\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"MULTIPOLYGON (((1 2.090909090909091, 1 4, 2 4, 2 2.1818181818181817, 1 2.090909090909091)),((1 2.090909090909091, 1 2, 0 2, 1 2.090909090909091)),((2 2, 2 1, 1 1, 1 2, 2 2)),((2 2, 2 2.1818181818181817, 3 2.272727272727273, 3 2, 2 2)),((3 2.272727272727273, 3 4, 4 4, 4 2.3636363636363638, 3 2.272727272727273)),((4 2, 4 1, 3 1, 3 2, 4 2)),((4 2, 4 2.3636363636363638, 5 2.4545454545454546, 5 2, 4 2)),((5 2.4545454545454546, 5 4, 6 4, 6 2.5454545454545454, 5 2.4545454545454546)),((6 2, 6 1, 5 1, 5 2, 6 2)),((6 2, 6 2.5454545454545454, 7 2.6363636363636362, 7 2, 6 2)),((7 2.6363636363636362, 7 4, 8 4, 8 2.727272727272727, 7 2.6363636363636362)),((8 2, 8 1, 7 1, 7 2, 8 2)),((8 2, 8 2.727272727272727, 9 2.8181818181818183, 9 2, 8 2)),((9 2.8181818181818183, 9 4, 10 4, 10 2.909090909090909, 9 2.8181818181818183)),((10 2, 10 1, 9 1, 9 2, 10 2)),((10 2, 10 2.909090909090909, 11 3, 11 2, 10 2)))\",\n          \"geometry\": {\n            \"type\": \"MultiPolygon\",\n            \"coordinates\": [\n              [\n                [\n                  [\n                    1,\n                    2.090909090909091\n                  ],\n                  [\n                    1,\n                    4\n                  ],\n                  [\n                    2,\n                    4\n                  ],\n                  [\n                    2,\n                    2.1818181818181817\n                  ],\n                  [\n                    1,\n                    2.090909090909091\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    1,\n                    2.090909090909091\n                  ],\n                  [\n                    1,\n                    2\n                  ],\n                  [\n                    0,\n                    2\n                  ],\n                  [\n                    1,\n                    2.090909090909091\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    2,\n                    2\n                  ],\n                  [\n                    2,\n                    1\n                  ],\n                  [\n                    1,\n                    1\n                  ],\n                  [\n                    1,\n                    2\n                  ],\n                  [\n                    2,\n                    2\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    2,\n                    2\n                  ],\n                  [\n                    2,\n                    2.1818181818181817\n                  ],\n                  [\n                    3,\n                    2.272727272727273\n                  ],\n                  [\n                    3,\n                    2\n                  ],\n                  [\n                    2,\n                    2\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    3,\n                    2.272727272727273\n                  ],\n                  [\n                    3,\n                    4\n                  ],\n                  [\n                    4,\n                    4\n                  ],\n                  [\n                    4,\n                    2.3636363636363638\n                  ],\n                  [\n                    3,\n                    2.272727272727273\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    4,\n                    2\n                  ],\n                  [\n                    4,\n                    1\n                  ],\n                  [\n                    3,\n                    1\n                  ],\n                  [\n                    3,\n                    2\n                  ],\n                  [\n                    4,\n                    2\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    4,\n                    2\n                  ],\n                  [\n                    4,\n                    2.3636363636363638\n                  ],\n                  [\n                    5,\n                    2.4545454545454546\n                  ],\n                  [\n                    5,\n                    2\n                  ],\n                  [\n                    4,\n                    2\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    5,\n                    2.4545454545454546\n                  ],\n                  [\n                    5,\n                    4\n                  ],\n                  [\n                    6,\n                    4\n                  ],\n                  [\n                    6,\n                    2.5454545454545454\n                  ],\n                  [\n                    5,\n                    2.4545454545454546\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    6,\n                    2\n                  ],\n                  [\n                    6,\n                    1\n                  ],\n                  [\n                    5,\n                    1\n                  ],\n                  [\n                    5,\n                    2\n                  ],\n                  [\n                    6,\n                    2\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    6,\n                    2\n                  ],\n                  [\n                    6,\n                    2.5454545454545454\n                  ],\n                  [\n                    7,\n                    2.6363636363636362\n                  ],\n                  [\n                    7,\n                    2\n                  ],\n                  [\n                    6,\n                    2\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    7,\n                    2.6363636363636362\n                  ],\n                  [\n                    7,\n                    4\n                  ],\n                  [\n                    8,\n                    4\n                  ],\n                  [\n                    8,\n                    2.727272727272727\n                  ],\n                  [\n                    7,\n                    2.6363636363636362\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    8,\n                    2\n                  ],\n                  [\n                    8,\n                    1\n                  ],\n                  [\n                    7,\n                    1\n                  ],\n                  [\n                    7,\n                    2\n                  ],\n                  [\n                    8,\n                    2\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    8,\n                    2\n                  ],\n                  [\n                    8,\n                    2.727272727272727\n                  ],\n                  [\n                    9,\n                    2.8181818181818183\n                  ],\n                  [\n                    9,\n                    2\n                  ],\n                  [\n                    8,\n                    2\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    9,\n                    2.8181818181818183\n                  ],\n                  [\n                    9,\n                    4\n                  ],\n                  [\n                    10,\n                    4\n                  ],\n                  [\n                    10,\n                    2.909090909090909\n                  ],\n                  [\n                    9,\n                    2.8181818181818183\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    10,\n                    2\n                  ],\n                  [\n                    10,\n                    1\n                  ],\n                  [\n                    9,\n                    1\n                  ],\n                  [\n                    9,\n                    2\n                  ],\n                  [\n                    10,\n                    2\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    10,\n                    2\n                  ],\n                  [\n                    10,\n                    2.909090909090909\n                  ],\n                  [\n                    11,\n                    3\n                  ],\n                  [\n                    11,\n                    2\n                  ],\n                  [\n                    10,\n                    2\n                  ]\n                ]\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionAAPrec\",\n      \"category\": \"function\",\n      \"title\": \"AA - Polygon with hole with outward sliver, cut by polygon\",\n      \"id\": \"18-014\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((20 40, 20 200, 180 200, 180 40, 20 40),(180 120, 120 120, 120 160, 60 120, 120 80, 120 119, 180 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                40\n              ],\n              [\n                20,\n                200\n              ],\n              [\n                180,\n                200\n              ],\n              [\n                180,\n                40\n              ],\n              [\n                20,\n                40\n              ]\n            ],\n            [\n              [\n                180,\n                120\n              ],\n              [\n                120,\n                120\n              ],\n              [\n                120,\n                160\n              ],\n              [\n                60,\n                120\n              ],\n              [\n                120,\n                80\n              ],\n              [\n                120,\n                119\n              ],\n              [\n                180,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((200 160, 160 160, 160 80, 200 80, 200 160))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                200,\n                160\n              ],\n              [\n                160,\n                160\n              ],\n              [\n                160,\n                80\n              ],\n              [\n                200,\n                80\n              ],\n              [\n                200,\n                160\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"212101212\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((20 40, 20 200, 180 200, 180 40, 20 40))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  20,\n                  40\n                ],\n                [\n                  20,\n                  200\n                ],\n                [\n                  180,\n                  200\n                ],\n                [\n                  180,\n                  40\n                ],\n                [\n                  20,\n                  40\n                ]\n              ]\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"MULTIPOLYGON (((180 160, 180 120, 160 120, 160 160, 180 160)),((180 120, 180 80, 160 80, 160 119.66666666666667, 180 120)))\",\n          \"geometry\": {\n            \"type\": \"MultiPolygon\",\n            \"coordinates\": [\n              [\n                [\n                  [\n                    180,\n                    160\n                  ],\n                  [\n                    180,\n                    120\n                  ],\n                  [\n                    160,\n                    120\n                  ],\n                  [\n                    160,\n                    160\n                  ],\n                  [\n                    180,\n                    160\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    180,\n                    120\n                  ],\n                  [\n                    180,\n                    80\n                  ],\n                  [\n                    160,\n                    80\n                  ],\n                  [\n                    160,\n                    119.66666666666667\n                  ],\n                  [\n                    180,\n                    120\n                  ]\n                ]\n              ]\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"POLYGON ((20 40, 20 200, 180 200, 180 160, 200 160, 200 80, 180 80, 180 40, 20 40),(160 120, 120 120, 120 160, 60 120, 120 80, 120 119, 160 119.66666666666667, 160 120))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  20,\n                  40\n                ],\n                [\n                  20,\n                  200\n                ],\n                [\n                  180,\n                  200\n                ],\n                [\n                  180,\n                  160\n                ],\n                [\n                  200,\n                  160\n                ],\n                [\n                  200,\n                  80\n                ],\n                [\n                  180,\n                  80\n                ],\n                [\n                  180,\n                  40\n                ],\n                [\n                  20,\n                  40\n                ]\n              ],\n              [\n                [\n                  160,\n                  120\n                ],\n                [\n                  120,\n                  120\n                ],\n                [\n                  120,\n                  160\n                ],\n                [\n                  60,\n                  120\n                ],\n                [\n                  120,\n                  80\n                ],\n                [\n                  120,\n                  119\n                ],\n                [\n                  160,\n                  119.66666666666667\n                ],\n                [\n                  160,\n                  120\n                ]\n              ]\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"POLYGON ((20 40, 20 200, 180 200, 180 160, 160 160, 160 120, 120 120, 120 160, 60 120, 120 80, 120 119, 160 119.66666666666667, 160 80, 180 80, 180 40, 20 40))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  20,\n                  40\n                ],\n                [\n                  20,\n                  200\n                ],\n                [\n                  180,\n                  200\n                ],\n                [\n                  180,\n                  160\n                ],\n                [\n                  160,\n                  160\n                ],\n                [\n                  160,\n                  120\n                ],\n                [\n                  120,\n                  120\n                ],\n                [\n                  120,\n                  160\n                ],\n                [\n                  60,\n                  120\n                ],\n                [\n                  120,\n                  80\n                ],\n                [\n                  120,\n                  119\n                ],\n                [\n                  160,\n                  119.66666666666667\n                ],\n                [\n                  160,\n                  80\n                ],\n                [\n                  180,\n                  80\n                ],\n                [\n                  180,\n                  40\n                ],\n                [\n                  20,\n                  40\n                ]\n              ]\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"MULTIPOLYGON (((20 40, 20 200, 180 200, 180 160, 160 160, 160 120, 120 120, 120 160, 60 120, 120 80, 120 119, 160 119.66666666666667, 160 80, 180 80, 180 40, 20 40)),((180 120, 180 160, 200 160, 200 80, 180 80, 180 120)),((160 120, 180 120, 160 119.66666666666667, 160 120)))\",\n          \"geometry\": {\n            \"type\": \"MultiPolygon\",\n            \"coordinates\": [\n              [\n                [\n                  [\n                    20,\n                    40\n                  ],\n                  [\n                    20,\n                    200\n                  ],\n                  [\n                    180,\n                    200\n                  ],\n                  [\n                    180,\n                    160\n                  ],\n                  [\n                    160,\n                    160\n                  ],\n                  [\n                    160,\n                    120\n                  ],\n                  [\n                    120,\n                    120\n                  ],\n                  [\n                    120,\n                    160\n                  ],\n                  [\n                    60,\n                    120\n                  ],\n                  [\n                    120,\n                    80\n                  ],\n                  [\n                    120,\n                    119\n                  ],\n                  [\n                    160,\n                    119.66666666666667\n                  ],\n                  [\n                    160,\n                    80\n                  ],\n                  [\n                    180,\n                    80\n                  ],\n                  [\n                    180,\n                    40\n                  ],\n                  [\n                    20,\n                    40\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    180,\n                    120\n                  ],\n                  [\n                    180,\n                    160\n                  ],\n                  [\n                    200,\n                    160\n                  ],\n                  [\n                    200,\n                    80\n                  ],\n                  [\n                    180,\n                    80\n                  ],\n                  [\n                    180,\n                    120\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    160,\n                    120\n                  ],\n                  [\n                    180,\n                    120\n                  ],\n                  [\n                    160,\n                    119.66666666666667\n                  ],\n                  [\n                    160,\n                    120\n                  ]\n                ]\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionAAPrec\",\n      \"category\": \"function\",\n      \"title\": \"AA - Polygon with hole with outward sliver, cut by line\",\n      \"id\": \"18-015\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((20 40, 20 200, 180 200, 180 40, 20 40),(180 120, 120 120, 120 160, 60 120, 120 80, 120 119, 180 120))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                40\n              ],\n              [\n                20,\n                200\n              ],\n              [\n                180,\n                200\n              ],\n              [\n                180,\n                40\n              ],\n              [\n                20,\n                40\n              ]\n            ],\n            [\n              [\n                180,\n                120\n              ],\n              [\n                120,\n                120\n              ],\n              [\n                120,\n                160\n              ],\n              [\n                60,\n                120\n              ],\n              [\n                120,\n                80\n              ],\n              [\n                120,\n                119\n              ],\n              [\n                180,\n                120\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"LINESTRING (160 140, 160 100)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              160,\n              140\n            ],\n            [\n              160,\n              100\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": true,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": false,\n        \"de9im\": \"1020F11F2\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((20 40, 20 200, 180 200, 180 40, 20 40))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  20,\n                  40\n                ],\n                [\n                  20,\n                  200\n                ],\n                [\n                  180,\n                  200\n                ],\n                [\n                  180,\n                  40\n                ],\n                [\n                  20,\n                  40\n                ]\n              ]\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"MULTILINESTRING ((160 140, 160 120),(160 119.66666666666667, 160 100))\",\n          \"geometry\": {\n            \"type\": \"MultiLineString\",\n            \"coordinates\": [\n              [\n                [\n                  160,\n                  140\n                ],\n                [\n                  160,\n                  120\n                ]\n              ],\n              [\n                [\n                  160,\n                  119.66666666666667\n                ],\n                [\n                  160,\n                  100\n                ]\n              ]\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"GEOMETRYCOLLECTION (LINESTRING (160 120, 160 119.66666666666667), POLYGON ((20 40, 20 200, 180 200, 180 120, 180 40, 20 40),(180 120, 160 120, 120 120, 120 160, 60 120, 120 80, 120 119, 160 119.66666666666667, 180 120)))\",\n          \"geometry\": {\n            \"type\": \"GeometryCollection\",\n            \"geometries\": [\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    160,\n                    120\n                  ],\n                  [\n                    160,\n                    119.66666666666667\n                  ]\n                ]\n              },\n              {\n                \"type\": \"Polygon\",\n                \"coordinates\": [\n                  [\n                    [\n                      20,\n                      40\n                    ],\n                    [\n                      20,\n                      200\n                    ],\n                    [\n                      180,\n                      200\n                    ],\n                    [\n                      180,\n                      120\n                    ],\n                    [\n                      180,\n                      40\n                    ],\n                    [\n                      20,\n                      40\n                    ]\n                  ],\n                  [\n                    [\n                      180,\n                      120\n                    ],\n                    [\n                      160,\n                      120\n                    ],\n                    [\n                      120,\n                      120\n                    ],\n                    [\n                      120,\n                      160\n                    ],\n                    [\n                      60,\n                      120\n                    ],\n                    [\n                      120,\n                      80\n                    ],\n                    [\n                      120,\n                      119\n                    ],\n                    [\n                      160,\n                      119.66666666666667\n                    ],\n                    [\n                      180,\n                      120\n                    ]\n                  ]\n                ]\n              }\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"POLYGON ((20 40, 20 200, 180 200, 180 120, 180 40, 20 40),(180 120, 160 120, 120 120, 120 160, 60 120, 120 80, 120 119, 160 119.66666666666667, 180 120))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  20,\n                  40\n                ],\n                [\n                  20,\n                  200\n                ],\n                [\n                  180,\n                  200\n                ],\n                [\n                  180,\n                  120\n                ],\n                [\n                  180,\n                  40\n                ],\n                [\n                  20,\n                  40\n                ]\n              ],\n              [\n                [\n                  180,\n                  120\n                ],\n                [\n                  160,\n                  120\n                ],\n                [\n                  120,\n                  120\n                ],\n                [\n                  120,\n                  160\n                ],\n                [\n                  60,\n                  120\n                ],\n                [\n                  120,\n                  80\n                ],\n                [\n                  120,\n                  119\n                ],\n                [\n                  160,\n                  119.66666666666667\n                ],\n                [\n                  180,\n                  120\n                ]\n              ]\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"GEOMETRYCOLLECTION (LINESTRING (160 120, 160 119.66666666666667), POLYGON ((20 40, 20 200, 180 200, 180 120, 180 40, 20 40),(180 120, 160 120, 120 120, 120 160, 60 120, 120 80, 120 119, 160 119.66666666666667, 180 120)))\",\n          \"geometry\": {\n            \"type\": \"GeometryCollection\",\n            \"geometries\": [\n              {\n                \"type\": \"LineString\",\n                \"coordinates\": [\n                  [\n                    160,\n                    120\n                  ],\n                  [\n                    160,\n                    119.66666666666667\n                  ]\n                ]\n              },\n              {\n                \"type\": \"Polygon\",\n                \"coordinates\": [\n                  [\n                    [\n                      20,\n                      40\n                    ],\n                    [\n                      20,\n                      200\n                    ],\n                    [\n                      180,\n                      200\n                    ],\n                    [\n                      180,\n                      120\n                    ],\n                    [\n                      180,\n                      40\n                    ],\n                    [\n                      20,\n                      40\n                    ]\n                  ],\n                  [\n                    [\n                      180,\n                      120\n                    ],\n                    [\n                      160,\n                      120\n                    ],\n                    [\n                      120,\n                      120\n                    ],\n                    [\n                      120,\n                      160\n                    ],\n                    [\n                      60,\n                      120\n                    ],\n                    [\n                      120,\n                      80\n                    ],\n                    [\n                      120,\n                      119\n                    ],\n                    [\n                      160,\n                      119.66666666666667\n                    ],\n                    [\n                      180,\n                      120\n                    ]\n                  ]\n                ]\n              }\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionAAPrec\",\n      \"category\": \"function\",\n      \"title\": \"AA - Polygon with inward sliver touching hole, cut by polygon\",\n      \"id\": \"18-016\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((20 40, 20 200, 180 200, 180 120, 140 120, 180 119, 180 40, 20 40),(140 160, 80 120, 140 80, 140 160))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                20,\n                40\n              ],\n              [\n                20,\n                200\n              ],\n              [\n                180,\n                200\n              ],\n              [\n                180,\n                120\n              ],\n              [\n                140,\n                120\n              ],\n              [\n                180,\n                119\n              ],\n              [\n                180,\n                40\n              ],\n              [\n                20,\n                40\n              ]\n            ],\n            [\n              [\n                140,\n                160\n              ],\n              [\n                80,\n                120\n              ],\n              [\n                140,\n                80\n              ],\n              [\n                140,\n                160\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((200 160, 150 160, 150 80, 200 80, 200 160))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                200,\n                160\n              ],\n              [\n                150,\n                160\n              ],\n              [\n                150,\n                80\n              ],\n              [\n                200,\n                80\n              ],\n              [\n                200,\n                160\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"212101212\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((20 40, 20 200, 180 200, 180 40, 20 40))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  20,\n                  40\n                ],\n                [\n                  20,\n                  200\n                ],\n                [\n                  180,\n                  200\n                ],\n                [\n                  180,\n                  40\n                ],\n                [\n                  20,\n                  40\n                ]\n              ]\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"MULTIPOLYGON (((180 160, 180 120, 150 120, 150 160, 180 160)),((150 119.75, 180 119, 180 80, 150 80, 150 119.75)))\",\n          \"geometry\": {\n            \"type\": \"MultiPolygon\",\n            \"coordinates\": [\n              [\n                [\n                  [\n                    180,\n                    160\n                  ],\n                  [\n                    180,\n                    120\n                  ],\n                  [\n                    150,\n                    120\n                  ],\n                  [\n                    150,\n                    160\n                  ],\n                  [\n                    180,\n                    160\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    150,\n                    119.75\n                  ],\n                  [\n                    180,\n                    119\n                  ],\n                  [\n                    180,\n                    80\n                  ],\n                  [\n                    150,\n                    80\n                  ],\n                  [\n                    150,\n                    119.75\n                  ]\n                ]\n              ]\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"POLYGON ((20 40, 20 200, 180 200, 180 160, 200 160, 200 80, 180 80, 180 40, 20 40),(150 120, 140 120, 150 119.75, 150 120),(140 120, 140 160, 80 120, 140 80, 140 120))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  20,\n                  40\n                ],\n                [\n                  20,\n                  200\n                ],\n                [\n                  180,\n                  200\n                ],\n                [\n                  180,\n                  160\n                ],\n                [\n                  200,\n                  160\n                ],\n                [\n                  200,\n                  80\n                ],\n                [\n                  180,\n                  80\n                ],\n                [\n                  180,\n                  40\n                ],\n                [\n                  20,\n                  40\n                ]\n              ],\n              [\n                [\n                  150,\n                  120\n                ],\n                [\n                  140,\n                  120\n                ],\n                [\n                  150,\n                  119.75\n                ],\n                [\n                  150,\n                  120\n                ]\n              ],\n              [\n                [\n                  140,\n                  120\n                ],\n                [\n                  140,\n                  160\n                ],\n                [\n                  80,\n                  120\n                ],\n                [\n                  140,\n                  80\n                ],\n                [\n                  140,\n                  120\n                ]\n              ]\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"POLYGON ((20 40, 20 200, 180 200, 180 160, 150 160, 150 120, 140 120, 150 119.75, 150 80, 180 80, 180 40, 20 40),(140 120, 140 160, 80 120, 140 80, 140 120))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  20,\n                  40\n                ],\n                [\n                  20,\n                  200\n                ],\n                [\n                  180,\n                  200\n                ],\n                [\n                  180,\n                  160\n                ],\n                [\n                  150,\n                  160\n                ],\n                [\n                  150,\n                  120\n                ],\n                [\n                  140,\n                  120\n                ],\n                [\n                  150,\n                  119.75\n                ],\n                [\n                  150,\n                  80\n                ],\n                [\n                  180,\n                  80\n                ],\n                [\n                  180,\n                  40\n                ],\n                [\n                  20,\n                  40\n                ]\n              ],\n              [\n                [\n                  140,\n                  120\n                ],\n                [\n                  140,\n                  160\n                ],\n                [\n                  80,\n                  120\n                ],\n                [\n                  140,\n                  80\n                ],\n                [\n                  140,\n                  120\n                ]\n              ]\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"MULTIPOLYGON (((20 40, 20 200, 180 200, 180 160, 150 160, 150 120, 140 120, 150 119.75, 150 80, 180 80, 180 40, 20 40),(140 120, 140 160, 80 120, 140 80, 140 120)),((150 120, 180 120, 180 160, 200 160, 200 80, 180 80, 180 119, 150 119.75, 150 120)))\",\n          \"geometry\": {\n            \"type\": \"MultiPolygon\",\n            \"coordinates\": [\n              [\n                [\n                  [\n                    20,\n                    40\n                  ],\n                  [\n                    20,\n                    200\n                  ],\n                  [\n                    180,\n                    200\n                  ],\n                  [\n                    180,\n                    160\n                  ],\n                  [\n                    150,\n                    160\n                  ],\n                  [\n                    150,\n                    120\n                  ],\n                  [\n                    140,\n                    120\n                  ],\n                  [\n                    150,\n                    119.75\n                  ],\n                  [\n                    150,\n                    80\n                  ],\n                  [\n                    180,\n                    80\n                  ],\n                  [\n                    180,\n                    40\n                  ],\n                  [\n                    20,\n                    40\n                  ]\n                ],\n                [\n                  [\n                    140,\n                    120\n                  ],\n                  [\n                    140,\n                    160\n                  ],\n                  [\n                    80,\n                    120\n                  ],\n                  [\n                    140,\n                    80\n                  ],\n                  [\n                    140,\n                    120\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    150,\n                    120\n                  ],\n                  [\n                    180,\n                    120\n                  ],\n                  [\n                    180,\n                    160\n                  ],\n                  [\n                    200,\n                    160\n                  ],\n                  [\n                    200,\n                    80\n                  ],\n                  [\n                    180,\n                    80\n                  ],\n                  [\n                    180,\n                    119\n                  ],\n                  [\n                    150,\n                    119.75\n                  ],\n                  [\n                    150,\n                    120\n                  ]\n                ]\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestFunctionAAPrec\",\n      \"category\": \"function\",\n      \"title\": \"AA - intersecting slivers, dimensional collapse\",\n      \"id\": \"18-017\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((83 33, 62 402, 68 402, 83 33))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                83,\n                33\n              ],\n              [\n                62,\n                402\n              ],\n              [\n                68,\n                402\n              ],\n              [\n                83,\n                33\n              ]\n            ]\n          ]\n        }\n      },\n      \"b\": {\n        \"wkt\": \"POLYGON ((78 39, 574 76, 576 60, 78 39))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                78,\n                39\n              ],\n              [\n                574,\n                76\n              ],\n              [\n                576,\n                60\n              ],\n              [\n                78,\n                39\n              ]\n            ]\n          ]\n        }\n      },\n      \"relationship\": {\n        \"equals\": false,\n        \"disjoint\": false,\n        \"intersects\": true,\n        \"touches\": false,\n        \"crosses\": false,\n        \"within\": false,\n        \"contains\": false,\n        \"overlaps\": true,\n        \"de9im\": \"212101212\"\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((83 33, 62 402, 68 402, 83 33))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  83,\n                  33\n                ],\n                [\n                  62,\n                  402\n                ],\n                [\n                  68,\n                  402\n                ],\n                [\n                  83,\n                  33\n                ]\n              ]\n            ]\n          }\n        },\n        \"intersection\": {\n          \"wkt\": \"POLYGON ((82.64738359310108 39.195974006937995, 82.63884309660992 39.34604273099711, 82.7417188240485 39.35371692840685, 82.74795873465995 39.200215127365176, 82.64738359310108 39.195974006937995))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  82.64738359310108,\n                  39.195974006937995\n                ],\n                [\n                  82.63884309660992,\n                  39.34604273099711\n                ],\n                [\n                  82.7417188240485,\n                  39.35371692840685\n                ],\n                [\n                  82.74795873465995,\n                  39.200215127365176\n                ],\n                [\n                  82.64738359310108,\n                  39.195974006937995\n                ]\n              ]\n            ]\n          }\n        },\n        \"union\": {\n          \"wkt\": \"POLYGON ((83 33, 82.64738359310108 39.195974006937995, 78 39, 82.63884309660992 39.34604273099711, 62 402, 68 402, 82.7417188240485 39.35371692840685, 574 76, 576 60, 82.74795873465995 39.200215127365176, 83 33))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  83,\n                  33\n                ],\n                [\n                  82.64738359310108,\n                  39.195974006937995\n                ],\n                [\n                  78,\n                  39\n                ],\n                [\n                  82.63884309660992,\n                  39.34604273099711\n                ],\n                [\n                  62,\n                  402\n                ],\n                [\n                  68,\n                  402\n                ],\n                [\n                  82.7417188240485,\n                  39.35371692840685\n                ],\n                [\n                  574,\n                  76\n                ],\n                [\n                  576,\n                  60\n                ],\n                [\n                  82.74795873465995,\n                  39.200215127365176\n                ],\n                [\n                  83,\n                  33\n                ]\n              ]\n            ]\n          }\n        },\n        \"difference\": {\n          \"wkt\": \"MULTIPOLYGON (((83 33, 82.64738359310108 39.195974006937995, 82.74795873465995 39.200215127365176, 83 33)),((82.63884309660992 39.34604273099711, 62 402, 68 402, 82.7417188240485 39.35371692840685, 82.63884309660992 39.34604273099711)))\",\n          \"geometry\": {\n            \"type\": \"MultiPolygon\",\n            \"coordinates\": [\n              [\n                [\n                  [\n                    83,\n                    33\n                  ],\n                  [\n                    82.64738359310108,\n                    39.195974006937995\n                  ],\n                  [\n                    82.74795873465995,\n                    39.200215127365176\n                  ],\n                  [\n                    83,\n                    33\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    82.63884309660992,\n                    39.34604273099711\n                  ],\n                  [\n                    62,\n                    402\n                  ],\n                  [\n                    68,\n                    402\n                  ],\n                  [\n                    82.7417188240485,\n                    39.35371692840685\n                  ],\n                  [\n                    82.63884309660992,\n                    39.34604273099711\n                  ]\n                ]\n              ]\n            ]\n          }\n        },\n        \"symDifference\": {\n          \"wkt\": \"MULTIPOLYGON (((83 33, 82.64738359310108 39.195974006937995, 82.74795873465995 39.200215127365176, 83 33)),((82.63884309660992 39.34604273099711, 82.64738359310108 39.195974006937995, 78 39, 82.63884309660992 39.34604273099711)),((82.63884309660992 39.34604273099711, 62 402, 68 402, 82.7417188240485 39.35371692840685, 82.63884309660992 39.34604273099711)),((82.74795873465995 39.200215127365176, 82.7417188240485 39.35371692840685, 574 76, 576 60, 82.74795873465995 39.200215127365176)))\",\n          \"geometry\": {\n            \"type\": \"MultiPolygon\",\n            \"coordinates\": [\n              [\n                [\n                  [\n                    83,\n                    33\n                  ],\n                  [\n                    82.64738359310108,\n                    39.195974006937995\n                  ],\n                  [\n                    82.74795873465995,\n                    39.200215127365176\n                  ],\n                  [\n                    83,\n                    33\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    82.63884309660992,\n                    39.34604273099711\n                  ],\n                  [\n                    82.64738359310108,\n                    39.195974006937995\n                  ],\n                  [\n                    78,\n                    39\n                  ],\n                  [\n                    82.63884309660992,\n                    39.34604273099711\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    82.63884309660992,\n                    39.34604273099711\n                  ],\n                  [\n                    62,\n                    402\n                  ],\n                  [\n                    68,\n                    402\n                  ],\n                  [\n                    82.7417188240485,\n                    39.35371692840685\n                  ],\n                  [\n                    82.63884309660992,\n                    39.34604273099711\n                  ]\n                ]\n              ],\n              [\n                [\n                  [\n                    82.74795873465995,\n                    39.200215127365176\n                  ],\n                  [\n                    82.7417188240485,\n                    39.35371692840685\n                  ],\n                  [\n                    574,\n                    76\n                  ],\n                  [\n                    576,\n                    60\n                  ],\n                  [\n                    82.74795873465995,\n                    39.200215127365176\n                  ]\n                ]\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestBoundary\",\n      \"category\": \"unary\",\n      \"title\": \"P - point\",\n      \"id\": \"19-001\",\n      \"a\": {\n        \"wkt\": \"POINT (10 10)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            10,\n            10\n          ]\n        }\n      },\n      \"functions\": {\n        \"getBoundary\": {\n          \"wkt\": \"GEOMETRYCOLLECTION EMPTY\",\n          \"geometry\": null\n        }\n      }\n    },\n    {\n      \"group\": \"TestBoundary\",\n      \"category\": \"unary\",\n      \"title\": \"mP - MultiPoint\",\n      \"id\": \"19-002\",\n      \"a\": {\n        \"wkt\": \"MULTIPOINT (10 10, 20 20)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              10,\n              10\n            ],\n            [\n              20,\n              20\n            ]\n          ]\n        }\n      },\n      \"functions\": {\n        \"getBoundary\": {\n          \"wkt\": \"GEOMETRYCOLLECTION EMPTY\",\n          \"geometry\": null\n        }\n      }\n    },\n    {\n      \"group\": \"TestBoundary\",\n      \"category\": \"unary\",\n      \"title\": \"L - Line\",\n      \"id\": \"19-003\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (10 10, 20 20)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              10,\n              10\n            ],\n            [\n              20,\n              20\n            ]\n          ]\n        }\n      },\n      \"functions\": {\n        \"getBoundary\": {\n          \"wkt\": \"MULTIPOINT (10 10, 20 20)\",\n          \"geometry\": {\n            \"type\": \"MultiPoint\",\n            \"coordinates\": [\n              [\n                10,\n                10\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestBoundary\",\n      \"category\": \"unary\",\n      \"title\": \"L - closed\",\n      \"id\": \"19-004\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (10 10, 20 20, 20 10, 10 10)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              10,\n              10\n            ],\n            [\n              20,\n              20\n            ],\n            [\n              20,\n              10\n            ],\n            [\n              10,\n              10\n            ]\n          ]\n        }\n      },\n      \"functions\": {\n        \"getBoundary\": {\n          \"wkt\": \"MULTIPOINT EMPTY\",\n          \"geometry\": null\n        }\n      }\n    },\n    {\n      \"group\": \"TestBoundary\",\n      \"category\": \"unary\",\n      \"title\": \"L - self-intersecting with boundary\",\n      \"id\": \"19-005\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (40 40, 100 100, 180 100, 180 180, 100 180, 100 100)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              40,\n              40\n            ],\n            [\n              100,\n              100\n            ],\n            [\n              180,\n              100\n            ],\n            [\n              180,\n              180\n            ],\n            [\n              100,\n              180\n            ],\n            [\n              100,\n              100\n            ]\n          ]\n        }\n      },\n      \"functions\": {\n        \"getBoundary\": {\n          \"wkt\": \"MULTIPOINT (40 40, 100 100)\",\n          \"geometry\": {\n            \"type\": \"MultiPoint\",\n            \"coordinates\": [\n              [\n                40,\n                40\n              ],\n              [\n                100,\n                100\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestBoundary\",\n      \"category\": \"unary\",\n      \"title\": \"mL - 2 lines with common endpoint\",\n      \"id\": \"19-006\",\n      \"a\": {\n        \"wkt\": \"MULTILINESTRING ((10 10, 20 20),(20 20, 30 30))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                10,\n                10\n              ],\n              [\n                20,\n                20\n              ]\n            ],\n            [\n              [\n                20,\n                20\n              ],\n              [\n                30,\n                30\n              ]\n            ]\n          ]\n        }\n      },\n      \"functions\": {\n        \"getBoundary\": {\n          \"wkt\": \"MULTIPOINT (10 10, 30 30)\",\n          \"geometry\": {\n            \"type\": \"MultiPoint\",\n            \"coordinates\": [\n              [\n                10,\n                10\n              ],\n              [\n                30,\n                30\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestBoundary\",\n      \"category\": \"unary\",\n      \"title\": \"mL - 3 lines with common endpoint\",\n      \"id\": \"19-007\",\n      \"a\": {\n        \"wkt\": \"MULTILINESTRING ((10 10, 20 20),(20 20, 30 20),(20 20, 30 30))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                10,\n                10\n              ],\n              [\n                20,\n                20\n              ]\n            ],\n            [\n              [\n                20,\n                20\n              ],\n              [\n                30,\n                20\n              ]\n            ],\n            [\n              [\n                20,\n                20\n              ],\n              [\n                30,\n                30\n              ]\n            ]\n          ]\n        }\n      },\n      \"functions\": {\n        \"getBoundary\": {\n          \"wkt\": \"MULTIPOINT (10 10, 20 20, 30 20, 30 30)\",\n          \"geometry\": {\n            \"type\": \"MultiPoint\",\n            \"coordinates\": [\n              [\n                10,\n                10\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                30,\n                20\n              ],\n              [\n                30,\n                30\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestBoundary\",\n      \"category\": \"unary\",\n      \"title\": \"mL - 4 lines with common endpoint\",\n      \"id\": \"19-008\",\n      \"a\": {\n        \"wkt\": \"MULTILINESTRING ((10 10, 20 20),(20 20, 30 20),(20 20, 30 30),(20 20, 30 40))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                10,\n                10\n              ],\n              [\n                20,\n                20\n              ]\n            ],\n            [\n              [\n                20,\n                20\n              ],\n              [\n                30,\n                20\n              ]\n            ],\n            [\n              [\n                20,\n                20\n              ],\n              [\n                30,\n                30\n              ]\n            ],\n            [\n              [\n                20,\n                20\n              ],\n              [\n                30,\n                40\n              ]\n            ]\n          ]\n        }\n      },\n      \"functions\": {\n        \"getBoundary\": {\n          \"wkt\": \"MULTIPOINT (10 10, 30 20, 30 30, 30 40)\",\n          \"geometry\": {\n            \"type\": \"MultiPoint\",\n            \"coordinates\": [\n              [\n                10,\n                10\n              ],\n              [\n                30,\n                20\n              ],\n              [\n                30,\n                30\n              ],\n              [\n                30,\n                40\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestBoundary\",\n      \"category\": \"unary\",\n      \"title\": \"mL - 2 lines, one closed, with common endpoint\",\n      \"id\": \"19-009\",\n      \"a\": {\n        \"wkt\": \"MULTILINESTRING ((10 10, 20 20),(20 20, 20 30, 30 30, 30 20, 20 20))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                10,\n                10\n              ],\n              [\n                20,\n                20\n              ]\n            ],\n            [\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                30\n              ],\n              [\n                30,\n                30\n              ],\n              [\n                30,\n                20\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"functions\": {\n        \"getBoundary\": {\n          \"wkt\": \"MULTIPOINT (10 10, 20 20)\",\n          \"geometry\": {\n            \"type\": \"MultiPoint\",\n            \"coordinates\": [\n              [\n                10,\n                10\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestBoundary\",\n      \"category\": \"unary\",\n      \"title\": \"L - 1 line, self-intersecting, topologically equal to prev case\",\n      \"id\": \"19-010\",\n      \"a\": {\n        \"wkt\": \"MULTILINESTRING ((10 10, 20 20, 20 30, 30 30, 30 20, 20 20))\",\n        \"geometry\": {\n          \"type\": \"MultiLineString\",\n          \"coordinates\": [\n            [\n              [\n                10,\n                10\n              ],\n              [\n                20,\n                20\n              ],\n              [\n                20,\n                30\n              ],\n              [\n                30,\n                30\n              ],\n              [\n                30,\n                20\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          ]\n        }\n      },\n      \"functions\": {\n        \"getBoundary\": {\n          \"wkt\": \"MULTIPOINT (10 10, 20 20)\",\n          \"geometry\": {\n            \"type\": \"MultiPoint\",\n            \"coordinates\": [\n              [\n                10,\n                10\n              ],\n              [\n                20,\n                20\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestBoundary\",\n      \"category\": \"unary\",\n      \"title\": \"A - polygon with no holes\",\n      \"id\": \"19-011\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((40 60, 420 60, 420 320, 40 320, 40 60))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                40,\n                60\n              ],\n              [\n                420,\n                60\n              ],\n              [\n                420,\n                320\n              ],\n              [\n                40,\n                320\n              ],\n              [\n                40,\n                60\n              ]\n            ]\n          ]\n        }\n      },\n      \"functions\": {\n        \"getBoundary\": {\n          \"wkt\": \"MULTILINESTRING ((40 60, 420 60, 420 320, 40 320, 40 60))\",\n          \"geometry\": {\n            \"type\": \"MultiLineString\",\n            \"coordinates\": [\n              [\n                [\n                  40,\n                  60\n                ],\n                [\n                  420,\n                  60\n                ],\n                [\n                  420,\n                  320\n                ],\n                [\n                  40,\n                  320\n                ],\n                [\n                  40,\n                  60\n                ]\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestBoundary\",\n      \"category\": \"unary\",\n      \"title\": \"A - polygon with 1 hole\",\n      \"id\": \"19-012\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((40 60, 420 60, 420 320, 40 320, 40 60),(200 140, 160 220, 260 200, 200 140))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                40,\n                60\n              ],\n              [\n                420,\n                60\n              ],\n              [\n                420,\n                320\n              ],\n              [\n                40,\n                320\n              ],\n              [\n                40,\n                60\n              ]\n            ],\n            [\n              [\n                200,\n                140\n              ],\n              [\n                160,\n                220\n              ],\n              [\n                260,\n                200\n              ],\n              [\n                200,\n                140\n              ]\n            ]\n          ]\n        }\n      },\n      \"functions\": {\n        \"getBoundary\": {\n          \"wkt\": \"MULTILINESTRING ((40 60, 420 60, 420 320, 40 320, 40 60),(200 140, 160 220, 260 200, 200 140))\",\n          \"geometry\": {\n            \"type\": \"MultiLineString\",\n            \"coordinates\": [\n              [\n                [\n                  40,\n                  60\n                ],\n                [\n                  420,\n                  60\n                ],\n                [\n                  420,\n                  320\n                ],\n                [\n                  40,\n                  320\n                ],\n                [\n                  40,\n                  60\n                ]\n              ],\n              [\n                [\n                  200,\n                  140\n                ],\n                [\n                  160,\n                  220\n                ],\n                [\n                  260,\n                  200\n                ],\n                [\n                  200,\n                  140\n                ]\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestConvexHull\",\n      \"category\": \"unary\",\n      \"title\": \"Several points collinear and overlapping\",\n      \"id\": \"20-001\",\n      \"a\": {\n        \"wkt\": \"MULTIPOINT (130 240, 130 240, 130 240, 570 240, 570 240, 570 240, 650 240)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              130,\n              240\n            ],\n            [\n              130,\n              240\n            ],\n            [\n              130,\n              240\n            ],\n            [\n              570,\n              240\n            ],\n            [\n              570,\n              240\n            ],\n            [\n              570,\n              240\n            ],\n            [\n              650,\n              240\n            ]\n          ]\n        }\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"LINESTRING (130 240, 650 240)\",\n          \"geometry\": {\n            \"type\": \"LineString\",\n            \"coordinates\": [\n              [\n                130,\n                240\n              ],\n              [\n                650,\n                240\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestConvexHull\",\n      \"category\": \"unary\",\n      \"title\": \"Convex hull\",\n      \"id\": \"20-002\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((40 60, 420 60, 420 320, 40 320, 40 60),(200 140, 160 220, 260 200, 200 140))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                40,\n                60\n              ],\n              [\n                420,\n                60\n              ],\n              [\n                420,\n                320\n              ],\n              [\n                40,\n                320\n              ],\n              [\n                40,\n                60\n              ]\n            ],\n            [\n              [\n                200,\n                140\n              ],\n              [\n                160,\n                220\n              ],\n              [\n                260,\n                200\n              ],\n              [\n                200,\n                140\n              ]\n            ]\n          ]\n        }\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((40 60, 40 320, 420 320, 420 60, 40 60))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  40,\n                  60\n                ],\n                [\n                  40,\n                  320\n                ],\n                [\n                  420,\n                  320\n                ],\n                [\n                  420,\n                  60\n                ],\n                [\n                  40,\n                  60\n                ]\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestConvexHull\",\n      \"category\": \"unary\",\n      \"title\": \"Convex hull\",\n      \"id\": \"20-003\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((10 10, 100 10, 100 100, 10 100, 10 10))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                10,\n                10\n              ],\n              [\n                100,\n                10\n              ],\n              [\n                100,\n                100\n              ],\n              [\n                10,\n                100\n              ],\n              [\n                10,\n                10\n              ]\n            ]\n          ]\n        }\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((10 10, 10 100, 100 100, 100 10, 10 10))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  10,\n                  10\n                ],\n                [\n                  10,\n                  100\n                ],\n                [\n                  100,\n                  100\n                ],\n                [\n                  100,\n                  10\n                ],\n                [\n                  10,\n                  10\n                ]\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestConvexHull\",\n      \"category\": \"unary\",\n      \"title\": \"Point\",\n      \"id\": \"20-004\",\n      \"a\": {\n        \"wkt\": \"POINT (20 20)\",\n        \"geometry\": {\n          \"type\": \"Point\",\n          \"coordinates\": [\n            20,\n            20\n          ]\n        }\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POINT (20 20)\",\n          \"geometry\": {\n            \"type\": \"Point\",\n            \"coordinates\": [\n              20,\n              20\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestConvexHull\",\n      \"category\": \"unary\",\n      \"title\": \"Horizontal Line\",\n      \"id\": \"20-005\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (30 220, 240 220, 240 220)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              30,\n              220\n            ],\n            [\n              240,\n              220\n            ],\n            [\n              240,\n              220\n            ]\n          ]\n        }\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"LINESTRING (30 220, 240 220)\",\n          \"geometry\": {\n            \"type\": \"LineString\",\n            \"coordinates\": [\n              [\n                30,\n                220\n              ],\n              [\n                240,\n                220\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestConvexHull\",\n      \"category\": \"unary\",\n      \"title\": \"Vertical Line\",\n      \"id\": \"20-006\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (110 290, 110 100, 110 100)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              110,\n              290\n            ],\n            [\n              110,\n              100\n            ],\n            [\n              110,\n              100\n            ]\n          ]\n        }\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"LINESTRING (110 290, 110 100)\",\n          \"geometry\": {\n            \"type\": \"LineString\",\n            \"coordinates\": [\n              [\n                110,\n                290\n              ],\n              [\n                110,\n                100\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestConvexHull\",\n      \"category\": \"unary\",\n      \"title\": \"Spiral\",\n      \"id\": \"20-007\",\n      \"a\": {\n        \"wkt\": \"LINESTRING (120 230, 120 200, 150 180, 180 220, 160 260, 90 250, 80 190, 140 110, 230 150, 240 230, 180 320, 60 310, 40 160, 140 50, 280 140)\",\n        \"geometry\": {\n          \"type\": \"LineString\",\n          \"coordinates\": [\n            [\n              120,\n              230\n            ],\n            [\n              120,\n              200\n            ],\n            [\n              150,\n              180\n            ],\n            [\n              180,\n              220\n            ],\n            [\n              160,\n              260\n            ],\n            [\n              90,\n              250\n            ],\n            [\n              80,\n              190\n            ],\n            [\n              140,\n              110\n            ],\n            [\n              230,\n              150\n            ],\n            [\n              240,\n              230\n            ],\n            [\n              180,\n              320\n            ],\n            [\n              60,\n              310\n            ],\n            [\n              40,\n              160\n            ],\n            [\n              140,\n              50\n            ],\n            [\n              280,\n              140\n            ]\n          ]\n        }\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((140 50, 40 160, 60 310, 180 320, 240 230, 280 140, 140 50))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  140,\n                  50\n                ],\n                [\n                  40,\n                  160\n                ],\n                [\n                  60,\n                  310\n                ],\n                [\n                  180,\n                  320\n                ],\n                [\n                  240,\n                  230\n                ],\n                [\n                  280,\n                  140\n                ],\n                [\n                  140,\n                  50\n                ]\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestConvexHull\",\n      \"category\": \"unary\",\n      \"title\": \"Starlike Polygon\",\n      \"id\": \"20-008\",\n      \"a\": {\n        \"wkt\": \"POLYGON ((200 360, 230 210, 100 190, 270 150, 360 10, 320 200, 490 230, 280 240, 200 360),(220 300, 250 200, 150 190, 290 150, 330 70, 310 210, 390 230, 280 230, 220 300))\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                200,\n                360\n              ],\n              [\n                230,\n                210\n              ],\n              [\n                100,\n                190\n              ],\n              [\n                270,\n                150\n              ],\n              [\n                360,\n                10\n              ],\n              [\n                320,\n                200\n              ],\n              [\n                490,\n                230\n              ],\n              [\n                280,\n                240\n              ],\n              [\n                200,\n                360\n              ]\n            ],\n            [\n              [\n                220,\n                300\n              ],\n              [\n                250,\n                200\n              ],\n              [\n                150,\n                190\n              ],\n              [\n                290,\n                150\n              ],\n              [\n                330,\n                70\n              ],\n              [\n                310,\n                210\n              ],\n              [\n                390,\n                230\n              ],\n              [\n                280,\n                230\n              ],\n              [\n                220,\n                300\n              ]\n            ]\n          ]\n        }\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((360 10, 100 190, 200 360, 490 230, 360 10))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  360,\n                  10\n                ],\n                [\n                  100,\n                  190\n                ],\n                [\n                  200,\n                  360\n                ],\n                [\n                  490,\n                  230\n                ],\n                [\n                  360,\n                  10\n                ]\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestConvexHull\",\n      \"category\": \"unary\",\n      \"title\": \"Most of the points in one area\",\n      \"id\": \"20-009\",\n      \"a\": {\n        \"wkt\": \"MULTIPOINT (70 340, 70 50, 430 50, 420 340, 340 120, 390 110, 390 70, 350 100, 350 50, 370 90, 320 80, 360 120, 350 80, 390 90, 420 80, 410 60, 410 100, 370 100, 380 60, 370 80, 380 100, 360 80, 370 80, 380 70, 390 80, 390 70, 410 70, 400 60, 410 60, 410 60, 410 60, 370 70, 410 50, 410 50, 410 50, 410 50, 410 50, 410 50, 410 50)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              70,\n              340\n            ],\n            [\n              70,\n              50\n            ],\n            [\n              430,\n              50\n            ],\n            [\n              420,\n              340\n            ],\n            [\n              340,\n              120\n            ],\n            [\n              390,\n              110\n            ],\n            [\n              390,\n              70\n            ],\n            [\n              350,\n              100\n            ],\n            [\n              350,\n              50\n            ],\n            [\n              370,\n              90\n            ],\n            [\n              320,\n              80\n            ],\n            [\n              360,\n              120\n            ],\n            [\n              350,\n              80\n            ],\n            [\n              390,\n              90\n            ],\n            [\n              420,\n              80\n            ],\n            [\n              410,\n              60\n            ],\n            [\n              410,\n              100\n            ],\n            [\n              370,\n              100\n            ],\n            [\n              380,\n              60\n            ],\n            [\n              370,\n              80\n            ],\n            [\n              380,\n              100\n            ],\n            [\n              360,\n              80\n            ],\n            [\n              370,\n              80\n            ],\n            [\n              380,\n              70\n            ],\n            [\n              390,\n              80\n            ],\n            [\n              390,\n              70\n            ],\n            [\n              410,\n              70\n            ],\n            [\n              400,\n              60\n            ],\n            [\n              410,\n              60\n            ],\n            [\n              410,\n              60\n            ],\n            [\n              410,\n              60\n            ],\n            [\n              370,\n              70\n            ],\n            [\n              410,\n              50\n            ],\n            [\n              410,\n              50\n            ],\n            [\n              410,\n              50\n            ],\n            [\n              410,\n              50\n            ],\n            [\n              410,\n              50\n            ],\n            [\n              410,\n              50\n            ],\n            [\n              410,\n              50\n            ]\n          ]\n        }\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((70 50, 70 340, 420 340, 430 50, 70 50))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  70,\n                  50\n                ],\n                [\n                  70,\n                  340\n                ],\n                [\n                  420,\n                  340\n                ],\n                [\n                  430,\n                  50\n                ],\n                [\n                  70,\n                  50\n                ]\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestConvexHull\",\n      \"category\": \"unary\",\n      \"title\": \"Multipoint\",\n      \"id\": \"20-010\",\n      \"a\": {\n        \"wkt\": \"MULTIPOINT (140 350, 510 140, 110 140, 250 290, 250 50, 300 370, 450 310, 440 160, 290 280, 220 160, 100 260, 320 230, 200 280, 360 130, 330 210, 380 80, 220 210, 380 310, 260 150, 260 110, 170 130)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              140,\n              350\n            ],\n            [\n              510,\n              140\n            ],\n            [\n              110,\n              140\n            ],\n            [\n              250,\n              290\n            ],\n            [\n              250,\n              50\n            ],\n            [\n              300,\n              370\n            ],\n            [\n              450,\n              310\n            ],\n            [\n              440,\n              160\n            ],\n            [\n              290,\n              280\n            ],\n            [\n              220,\n              160\n            ],\n            [\n              100,\n              260\n            ],\n            [\n              320,\n              230\n            ],\n            [\n              200,\n              280\n            ],\n            [\n              360,\n              130\n            ],\n            [\n              330,\n              210\n            ],\n            [\n              380,\n              80\n            ],\n            [\n              220,\n              210\n            ],\n            [\n              380,\n              310\n            ],\n            [\n              260,\n              150\n            ],\n            [\n              260,\n              110\n            ],\n            [\n              170,\n              130\n            ]\n          ]\n        }\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((250 50, 110 140, 100 260, 140 350, 300 370, 450 310, 510 140, 380 80, 250 50))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  250,\n                  50\n                ],\n                [\n                  110,\n                  140\n                ],\n                [\n                  100,\n                  260\n                ],\n                [\n                  140,\n                  350\n                ],\n                [\n                  300,\n                  370\n                ],\n                [\n                  450,\n                  310\n                ],\n                [\n                  510,\n                  140\n                ],\n                [\n                  380,\n                  80\n                ],\n                [\n                  250,\n                  50\n                ]\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestConvexHull\",\n      \"category\": \"unary\",\n      \"title\": \"GeometryCollection\",\n      \"id\": \"20-011\",\n      \"a\": {\n        \"wkt\": \"GEOMETRYCOLLECTION (POINT (110 300), POINT (100 110), POINT (130 210), POINT (150 210), POINT (150 180), POINT (130 170), POINT (140 190), POINT (130 200), LINESTRING (240 50, 210 120, 270 80, 250 140, 330 70, 300 160, 340 130, 340 130), POLYGON ((210 340, 220 260, 150 270, 230 220, 230 140, 270 210, 360 240, 260 250, 260 280, 240 270, 210 340),(230 270, 230 250, 200 250, 240 220, 240 190, 260 220, 290 230, 250 230, 230 270)))\",\n        \"geometry\": {\n          \"type\": \"GeometryCollection\",\n          \"geometries\": [\n            {\n              \"type\": \"Point\",\n              \"coordinates\": [\n                110,\n                300\n              ]\n            },\n            {\n              \"type\": \"Point\",\n              \"coordinates\": [\n                100,\n                110\n              ]\n            },\n            {\n              \"type\": \"Point\",\n              \"coordinates\": [\n                130,\n                210\n              ]\n            },\n            {\n              \"type\": \"Point\",\n              \"coordinates\": [\n                150,\n                210\n              ]\n            },\n            {\n              \"type\": \"Point\",\n              \"coordinates\": [\n                150,\n                180\n              ]\n            },\n            {\n              \"type\": \"Point\",\n              \"coordinates\": [\n                130,\n                170\n              ]\n            },\n            {\n              \"type\": \"Point\",\n              \"coordinates\": [\n                140,\n                190\n              ]\n            },\n            {\n              \"type\": \"Point\",\n              \"coordinates\": [\n                130,\n                200\n              ]\n            },\n            {\n              \"type\": \"LineString\",\n              \"coordinates\": [\n                [\n                  240,\n                  50\n                ],\n                [\n                  210,\n                  120\n                ],\n                [\n                  270,\n                  80\n                ],\n                [\n                  250,\n                  140\n                ],\n                [\n                  330,\n                  70\n                ],\n                [\n                  300,\n                  160\n                ],\n                [\n                  340,\n                  130\n                ],\n                [\n                  340,\n                  130\n                ]\n              ]\n            },\n            {\n              \"type\": \"Polygon\",\n              \"coordinates\": [\n                [\n                  [\n                    210,\n                    340\n                  ],\n                  [\n                    220,\n                    260\n                  ],\n                  [\n                    150,\n                    270\n                  ],\n                  [\n                    230,\n                    220\n                  ],\n                  [\n                    230,\n                    140\n                  ],\n                  [\n                    270,\n                    210\n                  ],\n                  [\n                    360,\n                    240\n                  ],\n                  [\n                    260,\n                    250\n                  ],\n                  [\n                    260,\n                    280\n                  ],\n                  [\n                    240,\n                    270\n                  ],\n                  [\n                    210,\n                    340\n                  ]\n                ],\n                [\n                  [\n                    230,\n                    270\n                  ],\n                  [\n                    230,\n                    250\n                  ],\n                  [\n                    200,\n                    250\n                  ],\n                  [\n                    240,\n                    220\n                  ],\n                  [\n                    240,\n                    190\n                  ],\n                  [\n                    260,\n                    220\n                  ],\n                  [\n                    290,\n                    230\n                  ],\n                  [\n                    250,\n                    230\n                  ],\n                  [\n                    230,\n                    270\n                  ]\n                ]\n              ]\n            }\n          ]\n        }\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((240 50, 100 110, 110 300, 210 340, 360 240, 330 70, 240 50))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  240,\n                  50\n                ],\n                [\n                  100,\n                  110\n                ],\n                [\n                  110,\n                  300\n                ],\n                [\n                  210,\n                  340\n                ],\n                [\n                  360,\n                  240\n                ],\n                [\n                  330,\n                  70\n                ],\n                [\n                  240,\n                  50\n                ]\n              ]\n            ]\n          }\n        }\n      }\n    },\n    {\n      \"group\": \"TestConvexHull\",\n      \"category\": \"unary\",\n      \"title\": \"Collinear L\",\n      \"id\": \"20-012\",\n      \"a\": {\n        \"wkt\": \"MULTIPOINT (50 320, 50 280, 50 230, 50 160, 50 120, 100 120, 160 120, 210 120, 210 180, 210 150, 180 180, 140 180, 140 210, 140 260, 160 180, 140 300, 140 320, 110 320, 80 320)\",\n        \"geometry\": {\n          \"type\": \"MultiPoint\",\n          \"coordinates\": [\n            [\n              50,\n              320\n            ],\n            [\n              50,\n              280\n            ],\n            [\n              50,\n              230\n            ],\n            [\n              50,\n              160\n            ],\n            [\n              50,\n              120\n            ],\n            [\n              100,\n              120\n            ],\n            [\n              160,\n              120\n            ],\n            [\n              210,\n              120\n            ],\n            [\n              210,\n              180\n            ],\n            [\n              210,\n              150\n            ],\n            [\n              180,\n              180\n            ],\n            [\n              140,\n              180\n            ],\n            [\n              140,\n              210\n            ],\n            [\n              140,\n              260\n            ],\n            [\n              160,\n              180\n            ],\n            [\n              140,\n              300\n            ],\n            [\n              140,\n              320\n            ],\n            [\n              110,\n              320\n            ],\n            [\n              80,\n              320\n            ]\n          ]\n        }\n      },\n      \"functions\": {\n        \"convexHull\": {\n          \"wkt\": \"POLYGON ((50 120, 50 320, 140 320, 210 180, 210 120, 50 120))\",\n          \"geometry\": {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n              [\n                [\n                  50,\n                  120\n                ],\n                [\n                  50,\n                  320\n                ],\n                [\n                  140,\n                  320\n                ],\n                [\n                  210,\n                  180\n                ],\n                [\n                  210,\n                  120\n                ],\n                [\n                  50,\n                  120\n                ]\n              ]\n            ]\n          }\n        }\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "lib/topo/cleaner.ex",
    "content": "defmodule Topo.Cleaner do\n  @moduledoc false\n\n  import Topo.Util\n\n  @type geometry ::\n          {number, number}\n          | %{type: String.t(), coordinates: list}\n          | %Geo.Point{}\n          | %Geo.MultiPoint{}\n          | %Geo.LineString{}\n          | %Geo.MultiLineString{}\n          | %Geo.Polygon{}\n          | %Geo.MultiPolygon{}\n\n  @spec clean(geometry) :: geometry\n  def clean({x, y}), do: %Geo.Point{coordinates: {x, y}}\n\n  def clean(%Geo.LineString{coordinates: a}) do\n    %Geo.LineString{coordinates: do_clean_line(a)}\n  end\n\n  def clean(%Geo.Polygon{} = a) do\n    %Geo.Polygon{coordinates: Enum.map(a.coordinates, &do_clean_ring/1)}\n  end\n\n  def clean(%Geo.MultiLineString{} = a) do\n    %Geo.MultiLineString{coordinates: Enum.map(a.coordinates, &do_clean_line/1)}\n  end\n\n  def clean(%Geo.MultiPolygon{} = a) do\n    %Geo.MultiPolygon{\n      coordinates:\n        Enum.map(a.coordinates, fn poly ->\n          Enum.map(poly, &do_clean_ring/1)\n        end)\n    }\n  end\n\n  def clean(%{type: \"Point\", coordinates: coords}), do: clean(%Geo.Point{coordinates: coords})\n\n  def clean(%{type: \"MultiPoint\", coordinates: coords}),\n    do: clean(%Geo.MultiPoint{coordinates: coords})\n\n  def clean(%{type: \"LineString\", coordinates: coords}),\n    do: clean(%Geo.LineString{coordinates: coords})\n\n  def clean(%{type: \"MultiLineString\", coordinates: coords}),\n    do: clean(%Geo.MultiLineString{coordinates: coords})\n\n  def clean(%{type: \"Polygon\", coordinates: coords}), do: clean(%Geo.Polygon{coordinates: coords})\n\n  def clean(%{type: \"MultiPolygon\", coordinates: coords}),\n    do: clean(%Geo.MultiPolygon{coordinates: coords})\n\n  def clean(a), do: a\n\n  defp do_clean_line(line) do\n    if List.first(line) == List.last(line) do\n      do_clean_ring(line)\n    else\n      line |> Enum.dedup() |> assert_no_collinear\n    end\n  end\n\n  defp do_clean_ring(ring) do\n    ring\n    |> Enum.dedup()\n    |> assert_closed\n    |> assert_direction\n    |> assert_no_collinear\n    |> assert_no_collinear_over_closure\n  end\n\n  defp area([a, b, c, d | rest]) do\n    cross(a, b, c) + area([a, c, d | rest])\n  end\n\n  defp area(_), do: 0\n\n  defp assert_closed([a | rest]) do\n    case List.last(rest) do\n      ^a -> [a | rest]\n      _ -> [a | rest] ++ [a]\n    end\n  end\n\n  defp assert_direction(ring) do\n    ring\n    |> area\n    |> reverse_if_negative_area(ring)\n  end\n\n  defp reverse_if_negative_area(area, ring) when area >= 0, do: ring\n  defp reverse_if_negative_area(_, ring), do: Enum.reverse(ring)\n\n  defp assert_no_collinear_over_closure(ring) when length(ring) < 4, do: ring\n\n  defp assert_no_collinear_over_closure([b, c | rest]) do\n    a = Enum.at(rest, -2)\n\n    if collinear?(a, c, b) && between?(a, c, b) do\n      [c | Enum.drop(rest, -1)] ++ [c]\n    else\n      [b, c | rest]\n    end\n  end\nend\n"
  },
  {
    "path": "lib/topo/contains.ex",
    "content": "defmodule Topo.Contains do\n  @moduledoc false\n\n  import Topo.Intersects\n\n  alias Topo.PointRing\n  alias Topo.LineLine\n  alias Topo.LineRing\n  alias Topo.RingRing\n\n  @type geo_struct ::\n          %Geo.Point{}\n          | %Geo.MultiPoint{}\n          | %Geo.LineString{}\n          | %Geo.MultiLineString{}\n          | %Geo.Polygon{}\n          | %Geo.MultiPolygon{}\n\n  @spec contains?(geo_struct, geo_struct) :: boolean\n  def contains?(%Geo.Point{} = a, %Geo.Point{} = b), do: a == b\n  def contains?(%Geo.Point{} = a, %Geo.MultiPoint{} = b), do: contains_all?(a, b, Geo.Point)\n  def contains?(%Geo.Point{}, _), do: false\n\n  def contains?(%Geo.MultiPoint{} = a, %Geo.Point{} = b), do: any_contain?(a, b, Geo.Point)\n  def contains?(%Geo.MultiPoint{} = a, %Geo.MultiPoint{} = b), do: contains_all?(a, b, Geo.Point)\n  def contains?(%Geo.MultiPoint{}, _), do: false\n\n  def contains?(%Geo.LineString{} = a, %Geo.Point{} = b) do\n    cond do\n      List.first(a.coordinates) == List.last(a.coordinates) ->\n        intersects?(a, b)\n\n      intersects?(a, b) ->\n        b.coordinates != List.first(a.coordinates) && b.coordinates != List.last(a.coordinates)\n\n      true ->\n        false\n    end\n  end\n\n  def contains?(%Geo.LineString{} = a, %Geo.MultiPoint{} = b),\n    do: intersects_all?(a, b, Geo.Point) && contains_any?(a, b, Geo.Point)\n\n  def contains?(%Geo.LineString{coordinates: a}, %Geo.LineString{coordinates: b}) do\n    LineLine.contains?(a, b)\n  end\n\n  def contains?(%Geo.LineString{} = a, %Geo.MultiLineString{} = b),\n    do: contains_all?(a, b, Geo.LineString)\n\n  def contains?(%Geo.LineString{}, %Geo.Polygon{}), do: false\n  def contains?(%Geo.LineString{}, %Geo.MultiPolygon{}), do: false\n\n  def contains?(%Geo.MultiLineString{} = a, %Geo.Point{} = b),\n    do: any_contain?(a, b, Geo.LineString)\n\n  def contains?(%Geo.MultiLineString{} = a, %Geo.MultiPoint{} = b),\n    do: intersects_all?(a, b, Geo.Point) && contains_any?(a, b, Geo.Point)\n\n  def contains?(%Geo.MultiLineString{} = a, %Geo.LineString{} = b),\n    do: any_contain?(a, b, Geo.LineString)\n\n  def contains?(%Geo.MultiLineString{} = a, %Geo.MultiLineString{} = b),\n    do: contains_all?(a, b, Geo.LineString)\n\n  def contains?(%Geo.MultiLineString{}, %Geo.Polygon{}), do: false\n  def contains?(%Geo.MultiLineString{}, %Geo.MultiPolygon{}), do: false\n\n  def contains?(%Geo.Polygon{coordinates: [exterior | holes]}, %Geo.Point{coordinates: point}) do\n    PointRing.relate(exterior, point) === :interior &&\n      PointRing.relate_multi(holes, point) === :disjoint\n  end\n\n  def contains?(%Geo.Polygon{} = a, %Geo.MultiPoint{} = b) do\n    contains_any?(a, b, Geo.Point) && intersects_all?(a, b, Geo.Point)\n  end\n\n  def contains?(%Geo.Polygon{coordinates: [a_exterior | a_holes]}, %Geo.LineString{} = b) do\n    LineRing.contains?(a_exterior, b.coordinates) &&\n      LineRing.line_exterior_to_all?(a_holes, b.coordinates)\n  end\n\n  def contains?(%Geo.Polygon{} = a, %Geo.MultiLineString{} = b),\n    do: contains_all?(a, b, Geo.LineString)\n\n  def contains?(%Geo.Polygon{coordinates: [a_exterior | a_holes]}, %Geo.Polygon{\n        coordinates: [b_exterior | b_holes]\n      }) do\n    RingRing.contains?(a_exterior, b_exterior) && holes_contained?(a_holes, b_exterior, b_holes)\n  end\n\n  def contains?(%Geo.Polygon{} = a, %Geo.MultiPolygon{} = b), do: contains_all?(a, b, Geo.Polygon)\n\n  def contains?(%Geo.MultiPolygon{} = a, %Geo.Point{} = b), do: any_contain?(a, b, Geo.Polygon)\n\n  def contains?(%Geo.MultiPolygon{} = a, %Geo.MultiPoint{} = b),\n    do: intersects_all?(a, b, Geo.Point) && contains_any?(a, b, Geo.Point)\n\n  def contains?(%Geo.MultiPolygon{} = a, %Geo.LineString{} = b),\n    do: any_contain?(a, b, Geo.Polygon)\n\n  def contains?(%Geo.MultiPolygon{} = a, %Geo.MultiLineString{} = b),\n    do: contains_all?(a, b, Geo.LineString)\n\n  def contains?(%Geo.MultiPolygon{} = a, %Geo.Polygon{} = b), do: any_contain?(a, b, Geo.Polygon)\n\n  def contains?(%Geo.MultiPolygon{} = a, %Geo.MultiPolygon{} = b),\n    do: contains_all?(a, b, Geo.Polygon)\n\n  defp contains_all?(a, b, component_struct) do\n    Enum.all?(b.coordinates, fn b_comp ->\n      contains?(a, struct(component_struct, %{coordinates: b_comp}))\n    end)\n  end\n\n  defp contains_any?(a, b, component_struct) do\n    Enum.any?(b.coordinates, fn b_comp ->\n      contains?(a, struct(component_struct, %{coordinates: b_comp}))\n    end)\n  end\n\n  defp any_contain?(a, b, component_struct) do\n    Enum.any?(a.coordinates, fn a_comp ->\n      contains?(struct(component_struct, %{coordinates: a_comp}), b)\n    end)\n  end\n\n  defp intersects_all?(a, b, component_struct) do\n    Enum.all?(b.coordinates, fn b_comp ->\n      intersects?(a, struct(component_struct, %{coordinates: b_comp}))\n    end)\n  end\n\n  defp holes_contained?(a_holes, b_exterior, []) do\n    !Enum.any?(a_holes, fn hole ->\n      RingRing.overlaps?(hole, b_exterior) || RingRing.contains?(hole, b_exterior)\n    end)\n  end\n\n  defp holes_contained?(a_holes, b_exterior, b_holes) do\n    holes_intersecting_b = Enum.filter(a_holes, &RingRing.overlaps?(&1, b_exterior))\n\n    Enum.all?(holes_intersecting_b, fn a_hole ->\n      RingRing.contains?(b_exterior, a_hole) &&\n        Enum.any?(b_holes, &RingRing.contains?(&1, a_hole))\n    end)\n  end\nend\n"
  },
  {
    "path": "lib/topo/intersects.ex",
    "content": "defmodule Topo.Intersects do\n  @moduledoc false\n\n  alias Topo.PointLine\n  alias Topo.PointRing\n  alias Topo.LineLine\n  alias Topo.LineRing\n  alias Topo.RingRing\n\n  @type geo_struct ::\n          %Geo.Point{}\n          | %Geo.MultiPoint{}\n          | %Geo.LineString{}\n          | %Geo.MultiLineString{}\n          | %Geo.Polygon{}\n          | %Geo.MultiPolygon{}\n\n  @spec intersects?(geo_struct, geo_struct) :: boolean\n  def intersects?(%Geo.Point{coordinates: c}, %Geo.Point{coordinates: c}), do: true\n  def intersects?(%Geo.Point{}, %Geo.Point{}), do: false\n  def intersects?(%Geo.Point{} = a, %Geo.MultiPoint{} = b), do: intersects_any?(a, b, Geo.Point)\n\n  def intersects?(%Geo.Point{coordinates: a}, %Geo.LineString{coordinates: b}),\n    do: PointLine.relate(b, a) != :disjoint\n\n  def intersects?(%Geo.Point{} = a, %Geo.MultiLineString{} = b),\n    do: intersects_any?(a, b, Geo.LineString)\n\n  def intersects?(%Geo.Point{} = a, %Geo.Polygon{coordinates: [exterior | holes]}) do\n    case PointRing.relate(exterior, a.coordinates) do\n      :interior -> PointRing.relate_multi(holes, a.coordinates) !== :interior\n      :disjoint -> false\n      _ -> true\n    end\n  end\n\n  def intersects?(%Geo.Point{} = a, %Geo.MultiPolygon{} = b),\n    do: intersects_any?(a, b, Geo.Polygon)\n\n  def intersects?(%Geo.MultiPoint{} = a, %Geo.Point{} = b), do: intersects?(b, a)\n\n  def intersects?(%Geo.MultiPoint{} = a, %Geo.MultiPoint{} = b),\n    do: intersects_any?(a, b, Geo.Point)\n\n  def intersects?(%Geo.MultiPoint{} = a, %Geo.LineString{} = b),\n    do: intersects_any?(b, a, Geo.Point)\n\n  def intersects?(%Geo.MultiPoint{} = a, %Geo.MultiLineString{} = b),\n    do: intersects_any?(a, b, Geo.LineString)\n\n  def intersects?(%Geo.MultiPoint{} = a, %Geo.Polygon{} = b), do: intersects_any?(b, a, Geo.Point)\n\n  def intersects?(%Geo.MultiPoint{} = a, %Geo.MultiPolygon{} = b),\n    do: intersects_any?(a, b, Geo.Polygon)\n\n  def intersects?(%Geo.LineString{} = a, %Geo.Point{} = b), do: intersects?(b, a)\n  def intersects?(%Geo.LineString{} = a, %Geo.MultiPoint{} = b), do: intersects?(b, a)\n\n  def intersects?(%Geo.LineString{coordinates: a}, %Geo.LineString{coordinates: b}),\n    do: LineLine.relate(a, b) != :disjoint\n\n  def intersects?(%Geo.LineString{} = a, %Geo.MultiLineString{} = b),\n    do: intersects_any?(a, b, Geo.LineString)\n\n  def intersects?(%Geo.LineString{} = a, %Geo.Polygon{coordinates: [b_exterior | b_holes]}) do\n    LineRing.intersects?(b_exterior, a.coordinates) &&\n      LineRing.none_contain_line?(b_holes, a.coordinates)\n  end\n\n  def intersects?(%Geo.LineString{} = a, %Geo.MultiPolygon{} = b),\n    do: intersects_any?(a, b, Geo.Polygon)\n\n  def intersects?(%Geo.MultiLineString{} = a, %Geo.Point{} = b), do: intersects?(b, a)\n  def intersects?(%Geo.MultiLineString{} = a, %Geo.MultiPoint{} = b), do: intersects?(b, a)\n  def intersects?(%Geo.MultiLineString{} = a, %Geo.LineString{} = b), do: intersects?(b, a)\n\n  def intersects?(%Geo.MultiLineString{} = a, %Geo.MultiLineString{} = b),\n    do: intersects_any?(a, b, Geo.LineString)\n\n  def intersects?(%Geo.MultiLineString{} = a, %Geo.Polygon{} = b),\n    do: intersects_any?(b, a, Geo.LineString)\n\n  def intersects?(%Geo.MultiLineString{} = a, %Geo.MultiPolygon{} = b),\n    do: intersects_any?(a, b, Geo.Polygon)\n\n  def intersects?(%Geo.Polygon{} = a, %Geo.Point{} = b), do: intersects?(b, a)\n  def intersects?(%Geo.Polygon{} = a, %Geo.MultiPoint{} = b), do: intersects?(b, a)\n  def intersects?(%Geo.Polygon{} = a, %Geo.LineString{} = b), do: intersects?(b, a)\n  def intersects?(%Geo.Polygon{} = a, %Geo.MultiLineString{} = b), do: intersects?(b, a)\n\n  def intersects?(%Geo.Polygon{coordinates: [a_exterior | a_holes]}, %Geo.Polygon{\n        coordinates: [b_exterior | b_holes]\n      }) do\n    RingRing.intersects?(a_exterior, b_exterior) &&\n      RingRing.none_contain_ring?(a_holes, b_exterior) &&\n      RingRing.none_contain_ring?(b_holes, a_exterior)\n  end\n\n  def intersects?(%Geo.Polygon{} = a, %Geo.MultiPolygon{} = b),\n    do: intersects_any?(a, b, Geo.Polygon)\n\n  def intersects?(%Geo.MultiPolygon{} = a, %Geo.Point{} = b), do: intersects?(b, a)\n  def intersects?(%Geo.MultiPolygon{} = a, %Geo.MultiPoint{} = b), do: intersects?(b, a)\n  def intersects?(%Geo.MultiPolygon{} = a, %Geo.LineString{} = b), do: intersects?(b, a)\n  def intersects?(%Geo.MultiPolygon{} = a, %Geo.MultiLineString{} = b), do: intersects?(b, a)\n  def intersects?(%Geo.MultiPolygon{} = a, %Geo.Polygon{} = b), do: intersects?(b, a)\n\n  def intersects?(%Geo.MultiPolygon{} = a, %Geo.MultiPolygon{} = b),\n    do: intersects_any?(a, b, Geo.Polygon)\n\n  defp intersects_any?(a, b, component_struct) do\n    Enum.any?(b.coordinates, fn b_comp ->\n      intersects?(a, struct(component_struct, %{coordinates: b_comp}))\n    end)\n  end\nend\n"
  },
  {
    "path": "lib/topo/line_line.ex",
    "content": "defmodule Topo.LineLine do\n  @moduledoc false\n\n  alias Topo.Util\n\n  @spec relate(list, list) :: atom\n  def relate(a, b) do\n    do_linestring_intersects_linestring(a, b)\n  end\n\n  @spec contains?(list, list) :: boolean\n  def contains?([], _), do: false\n  def contains?([_], _), do: false\n\n  def contains?([a1, a2 | rest], [b1, b2]) do\n    (Util.collinear?(a1, a2, b1) && Util.between?(a1, a2, b1) && Util.collinear?(a1, a2, b2) &&\n       Util.between?(a1, a2, b2)) || contains?([a2 | rest], [b1, b2])\n  end\n\n  def contains?(a, b) do\n    do_contains?(a, b) || do_contains?(Enum.reverse(a), b)\n  end\n\n  defp do_contains?(a, b) do\n    cond do\n      List.first(a) == List.last(a) && List.first(b) === List.last(b) ->\n        ring_contains_ring?(Enum.drop(a, 1), Enum.drop(b, 1))\n\n      List.first(a) == List.last(a) ->\n        ring_contains_line?(Enum.drop(a, 1), b)\n\n      !contiguous_subset?(a, b |> Enum.drop(1) |> Enum.drop(-1)) ->\n        false\n\n      first_and_last_on_line?(a, b) ->\n        true\n\n      true ->\n        false\n    end\n  end\n\n  defp ring_contains_ring?(a, b, offset \\\\ 0) do\n    cond do\n      offset >= length(b) -> false\n      Enum.drop(b, offset) ++ Enum.take(b, offset) == a -> true\n      true -> ring_contains_ring?(a, b, offset + 1)\n    end\n  end\n\n  defp ring_contains_line?(_, _, offset \\\\ 0)\n  defp ring_contains_line?(a, _, offset) when offset >= length(a), do: false\n\n  defp ring_contains_line?(a, b, offset) do\n    spin = Enum.drop(a, offset) ++ Enum.take(a, offset)\n\n    cond do\n      !contiguous_subset?(spin, b |> Enum.drop(1) |> Enum.drop(-1)) ->\n        ring_contains_line?(a, b, offset + 1)\n\n      first_and_last_on_line?(spin, b) ->\n        true\n\n      true ->\n        ring_contains_line?(a, b, offset + 1)\n    end\n  end\n\n  defp contiguous_subset?(a, b) do\n    Enum.take(line_up_head(a, b), length(b)) == b ||\n      Enum.take(line_up_head(Enum.reverse(a), b), length(b)) == b\n  end\n\n  defp line_up_head([], _), do: []\n  defp line_up_head([a | rest], [b | _]) when a == b, do: [a | rest]\n  defp line_up_head([_ | rest], b), do: line_up_head(rest, b)\n\n  defp first_and_last_on_line?(a, b) do\n    i1 = Enum.find_index(a, &(&1 == Enum.at(b, 1)))\n    in1 = length(a) - Enum.find_index(Enum.reverse(a), &(&1 == Enum.at(b, -2))) - 1\n\n    cond do\n      i1 < in1 ->\n        on_line_before?(a, List.first(b), i1) && on_line_after?(a, List.last(b), in1)\n\n      i1 > in1 ->\n        on_line_after?(a, List.first(b), i1) && on_line_before?(a, List.last(b), in1)\n\n      i1 == in1 ->\n        (on_line_after?(a, List.first(b), i1) && on_line_before?(a, List.last(b), in1)) ||\n          (on_line_before?(a, List.first(b), i1) && on_line_after?(a, List.last(b), in1))\n    end\n  end\n\n  defp on_line_before?(_, _, i) when i < 1, do: false\n\n  defp on_line_before?(e, p, i) do\n    a = Enum.at(e, i - 1)\n    b = Enum.at(e, i)\n\n    Util.collinear?(a, b, p) && Util.between?(a, b, p)\n  end\n\n  defp on_line_after?(e, _, i) when i + 1 >= length(e), do: false\n\n  defp on_line_after?(e, p, i) do\n    a = Enum.at(e, i + 1)\n    b = Enum.at(e, i)\n\n    Util.collinear?(a, b, p) && Util.between?(a, b, p)\n  end\n\n  defp do_linestring_intersects_linestring([], _), do: :disjoint\n  defp do_linestring_intersects_linestring([_], _), do: :disjoint\n\n  defp do_linestring_intersects_linestring([a, b | rest], ls) do\n    case do_linestring_intersects_segment(ls, {a, b}) do\n      :disjoint ->\n        do_linestring_intersects_linestring([b | rest], ls)\n\n      :edge ->\n        :edge\n\n      _ ->\n        case do_linestring_intersects_linestring([b | rest], ls) do\n          :edge -> :edge\n          _ -> :interior\n        end\n    end\n  end\n\n  defp do_linestring_intersects_segment([], _), do: :disjoint\n  defp do_linestring_intersects_segment([_], _), do: :disjoint\n\n  defp do_linestring_intersects_segment([a, b | rest], {p1, p2}) do\n    case SegSeg.intersection(a, b, p1, p2, epsilon: Util.epsilon()) do\n      {_, :disjoint, _} ->\n        do_linestring_intersects_segment([b | rest], {p1, p2})\n\n      {_, :edge, _} ->\n        :edge\n\n      _ ->\n        case do_linestring_intersects_segment([b | rest], {p1, p2}) do\n          :edge -> :edge\n          _ -> :interior\n        end\n    end\n  end\nend\n"
  },
  {
    "path": "lib/topo/line_ring.ex",
    "content": "defmodule Topo.LineRing do\n  @moduledoc false\n\n  alias Topo.PointRing\n  alias Topo.Util\n\n  @spec intersects?(list, list) :: boolean\n  def intersects?(ring, line) do\n    Util.any_edge_pair_not?(ring, line, :disjoint) || contains?(ring, line)\n  end\n\n  @spec contains?(list, list) :: boolean\n  def contains?(ring, line) do\n    (PointRing.any_point?(ring, line, :interior) || any_midpoint_interior?(ring, line)) &&\n      !PointRing.any_point?(ring, line, :disjoint) &&\n      !any_segment?(ring, line, :interior)\n  end\n\n  defp any_midpoint_interior?(_, [_]), do: false\n\n  defp any_midpoint_interior?(a, [b1, b2 | rest]) do\n    PointRing.relate(a, Util.midpoint(b1, b2)) == :interior ||\n      any_midpoint_interior?(a, [b2 | rest])\n  end\n\n  defp any_segment?(_, [_], _), do: false\n\n  defp any_segment?(a, [b1, b2 | rest], relation) do\n    any_ring_segment?(a, b1, b2, relation) || any_segment?(a, [b2 | rest], relation)\n  end\n\n  defp any_ring_segment?([_], _, _, _), do: false\n\n  defp any_ring_segment?([a1, a2 | rest], b1, b2, relation) do\n    SegSeg.intersection(a1, a2, b1, b2, epsilon: Util.epsilon()) |> elem(1) == relation ||\n      any_ring_segment?([a2 | rest], b1, b2, relation)\n  end\n\n  @spec none_contain_line?(list, list) :: boolean\n  def none_contain_line?(rings, line) do\n    !Enum.any?(rings, fn ring ->\n      !Util.any_edge_pair_not?(ring, line, :disjoint) && contains?(ring, line)\n    end)\n  end\n\n  @spec line_exterior_to_all?(list, list) :: boolean\n  def line_exterior_to_all?(rings, line) do\n    Enum.all?(rings, fn ring ->\n      !Util.any_edge_pair?(ring, line, :interior) && PointRing.any_point?(ring, line, :disjoint)\n    end)\n  end\nend\n"
  },
  {
    "path": "lib/topo/point_line.ex",
    "content": "defmodule Topo.PointLine do\n  @moduledoc false\n\n  @spec relate(list, {number, number}) :: atom\n  def relate([_], _), do: :disjoint\n\n  def relate([a, b | rest], p) do\n    cond do\n      a == p -> :vertex\n      b == p -> :vertex\n      Topo.Util.collinear?(a, b, p) && Topo.Util.between?(a, b, p) -> :edge\n      true -> relate([b | rest], p)\n    end\n  end\nend\n"
  },
  {
    "path": "lib/topo/point_ring.ex",
    "content": "defmodule Topo.PointRing do\n  @moduledoc false\n\n  @type point :: {number, number}\n\n  @spec relate(list, point) :: atom\n  def relate(ring, {px, py}) do\n    ring = for {x, y} <- ring, do: {x - px, y - py}\n\n    {left_crosses, right_crosses} = count_crossing(ring)\n\n    cond do\n      right_crosses == :vertex -> :vertex\n      rem(right_crosses, 2) != rem(left_crosses, 2) -> :edge\n      rem(right_crosses, 2) == 1 -> :interior\n      true -> :disjoint\n    end\n  end\n\n  @spec relate_multi(list, point) :: atom\n  def relate_multi([], _), do: :disjoint\n\n  def relate_multi([a | rest], point) do\n    case relate(a, point) do\n      :disjoint -> relate_multi(rest, point)\n      res -> res\n    end\n  end\n\n  @spec any_point?(list, list, atom) :: boolean\n  def any_point?(ring, points, rel) do\n    Enum.any?(points, fn p ->\n      relate(ring, p) == rel\n    end)\n  end\n\n  defp count_crossing(ring) do\n    count_crossing(ring, {0, 0})\n  end\n\n  defp count_crossing([{x, y} | _], _) when x == 0 and y == 0, do: {:vertex, :vertex}\n\n  defp count_crossing([a, b | rest], crosses) do\n    crosses = calc_crosses(a, b, crosses)\n    count_crossing([b | rest], crosses)\n  end\n\n  defp count_crossing(_, crosses) do\n    crosses\n  end\n\n  defp calc_crosses({ax, ay}, {bx, by}, {left_crosses, right_crosses}) do\n    cond do\n      left_crosses == :vertex -> {:vertex, :vertex}\n      ay > 0 != by > 0 && (ax * by - bx * ay) / (by - ay) > 0 -> {left_crosses, right_crosses + 1}\n      ay < 0 != by < 0 && (ax * by - bx * ay) / (by - ay) < 0 -> {left_crosses + 1, right_crosses}\n      true -> {left_crosses, right_crosses}\n    end\n  end\nend\n"
  },
  {
    "path": "lib/topo/ring_ring.ex",
    "content": "defmodule Topo.RingRing do\n  @moduledoc false\n\n  alias Topo.Util\n  alias Topo.PointRing\n\n  @spec intersects?(list, list) :: boolean\n  def intersects?(a, b) do\n    Util.any_edge_pair_not?(a, b, :disjoint) || !PointRing.any_point?(a, b, :disjoint) ||\n      !PointRing.any_point?(b, a, :disjoint)\n  end\n\n  @spec overlaps?(list, list) :: boolean\n  def overlaps?(a, b) do\n    Util.any_edge_pair?(a, b, :interior) ||\n      (PointRing.any_point?(a, b, :interior) || PointRing.any_point?(b, a, :interior))\n  end\n\n  @spec contains?(list, list) :: boolean\n  def contains?(a, b) do\n    !Util.any_edge_pair?(a, b, :interior) && !PointRing.any_point?(a, b, :disjoint)\n  end\n\n  @spec none_contain_ring?(list, list) :: boolean\n  def none_contain_ring?(rings, b) do\n    Enum.all?(rings, fn ring ->\n      Util.any_edge_pair_not?(ring, b, :disjoint) || PointRing.any_point?(ring, b, :disjoint)\n    end)\n  end\nend\n"
  },
  {
    "path": "lib/topo/util.ex",
    "content": "defmodule Topo.Util do\n  @moduledoc false\n\n  @epsilon Application.compile_env(:topo, :epsilon, false)\n\n  @type point :: {number, number}\n\n  @spec cross(point, point, point) :: number\n  def cross({ax, ay}, {bx, by}, {cx, cy}) do\n    {ax - cx, ay - cy}\n    |> Vector.cross({bx - cx, by - cy})\n    |> Vector.component(:z)\n  end\n\n  @spec collinear?(point, point, point) :: boolean\n  def collinear?(a, b, c) do\n    cross(a, b, c) == 0\n  end\n\n  @spec between?(point, point, point) :: boolean\n  def between?({ax, ay}, {bx, by}, {px, py})\n      when ax == bx and ay == by and (px != ax and py != ay),\n      do: false\n\n  def between?({ax, ay}, {bx, by}, {_, py}) when ax == bx and ay != by,\n    do: (ay <= py && py <= by) || (ay >= py && py >= by)\n\n  def between?({ax, _}, {bx, _}, {px, _}), do: (ax <= px && px <= bx) || (ax >= px && px >= bx)\n\n  @spec assert_no_collinear(list) :: list\n  def assert_no_collinear([a, b, c | rest]) do\n    if collinear?(a, c, b) && between?(a, c, b) do\n      assert_no_collinear([a, c | rest])\n    else\n      [a] ++ assert_no_collinear([b, c | rest])\n    end\n  end\n\n  def assert_no_collinear(ring), do: ring\n\n  @spec midpoint(point, point) :: point\n  def midpoint(a, b) do\n    Vector.divide(Vector.add(a, b), 2)\n  end\n\n  @spec any_edge_pair_not?(list, list, atom) :: boolean\n  def any_edge_pair_not?(a, b, rel) do\n    do_any_edge_pair?(a, b, fn a1, a2, b1, b2 ->\n      elem(\n        SegSeg.intersection(a1, a2, b1, b2, epsilon: epsilon()),\n        1\n      ) != rel\n    end)\n  end\n\n  @spec any_edge_pair?(list, list, atom) :: boolean\n  def any_edge_pair?(a, b, rel) do\n    do_any_edge_pair?(a, b, fn a1, a2, b1, b2 ->\n      elem(\n        SegSeg.intersection(a1, a2, b1, b2, epsilon: epsilon()),\n        1\n      ) == rel\n    end)\n  end\n\n  @spec do_any_edge_pair?(list, list, function) :: boolean\n  defp do_any_edge_pair?(_, [_], _), do: false\n\n  defp do_any_edge_pair?(a, [b1, b2 | rest], fun) do\n    any_edge?(a, [b1, b2], fun) || do_any_edge_pair?(a, [b2 | rest], fun)\n  end\n\n  @spec any_edge?(list, list, function) :: boolean\n  defp any_edge?([_], _, _), do: false\n\n  defp any_edge?([a1, a2 | rest], [b1, b2], fun) do\n    fun.(a1, a2, b1, b2) || any_edge?([a2 | rest], [b1, b2], fun)\n  end\n\n  @spec epsilon() :: term()\n  def epsilon(), do: @epsilon\nend\n"
  },
  {
    "path": "lib/topo.ex",
    "content": "defmodule Topo do\n  alias Topo.Intersects\n  alias Topo.Contains\n  alias Topo.Cleaner\n\n  @moduledoc ~S\"\"\"\n  A Geometry library for Elixir that calculates relationships between two\n  geometries.  Geometries can be of any of the following types:\n\n  * Point\n  * LineString\n  * Polygon\n  * MultiPoint\n  * MultiLineString\n  * MultiPolygon\n\n  Each of these functions can be passed any two Geometries in either a Map with a\n  `:type` and `:coordinates` keys or as a struct generated via the Geo library\n  (https://github.com/bryanjos/geo). Coordinates are represented as atoms `{x, y}`\n  and multiple coordinates as Lists.\n\n  ```elixir\n  a = %{type: \"Polygon\", coordinates: [[{2, 2}, {20, 2}, {11, 11}, {2, 2}]]}\n  b = %Geo.Polygon{coordinates: [[{2, 2}, {20, 2}, {11, 11}, {2, 2}]]}\n\n  Topo.equals? a, b # => true\n  ```\n\n  Instead of a Point geometry, just a single coordinate can be used.\n\n  ```elixir\n  a = %{type: \"Polygon\", coordinates: [[{2, 2}, {20, 2}, {11, 11}, {2, 2}]]}\n\n  Topo.intersects? a, {4, 6} # => true\n  ```\n\n  The `Topo` library's functions will automatically attempt to \"clean\" geometries\n  passed to them:\n\n  * Linear Rings (including Polygons) will be reordered to a counter-clockwise\n  direction.\n  * Polygon's Linear Rings will automatically be closed if the first point is not\n  repeated as the last point.\n  * Points that are equal or collinear with surrounding points are removed from\n  LineStrings or Polygons.\n  \"\"\"\n\n  @type geometry ::\n          {number, number}\n          | %{type: String.t(), coordinates: list}\n          | %Geo.Point{}\n          | %Geo.MultiPoint{}\n          | %Geo.LineString{}\n          | %Geo.MultiLineString{}\n          | %Geo.Polygon{}\n          | %Geo.MultiPolygon{}\n\n  @doc ~S\"\"\"\n  Returns `true` if geometries **A** and **B** share at least one point in\n  common.\n\n  ## Examples\n      iex> Topo.intersects?(\n      ...>   %{type: \"Polygon\", coordinates: [[{2, 2}, {20, 2}, {11, 11}, {2, 2}]]},\n      ...>   %{type: \"LineString\", coordinates: [{11, 10}, {4, 2.5}, {16, 2.5}, {11, 10}]}\n      ...> )\n      true\n\n      iex> Topo.intersects?(\n      ...>   %{type: \"Polygon\", coordinates: [\n      ...>     [{60, 120}, {60, 40}, {160, 40}, {160, 120}, {60, 120}],\n      ...>     [{140, 100}, {80, 100}, {80, 60}, {140, 60}, {140, 100}]]},\n      ...>   %{type: \"MultiPoint\", coordinates: [{70, 35}, {100, 80}]}\n      ...> )\n      false\n  \"\"\"\n  @spec intersects?(geometry, geometry) :: boolean\n  def intersects?(a, b), do: Intersects.intersects?(Cleaner.clean(a), Cleaner.clean(b))\n\n  @doc ~S\"\"\"\n  Returns `true` if geometries **A** and **B** do not have any points in\n  common.\n\n  ## Examples\n      iex> Topo.disjoint?({1, -3}, %{type: \"MultiPoint\", coordinates: [{70, 35}, {100, 80}]})\n      true\n\n      iex> Topo.disjoint?(\n      ...>   %{type: \"Polygon\", coordinates: [\n      ...>     [{60, 120}, {60, 40}, {160, 40}, {160, 120}, {60, 120}],\n      ...>     [{140, 100}, {80, 100}, {80, 60}, {140, 60}, {140, 100}]]},\n      ...>   %Geo.MultiPoint{coordinates: [{70, 35}, {100, 80}]}\n      ...> )\n      true\n  \"\"\"\n  @spec disjoint?(geometry, geometry) :: boolean\n  def disjoint?(a, b), do: !Intersects.intersects?(Cleaner.clean(a), Cleaner.clean(b))\n\n  @doc ~S\"\"\"\n  Returns `true` if all points of geometry **B** lie within **A**.\n\n  There are a few non-obvious special cases that are worth mentioning:\n\n    - A Polygon does not contain its own boundary.  Specifically a LineString that\n    is the exact same as a Polygon's exterior Linear ring is not contained within a\n    that Polygon.\n\n    ```elixir\n    a = %Geo.Polygon{coordinates: [[{2, 2}, {20, 2}, {11, 11}, {2, 2}]]}\n    b = %Geo.LineString{coordinates: [{2, 2}, {20, 2}, {11, 11}, {2, 2}]}\n\n    Topo.contains? a, b # => false\n    Topo.intersects? a, b  # => true\n    ```\n\n    - A LineString does not contain it's own first and last point (unless those\n    points are the same, as in a LinearRing)\n\n    ```elixir\n    a = %Geo.LineString{coordinates: [{1, 3}, {2, -1}, {0, -1}]}\n    b = %Geo.LineString{coordinates: [{1, 3}, {2, -1}, {0, -1}, {1, 3}]}\n\n    Topo.contains? a, {1, 3} # => false\n    Topo.intersects? a, {1, 3} # => true\n    Topo.contains? b, {1, 3} # => true\n    ```\n\n  ## Examples\n      iex> Topo.contains?(\n      ...>   %{type: \"Polygon\", coordinates: [[{20, 20}, {20, 180}, {220, 180}, {220, 20}, {20, 20}]]},\n      ...>   %{type: \"Polygon\", coordinates: [[{160, 60}, {20, 20}, {100, 140}, {160, 60}]]}\n      ...> )\n      true\n\n      iex> Topo.contains?(\n      ...>   %{type: \"Polygon\", coordinates: [[{160, 60}, {20, 20}, {100, 140}, {160, 60}]]},\n      ...>   %{type: \"Polygon\", coordinates: [[{20, 20}, {20, 180}, {220, 180}, {220, 20}, {20, 20}]]}\n      ...> )\n      false\n  \"\"\"\n  @spec contains?(geometry, geometry) :: boolean\n  def contains?(a, b), do: Contains.contains?(Cleaner.clean(a), Cleaner.clean(b))\n\n  @doc ~S\"\"\"\n  This is the direct converse of `contains?`.  All points of\n  geometry **A** lie within geometry **B**.\n\n  ## Examples\n      iex> Topo.within?(\n      ...>   %{type: \"Polygon\", coordinates: [[{20, 20}, {20, 180}, {220, 180}, {220, 20}, {20, 20}]]},\n      ...>   %{type: \"Polygon\", coordinates: [[{160, 60}, {20, 20}, {100, 140}, {160, 60}]]}\n      ...> )\n      false\n\n      iex> Topo.within?(\n      ...>   %{type: \"Polygon\", coordinates: [[{160, 60}, {20, 20}, {100, 140}, {160, 60}]]},\n      ...>   %{type: \"Polygon\", coordinates: [[{20, 20}, {20, 180}, {220, 180}, {220, 20}, {20, 20}]]}\n      ...> )\n      true\n  \"\"\"\n  @spec within?(geometry, geometry) :: boolean\n  def within?(a, b), do: Contains.contains?(Cleaner.clean(b), Cleaner.clean(a))\n\n  @doc ~S\"\"\"\n  Geometries **A** and **B** are equivalent and cover the exact\n  same set of points.  By definition, **A** and **B** are equal if **A** contains\n  **B** and **B** contains **A**.  Equality does not necessarily mean that the\n  geometries are of the same type.  A Point **A** is equal to a MultiPoint that\n  contains only the same Point **A**.\n\n  ## Examples\n      iex> Topo.equals?(\n      ...>   %{type: \"Point\", coordinates: {2, -3}},\n      ...>   %{type: \"MultiPoint\", coordinates: [{2, -3}]}\n      ...> )\n      true\n\n      iex> Topo.equals?(\n      ...>   %{type: \"Polygon\", coordinates: [[{160, 60}, {20, 20}, {100, 140}, {160, 60}]]},\n      ...>   %{type: \"Polygon\", coordinates: [[{20, 20}, {20, 180}, {220, 180}, {220, 20}, {20, 20}]]}\n      ...> )\n      false\n  \"\"\"\n  @spec equals?(geometry, geometry) :: boolean\n  def equals?(a, b), do: do_equals?(Cleaner.clean(a), Cleaner.clean(b))\n\n  defp do_equals?(a, b), do: Contains.contains?(a, b) && Contains.contains?(b, a)\nend\n"
  },
  {
    "path": "mix.exs",
    "content": "defmodule Topo.Mixfile do\n  use Mix.Project\n\n  def project do\n    [\n      app: :topo,\n      version: \"1.0.3\",\n      elixir: \"~> 1.12\",\n      description: description(),\n      package: package(),\n      build_embedded: Mix.env() == :prod,\n      start_permanent: Mix.env() == :prod,\n      test_coverage: [tool: ExCoveralls],\n      dialyzer: [plt_add_apps: [:poison, :mix]],\n      deps: deps(),\n      aliases: aliases(),\n\n      # Docs\n      name: \"Topo\",\n      docs: [\n        main: \"Topo\",\n        source_url: \"https://github.com/pkinney/topo\",\n        source_ref: \"master\"\n      ]\n    ]\n  end\n\n  def application do\n    [applications: [:logger, :geo, :seg_seg, :vector]]\n  end\n\n  defp deps do\n    [\n      {:geo, \"~> 3.1 or ~> 4.0\"},\n      {:seg_seg, \"~> 1.0\"},\n      {:vector, \"~> 1.0\"},\n      {:poison, \"~> 5.0\", only: [:test, :dev]},\n      {:benchfella, \"~> 0.3.0\", only: :dev},\n      {:excoveralls, \"~> 0.8\", only: :test},\n      {:envelope, \"~> 1.0\", only: :dev},\n      {:earmark, \"~> 1.2\", only: :dev},\n      {:ex_doc, \"~> 0.19\", only: :dev},\n      {:credo, \"~> 1.6\", only: [:dev], runtime: false},\n      {:dialyxir, \"~> 1.3\", only: [:dev], runtime: false}\n    ]\n  end\n\n  defp description do\n    \"\"\"\n    Geometry library for determining spatial relationships between geometries\n    \"\"\"\n  end\n\n  defp package do\n    [\n      files: [\"lib/topo.ex\", \"lib/topo\", \"mix.exs\", \"README*\"],\n      maintainers: [\"Powell Kinney\"],\n      licenses: [\"MIT\"],\n      links: %{\"GitHub\" => \"https://github.com/pkinney/topo\"}\n    ]\n  end\n\n  defp aliases do\n    [\n      validate: [\n        \"clean\",\n        \"compile --warnings-as-error\",\n        \"format --check-formatted\",\n        \"credo\",\n        \"dialyzer\"\n      ]\n    ]\n  end\nend\n"
  },
  {
    "path": "test/fixtures/poly.geo.json",
    "content": "{\n    \"type\": \"Polygon\",\n    \"coordinates\":  [[[0, 0],\n                      [2, 0],\n                      [2, 2],\n                      [3, 1],\n                      [4, 2],\n                      [5, 2],\n                      [3, 3],\n                      [3, 2],\n                      [2, 4],\n                      [6, 3],\n                      [7, 4],\n                      [7, 2],\n                      [8, 5],\n                      [8, 7],\n                      [7, 7],\n                      [8, 8],\n                      [5, 9],\n                      [6, 6],\n                      [5, 7],\n                      [4, 6],\n                      [4, 8],\n                      [3, 7],\n                      [2, 7],\n                      [3, 6],\n                      [4, 4],\n                      [0, 7],\n                      [2, 3],\n                      [0, 2],\n                      [0, 0]]]\n}\n"
  },
  {
    "path": "test/input_format_test.exs",
    "content": "defmodule InputFormatTest do\n  use ExUnit.Case\n\n  test \"should accept a Point as a single tuple\" do\n    assert Topo.equals?(%Geo.Point{coordinates: {2, -1}}, {2, -1})\n  end\n\n  test \"should accept a Point as a GeoJSON-like geometry\" do\n    assert Topo.equals?(%{type: \"Point\", coordinates: {2, -1}}, {2, -1})\n  end\n\n  test \"should accept a MultiPoint in GeoJSON-like format\" do\n    a = %{type: \"MultiPoint\", coordinates: [{2, 2}, {20, 2}, {11, 11}]}\n    b = %Geo.MultiPoint{coordinates: [{2, 2}, {20, 2}, {11, 11}]}\n\n    assert Topo.equals?(a, b)\n  end\n\n  test \"should accept a LineString in GeoJSON-like format\" do\n    a = %{type: \"LineString\", coordinates: [{2, 2}, {20, 2}, {11, 11}, {2, 2}]}\n    b = %Geo.LineString{coordinates: [{2, 2}, {20, 2}, {11, 11}, {2, 2}]}\n\n    assert Topo.equals?(a, b)\n  end\n\n  test \"should accept a MultiLineString in GeoJSON-like format\" do\n    a = %{\n      type: \"MultiLineString\",\n      coordinates: [\n        [{2, 2}, {20, 2}, {11, 11}],\n        [{1, -2}, {3, 1}]\n      ]\n    }\n\n    b = %Geo.MultiLineString{\n      coordinates: [\n        [{2, 2}, {20, 2}, {11, 11}],\n        [{1, -2}, {3, 1}]\n      ]\n    }\n\n    assert Topo.equals?(a, b)\n  end\n\n  test \"should accept a Polygon in GeoJSON-like format\" do\n    a = %{type: \"Polygon\", coordinates: [[{2, 2}, {20, 2}, {11, 11}, {2, 2}]]}\n    b = %Geo.Polygon{coordinates: [[{2, 2}, {20, 2}, {11, 11}, {2, 2}]]}\n\n    assert Topo.equals?(a, b)\n  end\n\n  test \"should accept a MultiPolygon in GeoJSON-like format\" do\n    a = %{\n      type: \"MultiPolygon\",\n      coordinates: [\n        [[{2, 2}, {20, 2}, {11, 11}, {2, 2}]],\n        [[{1, -2}, {3, 1}, {0, 0}]]\n      ]\n    }\n\n    b = %Geo.MultiPolygon{\n      coordinates: [\n        [[{2, 2}, {20, 2}, {11, 11}]],\n        [[{1, -2}, {3, 1}, {0, 0}, {1, -2}]]\n      ]\n    }\n\n    assert Topo.equals?(a, b)\n  end\nend\n"
  },
  {
    "path": "test/linestring_polygon_test.exs",
    "content": "defmodule LineStringPolygonTest do\n  use ExUnit.Case\n\n  @exterior [{2, 2}, {20, 2}, {11, 11}, {2, 2}]\n  @hole [{11, 9}, {5, 3}, {17, 3}, {11, 9}]\n  @linestring %Geo.LineString{coordinates: @exterior}\n  @hole_linestring %Geo.LineString{coordinates: @hole}\n  @polygon %Geo.Polygon{coordinates: [@exterior]}\n  @polygon_with_hole %Geo.Polygon{coordinates: [@exterior, @hole]}\n\n  test \"polygon should intersect its own exterior linear ring\" do\n    assert Topo.intersects?(@polygon, @linestring)\n    assert Topo.intersects?(@linestring, @polygon)\n  end\n\n  test \"polygon should not contain its own exterior linear ring\" do\n    refute Topo.contains?(@polygon, @linestring)\n  end\n\n  test \"polygon should intersect its own hole's linear ring\" do\n    assert Topo.intersects?(@polygon_with_hole, @hole_linestring)\n    assert Topo.intersects?(@hole_linestring, @polygon_with_hole)\n  end\n\n  test \"polygon should not contain its own hole's linear ring\" do\n    refute Topo.contains?(@polygon_with_hole, @hole_linestring)\n  end\n\n  test \"polygon should intersect and contain linestring that shares a vertex and is within the polygon\" do\n    b = %Geo.LineString{coordinates: Enum.take(@exterior, 1) ++ Enum.take(@hole, 1)}\n    assert Topo.intersects?(@polygon, b)\n    assert Topo.contains?(@polygon, b)\n  end\n\n  test \"polygon should intersect but not contain linestring that shares a vertex and is outside the polygon\" do\n    b = %Geo.LineString{coordinates: Enum.take(@exterior, 1) ++ [{0, 0}]}\n    assert Topo.intersects?(@polygon, b)\n    refute Topo.contains?(@polygon, b)\n  end\n\n  test \"line that crosses hole inside of polygon\" do\n    b = %Geo.LineString{coordinates: [{11, 10}, {4, 2.5}, {16, 2.5}, {11, 10}]}\n\n    assert Topo.intersects?(@polygon_with_hole, b)\n    assert Topo.contains?(@polygon, b)\n    refute Topo.contains?(@polygon_with_hole, b)\n  end\n\n  test \"line that crosses hole inside of polygon but the midpoint is still outside the hole\" do\n    a = %Geo.Polygon{coordinates: [@exterior, [{11, 4}, {5, 3}, {17, 3}, {11, 4}]]}\n    b = %Geo.LineString{coordinates: [{11, 10}, {4, 2.5}, {16, 2.5}, {11, 10}]}\n\n    assert Topo.intersects?(@polygon_with_hole, b)\n    assert Topo.contains?(@polygon, b)\n    refute Topo.contains?(a, b)\n  end\n\n  test \"line within a polygon only touching the boundary\" do\n    a = \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (70 70, 80 20)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b)\n    assert Topo.intersects?(b, a)\n    assert Topo.contains?(a, b)\n  end\n\n  test \"line outside a polygon only touching the boundary\" do\n    a = \"POLYGON ((150 150, 0 0, 280 20, 20 20, 150 150)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (70 70, 80 20)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b)\n    assert Topo.intersects?(b, a)\n    refute Topo.contains?(a, b)\n  end\n\n  test \"line within a polygon with hole only touching the boundary but crosses a hole\" do\n    a =\n      \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150),(170 120, 250 120, 180 50, 100 50, 170 120))\"\n      |> Geo.WKT.decode!()\n\n    b = \"LINESTRING (100 100, 140 20)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b)\n    assert Topo.intersects?(b, a)\n    refute Topo.contains?(a, b)\n  end\n\n  test \"line within hole that touches two edges\" do\n    a =\n      \"POLYGON((0 0, 10 0, 10 10, 0 10, 0 0),(3 3, 6 3, 8 5, 6 7, 3 7, 3 3))\" |> Geo.WKT.decode!()\n\n    b = \"LINESTRING(7 6, 7 4)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b)\n    assert Topo.intersects?(b, a)\n    refute Topo.contains?(a, b)\n  end\n\n  test \"line outside of hole that touches two edges\" do\n    a =\n      \"POLYGON((0 0, 10 0, 10 10, 0 10, 0 0),(3 3, 8 3, 6 5, 8 7, 3 7, 3 3))\" |> Geo.WKT.decode!()\n\n    b = \"LINESTRING(7 6, 7 4)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b)\n    assert Topo.intersects?(b, a)\n    refute Topo.contains?(a, b)\n  end\n\n  test \"line with endpoints in polygon but traversing outside of polygon\" do\n    a =\n      \"POLYGON((-5.101858494086758 -11.626978433639922,-6.083357021603929 1.3948583572266788,2.7612355354927542 1.618714536326428,11.47787952519244 7.668167122436479,1.0000000000000002 18.5,-1.5 16.0,6.52212047480756 8.33183287756352,1.2387644645072458 6.3812854636735725,-9.916642978396071 4.6051416427733205,-8.626978433639922 -11.898141505913241,-5.101858494086758 -11.626978433639922))\"\n      |> Geo.WKT.decode!()\n\n    b = \"LINESTRING(-2.7 2.2,-6.5 -3.1)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b)\n    assert Topo.intersects?(b, a)\n    refute Topo.contains?(a, b)\n  end\n\n  test \"line with endpoints in polygon but traversing outside of polygon not at a midpoint\" do\n    a =\n      \"POLYGON((-5.101858494086758 -11.626978433639922,-6.083357021603929 1.3948583572266788,2.7612355354927542 1.618714536326428,11.47787952519244 7.668167122436479,1.0000000000000002 18.5,-1.5 16.0,6.52212047480756 8.33183287756352,1.2387644645072458 6.3812854636735725,-9.916642978396071 4.6051416427733205,-8.626978433639922 -11.898141505913241,-5.101858494086758 -11.626978433639922))\"\n      |> Geo.WKT.decode!()\n\n    b = \"LINESTRING(-6.5 0.3, 9 8.5)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b)\n    assert Topo.intersects?(b, a)\n    refute Topo.contains?(a, b)\n  end\n\n  test \"line with endpoints in polygon but one leg traversing outside of polygon\" do\n    a =\n      \"POLYGON((-5.101858494086758 -11.626978433639922,-6.083357021603929 1.3948583572266788,2.7612355354927542 1.618714536326428,11.47787952519244 7.668167122436479,1.0000000000000002 18.5,-1.5 16.0,6.52212047480756 8.33183287756352,1.2387644645072458 6.3812854636735725,-9.916642978396071 4.6051416427733205,-8.626978433639922 -11.898141505913241,-5.101858494086758 -11.626978433639922))\"\n      |> Geo.WKT.decode!()\n\n    b = \"LINESTRING(-6.5 0.3, 9 8.5, 7 9.5)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b)\n    assert Topo.intersects?(b, a)\n    refute Topo.contains?(a, b)\n  end\n\n  test \"line that touches a corner but stays internal to a polygon (only works when epsilon is set to true)\" do\n    a = \"POLYGON((0 0,10 0,10 3,4 3,4 7,10 7,10 10,0 10,0 0))\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(6.05 9.05,3.95 6.95,1.05 1.05)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b)\n    assert Topo.intersects?(b, a)\n    assert Topo.contains?(a, b)\n  end\nend\n"
  },
  {
    "path": "test/multipoint_multipoint_test.exs",
    "content": "defmodule MultiPointMultPointTest do\n  use ExUnit.Case\n\n  @multi_point %Geo.MultiPoint{coordinates: [{-1, 2}, {3, -5}, {2, 0}]}\n\n  test \"MultiPoint should intersect itself\" do\n    assert Topo.intersects?(@multi_point, @multi_point)\n  end\n\n  test \"MultiPoint should not be disjoint from itself\" do\n    refute Topo.disjoint?(@multi_point, @multi_point)\n  end\n\n  test \"MultiPoint should contain itself\" do\n    assert Topo.contains?(@multi_point, @multi_point)\n  end\n\n  test \"MultiPoint should be within itself\" do\n    assert Topo.within?(@multi_point, @multi_point)\n  end\n\n  test \"MultiPoint should equal itself\" do\n    assert Topo.equals?(@multi_point, @multi_point)\n  end\n\n  test \"MultiPoint pair that share at least on point\" do\n    b = %Geo.MultiPoint{coordinates: [{3, -5}, {1, 2}, {0, -1}]}\n    assert Topo.intersects?(@multi_point, b)\n    assert Topo.intersects?(b, @multi_point)\n    refute Topo.disjoint?(@multi_point, b)\n    refute Topo.disjoint?(b, @multi_point)\n    refute Topo.contains?(@multi_point, b)\n    refute Topo.within?(@multi_point, b)\n    refute Topo.equals?(@multi_point, b)\n  end\n\n  test \"MultiPoint pair that share no points\" do\n    b = %Geo.MultiPoint{coordinates: [{-1, -5}, {1, -1}]}\n    refute Topo.intersects?(@multi_point, b)\n    refute Topo.intersects?(b, @multi_point)\n    assert Topo.disjoint?(@multi_point, b)\n    assert Topo.disjoint?(b, @multi_point)\n    refute Topo.contains?(@multi_point, b)\n    refute Topo.within?(@multi_point, b)\n    refute Topo.equals?(@multi_point, b)\n  end\n\n  test \"MultiPoint pair where one is a subset of the other\" do\n    b = %Geo.MultiPoint{coordinates: [{-1, 2}, {2, 0}]}\n    assert Topo.intersects?(@multi_point, b)\n    assert Topo.intersects?(b, @multi_point)\n    refute Topo.disjoint?(@multi_point, b)\n    refute Topo.disjoint?(b, @multi_point)\n    assert Topo.contains?(@multi_point, b)\n    refute Topo.within?(@multi_point, b)\n    refute Topo.equals?(@multi_point, b)\n  end\nend\n"
  },
  {
    "path": "test/multipoint_multipolygon_test.exs",
    "content": "defmodule MultiPointMultiPolygonTest do\n  use ExUnit.Case\n\n  @multipolygon %Geo.MultiPolygon{\n    coordinates: [\n      [\n        [{60, 120}, {60, 40}, {160, 40}, {160, 120}, {60, 120}],\n        [{140, 100}, {80, 100}, {80, 60}, {140, 60}, {140, 100}]\n      ],\n      [[{70, 10}, {100, 10}, {90, 25}, {60, 20}, {70, 10}]]\n    ]\n  }\n\n  test \"One Point in one polygon of a MultiPolygons\" do\n    b = %Geo.MultiPoint{coordinates: [{70, 50}, {100, 80}]}\n\n    assert Topo.intersects?(@multipolygon, b)\n    assert Topo.intersects?(b, @multipolygon)\n\n    refute Topo.contains?(@multipolygon, b)\n  end\n\n  test \"Both Points outside of a MultiPolygons\" do\n    b = %Geo.MultiPoint{coordinates: [{70, 35}, {100, 80}]}\n\n    refute Topo.intersects?(@multipolygon, b)\n    refute Topo.intersects?(b, @multipolygon)\n\n    refute Topo.contains?(@multipolygon, b)\n  end\n\n  test \"Both Points inside of a MultiPolygons\" do\n    b = %Geo.MultiPoint{coordinates: [{70, 50}, {80, 15}]}\n\n    assert Topo.intersects?(@multipolygon, b)\n    assert Topo.intersects?(b, @multipolygon)\n\n    assert Topo.contains?(@multipolygon, b)\n  end\nend\n"
  },
  {
    "path": "test/multipoint_polygon_test.exs",
    "content": "defmodule MultiPointPolygonTest do\n  use ExUnit.Case\n\n  @polygon %Geo.MultiPolygon{\n    coordinates: [\n      [\n        [{60, 120}, {60, 40}, {160, 40}, {160, 120}, {60, 120}],\n        [{140, 100}, {80, 100}, {80, 60}, {140, 60}, {140, 100}]\n      ]\n    ]\n  }\n\n  test \"One Point in a Polygon\" do\n    b = %Geo.MultiPoint{coordinates: [{70, 50}, {100, 80}]}\n\n    assert Topo.intersects?(@polygon, b)\n    assert Topo.intersects?(b, @polygon)\n\n    refute Topo.contains?(@polygon, b)\n  end\n\n  test \"Both Points outside of a Polygon\" do\n    b = %Geo.MultiPoint{coordinates: [{70, 35}, {100, 80}]}\n\n    refute Topo.intersects?(@polygon, b)\n    refute Topo.intersects?(b, @polygon)\n\n    refute Topo.contains?(@polygon, b)\n  end\n\n  test \"Both Points inside of a Polygon\" do\n    b = %Geo.MultiPoint{coordinates: [{70, 50}, {71, 55}]}\n\n    assert Topo.intersects?(@polygon, b)\n    assert Topo.intersects?(b, @polygon)\n\n    assert Topo.contains?(@polygon, b)\n  end\nend\n"
  },
  {
    "path": "test/point_linestring_test.exs",
    "content": "defmodule PointLineStringTest do\n  use ExUnit.Case\n\n  @point %Geo.Point{coordinates: {14, 18}}\n  @linestring %Geo.LineString{\n    coordinates: [{4, 2}, {4, 4}, {10, 10}, {15, 10}, {20, 12}, {8, 24}, {12, 24}]\n  }\n  @multilinestring %Geo.MultiLineString{\n    coordinates: [\n      [{4, 2}, {4, 4}, {10, 10}, {15, 10}, {20, 12}, {8, 24}, {12, 24}],\n      [{1, 3}, {2, -1}, {0, -1}, {1, 3}]\n    ]\n  }\n\n  test \"point should intersect a linestring that it lies on\" do\n    assert Topo.intersects?(@point, @linestring)\n    assert Topo.intersects?(@linestring, @point)\n  end\n\n  test \"point should not be disjoint from a linestring that contains itself\" do\n    refute Topo.disjoint?(@point, @linestring)\n    refute Topo.disjoint?(@linestring, @point)\n  end\n\n  test \"point should not contain a linestring\" do\n    refute Topo.contains?(@point, @linestring)\n  end\n\n  test \"point should be within a linestring that it lies on\" do\n    assert Topo.within?(@point, @linestring)\n  end\n\n  test \"point should not equal a linestring\" do\n    refute Topo.equals?(@point, @linestring)\n  end\n\n  test \"point on the first point of a linestring\" do\n    b = %Geo.Point{coordinates: List.first(@linestring.coordinates)}\n    assert Topo.intersects?(@linestring, b)\n    assert Topo.intersects?(b, @linestring)\n    refute Topo.disjoint?(@linestring, b)\n    refute Topo.disjoint?(b, @linestring)\n\n    refute Topo.contains?(@linestring, b)\n    refute Topo.within?(@linestring, b)\n    refute Topo.equals?(@linestring, b)\n  end\n\n  test \"a LineString does not contain it's endpoints\" do\n    a = %Geo.Point{coordinates: List.first(@linestring.coordinates)}\n    b = %Geo.Point{coordinates: List.last(@linestring.coordinates)}\n\n    refute Topo.contains?(@linestring, a)\n    refute Topo.contains?(@linestring, b)\n  end\n\n  test \"point on one of the points in a LineString\" do\n    b = %Geo.Point{coordinates: Enum.at(@linestring.coordinates, 2)}\n    assert Topo.intersects?(@linestring, b)\n    assert Topo.intersects?(b, @linestring)\n    refute Topo.disjoint?(@linestring, b)\n    refute Topo.disjoint?(b, @linestring)\n\n    assert Topo.contains?(@linestring, b)\n    refute Topo.within?(@linestring, b)\n    refute Topo.equals?(@linestring, b)\n  end\n\n  test \"point not on a LineString\" do\n    b = %Geo.Point{coordinates: {12, 5}}\n    refute Topo.intersects?(@linestring, b)\n    refute Topo.intersects?(b, @linestring)\n    assert Topo.disjoint?(@linestring, b)\n    assert Topo.disjoint?(b, @linestring)\n\n    refute Topo.contains?(@linestring, b)\n    refute Topo.within?(@linestring, b)\n    refute Topo.equals?(@linestring, b)\n  end\n\n  test \"point not on a MultiLineString\" do\n    b = %Geo.Point{coordinates: {12, 5}}\n    refute Topo.intersects?(@multilinestring, b)\n    refute Topo.intersects?(b, @multilinestring)\n    assert Topo.disjoint?(@multilinestring, b)\n    assert Topo.disjoint?(b, @multilinestring)\n\n    refute Topo.contains?(@multilinestring, b)\n    refute Topo.within?(@multilinestring, b)\n    refute Topo.equals?(@multilinestring, b)\n  end\n\n  test \"point on one linestring of a MultiLineString\" do\n    assert Topo.intersects?(@multilinestring, @point)\n    assert Topo.intersects?(@point, @multilinestring)\n    refute Topo.disjoint?(@multilinestring, @point)\n    refute Topo.disjoint?(@point, @multilinestring)\n\n    assert Topo.contains?(@multilinestring, @point)\n    refute Topo.within?(@multilinestring, @point)\n    refute Topo.equals?(@multilinestring, @point)\n  end\nend\n"
  },
  {
    "path": "test/point_multipoint_test.exs",
    "content": "defmodule PointMultiPointTest do\n  use ExUnit.Case\n\n  @point %Geo.Point{coordinates: {3, -5}}\n  @multi_point %Geo.MultiPoint{coordinates: [{-1, 2}, {3, -5}]}\n\n  test \"point should intersect a multipoint that contains itself\" do\n    assert Topo.intersects?(@point, @multi_point)\n    assert Topo.intersects?(@multi_point, @point)\n  end\n\n  test \"point should not be disjoint from a multipoint that contains itself\" do\n    refute Topo.disjoint?(@point, @multi_point)\n    refute Topo.disjoint?(@multi_point, @point)\n  end\n\n  test \"point should not contain a multipoint that contains any other point\" do\n    refute Topo.contains?(@point, @multi_point)\n  end\n\n  test \"point should be within a multipoint that contains itself\" do\n    assert Topo.within?(@point, @multi_point)\n  end\n\n  test \"point should not equal a multipoint that contains any other point\" do\n    refute Topo.equals?(@point, @multi_point)\n  end\n\n  test \"point should contain a multipoint that contains only that point\" do\n    assert Topo.contains?(@point, %Geo.MultiPoint{coordinates: [@point.coordinates]})\n  end\n\n  test \"point should be within a multipoint that contains only that point\" do\n    assert Topo.within?(@point, %Geo.MultiPoint{coordinates: [@point.coordinates]})\n  end\n\n  test \"point should equal a multipoint that contains only that point\" do\n    assert Topo.equals?(@point, %Geo.MultiPoint{coordinates: [@point.coordinates]})\n  end\nend\n"
  },
  {
    "path": "test/point_multipolygon_test.exs",
    "content": "defmodule PointMultiPolygonTest do\n  use ExUnit.Case\n\n  @multipolygon %Geo.MultiPolygon{\n    coordinates: [\n      [\n        [{60, 120}, {60, 40}, {160, 40}, {160, 120}, {60, 120}],\n        [{140, 100}, {80, 100}, {80, 60}, {140, 60}, {140, 100}]\n      ],\n      [[{70, 10}, {100, 10}, {90, 25}, {60, 20}, {70, 10}]]\n    ]\n  }\n\n  test \"Point in one polygon of a MultiPolygons\" do\n    assert Topo.intersects?(@multipolygon, {70, 50})\n    assert Topo.intersects?({70, 50}, @multipolygon)\n    assert Topo.intersects?(@multipolygon, {80, 15})\n    assert Topo.intersects?({80, 15}, @multipolygon)\n\n    assert Topo.contains?(@multipolygon, {70, 50})\n    assert Topo.contains?(@multipolygon, {80, 15})\n  end\n\n  test \"Point outside both polygons of a MultiPolygons\" do\n    refute Topo.intersects?(@multipolygon, {70, 35})\n    refute Topo.contains?(@multipolygon, {70, 35})\n  end\n\n  test \"Point inside the hole of a polygon of a MultiPolygons\" do\n    refute Topo.intersects?(@multipolygon, {100, 80})\n    refute Topo.contains?(@multipolygon, {100, 80})\n  end\nend\n"
  },
  {
    "path": "test/point_point_test.exs",
    "content": "defmodule PointPointTest do\n  use ExUnit.Case\n\n  @point %Geo.Point{coordinates: {3, -5}}\n\n  test \"point should intersect itself\" do\n    assert Topo.intersects?(@point, @point)\n  end\n\n  test \"point should intersect in coordinates only\" do\n    assert Topo.intersects?(@point, %{@point | properties: %{foo: :bar}})\n  end\n\n  test \"point should not be disjoint from itself\" do\n    refute Topo.disjoint?(@point, @point)\n  end\n\n  test \"point should contain itself\" do\n    assert Topo.contains?(@point, @point)\n  end\n\n  test \"point should be within itself\" do\n    assert Topo.within?(@point, @point)\n  end\n\n  test \"point should equal itself\" do\n    assert Topo.equals?(@point, @point)\n  end\n\n  test \"point should not intersect a different point\" do\n    refute Topo.intersects?(@point, %Geo.Point{coordinates: {-1, 2}})\n  end\n\n  test \"point should be disjoint a different point\" do\n    assert Topo.disjoint?(@point, %Geo.Point{coordinates: {-1, 2}})\n  end\n\n  test \"point should not contain a different point\" do\n    refute Topo.contains?(@point, %Geo.Point{coordinates: {-1, 2}})\n  end\n\n  test \"point should not be within a different point\" do\n    refute Topo.within?(@point, %Geo.Point{coordinates: {-1, 2}})\n  end\n\n  test \"point should not equal a different point\" do\n    refute Topo.equals?(@point, %Geo.Point{coordinates: {-1, 2}})\n  end\nend\n"
  },
  {
    "path": "test/point_polygon_test.exs",
    "content": "defmodule PointPolygonTest do\n  use ExUnit.Case\n\n  @convex %Geo.Polygon{coordinates: [[{60, 120}, {60, 40}, {160, 40}, {160, 120}, {60, 120}]]}\n  @concave Path.join([\"test\", \"fixtures\", \"poly.geo.json\"])\n           |> File.read!()\n           |> Poison.decode!()\n           |> Geo.JSON.decode!()\n  @with_hole %Geo.Polygon{\n    coordinates: [\n      [{60, 120}, {60, 40}, {160, 40}, {160, 120}, {60, 120}],\n      [{140, 100}, {80, 100}, {80, 60}, {140, 60}, {140, 100}]\n    ]\n  }\n\n  test \"Point inside a convex polygon\" do\n    assert Topo.intersects?(@convex, {100, 70})\n    assert Topo.contains?(@convex, {100, 70})\n  end\n\n  test \"Point inside a concave polygon\" do\n    assert Topo.intersects?(@concave, {3.5, 6.5})\n    assert Topo.intersects?(@concave, {1, 2})\n  end\n\n  test \"Point outside a convex polygon\" do\n    refute Topo.intersects?(@convex, {0, 0})\n    refute Topo.contains?(@convex, {0, 0})\n  end\n\n  test \"Point outside a concave polygon\" do\n    refute Topo.intersects?(@concave, {3, 5})\n    refute Topo.contains?(@concave, {3, 5})\n  end\n\n  test \"Point on the edge of a polygon\" do\n    assert Topo.intersects?(@convex, {60, 80})\n    refute Topo.contains?(@convex, {60, 80})\n\n    assert Topo.intersects?(@concave, {2.5, 7})\n    refute Topo.contains?(@concave, {2.5, 7})\n  end\n\n  test \"Point on a vertex of a polygon\" do\n    assert Topo.intersects?(@convex, {160, 40})\n    refute Topo.contains?(@convex, {160, 40})\n\n    assert Topo.intersects?(@convex, {60, 120})\n    refute Topo.contains?(@convex, {60, 120})\n\n    assert Topo.intersects?(@concave, {3, 2})\n    refute Topo.contains?(@concave, {3, 2})\n  end\n\n  test \"Point inside the exterior of a polygon\" do\n    assert Topo.intersects?(@with_hole, {70, 50})\n    assert Topo.contains?(@with_hole, {70, 50})\n  end\n\n  test \"Point inside the hole of a polygon\" do\n    refute Topo.intersects?(@with_hole, {100, 80})\n    refute Topo.contains?(@with_hole, {100, 80})\n  end\n\n  test \"Point on a vertex of the hole of a polygon\" do\n    assert Topo.intersects?(@with_hole, {80, 100})\n    refute Topo.contains?(@with_hole, {80, 100})\n  end\n\n  test \"Point on an edge of the hole of a polygon\" do\n    assert Topo.intersects?(@with_hole, {80, 70})\n    refute Topo.contains?(@with_hole, {80, 70})\n  end\nend\n"
  },
  {
    "path": "test/polygon_polygon_test.exs",
    "content": "defmodule PolygonPolygonTest do\n  use ExUnit.Case\n\n  @polygon Path.join([\"test\", \"fixtures\", \"poly.geo.json\"])\n           |> File.read!()\n           |> Poison.decode!()\n           |> Geo.JSON.decode!()\n\n  @polygon_with_hole \"POLYGON ((15 15, 41 15, 28 2, 2 2, 15 15),(17 12, 33 12, 26 5, 10 5, 17 12))\"\n                     |> Geo.WKT.decode!()\n\n  test \"Polygon should intersect itself\" do\n    assert Topo.intersects?(@polygon, @polygon)\n  end\n\n  test \"Polygon should contain itself\" do\n    assert Topo.contains?(@polygon, @polygon)\n  end\n\n  test \"Polygon should contain itself both with floating-point and integer coordinates\" do\n    triangle_int = %Geo.Polygon{coordinates: [[{2, 2}, {20, 2}, {11, 11}, {2, 2}]]}\n\n    triangle_float = %Geo.Polygon{\n      coordinates: [[{2.0, 2.0}, {20.0, 2.0}, {11.0, 11.0}, {2.0, 2.0}]]\n    }\n\n    assert Topo.contains?(triangle_int, triangle_int)\n    assert Topo.contains?(triangle_float, triangle_int)\n    assert Topo.contains?(triangle_int, triangle_float)\n    assert Topo.contains?(triangle_float, triangle_float)\n\n    assert Topo.equals?(triangle_int, triangle_int)\n    assert Topo.equals?(triangle_float, triangle_int)\n    assert Topo.equals?(triangle_int, triangle_float)\n    assert Topo.equals?(triangle_float, triangle_float)\n  end\n\n  test \"Polygon with holes should intersect itself\" do\n    assert Topo.intersects?(@polygon_with_hole, @polygon_with_hole)\n  end\n\n  test \"Polygon with holes should contain itself\" do\n    assert Topo.contains?(@polygon_with_hole, @polygon_with_hole)\n  end\n\n  test \"Polygon with holes should intersect its exterior\" do\n    b = %Geo.Polygon{coordinates: [List.first(@polygon_with_hole.coordinates)]}\n    assert Topo.intersects?(@polygon_with_hole, b)\n    assert Topo.intersects?(b, @polygon_with_hole)\n  end\n\n  test \"Polygon with holes should not contain its exterior\" do\n    b = %Geo.Polygon{coordinates: [List.first(@polygon_with_hole.coordinates)]}\n    refute Topo.contains?(@polygon_with_hole, b)\n    assert Topo.contains?(b, @polygon_with_hole)\n  end\n\n  test \"Polygon should intersect an overlapping polygon\" do\n    a = %Geo.Polygon{coordinates: [[{-1, -1}, {7, -2}, {3, 8}, {-1, -1}]]}\n    assert Topo.intersects?(@polygon, a)\n  end\n\n  test \"Different polygons that don't touch or overlap should not intersect\" do\n    a = %Geo.Polygon{coordinates: [[{-1, -1}, {-7, -2}, {-3, -8}, {-1, -1}]]}\n    refute Topo.intersects?(@polygon, a)\n    refute Topo.contains?(@polygon, a)\n    refute Topo.contains?(a, @polygon)\n  end\n\n  test \"polygons touching on closing point\" do\n    a = %Geo.Polygon{coordinates: [[{0, 0}, {-7, -2}, {-3, -8}, {0, 0}]]}\n    assert Topo.intersects?(@polygon, a)\n    refute Topo.contains?(@polygon, a)\n    refute Topo.contains?(a, @polygon)\n  end\n\n  test \"polygon fully inside the hole of another polygon\" do\n    a =\n      \"POLYGON ((15 15, 41 15, 28 2, 2 2, 15 15),(17 12, 33 12, 26 5, 10 5, 17 12))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON ((19 10, 29 10, 26 7, 16 7, 19 10))\" |> Geo.WKT.decode!()\n\n    refute Topo.intersects?(a, b)\n    refute Topo.intersects?(b, a)\n    refute Topo.contains?(a, b)\n    refute Topo.contains?(b, a)\n  end\n\n  test \"polygon inside the hole of another polygon but touching one edge of the hole\" do\n    a =\n      \"POLYGON ((15 15, 41 15, 28 2, 2 2, 15 15),(17 12, 33 12, 26 5, 10 5, 17 12))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON ((19 10, 23 12, 29 10, 26 7, 16 7, 19 10))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b)\n    assert Topo.intersects?(b, a)\n    refute Topo.contains?(a, b)\n    refute Topo.contains?(b, a)\n  end\n\n  test \"polygon exactly inside the hole of another polygon\" do\n    a =\n      \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150),(170 120, 330 120, 260 50, 100 50, 170 120))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON ((170 120, 330 120, 260 50, 100 50, 170 120))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b)\n    assert Topo.intersects?(b, a)\n    refute Topo.contains?(a, b)\n    refute Topo.contains?(b, a)\n  end\n\n  test \"polygon inside the hole of another polygon touching the closing point\" do\n    a =\n      \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150),(170 120, 330 120, 260 50, 100 50, 170 120))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON ((170 120, 230 120, 290 100, 260 70, 160 70, 170 120))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b)\n    assert Topo.intersects?(b, a)\n    refute Topo.contains?(a, b)\n    refute Topo.contains?(b, a)\n  end\n\n  test \"polygon inside the hole of another polygon touching the closing point of the hole and exterior\" do\n    a =\n      \"POLYGON ((170 120, 410 150, 280 20, 20 20, 170 120),(170 120, 330 120, 260 50, 100 50, 170 120))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON ((170 120, 230 120, 290 100, 260 70, 160 70, 170 120))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b)\n    assert Topo.intersects?(b, a)\n    refute Topo.contains?(a, b)\n    refute Topo.contains?(b, a)\n  end\n\n  test \"polygon inside another polygon that has a hole\" do\n    a =\n      \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150),(170 120, 250 120, 180 50, 100 50, 170 120))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON ((280 130, 360 130, 270 40, 190 40, 280 130))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b)\n    assert Topo.intersects?(b, a)\n    assert Topo.contains?(a, b)\n    refute Topo.contains?(b, a)\n  end\n\n  test \"polygon overlapping hole with midpoint in hole\" do\n    a = \"POLYGON((0 0, 10 0, 10 10, 0 10, 0 0),(2 3,6 3, 6 7, 2 7, 2 3))\" |> Geo.WKT.decode!()\n    b = \"POLYGON((5 1, 5 9, 8 9, 8 1, 5 1))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b)\n    assert Topo.intersects?(b, a)\n    refute Topo.contains?(a, b)\n    refute Topo.contains?(b, a)\n  end\n\n  test \"polygon overlapping hole with midpoint outside the hole\" do\n    a = \"POLYGON((0 0, 10 0, 10 10, 0 10, 0 0),(2 3,6 3, 6 4, 2 4, 2 3))\" |> Geo.WKT.decode!()\n    b = \"POLYGON((5 1, 5 9, 8 9, 8 1, 5 1))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b)\n    assert Topo.intersects?(b, a)\n    refute Topo.contains?(a, b)\n    refute Topo.contains?(b, a)\n  end\n\n  test \"polygon with overlapping hole that only touches on the endpoints of the hole\" do\n    a = \"POLYGON((0 0, 10 0, 10 10, 0 10, 0 0),(7 2, 7 7, 2 7, 2 2, 7 2))\" |> Geo.WKT.decode!()\n    b = \"POLYGON((8 1, 1 8, 8 8, 8 1))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b)\n    assert Topo.intersects?(b, a)\n    refute Topo.contains?(a, b)\n    refute Topo.contains?(b, a)\n  end\n\n  test \"polygon with overlapping hole that only touches on the endpoints of the hole with the midpoint outside of the hole\" do\n    a = \"POLYGON((0 0, 10 0, 10 10, 0 10, 0 0),(7 2, 7 3, 6 3, 6 2, 7 2))\" |> Geo.WKT.decode!()\n    b = \"POLYGON((8 1, 1 8, 8 8, 8 1))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b)\n    assert Topo.intersects?(b, a)\n    refute Topo.contains?(a, b)\n    refute Topo.contains?(b, a)\n  end\n\n  test \"polygon contained in polygon with touching hole that only touches on the endpoints of the hole\" do\n    a = \"POLYGON((0 0, 10 0, 10 10, 0 10, 0 0),(7 2, 3 3, 2 7, 2 2, 7 2))\" |> Geo.WKT.decode!()\n    b = \"POLYGON((8 1, 1 8, 8 8, 8 1))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b)\n    assert Topo.intersects?(b, a)\n    assert Topo.contains?(a, b)\n    refute Topo.contains?(b, a)\n  end\n\n  test \"polygon with touching hole that only touches on the endpoints of the hole but one touch is at the midpoint\" do\n    a = \"POLYGON((0 0, 10 0, 10 10, 0 10, 0 0),(7 3, 4 3, 5 5, 2 2, 7 2))\" |> Geo.WKT.decode!()\n    b = \"POLYGON((8 2, 2 8, 8 8, 8 2))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b)\n    assert Topo.intersects?(b, a)\n    assert Topo.contains?(a, b)\n    refute Topo.contains?(b, a)\n  end\n\n  test \"polygon with hole inside polygon with touching hole that only touches on the endpoints of the hole but one touch is at the midpoint\" do\n    a = \"POLYGON((0 0, 10 0, 10 10, 0 10, 0 0),(7 3, 4 3, 5 5, 2 2, 7 2))\" |> Geo.WKT.decode!()\n    b = \"POLYGON((8 2, 2 8, 8 8, 8 2),(6 5, 6 7, 5 7, 6 5))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b)\n    assert Topo.intersects?(b, a)\n    assert Topo.contains?(a, b)\n    refute Topo.contains?(b, a)\n  end\nend\n"
  },
  {
    "path": "test/test_helper.exs",
    "content": "ExUnit.start()\n"
  },
  {
    "path": "test/topo_test.exs",
    "content": "defmodule TopoTest do\n  use ExUnit.Case\n  doctest Topo\n\n  test \"the truth\" do\n    assert 1 + 1 == 2\n  end\nend\n"
  },
  {
    "path": "test/util/clean_linestring_test.exs",
    "content": "defmodule CleanLineStringTest do\n  use ExUnit.Case\n\n  @valid_line [{60, 120}, {60, 40}, {160, 40}]\n\n  test \"remove a duplicate point\" do\n    b = %Geo.LineString{coordinates: List.insert_at(@valid_line, 1, Enum.at(@valid_line, 1))}\n\n    assert Topo.Cleaner.clean(b).coordinates === @valid_line\n  end\n\n  test \"remove a collinear point\" do\n    b = %Geo.LineString{coordinates: List.insert_at(@valid_line, 1, {60, 73})}\n\n    assert Topo.Cleaner.clean(b).coordinates === @valid_line\n  end\n\n  test \"remove a duplicate point from a MultiLineString\" do\n    b = %Geo.MultiLineString{\n      coordinates: [\n        List.insert_at(@valid_line, 1, Enum.at(@valid_line, 1)),\n        List.insert_at(@valid_line, 0, Enum.at(@valid_line, 0))\n      ]\n    }\n\n    assert Topo.Cleaner.clean(b).coordinates === [@valid_line, @valid_line]\n  end\nend\n"
  },
  {
    "path": "test/util/clean_polygon_test.exs",
    "content": "defmodule CleanPolygonTest do\n  use ExUnit.Case\n\n  @valid_ring [{60, 120}, {60, 40}, {160, 40}, {160, 120}, {60, 120}]\n  @valid_hole [{140, 100}, {80, 100}, {80, 60}, {140, 60}, {140, 100}]\n\n  @exterior {20, 20}\n  @interior {70, 70}\n  @in_hole {100, 80}\n\n  test \"reverse an incorrect exterior\" do\n    polygon = %Geo.Polygon{\n      coordinates: [\n        Enum.reverse(@valid_ring),\n        @valid_hole\n      ]\n    }\n\n    refute Topo.intersects?(polygon, @exterior)\n    assert Topo.intersects?(polygon, @interior)\n    refute Topo.intersects?(polygon, @in_hole)\n  end\n\n  test \"reverse an incorrect hole\" do\n    polygon = %Geo.Polygon{\n      coordinates: [\n        @valid_ring,\n        Enum.reverse(@valid_hole)\n      ]\n    }\n\n    refute Topo.intersects?(polygon, @exterior)\n    assert Topo.intersects?(polygon, @interior)\n    refute Topo.intersects?(polygon, @in_hole)\n  end\n\n  test \"repeat the first point at the end of the exterior\" do\n    polygon = %Geo.Polygon{\n      coordinates: [\n        Enum.drop(@valid_ring, -1),\n        @valid_hole\n      ]\n    }\n\n    refute Topo.intersects?(polygon, @exterior)\n    assert Topo.intersects?(polygon, @interior)\n    refute Topo.intersects?(polygon, @in_hole)\n  end\n\n  test \"repeat the first point at the end of the hole\" do\n    polygon = %Geo.Polygon{\n      coordinates: [\n        @valid_ring,\n        Enum.drop(@valid_hole, -1)\n      ]\n    }\n\n    refute Topo.intersects?(polygon, @exterior)\n    assert Topo.intersects?(polygon, @interior)\n    refute Topo.intersects?(polygon, @in_hole)\n  end\n\n  test \"repeat the first point at the end of the hole in a MultiPolygon\" do\n    polygon = %Geo.MultiPolygon{\n      coordinates: [\n        [\n          @valid_ring,\n          Enum.drop(@valid_hole, -1)\n        ],\n        [\n          [{6, 12}, {6, 4}, {16, 4}, {16, 12}, {6, 12}]\n        ]\n      ]\n    }\n\n    refute Topo.intersects?(polygon, @exterior)\n    assert Topo.intersects?(polygon, @interior)\n    refute Topo.intersects?(polygon, @in_hole)\n  end\n\n  test \"repeat the first point at the end of the hole in a MultiPolygon 2\" do\n    polygon = %Geo.MultiPolygon{\n      coordinates: [\n        [\n          [{6, 12}, {6, 4}, {16, 4}, {16, 12}, {6, 12}]\n        ],\n        [\n          @valid_ring,\n          Enum.drop(@valid_hole, -1)\n        ]\n      ]\n    }\n\n    refute Topo.intersects?(polygon, @exterior)\n    assert Topo.intersects?(polygon, @interior)\n    refute Topo.intersects?(polygon, @in_hole)\n  end\n\n  test \"clean a GeoJSON-like map\" do\n    polygon = %{\n      type: \"MultiPolygon\",\n      coordinates: [\n        [\n          [{6, 12}, {6, 4}, {16, 4}, {16, 12}, {6, 12}]\n        ],\n        [\n          @valid_ring,\n          Enum.drop(@valid_hole, -1)\n        ]\n      ]\n    }\n\n    refute Topo.intersects?(polygon, @exterior)\n    assert Topo.intersects?(polygon, @interior)\n    refute Topo.intersects?(polygon, @in_hole)\n  end\nend\n"
  },
  {
    "path": "test/validation/line_complex_a_test.exs",
    "content": "defmodule Intersect.Validation.LineComplexATest do\n  use ExUnit.Case\n\n  @tag :validation\n  @tag :skip\n  test \"06-001 - LC - topographically equal with no boundary\" do\n    a = \"LINESTRING (0 0, 0 50, 50 50, 50 0, 0 0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"MULTILINESTRING ((0 0, 0 50),(0 50, 50 50),(50 50, 50 0),(50 0, 0 0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  @tag :skip\n  test \"06-001 - LC - topographically equal with no boundary (float)\" do\n    a = \"LINESTRING(0.0 0.0,0.0 50.0,50.0 50.0,50.0 0.0,0.0 0.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"MULTILINESTRING((0.0 0.0,0.0 50.0),(0.0 50.0,50.0 50.0),(50.0 50.0,50.0 0.0),(50.0 0.0,0.0 0.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  @tag :skip\n  test \"06-002 - LC - intersection (containment) along mod-2 A-Int line segment\" do\n    a = \"LINESTRING (40 180, 140 180)\" |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON (((20 320, 180 320, 180 180, 20 180, 20 320)),((20 180, 20 80, 180 80, 180 180, 20 180)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  @tag :skip\n  test \"06-002 - LC - intersection (containment) along mod-2 A-Int line segment (float)\" do\n    a = \"LINESTRING(40.0 180.0,140.0 180.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON(((20.0 320.0,180.0 320.0,180.0 180.0,20.0 180.0,20.0 320.0)),((20.0 180.0,20.0 80.0,180.0 80.0,180.0 180.0,20.0 180.0)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  @tag :skip\n  test \"06-003 - LC - intersection (overlap) along mod-2 A-Int line segment\" do\n    a = \"LINESTRING (40 180, 140 180)\" |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON (((20 320, 180 320, 180 180, 20 180, 20 320)),((60 180, 60 80, 180 80, 180 180, 60 180)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  @tag :skip\n  test \"06-003 - LC - intersection (overlap) along mod-2 A-Int line segment (float)\" do\n    a = \"LINESTRING(40.0 180.0,140.0 180.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON(((20.0 320.0,180.0 320.0,180.0 180.0,20.0 180.0,20.0 320.0)),((60.0 180.0,60.0 80.0,180.0 80.0,180.0 180.0,60.0 180.0)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  @tag :skip\n  test \"06-004 - LC - equal with boundary intersection\" do\n    a = \"LINESTRING (0 0, 60 0, 60 60, 60 0, 120 0)\" |> Geo.WKT.decode!()\n    b = \"MULTILINESTRING ((0 0, 60 0),(60 0, 120 0),(60 0, 60 60))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  @tag :skip\n  test \"06-004 - LC - equal with boundary intersection (float)\" do\n    a = \"LINESTRING(0.0 0.0,60.0 0.0,60.0 60.0,60.0 0.0,120.0 0.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"MULTILINESTRING((0.0 0.0,60.0 0.0),(60.0 0.0,120.0 0.0),(60.0 0.0,60.0 60.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\nend\n"
  },
  {
    "path": "test/validation/line_line_a_test.exs",
    "content": "defmodule Intersect.Validation.LineLineATest do\n  use ExUnit.Case\n\n  @tag :validation\n  test \"04-001 - L/L.1-3-1: touching at the start points of two lines\" do\n    a = \"LINESTRING (40 40, 120 120)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (40 40, 60 120)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-001 - L/L.1-3-1: touching at the start points of two lines (float)\" do\n    a = \"LINESTRING(40.0 40.0,120.0 120.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(40.0 40.0,60.0 120.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-002 - L/L.1-3-2: start point of one line touching end point of another line\" do\n    a = \"LINESTRING (40 40, 120 120)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (60 240, 40 40)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-002 - L/L.1-3-2: start point of one line touching end point of another line (float)\" do\n    a = \"LINESTRING(40.0 40.0,120.0 120.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(60.0 240.0,40.0 40.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-003 - L/L.1-3-3: start point of a line touching the interior of another line at a non-vertex\" do\n    a = \"LINESTRING (40 40, 180 180)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (120 120, 20 200)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-003 - L/L.1-3-3: start point of a line touching the interior of another line at a non-vertex (float)\" do\n    a = \"LINESTRING(40.0 40.0,180.0 180.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(120.0 120.0,20.0 200.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-004 - L/L.1-3-4: touching at the end points of two lines\" do\n    a = \"LINESTRING (40 40, 120 120)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (60 240, 120 120)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-004 - L/L.1-3-4: touching at the end points of two lines (float)\" do\n    a = \"LINESTRING(40.0 40.0,120.0 120.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(60.0 240.0,120.0 120.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-005 - L/L.1-3-5: end point of a line touching the interior of another line at a non-vertex\" do\n    a = \"LINESTRING (40 40, 180 180)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (20 180, 140 140)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-005 - L/L.1-3-5: end point of a line touching the interior of another line at a non-vertex (float)\" do\n    a = \"LINESTRING(40.0 40.0,180.0 180.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(20.0 180.0,140.0 140.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-006 - L/L.1-4-1: two lines crossing at non-vertex\" do\n    a = \"LINESTRING (40 40, 120 120)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (40 120, 120 40)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-006 - L/L.1-4-1: two lines crossing at non-vertex (float)\" do\n    a = \"LINESTRING(40.0 40.0,120.0 120.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(40.0 120.0,120.0 40.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-007 - L/L.1-1-1: equal pointwise\" do\n    a = \"LINESTRING (40 40, 100 100)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (40 40, 100 100)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"04-007 - L/L.1-1-1: equal pointwise (float)\" do\n    a = \"LINESTRING(40.0 40.0,100.0 100.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(40.0 40.0,100.0 100.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"04-008 - L/L.1-1-2: equal lines but points in reverse sequence\" do\n    a = \"LINESTRING (40 40, 100 100)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (100 100, 40 40)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"04-008 - L/L.1-1-2: equal lines but points in reverse sequence (float)\" do\n    a = \"LINESTRING(40.0 40.0,100.0 100.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(100.0 100.0,40.0 40.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"04-009 - L/L.1-2-1: dim(1){A.L.Int.SP-EP = B.L.Ext}\" do\n    a = \"LINESTRING (40 40, 120 120)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (40 120, 120 160)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-009 - L/L.1-2-1: dim(1){A.L.Int.SP-EP = B.L.Ext} (float)\" do\n    a = \"LINESTRING(40.0 40.0,120.0 120.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(40.0 120.0,120.0 160.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-010 - L/L.1-5-1: line A containing line B\" do\n    a = \"LINESTRING (20 20, 180 180)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (20 20, 180 180)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"04-010 - L/L.1-5-1: line A containing line B (float)\" do\n    a = \"LINESTRING(20.0 20.0,180.0 180.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(20.0 20.0,180.0 180.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"04-011 - L/L.1-5-2: line B is part of line A\" do\n    a = \"LINESTRING (20 20, 180 180)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (20 20, 110 110)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-011 - L/L.1-5-2: line B is part of line A (float)\" do\n    a = \"LINESTRING(20.0 20.0,180.0 180.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(20.0 20.0,110.0 110.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-012 - L/L.1-5-3: Line B is part of line A (in the middle portion)\" do\n    a = \"LINESTRING (20 20, 180 180)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (50 50, 140 140)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-012 - L/L.1-5-3: Line B is part of line A (in the middle portion) (float)\" do\n    a = \"LINESTRING(20.0 20.0,180.0 180.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(50.0 50.0,140.0 140.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-013 - L/L.1-6-1: start portions of two lines overlapping\" do\n    a = \"LINESTRING (180 180, 40 40)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (120 120, 260 260)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-013 - L/L.1-6-1: start portions of two lines overlapping (float)\" do\n    a = \"LINESTRING(180.0 180.0,40.0 40.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(120.0 120.0,260.0 260.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-014 - L/L.1-6-2: end portions of two lines overlapping\" do\n    a = \"LINESTRING (40 40, 180 180)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (260 260, 120 120)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-014 - L/L.1-6-2: end portions of two lines overlapping (float)\" do\n    a = \"LINESTRING(40.0 40.0,180.0 180.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(260.0 260.0,120.0 120.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-015 - L/L.1-6-3: end portion of line A overlapping the start portion of line B\" do\n    a = \"LINESTRING (40 40, 180 180)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (120 120, 260 260)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-015 - L/L.1-6-3: end portion of line A overlapping the start portion of line B (float)\" do\n    a = \"LINESTRING(40.0 40.0,180.0 180.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(120.0 120.0,260.0 260.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-016 - L/L.2-3-1: two LineStrings touching at start points\" do\n    a = \"LINESTRING (40 40, 100 100, 200 120, 80 240)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (40 40, 20 100, 40 160, 20 200)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-016 - L/L.2-3-1: two LineStrings touching at start points (float)\" do\n    a = \"LINESTRING(40.0 40.0,100.0 100.0,200.0 120.0,80.0 240.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(40.0 40.0,20.0 100.0,40.0 160.0,20.0 200.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-017 - L/L.2-3-2: start point of LineStrings A touching the end point of LineString B\" do\n    a = \"LINESTRING (40 40, 100 100, 200 120, 80 240)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (20 200, 40 160, 20 100, 40 40)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-017 - L/L.2-3-2: start point of LineStrings A touching the end point of LineString B (float)\" do\n    a = \"LINESTRING(40.0 40.0,100.0 100.0,200.0 120.0,80.0 240.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(20.0 200.0,40.0 160.0,20.0 100.0,40.0 40.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-018 - L/L.2-3-3: two LineStrings touching at end points\" do\n    a = \"LINESTRING (80 240, 200 120, 100 100, 40 40)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (20 200, 40 160, 20 100, 40 40)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-018 - L/L.2-3-3: two LineStrings touching at end points (float)\" do\n    a = \"LINESTRING(80.0 240.0,200.0 120.0,100.0 100.0,40.0 40.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(20.0 200.0,40.0 160.0,20.0 100.0,40.0 40.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-019 - L/L.2-3-4: both the start and end points of LineString A touching the interior of LineString B at two vertices\" do\n    a = \"LINESTRING (60 60, 60 230, 140 230, 250 160)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (20 20, 60 60, 250 160, 310 230)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-019 - L/L.2-3-4: both the start and end points of LineString A touching the interior of LineString B at two vertices (float)\" do\n    a = \"LINESTRING(60.0 60.0,60.0 230.0,140.0 230.0,250.0 160.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(20.0 20.0,60.0 60.0,250.0 160.0,310.0 230.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-020 - L/L.2-3-5: both the start and end points of LineString A touching the interior of LineString B at two non-vertices\" do\n    a = \"LINESTRING (60 60, 60 230, 140 230, 250 160)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (20 20, 110 110, 200 110, 320 230)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-020 - L/L.2-3-5: both the start and end points of LineString A touching the interior of LineString B at two non-vertices (float)\" do\n    a = \"LINESTRING(60.0 60.0,60.0 230.0,140.0 230.0,250.0 160.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(20.0 20.0,110.0 110.0,200.0 110.0,320.0 230.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-021 - L/L.2-3-6: the start and end points of two LineStrings touching each other\" do\n    a = \"LINESTRING (60 110, 60 250, 360 210)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (60 110, 110 160, 250 160, 310 160, 360 210)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-021 - L/L.2-3-6: the start and end points of two LineStrings touching each other (float)\" do\n    a = \"LINESTRING(60.0 110.0,60.0 250.0,360.0 210.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(60.0 110.0,110.0 160.0,250.0 160.0,310.0 160.0,360.0 210.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-022 - L/L.2-3-7: the start and end points of two LineStrings touching each other\" do\n    a = \"LINESTRING (60 110, 60 250, 360 210)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (360 210, 310 160, 110 160, 60 110)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-022 - L/L.2-3-7: the start and end points of two LineStrings touching each other (float)\" do\n    a = \"LINESTRING(60.0 110.0,60.0 250.0,360.0 210.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(360.0 210.0,310.0 160.0,110.0 160.0,60.0 110.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-023 - L/L.2-3-8: start point of LineString B touching LineString A at a non-vertex\" do\n    a = \"LINESTRING (40 40, 100 100, 200 120, 80 240)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (160 160, 240 240)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-023 - L/L.2-3-8: start point of LineString B touching LineString A at a non-vertex (float)\" do\n    a = \"LINESTRING(40.0 40.0,100.0 100.0,200.0 120.0,80.0 240.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(160.0 160.0,240.0 240.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-024 - L/L.2-3-9: end point of LineString B touching LineString A at a non-vertex\" do\n    a = \"LINESTRING (40 40, 100 100, 200 120, 80 240)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (240 240, 160 160)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-024 - L/L.2-3-9: end point of LineString B touching LineString A at a non-vertex (float)\" do\n    a = \"LINESTRING(40.0 40.0,100.0 100.0,200.0 120.0,80.0 240.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(240.0 240.0,160.0 160.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-025 - L/L.2-3-10: both the start and end points of LineString B touching the interior of LineString A at two non-vertices\" do\n    a = \"LINESTRING (60 60, 60 230, 140 230, 250 160)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (60 150, 110 100, 170 100, 110 230)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-025 - L/L.2-3-10: both the start and end points of LineString B touching the interior of LineString A at two non-vertices (float)\" do\n    a = \"LINESTRING(60.0 60.0,60.0 230.0,140.0 230.0,250.0 160.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(60.0 150.0,110.0 100.0,170.0 100.0,110.0 230.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-026 - L/L.2-3-11: the start point of LineString B touching the interior of LineString A at a non-vertex and the end point of LineString A touching the interior of LineString B at a vertex\" do\n    a = \"LINESTRING (60 60, 60 230, 140 230, 250 160)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (60 110, 110 160, 250 160, 310 160, 360 210)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-026 - L/L.2-3-11: the start point of LineString B touching the interior of LineString A at a non-vertex and the end point of LineString A touching the interior of LineString B at a vertex (float)\" do\n    a = \"LINESTRING(60.0 60.0,60.0 230.0,140.0 230.0,250.0 160.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(60.0 110.0,110.0 160.0,250.0 160.0,310.0 160.0,360.0 210.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-027 - L/L.2-3-12: start point of LineString B touching LineString A at a vertex\" do\n    a = \"LINESTRING (40 40, 100 100, 200 120, 80 240)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (200 120, 200 190, 150 240, 200 240)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-027 - L/L.2-3-12: start point of LineString B touching LineString A at a vertex (float)\" do\n    a = \"LINESTRING(40.0 40.0,100.0 100.0,200.0 120.0,80.0 240.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(200.0 120.0,200.0 190.0,150.0 240.0,200.0 240.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-028 - L/L.2-3-13: end point of LineString B touching LineString A at a vertex\" do\n    a = \"LINESTRING (40 40, 100 100, 200 120, 80 240)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (200 240, 150 240, 200 200, 200 120)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-028 - L/L.2-3-13: end point of LineString B touching LineString A at a vertex (float)\" do\n    a = \"LINESTRING(40.0 40.0,100.0 100.0,200.0 120.0,80.0 240.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(200.0 240.0,150.0 240.0,200.0 200.0,200.0 120.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-029 - L/L.2-3-14: both the start and end points of LineString B touching the interior of LineString A at two vertices\" do\n    a = \"LINESTRING (60 60, 60 230, 140 230, 250 160)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (60 230, 80 140, 120 140, 140 230)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-029 - L/L.2-3-14: both the start and end points of LineString B touching the interior of LineString A at two vertices (float)\" do\n    a = \"LINESTRING(60.0 60.0,60.0 230.0,140.0 230.0,250.0 160.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(60.0 230.0,80.0 140.0,120.0 140.0,140.0 230.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-030 - L/L.2-4-1: two LineStrings crossing at two points\" do\n    a = \"LINESTRING (60 110, 200 110, 250 160, 300 210)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (60 110, 110 160, 250 160, 310 160, 360 210)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-030 - L/L.2-4-1: two LineStrings crossing at two points (float)\" do\n    a = \"LINESTRING(60.0 110.0,200.0 110.0,250.0 160.0,300.0 210.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(60.0 110.0,110.0 160.0,250.0 160.0,310.0 160.0,360.0 210.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-031 - L/L.2-4-2: two LineStrings crossing at two points\" do\n    a = \"LINESTRING (60 110, 200 110, 250 160, 300 210, 360 210)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (60 110, 110 160, 250 160, 310 160, 360 210)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-031 - L/L.2-4-2: two LineStrings crossing at two points (float)\" do\n    a =\n      \"LINESTRING(60.0 110.0,200.0 110.0,250.0 160.0,300.0 210.0,360.0 210.0)\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(60.0 110.0,110.0 160.0,250.0 160.0,310.0 160.0,360.0 210.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-032 - L/L.2-4-3: two LineStrings crossing on one side\" do\n    a = \"LINESTRING (60 110, 220 110, 250 160, 280 110)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (60 110, 110 160, 250 160, 310 160, 360 210)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-032 - L/L.2-4-3: two LineStrings crossing on one side (float)\" do\n    a = \"LINESTRING(60.0 110.0,220.0 110.0,250.0 160.0,280.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(60.0 110.0,110.0 160.0,250.0 160.0,310.0 160.0,360.0 210.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-033 - L/L.2-4-4: two LineStrings crossing on one side\" do\n    a = \"LINESTRING (60 110, 150 110, 200 160, 250 110, 360 110, 360 210)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (60 110, 110 160, 250 160, 310 160, 360 210)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-033 - L/L.2-4-4: two LineStrings crossing on one side (float)\" do\n    a =\n      \"LINESTRING(60.0 110.0,150.0 110.0,200.0 160.0,250.0 110.0,360.0 110.0,360.0 210.0)\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(60.0 110.0,110.0 160.0,250.0 160.0,310.0 160.0,360.0 210.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-034 - L/L.2-4-5: two LineStrings crossing at two points\" do\n    a = \"LINESTRING (130 160, 160 110, 220 110, 250 160, 250 210)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (60 110, 110 160, 250 160, 310 160, 360 210)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-034 - L/L.2-4-5: two LineStrings crossing at two points (float)\" do\n    a =\n      \"LINESTRING(130.0 160.0,160.0 110.0,220.0 110.0,250.0 160.0,250.0 210.0)\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(60.0 110.0,110.0 160.0,250.0 160.0,310.0 160.0,360.0 210.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-035 - L/L.2-4-6: two LineStrings crossing at two points\" do\n    a = \"LINESTRING (130 160, 160 110, 190 110, 230 210)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (60 110, 110 160, 250 160, 310 160, 360 210)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-035 - L/L.2-4-6: two LineStrings crossing at two points (float)\" do\n    a = \"LINESTRING(130.0 160.0,160.0 110.0,190.0 110.0,230.0 210.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(60.0 110.0,110.0 160.0,250.0 160.0,310.0 160.0,360.0 210.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-036 - L/L.2-4-7: two LineStrings crossing at two points\" do\n    a = \"LINESTRING (130 160, 160 110, 200 110, 230 160, 260 210, 360 210)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (60 110, 110 160, 250 160, 310 160, 360 210)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-036 - L/L.2-4-7: two LineStrings crossing at two points (float)\" do\n    a =\n      \"LINESTRING(130.0 160.0,160.0 110.0,200.0 110.0,230.0 160.0,260.0 210.0,360.0 210.0)\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(60.0 110.0,110.0 160.0,250.0 160.0,310.0 160.0,360.0 210.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-037 - L/L.2-4-8: two LineStrings crossing at two points\" do\n    a =\n      \"LINESTRING (130 160, 160 110, 200 110, 230 160, 260 210, 360 210, 380 210)\"\n      |> Geo.WKT.decode!()\n\n    b = \"LINESTRING (60 110, 110 160, 250 160, 310 160, 360 210)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-037 - L/L.2-4-8: two LineStrings crossing at two points (float)\" do\n    a =\n      \"LINESTRING(130.0 160.0,160.0 110.0,200.0 110.0,230.0 160.0,260.0 210.0,360.0 210.0,380.0 210.0)\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(60.0 110.0,110.0 160.0,250.0 160.0,310.0 160.0,360.0 210.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-038 - L/L.2-4-9: two LineStrings crossing at three points\" do\n    a = \"LINESTRING (130 160, 160 110, 200 110, 230 160, 260 210, 380 210)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (60 110, 110 160, 250 160, 310 160, 360 210)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-038 - L/L.2-4-9: two LineStrings crossing at three points (float)\" do\n    a =\n      \"LINESTRING(130.0 160.0,160.0 110.0,200.0 110.0,230.0 160.0,260.0 210.0,380.0 210.0)\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(60.0 110.0,110.0 160.0,250.0 160.0,310.0 160.0,360.0 210.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-039 - L/L.2-4-10: two LineStrings crossing at two points\" do\n    a = \"LINESTRING (110 160, 160 110, 200 110, 250 160, 250 210)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (60 110, 110 160, 250 160, 310 160, 360 210)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-039 - L/L.2-4-10: two LineStrings crossing at two points (float)\" do\n    a =\n      \"LINESTRING(110.0 160.0,160.0 110.0,200.0 110.0,250.0 160.0,250.0 210.0)\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(60.0 110.0,110.0 160.0,250.0 160.0,310.0 160.0,360.0 210.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-040 - L/L.2-4-11: two LineStrings crossing on one side\" do\n    a = \"LINESTRING (110 160, 180 110, 250 160, 320 110)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (60 110, 110 160, 250 160, 310 160, 360 210)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-040 - L/L.2-4-11: two LineStrings crossing on one side (float)\" do\n    a = \"LINESTRING(110.0 160.0,180.0 110.0,250.0 160.0,320.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(60.0 110.0,110.0 160.0,250.0 160.0,310.0 160.0,360.0 210.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-041 - L/L.2-4-12: two LineStrings crossing on one side\" do\n    a = \"LINESTRING (140 160, 180 80, 220 160, 250 80)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (60 110, 110 160, 250 160, 310 160, 360 210)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-041 - L/L.2-4-12: two LineStrings crossing on one side (float)\" do\n    a = \"LINESTRING(140.0 160.0,180.0 80.0,220.0 160.0,250.0 80.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(60.0 110.0,110.0 160.0,250.0 160.0,310.0 160.0,360.0 210.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-042 - L/L.2-4-13: two LineStrings crossing at a vertex for one of the LineStrings\" do\n    a = \"LINESTRING (40 40, 100 100, 200 120, 130 190)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (20 130, 70 130, 160 40)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-042 - L/L.2-4-13: two LineStrings crossing at a vertex for one of the LineStrings (float)\" do\n    a = \"LINESTRING(40.0 40.0,100.0 100.0,200.0 120.0,130.0 190.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(20.0 130.0,70.0 130.0,160.0 40.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-043 - L/L.2-4-14: two LineStrings crossing at non-vertices for both of the LineStrings\" do\n    a = \"LINESTRING (40 40, 100 100, 200 120, 130 190)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (40 160, 40 100, 110 40, 170 40)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-043 - L/L.2-4-14: two LineStrings crossing at non-vertices for both of the LineStrings (float)\" do\n    a = \"LINESTRING(40.0 40.0,100.0 100.0,200.0 120.0,130.0 190.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(40.0 160.0,40.0 100.0,110.0 40.0,170.0 40.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-044 - L/L.2-4-15: two LineStrings crossing on one side\" do\n    a = \"LINESTRING (130 110, 180 160, 230 110, 280 160, 330 110)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (60 110, 110 160, 250 160, 310 160, 360 210)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-044 - L/L.2-4-15: two LineStrings crossing on one side (float)\" do\n    a =\n      \"LINESTRING(130.0 110.0,180.0 160.0,230.0 110.0,280.0 160.0,330.0 110.0)\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(60.0 110.0,110.0 160.0,250.0 160.0,310.0 160.0,360.0 210.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-045 - L/L.2-4-16: two LineStrings crossing at vertices for both LineString\" do\n    a = \"LINESTRING (40 40, 100 100, 200 120, 130 190)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (30 140, 80 140, 100 100, 200 30)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-045 - L/L.2-4-16: two LineStrings crossing at vertices for both LineString (float)\" do\n    a = \"LINESTRING(40.0 40.0,100.0 100.0,200.0 120.0,130.0 190.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(30.0 140.0,80.0 140.0,100.0 100.0,200.0 30.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-046 - L/L.2-4-17: two LineStrings crossing on one side\" do\n    a = \"LINESTRING (110 110, 110 160, 180 110, 250 160, 250 110)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (60 110, 110 160, 250 160, 310 160, 360 210)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-046 - L/L.2-4-17: two LineStrings crossing on one side (float)\" do\n    a =\n      \"LINESTRING(110.0 110.0,110.0 160.0,180.0 110.0,250.0 160.0,250.0 110.0)\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(60.0 110.0,110.0 160.0,250.0 160.0,310.0 160.0,360.0 210.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-047 - L/L.2-4-18: multiple crossings\" do\n    a = \"LINESTRING (20 20, 80 80, 160 80, 240 80, 300 140)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING (20 60, 60 60, 60 140, 80 80, 100 20, 140 140, 180 20, 200 80, 220 20, 240 80, 300 80, 270 110, 200 110)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-047 - L/L.2-4-18: multiple crossings (float)\" do\n    a = \"LINESTRING(20.0 20.0,80.0 80.0,160.0 80.0,240.0 80.0,300.0 140.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(20.0 60.0,60.0 60.0,60.0 140.0,80.0 80.0,100.0 20.0,140.0 140.0,180.0 20.0,200.0 80.0,220.0 20.0,240.0 80.0,300.0 80.0,270.0 110.0,200.0 110.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-048 - L/L.2-4-19: spiky LineStrings with multiple crossing\" do\n    a =\n      \"LINESTRING (20 20, 230 20, 20 30, 170 30, 20 40, 230 40, 20 50, 230 60, 60 60, 230 70, 20 70, 180 80, 60 80, 230 90, 20 90, 230 100, 30 100, 210 110, 20 110, 80 120, 20 130, 170 130, 90 120, 230 130, 170 140, 230 140, 80 150, 160 140, 20 140, 70 150, 20 150, 230 160, 80 160, 230 170, 20 160, 180 170, 20 170, 230 180, 20 180, 40 190, 230 190, 20 200, 230 200)\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING (30 210, 30 60, 40 210, 40 30, 50 190, 50 20, 60 160, 60 50, 70 220, 70 50, 80 20, 80 210, 90 50, 90 150, 100 30, 100 210, 110 20, 110 190, 120 50, 120 180, 130 210, 120 20, 140 210, 130 50, 150 210, 130 20, 160 210, 140 30, 170 210, 150 20, 180 210, 160 20, 190 210, 180 80, 170 50, 170 20, 180 70, 180 20, 190 190, 190 30, 200 210, 200 30, 210 210, 210 20, 220 150, 220 20)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-048 - L/L.2-4-19: spiky LineStrings with multiple crossing (float)\" do\n    a =\n      \"LINESTRING(20.0 20.0,230.0 20.0,20.0 30.0,170.0 30.0,20.0 40.0,230.0 40.0,20.0 50.0,230.0 60.0,60.0 60.0,230.0 70.0,20.0 70.0,180.0 80.0,60.0 80.0,230.0 90.0,20.0 90.0,230.0 100.0,30.0 100.0,210.0 110.0,20.0 110.0,80.0 120.0,20.0 130.0,170.0 130.0,90.0 120.0,230.0 130.0,170.0 140.0,230.0 140.0,80.0 150.0,160.0 140.0,20.0 140.0,70.0 150.0,20.0 150.0,230.0 160.0,80.0 160.0,230.0 170.0,20.0 160.0,180.0 170.0,20.0 170.0,230.0 180.0,20.0 180.0,40.0 190.0,230.0 190.0,20.0 200.0,230.0 200.0)\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(30.0 210.0,30.0 60.0,40.0 210.0,40.0 30.0,50.0 190.0,50.0 20.0,60.0 160.0,60.0 50.0,70.0 220.0,70.0 50.0,80.0 20.0,80.0 210.0,90.0 50.0,90.0 150.0,100.0 30.0,100.0 210.0,110.0 20.0,110.0 190.0,120.0 50.0,120.0 180.0,130.0 210.0,120.0 20.0,140.0 210.0,130.0 50.0,150.0 210.0,130.0 20.0,160.0 210.0,140.0 30.0,170.0 210.0,150.0 20.0,180.0 210.0,160.0 20.0,190.0 210.0,180.0 80.0,170.0 50.0,170.0 20.0,180.0 70.0,180.0 20.0,190.0 190.0,190.0 30.0,200.0 210.0,200.0 30.0,210.0 210.0,210.0 20.0,220.0 150.0,220.0 20.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-049 - L/L.2-1-1: two equal LineStrings with equal pointwise\" do\n    a = \"LINESTRING (40 40, 100 100, 200 120, 80 240)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (40 40, 100 100, 200 120, 80 240)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"04-049 - L/L.2-1-1: two equal LineStrings with equal pointwise (float)\" do\n    a = \"LINESTRING(40.0 40.0,100.0 100.0,200.0 120.0,80.0 240.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(40.0 40.0,100.0 100.0,200.0 120.0,80.0 240.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"04-050 - L/L.2-1-2: two equal LineStrings with points in reverse sequence\" do\n    a = \"LINESTRING (40 40, 100 100, 200 120, 80 240)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (80 240, 200 120, 100 100, 40 40)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"04-050 - L/L.2-1-2: two equal LineStrings with points in reverse sequence (float)\" do\n    a = \"LINESTRING(40.0 40.0,100.0 100.0,200.0 120.0,80.0 240.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(80.0 240.0,200.0 120.0,100.0 100.0,40.0 40.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"04-051 - L/L.2-1-3: two equal LineStrings with different number of points\" do\n    a = \"LINESTRING (40 40, 100 100, 200 120, 80 240)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (80 240, 120 200, 200 120, 100 100, 80 80, 40 40)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"04-051 - L/L.2-1-3: two equal LineStrings with different number of points (float)\" do\n    a = \"LINESTRING(40.0 40.0,100.0 100.0,200.0 120.0,80.0 240.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(80.0 240.0,120.0 200.0,200.0 120.0,100.0 100.0,80.0 80.0,40.0 40.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"04-052 - L/L.2-2-1: disjoint\" do\n    a = \"LINESTRING (40 40, 100 100, 200 120, 80 240)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (260 210, 240 130, 280 120, 260 40)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-052 - L/L.2-2-1: disjoint (float)\" do\n    a = \"LINESTRING(40.0 40.0,100.0 100.0,200.0 120.0,80.0 240.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(260.0 210.0,240.0 130.0,280.0 120.0,260.0 40.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-053 - L/L.2-2-2: wrapping around but still disjoint\" do\n    a =\n      \"LINESTRING (100 20, 20 20, 20 160, 210 160, 210 20, 110 20, 50 120, 120 150, 200 150)\"\n      |> Geo.WKT.decode!()\n\n    b = \"LINESTRING (140 130, 100 110, 120 60, 170 60)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-053 - L/L.2-2-2: wrapping around but still disjoint (float)\" do\n    a =\n      \"LINESTRING(100.0 20.0,20.0 20.0,20.0 160.0,210.0 160.0,210.0 20.0,110.0 20.0,50.0 120.0,120.0 150.0,200.0 150.0)\"\n      |> Geo.WKT.decode!()\n\n    b = \"LINESTRING(140.0 130.0,100.0 110.0,120.0 60.0,170.0 60.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-054 - L/L.2-5-1: LineString A containing LineString B, same pointwise\" do\n    a = \"LINESTRING (60 110, 110 160, 250 160, 310 160, 360 210)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (60 110, 110 160, 250 160, 310 160, 360 210)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"04-054 - L/L.2-5-1: LineString A containing LineString B, same pointwise (float)\" do\n    a =\n      \"LINESTRING(60.0 110.0,110.0 160.0,250.0 160.0,310.0 160.0,360.0 210.0)\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(60.0 110.0,110.0 160.0,250.0 160.0,310.0 160.0,360.0 210.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"04-055 - L/L.2-5-2: LineString A containing LineString B, LineString A with less points\" do\n    a = \"LINESTRING (60 110, 110 160, 310 160, 360 210)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (60 110, 110 160, 250 160, 310 160, 360 210)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"04-055 - L/L.2-5-2: LineString A containing LineString B, LineString A with less points (float)\" do\n    a = \"LINESTRING(60.0 110.0,110.0 160.0,310.0 160.0,360.0 210.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(60.0 110.0,110.0 160.0,250.0 160.0,310.0 160.0,360.0 210.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"04-056 - L/L.2-5-3: LineString A containing LineString B\" do\n    a = \"LINESTRING (60 110, 110 160, 250 160, 310 160, 360 210)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (60 110, 110 160, 250 160)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-056 - L/L.2-5-3: LineString A containing LineString B (float)\" do\n    a =\n      \"LINESTRING(60.0 110.0,110.0 160.0,250.0 160.0,310.0 160.0,360.0 210.0)\"\n      |> Geo.WKT.decode!()\n\n    b = \"LINESTRING(60.0 110.0,110.0 160.0,250.0 160.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-057 - L/L.2-5-4: LineString A containing LineString B\" do\n    a = \"LINESTRING (60 110, 110 160, 250 160, 310 160, 360 210)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (110 160, 310 160, 340 190)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-057 - L/L.2-5-4: LineString A containing LineString B (float)\" do\n    a =\n      \"LINESTRING(60.0 110.0,110.0 160.0,250.0 160.0,310.0 160.0,360.0 210.0)\"\n      |> Geo.WKT.decode!()\n\n    b = \"LINESTRING(110.0 160.0,310.0 160.0,340.0 190.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-058 - L/L.2-5-5: LineString A containing LineString B\" do\n    a = \"LINESTRING (60 110, 110 160, 250 160, 310 160, 360 210)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (140 160, 250 160, 310 160, 340 190)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-058 - L/L.2-5-5: LineString A containing LineString B (float)\" do\n    a =\n      \"LINESTRING(60.0 110.0,110.0 160.0,250.0 160.0,310.0 160.0,360.0 210.0)\"\n      |> Geo.WKT.decode!()\n\n    b = \"LINESTRING(140.0 160.0,250.0 160.0,310.0 160.0,340.0 190.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-059 - L/L.2-5-6: LineString A containing LineString B\" do\n    a = \"LINESTRING (60 110, 110 160, 250 160, 310 160, 360 210)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (110 160, 250 160, 310 160)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-059 - L/L.2-5-6: LineString A containing LineString B (float)\" do\n    a =\n      \"LINESTRING(60.0 110.0,110.0 160.0,250.0 160.0,310.0 160.0,360.0 210.0)\"\n      |> Geo.WKT.decode!()\n\n    b = \"LINESTRING(110.0 160.0,250.0 160.0,310.0 160.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-060 - L/L.2-6-1: start portions of two LineStrings overlapping\" do\n    a = \"LINESTRING (40 40, 100 100, 200 120, 80 240)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (200 120, 100 100, 40 40, 140 80, 200 40)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-060 - L/L.2-6-1: start portions of two LineStrings overlapping (float)\" do\n    a = \"LINESTRING(40.0 40.0,100.0 100.0,200.0 120.0,80.0 240.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(200.0 120.0,100.0 100.0,40.0 40.0,140.0 80.0,200.0 40.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-061 - L/L.2-6-2: start portion of LineString A overlapping end portion of LineString B, intersecting at the middle of LineString A\" do\n    a = \"LINESTRING (40 40, 100 100, 200 120, 80 240)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (280 240, 240 140, 200 120, 100 100, 40 40)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-061 - L/L.2-6-2: start portion of LineString A overlapping end portion of LineString B, intersecting at the middle of LineString A (float)\" do\n    a = \"LINESTRING(40.0 40.0,100.0 100.0,200.0 120.0,80.0 240.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(280.0 240.0,240.0 140.0,200.0 120.0,100.0 100.0,40.0 40.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-062 - L/L.2-6-3: start portion of LineString A overlapping end portion of LineString B, intersecting at the middle of LineString A\" do\n    a = \"LINESTRING (40 40, 100 100, 200 120, 80 240)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (80 190, 140 140, 40 40)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-062 - L/L.2-6-3: start portion of LineString A overlapping end portion of LineString B, intersecting at the middle of LineString A (float)\" do\n    a = \"LINESTRING(40.0 40.0,100.0 100.0,200.0 120.0,80.0 240.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(80.0 190.0,140.0 140.0,40.0 40.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-063 - L/L.2-6-4: end portions of two LineStrings overlapping\" do\n    a = \"LINESTRING (40 40, 100 100, 200 120, 80 240)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (240 200, 200 260, 80 240, 140 180)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-063 - L/L.2-6-4: end portions of two LineStrings overlapping (float)\" do\n    a = \"LINESTRING(40.0 40.0,100.0 100.0,200.0 120.0,80.0 240.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(240.0 200.0,200.0 260.0,80.0 240.0,140.0 180.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-064 - L/L.2-6-5: end portion of LineString A overlapping start portion of LineString B\" do\n    a = \"LINESTRING (40 40, 100 100, 200 120, 80 240)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (140 180, 80 240, 200 260, 240 200)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-064 - L/L.2-6-5: end portion of LineString A overlapping start portion of LineString B (float)\" do\n    a = \"LINESTRING(40.0 40.0,100.0 100.0,200.0 120.0,80.0 240.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(140.0 180.0,80.0 240.0,200.0 260.0,240.0 200.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-065 - L/L.2-6-6: end portion of LineString A overlapping end portion of LineString B, intersecting at the middle of LineString A\" do\n    a = \"LINESTRING (40 40, 100 100, 200 120, 80 240)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (280 240, 240 140, 200 120, 80 240)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-065 - L/L.2-6-6: end portion of LineString A overlapping end portion of LineString B, intersecting at the middle of LineString A (float)\" do\n    a = \"LINESTRING(40.0 40.0,100.0 100.0,200.0 120.0,80.0 240.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(280.0 240.0,240.0 140.0,200.0 120.0,80.0 240.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-066 - L/L.2-6-7: middle portions of two LineStrings overlapping\" do\n    a = \"LINESTRING (20 20, 80 80, 160 80, 240 80, 300 140)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (20 80, 120 80, 200 80, 260 20)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-066 - L/L.2-6-7: middle portions of two LineStrings overlapping (float)\" do\n    a = \"LINESTRING(20.0 20.0,80.0 80.0,160.0 80.0,240.0 80.0,300.0 140.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(20.0 80.0,120.0 80.0,200.0 80.0,260.0 20.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-067 - L/L.2-6-8: middle portion of LineString A overlapping start portion of LineString B\" do\n    a = \"LINESTRING (40 40, 100 100, 200 120, 80 240)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (100 100, 200 120, 240 140, 280 240)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-067 - L/L.2-6-8: middle portion of LineString A overlapping start portion of LineString B (float)\" do\n    a = \"LINESTRING(40.0 40.0,100.0 100.0,200.0 120.0,80.0 240.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(100.0 100.0,200.0 120.0,240.0 140.0,280.0 240.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-068 - L/L.2-6-9: middle portion of LineString A overlapping end portion of LineString B\" do\n    a = \"LINESTRING (40 40, 100 100, 200 120, 80 240)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (280 240, 240 140, 200 120, 100 100)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-068 - L/L.2-6-9: middle portion of LineString A overlapping end portion of LineString B (float)\" do\n    a = \"LINESTRING(40.0 40.0,100.0 100.0,200.0 120.0,80.0 240.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(280.0 240.0,240.0 140.0,200.0 120.0,100.0 100.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-069 - L/L.2-6-10: middle portions of two LineStrings overlapping\" do\n    a = \"LINESTRING (20 20, 80 80, 160 80, 240 80, 300 140)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (80 20, 80 80, 240 80, 300 20)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-069 - L/L.2-6-10: middle portions of two LineStrings overlapping (float)\" do\n    a = \"LINESTRING(20.0 20.0,80.0 80.0,160.0 80.0,240.0 80.0,300.0 140.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(80.0 20.0,80.0 80.0,240.0 80.0,300.0 20.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-070 - L/L.2-6-11: middle portions of two LineStrings overlapping, multiple intersects\" do\n    a = \"LINESTRING (20 20, 80 80, 160 80, 240 80, 300 140)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING (20 80, 80 80, 120 80, 140 140, 160 80, 200 80, 220 20, 240 80, 270 110, 300 80)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-070 - L/L.2-6-11: middle portions of two LineStrings overlapping, multiple intersects (float)\" do\n    a = \"LINESTRING(20.0 20.0,80.0 80.0,160.0 80.0,240.0 80.0,300.0 140.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(20.0 80.0,80.0 80.0,120.0 80.0,140.0 140.0,160.0 80.0,200.0 80.0,220.0 20.0,240.0 80.0,270.0 110.0,300.0 80.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-071 - L/LR-3-1: a LineString touching a LinearRing\" do\n    a = \"LINESTRING (100 100, 20 180, 180 180)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (100 100, 180 20, 20 20, 100 100)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-071 - L/LR-3-1: a LineString touching a LinearRing (float)\" do\n    a = \"LINESTRING(100.0 100.0,20.0 180.0,180.0 180.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(100.0 100.0,180.0 20.0,20.0 20.0,100.0 100.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-072 - L/LR-4-1: a LineString crossing a LinearRing\" do\n    a = \"LINESTRING (20 100, 180 100, 100 180)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (100 100, 180 20, 20 20, 100 100)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-072 - L/LR-4-1: a LineString crossing a LinearRing (float)\" do\n    a = \"LINESTRING(20.0 100.0,180.0 100.0,100.0 180.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(100.0 100.0,180.0 20.0,20.0 20.0,100.0 100.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-073 - L/LR-4-2: a LineString crossing a LinearRing\" do\n    a = \"LINESTRING (100 40, 100 160, 180 160)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (100 100, 180 20, 20 20, 100 100)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-073 - L/LR-4-2: a LineString crossing a LinearRing (float)\" do\n    a = \"LINESTRING(100.0 40.0,100.0 160.0,180.0 160.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(100.0 100.0,180.0 20.0,20.0 20.0,100.0 100.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-074 - L/LR-4-3: a LineString crossing a LinearRing\" do\n    a = \"LINESTRING (20 100, 100 100, 180 100, 100 180)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (100 100, 180 20, 20 20, 100 100)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-074 - L/LR-4-3: a LineString crossing a LinearRing (float)\" do\n    a = \"LINESTRING(20.0 100.0,100.0 100.0,180.0 100.0,100.0 180.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(100.0 100.0,180.0 20.0,20.0 20.0,100.0 100.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-075 - L/LR-5-1: a LineString within a LinearRing\" do\n    a = \"LINESTRING (100 100, 160 40)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (100 100, 180 20, 20 20, 100 100)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-075 - L/LR-5-1: a LineString within a LinearRing (float)\" do\n    a = \"LINESTRING(100.0 100.0,160.0 40.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(100.0 100.0,180.0 20.0,20.0 20.0,100.0 100.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-076 - L/LR-5-2: a LineString within a LinearRing\" do\n    a = \"LINESTRING (100 100, 180 20)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (100 100, 180 20, 20 20, 100 100)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-076 - L/LR-5-2: a LineString within a LinearRing (float)\" do\n    a = \"LINESTRING(100.0 100.0,180.0 20.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(100.0 100.0,180.0 20.0,20.0 20.0,100.0 100.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-077 - L/LR-5-3: a LineString within a LinearRing\" do\n    a = \"LINESTRING (60 60, 100 100, 140 60)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (100 100, 180 20, 20 20, 100 100)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-077 - L/LR-5-3: a LineString within a LinearRing (float)\" do\n    a = \"LINESTRING(60.0 60.0,100.0 100.0,140.0 60.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(100.0 100.0,180.0 20.0,20.0 20.0,100.0 100.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-078 - L/LR-6-1: a LineString crossing a LinearRing\" do\n    a = \"LINESTRING (100 100, 190 10, 190 100)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (100 100, 180 20, 20 20, 100 100)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-078 - L/LR-6-1: a LineString crossing a LinearRing (float)\" do\n    a = \"LINESTRING(100.0 100.0,190.0 10.0,190.0 100.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(100.0 100.0,180.0 20.0,20.0 20.0,100.0 100.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-079 - L/LR-6-2: a LineString crossing a LinearRing\" do\n    a = \"LINESTRING (100 100, 160 40, 160 100)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (100 100, 180 20, 20 20, 100 100)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-079 - L/LR-6-2: a LineString crossing a LinearRing (float)\" do\n    a = \"LINESTRING(100.0 100.0,160.0 40.0,160.0 100.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(100.0 100.0,180.0 20.0,20.0 20.0,100.0 100.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-080 - L/LR-6-3: a LineString crossing a LinearRing\" do\n    a = \"LINESTRING (60 140, 160 40, 160 140)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (100 100, 180 20, 20 20, 100 100)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-080 - L/LR-6-3: a LineString crossing a LinearRing (float)\" do\n    a = \"LINESTRING(60.0 140.0,160.0 40.0,160.0 140.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(100.0 100.0,180.0 20.0,20.0 20.0,100.0 100.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-081 - L/nsL: A line's interior at a non-vertex intersecting a non-simple linestring's end point with both crossing and overlapping line segments\" do\n    a = \"LINESTRING (20 20, 140 140)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (80 80, 20 80, 140 80, 80 20, 80 140)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-081 - L/nsL: A line's interior at a non-vertex intersecting a non-simple linestring's end point with both crossing and overlapping line segments (float)\" do\n    a = \"LINESTRING(20.0 20.0,140.0 140.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(80.0 80.0,20.0 80.0,140.0 80.0,80.0 20.0,80.0 140.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-082 - L/nsL: A line's interior at a non-vertex intersecting a non-simple linestring's end point with overlapping line segments\" do\n    a = \"LINESTRING (20 20, 140 140)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (80 80, 20 80, 140 80)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-082 - L/nsL: A line's interior at a non-vertex intersecting a non-simple linestring's end point with overlapping line segments (float)\" do\n    a = \"LINESTRING(20.0 20.0,140.0 140.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(80.0 80.0,20.0 80.0,140.0 80.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-083 - L/nsL: A line's interior at a non-vertex intersecting a non-simple linestring's end point with crossing line segments\" do\n    a = \"LINESTRING (20 20, 140 140)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (80 80, 140 80, 80 20, 80 140)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-083 - L/nsL: A line's interior at a non-vertex intersecting a non-simple linestring's end point with crossing line segments (float)\" do\n    a = \"LINESTRING(20.0 20.0,140.0 140.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(80.0 80.0,140.0 80.0,80.0 20.0,80.0 140.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-084 - L/nsL: A line's interior at a non-vertex intersecting a non-simple linestring's closing point with both crossing and overlapping line segments\" do\n    a = \"LINESTRING (20 20, 140 140)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (80 80, 20 80, 140 80, 80 20, 80 80)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-084 - L/nsL: A line's interior at a non-vertex intersecting a non-simple linestring's closing point with both crossing and overlapping line segments (float)\" do\n    a = \"LINESTRING(20.0 20.0,140.0 140.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(80.0 80.0,20.0 80.0,140.0 80.0,80.0 20.0,80.0 80.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-085 - L/nsL: A line's interior at a non-vertex intersecting a non-simple linestring's closing point with overlapping line segments\" do\n    a = \"LINESTRING (20 20, 140 140)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (80 80, 20 80, 140 80, 80 80)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-085 - L/nsL: A line's interior at a non-vertex intersecting a non-simple linestring's closing point with overlapping line segments (float)\" do\n    a = \"LINESTRING(20.0 20.0,140.0 140.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(80.0 80.0,20.0 80.0,140.0 80.0,80.0 80.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-086 - L/nsL: A line's interior at a non-vertex intersecting a non-simple linestring's closing point with crossing line segments\" do\n    a = \"LINESTRING (20 20, 140 140)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (80 80, 20 80, 20 140, 140 20, 80 20, 80 80)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-086 - L/nsL: A line's interior at a non-vertex intersecting a non-simple linestring's closing point with crossing line segments (float)\" do\n    a = \"LINESTRING(20.0 20.0,140.0 140.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(80.0 80.0,20.0 80.0,20.0 140.0,140.0 20.0,80.0 20.0,80.0 80.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-087 - L/nsL: A line's interior at a non-vertex intersecting a non-simple linestring's interior at a non-vertex\" do\n    a = \"LINESTRING (20 20, 140 140)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (20 140, 140 20, 100 20, 100 80)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-087 - L/nsL: A line's interior at a non-vertex intersecting a non-simple linestring's interior at a non-vertex (float)\" do\n    a = \"LINESTRING(20.0 20.0,140.0 140.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(20.0 140.0,140.0 20.0,100.0 20.0,100.0 80.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-088 - L/nsL: A line's interior at a non-vertex intersecting a non-simple linestring's interior at a non-vertex with both crossing and overlapping line segments\" do\n    a = \"LINESTRING (20 20, 140 140)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (140 80, 20 80, 120 80, 80 20, 80 140)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-088 - L/nsL: A line's interior at a non-vertex intersecting a non-simple linestring's interior at a non-vertex with both crossing and overlapping line segments (float)\" do\n    a = \"LINESTRING(20.0 20.0,140.0 140.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(140.0 80.0,20.0 80.0,120.0 80.0,80.0 20.0,80.0 140.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-089 - L/nsL: A line's interior at a non-vertex intersecting a non-simple linestring's interior at a non-vertex with overlapping line segments\" do\n    a = \"LINESTRING (20 20, 140 140)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (140 80, 20 80, 140 80)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-089 - L/nsL: A line's interior at a non-vertex intersecting a non-simple linestring's interior at a non-vertex with overlapping line segments (float)\" do\n    a = \"LINESTRING(20.0 20.0,140.0 140.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(140.0 80.0,20.0 80.0,140.0 80.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-090 - L/nsL: A line's interior at a non-vertex intersecting a non-simple linestring's interior at a non-vertex with crossing line segments\" do\n    a = \"LINESTRING (20 20, 140 140)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (140 80, 20 80, 80 140, 80 20)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-090 - L/nsL: A line's interior at a non-vertex intersecting a non-simple linestring's interior at a non-vertex with crossing line segments (float)\" do\n    a = \"LINESTRING(20.0 20.0,140.0 140.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(140.0 80.0,20.0 80.0,80.0 140.0,80.0 20.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-091 - L/nsL: A line's interior at a non-vertex intersecting a non-simple linestring's interior at a vertex\" do\n    a = \"LINESTRING (20 20, 140 140)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (140 80, 80 80, 20 80, 50 140, 50 60)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-091 - L/nsL: A line's interior at a non-vertex intersecting a non-simple linestring's interior at a vertex (float)\" do\n    a = \"LINESTRING(20.0 20.0,140.0 140.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(140.0 80.0,80.0 80.0,20.0 80.0,50.0 140.0,50.0 60.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-092 - L/nsL: A line's interior at a non-vertex intersecting a non-simple linestring's interior at a vertex with both crossing and overlapping line segments\" do\n    a = \"LINESTRING (20 20, 140 140)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (140 80, 20 80, 120 80, 80 20, 80 80, 80 140)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-092 - L/nsL: A line's interior at a non-vertex intersecting a non-simple linestring's interior at a vertex with both crossing and overlapping line segments (float)\" do\n    a = \"LINESTRING(20.0 20.0,140.0 140.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(140.0 80.0,20.0 80.0,120.0 80.0,80.0 20.0,80.0 80.0,80.0 140.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-093 - L/nsL: A line's interior at a non-vertex intersecting a non-simple linestring's interior at a vertex with overlapping line segments\" do\n    a = \"LINESTRING (20 20, 140 140)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (140 80, 20 80, 80 80, 140 80)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-093 - L/nsL: A line's interior at a non-vertex intersecting a non-simple linestring's interior at a vertex with overlapping line segments (float)\" do\n    a = \"LINESTRING(20.0 20.0,140.0 140.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(140.0 80.0,20.0 80.0,80.0 80.0,140.0 80.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-094 - L/nsL: A line's interior at a non-vertex intersecting a non-simple linestring's interior at a vertex with crossing line segments\" do\n    a = \"LINESTRING (20 20, 140 140)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (140 80, 20 80, 80 140, 80 80, 80 20)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-094 - L/nsL: A line's interior at a non-vertex intersecting a non-simple linestring's interior at a vertex with crossing line segments (float)\" do\n    a = \"LINESTRING(20.0 20.0,140.0 140.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(140.0 80.0,20.0 80.0,80.0 140.0,80.0 80.0,80.0 20.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-095 - L/nsL.1-3-1: start point of a LineString touching the self-intersecting point of a non-simple LineString\" do\n    a = \"LINESTRING (130 150, 220 150, 220 240)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (130 240, 130 150, 220 20, 50 20, 130 150)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-095 - L/nsL.1-3-1: start point of a LineString touching the self-intersecting point of a non-simple LineString (float)\" do\n    a = \"LINESTRING(130.0 150.0,220.0 150.0,220.0 240.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(130.0 240.0,130.0 150.0,220.0 20.0,50.0 20.0,130.0 150.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-096 - L/nsL.1-3-2: the interior of a LineString touching the self-intersecting point of a non-simple LineString\" do\n    a = \"LINESTRING (30 150, 130 150, 250 150)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (130 240, 130 150, 220 20, 50 20, 130 150)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-096 - L/nsL.1-3-2: the interior of a LineString touching the self-intersecting point of a non-simple LineString (float)\" do\n    a = \"LINESTRING(30.0 150.0,130.0 150.0,250.0 150.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(130.0 240.0,130.0 150.0,220.0 20.0,50.0 20.0,130.0 150.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-097 - L/nsL.1-3-3: the interior of a LineString touching the self-intersecting point of a non-simple LineString\" do\n    a = \"LINESTRING (30 150, 250 150)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (130 240, 130 150, 220 20, 50 20, 130 150)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-097 - L/nsL.1-3-3: the interior of a LineString touching the self-intersecting point of a non-simple LineString (float)\" do\n    a = \"LINESTRING(30.0 150.0,250.0 150.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(130.0 240.0,130.0 150.0,220.0 20.0,50.0 20.0,130.0 150.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-098 - L/nsL.1-3-4: the interior of a LineString touching the self-intersecting point of a non-simple LineString\" do\n    a = \"LINESTRING (30 150, 130 150, 250 150)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (130 240, 130 20, 30 20, 130 150)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-098 - L/nsL.1-3-4: the interior of a LineString touching the self-intersecting point of a non-simple LineString (float)\" do\n    a = \"LINESTRING(30.0 150.0,130.0 150.0,250.0 150.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(130.0 240.0,130.0 20.0,30.0 20.0,130.0 150.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-099 - L/nsL.1-4: a Line crossing a non-simple LineString at non-vertices\" do\n    a = \"LINESTRING (30 150, 250 150)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (120 240, 120 20, 20 20, 120 170)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-099 - L/nsL.1-4: a Line crossing a non-simple LineString at non-vertices (float)\" do\n    a = \"LINESTRING(30.0 150.0,250.0 150.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(120.0 240.0,120.0 20.0,20.0 20.0,120.0 170.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-100 - nsL.5/L-3-1: switching the geometries for case L/nsL.5-3-1\" do\n    a =\n      \"LINESTRING (200 200, 20 20, 200 20, 110 110, 20 200, 110 200, 110 110)\"\n      |> Geo.WKT.decode!()\n\n    b = \"LINESTRING (110 110, 200 110)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-100 - nsL.5/L-3-1: switching the geometries for case L/nsL.5-3-1 (float)\" do\n    a =\n      \"LINESTRING(200.0 200.0,20.0 20.0,200.0 20.0,110.0 110.0,20.0 200.0,110.0 200.0,110.0 110.0)\"\n      |> Geo.WKT.decode!()\n\n    b = \"LINESTRING(110.0 110.0,200.0 110.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-101 - L/nsL.5-3-2: the start point of a line touching the self-intersecting and self-crossing point of a non-simple LineString\" do\n    a = \"LINESTRING (110 110, 200 110)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING (200 200, 20 20, 200 20, 110 110, 20 200, 110 200, 110 110)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-101 - L/nsL.5-3-2: the start point of a line touching the self-intersecting and self-crossing point of a non-simple LineString (float)\" do\n    a = \"LINESTRING(110.0 110.0,200.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(200.0 200.0,20.0 20.0,200.0 20.0,110.0 110.0,20.0 200.0,110.0 200.0,110.0 110.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-102 - L/nsL.5-3-3: the interior of a line touching the self-intersecting and self-crossing point of a non-simple LineString\" do\n    a = \"LINESTRING (20 110, 200 110)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING (200 200, 20 20, 200 20, 110 110, 20 200, 110 200, 110 110)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-102 - L/nsL.5-3-3: the interior of a line touching the self-intersecting and self-crossing point of a non-simple LineString (float)\" do\n    a = \"LINESTRING(20.0 110.0,200.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(200.0 200.0,20.0 20.0,200.0 20.0,110.0 110.0,20.0 200.0,110.0 200.0,110.0 110.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-103 - nsL.5/L-3-4 touches dim(0){A.nsL.Bdy.EPx = B.L.Int.NV}\" do\n    a =\n      \"LINESTRING (200 200, 20 20, 200 20, 110 110, 20 200, 110 200, 110 110)\"\n      |> Geo.WKT.decode!()\n\n    b = \"LINESTRING (20 110, 200 110)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-103 - nsL.5/L-3-4 touches dim(0){A.nsL.Bdy.EPx = B.L.Int.NV} (float)\" do\n    a =\n      \"LINESTRING(200.0 200.0,20.0 20.0,200.0 20.0,110.0 110.0,20.0 200.0,110.0 200.0,110.0 110.0)\"\n      |> Geo.WKT.decode!()\n\n    b = \"LINESTRING(20.0 110.0,200.0 110.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-104 - L/nsL.10-6-1: the middle portion of a line overlapping from the self-intersecting to the self-crossing a non-simple LineString\" do\n    a = \"LINESTRING (90 200, 90 130, 110 110, 150 200)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (200 200, 20 20, 200 20, 20 200, 20 130, 90 130)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-104 - L/nsL.10-6-1: the middle portion of a line overlapping from the self-intersecting to the self-crossing a non-simple LineString (float)\" do\n    a = \"LINESTRING(90.0 200.0,90.0 130.0,110.0 110.0,150.0 200.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(200.0 200.0,20.0 20.0,200.0 20.0,20.0 200.0,20.0 130.0,90.0 130.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-105 - L/nsL.10-6-2: the middle portion of a line overlapping from the self-intersecting to the self-crossing a non-simple LineString\" do\n    a = \"LINESTRING (200 110, 110 110, 90 130, 90 200)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (200 200, 20 20, 200 20, 20 200, 20 130, 90 130)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-105 - L/nsL.10-6-2: the middle portion of a line overlapping from the self-intersecting to the self-crossing a non-simple LineString (float)\" do\n    a = \"LINESTRING(200.0 110.0,110.0 110.0,90.0 130.0,90.0 200.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(200.0 200.0,20.0 20.0,200.0 20.0,20.0 200.0,20.0 130.0,90.0 130.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-106 - L/mL-3-1: a line's end point touching a non-vertex with crossing line segments of a MultiLineString\" do\n    a = \"LINESTRING (80 80, 150 80, 210 80)\" |> Geo.WKT.decode!()\n    b = \"MULTILINESTRING ((20 20, 140 140),(20 140, 140 20))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-106 - L/mL-3-1: a line's end point touching a non-vertex with crossing line segments of a MultiLineString (float)\" do\n    a = \"LINESTRING(80.0 80.0,150.0 80.0,210.0 80.0)\" |> Geo.WKT.decode!()\n    b = \"MULTILINESTRING((20.0 20.0,140.0 140.0),(20.0 140.0,140.0 20.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-107 - LR/LR-1-1: two equal LinearRings, pointwise\" do\n    a = \"LINESTRING (40 80, 160 200, 260 20, 40 80)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (40 80, 160 200, 260 20, 40 80)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"04-107 - LR/LR-1-1: two equal LinearRings, pointwise (float)\" do\n    a = \"LINESTRING(40.0 80.0,160.0 200.0,260.0 20.0,40.0 80.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(40.0 80.0,160.0 200.0,260.0 20.0,40.0 80.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"04-108 - LR/LR-1-2: two equal LinearRings with points in reverse sequence\" do\n    a = \"LINESTRING (40 80, 160 200, 260 20, 40 80)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (40 80, 260 20, 160 200, 40 80)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"04-108 - LR/LR-1-2: two equal LinearRings with points in reverse sequence (float)\" do\n    a = \"LINESTRING(40.0 80.0,160.0 200.0,260.0 20.0,40.0 80.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(40.0 80.0,260.0 20.0,160.0 200.0,40.0 80.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"04-109 - LR/LR-1-3: two equal LinearRings with points in different sequence\" do\n    a = \"LINESTRING (40 80, 160 200, 260 20, 40 80)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (260 20, 40 80, 160 200, 260 20)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"04-109 - LR/LR-1-3: two equal LinearRings with points in different sequence (float)\" do\n    a = \"LINESTRING(40.0 80.0,160.0 200.0,260.0 20.0,40.0 80.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(260.0 20.0,40.0 80.0,160.0 200.0,260.0 20.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"04-110 - LR/LR-1-4: two equal LinearRings with different number of points\" do\n    a = \"LINESTRING (40 80, 160 200, 260 20, 40 80)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (100 140, 160 200, 260 20, 40 80, 100 140)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"04-110 - LR/LR-1-4: two equal LinearRings with different number of points (float)\" do\n    a = \"LINESTRING(40.0 80.0,160.0 200.0,260.0 20.0,40.0 80.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(100.0 140.0,160.0 200.0,260.0 20.0,40.0 80.0,100.0 140.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"04-111 - LR/LR-4-1: two LinearRings crossing at closing points\" do\n    a = \"LINESTRING (100 100, 180 20, 20 20, 100 100)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (100 100, 180 180, 20 180, 100 100)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-111 - LR/LR-4-1: two LinearRings crossing at closing points (float)\" do\n    a = \"LINESTRING(100.0 100.0,180.0 20.0,20.0 20.0,100.0 100.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(100.0 100.0,180.0 180.0,20.0 180.0,100.0 100.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-112 - LR/LR-4-2: two LinearRings crossing at two points\" do\n    a = \"LINESTRING (40 150, 40 40, 150 40, 150 150, 40 150)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (40 150, 150 40, 170 20, 170 190, 40 150)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-112 - LR/LR-4-2: two LinearRings crossing at two points (float)\" do\n    a = \"LINESTRING(40.0 150.0,40.0 40.0,150.0 40.0,150.0 150.0,40.0 150.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(40.0 150.0,150.0 40.0,170.0 20.0,170.0 190.0,40.0 150.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-113 - LR/LR-4-3: two LinearRings crossing at the closing and a non-vertex\" do\n    a = \"LINESTRING (100 100, 180 20, 20 20, 100 100)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (180 100, 20 100, 100 180, 180 100)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-113 - LR/LR-4-3: two LinearRings crossing at the closing and a non-vertex (float)\" do\n    a = \"LINESTRING(100.0 100.0,180.0 20.0,20.0 20.0,100.0 100.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(180.0 100.0,20.0 100.0,100.0 180.0,180.0 100.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-114 - LR/LR-4-4: two LinearRings crossing at the closing and a vertex\" do\n    a = \"LINESTRING (100 100, 180 20, 20 20, 100 100)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (180 180, 100 100, 20 180, 180 180)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-114 - LR/LR-4-4: two LinearRings crossing at the closing and a vertex (float)\" do\n    a = \"LINESTRING(100.0 100.0,180.0 20.0,20.0 20.0,100.0 100.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(180.0 180.0,100.0 100.0,20.0 180.0,180.0 180.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-115 - LR/LR-4-5: two LinearRings crossing at a vertex and a non-vertex\" do\n    a = \"LINESTRING (20 180, 100 100, 20 20, 20 180)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (100 20, 100 180, 180 100, 100 20)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-115 - LR/LR-4-5: two LinearRings crossing at a vertex and a non-vertex (float)\" do\n    a = \"LINESTRING(20.0 180.0,100.0 100.0,20.0 20.0,20.0 180.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(100.0 20.0,100.0 180.0,180.0 100.0,100.0 20.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-116 - LR/LR-4-6: two LinearRings crossing at two points\" do\n    a = \"LINESTRING (40 150, 40 40, 150 40, 150 150, 40 150)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (170 20, 20 170, 170 170, 170 20)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-116 - LR/LR-4-6: two LinearRings crossing at two points (float)\" do\n    a = \"LINESTRING(40.0 150.0,40.0 40.0,150.0 40.0,150.0 150.0,40.0 150.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(170.0 20.0,20.0 170.0,170.0 170.0,170.0 20.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-117 - LR/LR-6-1: two LinearRings overlapping\" do\n    a = \"LINESTRING (40 150, 40 40, 150 40, 150 150, 40 150)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (40 150, 150 150, 90 210, 40 150)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-117 - LR/LR-6-1: two LinearRings overlapping (float)\" do\n    a = \"LINESTRING(40.0 150.0,40.0 40.0,150.0 40.0,150.0 150.0,40.0 150.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(40.0 150.0,150.0 150.0,90.0 210.0,40.0 150.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-118 - LR/LR-6-2: two LinearRings overlapping\" do\n    a = \"LINESTRING (40 150, 40 40, 150 40, 150 150, 40 150)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (20 150, 170 150, 90 230, 20 150)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-118 - LR/LR-6-2: two LinearRings overlapping (float)\" do\n    a = \"LINESTRING(40.0 150.0,40.0 40.0,150.0 40.0,150.0 150.0,40.0 150.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(20.0 150.0,170.0 150.0,90.0 230.0,20.0 150.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-119 - LR/LR-6-3: two LinearRings overlapping\" do\n    a = \"LINESTRING (40 150, 40 40, 150 40, 150 150, 40 150)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (40 150, 150 150, 150 40, 20 40, 20 150, 40 150)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-119 - LR/LR-6-3: two LinearRings overlapping (float)\" do\n    a = \"LINESTRING(40.0 150.0,40.0 40.0,150.0 40.0,150.0 150.0,40.0 150.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(40.0 150.0,150.0 150.0,150.0 40.0,20.0 40.0,20.0 150.0,40.0 150.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-120 - LR/nsL-3-1: a LinearRing touching a non-simple LineString\" do\n    a = \"LINESTRING (110 110, 200 20, 20 20, 110 110)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (110 110, 200 200, 110 110, 20 200, 20 110, 200 110)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-120 - LR/nsL-3-1: a LinearRing touching a non-simple LineString (float)\" do\n    a = \"LINESTRING(110.0 110.0,200.0 20.0,20.0 20.0,110.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(110.0 110.0,200.0 200.0,110.0 110.0,20.0 200.0,20.0 110.0,200.0 110.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-121 - LR/nsL-3-1: a LinearRing touching a non-simple LineString\" do\n    a = \"LINESTRING (110 110, 200 20, 20 20, 110 110)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (110 110, 20 110, 200 110, 50 110, 110 170)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-121 - LR/nsL-3-1: a LinearRing touching a non-simple LineString (float)\" do\n    a = \"LINESTRING(110.0 110.0,200.0 20.0,20.0 20.0,110.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(110.0 110.0,20.0 110.0,200.0 110.0,50.0 110.0,110.0 170.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-122 - LR/nsL-3-1: a LinearRing touching a non-simple LineString\" do\n    a = \"LINESTRING (110 110, 200 20, 20 20, 110 110)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (110 110, 20 200, 110 200, 110 110, 200 200)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-122 - LR/nsL-3-1: a LinearRing touching a non-simple LineString (float)\" do\n    a = \"LINESTRING(110.0 110.0,200.0 20.0,20.0 20.0,110.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(110.0 110.0,20.0 200.0,110.0 200.0,110.0 110.0,200.0 200.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-123 - LR/nsL-6-1: a LinearRing and a non-simple LineString overlapping\" do\n    a = \"LINESTRING (110 110, 200 20, 20 20, 110 110)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (200 20, 20 200, 200 200, 110 110, 110 40)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-123 - LR/nsL-6-1: a LinearRing and a non-simple LineString overlapping (float)\" do\n    a = \"LINESTRING(110.0 110.0,200.0 20.0,20.0 20.0,110.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(200.0 20.0,20.0 200.0,200.0 200.0,110.0 110.0,110.0 40.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-124 - LR/nsL-6-2: a LinearRing and a non-simple LineString overlapping\" do\n    a = \"LINESTRING (110 110, 200 20, 20 20, 110 110)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (200 20, 20 200, 200 200, 20 20)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-124 - LR/nsL-6-2: a LinearRing and a non-simple LineString overlapping (float)\" do\n    a = \"LINESTRING(110.0 110.0,200.0 20.0,20.0 20.0,110.0 110.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(200.0 20.0,20.0 200.0,200.0 200.0,20.0 20.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-125 - nsL/nsL-4-1: non-simple LineStrings crossing at closing points\" do\n    a = \"LINESTRING (110 110, 20 110, 110 20, 20 20, 110 110)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (110 110, 200 200, 110 200, 200 110, 110 110)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-125 - nsL/nsL-4-1: non-simple LineStrings crossing at closing points (float)\" do\n    a = \"LINESTRING(110.0 110.0,20.0 110.0,110.0 20.0,20.0 20.0,110.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(110.0 110.0,200.0 200.0,110.0 200.0,200.0 110.0,110.0 110.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-126 - nsL/nsL-4-2: non-simple LineStrings crossing at two points without vertices\" do\n    a = \"LINESTRING (20 120, 120 120, 20 20, 120 20, 20 120)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (170 100, 70 100, 170 170, 70 170, 170 100)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-126 - nsL/nsL-4-2: non-simple LineStrings crossing at two points without vertices (float)\" do\n    a = \"LINESTRING(20.0 120.0,120.0 120.0,20.0 20.0,120.0 20.0,20.0 120.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(170.0 100.0,70.0 100.0,170.0 170.0,70.0 170.0,170.0 100.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-127 - nsL/nsL-4-3: non-simple LineStrings crossing at a point\" do\n    a = \"LINESTRING (20 110, 110 110, 20 20, 110 20, 20 110)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (110 160, 70 110, 60 160, 20 130, 110 160)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-127 - nsL/nsL-4-3: non-simple LineStrings crossing at a point (float)\" do\n    a = \"LINESTRING(20.0 110.0,110.0 110.0,20.0 20.0,110.0 20.0,20.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(110.0 160.0,70.0 110.0,60.0 160.0,20.0 130.0,110.0 160.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-128 - nsL/nsL-4-4: non-simple LineStrings crossing at self-crossing points\" do\n    a = \"LINESTRING (20 200, 200 200, 20 20, 200 20, 20 200)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (20 110, 200 110, 200 160, 20 60, 20 110)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-128 - nsL/nsL-4-4: non-simple LineStrings crossing at self-crossing points (float)\" do\n    a = \"LINESTRING(20.0 200.0,200.0 200.0,20.0 20.0,200.0 20.0,20.0 200.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(20.0 110.0,200.0 110.0,200.0 160.0,20.0 60.0,20.0 110.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-129 - nsL/nsL-4-5: non-simple LineStrings crossing at vertices\" do\n    a = \"LINESTRING (20 110, 110 110, 20 20, 110 20, 20 110)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (200 200, 110 110, 200 110, 110 200, 200 200)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-129 - nsL/nsL-4-5: non-simple LineStrings crossing at vertices (float)\" do\n    a = \"LINESTRING(20.0 110.0,110.0 110.0,20.0 20.0,110.0 20.0,20.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(200.0 200.0,110.0 110.0,200.0 110.0,110.0 200.0,200.0 200.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-130 - nsL/nsL-4-6: non-simple LineStrings crossing at two points with vertices\" do\n    a = \"LINESTRING (20 120, 120 120, 20 20, 120 20, 20 120)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (220 120, 120 20, 220 20, 120 120, 220 120)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-130 - nsL/nsL-4-6: non-simple LineStrings crossing at two points with vertices (float)\" do\n    a = \"LINESTRING(20.0 120.0,120.0 120.0,20.0 20.0,120.0 20.0,20.0 120.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(220.0 120.0,120.0 20.0,220.0 20.0,120.0 120.0,220.0 120.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-131 - mL/mL-1: MultiLineString\" do\n    a = \"MULTILINESTRING ((70 20, 20 90, 70 170),(70 170, 120 90, 70 20))\" |> Geo.WKT.decode!()\n    b = \"MULTILINESTRING ((70 20, 20 90, 70 170),(70 170, 120 90, 70 20))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"04-131 - mL/mL-1: MultiLineString (float)\" do\n    a =\n      \"MULTILINESTRING((70.0 20.0,20.0 90.0,70.0 170.0),(70.0 170.0,120.0 90.0,70.0 20.0))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTILINESTRING((70.0 20.0,20.0 90.0,70.0 170.0),(70.0 170.0,120.0 90.0,70.0 20.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"04-132 - mL/mL-1-1: non-simple MultiLineString\" do\n    a = \"MULTILINESTRING ((20 20, 90 20, 170 20),(90 20, 90 80, 90 140))\" |> Geo.WKT.decode!()\n    b = \"MULTILINESTRING ((20 20, 90 20, 170 20),(90 20, 90 80, 90 140))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"04-132 - mL/mL-1-1: non-simple MultiLineString (float)\" do\n    a =\n      \"MULTILINESTRING((20.0 20.0,90.0 20.0,170.0 20.0),(90.0 20.0,90.0 80.0,90.0 140.0))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTILINESTRING((20.0 20.0,90.0 20.0,170.0 20.0),(90.0 20.0,90.0 80.0,90.0 140.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"04-133 - mL/mL-1-2: equal non-simple MultiLineString with different sequence of lines and points\" do\n    a = \"MULTILINESTRING ((20 20, 90 20, 170 20),(90 20, 90 80, 90 140))\" |> Geo.WKT.decode!()\n    b = \"MULTILINESTRING ((90 140, 90 60, 90 20),(170 20, 130 20, 20 20))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"04-133 - mL/mL-1-2: equal non-simple MultiLineString with different sequence of lines and points (float)\" do\n    a =\n      \"MULTILINESTRING((20.0 20.0,90.0 20.0,170.0 20.0),(90.0 20.0,90.0 80.0,90.0 140.0))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTILINESTRING((90.0 140.0,90.0 60.0,90.0 20.0),(170.0 20.0,130.0 20.0,20.0 20.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"04-134 - mL/mL-3-1: non-simple MultiLineStrings touching at boundaries\" do\n    a = \"MULTILINESTRING ((20 20, 90 20, 170 20),(90 20, 90 80, 90 140))\" |> Geo.WKT.decode!()\n\n    b =\n      \"MULTILINESTRING ((90 20, 170 100, 170 140),(170 60, 90 20, 20 60),(130 100, 130 60, 90 20, 50 90))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-134 - mL/mL-3-1: non-simple MultiLineStrings touching at boundaries (float)\" do\n    a =\n      \"MULTILINESTRING((20.0 20.0,90.0 20.0,170.0 20.0),(90.0 20.0,90.0 80.0,90.0 140.0))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTILINESTRING((90.0 20.0,170.0 100.0,170.0 140.0),(170.0 60.0,90.0 20.0,20.0 60.0),(130.0 100.0,130.0 60.0,90.0 20.0,50.0 90.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-135 - mL/mL-3-2: non-simple MultiLineStrings touching at boundaries\" do\n    a = \"MULTILINESTRING ((20 20, 90 20, 170 20),(90 20, 90 80, 90 140))\" |> Geo.WKT.decode!()\n\n    b =\n      \"MULTILINESTRING ((90 20, 170 100, 170 140),(130 140, 130 60, 90 20, 20 90, 90 20, 130 60, 170 60))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-135 - mL/mL-3-2: non-simple MultiLineStrings touching at boundaries (float)\" do\n    a =\n      \"MULTILINESTRING((20.0 20.0,90.0 20.0,170.0 20.0),(90.0 20.0,90.0 80.0,90.0 140.0))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTILINESTRING((90.0 20.0,170.0 100.0,170.0 140.0),(130.0 140.0,130.0 60.0,90.0 20.0,20.0 90.0,90.0 20.0,130.0 60.0,170.0 60.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-136 - mL/mL-3-3: non-simple MultiLineStrings touching at boundaries\" do\n    a = \"MULTILINESTRING ((20 20, 90 20, 170 20),(90 20, 90 80, 90 140))\" |> Geo.WKT.decode!()\n    b = \"MULTILINESTRING ((90 20, 170 100, 170 140),(170 60, 90 20, 20 60))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-136 - mL/mL-3-3: non-simple MultiLineStrings touching at boundaries (float)\" do\n    a =\n      \"MULTILINESTRING((20.0 20.0,90.0 20.0,170.0 20.0),(90.0 20.0,90.0 80.0,90.0 140.0))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTILINESTRING((90.0 20.0,170.0 100.0,170.0 140.0),(170.0 60.0,90.0 20.0,20.0 60.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-137 - mL/mL-3-4: non-simple MultiLineStrings touching at boundaries\" do\n    a = \"MULTILINESTRING ((20 20, 90 20, 170 20),(90 20, 90 80, 90 140))\" |> Geo.WKT.decode!()\n\n    b =\n      \"MULTILINESTRING ((90 20, 170 100, 170 140),(170 60, 90 20, 20 60),(130 100, 90 20))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-137 - mL/mL-3-4: non-simple MultiLineStrings touching at boundaries (float)\" do\n    a =\n      \"MULTILINESTRING((20.0 20.0,90.0 20.0,170.0 20.0),(90.0 20.0,90.0 80.0,90.0 140.0))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTILINESTRING((90.0 20.0,170.0 100.0,170.0 140.0),(170.0 60.0,90.0 20.0,20.0 60.0),(130.0 100.0,90.0 20.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-138 - mL/mL-3-5: non-simple MultiLineStrings touching at boundaries\" do\n    a = \"MULTILINESTRING ((20 20, 90 20, 170 20),(90 20, 90 80, 90 140))\" |> Geo.WKT.decode!()\n\n    b =\n      \"MULTILINESTRING ((90 20, 170 100, 170 140),(170 60, 90 20, 20 60),(120 100, 170 100, 90 20))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-138 - mL/mL-3-5: non-simple MultiLineStrings touching at boundaries (float)\" do\n    a =\n      \"MULTILINESTRING((20.0 20.0,90.0 20.0,170.0 20.0),(90.0 20.0,90.0 80.0,90.0 140.0))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTILINESTRING((90.0 20.0,170.0 100.0,170.0 140.0),(170.0 60.0,90.0 20.0,20.0 60.0),(120.0 100.0,170.0 100.0,90.0 20.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-139 - mL/mL-3-6: non-simple MultiLineStrings touching at boundaries\" do\n    a = \"MULTILINESTRING ((20 20, 90 20, 170 20),(90 20, 90 80, 90 140))\" |> Geo.WKT.decode!()\n\n    b =\n      \"MULTILINESTRING ((90 20, 170 100, 170 140),(170 60, 90 20, 20 60),(120 100, 170 100, 90 20))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-139 - mL/mL-3-6: non-simple MultiLineStrings touching at boundaries (float)\" do\n    a =\n      \"MULTILINESTRING((20.0 20.0,90.0 20.0,170.0 20.0),(90.0 20.0,90.0 80.0,90.0 140.0))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTILINESTRING((90.0 20.0,170.0 100.0,170.0 140.0),(170.0 60.0,90.0 20.0,20.0 60.0),(120.0 100.0,170.0 100.0,90.0 20.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-140 - mL/mL-3-7: non-simple MultiLineStrings touching at boundaries\" do\n    a = \"MULTILINESTRING ((20 20, 90 20, 170 20),(90 20, 90 80, 90 140))\" |> Geo.WKT.decode!()\n\n    b =\n      \"MULTILINESTRING ((90 20, 170 100, 170 140),(130 140, 130 60, 90 20, 20 90, 90 20))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-140 - mL/mL-3-7: non-simple MultiLineStrings touching at boundaries (float)\" do\n    a =\n      \"MULTILINESTRING((20.0 20.0,90.0 20.0,170.0 20.0),(90.0 20.0,90.0 80.0,90.0 140.0))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTILINESTRING((90.0 20.0,170.0 100.0,170.0 140.0),(130.0 140.0,130.0 60.0,90.0 20.0,20.0 90.0,90.0 20.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-141 - mL/mL-3-8: non-simple MultiLineStrings touching at boundaries\" do\n    a = \"MULTILINESTRING ((20 20, 90 20, 170 20),(90 20, 90 80, 90 140))\" |> Geo.WKT.decode!()\n\n    b =\n      \"MULTILINESTRING ((90 20, 170 100, 170 140),(170 60, 90 20, 20 60, 20 140, 90 20))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-141 - mL/mL-3-8: non-simple MultiLineStrings touching at boundaries (float)\" do\n    a =\n      \"MULTILINESTRING((20.0 20.0,90.0 20.0,170.0 20.0),(90.0 20.0,90.0 80.0,90.0 140.0))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTILINESTRING((90.0 20.0,170.0 100.0,170.0 140.0),(170.0 60.0,90.0 20.0,20.0 60.0,20.0 140.0,90.0 20.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-142 - mL/mL-4-1: non-simple MultiLineStrings crossing\" do\n    a = \"MULTILINESTRING ((20 20, 90 90, 20 160),(90 160, 90 20))\" |> Geo.WKT.decode!()\n\n    b =\n      \"MULTILINESTRING ((160 160, 90 90, 160 20),(160 120, 120 120, 90 90, 160 60))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-142 - mL/mL-4-1: non-simple MultiLineStrings crossing (float)\" do\n    a =\n      \"MULTILINESTRING((20.0 20.0,90.0 90.0,20.0 160.0),(90.0 160.0,90.0 20.0))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTILINESTRING((160.0 160.0,90.0 90.0,160.0 20.0),(160.0 120.0,120.0 120.0,90.0 90.0,160.0 60.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-143 - mL/mL-4-2: non-simple MultiLineStrings crossing\" do\n    a = \"MULTILINESTRING ((20 20, 90 90, 20 160),(90 160, 90 20))\" |> Geo.WKT.decode!()\n\n    b =\n      \"MULTILINESTRING ((160 160, 90 90, 160 20),(160 120, 120 120, 90 90, 120 60, 160 60))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-143 - mL/mL-4-2: non-simple MultiLineStrings crossing (float)\" do\n    a =\n      \"MULTILINESTRING((20.0 20.0,90.0 90.0,20.0 160.0),(90.0 160.0,90.0 20.0))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTILINESTRING((160.0 160.0,90.0 90.0,160.0 20.0),(160.0 120.0,120.0 120.0,90.0 90.0,120.0 60.0,160.0 60.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-144 - mL/mL-4-3: non-simple MultiLineStrings crossing\" do\n    a = \"MULTILINESTRING ((20 20, 90 90, 20 160),(90 160, 90 20))\" |> Geo.WKT.decode!()\n    b = \"MULTILINESTRING ((160 160, 90 90, 160 20),(160 120, 90 90, 160 60))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"04-144 - mL/mL-4-3: non-simple MultiLineStrings crossing (float)\" do\n    a =\n      \"MULTILINESTRING((20.0 20.0,90.0 90.0,20.0 160.0),(90.0 160.0,90.0 20.0))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTILINESTRING((160.0 160.0,90.0 90.0,160.0 20.0),(160.0 120.0,90.0 90.0,160.0 60.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\nend\n"
  },
  {
    "path": "test/validation/line_line_b_test.exs",
    "content": "defmodule Intersect.Validation.LineLineBTest do\n  use ExUnit.Case\n\n  @tag :validation\n  test \"12-001 - LL - A crosses B\" do\n    a = \"LINESTRING (0 0, 100 100)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (0 100, 100 0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"12-001 - LL - A crosses B (float)\" do\n    a = \"LINESTRING(0.0 0.0,100.0 100.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(0.0 100.0,100.0 0.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"12-002 - LL - A shares one segment with B\" do\n    a = \"LINESTRING (0 0, 100 100, 200 0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (0 0, 100 100, 200 200)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"12-002 - LL - A shares one segment with B (float)\" do\n    a = \"LINESTRING(0.0 0.0,100.0 100.0,200.0 0.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(0.0 0.0,100.0 100.0,200.0 200.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"12-003 - LL - A and B disjoint\" do\n    a = \"LINESTRING (40 360, 40 220, 120 360)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (120 340, 60 220, 140 220, 140 360)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"12-003 - LL - A and B disjoint (float)\" do\n    a = \"LINESTRING(40.0 360.0,40.0 220.0,120.0 360.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(120.0 340.0,60.0 220.0,140.0 220.0,140.0 360.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"12-004 - LL - A and B intersect frequently\" do\n    a =\n      \"LINESTRING (220 240, 200 220, 60 320, 40 300, 180 200, 160 180, 20 280)\"\n      |> Geo.WKT.decode!()\n\n    b = \"LINESTRING (220 240, 140 160, 120 180, 220 280, 200 300, 100 200)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"12-004 - LL - A and B intersect frequently (float)\" do\n    a =\n      \"LINESTRING(220.0 240.0,200.0 220.0,60.0 320.0,40.0 300.0,180.0 200.0,160.0 180.0,20.0 280.0)\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(220.0 240.0,140.0 160.0,120.0 180.0,220.0 280.0,200.0 300.0,100.0 200.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"12-005 - LL - A and B equal\" do\n    a = \"LINESTRING (80 320, 220 320, 220 160, 80 300)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (80 320, 220 320, 220 160, 80 300)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"12-005 - LL - A and B equal (float)\" do\n    a = \"LINESTRING(80.0 320.0,220.0 320.0,220.0 160.0,80.0 300.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(80.0 320.0,220.0 320.0,220.0 160.0,80.0 300.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"12-006 - LL - A and B touch ends\" do\n    a = \"LINESTRING (60 200, 60 260, 140 200)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (60 200, 60 140, 140 200)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"12-006 - LL - A and B touch ends (float)\" do\n    a = \"LINESTRING(60.0 200.0,60.0 260.0,140.0 200.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(60.0 200.0,60.0 140.0,140.0 200.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"12-007 - LL - intersecting rings\" do\n    a = \"LINESTRING (180 200, 100 280, 20 200, 100 120, 180 200)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (100 200, 220 200, 220 80, 100 80, 100 200)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"12-007 - LL - intersecting rings (float)\" do\n    a =\n      \"LINESTRING(180.0 200.0,100.0 280.0,20.0 200.0,100.0 120.0,180.0 200.0)\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(100.0 200.0,220.0 200.0,220.0 80.0,100.0 80.0,100.0 200.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\nend\n"
  },
  {
    "path": "test/validation/line_line_precision_test.exs",
    "content": "defmodule Intersect.Validation.LineLinePrecisionTest do\n  use ExUnit.Case\n\n  @tag :validation\n  test \"16-001 - LL - narrow V\" do\n    a = \"LINESTRING (0 10, 620 10, 0 11)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (400 60, 400 10)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"16-001 - LL - narrow V (float)\" do\n    a = \"LINESTRING(0.0 10.0,620.0 10.0,0.0 11.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(400.0 60.0,400.0 10.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\nend\n"
  },
  {
    "path": "test/validation/line_polygon_a_test.exs",
    "content": "defmodule Intersect.Validation.LinePolygonATest do\n  use ExUnit.Case\n\n  @tag :validation\n  test \"05-001 - L/A-3-1: a line touching the closing point of a polygon\" do\n    a = \"LINESTRING (150 150, 40 230)\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-001 - L/A-3-1: a line touching the closing point of a polygon (float)\" do\n    a = \"LINESTRING(150.0 150.0,40.0 230.0)\" |> Geo.WKT.decode!()\n    b = \"POLYGON((150.0 150.0,410.0 150.0,280.0 20.0,20.0 20.0,150.0 150.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-002 - L/A-3-2: the start and end points of a LineString touching the boundary (at non-vertices) of a polygon\" do\n    a = \"LINESTRING (40 40, 50 130, 130 130)\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-002 - L/A-3-2: the start and end points of a LineString touching the boundary (at non-vertices) of a polygon (float)\" do\n    a = \"LINESTRING(40.0 40.0,50.0 130.0,130.0 130.0)\" |> Geo.WKT.decode!()\n    b = \"POLYGON((150.0 150.0,410.0 150.0,280.0 20.0,20.0 20.0,150.0 150.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-003 - L/A-3-3: the end point of a line touching the closing point of a polygon\" do\n    a = \"LINESTRING (40 230, 150 150)\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-003 - L/A-3-3: the end point of a line touching the closing point of a polygon (float)\" do\n    a = \"LINESTRING(40.0 230.0,150.0 150.0)\" |> Geo.WKT.decode!()\n    b = \"POLYGON((150.0 150.0,410.0 150.0,280.0 20.0,20.0 20.0,150.0 150.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-004 - L/A-3-4: an entire LineString touching the boundary (at non-vertices) of a polygon\" do\n    a = \"LINESTRING (210 150, 330 150)\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-004 - L/A-3-4: an entire LineString touching the boundary (at non-vertices) of a polygon (float)\" do\n    a = \"LINESTRING(210.0 150.0,330.0 150.0)\" |> Geo.WKT.decode!()\n    b = \"POLYGON((150.0 150.0,410.0 150.0,280.0 20.0,20.0 20.0,150.0 150.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-005 - L/A-3-5: the start portion of a LineString touching the boundary (at non-vertices) of a polygon\" do\n    a = \"LINESTRING (200 150, 310 150, 360 220)\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-005 - L/A-3-5: the start portion of a LineString touching the boundary (at non-vertices) of a polygon (float)\" do\n    a = \"LINESTRING(200.0 150.0,310.0 150.0,360.0 220.0)\" |> Geo.WKT.decode!()\n    b = \"POLYGON((150.0 150.0,410.0 150.0,280.0 20.0,20.0 20.0,150.0 150.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-006 - L/A-3-6: the start portion and the end point of a LineString touching the boundary of a polygon\" do\n    a = \"LINESTRING (180 150, 250 150, 230 250, 370 250, 410 150)\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-006 - L/A-3-6: the start portion and the end point of a LineString touching the boundary of a polygon (float)\" do\n    a =\n      \"LINESTRING(180.0 150.0,250.0 150.0,230.0 250.0,370.0 250.0,410.0 150.0)\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON((150.0 150.0,410.0 150.0,280.0 20.0,20.0 20.0,150.0 150.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-007 - L/A-3-7: the middle portion of a LineString touching the boundary (at non-vertices) of a polygon\" do\n    a = \"LINESTRING (210 210, 220 150, 320 150, 370 210)\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-007 - L/A-3-7: the middle portion of a LineString touching the boundary (at non-vertices) of a polygon (float)\" do\n    a = \"LINESTRING(210.0 210.0,220.0 150.0,320.0 150.0,370.0 210.0)\" |> Geo.WKT.decode!()\n    b = \"POLYGON((150.0 150.0,410.0 150.0,280.0 20.0,20.0 20.0,150.0 150.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-008 - L/A-4-1: a line at non-vertex crossing non-vertex boundary of polygon\" do\n    a = \"LINESTRING (20 60, 150 60)\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-008 - L/A-4-1: a line at non-vertex crossing non-vertex boundary of polygon (float)\" do\n    a = \"LINESTRING(20.0 60.0,150.0 60.0)\" |> Geo.WKT.decode!()\n    b = \"POLYGON((150.0 150.0,410.0 150.0,280.0 20.0,20.0 20.0,150.0 150.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-009 - L/A-4-2: a line at non-vertex crossing non-vertex boundaries of polygon twice\" do\n    a = \"LINESTRING (60 90, 310 180)\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-009 - L/A-4-2: a line at non-vertex crossing non-vertex boundaries of polygon twice (float)\" do\n    a = \"LINESTRING(60.0 90.0,310.0 180.0)\" |> Geo.WKT.decode!()\n    b = \"POLYGON((150.0 150.0,410.0 150.0,280.0 20.0,20.0 20.0,150.0 150.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-010 - L/A-4-3: a line at non-vertex crossing vertex boundary of polygon\" do\n    a = \"LINESTRING (90 210, 210 90)\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-010 - L/A-4-3: a line at non-vertex crossing vertex boundary of polygon (float)\" do\n    a = \"LINESTRING(90.0 210.0,210.0 90.0)\" |> Geo.WKT.decode!()\n    b = \"POLYGON((150.0 150.0,410.0 150.0,280.0 20.0,20.0 20.0,150.0 150.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-011 - L/A-4-4: a line at non-vertex crossing vertex boundaries of polygon twice\" do\n    a = \"LINESTRING (290 10, 130 170)\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-011 - L/A-4-4: a line at non-vertex crossing vertex boundaries of polygon twice (float)\" do\n    a = \"LINESTRING(290.0 10.0,130.0 170.0)\" |> Geo.WKT.decode!()\n    b = \"POLYGON((150.0 150.0,410.0 150.0,280.0 20.0,20.0 20.0,150.0 150.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-012 - L/A-4-5: a line at vertex crossing non-vertex boundary of polygon\" do\n    a = \"LINESTRING (30 100, 100 100, 180 100)\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-012 - L/A-4-5: a line at vertex crossing non-vertex boundary of polygon (float)\" do\n    a = \"LINESTRING(30.0 100.0,100.0 100.0,180.0 100.0)\" |> Geo.WKT.decode!()\n    b = \"POLYGON((150.0 150.0,410.0 150.0,280.0 20.0,20.0 20.0,150.0 150.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-013 - L/A-4-6: a line at vertex crossing non-vertex boundaries of polygon twice\" do\n    a = \"LINESTRING (20 100, 100 100, 360 100, 410 100)\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-013 - L/A-4-6: a line at vertex crossing non-vertex boundaries of polygon twice (float)\" do\n    a = \"LINESTRING(20.0 100.0,100.0 100.0,360.0 100.0,410.0 100.0)\" |> Geo.WKT.decode!()\n    b = \"POLYGON((150.0 150.0,410.0 150.0,280.0 20.0,20.0 20.0,150.0 150.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-014 - L/A-4-7: a line at vertex crossing vertex boundary of polygon\" do\n    a = \"LINESTRING (90 210, 150 150, 210 90)\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-014 - L/A-4-7: a line at vertex crossing vertex boundary of polygon (float)\" do\n    a = \"LINESTRING(90.0 210.0,150.0 150.0,210.0 90.0)\" |> Geo.WKT.decode!()\n    b = \"POLYGON((150.0 150.0,410.0 150.0,280.0 20.0,20.0 20.0,150.0 150.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-015 - L/A-5-1: an entire line within a polygon\" do\n    a = \"LINESTRING (180 90, 280 120)\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-015 - L/A-5-1: an entire line within a polygon (float)\" do\n    a = \"LINESTRING(180.0 90.0,280.0 120.0)\" |> Geo.WKT.decode!()\n    b = \"POLYGON((150.0 150.0,410.0 150.0,280.0 20.0,20.0 20.0,150.0 150.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-016 - L/A-5-2: a line within a polygon but the line's both ends touching the boundary of the polygon\" do\n    a = \"LINESTRING (70 70, 80 20)\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-016 - L/A-5-2: a line within a polygon but the line's both ends touching the boundary of the polygon (float)\" do\n    a = \"LINESTRING(70.0 70.0,80.0 20.0)\" |> Geo.WKT.decode!()\n    b = \"POLYGON((150.0 150.0,410.0 150.0,280.0 20.0,20.0 20.0,150.0 150.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-017 - L/A-5-3: a line within a polygon but the line's start point touching the boundary of the polygon\" do\n    a = \"LINESTRING (130 20, 150 60)\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-017 - L/A-5-3: a line within a polygon but the line's start point touching the boundary of the polygon (float)\" do\n    a = \"LINESTRING(130.0 20.0,150.0 60.0)\" |> Geo.WKT.decode!()\n    b = \"POLYGON((150.0 150.0,410.0 150.0,280.0 20.0,20.0 20.0,150.0 150.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-018 - L/A-5-4: a line within a polygon but the line's start point and middle portion touching the boundary of the polygon\" do\n    a = \"LINESTRING (70 70, 80 20, 140 20, 150 60)\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-018 - L/A-5-4: a line within a polygon but the line's start point and middle portion touching the boundary of the polygon (float)\" do\n    a = \"LINESTRING(70.0 70.0,80.0 20.0,140.0 20.0,150.0 60.0)\" |> Geo.WKT.decode!()\n    b = \"POLYGON((150.0 150.0,410.0 150.0,280.0 20.0,20.0 20.0,150.0 150.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-019 - L/A-5-5: a line within a polygon but the line's middle portion touching the boundary of the polygon\" do\n    a = \"LINESTRING (170 50, 170 20, 240 20, 260 60)\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-019 - L/A-5-5: a line within a polygon but the line's middle portion touching the boundary of the polygon (float)\" do\n    a = \"LINESTRING(170.0 50.0,170.0 20.0,240.0 20.0,260.0 60.0)\" |> Geo.WKT.decode!()\n    b = \"POLYGON((150.0 150.0,410.0 150.0,280.0 20.0,20.0 20.0,150.0 150.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-020 - L/Ah-2-1: a line outside a polygon\" do\n    a = \"LINESTRING (50 100, 140 190, 280 190)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150),(170 120, 330 120, 260 50, 100 50, 170 120))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-020 - L/Ah-2-1: a line outside a polygon (float)\" do\n    a = \"LINESTRING(50.0 100.0,140.0 190.0,280.0 190.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((150.0 150.0,410.0 150.0,280.0 20.0,20.0 20.0,150.0 150.0),(170.0 120.0,330.0 120.0,260.0 50.0,100.0 50.0,170.0 120.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-021 - L/Ah-2-2: a line inside a polygon's hole\" do\n    a = \"LINESTRING (140 60, 180 100, 290 100)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150),(170 120, 330 120, 260 50, 100 50, 170 120))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-021 - L/Ah-2-2: a line inside a polygon's hole (float)\" do\n    a = \"LINESTRING(140.0 60.0,180.0 100.0,290.0 100.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((150.0 150.0,410.0 150.0,280.0 20.0,20.0 20.0,150.0 150.0),(170.0 120.0,330.0 120.0,260.0 50.0,100.0 50.0,170.0 120.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-022 - L/Ah-3-1: the start point of a line touching the inner boundary of a polygon\" do\n    a = \"LINESTRING (170 120, 210 80, 270 80)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150),(170 120, 330 120, 260 50, 100 50, 170 120))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-022 - L/Ah-3-1: the start point of a line touching the inner boundary of a polygon (float)\" do\n    a = \"LINESTRING(170.0 120.0,210.0 80.0,270.0 80.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((150.0 150.0,410.0 150.0,280.0 20.0,20.0 20.0,150.0 150.0),(170.0 120.0,330.0 120.0,260.0 50.0,100.0 50.0,170.0 120.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-023 - L/Ah-3-2: both ends of a line touching the inner boundary of a polygon\" do\n    a = \"LINESTRING (170 120, 260 50)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150),(170 120, 330 120, 260 50, 100 50, 170 120))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-023 - L/Ah-3-2: both ends of a line touching the inner boundary of a polygon (float)\" do\n    a = \"LINESTRING(170.0 120.0,260.0 50.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((150.0 150.0,410.0 150.0,280.0 20.0,20.0 20.0,150.0 150.0),(170.0 120.0,330.0 120.0,260.0 50.0,100.0 50.0,170.0 120.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-024 - L/Ah-3-1: both ends of a line touching the inner boundary of a polygon\" do\n    a = \"LINESTRING (190 90, 190 270)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((190 190, 360 20, 20 20, 190 190),(190 190, 280 50, 100 50, 190 190))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-024 - L/Ah-3-1: both ends of a line touching the inner boundary of a polygon (float)\" do\n    a = \"LINESTRING(190.0 90.0,190.0 270.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((190.0 190.0,360.0 20.0,20.0 20.0,190.0 190.0),(190.0 190.0,280.0 50.0,100.0 50.0,190.0 190.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-025 - L/Ah-3-2: a line at a non-vertex crossing the boundary of a polygon where the closing point of the hole touches the shell at a non-vertex\" do\n    a = \"LINESTRING (60 160, 150 70)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((190 190, 360 20, 20 20, 190 190),(110 110, 250 100, 140 30, 110 110))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-025 - L/Ah-3-2: a line at a non-vertex crossing the boundary of a polygon where the closing point of the hole touches the shell at a non-vertex (float)\" do\n    a = \"LINESTRING(60.0 160.0,150.0 70.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((190.0 190.0,360.0 20.0,20.0 20.0,190.0 190.0),(110.0 110.0,250.0 100.0,140.0 30.0,110.0 110.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-026 - L/Ah-3-3: a line at a non-vertex crossing the boundary of a polygon where the hole at a vertex touches the shell at a non-vertex\" do\n    a = \"LINESTRING (60 160, 150 70)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((190 190, 20 20, 360 20, 190 190),(250 100, 110 110, 140 30, 250 100))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-026 - L/Ah-3-3: a line at a non-vertex crossing the boundary of a polygon where the hole at a vertex touches the shell at a non-vertex (float)\" do\n    a = \"LINESTRING(60.0 160.0,150.0 70.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((190.0 190.0,20.0 20.0,360.0 20.0,190.0 190.0),(250.0 100.0,110.0 110.0,140.0 30.0,250.0 100.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-027 - L/Ah-3-4: a line at a non-vertex crossing the boundary of a polygon where the hole at a vertex touches the shell at a vertex\" do\n    a = \"LINESTRING (60 160, 150 70)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((190 190, 20 20, 360 20, 190 190),(250 100, 110 110, 140 30, 250 100))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-027 - L/Ah-3-4: a line at a non-vertex crossing the boundary of a polygon where the hole at a vertex touches the shell at a vertex (float)\" do\n    a = \"LINESTRING(60.0 160.0,150.0 70.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((190.0 190.0,20.0 20.0,360.0 20.0,190.0 190.0),(250.0 100.0,110.0 110.0,140.0 30.0,250.0 100.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-028 - L/Ah-3-5: a line crossing polygon boundary where the closing point of the hole touches the shell at a vertex\" do\n    a = \"LINESTRING (190 90, 190 190, 190 270)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((190 190, 360 20, 20 20, 190 190),(190 190, 280 50, 100 50, 190 190))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-028 - L/Ah-3-5: a line crossing polygon boundary where the closing point of the hole touches the shell at a vertex (float)\" do\n    a = \"LINESTRING(190.0 90.0,190.0 190.0,190.0 270.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((190.0 190.0,360.0 20.0,20.0 20.0,190.0 190.0),(190.0 190.0,280.0 50.0,100.0 50.0,190.0 190.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-029 - L/Ah-3-6: a line at a vertex crossing the boundary of a polygon where closing point of the hole touches the shell at a non-vertex\" do\n    a = \"LINESTRING (60 160, 110 110, 150 70)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((190 190, 360 20, 20 20, 190 190),(110 110, 250 100, 140 30, 110 110))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-029 - L/Ah-3-6: a line at a vertex crossing the boundary of a polygon where closing point of the hole touches the shell at a non-vertex (float)\" do\n    a = \"LINESTRING(60.0 160.0,110.0 110.0,150.0 70.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((190.0 190.0,360.0 20.0,20.0 20.0,190.0 190.0),(110.0 110.0,250.0 100.0,140.0 30.0,110.0 110.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-030 - L/Ah-3-7: a line at a vertex crossing the boundary of a polygon where the hole at a vertex touches the shell at a non-vertex\" do\n    a = \"LINESTRING (60 160, 110 110, 150 70)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((190 190, 20 20, 360 20, 190 190),(250 100, 110 110, 140 30, 250 100))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-030 - L/Ah-3-7: a line at a vertex crossing the boundary of a polygon where the hole at a vertex touches the shell at a non-vertex (float)\" do\n    a = \"LINESTRING(60.0 160.0,110.0 110.0,150.0 70.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((190.0 190.0,20.0 20.0,360.0 20.0,190.0 190.0),(250.0 100.0,110.0 110.0,140.0 30.0,250.0 100.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-031 - L/Ah-3-8: a line at a non-vertex crossing the boundary of a polygon where the hole at a vertex touches the shell at a vertex\" do\n    a = \"LINESTRING (60 160, 110 110, 150 70)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((190 190, 110 110, 20 20, 360 20, 190 190),(250 100, 110 110, 140 30, 250 100))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-031 - L/Ah-3-8: a line at a non-vertex crossing the boundary of a polygon where the hole at a vertex touches the shell at a vertex (float)\" do\n    a = \"LINESTRING(60.0 160.0,110.0 110.0,150.0 70.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((190.0 190.0,110.0 110.0,20.0 20.0,360.0 20.0,190.0 190.0),(250.0 100.0,110.0 110.0,140.0 30.0,250.0 100.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-032 - L/A2h-3-1: the start point a line touching the closing points of two connected holes in a polygon\" do\n    a = \"LINESTRING (130 110, 180 110, 190 60)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((20 200, 240 200, 240 20, 20 20, 20 200),(130 110, 60 180, 60 40, 130 110),(130 110, 200 40, 200 180, 130 110))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-032 - L/A2h-3-1: the start point a line touching the closing points of two connected holes in a polygon (float)\" do\n    a = \"LINESTRING(130.0 110.0,180.0 110.0,190.0 60.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((20.0 200.0,240.0 200.0,240.0 20.0,20.0 20.0,20.0 200.0),(130.0 110.0,60.0 180.0,60.0 40.0,130.0 110.0),(130.0 110.0,200.0 40.0,200.0 180.0,130.0 110.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  @tag :skip\n  test \"05-033 - L/A2h-3-2: the interior (at a non-vertex) of a line touching the closing points of two connected holes in a polygon\" do\n    a = \"LINESTRING (80 110, 180 110)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((20 200, 240 200, 240 20, 20 20, 20 200),(130 110, 60 180, 60 40, 130 110),(130 110, 200 40, 200 180, 130 110))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  @tag :skip\n  test \"05-033 - L/A2h-3-2: the interior (at a non-vertex) of a line touching the closing points of two connected holes in a polygon (float)\" do\n    a = \"LINESTRING(80.0 110.0,180.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((20.0 200.0,240.0 200.0,240.0 20.0,20.0 20.0,20.0 200.0),(130.0 110.0,60.0 180.0,60.0 40.0,130.0 110.0),(130.0 110.0,200.0 40.0,200.0 180.0,130.0 110.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  @tag :skip\n  test \"05-034 - L/A2h-3-3: the interior (at a non-vertex) of a line touching the closing point and at a vertex of two connected holes in a polygon\" do\n    a = \"LINESTRING (80 110, 180 110)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((20 200, 20 20, 240 20, 240 200, 20 200),(60 180, 130 110, 60 40, 60 180),(130 110, 200 40, 200 180, 130 110))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  @tag :skip\n  test \"05-034 - L/A2h-3-3: the interior (at a non-vertex) of a line touching the closing point and at a vertex of two connected holes in a polygon (float)\" do\n    a = \"LINESTRING(80.0 110.0,180.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((20.0 200.0,20.0 20.0,240.0 20.0,240.0 200.0,20.0 200.0),(60.0 180.0,130.0 110.0,60.0 40.0,60.0 180.0),(130.0 110.0,200.0 40.0,200.0 180.0,130.0 110.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-035 - L/A2h-3-4: the interior (at a non-vertex) of a line touching the closing point and at a non-vertex of two connected holes in a polygon\" do\n    a = \"LINESTRING (80 110, 170 110)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((20 200, 20 20, 240 20, 240 200, 20 200),(130 110, 60 40, 60 180, 130 110),(130 180, 130 40, 200 110, 130 180))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-035 - L/A2h-3-4: the interior (at a non-vertex) of a line touching the closing point and at a non-vertex of two connected holes in a polygon (float)\" do\n    a = \"LINESTRING(80.0 110.0,170.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((20.0 200.0,20.0 20.0,240.0 20.0,240.0 200.0,20.0 200.0),(130.0 110.0,60.0 40.0,60.0 180.0,130.0 110.0),(130.0 180.0,130.0 40.0,200.0 110.0,130.0 180.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-036 - L/A2h-3-5: the start point a line touching the closing point and a non-vertex of two connected holes in a polygon\" do\n    a = \"LINESTRING (80 110, 130 110, 170 110)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((20 200, 20 20, 240 20, 240 200, 20 200),(130 110, 60 40, 60 180, 130 110),(130 180, 130 40, 200 110, 130 180))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-036 - L/A2h-3-5: the start point a line touching the closing point and a non-vertex of two connected holes in a polygon (float)\" do\n    a = \"LINESTRING(80.0 110.0,130.0 110.0,170.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((20.0 200.0,20.0 20.0,240.0 20.0,240.0 200.0,20.0 200.0),(130.0 110.0,60.0 40.0,60.0 180.0,130.0 110.0),(130.0 180.0,130.0 40.0,200.0 110.0,130.0 180.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  @tag :skip\n  test \"05-037 - L/A2h-3-6: the interior (at a vertex) of a line touching the closing points of two connected holes in a polygon\" do\n    a = \"LINESTRING (80 110, 130 110, 180 110)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((20 200, 240 200, 240 20, 20 20, 20 200),(130 110, 60 180, 60 40, 130 110),(130 110, 200 40, 200 180, 130 110))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  @tag :skip\n  test \"05-037 - L/A2h-3-6: the interior (at a vertex) of a line touching the closing points of two connected holes in a polygon (float)\" do\n    a = \"LINESTRING(80.0 110.0,130.0 110.0,180.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((20.0 200.0,240.0 200.0,240.0 20.0,20.0 20.0,20.0 200.0),(130.0 110.0,60.0 180.0,60.0 40.0,130.0 110.0),(130.0 110.0,200.0 40.0,200.0 180.0,130.0 110.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  @tag :skip\n  test \"05-038 - L/A2h-3-7: the interior (at a vertex) of a line touching the closing point and at a vertex of two connected holes in a polygon\" do\n    a = \"LINESTRING (80 110, 130 110, 180 110)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((20 200, 20 20, 240 20, 240 200, 20 200),(60 180, 130 110, 60 40, 60 180),(130 110, 200 40, 200 180, 130 110))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  @tag :skip\n  test \"05-038 - L/A2h-3-7: the interior (at a vertex) of a line touching the closing point and at a vertex of two connected holes in a polygon (float)\" do\n    a = \"LINESTRING(80.0 110.0,130.0 110.0,180.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((20.0 200.0,20.0 20.0,240.0 20.0,240.0 200.0,20.0 200.0),(60.0 180.0,130.0 110.0,60.0 40.0,60.0 180.0),(130.0 110.0,200.0 40.0,200.0 180.0,130.0 110.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-039 - L/A2h-3-8: the interior (at a vertex) of a line touching the closing point and at a non-vertex of two connected holes in a polygon\" do\n    a = \"LINESTRING (80 110, 130 110, 170 110)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((20 200, 20 20, 240 20, 240 200, 20 200),(130 110, 60 40, 60 180, 130 110),(130 180, 130 40, 200 110, 130 180))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-039 - L/A2h-3-8: the interior (at a vertex) of a line touching the closing point and at a non-vertex of two connected holes in a polygon (float)\" do\n    a = \"LINESTRING(80.0 110.0,130.0 110.0,170.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((20.0 200.0,20.0 20.0,240.0 20.0,240.0 200.0,20.0 200.0),(130.0 110.0,60.0 40.0,60.0 180.0,130.0 110.0),(130.0 180.0,130.0 40.0,200.0 110.0,130.0 180.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-040 - L/mA-4-1: a line intersecting the interior and exterior of MultiPolygon\" do\n    a = \"LINESTRING (160 70, 320 230)\" |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON (((140 110, 260 110, 170 20, 50 20, 140 110)),((300 270, 420 270, 340 190, 220 190, 300 270)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-040 - L/mA-4-1: a line intersecting the interior and exterior of MultiPolygon (float)\" do\n    a = \"LINESTRING(160.0 70.0,320.0 230.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON(((140.0 110.0,260.0 110.0,170.0 20.0,50.0 20.0,140.0 110.0)),((300.0 270.0,420.0 270.0,340.0 190.0,220.0 190.0,300.0 270.0)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-041 - L/mA-4-2: a line intersecting the interior and exterior of MultiPolygon\" do\n    a = \"LINESTRING (160 70, 200 110, 280 190, 320 230)\" |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON (((140 110, 260 110, 170 20, 50 20, 140 110)),((300 270, 420 270, 340 190, 220 190, 300 270)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-041 - L/mA-4-2: a line intersecting the interior and exterior of MultiPolygon (float)\" do\n    a = \"LINESTRING(160.0 70.0,200.0 110.0,280.0 190.0,320.0 230.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON(((140.0 110.0,260.0 110.0,170.0 20.0,50.0 20.0,140.0 110.0)),((300.0 270.0,420.0 270.0,340.0 190.0,220.0 190.0,300.0 270.0)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  @tag :skip\n  test \"05-042 - L/mA-5-1: a line within two connected polygons\" do\n    a = \"LINESTRING (70 50, 70 150)\" |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON (((0 0, 0 100, 140 100, 140 0, 0 0)),((20 170, 70 100, 130 170, 20 170)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  @tag :skip\n  test \"05-042 - L/mA-5-1: a line within two connected polygons (float)\" do\n    a = \"LINESTRING(70.0 50.0,70.0 150.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON(((0.0 0.0,0.0 100.0,140.0 100.0,140.0 0.0,0.0 0.0)),((20.0 170.0,70.0 100.0,130.0 170.0,20.0 170.0)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-043 - RL/A-3-1: a LinearRing touching a polygon's closing point\" do\n    a = \"LINESTRING (110 110, 20 200, 200 200, 110 110)\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((20 20, 200 20, 110 110, 20 20))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-043 - RL/A-3-1: a LinearRing touching a polygon's closing point (float)\" do\n    a = \"LINESTRING(110.0 110.0,20.0 200.0,200.0 200.0,110.0 110.0)\" |> Geo.WKT.decode!()\n    b = \"POLYGON((20.0 20.0,200.0 20.0,110.0 110.0,20.0 20.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-044 - RL/A-3-2: a LinearRing touching a polygon's boundary at a non-vertex\" do\n    a = \"LINESTRING (150 70, 160 110, 200 60, 150 70)\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((20 20, 200 20, 110 110, 20 20))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-044 - RL/A-3-2: a LinearRing touching a polygon's boundary at a non-vertex (float)\" do\n    a = \"LINESTRING(150.0 70.0,160.0 110.0,200.0 60.0,150.0 70.0)\" |> Geo.WKT.decode!()\n    b = \"POLYGON((20.0 20.0,200.0 20.0,110.0 110.0,20.0 20.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-045 - RL/A-3-3: a LinearRing touching a polygon's boundary at a non-vertex\" do\n    a = \"LINESTRING (80 60, 120 40, 120 70, 80 60)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((110 110, 200 20, 20 20, 110 110),(110 90, 50 30, 170 30, 110 90))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-045 - RL/A-3-3: a LinearRing touching a polygon's boundary at a non-vertex (float)\" do\n    a = \"LINESTRING(80.0 60.0,120.0 40.0,120.0 70.0,80.0 60.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((110.0 110.0,200.0 20.0,20.0 20.0,110.0 110.0),(110.0 90.0,50.0 30.0,170.0 30.0,110.0 90.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-046 - RL/A-3-4: a LinearRing on the boundary of a polygon\" do\n    a = \"LINESTRING (20 20, 200 20, 110 110, 20 20)\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((20 20, 200 20, 110 110, 20 20))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-046 - RL/A-3-4: a LinearRing on the boundary of a polygon (float)\" do\n    a = \"LINESTRING(20.0 20.0,200.0 20.0,110.0 110.0,20.0 20.0)\" |> Geo.WKT.decode!()\n    b = \"POLYGON((20.0 20.0,200.0 20.0,110.0 110.0,20.0 20.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-047 - RL/A-3-5: a LinearRing on the inner boundary of a polygon\" do\n    a = \"LINESTRING (110 90, 170 30, 50 30, 110 90)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((110 110, 200 20, 20 20, 110 110),(110 90, 50 30, 170 30, 110 90))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-047 - RL/A-3-5: a LinearRing on the inner boundary of a polygon (float)\" do\n    a = \"LINESTRING(110.0 90.0,170.0 30.0,50.0 30.0,110.0 90.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((110.0 110.0,200.0 20.0,20.0 20.0,110.0 110.0),(110.0 90.0,50.0 30.0,170.0 30.0,110.0 90.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-048 - RL/A-3-6: a LinearRing on the inner boundary of a polygon\" do\n    a = \"LINESTRING (110 110, 170 50, 170 110, 110 110)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((110 110, 200 20, 20 20, 110 110),(110 90, 50 30, 170 30, 110 90))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-048 - RL/A-3-6: a LinearRing on the inner boundary of a polygon (float)\" do\n    a = \"LINESTRING(110.0 110.0,170.0 50.0,170.0 110.0,110.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((110.0 110.0,200.0 20.0,20.0 20.0,110.0 110.0),(110.0 90.0,50.0 30.0,170.0 30.0,110.0 90.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-049 - RL/A-3-7: a LinearRing on the inner boundary of a polygon\" do\n    a = \"LINESTRING (110 90, 70 50, 130 50, 110 90)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((110 110, 200 20, 20 20, 110 110),(110 90, 50 30, 170 30, 110 90))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-049 - RL/A-3-7: a LinearRing on the inner boundary of a polygon (float)\" do\n    a = \"LINESTRING(110.0 90.0,70.0 50.0,130.0 50.0,110.0 90.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((110.0 110.0,200.0 20.0,20.0 20.0,110.0 110.0),(110.0 90.0,50.0 30.0,170.0 30.0,110.0 90.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-050 - RL/A-4-1: a LinearRing crossing a polygon\" do\n    a = \"LINESTRING (110 60, 20 150, 200 150, 110 60)\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((20 20, 200 20, 110 110, 20 20))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-050 - RL/A-4-1: a LinearRing crossing a polygon (float)\" do\n    a = \"LINESTRING(110.0 60.0,20.0 150.0,200.0 150.0,110.0 60.0)\" |> Geo.WKT.decode!()\n    b = \"POLYGON((20.0 20.0,200.0 20.0,110.0 110.0,20.0 20.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-051 - RL/A-4-2: a LinearRing crossing a polygon with a hole\" do\n    a = \"LINESTRING (110 130, 110 70, 200 100, 110 130)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((110 110, 200 20, 20 20, 110 110),(110 90, 50 30, 170 30, 110 90))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-051 - RL/A-4-2: a LinearRing crossing a polygon with a hole (float)\" do\n    a = \"LINESTRING(110.0 130.0,110.0 70.0,200.0 100.0,110.0 130.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((110.0 110.0,200.0 20.0,20.0 20.0,110.0 110.0),(110.0 90.0,50.0 30.0,170.0 30.0,110.0 90.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-052 - RL/A-5-1: a LinearRing within a polygon\" do\n    a = \"LINESTRING (110 90, 160 40, 60 40, 110 90)\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((20 20, 200 20, 110 110, 20 20))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-052 - RL/A-5-1: a LinearRing within a polygon (float)\" do\n    a = \"LINESTRING(110.0 90.0,160.0 40.0,60.0 40.0,110.0 90.0)\" |> Geo.WKT.decode!()\n    b = \"POLYGON((20.0 20.0,200.0 20.0,110.0 110.0,20.0 20.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-053 - RL/A-5-2: a LinearRing within a polygon with a hole\" do\n    a = \"LINESTRING (110 100, 40 30, 180 30, 110 100)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((110 110, 200 20, 20 20, 110 110),(110 90, 60 40, 160 40, 110 90))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-053 - RL/A-5-2: a LinearRing within a polygon with a hole (float)\" do\n    a = \"LINESTRING(110.0 100.0,40.0 30.0,180.0 30.0,110.0 100.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((110.0 110.0,200.0 20.0,20.0 20.0,110.0 110.0),(110.0 90.0,60.0 40.0,160.0 40.0,110.0 90.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-054 - RL/A-5-3: a LinearRing within a polygon with a hole\" do\n    a = \"LINESTRING (110 110, 180 30, 40 30, 110 110)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((110 110, 200 20, 20 20, 110 110),(110 90, 60 40, 160 40, 110 90))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-054 - RL/A-5-3: a LinearRing within a polygon with a hole (float)\" do\n    a = \"LINESTRING(110.0 110.0,180.0 30.0,40.0 30.0,110.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((110.0 110.0,200.0 20.0,20.0 20.0,110.0 110.0),(110.0 90.0,60.0 40.0,160.0 40.0,110.0 90.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-055 - RL/A-5-4: a LinearRing within a polygon with a hole\" do\n    a = \"LINESTRING (110 90, 180 30, 40 30, 110 90)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((110 110, 200 20, 20 20, 110 110),(110 90, 60 40, 160 40, 110 90))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-055 - RL/A-5-4: a LinearRing within a polygon with a hole (float)\" do\n    a = \"LINESTRING(110.0 90.0,180.0 30.0,40.0 30.0,110.0 90.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((110.0 110.0,200.0 20.0,20.0 20.0,110.0 110.0),(110.0 90.0,60.0 40.0,160.0 40.0,110.0 90.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-056 - RL/A-5-5: a LinearRing within a polygon with a hole\" do\n    a = \"LINESTRING (110 90, 50 30, 180 30, 110 90)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((110 110, 200 20, 20 20, 110 110),(110 90, 60 40, 160 40, 110 90))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-056 - RL/A-5-5: a LinearRing within a polygon with a hole (float)\" do\n    a = \"LINESTRING(110.0 90.0,50.0 30.0,180.0 30.0,110.0 90.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((110.0 110.0,200.0 20.0,20.0 20.0,110.0 110.0),(110.0 90.0,60.0 40.0,160.0 40.0,110.0 90.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-057 - nsL/A-3-1: a non-simple LineString touching a polygon\" do\n    a = \"LINESTRING (110 110, 200 200, 200 110, 110 200)\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((110 110, 200 20, 20 20, 110 110))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-057 - nsL/A-3-1: a non-simple LineString touching a polygon (float)\" do\n    a = \"LINESTRING(110.0 110.0,200.0 200.0,200.0 110.0,110.0 200.0)\" |> Geo.WKT.decode!()\n    b = \"POLYGON((110.0 110.0,200.0 20.0,20.0 20.0,110.0 110.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-058 - nsL/A-3-2: a non-simple LineString touching a polygon\" do\n    a = \"LINESTRING (110 110, 200 200, 110 110, 20 200, 20 110, 200 110)\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((110 110, 200 20, 20 20, 110 110))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-058 - nsL/A-3-2: a non-simple LineString touching a polygon (float)\" do\n    a =\n      \"LINESTRING(110.0 110.0,200.0 200.0,110.0 110.0,20.0 200.0,20.0 110.0,200.0 110.0)\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON((110.0 110.0,200.0 20.0,20.0 20.0,110.0 110.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-059 - nsL/A-3-3: a non-simple LineString touching a polygon\" do\n    a = \"LINESTRING (110 110, 20 110, 200 110, 50 110, 110 170)\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((110 110, 200 20, 20 20, 110 110))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-059 - nsL/A-3-3: a non-simple LineString touching a polygon (float)\" do\n    a =\n      \"LINESTRING(110.0 110.0,20.0 110.0,200.0 110.0,50.0 110.0,110.0 170.0)\" |> Geo.WKT.decode!()\n\n    b = \"POLYGON((110.0 110.0,200.0 20.0,20.0 20.0,110.0 110.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-060 - nsL/A-3-4: a non-simple LineString touching a polygon\" do\n    a = \"LINESTRING (110 110, 20 200, 110 200, 110 110, 200 200)\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((110 110, 200 20, 20 20, 110 110))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-060 - nsL/A-3-4: a non-simple LineString touching a polygon (float)\" do\n    a =\n      \"LINESTRING(110.0 110.0,20.0 200.0,110.0 200.0,110.0 110.0,200.0 200.0)\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON((110.0 110.0,200.0 20.0,20.0 20.0,110.0 110.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-061 - nsL/A-3-5: a non-simple LineString touching a polygon\" do\n    a = \"LINESTRING (110 110, 170 50, 20 200, 20 110, 200 110)\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((110 110, 200 20, 20 20, 110 110))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-061 - nsL/A-3-5: a non-simple LineString touching a polygon (float)\" do\n    a =\n      \"LINESTRING(110.0 110.0,170.0 50.0,20.0 200.0,20.0 110.0,200.0 110.0)\" |> Geo.WKT.decode!()\n\n    b = \"POLYGON((110.0 110.0,200.0 20.0,20.0 20.0,110.0 110.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-062 - nsL/A-4-1: a non-simple LineString crossing a polygon\" do\n    a = \"LINESTRING (110 110, 180 40, 110 40, 110 180)\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((110 110, 200 20, 20 20, 110 110))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-062 - nsL/A-4-1: a non-simple LineString crossing a polygon (float)\" do\n    a = \"LINESTRING(110.0 110.0,180.0 40.0,110.0 40.0,110.0 180.0)\" |> Geo.WKT.decode!()\n    b = \"POLYGON((110.0 110.0,200.0 20.0,20.0 20.0,110.0 110.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-063 - nsL/A-5-1: a non-simple LineString within a polygon\" do\n    a = \"LINESTRING (110 60, 50 30, 170 30, 90 70)\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((110 110, 200 20, 20 20, 110 110))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-063 - nsL/A-5-1: a non-simple LineString within a polygon (float)\" do\n    a = \"LINESTRING(110.0 60.0,50.0 30.0,170.0 30.0,90.0 70.0)\" |> Geo.WKT.decode!()\n    b = \"POLYGON((110.0 110.0,200.0 20.0,20.0 20.0,110.0 110.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-064 - nsL/A-5-2: a non-simple LineString within a polygon\" do\n    a = \"LINESTRING (110 110, 180 40, 110 40, 110 110, 70 40)\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((110 110, 200 20, 20 20, 110 110))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-064 - nsL/A-5-2: a non-simple LineString within a polygon (float)\" do\n    a = \"LINESTRING(110.0 110.0,180.0 40.0,110.0 40.0,110.0 110.0,70.0 40.0)\" |> Geo.WKT.decode!()\n    b = \"POLYGON((110.0 110.0,200.0 20.0,20.0 20.0,110.0 110.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-065 - nsL/Ah: the self-crossing point of a non-simple LineString touching the closing point of the inner boundary of a polygon\" do\n    a = \"LINESTRING (230 70, 170 120, 190 60, 140 60, 170 120, 270 90)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150),(170 120, 330 120, 260 50, 100 50, 170 120))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-065 - nsL/Ah: the self-crossing point of a non-simple LineString touching the closing point of the inner boundary of a polygon (float)\" do\n    a =\n      \"LINESTRING(230.0 70.0,170.0 120.0,190.0 60.0,140.0 60.0,170.0 120.0,270.0 90.0)\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((150.0 150.0,410.0 150.0,280.0 20.0,20.0 20.0,150.0 150.0),(170.0 120.0,330.0 120.0,260.0 50.0,100.0 50.0,170.0 120.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-066 - mL/A-3-1: MultiLineString touching a polygon's closing point\" do\n    a =\n      \"MULTILINESTRING ((20 110, 200 110),(200 200, 110 110, 20 210, 110 110))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON ((110 110, 200 20, 20 20, 110 110))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-066 - mL/A-3-1: MultiLineString touching a polygon's closing point (float)\" do\n    a =\n      \"MULTILINESTRING((20.0 110.0,200.0 110.0),(200.0 200.0,110.0 110.0,20.0 210.0,110.0 110.0))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON((110.0 110.0,200.0 20.0,20.0 20.0,110.0 110.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-067 - mL/A-3-2: MultiLineString touching a polygon's closing point\" do\n    a =\n      \"MULTILINESTRING ((20 110, 200 110),(60 180, 60 110, 160 110, 110 110))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON ((110 110, 200 20, 20 20, 110 110))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-067 - mL/A-3-2: MultiLineString touching a polygon's closing point (float)\" do\n    a =\n      \"MULTILINESTRING((20.0 110.0,200.0 110.0),(60.0 180.0,60.0 110.0,160.0 110.0,110.0 110.0))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON((110.0 110.0,200.0 20.0,20.0 20.0,110.0 110.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-068 - mL/A-3-3: MultiLineString touching a polygon's closing point\" do\n    a =\n      \"MULTILINESTRING ((20 110, 200 110),(200 200, 110 110, 20 200, 110 200, 110 110))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON ((110 110, 200 20, 20 20, 110 110))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-068 - mL/A-3-3: MultiLineString touching a polygon's closing point (float)\" do\n    a =\n      \"MULTILINESTRING((20.0 110.0,200.0 110.0),(200.0 200.0,110.0 110.0,20.0 200.0,110.0 200.0,110.0 110.0))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON((110.0 110.0,200.0 20.0,20.0 20.0,110.0 110.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-069 - mL/A-4-1: MultiLineString crossing a polygon\" do\n    a =\n      \"MULTILINESTRING ((20 110, 200 110),(110 50, 110 170, 110 70, 110 150, 200 150))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON ((110 110, 200 20, 20 20, 110 110))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-069 - mL/A-4-1: MultiLineString crossing a polygon (float)\" do\n    a =\n      \"MULTILINESTRING((20.0 110.0,200.0 110.0),(110.0 50.0,110.0 170.0,110.0 70.0,110.0 150.0,200.0 150.0))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON((110.0 110.0,200.0 20.0,20.0 20.0,110.0 110.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-070 - mL/A-4-2: MultiLineString crossing a polygon\" do\n    a =\n      \"MULTILINESTRING ((20 110, 200 110),(50 110, 170 110, 110 170, 110 50, 110 170, 110 50))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON ((110 110, 200 20, 20 20, 110 110))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-070 - mL/A-4-2: MultiLineString crossing a polygon (float)\" do\n    a =\n      \"MULTILINESTRING((20.0 110.0,200.0 110.0),(50.0 110.0,170.0 110.0,110.0 170.0,110.0 50.0,110.0 170.0,110.0 50.0))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON((110.0 110.0,200.0 20.0,20.0 20.0,110.0 110.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-071 - mL/A-4-3: MultiLineString crossing a polygon\" do\n    a = \"MULTILINESTRING ((20 110, 200 110),(110 60, 110 160, 200 160))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((110 110, 200 20, 20 20, 110 110))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-071 - mL/A-4-3: MultiLineString crossing a polygon (float)\" do\n    a =\n      \"MULTILINESTRING((20.0 110.0,200.0 110.0),(110.0 60.0,110.0 160.0,200.0 160.0))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON((110.0 110.0,200.0 20.0,20.0 20.0,110.0 110.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-072 - mL/A-4-4: MultiLineString crossing a polygon\" do\n    a = \"MULTILINESTRING ((20 110, 200 110),(110 60, 110 160, 200 160))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((110 110, 200 20, 20 20, 110 110))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-072 - mL/A-4-4: MultiLineString crossing a polygon (float)\" do\n    a =\n      \"MULTILINESTRING((20.0 110.0,200.0 110.0),(110.0 60.0,110.0 160.0,200.0 160.0))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON((110.0 110.0,200.0 20.0,20.0 20.0,110.0 110.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-073 - mL/A-5-1: MultiLineString within a polygon\" do\n    a = \"MULTILINESTRING ((110 100, 40 30, 180 30),(170 30, 110 90, 50 30))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((110 110, 200 20, 20 20, 110 110))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-073 - mL/A-5-1: MultiLineString within a polygon (float)\" do\n    a =\n      \"MULTILINESTRING((110.0 100.0,40.0 30.0,180.0 30.0),(170.0 30.0,110.0 90.0,50.0 30.0))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON((110.0 110.0,200.0 20.0,20.0 20.0,110.0 110.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-074 - mL/A-5-2: MultiLineString within a polygon\" do\n    a =\n      \"MULTILINESTRING ((110 110, 60 40, 70 20, 150 20, 170 40),(180 30, 40 30, 110 80))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON ((110 110, 200 20, 20 20, 110 110))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-074 - mL/A-5-2: MultiLineString within a polygon (float)\" do\n    a =\n      \"MULTILINESTRING((110.0 110.0,60.0 40.0,70.0 20.0,150.0 20.0,170.0 40.0),(180.0 30.0,40.0 30.0,110.0 80.0))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON((110.0 110.0,200.0 20.0,20.0 20.0,110.0 110.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-075 - mL/mA-3-1: MultiLineString within a MultiPolygon\" do\n    a =\n      \"MULTILINESTRING ((20 110, 200 110, 200 160),(110 110, 200 110, 200 70, 20 150))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON (((110 110, 20 20, 200 20, 110 110)),((110 110, 20 200, 200 200, 110 110)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-075 - mL/mA-3-1: MultiLineString within a MultiPolygon (float)\" do\n    a =\n      \"MULTILINESTRING((20.0 110.0,200.0 110.0,200.0 160.0),(110.0 110.0,200.0 110.0,200.0 70.0,20.0 150.0))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON(((110.0 110.0,20.0 20.0,200.0 20.0,110.0 110.0)),((110.0 110.0,20.0 200.0,200.0 200.0,110.0 110.0)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-076 - mL/mA-3-2: MultiLineString within a MultiPolygon\" do\n    a =\n      \"MULTILINESTRING ((20 160, 70 110, 150 110, 200 160),(110 110, 20 110, 50 80, 70 110, 200 110))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON (((110 110, 20 20, 200 20, 110 110)),((110 110, 20 200, 200 200, 110 110)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-076 - mL/mA-3-2: MultiLineString within a MultiPolygon (float)\" do\n    a =\n      \"MULTILINESTRING((20.0 160.0,70.0 110.0,150.0 110.0,200.0 160.0),(110.0 110.0,20.0 110.0,50.0 80.0,70.0 110.0,200.0 110.0))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON(((110.0 110.0,20.0 20.0,200.0 20.0,110.0 110.0)),((110.0 110.0,20.0 200.0,200.0 200.0,110.0 110.0)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-077 - mL/mA-3-3: MultiLineString within a MultiPolygon\" do\n    a =\n      \"MULTILINESTRING ((20 110, 200 110),(110 110, 20 170, 20 130, 200 90))\" |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON (((110 110, 20 20, 200 20, 110 110)),((110 110, 20 200, 200 200, 110 110)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"05-077 - mL/mA-3-3: MultiLineString within a MultiPolygon (float)\" do\n    a =\n      \"MULTILINESTRING((20.0 110.0,200.0 110.0),(110.0 110.0,20.0 170.0,20.0 130.0,200.0 90.0))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON(((110.0 110.0,20.0 20.0,200.0 20.0,110.0 110.0)),((110.0 110.0,20.0 200.0,200.0 200.0,110.0 110.0)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\nend\n"
  },
  {
    "path": "test/validation/line_polygon_b_test.exs",
    "content": "defmodule Intersect.Validation.LinePolygonBTest do\n  use ExUnit.Case\n\n  @tag :validation\n  test \"13-001 - LA - A and B simple\" do\n    a = \"LINESTRING (240 190, 120 120)\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((110 240, 50 80, 240 70, 110 240))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"13-001 - LA - A and B simple (float)\" do\n    a = \"LINESTRING(240.0 190.0,120.0 120.0)\" |> Geo.WKT.decode!()\n    b = \"POLYGON((110.0 240.0,50.0 80.0,240.0 70.0,110.0 240.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"13-002 - LA - A intersects B-hole\" do\n    a = \"LINESTRING (0 100, 100 100, 200 200)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((30 240, 260 30, 30 30, 30 240),(80 140, 80 80, 140 80, 80 140))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"13-002 - LA - A intersects B-hole (float)\" do\n    a = \"LINESTRING(0.0 100.0,100.0 100.0,200.0 200.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((30.0 240.0,260.0 30.0,30.0 30.0,30.0 240.0),(80.0 140.0,80.0 80.0,140.0 80.0,80.0 140.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"13-003 - LA - A intersects B-hole #2\" do\n    a = \"LINESTRING (40 340, 200 250, 120 180, 160 110, 270 40)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((160 330, 60 260, 20 150, 60 40, 190 20, 270 130, 260 250, 160 330),(140 240, 80 190, 90 100, 160 70, 210 130, 210 210, 140 240))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"13-003 - LA - A intersects B-hole #2 (float)\" do\n    a =\n      \"LINESTRING(40.0 340.0,200.0 250.0,120.0 180.0,160.0 110.0,270.0 40.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((160.0 330.0,60.0 260.0,20.0 150.0,60.0 40.0,190.0 20.0,270.0 130.0,260.0 250.0,160.0 330.0),(140.0 240.0,80.0 190.0,90.0 100.0,160.0 70.0,210.0 130.0,210.0 210.0,140.0 240.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"13-004 - mLmA - A and B complex, disjoint\" do\n    a =\n      \"MULTIPOLYGON (((60 320, 60 80, 300 80, 60 320),(80 280, 80 100, 260 100, 80 280)),((120 160, 140 160, 140 140, 120 160)))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTILINESTRING ((100 240, 100 180, 160 180, 160 120, 220 120),(40 360, 40 60, 340 60, 40 360, 40 20),(120 120, 120 140, 100 140, 100 120, 140 120))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"13-004 - mLmA - A and B complex, disjoint (float)\" do\n    a =\n      \"MULTIPOLYGON(((60.0 320.0,60.0 80.0,300.0 80.0,60.0 320.0),(80.0 280.0,80.0 100.0,260.0 100.0,80.0 280.0)),((120.0 160.0,140.0 160.0,140.0 140.0,120.0 160.0)))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTILINESTRING((100.0 240.0,100.0 180.0,160.0 180.0,160.0 120.0,220.0 120.0),(40.0 360.0,40.0 60.0,340.0 60.0,40.0 360.0,40.0 20.0),(120.0 120.0,120.0 140.0,100.0 140.0,100.0 120.0,140.0 120.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"13-005 - mLmA - A and B complex, overlapping and touching #1\" do\n    a =\n      \"MULTIPOLYGON (((60 260, 60 120, 220 120, 220 260, 60 260),(80 240, 80 140, 200 140, 200 240, 80 240)),((100 220, 100 160, 180 160, 180 220, 100 220),(120 200, 120 180, 160 180, 160 200, 120 200)))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTILINESTRING ((40 260, 240 260, 240 240, 40 240, 40 220, 240 220),(120 300, 120 80, 140 80, 140 300, 140 80, 120 80, 120 320))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"13-005 - mLmA - A and B complex, overlapping and touching #1 (float)\" do\n    a =\n      \"MULTIPOLYGON(((60.0 260.0,60.0 120.0,220.0 120.0,220.0 260.0,60.0 260.0),(80.0 240.0,80.0 140.0,200.0 140.0,200.0 240.0,80.0 240.0)),((100.0 220.0,100.0 160.0,180.0 160.0,180.0 220.0,100.0 220.0),(120.0 200.0,120.0 180.0,160.0 180.0,160.0 200.0,120.0 200.0)))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTILINESTRING((40.0 260.0,240.0 260.0,240.0 240.0,40.0 240.0,40.0 220.0,240.0 220.0),(120.0 300.0,120.0 80.0,140.0 80.0,140.0 300.0,140.0 80.0,120.0 80.0,120.0 320.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"13-006 - mLmA - A and B complex, overlapping and touching #2\" do\n    a =\n      \"MULTIPOLYGON (((60 320, 60 120, 280 120, 280 320, 60 320),(120 260, 120 180, 240 180, 240 260, 120 260)),((280 400, 320 400, 320 360, 280 360, 280 400)),((300 240, 300 220, 320 220, 320 240, 300 240)))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTILINESTRING ((80 300, 80 160, 260 160, 260 300, 80 300, 80 140),(220 360, 220 240, 300 240, 300 360))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"13-006 - mLmA - A and B complex, overlapping and touching #2 (float)\" do\n    a =\n      \"MULTIPOLYGON(((60.0 320.0,60.0 120.0,280.0 120.0,280.0 320.0,60.0 320.0),(120.0 260.0,120.0 180.0,240.0 180.0,240.0 260.0,120.0 260.0)),((280.0 400.0,320.0 400.0,320.0 360.0,280.0 360.0,280.0 400.0)),((300.0 240.0,300.0 220.0,320.0 220.0,320.0 240.0,300.0 240.0)))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTILINESTRING((80.0 300.0,80.0 160.0,260.0 160.0,260.0 300.0,80.0 300.0,80.0 140.0),(220.0 360.0,220.0 240.0,300.0 240.0,300.0 360.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"13-007 - mLmA - A and B complex, overlapping and touching #3\" do\n    a =\n      \"MULTIPOLYGON (((120 180, 60 80, 180 80, 120 180)),((100 240, 140 240, 120 220, 100 240)))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTILINESTRING ((180 260, 120 180, 60 260, 180 260),(60 300, 60 40),(100 100, 140 100))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"13-007 - mLmA - A and B complex, overlapping and touching #3 (float)\" do\n    a =\n      \"MULTIPOLYGON(((120.0 180.0,60.0 80.0,180.0 80.0,120.0 180.0)),((100.0 240.0,140.0 240.0,120.0 220.0,100.0 240.0)))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTILINESTRING((180.0 260.0,120.0 180.0,60.0 260.0,180.0 260.0),(60.0 300.0,60.0 40.0),(100.0 100.0,140.0 100.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\nend\n"
  },
  {
    "path": "test/validation/line_polygon_precision_test.exs",
    "content": "defmodule Intersect.Validation.LinePolygonPrecisionTest do\n  use ExUnit.Case\n\n  @tag :validation\n  test \"17-001 - LA - line and sliver intersecting, dimensional collapse\" do\n    a = \"POLYGON ((95 9, 81 414, 87 414, 95 9))\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (93 13, 96 13)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"17-001 - LA - line and sliver intersecting, dimensional collapse (float)\" do\n    a = \"POLYGON((95.0 9.0,81.0 414.0,87.0 414.0,95.0 9.0))\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(93.0 13.0,96.0 13.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\nend\n"
  },
  {
    "path": "test/validation/point_line_a_test.exs",
    "content": "defmodule Intersect.Validation.PointLineATest do\n  use ExUnit.Case\n\n  @tag :validation\n  test \"02-001 - P/L-2: a point and a line disjoint\" do\n    a = \"POINT (110 200)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (90 80, 160 150, 300 150, 340 150, 340 240)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-001 - P/L-2: a point and a line disjoint (float)\" do\n    a = \"POINT(110.0 200.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(90.0 80.0,160.0 150.0,300.0 150.0,340.0 150.0,340.0 240.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-002 - P/L-3-1: a point touching the start point of a line\" do\n    a = \"POINT (90 80)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (90 80, 160 150, 300 150, 340 150, 340 240)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-002 - P/L-3-1: a point touching the start point of a line (float)\" do\n    a = \"POINT(90.0 80.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(90.0 80.0,160.0 150.0,300.0 150.0,340.0 150.0,340.0 240.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-003 - P/L-3-2: a point touching the end point of a line\" do\n    a = \"POINT (340 240)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (90 80, 160 150, 300 150, 340 150, 340 240)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-003 - P/L-3-2: a point touching the end point of a line (float)\" do\n    a = \"POINT(340.0 240.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(90.0 80.0,160.0 150.0,300.0 150.0,340.0 150.0,340.0 240.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-004 - P/L-5-1: a point on the line at a non-vertex\" do\n    a = \"POINT (230 150)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (90 80, 160 150, 300 150, 340 150, 340 240)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-004 - P/L-5-1: a point on the line at a non-vertex (float)\" do\n    a = \"POINT(230.0 150.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(90.0 80.0,160.0 150.0,300.0 150.0,340.0 150.0,340.0 240.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-005 - P/L-5-2: a point on the line at a vertex\" do\n    a = \"POINT (160 150)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (90 80, 160 150, 300 150, 340 150, 340 240)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-005 - P/L-5-2: a point on the line at a vertex (float)\" do\n    a = \"POINT(160.0 150.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(90.0 80.0,160.0 150.0,300.0 150.0,340.0 150.0,340.0 240.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-006 - P/LR-2-1: a point outside a LinearRing\" do\n    a = \"POINT (90 150)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (150 150, 20 20, 280 20, 150 150)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-006 - P/LR-2-1: a point outside a LinearRing (float)\" do\n    a = \"POINT(90.0 150.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(150.0 150.0,20.0 20.0,280.0 20.0,150.0 150.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-007 - P/LR-2-2: a point inside a LinearRing\" do\n    a = \"POINT (150 80)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (150 150, 20 20, 280 20, 150 150)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-007 - P/LR-2-2: a point inside a LinearRing (float)\" do\n    a = \"POINT(150.0 80.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(150.0 150.0,20.0 20.0,280.0 20.0,150.0 150.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-008 - P/LR-5-1: a point on the closing point of a LinearRing\" do\n    a = \"POINT (150 150)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (150 150, 20 20, 280 20, 150 150)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-008 - P/LR-5-1: a point on the closing point of a LinearRing (float)\" do\n    a = \"POINT(150.0 150.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(150.0 150.0,20.0 20.0,280.0 20.0,150.0 150.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-009 - P/LR-5-2: a point on a LinearRing at a non-vertex\" do\n    a = \"POINT (100 20)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (150 150, 20 20, 280 20, 150 150)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-009 - P/LR-5-2: a point on a LinearRing at a non-vertex (float)\" do\n    a = \"POINT(100.0 20.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(150.0 150.0,20.0 20.0,280.0 20.0,150.0 150.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-010 - P/LR-5-3: a point on a LinearRing at a vertex\" do\n    a = \"POINT (20 20)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (150 150, 20 20, 280 20, 150 150)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-010 - P/LR-5-3: a point on a LinearRing at a vertex (float)\" do\n    a = \"POINT(20.0 20.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(150.0 150.0,20.0 20.0,280.0 20.0,150.0 150.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-011 - P/nsL.1-3-1: a point on a non-simple LineString's end point\" do\n    a = \"POINT (220 220)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (110 110, 220 20, 20 20, 110 110, 220 220)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-011 - P/nsL.1-3-1: a point on a non-simple LineString's end point (float)\" do\n    a = \"POINT(220.0 220.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(110.0 110.0,220.0 20.0,20.0 20.0,110.0 110.0,220.0 220.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-012 - P/nsL.1-5-1: a point on a non-simple LineString's start point with crossing line segments\" do\n    a = \"POINT (110 110)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (110 110, 220 20, 20 20, 110 110, 220 220)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-012 - P/nsL.1-5-1: a point on a non-simple LineString's start point with crossing line segments (float)\" do\n    a = \"POINT(110.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(110.0 110.0,220.0 20.0,20.0 20.0,110.0 110.0,220.0 220.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-013 - P/nsL.1-5-2: a point a non-simple LineString's start point with crossing line segments\" do\n    a = \"POINT (110 110)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (110 110, 220 20, 20 20, 220 220)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-013 - P/nsL.1-5-2: a point a non-simple LineString's start point with crossing line segments (float)\" do\n    a = \"POINT(110.0 110.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(110.0 110.0,220.0 20.0,20.0 20.0,220.0 220.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-014 - P/nsL.1-5-3: a point on a non-simple LineString's interior at a non-vertex\" do\n    a = \"POINT (110 20)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (110 110, 220 20, 20 20, 220 220)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-014 - P/nsL.1-5-3: a point on a non-simple LineString's interior at a non-vertex (float)\" do\n    a = \"POINT(110.0 20.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(110.0 110.0,220.0 20.0,20.0 20.0,220.0 220.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-015 - P/nsL.1-5-4: a point on a non-simple LineString's interior at a vertex\" do\n    a = \"POINT (220 20)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (110 110, 220 20, 20 20, 220 220)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-015 - P/nsL.1-5-4: a point on a non-simple LineString's interior at a vertex (float)\" do\n    a = \"POINT(220.0 20.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(110.0 110.0,220.0 20.0,20.0 20.0,220.0 220.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-016 - P/nsL.2-5-2: a point on a non-simple LineString's interior at a vertex\" do\n    a = \"POINT (110 20)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (220 220, 20 20, 220 20, 110 110)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-016 - P/nsL.2-5-2: a point on a non-simple LineString's interior at a vertex (float)\" do\n    a = \"POINT(110.0 20.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(220.0 220.0,20.0 20.0,220.0 20.0,110.0 110.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-017 - P/nsL.2-5-3: a point on a non-simple LineString's interior at a vertex\" do\n    a = \"POINT (20 20)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (220 220, 20 20, 220 20, 110 110)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-017 - P/nsL.2-5-3: a point on a non-simple LineString's interior at a vertex (float)\" do\n    a = \"POINT(20.0 20.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(220.0 220.0,20.0 20.0,220.0 20.0,110.0 110.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-018 - P/nsL.2-5-4: a point on a non-simple LineString's interior at a vertex with crossing line segments\" do\n    a = \"POINT (20 110)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (20 200, 20 20, 110 20, 20 110, 110 200)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-018 - P/nsL.2-5-4: a point on a non-simple LineString's interior at a vertex with crossing line segments (float)\" do\n    a = \"POINT(20.0 110.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(20.0 200.0,20.0 20.0,110.0 20.0,20.0 110.0,110.0 200.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-019 - P/nsL.3-3-1: a point on a non-simple LineString's start point\" do\n    a = \"POINT (20 200)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (20 200, 200 20, 20 20, 200 200)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-019 - P/nsL.3-3-1: a point on a non-simple LineString's start point (float)\" do\n    a = \"POINT(20.0 200.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(20.0 200.0,200.0 20.0,20.0 20.0,200.0 200.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-020 - P/nsL.3-5-1: a point on a non-simple LineString's interior at a non-vertex with overlapping line segments\" do\n    a = \"POINT (110 110)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (20 200, 200 20, 140 20, 140 80, 80 140, 20 140)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-020 - P/nsL.3-5-1: a point on a non-simple LineString's interior at a non-vertex with overlapping line segments (float)\" do\n    a = \"POINT(110.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(20.0 200.0,200.0 20.0,140.0 20.0,140.0 80.0,80.0 140.0,20.0 140.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-021 - P/nsL.3-5-2: a point on a non-simple LineString's interior at a non-vertex with crossing line segments\" do\n    a = \"POINT (110 110)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (20 200, 200 20, 20 20, 200 200)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-021 - P/nsL.3-5-2: a point on a non-simple LineString's interior at a non-vertex with crossing line segments (float)\" do\n    a = \"POINT(110.0 110.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(20.0 200.0,200.0 20.0,20.0 20.0,200.0 200.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-022 - P/nsL.3-5-3: a point on a non-simple LineString's interior at a vertex with both crossing and overlapping line segments\" do\n    a = \"POINT (80 140)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING (20 200, 110 110, 200 20, 140 20, 140 80, 110 110, 80 140, 20 140)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-022 - P/nsL.3-5-3: a point on a non-simple LineString's interior at a vertex with both crossing and overlapping line segments (float)\" do\n    a = \"POINT(80.0 140.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(20.0 200.0,110.0 110.0,200.0 20.0,140.0 20.0,140.0 80.0,110.0 110.0,80.0 140.0,20.0 140.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-023 - P/nsL.3-5-4: a point on a non-simple LineString's interior at a two-vertex point with overlapping line segments\" do\n    a = \"POINT (110 110)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING (20 200, 110 110, 200 20, 140 20, 140 80, 110 110, 80 140, 20 140)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-023 - P/nsL.3-5-4: a point on a non-simple LineString's interior at a two-vertex point with overlapping line segments (float)\" do\n    a = \"POINT(110.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(20.0 200.0,110.0 110.0,200.0 20.0,140.0 20.0,140.0 80.0,110.0 110.0,80.0 140.0,20.0 140.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-024 - P/nsL.3-5-5: a point on a non-simple LineString's interior at a vertex with overlapping line segments\" do\n    a = \"POINT (110 110)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING (20 200, 200 20, 140 20, 140 80, 110 110, 80 140, 20 140)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-024 - P/nsL.3-5-5: a point on a non-simple LineString's interior at a vertex with overlapping line segments (float)\" do\n    a = \"POINT(110.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(20.0 200.0,200.0 20.0,140.0 20.0,140.0 80.0,110.0 110.0,80.0 140.0,20.0 140.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-025 - P/nsL.3-5-6: a point on a non-simple LineString's interior at a two-vertex point with crossing line segments\" do\n    a = \"POINT (110 110)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (20 200, 110 110, 200 20, 20 20, 110 110, 200 200)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-025 - P/nsL.3-5-6: a point on a non-simple LineString's interior at a two-vertex point with crossing line segments (float)\" do\n    a = \"POINT(110.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(20.0 200.0,110.0 110.0,200.0 20.0,20.0 20.0,110.0 110.0,200.0 200.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-026 - P/nsL.3-5-7: a point on a non-simple LineString's interior at a vertex with crossing line segments\" do\n    a = \"POINT (110 110)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (20 200, 200 20, 20 20, 110 110, 200 200)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-026 - P/nsL.3-5-7: a point on a non-simple LineString's interior at a vertex with crossing line segments (float)\" do\n    a = \"POINT(110.0 110.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(20.0 200.0,200.0 20.0,20.0 20.0,110.0 110.0,200.0 200.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-027 - P/nsL.3-5-8: a point on a non-simple LineString's interior at a two-vertex point with crossing line segments\" do\n    a = \"POINT (110 110)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (20 200, 110 110, 20 20, 200 20, 110 110, 200 200)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-027 - P/nsL.3-5-8: a point on a non-simple LineString's interior at a two-vertex point with crossing line segments (float)\" do\n    a = \"POINT(110.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(20.0 200.0,110.0 110.0,20.0 20.0,200.0 20.0,110.0 110.0,200.0 200.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-028 - P/nsL.4-3-1: a point on a non-simple LineString's start point with crossing and overlapping line segments\" do\n    a = \"POINT (110 110)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING (110 110, 110 200, 20 200, 110 110, 200 20, 140 20, 140 80, 110 110, 80 140, 20 140)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-028 - P/nsL.4-3-1: a point on a non-simple LineString's start point with crossing and overlapping line segments (float)\" do\n    a = \"POINT(110.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(110.0 110.0,110.0 200.0,20.0 200.0,110.0 110.0,200.0 20.0,140.0 20.0,140.0 80.0,110.0 110.0,80.0 140.0,20.0 140.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-029 - P/nsL.4-3-2: a point on a non-simple LineString's start point with crossing and overlapping line segments\" do\n    a = \"POINT (110 110)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING (110 110, 110 200, 20 200, 200 20, 140 20, 140 80, 110 110, 80 140, 20 140)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-029 - P/nsL.4-3-2: a point on a non-simple LineString's start point with crossing and overlapping line segments (float)\" do\n    a = \"POINT(110.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(110.0 110.0,110.0 200.0,20.0 200.0,200.0 20.0,140.0 20.0,140.0 80.0,110.0 110.0,80.0 140.0,20.0 140.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-030 - P/nsL.4-3-3:a point on a non-simple LineString's start point with crossing and overlapping line segments\" do\n    a = \"POINT (110 110)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING (110 110, 110 200, 20 200, 200 20, 140 20, 140 80, 80 140, 20 140)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-030 - P/nsL.4-3-3:a point on a non-simple LineString's start point with crossing and overlapping line segments (float)\" do\n    a = \"POINT(110.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(110.0 110.0,110.0 200.0,20.0 200.0,200.0 20.0,140.0 20.0,140.0 80.0,80.0 140.0,20.0 140.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-031 - P/nsL.4-3-4: a point on a non-simple LineString's start point with crossing line segments\" do\n    a = \"POINT (110 110)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING (110 110, 110 200, 20 200, 110 110, 200 20, 20 20, 110 110, 200 200)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-031 - P/nsL.4-3-4: a point on a non-simple LineString's start point with crossing line segments (float)\" do\n    a = \"POINT(110.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(110.0 110.0,110.0 200.0,20.0 200.0,110.0 110.0,200.0 20.0,20.0 20.0,110.0 110.0,200.0 200.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-032 - P/nsL.4-3-5: a point on a non-simple LineString's start point with crossing line segments\" do\n    a = \"POINT (110 110)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING (110 110, 110 200, 20 200, 200 20, 20 20, 110 110, 200 200)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-032 - P/nsL.4-3-5: a point on a non-simple LineString's start point with crossing line segments (float)\" do\n    a = \"POINT(110.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(110.0 110.0,110.0 200.0,20.0 200.0,200.0 20.0,20.0 20.0,110.0 110.0,200.0 200.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-033 - P/nsL.4-3-6: a point on a non-simple LineString's start point with crossing line segments\" do\n    a = \"POINT (110 110)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (110 110, 110 200, 20 200, 200 20, 20 20, 200 200)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-033 - P/nsL.4-3-6: a point on a non-simple LineString's start point with crossing line segments (float)\" do\n    a = \"POINT(110.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(110.0 110.0,110.0 200.0,20.0 200.0,200.0 20.0,20.0 20.0,200.0 200.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-034 - P/nsL.4-3-7: a point on a non-simple LineString's start point with crossing line segments\" do\n    a = \"POINT (110 110)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING (110 110, 110 200, 20 200, 110 110, 20 20, 200 20, 110 110, 200 200)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-034 - P/nsL.4-3-7: a point on a non-simple LineString's start point with crossing line segments (float)\" do\n    a = \"POINT(110.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(110.0 110.0,110.0 200.0,20.0 200.0,110.0 110.0,20.0 20.0,200.0 20.0,110.0 110.0,200.0 200.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-035 - P/nsL.4-3-8: a point on a non-simple LineString's start point with crossing line segments\" do\n    a = \"POINT (110 110)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING (110 110, 110 200, 20 200, 200 20, 200 110, 110 110, 200 200)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-035 - P/nsL.4-3-8: a point on a non-simple LineString's start point with crossing line segments (float)\" do\n    a = \"POINT(110.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(110.0 110.0,110.0 200.0,20.0 200.0,200.0 20.0,200.0 110.0,110.0 110.0,200.0 200.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-036 - P/nsL.5-3-1: a point on a non-simple LineString's end point with crossing line segments\" do\n    a = \"POINT (110 110)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING (200 200, 110 110, 20 20, 200 20, 110 110, 20 200, 110 200, 110 110)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-036 - P/nsL.5-3-1: a point on a non-simple LineString's end point with crossing line segments (float)\" do\n    a = \"POINT(110.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(200.0 200.0,110.0 110.0,20.0 20.0,200.0 20.0,110.0 110.0,20.0 200.0,110.0 200.0,110.0 110.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-037 - P/nsL.5-3-2: a point on a non-simple LineString's end point with crossing line segments\" do\n    a = \"POINT (110 110)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING (200 200, 20 20, 200 20, 110 110, 20 200, 110 200, 110 110)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-037 - P/nsL.5-3-2: a point on a non-simple LineString's end point with crossing line segments (float)\" do\n    a = \"POINT(110.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(200.0 200.0,20.0 20.0,200.0 20.0,110.0 110.0,20.0 200.0,110.0 200.0,110.0 110.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-038 - P/nsL.5-3-3: a point on a non-simple LineString's end point with crossing line segments\" do\n    a = \"POINT (110 110)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (200 200, 20 20, 200 20, 20 200, 110 200, 110 110)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-038 - P/nsL.5-3-3: a point on a non-simple LineString's end point with crossing line segments (float)\" do\n    a = \"POINT(110.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(200.0 200.0,20.0 20.0,200.0 20.0,20.0 200.0,110.0 200.0,110.0 110.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-039 - P/nsL.5-3-4: a point on a non-simple LineString's end point with crossing line segments\" do\n    a = \"POINT (110 110)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING (200 200, 110 110, 200 20, 20 20, 110 110, 20 200, 110 200, 110 110)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-039 - P/nsL.5-3-4: a point on a non-simple LineString's end point with crossing line segments (float)\" do\n    a = \"POINT(110.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(200.0 200.0,110.0 110.0,200.0 20.0,20.0 20.0,110.0 110.0,20.0 200.0,110.0 200.0,110.0 110.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-040 - P/nsL.5-3-5: a point on a non-simple LineString's end point with crossing line segments\" do\n    a = \"POINT (110 110)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING (200 200, 20 20, 20 110, 110 110, 20 200, 110 200, 110 110)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-040 - P/nsL.5-3-5: a point on a non-simple LineString's end point with crossing line segments (float)\" do\n    a = \"POINT(110.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(200.0 200.0,20.0 20.0,20.0 110.0,110.0 110.0,20.0 200.0,110.0 200.0,110.0 110.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-041 - P/nsL.6-3-1: a point on a non-simple LineString's start point with crossing line segments\" do\n    a = \"POINT (110 160)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING (110 160, 200 250, 110 250, 110 160, 110 110, 110 20, 20 20, 110 110)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-041 - P/nsL.6-3-1: a point on a non-simple LineString's start point with crossing line segments (float)\" do\n    a = \"POINT(110.0 160.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(110.0 160.0,200.0 250.0,110.0 250.0,110.0 160.0,110.0 110.0,110.0 20.0,20.0 20.0,110.0 110.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-042 - P/nsL.6-3-2: a point on a non-simple LineString's start point with crossing line segments\" do\n    a = \"POINT (110 160)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING (110 160, 200 250, 110 250, 110 110, 110 20, 20 20, 110 110)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-042 - P/nsL.6-3-2: a point on a non-simple LineString's start point with crossing line segments (float)\" do\n    a = \"POINT(110.0 160.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(110.0 160.0,200.0 250.0,110.0 250.0,110.0 110.0,110.0 20.0,20.0 20.0,110.0 110.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-043 - P/nsL.6-3-3: a point on a non-simple LineString's end point with crossing line segments\" do\n    a = \"POINT (110 110)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING (110 160, 200 250, 110 250, 110 160, 110 110, 110 20, 20 20, 110 110)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-043 - P/nsL.6-3-3: a point on a non-simple LineString's end point with crossing line segments (float)\" do\n    a = \"POINT(110.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(110.0 160.0,200.0 250.0,110.0 250.0,110.0 160.0,110.0 110.0,110.0 20.0,20.0 20.0,110.0 110.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-044 - P/nsL.6-3-4: a point on a non-simple LineString's end point with crossing line segments\" do\n    a = \"POINT (110 110)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING (110 160, 200 250, 110 250, 110 160, 110 20, 20 20, 110 110)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-044 - P/nsL.6-3-4: a point on a non-simple LineString's end point with crossing line segments (float)\" do\n    a = \"POINT(110.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(110.0 160.0,200.0 250.0,110.0 250.0,110.0 160.0,110.0 20.0,20.0 20.0,110.0 110.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-045 - P/nsL.7-5-1: a point on a closed non-simple LineString's closing point with crossing line segments\" do\n    a = \"POINT (110 110)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING (110 110, 200 200, 110 200, 110 110, 110 20, 20 20, 110 110)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-045 - P/nsL.7-5-1: a point on a closed non-simple LineString's closing point with crossing line segments (float)\" do\n    a = \"POINT(110.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(110.0 110.0,200.0 200.0,110.0 200.0,110.0 110.0,110.0 20.0,20.0 20.0,110.0 110.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-046 - P/nsL.7-5-2: a point on a closed non-simple LineString's closing point with crossing line segments\" do\n    a = \"POINT (110 110)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (110 110, 200 200, 110 200, 110 20, 20 20, 110 110)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-046 - P/nsL.7-5-2: a point on a closed non-simple LineString's closing point with crossing line segments (float)\" do\n    a = \"POINT(110.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(110.0 110.0,200.0 200.0,110.0 200.0,110.0 20.0,20.0 20.0,110.0 110.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-047 - P/nsL.7-5-3: a point on a closed non-simple LineString's interior at a non-vertex\" do\n    a = \"POINT (140 200)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING (110 110, 200 200, 110 200, 110 110, 110 20, 20 20, 110 110)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-047 - P/nsL.7-5-3: a point on a closed non-simple LineString's interior at a non-vertex (float)\" do\n    a = \"POINT(140.0 200.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(110.0 110.0,200.0 200.0,110.0 200.0,110.0 110.0,110.0 20.0,20.0 20.0,110.0 110.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-048 - P/nsL.7-5-4: a point on a closed non-simple LineString's interior at a vertex\" do\n    a = \"POINT (110 200)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING (110 110, 200 200, 110 200, 110 110, 110 20, 20 20, 110 110)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-048 - P/nsL.7-5-4: a point on a closed non-simple LineString's interior at a vertex (float)\" do\n    a = \"POINT(110.0 200.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(110.0 110.0,200.0 200.0,110.0 200.0,110.0 110.0,110.0 20.0,20.0 20.0,110.0 110.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-049 - P/nsL.8-5-1: a point on a closed non-simple LineString's closing point with crossing line segments\" do\n    a = \"POINT (110 110)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING (110 110, 200 200, 110 200, 110 110, 110 20, 200 20, 110 110)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-049 - P/nsL.8-5-1: a point on a closed non-simple LineString's closing point with crossing line segments (float)\" do\n    a = \"POINT(110.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(110.0 110.0,200.0 200.0,110.0 200.0,110.0 110.0,110.0 20.0,200.0 20.0,110.0 110.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-050 - P/nsL.8-5-2: a point on the interior (at a non-vertex) of a closed non-simple LineString\" do\n    a = \"POINT (140 200)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING (110 110, 200 200, 110 200, 110 110, 110 20, 200 20, 110 110)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-050 - P/nsL.8-5-2: a point on the interior (at a non-vertex) of a closed non-simple LineString (float)\" do\n    a = \"POINT(140.0 200.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(110.0 110.0,200.0 200.0,110.0 200.0,110.0 110.0,110.0 20.0,200.0 20.0,110.0 110.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-051 - P/nsL.8-5-3: a point on a closed non-simple LineString's interior at a vertex\" do\n    a = \"POINT (110 200)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING (110 110, 200 200, 110 200, 110 110, 110 20, 200 20, 110 110)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-051 - P/nsL.8-5-3: a point on a closed non-simple LineString's interior at a vertex (float)\" do\n    a = \"POINT(110.0 200.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(110.0 110.0,200.0 200.0,110.0 200.0,110.0 110.0,110.0 20.0,200.0 20.0,110.0 110.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-052 - P/nsL.9-3-1: a point on a non-simple LineString's start point with crossing line segments\" do\n    a = \"POINT (90 130)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (90 130, 20 130, 20 200, 90 130, 200 20, 20 20, 200 200)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-052 - P/nsL.9-3-1: a point on a non-simple LineString's start point with crossing line segments (float)\" do\n    a = \"POINT(90.0 130.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(90.0 130.0,20.0 130.0,20.0 200.0,90.0 130.0,200.0 20.0,20.0 20.0,200.0 200.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-053 - P/nsL.9-5-1: a point on a non-simple LineString's interior at a non-vertex with crossing line segments\" do\n    a = \"POINT (110 110)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (90 130, 20 130, 20 200, 90 130, 200 20, 20 20, 200 200)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-053 - P/nsL.9-5-1: a point on a non-simple LineString's interior at a non-vertex with crossing line segments (float)\" do\n    a = \"POINT(110.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(90.0 130.0,20.0 130.0,20.0 200.0,90.0 130.0,200.0 20.0,20.0 20.0,200.0 200.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-054 - P/nsL.10-3-1: a point on a non-simple LineString's start point with crossing line segments\" do\n    a = \"POINT (90 130)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (90 130, 20 130, 20 200, 200 20, 20 20, 200 200)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-054 - P/nsL.10-3-1: a point on a non-simple LineString's start point with crossing line segments (float)\" do\n    a = \"POINT(90.0 130.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(90.0 130.0,20.0 130.0,20.0 200.0,200.0 20.0,20.0 20.0,200.0 200.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-055 - P/nsL.10-5-1: a point on a non-simple LineString's interior at a non-vertex with crossing line segments\" do\n    a = \"POINT (110 110)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (90 130, 20 130, 20 200, 200 20, 20 20, 200 200)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-055 - P/nsL.10-5-1: a point on a non-simple LineString's interior at a non-vertex with crossing line segments (float)\" do\n    a = \"POINT(110.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(90.0 130.0,20.0 130.0,20.0 200.0,200.0 20.0,20.0 20.0,200.0 200.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-056 - P/nsL.11-3-1: a point on a closed non-simple LineString's end point with crossing line segments\" do\n    a = \"POINT (90 130)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (200 200, 20 20, 200 20, 90 130, 20 200, 20 130, 90 130)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-056 - P/nsL.11-3-1: a point on a closed non-simple LineString's end point with crossing line segments (float)\" do\n    a = \"POINT(90.0 130.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(200.0 200.0,20.0 20.0,200.0 20.0,90.0 130.0,20.0 200.0,20.0 130.0,90.0 130.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-057 - P/nsL.11-5-1: a point on a closed non-simple LineString's interior at a non-vertex with crossing line segments\" do\n    a = \"POINT (110 110)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (200 200, 20 20, 200 20, 90 130, 20 200, 20 130, 90 130)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-057 - P/nsL.11-5-1: a point on a closed non-simple LineString's interior at a non-vertex with crossing line segments (float)\" do\n    a = \"POINT(110.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(200.0 200.0,20.0 20.0,200.0 20.0,90.0 130.0,20.0 200.0,20.0 130.0,90.0 130.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-058 - P/nsL.12-3-1: a point on a closed non-simple LineString's end point with crossing line segments\" do\n    a = \"POINT (90 130)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (200 200, 20 20, 200 20, 20 200, 20 130, 90 130)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-058 - P/nsL.12-3-1: a point on a closed non-simple LineString's end point with crossing line segments (float)\" do\n    a = \"POINT(90.0 130.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(200.0 200.0,20.0 20.0,200.0 20.0,20.0 200.0,20.0 130.0,90.0 130.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-059 - P/nsL.12-5-1: a point on a closed non-simple LineString's interior at a non-vertex with crossing line segments\" do\n    a = \"POINT (110 110)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (200 200, 20 20, 200 20, 20 200, 20 130, 90 130)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-059 - P/nsL.12-5-1: a point on a closed non-simple LineString's interior at a non-vertex with crossing line segments (float)\" do\n    a = \"POINT(110.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(200.0 200.0,20.0 20.0,200.0 20.0,20.0 200.0,20.0 130.0,90.0 130.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-060 - P/nsL.13-5-1: a point on a closed non-simple LineString's closing point with crossing line segments\" do\n    a = \"POINT (110 110)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING (110 110, 20 130, 20 200, 110 110, 200 20, 20 20, 110 110, 200 200, 200 130, 110 110)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-060 - P/nsL.13-5-1: a point on a closed non-simple LineString's closing point with crossing line segments (float)\" do\n    a = \"POINT(110.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(110.0 110.0,20.0 130.0,20.0 200.0,110.0 110.0,200.0 20.0,20.0 20.0,110.0 110.0,200.0 200.0,200.0 130.0,110.0 110.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-061 - P/nsL.13-5-2: a point on a closed non-simple LineString's closing point with crossing line segments\" do\n    a = \"POINT (110 110)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING (110 110, 20 130, 20 200, 200 20, 20 20, 200 200, 200 130, 110 110)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-061 - P/nsL.13-5-2: a point on a closed non-simple LineString's closing point with crossing line segments (float)\" do\n    a = \"POINT(110.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(110.0 110.0,20.0 130.0,20.0 200.0,200.0 20.0,20.0 20.0,200.0 200.0,200.0 130.0,110.0 110.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-062 - P/nsL.14-5-1: a point on a closed non-simple LineString's closing point with crossing line segments\" do\n    a = \"POINT (110 110)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING (110 110, 80 200, 20 200, 110 110, 200 20, 20 20, 110 110, 200 200, 140 200, 110 110)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-062 - P/nsL.14-5-1: a point on a closed non-simple LineString's closing point with crossing line segments (float)\" do\n    a = \"POINT(110.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(110.0 110.0,80.0 200.0,20.0 200.0,110.0 110.0,200.0 20.0,20.0 20.0,110.0 110.0,200.0 200.0,140.0 200.0,110.0 110.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-063 - P/nsL.14-5-2: a point on a closed non-simple LineString's closing point with crossing line segments\" do\n    a = \"POINT (110 110)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING (110 110, 80 200, 20 200, 200 20, 20 20, 200 200, 140 200, 110 110)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-063 - P/nsL.14-5-2: a point on a closed non-simple LineString's closing point with crossing line segments (float)\" do\n    a = \"POINT(110.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(110.0 110.0,80.0 200.0,20.0 200.0,200.0 20.0,20.0 20.0,200.0 200.0,140.0 200.0,110.0 110.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-064 - P/nsL.15-5-1: a point on a closed non-simple LineString's interior at a non-vertex with crossing line segments\" do\n    a = \"POINT (110 110)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (200 200, 20 20, 200 20, 20 200, 200 200)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-064 - P/nsL.15-5-1: a point on a closed non-simple LineString's interior at a non-vertex with crossing line segments (float)\" do\n    a = \"POINT(110.0 110.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(200.0 200.0,20.0 20.0,200.0 20.0,20.0 200.0,200.0 200.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-065 - P/nsL.15-5-2: a point on a closed non-simple LineString's interior at a vertex with crossing line segments\" do\n    a = \"POINT (110 110)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING (200 200, 110 110, 20 20, 200 20, 110 110, 20 200, 200 200)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-065 - P/nsL.15-5-2: a point on a closed non-simple LineString's interior at a vertex with crossing line segments (float)\" do\n    a = \"POINT(110.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(200.0 200.0,110.0 110.0,20.0 20.0,200.0 20.0,110.0 110.0,20.0 200.0,200.0 200.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-066 - P/nsL.15-5-3: a point on a closed non-simple LineString's interior at a vertex with crossing line segments\" do\n    a = \"POINT (110 110)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING (200 200, 110 110, 200 20, 20 20, 110 110, 20 200, 200 200)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-066 - P/nsL.15-5-3: a point on a closed non-simple LineString's interior at a vertex with crossing line segments (float)\" do\n    a = \"POINT(110.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(200.0 200.0,110.0 110.0,200.0 20.0,20.0 20.0,110.0 110.0,20.0 200.0,200.0 200.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-067 - P/nsL.16-5-1: a point on a closed non-simple LineString's closing point with crossing line segments\" do\n    a = \"POINT (90 130)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING (90 130, 20 130, 20 200, 90 130, 110 110, 200 20, 20 20, 110 110, 200 200, 90 130)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-067 - P/nsL.16-5-1: a point on a closed non-simple LineString's closing point with crossing line segments (float)\" do\n    a = \"POINT(90.0 130.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(90.0 130.0,20.0 130.0,20.0 200.0,90.0 130.0,110.0 110.0,200.0 20.0,20.0 20.0,110.0 110.0,200.0 200.0,90.0 130.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-068 - P/nsL.16-5-2: a point on a closed non-simple LineString's closing point with crossing line segments\" do\n    a = \"POINT (90 130)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING (90 130, 20 130, 20 200, 110 110, 200 20, 20 20, 110 110, 200 200, 90 130)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-068 - P/nsL.16-5-2: a point on a closed non-simple LineString's closing point with crossing line segments (float)\" do\n    a = \"POINT(90.0 130.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(90.0 130.0,20.0 130.0,20.0 200.0,110.0 110.0,200.0 20.0,20.0 20.0,110.0 110.0,200.0 200.0,90.0 130.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-069 - P/nsL.17-5-1: a point on a closed non-simple LineString's closing point with crossing line segments\" do\n    a = \"POINT (90 130)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING (90 130, 90 200, 20 200, 90 130, 110 110, 200 20, 20 20, 110 110, 200 200, 90 130)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-069 - P/nsL.17-5-1: a point on a closed non-simple LineString's closing point with crossing line segments (float)\" do\n    a = \"POINT(90.0 130.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(90.0 130.0,90.0 200.0,20.0 200.0,90.0 130.0,110.0 110.0,200.0 20.0,20.0 20.0,110.0 110.0,200.0 200.0,90.0 130.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-070 - P/nsL.17-5-2: a point on a closed non-simple LineString's closing point with crossing line segments\" do\n    a = \"POINT (90 130)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (90 130, 90 200, 20 200, 200 20, 20 20, 200 200, 90 130)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-070 - P/nsL.17-5-2: a point on a closed non-simple LineString's closing point with crossing line segments (float)\" do\n    a = \"POINT(90.0 130.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(90.0 130.0,90.0 200.0,20.0 200.0,200.0 20.0,20.0 20.0,200.0 200.0,90.0 130.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-071 - P/nsL.17-5-3: a point on a closed non-simple LineString's closing point with crossing line segments\" do\n    a = \"POINT (90 130)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING (90 130, 90 200, 20 200, 110 110, 200 20, 20 20, 110 110, 200 200, 90 130)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-071 - P/nsL.17-5-3: a point on a closed non-simple LineString's closing point with crossing line segments (float)\" do\n    a = \"POINT(90.0 130.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(90.0 130.0,90.0 200.0,20.0 200.0,110.0 110.0,200.0 20.0,20.0 20.0,110.0 110.0,200.0 200.0,90.0 130.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-072 - P/nsL.17-5-4: a point on a closed non-simple LineString's closing point with crossing line segments\" do\n    a = \"POINT (90 130)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (90 130, 90 200, 20 200, 200 20, 20 20, 200 200, 90 130)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-072 - P/nsL.17-5-4: a point on a closed non-simple LineString's closing point with crossing line segments (float)\" do\n    a = \"POINT(90.0 130.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(90.0 130.0,90.0 200.0,20.0 200.0,200.0 20.0,20.0 20.0,200.0 200.0,90.0 130.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-073 - P/nsL.17-5-5: a point on a closed non-simple LineString's interior at a non-vertex with crossing line segments\" do\n    a = \"POINT (110 110)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (90 130, 90 200, 20 200, 200 20, 20 20, 200 200, 90 130)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-073 - P/nsL.17-5-5: a point on a closed non-simple LineString's interior at a non-vertex with crossing line segments (float)\" do\n    a = \"POINT(110.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(90.0 130.0,90.0 200.0,20.0 200.0,200.0 20.0,20.0 20.0,200.0 200.0,90.0 130.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-074 - P/nsL.18-5-1: a point on a non-simple LineString's start point with both crossing and overlapping line segments\" do\n    a = \"POINT (110 200)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING (110 200, 110 110, 20 20, 200 20, 110 110, 110 200, 200 200)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-074 - P/nsL.18-5-1: a point on a non-simple LineString's start point with both crossing and overlapping line segments (float)\" do\n    a = \"POINT(110.0 200.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(110.0 200.0,110.0 110.0,20.0 20.0,200.0 20.0,110.0 110.0,110.0 200.0,200.0 200.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-075 - P/nsL.18-5-2: a point on a non-simple LineString's interior at a non-vertex with overlapping line segments\" do\n    a = \"POINT (110 150)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING (110 200, 110 110, 20 20, 200 20, 110 110, 110 200, 200 200)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-075 - P/nsL.18-5-2: a point on a non-simple LineString's interior at a non-vertex with overlapping line segments (float)\" do\n    a = \"POINT(110.0 150.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(110.0 200.0,110.0 110.0,20.0 20.0,200.0 20.0,110.0 110.0,110.0 200.0,200.0 200.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-076 - P/nsL.18-5-3: a point on a non-simple LineString's interior at a vertex with both crossing and overlapping line segments\" do\n    a = \"POINT (110 110)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING (110 200, 110 110, 20 20, 200 20, 110 110, 110 200, 200 200)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-076 - P/nsL.18-5-3: a point on a non-simple LineString's interior at a vertex with both crossing and overlapping line segments (float)\" do\n    a = \"POINT(110.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(110.0 200.0,110.0 110.0,20.0 20.0,200.0 20.0,110.0 110.0,110.0 200.0,200.0 200.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-077 - P/nsL.19-5-1: a point on a non-simple LineString's closing point with overlapping line segments\" do\n    a = \"POINT (110 200)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (110 200, 110 110, 20 20, 200 20, 110 110, 110 200)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-077 - P/nsL.19-5-1: a point on a non-simple LineString's closing point with overlapping line segments (float)\" do\n    a = \"POINT(110.0 200.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(110.0 200.0,110.0 110.0,20.0 20.0,200.0 20.0,110.0 110.0,110.0 200.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-078 - P/nsL.19-5-2: a point on a non-simple LineString's interior at a non-vertex overlapping line segments\" do\n    a = \"POINT (110 150)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (110 200, 110 110, 20 20, 200 20, 110 110, 110 200)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-078 - P/nsL.19-5-2: a point on a non-simple LineString's interior at a non-vertex overlapping line segments (float)\" do\n    a = \"POINT(110.0 150.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(110.0 200.0,110.0 110.0,20.0 20.0,200.0 20.0,110.0 110.0,110.0 200.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-079 - P/nsL.19-5-3: a point on a non-simple LineString interior at a vertex with both crossing and overlapping line segments\" do\n    a = \"POINT (110 110)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (110 200, 110 110, 20 20, 200 20, 110 110, 110 200)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-079 - P/nsL.19-5-3: a point on a non-simple LineString interior at a vertex with both crossing and overlapping line segments (float)\" do\n    a = \"POINT(110.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(110.0 200.0,110.0 110.0,20.0 20.0,200.0 20.0,110.0 110.0,110.0 200.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-080 - P/nsL.20-5-1: a point on a non-simple LineString's interior at a non-vertex with overlapping line segments\" do\n    a = \"POINT (110 150)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING (20 200, 110 200, 110 110, 20 20, 200 20, 110 110, 110 200, 200 200)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-080 - P/nsL.20-5-1: a point on a non-simple LineString's interior at a non-vertex with overlapping line segments (float)\" do\n    a = \"POINT(110.0 150.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(20.0 200.0,110.0 200.0,110.0 110.0,20.0 20.0,200.0 20.0,110.0 110.0,110.0 200.0,200.0 200.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-081 - P/nsL.20-5-2: a point on a non-simple LineString's interior at a vertex with both crossing and overlapping line segments\" do\n    a = \"POINT (110 110)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING (20 200, 110 200, 110 110, 20 20, 200 20, 110 110, 110 200, 200 200)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-081 - P/nsL.20-5-2: a point on a non-simple LineString's interior at a vertex with both crossing and overlapping line segments (float)\" do\n    a = \"POINT(110.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(20.0 200.0,110.0 200.0,110.0 110.0,20.0 20.0,200.0 20.0,110.0 110.0,110.0 200.0,200.0 200.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-082 - P/nsl.20-5-3: a point on a non-simple LineString's interior at a vertex with both crossing and overlapping line segments\" do\n    a = \"POINT (110 200)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING (20 200, 110 200, 110 110, 20 20, 200 20, 110 110, 110 200, 200 200)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-082 - P/nsl.20-5-3: a point on a non-simple LineString's interior at a vertex with both crossing and overlapping line segments (float)\" do\n    a = \"POINT(110.0 200.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(20.0 200.0,110.0 200.0,110.0 110.0,20.0 20.0,200.0 20.0,110.0 110.0,110.0 200.0,200.0 200.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-083 - mP/L-2-1: MultiPoint and a line disjoint (points on one side of the line)\" do\n    a = \"MULTIPOINT (50 250, 90 220, 130 190)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (90 80, 160 150, 300 150, 340 150, 340 240)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-083 - mP/L-2-1: MultiPoint and a line disjoint (points on one side of the line) (float)\" do\n    a = \"MULTIPOINT(50.0 250.0,90.0 220.0,130.0 190.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(90.0 80.0,160.0 150.0,300.0 150.0,340.0 150.0,340.0 240.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-084 - mP/L-2-2: MultiPoint and a line disjoint (points over the line but no intersection)\" do\n    a = \"MULTIPOINT (180 180, 230 130, 280 80)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (90 80, 160 150, 300 150, 340 150, 340 240)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-084 - mP/L-2-2: MultiPoint and a line disjoint (points over the line but no intersection) (float)\" do\n    a = \"MULTIPOINT(180.0 180.0,230.0 130.0,280.0 80.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(90.0 80.0,160.0 150.0,300.0 150.0,340.0 150.0,340.0 240.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-085 - mP/L-3-1: one of the points intersecting the start point of a line\" do\n    a = \"MULTIPOINT (50 120, 90 80, 130 40)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (90 80, 160 150, 300 150, 340 150, 340 240)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-085 - mP/L-3-1: one of the points intersecting the start point of a line (float)\" do\n    a = \"MULTIPOINT(50.0 120.0,90.0 80.0,130.0 40.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(90.0 80.0,160.0 150.0,300.0 150.0,340.0 150.0,340.0 240.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-086 - mP/L-3-2: one of the points intersecting the end point of a line\" do\n    a = \"MULTIPOINT (300 280, 340 240, 380 200)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (90 80, 160 150, 300 150, 340 150, 340 240)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-086 - mP/L-3-2: one of the points intersecting the end point of a line (float)\" do\n    a = \"MULTIPOINT(300.0 280.0,340.0 240.0,380.0 200.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(90.0 80.0,160.0 150.0,300.0 150.0,340.0 150.0,340.0 240.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-087 - mP/L-4-1: one of the points intersecting the interior of a line at a non-vertex (points on one side of the line)\" do\n    a = \"MULTIPOINT (230 150, 260 120, 290 90)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (90 80, 160 150, 300 150, 340 150, 340 240)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-087 - mP/L-4-1: one of the points intersecting the interior of a line at a non-vertex (points on one side of the line) (float)\" do\n    a = \"MULTIPOINT(230.0 150.0,260.0 120.0,290.0 90.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(90.0 80.0,160.0 150.0,300.0 150.0,340.0 150.0,340.0 240.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-088 - mP/L-4-2: one of the points intersecting the interior of a line at a non-vertex (points over the line)\" do\n    a = \"MULTIPOINT (200 190, 240 150, 270 110)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (90 80, 160 150, 300 150, 340 150, 340 240)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-088 - mP/L-4-2: one of the points intersecting the interior of a line at a non-vertex (points over the line) (float)\" do\n    a = \"MULTIPOINT(200.0 190.0,240.0 150.0,270.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(90.0 80.0,160.0 150.0,300.0 150.0,340.0 150.0,340.0 240.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-089 - mP/L-4-3: one of the points intersecting the interior of a line at a vertex (points on one side of the line)\" do\n    a = \"MULTIPOINT (160 150, 190 120, 220 90)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (90 80, 160 150, 300 150, 340 150, 340 240)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-089 - mP/L-4-3: one of the points intersecting the interior of a line at a vertex (points on one side of the line) (float)\" do\n    a = \"MULTIPOINT(160.0 150.0,190.0 120.0,220.0 90.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(90.0 80.0,160.0 150.0,300.0 150.0,340.0 150.0,340.0 240.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-090 - mP/L-4-4: one of the points intersecting the interior of a line at a vertex (points over the line)\" do\n    a = \"MULTIPOINT (120 190, 160 150, 200 110)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (90 80, 160 150, 300 150, 340 150, 340 240)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-090 - mP/L-4-4: one of the points intersecting the interior of a line at a vertex (points over the line) (float)\" do\n    a = \"MULTIPOINT(120.0 190.0,160.0 150.0,200.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(90.0 80.0,160.0 150.0,300.0 150.0,340.0 150.0,340.0 240.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-091 - mP/L-5-1: all the points on a line\" do\n    a = \"MULTIPOINT (90 80, 160 150, 340 240)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (90 80, 160 150, 300 150, 340 150, 340 240)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-091 - mP/L-5-1: all the points on a line (float)\" do\n    a = \"MULTIPOINT(90.0 80.0,160.0 150.0,340.0 240.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(90.0 80.0,160.0 150.0,300.0 150.0,340.0 150.0,340.0 240.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-092 - mP/L-5-2: all the points on a line\" do\n    a = \"MULTIPOINT (90 80, 160 150, 300 150)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (90 80, 160 150, 300 150, 340 150, 340 240)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-092 - mP/L-5-2: all the points on a line (float)\" do\n    a = \"MULTIPOINT(90.0 80.0,160.0 150.0,300.0 150.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(90.0 80.0,160.0 150.0,300.0 150.0,340.0 150.0,340.0 240.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-093 - mP/L-5-3: all the points on a line\" do\n    a = \"MULTIPOINT (90 80, 160 150, 240 150)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (90 80, 160 150, 300 150, 340 150, 340 240)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-093 - mP/L-5-3: all the points on a line (float)\" do\n    a = \"MULTIPOINT(90.0 80.0,160.0 150.0,240.0 150.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(90.0 80.0,160.0 150.0,300.0 150.0,340.0 150.0,340.0 240.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-094 - mP/L-5-4: all the points on a line\" do\n    a = \"MULTIPOINT (90 80, 130 120, 210 150)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (90 80, 160 150, 300 150, 340 150, 340 240)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-094 - mP/L-5-4: all the points on a line (float)\" do\n    a = \"MULTIPOINT(90.0 80.0,130.0 120.0,210.0 150.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(90.0 80.0,160.0 150.0,300.0 150.0,340.0 150.0,340.0 240.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-095 - mP/L-5-5: all the points on a line\" do\n    a = \"MULTIPOINT (130 120, 210 150, 340 200)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (90 80, 160 150, 300 150, 340 150, 340 240)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-095 - mP/L-5-5: all the points on a line (float)\" do\n    a = \"MULTIPOINT(130.0 120.0,210.0 150.0,340.0 200.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(90.0 80.0,160.0 150.0,300.0 150.0,340.0 150.0,340.0 240.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-096 - mP/L-5-6: all the points on a line\" do\n    a = \"MULTIPOINT (160 150, 240 150, 340 210)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (90 80, 160 150, 300 150, 340 150, 340 240)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-096 - mP/L-5-6: all the points on a line (float)\" do\n    a = \"MULTIPOINT(160.0 150.0,240.0 150.0,340.0 210.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(90.0 80.0,160.0 150.0,300.0 150.0,340.0 150.0,340.0 240.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-097 - mP/L-5-7: all the points on a line\" do\n    a = \"MULTIPOINT (160 150, 300 150, 340 150)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (90 80, 160 150, 300 150, 340 150, 340 240)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-097 - mP/L-5-7: all the points on a line (float)\" do\n    a = \"MULTIPOINT(160.0 150.0,300.0 150.0,340.0 150.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(90.0 80.0,160.0 150.0,300.0 150.0,340.0 150.0,340.0 240.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-098 - mP/L-5-8: all the points on a line\" do\n    a = \"MULTIPOINT (160 150, 240 150, 340 240)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (90 80, 160 150, 300 150, 340 150, 340 240)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"02-098 - mP/L-5-8: all the points on a line (float)\" do\n    a = \"MULTIPOINT(160.0 150.0,240.0 150.0,340.0 240.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"LINESTRING(90.0 80.0,160.0 150.0,300.0 150.0,340.0 150.0,340.0 240.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\nend\n"
  },
  {
    "path": "test/validation/point_line_b_test.exs",
    "content": "defmodule Intersect.Validation.PointLineBTest do\n  use ExUnit.Case\n\n  @tag :validation\n  test \"10-001 - mPL - points in I and E of line\" do\n    a = \"MULTIPOINT (40 90, 20 20, 70 70)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (20 20, 100 100)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"10-001 - mPL - points in I and E of line (float)\" do\n    a = \"MULTIPOINT(40.0 90.0,20.0 20.0,70.0 70.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(20.0 20.0,100.0 100.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"10-002 - mPL - points in I and E of line, line self-intersecting\" do\n    a = \"MULTIPOINT (40 90, 20 20, 70 70)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING (20 20, 110 110, 170 50, 130 10, 70 70)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"10-002 - mPL - points in I and E of line, line self-intersecting (float)\" do\n    a = \"MULTIPOINT(40.0 90.0,20.0 20.0,70.0 70.0)\" |> Geo.WKT.decode!()\n    b = \"LINESTRING(20.0 20.0,110.0 110.0,170.0 50.0,130.0 10.0,70.0 70.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"10-003 - mPmL - points in I, B and E of lines, lines overlap, points overlap\" do\n    a =\n      \"MULTILINESTRING ((100 320, 100 220),(100 180, 200 180),(220 180, 220 320),(220 320, 160 320),(100 320, 100 220),(100 180, 200 180),(220 180, 220 320),(220 320, 160 320),(100 220, 100 320))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOINT (100 320, 100 260, 100 220, 100 200, 100 180, 120 180, 200 180, 220 180, 220 260, 220 320, 200 320, 160 320, 140 320, 120 320, 100 320, 100 260, 100 220, 100 200, 100 180, 120 180, 200 180, 220 180, 220 260, 220 320, 200 320, 160 320, 140 320, 120 320)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"10-003 - mPmL - points in I, B and E of lines, lines overlap, points overlap (float)\" do\n    a =\n      \"MULTILINESTRING((100.0 320.0,100.0 220.0),(100.0 180.0,200.0 180.0),(220.0 180.0,220.0 320.0),(220.0 320.0,160.0 320.0),(100.0 320.0,100.0 220.0),(100.0 180.0,200.0 180.0),(220.0 180.0,220.0 320.0),(220.0 320.0,160.0 320.0),(100.0 220.0,100.0 320.0))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOINT(100.0 320.0,100.0 260.0,100.0 220.0,100.0 200.0,100.0 180.0,120.0 180.0,200.0 180.0,220.0 180.0,220.0 260.0,220.0 320.0,200.0 320.0,160.0 320.0,140.0 320.0,120.0 320.0,100.0 320.0,100.0 260.0,100.0 220.0,100.0 200.0,100.0 180.0,120.0 180.0,200.0 180.0,220.0 180.0,220.0 260.0,220.0 320.0,200.0 320.0,160.0 320.0,140.0 320.0,120.0 320.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"10-004 - mPmL - points in I, B and E of lines, lines overlap, points overlap, x &lt;0, y &lt; 0\" do\n    a =\n      \"MULTILINESTRING ((-500 -140, -500 -280, -320 -280, -320 -140, -500 -140, -500 -340),(-500 -140, -320 -140, -500 -140, -320 -140, -500 -140))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOINT (-560 -180, -420 -180, -500 -220, -500 -340, -500 -280, -500 -140, -320 -140, -420 -140, -320 -180, -280 -140, -320 -120, -560 -180, -420 -180, -500 -220, -500 -340, -500 -280, -500 -140, -320 -140, -420 -140, -320 -180, -280 -140, -320 -120)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"10-004 - mPmL - points in I, B and E of lines, lines overlap, points overlap, x &lt;0, y &lt; 0 (float)\" do\n    a =\n      \"MULTILINESTRING((-500.0 -140.0,-500.0 -280.0,-320.0 -280.0,-320.0 -140.0,-500.0 -140.0,-500.0 -340.0),(-500.0 -140.0,-320.0 -140.0,-500.0 -140.0,-320.0 -140.0,-500.0 -140.0))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOINT(-560.0 -180.0,-420.0 -180.0,-500.0 -220.0,-500.0 -340.0,-500.0 -280.0,-500.0 -140.0,-320.0 -140.0,-420.0 -140.0,-320.0 -180.0,-280.0 -140.0,-320.0 -120.0,-560.0 -180.0,-420.0 -180.0,-500.0 -220.0,-500.0 -340.0,-500.0 -280.0,-500.0 -140.0,-320.0 -140.0,-420.0 -140.0,-320.0 -180.0,-280.0 -140.0,-320.0 -120.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"10-006 - mPmL - points in I, B and E of lines, lines overlap, points overlap\" do\n    a =\n      \"MULTILINESTRING ((100 320, 100 220),(100 180, 200 180),(220 180, 220 320),(220 320, 160 320),(100 320, 100 220),(100 180, 200 180),(220 180, 220 320),(220 320, 160 320),(100 220, 100 320))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOINT (100 320, 100 260, 100 220, 100 200, 100 180, 120 180, 200 180, 220 180, 220 260, 220 320, 200 320, 160 320, 140 320, 120 320, 100 320, 100 260, 100 220, 100 200, 100 180, 120 180, 200 180, 220 180, 220 260, 220 320, 200 320, 160 320, 140 320, 120 320)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"10-006 - mPmL - points in I, B and E of lines, lines overlap, points overlap (float)\" do\n    a =\n      \"MULTILINESTRING((100.0 320.0,100.0 220.0),(100.0 180.0,200.0 180.0),(220.0 180.0,220.0 320.0),(220.0 320.0,160.0 320.0),(100.0 320.0,100.0 220.0),(100.0 180.0,200.0 180.0),(220.0 180.0,220.0 320.0),(220.0 320.0,160.0 320.0),(100.0 220.0,100.0 320.0))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOINT(100.0 320.0,100.0 260.0,100.0 220.0,100.0 200.0,100.0 180.0,120.0 180.0,200.0 180.0,220.0 180.0,220.0 260.0,220.0 320.0,200.0 320.0,160.0 320.0,140.0 320.0,120.0 320.0,100.0 320.0,100.0 260.0,100.0 220.0,100.0 200.0,100.0 180.0,120.0 180.0,200.0 180.0,220.0 180.0,220.0 260.0,220.0 320.0,200.0 320.0,160.0 320.0,140.0 320.0,120.0 320.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\nend\n"
  },
  {
    "path": "test/validation/point_line_precision_test.exs",
    "content": "defmodule Intersect.Validation.PointLinePrecisionTest do\n  use ExUnit.Case\n\n  @tag :validation\n  test \"15-001 - PP - Point just off line. Causes non-robust algorithms to fail.\" do\n    a = \"LINESTRING (-123456789 -40, 381039468754763 123456789)\" |> Geo.WKT.decode!()\n    b = \"POINT (0 0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  @tag :skip\n  test \"15-001 - PP - Point just off line. Causes non-robust algorithms to fail. (float)\" do\n    a = \"LINESTRING(-123456789.0 -40.0,381039468754763.0 123456789.0)\" |> Geo.WKT.decode!()\n    b = \"POINT(0.0 0.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\nend\n"
  },
  {
    "path": "test/validation/point_point_a_test.exs",
    "content": "defmodule Intersect.Validation.PointPointATest do\n  use ExUnit.Case\n\n  @tag :validation\n  test \"01-001 - P/P: same point\" do\n    a = \"POINT (20 20)\" |> Geo.WKT.decode!()\n    b = \"POINT (20 20)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"01-001 - P/P: same point (float)\" do\n    a = \"POINT(20.0 20.0)\" |> Geo.WKT.decode!()\n    b = \"POINT(20.0 20.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"01-002 - P/P: different point\" do\n    a = \"POINT (20 20)\" |> Geo.WKT.decode!()\n    b = \"POINT (40 60)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"01-002 - P/P: different point (float)\" do\n    a = \"POINT(20.0 20.0)\" |> Geo.WKT.decode!()\n    b = \"POINT(40.0 60.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"01-003 - P/mP: different points\" do\n    a = \"POINT (40 40)\" |> Geo.WKT.decode!()\n    b = \"MULTIPOINT (20 20, 80 80, 20 120)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"01-003 - P/mP: different points (float)\" do\n    a = \"POINT(40.0 40.0)\" |> Geo.WKT.decode!()\n    b = \"MULTIPOINT(20.0 20.0,80.0 80.0,20.0 120.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"01-004 - P/mP: point A within one of B points\" do\n    a = \"POINT (20 20)\" |> Geo.WKT.decode!()\n    b = \"MULTIPOINT (20 20, 80 80, 20 120)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"01-004 - P/mP: point A within one of B points (float)\" do\n    a = \"POINT(20.0 20.0)\" |> Geo.WKT.decode!()\n    b = \"MULTIPOINT(20.0 20.0,80.0 80.0,20.0 120.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"01-005 - mP/mP-1-1: same points\" do\n    a = \"MULTIPOINT (40 40, 80 60, 120 100)\" |> Geo.WKT.decode!()\n    b = \"MULTIPOINT (40 40, 80 60, 120 100)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"01-005 - mP/mP-1-1: same points (float)\" do\n    a = \"MULTIPOINT(40.0 40.0,80.0 60.0,120.0 100.0)\" |> Geo.WKT.decode!()\n    b = \"MULTIPOINT(40.0 40.0,80.0 60.0,120.0 100.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"01-006 - mP/mP-1-2: same but different sequence of points\" do\n    a = \"MULTIPOINT (40 40, 80 60, 120 100)\" |> Geo.WKT.decode!()\n    b = \"MULTIPOINT (40 40, 120 100, 80 60)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"01-006 - mP/mP-1-2: same but different sequence of points (float)\" do\n    a = \"MULTIPOINT(40.0 40.0,80.0 60.0,120.0 100.0)\" |> Geo.WKT.decode!()\n    b = \"MULTIPOINT(40.0 40.0,120.0 100.0,80.0 60.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"01-007 - mP/mP-2: different points\" do\n    a = \"MULTIPOINT (40 40, 60 100, 100 60, 120 120)\" |> Geo.WKT.decode!()\n    b = \"MULTIPOINT (20 120, 60 60, 100 100, 140 40)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"01-007 - mP/mP-2: different points (float)\" do\n    a = \"MULTIPOINT(40.0 40.0,60.0 100.0,100.0 60.0,120.0 120.0)\" |> Geo.WKT.decode!()\n    b = \"MULTIPOINT(20.0 120.0,60.0 60.0,100.0 100.0,140.0 40.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"01-008 - mP/mP-5-1: same points\" do\n    a = \"MULTIPOINT (20 20, 80 70, 140 120, 200 170)\" |> Geo.WKT.decode!()\n    b = \"MULTIPOINT (20 20, 80 70, 140 120, 200 170)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"01-008 - mP/mP-5-1: same points (float)\" do\n    a = \"MULTIPOINT(20.0 20.0,80.0 70.0,140.0 120.0,200.0 170.0)\" |> Geo.WKT.decode!()\n    b = \"MULTIPOINT(20.0 20.0,80.0 70.0,140.0 120.0,200.0 170.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"01-009 - mP/mP-5-2: same points but different sequence\" do\n    a = \"MULTIPOINT (20 20, 140 120, 80 70, 200 170)\" |> Geo.WKT.decode!()\n    b = \"MULTIPOINT (80 70, 20 20, 200 170, 140 120)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"01-009 - mP/mP-5-2: same points but different sequence (float)\" do\n    a = \"MULTIPOINT(20.0 20.0,140.0 120.0,80.0 70.0,200.0 170.0)\" |> Geo.WKT.decode!()\n    b = \"MULTIPOINT(80.0 70.0,20.0 20.0,200.0 170.0,140.0 120.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"01-010 - mP/mP-5-3: some points same\" do\n    a = \"MULTIPOINT (20 20, 80 70, 140 120, 200 170)\" |> Geo.WKT.decode!()\n    b = \"MULTIPOINT (80 70, 140 120)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"01-010 - mP/mP-5-3: some points same (float)\" do\n    a = \"MULTIPOINT(20.0 20.0,80.0 70.0,140.0 120.0,200.0 170.0)\" |> Geo.WKT.decode!()\n    b = \"MULTIPOINT(80.0 70.0,140.0 120.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"01-011 - mP/mP-5-4: some points same, in a different sequence\" do\n    a = \"MULTIPOINT (80 70, 20 20, 200 170, 140 120)\" |> Geo.WKT.decode!()\n    b = \"MULTIPOINT (140 120, 80 70)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"01-011 - mP/mP-5-4: some points same, in a different sequence (float)\" do\n    a = \"MULTIPOINT(80.0 70.0,20.0 20.0,200.0 170.0,140.0 120.0)\" |> Geo.WKT.decode!()\n    b = \"MULTIPOINT(140.0 120.0,80.0 70.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"01-012 - mP/mP-6-1: some points same, some different\" do\n    a = \"MULTIPOINT (80 70, 20 20, 200 170, 140 120)\" |> Geo.WKT.decode!()\n    b = \"MULTIPOINT (80 170, 140 120, 200 80)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"01-012 - mP/mP-6-1: some points same, some different (float)\" do\n    a = \"MULTIPOINT(80.0 70.0,20.0 20.0,200.0 170.0,140.0 120.0)\" |> Geo.WKT.decode!()\n    b = \"MULTIPOINT(80.0 170.0,140.0 120.0,200.0 80.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"01-013 - mP/mP-6-2: dim(0){A.4P1.Int = B.4P4.Int}, dim(0){A.4P4.Int = B.4P2.Int}\" do\n    a = \"MULTIPOINT (80 70, 20 20, 200 170, 140 120)\" |> Geo.WKT.decode!()\n    b = \"MULTIPOINT (80 170, 140 120, 200 80, 80 70)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"01-013 - mP/mP-6-2: dim(0){A.4P1.Int = B.4P4.Int}, dim(0){A.4P4.Int = B.4P2.Int} (float)\" do\n    a = \"MULTIPOINT(80.0 70.0,20.0 20.0,200.0 170.0,140.0 120.0)\" |> Geo.WKT.decode!()\n    b = \"MULTIPOINT(80.0 170.0,140.0 120.0,200.0 80.0,80.0 70.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\nend\n"
  },
  {
    "path": "test/validation/point_point_b_test.exs",
    "content": "defmodule Intersect.Validation.PointPointBTest do\n  use ExUnit.Case\n\n  @tag :validation\n  test \"09-001 - PP - point contained in both A and B\" do\n    a = \"POINT (100 100)\" |> Geo.WKT.decode!()\n    b = \"POINT (100 100)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"09-001 - PP - point contained in both A and B (float)\" do\n    a = \"POINT(100.0 100.0)\" |> Geo.WKT.decode!()\n    b = \"POINT(100.0 100.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"09-002 - PP - A different from B\" do\n    a = \"POINT (100 100)\" |> Geo.WKT.decode!()\n    b = \"POINT (200 200)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"09-002 - PP - A different from B (float)\" do\n    a = \"POINT(100.0 100.0)\" |> Geo.WKT.decode!()\n    b = \"POINT(200.0 200.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"09-003 - PmP - point in A contained in B\" do\n    a = \"POINT (100 100)\" |> Geo.WKT.decode!()\n    b = \"MULTIPOINT (100 100, 200 200)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"09-003 - PmP - point in A contained in B (float)\" do\n    a = \"POINT(100.0 100.0)\" |> Geo.WKT.decode!()\n    b = \"MULTIPOINT(100.0 100.0,200.0 200.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"09-004 - mPmP - points in A only, B only, and in both\" do\n    a = \"MULTIPOINT (100 100, 200 200, 300 300, 500 500)\" |> Geo.WKT.decode!()\n    b = \"MULTIPOINT (100 100, 200 200, 400 400, 600 600)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"09-004 - mPmP - points in A only, B only, and in both (float)\" do\n    a = \"MULTIPOINT(100.0 100.0,200.0 200.0,300.0 300.0,500.0 500.0)\" |> Geo.WKT.decode!()\n    b = \"MULTIPOINT(100.0 100.0,200.0 200.0,400.0 400.0,600.0 600.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"09-005 - PP - point contained in both A and B\" do\n    a = \"POINT (80 200)\" |> Geo.WKT.decode!()\n    b = \"POINT (80 200)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"09-005 - PP - point contained in both A and B (float)\" do\n    a = \"POINT(80.0 200.0)\" |> Geo.WKT.decode!()\n    b = \"POINT(80.0 200.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"09-006 - PP - A different from B\" do\n    a = \"POINT (80 200)\" |> Geo.WKT.decode!()\n    b = \"POINT (260 80)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"09-006 - PP - A different from B (float)\" do\n    a = \"POINT(80.0 200.0)\" |> Geo.WKT.decode!()\n    b = \"POINT(260.0 80.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"09-007 - PP - A different from B, same y\" do\n    a = \"POINT (60 260)\" |> Geo.WKT.decode!()\n    b = \"POINT (120 260)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"09-007 - PP - A different from B, same y (float)\" do\n    a = \"POINT(60.0 260.0)\" |> Geo.WKT.decode!()\n    b = \"POINT(120.0 260.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"09-008 - PP - A different from B, same x\" do\n    a = \"POINT (80 80)\" |> Geo.WKT.decode!()\n    b = \"POINT (80 280)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"09-008 - PP - A different from B, same x (float)\" do\n    a = \"POINT(80.0 80.0)\" |> Geo.WKT.decode!()\n    b = \"POINT(80.0 280.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\nend\n"
  },
  {
    "path": "test/validation/point_polygon_a_test.exs",
    "content": "defmodule Intersect.Validation.PointPolygonATest do\n  use ExUnit.Case\n\n  @tag :validation\n  test \"03-001 - P/A-2-1: a point outside a polygon\" do\n    a = \"POINT (20 20)\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((60 120, 60 40, 160 40, 160 120, 60 120))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-001 - P/A-2-1: a point outside a polygon (float)\" do\n    a = \"POINT(20.0 20.0)\" |> Geo.WKT.decode!()\n    b = \"POLYGON((60.0 120.0,60.0 40.0,160.0 40.0,160.0 120.0,60.0 120.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-002 - P/A-2-2: a point outside a converx polygon\" do\n    a = \"POINT (70 170)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((110 230, 80 160, 20 160, 20 20, 200 20, 200 160, 140 160, 110 230))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-002 - P/A-2-2: a point outside a converx polygon (float)\" do\n    a = \"POINT(70.0 170.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((110.0 230.0,80.0 160.0,20.0 160.0,20.0 20.0,200.0 20.0,200.0 160.0,140.0 160.0,110.0 230.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-003 - P/A-2-3: a point outside a concave polygon\" do\n    a = \"POINT (110 130)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((20 160, 80 160, 110 100, 140 160, 200 160, 200 20, 20 20, 20 160))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-003 - P/A-2-3: a point outside a concave polygon (float)\" do\n    a = \"POINT(110.0 130.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((20.0 160.0,80.0 160.0,110.0 100.0,140.0 160.0,200.0 160.0,200.0 20.0,20.0 20.0,20.0 160.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-004 - P/A-2-4: dim(0){A.P.Int = B.A.Ext}\" do\n    a = \"POINT (100 70)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((20 150, 100 150, 40 50, 170 50, 110 150, 190 150, 190 20, 20 20, 20 150))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-004 - P/A-2-4: dim(0){A.P.Int = B.A.Ext} (float)\" do\n    a = \"POINT(100.0 70.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((20.0 150.0,100.0 150.0,40.0 50.0,170.0 50.0,110.0 150.0,190.0 150.0,190.0 20.0,20.0 20.0,20.0 150.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-005 - P/A-2-5: a point outside a concave polygon\" do\n    a = \"POINT (100 70)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((20 150, 100 150, 40 50, 160 50, 100 150, 180 150, 180 20, 20 20, 20 150))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-005 - P/A-2-5: a point outside a concave polygon (float)\" do\n    a = \"POINT(100.0 70.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((20.0 150.0,100.0 150.0,40.0 50.0,160.0 50.0,100.0 150.0,180.0 150.0,180.0 20.0,20.0 20.0,20.0 150.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-006 - P/A-3-1: a point on the closing point of a polygon\" do\n    a = \"POINT (60 120)\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((60 120, 60 40, 160 40, 160 120, 60 120))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-006 - P/A-3-1: a point on the closing point of a polygon (float)\" do\n    a = \"POINT(60.0 120.0)\" |> Geo.WKT.decode!()\n    b = \"POLYGON((60.0 120.0,60.0 40.0,160.0 40.0,160.0 120.0,60.0 120.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-007 - P/A-3-2: a point on the boudary of a polygon at a non-vertex\" do\n    a = \"POINT (110 120)\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((60 120, 60 40, 160 40, 160 120, 60 120))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-007 - P/A-3-2: a point on the boudary of a polygon at a non-vertex (float)\" do\n    a = \"POINT(110.0 120.0)\" |> Geo.WKT.decode!()\n    b = \"POLYGON((60.0 120.0,60.0 40.0,160.0 40.0,160.0 120.0,60.0 120.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-008 - P/A-3-3: a point on the boundary of a polygon at a vertex\" do\n    a = \"POINT (160 120)\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((60 120, 60 40, 160 40, 160 120, 60 120))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-008 - P/A-3-3: a point on the boundary of a polygon at a vertex (float)\" do\n    a = \"POINT(160.0 120.0)\" |> Geo.WKT.decode!()\n    b = \"POLYGON((60.0 120.0,60.0 40.0,160.0 40.0,160.0 120.0,60.0 120.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-009 - P/A-3-4: a point on the touching point of boudary\" do\n    a = \"POINT (100 150)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((20 150, 100 150, 40 50, 160 50, 100 150, 180 150, 180 20, 20 20, 20 150))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-009 - P/A-3-4: a point on the touching point of boudary (float)\" do\n    a = \"POINT(100.0 150.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((20.0 150.0,100.0 150.0,40.0 50.0,160.0 50.0,100.0 150.0,180.0 150.0,180.0 20.0,20.0 20.0,20.0 150.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-010 - P/A-5: a point on the interior of a polygon\" do\n    a = \"POINT (100 80)\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((60 120, 60 40, 160 40, 160 120, 60 120))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-010 - P/A-5: a point on the interior of a polygon (float)\" do\n    a = \"POINT(100.0 80.0)\" |> Geo.WKT.decode!()\n    b = \"POLYGON((60.0 120.0,60.0 40.0,160.0 40.0,160.0 120.0,60.0 120.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-011 - P/Ah-2-1: a point outside of polygon with a hole\" do\n    a = \"POINT (60 160)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((190 190, 360 20, 20 20, 190 190),(280 50, 100 50, 190 140, 280 50))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-011 - P/Ah-2-1: a point outside of polygon with a hole (float)\" do\n    a = \"POINT(60.0 160.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((190.0 190.0,360.0 20.0,20.0 20.0,190.0 190.0),(280.0 50.0,100.0 50.0,190.0 140.0,280.0 50.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-012 - P/Ah-2-2: a point inside the hole of the polygon\" do\n    a = \"POINT (190 90)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((190 190, 360 20, 20 20, 190 190),(280 50, 100 50, 190 140, 280 50))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-012 - P/Ah-2-2: a point inside the hole of the polygon (float)\" do\n    a = \"POINT(190.0 90.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((190.0 190.0,360.0 20.0,20.0 20.0,190.0 190.0),(280.0 50.0,100.0 50.0,190.0 140.0,280.0 50.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-013 - P/Ah-3-1: a point on the closing point of the outer boundary of a polygon with a hole\" do\n    a = \"POINT (190 190)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((190 190, 360 20, 20 20, 190 190),(280 50, 100 50, 190 140, 280 50))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-013 - P/Ah-3-1: a point on the closing point of the outer boundary of a polygon with a hole (float)\" do\n    a = \"POINT(190.0 190.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((190.0 190.0,360.0 20.0,20.0 20.0,190.0 190.0),(280.0 50.0,100.0 50.0,190.0 140.0,280.0 50.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-014 - P/Ah-3-2: a point on the outer boundary of a polygon at a vertex\" do\n    a = \"POINT (360 20)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((190 190, 360 20, 20 20, 190 190),(280 50, 100 50, 190 140, 280 50))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-014 - P/Ah-3-2: a point on the outer boundary of a polygon at a vertex (float)\" do\n    a = \"POINT(360.0 20.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((190.0 190.0,360.0 20.0,20.0 20.0,190.0 190.0),(280.0 50.0,100.0 50.0,190.0 140.0,280.0 50.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-015 - P/Ah-3-3: a point on the outer boundary of a polygon at a non-vertex\" do\n    a = \"POINT (130 130)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((190 190, 360 20, 20 20, 190 190),(280 50, 100 50, 190 140, 280 50))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-015 - P/Ah-3-3: a point on the outer boundary of a polygon at a non-vertex (float)\" do\n    a = \"POINT(130.0 130.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((190.0 190.0,360.0 20.0,20.0 20.0,190.0 190.0),(280.0 50.0,100.0 50.0,190.0 140.0,280.0 50.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-016 - P/Ah-3-4: a point on the closing point of the inner boundary of a polygon\" do\n    a = \"POINT (280 50)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((190 190, 360 20, 20 20, 190 190),(280 50, 100 50, 190 140, 280 50))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-016 - P/Ah-3-4: a point on the closing point of the inner boundary of a polygon (float)\" do\n    a = \"POINT(280.0 50.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((190.0 190.0,360.0 20.0,20.0 20.0,190.0 190.0),(280.0 50.0,100.0 50.0,190.0 140.0,280.0 50.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-017 - P/Ah-3-5: a point on the inner boundary of a polygon at a non-vertex\" do\n    a = \"POINT (150 100)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((190 190, 360 20, 20 20, 190 190),(280 50, 100 50, 190 140, 280 50))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-017 - P/Ah-3-5: a point on the inner boundary of a polygon at a non-vertex (float)\" do\n    a = \"POINT(150.0 100.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((190.0 190.0,360.0 20.0,20.0 20.0,190.0 190.0),(280.0 50.0,100.0 50.0,190.0 140.0,280.0 50.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-018 - P/Ah-3-6: a point on the inner boundary of a polygon at a vertex\" do\n    a = \"POINT (100 50)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((190 190, 360 20, 20 20, 190 190),(280 50, 100 50, 190 140, 280 50))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-018 - P/Ah-3-6: a point on the inner boundary of a polygon at a vertex (float)\" do\n    a = \"POINT(100.0 50.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((190.0 190.0,360.0 20.0,20.0 20.0,190.0 190.0),(280.0 50.0,100.0 50.0,190.0 140.0,280.0 50.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-019 - P/Ah-5: a point inside the interior of a polygon with a hole\" do\n    a = \"POINT (140 120)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((190 190, 360 20, 20 20, 190 190),(280 50, 100 50, 190 140, 280 50))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-019 - P/Ah-5: a point inside the interior of a polygon with a hole (float)\" do\n    a = \"POINT(140.0 120.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((190.0 190.0,360.0 20.0,20.0 20.0,190.0 190.0),(280.0 50.0,100.0 50.0,190.0 140.0,280.0 50.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-020 - P/A2h-3-1: a point on the touching point of two holes in a polygon\" do\n    a = \"POINT (190 50)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((190 190, 360 20, 20 20, 190 190),(90 50, 150 110, 190 50, 90 50),(190 50, 230 110, 290 50, 190 50))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-020 - P/A2h-3-1: a point on the touching point of two holes in a polygon (float)\" do\n    a = \"POINT(190.0 50.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((190.0 190.0,360.0 20.0,20.0 20.0,190.0 190.0),(90.0 50.0,150.0 110.0,190.0 50.0,90.0 50.0),(190.0 50.0,230.0 110.0,290.0 50.0,190.0 50.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-021 - P/A2h-3-2: a point on the touching point of two holes in a polygon\" do\n    a = \"POINT (180 90)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((190 190, 360 20, 20 20, 190 190),(180 140, 180 40, 80 40, 180 140),(180 90, 210 140, 310 40, 230 40, 180 90))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-021 - P/A2h-3-2: a point on the touching point of two holes in a polygon (float)\" do\n    a = \"POINT(180.0 90.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((190.0 190.0,360.0 20.0,20.0 20.0,190.0 190.0),(180.0 140.0,180.0 40.0,80.0 40.0,180.0 140.0),(180.0 90.0,210.0 140.0,310.0 40.0,230.0 40.0,180.0 90.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-022 - mP/A-2: 3 points outside a polygon\" do\n    a = \"MULTIPOINT (20 80, 110 160, 20 160)\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((60 120, 60 40, 160 40, 160 120, 60 120))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-022 - mP/A-2: 3 points outside a polygon (float)\" do\n    a = \"MULTIPOINT(20.0 80.0,110.0 160.0,20.0 160.0)\" |> Geo.WKT.decode!()\n    b = \"POLYGON((60.0 120.0,60.0 40.0,160.0 40.0,160.0 120.0,60.0 120.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-023 - mP/A-3-1: one of 3 points on the closing point of the boundary of a polygon\" do\n    a = \"MULTIPOINT (20 80, 60 120, 20 160)\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((60 120, 60 40, 160 40, 160 120, 60 120))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-023 - mP/A-3-1: one of 3 points on the closing point of the boundary of a polygon (float)\" do\n    a = \"MULTIPOINT(20.0 80.0,60.0 120.0,20.0 160.0)\" |> Geo.WKT.decode!()\n    b = \"POLYGON((60.0 120.0,60.0 40.0,160.0 40.0,160.0 120.0,60.0 120.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-024 - mP/A-3-2: one of 3 points on the boundary of a polygon at a non-vertex\" do\n    a = \"MULTIPOINT (10 80, 110 170, 110 120)\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((60 120, 60 40, 160 40, 160 120, 60 120))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-024 - mP/A-3-2: one of 3 points on the boundary of a polygon at a non-vertex (float)\" do\n    a = \"MULTIPOINT(10.0 80.0,110.0 170.0,110.0 120.0)\" |> Geo.WKT.decode!()\n    b = \"POLYGON((60.0 120.0,60.0 40.0,160.0 40.0,160.0 120.0,60.0 120.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-025 - mP/A-3-3: one of 3 points on the boundary of a polygon at a vertex\" do\n    a = \"MULTIPOINT (10 80, 110 170, 160 120)\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((60 120, 60 40, 160 40, 160 120, 60 120))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-025 - mP/A-3-3: one of 3 points on the boundary of a polygon at a vertex (float)\" do\n    a = \"MULTIPOINT(10.0 80.0,110.0 170.0,160.0 120.0)\" |> Geo.WKT.decode!()\n    b = \"POLYGON((60.0 120.0,60.0 40.0,160.0 40.0,160.0 120.0,60.0 120.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-026 - mP/A-3-4: 3 of the 5 points on the boundary of a polygon\" do\n    a = \"MULTIPOINT (20 120, 60 120, 110 120, 160 120, 200 120)\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((60 120, 60 40, 160 40, 160 120, 60 120))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-026 - mP/A-3-4: 3 of the 5 points on the boundary of a polygon (float)\" do\n    a =\n      \"MULTIPOINT(20.0 120.0,60.0 120.0,110.0 120.0,160.0 120.0,200.0 120.0)\" |> Geo.WKT.decode!()\n\n    b = \"POLYGON((60.0 120.0,60.0 40.0,160.0 40.0,160.0 120.0,60.0 120.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-027 - mP/A-3-5: all 3 points on the boundary of a polygon\" do\n    a = \"MULTIPOINT (60 120, 110 120, 160 120)\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((60 120, 60 40, 160 40, 160 120, 60 120))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-027 - mP/A-3-5: all 3 points on the boundary of a polygon (float)\" do\n    a = \"MULTIPOINT(60.0 120.0,110.0 120.0,160.0 120.0)\" |> Geo.WKT.decode!()\n    b = \"POLYGON((60.0 120.0,60.0 40.0,160.0 40.0,160.0 120.0,60.0 120.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-028 - mP/A-3-6: all 4 points on the boundary of a polygon\" do\n    a = \"MULTIPOINT (60 120, 160 120, 160 40, 60 40)\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((60 120, 60 40, 160 40, 160 120, 60 120))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-028 - mP/A-3-6: all 4 points on the boundary of a polygon (float)\" do\n    a = \"MULTIPOINT(60.0 120.0,160.0 120.0,160.0 40.0,60.0 40.0)\" |> Geo.WKT.decode!()\n    b = \"POLYGON((60.0 120.0,60.0 40.0,160.0 40.0,160.0 120.0,60.0 120.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-029 - mP/A-4-1: 1 point outside a polygon, 1 point on the boundary and 1 point inside\" do\n    a = \"MULTIPOINT (20 150, 60 120, 110 80)\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((60 120, 60 40, 160 40, 160 120, 60 120))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-029 - mP/A-4-1: 1 point outside a polygon, 1 point on the boundary and 1 point inside (float)\" do\n    a = \"MULTIPOINT(20.0 150.0,60.0 120.0,110.0 80.0)\" |> Geo.WKT.decode!()\n    b = \"POLYGON((60.0 120.0,60.0 40.0,160.0 40.0,160.0 120.0,60.0 120.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-030 - mP/A-4-2: 1 point outside a polygon, 1 point on the boundary and 1 point inside\" do\n    a = \"MULTIPOINT (110 80, 160 120, 200 160)\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((60 120, 60 40, 160 40, 160 120, 60 120))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-030 - mP/A-4-2: 1 point outside a polygon, 1 point on the boundary and 1 point inside (float)\" do\n    a = \"MULTIPOINT(110.0 80.0,160.0 120.0,200.0 160.0)\" |> Geo.WKT.decode!()\n    b = \"POLYGON((60.0 120.0,60.0 40.0,160.0 40.0,160.0 120.0,60.0 120.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-031 - mP/A-4-3: 1 point outside a polygon, 1 point on the boundary and 1 point inside\" do\n    a = \"MULTIPOINT (110 80, 110 120, 110 160)\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((60 120, 60 40, 160 40, 160 120, 60 120))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-031 - mP/A-4-3: 1 point outside a polygon, 1 point on the boundary and 1 point inside (float)\" do\n    a = \"MULTIPOINT(110.0 80.0,110.0 120.0,110.0 160.0)\" |> Geo.WKT.decode!()\n    b = \"POLYGON((60.0 120.0,60.0 40.0,160.0 40.0,160.0 120.0,60.0 120.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-032 - mP/A-4-4: 1 point outside a polygon, 1 point inside\" do\n    a = \"MULTIPOINT (110 170, 110 80)\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((60 120, 60 40, 160 40, 160 120, 60 120))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-032 - mP/A-4-4: 1 point outside a polygon, 1 point inside (float)\" do\n    a = \"MULTIPOINT(110.0 170.0,110.0 80.0)\" |> Geo.WKT.decode!()\n    b = \"POLYGON((60.0 120.0,60.0 40.0,160.0 40.0,160.0 120.0,60.0 120.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-033 - mP/A-4-5: 1 point outside a polygon, 2 points on the boundary and 1 point inside\" do\n    a = \"MULTIPOINT (60 120, 160 120, 110 80, 110 170)\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((60 120, 60 40, 160 40, 160 120, 60 120))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-033 - mP/A-4-5: 1 point outside a polygon, 2 points on the boundary and 1 point inside (float)\" do\n    a = \"MULTIPOINT(60.0 120.0,160.0 120.0,110.0 80.0,110.0 170.0)\" |> Geo.WKT.decode!()\n    b = \"POLYGON((60.0 120.0,60.0 40.0,160.0 40.0,160.0 120.0,60.0 120.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-034 - mP/A-5-1: 2 points within a polygon\" do\n    a = \"MULTIPOINT (90 80, 130 80)\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((60 120, 60 40, 160 40, 160 120, 60 120))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-034 - mP/A-5-1: 2 points within a polygon (float)\" do\n    a = \"MULTIPOINT(90.0 80.0,130.0 80.0)\" |> Geo.WKT.decode!()\n    b = \"POLYGON((60.0 120.0,60.0 40.0,160.0 40.0,160.0 120.0,60.0 120.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-035 - mP/A-5-2: 1 point on the boundary and 1 point inside a polygon\" do\n    a = \"MULTIPOINT (60 120, 160 120, 110 80)\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((60 120, 60 40, 160 40, 160 120, 60 120))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-035 - mP/A-5-2: 1 point on the boundary and 1 point inside a polygon (float)\" do\n    a = \"MULTIPOINT(60.0 120.0,160.0 120.0,110.0 80.0)\" |> Geo.WKT.decode!()\n    b = \"POLYGON((60.0 120.0,60.0 40.0,160.0 40.0,160.0 120.0,60.0 120.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-036 - mP/Ah-2-1: 3 points outside a polygon\" do\n    a = \"MULTIPOINT (40 170, 40 90, 130 170)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((190 190, 360 20, 20 20, 190 190),(280 50, 100 50, 190 140, 280 50))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-036 - mP/Ah-2-1: 3 points outside a polygon (float)\" do\n    a = \"MULTIPOINT(40.0 170.0,40.0 90.0,130.0 170.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((190.0 190.0,360.0 20.0,20.0 20.0,190.0 190.0),(280.0 50.0,100.0 50.0,190.0 140.0,280.0 50.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-037 - mP/Ah-2-2: 2 points outside a polygon and 1 point inside the hole of the polygon\" do\n    a = \"MULTIPOINT (90 170, 280 170, 190 90)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((190 190, 360 20, 20 20, 190 190),(280 50, 100 50, 190 140, 280 50))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-037 - mP/Ah-2-2: 2 points outside a polygon and 1 point inside the hole of the polygon (float)\" do\n    a = \"MULTIPOINT(90.0 170.0,280.0 170.0,190.0 90.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((190.0 190.0,360.0 20.0,20.0 20.0,190.0 190.0),(280.0 50.0,100.0 50.0,190.0 140.0,280.0 50.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-038 - mP/Ah-2-3: all 3 points in polygon's hole\" do\n    a = \"MULTIPOINT (190 110, 150 70, 230 70)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((190 190, 360 20, 20 20, 190 190),(280 50, 100 50, 190 140, 280 50))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-038 - mP/Ah-2-3: all 3 points in polygon's hole (float)\" do\n    a = \"MULTIPOINT(190.0 110.0,150.0 70.0,230.0 70.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((190.0 190.0,360.0 20.0,20.0 20.0,190.0 190.0),(280.0 50.0,100.0 50.0,190.0 140.0,280.0 50.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-039 - P/mA-3-1: a point on the touching point of two polygons\" do\n    a = \"POINT (100 100)\" |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON (((20 100, 20 20, 100 20, 100 100, 20 100)),((100 180, 100 100, 180 100, 180 180, 100 180)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-039 - P/mA-3-1: a point on the touching point of two polygons (float)\" do\n    a = \"POINT(100.0 100.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON(((20.0 100.0,20.0 20.0,100.0 20.0,100.0 100.0,20.0 100.0)),((100.0 180.0,100.0 100.0,180.0 100.0,180.0 180.0,100.0 180.0)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-040 - P/mA-3-2: a point on the boundary of one of the 2 polygons\" do\n    a = \"POINT (20 100)\" |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON (((20 100, 20 20, 100 20, 100 100, 20 100)),((100 180, 100 100, 180 100, 180 180, 100 180)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-040 - P/mA-3-2: a point on the boundary of one of the 2 polygons (float)\" do\n    a = \"POINT(20.0 100.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON(((20.0 100.0,20.0 20.0,100.0 20.0,100.0 100.0,20.0 100.0)),((100.0 180.0,100.0 100.0,180.0 100.0,180.0 180.0,100.0 180.0)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-041 - P/mA-3-3: a point on the boundary of one of the 2 polygons\" do\n    a = \"POINT (60 100)\" |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON (((20 100, 20 20, 100 20, 100 100, 20 100)),((100 180, 100 100, 180 100, 180 180, 100 180)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-041 - P/mA-3-3: a point on the boundary of one of the 2 polygons (float)\" do\n    a = \"POINT(60.0 100.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON(((20.0 100.0,20.0 20.0,100.0 20.0,100.0 100.0,20.0 100.0)),((100.0 180.0,100.0 100.0,180.0 100.0,180.0 180.0,100.0 180.0)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-042 - P/mA-3-4: a point touching a polygon's boundary where the boundaries touch at a point\" do\n    a = \"POINT (110 110)\" |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON (((110 110, 20 200, 200 200, 110 110),(110 110, 80 180, 140 180, 110 110)),((110 110, 20 20, 200 20, 110 110),(110 110, 80 40, 140 40, 110 110)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"03-042 - P/mA-3-4: a point touching a polygon's boundary where the boundaries touch at a point (float)\" do\n    a = \"POINT(110.0 110.0)\" |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON(((110.0 110.0,20.0 200.0,200.0 200.0,110.0 110.0),(110.0 110.0,80.0 180.0,140.0 180.0,110.0 110.0)),((110.0 110.0,20.0 20.0,200.0 20.0,110.0 110.0),(110.0 110.0,80.0 40.0,140.0 40.0,110.0 110.0)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\nend\n"
  },
  {
    "path": "test/validation/point_polygon_b_test.exs",
    "content": "defmodule Intersect.Validation.PointPolygonBTest do\n  use ExUnit.Case\n\n  @tag :validation\n  test \"11-001 - PA - point contained in simple polygon\" do\n    a = \"POINT (100 100)\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((50 50, 200 50, 200 200, 50 200, 50 50))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"11-001 - PA - point contained in simple polygon (float)\" do\n    a = \"POINT(100.0 100.0)\" |> Geo.WKT.decode!()\n    b = \"POLYGON((50.0 50.0,200.0 50.0,200.0 200.0,50.0 200.0,50.0 50.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"11-002 - mPmA - points on I, B and E of touching triangles\" do\n    a =\n      \"MULTIPOLYGON (((120 320, 180 200, 240 320, 120 320)),((180 200, 240 80, 300 200, 180 200)))\"\n      |> Geo.WKT.decode!()\n\n    b = \"MULTIPOINT (120 320, 180 260, 180 320, 180 200, 300 200, 200 220)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"11-002 - mPmA - points on I, B and E of touching triangles (float)\" do\n    a =\n      \"MULTIPOLYGON(((120.0 320.0,180.0 200.0,240.0 320.0,120.0 320.0)),((180.0 200.0,240.0 80.0,300.0 200.0,180.0 200.0)))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOINT(120.0 320.0,180.0 260.0,180.0 320.0,180.0 200.0,300.0 200.0,200.0 220.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"11-003 - mPmA - points on I, B and E of concentric doughnuts\" do\n    a =\n      \"MULTIPOLYGON (((120 80, 420 80, 420 340, 120 340, 120 80),(160 300, 160 120, 380 120, 380 300, 160 300)),((200 260, 200 160, 340 160, 340 260, 200 260),(240 220, 240 200, 300 200, 300 220, 240 220)))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOINT (200 360, 420 340, 400 100, 340 120, 200 140, 200 160, 220 180, 260 200, 200 360, 420 340, 400 100, 340 120, 200 140, 200 160, 220 180, 260 200)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"11-003 - mPmA - points on I, B and E of concentric doughnuts (float)\" do\n    a =\n      \"MULTIPOLYGON(((120.0 80.0,420.0 80.0,420.0 340.0,120.0 340.0,120.0 80.0),(160.0 300.0,160.0 120.0,380.0 120.0,380.0 300.0,160.0 300.0)),((200.0 260.0,200.0 160.0,340.0 160.0,340.0 260.0,200.0 260.0),(240.0 220.0,240.0 200.0,300.0 200.0,300.0 220.0,240.0 220.0)))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOINT(200.0 360.0,420.0 340.0,400.0 100.0,340.0 120.0,200.0 140.0,200.0 160.0,220.0 180.0,260.0 200.0,200.0 360.0,420.0 340.0,400.0 100.0,340.0 120.0,200.0 140.0,200.0 160.0,220.0 180.0,260.0 200.0)\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\nend\n"
  },
  {
    "path": "test/validation/polygon_complex_a_test.exs",
    "content": "defmodule Intersect.Validation.PolygonComplexATest do\n  use ExUnit.Case\n\n  @tag :validation\n  test \"08-001 - AC A-shells overlapping B-shell at A-vertex\" do\n    a = \"POLYGON ((100 60, 140 100, 100 140, 60 100, 100 60))\" |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON (((80 40, 120 40, 120 80, 80 80, 80 40)),((120 80, 160 80, 160 120, 120 120, 120 80)),((80 120, 120 120, 120 160, 80 160, 80 120)),((40 80, 80 80, 80 120, 40 120, 40 80)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"08-001 - AC A-shells overlapping B-shell at A-vertex (float)\" do\n    a = \"POLYGON((100.0 60.0,140.0 100.0,100.0 140.0,60.0 100.0,100.0 60.0))\" |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON(((80.0 40.0,120.0 40.0,120.0 80.0,80.0 80.0,80.0 40.0)),((120.0 80.0,160.0 80.0,160.0 120.0,120.0 120.0,120.0 80.0)),((80.0 120.0,120.0 120.0,120.0 160.0,80.0 160.0,80.0 120.0)),((40.0 80.0,80.0 80.0,80.0 120.0,40.0 120.0,40.0 80.0)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\nend\n"
  },
  {
    "path": "test/validation/polygon_polygon_a_test.exs",
    "content": "defmodule Intersect.Validation.PolygonPolygonATest do\n  use ExUnit.Case\n\n  @tag :validation\n  test \"07-001 - A/A-1-1: same polygons\" do\n    a = \"POLYGON ((20 20, 20 100, 120 100, 140 20, 20 20))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((20 20, 20 100, 120 100, 140 20, 20 20))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"07-001 - A/A-1-1: same polygons (float)\" do\n    a = \"POLYGON((20.0 20.0,20.0 100.0,120.0 100.0,140.0 20.0,20.0 20.0))\" |> Geo.WKT.decode!()\n    b = \"POLYGON((20.0 20.0,20.0 100.0,120.0 100.0,140.0 20.0,20.0 20.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"07-002 - A/A-1-2: same polygons with reverse sequence of points\" do\n    a = \"POLYGON ((20 20, 20 100, 120 100, 140 20, 20 20))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((20 20, 140 20, 120 100, 20 100, 20 20))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"07-002 - A/A-1-2: same polygons with reverse sequence of points (float)\" do\n    a = \"POLYGON((20.0 20.0,20.0 100.0,120.0 100.0,140.0 20.0,20.0 20.0))\" |> Geo.WKT.decode!()\n    b = \"POLYGON((20.0 20.0,140.0 20.0,120.0 100.0,20.0 100.0,20.0 20.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"07-003 - A/A-1-3: same polygons with different sequence of points\" do\n    a = \"POLYGON ((20 20, 20 100, 120 100, 140 20, 20 20))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((120 100, 140 20, 20 20, 20 100, 120 100))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"07-003 - A/A-1-3: same polygons with different sequence of points (float)\" do\n    a = \"POLYGON((20.0 20.0,20.0 100.0,120.0 100.0,140.0 20.0,20.0 20.0))\" |> Geo.WKT.decode!()\n    b = \"POLYGON((120.0 100.0,140.0 20.0,20.0 20.0,20.0 100.0,120.0 100.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"07-004 - A/A-1-4: same polygons with different number of points\" do\n    a = \"POLYGON ((20 20, 20 100, 120 100, 140 20, 20 20))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((20 100, 60 100, 120 100, 140 20, 80 20, 20 20, 20 100))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"07-004 - A/A-1-4: same polygons with different number of points (float)\" do\n    a = \"POLYGON((20.0 20.0,20.0 100.0,120.0 100.0,140.0 20.0,20.0 20.0))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((20.0 100.0,60.0 100.0,120.0 100.0,140.0 20.0,80.0 20.0,20.0 20.0,20.0 100.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"07-005 - A/A-2: different polygons\" do\n    a = \"POLYGON ((0 0, 80 0, 80 80, 0 80, 0 0))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((100 200, 100 140, 180 140, 180 200, 100 200))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-005 - A/A-2: different polygons (float)\" do\n    a = \"POLYGON((0.0 0.0,80.0 0.0,80.0 80.0,0.0 80.0,0.0 0.0))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((100.0 200.0,100.0 140.0,180.0 140.0,180.0 200.0,100.0 200.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == false\n    assert Topo.intersects?(b, a) == false\n    assert Topo.disjoint?(a, b) == true\n    assert Topo.disjoint?(b, a) == true\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-006 - A/A-3-1-1: the closing point of a polygon touching the closing point of another polygon\" do\n    a = \"POLYGON ((140 120, 160 20, 20 20, 20 120, 140 120))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((140 120, 140 200, 240 200, 240 120, 140 120))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-006 - A/A-3-1-1: the closing point of a polygon touching the closing point of another polygon (float)\" do\n    a = \"POLYGON((140.0 120.0,160.0 20.0,20.0 20.0,20.0 120.0,140.0 120.0))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((140.0 120.0,140.0 200.0,240.0 200.0,240.0 120.0,140.0 120.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-007 - A/A-3-1-2: the closing point of a polygon touching the boundary (at a non-vertex) of another polygon\" do\n    a = \"POLYGON ((140 120, 160 20, 20 20, 20 120, 140 120))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((80 180, 140 260, 260 200, 200 60, 80 180))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-007 - A/A-3-1-2: the closing point of a polygon touching the boundary (at a non-vertex) of another polygon (float)\" do\n    a = \"POLYGON((140.0 120.0,160.0 20.0,20.0 20.0,20.0 120.0,140.0 120.0))\" |> Geo.WKT.decode!()\n    b = \"POLYGON((80.0 180.0,140.0 260.0,260.0 200.0,200.0 60.0,80.0 180.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-008 - A/A-3-1-3: the closing point of a polygon touching the boundary (at a vertex) of another polygon\" do\n    a = \"POLYGON ((140 120, 160 20, 20 20, 20 120, 140 120))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((240 80, 140 120, 180 240, 280 200, 240 80))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-008 - A/A-3-1-3: the closing point of a polygon touching the boundary (at a vertex) of another polygon (float)\" do\n    a = \"POLYGON((140.0 120.0,160.0 20.0,20.0 20.0,20.0 120.0,140.0 120.0))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((240.0 80.0,140.0 120.0,180.0 240.0,280.0 200.0,240.0 80.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-009 - A/A-3-1-4: the boundary (at a non-vertex) of a polygon touching the closing point of another polygon\" do\n    a = \"POLYGON ((140 160, 20 20, 270 20, 150 160, 230 40, 60 40, 140 160))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((140 40, 180 80, 120 100, 140 40))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-009 - A/A-3-1-4: the boundary (at a non-vertex) of a polygon touching the closing point of another polygon (float)\" do\n    a =\n      \"POLYGON((140.0 160.0,20.0 20.0,270.0 20.0,150.0 160.0,230.0 40.0,60.0 40.0,140.0 160.0))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON((140.0 40.0,180.0 80.0,120.0 100.0,140.0 40.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-010 - A/A-3-1-5: the boundary (at a non-vertex) of a polygon touching the boundary (at a vertex) of another polygon\" do\n    a = \"POLYGON ((140 160, 20 20, 270 20, 150 160, 230 40, 60 40, 140 160))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((120 100, 180 80, 130 40, 120 100))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-010 - A/A-3-1-5: the boundary (at a non-vertex) of a polygon touching the boundary (at a vertex) of another polygon (float)\" do\n    a =\n      \"POLYGON((140.0 160.0,20.0 20.0,270.0 20.0,150.0 160.0,230.0 40.0,60.0 40.0,140.0 160.0))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON((120.0 100.0,180.0 80.0,130.0 40.0,120.0 100.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-011 - A/A-3-1-6: the boundary (at a vertex) of a polygon touching the boundary (at a non-vertex) of another polygon\" do\n    a = \"POLYGON ((20 20, 180 20, 140 140, 20 140, 20 20))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((180 100, 80 200, 180 280, 260 200, 180 100))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-011 - A/A-3-1-6: the boundary (at a vertex) of a polygon touching the boundary (at a non-vertex) of another polygon (float)\" do\n    a = \"POLYGON((20.0 20.0,180.0 20.0,140.0 140.0,20.0 140.0,20.0 20.0))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((180.0 100.0,80.0 200.0,180.0 280.0,260.0 200.0,180.0 100.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-012 - A/A-3-1-7: the boundary (at a vertex) of a polygon touching the boundary (at a vertex) of another polygon\" do\n    a = \"POLYGON ((140 120, 160 20, 20 20, 20 120, 140 120))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((140 140, 20 120, 0 220, 120 240, 140 140))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-012 - A/A-3-1-7: the boundary (at a vertex) of a polygon touching the boundary (at a vertex) of another polygon (float)\" do\n    a = \"POLYGON((140.0 120.0,160.0 20.0,20.0 20.0,20.0 120.0,140.0 120.0))\" |> Geo.WKT.decode!()\n    b = \"POLYGON((140.0 140.0,20.0 120.0,0.0 220.0,120.0 240.0,140.0 140.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-013 - A/A-3-1-8: the closing point of a polygon touching the boundary of another polygon where the closing point touching the boundary at a vertex\" do\n    a = \"POLYGON ((160 200, 210 70, 120 70, 160 200))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((160 200, 260 40, 70 40, 160 200, 20 20, 310 20, 160 200))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-013 - A/A-3-1-8: the closing point of a polygon touching the boundary of another polygon where the closing point touching the boundary at a vertex (float)\" do\n    a = \"POLYGON((160.0 200.0,210.0 70.0,120.0 70.0,160.0 200.0))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((160.0 200.0,260.0 40.0,70.0 40.0,160.0 200.0,20.0 20.0,310.0 20.0,160.0 200.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-014 - A/A-3-1-9: the closing point of a polygon touching the boundary of another polygon where the closing point intersecting the boundary at a non-vertex\" do\n    a = \"POLYGON ((110 140, 200 70, 200 160, 110 140))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((110 140, 110 50, 60 50, 60 90, 160 190, 20 110, 20 20, 200 20, 110 140))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-014 - A/A-3-1-9: the closing point of a polygon touching the boundary of another polygon where the closing point intersecting the boundary at a non-vertex (float)\" do\n    a = \"POLYGON((110.0 140.0,200.0 70.0,200.0 160.0,110.0 140.0))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((110.0 140.0,110.0 50.0,60.0 50.0,60.0 90.0,160.0 190.0,20.0 110.0,20.0 20.0,200.0 20.0,110.0 140.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-015 - A/A-3-2-1: two polygons touching at multiple points\" do\n    a =\n      \"POLYGON ((20 120, 20 20, 260 20, 260 120, 200 40, 140 120, 80 40, 20 120))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((20 120, 20 240, 260 240, 260 120, 200 200, 140 120, 80 200, 20 120))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-015 - A/A-3-2-1: two polygons touching at multiple points (float)\" do\n    a =\n      \"POLYGON((20.0 120.0,20.0 20.0,260.0 20.0,260.0 120.0,200.0 40.0,140.0 120.0,80.0 40.0,20.0 120.0))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((20.0 120.0,20.0 240.0,260.0 240.0,260.0 120.0,200.0 200.0,140.0 120.0,80.0 200.0,20.0 120.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-016 - A/A-3-2-2: two polygons touching at multiple points\" do\n    a =\n      \"POLYGON ((20 120, 20 20, 260 20, 260 120, 180 40, 140 120, 100 40, 20 120))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON ((20 120, 300 120, 140 240, 20 120))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-016 - A/A-3-2-2: two polygons touching at multiple points (float)\" do\n    a =\n      \"POLYGON((20.0 120.0,20.0 20.0,260.0 20.0,260.0 120.0,180.0 40.0,140.0 120.0,100.0 40.0,20.0 120.0))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON((20.0 120.0,300.0 120.0,140.0 240.0,20.0 120.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-017 - A/A-3-2-3: two polygons touching at multiple points\" do\n    a =\n      \"POLYGON ((20 20, 20 300, 280 300, 280 260, 220 260, 60 100, 60 60, 280 60, 280 20, 20 20))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((100 140, 160 80, 280 180, 200 240, 220 160, 160 200, 180 120, 100 140))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-017 - A/A-3-2-3: two polygons touching at multiple points (float)\" do\n    a =\n      \"POLYGON((20.0 20.0,20.0 300.0,280.0 300.0,280.0 260.0,220.0 260.0,60.0 100.0,60.0 60.0,280.0 60.0,280.0 20.0,20.0 20.0))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((100.0 140.0,160.0 80.0,280.0 180.0,200.0 240.0,220.0 160.0,160.0 200.0,180.0 120.0,100.0 140.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-018 - A/A-3-2-4: two polygons touching at multiple points\" do\n    a =\n      \"POLYGON ((20 20, 20 300, 280 300, 280 260, 220 260, 60 100, 60 60, 280 60, 280 20, 20 20))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON ((260 200, 180 80, 120 160, 200 160, 180 220, 260 200))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-018 - A/A-3-2-4: two polygons touching at multiple points (float)\" do\n    a =\n      \"POLYGON((20.0 20.0,20.0 300.0,280.0 300.0,280.0 260.0,220.0 260.0,60.0 100.0,60.0 60.0,280.0 60.0,280.0 20.0,20.0 20.0))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((260.0 200.0,180.0 80.0,120.0 160.0,200.0 160.0,180.0 220.0,260.0 200.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-019 - A/A-3-2-5: two polygons touching at multiple points\" do\n    a =\n      \"POLYGON ((20 20, 280 20, 280 140, 220 60, 140 140, 80 60, 20 140, 20 20))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON ((0 140, 300 140, 140 240, 0 140))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-019 - A/A-3-2-5: two polygons touching at multiple points (float)\" do\n    a =\n      \"POLYGON((20.0 20.0,280.0 20.0,280.0 140.0,220.0 60.0,140.0 140.0,80.0 60.0,20.0 140.0,20.0 20.0))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON((0.0 140.0,300.0 140.0,140.0 240.0,0.0 140.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-020 - A/A-3-2-6: two polygons touching at multiple points\" do\n    a =\n      \"POLYGON ((20 20, 280 20, 280 140, 220 60, 140 140, 80 60, 20 140, 20 20))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON ((20 240, 20 140, 320 140, 180 240, 20 240))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-020 - A/A-3-2-6: two polygons touching at multiple points (float)\" do\n    a =\n      \"POLYGON((20.0 20.0,280.0 20.0,280.0 140.0,220.0 60.0,140.0 140.0,80.0 60.0,20.0 140.0,20.0 20.0))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON((20.0 240.0,20.0 140.0,320.0 140.0,180.0 240.0,20.0 240.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-021 - A/A-3-2-7: two polygons touching at multiple points\" do\n    a =\n      \"POLYGON ((20 20, 280 20, 280 140, 220 60, 140 140, 80 60, 20 140, 20 20))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((20 240, 20 140, 80 180, 140 140, 220 180, 280 140, 280 240, 20 240))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-021 - A/A-3-2-7: two polygons touching at multiple points (float)\" do\n    a =\n      \"POLYGON((20.0 20.0,280.0 20.0,280.0 140.0,220.0 60.0,140.0 140.0,80.0 60.0,20.0 140.0,20.0 20.0))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((20.0 240.0,20.0 140.0,80.0 180.0,140.0 140.0,220.0 180.0,280.0 140.0,280.0 240.0,20.0 240.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-022 - A/A-3-3-1: two polygons touching along a boundary\" do\n    a = \"POLYGON ((120 120, 180 60, 20 20, 20 120, 120 120))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((120 120, 220 20, 280 20, 240 160, 120 120))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-022 - A/A-3-3-1: two polygons touching along a boundary (float)\" do\n    a = \"POLYGON((120.0 120.0,180.0 60.0,20.0 20.0,20.0 120.0,120.0 120.0))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((120.0 120.0,220.0 20.0,280.0 20.0,240.0 160.0,120.0 120.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-023 - A/A-3-3-2: two polygons touching along a boundary\" do\n    a = \"POLYGON ((140 120, 160 20, 20 20, 20 120, 140 120))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((140 120, 160 20, 260 120, 220 200, 140 120))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-023 - A/A-3-3-2: two polygons touching along a boundary (float)\" do\n    a = \"POLYGON((140.0 120.0,160.0 20.0,20.0 20.0,20.0 120.0,140.0 120.0))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((140.0 120.0,160.0 20.0,260.0 120.0,220.0 200.0,140.0 120.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-024 - A/A-3-3-3: two polygons touching along a boundary\" do\n    a = \"POLYGON ((20 140, 120 40, 20 40, 20 140))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((190 140, 190 20, 140 20, 20 140, 190 140))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-024 - A/A-3-3-3: two polygons touching along a boundary (float)\" do\n    a = \"POLYGON((20.0 140.0,120.0 40.0,20.0 40.0,20.0 140.0))\" |> Geo.WKT.decode!()\n    b = \"POLYGON((190.0 140.0,190.0 20.0,140.0 20.0,20.0 140.0,190.0 140.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-025 - A/A-3-3-4: two polygons touching along a boundary\" do\n    a = \"POLYGON ((120 120, 180 60, 20 20, 20 120, 120 120))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((300 20, 220 20, 120 120, 260 160, 300 20))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-025 - A/A-3-3-4: two polygons touching along a boundary (float)\" do\n    a = \"POLYGON((120.0 120.0,180.0 60.0,20.0 20.0,20.0 120.0,120.0 120.0))\" |> Geo.WKT.decode!()\n    b = \"POLYGON((300.0 20.0,220.0 20.0,120.0 120.0,260.0 160.0,300.0 20.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-026 - A/A-3-3-5: two polygons touching along a boundary\" do\n    a = \"POLYGON ((140 120, 160 20, 20 20, 20 120, 140 120))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((140 120, 240 160, 280 60, 160 20, 140 120))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-026 - A/A-3-3-5: two polygons touching along a boundary (float)\" do\n    a = \"POLYGON((140.0 120.0,160.0 20.0,20.0 20.0,20.0 120.0,140.0 120.0))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((140.0 120.0,240.0 160.0,280.0 60.0,160.0 20.0,140.0 120.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-027 - A/A-3-3-6: two polygons touching along a boundary\" do\n    a = \"POLYGON ((120 120, 180 60, 20 20, 20 120, 120 120))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((280 60, 180 60, 120 120, 260 180, 280 60))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-027 - A/A-3-3-6: two polygons touching along a boundary (float)\" do\n    a = \"POLYGON((120.0 120.0,180.0 60.0,20.0 20.0,20.0 120.0,120.0 120.0))\" |> Geo.WKT.decode!()\n    b = \"POLYGON((280.0 60.0,180.0 60.0,120.0 120.0,260.0 180.0,280.0 60.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-028 - A/A-3-3-7: two polygons touching along a boundary\" do\n    a = \"POLYGON ((140 120, 160 20, 20 20, 20 120, 140 120))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((120 200, 120 120, 40 120, 40 200, 120 200))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-028 - A/A-3-3-7: two polygons touching along a boundary (float)\" do\n    a = \"POLYGON((140.0 120.0,160.0 20.0,20.0 20.0,20.0 120.0,140.0 120.0))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((120.0 200.0,120.0 120.0,40.0 120.0,40.0 200.0,120.0 200.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-029 - A/A-3-3-8: two polygons touching along a boundary\" do\n    a = \"POLYGON ((140 120, 160 20, 20 20, 20 120, 140 120))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((160 220, 140 120, 60 120, 40 220, 160 220))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-029 - A/A-3-3-8: two polygons touching along a boundary (float)\" do\n    a = \"POLYGON((140.0 120.0,160.0 20.0,20.0 20.0,20.0 120.0,140.0 120.0))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((160.0 220.0,140.0 120.0,60.0 120.0,40.0 220.0,160.0 220.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-030 - A/A-3-3-9: two polygons touching along a boundary\" do\n    a = \"POLYGON ((140 120, 160 20, 20 20, 20 120, 140 120))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((140 120, 20 120, 20 220, 140 220, 140 120))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-030 - A/A-3-3-9: two polygons touching along a boundary (float)\" do\n    a = \"POLYGON((140.0 120.0,160.0 20.0,20.0 20.0,20.0 120.0,140.0 120.0))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((140.0 120.0,20.0 120.0,20.0 220.0,140.0 220.0,140.0 120.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-031 - A/A-3-3-10: two polygons touching along a boundary\" do\n    a = \"POLYGON ((120 120, 180 60, 20 20, 20 120, 120 120))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((320 20, 220 20, 80 160, 240 140, 320 20))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-031 - A/A-3-3-10: two polygons touching along a boundary (float)\" do\n    a = \"POLYGON((120.0 120.0,180.0 60.0,20.0 20.0,20.0 120.0,120.0 120.0))\" |> Geo.WKT.decode!()\n    b = \"POLYGON((320.0 20.0,220.0 20.0,80.0 160.0,240.0 140.0,320.0 20.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-032 - A/A-5-1: a polygon containing another polygon\" do\n    a = \"POLYGON ((20 20, 20 180, 220 180, 220 20, 20 20))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((60 40, 60 140, 180 140, 180 40, 60 40))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-032 - A/A-5-1: a polygon containing another polygon (float)\" do\n    a = \"POLYGON((20.0 20.0,20.0 180.0,220.0 180.0,220.0 20.0,20.0 20.0))\" |> Geo.WKT.decode!()\n    b = \"POLYGON((60.0 40.0,60.0 140.0,180.0 140.0,180.0 40.0,60.0 40.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-033 - A/A-5-2-1: a polygon containing another polygon\" do\n    a = \"POLYGON ((20 20, 20 180, 220 180, 220 20, 20 20))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((20 20, 80 140, 160 60, 20 20))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-033 - A/A-5-2-1: a polygon containing another polygon (float)\" do\n    a = \"POLYGON((20.0 20.0,20.0 180.0,220.0 180.0,220.0 20.0,20.0 20.0))\" |> Geo.WKT.decode!()\n    b = \"POLYGON((20.0 20.0,80.0 140.0,160.0 60.0,20.0 20.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-034 - A/A-5-2-2: a polygon containing another polygon\" do\n    a = \"POLYGON ((20 20, 20 180, 220 180, 220 20, 20 20))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((160 60, 20 20, 100 140, 160 60))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-034 - A/A-5-2-2: a polygon containing another polygon (float)\" do\n    a = \"POLYGON((20.0 20.0,20.0 180.0,220.0 180.0,220.0 20.0,20.0 20.0))\" |> Geo.WKT.decode!()\n    b = \"POLYGON((160.0 60.0,20.0 20.0,100.0 140.0,160.0 60.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-035 - A/A-5-2-3: a polygon containing another polygon\" do\n    a = \"POLYGON ((20 20, 20 180, 220 180, 220 20, 20 20))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((20 100, 140 160, 160 40, 20 100))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-035 - A/A-5-2-3: a polygon containing another polygon (float)\" do\n    a = \"POLYGON((20.0 20.0,20.0 180.0,220.0 180.0,220.0 20.0,20.0 20.0))\" |> Geo.WKT.decode!()\n    b = \"POLYGON((20.0 100.0,140.0 160.0,160.0 40.0,20.0 100.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-036 - A/A-5-2-4: a polygon containing another polygon\" do\n    a = \"POLYGON ((20 20, 20 180, 220 180, 220 20, 20 20))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((160 40, 20 100, 160 160, 160 40))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-036 - A/A-5-2-4: a polygon containing another polygon (float)\" do\n    a = \"POLYGON((20.0 20.0,20.0 180.0,220.0 180.0,220.0 20.0,20.0 20.0))\" |> Geo.WKT.decode!()\n    b = \"POLYGON((160.0 40.0,20.0 100.0,160.0 160.0,160.0 40.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-037 - A/A-5-2-5: a polygon containing another polygon\" do\n    a = \"POLYGON ((20 20, 20 180, 220 180, 220 20, 20 20))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((20 180, 180 120, 80 40, 20 180))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-037 - A/A-5-2-5: a polygon containing another polygon (float)\" do\n    a = \"POLYGON((20.0 20.0,20.0 180.0,220.0 180.0,220.0 20.0,20.0 20.0))\" |> Geo.WKT.decode!()\n    b = \"POLYGON((20.0 180.0,180.0 120.0,80.0 40.0,20.0 180.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-038 - A/A-5-2-6: a polygon containing another polygon\" do\n    a = \"POLYGON ((20 20, 20 180, 220 180, 220 20, 20 20))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((180 120, 100 40, 20 180, 180 120))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-038 - A/A-5-2-6: a polygon containing another polygon (float)\" do\n    a = \"POLYGON((20.0 20.0,20.0 180.0,220.0 180.0,220.0 20.0,20.0 20.0))\" |> Geo.WKT.decode!()\n    b = \"POLYGON((180.0 120.0,100.0 40.0,20.0 180.0,180.0 120.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-039 - A/A-5-3-1: a polygon containing another polygon\" do\n    a = \"POLYGON ((20 20, 20 180, 220 180, 220 20, 20 20))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((20 20, 140 40, 140 120, 20 160, 80 80, 20 20))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-039 - A/A-5-3-1: a polygon containing another polygon (float)\" do\n    a = \"POLYGON((20.0 20.0,20.0 180.0,220.0 180.0,220.0 20.0,20.0 20.0))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((20.0 20.0,140.0 40.0,140.0 120.0,20.0 160.0,80.0 80.0,20.0 20.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-040 - A/A-5-3-2: a polygon containing another polygon\" do\n    a = \"POLYGON ((20 20, 20 180, 220 180, 220 20, 20 20))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((20 20, 140 40, 140 140, 20 180, 80 100, 20 20))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-040 - A/A-5-3-2: a polygon containing another polygon (float)\" do\n    a = \"POLYGON((20.0 20.0,20.0 180.0,220.0 180.0,220.0 20.0,20.0 20.0))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((20.0 20.0,140.0 40.0,140.0 140.0,20.0 180.0,80.0 100.0,20.0 20.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-041 - A/A-5-3-3: a polygon containing another polygon\" do\n    a = \"POLYGON ((20 20, 20 180, 220 180, 220 20, 20 20))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((40 180, 60 100, 180 100, 200 180, 120 120, 40 180))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-041 - A/A-5-3-3: a polygon containing another polygon (float)\" do\n    a = \"POLYGON((20.0 20.0,20.0 180.0,220.0 180.0,220.0 20.0,20.0 20.0))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((40.0 180.0,60.0 100.0,180.0 100.0,200.0 180.0,120.0 120.0,40.0 180.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-042 - A/A-5-3-4: a polygon containing another polygon\" do\n    a = \"POLYGON ((20 20, 20 180, 220 180, 220 20, 20 20))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((20 180, 60 80, 180 80, 220 180, 120 120, 20 180))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-042 - A/A-5-3-4: a polygon containing another polygon (float)\" do\n    a = \"POLYGON((20.0 20.0,20.0 180.0,220.0 180.0,220.0 20.0,20.0 20.0))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((20.0 180.0,60.0 80.0,180.0 80.0,220.0 180.0,120.0 120.0,20.0 180.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-043 - A/A-5-3-5: a polygon containing another polygon\" do\n    a = \"POLYGON ((20 20, 20 180, 220 180, 220 20, 20 20))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((40 60, 20 180, 100 100, 140 180, 160 120, 220 100, 140 40, 40 60))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-043 - A/A-5-3-5: a polygon containing another polygon (float)\" do\n    a = \"POLYGON((20.0 20.0,20.0 180.0,220.0 180.0,220.0 20.0,20.0 20.0))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((40.0 60.0,20.0 180.0,100.0 100.0,140.0 180.0,160.0 120.0,220.0 100.0,140.0 40.0,40.0 60.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-044 - A/A-5-3-6: a polygon containing another polygon\" do\n    a = \"POLYGON ((20 20, 20 180, 220 180, 220 20, 20 20))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((60 100, 180 100, 220 180, 120 140, 20 180, 60 100))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-044 - A/A-5-3-6: a polygon containing another polygon (float)\" do\n    a = \"POLYGON((20.0 20.0,20.0 180.0,220.0 180.0,220.0 20.0,20.0 20.0))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((60.0 100.0,180.0 100.0,220.0 180.0,120.0 140.0,20.0 180.0,60.0 100.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-045 - A/A-5-4-1: a polygon containing another polygon\" do\n    a = \"POLYGON ((20 20, 20 180, 220 180, 220 20, 20 20))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((20 20, 20 140, 120 120, 120 40, 20 20))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-045 - A/A-5-4-1: a polygon containing another polygon (float)\" do\n    a = \"POLYGON((20.0 20.0,20.0 180.0,220.0 180.0,220.0 20.0,20.0 20.0))\" |> Geo.WKT.decode!()\n    b = \"POLYGON((20.0 20.0,20.0 140.0,120.0 120.0,120.0 40.0,20.0 20.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-046 - A/A-5-4-2: a polygon containing another polygon\" do\n    a = \"POLYGON ((20 20, 20 180, 220 180, 220 20, 20 20))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((20 20, 20 180, 140 140, 140 60, 20 20))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-046 - A/A-5-4-2: a polygon containing another polygon (float)\" do\n    a = \"POLYGON((20.0 20.0,20.0 180.0,220.0 180.0,220.0 20.0,20.0 20.0))\" |> Geo.WKT.decode!()\n    b = \"POLYGON((20.0 20.0,20.0 180.0,140.0 140.0,140.0 60.0,20.0 20.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-047 - A/A-5-4-3: a polygon containing another polygon\" do\n    a = \"POLYGON ((20 20, 20 180, 220 180, 220 20, 20 20))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((20 20, 120 40, 120 120, 20 140, 20 20))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-047 - A/A-5-4-3: a polygon containing another polygon (float)\" do\n    a = \"POLYGON((20.0 20.0,20.0 180.0,220.0 180.0,220.0 20.0,20.0 20.0))\" |> Geo.WKT.decode!()\n    b = \"POLYGON((20.0 20.0,120.0 40.0,120.0 120.0,20.0 140.0,20.0 20.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-048 - A/A-5-4-4: a polygon containing another polygon\" do\n    a = \"POLYGON ((20 20, 20 180, 220 180, 220 20, 20 20))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((120 40, 20 20, 20 140, 120 120, 120 40))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-048 - A/A-5-4-4: a polygon containing another polygon (float)\" do\n    a = \"POLYGON((20.0 20.0,20.0 180.0,220.0 180.0,220.0 20.0,20.0 20.0))\" |> Geo.WKT.decode!()\n    b = \"POLYGON((120.0 40.0,20.0 20.0,20.0 140.0,120.0 120.0,120.0 40.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-049 - A/A-5-4-5: a polygon containing another polygon\" do\n    a = \"POLYGON ((20 20, 20 180, 220 180, 220 20, 20 20))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((20 20, 140 60, 140 140, 20 180, 20 20))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-049 - A/A-5-4-5: a polygon containing another polygon (float)\" do\n    a = \"POLYGON((20.0 20.0,20.0 180.0,220.0 180.0,220.0 20.0,20.0 20.0))\" |> Geo.WKT.decode!()\n    b = \"POLYGON((20.0 20.0,140.0 60.0,140.0 140.0,20.0 180.0,20.0 20.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-050 - A/A-5-4-6: a polygon containing another polygon\" do\n    a = \"POLYGON ((20 20, 20 180, 220 180, 220 20, 20 20))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((140 60, 20 20, 20 180, 140 140, 140 60))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-050 - A/A-5-4-6: a polygon containing another polygon (float)\" do\n    a = \"POLYGON((20.0 20.0,20.0 180.0,220.0 180.0,220.0 20.0,20.0 20.0))\" |> Geo.WKT.decode!()\n    b = \"POLYGON((140.0 60.0,20.0 20.0,20.0 180.0,140.0 140.0,140.0 60.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-051 - A/A-5-4-7: a polygon containing another polygon\" do\n    a = \"POLYGON ((20 20, 20 180, 220 180, 220 20, 20 20))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((20 20, 60 120, 140 120, 180 20, 20 20))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-051 - A/A-5-4-7: a polygon containing another polygon (float)\" do\n    a = \"POLYGON((20.0 20.0,20.0 180.0,220.0 180.0,220.0 20.0,20.0 20.0))\" |> Geo.WKT.decode!()\n    b = \"POLYGON((20.0 20.0,60.0 120.0,140.0 120.0,180.0 20.0,20.0 20.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-052 - A/A-5-4-8: a polygon containing another polygon\" do\n    a = \"POLYGON ((20 20, 20 180, 220 180, 220 20, 20 20))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((20 40, 120 40, 120 120, 20 140, 20 40))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-052 - A/A-5-4-8: a polygon containing another polygon (float)\" do\n    a = \"POLYGON((20.0 20.0,20.0 180.0,220.0 180.0,220.0 20.0,20.0 20.0))\" |> Geo.WKT.decode!()\n    b = \"POLYGON((20.0 40.0,120.0 40.0,120.0 120.0,20.0 140.0,20.0 40.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-053 - A/A-5-5-1: a polygon containing another polygon\" do\n    a = \"POLYGON ((20 20, 20 180, 220 180, 220 20, 20 20))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((20 20, 20 180, 60 120, 100 180, 140 120, 220 180, 200 120, 140 60, 20 20))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-053 - A/A-5-5-1: a polygon containing another polygon (float)\" do\n    a = \"POLYGON((20.0 20.0,20.0 180.0,220.0 180.0,220.0 20.0,20.0 20.0))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((20.0 20.0,20.0 180.0,60.0 120.0,100.0 180.0,140.0 120.0,220.0 180.0,200.0 120.0,140.0 60.0,20.0 20.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-054 - A/A-6-1: a polygon overlapping another polygon\" do\n    a = \"POLYGON ((150 150, 330 150, 250 70, 70 70, 150 150))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((150 150, 270 150, 140 20, 20 20, 150 150))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-054 - A/A-6-1: a polygon overlapping another polygon (float)\" do\n    a = \"POLYGON((150.0 150.0,330.0 150.0,250.0 70.0,70.0 70.0,150.0 150.0))\" |> Geo.WKT.decode!()\n    b = \"POLYGON((150.0 150.0,270.0 150.0,140.0 20.0,20.0 20.0,150.0 150.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-055 - A/A-6-2: a polygon overlapping another polygon\" do\n    a =\n      \"POLYGON ((150 150, 270 150, 330 150, 250 70, 190 70, 70 70, 150 150))\" |> Geo.WKT.decode!()\n\n    b = \"POLYGON ((150 150, 270 150, 190 70, 140 20, 20 20, 70 70, 150 150))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-055 - A/A-6-2: a polygon overlapping another polygon (float)\" do\n    a =\n      \"POLYGON((150.0 150.0,270.0 150.0,330.0 150.0,250.0 70.0,190.0 70.0,70.0 70.0,150.0 150.0))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((150.0 150.0,270.0 150.0,190.0 70.0,140.0 20.0,20.0 20.0,70.0 70.0,150.0 150.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-056 - A/A-6-3: spiky polygons overlapping; boundary &lt;-&gt; boundary intersecting at 0 dimension\" do\n    a =\n      \"POLYGON ((20 20, 60 50, 20 40, 60 70, 20 60, 60 90, 20 90, 70 110, 20 130, 80 130, 20 150, 80 160, 20 170, 80 180, 20 200, 80 200, 30 240, 80 220, 50 260, 100 220, 100 260, 120 220, 130 260, 140 220, 150 280, 150 190, 160 280, 170 190, 180 280, 190 190, 200 280, 210 190, 220 280, 230 190, 240 260, 250 230, 260 260, 260 220, 290 270, 290 220, 330 260, 300 210, 340 240, 290 180, 340 210, 290 170, 350 170, 240 150, 350 150, 240 140, 350 130, 240 120, 350 120, 240 110, 350 110, 240 100, 350 100, 240 90, 350 90, 240 80, 350 80, 300 70, 340 60, 290 60, 340 40, 300 50, 340 20, 270 60, 310 20, 250 60, 270 20, 230 60, 240 20, 210 60, 210 20, 190 70, 190 20, 180 90, 170 20, 160 90, 150 20, 140 90, 130 20, 120 90, 110 20, 100 90, 100 20, 90 60, 80 20, 70 40, 20 20))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((190 140, 140 130, 200 160, 130 150, 210 170, 130 170, 210 180, 120 190, 220 200, 120 200, 250 210, 120 210, 250 220, 120 220, 250 230, 120 240, 230 240, 120 250, 240 260, 120 260, 240 270, 120 270, 270 290, 120 290, 230 300, 150 310, 250 310, 180 320, 250 320, 200 360, 260 330, 240 360, 280 320, 290 370, 290 320, 320 360, 310 320, 360 360, 310 310, 380 340, 310 290, 390 330, 310 280, 410 310, 310 270, 420 280, 310 260, 430 250, 300 250, 440 240, 300 240, 450 230, 280 220, 440 220, 280 210, 440 210, 300 200, 430 190, 300 190, 440 180, 330 180, 430 150, 320 180, 420 130, 300 180, 410 120, 280 180, 400 110, 280 170, 390 90, 280 160, 400 70, 270 160, 450 30, 260 160, 420 30, 250 160, 390 30, 240 160, 370 30, 230 160, 360 30, 230 150, 330 50, 240 130, 330 30, 230 130, 310 30, 220 130, 280 30, 230 100, 270 40, 220 110, 250 30, 210 130, 240 30, 210 100, 220 40, 200 90, 200 20, 190 100, 180 30, 20 20, 180 40, 20 30, 180 50, 20 50, 180 60, 30 60, 180 70, 20 70, 170 80, 80 80, 170 90, 20 80, 180 100, 40 100, 200 110, 60 110, 200 120, 120 120, 190 140))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-056 - A/A-6-3: spiky polygons overlapping; boundary &lt;-&gt; boundary intersecting at 0 dimension (float)\" do\n    a =\n      \"POLYGON((20.0 20.0,60.0 50.0,20.0 40.0,60.0 70.0,20.0 60.0,60.0 90.0,20.0 90.0,70.0 110.0,20.0 130.0,80.0 130.0,20.0 150.0,80.0 160.0,20.0 170.0,80.0 180.0,20.0 200.0,80.0 200.0,30.0 240.0,80.0 220.0,50.0 260.0,100.0 220.0,100.0 260.0,120.0 220.0,130.0 260.0,140.0 220.0,150.0 280.0,150.0 190.0,160.0 280.0,170.0 190.0,180.0 280.0,190.0 190.0,200.0 280.0,210.0 190.0,220.0 280.0,230.0 190.0,240.0 260.0,250.0 230.0,260.0 260.0,260.0 220.0,290.0 270.0,290.0 220.0,330.0 260.0,300.0 210.0,340.0 240.0,290.0 180.0,340.0 210.0,290.0 170.0,350.0 170.0,240.0 150.0,350.0 150.0,240.0 140.0,350.0 130.0,240.0 120.0,350.0 120.0,240.0 110.0,350.0 110.0,240.0 100.0,350.0 100.0,240.0 90.0,350.0 90.0,240.0 80.0,350.0 80.0,300.0 70.0,340.0 60.0,290.0 60.0,340.0 40.0,300.0 50.0,340.0 20.0,270.0 60.0,310.0 20.0,250.0 60.0,270.0 20.0,230.0 60.0,240.0 20.0,210.0 60.0,210.0 20.0,190.0 70.0,190.0 20.0,180.0 90.0,170.0 20.0,160.0 90.0,150.0 20.0,140.0 90.0,130.0 20.0,120.0 90.0,110.0 20.0,100.0 90.0,100.0 20.0,90.0 60.0,80.0 20.0,70.0 40.0,20.0 20.0))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((190.0 140.0,140.0 130.0,200.0 160.0,130.0 150.0,210.0 170.0,130.0 170.0,210.0 180.0,120.0 190.0,220.0 200.0,120.0 200.0,250.0 210.0,120.0 210.0,250.0 220.0,120.0 220.0,250.0 230.0,120.0 240.0,230.0 240.0,120.0 250.0,240.0 260.0,120.0 260.0,240.0 270.0,120.0 270.0,270.0 290.0,120.0 290.0,230.0 300.0,150.0 310.0,250.0 310.0,180.0 320.0,250.0 320.0,200.0 360.0,260.0 330.0,240.0 360.0,280.0 320.0,290.0 370.0,290.0 320.0,320.0 360.0,310.0 320.0,360.0 360.0,310.0 310.0,380.0 340.0,310.0 290.0,390.0 330.0,310.0 280.0,410.0 310.0,310.0 270.0,420.0 280.0,310.0 260.0,430.0 250.0,300.0 250.0,440.0 240.0,300.0 240.0,450.0 230.0,280.0 220.0,440.0 220.0,280.0 210.0,440.0 210.0,300.0 200.0,430.0 190.0,300.0 190.0,440.0 180.0,330.0 180.0,430.0 150.0,320.0 180.0,420.0 130.0,300.0 180.0,410.0 120.0,280.0 180.0,400.0 110.0,280.0 170.0,390.0 90.0,280.0 160.0,400.0 70.0,270.0 160.0,450.0 30.0,260.0 160.0,420.0 30.0,250.0 160.0,390.0 30.0,240.0 160.0,370.0 30.0,230.0 160.0,360.0 30.0,230.0 150.0,330.0 50.0,240.0 130.0,330.0 30.0,230.0 130.0,310.0 30.0,220.0 130.0,280.0 30.0,230.0 100.0,270.0 40.0,220.0 110.0,250.0 30.0,210.0 130.0,240.0 30.0,210.0 100.0,220.0 40.0,200.0 90.0,200.0 20.0,190.0 100.0,180.0 30.0,20.0 20.0,180.0 40.0,20.0 30.0,180.0 50.0,20.0 50.0,180.0 60.0,30.0 60.0,180.0 70.0,20.0 70.0,170.0 80.0,80.0 80.0,170.0 90.0,20.0 80.0,180.0 100.0,40.0 100.0,200.0 110.0,60.0 110.0,200.0 120.0,120.0 120.0,190.0 140.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-057 - A/A-6-4: spiky polygons overlapping; boundary &lt;-&gt; boundary intersecting at 1 dimension at a few locations\" do\n    a =\n      \"POLYGON ((70 150, 20 160, 110 160, 20 180, 100 200, 20 200, 190 210, 20 210, 160 220, 20 220, 150 230, 60 240, 180 250, 20 260, 170 260, 60 270, 160 270, 100 310, 170 280, 200 260, 180 230, 210 260, 130 330, 230 250, 210 290, 240 250, 230 210, 260 300, 250 230, 270 300, 270 240, 300 340, 280 250, 320 330, 290 250, 340 350, 290 240, 350 360, 270 190, 350 340, 290 200, 350 330, 300 190, 360 320, 310 190, 360 300, 320 200, 360 280, 330 200, 360 260, 340 200, 370 260, 340 180, 390 290, 340 170, 400 260, 350 170, 400 250, 350 160, 410 240, 350 150, 400 170, 350 140, 310 170, 340 140, 270 180, 330 140, 260 170, 310 140, 240 170, 290 140, 200 190, 270 140, 180 190, 260 140, 170 190, 260 130, 170 180, 250 130, 170 170, 240 120, 170 160, 210 120, 170 150, 210 110, 340 130, 230 110, 420 140, 220 100, 410 130, 220 90, 400 120, 220 80, 390 110, 220 70, 420 110, 240 70, 420 100, 260 70, 420 90, 280 70, 430 80, 230 60, 430 60, 270 50, 450 40, 210 50, 370 40, 260 40, 460 30, 160 40, 210 60, 200 110, 190 60, 190 120, 170 50, 180 130, 150 30, 170 130, 140 20, 160 120, 130 20, 160 150, 120 20, 160 170, 110 20, 160 190, 100 20, 150 190, 90 20, 140 180, 80 20, 120 140, 70 20, 120 150, 60 20, 110 150, 50 20, 100 140, 50 30, 90 130, 40 30, 80 120, 30 30, 80 130, 30 40, 80 140, 20 40, 70 140, 40 90, 60 130, 20 90, 60 140, 20 130, 70 150))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((190 140, 140 130, 200 160, 130 150, 210 170, 130 170, 210 180, 120 190, 220 200, 120 200, 250 210, 120 210, 250 220, 120 220, 250 230, 120 240, 230 240, 120 250, 240 260, 120 260, 240 270, 120 270, 270 290, 120 290, 230 300, 150 310, 250 310, 180 320, 250 320, 200 360, 260 330, 240 360, 280 320, 290 370, 290 320, 320 360, 310 320, 360 360, 310 310, 380 340, 310 290, 390 330, 310 280, 410 310, 310 270, 420 280, 310 260, 430 250, 300 250, 440 240, 300 240, 450 230, 280 220, 440 220, 280 210, 440 210, 300 200, 430 190, 300 190, 440 180, 330 180, 430 150, 320 180, 420 130, 300 180, 410 120, 280 180, 400 110, 280 170, 390 90, 280 160, 400 70, 270 160, 450 30, 260 160, 420 30, 250 160, 390 30, 240 160, 370 30, 230 160, 360 30, 230 150, 330 50, 240 130, 330 30, 230 130, 310 30, 220 130, 280 30, 230 100, 270 40, 220 110, 250 30, 210 130, 240 30, 210 100, 220 40, 200 90, 200 20, 190 100, 180 30, 20 20, 180 40, 20 30, 180 50, 20 50, 180 60, 30 60, 180 70, 20 70, 170 80, 80 80, 170 90, 20 80, 180 100, 40 100, 200 110, 60 110, 200 120, 120 120, 190 140))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-057 - A/A-6-4: spiky polygons overlapping; boundary &lt;-&gt; boundary intersecting at 1 dimension at a few locations (float)\" do\n    a =\n      \"POLYGON((70.0 150.0,20.0 160.0,110.0 160.0,20.0 180.0,100.0 200.0,20.0 200.0,190.0 210.0,20.0 210.0,160.0 220.0,20.0 220.0,150.0 230.0,60.0 240.0,180.0 250.0,20.0 260.0,170.0 260.0,60.0 270.0,160.0 270.0,100.0 310.0,170.0 280.0,200.0 260.0,180.0 230.0,210.0 260.0,130.0 330.0,230.0 250.0,210.0 290.0,240.0 250.0,230.0 210.0,260.0 300.0,250.0 230.0,270.0 300.0,270.0 240.0,300.0 340.0,280.0 250.0,320.0 330.0,290.0 250.0,340.0 350.0,290.0 240.0,350.0 360.0,270.0 190.0,350.0 340.0,290.0 200.0,350.0 330.0,300.0 190.0,360.0 320.0,310.0 190.0,360.0 300.0,320.0 200.0,360.0 280.0,330.0 200.0,360.0 260.0,340.0 200.0,370.0 260.0,340.0 180.0,390.0 290.0,340.0 170.0,400.0 260.0,350.0 170.0,400.0 250.0,350.0 160.0,410.0 240.0,350.0 150.0,400.0 170.0,350.0 140.0,310.0 170.0,340.0 140.0,270.0 180.0,330.0 140.0,260.0 170.0,310.0 140.0,240.0 170.0,290.0 140.0,200.0 190.0,270.0 140.0,180.0 190.0,260.0 140.0,170.0 190.0,260.0 130.0,170.0 180.0,250.0 130.0,170.0 170.0,240.0 120.0,170.0 160.0,210.0 120.0,170.0 150.0,210.0 110.0,340.0 130.0,230.0 110.0,420.0 140.0,220.0 100.0,410.0 130.0,220.0 90.0,400.0 120.0,220.0 80.0,390.0 110.0,220.0 70.0,420.0 110.0,240.0 70.0,420.0 100.0,260.0 70.0,420.0 90.0,280.0 70.0,430.0 80.0,230.0 60.0,430.0 60.0,270.0 50.0,450.0 40.0,210.0 50.0,370.0 40.0,260.0 40.0,460.0 30.0,160.0 40.0,210.0 60.0,200.0 110.0,190.0 60.0,190.0 120.0,170.0 50.0,180.0 130.0,150.0 30.0,170.0 130.0,140.0 20.0,160.0 120.0,130.0 20.0,160.0 150.0,120.0 20.0,160.0 170.0,110.0 20.0,160.0 190.0,100.0 20.0,150.0 190.0,90.0 20.0,140.0 180.0,80.0 20.0,120.0 140.0,70.0 20.0,120.0 150.0,60.0 20.0,110.0 150.0,50.0 20.0,100.0 140.0,50.0 30.0,90.0 130.0,40.0 30.0,80.0 120.0,30.0 30.0,80.0 130.0,30.0 40.0,80.0 140.0,20.0 40.0,70.0 140.0,40.0 90.0,60.0 130.0,20.0 90.0,60.0 140.0,20.0 130.0,70.0 150.0))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((190.0 140.0,140.0 130.0,200.0 160.0,130.0 150.0,210.0 170.0,130.0 170.0,210.0 180.0,120.0 190.0,220.0 200.0,120.0 200.0,250.0 210.0,120.0 210.0,250.0 220.0,120.0 220.0,250.0 230.0,120.0 240.0,230.0 240.0,120.0 250.0,240.0 260.0,120.0 260.0,240.0 270.0,120.0 270.0,270.0 290.0,120.0 290.0,230.0 300.0,150.0 310.0,250.0 310.0,180.0 320.0,250.0 320.0,200.0 360.0,260.0 330.0,240.0 360.0,280.0 320.0,290.0 370.0,290.0 320.0,320.0 360.0,310.0 320.0,360.0 360.0,310.0 310.0,380.0 340.0,310.0 290.0,390.0 330.0,310.0 280.0,410.0 310.0,310.0 270.0,420.0 280.0,310.0 260.0,430.0 250.0,300.0 250.0,440.0 240.0,300.0 240.0,450.0 230.0,280.0 220.0,440.0 220.0,280.0 210.0,440.0 210.0,300.0 200.0,430.0 190.0,300.0 190.0,440.0 180.0,330.0 180.0,430.0 150.0,320.0 180.0,420.0 130.0,300.0 180.0,410.0 120.0,280.0 180.0,400.0 110.0,280.0 170.0,390.0 90.0,280.0 160.0,400.0 70.0,270.0 160.0,450.0 30.0,260.0 160.0,420.0 30.0,250.0 160.0,390.0 30.0,240.0 160.0,370.0 30.0,230.0 160.0,360.0 30.0,230.0 150.0,330.0 50.0,240.0 130.0,330.0 30.0,230.0 130.0,310.0 30.0,220.0 130.0,280.0 30.0,230.0 100.0,270.0 40.0,220.0 110.0,250.0 30.0,210.0 130.0,240.0 30.0,210.0 100.0,220.0 40.0,200.0 90.0,200.0 20.0,190.0 100.0,180.0 30.0,20.0 20.0,180.0 40.0,20.0 30.0,180.0 50.0,20.0 50.0,180.0 60.0,30.0 60.0,180.0 70.0,20.0 70.0,170.0 80.0,80.0 80.0,170.0 90.0,20.0 80.0,180.0 100.0,40.0 100.0,200.0 110.0,60.0 110.0,200.0 120.0,120.0 120.0,190.0 140.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-058 - A/A-6-5: a polygon overlapping another polygon\" do\n    a = \"POLYGON ((60 160, 220 160, 220 20, 60 20, 60 160))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((60 160, 20 200, 260 200, 220 160, 140 80, 60 160))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-058 - A/A-6-5: a polygon overlapping another polygon (float)\" do\n    a = \"POLYGON((60.0 160.0,220.0 160.0,220.0 20.0,60.0 20.0,60.0 160.0))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((60.0 160.0,20.0 200.0,260.0 200.0,220.0 160.0,140.0 80.0,60.0 160.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-059 - A/A-6-6: a polygon overlapping another polygon\" do\n    a = \"POLYGON ((60 160, 220 160, 220 20, 60 20, 60 160))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((60 160, 20 200, 260 200, 140 80, 60 160))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-059 - A/A-6-6: a polygon overlapping another polygon (float)\" do\n    a = \"POLYGON((60.0 160.0,220.0 160.0,220.0 20.0,60.0 20.0,60.0 160.0))\" |> Geo.WKT.decode!()\n    b = \"POLYGON((60.0 160.0,20.0 200.0,260.0 200.0,140.0 80.0,60.0 160.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-060 - A/A-6-7: a polygon overlapping another polygon\" do\n    a = \"POLYGON ((60 160, 220 160, 220 20, 60 20, 60 160))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((20 200, 140 80, 260 200, 20 200))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-060 - A/A-6-7: a polygon overlapping another polygon (float)\" do\n    a = \"POLYGON((60.0 160.0,220.0 160.0,220.0 20.0,60.0 20.0,60.0 160.0))\" |> Geo.WKT.decode!()\n    b = \"POLYGON((20.0 200.0,140.0 80.0,260.0 200.0,20.0 200.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-061 - A/A-6-8: a polygon overlapping another polygon\" do\n    a = \"POLYGON ((60 160, 220 160, 220 20, 60 20, 60 160))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((20 200, 60 160, 140 80, 220 160, 260 200, 20 200))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-061 - A/A-6-8: a polygon overlapping another polygon (float)\" do\n    a = \"POLYGON((60.0 160.0,220.0 160.0,220.0 20.0,60.0 20.0,60.0 160.0))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((20.0 200.0,60.0 160.0,140.0 80.0,220.0 160.0,260.0 200.0,20.0 200.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-062 - A/A-6-9: a polygon overlapping another polygon\" do\n    a = \"POLYGON ((60 160, 220 160, 220 20, 60 20, 60 160))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((20 200, 60 160, 140 80, 260 200, 20 200))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-062 - A/A-6-9: a polygon overlapping another polygon (float)\" do\n    a = \"POLYGON((60.0 160.0,220.0 160.0,220.0 20.0,60.0 20.0,60.0 160.0))\" |> Geo.WKT.decode!()\n    b = \"POLYGON((20.0 200.0,60.0 160.0,140.0 80.0,260.0 200.0,20.0 200.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-063 - A/A-6-10: a polygon overlapping a skinny polygon\" do\n    a = \"POLYGON ((0 0, 0 200, 200 200, 200 0, 0 0))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((100 100, 1000000 110, 10000000 100, 100 100))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-063 - A/A-6-10: a polygon overlapping a skinny polygon (float)\" do\n    a = \"POLYGON((0.0 0.0,0.0 200.0,200.0 200.0,200.0 0.0,0.0 0.0))\" |> Geo.WKT.decode!()\n    b = \"POLYGON((100.0 100.0,1.0e6 110.0,1.0e7 100.0,100.0 100.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-064 - A/A-6-11: a polygon overlapping a skinny polygon\" do\n    a = \"POLYGON ((100 0, 100 200, 200 200, 200 0, 100 0))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((100 100, 1000000 110, 10000000 100, 100 100))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-064 - A/A-6-11: a polygon overlapping a skinny polygon (float)\" do\n    a = \"POLYGON((100.0 0.0,100.0 200.0,200.0 200.0,200.0 0.0,100.0 0.0))\" |> Geo.WKT.decode!()\n    b = \"POLYGON((100.0 100.0,1.0e6 110.0,1.0e7 100.0,100.0 100.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-065 - A/A-6-12: a polygon overlapping a skinny polygon\" do\n    a = \"POLYGON ((120 0, 120 200, 200 200, 200 0, 120 0))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((100 100, 1000000 110, 10000000 100, 100 100))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-065 - A/A-6-12: a polygon overlapping a skinny polygon (float)\" do\n    a = \"POLYGON((120.0 0.0,120.0 200.0,200.0 200.0,200.0 0.0,120.0 0.0))\" |> Geo.WKT.decode!()\n    b = \"POLYGON((100.0 100.0,1.0e6 110.0,1.0e7 100.0,100.0 100.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-066 - A/A-6-13: a polygon overlapping a skinny polygon\" do\n    a = \"POLYGON ((0 0, 0 200, 110 200, 110 0, 0 0))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((100 100, 1000000 110, 10000000 100, 100 100))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-066 - A/A-6-13: a polygon overlapping a skinny polygon (float)\" do\n    a = \"POLYGON((0.0 0.0,0.0 200.0,110.0 200.0,110.0 0.0,0.0 0.0))\" |> Geo.WKT.decode!()\n    b = \"POLYGON((100.0 100.0,1.0e6 110.0,1.0e7 100.0,100.0 100.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-067 - A/A-6-14: a polygon overlapping a skinny polygon\" do\n    a = \"POLYGON ((100 100, 100 200, 200 200, 200 100, 100 100))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((100 100, 2100 110, 2100 100, 100 100))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-067 - A/A-6-14: a polygon overlapping a skinny polygon (float)\" do\n    a =\n      \"POLYGON((100.0 100.0,100.0 200.0,200.0 200.0,200.0 100.0,100.0 100.0))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON((100.0 100.0,2.1e3 110.0,2.1e3 100.0,100.0 100.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-068 - A/A-6-15: a polygon overlapping a skinny polygon\" do\n    a = \"POLYGON ((100 100, 100 200, 200 200, 200 100, 100 100))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((100 100, 2101 110, 2101 100, 100 100))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-068 - A/A-6-15: a polygon overlapping a skinny polygon (float)\" do\n    a =\n      \"POLYGON((100.0 100.0,100.0 200.0,200.0 200.0,200.0 100.0,100.0 100.0))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON((100.0 100.0,2101.0 110.0,2101.0 100.0,100.0 100.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-069 - A/A-6-16: two skinny polygons overlapping\" do\n    a = \"POLYGON ((100 100, 200 200, 200 100, 100 100))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((100 100, 2101 110, 2101 100, 100 100))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-069 - A/A-6-16: two skinny polygons overlapping (float)\" do\n    a = \"POLYGON((100.0 100.0,200.0 200.0,200.0 100.0,100.0 100.0))\" |> Geo.WKT.decode!()\n    b = \"POLYGON((100.0 100.0,2101.0 110.0,2101.0 100.0,100.0 100.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-070 - A/A-6-17: a polygon overlapping a skinny polygon\" do\n    a = \"POLYGON ((100 100, 100 200, 200 200, 200 100, 100 100))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((100 100, 1000000 110, 1000000 100, 100 100))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-070 - A/A-6-17: a polygon overlapping a skinny polygon (float)\" do\n    a =\n      \"POLYGON((100.0 100.0,100.0 200.0,200.0 200.0,200.0 100.0,100.0 100.0))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON((100.0 100.0,1.0e6 110.0,1.0e6 100.0,100.0 100.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-071 - A/A-6-19: a polygon overlapping a skinny polygon\" do\n    a = \"POLYGON ((120 100, 120 200, 200 200, 200 100, 120 100))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((100 100, 500 110, 500 100, 100 100))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-071 - A/A-6-19: a polygon overlapping a skinny polygon (float)\" do\n    a =\n      \"POLYGON((120.0 100.0,120.0 200.0,200.0 200.0,200.0 100.0,120.0 100.0))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON((100.0 100.0,500.0 110.0,500.0 100.0,100.0 100.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-072 - A/A-6-20: a polygon overlapping a skinny polygon\" do\n    a = \"POLYGON ((120 100, 120 200, 200 200, 200 100, 120 100))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((100 100, 501 110, 501 100, 100 100))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-072 - A/A-6-20: a polygon overlapping a skinny polygon (float)\" do\n    a =\n      \"POLYGON((120.0 100.0,120.0 200.0,200.0 200.0,200.0 100.0,120.0 100.0))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON((100.0 100.0,501.0 110.0,501.0 100.0,100.0 100.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-073 - A/A-6-21: a polygon overlapping a skinny polygon\" do\n    a = \"POLYGON ((120 100, 130 200, 200 200, 200 100, 120 100))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((100 100, 501 110, 501 100, 100 100))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-073 - A/A-6-21: a polygon overlapping a skinny polygon (float)\" do\n    a =\n      \"POLYGON((120.0 100.0,130.0 200.0,200.0 200.0,200.0 100.0,120.0 100.0))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON((100.0 100.0,501.0 110.0,501.0 100.0,100.0 100.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-074 - A/A-6-22: a polygon overlapping a skinny polygon\" do\n    a = \"POLYGON ((120 100, 17 200, 200 200, 200 100, 120 100))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((100 100, 501 110, 501 100, 100 100))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-074 - A/A-6-22: a polygon overlapping a skinny polygon (float)\" do\n    a =\n      \"POLYGON((120.0 100.0,17.0 200.0,200.0 200.0,200.0 100.0,120.0 100.0))\" |> Geo.WKT.decode!()\n\n    b = \"POLYGON((100.0 100.0,501.0 110.0,501.0 100.0,100.0 100.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-075 - A/A-6-23: a polygon overlapping a skinny polygon\" do\n    a = \"POLYGON ((120 100, 120 200, 200 200, 200 100, 120 100))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((100 100, 1000000 110, 1000000 100, 100 100))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-075 - A/A-6-23: a polygon overlapping a skinny polygon (float)\" do\n    a =\n      \"POLYGON((120.0 100.0,120.0 200.0,200.0 200.0,200.0 100.0,120.0 100.0))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON((100.0 100.0,1.0e6 110.0,1.0e6 100.0,100.0 100.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-076 - A/A-6-25: two skinny polygons overlapping\" do\n    a = \"POLYGON ((101 99, 101 1000000, 102 1000000, 101 99))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((100 100, 1000000 110, 1000000 100, 100 100))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-076 - A/A-6-25: two skinny polygons overlapping (float)\" do\n    a = \"POLYGON((101.0 99.0,101.0 1.0e6,102.0 1.0e6,101.0 99.0))\" |> Geo.WKT.decode!()\n    b = \"POLYGON((100.0 100.0,1.0e6 110.0,1.0e6 100.0,100.0 100.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-077 - A/A-6-26: two skinny polygons overlapping\" do\n    a = \"POLYGON ((100 100, 200 101, 200 100, 100 100))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((100 100, 2101 110, 2101 100, 100 100))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-077 - A/A-6-26: two skinny polygons overlapping (float)\" do\n    a = \"POLYGON((100.0 100.0,200.0 101.0,200.0 100.0,100.0 100.0))\" |> Geo.WKT.decode!()\n    b = \"POLYGON((100.0 100.0,2101.0 110.0,2101.0 100.0,100.0 100.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-078 - A/A-6-26: two polygons overlapping\" do\n    a = \"POLYGON ((16 319, 150 39, 25 302, 160 20, 265 20, 127 317, 16 319))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((10 307, 22 307, 153 34, 22 34, 10 307))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-078 - A/A-6-26: two polygons overlapping (float)\" do\n    a =\n      \"POLYGON((16.0 319.0,150.0 39.0,25.0 302.0,160.0 20.0,265.0 20.0,127.0 317.0,16.0 319.0))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON((10.0 307.0,22.0 307.0,153.0 34.0,22.0 34.0,10.0 307.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-079 - A/Ah-3-1: the closing point of a polygon touching the closing points of another polygon and its hole\" do\n    a = \"POLYGON ((160 200, 210 70, 120 70, 160 200))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((160 200, 310 20, 20 20, 160 200),(160 200, 260 40, 70 40, 160 200))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-079 - A/Ah-3-1: the closing point of a polygon touching the closing points of another polygon and its hole (float)\" do\n    a = \"POLYGON((160.0 200.0,210.0 70.0,120.0 70.0,160.0 200.0))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((160.0 200.0,310.0 20.0,20.0 20.0,160.0 200.0),(160.0 200.0,260.0 40.0,70.0 40.0,160.0 200.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-080 - A/Ah-3-2: the boundary of a polygon touching the inner boundary of another polygon at two spots\" do\n    a = \"POLYGON ((170 120, 240 100, 260 50, 190 70, 170 120))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150),(170 120, 330 120, 260 50, 100 50, 170 120))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-080 - A/Ah-3-2: the boundary of a polygon touching the inner boundary of another polygon at two spots (float)\" do\n    a =\n      \"POLYGON((170.0 120.0,240.0 100.0,260.0 50.0,190.0 70.0,170.0 120.0))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((150.0 150.0,410.0 150.0,280.0 20.0,20.0 20.0,150.0 150.0),(170.0 120.0,330.0 120.0,260.0 50.0,100.0 50.0,170.0 120.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-081 - A/Ah-3-3: the boundary of a polygon touching the inner boundary of another polygon at two spots\" do\n    a = \"POLYGON ((270 90, 200 50, 150 80, 210 120, 270 90))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150),(170 120, 330 120, 260 50, 100 50, 170 120))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-081 - A/Ah-3-3: the boundary of a polygon touching the inner boundary of another polygon at two spots (float)\" do\n    a = \"POLYGON((270.0 90.0,200.0 50.0,150.0 80.0,210.0 120.0,270.0 90.0))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((150.0 150.0,410.0 150.0,280.0 20.0,20.0 20.0,150.0 150.0),(170.0 120.0,330.0 120.0,260.0 50.0,100.0 50.0,170.0 120.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-082 - A/Ah-3-4: the boundary of a polygon touching the inner boundary of another polygon at one spot\" do\n    a = \"POLYGON ((170 120, 260 100, 240 60, 150 80, 170 120))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150),(170 120, 330 120, 260 50, 100 50, 170 120))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-082 - A/Ah-3-4: the boundary of a polygon touching the inner boundary of another polygon at one spot (float)\" do\n    a =\n      \"POLYGON((170.0 120.0,260.0 100.0,240.0 60.0,150.0 80.0,170.0 120.0))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((150.0 150.0,410.0 150.0,280.0 20.0,20.0 20.0,150.0 150.0),(170.0 120.0,330.0 120.0,260.0 50.0,100.0 50.0,170.0 120.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-083 - A/Ah-3-5: the boundary of a polygon touching the inner boundary of another polygon at one spot\" do\n    a = \"POLYGON ((220 120, 270 80, 200 60, 160 100, 220 120))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150),(170 120, 330 120, 260 50, 100 50, 170 120))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-083 - A/Ah-3-5: the boundary of a polygon touching the inner boundary of another polygon at one spot (float)\" do\n    a =\n      \"POLYGON((220.0 120.0,270.0 80.0,200.0 60.0,160.0 100.0,220.0 120.0))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((150.0 150.0,410.0 150.0,280.0 20.0,20.0 20.0,150.0 150.0),(170.0 120.0,330.0 120.0,260.0 50.0,100.0 50.0,170.0 120.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-084 - A/Ah-3-6: the boundary of a polygon touching the inner boundary of another polygon at one spot\" do\n    a = \"POLYGON ((260 50, 180 70, 180 110, 260 90, 260 50))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150),(170 120, 330 120, 260 50, 100 50, 170 120))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-084 - A/Ah-3-6: the boundary of a polygon touching the inner boundary of another polygon at one spot (float)\" do\n    a = \"POLYGON((260.0 50.0,180.0 70.0,180.0 110.0,260.0 90.0,260.0 50.0))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((150.0 150.0,410.0 150.0,280.0 20.0,20.0 20.0,150.0 150.0),(170.0 120.0,330.0 120.0,260.0 50.0,100.0 50.0,170.0 120.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-085 - A/Ah-3-7: the boundary of a polygon touching the inner boundary of another polygon at two spots\" do\n    a = \"POLYGON ((230 110, 290 80, 190 60, 140 90, 230 110))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150),(170 120, 330 120, 260 50, 100 50, 170 120))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-085 - A/Ah-3-7: the boundary of a polygon touching the inner boundary of another polygon at two spots (float)\" do\n    a = \"POLYGON((230.0 110.0,290.0 80.0,190.0 60.0,140.0 90.0,230.0 110.0))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((150.0 150.0,410.0 150.0,280.0 20.0,20.0 20.0,150.0 150.0),(170.0 120.0,330.0 120.0,260.0 50.0,100.0 50.0,170.0 120.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-086 - A/Ah-3-8: the boundary of a polygon touching the inner boundary of another polygon\" do\n    a = \"POLYGON ((170 120, 330 120, 260 50, 100 50, 170 120))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150),(170 120, 330 120, 260 50, 100 50, 170 120))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-086 - A/Ah-3-8: the boundary of a polygon touching the inner boundary of another polygon (float)\" do\n    a =\n      \"POLYGON((170.0 120.0,330.0 120.0,260.0 50.0,100.0 50.0,170.0 120.0))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((150.0 150.0,410.0 150.0,280.0 20.0,20.0 20.0,150.0 150.0),(170.0 120.0,330.0 120.0,260.0 50.0,100.0 50.0,170.0 120.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-087 - A/Ah-3-9: part of the boundary of a polygon touching part of the inner boundary of another polygon\" do\n    a = \"POLYGON ((170 120, 330 120, 280 70, 120 70, 170 120))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150),(170 120, 330 120, 260 50, 100 50, 170 120))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-087 - A/Ah-3-9: part of the boundary of a polygon touching part of the inner boundary of another polygon (float)\" do\n    a =\n      \"POLYGON((170.0 120.0,330.0 120.0,280.0 70.0,120.0 70.0,170.0 120.0))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((150.0 150.0,410.0 150.0,280.0 20.0,20.0 20.0,150.0 150.0),(170.0 120.0,330.0 120.0,260.0 50.0,100.0 50.0,170.0 120.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-088 - A/Ah-3-10: part of the boundary of a polygon touching part of the inner boundary of another polygon\" do\n    a = \"POLYGON ((170 120, 300 120, 250 70, 120 70, 170 120))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150),(170 120, 330 120, 260 50, 100 50, 170 120))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-088 - A/Ah-3-10: part of the boundary of a polygon touching part of the inner boundary of another polygon (float)\" do\n    a =\n      \"POLYGON((170.0 120.0,300.0 120.0,250.0 70.0,120.0 70.0,170.0 120.0))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((150.0 150.0,410.0 150.0,280.0 20.0,20.0 20.0,150.0 150.0),(170.0 120.0,330.0 120.0,260.0 50.0,100.0 50.0,170.0 120.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-089 - A/Ah-3-11: part of the boundary of a polygon touching part of the inner boundary of another polygon\" do\n    a = \"POLYGON ((190 100, 310 100, 260 50, 140 50, 190 100))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150),(170 120, 330 120, 260 50, 100 50, 170 120))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-089 - A/Ah-3-11: part of the boundary of a polygon touching part of the inner boundary of another polygon (float)\" do\n    a =\n      \"POLYGON((190.0 100.0,310.0 100.0,260.0 50.0,140.0 50.0,190.0 100.0))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((150.0 150.0,410.0 150.0,280.0 20.0,20.0 20.0,150.0 150.0),(170.0 120.0,330.0 120.0,260.0 50.0,100.0 50.0,170.0 120.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-090 - A/Ah-5-1: an entire polygon within another polygon which has a hole\" do\n    a = \"POLYGON ((280 130, 360 130, 270 40, 190 40, 280 130))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150),(170 120, 250 120, 180 50, 100 50, 170 120))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-090 - A/Ah-5-1: an entire polygon within another polygon which has a hole (float)\" do\n    a =\n      \"POLYGON((280.0 130.0,360.0 130.0,270.0 40.0,190.0 40.0,280.0 130.0))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((150.0 150.0,410.0 150.0,280.0 20.0,20.0 20.0,150.0 150.0),(170.0 120.0,250.0 120.0,180.0 50.0,100.0 50.0,170.0 120.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-091 - A/Ah-5-2: an entire polygon within another polygon which has a hole\" do\n    a =\n      \"POLYGON ((220 80, 180 40, 80 40, 170 130, 270 130, 230 90, 300 90, 250 30, 280 30, 390 140, 150 140, 40 30, 230 30, 280 80, 220 80))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150),(170 120, 250 120, 180 50, 100 50, 170 120))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-091 - A/Ah-5-2: an entire polygon within another polygon which has a hole (float)\" do\n    a =\n      \"POLYGON((220.0 80.0,180.0 40.0,80.0 40.0,170.0 130.0,270.0 130.0,230.0 90.0,300.0 90.0,250.0 30.0,280.0 30.0,390.0 140.0,150.0 140.0,40.0 30.0,230.0 30.0,280.0 80.0,220.0 80.0))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((150.0 150.0,410.0 150.0,280.0 20.0,20.0 20.0,150.0 150.0),(170.0 120.0,250.0 120.0,180.0 50.0,100.0 50.0,170.0 120.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-092 - A/Ah-5-3: polygon A within polygon B, the boundary of A touching the inner boundary of B\" do\n    a = \"POLYGON ((260 130, 360 130, 280 40, 170 40, 260 130))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150),(170 120, 250 120, 180 50, 100 50, 170 120))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-092 - A/Ah-5-3: polygon A within polygon B, the boundary of A touching the inner boundary of B (float)\" do\n    a =\n      \"POLYGON((260.0 130.0,360.0 130.0,280.0 40.0,170.0 40.0,260.0 130.0))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((150.0 150.0,410.0 150.0,280.0 20.0,20.0 20.0,150.0 150.0),(170.0 120.0,250.0 120.0,180.0 50.0,100.0 50.0,170.0 120.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-093 - A/Ah-5-4: polygon A within polygon B, the boundary of A touching the inner boundary of B\" do\n    a = \"POLYGON ((240 110, 340 110, 290 60, 190 60, 240 110))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150),(170 120, 250 120, 180 50, 100 50, 170 120))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-093 - A/Ah-5-4: polygon A within polygon B, the boundary of A touching the inner boundary of B (float)\" do\n    a =\n      \"POLYGON((240.0 110.0,340.0 110.0,290.0 60.0,190.0 60.0,240.0 110.0))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((150.0 150.0,410.0 150.0,280.0 20.0,20.0 20.0,150.0 150.0),(170.0 120.0,250.0 120.0,180.0 50.0,100.0 50.0,170.0 120.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-094 - A/Ah-5-5: polygon A within polygon B, the boundary of A touching the inner boundary of B\" do\n    a = \"POLYGON ((250 120, 350 120, 280 50, 180 50, 250 120))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((150 150, 410 150, 280 20, 20 20, 150 150),(170 120, 250 120, 180 50, 100 50, 170 120))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-094 - A/Ah-5-5: polygon A within polygon B, the boundary of A touching the inner boundary of B (float)\" do\n    a =\n      \"POLYGON((250.0 120.0,350.0 120.0,280.0 50.0,180.0 50.0,250.0 120.0))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((150.0 150.0,410.0 150.0,280.0 20.0,20.0 20.0,150.0 150.0),(170.0 120.0,250.0 120.0,180.0 50.0,100.0 50.0,170.0 120.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-095 - Ah/Ah-1-1: same polygons (with a hole)\" do\n    a =\n      \"POLYGON ((230 210, 230 20, 20 20, 20 210, 230 210),(120 180, 50 50, 200 50, 120 180))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((230 210, 230 20, 20 20, 20 210, 230 210),(120 180, 50 50, 200 50, 120 180))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"07-095 - Ah/Ah-1-1: same polygons (with a hole) (float)\" do\n    a =\n      \"POLYGON((230.0 210.0,230.0 20.0,20.0 20.0,20.0 210.0,230.0 210.0),(120.0 180.0,50.0 50.0,200.0 50.0,120.0 180.0))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((230.0 210.0,230.0 20.0,20.0 20.0,20.0 210.0,230.0 210.0),(120.0 180.0,50.0 50.0,200.0 50.0,120.0 180.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"07-096 - A2h/A2h-1-1: same polygons (with two holes)\" do\n    a =\n      \"POLYGON ((230 210, 230 20, 20 20, 20 210, 230 210),(140 40, 40 40, 40 170, 140 40),(110 190, 210 190, 210 50, 110 190))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((230 210, 230 20, 20 20, 20 210, 230 210),(140 40, 40 40, 40 170, 140 40),(110 190, 210 190, 210 50, 110 190))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"07-096 - A2h/A2h-1-1: same polygons (with two holes) (float)\" do\n    a =\n      \"POLYGON((230.0 210.0,230.0 20.0,20.0 20.0,20.0 210.0,230.0 210.0),(140.0 40.0,40.0 40.0,40.0 170.0,140.0 40.0),(110.0 190.0,210.0 190.0,210.0 50.0,110.0 190.0))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((230.0 210.0,230.0 20.0,20.0 20.0,20.0 210.0,230.0 210.0),(140.0 40.0,40.0 40.0,40.0 170.0,140.0 40.0),(110.0 190.0,210.0 190.0,210.0 50.0,110.0 190.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == true\n    assert Topo.equals?(a, b) == true\n    assert Topo.equals?(b, a) == true\n  end\n\n  @tag :validation\n  test \"07-097 - A/mA-3-1: a polygon touching multipolygon at two points\" do\n    a = \"POLYGON ((280 190, 330 150, 200 110, 150 150, 280 190))\" |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON (((140 110, 260 110, 170 20, 50 20, 140 110)),((300 270, 420 270, 340 190, 220 190, 300 270)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-097 - A/mA-3-1: a polygon touching multipolygon at two points (float)\" do\n    a =\n      \"POLYGON((280.0 190.0,330.0 150.0,200.0 110.0,150.0 150.0,280.0 190.0))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON(((140.0 110.0,260.0 110.0,170.0 20.0,50.0 20.0,140.0 110.0)),((300.0 270.0,420.0 270.0,340.0 190.0,220.0 190.0,300.0 270.0)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-098 - A/mA-3-2: a polygon touching multipolygon at two points\" do\n    a = \"POLYGON ((80 190, 220 190, 140 110, 0 110, 80 190))\" |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON (((140 110, 260 110, 170 20, 50 20, 140 110)),((300 270, 420 270, 340 190, 220 190, 300 270)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-098 - A/mA-3-2: a polygon touching multipolygon at two points (float)\" do\n    a = \"POLYGON((80.0 190.0,220.0 190.0,140.0 110.0,0.0 110.0,80.0 190.0))\" |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON(((140.0 110.0,260.0 110.0,170.0 20.0,50.0 20.0,140.0 110.0)),((300.0 270.0,420.0 270.0,340.0 190.0,220.0 190.0,300.0 270.0)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-099 - A/mA-3-3: a polygon touching multipolygon at two points\" do\n    a = \"POLYGON ((330 150, 200 110, 150 150, 280 190, 330 150))\" |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON (((140 110, 260 110, 170 20, 50 20, 140 110)),((300 270, 420 270, 340 190, 220 190, 300 270)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-099 - A/mA-3-3: a polygon touching multipolygon at two points (float)\" do\n    a =\n      \"POLYGON((330.0 150.0,200.0 110.0,150.0 150.0,280.0 190.0,330.0 150.0))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON(((140.0 110.0,260.0 110.0,170.0 20.0,50.0 20.0,140.0 110.0)),((300.0 270.0,420.0 270.0,340.0 190.0,220.0 190.0,300.0 270.0)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-100 - A/mA-3-4: a polygon touching multipolygon at one spoint\" do\n    a = \"POLYGON ((290 190, 340 150, 220 120, 170 170, 290 190))\" |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON (((140 110, 260 110, 170 20, 50 20, 140 110)),((300 270, 420 270, 340 190, 220 190, 300 270)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-100 - A/mA-3-4: a polygon touching multipolygon at one spoint (float)\" do\n    a =\n      \"POLYGON((290.0 190.0,340.0 150.0,220.0 120.0,170.0 170.0,290.0 190.0))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON(((140.0 110.0,260.0 110.0,170.0 20.0,50.0 20.0,140.0 110.0)),((300.0 270.0,420.0 270.0,340.0 190.0,220.0 190.0,300.0 270.0)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-101 - A/mA-3-5: a polygon touching multipolygon along boundaries\" do\n    a = \"POLYGON ((220 190, 340 190, 260 110, 140 110, 220 190))\" |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON (((140 110, 260 110, 170 20, 50 20, 140 110)),((300 270, 420 270, 340 190, 220 190, 300 270)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-101 - A/mA-3-5: a polygon touching multipolygon along boundaries (float)\" do\n    a =\n      \"POLYGON((220.0 190.0,340.0 190.0,260.0 110.0,140.0 110.0,220.0 190.0))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON(((140.0 110.0,260.0 110.0,170.0 20.0,50.0 20.0,140.0 110.0)),((300.0 270.0,420.0 270.0,340.0 190.0,220.0 190.0,300.0 270.0)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-102 - A/mA-3-6: a polygon touching multipolygon along boundaries and at a point\" do\n    a = \"POLYGON ((140 190, 220 190, 100 70, 20 70, 140 190))\" |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON (((140 110, 260 110, 170 20, 50 20, 140 110)),((300 270, 420 270, 340 190, 220 190, 300 270)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-102 - A/mA-3-6: a polygon touching multipolygon along boundaries and at a point (float)\" do\n    a = \"POLYGON((140.0 190.0,220.0 190.0,100.0 70.0,20.0 70.0,140.0 190.0))\" |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON(((140.0 110.0,260.0 110.0,170.0 20.0,50.0 20.0,140.0 110.0)),((300.0 270.0,420.0 270.0,340.0 190.0,220.0 190.0,300.0 270.0)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-103 - A/mA-6-1: a polygon overlapping multipolygon\" do\n    a = \"POLYGON ((140 220, 60 140, 140 60, 220 140, 140 220))\" |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON (((100 20, 180 20, 180 100, 100 100, 100 20)),((20 100, 100 100, 100 180, 20 180, 20 100)),((100 180, 180 180, 180 260, 100 260, 100 180)),((180 100, 260 100, 260 180, 180 180, 180 100)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-103 - A/mA-6-1: a polygon overlapping multipolygon (float)\" do\n    a =\n      \"POLYGON((140.0 220.0,60.0 140.0,140.0 60.0,220.0 140.0,140.0 220.0))\" |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON(((100.0 20.0,180.0 20.0,180.0 100.0,100.0 100.0,100.0 20.0)),((20.0 100.0,100.0 100.0,100.0 180.0,20.0 180.0,20.0 100.0)),((100.0 180.0,180.0 180.0,180.0 260.0,100.0 260.0,100.0 180.0)),((180.0 100.0,260.0 100.0,260.0 180.0,180.0 180.0,180.0 100.0)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-104 - mA/mA-3-1: MultiPolygon touching MultiPolygon\" do\n    a =\n      \"MULTIPOLYGON (((110 110, 70 200, 150 200, 110 110)),((110 110, 150 20, 70 20, 110 110)))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON (((110 110, 160 160, 210 110, 160 60, 110 110)),((110 110, 60 60, 10 110, 60 160, 110 110)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-104 - mA/mA-3-1: MultiPolygon touching MultiPolygon (float)\" do\n    a =\n      \"MULTIPOLYGON(((110.0 110.0,70.0 200.0,150.0 200.0,110.0 110.0)),((110.0 110.0,150.0 20.0,70.0 20.0,110.0 110.0)))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON(((110.0 110.0,160.0 160.0,210.0 110.0,160.0 60.0,110.0 110.0)),((110.0 110.0,60.0 60.0,10.0 110.0,60.0 160.0,110.0 110.0)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-105 - mAh/mAh-3-1: MultiPolygon touching MultiPolygon\" do\n    a =\n      \"MULTIPOLYGON (((110 110, 70 200, 150 200, 110 110),(110 110, 100 180, 120 180, 110 110)),((110 110, 150 20, 70 20, 110 110),(110 110, 120 40, 100 40, 110 110)))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON (((110 110, 160 160, 210 110, 160 60, 110 110),(110 110, 160 130, 160 90, 110 110)),((110 110, 60 60, 10 110, 60 160, 110 110),(110 110, 60 90, 60 130, 110 110)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-105 - mAh/mAh-3-1: MultiPolygon touching MultiPolygon (float)\" do\n    a =\n      \"MULTIPOLYGON(((110.0 110.0,70.0 200.0,150.0 200.0,110.0 110.0),(110.0 110.0,100.0 180.0,120.0 180.0,110.0 110.0)),((110.0 110.0,150.0 20.0,70.0 20.0,110.0 110.0),(110.0 110.0,120.0 40.0,100.0 40.0,110.0 110.0)))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON(((110.0 110.0,160.0 160.0,210.0 110.0,160.0 60.0,110.0 110.0),(110.0 110.0,160.0 130.0,160.0 90.0,110.0 110.0)),((110.0 110.0,60.0 60.0,10.0 110.0,60.0 160.0,110.0 110.0),(110.0 110.0,60.0 90.0,60.0 130.0,110.0 110.0)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-106 - mAh/mAh-3-2: MultiPolygon touching MultiPolygon\" do\n    a =\n      \"MULTIPOLYGON (((110 110, 70 200, 200 200, 110 110),(110 110, 100 180, 120 180, 110 110)),((110 110, 200 20, 70 20, 110 110),(110 110, 120 40, 100 40, 110 110)))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON (((110 110, 160 160, 210 110, 160 60, 110 110),(110 110, 160 130, 160 90, 110 110)),((110 110, 60 60, 10 110, 60 160, 110 110),(110 110, 60 90, 60 130, 110 110)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-106 - mAh/mAh-3-2: MultiPolygon touching MultiPolygon (float)\" do\n    a =\n      \"MULTIPOLYGON(((110.0 110.0,70.0 200.0,200.0 200.0,110.0 110.0),(110.0 110.0,100.0 180.0,120.0 180.0,110.0 110.0)),((110.0 110.0,200.0 20.0,70.0 20.0,110.0 110.0),(110.0 110.0,120.0 40.0,100.0 40.0,110.0 110.0)))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON(((110.0 110.0,160.0 160.0,210.0 110.0,160.0 60.0,110.0 110.0),(110.0 110.0,160.0 130.0,160.0 90.0,110.0 110.0)),((110.0 110.0,60.0 60.0,10.0 110.0,60.0 160.0,110.0 110.0),(110.0 110.0,60.0 90.0,60.0 130.0,110.0 110.0)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-107 - mAh/mAh-3-3: MultiPolygon touching MultiPolygon\" do\n    a =\n      \"MULTIPOLYGON (((110 110, 20 200, 200 200, 110 110),(110 110, 100 180, 120 180, 110 110)),((110 110, 200 20, 20 20, 110 110),(110 110, 120 40, 100 40, 110 110)))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON (((110 110, 160 160, 210 110, 160 60, 110 110),(110 110, 160 130, 160 90, 110 110)),((110 110, 60 60, 10 110, 60 160, 110 110),(110 110, 60 90, 60 130, 110 110)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-107 - mAh/mAh-3-3: MultiPolygon touching MultiPolygon (float)\" do\n    a =\n      \"MULTIPOLYGON(((110.0 110.0,20.0 200.0,200.0 200.0,110.0 110.0),(110.0 110.0,100.0 180.0,120.0 180.0,110.0 110.0)),((110.0 110.0,200.0 20.0,20.0 20.0,110.0 110.0),(110.0 110.0,120.0 40.0,100.0 40.0,110.0 110.0)))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON(((110.0 110.0,160.0 160.0,210.0 110.0,160.0 60.0,110.0 110.0),(110.0 110.0,160.0 130.0,160.0 90.0,110.0 110.0)),((110.0 110.0,60.0 60.0,10.0 110.0,60.0 160.0,110.0 110.0),(110.0 110.0,60.0 90.0,60.0 130.0,110.0 110.0)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-108 - mAh/mAh-6-1: MultiPolygon touching MultiPolygon\" do\n    a =\n      \"MULTIPOLYGON (((110 110, 70 200, 200 200, 110 110),(110 110, 100 180, 120 180, 110 110)),((110 110, 200 20, 70 20, 110 110),(110 110, 120 40, 100 40, 110 110)))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON (((110 110, 160 160, 210 110, 160 60, 110 110),(110 110, 160 130, 160 90, 110 110)),((110 110, 60 60, 10 110, 60 160, 110 110),(110 110, 60 90, 60 130, 110 110)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-108 - mAh/mAh-6-1: MultiPolygon touching MultiPolygon (float)\" do\n    a =\n      \"MULTIPOLYGON(((110.0 110.0,70.0 200.0,200.0 200.0,110.0 110.0),(110.0 110.0,100.0 180.0,120.0 180.0,110.0 110.0)),((110.0 110.0,200.0 20.0,70.0 20.0,110.0 110.0),(110.0 110.0,120.0 40.0,100.0 40.0,110.0 110.0)))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON(((110.0 110.0,160.0 160.0,210.0 110.0,160.0 60.0,110.0 110.0),(110.0 110.0,160.0 130.0,160.0 90.0,110.0 110.0)),((110.0 110.0,60.0 60.0,10.0 110.0,60.0 160.0,110.0 110.0),(110.0 110.0,60.0 90.0,60.0 130.0,110.0 110.0)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-109 - mAh/mAh-6-2: MultiPolygon touching MultiPolygon\" do\n    a =\n      \"MULTIPOLYGON (((110 110, 70 200, 200 200, 110 110),(110 110, 100 180, 120 180, 110 110)),((110 110, 200 20, 70 20, 110 110),(110 110, 120 40, 100 40, 110 110)))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON (((110 110, 70 200, 210 110, 70 20, 110 110),(110 110, 110 140, 150 110, 110 80, 110 110)),((110 110, 60 60, 10 110, 60 160, 110 110),(110 110, 60 90, 60 130, 110 110)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"07-109 - mAh/mAh-6-2: MultiPolygon touching MultiPolygon (float)\" do\n    a =\n      \"MULTIPOLYGON(((110.0 110.0,70.0 200.0,200.0 200.0,110.0 110.0),(110.0 110.0,100.0 180.0,120.0 180.0,110.0 110.0)),((110.0 110.0,200.0 20.0,70.0 20.0,110.0 110.0),(110.0 110.0,120.0 40.0,100.0 40.0,110.0 110.0)))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON(((110.0 110.0,70.0 200.0,210.0 110.0,70.0 20.0,110.0 110.0),(110.0 110.0,110.0 140.0,150.0 110.0,110.0 80.0,110.0 110.0)),((110.0 110.0,60.0 60.0,10.0 110.0,60.0 160.0,110.0 110.0),(110.0 110.0,60.0 90.0,60.0 130.0,110.0 110.0)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\nend\n"
  },
  {
    "path": "test/validation/polygon_polygon_b_test.exs",
    "content": "defmodule Intersect.Validation.PolygonPolygonBTest do\n  use ExUnit.Case\n\n  @tag :validation\n  test \"14-001 - AA - simple polygons\" do\n    a = \"POLYGON ((10 10, 100 10, 100 100, 10 100, 10 10))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((50 50, 200 50, 200 200, 50 200, 50 50))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"14-001 - AA - simple polygons (float)\" do\n    a = \"POLYGON((10.0 10.0,100.0 10.0,100.0 100.0,10.0 100.0,10.0 10.0))\" |> Geo.WKT.decode!()\n    b = \"POLYGON((50.0 50.0,200.0 50.0,200.0 200.0,50.0 200.0,50.0 50.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"14-002 - AA - A with hole intersecting B\" do\n    a =\n      \"POLYGON ((20 20, 20 160, 160 160, 160 20, 20 20),(140 140, 40 140, 40 40, 140 40, 140 140))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON ((80 100, 220 100, 220 240, 80 240, 80 100))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"14-002 - AA - A with hole intersecting B (float)\" do\n    a =\n      \"POLYGON((20.0 20.0,20.0 160.0,160.0 160.0,160.0 20.0,20.0 20.0),(140.0 140.0,40.0 140.0,40.0 40.0,140.0 40.0,140.0 140.0))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON((80.0 100.0,220.0 100.0,220.0 240.0,80.0 240.0,80.0 100.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"14-003 - AA - simple polygons #2\" do\n    a = \"POLYGON ((20 340, 330 380, 50 40, 20 340))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((210 320, 140 270, 0 270, 140 220, 210 320))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"14-003 - AA - simple polygons #2 (float)\" do\n    a = \"POLYGON((20.0 340.0,330.0 380.0,50.0 40.0,20.0 340.0))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((210.0 320.0,140.0 270.0,0.0 270.0,140.0 220.0,210.0 320.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"14-004 - AA - simple polygons intersecting in P, L and A\" do\n    a =\n      \"POLYGON ((0 0, 110 0, 110 60, 40 60, 180 140, 40 220, 110 260, 0 260, 0 0))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((220 0, 110 0, 110 60, 180 60, 40 140, 180 220, 110 260, 220 260, 220 0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"14-004 - AA - simple polygons intersecting in P, L and A (float)\" do\n    a =\n      \"POLYGON((0.0 0.0,110.0 0.0,110.0 60.0,40.0 60.0,180.0 140.0,40.0 220.0,110.0 260.0,0.0 260.0,0.0 0.0))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((220.0 0.0,110.0 0.0,110.0 60.0,180.0 60.0,40.0 140.0,180.0 220.0,110.0 260.0,220.0 260.0,220.0 0.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"14-005 - AA - simple polygons with two touching holes in their symDifference\" do\n    a =\n      \"POLYGON ((0 0, 120 0, 120 50, 50 50, 120 100, 50 150, 120 150, 120 190, 0 190, 0 0))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((230 0, 120 0, 120 50, 190 50, 120 100, 190 150, 120 150, 120 190, 230 190, 230 0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"14-005 - AA - simple polygons with two touching holes in their symDifference (float)\" do\n    a =\n      \"POLYGON((0.0 0.0,120.0 0.0,120.0 50.0,50.0 50.0,120.0 100.0,50.0 150.0,120.0 150.0,120.0 190.0,0.0 190.0,0.0 0.0))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((230.0 0.0,120.0 0.0,120.0 50.0,190.0 50.0,120.0 100.0,190.0 150.0,120.0 150.0,120.0 190.0,230.0 190.0,230.0 0.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"14-006 - AmA - A simple, symDiff contains inversion\" do\n    a = \"POLYGON ((0 0, 210 0, 210 230, 0 230, 0 0))\" |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON (((40 20, 0 0, 20 40, 60 60, 40 20)),((60 90, 60 60, 90 60, 90 90, 60 90)),((70 120, 90 90, 100 120, 70 120)),((120 70, 90 90, 120 100, 120 70)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"14-006 - AmA - A simple, symDiff contains inversion (float)\" do\n    a = \"POLYGON((0.0 0.0,210.0 0.0,210.0 230.0,0.0 230.0,0.0 0.0))\" |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON(((40.0 20.0,0.0 0.0,20.0 40.0,60.0 60.0,40.0 20.0)),((60.0 90.0,60.0 60.0,90.0 60.0,90.0 90.0,60.0 90.0)),((70.0 120.0,90.0 90.0,100.0 120.0,70.0 120.0)),((120.0 70.0,90.0 90.0,120.0 100.0,120.0 70.0)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"14-007 - AmA - A simple, B connected multiPolygon touching A at vertex\" do\n    a = \"POLYGON ((0 0, 340 0, 340 300, 0 300, 0 0))\" |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON (((40 20, 0 0, 20 40, 60 60, 40 20)),((60 100, 60 60, 100 60, 100 100, 60 100)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"14-007 - AmA - A simple, B connected multiPolygon touching A at vertex (float)\" do\n    a = \"POLYGON((0.0 0.0,340.0 0.0,340.0 300.0,0.0 300.0,0.0 0.0))\" |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON(((40.0 20.0,0.0 0.0,20.0 40.0,60.0 60.0,40.0 20.0)),((60.0 100.0,60.0 60.0,100.0 60.0,100.0 100.0,60.0 100.0)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"14-008 - AmA - A simple, B connected multiPolygon touching A at interior of edge\" do\n    a = \"POLYGON ((0 0, 120 0, 120 120, 0 120, 0 0))\" |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON (((60 20, 0 20, 60 60, 60 20)),((60 100, 60 60, 100 60, 100 100, 60 100)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"14-008 - AmA - A simple, B connected multiPolygon touching A at interior of edge (float)\" do\n    a = \"POLYGON((0.0 0.0,120.0 0.0,120.0 120.0,0.0 120.0,0.0 0.0))\" |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON(((60.0 20.0,0.0 20.0,60.0 60.0,60.0 20.0)),((60.0 100.0,60.0 60.0,100.0 60.0,100.0 100.0,60.0 100.0)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == true\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"14-009 - AA - simple polygons with holes\" do\n    a =\n      \"POLYGON ((160 330, 60 260, 20 150, 60 40, 190 20, 270 130, 260 250, 160 330),(140 240, 80 190, 90 100, 160 70, 210 130, 210 210, 140 240))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((300 330, 190 270, 150 170, 150 110, 250 30, 380 50, 380 250, 300 330),(290 240, 240 200, 240 110, 290 80, 330 170, 290 240))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"14-009 - AA - simple polygons with holes (float)\" do\n    a =\n      \"POLYGON((160.0 330.0,60.0 260.0,20.0 150.0,60.0 40.0,190.0 20.0,270.0 130.0,260.0 250.0,160.0 330.0),(140.0 240.0,80.0 190.0,90.0 100.0,160.0 70.0,210.0 130.0,210.0 210.0,140.0 240.0))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((300.0 330.0,190.0 270.0,150.0 170.0,150.0 110.0,250.0 30.0,380.0 50.0,380.0 250.0,300.0 330.0),(290.0 240.0,240.0 200.0,240.0 110.0,290.0 80.0,330.0 170.0,290.0 240.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"14-010 - mAmA - complex polygons touching and overlapping\" do\n    a =\n      \"MULTIPOLYGON (((120 340, 120 200, 140 200, 140 280, 160 280, 160 200, 180 200, 180 280, 200 280, 200 200, 220 200, 220 340, 120 340)),((360 200, 220 200, 220 180, 300 180, 300 160, 220 160, 220 140, 300 140, 300 120, 220 120, 220 100, 360 100, 360 200)))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON (((100 220, 100 200, 300 200, 300 220, 100 220)),((280 180, 280 160, 300 160, 300 180, 280 180)),((220 140, 220 120, 240 120, 240 140, 220 140)),((180 220, 160 240, 200 240, 180 220)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"14-010 - mAmA - complex polygons touching and overlapping (float)\" do\n    a =\n      \"MULTIPOLYGON(((120.0 340.0,120.0 200.0,140.0 200.0,140.0 280.0,160.0 280.0,160.0 200.0,180.0 200.0,180.0 280.0,200.0 280.0,200.0 200.0,220.0 200.0,220.0 340.0,120.0 340.0)),((360.0 200.0,220.0 200.0,220.0 180.0,300.0 180.0,300.0 160.0,220.0 160.0,220.0 140.0,300.0 140.0,300.0 120.0,220.0 120.0,220.0 100.0,360.0 100.0,360.0 200.0)))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON(((100.0 220.0,100.0 200.0,300.0 200.0,300.0 220.0,100.0 220.0)),((280.0 180.0,280.0 160.0,300.0 160.0,300.0 180.0,280.0 180.0)),((220.0 140.0,220.0 120.0,240.0 120.0,240.0 140.0,220.0 140.0)),((180.0 220.0,160.0 240.0,200.0 240.0,180.0 220.0)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"14-011 - mAmA - complex polygons touching\" do\n    a =\n      \"MULTIPOLYGON (((100 200, 100 180, 120 180, 120 200, 100 200)),((60 240, 60 140, 220 140, 220 160, 160 160, 160 180, 200 180, 200 200, 160 200, 160 220, 220 220, 220 240, 60 240),(80 220, 80 160, 140 160, 140 220, 80 220)),((280 220, 240 180, 260 160, 300 200, 280 220)))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON (((80 220, 80 160, 140 160, 140 220, 80 220),(100 200, 100 180, 120 180, 120 200, 100 200)),((220 240, 220 220, 160 220, 160 200, 220 200, 220 180, 160 180, 160 160, 220 160, 220 140, 320 140, 320 240, 220 240),(240 220, 240 160, 300 160, 300 220, 240 220)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"14-011 - mAmA - complex polygons touching (float)\" do\n    a =\n      \"MULTIPOLYGON(((100.0 200.0,100.0 180.0,120.0 180.0,120.0 200.0,100.0 200.0)),((60.0 240.0,60.0 140.0,220.0 140.0,220.0 160.0,160.0 160.0,160.0 180.0,200.0 180.0,200.0 200.0,160.0 200.0,160.0 220.0,220.0 220.0,220.0 240.0,60.0 240.0),(80.0 220.0,80.0 160.0,140.0 160.0,140.0 220.0,80.0 220.0)),((280.0 220.0,240.0 180.0,260.0 160.0,300.0 200.0,280.0 220.0)))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"MULTIPOLYGON(((80.0 220.0,80.0 160.0,140.0 160.0,140.0 220.0,80.0 220.0),(100.0 200.0,100.0 180.0,120.0 180.0,120.0 200.0,100.0 200.0)),((220.0 240.0,220.0 220.0,160.0 220.0,160.0 200.0,220.0 200.0,220.0 180.0,160.0 180.0,160.0 160.0,220.0 160.0,220.0 140.0,320.0 140.0,320.0 240.0,220.0 240.0),(240.0 220.0,240.0 160.0,300.0 160.0,300.0 220.0,240.0 220.0)))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"14-012 - AA - hole intersecting boundary to produce line\" do\n    a = \"POLYGON ((60 160, 140 160, 140 60, 60 60, 60 160))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((160 160, 100 160, 100 100, 160 100, 160 160),(140 140, 120 140, 120 120, 140 120, 140 140))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"14-012 - AA - hole intersecting boundary to produce line (float)\" do\n    a = \"POLYGON((60.0 160.0,140.0 160.0,140.0 60.0,60.0 60.0,60.0 160.0))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((160.0 160.0,100.0 160.0,100.0 100.0,160.0 100.0,160.0 160.0),(140.0 140.0,120.0 140.0,120.0 120.0,140.0 120.0,140.0 140.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\nend\n"
  },
  {
    "path": "test/validation/polygon_polygon_precision_test.exs",
    "content": "defmodule Intersect.Validation.PolygonPolygonPrecisionTest do\n  use ExUnit.Case\n\n  @tag :validation\n  test \"18-001 - AA - sliver triangle, cut by polygon\" do\n    a = \"POLYGON ((10 10, 100 10, 10 11, 10 10))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((90 0, 200 0, 200 200, 90 200, 90 0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"18-001 - AA - sliver triangle, cut by polygon (float)\" do\n    a = \"POLYGON((10.0 10.0,100.0 10.0,10.0 11.0,10.0 10.0))\" |> Geo.WKT.decode!()\n    b = \"POLYGON((90.0 0.0,200.0 0.0,200.0 200.0,90.0 200.0,90.0 0.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"18-002 - AA - polygon with outward sliver, cut by polygon\" do\n    a = \"POLYGON ((100 10, 10 10, 90 11, 90 20, 100 20, 100 10))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((20 20, 0 20, 0 0, 20 0, 20 20))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"18-002 - AA - polygon with outward sliver, cut by polygon (float)\" do\n    a =\n      \"POLYGON((100.0 10.0,10.0 10.0,90.0 11.0,90.0 20.0,100.0 20.0,100.0 10.0))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON((20.0 20.0,0.0 20.0,0.0 0.0,20.0 0.0,20.0 20.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"18-003 - AA - narrow wedge in polygon\" do\n    a = \"POLYGON ((10 10, 50 10, 50 50, 10 50, 10 31, 49 30, 10 30, 10 10))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((60 40, 40 40, 40 20, 60 20, 60 40))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"18-003 - AA - narrow wedge in polygon (float)\" do\n    a =\n      \"POLYGON((10.0 10.0,50.0 10.0,50.0 50.0,10.0 50.0,10.0 31.0,49.0 30.0,10.0 30.0,10.0 10.0))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON((60.0 40.0,40.0 40.0,40.0 20.0,60.0 20.0,60.0 40.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"18-004 - AA - hole close to shell\" do\n    a =\n      \"POLYGON ((10 100, 10 10, 100 10, 100 100, 10 100),(90 90, 11 90, 10 10, 90 11, 90 90))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON ((0 30, 0 0, 30 0, 30 30, 0 30))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"18-004 - AA - hole close to shell (float)\" do\n    a =\n      \"POLYGON((10.0 100.0,10.0 10.0,100.0 10.0,100.0 100.0,10.0 100.0),(90.0 90.0,11.0 90.0,10.0 10.0,90.0 11.0,90.0 90.0))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON((0.0 30.0,0.0 0.0,30.0 0.0,30.0 30.0,0.0 30.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"18-005 - mAA - shells close together\" do\n    a =\n      \"MULTIPOLYGON (((0 0, 100 0, 100 20, 0 20, 0 0)),((0 40, 0 21, 100 20, 100 40, 0 40)))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON ((110 30, 90 30, 90 10, 110 10, 110 30))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"18-005 - mAA - shells close together (float)\" do\n    a =\n      \"MULTIPOLYGON(((0.0 0.0,100.0 0.0,100.0 20.0,0.0 20.0,0.0 0.0)),((0.0 40.0,0.0 21.0,100.0 20.0,100.0 40.0,0.0 40.0)))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON((110.0 30.0,90.0 30.0,90.0 10.0,110.0 10.0,110.0 30.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"18-006 - AA - A sliver triangle cutting all the way across B\" do\n    a = \"POLYGON ((100 10, 0 10, 100 11, 100 10))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((20 20, 0 20, 0 0, 20 0, 20 20))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"18-006 - AA - A sliver triangle cutting all the way across B (float)\" do\n    a = \"POLYGON((100.0 10.0,0.0 10.0,100.0 11.0,100.0 10.0))\" |> Geo.WKT.decode!()\n    b = \"POLYGON((20.0 20.0,0.0 20.0,0.0 0.0,20.0 0.0,20.0 20.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"18-007 - AA - A polygon with sliver cutting all the way across B\" do\n    a = \"POLYGON ((100 10, 0 10, 90 11, 90 20, 100 20, 100 10))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((20 20, 0 20, 0 0, 20 0, 20 20))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"18-007 - AA - A polygon with sliver cutting all the way across B (float)\" do\n    a =\n      \"POLYGON((100.0 10.0,0.0 10.0,90.0 11.0,90.0 20.0,100.0 20.0,100.0 10.0))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON((20.0 20.0,0.0 20.0,0.0 0.0,20.0 0.0,20.0 20.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"18-008 - AA - hole close to shell, B coincident with A\" do\n    a =\n      \"POLYGON ((10 100, 10 10, 100 10, 100 100, 10 100),(90 90, 11 90, 10 10, 90 11, 90 90))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON ((10 30, 10 0, 30 10, 30 30, 10 30))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"18-008 - AA - hole close to shell, B coincident with A (float)\" do\n    a =\n      \"POLYGON((10.0 100.0,10.0 10.0,100.0 10.0,100.0 100.0,10.0 100.0),(90.0 90.0,11.0 90.0,10.0 10.0,90.0 11.0,90.0 90.0))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON((10.0 30.0,10.0 0.0,30.0 10.0,30.0 30.0,10.0 30.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"18-009 - AA - A hole close to shell, B coincident with A\" do\n    a =\n      \"POLYGON ((10 100, 10 10, 100 10, 100 100, 10 100),(90 90, 11 90, 10 10, 90 11, 90 90))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON ((10 30, 10 10, 30 10, 30 30, 10 30))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"18-009 - AA - A hole close to shell, B coincident with A (float)\" do\n    a =\n      \"POLYGON((10.0 100.0,10.0 10.0,100.0 10.0,100.0 100.0,10.0 100.0),(90.0 90.0,11.0 90.0,10.0 10.0,90.0 11.0,90.0 90.0))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON((10.0 30.0,10.0 10.0,30.0 10.0,30.0 30.0,10.0 30.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"18-010 - AA - B hole close to shell, A coincident with B\" do\n    a = \"POLYGON ((10 30, 10 10, 30 10, 30 30, 10 30))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON ((10 100, 10 10, 100 10, 100 100, 10 100),(90 90, 11 90, 10 10, 90 11, 90 90))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"18-010 - AA - B hole close to shell, A coincident with B (float)\" do\n    a = \"POLYGON((10.0 30.0,10.0 10.0,30.0 10.0,30.0 30.0,10.0 30.0))\" |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((10.0 100.0,10.0 10.0,100.0 10.0,100.0 100.0,10.0 100.0),(90.0 90.0,11.0 90.0,10.0 10.0,90.0 11.0,90.0 90.0))\"\n      |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"18-011 - AA - B sliver crossing A triangle in line segment with length &lt; 1\" do\n    a = \"POLYGON ((0 0, 200 0, 0 198, 0 0))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((280 60, 139 60, 280 70, 280 60))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"18-011 - AA - B sliver crossing A triangle in line segment with length &lt; 1 (float)\" do\n    a = \"POLYGON((0.0 0.0,200.0 0.0,0.0 198.0,0.0 0.0))\" |> Geo.WKT.decode!()\n    b = \"POLYGON((280.0 60.0,139.0 60.0,280.0 70.0,280.0 60.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"18-012 - AA - sliver triangles, at angle to each other\" do\n    a = \"POLYGON ((0 0, 140 10, 0 20, 0 0))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((280 0, 139 10, 280 1, 280 0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"18-012 - AA - sliver triangles, at angle to each other (float)\" do\n    a = \"POLYGON((0.0 0.0,140.0 10.0,0.0 20.0,0.0 0.0))\" |> Geo.WKT.decode!()\n    b = \"POLYGON((280.0 0.0,139.0 10.0,280.0 1.0,280.0 0.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"18-013 - AA - sliver triangle with multiple intersecting boxes\" do\n    a =\n      \"MULTIPOLYGON (((1 4, 1 1, 2 1, 2 4, 1 4)),((3 4, 3 1, 4 1, 4 4, 3 4)),((5 4, 5 1, 6 1, 6 4, 5 4)),((7 4, 7 1, 8 1, 8 4, 7 4)),((9 4, 9 1, 10 1, 10 4, 9 4)))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON ((0 2, 11 3, 11 2, 0 2))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"18-013 - AA - sliver triangle with multiple intersecting boxes (float)\" do\n    a =\n      \"MULTIPOLYGON(((1.0 4.0,1.0 1.0,2.0 1.0,2.0 4.0,1.0 4.0)),((3.0 4.0,3.0 1.0,4.0 1.0,4.0 4.0,3.0 4.0)),((5.0 4.0,5.0 1.0,6.0 1.0,6.0 4.0,5.0 4.0)),((7.0 4.0,7.0 1.0,8.0 1.0,8.0 4.0,7.0 4.0)),((9.0 4.0,9.0 1.0,10.0 1.0,10.0 4.0,9.0 4.0)))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON((0.0 2.0,11.0 3.0,11.0 2.0,0.0 2.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"18-014 - AA - Polygon with hole with outward sliver, cut by polygon\" do\n    a =\n      \"POLYGON ((20 40, 20 200, 180 200, 180 40, 20 40),(180 120, 120 120, 120 160, 60 120, 120 80, 120 119, 180 120))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON ((200 160, 160 160, 160 80, 200 80, 200 160))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"18-014 - AA - Polygon with hole with outward sliver, cut by polygon (float)\" do\n    a =\n      \"POLYGON((20.0 40.0,20.0 200.0,180.0 200.0,180.0 40.0,20.0 40.0),(180.0 120.0,120.0 120.0,120.0 160.0,60.0 120.0,120.0 80.0,120.0 119.0,180.0 120.0))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((200.0 160.0,160.0 160.0,160.0 80.0,200.0 80.0,200.0 160.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"18-015 - AA - Polygon with hole with outward sliver, cut by line\" do\n    a =\n      \"POLYGON ((20 40, 20 200, 180 200, 180 40, 20 40),(180 120, 120 120, 120 160, 60 120, 120 80, 120 119, 180 120))\"\n      |> Geo.WKT.decode!()\n\n    b = \"LINESTRING (160 140, 160 100)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"18-015 - AA - Polygon with hole with outward sliver, cut by line (float)\" do\n    a =\n      \"POLYGON((20.0 40.0,20.0 200.0,180.0 200.0,180.0 40.0,20.0 40.0),(180.0 120.0,120.0 120.0,120.0 160.0,60.0 120.0,120.0 80.0,120.0 119.0,180.0 120.0))\"\n      |> Geo.WKT.decode!()\n\n    b = \"LINESTRING(160.0 140.0,160.0 100.0)\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"18-016 - AA - Polygon with inward sliver touching hole, cut by polygon\" do\n    a =\n      \"POLYGON ((20 40, 20 200, 180 200, 180 120, 140 120, 180 119, 180 40, 20 40),(140 160, 80 120, 140 80, 140 160))\"\n      |> Geo.WKT.decode!()\n\n    b = \"POLYGON ((200 160, 150 160, 150 80, 200 80, 200 160))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"18-016 - AA - Polygon with inward sliver touching hole, cut by polygon (float)\" do\n    a =\n      \"POLYGON((20.0 40.0,20.0 200.0,180.0 200.0,180.0 120.0,140.0 120.0,180.0 119.0,180.0 40.0,20.0 40.0),(140.0 160.0,80.0 120.0,140.0 80.0,140.0 160.0))\"\n      |> Geo.WKT.decode!()\n\n    b =\n      \"POLYGON((200.0 160.0,150.0 160.0,150.0 80.0,200.0 80.0,200.0 160.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"18-017 - AA - intersecting slivers, dimensional collapse\" do\n    a = \"POLYGON ((83 33, 62 402, 68 402, 83 33))\" |> Geo.WKT.decode!()\n    b = \"POLYGON ((78 39, 574 76, 576 60, 78 39))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\n\n  @tag :validation\n  test \"18-017 - AA - intersecting slivers, dimensional collapse (float)\" do\n    a = \"POLYGON((83.0 33.0,62.0 402.0,68.0 402.0,83.0 33.0))\" |> Geo.WKT.decode!()\n    b = \"POLYGON((78.0 39.0,574.0 76.0,576.0 60.0,78.0 39.0))\" |> Geo.WKT.decode!()\n\n    assert Topo.intersects?(a, b) == true\n    assert Topo.intersects?(b, a) == true\n    assert Topo.disjoint?(a, b) == false\n    assert Topo.disjoint?(b, a) == false\n    assert Topo.contains?(a, b) == false\n    assert Topo.within?(a, b) == false\n    assert Topo.equals?(a, b) == false\n    assert Topo.equals?(b, a) == false\n  end\nend\n"
  }
]